Repository: NaturalNode/natural Branch: master Commit: 69c59f919630 Files: 376 Total size: 19.3 MB Directory structure: gitextract_o86o2zrq/ ├── .eslintrc.json ├── .gitconfig ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── feature_request.md │ │ └── pull_request_template.md │ └── workflows/ │ ├── codeql-analysis.yml │ ├── linter.yml │ ├── node.js.yml │ └── npm-publish.yml ├── .gitignore ├── .npmignore ├── .nycrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── benchmarks/ │ ├── index.js │ ├── metaphone.js │ ├── sample-id.txt │ ├── soundex.js │ └── stemmer_id.js ├── examples/ │ ├── classification/ │ │ ├── MaxEntAppliedToPOSTagging_spec.js │ │ ├── basic.js │ │ ├── recall.js │ │ ├── store.js │ │ └── try_events.js │ ├── inflection/ │ │ ├── count.js │ │ └── noun.js │ ├── phonetics/ │ │ ├── compare.js │ │ └── tokenize_and_phoneticize.js │ ├── stemming/ │ │ ├── stem_corpus.js │ │ └── stem_word.js │ ├── tfidf/ │ │ ├── array_example.js │ │ ├── multiple_terms.js │ │ └── tfidf_example.js │ └── tokenizer/ │ └── testSentenceTokenizer.js ├── index.js ├── io_spec/ │ ├── MaxEntClassifier_spec.js │ ├── Sample_spec.js │ ├── StorageBackend_spec.js │ ├── bayes_classifier_spec.js │ ├── classifier_spec.js │ ├── logistic_regression_classifier_spec.js │ ├── test_data/ │ │ └── tfidf/ │ │ ├── one │ │ ├── tfidf_document1.txt │ │ ├── tfidf_document2.txt │ │ ├── tfidf_document3.txt │ │ ├── tfidf_document4.txt │ │ └── two │ ├── tfidf_spec.js │ ├── tmp/ │ │ ├── .this_folder_exists.txt │ │ ├── 055ff9e6-bf89-42d0-b44a-4dcc523bf6fc.json │ │ ├── 7cfb947f-0115-4ef6-b21b-d9554d51caf2.json │ │ ├── bf35794b-83e7-4628-8ec2-a0cf451a6fb2.json │ │ └── c2ee3580-26b9-4972-b7f9-e59a933ed021.json │ ├── wordnet_index_spec.js │ ├── wordnet_spec.js │ └── wordnet_test.ts ├── lib/ │ └── natural/ │ ├── analyzers/ │ │ ├── SenType.ts │ │ ├── index.d.ts │ │ ├── index.js │ │ └── sentence_analyzer.js │ ├── brill_pos_tagger/ │ │ ├── data/ │ │ │ ├── Dutch/ │ │ │ │ ├── README.txt │ │ │ │ ├── brill_CONTEXTRULES.jg │ │ │ │ ├── brill_CONTEXTRULES.json │ │ │ │ ├── brill_LEXICON.jg │ │ │ │ └── brill_Lexicon.json │ │ │ └── English/ │ │ │ ├── README.txt │ │ │ ├── lexicon_from_posjs.json │ │ │ ├── tr_from_brill_paper.json │ │ │ ├── tr_from_brill_paper.txt │ │ │ ├── tr_from_posjs.json │ │ │ └── tr_from_posjs.txt │ │ ├── index.d.ts │ │ ├── index.js │ │ └── lib/ │ │ ├── Brill_POS_Tagger.js │ │ ├── Brill_POS_Tester.js │ │ ├── Brill_POS_Trainer.js │ │ ├── Corpus.js │ │ ├── Lexicon.js │ │ ├── Predicate.js │ │ ├── RuleSet.js │ │ ├── RuleTemplate.js │ │ ├── RuleTemplates.js │ │ ├── Sentence.js │ │ ├── TF_Parser.js │ │ ├── TF_Parser.pegjs │ │ └── TransformationRule.js │ ├── classifiers/ │ │ ├── bayes_classifier.js │ │ ├── classifier.js │ │ ├── classifier_train_parallel.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── logistic_regression_classifier.js │ │ └── maxent/ │ │ ├── Classifier.js │ │ ├── Context.js │ │ ├── Distribution.js │ │ ├── Element.js │ │ ├── Feature.js │ │ ├── FeatureSet.js │ │ ├── GISScaler.js │ │ ├── POS/ │ │ │ ├── ME_Corpus.js │ │ │ ├── ME_Sentence.js │ │ │ └── POS_Element.js │ │ ├── Sample.js │ │ └── SimpleExample/ │ │ └── SE_Element.js │ ├── distance/ │ │ ├── dice_coefficient.js │ │ ├── hamming_distance.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── jaro-winkler_distance.js │ │ └── levenshtein_distance.js │ ├── index.d.ts │ ├── index.js │ ├── inflectors/ │ │ ├── count_inflector.js │ │ ├── form_set.js │ │ ├── fr/ │ │ │ ├── count_inflector.js │ │ │ └── noun_inflector.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── ja/ │ │ │ └── noun_inflector.js │ │ ├── noun_inflector.js │ │ ├── present_verb_inflector.js │ │ └── singular_plural_inflector.js │ ├── ngrams/ │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── ngrams.js │ │ └── ngrams_zh.js │ ├── normalizers/ │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── normalizer.js │ │ ├── normalizer_ja.js │ │ ├── normalizer_no.js │ │ ├── normalizer_sv.js │ │ └── remove_diacritics.js │ ├── phonetics/ │ │ ├── dm_soundex.js │ │ ├── double_metaphone.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── metaphone.js │ │ ├── phonetic.js │ │ └── soundex.js │ ├── sentiment/ │ │ ├── Basque/ │ │ │ └── senticon_eu.json │ │ ├── Catalan/ │ │ │ └── senticon_ca.json │ │ ├── Dutch/ │ │ │ ├── negations_du.json │ │ │ └── pattern-sentiment-nl.json │ │ ├── English/ │ │ │ ├── negations_en.json │ │ │ ├── pattern-sentiment-en.json │ │ │ └── senticon_en.json │ │ ├── French/ │ │ │ └── pattern-sentiment-fr.json │ │ ├── Galician/ │ │ │ └── senticon_gl.json │ │ ├── German/ │ │ │ ├── negations_de.json │ │ │ └── pattern-sentiment-de.json │ │ ├── Italian/ │ │ │ └── pattern-sentiment-it.json │ │ ├── Portuguese/ │ │ │ ├── afinnShortSortedPortuguese.json │ │ │ └── negations_pt.json │ │ ├── SentimentAnalyzer.js │ │ ├── Spanish/ │ │ │ ├── afinnShortSortedSpanish.json │ │ │ ├── negations_es.json │ │ │ └── senticon_es.json │ │ ├── index.d.ts │ │ ├── index.js │ │ └── tools/ │ │ ├── README.md │ │ ├── XmlParser4PatternData.js │ │ └── sentimentXmlParser.js │ ├── spellcheck/ │ │ ├── index.d.ts │ │ ├── index.js │ │ └── spellcheck.js │ ├── stemmers/ │ │ ├── Carry/ │ │ │ ├── index.js │ │ │ ├── stepConfs.js │ │ │ └── utils.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── indonesian/ │ │ │ ├── base_stemmer_id.js │ │ │ ├── data/ │ │ │ │ └── kata-dasar.json │ │ │ ├── prefix_rules.js │ │ │ ├── removal.js │ │ │ ├── stemmer_id.js │ │ │ └── suffix_rules.js │ │ ├── lancaster_rules.js │ │ ├── lancaster_stemmer.js │ │ ├── porter_stemmer.js │ │ ├── porter_stemmer_de.js │ │ ├── porter_stemmer_es.js │ │ ├── porter_stemmer_fa.js │ │ ├── porter_stemmer_fr.js │ │ ├── porter_stemmer_it.js │ │ ├── porter_stemmer_nl.js │ │ ├── porter_stemmer_no.js │ │ ├── porter_stemmer_pt.js │ │ ├── porter_stemmer_ru.js │ │ ├── porter_stemmer_sv.js │ │ ├── porter_stemmer_uk.js │ │ ├── stemmer.js │ │ ├── stemmer_de.js │ │ ├── stemmer_es.js │ │ ├── stemmer_fa.js │ │ ├── stemmer_fr.js │ │ ├── stemmer_it.js │ │ ├── stemmer_ja.js │ │ ├── stemmer_nl.js │ │ ├── stemmer_no.js │ │ ├── stemmer_pl.js │ │ ├── stemmer_pt.js │ │ ├── stemmer_ru.js │ │ ├── stemmer_sv.js │ │ ├── stemmer_uk.js │ │ └── token.js │ ├── tfidf/ │ │ ├── index.d.ts │ │ ├── index.js │ │ └── tfidf.js │ ├── tokenizers/ │ │ ├── aggressive_tokenizer.js │ │ ├── aggressive_tokenizer_de.js │ │ ├── aggressive_tokenizer_es.js │ │ ├── aggressive_tokenizer_fa.js │ │ ├── aggressive_tokenizer_fr.js │ │ ├── aggressive_tokenizer_hi.js │ │ ├── aggressive_tokenizer_id.js │ │ ├── aggressive_tokenizer_it.js │ │ ├── aggressive_tokenizer_nl.js │ │ ├── aggressive_tokenizer_no.js │ │ ├── aggressive_tokenizer_pl.js │ │ ├── aggressive_tokenizer_pt.js │ │ ├── aggressive_tokenizer_ru.js │ │ ├── aggressive_tokenizer_sv.js │ │ ├── aggressive_tokenizer_uk.js │ │ ├── aggressive_tokenizer_vi.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── orthography_matchers.js │ │ ├── regexp_tokenizer.js │ │ ├── sentence_tokenizer.js │ │ ├── sentence_tokenizer_deprecated.js │ │ ├── tokenizer.js │ │ ├── tokenizer_case.js │ │ ├── tokenizer_ja.js │ │ └── treebank_word_tokenizer.js │ ├── transliterators/ │ │ ├── index.d.ts │ │ ├── index.js │ │ └── ja/ │ │ └── index.js │ ├── trie/ │ │ ├── index.d.ts │ │ ├── index.js │ │ └── trie.js │ ├── util/ │ │ ├── abbreviations_en.js │ │ ├── abbreviations_es.js │ │ ├── bag.js │ │ ├── directed_edge.js │ │ ├── edge_weighted_digraph.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── longest_path_tree.js │ │ ├── shortest_path_tree.js │ │ ├── stopwords.js │ │ ├── stopwords_es.js │ │ ├── stopwords_fa.js │ │ ├── stopwords_fr.js │ │ ├── stopwords_id.js │ │ ├── stopwords_it.js │ │ ├── stopwords_ja.js │ │ ├── stopwords_nl.js │ │ ├── stopwords_no.js │ │ ├── stopwords_pl.js │ │ ├── stopwords_pt.js │ │ ├── stopwords_ru.js │ │ ├── stopwords_sv.js │ │ ├── stopwords_uk.js │ │ ├── stopwords_zh.js │ │ ├── storage/ │ │ │ ├── File.js │ │ │ ├── Memcached.js │ │ │ ├── MongoDB.js │ │ │ ├── Postgres.js │ │ │ ├── Redis.js │ │ │ ├── StorageBackend.js │ │ │ ├── docker-compose.yml │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ ├── topological.js │ │ └── utils.js │ └── wordnet/ │ ├── data_file.js │ ├── index.d.ts │ ├── index.js │ ├── index_file.js │ ├── wordnet.js │ └── wordnet_file.js ├── package.json ├── rollup.config.mjs ├── spec/ │ ├── MaxEntClassifier_spec.ts │ ├── SentimentAnalyzer_spec.ts │ ├── WordPunctTokenizer_spec.ts │ ├── aggressive_tokenizer_de_spec.ts │ ├── aggressive_tokenizer_es_spec.ts │ ├── aggressive_tokenizer_fr_spec.ts │ ├── aggressive_tokenizer_hi_spec.ts │ ├── aggressive_tokenizer_nl_spec.ts │ ├── aggressive_tokenizer_pt_spec.ts │ ├── aggressive_tokenizer_spec.ts │ ├── aggressive_tokenizer_sv_spec.ts │ ├── aggressive_tokenizer_vi_spec.ts │ ├── bayes_classifier_spec.ts │ ├── brill_pos_tagger_spec.ts │ ├── brill_pos_trainer_spec.ts │ ├── carry_stemmer_fr_spec.ts │ ├── classifier_spec.ts │ ├── count_inflector_fr_spec.ts │ ├── count_inflector_spec.ts │ ├── damerau_levenshtein_spec.ts │ ├── dice_coefficient_spec.ts │ ├── double_metaphone_spec.ts │ ├── esm/ │ │ └── smoke.mjs │ ├── hamming_distance_spec.ts │ ├── jaro-winkler_spec.ts │ ├── lancaster_stemmer_spec.ts │ ├── levenshtein_spec.ts │ ├── logistic_regression_classifier_spec.ts │ ├── longest_path_tree_spec.ts │ ├── metaphone_spec.ts │ ├── ngram_spec.ts │ ├── ngram_zh_spec.ts │ ├── normalizer_ja_spec.ts │ ├── normalizer_no_spec.ts │ ├── normalizer_spec.ts │ ├── noun_inflector_fr_spec.ts │ ├── noun_inflector_ja_spec.ts │ ├── noun_inflector_spec.ts │ ├── orthography_tokenizer_spec.ts │ ├── porter_stemmer_de_spec.ts │ ├── porter_stemmer_es_spec.ts │ ├── porter_stemmer_fr_spec.ts │ ├── porter_stemmer_it_spec.ts │ ├── porter_stemmer_nl_spec.ts │ ├── porter_stemmer_no_spec.ts │ ├── porter_stemmer_pt_spec.ts │ ├── porter_stemmer_ru_spec.ts │ ├── porter_stemmer_spec.ts │ ├── porter_stemmer_sv_spec.ts │ ├── present_verb_inflector_spec.ts │ ├── remove_diacritics_spec.ts │ ├── sentence_analyzer_spec.ts │ ├── sentence_tokenizer_spec.ts │ ├── shortest_path_tree_spec.ts │ ├── soundex_spec.ts │ ├── spellcheck_spec.ts │ ├── stemmer_id_spec.ts │ ├── stemmer_ja_spec.ts │ ├── stemmer_token_spec.ts │ ├── support/ │ │ ├── count_tests.js │ │ └── jasmine.json │ ├── test_data/ │ │ ├── ConvertSnowballDict.js │ │ ├── NYT-20150205-picassos-granddaughter-plans-to-sell-art-worrying-the-market.json │ │ ├── NYT-20150205-picassos-granddaughter-plans_expected_tag_results.json │ │ ├── Volkskrant-20150205-Knot-geldpers-aanzetten-is-paardenmiddel-voor-half-procent-inflatie.json │ │ ├── Wikipedia_EN_FrenchRevolution.json │ │ ├── Wikipedia_EN_InfluenceOfTheFrenchRevolution.json │ │ ├── browntag_nolines_excerpt.json │ │ ├── browntag_nolines_excerpt_maxent.json │ │ ├── dutchStemResults.json │ │ ├── index.document1.txt │ │ ├── snowball_de.json │ │ ├── snowball_es.json │ │ ├── snowball_fr.json │ │ ├── snowball_it.json │ │ ├── snowball_nl.json │ │ ├── snowball_no.json │ │ ├── snowball_pt.json │ │ ├── sv_stemmer_sample.js │ │ ├── tfdif_testcorpus.txt │ │ ├── tfidf_teststopwords.txt │ │ └── wordnet_mini.sql │ ├── tfidf_spec.ts │ ├── tokenizer_case_spec.ts │ ├── tokenizer_ja_spec.ts │ ├── transliterator_ja_spec.ts │ ├── treebank_word_tokenizer_spec.ts │ └── trie_spec.ts └── tsconfig.json ================================================ FILE CONTENTS ================================================ ================================================ FILE: .eslintrc.json ================================================ { "env": { "browser": true, "commonjs": true, "es2021": true }, "extends": "standard-with-typescript", "parserOptions": { "ecmaVersion": "latest" }, "rules": { } } ================================================ FILE: .gitconfig ================================================ [user] email = hwl.ter.doest@gmail.com name = Hugo W.L. ter Doest ================================================ FILE: .github/ISSUE_TEMPLATE/bug_report.md ================================================ --- name: Bug report about: Create a report to help us improve title: '' labels: Bug assignees: Hugo-ter-Doest --- **Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior, or clear and concise code excerpts that trigger the unexpected behaviour. **Expected behavior** A clear and concise description of what you expected to happen. **Screenshots** If applicable, add screenshots to help explain your problem. **Desktop (please complete the following information):** - OS: [e.g. iOS] - Browser [e.g. chrome, safari] - Version [e.g. 22] **Additional context** Add any other context about the problem here, especially if you are running natural in the browser as part a framework. ================================================ FILE: .github/ISSUE_TEMPLATE/feature_request.md ================================================ --- name: Feature request about: Suggest an idea for this project title: '' labels: Feature Request assignees: Hugo-ter-Doest --- **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd like** A clear and concise description of what you want to happen. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here. ================================================ FILE: .github/ISSUE_TEMPLATE/pull_request_template.md ================================================ Fixes # ## Proposed Changes - - - ## Checklist before merging - [ ] Added Jasmine tests - [ ] Updates TypeScipt `index.d.ts` files ================================================ FILE: .github/workflows/codeql-analysis.yml ================================================ # For most projects, this workflow file will not need changing; you simply need # to commit it to your repository. # # You may wish to alter this file to override the set of languages analyzed, # or to provide custom queries or build logic. # # ******** NOTE ******** # We have attempted to detect the languages in your repository. Please check # the `language` matrix defined below to confirm you have the correct set of # supported CodeQL languages. # name: "CodeQL" on: push: branches: [ master ] pull_request: # The branches below must be a subset of the branches above branches: [ master ] schedule: - cron: '38 9 * * 4' jobs: analyze: name: Analyze runs-on: ubuntu-latest permissions: actions: read contents: read security-events: write strategy: fail-fast: false matrix: language: [ 'javascript' ] # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] # Learn more about CodeQL language support at https://git.io/codeql-language-support steps: - name: Checkout repository uses: actions/checkout@v2 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL uses: github/codeql-action/init@v1 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. # By default, queries listed here will override any specified in a config file. # Prefix the list here with "+" to use these queries and those in the config file. # queries: ./path/to/local/query, your-org/your-repo/queries@main # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild uses: github/codeql-action/autobuild@v1 # ℹ️ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines # and modify them (or add more) to build your code if your project # uses a compiled language #- run: | # make bootstrap # make release - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v1 ================================================ FILE: .github/workflows/linter.yml ================================================ --- ########################### ########################### ## Linter GitHub Actions ## ########################### ########################### name: Lint Code Base # # Documentation: # https://help.github.com/en/articles/workflow-syntax-for-github-actions # ############################# # Start the job on all push # ############################# on: push: branches-ignore: [master] # Remove the line above to run when pushing to master pull_request: branches: [master] ############### # Set the Job # ############### jobs: build: # Name the Job name: Lint Code Base # Set the agent to run on runs-on: ubuntu-latest ################## # Load all steps # ################## steps: ########################## # Checkout the code base # ########################## - name: Checkout Code uses: actions/checkout@v2 with: # Full git history is needed to get a proper list of changed files within `super-linter` fetch-depth: 0 ################################ # Run Linter against code base # ################################ - name: Lint Code Base uses: github/super-linter/slim@v4 env: VALIDATE_ALL_CODEBASE: false DEFAULT_BRANCH: master GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} LINTER_RULES_PATH: / ================================================ FILE: .github/workflows/node.js.yml ================================================ # This workflow will do a clean install of node dependencies, # build the source code and run tests across different versions of node # For more information see: # https://help.github.com/actions/language-and-framework-guides/ # using-nodejs-with-github-actions --- name: Node.js CI on: push: branches: [master] pull_request: branches: [master] jobs: build: runs-on: ubuntu-latest services: redis: image: redis:latest ports: - 6379:6379 postgres: image: postgres:latest env: POSTGRES_USER: user POSTGRES_PASSWORD: password POSTGRES_DB: naturaldb POSTGRES_HOST: localhost POSTGRES_PORT: 5432 POSTGRES_TABLE: naturaltable ports: - 5432:5432 memcached: image: memcached:latest ports: - 11211:11211 mongodb: image: mongo:latest ports: - 27017:27017 strategy: matrix: node-version: [20.x, 22.x, 24.x] # See supported Node.js release schedule at #https://nodejs.org/en/about/releases/ steps: - name: Checkout code uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: Clean install run: npm ci - name: Lint run: npm run lint - name: Build run: npm run build - name: ESM smoke test run: npm run smoke:esm - name: Run Istanbul coverage run: npm run coverage # Save coverage report in Coveralls - name: Coveralls uses: coverallsapp/github-action@master with: github-token: ${{ secrets.GITHUB_TOKEN }} ================================================ FILE: .github/workflows/npm-publish.yml ================================================ # This workflow will run tests using node and then publish a package to NPMjs when a release is created # For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages --- name: Node.js Package on: release: types: [created] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: 20 - run: npm ci - name: Build run: npm run build - run: npm test publish-npm: needs: build runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: 20 registry-url: https://registry.npmjs.org/ - run: npm ci - run: git config user.name "$GITHUB_ACTOR" - run: npm publish env: NODE_AUTH_TOKEN: ${{secrets.NPM_SECRET}} ================================================ FILE: .gitignore ================================================ *~ \#* *.kpf *classifier.json node_modules io_spec/test_data/wordnet/download/* io_spec/test_data/sample.json *.noun *.verb *.adj *.adv .npm npm-debug.log .vscode .nyc_output/* dist ================================================ FILE: .npmignore ================================================ benchmarks spec examples io_spec docs ================================================ FILE: .nycrc ================================================ { "include": [ "io_spec/**/*_spec.js", "dist/**/*_spec.js", "lib/natural/**/*.js", "lib/natural/**/*.ts" ], "reporter": "lcov" } ================================================ FILE: CODE_OF_CONDUCT.md ================================================ # Contributor Covenant Code of Conduct ## Our Pledge We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. ## Our Standards Examples of behavior that contributes to a positive environment for our community include: * Demonstrating empathy and kindness toward other people * Being respectful of differing opinions, viewpoints, and experiences * Giving and gracefully accepting constructive feedback * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience * Focusing on what is best not just for us as individuals, but for the overall community Examples of unacceptable behavior include: * The use of sexualized language or imagery, and sexual attention or advances of any kind * Trolling, insulting or derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or email address, without their explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Enforcement Responsibilities Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. ## Scope This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leader responsible for enforcement: at the moment of writing Hugo ter Doest. All complaints will be reviewed and investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the reporter of any incident. ## Enforcement Guidelines Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct: ### 1. Correction **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested. ### 2. Warning **Community Impact**: A violation through a single incident or series of actions. **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban. ### 3. Temporary Ban **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior. **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban. ### 4. Permanent Ban **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. **Consequence**: A permanent ban from any sort of public interaction within the community. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0, available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity). [homepage]: https://www.contributor-covenant.org For answers to common questions about this code of conduct, see the FAQ at https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations. ================================================ FILE: CONTRIBUTING.md ================================================ # Contributing When contributing to this repository, please explain your changes or additions in an issue or in the pull request. When developing, please: * Comply with Standard JS. This is tested when you commit to natural. * Prevent code duplication. Use jscpd to test this. This is tested when you commit to natural. * Write unit tests for jasmine. Make sure your unit tests pass. * For compatibility with browsers, do not use the file system fs. If you need to read files, use JSON and require. * Write documentation and commit this to the gh-pages branch. * The current configuration of the unit tests requires the following environment variable to be set: ``` export NODE_PATH=. ``` # CD/CD pipeline The repository uses Github Actions for testing and publishing. Currently, there three workflows: * Node CI: tests natural on the four most recent releases of Nodejs. Code coverage is analysed with Istanbul. Results are forwarded to Coveralls. In the README a badge shows the coverage. * Nodejs package: The natural package is automatically published to NPM when a release is created (tagged). * Lint Code Base: the repository is linted using the Github super linter which includes jslint and jscpd. * CodeQL for detecting security vulnerabilities. Github workflows can be found in the folder ./.github/workflows. # Versioning We apply semantic versioning. Given natural’s version number MAJOR.MINOR.PATCH, increment the: * MAJOR version when you make incompatible API changes, * MINOR version when you add functionality in a backwards compatible manner, and * PATCH version when you make backwards compatible bug fixes. ================================================ FILE: LICENSE.txt ================================================ The MIT License (MIT) Copyright (c) 2011, 2012 Chris Umbel, Rob Ellis, Russell Mull Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ # natural [![NPM version](https://img.shields.io/npm/v/natural.svg)](https://www.npmjs.com/package/natural) [![Node.js CI](https://github.com/NaturalNode/natural/workflows/Node.js%20CI/badge.svg)](https://github.com/marketplace/actions/setup-node-js-environment) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com) [![GitHub Super-Linter](https://github.com/NaturalNode/natural/workflows/Lint%20Code%20Base/badge.svg)](https://github.com/marketplace/actions/super-linter) [![Coverage Status](https://coveralls.io/repos/github/NaturalNode/natural/badge.svg?branch=master)](https://coveralls.io/github/NaturalNode/natural?branch=master) [![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/4651/badge)](https://bestpractices.coreinfrastructure.org/projects/4651) [![TypeScript support](https://img.shields.io/badge/TypeScript-007ACC?style=for-the-badge&logo=typescript&logoColor=white)](https://www.typescriptlang.org/) "Natural" is a general natural language facility for nodejs. It offers a broad range of functionalities for natural language processing. Documentation can be found [here on GitHub Pages](https://naturalnode.github.io/natural/). ## Open source licenses ### Natural: MIT License Copyright (c) 2011, 2012 Chris Umbel, Rob Ellis, Russell Mull, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ### WordNet License This license is available as the file LICENSE in any downloaded version of WordNet. WordNet 3.0 license: (Download) 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. ### Porter stemmer German: BSD License The Porter stemmer for German is licensed by a BSD license. It states Standard BSD License in the source code, interpreted as the original BSD license consisting of four clauses. ================================================ FILE: SECURITY.md ================================================ # Security Policy ## We run dependabot and Github's CodeQL analysis to detect security problems. ## Supported Versions Use this section to tell people about which versions of your project are currently being supported with security updates. | Version | Supported | | ------- | ------------------ | | 5.1.10 | :white_check_mark: | | 5.0.x | :x: | | 4.0.x | :x: | | < 4.0 | :x: | ## Reporting a Vulnerability If you find a vulnerability please report a security issue in the Issues section of the repository. If you know how to fix it, create a pull request. We will analyse the issue, and repair it a.s.a.p (best effort). ================================================ FILE: benchmarks/index.js ================================================ /** * Module dependencies. */ const uubench = require('uubench') /* global suite:writable */ suite = new uubench.Suite({ start: function () { console.log() }, result: function (name, stats) { const persec = 1000 / stats.elapsed const ops = stats.iterations * persec console.log('%s : %s ops/s', name, ops | 0) }, done: function () { console.log() } }) require('./metaphone') require('./soundex') require('./stemmer_id') suite.run() ================================================ FILE: benchmarks/metaphone.js ================================================ const fs = require('fs') const natural = require('../') const metaphone = natural.Metaphone.process /* global suite */ // single word suite.bench('metaphone() word', function (next) { metaphone('stephen') next() }) // small body of text const words = fs.readFileSync('lib/natural/index.js', 'utf8').split(/\W+/) suite.bench('metaphone() small', function (next) { for (let i = 0, len = words.length; i < len; ++i) { metaphone(words[i]) } next() }) // medium body of text const words2 = fs.readFileSync('README.md', 'utf8').split(/\W+/) suite.bench('metaphone() medium', function (next) { for (let i = 0, len = words2.length; i < len; ++i) { metaphone(words2[i]) } next() }) ================================================ FILE: benchmarks/sample-id.txt ================================================ Hari ini hari Sabtu. Ani tidak perlu pergi kuliah. Dia ingin pergi ke supermarket untuk berbelanja. Ani tinggal di rumah kos di dekat kampus. Pagi hari sebelum kuliah biasanya Ani makan roti dengan margarine dan selai. Dia suka selai nanas dan dia masih punya 1 botol selai di rumah. Roti sudah tidak ada, tapi besok pagi dia tidak mau makan roti. Kadang-kadang Ani suka makan roti dengan telor goreng juga. Tapi ibunya bilang lebih baik makan telor rebus saja, tidak perlu menggorengnya. Kalau sering menggoreng dapur menjadi kotor. Ani juga senang masak nasi goreng dengan saus tomat. Dia perlu minyak goreng karena minyak gorengnya sudah habis. Oh ya, hari Selasa teman-teman dia mau datang ke rumahnya untuk belajar. Jadi dia mau membuat pisang goreng untuk teman-temannya. Dia mau membeli pisang di pasar besok. Dia juga perlu peralatan makan seperti piring dan gelas plastik. Peralatan makan lebih murah beli di pasar. Jadi Ani bisa membeli minyak goreng dan saus tomat juga besok. Ani juga suka makan mie untuk makan pagi. Sudah tidak ada mie instan di rumahnya. Besok pagi dia ingin makan mie. Ani suka makan makanan yang pedas. Dia mau mencari sambal juga di supermarket. Katanya makan mie dengan sambal enak sekali. Ani suka minum Coca Cola tapi biasanya kalau pagi dan malam hari dia minum Milo panas. Wah dia juga perlu membelinya karena sekarang di rumahnya hanya ada 1 sendok Milo, hanya cukup untuk minum malam ini. Besok pagi dia mau minum Milo juga. Kalau pergi kuliah Ani membawa air untuk minum. Di kantin kampus ada orang menjual air mineral tapi harganya lebih mahal daripada di supermarket. Meskipun besok Ani tidak kuliah tapi lebih baik membelinya hari ini di supermarket. ================================================ FILE: benchmarks/soundex.js ================================================ const fs = require('fs') const natural = require('../') const soundex = natural.SoundEx.process /* global suite */ // single word suite.bench('soundex() word', function (next) { soundex('stephen') next() }) // small body of text const words = fs.readFileSync('lib/natural/index.js', 'utf8').split(/\W+/) suite.bench('soundex() small', function (next) { for (let i = 0, len = words.length; i < len; ++i) { soundex(words[i]) } next() }) // medium body of text const words2 = fs.readFileSync('README.md', 'utf8').split(/\W+/) suite.bench('soundex() medium', function (next) { for (let i = 0, len = words2.length; i < len; ++i) { soundex(words2[i]) } next() }) ================================================ FILE: benchmarks/stemmer_id.js ================================================ const fs = require('fs') const natural = require('../') const stemmerId = natural.StemmerId /* global suite */ const words = fs.readFileSync('benchmarks/sample-id.txt', 'utf8').split(/\W+/) suite.bench('stemmerId() sample text', function (next) { for (let i = 0, len = words.length; i < len; ++i) { stemmerId.stem(words[i]) } next() }) ================================================ FILE: examples/classification/MaxEntAppliedToPOSTagging_spec.js ================================================ /* Test of Classifier based on POS tagging Copyright (C) 2018 Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ // const fs = require('fs') // const base_folder_test_data = 'spec/test_data/' const brownCorpus = require('./test_data/browntag_nolines_excerpt_maxent.json') // const classifierFile = base_folder_test_data + 'classifier.json' const natural = require('../lib/natural') const Classifier = natural.MaxEntClassifier const FeatureSet = natural.FeatureSet const Context = natural.Context // Load some classes specific to part of speech tagging const Corpus = natural.MECorpus // const POS_Element = natural.POSElement const Sentence = natural.MESentence // Lexicon-based tagger is used for comparison const Tagger = natural.BrillPOSTagger const JSON_FLAG = 2 const nrIterations = 2 const minImprovement = 0.01 const trainCorpusSize = 50 // percentage const DEBUG = false // Structure of the event space // - Classes are possible tags // - A context consists of a window of words and a window of tags function applyClassifierToTestCorpus (testCorpus, tagger, classifier) { let totalWords = 0 let correctyTaggedLexicon = 0 let correctlyTaggedMaxEnt = 0 testCorpus.sentences.forEach(function (sentence) { // Put the words of the sentence in an array const s = sentence.taggedWords.map(function (token) { return token.token }) // Use the lexicon to tag the sentence const taggedSentence = tagger.tagWithLexicon(s) // Count the right tags sentence.taggedWords.forEach(function (token, i) { totalWords++ if (token.tag === taggedSentence.taggedWords[i].tag) { correctyTaggedLexicon++ } }) const sentenceLength = sentence.length // Classify tags using maxent taggedSentence.taggedWords.forEach(function (taggedWord, index) { // Create context for classication const context = new Context({ wordWindow: {}, tagWindow: {} }) // And fill it: // Current wordWindow context.data.wordWindow['0'] = taggedWord.token // Previous bigram if (index > 1) { context.data.tagWindow['-2'] = taggedSentence.taggedWords[index - 2].tag } // Left bigram if (index > 0) { context.data.tagWindow['-1'] = taggedSentence.taggedWords[index - 1].tag } // Right bigram if (index < sentenceLength - 1) { context.data.tagWindow['1'] = taggedSentence.taggedWords[index + 1].tag } // Next bigram if (index < sentenceLength - 2) { context.data.tagWindow['2'] = taggedSentence.taggedWords[index + 2].tag } // Left bigram words if (index > 0) { context.data.wordWindow['-1'] = taggedSentence.taggedWords[index - 1].token } // Right bigram words if (index < sentenceLength - 1) { context.data.wordWindow['1'] = taggedSentence.taggedWords[index + 1].token } // Classify using maximum entropy model let tag = classifier.classify(context) if (tag === '') { tag = tagger.lexicon.tagWordWithDefaults(context.data.wordWindow['0']) } // Collect stats if (tag === sentence.taggedWords[index].tag) { // Correctly tagged correctlyTaggedMaxEnt++ } DEBUG && console.log('(word, classification, right tag): ' + '(' + taggedWord.token + ', ' + tag + ', ' + sentence.taggedWords[index].tag + ')') }) }) DEBUG && console.log('Number of words tagged: ' + totalWords) DEBUG && console.log('Percentage correctly tagged lexicon: ' + correctyTaggedLexicon / totalWords * 100 + '%') DEBUG && console.log('Percentage correctly tagged maxent: ' + correctlyTaggedMaxEnt / totalWords * 100 + '%') } describe('Maximum Entropy Classifier applied to POS tagging', function () { // Prepare the train and test corpus DEBUG && console.log('Corpus after require: ' + JSON.stringify(brownCorpus, null, 2)) const corpus = new Corpus(brownCorpus, JSON_FLAG, Sentence) DEBUG && console.log('Size of corpus: ' + corpus.sentences.length) DEBUG && console.log('Corpus: ' + JSON.stringify(corpus, null, 2)) const trainAndTestCorpus = corpus.splitInTrainAndTest(trainCorpusSize) const trainCorpus = trainAndTestCorpus[0] DEBUG && console.log('Size of training corpus: ' + trainCorpus.sentences.length) DEBUG && console.log('Training corpus: ' + JSON.stringify(trainCorpus, null, 2)) const testCorpus = trainAndTestCorpus[1] DEBUG && console.log('Size of testing corpus: ' + testCorpus.sentences.length) let sample = null let classifier = null let featureSet = null let lexicon = null let tagger = null // Generate sample from trainCorpus it('generates a sample from a corpus', function () { sample = trainCorpus.generateSample() expect(sample.size()).toBeGreaterThan(0) DEBUG && console.log('Size of the sample: ' + sample.size()) }) it('generates a set of features from the sample', function () { featureSet = new FeatureSet() DEBUG && console.log(sample) sample.generateFeatures(featureSet) expect(featureSet.size()).toBeGreaterThan(0) DEBUG && console.log('Number of features: ' + featureSet.size()) DEBUG && console.log(featureSet.prettyPrint()) }) it('analyses the sample', function () { trainCorpus.analyse() lexicon = trainCorpus.buildLexicon() expect(lexicon.size()).toBeGreaterThan(0) }) it('trains the maximum entropy classifier', function () { classifier = new Classifier(featureSet, sample) DEBUG && console.log('Classifier created') classifier.train(nrIterations, minImprovement) DEBUG && console.log('Checksum: ' + classifier.p.checkSum()) }) it('compares maximum entropy based POS tagger to lexicon-based tagger', function () { // Test the classifier against the test corpus // lexicon.setDefaultCategories('NN', 'NP'); tagger = new Tagger(lexicon) applyClassifierToTestCorpus(testCorpus, tagger, classifier) }) }) ================================================ FILE: examples/classification/basic.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const natural = require('natural') const classifier = new natural.BayesClassifier() classifier.addDocument('my unit-tests failed.', 'software') classifier.addDocument('tried the program, but it was buggy.', 'software') classifier.addDocument('the drive has a 2TB capacity.', 'hardware') classifier.addDocument('i need a new power supply.', 'hardware') classifier.train() console.log(classifier.classify('did the tests pass?')) console.log(classifier.classify('did you buy a new drive?')) ================================================ FILE: examples/classification/recall.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const natural = require('natural') natural.BayesClassifier.load('classifier.json', null, function (err, classifier) { if (err) { console.log(err) return } console.log(classifier.classify('did the tests pass?')) }) ================================================ FILE: examples/classification/store.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const natural = require('natural') const classifier = new natural.BayesClassifier() classifier.addDocument('my unit-tests failed.', 'software') classifier.addDocument('tried the program, but it was buggy.', 'software') classifier.addDocument('the drive has a 2TB capacity.', 'hardware') classifier.addDocument('i need a new power supply.', 'hardware') classifier.train() classifier.save('classifier.json', function (err, classifier) { if (err) { console.log(err) } // the classifier is saved to the classifier.json file! }) ================================================ FILE: examples/classification/try_events.js ================================================ const natural = require('../../lib/natural') const PorterStemmerEs = require('../../lib/natural/stemmers/porter_stemmer_es') const classifier = new natural.LogisticRegressionClassifier(PorterStemmerEs) classifier.addDocument('ranchero golpe', 'Huevos') classifier.addDocument('bbq', 'Huevos') classifier.addDocument('salchichas ranchero', 'Tortas') classifier.on('trainedWithDocument', (v) => console.log(v)) classifier.on('doneTraining', (v) => console.log(v)) classifier.train() classifier.save('classifier.json', (err) => console.log(err)) ================================================ FILE: examples/inflection/count.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const natural = require('natural') const inflector = natural.CountInflector console.log(inflector.nth(1)) console.log(inflector.nth(2)) console.log(inflector.nth(3)) console.log(inflector.nth(4)) console.log(inflector.nth(10)) console.log(inflector.nth(11)) console.log(inflector.nth(101)) console.log(inflector.nth(102)) console.log(inflector.nth(103)) console.log(inflector.nth(104)) ================================================ FILE: examples/inflection/noun.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const natural = require('natural') const nounInflector = new natural.NounInflector() let plural = nounInflector.pluralize('radius') console.log(plural) plural = nounInflector.pluralize('beer') console.log(plural) let singular = nounInflector.singularize('radii') console.log(singular) singular = nounInflector.singularize('beers') console.log(singular) ================================================ FILE: examples/phonetics/compare.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const natural = require('natural') const phonetic = natural.Metaphone const wordA = 'phonetics' const stdin = process.openStdin() stdin.setEncoding('ascii') process.stdout.write('try to enter a word that sounds like "' + wordA + '": ') stdin.on('data', function (wordB) { if (phonetic.compare(wordA, wordB)) { process.stdout.write('they sound alike!\n') } else { process.stdout.write('sorry, they don\'t sound alike.\n') } process.exit() }) ================================================ FILE: examples/phonetics/tokenize_and_phoneticize.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const natural = require('natural') const phonetic = natural.DoubleMetaphone const sentence = 'phonetic modules contain algorithms' const stdin = process.openStdin() stdin.setEncoding('ascii') // phonetic.attach() process.stdout.write('enter a word that sounds like one of these, "' + sentence + '": ') const words = phonetic.tokenizeAndPhoneticize(sentence, phonetic) console.log(words) function findMatch (input) { const inputSounds = phonetic.process(input) console.log(inputSounds) for (let i = 0; i < words.length; i++) { const wordSounds = words[i] if (wordSounds[0] === inputSounds[0] && wordSounds[1] === inputSounds[1]) { process.stdout.write('match found!\n') return } } process.stdout.write('no match found.\n') } stdin.on('data', function (input) { findMatch(input) process.exit() }) ================================================ FILE: examples/stemming/stem_corpus.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const natural = require('natural') const stemmer = natural.PorterStemmer console.log(stemmer.tokenizeAndStem('i stemmed words.')) console.log(stemmer.tokenizeAndStem('i stemmed words.', true)) ================================================ FILE: examples/stemming/stem_word.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const natural = require('natural') const stemmer = natural.LancasterStemmer console.log(stemmer.stem('stemming')) ================================================ FILE: examples/tfidf/array_example.js ================================================ /* Copyright (c) 2011, Rob Ellis, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const natural = require('natural') const TfIdf = natural.TfIdf const tfidf = new TfIdf() tfidf.addDocument(['document', 'about', 'node']) tfidf.addDocument(['document', 'about', 'ruby']) tfidf.addDocument(['document', 'about', 'ruby', 'node']) tfidf.addDocument(['document', 'about', 'node', 'node']) tfidf.tfidfs(['node', 'ruby'], function (i, measure) { console.log('document #' + i + ' is ' + measure) }) ================================================ FILE: examples/tfidf/multiple_terms.js ================================================ /* Copyright (c) 2011, Rob Ellis, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const natural = require('natural') const TfIdf = natural.TfIdf const tfidf = new TfIdf() tfidf.addDocument('this document is about node.') tfidf.addDocument('this document is about ruby.') tfidf.addDocument('this document is about ruby and node.') tfidf.tfidfs('node ruby', function (i, measure) { console.log('document #' + i + ' is ' + measure) }) ================================================ FILE: examples/tfidf/tfidf_example.js ================================================ /* Copyright (c) 2011, Rob Ellis, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const natural = require('natural') const TfIdf = natural.TfIdf const tfidf = new TfIdf() tfidf.addDocument('this document is about node.') tfidf.addDocument('this document is about ruby.') tfidf.addDocument('this document is about ruby and node.') tfidf.addDocument('this document is about node. it has node examples') console.log('node --------------------------------') tfidf.tfidfs('node', function (i, measure) { console.log('document #' + i + ' is ' + measure) }) console.log('ruby --------------------------------') tfidf.tfidfs('ruby', function (i, measure) { console.log('document #' + i + ' is ' + measure) }) console.log('-------------------------------------') console.log(tfidf.tfidf('ruby', 0)) console.log(tfidf.tfidf('ruby', 1)) ================================================ FILE: examples/tokenizer/testSentenceTokenizer.js ================================================ const Tokenizer = require('../../lib/natural').SentenceTokenizer const abbreviations = require('../../lib/natural').abbreviations const sentenceDemarkers = ['.', '!', '?'] const tokenizer = new Tokenizer(abbreviations, sentenceDemarkers) const testData = `Breaking News: Renewable Energy on the Rise In recent years, the adoption of renewable energy sources has been on a significant rise. Governments around the world are investing heavily in solar, wind, and hydroelectric power to reduce their carbon footprints and combat climate change. In the United States, the Biden administration has set ambitious goals to achieve net-zero emissions by 2050. This involves a massive shift from fossil fuels to cleaner energy sources. "We are at a pivotal moment in history," said President Biden. "Our actions today will determine the health of our planet for future generations." Meanwhile, in Europe, the European Union has been at the forefront of renewable energy adoption. Countries like Germany and Denmark are leading the charge with substantial investments in wind farms and solar panels. The EU's Green Deal aims to make Europe the first climate-neutral continent by 2050. China, the world's largest emitter of greenhouse gases, is also making strides in renewable energy. The country has become the largest producer of solar panels and has invested heavily in wind energy. "China is committed to a green future," said President Xi Jinping during a recent summit. Despite these advancements, challenges remain. The transition to renewable energy requires enormous financial investments, technological innovations, and policy changes. Additionally, the intermittency of renewable sources like solar and wind poses a challenge for grid stability. Experts believe that with continued global cooperation and investment, renewable energy can become the dominant source of power in the coming decades. "The future is bright for renewable energy," said Dr. Jane Goodall, a renowned environmentalist. "We have the technology, the resources, and the will to make this change. Now, we must act." Stay tuned for more updates on this developing story.` const result = tokenizer.tokenize(testData) console.log(result) ================================================ FILE: index.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ module.exports = require('./lib/natural/') ================================================ FILE: io_spec/MaxEntClassifier_spec.js ================================================ /* Copyright (c) 2019, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' /* eslint-disable no-unused-expressions */ const fs = require('fs') const _ = require('underscore') const Sample = require('../lib/natural/classifiers/maxent/Sample') const Element = require('../lib/natural/classifiers/maxent/SimpleExample/SE_Element') const Context = require('../lib/natural/classifiers/maxent/Context') const FeatureSet = require('../lib/natural/classifiers/maxent/FeatureSet') const Classifier = require('../lib/natural/classifiers/maxent/Classifier') const classifierFile = 'io_spec/test_data/classifier.json' const nrIterations = 50 const minImprovement = 0.01 const DEBUG = false describe('Maximum entropy classifier file IO', function () { // Prepare sample const sample = new Sample() sample.addElement(new Element('x', new Context('0'))) sample.addElement(new Element('y', new Context('0'))) sample.addElement(new Element('x', new Context('1'))) sample.addElement(new Element('y', new Context('1'))) // Prepare feature set const featureSet = new FeatureSet() sample.generateFeatures(featureSet) // Prepare classifier const classifier = new Classifier(featureSet, sample) DEBUG && console.log('Classifier created') classifier.train(nrIterations, minImprovement) DEBUG && console.log('Checksum: ' + classifier.p.checkSum()) it('saves the classifier to a file', function (done) { classifier.save(classifierFile, function (err, classifier) { if (err) { console.log(err) expect(false).toBe(true) } else { DEBUG && console.log('Classifier saved to ' + classifierFile) expect(fs.existsSync(classifierFile)).toBe(true) } done() }) }) it('loads the classifier from a file', function (done) { classifier.load(classifierFile, Element, function (err, c) { if (err) { console.log(err) expect(false).toBe(true) } else { DEBUG && console.log('Classifier loaded from ' + classifierFile) // Train the classifier c.train(nrIterations, minImprovement) // Compare loaded classifier to original classifier expect(_.isEqual(classifier.sample, c.sample)).toEqual(true) classifier.features.features.forEach((f, index) => { Object.keys(f).forEach(key => { if (typeof f[key] !== 'function') { expect(c.features.features[index][key]).toEqual(f[key]) } }) }) } done() }) }) }) ================================================ FILE: io_spec/Sample_spec.js ================================================ /* Copyright (c) 2019, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const fs = require('fs') const Sample = require('../lib/natural/classifiers/maxent/Sample') const Element = require('../lib/natural/classifiers/maxent/Element') const Context = require('../lib/natural/classifiers/maxent/Context') const DEBUG = false const sampleFile = './io_spec/test_data/sample.json' describe('Sample class', function () { // Create sample let sample = new Sample() sample.addElement(new Element('x', new Context('0'))) sample.addElement(new Element('y', new Context('0'))) sample.addElement(new Element('x', new Context('1'))) sample.addElement(new Element('y', new Context('1'))) it('saves a sample to a file', function (done) { sample.save(sampleFile, function (err, sample) { if (err) { console.log(err) expect(false).toBe(true) } else { DEBUG && console.log('Sample saved to ' + sampleFile) expect(fs.existsSync(sampleFile)).toBe(true) } done() }) }) let newSample = null it('loads a sample from a file', function (done) { sample.load(sampleFile, Element, function (err, s) { if (err) { console.log(err) expect(false).toBe(true) } else { DEBUG && console.log('Sample loaded from ' + sampleFile) expect(s.size()).toEqual(sample.size()) newSample = s } done() }) if (newSample) { expect(newSample.size()).toEqual(sample.size()) sample = newSample } }) }) ================================================ FILE: io_spec/StorageBackend_spec.js ================================================ /* Copyright (c) 2024, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ const storage = require('../lib/natural/util/storage/StorageBackend.js') const STORAGESERVERS = true describe('StorageBackend', () => { let storageBackend = null beforeEach(() => { storageBackend = new storage.StorageBackend() }) if (STORAGESERVERS) { // Test storage servers const object = { attr1: 'val1', attr2: 'val2' } // A for loop to test all five storage methods Object.keys(storage.STORAGE_TYPES).forEach(storageType => { it('should store data in and retrieve data from ' + storageType, async () => { await storageBackend.setStorageType(storageType) const key = await storageBackend.store(object) expect(key).not.toEqual(null) const result = await storageBackend.retrieve(key) expect(result).toEqual(object) }) }) it('should throw an error for an invalid storage type', async () => { try { await storageBackend.setStorageType('invalidType') } catch (error) { expect(error.message).toEqual('Invalid storage type') } }) it('should throw an error for changing the storage type', async () => { storageBackend.setStorageType('FILE') try { await storageBackend.setStorageType('FILE') } catch (error) { expect(error.message).toEqual('Storage type already set') } }) } }) ================================================ FILE: io_spec/bayes_classifier_spec.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const natural = require('../lib/natural') const sinon = require('sinon') const baseClassifier = require('../lib/natural/classifiers/classifier') const storage = require('../lib/natural/util/storage/StorageBackend') function setupClassifier () { const classifier = new natural.BayesClassifier() classifier.addDocument(['fix', 'box'], 'computing') classifier.addDocument(['write', 'code'], 'computing') classifier.addDocument(['script', 'code'], 'computing') classifier.addDocument(['write', 'book'], 'literature') classifier.addDocument(['read', 'book'], 'literature') classifier.addDocument(['study', 'book'], 'literature') return classifier } describe('Bayes classifier file I/O', function () { it('should save and load a working classifier', function (done) { const classifier = setupClassifier() classifier.train() classifier.save('bayes_classifier.json', function (err) { if (err) { throw err } natural.BayesClassifier.load('bayes_classifier.json', null, function (err, newClassifier) { if (err) { throw err } newClassifier.addDocument('kick a ball', 'sports') newClassifier.addDocument('hit some balls', 'sports') newClassifier.addDocument('kick and punch', 'sports') newClassifier.train() expect(newClassifier.classify('a bug in the code')).toBe('computing') expect(newClassifier.classify('read all the books')).toBe('literature') expect(newClassifier.classify('kick butt')).toBe('sports') done() }) }) }) it('should only execute the callback once when failing to load a classifier', function (done) { natural.BayesClassifier.load('nonexistant_bayes_classifier.json', null, function (err, newClassifier) { expect(err.code).toBe('ENOENT') expect(newClassifier).toBe(undefined) done() }) }) describe('Bayes classifier load', function () { let sandbox = null beforeEach(function () { sandbox = sinon.createSandbox() }) afterEach(function () { sandbox.restore() }) it('should pass an error to the callback function', function () { sandbox.stub(baseClassifier, 'load').callsFake(function (filename, stemmer, cb) { cb(new Error('An error occurred')) }) natural.BayesClassifier.load('/spec/test_data/tfidf_document1.txt', null, function (err, newClassifier) { expect(err).toBeTruthy() expect(newClassifier).not.toBeTruthy() }) }) }) describe('Storing and retrieving Bayesian classifiers using the storage backend', function () { const classifier = setupClassifier() classifier.train() Object.keys(storage.STORAGE_TYPES).forEach(storageType => { it('should be able to save and load a classifier to ' + storageType, async function () { const store = await new storage.StorageBackend(storageType) const key = await classifier.saveTo(store) expect(key).toBeDefined() const classifierLoaded = await natural.BayesClassifier.loadFrom(key, undefined, store) expect(Object.getPrototypeOf(classifierLoaded)).toEqual(Object.getPrototypeOf(classifier)) }) }) }) }) ================================================ FILE: io_spec/classifier_spec.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const natural = require('../lib/natural') const Classifier = require('../lib/natural/classifiers/classifier.js') const storage = require('../lib/natural/util/storage/StorageBackend.js') const fs = require('fs') describe('classifier file IO', function () { describe('save', function () { const tmpFilename = './test_data/deleteMe' const nonExistentFilename = '/nonExistentDir/deleteMe' let classifier beforeEach(function () { classifier = new natural.BayesClassifier() classifier.addDocument('I went to see the doctor of', 'philosophy') }) afterEach(function () { if (fs.existsSync(tmpFilename)) { fs.unlinkSync(tmpFilename) fs.unlinkSync(nonExistentFilename) } }) it('does nothing if called without a callback', function () { classifier.save(tmpFilename) expect(fs.existsSync(tmpFilename)).toBe(false) }) it('fails if writing to a file fails', function () { classifier.save(nonExistentFilename, function (err) { expect(err.code).toEqual('ENOENT') expect(fs.existsSync(tmpFilename)).toBe(false) }) }) }) describe('load', function () { it('does nothing if called without a callback', function () { let result try { result = Classifier.load('./test_data/tfidf/tfidf_document1.txt') } catch (err) { console.log(err) } expect(result).toEqual(undefined) }) it('does nothing if called with a nonexistent filename', function () { Classifier.load('./nonexistentFilename', function (err, newClassifier) { expect(err.code).toEqual('ENOENT') expect(newClassifier).toEqual(null) }) }) }) describe('Storing and retrieving Logistic Regression classifiers using the storage backend', function () { const classifier = new Classifier() Object.keys(storage.STORAGE_TYPES).forEach(storageType => { it('should be able to save and load a classifier to ' + storageType, async function () { const store = await new storage.StorageBackend(storageType) const key = await classifier.saveTo(store) expect(key).toBeDefined() const classifierLoaded = await Classifier.loadFrom(key, store) expect(Object.getPrototypeOf(classifierLoaded)).toEqual(Object.getPrototypeOf(classifier)) }) }) }) }) ================================================ FILE: io_spec/logistic_regression_classifier_spec.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const LogisticRegressionClassifier = require('../lib/natural').LogisticRegressionClassifier const storage = require('../lib/natural/util/storage/StorageBackend') function setupClassifier () { const classifier = new LogisticRegressionClassifier() classifier.addDocument('i fixed the box', 'computing') classifier.addDocument('i write code', 'computing') classifier.addDocument('nasty script code', 'computing') classifier.addDocument('write a book', 'literature') classifier.addDocument('read a book', 'literature') classifier.addDocument('study the books', 'literature') classifier.train() return classifier } describe('Saving and loading logistic regression classifiers to/from file', function () { it('should save and load a working classifier', function () { const classifier = setupClassifier() classifier.save('lr_classifier.json', function (err) { if (err) { throw err } LogisticRegressionClassifier.load('lr_classifier.json', null, function (err, newClassifier) { if (err) { throw err } newClassifier.addDocument('hit some balls', 'sports') newClassifier.addDocument('kick a ball', 'sports') newClassifier.addDocument('kick and punch things', 'sports') newClassifier.train() expect(newClassifier.classify('a bug in the code')).toBe('computing') expect(newClassifier.classify('read all the books')).toBe('literature') expect(newClassifier.classify('kick butt')).toBe('sports') expect(Object.getPrototypeOf(newClassifier)).toEqual(Object.getPrototypeOf(classifier)) }) }) }) it('should only execute the callback once when failing to load a classifier', function () { LogisticRegressionClassifier.load('nonexistant_lr_classifier.json', null, function (err, newClassifier) { if (err) { expect(err.code).toBe('ENOENT') expect(newClassifier).toBe(undefined) } }) }) describe('Storing and retrieving Logistic Regression classifiers using the storage backend', function () { const classifier = setupClassifier() Object.keys(storage.STORAGE_TYPES).forEach(storageType => { it('should be able to save and load a classifier to ' + storageType, async function () { const store = await new storage.StorageBackend(storageType) const key = await classifier.saveTo(store) expect(key).toBeDefined() const classifierLoaded = await LogisticRegressionClassifier.loadFrom(key, undefined, store) expect(Object.getPrototypeOf(classifierLoaded)).toEqual(Object.getPrototypeOf(classifier)) }) }) }) }) ================================================ FILE: io_spec/test_data/tfidf/one ================================================ disk document one ================================================ FILE: io_spec/test_data/tfidf/tfidf_document1.txt ================================================ this document is about node. ================================================ FILE: io_spec/test_data/tfidf/tfidf_document2.txt ================================================ this document is about ruby. ================================================ FILE: io_spec/test_data/tfidf/tfidf_document3.txt ================================================ this document is about ruby and node. ================================================ FILE: io_spec/test_data/tfidf/tfidf_document4.txt ================================================ this document is about node. it has node examples ================================================ FILE: io_spec/test_data/tfidf/two ================================================ disk document two ================================================ FILE: io_spec/tfidf_spec.js ================================================ /* Copyright (c) 2011, Rob Ellis, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const TfIdf = require('../lib/natural/tfidf/tfidf') let tfidf describe('tfidf io', function () { it('should be able to be serialized', function () { tfidf = new TfIdf() tfidf.addDocument('document one', 'un') tfidf.addDocument('document Two', 'deux') const s = JSON.stringify(tfidf) expect(s).toBe('{"documents":[{"__key":"un","document":1,"one":1},{"__key":"deux","document":1,"two":1}],"_idfCache":{}}') }) it('should deserialize', function () { const s = '{"documents":[{"__key":"un","document":1,"one":1},{"__key":"deux","document":1,"two":1}]}' const tfidf = new TfIdf(JSON.parse(s)) expect(tfidf.tfidf('one', 0)).toBe(1) expect(tfidf.tfidf('two', 0)).toBe(0) }) it('should process files', function () { const tfidf = new TfIdf() tfidf.addFileSync('io_spec/test_data/tfidf/one') tfidf.addFileSync('io_spec/test_data/tfidf/two') expect(tfidf.tfidf('Document', 0)).toBe(0.5945348918918356) expect(tfidf.tfidf('one', 0)).toBe(1) expect(tfidf.tfidf('two', 0)).toBe(0) }) // Test tf-idf computation on files loaded using readFileSync it('should load documents from files', function () { tfidf = new TfIdf() tfidf.addFileSync('io_spec/test_data/tfidf/tfidf_document1.txt', null, { node: 0, ruby: 1 }) tfidf.addFileSync('io_spec/test_data/tfidf/tfidf_document2.txt', null, { node: 1, ruby: 3 }) tfidf.addFileSync('io_spec/test_data/tfidf/tfidf_document3.txt', null, { node: 0, ruby: 3 }) tfidf.addFileSync('io_spec/test_data/tfidf/tfidf_document4.txt', null, { node: 2, ruby: 1 }) const correctCalculations = [ 1 * (1 + Math.log(4.0 / 4.0)), 0, 2 * (1 + Math.log(4.0 / 4.0)), 1 * (1 + Math.log(4.0 / 3.0)) ] tfidf.tfidfs('node', function (i, measure, k) { expect(measure).toBe(correctCalculations[k.node]) }) tfidf.tfidfs('ruby', function (i, measure, k) { expect(measure).toBe(correctCalculations[k.ruby]) }) // addFileSync with restoreCache flag set to true. tfidf.addFileSync('io_spec/test_data/tfidf/tfidf_document4.txt', null, { node: 2, ruby: 1 }, true) }) // Test idf caching when adding documents from addFileSync it('should update a terms tf-idf score after adding documents from addFileSync', function () { tfidf = new TfIdf() // Add 2 documents tfidf.addFileSync('io_spec/test_data/tfidf/tfidf_document1.txt', null, 0) tfidf.addFileSync('io_spec/test_data/tfidf/tfidf_document2.txt', null, 1) // check the tf-idf for 'node' expect(tfidf.tfidf('node', 0)).toBe(1 * (1 + Math.log(2.0 / 2.0))) // Add 2 more documents tfidf.addFileSync('io_spec/test_data/tfidf/tfidf_document3.txt') tfidf.addFileSync('io_spec/test_data/tfidf/tfidf_document4.txt') // Ensure that the tf-idf in the same document has changed to reflect the new idf. expect(tfidf.tfidf('node', 0)).toBe(1 * (1 + Math.log(4.0 / 4.0))) }) it('should use the specified encoding for addFileSync', function () { tfidf = new TfIdf() tfidf.addFileSync('io_spec/test_data/tfidf/tfidf_document1.txt', 'base64') tfidf.addFileSync('io_spec/test_data/tfidf/tfidf_document1.txt', 'utf8') expect(tfidf.tfidf('dghpcybkb2n1bwvudcbpcybhym91dcbub2rllg', 0)).toBe(1 * (1 + Math.log(2.0 / 2.0))) }) // Test encoding check for addFileSync it('should require a valid encoding for addFileSync', function () { tfidf = new TfIdf() expect(function () { tfidf.addFileSync('spec/test_data/tfidf_document1.txt', 'foobar') }).toThrow(new Error('Invalid encoding: foobar')) }) }) ================================================ FILE: io_spec/tmp/.this_folder_exists.txt ================================================ ================================================ FILE: io_spec/tmp/055ff9e6-bf89-42d0-b44a-4dcc523bf6fc.json ================================================ {"_events":{},"_eventsCount":0,"classifier":{"classFeatures":{"computing":{"0":2,"1":2,"2":2,"3":3,"4":2},"literature":{"2":2,"5":4,"6":2,"7":2}},"classTotals":{"computing":4,"literature":4},"totalExamples":7,"smoothing":1},"docs":[{"label":"computing","text":["fix","box"]},{"label":"computing","text":["write","code"]},{"label":"computing","text":["script","code"]},{"label":"literature","text":["write","book"]},{"label":"literature","text":["read","book"]},{"label":"literature","text":["study","book"]}],"features":{"fix":1,"box":1,"write":2,"code":2,"script":1,"book":3,"read":1,"study":1},"stemmer":{},"lastAdded":6,"Threads":null} ================================================ FILE: io_spec/tmp/7cfb947f-0115-4ef6-b21b-d9554d51caf2.json ================================================ {"attr1":"val1","attr2":"val2"} ================================================ FILE: io_spec/tmp/bf35794b-83e7-4628-8ec2-a0cf451a6fb2.json ================================================ {"_events":{},"_eventsCount":0,"docs":[],"features":{},"stemmer":{},"lastAdded":0,"Threads":null} ================================================ FILE: io_spec/tmp/c2ee3580-26b9-4972-b7f9-e59a933ed021.json ================================================ {"_events":{},"_eventsCount":0,"classifier":{"examples":{"computing":[[1,1,0,0,0,0,0,0,0],[0,0,1,1,0,0,0,0,0],[0,0,0,1,1,1,0,0,0]],"literature":[[0,0,1,0,0,0,1,0,0],[0,0,0,0,0,0,1,1,0],[0,0,0,0,0,0,1,0,1]]},"features":[],"featurePositions":{},"maxFeaturePosition":0,"classifications":["computing","literature"],"exampleCount":6,"theta":[{"elements":[2.0057203693422903,2.0057203693422903,0.0904766662626176,3.447364098636818,0.9696521506748157,0.9696521506748157,-4.840706080886848,-1.2267353995937322,-1.2267353995937322]},{"elements":[-2.0057203693422894,-2.0057203693422894,-0.09047666626261801,-3.4473640986368186,-0.9696521506748156,-0.9696521506748156,4.84070608088685,1.2267353995937313,1.2267353995937313]}]},"docs":[{"label":"computing","text":["fix","box"]},{"label":"computing","text":["write","code"]},{"label":"computing","text":["nasti","script","code"]},{"label":"literature","text":["write","book"]},{"label":"literature","text":["read","book"]},{"label":"literature","text":["studi","book"]}],"features":{"fix":1,"box":1,"write":2,"code":2,"nasti":1,"script":1,"book":3,"read":1,"studi":1},"stemmer":{},"lastAdded":6,"Threads":null} ================================================ FILE: io_spec/wordnet_index_spec.js ================================================ /* Copyright (c) 2014, John Markos O'Neill Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const IndexFile = require('../lib/natural/wordnet/index_file') describe('indexFile', function () { describe('getFileSize', function () { it('should look up a word if the file exists', function () { const indexFile = new IndexFile('./test_data/', 'document1.txt') indexFile.lookupFromFile('node', function (indexRecord) { }) }) it('should fail to lookup a word if the file does not exist', function () { const indexFile = new IndexFile('spec/test_data/', 'nonexistent.txt') indexFile.lookupFromFile('node', function (err) { err.code.should.equal('ENOENT') }) }) }) }) ================================================ FILE: io_spec/wordnet_spec.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const WordNet = require('../lib/natural/wordnet/wordnet') describe('wordnet', function () { it('should lookup synonyms', function (done) { const wordnet = new WordNet() wordnet.lookupSynonyms('entity', function (records) { expect(records.length).toBe(3) done() }) }) function expectResults (records) { expect(records.length).toBe(3) expect(records[0].synsetOffset).toBe(4431553) expect(records[1].synsetOffset).toBe(2137) expect(records[2].synsetOffset).toBe(1930) } it('should lookup synonyms give a synset offset and a pos', function (done) { const wordnet = new WordNet() wordnet.getSynonyms(1740, 'n', function (records) { expectResults(records) done() }) }) it('should lookup synonyms via a provided synset object', function (done) { const wordnet = new WordNet() wordnet.lookup('entity', function (results) { wordnet.getSynonyms(results[0], function (records) { expectResults(records) done() }) }) }) it('should add records but once', function (done) { const wordnet = new WordNet() wordnet.lookup('node', function (records) { expect(records.length).toBe(8) expect(records[0].lemma).toBe('node') done() }) }) }) ================================================ FILE: io_spec/wordnet_test.ts ================================================ import { WordNet } from '../lib/natural/wordnet' let wordnet = new WordNet() wordnet.lookup('node', function (results) { results.forEach(function (result) { console.log('------------------------------------') console.log(result.synsetOffset) console.log(result.pos) console.log(result.lemma) console.log(result.synonyms) console.log(result.pos) console.log(result.gloss) }) wordnet = new WordNet() wordnet.get(4424418, 'n', function (result) { console.log('------------------------------------') console.log('Looking up an entry by id 4424418') console.log(result.lemma) console.log(result.pos) console.log(result.gloss) console.log(result.synonyms) }) }) ================================================ FILE: lib/natural/analyzers/SenType.ts ================================================ /* Copyright (c) 2024, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ export const enum SenType { Unknown = 'UNKNOWN', Command = 'COMMAND', Interrogative = 'INTERROGATIVE', Exclamatory = 'EXCLAMATORY', Declarative = 'DECLARATIVE' } ================================================ FILE: lib/natural/analyzers/index.d.ts ================================================ /* Copyright (c) 2022, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import type { SenType } from './SenType' declare interface TaggedWord { token: string pos: string pp?: boolean spos?: string added?: boolean [key: string]: any } declare type PunctuationMapping = Array> | '' declare type PunctuationFunction = () => PunctuationMapping declare interface TaggedSentence { tags: TaggedWord[] punct: PunctuationFunction } declare type CallbackFunction = (obj: SentenceAnalyzer) => void export class SentenceAnalyzer { posObj: TaggedSentence senType: SenType | null constructor (pos: TaggedSentence, cbf: CallbackFunction) part (cbf: CallbackFunction): void prepositionPhrases (): void subjectToString (): string predicateToString (): string implicitYou (): boolean toString (): string type (cbf: CallbackFunction): string } ================================================ FILE: lib/natural/analyzers/index.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' exports.SentenceAnalyzer = require('./sentence_analyzer') ================================================ FILE: lib/natural/analyzers/sentence_analyzer.js ================================================ /* Copyright (c) 2011, Rob Ellis, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const _ = require('underscore') /* Sentences Analyzer Class From http://www.writingcentre.uottawa.ca/hypergrammar/sntpurps.html Take a POS input and analyse it for - Type of Sentense - Interrogative - Tag Questions - - Declarative - Exclamatory - Imperative - Parts of a Sentense - Subject - Predicate - Show Preposition Phrases */ class SentenceAnalyzer { constructor (pos, callbackFunction) { this.posObj = pos this.senType = null callbackFunction(this) } part (callbackFunction) { const subject = [] const predicat = [] let verbFound = false this.prepositionPhrases() for (let i = 0; i < this.posObj.tags.length; i++) { if (this.posObj.tags[i].pos === 'VB') { if (i === 0) { verbFound = true } else { // We need to Test for any EX before the VB if (this.posObj.tags[i - 1].pos !== 'EX') { verbFound = true } else { predicat.push(this.posObj.tags[i].token) } } } // Add Pronoun Phrase (pp) Or Subject Phrase (sp) if (!verbFound) { if (this.posObj.tags[i].pp !== true) { this.posObj.tags[i].spos = 'SP' } subject.push(this.posObj.tags[i].token) } else { if (this.posObj.tags[i].pp !== true) { this.posObj.tags[i].spos = 'PP' } predicat.push(this.posObj.tags[i].token) } } if (subject.length === 0) { this.posObj.tags.push({ token: 'You', spos: 'SP', pos: 'PRP', added: true }) } callbackFunction(this) } // Takes POS and removes IN to NN or NNS // Adds a PP for each prepositionPhrases prepositionPhrases () { let remove = false for (let i = 0; i < this.posObj.tags.length; i++) { if (this.posObj.tags[i].pos.match('IN')) { remove = true } if (remove) { this.posObj.tags[i].pp = true } if (this.posObj.tags[i].pos.match('NN')) { remove = false } } } subjectToString () { return this.posObj.tags.map(function (t) { if (t.spos === 'SP' || t.spos === 'S') { return t.token } else return null }).join(' ') } predicateToString () { return this.posObj.tags.map(function (t) { if (t.spos === 'PP' || t.spos === 'P') { return t.token } else return null }).join(' ') } implicitYou () { for (let i = 0; i < this.posObj.tags.length; i++) { if (this.posObj.tags[i].added) { return true } } return false } toString () { return this.posObj.tags.map(function (t) { return t.token }).join(' ') } // This is quick and incomplete. type (cbf) { const callbackFunction = cbf || false // Check for implicit you before popping a tag. const implicitYou = this.implicitYou() // FIXME - punct seems useless let lastElement = this.posObj.punct() // console.log(lastElement) lastElement = (lastElement.length !== 0) ? lastElement.pop() : this.posObj.tags.pop() // console.log(lastElement) if (lastElement.pos !== '.') { if (implicitYou) { this.senType = 'COMMAND' } else if (_.contains(['WDT', 'WP', 'WP$', 'WRB'], this.posObj.tags[0].pos)) { // Sentences that start with: who, what where when why and how, then they are questions this.senType = 'INTERROGATIVE' } else if (_.contains(['PRP'], lastElement.pos)) { // Sentences that end in a Personal pronoun are most likely questions // eg. We should run away, should we [?] // eg. You want to see that again, do you [?] this.senType = 'INTERROGATIVE' } else { this.senType = 'UNKNOWN' } } else { switch (lastElement.token) { case '?': this.senType = 'INTERROGATIVE' break case '!': this.senType = (implicitYou) ? 'COMMAND' : 'EXCLAMATORY' break case '.': this.senType = (implicitYou) ? 'COMMAND' : 'DECLARATIVE' break } } if (callbackFunction && _.isFunction(callbackFunction)) { callbackFunction(this) } else { return this.senType } } } module.exports = SentenceAnalyzer ================================================ FILE: lib/natural/brill_pos_tagger/data/Dutch/README.txt ================================================ Transformation rules and lexicon are from https://mlnl.net/jg/software/bnl/ ================================================ FILE: lib/natural/brill_pos_tagger/data/Dutch/brill_CONTEXTRULES.jg ================================================ Pron(betr,neut,zelfst) Pron(aanw,neut,attr) PREVTAG Prep(voor) Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXT1OR2TAG Adv(gew,geen_func,stell,onverv) Pron(onbep,neut,zelfst) Art(bep,onzijd,neut) NEXT1OR2TAG N(soort,ev,neut) Prep(voor) Adv(deel_v) NEXT1OR2TAG STAART Prep(voor) Adv(deel_v) NEXTTAG Prep(voor_inf) Adj(adv,stell,onverv) Adj(attr,stell,onverv) PREV1OR2TAG Art(onbep,zijd_of_onzijd,neut) Pron(betr,neut,zelfst) Pron(aanw,neut,attr) NEXTTAG N(soort,ev,neut) Prep(voor) Adv(deel_v) NEXTTAG Prep(voor) Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXTTAG Adv(gew,geen_func,stell,onverv) Conj(onder,met_fin) Pron(aanw,neut,attr) NEXTTAG N(soort,ev,neut) Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) PREVTAG N(soort,mv,neut) Adv(gew,er) Adv(pron,er) WDAND2TAGAFT er Prep(voor) Prep(voor) Adv(deel_v) NEXTTAG Punc(komma) Conj(neven) Adv(gew,geen_func,stell,onverv) PREVTAG Adv(gew,geen_func,stell,onverv) Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXTTAG V(hulp_of_kopp,ott,3,ev) Pron(onbep,neut,zelfst) Pron(bez,2,ev,neut,attr) NEXTTAG N(soort,ev,neut) Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXT1OR2TAG Art(bep,zijd_of_mv,neut) V(hulp,ott,1_of_2_of_3,mv) V(hulp,inf) NEXTTAG V(trans,inf) Pron(vrag,neut,attr) Pron(betr,neut,zelfst) PREV1OR2TAG Prep(voor) V(hulp,ott,3,ev) V(hulp,ott,1,ev) NEXT1OR2OR3TAG Pron(per,1,ev,nom) Pron(betr,neut,zelfst) Pron(aanw,neut,zelfst) PREVTAG Conj(neven) Pron(onbep,gen,attr) Adv(gew,geen_func,stell,onverv) CURWD anders Adj(attr,stell,onverv) Adj(adv,stell,onverv) PREV1OR2OR3TAG N(soort,mv,neut) Adv(gew,aanw) Conj(onder,met_fin) PREV1OR2OR3TAG Adv(gew,geen_func,vergr,onverv) Adv(gew,geen_func,vergr,onverv) Num(hoofd,onbep,zelfst,vergr,onverv) NEXT1OR2OR3TAG Conj(onder,met_fin) Adv(gew,er) Adv(pron,er) NEXT1OR2OR3TAG Adv(deel_v) Adv(deel_v) Adv(deel_adv) PREV1OR2OR3TAG Adv(pron,er) Prep(voor) Adv(deel_adv) NEXTTAG Punc(punt) Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXT1OR2OR3TAG Adv(gew,aanw) Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,inf) NEXTTAG Punc(punt) Prep(voor_inf) Adv(gew,geen_func,stell,onverv) NEXTTAG Adj(attr,stell,onverv) Pron(onbep,neut,zelfst) Art(bep,onzijd,neut) PREV1OR2OR3TAG Prep(voor) V(hulp,ott,3,ev) V(hulp,ott,1,ev) PREV1OR2OR3TAG Pron(per,1,ev,nom) Adj(attr,stell,onverv) Adj(adv,stell,onverv) CURWD werkelijk Adv(gew,aanw) Conj(onder,met_fin) PREV1OR2TAG Adj(adv,vergr,onverv) Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,inf) NEXTTAG Punc(komma) Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) PREVTAG Conj(neven) N(soort,ev,neut) Adj(attr,stell,onverv) SURROUNDTAG Art(onbep,zijd_of_onzijd,neut) N(soort,ev,neut) V(trans,inf) V(trans,ott,1_of_2_of_3,mv) PREV1OR2OR3TAG Punc(komma) Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXTTAG Prep(voor) V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) PREV1OR2TAG STAART Adj(attr,stell,verv_neut) N(soort,ev,neut) NEXTTAG Prep(voor) N(soort,ev,neut) V(trans,ott,1,ev) PREVTAG Pron(per,1,ev,nom) Pron(per,1,ev,dat_of_acc) Pron(ref,1,ev) PREV1OR2TAG Pron(per,1,ev,nom) Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) PREVTAG V(hulp_of_kopp,ott,3,ev) Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXT1OR2TAG Adv(gew,aanw) Adv(gew,aanw) Conj(onder,met_fin) NEXTTAG Pron(per,3,ev,nom) Conj(neven) Adv(gew,geen_func,stell,onverv) WDNEXTTAG maar Art(onbep,zijd_of_onzijd,neut) Prep(voor_inf) Adv(gew,geen_func,stell,onverv) NEXT1OR2TAG Adj(adv,stell,onverv) V(intrans,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) CURWD dacht V(trans,inf) V(trans,ott,1_of_2_of_3,mv) PREV1OR2TAG STAART N(soort,mv,neut) V(trans,inf) PREVTAG V(hulp,ovt,1_of_2_of_3,ev) Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) NEXTTAG Punc(haak_sluit) V(trans,inf) V(trans,ott,1_of_2_of_3,mv) PREV1OR2WD en Pron(onbep,neut,zelfst) Pron(per,2,ev,nom) NEXT1OR2TAG Adj(adv,stell,onverv) V(hulp_of_kopp,inf) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXT2TAG N(soort,mv,neut) V(hulp,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) NEXT1OR2TAG Adv(gew,geen_func,stell,onverv) Pron(onbep,neut,zelfst) Art(bep,onzijd,neut) NEXTTAG Adj(attr,stell,verv_neut) Adv(gew,er) Adv(pron,er) PREV1OR2WD ik Adv(gew,aanw) Conj(onder,met_fin) PREV1OR2OR3TAG Adj(attr,vergr,onverv) Pron(onbep,neut,zelfst) Art(bep,onzijd,neut) NEXTTAG N(soort,ev,neut) Adv(gew,geen_func,stell,onverv) N(soort,ev,neut) PREVTAG Art(bep,zijd_of_mv,neut) V(intrans,inf) V(hulp,inf) NEXTTAG N(soort,mv,neut) Pron(onbep,neut,zelfst) Pron(per,2,ev,dat_of_acc) PREVTAG Prep(voor) V(intrans,teg_dw,onverv) Adv(gew,geen_func,stell,onverv) CURWD voortdurend Pron(onbep,neut,zelfst) Pron(onbep,neut,attr) WDNEXTTAG ander N(soort,ev,neut) N(eigen,ev,neut) N(soort,ev,neut) NEXTWD aan Adj(attr,stell,onverv) Adj(adv,stell,onverv) NEXTTAG Adj(attr,stell,onverv) Adj(attr,stell,onverv) N(soort,ev,neut) PREV1OR2TAG Art(bep,onzijd,neut) Adj(adv,stell,onverv) Adj(attr,stell,onverv) CURWD hard Adj(attr,stell,onverv) Adj(adv,stell,onverv) CURWD ruim Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXT1OR2TAG Pron(aanw,neut,attr) N(soort,mv,neut) V(intrans,inf) PREVTAG V(hulp,inf) Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXT1OR2OR3TAG Punc(punt) V(hulp,ott,3,ev) V(trans,ott,3,ev) RBIGRAM heeft een Prep(voor) N(eigen,ev,neut) WDNEXTTAG Van N(eigen,ev,neut) V(hulp,ott,1_of_2_of_3,mv) V(hulp,inf) PREV1OR2TAG V(hulp,ovt,1_of_2_of_3,ev) Conj(neven) Adv(gew,geen_func,stell,onverv) PREV1OR2OR3TAG Pron(per,2,ev,nom) V(hulp,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) NEXT1OR2OR3TAG Conj(onder,met_fin) Pron(vrag,neut,attr) Pron(betr,neut,zelfst) PREVTAG Pron(onbep,neut,zelfst) Adv(gew,geen_func,vergr,onverv) Num(hoofd,onbep,zelfst,vergr,onverv) PREV1OR2OR3TAG Conj(neven) Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,inf) PREV1OR2TAG Prep(voor_inf) Pron(bez,1,mv,neut,attr) Pron(per,1,mv,dat_of_acc) PREV1OR2OR3TAG Punc(komma) Pron(betr,neut,zelfst) Pron(aanw,neut,attr) NEXTTAG Adj(attr,stell,verv_neut) Pron(vrag,neut,attr) Pron(onbep,neut,attr) PREVTAG Adv(gew,geen_func,stell,onverv) Pron(onbep,neut,attr) Pron(onbep,neut,zelfst) NEXTWD van V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv) PREV1OR2OR3TAG N(soort,ev,neut) Pron(aanw,neut,zelfst) Pron(betr,neut,zelfst) PREVTAG N(soort,ev,neut) V(hulp,imp) V(hulp,ott,3,ev) CURWD laat Adj(attr,stell,onverv) Adv(gew,geen_func,stell,onverv) CURWD opeens Adj(adv,stell,onverv) Adj(attr,stell,onverv) NEXTTAG V(hulp_of_kopp,ott,3,ev) Adj(attr,stell,onverv) Adj(adv,stell,onverv) CURWD haastig Adj(adv,stell,onverv) Adj(attr,stell,onverv) SURROUNDTAG Adv(gew,geen_func,stell,onverv) Punc(punt) Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXTTAG V(hulp_of_kopp,ott,3,ev) N(soort,ev,neut) Adj(adv,stell,onverv) PREVTAG Adv(gew,aanw) N(soort,mv,neut) V(trans,inf) PREVWD moeten Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) NEXTTAG V(hulp_of_kopp,ovt,1_of_2_of_3,ev) Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXT2TAG Pron(per,1,ev,nom) N(soort,ev,neut) N(eigen,ev,neut) CURWD februari V(hulp,ott,3,ev) V(trans,ott,3,ev) NEXTTAG Punc(komma) V(hulp_of_kopp,inf) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXTTAG Adv(gew,geen_func,stell,onverv) V(hulp,ott,3,ev) V(trans,ott,3,ev) WDNEXTTAG heeft Prep(voor) Pron(onbep,neut,zelfst) Pron(per,2,ev,nom) PREV1OR2OR3TAG Punc(aanhaal_dubb) V(trans,ott,3,ev) V(trans,ott,2,ev) PREV1OR2OR3TAG Pron(per,2,ev,nom) Adj(attr,stell,onverv) Adj(adv,stell,onverv) PREV1OR2OR3TAG Pron(per,2,ev,nom) Prep(voor) Adv(deel_v) NEXTTAG Conj(onder,met_fin) N(soort,mv,neut) V(trans,verl_dw,onverv) CURWD verloren Adj(attr,stell,onverv) N(soort,ev,neut) WDAND2TAGBFR Prep(voor) dood Pron(aanw,neut,attr) Pron(aanw,neut,zelfst) NEXTTAG Prep(voor) Prep(voor) N(eigen,ev,neut) SURROUNDTAG N(eigen,ev,neut) N(eigen,ev,neut) Adv(gew,aanw) Adv(pron,aanw) NEXT1OR2TAG Pron(per,1,ev,nom) Pron(bez,3,ev,neut,attr) Pron(per,3,ev,dat_of_acc) NEXTTAG Adv(gew,geen_func,stell,onverv) N(soort,ev,neut) V(trans,ovt,1_of_2_of_3,ev) PREVTAG Pron(per,3,ev,nom) V(hulp,ott,1_of_2_of_3,mv) V(hulp,inf) PREV1OR2TAG Prep(voor) Adv(gew,er) Adv(pron,er) PREV2TAG Conj(onder,met_fin) Prep(voor) Adv(deel_adv) PREV1OR2OR3TAG Adv(pron,er) Pron(bez,3,ev,neut,attr) Pron(per,3,ev,dat_of_acc) NEXT1OR2TAG Art(onbep,zijd_of_onzijd,neut) Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) NEXTTAG N(soort,ev,neut) Adv(gew,aanw) Conj(onder,met_fin) PREV1OR2TAG Adj(attr,stell,onverv) V(hulp,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) PREV1OR2TAG Pron(bez,3,mv,neut,attr) Conj(neven) Adv(gew,geen_func,stell,onverv) PREV1OR2WD ik Conj(neven) Conj(onder,met_fin) PREV1OR2WD net Pron(vrag,neut,attr) Pron(betr,neut,zelfst) NEXTTAG N(eigen,ev,neut) Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) NEXT1OR2OR3TAG Num(hoofd,bep,zelfst,onverv) Art(bep,onzijd,neut) Pron(per,3,ev,nom) NEXTTAG Art(onbep,zijd_of_onzijd,neut) V(intrans,ovt,1_of_2_of_3,ev) V(hulp,ovt,1_of_2_of_3,ev) CURWD begon Adv(gew,geen_func,stell,onverv) N(soort,ev,neut) PREV1OR2WD op N(soort,ev,neut) Num(hoofd,bep,attr,onverv) CURWD 7 Adv(gew,geen_func,vergr,onverv) Num(hoofd,onbep,zelfst,vergr,onverv) PREV1OR2TAG Prep(voor) V(trans,inf) V(intrans,ott,1_of_2_of_3,mv) PREV1OR2OR3TAG STAART V(intrans,ott,1_of_2_of_3,mv) V(intrans,inf) NEXT1OR2OR3TAG Conj(neven) V(intrans,inf) V(hulp,inf) NEXTTAG V(trans,inf) Adv(gew,geen_func,stell,onverv) Conj(onder,met_fin) PREVTAG Punc(komma) Adv(gew,geen_func,stell,onverv) Adj(attr,stell,onverv) CURWD tevreden V(trans,ott,1_of_2_of_3,mv) V(intrans,inf) CURWD beginnen V(trans,ott,1,ev) V(trans,ott,2,ev) NEXTTAG Pron(per,2,ev,nom) V(intrans,teg_dw,verv_neut) N(soort,ev,neut) CURWD schande V(intrans,ott,3,ev) N(soort,ev,neut) NEXT1OR2OR3TAG Prep(voor_inf) N(soort,ev,neut) Adj(attr,vergr,onverv) PREVWD steeds N(soort,ev,neut) V(intrans,ott,3,ev) WDNEXTTAG sterft Prep(voor) N(eigen,ev,neut) Adj(attr,stell,verv_neut) SURROUNDTAG STAART N(soort,mv,neut) V(trans,ovt,1_of_2_of_3,ev) Adj(attr,stell,verv_neut) PREV1OR2TAG Prep(voor) V(intrans,inf) V(hulp,inf) NEXTTAG V(intrans,inf) V(hulp,inf) V(trans,inf) NEXTTAG Punc(punt) V(refl,ott,3,ev) V(trans,ott,3,ev) CURWD voelt Pron(bez,3,ev,neut,attr) V(intrans,ott,1_of_2_of_3,mv) PREVTAG Adv(gew,er) V(hulp,ott,2,ev) V(hulp,ott,3,ev) CURWD hoeft Pron(onbep,neut,zelfst) Pron(ref,2,ev) PREV1OR2WD je V(intrans,teg_dw,verv_neut) Pron(onbep,neut,attr) WDNEXTTAG verschillende N(soort,mv,neut) Adv(gew,vrag) Adj(attr,stell,onverv) PREV1OR2OR3TAG V(hulp_of_kopp,ott,3,ev) Adj(attr,vergr,verv_neut) Adj(attr,stell,verv_neut) CURWD nare V(trans,ott,1,ev) Int CURWD hoor V(intrans,ovt,1_of_2_of_3,mv) V(intrans,verl_dw,onverv) CURWD verdwenen Adv(pron,vrag) Adv(pron,betr) CURWD waardoor N(eigen,ev,neut) N(soort,ev,neut) PREVTAG Art(onbep,zijd_of_onzijd,neut) N(eigen,ev,neut) N(soort,ev,neut) NEXT1OR2WD worden N(eigen,ev,neut) N(soort,ev,neut) NEXTBIGRAM Conj(neven) N(soort,ev,neut) N(eigen,ev,neut) N(soort,ev,neut) SURROUNDTAG STAART Prep(voor) N(eigen,ev,neut) N(soort,ev,neut) CURWD Koningin Adj(adv,stell,onverv) Adj(attr,stell,onverv) PREV1OR2TAG V(hulp_of_kopp,ott,1_of_2_of_3,mv) Adj(attr,stell,onverv) Adj(adv,stell,onverv) PREVTAG STAART Adj(adv,stell,onverv) Adj(attr,stell,onverv) WDPREVTAG N(soort,mv,neut) nodig Adj(attr,stell,onverv) Adj(adv,stell,onverv) NEXTTAG Prep(voor_inf) Adj(adv,stell,onverv) Adj(attr,stell,onverv) CURWD eenzaam Adj(attr,stell,onverv) Adj(adv,stell,onverv) CURWD regelmatig Adj(attr,stell,onverv) Adj(adv,stell,onverv) CURWD geestelijk Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) PREVTAG Pron(per,2,ev,nom) V(trans,inf) V(intrans,inf) NEXT1OR2TAG N(eigen,ev,neut) V(intrans,ovt,1_of_2_of_3,ev) V(hulp,ovt,1_of_2_of_3,ev) NEXT1OR2TAG V(intrans,inf) Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXTTAG Punc(komma) V(trans,inf) V(intrans,inf) PREV1OR2OR3TAG Adj(adv,vergr,onverv) Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXT1OR2TAG Pron(onbep,neut,zelfst) V(trans,inf) V(intrans,inf) CURWD wennen Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXT1OR2TAG Conj(onder,met_inf) N(soort,ev,neut) V(trans,verl_dw,onverv) PREV1OR2TAG V(hulp_of_kopp,ovt,1_of_2_of_3,mv) N(soort,ev,neut) Adj(adv,stell,onverv) NEXTTAG V(trans,verl_dw,verv_neut) Prep(voor) Adv(deel_adv) NEXTTAG V(trans,inf) N(soort,ev,neut) Adj(adv,stell,onverv) NEXTBIGRAM Adj(attr,stell,onverv) N(soort,ev,neut) N(soort,mv,neut) V(trans,inf) PREV1OR2TAG Pron(per,3,ev,dat_of_acc) Prep(voor) Adv(deel_adv) NEXTBIGRAM V(intrans,ott,3,ev) Punc(punt) V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) PREV1OR2TAG Conj(neven) N(soort,mv,neut) V(trans,inf) PREV1OR2OR3TAG V(hulp,ott,2,ev) Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXTTAG V(intrans,ott,3,ev) V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) PREV1OR2OR3TAG Punc(komma) Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) PREVTAG Pron(per,1,mv,nom) Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXT1OR2TAG V(trans,ott,3,ev) Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXTTAG Prep(voor) Conj(onder,met_inf) Prep(voor) NEXTTAG N(soort,mv,neut) V(hulp_of_kopp,inf) V(hulp_of_kopp,ott,1_of_2_of_3,mv) PREVTAG V(trans,verl_dw,onverv) V(hulp,ott,3,ev) V(trans,ott,3,ev) WDPREVTAG Pron(per,3,ev,nom) heeft Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXT1OR2WD doen Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXTTAG V(trans,verl_dw,onverv) V(hulp_of_kopp,ott,1_of_2_of_3,mv) V(hulp_of_kopp,inf) PREV1OR2TAG V(hulp,ott,3,ev) N(soort,ev,neut) Adj(attr,stell,verv_neut) PREVBIGRAM Adj(attr,stell,verv_neut) Punc(komma) N(soort,mv,neut) V(trans,verl_dw,onverv) CURWD ingenomen Conj(onder,met_inf) Prep(voor) NEXTTAG N(soort,ev,neut) V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) PREVTAG N(eigen,ev,neut) Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXTWD het Pron(aanw,neut,attr) Pron(aanw,neut,zelfst) NEXTTAG V(hulp_of_kopp,ott,3,ev) Adv(gew,aanw) Adv(pron,aanw) PREVTAG Punc(punt_komma) Adv(deel_v) Adv(deel_adv) RBIGRAM bij , V(intrans,inf) V(trans,inf) CURWD schrijven Pron(onbep,neut,zelfst) Pron(per,2,ev,nom) PREV1OR2OR3TAG N(eigen,ev,neut) Prep(voor) Adv(deel_v) NEXTTAG V(hulp,inf) N(soort,mv,neut) V(trans,verl_dw,onverv) CURWD betrokken V(hulp_of_kopp,inf) V(hulp_of_kopp,ott,1_of_2_of_3,mv) PREV1OR2WD en Pron(aanw,neut,zelfst) Conj(onder,met_fin) WDAND2TAGAFT Dat N(soort,ev,neut) Adv(deel_v) Adv(deel_adv) PREV1OR2OR3TAG Adv(gew,er) Adv(gew,er) Adv(pron,er) NEXT1OR2OR3TAG Adv(deel_adv) N(soort,ev,neut) N(soort,mv,neut) WDNEXTTAG dll Num(hoofd,bep,attr,onverv) N(eigen,ev,neut) N(eigen,mv,neut) NEXTWD Staten Adj(attr,stell,verv_neut) N(soort,ev,neut) NEXTTAG Punc(punt) V(hulp_of_kopp,inf) V(hulp_of_kopp,ott,1_of_2_of_3,mv) PREV1OR2OR3TAG Adj(attr,stell,verv_neut) V(hulp,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) SURROUNDTAG N(soort,ev,neut) Punc(komma) Pron(bez,3,ev,neut,attr) Pron(per,3,ev,dat_of_acc) NEXTTAG Prep(voor) Prep(voor) N(eigen,ev,neut) NEXTTAG Art(bep,zijd_of_mv,gen) Art(bep,zijd_of_mv,neut) N(eigen,ev,neut) WDNEXTTAG De N(eigen,ev,neut) Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut) PREVWD Het N(eigen,ev,neut) V(trans,imp) SURROUNDTAG STAART Adv(gew,aanw) N(eigen,ev,neut) N(eigen,mv,neut) PREVTAG N(eigen,mv,neut) Adv(gew,aanw) Conj(onder,met_fin) LBIGRAM , toen V(hulp,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) RBIGRAM hebben , V(trans,ott,1_of_2_of_3,mv) V(hulp,ott,1_of_2_of_3,mv) PREV1OR2TAG STAART V(hulp,inf) V(hulp,ott,1_of_2_of_3,mv) NEXTTAG Pron(per,1,mv,nom) Pron(bez,3,ev,neut,attr) Pron(per,3,ev,dat_of_acc) NEXTTAG V(trans,verl_dw,onverv) Pron(aanw,neut,attr) Pron(betr,neut,zelfst) WDPREVTAG N(soort,mv,neut) die V(hulp,ott,3,ev) V(hulp,ott,2,ev) PREVTAG Pron(per,2,ev,nom) Pron(bez,1,mv,neut,attr) Pron(per,1,mv,dat_of_acc) NEXTTAG Punc(punt) N(eigen,ev,neut) Prep(voor) SURROUNDTAG STAART Art(bep,zijd_of_mv,neut) Conj(neven) Adv(gew,geen_func,stell,onverv) PREVTAG Adv(gew,aanw) Pron(betr,neut,zelfst) Pron(aanw,neut,zelfst) PREV1OR2TAG Conj(onder,met_fin) Pron(aanw,neut,zelfst) Pron(aanw,neut,attr) NEXTBIGRAM Adj(attr,stell,verv_neut) N(soort,ev,neut) Prep(voor_inf) Adv(gew,geen_func,stell,onverv) NEXTTAG Adj(attr,stell,verv_neut) Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) PREV1OR2OR3TAG Num(hoofd,bep,attr,onverv) N(soort,ev,neut) V(intrans,inf) PREVTAG Prep(voor_inf) Prep(voor_inf) Prep(voor) NEXTTAG N(soort,ev,neut) Adj(adv,stell,onverv) N(soort,ev,neut) WDAND2AFT geheel . V(trans,ott,3,ev) N(soort,ev,neut) PREVTAG Art(onbep,zijd_of_onzijd,neut) V(trans,inf) V(trans,inf,subst) PREV1OR2TAG Art(bep,onzijd,neut) V(hulp,ott,3,ev) V(hulp,ott,2,ev) NEXTWD u Adv(gew,geen_func,stell,onverv) N(soort,ev,neut) PREVTAG Adj(attr,stell,verv_neut) Adv(deel_v) Prep(voor) WDNEXTTAG tot Prep(voor) V(hulp,ovt,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv) CURWD hadden Adv(gew,geen_func,stell,onverv) Pron(onbep,neut,attr) NEXTWD die V(trans,inf) V(refl,inf) PREV1OR2OR3TAG Pron(ref,3,ev_of_mv) V(hulp,inf) V(hulp,ott,1_of_2_of_3,mv) WDNEXTTAG moeten V(trans,inf) V(hulp,ott,1_of_2_of_3,mv) V(hulp,inf) NEXTBIGRAM V(trans,inf) Punc(komma) Pron(aanw,neut,zelfst) Pron(betr,neut,zelfst) SURROUNDTAG Punc(komma) Prep(voor) N(eigen,ev,neut) Int SURROUNDTAG Punc(aanhaal_dubb) Punc(komma) N(eigen,ev,neut) Art(bep,zijd_of_mv,neut) LBIGRAM STAART De Conj(onder,met_fin) Conj(neven) PREV1OR2WD zowel Adv(gew,geen_func,stell,onverv) Adj(attr,stell,onverv) NEXTTAG Conj(neven) Adj(attr,stell,verv_neut) Pron(onbep,neut,attr) WDNEXTTAG Elke N(soort,ev,neut) Adj(adv,vergr,onverv) Adj(attr,vergr,onverv) PREV1OR2TAG Adv(gew,geen_func,stell,onverv) V(trans,ovt,1_of_2_of_3,ev) N(soort,ev,neut) PREVTAG Adj(attr,stell,verv_neut) V(intrans,teg_dw,verv_neut) N(soort,ev,neut) CURWD bende V(hulp,inf) V(hulp,ott,1_of_2_of_3,mv) WDPREVTAG N(soort,ev,neut) kunnen Pron(vrag,neut,attr) Pron(onbep,neut,attr) NEXTTAG N(soort,mv,neut) Pron(betr,neut,zelfst) Pron(vrag,neut,attr) NEXT1OR2OR3TAG Adv(gew,aanw) Adv(gew,vrag) Adv(pron,vrag) PREVTAG Pron(onbep,neut,zelfst) Adv(gew,geen_func,vergr,onverv) Num(hoofd,onbep,attr,vergr,onverv) NEXT1OR2TAG N(soort,mv,neut) V(trans,ott,1,ev) V(trans,ott,3,ev) PREVTAG Pron(onbep,neut,zelfst) V(hulp_of_kopp,ovt,1_of_2_of_3,mv) V(intrans,ovt,1_of_2_of_3,mv) NEXTTAG Adv(gew,er) Pron(onbep,neut,zelfst) Pron(per,2,ev,dat_of_acc) PREV1OR2TAG Pron(per,1,ev,nom) Num(hoofd,bep,attr,onverv) Num(rang,bep,attr,onverv) PREVTAG Art(bep,onzijd,neut) N(soort,ev,neut) Int CURWD oh V(intrans,ott,1,ev) N(soort,ev,neut) NEXT1OR2OR3TAG Prep(voor) Pron(aanw,neut,zelfst) Pron(betr,neut,zelfst) SURROUNDTAG Punc(komma) Adv(gew,geen_func,stell,onverv) Adj(zelfst,stell,verv_mv) N(soort,mv,neut) CURWD armen V(trans,ott,1,ev) V(intrans,ovt,1_of_2_of_3,ev) NEXT1OR2WD in V(intrans,inf) N(soort,mv,neut) WDNEXTTAG verschillen Prep(voor) Prep(voor) V(trans,imp) NEXTTAG Pron(aanw,neut,attr) N(eigen,ev,neut) Art(bep,zijd_of_mv,neut) WDNEXTTAG DE N(eigen,ev,neut) Adv(gew,aanw) Conj(onder,met_fin) WDAND2TAGBFR Art(bep,zijd_of_mv,neut) toen V(trans,ovt,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) NEXTTAG Pron(per,3,ev_of_mv,nom) V(trans,ovt,1_of_2_of_3,ev) Conj(onder,met_fin) CURWD zodra V(intrans,verl_dw,verv_neut) V(intrans,ovt,1_of_2_of_3,ev) CURWD gebeurde V(intrans,teg_dw,onverv) Adv(gew,geen_func,stell,onverv) CURWD dringend V(hulp,ovt,1_of_2_of_3,ev) Adj(attr,stell,verv_neut) PREV1OR2TAG Prep(voor) V(intrans,ott,3,ev) N(soort,ev,neut) PREVTAG Adj(attr,stell,verv_neut) V(hulp,inf) Num(hoofd,bep,attr,onverv) CURWD veertien Prep(voor) N(soort,mv,neut) NEXTWD zijn Num(hoofd,onbep,zelfst,stell,onverv) Num(hoofd,onbep,attr,stell,onverv) NEXTTAG N(soort,mv,neut) Art(bep,zijd_of_mv,gen) N(eigen,ev,neut) PREVTAG N(eigen,ev,neut) N(eigen,ev,neut) N(soort,ev,neut) PREVTAG Adj(attr,overtr,verv_neut) ================================================ FILE: lib/natural/brill_pos_tagger/data/Dutch/brill_CONTEXTRULES.json ================================================ { "rules": [ "Pron(betr,neut,zelfst) Pron(aanw,neut,attr) PREVTAG Prep(voor)", "Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXT1OR2TAG Adv(gew,geen_func,stell,onverv)", "Pron(onbep,neut,zelfst) Art(bep,onzijd,neut) NEXT1OR2TAG N(soort,ev,neut)", "Prep(voor) Adv(deel_v) NEXT1OR2TAG STAART", "Prep(voor) Adv(deel_v) NEXTTAG Prep(voor_inf)", "Adj(adv,stell,onverv) Adj(attr,stell,onverv) PREV1OR2TAG Art(onbep,zijd_of_onzijd,neut)", "Pron(betr,neut,zelfst) Pron(aanw,neut,attr) NEXTTAG N(soort,ev,neut)", "Prep(voor) Adv(deel_v) NEXTTAG Prep(voor)", "Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXTTAG Adv(gew,geen_func,stell,onverv)", "Conj(onder,met_fin) Pron(aanw,neut,attr) NEXTTAG N(soort,ev,neut)", "Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) PREVTAG N(soort,mv,neut)", "Adv(gew,er) Adv(pron,er) WDAND2TAGAFT er Prep(voor)", "Prep(voor) Adv(deel_v) NEXTTAG Punc(komma)", "Conj(neven) Adv(gew,geen_func,stell,onverv) PREVTAG Adv(gew,geen_func,stell,onverv)", "Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXTTAG V(hulp_of_kopp,ott,3,ev)", "Pron(onbep,neut,zelfst) Pron(bez,2,ev,neut,attr) NEXTTAG N(soort,ev,neut)", "Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXT1OR2TAG Art(bep,zijd_of_mv,neut)", "V(hulp,ott,1_of_2_of_3,mv) V(hulp,inf) NEXTTAG V(trans,inf)", "Pron(vrag,neut,attr) Pron(betr,neut,zelfst) PREV1OR2TAG Prep(voor)", "V(hulp,ott,3,ev) V(hulp,ott,1,ev) NEXT1OR2OR3TAG Pron(per,1,ev,nom)", "Pron(betr,neut,zelfst) Pron(aanw,neut,zelfst) PREVTAG Conj(neven)", "Pron(onbep,gen,attr) Adv(gew,geen_func,stell,onverv) CURWD anders", "Adj(attr,stell,onverv) Adj(adv,stell,onverv) PREV1OR2OR3TAG N(soort,mv,neut)", "Adv(gew,aanw) Conj(onder,met_fin) PREV1OR2OR3TAG Adv(gew,geen_func,vergr,onverv)", "Adv(gew,geen_func,vergr,onverv) Num(hoofd,onbep,zelfst,vergr,onverv) NEXT1OR2OR3TAG Conj(onder,met_fin)", "Adv(gew,er) Adv(pron,er) NEXT1OR2OR3TAG Adv(deel_v)", "Adv(deel_v) Adv(deel_adv) PREV1OR2OR3TAG Adv(pron,er)", "Prep(voor) Adv(deel_adv) NEXTTAG Punc(punt)", "Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXT1OR2OR3TAG Adv(gew,aanw)", "Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,inf) NEXTTAG Punc(punt)", "Prep(voor_inf) Adv(gew,geen_func,stell,onverv) NEXTTAG Adj(attr,stell,onverv)", "Pron(onbep,neut,zelfst) Art(bep,onzijd,neut) PREV1OR2OR3TAG Prep(voor)", "V(hulp,ott,3,ev) V(hulp,ott,1,ev) PREV1OR2OR3TAG Pron(per,1,ev,nom)", "Adj(attr,stell,onverv) Adj(adv,stell,onverv) CURWD werkelijk", "Adv(gew,aanw) Conj(onder,met_fin) PREV1OR2TAG Adj(adv,vergr,onverv)", "Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,inf) NEXTTAG Punc(komma)", "Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) PREVTAG Conj(neven)", "N(soort,ev,neut) Adj(attr,stell,onverv) SURROUNDTAG Art(onbep,zijd_of_onzijd,neut) N(soort,ev,neut)", "V(trans,inf) V(trans,ott,1_of_2_of_3,mv) PREV1OR2OR3TAG Punc(komma)", "Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXTTAG Prep(voor)", "V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) PREV1OR2TAG STAART", "Adj(attr,stell,verv_neut) N(soort,ev,neut) NEXTTAG Prep(voor)", "N(soort,ev,neut) V(trans,ott,1,ev) PREVTAG Pron(per,1,ev,nom)", "Pron(per,1,ev,dat_of_acc) Pron(ref,1,ev) PREV1OR2TAG Pron(per,1,ev,nom)", "Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) PREVTAG V(hulp_of_kopp,ott,3,ev)", "Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXT1OR2TAG Adv(gew,aanw)", "Adv(gew,aanw) Conj(onder,met_fin) NEXTTAG Pron(per,3,ev,nom)", "Conj(neven) Adv(gew,geen_func,stell,onverv) WDNEXTTAG maar Art(onbep,zijd_of_onzijd,neut)", "Prep(voor_inf) Adv(gew,geen_func,stell,onverv) NEXT1OR2TAG Adj(adv,stell,onverv)", "V(intrans,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) CURWD dacht", "V(trans,inf) V(trans,ott,1_of_2_of_3,mv) PREV1OR2TAG STAART", "N(soort,mv,neut) V(trans,inf) PREVTAG V(hulp,ovt,1_of_2_of_3,ev)", "Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) NEXTTAG Punc(haak_sluit)", "V(trans,inf) V(trans,ott,1_of_2_of_3,mv) PREV1OR2WD en", "Pron(onbep,neut,zelfst) Pron(per,2,ev,nom) NEXT1OR2TAG Adj(adv,stell,onverv)", "V(hulp_of_kopp,inf) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXT2TAG N(soort,mv,neut)", "V(hulp,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) NEXT1OR2TAG Adv(gew,geen_func,stell,onverv)", "Pron(onbep,neut,zelfst) Art(bep,onzijd,neut) NEXTTAG Adj(attr,stell,verv_neut)", "Adv(gew,er) Adv(pron,er) PREV1OR2WD ik", "Adv(gew,aanw) Conj(onder,met_fin) PREV1OR2OR3TAG Adj(attr,vergr,onverv)", "Pron(onbep,neut,zelfst) Art(bep,onzijd,neut) NEXTTAG N(soort,ev,neut)", "Adv(gew,geen_func,stell,onverv) N(soort,ev,neut) PREVTAG Art(bep,zijd_of_mv,neut)", "V(intrans,inf) V(hulp,inf) NEXTTAG N(soort,mv,neut)", "Pron(onbep,neut,zelfst) Pron(per,2,ev,dat_of_acc) PREVTAG Prep(voor)", "V(intrans,teg_dw,onverv) Adv(gew,geen_func,stell,onverv) CURWD voortdurend", "Pron(onbep,neut,zelfst) Pron(onbep,neut,attr) WDNEXTTAG ander N(soort,ev,neut)", "N(eigen,ev,neut) N(soort,ev,neut) NEXTWD aan", "Adj(attr,stell,onverv) Adj(adv,stell,onverv) NEXTTAG Adj(attr,stell,onverv)", "Adj(attr,stell,onverv) N(soort,ev,neut) PREV1OR2TAG Art(bep,onzijd,neut)", "Adj(adv,stell,onverv) Adj(attr,stell,onverv) CURWD hard", "Adj(attr,stell,onverv) Adj(adv,stell,onverv) CURWD ruim", "Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXT1OR2TAG Pron(aanw,neut,attr)", "N(soort,mv,neut) V(intrans,inf) PREVTAG V(hulp,inf)", "Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXT1OR2OR3TAG Punc(punt)", "V(hulp,ott,3,ev) V(trans,ott,3,ev) RBIGRAM heeft een", "Prep(voor) N(eigen,ev,neut) WDNEXTTAG Van N(eigen,ev,neut)", "V(hulp,ott,1_of_2_of_3,mv) V(hulp,inf) PREV1OR2TAG V(hulp,ovt,1_of_2_of_3,ev)", "Conj(neven) Adv(gew,geen_func,stell,onverv) PREV1OR2OR3TAG Pron(per,2,ev,nom)", "V(hulp,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) NEXT1OR2OR3TAG Conj(onder,met_fin)", "Pron(vrag,neut,attr) Pron(betr,neut,zelfst) PREVTAG Pron(onbep,neut,zelfst)", "Adv(gew,geen_func,vergr,onverv) Num(hoofd,onbep,zelfst,vergr,onverv) PREV1OR2OR3TAG Conj(neven)", "Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,inf) PREV1OR2TAG Prep(voor_inf)", "Pron(bez,1,mv,neut,attr) Pron(per,1,mv,dat_of_acc) PREV1OR2OR3TAG Punc(komma)", "Pron(betr,neut,zelfst) Pron(aanw,neut,attr) NEXTTAG Adj(attr,stell,verv_neut)", "Pron(vrag,neut,attr) Pron(onbep,neut,attr) PREVTAG Adv(gew,geen_func,stell,onverv)", "Pron(onbep,neut,attr) Pron(onbep,neut,zelfst) NEXTWD van", "V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv) PREV1OR2OR3TAG N(soort,ev,neut)", "Pron(aanw,neut,zelfst) Pron(betr,neut,zelfst) PREVTAG N(soort,ev,neut)", "V(hulp,imp) V(hulp,ott,3,ev) CURWD laat", "Adj(attr,stell,onverv) Adv(gew,geen_func,stell,onverv) CURWD opeens", "Adj(adv,stell,onverv) Adj(attr,stell,onverv) NEXTTAG V(hulp_of_kopp,ott,3,ev)", "Adj(attr,stell,onverv) Adj(adv,stell,onverv) CURWD haastig", "Adj(adv,stell,onverv) Adj(attr,stell,onverv) SURROUNDTAG Adv(gew,geen_func,stell,onverv) Punc(punt)", "Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXTTAG V(hulp_of_kopp,ott,3,ev)", "N(soort,ev,neut) Adj(adv,stell,onverv) PREVTAG Adv(gew,aanw)", "N(soort,mv,neut) V(trans,inf) PREVWD moeten", "Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) NEXTTAG V(hulp_of_kopp,ovt,1_of_2_of_3,ev)", "Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXT2TAG Pron(per,1,ev,nom)", "N(soort,ev,neut) N(eigen,ev,neut) CURWD februari", "V(hulp,ott,3,ev) V(trans,ott,3,ev) NEXTTAG Punc(komma)", "V(hulp_of_kopp,inf) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXTTAG Adv(gew,geen_func,stell,onverv)", "V(hulp,ott,3,ev) V(trans,ott,3,ev) WDNEXTTAG heeft Prep(voor)", "Pron(onbep,neut,zelfst) Pron(per,2,ev,nom) PREV1OR2OR3TAG Punc(aanhaal_dubb)", "V(trans,ott,3,ev) V(trans,ott,2,ev) PREV1OR2OR3TAG Pron(per,2,ev,nom)", "Adj(attr,stell,onverv) Adj(adv,stell,onverv) PREV1OR2OR3TAG Pron(per,2,ev,nom)", "Prep(voor) Adv(deel_v) NEXTTAG Conj(onder,met_fin)", "N(soort,mv,neut) V(trans,verl_dw,onverv) CURWD verloren", "Adj(attr,stell,onverv) N(soort,ev,neut) WDAND2TAGBFR Prep(voor) dood", "Pron(aanw,neut,attr) Pron(aanw,neut,zelfst) NEXTTAG Prep(voor)", "Prep(voor) N(eigen,ev,neut) SURROUNDTAG N(eigen,ev,neut) N(eigen,ev,neut)", "Adv(gew,aanw) Adv(pron,aanw) NEXT1OR2TAG Pron(per,1,ev,nom)", "Pron(bez,3,ev,neut,attr) Pron(per,3,ev,dat_of_acc) NEXTTAG Adv(gew,geen_func,stell,onverv)", "N(soort,ev,neut) V(trans,ovt,1_of_2_of_3,ev) PREVTAG Pron(per,3,ev,nom)", "V(hulp,ott,1_of_2_of_3,mv) V(hulp,inf) PREV1OR2TAG Prep(voor)", "Adv(gew,er) Adv(pron,er) PREV2TAG Conj(onder,met_fin)", "Prep(voor) Adv(deel_adv) PREV1OR2OR3TAG Adv(pron,er)", "Pron(bez,3,ev,neut,attr) Pron(per,3,ev,dat_of_acc) NEXT1OR2TAG Art(onbep,zijd_of_onzijd,neut)", "Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) NEXTTAG N(soort,ev,neut)", "Adv(gew,aanw) Conj(onder,met_fin) PREV1OR2TAG Adj(attr,stell,onverv)", "V(hulp,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) PREV1OR2TAG Pron(bez,3,mv,neut,attr)", "Conj(neven) Adv(gew,geen_func,stell,onverv) PREV1OR2WD ik", "Conj(neven) Conj(onder,met_fin) PREV1OR2WD net", "Pron(vrag,neut,attr) Pron(betr,neut,zelfst) NEXTTAG N(eigen,ev,neut)", "Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) NEXT1OR2OR3TAG Num(hoofd,bep,zelfst,onverv)", "Art(bep,onzijd,neut) Pron(per,3,ev,nom) NEXTTAG Art(onbep,zijd_of_onzijd,neut)", "V(intrans,ovt,1_of_2_of_3,ev) V(hulp,ovt,1_of_2_of_3,ev) CURWD begon", "Adv(gew,geen_func,stell,onverv) N(soort,ev,neut) PREV1OR2WD op", "N(soort,ev,neut) Num(hoofd,bep,attr,onverv) CURWD 7", "Adv(gew,geen_func,vergr,onverv) Num(hoofd,onbep,zelfst,vergr,onverv) PREV1OR2TAG Prep(voor)", "V(trans,inf) V(intrans,ott,1_of_2_of_3,mv) PREV1OR2OR3TAG STAART", "V(intrans,ott,1_of_2_of_3,mv) V(intrans,inf) NEXT1OR2OR3TAG Conj(neven)", "V(intrans,inf) V(hulp,inf) NEXTTAG V(trans,inf)", "Adv(gew,geen_func,stell,onverv) Conj(onder,met_fin) PREVTAG Punc(komma)", "Adv(gew,geen_func,stell,onverv) Adj(attr,stell,onverv) CURWD tevreden", "V(trans,ott,1_of_2_of_3,mv) V(intrans,inf) CURWD beginnen", "V(trans,ott,1,ev) V(trans,ott,2,ev) NEXTTAG Pron(per,2,ev,nom)", "V(intrans,teg_dw,verv_neut) N(soort,ev,neut) CURWD schande", "V(intrans,ott,3,ev) N(soort,ev,neut) NEXT1OR2OR3TAG Prep(voor_inf)", "N(soort,ev,neut) Adj(attr,vergr,onverv) PREVWD steeds", "N(soort,ev,neut) V(intrans,ott,3,ev) WDNEXTTAG sterft Prep(voor)", "N(eigen,ev,neut) Adj(attr,stell,verv_neut) SURROUNDTAG STAART N(soort,mv,neut)", "V(trans,ovt,1_of_2_of_3,ev) Adj(attr,stell,verv_neut) PREV1OR2TAG Prep(voor)", "V(intrans,inf) V(hulp,inf) NEXTTAG V(intrans,inf)", "V(hulp,inf) V(trans,inf) NEXTTAG Punc(punt)", "V(refl,ott,3,ev) V(trans,ott,3,ev) CURWD voelt", "Pron(bez,3,ev,neut,attr) V(intrans,ott,1_of_2_of_3,mv) PREVTAG Adv(gew,er)", "V(hulp,ott,2,ev) V(hulp,ott,3,ev) CURWD hoeft", "Pron(onbep,neut,zelfst) Pron(ref,2,ev) PREV1OR2WD je", "V(intrans,teg_dw,verv_neut) Pron(onbep,neut,attr) WDNEXTTAG verschillende N(soort,mv,neut)", "Adv(gew,vrag) Adj(attr,stell,onverv) PREV1OR2OR3TAG V(hulp_of_kopp,ott,3,ev)", "Adj(attr,vergr,verv_neut) Adj(attr,stell,verv_neut) CURWD nare", "V(trans,ott,1,ev) Int CURWD hoor", "V(intrans,ovt,1_of_2_of_3,mv) V(intrans,verl_dw,onverv) CURWD verdwenen", "Adv(pron,vrag) Adv(pron,betr) CURWD waardoor", "N(eigen,ev,neut) N(soort,ev,neut) PREVTAG Art(onbep,zijd_of_onzijd,neut)", "N(eigen,ev,neut) N(soort,ev,neut) NEXT1OR2WD worden", "N(eigen,ev,neut) N(soort,ev,neut) NEXTBIGRAM Conj(neven) N(soort,ev,neut)", "N(eigen,ev,neut) N(soort,ev,neut) SURROUNDTAG STAART Prep(voor)", "N(eigen,ev,neut) N(soort,ev,neut) CURWD Koningin", "Adj(adv,stell,onverv) Adj(attr,stell,onverv) PREV1OR2TAG V(hulp_of_kopp,ott,1_of_2_of_3,mv)", "Adj(attr,stell,onverv) Adj(adv,stell,onverv) PREVTAG STAART", "Adj(adv,stell,onverv) Adj(attr,stell,onverv) WDPREVTAG N(soort,mv,neut) nodig", "Adj(attr,stell,onverv) Adj(adv,stell,onverv) NEXTTAG Prep(voor_inf)", "Adj(adv,stell,onverv) Adj(attr,stell,onverv) CURWD eenzaam", "Adj(attr,stell,onverv) Adj(adv,stell,onverv) CURWD regelmatig", "Adj(attr,stell,onverv) Adj(adv,stell,onverv) CURWD geestelijk", "Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) PREVTAG Pron(per,2,ev,nom)", "V(trans,inf) V(intrans,inf) NEXT1OR2TAG N(eigen,ev,neut)", "V(intrans,ovt,1_of_2_of_3,ev) V(hulp,ovt,1_of_2_of_3,ev) NEXT1OR2TAG V(intrans,inf)", "Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXTTAG Punc(komma)", "V(trans,inf) V(intrans,inf) PREV1OR2OR3TAG Adj(adv,vergr,onverv)", "Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXT1OR2TAG Pron(onbep,neut,zelfst)", "V(trans,inf) V(intrans,inf) CURWD wennen", "Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXT1OR2TAG Conj(onder,met_inf)", "N(soort,ev,neut) V(trans,verl_dw,onverv) PREV1OR2TAG V(hulp_of_kopp,ovt,1_of_2_of_3,mv)", "N(soort,ev,neut) Adj(adv,stell,onverv) NEXTTAG V(trans,verl_dw,verv_neut)", "Prep(voor) Adv(deel_adv) NEXTTAG V(trans,inf)", "N(soort,ev,neut) Adj(adv,stell,onverv) NEXTBIGRAM Adj(attr,stell,onverv) N(soort,ev,neut)", "N(soort,mv,neut) V(trans,inf) PREV1OR2TAG Pron(per,3,ev,dat_of_acc)", "Prep(voor) Adv(deel_adv) NEXTBIGRAM V(intrans,ott,3,ev) Punc(punt)", "V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) PREV1OR2TAG Conj(neven)", "N(soort,mv,neut) V(trans,inf) PREV1OR2OR3TAG V(hulp,ott,2,ev)", "Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXTTAG V(intrans,ott,3,ev)", "V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) PREV1OR2OR3TAG Punc(komma)", "Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) PREVTAG Pron(per,1,mv,nom)", "Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXT1OR2TAG V(trans,ott,3,ev)", "Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXTTAG Prep(voor)", "Conj(onder,met_inf) Prep(voor) NEXTTAG N(soort,mv,neut)", "V(hulp_of_kopp,inf) V(hulp_of_kopp,ott,1_of_2_of_3,mv) PREVTAG V(trans,verl_dw,onverv)", "V(hulp,ott,3,ev) V(trans,ott,3,ev) WDPREVTAG Pron(per,3,ev,nom) heeft", "Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXT1OR2WD doen", "Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXTTAG V(trans,verl_dw,onverv)", "V(hulp_of_kopp,ott,1_of_2_of_3,mv) V(hulp_of_kopp,inf) PREV1OR2TAG V(hulp,ott,3,ev)", "N(soort,ev,neut) Adj(attr,stell,verv_neut) PREVBIGRAM Adj(attr,stell,verv_neut) Punc(komma)", "N(soort,mv,neut) V(trans,verl_dw,onverv) CURWD ingenomen", "Conj(onder,met_inf) Prep(voor) NEXTTAG N(soort,ev,neut)", "V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) PREVTAG N(eigen,ev,neut)", "Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXTWD het", "Pron(aanw,neut,attr) Pron(aanw,neut,zelfst) NEXTTAG V(hulp_of_kopp,ott,3,ev)", "Adv(gew,aanw) Adv(pron,aanw) PREVTAG Punc(punt_komma)", "Adv(deel_v) Adv(deel_adv) RBIGRAM bij ,", "V(intrans,inf) V(trans,inf) CURWD schrijven", "Pron(onbep,neut,zelfst) Pron(per,2,ev,nom) PREV1OR2OR3TAG N(eigen,ev,neut)", "Prep(voor) Adv(deel_v) NEXTTAG V(hulp,inf)", "N(soort,mv,neut) V(trans,verl_dw,onverv) CURWD betrokken", "V(hulp_of_kopp,inf) V(hulp_of_kopp,ott,1_of_2_of_3,mv) PREV1OR2WD en", "Pron(aanw,neut,zelfst) Conj(onder,met_fin) WDAND2TAGAFT Dat N(soort,ev,neut)", "Adv(deel_v) Adv(deel_adv) PREV1OR2OR3TAG Adv(gew,er)", "Adv(gew,er) Adv(pron,er) NEXT1OR2OR3TAG Adv(deel_adv)", "N(soort,ev,neut) N(soort,mv,neut) WDNEXTTAG dll Num(hoofd,bep,attr,onverv)", "N(eigen,ev,neut) N(eigen,mv,neut) NEXTWD Staten", "Adj(attr,stell,verv_neut) N(soort,ev,neut) NEXTTAG Punc(punt)", "V(hulp_of_kopp,inf) V(hulp_of_kopp,ott,1_of_2_of_3,mv) PREV1OR2OR3TAG Adj(attr,stell,verv_neut)", "V(hulp,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) SURROUNDTAG N(soort,ev,neut) Punc(komma)", "Pron(bez,3,ev,neut,attr) Pron(per,3,ev,dat_of_acc) NEXTTAG Prep(voor)", "Prep(voor) N(eigen,ev,neut) NEXTTAG Art(bep,zijd_of_mv,gen)", "Art(bep,zijd_of_mv,neut) N(eigen,ev,neut) WDNEXTTAG De N(eigen,ev,neut)", "Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut) PREVWD Het", "N(eigen,ev,neut) V(trans,imp) SURROUNDTAG STAART Adv(gew,aanw)", "N(eigen,ev,neut) N(eigen,mv,neut) PREVTAG N(eigen,mv,neut)", "Adv(gew,aanw) Conj(onder,met_fin) LBIGRAM , toen", "V(hulp,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) RBIGRAM hebben ,", "V(trans,ott,1_of_2_of_3,mv) V(hulp,ott,1_of_2_of_3,mv) PREV1OR2TAG STAART", "V(hulp,inf) V(hulp,ott,1_of_2_of_3,mv) NEXTTAG Pron(per,1,mv,nom)", "Pron(bez,3,ev,neut,attr) Pron(per,3,ev,dat_of_acc) NEXTTAG V(trans,verl_dw,onverv)", "Pron(aanw,neut,attr) Pron(betr,neut,zelfst) WDPREVTAG N(soort,mv,neut) die", "V(hulp,ott,3,ev) V(hulp,ott,2,ev) PREVTAG Pron(per,2,ev,nom)", "Pron(bez,1,mv,neut,attr) Pron(per,1,mv,dat_of_acc) NEXTTAG Punc(punt)", "N(eigen,ev,neut) Prep(voor) SURROUNDTAG STAART Art(bep,zijd_of_mv,neut)", "Conj(neven) Adv(gew,geen_func,stell,onverv) PREVTAG Adv(gew,aanw)", "Pron(betr,neut,zelfst) Pron(aanw,neut,zelfst) PREV1OR2TAG Conj(onder,met_fin)", "Pron(aanw,neut,zelfst) Pron(aanw,neut,attr) NEXTBIGRAM Adj(attr,stell,verv_neut) N(soort,ev,neut)", "Prep(voor_inf) Adv(gew,geen_func,stell,onverv) NEXTTAG Adj(attr,stell,verv_neut)", "Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) PREV1OR2OR3TAG Num(hoofd,bep,attr,onverv)", "N(soort,ev,neut) V(intrans,inf) PREVTAG Prep(voor_inf)", "Prep(voor_inf) Prep(voor) NEXTTAG N(soort,ev,neut)", "Adj(adv,stell,onverv) N(soort,ev,neut) WDAND2AFT geheel .", "V(trans,ott,3,ev) N(soort,ev,neut) PREVTAG Art(onbep,zijd_of_onzijd,neut)", "V(trans,inf) V(trans,inf,subst) PREV1OR2TAG Art(bep,onzijd,neut)", "V(hulp,ott,3,ev) V(hulp,ott,2,ev) NEXTWD u", "Adv(gew,geen_func,stell,onverv) N(soort,ev,neut) PREVTAG Adj(attr,stell,verv_neut)", "Adv(deel_v) Prep(voor) WDNEXTTAG tot Prep(voor)", "V(hulp,ovt,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv) CURWD hadden", "Adv(gew,geen_func,stell,onverv) Pron(onbep,neut,attr) NEXTWD die", "V(trans,inf) V(refl,inf) PREV1OR2OR3TAG Pron(ref,3,ev_of_mv)", "V(hulp,inf) V(hulp,ott,1_of_2_of_3,mv) WDNEXTTAG moeten V(trans,inf)", "V(hulp,ott,1_of_2_of_3,mv) V(hulp,inf) NEXTBIGRAM V(trans,inf) Punc(komma)", "Pron(aanw,neut,zelfst) Pron(betr,neut,zelfst) SURROUNDTAG Punc(komma) Prep(voor)", "N(eigen,ev,neut) Int SURROUNDTAG Punc(aanhaal_dubb) Punc(komma)", "N(eigen,ev,neut) Art(bep,zijd_of_mv,neut) LBIGRAM STAART De", "Conj(onder,met_fin) Conj(neven) PREV1OR2WD zowel", "Adv(gew,geen_func,stell,onverv) Adj(attr,stell,onverv) NEXTTAG Conj(neven)", "Adj(attr,stell,verv_neut) Pron(onbep,neut,attr) WDNEXTTAG Elke N(soort,ev,neut)", "Adj(adv,vergr,onverv) Adj(attr,vergr,onverv) PREV1OR2TAG Adv(gew,geen_func,stell,onverv)", "V(trans,ovt,1_of_2_of_3,ev) N(soort,ev,neut) PREVTAG Adj(attr,stell,verv_neut)", "V(intrans,teg_dw,verv_neut) N(soort,ev,neut) CURWD bende", "V(hulp,inf) V(hulp,ott,1_of_2_of_3,mv) WDPREVTAG N(soort,ev,neut) kunnen", "Pron(vrag,neut,attr) Pron(onbep,neut,attr) NEXTTAG N(soort,mv,neut)", "Pron(betr,neut,zelfst) Pron(vrag,neut,attr) NEXT1OR2OR3TAG Adv(gew,aanw)", "Adv(gew,vrag) Adv(pron,vrag) PREVTAG Pron(onbep,neut,zelfst)", "Adv(gew,geen_func,vergr,onverv) Num(hoofd,onbep,attr,vergr,onverv) NEXT1OR2TAG N(soort,mv,neut)", "V(trans,ott,1,ev) V(trans,ott,3,ev) PREVTAG Pron(onbep,neut,zelfst)", "V(hulp_of_kopp,ovt,1_of_2_of_3,mv) V(intrans,ovt,1_of_2_of_3,mv) NEXTTAG Adv(gew,er)", "Pron(onbep,neut,zelfst) Pron(per,2,ev,dat_of_acc) PREV1OR2TAG Pron(per,1,ev,nom)", "Num(hoofd,bep,attr,onverv) Num(rang,bep,attr,onverv) PREVTAG Art(bep,onzijd,neut)", "N(soort,ev,neut) Int CURWD oh", "V(intrans,ott,1,ev) N(soort,ev,neut) NEXT1OR2OR3TAG Prep(voor)", "Pron(aanw,neut,zelfst) Pron(betr,neut,zelfst) SURROUNDTAG Punc(komma) Adv(gew,geen_func,stell,onverv)", "Adj(zelfst,stell,verv_mv) N(soort,mv,neut) CURWD armen", "V(trans,ott,1,ev) V(intrans,ovt,1_of_2_of_3,ev) NEXT1OR2WD in", "V(intrans,inf) N(soort,mv,neut) WDNEXTTAG verschillen Prep(voor)", "Prep(voor) V(trans,imp) NEXTTAG Pron(aanw,neut,attr)", "N(eigen,ev,neut) Art(bep,zijd_of_mv,neut) WDNEXTTAG DE N(eigen,ev,neut)", "Adv(gew,aanw) Conj(onder,met_fin) WDAND2TAGBFR Art(bep,zijd_of_mv,neut) toen", "V(trans,ovt,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) NEXTTAG Pron(per,3,ev_of_mv,nom)", "V(trans,ovt,1_of_2_of_3,ev) Conj(onder,met_fin) CURWD zodra", "V(intrans,verl_dw,verv_neut) V(intrans,ovt,1_of_2_of_3,ev) CURWD gebeurde", "V(intrans,teg_dw,onverv) Adv(gew,geen_func,stell,onverv) CURWD dringend", "V(hulp,ovt,1_of_2_of_3,ev) Adj(attr,stell,verv_neut) PREV1OR2TAG Prep(voor)", "V(intrans,ott,3,ev) N(soort,ev,neut) PREVTAG Adj(attr,stell,verv_neut)", "V(hulp,inf) Num(hoofd,bep,attr,onverv) CURWD veertien", "Prep(voor) N(soort,mv,neut) NEXTWD zijn", "Num(hoofd,onbep,zelfst,stell,onverv) Num(hoofd,onbep,attr,stell,onverv) NEXTTAG N(soort,mv,neut)", "Art(bep,zijd_of_mv,gen) N(eigen,ev,neut) PREVTAG N(eigen,ev,neut)", "N(eigen,ev,neut) N(soort,ev,neut) PREVTAG Adj(attr,overtr,verv_neut)" ] } ================================================ FILE: lib/natural/brill_pos_tagger/data/Dutch/brill_LEXICON.jg ================================================ nijptangen N(soort,mv,neut) afhankelijk Adj(attr,stell,onverv) Over Prep(voor) partisanenster N(soort,ev,neut) overtuigd V(trans,verl_dw,onverv) bruine Adj(attr,stell,verv_neut) imitatie N(soort,ev,neut) kreeg V(trans,ovt,1_of_2_of_3,ev) ongenoegen N(soort,ev,neut) Heel Adv(gew,geen_func,stell,onverv) precies Adj(adv,stell,onverv) Adj(attr,stell,onverv) rede N(soort,ev,neut) Zijn Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) toegetakeld V(trans,verl_dw,onverv) bestaande V(intrans,teg_dw,verv_neut) repertoire N(soort,ev,neut) Heer N(soort,ev,neut) opslag N(soort,ev,neut) overtuigt V(trans,ott,3,ev) radio N(soort,ev,neut) kreet N(soort,ev,neut) Begint V(hulp,ott,2,ev) plaatse N(soort,ev,dat) ! Punc(uitroep) N(soort,mv,neut) Lutherse Adj(attr,stell,verv_neut) buigzaamheid N(soort,ev,neut) " Punc(aanhaal_dubb) % N(soort,ev,neut) Tegelse Adj(attr,stell,verv_neut) & N(eigen,ev,neut) binden V(trans,inf) cel N(soort,ev,neut) ( Punc(haak_open) vakantiebesteding N(soort,ev,neut) ) Punc(haak_sluit) gieren V(intrans,ott,1_of_2_of_3,mv) specialist N(soort,ev,neut) Woody N(eigen,ev,neut) , Punc(komma) N(eigen,ev,neut) gestreefd V(intrans,verl_dw,onverv) - Punc(ligg_streep) . Punc(punt) DSRV's N(soort,mv,neut) / Punc(schuin_streep) reed V(intrans,ovt,1_of_2_of_3,ev) 1 Num(hoofd,bep,attr,onverv) N(eigen,ev,neut) N(soort,ev,neut) Num(hoofd,bep,zelfst,onverv) uitgescholden V(trans,verl_dw,onverv) 2 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) 3 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) 4 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) 5 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) Sibyl N(eigen,ev,neut) 6 Num(hoofd,bep,attr,onverv) bestemming N(soort,ev,neut) boekje N(soort,ev,neut) N(eigen,ev,neut) 7 Num(hoofd,bep,attr,onverv) 8 Num(hoofd,bep,attr,onverv) tevoren Adv(gew,geen_func,stell,onverv) 9 Num(hoofd,bep,attr,onverv) toegelaten V(trans,verl_dw,onverv) : Punc(dubb_punt) ; Punc(punt_komma) koper- N(soort,ev,neut) rapporten N(soort,mv,neut) aandoenlijkheid N(soort,ev,neut) ? Punc(vraag) rees V(intrans,ovt,1_of_2_of_3,ev) rijbevoegdheid N(soort,ev,neut) aanslag N(soort,ev,neut) @ Misc(symbool) hoeverre Adv(gew,betr) Porsche N(eigen,ev,neut) B Num(hoofd,bep,attr,onverv) FRANSE Adj(attr,stell,verv_neut) C Num(hoofd,bep,attr,onverv) knotwilgen N(soort,mv,neut) G N(eigen,ev,neut) aanvoer N(soort,ev,neut) I Misc(vreemd) Gewoon Adj(adv,stell,onverv) gestegen V(intrans,verl_dw,onverv) overgeleverd V(trans,verl_dw,onverv) gram N(soort,ev,neut) aangeven V(trans,inf) L N(soort,ev,neut) opbelde V(intrans,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) verplichte V(trans,verl_dw,verv_neut) O Int grap N(soort,ev,neut) Q N(soort,ev,neut) Weitz N(eigen,ev,neut) gras N(soort,ev,neut) R N(soort,ev,neut) verschijning N(soort,ev,neut) S N(eigen,ev,neut) N(soort,ev,neut) reactie N(soort,ev,neut) U Pron(per,2,ev,nom) geexperimenteerd V(trans,verl_dw,onverv) comfortabel Adj(adv,stell,onverv) Adj(attr,stell,onverv) spijsverteren V(intrans,inf) genoten V(trans,verl_dw,onverv) V(trans,ovt,1_of_2_of_3,mv) XIII-stijl N(soort,ev,neut) koffertje N(soort,ev,neut) proberen V(hulp,inf) V(trans,inf) V(hulp,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) reebout N(soort,ev,neut) dichtslibben V(intrans,inf,subst) lossen V(trans,inf) a Prep(voor) Misc(vreemd) d Num(hoofd,bep,zelfst,onverv) Paramaribo N(eigen,ev,neut) losser Adj(attr,vergr,onverv) Gibb N(eigen,ev,neut) deugdelijke Adj(attr,stell,verv_neut) g N(soort,ev,neut) i N(eigen,ev,neut) GAP N(eigen,ev,neut) bergland N(soort,ev,neut) doorkreeg V(trans,ovt,1_of_2_of_3,ev) n N(soort,ev,neut) Eltman N(eigen,ev,neut) keken V(trans,ovt,1_of_2_of_3,mv) V(intrans,ovt,1_of_2_of_3,mv) Frankrijk N(eigen,ev,neut) u Pron(per,2,ev,nom) x Punc(maal) bouwen V(trans,inf) Beschadigd V(trans,verl_dw,onverv) fietsers N(soort,mv,neut) voorbaat N(soort,ev,neut) sales-manager N(soort,ev,neut) prefereer V(trans,ott,1,ev) kruispunten N(soort,mv,neut) accu's N(soort,mv,neut) familieleven N(soort,ev,neut) politie N(soort,ev,neut) gemengde V(trans,verl_dw,verv_neut) woonruimte N(soort,ev,neut) waterpokken N(soort,mv,neut) gegeven V(trans,verl_dw,onverv) N(soort,ev,neut) maanlandschap N(soort,ev,neut) openbare Adj(attr,stell,verv_neut) Maitena N(eigen,ev,neut) bloederziekte N(soort,ev,neut) ministerssteek N(soort,ev,neut) invloed N(soort,ev,neut) jullie Pron(per,2,mv,dat_of_acc) Pron(per,2,mv,nom) Bogarde N(eigen,ev,neut) ploegdiscipline N(soort,ev,neut) verwarming N(soort,ev,neut) instemming N(soort,ev,neut) Poema-schoenen N(soort,mv,neut) baby's N(soort,mv,neut) vastbeslotenheid N(soort,ev,neut) span V(trans,imp) liefdes N(soort,mv,neut) uitgewerkt V(trans,verl_dw,onverv) conferentie N(soort,ev,neut) concrete Adj(attr,stell,verv_neut) naderende V(intrans,teg_dw,verv_neut) ruitje N(soort,ev,neut) verjaardag N(soort,ev,neut) reis N(soort,ev,neut) ober N(soort,ev,neut) geboycot V(trans,verl_dw,onverv) Eerst Adj(adv,vergr,onverv) Adv(gew,geen_func,stell,onverv) rakker N(soort,ev,neut) Kuyper N(eigen,ev,neut) onherkenbaar Adj(attr,stell,onverv) luisteraar N(soort,ev,neut) bewerkstelligen V(trans,inf) wolf N(soort,ev,neut) samenhang N(soort,ev,neut) taxilichten N(soort,mv,neut) betreden V(trans,verl_dw,onverv) V(trans,ott,1_of_2_of_3,mv) wolk N(soort,ev,neut) gezicht N(soort,ev,neut) deden V(trans,ovt,1_of_2_of_3,mv) V(intrans,ovt,1_of_2_of_3,mv) V(hulp,ovt,1_of_2_of_3,mv) uitsterven V(intrans,inf,subst) ontkomen V(intrans,inf) Krekelberg N(eigen,ev,neut) royaal Adj(attr,stell,onverv) Giet V(trans,imp) trachtend V(hulp_of_kopp,teg_dw,onverv) tekende V(trans,ovt,1_of_2_of_3,ev) Onoordeelkundig Adj(adv,stell,onverv) Mond N(soort,ev,neut) Bewoont V(trans,ott,3,ev) mededeling N(soort,ev,neut) benoemde V(trans,ovt,1_of_2_of_3,ev) V(refl,ovt,1_of_2_of_3,ev) bouwstijlen N(soort,mv,neut) verbaasd V(trans,verl_dw,onverv) staarden V(intrans,ovt,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv) mevrouw N(soort,ev,neut) leesbaar Adj(attr,stell,onverv) zoute Adj(attr,stell,verv_neut) verweven V(trans,verl_dw,onverv) Althans Adv(gew,geen_func,stell,onverv) Twiggy N(eigen,ev,neut) beatband N(soort,ev,neut) kosteloze Adj(attr,stell,verv_neut) stelling N(soort,ev,neut) kersen N(soort,mv,neut) onderwijzer N(soort,ev,neut) Daarin Adv(pron,aanw) tenen N(soort,mv,neut) dankbaar Adj(attr,stell,onverv) tekenen V(intrans,inf) Libelle-bruidspaar N(soort,ev,neut) niet-materiele Adj(attr,stell,verv_neut) mantel N(soort,ev,neut) sfeer N(soort,ev,neut) Mooi Adj(attr,stell,onverv) wond V(refl,ovt,1_of_2_of_3,ev) doch Conj(neven) Bergers N(eigen,ev,neut) Street N(eigen,ev,neut) overlas V(trans,ovt,1_of_2_of_3,ev) ontberingssituaties N(soort,mv,neut) slingert V(refl,ott,3,ev) gietharsversiering N(soort,ev,neut) dergelijke Pron(aanw,dat,attr) genoodzaakt V(trans,verl_dw,onverv) ervaring N(soort,ev,neut) Pieterse N(eigen,ev,neut) koolbladeren N(soort,mv,neut) waarschijnlijk Adj(adv,stell,onverv) Adj(attr,stell,onverv) juli N(eigen,ev,neut) naliet V(trans,ovt,1_of_2_of_3,ev) geeft V(trans,ott,3,ev) dode Adj(attr,stell,verv_neut) stichten V(trans,inf) medewerker N(soort,ev,neut) dergelijks Pron(aanw,gen,attr) ziekenfondspakket N(soort,ev,neut) spek N(soort,ev,neut) romantiek N(soort,ev,neut) spel N(soort,ev,neut) kreng N(soort,ev,neut) chirurgie N(soort,ev,neut) vermoedt V(trans,ott,3,ev) Henk N(eigen,ev,neut) minstens Adv(gew,geen_func,stell,onverv) woon V(intrans,ott,1,ev) logische Adj(attr,stell,verv_neut) gebied N(soort,ev,neut) ongerief N(soort,ev,neut) uittorenend Adj(attr,stell,onverv) maagdelijke Adj(attr,stell,verv_neut) overtocht N(soort,ev,neut) makkelijker Adj(adv,vergr,onverv) uitdrukking N(soort,ev,neut) snoepen V(intrans,inf) grif Adj(adv,stell,onverv) klaargezet V(trans,verl_dw,onverv) ruimschoots Adj(adv,stell,onverv) Opnieuw Adv(gew,geen_func,stell,onverv) beweegt V(intrans,ott,3,ev) tactische Adj(attr,stell,verv_neut) VPRO-programma N(soort,ev,neut) doek N(soort,ev,neut) doel N(soort,ev,neut) voort Adv(deel_v) Adv(gew,geen_func,stell,onverv) doen V(trans,inf) V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) V(hulp,ott,1_of_2_of_3,mv) V(hulp,inf) N(soort,ev,neut) boezem N(soort,ev,neut) torenflats N(soort,mv,neut) bevrediging N(soort,ev,neut) 5,95 Num(hoofd,bep,attr,onverv) kralenversiering N(soort,ev,neut) does Misc(vreemd) doet V(trans,ott,3,ev) V(hulp,ott,3,ev) V(intrans,ott,3,ev) V(trans,ott,2,ev) V(refl,ott,3,ev) naargeestig Adj(adv,stell,onverv) zesjarige Adj(attr,stell,verv_neut) beslagen V(trans,verl_dw,onverv) misdaadfilm N(soort,ev,neut) omstreeks Adv(gew,geen_func,stell,onverv) Prep(voor) coc N(eigen,ev,neut) ras N(soort,ev,neut) fondue N(soort,ev,neut) popgroep N(soort,ev,neut) juni N(eigen,ev,neut) driekwartsmaat N(soort,ev,neut) verkoopster N(soort,ev,neut) besteden V(trans,inf) samenloop N(soort,ev,neut) bijeen Adv(gew,geen_func,stell,onverv) Woont V(intrans,ott,3,ev) tweeenvijftigjarige Adj(attr,stell,verv_neut) Tenzij Conj(onder,met_fin) trachtten V(hulp,ovt,1_of_2_of_3,mv) afdeling N(soort,ev,neut) vervolmaken V(trans,inf) Claude N(eigen,ev,neut) breiden V(trans,inf) verwekken V(trans,inf,subst) V(trans,inf) herinner V(trans,ott,1,ev) tvshow N(soort,ev,neut) Balenciaga N(eigen,ev,neut) hieraan Adv(pron,aanw) maakte V(trans,ovt,1_of_2_of_3,ev) V(refl,ovt,1_of_2_of_3,ev) intrinsieke Adj(attr,stell,verv_neut) saus N(soort,ev,neut) meerderheid N(soort,ev,neut) kunstkenners N(soort,mv,neut) word V(hulp_of_kopp,ott,1,ev) vergeetachtige Adj(attr,stell,verv_neut) Daarna Adv(pron,aanw) binnenkomen V(intrans,ott,1_of_2_of_3,mv) eenling N(soort,ev,neut) Grieks Adj(zelfst,stell,onverv) ellendig Adj(attr,stell,onverv) moest-ie V(hulp_of_kopp,ovt,1_of_2_of_3,ev) nerveus Adj(attr,stell,onverv) Adj(adv,stell,onverv) krottenwijken N(soort,mv,neut) dieper Adj(adv,vergr,onverv) opgebeld V(trans,verl_dw,onverv) billen N(soort,mv,neut) richt V(refl,ott,3,ev) merken V(trans,inf) N(soort,mv,neut) V(trans,ott,1_of_2_of_3,mv) bevalling N(soort,ev,neut) overstroomd V(trans,verl_dw,onverv) afvalstoffen N(soort,mv,neut) Trap N(soort,ev,neut) afweging N(soort,ev,neut) voedseloverschotten N(soort,mv,neut) beschrijving N(soort,ev,neut) kwaad Adj(attr,stell,onverv) N(soort,ev,neut) Herr N(eigen,ev,neut) Barry N(eigen,ev,neut) NAAM N(soort,ev,neut) kwaal N(soort,ev,neut) Daarom Adv(gew,aanw) diepvriesvak N(soort,ev,neut) Middeleeuwen N(eigen,mv,neut) overtuigen V(trans,inf) Daarop Adv(pron,aanw) Maar Conj(neven) Adv(gew,geen_func,stell,onverv) bokkenrijders N(soort,mv,neut) Heeft V(hulp,ott,3,ev) vermoeid V(trans,verl_dw,onverv) reisleider N(soort,ev,neut) diensten N(soort,mv,neut) verrijkt V(trans,verl_dw,onverv) Defares N(eigen,ev,neut) ontoelaatbaar Adj(attr,stell,onverv) heparine N(soort,ev,neut) ontzegging N(soort,ev,neut) harteloos Adj(adv,stell,onverv) derden Num(rang,bep,zelfst,onverv) waaruit Adv(pron,vrag) dramaturgie N(soort,ev,neut) glimmende V(intrans,teg_dw,verv_neut) waag V(trans,imp) medicijnen N(soort,mv,neut) anderhalve Num(hoofd,bep,attr,onverv) meegemaakt V(trans,verl_dw,onverv) namen N(soort,mv,neut) feestje N(soort,ev,neut) zibeline N(soort,ev,neut) Hoeksewaard N(eigen,ev,neut) opvallend V(intrans,teg_dw,onverv) behulp N(soort,ev,neut) waar Adv(gew,vrag) Adv(gew,betr) Adj(attr,stell,onverv) Adv(pron,vrag) Adv(pron,betr) lichaam N(soort,ev,neut) gezinssamenwerking N(soort,ev,neut) gekraakt V(trans,verl_dw,onverv) jurk N(soort,ev,neut) Ging V(intrans,ovt,1_of_2_of_3,ev) aangebroken V(intrans,verl_dw,onverv) Zieleman N(eigen,ev,neut) maagpijn N(soort,ev,neut) graven V(intrans,inf) V(trans,inf) uitstekend Adj(attr,stell,onverv) Negen Num(hoofd,bep,attr,onverv) bejaardenwoningen N(soort,mv,neut) ijskoude Adj(attr,stell,verv_neut) raffinement N(soort,ev,neut) bezighoudt V(refl,ott,3,ev) slenterde V(intrans,ovt,1_of_2_of_3,ev) afgekondigd V(trans,verl_dw,onverv) Murton N(eigen,ev,neut) lachen V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) rest N(soort,ev,neut) hoeveel Num(hoofd,onbep,attr,stell,onverv) welvaartsblik N(soort,ev,neut) spreidt V(trans,ott,3,ev) grof Adj(attr,stell,onverv) griezelbeelden N(soort,mv,neut) eenvoudige Adj(attr,stell,verv_neut) sandwiches N(soort,mv,neut) enkeling N(soort,ev,neut) verspeend V(trans,verl_dw,onverv) gros N(soort,ev,neut) bakkerij N(soort,ev,neut) seksboetieks N(soort,mv,neut) Algerije N(eigen,ev,neut) 17-jarige Adj(attr,stell,verv_neut) bevindt V(refl,ott,3,ev) voorbeelden N(soort,mv,neut) hopen V(intrans,ott,1_of_2_of_3,mv) N(soort,mv,neut) geschilpunt N(soort,ev,neut) eindigt V(intrans,ott,3,ev) Mady N(eigen,ev,neut) hotviool N(soort,ev,neut) recensies N(soort,mv,neut) stadsvolkje N(soort,ev,neut) intensief Adj(attr,stell,onverv) Adj(adv,stell,onverv) Danny N(eigen,ev,neut) filmmagnaat N(soort,ev,neut) blijde Adj(attr,stell,verv_neut) cum Adj(adv,stell,onverv) dooier N(soort,ev,neut) leerden V(hulp,ovt,1_of_2_of_3,mv) royale Adj(attr,stell,verv_neut) getal N(soort,ev,neut) desodorisanten N(soort,mv,neut) Ussel N(eigen,ev,neut) toerist N(soort,ev,neut) verkiezingen N(soort,mv,neut) martelingen N(soort,mv,neut) genadeklap N(soort,ev,neut) opperbest Adj(attr,overtr,onverv) gezegd V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv) Rijnterrassen N(soort,mv,neut) bevrijding N(soort,ev,neut) 100.000 Num(hoofd,bep,attr,onverv) Bloemen N(soort,mv,neut) muzikale Adj(attr,stell,verv_neut) stelde V(trans,ovt,1_of_2_of_3,ev) waard Adj(attr,stell,onverv) cynisch Adj(adv,stell,onverv) kunstenaars N(soort,mv,neut) wandeling N(soort,ev,neut) eierslang N(soort,ev,neut) daartussen Adv(pron,aanw) gillend V(intrans,teg_dw,onverv) kabbelende V(intrans,teg_dw,verv_neut) rij N(soort,ev,neut) sprongen V(intrans,ovt,1_of_2_of_3,mv) feestelijke Adj(attr,stell,verv_neut) afloop N(soort,ev,neut) rit N(soort,ev,neut) redactie N(soort,ev,neut) kabelbaan N(soort,ev,neut) komende V(intrans,teg_dw,verv_neut) minderheidsgroep N(soort,ev,neut) Wapping N(eigen,ev,neut) speelruimte N(soort,ev,neut) trouwen V(intrans,inf) bewondering N(soort,ev,neut) wapen N(soort,ev,neut) rokken N(soort,mv,neut) TOEGANG N(soort,ev,neut) schaken V(intrans,inf,subst) V(intrans,inf) berustend V(intrans,teg_dw,onverv) Schrijf V(trans,imp) Brockhouse N(eigen,ev,neut) Wayne N(eigen,ev,neut) geprofileerde V(trans,verl_dw,verv_neut) vertrouw V(trans,ott,1,ev) Pezzei N(eigen,ev,neut) geflankeerd V(trans,verl_dw,onverv) overeenkomst N(soort,ev,neut) bespreking N(soort,ev,neut) flarden N(soort,mv,neut) stelen V(trans,inf) verlossen V(trans,inf) spot N(soort,ev,neut) ceintuur N(soort,ev,neut) blijft V(hulp_of_kopp,ott,3,ev) V(intrans,ott,3,ev) torens N(soort,mv,neut) gravin N(soort,ev,neut) verzorging N(soort,ev,neut) reden V(intrans,ovt,1_of_2_of_3,mv) negers N(soort,mv,neut) hartpatient N(soort,ev,neut) touwen N(soort,mv,neut) dood N(soort,ev,neut) Adj(attr,stell,onverv) N(eigen,ev,neut) Dompel V(trans,imp) TROS-uitzending N(soort,ev,neut) Overheersend V(intrans,teg_dw,onverv) ziener N(soort,ev,neut) verklaren V(trans,inf) door Prep(voor) Conj(onder,met_inf) Prep(achter) Prep(comb) Adv(deel_adv) Misc(vreemd) Adv(gew,geen_func,stell,onverv) Adv(deel_v) kwalijk Adj(attr,stell,onverv) schilders N(soort,mv,neut) uiteindelijk Adj(adv,stell,onverv) woningen N(soort,mv,neut) Bundes-sportheim N(soort,ev,neut) kleertjes N(soort,mv,neut) Toornsjtraat Misc(vreemd) kalme Adj(attr,stell,verv_neut) klooster N(soort,ev,neut) tophitlijsten N(soort,mv,neut) alle Pron(onbep,neut,attr) Pron(onbep,neut,zelfst) Boeken N(soort,mv,neut) kuiten N(soort,mv,neut) ontvingen V(trans,ovt,1_of_2_of_3,mv) samenwerking N(soort,ev,neut) depressie N(soort,ev,neut) redenen N(soort,mv,neut) streven V(intrans,inf) V(intrans,inf,subst) monter Adj(attr,stell,onverv) opgeschoten V(trans,verl_dw,onverv) veiligheid N(soort,ev,neut) Zeker Adj(adv,stell,onverv) Client N(soort,ev,neut) Main N(eigen,ev,neut) subtiel Adj(attr,stell,onverv) variant N(soort,ev,neut) Adj(attr,stell,onverv) honeymooners N(soort,mv,neut) geest N(soort,ev,neut) Noordzee N(eigen,ev,neut) werkbesparende Adj(attr,stell,verv_neut) argeloze Adj(attr,stell,verv_neut) Sommigen Pron(onbep,neut,zelfst) oefeningen N(soort,mv,neut) intuitie N(soort,ev,neut) herboren Adj(attr,stell,onverv) epater Misc(vreemd) bezitsdrang N(soort,ev,neut) aandiende V(refl,ovt,1_of_2_of_3,ev) vooraanstaande Adj(attr,stell,verv_neut) Sgt. N(eigen,ev,neut) demonstratiemiddag N(soort,ev,neut) werkwijze N(soort,ev,neut) Helvoirts N(eigen,ev,gen) hoogte N(soort,ev,neut) schenkers N(soort,mv,neut) Kalverstraat N(eigen,ev,neut) Nonnetje N(eigen,ev,neut) gezamenlijke Adj(attr,stell,verv_neut) behaard Adj(attr,stell,onverv) gelaten V(trans,verl_dw,onverv) Groningen N(eigen,ev,neut) Voordeel N(soort,ev,neut) vismethode N(soort,ev,neut) business N(soort,ev,neut) dorp N(soort,ev,neut) lichaamsgewicht N(soort,ev,neut) mededinging N(soort,ev,neut) vriendjes N(soort,mv,neut) Leen N(eigen,ev,neut) spitsuur N(soort,ev,neut) kattevoer N(soort,ev,neut) vredig Adj(attr,stell,onverv) Rotterdamse Adj(attr,stell,verv_neut) sloten N(soort,mv,neut) makkelijkst Adj(adv,vergr,onverv) Jarenlang Adj(adv,stell,onverv) litteratuur N(soort,ev,neut) uitdrukkingen N(soort,mv,neut) onafhankelijkheid N(soort,ev,neut) uitlopen V(trans,inf) V(intrans,ott,1_of_2_of_3,mv) postbode N(soort,ev,neut) aanstekelijk Adj(adv,stell,onverv) Darley N(eigen,ev,neut) onderlinge Adj(attr,stell,verv_neut) Pluizen N(soort,mv,neut) Uil N(eigen,ev,neut) gewonden V(trans,verl_dw,verv_mv) Daarbij Adv(pron,aanw) jeugd N(soort,ev,neut) blijkt V(intrans,ott,3,ev) V(hulp_of_kopp,ott,3,ev) bijten V(intrans,inf) rok N(soort,ev,neut) avonds N(soort,ev,gen) rol N(soort,ev,neut) veel Num(hoofd,onbep,attr,stell,onverv) Num(hoofd,onbep,zelfst,stell,onverv) Uit Prep(voor) technische Adj(attr,stell,verv_neut) rot Adj(attr,stell,onverv) Zethof N(eigen,ev,neut) aanzoek N(soort,ev,neut) kabinet-De N(eigen,ev,neut) kerkezakje N(soort,ev,neut) Buona N(eigen,ev,neut) humbug N(soort,ev,neut) wasbord N(soort,ev,neut) alledaagse Adj(attr,stell,verv_neut) export-managers N(soort,mv,neut) boosdoeners N(soort,mv,neut) O.a. Adv(gew,geen_func,stell,onverv) critici N(soort,mv,neut) vaker Adv(gew,geen_func,vergr,onverv) Buitenspelende Adj(attr,stell,verv_neut) spul N(soort,ev,neut) krap Adj(adv,stell,onverv) daad N(soort,ev,neut) regisseur N(soort,ev,neut) hoofdbureau N(soort,ev,neut) verhuurder N(soort,ev,neut) minderwaardigheidscomplex N(soort,ev,neut) aanraking N(soort,ev,neut) zover Adv(gew,aanw) immense Adj(attr,stell,verv_neut) bewapening N(soort,ev,neut) daar Adv(gew,aanw) Adv(pron,aanw) tweeendertighonderd Num(hoofd,bep,zelfst,onverv) leraar N(soort,ev,neut) daas Adj(attr,stell,onverv) proeft V(trans,ott,3,ev) kwaliteit N(soort,ev,neut) gevorderd V(intrans,verl_dw,onverv) vernieuwing N(soort,ev,neut) aandrang N(soort,ev,neut) initiatieven N(soort,mv,neut) dringend Adv(gew,geen_func,stell,onverv) lengten N(soort,mv,neut) wassen V(trans,inf) klassegewijze Adj(attr,stell,verv_neut) duurste Adj(attr,overtr,verv_neut) Bestelt V(trans,ott,2,ev) rijksambtenaar N(soort,ev,neut) boerderij N(soort,ev,neut) kleren N(soort,mv,neut) evenwicht N(soort,ev,neut) turven V(intrans,inf) kinderprogramma N(soort,ev,neut) Luistert V(intrans,ott,2,ev) vissersdorpen N(soort,mv,neut) laagconjunctuur N(soort,ev,neut) lezeressen N(soort,mv,neut) blijmoedige Adj(attr,stell,verv_neut) marasquin N(soort,ev,neut) gekoeld V(trans,verl_dw,onverv) opvalt V(intrans,ott,3,ev) wordende V(hulp_of_kopp,teg_dw,verv_neut) opeet V(trans,ott,3,ev) TeleVizier N(eigen,ev,neut) Middeleeuwse Adj(attr,stell,verv_neut) diepte N(soort,ev,neut) collier N(soort,ev,neut) wand N(soort,ev,neut) Stein N(eigen,ev,neut) raison N(soort,ev,neut) bierbrouwerij-kapitaal N(soort,ev,neut) wang N(soort,ev,neut) Ostenreich Misc(vreemd) merkte V(trans,ovt,1_of_2_of_3,ev) beraamde V(trans,ovt,1_of_2_of_3,ev) tienduizenden Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) want Conj(neven) levenloos Adj(attr,stell,onverv) filmwereld N(soort,ev,neut) Delfosse N(eigen,ev,neut) Jackson N(eigen,ev,neut) tesamen Adv(gew,geen_func,stell,onverv) gedrang N(soort,ev,neut) bleken V(hulp_of_kopp,ovt,1_of_2_of_3,mv) akkoord N(soort,ev,neut) tehuis N(soort,ev,neut) homofielen N(soort,mv,neut) allergie N(soort,ev,neut) partijen N(soort,mv,neut) bonte Adj(attr,stell,verv_neut) eksperimenteren V(intrans,inf) Schiedam N(eigen,ev,neut) Wassenaar N(eigen,ev,neut) opvang N(soort,ev,neut) bezighouden V(refl,inf) V(refl,ott,1_of_2_of_3,mv) reisverhalen N(soort,mv,neut) fauteuil N(soort,ev,neut) Minnaert N(eigen,ev,neut) tillen V(trans,inf) Grieg N(eigen,ev,neut) Europese Adj(attr,stell,verv_neut) jawoord N(soort,ev,neut) Nicholson N(eigen,ev,neut) grootouders N(soort,mv,neut) schaamtegevoelens N(soort,mv,neut) publicitair Adj(adv,stell,onverv) kleiblokken N(soort,mv,neut) heldere Adj(attr,stell,verv_neut) verbouwd V(trans,verl_dw,onverv) uitbleef V(intrans,ovt,1_of_2_of_3,ev) vriendschap N(soort,ev,neut) onderling Adj(attr,stell,onverv) kreten N(soort,mv,neut) dag- N(soort,ev,neut) N(soort,mv,neut) aantallen N(soort,mv,neut) Willibrords N(eigen,ev,gen) terzijde Adv(gew,geen_func,stell,onverv) vakje N(soort,ev,neut) lacht V(intrans,ott,3,ev) sophisticated Adj(attr,stell,onverv) dag N(soort,ev,neut) attenties N(soort,mv,neut) dak N(soort,ev,neut) Oscar N(eigen,ev,neut) dan Adv(gew,aanw) Conj(onder,met_fin) Conj(neven) Horeca-attractie N(soort,ev,neut) aanvang N(soort,ev,neut) aardappelschepen N(soort,mv,neut) trainingspak N(soort,ev,neut) beschouwden V(trans,ovt,1_of_2_of_3,mv) das N(soort,ev,neut) dat Conj(onder,met_fin) Pron(betr,neut,zelfst) Pron(aanw,neut,zelfst) Adv(gew,vrag) Pron(aanw,neut,attr) Conj(neven) rookvlees N(soort,ev,neut) verloofd V(trans,verl_dw,onverv) advertenties N(soort,mv,neut) rug N(soort,ev,neut) lachte V(intrans,ovt,1_of_2_of_3,ev) strategen N(soort,mv,neut) Hugenoten N(soort,mv,neut) onderhouden V(trans,inf) V(trans,verl_dw,onverv) Jaarbeurshallen N(eigen,mv,neut) beide Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) kwark N(soort,ev,neut) uithoeken N(soort,mv,neut) rum N(soort,ev,neut) gerust Adj(adv,stell,onverv) moreel Adj(adv,stell,onverv) Mars N(eigen,ev,neut) voerde V(trans,ovt,1_of_2_of_3,ev) Truida N(eigen,ev,neut) Mary N(eigen,ev,neut) verkenning N(soort,ev,neut) verder Adj(adv,vergr,onverv) getekend V(trans,verl_dw,onverv) zuurstof N(soort,ev,neut) toonden V(trans,ovt,1_of_2_of_3,mv) gebroeders N(soort,mv,neut) incasseren V(trans,inf) Goethe N(eigen,ev,neut) dromend V(intrans,teg_dw,onverv) toepassen V(trans,inf) Super Adj(attr,stell,onverv) verplichtingen N(soort,mv,neut) veld N(soort,ev,neut) vele Num(hoofd,onbep,attr,stell,verv_neut) vermijden V(trans,inf) tv-assistente N(soort,ev,neut) ware Adj(attr,stell,verv_neut) V(intrans,conj) gymnasium N(soort,ev,neut) donkere Adj(attr,stell,verv_neut) aangekondigd V(trans,verl_dw,onverv) Aigues-Mortes N(eigen,ev,neut) bekommert V(refl,ott,3,ev) Denemarken N(eigen,ev,neut) vleugels N(soort,mv,neut) warm Adj(attr,stell,onverv) Lagerhuis N(eigen,ev,neut) kwast N(soort,ev,neut) kleinere Adj(attr,vergr,verv_neut) voeren V(trans,inf) verstek N(soort,ev,neut) prediken V(intrans,inf) keerzijde N(soort,ev,neut) concentratie N(soort,ev,neut) getroffen V(trans,verl_dw,onverv) westkant N(soort,ev,neut) priester N(soort,ev,neut) sterven V(intrans,inf) seizoen N(soort,ev,neut) schuldgevoel N(soort,ev,neut) reiken V(trans,inf) ofschoon Conj(onder,met_fin) darmen N(soort,mv,neut) nieuwjaarsnacht N(soort,ev,neut) NATO N(eigen,ev,neut) soldaat N(soort,ev,neut) public N(soort,mv,neut) verschrikkelijk Adj(adv,stell,onverv) tussenkomst N(soort,ev,neut) verhouding N(soort,ev,neut) waardevrije Adj(attr,stell,verv_neut) hoed N(soort,ev,neut) champagneglas N(soort,ev,neut) hoef V(hulp,ott,2,ev) V(hulp,ott,1,ev) buitenbeks Adv(gew,geen_func,stell,onverv) slechter Adj(attr,vergr,onverv) aanrukken V(trans,inf) inleiding N(soort,ev,neut) methode N(soort,ev,neut) rituele Adj(attr,stell,verv_neut) hoek N(soort,ev,neut) mogelijke Adj(attr,stell,verv_neut) knalbommen N(soort,mv,neut) 800,- Num(hoofd,bep,attr,onverv) oosthoek N(soort,ev,neut) voorzag V(trans,ovt,1_of_2_of_3,ev) hoes N(soort,ev,neut) minuten N(soort,mv,neut) constateerde V(trans,ovt,1_of_2_of_3,ev) bekwaamheid N(soort,ev,neut) Spaanse Adj(attr,stell,verv_neut) schoen N(soort,ev,neut) plaatsen N(soort,mv,neut) V(trans,inf) beige Adj(zelfst,stell,onverv) Adj(attr,stell,onverv) opzetten V(trans,inf,subst) V(trans,inf) Maup N(eigen,ev,neut) moekes N(soort,mv,neut) bestond V(intrans,ovt,1_of_2_of_3,ev) uitspraken N(soort,mv,neut) vent N(soort,ev,neut) mascotte-bezitter N(soort,ev,neut) weerzin N(soort,ev,neut) teckeldorp N(soort,ev,neut) Petersen N(eigen,ev,neut) Elfrink N(eigen,ev,neut) dek N(soort,ev,neut) del N(eigen,ev,neut) den N(eigen,ev,neut) Art(bep,zijd,dat) N(eigen,mv,neut) afkeer N(soort,ev,neut) kerels N(soort,mv,neut) eenvoud N(soort,ev,neut) schuurtjes N(soort,mv,neut) programma N(soort,ev,neut) der Art(bep,zijd_of_mv,gen) N(eigen,ev,neut) des Adv(gew,aanw) N(eigen,ev,neut) Art(bep,zijd_of_onzijd,gen) Kijk V(intrans,imp) Int voorlopers N(soort,mv,neut) heerlijkheden N(soort,mv,neut) geloof V(trans,ott,1,ev) V(intrans,ott,1,ev) N(soort,ev,neut) klemmen N(soort,mv,neut) Garfunkel N(eigen,ev,neut) Edwin N(eigen,ev,neut) regeling N(soort,ev,neut) raadsel N(soort,ev,neut) tegenspel N(soort,ev,neut) Vivarais N(eigen,ev,neut) hekel N(soort,ev,neut) konflikt N(soort,ev,neut) vloeiend V(intrans,teg_dw,onverv) onderscheid N(soort,ev,neut) verzeild V(intrans,verl_dw,onverv) Gallisch Adj(attr,stell,onverv) stamppot N(soort,ev,neut) regelmatige Adj(attr,stell,verv_neut) sprookjesogen N(soort,mv,neut) Kika N(eigen,ev,neut) hoge Adj(attr,stell,verv_neut) puntschoenen N(soort,mv,neut) lipsticks N(soort,mv,neut) bescherming N(soort,ev,neut) begroeid V(trans,verl_dw,onverv) kleinzieligheid N(soort,ev,neut) eenentwintig Num(hoofd,bep,attr,onverv) persoonlijk Adj(adv,stell,onverv) Adj(attr,stell,onverv) b.v. Adv(gew,geen_func,stell,onverv) waterrijke Adj(attr,stell,verv_neut) slaakte V(trans,ovt,1_of_2_of_3,ev) afvloeit V(intrans,ott,3,ev) meest-gevraagd Adj(attr,overtr,onverv) ver- N(soort,mv,neut) tribune N(soort,ev,neut) Arme Adj(attr,stell,verv_neut) Apostel N(soort,ev,neut) discussie N(soort,ev,neut) tijdperk N(soort,ev,neut) verzuchtte V(trans,ovt,1_of_2_of_3,ev) hoofdzakelijk Adj(adv,stell,onverv) verandering N(soort,ev,neut) afkomstige Adj(attr,stell,verv_neut) bedrijven N(soort,mv,neut) V(trans,inf) uitkijktoren N(soort,ev,neut) waargenomen V(trans,verl_dw,onverv) kelen N(soort,mv,neut) godsdienstig Adj(attr,stell,onverv) getto N(soort,ev,neut) spreekkamer N(soort,ev,neut) opgewektheid N(soort,ev,neut) wandelingen N(soort,mv,neut) inspireert V(trans,ott,3,ev) Groningse Adj(attr,stell,verv_neut) afzonderlijk Adj(adv,stell,onverv) assistente N(soort,ev,neut) Sportief Adj(attr,stell,onverv) pafferige Adj(attr,stell,verv_neut) damslapers N(soort,mv,neut) kinderbijslag N(soort,ev,neut) anticoagulantiatabletten N(soort,mv,neut) oproepen V(trans,inf) Afgejakkerd V(trans,verl_dw,onverv) VVD N(eigen,ev,neut) energieverslinders N(soort,mv,neut) inspecteren V(trans,inf) verdelen V(trans,ott,1_of_2_of_3,mv) dame N(soort,ev,neut) omgeven V(trans,verl_dw,onverv) schrijvers N(soort,mv,neut) ineenkrimpen V(intrans,inf) Anneke N(eigen,ev,neut) bijgeloof N(soort,ev,neut) zelfbevrediging N(soort,ev,neut) werelds N(soort,ev,gen) Berlin N(eigen,ev,neut) geknipt V(trans,verl_dw,onverv) vaccinatie N(soort,ev,neut) onthaal N(soort,ev,neut) nemen V(trans,inf) V(trans,inf,subst) V(trans,ott,1_of_2_of_3,mv) gewicht N(soort,ev,neut) constateren V(trans,inf) vrijmaking N(soort,ev,neut) damp N(soort,ev,neut) Uddel N(eigen,ev,neut) spastische Adj(attr,stell,verv_neut) zachtaardig Adj(attr,stell,onverv) vers Adj(attr,stell,onverv) die Pron(betr,neut,zelfst) Pron(aanw,neut,zelfst) Pron(aanw,neut,attr) Misc(vreemd) minder Num(hoofd,onbep,attr,vergr,onverv) Num(hoofd,onbep,zelfst,vergr,onverv) dik Adj(attr,stell,onverv) Adj(adv,stell,onverv) dattie Conj(onder,met_fin) jongetje N(soort,ev,neut) toespraken N(soort,mv,neut) bereikt V(trans,verl_dw,onverv) V(trans,ott,3,ev) King N(eigen,ev,neut) erelijst N(soort,ev,neut) Vincent N(eigen,ev,neut) wanhopig Adj(attr,stell,onverv) getuigenissen N(soort,mv,neut) wenkbrauwen N(soort,mv,neut) plaatsje N(soort,ev,neut) dis N(soort,ev,neut) dit Pron(aanw,neut,attr) Pron(aanw,neut,zelfst) afscheiding N(soort,ev,neut) Jacqueline N(eigen,ev,neut) woonkamer N(soort,ev,neut) hoogleraar N(soort,ev,neut) Nigel N(eigen,ev,neut) regeringskliek N(soort,ev,neut) Oosterbeek N(eigen,ev,neut) dank N(soort,ev,neut) visitelijst N(soort,ev,neut) levenloze Adj(attr,stell,verv_neut) slotte N(soort,ev,dat) bevochtiging N(soort,ev,neut) binnenstad N(soort,ev,neut) vuurtorens N(soort,mv,neut) Morbihan N(eigen,ev,neut) paardemiddel N(soort,ev,neut) vest N(soort,ev,neut) kindsaf Adv(gew,geen_func,stell,onverv) hoezeer Adv(gew,betr) verantwoorde V(trans,verl_dw,verv_neut) N(eigen,ev,neut) optilt V(trans,ott,2,ev) zedelijkheidswetgeving N(soort,ev,neut) Maybella N(eigen,ev,neut) waarvan Adv(pron,vrag) middelen N(soort,mv,neut) schreef V(trans,ovt,1_of_2_of_3,ev) aloude Adj(attr,stell,verv_neut) uitstekende Adj(attr,stell,verv_neut) V(intrans,teg_dw,verv_neut) kabinet N(soort,ev,neut) verrassing N(soort,ev,neut) begrijpelijke Adj(attr,stell,verv_neut) nergens Adv(gew,onbep) opera N(soort,ev,neut) Surinamer N(soort,ev,neut) HEL N(soort,ev,neut) vereeuwigen V(trans,inf) langzamerhand Adv(gew,geen_func,stell,onverv) Leve V(intrans,conj) alweer Adv(gew,geen_func,stell,onverv) Griffe N(eigen,ev,neut) migratie-balans N(soort,ev,neut) mouwen N(soort,mv,neut) vernielingen N(soort,mv,neut) landschap N(soort,ev,neut) toekomstig Adj(attr,stell,onverv) bestaan V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) N(soort,ev,neut) V(intrans,verl_dw,onverv) holt V(intrans,ott,3,ev) doornemen V(trans,inf) Culturele Adj(attr,stell,verv_neut) rondkijkende V(intrans,teg_dw,verv_neut) slaagt V(intrans,ott,3,ev) bestaat V(intrans,ott,3,ev) veranderen V(intrans,inf) V(trans,ott,1_of_2_of_3,mv) bidt V(trans,ott,3,ev) Echt Adj(adv,stell,onverv) bovenplank N(soort,ev,neut) vermijdbaarheid N(soort,ev,neut) OostDuitsland N(eigen,ev,neut) Workshop N(eigen,ev,neut) oogjes N(soort,mv,neut) onverbeterlijk Adj(adv,stell,onverv) taaie Adj(attr,stell,verv_neut) Engelse Adj(attr,stell,verv_neut) realiseren V(trans,inf) V(trans,ott,1_of_2_of_3,mv) fungeren V(intrans,inf) extra's N(soort,mv,neut) dll N(soort,mv,neut) duizeligheid N(soort,ev,neut) overgeslagen V(trans,verl_dw,onverv) elementen N(soort,mv,neut) spitse Adj(attr,stell,verv_neut) zedelijkheid N(soort,ev,neut) miljoenenpubliek N(soort,ev,neut) geleend V(trans,verl_dw,onverv) displaced Adj(attr,stell,onverv) misdadigers N(soort,mv,neut) schijnt V(hulp_of_kopp,ott,3,ev) V(intrans,ott,3,ev) rafelig Adj(attr,stell,onverv) glanzend V(intrans,teg_dw,onverv) Trafalgar N(eigen,ev,neut) Hieruit Adv(pron,aanw) rechtvaardige Adj(attr,stell,verv_neut) Zuidvietnamese Adj(attr,stell,verv_neut) bier N(soort,ev,neut) verantwoordelijk Adj(attr,stell,onverv) volksvergadering N(soort,ev,neut) geweldig Adj(attr,stell,onverv) Adj(adv,stell,onverv) Agadir N(eigen,ev,neut) kondigt V(trans,ott,3,ev) soort N(soort,ev,neut) verweet V(trans,ovt,1_of_2_of_3,ev) West-Europa N(eigen,ev,neut) showbusinessmakers N(soort,mv,neut) effectieve Adj(attr,stell,verv_neut) apparaat N(soort,ev,neut) hond N(soort,ev,neut) confrontatie N(soort,ev,neut) Maastricht N(eigen,ev,neut) Martine N(eigen,ev,neut) 'k Pron(per,1,ev,nom) 'm Pron(per,3,ev,dat_of_acc) garage N(soort,ev,neut) 'n Art(onbep,zijd_of_onzijd,neut) schone Adj(attr,stell,verv_neut) maatschappij-kritisch Adj(adv,stell,onverv) resp. Adj(adv,stell,onverv) 's Art(bep,zijd_of_onzijd,gen) etalages N(soort,mv,neut) 't Art(bep,onzijd,neut) Pron(per,3,ev,nom) N(eigen,ev,neut) Pron(per,3,ev,dat_of_acc) Pron(onbep,neut,zelfst) Marseille N(eigen,ev,neut) schonk V(trans,ovt,1_of_2_of_3,ev) trekpleisters N(soort,mv,neut) beleven V(trans,inf) wasserij N(soort,ev,neut) nodig Adj(attr,stell,onverv) Adj(adv,stell,onverv) kwartier N(soort,ev,neut) bloeien V(intrans,inf) Marco N(eigen,ev,neut) hoog Adj(attr,stell,onverv) Adj(adv,stell,onverv) industrielen N(soort,mv,neut) betere Adj(attr,vergr,verv_neut) elke Pron(onbep,neut,attr) bekwaamste Adj(attr,overtr,verv_neut) besteedt V(trans,ott,3,ev) zacht Adj(attr,stell,onverv) Adj(adv,stell,onverv) schoof V(trans,ovt,1_of_2_of_3,ev) hoon N(soort,ev,neut) hoop N(soort,ev,neut) V(intrans,ott,1,ev) V(trans,ott,1,ev) hoor Int V(trans,ott,2,ev) V(trans,ott,1,ev) V(intrans,ott,1,ev) soepel Adj(attr,stell,onverv) Adj(adv,stell,onverv) geduldig Adj(adv,stell,onverv) pilaren N(soort,mv,neut) duurde V(trans,ovt,1_of_2_of_3,ev) school N(soort,ev,neut) schoon Adj(attr,stell,onverv) sprong V(intrans,ovt,1_of_2_of_3,ev) schoot N(soort,ev,neut) tendens N(soort,ev,neut) doe V(trans,ott,2,ev) V(intrans,ott,1,ev) V(trans,imp) V(trans,ott,1,ev) Hildegard N(eigen,ev,neut) wetgeving N(soort,ev,neut) I'm Misc(vreemd) schooltijd N(soort,ev,neut) sax N(soort,ev,neut) Bukena N(eigen,ev,neut) dol Adj(attr,stell,onverv) Duys N(eigen,ev,neut) schenken V(trans,inf) dom Adj(attr,stell,onverv) vrede N(soort,ev,neut) heerlijks Adj(zelfst,stell,verv_gen) sterilisatie N(soort,ev,neut) luchthaven N(soort,ev,neut) onbeperkt Adj(adv,stell,onverv) concentratievermogen N(soort,ev,neut) fotograaf N(soort,ev,neut) kleinen Adj(zelfst,stell,verv_mv) makkelijk Adj(adv,stell,onverv) kleiner Adj(attr,vergr,onverv) Christoph N(eigen,ev,neut) oorverdovende Adj(attr,stell,verv_neut) spreekvoorbeeld N(soort,ev,neut) halen V(trans,inf) V(trans,ott,1_of_2_of_3,mv) Voetgangers N(eigen,ev,neut) cent N(soort,ev,neut) borgsom N(soort,ev,neut) bevoogding N(soort,ev,neut) rugpatroon N(soort,ev,neut) ,, Punc(hellip) dr. N(eigen,ev,neut) rationalisatie N(soort,ev,neut) spiegel N(soort,ev,neut) uitdrukkelijk Adj(adv,stell,onverv) eethuisjes N(soort,mv,neut) eigene Adj(zelfst,stell,verv_neut) geleerd V(trans,verl_dw,onverv) scheidenden V(intrans,teg_dw,verv_mv) ijzige Adj(attr,stell,verv_neut) vrees N(soort,ev,neut) V(trans,ott,1,ev) V(intrans,ott,1,ev) woningwetwoningen N(soort,mv,neut) meegenieten V(intrans,inf) knechtje N(soort,ev,neut) gebreide V(trans,verl_dw,verv_neut) teksten N(soort,mv,neut) inzat V(intrans,ovt,1_of_2_of_3,ev) uittrekken V(trans,inf) wereldkampioene N(soort,ev,neut) gezongen V(trans,verl_dw,onverv) 3500 Num(hoofd,bep,attr,onverv) reizen V(intrans,inf,subst) N(soort,mv,neut) kleden V(trans,inf) gevuld V(trans,verl_dw,onverv) glycogeen N(soort,ev,neut) ommuurd V(trans,verl_dw,onverv) kamer N(soort,ev,neut) bestelling N(soort,ev,neut) bijl N(soort,ev,neut) Peel N(eigen,ev,neut) Drugstore N(soort,ev,neut) studeren V(intrans,inf) deelt V(trans,ott,3,ev) Pasen N(eigen,ev,neut) echtgenoot N(soort,ev,neut) Salzburg N(eigen,ev,neut) passen V(intrans,ott,1_of_2_of_3,mv) V(intrans,inf) mishandelingen N(soort,mv,neut) George N(eigen,ev,neut) vampiers N(soort,mv,neut) waarderen V(trans,inf) luisterde V(intrans,ovt,1_of_2_of_3,ev) gevluchte V(intrans,verl_dw,verv_neut) verhaaltje N(soort,ev,neut) mesterij N(soort,ev,neut) AVRO N(eigen,ev,neut) vroegrijpe Adj(attr,stell,verv_neut) Poswick N(eigen,ev,neut) rimboe N(soort,ev,neut) leegte N(soort,ev,neut) Zwitserse Adj(attr,stell,verv_neut) .. Punc(hellip) gevraagd V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv) kinderlijk Adj(attr,stell,onverv) Brabant N(eigen,ev,neut) vervoerde V(trans,ovt,1_of_2_of_3,ev) schrijft V(trans,ott,3,ev) V(trans,ott,2,ev) zijplanken N(soort,mv,neut) gebruikelijk Adj(attr,stell,onverv) zeef N(soort,ev,neut) Waardenburg N(eigen,ev,neut) geworden V(hulp_of_kopp,verl_dw,onverv) 10.000 Num(hoofd,bep,attr,onverv) verloofde N(soort,ev,neut) binten N(soort,mv,neut) afscheidingsprodukt N(soort,ev,neut) vanmorgen Adv(gew,geen_func,stell,onverv) opdrogen V(intrans,ott,1_of_2_of_3,mv) meervoudige Adj(attr,stell,verv_neut) chauffeur N(soort,ev,neut) seq N(eigen,ev,neut) zeep N(soort,ev,neut) aanschouwelijk Adj(attr,stell,onverv) zeer Adv(gew,geen_func,stell,onverv) meegebrachte V(trans,verl_dw,verv_neut) Heemsteedse Adj(attr,stell,verv_neut) niet-kunstonderwijsinstelling N(soort,ev,neut) aandoenlijks Adj(attr,stell,verv_gen) sex N(soort,ev,neut) inzond V(trans,ovt,1_of_2_of_3,ev) november N(eigen,ev,neut) reclameboodschappen N(soort,mv,neut) puntige Adj(attr,stell,verv_neut) luisteren V(intrans,inf) popgroepen N(soort,mv,neut) journalist N(soort,ev,neut) wantoestanden N(soort,mv,neut) understand Misc(vreemd) leerstoel N(soort,ev,neut) vervoeren V(trans,inf) armen N(soort,mv,neut) Adj(zelfst,stell,verv_mv) Maria N(eigen,ev,neut) Saharadomeinen N(soort,mv,neut) haar Pron(bez,3,ev,neut,attr) Pron(per,3,ev,dat_of_acc) N(soort,ev,neut) archipel N(soort,ev,neut) schaal N(soort,ev,neut) massa's N(soort,mv,neut) haat V(trans,ott,1,ev) V(trans,ott,3,ev) schuwen V(trans,ott,1_of_2_of_3,mv) Avonds N(soort,ev,gen) henzelf Pron(per,3,mv,dat_of_acc) Hugo N(eigen,ev,neut) houd V(trans,imp) V(intrans,ott,1,ev) V(refl,ott,2,ev) gemiddelde Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut) uitlaat V(refl,ott,3,ev) drinkend V(intrans,teg_dw,onverv) dermate Adv(gew,aanw) zorgvuldig Adj(adv,stell,onverv) vrouwelijkheid N(soort,ev,neut) maquettes N(soort,mv,neut) berijdbare Adj(attr,stell,verv_neut) folkloristische Adj(attr,stell,verv_neut) gekenmerkt V(trans,verl_dw,onverv) hout N(soort,ev,neut) Van Prep(voor) N(eigen,mv,neut) N(eigen,ev,neut) slaapt V(intrans,ott,3,ev) God N(eigen,ev,neut) HOE Adv(gew,betr) gouden Adj(attr,stell,onverv) inzet N(soort,ev,neut) wasautomaat N(soort,ev,neut) kleurige Adj(attr,stell,verv_neut) Veertig Num(hoofd,bep,attr,onverv) drukbezette Adj(attr,stell,verv_neut) instelling N(soort,ev,neut) zegt V(trans,ott,3,ev) V(trans,ott,2,ev) voorjaar N(soort,ev,neut) opgaan V(trans,ott,1_of_2_of_3,mv) V(intrans,inf) waggelbenen N(soort,mv,neut) huiseigenaar N(soort,ev,neut) dun Adj(adv,stell,onverv) opleiding N(soort,ev,neut) reportage N(soort,ev,neut) opgaat V(intrans,ott,3,ev) wielrennen V(intrans,inf) dus Adv(gew,aanw) lachten V(intrans,ovt,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv) verwend V(trans,verl_dw,onverv) vanillesuiker N(soort,ev,neut) 10 Num(hoofd,bep,attr,onverv) begreep V(trans,ovt,1_of_2_of_3,ev) 11 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) bink N(soort,ev,neut) pleziertje N(soort,ev,neut) 12 Num(hoofd,bep,attr,onverv) 13 Num(hoofd,bep,attr,onverv) N(eigen,ev,neut) onooglijke Adj(zelfst,stell,verv_neut) 14 Num(hoofd,bep,attr,onverv) 15 Num(hoofd,bep,attr,onverv) klasse N(soort,ev,neut) beesten N(soort,mv,neut) 17 Num(hoofd,bep,attr,onverv) 18 Num(hoofd,bep,attr,onverv) N(eigen,ev,neut) samengesteld V(trans,verl_dw,onverv) 19 Num(hoofd,bep,attr,onverv) Huib N(eigen,ev,neut) woning N(soort,ev,neut) speurt V(intrans,ott,3,ev) kruid N(soort,ev,neut) Mortelmans N(eigen,ev,neut) orde N(soort,ev,neut) echtgenote N(soort,ev,neut) concentreert V(refl,ott,3,ev) Huis N(eigen,ev,neut) senator N(soort,ev,neut) koren N(soort,mv,neut) Marquet N(eigen,ev,neut) veiligheidssluitingen N(soort,mv,neut) ouderen Adj(zelfst,vergr,verv_neut) onderwereld N(soort,ev,neut) EEG-landen N(soort,mv,neut) levendig Adj(attr,stell,onverv) minderwaardig Adj(attr,stell,onverv) 20 Num(hoofd,bep,attr,onverv) N(soort,mv,neut) 21 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) 22 Num(hoofd,bep,attr,onverv) 23 Num(hoofd,bep,attr,onverv) Nigeria-Nok N(eigen,ev,neut) voeden V(trans,inf) groei N(soort,ev,neut) 24 Num(hoofd,bep,attr,onverv) 25 Num(hoofd,bep,attr,onverv) onbevredigde Adj(attr,stell,verv_neut) herkenbaar Adj(attr,stell,onverv) Vernons N(eigen,ev,gen) 26 Num(hoofd,bep,attr,onverv) showbis N(soort,ev,neut) 27 Num(hoofd,bep,attr,onverv) aangaat V(trans,ott,3,ev) Marbert N(eigen,ev,neut) groen Adj(zelfst,stell,onverv) Adj(attr,stell,onverv) 29 Num(hoofd,bep,zelfst,onverv) groep N(soort,ev,neut) parapsychologie N(soort,ev,neut) schade N(soort,ev,neut) zomaar Adv(gew,geen_func,stell,onverv) buurt N(soort,ev,neut) groet N(soort,ev,neut) reeds Adv(gew,geen_func,stell,onverv) recept N(soort,ev,neut) Christ N(eigen,ev,neut) spiegelglas N(soort,ev,neut) slapen V(intrans,inf) eigenhandig Adj(adv,stell,onverv) ruim Adj(adv,stell,onverv) Adj(attr,stell,onverv) uitgevoerd V(trans,verl_dw,onverv) huiden N(soort,mv,neut) schalen N(soort,mv,neut) oren N(soort,mv,neut) 30 Num(hoofd,bep,attr,onverv) 31 Num(hoofd,bep,attr,onverv) ijlboden N(soort,mv,neut) kortstondige Adj(attr,stell,verv_neut) niettemin Adv(gew,geen_func,stell,onverv) 36 Num(hoofd,bep,attr,onverv) 39 Num(hoofd,bep,zelfst,onverv) afdelingslijst N(soort,ev,neut) hierbij Adv(pron,aanw) heftig Adj(adv,stell,onverv) Columbusstraat N(eigen,ev,neut) Sultan N(soort,ev,neut) gelang N(soort,ev,neut) 2e Num(rang,bep,attr,onverv) katholiek N(soort,ev,neut) Scandinavische Adj(attr,stell,verv_neut) patronaatszaaltje N(soort,ev,neut) radioprogramma N(soort,ev,neut) volkskunst N(soort,ev,neut) bestand Adj(attr,stell,onverv) buitenwereld N(soort,ev,neut) aftandse Adj(attr,stell,verv_neut) interne Adj(attr,stell,verv_neut) 40 Num(hoofd,bep,attr,onverv) 41 Num(hoofd,bep,zelfst,onverv) 42 Num(hoofd,bep,attr,onverv) verhoging N(soort,ev,neut) speelkamer N(soort,ev,neut) 45 Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) 46 Num(hoofd,bep,attr,onverv) aangevraagde V(trans,verl_dw,verv_neut) politieke Adj(attr,stell,verv_neut) ski V(intrans,ott,1,ev) N(soort,ev,neut) Ver Adj(adv,stell,onverv) Rabenhauptstraat N(eigen,ev,neut) aanleg N(soort,ev,neut) 3a N(eigen,ev,neut) Dietrich N(eigen,ev,neut) opvattingen N(soort,mv,neut) Dines N(eigen,ev,gen) opening N(soort,ev,neut) tussen Prep(voor) Hulp N(soort,ev,neut) voedselbronnen N(soort,mv,neut) uitgezonden V(trans,verl_dw,onverv) Patsajew N(eigen,ev,neut) krult V(intrans,ott,3,ev) zandbak N(soort,ev,neut) sla V(trans,imp) 50 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) 51 Num(hoofd,bep,zelfst,onverv) rukt V(intrans,ott,3,ev) beiden Num(hoofd,bep,zelfst,verv_mv) 53 Num(hoofd,bep,attr,onverv) gecoiffeerd V(trans,verl_dw,onverv) zelf Pron(aanw,neut,attr,w_zelf) Richard N(eigen,ev,neut) 56 Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) circulerend V(intrans,teg_dw,onverv) 57 Num(hoofd,bep,zelfst,onverv) 59 Num(hoofd,bep,zelfst,onverv) vergezellen V(trans,inf) snelheidsmaniakken N(soort,mv,neut) verbeteren V(intrans,inf) Mascouvin N(eigen,ev,neut) Tsji N(eigen,ev,neut) Erik N(eigen,ev,neut) N(eigen,ev,gen) groenachtige Adj(attr,stell,verv_neut) nagellak N(soort,ev,neut) kitsch N(soort,ev,neut) meubilair N(soort,ev,neut) niemand Pron(onbep,neut,zelfst) hersenen N(soort,mv,neut) 60 Num(hoofd,bep,attr,onverv) Martel N(eigen,ev,neut) betrokken V(trans,verl_dw,onverv) Verder Adj(adv,vergr,onverv) likeur N(soort,ev,neut) beperkten V(refl,ovt,1_of_2_of_3,mv) uithoudingsvermogen N(soort,ev,neut) Graham N(eigen,ev,neut) Doordat Conj(onder,met_fin) betaalden V(trans,ovt,1_of_2_of_3,mv) Reynolds N(eigen,ev,neut) 65 Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) functie N(soort,ev,neut) 67 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) werkelijke Adj(attr,stell,verv_neut) stijlopvatting N(soort,ev,neut) Zelfs Adv(gew,geen_func,stell,onverv) Bangma N(eigen,ev,neut) tientallen N(soort,mv,neut) gevoeligheid N(soort,ev,neut) Schubert N(eigen,ev,neut) advocaat N(soort,ev,neut) verknoeid V(trans,verl_dw,onverv) goedgekeurd V(trans,verl_dw,onverv) Chinese Adj(attr,stell,verv_neut) velletje N(soort,ev,neut) loef N(soort,ev,neut) loei N(soort,ev,neut) teruggegaan V(intrans,verl_dw,onverv) advocaten N(soort,mv,neut) 70 Num(hoofd,bep,attr,onverv) Nauwelijks Adv(gew,geen_func,stell,onverv) 72 Num(hoofd,bep,attr,onverv) konflikten N(soort,mv,neut) 74 Num(hoofd,bep,attr,onverv) spiegels N(soort,mv,neut) geroepen V(trans,verl_dw,onverv) vandoor Adv(gew,geen_func,stell,onverv) synoniem Adj(attr,stell,onverv) bits Adj(attr,stell,onverv) bijeenzoeken V(trans,inf) laatsgenoemde Adj(attr,stell,verv_neut) blaffen V(trans,ott,1_of_2_of_3,mv) noblesse N(soort,ev,neut) eindeloos Adj(adv,stell,onverv) Adj(attr,stell,onverv) huidje N(soort,ev,neut) diefstallen N(soort,mv,neut) groeiend V(intrans,teg_dw,onverv) schrijnende V(intrans,teg_dw,verv_neut) eenzaam Adj(attr,stell,onverv) Adj(adv,stell,onverv) doorbreken V(trans,inf) verbrandt V(trans,ott,3,ev) verorberen V(trans,inf) stilte N(soort,ev,neut) WIE Pron(betr,neut,zelfst) 80 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) 81 Num(hoofd,bep,attr,onverv) seksualiteit N(soort,ev,neut) bulderstem N(soort,ev,neut) 82 Num(hoofd,bep,attr,onverv) Werkgroep N(eigen,ev,neut) WIJ Pron(per,1,mv,nom) gebleven V(hulp_of_kopp,verl_dw,onverv) tranen N(soort,mv,neut) Allebei Num(hoofd,bep,zelfst,onverv) som N(soort,ev,neut) cosmeticahuizen N(soort,mv,neut) kleuter-diertje N(soort,ev,neut) Martha N(eigen,ev,neut) rechterkant N(soort,ev,neut) boekjes N(soort,mv,neut) lollige Adj(attr,stell,verv_neut) Exacte Adj(attr,stell,verv_neut) stijlcitaten N(soort,mv,neut) schalks Adj(adv,stell,onverv) armoe N(soort,ev,neut) geef V(trans,ott,1,ev) V(trans,imp) 93 Num(hoofd,bep,attr,onverv) zowel Conj(neven) 95 Num(hoofd,bep,attr,onverv) bewusteloosheid N(soort,ev,neut) verwensing N(soort,ev,neut) gemeenschap N(soort,ev,neut) geuit V(trans,verl_dw,onverv) termen N(soort,mv,neut) Hollandse Adj(attr,stell,verv_neut) eigener Pron(aanw,gen,attr,w_eigen) orchideeen N(soort,mv,neut) geel Adj(attr,stell,onverv) Adj(zelfst,stell,onverv) 99 Num(hoofd,bep,attr,onverv) hiernamaals N(soort,ev,neut) geen Pron(onbep,neut,attr) gekend V(trans,verl_dw,onverv) onderzoek N(soort,ev,neut) theologen N(soort,mv,neut) daarvoor Adv(pron,aanw) reeks N(soort,ev,neut) champagne N(soort,ev,neut) Marsh N(eigen,ev,neut) geschoffeld V(trans,verl_dw,onverv) 32,95 Num(hoofd,bep,attr,onverv) daarmee Adv(pron,aanw) Sproei V(intrans,imp) opstond V(intrans,ovt,1_of_2_of_3,ev) herinnerde V(trans,ovt,1_of_2_of_3,ev) ventje N(soort,ev,neut) verste Adj(attr,overtr,verv_neut) geniaal Adj(adv,stell,onverv) Adj(attr,stell,onverv) mens-mens N(soort,ev,neut) profiteren V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) praktische Adj(attr,stell,verv_neut) Bomanssaus N(soort,ev,neut) oorlog N(soort,ev,neut) Martin N(eigen,ev,neut) boord N(soort,ev,neut) half Adj(attr,stell,onverv) Num(hoofd,bep,attr,onverv) Adj(adv,stell,onverv) onberoerd Adj(attr,stell,onverv) Marbella N(eigen,ev,neut) gezeten V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv) sieraden N(soort,mv,neut) leeuwen N(soort,mv,neut) spraken V(intrans,ovt,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv) slootwater N(soort,ev,neut) Peru N(eigen,ev,neut) jachtgeweren N(soort,mv,neut) toekwam V(intrans,ovt,1_of_2_of_3,ev) viooltjes N(soort,mv,neut) verbeterd V(intrans,verl_dw,onverv) gromt V(intrans,ott,3,ev) gekaapt V(trans,verl_dw,onverv) werkelijk Adj(adv,stell,onverv) Adj(attr,stell,onverv) droevig Adj(adv,stell,onverv) dusdanig Pron(aanw,neut,zelfst) hals N(soort,ev,neut) dokken V(intrans,inf) geplaatst V(trans,verl_dw,onverv) sprake N(soort,ev,neut) N(soort,ev,dat) Heuff N(eigen,ev,neut) fluisterde V(trans,ovt,1_of_2_of_3,ev) Westduitse Adj(attr,stell,verv_neut) grond N(soort,ev,neut) herinneren V(trans,inf) risico N(soort,ev,neut) handwerkje N(soort,ev,neut) Marty N(eigen,ev,neut) geleerde Adj(zelfst,stell,verv_neut) omvang N(soort,ev,neut) Volkomen Adj(adv,stell,onverv) voortdurende V(intrans,teg_dw,verv_neut) Ascott N(eigen,ev,neut) verwondingen N(soort,mv,neut) directeur N(soort,ev,neut) vreemd Adj(attr,stell,onverv) feitelijk Adj(adv,stell,onverv) artsen N(soort,mv,neut) respectievelijk Adj(adv,stell,onverv) bevinden V(refl,ott,1_of_2_of_3,mv) rondhangende V(intrans,teg_dw,verv_neut) fixer-leden N(soort,mv,neut) snelt V(intrans,ott,3,ev) toneelspelen V(intrans,inf) Klasen N(eigen,ev,neut) dienstplichtigen Adj(zelfst,stell,verv_mv) spiegelzusters N(soort,mv,neut) hand N(soort,ev,neut) halve Adj(attr,stell,verv_neut) klassenmaatschappij N(soort,ev,neut) vezel N(soort,ev,neut) zogenaamde Adj(attr,stell,verv_neut) vandaag Adv(gew,geen_func,stell,onverv) opperstrateeg N(soort,ev,neut) groot Adj(attr,stell,onverv) skiinstructeurs N(soort,mv,neut) veroordelen V(trans,inf) smekend V(intrans,teg_dw,onverv) vandaan Adv(deel_adv) verleenden V(trans,ovt,1_of_2_of_3,mv) nestelt V(refl,ott,3,ev) profit N(eigen,ev,neut) gelucht V(trans,verl_dw,onverv) vandaar Adv(gew,aanw) lachende V(intrans,teg_dw,verv_neut) onrechte N(soort,ev,dat) vormen N(soort,mv,neut) V(trans,inf) V(trans,ott,1_of_2_of_3,mv) Coldwater N(eigen,ev,neut) sta V(intrans,ott,1,ev) V(hulp,ott,2,ev) Minder Num(hoofd,onbep,attr,vergr,onverv) cursus N(soort,ev,neut) rust N(soort,ev,neut) garnituur N(soort,ev,neut) polyesterhars N(soort,ev,neut) eiland N(soort,ev,neut) theologie N(soort,ev,neut) lokt V(trans,ott,3,ev) Annemiek N(eigen,ev,neut) gebruik N(soort,ev,neut) V(trans,imp) dieet N(soort,ev,neut) geil N(soort,ev,neut) merkwaardig Adj(attr,stell,onverv) geboren Adj(attr,stell,onverv) schoolmeestersbestaan N(soort,ev,neut) verlopen V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) akker N(soort,ev,neut) opgang N(soort,ev,neut) regenbui N(soort,ev,neut) vakken N(soort,mv,neut) wind-gordels N(soort,mv,neut) image N(soort,ev,neut) elektrische Adj(attr,stell,verv_neut) baanbrekend Adj(attr,stell,onverv) leren V(trans,inf) Adj(attr,stell,onverv) V(intrans,inf) V(trans,ott,1_of_2_of_3,mv) V(hulp,inf) krijgen V(trans,inf) V(trans,ott,1_of_2_of_3,mv) Redding Misc(vreemd) overgegaan V(trans,verl_dw,onverv) drinkperiode N(soort,ev,neut) letterlijke Adj(attr,stell,verv_neut) barbaren N(soort,mv,neut) pootjes N(soort,mv,neut) sneller Adj(adv,vergr,onverv) Adj(attr,vergr,onverv) prettige Adj(attr,stell,verv_neut) Vos N(eigen,ev,gen) gedachte N(soort,ev,neut) geliefden Adj(zelfst,stell,verv_mv) beschadigingen N(soort,mv,neut) zenuwen N(soort,mv,neut) tinten N(soort,mv,neut) gerimpelde Adj(attr,stell,verv_neut) poppen N(soort,mv,neut) klonk V(intrans,ovt,1_of_2_of_3,ev) Naika N(eigen,ev,neut) beroemde Adj(attr,stell,verv_neut) parafernalia N(soort,mv,neut) gaven V(trans,ovt,1_of_2_of_3,mv) N(soort,mv,neut) V(refl,ovt,1_of_2_of_3,mv) expert N(soort,ev,neut) gerimpelds V(trans,verl_dw,verv_gen) volwaardige Adj(attr,stell,verv_neut) inzake Prep(voor) m.a.v.o. N(soort,ev,neut) bewijs N(soort,ev,neut) V(trans,ott,1,ev) naaide V(trans,ovt,1_of_2_of_3,ev) Tanger N(eigen,ev,neut) Kevin N(eigen,ev,neut) fier Adj(adv,stell,onverv) auteur N(soort,ev,neut) keukenmeester N(soort,ev,neut) dertig Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) bestudering N(soort,ev,neut) afstaan V(trans,inf) Edith N(eigen,ev,neut) zenden V(intrans,inf,subst) V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) kloof V(intrans,ovt,1_of_2_of_3,ev) N(soort,ev,neut) gymnastiekoefeningen N(soort,mv,neut) long N(soort,ev,neut) zestien Num(hoofd,bep,attr,onverv) verdere Adj(attr,vergr,verv_neut) oorspronkelijke Adj(attr,stell,verv_neut) geld N(soort,ev,neut) hard Adj(attr,stell,onverv) Adj(adv,stell,onverv) ontmoetingen N(soort,mv,neut) hare Pron(bez,3,ev,neut,attr) opgeklopte V(trans,verl_dw,verv_neut) Gabin N(eigen,ev,neut) ingaan V(intrans,inf) gespietst V(trans,verl_dw,onverv) opstaan V(intrans,inf) eikehouten Adj(attr,stell,onverv) naaien V(trans,ott,1_of_2_of_3,mv) gangbare Adj(zelfst,stell,verv_neut) harp N(soort,ev,neut) onderhoudskosten N(soort,mv,neut) korte Adj(attr,stell,verv_neut) hart N(soort,ev,neut) ruwe Adj(attr,stell,verv_neut) kaarsen N(soort,mv,neut) Merci Int tabak N(soort,ev,neut) lood N(soort,ev,neut) Nigeria N(eigen,ev,neut) toegepast V(trans,verl_dw,onverv) weerloosheid N(soort,ev,neut) voetganger N(soort,ev,neut) brommer N(soort,ev,neut) A. N(eigen,ev,neut) versjacherd V(trans,verl_dw,onverv) Verstond V(trans,ovt,1_of_2_of_3,ev) grote Adj(attr,stell,verv_neut) loop N(soort,ev,neut) V(intrans,ott,1,ev) V(hulp,ott,1,ev) hervinden V(trans,ott,1_of_2_of_3,mv) klopt V(intrans,ott,3,ev) brengt V(trans,ott,3,ev) toenemen V(intrans,ott,1_of_2_of_3,mv) V(intrans,inf,subst) vreten V(trans,inf) V(intrans,inf) verkeerd Adj(attr,stell,onverv) Adj(adv,stell,onverv) huisgenoten N(soort,mv,neut) mallotige Adj(attr,stell,verv_neut) thuiskomt V(intrans,ott,3,ev) graad N(soort,ev,neut) verlustigen V(refl,inf) graaf N(soort,ev,neut) Stube N(soort,ev,neut) graag Adj(adv,stell,onverv) gemonteerd V(trans,verl_dw,onverv) enerzijds Adv(gew,geen_func,stell,onverv) eenjarige Adj(attr,stell,verv_neut) verkeert V(intrans,ott,3,ev) inhaalde V(trans,ovt,1_of_2_of_3,ev) karabijn N(soort,ev,neut) zwaait V(intrans,ott,3,ev) een Art(onbep,zijd_of_onzijd,neut) Num(hoofd,bep,attr,onverv) N(eigen,ev,neut) Num(hoofd,bep,zelfst,onverv) meteen Adv(gew,geen_func,stell,onverv) gieten V(intrans,inf) achtjarig Adj(attr,stell,onverv) eer N(soort,ev,neut) B. N(eigen,ev,neut) N(soort,ev,neut) PISUISSE N(eigen,ev,neut) AR N(eigen,ev,neut) doeltreffend Adj(adv,stell,onverv) zangers N(soort,mv,neut) roodharige Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut) eindeloze Adj(attr,stell,verv_neut) barbarij N(soort,ev,neut) hate Misc(vreemd) kapster N(soort,ev,neut) geurt V(intrans,ott,3,ev) stemmen N(soort,mv,neut) V(intrans,inf) tehuizen N(soort,mv,neut) opponent N(soort,ev,neut) erover Adv(pron,onbep) toetertjes N(soort,mv,neut) Angeles N(eigen,ev,neut) konkelkritiek N(soort,ev,neut) glimt V(intrans,ott,3,ev) Gelei-achtige Adj(attr,stell,verv_neut) Af Adv(gew,geen_func,stell,onverv) teruggestuurd V(trans,verl_dw,onverv) Fysiek Adj(attr,stell,onverv) station N(soort,ev,neut) Noortjes N(eigen,ev,gen) Al Pron(onbep,neut,attr) Conj(onder,met_fin) Adv(gew,geen_func,stell,onverv) fluutertjes N(soort,mv,neut) huilt V(intrans,ott,2,ev) standjes N(soort,mv,neut) HUBERT N(eigen,ev,neut) probeert V(hulp,ott,3,ev) teams N(soort,mv,neut) hartstreek N(soort,ev,neut) Laotiaanse Adj(attr,stell,verv_neut) eindigen V(intrans,inf) mede-weten N(soort,ev,neut) tegenstellingen N(soort,mv,neut) Hertogin N(eigen,ev,neut) koperplaat N(soort,ev,neut) antwoord N(soort,ev,neut) zuiden N(soort,ev,neut) nulpunt N(soort,ev,neut) Had V(hulp,ovt,1_of_2_of_3,ev) leerlingen N(soort,mv,neut) eenzame Adj(attr,stell,verv_neut) Hai Int Boyce N(eigen,ev,neut) structuren N(soort,mv,neut) helft N(soort,ev,neut) dubbelspel N(soort,ev,neut) leidende V(intrans,teg_dw,verv_neut) blazende V(intrans,teg_dw,verv_neut) Bratwursten N(soort,mv,neut) ventte V(intrans,ovt,1_of_2_of_3,ev) functionerende V(intrans,teg_dw,verv_neut) Ringo N(eigen,ev,neut) codenaam N(soort,ev,neut) twaalftal N(soort,ev,neut) kordate Adj(attr,stell,verv_neut) geinteresseerd V(trans,verl_dw,onverv) toilet N(soort,ev,neut) ondergoed N(soort,ev,neut) beneden Adv(gew,geen_func,stell,onverv) Prep(voor) theepot N(soort,ev,neut) fijn Adj(attr,stell,onverv) Adj(adv,stell,onverv) boodschappentas N(soort,ev,neut) schuift V(trans,ott,3,ev) Nederlander N(soort,ev,neut) selecteren V(trans,inf) misverstanden N(soort,mv,neut) lamsvlees N(soort,ev,neut) levensjaar N(soort,ev,neut) ondervonden V(trans,verl_dw,onverv) 19-jarige Adj(attr,stell,verv_neut) serviesgoed N(soort,ev,neut) vriendelijkheid N(soort,ev,neut) bakens N(soort,mv,neut) verzekeringsmaatschappij N(soort,ev,neut) lippen N(soort,mv,neut) Haltes N(soort,mv,neut) DE Art(bep,zijd_of_mv,neut) voorjaarskuur N(soort,ev,neut) IBM N(eigen,ev,neut) producent N(soort,ev,neut) toelaatbaar Adj(attr,stell,onverv) mensenheugenis N(soort,ev,neut) Co N(eigen,ev,neut) grandioos Adj(attr,stell,onverv) volgen V(trans,inf) huisje N(soort,ev,neut) ingrepen N(soort,mv,neut) gevangenis N(soort,ev,neut) fiks Adj(attr,stell,onverv) buurman N(soort,ev,neut) Kameroen N(eigen,ev,neut) woon-ellende N(soort,ev,neut) klaar Adj(attr,stell,onverv) opgave N(soort,ev,neut) verschaft V(trans,ott,3,ev) bestanddelen N(soort,mv,neut) Tobias N(eigen,ev,neut) bustes N(soort,mv,neut) prinses N(soort,ev,neut) draaide V(trans,ovt,1_of_2_of_3,ev) regels N(soort,mv,neut) geneesmiddelen N(soort,mv,neut) regelt V(trans,ott,3,ev) De Art(bep,zijd_of_mv,neut) N(eigen,ev,neut) zoowel Conj(neven) honderd Num(hoofd,bep,attr,onverv) incognito Adv(gew,geen_func,stell,onverv) weggenomen V(trans,verl_dw,onverv) EN Conj(neven) eis N(soort,ev,neut) Dr N(eigen,ev,gen) Bout N(eigen,ev,neut) beat-bandjes N(soort,mv,neut) behuizing N(soort,ev,neut) j.l. Adj(attr,stell,onverv) piccolo's N(soort,mv,neut) film N(soort,ev,neut) diens Pron(aanw,gen,attr) dient V(hulp,ott,3,ev) V(hulp,ott,2,ev) V(intrans,ott,3,ev) V(trans,ott,3,ev) laag Adj(attr,stell,onverv) N(soort,ev,neut) Tsaad N(eigen,ev,neut) trekken V(trans,inf) V(intrans,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) valse Adj(attr,stell,verv_neut) normaal Adj(attr,stell,onverv) diepvrieskreeftestaarten N(soort,mv,neut) Ed N(eigen,ev,neut) bedoelde V(trans,verl_dw,verv_neut) kameleonachtige Adj(attr,stell,verv_neut) nvsh N(eigen,ev,neut) laat V(hulp,ott,3,ev) V(trans,ott,3,ev) Adj(adv,stell,onverv) Adj(attr,stell,onverv) V(trans,ott,2,ev) V(intrans,imp) V(hulp,ott,1,ev) V(trans,imp) V(hulp,imp) vereniging N(soort,ev,neut) supporters N(soort,mv,neut) draaien V(trans,inf) V(intrans,inf) tuinen N(soort,mv,neut) transseksualisme N(soort,ev,neut) gevoeld V(trans,verl_dw,onverv) V(refl,verl_dw,onverv) academische Adj(attr,stell,verv_neut) En Conj(neven) zelflezen N(soort,ev,neut) G. N(eigen,ev,neut) Er Adv(gew,er) Adv(pron,er) kantonrechter N(soort,ev,neut) Vervolgens Adv(gew,geen_func,stell,onverv) oktober N(eigen,ev,neut) uitte V(refl,ovt,1_of_2_of_3,ev) Back N(eigen,ev,neut) Chippendale N(eigen,ev,neut) tennis N(soort,ev,neut) Heb V(trans,ott,2,ev) V(hulp,ott,2,ev) hippies N(soort,mv,neut) verschijningsvormen N(soort,mv,neut) Hee Int Piccadilly N(eigen,ev,neut) synthetische Adj(attr,stell,verv_neut) bevroren V(intrans,verl_dw,onverv) verliefden Adj(zelfst,stell,verv_mv) koelkasten N(soort,mv,neut) nagaan V(intrans,inf) V(trans,inf) diepe Adj(attr,stell,verv_neut) vertonen V(trans,inf,subst) Schaaf V(trans,imp) bedoelen V(trans,ott,1_of_2_of_3,mv) Het Pron(onbep,neut,zelfst) N(eigen,ev,neut) Art(bep,onzijd,neut) Pron(per,3,ev,nom) H. N(eigen,ev,neut) operaties N(soort,mv,neut) onevenwichtig Adj(attr,stell,onverv) kunstenaar N(soort,ev,neut) ontzenuwen V(trans,inf) poort N(soort,ev,neut) Yoko N(eigen,ev,neut) gepakt V(trans,verl_dw,onverv) linksen Adj(zelfst,stell,verv_mv) overwaait V(intrans,ott,3,ev) gedrag N(soort,ev,neut) Adjudant N(soort,ev,neut) Python N(eigen,ev,neut) biezen N(soort,mv,neut) vooraanstaand Adj(attr,stell,onverv) Doolaard N(eigen,ev,neut) meegenomen V(trans,verl_dw,onverv) rampschip N(soort,ev,neut) problematiek N(soort,ev,neut) aangegrepen V(trans,verl_dw,onverv) daartussenin Adv(pron,aanw) psychologische Adj(attr,stell,verv_neut) Ga V(hulp,imp) V(intrans,imp) V(intrans,ott,2,ev) zuigopening N(soort,ev,neut) bewegen V(trans,inf,subst) V(intrans,inf,subst) elf Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) Suriname N(eigen,ev,neut) Generaal N(soort,ev,neut) producers N(soort,mv,neut) elk Pron(onbep,neut,attr) enscrenering N(soort,ev,neut) beschikking N(soort,ev,neut) wetenschap N(soort,ev,neut) tennisbanen N(soort,mv,neut) midden- N(soort,ev,neut) inzonderheid Adv(gew,geen_func,stell,onverv) toonaangevende Adj(attr,stell,verv_neut) armoedige Adj(attr,stell,verv_neut) Go N(eigen,ev,neut) H.B. N(eigen,ev,neut) gevernist V(trans,verl_dw,onverv) spiraaltje N(soort,ev,neut) Kuitert N(eigen,ev,neut) afgestroopt V(trans,verl_dw,onverv) geholpen V(trans,verl_dw,onverv) verleidelijke Adj(attr,stell,verv_neut) rockerbenden N(soort,mv,neut) helle Adj(attr,stell,verv_neut) onvermijdelijke Adj(attr,stell,verv_neut) Westerbouwing N(eigen,ev,neut) geur N(soort,ev,neut) Belgen N(soort,mv,neut) wacht V(trans,ott,1,ev) Zeeland N(eigen,ev,neut) Belger N(eigen,ev,neut) koetsen N(soort,mv,neut) Surinaamse Adj(attr,stell,verv_neut) dessinateur N(soort,ev,neut) huishoudelijke Adj(attr,stell,verv_neut) nuchter Adj(adv,stell,onverv) steenboknaturen N(soort,mv,neut) roklengte N(soort,ev,neut) visvangst N(soort,ev,neut) vuil N(soort,ev,neut) Adj(attr,stell,onverv) Ho N(eigen,ev,neut) clandestiene Adj(attr,stell,verv_neut) ongelukken N(soort,mv,neut) schelen V(trans,inf) chaotisch Adj(adv,stell,onverv) IV N(eigen,ev,neut) vliegtuig N(soort,ev,neut) schuilt V(intrans,ott,3,ev) zwaard N(soort,ev,neut) kinders N(soort,mv,neut) ene Pron(onbep,neut,attr) Num(hoofd,bep,attr,onverv) eng Adj(attr,stell,onverv) Adj(adv,stell,onverv) Ching-wang N(eigen,ev,neut) gehanteerd V(trans,verl_dw,onverv) licht N(soort,ev,neut) Adj(adv,stell,onverv) Mao-Chinees N(soort,ev,neut) Ik Pron(per,1,ev,nom) vermogen N(soort,ev,neut) Zomaar Adv(gew,geen_func,stell,onverv) In Prep(voor) N(eigen,ev,neut) gazons N(soort,mv,neut) hulpstukjes N(soort,mv,neut) VARA N(eigen,ev,neut) gedetineerde V(trans,verl_dw,verv_neut) Is V(hulp_of_kopp,ott,3,ev) Slapen V(intrans,ott,1_of_2_of_3,mv) afgeblazen V(trans,verl_dw,onverv) geinspireerd V(trans,verl_dw,onverv) volledige Adj(attr,stell,verv_neut) Vermeng V(trans,imp) beurszaal N(soort,ev,neut) KNMV N(eigen,ev,neut) Eugenie N(eigen,ev,neut) Jaren N(soort,mv,neut) tal N(soort,ev,neut) verborgen V(trans,verl_dw,onverv) denkwijzen N(soort,mv,neut) verloedering N(soort,ev,neut) Ja Int pastoor N(soort,ev,neut) pruikenmateriaal N(soort,ev,neut) tas N(soort,ev,neut) Hij Pron(per,3,ev,nom) zaadje N(soort,ev,neut) belonen V(intrans,inf) Je Pron(per,2,ev,nom) Pron(onbep,neut,zelfst) Pron(bez,2,ev,neut,attr) nuchtere Adj(attr,stell,verv_neut) begripsvermogen N(soort,ev,neut) relaas N(soort,ev,neut) Johns N(eigen,ev,neut) bevriezen V(trans,inf) telefoonlijst N(soort,ev,neut) Jo N(eigen,ev,neut) landbevolking N(soort,ev,neut) hooibergen N(soort,mv,neut) Dominee N(soort,ev,neut) kapstok N(soort,ev,neut) tbc N(soort,ev,neut) modieus Adj(adv,stell,onverv) gymnastiekonderdeel N(soort,ev,neut) lage Adj(attr,stell,verv_neut) aantrekkelijkheid N(soort,ev,neut) luchtvaartmaatschappijen N(soort,mv,neut) machtigen Adj(zelfst,stell,verv_mv) Gezagvoerder N(soort,ev,neut) afstand N(soort,ev,neut) regendruppels N(soort,mv,neut) vetstroken N(soort,mv,neut) Talloze Pron(onbep,neut,attr) getuigden V(intrans,ovt,1_of_2_of_3,mv) tbr N(soort,ev,neut) meubelstuk N(soort,ev,neut) Apple N(eigen,ev,neut) Bussum N(eigen,ev,neut) onaantastbaar Adj(attr,stell,onverv) jezuietenkoppen N(soort,mv,neut) Vliet N(eigen,ev,neut) gevoerd V(trans,verl_dw,onverv) inactiviteit N(soort,ev,neut) brandkasten N(soort,mv,neut) Natuurlijk Adj(adv,stell,onverv) M. N(eigen,ev,neut) bleekheid N(soort,ev,neut) reinigingsmiddel N(soort,ev,neut) apparaten N(soort,mv,neut) vult V(trans,ott,3,ev) ingang N(soort,ev,neut) opstand N(soort,ev,neut) Tussen Prep(voor) Belgie N(eigen,ev,neut) Gergweis N(eigen,ev,neut) bejaarde Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut) muurtje N(soort,ev,neut) dieren N(soort,mv,neut) energie N(soort,ev,neut) Vitus N(eigen,ev,neut) aanvaarding N(soort,ev,neut) broers N(soort,mv,neut) La N(eigen,ev,neut) Beiden Num(hoofd,bep,zelfst,verv_mv) geprobeerd V(hulp,verl_dw,onverv) pruimen V(trans,inf) vernietigende V(intrans,teg_dw,verv_neut) Le N(eigen,ev,neut) ideaal N(soort,ev,neut) douzaine N(soort,ev,neut) kunsthandelaren N(soort,mv,neut) helpt V(trans,ott,3,ev) V(intrans,ott,3,ev) opdracht N(soort,ev,neut) duren V(trans,inf) V(intrans,ott,1_of_2_of_3,mv) idealen N(soort,mv,neut) geniet V(trans,ott,3,ev) ongelukkig Adj(attr,stell,onverv) Adj(adv,stell,onverv) gemeente N(soort,ev,neut) swingt V(intrans,ott,3,ev) zingende V(intrans,teg_dw,verv_neut) Luns N(eigen,ev,neut) langzaam Adj(adv,stell,onverv) Adj(attr,stell,onverv) ongetwijfeld Adv(gew,geen_func,stell,onverv) dragen V(trans,inf) poes N(soort,ev,neut) puntjes N(soort,mv,neut) bakje N(soort,ev,neut) studenten N(soort,mv,neut) pasten V(intrans,ovt,1_of_2_of_3,mv) geantwoord V(trans,verl_dw,onverv) kleurvlakken N(soort,mv,neut) eilandjes N(soort,mv,neut) borduurschortje N(soort,ev,neut) economische Adj(attr,stell,verv_neut) bevruchting N(soort,ev,neut) Bartholomeusnacht N(eigen,ev,neut) Duitse Adj(attr,stell,verv_neut) Lloyd N(eigen,ev,neut) bepleiten V(trans,inf) Ma N(eigen,ev,neut) uitgegaan V(trans,verl_dw,onverv) clienten N(soort,mv,neut) country Misc(vreemd) taboe N(soort,ev,neut) ere N(soort,ev,neut) velde N(soort,ev,dat) erg Adj(adv,stell,onverv) Adj(attr,stell,onverv) N(soort,ev,neut) lekkere Adj(attr,stell,verv_neut) bestuursleden N(soort,mv,neut) wipte V(intrans,ovt,1_of_2_of_3,ev) aanboden V(trans,ovt,1_of_2_of_3,mv) werpen V(refl,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) blootleggen V(trans,inf) loopbaan N(soort,ev,neut) opgedrongen V(trans,verl_dw,onverv) kosak N(soort,ev,neut) Jongeren Adj(zelfst,vergr,verv_neut) veiligheidsredenen N(soort,mv,neut) York N(eigen,ev,neut) voorzitter N(soort,ev,neut) durft V(trans,ott,3,ev) noemt V(trans,ott,3,ev) lekkers N(soort,ev,neut) Marsiaanse Adj(attr,stell,verv_neut) verbrandingen N(soort,mv,neut) oplossingen N(soort,mv,neut) verrukkelijk Adj(attr,stell,onverv) Adj(adv,stell,onverv) personal Misc(vreemd) ten Prep(voor) rechtgebogen V(trans,verl_dw,onverv) metten N(soort,mv,neut) nabloeiertje N(soort,ev,neut) ter Prep(voor) Na Prep(voor) opgevouwen V(trans,verl_dw,onverv) collega's N(soort,mv,neut) opstapt V(intrans,ott,3,ev) Tegenover Prep(voor) heuvel N(soort,ev,neut) verantwoordelijkheidsbesef N(soort,ev,neut) opgebouwd V(trans,verl_dw,onverv) vuile Adj(attr,stell,verv_neut) onttrekken V(refl,inf) sober Adj(attr,stell,onverv) kneusjesservice N(soort,ev,neut) organisme N(soort,ev,neut) velen Num(hoofd,onbep,zelfst,stell,verv_mv) onderricht N(soort,ev,neut) snelde V(intrans,ovt,1_of_2_of_3,ev) P. N(eigen,ev,neut) secretaris-generaal N(soort,ev,neut) onderrichten V(trans,inf) beruchte Adj(attr,stell,verv_neut) nederlaag N(soort,ev,neut) Nu Adv(gew,aanw) slakkenfestijn N(soort,ev,neut) afgesloten V(trans,verl_dw,onverv) kunstgebit N(soort,ev,neut) keek V(intrans,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) omgaan V(intrans,inf) keel N(soort,ev,neut) bezitters N(soort,mv,neut) vreemde Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut) smullen V(intrans,inf) huize N(soort,ev,neut) springen V(intrans,inf) omgaat V(intrans,ott,3,ev) Theems N(eigen,ev,neut) keer N(soort,ev,neut) haarcreme N(soort,ev,neut) kees N(eigen,ev,neut) Ingeborg N(eigen,ev,neut) bouwden V(trans,ovt,1_of_2_of_3,mv) Of Conj(neven) Conj(onder,met_fin) Oh N(eigen,ev,neut) Int schelle Adj(attr,stell,verv_neut) amandelen N(soort,mv,neut) geboden V(trans,verl_dw,onverv) kregen V(trans,ovt,1_of_2_of_3,mv) Om Conj(onder,met_inf) Prep(voor) liggen V(intrans,ott,1_of_2_of_3,mv) V(hulp,inf) V(intrans,inf) Op Prep(voor) vrucht N(soort,ev,neut) dagen N(soort,mv,neut) ontbreken V(intrans,inf,subst) V(intrans,inf) Adj(attr,stell,onverv) V(intrans,ott,1_of_2_of_3,mv) overbevolking N(soort,ev,neut) Os N(eigen,ev,neut) bevruchte V(trans,verl_dw,verv_neut) Vrouwen N(soort,mv,neut) overbleven V(intrans,ovt,1_of_2_of_3,mv) koninklijk Adj(attr,stell,onverv) Wal N(eigen,ev,neut) rijdend V(trans,teg_dw,onverv) wijnkelder N(soort,ev,neut) theoloog N(soort,ev,neut) toeruikende V(intrans,teg_dw,verv_neut) normale Adj(attr,stell,verv_neut) beetje N(soort,ev,neut) horen V(trans,inf) V(trans,ott,1_of_2_of_3,mv) Was V(hulp_of_kopp,ovt,1_of_2_of_3,ev) Hoe Adv(gew,betr) spreken V(intrans,ott,1_of_2_of_3,mv) V(trans,inf) V(intrans,inf) V(trans,ott,1_of_2_of_3,mv) leden N(soort,mv,neut) Wat Pron(vrag,neut,attr) Pron(vrag,neut,zelfst) Pron(betr,neut,zelfst) sjieke Adj(attr,stell,verv_neut) droeg V(intrans,ovt,1_of_2_of_3,ev) opsporingswerk N(soort,ev,neut) arrogante Adj(attr,stell,verv_neut) conversatiezalen N(soort,mv,neut) Hot N(eigen,ev,neut) Arpege N(eigen,ev,neut) Rinus N(eigen,ev,neut) waarschijnlijkheid N(soort,ev,neut) Nederlandse Adj(attr,stell,verv_neut) overreden V(trans,verl_dw,onverv) geval N(soort,ev,neut) linksom Adv(gew,geen_func,stell,onverv) stukje N(soort,ev,neut) afblijven V(intrans,inf) the Misc(vreemd) N(eigen,ev,neut) marges N(soort,mv,neut) klank N(soort,ev,neut) zusjes N(soort,mv,neut) zorgelijke Adj(attr,stell,verv_neut) prinselijke Adj(attr,stell,verv_neut) besturen N(soort,mv,neut) verminkende V(intrans,teg_dw,verv_neut) tegelijk Adv(gew,geen_func,stell,onverv) kortgeschoren V(trans,verl_dw,onverv) Dalkonschildje N(soort,ev,neut) beelden V(trans,inf) provincie N(soort,ev,neut) patronen N(soort,mv,neut) Freud N(eigen,ev,neut) verheugen V(refl,inf) vergaderingen N(soort,mv,neut) land N(soort,ev,neut) coupe N(soort,ev,neut) Teken V(trans,imp) lang Adj(adv,stell,onverv) Adj(attr,stell,onverv) Sint N(eigen,ev,gen) vriend N(soort,ev,neut) personen N(soort,mv,neut) droge Adj(attr,stell,verv_neut) specialisten N(soort,mv,neut) KNVB N(eigen,ev,neut) slijter N(soort,ev,neut) Vraag N(soort,ev,neut) eigenlijk Adj(adv,stell,onverv) leeftijdsgrens N(soort,ev,neut) waren V(hulp_of_kopp,ovt,1_of_2_of_3,mv) V(intrans,ovt,1_of_2_of_3,mv) Newsweek N(eigen,ev,neut) middeleeuwen N(eigen,mv,neut) schamel Adj(attr,stell,onverv) feitjes N(soort,mv,neut) ondergaan V(trans,verl_dw,onverv) Coast Misc(vreemd) schamen V(refl,inf) bestuderen V(trans,inf) stenen N(soort,mv,neut) Adj(attr,stell,onverv) Eitje N(eigen,ev,neut) Cremer-achtig Adj(attr,stell,onverv) e.v.a. Pron(onbep,neut,zelfst) vertrouwde Adj(attr,stell,verv_neut) V(trans,ovt,1_of_2_of_3,ev) V(trans,verl_dw,verv_neut) kapitein N(soort,ev,neut) noten N(soort,mv,neut) vocht N(soort,ev,neut) gebonden V(trans,verl_dw,onverv) geprezen V(trans,verl_dw,onverv) vervolgde V(trans,ovt,1_of_2_of_3,ev) Officieel Adj(adv,stell,onverv) Lange Adj(attr,stell,verv_neut) alvorens Conj(onder,met_inf) onafhankelijke Adj(attr,stell,verv_neut) rockers N(soort,mv,neut) vuiligheid N(soort,ev,neut) tegenstelling N(soort,ev,neut) Vrouw N(soort,ev,neut) voorman N(soort,ev,neut) glimlachend V(intrans,teg_dw,onverv) Langs Prep(voor) beschrijft V(trans,ott,3,ev) kinderen N(soort,mv,neut) fragiel Adj(attr,stell,onverv) opschik N(soort,ev,neut) kringen N(soort,mv,neut) onverdroten Adj(adv,stell,onverv) Gunnersbury N(eigen,ev,neut) Wel Adv(gew,geen_func,stell,onverv) Int openbaart V(refl,ott,3,ev) pols N(soort,ev,neut) verfrissend V(intrans,teg_dw,onverv) driehoek N(soort,ev,neut) Vormen V(trans,ott,1_of_2_of_3,mv) Wet N(eigen,ev,neut) ertoe Adv(pron,onbep) vertrouwen V(intrans,inf) V(trans,inf) N(soort,ev,neut) gehaald V(trans,verl_dw,onverv) mineur Adv(gew,geen_func,stell,onverv) Te Prep(voor_inf) rijders N(soort,mv,neut) lippenstift N(soort,ev,neut) Sukarno N(eigen,ev,neut) financieringsprobleem N(soort,ev,neut) magere Adj(attr,stell,verv_neut) zakjes N(soort,mv,neut) hoofdpijn N(soort,ev,neut) vrijmoedig Adj(adv,stell,onverv) almaar Adv(gew,geen_func,stell,onverv) vuur N(soort,ev,neut) geven V(trans,inf) V(trans,ott,1_of_2_of_3,mv) archeologische Adj(attr,stell,verv_neut) geschakeerd V(trans,verl_dw,onverv) gestuurd V(trans,verl_dw,onverv) ellende N(soort,ev,neut) reacties N(soort,mv,neut) weerszijden N(soort,mv,neut) Bart N(eigen,ev,neut) Aziatische Adj(attr,stell,verv_neut) Goudse Adj(attr,stell,verv_neut) knappe Adj(attr,stell,verv_neut) geleund V(intrans,verl_dw,onverv) Canadezen N(soort,mv,neut) winkeltje N(soort,ev,neut) pond N(soort,ev,neut) Ruyterkade N(eigen,ev,neut) VN N(eigen,ev,neut) W. N(eigen,ev,neut) Weatherby N(eigen,ev,neut) vakantie N(soort,ev,neut) parfumerie N(soort,ev,neut) Kleuren N(soort,mv,neut) Uw Pron(bez,2,ev,neut,attr) begroeten V(trans,ott,1_of_2_of_3,mv) Pisai N(eigen,ev,neut) vuist N(soort,ev,neut) pornograaf N(soort,ev,neut) zwangere Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut) Speenhoff N(eigen,ev,neut) ontevreden Adj(attr,stell,onverv) beeldje N(soort,ev,neut) Uiteraard Adv(gew,geen_func,stell,onverv) acteren V(intrans,inf) WE Pron(per,1,mv,nom) opgaf V(trans,ovt,1_of_2_of_3,ev) Hun Pron(bez,3,mv,neut,attr) roastbeef N(soort,ev,neut) vergelijken V(trans,inf) thermosfles N(soort,ev,neut) diertjes N(soort,mv,neut) huwelijksleven N(soort,ev,neut) snelle Adj(attr,stell,verv_neut) nesten N(soort,mv,neut) kroniek N(soort,ev,neut) proefschrift N(soort,ev,neut) menopauze N(soort,ev,neut) Ojik N(eigen,ev,neut) zicht N(soort,ev,neut) verwisseld V(trans,verl_dw,onverv) bolhamer N(soort,ev,neut) meisjesachtige Adj(attr,stell,verv_neut) liftbel N(soort,ev,neut) gluiperigheid N(soort,ev,neut) Dergelijke Pron(aanw,dat,attr) poot N(soort,ev,neut) heel-jonge Adj(attr,stell,verv_neut) ideale Adj(attr,stell,verv_neut) officials N(soort,mv,neut) mengden V(refl,ovt,1_of_2_of_3,mv) vrouwenarts N(soort,ev,neut) We Pron(per,1,mv,nom) last N(soort,ev,neut) content Adj(attr,stell,onverv) gaandeweg Adv(gew,geen_func,stell,onverv) vriest V(trans,ott,3,ev) winterse Adj(attr,stell,verv_neut) foto's N(soort,mv,neut) Bijvoorbeeld Adv(gew,geen_func,stell,onverv) chagrijnig Adj(attr,stell,onverv) Rizzio N(eigen,ev,neut) Wie Pron(betr,neut,zelfst) Pron(vrag,neut,attr) inkonsekwent Adj(attr,stell,onverv) toe Prep(comb) Adv(gew,geen_func,stell,onverv) Adv(deel_v) Adv(deel_adv) Wij Pron(per,1,mv,nom) tof Adj(attr,stell,onverv) twintigste Num(rang,bep,attr,onverv) opgevroren V(intrans,verl_dw,onverv) suggesties N(soort,mv,neut) Wil V(hulp,ott,3,ev) N(eigen,ev,neut) V(intrans,ott,3,ev) V(hulp,ott,2,ev) Wim N(eigen,ev,neut) begaafdheden N(soort,mv,neut) Afwezig Adj(adv,stell,onverv) vanzelf Adv(gew,geen_func,stell,onverv) ton N(soort,ev,neut) top N(soort,ev,neut) gitaren N(soort,mv,neut) dochter N(soort,ev,neut) onaangenaam Adj(attr,stell,onverv) kent V(trans,ott,3,ev) V(trans,ott,2,ev) exclusieve Adj(attr,stell,verv_neut) tot Prep(voor) Conj(onder,met_fin) Adv(deel_v) Volvo N(soort,ev,neut) Brengt V(trans,ott,3,ev) Ford N(eigen,ev,neut) bevrijdende V(intrans,teg_dw,verv_neut) Keizer N(eigen,ev,neut) geweten V(trans,verl_dw,onverv) langzame Adj(attr,stell,verv_neut) uitgebleekt V(intrans,verl_dw,onverv) don't Misc(vreemd) vitaliteit N(soort,ev,neut) Callas N(eigen,ev,neut) vrolijk Adj(adv,stell,onverv) Welke Pron(vrag,neut,zelfst) geweest V(hulp_of_kopp,verl_dw,onverv) V(intrans,verl_dw,onverv) herademing N(soort,ev,neut) lounge N(soort,ev,neut) gewaarborgd V(trans,verl_dw,onverv) jonge Adj(attr,stell,verv_neut) N(eigen,ev,neut) doorliep V(trans,ovt,1_of_2_of_3,ev) krankzinnig Adj(attr,stell,onverv) drong V(intrans,ovt,1_of_2_of_3,ev) Sydney N(eigen,ev,neut) Jiffy-7 N(eigen,ev,neut) hoogtepunt N(soort,ev,neut) beklemtonen V(trans,ott,1_of_2_of_3,mv) openhartig Adj(adv,stell,onverv) Meisjes N(soort,mv,neut) vertrek N(soort,ev,neut) bazig Adj(attr,stell,onverv) hoeden N(soort,mv,neut) volstrekt Adj(adv,stell,onverv) meesterwerk N(soort,ev,neut) free-lance Adj(attr,stell,onverv) inwonende V(intrans,teg_dw,verv_neut) Clos N(eigen,ev,neut) daarnet Adv(gew,aanw) strooie Adj(attr,stell,verv_neut) afgedaan V(intrans,verl_dw,onverv) port N(soort,ev,neut) geventileerd V(trans,verl_dw,onverv) carnavalskapel N(soort,ev,neut) L'hirondelle N(eigen,ev,neut) nummerbordje N(soort,ev,neut) motorfederatie N(soort,ev,neut) warme Adj(attr,stell,verv_neut) droog Adj(attr,stell,onverv) Ze Pron(per,3,ev_of_mv,nom) posten N(soort,mv,neut) V(intrans,inf) gewoonlijk Adj(adv,stell,onverv) leefgemeenschappen N(soort,mv,neut) Gedurende Prep(voor) aanstelling N(soort,ev,neut) geruchten N(soort,mv,neut) afgelopen V(intrans,verl_dw,onverv) pose N(soort,ev,neut) droom N(soort,ev,neut) V(intrans,ott,1,ev) barbecuehoek N(soort,ev,neut) Foto N(soort,ev,neut) vriendenkring N(soort,ev,neut) veertien Num(hoofd,bep,attr,onverv) Zo Adv(gew,aanw) Conj(onder,met_fin) procent N(soort,ev,neut) doodslag N(soort,ev,neut) onblusbare Adj(attr,stell,verv_neut) sekse N(soort,ev,neut) transvestisme N(soort,ev,neut) Yale N(eigen,ev,neut) omdat Conj(onder,met_fin) huwelijkse Adj(attr,stell,verv_neut) spannende Adj(attr,stell,verv_neut) kamers N(soort,mv,neut) post N(soort,ev,neut) bepaald Adv(gew,geen_func,stell,onverv) Pron(onbep,neut,attr) V(trans,verl_dw,onverv) glaasjes N(soort,mv,neut) vrouwenzaken N(soort,mv,neut) automobilist N(soort,ev,neut) vierde Num(rang,bep,attr,onverv) karaat N(soort,ev,neut) vormden V(trans,ovt,1_of_2_of_3,mv) IEDEREEN Pron(onbep,neut,zelfst) brede Adj(attr,stell,verv_neut) rauwe Adj(attr,stell,verv_neut) regulator N(soort,ev,neut) roltrap N(soort,ev,neut) bepaalt V(trans,ott,3,ev) Amsterdam N(eigen,ev,neut) volslanke Adj(attr,stell,verv_neut) meubel N(soort,ev,neut) leerling-verpleegster N(soort,ev,neut) omgang N(soort,ev,neut) plukte V(trans,ovt,1_of_2_of_3,ev) onmogelijk Adj(attr,stell,onverv) Adj(adv,stell,onverv) kerk N(soort,ev,neut) kern N(soort,ev,neut) bergmassief N(soort,ev,neut) breed Adj(adv,stell,onverv) Adj(attr,stell,onverv) Grimaldi N(eigen,ev,neut) ikonen N(soort,mv,neut) kennelijk Adj(adv,stell,onverv) eenieder Pron(onbep,neut,zelfst) strookt V(intrans,ott,3,ev) oceaan N(soort,ev,neut) paar N(soort,ev,neut) razendsnel Adj(attr,stell,onverv) doorgebracht V(trans,verl_dw,onverv) Inderdaad Adv(gew,geen_func,stell,onverv) Welnu Int anti Prep(voor) Oorspronkelijk Adj(adv,stell,onverv) zwembassin N(soort,ev,neut) Marceline N(eigen,ev,neut) bewuste Adj(attr,stell,verv_neut) aftakeling N(soort,ev,neut) mooie Adj(attr,stell,verv_neut) copulerend V(intrans,teg_dw,onverv) factor N(soort,ev,neut) veelal Adv(gew,geen_func,stell,onverv) pour Misc(vreemd) veroorzaken V(trans,inf) voorraad N(soort,ev,neut) vergist V(refl,imp) V(refl,verl_dw,onverv) V(refl,ott,3,ev) pogingen N(soort,mv,neut) kleinbedrijf N(soort,ev,neut) moois Adj(zelfst,stell,verv_gen) boenen V(trans,inf) Uitvoerig Adj(adv,stell,onverv) mogelijkheden N(soort,mv,neut) werkers N(soort,mv,neut) vragen V(trans,inf) V(intrans,inf) N(soort,mv,neut) ingenieur N(soort,ev,neut) rekent V(trans,ott,3,ev) voren Adv(gew,geen_func,stell,onverv) verdragen V(trans,inf) N(soort,mv,neut) beloften N(soort,mv,neut) uitkomen V(trans,inf) Aangezien Conj(onder,met_fin) begrepen V(trans,verl_dw,onverv) werkten V(intrans,ovt,1_of_2_of_3,mv) meeste Num(hoofd,onbep,attr,overtr,verv_neut) francs N(soort,mv,neut) bijna Adv(gew,geen_func,stell,onverv) koffers N(soort,mv,neut) narcist N(soort,ev,neut) schadelijk Adj(attr,stell,onverv) snelst Adj(adv,vergr,onverv) vergulde V(trans,verl_dw,verv_neut) idioot Adj(attr,stell,onverv) morgen Adv(gew,geen_func,stell,onverv) N(soort,ev,neut) NCRV N(eigen,ev,neut) besprak V(trans,ovt,1_of_2_of_3,ev) stroomt V(intrans,ott,3,ev) hoedje N(soort,ev,neut) western Misc(vreemd) aansprakelijk Adj(attr,stell,onverv) douche N(soort,ev,neut) ritme N(soort,ev,neut) alleen Adv(gew,geen_func,stell,onverv) Adj(attr,stell,onverv) hechtdraden N(soort,mv,neut) beurtelings Adj(adv,stell,onverv) pikante Adj(attr,stell,verv_neut) gegrillde V(trans,verl_dw,verv_neut) oerwoud N(soort,ev,neut) omslaan V(intrans,inf) geestdriftig Adj(adv,stell,onverv) beschikt V(intrans,ott,3,ev) onwelzijn N(soort,ev,neut) nieuwe Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut) lopende V(intrans,teg_dw,verv_neut) studerend V(intrans,teg_dw,onverv) keus N(soort,ev,neut) afschuw N(soort,ev,neut) Club N(soort,ev,neut) nieuws N(soort,ev,neut) Adj(attr,stell,verv_gen) ondergang N(soort,ev,neut) vliegtuigen N(soort,mv,neut) voeten N(soort,mv,neut) beker N(soort,ev,neut) herhaalde V(trans,ovt,1_of_2_of_3,ev) hotels N(soort,mv,neut) Limmel N(eigen,ev,neut) kleinvee N(soort,ev,neut) Newyorkse Adj(attr,stell,verv_neut) Wien Misc(vreemd) omarming N(soort,ev,neut) zoveel-duizend Num(hoofd,bep,zelfst,onverv) Buffalo N(eigen,ev,neut) gelegen V(intrans,verl_dw,onverv) Boyfriend N(eigen,ev,neut) verkregen V(trans,verl_dw,onverv) vertoonden V(trans,ovt,1_of_2_of_3,mv) middeleeuwse Adj(attr,stell,verv_neut) bedreigen V(trans,ott,1_of_2_of_3,mv) koste N(soort,ev,dat) kaarten N(soort,mv,neut) benaderd V(trans,verl_dw,onverv) brein N(soort,ev,neut) beklom V(trans,ovt,1_of_2_of_3,ev) algemeen N(soort,ev,neut) prostitutie N(soort,ev,neut) goedkopere Adj(attr,vergr,verv_neut) Lehzen N(eigen,ev,neut) Comedie N(eigen,ev,neut) bungalowachtige Adj(attr,stell,verv_neut) facetten N(soort,mv,neut) beleving N(soort,ev,neut) kwestie N(soort,ev,neut) werkloos Adj(attr,stell,onverv) vloed N(soort,ev,neut) portemonnaie N(soort,ev,neut) vorig Adj(attr,stell,onverv) vliegtocht N(soort,ev,neut) af Adv(deel_v) Prep(comb) Adv(deel_adv) Adv(gew,geen_func,stell,onverv) dametjes N(soort,mv,neut) bijrolletje N(soort,ev,neut) al Adv(gew,geen_func,stell,onverv) Pron(onbep,neut,attr) Conj(onder,met_fin) breedste Adj(attr,overtr,verv_neut) uurtje N(soort,ev,neut) vloer N(soort,ev,neut) toch Adv(gew,geen_func,stell,onverv) tevergeefs Adj(attr,stell,onverv) verlegd V(trans,verl_dw,onverv) as N(soort,ev,neut) at V(trans,ovt,1_of_2_of_3,ev) honderden Num(hoofd,bep,attr,onverv) aardiger Adj(attr,vergr,onverv) getallen N(soort,mv,neut) griekse Adj(attr,stell,verv_neut) allermoeilijkste Adj(attr,overtr,verv_neut) Komkommerkasteeltje N(eigen,ev,neut) soloplaten N(soort,mv,neut) Nooit Adv(gew,onbep) passend V(intrans,teg_dw,onverv) verknald V(trans,verl_dw,onverv) bossen N(soort,mv,neut) bedrijfsleven N(soort,ev,neut) vroegen V(trans,ovt,1_of_2_of_3,mv) hemel N(soort,ev,neut) borstelen V(intrans,inf) baseren V(trans,inf) Hermien N(eigen,ev,neut) vroeger Adj(adv,vergr,onverv) Adj(attr,vergr,onverv) bevestigend V(intrans,teg_dw,onverv) opgevangen V(trans,verl_dw,onverv) vermindering N(soort,ev,neut) kende V(trans,ovt,1_of_2_of_3,ev) extract N(soort,ev,neut) Zeventig Num(hoofd,bep,attr,onverv) zomerbloemen N(soort,mv,neut) zulk Pron(aanw,neut,attr) vijfhonderd Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) aanstond V(intrans,ovt,1_of_2_of_3,ev) Giuliano N(eigen,ev,neut) complexen N(soort,mv,neut) gestold V(intrans,verl_dw,onverv) Zodra Conj(onder,met_fin) mooiste Adj(attr,overtr,verv_neut) VVD'er N(soort,ev,neut) Parijs N(eigen,ev,neut) funktie N(soort,ev,neut) visites N(soort,mv,neut) prominentenprocessie N(soort,ev,neut) Twintig Num(hoofd,bep,attr,onverv) touringcar N(soort,ev,neut) mejuffrouw N(soort,ev,neut) verafschuwden V(trans,ovt,1_of_2_of_3,mv) waterstraal N(soort,ev,neut) februari N(eigen,ev,neut) rechtsbijstand N(soort,ev,neut) televisie-uitzending N(soort,ev,neut) bankschroeven N(soort,mv,neut) cm N(soort,ev,neut) Geschikt Adj(attr,stell,onverv) ongehoorzaamheid N(soort,ev,neut) dat-ie Conj(onder,met_fin) zelfvertrouwen N(soort,ev,neut) duisternis N(soort,ev,neut) armbanden N(soort,mv,neut) ontzaglijk Adj(adv,stell,onverv) voetbalwedstrijd N(soort,ev,neut) toen Conj(onder,met_fin) Adv(gew,geen_func,stell,onverv) Adv(gew,aanw) onaangename Adj(attr,stell,verv_neut) gehad V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv) brandweerman N(soort,ev,neut) wissel N(soort,ev,neut) huurbescherming N(soort,ev,neut) redeneren V(trans,ott,1_of_2_of_3,mv) karate-demonstratie N(soort,ev,neut) intriges N(soort,mv,neut) Kesteren N(eigen,ev,neut) planning N(soort,ev,neut) fluisterend V(intrans,teg_dw,onverv) zeventien Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) illegale Adj(attr,stell,verv_neut) filmen V(trans,inf) inspecteert V(trans,ott,3,ev) de Art(bep,zijd_of_mv,neut) V(intrans,inf) N(eigen,ev,neut) N(soort,ev,neut) bijv. Adv(gew,geen_func,stell,onverv) di N(eigen,ev,neut) rococo N(soort,ev,neut) Bruessing N(eigen,ev,neut) opgeruimd V(trans,verl_dw,onverv) kleurenprogramma's N(soort,mv,neut) platina N(soort,ev,neut) spanningen N(soort,mv,neut) afweet V(intrans,ott,3,ev) Nazare N(eigen,ev,neut) schortje N(soort,ev,neut) du N(eigen,ev,neut) Misc(vreemd) constateert V(trans,ott,3,ev) Kogelenbergh N(eigen,ev,neut) narrig Adj(attr,stell,onverv) Wijn N(eigen,ev,neut) N(soort,ev,neut) wonderen N(soort,mv,neut) ener Art(onbep,zijd,gen) hoofdrol N(soort,ev,neut) hyperradio N(soort,ev,neut) jubileum N(soort,ev,neut) margarinefabriek N(soort,ev,neut) schillen V(trans,inf) Nerich N(eigen,ev,neut) prettig Adj(attr,stell,onverv) wortelkluit N(soort,ev,neut) gedoofd V(trans,verl_dw,onverv) uitwerken V(trans,ott,1_of_2_of_3,mv) V(trans,inf,subst) aanvaard V(trans,verl_dw,onverv) ei N(soort,ev,neut) duizenden Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) inteelt N(soort,ev,neut) en Conj(neven) N(eigen,ev,neut) Num(hoofd,bep,attr,onverv) Misc(vreemd) John N(eigen,ev,neut) vormt V(trans,ott,3,ev) V(refl,ott,3,ev) grenslandbewoner N(soort,ev,neut) vluchtig Adj(attr,stell,onverv) safaribus N(soort,ev,neut) doorgronden V(trans,inf) er Adv(gew,er) Adv(pron,er) es Adv(gew,geen_func,stell,onverv) moord N(soort,ev,neut) meenden V(trans,ovt,1_of_2_of_3,mv) fabrikanten N(soort,mv,neut) ploegend V(intrans,teg_dw,onverv) liederen N(soort,mv,neut) augustus N(eigen,ev,neut) 50.000 Num(hoofd,bep,attr,onverv) opkijken V(intrans,inf) argumentatie N(soort,ev,neut) verschrompelt V(intrans,ott,3,ev) hechtenis N(soort,ev,neut) pakt V(trans,ott,3,ev) chignon N(soort,ev,neut) Sebastian N(eigen,ev,neut) spoorverbinding N(soort,ev,neut) Garbo N(eigen,ev,neut) gezeurd V(intrans,verl_dw,onverv) herbergen V(trans,ott,1_of_2_of_3,mv) Italiaan N(soort,ev,neut) onsterfelijkheid N(soort,ev,neut) Georges N(eigen,ev,neut) blikschaar N(soort,ev,neut) abonnees N(soort,mv,neut) stewardess N(soort,ev,neut) typisch Adj(attr,stell,onverv) Adj(adv,stell,onverv) aanwezigheid N(soort,ev,neut) ga V(intrans,ott,1,ev) V(hulp,ott,1,ev) V(hulp,imp) V(intrans,imp) V(hulp,ott,2,ev) zonsondergang N(soort,ev,neut) Baule N(eigen,ev,neut) dikwijls Adv(gew,geen_func,stell,onverv) partnerruil N(soort,ev,neut) rechthoekige Adj(attr,stell,verv_neut) laten V(hulp,inf) V(trans,inf) V(intrans,ott,1_of_2_of_3,mv) V(hulp,ott,1_of_2_of_3,mv) handelt V(intrans,ott,3,ev) naakt Adj(attr,stell,onverv) N(soort,ev,neut) later Adj(adv,vergr,onverv) shock N(soort,ev,neut) Dibs N(eigen,ev,neut) realiseert V(trans,ott,3,ev) balde V(trans,ovt,1_of_2_of_3,ev) kervel N(soort,ev,neut) dichtbevolkte Adj(attr,stell,verv_neut) hoofden N(soort,mv,neut) restaurant N(soort,ev,neut) Route N(soort,ev,neut) reuma N(soort,ev,neut) lichte Adj(attr,stell,verv_neut) he Int Kersten N(eigen,ev,neut) trappen N(soort,mv,neut) V(intrans,inf) regentijd N(soort,ev,neut) overwogen V(trans,inf) vierkant Adj(attr,stell,onverv) beeindigen V(trans,inf) flo N(soort,ev,neut) route-kaart N(soort,ev,neut) enig Pron(onbep,neut,attr) Adj(attr,stell,onverv) make-up-artikelen N(soort,mv,neut) beantwoord V(trans,verl_dw,onverv) Slick N(eigen,ev,neut) v.w.o. N(soort,ev,neut) stofzuigen V(intrans,inf,subst) zonnebad N(soort,ev,neut) pand N(soort,ev,neut) duivel N(soort,ev,neut) Ashenbach N(eigen,ev,neut) slacht N(soort,ev,neut) kommetje N(soort,ev,neut) kunstmatig Adj(adv,stell,onverv) Terminus N(eigen,ev,neut) Wilde N(eigen,ev,neut) V(hulp,ovt,1_of_2_of_3,ev) prestatiemoraal N(soort,ev,neut) kleurentelevisie N(soort,ev,neut) schuurpapier N(soort,ev,neut) opentrekken V(trans,inf,subst) ie Pron(per,3,ev,nom) ingreep N(soort,ev,neut) deksel N(soort,ev,neut) ii N(eigen,ev,neut) ik Pron(per,1,ev,nom) im Misc(vreemd) in Prep(voor) Adv(deel_v) Prep(comb) Adv(deel_adv) N(eigen,ev,neut) Adv(gew,geen_func,stell,onverv) roodbruine Adj(attr,stell,verv_neut) beroep N(soort,ev,neut) redelijk Adj(attr,stell,onverv) is V(hulp_of_kopp,ott,3,ev) V(intrans,ott,3,ev) V(hulp_of_kopp,ovt,1_of_2_of_3,ev) it Misc(vreemd) trouwdag N(soort,ev,neut) Paulus N(eigen,ev,neut) iv Num(hoofd,bep,zelfst,onverv) handeling N(soort,ev,neut) baanvak N(soort,ev,neut) Teatro N(eigen,ev,neut) geplant V(trans,verl_dw,onverv) ja Int Kiupel N(eigen,ev,neut) negenentachtig Num(hoofd,bep,attr,onverv) Markovic N(eigen,ev,neut) je Pron(onbep,neut,zelfst) Pron(per,2,ev,dat_of_acc) Pron(per,2,ev,nom) Pron(ref,2,ev) Pron(bez,2,ev,neut,attr) receptie-ervaringen N(soort,mv,neut) Zuid-Limburg N(eigen,ev,neut) versterk V(trans,ott,2,ev) Noord N(eigen,ev,neut) Mrs. N(eigen,ev,neut) trotse Adj(attr,stell,verv_neut) tolk N(soort,ev,neut) Vrijwording N(soort,ev,neut) meisje N(soort,ev,neut) papa N(soort,ev,neut) luider Adj(adv,vergr,onverv) levensechter Adj(attr,vergr,onverv) blokkeren V(trans,inf) Opheusden N(eigen,ev,neut) stevige Adj(attr,stell,verv_neut) overtuiging N(soort,ev,neut) verkondigt V(trans,ott,3,ev) Rijndelta N(soort,ev,neut) opgepepte V(trans,verl_dw,verv_neut) sextant N(eigen,ev,neut) Hermine N(eigen,ev,neut) onderbroken V(trans,verl_dw,onverv) museum N(soort,ev,neut) verlept V(intrans,verl_dw,onverv) stadswijk N(soort,ev,neut) noemende V(refl,teg_dw,verv_neut) Weyden N(eigen,ev,neut) Jong N(eigen,ev,neut) leerschool N(soort,ev,neut) blanke Adj(attr,stell,verv_neut) ethisch Adj(adv,stell,onverv) kilogram N(soort,ev,neut) gestaan V(intrans,verl_dw,onverv) km N(soort,ev,neut) 1000 Num(hoofd,bep,attr,onverv) argumenten N(soort,mv,neut) for N(eigen,ev,neut) Brigitte N(eigen,ev,neut) ongetrouwd Adj(attr,stell,onverv) m2 N(soort,ev,neut) zuur N(soort,ev,neut) Adj(attr,stell,onverv) Stieler N(eigen,ev,neut) spelend V(intrans,teg_dw,onverv) Doortje N(eigen,ev,neut) annuleren V(trans,inf) beloofd V(trans,verl_dw,onverv) aanduiding N(soort,ev,neut) Elysee-Montmartre N(eigen,ev,neut) niet Adv(gew,geen_func,stell,onverv) villa N(soort,ev,neut) interessante Adj(attr,stell,verv_neut) le Misc(vreemd) stallen N(soort,mv,neut) onverdeeld Adj(attr,stell,onverv) lijken V(intrans,inf) beheerde V(trans,verl_dw,verv_neut) desniettemin Adv(gew,geen_func,stell,onverv) tong N(soort,ev,neut) Focke N(eigen,ev,neut) karper N(soort,ev,neut) L.P. N(soort,ev,neut) hoofdje N(soort,ev,neut) Michels N(eigen,ev,neut) drang N(soort,ev,neut) organisatieschema N(soort,ev,neut) zeventiende Num(rang,bep,attr,onverv) Roger N(eigen,ev,neut) drank N(soort,ev,neut) oostelijke Adj(attr,stell,verv_neut) bezet V(trans,verl_dw,onverv) onafzienbare Adj(attr,stell,verv_neut) fatsoen N(soort,ev,neut) Dover N(eigen,ev,neut) park N(soort,ev,neut) vaklui N(soort,mv,neut) ma N(soort,ev,neut) wijzigingen N(soort,mv,neut) me Pron(per,1,ev,dat_of_acc) Pron(ref,1,ev) part N(soort,ev,neut) politieradio's N(soort,mv,neut) mm N(soort,ev,neut) berichten N(soort,mv,neut) pertinent Adj(adv,stell,onverv) genodigden V(trans,verl_dw,verv_mv) koene Adj(attr,stell,verv_neut) toon N(soort,ev,neut) stonden V(intrans,ovt,1_of_2_of_3,mv) trouwden V(intrans,ovt,1_of_2_of_3,mv) raampje N(soort,ev,neut) klanten N(soort,mv,neut) bladzijde N(soort,ev,neut) aansmeert V(trans,ott,3,ev) na Prep(voor) Adv(deel_v) Adv(gew,geen_func,stell,onverv) hangt V(intrans,ott,3,ev) Geuzelambiek N(soort,ev,neut) drie Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) landjonker N(soort,ev,neut) past V(intrans,ott,3,ev) maatschappijkritiek N(soort,ev,neut) degene Pron(aanw,neut,zelfst) merkwaardigste Adj(zelfst,overtr,verv_neut) dochters N(soort,mv,neut) patient N(soort,ev,neut) Brinkers N(eigen,ev,neut) 40ste Num(rang,bep,attr,onverv) nu Adv(gew,aanw) Adv(gew,geen_func,stell,onverv) Conj(onder,met_fin) zwetende V(intrans,teg_dw,verv_neut) mixer N(soort,ev,neut) carriere N(soort,ev,neut) makeup N(soort,ev,neut) turfmolm N(soort,ev,neut) onvoorbereid Adj(attr,stell,onverv) bezoeken V(trans,inf) V(trans,inf,subst) ingewikkeldheid N(soort,ev,neut) of Conj(neven) Conj(onder,met_fin) N(eigen,ev,neut) Misc(vreemd) pats Int oh Int shooter N(eigen,ev,neut) uitingen N(soort,mv,neut) aardappels N(soort,mv,neut) om Conj(onder,met_inf) Prep(voor) Adv(deel_adv) Prep(comb) Adv(deel_v) bijbehorend V(intrans,teg_dw,onverv) opgelopen V(trans,verl_dw,onverv) op Prep(voor) Adv(deel_adv) Adv(gew,geen_func,stell,onverv) N(eigen,ev,neut) Prep(achter) Adv(deel_v) volmaakte Adj(attr,stell,verv_neut) twijfels N(soort,mv,neut) naast Prep(voor) Adv(deel_adv) gedoopt V(trans,verl_dw,onverv) eruit Adv(pron,onbep) werkt V(intrans,ott,3,ev) gunt V(trans,ott,2,ev) ieder Pron(onbep,neut,attr) Pron(onbep,neut,zelfst) Verdaasdonk N(eigen,ev,neut) burgemeestersketen N(soort,ev,neut) overgaat V(intrans,ott,3,ev) dansend V(intrans,teg_dw,onverv) voorstadje N(soort,ev,neut) Marechal Misc(vreemd) stuurkolom N(soort,ev,neut) Ina N(eigen,ev,neut) stinkt V(intrans,ott,3,ev) Gegeneerd V(trans,verl_dw,onverv) Hoogheid N(soort,ev,neut) sexblad N(soort,ev,neut) bewindsman N(soort,ev,neut) Okay Int Popmuziek N(eigen,ev,neut) Tellenbach N(eigen,ev,neut) onverklaarbare Adj(attr,stell,verv_neut) vertoond V(trans,verl_dw,onverv) geslachtsverkeer N(soort,ev,neut) vleesgeworden Adj(attr,stell,onverv) Zwitserland N(eigen,ev,neut) spelers N(soort,mv,neut) verwijdt V(trans,ott,3,ev) orgasme N(soort,ev,neut) arrangementen N(soort,mv,neut) verveelde V(refl,ovt,1_of_2_of_3,ev) paus N(soort,ev,neut) ernstig Adj(adv,stell,onverv) Adj(attr,stell,onverv) bijkomstigheden N(soort,mv,neut) Inn N(eigen,ev,neut) vuurrood Adj(attr,stell,onverv) Kerkwijk N(eigen,ev,neut) werkgevers N(soort,mv,neut) gejuich N(soort,ev,neut) Rafaels N(eigen,ev,gen) bezig Adj(attr,stell,onverv) vertoont V(trans,ott,3,ev) censuur N(soort,ev,neut) gereisd V(intrans,verl_dw,onverv) vlaag N(soort,ev,neut) wortelen N(soort,mv,neut) uitgeput V(trans,verl_dw,onverv) Meiden N(eigen,ev,neut) bezit N(soort,ev,neut) V(trans,ott,1,ev) V(trans,ott,3,ev) misdrijven N(soort,mv,neut) voegden V(refl,ovt,1_of_2_of_3,mv) doelbewust Adj(adv,stell,onverv) Buurser Adj(attr,stell,onverv) karakter N(soort,ev,neut) prominenten N(soort,mv,neut) Afrika N(eigen,ev,neut) hamvraag N(soort,ev,neut) beklemde V(trans,verl_dw,verv_neut) vernietigingstuig N(soort,ev,neut) toegeven V(intrans,ott,1_of_2_of_3,mv) schaamde V(refl,ovt,1_of_2_of_3,ev) fun N(eigen,ev,neut) dreven V(intrans,ovt,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv) datzelfde Pron(aanw,neut,attr) Willy N(eigen,ev,neut) publiekelijk Adv(gew,geen_func,stell,onverv) crimineel Adj(attr,stell,onverv) infectie N(soort,ev,neut) huwelijksboetiek N(soort,ev,neut) weet-jenog N(soort,ev,neut) niks Pron(onbep,neut,zelfst) koers N(soort,ev,neut) graniet N(soort,ev,neut) ezels N(soort,mv,neut) KAAS N(soort,ev,neut) leeft V(intrans,ott,3,ev) V(refl,ott,3,ev) schande N(soort,ev,neut) financieel Adj(adv,stell,onverv) toepassingen N(soort,mv,neut) ontwikkelingshulp N(soort,ev,neut) invoering N(soort,ev,neut) vezels N(soort,mv,neut) impuls N(soort,ev,neut) vleeskleurige Adj(attr,stell,verv_neut) winterhard Adj(attr,stell,onverv) imposante Adj(attr,stell,verv_neut) deinzen V(intrans,ott,1_of_2_of_3,mv) advertentie N(soort,ev,neut) uitgebuit V(trans,verl_dw,onverv) kweekkarper N(soort,ev,neut) L'Oreal N(eigen,ev,neut) dromen V(intrans,inf) N(soort,mv,neut) Jouw Pron(bez,2,ev,neut,attr) massale Adj(attr,stell,verv_neut) schuimig Adj(attr,stell,onverv) typeert V(trans,ott,3,ev) Schiphol N(eigen,ev,neut) ski-ongelukken N(soort,mv,neut) Paquet-lijn N(soort,ev,neut) verlegenheid N(soort,ev,neut) Interessant Adj(attr,stell,onverv) verhinderden V(trans,ovt,1_of_2_of_3,mv) Charlotte N(eigen,ev,neut) verouderde V(intrans,verl_dw,verv_neut) koest Adj(attr,stell,onverv) taak N(soort,ev,neut) etherische Adj(attr,stell,verv_neut) taal N(soort,ev,neut) uit Prep(voor) Prep(achter) Prep(comb) Adv(gew,geen_func,stell,onverv) Adv(deel_v) Adv(deel_adv) toezicht N(soort,ev,neut) Okee Int bijzonderheden N(soort,mv,neut) Dine N(eigen,ev,neut) betaling N(soort,ev,neut) lekker-losjes Adv(gew,geen_func,stell,onverv) getwist V(intrans,verl_dw,onverv) u. N(soort,ev,neut) Jaca N(eigen,ev,neut) rechtdoor Adv(gew,geen_func,stell,onverv) Rekels N(eigen,mv,neut) grappen N(soort,mv,neut) Trotter N(eigen,ev,neut) uitstek N(soort,ev,neut) uitstel N(soort,ev,neut) rimpels N(soort,mv,neut) Jack N(eigen,ev,neut) Vergelijking N(soort,ev,neut) aantijgingen N(soort,mv,neut) belemmering N(soort,ev,neut) regel N(soort,ev,neut) bekendheid N(soort,ev,neut) huurhuis N(soort,ev,neut) regen N(soort,ev,neut) Kortekaas N(eigen,ev,neut) touw N(soort,ev,neut) Smets N(eigen,ev,neut) foodstamps N(soort,mv,neut) ietwat Pron(onbep,neut,zelfst) Pron(onbep,neut,attr) zelfstandig Adj(adv,stell,onverv) Adj(attr,stell,onverv) geboeid V(trans,verl_dw,onverv) mooiere Adj(attr,vergr,verv_neut) opsommen V(trans,inf) te Prep(voor_inf) Prep(voor) Adv(gew,geen_func,stell,onverv) diamant N(soort,ev,neut) arbeidsuren N(soort,mv,neut) Hilversum N(eigen,ev,neut) verouderen V(intrans,inf) opgesmukte V(trans,verl_dw,verv_neut) Colignystraat N(eigen,ev,neut) huppelt V(intrans,ott,3,ev) beroepsarbeid N(soort,ev,neut) steeltje N(soort,ev,neut) verontrust V(trans,verl_dw,onverv) to Misc(vreemd) dansten V(intrans,ovt,1_of_2_of_3,mv) tv N(soort,ev,neut) Vorwarts N(eigen,ev,neut) Dios N(eigen,ev,neut) zaten V(intrans,ovt,1_of_2_of_3,mv) scene N(soort,ev,neut) uiting N(soort,ev,neut) langharige Adj(attr,stell,verv_neut) maken V(trans,inf) V(intrans,inf) V(refl,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) V(refl,inf) V(trans,inf,subst) zangvereniging N(soort,ev,neut) vanaf Adv(deel_adv) Prep(voor) oorhangers N(soort,mv,neut) ui N(soort,ev,neut) middengolf N(soort,ev,neut) zakken N(soort,mv,neut) V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) bezigheden N(soort,mv,neut) koksvirtuositeit N(soort,ev,neut) consultatiebureau N(soort,ev,neut) Paume N(eigen,ev,neut) litteken N(soort,ev,neut) strijd N(soort,ev,neut) tekenaar N(soort,ev,neut) produkten N(soort,mv,neut) uw Pron(bez,2,ev,neut,attr) witgoud N(soort,ev,neut) suite N(soort,ev,neut) strijk V(trans,imp) koperen Adj(attr,stell,onverv) forceren V(trans,inf) peinture Misc(vreemd) ... Punc(hellip) sokjes N(soort,mv,neut) voorzitster N(soort,ev,neut) groots Adj(attr,stell,onverv) trainer N(soort,ev,neut) onuitputtelijk Adj(attr,stell,onverv) Morgen Adv(gew,geen_func,stell,onverv) ingegoten V(trans,verl_dw,onverv) kostten V(trans,ovt,1_of_2_of_3,mv) elders Adv(gew,onbep) drs. N(eigen,ev,neut) geboekt V(trans,verl_dw,onverv) palet N(soort,ev,neut) Zorgelijk Adj(adv,stell,onverv) aaneenvlocht V(trans,ovt,1_of_2_of_3,ev) Alleen Adv(gew,geen_func,stell,onverv) Tholen N(eigen,ev,neut) gastvrouw-van-formaat N(soort,ev,neut) remmen N(soort,mv,neut) kindertjes N(soort,mv,neut) menukaart N(soort,ev,neut) valide Adj(attr,stell,onverv) Zillertal N(eigen,ev,neut) we Pron(per,1,mv,nom) Nieuwe Adj(attr,stell,verv_neut) N(eigen,ev,neut) keuken N(soort,ev,neut) paarden N(soort,mv,neut) verschijnselen N(soort,mv,neut) ex-kamerlid N(soort,ev,neut) Dirk N(eigen,ev,neut) opgedaan V(trans,verl_dw,onverv) gezagsverhoudingen N(soort,mv,neut) Voeten N(eigen,ev,neut) enz. Adv(gew,geen_func,stell,onverv) Italie N(eigen,ev,neut) houtskool N(soort,ev,neut) onderbuik N(soort,ev,neut) ettelijke Pron(onbep,neut,attr) goeien Adj(attr,stell,verv_neut) worteltjes N(soort,mv,neut) scheiding N(soort,ev,neut) koortsachtige Adj(attr,stell,verv_neut) samen Adv(gew,geen_func,stell,onverv) regio N(soort,ev,neut) typiste N(soort,ev,neut) establishment N(soort,ev,neut) misschien Adv(gew,geen_func,stell,onverv) gestudeerd V(intrans,verl_dw,onverv) geinspireerde V(trans,verl_dw,verv_neut) intimiteit N(soort,ev,neut) guitaar N(soort,ev,neut) siervogels N(soort,mv,neut) benedendek N(soort,ev,neut) geschat V(trans,verl_dw,onverv) pissen V(intrans,inf) Chaplin-imitatie N(soort,ev,neut) moordenaar N(soort,ev,neut) roomskatholiek Adj(attr,stell,onverv) Ijtunnel N(eigen,ev,neut) atoomduikboten N(soort,mv,neut) aankleden V(refl,inf) beschikbare Adj(attr,stell,verv_neut) pakhuis N(soort,ev,neut) overladen V(trans,verl_dw,onverv) panters N(soort,mv,neut) gekleed V(trans,verl_dw,onverv) opwekken V(trans,ott,1_of_2_of_3,mv) efficient Adj(adv,stell,onverv) treurig Adj(adv,stell,onverv) Adj(attr,stell,onverv) pin-upgirls N(soort,mv,neut) andermaal Adv(gew,geen_func,stell,onverv) verkouden Adj(attr,stell,onverv) herleidt V(trans,ott,3,ev) verlichte V(trans,verl_dw,verv_neut) verschrikkelijke Adj(attr,stell,verv_neut) Z'n Pron(bez,3,ev,neut,attr) onderdrukken V(trans,inf) huiselijke Adj(attr,stell,verv_neut) geldboete N(soort,ev,neut) lichamelijk Adj(attr,stell,onverv) Adj(adv,stell,onverv) PvdA N(eigen,ev,neut) financiele Adj(attr,stell,verv_neut) abortus N(soort,ev,neut) Platanov N(eigen,ev,neut) doperwtjes N(soort,mv,neut) verschrikkelijks Adj(attr,stell,verv_gen) geschiedenis N(soort,ev,neut) buien N(soort,mv,neut) behangen V(trans,inf,subst) lanceren V(trans,inf,subst) omgespoelde V(trans,verl_dw,verv_neut) vervelends V(intrans,teg_dw,verv_gen) produktie N(soort,ev,neut) Noel N(eigen,ev,neut) lichtgolven N(soort,mv,neut) commissaris N(soort,ev,neut) opruiend V(intrans,teg_dw,onverv) stollen V(intrans,inf) humeur N(soort,ev,neut) tonijn N(soort,ev,neut) Bingen N(eigen,ev,neut) alsmede Conj(neven) crisisjaren N(soort,mv,neut) Tuna N(eigen,ev,neut) geloofden V(trans,ovt,1_of_2_of_3,mv) slaaptabletten N(soort,mv,neut) bibberstem N(soort,ev,neut) stappers N(soort,mv,neut) borduurde V(intrans,ovt,1_of_2_of_3,ev) momenteel Adj(adv,stell,onverv) ze Pron(per,3,ev_of_mv,nom) Pron(per,3,ev_of_mv,dat_of_acc) stadscentrum N(soort,ev,neut) drug N(soort,ev,neut) maanwagentje N(soort,ev,neut) Aioli N(soort,ev,neut) wanneer Conj(onder,met_fin) Adv(gew,betr) druk Adj(attr,stell,onverv) Adj(adv,stell,onverv) N(soort,ev,neut) sjaaltje N(soort,ev,neut) penibel Adj(attr,stell,onverv) zo Adv(gew,aanw) uitgesproken V(trans,verl_dw,onverv) Adj(attr,stell,onverv) correcte Adj(attr,stell,verv_neut) gefokte V(trans,verl_dw,verv_neut) supervis N(soort,ev,neut) denkend V(intrans,teg_dw,onverv) overhandigde V(trans,ovt,1_of_2_of_3,ev) Fetter N(eigen,ev,neut) troonopvolger N(soort,ev,neut) hierheden N(soort,ev,neut) geweld N(soort,ev,neut) beantwoordde V(trans,ovt,1_of_2_of_3,ev) voetafdrukken N(soort,mv,neut) Susan N(eigen,ev,neut) Variaties N(soort,mv,neut) Velocipede N(soort,ev,neut) directe Adj(attr,stell,verv_neut) publiek N(soort,ev,neut) ruggespraak N(soort,ev,neut) gesteldheid N(soort,ev,neut) veilig Adj(attr,stell,onverv) Adj(adv,stell,onverv) onderscheiden V(trans,inf) manier N(soort,ev,neut) achterstand N(soort,ev,neut) tijdschriftjes N(soort,mv,neut) totaal Adj(adv,stell,onverv) N(soort,ev,neut) Siciliens N(eigen,ev,neut) beheerst V(trans,ott,3,ev) shows N(soort,mv,neut) paardje N(soort,ev,neut) overhandigen V(trans,ott,1_of_2_of_3,mv) liepen V(intrans,ovt,1_of_2_of_3,mv) overgang N(soort,ev,neut) langzamer Adj(attr,vergr,onverv) beantwoorden V(trans,inf) V(trans,inf,subst) trompetje N(soort,ev,neut) 2-persoonskamer N(soort,ev,neut) fascineerde V(trans,ovt,1_of_2_of_3,ev) Amersfoort N(eigen,ev,neut) oprijst V(intrans,ott,3,ev) Kathie N(eigen,ev,neut) Wanda N(eigen,ev,neut) kamertje N(soort,ev,neut) doceren V(intrans,inf) intieme Adj(attr,stell,verv_neut) Armoede N(soort,ev,neut) gewend Adj(attr,stell,onverv) V(trans,verl_dw,onverv) beugels N(soort,mv,neut) daarnaast Adv(pron,aanw) Keith N(eigen,ev,neut) domme Adj(attr,stell,verv_neut) prikkelen V(trans,inf) staart V(intrans,ott,3,ev) verzorgingstehuis N(soort,ev,neut) Nixon N(eigen,ev,neut) adoptie N(soort,ev,neut) vertraagd V(trans,verl_dw,onverv) martelkamertjes N(soort,mv,neut) onderhuids Adj(adv,stell,onverv) toevloed N(soort,ev,neut) ondergrond N(soort,ev,neut) schrap Adj(attr,stell,onverv) rock-repertoire N(soort,ev,neut) afstammeling N(soort,ev,neut) verloren V(trans,verl_dw,onverv) Protestantse N(eigen,ev,neut) dramaturg N(soort,ev,neut) gaf V(trans,ovt,1_of_2_of_3,ev) verlamming N(soort,ev,neut) leert V(trans,ott,3,ev) V(intrans,ott,3,ev) V(hulp,ott,3,ev) Universiteit N(soort,ev,neut) kapitalisme N(soort,ev,neut) waarde N(soort,ev,neut) vierhonderd Num(hoofd,bep,attr,onverv) gal N(soort,ev,neut) Marijke N(eigen,ev,neut) principes N(soort,mv,neut) beroepsmisdadigers N(soort,mv,neut) effekens Adv(gew,geen_func,stell,onverv) gas N(soort,ev,neut) gat N(soort,ev,neut) Dacht V(trans,ovt,1_of_2_of_3,ev) ondervoeding N(soort,ev,neut) Jane N(eigen,ev,neut) peuter N(soort,ev,neut) Vughtse Adj(attr,stell,verv_neut) tijdsbestek N(soort,ev,neut) roman N(soort,ev,neut) belde V(trans,ovt,1_of_2_of_3,ev) financiering N(soort,ev,neut) erger Adj(adv,vergr,onverv) weinigen Num(hoofd,onbep,zelfst,stell,verv_mv) uur N(soort,ev,neut) grof-erotische Adj(attr,stell,verv_neut) bestuurster N(soort,ev,neut) Sociale N(soort,mv,neut) N(eigen,mv,neut) verwijst V(trans,ott,3,ev) leest V(trans,ott,3,ev) V(intrans,ott,3,ev) N(soort,ev,neut) V(trans,ott,2,ev) karaktertrek N(soort,ev,neut) overkomt V(intrans,ott,3,ev) cijfers N(soort,mv,neut) kabelexploitanten N(soort,mv,neut) beverig Adj(attr,stell,onverv) gebruikelijke Adj(attr,stell,verv_neut) kritisch Adj(attr,stell,onverv) Adj(adv,stell,onverv) handelen V(intrans,inf,subst) menhirliefhebbers N(soort,mv,neut) aangedurfd V(trans,verl_dw,onverv) Machine N(eigen,ev,neut) beleg N(soort,ev,neut) tang N(soort,ev,neut) ijverig Adj(adv,stell,onverv) slecht Adj(attr,stell,onverv) Adj(adv,stell,onverv) boeiend V(intrans,teg_dw,onverv) ontluisteren V(trans,inf) beslag N(soort,ev,neut) plaats N(soort,ev,neut) V(trans,imp) oplossen V(trans,inf,subst) verkrijgen V(trans,inf) Superstar N(soort,ev,neut) N(eigen,ev,neut) geillustreerde V(trans,verl_dw,verv_neut) contouren N(soort,mv,neut) versnellen V(trans,inf) geklemd V(trans,verl_dw,onverv) nuances N(soort,mv,neut) dachten V(trans,ovt,1_of_2_of_3,mv) V(intrans,ovt,1_of_2_of_3,mv) Zo'n Pron(aanw,neut,attr) sloeg V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) olympische Adj(attr,stell,verv_neut) glimmend V(intrans,teg_dw,onverv) Lesbisch Adj(attr,stell,onverv) verdachtmakingen N(soort,mv,neut) afgevaardigden V(trans,verl_dw,verv_mv) pil-hetze N(soort,ev,neut) bontjas N(soort,ev,neut) sein N(soort,ev,neut) stropop N(soort,ev,neut) opbouwen V(trans,inf) V(trans,inf,subst) effectief Adj(attr,stell,onverv) Prof. N(eigen,ev,neut) Chablis N(eigen,ev,neut) vleugel N(soort,ev,neut) rijbewijs N(soort,ev,neut) lipstick N(soort,ev,neut) kuil N(soort,ev,neut) doorgelicht V(trans,verl_dw,onverv) inschikkelijk Adj(attr,stell,onverv) rijmpje N(soort,ev,neut) Beaujolais N(eigen,ev,neut) Blijf V(hulp_of_kopp,imp) v.d. N(eigen,ev,neut) stoffen N(soort,mv,neut) levende V(intrans,teg_dw,verv_neut) gemiddeld Adj(adv,stell,onverv) Hier Adv(gew,aanw) Adv(gew,geen_func,stell,onverv) afgeslepen V(trans,verl_dw,onverv) Polak N(eigen,ev,neut) levends V(intrans,teg_dw,verv_gen) nauwlettend Adj(adv,stell,onverv) gek Adj(attr,stell,onverv) N(soort,ev,neut) captain N(soort,ev,neut) Oorlogsmake-up N(soort,ev,neut) stapje N(soort,ev,neut) 16de-eeuwse Adj(attr,stell,verv_neut) Casady N(eigen,ev,neut) Eigen Pron(aanw,neut,attr,w_eigen) beschouwen V(trans,ott,1_of_2_of_3,mv) V(trans,inf) gewest N(soort,ev,neut) groepjes N(soort,mv,neut) huishoudelijk Adj(attr,stell,onverv) Genderen N(eigen,ev,neut) legervoedsel N(soort,ev,neut) apensoort N(soort,ev,neut) geproduceerd V(trans,verl_dw,onverv) machtige Adj(attr,stell,verv_neut) minuut N(soort,ev,neut) Wanja N(eigen,ev,neut) verzuurde V(intrans,ovt,1_of_2_of_3,ev) riep V(trans,ovt,1_of_2_of_3,ev) dramatische Adj(attr,stell,verv_neut) Adj(adv,stell,verv_neut) redden V(trans,inf) vromen Adj(zelfst,stell,verv_mv) uitviel V(intrans,ovt,1_of_2_of_3,ev) Meisje N(soort,ev,neut) verdriet N(soort,ev,neut) verloofden V(refl,ovt,1_of_2_of_3,mv) verkiezingsprogramma's N(soort,mv,neut) hoede N(soort,ev,neut) seks N(soort,ev,neut) onbenullig Adj(attr,stell,onverv) consequenties N(soort,mv,neut) nogal Adv(gew,geen_func,stell,onverv) Goderie N(eigen,ev,neut) ferme Adj(attr,stell,verv_neut) verheugt V(trans,ott,3,ev) opvoering N(soort,ev,neut) Museum N(eigen,ev,neut) oplossing N(soort,ev,neut) waarin Adv(pron,vrag) potentiemoeilijkheden N(soort,mv,neut) voelsprieten N(soort,mv,neut) noordelijke Adj(attr,stell,verv_neut) fietskogeltjes N(soort,mv,neut) lichtbruine Adj(attr,stell,verv_neut) afgestemd V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv) bewustzijn N(soort,ev,neut) tuinanjers N(soort,mv,neut) Jac N(eigen,ev,neut) ongewenste Adj(attr,stell,verv_neut) weggepest V(trans,verl_dw,onverv) patroon N(soort,ev,neut) overgave N(soort,ev,neut) haalbare Adj(attr,stell,verv_neut) Jan N(eigen,ev,neut) Adj(attr,stell,onverv) N(soort,ev,neut) innen V(trans,inf) paprika N(soort,ev,neut) opgedane V(trans,verl_dw,verv_neut) Japanners N(soort,mv,neut) tremens N(soort,ev,neut) vereiste V(trans,verl_dw,verv_neut) kantoorbaan N(soort,ev,neut) levensgrote Adj(attr,stell,verv_neut) werkende V(intrans,teg_dw,verv_neut) Beurs Adj(attr,stell,onverv) N(soort,ev,neut) mistige Adj(attr,stell,verv_neut) fundamentele Adj(attr,stell,verv_neut) catalogi N(soort,mv,neut) wisten V(trans,ovt,1_of_2_of_3,mv) koolhydraten N(soort,mv,neut) vreselijk Adj(adv,stell,onverv) Adj(attr,stell,onverv) allerminst Num(hoofd,onbep,zelfst,overtr,onverv) Delons N(eigen,ev,gen) lichtgevend Adj(attr,stell,onverv) theorieen N(soort,mv,neut) vereisten V(trans,ovt,1_of_2_of_3,mv) nachthemel N(soort,ev,neut) opneemt V(trans,ott,3,ev) beursgebouw N(soort,ev,neut) tablet N(soort,ev,neut) Niarchos N(eigen,ev,neut) Californie N(eigen,ev,neut) blad N(soort,ev,neut) gedekt V(trans,verl_dw,onverv) jaloers Adj(attr,stell,onverv) hoeft V(hulp,ott,3,ev) V(hulp,ott,2,ev) V(intrans,ott,3,ev) V(trans,ott,3,ev) Eight N(eigen,ev,neut) bokserssyndicaat N(soort,ev,neut) Haiti N(eigen,ev,neut) schrik V(intrans,ott,1,ev) Franse Adj(attr,stell,verv_neut) schril Adj(adv,stell,onverv) gruwelijke Adj(attr,stell,verv_neut) Luxemburg N(eigen,ev,neut) dekens N(soort,mv,neut) tasten V(intrans,inf) kosmonauten N(soort,mv,neut) echtparen N(soort,mv,neut) vleugje N(soort,ev,neut) Meeuw N(eigen,ev,neut) borstel N(soort,ev,neut) veertigste Num(rang,bep,zelfst,onverv) Nord N(eigen,ev,neut) bijkomstige Adj(attr,stell,verv_neut) stad N(soort,ev,neut) nabij Adj(attr,stell,onverv) Prep(voor) Bolhuis N(eigen,ev,neut) voorgoed Adv(gew,geen_func,stell,onverv) dierenbos N(soort,ev,neut) knipoogjes N(soort,mv,neut) stak V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) stal N(soort,ev,neut) Schaamblos N(eigen,ev,neut) stam N(soort,ev,neut) meesterwerken N(soort,mv,neut) krijg V(trans,ott,1,ev) V(trans,ott,2,ev) realiseerde V(trans,ovt,1_of_2_of_3,ev) dientengevolge Adv(gew,aanw) totale Adj(attr,stell,verv_neut) ingesteld V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv) stap N(soort,ev,neut) V(intrans,ott,1,ev) kennissen N(soort,mv,neut) kunt V(hulp,ott,2,ev) V(trans,ott,2,ev) V(hulp,ott,3,ev) groente N(soort,ev,neut) Brown N(eigen,ev,neut) pagina N(soort,ev,neut) zwakbegaafde Adj(attr,stell,verv_neut) gestrekt V(trans,verl_dw,onverv) tv-beelden N(soort,mv,neut) medisch Adj(attr,stell,onverv) N(eigen,ev,neut) Adj(adv,stell,onverv) ingenomen V(trans,verl_dw,onverv) Byrds N(eigen,mv,neut) magnetisch Adj(attr,stell,onverv) kweekproeven N(soort,mv,neut) anticonceptiva N(soort,mv,neut) wettelijke Adj(attr,stell,verv_neut) Cooper N(eigen,ev,neut) parken N(soort,mv,neut) laude Adj(adv,stell,onverv) betrekking N(soort,ev,neut) zaadjes N(soort,mv,neut) achterover Adv(gew,geen_func,stell,onverv) wijnproduktie N(soort,ev,neut) Klop V(trans,imp) ingestemd V(intrans,verl_dw,onverv) inbegrepen V(trans,verl_dw,onverv) dirigent N(soort,ev,neut) rijk Adj(attr,stell,onverv) N(soort,ev,neut) overeind Adv(gew,geen_func,stell,onverv) voorbijgangers N(soort,mv,neut) rijp Adj(attr,stell,onverv) geschikte Adj(attr,stell,verv_neut) waarna Adv(pron,vrag) Adv(pron,betr) kapitalistenvreter N(soort,ev,neut) voedings-maatregelen N(soort,mv,neut) behaaglijk Adj(attr,stell,onverv) vernederd V(trans,verl_dw,onverv) soepelheid N(soort,ev,neut) Meestal Adv(gew,geen_func,stell,onverv) aandoen V(trans,inf) V(intrans,inf) 030-25708 Num(hoofd,bep,attr,onverv) Reimut N(eigen,ev,neut) ervan Adv(pron,onbep) Jeu N(eigen,ev,neut) Hoensbroek N(eigen,ev,neut) bedraagt V(trans,ott,3,ev) Ahead N(eigen,ev,neut) betekent V(trans,ott,3,ev) V(trans,ott,2,ev) reprodukties N(soort,mv,neut) versnelling N(soort,ev,neut) munitie N(soort,ev,neut) gekoesterde V(trans,verl_dw,verv_neut) vernedert V(refl,ott,2,ev) beslis V(trans,ott,1,ev) eerstvolgende Adj(attr,stell,verv_neut) Tenslotte Adv(gew,geen_func,stell,onverv) vertrekken V(intrans,inf) doodskopbrilletje N(soort,ev,neut) ferry N(soort,ev,neut) onverwacht Adj(adv,stell,onverv) thuis Adv(gew,geen_func,stell,onverv) citroenen N(soort,mv,neut) bronzen Adj(attr,stell,onverv) cruise N(soort,ev,neut) streken N(soort,mv,neut) toneelstuk N(soort,ev,neut) Naar Prep(voor) bevond V(refl,ovt,1_of_2_of_3,ev) liefs Adj(attr,stell,verv_gen) rozenkranstangetje N(soort,ev,neut) verdraaien V(trans,inf) mismaakt V(trans,verl_dw,onverv) Overlegorgaan N(soort,ev,neut) waarom Adv(gew,betr) N(soort,ev,neut) degelijk Adj(adv,stell,onverv) waarop Adv(pron,vrag) vertegenwoordigers N(soort,mv,neut) chauffeurs N(soort,mv,neut) verwekte V(trans,ovt,1_of_2_of_3,ev) schelmenstreek N(soort,ev,neut) kerstballen N(soort,mv,neut) Dierenpark N(eigen,ev,neut) rubriek N(soort,ev,neut) onbereikbaar Adj(attr,stell,onverv) prietpraat N(soort,ev,neut) Berengaria N(eigen,ev,neut) sjalotten N(soort,mv,neut) hoogteverschil N(soort,ev,neut) waargebeurd Adj(attr,stell,onverv) daaraan Adv(pron,aanw) Gasthof N(soort,ev,neut) N(eigen,ev,neut) taxi N(soort,ev,neut) Johnny N(eigen,ev,neut) zegt-ie V(trans,ott,3,ev) avonturen N(soort,mv,neut) schilderijen N(soort,mv,neut) veelvoud N(soort,ev,neut) opdiepen V(trans,inf) hiervoor Adv(pron,aanw) wendde V(refl,ovt,1_of_2_of_3,ev) flesjes N(soort,mv,neut) stel V(trans,ott,1,ev) termijn N(soort,ev,neut) stem N(soort,ev,neut) Herengracht N(eigen,ev,neut) mijne Pron(bez,1,ev,neut,attr) verdraagbaarheid N(soort,ev,neut) erbarmelijk Adj(attr,stell,onverv) artistiek Adj(attr,stell,onverv) 10,25 Num(hoofd,bep,attr,onverv) alleenstaanden Adj(zelfst,stell,verv_mv) bovenstaande Adj(attr,stell,verv_neut) aantekenen V(trans,inf) Iets Pron(onbep,neut,zelfst) sloop V(intrans,ovt,1_of_2_of_3,ev) balanceerde V(intrans,ovt,1_of_2_of_3,ev) afwijkingen N(soort,mv,neut) ingerichte V(trans,verl_dw,verv_neut) veeteelt N(soort,ev,neut) binnenlanden N(soort,mv,neut) sloot V(refl,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) N(soort,ev,neut) zoethout N(soort,ev,neut) beminnen V(intrans,inf,subst) Calcutta N(eigen,ev,neut) werkenden V(intrans,teg_dw,verv_mv) bewonderen V(trans,inf) centrum N(soort,ev,neut) emaille N(soort,ev,neut) schimmige Adj(attr,stell,verv_neut) schichtig Adj(adv,stell,onverv) flirten V(intrans,inf) kust N(soort,ev,neut) wenden V(refl,ott,1_of_2_of_3,mv) V(refl,inf) Urdu N(eigen,ev,neut) waarover Adv(pron,vrag) schrok V(intrans,ovt,1_of_2_of_3,ev) aanraken V(trans,inf) maatregelen N(soort,mv,neut) vak N(soort,ev,neut) serieuze Adj(attr,stell,verv_neut) kindersprookjes N(soort,mv,neut) van Prep(voor) Adv(deel_adv) N(soort,ev,neut) N(eigen,ev,gen) Conj(onder,met_inf) N(eigen,ev,neut) vrolijke Adj(attr,stell,verv_neut) aannaaien V(trans,inf) Jij Pron(per,2,ev,nom) vat N(soort,ev,neut) Improvisatie N(eigen,ev,neut) sets N(soort,mv,neut) Jim N(eigen,ev,neut) geschut N(soort,ev,neut) gok N(soort,ev,neut) aanhangers N(soort,mv,neut) verbitterd V(trans,verl_dw,onverv) recenties N(soort,mv,neut) begeleider N(soort,ev,neut) gelden V(intrans,inf) V(trans,inf) V(intrans,ott,1_of_2_of_3,mv) stapte V(intrans,ovt,1_of_2_of_3,ev) kijkende V(intrans,teg_dw,verv_neut) ouden Adj(zelfst,stell,verv_mv) Zwanenburg N(eigen,ev,neut) verschuilt V(refl,ott,3,ev) bedingen V(trans,inf) ouder Adj(attr,vergr,onverv) wegvallen V(intrans,inf,subst) halsringen N(soort,mv,neut) verzorgd V(trans,verl_dw,onverv) tekstdichter N(soort,ev,neut) huisbel N(soort,ev,neut) strafgevangenis N(soort,ev,neut) prefereert V(trans,ott,3,ev) Middellandse N(eigen,ev,neut) Lodewijk N(soort,ev,neut) wijnsnobs N(soort,mv,neut) langspeelplaten N(soort,mv,neut) scheidde V(trans,ovt,1_of_2_of_3,ev) Bruinvis N(eigen,ev,neut) bardeerspek N(soort,ev,neut) blij Adj(attr,stell,onverv) blik N(soort,ev,neut) Robs N(eigen,ev,gen) Truus N(eigen,ev,neut) ooievaar N(soort,ev,neut) vertoning N(soort,ev,neut) verdieping N(soort,ev,neut) luchtige Adj(attr,stell,verv_neut) kaart N(soort,ev,neut) dorpen N(soort,mv,neut) gepeupel N(soort,ev,neut) Israel N(eigen,ev,neut) lucht N(soort,ev,neut) abdis N(soort,ev,neut) 40-45 Num(hoofd,bep,attr,onverv) .... Punc(hellip) vakschool N(soort,ev,neut) politici N(soort,mv,neut) Rock Misc(vreemd) leeszaal N(soort,ev,neut) stil Adj(attr,stell,onverv) Adj(adv,stell,onverv) gebruikt V(trans,verl_dw,onverv) V(trans,ott,3,ev) vlucht N(soort,ev,neut) gespeeld V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv) bruid N(soort,ev,neut) ongemerkt Adj(adv,stell,onverv) afloopt V(trans,ott,3,ev) aard N(soort,ev,neut) grammofoonplaten N(soort,mv,neut) curacao N(soort,ev,neut) bruin Adj(attr,stell,onverv) Adj(zelfst,stell,onverv) Begin N(soort,ev,neut) muziek N(soort,ev,neut) voorgaande V(intrans,teg_dw,verv_neut) Ijmuiden N(eigen,ev,neut) hierom Adv(pron,aanw) huiskamerraam N(soort,ev,neut) enorme Adj(attr,stell,verv_neut) oordeel N(soort,ev,neut) terechtkomt V(intrans,ott,3,ev) KLM N(eigen,ev,neut) maaltijd N(soort,ev,neut) Rode N(eigen,ev,neut) Kennedy N(eigen,ev,neut) sprakeloos Adj(attr,stell,onverv) onschuld N(soort,ev,neut) Waarschijnlijk Adj(adv,stell,onverv) veertigjarige Adj(attr,stell,verv_neut) klinkende V(intrans,teg_dw,verv_neut) trouwe Adj(attr,stell,verv_neut) Nieuwenhuizens N(eigen,mv,neut) overleden V(intrans,verl_dw,onverv) Sommige Pron(onbep,neut,attr) Pron(onbep,neut,zelfst) Tijdens Prep(voor) afleveren V(intrans,inf) V(trans,inf) apen N(soort,mv,neut) verrotte V(intrans,verl_dw,verv_neut) conditie N(soort,ev,neut) avond N(soort,ev,neut) vee N(soort,ev,neut) Sassari N(eigen,ev,neut) raamkozijnen N(soort,mv,neut) waarheid N(soort,ev,neut) Huizing N(eigen,ev,neut) kleurengamma's N(soort,mv,neut) ver Adj(adv,stell,onverv) Adj(attr,stell,onverv) augurken N(soort,mv,neut) vet Adj(attr,stell,onverv) slaaf N(soort,ev,neut) vergelijkbaar Adj(attr,stell,onverv) slaan V(trans,inf) sexy Adj(attr,stell,onverv) VRIJ Adj(attr,stell,onverv) slaap N(soort,ev,neut) spoelen V(intrans,inf) slaat V(intrans,ott,3,ev) bezittende V(intrans,teg_dw,verv_neut) literair Adj(attr,stell,onverv) politiek N(soort,ev,neut) Adj(adv,stell,onverv) Adj(attr,stell,onverv) Tielse Adj(attr,stell,verv_neut) Roer V(trans,imp) V(intrans,imp) schenkt V(trans,ott,3,ev) slotzusters N(soort,mv,neut) weggevallen V(intrans,verl_dw,onverv) carre Adj(attr,stell,onverv) ja-woord N(soort,ev,neut) patio-woning N(soort,ev,neut) vijfentwintig Num(hoofd,bep,attr,onverv) President N(soort,ev,neut) inzichten N(soort,mv,neut) volledig Adj(adv,stell,onverv) Adj(attr,stell,onverv) handschoenenkastje N(soort,ev,neut) gezien V(trans,verl_dw,onverv) Prep(voor) V(intrans,verl_dw,onverv) aversie N(soort,ev,neut) bedoeling N(soort,ev,neut) lichtelijk Adj(adv,stell,onverv) bijdrage N(soort,ev,neut) grootpa N(soort,ev,neut) grondploeg N(soort,ev,neut) vervolgd V(trans,verl_dw,onverv) verfrissen V(trans,inf) Balmain N(eigen,ev,neut) kasteel N(soort,ev,neut) Mokers N(eigen,ev,gen) waadde V(intrans,ovt,1_of_2_of_3,ev) leiding N(soort,ev,neut) meebrengt V(trans,ott,3,ev) kilometer N(soort,ev,neut) afspraak N(soort,ev,neut) hotel N(soort,ev,neut) Joe N(eigen,ev,neut) vervolgt V(trans,ott,3,ev) V(intrans,ott,3,ev) Jesus N(eigen,ev,neut) besproken V(trans,verl_dw,onverv) geschoren V(refl,verl_dw,onverv) V(trans,verl_dw,onverv) vervuiling N(soort,ev,neut) sabbat N(soort,ev,neut) merkwaardige Adj(attr,stell,verv_neut) koude Adj(attr,stell,verv_neut) kostbaar Adj(adv,stell,onverv) Adj(attr,stell,onverv) onbeschaamd Adj(adv,stell,onverv) snelheid N(soort,ev,neut) gezagvoerder N(soort,ev,neut) Haitianen N(soort,mv,neut) sfinx N(soort,ev,neut) gun V(trans,ott,1,ev) voegde V(trans,ovt,1_of_2_of_3,ev) Jos N(eigen,ev,neut) zachter Adj(attr,vergr,onverv) eerder Adj(adv,vergr,onverv) Koperplaat N(soort,ev,neut) geruststellende V(intrans,teg_dw,verv_neut) T.H. N(soort,ev,neut) uitschelden V(trans,inf) fluit N(soort,ev,neut) V(intrans,ott,2,ev) bloed N(soort,ev,neut) unieke Adj(attr,stell,verv_neut) dorpje N(soort,ev,neut) bloei N(soort,ev,neut) Meer Num(hoofd,onbep,zelfst,vergr,onverv) bloem N(soort,ev,neut) stralen V(intrans,inf) gegevens N(soort,mv,neut) commando N(soort,ev,neut) rassendiscriminatie N(soort,ev,neut) blussen V(trans,inf) opgewonden V(trans,verl_dw,onverv) sprookjes N(soort,mv,neut) opdrachtgever N(soort,ev,neut) oude Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut) peuterde V(trans,ovt,1_of_2_of_3,ev) serene Adj(attr,stell,verv_neut) Bram N(eigen,ev,neut) strijken V(trans,inf) pieptonen N(soort,mv,neut) paleis N(soort,ev,neut) gitaar-spelen V(intrans,inf) via Prep(voor) uitbreiding N(soort,ev,neut) platbodems N(soort,mv,neut) voegen V(trans,ott,1_of_2_of_3,mv) Flinkie N(eigen,ev,neut) viezigheid N(soort,ev,neut) Thomas N(eigen,ev,gen) N(eigen,ev,neut) Comite N(soort,ev,neut) vin N(eigen,ev,neut) bulten N(soort,mv,neut) week N(soort,ev,neut) versies N(soort,mv,neut) vis N(soort,ev,neut) Veilig N(eigen,ev,neut) sterker Adj(attr,vergr,onverv) Barbara N(eigen,ev,neut) weer Adv(gew,geen_func,stell,onverv) N(soort,ev,neut) wees V(intrans,ovt,1_of_2_of_3,ev) N(soort,ev,neut) knoflookbol N(soort,ev,neut) weet V(trans,ott,1,ev) V(intrans,ott,2,ev) V(hulp,ott,2,ev) V(intrans,ott,1,ev) V(trans,ott,3,ev) V(trans,ott,2,ev) V(hulp,ott,3,ev) spoort N(soort,ev,neut) stof N(soort,ev,neut) poging N(soort,ev,neut) onduidelijk Adj(attr,stell,onverv) gebouwen N(soort,mv,neut) broeiende V(intrans,teg_dw,verv_neut) Braber N(eigen,ev,neut) jongen N(soort,ev,neut) Adj(zelfst,stell,verv_mv) water N(soort,ev,neut) stom Adj(adv,stell,onverv) Adj(attr,stell,onverv) grootse Adj(attr,stell,verv_neut) ZDF N(eigen,ev,neut) verteld V(trans,verl_dw,onverv) jonger Adj(attr,vergr,onverv) stop V(intrans,imp) Mokum N(eigen,ev,neut) instant-ster N(soort,ev,neut) fluks Adj(adv,stell,onverv) krankzinnige Adj(attr,stell,verv_neut) poogden V(hulp,ovt,1_of_2_of_3,mv) aangrijpende V(intrans,teg_dw,verv_neut) Heils N(eigen,ev,neut) verbeelden V(trans,inf) fluweel N(soort,ev,neut) vertelt V(trans,ott,3,ev) V(intrans,ott,3,ev) Oldenburg N(eigen,ev,neut) Wenen N(eigen,ev,neut) Olympisch Adj(attr,stell,onverv) afgeschrikt V(trans,verl_dw,onverv) jammeren V(trans,ott,1_of_2_of_3,mv) grootte N(soort,ev,neut) Zulke Pron(aanw,dat,attr) gerepareerd V(trans,verl_dw,onverv) liter N(soort,ev,neut) krullend V(intrans,teg_dw,onverv) buspassagier N(soort,ev,neut) simpel Adj(attr,stell,onverv) vochtig Adj(attr,stell,onverv) malen N(soort,mv,neut) verslijten V(trans,inf) slapeloosheid N(soort,ev,neut) Egberts N(eigen,ev,neut) onvruchtbaarheid N(soort,ev,neut) uitgebreide V(trans,verl_dw,verv_neut) Vereniging N(eigen,ev,neut) jarenlang Adj(adv,stell,onverv) overzicht N(soort,ev,neut) inwoners N(soort,mv,neut) Dackelmutti N(eigen,ev,neut) opgetrokken V(trans,verl_dw,onverv) geheel Adj(adv,stell,onverv) N(soort,ev,neut) ambtenaar N(soort,ev,neut) randen N(soort,mv,neut) Madrid N(eigen,ev,neut) nijdig Adj(adv,stell,onverv) formaat N(soort,ev,neut) Jenny's N(eigen,ev,gen) oppositie N(soort,ev,neut) hopelijk Adj(adv,stell,onverv) minister N(soort,ev,neut) Vietnam N(eigen,ev,neut) hoofdschuddend V(intrans,teg_dw,onverv) vlo N(soort,ev,neut) uitzendt V(trans,ott,3,ev) poesjenellen N(soort,mv,neut) roadmanagers N(soort,mv,neut) Bretagnes N(eigen,ev,gen) verwarring N(soort,ev,neut) bezoek N(soort,ev,neut) Roll Misc(vreemd) 1959-1970 Num(hoofd,bep,zelfst,onverv) gekonstateerd V(trans,verl_dw,onverv) sterkste Adj(adv,vergr,verv_neut) willekeurig Adj(attr,stell,onverv) skilassen N(soort,mv,neut) oksels N(soort,mv,neut) maagklachten N(soort,mv,neut) opgesteld V(trans,verl_dw,onverv) fraaie Adj(attr,stell,verv_neut) ontving V(trans,ovt,1_of_2_of_3,ev) roereieren N(soort,mv,neut) bestuursniveau N(soort,ev,neut) Vougeot N(eigen,ev,neut) opgenomen V(trans,verl_dw,onverv) skilopen N(soort,ev,neut) regisseursechtpaar N(soort,ev,neut) trouwens Adv(gew,geen_func,stell,onverv) petjes N(soort,mv,neut) pyama's N(soort,mv,neut) rechts Adv(gew,geen_func,stell,onverv) allemaal Pron(onbep,neut,zelfst) Bijzonder Adj(adv,stell,onverv) Jus N(soort,ev,neut) harkerig Adj(adv,stell,onverv) elegant Adj(attr,stell,onverv) kapot Adj(attr,stell,onverv) armste Adj(attr,overtr,verv_neut) luiers N(soort,mv,neut) terug Adv(gew,geen_func,stell,onverv) lieve Adj(attr,stell,verv_neut) uitpluizen V(trans,inf) binnenlandse Adj(attr,stell,verv_neut) safari N(soort,ev,neut) fietsjes N(soort,mv,neut) Welkom Adj(attr,stell,onverv) wegging V(intrans,ovt,1_of_2_of_3,ev) Indiaan N(eigen,ev,neut) banken N(soort,mv,neut) voelt V(trans,ott,3,ev) V(refl,ott,2,ev) V(refl,ott,3,ev) sacramentele Adj(attr,stell,verv_neut) wonderwel Adv(gew,geen_func,stell,onverv) kopjes N(soort,mv,neut) Wilhelm N(eigen,ev,neut) gebaard V(trans,verl_dw,onverv) verveloze Adj(attr,stell,verv_neut) talrijke Pron(onbep,neut,attr) wensen V(trans,ott,1_of_2_of_3,mv) schotel N(soort,ev,neut) KVP N(eigen,ev,neut) doorgaan V(intrans,inf) zwak Adj(adv,stell,onverv) buitenlander N(soort,ev,neut) restaurants N(soort,mv,neut) gescheiden V(trans,verl_dw,onverv) vol Adj(attr,stell,onverv) handgranaat N(soort,ev,neut) viel V(intrans,ovt,1_of_2_of_3,ev) tactiek N(soort,ev,neut) klusje N(soort,ev,neut) von N(eigen,ev,neut) sigaretten N(soort,mv,neut) redenering N(soort,ev,neut) vier Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) Faubourg N(eigen,ev,neut) bigamie N(soort,ev,neut) hoefde V(hulp,ovt,1_of_2_of_3,ev) ontdekt V(trans,ott,3,ev) V(trans,verl_dw,onverv) Rood Adj(zelfst,stell,onverv) firma N(soort,ev,neut) geheim N(soort,ev,neut) uitziet V(intrans,ott,3,ev) meeslepen V(trans,inf) haarspoeling N(soort,ev,neut) Paasschen N(eigen,ev,neut) Sluiter N(eigen,ev,neut) zwarte Adj(attr,stell,verv_neut) Minh-route N(eigen,ev,neut) stuk N(soort,ev,neut) Adj(attr,stell,onverv) tweeendertig Num(hoofd,bep,zelfst,onverv) gerangeerd V(trans,verl_dw,onverv) bordeel N(soort,ev,neut) bewijsmateriaal N(soort,ev,neut) zette V(trans,ovt,1_of_2_of_3,ev) terrein N(soort,ev,neut) geschranst V(intrans,verl_dw,onverv) relatievormen N(soort,mv,neut) provinciaal Adj(attr,stell,onverv) parlementariers N(soort,mv,neut) teleurgesteld V(trans,verl_dw,onverv) kritieke Adj(attr,stell,verv_neut) vogeltje N(soort,ev,neut) bevalt V(intrans,ott,3,ev) zieke Adj(attr,stell,verv_neut) wapens N(soort,mv,neut) randje N(soort,ev,neut) huishoudrekening N(soort,ev,neut) modder N(soort,ev,neut) letters N(soort,mv,neut) bestreden V(trans,verl_dw,onverv) feiten N(soort,mv,neut) marine N(soort,ev,neut) Brit N(soort,ev,neut) Meng V(trans,imp) verband N(soort,ev,neut) toppers N(soort,mv,neut) verlangd V(trans,verl_dw,onverv) rotjes N(soort,mv,neut) Bijbelgenootschap N(eigen,ev,neut) lynchmentaliteit N(soort,ev,neut) blond Adj(attr,stell,onverv) z.g. Adj(attr,stell,verv_neut) wroeten V(intrans,inf) vermoeidheid N(soort,ev,neut) gevorkte Adj(attr,stell,verv_neut) gezonde Adj(attr,stell,verv_neut) lagen V(intrans,ovt,1_of_2_of_3,mv) verbanningsoord N(soort,ev,neut) hulde N(soort,ev,neut) coureurs N(soort,mv,neut) gestalte N(soort,ev,neut) lager Adj(attr,vergr,onverv) verlangt V(trans,ott,3,ev) kunsthistorici N(soort,mv,neut) citroenbrandewijn N(soort,ev,neut) Louis N(eigen,ev,neut) Adj(attr,stell,verv_neut) geinteresseerden V(trans,verl_dw,verv_mv) passeert V(intrans,ott,3,ev) nuchterheid N(soort,ev,neut) flat N(soort,ev,neut) frustreren V(trans,inf) gehele Adj(attr,stell,verv_neut) straatzanger N(soort,ev,neut) urgente Adj(attr,stell,verv_neut) Kenners N(soort,mv,neut) slang N(soort,ev,neut) borst N(soort,ev,neut) wens N(soort,ev,neut) glijden V(intrans,inf) slank Adj(attr,stell,onverv) voldoening N(soort,ev,neut) teevee N(soort,ev,neut) afgrondelijke Adj(attr,stell,verv_neut) musical N(soort,ev,neut) bloot Adj(attr,stell,onverv) N(soort,ev,neut) Kuller N(eigen,ev,neut) Dobrowolski N(eigen,ev,neut) fietsen V(intrans,inf) opvoeren V(trans,inf) afhankelijker Adj(attr,vergr,onverv) scheidsrechters N(soort,mv,neut) jerseys N(soort,mv,neut) Beatrix N(eigen,ev,neut) corruptie N(soort,ev,neut) fauteuiltjes N(soort,mv,neut) slinger N(soort,ev,neut) MIJN Pron(bez,1,ev,neut,attr) machten N(soort,mv,neut) Huwelijken N(soort,mv,neut) Dorfmeister N(eigen,ev,neut) bureaucratie N(soort,ev,neut) bedevaartsoord N(soort,ev,neut) bezetten V(trans,ott,1_of_2_of_3,mv) Cummins N(eigen,ev,neut) Wild-Westtaferelen N(soort,mv,neut) secretaresse N(soort,ev,neut) schrijven V(trans,inf) V(intrans,inf) V(trans,inf,subst) V(intrans,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) gravida N(soort,ev,neut) breedstralers N(soort,mv,neut) petekind N(soort,ev,neut) schrijver N(soort,ev,neut) wijzen V(intrans,ott,1_of_2_of_3,mv) V(intrans,inf) V(trans,inf) N(soort,mv,neut) deed V(trans,ovt,1_of_2_of_3,ev) V(hulp,ovt,1_of_2_of_3,ev) vijf Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) Derde N(eigen,ev,neut) publiciteit N(soort,ev,neut) geaccentueerd V(trans,verl_dw,onverv) wijzer Adj(attr,vergr,onverv) opbrengen V(trans,inf,subst) heerlijk Adj(attr,stell,onverv) Adj(adv,stell,onverv) hindernissen N(soort,mv,neut) prutsertje N(soort,ev,neut) deel N(soort,ev,neut) bijvoorbeeld Adv(gew,geen_func,stell,onverv) voert V(trans,ott,3,ev) Temps N(eigen,ev,neut) meegebracht V(trans,verl_dw,onverv) Totale Adj(attr,stell,verv_neut) had V(hulp,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) uitzijn V(intrans,ott,1_of_2_of_3,mv) Floris N(eigen,ev,neut) verbeten V(trans,verl_dw,onverv) hak V(trans,imp) Andrea N(eigen,ev,neut) hal N(soort,ev,neut) Agua N(eigen,ev,neut) geleidelijk Adj(adv,stell,onverv) ham N(soort,ev,neut) tederheid N(soort,ev,neut) Egypte N(eigen,ev,neut) thuiskom V(intrans,ott,1,ev) halsslagader N(soort,ev,neut) onteigend V(trans,verl_dw,onverv) Mansfield N(eigen,ev,neut) kindertehuis N(soort,ev,neut) kerkgebouwen N(soort,mv,neut) functioneren V(intrans,inf,subst) eierdooier N(soort,ev,neut) Andrew N(eigen,ev,neut) weegt V(trans,ott,3,ev) bracht V(trans,ovt,1_of_2_of_3,ev) durende V(trans,teg_dw,verv_neut) baarmoeder N(soort,ev,neut) modieuze Adj(attr,stell,verv_neut) bedoeninkje N(soort,ev,neut) bewoond V(trans,verl_dw,onverv) werd V(hulp_of_kopp,ovt,1_of_2_of_3,ev) geprikt V(trans,verl_dw,onverv) muurvast Adj(attr,stell,onverv) huisvrouw N(soort,ev,neut) fles N(soort,ev,neut) gietvormpjes N(soort,mv,neut) werk N(soort,ev,neut) gruwel N(soort,ev,neut) gruwen V(intrans,inf) vilt N(soort,ev,neut) Manmoedig Adj(adv,stell,onverv) Corry N(eigen,ev,neut) oever N(soort,ev,neut) meedeelde V(trans,ovt,1_of_2_of_3,ev) wortels N(soort,mv,neut) expansie N(soort,ev,neut) openluchttafrelen N(soort,mv,neut) geprofiteerd V(intrans,verl_dw,onverv) althans Adv(gew,geen_func,stell,onverv) paarse Adj(attr,stell,verv_neut) Chinezen N(soort,mv,neut) vertegenwoordiger N(soort,ev,neut) Lino N(eigen,ev,neut) bruiden N(soort,mv,neut) lichten N(soort,mv,neut) blote Adj(attr,stell,verv_neut) couturier N(soort,ev,neut) Waarom Adv(gew,betr) Adv(gew,vrag) nationale Adj(attr,stell,verv_neut) voelbaar Adj(attr,stell,onverv) spoor N(soort,ev,neut) spoot V(intrans,ovt,1_of_2_of_3,ev) verwelkt V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv) beroemdheid N(soort,ev,neut) verheven V(trans,verl_dw,onverv) oppervlakte N(soort,ev,neut) fietsje N(soort,ev,neut) gebeeldhouwde V(trans,verl_dw,verv_neut) luisterende V(intrans,teg_dw,verv_neut) opzichten N(soort,mv,neut) voordelen N(soort,mv,neut) Vensters N(soort,mv,neut) robijnen Adj(attr,stell,onverv) wisselvalligheden N(soort,mv,neut) bodem N(soort,ev,neut) ronde Adj(attr,stell,verv_neut) sublieme Adj(attr,stell,verv_neut) vind V(trans,ott,1,ev) V(trans,ott,2,ev) werden V(hulp_of_kopp,ovt,1_of_2_of_3,mv) heb V(hulp,ott,1,ev) V(intrans,ott,1,ev) V(trans,ott,2,ev) V(hulp,ott,2,ev) V(trans,ott,1,ev) plezierige Adj(attr,stell,verv_neut) geharkt V(trans,verl_dw,onverv) beknopt V(trans,verl_dw,onverv) verpleegster N(soort,ev,neut) versierd V(trans,verl_dw,onverv) cremes N(soort,mv,neut) hem Pron(per,3,ev,dat_of_acc) hen Pron(per,3,mv,dat_of_acc) gevestigd V(refl,verl_dw,onverv) V(trans,verl_dw,onverv) her Adv(gew,aanw) verliefdheden N(soort,mv,neut) muilezel N(soort,ev,neut) het Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) Pron(per,3,ev,dat_of_acc) Pron(per,3,ev,nom) N(soort,ev,neut) versiert V(trans,ott,2,ev) homofiel Adj(attr,stell,onverv) opvoeders N(soort,mv,neut) kwalificatie N(soort,ev,neut) ransel V(trans,imp) zaterdagmorgen N(soort,ev,neut) Wierden N(eigen,ev,neut) Schrok V(intrans,ovt,1_of_2_of_3,ev) Tenminste Adv(gew,geen_func,stell,onverv) kenmerkend V(intrans,teg_dw,onverv) opnieuw Adv(gew,geen_func,stell,onverv) heilig Adj(adv,stell,onverv) opgelost V(trans,verl_dw,onverv) feestvieren V(intrans,inf) belasting N(soort,ev,neut) Blijkbaar Adv(gew,geen_func,stell,onverv) verscheidene Pron(onbep,neut,attr) vertaler N(soort,ev,neut) aflopen V(intrans,inf,subst) verdwijnende V(intrans,teg_dw,verv_neut) weigert V(hulp,ott,3,ev) interpretaties N(soort,mv,neut) plezier N(soort,ev,neut) strikje N(soort,ev,neut) niet-geente Adj(attr,stell,verv_neut) agressief Adj(attr,stell,onverv) Nagellak N(soort,ev,neut) grijze Adj(attr,stell,verv_neut) duinrand N(soort,ev,neut) sport N(soort,ev,neut) negatief Adj(attr,stell,onverv) Robert N(eigen,ev,neut) Kan V(hulp,ott,3,ev) leuke Adj(attr,stell,verv_neut) discussieert V(intrans,ott,3,ev) bamboes N(soort,mv,neut) inneemt V(trans,ott,3,ev) uitgemaakt V(trans,verl_dw,onverv) keper N(soort,ev,neut) dele N(soort,ev,dat) theater N(soort,ev,neut) pizza N(soort,ev,neut) standpunt N(soort,ev,neut) amerikaanse Adj(attr,stell,verv_neut) doorgeslagen V(intrans,verl_dw,onverv) begrijpen V(trans,inf) V(trans,ott,1_of_2_of_3,mv) onverhulder Adj(attr,vergr,onverv) starten V(intrans,ott,1_of_2_of_3,mv) inwijding N(soort,ev,neut) groenteboer N(soort,ev,neut) doorgang N(soort,ev,neut) ouwe Adj(zelfst,stell,verv_neut) Adj(attr,stell,verv_neut) analyse N(soort,ev,neut) inzittenden Adj(zelfst,stell,verv_mv) wilden V(hulp,ovt,1_of_2_of_3,mv) behandelen V(trans,inf) getrouw Adj(attr,stell,onverv) omdoen V(trans,inf) Armstrong-achtige Adj(attr,stell,verv_neut) nacht N(soort,ev,neut) bijvalskreet N(soort,ev,neut) vindt V(trans,ott,3,ev) V(trans,ott,2,ev) V(refl,ott,3,ev) zijner Pron(bez,3,ev,gen,attr) Ingram N(eigen,ev,neut) Vlucht N(soort,ev,neut) gepasseerd V(trans,verl_dw,onverv) oorlogslittekens N(soort,mv,neut) buitenlandse Adj(attr,stell,verv_neut) Florence N(eigen,ev,neut) drieduizend Num(hoofd,bep,attr,onverv) redderen V(trans,inf) zwangerschapsonderbreking N(eigen,ev,neut) hij Pron(per,3,ev,nom) vasthouden V(trans,inf,subst) V(trans,inf) geindoctrineerd V(trans,verl_dw,onverv) Voeg V(trans,imp) Muziek N(soort,ev,neut) kostuum N(soort,ev,neut) Oranjeklanten N(soort,mv,neut) geacht V(trans,verl_dw,onverv) beweging N(soort,ev,neut) haalt V(trans,ott,2,ev) V(refl,ott,3,ev) gesprek N(soort,ev,neut) bewerken V(trans,inf,subst) beschermde V(trans,ovt,1_of_2_of_3,ev) denk V(intrans,ott,1,ev) V(trans,ott,1,ev) V(intrans,imp) V(intrans,ott,2,ev) V(trans,ott,2,ev) tuintjes N(soort,mv,neut) kookboek N(soort,ev,neut) dreigt V(hulp,ott,3,ev) V(intrans,ott,3,ev) ogen N(soort,mv,neut) Virginia N(eigen,ev,neut) verstandig Adj(adv,stell,onverv) Adj(attr,stell,onverv) winkel N(soort,ev,neut) Allah's N(eigen,ev,gen) notehouten Adj(attr,stell,onverv) jongste Adj(zelfst,overtr,verv_neut) besparen V(trans,inf) hamers N(soort,mv,neut) krioelende V(intrans,teg_dw,verv_neut) raadgevingen N(soort,mv,neut) sierde V(trans,ovt,1_of_2_of_3,ev) schitterden V(intrans,ovt,1_of_2_of_3,mv) uitgedoofde V(intrans,verl_dw,verv_neut) mayonaise N(soort,ev,neut) trombose N(soort,ev,neut) Daarvoor Adv(pron,aanw) ontmoet V(trans,ott,3,ev) sterkere Adj(attr,vergr,verv_neut) beschermen V(trans,inf) bloedverlies N(soort,ev,neut) Ken N(eigen,ev,neut) beschermer N(soort,ev,neut) zagen V(trans,ovt,1_of_2_of_3,mv) V(intrans,ovt,1_of_2_of_3,mv) militante Adj(attr,stell,verv_neut) deinen V(intrans,inf) situatie N(soort,ev,neut) h.a.v.o. N(soort,ev,neut) Gezien Prep(voor) werknemer N(soort,ev,neut) Hoorn N(eigen,ev,neut) reclame N(soort,ev,neut) Hengeveld N(eigen,ev,neut) kwartet N(soort,ev,neut) gipsafgietsel N(soort,ev,neut) schrift N(soort,ev,neut) uurwerk N(soort,ev,neut) wijkagent N(soort,ev,neut) armere Adj(attr,vergr,verv_neut) nieuws-rubriek N(soort,ev,neut) dept Misc(vreemd) capabel Adj(attr,stell,onverv) voorliefde N(soort,ev,neut) routine-operaties N(soort,mv,neut) gevaren N(soort,mv,neut) kantongerecht N(soort,ev,neut) toeristenbelasting N(soort,ev,neut) parfumnaam N(soort,ev,neut) Indiase Adj(attr,stell,verv_neut) bevorderend V(intrans,teg_dw,onverv) bondgenoten N(soort,mv,neut) radio-actieve Adj(attr,stell,verv_neut) samenleving N(soort,ev,neut) deurhoogte N(soort,ev,neut) flop N(soort,ev,neut) serverende V(trans,teg_dw,verv_neut) laatst Adj(adv,vergr,onverv) banen N(eigen,ev,neut) N(soort,mv,neut) gewassen V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv) tiende Num(rang,bep,attr,onverv) clubs N(soort,mv,neut) Zappa N(eigen,ev,neut) ballade N(soort,ev,neut) ordentelijke Adj(attr,stell,verv_neut) weten V(trans,inf) V(hulp,inf) V(trans,ott,1_of_2_of_3,mv) V(intrans,ott,1_of_2_of_3,mv) V(intrans,inf) V(hulp,ott,1_of_2_of_3,mv) enkele Pron(onbep,neut,attr) outsiders N(soort,mv,neut) enige Adj(attr,stell,verv_neut) Pron(onbep,neut,attr) Adj(zelfst,stell,verv_neut) Pron(onbep,neut,zelfst) kinderliteratuur N(soort,ev,neut) Piaf N(eigen,ev,neut) lieflijkheid N(soort,ev,neut) waardeloze Adj(attr,stell,verv_neut) zwangerschap N(soort,ev,neut) zinloosheid N(soort,ev,neut) zusters N(soort,mv,neut) pijlsnelle Adj(attr,stell,verv_neut) Kettingroker N(soort,ev,neut) professionals N(soort,mv,neut) ladies Misc(vreemd) bedrogen V(trans,verl_dw,onverv) bloemen N(soort,mv,neut) Kijkt V(trans,ott,3,ev) Onmogelijk Adj(attr,stell,onverv) uitsteken V(intrans,inf) Huisvrouw-Thuisvrouw N(eigen,ev,neut) dierenarts N(soort,ev,neut) shorts N(soort,mv,neut) kaarslicht N(soort,ev,neut) wal N(soort,ev,neut) bezorgde V(trans,ovt,1_of_2_of_3,ev) brandkastkraken N(soort,mv,neut) hoorden V(trans,ovt,1_of_2_of_3,mv) lichaamsbeweging N(soort,ev,neut) war N(soort,ev,neut) brandkastkraker N(soort,ev,neut) naaimachine N(soort,ev,neut) hoe Adv(gew,betr) modesnufje N(soort,ev,neut) was V(hulp_of_kopp,ovt,1_of_2_of_3,ev) N(soort,ev,neut) V(trans,imp) V(intrans,ovt,1_of_2_of_3,ev) hof N(soort,ev,neut) wat Pron(vrag,neut,attr) Pron(onbep,neut,zelfst) Pron(betr,neut,zelfst) Pron(onbep,neut,attr) haard N(soort,ev,neut) gebleken V(intrans,verl_dw,onverv) V(hulp_of_kopp,verl_dw,onverv) overschakelen V(intrans,inf) hartslag N(soort,ev,neut) M'n Pron(bez,1,ev,neut,attr) voetbalgebeuren N(soort,ev,neut) grondbarriere N(soort,ev,neut) Rembrandtplein N(eigen,ev,neut) Kip N(soort,ev,neut) evangelisten N(soort,mv,neut) besteed V(trans,verl_dw,onverv) Saljoet N(eigen,ev,neut) 1200 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) scheidende V(intrans,teg_dw,verv_neut) abortussen N(soort,mv,neut) schrijf V(trans,ott,1,ev) evenzeer Adv(gew,geen_func,stell,onverv) hou V(intrans,imp) V(intrans,ott,1,ev) stimulerende V(intrans,teg_dw,verv_neut) perron N(soort,ev,neut) zinloos Adj(attr,stell,onverv) Acapulco N(eigen,ev,neut) Radio N(eigen,ev,neut) N(soort,ev,neut) overbrengen V(trans,inf) rondom Prep(voor) schrijn N(soort,ev,neut) doorsnee N(soort,ev,neut) kabinet-Cals N(eigen,ev,neut) hongersnood N(soort,ev,neut) onheil N(soort,ev,neut) administratrice N(soort,ev,neut) stimulerends V(intrans,teg_dw,verv_gen) Fred N(eigen,ev,neut) uitblijven V(intrans,inf) bezorgen V(trans,inf) maharadja's N(soort,mv,neut) kwartje N(soort,ev,neut) Alcohol N(soort,ev,neut) kroost N(soort,ev,neut) bovendrijven V(intrans,inf) eentje Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) eerste Num(rang,bep,attr,onverv) Num(rang,bep,zelfst,onverv) haast N(soort,ev,neut) V(refl,ott,3,ev) wetenschappelijke Adj(attr,stell,verv_neut) zich Pron(ref,3,ev_of_mv) ontvreemd V(trans,verl_dw,onverv) stoel N(soort,ev,neut) schrikt V(intrans,ott,3,ev) Willeke N(eigen,ev,neut) fonteinen N(soort,mv,neut) gelegd V(trans,verl_dw,onverv) kledingstukken N(soort,mv,neut) ribbelvormige Adj(attr,stell,verv_neut) deur N(soort,ev,neut) magische Adj(attr,stell,verv_neut) onberedeneerde Adj(attr,stell,verv_neut) deux N(eigen,ev,neut) verwijderen V(trans,ott,1_of_2_of_3,mv) vernauwen V(trans,ott,1_of_2_of_3,mv) blank Adj(attr,stell,onverv) aanneemt V(trans,ott,3,ev) essayiste N(soort,ev,neut) rollen N(soort,mv,neut) V(intrans,inf) hartkamers N(soort,mv,neut) uitgedrukt V(trans,verl_dw,onverv) plots Adv(gew,geen_func,stell,onverv) Adj(adv,stell,onverv) maatschappij N(soort,ev,neut) gehaktbal N(soort,ev,neut) teruggaaf N(soort,ev,neut) silhouetten N(soort,mv,neut) circa Adv(gew,geen_func,stell,onverv) allesbehalve Adv(gew,geen_func,stell,onverv) bewoners N(soort,mv,neut) besmettelijke Adj(attr,stell,verv_neut) roemruchte Adj(attr,stell,verv_neut) Piet N(eigen,ev,neut) cijfer N(soort,ev,neut) plaat N(soort,ev,neut) negentiende Num(rang,bep,attr,onverv) maandenlang Adj(adv,stell,onverv) schaamt V(refl,ott,3,ev) kotjes N(soort,mv,neut) socio-economische Adj(attr,stell,verv_neut) wijnhuizen N(soort,mv,neut) beschuldiging N(soort,ev,neut) Leuvense Adj(attr,stell,verv_neut) kristal N(soort,ev,neut) klussen N(soort,mv,neut) onhandigheid N(soort,ev,neut) lichtte V(trans,ovt,1_of_2_of_3,ev) Fransen Adj(zelfst,stell,verv_mv) inwonen V(intrans,inf) ex-president N(soort,ev,neut) gebouwd V(trans,verl_dw,onverv) toevoegt V(trans,ott,3,ev) geroutineerde Adj(attr,stell,verv_neut) wee Int maangodin N(soort,ev,neut) weg Adv(gew,geen_func,stell,onverv) N(soort,ev,neut) ziek Adj(attr,stell,onverv) immers Adv(gew,geen_func,stell,onverv) wel Adv(gew,geen_func,stell,onverv) ziel N(soort,ev,neut) koeien N(soort,mv,neut) zien V(trans,inf) V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) V(trans,inf,subst) V(trans,ott,1_of_2_of_3,mv) zeilen V(intrans,inf) zoiets Pron(aanw,neut,zelfst) schoonvader N(soort,ev,neut) opvoeden V(intrans,inf) V(trans,inf) verlenen V(trans,inf) Delftse Adj(attr,stell,verv_neut) wet N(soort,ev,neut) ziet V(trans,ott,3,ev) V(trans,ott,2,ev) V(intrans,ott,3,ev) V(trans,imp) mogelijkerwijs Adv(gew,geen_func,stell,onverv) Tanya N(eigen,ev,neut) weiland N(soort,ev,neut) vakantie(tje) N(soort,ev,neut) wijnkoperijen N(soort,mv,neut) mocht V(hulp,ovt,1_of_2_of_3,ev) Mama's N(eigen,mv,neut) Suffend V(intrans,teg_dw,onverv) afwachten V(trans,inf) enveloppe N(soort,ev,neut) Voor Prep(voor) Conj(onder,met_fin) legde V(trans,ovt,1_of_2_of_3,ev) Kantner N(eigen,ev,neut) begaan V(intrans,verl_dw,onverv) Haarlem-station N(soort,ev,neut) verdwijning N(soort,ev,neut) gelooft V(trans,ott,3,ev) V(intrans,ott,3,ev) prulletjes N(soort,mv,neut) vereenzamen V(intrans,inf) houdt V(trans,ott,3,ev) V(intrans,ott,3,ev) hofhouding N(soort,ev,neut) werkkamer N(soort,ev,neut) Scheherazade N(eigen,ev,neut) besluit N(soort,ev,neut) V(trans,ott,3,ev) actieve Adj(attr,stell,verv_neut) gebogen V(trans,verl_dw,onverv) Tevergeefs Adj(attr,stell,onverv) mode N(soort,ev,neut) exemplaren N(soort,mv,neut) Aanvankelijk Adj(adv,stell,onverv) belangen N(soort,mv,neut) spectaculair Adj(attr,stell,onverv) hapje N(soort,ev,neut) lijdzaamheid N(soort,ev,neut) verlengd V(trans,verl_dw,onverv) gekoppeld V(trans,verl_dw,onverv) daarbij Adv(pron,aanw) halverwege Adv(gew,geen_func,stell,onverv) onverteerbare Adj(attr,stell,verv_neut) begroting N(soort,ev,neut) Twee Num(hoofd,bep,attr,onverv) leger N(soort,ev,neut) zalige Adj(attr,stell,verv_neut) aanpak N(soort,ev,neut) verpakkingen N(soort,mv,neut) hebt V(trans,ott,2,ev) V(hulp,ott,2,ev) keukens N(soort,mv,neut) Kom V(intrans,imp) onlesbare Adj(attr,stell,verv_neut) representatieve Adj(attr,stell,verv_neut) hun Pron(bez,3,mv,neut,attr) Pron(per,3,ev,nom) Pron(per,3,mv,dat_of_acc) vrije Adj(attr,stell,verv_neut) storten V(intrans,ott,1_of_2_of_3,mv) moed N(soort,ev,neut) dichtgeplakt V(trans,verl_dw,onverv) prik N(soort,ev,neut) achter Prep(voor) Adv(deel_adv) Adv(gew,geen_func,stell,onverv) Adv(deel_v) hut N(soort,ev,neut) planten N(soort,mv,neut) kameraden N(soort,mv,neut) tegennatuurlijke Adj(attr,stell,verv_neut) deze Pron(aanw,neut,attr) Pron(aanw,neut,zelfst) zaterdags N(eigen,ev,gen) Taylor N(eigen,ev,neut) drakestaarten N(soort,mv,neut) smoort V(trans,ott,3,ev) Megan N(eigen,ev,neut) beperking N(soort,ev,neut) serveersters N(soort,mv,neut) Serfaus N(eigen,ev,neut) moet V(hulp,ott,3,ev) V(intrans,ott,3,ev) V(hulp,ott,2,ev) V(intrans,ott,2,ev) V(hulp,ott,1,ev) V(intrans,ott,1,ev) paviljoens N(soort,mv,neut) ideologie N(soort,ev,neut) water- N(soort,ev,neut) bewaken V(trans,inf) dageraad N(soort,ev,neut) ijsblokjes N(soort,mv,neut) onefficiente Adj(attr,stell,verv_neut) gelijkstelling N(soort,ev,neut) driftig Adj(adv,stell,onverv) Even Adv(gew,geen_func,stell,onverv) materie N(soort,ev,neut) pension N(soort,ev,neut) voorbijsnellende V(intrans,teg_dw,verv_neut) amateurband N(soort,ev,neut) zesenveertig Num(hoofd,bep,attr,onverv) geduld N(soort,ev,neut) leerkrachten N(soort,mv,neut) grootmoeders N(soort,mv,neut) N(soort,ev,gen) spant V(trans,ott,3,ev) aanvulling N(soort,ev,neut) wie Pron(betr,neut,zelfst) Pron(vrag,neut,attr) katholieken N(soort,mv,neut) plunje N(soort,ev,neut) bruggetje N(soort,ev,neut) startte V(intrans,ovt,1_of_2_of_3,ev) wij Pron(per,1,mv,nom) Athene N(eigen,ev,neut) bestelt V(trans,ott,3,ev) wil V(hulp,ott,3,ev) V(trans,ott,2,ev) V(hulp,ott,1,ev) N(soort,ev,neut) V(intrans,ott,1,ev) V(trans,ott,1,ev) V(intrans,ott,3,ev) V(trans,ott,3,ev) V(hulp,ott,2,ev) strompelde V(intrans,ovt,1_of_2_of_3,ev) poolshoogte N(soort,ev,neut) beginne N(soort,ev,dat) stralende V(intrans,teg_dw,verv_neut) schaars Adj(adv,stell,onverv) genoegen N(soort,ev,neut) wit Adj(attr,stell,onverv) Adj(zelfst,stell,onverv) spookbeeld N(soort,ev,neut) DS'70 N(eigen,ev,neut) Chamberlain N(eigen,ev,neut) bevatte V(trans,ovt,1_of_2_of_3,ev) bescheiden Adj(attr,stell,onverv) bestemd V(trans,verl_dw,onverv) bidden V(intrans,inf) engelen N(soort,mv,neut) verbazing N(soort,ev,neut) moge V(hulp,conj) zitten V(intrans,inf) V(hulp,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) V(hulp,inf) V(intrans,ott,1_of_2_of_3,mv) schapen N(soort,mv,neut) woensdagmiddag N(soort,ev,neut) Abrikozen N(soort,mv,neut) oven N(soort,ev,neut) uitprakkizeren V(trans,inf) over Prep(voor) Adv(gew,geen_func,stell,onverv) Adv(deel_v) Adv(deel_adv) houden V(trans,inf) V(intrans,inf) V(trans,ott,1_of_2_of_3,mv) V(refl,ott,1_of_2_of_3,mv) V(refl,inf) schofferen V(trans,inf) rythm N(soort,mv,neut) verkering N(soort,ev,neut) auto- N(soort,ev,neut) erotiek N(soort,ev,neut) heel Adv(gew,geen_func,stell,onverv) Adj(attr,stell,onverv) zijn Pron(bez,3,ev,neut,attr) V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) V(hulp_of_kopp,inf) V(hulp_of_kopp,ott,1_of_2_of_3,mv) Nelis N(eigen,ev,neut) zakelijke Adj(attr,stell,verv_neut) scheef Adj(attr,stell,onverv) heen Prep(comb) Adv(deel_adv) Adv(gew,geen_func,stell,onverv) Geeft V(trans,ott,3,ev) HEEFT V(trans,ott,3,ev) jongens N(soort,mv,neut) heer N(soort,ev,neut) bezwaar N(soort,ev,neut) basgitaar N(soort,ev,neut) heet V(hulp_of_kopp,ott,3,ev) V(intrans,ott,3,ev) Adj(attr,stell,onverv) scheen V(hulp_of_kopp,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) veertiende Num(rang,bep,attr,onverv) aandelen N(soort,mv,neut) bewaarheid V(trans,verl_dw,onverv) Zee N(eigen,ev,neut) Alfons N(eigen,ev,neut) theedoeken N(soort,mv,neut) tubes N(soort,mv,neut) afgebeeld V(trans,verl_dw,onverv) voorgesteld V(trans,verl_dw,onverv) blauw Adj(attr,stell,onverv) Adj(zelfst,stell,onverv) etage N(soort,ev,neut) Alignement N(eigen,ev,neut) grenadier N(soort,ev,neut) droogt V(trans,ott,2,ev) onderzoeken V(intrans,inf) Vaak Adv(gew,geen_func,stell,onverv) Zet V(trans,imp) gevecht N(soort,ev,neut) passieve Adj(attr,stell,verv_neut) stomp N(soort,ev,neut) folklore N(soort,ev,neut) onderzoeker N(soort,ev,neut) actiegroepen N(soort,mv,neut) buitenbeentje N(soort,ev,neut) vergemakkelijken V(trans,ott,1_of_2_of_3,mv) beveelt V(trans,ott,3,ev) bereikbaar Adj(attr,stell,onverv) Eenmaal Adv(gew,geen_func,stell,onverv) dezelfde Pron(aanw,neut,attr) Pron(aanw,neut,zelfst) opgekomen V(intrans,verl_dw,onverv) Lyceum N(eigen,ev,neut) premieinkomen N(soort,ev,neut) zijdelings Adj(adv,stell,onverv) stond V(intrans,ovt,1_of_2_of_3,ev) V(hulp,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) vleselijke Adj(attr,stell,verv_neut) behoeften N(soort,mv,neut) hoeveelheid N(soort,ev,neut) stuurmaten N(soort,mv,neut) Stewardess N(soort,ev,neut) Harold N(eigen,ev,neut) gasvlam N(soort,ev,neut) schoenen N(soort,mv,neut) toneelproducenten N(soort,mv,neut) konden V(hulp,ovt,1_of_2_of_3,mv) zilt Adj(attr,stell,onverv) stuurhoes N(soort,ev,neut) Wrijf V(trans,imp) postkantoren N(soort,mv,neut) kansen N(soort,mv,neut) einde N(soort,ev,neut) Victoria N(eigen,ev,neut) koningin N(soort,ev,neut) Vught N(eigen,ev,neut) bijterig Adj(attr,stell,onverv) stillen V(trans,inf) begrijp V(trans,ott,1,ev) kwekerij N(soort,ev,neut) grazige Adj(attr,stell,verv_neut) fotomodel N(soort,ev,neut) Valk-methode N(soort,ev,neut) vermochten V(hulp_of_kopp,ovt,1_of_2_of_3,mv) grappige Adj(zelfst,stell,verv_neut) ochtends N(soort,ev,gen) onvoldoende Adj(attr,stell,verv_neut) cocabladeren N(soort,mv,neut) onderwerpt V(trans,ott,3,ev) stoom N(soort,ev,neut) samenstellen V(trans,inf,subst) likkebaardend V(intrans,teg_dw,onverv) smakelijk Adj(adv,stell,onverv) Adj(attr,stell,onverv) stoot V(trans,ott,3,ev) frequentie N(soort,ev,neut) versierde V(trans,verl_dw,verv_neut) Kun V(hulp,ott,2,ev) verpleegsters N(soort,mv,neut) plaatsnamen N(soort,mv,neut) bovenhand N(soort,ev,neut) wijnrood Adj(attr,stell,onverv) Stofzuigen V(intrans,inf) werkzaamheden N(soort,mv,neut) jongere Adj(attr,vergr,verv_neut) Adj(zelfst,vergr,verv_neut) baseerde V(trans,ovt,1_of_2_of_3,ev) verschillende Pron(onbep,neut,attr) V(intrans,teg_dw,verv_neut) wachtkamers N(soort,mv,neut) uittrok V(trans,ovt,1_of_2_of_3,ev) koemest N(soort,ev,neut) adresseren V(trans,inf) handvol N(soort,ev,neut) verwaarlozing N(soort,ev,neut) vanwege Prep(voor) groepen N(soort,mv,neut) anderhalfjarigen Adj(zelfst,stell,verv_mv) vocals N(soort,mv,neut) zeurt V(intrans,ott,3,ev) fotografen N(soort,mv,neut) typen N(soort,mv,neut) vertelde V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) types N(soort,mv,neut) kliniekachtige Adj(attr,stell,verv_neut) gekartelde V(trans,verl_dw,verv_neut) Deventenaren N(soort,mv,neut) weggebroken V(trans,verl_dw,onverv) versieren V(intrans,inf) Zie V(trans,imp) weerstanden N(soort,mv,neut) onbetwistbare Adj(attr,stell,verv_neut) Zij Pron(per,3,ev_of_mv,nom) erotische Adj(attr,stell,verv_neut) centrale Adj(attr,stell,verv_neut) allerlei Pron(onbep,neut,attr) straathoek N(soort,ev,neut) flauwekul N(soort,ev,neut) wol N(soort,ev,neut) molestatie N(soort,ev,neut) won V(trans,ovt,1_of_2_of_3,ev) vaart N(soort,ev,neut) Zit V(trans,imp) verdraagzaamheid N(soort,ev,neut) geparfumeerd V(trans,verl_dw,onverv) wou V(hulp_of_kopp,ovt,1_of_2_of_3,ev) vrijdags N(eigen,ev,gen) zelfdiscipline N(soort,ev,neut) macadam N(soort,ev,neut) gedachten N(soort,mv,neut) baarde V(trans,ovt,1_of_2_of_3,ev) werelddelen N(soort,mv,neut) kwam V(intrans,ovt,1_of_2_of_3,ev) V(hulp,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) Claus N(eigen,ev,neut) eventueel Adj(adv,stell,onverv) Adj(attr,stell,onverv) torsend V(intrans,teg_dw,onverv) doorratelen V(intrans,ott,1_of_2_of_3,mv) Wurmbrand N(eigen,ev,neut) voorloper N(soort,ev,neut) werkstuk N(soort,ev,neut) snijd V(trans,imp) kenmerk N(soort,ev,neut) uitzet V(intrans,ott,3,ev) storm N(soort,ev,neut) architect N(soort,ev,neut) rondhangen V(intrans,inf) pistool N(soort,ev,neut) stort V(refl,ott,1,ev) beperken V(refl,inf) V(trans,inf) Wijnkeldertje N(eigen,ev,neut) mensen-die-er-nog-nietaan-toe-zijn N(soort,mv,neut) tabletten N(soort,mv,neut) mond N(soort,ev,neut) Hollands Adj(zelfst,stell,onverv) Adj(attr,stell,verv_gen) Adj(attr,stell,onverv) duurt V(trans,ott,3,ev) V(intrans,ott,3,ev) Sonneveld N(eigen,ev,neut) bejaarden Adj(zelfst,stell,verv_mv) vierhoog Adv(gew,geen_func,stell,onverv) schilderen V(trans,inf,subst) V(intrans,ott,1_of_2_of_3,mv) held N(soort,ev,neut) Aragon N(eigen,ev,neut) hele Adj(attr,stell,verv_neut) Adv(gew,geen_func,stell,verv_neut) plank N(soort,ev,neut) eeuwen N(soort,mv,neut) Heilig Adj(attr,stell,onverv) bedoeld V(trans,verl_dw,onverv) hoereren V(intrans,inf) tuintafel N(soort,ev,neut) huichelarij N(soort,ev,neut) gedetineerd V(trans,verl_dw,onverv) vochtig-glanzend Adj(attr,stell,onverv) plant N(soort,ev,neut) reilt V(intrans,ott,3,ev) gebouwtje N(soort,ev,neut) 8-wielige Adj(attr,stell,verv_neut) opgewekte Adj(attr,stell,verv_neut) inhoud N(soort,ev,neut) Kaukonen N(eigen,ev,neut) teergroene Adj(attr,stell,verv_neut) Loesje N(eigen,ev,neut) overblijft V(intrans,ott,3,ev) ALLE Pron(onbep,neut,attr) bedoelt V(trans,ott,3,ev) pestbui N(soort,ev,neut) Rhuys N(eigen,ev,neut) Langzaam Adj(adv,stell,onverv) Grijze Adj(attr,stell,verv_neut) helpen V(trans,inf) V(intrans,inf) V(trans,ott,1_of_2_of_3,mv) zaterdagavond N(soort,ev,neut) mooi Adj(attr,stell,onverv) werkstukje N(soort,ev,neut) kassie-kijken V(intrans,inf) zinnen N(soort,mv,neut) achtereenvolgende Adj(attr,stell,verv_neut) onoprecht Adj(attr,stell,onverv) laatst-verschenen Adj(attr,stell,onverv) FIOM-organisaties N(soort,mv,neut) wilson N(eigen,ev,neut) wedstrijd N(soort,ev,neut) doorstroming N(soort,ev,neut) gevestigde V(trans,verl_dw,verv_neut) eeuwenlang Adj(adv,stell,onverv) wiens Pron(betr,neut,zelfst) gesmade V(trans,verl_dw,verv_neut) gymnastische Adj(attr,stell,verv_neut) maximaal Adj(adv,stell,onverv) feest N(soort,ev,neut) Haagse N(eigen,ev,neut) Adj(attr,stell,verv_neut) thermastollen N(soort,mv,neut) bruidsjurk N(soort,ev,neut) Harriet N(eigen,ev,neut) staal N(soort,ev,neut) staan V(intrans,inf) V(trans,ott,1_of_2_of_3,mv) V(intrans,ott,1_of_2_of_3,mv) V(hulp,ott,1_of_2_of_3,mv) V(trans,inf) V(hulp,inf) vakbeweging N(soort,ev,neut) Amsterdamse Adj(attr,stell,verv_neut) kwaliteiten N(soort,mv,neut) interview N(soort,ev,neut) staat V(intrans,ott,3,ev) V(hulp,ott,3,ev) V(intrans,ott,2,ev) N(soort,ev,neut) voorstelling N(soort,ev,neut) zigeunerorkest N(soort,ev,neut) levend V(intrans,teg_dw,onverv) groepje N(soort,ev,neut) Leopold N(eigen,ev,neut) kruiden N(soort,mv,neut) geldtransporten N(soort,mv,neut) fantasiepanty N(soort,ev,neut) scheurde V(trans,ovt,1_of_2_of_3,ev) verwikkelingen N(soort,mv,neut) premiewoning N(soort,ev,neut) voorlopig Adj(adv,stell,onverv) scheepsratten N(soort,mv,neut) gemaakt V(trans,verl_dw,onverv) V(refl,verl_dw,onverv) geduwd V(trans,verl_dw,onverv) verdunde V(trans,verl_dw,verv_neut) confectiewereld N(soort,ev,neut) staren V(intrans,inf) V(refl,ott,1_of_2_of_3,mv) opzichte N(soort,ev,dat) genieten V(intrans,inf) V(trans,inf) gedistilleerd N(soort,ev,neut) goreng N(eigen,ev,neut) Alcoholisme N(soort,ev,neut) acceptabel Adj(attr,stell,onverv) Bakersfeld N(eigen,ev,neut) Pius N(eigen,ev,neut) Quinze N(eigen,ev,neut) Vessem N(eigen,ev,neut) monoloog N(soort,ev,neut) Aardappels N(soort,mv,neut) paviljoen N(soort,ev,neut) Airplane N(eigen,ev,neut) afhoudend V(intrans,teg_dw,onverv) omkeerbaarheid N(soort,ev,neut) Daarvan Adv(pron,aanw) inbreken V(intrans,inf) ministerie N(soort,ev,neut) leven N(soort,ev,neut) V(intrans,ott,1_of_2_of_3,mv) V(intrans,inf) V(trans,inf) schilderij N(soort,ev,neut) huizenrijen N(soort,mv,neut) haartint N(soort,ev,neut) nadat Conj(onder,met_fin) eeuwig Adj(adv,stell,onverv) violet Adj(zelfst,stell,onverv) bende N(soort,ev,neut) woonwagen N(soort,ev,neut) beperkt V(trans,verl_dw,onverv) V(refl,ott,3,ev) aanvullingen N(soort,mv,neut) hardhandige Adj(attr,stell,verv_neut) Zou V(hulp,ovt,1_of_2_of_3,ev) eeuwige Adj(attr,stell,verv_neut) Lazenby N(eigen,ev,neut) giethars N(soort,ev,neut) daardoor Adv(pron,aanw) platform N(soort,ev,neut) sprookjesfiguur N(soort,ev,neut) doorstaan V(trans,ott,1_of_2_of_3,mv) filmprodukt N(soort,ev,neut) jeugdsex N(soort,ev,neut) sanatorium N(soort,ev,neut) uitgelazerd V(trans,verl_dw,onverv) wedstrijden N(soort,mv,neut) omelet N(soort,ev,neut) nabije Adj(attr,stell,verv_neut) impulsen N(soort,mv,neut) hartfuncties N(soort,mv,neut) vruchtbaarheid N(soort,ev,neut) wierp V(trans,ovt,1_of_2_of_3,ev) man-vrouw N(soort,ev,neut) herfstbloemen N(soort,mv,neut) honderddertig Num(hoofd,bep,attr,onverv) wormen N(soort,mv,neut) benen N(soort,mv,neut) clownsachtigs Adj(attr,stell,verv_gen) stortte V(trans,ovt,1_of_2_of_3,ev) achtte V(trans,ovt,1_of_2_of_3,ev) ondergrondse Adj(attr,stell,verv_neut) Valt V(intrans,ott,3,ev) ontwerpen V(trans,inf,subst) eventuele Adj(attr,stell,verv_neut) eenzelfde Pron(aanw,neut,attr) ontwerper N(soort,ev,neut) trad V(intrans,ovt,1_of_2_of_3,ev) belazerd V(trans,verl_dw,onverv) novene N(soort,ev,neut) dagelijks Adj(adv,stell,onverv) N(eigen,ev,neut) Adj(attr,stell,onverv) tros-chrysantjes N(soort,mv,neut) minachtend V(intrans,teg_dw,onverv) vermenigvuldigen V(refl,ott,1_of_2_of_3,mv) trap N(soort,ev,neut) injectienaald N(soort,ev,neut) uitwerking N(soort,ev,neut) verzameld V(trans,verl_dw,onverv) maag N(soort,ev,neut) wakker Adj(attr,stell,onverv) Jamesy's N(eigen,ev,gen) vurehout N(soort,ev,neut) Cruyff N(eigen,ev,neut) gevergd V(trans,verl_dw,onverv) maak V(trans,ott,1,ev) V(trans,imp) maal N(soort,ev,neut) maan N(soort,ev,neut) selectie N(soort,ev,neut) Givenchy N(eigen,ev,neut) scherp Adj(attr,stell,onverv) Adj(adv,stell,onverv) maar Conj(neven) Adv(gew,geen_func,stell,onverv) verzamelt V(trans,ott,3,ev) maat N(soort,ev,neut) Costa N(eigen,ev,neut) kijkers N(soort,mv,neut) warmte N(soort,ev,neut) artikelen N(soort,mv,neut) Omsk N(eigen,ev,neut) bovenlaag N(soort,ev,neut) praten V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) V(trans,inf) geknutseld V(intrans,verl_dw,onverv) verzaligd Adj(adv,stell,onverv) opgemerkt V(trans,verl_dw,onverv) hieruit Adv(pron,aanw) Enkele Pron(onbep,neut,attr) Jorgen N(eigen,ev,neut) vertroetelde V(trans,verl_dw,verv_neut) roods Adj(attr,stell,verv_gen) algemener Adj(attr,vergr,onverv) Sandels N(eigen,ev,neut) N(soort,ev,neut) Konings N(eigen,ev,neut) verfrommeld V(trans,verl_dw,onverv) stunteligheid N(soort,ev,neut) mannelijke Adj(attr,stell,verv_neut) schuldig Adj(attr,stell,onverv) miles N(eigen,ev,neut) Kinderen N(soort,mv,neut) iem Misc(vreemd) kabouter N(soort,ev,neut) bruikbaar Adj(attr,stell,onverv) volwassenen Adj(zelfst,stell,verv_mv) metier N(soort,ev,neut) ies Misc(vreemd) Helaas Int Treleaven N(eigen,ev,neut) landing N(soort,ev,neut) zelfgemaakte Adj(attr,stell,verv_neut) origineel Adj(adv,stell,onverv) ging V(intrans,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) V(hulp,ovt,1_of_2_of_3,ev) uitvoerige Adj(attr,stell,verv_neut) literatuurlijstkeuze N(soort,ev,neut) Creveld N(eigen,ev,neut) voorzichtig Adj(attr,stell,onverv) Adj(adv,stell,onverv) Tanzaniaans Adj(attr,stell,onverv) vertroetelen V(trans,inf) muilezels N(soort,mv,neut) zuidelijke Adj(attr,stell,verv_neut) koorknapengezicht N(soort,ev,neut) protestantse Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut) kelder N(soort,ev,neut) universiteit N(soort,ev,neut) obers N(soort,mv,neut) Noodzakelijk Adj(attr,stell,onverv) geruild V(trans,verl_dw,onverv) missen V(trans,inf) uitzenddata N(soort,mv,neut) zouden V(hulp,ovt,1_of_2_of_3,mv) beinvloedt V(trans,ott,3,ev) selectiecommissie N(soort,ev,neut) overspel N(soort,ev,neut) populaire Adj(attr,stell,verv_neut) sinds Prep(voor) Conj(onder,met_fin) heus Adj(adv,stell,onverv) Lam N(eigen,ev,neut) bezorging N(soort,ev,neut) MAN N(soort,ev,neut) Shapiro N(eigen,ev,neut) acteurs N(soort,mv,neut) innerlijk Adj(attr,stell,onverv) N(soort,ev,neut) Adj(adv,stell,onverv) Lau N(eigen,ev,neut) pijlen N(soort,mv,neut) tegenwoordig Adj(adv,stell,onverv) hoger Adj(attr,vergr,onverv) trek N(soort,ev,neut) pijler N(soort,ev,neut) rotkop N(soort,ev,neut) ervaringen N(soort,mv,neut) kniebuigingen N(soort,mv,neut) Tiel N(eigen,ev,neut) geruime Adj(attr,stell,verv_neut) Tien Num(hoofd,bep,zelfst,onverv) N(soort,ev,neut) opwachten V(trans,inf) opgepakt V(trans,verl_dw,onverv) verscheen V(intrans,ovt,1_of_2_of_3,ev) jassen N(soort,mv,neut) beletten V(trans,inf) constateerbare Adj(attr,stell,verv_neut) voorbeeldige Adj(attr,stell,verv_neut) lindebomen N(soort,mv,neut) Eerste Num(rang,bep,attr,onverv) lachjes N(soort,mv,neut) seksen V(intrans,inf) buitenland N(soort,ev,neut) verdacht V(trans,verl_dw,onverv) Adj(attr,stell,onverv) acht Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) V(trans,ott,1,ev) tafel N(soort,ev,neut) omhoog Adv(gew,geen_func,stell,onverv) zojuist Adv(gew,geen_func,stell,onverv) moesten V(hulp,ovt,1_of_2_of_3,mv) V(intrans,ovt,1_of_2_of_3,mv) bedienen V(refl,inf) V(trans,inf) grootste Adj(attr,overtr,verv_neut) Adj(zelfst,stell,verv_neut) cameraman N(soort,ev,neut) panty N(soort,ev,neut) schatting N(soort,ev,neut) werkkamers N(soort,mv,neut) dieptepunt N(soort,ev,neut) rakkerd N(soort,ev,neut) devies N(soort,ev,neut) woedende Adj(attr,stell,verv_neut) miniem Adj(attr,stell,onverv) repareren V(trans,inf) blijven V(hulp_of_kopp,inf) V(intrans,ott,1_of_2_of_3,mv) V(intrans,inf) V(hulp_of_kopp,ott,1_of_2_of_3,mv) Amstelhotel N(eigen,ev,neut) narigheid N(soort,ev,neut) greep V(trans,ovt,1_of_2_of_3,ev) humor N(soort,ev,neut) andere Pron(onbep,neut,attr) Pron(onbep,neut,zelfst) verzoend V(intrans,verl_dw,onverv) onstuimige Adj(attr,stell,verv_neut) straatje N(soort,ev,neut) rooie Adj(zelfst,stell,verv_neut) Adj(attr,stell,verv_neut) regime N(soort,ev,neut) telefoon N(soort,ev,neut) Gods N(eigen,ev,gen) Napoleontische Adj(attr,stell,verv_neut) gehuil N(soort,ev,neut) wagen N(soort,ev,neut) V(intrans,inf) N(soort,mv,neut) V(trans,inf) anders Adv(gew,geen_func,stell,onverv) Pron(onbep,gen,attr) raakte V(trans,ovt,1_of_2_of_3,ev) V(hulp_of_kopp,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) losgemaakt V(trans,verl_dw,onverv) omstandigheden N(soort,mv,neut) Tucker N(eigen,ev,neut) hartekreet N(soort,ev,neut) gespeculeerd V(intrans,verl_dw,onverv) Goed Adj(attr,stell,onverv) Adj(adv,stell,onverv) Immers Adv(gew,geen_func,stell,onverv) Zoiets Pron(aanw,neut,zelfst) dijbeen N(soort,ev,neut) Lassagne N(eigen,ev,neut) zilver Adj(attr,stell,onverv) N(soort,ev,neut) gedrukt V(trans,verl_dw,onverv) overtrokken V(trans,verl_dw,onverv) ijs N(soort,ev,neut) herinnering N(soort,ev,neut) stoelen N(soort,mv,neut) Bech N(eigen,ev,neut) separatistische Adj(attr,stell,verv_neut) vrouwelijke Adj(attr,stell,verv_neut) Beck N(eigen,ev,neut) gillen V(intrans,inf) hoeven V(hulp,ott,1_of_2_of_3,mv) Leg V(trans,imp) partner N(soort,ev,neut) gedeeltelijk Adj(adv,stell,onverv) gepolijste V(trans,verl_dw,verv_neut) hoever Adv(gew,betr) observatiekliniek N(soort,ev,neut) oplage N(soort,ev,neut) geschoeid V(trans,verl_dw,onverv) benadrukt V(trans,verl_dw,onverv) verblijf N(soort,ev,neut) bioscoop N(soort,ev,neut) Les N(eigen,ev,neut) wereld N(soort,ev,neut) Let V(intrans,imp) vetzuren N(soort,mv,neut) Texas-idee N(soort,ev,neut) MET Prep(voor) paters N(soort,mv,neut) oktobernummer N(soort,ev,neut) stamt V(intrans,ott,3,ev) woonwagens N(soort,mv,neut) moorddadig Adj(attr,stell,onverv) aantrekken V(trans,ott,1_of_2_of_3,mv) V(trans,inf) kantjes N(soort,mv,neut) geschenke N(soort,ev,dat) verorberd V(trans,verl_dw,onverv) amusement N(soort,ev,neut) stand N(soort,ev,neut) beroemd Adj(attr,stell,onverv) Renkel N(eigen,ev,neut) omvat V(trans,ott,3,ev) schat V(trans,ott,1,ev) V(trans,ott,3,ev) Angerstein N(eigen,ev,neut) Zorg V(trans,imp) uitgekozen V(trans,verl_dw,onverv) Eindelijk Adv(gew,geen_func,stell,onverv) originele Adj(attr,stell,verv_neut) zenuwstelsel N(soort,ev,neut) Vlaming N(soort,ev,neut) Tijd N(soort,ev,neut) luchtpiraterij N(soort,ev,neut) krijgt V(trans,ott,3,ev) V(trans,ott,2,ev) rijden V(intrans,inf) uitvoering N(soort,ev,neut) onuitgesproken Adj(attr,stell,onverv) zusje N(soort,ev,neut) passagiers N(soort,mv,neut) hoekige Adj(attr,stell,verv_neut) Achter Prep(voor) N(soort,ev,neut) energieker Adj(attr,vergr,onverv) veertig Num(hoofd,bep,attr,onverv) bepaalde Pron(onbep,neut,attr) V(trans,verl_dw,verv_neut) koffer N(soort,ev,neut) springt V(intrans,ott,3,ev) mateloos Adj(adv,stell,onverv) middeleeuws Adj(attr,stell,onverv) geboorte N(soort,ev,neut) verrekijkers N(soort,mv,neut) serveren V(trans,inf) schepen N(soort,mv,neut) weigerachtige Adj(attr,stell,verv_neut) oorsprong N(soort,ev,neut) tweemaal Adv(gew,geen_func,stell,onverv) bezichtigen V(trans,inf) dansen V(intrans,inf) leed V(trans,ovt,1_of_2_of_3,ev) ernaar Adv(pron,onbep) Portugese Adj(attr,stell,verv_neut) leef V(intrans,ott,2,ev) V(intrans,ott,1,ev) leeg Adj(attr,stell,onverv) verfilmd V(trans,verl_dw,onverv) verstreken V(intrans,ovt,1_of_2_of_3,mv) verkeersweg N(soort,ev,neut) leek V(hulp_of_kopp,ovt,1_of_2_of_3,ev) N(soort,ev,neut) V(intrans,ovt,1_of_2_of_3,ev) Boekarest N(eigen,ev,neut) Meyden N(eigen,ev,neut) DENKT V(trans,ott,3,ev) leer N(soort,ev,neut) lees V(trans,ott,1,ev) persoonlijke Adj(attr,stell,verv_neut) toneelspeelkunst N(soort,ev,neut) geluidstechnicus N(soort,ev,neut) factoren N(soort,mv,neut) duel N(soort,ev,neut) keelgat N(soort,ev,neut) slachtoffers N(soort,mv,neut) stapt V(intrans,ott,3,ev) hypocrisie N(soort,ev,neut) kunst N(soort,ev,neut) zeven Num(hoofd,bep,attr,onverv) N(soort,ev,neut) doorstane V(trans,verl_dw,verv_neut) luisteraars N(soort,mv,neut) Luther N(eigen,ev,neut) splinternieuwe Adj(attr,stell,verv_neut) uitvoerbaar Adj(attr,stell,onverv) opstelt V(refl,ott,2,ev) verhelpen V(trans,inf) traden V(intrans,ovt,1_of_2_of_3,mv) zindelijk Adj(attr,stell,onverv) verlinkt V(trans,verl_dw,onverv) verschenen V(intrans,ovt,1_of_2_of_3,mv) V(intrans,verl_dw,onverv) Lip Misc(vreemd) midirokken N(soort,mv,neut) liggende V(intrans,teg_dw,verv_neut) interpretatie N(soort,ev,neut) toelegde V(intrans,ovt,1_of_2_of_3,ev) 1300 Num(hoofd,bep,attr,onverv) culturen N(soort,mv,neut) behoeftigheid N(soort,ev,neut) opspaarde V(trans,ovt,1_of_2_of_3,ev) glijdt V(intrans,ott,3,ev) Marilyn N(eigen,ev,neut) Zweden N(soort,mv,neut) N(eigen,ev,neut) vertegenwoordigt V(trans,ott,3,ev) behendigheid N(soort,ev,neut) lege Adj(attr,stell,verv_neut) mama N(soort,ev,neut) zaterdag N(eigen,ev,neut) ongelukkige Adj(attr,stell,verv_neut) o.a. Adv(gew,geen_func,stell,onverv) sappige Adj(attr,stell,verv_neut) hoogbegaafden Adj(zelfst,stell,verv_mv) malicieus Adj(adv,stell,onverv) essays N(soort,mv,neut) Lyme N(eigen,ev,neut) tegenover Prep(voor) Adv(deel_v) jammer Adj(attr,stell,onverv) baldadigheden N(soort,mv,neut) vooruitlopen V(intrans,inf) legt V(trans,ott,3,ev) model N(soort,ev,neut) diegenen Pron(aanw,neut,zelfst) zomer N(soort,ev,neut) lijnen N(soort,mv,neut) gistcellen N(soort,mv,neut) Bezittingen N(soort,mv,neut) ontspanning N(soort,ev,neut) Eileen N(eigen,ev,neut) ir. N(eigen,ev,neut) ander Pron(onbep,neut,attr) Pron(onbep,neut,zelfst) 9-jarig Adj(attr,stell,onverv) doodgeschoten V(trans,verl_dw,onverv) herdenking N(soort,ev,neut) kransslagaderen N(soort,mv,neut) Tine N(eigen,ev,neut) terrasje N(soort,ev,neut) uitnodigde V(trans,ovt,1_of_2_of_3,ev) bandrecorder N(soort,ev,neut) lijntje N(soort,ev,neut) schreeuwend V(intrans,teg_dw,onverv) koffie N(soort,ev,neut) toevallig Adj(adv,stell,onverv) paranoide Adj(attr,stell,onverv) glazen N(soort,mv,neut) Adj(attr,stell,onverv) vervaardiger N(soort,ev,neut) klein Adj(attr,stell,onverv) zuivere Adj(attr,stell,verv_neut) wuifde V(trans,ovt,1_of_2_of_3,ev) onrustig Adj(attr,stell,onverv) besprekingen N(soort,mv,neut) smaakvolle Adj(attr,stell,verv_neut) groenten N(soort,mv,neut) toepassing N(soort,ev,neut) trof V(trans,ovt,1_of_2_of_3,ev) fantasierijk Adj(attr,stell,onverv) echte Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut) trok V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) Boeddhistische Adj(attr,stell,verv_neut) ongezouten Adj(attr,stell,onverv) metamorfose N(soort,ev,neut) Stigwood N(eigen,ev,neut) gekke Adj(zelfst,stell,verv_neut) paradijs N(soort,ev,neut) onderhoud N(soort,ev,neut) Achttien Num(hoofd,bep,attr,onverv) boter N(soort,ev,neut) Adj(attr,stell,onverv) bezocht V(trans,verl_dw,onverv) V(trans,ovt,1_of_2_of_3,ev) verkoopt V(trans,ott,3,ev) witte Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut) duizend Num(hoofd,bep,attr,onverv) grens N(soort,ev,neut) Olympische N(eigen,mv,neut) kopieus Adj(adv,stell,onverv) voorbij Adv(deel_v) Adj(attr,stell,onverv) Adj(adv,stell,onverv) talent N(soort,ev,neut) doordat Conj(onder,met_fin) duit N(soort,ev,neut) bijgestaan V(trans,verl_dw,onverv) evenwel Adv(gew,geen_func,stell,onverv) wolkjes N(soort,mv,neut) publicaties N(soort,mv,neut) benut V(trans,verl_dw,onverv) schitterend Adj(attr,stell,onverv) huwelijksreisdoel N(soort,ev,neut) analyseren V(trans,inf) flinke Adj(attr,stell,verv_neut) belangstelling N(soort,ev,neut) ist Misc(vreemd) eieren N(soort,mv,neut) Belg N(soort,ev,neut) Boheemse Adj(attr,stell,verv_neut) matras N(soort,ev,neut) beoogt V(hulp,ott,3,ev) Bell N(eigen,ev,neut) wederzijdse Adj(attr,stell,verv_neut) opperde V(trans,ovt,1_of_2_of_3,ev) pargyline N(soort,ev,neut) verachtte V(trans,ovt,1_of_2_of_3,ev) zekere Pron(onbep,neut,attr) Adj(attr,stell,verv_neut) ivoorkleurige Adj(attr,stell,verv_neut) Rooymans N(eigen,ev,neut) manifesteert V(refl,ott,3,ev) schil V(trans,imp) stotteren V(intrans,inf) terugtocht N(soort,ev,neut) medestanders N(soort,mv,neut) schip N(soort,ev,neut) hypothese N(soort,ev,neut) kakelkont N(soort,ev,neut) Rutgers N(eigen,ev,neut) politieagenten N(soort,mv,neut) Casa N(eigen,ev,neut) tegenin Adv(deel_v) woeste Adj(attr,stell,verv_neut) musisie N(soort,mv,neut) minnaressen N(soort,mv,neut) vogel N(soort,ev,neut) verdrukking N(soort,ev,neut) medemens N(soort,ev,neut) collegebanken N(soort,mv,neut) juist Adj(adv,stell,onverv) Adj(attr,stell,onverv) officieel Adj(adv,stell,onverv) allebei Num(hoofd,bep,zelfst,onverv) drongen V(intrans,ovt,1_of_2_of_3,mv) spraakgebruik N(soort,ev,neut) Fabelon N(eigen,ev,neut) geschoten V(intrans,verl_dw,onverv) medische Adj(attr,stell,verv_neut) levensgenieter N(soort,ev,neut) inlaat V(refl,ott,2,ev) ideeen N(soort,mv,neut) doodvallen V(intrans,inf) uitbundiger Adj(adv,vergr,onverv) totaalbedrag N(soort,ev,neut) achtergronden N(soort,mv,neut) gezag N(soort,ev,neut) Los N(eigen,ev,neut) aanbod N(soort,ev,neut) geheugen N(soort,ev,neut) Washington N(eigen,ev,neut) premisse N(soort,ev,neut) Lou N(eigen,ev,neut) aangetaste V(trans,verl_dw,verv_neut) bellen V(trans,ott,1_of_2_of_3,mv) anti-stof N(soort,ev,neut) gangen N(soort,mv,neut) geserveerde V(trans,verl_dw,verv_neut) ondervoede V(trans,verl_dw,verv_neut) Vtekens N(soort,mv,neut) loonbelasting N(soort,ev,neut) bourgeois Misc(vreemd) fascineren V(intrans,inf) dwaling N(soort,ev,neut) bijster Adv(gew,geen_func,stell,onverv) gehesen V(trans,verl_dw,onverv) Fritz N(eigen,ev,neut) breder Adj(attr,vergr,onverv) interpolvestigingen N(soort,mv,neut) dateert V(intrans,ott,3,ev) reageren V(trans,inf) V(intrans,ott,1_of_2_of_3,mv) karakterfouten N(soort,mv,neut) pulletje N(soort,ev,neut) luister V(intrans,ott,1,ev) verbijsterd V(trans,verl_dw,onverv) aangeboden V(trans,verl_dw,onverv) modezaakjes N(soort,mv,neut) informeerde V(trans,ovt,1_of_2_of_3,ev) onaardse Adj(attr,stell,verv_neut) briljanten N(soort,mv,neut) generaties N(soort,mv,neut) nagels N(soort,mv,neut) Wetenschappelijk Adj(attr,stell,onverv) marconist N(soort,ev,neut) hartelust N(soort,ev,neut) gekeerd V(trans,verl_dw,onverv) V(refl,verl_dw,onverv) opgeheven V(trans,verl_dw,onverv) spectaculaire Adj(attr,stell,verv_neut) veroudering N(soort,ev,neut) velerlei Pron(onbep,neut,attr) collecties N(soort,mv,neut) aanspreken V(trans,inf) mate N(soort,ev,neut) hemelse Adj(attr,stell,verv_neut) z'n Pron(bez,3,ev,neut,attr) middag N(soort,ev,neut) groentenafval N(soort,ev,neut) inzinking N(soort,ev,neut) fiets N(soort,ev,neut) Erlkonig N(eigen,ev,neut) vrouwtje N(soort,ev,neut) Wilson N(eigen,ev,neut) liedje N(soort,ev,neut) tirannie N(soort,ev,neut) voorgekomen V(intrans,verl_dw,onverv) gehuwd V(intrans,verl_dw,onverv) nummer N(soort,ev,neut) dubbelzinnige Adj(attr,stell,verv_neut) priveleven N(soort,ev,neut) mateloze Adj(attr,stell,verv_neut) Markelo N(eigen,ev,neut) uiteraard Adv(gew,geen_func,stell,onverv) tekort N(soort,ev,neut) Adj(attr,stell,onverv) Adj(adv,stell,onverv) fantastisch Adj(attr,stell,onverv) Adj(adv,stell,onverv) voorschijn N(soort,ev,neut) Bouwman N(eigen,ev,neut) pakken V(trans,inf) rechterzijde N(soort,ev,neut) bunders N(soort,mv,neut) afdoend V(intrans,teg_dw,onverv) aanmerking N(soort,ev,neut) geregeld V(trans,verl_dw,onverv) Adj(adv,stell,onverv) schrikwekkende Adj(attr,stell,verv_neut) jaarproduktie N(soort,ev,neut) gevolgen N(soort,mv,neut) Bantammerstraat N(eigen,ev,neut) daarbuiten Adv(pron,aanw) psycholoog N(soort,ev,neut) arm- N(soort,mv,neut) kalmer Adj(adv,vergr,onverv) Europa N(eigen,ev,neut) stadje N(soort,ev,neut) pagina's N(soort,mv,neut) versterken V(intrans,inf) bedrijf N(soort,ev,neut) luchtzak N(soort,ev,neut) kijk V(trans,imp) V(intrans,ott,1,ev) sterft V(intrans,ott,3,ev) topgroepen N(soort,mv,neut) halfelf Num(hoofd,bep,zelfst,onverv) hengelaars N(soort,mv,neut) voorgevoel N(soort,ev,neut) Dikwijls Adv(gew,geen_func,stell,onverv) borstbeelden N(soort,mv,neut) voortkomt V(intrans,ott,3,ev) bewonderenswaardig Adj(attr,stell,onverv) dupe N(soort,ev,neut) oververmoeide Adj(attr,stell,verv_neut) potten N(soort,mv,neut) bindt V(refl,ott,3,ev) Carven N(eigen,ev,neut) gegronde Adj(attr,stell,verv_neut) lengte N(soort,ev,neut) Berg V(trans,imp) bewezen V(trans,verl_dw,onverv) gezet V(trans,verl_dw,onverv) penny N(soort,ev,neut) gadegeslagen V(trans,verl_dw,onverv) wraak N(soort,ev,neut) Bert N(eigen,ev,neut) Terecht Adv(gew,geen_func,stell,onverv) veranderd V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv) executie N(soort,ev,neut) biografieen N(soort,mv,neut) HAAR Pron(per,3,ev,dat_of_acc) Gaat V(intrans,ott,3,ev) V(trans,imp) schop N(soort,ev,neut) kleine Adj(attr,stell,verv_neut) N(eigen,ev,neut) hemzelf Pron(per,3,ev,dat_of_acc) oeiii Int weeshuizen N(soort,mv,neut) schot N(soort,ev,neut) arme Adj(attr,stell,verv_neut) kanten N(soort,mv,neut) 1.5 Num(hoofd,bep,attr,onverv) Charles N(eigen,ev,gen) baseball N(soort,ev,neut) Charley N(eigen,ev,neut) kleins Adj(attr,stell,verv_gen) cafes N(soort,mv,neut) amateurs N(soort,mv,neut) kleding N(soort,ev,neut) minimale Adj(attr,stell,verv_neut) complimentje N(soort,ev,neut) ophield V(intrans,ovt,1_of_2_of_3,ev) neutrale Adj(attr,stell,verv_neut) beroepsfotografen N(soort,mv,neut) arriveren V(intrans,ott,1_of_2_of_3,mv) bevinding N(soort,ev,neut) Baldwin N(eigen,ev,neut) kilo N(soort,ev,neut) aangehaald V(trans,verl_dw,onverv) maxi N(soort,ev,neut) afdelingen N(soort,mv,neut) aantonen V(trans,ott,1_of_2_of_3,mv) producer N(soort,ev,neut) arbeid N(soort,ev,neut) middel N(soort,ev,neut) ongelijk N(soort,ev,neut) Scheveningen N(eigen,ev,neut) Lynda N(eigen,ev,neut) midden Adv(gew,geen_func,stell,onverv) N(soort,ev,neut) verfijning N(soort,ev,neut) lezers N(soort,mv,neut) Zams N(eigen,ev,neut) dure Adj(attr,stell,verv_neut) weigerde V(hulp,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) durf V(intrans,ott,1,ev) V(hulp,ott,1,ev) N(soort,ev,neut) pastores N(soort,mv,neut) zoeven Adv(gew,geen_func,stell,onverv) kruidenboter N(soort,ev,neut) geestelijke Adj(attr,stell,verv_neut) landbouwmachines N(soort,mv,neut) durp N(soort,ev,neut) schuldvraag N(soort,ev,neut) weggeworpen V(trans,verl_dw,onverv) uitbetalen V(trans,inf) Zuid-Afrika N(eigen,ev,neut) aardige Adj(attr,stell,verv_neut) Miguel N(eigen,ev,neut) allen Pron(onbep,neut,zelfst) klets N(soort,ev,neut) gedurende Prep(voor) uitzendbureau N(soort,ev,neut) aller Pron(onbep,gen,zelfst) vijfendertig Num(hoofd,bep,attr,onverv) spelen V(intrans,inf) V(intrans,inf,subst) V(trans,ott,1_of_2_of_3,mv) V(trans,inf) alles Pron(onbep,neut,zelfst) 100 Num(hoofd,bep,attr,onverv) N(eigen,ev,neut) voorlezen V(intrans,inf) vallen V(intrans,ott,1_of_2_of_3,mv) V(intrans,inf) 104 Num(hoofd,bep,attr,onverv) Spuistraat N(eigen,ev,neut) Kamer N(eigen,ev,neut) danszaal N(soort,ev,neut) danste V(intrans,ovt,1_of_2_of_3,ev) 107 Num(hoofd,bep,zelfst,onverv) vingers N(soort,mv,neut) scheldbrieven N(soort,mv,neut) weigeren V(trans,inf) V(trans,ott,1_of_2_of_3,mv) gelakte V(trans,verl_dw,verv_neut) tafreel N(soort,ev,neut) kind N(soort,ev,neut) denken V(intrans,inf) V(intrans,inf,subst) V(intrans,ott,1_of_2_of_3,mv) V(trans,inf) V(trans,ott,1_of_2_of_3,mv) hoeveelheden N(soort,mv,neut) Bourgondische Adj(attr,stell,verv_neut) bendeleden N(soort,mv,neut) kleur N(soort,ev,neut) Livingston N(eigen,ev,neut) benutte V(trans,ovt,1_of_2_of_3,ev) Sexualiteit N(eigen,ev,neut) Koran N(eigen,ev,neut) Kroonraad N(soort,ev,neut) bemoeien V(refl,inf) sterke Adj(attr,stell,verv_neut) badplaats N(soort,ev,neut) terugkrijgen V(trans,inf) gebaar N(soort,ev,neut) gezin N(soort,ev,neut) tweeenveertigjarige Adj(attr,stell,verv_neut) verpauperde V(intrans,verl_dw,verv_neut) hiervan Adv(pron,aanw) werking N(soort,ev,neut) onder Prep(voor) Adv(deel_v) Adv(gew,geen_func,stell,onverv) Adv(deel_adv) vondsten N(soort,mv,neut) konklusie N(soort,ev,neut) vonden V(trans,ovt,1_of_2_of_3,mv) leuk Adj(attr,stell,onverv) passief Adj(attr,stell,onverv) uitgedoste V(trans,verl_dw,verv_neut) verwijderd V(trans,verl_dw,onverv) inderdaad Adv(gew,geen_func,stell,onverv) 120 Num(hoofd,bep,attr,onverv) 121 Num(hoofd,bep,attr,onverv) gebouw N(soort,ev,neut) oogluikend Adj(adv,stell,onverv) tomaten N(soort,mv,neut) wachtkamer N(soort,ev,neut) toevoer N(soort,ev,neut) bezorgt V(trans,ott,3,ev) duur N(soort,ev,neut) Adj(adv,stell,onverv) Adj(attr,stell,onverv) folder N(soort,ev,neut) excursies N(soort,mv,neut) liters N(soort,mv,neut) gebaseerd V(trans,verl_dw,onverv) twaalf Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) echo N(soort,ev,neut) huwelijkscadeaus N(soort,mv,neut) huiverde V(intrans,ovt,1_of_2_of_3,ev) propaganda N(soort,ev,neut) Masters N(eigen,ev,neut) gekookte V(trans,verl_dw,verv_neut) aangezien Conj(onder,met_fin) echt Adj(adv,stell,onverv) Adj(attr,stell,onverv) Belvedere N(eigen,ev,neut) kerken N(soort,mv,neut) omspringen V(intrans,inf) U.S.A. N(eigen,ev,neut) residentie N(soort,ev,neut) omloop N(soort,ev,neut) overdag Adv(gew,geen_func,stell,onverv) magazine N(soort,ev,neut) buisje N(soort,ev,neut) duidelijke Adj(attr,stell,verv_neut) 12e Num(rang,bep,attr,onverv) geweigerd V(trans,verl_dw,onverv) drijft V(trans,ott,3,ev) discussies N(soort,mv,neut) doorlopend V(intrans,teg_dw,onverv) onverschilligheid N(soort,ev,neut) totdat Conj(onder,met_fin) 20-jarige Adj(attr,stell,verv_neut) Jokers N(eigen,mv,neut) duiken V(intrans,inf) 22ste Num(rang,bep,zelfst,onverv) 147 Num(hoofd,bep,zelfst,onverv) doorgehaald V(trans,verl_dw,onverv) evolueren V(intrans,inf) contactadvertenties N(soort,mv,neut) geluid N(soort,ev,neut) HAHA Int gelijke Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut) afwijkt V(intrans,ott,3,ev) keurige Adj(attr,stell,verv_neut) boerde V(intrans,ovt,1_of_2_of_3,ev) Korea N(eigen,ev,neut) wegen N(soort,mv,neut) uiterst Adj(adv,stell,onverv) kwis-meester N(soort,ev,neut) ingetogenheid N(soort,ev,neut) uitgesteld V(trans,verl_dw,onverv) brief N(soort,ev,neut) panty's N(soort,mv,neut) 150 Num(hoofd,bep,attr,onverv) bedrading N(soort,ev,neut) demode Adj(attr,stell,onverv) Kruis N(eigen,ev,neut) onbenulliger Adj(attr,vergr,onverv) ski's N(soort,mv,neut) stoeltjes N(soort,mv,neut) gedragen V(trans,verl_dw,onverv) V(refl,inf) voetbalgevecht N(soort,ev,neut) verbreiders N(soort,mv,neut) melding N(soort,ev,neut) geschrokken V(intrans,verl_dw,onverv) enzovoort Adv(gew,geen_func,stell,onverv) Rauschenberg N(eigen,ev,neut) gepaster V(trans,verl_dw,verv_vergr) afgezaagde Adj(attr,stell,verv_neut) waarmee Adv(pron,vrag) arts N(soort,ev,neut) Ijszee N(eigen,ev,neut) pharmacie N(soort,ev,neut) Andere Pron(onbep,neut,attr) verwoestende V(intrans,teg_dw,verv_neut) raken V(intrans,inf) V(trans,inf) Twente N(eigen,ev,neut) gehandhaafd V(trans,verl_dw,onverv) boeren N(soort,mv,neut) Diekmann N(eigen,ev,neut) Venables N(eigen,ev,neut) beessies N(soort,mv,neut) kist N(soort,ev,neut) Bomans N(eigen,ev,neut) smartlappen N(soort,mv,neut) overweldigende V(intrans,teg_dw,verv_neut) Anders Adv(gew,geen_func,stell,onverv) negeert V(trans,ott,3,ev) gelukkiger Adj(attr,vergr,onverv) Zuid-Italie N(eigen,ev,neut) heilige Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut) gezellig Adj(attr,stell,onverv) Adj(adv,stell,onverv) meubels N(soort,mv,neut) schminkkamer N(soort,ev,neut) knoopsgat N(soort,ev,neut) geintjes N(soort,mv,neut) jas N(soort,ev,neut) gezellin N(soort,ev,neut) prentbriefkaartdorpje N(soort,ev,neut) simpele Adj(attr,stell,verv_neut) sensatie N(soort,ev,neut) vrouwfiguurtje N(soort,ev,neut) stadsvervoer N(soort,ev,neut) verdienste N(soort,ev,neut) klassieke Adj(attr,stell,verv_neut) Nieuwmarkt N(eigen,ev,neut) jarige Adj(zelfst,stell,verv_neut) Zilver N(soort,ev,neut) titel N(soort,ev,neut) stugger Adj(attr,vergr,onverv) schoongemaakt V(trans,verl_dw,onverv) dankbaarheid N(soort,ev,neut) Maurice N(eigen,ev,neut) gelukt V(intrans,verl_dw,onverv) geteld V(trans,verl_dw,onverv) Emile N(eigen,ev,neut) ikzelf Pron(per,1,ev,nom) immuun Adj(attr,stell,onverv) individu N(soort,ev,neut) arbeidsongeschiktheidsverzekeringen N(soort,mv,neut) nertsjas N(soort,ev,neut) verschijnen V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) brokken N(soort,mv,neut) zullen V(hulp,ott,1_of_2_of_3,mv) opende V(trans,ovt,1_of_2_of_3,ev) tulband N(soort,ev,neut) Wereld N(eigen,ev,neut) weerbaar Adj(attr,stell,onverv) wijnkoper N(soort,ev,neut) plaatsvinden V(intrans,inf) gekregen V(trans,verl_dw,onverv) toilette N(soort,ev,neut) Wiardi N(eigen,ev,neut) bliksem N(soort,ev,neut) 180 Num(hoofd,bep,attr,onverv) notaris N(soort,ev,neut) beledigt V(trans,ott,2,ev) L'OFFICIEL N(eigen,ev,neut) Hetzelfde Pron(aanw,neut,zelfst) Liesbeth N(eigen,ev,neut) vriendelijk Adj(adv,stell,onverv) Adj(attr,stell,onverv) plankjes N(soort,mv,neut) jongeling N(soort,ev,neut) verzekerd V(trans,verl_dw,onverv) sleutel N(soort,ev,neut) hoofdrolspeler N(soort,ev,neut) folie N(soort,ev,neut) opengemaakt V(trans,verl_dw,onverv) Tjak N(eigen,ev,neut) omlaag Adv(gew,geen_func,stell,onverv) vochtige Adj(attr,stell,verv_neut) zilverdraad N(soort,ev,neut) geroosterd V(trans,verl_dw,onverv) verliep V(intrans,ovt,1_of_2_of_3,ev) studentenkleed N(soort,ev,neut) Gehuld V(trans,verl_dw,onverv) minimum N(soort,ev,neut) kringetje N(soort,ev,neut) verlies N(soort,ev,neut) verliet V(trans,ovt,1_of_2_of_3,ev) opkomend V(intrans,teg_dw,onverv) kader N(soort,ev,neut) bokswedstrijd N(soort,ev,neut) openen V(trans,inf) Menierh N(soort,ev,neut) Rijden V(intrans,inf) houten Adj(attr,stell,onverv) cockpit N(soort,ev,neut) speakers N(soort,mv,neut) drijfijs N(soort,ev,neut) onfrisse Adj(attr,stell,verv_neut) voorstelt V(trans,ott,3,ev) eraf Adv(pron,onbep) Make-Up Misc(vreemd) zevende Num(rang,bep,attr,onverv) pokken N(soort,mv,neut) vermeld V(trans,verl_dw,onverv) afgestudeerd V(intrans,verl_dw,onverv) misverstand N(soort,ev,neut) oordelen V(trans,inf) kiwi N(soort,ev,neut) zweten V(intrans,inf) Greenadier N(soort,ev,neut) little Misc(vreemd) adem N(soort,ev,neut) bijzondere Adj(zelfst,stell,verv_neut) Adj(attr,stell,verv_neut) legers N(soort,mv,neut) durfde V(hulp,ovt,1_of_2_of_3,ev) bekijken V(trans,inf) treden V(intrans,inf) gekozen V(trans,verl_dw,onverv) oeroude Adj(attr,stell,verv_neut) voedsel N(soort,ev,neut) keukenvloer N(soort,ev,neut) gigantische Adj(attr,stell,verv_neut) scherper Adj(attr,vergr,onverv) tricot N(soort,ev,neut) aflopend V(intrans,teg_dw,onverv) burgerlijke Adj(attr,stell,verv_neut) uitgenodigd V(trans,verl_dw,onverv) wrang Adj(attr,stell,onverv) weetikveel N(soort,ev,neut) opgetast V(trans,verl_dw,onverv) neerschreef V(trans,ovt,1_of_2_of_3,ev) staande V(intrans,teg_dw,verv_neut) atelier N(soort,ev,neut) klappen N(soort,mv,neut) nachtzoen N(soort,ev,neut) Gans N(eigen,ev,neut) noemde V(trans,ovt,1_of_2_of_3,ev) weelde N(soort,ev,neut) bevestiging N(soort,ev,neut) dubbeltje N(soort,ev,neut) gewoond V(intrans,verl_dw,onverv) Behalve Conj(onder,met_fin) linnen N(soort,ev,neut) plasje N(soort,ev,neut) Gallery N(eigen,ev,neut) Meltzer N(eigen,ev,neut) brommertje N(soort,ev,neut) Californische Adj(attr,stell,verv_neut) keuring N(soort,ev,neut) horloge N(soort,ev,neut) premiere N(soort,ev,neut) verkopen V(trans,inf) sortiment N(soort,ev,neut) verkoper N(soort,ev,neut) afkniptangetje N(soort,ev,neut) figuur N(soort,ev,neut) begonnen V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv) V(hulp,ovt,1_of_2_of_3,mv) V(intrans,ovt,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv) neerliggen V(intrans,inf) Mam N(soort,ev,neut) Man Int N(eigen,ev,neut) N(soort,ev,neut) Mao N(eigen,ev,neut) waarachter Adv(pron,vrag) verkeersopstopping N(soort,ev,neut) noemen V(trans,inf) V(trans,ott,1_of_2_of_3,mv) kerel N(soort,ev,neut) duizend-en-een Num(hoofd,bep,attr,onverv) verfilming N(soort,ev,neut) keren V(intrans,inf) N(soort,mv,neut) Zowel Conj(neven) National N(eigen,ev,neut) Max N(eigen,ev,neut) May N(eigen,ev,neut) dreef V(intrans,ovt,1_of_2_of_3,ev) dominee N(soort,ev,neut) verliezers N(soort,mv,neut) aanbiedingen N(soort,mv,neut) afwijst V(trans,ott,3,ev) economie N(soort,ev,neut) bleekblauwe Adj(attr,stell,verv_neut) toestand N(soort,ev,neut) prestige N(soort,ev,neut) Chris N(eigen,ev,neut) Cochran N(eigen,ev,neut) peil N(soort,ev,neut) zakenman N(soort,ev,neut) talloze Pron(onbep,neut,attr) begrafenis N(soort,ev,neut) Puskas N(eigen,ev,neut) Liebregts N(eigen,ev,neut) linkerkant N(soort,ev,neut) Koffie N(soort,ev,neut) huid N(soort,ev,neut) taboes N(soort,mv,neut) aangrijpt V(trans,ott,3,ev) teleurstelling N(soort,ev,neut) 101-103 Num(hoofd,bep,attr,onverv) amandelvormige Adj(attr,stell,verv_neut) huis N(soort,ev,neut) toonaangevend Adj(attr,stell,onverv) middengolfzenders N(soort,mv,neut) schuil Adj(attr,stell,onverv) clandestien Adj(adv,stell,onverv) voller Adj(attr,vergr,onverv) schuim N(soort,ev,neut) Komt V(intrans,ott,3,ev) blaadjes N(soort,mv,neut) lokvogels N(soort,mv,neut) houtje N(soort,ev,neut) Palestijnse Adj(attr,stell,verv_neut) traumatoloog N(soort,ev,neut) schuit N(soort,ev,neut) moeders N(soort,mv,neut) gepleit V(intrans,verl_dw,onverv) betreft V(trans,ott,3,ev) inkomstenbelasting N(soort,ev,neut) handschoenen N(soort,mv,neut) jij Pron(per,2,ev,nom) troep N(soort,ev,neut) definitie N(soort,ev,neut) hondenhokken N(soort,mv,neut) zesduizend Num(hoofd,bep,attr,onverv) non-actief Adj(attr,stell,onverv) verschuivingen N(soort,mv,neut) vrijwillig Adj(adv,stell,onverv) verwachting N(soort,ev,neut) Gare N(eigen,ev,neut) achterzijde N(soort,ev,neut) slager N(soort,ev,neut) zelfbewust Adj(attr,stell,onverv) Fabio N(eigen,ev,neut) gegoten V(trans,verl_dw,onverv) verkondigde V(trans,verl_dw,verv_neut) verzoening N(soort,ev,neut) lichamelijke Adj(attr,stell,verv_neut) vraaggesprek N(soort,ev,neut) vroedvrouwen N(soort,mv,neut) Burgers N(eigen,ev,neut) fijngesneden V(trans,verl_dw,onverv) vijfhoekige Adj(attr,stell,verv_neut) steden N(soort,mv,neut) daaronder Adv(pron,aanw) geschaamd V(refl,verl_dw,onverv) show N(soort,ev,neut) adviezen N(soort,mv,neut) twee-relatie N(soort,ev,neut) percent N(soort,ev,neut) sigaretterook N(soort,ev,neut) smalle Adj(attr,stell,verv_neut) zwakheid N(soort,ev,neut) vertrouwelijk Adj(adv,stell,onverv) ongewenst Adj(adv,stell,onverv) Adj(attr,stell,onverv) benevens Conj(onder,met_inf) deken N(soort,ev,neut) Koop V(trans,imp) mooiedoortrapte-jongen-filmimage N(soort,ev,neut) uitgebreider Adj(attr,vergr,onverv) Praktisch Adj(adv,stell,onverv) reclame-bureau N(soort,ev,neut) verontwaardiging N(soort,ev,neut) Groot Adj(attr,stell,onverv) N(eigen,ev,neut) sterrennacht N(soort,ev,neut) huisartsen N(soort,mv,neut) toneelgezelschap N(soort,ev,neut) onpeilbare Adj(attr,stell,verv_neut) hoewel Conj(onder,met_fin) zwembaden N(soort,mv,neut) Bretagne N(eigen,ev,neut) fraai Adj(adv,stell,onverv) Adj(attr,stell,onverv) Mel N(eigen,ev,neut) Alkmaar N(eigen,ev,neut) geldt V(intrans,ott,3,ev) Men Pron(onbep,neut,zelfst) Gainsborough N(eigen,ev,neut) blootgesteld V(trans,verl_dw,onverv) Onze Pron(bez,1,mv,neut,attr) genegen Adj(attr,stell,onverv) dodelijke Adj(attr,stell,verv_neut) Annie N(eigen,ev,neut) ervoer V(trans,ovt,1_of_2_of_3,ev) Met Prep(voor) bode N(soort,ev,neut) Beekbergen N(eigen,ev,neut) schuld N(soort,ev,neut) toebrengen V(trans,inf,subst) zestienhonderd Num(hoofd,bep,zelfst,onverv) NairobiDar-es-Salam N(eigen,ev,neut) Steve's N(eigen,ev,gen) hulp N(soort,ev,neut) geromantiseerd V(trans,verl_dw,onverv) aanwijzen V(trans,inf) 300.000 Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) dreigende V(intrans,teg_dw,verv_neut) enkel Pron(onbep,neut,attr) Adj(adv,stell,onverv) N(soort,ev,neut) flatwoningen N(soort,mv,neut) familieportretten N(soort,mv,neut) schulp N(soort,ev,neut) bedoelingen N(soort,mv,neut) dreigends V(intrans,teg_dw,verv_gen) baard N(soort,ev,neut) gelet V(intrans,verl_dw,onverv) treffen V(intrans,inf,subst) V(trans,inf) V(trans,ott,1_of_2_of_3,mv) Ingers N(eigen,ev,gen) humoristische Adj(attr,stell,verv_neut) boek N(soort,ev,neut) erin Adv(pron,onbep) echter Adv(gew,geen_func,stell,onverv) boel N(soort,ev,neut) voorspel N(soort,ev,neut) vrouwen N(soort,mv,neut) N(eigen,ev,neut) N(soort,ev,neut) adviseerde V(trans,ovt,1_of_2_of_3,ev) apparatuur N(soort,ev,neut) Crime Misc(vreemd) kruidenboek N(soort,ev,neut) flink Adj(adv,stell,onverv) Adj(attr,stell,onverv) verbaasde V(trans,ovt,1_of_2_of_3,ev) rijdt V(intrans,ott,3,ev) V(intrans,ott,2,ev) Shakespeare N(eigen,ev,neut) elementaire Adj(attr,stell,verv_neut) architectuur N(soort,ev,neut) waardering N(soort,ev,neut) postuur N(soort,ev,neut) Finland N(eigen,ev,neut) weven V(intrans,ott,1_of_2_of_3,mv) Zaterdagavond N(soort,ev,neut) gaststerren N(soort,mv,neut) tikfout N(soort,ev,neut) versterkt V(trans,verl_dw,onverv) V(trans,ott,3,ev) tienduizend Num(hoofd,bep,attr,onverv) degelijkheid N(soort,ev,neut) winterzonnetje N(soort,ev,neut) mekaar Pron(rec,neut) voordoen V(refl,inf) spontaniteit N(soort,ev,neut) strenge Adj(attr,stell,verv_neut) helpende V(intrans,teg_dw,verv_neut) binnenwerks Adj(adv,stell,onverv) voordoet V(refl,ott,3,ev) rijen N(soort,mv,neut) krantejongens N(soort,mv,neut) voetbal N(soort,ev,neut) avontuur N(soort,ev,neut) uitslapen V(intrans,inf) vrijen V(intrans,inf,subst) strelende V(intrans,teg_dw,verv_neut) overhaast Adj(adv,stell,onverv) V(trans,ott,3,ev) Stoomcursus N(soort,ev,neut) mondstuk N(soort,ev,neut) wisselen V(intrans,inf) contractueel Adj(adv,stell,onverv) inktvis N(soort,ev,neut) Venetie N(eigen,ev,neut) galadiner N(soort,ev,neut) harde Adj(attr,stell,verv_neut) teckelmoeder N(soort,ev,neut) joden N(soort,mv,neut) veldje N(soort,ev,neut) knieen N(soort,mv,neut) omhulsel N(soort,ev,neut) menen V(trans,ott,1_of_2_of_3,mv) V(trans,inf) huifkar N(soort,ev,neut) Ajax N(eigen,ev,neut) behoorlijk Adj(attr,stell,onverv) Adj(adv,stell,onverv) Mij Pron(per,1,ev,dat_of_acc) uitkijkpost N(soort,ev,neut) Bonheur Misc(vreemd) Min Num(hoofd,onbep,zelfst,stell,onverv) verbinding N(soort,ev,neut) Tekort Adj(attr,stell,onverv) Mis Adj(attr,stell,onverv) Grote Adj(attr,stell,verv_neut) protesten N(soort,mv,neut) brandstof N(soort,ev,neut) jou Pron(per,2,ev,dat_of_acc) verkruimelde V(trans,verl_dw,verv_neut) stadhuis N(soort,ev,neut) verdrijft V(trans,ott,3,ev) jazzelementen N(soort,mv,neut) Geanimeerd V(trans,verl_dw,onverv) techniek N(soort,ev,neut) visbouillon N(soort,ev,neut) Jagger N(eigen,ev,neut) aantrekkelijk Adj(attr,stell,onverv) componist N(soort,ev,neut) zakkige Adj(attr,stell,verv_neut) wetende V(trans,teg_dw,verv_neut) Swahili N(eigen,ev,neut) opzij Adv(gew,geen_func,stell,onverv) duwde V(trans,ovt,1_of_2_of_3,ev) haren N(soort,mv,neut) voorbereiden V(refl,inf) V(trans,inf) uitrekenen V(trans,inf) geschapen V(trans,verl_dw,onverv) bergruimte N(soort,ev,neut) NVSH N(eigen,ev,neut) materiaal N(soort,ev,neut) gerekend V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv) besneeuwde V(trans,verl_dw,verv_neut) jurken N(soort,mv,neut) glasvezel N(soort,ev,neut) documentaire N(soort,ev,neut) vermaarde Adj(attr,stell,verv_neut) popmuziek N(soort,ev,neut) antiquair N(soort,ev,neut) systematisch Adj(adv,stell,onverv) hinnikend V(intrans,teg_dw,onverv) krabbelde V(intrans,ovt,1_of_2_of_3,ev) kasboeken N(soort,mv,neut) emotionele Adj(attr,stell,verv_neut) lyriek N(soort,ev,neut) zeggen V(trans,inf) V(trans,ott,1_of_2_of_3,mv) V(intrans,inf) pers N(soort,ev,neut) reservaat N(soort,ev,neut) duwen V(trans,inf) tegenkomen V(trans,inf) V(trans,ott,1_of_2_of_3,mv) bloemenkrans N(soort,ev,neut) toeren N(soort,mv,neut) Waldorf-Astoria N(eigen,ev,neut) nieuwslezer N(soort,ev,neut) gelezen V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv) Welnee Int achttiende Num(rang,bep,attr,onverv) Grace N(eigen,ev,neut) Palaverboek N(soort,ev,neut) gevoelsleven N(soort,ev,neut) klachten N(soort,mv,neut) zwerven V(intrans,inf,subst) V(intrans,inf) fjorden N(soort,mv,neut) Wiegerma N(eigen,ev,neut) pest N(soort,ev,neut) Delden N(eigen,ev,neut) Creatieoord N(eigen,ev,neut) luchtvervuiling N(soort,ev,neut) verrader N(soort,ev,neut) Midden Adv(gew,geen_func,stell,onverv) verslag N(soort,ev,neut) erom Adv(pron,onbep) gezelschap N(soort,ev,neut) erop Adv(pron,onbep) Adv(pron,aanw) kleuren N(soort,mv,neut) Auschwitz N(eigen,ev,neut) maandag N(eigen,ev,neut) Cornelis N(eigen,ev,neut) gedeelte N(soort,ev,neut) vervoer N(soort,ev,neut) prijs N(soort,ev,neut) geweldenaar N(soort,ev,neut) geregeerd V(trans,verl_dw,onverv) Arbeit Misc(vreemd) dichter Adv(gew,geen_func,vergr,onverv) aardewerk N(soort,ev,neut) alcoholist N(soort,ev,neut) communicatiemiddelen N(soort,mv,neut) Hanneke N(eigen,ev,neut) kloppen V(trans,ott,1_of_2_of_3,mv) V(intrans,inf) krotten N(soort,mv,neut) veelbesproken Adj(attr,stell,onverv) waarschuwend V(intrans,teg_dw,onverv) pijnlijk Adj(adv,stell,onverv) Spelen N(eigen,mv,neut) N(soort,mv,neut) Daume N(eigen,ev,neut) rijke Adj(attr,stell,verv_neut) ontvangt V(trans,ott,3,ev) schriftelijk Adj(adv,stell,onverv) schrikbewind N(soort,ev,neut) tegenstrijdigheid N(soort,ev,neut) vechten V(intrans,inf) wijnen N(soort,mv,neut) kleurenproduktie N(soort,ev,neut) compleet Adj(attr,stell,onverv) leidt V(intrans,ott,3,ev) V(trans,ott,3,ev) ijzerzaagjes N(soort,mv,neut) achtten V(hulp,ovt,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv) opereren V(intrans,ott,1_of_2_of_3,mv) Ondanks Prep(voor) woordenloze Adj(attr,stell,verv_neut) betalen V(trans,inf) V(intrans,inf) opmerkelijk Adj(attr,stell,onverv) Adj(adv,stell,onverv) huur N(soort,ev,neut) zakenmensen N(soort,mv,neut) Justitie N(soort,ev,neut) caries N(soort,ev,neut) mijnheer N(soort,ev,neut) schuur N(soort,ev,neut) afwezig Adj(attr,stell,onverv) niveau N(soort,ev,neut) integratie N(soort,ev,neut) verplicht V(trans,verl_dw,onverv) dwaas Adj(attr,stell,onverv) Mol N(eigen,ev,neut) prima Adj(attr,stell,onverv) Volgens Prep(voor) ervoor Adv(pron,onbep) bond N(soort,ev,neut) NOS N(eigen,ev,neut) Bolton N(eigen,ev,neut) iedereen Pron(onbep,neut,zelfst) climax N(soort,ev,neut) ondernam V(trans,ovt,1_of_2_of_3,ev) vertellen V(trans,inf) V(intrans,inf) ronduit Adv(gew,geen_func,stell,onverv) dashboard N(soort,ev,neut) bons N(soort,ev,neut) Jean N(eigen,ev,neut) bewijsbaar Adj(attr,stell,onverv) Spontini N(eigen,ev,neut) Avenue N(eigen,ev,neut) welzijn N(soort,ev,neut) zeulen V(trans,inf) noteren V(trans,inf) Brandpunt N(soort,ev,neut) Mr. N(eigen,ev,neut) Academie N(eigen,ev,neut) wieden V(trans,inf) bood V(trans,ovt,1_of_2_of_3,ev) Patrick N(eigen,ev,neut) Laser N(soort,ev,neut) meisjes N(soort,mv,neut) N(eigen,ev,neut) groeitijd N(soort,ev,neut) echtgenoten N(soort,mv,neut) oosterse Adj(attr,stell,verv_neut) boog N(soort,ev,neut) V(trans,ovt,1_of_2_of_3,ev) gymnastiekuitvoering N(soort,ev,neut) kleurig Adj(attr,stell,onverv) Ventura N(eigen,ev,neut) boom N(soort,ev,neut) technicus N(soort,ev,neut) boos Adj(attr,stell,onverv) prins N(soort,ev,neut) boot N(soort,ev,neut) bundelen V(trans,ott,1_of_2_of_3,mv) VITUS N(eigen,ev,neut) frame N(soort,ev,neut) Monty N(eigen,ev,neut) huisarts N(soort,ev,neut) maanden N(soort,mv,neut) tv-produkties N(soort,mv,neut) team N(soort,ev,neut) gaande V(intrans,teg_dw,verv_neut) bekendste Adj(attr,overtr,verv_neut) spray N(soort,ev,neut) Tricia N(eigen,ev,neut) vermisten V(trans,verl_dw,verv_mv) Totdat Conj(onder,met_fin) scharen N(soort,mv,neut) vetarme Adj(attr,stell,verv_neut) Smith N(eigen,ev,neut) stiekum Adj(adv,stell,onverv) dertigste Num(rang,bep,attr,onverv) intelligentie N(soort,ev,neut) gebeurde V(intrans,ovt,1_of_2_of_3,ev) V(intrans,verl_dw,verv_neut) kinderloos Adj(attr,stell,onverv) dreun N(soort,ev,neut) V(intrans,ott,1,ev) Wacht V(intrans,imp) citroen N(soort,ev,neut) Demerest N(eigen,ev,neut) spannend Adj(attr,stell,onverv) bemoedigen V(trans,inf) zichtbaar Adj(attr,stell,onverv) reversibiliteit N(soort,ev,neut) gebedsmolens N(soort,mv,neut) onuitgeslapen Adj(attr,stell,onverv) handel N(soort,ev,neut) 2,1 Num(hoofd,bep,attr,onverv) vernietigingskamp N(soort,ev,neut) handen N(soort,mv,neut) pakkende V(intrans,teg_dw,verv_neut) trots Adj(attr,stell,onverv) N(soort,ev,neut) ingeschreven V(trans,verl_dw,onverv) sherry'tje N(soort,ev,neut) Michel N(eigen,ev,neut) traag Adj(adv,stell,onverv) interesseren V(trans,inf) twijfel N(soort,ev,neut) driemaal Adv(gew,geen_func,stell,onverv) vlag N(soort,ev,neut) kruipt V(intrans,ott,3,ev) gedoceerd V(trans,verl_dw,onverv) onderzoerzoekers N(soort,mv,neut) aanvallers N(soort,mv,neut) aanwijzingen N(soort,mv,neut) vlak Adv(gew,geen_func,stell,onverv) verlengingszaken N(soort,mv,neut) positie N(soort,ev,neut) satijn N(soort,ev,neut) vlees N(soort,ev,neut) zakelijkheid N(soort,ev,neut) gebeuren V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) N(soort,ev,neut) momenten N(soort,mv,neut) voorbereidingen N(soort,mv,neut) 2-3 Num(hoofd,bep,attr,onverv) bord N(soort,ev,neut) trouw N(soort,ev,neut) Adj(attr,stell,onverv) hechte Adj(attr,stell,verv_neut) Nixon-bewind N(soort,ev,neut) gestekt V(trans,verl_dw,onverv) paard N(soort,ev,neut) soldaten N(soort,mv,neut) schouders N(soort,mv,neut) dierentuin N(soort,ev,neut) patroondelen N(soort,mv,neut) internationaal Adj(adv,stell,onverv) Prijsvorming N(soort,ev,neut) aanvankelijk Adj(adv,stell,onverv) dierenasiel N(soort,ev,neut) gesteld V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv) Adj(attr,stell,onverv) genomen V(trans,verl_dw,onverv) kwaadaardig Adj(adv,stell,onverv) karton N(soort,ev,neut) veroorzaakt V(trans,verl_dw,onverv) V(trans,ott,3,ev) Lau's N(eigen,ev,gen) monsieur N(soort,ev,neut) Enfin Int angstdroom N(soort,ev,neut) voorbedachten Adj(attr,stell,verv_neut) vitamine N(soort,ev,neut) waardige Adj(attr,stell,verv_neut) moederschap N(soort,ev,neut) opgewekt V(trans,verl_dw,onverv) rivieren N(soort,mv,neut) beleefde Adj(attr,stell,verv_neut) uitzenden V(trans,inf) buiten Adv(gew,geen_func,stell,onverv) Prep(voor) N(soort,ev,neut) populair Adj(attr,stell,onverv) Adj(adv,stell,onverv) mensen N(soort,mv,neut) Zullen V(hulp,ott,1_of_2_of_3,mv) teen N(soort,ev,neut) Mann's N(eigen,ev,gen) ministers N(soort,mv,neut) Noorse Adj(attr,stell,verv_neut) prikkeldraad N(soort,ev,neut) manman N(soort,ev,neut) japonnen N(soort,mv,neut) trompettist N(soort,ev,neut) Almelo N(eigen,ev,neut) volstaan V(intrans,ott,1_of_2_of_3,mv) afgezaagd Adj(attr,stell,onverv) misdaad N(soort,ev,neut) kindje N(soort,ev,neut) geluk N(soort,ev,neut) geintje N(soort,ev,neut) modepers N(soort,ev,neut) baai N(soort,ev,neut) N(eigen,ev,neut) handig Adj(attr,stell,onverv) fatalisme N(soort,ev,neut) breekt V(intrans,ott,3,ev) eerlijkheid N(soort,ev,neut) baan N(soort,ev,neut) misdaan V(trans,verl_dw,onverv) 200 Num(hoofd,bep,attr,onverv) afgeleverd V(trans,verl_dw,onverv) baas N(soort,ev,neut) variaties N(soort,mv,neut) krijgsman N(soort,ev,neut) beroepsvoetbal N(soort,ev,neut) geslacht N(soort,ev,neut) immunisatie N(soort,ev,neut) tamboers N(soort,mv,neut) omkijken V(intrans,inf) vlek N(soort,ev,neut) urenlange Adj(attr,stell,verv_neut) oudoom N(soort,ev,neut) bladen N(soort,mv,neut) bouw N(soort,ev,neut) V(trans,imp) overgangsjaren N(soort,mv,neut) gloriedag N(soort,ev,neut) Durft V(trans,ott,2,ev) varen V(intrans,inf) waterpomp N(soort,ev,neut) astrologie N(soort,ev,neut) nevenuitkomst N(soort,ev,neut) koesteren V(trans,ott,1_of_2_of_3,mv) baby N(soort,ev,neut) onbekend Adj(attr,stell,onverv) reklamekampagne N(soort,ev,neut) alwetend Adj(adv,stell,onverv) hulstboom N(soort,ev,neut) gamma N(soort,ev,neut) signalement N(soort,ev,neut) skitechniek N(soort,ev,neut) minuscuul Adj(adv,stell,onverv) regelmaat N(soort,ev,neut) goddelijke Adj(attr,stell,verv_neut) handwerk N(soort,ev,neut) leuker Adj(attr,vergr,onverv) verrukkelijks Adj(attr,stell,verv_gen) back Misc(vreemd) Vuile Adj(attr,stell,verv_neut) aanknopingspunten N(soort,mv,neut) stroeve Adj(attr,stell,verv_neut) 220 Num(hoofd,bep,attr,onverv) betekenen V(trans,inf) V(intrans,inf) schaakspel N(soort,ev,neut) aangesloten V(trans,verl_dw,onverv) weliswaar Adv(gew,geen_func,stell,onverv) ontruiming N(soort,ev,neut) VROUW N(soort,ev,neut) 226 Num(hoofd,bep,attr,onverv) aangekleed V(refl,verl_dw,onverv) moest V(hulp,ovt,1_of_2_of_3,ev) Ooievaar N(eigen,ev,neut) Margriet N(soort,ev,neut) krimpen V(intrans,inf) activiteit N(soort,ev,neut) gloed N(soort,ev,neut) nertsstola N(soort,ev,neut) harte N(soort,ev,dat) opinie N(soort,ev,neut) onjuiste Adj(attr,stell,verv_neut) landelijke Adj(attr,stell,verv_neut) sick Adj(adv,stell,onverv) publikatie N(soort,ev,neut) gewild V(intrans,verl_dw,onverv) rijtje N(soort,ev,neut) bebouwde V(trans,verl_dw,verv_neut) uitgezochte V(trans,verl_dw,verv_neut) gunstig Adj(adv,stell,onverv) Adj(attr,stell,onverv) cognacje N(soort,ev,neut) overloop N(soort,ev,neut) luid Adj(adv,stell,onverv) ontdekten V(trans,ovt,1_of_2_of_3,mv) luie Adj(attr,stell,verv_neut) Dagen N(soort,mv,neut) besefte V(trans,ovt,1_of_2_of_3,ev) eeuwenoude Adj(attr,stell,verv_neut) tegen Prep(voor) Adv(gew,geen_func,stell,onverv) Adv(deel_v) Adv(deel_adv) vertoefd V(intrans,verl_dw,onverv) klasgenoten N(soort,mv,neut) Figuur N(soort,ev,neut) oplet V(trans,ott,3,ev) vliegreis N(soort,ev,neut) twintig Num(hoofd,bep,attr,onverv) bakken V(intrans,inf) V(trans,inf) Heijermans N(eigen,ev,neut) reclamemensen N(soort,mv,neut) bakker N(soort,ev,neut) lieten V(hulp,ovt,1_of_2_of_3,mv) leefregels N(soort,mv,neut) aangestapt V(intrans,verl_dw,onverv) noteerde V(trans,ovt,1_of_2_of_3,ev) (oud)studenten N(soort,mv,neut) reddingsduikboten N(soort,mv,neut) atmosfeer N(soort,ev,neut) 6000 Num(hoofd,bep,attr,onverv) satire N(soort,ev,neut) vitaminehoudende Adj(attr,stell,verv_neut) bevrijdingsfeest N(soort,ev,neut) herleefde V(intrans,verl_dw,verv_neut) zorgden V(intrans,ovt,1_of_2_of_3,mv) onhoudbare Adj(attr,stell,verv_neut) fortuin N(soort,ev,neut) keerde V(intrans,ovt,1_of_2_of_3,ev) boys N(soort,mv,neut) ongemakken N(soort,mv,neut) onderplank N(soort,ev,neut) brengen V(trans,inf) V(trans,inf,subst) ketsen V(intrans,ott,1_of_2_of_3,mv) afwijzen V(trans,inf) 250 Num(hoofd,bep,attr,onverv) dagelijkse Adj(attr,stell,verv_neut) 253 Num(hoofd,bep,attr,onverv) Politiek Adj(adv,stell,onverv) weekbladen N(soort,mv,neut) geinterpreteerd V(trans,verl_dw,onverv) professor N(soort,ev,neut) boze Adj(attr,stell,verv_neut) foeilelijke Adj(attr,stell,verv_neut) staten N(soort,mv,neut) Rienk N(eigen,ev,neut) natte Adj(attr,stell,verv_neut) lukt V(intrans,ott,3,ev) Transparante Adj(attr,stell,verv_neut) overbevolkingsverhalen N(soort,mv,neut) Kampioen-compromissensluiter N(soort,ev,neut) werkloosheid N(soort,ev,neut) vaderland N(soort,ev,neut) knoflook N(soort,ev,neut) hoogste Adj(attr,overtr,verv_neut) marmotten N(soort,mv,neut) afschuwelijke Adj(attr,stell,verv_neut) platbektangetje N(soort,ev,neut) zwager N(soort,ev,neut) telt V(intrans,ott,3,ev) V(trans,ott,3,ev) kan V(hulp,ott,3,ev) V(trans,ott,3,ev) V(hulp,ott,1,ev) V(hulp,ott,2,ev) V(trans,ott,1,ev) V(intrans,ott,3,ev) Descriptions Misc(vreemd) betekenis N(soort,ev,neut) Pretty N(eigen,ev,neut) wekenlange Adj(attr,stell,verv_neut) kat N(soort,ev,neut) hevige Adj(attr,stell,verv_neut) boerden V(intrans,ovt,1_of_2_of_3,mv) daalde V(intrans,ovt,1_of_2_of_3,ev) verricht V(trans,verl_dw,onverv) erfelijk Adj(adv,stell,onverv) platen N(soort,mv,neut) groeit V(intrans,ott,3,ev) Navarra N(eigen,ev,neut) ontzettend Adj(adv,stell,onverv) V(intrans,teg_dw,onverv) vertraging N(soort,ev,neut) Rijksasiel N(soort,ev,neut) strandstoelen N(soort,mv,neut) kalmerend V(intrans,teg_dw,onverv) betekenden V(trans,ovt,1_of_2_of_3,mv) nijver Adj(adv,stell,onverv) Jonas N(eigen,ev,neut) Hoewel Conj(onder,met_fin) Adv(gew,geen_func,stell,onverv) mevrouwen N(soort,mv,neut) zoontje N(soort,ev,neut) succes N(soort,ev,neut) Bunt N(eigen,ev,neut) voorkomen V(trans,inf) V(intrans,ott,1_of_2_of_3,mv) wisselend V(intrans,teg_dw,onverv) denkbeeldige Adj(attr,stell,verv_neut) Halverwege Adv(gew,geen_func,stell,onverv) clan N(eigen,ev,neut) gelukkig Adj(attr,stell,onverv) Adj(adv,stell,onverv) overeen Adv(gew,geen_func,stell,onverv) modebeeld N(soort,ev,neut) ongezond Adj(attr,stell,onverv) toewijding N(soort,ev,neut) duidt V(intrans,ott,3,ev) ongelovig Adj(adv,stell,onverv) schimmen N(soort,mv,neut) produkt N(soort,ev,neut) 280 Num(hoofd,bep,attr,onverv) tent N(soort,ev,neut) uitgewezen V(trans,verl_dw,onverv) bereid Adj(attr,stell,onverv) neemt V(trans,ott,3,ev) internationale Adj(attr,stell,verv_neut) spande V(trans,ovt,1_of_2_of_3,ev) gedreven V(trans,verl_dw,onverv) verdedigen V(trans,inf,subst) verschuldigde V(trans,verl_dw,verv_neut) geraffineerde Adj(attr,stell,verv_neut) experiment N(soort,ev,neut) verdediger N(soort,ev,neut) betaalde V(trans,ovt,1_of_2_of_3,ev) Blaricum N(eigen,ev,neut) vroegtijdige Adj(attr,stell,verv_neut) statig Adj(adv,stell,onverv) treedt V(trans,ott,3,ev) accepteren V(trans,inf) honden N(soort,mv,neut) werkelijkheid N(soort,ev,neut) vlerk N(soort,ev,neut) leverde V(trans,ovt,1_of_2_of_3,ev) verlossende V(intrans,teg_dw,verv_neut) kostwinner N(soort,ev,neut) wegens Prep(voor) getoond V(trans,verl_dw,onverv) revolutionaire Adj(attr,stell,verv_neut) middelmaat N(soort,ev,neut) puddingvorm N(soort,ev,neut) vroedvrouw N(soort,ev,neut) voelden V(refl,ovt,1_of_2_of_3,mv) ontwijken V(trans,inf) meegedeeld V(trans,verl_dw,onverv) afzonderlijke Adj(attr,stell,verv_neut) halfdonker Adj(attr,stell,onverv) gefrustreerd V(trans,verl_dw,onverv) overzichtstentoonstelling N(soort,ev,neut) dwars Adj(adv,stell,onverv) kei N(soort,ev,neut) Da's V(hulp_of_kopp,ott,3,ev) noodoplossing N(soort,ev,neut) prijken V(intrans,ott,1_of_2_of_3,mv) ken V(trans,ott,1,ev) assistenten N(soort,mv,neut) oorzaken N(soort,mv,neut) aktetas N(soort,ev,neut) wellicht Adv(gew,geen_func,stell,onverv) riool-extase N(soort,ev,neut) erachter Adv(pron,onbep) voorspellen V(trans,inf) stofbergen N(soort,mv,neut) beeindigd V(trans,verl_dw,onverv) rommelen V(intrans,inf) Utopia N(eigen,ev,neut) enthousiasme N(soort,ev,neut) leveren V(trans,inf) V(trans,ott,1_of_2_of_3,mv) voetgangers N(soort,mv,neut) Ravens N(eigen,ev,neut) heren N(soort,mv,neut) balk N(soort,ev,neut) vlot Adj(adv,stell,onverv) hartstochtelijk Adj(adv,stell,onverv) Veronica N(eigen,ev,neut) vermogensmisdrijven N(soort,mv,neut) Burg N(eigen,ev,neut) neiging N(soort,ev,neut) mooier Adj(attr,vergr,onverv) ruimte N(soort,ev,neut) stappen V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) krotopruiming N(soort,ev,neut) groene Adj(attr,stell,verv_neut) dikke Adj(attr,stell,verv_neut) Burm N(eigen,ev,neut) communes N(soort,mv,neut) A-D Num(hoofd,bep,attr,onverv) sigaret N(soort,ev,neut) kortom Int Adv(gew,geen_func,stell,onverv) tenten N(soort,mv,neut) individualisme N(soort,ev,neut) tere Adj(attr,stell,verv_neut) jongelui N(soort,mv,neut) identieke Adj(attr,stell,verv_neut) alleenstaande Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut) ribbelige Adj(attr,stell,verv_neut) studentendecaan N(soort,ev,neut) motor N(soort,ev,neut) term N(soort,ev,neut) werkhypothese N(soort,ev,neut) Canarische N(eigen,mv,neut) parfumeer V(trans,imp) platencontract N(soort,ev,neut) Steinbachs N(eigen,mv,neut) Kusche N(eigen,ev,neut) pijnen N(soort,mv,neut) zichtbare Adj(attr,stell,verv_neut) plekken N(soort,mv,neut) miljoen Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) invaliditeitsverzekeringen N(soort,mv,neut) kwijtraakte V(trans,ovt,1_of_2_of_3,ev) acryl N(soort,ev,neut) Trouwens Adv(gew,geen_func,stell,onverv) band N(soort,ev,neut) bang Adj(attr,stell,onverv) Allemaal Pron(onbep,neut,zelfst) Jonge Adj(attr,stell,verv_neut) gemak N(soort,ev,neut) grasanjer N(soort,ev,neut) thuiskomen V(intrans,inf) bank N(soort,ev,neut) toevoeging N(soort,ev,neut) ziekteverzekering N(soort,ev,neut) bonnen N(soort,mv,neut) omlijst V(trans,verl_dw,onverv) Poesjkin N(eigen,ev,neut) indruk N(soort,ev,neut) bedoel V(trans,ott,1,ev) V(trans,ott,2,ev) begrip N(soort,ev,neut) geenszins Adv(gew,geen_func,stell,onverv) zeilt V(intrans,ott,3,ev) opgepropt V(trans,verl_dw,onverv) bloemetjes N(soort,mv,neut) aangesmeerd V(trans,verl_dw,onverv) aardappeltjes N(soort,mv,neut) tenslotte Adv(gew,geen_func,stell,onverv) lessen N(soort,mv,neut) verzoek N(soort,ev,neut) ademhaling N(soort,ev,neut) voetballen V(intrans,inf) ethische Adj(attr,stell,verv_neut) lust N(soort,ev,neut) Bordeauxregions N(soort,mv,neut) energieke Adj(attr,stell,verv_neut) Zuid-Vietnam N(eigen,ev,neut) onderneming N(soort,ev,neut) brommers N(soort,mv,neut) vecht V(intrans,ott,3,ev) rekenen V(intrans,inf) uiterste Adj(zelfst,stell,verv_neut) negatieve Adj(attr,stell,verv_neut) zandtrottoirs N(soort,mv,neut) collectie N(soort,ev,neut) stommelde V(trans,ovt,1_of_2_of_3,ev) Ugly N(eigen,ev,neut) steeds Adv(gew,geen_func,stell,onverv) kil Adj(attr,stell,onverv) Adj(adv,stell,onverv) 1_2 Num(hoofd,bep,attr,onverv) onstilbaar Adj(attr,stell,onverv) hondje N(soort,ev,neut) kin N(soort,ev,neut) m'n Pron(bez,1,ev,neut,attr) vruchtjes N(soort,mv,neut) kip N(soort,ev,neut) uzelf Pron(per,2,ev,nom) officier N(soort,ev,neut) Omdat Conj(onder,met_fin) overmorgen Adv(gew,geen_func,stell,onverv) Ootmarsum N(eigen,ev,neut) Gedroogde V(intrans,verl_dw,verv_neut) burgerlijk Adj(adv,stell,onverv) Adj(attr,stell,onverv) ingedragen V(trans,verl_dw,onverv) zachtjes Adv(gew,geen_func,stell,onverv) beloning N(soort,ev,neut) Skarabee N(eigen,ev,neut) opvatting N(soort,ev,neut) anderzijds Adv(gew,geen_func,stell,onverv) nazaten N(soort,mv,neut) experimenten N(soort,mv,neut) Akersloot N(eigen,ev,neut) schaden V(intrans,inf) Joseph N(eigen,ev,neut) houtsvuur N(soort,ev,neut) preuts Adj(attr,stell,verv_gen) Verhage N(eigen,ev,neut) Dolle N(eigen,ev,neut) dispensatie N(soort,ev,neut) vergeten V(trans,verl_dw,onverv) V(trans,ott,1_of_2_of_3,mv) V(trans,inf) V(intrans,inf) winnen V(trans,inf) V(intrans,inf) dorpsschool N(soort,ev,neut) stammen N(soort,mv,neut) V(intrans,ott,1_of_2_of_3,mv) vierduizend Num(hoofd,bep,attr,onverv) tuiten N(soort,mv,neut) Munchen N(eigen,ev,neut) beoordelen V(trans,inf) delen N(soort,mv,neut) V(trans,inf) V(trans,ott,1_of_2_of_3,mv) aanbeveling N(soort,ev,neut) jazztrompettist N(soort,ev,neut) Boeyoeng N(eigen,ev,neut) uiteenlopende V(intrans,teg_dw,verv_neut) verzamelde V(trans,verl_dw,verv_neut) uitgelachen V(trans,verl_dw,onverv) Ieren N(soort,mv,neut) verblijven N(soort,mv,neut) voordat Conj(onder,met_fin) Nee Int nachten N(soort,mv,neut) geadopteerd V(trans,verl_dw,onverv) farmaceutische Adj(attr,stell,verv_neut) persoonlijkheid N(soort,ev,neut) sentimentele Adj(attr,stell,verv_neut) Apollo-15 N(eigen,ev,neut) groter Adj(attr,vergr,onverv) geschonken V(trans,verl_dw,onverv) Mooie Adj(attr,stell,verv_neut) racerij N(soort,ev,neut) Net Adv(gew,geen_func,stell,onverv) New N(eigen,ev,neut) indrukken N(soort,mv,neut) verdrietige Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut) 15,6 Num(hoofd,bep,attr,onverv) vlug Adj(adv,stell,onverv) maandblad N(soort,ev,neut) cadeau N(soort,ev,neut) daartegen Adv(pron,aanw) motto N(soort,ev,neut) glorie N(soort,ev,neut) leerling N(soort,ev,neut) oplichtten V(trans,ovt,1_of_2_of_3,mv) toevertrouwen V(trans,inf) druipt V(intrans,ott,3,ev) noodzakelijk Adj(attr,stell,onverv) deelnemen V(intrans,inf) autoriteit N(soort,ev,neut) vervalt V(intrans,ott,3,ev) deelnemer N(soort,ev,neut) tevreden Adj(attr,stell,onverv) Adj(adv,stell,onverv) Horse N(eigen,ev,neut) Bijna Adv(gew,geen_func,stell,onverv) wakkere Adj(attr,stell,verv_neut) inkomen N(soort,ev,neut) dwaze Adj(attr,stell,verv_neut) belangrijkste Adj(attr,overtr,verv_neut) Adj(zelfst,overtr,verv_neut) straf N(soort,ev,neut) levensvatbaar Adj(attr,stell,onverv) enthousiaste Adj(attr,stell,verv_neut) champignons N(soort,mv,neut) strak Adj(adv,stell,onverv) Aischylos N(eigen,ev,neut) minimumcijfers N(soort,mv,neut) smaad N(soort,ev,neut) ambitie N(soort,ev,neut) luidruchtig Adj(adv,stell,onverv) Kralingen N(eigen,ev,neut) luxe Adj(attr,stell,onverv) goden N(soort,mv,neut) smaak N(soort,ev,neut) acrobatische Adj(attr,stell,verv_neut) pleegt V(trans,ott,3,ev) gedrongen V(intrans,verl_dw,onverv) Hille N(eigen,ev,neut) meneer N(soort,ev,neut) verwording N(soort,ev,neut) Drenthe N(eigen,ev,neut) spastici N(soort,mv,neut) frieten N(soort,mv,neut) ouderwets Adj(attr,stell,onverv) sudderde V(intrans,ovt,1_of_2_of_3,ev) heuvels N(soort,mv,neut) loopt V(intrans,ott,3,ev) V(trans,ott,2,ev) V(trans,ott,3,ev) toegaat V(intrans,ott,3,ev) fotosafari's N(soort,mv,neut) beloerd V(trans,verl_dw,onverv) Fuck Misc(vreemd) autopedjes N(soort,mv,neut) gedateerd V(trans,verl_dw,onverv) Notre N(eigen,ev,neut) harder Adj(attr,vergr,onverv) Adj(adv,vergr,onverv) Draai V(trans,ott,2,ev) beschaving N(soort,ev,neut) actiestrategie N(soort,ev,neut) uitgaven N(soort,mv,neut) Amstelveen N(eigen,ev,neut) onderschat V(trans,verl_dw,onverv) zag V(trans,ovt,1_of_2_of_3,ev) V(hulp,ovt,1_of_2_of_3,ev) wonen V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) V(trans,inf) Kopenhagen N(eigen,ev,neut) Soft N(eigen,ev,neut) Philip N(eigen,ev,neut) zak N(soort,ev,neut) zal V(hulp,ott,3,ev) V(hulp,ott,1,ev) Fleet N(eigen,ev,neut) student N(soort,ev,neut) zat V(intrans,ovt,1_of_2_of_3,ev) V(hulp,ovt,1_of_2_of_3,ev) pluchen Adj(attr,stell,onverv) kok N(soort,ev,neut) takken N(soort,mv,neut) dikte N(soort,ev,neut) kom V(intrans,ott,1,ev) N(soort,ev,neut) V(hulp_of_kopp,ott,2,ev) V(intrans,imp) kon V(hulp,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) kop N(soort,ev,neut) beurzen N(soort,mv,neut) kou N(soort,ev,neut) David N(eigen,ev,neut) straalt V(trans,ott,3,ev) Prager N(eigen,ev,neut) Overveens Adj(attr,stell,onverv) James-Bond-film N(soort,ev,neut) afgeraden V(trans,verl_dw,onverv) verlieten V(trans,ovt,1_of_2_of_3,mv) Hans-Georg N(eigen,ev,neut) woonark N(soort,ev,neut) nadruk N(soort,ev,neut) Vorig Adj(attr,stell,onverv) fors Adj(adv,stell,onverv) Neem V(trans,imp) vader N(soort,ev,neut) krepeerden V(intrans,ovt,1_of_2_of_3,mv) teentjes N(soort,mv,neut) begripsverklaring N(soort,ev,neut) wereldje N(soort,ev,neut) steekt V(intrans,ott,3,ev) V(trans,ott,3,ev) sociaal Adj(adv,stell,onverv) inherente Adj(attr,stell,verv_neut) attracties N(soort,mv,neut) verkeerde Adj(attr,stell,verv_neut) dubbelgevouwen V(trans,verl_dw,onverv) relatie N(soort,ev,neut) inpassen V(trans,inf) libretto N(soort,ev,neut) beslist Adj(adv,stell,onverv) Adv(gew,geen_func,stell,onverv) zondag N(eigen,ev,neut) hoofdrollen N(soort,mv,neut) alledag N(soort,ev,neut) centimeter N(soort,ev,neut) genoeg Pron(onbep,neut,attr) Pron(onbep,neut,zelfst) duivelbezweringsmaskers N(soort,mv,neut) president N(soort,ev,neut) vanille-ijs N(soort,ev,neut) Behrendt N(eigen,ev,neut) achteruit Adv(gew,geen_func,stell,onverv) Reiche N(eigen,ev,neut) steelt V(trans,ott,3,ev) evenredigheid N(soort,ev,neut) liefde N(soort,ev,neut) lapjes N(soort,mv,neut) Bernard N(eigen,ev,neut) haaknaald N(soort,ev,neut) huisbaas N(soort,ev,neut) opluchting N(soort,ev,neut) maakt V(trans,ott,3,ev) V(trans,imp) V(trans,ott,2,ev) kater N(soort,ev,neut) Hallstein N(eigen,ev,neut) bikkelharde Adj(attr,stell,verv_neut) foto N(soort,ev,neut) ambivalentie N(soort,ev,neut) alvast Adv(gew,geen_func,stell,onverv) idee N(soort,ev,neut) gelooide V(trans,verl_dw,verv_neut) technisch Adj(adv,stell,onverv) Adj(attr,stell,onverv) antwoordde V(trans,ovt,1_of_2_of_3,ev) boven Prep(voor) Adv(gew,geen_func,stell,onverv) Adv(deel_v) flatneurose N(soort,ev,neut) dringen V(intrans,inf) V.V.V. N(soort,ev,neut) idem Adv(gew,geen_func,stell,onverv) helder Adj(attr,stell,onverv) curieus Adj(attr,stell,onverv) bikini N(soort,ev,neut) mogelijk Adj(adv,stell,onverv) Adj(attr,stell,onverv) aangetrokken V(trans,verl_dw,onverv) malaise N(soort,ev,neut) hierdoor Adv(pron,aanw) Buiten Adv(gew,geen_func,stell,onverv) Mensen N(soort,mv,neut) toesprak V(trans,ovt,1_of_2_of_3,ev) vernederingen N(soort,mv,neut) aten V(intrans,ovt,1_of_2_of_3,mv) heeft-ie V(hulp_of_kopp,ott,3,ev) trekdieren N(soort,mv,neut) zee N(soort,ev,neut) Aken N(eigen,ev,neut) zeg V(trans,ott,1,ev) V(trans,imp) V(trans,ott,2,ev) brochures N(soort,mv,neut) zei V(trans,ovt,1_of_2_of_3,ev) dinkie-toy N(soort,ev,neut) doekjes N(soort,mv,neut) prijzen N(soort,mv,neut) V(trans,inf) fout N(soort,ev,neut) Adj(attr,stell,onverv) eierroof N(soort,ev,neut) Vreedzame Adj(attr,stell,verv_neut) werklozen Adj(zelfst,stell,verv_mv) zes Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) schoolproblemen N(soort,mv,neut) zet V(trans,ott,3,ev) V(refl,ott,3,ev) V(refl,imp) V(trans,imp) minst Num(hoofd,onbep,zelfst,overtr,onverv) 22-jarige Adj(attr,stell,verv_neut) snikkend V(intrans,teg_dw,onverv) omgekeerd V(trans,verl_dw,onverv) besloten V(trans,ovt,1_of_2_of_3,mv) V(trans,verl_dw,onverv) Mick N(eigen,ev,neut) NOSstudio N(soort,ev,neut) psychische Adj(attr,stell,verv_neut) glimlachte V(intrans,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) jongeman N(soort,ev,neut) durven V(hulp,inf) altijd Adv(gew,aanw) maand N(soort,ev,neut) opbloeiende V(intrans,teg_dw,verv_neut) verduidelijkt V(trans,verl_dw,onverv) brievenbus N(soort,ev,neut) FIKTE V(intrans,ovt,1_of_2_of_3,ev) oorlogsspelletjes N(soort,mv,neut) inspraak N(soort,ev,neut) doormaakt V(trans,ott,3,ev) zwemmen V(intrans,inf) betekenissen N(soort,mv,neut) erboven Adv(pron,onbep) zwaaide V(intrans,ovt,1_of_2_of_3,ev) zoveelste Num(rang,onbep,attr,onverv) dames N(soort,mv,neut) beschikten V(intrans,ovt,1_of_2_of_3,mv) kleinbehuisd Adj(attr,stell,onverv) opgesmukt V(trans,verl_dw,onverv) kinderbescherming N(soort,ev,neut) rennen V(intrans,inf) Nog Adv(gew,geen_func,stell,onverv) tragedie N(soort,ev,neut) zonder Prep(voor) Adv(gew,geen_func,stell,onverv) Conj(onder,met_inf) kul N(soort,ev,neut) gekrast V(trans,verl_dw,onverv) kun V(hulp,ott,2,ev) V(intrans,ott,2,ev) V(trans,ott,2,ev) ikoon N(soort,ev,neut) tweetal N(soort,ev,neut) shock-effecten N(soort,mv,neut) Nou Adv(gew,aanw) Int Edvard N(eigen,ev,neut) Berlijn N(eigen,ev,neut) verzorg V(trans,imp) steevast Adj(adv,stell,onverv) Adv(gew,geen_func,stell,onverv) puin N(soort,ev,neut) schoolmeester N(soort,ev,neut) reageert V(trans,ott,3,ev) MIDEM N(eigen,ev,neut) Soms Adv(gew,aanw) Miep N(eigen,ev,neut) teruggesnoeid V(trans,verl_dw,onverv) walgelijke Adj(attr,stell,verv_neut) Mies N(eigen,ev,neut) NIET Adv(gew,geen_func,stell,onverv) chirurg N(soort,ev,neut) Laten V(hulp,ott,1_of_2_of_3,mv) V(hulp,inf) primitieve Adj(attr,stell,verv_neut) pitten N(soort,mv,neut) ingrijpend V(intrans,teg_dw,onverv) bedacht V(trans,verl_dw,onverv) V(refl,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) Later Adj(adv,vergr,onverv) waarnaar Adv(pron,vrag) financieringsmaatschappijen N(soort,mv,neut) Song N(eigen,ev,neut) absolute Adj(attr,stell,verv_neut) ontroering N(soort,ev,neut) aankomen V(intrans,inf) zie V(trans,ott,1,ev) V(intrans,ott,1,ev) V(trans,ott,2,ev) kanalen N(soort,mv,neut) Probeer V(hulp,imp) aanleiding N(soort,ev,neut) verdrongen V(trans,verl_dw,onverv) Terwijl Conj(onder,met_fin) Duitsland N(eigen,ev,neut) recepties N(soort,mv,neut) zij Pron(per,3,ev_of_mv,nom) V(hulp_of_kopp,conj) voorzetten V(trans,inf) Carolina N(eigen,ev,neut) blindelings Adj(adv,stell,onverv) zin N(soort,ev,neut) keihard Adj(attr,stell,onverv) Adj(adv,stell,onverv) reaktiemogelijkheden N(soort,mv,neut) voorbeeld N(soort,ev,neut) warenhuizen N(soort,mv,neut) afgunst N(soort,ev,neut) zit V(intrans,ott,3,ev) V(intrans,ott,1,ev) V(trans,ott,3,ev) V(hulp,ott,3,ev) V(intrans,ott,2,ev) pop-art N(soort,ev,neut) ingenieurs N(soort,mv,neut) cotelet N(soort,ev,neut) wisselwerking N(soort,ev,neut) nalatigheid N(soort,ev,neut) Gustav N(eigen,ev,neut) voordelige Adj(attr,stell,verv_neut) vederachtige Adj(attr,stell,verv_neut) revolver N(soort,ev,neut) Harris N(eigen,ev,neut) ludieke Adj(attr,stell,verv_neut) drugs N(soort,mv,neut) resultaat N(soort,ev,neut) waaronder Adv(pron,vrag) nette Adj(attr,stell,verv_neut) aanrijden V(intrans,inf) Enterprises N(eigen,ev,neut) Edmund N(eigen,ev,neut) behoorlijke Adj(attr,stell,verv_neut) absoluut Adj(adv,stell,onverv) geheimzinnige Adj(attr,stell,verv_neut) mislukking N(soort,ev,neut) geetst V(trans,verl_dw,onverv) Rekelsvrouwen N(soort,mv,neut) hobby-set-dozen N(soort,mv,neut) intussen Adv(gew,geen_func,stell,onverv) casual Adj(attr,stell,onverv) federale Adj(attr,stell,verv_neut) scherpe Adj(attr,stell,verv_neut) bijzonder Adj(adv,stell,onverv) N(soort,ev,neut) Ahead-Haarlem N(eigen,ev,neut) genezing N(soort,ev,neut) moeder N(soort,ev,neut) nariep V(trans,ovt,1_of_2_of_3,ev) Zesde N(eigen,ev,neut) opgeluisterd V(trans,verl_dw,onverv) gevierd V(trans,verl_dw,onverv) maart N(eigen,ev,neut) destijds Adv(gew,aanw) Gesloten V(trans,verl_dw,onverv) georienteerd V(trans,verl_dw,onverv) gekomen V(intrans,verl_dw,onverv) boycotten V(trans,inf) ruime Adj(attr,stell,verv_neut) bouwstop N(soort,ev,neut) leggen V(trans,inf) V(refl,inf) overschrijden V(trans,inf) Staten N(eigen,mv,neut) spraakvermogen N(soort,ev,neut) armoede N(eigen,ev,neut) N(soort,ev,neut) overgevlogen V(intrans,verl_dw,onverv) ouderworden V(intrans,inf,subst) geconcentreerd V(trans,verl_dw,onverv) bezitlozen Adj(zelfst,stell,verv_mv) heden N(soort,ev,neut) N(eigen,ev,neut) vrijdagochtend N(soort,ev,neut) doorschijnend Adj(attr,stell,onverv) chains N(soort,mv,neut) ruine N(soort,ev,neut) gesubsidieerd V(trans,verl_dw,onverv) uitoefenen V(trans,inf) V(trans,ott,1_of_2_of_3,mv) voorbehoedmiddelen N(soort,mv,neut) kinderkopje N(soort,ev,neut) glas N(soort,ev,neut) broekpak N(soort,ev,neut) briesje N(soort,ev,neut) grotere Adj(attr,vergr,verv_neut) uiterlijke Adj(zelfst,stell,verv_neut) tjalken N(soort,mv,neut) Castle N(eigen,ev,neut) gekleurd V(trans,verl_dw,onverv) vernemen V(trans,ott,1_of_2_of_3,mv) ogenschijnlijk Adj(adv,stell,onverv) meesters N(soort,mv,neut) beloofde V(trans,ovt,1_of_2_of_3,ev) V(trans,verl_dw,verv_neut) punt N(soort,ev,neut) onrechtvaardig Adj(adv,stell,onverv) Mijn Pron(bez,1,ev,neut,attr) rechterarm N(soort,ev,neut) evenzo Adv(gew,geen_func,stell,onverv) vinden V(trans,inf) V(trans,ott,1_of_2_of_3,mv) Visserijstr. N(eigen,ev,neut) afbrak V(intrans,ovt,1_of_2_of_3,ev) volhouden V(trans,inf) polysonore Adj(attr,stell,verv_neut) wandelde V(trans,ovt,1_of_2_of_3,ev) natuurkunde N(soort,ev,neut) accepteerde V(trans,ovt,1_of_2_of_3,ev) kwijt Adj(attr,stell,onverv) enzovoorts Adv(gew,geen_func,stell,onverv) sociale Adj(attr,stell,verv_neut) sjaaltjes N(soort,mv,neut) entree N(soort,ev,neut) voila Misc(vreemd) afscheid N(soort,ev,neut) registratie N(soort,ev,neut) ongehuwde Adj(attr,stell,verv_neut) Pierre N(eigen,ev,neut) gespuwd V(trans,verl_dw,onverv) rechten N(soort,mv,neut) Mike N(eigen,ev,neut) drukt V(trans,ott,3,ev) 26jarige Adj(attr,stell,verv_neut) jaarlijks Adj(adv,stell,onverv) rechter N(soort,ev,neut) Adj(attr,vergr,onverv) wijd Adj(adv,stell,onverv) eerlijk Adj(adv,stell,onverv) Adj(attr,stell,onverv) trokken V(trans,ovt,1_of_2_of_3,mv) moeilijk Adj(attr,stell,onverv) Adj(adv,stell,onverv) wijn N(soort,ev,neut) sigarenkistjes N(soort,mv,neut) Nonnetjes N(eigen,ev,gen) 300 Num(hoofd,bep,attr,onverv) bereiken V(trans,inf) Uiterlijk Adj(adv,stell,onverv) wandelen V(intrans,inf) louter Adj(adv,stell,onverv) OVS N(eigen,ev,neut) wasmachine N(soort,ev,neut) Russische Adj(attr,stell,verv_neut) ambachtsman N(soort,ev,neut) cruisen V(intrans,ott,1_of_2_of_3,mv) bijtgrage Adj(attr,stell,verv_neut) levensgezel N(soort,ev,neut) cruises N(soort,mv,neut) scherts V(intrans,ott,1,ev) woningnood N(soort,ev,neut) Ferree N(eigen,ev,neut) laboratoriumwerk N(soort,ev,neut) skicentrum N(soort,ev,neut) zon N(soort,ev,neut) Evenaar N(soort,ev,neut) Hangt V(intrans,ott,3,ev) overspannen Adj(attr,stell,onverv) paraplu N(soort,ev,neut) ongevallenverzekeringen N(soort,mv,neut) uitermate Adv(gew,geen_func,stell,onverv) Adj(attr,stell,verv_neut) zou V(hulp,ovt,1_of_2_of_3,ev) skien V(intrans,inf) Beuningen N(eigen,ev,neut) ambulance N(soort,ev,neut) kruizemunt N(soort,ev,neut) kleurenharmonieen N(soort,mv,neut) veronderstelling N(soort,ev,neut) welgemikte Adj(attr,stell,verv_neut) Engeland N(eigen,ev,neut) verkocht V(trans,verl_dw,onverv) V(trans,ovt,1_of_2_of_3,ev) Driehonderd Num(hoofd,bep,attr,onverv) gedaald V(intrans,verl_dw,onverv) Escoffier N(eigen,ev,neut) bekritiseerde V(trans,ovt,1_of_2_of_3,ev) openluchtmuseum N(soort,ev,neut) achterblijft V(intrans,ott,3,ev) D'66 N(eigen,ev,neut) gereputeerde Adj(attr,stell,verv_neut) 320 Num(hoofd,bep,attr,onverv) wilt V(hulp,ott,2,ev) V(trans,ott,2,ev) V(intrans,ott,2,ev) Naast Prep(voor) 325 Num(hoofd,bep,attr,onverv) beefden V(intrans,ovt,1_of_2_of_3,mv) Mina N(eigen,ev,neut) overwegen V(trans,inf) toegebeten V(trans,verl_dw,onverv) Shappy N(eigen,ev,neut) officieren N(soort,mv,neut) Uitgekiend V(trans,verl_dw,onverv) aandeel N(soort,ev,neut) smart N(soort,ev,neut) onkosten N(soort,mv,neut) Russel N(eigen,ev,neut) verfstof N(soort,ev,neut) Bobath N(eigen,ev,neut) hop-d'r-op Adv(gew,geen_func,stell,onverv) manschappen N(soort,mv,neut) Russen N(soort,mv,neut) vijandigheid N(soort,ev,neut) waarmede Adv(pron,vrag) aanwezig Adj(attr,stell,onverv) samen-zijn V(intrans,inf,subst) diamanten N(soort,mv,neut) verharder N(soort,ev,neut) Kortom Adv(gew,geen_func,stell,onverv) Int midimode N(soort,ev,neut) teruggebracht V(trans,verl_dw,onverv) Cucumber N(eigen,ev,neut) -onderzoek N(soort,ev,neut) fans N(soort,mv,neut) olielampje N(soort,ev,neut) daarboven Adv(pron,aanw) gabardine N(soort,ev,neut) mannen N(soort,mv,neut) Bondserie N(soort,ev,neut) geringe Adj(attr,stell,verv_neut) helemaal Adv(gew,geen_func,stell,onverv) namelijk Adv(gew,geen_func,stell,onverv) uitwissen V(trans,inf) wind N(soort,ev,neut) Spartaan N(soort,ev,neut) Centraal Adj(attr,stell,onverv) inspirerende V(intrans,teg_dw,verv_neut) opstellen V(refl,ott,1_of_2_of_3,mv) Bovendien Adv(gew,geen_func,stell,onverv) ondergebracht V(trans,verl_dw,onverv) deugdelijk Adj(attr,stell,onverv) Adj(adv,stell,onverv) voorhand N(soort,ev,neut) Eerlijkheidshalve Adv(gew,geen_func,stell,onverv) gingen V(intrans,ovt,1_of_2_of_3,mv) V(hulp,ovt,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv) verre Adj(attr,stell,verv_neut) fotoserie N(soort,ev,neut) daargelaten Prep(achter) toeneemt V(intrans,ott,3,ev) gereageerd V(intrans,verl_dw,onverv) afliep V(trans,ovt,1_of_2_of_3,ev) gezamenlijk Adj(adv,stell,onverv) OZZ N(soort,ev,neut) uitgeprobeerd V(trans,verl_dw,onverv) Wilgen N(eigen,ev,neut) benadrukken V(trans,inf) bedaren V(intrans,inf) liefst Adj(adv,vergr,onverv) Bedoel V(intrans,ott,2,ev) gezegden N(soort,mv,neut) Snowdon N(eigen,ev,neut) stervende V(intrans,teg_dw,verv_neut) onderbreken V(trans,inf) ongeorganiseerde Adj(attr,stell,verv_neut) verse Adj(attr,stell,verv_neut) opeengeperste V(trans,verl_dw,verv_neut) kwaadheid N(soort,ev,neut) verhalen N(soort,mv,neut) V(trans,inf) vluggertje N(soort,ev,neut) niets Pron(onbep,neut,zelfst) puur Adj(adv,stell,onverv) mrs. N(eigen,ev,neut) gezorgd V(trans,verl_dw,onverv) ramen N(soort,mv,neut) operatie N(soort,ev,neut) diep Adj(adv,stell,onverv) getrouwd V(intrans,verl_dw,onverv) verhinderd V(trans,verl_dw,onverv) lag V(intrans,ovt,1_of_2_of_3,ev) V(hulp,ovt,1_of_2_of_3,ev) verte N(soort,ev,neut) tutoyerend V(intrans,teg_dw,onverv) veroorzakende V(trans,teg_dw,verv_neut) weggegaan V(intrans,verl_dw,onverv) gedokterd V(intrans,verl_dw,onverv) afgeslagen V(trans,verl_dw,onverv) vanuit Prep(voor) Spanje N(eigen,ev,neut) zelden Adv(gew,geen_func,stell,onverv) lap N(soort,ev,neut) opvoeding N(soort,ev,neut) ondeugende Adj(attr,stell,verv_neut) las V(trans,ovt,1_of_2_of_3,ev) eindspurt N(soort,ev,neut) rondbuig- N(soort,ev,neut) jong Adj(attr,stell,onverv) pikken V(trans,ott,1_of_2_of_3,mv) beoogde V(trans,verl_dw,verv_neut) nieuw Adj(attr,stell,onverv) verdeeld V(trans,verl_dw,onverv) nervositeit N(soort,ev,neut) piano N(soort,ev,neut) volzinnen N(soort,mv,neut) zus N(soort,ev,neut) geconfronteerd V(trans,verl_dw,onverv) eindigden V(intrans,ovt,1_of_2_of_3,mv) 17.000 Num(hoofd,bep,attr,onverv) recorder N(soort,ev,neut) aanpakken V(trans,inf) verdeelt V(trans,ott,3,ev) vergaat V(intrans,ott,3,ev) schijnheiligheid N(soort,ev,neut) pittige Adj(attr,stell,verv_neut) sinaasappelsap N(soort,ev,neut) kermis N(soort,ev,neut) aceton N(soort,ev,neut) jood N(soort,ev,neut) buikwand N(soort,ev,neut) daarbinnen Adv(pron,aanw) autoritaire Adj(attr,stell,verv_neut) lopen V(intrans,inf) V(trans,inf) V(trans,ott,1_of_2_of_3,mv) V(hulp,inf) V(intrans,ott,1_of_2_of_3,mv) Bescherming N(eigen,ev,neut) stijgende V(intrans,teg_dw,verv_neut) wandkleed N(soort,ev,neut) conflict N(soort,ev,neut) Vanaf Prep(voor) overal Adv(gew,onbep) Miss N(soort,ev,neut) Azie N(eigen,ev,neut) tenminste Adv(gew,geen_func,stell,onverv) formele Adj(attr,stell,verv_neut) mindere Num(hoofd,onbep,attr,vergr,verv_neut) weelderige Adj(attr,stell,verv_neut) geuren N(soort,mv,neut) combineren V(trans,inf) gulden N(soort,ev,neut) onechte Adj(attr,stell,verv_neut) meestal Adv(gew,geen_func,stell,onverv) portret N(soort,ev,neut) blijkbaar Adv(gew,geen_func,stell,onverv) 384 Num(hoofd,bep,zelfst,onverv) lelijke Adj(attr,stell,verv_neut) slimheid N(soort,ev,neut) wegliet V(trans,ovt,1_of_2_of_3,ev) roadmanager N(soort,ev,neut) talrijk Adj(attr,stell,onverv) melkmannen N(soort,mv,neut) Verandering N(soort,ev,neut) eend N(soort,ev,neut) eene Pron(onbep,neut,attr) aankomst N(soort,ev,neut) Breton N(eigen,ev,neut) overwinning N(soort,ev,neut) huizen N(soort,mv,neut) spelletjes N(soort,mv,neut) gemerkt V(trans,verl_dw,onverv) huizes N(soort,ev,gen) ondertitel N(soort,ev,neut) beginnen V(intrans,inf) V(trans,ott,1_of_2_of_3,mv) V(trans,inf) V(intrans,ott,1_of_2_of_3,mv) V(hulp,ott,1_of_2_of_3,mv) eens Adv(gew,geen_func,stell,onverv) Adj(attr,stell,onverv) middelmatige Adj(attr,stell,verv_neut) wist V(trans,ovt,1_of_2_of_3,ev) V(hulp,ovt,1_of_2_of_3,ev) Verkeer N(eigen,ev,neut) structuur N(soort,ev,neut) gesmoorde V(trans,verl_dw,verv_neut) tube N(soort,ev,neut) erotisch Adj(attr,stell,onverv) interessanter Adj(attr,vergr,onverv) etc. Adv(gew,geen_func,stell,onverv) uitgever N(soort,ev,neut) Tower N(eigen,ev,neut) Snoeshaan N(eigen,ev,neut) deskundigen Adj(zelfst,stell,verv_mv) werkploeg N(soort,ev,neut) ALS Conj(onder,met_fin) pratend V(intrans,teg_dw,onverv) wisselvallige Adj(attr,stell,verv_neut) kleurenfilms N(soort,mv,neut) drentelden V(intrans,ovt,1_of_2_of_3,mv) Meneer N(soort,ev,neut) vervaardigd V(trans,verl_dw,onverv) verzekeringstarief N(soort,ev,neut) aflatende V(intrans,teg_dw,verv_neut) gekrepeerd V(trans,verl_dw,onverv) wederzijds Adj(adv,stell,onverv) genieting N(soort,ev,neut) dagverblijf N(soort,ev,neut) aardig Adj(attr,stell,onverv) les N(soort,ev,neut) let V(intrans,ott,3,ev) terroriseerden V(trans,ovt,1_of_2_of_3,mv) onderrigt N(soort,ev,neut) Yves N(eigen,ev,neut) plassen N(soort,mv,neut) vergeleken V(trans,verl_dw,onverv) spasticiteit N(soort,ev,neut) dijk N(soort,ev,neut) bankreferenties N(soort,mv,neut) Square N(eigen,ev,neut) Norway N(eigen,ev,neut) afgrijselijke Adj(attr,stell,verv_neut) doorgedraaid V(trans,verl_dw,onverv) teveel Num(hoofd,onbep,zelfst,stell,onverv) popnummers N(soort,mv,neut) aanvallen N(soort,mv,neut) okay Int 1-persoonskamer N(soort,ev,neut) verkrijgbaar Adj(attr,stell,onverv) leeuwenkop N(soort,ev,neut) sleur N(soort,ev,neut) uitzicht N(soort,ev,neut) particuliere Adj(attr,stell,verv_neut) opgewassen Adj(attr,stell,onverv) onjuist Adj(attr,stell,onverv) giechelden V(intrans,ovt,1_of_2_of_3,mv) dorst N(soort,ev,neut) mogelijkheid N(soort,ev,neut) onverdraaglijke Adj(attr,stell,verv_neut) plantgat N(soort,ev,neut) ANP N(eigen,ev,neut) gekwetst V(trans,verl_dw,onverv) vermoedens N(soort,mv,neut) miljard Num(hoofd,bep,attr,onverv) presidentsverkiezingen N(soort,mv,neut) meneren N(soort,mv,neut) Gray N(eigen,ev,neut) dubbel-lp N(soort,ev,neut) geurig Adj(attr,stell,onverv) resulteren V(intrans,ott,1_of_2_of_3,mv) Evenals Conj(onder,met_fin) ziekten N(soort,mv,neut) sam-sam Adv(gew,geen_func,stell,onverv) Caecilia N(eigen,ev,neut) puberteit N(soort,ev,neut) wachten V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) keert V(refl,ott,3,ev) William N(eigen,ev,neut) sneden N(soort,mv,neut) doorloop N(soort,ev,neut) daartoe Adv(pron,aanw) potlood N(soort,ev,neut) prompt Adj(adv,stell,onverv) vergunning N(soort,ev,neut) vernietigd V(trans,verl_dw,onverv) Koningin N(soort,ev,neut) meesten Num(hoofd,onbep,zelfst,overtr,verv_mv) Belgische Adj(attr,stell,verv_neut) punch Misc(vreemd) nachts N(soort,ev,gen) diepzeezwemmen V(intrans,inf) meester N(soort,ev,neut) glaasje-op N(soort,ev,neut) Stadion N(soort,ev,neut) donkerblauwe Adj(attr,stell,verv_neut) roodgeschilderde Adj(attr,stell,verv_neut) verzwegen V(trans,verl_dw,onverv) vermoeden V(trans,inf) provocatus N(soort,ev,neut) onderaan Prep(voor) bekertje N(soort,ev,neut) Zondag N(eigen,ev,neut) kennen V(trans,inf) V(trans,ott,1_of_2_of_3,mv) bleef V(hulp_of_kopp,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) rechtse Adj(attr,stell,verv_neut) jaar N(soort,ev,neut) voorspoedig Adj(adv,stell,onverv) dichtgetrokken V(trans,verl_dw,onverv) bleek V(hulp_of_kopp,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) Meestentijds Adv(gew,geen_func,stell,onverv) decormaquette N(soort,ev,neut) papier N(soort,ev,neut) eten N(soort,ev,neut) V(trans,ott,1_of_2_of_3,mv) V(intrans,inf) V(trans,inf) Godsnaam N(soort,ev,neut) baby-doll N(soort,ev,neut) koken V(intrans,inf) Buitenveldert-Amsterdam N(eigen,ev,neut) Rimini N(eigen,ev,neut) koket Adj(adv,stell,onverv) lid N(soort,ev,neut) Och Int jouw Pron(bez,2,ev,neut,attr) lig V(intrans,ott,1,ev) Psychiatrische Adj(attr,stell,verv_neut) Kartoffelsalat N(soort,ev,neut) motivering N(soort,ev,neut) geraakt V(hulp_of_kopp,verl_dw,onverv) V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv) PCS Num(hoofd,bep,zelfst,onverv) gemeen Adj(attr,stell,onverv) triest Adj(attr,stell,onverv) 2200 Num(hoofd,bep,attr,onverv) pendelen V(intrans,inf) grammofoon N(soort,ev,neut) zenuwslopende Adj(attr,stell,verv_neut) elkaars Pron(rec,gen) kluivend V(intrans,teg_dw,onverv) ding N(soort,ev,neut) lering N(soort,ev,neut) zoals Conj(onder,met_fin) Rein N(eigen,ev,neut) bereikte V(trans,ovt,1_of_2_of_3,ev) voorste Adj(attr,stell,verv_neut) kruidenboeken N(soort,mv,neut) vijftig Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) Ober N(soort,ev,neut) rustig Adj(adv,stell,onverv) Adj(attr,stell,onverv) lijdt V(trans,ott,3,ev) Europa's N(eigen,ev,gen) geestdrift N(soort,ev,neut) etablissement N(soort,ev,neut) collagestijl N(soort,ev,neut) sommige Pron(onbep,neut,attr) tijdens Prep(voor) huisvrouwen N(soort,mv,neut) Opgeschrikt V(trans,verl_dw,onverv) meubelen N(soort,mv,neut) toebehoord V(intrans,verl_dw,onverv) merels N(soort,mv,neut) geknecht V(trans,verl_dw,onverv) hesje N(soort,ev,neut) koelkast N(soort,ev,neut) ARP N(eigen,ev,neut) aardbevingen N(soort,mv,neut) geringste Adj(attr,overtr,verv_neut) geraamd V(trans,verl_dw,onverv) grapje N(soort,ev,neut) vijanden N(soort,mv,neut) vaste Adj(attr,stell,verv_neut) uitbuiting N(soort,ev,neut) eengezinswoningen N(soort,mv,neut) zaken N(soort,mv,neut) gekronkelde V(intrans,verl_dw,verv_neut) meespelen V(intrans,inf) eeuw N(soort,ev,neut) boordevol Adj(attr,stell,onverv) aanwijzing N(soort,ev,neut) arbeidsveld N(soort,ev,neut) lazen V(intrans,ovt,1_of_2_of_3,mv) Altijd Adv(gew,aanw) Parool N(eigen,ev,neut) tuin N(soort,ev,neut) deelden V(trans,ovt,1_of_2_of_3,mv) Hendrika N(eigen,ev,neut) zoldertje N(soort,ev,neut) zodanig Pron(aanw,neut,zelfst) Onassis N(eigen,ev,neut) doden Adj(zelfst,stell,verv_mv) V(trans,inf) Teruggekeerd V(intrans,verl_dw,onverv) Indiers N(soort,mv,neut) appeltaart N(soort,ev,neut) goede Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut) kluchtige Adj(attr,stell,verv_neut) Pallandt N(eigen,ev,neut) turn-ons N(soort,mv,neut) dossier N(soort,ev,neut) zelfbewuster Adj(attr,vergr,onverv) kennis N(soort,ev,neut) popperig Adj(attr,stell,onverv) gezinstype N(soort,ev,neut) zichzelf Pron(ref,3,ev_of_mv) leeggehaald V(trans,verl_dw,onverv) goeds Adj(attr,stell,verv_gen) Zonder Prep(voor) Conj(onder,met_inf) beamen V(trans,inf) beschouw V(trans,ott,1,ev) aanvraag N(soort,ev,neut) rilde V(intrans,ovt,1_of_2_of_3,ev) mentaliteit N(soort,ev,neut) vlakte N(soort,ev,neut) afwas N(soort,ev,neut) telkens Adv(gew,geen_func,stell,onverv) stierf V(intrans,ovt,1_of_2_of_3,ev) sprekende V(intrans,teg_dw,verv_neut) heftige Adj(attr,stell,verv_neut) Sark N(eigen,ev,neut) doodeenzaam Adj(attr,stell,onverv) tonen V(trans,ott,1_of_2_of_3,mv) V(refl,ott,1_of_2_of_3,mv) N(soort,mv,neut) V(intrans,ott,1_of_2_of_3,mv) V(trans,inf) speel V(trans,ott,1,ev) voorouders N(soort,mv,neut) honend V(intrans,teg_dw,onverv) registreert V(trans,ott,3,ev) chanson-programma N(soort,ev,neut) prenten N(soort,mv,neut) desnoods Adv(gew,geen_func,stell,onverv) bevatten V(trans,ott,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv) ontucht N(soort,ev,neut) geintegreerd V(trans,verl_dw,onverv) manifesteerde V(refl,ovt,1_of_2_of_3,ev) zeurderige Adj(attr,stell,verv_neut) noch Conj(neven) haverklap N(soort,ev,neut) bezaaid V(trans,verl_dw,onverv) onverharde Adj(attr,stell,verv_neut) voelend V(intrans,teg_dw,onverv) professionele Adj(attr,stell,verv_neut) dichtbij Adv(gew,geen_func,stell,onverv) ambtsperiode N(soort,ev,neut) gebrek N(soort,ev,neut) fondueschotels N(soort,mv,neut) Reclamemensen N(soort,mv,neut) Elspeet N(eigen,ev,neut) gestorven V(intrans,verl_dw,onverv) gelegenheid N(soort,ev,neut) bleke Adj(attr,stell,verv_neut) buitengewoon Adj(adv,stell,onverv) kogels N(soort,mv,neut) opzien N(soort,ev,neut) regenjas N(soort,ev,neut) ongegrond Adj(attr,stell,onverv) Zwijger N(eigen,ev,neut) eigenschappen N(soort,mv,neut) node Adv(gew,geen_func,stell,onverv) verdienstelijk Adj(adv,stell,onverv) wanhopige Adj(attr,stell,verv_neut) Doen V(trans,ott,1_of_2_of_3,mv) tulp N(soort,ev,neut) Doet V(trans,ott,3,ev) oliehaven N(soort,ev,neut) aantrekkelijke Adj(attr,stell,verv_neut) sphagnum-turf N(soort,ev,neut) zakie N(soort,ev,neut) Leeuw N(soort,ev,neut) lof N(soort,ev,neut) Oil N(eigen,ev,neut) lol N(soort,ev,neut) concluderen V(trans,inf) daaromheen Adv(pron,aanw) citaat N(soort,ev,neut) tevens Adv(gew,geen_func,stell,onverv) landen N(soort,mv,neut) N(eigen,ev,neut) los Adj(attr,stell,onverv) lot N(soort,ev,neut) noodlot N(soort,ev,neut) aanzien N(soort,ev,neut) V(intrans,inf,subst) V(trans,inf) slachtpartij N(soort,ev,neut) plaatsjes N(soort,mv,neut) Moeder N(soort,ev,neut) N(eigen,ev,neut) Jonkheer N(soort,ev,neut) Slavische Adj(attr,stell,verv_neut) hijzelf Pron(per,3,ev,nom) Nederlands Adj(attr,stell,onverv) N(eigen,ev,neut) N(eigen,ev,gen) Daardoor Adv(pron,aanw) klap N(soort,ev,neut) AWW N(soort,ev,neut) koorts N(soort,ev,neut) Stichting N(eigen,ev,neut) haten V(intrans,inf) zakje N(soort,ev,neut) rapport N(soort,ev,neut) Kirsch N(soort,ev,neut) bungalowhotel N(soort,ev,neut) milieus N(soort,mv,neut) kunststoffen Adj(attr,stell,onverv) huwelijksreis N(soort,ev,neut) rechtsaf Adv(gew,geen_func,stell,onverv) mogen V(hulp,inf) V(intrans,ott,1_of_2_of_3,mv) V(hulp,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) Doge N(soort,ev,neut) weekend- N(soort,ev,neut) wonderkinderen N(soort,mv,neut) medewerkers N(soort,mv,neut) slagerstouw N(soort,ev,neut) waaraan Adv(pron,vrag) Adv(pron,betr) illusie N(soort,ev,neut) Huishoudschool N(soort,ev,neut) vangen V(trans,inf) Stevens N(eigen,ev,neut) vaderlandse Adj(attr,stell,verv_neut) onthullend V(intrans,teg_dw,onverv) controle N(soort,ev,neut) wekelijks Adj(adv,stell,onverv) sturen V(trans,inf) N(soort,mv,neut) maanoppervlak N(soort,ev,neut) Gezinsvorming N(eigen,ev,neut) Lijdensweek N(soort,ev,neut) zinsnede N(soort,ev,neut) Darnley N(eigen,ev,neut) maatschappelijk Adj(attr,stell,onverv) ambtenaren N(soort,mv,neut) goeie Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut) regering N(soort,ev,neut) Uitgaande V(intrans,teg_dw,verv_neut) oerkracht N(soort,ev,neut) luieren V(intrans,inf) lijkt V(hulp_of_kopp,ott,3,ev) V(intrans,ott,3,ev) Haarlem N(eigen,ev,neut) schilderwerk N(soort,ev,neut) ontdooid V(trans,verl_dw,onverv) bieden V(trans,inf) V(trans,ott,1_of_2_of_3,mv) klonken V(intrans,ovt,1_of_2_of_3,mv) buurtje N(soort,ev,neut) gebracht V(trans,verl_dw,onverv) Carel N(eigen,ev,neut) missing-link N(soort,ev,neut) lusteloos Adj(adv,stell,onverv) Recreatie N(eigen,ev,neut) gemene Adj(attr,stell,verv_neut) i.u.d.'s N(soort,mv,neut) impressionistische Adj(attr,stell,verv_neut) evenement N(soort,ev,neut) mexicaanse Adj(attr,stell,verv_neut) Ierland N(eigen,ev,neut) Gaaikema N(eigen,ev,neut) rebelse Adj(attr,stell,verv_neut) coordinatie N(soort,ev,neut) tragisch Adj(attr,stell,onverv) Inmiddels Adv(gew,geen_func,stell,onverv) toeristische Adj(attr,stell,verv_neut) zoetvijltje N(soort,ev,neut) plezierigste Adj(attr,overtr,verv_neut) eerst Adj(adv,vergr,onverv) Adv(gew,geen_func,stell,onverv) kleuter N(soort,ev,neut) oefenen V(intrans,inf) V(trans,inf) katholieke Adj(attr,stell,verv_neut) Waag V(trans,imp) Ome N(soort,ev,neut) zelfportret N(soort,ev,neut) regeringspartijen N(soort,mv,neut) Waar Adv(gew,vrag) Adv(pron,betr) weerstond V(trans,ovt,1_of_2_of_3,ev) pleiten V(intrans,ott,1_of_2_of_3,mv) komkommers N(soort,mv,neut) gasten N(soort,mv,neut) jachtsafari's N(soort,mv,neut) Sander N(eigen,ev,neut) waarschuwde V(trans,ovt,1_of_2_of_3,ev) schuilnaam N(soort,ev,neut) Parade N(eigen,ev,neut) Elizabeth N(eigen,ev,neut) natuurmuseum N(soort,ev,neut) teruggehouden V(trans,verl_dw,onverv) bosneger N(soort,ev,neut) ziekenhuisbevallingen N(soort,mv,neut) verkoop N(soort,ev,neut) uitbundige Adj(attr,stell,verv_neut) schooldeur N(soort,ev,neut) klem Adj(attr,stell,onverv) schoonheidswater N(soort,ev,neut) doormidden Adv(gew,geen_func,stell,onverv) opereert V(intrans,ott,3,ev) soelaas N(soort,ev,neut) excellenties N(soort,mv,neut) huwelijk N(soort,ev,neut) Lindner N(eigen,ev,neut) kerstmis N(eigen,ev,neut) opgericht V(trans,verl_dw,onverv) morgens N(soort,ev,gen) gelijk N(soort,ev,neut) Adj(attr,stell,onverv) Adj(adv,stell,onverv) niet-Hindostaans Adj(attr,stell,onverv) aandriften N(soort,mv,neut) abrikozen N(soort,mv,neut) Ons Pron(bez,1,mv,neut,attr) N(eigen,ev,neut) oefening N(soort,ev,neut) ontstaan V(intrans,verl_dw,onverv) gezellige Adj(attr,stell,verv_neut) Police Misc(vreemd) slagzin N(soort,ev,neut) nieuwsmedia N(soort,mv,neut) ruikende V(intrans,teg_dw,verv_neut) ontstaat V(intrans,ott,3,ev) waarschuwen V(trans,inf) algauw Adv(gew,geen_func,stell,onverv) Overspel N(soort,ev,neut) misprijzend V(intrans,teg_dw,onverv) leken V(hulp_of_kopp,ovt,1_of_2_of_3,mv) meetellen V(trans,ott,1_of_2_of_3,mv) Dahome N(eigen,ev,neut) Oog N(soort,ev,neut) inachtneming N(soort,ev,neut) volgorde N(soort,ev,neut) Ook Adv(gew,geen_func,stell,onverv) aantal N(soort,ev,neut) Oom N(soort,ev,neut) N(eigen,ev,neut) lui Adj(attr,stell,onverv) dagen- Adj(attr,stell,verv_neut) sluiten V(refl,inf) V(trans,inf) voelde V(refl,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) ploegafspraken N(soort,mv,neut) gordijnring N(soort,ev,neut) minutieus Adj(attr,stell,onverv) serie N(soort,ev,neut) Soefi-zijn N(soort,ev,neut) fluitjes N(soort,mv,neut) wachtte V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) thuis-opgevoede Adj(attr,stell,verv_neut) Overdoen V(intrans,inf) geheven V(trans,verl_dw,onverv) Philippe N(eigen,ev,neut) pleet N(soort,ev,neut) prakken V(trans,inf) filmsterren N(soort,mv,neut) eethuizen N(soort,mv,neut) initiatief N(soort,ev,neut) zaadje-eitje N(soort,ev,neut) kozen V(trans,ovt,1_of_2_of_3,mv) Bruce N(eigen,ev,neut) sijsjes N(soort,mv,neut) koersstijging N(soort,ev,neut) geraak V(hulp_of_kopp,ott,1,ev) voelen V(intrans,inf) V(trans,ott,1_of_2_of_3,mv) V(refl,inf) verruiming N(soort,ev,neut) zo'n Pron(aanw,neut,attr) eiwitten N(soort,mv,neut) barok N(soort,ev,neut) vaagheid N(soort,ev,neut) baron N(soort,ev,neut) perspektief N(soort,ev,neut) zijde N(soort,ev,neut) bewaring N(soort,ev,neut) Previn N(eigen,ev,neut) onderhandelingen N(soort,mv,neut) Revu N(eigen,ev,neut) relations N(soort,mv,neut) Limburgse Adj(attr,stell,verv_neut) huisdier N(soort,ev,neut) huilen V(intrans,inf) leerzaam Adj(attr,stell,onverv) fijngehakte V(trans,verl_dw,verv_neut) juffrouw N(soort,ev,neut) klik N(soort,ev,neut) woont V(intrans,ott,3,ev) Sorry Int auto's N(soort,mv,neut) keukenprinses N(soort,ev,neut) hier Adv(gew,aanw) Adv(pron,aanw) compliment N(soort,ev,neut) emancipatie N(soort,ev,neut) schiep V(trans,ovt,1_of_2_of_3,ev) danig Adj(adv,stell,onverv) allerprilste Adj(attr,overtr,verv_neut) Maastrichtse Adj(attr,stell,verv_neut) bloedend V(intrans,teg_dw,onverv) instructies N(soort,mv,neut) actie N(soort,ev,neut) zeegedierte N(soort,ev,neut) Door Prep(voor) N(eigen,ev,neut) genre N(soort,ev,neut) knoop N(soort,ev,neut) zonzoeker N(soort,ev,neut) creaties N(soort,mv,neut) primair Adj(adv,stell,onverv) raadplegen V(trans,inf) handkarren N(soort,mv,neut) opzettelijk Adj(adv,stell,onverv) Albert N(eigen,ev,neut) conclusie N(soort,ev,neut) gedreigd V(trans,verl_dw,onverv) Chabaudanjer N(soort,ev,neut) lijst N(soort,ev,neut) wegwerken V(trans,inf) natuurbad N(soort,ev,neut) woongemeenschappen N(soort,mv,neut) waartegen Adv(pron,vrag) Alle Pron(onbep,neut,attr) praatje N(soort,ev,neut) merendeel N(soort,ev,neut) gemeubileerd V(trans,verl_dw,onverv) nood N(soort,ev,neut) bijwonen V(trans,inf,subst) smaakpapillen N(soort,mv,neut) gewenste V(trans,verl_dw,verv_neut) Vanuit Prep(voor) grachten N(soort,mv,neut) thuiskwam V(intrans,ovt,1_of_2_of_3,ev) snauwde V(intrans,ovt,1_of_2_of_3,ev) onderschatten V(trans,ott,1_of_2_of_3,mv) harpoenier N(soort,ev,neut) haalde V(trans,ovt,1_of_2_of_3,ev) high N(eigen,ev,neut) plein N(soort,ev,neut) media-mannen N(soort,mv,neut) probeerde V(hulp,ovt,1_of_2_of_3,ev) wateren N(soort,mv,neut) zakte V(intrans,ovt,1_of_2_of_3,ev) pleit N(soort,ev,neut) V(intrans,ott,3,ev) Chuvalo N(eigen,ev,neut) vliegen V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) 19,75 Num(hoofd,bep,attr,onverv) klaarmaakte V(refl,ovt,1_of_2_of_3,ev) nadele N(soort,ev,dat) Moderne Adj(attr,stell,verv_neut) veroordeeld V(trans,verl_dw,onverv) aankwam V(intrans,ovt,1_of_2_of_3,ev) Liefhebber N(soort,ev,neut) zuidkust N(soort,ev,neut) slakken N(soort,mv,neut) tenger Adj(attr,stell,onverv) gemanipuleer N(soort,ev,neut) paren V(intrans,inf) voorhoofdknobbel N(soort,ev,neut) Brussel N(eigen,ev,neut) kronkelt V(intrans,ott,3,ev) Aan Prep(voor) heeft V(hulp,ott,3,ev) V(trans,ott,3,ev) V(intrans,ott,3,ev) V(trans,ott,2,ev) dankt V(trans,ott,3,ev) kunstgeschiedenis N(soort,ev,neut) Onlangs Adv(gew,geen_func,stell,onverv) kusten N(soort,mv,neut) spierpoedelnaakt Adj(attr,stell,onverv) Kermis N(eigen,ev,neut) belangrijke Adj(attr,stell,verv_neut) Durham N(eigen,ev,neut) Koeweit N(eigen,ev,neut) toeschouwers N(soort,mv,neut) suiker N(soort,ev,neut) verdient V(trans,ott,3,ev) V(trans,ott,2,ev) Overal Adv(gew,onbep) woord N(soort,ev,neut) contract N(soort,ev,neut) kleinzerig Adj(attr,stell,onverv) Dorp N(soort,ev,neut) gebiedt V(trans,ott,3,ev) beheersen V(trans,ott,1_of_2_of_3,mv) lijve N(soort,ev,dat) boontjes N(soort,mv,neut) schokbrekers N(soort,mv,neut) prachtig Adj(attr,stell,onverv) terreinen N(soort,mv,neut) harten N(soort,ev,neut) groepseffect N(soort,ev,neut) Dory N(eigen,ev,neut) groeten V(intrans,inf) tournee N(soort,ev,neut) zijden Adj(attr,stell,onverv) gefascineerd V(trans,verl_dw,onverv) betrekken V(trans,inf) contacten N(soort,mv,neut) 400 Num(hoofd,bep,attr,onverv) hielden V(intrans,ovt,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv) nadenk V(intrans,ott,1,ev) geringere Adj(attr,vergr,verv_neut) langdurig Adj(adv,stell,onverv) koninklijke Adj(attr,stell,verv_neut) afgebroken V(trans,verl_dw,onverv) negen Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) Ach Int blijken V(hulp_of_kopp,ott,1_of_2_of_3,mv) V(intrans,inf) neger N(soort,ev,neut) schilder N(soort,ev,neut) -stronken N(soort,mv,neut) Gevormde V(trans,verl_dw,verv_neut) hijgend V(intrans,teg_dw,onverv) onvoldaanheid N(soort,ev,neut) effe Adv(gew,geen_func,stell,onverv) popmusici N(soort,mv,neut) studeerde V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) afschrikken V(trans,inf) Act Misc(vreemd) importeert V(trans,ott,3,ev) bruikbaars Adj(attr,stell,verv_gen) Veel Num(hoofd,onbep,attr,stell,onverv) lokaas N(soort,ev,neut) schijn N(soort,ev,neut) V(hulp_of_kopp,ott,2,ev) ziekenhuisgemeenschap N(soort,ev,neut) gezichten N(soort,mv,neut) Ada N(eigen,ev,neut) verdiept V(refl,verl_dw,onverv) vaten N(soort,mv,neut) kweken V(trans,inf,subst) V(trans,inf) zwoer V(intrans,ovt,1_of_2_of_3,ev) deelnemers N(soort,mv,neut) bankstel N(soort,ev,neut) lijdensweg N(soort,ev,neut) departement N(soort,ev,neut) kiezen V(trans,inf) V(intrans,inf) hoofdgebouw N(soort,ev,neut) verjaarscadeau N(soort,ev,neut) wegstromen V(intrans,inf) dosis N(soort,ev,neut) STOP N(soort,ev,neut) afgewogen V(trans,verl_dw,onverv) westerse Adj(attr,stell,verv_neut) slaatje N(soort,ev,neut) sketches N(soort,mv,neut) Henri N(eigen,ev,neut) bordjes N(soort,mv,neut) nauwgezet Adj(adv,stell,onverv) drankverkopers N(soort,mv,neut) achtentwintigste Num(rang,bep,zelfst,onverv) klok N(soort,ev,neut) voorstellen V(trans,inf) klom V(intrans,ovt,1_of_2_of_3,ev) gevoed V(trans,verl_dw,onverv) inzien V(intrans,inf) Daan N(eigen,ev,neut) waarvoor Adv(pron,vrag) gevoel N(soort,ev,neut) Daar Adv(pron,aanw) Adv(gew,aanw) Henry N(eigen,ev,neut) bitter Adj(adv,stell,onverv) Adj(attr,stell,onverv) ongelofelijk Adj(adv,stell,onverv) stoornissen N(soort,mv,neut) frisse Adj(attr,stell,verv_neut) hoeken N(soort,mv,neut) verhuisd V(intrans,verl_dw,onverv) angst N(soort,ev,neut) Jasperina N(eigen,ev,neut) verwacht V(trans,ott,1,ev) V(trans,ott,3,ev) Stefan N(eigen,ev,neut) jury-leden N(soort,mv,neut) serre N(soort,ev,neut) Britse Adj(attr,stell,verv_neut) vangst N(soort,ev,neut) verschijnsel N(soort,ev,neut) verbouwing N(soort,ev,neut) september N(eigen,ev,neut) avonden N(soort,mv,neut) stroom N(soort,ev,neut) naad N(soort,ev,neut) Galbulten N(soort,mv,neut) Mobil N(eigen,ev,neut) alsnog Adv(gew,geen_func,stell,onverv) anonieme Adj(attr,stell,verv_neut) naam N(soort,ev,neut) Cecil N(eigen,ev,neut) kernen N(soort,mv,neut) hartspier N(soort,ev,neut) Zachtheid N(soort,ev,neut) middle-class N(soort,ev,neut) naar Prep(voor) Adv(deel_adv) onderdeel N(soort,ev,neut) publieke Adj(attr,stell,verv_neut) beloop N(soort,ev,neut) Hotel N(soort,ev,neut) climacterium N(soort,ev,neut) ranch N(soort,ev,neut) direct Adj(adv,stell,onverv) optrad V(intrans,ovt,1_of_2_of_3,ev) nootjes N(soort,mv,neut) gelijktijdig Adj(adv,stell,onverv) spiegelstroken N(soort,mv,neut) voorechtelijke Adj(attr,stell,verv_neut) nous Misc(vreemd) vereist V(trans,verl_dw,onverv) probleempjes N(soort,mv,neut) nadere Adj(attr,vergr,verv_neut) liever Adj(adv,vergr,onverv) Want Conj(neven) 444 Num(hoofd,bep,attr,onverv) lorren N(soort,mv,neut) wegpikt V(trans,ott,3,ev) verrassende V(intrans,teg_dw,verv_neut) baden V(intrans,ovt,1_of_2_of_3,mv) V(intrans,inf) nadert V(trans,ott,3,ev) aangrijpend V(intrans,teg_dw,onverv) teneinde Conj(onder,met_inf) belastingbetalers N(soort,mv,neut) onverhoedse Adj(attr,stell,verv_neut) Poolse Adj(attr,stell,verv_neut) feite N(soort,ev,dat) hing V(intrans,ovt,1_of_2_of_3,ev) behoort V(intrans,ott,3,ev) bergen N(soort,mv,neut) 37-jarige Adj(attr,stell,verv_neut) lingerie N(soort,ev,neut) noodzakelijkheden N(soort,mv,neut) agressie N(soort,ev,neut) zijne Pron(bez,3,ev,neut,attr) onwrikbaar Adj(adv,stell,onverv) Lester N(eigen,ev,neut) vervangen V(trans,verl_dw,onverv) schildje N(soort,ev,neut) aanstekelijke Adj(attr,stell,verv_neut) wandelden V(intrans,ovt,1_of_2_of_3,mv) praatstof N(soort,ev,neut) iets Pron(onbep,neut,zelfst) Pron(onbep,neut,attr) directie N(soort,ev,neut) japon N(soort,ev,neut) versturen V(trans,inf) vooral Adv(gew,geen_func,stell,onverv) oplevert V(trans,ott,3,ev) lyrisch Adj(attr,stell,onverv) badkamer N(soort,ev,neut) jazz Misc(vreemd) Brusselse Adj(attr,stell,verv_neut) auto N(soort,ev,neut) onderwerp N(soort,ev,neut) kuren V(intrans,inf) J.B. N(eigen,ev,neut) DSRV N(soort,ev,neut) binnenkort Adv(gew,geen_func,stell,onverv) bezuinigen V(intrans,inf) ongenoemd Adj(attr,stell,onverv) vooruitgang N(soort,ev,neut) zatterik N(soort,ev,neut) opging V(intrans,ovt,1_of_2_of_3,ev) bewandelen V(trans,ott,1_of_2_of_3,mv) getracht V(hulp,verl_dw,onverv) mag V(hulp,ott,3,ev) V(trans,ott,2,ev) V(hulp,ott,1,ev) V(intrans,ott,3,ev) V(trans,ott,1,ev) V(hulp,ott,2,ev) veilige Adj(attr,stell,verv_neut) afgronden N(soort,mv,neut) ginds Adv(gew,aanw) etentjes N(soort,mv,neut) gracieuze Adj(attr,stell,verv_neut) weinig Num(hoofd,onbep,zelfst,stell,onverv) Num(hoofd,onbep,attr,stell,onverv) man N(soort,ev,neut) N(eigen,ev,neut) Misc(vreemd) N(soort,mv,neut) map N(soort,ev,neut) zeker Adj(adv,stell,onverv) Adj(attr,stell,onverv) Pron(onbep,neut,attr) zeldzamer Adj(attr,vergr,onverv) lezen V(trans,inf) V(trans,ott,1_of_2_of_3,mv) V(intrans,inf) huizenbouw N(soort,ev,neut) ermee Adv(pron,onbep) boodschappen N(soort,mv,neut) lezer N(soort,ev,neut) daaruit Adv(pron,aanw) Hermans N(eigen,ev,neut) vloedlijn N(soort,ev,neut) processen N(soort,mv,neut) uren N(soort,mv,neut) misleidende V(intrans,teg_dw,verv_neut) kuchte V(intrans,ovt,1_of_2_of_3,ev) l.p. N(soort,ev,neut) bevolking N(soort,ev,neut) voortgezet V(trans,verl_dw,onverv) Abrahamse N(eigen,ev,neut) operette N(soort,ev,neut) deurknop N(soort,ev,neut) hoekje N(soort,ev,neut) herinneringen N(soort,mv,neut) voorkeur N(soort,ev,neut) Alstublieft Int Terra Misc(vreemd) dialogen N(soort,mv,neut) praatte V(intrans,ovt,1_of_2_of_3,ev) tuinpaden N(soort,mv,neut) bekijkt V(trans,ott,2,ev) V(trans,ott,3,ev) Terre N(eigen,ev,neut) bibliotheek N(soort,ev,neut) bromde V(trans,ovt,1_of_2_of_3,ev) avondje N(soort,ev,gen) vijfde Num(rang,bep,attr,onverv) manieren N(soort,mv,neut) Veld N(eigen,ev,neut) kostuums N(soort,mv,neut) indicaties N(soort,mv,neut) ditzelfde Pron(aanw,neut,attr) Warm V(trans,imp) radiostations N(soort,mv,neut) steeg V(intrans,ovt,1_of_2_of_3,ev) rechtstreeks Adj(adv,stell,onverv) wielrijdster N(soort,ev,neut) steek N(soort,ev,neut) V(trans,imp) steen N(soort,ev,neut) fokken V(intrans,inf) kwetsbare Adj(attr,stell,verv_neut) beschikte V(intrans,ovt,1_of_2_of_3,ev) allerscherpst Adj(attr,overtr,onverv) straat N(soort,ev,neut) uitzending N(soort,ev,neut) simplificaties N(soort,mv,neut) ogenblik N(soort,ev,neut) DANKTE V(trans,ovt,1_of_2_of_3,ev) opmerkelijkste Adj(attr,overtr,verv_neut) minachting N(soort,ev,neut) rock N(soort,ev,neut) neergelegd V(trans,verl_dw,onverv) trottoirs N(soort,mv,neut) vergelijk V(trans,ott,1,ev) uitmaken V(trans,inf) vervelen V(refl,inf) 2.000 Num(hoofd,bep,attr,onverv) gesmoord V(trans,verl_dw,onverv) Blois N(eigen,ev,neut) gevolg N(soort,ev,neut) dreigde V(trans,ovt,1_of_2_of_3,ev) Chemische Adj(attr,stell,verv_neut) vriendinnetjes N(soort,mv,neut) Venlo N(eigen,ev,neut) bouwtrant N(soort,ev,neut) olijke Adj(attr,stell,verv_neut) vlamgevat V(intrans,verl_dw,onverv) heilzaam Adj(attr,stell,onverv) Compromis N(soort,ev,neut) riskante Adj(attr,stell,verv_neut) rode Adj(attr,stell,verv_neut) katoen N(soort,ev,neut) cultuur N(soort,ev,neut) moeten V(hulp,ott,1_of_2_of_3,mv) V(hulp,inf) benijdden V(trans,ovt,1_of_2_of_3,mv) Hoes N(eigen,ev,neut) Als Conj(onder,met_fin) onderzochte V(trans,verl_dw,verv_neut) uberhaupt Adv(gew,geen_func,stell,onverv) zelfmoord N(soort,ev,neut) verklaring N(soort,ev,neut) geachte V(trans,verl_dw,verv_neut) aarzelde V(intrans,ovt,1_of_2_of_3,ev) nahoudt V(trans,ott,3,ev) Roodaangelopen Adj(attr,stell,onverv) mee Adv(deel_v) Adv(deel_adv) Adv(gew,geen_func,stell,onverv) vrouw-maagd N(soort,ev,neut) mei N(eigen,ev,neut) paasfolklore N(soort,ev,neut) binnen Adv(gew,geen_func,stell,onverv) Adv(deel_v) Prep(voor) Terugzetten V(intrans,inf) groenige Adj(attr,stell,verv_neut) men Pron(onbep,neut,zelfst) verleden N(soort,ev,neut) Adj(attr,stell,onverv) mes N(soort,ev,neut) processie N(soort,ev,neut) met Prep(voor) Terug Adv(gew,geen_func,stell,onverv) blokje N(soort,ev,neut) Mevrouw N(soort,ev,neut) allerkleinsten Adj(zelfst,overtr,verv_neut) daglicht N(soort,ev,neut) medailles N(soort,mv,neut) woonde V(intrans,ovt,1_of_2_of_3,ev) broedtijd N(soort,ev,neut) roes N(soort,ev,neut) roet N(soort,ev,neut) gaapte V(intrans,ovt,1_of_2_of_3,ev) hits N(soort,mv,neut) bespreken V(trans,inf,subst) lauwwarm Adj(attr,stell,onverv) Ijsland N(eigen,ev,neut) bekeken V(trans,verl_dw,onverv) meegaande V(intrans,teg_dw,verv_neut) aarzelen V(intrans,inf) gehouden V(trans,verl_dw,onverv) kwalen N(soort,mv,neut) allesverwoestend Adj(attr,stell,onverv) And Misc(vreemd) Hoge Adj(attr,stell,verv_neut) Remover Misc(vreemd) jarigen Adj(zelfst,stell,verv_mv) agent N(soort,ev,neut) bijfokken V(intrans,inf) maximum N(soort,ev,neut) lokale Adj(attr,stell,verv_neut) angstig Adj(adv,stell,onverv) drukke Adj(attr,stell,verv_neut) evolutionaire Adj(attr,stell,verv_neut) nabootsen V(intrans,inf) vakantiereizen N(soort,mv,neut) vastberaden Adj(adv,stell,onverv) Citaat N(soort,ev,neut) Tevens Adv(gew,geen_func,stell,onverv) boerendansers N(soort,mv,neut) mede Adv(gew,geen_func,stell,onverv) doorsneekijker N(soort,ev,neut) flutargumenten N(soort,mv,neut) studie N(soort,ev,neut) heimwee N(soort,ev,neut) titels N(soort,mv,neut) conservatieve Adj(attr,stell,verv_neut) scheelt V(trans,ott,3,ev) verantwoordelijkheid N(soort,ev,neut) heleboel N(soort,ev,neut) sensuele Adj(attr,stell,verv_neut) uitzondering N(soort,ev,neut) studio N(soort,ev,neut) verkapt Adj(adv,stell,onverv) Munchhausen N(eigen,ev,neut) steil Adj(adv,stell,onverv) Dwayne N(eigen,ev,neut) opgeborgen V(trans,verl_dw,onverv) Pas Adv(gew,geen_func,stell,onverv) N(eigen,ev,neut) Koorts N(soort,ev,neut) Paradiso N(eigen,ev,neut) teint N(soort,ev,neut) tumult N(soort,ev,neut) nabijheid N(soort,ev,neut) doorgemaakt V(trans,verl_dw,onverv) identificeren V(trans,inf) Producer N(soort,ev,neut) Dali N(eigen,ev,neut) promoveren V(intrans,inf) sluit V(trans,ott,3,ev) Enkelaar N(eigen,ev,neut) meel N(soort,ev,neut) Roemenie N(eigen,ev,neut) woestijn N(soort,ev,neut) rattenvlo N(soort,ev,neut) reddingsvloot N(soort,ev,neut) Bettelstudent N(eigen,ev,neut) handicap N(soort,ev,neut) meen V(trans,ott,1,ev) V(trans,ott,2,ev) afijn Int bekleedt V(trans,ott,3,ev) meer Adv(gew,geen_func,vergr,onverv) Num(hoofd,onbep,attr,vergr,onverv) Num(hoofd,onbep,zelfst,vergr,onverv) N(soort,ev,neut) Borra N(eigen,ev,neut) alcohol N(soort,ev,neut) toefje N(soort,ev,neut) jaarmarkt N(soort,ev,neut) gunstige Adj(attr,stell,verv_neut) walvissen N(soort,mv,neut) brak V(intrans,ovt,1_of_2_of_3,ev) Juliana N(eigen,ev,neut) sprekers N(soort,mv,neut) Pisuisse N(eigen,ev,neut) Dame N(eigen,ev,neut) billijken V(trans,inf) levenslang Adj(adv,stell,onverv) nevel N(soort,ev,neut) voetgangersvereniging N(soort,ev,neut) Dorpsstraat N(eigen,ev,neut) verbeelding N(soort,ev,neut) enkelbreuk N(soort,ev,neut) opluisterde V(trans,ovt,1_of_2_of_3,ev) albums N(soort,mv,neut) getuige Prep(voor) N(soort,ev,neut) mij Pron(per,1,ev,dat_of_acc) Pron(ref,1,ev) eindelijk Adv(gew,geen_func,stell,onverv) paaien V(trans,inf) plastic N(soort,ev,neut) min Num(hoofd,onbep,attr,stell,onverv) Num(hoofd,onbep,zelfst,stell,onverv) studentenorganisaties N(soort,mv,neut) mis N(soort,ev,neut) vijftiende Num(rang,bep,zelfst,onverv) Dana N(eigen,ev,neut) souvenirs N(soort,mv,neut) rustieke Adj(attr,stell,verv_neut) legertuig N(soort,ev,neut) opdonder N(soort,ev,neut) Dank N(soort,ev,neut) V(trans,ott,1,ev) bloemmotieven N(soort,mv,neut) name N(soort,ev,dat) vergeven V(intrans,inf) V(trans,inf) opberg-bankje N(soort,ev,neut) rijlessen N(soort,mv,neut) luchten V(trans,inf) Margaret N(eigen,ev,neut) boudiers N(eigen,mv,neut) continent N(soort,ev,neut) verdrijven V(trans,inf) Hieraan Adv(pron,aanw) aandelenkoersen N(soort,mv,neut) stelt V(trans,ott,2,ev) V(refl,ott,3,ev) V(trans,ott,3,ev) Nuss N(eigen,ev,neut) ontwikkelingsplan N(soort,ev,neut) ondernemersinitiatief N(soort,ev,neut) gifhistorie N(soort,ev,neut) verrekenen V(trans,inf) instinct N(soort,ev,neut) timmeren V(intrans,ott,1_of_2_of_3,mv) ZuidAmerika N(eigen,ev,neut) vatte V(trans,ovt,1_of_2_of_3,ev) verbazen V(trans,inf) plegen V(hulp,ott,1_of_2_of_3,mv) V(trans,inf,subst) mej. N(eigen,ev,neut) Billy N(eigen,ev,neut) lollig Adj(attr,stell,onverv) wezenlijke Adj(attr,stell,verv_neut) witzijden Adj(attr,stell,onverv) poeslief Adj(attr,stell,onverv) rommel N(soort,ev,neut) gepikt V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv) Gelijk Conj(onder,met_fin) kookboeken N(soort,mv,neut) wegvalt V(intrans,ott,3,ev) linkerhand N(soort,ev,neut) Hollywood N(eigen,ev,neut) Philiptheatre N(eigen,ev,neut) paspoort N(soort,ev,neut) meid N(soort,ev,neut) zwaar Adj(adv,stell,onverv) Adj(attr,stell,onverv) Sankt N(eigen,ev,neut) begeeft V(refl,ott,3,ev) waarboven Adv(pron,vrag) stellingen N(soort,mv,neut) befaamde Adj(attr,stell,verv_neut) terugkeer N(soort,ev,neut) westen N(soort,ev,neut) neerknielden V(intrans,ovt,1_of_2_of_3,mv) Home N(eigen,ev,neut) geslikt V(trans,verl_dw,onverv) briefje N(soort,ev,neut) middelbare Adj(attr,stell,verv_neut) artiesteningang N(soort,ev,neut) bidprentjesformaat N(soort,ev,neut) Weense Adj(attr,stell,verv_neut) verkeersovertreders N(soort,mv,neut) sprieten N(soort,mv,neut) gevaar N(soort,ev,neut) decembermaand N(soort,ev,neut) onderdelen N(soort,mv,neut) interessant Adj(attr,stell,onverv) ongeduldiger Adj(attr,vergr,onverv) gedroomd V(trans,verl_dw,onverv) McDonald N(eigen,ev,neut) volslagen Adj(adv,stell,onverv) rolt V(intrans,ott,3,ev) binnen- Adj(attr,stell,verv_neut) inscriptie N(soort,ev,neut) visie N(soort,ev,neut) beschrijvingskunst N(soort,ev,neut) volksmaal N(soort,ev,neut) paplepel N(soort,ev,neut) luidt V(intrans,ott,3,ev) V(trans,ott,3,ev) V(hulp,ott,3,ev) profane Adj(attr,stell,verv_neut) nippen V(intrans,ott,1_of_2_of_3,mv) straks Adv(gew,geen_func,stell,onverv) mengen V(intrans,inf) V(trans,inf,subst) walvisvaarder N(soort,ev,neut) ongeluk N(soort,ev,neut) ethiek N(soort,ev,neut) lied N(soort,ev,neut) zoeken V(trans,inf) V(intrans,ott,1_of_2_of_3,mv) V(intrans,inf) V(trans,inf,subst) boycot N(soort,ev,neut) luchtig Adj(adv,stell,onverv) liep V(intrans,ovt,1_of_2_of_3,ev) veldheer N(soort,ev,neut) liet V(hulp,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) erflatingen N(soort,mv,neut) gezinnen N(soort,mv,neut) spijzen N(soort,mv,neut) aantrok V(trans,ovt,1_of_2_of_3,ev) publiceerde V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) grijs Adj(zelfst,stell,onverv) Adj(attr,stell,onverv) pleegde V(trans,ovt,1_of_2_of_3,ev) Economische N(eigen,mv,neut) Hoog Adj(adv,stell,onverv) Elke Pron(onbep,neut,attr) gevogelte N(soort,ev,neut) rond Prep(voor) Adj(attr,stell,onverv) Adv(deel_v) macht Misc(vreemd) N(soort,ev,neut) denk- N(soort,ev,neut) voorop Adv(gew,geen_func,stell,onverv) Panorama N(eigen,ev,neut) spontaan Adj(adv,stell,onverv) Adj(attr,stell,onverv) bestelwagen N(soort,ev,neut) kapper N(soort,ev,neut) life N(eigen,ev,neut) Hoor V(intrans,imp) luchtvaart N(soort,ev,neut) kroop V(intrans,ovt,1_of_2_of_3,ev) Pia N(eigen,ev,neut) wegbereiders N(soort,mv,neut) fantasieen N(soort,mv,neut) nare Adj(attr,stell,verv_neut) Komedianten N(eigen,ev,neut) verschilt V(intrans,ott,3,ev) mosterd N(soort,ev,neut) melk N(soort,ev,neut) Ritman N(eigen,ev,neut) schipbreukelingen N(soort,mv,neut) moe Adj(attr,stell,onverv) N(soort,ev,neut) beloven V(trans,inf) zeeschepen N(soort,mv,neut) Gezellig Adj(attr,stell,onverv) lift N(soort,ev,neut) ochtend N(soort,ev,neut) reisroute N(soort,ev,neut) 1700 Num(hoofd,bep,zelfst,onverv) rood Adj(zelfst,stell,onverv) Adj(attr,stell,onverv) sigaar N(soort,ev,neut) ongeduldig Adj(adv,stell,onverv) drukte V(intrans,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) geschenk N(soort,ev,neut) bericht N(soort,ev,neut) wisseljaren N(soort,mv,neut) masker N(soort,ev,neut) Elly N(eigen,ev,neut) strand N(soort,ev,neut) nasi N(eigen,ev,neut) abortuskliniek N(soort,ev,neut) heilzame Adj(attr,stell,verv_neut) hengelaar N(soort,ev,neut) grill N(soort,ev,neut) bouwprogramma N(soort,ev,neut) bloedvaten N(soort,mv,neut) ligt V(intrans,ott,3,ev) V(hulp,ott,3,ev) karwei N(soort,ev,neut) geestelijk Adj(adv,stell,onverv) Adj(attr,stell,onverv) sterk Adj(adv,stell,onverv) Adj(attr,stell,onverv) mr. N(eigen,ev,neut) verbergen V(trans,inf) hypofysaire Adj(attr,stell,verv_neut) bekwaam Adj(attr,stell,onverv) Gedeelde V(trans,verl_dw,verv_neut) opperste Adj(attr,stell,verv_neut) glazige Adj(attr,stell,verv_neut) denkt V(trans,ott,3,ev) V(trans,ott,2,ev) V(intrans,ott,3,ev) combinatie N(soort,ev,neut) belang N(soort,ev,neut) herstellen V(trans,inf) 0,95 Num(hoofd,bep,attr,onverv) resultaten N(soort,mv,neut) plaatsvindt V(intrans,ott,3,ev) moeilijkheden N(soort,mv,neut) (maatschappij-)visie N(soort,ev,neut) basis N(soort,ev,neut) Black N(eigen,mv,neut) mens N(soort,ev,neut) arrogantie N(soort,ev,neut) eenmaal Adv(gew,geen_func,stell,onverv) Weelf N(eigen,ev,neut) prrachtig Adj(attr,stell,onverv) surfing N(soort,ev,neut) Overigens Adv(gew,geen_func,stell,onverv) geredigeerd V(trans,verl_dw,onverv) nimmer Adv(gew,onbep) vergezelde V(trans,ovt,1_of_2_of_3,ev) ontslag N(soort,ev,neut) Sport N(soort,ev,neut) omheen Adv(deel_adv) gekropen V(intrans,verl_dw,onverv) ijdelheid N(soort,ev,neut) vogels N(soort,mv,neut) syteem N(soort,ev,neut) resoluut Adj(adv,stell,onverv) centjes N(soort,mv,neut) Maltz N(eigen,ev,neut) alfabetische Adj(attr,stell,verv_neut) glimlach N(soort,ev,neut) rekening N(soort,ev,neut) onherroepelijk Adj(adv,stell,onverv) intree N(soort,ev,neut) activiteiten N(soort,mv,neut) geboortedorp N(soort,ev,neut) antwoordt V(trans,ott,3,ev) Klimrozen N(soort,mv,neut) nauw Adj(adv,stell,onverv) Adj(attr,stell,onverv) puntbaardje N(soort,ev,neut) Merton N(eigen,ev,neut) schotels N(soort,mv,neut) richten V(trans,inf) Suiker N(soort,ev,neut) faciliteiten N(soort,mv,neut) giro-overschrijvingen N(soort,mv,neut) lijf N(soort,ev,neut) relief N(soort,ev,neut) kudde N(soort,ev,neut) Queens N(eigen,ev,neut) mijnen N(soort,mv,neut) Rijssen N(eigen,ev,neut) lijn N(soort,ev,neut) veert V(intrans,ott,3,ev) voorwaarden N(soort,mv,neut) wanden N(soort,mv,neut) Zeer Adv(gew,geen_func,stell,onverv) Capricieux N(eigen,ev,neut) toeschouwer N(soort,ev,neut) belangrijk Adj(attr,stell,onverv) geleverd V(trans,verl_dw,onverv) oogschaduw N(soort,ev,neut) steun N(soort,ev,neut) Vindt V(trans,ott,2,ev) Pietje N(eigen,ev,neut) Emilia N(eigen,ev,neut) orgel N(soort,ev,neut) epidemie N(soort,ev,neut) Marlene N(eigen,ev,neut) goedheid N(soort,ev,neut) Bill N(eigen,ev,neut) oppervlak N(soort,ev,neut) Haag N(eigen,ev,neut) kraag N(soort,ev,neut) vechtlustige Adj(attr,stell,verv_neut) Haal V(trans,imp) Tongeren N(eigen,ev,neut) kraai N(soort,ev,neut) affiches N(soort,mv,neut) Spaak N(eigen,ev,neut) Schmidt N(eigen,ev,neut) Londen N(eigen,ev,neut) Haar Pron(bez,3,ev,neut,attr) N(soort,ev,neut) gerechten N(soort,mv,neut) pannetje N(soort,ev,neut) Santa N(eigen,ev,neut) doorgaans Adv(gew,geen_func,stell,onverv) Houd V(trans,imp) hangar N(soort,ev,neut) deftige Adj(attr,stell,verv_neut) brandbaar Adj(attr,stell,onverv) Santi N(eigen,ev,neut) getrokken V(trans,verl_dw,onverv) lila Adj(zelfst,stell,onverv) aangelopen V(intrans,verl_dw,onverv) eigenaar N(soort,ev,neut) PCPA N(soort,ev,neut) vrijheid N(soort,ev,neut) Glimlachend V(intrans,teg_dw,onverv) broertje N(soort,ev,neut) omtrent Prep(voor) dronken V(intrans,ovt,1_of_2_of_3,mv) Sowjets N(soort,mv,neut) raad N(soort,ev,neut) massieve Adj(attr,stell,verv_neut) merk V(trans,ott,1,ev) N(soort,ev,neut) klimt V(intrans,ott,3,ev) symboliek N(soort,ev,neut) platteland N(soort,ev,neut) Zegt V(trans,ott,3,ev) V(trans,ott,2,ev) Korver N(eigen,ev,neut) raam N(soort,ev,neut) Montreal N(eigen,ev,neut) Gevoed V(trans,verl_dw,onverv) Koeprin N(eigen,ev,neut) grammofoonopname N(soort,ev,neut) verschaffen V(trans,inf) V(trans,inf,subst) bekroning N(soort,ev,neut) honderdduizenden Num(hoofd,bep,attr,onverv) samenstelde V(trans,ovt,1_of_2_of_3,ev) Ljubljana N(eigen,ev,neut) voetvolk N(soort,ev,neut) democratisering N(soort,ev,neut) Uffizi N(eigen,ev,neut) verspreiden V(trans,ott,1_of_2_of_3,mv) kolonisten N(soort,mv,neut) wijdt V(trans,ott,3,ev) Milton N(eigen,ev,neut) blues N(soort,mv,neut) hield V(trans,ovt,1_of_2_of_3,ev) V(refl,ovt,1_of_2_of_3,ev) laboratoria N(soort,mv,neut) voortaan Adv(gew,geen_func,stell,onverv) wiegen N(soort,mv,neut) dagblad N(soort,ev,neut) artistieke Adj(attr,stell,verv_neut) gisteravond Adv(gew,geen_func,stell,onverv) bekend Adj(attr,stell,onverv) hielp V(intrans,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) speeltuin N(soort,ev,neut) rende V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) beroerder Adj(attr,vergr,onverv) vaarten N(soort,mv,neut) communiceren V(intrans,inf) 400.000 Num(hoofd,bep,attr,onverv) ambities N(soort,mv,neut) link Adj(attr,stell,onverv) exotische Adj(attr,stell,verv_neut) 15-jarig Adj(attr,stell,onverv) lint N(soort,ev,neut) examen N(soort,ev,neut) jeugdige Adj(attr,stell,verv_neut) stencil N(soort,ev,neut) 1781 Num(hoofd,bep,zelfst,onverv) mezelf Pron(ref,1,ev) sneeuw N(soort,ev,neut) Ruim Adj(adv,stell,onverv) Verenigde N(eigen,mv,neut) ziekenhuis N(soort,ev,neut) potpourri N(soort,ev,neut) winkels N(soort,mv,neut) Liever Adj(adv,vergr,onverv) winkelt V(intrans,ott,3,ev) driekwart Num(hoofd,bep,zelfst,onverv) grootmoederprincipe N(soort,ev,neut) aandacht N(soort,ev,neut) fronsen V(trans,inf) juiste Adj(attr,stell,verv_neut) rade N(soort,ev,dat) Aandachtig Adj(adv,stell,onverv) middeltje N(soort,ev,neut) festivaltent N(soort,ev,neut) bonnensysteem N(soort,ev,neut) waarbij Adv(pron,betr) Adv(pron,vrag) hangen V(trans,inf) V(intrans,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) V(intrans,inf) uitsterving N(soort,ev,neut) Enige Pron(onbep,neut,attr) namiddag N(soort,ev,neut) teruggevallen V(intrans,verl_dw,onverv) ansichtkaarten N(soort,mv,neut) vissenmoordenaar N(soort,ev,neut) vurige Adj(attr,stell,verv_neut) Weesp N(eigen,ev,neut) periode N(soort,ev,neut) Vooral Adv(gew,geen_func,stell,onverv) moeilijkheid N(soort,ev,neut) schokkende V(intrans,teg_dw,verv_neut) arrangeur N(soort,ev,neut) Spaans Adj(zelfst,stell,onverv) samentrekken V(intrans,ott,1_of_2_of_3,mv) virtuoos Adj(attr,stell,onverv) reaktievorm N(soort,ev,neut) meloen N(soort,ev,neut) duidelijkste Adj(attr,overtr,verv_neut) haarfijn Adj(adv,stell,onverv) Spring N(eigen,ev,neut) moeilijke Adj(attr,stell,verv_neut) Weinig Num(hoofd,onbep,attr,stell,onverv) tikken V(intrans,inf) graagte N(soort,ev,neut) buitenlanders N(soort,mv,neut) Zelf Pron(aanw,neut,attr,w_zelf) bochten N(soort,mv,neut) ploppertjes N(soort,mv,neut) gedacht V(trans,verl_dw,onverv) beslissing N(soort,ev,neut) punten-telling N(soort,ev,neut) oranje Adj(attr,stell,onverv) Adj(zelfst,stell,onverv) vermoedelijke Adj(attr,stell,verv_neut) potente Adj(attr,stell,verv_neut) Marianne N(eigen,ev,neut) specifiek Adj(adv,stell,onverv) synthetisch Adj(attr,stell,onverv) Crawford N(eigen,ev,neut) daarvan Adv(pron,aanw) Friedl N(eigen,ev,neut) liefdeskandidaten N(soort,mv,neut) verscherpt V(intrans,verl_dw,onverv) gesleept V(trans,verl_dw,onverv) roze Adj(zelfst,stell,onverv) marge N(soort,ev,neut) dwalen V(intrans,ott,1_of_2_of_3,mv) heerst V(intrans,ott,3,ev) tafeltje N(soort,ev,neut) ledematen N(soort,mv,neut) thee N(soort,ev,neut) point Misc(vreemd) vetkwabjes N(soort,mv,neut) rage N(soort,ev,neut) ingebracht V(trans,verl_dw,onverv) Moderedactrices N(soort,mv,neut) Vijfde N(eigen,ev,neut) vermoord V(trans,ott,1,ev) vaderlijke Adj(attr,stell,verv_neut) goedkoper Adj(attr,vergr,onverv) belastingen N(soort,mv,neut) maitre N(soort,ev,neut) vroege Adj(attr,stell,verv_neut) Westeuropese Adj(attr,stell,verv_neut) blauwe Adj(attr,stell,verv_neut) middelpunt N(soort,ev,neut) stevig Adj(adv,stell,onverv) eisen N(soort,mv,neut) aspecten N(soort,mv,neut) rapporteren V(trans,inf) ontslagen V(trans,verl_dw,onverv) Club-Hotel N(soort,ev,neut) protserig Adj(attr,stell,onverv) constante Adj(attr,stell,verv_neut) koppen N(soort,mv,neut) miniatuurtoneel N(soort,ev,neut) machines N(soort,mv,neut) Hongaarse Adj(attr,stell,verv_neut) Hair N(eigen,ev,neut) uitzonderlijke Adj(attr,stell,verv_neut) keuze N(soort,ev,neut) grondslag N(soort,ev,neut) krachtiger Adj(attr,vergr,onverv) trieste Adj(attr,stell,verv_neut) Pepper N(eigen,ev,neut) flesje N(soort,ev,neut) Gevolg N(soort,ev,neut) zware Adj(attr,stell,verv_neut) brug N(soort,ev,neut) naargeestige Adj(attr,stell,verv_neut) brui N(soort,ev,neut) massacommunicatie N(soort,ev,neut) krulspelden N(soort,mv,neut) moedersterfte N(soort,ev,neut) gewonnen V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv) krullen N(soort,mv,neut) figuurzaag N(soort,ev,neut) slag N(soort,ev,neut) Simon N(eigen,ev,neut) wrede Adj(attr,stell,verv_neut) specialistische Adj(attr,stell,verv_neut) gracht N(soort,ev,neut) voel V(trans,ott,1,ev) V(refl,ott,1,ev) rancuneus Adj(attr,stell,onverv) positieve Adj(attr,stell,verv_neut) zwart Adj(attr,stell,onverv) Adj(zelfst,stell,onverv) blondine N(soort,ev,neut) slak N(soort,ev,neut) Ruffo N(eigen,ev,neut) gezond Adj(attr,stell,onverv) recepten N(soort,mv,neut) voer N(soort,ev,neut) verlaten V(trans,verl_dw,onverv) V(trans,inf) badhuish Misc(vreemd) slap Adj(attr,stell,onverv) voet N(soort,ev,neut) sukses N(soort,ev,neut) Hartog N(eigen,ev,neut) Sharon N(eigen,ev,neut) uitgezonderd Conj(onder,met_fin) lijsten N(soort,mv,neut) opdraafde V(intrans,ovt,1_of_2_of_3,ev) behandeld V(trans,verl_dw,onverv) goedverzorgde Adj(attr,stell,verv_neut) zwenkte V(intrans,ovt,1_of_2_of_3,ev) Jackie N(eigen,ev,neut) gedonder N(soort,ev,neut) smaakt V(intrans,ott,3,ev) gastheer N(soort,ev,neut) imponeerde V(trans,ovt,1_of_2_of_3,ev) vertrokken V(intrans,ovt,1_of_2_of_3,mv) commentator N(soort,ev,neut) zuigt V(trans,ott,3,ev) Binnen N(eigen,ev,neut) Geef V(trans,imp) V(refl,ott,2,ev) N(eigen,ev,neut) behandelt V(trans,ott,3,ev) wreed Adj(attr,stell,onverv) vakmensen N(soort,mv,neut) onderdrukt V(trans,verl_dw,onverv) noorden N(soort,ev,neut) babbeltje N(soort,ev,neut) Geen Pron(onbep,neut,attr) ZIJN Pron(bez,3,ev,neut,attr) nadenken V(intrans,inf) Gees N(eigen,mv,neut) bijeenkomsten N(soort,mv,neut) fiasco N(soort,ev,neut) London N(eigen,ev,neut) 520 Num(hoofd,bep,attr,onverv) McCarthy N(eigen,ev,neut) Bea N(eigen,ev,neut) Bee N(eigen,mv,neut) lichaamstaal N(soort,ev,neut) verzoeken V(trans,inf) bundel N(soort,ev,neut) Bourget N(eigen,ev,neut) mobilisatie N(soort,ev,neut) Acifit N(eigen,ev,neut) Bel V(trans,imp) Ben N(eigen,ev,neut) V(hulp_of_kopp,ott,1,ev) tyfus N(soort,ev,neut) Gerard N(eigen,ev,neut) bevestigd V(trans,verl_dw,onverv) hopeloos Adj(adv,stell,onverv) formuleren V(trans,inf) vlakbij Adv(gew,geen_func,stell,onverv) Half Adj(adv,stell,onverv) dassen N(soort,mv,neut) Houdt V(intrans,ott,3,ev) demografische Adj(attr,stell,verv_neut) uitkering N(soort,ev,neut) gekookt V(intrans,verl_dw,onverv) lengtevariaties N(soort,mv,neut) breigarens N(soort,mv,neut) bieten N(soort,mv,neut) tweeenzestig Num(hoofd,bep,attr,onverv) kerstavond N(soort,ev,neut) markt N(soort,ev,neut) spuit N(soort,ev,neut) sherry N(soort,ev,neut) overhouden V(trans,inf) Zelfexpressie N(eigen,ev,neut) arbeidsvoorwaarden N(soort,mv,neut) tweeduizend Num(hoofd,bep,attr,onverv) dokter N(soort,ev,neut) bevestigt V(trans,ott,3,ev) dodelijk Adj(adv,stell,onverv) moederlijke Adj(attr,stell,verv_neut) Levering N(soort,ev,neut) concert N(soort,ev,neut) schoolkind N(soort,ev,neut) vakbladen N(soort,mv,neut) Classics Misc(vreemd) spaarzaam Adj(attr,stell,onverv) Adj(adv,stell,onverv) gebeurd V(intrans,verl_dw,onverv) wuivend V(intrans,teg_dw,onverv) bezochten V(trans,ovt,1_of_2_of_3,mv) rukte V(intrans,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) sportvis N(soort,ev,neut) Leger N(eigen,ev,neut) Casso N(eigen,ev,neut) beinvloeden V(trans,inf) V(trans,ott,1_of_2_of_3,mv) Vrije N(eigen,ev,neut) huren V(trans,inf) gebeurt V(intrans,ott,3,ev) hoofdstuk N(soort,ev,neut) Bestond V(intrans,ovt,1_of_2_of_3,ev) ontwikkelde V(trans,ovt,1_of_2_of_3,ev) V(intrans,verl_dw,verv_neut) tijdlang N(soort,ev,neut) tweeling N(soort,ev,neut) aureool N(soort,ev,neut) vooruit Adv(gew,geen_func,stell,onverv) 30,- Num(hoofd,bep,attr,onverv) Reich N(eigen,ev,neut) verdwijnt V(intrans,ott,3,ev) saunabaden N(soort,mv,neut) wonder N(soort,ev,neut) telefooncel N(soort,ev,neut) bedrijvige Adj(attr,stell,verv_neut) anzichtschone Adj(attr,stell,verv_neut) Hand N(soort,ev,neut) weken N(soort,mv,neut) V(trans,inf) V(intrans,ovt,1_of_2_of_3,mv) laakte V(intrans,ovt,1_of_2_of_3,ev) zelfde Pron(aanw,neut,attr) rigoreuze Adj(attr,stell,verv_neut) ingelicht V(trans,verl_dw,onverv) compensatie N(soort,ev,neut) onderlaken N(soort,ev,neut) hetzelfde Pron(aanw,neut,attr) Pron(aanw,neut,zelfst) mejuffrouwen N(soort,mv,neut) Hans N(eigen,ev,neut) Mierlo N(eigen,ev,neut) goed-Amerikaanse Adj(attr,stell,verv_neut) freule N(soort,ev,neut) krant N(soort,ev,neut) religieuze Adj(attr,stell,verv_neut) roemt V(trans,ott,3,ev) Gelderse Adj(attr,stell,verv_neut) conflictsituatie N(soort,ev,neut) kippe-ei N(soort,ev,neut) spijlen N(soort,mv,neut) vrijwel Adv(gew,geen_func,stell,onverv) diner N(soort,ev,neut) langwerpige Adj(attr,stell,verv_neut) lijstje N(soort,ev,neut) CHU N(eigen,ev,neut) rand N(soort,ev,neut) zoveel Num(hoofd,onbep,attr,stell,onverv) Num(hoofd,onbep,zelfst,stell,onverv) daarover Adv(pron,aanw) vette Adj(attr,stell,verv_neut) afdaalde V(intrans,ovt,1_of_2_of_3,ev) nazomer N(soort,ev,neut) nam V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) georganiseerd V(trans,verl_dw,onverv) ruzie N(soort,ev,neut) koperplaatbewerking N(soort,ev,neut) nat Adj(attr,stell,onverv) Bij Prep(voor) openlijker Adj(adv,vergr,onverv) sierprutsjes N(soort,mv,neut) glorieuze Adj(attr,stell,verv_neut) optreden V(intrans,inf) V(intrans,inf,subst) N(soort,ev,neut) Kennedyverleden N(soort,ev,neut) buitenissige Adj(attr,stell,verv_neut) benadering N(soort,ev,neut) knollen N(soort,mv,neut) voorhoofd N(soort,ev,neut) Tsjechoslowakije N(eigen,ev,neut) kelders N(soort,mv,neut) 55e Num(rang,bep,attr,onverv) Jazeker Int aanbevolen V(trans,verl_dw,onverv) koning N(soort,ev,neut) heimelijke Adj(attr,stell,verv_neut) beseffen V(trans,ott,1_of_2_of_3,mv) lords N(soort,mv,neut) uitdrukken V(trans,inf,subst) arbitrage N(soort,ev,neut) ornament N(soort,ev,neut) ontzeggen V(trans,inf) kokende V(intrans,teg_dw,verv_neut) Ruud N(eigen,ev,neut) Iedereen Pron(onbep,neut,zelfst) weleens Adv(gew,geen_func,stell,onverv) zelfs Adv(gew,geen_func,stell,onverv) gepikeerd V(trans,verl_dw,onverv) huishouden N(soort,ev,neut) frei Misc(vreemd) 4,50 Num(hoofd,bep,attr,onverv) lijden V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) volk N(soort,ev,neut) Festival N(eigen,ev,neut) Hindoe N(soort,ev,neut) overrompelt V(trans,ott,3,ev) woonden V(intrans,ovt,1_of_2_of_3,mv) deftiger Adj(attr,vergr,onverv) beschimmelde V(intrans,verl_dw,verv_neut) Vermoedelijk Adj(adv,stell,onverv) mystiek N(soort,ev,neut) punten N(soort,mv,neut) eilanden N(soort,mv,neut) roept V(trans,ott,3,ev) V(intrans,ott,3,ev) Stone N(eigen,ev,neut) drinke V(trans,conj) 3000 Num(hoofd,bep,zelfst,onverv) Geld N(soort,ev,neut) ingewikkelde Adj(attr,stell,verv_neut) Westen N(soort,ev,neut) deskundig Adj(attr,stell,onverv) Adj(adv,stell,onverv) onderzoekers N(soort,mv,neut) Huisarts N(eigen,ev,neut) Hare N(eigen,ev,neut) Dijkstra N(eigen,ev,neut) slim Adj(adv,stell,onverv) Moray N(eigen,ev,neut) RutSpeer N(eigen,ev,neut) drinkt V(trans,ott,3,ev) V(intrans,ott,3,ev) vacuum N(soort,ev,neut) wijst V(intrans,ott,3,ev) V(trans,ott,3,ev) Montaldo N(eigen,ev,neut) verwerkt V(trans,verl_dw,onverv) Beiroet N(eigen,ev,neut) brandbare Adj(attr,stell,verv_neut) piet N(soort,ev,neut) volgden V(trans,ovt,1_of_2_of_3,mv) bedrag N(soort,ev,neut) uitlokken V(trans,inf) adviseur N(soort,ev,neut) Kaarsdragers N(soort,mv,neut) loslaten V(trans,inf) bouwkundig Adj(attr,stell,onverv) lonend V(intrans,teg_dw,onverv) beeldcassettes N(soort,mv,neut) Aanleiding N(soort,ev,neut) hulpbehoevende Adj(attr,stell,verv_neut) talismannen N(soort,mv,neut) branden V(trans,ott,1_of_2_of_3,mv) V(trans,inf) vond V(trans,ovt,1_of_2_of_3,ev) onverschillig Adj(adv,stell,onverv) aktie N(soort,ev,neut) genageld V(trans,verl_dw,onverv) rottijd N(soort,ev,neut) hedendaagse Adj(attr,stell,verv_neut) Straks Adv(gew,geen_func,stell,onverv) rare Adj(attr,stell,verv_neut) doende V(intrans,teg_dw,verv_neut) nee Int piraterij N(soort,ev,neut) naief Adj(attr,stell,onverv) saxofoon N(soort,ev,neut) reuzevent N(soort,ev,neut) nek N(soort,ev,neut) gordijn N(soort,ev,neut) toneelschool N(soort,ev,neut) flatje N(soort,ev,neut) beledigen V(trans,inf) riddergoed N(soort,ev,neut) net Adv(gew,geen_func,stell,onverv) N(soort,ev,neut) Lolita-achtig Adj(attr,stell,onverv) Nkima N(eigen,ev,neut) Gene N(eigen,ev,neut) beluisteren V(trans,inf) anti-conceptie N(soort,ev,neut) jongleren V(intrans,inf) Leeuwarden N(eigen,ev,neut) transplantaties N(soort,mv,neut) zocht V(intrans,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) percentsgewijs Adj(adv,stell,onverv) staarde V(intrans,ovt,1_of_2_of_3,ev) voor Prep(voor) Conj(onder,met_inf) Adv(deel_v) Adv(gew,geen_func,stell,onverv) N(eigen,ev,neut) N(soort,ev,neut) Conj(onder,met_fin) Adv(deel_adv) voos Adj(attr,stell,onverv) meerdere Num(hoofd,onbep,attr,vergr,verv_neut) doelstelling N(soort,ev,neut) volgende V(intrans,teg_dw,verv_neut) Bestaat V(intrans,ott,3,ev) extra Adj(attr,stell,onverv) Adj(adv,stell,onverv) kwamen V(intrans,ovt,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv) draagt V(trans,ott,3,ev) tekent V(trans,ott,3,ev) artiesten N(soort,mv,neut) meekrijgen V(trans,ott,1_of_2_of_3,mv) onderdrukking N(soort,ev,neut) topplaats N(soort,ev,neut) kunstbenen N(soort,mv,neut) uitgestreken V(trans,verl_dw,onverv) krampachtig Adj(adv,stell,onverv) overgedragen V(trans,verl_dw,onverv) fris Adj(adv,stell,onverv) gevoelens N(soort,mv,neut) onoverbiddelijke Adj(attr,stell,verv_neut) 4,95 Num(hoofd,bep,attr,onverv) aspect N(soort,ev,neut) rechtbank N(soort,ev,neut) onmiddellijk Adj(adv,stell,onverv) kinderverhalen N(soort,mv,neut) Monsieur N(soort,ev,neut) Bob N(eigen,ev,neut) schildpad N(soort,ev,neut) ontmoedigt V(trans,ott,3,ev) twee Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) Lord N(eigen,ev,neut) praktisch Adj(attr,stell,onverv) Adj(adv,stell,onverv) vogelbescherming N(soort,ev,neut) Boo N(eigen,ev,neut) fresco's N(soort,mv,neut) zovele Num(hoofd,onbep,attr,stell,verv_neut) aanstaande Adj(attr,stell,verv_neut) spreiding N(soort,ev,neut) Bos N(eigen,ev,neut) Fijn Adj(attr,stell,onverv) Christ'l N(eigen,ev,neut) planken N(soort,mv,neut) pasta N(soort,ev,neut) puntje N(soort,ev,neut) plotseling Adj(adv,stell,onverv) netjes Adv(gew,geen_func,stell,onverv) Friese Adj(attr,stell,verv_neut) onnodige Adj(attr,stell,verv_neut) straffen V(intrans,inf) V(intrans,inf,subst) gemakkelijker Adj(adv,vergr,onverv) draait V(intrans,ott,3,ev) V(trans,ott,3,ev) betrouwbaarheid N(soort,ev,neut) Frieso N(eigen,ev,neut) rauw Adj(attr,stell,onverv) masseuse N(soort,ev,neut) doorzocht V(trans,ovt,1_of_2_of_3,ev) even Adv(gew,geen_func,stell,onverv) wijnkopers N(soort,mv,neut) betreurde V(trans,ovt,1_of_2_of_3,ev) gedecoreerd V(trans,verl_dw,onverv) komen V(intrans,inf) V(hulp_of_kopp,inf) V(intrans,ott,1_of_2_of_3,mv) vork N(soort,ev,neut) vorm N(soort,ev,neut) Staphorst N(eigen,ev,neut) verwachten V(trans,inf) symfonieorkest N(soort,ev,neut) eigenaars N(soort,mv,neut) drift N(soort,ev,neut) pijn N(soort,ev,neut) pijp N(soort,ev,neut) Sontag N(eigen,ev,neut) daagt V(intrans,ott,3,ev) dollars N(soort,mv,neut) eiste V(trans,ovt,1_of_2_of_3,ev) evenmin Adv(gew,geen_func,stell,onverv) vierenzeventigste Num(rang,bep,zelfst,onverv) toestellen N(soort,mv,neut) joviaal Adj(adv,stell,onverv) Majesteit N(eigen,ev,neut) dramatisch Adj(attr,stell,onverv) schippers N(soort,mv,neut) serieus Adj(attr,stell,onverv) Adj(adv,stell,onverv) slok N(soort,ev,neut) opnamen N(soort,mv,neut) sporthal N(soort,ev,neut) slaagde V(intrans,ovt,1_of_2_of_3,ev) Laan N(eigen,ev,neut) rawi N(soort,ev,neut) Gert N(eigen,ev,neut) slot N(soort,ev,neut) lagere-schooltijd N(soort,ev,neut) zondagavond N(soort,ev,neut) kreeften N(soort,mv,neut) hitst V(trans,ott,3,ev) bezienswaardigheid N(soort,ev,neut) flatgebouwen N(soort,mv,neut) Laat V(hulp,imp) V(trans,imp) V(hulp,ott,1,ev) V(hulp,ott,3,ev) Adj(adv,stell,onverv) kapitaalkrachtige Adj(attr,stell,verv_neut) Schinveld N(eigen,ev,neut) Staat V(intrans,ott,3,ev) nl. Adv(gew,geen_func,stell,onverv) spaarzame Adj(attr,stell,verv_neut) sjiekste Adj(attr,overtr,verv_neut) dingen N(soort,mv,neut) verkrachting N(soort,ev,neut) modinettes N(soort,mv,neut) wijze N(soort,ev,neut) Adj(attr,stell,verv_neut) geaccepteerd V(trans,verl_dw,onverv) handelingen N(soort,mv,neut) actief Adj(attr,stell,onverv) Adj(adv,stell,onverv) hitte N(soort,ev,neut) Theresia N(eigen,ev,neut) dubbelzinnigheid N(soort,ev,neut) gevallen N(soort,mv,neut) V(intrans,verl_dw,onverv) tijdvak N(soort,ev,neut) kinderverlamming N(soort,ev,neut) beslotenheid N(soort,ev,neut) hoorde V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) vaag Adj(attr,stell,onverv) uitsluitend Adv(gew,geen_func,stell,onverv) Voorts Adv(gew,geen_func,stell,onverv) pils N(soort,ev,neut) vaak Adv(gew,geen_func,stell,onverv) geimporteerde V(trans,verl_dw,verv_neut) verwensingen N(soort,mv,neut) Eddie N(eigen,ev,neut) betoog N(soort,ev,neut) hobbelpaard N(soort,ev,neut) commissie N(soort,ev,neut) edith N(eigen,ev,neut) vijftien Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) samenwerkend V(intrans,teg_dw,onverv) woedend V(intrans,teg_dw,onverv) homoseksueel N(soort,ev,neut) Fins Adj(attr,stell,onverv) twaalf-en-een-half Num(hoofd,bep,attr,onverv) slachtoffer N(soort,ev,neut) vulgaire Adj(attr,stell,verv_neut) commentaar N(soort,ev,neut) gepraat V(intrans,verl_dw,onverv) pesah N(eigen,ev,neut) Leven N(soort,ev,neut) opgediend V(trans,verl_dw,onverv) plaatselijke Adj(attr,stell,verv_neut) tenthuisjes N(soort,mv,neut) luchtbuidel N(soort,ev,neut) Quadrille N(eigen,ev,neut) paradis Misc(vreemd) bromfietser N(soort,ev,neut) House N(eigen,ev,neut) Residence Misc(vreemd) compartimentjes N(soort,mv,neut) overzien V(trans,inf) gevonden V(trans,verl_dw,onverv) verhuizing N(soort,ev,neut) republikeinen N(soort,mv,neut) aangesproken V(trans,verl_dw,onverv) voorstel N(soort,ev,neut) toneelstukken N(soort,mv,neut) poeier N(soort,ev,neut) gezakt V(intrans,verl_dw,onverv) tweede Num(rang,bep,attr,onverv) Num(rang,bep,zelfst,onverv) Wolkow N(eigen,ev,neut) sjoemelen V(trans,inf) stoplichten N(soort,mv,neut) kindermishandeling N(soort,ev,neut) ontbreekt V(intrans,ott,3,ev) afwijkende V(intrans,teg_dw,verv_neut) mannetjes N(soort,mv,neut) asperges N(soort,mv,neut) Langlauf N(soort,ev,neut) toeval N(soort,ev,neut) spannen V(intrans,ott,1_of_2_of_3,mv) aanvallige Adj(attr,stell,verv_neut) wezen V(hulp_of_kopp,inf) N(soort,ev,neut) no. N(soort,ev,neut) vergissen V(refl,inf) bewogen Adj(attr,stell,onverv) opzeggen V(intrans,inf) aarzelend V(intrans,teg_dw,onverv) moment N(soort,ev,neut) ontdekte V(trans,ovt,1_of_2_of_3,ev) supermarkets N(soort,mv,neut) Catac N(eigen,ev,neut) spreekt V(intrans,ott,3,ev) V(trans,ott,3,ev) gegaan V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv) Loenochod N(eigen,ev,neut) Wiegel N(eigen,ev,neut) betaald V(trans,verl_dw,onverv) aanmerkelijk Adj(adv,stell,onverv) But Misc(vreemd) Atletico N(eigen,ev,neut) schipbreuk N(soort,ev,neut) genoteerd V(trans,verl_dw,onverv) Drente N(eigen,ev,neut) geneesheer-directeur N(soort,ev,neut) koppeling N(soort,ev,neut) belastbare Adj(attr,stell,verv_neut) berggebieden N(soort,mv,neut) onwil N(soort,ev,neut) verleend V(trans,verl_dw,onverv) tweeen Num(hoofd,bep,zelfst,onverv) familieleden N(soort,mv,neut) Deskundigheid N(soort,ev,neut) genezingsbehoefte N(soort,ev,neut) snaveltje N(soort,ev,neut) Magisch Adj(attr,stell,onverv) Piraeus N(eigen,ev,neut) pomponvormige Adj(attr,stell,verv_neut) deuren N(soort,mv,neut) verleent V(trans,ott,3,ev) struktuur N(soort,ev,neut) behalen V(trans,inf) klinken V(intrans,inf) mankement N(soort,ev,neut) broertjes N(soort,mv,neut) scholen N(soort,mv,neut) wanbegrip N(soort,ev,neut) Sssst Int zoal Adv(gew,aanw) elkaar Pron(rec,neut) notariele Adj(attr,stell,verv_neut) meren V(intrans,inf) verpanjerd V(trans,verl_dw,onverv) provincies N(soort,mv,neut) adres N(soort,ev,neut) oceaanoppervlak N(soort,ev,neut) nog Adv(gew,geen_func,stell,onverv) bovenal Adv(gew,geen_func,stell,onverv) onzegbaars Adj(attr,stell,verv_gen) biologisch Adj(attr,stell,onverv) vooruitstrevende Adj(attr,stell,verv_neut) wijn-publicisten N(soort,mv,neut) kastje N(soort,ev,neut) behulpzaamheid N(soort,ev,neut) doppen V(trans,inf) Roode N(eigen,ev,neut) kuste V(trans,ovt,1_of_2_of_3,ev) sexshops N(soort,mv,neut) not Misc(vreemd) nou Adv(gew,aanw) Int coach N(soort,ev,neut) massief Adj(attr,stell,onverv) Poema's N(eigen,mv,neut) garderobe N(soort,ev,neut) parochiehuis N(soort,ev,neut) ouderwetse Adj(attr,stell,verv_neut) vooruitzichten N(soort,mv,neut) knap Adj(attr,stell,onverv) haven N(soort,ev,neut) ernst N(soort,ev,neut) haver N(soort,ev,neut) verwonden V(trans,inf) geheime Adj(attr,stell,verv_neut) weggegooid V(trans,verl_dw,onverv) werkruimte N(soort,ev,neut) opgetogen Adj(attr,stell,onverv) vurig Adj(adv,stell,onverv) blootstellen V(intrans,inf) overtollige Adj(attr,stell,verv_neut) verpesten V(trans,inf) nr. N(soort,ev,neut) vroeg V(trans,ovt,1_of_2_of_3,ev) Adj(adv,stell,onverv) Adj(attr,stell,onverv) woordenstroom N(soort,ev,neut) Gelukkig Adj(adv,stell,onverv) Adj(attr,stell,onverv) borrelende V(intrans,teg_dw,verv_neut) Schimmen N(soort,mv,neut) subsidie N(soort,ev,neut) uitgekeken V(intrans,verl_dw,onverv) vage Adj(attr,stell,verv_neut) duimpje N(soort,ev,neut) onwettig Adj(attr,stell,onverv) details N(soort,mv,neut) piassen N(soort,mv,neut) gezaaid V(trans,verl_dw,onverv) inwendig Adj(adv,stell,onverv) ijver N(soort,ev,neut) moraal N(soort,ev,neut) bewerkelijk Adj(attr,stell,onverv) spinazie N(soort,ev,neut) 1823 Num(hoofd,bep,zelfst,onverv) 1824 Num(hoofd,bep,zelfst,onverv) vijver N(soort,ev,neut) Elaine N(eigen,ev,neut) '30 Num(hoofd,bep,attr,onverv) buffet N(soort,ev,neut) toekomstige Adj(attr,stell,verv_neut) apart Adj(attr,stell,onverv) rustige Adj(attr,stell,verv_neut) patiente N(soort,ev,neut) Ervaringsfeiten N(soort,mv,neut) Judith N(eigen,ev,neut) beste Adj(attr,overtr,verv_neut) Adj(zelfst,overtr,onverv) Adj(adv,vergr,verv_neut) Adj(zelfst,overtr,verv_neut) veiligheidspin N(soort,ev,neut) Sinds Conj(onder,met_fin) appel N(soort,ev,neut) terecht Adv(gew,geen_func,stell,onverv) zelve Pron(aanw,neut,attr,w_zelf) Amerika N(eigen,ev,neut) evoluties N(soort,mv,neut) geslachtsleven N(soort,ev,neut) Hierbij Adv(pron,aanw) zorgt V(intrans,ott,3,ev) verstoring N(soort,ev,neut) lichtstad N(soort,ev,neut) lawaai N(soort,ev,neut) oorzaak N(soort,ev,neut) Pansy N(eigen,ev,neut) onbewust Adj(adv,stell,onverv) 1837 Num(hoofd,bep,zelfst,onverv) Nivernais N(eigen,ev,neut) Barrett N(eigen,ev,neut) zoek Adv(gew,geen_func,stell,onverv) V(trans,ott,1,ev) budgetten N(soort,mv,neut) aanbood V(trans,ovt,1_of_2_of_3,ev) zoet Adj(attr,stell,onverv) moraal-code N(soort,ev,neut) fenomeen N(soort,ev,neut) cholera N(soort,ev,neut) genre-aquarellen N(soort,mv,neut) Astruc N(eigen,ev,neut) klopten V(intrans,ovt,1_of_2_of_3,mv) kleurloos Adj(attr,stell,onverv) Astrud N(eigen,ev,neut) collega N(soort,ev,neut) vanavond Adv(gew,geen_func,stell,onverv) waarschuwing N(soort,ev,neut) hennep N(soort,ev,neut) Minnaars N(eigen,ev,neut) Zuidpool N(eigen,ev,neut) tijde N(soort,ev,dat) Kees N(eigen,ev,neut) administratie N(soort,ev,neut) Gracht N(eigen,ev,neut) succesvol Adj(attr,stell,onverv) Rooie Adj(attr,stell,verv_neut) welvaart N(soort,ev,neut) protesteren V(intrans,inf) Gezond N(eigen,ev,neut) paprika's N(soort,mv,neut) Ester N(eigen,ev,neut) sneuvelt V(intrans,ott,3,ev) aangetrouwd Adj(attr,stell,onverv) logisch Adj(attr,stell,onverv) overwonnen V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv) Werksituatie N(soort,ev,neut) haastig Adj(adv,stell,onverv) Niemand Pron(onbep,neut,zelfst) getreden V(trans,verl_dw,onverv) Nederlanders N(soort,mv,neut) Jezus N(eigen,ev,neut) breidt V(refl,ott,3,ev) stuit V(intrans,ott,3,ev) aanval N(soort,ev,neut) merkt V(trans,ott,3,ev) V(trans,ott,2,ev) overheid N(soort,ev,neut) samenwoning N(soort,ev,neut) stemmenwinst N(soort,ev,neut) charmantste Adj(attr,overtr,verv_neut) brieven N(soort,mv,neut) uitgestrekte V(trans,verl_dw,verv_neut) verantwoord V(trans,verl_dw,onverv) criminaliteit N(soort,ev,neut) nut N(soort,ev,neut) huisvesten V(trans,inf) verfijnde V(trans,verl_dw,verv_neut) begroet V(trans,verl_dw,onverv) Jean-Gabriel N(eigen,ev,neut) genoemde V(trans,verl_dw,verv_neut) kantoor N(soort,ev,neut) verdringingsstelsel N(soort,ev,neut) pamfletten N(soort,mv,neut) pollepel N(soort,ev,neut) Carlos N(eigen,ev,neut) afgedwongen V(trans,verl_dw,onverv) koffer-wegen V(intrans,inf,subst) hectares N(soort,mv,neut) aangename Adj(attr,stell,verv_neut) Wallen N(eigen,mv,neut) nihil Pron(onbep,neut,zelfst) Kennedy's N(eigen,mv,neut) vals Adj(attr,stell,onverv) uitgaan V(intrans,inf) valt V(intrans,ott,3,ev) worden V(hulp_of_kopp,inf) V(hulp_of_kopp,ott,1_of_2_of_3,mv) V(trans,inf) V(hulp_of_kopp,inf,subst) 1875 Num(hoofd,bep,zelfst,onverv) onbevangen Adj(adv,stell,onverv) vertekend V(trans,verl_dw,onverv) aankopen N(soort,mv,neut) ontsnapping N(soort,ev,neut) uitgaat V(intrans,ott,3,ev) krijgsraad N(soort,ev,neut) ontspannen V(trans,verl_dw,onverv) V(refl,inf) Dokter N(soort,ev,neut) vraagt V(trans,ott,2,ev) V(trans,ott,3,ev) McCartney N(eigen,ev,neut) onderdanen N(soort,mv,neut) ondertussen Adv(gew,geen_func,stell,onverv) Lane N(eigen,ev,neut) volgt V(intrans,ott,3,ev) V(trans,ott,3,ev) Benno N(eigen,ev,neut) getraumatiseerd V(trans,verl_dw,onverv) shirts N(soort,mv,neut) sterren N(soort,mv,neut) verdraagt V(trans,ott,3,ev) komst N(soort,ev,neut) excommuniceerde V(trans,ovt,1_of_2_of_3,ev) stuks N(soort,mv,neut) kunstschatten N(soort,mv,neut) steunlokalen N(soort,mv,neut) reiger N(soort,ev,neut) Officier N(soort,ev,neut) badpaviljoentje N(soort,ev,neut) uitnodiging N(soort,ev,neut) Valkenswaard N(eigen,ev,neut) constateer V(trans,ott,1,ev) schaven N(soort,mv,neut) jaren N(soort,mv,neut) inschakeling N(soort,ev,neut) speervissen V(intrans,inf,subst) nieuwjaar N(eigen,ev,neut) modegevoelig Adj(attr,stell,onverv) bezitsrecht N(soort,ev,neut) binnenvaren V(intrans,inf) verwachtte V(trans,ovt,1_of_2_of_3,ev) knie N(soort,ev,neut) ongeveer Adv(gew,geen_func,stell,onverv) deelnemende V(intrans,teg_dw,verv_neut) handgreep N(soort,ev,neut) logeerpartij N(soort,ev,neut) Duvalier N(eigen,ev,neut) stompen N(soort,mv,neut) serieuzer Adj(attr,vergr,onverv) wensdroom N(soort,ev,neut) goedvinden V(intrans,inf) V(trans,ott,1_of_2_of_3,mv) bederven V(trans,ott,1_of_2_of_3,mv) richtingen N(soort,mv,neut) kosten N(soort,mv,neut) kwaaltje N(soort,ev,neut) televisie-juke-box N(soort,ev,neut) knip V(trans,imp) zozeer Adv(gew,aanw) uitgeschakeld V(trans,verl_dw,onverv) Kamperdijk N(eigen,ev,neut) binnenplaatsje N(soort,ev,neut) pepertje N(soort,ev,neut) formatie N(soort,ev,neut) hulpverlening N(soort,ev,neut) uitstromend V(intrans,teg_dw,onverv) Daniel N(eigen,ev,neut) record N(soort,ev,neut) gekoesterd V(trans,verl_dw,onverv) uiteenlopen V(intrans,inf) 1896 Num(hoofd,bep,zelfst,onverv) vlieg N(soort,ev,neut) Daarmee Adv(pron,aanw) Poll N(eigen,ev,neut) toepassingsmogelijkheden N(soort,mv,neut) uitbundigheid N(soort,ev,neut) enorm Adj(adv,stell,onverv) Adj(attr,stell,onverv) meikaas N(soort,ev,neut) hoogtijdagen N(soort,mv,neut) stukken N(soort,mv,neut) schudde V(trans,ovt,1_of_2_of_3,ev) Lionel N(eigen,ev,neut) snugger Adj(attr,stell,onverv) genezen V(intrans,inf) doorgedrongen V(intrans,verl_dw,onverv) loskomt V(intrans,ott,3,ev) snoep N(soort,ev,neut) overhemd N(soort,ev,neut) geslagen V(intrans,verl_dw,onverv) nukkig Adj(adv,stell,onverv) jukbeenderen N(soort,mv,neut) graden N(soort,mv,neut) aanbouw N(soort,ev,neut) grootmoeder N(soort,ev,neut) markante Adj(attr,stell,verv_neut) terugkerende V(intrans,teg_dw,verv_neut) benaderde V(trans,ovt,1_of_2_of_3,ev) woorden N(soort,mv,neut) verkenners N(soort,mv,neut) centen N(soort,mv,neut) balken N(soort,mv,neut) consumptie N(soort,ev,neut) hotelportier N(soort,ev,neut) clowns N(soort,mv,neut) kunstvezels N(soort,mv,neut) Alberts N(eigen,ev,neut) liften N(soort,mv,neut) etalagepoppen N(soort,mv,neut) Koning N(eigen,ev,neut) overwon V(intrans,ovt,1_of_2_of_3,ev) Kopechne N(eigen,ev,neut) erdoor Adv(pron,onbep) raakt V(hulp_of_kopp,ott,3,ev) V(hulp_of_kopp,ott,2,ev) V(intrans,ott,3,ev) pater N(soort,ev,neut) bewerkelijke Adj(attr,stell,verv_neut) programma's N(soort,mv,neut) alwaar Adv(gew,vrag) Celsius N(eigen,ev,neut) Palaver N(soort,ev,neut) vergissing N(soort,ev,neut) cafe N(soort,ev,neut) Schep V(trans,imp) weersomstandigheden N(soort,mv,neut) materiele Adj(attr,stell,verv_neut) vinger N(soort,ev,neut) Model N(eigen,ev,neut) nasmeulend V(intrans,teg_dw,onverv) Wickler's N(eigen,ev,gen) klaarblijkelijk Adj(adv,stell,onverv) geloofsleven N(soort,ev,neut) Nixons N(eigen,mv,neut) tien Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) N(soort,ev,neut) Libero N(eigen,ev,neut) bouten N(soort,mv,neut) benaderen V(trans,ott,1_of_2_of_3,mv) geschilderd V(trans,verl_dw,onverv) Vandaag Adv(gew,geen_func,stell,onverv) stramien N(soort,ev,neut) Starr N(eigen,ev,neut) gebak N(soort,ev,neut) Anne N(eigen,ev,neut) volle Adj(attr,stell,verv_neut) verzekerde V(trans,ovt,1_of_2_of_3,ev) V(trans,verl_dw,verv_neut) kastanjes N(soort,mv,neut) chansons N(soort,mv,neut) betreffende V(trans,teg_dw,verv_neut) conclusies N(soort,mv,neut) optel- N(soort,mv,neut) vervoermiddel N(soort,ev,neut) Vandaar Adv(gew,aanw) onwelgevallig Adj(attr,stell,onverv) zond V(trans,ovt,1_of_2_of_3,ev) rinse Adj(attr,stell,verv_neut) Anno Prep(voor) zong V(trans,ovt,1_of_2_of_3,ev) gehuurd V(trans,verl_dw,onverv) kieskeurig Adj(attr,stell,onverv) Jantien N(eigen,ev,neut) bedden N(soort,mv,neut) zetten V(trans,inf) V(trans,ott,1_of_2_of_3,mv) drukken V(trans,inf) V(intrans,inf) 8,75 Num(hoofd,bep,attr,onverv) falen V(intrans,inf,subst) personeel N(soort,ev,neut) bijgaand V(intrans,teg_dw,onverv) premieheffing N(soort,ev,neut) Bourbons N(eigen,mv,neut) aangenomen V(trans,verl_dw,onverv) boyos N(soort,mv,neut) eenennegentig Num(hoofd,bep,zelfst,onverv) naadje N(soort,ev,neut) bijgekomen V(intrans,verl_dw,onverv) eigenaresse N(soort,ev,neut) Karel N(eigen,ev,neut) geput V(trans,verl_dw,onverv) 600 Num(hoofd,bep,attr,onverv) knieholten N(soort,mv,neut) Last N(eigen,ev,neut) keukenflesjes N(soort,mv,neut) soepeler Adj(attr,vergr,onverv) aanbieden V(trans,ott,1_of_2_of_3,mv) uitpraten V(trans,inf) kunstmanen N(soort,mv,neut) gewrichten N(soort,mv,neut) bevliegingen N(soort,mv,neut) opgegeven V(trans,verl_dw,onverv) radiogolven N(soort,mv,neut) verenigingswateren N(soort,mv,neut) hulpmiddel N(soort,ev,neut) a.s. Adj(attr,stell,verv_neut) smak N(soort,ev,neut) midgetgolf N(soort,ev,neut) zoom N(soort,ev,neut) zoon N(soort,ev,neut) Witte N(eigen,ev,neut) innerlijke Adj(attr,stell,verv_neut) tegelijkertijd Adv(gew,geen_func,stell,onverv) vliegtuiglawaai N(soort,ev,neut) Kent N(eigen,ev,neut) beeld N(soort,ev,neut) verliefd Adj(attr,stell,onverv) kamperen V(intrans,inf) bovenop Prep(voor) gezondheid N(soort,ev,neut) minislangenlerenmantelpak N(soort,ev,neut) gerecht N(soort,ev,neut) vast Adj(adv,stell,onverv) Adj(attr,stell,onverv) goed Adj(adv,stell,onverv) Adj(attr,stell,onverv) N(soort,ev,neut) bloeddruk N(soort,ev,neut) zaadcel N(soort,ev,neut) illustere Adj(attr,stell,verv_neut) weekend N(soort,ev,neut) treft V(trans,ott,3,ev) knol N(soort,ev,neut) zwangerschapsstuipen N(soort,mv,neut) gewenst V(trans,verl_dw,onverv) knop N(soort,ev,neut) kleurloze Adj(attr,stell,verv_neut) lands N(soort,ev,gen) verslond V(trans,ovt,1_of_2_of_3,ev) Hollandsche N(eigen,ev,neut) know Misc(vreemd) Herman N(eigen,ev,neut) carnavalstijd N(soort,ev,neut) bestreken V(trans,verl_dw,onverv) Bijlmer N(eigen,ev,neut) afgekoeld V(intrans,verl_dw,onverv) Questura N(soort,ev,neut) vrijheidsstrijder N(soort,ev,neut) spaanplaat N(soort,ev,neut) gidsen N(soort,mv,neut) Moskou N(eigen,ev,neut) volop Adv(gew,geen_func,stell,onverv) Schik V(trans,imp) kinderziektes N(soort,mv,neut) Verdere Adj(attr,vergr,verv_neut) Schil V(trans,imp) bredere Adj(attr,vergr,verv_neut) munt N(soort,ev,neut) nichtje N(soort,ev,neut) slaapkamer N(soort,ev,neut) ongepelde Adj(attr,stell,verv_neut) stellen V(trans,inf) V(trans,inf,subst) V(trans,ott,1_of_2_of_3,mv) tegenwoordige Adj(attr,stell,verv_neut) heimelijk Adj(adv,stell,onverv) ruisende V(intrans,teg_dw,verv_neut) ingewikkeld Adj(attr,stell,onverv) teken V(trans,ott,2,ev) hogere Adj(attr,vergr,verv_neut) relatiepatroon N(soort,ev,neut) behalve Conj(onder,met_fin) direkte Adj(attr,stell,verv_neut) roepen V(trans,ott,1_of_2_of_3,mv) V(trans,inf) Juist Adj(adv,stell,onverv) Adj(attr,stell,onverv) schuldgevoelens N(soort,mv,neut) ontwikkelt V(refl,ott,3,ev) klinieken N(soort,mv,neut) zorg N(soort,ev,neut) V(trans,imp) tijd N(soort,ev,neut) zodat Conj(onder,met_fin) rechtvaardiging N(soort,ev,neut) vraag N(soort,ev,neut) V(intrans,imp) V(trans,imp) V(trans,ott,1,ev) boterhammen N(soort,mv,neut) gogo Misc(vreemd) boottocht N(soort,ev,neut) verschuiving N(soort,ev,neut) vijvers N(soort,mv,neut) onderwijssituatie N(soort,ev,neut) afnemen V(trans,inf) V(intrans,inf) sommigen Pron(onbep,neut,zelfst) been N(soort,ev,neut) mannenzaken N(soort,mv,neut) eitje N(soort,ev,neut) aldoor Adv(gew,geen_func,stell,onverv) stolling N(soort,ev,neut) bleven V(hulp_of_kopp,ovt,1_of_2_of_3,mv) cabaretier N(soort,ev,neut) weggeweest V(intrans,verl_dw,onverv) trein N(soort,ev,neut) meerlen N(eigen,ev,neut) lange Adj(attr,stell,verv_neut) verwezenlijkt V(trans,verl_dw,onverv) stapels N(soort,mv,neut) voordeed V(refl,ovt,1_of_2_of_3,ev) garantie N(soort,ev,neut) vrouw N(soort,ev,neut) politieman N(soort,ev,neut) arbeidersvrouwen N(soort,mv,neut) truffel N(soort,ev,neut) opnemen V(trans,inf) V(trans,inf,subst) langs Prep(voor) Adv(deel_v) Paal N(soort,ev,neut) stuur N(soort,ev,neut) gaarne Adv(gew,geen_func,stell,onverv) voordeel N(soort,ev,neut) vertraagde V(trans,verl_dw,verv_neut) pilgebruikende Adj(attr,stell,verv_neut) uiteenzetten V(trans,inf) tikt V(intrans,ott,3,ev) vlinder N(soort,ev,neut) betasten V(trans,inf) flessenexpressie N(soort,ev,neut) oudste Adj(attr,overtr,verv_neut) computerprogrammeurs N(soort,mv,neut) goederen N(soort,mv,neut) geaarde V(intrans,verl_dw,verv_neut) voeding N(soort,ev,neut) nostalgie N(soort,ev,neut) optreedt V(intrans,ott,3,ev) veranderingen N(soort,mv,neut) ongeboren Adj(attr,stell,onverv) attitude-wijziging N(soort,ev,neut) stembiljet N(soort,ev,neut) zaad N(soort,ev,neut) voorhoofdsfronsen N(soort,mv,neut) gunstigste Adj(attr,overtr,verv_neut) aanrader N(soort,ev,neut) zaak N(soort,ev,neut) zaal N(soort,ev,neut) ontgaan V(trans,verl_dw,onverv) neergang N(soort,ev,neut) James N(soort,ev,neut) gereserveerds Adj(attr,stell,verv_gen) afgewerkt V(trans,verl_dw,onverv) beperktere V(trans,verl_dw,verv_neut) Greta N(eigen,ev,neut) tegenstander N(soort,ev,neut) ontmaagt V(trans,ott,3,ev) trekt V(trans,ott,3,ev) V(intrans,ott,3,ev) torentje N(soort,ev,neut) teleurgestelde V(trans,verl_dw,verv_neut) handenarbeid N(soort,ev,neut) tolereren V(trans,inf) stellig Adj(adv,stell,onverv) aanbrengen V(trans,ott,1_of_2_of_3,mv) aigretteveertjes N(soort,mv,neut) Dixon N(eigen,ev,neut) ontzetting N(soort,ev,neut) redigeren V(trans,inf) burgers N(soort,mv,neut) zout N(soort,ev,neut) sproeien V(intrans,inf) Gruyters N(eigen,ev,neut) voorwerp N(soort,ev,neut) eindexamen N(soort,ev,neut) menhirs N(soort,mv,neut) schaaltje N(soort,ev,neut) grafkrans N(soort,ev,neut) grammofoonplaat N(soort,ev,neut) functies N(soort,mv,neut) gekost V(trans,verl_dw,onverv) leerde V(hulp,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) hartinfarct N(soort,ev,neut) zwembad N(soort,ev,neut) export N(soort,ev,neut) heesters N(soort,mv,neut) Nicky N(eigen,ev,neut) pestbacillen N(soort,mv,neut) letsel N(soort,ev,neut) twaalfde Num(rang,bep,zelfst,onverv) hitparade N(soort,ev,neut) barnsteenkleurig Adj(attr,stell,onverv) overvallen V(trans,verl_dw,onverv) N(soort,mv,neut) must N(soort,ev,neut) onbemande Adj(attr,stell,verv_neut) Noordelijke N(eigen,ev,neut) gehoord V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv) balkon N(soort,ev,neut) zeemijnbouw N(soort,ev,neut) hebben V(hulp,ott,1_of_2_of_3,mv) V(trans,inf) V(hulp,inf) V(intrans,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) levensperiode N(soort,ev,neut) klimaat N(soort,ev,neut) beter Adj(adv,vergr,onverv) Adj(attr,vergr,onverv) steriele Adj(attr,stell,verv_neut) tint N(soort,ev,neut) Pads Misc(vreemd) Romney N(eigen,ev,neut) communicatie N(soort,ev,neut) Vernon N(eigen,ev,neut) Prinses N(soort,ev,neut) N(eigen,ev,neut) twijfelen V(intrans,inf) golf N(soort,ev,neut) N(eigen,ev,neut) welig Adj(adv,stell,onverv) prikkelgeleiding N(soort,ev,neut) voorstelde V(trans,ovt,1_of_2_of_3,ev) slikken V(trans,inf) herinnerd V(trans,verl_dw,onverv) beest N(soort,ev,neut) lawaai-patientjes N(soort,mv,neut) elektronische Adj(attr,stell,verv_neut) luistert V(intrans,ott,3,ev) klemmetje N(soort,ev,neut) schimpend V(intrans,teg_dw,onverv) echtpaar N(soort,ev,neut) literatuuropgaven N(soort,mv,neut) herinnert V(trans,ott,3,ev) begeleiders N(soort,mv,neut) situaties N(soort,mv,neut) aangebracht V(trans,verl_dw,onverv) verbijsterde V(trans,verl_dw,verv_neut) rustiger Adj(adv,vergr,onverv) make-ups N(soort,mv,neut) trend N(soort,ev,neut) broodschrijvers N(soort,mv,neut) Tweede N(eigen,ev,neut) overige Adj(attr,stell,verv_neut) toekomen V(intrans,inf) V(trans,inf) werken V(intrans,inf) N(soort,mv,neut) V(trans,inf) V(intrans,ott,1_of_2_of_3,mv) vensterbanken N(soort,mv,neut) openbaar-vervoer-safari N(soort,ev,neut) slavernij N(soort,ev,neut) patienten N(soort,mv,neut) muur N(soort,ev,neut) Lourdes N(eigen,ev,neut) Bethesda N(eigen,ev,neut) Thiel N(eigen,ev,neut) meende V(trans,ovt,1_of_2_of_3,ev) verveel V(refl,ott,1,ev) geschuwd V(trans,verl_dw,onverv) vriendschappen N(soort,mv,neut) betrekkingen N(soort,mv,neut) reddingsduikboot N(soort,ev,neut) eitjes N(soort,mv,neut) poespas N(soort,ev,neut) uiteinde N(soort,ev,neut) welvaartsvaste Adj(attr,stell,verv_neut) vaststellen V(trans,inf,subst) zeiden V(trans,ovt,1_of_2_of_3,mv) V(intrans,ovt,1_of_2_of_3,mv) broodsnijmachine N(soort,ev,neut) greppel N(soort,ev,neut) massa N(soort,ev,neut) kostte V(trans,ovt,1_of_2_of_3,ev) welke Pron(vrag,neut,zelfst) Pron(betr,gen,zelfst) Toch Adv(gew,geen_func,stell,onverv) koortsachtig Adj(adv,stell,onverv) noodzaak N(soort,ev,neut) milieuvervuiling N(soort,ev,neut) weerspiegeling N(soort,ev,neut) vegen V(trans,inf) opwindends V(intrans,teg_dw,verv_gen) Rusland N(eigen,ev,neut) care Misc(vreemd) Alles Pron(onbep,neut,zelfst) studies N(soort,mv,neut) gedicht N(soort,ev,neut) prikkels N(soort,mv,neut) prikkelt V(intrans,ott,3,ev) bezwaren N(soort,mv,neut) azalea N(soort,ev,neut) belt V(intrans,ott,3,ev) slagroom N(soort,ev,neut) vestiging N(soort,ev,neut) meewerkten V(intrans,ovt,1_of_2_of_3,mv) vogeltjes N(soort,mv,neut) gedroogde V(intrans,verl_dw,verv_neut) firmanaam N(soort,ev,neut) bijnaam N(soort,ev,neut) teckels N(soort,mv,neut) Zulk Pron(aanw,neut,attr) Integendeel Int wijder Adj(attr,vergr,onverv) gooi N(soort,ev,neut) aangetoond V(trans,verl_dw,onverv) knopen N(soort,mv,neut) Andre N(eigen,ev,neut) vernuft N(soort,ev,neut) genitalien N(soort,mv,neut) zwakke Adj(attr,stell,verv_neut) bewoonster N(soort,ev,neut) ophalen V(trans,ott,1_of_2_of_3,mv) roerstokjes N(soort,mv,neut) schijnen V(hulp_of_kopp,ott,1_of_2_of_3,mv) ...... Punc(hellip) overleed V(intrans,ovt,1_of_2_of_3,ev) Gezin N(eigen,ev,neut) casu N(soort,ev,neut) Meesters N(soort,mv,neut) identificeert V(trans,ott,3,ev) rouge N(soort,ev,neut) vissers N(soort,mv,neut) Onder Prep(voor) siert V(trans,ott,3,ev) maakten V(trans,ovt,1_of_2_of_3,mv) V(refl,ovt,1_of_2_of_3,mv) weergave N(soort,ev,neut) boerenkinderen N(soort,mv,neut) risico's N(soort,mv,neut) Toen Conj(onder,met_fin) Adv(gew,aanw) uniform N(soort,ev,neut) aardrijkskunde N(soort,ev,neut) stemmetje N(soort,ev,neut) doodziek Adj(attr,stell,onverv) mazelen N(soort,mv,neut) Frazier N(eigen,ev,neut) excuus N(soort,ev,neut) sigarebandjes N(soort,mv,neut) zand- N(soort,mv,neut) talen N(soort,mv,neut) bent V(hulp_of_kopp,ott,2,ev) V(intrans,ott,2,ev) zuigelingensterfte N(soort,ev,neut) commercie N(soort,ev,neut) Vanmorgen Adv(gew,geen_func,stell,onverv) Chauffeur N(soort,ev,neut) Moeilijk Adj(attr,stell,onverv) Frankie N(eigen,ev,neut) gemeubileerde V(trans,verl_dw,verv_neut) skiers N(soort,mv,neut) grijpen V(trans,inf) V(intrans,inf) innamen V(trans,ovt,1_of_2_of_3,mv) gecombineerd V(trans,verl_dw,onverv) zwart-witbeelden N(soort,mv,neut) schandpaal N(soort,ev,neut) tongetjes N(soort,mv,neut) vannacht Adv(gew,geen_func,stell,onverv) zwijgend V(intrans,teg_dw,onverv) aftrekposten N(soort,mv,neut) overblijfselen N(soort,mv,neut) Kruckenhauser N(eigen,ev,neut) Bedrog N(soort,ev,neut) verliest V(trans,ott,3,ev) juryrapport N(soort,ev,neut) broederschap N(soort,ev,neut) alimentatie N(soort,ev,neut) communistische Adj(attr,stell,verv_neut) overbeweiding N(soort,ev,neut) Thijs N(eigen,ev,neut) polijstpasta N(soort,ev,neut) prijkt V(intrans,ott,3,ev) Wetenschappelijke Adj(attr,stell,verv_neut) meevoerend V(trans,teg_dw,onverv) filmtijdschriften N(soort,mv,neut) zuinig Adj(attr,stell,onverv) problemen N(soort,mv,neut) Paola N(eigen,ev,neut) Caesar N(eigen,ev,neut) zieken Adj(zelfst,stell,verv_mv) zorgen N(soort,mv,neut) V(trans,inf) V(intrans,inf) zake N(soort,ev,dat) verlorene V(trans,verl_dw,verv_neut) ontdekkingsreiziger N(soort,ev,neut) maaltijden N(soort,mv,neut) natuurlijke Adj(attr,stell,verv_neut) tegemoet Adv(gew,geen_func,stell,onverv) Philips N(eigen,ev,neut) gedenkteken N(soort,ev,neut) verzetten V(refl,inf) biedt V(trans,ott,3,ev) Groenland N(eigen,ev,neut) halfgestopte Adj(attr,stell,verv_neut) randjes N(soort,mv,neut) botsing N(soort,ev,neut) berg N(soort,ev,neut) seksueel Adj(attr,stell,onverv) Adj(adv,stell,onverv) opknappen V(trans,inf) Manny N(eigen,ev,neut) socialist N(soort,ev,neut) werknemers N(soort,mv,neut) gaan V(intrans,inf) V(hulp,ott,1_of_2_of_3,mv) V(intrans,ott,1_of_2_of_3,mv) V(trans,inf) V(hulp,inf) V(intrans,inf,subst) vervelt V(intrans,ott,3,ev) ondanks Prep(voor) beschadigd V(trans,verl_dw,onverv) verbrassende V(trans,teg_dw,verv_neut) Country N(eigen,ev,neut) Helemaal Adv(gew,geen_func,stell,onverv) gaat V(intrans,ott,3,ev) V(intrans,imp) V(hulp,ott,3,ev) V(trans,ott,3,ev) V(hulp,ott,2,ev) V(intrans,ott,2,ev) vreugdedans N(soort,ev,neut) goud Adj(attr,stell,onverv) N(soort,ev,neut) tekst N(soort,ev,neut) staatsprijs N(soort,ev,neut) kanker N(soort,ev,neut) vistochtje N(soort,ev,neut) samenlevingsstructuur N(soort,ev,neut) volgend V(intrans,teg_dw,onverv) weleer Adv(gew,geen_func,stell,onverv) ontruimd V(trans,verl_dw,onverv) Trastevere N(eigen,ev,neut) sierlijke Adj(attr,stell,verv_neut) ontketend V(trans,verl_dw,onverv) menselijke Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut) Niettemin Adv(gew,geen_func,stell,onverv) '70-'71 Num(hoofd,bep,zelfst,onverv) SGP N(eigen,ev,neut) best Adj(adv,vergr,onverv) N(soort,ev,neut) Adj(attr,overtr,onverv) Pant N(eigen,ev,neut) volgens Prep(voor) Tibetaanse Adj(attr,stell,verv_neut) Heiden N(eigen,ev,neut) volkstuincomplexen N(soort,mv,neut) regelen V(trans,inf) gedronken V(trans,verl_dw,onverv) Nice N(eigen,ev,neut) klinkt V(intrans,ott,3,ev) eigenlijke Adj(attr,stell,verv_neut) inspanningen N(soort,mv,neut) Jorma N(eigen,ev,neut) sportief Adj(attr,stell,onverv) wordt V(hulp_of_kopp,ott,3,ev) V(hulp_of_kopp,ott,2,ev) aanzienlijk Adj(adv,stell,onverv) Worden V(hulp_of_kopp,ott,1_of_2_of_3,mv) Nico N(eigen,ev,neut) veilinghuizen N(soort,mv,neut) Vraagt V(trans,ott,2,ev) zang N(soort,ev,neut) dusver Adv(gew,aanw) banden N(soort,mv,neut) op- N(soort,ev,neut) geluisterd V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv) journalisten N(soort,mv,neut) ons Pron(bez,1,mv,neut,attr) Pron(per,1,mv,dat_of_acc) Pron(ref,1,mv) N(eigen,ev,neut) round Adj(attr,stell,onverv) nooit Adv(gew,onbep) Dream N(eigen,ev,neut) gebakken V(trans,verl_dw,onverv) antirevolutionaire Adj(attr,stell,verv_neut) dierbaar Adj(attr,stell,onverv) Operatie N(eigen,ev,neut) Papa N(eigen,ev,neut) geschiedt V(intrans,ott,3,ev) Getrouwd V(intrans,verl_dw,onverv) Sojoez-11 N(eigen,ev,neut) uitverkoren V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv) ploeteren V(intrans,ott,1_of_2_of_3,mv) oog N(soort,ev,neut) zodra Conj(onder,met_fin) Kosten N(soort,mv,neut) ook Adv(gew,geen_func,stell,onverv) voorgelicht V(trans,verl_dw,onverv) woensdag N(eigen,ev,neut) oom N(soort,ev,neut) Koster N(eigen,ev,neut) natuurreservaat N(soort,ev,neut) Jachtige Adj(attr,stell,verv_neut) oor N(soort,ev,neut) Dennendal N(eigen,ev,neut) langer Adj(adv,vergr,onverv) Adj(attr,vergr,onverv) ademhalingswegen N(soort,mv,neut) Edward N(eigen,ev,neut) hertrouwd V(trans,verl_dw,onverv) diepzeehaai N(soort,ev,neut) vaklien N(soort,mv,neut) onderwerpen N(soort,mv,neut) televisieseizoenen N(soort,mv,neut) lichamen N(soort,mv,neut) Kortgeleden Adv(gew,geen_func,stell,onverv) dappersten Adj(zelfst,overtr,verv_neut) klaagt V(trans,ott,3,ev) nieuwsgierigen Adj(zelfst,stell,verv_mv) Niet Adv(gew,geen_func,stell,onverv) levensvisie N(soort,ev,neut) Godfried N(soort,ev,neut) 1910 Num(hoofd,bep,zelfst,onverv) Doctoraal Adj(attr,stell,onverv) weerkaatsen V(trans,ott,1_of_2_of_3,mv) 1913 Num(hoofd,bep,zelfst,onverv) spieren N(soort,mv,neut) verouderingsproces N(soort,ev,neut) Stones N(eigen,mv,neut) Slangen N(soort,mv,neut) recht-aan Adj(attr,stell,onverv) bureau N(soort,ev,neut) gegroeid V(trans,verl_dw,onverv) Mersham N(eigen,ev,neut) ontlasting N(soort,ev,neut) Permanent Adj(attr,stell,onverv) Park N(eigen,ev,neut) bewees V(trans,ovt,1_of_2_of_3,ev) eraan Adv(pron,onbep) nieuwbouwwijk N(soort,ev,neut) 02550-15579 Num(hoofd,bep,zelfst,onverv) toonde V(trans,ovt,1_of_2_of_3,ev) Garneer V(trans,imp) haalden V(trans,ovt,1_of_2_of_3,mv) dochtertje N(soort,ev,neut) moderator N(soort,ev,neut) handenarbeidzaken N(soort,mv,neut) bloedplasma N(soort,ev,neut) Anson N(eigen,ev,neut) 1929 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) wapenhandel N(soort,ev,neut) karakteristiek Adj(attr,stell,onverv) snakt V(intrans,ott,3,ev) Third N(eigen,ev,neut) Toon N(eigen,ev,neut) Amerika's N(eigen,ev,gen) monopolies N(soort,mv,neut) Salonwoorden N(soort,mv,neut) Arnhem N(eigen,ev,neut) eindje N(soort,ev,neut) drinken V(trans,inf) knipperbollen N(soort,mv,neut) verzekering N(soort,ev,neut) oudere Adj(attr,vergr,verv_neut) tochten N(soort,mv,neut) begeleidende V(intrans,teg_dw,verv_neut) Drouin N(eigen,ev,neut) bevelen V(trans,inf) voorzien V(trans,inf) V(trans,verl_dw,onverv) toeristen N(soort,mv,neut) voortdurend Adv(gew,geen_func,stell,onverv) systeem N(soort,ev,neut) Drie Num(hoofd,bep,attr,onverv) nagenoeg Adv(gew,geen_func,stell,onverv) flauwe Adj(attr,stell,verv_neut) voorziet V(intrans,ott,3,ev) 1930 Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) universiteitsgebouw N(soort,ev,neut) ouders N(soort,mv,neut) charmes N(soort,mv,neut) Kutschinsky N(eigen,ev,neut) gezogen V(trans,verl_dw,onverv) gemakkelijk Adj(adv,stell,onverv) Adj(attr,stell,onverv) grintpad N(soort,ev,neut) Arlbergpas N(eigen,ev,neut) Cheverny N(eigen,ev,neut) toekomst N(soort,ev,neut) seksuele Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut) huidige Adj(attr,stell,verv_neut) geloven V(trans,inf) V(trans,ott,1_of_2_of_3,mv) V(intrans,inf) devoot Adj(adv,stell,onverv) schuiven V(trans,inf) zwanger Adj(attr,stell,onverv) spreekuur N(soort,ev,neut) huwelijksfeesten N(soort,mv,neut) voorbijgaan V(intrans,inf,subst) verdeling N(soort,ev,neut) Kennedytraditie N(soort,ev,neut) glaasje N(soort,ev,neut) geschiedde V(intrans,ovt,1_of_2_of_3,ev) werkte V(intrans,ovt,1_of_2_of_3,ev) 1940 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) 1942 Num(hoofd,bep,zelfst,onverv) 1943 Num(hoofd,bep,zelfst,onverv) gebroken V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv) 1944 Num(hoofd,bep,zelfst,onverv) gericht V(trans,verl_dw,onverv) 1945 Num(hoofd,bep,attr,onverv) behoren V(hulp,ott,1_of_2_of_3,mv) V(intrans,ott,1_of_2_of_3,mv) 1949 Num(hoofd,bep,zelfst,onverv) kinderarts N(soort,ev,neut) ontberingen N(soort,mv,neut) speelde V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) autobiografie N(soort,ev,neut) koek N(soort,ev,neut) bedroeg V(trans,ovt,1_of_2_of_3,ev) koel Adj(attr,stell,onverv) Adj(adv,stell,onverv) aandringen V(intrans,inf,subst) kracht N(soort,ev,neut) versperden V(trans,ovt,1_of_2_of_3,mv) tegenvallers N(soort,mv,neut) Paul N(eigen,ev,neut) Misc(vreemd) dessins N(soort,mv,neut) sportieve Adj(attr,stell,verv_neut) Nyerere N(eigen,ev,neut) iedere Pron(onbep,neut,attr) vennoot N(soort,ev,neut) vorderingen N(soort,mv,neut) verrichten V(trans,ott,1_of_2_of_3,mv) V(trans,inf) onredelijke Adj(attr,stell,verv_neut) route N(soort,ev,neut) 1955 Num(hoofd,bep,zelfst,onverv) erotisch-technische Adj(attr,stell,verv_neut) 1957 Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) 1958 Num(hoofd,bep,attr,onverv) 1959 Num(hoofd,bep,zelfst,onverv) chauvinisme N(soort,ev,neut) ieders Pron(onbep,gen,zelfst) historie N(soort,ev,neut) garde N(soort,ev,neut) Bovenaan Adv(gew,geen_func,stell,onverv) aan Prep(voor) Prep(comb) Adv(deel_v) Adv(gew,geen_func,stell,onverv) Adv(deel_adv) vereende Adj(attr,stell,verv_neut) V.S. N(eigen,mv,neut) Rob N(eigen,ev,neut) lenen V(trans,inf) oud Adj(attr,stell,onverv) Nijs N(eigen,ev,neut) Napels N(eigen,ev,neut) omgeving N(soort,ev,neut) ontworpen V(trans,verl_dw,onverv) Village N(eigen,ev,neut) Provence N(eigen,ev,neut) herschrijft V(trans,ott,3,ev) piste N(soort,ev,neut) Straight N(eigen,ev,neut) begeleidt V(trans,ott,3,ev) verwerken V(trans,inf) scheidsrechter N(soort,ev,neut) diplomatieke Adj(attr,stell,verv_neut) 1960 Num(hoofd,bep,zelfst,onverv) 1961 Num(hoofd,bep,zelfst,onverv) doorzien V(trans,inf) 1962 Num(hoofd,bep,zelfst,onverv) Menac N(eigen,ev,neut) 1963 Num(hoofd,bep,zelfst,onverv) creme N(soort,ev,neut) 1964 Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) 1965 Num(hoofd,bep,zelfst,onverv) 1967 Num(hoofd,bep,zelfst,onverv) wilde V(hulp,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) Adj(attr,stell,verv_neut) V(trans,ovt,1_of_2_of_3,ev) 1968 Num(hoofd,bep,zelfst,onverv) vorige Adj(attr,stell,verv_neut) 1969 Num(hoofd,bep,zelfst,onverv) zuster N(soort,ev,neut) verreweg Adv(gew,geen_func,stell,onverv) fikse Adj(attr,stell,verv_neut) reclamebureau N(soort,ev,neut) gedegradeerd V(trans,verl_dw,onverv) verboden N(soort,mv,neut) V(trans,verl_dw,onverv) garen N(soort,ev,neut) straten N(soort,mv,neut) begrijpt V(trans,ott,3,ev) V(trans,ott,2,ev) bewaren V(trans,inf) Cannes N(eigen,ev,neut) overdrijve V(intrans,conj) vasthoudt V(intrans,ott,3,ev) klaarlichte Adj(attr,stell,verv_neut) instigatie N(soort,ev,neut) Price N(eigen,ev,neut) beginjaren N(soort,mv,neut) mening N(soort,ev,neut) 1970 Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) 1971 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) inhouden V(trans,inf) 1975 Num(hoofd,bep,zelfst,onverv) ringetjes N(soort,mv,neut) butler N(soort,ev,neut) ach Int moederziel N(soort,ev,neut) telegram N(soort,ev,neut) conversatiezaal N(soort,ev,neut) beviel V(intrans,ovt,1_of_2_of_3,ev) tochtje N(soort,ev,neut) REACTIES N(soort,mv,neut) mensapen N(soort,mv,neut) herstel N(soort,ev,neut) verdachts Adj(attr,stell,verv_gen) kankeren V(intrans,inf) act N(soort,ev,neut) motief N(soort,ev,neut) dichters N(soort,mv,neut) literatuur N(soort,ev,neut) gepoetst V(trans,verl_dw,onverv) diefstal N(soort,ev,neut) probeerden V(hulp,ovt,1_of_2_of_3,mv) vaatziekten N(soort,mv,neut) vrachtwagens N(soort,mv,neut) sliep V(intrans,ovt,1_of_2_of_3,ev) alternatief N(soort,ev,neut) verwonderen V(refl,inf) verontwaardigd V(trans,verl_dw,onverv) verbeeldingskracht N(soort,ev,neut) verschillen N(soort,mv,neut) V(intrans,ott,1_of_2_of_3,mv) fontein N(soort,ev,neut) aapje N(soort,ev,neut) Slingelandt N(eigen,ev,neut) stemverheffing N(soort,ev,neut) zwerftochten N(soort,mv,neut) delirium N(soort,ev,neut) proeven N(soort,mv,neut) V(trans,inf) Peterke N(eigen,ev,neut) draaiboekauteurs N(soort,mv,neut) zevenhonderd Num(hoofd,bep,attr,onverv) waardig Adj(adv,stell,onverv) Chatillon-en-Bazois N(eigen,ev,neut) rechtvaardigen V(trans,inf) accijnzen N(soort,mv,neut) zekerheid N(soort,ev,neut) onderhield V(trans,ovt,1_of_2_of_3,ev) crepe N(soort,ev,neut) tafels N(soort,mv,neut) enthousiast Adj(attr,stell,onverv) Adj(adv,stell,onverv) felle Adj(attr,stell,verv_neut) felicitatiekaart N(soort,ev,neut) Hieronder Adv(pron,aanw) maten N(soort,mv,neut) Sabine N(eigen,ev,neut) gang N(soort,ev,neut) uiterlijk N(soort,ev,neut) Adj(attr,stell,onverv) koortsig Adj(attr,stell,onverv) bewijzen V(trans,inf) N(soort,mv,neut) V(trans,ott,1_of_2_of_3,mv) verspilling N(soort,ev,neut) inheemse Adj(attr,stell,verv_neut) pijpers N(soort,mv,neut) doordringen V(trans,inf) onderuitgezakt V(intrans,verl_dw,onverv) ziekte N(soort,ev,neut) aangehouden V(trans,verl_dw,onverv) pioniers N(soort,mv,neut) schaaldieren N(soort,mv,neut) machtszwakke Adj(attr,stell,verv_neut) diverse Pron(onbep,neut,attr) aangepaste V(trans,verl_dw,verv_neut) koks N(soort,mv,neut) ballen N(soort,mv,neut) Alassio N(eigen,ev,neut) intrigeerde V(trans,ovt,1_of_2_of_3,ev) honderdste Num(rang,bep,attr,onverv) jicht N(soort,ev,neut) Bepaald Adv(gew,geen_func,stell,onverv) Calabria N(eigen,ev,neut) ballet N(soort,ev,neut) peperdure Adj(attr,stell,verv_neut) gereden V(trans,verl_dw,onverv) Annelies N(eigen,ev,neut) feit N(soort,ev,neut) betrekkelijk Adj(adv,stell,onverv) verzorgde V(trans,ovt,1_of_2_of_3,ev) Zuidlimburgers N(soort,mv,neut) Dag Int geweldige Adj(attr,stell,verv_neut) Italiaanse Adj(attr,stell,verv_neut) onderbouw N(soort,ev,neut) trillingen N(soort,mv,neut) Dan Adv(gew,aanw) aangekomen V(intrans,verl_dw,onverv) uitgedeeld V(trans,verl_dw,onverv) vanzelfsprekend Adj(adv,stell,onverv) 7101 Num(hoofd,bep,zelfst,onverv) 7102 Num(hoofd,bep,zelfst,onverv) heetst Adj(zelfst,overtr,onverv) Das N(eigen,ev,neut) Dat Pron(aanw,neut,zelfst) Pron(aanw,neut,attr) Conj(onder,met_fin) onbruikbare Adj(attr,stell,verv_neut) kinesica N(soort,ev,neut) ruimtestation N(soort,ev,neut) januari N(eigen,ev,neut) Rue N(eigen,ev,neut) keien N(soort,mv,neut) Day N(eigen,ev,neut) Zonen N(soort,mv,neut) vuurwerk N(soort,ev,neut) werkmethoden N(soort,mv,neut) enigszins Adv(gew,geen_func,stell,onverv) grofheden N(soort,mv,neut) heette V(hulp_of_kopp,ovt,1_of_2_of_3,ev) Christelijk N(eigen,ev,neut) schreven V(trans,ovt,1_of_2_of_3,mv) volgezogen V(trans,verl_dw,onverv) gapt V(trans,ott,3,ev) beeldcassette N(soort,ev,neut) Hebben V(hulp,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) verzorgen V(trans,inf) magots N(eigen,ev,neut) terugbrengen V(trans,inf) gegeten V(trans,verl_dw,onverv) zolang Conj(onder,met_fin) komt V(intrans,ott,3,ev) V(intrans,ott,2,ev) V(intrans,imp) V(hulp_of_kopp,ott,3,ev) V(trans,ott,3,ev) V(hulp_of_kopp,ott,2,ev) familieroman N(soort,ev,neut) 700 Num(hoofd,bep,attr,onverv) schakelde V(intrans,ovt,1_of_2_of_3,ev) afbeeldingen N(soort,mv,neut) plukken V(trans,inf) make-up N(soort,ev,neut) nadelen N(soort,mv,neut) goedhartig Adj(attr,stell,onverv) gepleegd V(trans,verl_dw,onverv) Consumptiesex N(soort,ev,neut) International N(eigen,ev,neut) bovendien Adv(gew,geen_func,stell,onverv) matig Adj(adv,stell,onverv) Venusstraat N(eigen,ev,neut) effectenbeurs N(soort,ev,neut) perfectie N(soort,ev,neut) lukte V(intrans,ovt,1_of_2_of_3,ev) worst N(soort,ev,neut) Zonnekust N(soort,ev,neut) voorsprong N(soort,ev,neut) gooien V(trans,inf) tweeentwintig Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) verhaal N(soort,ev,neut) buren N(soort,mv,neut) liedjesteksten N(soort,mv,neut) Rijksbureau N(soort,ev,neut) bezweren V(intrans,ott,1_of_2_of_3,mv) isotonische Adj(attr,stell,verv_neut) schakelen V(trans,inf) V(intrans,ott,1_of_2_of_3,mv) overgelaten V(trans,verl_dw,onverv) 719 N(eigen,ev,neut) peperduur Adj(attr,stell,onverv) kooi N(soort,ev,neut) zondagsavonds N(soort,ev,gen) kook N(soort,ev,neut) effect N(soort,ev,neut) afspraken N(soort,mv,neut) hurkWC's N(soort,mv,neut) koop N(soort,ev,neut) V(trans,imp) huishoudgeld N(soort,ev,neut) koos V(intrans,ovt,1_of_2_of_3,ev) telde V(trans,ovt,1_of_2_of_3,ev) hoogconjunctuur N(soort,ev,neut) boodschap N(soort,ev,neut) gilden N(soort,mv,neut) opvarenden Adj(zelfst,stell,verv_mv) spottend V(intrans,teg_dw,onverv) formuleert V(trans,ott,3,ev) Ongeduldig Adj(adv,stell,onverv) BoymansVan N(eigen,ev,neut) Fauriel N(eigen,ev,neut) verkeersopvoeding N(soort,ev,neut) Den N(eigen,ev,neut) tanden N(soort,mv,neut) onze Pron(bez,1,mv,neut,attr) veroordeelde V(trans,ovt,1_of_2_of_3,ev) paniekje N(soort,ev,neut) Der N(eigen,ev,neut) kostelijke Adj(attr,stell,verv_neut) Guernsey N(eigen,ev,neut) oppervlakte-temperatuur N(soort,ev,neut) onveranderd Adj(attr,stell,onverv) nagedacht V(intrans,verl_dw,onverv) najaarstrek N(soort,ev,neut) glipte V(intrans,ovt,1_of_2_of_3,ev) veerkracht N(soort,ev,neut) toelaat V(trans,ott,3,ev) borrel N(soort,ev,neut) rampen N(soort,mv,neut) trachten V(hulp,ott,1_of_2_of_3,mv) bijtijds Adv(gew,geen_func,stell,onverv) bondig Adj(adv,stell,onverv) pistolen N(soort,mv,neut) Bouchet N(eigen,ev,neut) Incognita Misc(vreemd) voedingsstoffen N(soort,mv,neut) vermeldt V(trans,ott,3,ev) all Adj(attr,stell,onverv) Standen N(soort,mv,neut) braken V(intrans,inf) bastaard N(soort,ev,neut) China N(eigen,ev,neut) als Conj(onder,met_fin) Conj(neven) overjas N(soort,ev,neut) Ching N(eigen,ev,neut) verlangen N(soort,ev,neut) Utrecht N(eigen,ev,neut) Prima N(eigen,ev,neut) ongemotiveerd Adj(attr,stell,onverv) klaagzangen N(soort,mv,neut) werklustige Adj(attr,stell,verv_neut) regelmatig Adj(adv,stell,onverv) Adj(attr,stell,onverv) Julius N(eigen,ev,neut) afkomstig Adj(attr,stell,onverv) leeftijdsverloochening N(soort,ev,neut) nadelig Adj(adv,stell,onverv) Adj(attr,stell,onverv) innemen V(trans,inf) V(trans,inf,subst) 747 Num(hoofd,bep,zelfst,onverv) appartement N(soort,ev,neut) aalmoezenier N(soort,ev,neut) gauw Adv(gew,geen_func,stell,onverv) blonde Adj(attr,stell,verv_neut) opeens Adv(gew,geen_func,stell,onverv) disfunktioneel Adj(attr,stell,onverv) Robbe N(eigen,ev,neut) verbintenis N(soort,ev,neut) decors N(soort,mv,neut) onbeheerst Adj(adv,stell,onverv) Provo-beweging N(soort,ev,neut) versterkende V(intrans,teg_dw,verv_neut) snel Adj(adv,stell,onverv) Adj(attr,stell,onverv) krachten N(soort,mv,neut) Victor N(eigen,ev,neut) geliefde Adj(zelfst,stell,verv_neut) behandeling N(soort,ev,neut) buurvrouw N(soort,ev,neut) gave N(soort,ev,neut) jaloezie N(soort,ev,neut) kort Adj(attr,stell,onverv) Adj(adv,stell,onverv) behoorden V(intrans,ovt,1_of_2_of_3,mv) Griekse Adj(attr,stell,verv_neut) summum N(soort,ev,neut) broek N(soort,ev,neut) onvermijdelijk Adj(attr,stell,onverv) pantry N(soort,ev,neut) broer N(soort,ev,neut) teweer Adv(gew,geen_func,stell,onverv) and Misc(vreemd) N(soort,mv,neut) N(eigen,ev,neut) N(eigen,mv,neut) Vroeger Adj(adv,vergr,onverv) therapeute N(soort,ev,neut) onbewuste Adj(attr,stell,verv_neut) knalde V(intrans,ovt,1_of_2_of_3,ev) Prins N(soort,ev,neut) N(eigen,ev,neut) eveneens Adv(gew,geen_func,stell,onverv) onafhankelijk Adj(attr,stell,onverv) verzolen V(trans,inf) weerkeert V(intrans,ott,3,ev) informatie N(soort,ev,neut) telefoonverbinding N(soort,ev,neut) dirigisme N(soort,ev,neut) Kerstmis N(eigen,ev,neut) achteraf Adv(gew,geen_func,stell,onverv) Adj(attr,stell,onverv) pad N(soort,ev,neut) bedreigd V(trans,verl_dw,onverv) Belangrijk Adj(attr,stell,onverv) vertoonde V(refl,ovt,1_of_2_of_3,ev) bedekt V(trans,verl_dw,onverv) kost V(trans,ott,3,ev) N(soort,ev,neut) toenemende V(intrans,teg_dw,verv_neut) pak N(soort,ev,neut) V(trans,imp) V(intrans,imp) moederonderzeeer N(soort,ev,neut) pal Adv(gew,geen_func,stell,onverv) behoeftigen Adj(zelfst,stell,verv_mv) watertje N(soort,ev,neut) Die Pron(aanw,neut,attr) N(eigen,ev,neut) Pron(betr,neut,zelfst) Pron(aanw,neut,zelfst) verpleegtehuizen N(soort,mv,neut) pap N(soort,ev,neut) pas Adv(gew,geen_func,stell,onverv) N(soort,ev,neut) V(intrans,imp) ontvangen V(trans,verl_dw,onverv) Dik Adj(adv,stell,onverv) rodehond N(soort,ev,neut) ingeslagen V(trans,verl_dw,onverv) rationeel Adj(attr,stell,onverv) lipgloss N(soort,ev,neut) werkzaam Adj(attr,stell,onverv) pay Misc(vreemd) voorschriften N(soort,mv,neut) erdoorheen Adv(pron,onbep) verrukt V(trans,verl_dw,onverv) Dit Pron(aanw,neut,zelfst) Pron(aanw,neut,attr) brandblaren N(soort,mv,neut) zachtmoedige Adj(attr,stell,verv_neut) jezelf Pron(ref,2,ev) Frans Adj(attr,stell,onverv) N(eigen,ev,neut) kaap N(soort,ev,neut) Philadelphia N(eigen,ev,neut) Hindeloper Adj(attr,stell,onverv) ellebogen N(soort,mv,neut) Franz N(eigen,ev,neut) kaas N(soort,ev,neut) ontbieden V(trans,inf) bekroond V(trans,verl_dw,onverv) koud Adj(attr,stell,onverv) verveling N(soort,ev,neut) theorie N(soort,ev,neut) lente N(soort,ev,neut) Gerrit N(eigen,ev,neut) beschaamd V(trans,verl_dw,onverv) geslaagde V(intrans,verl_dw,verv_neut) kritiek N(soort,ev,neut) letter N(soort,ev,neut) tocht N(soort,ev,neut) eidooiers N(soort,mv,neut) 18de Num(rang,bep,attr,onverv) meega V(intrans,ott,1,ev) verwerkte V(trans,ovt,1_of_2_of_3,ev) kous N(soort,ev,neut) tikte V(trans,ovt,1_of_2_of_3,ev) amerikaans Adj(attr,stell,verv_gen) Trouw N(eigen,ev,neut) springvorm N(soort,ev,neut) concurreren V(intrans,inf) dienen V(hulp,ott,1_of_2_of_3,mv) contact N(soort,ev,neut) belichaming N(soort,ev,neut) behoefte N(soort,ev,neut) eind N(soort,ev,neut) snij V(trans,imp) lichtheid N(soort,ev,neut) complicaties N(soort,mv,neut) Hoogenboom N(eigen,ev,neut) Provinciale Adj(attr,stell,verv_neut) vermocht V(hulp,ovt,1_of_2_of_3,ev) opeten V(trans,ott,1_of_2_of_3,mv) beledigden V(trans,ovt,1_of_2_of_3,mv) blijmoedigheid N(soort,ev,neut) Amerikaanse Adj(attr,stell,verv_neut) volkomen Adj(adv,stell,onverv) Adj(attr,stell,onverv) Adv(gew,geen_func,stell,onverv) burgerpersoneel N(soort,ev,neut) Kuif N(eigen,ev,neut) miljonairs N(soort,mv,neut) inlichtingen N(soort,mv,neut) overtredingen N(soort,mv,neut) New-York N(eigen,ev,neut) normen N(soort,mv,neut) Goren N(eigen,ev,neut) leefden V(intrans,ovt,1_of_2_of_3,mv) uitgezet V(trans,verl_dw,onverv) arm N(soort,ev,neut) Adj(attr,stell,onverv) hulpelozer Adj(attr,vergr,onverv) 27.000 Num(hoofd,bep,attr,onverv) duidelijk Adj(adv,stell,onverv) Adj(attr,stell,onverv) rechtlijnig Adj(attr,stell,onverv) bekende Adj(attr,stell,verv_neut) V(trans,ovt,1_of_2_of_3,ev) orgasmen N(soort,mv,neut) Trade Misc(vreemd) zindelijkheidstraining N(soort,ev,neut) badmintonwedstrijd N(soort,ev,neut) uitzonderingen N(soort,mv,neut) wintersport N(soort,ev,neut) pen N(soort,ev,neut) Vaticaan N(eigen,ev,neut) pep N(soort,ev,neut) tuin-schoonheid N(soort,ev,neut) vermijdbare Adj(attr,stell,verv_neut) stuurde V(trans,ovt,1_of_2_of_3,ev) verlegen Adj(attr,stell,onverv) per Prep(voor) dogela's N(soort,mv,neut) pet N(soort,ev,neut) geschreven V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv) klassenstrijd N(eigen,ev,neut) mijdende V(trans,teg_dw,verv_neut) ontsnappen V(intrans,inf) schouder N(soort,ev,neut) Veenestraat N(eigen,ev,neut) bitterballen N(soort,mv,neut) stommigheid N(soort,ev,neut) Rijst V(intrans,ott,3,ev) Rien N(eigen,ev,neut) gespannen Adj(attr,stell,onverv) V(trans,verl_dw,onverv) Adj(adv,stell,onverv) piloten N(soort,mv,neut) Elsje N(eigen,ev,neut) Spanjaarden N(soort,mv,neut) aanhangig Adj(attr,stell,onverv) Hayworth N(eigen,ev,neut) Riet N(eigen,ev,neut) verloskundige Adj(attr,stell,verv_neut) menstruatie N(soort,ev,neut) bezittingen N(soort,mv,neut) Broadway N(eigen,ev,neut) overkomen V(intrans,inf) V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv) instituut N(soort,ev,neut) voortkronkelende V(intrans,teg_dw,verv_neut) brandstichtingen N(soort,mv,neut) algeheel Adj(attr,stell,onverv) lijfwacht N(soort,ev,neut) Schokkende V(intrans,teg_dw,verv_neut) gedeprimeerd V(trans,verl_dw,onverv) Chen N(eigen,ev,neut) vonkende V(intrans,teg_dw,verv_neut) Boer-van N(eigen,ev,neut) Minnema N(eigen,ev,neut) Harry N(eigen,ev,neut) WAREN V(hulp_of_kopp,ovt,1_of_2_of_3,mv) romans N(soort,mv,neut) ernstige Adj(attr,stell,verv_neut) San N(eigen,ev,neut) milieu N(soort,ev,neut) Carnac N(eigen,ev,neut) gestoken V(trans,verl_dw,onverv) organische Adj(attr,stell,verv_neut) christelijke Adj(attr,stell,verv_neut) liedjes N(soort,mv,neut) computer N(soort,ev,neut) ergens Adv(gew,onbep) Adv(pron,onbep) besproeien V(trans,ott,1_of_2_of_3,mv) milieuverontreiniging N(soort,ev,neut) aus N(eigen,ev,neut) kwispelen V(intrans,inf) Brussels Adj(attr,stell,onverv) prestatie N(soort,ev,neut) duurdere Adj(attr,vergr,verv_neut) homofilie N(soort,ev,neut) onderzocht V(trans,ovt,1_of_2_of_3,ev) V(trans,verl_dw,onverv) doorging V(intrans,ovt,1_of_2_of_3,ev) richting N(soort,ev,neut) Saloon N(eigen,ev,neut) Brugge N(eigen,ev,neut) Adultery N(eigen,ev,neut) ziekenkamer N(soort,ev,neut) Bureau N(soort,ev,neut) voorkomende V(intrans,teg_dw,verv_neut) willen V(hulp,ott,1_of_2_of_3,mv) V(trans,inf) V(trans,ott,1_of_2_of_3,mv) V(hulp,inf) schoenpoetswinkeltje N(soort,ev,neut) verduisteren V(trans,inf) zodoende Adv(gew,aanw) Haaksbergen N(eigen,ev,neut) 32-jarige Adj(attr,stell,verv_neut) Dr. N(eigen,ev,neut) vermoedelijk Adj(adv,stell,onverv) familie N(soort,ev,neut) Duitssprekende Adj(attr,stell,verv_neut) zoekt V(trans,ott,3,ev) V(hulp,ott,3,ev) aftrekken V(trans,inf) pitjes N(soort,mv,neut) herhaling N(soort,ev,neut) gemotiveerde V(trans,verl_dw,verv_neut) verderfelijke Adj(attr,stell,verv_neut) bloembodem N(soort,ev,neut) lagere Adj(attr,vergr,verv_neut) Tegen Prep(voor) Sextant N(eigen,ev,neut) omstandigheid N(soort,ev,neut) eist V(trans,ott,3,ev) pil N(soort,ev,neut) vooruitgegaan V(trans,verl_dw,onverv) afdraaien V(trans,inf) Coler N(eigen,ev,neut) hadden V(hulp,ovt,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv) pleidooi N(soort,ev,neut) vakantie-contact N(soort,ev,neut) geopend V(trans,verl_dw,onverv) Palmen N(soort,mv,neut) Kunt V(hulp,ott,2,ev) courant Adj(attr,stell,onverv) Ouders N(soort,mv,neut) dunkt V(hulp_of_kopp,ott,3,ev) landhuis N(soort,ev,neut) gratie N(soort,ev,neut) duidelijk-Zweedse Adj(attr,stell,verv_neut) ontstolen V(trans,verl_dw,onverv) brood N(soort,ev,neut) N(eigen,ev,neut) dacht V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) verstond V(trans,ovt,1_of_2_of_3,ev) verklaard V(trans,verl_dw,onverv) gezinsmaaltijd N(soort,ev,neut) JEAN-LOUIS N(eigen,ev,neut) nageoogde V(trans,verl_dw,verv_neut) Westerse Adj(attr,stell,verv_neut) ZuidLimburg N(eigen,ev,neut) begeleid V(trans,verl_dw,onverv) meent V(trans,ott,3,ev) adoptiebeleid N(soort,ev,neut) verdoofd V(trans,verl_dw,onverv) verklaart V(trans,ott,3,ev) broeken N(soort,mv,neut) L'Air N(eigen,ev,neut) brutaliteit N(soort,ev,neut) zielen N(soort,mv,neut) Rijk N(eigen,ev,neut) Rijn N(eigen,ev,neut) Beckman N(eigen,ev,neut) aanvaarden V(trans,inf) V(trans,inf,subst) miljonair N(soort,ev,neut) onderkomen N(soort,ev,neut) krantenproject N(soort,ev,neut) Sparta N(eigen,ev,neut) pitje N(soort,ev,neut) verbonden V(trans,verl_dw,onverv) aangeraakt V(trans,verl_dw,onverv) traditioneel Adj(attr,stell,onverv) ergere Adj(attr,vergr,verv_neut) gebondenheid N(soort,ev,neut) hiernaast Adv(pron,aanw) Sex N(soort,ev,neut) grimmige Adj(attr,stell,verv_neut) Iedere Pron(onbep,neut,attr) uitwegen N(soort,mv,neut) klokslag Adv(gew,geen_func,stell,onverv) papieren Adj(attr,stell,onverv) N(soort,mv,neut) afschuwelijker Adj(attr,vergr,onverv) indien Conj(onder,met_fin) medewerking N(soort,ev,neut) wrijven V(trans,inf) beweren V(trans,inf) plakjes N(soort,mv,neut) motoren N(soort,mv,neut) Natuuuurlijk Adj(adv,stell,onverv) hertogin N(soort,ev,neut) beleefdheid N(soort,ev,neut) vervloekt V(trans,verl_dw,onverv) dunne Adj(attr,stell,verv_neut) zestiende Num(rang,bep,attr,onverv) Num(rang,bep,zelfst,onverv) Erkel N(eigen,ev,neut) Gisteren Adv(gew,geen_func,stell,onverv) Sera N(eigen,ev,neut) zorgvuldiger Adj(attr,vergr,onverv) cijferen V(trans,inf) rijken Adj(zelfst,stell,verv_mv) prof. N(eigen,ev,neut) onberispelijk Adj(attr,stell,onverv) Eigenlijk Adj(adv,stell,onverv) stichting N(soort,ev,neut) opvangen V(trans,inf) rijker Adj(attr,vergr,onverv) spasme N(soort,ev,neut) bezien V(trans,verl_dw,onverv) dergelijk Pron(aanw,neut,attr) pages N(soort,mv,neut) trachtte V(hulp,ovt,1_of_2_of_3,ev) kale Adj(attr,stell,verv_neut) Vorige Adj(attr,stell,verv_neut) leiden V(trans,inf) V(intrans,ott,1_of_2_of_3,mv) verstuurd V(trans,verl_dw,onverv) Revolutie N(soort,ev,neut) flessen N(soort,mv,neut) blijf V(hulp_of_kopp,ott,1,ev) V(intrans,ott,1,ev) leider N(soort,ev,neut) kalm Adj(attr,stell,onverv) hortend V(intrans,teg_dw,onverv) geschriften N(soort,mv,neut) blijk N(soort,ev,neut) stroken N(soort,mv,neut) milligram N(soort,ev,neut) algehele Adj(attr,stell,verv_neut) proef N(soort,ev,neut) Kluns N(eigen,ev,neut) Meighen N(eigen,ev,neut) spier N(soort,ev,neut) Stel V(trans,imp) merkten V(trans,ovt,1_of_2_of_3,mv) mamuthones N(soort,mv,neut) donker Adj(adv,stell,onverv) Adj(attr,stell,onverv) Dus Adv(gew,aanw) Campagnolo N(eigen,ev,neut) vloeimest N(soort,ev,neut) verloop N(soort,ev,neut) verloor V(trans,ovt,1_of_2_of_3,ev) Butler N(soort,ev,neut) uitgaande V(intrans,teg_dw,verv_neut) eigen Pron(aanw,neut,attr,w_eigen) Pron(onbep,neut,attr) Adj(attr,stell,onverv) pnd N(soort,mv,neut) ooit Adv(gew,onbep) pauze N(soort,ev,neut) folkloristisch Adj(attr,stell,onverv) Adj(adv,stell,onverv) Recht-toe Adj(attr,stell,onverv) kranten N(soort,mv,neut) groeien V(intrans,inf) kamp N(soort,ev,neut) Neemt V(trans,ott,3,ev) gekocht V(trans,verl_dw,onverv) huurder N(soort,ev,neut) heersers N(soort,mv,neut) kapsel N(soort,ev,neut) autootje N(soort,ev,neut) ergeren V(refl,inf) gesigneerde V(trans,verl_dw,verv_neut) naartoe Adv(deel_adv) borduurnaald N(soort,ev,neut) nonnen N(soort,mv,neut) wijn-en-spijs-journalisten N(soort,mv,neut) oorspronkelijk Adj(adv,stell,onverv) linie N(soort,ev,neut) probeer V(trans,imp) souvereine N(soort,ev,neut) ambtelijke Adj(attr,stell,verv_neut) terwijl Conj(onder,met_fin) vaders N(soort,mv,neut) nummers N(soort,mv,neut) Seth N(eigen,ev,neut) Beatles N(eigen,mv,neut) meten V(trans,ott,1_of_2_of_3,mv) gesproken V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv) bezitten V(trans,ott,1_of_2_of_3,mv) kookt V(intrans,ott,3,ev) V(intrans,ott,2,ev) leeftijd N(soort,ev,neut) gehandicapte V(trans,verl_dw,verv_neut) lekker Adj(attr,stell,onverv) Adj(adv,stell,onverv) meter N(soort,ev,neut) kang N(soort,ev,neut) Eskimo N(soort,ev,neut) ineens Adv(gew,geen_func,stell,onverv) vuiltje N(soort,ev,neut) vriendinnen N(soort,mv,neut) simplistische Adj(attr,stell,verv_neut) Sir N(soort,ev,neut) Sit N(eigen,ev,neut) geparkeerd V(trans,verl_dw,onverv) pop N(soort,ev,neut) ziekenauto N(soort,ev,neut) Alghero N(eigen,ev,neut) kans N(soort,ev,neut) kant N(soort,ev,neut) pot N(soort,ev,neut) inmiddels Adv(gew,geen_func,stell,onverv) marktaandelen N(soort,mv,neut) meest Adv(gew,geen_func,overtr,onverv) Num(hoofd,onbep,attr,overtr,onverv) Num(hoofd,onbep,zelfst,overtr,onverv) inenten V(intrans,inf) proces N(soort,ev,neut) verwerping N(soort,ev,neut) afgeven V(intrans,inf) braak Adj(attr,stell,onverv) laboratorium N(soort,ev,neut) ontvangst N(soort,ev,neut) misselijkheid N(soort,ev,neut) arsenaal N(soort,ev,neut) t.a.v. Prep(voor) verhoudingen N(soort,mv,neut) Dwars Adj(adv,stell,onverv) rivier N(soort,ev,neut) hoogstens Adv(gew,geen_func,stell,onverv) gelijkvormige Adj(attr,stell,verv_neut) films N(soort,mv,neut) ultrafijne Adj(attr,stell,verv_neut) meespeelden V(intrans,ovt,1_of_2_of_3,mv) beurs N(soort,ev,neut) doorleef V(trans,ott,1,ev) argument N(soort,ev,neut) donderdag N(eigen,ev,neut) liefdadigheid N(soort,ev,neut) konservatieve Adj(attr,stell,verv_neut) Amersfoortse Adj(attr,stell,verv_neut) buik N(soort,ev,neut) Blik N(soort,ev,neut) stellingname N(soort,ev,neut) zitting N(soort,ev,neut) laboranten N(soort,mv,neut) buis N(soort,ev,neut) Heren N(soort,mv,neut) buit N(soort,ev,neut) Turkije N(eigen,ev,neut) verstaan V(trans,inf) fantasie N(soort,ev,neut) passende V(intrans,teg_dw,verv_neut) enclave N(soort,ev,neut) verstaat V(trans,ott,3,ev) links Adv(gew,geen_func,stell,onverv) blind Adj(attr,stell,onverv) buikig Adj(attr,stell,onverv) adjudant N(soort,ev,neut) aankwamen V(intrans,ovt,1_of_2_of_3,mv) schoongewaaid V(intrans,verl_dw,onverv) zoete Adj(attr,stell,verv_neut) afstoting N(soort,ev,neut) Trapp N(eigen,ev,neut) dienst N(soort,ev,neut) N(eigen,ev,neut) Anton N(eigen,ev,neut) feilloze Adj(attr,stell,verv_neut) borden N(soort,mv,neut) ontdekken V(trans,inf) hierheen Adv(pron,aanw) bordes N(soort,ev,neut) Chr. N(eigen,ev,neut) telefoontje N(soort,ev,neut) zingen V(trans,inf) V(intrans,inf) V(trans,ott,1_of_2_of_3,mv) traditionele Adj(attr,stell,verv_neut) buikje N(soort,ev,neut) ambitieus Adj(attr,stell,onverv) bewerkt V(trans,verl_dw,onverv) V(trans,ott,2,ev) fouten N(soort,mv,neut) laatste Adj(attr,overtr,verv_neut) Adj(zelfst,overtr,verv_neut) blijvend V(intrans,teg_dw,onverv) type N(soort,ev,neut) passage N(soort,ev,neut) handfuncties N(soort,mv,neut) avondeten N(soort,ev,neut) doorbraak N(soort,ev,neut) brandend V(intrans,teg_dw,onverv) spijt V(intrans,ott,3,ev) N(soort,ev,neut) opzicht N(soort,ev,neut) impotentie N(soort,ev,neut) kampen V(intrans,inf) geworpen V(trans,verl_dw,onverv) sociaaleconomisch Adj(adv,stell,onverv) ineenstorten V(intrans,inf,subst) getinte Adj(attr,stell,verv_neut) rellen N(soort,mv,neut) sadistisch Adj(attr,stell,onverv) gisting N(soort,ev,neut) ontwikkeling N(soort,ev,neut) rondloopt V(intrans,ott,3,ev) seizoenen N(soort,mv,neut) onbetamelijk Adj(attr,stell,onverv) ingevoerd V(trans,verl_dw,onverv) nadien Adv(gew,aanw) Zolang Conj(onder,met_fin) stemming N(soort,ev,neut) symbolen N(soort,mv,neut) haute-couture N(soort,ev,neut) verzameling N(soort,ev,neut) glimlachende V(intrans,teg_dw,verv_neut) kalend V(intrans,teg_dw,onverv) arresteerde V(trans,ovt,1_of_2_of_3,ev) informeert V(trans,ott,3,ev) hardgekookte Adj(attr,stell,verv_neut) miste V(trans,ovt,1_of_2_of_3,ev) ligging N(soort,ev,neut) lieveling N(soort,ev,neut) obligaties N(soort,mv,neut) Louise N(eigen,ev,neut) pluizenraper N(soort,ev,neut) capituleer V(intrans,ott,1,ev) Complimenteus Adj(attr,stell,onverv) verdienen V(trans,inf) V(trans,ott,1_of_2_of_3,mv) sterveling N(soort,ev,neut) staken V(trans,ovt,1_of_2_of_3,mv) wijten V(trans,inf) Christus N(eigen,ev,neut) Presentatrice N(soort,ev,neut) Pere-Lachaise N(eigen,ev,neut) verwierf V(trans,ovt,1_of_2_of_3,ev) TNO N(eigen,ev,neut) talenten N(soort,mv,neut) overschreden V(trans,verl_dw,onverv) beleefd V(intrans,verl_dw,onverv) Lapland N(eigen,ev,neut) bad V(trans,ovt,1_of_2_of_3,ev) N(soort,ev,neut) leraren N(soort,mv,neut) kast N(soort,ev,neut) aangetroffen V(trans,verl_dw,onverv) vlekkies N(soort,mv,neut) ballingschap N(soort,ev,neut) Rita N(eigen,ev,neut) strafbehoefte N(soort,ev,neut) Boeing N(soort,ev,neut) bak V(trans,imp) Armonada N(eigen,ev,neut) kapsones N(soort,mv,neut) bal N(soort,ev,neut) onvrij Adj(attr,stell,onverv) nalopen V(trans,inf) alsjeblieft Int Adv(gew,geen_func,stell,onverv) beleeft V(trans,ott,3,ev) Gedroogd V(intrans,verl_dw,onverv) voortreffelijk Adj(adv,stell,onverv) bar N(soort,ev,neut) Adj(adv,stell,onverv) raadzaal N(soort,ev,neut) Afgelopen V(intrans,verl_dw,onverv) nachtmerrie N(soort,ev,neut) verkrachtingen N(soort,mv,neut) Sol N(eigen,ev,neut) Son N(eigen,ev,neut) gladde Adj(attr,stell,verv_neut) belangrijker Adj(attr,vergr,onverv) wringen V(trans,inf) waggelt V(intrans,ott,3,ev) muziekinstituut N(soort,ev,neut) terugkwam V(intrans,ovt,1_of_2_of_3,ev) gronden N(soort,mv,neut) onwaarschijnlijk Adj(attr,stell,onverv) Indonesie N(eigen,ev,neut) houding N(soort,ev,neut) verstoort V(trans,ott,3,ev) polio N(soort,ev,neut) Central N(eigen,ev,neut) stokken N(soort,mv,neut) polis N(soort,ev,neut) breken V(intrans,inf) V(trans,inf) iiii Num(hoofd,bep,zelfst,onverv) Nederland N(eigen,ev,neut) april N(eigen,ev,neut) zeuren V(intrans,inf) achterhalen V(trans,inf) wegspoelen V(trans,inf) schaapsherder N(soort,ev,neut) instructie N(soort,ev,neut) Oude N(eigen,ev,neut) spirit N(soort,ev,neut) bordje N(soort,ev,neut) Amerikanen N(soort,mv,neut) Delft N(eigen,ev,neut) gereedschap N(soort,ev,neut) dichtgehouden V(trans,verl_dw,onverv) kauw V(intrans,ott,1,ev) Bijlmermeer N(eigen,ev,neut) haute-finance N(soort,ev,neut) blikken N(soort,mv,neut) Kennelijk Adj(adv,stell,onverv) olifant N(soort,ev,neut) ontmoeten V(trans,inf) V(trans,ott,1_of_2_of_3,mv) Verbondsvergadering N(soort,ev,neut) gesneden V(trans,verl_dw,onverv) thans Adv(gew,geen_func,stell,onverv) Adv(gew,aanw) allerhande Pron(onbep,neut,attr) Plotseling Adj(adv,stell,onverv) schieten V(intrans,inf) foutje N(soort,ev,neut) zinde V(intrans,ovt,1_of_2_of_3,ev) toegediend V(trans,verl_dw,onverv) haring N(soort,ev,neut) oppositieleider N(soort,ev,neut) behelpen V(refl,inf) vroegere Adj(attr,vergr,verv_neut) minderwaardigheidsgevoelens N(soort,mv,neut) Weet V(trans,ott,2,ev) V(intrans,ott,1,ev) meubelplaat N(soort,ev,neut) iemand Pron(onbep,neut,zelfst) individueel Adj(attr,stell,onverv) PARIJS N(eigen,ev,neut) gemist V(trans,verl_dw,onverv) driedimensionaal Adj(adv,stell,onverv) verkochten V(trans,ovt,1_of_2_of_3,mv) openingetje N(soort,ev,neut) secundaire Adj(attr,stell,verv_neut) jongeren Adj(zelfst,vergr,verv_neut) Adj(zelfst,stell,verv_mv) controleren V(trans,inf) overgebracht V(trans,verl_dw,onverv) heide N(soort,ev,neut) Verantwoorde N(eigen,ev,neut) minderjarigen Adj(zelfst,stell,verv_mv) St. N(eigen,ev,neut) reumatische Adj(attr,stell,verv_neut) fotograferende V(intrans,teg_dw,verv_neut) gehaakte V(trans,verl_dw,verv_neut) bed N(soort,ev,neut) da's V(hulp_of_kopp,ott,3,ev) filmscript N(soort,ev,neut) vissen N(soort,mv,neut) V(intrans,inf) bek N(soort,ev,neut) zuchtte V(intrans,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) bel Misc(vreemd) Wanneer Conj(onder,met_fin) Adv(gew,betr) ben V(hulp_of_kopp,ott,1,ev) V(hulp_of_kopp,ott,2,ev) V(intrans,ott,1,ev) Loopt V(intrans,ott,3,ev) pijnloos Adj(adv,stell,onverv) vrouw-vrouw N(soort,ev,neut) gunstiger Adj(attr,vergr,onverv) bepalen V(trans,inf) erbij Adv(pron,onbep) klaagde V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) verbondenheid N(soort,ev,neut) grondig Adj(adv,stell,onverv) Alexander N(eigen,ev,neut) hersencellen N(soort,mv,neut) Corner N(eigen,ev,neut) kistje N(soort,ev,neut) onderwijs N(soort,ev,neut) veertienjarig Adj(attr,stell,onverv) Arend N(eigen,ev,neut) Sta V(intrans,ott,2,ev) passant Misc(vreemd) doodgewone Adj(attr,stell,verv_neut) tamelijk Adv(gew,geen_func,stell,onverv) florissant Adj(attr,stell,onverv) objecten N(soort,mv,neut) Chauvin N(eigen,ev,neut) verwrongen V(trans,verl_dw,onverv) opgevoed V(trans,verl_dw,onverv) consideratie N(soort,ev,neut) reumatisch Adj(attr,stell,onverv) blauwbloedigen Adj(zelfst,stell,verv_mv) advies N(soort,ev,neut) atoomduikboot N(soort,ev,neut) veranda N(soort,ev,neut) begin N(soort,ev,neut) V(trans,ott,1,ev) V(intrans,ott,1,ev) Dreimaderlhaus N(eigen,ev,neut) dagboek N(soort,ev,neut) Vader N(soort,ev,neut) brillen N(soort,mv,neut) biljardairs N(soort,mv,neut) NOS-schakelcentrum N(soort,ev,neut) donzen Adj(attr,stell,onverv) hertrouwde V(intrans,ovt,1_of_2_of_3,ev) geopenbaard V(intrans,verl_dw,onverv) Acifit-ploegleider N(soort,ev,neut) erfelijke Adj(attr,stell,verv_neut) Letter N(soort,ev,neut) vastbindt V(trans,ott,2,ev) rijkdom N(soort,ev,neut) overtreft V(trans,ott,3,ev) Damas N(eigen,ev,neut) predikant N(soort,ev,neut) indenken V(trans,inf) loodje N(soort,ev,neut) eensterre-restaurants N(soort,mv,neut) kenden V(trans,ovt,1_of_2_of_3,mv) chronische Adj(attr,stell,verv_neut) FBO N(eigen,ev,neut) ouderlijk Adj(attr,stell,onverv) vastgezet V(trans,verl_dw,onverv) broedgelegenheid N(soort,ev,neut) galbulten N(soort,mv,neut) bankier N(soort,ev,neut) verscheurd V(trans,verl_dw,onverv) metro N(soort,ev,neut) fantastische Adj(attr,stell,verv_neut) ingehaald V(trans,verl_dw,onverv) ontstegen V(intrans,verl_dw,onverv) Honderden Num(hoofd,bep,attr,onverv) 800 Num(hoofd,bep,attr,onverv) terechtgekomen V(intrans,verl_dw,onverv) Craig N(eigen,ev,neut) TREFFEN V(trans,ott,1_of_2_of_3,mv) ademnood N(soort,ev,neut) brand N(soort,ev,neut) spits N(soort,ev,neut) GrootBrittannie N(eigen,ev,neut) riepen V(trans,ovt,1_of_2_of_3,mv) voortvloeiden V(intrans,ovt,1_of_2_of_3,mv) lakens N(soort,mv,neut) bij Prep(voor) Adv(deel_v) Adv(gew,geen_func,stell,onverv) Adv(deel_adv) reisgezelschap N(soort,ev,neut) stromende V(intrans,teg_dw,verv_neut) portretten N(soort,mv,neut) Boven Prep(voor) Adv(gew,geen_func,stell,onverv) d'r Pron(bez,3,ev,neut,attr) afgeweest V(trans,verl_dw,onverv) verkeersongelukken N(soort,mv,neut) vijzelen V(trans,inf) Picpus N(eigen,ev,neut) kunnen V(hulp,inf) V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) V(trans,inf) V(hulp,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) idylles N(soort,mv,neut) Rhoda N(eigen,ev,neut) suede N(soort,ev,neut) verkeer N(soort,ev,neut) praat V(intrans,ott,1,ev) V(intrans,ott,2,ev) V(intrans,ott,3,ev) Ede N(eigen,ev,neut) gebruiken V(trans,inf) V(trans,ott,1_of_2_of_3,mv) Stadionweg N(eigen,ev,neut) anderen Pron(onbep,neut,zelfst) Dingsda N(eigen,ev,neut) Huyskens N(eigen,ev,neut) winkelen V(intrans,inf) verstand N(soort,ev,neut) tachtig Num(hoofd,bep,attr,onverv) Toetela N(eigen,ev,neut) knikte V(intrans,ovt,1_of_2_of_3,ev) economisch Adj(attr,stell,onverv) Adj(adv,stell,onverv) Duits Adj(zelfst,stell,onverv) Adj(attr,stell,onverv) Cijfers N(soort,mv,neut) doordrinkt V(intrans,ott,3,ev) verleiden V(trans,inf,subst) hoegenaamd Adv(gew,geen_func,stell,onverv) Welk Pron(vrag,neut,zelfst) Perzen N(eigen,ev,neut) Well Misc(vreemd) troffen V(trans,ovt,1_of_2_of_3,mv) slaat-ie V(intrans,ott,3,ev) december N(eigen,ev,neut) landbouw N(soort,ev,neut) solidariteit N(soort,ev,neut) kritische Adj(attr,stell,verv_neut) pikant Adj(attr,stell,onverv) individuele Adj(attr,stell,verv_neut) melodieen N(soort,mv,neut) aanwezige Adj(attr,stell,verv_neut) smerig Adj(attr,stell,onverv) Adj(adv,stell,onverv) allang Adv(gew,geen_func,stell,onverv) rotsen N(soort,mv,neut) Duits-Nederlandse Adj(attr,stell,verv_neut) Chambord N(eigen,ev,neut) aldus Adv(gew,aanw) hurken N(soort,mv,neut) Een Art(onbep,zijd_of_onzijd,neut) Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) dialoog N(soort,ev,neut) medelijden N(soort,ev,neut) mishandeling N(soort,ev,neut) vergoeden V(trans,inf) menigte N(soort,ev,neut) onthouding N(soort,ev,neut) principe N(soort,ev,neut) gehoorzaamden V(trans,ovt,1_of_2_of_3,mv) verbod N(soort,ev,neut) ziekelijke Adj(attr,stell,verv_neut) beschouwd V(trans,verl_dw,onverv) ontsteld Adj(adv,stell,onverv) Delon N(eigen,ev,neut) artikel N(soort,ev,neut) sterrenbeeld N(soort,ev,neut) alleenrecht N(soort,ev,neut) sportnieuws N(soort,ev,neut) handleiding N(soort,ev,neut) Nieuwenhuizen N(eigen,ev,neut) probleem N(soort,ev,neut) beschouwt V(trans,ott,3,ev) Flas N(eigen,ev,neut) organisaties N(soort,mv,neut) reisbureaus N(soort,mv,neut) gevangen V(trans,verl_dw,onverv) nauwelijks Adv(gew,geen_func,stell,onverv) Ergens Adv(pron,onbep) bevat V(trans,ott,3,ev) subliem Adj(attr,stell,onverv) Indian N(eigen,ev,neut) Tommy N(eigen,ev,neut) buitenromp N(soort,ev,neut) vreugde N(soort,ev,neut) voorwerpen N(soort,mv,neut) begon V(hulp,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) gezinsleven N(soort,ev,neut) opgehouden V(trans,verl_dw,onverv) Willem N(eigen,ev,neut) vrij Adj(adv,stell,onverv) Adj(attr,stell,onverv) gedragingen N(soort,mv,neut) begint V(intrans,ott,3,ev) V(hulp,ott,3,ev) soep N(soort,ev,neut) gewone Adj(attr,stell,verv_neut) plan N(soort,ev,neut) kijken V(intrans,inf) V(trans,inf) V(trans,ott,1_of_2_of_3,mv) ontzettende Adj(attr,stell,verv_neut) gebieden N(soort,mv,neut) zulke Pron(aanw,dat,attr) beschreven V(trans,verl_dw,onverv) prolongatie N(soort,ev,neut) plat N(soort,ev,neut) Adj(attr,stell,onverv) geladen V(trans,verl_dw,onverv) Patroni N(eigen,ev,neut) woedt V(intrans,ott,3,ev) verdwenen V(intrans,verl_dw,onverv) V(intrans,ovt,1_of_2_of_3,mv) slaperigheid N(soort,ev,neut) toaalbeeld N(soort,ev,neut) snackbar N(soort,ev,neut) Peinzend V(intrans,teg_dw,onverv) opgedroogd V(intrans,verl_dw,onverv) populariteit N(soort,ev,neut) Jenny N(eigen,ev,neut) hieromtrent Adv(pron,aanw) schitteren V(intrans,inf) Vijf Num(hoofd,bep,attr,onverv) taxichauffeur N(soort,ev,neut) Blaise N(eigen,ev,neut) waargemaakt V(trans,verl_dw,onverv) kneep V(trans,ovt,1_of_2_of_3,ev) stick N(soort,ev,neut) herkende V(trans,ovt,1_of_2_of_3,ev) begonne V(intrans,verl_dw,onverv) gewoon Adj(adv,stell,onverv) Adj(attr,stell,onverv) afknippen V(trans,inf) oproep N(soort,ev,neut) zelfstandigheid N(soort,ev,neut) compromis N(soort,ev,neut) oproer N(soort,ev,neut) Jacobus N(eigen,ev,neut) nodige Adj(attr,stell,verv_neut) bod N(soort,ev,neut) bof N(soort,ev,neut) eigendom N(soort,ev,neut) voorlichting N(soort,ev,neut) restanten N(soort,mv,neut) FIM N(eigen,ev,neut) bom N(soort,ev,neut) bos N(soort,ev,neut) vermoeidheidverschijnselen N(soort,mv,neut) commerciele Adj(attr,stell,verv_neut) Hommes N(eigen,ev,neut) waardoor Adv(pron,betr) Adv(pron,vrag) melkhandelaar N(soort,ev,neut) neem V(trans,imp) V(trans,ott,2,ev) V(trans,ott,1,ev) complex N(soort,ev,neut) gevarieerd V(trans,verl_dw,onverv) geconstateerd V(trans,verl_dw,onverv) neer Adv(deel_v) grondbelasting N(soort,ev,neut) toegedaan V(trans,verl_dw,onverv) Voorzichtig Adj(adv,stell,onverv) tijdverdrijf N(soort,ev,neut) University N(eigen,ev,neut) reisdoel N(soort,ev,neut) behoeven V(hulp,inf) opdoemen V(intrans,inf) Ruime Adj(attr,stell,verv_neut) Burton N(eigen,ev,neut) klokkeluider N(soort,ev,neut) voorbereidselen N(soort,mv,neut) afgelegen Adj(attr,stell,onverv) colleges N(soort,mv,neut) bevel N(soort,ev,neut) Voortaan Adv(gew,geen_func,stell,onverv) Werp V(trans,imp) harmonie N(soort,ev,neut) nabuureiland N(soort,ev,neut) halfslachtigheid N(soort,ev,neut) Indien Conj(onder,met_fin) speciale Adj(attr,stell,verv_neut) Afgaande V(intrans,teg_dw,verv_neut) industrie N(soort,ev,neut) Willie N(eigen,ev,neut) opgevoerd V(trans,verl_dw,onverv) Arabieren N(soort,mv,neut) varkensvlees N(soort,ev,neut) Nieuwjaarsdag N(eigen,ev,neut) schepper N(soort,ev,neut) verwijten N(soort,mv,neut) V(trans,inf) spiraalvormige Adj(attr,stell,verv_neut) zaaks N(soort,ev,gen) maandelijkse Adj(attr,stell,verv_neut) plek N(soort,ev,neut) draden N(soort,mv,neut) West Misc(vreemd) Glans N(soort,ev,neut) bomen N(soort,mv,neut) Elk Pron(onbep,neut,attr) Pron(onbep,neut,zelfst) verschil N(soort,ev,neut) achtergrond N(soort,ev,neut) aarzelt V(intrans,ott,3,ev) behoede V(trans,conj) alsof Conj(onder,met_fin) profeet N(soort,ev,neut) huursom N(soort,ev,neut) revolutiontair N(soort,ev,neut) persagent N(soort,ev,neut) schoonheid N(soort,ev,neut) onvervangbaar Adj(attr,stell,onverv) snufje N(soort,ev,neut) gemutst Adj(attr,stell,onverv) kampementen N(soort,mv,neut) kleuradvies N(soort,ev,neut) opname N(soort,ev,neut) wrange Adj(attr,stell,verv_neut) knorde V(trans,ovt,1_of_2_of_3,ev) flats N(soort,mv,neut) verbreken V(trans,inf) Verbond N(soort,ev,neut) boekenkast N(soort,ev,neut) Psychologen N(soort,mv,neut) Soestdijk N(eigen,ev,neut) Roche N(eigen,ev,neut) nature N(soort,ev,dat) Bardot N(eigen,ev,neut) moeite N(soort,ev,neut) aanzetten V(intrans,inf) lampjes N(soort,mv,neut) technologie N(soort,ev,neut) wijzerplaat N(soort,ev,neut) gunstigst Adj(attr,overtr,onverv) Oosten N(eigen,ev,neut) zwijgen V(intrans,inf) snelheidsovertredingen N(soort,mv,neut) wetten N(soort,mv,neut) Borneo-SumatraHandelmaatschappij N(eigen,ev,neut) Ineens Adv(gew,geen_func,stell,onverv) flauw Adj(attr,stell,onverv) toegezwaaid V(trans,verl_dw,onverv) daarin Adv(pron,aanw) kastekort N(soort,ev,neut) opwinding N(soort,ev,neut) beschikken V(intrans,ott,1_of_2_of_3,mv) V(trans,inf) decor N(soort,ev,neut) behoeft V(hulp,ott,3,ev) V(trans,ott,3,ev) streek V(intrans,ovt,1_of_2_of_3,ev) N(soort,ev,neut) regeringsschijven N(soort,mv,neut) Honderdvijftig Num(hoofd,bep,attr,onverv) tweeenvijftig Num(hoofd,bep,attr,onverv) kralenkransen N(soort,mv,neut) gedwongen V(trans,verl_dw,onverv) streep N(soort,ev,neut) eerbied N(soort,ev,neut) vertederd V(trans,verl_dw,onverv) vlaktes N(soort,mv,neut) gestolen V(trans,verl_dw,onverv) opeenstapeling N(soort,ev,neut) Vietnamese Adj(attr,stell,verv_neut) fantaseerden V(intrans,ovt,1_of_2_of_3,mv) peterselie N(soort,ev,neut) bus N(soort,ev,neut) plannen N(soort,mv,neut) vertelden V(trans,ovt,1_of_2_of_3,mv) V(intrans,ovt,1_of_2_of_3,mv) hoofd N(soort,ev,neut) organisatie N(soort,ev,neut) fornuis N(soort,ev,neut) India N(eigen,ev,neut) muren N(soort,mv,neut) soms Adv(gew,aanw) Adv(gew,geen_func,stell,onverv) stijf Adj(adv,stell,onverv) vermande V(refl,ovt,1_of_2_of_3,ev) geroken V(trans,verl_dw,onverv) relatief Adj(attr,stell,onverv) VVV's N(soort,mv,neut) Jamesy N(eigen,ev,neut) gedoe N(soort,ev,neut) frappante Adj(attr,stell,verv_neut) Indie N(eigen,ev,neut) afhangt V(intrans,ott,3,ev) stijl N(soort,ev,neut) voldoende Pron(onbep,neut,attr) Pron(onbep,neut,zelfst) actrice N(soort,ev,neut) democratie N(soort,ev,neut) kopen V(trans,inf) V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) anderhalf Num(hoofd,bep,attr,onverv) keuzevakken N(soort,mv,neut) televisie N(soort,ev,neut) intelligent Adj(attr,stell,onverv) chaos N(soort,ev,neut) akelige Adj(attr,stell,verv_neut) concentreren V(refl,inf) scala N(soort,ev,neut) gewoonten N(soort,mv,neut) natuur N(soort,ev,neut) girls Misc(vreemd) Marrat N(eigen,ev,neut) derde Num(rang,bep,attr,onverv) intellectuele Adj(attr,stell,verv_neut) eenvoudig Adj(adv,stell,onverv) Adj(attr,stell,onverv) wagens N(soort,mv,neut) tempo N(soort,ev,neut) gebeurtenis N(soort,ev,neut) Omgerekend V(trans,verl_dw,onverv) Amerikaan N(soort,ev,neut) avondwandelingen N(soort,mv,neut) terugtrok V(refl,ovt,1_of_2_of_3,ev) tussentijd N(soort,ev,neut) afstandelijk Adj(attr,stell,onverv) historische Adj(attr,stell,verv_neut) coitus N(soort,ev,neut) 1,80 Num(hoofd,bep,attr,onverv) slechte Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut) naamplaatje N(soort,ev,neut) verrijzen V(intrans,ott,1_of_2_of_3,mv) open Adj(attr,stell,onverv) Verre N(eigen,ev,neut) Adj(attr,stell,verv_neut) Parijse Adj(attr,stell,verv_neut) reclamespot N(soort,ev,neut) steken V(trans,inf) ijverige Adj(attr,stell,verv_neut) winter N(soort,ev,neut) wettig Adj(attr,stell,onverv) slechts Adv(gew,geen_func,stell,onverv) Bloedschande N(soort,ev,neut) gordijnen N(soort,mv,neut) gast-arbeiders N(soort,mv,neut) Gwen N(eigen,ev,neut) tenzij Conj(onder,met_fin) lichtzinnigheid N(soort,ev,neut) Personality N(eigen,ev,neut) garanderen V(trans,inf) 1,90 Num(hoofd,bep,attr,onverv) prille Adj(attr,stell,verv_neut) symbool N(soort,ev,neut) toneel N(soort,ev,neut) verontschuldigingen N(soort,mv,neut) onderduikers N(soort,mv,neut) vreemdeling N(soort,ev,neut) Tweeentwintig Num(hoofd,bep,attr,onverv) gebruikte V(trans,verl_dw,verv_neut) Ten Prep(voor) goudlame N(soort,ev,neut) terloops Adj(adv,stell,onverv) betrof V(trans,ovt,1_of_2_of_3,ev) Kersentuin N(eigen,ev,neut) Niets Pron(onbep,neut,zelfst) openbaar Adj(attr,stell,onverv) daarna Adv(pron,aanw) avonduren N(soort,mv,neut) gediend V(trans,verl_dw,onverv) renteniers N(soort,mv,neut) beleid N(soort,ev,neut) melden V(trans,ott,1_of_2_of_3,mv) bewust Adj(attr,stell,onverv) Adj(adv,stell,onverv) werktuigelijk Adj(adv,stell,onverv) groen-groen N(eigen,ev,neut) vitale Adj(attr,stell,verv_neut) plakken N(soort,mv,neut) voorvaderen N(soort,mv,neut) handiger Adj(attr,vergr,onverv) dierenliefde N(soort,ev,neut) Curacao N(eigen,ev,neut) pianoles N(soort,ev,neut) onzichtbare Adj(attr,stell,verv_neut) Oostenrijk N(eigen,ev,neut) haardvuur N(soort,ev,neut) anticonceptie N(eigen,ev,neut) weemoedig Adj(adv,stell,onverv) Nieuw N(eigen,ev,neut) kopie N(soort,ev,neut) parfum N(soort,ev,neut) beroemdheden N(soort,mv,neut) jachtgeweer N(soort,ev,neut) opmerkelijke Adj(attr,stell,verv_neut) spirituele Adj(attr,stell,verv_neut) besloot V(trans,ovt,1_of_2_of_3,ev) vordering N(soort,ev,neut) daarom Adv(gew,aanw) Klaassenspel N(soort,ev,neut) Crazy N(eigen,ev,neut) tennisbaan N(soort,ev,neut) bespeuren V(trans,inf) daarop Adv(pron,aanw) geschikt Adj(attr,stell,onverv) V(trans,verl_dw,onverv) verknocht Adj(attr,stell,onverv) respect N(soort,ev,neut) goedwillende Adj(attr,stell,verv_neut) Monroe N(eigen,ev,neut) mijn Pron(bez,1,ev,neut,attr) Joegoslavie N(eigen,ev,neut) turkoois Adj(zelfst,stell,onverv) getransformeerde V(trans,verl_dw,verv_neut) zachte Adj(attr,stell,verv_neut) uitgebreid V(trans,verl_dw,onverv) recht N(soort,ev,neut) Adj(adv,stell,onverv) kopje N(soort,ev,neut) bezeten Adj(adv,stell,onverv) V(trans,verl_dw,onverv) centimeters N(soort,mv,neut) actrices N(soort,mv,neut) hetgeen Pron(betr,neut,zelfst) schreien V(trans,ott,1_of_2_of_3,mv) gespecialiseerd V(refl,verl_dw,onverv) The N(eigen,ev,neut) N(eigen,mv,neut) wenst V(trans,ott,3,ev) V(trans,ott,2,ev) soorten N(soort,mv,neut) onzin N(soort,ev,neut) wetenschappelijk Adj(attr,stell,onverv) Adj(adv,stell,onverv) Eva N(eigen,ev,neut) roemrucht Adj(attr,stell,onverv) noemden V(trans,ovt,1_of_2_of_3,mv) v.Rh. N(eigen,ev,neut) monteren V(trans,inf) schoonmaak N(soort,ev,neut) pedofiel N(soort,ev,neut) overigens Adv(gew,geen_func,stell,onverv) belevenissen N(soort,mv,neut) daarentegen Adv(gew,geen_func,stell,onverv) stipt Adj(adv,stell,onverv) torsen V(trans,inf) wennen V(intrans,inf) copulatie N(soort,ev,neut) zilvergrijs Adj(attr,stell,onverv) Grootpa N(soort,ev,neut) Iemand Pron(onbep,neut,zelfst) mild Adj(attr,stell,onverv) Daarover Adv(pron,aanw) beenspieren N(soort,mv,neut) gesteund V(trans,verl_dw,onverv) afmaken V(trans,inf) magie N(soort,ev,neut) maatschappijen N(soort,mv,neut) min. N(soort,mv,neut) vervolgens Adv(gew,geen_func,stell,onverv) Yersey N(eigen,ev,neut) Produkten N(soort,mv,neut) klimrozen N(soort,mv,neut) slanke Adj(attr,stell,verv_neut) temidden Adv(gew,geen_func,stell,onverv) plaatje N(soort,ev,neut) beslissen V(intrans,inf) V(trans,inf) Caraibische Adj(attr,stell,verv_neut) Tja Int verliezen V(trans,inf) V(intrans,inf) V(trans,ott,1_of_2_of_3,mv) Greene N(eigen,ev,neut) zweer V(trans,ott,1,ev) Johnson N(eigen,ev,neut) zweet N(soort,ev,neut) Katherine N(eigen,ev,neut) uitgestorven V(intrans,verl_dw,onverv) streng Adj(attr,stell,onverv) Adj(adv,stell,onverv) balletgeschiedenis N(soort,ev,neut) dertien- Adj(attr,stell,onverv) Ratsma N(eigen,ev,neut) leeuwendeel N(soort,ev,neut) zigeunervrouw N(soort,ev,neut) nest N(soort,ev,neut) musicals N(soort,mv,neut) dunner Adj(attr,vergr,onverv) verbrijzeld V(trans,verl_dw,onverv) vleespasteitje N(soort,ev,neut) levensduur N(soort,ev,neut) emoties N(soort,mv,neut) stijve Adj(attr,stell,verv_neut) kerstboom N(soort,ev,neut) dreiging N(soort,ev,neut) weiden N(soort,mv,neut) adverteerders N(soort,mv,neut) minirokken N(soort,mv,neut) bloemetje N(soort,ev,neut) aangifte N(soort,ev,neut) benaderbaar Adj(attr,stell,onverv) schoonzicht N(soort,ev,neut) presidente N(soort,ev,neut) jaartje N(soort,ev,neut) haast-je-rep-jehuwelijk N(soort,ev,neut) Deur N(soort,ev,neut) boeiende V(intrans,teg_dw,verv_neut) voorstellingen N(soort,mv,neut) ratten N(soort,mv,neut) Eilanden N(eigen,mv,neut) herenkleding N(soort,ev,neut) grenzen N(soort,mv,neut) V(intrans,ott,1_of_2_of_3,mv) eigenheimer N(soort,ev,neut) inrichting N(soort,ev,neut) duidde V(trans,ovt,1_of_2_of_3,ev) Sterker Adj(attr,vergr,onverv) Misschien Adv(gew,geen_func,stell,onverv) Limburg N(eigen,ev,neut) Jules N(eigen,ev,neut) veelsoortige Adj(attr,stell,verv_neut) gedaan V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv) ramadan N(soort,ev,neut) aarde N(soort,ev,neut) aanknopen V(trans,inf) inzicht N(soort,ev,neut) blindedarm N(soort,ev,neut) Belgisch Adj(attr,stell,onverv) sonde N(soort,ev,neut) zusterhuis N(soort,ev,neut) beslaan V(trans,ott,1_of_2_of_3,mv) tijden N(soort,mv,neut) voortkomen V(intrans,ott,1_of_2_of_3,mv) moderne Adj(attr,stell,verv_neut) tegenstanders N(soort,mv,neut) argwanender Adj(attr,vergr,onverv) neus N(soort,ev,neut) uitgangspunt N(soort,ev,neut) belevings- N(soort,mv,neut) Carola N(eigen,ev,neut) Rotterdam N(eigen,ev,neut) geringer Adj(attr,vergr,onverv) Hoofd-van-de-Dienst N(soort,ev,neut) kamelen N(soort,mv,neut) duiden V(trans,inf) V(intrans,ott,1_of_2_of_3,mv) prachtige Adj(attr,stell,verv_neut) stalde V(trans,ovt,1_of_2_of_3,ev) onlangs Adv(gew,geen_func,stell,onverv) waardelozer Adj(attr,vergr,onverv) autoriteiten N(soort,mv,neut) ondergeschikte Adj(attr,stell,verv_neut) uitgevallen V(intrans,verl_dw,onverv) werksters N(soort,mv,neut) Ziet V(trans,ott,2,ev) peinzen V(intrans,ott,1_of_2_of_3,mv) vrienden N(soort,mv,neut) voornamelijk Adv(gew,geen_func,stell,onverv) verpakt V(trans,verl_dw,onverv) geconsumeerd V(trans,verl_dw,onverv) smartlapen N(soort,mv,neut) tinteling N(soort,ev,neut) akte N(soort,ev,neut) bevallen V(intrans,inf) beschrijven V(trans,inf) Vogelaars N(eigen,ev,neut) gespaard V(trans,verl_dw,onverv) Guerrero N(eigen,ev,neut) kruisbes N(soort,ev,neut) bedenken V(trans,inf) V(trans,inf,subst) V(refl,inf) Hoogendijk N(eigen,ev,neut) plus Conj(onder,met_fin) naieve Adj(attr,stell,verv_neut) genoemd V(trans,verl_dw,onverv) hoorn N(soort,ev,neut) Fantastisch Adj(attr,stell,onverv) Ijssel N(eigen,ev,neut) boeken N(soort,mv,neut) V(trans,inf) Kunnen V(intrans,ott,1_of_2_of_3,mv) V(hulp,ott,1_of_2_of_3,mv) hardnekkig Adj(adv,stell,onverv) d'Indy N(eigen,ev,neut) hoort V(intrans,ott,3,ev) V(trans,ott,2,ev) cognac N(soort,ev,neut) Zoals Conj(onder,met_fin) verdiepingen N(soort,mv,neut) onverwoestbare Adj(attr,stell,verv_neut) burger N(soort,ev,neut) meewerken V(intrans,inf) client N(soort,ev,neut) lepel N(soort,ev,neut) qua Prep(voor) natuurlijk Adj(adv,stell,onverv) Adj(attr,stell,onverv) Romeins Adj(zelfst,stell,onverv) anjers N(soort,mv,neut) aanhoren V(trans,inf) Tom N(eigen,ev,neut) tegenvallen V(intrans,inf) Top N(soort,ev,neut) Hebt V(hulp,ott,2,ev) V(trans,ott,2,ev) O'Hara N(eigen,ev,neut) songs N(soort,mv,neut) Tot Prep(voor) bevonden V(refl,verl_dw,onverv) scholieren N(eigen,ev,neut) N(soort,mv,neut) toegesnelde V(intrans,verl_dw,verv_neut) Doetichem N(eigen,ev,neut) hinderlijke Adj(attr,stell,verv_neut) politicus N(soort,ev,neut) Laurent N(eigen,ev,neut) oogmake-up N(soort,ev,neut) Deze Pron(aanw,neut,attr) Pron(aanw,neut,zelfst) speelt V(trans,ott,3,ev) V(intrans,ott,3,ev) V(intrans,ott,2,ev) duurden V(intrans,ovt,1_of_2_of_3,mv) leefde V(intrans,ovt,1_of_2_of_3,ev) Vaste Adj(attr,stell,verv_neut) duurder Adj(attr,vergr,onverv) gaten N(soort,mv,neut) Moet V(intrans,ott,3,ev) V(hulp,ott,2,ev) voorkomend V(intrans,teg_dw,onverv) Zaken N(eigen,mv,neut) N(soort,mv,neut) godsdienst N(soort,ev,neut) opofferen V(trans,inf) zwerfkat N(soort,ev,neut) bekvechten V(intrans,inf) voorspellende V(trans,teg_dw,verv_neut) getiteld Adj(attr,stell,onverv) amper Adv(gew,geen_func,stell,onverv) mist N(soort,ev,neut) V(intrans,ott,3,ev) red. N(soort,ev,neut) Duitsers N(soort,mv,neut) aansluiting N(soort,ev,neut) uitdelen V(trans,inf) weemoed N(soort,ev,neut) kopse Adj(attr,stell,verv_neut) adrenaline-injectie N(soort,ev,neut) gerucht N(soort,ev,neut) Daarnaast Adv(pron,aanw) portier N(soort,ev,neut) Borsen N(eigen,ev,neut) Jacobs N(eigen,ev,neut) porties N(soort,mv,neut) tijdje N(soort,ev,neut) handschrift N(soort,ev,neut) bijspijkeren V(trans,inf) vreemdsoortig Adj(attr,stell,onverv) gemakzucht N(soort,ev,neut) MEISJE N(soort,ev,neut) tante N(soort,ev,neut) kopend V(trans,teg_dw,onverv) mascotte N(soort,ev,neut) coupures N(soort,mv,neut) kijkt V(intrans,ott,3,ev) V(intrans,ott,2,ev) stimuleren V(trans,inf,subst) dicht Adv(gew,geen_func,stell,onverv) Adj(attr,stell,onverv) mits Conj(onder,met_fin) beticht V(refl,verl_dw,onverv) smerigheid N(soort,ev,neut) geleden Adv(gew,geen_func,stell,onverv) Papa's N(eigen,mv,neut) hanteren V(trans,inf) vriendin N(soort,ev,neut) landschappen N(soort,mv,neut) etcetera Adv(gew,geen_func,stell,onverv) infecties N(soort,mv,neut) 6-jarigen Adj(zelfst,stell,verv_mv) gedroeg V(refl,ovt,1_of_2_of_3,ev) ================================================ FILE: lib/natural/brill_pos_tagger/data/Dutch/brill_Lexicon.json ================================================ { "1": [ "Num(hoofd,bep,attr,onverv)", "N(eigen,ev,neut)", "N(soort,ev,neut)", "Num(hoofd,bep,zelfst,onverv)" ], "2": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "3": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "4": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "5": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "6": [ "Num(hoofd,bep,attr,onverv)" ], "7": [ "Num(hoofd,bep,attr,onverv)" ], "8": [ "Num(hoofd,bep,attr,onverv)" ], "9": [ "Num(hoofd,bep,attr,onverv)" ], "10": [ "Num(hoofd,bep,attr,onverv)" ], "11": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "12": [ "Num(hoofd,bep,attr,onverv)" ], "13": [ "Num(hoofd,bep,attr,onverv)", "N(eigen,ev,neut)" ], "14": [ "Num(hoofd,bep,attr,onverv)" ], "15": [ "Num(hoofd,bep,attr,onverv)" ], "17": [ "Num(hoofd,bep,attr,onverv)" ], "18": [ "Num(hoofd,bep,attr,onverv)", "N(eigen,ev,neut)" ], "19": [ "Num(hoofd,bep,attr,onverv)" ], "20": [ "Num(hoofd,bep,attr,onverv)", "N(soort,mv,neut)" ], "21": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "22": [ "Num(hoofd,bep,attr,onverv)" ], "23": [ "Num(hoofd,bep,attr,onverv)" ], "24": [ "Num(hoofd,bep,attr,onverv)" ], "25": [ "Num(hoofd,bep,attr,onverv)" ], "26": [ "Num(hoofd,bep,attr,onverv)" ], "27": [ "Num(hoofd,bep,attr,onverv)" ], "29": [ "Num(hoofd,bep,zelfst,onverv)" ], "30": [ "Num(hoofd,bep,attr,onverv)" ], "31": [ "Num(hoofd,bep,attr,onverv)" ], "36": [ "Num(hoofd,bep,attr,onverv)" ], "39": [ "Num(hoofd,bep,zelfst,onverv)" ], "40": [ "Num(hoofd,bep,attr,onverv)" ], "41": [ "Num(hoofd,bep,zelfst,onverv)" ], "42": [ "Num(hoofd,bep,attr,onverv)" ], "45": [ "Num(hoofd,bep,zelfst,onverv)", "Num(hoofd,bep,attr,onverv)" ], "46": [ "Num(hoofd,bep,attr,onverv)" ], "50": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "51": [ "Num(hoofd,bep,zelfst,onverv)" ], "53": [ "Num(hoofd,bep,attr,onverv)" ], "56": [ "Num(hoofd,bep,zelfst,onverv)", "Num(hoofd,bep,attr,onverv)" ], "57": [ "Num(hoofd,bep,zelfst,onverv)" ], "59": [ "Num(hoofd,bep,zelfst,onverv)" ], "60": [ "Num(hoofd,bep,attr,onverv)" ], "65": [ "Num(hoofd,bep,zelfst,onverv)", "Num(hoofd,bep,attr,onverv)" ], "67": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "70": [ "Num(hoofd,bep,attr,onverv)" ], "72": [ "Num(hoofd,bep,attr,onverv)" ], "74": [ "Num(hoofd,bep,attr,onverv)" ], "80": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "81": [ "Num(hoofd,bep,attr,onverv)" ], "82": [ "Num(hoofd,bep,attr,onverv)" ], "93": [ "Num(hoofd,bep,attr,onverv)" ], "95": [ "Num(hoofd,bep,attr,onverv)" ], "99": [ "Num(hoofd,bep,attr,onverv)" ], "100": [ "Num(hoofd,bep,attr,onverv)", "N(eigen,ev,neut)" ], "104": [ "Num(hoofd,bep,attr,onverv)" ], "107": [ "Num(hoofd,bep,zelfst,onverv)" ], "120": [ "Num(hoofd,bep,attr,onverv)" ], "121": [ "Num(hoofd,bep,attr,onverv)" ], "147": [ "Num(hoofd,bep,zelfst,onverv)" ], "150": [ "Num(hoofd,bep,attr,onverv)" ], "180": [ "Num(hoofd,bep,attr,onverv)" ], "200": [ "Num(hoofd,bep,attr,onverv)" ], "220": [ "Num(hoofd,bep,attr,onverv)" ], "226": [ "Num(hoofd,bep,attr,onverv)" ], "250": [ "Num(hoofd,bep,attr,onverv)" ], "253": [ "Num(hoofd,bep,attr,onverv)" ], "280": [ "Num(hoofd,bep,attr,onverv)" ], "300": [ "Num(hoofd,bep,attr,onverv)" ], "320": [ "Num(hoofd,bep,attr,onverv)" ], "325": [ "Num(hoofd,bep,attr,onverv)" ], "384": [ "Num(hoofd,bep,zelfst,onverv)" ], "400": [ "Num(hoofd,bep,attr,onverv)" ], "444": [ "Num(hoofd,bep,attr,onverv)" ], "520": [ "Num(hoofd,bep,attr,onverv)" ], "600": [ "Num(hoofd,bep,attr,onverv)" ], "700": [ "Num(hoofd,bep,attr,onverv)" ], "719": [ "N(eigen,ev,neut)" ], "747": [ "Num(hoofd,bep,zelfst,onverv)" ], "800": [ "Num(hoofd,bep,attr,onverv)" ], "1000": [ "Num(hoofd,bep,attr,onverv)" ], "1200": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "1300": [ "Num(hoofd,bep,attr,onverv)" ], "1700": [ "Num(hoofd,bep,zelfst,onverv)" ], "1781": [ "Num(hoofd,bep,zelfst,onverv)" ], "1823": [ "Num(hoofd,bep,zelfst,onverv)" ], "1824": [ "Num(hoofd,bep,zelfst,onverv)" ], "1837": [ "Num(hoofd,bep,zelfst,onverv)" ], "1875": [ "Num(hoofd,bep,zelfst,onverv)" ], "1896": [ "Num(hoofd,bep,zelfst,onverv)" ], "1910": [ "Num(hoofd,bep,zelfst,onverv)" ], "1913": [ "Num(hoofd,bep,zelfst,onverv)" ], "1929": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "1930": [ "Num(hoofd,bep,zelfst,onverv)", "Num(hoofd,bep,attr,onverv)" ], "1940": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "1942": [ "Num(hoofd,bep,zelfst,onverv)" ], "1943": [ "Num(hoofd,bep,zelfst,onverv)" ], "1944": [ "Num(hoofd,bep,zelfst,onverv)" ], "1945": [ "Num(hoofd,bep,attr,onverv)" ], "1949": [ "Num(hoofd,bep,zelfst,onverv)" ], "1955": [ "Num(hoofd,bep,zelfst,onverv)" ], "1957": [ "Num(hoofd,bep,zelfst,onverv)", "Num(hoofd,bep,attr,onverv)" ], "1958": [ "Num(hoofd,bep,attr,onverv)" ], "1959": [ "Num(hoofd,bep,zelfst,onverv)" ], "1960": [ "Num(hoofd,bep,zelfst,onverv)" ], "1961": [ "Num(hoofd,bep,zelfst,onverv)" ], "1962": [ "Num(hoofd,bep,zelfst,onverv)" ], "1963": [ "Num(hoofd,bep,zelfst,onverv)" ], "1964": [ "Num(hoofd,bep,zelfst,onverv)", "Num(hoofd,bep,attr,onverv)" ], "1965": [ "Num(hoofd,bep,zelfst,onverv)" ], "1967": [ "Num(hoofd,bep,zelfst,onverv)" ], "1968": [ "Num(hoofd,bep,zelfst,onverv)" ], "1969": [ "Num(hoofd,bep,zelfst,onverv)" ], "1970": [ "Num(hoofd,bep,zelfst,onverv)", "Num(hoofd,bep,attr,onverv)" ], "1971": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "1975": [ "Num(hoofd,bep,zelfst,onverv)" ], "2200": [ "Num(hoofd,bep,attr,onverv)" ], "3000": [ "Num(hoofd,bep,zelfst,onverv)" ], "3500": [ "Num(hoofd,bep,attr,onverv)" ], "6000": [ "Num(hoofd,bep,attr,onverv)" ], "7101": [ "Num(hoofd,bep,zelfst,onverv)" ], "7102": [ "Num(hoofd,bep,zelfst,onverv)" ], "nijptangen": [ "N(soort,mv,neut)" ], "afhankelijk": [ "Adj(attr,stell,onverv)" ], "Over": [ "Prep(voor)" ], "partisanenster": [ "N(soort,ev,neut)" ], "overtuigd": [ "V(trans,verl_dw,onverv)" ], "bruine": [ "Adj(attr,stell,verv_neut)" ], "imitatie": [ "N(soort,ev,neut)" ], "kreeg": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "ongenoegen": [ "N(soort,ev,neut)" ], "Heel": [ "Adv(gew,geen_func,stell,onverv)" ], "precies": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "rede": [ "N(soort,ev,neut)" ], "Zijn": [ "Pron(bez,3,ev,neut,attr)", "V(hulp_of_kopp,ott,1_of_2_of_3,mv)" ], "toegetakeld": [ "V(trans,verl_dw,onverv)" ], "bestaande": [ "V(intrans,teg_dw,verv_neut)" ], "repertoire": [ "N(soort,ev,neut)" ], "Heer": [ "N(soort,ev,neut)" ], "opslag": [ "N(soort,ev,neut)" ], "overtuigt": [ "V(trans,ott,3,ev)" ], "radio": [ "N(soort,ev,neut)" ], "kreet": [ "N(soort,ev,neut)" ], "Begint": [ "V(hulp,ott,2,ev)" ], "plaatse": [ "N(soort,ev,dat)" ], "!": [ "Punc(uitroep)", "N(soort,mv,neut)" ], "Lutherse": [ "Adj(attr,stell,verv_neut)" ], "buigzaamheid": [ "N(soort,ev,neut)" ], "\"": [ "Punc(aanhaal_dubb)" ], "%": [ "N(soort,ev,neut)" ], "Tegelse": [ "Adj(attr,stell,verv_neut)" ], "&": [ "N(eigen,ev,neut)" ], "binden": [ "V(trans,inf)" ], "cel": [ "N(soort,ev,neut)" ], "(": [ "Punc(haak_open)" ], "vakantiebesteding": [ "N(soort,ev,neut)" ], ")": [ "Punc(haak_sluit)" ], "gieren": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "specialist": [ "N(soort,ev,neut)" ], "Woody": [ "N(eigen,ev,neut)" ], ",": [ "Punc(komma)", "N(eigen,ev,neut)" ], "gestreefd": [ "V(intrans,verl_dw,onverv)" ], "-": [ "Punc(ligg_streep)" ], ".": [ "Punc(punt)" ], "DSRV's": [ "N(soort,mv,neut)" ], "/": [ "Punc(schuin_streep)" ], "reed": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "uitgescholden": [ "V(trans,verl_dw,onverv)" ], "Sibyl": [ "N(eigen,ev,neut)" ], "bestemming": [ "N(soort,ev,neut)" ], "boekje": [ "N(soort,ev,neut)", "N(eigen,ev,neut)" ], "tevoren": [ "Adv(gew,geen_func,stell,onverv)" ], "toegelaten": [ "V(trans,verl_dw,onverv)" ], ":": [ "Punc(dubb_punt)" ], ";": [ "Punc(punt_komma)" ], "koper-": [ "N(soort,ev,neut)" ], "rapporten": [ "N(soort,mv,neut)" ], "aandoenlijkheid": [ "N(soort,ev,neut)" ], "?": [ "Punc(vraag)" ], "rees": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "rijbevoegdheid": [ "N(soort,ev,neut)" ], "aanslag": [ "N(soort,ev,neut)" ], "@": [ "Misc(symbool)" ], "hoeverre": [ "Adv(gew,betr)" ], "Porsche": [ "N(eigen,ev,neut)" ], "B": [ "Num(hoofd,bep,attr,onverv)" ], "FRANSE": [ "Adj(attr,stell,verv_neut)" ], "C": [ "Num(hoofd,bep,attr,onverv)" ], "knotwilgen": [ "N(soort,mv,neut)" ], "G": [ "N(eigen,ev,neut)" ], "aanvoer": [ "N(soort,ev,neut)" ], "I": [ "Misc(vreemd)" ], "Gewoon": [ "Adj(adv,stell,onverv)" ], "gestegen": [ "V(intrans,verl_dw,onverv)" ], "overgeleverd": [ "V(trans,verl_dw,onverv)" ], "gram": [ "N(soort,ev,neut)" ], "aangeven": [ "V(trans,inf)" ], "L": [ "N(soort,ev,neut)" ], "opbelde": [ "V(intrans,ovt,1_of_2_of_3,ev)", "V(trans,ovt,1_of_2_of_3,ev)" ], "verplichte": [ "V(trans,verl_dw,verv_neut)" ], "O": [ "Int" ], "grap": [ "N(soort,ev,neut)" ], "Q": [ "N(soort,ev,neut)" ], "Weitz": [ "N(eigen,ev,neut)" ], "gras": [ "N(soort,ev,neut)" ], "R": [ "N(soort,ev,neut)" ], "verschijning": [ "N(soort,ev,neut)" ], "S": [ "N(eigen,ev,neut)", "N(soort,ev,neut)" ], "reactie": [ "N(soort,ev,neut)" ], "U": [ "Pron(per,2,ev,nom)" ], "geexperimenteerd": [ "V(trans,verl_dw,onverv)" ], "comfortabel": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "spijsverteren": [ "V(intrans,inf)" ], "genoten": [ "V(trans,verl_dw,onverv)", "V(trans,ovt,1_of_2_of_3,mv)" ], "XIII-stijl": [ "N(soort,ev,neut)" ], "koffertje": [ "N(soort,ev,neut)" ], "proberen": [ "V(hulp,inf)", "V(trans,inf)", "V(hulp,ott,1_of_2_of_3,mv)", "V(trans,ott,1_of_2_of_3,mv)" ], "reebout": [ "N(soort,ev,neut)" ], "dichtslibben": [ "V(intrans,inf,subst)" ], "lossen": [ "V(trans,inf)" ], "a": [ "Prep(voor)", "Misc(vreemd)" ], "d": [ "Num(hoofd,bep,zelfst,onverv)" ], "Paramaribo": [ "N(eigen,ev,neut)" ], "losser": [ "Adj(attr,vergr,onverv)" ], "Gibb": [ "N(eigen,ev,neut)" ], "deugdelijke": [ "Adj(attr,stell,verv_neut)" ], "g": [ "N(soort,ev,neut)" ], "i": [ "N(eigen,ev,neut)" ], "GAP": [ "N(eigen,ev,neut)" ], "bergland": [ "N(soort,ev,neut)" ], "doorkreeg": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "n": [ "N(soort,ev,neut)" ], "Eltman": [ "N(eigen,ev,neut)" ], "keken": [ "V(trans,ovt,1_of_2_of_3,mv)", "V(intrans,ovt,1_of_2_of_3,mv)" ], "Frankrijk": [ "N(eigen,ev,neut)" ], "u": [ "Pron(per,2,ev,nom)" ], "x": [ "Punc(maal)" ], "bouwen": [ "V(trans,inf)" ], "Beschadigd": [ "V(trans,verl_dw,onverv)" ], "fietsers": [ "N(soort,mv,neut)" ], "voorbaat": [ "N(soort,ev,neut)" ], "sales-manager": [ "N(soort,ev,neut)" ], "prefereer": [ "V(trans,ott,1,ev)" ], "kruispunten": [ "N(soort,mv,neut)" ], "accu's": [ "N(soort,mv,neut)" ], "familieleven": [ "N(soort,ev,neut)" ], "politie": [ "N(soort,ev,neut)" ], "gemengde": [ "V(trans,verl_dw,verv_neut)" ], "woonruimte": [ "N(soort,ev,neut)" ], "waterpokken": [ "N(soort,mv,neut)" ], "gegeven": [ "V(trans,verl_dw,onverv)", "N(soort,ev,neut)" ], "maanlandschap": [ "N(soort,ev,neut)" ], "openbare": [ "Adj(attr,stell,verv_neut)" ], "Maitena": [ "N(eigen,ev,neut)" ], "bloederziekte": [ "N(soort,ev,neut)" ], "ministerssteek": [ "N(soort,ev,neut)" ], "invloed": [ "N(soort,ev,neut)" ], "jullie": [ "Pron(per,2,mv,dat_of_acc)", "Pron(per,2,mv,nom)" ], "Bogarde": [ "N(eigen,ev,neut)" ], "ploegdiscipline": [ "N(soort,ev,neut)" ], "verwarming": [ "N(soort,ev,neut)" ], "instemming": [ "N(soort,ev,neut)" ], "Poema-schoenen": [ "N(soort,mv,neut)" ], "baby's": [ "N(soort,mv,neut)" ], "vastbeslotenheid": [ "N(soort,ev,neut)" ], "span": [ "V(trans,imp)" ], "liefdes": [ "N(soort,mv,neut)" ], "uitgewerkt": [ "V(trans,verl_dw,onverv)" ], "conferentie": [ "N(soort,ev,neut)" ], "concrete": [ "Adj(attr,stell,verv_neut)" ], "naderende": [ "V(intrans,teg_dw,verv_neut)" ], "ruitje": [ "N(soort,ev,neut)" ], "verjaardag": [ "N(soort,ev,neut)" ], "reis": [ "N(soort,ev,neut)" ], "ober": [ "N(soort,ev,neut)" ], "geboycot": [ "V(trans,verl_dw,onverv)" ], "Eerst": [ "Adj(adv,vergr,onverv)", "Adv(gew,geen_func,stell,onverv)" ], "rakker": [ "N(soort,ev,neut)" ], "Kuyper": [ "N(eigen,ev,neut)" ], "onherkenbaar": [ "Adj(attr,stell,onverv)" ], "luisteraar": [ "N(soort,ev,neut)" ], "bewerkstelligen": [ "V(trans,inf)" ], "wolf": [ "N(soort,ev,neut)" ], "samenhang": [ "N(soort,ev,neut)" ], "taxilichten": [ "N(soort,mv,neut)" ], "betreden": [ "V(trans,verl_dw,onverv)", "V(trans,ott,1_of_2_of_3,mv)" ], "wolk": [ "N(soort,ev,neut)" ], "gezicht": [ "N(soort,ev,neut)" ], "deden": [ "V(trans,ovt,1_of_2_of_3,mv)", "V(intrans,ovt,1_of_2_of_3,mv)", "V(hulp,ovt,1_of_2_of_3,mv)" ], "uitsterven": [ "V(intrans,inf,subst)" ], "ontkomen": [ "V(intrans,inf)" ], "Krekelberg": [ "N(eigen,ev,neut)" ], "royaal": [ "Adj(attr,stell,onverv)" ], "Giet": [ "V(trans,imp)" ], "trachtend": [ "V(hulp_of_kopp,teg_dw,onverv)" ], "tekende": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Onoordeelkundig": [ "Adj(adv,stell,onverv)" ], "Mond": [ "N(soort,ev,neut)" ], "Bewoont": [ "V(trans,ott,3,ev)" ], "mededeling": [ "N(soort,ev,neut)" ], "benoemde": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(refl,ovt,1_of_2_of_3,ev)" ], "bouwstijlen": [ "N(soort,mv,neut)" ], "verbaasd": [ "V(trans,verl_dw,onverv)" ], "staarden": [ "V(intrans,ovt,1_of_2_of_3,mv)", "V(trans,ovt,1_of_2_of_3,mv)" ], "mevrouw": [ "N(soort,ev,neut)" ], "leesbaar": [ "Adj(attr,stell,onverv)" ], "zoute": [ "Adj(attr,stell,verv_neut)" ], "verweven": [ "V(trans,verl_dw,onverv)" ], "Althans": [ "Adv(gew,geen_func,stell,onverv)" ], "Twiggy": [ "N(eigen,ev,neut)" ], "beatband": [ "N(soort,ev,neut)" ], "kosteloze": [ "Adj(attr,stell,verv_neut)" ], "stelling": [ "N(soort,ev,neut)" ], "kersen": [ "N(soort,mv,neut)" ], "onderwijzer": [ "N(soort,ev,neut)" ], "Daarin": [ "Adv(pron,aanw)" ], "tenen": [ "N(soort,mv,neut)" ], "dankbaar": [ "Adj(attr,stell,onverv)" ], "tekenen": [ "V(intrans,inf)" ], "Libelle-bruidspaar": [ "N(soort,ev,neut)" ], "niet-materiele": [ "Adj(attr,stell,verv_neut)" ], "mantel": [ "N(soort,ev,neut)" ], "sfeer": [ "N(soort,ev,neut)" ], "Mooi": [ "Adj(attr,stell,onverv)" ], "wond": [ "V(refl,ovt,1_of_2_of_3,ev)" ], "doch": [ "Conj(neven)" ], "Bergers": [ "N(eigen,ev,neut)" ], "Street": [ "N(eigen,ev,neut)" ], "overlas": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "ontberingssituaties": [ "N(soort,mv,neut)" ], "slingert": [ "V(refl,ott,3,ev)" ], "gietharsversiering": [ "N(soort,ev,neut)" ], "dergelijke": [ "Pron(aanw,dat,attr)" ], "genoodzaakt": [ "V(trans,verl_dw,onverv)" ], "ervaring": [ "N(soort,ev,neut)" ], "Pieterse": [ "N(eigen,ev,neut)" ], "koolbladeren": [ "N(soort,mv,neut)" ], "waarschijnlijk": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "juli": [ "N(eigen,ev,neut)" ], "naliet": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "geeft": [ "V(trans,ott,3,ev)" ], "dode": [ "Adj(attr,stell,verv_neut)" ], "stichten": [ "V(trans,inf)" ], "medewerker": [ "N(soort,ev,neut)" ], "dergelijks": [ "Pron(aanw,gen,attr)" ], "ziekenfondspakket": [ "N(soort,ev,neut)" ], "spek": [ "N(soort,ev,neut)" ], "romantiek": [ "N(soort,ev,neut)" ], "spel": [ "N(soort,ev,neut)" ], "kreng": [ "N(soort,ev,neut)" ], "chirurgie": [ "N(soort,ev,neut)" ], "vermoedt": [ "V(trans,ott,3,ev)" ], "Henk": [ "N(eigen,ev,neut)" ], "minstens": [ "Adv(gew,geen_func,stell,onverv)" ], "woon": [ "V(intrans,ott,1,ev)" ], "logische": [ "Adj(attr,stell,verv_neut)" ], "gebied": [ "N(soort,ev,neut)" ], "ongerief": [ "N(soort,ev,neut)" ], "uittorenend": [ "Adj(attr,stell,onverv)" ], "maagdelijke": [ "Adj(attr,stell,verv_neut)" ], "overtocht": [ "N(soort,ev,neut)" ], "makkelijker": [ "Adj(adv,vergr,onverv)" ], "uitdrukking": [ "N(soort,ev,neut)" ], "snoepen": [ "V(intrans,inf)" ], "grif": [ "Adj(adv,stell,onverv)" ], "klaargezet": [ "V(trans,verl_dw,onverv)" ], "ruimschoots": [ "Adj(adv,stell,onverv)" ], "Opnieuw": [ "Adv(gew,geen_func,stell,onverv)" ], "beweegt": [ "V(intrans,ott,3,ev)" ], "tactische": [ "Adj(attr,stell,verv_neut)" ], "VPRO-programma": [ "N(soort,ev,neut)" ], "doek": [ "N(soort,ev,neut)" ], "doel": [ "N(soort,ev,neut)" ], "voort": [ "Adv(deel_v)", "Adv(gew,geen_func,stell,onverv)" ], "doen": [ "V(trans,inf)", "V(intrans,inf)", "V(intrans,ott,1_of_2_of_3,mv)", "V(trans,ott,1_of_2_of_3,mv)", "V(hulp,ott,1_of_2_of_3,mv)", "V(hulp,inf)", "N(soort,ev,neut)" ], "boezem": [ "N(soort,ev,neut)" ], "torenflats": [ "N(soort,mv,neut)" ], "bevrediging": [ "N(soort,ev,neut)" ], "5,95": [ "Num(hoofd,bep,attr,onverv)" ], "kralenversiering": [ "N(soort,ev,neut)" ], "does": [ "Misc(vreemd)" ], "doet": [ "V(trans,ott,3,ev)", "V(hulp,ott,3,ev)", "V(intrans,ott,3,ev)", "V(trans,ott,2,ev)", "V(refl,ott,3,ev)" ], "naargeestig": [ "Adj(adv,stell,onverv)" ], "zesjarige": [ "Adj(attr,stell,verv_neut)" ], "beslagen": [ "V(trans,verl_dw,onverv)" ], "misdaadfilm": [ "N(soort,ev,neut)" ], "omstreeks": [ "Adv(gew,geen_func,stell,onverv)", "Prep(voor)" ], "coc": [ "N(eigen,ev,neut)" ], "ras": [ "N(soort,ev,neut)" ], "fondue": [ "N(soort,ev,neut)" ], "popgroep": [ "N(soort,ev,neut)" ], "juni": [ "N(eigen,ev,neut)" ], "driekwartsmaat": [ "N(soort,ev,neut)" ], "verkoopster": [ "N(soort,ev,neut)" ], "besteden": [ "V(trans,inf)" ], "samenloop": [ "N(soort,ev,neut)" ], "bijeen": [ "Adv(gew,geen_func,stell,onverv)" ], "Woont": [ "V(intrans,ott,3,ev)" ], "tweeenvijftigjarige": [ "Adj(attr,stell,verv_neut)" ], "Tenzij": [ "Conj(onder,met_fin)" ], "trachtten": [ "V(hulp,ovt,1_of_2_of_3,mv)" ], "afdeling": [ "N(soort,ev,neut)" ], "vervolmaken": [ "V(trans,inf)" ], "Claude": [ "N(eigen,ev,neut)" ], "breiden": [ "V(trans,inf)" ], "verwekken": [ "V(trans,inf,subst)", "V(trans,inf)" ], "herinner": [ "V(trans,ott,1,ev)" ], "tvshow": [ "N(soort,ev,neut)" ], "Balenciaga": [ "N(eigen,ev,neut)" ], "hieraan": [ "Adv(pron,aanw)" ], "maakte": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(refl,ovt,1_of_2_of_3,ev)" ], "intrinsieke": [ "Adj(attr,stell,verv_neut)" ], "saus": [ "N(soort,ev,neut)" ], "meerderheid": [ "N(soort,ev,neut)" ], "kunstkenners": [ "N(soort,mv,neut)" ], "word": [ "V(hulp_of_kopp,ott,1,ev)" ], "vergeetachtige": [ "Adj(attr,stell,verv_neut)" ], "Daarna": [ "Adv(pron,aanw)" ], "binnenkomen": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "eenling": [ "N(soort,ev,neut)" ], "Grieks": [ "Adj(zelfst,stell,onverv)" ], "ellendig": [ "Adj(attr,stell,onverv)" ], "moest-ie": [ "V(hulp_of_kopp,ovt,1_of_2_of_3,ev)" ], "nerveus": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "krottenwijken": [ "N(soort,mv,neut)" ], "dieper": [ "Adj(adv,vergr,onverv)" ], "opgebeld": [ "V(trans,verl_dw,onverv)" ], "billen": [ "N(soort,mv,neut)" ], "richt": [ "V(refl,ott,3,ev)" ], "merken": [ "V(trans,inf)", "N(soort,mv,neut)", "V(trans,ott,1_of_2_of_3,mv)" ], "bevalling": [ "N(soort,ev,neut)" ], "overstroomd": [ "V(trans,verl_dw,onverv)" ], "afvalstoffen": [ "N(soort,mv,neut)" ], "Trap": [ "N(soort,ev,neut)" ], "afweging": [ "N(soort,ev,neut)" ], "voedseloverschotten": [ "N(soort,mv,neut)" ], "beschrijving": [ "N(soort,ev,neut)" ], "kwaad": [ "Adj(attr,stell,onverv)", "N(soort,ev,neut)" ], "Herr": [ "N(eigen,ev,neut)" ], "Barry": [ "N(eigen,ev,neut)" ], "NAAM": [ "N(soort,ev,neut)" ], "kwaal": [ "N(soort,ev,neut)" ], "Daarom": [ "Adv(gew,aanw)" ], "diepvriesvak": [ "N(soort,ev,neut)" ], "Middeleeuwen": [ "N(eigen,mv,neut)" ], "overtuigen": [ "V(trans,inf)" ], "Daarop": [ "Adv(pron,aanw)" ], "Maar": [ "Conj(neven)", "Adv(gew,geen_func,stell,onverv)" ], "bokkenrijders": [ "N(soort,mv,neut)" ], "Heeft": [ "V(hulp,ott,3,ev)" ], "vermoeid": [ "V(trans,verl_dw,onverv)" ], "reisleider": [ "N(soort,ev,neut)" ], "diensten": [ "N(soort,mv,neut)" ], "verrijkt": [ "V(trans,verl_dw,onverv)" ], "Defares": [ "N(eigen,ev,neut)" ], "ontoelaatbaar": [ "Adj(attr,stell,onverv)" ], "heparine": [ "N(soort,ev,neut)" ], "ontzegging": [ "N(soort,ev,neut)" ], "harteloos": [ "Adj(adv,stell,onverv)" ], "derden": [ "Num(rang,bep,zelfst,onverv)" ], "waaruit": [ "Adv(pron,vrag)" ], "dramaturgie": [ "N(soort,ev,neut)" ], "glimmende": [ "V(intrans,teg_dw,verv_neut)" ], "waag": [ "V(trans,imp)" ], "medicijnen": [ "N(soort,mv,neut)" ], "anderhalve": [ "Num(hoofd,bep,attr,onverv)" ], "meegemaakt": [ "V(trans,verl_dw,onverv)" ], "namen": [ "N(soort,mv,neut)" ], "feestje": [ "N(soort,ev,neut)" ], "zibeline": [ "N(soort,ev,neut)" ], "Hoeksewaard": [ "N(eigen,ev,neut)" ], "opvallend": [ "V(intrans,teg_dw,onverv)" ], "behulp": [ "N(soort,ev,neut)" ], "waar": [ "Adv(gew,vrag)", "Adv(gew,betr)", "Adj(attr,stell,onverv)", "Adv(pron,vrag)", "Adv(pron,betr)" ], "lichaam": [ "N(soort,ev,neut)" ], "gezinssamenwerking": [ "N(soort,ev,neut)" ], "gekraakt": [ "V(trans,verl_dw,onverv)" ], "jurk": [ "N(soort,ev,neut)" ], "Ging": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "aangebroken": [ "V(intrans,verl_dw,onverv)" ], "Zieleman": [ "N(eigen,ev,neut)" ], "maagpijn": [ "N(soort,ev,neut)" ], "graven": [ "V(intrans,inf)", "V(trans,inf)" ], "uitstekend": [ "Adj(attr,stell,onverv)" ], "Negen": [ "Num(hoofd,bep,attr,onverv)" ], "bejaardenwoningen": [ "N(soort,mv,neut)" ], "ijskoude": [ "Adj(attr,stell,verv_neut)" ], "raffinement": [ "N(soort,ev,neut)" ], "bezighoudt": [ "V(refl,ott,3,ev)" ], "slenterde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "afgekondigd": [ "V(trans,verl_dw,onverv)" ], "Murton": [ "N(eigen,ev,neut)" ], "lachen": [ "V(intrans,inf)", "V(intrans,ott,1_of_2_of_3,mv)" ], "rest": [ "N(soort,ev,neut)" ], "hoeveel": [ "Num(hoofd,onbep,attr,stell,onverv)" ], "welvaartsblik": [ "N(soort,ev,neut)" ], "spreidt": [ "V(trans,ott,3,ev)" ], "grof": [ "Adj(attr,stell,onverv)" ], "griezelbeelden": [ "N(soort,mv,neut)" ], "eenvoudige": [ "Adj(attr,stell,verv_neut)" ], "sandwiches": [ "N(soort,mv,neut)" ], "enkeling": [ "N(soort,ev,neut)" ], "verspeend": [ "V(trans,verl_dw,onverv)" ], "gros": [ "N(soort,ev,neut)" ], "bakkerij": [ "N(soort,ev,neut)" ], "seksboetieks": [ "N(soort,mv,neut)" ], "Algerije": [ "N(eigen,ev,neut)" ], "17-jarige": [ "Adj(attr,stell,verv_neut)" ], "bevindt": [ "V(refl,ott,3,ev)" ], "voorbeelden": [ "N(soort,mv,neut)" ], "hopen": [ "V(intrans,ott,1_of_2_of_3,mv)", "N(soort,mv,neut)" ], "geschilpunt": [ "N(soort,ev,neut)" ], "eindigt": [ "V(intrans,ott,3,ev)" ], "Mady": [ "N(eigen,ev,neut)" ], "hotviool": [ "N(soort,ev,neut)" ], "recensies": [ "N(soort,mv,neut)" ], "stadsvolkje": [ "N(soort,ev,neut)" ], "intensief": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "Danny": [ "N(eigen,ev,neut)" ], "filmmagnaat": [ "N(soort,ev,neut)" ], "blijde": [ "Adj(attr,stell,verv_neut)" ], "cum": [ "Adj(adv,stell,onverv)" ], "dooier": [ "N(soort,ev,neut)" ], "leerden": [ "V(hulp,ovt,1_of_2_of_3,mv)" ], "royale": [ "Adj(attr,stell,verv_neut)" ], "getal": [ "N(soort,ev,neut)" ], "desodorisanten": [ "N(soort,mv,neut)" ], "Ussel": [ "N(eigen,ev,neut)" ], "toerist": [ "N(soort,ev,neut)" ], "verkiezingen": [ "N(soort,mv,neut)" ], "martelingen": [ "N(soort,mv,neut)" ], "genadeklap": [ "N(soort,ev,neut)" ], "opperbest": [ "Adj(attr,overtr,onverv)" ], "gezegd": [ "V(trans,verl_dw,onverv)", "V(intrans,verl_dw,onverv)" ], "Rijnterrassen": [ "N(soort,mv,neut)" ], "bevrijding": [ "N(soort,ev,neut)" ], "100.000": [ "Num(hoofd,bep,attr,onverv)" ], "Bloemen": [ "N(soort,mv,neut)" ], "muzikale": [ "Adj(attr,stell,verv_neut)" ], "stelde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "waard": [ "Adj(attr,stell,onverv)" ], "cynisch": [ "Adj(adv,stell,onverv)" ], "kunstenaars": [ "N(soort,mv,neut)" ], "wandeling": [ "N(soort,ev,neut)" ], "eierslang": [ "N(soort,ev,neut)" ], "daartussen": [ "Adv(pron,aanw)" ], "gillend": [ "V(intrans,teg_dw,onverv)" ], "kabbelende": [ "V(intrans,teg_dw,verv_neut)" ], "rij": [ "N(soort,ev,neut)" ], "sprongen": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "feestelijke": [ "Adj(attr,stell,verv_neut)" ], "afloop": [ "N(soort,ev,neut)" ], "rit": [ "N(soort,ev,neut)" ], "redactie": [ "N(soort,ev,neut)" ], "kabelbaan": [ "N(soort,ev,neut)" ], "komende": [ "V(intrans,teg_dw,verv_neut)" ], "minderheidsgroep": [ "N(soort,ev,neut)" ], "Wapping": [ "N(eigen,ev,neut)" ], "speelruimte": [ "N(soort,ev,neut)" ], "trouwen": [ "V(intrans,inf)" ], "bewondering": [ "N(soort,ev,neut)" ], "wapen": [ "N(soort,ev,neut)" ], "rokken": [ "N(soort,mv,neut)" ], "TOEGANG": [ "N(soort,ev,neut)" ], "schaken": [ "V(intrans,inf,subst)", "V(intrans,inf)" ], "berustend": [ "V(intrans,teg_dw,onverv)" ], "Schrijf": [ "V(trans,imp)" ], "Brockhouse": [ "N(eigen,ev,neut)" ], "Wayne": [ "N(eigen,ev,neut)" ], "geprofileerde": [ "V(trans,verl_dw,verv_neut)" ], "vertrouw": [ "V(trans,ott,1,ev)" ], "Pezzei": [ "N(eigen,ev,neut)" ], "geflankeerd": [ "V(trans,verl_dw,onverv)" ], "overeenkomst": [ "N(soort,ev,neut)" ], "bespreking": [ "N(soort,ev,neut)" ], "flarden": [ "N(soort,mv,neut)" ], "stelen": [ "V(trans,inf)" ], "verlossen": [ "V(trans,inf)" ], "spot": [ "N(soort,ev,neut)" ], "ceintuur": [ "N(soort,ev,neut)" ], "blijft": [ "V(hulp_of_kopp,ott,3,ev)", "V(intrans,ott,3,ev)" ], "torens": [ "N(soort,mv,neut)" ], "gravin": [ "N(soort,ev,neut)" ], "verzorging": [ "N(soort,ev,neut)" ], "reden": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "negers": [ "N(soort,mv,neut)" ], "hartpatient": [ "N(soort,ev,neut)" ], "touwen": [ "N(soort,mv,neut)" ], "dood": [ "N(soort,ev,neut)", "Adj(attr,stell,onverv)", "N(eigen,ev,neut)" ], "Dompel": [ "V(trans,imp)" ], "TROS-uitzending": [ "N(soort,ev,neut)" ], "Overheersend": [ "V(intrans,teg_dw,onverv)" ], "ziener": [ "N(soort,ev,neut)" ], "verklaren": [ "V(trans,inf)" ], "door": [ "Prep(voor)", "Conj(onder,met_inf)", "Prep(achter)", "Prep(comb)", "Adv(deel_adv)", "Misc(vreemd)", "Adv(gew,geen_func,stell,onverv)", "Adv(deel_v)" ], "kwalijk": [ "Adj(attr,stell,onverv)" ], "schilders": [ "N(soort,mv,neut)" ], "uiteindelijk": [ "Adj(adv,stell,onverv)" ], "woningen": [ "N(soort,mv,neut)" ], "Bundes-sportheim": [ "N(soort,ev,neut)" ], "kleertjes": [ "N(soort,mv,neut)" ], "Toornsjtraat": [ "Misc(vreemd)" ], "kalme": [ "Adj(attr,stell,verv_neut)" ], "klooster": [ "N(soort,ev,neut)" ], "tophitlijsten": [ "N(soort,mv,neut)" ], "alle": [ "Pron(onbep,neut,attr)", "Pron(onbep,neut,zelfst)" ], "Boeken": [ "N(soort,mv,neut)" ], "kuiten": [ "N(soort,mv,neut)" ], "ontvingen": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "samenwerking": [ "N(soort,ev,neut)" ], "depressie": [ "N(soort,ev,neut)" ], "redenen": [ "N(soort,mv,neut)" ], "streven": [ "V(intrans,inf)", "V(intrans,inf,subst)" ], "monter": [ "Adj(attr,stell,onverv)" ], "opgeschoten": [ "V(trans,verl_dw,onverv)" ], "veiligheid": [ "N(soort,ev,neut)" ], "Zeker": [ "Adj(adv,stell,onverv)" ], "Client": [ "N(soort,ev,neut)" ], "Main": [ "N(eigen,ev,neut)" ], "subtiel": [ "Adj(attr,stell,onverv)" ], "variant": [ "N(soort,ev,neut)", "Adj(attr,stell,onverv)" ], "honeymooners": [ "N(soort,mv,neut)" ], "geest": [ "N(soort,ev,neut)" ], "Noordzee": [ "N(eigen,ev,neut)" ], "werkbesparende": [ "Adj(attr,stell,verv_neut)" ], "argeloze": [ "Adj(attr,stell,verv_neut)" ], "Sommigen": [ "Pron(onbep,neut,zelfst)" ], "oefeningen": [ "N(soort,mv,neut)" ], "intuitie": [ "N(soort,ev,neut)" ], "herboren": [ "Adj(attr,stell,onverv)" ], "epater": [ "Misc(vreemd)" ], "bezitsdrang": [ "N(soort,ev,neut)" ], "aandiende": [ "V(refl,ovt,1_of_2_of_3,ev)" ], "vooraanstaande": [ "Adj(attr,stell,verv_neut)" ], "Sgt.": [ "N(eigen,ev,neut)" ], "demonstratiemiddag": [ "N(soort,ev,neut)" ], "werkwijze": [ "N(soort,ev,neut)" ], "Helvoirts": [ "N(eigen,ev,gen)" ], "hoogte": [ "N(soort,ev,neut)" ], "schenkers": [ "N(soort,mv,neut)" ], "Kalverstraat": [ "N(eigen,ev,neut)" ], "Nonnetje": [ "N(eigen,ev,neut)" ], "gezamenlijke": [ "Adj(attr,stell,verv_neut)" ], "behaard": [ "Adj(attr,stell,onverv)" ], "gelaten": [ "V(trans,verl_dw,onverv)" ], "Groningen": [ "N(eigen,ev,neut)" ], "Voordeel": [ "N(soort,ev,neut)" ], "vismethode": [ "N(soort,ev,neut)" ], "business": [ "N(soort,ev,neut)" ], "dorp": [ "N(soort,ev,neut)" ], "lichaamsgewicht": [ "N(soort,ev,neut)" ], "mededinging": [ "N(soort,ev,neut)" ], "vriendjes": [ "N(soort,mv,neut)" ], "Leen": [ "N(eigen,ev,neut)" ], "spitsuur": [ "N(soort,ev,neut)" ], "kattevoer": [ "N(soort,ev,neut)" ], "vredig": [ "Adj(attr,stell,onverv)" ], "Rotterdamse": [ "Adj(attr,stell,verv_neut)" ], "sloten": [ "N(soort,mv,neut)" ], "makkelijkst": [ "Adj(adv,vergr,onverv)" ], "Jarenlang": [ "Adj(adv,stell,onverv)" ], "litteratuur": [ "N(soort,ev,neut)" ], "uitdrukkingen": [ "N(soort,mv,neut)" ], "onafhankelijkheid": [ "N(soort,ev,neut)" ], "uitlopen": [ "V(trans,inf)", "V(intrans,ott,1_of_2_of_3,mv)" ], "postbode": [ "N(soort,ev,neut)" ], "aanstekelijk": [ "Adj(adv,stell,onverv)" ], "Darley": [ "N(eigen,ev,neut)" ], "onderlinge": [ "Adj(attr,stell,verv_neut)" ], "Pluizen": [ "N(soort,mv,neut)" ], "Uil": [ "N(eigen,ev,neut)" ], "gewonden": [ "V(trans,verl_dw,verv_mv)" ], "Daarbij": [ "Adv(pron,aanw)" ], "jeugd": [ "N(soort,ev,neut)" ], "blijkt": [ "V(intrans,ott,3,ev)", "V(hulp_of_kopp,ott,3,ev)" ], "bijten": [ "V(intrans,inf)" ], "rok": [ "N(soort,ev,neut)" ], "avonds": [ "N(soort,ev,gen)" ], "rol": [ "N(soort,ev,neut)" ], "veel": [ "Num(hoofd,onbep,attr,stell,onverv)", "Num(hoofd,onbep,zelfst,stell,onverv)" ], "Uit": [ "Prep(voor)" ], "technische": [ "Adj(attr,stell,verv_neut)" ], "rot": [ "Adj(attr,stell,onverv)" ], "Zethof": [ "N(eigen,ev,neut)" ], "aanzoek": [ "N(soort,ev,neut)" ], "kabinet-De": [ "N(eigen,ev,neut)" ], "kerkezakje": [ "N(soort,ev,neut)" ], "Buona": [ "N(eigen,ev,neut)" ], "humbug": [ "N(soort,ev,neut)" ], "wasbord": [ "N(soort,ev,neut)" ], "alledaagse": [ "Adj(attr,stell,verv_neut)" ], "export-managers": [ "N(soort,mv,neut)" ], "boosdoeners": [ "N(soort,mv,neut)" ], "O.a.": [ "Adv(gew,geen_func,stell,onverv)" ], "critici": [ "N(soort,mv,neut)" ], "vaker": [ "Adv(gew,geen_func,vergr,onverv)" ], "Buitenspelende": [ "Adj(attr,stell,verv_neut)" ], "spul": [ "N(soort,ev,neut)" ], "krap": [ "Adj(adv,stell,onverv)" ], "daad": [ "N(soort,ev,neut)" ], "regisseur": [ "N(soort,ev,neut)" ], "hoofdbureau": [ "N(soort,ev,neut)" ], "verhuurder": [ "N(soort,ev,neut)" ], "minderwaardigheidscomplex": [ "N(soort,ev,neut)" ], "aanraking": [ "N(soort,ev,neut)" ], "zover": [ "Adv(gew,aanw)" ], "immense": [ "Adj(attr,stell,verv_neut)" ], "bewapening": [ "N(soort,ev,neut)" ], "daar": [ "Adv(gew,aanw)", "Adv(pron,aanw)" ], "tweeendertighonderd": [ "Num(hoofd,bep,zelfst,onverv)" ], "leraar": [ "N(soort,ev,neut)" ], "daas": [ "Adj(attr,stell,onverv)" ], "proeft": [ "V(trans,ott,3,ev)" ], "kwaliteit": [ "N(soort,ev,neut)" ], "gevorderd": [ "V(intrans,verl_dw,onverv)" ], "vernieuwing": [ "N(soort,ev,neut)" ], "aandrang": [ "N(soort,ev,neut)" ], "initiatieven": [ "N(soort,mv,neut)" ], "dringend": [ "Adv(gew,geen_func,stell,onverv)" ], "lengten": [ "N(soort,mv,neut)" ], "wassen": [ "V(trans,inf)" ], "klassegewijze": [ "Adj(attr,stell,verv_neut)" ], "duurste": [ "Adj(attr,overtr,verv_neut)" ], "Bestelt": [ "V(trans,ott,2,ev)" ], "rijksambtenaar": [ "N(soort,ev,neut)" ], "boerderij": [ "N(soort,ev,neut)" ], "kleren": [ "N(soort,mv,neut)" ], "evenwicht": [ "N(soort,ev,neut)" ], "turven": [ "V(intrans,inf)" ], "kinderprogramma": [ "N(soort,ev,neut)" ], "Luistert": [ "V(intrans,ott,2,ev)" ], "vissersdorpen": [ "N(soort,mv,neut)" ], "laagconjunctuur": [ "N(soort,ev,neut)" ], "lezeressen": [ "N(soort,mv,neut)" ], "blijmoedige": [ "Adj(attr,stell,verv_neut)" ], "marasquin": [ "N(soort,ev,neut)" ], "gekoeld": [ "V(trans,verl_dw,onverv)" ], "opvalt": [ "V(intrans,ott,3,ev)" ], "wordende": [ "V(hulp_of_kopp,teg_dw,verv_neut)" ], "opeet": [ "V(trans,ott,3,ev)" ], "TeleVizier": [ "N(eigen,ev,neut)" ], "Middeleeuwse": [ "Adj(attr,stell,verv_neut)" ], "diepte": [ "N(soort,ev,neut)" ], "collier": [ "N(soort,ev,neut)" ], "wand": [ "N(soort,ev,neut)" ], "Stein": [ "N(eigen,ev,neut)" ], "raison": [ "N(soort,ev,neut)" ], "bierbrouwerij-kapitaal": [ "N(soort,ev,neut)" ], "wang": [ "N(soort,ev,neut)" ], "Ostenreich": [ "Misc(vreemd)" ], "merkte": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "beraamde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "tienduizenden": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "want": [ "Conj(neven)" ], "levenloos": [ "Adj(attr,stell,onverv)" ], "filmwereld": [ "N(soort,ev,neut)" ], "Delfosse": [ "N(eigen,ev,neut)" ], "Jackson": [ "N(eigen,ev,neut)" ], "tesamen": [ "Adv(gew,geen_func,stell,onverv)" ], "gedrang": [ "N(soort,ev,neut)" ], "bleken": [ "V(hulp_of_kopp,ovt,1_of_2_of_3,mv)" ], "akkoord": [ "N(soort,ev,neut)" ], "tehuis": [ "N(soort,ev,neut)" ], "homofielen": [ "N(soort,mv,neut)" ], "allergie": [ "N(soort,ev,neut)" ], "partijen": [ "N(soort,mv,neut)" ], "bonte": [ "Adj(attr,stell,verv_neut)" ], "eksperimenteren": [ "V(intrans,inf)" ], "Schiedam": [ "N(eigen,ev,neut)" ], "Wassenaar": [ "N(eigen,ev,neut)" ], "opvang": [ "N(soort,ev,neut)" ], "bezighouden": [ "V(refl,inf)", "V(refl,ott,1_of_2_of_3,mv)" ], "reisverhalen": [ "N(soort,mv,neut)" ], "fauteuil": [ "N(soort,ev,neut)" ], "Minnaert": [ "N(eigen,ev,neut)" ], "tillen": [ "V(trans,inf)" ], "Grieg": [ "N(eigen,ev,neut)" ], "Europese": [ "Adj(attr,stell,verv_neut)" ], "jawoord": [ "N(soort,ev,neut)" ], "Nicholson": [ "N(eigen,ev,neut)" ], "grootouders": [ "N(soort,mv,neut)" ], "schaamtegevoelens": [ "N(soort,mv,neut)" ], "publicitair": [ "Adj(adv,stell,onverv)" ], "kleiblokken": [ "N(soort,mv,neut)" ], "heldere": [ "Adj(attr,stell,verv_neut)" ], "verbouwd": [ "V(trans,verl_dw,onverv)" ], "uitbleef": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "vriendschap": [ "N(soort,ev,neut)" ], "onderling": [ "Adj(attr,stell,onverv)" ], "kreten": [ "N(soort,mv,neut)" ], "dag-": [ "N(soort,ev,neut)", "N(soort,mv,neut)" ], "aantallen": [ "N(soort,mv,neut)" ], "Willibrords": [ "N(eigen,ev,gen)" ], "terzijde": [ "Adv(gew,geen_func,stell,onverv)" ], "vakje": [ "N(soort,ev,neut)" ], "lacht": [ "V(intrans,ott,3,ev)" ], "sophisticated": [ "Adj(attr,stell,onverv)" ], "dag": [ "N(soort,ev,neut)" ], "attenties": [ "N(soort,mv,neut)" ], "dak": [ "N(soort,ev,neut)" ], "Oscar": [ "N(eigen,ev,neut)" ], "dan": [ "Adv(gew,aanw)", "Conj(onder,met_fin)", "Conj(neven)" ], "Horeca-attractie": [ "N(soort,ev,neut)" ], "aanvang": [ "N(soort,ev,neut)" ], "aardappelschepen": [ "N(soort,mv,neut)" ], "trainingspak": [ "N(soort,ev,neut)" ], "beschouwden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "das": [ "N(soort,ev,neut)" ], "dat": [ "Conj(onder,met_fin)", "Pron(betr,neut,zelfst)", "Pron(aanw,neut,zelfst)", "Adv(gew,vrag)", "Pron(aanw,neut,attr)", "Conj(neven)" ], "rookvlees": [ "N(soort,ev,neut)" ], "verloofd": [ "V(trans,verl_dw,onverv)" ], "advertenties": [ "N(soort,mv,neut)" ], "rug": [ "N(soort,ev,neut)" ], "lachte": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "strategen": [ "N(soort,mv,neut)" ], "Hugenoten": [ "N(soort,mv,neut)" ], "onderhouden": [ "V(trans,inf)", "V(trans,verl_dw,onverv)" ], "Jaarbeurshallen": [ "N(eigen,mv,neut)" ], "beide": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "kwark": [ "N(soort,ev,neut)" ], "uithoeken": [ "N(soort,mv,neut)" ], "rum": [ "N(soort,ev,neut)" ], "gerust": [ "Adj(adv,stell,onverv)" ], "moreel": [ "Adj(adv,stell,onverv)" ], "Mars": [ "N(eigen,ev,neut)" ], "voerde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Truida": [ "N(eigen,ev,neut)" ], "Mary": [ "N(eigen,ev,neut)" ], "verkenning": [ "N(soort,ev,neut)" ], "verder": [ "Adj(adv,vergr,onverv)" ], "getekend": [ "V(trans,verl_dw,onverv)" ], "zuurstof": [ "N(soort,ev,neut)" ], "toonden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "gebroeders": [ "N(soort,mv,neut)" ], "incasseren": [ "V(trans,inf)" ], "Goethe": [ "N(eigen,ev,neut)" ], "dromend": [ "V(intrans,teg_dw,onverv)" ], "toepassen": [ "V(trans,inf)" ], "Super": [ "Adj(attr,stell,onverv)" ], "verplichtingen": [ "N(soort,mv,neut)" ], "veld": [ "N(soort,ev,neut)" ], "vele": [ "Num(hoofd,onbep,attr,stell,verv_neut)" ], "vermijden": [ "V(trans,inf)" ], "tv-assistente": [ "N(soort,ev,neut)" ], "ware": [ "Adj(attr,stell,verv_neut)", "V(intrans,conj)" ], "gymnasium": [ "N(soort,ev,neut)" ], "donkere": [ "Adj(attr,stell,verv_neut)" ], "aangekondigd": [ "V(trans,verl_dw,onverv)" ], "Aigues-Mortes": [ "N(eigen,ev,neut)" ], "bekommert": [ "V(refl,ott,3,ev)" ], "Denemarken": [ "N(eigen,ev,neut)" ], "vleugels": [ "N(soort,mv,neut)" ], "warm": [ "Adj(attr,stell,onverv)" ], "Lagerhuis": [ "N(eigen,ev,neut)" ], "kwast": [ "N(soort,ev,neut)" ], "kleinere": [ "Adj(attr,vergr,verv_neut)" ], "voeren": [ "V(trans,inf)" ], "verstek": [ "N(soort,ev,neut)" ], "prediken": [ "V(intrans,inf)" ], "keerzijde": [ "N(soort,ev,neut)" ], "concentratie": [ "N(soort,ev,neut)" ], "getroffen": [ "V(trans,verl_dw,onverv)" ], "westkant": [ "N(soort,ev,neut)" ], "priester": [ "N(soort,ev,neut)" ], "sterven": [ "V(intrans,inf)" ], "seizoen": [ "N(soort,ev,neut)" ], "schuldgevoel": [ "N(soort,ev,neut)" ], "reiken": [ "V(trans,inf)" ], "ofschoon": [ "Conj(onder,met_fin)" ], "darmen": [ "N(soort,mv,neut)" ], "nieuwjaarsnacht": [ "N(soort,ev,neut)" ], "NATO": [ "N(eigen,ev,neut)" ], "soldaat": [ "N(soort,ev,neut)" ], "public": [ "N(soort,mv,neut)" ], "verschrikkelijk": [ "Adj(adv,stell,onverv)" ], "tussenkomst": [ "N(soort,ev,neut)" ], "verhouding": [ "N(soort,ev,neut)" ], "waardevrije": [ "Adj(attr,stell,verv_neut)" ], "hoed": [ "N(soort,ev,neut)" ], "champagneglas": [ "N(soort,ev,neut)" ], "hoef": [ "V(hulp,ott,2,ev)", "V(hulp,ott,1,ev)" ], "buitenbeks": [ "Adv(gew,geen_func,stell,onverv)" ], "slechter": [ "Adj(attr,vergr,onverv)" ], "aanrukken": [ "V(trans,inf)" ], "inleiding": [ "N(soort,ev,neut)" ], "methode": [ "N(soort,ev,neut)" ], "rituele": [ "Adj(attr,stell,verv_neut)" ], "hoek": [ "N(soort,ev,neut)" ], "mogelijke": [ "Adj(attr,stell,verv_neut)" ], "knalbommen": [ "N(soort,mv,neut)" ], "800,-": [ "Num(hoofd,bep,attr,onverv)" ], "oosthoek": [ "N(soort,ev,neut)" ], "voorzag": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "hoes": [ "N(soort,ev,neut)" ], "minuten": [ "N(soort,mv,neut)" ], "constateerde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "bekwaamheid": [ "N(soort,ev,neut)" ], "Spaanse": [ "Adj(attr,stell,verv_neut)" ], "schoen": [ "N(soort,ev,neut)" ], "plaatsen": [ "N(soort,mv,neut)", "V(trans,inf)" ], "beige": [ "Adj(zelfst,stell,onverv)", "Adj(attr,stell,onverv)" ], "opzetten": [ "V(trans,inf,subst)", "V(trans,inf)" ], "Maup": [ "N(eigen,ev,neut)" ], "moekes": [ "N(soort,mv,neut)" ], "bestond": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "uitspraken": [ "N(soort,mv,neut)" ], "vent": [ "N(soort,ev,neut)" ], "mascotte-bezitter": [ "N(soort,ev,neut)" ], "weerzin": [ "N(soort,ev,neut)" ], "teckeldorp": [ "N(soort,ev,neut)" ], "Petersen": [ "N(eigen,ev,neut)" ], "Elfrink": [ "N(eigen,ev,neut)" ], "dek": [ "N(soort,ev,neut)" ], "del": [ "N(eigen,ev,neut)" ], "den": [ "N(eigen,ev,neut)", "Art(bep,zijd,dat)", "N(eigen,mv,neut)" ], "afkeer": [ "N(soort,ev,neut)" ], "kerels": [ "N(soort,mv,neut)" ], "eenvoud": [ "N(soort,ev,neut)" ], "schuurtjes": [ "N(soort,mv,neut)" ], "programma": [ "N(soort,ev,neut)" ], "der": [ "Art(bep,zijd_of_mv,gen)", "N(eigen,ev,neut)" ], "des": [ "Adv(gew,aanw)", "N(eigen,ev,neut)", "Art(bep,zijd_of_onzijd,gen)" ], "Kijk": [ "V(intrans,imp)", "Int" ], "voorlopers": [ "N(soort,mv,neut)" ], "heerlijkheden": [ "N(soort,mv,neut)" ], "geloof": [ "V(trans,ott,1,ev)", "V(intrans,ott,1,ev)", "N(soort,ev,neut)" ], "klemmen": [ "N(soort,mv,neut)" ], "Garfunkel": [ "N(eigen,ev,neut)" ], "Edwin": [ "N(eigen,ev,neut)" ], "regeling": [ "N(soort,ev,neut)" ], "raadsel": [ "N(soort,ev,neut)" ], "tegenspel": [ "N(soort,ev,neut)" ], "Vivarais": [ "N(eigen,ev,neut)" ], "hekel": [ "N(soort,ev,neut)" ], "konflikt": [ "N(soort,ev,neut)" ], "vloeiend": [ "V(intrans,teg_dw,onverv)" ], "onderscheid": [ "N(soort,ev,neut)" ], "verzeild": [ "V(intrans,verl_dw,onverv)" ], "Gallisch": [ "Adj(attr,stell,onverv)" ], "stamppot": [ "N(soort,ev,neut)" ], "regelmatige": [ "Adj(attr,stell,verv_neut)" ], "sprookjesogen": [ "N(soort,mv,neut)" ], "Kika": [ "N(eigen,ev,neut)" ], "hoge": [ "Adj(attr,stell,verv_neut)" ], "puntschoenen": [ "N(soort,mv,neut)" ], "lipsticks": [ "N(soort,mv,neut)" ], "bescherming": [ "N(soort,ev,neut)" ], "begroeid": [ "V(trans,verl_dw,onverv)" ], "kleinzieligheid": [ "N(soort,ev,neut)" ], "eenentwintig": [ "Num(hoofd,bep,attr,onverv)" ], "persoonlijk": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "b.v.": [ "Adv(gew,geen_func,stell,onverv)" ], "waterrijke": [ "Adj(attr,stell,verv_neut)" ], "slaakte": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "afvloeit": [ "V(intrans,ott,3,ev)" ], "meest-gevraagd": [ "Adj(attr,overtr,onverv)" ], "ver-": [ "N(soort,mv,neut)" ], "tribune": [ "N(soort,ev,neut)" ], "Arme": [ "Adj(attr,stell,verv_neut)" ], "Apostel": [ "N(soort,ev,neut)" ], "discussie": [ "N(soort,ev,neut)" ], "tijdperk": [ "N(soort,ev,neut)" ], "verzuchtte": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "hoofdzakelijk": [ "Adj(adv,stell,onverv)" ], "verandering": [ "N(soort,ev,neut)" ], "afkomstige": [ "Adj(attr,stell,verv_neut)" ], "bedrijven": [ "N(soort,mv,neut)", "V(trans,inf)" ], "uitkijktoren": [ "N(soort,ev,neut)" ], "waargenomen": [ "V(trans,verl_dw,onverv)" ], "kelen": [ "N(soort,mv,neut)" ], "godsdienstig": [ "Adj(attr,stell,onverv)" ], "getto": [ "N(soort,ev,neut)" ], "spreekkamer": [ "N(soort,ev,neut)" ], "opgewektheid": [ "N(soort,ev,neut)" ], "wandelingen": [ "N(soort,mv,neut)" ], "inspireert": [ "V(trans,ott,3,ev)" ], "Groningse": [ "Adj(attr,stell,verv_neut)" ], "afzonderlijk": [ "Adj(adv,stell,onverv)" ], "assistente": [ "N(soort,ev,neut)" ], "Sportief": [ "Adj(attr,stell,onverv)" ], "pafferige": [ "Adj(attr,stell,verv_neut)" ], "damslapers": [ "N(soort,mv,neut)" ], "kinderbijslag": [ "N(soort,ev,neut)" ], "anticoagulantiatabletten": [ "N(soort,mv,neut)" ], "oproepen": [ "V(trans,inf)" ], "Afgejakkerd": [ "V(trans,verl_dw,onverv)" ], "VVD": [ "N(eigen,ev,neut)" ], "energieverslinders": [ "N(soort,mv,neut)" ], "inspecteren": [ "V(trans,inf)" ], "verdelen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "dame": [ "N(soort,ev,neut)" ], "omgeven": [ "V(trans,verl_dw,onverv)" ], "schrijvers": [ "N(soort,mv,neut)" ], "ineenkrimpen": [ "V(intrans,inf)" ], "Anneke": [ "N(eigen,ev,neut)" ], "bijgeloof": [ "N(soort,ev,neut)" ], "zelfbevrediging": [ "N(soort,ev,neut)" ], "werelds": [ "N(soort,ev,gen)" ], "Berlin": [ "N(eigen,ev,neut)" ], "geknipt": [ "V(trans,verl_dw,onverv)" ], "vaccinatie": [ "N(soort,ev,neut)" ], "onthaal": [ "N(soort,ev,neut)" ], "nemen": [ "V(trans,inf)", "V(trans,inf,subst)", "V(trans,ott,1_of_2_of_3,mv)" ], "gewicht": [ "N(soort,ev,neut)" ], "constateren": [ "V(trans,inf)" ], "vrijmaking": [ "N(soort,ev,neut)" ], "damp": [ "N(soort,ev,neut)" ], "Uddel": [ "N(eigen,ev,neut)" ], "spastische": [ "Adj(attr,stell,verv_neut)" ], "zachtaardig": [ "Adj(attr,stell,onverv)" ], "vers": [ "Adj(attr,stell,onverv)" ], "die": [ "Pron(betr,neut,zelfst)", "Pron(aanw,neut,zelfst)", "Pron(aanw,neut,attr)", "Misc(vreemd)" ], "minder": [ "Num(hoofd,onbep,attr,vergr,onverv)", "Num(hoofd,onbep,zelfst,vergr,onverv)" ], "dik": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "dattie": [ "Conj(onder,met_fin)" ], "jongetje": [ "N(soort,ev,neut)" ], "toespraken": [ "N(soort,mv,neut)" ], "bereikt": [ "V(trans,verl_dw,onverv)", "V(trans,ott,3,ev)" ], "King": [ "N(eigen,ev,neut)" ], "erelijst": [ "N(soort,ev,neut)" ], "Vincent": [ "N(eigen,ev,neut)" ], "wanhopig": [ "Adj(attr,stell,onverv)" ], "getuigenissen": [ "N(soort,mv,neut)" ], "wenkbrauwen": [ "N(soort,mv,neut)" ], "plaatsje": [ "N(soort,ev,neut)" ], "dis": [ "N(soort,ev,neut)" ], "dit": [ "Pron(aanw,neut,attr)", "Pron(aanw,neut,zelfst)" ], "afscheiding": [ "N(soort,ev,neut)" ], "Jacqueline": [ "N(eigen,ev,neut)" ], "woonkamer": [ "N(soort,ev,neut)" ], "hoogleraar": [ "N(soort,ev,neut)" ], "Nigel": [ "N(eigen,ev,neut)" ], "regeringskliek": [ "N(soort,ev,neut)" ], "Oosterbeek": [ "N(eigen,ev,neut)" ], "dank": [ "N(soort,ev,neut)" ], "visitelijst": [ "N(soort,ev,neut)" ], "levenloze": [ "Adj(attr,stell,verv_neut)" ], "slotte": [ "N(soort,ev,dat)" ], "bevochtiging": [ "N(soort,ev,neut)" ], "binnenstad": [ "N(soort,ev,neut)" ], "vuurtorens": [ "N(soort,mv,neut)" ], "Morbihan": [ "N(eigen,ev,neut)" ], "paardemiddel": [ "N(soort,ev,neut)" ], "vest": [ "N(soort,ev,neut)" ], "kindsaf": [ "Adv(gew,geen_func,stell,onverv)" ], "hoezeer": [ "Adv(gew,betr)" ], "verantwoorde": [ "V(trans,verl_dw,verv_neut)", "N(eigen,ev,neut)" ], "optilt": [ "V(trans,ott,2,ev)" ], "zedelijkheidswetgeving": [ "N(soort,ev,neut)" ], "Maybella": [ "N(eigen,ev,neut)" ], "waarvan": [ "Adv(pron,vrag)" ], "middelen": [ "N(soort,mv,neut)" ], "schreef": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "aloude": [ "Adj(attr,stell,verv_neut)" ], "uitstekende": [ "Adj(attr,stell,verv_neut)", "V(intrans,teg_dw,verv_neut)" ], "kabinet": [ "N(soort,ev,neut)" ], "verrassing": [ "N(soort,ev,neut)" ], "begrijpelijke": [ "Adj(attr,stell,verv_neut)" ], "nergens": [ "Adv(gew,onbep)" ], "opera": [ "N(soort,ev,neut)" ], "Surinamer": [ "N(soort,ev,neut)" ], "HEL": [ "N(soort,ev,neut)" ], "vereeuwigen": [ "V(trans,inf)" ], "langzamerhand": [ "Adv(gew,geen_func,stell,onverv)" ], "Leve": [ "V(intrans,conj)" ], "alweer": [ "Adv(gew,geen_func,stell,onverv)" ], "Griffe": [ "N(eigen,ev,neut)" ], "migratie-balans": [ "N(soort,ev,neut)" ], "mouwen": [ "N(soort,mv,neut)" ], "vernielingen": [ "N(soort,mv,neut)" ], "landschap": [ "N(soort,ev,neut)" ], "toekomstig": [ "Adj(attr,stell,onverv)" ], "bestaan": [ "V(intrans,inf)", "V(intrans,ott,1_of_2_of_3,mv)", "N(soort,ev,neut)", "V(intrans,verl_dw,onverv)" ], "holt": [ "V(intrans,ott,3,ev)" ], "doornemen": [ "V(trans,inf)" ], "Culturele": [ "Adj(attr,stell,verv_neut)" ], "rondkijkende": [ "V(intrans,teg_dw,verv_neut)" ], "slaagt": [ "V(intrans,ott,3,ev)" ], "bestaat": [ "V(intrans,ott,3,ev)" ], "veranderen": [ "V(intrans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "bidt": [ "V(trans,ott,3,ev)" ], "Echt": [ "Adj(adv,stell,onverv)" ], "bovenplank": [ "N(soort,ev,neut)" ], "vermijdbaarheid": [ "N(soort,ev,neut)" ], "OostDuitsland": [ "N(eigen,ev,neut)" ], "Workshop": [ "N(eigen,ev,neut)" ], "oogjes": [ "N(soort,mv,neut)" ], "onverbeterlijk": [ "Adj(adv,stell,onverv)" ], "taaie": [ "Adj(attr,stell,verv_neut)" ], "Engelse": [ "Adj(attr,stell,verv_neut)" ], "realiseren": [ "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "fungeren": [ "V(intrans,inf)" ], "extra's": [ "N(soort,mv,neut)" ], "dll": [ "N(soort,mv,neut)" ], "duizeligheid": [ "N(soort,ev,neut)" ], "overgeslagen": [ "V(trans,verl_dw,onverv)" ], "elementen": [ "N(soort,mv,neut)" ], "spitse": [ "Adj(attr,stell,verv_neut)" ], "zedelijkheid": [ "N(soort,ev,neut)" ], "miljoenenpubliek": [ "N(soort,ev,neut)" ], "geleend": [ "V(trans,verl_dw,onverv)" ], "displaced": [ "Adj(attr,stell,onverv)" ], "misdadigers": [ "N(soort,mv,neut)" ], "schijnt": [ "V(hulp_of_kopp,ott,3,ev)", "V(intrans,ott,3,ev)" ], "rafelig": [ "Adj(attr,stell,onverv)" ], "glanzend": [ "V(intrans,teg_dw,onverv)" ], "Trafalgar": [ "N(eigen,ev,neut)" ], "Hieruit": [ "Adv(pron,aanw)" ], "rechtvaardige": [ "Adj(attr,stell,verv_neut)" ], "Zuidvietnamese": [ "Adj(attr,stell,verv_neut)" ], "bier": [ "N(soort,ev,neut)" ], "verantwoordelijk": [ "Adj(attr,stell,onverv)" ], "volksvergadering": [ "N(soort,ev,neut)" ], "geweldig": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "Agadir": [ "N(eigen,ev,neut)" ], "kondigt": [ "V(trans,ott,3,ev)" ], "soort": [ "N(soort,ev,neut)" ], "verweet": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "West-Europa": [ "N(eigen,ev,neut)" ], "showbusinessmakers": [ "N(soort,mv,neut)" ], "effectieve": [ "Adj(attr,stell,verv_neut)" ], "apparaat": [ "N(soort,ev,neut)" ], "hond": [ "N(soort,ev,neut)" ], "confrontatie": [ "N(soort,ev,neut)" ], "Maastricht": [ "N(eigen,ev,neut)" ], "Martine": [ "N(eigen,ev,neut)" ], "'k": [ "Pron(per,1,ev,nom)" ], "'m": [ "Pron(per,3,ev,dat_of_acc)" ], "garage": [ "N(soort,ev,neut)" ], "'n": [ "Art(onbep,zijd_of_onzijd,neut)" ], "schone": [ "Adj(attr,stell,verv_neut)" ], "maatschappij-kritisch": [ "Adj(adv,stell,onverv)" ], "resp.": [ "Adj(adv,stell,onverv)" ], "'s": [ "Art(bep,zijd_of_onzijd,gen)" ], "etalages": [ "N(soort,mv,neut)" ], "'t": [ "Art(bep,onzijd,neut)", "Pron(per,3,ev,nom)", "N(eigen,ev,neut)", "Pron(per,3,ev,dat_of_acc)", "Pron(onbep,neut,zelfst)" ], "Marseille": [ "N(eigen,ev,neut)" ], "schonk": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "trekpleisters": [ "N(soort,mv,neut)" ], "beleven": [ "V(trans,inf)" ], "wasserij": [ "N(soort,ev,neut)" ], "nodig": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "kwartier": [ "N(soort,ev,neut)" ], "bloeien": [ "V(intrans,inf)" ], "Marco": [ "N(eigen,ev,neut)" ], "hoog": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "industrielen": [ "N(soort,mv,neut)" ], "betere": [ "Adj(attr,vergr,verv_neut)" ], "elke": [ "Pron(onbep,neut,attr)" ], "bekwaamste": [ "Adj(attr,overtr,verv_neut)" ], "besteedt": [ "V(trans,ott,3,ev)" ], "zacht": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "schoof": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "hoon": [ "N(soort,ev,neut)" ], "hoop": [ "N(soort,ev,neut)", "V(intrans,ott,1,ev)", "V(trans,ott,1,ev)" ], "hoor": [ "Int", "V(trans,ott,2,ev)", "V(trans,ott,1,ev)", "V(intrans,ott,1,ev)" ], "soepel": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "geduldig": [ "Adj(adv,stell,onverv)" ], "pilaren": [ "N(soort,mv,neut)" ], "duurde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "school": [ "N(soort,ev,neut)" ], "schoon": [ "Adj(attr,stell,onverv)" ], "sprong": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "schoot": [ "N(soort,ev,neut)" ], "tendens": [ "N(soort,ev,neut)" ], "doe": [ "V(trans,ott,2,ev)", "V(intrans,ott,1,ev)", "V(trans,imp)", "V(trans,ott,1,ev)" ], "Hildegard": [ "N(eigen,ev,neut)" ], "wetgeving": [ "N(soort,ev,neut)" ], "I'm": [ "Misc(vreemd)" ], "schooltijd": [ "N(soort,ev,neut)" ], "sax": [ "N(soort,ev,neut)" ], "Bukena": [ "N(eigen,ev,neut)" ], "dol": [ "Adj(attr,stell,onverv)" ], "Duys": [ "N(eigen,ev,neut)" ], "schenken": [ "V(trans,inf)" ], "dom": [ "Adj(attr,stell,onverv)" ], "vrede": [ "N(soort,ev,neut)" ], "heerlijks": [ "Adj(zelfst,stell,verv_gen)" ], "sterilisatie": [ "N(soort,ev,neut)" ], "luchthaven": [ "N(soort,ev,neut)" ], "onbeperkt": [ "Adj(adv,stell,onverv)" ], "concentratievermogen": [ "N(soort,ev,neut)" ], "fotograaf": [ "N(soort,ev,neut)" ], "kleinen": [ "Adj(zelfst,stell,verv_mv)" ], "makkelijk": [ "Adj(adv,stell,onverv)" ], "kleiner": [ "Adj(attr,vergr,onverv)" ], "Christoph": [ "N(eigen,ev,neut)" ], "oorverdovende": [ "Adj(attr,stell,verv_neut)" ], "spreekvoorbeeld": [ "N(soort,ev,neut)" ], "halen": [ "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "Voetgangers": [ "N(eigen,ev,neut)" ], "cent": [ "N(soort,ev,neut)" ], "borgsom": [ "N(soort,ev,neut)" ], "bevoogding": [ "N(soort,ev,neut)" ], "rugpatroon": [ "N(soort,ev,neut)" ], ",,": [ "Punc(hellip)" ], "dr.": [ "N(eigen,ev,neut)" ], "rationalisatie": [ "N(soort,ev,neut)" ], "spiegel": [ "N(soort,ev,neut)" ], "uitdrukkelijk": [ "Adj(adv,stell,onverv)" ], "eethuisjes": [ "N(soort,mv,neut)" ], "eigene": [ "Adj(zelfst,stell,verv_neut)" ], "geleerd": [ "V(trans,verl_dw,onverv)" ], "scheidenden": [ "V(intrans,teg_dw,verv_mv)" ], "ijzige": [ "Adj(attr,stell,verv_neut)" ], "vrees": [ "N(soort,ev,neut)", "V(trans,ott,1,ev)", "V(intrans,ott,1,ev)" ], "woningwetwoningen": [ "N(soort,mv,neut)" ], "meegenieten": [ "V(intrans,inf)" ], "knechtje": [ "N(soort,ev,neut)" ], "gebreide": [ "V(trans,verl_dw,verv_neut)" ], "teksten": [ "N(soort,mv,neut)" ], "inzat": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "uittrekken": [ "V(trans,inf)" ], "wereldkampioene": [ "N(soort,ev,neut)" ], "gezongen": [ "V(trans,verl_dw,onverv)" ], "reizen": [ "V(intrans,inf,subst)", "N(soort,mv,neut)" ], "kleden": [ "V(trans,inf)" ], "gevuld": [ "V(trans,verl_dw,onverv)" ], "glycogeen": [ "N(soort,ev,neut)" ], "ommuurd": [ "V(trans,verl_dw,onverv)" ], "kamer": [ "N(soort,ev,neut)" ], "bestelling": [ "N(soort,ev,neut)" ], "bijl": [ "N(soort,ev,neut)" ], "Peel": [ "N(eigen,ev,neut)" ], "Drugstore": [ "N(soort,ev,neut)" ], "studeren": [ "V(intrans,inf)" ], "deelt": [ "V(trans,ott,3,ev)" ], "Pasen": [ "N(eigen,ev,neut)" ], "echtgenoot": [ "N(soort,ev,neut)" ], "Salzburg": [ "N(eigen,ev,neut)" ], "passen": [ "V(intrans,ott,1_of_2_of_3,mv)", "V(intrans,inf)" ], "mishandelingen": [ "N(soort,mv,neut)" ], "George": [ "N(eigen,ev,neut)" ], "vampiers": [ "N(soort,mv,neut)" ], "waarderen": [ "V(trans,inf)" ], "luisterde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "gevluchte": [ "V(intrans,verl_dw,verv_neut)" ], "verhaaltje": [ "N(soort,ev,neut)" ], "mesterij": [ "N(soort,ev,neut)" ], "AVRO": [ "N(eigen,ev,neut)" ], "vroegrijpe": [ "Adj(attr,stell,verv_neut)" ], "Poswick": [ "N(eigen,ev,neut)" ], "rimboe": [ "N(soort,ev,neut)" ], "leegte": [ "N(soort,ev,neut)" ], "Zwitserse": [ "Adj(attr,stell,verv_neut)" ], "..": [ "Punc(hellip)" ], "gevraagd": [ "V(trans,verl_dw,onverv)", "V(intrans,verl_dw,onverv)" ], "kinderlijk": [ "Adj(attr,stell,onverv)" ], "Brabant": [ "N(eigen,ev,neut)" ], "vervoerde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "schrijft": [ "V(trans,ott,3,ev)", "V(trans,ott,2,ev)" ], "zijplanken": [ "N(soort,mv,neut)" ], "gebruikelijk": [ "Adj(attr,stell,onverv)" ], "zeef": [ "N(soort,ev,neut)" ], "Waardenburg": [ "N(eigen,ev,neut)" ], "geworden": [ "V(hulp_of_kopp,verl_dw,onverv)" ], "10.000": [ "Num(hoofd,bep,attr,onverv)" ], "verloofde": [ "N(soort,ev,neut)" ], "binten": [ "N(soort,mv,neut)" ], "afscheidingsprodukt": [ "N(soort,ev,neut)" ], "vanmorgen": [ "Adv(gew,geen_func,stell,onverv)" ], "opdrogen": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "meervoudige": [ "Adj(attr,stell,verv_neut)" ], "chauffeur": [ "N(soort,ev,neut)" ], "seq": [ "N(eigen,ev,neut)" ], "zeep": [ "N(soort,ev,neut)" ], "aanschouwelijk": [ "Adj(attr,stell,onverv)" ], "zeer": [ "Adv(gew,geen_func,stell,onverv)" ], "meegebrachte": [ "V(trans,verl_dw,verv_neut)" ], "Heemsteedse": [ "Adj(attr,stell,verv_neut)" ], "niet-kunstonderwijsinstelling": [ "N(soort,ev,neut)" ], "aandoenlijks": [ "Adj(attr,stell,verv_gen)" ], "sex": [ "N(soort,ev,neut)" ], "inzond": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "november": [ "N(eigen,ev,neut)" ], "reclameboodschappen": [ "N(soort,mv,neut)" ], "puntige": [ "Adj(attr,stell,verv_neut)" ], "luisteren": [ "V(intrans,inf)" ], "popgroepen": [ "N(soort,mv,neut)" ], "journalist": [ "N(soort,ev,neut)" ], "wantoestanden": [ "N(soort,mv,neut)" ], "understand": [ "Misc(vreemd)" ], "leerstoel": [ "N(soort,ev,neut)" ], "vervoeren": [ "V(trans,inf)" ], "armen": [ "N(soort,mv,neut)", "Adj(zelfst,stell,verv_mv)" ], "Maria": [ "N(eigen,ev,neut)" ], "Saharadomeinen": [ "N(soort,mv,neut)" ], "haar": [ "Pron(bez,3,ev,neut,attr)", "Pron(per,3,ev,dat_of_acc)", "N(soort,ev,neut)" ], "archipel": [ "N(soort,ev,neut)" ], "schaal": [ "N(soort,ev,neut)" ], "massa's": [ "N(soort,mv,neut)" ], "haat": [ "V(trans,ott,1,ev)", "V(trans,ott,3,ev)" ], "schuwen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "Avonds": [ "N(soort,ev,gen)" ], "henzelf": [ "Pron(per,3,mv,dat_of_acc)" ], "Hugo": [ "N(eigen,ev,neut)" ], "houd": [ "V(trans,imp)", "V(intrans,ott,1,ev)", "V(refl,ott,2,ev)" ], "gemiddelde": [ "Adj(attr,stell,verv_neut)", "Adj(zelfst,stell,verv_neut)" ], "uitlaat": [ "V(refl,ott,3,ev)" ], "drinkend": [ "V(intrans,teg_dw,onverv)" ], "dermate": [ "Adv(gew,aanw)" ], "zorgvuldig": [ "Adj(adv,stell,onverv)" ], "vrouwelijkheid": [ "N(soort,ev,neut)" ], "maquettes": [ "N(soort,mv,neut)" ], "berijdbare": [ "Adj(attr,stell,verv_neut)" ], "folkloristische": [ "Adj(attr,stell,verv_neut)" ], "gekenmerkt": [ "V(trans,verl_dw,onverv)" ], "hout": [ "N(soort,ev,neut)" ], "Van": [ "Prep(voor)", "N(eigen,mv,neut)", "N(eigen,ev,neut)" ], "slaapt": [ "V(intrans,ott,3,ev)" ], "God": [ "N(eigen,ev,neut)" ], "HOE": [ "Adv(gew,betr)" ], "gouden": [ "Adj(attr,stell,onverv)" ], "inzet": [ "N(soort,ev,neut)" ], "wasautomaat": [ "N(soort,ev,neut)" ], "kleurige": [ "Adj(attr,stell,verv_neut)" ], "Veertig": [ "Num(hoofd,bep,attr,onverv)" ], "drukbezette": [ "Adj(attr,stell,verv_neut)" ], "instelling": [ "N(soort,ev,neut)" ], "zegt": [ "V(trans,ott,3,ev)", "V(trans,ott,2,ev)" ], "voorjaar": [ "N(soort,ev,neut)" ], "opgaan": [ "V(trans,ott,1_of_2_of_3,mv)", "V(intrans,inf)" ], "waggelbenen": [ "N(soort,mv,neut)" ], "huiseigenaar": [ "N(soort,ev,neut)" ], "dun": [ "Adj(adv,stell,onverv)" ], "opleiding": [ "N(soort,ev,neut)" ], "reportage": [ "N(soort,ev,neut)" ], "opgaat": [ "V(intrans,ott,3,ev)" ], "wielrennen": [ "V(intrans,inf)" ], "dus": [ "Adv(gew,aanw)" ], "lachten": [ "V(intrans,ovt,1_of_2_of_3,mv)", "V(trans,ovt,1_of_2_of_3,mv)" ], "verwend": [ "V(trans,verl_dw,onverv)" ], "vanillesuiker": [ "N(soort,ev,neut)" ], "begreep": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "bink": [ "N(soort,ev,neut)" ], "pleziertje": [ "N(soort,ev,neut)" ], "onooglijke": [ "Adj(zelfst,stell,verv_neut)" ], "klasse": [ "N(soort,ev,neut)" ], "beesten": [ "N(soort,mv,neut)" ], "samengesteld": [ "V(trans,verl_dw,onverv)" ], "Huib": [ "N(eigen,ev,neut)" ], "woning": [ "N(soort,ev,neut)" ], "speurt": [ "V(intrans,ott,3,ev)" ], "kruid": [ "N(soort,ev,neut)" ], "Mortelmans": [ "N(eigen,ev,neut)" ], "orde": [ "N(soort,ev,neut)" ], "echtgenote": [ "N(soort,ev,neut)" ], "concentreert": [ "V(refl,ott,3,ev)" ], "Huis": [ "N(eigen,ev,neut)" ], "senator": [ "N(soort,ev,neut)" ], "koren": [ "N(soort,mv,neut)" ], "Marquet": [ "N(eigen,ev,neut)" ], "veiligheidssluitingen": [ "N(soort,mv,neut)" ], "ouderen": [ "Adj(zelfst,vergr,verv_neut)" ], "onderwereld": [ "N(soort,ev,neut)" ], "EEG-landen": [ "N(soort,mv,neut)" ], "levendig": [ "Adj(attr,stell,onverv)" ], "minderwaardig": [ "Adj(attr,stell,onverv)" ], "Nigeria-Nok": [ "N(eigen,ev,neut)" ], "voeden": [ "V(trans,inf)" ], "groei": [ "N(soort,ev,neut)" ], "onbevredigde": [ "Adj(attr,stell,verv_neut)" ], "herkenbaar": [ "Adj(attr,stell,onverv)" ], "Vernons": [ "N(eigen,ev,gen)" ], "showbis": [ "N(soort,ev,neut)" ], "aangaat": [ "V(trans,ott,3,ev)" ], "Marbert": [ "N(eigen,ev,neut)" ], "groen": [ "Adj(zelfst,stell,onverv)", "Adj(attr,stell,onverv)" ], "groep": [ "N(soort,ev,neut)" ], "parapsychologie": [ "N(soort,ev,neut)" ], "schade": [ "N(soort,ev,neut)" ], "zomaar": [ "Adv(gew,geen_func,stell,onverv)" ], "buurt": [ "N(soort,ev,neut)" ], "groet": [ "N(soort,ev,neut)" ], "reeds": [ "Adv(gew,geen_func,stell,onverv)" ], "recept": [ "N(soort,ev,neut)" ], "Christ": [ "N(eigen,ev,neut)" ], "spiegelglas": [ "N(soort,ev,neut)" ], "slapen": [ "V(intrans,inf)" ], "eigenhandig": [ "Adj(adv,stell,onverv)" ], "ruim": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "uitgevoerd": [ "V(trans,verl_dw,onverv)" ], "huiden": [ "N(soort,mv,neut)" ], "schalen": [ "N(soort,mv,neut)" ], "oren": [ "N(soort,mv,neut)" ], "ijlboden": [ "N(soort,mv,neut)" ], "kortstondige": [ "Adj(attr,stell,verv_neut)" ], "niettemin": [ "Adv(gew,geen_func,stell,onverv)" ], "afdelingslijst": [ "N(soort,ev,neut)" ], "hierbij": [ "Adv(pron,aanw)" ], "heftig": [ "Adj(adv,stell,onverv)" ], "Columbusstraat": [ "N(eigen,ev,neut)" ], "Sultan": [ "N(soort,ev,neut)" ], "gelang": [ "N(soort,ev,neut)" ], "2e": [ "Num(rang,bep,attr,onverv)" ], "katholiek": [ "N(soort,ev,neut)" ], "Scandinavische": [ "Adj(attr,stell,verv_neut)" ], "patronaatszaaltje": [ "N(soort,ev,neut)" ], "radioprogramma": [ "N(soort,ev,neut)" ], "volkskunst": [ "N(soort,ev,neut)" ], "bestand": [ "Adj(attr,stell,onverv)" ], "buitenwereld": [ "N(soort,ev,neut)" ], "aftandse": [ "Adj(attr,stell,verv_neut)" ], "interne": [ "Adj(attr,stell,verv_neut)" ], "verhoging": [ "N(soort,ev,neut)" ], "speelkamer": [ "N(soort,ev,neut)" ], "aangevraagde": [ "V(trans,verl_dw,verv_neut)" ], "politieke": [ "Adj(attr,stell,verv_neut)" ], "ski": [ "V(intrans,ott,1,ev)", "N(soort,ev,neut)" ], "Ver": [ "Adj(adv,stell,onverv)" ], "Rabenhauptstraat": [ "N(eigen,ev,neut)" ], "aanleg": [ "N(soort,ev,neut)" ], "3a": [ "N(eigen,ev,neut)" ], "Dietrich": [ "N(eigen,ev,neut)" ], "opvattingen": [ "N(soort,mv,neut)" ], "Dines": [ "N(eigen,ev,gen)" ], "opening": [ "N(soort,ev,neut)" ], "tussen": [ "Prep(voor)" ], "Hulp": [ "N(soort,ev,neut)" ], "voedselbronnen": [ "N(soort,mv,neut)" ], "uitgezonden": [ "V(trans,verl_dw,onverv)" ], "Patsajew": [ "N(eigen,ev,neut)" ], "krult": [ "V(intrans,ott,3,ev)" ], "zandbak": [ "N(soort,ev,neut)" ], "sla": [ "V(trans,imp)" ], "rukt": [ "V(intrans,ott,3,ev)" ], "beiden": [ "Num(hoofd,bep,zelfst,verv_mv)" ], "gecoiffeerd": [ "V(trans,verl_dw,onverv)" ], "zelf": [ "Pron(aanw,neut,attr,w_zelf)" ], "Richard": [ "N(eigen,ev,neut)" ], "circulerend": [ "V(intrans,teg_dw,onverv)" ], "vergezellen": [ "V(trans,inf)" ], "snelheidsmaniakken": [ "N(soort,mv,neut)" ], "verbeteren": [ "V(intrans,inf)" ], "Mascouvin": [ "N(eigen,ev,neut)" ], "Tsji": [ "N(eigen,ev,neut)" ], "Erik": [ "N(eigen,ev,neut)", "N(eigen,ev,gen)" ], "groenachtige": [ "Adj(attr,stell,verv_neut)" ], "nagellak": [ "N(soort,ev,neut)" ], "kitsch": [ "N(soort,ev,neut)" ], "meubilair": [ "N(soort,ev,neut)" ], "niemand": [ "Pron(onbep,neut,zelfst)" ], "hersenen": [ "N(soort,mv,neut)" ], "Martel": [ "N(eigen,ev,neut)" ], "betrokken": [ "V(trans,verl_dw,onverv)" ], "Verder": [ "Adj(adv,vergr,onverv)" ], "likeur": [ "N(soort,ev,neut)" ], "beperkten": [ "V(refl,ovt,1_of_2_of_3,mv)" ], "uithoudingsvermogen": [ "N(soort,ev,neut)" ], "Graham": [ "N(eigen,ev,neut)" ], "Doordat": [ "Conj(onder,met_fin)" ], "betaalden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "Reynolds": [ "N(eigen,ev,neut)" ], "functie": [ "N(soort,ev,neut)" ], "werkelijke": [ "Adj(attr,stell,verv_neut)" ], "stijlopvatting": [ "N(soort,ev,neut)" ], "Zelfs": [ "Adv(gew,geen_func,stell,onverv)" ], "Bangma": [ "N(eigen,ev,neut)" ], "tientallen": [ "N(soort,mv,neut)" ], "gevoeligheid": [ "N(soort,ev,neut)" ], "Schubert": [ "N(eigen,ev,neut)" ], "advocaat": [ "N(soort,ev,neut)" ], "verknoeid": [ "V(trans,verl_dw,onverv)" ], "goedgekeurd": [ "V(trans,verl_dw,onverv)" ], "Chinese": [ "Adj(attr,stell,verv_neut)" ], "velletje": [ "N(soort,ev,neut)" ], "loef": [ "N(soort,ev,neut)" ], "loei": [ "N(soort,ev,neut)" ], "teruggegaan": [ "V(intrans,verl_dw,onverv)" ], "advocaten": [ "N(soort,mv,neut)" ], "Nauwelijks": [ "Adv(gew,geen_func,stell,onverv)" ], "konflikten": [ "N(soort,mv,neut)" ], "spiegels": [ "N(soort,mv,neut)" ], "geroepen": [ "V(trans,verl_dw,onverv)" ], "vandoor": [ "Adv(gew,geen_func,stell,onverv)" ], "synoniem": [ "Adj(attr,stell,onverv)" ], "bits": [ "Adj(attr,stell,onverv)" ], "bijeenzoeken": [ "V(trans,inf)" ], "laatsgenoemde": [ "Adj(attr,stell,verv_neut)" ], "blaffen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "noblesse": [ "N(soort,ev,neut)" ], "eindeloos": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "huidje": [ "N(soort,ev,neut)" ], "diefstallen": [ "N(soort,mv,neut)" ], "groeiend": [ "V(intrans,teg_dw,onverv)" ], "schrijnende": [ "V(intrans,teg_dw,verv_neut)" ], "eenzaam": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "doorbreken": [ "V(trans,inf)" ], "verbrandt": [ "V(trans,ott,3,ev)" ], "verorberen": [ "V(trans,inf)" ], "stilte": [ "N(soort,ev,neut)" ], "WIE": [ "Pron(betr,neut,zelfst)" ], "seksualiteit": [ "N(soort,ev,neut)" ], "bulderstem": [ "N(soort,ev,neut)" ], "Werkgroep": [ "N(eigen,ev,neut)" ], "WIJ": [ "Pron(per,1,mv,nom)" ], "gebleven": [ "V(hulp_of_kopp,verl_dw,onverv)" ], "tranen": [ "N(soort,mv,neut)" ], "Allebei": [ "Num(hoofd,bep,zelfst,onverv)" ], "som": [ "N(soort,ev,neut)" ], "cosmeticahuizen": [ "N(soort,mv,neut)" ], "kleuter-diertje": [ "N(soort,ev,neut)" ], "Martha": [ "N(eigen,ev,neut)" ], "rechterkant": [ "N(soort,ev,neut)" ], "boekjes": [ "N(soort,mv,neut)" ], "lollige": [ "Adj(attr,stell,verv_neut)" ], "Exacte": [ "Adj(attr,stell,verv_neut)" ], "stijlcitaten": [ "N(soort,mv,neut)" ], "schalks": [ "Adj(adv,stell,onverv)" ], "armoe": [ "N(soort,ev,neut)" ], "geef": [ "V(trans,ott,1,ev)", "V(trans,imp)" ], "zowel": [ "Conj(neven)" ], "bewusteloosheid": [ "N(soort,ev,neut)" ], "verwensing": [ "N(soort,ev,neut)" ], "gemeenschap": [ "N(soort,ev,neut)" ], "geuit": [ "V(trans,verl_dw,onverv)" ], "termen": [ "N(soort,mv,neut)" ], "Hollandse": [ "Adj(attr,stell,verv_neut)" ], "eigener": [ "Pron(aanw,gen,attr,w_eigen)" ], "orchideeen": [ "N(soort,mv,neut)" ], "geel": [ "Adj(attr,stell,onverv)", "Adj(zelfst,stell,onverv)" ], "hiernamaals": [ "N(soort,ev,neut)" ], "geen": [ "Pron(onbep,neut,attr)" ], "gekend": [ "V(trans,verl_dw,onverv)" ], "onderzoek": [ "N(soort,ev,neut)" ], "theologen": [ "N(soort,mv,neut)" ], "daarvoor": [ "Adv(pron,aanw)" ], "reeks": [ "N(soort,ev,neut)" ], "champagne": [ "N(soort,ev,neut)" ], "Marsh": [ "N(eigen,ev,neut)" ], "geschoffeld": [ "V(trans,verl_dw,onverv)" ], "32,95": [ "Num(hoofd,bep,attr,onverv)" ], "daarmee": [ "Adv(pron,aanw)" ], "Sproei": [ "V(intrans,imp)" ], "opstond": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "herinnerde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "ventje": [ "N(soort,ev,neut)" ], "verste": [ "Adj(attr,overtr,verv_neut)" ], "geniaal": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "mens-mens": [ "N(soort,ev,neut)" ], "profiteren": [ "V(intrans,inf)", "V(intrans,ott,1_of_2_of_3,mv)" ], "praktische": [ "Adj(attr,stell,verv_neut)" ], "Bomanssaus": [ "N(soort,ev,neut)" ], "oorlog": [ "N(soort,ev,neut)" ], "Martin": [ "N(eigen,ev,neut)" ], "boord": [ "N(soort,ev,neut)" ], "half": [ "Adj(attr,stell,onverv)", "Num(hoofd,bep,attr,onverv)", "Adj(adv,stell,onverv)" ], "onberoerd": [ "Adj(attr,stell,onverv)" ], "Marbella": [ "N(eigen,ev,neut)" ], "gezeten": [ "V(trans,verl_dw,onverv)", "V(intrans,verl_dw,onverv)" ], "sieraden": [ "N(soort,mv,neut)" ], "leeuwen": [ "N(soort,mv,neut)" ], "spraken": [ "V(intrans,ovt,1_of_2_of_3,mv)", "V(trans,ovt,1_of_2_of_3,mv)" ], "slootwater": [ "N(soort,ev,neut)" ], "Peru": [ "N(eigen,ev,neut)" ], "jachtgeweren": [ "N(soort,mv,neut)" ], "toekwam": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "viooltjes": [ "N(soort,mv,neut)" ], "verbeterd": [ "V(intrans,verl_dw,onverv)" ], "gromt": [ "V(intrans,ott,3,ev)" ], "gekaapt": [ "V(trans,verl_dw,onverv)" ], "werkelijk": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "droevig": [ "Adj(adv,stell,onverv)" ], "dusdanig": [ "Pron(aanw,neut,zelfst)" ], "hals": [ "N(soort,ev,neut)" ], "dokken": [ "V(intrans,inf)" ], "geplaatst": [ "V(trans,verl_dw,onverv)" ], "sprake": [ "N(soort,ev,neut)", "N(soort,ev,dat)" ], "Heuff": [ "N(eigen,ev,neut)" ], "fluisterde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Westduitse": [ "Adj(attr,stell,verv_neut)" ], "grond": [ "N(soort,ev,neut)" ], "herinneren": [ "V(trans,inf)" ], "risico": [ "N(soort,ev,neut)" ], "handwerkje": [ "N(soort,ev,neut)" ], "Marty": [ "N(eigen,ev,neut)" ], "geleerde": [ "Adj(zelfst,stell,verv_neut)" ], "omvang": [ "N(soort,ev,neut)" ], "Volkomen": [ "Adj(adv,stell,onverv)" ], "voortdurende": [ "V(intrans,teg_dw,verv_neut)" ], "Ascott": [ "N(eigen,ev,neut)" ], "verwondingen": [ "N(soort,mv,neut)" ], "directeur": [ "N(soort,ev,neut)" ], "vreemd": [ "Adj(attr,stell,onverv)" ], "feitelijk": [ "Adj(adv,stell,onverv)" ], "artsen": [ "N(soort,mv,neut)" ], "respectievelijk": [ "Adj(adv,stell,onverv)" ], "bevinden": [ "V(refl,ott,1_of_2_of_3,mv)" ], "rondhangende": [ "V(intrans,teg_dw,verv_neut)" ], "fixer-leden": [ "N(soort,mv,neut)" ], "snelt": [ "V(intrans,ott,3,ev)" ], "toneelspelen": [ "V(intrans,inf)" ], "Klasen": [ "N(eigen,ev,neut)" ], "dienstplichtigen": [ "Adj(zelfst,stell,verv_mv)" ], "spiegelzusters": [ "N(soort,mv,neut)" ], "hand": [ "N(soort,ev,neut)" ], "halve": [ "Adj(attr,stell,verv_neut)" ], "klassenmaatschappij": [ "N(soort,ev,neut)" ], "vezel": [ "N(soort,ev,neut)" ], "zogenaamde": [ "Adj(attr,stell,verv_neut)" ], "vandaag": [ "Adv(gew,geen_func,stell,onverv)" ], "opperstrateeg": [ "N(soort,ev,neut)" ], "groot": [ "Adj(attr,stell,onverv)" ], "skiinstructeurs": [ "N(soort,mv,neut)" ], "veroordelen": [ "V(trans,inf)" ], "smekend": [ "V(intrans,teg_dw,onverv)" ], "vandaan": [ "Adv(deel_adv)" ], "verleenden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "nestelt": [ "V(refl,ott,3,ev)" ], "profit": [ "N(eigen,ev,neut)" ], "gelucht": [ "V(trans,verl_dw,onverv)" ], "vandaar": [ "Adv(gew,aanw)" ], "lachende": [ "V(intrans,teg_dw,verv_neut)" ], "onrechte": [ "N(soort,ev,dat)" ], "vormen": [ "N(soort,mv,neut)", "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "Coldwater": [ "N(eigen,ev,neut)" ], "sta": [ "V(intrans,ott,1,ev)", "V(hulp,ott,2,ev)" ], "Minder": [ "Num(hoofd,onbep,attr,vergr,onverv)" ], "cursus": [ "N(soort,ev,neut)" ], "rust": [ "N(soort,ev,neut)" ], "garnituur": [ "N(soort,ev,neut)" ], "polyesterhars": [ "N(soort,ev,neut)" ], "eiland": [ "N(soort,ev,neut)" ], "theologie": [ "N(soort,ev,neut)" ], "lokt": [ "V(trans,ott,3,ev)" ], "Annemiek": [ "N(eigen,ev,neut)" ], "gebruik": [ "N(soort,ev,neut)", "V(trans,imp)" ], "dieet": [ "N(soort,ev,neut)" ], "geil": [ "N(soort,ev,neut)" ], "merkwaardig": [ "Adj(attr,stell,onverv)" ], "geboren": [ "Adj(attr,stell,onverv)" ], "schoolmeestersbestaan": [ "N(soort,ev,neut)" ], "verlopen": [ "V(intrans,inf)", "V(intrans,ott,1_of_2_of_3,mv)" ], "akker": [ "N(soort,ev,neut)" ], "opgang": [ "N(soort,ev,neut)" ], "regenbui": [ "N(soort,ev,neut)" ], "vakken": [ "N(soort,mv,neut)" ], "wind-gordels": [ "N(soort,mv,neut)" ], "image": [ "N(soort,ev,neut)" ], "elektrische": [ "Adj(attr,stell,verv_neut)" ], "baanbrekend": [ "Adj(attr,stell,onverv)" ], "leren": [ "V(trans,inf)", "Adj(attr,stell,onverv)", "V(intrans,inf)", "V(trans,ott,1_of_2_of_3,mv)", "V(hulp,inf)" ], "krijgen": [ "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "Redding": [ "Misc(vreemd)" ], "overgegaan": [ "V(trans,verl_dw,onverv)" ], "drinkperiode": [ "N(soort,ev,neut)" ], "letterlijke": [ "Adj(attr,stell,verv_neut)" ], "barbaren": [ "N(soort,mv,neut)" ], "pootjes": [ "N(soort,mv,neut)" ], "sneller": [ "Adj(adv,vergr,onverv)", "Adj(attr,vergr,onverv)" ], "prettige": [ "Adj(attr,stell,verv_neut)" ], "Vos": [ "N(eigen,ev,gen)" ], "gedachte": [ "N(soort,ev,neut)" ], "geliefden": [ "Adj(zelfst,stell,verv_mv)" ], "beschadigingen": [ "N(soort,mv,neut)" ], "zenuwen": [ "N(soort,mv,neut)" ], "tinten": [ "N(soort,mv,neut)" ], "gerimpelde": [ "Adj(attr,stell,verv_neut)" ], "poppen": [ "N(soort,mv,neut)" ], "klonk": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "Naika": [ "N(eigen,ev,neut)" ], "beroemde": [ "Adj(attr,stell,verv_neut)" ], "parafernalia": [ "N(soort,mv,neut)" ], "gaven": [ "V(trans,ovt,1_of_2_of_3,mv)", "N(soort,mv,neut)", "V(refl,ovt,1_of_2_of_3,mv)" ], "expert": [ "N(soort,ev,neut)" ], "gerimpelds": [ "V(trans,verl_dw,verv_gen)" ], "volwaardige": [ "Adj(attr,stell,verv_neut)" ], "inzake": [ "Prep(voor)" ], "m.a.v.o.": [ "N(soort,ev,neut)" ], "bewijs": [ "N(soort,ev,neut)", "V(trans,ott,1,ev)" ], "naaide": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Tanger": [ "N(eigen,ev,neut)" ], "Kevin": [ "N(eigen,ev,neut)" ], "fier": [ "Adj(adv,stell,onverv)" ], "auteur": [ "N(soort,ev,neut)" ], "keukenmeester": [ "N(soort,ev,neut)" ], "dertig": [ "Num(hoofd,bep,zelfst,onverv)", "Num(hoofd,bep,attr,onverv)" ], "bestudering": [ "N(soort,ev,neut)" ], "afstaan": [ "V(trans,inf)" ], "Edith": [ "N(eigen,ev,neut)" ], "zenden": [ "V(intrans,inf,subst)", "V(intrans,inf)", "V(intrans,ott,1_of_2_of_3,mv)" ], "kloof": [ "V(intrans,ovt,1_of_2_of_3,ev)", "N(soort,ev,neut)" ], "gymnastiekoefeningen": [ "N(soort,mv,neut)" ], "long": [ "N(soort,ev,neut)" ], "zestien": [ "Num(hoofd,bep,attr,onverv)" ], "verdere": [ "Adj(attr,vergr,verv_neut)" ], "oorspronkelijke": [ "Adj(attr,stell,verv_neut)" ], "geld": [ "N(soort,ev,neut)" ], "hard": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "ontmoetingen": [ "N(soort,mv,neut)" ], "hare": [ "Pron(bez,3,ev,neut,attr)" ], "opgeklopte": [ "V(trans,verl_dw,verv_neut)" ], "Gabin": [ "N(eigen,ev,neut)" ], "ingaan": [ "V(intrans,inf)" ], "gespietst": [ "V(trans,verl_dw,onverv)" ], "opstaan": [ "V(intrans,inf)" ], "eikehouten": [ "Adj(attr,stell,onverv)" ], "naaien": [ "V(trans,ott,1_of_2_of_3,mv)" ], "gangbare": [ "Adj(zelfst,stell,verv_neut)" ], "harp": [ "N(soort,ev,neut)" ], "onderhoudskosten": [ "N(soort,mv,neut)" ], "korte": [ "Adj(attr,stell,verv_neut)" ], "hart": [ "N(soort,ev,neut)" ], "ruwe": [ "Adj(attr,stell,verv_neut)" ], "kaarsen": [ "N(soort,mv,neut)" ], "Merci": [ "Int" ], "tabak": [ "N(soort,ev,neut)" ], "lood": [ "N(soort,ev,neut)" ], "Nigeria": [ "N(eigen,ev,neut)" ], "toegepast": [ "V(trans,verl_dw,onverv)" ], "weerloosheid": [ "N(soort,ev,neut)" ], "voetganger": [ "N(soort,ev,neut)" ], "brommer": [ "N(soort,ev,neut)" ], "A.": [ "N(eigen,ev,neut)" ], "versjacherd": [ "V(trans,verl_dw,onverv)" ], "Verstond": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "grote": [ "Adj(attr,stell,verv_neut)" ], "loop": [ "N(soort,ev,neut)", "V(intrans,ott,1,ev)", "V(hulp,ott,1,ev)" ], "hervinden": [ "V(trans,ott,1_of_2_of_3,mv)" ], "klopt": [ "V(intrans,ott,3,ev)" ], "brengt": [ "V(trans,ott,3,ev)" ], "toenemen": [ "V(intrans,ott,1_of_2_of_3,mv)", "V(intrans,inf,subst)" ], "vreten": [ "V(trans,inf)", "V(intrans,inf)" ], "verkeerd": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "huisgenoten": [ "N(soort,mv,neut)" ], "mallotige": [ "Adj(attr,stell,verv_neut)" ], "thuiskomt": [ "V(intrans,ott,3,ev)" ], "graad": [ "N(soort,ev,neut)" ], "verlustigen": [ "V(refl,inf)" ], "graaf": [ "N(soort,ev,neut)" ], "Stube": [ "N(soort,ev,neut)" ], "graag": [ "Adj(adv,stell,onverv)" ], "gemonteerd": [ "V(trans,verl_dw,onverv)" ], "enerzijds": [ "Adv(gew,geen_func,stell,onverv)" ], "eenjarige": [ "Adj(attr,stell,verv_neut)" ], "verkeert": [ "V(intrans,ott,3,ev)" ], "inhaalde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "karabijn": [ "N(soort,ev,neut)" ], "zwaait": [ "V(intrans,ott,3,ev)" ], "een": [ "Art(onbep,zijd_of_onzijd,neut)", "Num(hoofd,bep,attr,onverv)", "N(eigen,ev,neut)", "Num(hoofd,bep,zelfst,onverv)" ], "meteen": [ "Adv(gew,geen_func,stell,onverv)" ], "gieten": [ "V(intrans,inf)" ], "achtjarig": [ "Adj(attr,stell,onverv)" ], "eer": [ "N(soort,ev,neut)" ], "B.": [ "N(eigen,ev,neut)", "N(soort,ev,neut)" ], "PISUISSE": [ "N(eigen,ev,neut)" ], "AR": [ "N(eigen,ev,neut)" ], "doeltreffend": [ "Adj(adv,stell,onverv)" ], "zangers": [ "N(soort,mv,neut)" ], "roodharige": [ "Adj(attr,stell,verv_neut)", "Adj(zelfst,stell,verv_neut)" ], "eindeloze": [ "Adj(attr,stell,verv_neut)" ], "barbarij": [ "N(soort,ev,neut)" ], "hate": [ "Misc(vreemd)" ], "kapster": [ "N(soort,ev,neut)" ], "geurt": [ "V(intrans,ott,3,ev)" ], "stemmen": [ "N(soort,mv,neut)", "V(intrans,inf)" ], "tehuizen": [ "N(soort,mv,neut)" ], "opponent": [ "N(soort,ev,neut)" ], "erover": [ "Adv(pron,onbep)" ], "toetertjes": [ "N(soort,mv,neut)" ], "Angeles": [ "N(eigen,ev,neut)" ], "konkelkritiek": [ "N(soort,ev,neut)" ], "glimt": [ "V(intrans,ott,3,ev)" ], "Gelei-achtige": [ "Adj(attr,stell,verv_neut)" ], "Af": [ "Adv(gew,geen_func,stell,onverv)" ], "teruggestuurd": [ "V(trans,verl_dw,onverv)" ], "Fysiek": [ "Adj(attr,stell,onverv)" ], "station": [ "N(soort,ev,neut)" ], "Noortjes": [ "N(eigen,ev,gen)" ], "Al": [ "Pron(onbep,neut,attr)", "Conj(onder,met_fin)", "Adv(gew,geen_func,stell,onverv)" ], "fluutertjes": [ "N(soort,mv,neut)" ], "huilt": [ "V(intrans,ott,2,ev)" ], "standjes": [ "N(soort,mv,neut)" ], "HUBERT": [ "N(eigen,ev,neut)" ], "probeert": [ "V(hulp,ott,3,ev)" ], "teams": [ "N(soort,mv,neut)" ], "hartstreek": [ "N(soort,ev,neut)" ], "Laotiaanse": [ "Adj(attr,stell,verv_neut)" ], "eindigen": [ "V(intrans,inf)" ], "mede-weten": [ "N(soort,ev,neut)" ], "tegenstellingen": [ "N(soort,mv,neut)" ], "Hertogin": [ "N(eigen,ev,neut)" ], "koperplaat": [ "N(soort,ev,neut)" ], "antwoord": [ "N(soort,ev,neut)" ], "zuiden": [ "N(soort,ev,neut)" ], "nulpunt": [ "N(soort,ev,neut)" ], "Had": [ "V(hulp,ovt,1_of_2_of_3,ev)" ], "leerlingen": [ "N(soort,mv,neut)" ], "eenzame": [ "Adj(attr,stell,verv_neut)" ], "Hai": [ "Int" ], "Boyce": [ "N(eigen,ev,neut)" ], "structuren": [ "N(soort,mv,neut)" ], "helft": [ "N(soort,ev,neut)" ], "dubbelspel": [ "N(soort,ev,neut)" ], "leidende": [ "V(intrans,teg_dw,verv_neut)" ], "blazende": [ "V(intrans,teg_dw,verv_neut)" ], "Bratwursten": [ "N(soort,mv,neut)" ], "ventte": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "functionerende": [ "V(intrans,teg_dw,verv_neut)" ], "Ringo": [ "N(eigen,ev,neut)" ], "codenaam": [ "N(soort,ev,neut)" ], "twaalftal": [ "N(soort,ev,neut)" ], "kordate": [ "Adj(attr,stell,verv_neut)" ], "geinteresseerd": [ "V(trans,verl_dw,onverv)" ], "toilet": [ "N(soort,ev,neut)" ], "ondergoed": [ "N(soort,ev,neut)" ], "beneden": [ "Adv(gew,geen_func,stell,onverv)", "Prep(voor)" ], "theepot": [ "N(soort,ev,neut)" ], "fijn": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "boodschappentas": [ "N(soort,ev,neut)" ], "schuift": [ "V(trans,ott,3,ev)" ], "Nederlander": [ "N(soort,ev,neut)" ], "selecteren": [ "V(trans,inf)" ], "misverstanden": [ "N(soort,mv,neut)" ], "lamsvlees": [ "N(soort,ev,neut)" ], "levensjaar": [ "N(soort,ev,neut)" ], "ondervonden": [ "V(trans,verl_dw,onverv)" ], "19-jarige": [ "Adj(attr,stell,verv_neut)" ], "serviesgoed": [ "N(soort,ev,neut)" ], "vriendelijkheid": [ "N(soort,ev,neut)" ], "bakens": [ "N(soort,mv,neut)" ], "verzekeringsmaatschappij": [ "N(soort,ev,neut)" ], "lippen": [ "N(soort,mv,neut)" ], "Haltes": [ "N(soort,mv,neut)" ], "DE": [ "Art(bep,zijd_of_mv,neut)" ], "voorjaarskuur": [ "N(soort,ev,neut)" ], "IBM": [ "N(eigen,ev,neut)" ], "producent": [ "N(soort,ev,neut)" ], "toelaatbaar": [ "Adj(attr,stell,onverv)" ], "mensenheugenis": [ "N(soort,ev,neut)" ], "Co": [ "N(eigen,ev,neut)" ], "grandioos": [ "Adj(attr,stell,onverv)" ], "volgen": [ "V(trans,inf)" ], "huisje": [ "N(soort,ev,neut)" ], "ingrepen": [ "N(soort,mv,neut)" ], "gevangenis": [ "N(soort,ev,neut)" ], "fiks": [ "Adj(attr,stell,onverv)" ], "buurman": [ "N(soort,ev,neut)" ], "Kameroen": [ "N(eigen,ev,neut)" ], "woon-ellende": [ "N(soort,ev,neut)" ], "klaar": [ "Adj(attr,stell,onverv)" ], "opgave": [ "N(soort,ev,neut)" ], "verschaft": [ "V(trans,ott,3,ev)" ], "bestanddelen": [ "N(soort,mv,neut)" ], "Tobias": [ "N(eigen,ev,neut)" ], "bustes": [ "N(soort,mv,neut)" ], "prinses": [ "N(soort,ev,neut)" ], "draaide": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "regels": [ "N(soort,mv,neut)" ], "geneesmiddelen": [ "N(soort,mv,neut)" ], "regelt": [ "V(trans,ott,3,ev)" ], "De": [ "Art(bep,zijd_of_mv,neut)", "N(eigen,ev,neut)" ], "zoowel": [ "Conj(neven)" ], "honderd": [ "Num(hoofd,bep,attr,onverv)" ], "incognito": [ "Adv(gew,geen_func,stell,onverv)" ], "weggenomen": [ "V(trans,verl_dw,onverv)" ], "EN": [ "Conj(neven)" ], "eis": [ "N(soort,ev,neut)" ], "Dr": [ "N(eigen,ev,gen)" ], "Bout": [ "N(eigen,ev,neut)" ], "beat-bandjes": [ "N(soort,mv,neut)" ], "behuizing": [ "N(soort,ev,neut)" ], "j.l.": [ "Adj(attr,stell,onverv)" ], "piccolo's": [ "N(soort,mv,neut)" ], "film": [ "N(soort,ev,neut)" ], "diens": [ "Pron(aanw,gen,attr)" ], "dient": [ "V(hulp,ott,3,ev)", "V(hulp,ott,2,ev)", "V(intrans,ott,3,ev)", "V(trans,ott,3,ev)" ], "laag": [ "Adj(attr,stell,onverv)", "N(soort,ev,neut)" ], "Tsaad": [ "N(eigen,ev,neut)" ], "trekken": [ "V(trans,inf)", "V(intrans,ott,1_of_2_of_3,mv)", "V(trans,ott,1_of_2_of_3,mv)" ], "valse": [ "Adj(attr,stell,verv_neut)" ], "normaal": [ "Adj(attr,stell,onverv)" ], "diepvrieskreeftestaarten": [ "N(soort,mv,neut)" ], "Ed": [ "N(eigen,ev,neut)" ], "bedoelde": [ "V(trans,verl_dw,verv_neut)" ], "kameleonachtige": [ "Adj(attr,stell,verv_neut)" ], "nvsh": [ "N(eigen,ev,neut)" ], "laat": [ "V(hulp,ott,3,ev)", "V(trans,ott,3,ev)", "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)", "V(trans,ott,2,ev)", "V(intrans,imp)", "V(hulp,ott,1,ev)", "V(trans,imp)", "V(hulp,imp)" ], "vereniging": [ "N(soort,ev,neut)" ], "supporters": [ "N(soort,mv,neut)" ], "draaien": [ "V(trans,inf)", "V(intrans,inf)" ], "tuinen": [ "N(soort,mv,neut)" ], "transseksualisme": [ "N(soort,ev,neut)" ], "gevoeld": [ "V(trans,verl_dw,onverv)", "V(refl,verl_dw,onverv)" ], "academische": [ "Adj(attr,stell,verv_neut)" ], "En": [ "Conj(neven)" ], "zelflezen": [ "N(soort,ev,neut)" ], "G.": [ "N(eigen,ev,neut)" ], "Er": [ "Adv(gew,er)", "Adv(pron,er)" ], "kantonrechter": [ "N(soort,ev,neut)" ], "Vervolgens": [ "Adv(gew,geen_func,stell,onverv)" ], "oktober": [ "N(eigen,ev,neut)" ], "uitte": [ "V(refl,ovt,1_of_2_of_3,ev)" ], "Back": [ "N(eigen,ev,neut)" ], "Chippendale": [ "N(eigen,ev,neut)" ], "tennis": [ "N(soort,ev,neut)" ], "Heb": [ "V(trans,ott,2,ev)", "V(hulp,ott,2,ev)" ], "hippies": [ "N(soort,mv,neut)" ], "verschijningsvormen": [ "N(soort,mv,neut)" ], "Hee": [ "Int" ], "Piccadilly": [ "N(eigen,ev,neut)" ], "synthetische": [ "Adj(attr,stell,verv_neut)" ], "bevroren": [ "V(intrans,verl_dw,onverv)" ], "verliefden": [ "Adj(zelfst,stell,verv_mv)" ], "koelkasten": [ "N(soort,mv,neut)" ], "nagaan": [ "V(intrans,inf)", "V(trans,inf)" ], "diepe": [ "Adj(attr,stell,verv_neut)" ], "vertonen": [ "V(trans,inf,subst)" ], "Schaaf": [ "V(trans,imp)" ], "bedoelen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "Het": [ "Pron(onbep,neut,zelfst)", "N(eigen,ev,neut)", "Art(bep,onzijd,neut)", "Pron(per,3,ev,nom)" ], "H.": [ "N(eigen,ev,neut)" ], "operaties": [ "N(soort,mv,neut)" ], "onevenwichtig": [ "Adj(attr,stell,onverv)" ], "kunstenaar": [ "N(soort,ev,neut)" ], "ontzenuwen": [ "V(trans,inf)" ], "poort": [ "N(soort,ev,neut)" ], "Yoko": [ "N(eigen,ev,neut)" ], "gepakt": [ "V(trans,verl_dw,onverv)" ], "linksen": [ "Adj(zelfst,stell,verv_mv)" ], "overwaait": [ "V(intrans,ott,3,ev)" ], "gedrag": [ "N(soort,ev,neut)" ], "Adjudant": [ "N(soort,ev,neut)" ], "Python": [ "N(eigen,ev,neut)" ], "biezen": [ "N(soort,mv,neut)" ], "vooraanstaand": [ "Adj(attr,stell,onverv)" ], "Doolaard": [ "N(eigen,ev,neut)" ], "meegenomen": [ "V(trans,verl_dw,onverv)" ], "rampschip": [ "N(soort,ev,neut)" ], "problematiek": [ "N(soort,ev,neut)" ], "aangegrepen": [ "V(trans,verl_dw,onverv)" ], "daartussenin": [ "Adv(pron,aanw)" ], "psychologische": [ "Adj(attr,stell,verv_neut)" ], "Ga": [ "V(hulp,imp)", "V(intrans,imp)", "V(intrans,ott,2,ev)" ], "zuigopening": [ "N(soort,ev,neut)" ], "bewegen": [ "V(trans,inf,subst)", "V(intrans,inf,subst)" ], "elf": [ "Num(hoofd,bep,zelfst,onverv)", "Num(hoofd,bep,attr,onverv)" ], "Suriname": [ "N(eigen,ev,neut)" ], "Generaal": [ "N(soort,ev,neut)" ], "producers": [ "N(soort,mv,neut)" ], "elk": [ "Pron(onbep,neut,attr)" ], "enscrenering": [ "N(soort,ev,neut)" ], "beschikking": [ "N(soort,ev,neut)" ], "wetenschap": [ "N(soort,ev,neut)" ], "tennisbanen": [ "N(soort,mv,neut)" ], "midden-": [ "N(soort,ev,neut)" ], "inzonderheid": [ "Adv(gew,geen_func,stell,onverv)" ], "toonaangevende": [ "Adj(attr,stell,verv_neut)" ], "armoedige": [ "Adj(attr,stell,verv_neut)" ], "Go": [ "N(eigen,ev,neut)" ], "H.B.": [ "N(eigen,ev,neut)" ], "gevernist": [ "V(trans,verl_dw,onverv)" ], "spiraaltje": [ "N(soort,ev,neut)" ], "Kuitert": [ "N(eigen,ev,neut)" ], "afgestroopt": [ "V(trans,verl_dw,onverv)" ], "geholpen": [ "V(trans,verl_dw,onverv)" ], "verleidelijke": [ "Adj(attr,stell,verv_neut)" ], "rockerbenden": [ "N(soort,mv,neut)" ], "helle": [ "Adj(attr,stell,verv_neut)" ], "onvermijdelijke": [ "Adj(attr,stell,verv_neut)" ], "Westerbouwing": [ "N(eigen,ev,neut)" ], "geur": [ "N(soort,ev,neut)" ], "Belgen": [ "N(soort,mv,neut)" ], "wacht": [ "V(trans,ott,1,ev)" ], "Zeeland": [ "N(eigen,ev,neut)" ], "Belger": [ "N(eigen,ev,neut)" ], "koetsen": [ "N(soort,mv,neut)" ], "Surinaamse": [ "Adj(attr,stell,verv_neut)" ], "dessinateur": [ "N(soort,ev,neut)" ], "huishoudelijke": [ "Adj(attr,stell,verv_neut)" ], "nuchter": [ "Adj(adv,stell,onverv)" ], "steenboknaturen": [ "N(soort,mv,neut)" ], "roklengte": [ "N(soort,ev,neut)" ], "visvangst": [ "N(soort,ev,neut)" ], "vuil": [ "N(soort,ev,neut)", "Adj(attr,stell,onverv)" ], "Ho": [ "N(eigen,ev,neut)" ], "clandestiene": [ "Adj(attr,stell,verv_neut)" ], "ongelukken": [ "N(soort,mv,neut)" ], "schelen": [ "V(trans,inf)" ], "chaotisch": [ "Adj(adv,stell,onverv)" ], "IV": [ "N(eigen,ev,neut)" ], "vliegtuig": [ "N(soort,ev,neut)" ], "schuilt": [ "V(intrans,ott,3,ev)" ], "zwaard": [ "N(soort,ev,neut)" ], "kinders": [ "N(soort,mv,neut)" ], "ene": [ "Pron(onbep,neut,attr)", "Num(hoofd,bep,attr,onverv)" ], "eng": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "Ching-wang": [ "N(eigen,ev,neut)" ], "gehanteerd": [ "V(trans,verl_dw,onverv)" ], "licht": [ "N(soort,ev,neut)", "Adj(adv,stell,onverv)" ], "Mao-Chinees": [ "N(soort,ev,neut)" ], "Ik": [ "Pron(per,1,ev,nom)" ], "vermogen": [ "N(soort,ev,neut)" ], "Zomaar": [ "Adv(gew,geen_func,stell,onverv)" ], "In": [ "Prep(voor)", "N(eigen,ev,neut)" ], "gazons": [ "N(soort,mv,neut)" ], "hulpstukjes": [ "N(soort,mv,neut)" ], "VARA": [ "N(eigen,ev,neut)" ], "gedetineerde": [ "V(trans,verl_dw,verv_neut)" ], "Is": [ "V(hulp_of_kopp,ott,3,ev)" ], "Slapen": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "afgeblazen": [ "V(trans,verl_dw,onverv)" ], "geinspireerd": [ "V(trans,verl_dw,onverv)" ], "volledige": [ "Adj(attr,stell,verv_neut)" ], "Vermeng": [ "V(trans,imp)" ], "beurszaal": [ "N(soort,ev,neut)" ], "KNMV": [ "N(eigen,ev,neut)" ], "Eugenie": [ "N(eigen,ev,neut)" ], "Jaren": [ "N(soort,mv,neut)" ], "tal": [ "N(soort,ev,neut)" ], "verborgen": [ "V(trans,verl_dw,onverv)" ], "denkwijzen": [ "N(soort,mv,neut)" ], "verloedering": [ "N(soort,ev,neut)" ], "Ja": [ "Int" ], "pastoor": [ "N(soort,ev,neut)" ], "pruikenmateriaal": [ "N(soort,ev,neut)" ], "tas": [ "N(soort,ev,neut)" ], "Hij": [ "Pron(per,3,ev,nom)" ], "zaadje": [ "N(soort,ev,neut)" ], "belonen": [ "V(intrans,inf)" ], "Je": [ "Pron(per,2,ev,nom)", "Pron(onbep,neut,zelfst)", "Pron(bez,2,ev,neut,attr)" ], "nuchtere": [ "Adj(attr,stell,verv_neut)" ], "begripsvermogen": [ "N(soort,ev,neut)" ], "relaas": [ "N(soort,ev,neut)" ], "Johns": [ "N(eigen,ev,neut)" ], "bevriezen": [ "V(trans,inf)" ], "telefoonlijst": [ "N(soort,ev,neut)" ], "Jo": [ "N(eigen,ev,neut)" ], "landbevolking": [ "N(soort,ev,neut)" ], "hooibergen": [ "N(soort,mv,neut)" ], "Dominee": [ "N(soort,ev,neut)" ], "kapstok": [ "N(soort,ev,neut)" ], "tbc": [ "N(soort,ev,neut)" ], "modieus": [ "Adj(adv,stell,onverv)" ], "gymnastiekonderdeel": [ "N(soort,ev,neut)" ], "lage": [ "Adj(attr,stell,verv_neut)" ], "aantrekkelijkheid": [ "N(soort,ev,neut)" ], "luchtvaartmaatschappijen": [ "N(soort,mv,neut)" ], "machtigen": [ "Adj(zelfst,stell,verv_mv)" ], "Gezagvoerder": [ "N(soort,ev,neut)" ], "afstand": [ "N(soort,ev,neut)" ], "regendruppels": [ "N(soort,mv,neut)" ], "vetstroken": [ "N(soort,mv,neut)" ], "Talloze": [ "Pron(onbep,neut,attr)" ], "getuigden": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "tbr": [ "N(soort,ev,neut)" ], "meubelstuk": [ "N(soort,ev,neut)" ], "Apple": [ "N(eigen,ev,neut)" ], "Bussum": [ "N(eigen,ev,neut)" ], "onaantastbaar": [ "Adj(attr,stell,onverv)" ], "jezuietenkoppen": [ "N(soort,mv,neut)" ], "Vliet": [ "N(eigen,ev,neut)" ], "gevoerd": [ "V(trans,verl_dw,onverv)" ], "inactiviteit": [ "N(soort,ev,neut)" ], "brandkasten": [ "N(soort,mv,neut)" ], "Natuurlijk": [ "Adj(adv,stell,onverv)" ], "M.": [ "N(eigen,ev,neut)" ], "bleekheid": [ "N(soort,ev,neut)" ], "reinigingsmiddel": [ "N(soort,ev,neut)" ], "apparaten": [ "N(soort,mv,neut)" ], "vult": [ "V(trans,ott,3,ev)" ], "ingang": [ "N(soort,ev,neut)" ], "opstand": [ "N(soort,ev,neut)" ], "Tussen": [ "Prep(voor)" ], "Belgie": [ "N(eigen,ev,neut)" ], "Gergweis": [ "N(eigen,ev,neut)" ], "bejaarde": [ "Adj(attr,stell,verv_neut)", "Adj(zelfst,stell,verv_neut)" ], "muurtje": [ "N(soort,ev,neut)" ], "dieren": [ "N(soort,mv,neut)" ], "energie": [ "N(soort,ev,neut)" ], "Vitus": [ "N(eigen,ev,neut)" ], "aanvaarding": [ "N(soort,ev,neut)" ], "broers": [ "N(soort,mv,neut)" ], "La": [ "N(eigen,ev,neut)" ], "Beiden": [ "Num(hoofd,bep,zelfst,verv_mv)" ], "geprobeerd": [ "V(hulp,verl_dw,onverv)" ], "pruimen": [ "V(trans,inf)" ], "vernietigende": [ "V(intrans,teg_dw,verv_neut)" ], "Le": [ "N(eigen,ev,neut)" ], "ideaal": [ "N(soort,ev,neut)" ], "douzaine": [ "N(soort,ev,neut)" ], "kunsthandelaren": [ "N(soort,mv,neut)" ], "helpt": [ "V(trans,ott,3,ev)", "V(intrans,ott,3,ev)" ], "opdracht": [ "N(soort,ev,neut)" ], "duren": [ "V(trans,inf)", "V(intrans,ott,1_of_2_of_3,mv)" ], "idealen": [ "N(soort,mv,neut)" ], "geniet": [ "V(trans,ott,3,ev)" ], "ongelukkig": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "gemeente": [ "N(soort,ev,neut)" ], "swingt": [ "V(intrans,ott,3,ev)" ], "zingende": [ "V(intrans,teg_dw,verv_neut)" ], "Luns": [ "N(eigen,ev,neut)" ], "langzaam": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "ongetwijfeld": [ "Adv(gew,geen_func,stell,onverv)" ], "dragen": [ "V(trans,inf)" ], "poes": [ "N(soort,ev,neut)" ], "puntjes": [ "N(soort,mv,neut)" ], "bakje": [ "N(soort,ev,neut)" ], "studenten": [ "N(soort,mv,neut)" ], "pasten": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "geantwoord": [ "V(trans,verl_dw,onverv)" ], "kleurvlakken": [ "N(soort,mv,neut)" ], "eilandjes": [ "N(soort,mv,neut)" ], "borduurschortje": [ "N(soort,ev,neut)" ], "economische": [ "Adj(attr,stell,verv_neut)" ], "bevruchting": [ "N(soort,ev,neut)" ], "Bartholomeusnacht": [ "N(eigen,ev,neut)" ], "Duitse": [ "Adj(attr,stell,verv_neut)" ], "Lloyd": [ "N(eigen,ev,neut)" ], "bepleiten": [ "V(trans,inf)" ], "Ma": [ "N(eigen,ev,neut)" ], "uitgegaan": [ "V(trans,verl_dw,onverv)" ], "clienten": [ "N(soort,mv,neut)" ], "country": [ "Misc(vreemd)" ], "taboe": [ "N(soort,ev,neut)" ], "ere": [ "N(soort,ev,neut)" ], "velde": [ "N(soort,ev,dat)" ], "erg": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)", "N(soort,ev,neut)" ], "lekkere": [ "Adj(attr,stell,verv_neut)" ], "bestuursleden": [ "N(soort,mv,neut)" ], "wipte": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "aanboden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "werpen": [ "V(refl,ott,1_of_2_of_3,mv)", "V(trans,ott,1_of_2_of_3,mv)" ], "blootleggen": [ "V(trans,inf)" ], "loopbaan": [ "N(soort,ev,neut)" ], "opgedrongen": [ "V(trans,verl_dw,onverv)" ], "kosak": [ "N(soort,ev,neut)" ], "Jongeren": [ "Adj(zelfst,vergr,verv_neut)" ], "veiligheidsredenen": [ "N(soort,mv,neut)" ], "York": [ "N(eigen,ev,neut)" ], "voorzitter": [ "N(soort,ev,neut)" ], "durft": [ "V(trans,ott,3,ev)" ], "noemt": [ "V(trans,ott,3,ev)" ], "lekkers": [ "N(soort,ev,neut)" ], "Marsiaanse": [ "Adj(attr,stell,verv_neut)" ], "verbrandingen": [ "N(soort,mv,neut)" ], "oplossingen": [ "N(soort,mv,neut)" ], "verrukkelijk": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "personal": [ "Misc(vreemd)" ], "ten": [ "Prep(voor)" ], "rechtgebogen": [ "V(trans,verl_dw,onverv)" ], "metten": [ "N(soort,mv,neut)" ], "nabloeiertje": [ "N(soort,ev,neut)" ], "ter": [ "Prep(voor)" ], "Na": [ "Prep(voor)" ], "opgevouwen": [ "V(trans,verl_dw,onverv)" ], "collega's": [ "N(soort,mv,neut)" ], "opstapt": [ "V(intrans,ott,3,ev)" ], "Tegenover": [ "Prep(voor)" ], "heuvel": [ "N(soort,ev,neut)" ], "verantwoordelijkheidsbesef": [ "N(soort,ev,neut)" ], "opgebouwd": [ "V(trans,verl_dw,onverv)" ], "vuile": [ "Adj(attr,stell,verv_neut)" ], "onttrekken": [ "V(refl,inf)" ], "sober": [ "Adj(attr,stell,onverv)" ], "kneusjesservice": [ "N(soort,ev,neut)" ], "organisme": [ "N(soort,ev,neut)" ], "velen": [ "Num(hoofd,onbep,zelfst,stell,verv_mv)" ], "onderricht": [ "N(soort,ev,neut)" ], "snelde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "P.": [ "N(eigen,ev,neut)" ], "secretaris-generaal": [ "N(soort,ev,neut)" ], "onderrichten": [ "V(trans,inf)" ], "beruchte": [ "Adj(attr,stell,verv_neut)" ], "nederlaag": [ "N(soort,ev,neut)" ], "Nu": [ "Adv(gew,aanw)" ], "slakkenfestijn": [ "N(soort,ev,neut)" ], "afgesloten": [ "V(trans,verl_dw,onverv)" ], "kunstgebit": [ "N(soort,ev,neut)" ], "keek": [ "V(intrans,ovt,1_of_2_of_3,ev)", "V(trans,ovt,1_of_2_of_3,ev)" ], "omgaan": [ "V(intrans,inf)" ], "keel": [ "N(soort,ev,neut)" ], "bezitters": [ "N(soort,mv,neut)" ], "vreemde": [ "Adj(attr,stell,verv_neut)", "Adj(zelfst,stell,verv_neut)" ], "smullen": [ "V(intrans,inf)" ], "huize": [ "N(soort,ev,neut)" ], "springen": [ "V(intrans,inf)" ], "omgaat": [ "V(intrans,ott,3,ev)" ], "Theems": [ "N(eigen,ev,neut)" ], "keer": [ "N(soort,ev,neut)" ], "haarcreme": [ "N(soort,ev,neut)" ], "kees": [ "N(eigen,ev,neut)" ], "Ingeborg": [ "N(eigen,ev,neut)" ], "bouwden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "Of": [ "Conj(neven)", "Conj(onder,met_fin)" ], "Oh": [ "N(eigen,ev,neut)", "Int" ], "schelle": [ "Adj(attr,stell,verv_neut)" ], "amandelen": [ "N(soort,mv,neut)" ], "geboden": [ "V(trans,verl_dw,onverv)" ], "kregen": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "Om": [ "Conj(onder,met_inf)", "Prep(voor)" ], "liggen": [ "V(intrans,ott,1_of_2_of_3,mv)", "V(hulp,inf)", "V(intrans,inf)" ], "Op": [ "Prep(voor)" ], "vrucht": [ "N(soort,ev,neut)" ], "dagen": [ "N(soort,mv,neut)" ], "ontbreken": [ "V(intrans,inf,subst)", "V(intrans,inf)", "Adj(attr,stell,onverv)", "V(intrans,ott,1_of_2_of_3,mv)" ], "overbevolking": [ "N(soort,ev,neut)" ], "Os": [ "N(eigen,ev,neut)" ], "bevruchte": [ "V(trans,verl_dw,verv_neut)" ], "Vrouwen": [ "N(soort,mv,neut)" ], "overbleven": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "koninklijk": [ "Adj(attr,stell,onverv)" ], "Wal": [ "N(eigen,ev,neut)" ], "rijdend": [ "V(trans,teg_dw,onverv)" ], "wijnkelder": [ "N(soort,ev,neut)" ], "theoloog": [ "N(soort,ev,neut)" ], "toeruikende": [ "V(intrans,teg_dw,verv_neut)" ], "normale": [ "Adj(attr,stell,verv_neut)" ], "beetje": [ "N(soort,ev,neut)" ], "horen": [ "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "Was": [ "V(hulp_of_kopp,ovt,1_of_2_of_3,ev)" ], "Hoe": [ "Adv(gew,betr)" ], "spreken": [ "V(intrans,ott,1_of_2_of_3,mv)", "V(trans,inf)", "V(intrans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "leden": [ "N(soort,mv,neut)" ], "Wat": [ "Pron(vrag,neut,attr)", "Pron(vrag,neut,zelfst)", "Pron(betr,neut,zelfst)" ], "sjieke": [ "Adj(attr,stell,verv_neut)" ], "droeg": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "opsporingswerk": [ "N(soort,ev,neut)" ], "arrogante": [ "Adj(attr,stell,verv_neut)" ], "conversatiezalen": [ "N(soort,mv,neut)" ], "Hot": [ "N(eigen,ev,neut)" ], "Arpege": [ "N(eigen,ev,neut)" ], "Rinus": [ "N(eigen,ev,neut)" ], "waarschijnlijkheid": [ "N(soort,ev,neut)" ], "Nederlandse": [ "Adj(attr,stell,verv_neut)" ], "overreden": [ "V(trans,verl_dw,onverv)" ], "geval": [ "N(soort,ev,neut)" ], "linksom": [ "Adv(gew,geen_func,stell,onverv)" ], "stukje": [ "N(soort,ev,neut)" ], "afblijven": [ "V(intrans,inf)" ], "the": [ "Misc(vreemd)", "N(eigen,ev,neut)" ], "marges": [ "N(soort,mv,neut)" ], "klank": [ "N(soort,ev,neut)" ], "zusjes": [ "N(soort,mv,neut)" ], "zorgelijke": [ "Adj(attr,stell,verv_neut)" ], "prinselijke": [ "Adj(attr,stell,verv_neut)" ], "besturen": [ "N(soort,mv,neut)" ], "verminkende": [ "V(intrans,teg_dw,verv_neut)" ], "tegelijk": [ "Adv(gew,geen_func,stell,onverv)" ], "kortgeschoren": [ "V(trans,verl_dw,onverv)" ], "Dalkonschildje": [ "N(soort,ev,neut)" ], "beelden": [ "V(trans,inf)" ], "provincie": [ "N(soort,ev,neut)" ], "patronen": [ "N(soort,mv,neut)" ], "Freud": [ "N(eigen,ev,neut)" ], "verheugen": [ "V(refl,inf)" ], "vergaderingen": [ "N(soort,mv,neut)" ], "land": [ "N(soort,ev,neut)" ], "coupe": [ "N(soort,ev,neut)" ], "Teken": [ "V(trans,imp)" ], "lang": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "Sint": [ "N(eigen,ev,gen)" ], "vriend": [ "N(soort,ev,neut)" ], "personen": [ "N(soort,mv,neut)" ], "droge": [ "Adj(attr,stell,verv_neut)" ], "specialisten": [ "N(soort,mv,neut)" ], "KNVB": [ "N(eigen,ev,neut)" ], "slijter": [ "N(soort,ev,neut)" ], "Vraag": [ "N(soort,ev,neut)" ], "eigenlijk": [ "Adj(adv,stell,onverv)" ], "leeftijdsgrens": [ "N(soort,ev,neut)" ], "waren": [ "V(hulp_of_kopp,ovt,1_of_2_of_3,mv)", "V(intrans,ovt,1_of_2_of_3,mv)" ], "Newsweek": [ "N(eigen,ev,neut)" ], "middeleeuwen": [ "N(eigen,mv,neut)" ], "schamel": [ "Adj(attr,stell,onverv)" ], "feitjes": [ "N(soort,mv,neut)" ], "ondergaan": [ "V(trans,verl_dw,onverv)" ], "Coast": [ "Misc(vreemd)" ], "schamen": [ "V(refl,inf)" ], "bestuderen": [ "V(trans,inf)" ], "stenen": [ "N(soort,mv,neut)", "Adj(attr,stell,onverv)" ], "Eitje": [ "N(eigen,ev,neut)" ], "Cremer-achtig": [ "Adj(attr,stell,onverv)" ], "e.v.a.": [ "Pron(onbep,neut,zelfst)" ], "vertrouwde": [ "Adj(attr,stell,verv_neut)", "V(trans,ovt,1_of_2_of_3,ev)", "V(trans,verl_dw,verv_neut)" ], "kapitein": [ "N(soort,ev,neut)" ], "noten": [ "N(soort,mv,neut)" ], "vocht": [ "N(soort,ev,neut)" ], "gebonden": [ "V(trans,verl_dw,onverv)" ], "geprezen": [ "V(trans,verl_dw,onverv)" ], "vervolgde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Officieel": [ "Adj(adv,stell,onverv)" ], "Lange": [ "Adj(attr,stell,verv_neut)" ], "alvorens": [ "Conj(onder,met_inf)" ], "onafhankelijke": [ "Adj(attr,stell,verv_neut)" ], "rockers": [ "N(soort,mv,neut)" ], "vuiligheid": [ "N(soort,ev,neut)" ], "tegenstelling": [ "N(soort,ev,neut)" ], "Vrouw": [ "N(soort,ev,neut)" ], "voorman": [ "N(soort,ev,neut)" ], "glimlachend": [ "V(intrans,teg_dw,onverv)" ], "Langs": [ "Prep(voor)" ], "beschrijft": [ "V(trans,ott,3,ev)" ], "kinderen": [ "N(soort,mv,neut)" ], "fragiel": [ "Adj(attr,stell,onverv)" ], "opschik": [ "N(soort,ev,neut)" ], "kringen": [ "N(soort,mv,neut)" ], "onverdroten": [ "Adj(adv,stell,onverv)" ], "Gunnersbury": [ "N(eigen,ev,neut)" ], "Wel": [ "Adv(gew,geen_func,stell,onverv)", "Int" ], "openbaart": [ "V(refl,ott,3,ev)" ], "pols": [ "N(soort,ev,neut)" ], "verfrissend": [ "V(intrans,teg_dw,onverv)" ], "driehoek": [ "N(soort,ev,neut)" ], "Vormen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "Wet": [ "N(eigen,ev,neut)" ], "ertoe": [ "Adv(pron,onbep)" ], "vertrouwen": [ "V(intrans,inf)", "V(trans,inf)", "N(soort,ev,neut)" ], "gehaald": [ "V(trans,verl_dw,onverv)" ], "mineur": [ "Adv(gew,geen_func,stell,onverv)" ], "Te": [ "Prep(voor_inf)" ], "rijders": [ "N(soort,mv,neut)" ], "lippenstift": [ "N(soort,ev,neut)" ], "Sukarno": [ "N(eigen,ev,neut)" ], "financieringsprobleem": [ "N(soort,ev,neut)" ], "magere": [ "Adj(attr,stell,verv_neut)" ], "zakjes": [ "N(soort,mv,neut)" ], "hoofdpijn": [ "N(soort,ev,neut)" ], "vrijmoedig": [ "Adj(adv,stell,onverv)" ], "almaar": [ "Adv(gew,geen_func,stell,onverv)" ], "vuur": [ "N(soort,ev,neut)" ], "geven": [ "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "archeologische": [ "Adj(attr,stell,verv_neut)" ], "geschakeerd": [ "V(trans,verl_dw,onverv)" ], "gestuurd": [ "V(trans,verl_dw,onverv)" ], "ellende": [ "N(soort,ev,neut)" ], "reacties": [ "N(soort,mv,neut)" ], "weerszijden": [ "N(soort,mv,neut)" ], "Bart": [ "N(eigen,ev,neut)" ], "Aziatische": [ "Adj(attr,stell,verv_neut)" ], "Goudse": [ "Adj(attr,stell,verv_neut)" ], "knappe": [ "Adj(attr,stell,verv_neut)" ], "geleund": [ "V(intrans,verl_dw,onverv)" ], "Canadezen": [ "N(soort,mv,neut)" ], "winkeltje": [ "N(soort,ev,neut)" ], "pond": [ "N(soort,ev,neut)" ], "Ruyterkade": [ "N(eigen,ev,neut)" ], "VN": [ "N(eigen,ev,neut)" ], "W.": [ "N(eigen,ev,neut)" ], "Weatherby": [ "N(eigen,ev,neut)" ], "vakantie": [ "N(soort,ev,neut)" ], "parfumerie": [ "N(soort,ev,neut)" ], "Kleuren": [ "N(soort,mv,neut)" ], "Uw": [ "Pron(bez,2,ev,neut,attr)" ], "begroeten": [ "V(trans,ott,1_of_2_of_3,mv)" ], "Pisai": [ "N(eigen,ev,neut)" ], "vuist": [ "N(soort,ev,neut)" ], "pornograaf": [ "N(soort,ev,neut)" ], "zwangere": [ "Adj(attr,stell,verv_neut)", "Adj(zelfst,stell,verv_neut)" ], "Speenhoff": [ "N(eigen,ev,neut)" ], "ontevreden": [ "Adj(attr,stell,onverv)" ], "beeldje": [ "N(soort,ev,neut)" ], "Uiteraard": [ "Adv(gew,geen_func,stell,onverv)" ], "acteren": [ "V(intrans,inf)" ], "WE": [ "Pron(per,1,mv,nom)" ], "opgaf": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Hun": [ "Pron(bez,3,mv,neut,attr)" ], "roastbeef": [ "N(soort,ev,neut)" ], "vergelijken": [ "V(trans,inf)" ], "thermosfles": [ "N(soort,ev,neut)" ], "diertjes": [ "N(soort,mv,neut)" ], "huwelijksleven": [ "N(soort,ev,neut)" ], "snelle": [ "Adj(attr,stell,verv_neut)" ], "nesten": [ "N(soort,mv,neut)" ], "kroniek": [ "N(soort,ev,neut)" ], "proefschrift": [ "N(soort,ev,neut)" ], "menopauze": [ "N(soort,ev,neut)" ], "Ojik": [ "N(eigen,ev,neut)" ], "zicht": [ "N(soort,ev,neut)" ], "verwisseld": [ "V(trans,verl_dw,onverv)" ], "bolhamer": [ "N(soort,ev,neut)" ], "meisjesachtige": [ "Adj(attr,stell,verv_neut)" ], "liftbel": [ "N(soort,ev,neut)" ], "gluiperigheid": [ "N(soort,ev,neut)" ], "Dergelijke": [ "Pron(aanw,dat,attr)" ], "poot": [ "N(soort,ev,neut)" ], "heel-jonge": [ "Adj(attr,stell,verv_neut)" ], "ideale": [ "Adj(attr,stell,verv_neut)" ], "officials": [ "N(soort,mv,neut)" ], "mengden": [ "V(refl,ovt,1_of_2_of_3,mv)" ], "vrouwenarts": [ "N(soort,ev,neut)" ], "We": [ "Pron(per,1,mv,nom)" ], "last": [ "N(soort,ev,neut)" ], "content": [ "Adj(attr,stell,onverv)" ], "gaandeweg": [ "Adv(gew,geen_func,stell,onverv)" ], "vriest": [ "V(trans,ott,3,ev)" ], "winterse": [ "Adj(attr,stell,verv_neut)" ], "foto's": [ "N(soort,mv,neut)" ], "Bijvoorbeeld": [ "Adv(gew,geen_func,stell,onverv)" ], "chagrijnig": [ "Adj(attr,stell,onverv)" ], "Rizzio": [ "N(eigen,ev,neut)" ], "Wie": [ "Pron(betr,neut,zelfst)", "Pron(vrag,neut,attr)" ], "inkonsekwent": [ "Adj(attr,stell,onverv)" ], "toe": [ "Prep(comb)", "Adv(gew,geen_func,stell,onverv)", "Adv(deel_v)", "Adv(deel_adv)" ], "Wij": [ "Pron(per,1,mv,nom)" ], "tof": [ "Adj(attr,stell,onverv)" ], "twintigste": [ "Num(rang,bep,attr,onverv)" ], "opgevroren": [ "V(intrans,verl_dw,onverv)" ], "suggesties": [ "N(soort,mv,neut)" ], "Wil": [ "V(hulp,ott,3,ev)", "N(eigen,ev,neut)", "V(intrans,ott,3,ev)", "V(hulp,ott,2,ev)" ], "Wim": [ "N(eigen,ev,neut)" ], "begaafdheden": [ "N(soort,mv,neut)" ], "Afwezig": [ "Adj(adv,stell,onverv)" ], "vanzelf": [ "Adv(gew,geen_func,stell,onverv)" ], "ton": [ "N(soort,ev,neut)" ], "top": [ "N(soort,ev,neut)" ], "gitaren": [ "N(soort,mv,neut)" ], "dochter": [ "N(soort,ev,neut)" ], "onaangenaam": [ "Adj(attr,stell,onverv)" ], "kent": [ "V(trans,ott,3,ev)", "V(trans,ott,2,ev)" ], "exclusieve": [ "Adj(attr,stell,verv_neut)" ], "tot": [ "Prep(voor)", "Conj(onder,met_fin)", "Adv(deel_v)" ], "Volvo": [ "N(soort,ev,neut)" ], "Brengt": [ "V(trans,ott,3,ev)" ], "Ford": [ "N(eigen,ev,neut)" ], "bevrijdende": [ "V(intrans,teg_dw,verv_neut)" ], "Keizer": [ "N(eigen,ev,neut)" ], "geweten": [ "V(trans,verl_dw,onverv)" ], "langzame": [ "Adj(attr,stell,verv_neut)" ], "uitgebleekt": [ "V(intrans,verl_dw,onverv)" ], "don't": [ "Misc(vreemd)" ], "vitaliteit": [ "N(soort,ev,neut)" ], "Callas": [ "N(eigen,ev,neut)" ], "vrolijk": [ "Adj(adv,stell,onverv)" ], "Welke": [ "Pron(vrag,neut,zelfst)" ], "geweest": [ "V(hulp_of_kopp,verl_dw,onverv)", "V(intrans,verl_dw,onverv)" ], "herademing": [ "N(soort,ev,neut)" ], "lounge": [ "N(soort,ev,neut)" ], "gewaarborgd": [ "V(trans,verl_dw,onverv)" ], "jonge": [ "Adj(attr,stell,verv_neut)", "N(eigen,ev,neut)" ], "doorliep": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "krankzinnig": [ "Adj(attr,stell,onverv)" ], "drong": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "Sydney": [ "N(eigen,ev,neut)" ], "Jiffy-7": [ "N(eigen,ev,neut)" ], "hoogtepunt": [ "N(soort,ev,neut)" ], "beklemtonen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "openhartig": [ "Adj(adv,stell,onverv)" ], "Meisjes": [ "N(soort,mv,neut)" ], "vertrek": [ "N(soort,ev,neut)" ], "bazig": [ "Adj(attr,stell,onverv)" ], "hoeden": [ "N(soort,mv,neut)" ], "volstrekt": [ "Adj(adv,stell,onverv)" ], "meesterwerk": [ "N(soort,ev,neut)" ], "free-lance": [ "Adj(attr,stell,onverv)" ], "inwonende": [ "V(intrans,teg_dw,verv_neut)" ], "Clos": [ "N(eigen,ev,neut)" ], "daarnet": [ "Adv(gew,aanw)" ], "strooie": [ "Adj(attr,stell,verv_neut)" ], "afgedaan": [ "V(intrans,verl_dw,onverv)" ], "port": [ "N(soort,ev,neut)" ], "geventileerd": [ "V(trans,verl_dw,onverv)" ], "carnavalskapel": [ "N(soort,ev,neut)" ], "L'hirondelle": [ "N(eigen,ev,neut)" ], "nummerbordje": [ "N(soort,ev,neut)" ], "motorfederatie": [ "N(soort,ev,neut)" ], "warme": [ "Adj(attr,stell,verv_neut)" ], "droog": [ "Adj(attr,stell,onverv)" ], "Ze": [ "Pron(per,3,ev_of_mv,nom)" ], "posten": [ "N(soort,mv,neut)", "V(intrans,inf)" ], "gewoonlijk": [ "Adj(adv,stell,onverv)" ], "leefgemeenschappen": [ "N(soort,mv,neut)" ], "Gedurende": [ "Prep(voor)" ], "aanstelling": [ "N(soort,ev,neut)" ], "geruchten": [ "N(soort,mv,neut)" ], "afgelopen": [ "V(intrans,verl_dw,onverv)" ], "pose": [ "N(soort,ev,neut)" ], "droom": [ "N(soort,ev,neut)", "V(intrans,ott,1,ev)" ], "barbecuehoek": [ "N(soort,ev,neut)" ], "Foto": [ "N(soort,ev,neut)" ], "vriendenkring": [ "N(soort,ev,neut)" ], "veertien": [ "Num(hoofd,bep,attr,onverv)" ], "Zo": [ "Adv(gew,aanw)", "Conj(onder,met_fin)" ], "procent": [ "N(soort,ev,neut)" ], "doodslag": [ "N(soort,ev,neut)" ], "onblusbare": [ "Adj(attr,stell,verv_neut)" ], "sekse": [ "N(soort,ev,neut)" ], "transvestisme": [ "N(soort,ev,neut)" ], "Yale": [ "N(eigen,ev,neut)" ], "omdat": [ "Conj(onder,met_fin)" ], "huwelijkse": [ "Adj(attr,stell,verv_neut)" ], "spannende": [ "Adj(attr,stell,verv_neut)" ], "kamers": [ "N(soort,mv,neut)" ], "post": [ "N(soort,ev,neut)" ], "bepaald": [ "Adv(gew,geen_func,stell,onverv)", "Pron(onbep,neut,attr)", "V(trans,verl_dw,onverv)" ], "glaasjes": [ "N(soort,mv,neut)" ], "vrouwenzaken": [ "N(soort,mv,neut)" ], "automobilist": [ "N(soort,ev,neut)" ], "vierde": [ "Num(rang,bep,attr,onverv)" ], "karaat": [ "N(soort,ev,neut)" ], "vormden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "IEDEREEN": [ "Pron(onbep,neut,zelfst)" ], "brede": [ "Adj(attr,stell,verv_neut)" ], "rauwe": [ "Adj(attr,stell,verv_neut)" ], "regulator": [ "N(soort,ev,neut)" ], "roltrap": [ "N(soort,ev,neut)" ], "bepaalt": [ "V(trans,ott,3,ev)" ], "Amsterdam": [ "N(eigen,ev,neut)" ], "volslanke": [ "Adj(attr,stell,verv_neut)" ], "meubel": [ "N(soort,ev,neut)" ], "leerling-verpleegster": [ "N(soort,ev,neut)" ], "omgang": [ "N(soort,ev,neut)" ], "plukte": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "onmogelijk": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "kerk": [ "N(soort,ev,neut)" ], "kern": [ "N(soort,ev,neut)" ], "bergmassief": [ "N(soort,ev,neut)" ], "breed": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "Grimaldi": [ "N(eigen,ev,neut)" ], "ikonen": [ "N(soort,mv,neut)" ], "kennelijk": [ "Adj(adv,stell,onverv)" ], "eenieder": [ "Pron(onbep,neut,zelfst)" ], "strookt": [ "V(intrans,ott,3,ev)" ], "oceaan": [ "N(soort,ev,neut)" ], "paar": [ "N(soort,ev,neut)" ], "razendsnel": [ "Adj(attr,stell,onverv)" ], "doorgebracht": [ "V(trans,verl_dw,onverv)" ], "Inderdaad": [ "Adv(gew,geen_func,stell,onverv)" ], "Welnu": [ "Int" ], "anti": [ "Prep(voor)" ], "Oorspronkelijk": [ "Adj(adv,stell,onverv)" ], "zwembassin": [ "N(soort,ev,neut)" ], "Marceline": [ "N(eigen,ev,neut)" ], "bewuste": [ "Adj(attr,stell,verv_neut)" ], "aftakeling": [ "N(soort,ev,neut)" ], "mooie": [ "Adj(attr,stell,verv_neut)" ], "copulerend": [ "V(intrans,teg_dw,onverv)" ], "factor": [ "N(soort,ev,neut)" ], "veelal": [ "Adv(gew,geen_func,stell,onverv)" ], "pour": [ "Misc(vreemd)" ], "veroorzaken": [ "V(trans,inf)" ], "voorraad": [ "N(soort,ev,neut)" ], "vergist": [ "V(refl,imp)", "V(refl,verl_dw,onverv)", "V(refl,ott,3,ev)" ], "pogingen": [ "N(soort,mv,neut)" ], "kleinbedrijf": [ "N(soort,ev,neut)" ], "moois": [ "Adj(zelfst,stell,verv_gen)" ], "boenen": [ "V(trans,inf)" ], "Uitvoerig": [ "Adj(adv,stell,onverv)" ], "mogelijkheden": [ "N(soort,mv,neut)" ], "werkers": [ "N(soort,mv,neut)" ], "vragen": [ "V(trans,inf)", "V(intrans,inf)", "N(soort,mv,neut)" ], "ingenieur": [ "N(soort,ev,neut)" ], "rekent": [ "V(trans,ott,3,ev)" ], "voren": [ "Adv(gew,geen_func,stell,onverv)" ], "verdragen": [ "V(trans,inf)", "N(soort,mv,neut)" ], "beloften": [ "N(soort,mv,neut)" ], "uitkomen": [ "V(trans,inf)" ], "Aangezien": [ "Conj(onder,met_fin)" ], "begrepen": [ "V(trans,verl_dw,onverv)" ], "werkten": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "meeste": [ "Num(hoofd,onbep,attr,overtr,verv_neut)" ], "francs": [ "N(soort,mv,neut)" ], "bijna": [ "Adv(gew,geen_func,stell,onverv)" ], "koffers": [ "N(soort,mv,neut)" ], "narcist": [ "N(soort,ev,neut)" ], "schadelijk": [ "Adj(attr,stell,onverv)" ], "snelst": [ "Adj(adv,vergr,onverv)" ], "vergulde": [ "V(trans,verl_dw,verv_neut)" ], "idioot": [ "Adj(attr,stell,onverv)" ], "morgen": [ "Adv(gew,geen_func,stell,onverv)", "N(soort,ev,neut)" ], "NCRV": [ "N(eigen,ev,neut)" ], "besprak": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "stroomt": [ "V(intrans,ott,3,ev)" ], "hoedje": [ "N(soort,ev,neut)" ], "western": [ "Misc(vreemd)" ], "aansprakelijk": [ "Adj(attr,stell,onverv)" ], "douche": [ "N(soort,ev,neut)" ], "ritme": [ "N(soort,ev,neut)" ], "alleen": [ "Adv(gew,geen_func,stell,onverv)", "Adj(attr,stell,onverv)" ], "hechtdraden": [ "N(soort,mv,neut)" ], "beurtelings": [ "Adj(adv,stell,onverv)" ], "pikante": [ "Adj(attr,stell,verv_neut)" ], "gegrillde": [ "V(trans,verl_dw,verv_neut)" ], "oerwoud": [ "N(soort,ev,neut)" ], "omslaan": [ "V(intrans,inf)" ], "geestdriftig": [ "Adj(adv,stell,onverv)" ], "beschikt": [ "V(intrans,ott,3,ev)" ], "onwelzijn": [ "N(soort,ev,neut)" ], "nieuwe": [ "Adj(attr,stell,verv_neut)", "Adj(zelfst,stell,verv_neut)" ], "lopende": [ "V(intrans,teg_dw,verv_neut)" ], "studerend": [ "V(intrans,teg_dw,onverv)" ], "keus": [ "N(soort,ev,neut)" ], "afschuw": [ "N(soort,ev,neut)" ], "Club": [ "N(soort,ev,neut)" ], "nieuws": [ "N(soort,ev,neut)", "Adj(attr,stell,verv_gen)" ], "ondergang": [ "N(soort,ev,neut)" ], "vliegtuigen": [ "N(soort,mv,neut)" ], "voeten": [ "N(soort,mv,neut)" ], "beker": [ "N(soort,ev,neut)" ], "herhaalde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "hotels": [ "N(soort,mv,neut)" ], "Limmel": [ "N(eigen,ev,neut)" ], "kleinvee": [ "N(soort,ev,neut)" ], "Newyorkse": [ "Adj(attr,stell,verv_neut)" ], "Wien": [ "Misc(vreemd)" ], "omarming": [ "N(soort,ev,neut)" ], "zoveel-duizend": [ "Num(hoofd,bep,zelfst,onverv)" ], "Buffalo": [ "N(eigen,ev,neut)" ], "gelegen": [ "V(intrans,verl_dw,onverv)" ], "Boyfriend": [ "N(eigen,ev,neut)" ], "verkregen": [ "V(trans,verl_dw,onverv)" ], "vertoonden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "middeleeuwse": [ "Adj(attr,stell,verv_neut)" ], "bedreigen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "koste": [ "N(soort,ev,dat)" ], "kaarten": [ "N(soort,mv,neut)" ], "benaderd": [ "V(trans,verl_dw,onverv)" ], "brein": [ "N(soort,ev,neut)" ], "beklom": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "algemeen": [ "N(soort,ev,neut)" ], "prostitutie": [ "N(soort,ev,neut)" ], "goedkopere": [ "Adj(attr,vergr,verv_neut)" ], "Lehzen": [ "N(eigen,ev,neut)" ], "Comedie": [ "N(eigen,ev,neut)" ], "bungalowachtige": [ "Adj(attr,stell,verv_neut)" ], "facetten": [ "N(soort,mv,neut)" ], "beleving": [ "N(soort,ev,neut)" ], "kwestie": [ "N(soort,ev,neut)" ], "werkloos": [ "Adj(attr,stell,onverv)" ], "vloed": [ "N(soort,ev,neut)" ], "portemonnaie": [ "N(soort,ev,neut)" ], "vorig": [ "Adj(attr,stell,onverv)" ], "vliegtocht": [ "N(soort,ev,neut)" ], "af": [ "Adv(deel_v)", "Prep(comb)", "Adv(deel_adv)", "Adv(gew,geen_func,stell,onverv)" ], "dametjes": [ "N(soort,mv,neut)" ], "bijrolletje": [ "N(soort,ev,neut)" ], "al": [ "Adv(gew,geen_func,stell,onverv)", "Pron(onbep,neut,attr)", "Conj(onder,met_fin)" ], "breedste": [ "Adj(attr,overtr,verv_neut)" ], "uurtje": [ "N(soort,ev,neut)" ], "vloer": [ "N(soort,ev,neut)" ], "toch": [ "Adv(gew,geen_func,stell,onverv)" ], "tevergeefs": [ "Adj(attr,stell,onverv)" ], "verlegd": [ "V(trans,verl_dw,onverv)" ], "as": [ "N(soort,ev,neut)" ], "at": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "honderden": [ "Num(hoofd,bep,attr,onverv)" ], "aardiger": [ "Adj(attr,vergr,onverv)" ], "getallen": [ "N(soort,mv,neut)" ], "griekse": [ "Adj(attr,stell,verv_neut)" ], "allermoeilijkste": [ "Adj(attr,overtr,verv_neut)" ], "Komkommerkasteeltje": [ "N(eigen,ev,neut)" ], "soloplaten": [ "N(soort,mv,neut)" ], "Nooit": [ "Adv(gew,onbep)" ], "passend": [ "V(intrans,teg_dw,onverv)" ], "verknald": [ "V(trans,verl_dw,onverv)" ], "bossen": [ "N(soort,mv,neut)" ], "bedrijfsleven": [ "N(soort,ev,neut)" ], "vroegen": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "hemel": [ "N(soort,ev,neut)" ], "borstelen": [ "V(intrans,inf)" ], "baseren": [ "V(trans,inf)" ], "Hermien": [ "N(eigen,ev,neut)" ], "vroeger": [ "Adj(adv,vergr,onverv)", "Adj(attr,vergr,onverv)" ], "bevestigend": [ "V(intrans,teg_dw,onverv)" ], "opgevangen": [ "V(trans,verl_dw,onverv)" ], "vermindering": [ "N(soort,ev,neut)" ], "kende": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "extract": [ "N(soort,ev,neut)" ], "Zeventig": [ "Num(hoofd,bep,attr,onverv)" ], "zomerbloemen": [ "N(soort,mv,neut)" ], "zulk": [ "Pron(aanw,neut,attr)" ], "vijfhonderd": [ "Num(hoofd,bep,zelfst,onverv)", "Num(hoofd,bep,attr,onverv)" ], "aanstond": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "Giuliano": [ "N(eigen,ev,neut)" ], "complexen": [ "N(soort,mv,neut)" ], "gestold": [ "V(intrans,verl_dw,onverv)" ], "Zodra": [ "Conj(onder,met_fin)" ], "mooiste": [ "Adj(attr,overtr,verv_neut)" ], "VVD'er": [ "N(soort,ev,neut)" ], "Parijs": [ "N(eigen,ev,neut)" ], "funktie": [ "N(soort,ev,neut)" ], "visites": [ "N(soort,mv,neut)" ], "prominentenprocessie": [ "N(soort,ev,neut)" ], "Twintig": [ "Num(hoofd,bep,attr,onverv)" ], "touringcar": [ "N(soort,ev,neut)" ], "mejuffrouw": [ "N(soort,ev,neut)" ], "verafschuwden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "waterstraal": [ "N(soort,ev,neut)" ], "februari": [ "N(eigen,ev,neut)" ], "rechtsbijstand": [ "N(soort,ev,neut)" ], "televisie-uitzending": [ "N(soort,ev,neut)" ], "bankschroeven": [ "N(soort,mv,neut)" ], "cm": [ "N(soort,ev,neut)" ], "Geschikt": [ "Adj(attr,stell,onverv)" ], "ongehoorzaamheid": [ "N(soort,ev,neut)" ], "dat-ie": [ "Conj(onder,met_fin)" ], "zelfvertrouwen": [ "N(soort,ev,neut)" ], "duisternis": [ "N(soort,ev,neut)" ], "armbanden": [ "N(soort,mv,neut)" ], "ontzaglijk": [ "Adj(adv,stell,onverv)" ], "voetbalwedstrijd": [ "N(soort,ev,neut)" ], "toen": [ "Conj(onder,met_fin)", "Adv(gew,geen_func,stell,onverv)", "Adv(gew,aanw)" ], "onaangename": [ "Adj(attr,stell,verv_neut)" ], "gehad": [ "V(trans,verl_dw,onverv)", "V(intrans,verl_dw,onverv)" ], "brandweerman": [ "N(soort,ev,neut)" ], "wissel": [ "N(soort,ev,neut)" ], "huurbescherming": [ "N(soort,ev,neut)" ], "redeneren": [ "V(trans,ott,1_of_2_of_3,mv)" ], "karate-demonstratie": [ "N(soort,ev,neut)" ], "intriges": [ "N(soort,mv,neut)" ], "Kesteren": [ "N(eigen,ev,neut)" ], "planning": [ "N(soort,ev,neut)" ], "fluisterend": [ "V(intrans,teg_dw,onverv)" ], "zeventien": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "illegale": [ "Adj(attr,stell,verv_neut)" ], "filmen": [ "V(trans,inf)" ], "inspecteert": [ "V(trans,ott,3,ev)" ], "de": [ "Art(bep,zijd_of_mv,neut)", "V(intrans,inf)", "N(eigen,ev,neut)", "N(soort,ev,neut)" ], "bijv.": [ "Adv(gew,geen_func,stell,onverv)" ], "di": [ "N(eigen,ev,neut)" ], "rococo": [ "N(soort,ev,neut)" ], "Bruessing": [ "N(eigen,ev,neut)" ], "opgeruimd": [ "V(trans,verl_dw,onverv)" ], "kleurenprogramma's": [ "N(soort,mv,neut)" ], "platina": [ "N(soort,ev,neut)" ], "spanningen": [ "N(soort,mv,neut)" ], "afweet": [ "V(intrans,ott,3,ev)" ], "Nazare": [ "N(eigen,ev,neut)" ], "schortje": [ "N(soort,ev,neut)" ], "du": [ "N(eigen,ev,neut)", "Misc(vreemd)" ], "constateert": [ "V(trans,ott,3,ev)" ], "Kogelenbergh": [ "N(eigen,ev,neut)" ], "narrig": [ "Adj(attr,stell,onverv)" ], "Wijn": [ "N(eigen,ev,neut)", "N(soort,ev,neut)" ], "wonderen": [ "N(soort,mv,neut)" ], "ener": [ "Art(onbep,zijd,gen)" ], "hoofdrol": [ "N(soort,ev,neut)" ], "hyperradio": [ "N(soort,ev,neut)" ], "jubileum": [ "N(soort,ev,neut)" ], "margarinefabriek": [ "N(soort,ev,neut)" ], "schillen": [ "V(trans,inf)" ], "Nerich": [ "N(eigen,ev,neut)" ], "prettig": [ "Adj(attr,stell,onverv)" ], "wortelkluit": [ "N(soort,ev,neut)" ], "gedoofd": [ "V(trans,verl_dw,onverv)" ], "uitwerken": [ "V(trans,ott,1_of_2_of_3,mv)", "V(trans,inf,subst)" ], "aanvaard": [ "V(trans,verl_dw,onverv)" ], "ei": [ "N(soort,ev,neut)" ], "duizenden": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "inteelt": [ "N(soort,ev,neut)" ], "en": [ "Conj(neven)", "N(eigen,ev,neut)", "Num(hoofd,bep,attr,onverv)", "Misc(vreemd)" ], "John": [ "N(eigen,ev,neut)" ], "vormt": [ "V(trans,ott,3,ev)", "V(refl,ott,3,ev)" ], "grenslandbewoner": [ "N(soort,ev,neut)" ], "vluchtig": [ "Adj(attr,stell,onverv)" ], "safaribus": [ "N(soort,ev,neut)" ], "doorgronden": [ "V(trans,inf)" ], "er": [ "Adv(gew,er)", "Adv(pron,er)" ], "es": [ "Adv(gew,geen_func,stell,onverv)" ], "moord": [ "N(soort,ev,neut)" ], "meenden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "fabrikanten": [ "N(soort,mv,neut)" ], "ploegend": [ "V(intrans,teg_dw,onverv)" ], "liederen": [ "N(soort,mv,neut)" ], "augustus": [ "N(eigen,ev,neut)" ], "50.000": [ "Num(hoofd,bep,attr,onverv)" ], "opkijken": [ "V(intrans,inf)" ], "argumentatie": [ "N(soort,ev,neut)" ], "verschrompelt": [ "V(intrans,ott,3,ev)" ], "hechtenis": [ "N(soort,ev,neut)" ], "pakt": [ "V(trans,ott,3,ev)" ], "chignon": [ "N(soort,ev,neut)" ], "Sebastian": [ "N(eigen,ev,neut)" ], "spoorverbinding": [ "N(soort,ev,neut)" ], "Garbo": [ "N(eigen,ev,neut)" ], "gezeurd": [ "V(intrans,verl_dw,onverv)" ], "herbergen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "Italiaan": [ "N(soort,ev,neut)" ], "onsterfelijkheid": [ "N(soort,ev,neut)" ], "Georges": [ "N(eigen,ev,neut)" ], "blikschaar": [ "N(soort,ev,neut)" ], "abonnees": [ "N(soort,mv,neut)" ], "stewardess": [ "N(soort,ev,neut)" ], "typisch": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "aanwezigheid": [ "N(soort,ev,neut)" ], "ga": [ "V(intrans,ott,1,ev)", "V(hulp,ott,1,ev)", "V(hulp,imp)", "V(intrans,imp)", "V(hulp,ott,2,ev)" ], "zonsondergang": [ "N(soort,ev,neut)" ], "Baule": [ "N(eigen,ev,neut)" ], "dikwijls": [ "Adv(gew,geen_func,stell,onverv)" ], "partnerruil": [ "N(soort,ev,neut)" ], "rechthoekige": [ "Adj(attr,stell,verv_neut)" ], "laten": [ "V(hulp,inf)", "V(trans,inf)", "V(intrans,ott,1_of_2_of_3,mv)", "V(hulp,ott,1_of_2_of_3,mv)" ], "handelt": [ "V(intrans,ott,3,ev)" ], "naakt": [ "Adj(attr,stell,onverv)", "N(soort,ev,neut)" ], "later": [ "Adj(adv,vergr,onverv)" ], "shock": [ "N(soort,ev,neut)" ], "Dibs": [ "N(eigen,ev,neut)" ], "realiseert": [ "V(trans,ott,3,ev)" ], "balde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "kervel": [ "N(soort,ev,neut)" ], "dichtbevolkte": [ "Adj(attr,stell,verv_neut)" ], "hoofden": [ "N(soort,mv,neut)" ], "restaurant": [ "N(soort,ev,neut)" ], "Route": [ "N(soort,ev,neut)" ], "reuma": [ "N(soort,ev,neut)" ], "lichte": [ "Adj(attr,stell,verv_neut)" ], "he": [ "Int" ], "Kersten": [ "N(eigen,ev,neut)" ], "trappen": [ "N(soort,mv,neut)", "V(intrans,inf)" ], "regentijd": [ "N(soort,ev,neut)" ], "overwogen": [ "V(trans,inf)" ], "vierkant": [ "Adj(attr,stell,onverv)" ], "beeindigen": [ "V(trans,inf)" ], "flo": [ "N(soort,ev,neut)" ], "route-kaart": [ "N(soort,ev,neut)" ], "enig": [ "Pron(onbep,neut,attr)", "Adj(attr,stell,onverv)" ], "make-up-artikelen": [ "N(soort,mv,neut)" ], "beantwoord": [ "V(trans,verl_dw,onverv)" ], "Slick": [ "N(eigen,ev,neut)" ], "v.w.o.": [ "N(soort,ev,neut)" ], "stofzuigen": [ "V(intrans,inf,subst)" ], "zonnebad": [ "N(soort,ev,neut)" ], "pand": [ "N(soort,ev,neut)" ], "duivel": [ "N(soort,ev,neut)" ], "Ashenbach": [ "N(eigen,ev,neut)" ], "slacht": [ "N(soort,ev,neut)" ], "kommetje": [ "N(soort,ev,neut)" ], "kunstmatig": [ "Adj(adv,stell,onverv)" ], "Terminus": [ "N(eigen,ev,neut)" ], "Wilde": [ "N(eigen,ev,neut)", "V(hulp,ovt,1_of_2_of_3,ev)" ], "prestatiemoraal": [ "N(soort,ev,neut)" ], "kleurentelevisie": [ "N(soort,ev,neut)" ], "schuurpapier": [ "N(soort,ev,neut)" ], "opentrekken": [ "V(trans,inf,subst)" ], "ie": [ "Pron(per,3,ev,nom)" ], "ingreep": [ "N(soort,ev,neut)" ], "deksel": [ "N(soort,ev,neut)" ], "ii": [ "N(eigen,ev,neut)" ], "ik": [ "Pron(per,1,ev,nom)" ], "im": [ "Misc(vreemd)" ], "in": [ "Prep(voor)", "Adv(deel_v)", "Prep(comb)", "Adv(deel_adv)", "N(eigen,ev,neut)", "Adv(gew,geen_func,stell,onverv)" ], "roodbruine": [ "Adj(attr,stell,verv_neut)" ], "beroep": [ "N(soort,ev,neut)" ], "redelijk": [ "Adj(attr,stell,onverv)" ], "is": [ "V(hulp_of_kopp,ott,3,ev)", "V(intrans,ott,3,ev)", "V(hulp_of_kopp,ovt,1_of_2_of_3,ev)" ], "it": [ "Misc(vreemd)" ], "trouwdag": [ "N(soort,ev,neut)" ], "Paulus": [ "N(eigen,ev,neut)" ], "iv": [ "Num(hoofd,bep,zelfst,onverv)" ], "handeling": [ "N(soort,ev,neut)" ], "baanvak": [ "N(soort,ev,neut)" ], "Teatro": [ "N(eigen,ev,neut)" ], "geplant": [ "V(trans,verl_dw,onverv)" ], "ja": [ "Int" ], "Kiupel": [ "N(eigen,ev,neut)" ], "negenentachtig": [ "Num(hoofd,bep,attr,onverv)" ], "Markovic": [ "N(eigen,ev,neut)" ], "je": [ "Pron(onbep,neut,zelfst)", "Pron(per,2,ev,dat_of_acc)", "Pron(per,2,ev,nom)", "Pron(ref,2,ev)", "Pron(bez,2,ev,neut,attr)" ], "receptie-ervaringen": [ "N(soort,mv,neut)" ], "Zuid-Limburg": [ "N(eigen,ev,neut)" ], "versterk": [ "V(trans,ott,2,ev)" ], "Noord": [ "N(eigen,ev,neut)" ], "Mrs.": [ "N(eigen,ev,neut)" ], "trotse": [ "Adj(attr,stell,verv_neut)" ], "tolk": [ "N(soort,ev,neut)" ], "Vrijwording": [ "N(soort,ev,neut)" ], "meisje": [ "N(soort,ev,neut)" ], "papa": [ "N(soort,ev,neut)" ], "luider": [ "Adj(adv,vergr,onverv)" ], "levensechter": [ "Adj(attr,vergr,onverv)" ], "blokkeren": [ "V(trans,inf)" ], "Opheusden": [ "N(eigen,ev,neut)" ], "stevige": [ "Adj(attr,stell,verv_neut)" ], "overtuiging": [ "N(soort,ev,neut)" ], "verkondigt": [ "V(trans,ott,3,ev)" ], "Rijndelta": [ "N(soort,ev,neut)" ], "opgepepte": [ "V(trans,verl_dw,verv_neut)" ], "sextant": [ "N(eigen,ev,neut)" ], "Hermine": [ "N(eigen,ev,neut)" ], "onderbroken": [ "V(trans,verl_dw,onverv)" ], "museum": [ "N(soort,ev,neut)" ], "verlept": [ "V(intrans,verl_dw,onverv)" ], "stadswijk": [ "N(soort,ev,neut)" ], "noemende": [ "V(refl,teg_dw,verv_neut)" ], "Weyden": [ "N(eigen,ev,neut)" ], "Jong": [ "N(eigen,ev,neut)" ], "leerschool": [ "N(soort,ev,neut)" ], "blanke": [ "Adj(attr,stell,verv_neut)" ], "ethisch": [ "Adj(adv,stell,onverv)" ], "kilogram": [ "N(soort,ev,neut)" ], "gestaan": [ "V(intrans,verl_dw,onverv)" ], "km": [ "N(soort,ev,neut)" ], "argumenten": [ "N(soort,mv,neut)" ], "for": [ "N(eigen,ev,neut)" ], "Brigitte": [ "N(eigen,ev,neut)" ], "ongetrouwd": [ "Adj(attr,stell,onverv)" ], "m2": [ "N(soort,ev,neut)" ], "zuur": [ "N(soort,ev,neut)", "Adj(attr,stell,onverv)" ], "Stieler": [ "N(eigen,ev,neut)" ], "spelend": [ "V(intrans,teg_dw,onverv)" ], "Doortje": [ "N(eigen,ev,neut)" ], "annuleren": [ "V(trans,inf)" ], "beloofd": [ "V(trans,verl_dw,onverv)" ], "aanduiding": [ "N(soort,ev,neut)" ], "Elysee-Montmartre": [ "N(eigen,ev,neut)" ], "niet": [ "Adv(gew,geen_func,stell,onverv)" ], "villa": [ "N(soort,ev,neut)" ], "interessante": [ "Adj(attr,stell,verv_neut)" ], "le": [ "Misc(vreemd)" ], "stallen": [ "N(soort,mv,neut)" ], "onverdeeld": [ "Adj(attr,stell,onverv)" ], "lijken": [ "V(intrans,inf)" ], "beheerde": [ "V(trans,verl_dw,verv_neut)" ], "desniettemin": [ "Adv(gew,geen_func,stell,onverv)" ], "tong": [ "N(soort,ev,neut)" ], "Focke": [ "N(eigen,ev,neut)" ], "karper": [ "N(soort,ev,neut)" ], "L.P.": [ "N(soort,ev,neut)" ], "hoofdje": [ "N(soort,ev,neut)" ], "Michels": [ "N(eigen,ev,neut)" ], "drang": [ "N(soort,ev,neut)" ], "organisatieschema": [ "N(soort,ev,neut)" ], "zeventiende": [ "Num(rang,bep,attr,onverv)" ], "Roger": [ "N(eigen,ev,neut)" ], "drank": [ "N(soort,ev,neut)" ], "oostelijke": [ "Adj(attr,stell,verv_neut)" ], "bezet": [ "V(trans,verl_dw,onverv)" ], "onafzienbare": [ "Adj(attr,stell,verv_neut)" ], "fatsoen": [ "N(soort,ev,neut)" ], "Dover": [ "N(eigen,ev,neut)" ], "park": [ "N(soort,ev,neut)" ], "vaklui": [ "N(soort,mv,neut)" ], "ma": [ "N(soort,ev,neut)" ], "wijzigingen": [ "N(soort,mv,neut)" ], "me": [ "Pron(per,1,ev,dat_of_acc)", "Pron(ref,1,ev)" ], "part": [ "N(soort,ev,neut)" ], "politieradio's": [ "N(soort,mv,neut)" ], "mm": [ "N(soort,ev,neut)" ], "berichten": [ "N(soort,mv,neut)" ], "pertinent": [ "Adj(adv,stell,onverv)" ], "genodigden": [ "V(trans,verl_dw,verv_mv)" ], "koene": [ "Adj(attr,stell,verv_neut)" ], "toon": [ "N(soort,ev,neut)" ], "stonden": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "trouwden": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "raampje": [ "N(soort,ev,neut)" ], "klanten": [ "N(soort,mv,neut)" ], "bladzijde": [ "N(soort,ev,neut)" ], "aansmeert": [ "V(trans,ott,3,ev)" ], "na": [ "Prep(voor)", "Adv(deel_v)", "Adv(gew,geen_func,stell,onverv)" ], "hangt": [ "V(intrans,ott,3,ev)" ], "Geuzelambiek": [ "N(soort,ev,neut)" ], "drie": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "landjonker": [ "N(soort,ev,neut)" ], "past": [ "V(intrans,ott,3,ev)" ], "maatschappijkritiek": [ "N(soort,ev,neut)" ], "degene": [ "Pron(aanw,neut,zelfst)" ], "merkwaardigste": [ "Adj(zelfst,overtr,verv_neut)" ], "dochters": [ "N(soort,mv,neut)" ], "patient": [ "N(soort,ev,neut)" ], "Brinkers": [ "N(eigen,ev,neut)" ], "40ste": [ "Num(rang,bep,attr,onverv)" ], "nu": [ "Adv(gew,aanw)", "Adv(gew,geen_func,stell,onverv)", "Conj(onder,met_fin)" ], "zwetende": [ "V(intrans,teg_dw,verv_neut)" ], "mixer": [ "N(soort,ev,neut)" ], "carriere": [ "N(soort,ev,neut)" ], "makeup": [ "N(soort,ev,neut)" ], "turfmolm": [ "N(soort,ev,neut)" ], "onvoorbereid": [ "Adj(attr,stell,onverv)" ], "bezoeken": [ "V(trans,inf)", "V(trans,inf,subst)" ], "ingewikkeldheid": [ "N(soort,ev,neut)" ], "of": [ "Conj(neven)", "Conj(onder,met_fin)", "N(eigen,ev,neut)", "Misc(vreemd)" ], "pats": [ "Int" ], "oh": [ "Int" ], "shooter": [ "N(eigen,ev,neut)" ], "uitingen": [ "N(soort,mv,neut)" ], "aardappels": [ "N(soort,mv,neut)" ], "om": [ "Conj(onder,met_inf)", "Prep(voor)", "Adv(deel_adv)", "Prep(comb)", "Adv(deel_v)" ], "bijbehorend": [ "V(intrans,teg_dw,onverv)" ], "opgelopen": [ "V(trans,verl_dw,onverv)" ], "op": [ "Prep(voor)", "Adv(deel_adv)", "Adv(gew,geen_func,stell,onverv)", "N(eigen,ev,neut)", "Prep(achter)", "Adv(deel_v)" ], "volmaakte": [ "Adj(attr,stell,verv_neut)" ], "twijfels": [ "N(soort,mv,neut)" ], "naast": [ "Prep(voor)", "Adv(deel_adv)" ], "gedoopt": [ "V(trans,verl_dw,onverv)" ], "eruit": [ "Adv(pron,onbep)" ], "werkt": [ "V(intrans,ott,3,ev)" ], "gunt": [ "V(trans,ott,2,ev)" ], "ieder": [ "Pron(onbep,neut,attr)", "Pron(onbep,neut,zelfst)" ], "Verdaasdonk": [ "N(eigen,ev,neut)" ], "burgemeestersketen": [ "N(soort,ev,neut)" ], "overgaat": [ "V(intrans,ott,3,ev)" ], "dansend": [ "V(intrans,teg_dw,onverv)" ], "voorstadje": [ "N(soort,ev,neut)" ], "Marechal": [ "Misc(vreemd)" ], "stuurkolom": [ "N(soort,ev,neut)" ], "Ina": [ "N(eigen,ev,neut)" ], "stinkt": [ "V(intrans,ott,3,ev)" ], "Gegeneerd": [ "V(trans,verl_dw,onverv)" ], "Hoogheid": [ "N(soort,ev,neut)" ], "sexblad": [ "N(soort,ev,neut)" ], "bewindsman": [ "N(soort,ev,neut)" ], "Okay": [ "Int" ], "Popmuziek": [ "N(eigen,ev,neut)" ], "Tellenbach": [ "N(eigen,ev,neut)" ], "onverklaarbare": [ "Adj(attr,stell,verv_neut)" ], "vertoond": [ "V(trans,verl_dw,onverv)" ], "geslachtsverkeer": [ "N(soort,ev,neut)" ], "vleesgeworden": [ "Adj(attr,stell,onverv)" ], "Zwitserland": [ "N(eigen,ev,neut)" ], "spelers": [ "N(soort,mv,neut)" ], "verwijdt": [ "V(trans,ott,3,ev)" ], "orgasme": [ "N(soort,ev,neut)" ], "arrangementen": [ "N(soort,mv,neut)" ], "verveelde": [ "V(refl,ovt,1_of_2_of_3,ev)" ], "paus": [ "N(soort,ev,neut)" ], "ernstig": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "bijkomstigheden": [ "N(soort,mv,neut)" ], "Inn": [ "N(eigen,ev,neut)" ], "vuurrood": [ "Adj(attr,stell,onverv)" ], "Kerkwijk": [ "N(eigen,ev,neut)" ], "werkgevers": [ "N(soort,mv,neut)" ], "gejuich": [ "N(soort,ev,neut)" ], "Rafaels": [ "N(eigen,ev,gen)" ], "bezig": [ "Adj(attr,stell,onverv)" ], "vertoont": [ "V(trans,ott,3,ev)" ], "censuur": [ "N(soort,ev,neut)" ], "gereisd": [ "V(intrans,verl_dw,onverv)" ], "vlaag": [ "N(soort,ev,neut)" ], "wortelen": [ "N(soort,mv,neut)" ], "uitgeput": [ "V(trans,verl_dw,onverv)" ], "Meiden": [ "N(eigen,ev,neut)" ], "bezit": [ "N(soort,ev,neut)", "V(trans,ott,1,ev)", "V(trans,ott,3,ev)" ], "misdrijven": [ "N(soort,mv,neut)" ], "voegden": [ "V(refl,ovt,1_of_2_of_3,mv)" ], "doelbewust": [ "Adj(adv,stell,onverv)" ], "Buurser": [ "Adj(attr,stell,onverv)" ], "karakter": [ "N(soort,ev,neut)" ], "prominenten": [ "N(soort,mv,neut)" ], "Afrika": [ "N(eigen,ev,neut)" ], "hamvraag": [ "N(soort,ev,neut)" ], "beklemde": [ "V(trans,verl_dw,verv_neut)" ], "vernietigingstuig": [ "N(soort,ev,neut)" ], "toegeven": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "schaamde": [ "V(refl,ovt,1_of_2_of_3,ev)" ], "fun": [ "N(eigen,ev,neut)" ], "dreven": [ "V(intrans,ovt,1_of_2_of_3,mv)", "V(trans,ovt,1_of_2_of_3,mv)" ], "datzelfde": [ "Pron(aanw,neut,attr)" ], "Willy": [ "N(eigen,ev,neut)" ], "publiekelijk": [ "Adv(gew,geen_func,stell,onverv)" ], "crimineel": [ "Adj(attr,stell,onverv)" ], "infectie": [ "N(soort,ev,neut)" ], "huwelijksboetiek": [ "N(soort,ev,neut)" ], "weet-jenog": [ "N(soort,ev,neut)" ], "niks": [ "Pron(onbep,neut,zelfst)" ], "koers": [ "N(soort,ev,neut)" ], "graniet": [ "N(soort,ev,neut)" ], "ezels": [ "N(soort,mv,neut)" ], "KAAS": [ "N(soort,ev,neut)" ], "leeft": [ "V(intrans,ott,3,ev)", "V(refl,ott,3,ev)" ], "schande": [ "N(soort,ev,neut)" ], "financieel": [ "Adj(adv,stell,onverv)" ], "toepassingen": [ "N(soort,mv,neut)" ], "ontwikkelingshulp": [ "N(soort,ev,neut)" ], "invoering": [ "N(soort,ev,neut)" ], "vezels": [ "N(soort,mv,neut)" ], "impuls": [ "N(soort,ev,neut)" ], "vleeskleurige": [ "Adj(attr,stell,verv_neut)" ], "winterhard": [ "Adj(attr,stell,onverv)" ], "imposante": [ "Adj(attr,stell,verv_neut)" ], "deinzen": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "advertentie": [ "N(soort,ev,neut)" ], "uitgebuit": [ "V(trans,verl_dw,onverv)" ], "kweekkarper": [ "N(soort,ev,neut)" ], "L'Oreal": [ "N(eigen,ev,neut)" ], "dromen": [ "V(intrans,inf)", "N(soort,mv,neut)" ], "Jouw": [ "Pron(bez,2,ev,neut,attr)" ], "massale": [ "Adj(attr,stell,verv_neut)" ], "schuimig": [ "Adj(attr,stell,onverv)" ], "typeert": [ "V(trans,ott,3,ev)" ], "Schiphol": [ "N(eigen,ev,neut)" ], "ski-ongelukken": [ "N(soort,mv,neut)" ], "Paquet-lijn": [ "N(soort,ev,neut)" ], "verlegenheid": [ "N(soort,ev,neut)" ], "Interessant": [ "Adj(attr,stell,onverv)" ], "verhinderden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "Charlotte": [ "N(eigen,ev,neut)" ], "verouderde": [ "V(intrans,verl_dw,verv_neut)" ], "koest": [ "Adj(attr,stell,onverv)" ], "taak": [ "N(soort,ev,neut)" ], "etherische": [ "Adj(attr,stell,verv_neut)" ], "taal": [ "N(soort,ev,neut)" ], "uit": [ "Prep(voor)", "Prep(achter)", "Prep(comb)", "Adv(gew,geen_func,stell,onverv)", "Adv(deel_v)", "Adv(deel_adv)" ], "toezicht": [ "N(soort,ev,neut)" ], "Okee": [ "Int" ], "bijzonderheden": [ "N(soort,mv,neut)" ], "Dine": [ "N(eigen,ev,neut)" ], "betaling": [ "N(soort,ev,neut)" ], "lekker-losjes": [ "Adv(gew,geen_func,stell,onverv)" ], "getwist": [ "V(intrans,verl_dw,onverv)" ], "u.": [ "N(soort,ev,neut)" ], "Jaca": [ "N(eigen,ev,neut)" ], "rechtdoor": [ "Adv(gew,geen_func,stell,onverv)" ], "Rekels": [ "N(eigen,mv,neut)" ], "grappen": [ "N(soort,mv,neut)" ], "Trotter": [ "N(eigen,ev,neut)" ], "uitstek": [ "N(soort,ev,neut)" ], "uitstel": [ "N(soort,ev,neut)" ], "rimpels": [ "N(soort,mv,neut)" ], "Jack": [ "N(eigen,ev,neut)" ], "Vergelijking": [ "N(soort,ev,neut)" ], "aantijgingen": [ "N(soort,mv,neut)" ], "belemmering": [ "N(soort,ev,neut)" ], "regel": [ "N(soort,ev,neut)" ], "bekendheid": [ "N(soort,ev,neut)" ], "huurhuis": [ "N(soort,ev,neut)" ], "regen": [ "N(soort,ev,neut)" ], "Kortekaas": [ "N(eigen,ev,neut)" ], "touw": [ "N(soort,ev,neut)" ], "Smets": [ "N(eigen,ev,neut)" ], "foodstamps": [ "N(soort,mv,neut)" ], "ietwat": [ "Pron(onbep,neut,zelfst)", "Pron(onbep,neut,attr)" ], "zelfstandig": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "geboeid": [ "V(trans,verl_dw,onverv)" ], "mooiere": [ "Adj(attr,vergr,verv_neut)" ], "opsommen": [ "V(trans,inf)" ], "te": [ "Prep(voor_inf)", "Prep(voor)", "Adv(gew,geen_func,stell,onverv)" ], "diamant": [ "N(soort,ev,neut)" ], "arbeidsuren": [ "N(soort,mv,neut)" ], "Hilversum": [ "N(eigen,ev,neut)" ], "verouderen": [ "V(intrans,inf)" ], "opgesmukte": [ "V(trans,verl_dw,verv_neut)" ], "Colignystraat": [ "N(eigen,ev,neut)" ], "huppelt": [ "V(intrans,ott,3,ev)" ], "beroepsarbeid": [ "N(soort,ev,neut)" ], "steeltje": [ "N(soort,ev,neut)" ], "verontrust": [ "V(trans,verl_dw,onverv)" ], "to": [ "Misc(vreemd)" ], "dansten": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "tv": [ "N(soort,ev,neut)" ], "Vorwarts": [ "N(eigen,ev,neut)" ], "Dios": [ "N(eigen,ev,neut)" ], "zaten": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "scene": [ "N(soort,ev,neut)" ], "uiting": [ "N(soort,ev,neut)" ], "langharige": [ "Adj(attr,stell,verv_neut)" ], "maken": [ "V(trans,inf)", "V(intrans,inf)", "V(refl,ott,1_of_2_of_3,mv)", "V(trans,ott,1_of_2_of_3,mv)", "V(refl,inf)", "V(trans,inf,subst)" ], "zangvereniging": [ "N(soort,ev,neut)" ], "vanaf": [ "Adv(deel_adv)", "Prep(voor)" ], "oorhangers": [ "N(soort,mv,neut)" ], "ui": [ "N(soort,ev,neut)" ], "middengolf": [ "N(soort,ev,neut)" ], "zakken": [ "N(soort,mv,neut)", "V(intrans,inf)", "V(intrans,ott,1_of_2_of_3,mv)" ], "bezigheden": [ "N(soort,mv,neut)" ], "koksvirtuositeit": [ "N(soort,ev,neut)" ], "consultatiebureau": [ "N(soort,ev,neut)" ], "Paume": [ "N(eigen,ev,neut)" ], "litteken": [ "N(soort,ev,neut)" ], "strijd": [ "N(soort,ev,neut)" ], "tekenaar": [ "N(soort,ev,neut)" ], "produkten": [ "N(soort,mv,neut)" ], "uw": [ "Pron(bez,2,ev,neut,attr)" ], "witgoud": [ "N(soort,ev,neut)" ], "suite": [ "N(soort,ev,neut)" ], "strijk": [ "V(trans,imp)" ], "koperen": [ "Adj(attr,stell,onverv)" ], "forceren": [ "V(trans,inf)" ], "peinture": [ "Misc(vreemd)" ], "...": [ "Punc(hellip)" ], "sokjes": [ "N(soort,mv,neut)" ], "voorzitster": [ "N(soort,ev,neut)" ], "groots": [ "Adj(attr,stell,onverv)" ], "trainer": [ "N(soort,ev,neut)" ], "onuitputtelijk": [ "Adj(attr,stell,onverv)" ], "Morgen": [ "Adv(gew,geen_func,stell,onverv)" ], "ingegoten": [ "V(trans,verl_dw,onverv)" ], "kostten": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "elders": [ "Adv(gew,onbep)" ], "drs.": [ "N(eigen,ev,neut)" ], "geboekt": [ "V(trans,verl_dw,onverv)" ], "palet": [ "N(soort,ev,neut)" ], "Zorgelijk": [ "Adj(adv,stell,onverv)" ], "aaneenvlocht": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Alleen": [ "Adv(gew,geen_func,stell,onverv)" ], "Tholen": [ "N(eigen,ev,neut)" ], "gastvrouw-van-formaat": [ "N(soort,ev,neut)" ], "remmen": [ "N(soort,mv,neut)" ], "kindertjes": [ "N(soort,mv,neut)" ], "menukaart": [ "N(soort,ev,neut)" ], "valide": [ "Adj(attr,stell,onverv)" ], "Zillertal": [ "N(eigen,ev,neut)" ], "we": [ "Pron(per,1,mv,nom)" ], "Nieuwe": [ "Adj(attr,stell,verv_neut)", "N(eigen,ev,neut)" ], "keuken": [ "N(soort,ev,neut)" ], "paarden": [ "N(soort,mv,neut)" ], "verschijnselen": [ "N(soort,mv,neut)" ], "ex-kamerlid": [ "N(soort,ev,neut)" ], "Dirk": [ "N(eigen,ev,neut)" ], "opgedaan": [ "V(trans,verl_dw,onverv)" ], "gezagsverhoudingen": [ "N(soort,mv,neut)" ], "Voeten": [ "N(eigen,ev,neut)" ], "enz.": [ "Adv(gew,geen_func,stell,onverv)" ], "Italie": [ "N(eigen,ev,neut)" ], "houtskool": [ "N(soort,ev,neut)" ], "onderbuik": [ "N(soort,ev,neut)" ], "ettelijke": [ "Pron(onbep,neut,attr)" ], "goeien": [ "Adj(attr,stell,verv_neut)" ], "worteltjes": [ "N(soort,mv,neut)" ], "scheiding": [ "N(soort,ev,neut)" ], "koortsachtige": [ "Adj(attr,stell,verv_neut)" ], "samen": [ "Adv(gew,geen_func,stell,onverv)" ], "regio": [ "N(soort,ev,neut)" ], "typiste": [ "N(soort,ev,neut)" ], "establishment": [ "N(soort,ev,neut)" ], "misschien": [ "Adv(gew,geen_func,stell,onverv)" ], "gestudeerd": [ "V(intrans,verl_dw,onverv)" ], "geinspireerde": [ "V(trans,verl_dw,verv_neut)" ], "intimiteit": [ "N(soort,ev,neut)" ], "guitaar": [ "N(soort,ev,neut)" ], "siervogels": [ "N(soort,mv,neut)" ], "benedendek": [ "N(soort,ev,neut)" ], "geschat": [ "V(trans,verl_dw,onverv)" ], "pissen": [ "V(intrans,inf)" ], "Chaplin-imitatie": [ "N(soort,ev,neut)" ], "moordenaar": [ "N(soort,ev,neut)" ], "roomskatholiek": [ "Adj(attr,stell,onverv)" ], "Ijtunnel": [ "N(eigen,ev,neut)" ], "atoomduikboten": [ "N(soort,mv,neut)" ], "aankleden": [ "V(refl,inf)" ], "beschikbare": [ "Adj(attr,stell,verv_neut)" ], "pakhuis": [ "N(soort,ev,neut)" ], "overladen": [ "V(trans,verl_dw,onverv)" ], "panters": [ "N(soort,mv,neut)" ], "gekleed": [ "V(trans,verl_dw,onverv)" ], "opwekken": [ "V(trans,ott,1_of_2_of_3,mv)" ], "efficient": [ "Adj(adv,stell,onverv)" ], "treurig": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "pin-upgirls": [ "N(soort,mv,neut)" ], "andermaal": [ "Adv(gew,geen_func,stell,onverv)" ], "verkouden": [ "Adj(attr,stell,onverv)" ], "herleidt": [ "V(trans,ott,3,ev)" ], "verlichte": [ "V(trans,verl_dw,verv_neut)" ], "verschrikkelijke": [ "Adj(attr,stell,verv_neut)" ], "Z'n": [ "Pron(bez,3,ev,neut,attr)" ], "onderdrukken": [ "V(trans,inf)" ], "huiselijke": [ "Adj(attr,stell,verv_neut)" ], "geldboete": [ "N(soort,ev,neut)" ], "lichamelijk": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "PvdA": [ "N(eigen,ev,neut)" ], "financiele": [ "Adj(attr,stell,verv_neut)" ], "abortus": [ "N(soort,ev,neut)" ], "Platanov": [ "N(eigen,ev,neut)" ], "doperwtjes": [ "N(soort,mv,neut)" ], "verschrikkelijks": [ "Adj(attr,stell,verv_gen)" ], "geschiedenis": [ "N(soort,ev,neut)" ], "buien": [ "N(soort,mv,neut)" ], "behangen": [ "V(trans,inf,subst)" ], "lanceren": [ "V(trans,inf,subst)" ], "omgespoelde": [ "V(trans,verl_dw,verv_neut)" ], "vervelends": [ "V(intrans,teg_dw,verv_gen)" ], "produktie": [ "N(soort,ev,neut)" ], "Noel": [ "N(eigen,ev,neut)" ], "lichtgolven": [ "N(soort,mv,neut)" ], "commissaris": [ "N(soort,ev,neut)" ], "opruiend": [ "V(intrans,teg_dw,onverv)" ], "stollen": [ "V(intrans,inf)" ], "humeur": [ "N(soort,ev,neut)" ], "tonijn": [ "N(soort,ev,neut)" ], "Bingen": [ "N(eigen,ev,neut)" ], "alsmede": [ "Conj(neven)" ], "crisisjaren": [ "N(soort,mv,neut)" ], "Tuna": [ "N(eigen,ev,neut)" ], "geloofden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "slaaptabletten": [ "N(soort,mv,neut)" ], "bibberstem": [ "N(soort,ev,neut)" ], "stappers": [ "N(soort,mv,neut)" ], "borduurde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "momenteel": [ "Adj(adv,stell,onverv)" ], "ze": [ "Pron(per,3,ev_of_mv,nom)", "Pron(per,3,ev_of_mv,dat_of_acc)" ], "stadscentrum": [ "N(soort,ev,neut)" ], "drug": [ "N(soort,ev,neut)" ], "maanwagentje": [ "N(soort,ev,neut)" ], "Aioli": [ "N(soort,ev,neut)" ], "wanneer": [ "Conj(onder,met_fin)", "Adv(gew,betr)" ], "druk": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)", "N(soort,ev,neut)" ], "sjaaltje": [ "N(soort,ev,neut)" ], "penibel": [ "Adj(attr,stell,onverv)" ], "zo": [ "Adv(gew,aanw)" ], "uitgesproken": [ "V(trans,verl_dw,onverv)", "Adj(attr,stell,onverv)" ], "correcte": [ "Adj(attr,stell,verv_neut)" ], "gefokte": [ "V(trans,verl_dw,verv_neut)" ], "supervis": [ "N(soort,ev,neut)" ], "denkend": [ "V(intrans,teg_dw,onverv)" ], "overhandigde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Fetter": [ "N(eigen,ev,neut)" ], "troonopvolger": [ "N(soort,ev,neut)" ], "hierheden": [ "N(soort,ev,neut)" ], "geweld": [ "N(soort,ev,neut)" ], "beantwoordde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "voetafdrukken": [ "N(soort,mv,neut)" ], "Susan": [ "N(eigen,ev,neut)" ], "Variaties": [ "N(soort,mv,neut)" ], "Velocipede": [ "N(soort,ev,neut)" ], "directe": [ "Adj(attr,stell,verv_neut)" ], "publiek": [ "N(soort,ev,neut)" ], "ruggespraak": [ "N(soort,ev,neut)" ], "gesteldheid": [ "N(soort,ev,neut)" ], "veilig": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "onderscheiden": [ "V(trans,inf)" ], "manier": [ "N(soort,ev,neut)" ], "achterstand": [ "N(soort,ev,neut)" ], "tijdschriftjes": [ "N(soort,mv,neut)" ], "totaal": [ "Adj(adv,stell,onverv)", "N(soort,ev,neut)" ], "Siciliens": [ "N(eigen,ev,neut)" ], "beheerst": [ "V(trans,ott,3,ev)" ], "shows": [ "N(soort,mv,neut)" ], "paardje": [ "N(soort,ev,neut)" ], "overhandigen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "liepen": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "overgang": [ "N(soort,ev,neut)" ], "langzamer": [ "Adj(attr,vergr,onverv)" ], "beantwoorden": [ "V(trans,inf)", "V(trans,inf,subst)" ], "trompetje": [ "N(soort,ev,neut)" ], "2-persoonskamer": [ "N(soort,ev,neut)" ], "fascineerde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Amersfoort": [ "N(eigen,ev,neut)" ], "oprijst": [ "V(intrans,ott,3,ev)" ], "Kathie": [ "N(eigen,ev,neut)" ], "Wanda": [ "N(eigen,ev,neut)" ], "kamertje": [ "N(soort,ev,neut)" ], "doceren": [ "V(intrans,inf)" ], "intieme": [ "Adj(attr,stell,verv_neut)" ], "Armoede": [ "N(soort,ev,neut)" ], "gewend": [ "Adj(attr,stell,onverv)", "V(trans,verl_dw,onverv)" ], "beugels": [ "N(soort,mv,neut)" ], "daarnaast": [ "Adv(pron,aanw)" ], "Keith": [ "N(eigen,ev,neut)" ], "domme": [ "Adj(attr,stell,verv_neut)" ], "prikkelen": [ "V(trans,inf)" ], "staart": [ "V(intrans,ott,3,ev)" ], "verzorgingstehuis": [ "N(soort,ev,neut)" ], "Nixon": [ "N(eigen,ev,neut)" ], "adoptie": [ "N(soort,ev,neut)" ], "vertraagd": [ "V(trans,verl_dw,onverv)" ], "martelkamertjes": [ "N(soort,mv,neut)" ], "onderhuids": [ "Adj(adv,stell,onverv)" ], "toevloed": [ "N(soort,ev,neut)" ], "ondergrond": [ "N(soort,ev,neut)" ], "schrap": [ "Adj(attr,stell,onverv)" ], "rock-repertoire": [ "N(soort,ev,neut)" ], "afstammeling": [ "N(soort,ev,neut)" ], "verloren": [ "V(trans,verl_dw,onverv)" ], "Protestantse": [ "N(eigen,ev,neut)" ], "dramaturg": [ "N(soort,ev,neut)" ], "gaf": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "verlamming": [ "N(soort,ev,neut)" ], "leert": [ "V(trans,ott,3,ev)", "V(intrans,ott,3,ev)", "V(hulp,ott,3,ev)" ], "Universiteit": [ "N(soort,ev,neut)" ], "kapitalisme": [ "N(soort,ev,neut)" ], "waarde": [ "N(soort,ev,neut)" ], "vierhonderd": [ "Num(hoofd,bep,attr,onverv)" ], "gal": [ "N(soort,ev,neut)" ], "Marijke": [ "N(eigen,ev,neut)" ], "principes": [ "N(soort,mv,neut)" ], "beroepsmisdadigers": [ "N(soort,mv,neut)" ], "effekens": [ "Adv(gew,geen_func,stell,onverv)" ], "gas": [ "N(soort,ev,neut)" ], "gat": [ "N(soort,ev,neut)" ], "Dacht": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "ondervoeding": [ "N(soort,ev,neut)" ], "Jane": [ "N(eigen,ev,neut)" ], "peuter": [ "N(soort,ev,neut)" ], "Vughtse": [ "Adj(attr,stell,verv_neut)" ], "tijdsbestek": [ "N(soort,ev,neut)" ], "roman": [ "N(soort,ev,neut)" ], "belde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "financiering": [ "N(soort,ev,neut)" ], "erger": [ "Adj(adv,vergr,onverv)" ], "weinigen": [ "Num(hoofd,onbep,zelfst,stell,verv_mv)" ], "uur": [ "N(soort,ev,neut)" ], "grof-erotische": [ "Adj(attr,stell,verv_neut)" ], "bestuurster": [ "N(soort,ev,neut)" ], "Sociale": [ "N(soort,mv,neut)", "N(eigen,mv,neut)" ], "verwijst": [ "V(trans,ott,3,ev)" ], "leest": [ "V(trans,ott,3,ev)", "V(intrans,ott,3,ev)", "N(soort,ev,neut)", "V(trans,ott,2,ev)" ], "karaktertrek": [ "N(soort,ev,neut)" ], "overkomt": [ "V(intrans,ott,3,ev)" ], "cijfers": [ "N(soort,mv,neut)" ], "kabelexploitanten": [ "N(soort,mv,neut)" ], "beverig": [ "Adj(attr,stell,onverv)" ], "gebruikelijke": [ "Adj(attr,stell,verv_neut)" ], "kritisch": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "handelen": [ "V(intrans,inf,subst)" ], "menhirliefhebbers": [ "N(soort,mv,neut)" ], "aangedurfd": [ "V(trans,verl_dw,onverv)" ], "Machine": [ "N(eigen,ev,neut)" ], "beleg": [ "N(soort,ev,neut)" ], "tang": [ "N(soort,ev,neut)" ], "ijverig": [ "Adj(adv,stell,onverv)" ], "slecht": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "boeiend": [ "V(intrans,teg_dw,onverv)" ], "ontluisteren": [ "V(trans,inf)" ], "beslag": [ "N(soort,ev,neut)" ], "plaats": [ "N(soort,ev,neut)", "V(trans,imp)" ], "oplossen": [ "V(trans,inf,subst)" ], "verkrijgen": [ "V(trans,inf)" ], "Superstar": [ "N(soort,ev,neut)", "N(eigen,ev,neut)" ], "geillustreerde": [ "V(trans,verl_dw,verv_neut)" ], "contouren": [ "N(soort,mv,neut)" ], "versnellen": [ "V(trans,inf)" ], "geklemd": [ "V(trans,verl_dw,onverv)" ], "nuances": [ "N(soort,mv,neut)" ], "dachten": [ "V(trans,ovt,1_of_2_of_3,mv)", "V(intrans,ovt,1_of_2_of_3,mv)" ], "Zo'n": [ "Pron(aanw,neut,attr)" ], "sloeg": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(intrans,ovt,1_of_2_of_3,ev)" ], "olympische": [ "Adj(attr,stell,verv_neut)" ], "glimmend": [ "V(intrans,teg_dw,onverv)" ], "Lesbisch": [ "Adj(attr,stell,onverv)" ], "verdachtmakingen": [ "N(soort,mv,neut)" ], "afgevaardigden": [ "V(trans,verl_dw,verv_mv)" ], "pil-hetze": [ "N(soort,ev,neut)" ], "bontjas": [ "N(soort,ev,neut)" ], "sein": [ "N(soort,ev,neut)" ], "stropop": [ "N(soort,ev,neut)" ], "opbouwen": [ "V(trans,inf)", "V(trans,inf,subst)" ], "effectief": [ "Adj(attr,stell,onverv)" ], "Prof.": [ "N(eigen,ev,neut)" ], "Chablis": [ "N(eigen,ev,neut)" ], "vleugel": [ "N(soort,ev,neut)" ], "rijbewijs": [ "N(soort,ev,neut)" ], "lipstick": [ "N(soort,ev,neut)" ], "kuil": [ "N(soort,ev,neut)" ], "doorgelicht": [ "V(trans,verl_dw,onverv)" ], "inschikkelijk": [ "Adj(attr,stell,onverv)" ], "rijmpje": [ "N(soort,ev,neut)" ], "Beaujolais": [ "N(eigen,ev,neut)" ], "Blijf": [ "V(hulp_of_kopp,imp)" ], "v.d.": [ "N(eigen,ev,neut)" ], "stoffen": [ "N(soort,mv,neut)" ], "levende": [ "V(intrans,teg_dw,verv_neut)" ], "gemiddeld": [ "Adj(adv,stell,onverv)" ], "Hier": [ "Adv(gew,aanw)", "Adv(gew,geen_func,stell,onverv)" ], "afgeslepen": [ "V(trans,verl_dw,onverv)" ], "Polak": [ "N(eigen,ev,neut)" ], "levends": [ "V(intrans,teg_dw,verv_gen)" ], "nauwlettend": [ "Adj(adv,stell,onverv)" ], "gek": [ "Adj(attr,stell,onverv)", "N(soort,ev,neut)" ], "captain": [ "N(soort,ev,neut)" ], "Oorlogsmake-up": [ "N(soort,ev,neut)" ], "stapje": [ "N(soort,ev,neut)" ], "16de-eeuwse": [ "Adj(attr,stell,verv_neut)" ], "Casady": [ "N(eigen,ev,neut)" ], "Eigen": [ "Pron(aanw,neut,attr,w_eigen)" ], "beschouwen": [ "V(trans,ott,1_of_2_of_3,mv)", "V(trans,inf)" ], "gewest": [ "N(soort,ev,neut)" ], "groepjes": [ "N(soort,mv,neut)" ], "huishoudelijk": [ "Adj(attr,stell,onverv)" ], "Genderen": [ "N(eigen,ev,neut)" ], "legervoedsel": [ "N(soort,ev,neut)" ], "apensoort": [ "N(soort,ev,neut)" ], "geproduceerd": [ "V(trans,verl_dw,onverv)" ], "machtige": [ "Adj(attr,stell,verv_neut)" ], "minuut": [ "N(soort,ev,neut)" ], "Wanja": [ "N(eigen,ev,neut)" ], "verzuurde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "riep": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "dramatische": [ "Adj(attr,stell,verv_neut)", "Adj(adv,stell,verv_neut)" ], "redden": [ "V(trans,inf)" ], "vromen": [ "Adj(zelfst,stell,verv_mv)" ], "uitviel": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "Meisje": [ "N(soort,ev,neut)" ], "verdriet": [ "N(soort,ev,neut)" ], "verloofden": [ "V(refl,ovt,1_of_2_of_3,mv)" ], "verkiezingsprogramma's": [ "N(soort,mv,neut)" ], "hoede": [ "N(soort,ev,neut)" ], "seks": [ "N(soort,ev,neut)" ], "onbenullig": [ "Adj(attr,stell,onverv)" ], "consequenties": [ "N(soort,mv,neut)" ], "nogal": [ "Adv(gew,geen_func,stell,onverv)" ], "Goderie": [ "N(eigen,ev,neut)" ], "ferme": [ "Adj(attr,stell,verv_neut)" ], "verheugt": [ "V(trans,ott,3,ev)" ], "opvoering": [ "N(soort,ev,neut)" ], "Museum": [ "N(eigen,ev,neut)" ], "oplossing": [ "N(soort,ev,neut)" ], "waarin": [ "Adv(pron,vrag)" ], "potentiemoeilijkheden": [ "N(soort,mv,neut)" ], "voelsprieten": [ "N(soort,mv,neut)" ], "noordelijke": [ "Adj(attr,stell,verv_neut)" ], "fietskogeltjes": [ "N(soort,mv,neut)" ], "lichtbruine": [ "Adj(attr,stell,verv_neut)" ], "afgestemd": [ "V(intrans,verl_dw,onverv)", "V(trans,verl_dw,onverv)" ], "bewustzijn": [ "N(soort,ev,neut)" ], "tuinanjers": [ "N(soort,mv,neut)" ], "Jac": [ "N(eigen,ev,neut)" ], "ongewenste": [ "Adj(attr,stell,verv_neut)" ], "weggepest": [ "V(trans,verl_dw,onverv)" ], "patroon": [ "N(soort,ev,neut)" ], "overgave": [ "N(soort,ev,neut)" ], "haalbare": [ "Adj(attr,stell,verv_neut)" ], "Jan": [ "N(eigen,ev,neut)", "Adj(attr,stell,onverv)", "N(soort,ev,neut)" ], "innen": [ "V(trans,inf)" ], "paprika": [ "N(soort,ev,neut)" ], "opgedane": [ "V(trans,verl_dw,verv_neut)" ], "Japanners": [ "N(soort,mv,neut)" ], "tremens": [ "N(soort,ev,neut)" ], "vereiste": [ "V(trans,verl_dw,verv_neut)" ], "kantoorbaan": [ "N(soort,ev,neut)" ], "levensgrote": [ "Adj(attr,stell,verv_neut)" ], "werkende": [ "V(intrans,teg_dw,verv_neut)" ], "Beurs": [ "Adj(attr,stell,onverv)", "N(soort,ev,neut)" ], "mistige": [ "Adj(attr,stell,verv_neut)" ], "fundamentele": [ "Adj(attr,stell,verv_neut)" ], "catalogi": [ "N(soort,mv,neut)" ], "wisten": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "koolhydraten": [ "N(soort,mv,neut)" ], "vreselijk": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "allerminst": [ "Num(hoofd,onbep,zelfst,overtr,onverv)" ], "Delons": [ "N(eigen,ev,gen)" ], "lichtgevend": [ "Adj(attr,stell,onverv)" ], "theorieen": [ "N(soort,mv,neut)" ], "vereisten": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "nachthemel": [ "N(soort,ev,neut)" ], "opneemt": [ "V(trans,ott,3,ev)" ], "beursgebouw": [ "N(soort,ev,neut)" ], "tablet": [ "N(soort,ev,neut)" ], "Niarchos": [ "N(eigen,ev,neut)" ], "Californie": [ "N(eigen,ev,neut)" ], "blad": [ "N(soort,ev,neut)" ], "gedekt": [ "V(trans,verl_dw,onverv)" ], "jaloers": [ "Adj(attr,stell,onverv)" ], "hoeft": [ "V(hulp,ott,3,ev)", "V(hulp,ott,2,ev)", "V(intrans,ott,3,ev)", "V(trans,ott,3,ev)" ], "Eight": [ "N(eigen,ev,neut)" ], "bokserssyndicaat": [ "N(soort,ev,neut)" ], "Haiti": [ "N(eigen,ev,neut)" ], "schrik": [ "V(intrans,ott,1,ev)" ], "Franse": [ "Adj(attr,stell,verv_neut)" ], "schril": [ "Adj(adv,stell,onverv)" ], "gruwelijke": [ "Adj(attr,stell,verv_neut)" ], "Luxemburg": [ "N(eigen,ev,neut)" ], "dekens": [ "N(soort,mv,neut)" ], "tasten": [ "V(intrans,inf)" ], "kosmonauten": [ "N(soort,mv,neut)" ], "echtparen": [ "N(soort,mv,neut)" ], "vleugje": [ "N(soort,ev,neut)" ], "Meeuw": [ "N(eigen,ev,neut)" ], "borstel": [ "N(soort,ev,neut)" ], "veertigste": [ "Num(rang,bep,zelfst,onverv)" ], "Nord": [ "N(eigen,ev,neut)" ], "bijkomstige": [ "Adj(attr,stell,verv_neut)" ], "stad": [ "N(soort,ev,neut)" ], "nabij": [ "Adj(attr,stell,onverv)", "Prep(voor)" ], "Bolhuis": [ "N(eigen,ev,neut)" ], "voorgoed": [ "Adv(gew,geen_func,stell,onverv)" ], "dierenbos": [ "N(soort,ev,neut)" ], "knipoogjes": [ "N(soort,mv,neut)" ], "stak": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(intrans,ovt,1_of_2_of_3,ev)" ], "stal": [ "N(soort,ev,neut)" ], "Schaamblos": [ "N(eigen,ev,neut)" ], "stam": [ "N(soort,ev,neut)" ], "meesterwerken": [ "N(soort,mv,neut)" ], "krijg": [ "V(trans,ott,1,ev)", "V(trans,ott,2,ev)" ], "realiseerde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "dientengevolge": [ "Adv(gew,aanw)" ], "totale": [ "Adj(attr,stell,verv_neut)" ], "ingesteld": [ "V(trans,verl_dw,onverv)", "V(intrans,verl_dw,onverv)" ], "stap": [ "N(soort,ev,neut)", "V(intrans,ott,1,ev)" ], "kennissen": [ "N(soort,mv,neut)" ], "kunt": [ "V(hulp,ott,2,ev)", "V(trans,ott,2,ev)", "V(hulp,ott,3,ev)" ], "groente": [ "N(soort,ev,neut)" ], "Brown": [ "N(eigen,ev,neut)" ], "pagina": [ "N(soort,ev,neut)" ], "zwakbegaafde": [ "Adj(attr,stell,verv_neut)" ], "gestrekt": [ "V(trans,verl_dw,onverv)" ], "tv-beelden": [ "N(soort,mv,neut)" ], "medisch": [ "Adj(attr,stell,onverv)", "N(eigen,ev,neut)", "Adj(adv,stell,onverv)" ], "ingenomen": [ "V(trans,verl_dw,onverv)" ], "Byrds": [ "N(eigen,mv,neut)" ], "magnetisch": [ "Adj(attr,stell,onverv)" ], "kweekproeven": [ "N(soort,mv,neut)" ], "anticonceptiva": [ "N(soort,mv,neut)" ], "wettelijke": [ "Adj(attr,stell,verv_neut)" ], "Cooper": [ "N(eigen,ev,neut)" ], "parken": [ "N(soort,mv,neut)" ], "laude": [ "Adj(adv,stell,onverv)" ], "betrekking": [ "N(soort,ev,neut)" ], "zaadjes": [ "N(soort,mv,neut)" ], "achterover": [ "Adv(gew,geen_func,stell,onverv)" ], "wijnproduktie": [ "N(soort,ev,neut)" ], "Klop": [ "V(trans,imp)" ], "ingestemd": [ "V(intrans,verl_dw,onverv)" ], "inbegrepen": [ "V(trans,verl_dw,onverv)" ], "dirigent": [ "N(soort,ev,neut)" ], "rijk": [ "Adj(attr,stell,onverv)", "N(soort,ev,neut)" ], "overeind": [ "Adv(gew,geen_func,stell,onverv)" ], "voorbijgangers": [ "N(soort,mv,neut)" ], "rijp": [ "Adj(attr,stell,onverv)" ], "geschikte": [ "Adj(attr,stell,verv_neut)" ], "waarna": [ "Adv(pron,vrag)", "Adv(pron,betr)" ], "kapitalistenvreter": [ "N(soort,ev,neut)" ], "voedings-maatregelen": [ "N(soort,mv,neut)" ], "behaaglijk": [ "Adj(attr,stell,onverv)" ], "vernederd": [ "V(trans,verl_dw,onverv)" ], "soepelheid": [ "N(soort,ev,neut)" ], "Meestal": [ "Adv(gew,geen_func,stell,onverv)" ], "aandoen": [ "V(trans,inf)", "V(intrans,inf)" ], "030-25708": [ "Num(hoofd,bep,attr,onverv)" ], "Reimut": [ "N(eigen,ev,neut)" ], "ervan": [ "Adv(pron,onbep)" ], "Jeu": [ "N(eigen,ev,neut)" ], "Hoensbroek": [ "N(eigen,ev,neut)" ], "bedraagt": [ "V(trans,ott,3,ev)" ], "Ahead": [ "N(eigen,ev,neut)" ], "betekent": [ "V(trans,ott,3,ev)", "V(trans,ott,2,ev)" ], "reprodukties": [ "N(soort,mv,neut)" ], "versnelling": [ "N(soort,ev,neut)" ], "munitie": [ "N(soort,ev,neut)" ], "gekoesterde": [ "V(trans,verl_dw,verv_neut)" ], "vernedert": [ "V(refl,ott,2,ev)" ], "beslis": [ "V(trans,ott,1,ev)" ], "eerstvolgende": [ "Adj(attr,stell,verv_neut)" ], "Tenslotte": [ "Adv(gew,geen_func,stell,onverv)" ], "vertrekken": [ "V(intrans,inf)" ], "doodskopbrilletje": [ "N(soort,ev,neut)" ], "ferry": [ "N(soort,ev,neut)" ], "onverwacht": [ "Adj(adv,stell,onverv)" ], "thuis": [ "Adv(gew,geen_func,stell,onverv)" ], "citroenen": [ "N(soort,mv,neut)" ], "bronzen": [ "Adj(attr,stell,onverv)" ], "cruise": [ "N(soort,ev,neut)" ], "streken": [ "N(soort,mv,neut)" ], "toneelstuk": [ "N(soort,ev,neut)" ], "Naar": [ "Prep(voor)" ], "bevond": [ "V(refl,ovt,1_of_2_of_3,ev)" ], "liefs": [ "Adj(attr,stell,verv_gen)" ], "rozenkranstangetje": [ "N(soort,ev,neut)" ], "verdraaien": [ "V(trans,inf)" ], "mismaakt": [ "V(trans,verl_dw,onverv)" ], "Overlegorgaan": [ "N(soort,ev,neut)" ], "waarom": [ "Adv(gew,betr)", "N(soort,ev,neut)" ], "degelijk": [ "Adj(adv,stell,onverv)" ], "waarop": [ "Adv(pron,vrag)" ], "vertegenwoordigers": [ "N(soort,mv,neut)" ], "chauffeurs": [ "N(soort,mv,neut)" ], "verwekte": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "schelmenstreek": [ "N(soort,ev,neut)" ], "kerstballen": [ "N(soort,mv,neut)" ], "Dierenpark": [ "N(eigen,ev,neut)" ], "rubriek": [ "N(soort,ev,neut)" ], "onbereikbaar": [ "Adj(attr,stell,onverv)" ], "prietpraat": [ "N(soort,ev,neut)" ], "Berengaria": [ "N(eigen,ev,neut)" ], "sjalotten": [ "N(soort,mv,neut)" ], "hoogteverschil": [ "N(soort,ev,neut)" ], "waargebeurd": [ "Adj(attr,stell,onverv)" ], "daaraan": [ "Adv(pron,aanw)" ], "Gasthof": [ "N(soort,ev,neut)", "N(eigen,ev,neut)" ], "taxi": [ "N(soort,ev,neut)" ], "Johnny": [ "N(eigen,ev,neut)" ], "zegt-ie": [ "V(trans,ott,3,ev)" ], "avonturen": [ "N(soort,mv,neut)" ], "schilderijen": [ "N(soort,mv,neut)" ], "veelvoud": [ "N(soort,ev,neut)" ], "opdiepen": [ "V(trans,inf)" ], "hiervoor": [ "Adv(pron,aanw)" ], "wendde": [ "V(refl,ovt,1_of_2_of_3,ev)" ], "flesjes": [ "N(soort,mv,neut)" ], "stel": [ "V(trans,ott,1,ev)" ], "termijn": [ "N(soort,ev,neut)" ], "stem": [ "N(soort,ev,neut)" ], "Herengracht": [ "N(eigen,ev,neut)" ], "mijne": [ "Pron(bez,1,ev,neut,attr)" ], "verdraagbaarheid": [ "N(soort,ev,neut)" ], "erbarmelijk": [ "Adj(attr,stell,onverv)" ], "artistiek": [ "Adj(attr,stell,onverv)" ], "10,25": [ "Num(hoofd,bep,attr,onverv)" ], "alleenstaanden": [ "Adj(zelfst,stell,verv_mv)" ], "bovenstaande": [ "Adj(attr,stell,verv_neut)" ], "aantekenen": [ "V(trans,inf)" ], "Iets": [ "Pron(onbep,neut,zelfst)" ], "sloop": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "balanceerde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "afwijkingen": [ "N(soort,mv,neut)" ], "ingerichte": [ "V(trans,verl_dw,verv_neut)" ], "veeteelt": [ "N(soort,ev,neut)" ], "binnenlanden": [ "N(soort,mv,neut)" ], "sloot": [ "V(refl,ovt,1_of_2_of_3,ev)", "V(trans,ovt,1_of_2_of_3,ev)", "N(soort,ev,neut)" ], "zoethout": [ "N(soort,ev,neut)" ], "beminnen": [ "V(intrans,inf,subst)" ], "Calcutta": [ "N(eigen,ev,neut)" ], "werkenden": [ "V(intrans,teg_dw,verv_mv)" ], "bewonderen": [ "V(trans,inf)" ], "centrum": [ "N(soort,ev,neut)" ], "emaille": [ "N(soort,ev,neut)" ], "schimmige": [ "Adj(attr,stell,verv_neut)" ], "schichtig": [ "Adj(adv,stell,onverv)" ], "flirten": [ "V(intrans,inf)" ], "kust": [ "N(soort,ev,neut)" ], "wenden": [ "V(refl,ott,1_of_2_of_3,mv)", "V(refl,inf)" ], "Urdu": [ "N(eigen,ev,neut)" ], "waarover": [ "Adv(pron,vrag)" ], "schrok": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "aanraken": [ "V(trans,inf)" ], "maatregelen": [ "N(soort,mv,neut)" ], "vak": [ "N(soort,ev,neut)" ], "serieuze": [ "Adj(attr,stell,verv_neut)" ], "kindersprookjes": [ "N(soort,mv,neut)" ], "van": [ "Prep(voor)", "Adv(deel_adv)", "N(soort,ev,neut)", "N(eigen,ev,gen)", "Conj(onder,met_inf)", "N(eigen,ev,neut)" ], "vrolijke": [ "Adj(attr,stell,verv_neut)" ], "aannaaien": [ "V(trans,inf)" ], "Jij": [ "Pron(per,2,ev,nom)" ], "vat": [ "N(soort,ev,neut)" ], "Improvisatie": [ "N(eigen,ev,neut)" ], "sets": [ "N(soort,mv,neut)" ], "Jim": [ "N(eigen,ev,neut)" ], "geschut": [ "N(soort,ev,neut)" ], "gok": [ "N(soort,ev,neut)" ], "aanhangers": [ "N(soort,mv,neut)" ], "verbitterd": [ "V(trans,verl_dw,onverv)" ], "recenties": [ "N(soort,mv,neut)" ], "begeleider": [ "N(soort,ev,neut)" ], "gelden": [ "V(intrans,inf)", "V(trans,inf)", "V(intrans,ott,1_of_2_of_3,mv)" ], "stapte": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "kijkende": [ "V(intrans,teg_dw,verv_neut)" ], "ouden": [ "Adj(zelfst,stell,verv_mv)" ], "Zwanenburg": [ "N(eigen,ev,neut)" ], "verschuilt": [ "V(refl,ott,3,ev)" ], "bedingen": [ "V(trans,inf)" ], "ouder": [ "Adj(attr,vergr,onverv)" ], "wegvallen": [ "V(intrans,inf,subst)" ], "halsringen": [ "N(soort,mv,neut)" ], "verzorgd": [ "V(trans,verl_dw,onverv)" ], "tekstdichter": [ "N(soort,ev,neut)" ], "huisbel": [ "N(soort,ev,neut)" ], "strafgevangenis": [ "N(soort,ev,neut)" ], "prefereert": [ "V(trans,ott,3,ev)" ], "Middellandse": [ "N(eigen,ev,neut)" ], "Lodewijk": [ "N(soort,ev,neut)" ], "wijnsnobs": [ "N(soort,mv,neut)" ], "langspeelplaten": [ "N(soort,mv,neut)" ], "scheidde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Bruinvis": [ "N(eigen,ev,neut)" ], "bardeerspek": [ "N(soort,ev,neut)" ], "blij": [ "Adj(attr,stell,onverv)" ], "blik": [ "N(soort,ev,neut)" ], "Robs": [ "N(eigen,ev,gen)" ], "Truus": [ "N(eigen,ev,neut)" ], "ooievaar": [ "N(soort,ev,neut)" ], "vertoning": [ "N(soort,ev,neut)" ], "verdieping": [ "N(soort,ev,neut)" ], "luchtige": [ "Adj(attr,stell,verv_neut)" ], "kaart": [ "N(soort,ev,neut)" ], "dorpen": [ "N(soort,mv,neut)" ], "gepeupel": [ "N(soort,ev,neut)" ], "Israel": [ "N(eigen,ev,neut)" ], "lucht": [ "N(soort,ev,neut)" ], "abdis": [ "N(soort,ev,neut)" ], "40-45": [ "Num(hoofd,bep,attr,onverv)" ], "....": [ "Punc(hellip)" ], "vakschool": [ "N(soort,ev,neut)" ], "politici": [ "N(soort,mv,neut)" ], "Rock": [ "Misc(vreemd)" ], "leeszaal": [ "N(soort,ev,neut)" ], "stil": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "gebruikt": [ "V(trans,verl_dw,onverv)", "V(trans,ott,3,ev)" ], "vlucht": [ "N(soort,ev,neut)" ], "gespeeld": [ "V(trans,verl_dw,onverv)", "V(intrans,verl_dw,onverv)" ], "bruid": [ "N(soort,ev,neut)" ], "ongemerkt": [ "Adj(adv,stell,onverv)" ], "afloopt": [ "V(trans,ott,3,ev)" ], "aard": [ "N(soort,ev,neut)" ], "grammofoonplaten": [ "N(soort,mv,neut)" ], "curacao": [ "N(soort,ev,neut)" ], "bruin": [ "Adj(attr,stell,onverv)", "Adj(zelfst,stell,onverv)" ], "Begin": [ "N(soort,ev,neut)" ], "muziek": [ "N(soort,ev,neut)" ], "voorgaande": [ "V(intrans,teg_dw,verv_neut)" ], "Ijmuiden": [ "N(eigen,ev,neut)" ], "hierom": [ "Adv(pron,aanw)" ], "huiskamerraam": [ "N(soort,ev,neut)" ], "enorme": [ "Adj(attr,stell,verv_neut)" ], "oordeel": [ "N(soort,ev,neut)" ], "terechtkomt": [ "V(intrans,ott,3,ev)" ], "KLM": [ "N(eigen,ev,neut)" ], "maaltijd": [ "N(soort,ev,neut)" ], "Rode": [ "N(eigen,ev,neut)" ], "Kennedy": [ "N(eigen,ev,neut)" ], "sprakeloos": [ "Adj(attr,stell,onverv)" ], "onschuld": [ "N(soort,ev,neut)" ], "Waarschijnlijk": [ "Adj(adv,stell,onverv)" ], "veertigjarige": [ "Adj(attr,stell,verv_neut)" ], "klinkende": [ "V(intrans,teg_dw,verv_neut)" ], "trouwe": [ "Adj(attr,stell,verv_neut)" ], "Nieuwenhuizens": [ "N(eigen,mv,neut)" ], "overleden": [ "V(intrans,verl_dw,onverv)" ], "Sommige": [ "Pron(onbep,neut,attr)", "Pron(onbep,neut,zelfst)" ], "Tijdens": [ "Prep(voor)" ], "afleveren": [ "V(intrans,inf)", "V(trans,inf)" ], "apen": [ "N(soort,mv,neut)" ], "verrotte": [ "V(intrans,verl_dw,verv_neut)" ], "conditie": [ "N(soort,ev,neut)" ], "avond": [ "N(soort,ev,neut)" ], "vee": [ "N(soort,ev,neut)" ], "Sassari": [ "N(eigen,ev,neut)" ], "raamkozijnen": [ "N(soort,mv,neut)" ], "waarheid": [ "N(soort,ev,neut)" ], "Huizing": [ "N(eigen,ev,neut)" ], "kleurengamma's": [ "N(soort,mv,neut)" ], "ver": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "augurken": [ "N(soort,mv,neut)" ], "vet": [ "Adj(attr,stell,onverv)" ], "slaaf": [ "N(soort,ev,neut)" ], "vergelijkbaar": [ "Adj(attr,stell,onverv)" ], "slaan": [ "V(trans,inf)" ], "sexy": [ "Adj(attr,stell,onverv)" ], "VRIJ": [ "Adj(attr,stell,onverv)" ], "slaap": [ "N(soort,ev,neut)" ], "spoelen": [ "V(intrans,inf)" ], "slaat": [ "V(intrans,ott,3,ev)" ], "bezittende": [ "V(intrans,teg_dw,verv_neut)" ], "literair": [ "Adj(attr,stell,onverv)" ], "politiek": [ "N(soort,ev,neut)", "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "Tielse": [ "Adj(attr,stell,verv_neut)" ], "Roer": [ "V(trans,imp)", "V(intrans,imp)" ], "schenkt": [ "V(trans,ott,3,ev)" ], "slotzusters": [ "N(soort,mv,neut)" ], "weggevallen": [ "V(intrans,verl_dw,onverv)" ], "carre": [ "Adj(attr,stell,onverv)" ], "ja-woord": [ "N(soort,ev,neut)" ], "patio-woning": [ "N(soort,ev,neut)" ], "vijfentwintig": [ "Num(hoofd,bep,attr,onverv)" ], "President": [ "N(soort,ev,neut)" ], "inzichten": [ "N(soort,mv,neut)" ], "volledig": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "handschoenenkastje": [ "N(soort,ev,neut)" ], "gezien": [ "V(trans,verl_dw,onverv)", "Prep(voor)", "V(intrans,verl_dw,onverv)" ], "aversie": [ "N(soort,ev,neut)" ], "bedoeling": [ "N(soort,ev,neut)" ], "lichtelijk": [ "Adj(adv,stell,onverv)" ], "bijdrage": [ "N(soort,ev,neut)" ], "grootpa": [ "N(soort,ev,neut)" ], "grondploeg": [ "N(soort,ev,neut)" ], "vervolgd": [ "V(trans,verl_dw,onverv)" ], "verfrissen": [ "V(trans,inf)" ], "Balmain": [ "N(eigen,ev,neut)" ], "kasteel": [ "N(soort,ev,neut)" ], "Mokers": [ "N(eigen,ev,gen)" ], "waadde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "leiding": [ "N(soort,ev,neut)" ], "meebrengt": [ "V(trans,ott,3,ev)" ], "kilometer": [ "N(soort,ev,neut)" ], "afspraak": [ "N(soort,ev,neut)" ], "hotel": [ "N(soort,ev,neut)" ], "Joe": [ "N(eigen,ev,neut)" ], "vervolgt": [ "V(trans,ott,3,ev)", "V(intrans,ott,3,ev)" ], "Jesus": [ "N(eigen,ev,neut)" ], "besproken": [ "V(trans,verl_dw,onverv)" ], "geschoren": [ "V(refl,verl_dw,onverv)", "V(trans,verl_dw,onverv)" ], "vervuiling": [ "N(soort,ev,neut)" ], "sabbat": [ "N(soort,ev,neut)" ], "merkwaardige": [ "Adj(attr,stell,verv_neut)" ], "koude": [ "Adj(attr,stell,verv_neut)" ], "kostbaar": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "onbeschaamd": [ "Adj(adv,stell,onverv)" ], "snelheid": [ "N(soort,ev,neut)" ], "gezagvoerder": [ "N(soort,ev,neut)" ], "Haitianen": [ "N(soort,mv,neut)" ], "sfinx": [ "N(soort,ev,neut)" ], "gun": [ "V(trans,ott,1,ev)" ], "voegde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Jos": [ "N(eigen,ev,neut)" ], "zachter": [ "Adj(attr,vergr,onverv)" ], "eerder": [ "Adj(adv,vergr,onverv)" ], "Koperplaat": [ "N(soort,ev,neut)" ], "geruststellende": [ "V(intrans,teg_dw,verv_neut)" ], "T.H.": [ "N(soort,ev,neut)" ], "uitschelden": [ "V(trans,inf)" ], "fluit": [ "N(soort,ev,neut)", "V(intrans,ott,2,ev)" ], "bloed": [ "N(soort,ev,neut)" ], "unieke": [ "Adj(attr,stell,verv_neut)" ], "dorpje": [ "N(soort,ev,neut)" ], "bloei": [ "N(soort,ev,neut)" ], "Meer": [ "Num(hoofd,onbep,zelfst,vergr,onverv)" ], "bloem": [ "N(soort,ev,neut)" ], "stralen": [ "V(intrans,inf)" ], "gegevens": [ "N(soort,mv,neut)" ], "commando": [ "N(soort,ev,neut)" ], "rassendiscriminatie": [ "N(soort,ev,neut)" ], "blussen": [ "V(trans,inf)" ], "opgewonden": [ "V(trans,verl_dw,onverv)" ], "sprookjes": [ "N(soort,mv,neut)" ], "opdrachtgever": [ "N(soort,ev,neut)" ], "oude": [ "Adj(attr,stell,verv_neut)", "Adj(zelfst,stell,verv_neut)" ], "peuterde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "serene": [ "Adj(attr,stell,verv_neut)" ], "Bram": [ "N(eigen,ev,neut)" ], "strijken": [ "V(trans,inf)" ], "pieptonen": [ "N(soort,mv,neut)" ], "paleis": [ "N(soort,ev,neut)" ], "gitaar-spelen": [ "V(intrans,inf)" ], "via": [ "Prep(voor)" ], "uitbreiding": [ "N(soort,ev,neut)" ], "platbodems": [ "N(soort,mv,neut)" ], "voegen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "Flinkie": [ "N(eigen,ev,neut)" ], "viezigheid": [ "N(soort,ev,neut)" ], "Thomas": [ "N(eigen,ev,gen)", "N(eigen,ev,neut)" ], "Comite": [ "N(soort,ev,neut)" ], "vin": [ "N(eigen,ev,neut)" ], "bulten": [ "N(soort,mv,neut)" ], "week": [ "N(soort,ev,neut)" ], "versies": [ "N(soort,mv,neut)" ], "vis": [ "N(soort,ev,neut)" ], "Veilig": [ "N(eigen,ev,neut)" ], "sterker": [ "Adj(attr,vergr,onverv)" ], "Barbara": [ "N(eigen,ev,neut)" ], "weer": [ "Adv(gew,geen_func,stell,onverv)", "N(soort,ev,neut)" ], "wees": [ "V(intrans,ovt,1_of_2_of_3,ev)", "N(soort,ev,neut)" ], "knoflookbol": [ "N(soort,ev,neut)" ], "weet": [ "V(trans,ott,1,ev)", "V(intrans,ott,2,ev)", "V(hulp,ott,2,ev)", "V(intrans,ott,1,ev)", "V(trans,ott,3,ev)", "V(trans,ott,2,ev)", "V(hulp,ott,3,ev)" ], "spoort": [ "N(soort,ev,neut)" ], "stof": [ "N(soort,ev,neut)" ], "poging": [ "N(soort,ev,neut)" ], "onduidelijk": [ "Adj(attr,stell,onverv)" ], "gebouwen": [ "N(soort,mv,neut)" ], "broeiende": [ "V(intrans,teg_dw,verv_neut)" ], "Braber": [ "N(eigen,ev,neut)" ], "jongen": [ "N(soort,ev,neut)", "Adj(zelfst,stell,verv_mv)" ], "water": [ "N(soort,ev,neut)" ], "stom": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "grootse": [ "Adj(attr,stell,verv_neut)" ], "ZDF": [ "N(eigen,ev,neut)" ], "verteld": [ "V(trans,verl_dw,onverv)" ], "jonger": [ "Adj(attr,vergr,onverv)" ], "stop": [ "V(intrans,imp)" ], "Mokum": [ "N(eigen,ev,neut)" ], "instant-ster": [ "N(soort,ev,neut)" ], "fluks": [ "Adj(adv,stell,onverv)" ], "krankzinnige": [ "Adj(attr,stell,verv_neut)" ], "poogden": [ "V(hulp,ovt,1_of_2_of_3,mv)" ], "aangrijpende": [ "V(intrans,teg_dw,verv_neut)" ], "Heils": [ "N(eigen,ev,neut)" ], "verbeelden": [ "V(trans,inf)" ], "fluweel": [ "N(soort,ev,neut)" ], "vertelt": [ "V(trans,ott,3,ev)", "V(intrans,ott,3,ev)" ], "Oldenburg": [ "N(eigen,ev,neut)" ], "Wenen": [ "N(eigen,ev,neut)" ], "Olympisch": [ "Adj(attr,stell,onverv)" ], "afgeschrikt": [ "V(trans,verl_dw,onverv)" ], "jammeren": [ "V(trans,ott,1_of_2_of_3,mv)" ], "grootte": [ "N(soort,ev,neut)" ], "Zulke": [ "Pron(aanw,dat,attr)" ], "gerepareerd": [ "V(trans,verl_dw,onverv)" ], "liter": [ "N(soort,ev,neut)" ], "krullend": [ "V(intrans,teg_dw,onverv)" ], "buspassagier": [ "N(soort,ev,neut)" ], "simpel": [ "Adj(attr,stell,onverv)" ], "vochtig": [ "Adj(attr,stell,onverv)" ], "malen": [ "N(soort,mv,neut)" ], "verslijten": [ "V(trans,inf)" ], "slapeloosheid": [ "N(soort,ev,neut)" ], "Egberts": [ "N(eigen,ev,neut)" ], "onvruchtbaarheid": [ "N(soort,ev,neut)" ], "uitgebreide": [ "V(trans,verl_dw,verv_neut)" ], "Vereniging": [ "N(eigen,ev,neut)" ], "jarenlang": [ "Adj(adv,stell,onverv)" ], "overzicht": [ "N(soort,ev,neut)" ], "inwoners": [ "N(soort,mv,neut)" ], "Dackelmutti": [ "N(eigen,ev,neut)" ], "opgetrokken": [ "V(trans,verl_dw,onverv)" ], "geheel": [ "Adj(adv,stell,onverv)", "N(soort,ev,neut)" ], "ambtenaar": [ "N(soort,ev,neut)" ], "randen": [ "N(soort,mv,neut)" ], "Madrid": [ "N(eigen,ev,neut)" ], "nijdig": [ "Adj(adv,stell,onverv)" ], "formaat": [ "N(soort,ev,neut)" ], "Jenny's": [ "N(eigen,ev,gen)" ], "oppositie": [ "N(soort,ev,neut)" ], "hopelijk": [ "Adj(adv,stell,onverv)" ], "minister": [ "N(soort,ev,neut)" ], "Vietnam": [ "N(eigen,ev,neut)" ], "hoofdschuddend": [ "V(intrans,teg_dw,onverv)" ], "vlo": [ "N(soort,ev,neut)" ], "uitzendt": [ "V(trans,ott,3,ev)" ], "poesjenellen": [ "N(soort,mv,neut)" ], "roadmanagers": [ "N(soort,mv,neut)" ], "Bretagnes": [ "N(eigen,ev,gen)" ], "verwarring": [ "N(soort,ev,neut)" ], "bezoek": [ "N(soort,ev,neut)" ], "Roll": [ "Misc(vreemd)" ], "1959-1970": [ "Num(hoofd,bep,zelfst,onverv)" ], "gekonstateerd": [ "V(trans,verl_dw,onverv)" ], "sterkste": [ "Adj(adv,vergr,verv_neut)" ], "willekeurig": [ "Adj(attr,stell,onverv)" ], "skilassen": [ "N(soort,mv,neut)" ], "oksels": [ "N(soort,mv,neut)" ], "maagklachten": [ "N(soort,mv,neut)" ], "opgesteld": [ "V(trans,verl_dw,onverv)" ], "fraaie": [ "Adj(attr,stell,verv_neut)" ], "ontving": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "roereieren": [ "N(soort,mv,neut)" ], "bestuursniveau": [ "N(soort,ev,neut)" ], "Vougeot": [ "N(eigen,ev,neut)" ], "opgenomen": [ "V(trans,verl_dw,onverv)" ], "skilopen": [ "N(soort,ev,neut)" ], "regisseursechtpaar": [ "N(soort,ev,neut)" ], "trouwens": [ "Adv(gew,geen_func,stell,onverv)" ], "petjes": [ "N(soort,mv,neut)" ], "pyama's": [ "N(soort,mv,neut)" ], "rechts": [ "Adv(gew,geen_func,stell,onverv)" ], "allemaal": [ "Pron(onbep,neut,zelfst)" ], "Bijzonder": [ "Adj(adv,stell,onverv)" ], "Jus": [ "N(soort,ev,neut)" ], "harkerig": [ "Adj(adv,stell,onverv)" ], "elegant": [ "Adj(attr,stell,onverv)" ], "kapot": [ "Adj(attr,stell,onverv)" ], "armste": [ "Adj(attr,overtr,verv_neut)" ], "luiers": [ "N(soort,mv,neut)" ], "terug": [ "Adv(gew,geen_func,stell,onverv)" ], "lieve": [ "Adj(attr,stell,verv_neut)" ], "uitpluizen": [ "V(trans,inf)" ], "binnenlandse": [ "Adj(attr,stell,verv_neut)" ], "safari": [ "N(soort,ev,neut)" ], "fietsjes": [ "N(soort,mv,neut)" ], "Welkom": [ "Adj(attr,stell,onverv)" ], "wegging": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "Indiaan": [ "N(eigen,ev,neut)" ], "banken": [ "N(soort,mv,neut)" ], "voelt": [ "V(trans,ott,3,ev)", "V(refl,ott,2,ev)", "V(refl,ott,3,ev)" ], "sacramentele": [ "Adj(attr,stell,verv_neut)" ], "wonderwel": [ "Adv(gew,geen_func,stell,onverv)" ], "kopjes": [ "N(soort,mv,neut)" ], "Wilhelm": [ "N(eigen,ev,neut)" ], "gebaard": [ "V(trans,verl_dw,onverv)" ], "verveloze": [ "Adj(attr,stell,verv_neut)" ], "talrijke": [ "Pron(onbep,neut,attr)" ], "wensen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "schotel": [ "N(soort,ev,neut)" ], "KVP": [ "N(eigen,ev,neut)" ], "doorgaan": [ "V(intrans,inf)" ], "zwak": [ "Adj(adv,stell,onverv)" ], "buitenlander": [ "N(soort,ev,neut)" ], "restaurants": [ "N(soort,mv,neut)" ], "gescheiden": [ "V(trans,verl_dw,onverv)" ], "vol": [ "Adj(attr,stell,onverv)" ], "handgranaat": [ "N(soort,ev,neut)" ], "viel": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "tactiek": [ "N(soort,ev,neut)" ], "klusje": [ "N(soort,ev,neut)" ], "von": [ "N(eigen,ev,neut)" ], "sigaretten": [ "N(soort,mv,neut)" ], "redenering": [ "N(soort,ev,neut)" ], "vier": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "Faubourg": [ "N(eigen,ev,neut)" ], "bigamie": [ "N(soort,ev,neut)" ], "hoefde": [ "V(hulp,ovt,1_of_2_of_3,ev)" ], "ontdekt": [ "V(trans,ott,3,ev)", "V(trans,verl_dw,onverv)" ], "Rood": [ "Adj(zelfst,stell,onverv)" ], "firma": [ "N(soort,ev,neut)" ], "geheim": [ "N(soort,ev,neut)" ], "uitziet": [ "V(intrans,ott,3,ev)" ], "meeslepen": [ "V(trans,inf)" ], "haarspoeling": [ "N(soort,ev,neut)" ], "Paasschen": [ "N(eigen,ev,neut)" ], "Sluiter": [ "N(eigen,ev,neut)" ], "zwarte": [ "Adj(attr,stell,verv_neut)" ], "Minh-route": [ "N(eigen,ev,neut)" ], "stuk": [ "N(soort,ev,neut)", "Adj(attr,stell,onverv)" ], "tweeendertig": [ "Num(hoofd,bep,zelfst,onverv)" ], "gerangeerd": [ "V(trans,verl_dw,onverv)" ], "bordeel": [ "N(soort,ev,neut)" ], "bewijsmateriaal": [ "N(soort,ev,neut)" ], "zette": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "terrein": [ "N(soort,ev,neut)" ], "geschranst": [ "V(intrans,verl_dw,onverv)" ], "relatievormen": [ "N(soort,mv,neut)" ], "provinciaal": [ "Adj(attr,stell,onverv)" ], "parlementariers": [ "N(soort,mv,neut)" ], "teleurgesteld": [ "V(trans,verl_dw,onverv)" ], "kritieke": [ "Adj(attr,stell,verv_neut)" ], "vogeltje": [ "N(soort,ev,neut)" ], "bevalt": [ "V(intrans,ott,3,ev)" ], "zieke": [ "Adj(attr,stell,verv_neut)" ], "wapens": [ "N(soort,mv,neut)" ], "randje": [ "N(soort,ev,neut)" ], "huishoudrekening": [ "N(soort,ev,neut)" ], "modder": [ "N(soort,ev,neut)" ], "letters": [ "N(soort,mv,neut)" ], "bestreden": [ "V(trans,verl_dw,onverv)" ], "feiten": [ "N(soort,mv,neut)" ], "marine": [ "N(soort,ev,neut)" ], "Brit": [ "N(soort,ev,neut)" ], "Meng": [ "V(trans,imp)" ], "verband": [ "N(soort,ev,neut)" ], "toppers": [ "N(soort,mv,neut)" ], "verlangd": [ "V(trans,verl_dw,onverv)" ], "rotjes": [ "N(soort,mv,neut)" ], "Bijbelgenootschap": [ "N(eigen,ev,neut)" ], "lynchmentaliteit": [ "N(soort,ev,neut)" ], "blond": [ "Adj(attr,stell,onverv)" ], "z.g.": [ "Adj(attr,stell,verv_neut)" ], "wroeten": [ "V(intrans,inf)" ], "vermoeidheid": [ "N(soort,ev,neut)" ], "gevorkte": [ "Adj(attr,stell,verv_neut)" ], "gezonde": [ "Adj(attr,stell,verv_neut)" ], "lagen": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "verbanningsoord": [ "N(soort,ev,neut)" ], "hulde": [ "N(soort,ev,neut)" ], "coureurs": [ "N(soort,mv,neut)" ], "gestalte": [ "N(soort,ev,neut)" ], "lager": [ "Adj(attr,vergr,onverv)" ], "verlangt": [ "V(trans,ott,3,ev)" ], "kunsthistorici": [ "N(soort,mv,neut)" ], "citroenbrandewijn": [ "N(soort,ev,neut)" ], "Louis": [ "N(eigen,ev,neut)", "Adj(attr,stell,verv_neut)" ], "geinteresseerden": [ "V(trans,verl_dw,verv_mv)" ], "passeert": [ "V(intrans,ott,3,ev)" ], "nuchterheid": [ "N(soort,ev,neut)" ], "flat": [ "N(soort,ev,neut)" ], "frustreren": [ "V(trans,inf)" ], "gehele": [ "Adj(attr,stell,verv_neut)" ], "straatzanger": [ "N(soort,ev,neut)" ], "urgente": [ "Adj(attr,stell,verv_neut)" ], "Kenners": [ "N(soort,mv,neut)" ], "slang": [ "N(soort,ev,neut)" ], "borst": [ "N(soort,ev,neut)" ], "wens": [ "N(soort,ev,neut)" ], "glijden": [ "V(intrans,inf)" ], "slank": [ "Adj(attr,stell,onverv)" ], "voldoening": [ "N(soort,ev,neut)" ], "teevee": [ "N(soort,ev,neut)" ], "afgrondelijke": [ "Adj(attr,stell,verv_neut)" ], "musical": [ "N(soort,ev,neut)" ], "bloot": [ "Adj(attr,stell,onverv)", "N(soort,ev,neut)" ], "Kuller": [ "N(eigen,ev,neut)" ], "Dobrowolski": [ "N(eigen,ev,neut)" ], "fietsen": [ "V(intrans,inf)" ], "opvoeren": [ "V(trans,inf)" ], "afhankelijker": [ "Adj(attr,vergr,onverv)" ], "scheidsrechters": [ "N(soort,mv,neut)" ], "jerseys": [ "N(soort,mv,neut)" ], "Beatrix": [ "N(eigen,ev,neut)" ], "corruptie": [ "N(soort,ev,neut)" ], "fauteuiltjes": [ "N(soort,mv,neut)" ], "slinger": [ "N(soort,ev,neut)" ], "MIJN": [ "Pron(bez,1,ev,neut,attr)" ], "machten": [ "N(soort,mv,neut)" ], "Huwelijken": [ "N(soort,mv,neut)" ], "Dorfmeister": [ "N(eigen,ev,neut)" ], "bureaucratie": [ "N(soort,ev,neut)" ], "bedevaartsoord": [ "N(soort,ev,neut)" ], "bezetten": [ "V(trans,ott,1_of_2_of_3,mv)" ], "Cummins": [ "N(eigen,ev,neut)" ], "Wild-Westtaferelen": [ "N(soort,mv,neut)" ], "secretaresse": [ "N(soort,ev,neut)" ], "schrijven": [ "V(trans,inf)", "V(intrans,inf)", "V(trans,inf,subst)", "V(intrans,ott,1_of_2_of_3,mv)", "V(trans,ott,1_of_2_of_3,mv)" ], "gravida": [ "N(soort,ev,neut)" ], "breedstralers": [ "N(soort,mv,neut)" ], "petekind": [ "N(soort,ev,neut)" ], "schrijver": [ "N(soort,ev,neut)" ], "wijzen": [ "V(intrans,ott,1_of_2_of_3,mv)", "V(intrans,inf)", "V(trans,inf)", "N(soort,mv,neut)" ], "deed": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(hulp,ovt,1_of_2_of_3,ev)" ], "vijf": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "Derde": [ "N(eigen,ev,neut)" ], "publiciteit": [ "N(soort,ev,neut)" ], "geaccentueerd": [ "V(trans,verl_dw,onverv)" ], "wijzer": [ "Adj(attr,vergr,onverv)" ], "opbrengen": [ "V(trans,inf,subst)" ], "heerlijk": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "hindernissen": [ "N(soort,mv,neut)" ], "prutsertje": [ "N(soort,ev,neut)" ], "deel": [ "N(soort,ev,neut)" ], "bijvoorbeeld": [ "Adv(gew,geen_func,stell,onverv)" ], "voert": [ "V(trans,ott,3,ev)" ], "Temps": [ "N(eigen,ev,neut)" ], "meegebracht": [ "V(trans,verl_dw,onverv)" ], "Totale": [ "Adj(attr,stell,verv_neut)" ], "had": [ "V(hulp,ovt,1_of_2_of_3,ev)", "V(trans,ovt,1_of_2_of_3,ev)" ], "uitzijn": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "Floris": [ "N(eigen,ev,neut)" ], "verbeten": [ "V(trans,verl_dw,onverv)" ], "hak": [ "V(trans,imp)" ], "Andrea": [ "N(eigen,ev,neut)" ], "hal": [ "N(soort,ev,neut)" ], "Agua": [ "N(eigen,ev,neut)" ], "geleidelijk": [ "Adj(adv,stell,onverv)" ], "ham": [ "N(soort,ev,neut)" ], "tederheid": [ "N(soort,ev,neut)" ], "Egypte": [ "N(eigen,ev,neut)" ], "thuiskom": [ "V(intrans,ott,1,ev)" ], "halsslagader": [ "N(soort,ev,neut)" ], "onteigend": [ "V(trans,verl_dw,onverv)" ], "Mansfield": [ "N(eigen,ev,neut)" ], "kindertehuis": [ "N(soort,ev,neut)" ], "kerkgebouwen": [ "N(soort,mv,neut)" ], "functioneren": [ "V(intrans,inf,subst)" ], "eierdooier": [ "N(soort,ev,neut)" ], "Andrew": [ "N(eigen,ev,neut)" ], "weegt": [ "V(trans,ott,3,ev)" ], "bracht": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "durende": [ "V(trans,teg_dw,verv_neut)" ], "baarmoeder": [ "N(soort,ev,neut)" ], "modieuze": [ "Adj(attr,stell,verv_neut)" ], "bedoeninkje": [ "N(soort,ev,neut)" ], "bewoond": [ "V(trans,verl_dw,onverv)" ], "werd": [ "V(hulp_of_kopp,ovt,1_of_2_of_3,ev)" ], "geprikt": [ "V(trans,verl_dw,onverv)" ], "muurvast": [ "Adj(attr,stell,onverv)" ], "huisvrouw": [ "N(soort,ev,neut)" ], "fles": [ "N(soort,ev,neut)" ], "gietvormpjes": [ "N(soort,mv,neut)" ], "werk": [ "N(soort,ev,neut)" ], "gruwel": [ "N(soort,ev,neut)" ], "gruwen": [ "V(intrans,inf)" ], "vilt": [ "N(soort,ev,neut)" ], "Manmoedig": [ "Adj(adv,stell,onverv)" ], "Corry": [ "N(eigen,ev,neut)" ], "oever": [ "N(soort,ev,neut)" ], "meedeelde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "wortels": [ "N(soort,mv,neut)" ], "expansie": [ "N(soort,ev,neut)" ], "openluchttafrelen": [ "N(soort,mv,neut)" ], "geprofiteerd": [ "V(intrans,verl_dw,onverv)" ], "althans": [ "Adv(gew,geen_func,stell,onverv)" ], "paarse": [ "Adj(attr,stell,verv_neut)" ], "Chinezen": [ "N(soort,mv,neut)" ], "vertegenwoordiger": [ "N(soort,ev,neut)" ], "Lino": [ "N(eigen,ev,neut)" ], "bruiden": [ "N(soort,mv,neut)" ], "lichten": [ "N(soort,mv,neut)" ], "blote": [ "Adj(attr,stell,verv_neut)" ], "couturier": [ "N(soort,ev,neut)" ], "Waarom": [ "Adv(gew,betr)", "Adv(gew,vrag)" ], "nationale": [ "Adj(attr,stell,verv_neut)" ], "voelbaar": [ "Adj(attr,stell,onverv)" ], "spoor": [ "N(soort,ev,neut)" ], "spoot": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "verwelkt": [ "V(trans,verl_dw,onverv)", "V(intrans,verl_dw,onverv)" ], "beroemdheid": [ "N(soort,ev,neut)" ], "verheven": [ "V(trans,verl_dw,onverv)" ], "oppervlakte": [ "N(soort,ev,neut)" ], "fietsje": [ "N(soort,ev,neut)" ], "gebeeldhouwde": [ "V(trans,verl_dw,verv_neut)" ], "luisterende": [ "V(intrans,teg_dw,verv_neut)" ], "opzichten": [ "N(soort,mv,neut)" ], "voordelen": [ "N(soort,mv,neut)" ], "Vensters": [ "N(soort,mv,neut)" ], "robijnen": [ "Adj(attr,stell,onverv)" ], "wisselvalligheden": [ "N(soort,mv,neut)" ], "bodem": [ "N(soort,ev,neut)" ], "ronde": [ "Adj(attr,stell,verv_neut)" ], "sublieme": [ "Adj(attr,stell,verv_neut)" ], "vind": [ "V(trans,ott,1,ev)", "V(trans,ott,2,ev)" ], "werden": [ "V(hulp_of_kopp,ovt,1_of_2_of_3,mv)" ], "heb": [ "V(hulp,ott,1,ev)", "V(intrans,ott,1,ev)", "V(trans,ott,2,ev)", "V(hulp,ott,2,ev)", "V(trans,ott,1,ev)" ], "plezierige": [ "Adj(attr,stell,verv_neut)" ], "geharkt": [ "V(trans,verl_dw,onverv)" ], "beknopt": [ "V(trans,verl_dw,onverv)" ], "verpleegster": [ "N(soort,ev,neut)" ], "versierd": [ "V(trans,verl_dw,onverv)" ], "cremes": [ "N(soort,mv,neut)" ], "hem": [ "Pron(per,3,ev,dat_of_acc)" ], "hen": [ "Pron(per,3,mv,dat_of_acc)" ], "gevestigd": [ "V(refl,verl_dw,onverv)", "V(trans,verl_dw,onverv)" ], "her": [ "Adv(gew,aanw)" ], "verliefdheden": [ "N(soort,mv,neut)" ], "muilezel": [ "N(soort,ev,neut)" ], "het": [ "Art(bep,onzijd,neut)", "Pron(onbep,neut,zelfst)", "Pron(per,3,ev,dat_of_acc)", "Pron(per,3,ev,nom)", "N(soort,ev,neut)" ], "versiert": [ "V(trans,ott,2,ev)" ], "homofiel": [ "Adj(attr,stell,onverv)" ], "opvoeders": [ "N(soort,mv,neut)" ], "kwalificatie": [ "N(soort,ev,neut)" ], "ransel": [ "V(trans,imp)" ], "zaterdagmorgen": [ "N(soort,ev,neut)" ], "Wierden": [ "N(eigen,ev,neut)" ], "Schrok": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "Tenminste": [ "Adv(gew,geen_func,stell,onverv)" ], "kenmerkend": [ "V(intrans,teg_dw,onverv)" ], "opnieuw": [ "Adv(gew,geen_func,stell,onverv)" ], "heilig": [ "Adj(adv,stell,onverv)" ], "opgelost": [ "V(trans,verl_dw,onverv)" ], "feestvieren": [ "V(intrans,inf)" ], "belasting": [ "N(soort,ev,neut)" ], "Blijkbaar": [ "Adv(gew,geen_func,stell,onverv)" ], "verscheidene": [ "Pron(onbep,neut,attr)" ], "vertaler": [ "N(soort,ev,neut)" ], "aflopen": [ "V(intrans,inf,subst)" ], "verdwijnende": [ "V(intrans,teg_dw,verv_neut)" ], "weigert": [ "V(hulp,ott,3,ev)" ], "interpretaties": [ "N(soort,mv,neut)" ], "plezier": [ "N(soort,ev,neut)" ], "strikje": [ "N(soort,ev,neut)" ], "niet-geente": [ "Adj(attr,stell,verv_neut)" ], "agressief": [ "Adj(attr,stell,onverv)" ], "Nagellak": [ "N(soort,ev,neut)" ], "grijze": [ "Adj(attr,stell,verv_neut)" ], "duinrand": [ "N(soort,ev,neut)" ], "sport": [ "N(soort,ev,neut)" ], "negatief": [ "Adj(attr,stell,onverv)" ], "Robert": [ "N(eigen,ev,neut)" ], "Kan": [ "V(hulp,ott,3,ev)" ], "leuke": [ "Adj(attr,stell,verv_neut)" ], "discussieert": [ "V(intrans,ott,3,ev)" ], "bamboes": [ "N(soort,mv,neut)" ], "inneemt": [ "V(trans,ott,3,ev)" ], "uitgemaakt": [ "V(trans,verl_dw,onverv)" ], "keper": [ "N(soort,ev,neut)" ], "dele": [ "N(soort,ev,dat)" ], "theater": [ "N(soort,ev,neut)" ], "pizza": [ "N(soort,ev,neut)" ], "standpunt": [ "N(soort,ev,neut)" ], "amerikaanse": [ "Adj(attr,stell,verv_neut)" ], "doorgeslagen": [ "V(intrans,verl_dw,onverv)" ], "begrijpen": [ "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "onverhulder": [ "Adj(attr,vergr,onverv)" ], "starten": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "inwijding": [ "N(soort,ev,neut)" ], "groenteboer": [ "N(soort,ev,neut)" ], "doorgang": [ "N(soort,ev,neut)" ], "ouwe": [ "Adj(zelfst,stell,verv_neut)", "Adj(attr,stell,verv_neut)" ], "analyse": [ "N(soort,ev,neut)" ], "inzittenden": [ "Adj(zelfst,stell,verv_mv)" ], "wilden": [ "V(hulp,ovt,1_of_2_of_3,mv)" ], "behandelen": [ "V(trans,inf)" ], "getrouw": [ "Adj(attr,stell,onverv)" ], "omdoen": [ "V(trans,inf)" ], "Armstrong-achtige": [ "Adj(attr,stell,verv_neut)" ], "nacht": [ "N(soort,ev,neut)" ], "bijvalskreet": [ "N(soort,ev,neut)" ], "vindt": [ "V(trans,ott,3,ev)", "V(trans,ott,2,ev)", "V(refl,ott,3,ev)" ], "zijner": [ "Pron(bez,3,ev,gen,attr)" ], "Ingram": [ "N(eigen,ev,neut)" ], "Vlucht": [ "N(soort,ev,neut)" ], "gepasseerd": [ "V(trans,verl_dw,onverv)" ], "oorlogslittekens": [ "N(soort,mv,neut)" ], "buitenlandse": [ "Adj(attr,stell,verv_neut)" ], "Florence": [ "N(eigen,ev,neut)" ], "drieduizend": [ "Num(hoofd,bep,attr,onverv)" ], "redderen": [ "V(trans,inf)" ], "zwangerschapsonderbreking": [ "N(eigen,ev,neut)" ], "hij": [ "Pron(per,3,ev,nom)" ], "vasthouden": [ "V(trans,inf,subst)", "V(trans,inf)" ], "geindoctrineerd": [ "V(trans,verl_dw,onverv)" ], "Voeg": [ "V(trans,imp)" ], "Muziek": [ "N(soort,ev,neut)" ], "kostuum": [ "N(soort,ev,neut)" ], "Oranjeklanten": [ "N(soort,mv,neut)" ], "geacht": [ "V(trans,verl_dw,onverv)" ], "beweging": [ "N(soort,ev,neut)" ], "haalt": [ "V(trans,ott,2,ev)", "V(refl,ott,3,ev)" ], "gesprek": [ "N(soort,ev,neut)" ], "bewerken": [ "V(trans,inf,subst)" ], "beschermde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "denk": [ "V(intrans,ott,1,ev)", "V(trans,ott,1,ev)", "V(intrans,imp)", "V(intrans,ott,2,ev)", "V(trans,ott,2,ev)" ], "tuintjes": [ "N(soort,mv,neut)" ], "kookboek": [ "N(soort,ev,neut)" ], "dreigt": [ "V(hulp,ott,3,ev)", "V(intrans,ott,3,ev)" ], "ogen": [ "N(soort,mv,neut)" ], "Virginia": [ "N(eigen,ev,neut)" ], "verstandig": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "winkel": [ "N(soort,ev,neut)" ], "Allah's": [ "N(eigen,ev,gen)" ], "notehouten": [ "Adj(attr,stell,onverv)" ], "jongste": [ "Adj(zelfst,overtr,verv_neut)" ], "besparen": [ "V(trans,inf)" ], "hamers": [ "N(soort,mv,neut)" ], "krioelende": [ "V(intrans,teg_dw,verv_neut)" ], "raadgevingen": [ "N(soort,mv,neut)" ], "sierde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "schitterden": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "uitgedoofde": [ "V(intrans,verl_dw,verv_neut)" ], "mayonaise": [ "N(soort,ev,neut)" ], "trombose": [ "N(soort,ev,neut)" ], "Daarvoor": [ "Adv(pron,aanw)" ], "ontmoet": [ "V(trans,ott,3,ev)" ], "sterkere": [ "Adj(attr,vergr,verv_neut)" ], "beschermen": [ "V(trans,inf)" ], "bloedverlies": [ "N(soort,ev,neut)" ], "Ken": [ "N(eigen,ev,neut)" ], "beschermer": [ "N(soort,ev,neut)" ], "zagen": [ "V(trans,ovt,1_of_2_of_3,mv)", "V(intrans,ovt,1_of_2_of_3,mv)" ], "militante": [ "Adj(attr,stell,verv_neut)" ], "deinen": [ "V(intrans,inf)" ], "situatie": [ "N(soort,ev,neut)" ], "h.a.v.o.": [ "N(soort,ev,neut)" ], "Gezien": [ "Prep(voor)" ], "werknemer": [ "N(soort,ev,neut)" ], "Hoorn": [ "N(eigen,ev,neut)" ], "reclame": [ "N(soort,ev,neut)" ], "Hengeveld": [ "N(eigen,ev,neut)" ], "kwartet": [ "N(soort,ev,neut)" ], "gipsafgietsel": [ "N(soort,ev,neut)" ], "schrift": [ "N(soort,ev,neut)" ], "uurwerk": [ "N(soort,ev,neut)" ], "wijkagent": [ "N(soort,ev,neut)" ], "armere": [ "Adj(attr,vergr,verv_neut)" ], "nieuws-rubriek": [ "N(soort,ev,neut)" ], "dept": [ "Misc(vreemd)" ], "capabel": [ "Adj(attr,stell,onverv)" ], "voorliefde": [ "N(soort,ev,neut)" ], "routine-operaties": [ "N(soort,mv,neut)" ], "gevaren": [ "N(soort,mv,neut)" ], "kantongerecht": [ "N(soort,ev,neut)" ], "toeristenbelasting": [ "N(soort,ev,neut)" ], "parfumnaam": [ "N(soort,ev,neut)" ], "Indiase": [ "Adj(attr,stell,verv_neut)" ], "bevorderend": [ "V(intrans,teg_dw,onverv)" ], "bondgenoten": [ "N(soort,mv,neut)" ], "radio-actieve": [ "Adj(attr,stell,verv_neut)" ], "samenleving": [ "N(soort,ev,neut)" ], "deurhoogte": [ "N(soort,ev,neut)" ], "flop": [ "N(soort,ev,neut)" ], "serverende": [ "V(trans,teg_dw,verv_neut)" ], "laatst": [ "Adj(adv,vergr,onverv)" ], "banen": [ "N(eigen,ev,neut)", "N(soort,mv,neut)" ], "gewassen": [ "V(trans,verl_dw,onverv)", "V(intrans,verl_dw,onverv)" ], "tiende": [ "Num(rang,bep,attr,onverv)" ], "clubs": [ "N(soort,mv,neut)" ], "Zappa": [ "N(eigen,ev,neut)" ], "ballade": [ "N(soort,ev,neut)" ], "ordentelijke": [ "Adj(attr,stell,verv_neut)" ], "weten": [ "V(trans,inf)", "V(hulp,inf)", "V(trans,ott,1_of_2_of_3,mv)", "V(intrans,ott,1_of_2_of_3,mv)", "V(intrans,inf)", "V(hulp,ott,1_of_2_of_3,mv)" ], "enkele": [ "Pron(onbep,neut,attr)" ], "outsiders": [ "N(soort,mv,neut)" ], "enige": [ "Adj(attr,stell,verv_neut)", "Pron(onbep,neut,attr)", "Adj(zelfst,stell,verv_neut)", "Pron(onbep,neut,zelfst)" ], "kinderliteratuur": [ "N(soort,ev,neut)" ], "Piaf": [ "N(eigen,ev,neut)" ], "lieflijkheid": [ "N(soort,ev,neut)" ], "waardeloze": [ "Adj(attr,stell,verv_neut)" ], "zwangerschap": [ "N(soort,ev,neut)" ], "zinloosheid": [ "N(soort,ev,neut)" ], "zusters": [ "N(soort,mv,neut)" ], "pijlsnelle": [ "Adj(attr,stell,verv_neut)" ], "Kettingroker": [ "N(soort,ev,neut)" ], "professionals": [ "N(soort,mv,neut)" ], "ladies": [ "Misc(vreemd)" ], "bedrogen": [ "V(trans,verl_dw,onverv)" ], "bloemen": [ "N(soort,mv,neut)" ], "Kijkt": [ "V(trans,ott,3,ev)" ], "Onmogelijk": [ "Adj(attr,stell,onverv)" ], "uitsteken": [ "V(intrans,inf)" ], "Huisvrouw-Thuisvrouw": [ "N(eigen,ev,neut)" ], "dierenarts": [ "N(soort,ev,neut)" ], "shorts": [ "N(soort,mv,neut)" ], "kaarslicht": [ "N(soort,ev,neut)" ], "wal": [ "N(soort,ev,neut)" ], "bezorgde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "brandkastkraken": [ "N(soort,mv,neut)" ], "hoorden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "lichaamsbeweging": [ "N(soort,ev,neut)" ], "war": [ "N(soort,ev,neut)" ], "brandkastkraker": [ "N(soort,ev,neut)" ], "naaimachine": [ "N(soort,ev,neut)" ], "hoe": [ "Adv(gew,betr)" ], "modesnufje": [ "N(soort,ev,neut)" ], "was": [ "V(hulp_of_kopp,ovt,1_of_2_of_3,ev)", "N(soort,ev,neut)", "V(trans,imp)", "V(intrans,ovt,1_of_2_of_3,ev)" ], "hof": [ "N(soort,ev,neut)" ], "wat": [ "Pron(vrag,neut,attr)", "Pron(onbep,neut,zelfst)", "Pron(betr,neut,zelfst)", "Pron(onbep,neut,attr)" ], "haard": [ "N(soort,ev,neut)" ], "gebleken": [ "V(intrans,verl_dw,onverv)", "V(hulp_of_kopp,verl_dw,onverv)" ], "overschakelen": [ "V(intrans,inf)" ], "hartslag": [ "N(soort,ev,neut)" ], "M'n": [ "Pron(bez,1,ev,neut,attr)" ], "voetbalgebeuren": [ "N(soort,ev,neut)" ], "grondbarriere": [ "N(soort,ev,neut)" ], "Rembrandtplein": [ "N(eigen,ev,neut)" ], "Kip": [ "N(soort,ev,neut)" ], "evangelisten": [ "N(soort,mv,neut)" ], "besteed": [ "V(trans,verl_dw,onverv)" ], "Saljoet": [ "N(eigen,ev,neut)" ], "scheidende": [ "V(intrans,teg_dw,verv_neut)" ], "abortussen": [ "N(soort,mv,neut)" ], "schrijf": [ "V(trans,ott,1,ev)" ], "evenzeer": [ "Adv(gew,geen_func,stell,onverv)" ], "hou": [ "V(intrans,imp)", "V(intrans,ott,1,ev)" ], "stimulerende": [ "V(intrans,teg_dw,verv_neut)" ], "perron": [ "N(soort,ev,neut)" ], "zinloos": [ "Adj(attr,stell,onverv)" ], "Acapulco": [ "N(eigen,ev,neut)" ], "Radio": [ "N(eigen,ev,neut)", "N(soort,ev,neut)" ], "overbrengen": [ "V(trans,inf)" ], "rondom": [ "Prep(voor)" ], "schrijn": [ "N(soort,ev,neut)" ], "doorsnee": [ "N(soort,ev,neut)" ], "kabinet-Cals": [ "N(eigen,ev,neut)" ], "hongersnood": [ "N(soort,ev,neut)" ], "onheil": [ "N(soort,ev,neut)" ], "administratrice": [ "N(soort,ev,neut)" ], "stimulerends": [ "V(intrans,teg_dw,verv_gen)" ], "Fred": [ "N(eigen,ev,neut)" ], "uitblijven": [ "V(intrans,inf)" ], "bezorgen": [ "V(trans,inf)" ], "maharadja's": [ "N(soort,mv,neut)" ], "kwartje": [ "N(soort,ev,neut)" ], "Alcohol": [ "N(soort,ev,neut)" ], "kroost": [ "N(soort,ev,neut)" ], "bovendrijven": [ "V(intrans,inf)" ], "eentje": [ "Num(hoofd,bep,zelfst,onverv)", "Num(hoofd,bep,attr,onverv)" ], "eerste": [ "Num(rang,bep,attr,onverv)", "Num(rang,bep,zelfst,onverv)" ], "haast": [ "N(soort,ev,neut)", "V(refl,ott,3,ev)" ], "wetenschappelijke": [ "Adj(attr,stell,verv_neut)" ], "zich": [ "Pron(ref,3,ev_of_mv)" ], "ontvreemd": [ "V(trans,verl_dw,onverv)" ], "stoel": [ "N(soort,ev,neut)" ], "schrikt": [ "V(intrans,ott,3,ev)" ], "Willeke": [ "N(eigen,ev,neut)" ], "fonteinen": [ "N(soort,mv,neut)" ], "gelegd": [ "V(trans,verl_dw,onverv)" ], "kledingstukken": [ "N(soort,mv,neut)" ], "ribbelvormige": [ "Adj(attr,stell,verv_neut)" ], "deur": [ "N(soort,ev,neut)" ], "magische": [ "Adj(attr,stell,verv_neut)" ], "onberedeneerde": [ "Adj(attr,stell,verv_neut)" ], "deux": [ "N(eigen,ev,neut)" ], "verwijderen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "vernauwen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "blank": [ "Adj(attr,stell,onverv)" ], "aanneemt": [ "V(trans,ott,3,ev)" ], "essayiste": [ "N(soort,ev,neut)" ], "rollen": [ "N(soort,mv,neut)", "V(intrans,inf)" ], "hartkamers": [ "N(soort,mv,neut)" ], "uitgedrukt": [ "V(trans,verl_dw,onverv)" ], "plots": [ "Adv(gew,geen_func,stell,onverv)", "Adj(adv,stell,onverv)" ], "maatschappij": [ "N(soort,ev,neut)" ], "gehaktbal": [ "N(soort,ev,neut)" ], "teruggaaf": [ "N(soort,ev,neut)" ], "silhouetten": [ "N(soort,mv,neut)" ], "circa": [ "Adv(gew,geen_func,stell,onverv)" ], "allesbehalve": [ "Adv(gew,geen_func,stell,onverv)" ], "bewoners": [ "N(soort,mv,neut)" ], "besmettelijke": [ "Adj(attr,stell,verv_neut)" ], "roemruchte": [ "Adj(attr,stell,verv_neut)" ], "Piet": [ "N(eigen,ev,neut)" ], "cijfer": [ "N(soort,ev,neut)" ], "plaat": [ "N(soort,ev,neut)" ], "negentiende": [ "Num(rang,bep,attr,onverv)" ], "maandenlang": [ "Adj(adv,stell,onverv)" ], "schaamt": [ "V(refl,ott,3,ev)" ], "kotjes": [ "N(soort,mv,neut)" ], "socio-economische": [ "Adj(attr,stell,verv_neut)" ], "wijnhuizen": [ "N(soort,mv,neut)" ], "beschuldiging": [ "N(soort,ev,neut)" ], "Leuvense": [ "Adj(attr,stell,verv_neut)" ], "kristal": [ "N(soort,ev,neut)" ], "klussen": [ "N(soort,mv,neut)" ], "onhandigheid": [ "N(soort,ev,neut)" ], "lichtte": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Fransen": [ "Adj(zelfst,stell,verv_mv)" ], "inwonen": [ "V(intrans,inf)" ], "ex-president": [ "N(soort,ev,neut)" ], "gebouwd": [ "V(trans,verl_dw,onverv)" ], "toevoegt": [ "V(trans,ott,3,ev)" ], "geroutineerde": [ "Adj(attr,stell,verv_neut)" ], "wee": [ "Int" ], "maangodin": [ "N(soort,ev,neut)" ], "weg": [ "Adv(gew,geen_func,stell,onverv)", "N(soort,ev,neut)" ], "ziek": [ "Adj(attr,stell,onverv)" ], "immers": [ "Adv(gew,geen_func,stell,onverv)" ], "wel": [ "Adv(gew,geen_func,stell,onverv)" ], "ziel": [ "N(soort,ev,neut)" ], "koeien": [ "N(soort,mv,neut)" ], "zien": [ "V(trans,inf)", "V(intrans,inf)", "V(intrans,ott,1_of_2_of_3,mv)", "V(trans,inf,subst)", "V(trans,ott,1_of_2_of_3,mv)" ], "zeilen": [ "V(intrans,inf)" ], "zoiets": [ "Pron(aanw,neut,zelfst)" ], "schoonvader": [ "N(soort,ev,neut)" ], "opvoeden": [ "V(intrans,inf)", "V(trans,inf)" ], "verlenen": [ "V(trans,inf)" ], "Delftse": [ "Adj(attr,stell,verv_neut)" ], "wet": [ "N(soort,ev,neut)" ], "ziet": [ "V(trans,ott,3,ev)", "V(trans,ott,2,ev)", "V(intrans,ott,3,ev)", "V(trans,imp)" ], "mogelijkerwijs": [ "Adv(gew,geen_func,stell,onverv)" ], "Tanya": [ "N(eigen,ev,neut)" ], "weiland": [ "N(soort,ev,neut)" ], "vakantie(tje)": [ "N(soort,ev,neut)" ], "wijnkoperijen": [ "N(soort,mv,neut)" ], "mocht": [ "V(hulp,ovt,1_of_2_of_3,ev)" ], "Mama's": [ "N(eigen,mv,neut)" ], "Suffend": [ "V(intrans,teg_dw,onverv)" ], "afwachten": [ "V(trans,inf)" ], "enveloppe": [ "N(soort,ev,neut)" ], "Voor": [ "Prep(voor)", "Conj(onder,met_fin)" ], "legde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Kantner": [ "N(eigen,ev,neut)" ], "begaan": [ "V(intrans,verl_dw,onverv)" ], "Haarlem-station": [ "N(soort,ev,neut)" ], "verdwijning": [ "N(soort,ev,neut)" ], "gelooft": [ "V(trans,ott,3,ev)", "V(intrans,ott,3,ev)" ], "prulletjes": [ "N(soort,mv,neut)" ], "vereenzamen": [ "V(intrans,inf)" ], "houdt": [ "V(trans,ott,3,ev)", "V(intrans,ott,3,ev)" ], "hofhouding": [ "N(soort,ev,neut)" ], "werkkamer": [ "N(soort,ev,neut)" ], "Scheherazade": [ "N(eigen,ev,neut)" ], "besluit": [ "N(soort,ev,neut)", "V(trans,ott,3,ev)" ], "actieve": [ "Adj(attr,stell,verv_neut)" ], "gebogen": [ "V(trans,verl_dw,onverv)" ], "Tevergeefs": [ "Adj(attr,stell,onverv)" ], "mode": [ "N(soort,ev,neut)" ], "exemplaren": [ "N(soort,mv,neut)" ], "Aanvankelijk": [ "Adj(adv,stell,onverv)" ], "belangen": [ "N(soort,mv,neut)" ], "spectaculair": [ "Adj(attr,stell,onverv)" ], "hapje": [ "N(soort,ev,neut)" ], "lijdzaamheid": [ "N(soort,ev,neut)" ], "verlengd": [ "V(trans,verl_dw,onverv)" ], "gekoppeld": [ "V(trans,verl_dw,onverv)" ], "daarbij": [ "Adv(pron,aanw)" ], "halverwege": [ "Adv(gew,geen_func,stell,onverv)" ], "onverteerbare": [ "Adj(attr,stell,verv_neut)" ], "begroting": [ "N(soort,ev,neut)" ], "Twee": [ "Num(hoofd,bep,attr,onverv)" ], "leger": [ "N(soort,ev,neut)" ], "zalige": [ "Adj(attr,stell,verv_neut)" ], "aanpak": [ "N(soort,ev,neut)" ], "verpakkingen": [ "N(soort,mv,neut)" ], "hebt": [ "V(trans,ott,2,ev)", "V(hulp,ott,2,ev)" ], "keukens": [ "N(soort,mv,neut)" ], "Kom": [ "V(intrans,imp)" ], "onlesbare": [ "Adj(attr,stell,verv_neut)" ], "representatieve": [ "Adj(attr,stell,verv_neut)" ], "hun": [ "Pron(bez,3,mv,neut,attr)", "Pron(per,3,ev,nom)", "Pron(per,3,mv,dat_of_acc)" ], "vrije": [ "Adj(attr,stell,verv_neut)" ], "storten": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "moed": [ "N(soort,ev,neut)" ], "dichtgeplakt": [ "V(trans,verl_dw,onverv)" ], "prik": [ "N(soort,ev,neut)" ], "achter": [ "Prep(voor)", "Adv(deel_adv)", "Adv(gew,geen_func,stell,onverv)", "Adv(deel_v)" ], "hut": [ "N(soort,ev,neut)" ], "planten": [ "N(soort,mv,neut)" ], "kameraden": [ "N(soort,mv,neut)" ], "tegennatuurlijke": [ "Adj(attr,stell,verv_neut)" ], "deze": [ "Pron(aanw,neut,attr)", "Pron(aanw,neut,zelfst)" ], "zaterdags": [ "N(eigen,ev,gen)" ], "Taylor": [ "N(eigen,ev,neut)" ], "drakestaarten": [ "N(soort,mv,neut)" ], "smoort": [ "V(trans,ott,3,ev)" ], "Megan": [ "N(eigen,ev,neut)" ], "beperking": [ "N(soort,ev,neut)" ], "serveersters": [ "N(soort,mv,neut)" ], "Serfaus": [ "N(eigen,ev,neut)" ], "moet": [ "V(hulp,ott,3,ev)", "V(intrans,ott,3,ev)", "V(hulp,ott,2,ev)", "V(intrans,ott,2,ev)", "V(hulp,ott,1,ev)", "V(intrans,ott,1,ev)" ], "paviljoens": [ "N(soort,mv,neut)" ], "ideologie": [ "N(soort,ev,neut)" ], "water-": [ "N(soort,ev,neut)" ], "bewaken": [ "V(trans,inf)" ], "dageraad": [ "N(soort,ev,neut)" ], "ijsblokjes": [ "N(soort,mv,neut)" ], "onefficiente": [ "Adj(attr,stell,verv_neut)" ], "gelijkstelling": [ "N(soort,ev,neut)" ], "driftig": [ "Adj(adv,stell,onverv)" ], "Even": [ "Adv(gew,geen_func,stell,onverv)" ], "materie": [ "N(soort,ev,neut)" ], "pension": [ "N(soort,ev,neut)" ], "voorbijsnellende": [ "V(intrans,teg_dw,verv_neut)" ], "amateurband": [ "N(soort,ev,neut)" ], "zesenveertig": [ "Num(hoofd,bep,attr,onverv)" ], "geduld": [ "N(soort,ev,neut)" ], "leerkrachten": [ "N(soort,mv,neut)" ], "grootmoeders": [ "N(soort,mv,neut)", "N(soort,ev,gen)" ], "spant": [ "V(trans,ott,3,ev)" ], "aanvulling": [ "N(soort,ev,neut)" ], "wie": [ "Pron(betr,neut,zelfst)", "Pron(vrag,neut,attr)" ], "katholieken": [ "N(soort,mv,neut)" ], "plunje": [ "N(soort,ev,neut)" ], "bruggetje": [ "N(soort,ev,neut)" ], "startte": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "wij": [ "Pron(per,1,mv,nom)" ], "Athene": [ "N(eigen,ev,neut)" ], "bestelt": [ "V(trans,ott,3,ev)" ], "wil": [ "V(hulp,ott,3,ev)", "V(trans,ott,2,ev)", "V(hulp,ott,1,ev)", "N(soort,ev,neut)", "V(intrans,ott,1,ev)", "V(trans,ott,1,ev)", "V(intrans,ott,3,ev)", "V(trans,ott,3,ev)", "V(hulp,ott,2,ev)" ], "strompelde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "poolshoogte": [ "N(soort,ev,neut)" ], "beginne": [ "N(soort,ev,dat)" ], "stralende": [ "V(intrans,teg_dw,verv_neut)" ], "schaars": [ "Adj(adv,stell,onverv)" ], "genoegen": [ "N(soort,ev,neut)" ], "wit": [ "Adj(attr,stell,onverv)", "Adj(zelfst,stell,onverv)" ], "spookbeeld": [ "N(soort,ev,neut)" ], "DS'70": [ "N(eigen,ev,neut)" ], "Chamberlain": [ "N(eigen,ev,neut)" ], "bevatte": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "bescheiden": [ "Adj(attr,stell,onverv)" ], "bestemd": [ "V(trans,verl_dw,onverv)" ], "bidden": [ "V(intrans,inf)" ], "engelen": [ "N(soort,mv,neut)" ], "verbazing": [ "N(soort,ev,neut)" ], "moge": [ "V(hulp,conj)" ], "zitten": [ "V(intrans,inf)", "V(hulp,ott,1_of_2_of_3,mv)", "V(trans,ott,1_of_2_of_3,mv)", "V(hulp,inf)", "V(intrans,ott,1_of_2_of_3,mv)" ], "schapen": [ "N(soort,mv,neut)" ], "woensdagmiddag": [ "N(soort,ev,neut)" ], "Abrikozen": [ "N(soort,mv,neut)" ], "oven": [ "N(soort,ev,neut)" ], "uitprakkizeren": [ "V(trans,inf)" ], "over": [ "Prep(voor)", "Adv(gew,geen_func,stell,onverv)", "Adv(deel_v)", "Adv(deel_adv)" ], "houden": [ "V(trans,inf)", "V(intrans,inf)", "V(trans,ott,1_of_2_of_3,mv)", "V(refl,ott,1_of_2_of_3,mv)", "V(refl,inf)" ], "schofferen": [ "V(trans,inf)" ], "rythm": [ "N(soort,mv,neut)" ], "verkering": [ "N(soort,ev,neut)" ], "auto-": [ "N(soort,ev,neut)" ], "erotiek": [ "N(soort,ev,neut)" ], "heel": [ "Adv(gew,geen_func,stell,onverv)", "Adj(attr,stell,onverv)" ], "zijn": [ "Pron(bez,3,ev,neut,attr)", "V(intrans,inf)", "V(intrans,ott,1_of_2_of_3,mv)", "V(hulp_of_kopp,inf)", "V(hulp_of_kopp,ott,1_of_2_of_3,mv)" ], "Nelis": [ "N(eigen,ev,neut)" ], "zakelijke": [ "Adj(attr,stell,verv_neut)" ], "scheef": [ "Adj(attr,stell,onverv)" ], "heen": [ "Prep(comb)", "Adv(deel_adv)", "Adv(gew,geen_func,stell,onverv)" ], "Geeft": [ "V(trans,ott,3,ev)" ], "HEEFT": [ "V(trans,ott,3,ev)" ], "jongens": [ "N(soort,mv,neut)" ], "heer": [ "N(soort,ev,neut)" ], "bezwaar": [ "N(soort,ev,neut)" ], "basgitaar": [ "N(soort,ev,neut)" ], "heet": [ "V(hulp_of_kopp,ott,3,ev)", "V(intrans,ott,3,ev)", "Adj(attr,stell,onverv)" ], "scheen": [ "V(hulp_of_kopp,ovt,1_of_2_of_3,ev)", "V(intrans,ovt,1_of_2_of_3,ev)" ], "veertiende": [ "Num(rang,bep,attr,onverv)" ], "aandelen": [ "N(soort,mv,neut)" ], "bewaarheid": [ "V(trans,verl_dw,onverv)" ], "Zee": [ "N(eigen,ev,neut)" ], "Alfons": [ "N(eigen,ev,neut)" ], "theedoeken": [ "N(soort,mv,neut)" ], "tubes": [ "N(soort,mv,neut)" ], "afgebeeld": [ "V(trans,verl_dw,onverv)" ], "voorgesteld": [ "V(trans,verl_dw,onverv)" ], "blauw": [ "Adj(attr,stell,onverv)", "Adj(zelfst,stell,onverv)" ], "etage": [ "N(soort,ev,neut)" ], "Alignement": [ "N(eigen,ev,neut)" ], "grenadier": [ "N(soort,ev,neut)" ], "droogt": [ "V(trans,ott,2,ev)" ], "onderzoeken": [ "V(intrans,inf)" ], "Vaak": [ "Adv(gew,geen_func,stell,onverv)" ], "Zet": [ "V(trans,imp)" ], "gevecht": [ "N(soort,ev,neut)" ], "passieve": [ "Adj(attr,stell,verv_neut)" ], "stomp": [ "N(soort,ev,neut)" ], "folklore": [ "N(soort,ev,neut)" ], "onderzoeker": [ "N(soort,ev,neut)" ], "actiegroepen": [ "N(soort,mv,neut)" ], "buitenbeentje": [ "N(soort,ev,neut)" ], "vergemakkelijken": [ "V(trans,ott,1_of_2_of_3,mv)" ], "beveelt": [ "V(trans,ott,3,ev)" ], "bereikbaar": [ "Adj(attr,stell,onverv)" ], "Eenmaal": [ "Adv(gew,geen_func,stell,onverv)" ], "dezelfde": [ "Pron(aanw,neut,attr)", "Pron(aanw,neut,zelfst)" ], "opgekomen": [ "V(intrans,verl_dw,onverv)" ], "Lyceum": [ "N(eigen,ev,neut)" ], "premieinkomen": [ "N(soort,ev,neut)" ], "zijdelings": [ "Adj(adv,stell,onverv)" ], "stond": [ "V(intrans,ovt,1_of_2_of_3,ev)", "V(hulp,ovt,1_of_2_of_3,ev)", "V(trans,ovt,1_of_2_of_3,ev)" ], "vleselijke": [ "Adj(attr,stell,verv_neut)" ], "behoeften": [ "N(soort,mv,neut)" ], "hoeveelheid": [ "N(soort,ev,neut)" ], "stuurmaten": [ "N(soort,mv,neut)" ], "Stewardess": [ "N(soort,ev,neut)" ], "Harold": [ "N(eigen,ev,neut)" ], "gasvlam": [ "N(soort,ev,neut)" ], "schoenen": [ "N(soort,mv,neut)" ], "toneelproducenten": [ "N(soort,mv,neut)" ], "konden": [ "V(hulp,ovt,1_of_2_of_3,mv)" ], "zilt": [ "Adj(attr,stell,onverv)" ], "stuurhoes": [ "N(soort,ev,neut)" ], "Wrijf": [ "V(trans,imp)" ], "postkantoren": [ "N(soort,mv,neut)" ], "kansen": [ "N(soort,mv,neut)" ], "einde": [ "N(soort,ev,neut)" ], "Victoria": [ "N(eigen,ev,neut)" ], "koningin": [ "N(soort,ev,neut)" ], "Vught": [ "N(eigen,ev,neut)" ], "bijterig": [ "Adj(attr,stell,onverv)" ], "stillen": [ "V(trans,inf)" ], "begrijp": [ "V(trans,ott,1,ev)" ], "kwekerij": [ "N(soort,ev,neut)" ], "grazige": [ "Adj(attr,stell,verv_neut)" ], "fotomodel": [ "N(soort,ev,neut)" ], "Valk-methode": [ "N(soort,ev,neut)" ], "vermochten": [ "V(hulp_of_kopp,ovt,1_of_2_of_3,mv)" ], "grappige": [ "Adj(zelfst,stell,verv_neut)" ], "ochtends": [ "N(soort,ev,gen)" ], "onvoldoende": [ "Adj(attr,stell,verv_neut)" ], "cocabladeren": [ "N(soort,mv,neut)" ], "onderwerpt": [ "V(trans,ott,3,ev)" ], "stoom": [ "N(soort,ev,neut)" ], "samenstellen": [ "V(trans,inf,subst)" ], "likkebaardend": [ "V(intrans,teg_dw,onverv)" ], "smakelijk": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "stoot": [ "V(trans,ott,3,ev)" ], "frequentie": [ "N(soort,ev,neut)" ], "versierde": [ "V(trans,verl_dw,verv_neut)" ], "Kun": [ "V(hulp,ott,2,ev)" ], "verpleegsters": [ "N(soort,mv,neut)" ], "plaatsnamen": [ "N(soort,mv,neut)" ], "bovenhand": [ "N(soort,ev,neut)" ], "wijnrood": [ "Adj(attr,stell,onverv)" ], "Stofzuigen": [ "V(intrans,inf)" ], "werkzaamheden": [ "N(soort,mv,neut)" ], "jongere": [ "Adj(attr,vergr,verv_neut)", "Adj(zelfst,vergr,verv_neut)" ], "baseerde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "verschillende": [ "Pron(onbep,neut,attr)", "V(intrans,teg_dw,verv_neut)" ], "wachtkamers": [ "N(soort,mv,neut)" ], "uittrok": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "koemest": [ "N(soort,ev,neut)" ], "adresseren": [ "V(trans,inf)" ], "handvol": [ "N(soort,ev,neut)" ], "verwaarlozing": [ "N(soort,ev,neut)" ], "vanwege": [ "Prep(voor)" ], "groepen": [ "N(soort,mv,neut)" ], "anderhalfjarigen": [ "Adj(zelfst,stell,verv_mv)" ], "vocals": [ "N(soort,mv,neut)" ], "zeurt": [ "V(intrans,ott,3,ev)" ], "fotografen": [ "N(soort,mv,neut)" ], "typen": [ "N(soort,mv,neut)" ], "vertelde": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(intrans,ovt,1_of_2_of_3,ev)" ], "types": [ "N(soort,mv,neut)" ], "kliniekachtige": [ "Adj(attr,stell,verv_neut)" ], "gekartelde": [ "V(trans,verl_dw,verv_neut)" ], "Deventenaren": [ "N(soort,mv,neut)" ], "weggebroken": [ "V(trans,verl_dw,onverv)" ], "versieren": [ "V(intrans,inf)" ], "Zie": [ "V(trans,imp)" ], "weerstanden": [ "N(soort,mv,neut)" ], "onbetwistbare": [ "Adj(attr,stell,verv_neut)" ], "Zij": [ "Pron(per,3,ev_of_mv,nom)" ], "erotische": [ "Adj(attr,stell,verv_neut)" ], "centrale": [ "Adj(attr,stell,verv_neut)" ], "allerlei": [ "Pron(onbep,neut,attr)" ], "straathoek": [ "N(soort,ev,neut)" ], "flauwekul": [ "N(soort,ev,neut)" ], "wol": [ "N(soort,ev,neut)" ], "molestatie": [ "N(soort,ev,neut)" ], "won": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "vaart": [ "N(soort,ev,neut)" ], "Zit": [ "V(trans,imp)" ], "verdraagzaamheid": [ "N(soort,ev,neut)" ], "geparfumeerd": [ "V(trans,verl_dw,onverv)" ], "wou": [ "V(hulp_of_kopp,ovt,1_of_2_of_3,ev)" ], "vrijdags": [ "N(eigen,ev,gen)" ], "zelfdiscipline": [ "N(soort,ev,neut)" ], "macadam": [ "N(soort,ev,neut)" ], "gedachten": [ "N(soort,mv,neut)" ], "baarde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "werelddelen": [ "N(soort,mv,neut)" ], "kwam": [ "V(intrans,ovt,1_of_2_of_3,ev)", "V(hulp,ovt,1_of_2_of_3,ev)", "V(trans,ovt,1_of_2_of_3,ev)" ], "Claus": [ "N(eigen,ev,neut)" ], "eventueel": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "torsend": [ "V(intrans,teg_dw,onverv)" ], "doorratelen": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "Wurmbrand": [ "N(eigen,ev,neut)" ], "voorloper": [ "N(soort,ev,neut)" ], "werkstuk": [ "N(soort,ev,neut)" ], "snijd": [ "V(trans,imp)" ], "kenmerk": [ "N(soort,ev,neut)" ], "uitzet": [ "V(intrans,ott,3,ev)" ], "storm": [ "N(soort,ev,neut)" ], "architect": [ "N(soort,ev,neut)" ], "rondhangen": [ "V(intrans,inf)" ], "pistool": [ "N(soort,ev,neut)" ], "stort": [ "V(refl,ott,1,ev)" ], "beperken": [ "V(refl,inf)", "V(trans,inf)" ], "Wijnkeldertje": [ "N(eigen,ev,neut)" ], "mensen-die-er-nog-nietaan-toe-zijn": [ "N(soort,mv,neut)" ], "tabletten": [ "N(soort,mv,neut)" ], "mond": [ "N(soort,ev,neut)" ], "Hollands": [ "Adj(zelfst,stell,onverv)", "Adj(attr,stell,verv_gen)", "Adj(attr,stell,onverv)" ], "duurt": [ "V(trans,ott,3,ev)", "V(intrans,ott,3,ev)" ], "Sonneveld": [ "N(eigen,ev,neut)" ], "bejaarden": [ "Adj(zelfst,stell,verv_mv)" ], "vierhoog": [ "Adv(gew,geen_func,stell,onverv)" ], "schilderen": [ "V(trans,inf,subst)", "V(intrans,ott,1_of_2_of_3,mv)" ], "held": [ "N(soort,ev,neut)" ], "Aragon": [ "N(eigen,ev,neut)" ], "hele": [ "Adj(attr,stell,verv_neut)", "Adv(gew,geen_func,stell,verv_neut)" ], "plank": [ "N(soort,ev,neut)" ], "eeuwen": [ "N(soort,mv,neut)" ], "Heilig": [ "Adj(attr,stell,onverv)" ], "bedoeld": [ "V(trans,verl_dw,onverv)" ], "hoereren": [ "V(intrans,inf)" ], "tuintafel": [ "N(soort,ev,neut)" ], "huichelarij": [ "N(soort,ev,neut)" ], "gedetineerd": [ "V(trans,verl_dw,onverv)" ], "vochtig-glanzend": [ "Adj(attr,stell,onverv)" ], "plant": [ "N(soort,ev,neut)" ], "reilt": [ "V(intrans,ott,3,ev)" ], "gebouwtje": [ "N(soort,ev,neut)" ], "8-wielige": [ "Adj(attr,stell,verv_neut)" ], "opgewekte": [ "Adj(attr,stell,verv_neut)" ], "inhoud": [ "N(soort,ev,neut)" ], "Kaukonen": [ "N(eigen,ev,neut)" ], "teergroene": [ "Adj(attr,stell,verv_neut)" ], "Loesje": [ "N(eigen,ev,neut)" ], "overblijft": [ "V(intrans,ott,3,ev)" ], "ALLE": [ "Pron(onbep,neut,attr)" ], "bedoelt": [ "V(trans,ott,3,ev)" ], "pestbui": [ "N(soort,ev,neut)" ], "Rhuys": [ "N(eigen,ev,neut)" ], "Langzaam": [ "Adj(adv,stell,onverv)" ], "Grijze": [ "Adj(attr,stell,verv_neut)" ], "helpen": [ "V(trans,inf)", "V(intrans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "zaterdagavond": [ "N(soort,ev,neut)" ], "mooi": [ "Adj(attr,stell,onverv)" ], "werkstukje": [ "N(soort,ev,neut)" ], "kassie-kijken": [ "V(intrans,inf)" ], "zinnen": [ "N(soort,mv,neut)" ], "achtereenvolgende": [ "Adj(attr,stell,verv_neut)" ], "onoprecht": [ "Adj(attr,stell,onverv)" ], "laatst-verschenen": [ "Adj(attr,stell,onverv)" ], "FIOM-organisaties": [ "N(soort,mv,neut)" ], "wilson": [ "N(eigen,ev,neut)" ], "wedstrijd": [ "N(soort,ev,neut)" ], "doorstroming": [ "N(soort,ev,neut)" ], "gevestigde": [ "V(trans,verl_dw,verv_neut)" ], "eeuwenlang": [ "Adj(adv,stell,onverv)" ], "wiens": [ "Pron(betr,neut,zelfst)" ], "gesmade": [ "V(trans,verl_dw,verv_neut)" ], "gymnastische": [ "Adj(attr,stell,verv_neut)" ], "maximaal": [ "Adj(adv,stell,onverv)" ], "feest": [ "N(soort,ev,neut)" ], "Haagse": [ "N(eigen,ev,neut)", "Adj(attr,stell,verv_neut)" ], "thermastollen": [ "N(soort,mv,neut)" ], "bruidsjurk": [ "N(soort,ev,neut)" ], "Harriet": [ "N(eigen,ev,neut)" ], "staal": [ "N(soort,ev,neut)" ], "staan": [ "V(intrans,inf)", "V(trans,ott,1_of_2_of_3,mv)", "V(intrans,ott,1_of_2_of_3,mv)", "V(hulp,ott,1_of_2_of_3,mv)", "V(trans,inf)", "V(hulp,inf)" ], "vakbeweging": [ "N(soort,ev,neut)" ], "Amsterdamse": [ "Adj(attr,stell,verv_neut)" ], "kwaliteiten": [ "N(soort,mv,neut)" ], "interview": [ "N(soort,ev,neut)" ], "staat": [ "V(intrans,ott,3,ev)", "V(hulp,ott,3,ev)", "V(intrans,ott,2,ev)", "N(soort,ev,neut)" ], "voorstelling": [ "N(soort,ev,neut)" ], "zigeunerorkest": [ "N(soort,ev,neut)" ], "levend": [ "V(intrans,teg_dw,onverv)" ], "groepje": [ "N(soort,ev,neut)" ], "Leopold": [ "N(eigen,ev,neut)" ], "kruiden": [ "N(soort,mv,neut)" ], "geldtransporten": [ "N(soort,mv,neut)" ], "fantasiepanty": [ "N(soort,ev,neut)" ], "scheurde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "verwikkelingen": [ "N(soort,mv,neut)" ], "premiewoning": [ "N(soort,ev,neut)" ], "voorlopig": [ "Adj(adv,stell,onverv)" ], "scheepsratten": [ "N(soort,mv,neut)" ], "gemaakt": [ "V(trans,verl_dw,onverv)", "V(refl,verl_dw,onverv)" ], "geduwd": [ "V(trans,verl_dw,onverv)" ], "verdunde": [ "V(trans,verl_dw,verv_neut)" ], "confectiewereld": [ "N(soort,ev,neut)" ], "staren": [ "V(intrans,inf)", "V(refl,ott,1_of_2_of_3,mv)" ], "opzichte": [ "N(soort,ev,dat)" ], "genieten": [ "V(intrans,inf)", "V(trans,inf)" ], "gedistilleerd": [ "N(soort,ev,neut)" ], "goreng": [ "N(eigen,ev,neut)" ], "Alcoholisme": [ "N(soort,ev,neut)" ], "acceptabel": [ "Adj(attr,stell,onverv)" ], "Bakersfeld": [ "N(eigen,ev,neut)" ], "Pius": [ "N(eigen,ev,neut)" ], "Quinze": [ "N(eigen,ev,neut)" ], "Vessem": [ "N(eigen,ev,neut)" ], "monoloog": [ "N(soort,ev,neut)" ], "Aardappels": [ "N(soort,mv,neut)" ], "paviljoen": [ "N(soort,ev,neut)" ], "Airplane": [ "N(eigen,ev,neut)" ], "afhoudend": [ "V(intrans,teg_dw,onverv)" ], "omkeerbaarheid": [ "N(soort,ev,neut)" ], "Daarvan": [ "Adv(pron,aanw)" ], "inbreken": [ "V(intrans,inf)" ], "ministerie": [ "N(soort,ev,neut)" ], "leven": [ "N(soort,ev,neut)", "V(intrans,ott,1_of_2_of_3,mv)", "V(intrans,inf)", "V(trans,inf)" ], "schilderij": [ "N(soort,ev,neut)" ], "huizenrijen": [ "N(soort,mv,neut)" ], "haartint": [ "N(soort,ev,neut)" ], "nadat": [ "Conj(onder,met_fin)" ], "eeuwig": [ "Adj(adv,stell,onverv)" ], "violet": [ "Adj(zelfst,stell,onverv)" ], "bende": [ "N(soort,ev,neut)" ], "woonwagen": [ "N(soort,ev,neut)" ], "beperkt": [ "V(trans,verl_dw,onverv)", "V(refl,ott,3,ev)" ], "aanvullingen": [ "N(soort,mv,neut)" ], "hardhandige": [ "Adj(attr,stell,verv_neut)" ], "Zou": [ "V(hulp,ovt,1_of_2_of_3,ev)" ], "eeuwige": [ "Adj(attr,stell,verv_neut)" ], "Lazenby": [ "N(eigen,ev,neut)" ], "giethars": [ "N(soort,ev,neut)" ], "daardoor": [ "Adv(pron,aanw)" ], "platform": [ "N(soort,ev,neut)" ], "sprookjesfiguur": [ "N(soort,ev,neut)" ], "doorstaan": [ "V(trans,ott,1_of_2_of_3,mv)" ], "filmprodukt": [ "N(soort,ev,neut)" ], "jeugdsex": [ "N(soort,ev,neut)" ], "sanatorium": [ "N(soort,ev,neut)" ], "uitgelazerd": [ "V(trans,verl_dw,onverv)" ], "wedstrijden": [ "N(soort,mv,neut)" ], "omelet": [ "N(soort,ev,neut)" ], "nabije": [ "Adj(attr,stell,verv_neut)" ], "impulsen": [ "N(soort,mv,neut)" ], "hartfuncties": [ "N(soort,mv,neut)" ], "vruchtbaarheid": [ "N(soort,ev,neut)" ], "wierp": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "man-vrouw": [ "N(soort,ev,neut)" ], "herfstbloemen": [ "N(soort,mv,neut)" ], "honderddertig": [ "Num(hoofd,bep,attr,onverv)" ], "wormen": [ "N(soort,mv,neut)" ], "benen": [ "N(soort,mv,neut)" ], "clownsachtigs": [ "Adj(attr,stell,verv_gen)" ], "stortte": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "achtte": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "ondergrondse": [ "Adj(attr,stell,verv_neut)" ], "Valt": [ "V(intrans,ott,3,ev)" ], "ontwerpen": [ "V(trans,inf,subst)" ], "eventuele": [ "Adj(attr,stell,verv_neut)" ], "eenzelfde": [ "Pron(aanw,neut,attr)" ], "ontwerper": [ "N(soort,ev,neut)" ], "trad": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "belazerd": [ "V(trans,verl_dw,onverv)" ], "novene": [ "N(soort,ev,neut)" ], "dagelijks": [ "Adj(adv,stell,onverv)", "N(eigen,ev,neut)", "Adj(attr,stell,onverv)" ], "tros-chrysantjes": [ "N(soort,mv,neut)" ], "minachtend": [ "V(intrans,teg_dw,onverv)" ], "vermenigvuldigen": [ "V(refl,ott,1_of_2_of_3,mv)" ], "trap": [ "N(soort,ev,neut)" ], "injectienaald": [ "N(soort,ev,neut)" ], "uitwerking": [ "N(soort,ev,neut)" ], "verzameld": [ "V(trans,verl_dw,onverv)" ], "maag": [ "N(soort,ev,neut)" ], "wakker": [ "Adj(attr,stell,onverv)" ], "Jamesy's": [ "N(eigen,ev,gen)" ], "vurehout": [ "N(soort,ev,neut)" ], "Cruyff": [ "N(eigen,ev,neut)" ], "gevergd": [ "V(trans,verl_dw,onverv)" ], "maak": [ "V(trans,ott,1,ev)", "V(trans,imp)" ], "maal": [ "N(soort,ev,neut)" ], "maan": [ "N(soort,ev,neut)" ], "selectie": [ "N(soort,ev,neut)" ], "Givenchy": [ "N(eigen,ev,neut)" ], "scherp": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "maar": [ "Conj(neven)", "Adv(gew,geen_func,stell,onverv)" ], "verzamelt": [ "V(trans,ott,3,ev)" ], "maat": [ "N(soort,ev,neut)" ], "Costa": [ "N(eigen,ev,neut)" ], "kijkers": [ "N(soort,mv,neut)" ], "warmte": [ "N(soort,ev,neut)" ], "artikelen": [ "N(soort,mv,neut)" ], "Omsk": [ "N(eigen,ev,neut)" ], "bovenlaag": [ "N(soort,ev,neut)" ], "praten": [ "V(intrans,inf)", "V(intrans,ott,1_of_2_of_3,mv)", "V(trans,inf)" ], "geknutseld": [ "V(intrans,verl_dw,onverv)" ], "verzaligd": [ "Adj(adv,stell,onverv)" ], "opgemerkt": [ "V(trans,verl_dw,onverv)" ], "hieruit": [ "Adv(pron,aanw)" ], "Enkele": [ "Pron(onbep,neut,attr)" ], "Jorgen": [ "N(eigen,ev,neut)" ], "vertroetelde": [ "V(trans,verl_dw,verv_neut)" ], "roods": [ "Adj(attr,stell,verv_gen)" ], "algemener": [ "Adj(attr,vergr,onverv)" ], "Sandels": [ "N(eigen,ev,neut)", "N(soort,ev,neut)" ], "Konings": [ "N(eigen,ev,neut)" ], "verfrommeld": [ "V(trans,verl_dw,onverv)" ], "stunteligheid": [ "N(soort,ev,neut)" ], "mannelijke": [ "Adj(attr,stell,verv_neut)" ], "schuldig": [ "Adj(attr,stell,onverv)" ], "miles": [ "N(eigen,ev,neut)" ], "Kinderen": [ "N(soort,mv,neut)" ], "iem": [ "Misc(vreemd)" ], "kabouter": [ "N(soort,ev,neut)" ], "bruikbaar": [ "Adj(attr,stell,onverv)" ], "volwassenen": [ "Adj(zelfst,stell,verv_mv)" ], "metier": [ "N(soort,ev,neut)" ], "ies": [ "Misc(vreemd)" ], "Helaas": [ "Int" ], "Treleaven": [ "N(eigen,ev,neut)" ], "landing": [ "N(soort,ev,neut)" ], "zelfgemaakte": [ "Adj(attr,stell,verv_neut)" ], "origineel": [ "Adj(adv,stell,onverv)" ], "ging": [ "V(intrans,ovt,1_of_2_of_3,ev)", "V(trans,ovt,1_of_2_of_3,ev)", "V(hulp,ovt,1_of_2_of_3,ev)" ], "uitvoerige": [ "Adj(attr,stell,verv_neut)" ], "literatuurlijstkeuze": [ "N(soort,ev,neut)" ], "Creveld": [ "N(eigen,ev,neut)" ], "voorzichtig": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "Tanzaniaans": [ "Adj(attr,stell,onverv)" ], "vertroetelen": [ "V(trans,inf)" ], "muilezels": [ "N(soort,mv,neut)" ], "zuidelijke": [ "Adj(attr,stell,verv_neut)" ], "koorknapengezicht": [ "N(soort,ev,neut)" ], "protestantse": [ "Adj(attr,stell,verv_neut)", "Adj(zelfst,stell,verv_neut)" ], "kelder": [ "N(soort,ev,neut)" ], "universiteit": [ "N(soort,ev,neut)" ], "obers": [ "N(soort,mv,neut)" ], "Noodzakelijk": [ "Adj(attr,stell,onverv)" ], "geruild": [ "V(trans,verl_dw,onverv)" ], "missen": [ "V(trans,inf)" ], "uitzenddata": [ "N(soort,mv,neut)" ], "zouden": [ "V(hulp,ovt,1_of_2_of_3,mv)" ], "beinvloedt": [ "V(trans,ott,3,ev)" ], "selectiecommissie": [ "N(soort,ev,neut)" ], "overspel": [ "N(soort,ev,neut)" ], "populaire": [ "Adj(attr,stell,verv_neut)" ], "sinds": [ "Prep(voor)", "Conj(onder,met_fin)" ], "heus": [ "Adj(adv,stell,onverv)" ], "Lam": [ "N(eigen,ev,neut)" ], "bezorging": [ "N(soort,ev,neut)" ], "MAN": [ "N(soort,ev,neut)" ], "Shapiro": [ "N(eigen,ev,neut)" ], "acteurs": [ "N(soort,mv,neut)" ], "innerlijk": [ "Adj(attr,stell,onverv)", "N(soort,ev,neut)", "Adj(adv,stell,onverv)" ], "Lau": [ "N(eigen,ev,neut)" ], "pijlen": [ "N(soort,mv,neut)" ], "tegenwoordig": [ "Adj(adv,stell,onverv)" ], "hoger": [ "Adj(attr,vergr,onverv)" ], "trek": [ "N(soort,ev,neut)" ], "pijler": [ "N(soort,ev,neut)" ], "rotkop": [ "N(soort,ev,neut)" ], "ervaringen": [ "N(soort,mv,neut)" ], "kniebuigingen": [ "N(soort,mv,neut)" ], "Tiel": [ "N(eigen,ev,neut)" ], "geruime": [ "Adj(attr,stell,verv_neut)" ], "Tien": [ "Num(hoofd,bep,zelfst,onverv)", "N(soort,ev,neut)" ], "opwachten": [ "V(trans,inf)" ], "opgepakt": [ "V(trans,verl_dw,onverv)" ], "verscheen": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "jassen": [ "N(soort,mv,neut)" ], "beletten": [ "V(trans,inf)" ], "constateerbare": [ "Adj(attr,stell,verv_neut)" ], "voorbeeldige": [ "Adj(attr,stell,verv_neut)" ], "lindebomen": [ "N(soort,mv,neut)" ], "Eerste": [ "Num(rang,bep,attr,onverv)" ], "lachjes": [ "N(soort,mv,neut)" ], "seksen": [ "V(intrans,inf)" ], "buitenland": [ "N(soort,ev,neut)" ], "verdacht": [ "V(trans,verl_dw,onverv)", "Adj(attr,stell,onverv)" ], "acht": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)", "V(trans,ott,1,ev)" ], "tafel": [ "N(soort,ev,neut)" ], "omhoog": [ "Adv(gew,geen_func,stell,onverv)" ], "zojuist": [ "Adv(gew,geen_func,stell,onverv)" ], "moesten": [ "V(hulp,ovt,1_of_2_of_3,mv)", "V(intrans,ovt,1_of_2_of_3,mv)" ], "bedienen": [ "V(refl,inf)", "V(trans,inf)" ], "grootste": [ "Adj(attr,overtr,verv_neut)", "Adj(zelfst,stell,verv_neut)" ], "cameraman": [ "N(soort,ev,neut)" ], "panty": [ "N(soort,ev,neut)" ], "schatting": [ "N(soort,ev,neut)" ], "werkkamers": [ "N(soort,mv,neut)" ], "dieptepunt": [ "N(soort,ev,neut)" ], "rakkerd": [ "N(soort,ev,neut)" ], "devies": [ "N(soort,ev,neut)" ], "woedende": [ "Adj(attr,stell,verv_neut)" ], "miniem": [ "Adj(attr,stell,onverv)" ], "repareren": [ "V(trans,inf)" ], "blijven": [ "V(hulp_of_kopp,inf)", "V(intrans,ott,1_of_2_of_3,mv)", "V(intrans,inf)", "V(hulp_of_kopp,ott,1_of_2_of_3,mv)" ], "Amstelhotel": [ "N(eigen,ev,neut)" ], "narigheid": [ "N(soort,ev,neut)" ], "greep": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "humor": [ "N(soort,ev,neut)" ], "andere": [ "Pron(onbep,neut,attr)", "Pron(onbep,neut,zelfst)" ], "verzoend": [ "V(intrans,verl_dw,onverv)" ], "onstuimige": [ "Adj(attr,stell,verv_neut)" ], "straatje": [ "N(soort,ev,neut)" ], "rooie": [ "Adj(zelfst,stell,verv_neut)", "Adj(attr,stell,verv_neut)" ], "regime": [ "N(soort,ev,neut)" ], "telefoon": [ "N(soort,ev,neut)" ], "Gods": [ "N(eigen,ev,gen)" ], "Napoleontische": [ "Adj(attr,stell,verv_neut)" ], "gehuil": [ "N(soort,ev,neut)" ], "wagen": [ "N(soort,ev,neut)", "V(intrans,inf)", "N(soort,mv,neut)", "V(trans,inf)" ], "anders": [ "Adv(gew,geen_func,stell,onverv)", "Pron(onbep,gen,attr)" ], "raakte": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(hulp_of_kopp,ovt,1_of_2_of_3,ev)", "V(intrans,ovt,1_of_2_of_3,ev)" ], "losgemaakt": [ "V(trans,verl_dw,onverv)" ], "omstandigheden": [ "N(soort,mv,neut)" ], "Tucker": [ "N(eigen,ev,neut)" ], "hartekreet": [ "N(soort,ev,neut)" ], "gespeculeerd": [ "V(intrans,verl_dw,onverv)" ], "Goed": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "Immers": [ "Adv(gew,geen_func,stell,onverv)" ], "Zoiets": [ "Pron(aanw,neut,zelfst)" ], "dijbeen": [ "N(soort,ev,neut)" ], "Lassagne": [ "N(eigen,ev,neut)" ], "zilver": [ "Adj(attr,stell,onverv)", "N(soort,ev,neut)" ], "gedrukt": [ "V(trans,verl_dw,onverv)" ], "overtrokken": [ "V(trans,verl_dw,onverv)" ], "ijs": [ "N(soort,ev,neut)" ], "herinnering": [ "N(soort,ev,neut)" ], "stoelen": [ "N(soort,mv,neut)" ], "Bech": [ "N(eigen,ev,neut)" ], "separatistische": [ "Adj(attr,stell,verv_neut)" ], "vrouwelijke": [ "Adj(attr,stell,verv_neut)" ], "Beck": [ "N(eigen,ev,neut)" ], "gillen": [ "V(intrans,inf)" ], "hoeven": [ "V(hulp,ott,1_of_2_of_3,mv)" ], "Leg": [ "V(trans,imp)" ], "partner": [ "N(soort,ev,neut)" ], "gedeeltelijk": [ "Adj(adv,stell,onverv)" ], "gepolijste": [ "V(trans,verl_dw,verv_neut)" ], "hoever": [ "Adv(gew,betr)" ], "observatiekliniek": [ "N(soort,ev,neut)" ], "oplage": [ "N(soort,ev,neut)" ], "geschoeid": [ "V(trans,verl_dw,onverv)" ], "benadrukt": [ "V(trans,verl_dw,onverv)" ], "verblijf": [ "N(soort,ev,neut)" ], "bioscoop": [ "N(soort,ev,neut)" ], "Les": [ "N(eigen,ev,neut)" ], "wereld": [ "N(soort,ev,neut)" ], "Let": [ "V(intrans,imp)" ], "vetzuren": [ "N(soort,mv,neut)" ], "Texas-idee": [ "N(soort,ev,neut)" ], "MET": [ "Prep(voor)" ], "paters": [ "N(soort,mv,neut)" ], "oktobernummer": [ "N(soort,ev,neut)" ], "stamt": [ "V(intrans,ott,3,ev)" ], "woonwagens": [ "N(soort,mv,neut)" ], "moorddadig": [ "Adj(attr,stell,onverv)" ], "aantrekken": [ "V(trans,ott,1_of_2_of_3,mv)", "V(trans,inf)" ], "kantjes": [ "N(soort,mv,neut)" ], "geschenke": [ "N(soort,ev,dat)" ], "verorberd": [ "V(trans,verl_dw,onverv)" ], "amusement": [ "N(soort,ev,neut)" ], "stand": [ "N(soort,ev,neut)" ], "beroemd": [ "Adj(attr,stell,onverv)" ], "Renkel": [ "N(eigen,ev,neut)" ], "omvat": [ "V(trans,ott,3,ev)" ], "schat": [ "V(trans,ott,1,ev)", "V(trans,ott,3,ev)" ], "Angerstein": [ "N(eigen,ev,neut)" ], "Zorg": [ "V(trans,imp)" ], "uitgekozen": [ "V(trans,verl_dw,onverv)" ], "Eindelijk": [ "Adv(gew,geen_func,stell,onverv)" ], "originele": [ "Adj(attr,stell,verv_neut)" ], "zenuwstelsel": [ "N(soort,ev,neut)" ], "Vlaming": [ "N(soort,ev,neut)" ], "Tijd": [ "N(soort,ev,neut)" ], "luchtpiraterij": [ "N(soort,ev,neut)" ], "krijgt": [ "V(trans,ott,3,ev)", "V(trans,ott,2,ev)" ], "rijden": [ "V(intrans,inf)" ], "uitvoering": [ "N(soort,ev,neut)" ], "onuitgesproken": [ "Adj(attr,stell,onverv)" ], "zusje": [ "N(soort,ev,neut)" ], "passagiers": [ "N(soort,mv,neut)" ], "hoekige": [ "Adj(attr,stell,verv_neut)" ], "Achter": [ "Prep(voor)", "N(soort,ev,neut)" ], "energieker": [ "Adj(attr,vergr,onverv)" ], "veertig": [ "Num(hoofd,bep,attr,onverv)" ], "bepaalde": [ "Pron(onbep,neut,attr)", "V(trans,verl_dw,verv_neut)" ], "koffer": [ "N(soort,ev,neut)" ], "springt": [ "V(intrans,ott,3,ev)" ], "mateloos": [ "Adj(adv,stell,onverv)" ], "middeleeuws": [ "Adj(attr,stell,onverv)" ], "geboorte": [ "N(soort,ev,neut)" ], "verrekijkers": [ "N(soort,mv,neut)" ], "serveren": [ "V(trans,inf)" ], "schepen": [ "N(soort,mv,neut)" ], "weigerachtige": [ "Adj(attr,stell,verv_neut)" ], "oorsprong": [ "N(soort,ev,neut)" ], "tweemaal": [ "Adv(gew,geen_func,stell,onverv)" ], "bezichtigen": [ "V(trans,inf)" ], "dansen": [ "V(intrans,inf)" ], "leed": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "ernaar": [ "Adv(pron,onbep)" ], "Portugese": [ "Adj(attr,stell,verv_neut)" ], "leef": [ "V(intrans,ott,2,ev)", "V(intrans,ott,1,ev)" ], "leeg": [ "Adj(attr,stell,onverv)" ], "verfilmd": [ "V(trans,verl_dw,onverv)" ], "verstreken": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "verkeersweg": [ "N(soort,ev,neut)" ], "leek": [ "V(hulp_of_kopp,ovt,1_of_2_of_3,ev)", "N(soort,ev,neut)", "V(intrans,ovt,1_of_2_of_3,ev)" ], "Boekarest": [ "N(eigen,ev,neut)" ], "Meyden": [ "N(eigen,ev,neut)" ], "DENKT": [ "V(trans,ott,3,ev)" ], "leer": [ "N(soort,ev,neut)" ], "lees": [ "V(trans,ott,1,ev)" ], "persoonlijke": [ "Adj(attr,stell,verv_neut)" ], "toneelspeelkunst": [ "N(soort,ev,neut)" ], "geluidstechnicus": [ "N(soort,ev,neut)" ], "factoren": [ "N(soort,mv,neut)" ], "duel": [ "N(soort,ev,neut)" ], "keelgat": [ "N(soort,ev,neut)" ], "slachtoffers": [ "N(soort,mv,neut)" ], "stapt": [ "V(intrans,ott,3,ev)" ], "hypocrisie": [ "N(soort,ev,neut)" ], "kunst": [ "N(soort,ev,neut)" ], "zeven": [ "Num(hoofd,bep,attr,onverv)", "N(soort,ev,neut)" ], "doorstane": [ "V(trans,verl_dw,verv_neut)" ], "luisteraars": [ "N(soort,mv,neut)" ], "Luther": [ "N(eigen,ev,neut)" ], "splinternieuwe": [ "Adj(attr,stell,verv_neut)" ], "uitvoerbaar": [ "Adj(attr,stell,onverv)" ], "opstelt": [ "V(refl,ott,2,ev)" ], "verhelpen": [ "V(trans,inf)" ], "traden": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "zindelijk": [ "Adj(attr,stell,onverv)" ], "verlinkt": [ "V(trans,verl_dw,onverv)" ], "verschenen": [ "V(intrans,ovt,1_of_2_of_3,mv)", "V(intrans,verl_dw,onverv)" ], "Lip": [ "Misc(vreemd)" ], "midirokken": [ "N(soort,mv,neut)" ], "liggende": [ "V(intrans,teg_dw,verv_neut)" ], "interpretatie": [ "N(soort,ev,neut)" ], "toelegde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "culturen": [ "N(soort,mv,neut)" ], "behoeftigheid": [ "N(soort,ev,neut)" ], "opspaarde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "glijdt": [ "V(intrans,ott,3,ev)" ], "Marilyn": [ "N(eigen,ev,neut)" ], "Zweden": [ "N(soort,mv,neut)", "N(eigen,ev,neut)" ], "vertegenwoordigt": [ "V(trans,ott,3,ev)" ], "behendigheid": [ "N(soort,ev,neut)" ], "lege": [ "Adj(attr,stell,verv_neut)" ], "mama": [ "N(soort,ev,neut)" ], "zaterdag": [ "N(eigen,ev,neut)" ], "ongelukkige": [ "Adj(attr,stell,verv_neut)" ], "o.a.": [ "Adv(gew,geen_func,stell,onverv)" ], "sappige": [ "Adj(attr,stell,verv_neut)" ], "hoogbegaafden": [ "Adj(zelfst,stell,verv_mv)" ], "malicieus": [ "Adj(adv,stell,onverv)" ], "essays": [ "N(soort,mv,neut)" ], "Lyme": [ "N(eigen,ev,neut)" ], "tegenover": [ "Prep(voor)", "Adv(deel_v)" ], "jammer": [ "Adj(attr,stell,onverv)" ], "baldadigheden": [ "N(soort,mv,neut)" ], "vooruitlopen": [ "V(intrans,inf)" ], "legt": [ "V(trans,ott,3,ev)" ], "model": [ "N(soort,ev,neut)" ], "diegenen": [ "Pron(aanw,neut,zelfst)" ], "zomer": [ "N(soort,ev,neut)" ], "lijnen": [ "N(soort,mv,neut)" ], "gistcellen": [ "N(soort,mv,neut)" ], "Bezittingen": [ "N(soort,mv,neut)" ], "ontspanning": [ "N(soort,ev,neut)" ], "Eileen": [ "N(eigen,ev,neut)" ], "ir.": [ "N(eigen,ev,neut)" ], "ander": [ "Pron(onbep,neut,attr)", "Pron(onbep,neut,zelfst)" ], "9-jarig": [ "Adj(attr,stell,onverv)" ], "doodgeschoten": [ "V(trans,verl_dw,onverv)" ], "herdenking": [ "N(soort,ev,neut)" ], "kransslagaderen": [ "N(soort,mv,neut)" ], "Tine": [ "N(eigen,ev,neut)" ], "terrasje": [ "N(soort,ev,neut)" ], "uitnodigde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "bandrecorder": [ "N(soort,ev,neut)" ], "lijntje": [ "N(soort,ev,neut)" ], "schreeuwend": [ "V(intrans,teg_dw,onverv)" ], "koffie": [ "N(soort,ev,neut)" ], "toevallig": [ "Adj(adv,stell,onverv)" ], "paranoide": [ "Adj(attr,stell,onverv)" ], "glazen": [ "N(soort,mv,neut)", "Adj(attr,stell,onverv)" ], "vervaardiger": [ "N(soort,ev,neut)" ], "klein": [ "Adj(attr,stell,onverv)" ], "zuivere": [ "Adj(attr,stell,verv_neut)" ], "wuifde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "onrustig": [ "Adj(attr,stell,onverv)" ], "besprekingen": [ "N(soort,mv,neut)" ], "smaakvolle": [ "Adj(attr,stell,verv_neut)" ], "groenten": [ "N(soort,mv,neut)" ], "toepassing": [ "N(soort,ev,neut)" ], "trof": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "fantasierijk": [ "Adj(attr,stell,onverv)" ], "echte": [ "Adj(attr,stell,verv_neut)", "Adj(zelfst,stell,verv_neut)" ], "trok": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(intrans,ovt,1_of_2_of_3,ev)" ], "Boeddhistische": [ "Adj(attr,stell,verv_neut)" ], "ongezouten": [ "Adj(attr,stell,onverv)" ], "metamorfose": [ "N(soort,ev,neut)" ], "Stigwood": [ "N(eigen,ev,neut)" ], "gekke": [ "Adj(zelfst,stell,verv_neut)" ], "paradijs": [ "N(soort,ev,neut)" ], "onderhoud": [ "N(soort,ev,neut)" ], "Achttien": [ "Num(hoofd,bep,attr,onverv)" ], "boter": [ "N(soort,ev,neut)", "Adj(attr,stell,onverv)" ], "bezocht": [ "V(trans,verl_dw,onverv)", "V(trans,ovt,1_of_2_of_3,ev)" ], "verkoopt": [ "V(trans,ott,3,ev)" ], "witte": [ "Adj(attr,stell,verv_neut)", "Adj(zelfst,stell,verv_neut)" ], "duizend": [ "Num(hoofd,bep,attr,onverv)" ], "grens": [ "N(soort,ev,neut)" ], "Olympische": [ "N(eigen,mv,neut)" ], "kopieus": [ "Adj(adv,stell,onverv)" ], "voorbij": [ "Adv(deel_v)", "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "talent": [ "N(soort,ev,neut)" ], "doordat": [ "Conj(onder,met_fin)" ], "duit": [ "N(soort,ev,neut)" ], "bijgestaan": [ "V(trans,verl_dw,onverv)" ], "evenwel": [ "Adv(gew,geen_func,stell,onverv)" ], "wolkjes": [ "N(soort,mv,neut)" ], "publicaties": [ "N(soort,mv,neut)" ], "benut": [ "V(trans,verl_dw,onverv)" ], "schitterend": [ "Adj(attr,stell,onverv)" ], "huwelijksreisdoel": [ "N(soort,ev,neut)" ], "analyseren": [ "V(trans,inf)" ], "flinke": [ "Adj(attr,stell,verv_neut)" ], "belangstelling": [ "N(soort,ev,neut)" ], "ist": [ "Misc(vreemd)" ], "eieren": [ "N(soort,mv,neut)" ], "Belg": [ "N(soort,ev,neut)" ], "Boheemse": [ "Adj(attr,stell,verv_neut)" ], "matras": [ "N(soort,ev,neut)" ], "beoogt": [ "V(hulp,ott,3,ev)" ], "Bell": [ "N(eigen,ev,neut)" ], "wederzijdse": [ "Adj(attr,stell,verv_neut)" ], "opperde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "pargyline": [ "N(soort,ev,neut)" ], "verachtte": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "zekere": [ "Pron(onbep,neut,attr)", "Adj(attr,stell,verv_neut)" ], "ivoorkleurige": [ "Adj(attr,stell,verv_neut)" ], "Rooymans": [ "N(eigen,ev,neut)" ], "manifesteert": [ "V(refl,ott,3,ev)" ], "schil": [ "V(trans,imp)" ], "stotteren": [ "V(intrans,inf)" ], "terugtocht": [ "N(soort,ev,neut)" ], "medestanders": [ "N(soort,mv,neut)" ], "schip": [ "N(soort,ev,neut)" ], "hypothese": [ "N(soort,ev,neut)" ], "kakelkont": [ "N(soort,ev,neut)" ], "Rutgers": [ "N(eigen,ev,neut)" ], "politieagenten": [ "N(soort,mv,neut)" ], "Casa": [ "N(eigen,ev,neut)" ], "tegenin": [ "Adv(deel_v)" ], "woeste": [ "Adj(attr,stell,verv_neut)" ], "musisie": [ "N(soort,mv,neut)" ], "minnaressen": [ "N(soort,mv,neut)" ], "vogel": [ "N(soort,ev,neut)" ], "verdrukking": [ "N(soort,ev,neut)" ], "medemens": [ "N(soort,ev,neut)" ], "collegebanken": [ "N(soort,mv,neut)" ], "juist": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "officieel": [ "Adj(adv,stell,onverv)" ], "allebei": [ "Num(hoofd,bep,zelfst,onverv)" ], "drongen": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "spraakgebruik": [ "N(soort,ev,neut)" ], "Fabelon": [ "N(eigen,ev,neut)" ], "geschoten": [ "V(intrans,verl_dw,onverv)" ], "medische": [ "Adj(attr,stell,verv_neut)" ], "levensgenieter": [ "N(soort,ev,neut)" ], "inlaat": [ "V(refl,ott,2,ev)" ], "ideeen": [ "N(soort,mv,neut)" ], "doodvallen": [ "V(intrans,inf)" ], "uitbundiger": [ "Adj(adv,vergr,onverv)" ], "totaalbedrag": [ "N(soort,ev,neut)" ], "achtergronden": [ "N(soort,mv,neut)" ], "gezag": [ "N(soort,ev,neut)" ], "Los": [ "N(eigen,ev,neut)" ], "aanbod": [ "N(soort,ev,neut)" ], "geheugen": [ "N(soort,ev,neut)" ], "Washington": [ "N(eigen,ev,neut)" ], "premisse": [ "N(soort,ev,neut)" ], "Lou": [ "N(eigen,ev,neut)" ], "aangetaste": [ "V(trans,verl_dw,verv_neut)" ], "bellen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "anti-stof": [ "N(soort,ev,neut)" ], "gangen": [ "N(soort,mv,neut)" ], "geserveerde": [ "V(trans,verl_dw,verv_neut)" ], "ondervoede": [ "V(trans,verl_dw,verv_neut)" ], "Vtekens": [ "N(soort,mv,neut)" ], "loonbelasting": [ "N(soort,ev,neut)" ], "bourgeois": [ "Misc(vreemd)" ], "fascineren": [ "V(intrans,inf)" ], "dwaling": [ "N(soort,ev,neut)" ], "bijster": [ "Adv(gew,geen_func,stell,onverv)" ], "gehesen": [ "V(trans,verl_dw,onverv)" ], "Fritz": [ "N(eigen,ev,neut)" ], "breder": [ "Adj(attr,vergr,onverv)" ], "interpolvestigingen": [ "N(soort,mv,neut)" ], "dateert": [ "V(intrans,ott,3,ev)" ], "reageren": [ "V(trans,inf)", "V(intrans,ott,1_of_2_of_3,mv)" ], "karakterfouten": [ "N(soort,mv,neut)" ], "pulletje": [ "N(soort,ev,neut)" ], "luister": [ "V(intrans,ott,1,ev)" ], "verbijsterd": [ "V(trans,verl_dw,onverv)" ], "aangeboden": [ "V(trans,verl_dw,onverv)" ], "modezaakjes": [ "N(soort,mv,neut)" ], "informeerde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "onaardse": [ "Adj(attr,stell,verv_neut)" ], "briljanten": [ "N(soort,mv,neut)" ], "generaties": [ "N(soort,mv,neut)" ], "nagels": [ "N(soort,mv,neut)" ], "Wetenschappelijk": [ "Adj(attr,stell,onverv)" ], "marconist": [ "N(soort,ev,neut)" ], "hartelust": [ "N(soort,ev,neut)" ], "gekeerd": [ "V(trans,verl_dw,onverv)", "V(refl,verl_dw,onverv)" ], "opgeheven": [ "V(trans,verl_dw,onverv)" ], "spectaculaire": [ "Adj(attr,stell,verv_neut)" ], "veroudering": [ "N(soort,ev,neut)" ], "velerlei": [ "Pron(onbep,neut,attr)" ], "collecties": [ "N(soort,mv,neut)" ], "aanspreken": [ "V(trans,inf)" ], "mate": [ "N(soort,ev,neut)" ], "hemelse": [ "Adj(attr,stell,verv_neut)" ], "z'n": [ "Pron(bez,3,ev,neut,attr)" ], "middag": [ "N(soort,ev,neut)" ], "groentenafval": [ "N(soort,ev,neut)" ], "inzinking": [ "N(soort,ev,neut)" ], "fiets": [ "N(soort,ev,neut)" ], "Erlkonig": [ "N(eigen,ev,neut)" ], "vrouwtje": [ "N(soort,ev,neut)" ], "Wilson": [ "N(eigen,ev,neut)" ], "liedje": [ "N(soort,ev,neut)" ], "tirannie": [ "N(soort,ev,neut)" ], "voorgekomen": [ "V(intrans,verl_dw,onverv)" ], "gehuwd": [ "V(intrans,verl_dw,onverv)" ], "nummer": [ "N(soort,ev,neut)" ], "dubbelzinnige": [ "Adj(attr,stell,verv_neut)" ], "priveleven": [ "N(soort,ev,neut)" ], "mateloze": [ "Adj(attr,stell,verv_neut)" ], "Markelo": [ "N(eigen,ev,neut)" ], "uiteraard": [ "Adv(gew,geen_func,stell,onverv)" ], "tekort": [ "N(soort,ev,neut)", "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "fantastisch": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "voorschijn": [ "N(soort,ev,neut)" ], "Bouwman": [ "N(eigen,ev,neut)" ], "pakken": [ "V(trans,inf)" ], "rechterzijde": [ "N(soort,ev,neut)" ], "bunders": [ "N(soort,mv,neut)" ], "afdoend": [ "V(intrans,teg_dw,onverv)" ], "aanmerking": [ "N(soort,ev,neut)" ], "geregeld": [ "V(trans,verl_dw,onverv)", "Adj(adv,stell,onverv)" ], "schrikwekkende": [ "Adj(attr,stell,verv_neut)" ], "jaarproduktie": [ "N(soort,ev,neut)" ], "gevolgen": [ "N(soort,mv,neut)" ], "Bantammerstraat": [ "N(eigen,ev,neut)" ], "daarbuiten": [ "Adv(pron,aanw)" ], "psycholoog": [ "N(soort,ev,neut)" ], "arm-": [ "N(soort,mv,neut)" ], "kalmer": [ "Adj(adv,vergr,onverv)" ], "Europa": [ "N(eigen,ev,neut)" ], "stadje": [ "N(soort,ev,neut)" ], "pagina's": [ "N(soort,mv,neut)" ], "versterken": [ "V(intrans,inf)" ], "bedrijf": [ "N(soort,ev,neut)" ], "luchtzak": [ "N(soort,ev,neut)" ], "kijk": [ "V(trans,imp)", "V(intrans,ott,1,ev)" ], "sterft": [ "V(intrans,ott,3,ev)" ], "topgroepen": [ "N(soort,mv,neut)" ], "halfelf": [ "Num(hoofd,bep,zelfst,onverv)" ], "hengelaars": [ "N(soort,mv,neut)" ], "voorgevoel": [ "N(soort,ev,neut)" ], "Dikwijls": [ "Adv(gew,geen_func,stell,onverv)" ], "borstbeelden": [ "N(soort,mv,neut)" ], "voortkomt": [ "V(intrans,ott,3,ev)" ], "bewonderenswaardig": [ "Adj(attr,stell,onverv)" ], "dupe": [ "N(soort,ev,neut)" ], "oververmoeide": [ "Adj(attr,stell,verv_neut)" ], "potten": [ "N(soort,mv,neut)" ], "bindt": [ "V(refl,ott,3,ev)" ], "Carven": [ "N(eigen,ev,neut)" ], "gegronde": [ "Adj(attr,stell,verv_neut)" ], "lengte": [ "N(soort,ev,neut)" ], "Berg": [ "V(trans,imp)" ], "bewezen": [ "V(trans,verl_dw,onverv)" ], "gezet": [ "V(trans,verl_dw,onverv)" ], "penny": [ "N(soort,ev,neut)" ], "gadegeslagen": [ "V(trans,verl_dw,onverv)" ], "wraak": [ "N(soort,ev,neut)" ], "Bert": [ "N(eigen,ev,neut)" ], "Terecht": [ "Adv(gew,geen_func,stell,onverv)" ], "veranderd": [ "V(intrans,verl_dw,onverv)", "V(trans,verl_dw,onverv)" ], "executie": [ "N(soort,ev,neut)" ], "biografieen": [ "N(soort,mv,neut)" ], "HAAR": [ "Pron(per,3,ev,dat_of_acc)" ], "Gaat": [ "V(intrans,ott,3,ev)", "V(trans,imp)" ], "schop": [ "N(soort,ev,neut)" ], "kleine": [ "Adj(attr,stell,verv_neut)", "N(eigen,ev,neut)" ], "hemzelf": [ "Pron(per,3,ev,dat_of_acc)" ], "oeiii": [ "Int" ], "weeshuizen": [ "N(soort,mv,neut)" ], "schot": [ "N(soort,ev,neut)" ], "arme": [ "Adj(attr,stell,verv_neut)" ], "kanten": [ "N(soort,mv,neut)" ], "1.5": [ "Num(hoofd,bep,attr,onverv)" ], "Charles": [ "N(eigen,ev,gen)" ], "baseball": [ "N(soort,ev,neut)" ], "Charley": [ "N(eigen,ev,neut)" ], "kleins": [ "Adj(attr,stell,verv_gen)" ], "cafes": [ "N(soort,mv,neut)" ], "amateurs": [ "N(soort,mv,neut)" ], "kleding": [ "N(soort,ev,neut)" ], "minimale": [ "Adj(attr,stell,verv_neut)" ], "complimentje": [ "N(soort,ev,neut)" ], "ophield": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "neutrale": [ "Adj(attr,stell,verv_neut)" ], "beroepsfotografen": [ "N(soort,mv,neut)" ], "arriveren": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "bevinding": [ "N(soort,ev,neut)" ], "Baldwin": [ "N(eigen,ev,neut)" ], "kilo": [ "N(soort,ev,neut)" ], "aangehaald": [ "V(trans,verl_dw,onverv)" ], "maxi": [ "N(soort,ev,neut)" ], "afdelingen": [ "N(soort,mv,neut)" ], "aantonen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "producer": [ "N(soort,ev,neut)" ], "arbeid": [ "N(soort,ev,neut)" ], "middel": [ "N(soort,ev,neut)" ], "ongelijk": [ "N(soort,ev,neut)" ], "Scheveningen": [ "N(eigen,ev,neut)" ], "Lynda": [ "N(eigen,ev,neut)" ], "midden": [ "Adv(gew,geen_func,stell,onverv)", "N(soort,ev,neut)" ], "verfijning": [ "N(soort,ev,neut)" ], "lezers": [ "N(soort,mv,neut)" ], "Zams": [ "N(eigen,ev,neut)" ], "dure": [ "Adj(attr,stell,verv_neut)" ], "weigerde": [ "V(hulp,ovt,1_of_2_of_3,ev)", "V(trans,ovt,1_of_2_of_3,ev)" ], "durf": [ "V(intrans,ott,1,ev)", "V(hulp,ott,1,ev)", "N(soort,ev,neut)" ], "pastores": [ "N(soort,mv,neut)" ], "zoeven": [ "Adv(gew,geen_func,stell,onverv)" ], "kruidenboter": [ "N(soort,ev,neut)" ], "geestelijke": [ "Adj(attr,stell,verv_neut)" ], "landbouwmachines": [ "N(soort,mv,neut)" ], "durp": [ "N(soort,ev,neut)" ], "schuldvraag": [ "N(soort,ev,neut)" ], "weggeworpen": [ "V(trans,verl_dw,onverv)" ], "uitbetalen": [ "V(trans,inf)" ], "Zuid-Afrika": [ "N(eigen,ev,neut)" ], "aardige": [ "Adj(attr,stell,verv_neut)" ], "Miguel": [ "N(eigen,ev,neut)" ], "allen": [ "Pron(onbep,neut,zelfst)" ], "klets": [ "N(soort,ev,neut)" ], "gedurende": [ "Prep(voor)" ], "uitzendbureau": [ "N(soort,ev,neut)" ], "aller": [ "Pron(onbep,gen,zelfst)" ], "vijfendertig": [ "Num(hoofd,bep,attr,onverv)" ], "spelen": [ "V(intrans,inf)", "V(intrans,inf,subst)", "V(trans,ott,1_of_2_of_3,mv)", "V(trans,inf)" ], "alles": [ "Pron(onbep,neut,zelfst)" ], "voorlezen": [ "V(intrans,inf)" ], "vallen": [ "V(intrans,ott,1_of_2_of_3,mv)", "V(intrans,inf)" ], "Spuistraat": [ "N(eigen,ev,neut)" ], "Kamer": [ "N(eigen,ev,neut)" ], "danszaal": [ "N(soort,ev,neut)" ], "danste": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "vingers": [ "N(soort,mv,neut)" ], "scheldbrieven": [ "N(soort,mv,neut)" ], "weigeren": [ "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "gelakte": [ "V(trans,verl_dw,verv_neut)" ], "tafreel": [ "N(soort,ev,neut)" ], "kind": [ "N(soort,ev,neut)" ], "denken": [ "V(intrans,inf)", "V(intrans,inf,subst)", "V(intrans,ott,1_of_2_of_3,mv)", "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "hoeveelheden": [ "N(soort,mv,neut)" ], "Bourgondische": [ "Adj(attr,stell,verv_neut)" ], "bendeleden": [ "N(soort,mv,neut)" ], "kleur": [ "N(soort,ev,neut)" ], "Livingston": [ "N(eigen,ev,neut)" ], "benutte": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Sexualiteit": [ "N(eigen,ev,neut)" ], "Koran": [ "N(eigen,ev,neut)" ], "Kroonraad": [ "N(soort,ev,neut)" ], "bemoeien": [ "V(refl,inf)" ], "sterke": [ "Adj(attr,stell,verv_neut)" ], "badplaats": [ "N(soort,ev,neut)" ], "terugkrijgen": [ "V(trans,inf)" ], "gebaar": [ "N(soort,ev,neut)" ], "gezin": [ "N(soort,ev,neut)" ], "tweeenveertigjarige": [ "Adj(attr,stell,verv_neut)" ], "verpauperde": [ "V(intrans,verl_dw,verv_neut)" ], "hiervan": [ "Adv(pron,aanw)" ], "werking": [ "N(soort,ev,neut)" ], "onder": [ "Prep(voor)", "Adv(deel_v)", "Adv(gew,geen_func,stell,onverv)", "Adv(deel_adv)" ], "vondsten": [ "N(soort,mv,neut)" ], "konklusie": [ "N(soort,ev,neut)" ], "vonden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "leuk": [ "Adj(attr,stell,onverv)" ], "passief": [ "Adj(attr,stell,onverv)" ], "uitgedoste": [ "V(trans,verl_dw,verv_neut)" ], "verwijderd": [ "V(trans,verl_dw,onverv)" ], "inderdaad": [ "Adv(gew,geen_func,stell,onverv)" ], "gebouw": [ "N(soort,ev,neut)" ], "oogluikend": [ "Adj(adv,stell,onverv)" ], "tomaten": [ "N(soort,mv,neut)" ], "wachtkamer": [ "N(soort,ev,neut)" ], "toevoer": [ "N(soort,ev,neut)" ], "bezorgt": [ "V(trans,ott,3,ev)" ], "duur": [ "N(soort,ev,neut)", "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "folder": [ "N(soort,ev,neut)" ], "excursies": [ "N(soort,mv,neut)" ], "liters": [ "N(soort,mv,neut)" ], "gebaseerd": [ "V(trans,verl_dw,onverv)" ], "twaalf": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "echo": [ "N(soort,ev,neut)" ], "huwelijkscadeaus": [ "N(soort,mv,neut)" ], "huiverde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "propaganda": [ "N(soort,ev,neut)" ], "Masters": [ "N(eigen,ev,neut)" ], "gekookte": [ "V(trans,verl_dw,verv_neut)" ], "aangezien": [ "Conj(onder,met_fin)" ], "echt": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "Belvedere": [ "N(eigen,ev,neut)" ], "kerken": [ "N(soort,mv,neut)" ], "omspringen": [ "V(intrans,inf)" ], "U.S.A.": [ "N(eigen,ev,neut)" ], "residentie": [ "N(soort,ev,neut)" ], "omloop": [ "N(soort,ev,neut)" ], "overdag": [ "Adv(gew,geen_func,stell,onverv)" ], "magazine": [ "N(soort,ev,neut)" ], "buisje": [ "N(soort,ev,neut)" ], "duidelijke": [ "Adj(attr,stell,verv_neut)" ], "12e": [ "Num(rang,bep,attr,onverv)" ], "geweigerd": [ "V(trans,verl_dw,onverv)" ], "drijft": [ "V(trans,ott,3,ev)" ], "discussies": [ "N(soort,mv,neut)" ], "doorlopend": [ "V(intrans,teg_dw,onverv)" ], "onverschilligheid": [ "N(soort,ev,neut)" ], "totdat": [ "Conj(onder,met_fin)" ], "20-jarige": [ "Adj(attr,stell,verv_neut)" ], "Jokers": [ "N(eigen,mv,neut)" ], "duiken": [ "V(intrans,inf)" ], "22ste": [ "Num(rang,bep,zelfst,onverv)" ], "doorgehaald": [ "V(trans,verl_dw,onverv)" ], "evolueren": [ "V(intrans,inf)" ], "contactadvertenties": [ "N(soort,mv,neut)" ], "geluid": [ "N(soort,ev,neut)" ], "HAHA": [ "Int" ], "gelijke": [ "Adj(attr,stell,verv_neut)", "Adj(zelfst,stell,verv_neut)" ], "afwijkt": [ "V(intrans,ott,3,ev)" ], "keurige": [ "Adj(attr,stell,verv_neut)" ], "boerde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "Korea": [ "N(eigen,ev,neut)" ], "wegen": [ "N(soort,mv,neut)" ], "uiterst": [ "Adj(adv,stell,onverv)" ], "kwis-meester": [ "N(soort,ev,neut)" ], "ingetogenheid": [ "N(soort,ev,neut)" ], "uitgesteld": [ "V(trans,verl_dw,onverv)" ], "brief": [ "N(soort,ev,neut)" ], "panty's": [ "N(soort,mv,neut)" ], "bedrading": [ "N(soort,ev,neut)" ], "demode": [ "Adj(attr,stell,onverv)" ], "Kruis": [ "N(eigen,ev,neut)" ], "onbenulliger": [ "Adj(attr,vergr,onverv)" ], "ski's": [ "N(soort,mv,neut)" ], "stoeltjes": [ "N(soort,mv,neut)" ], "gedragen": [ "V(trans,verl_dw,onverv)", "V(refl,inf)" ], "voetbalgevecht": [ "N(soort,ev,neut)" ], "verbreiders": [ "N(soort,mv,neut)" ], "melding": [ "N(soort,ev,neut)" ], "geschrokken": [ "V(intrans,verl_dw,onverv)" ], "enzovoort": [ "Adv(gew,geen_func,stell,onverv)" ], "Rauschenberg": [ "N(eigen,ev,neut)" ], "gepaster": [ "V(trans,verl_dw,verv_vergr)" ], "afgezaagde": [ "Adj(attr,stell,verv_neut)" ], "waarmee": [ "Adv(pron,vrag)" ], "arts": [ "N(soort,ev,neut)" ], "Ijszee": [ "N(eigen,ev,neut)" ], "pharmacie": [ "N(soort,ev,neut)" ], "Andere": [ "Pron(onbep,neut,attr)" ], "verwoestende": [ "V(intrans,teg_dw,verv_neut)" ], "raken": [ "V(intrans,inf)", "V(trans,inf)" ], "Twente": [ "N(eigen,ev,neut)" ], "gehandhaafd": [ "V(trans,verl_dw,onverv)" ], "boeren": [ "N(soort,mv,neut)" ], "Diekmann": [ "N(eigen,ev,neut)" ], "Venables": [ "N(eigen,ev,neut)" ], "beessies": [ "N(soort,mv,neut)" ], "kist": [ "N(soort,ev,neut)" ], "Bomans": [ "N(eigen,ev,neut)" ], "smartlappen": [ "N(soort,mv,neut)" ], "overweldigende": [ "V(intrans,teg_dw,verv_neut)" ], "Anders": [ "Adv(gew,geen_func,stell,onverv)" ], "negeert": [ "V(trans,ott,3,ev)" ], "gelukkiger": [ "Adj(attr,vergr,onverv)" ], "Zuid-Italie": [ "N(eigen,ev,neut)" ], "heilige": [ "Adj(attr,stell,verv_neut)", "Adj(zelfst,stell,verv_neut)" ], "gezellig": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "meubels": [ "N(soort,mv,neut)" ], "schminkkamer": [ "N(soort,ev,neut)" ], "knoopsgat": [ "N(soort,ev,neut)" ], "geintjes": [ "N(soort,mv,neut)" ], "jas": [ "N(soort,ev,neut)" ], "gezellin": [ "N(soort,ev,neut)" ], "prentbriefkaartdorpje": [ "N(soort,ev,neut)" ], "simpele": [ "Adj(attr,stell,verv_neut)" ], "sensatie": [ "N(soort,ev,neut)" ], "vrouwfiguurtje": [ "N(soort,ev,neut)" ], "stadsvervoer": [ "N(soort,ev,neut)" ], "verdienste": [ "N(soort,ev,neut)" ], "klassieke": [ "Adj(attr,stell,verv_neut)" ], "Nieuwmarkt": [ "N(eigen,ev,neut)" ], "jarige": [ "Adj(zelfst,stell,verv_neut)" ], "Zilver": [ "N(soort,ev,neut)" ], "titel": [ "N(soort,ev,neut)" ], "stugger": [ "Adj(attr,vergr,onverv)" ], "schoongemaakt": [ "V(trans,verl_dw,onverv)" ], "dankbaarheid": [ "N(soort,ev,neut)" ], "Maurice": [ "N(eigen,ev,neut)" ], "gelukt": [ "V(intrans,verl_dw,onverv)" ], "geteld": [ "V(trans,verl_dw,onverv)" ], "Emile": [ "N(eigen,ev,neut)" ], "ikzelf": [ "Pron(per,1,ev,nom)" ], "immuun": [ "Adj(attr,stell,onverv)" ], "individu": [ "N(soort,ev,neut)" ], "arbeidsongeschiktheidsverzekeringen": [ "N(soort,mv,neut)" ], "nertsjas": [ "N(soort,ev,neut)" ], "verschijnen": [ "V(intrans,inf)", "V(intrans,ott,1_of_2_of_3,mv)" ], "brokken": [ "N(soort,mv,neut)" ], "zullen": [ "V(hulp,ott,1_of_2_of_3,mv)" ], "opende": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "tulband": [ "N(soort,ev,neut)" ], "Wereld": [ "N(eigen,ev,neut)" ], "weerbaar": [ "Adj(attr,stell,onverv)" ], "wijnkoper": [ "N(soort,ev,neut)" ], "plaatsvinden": [ "V(intrans,inf)" ], "gekregen": [ "V(trans,verl_dw,onverv)" ], "toilette": [ "N(soort,ev,neut)" ], "Wiardi": [ "N(eigen,ev,neut)" ], "bliksem": [ "N(soort,ev,neut)" ], "notaris": [ "N(soort,ev,neut)" ], "beledigt": [ "V(trans,ott,2,ev)" ], "L'OFFICIEL": [ "N(eigen,ev,neut)" ], "Hetzelfde": [ "Pron(aanw,neut,zelfst)" ], "Liesbeth": [ "N(eigen,ev,neut)" ], "vriendelijk": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "plankjes": [ "N(soort,mv,neut)" ], "jongeling": [ "N(soort,ev,neut)" ], "verzekerd": [ "V(trans,verl_dw,onverv)" ], "sleutel": [ "N(soort,ev,neut)" ], "hoofdrolspeler": [ "N(soort,ev,neut)" ], "folie": [ "N(soort,ev,neut)" ], "opengemaakt": [ "V(trans,verl_dw,onverv)" ], "Tjak": [ "N(eigen,ev,neut)" ], "omlaag": [ "Adv(gew,geen_func,stell,onverv)" ], "vochtige": [ "Adj(attr,stell,verv_neut)" ], "zilverdraad": [ "N(soort,ev,neut)" ], "geroosterd": [ "V(trans,verl_dw,onverv)" ], "verliep": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "studentenkleed": [ "N(soort,ev,neut)" ], "Gehuld": [ "V(trans,verl_dw,onverv)" ], "minimum": [ "N(soort,ev,neut)" ], "kringetje": [ "N(soort,ev,neut)" ], "verlies": [ "N(soort,ev,neut)" ], "verliet": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "opkomend": [ "V(intrans,teg_dw,onverv)" ], "kader": [ "N(soort,ev,neut)" ], "bokswedstrijd": [ "N(soort,ev,neut)" ], "openen": [ "V(trans,inf)" ], "Menierh": [ "N(soort,ev,neut)" ], "Rijden": [ "V(intrans,inf)" ], "houten": [ "Adj(attr,stell,onverv)" ], "cockpit": [ "N(soort,ev,neut)" ], "speakers": [ "N(soort,mv,neut)" ], "drijfijs": [ "N(soort,ev,neut)" ], "onfrisse": [ "Adj(attr,stell,verv_neut)" ], "voorstelt": [ "V(trans,ott,3,ev)" ], "eraf": [ "Adv(pron,onbep)" ], "Make-Up": [ "Misc(vreemd)" ], "zevende": [ "Num(rang,bep,attr,onverv)" ], "pokken": [ "N(soort,mv,neut)" ], "vermeld": [ "V(trans,verl_dw,onverv)" ], "afgestudeerd": [ "V(intrans,verl_dw,onverv)" ], "misverstand": [ "N(soort,ev,neut)" ], "oordelen": [ "V(trans,inf)" ], "kiwi": [ "N(soort,ev,neut)" ], "zweten": [ "V(intrans,inf)" ], "Greenadier": [ "N(soort,ev,neut)" ], "little": [ "Misc(vreemd)" ], "adem": [ "N(soort,ev,neut)" ], "bijzondere": [ "Adj(zelfst,stell,verv_neut)", "Adj(attr,stell,verv_neut)" ], "legers": [ "N(soort,mv,neut)" ], "durfde": [ "V(hulp,ovt,1_of_2_of_3,ev)" ], "bekijken": [ "V(trans,inf)" ], "treden": [ "V(intrans,inf)" ], "gekozen": [ "V(trans,verl_dw,onverv)" ], "oeroude": [ "Adj(attr,stell,verv_neut)" ], "voedsel": [ "N(soort,ev,neut)" ], "keukenvloer": [ "N(soort,ev,neut)" ], "gigantische": [ "Adj(attr,stell,verv_neut)" ], "scherper": [ "Adj(attr,vergr,onverv)" ], "tricot": [ "N(soort,ev,neut)" ], "aflopend": [ "V(intrans,teg_dw,onverv)" ], "burgerlijke": [ "Adj(attr,stell,verv_neut)" ], "uitgenodigd": [ "V(trans,verl_dw,onverv)" ], "wrang": [ "Adj(attr,stell,onverv)" ], "weetikveel": [ "N(soort,ev,neut)" ], "opgetast": [ "V(trans,verl_dw,onverv)" ], "neerschreef": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "staande": [ "V(intrans,teg_dw,verv_neut)" ], "atelier": [ "N(soort,ev,neut)" ], "klappen": [ "N(soort,mv,neut)" ], "nachtzoen": [ "N(soort,ev,neut)" ], "Gans": [ "N(eigen,ev,neut)" ], "noemde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "weelde": [ "N(soort,ev,neut)" ], "bevestiging": [ "N(soort,ev,neut)" ], "dubbeltje": [ "N(soort,ev,neut)" ], "gewoond": [ "V(intrans,verl_dw,onverv)" ], "Behalve": [ "Conj(onder,met_fin)" ], "linnen": [ "N(soort,ev,neut)" ], "plasje": [ "N(soort,ev,neut)" ], "Gallery": [ "N(eigen,ev,neut)" ], "Meltzer": [ "N(eigen,ev,neut)" ], "brommertje": [ "N(soort,ev,neut)" ], "Californische": [ "Adj(attr,stell,verv_neut)" ], "keuring": [ "N(soort,ev,neut)" ], "horloge": [ "N(soort,ev,neut)" ], "premiere": [ "N(soort,ev,neut)" ], "verkopen": [ "V(trans,inf)" ], "sortiment": [ "N(soort,ev,neut)" ], "verkoper": [ "N(soort,ev,neut)" ], "afkniptangetje": [ "N(soort,ev,neut)" ], "figuur": [ "N(soort,ev,neut)" ], "begonnen": [ "V(intrans,verl_dw,onverv)", "V(trans,verl_dw,onverv)", "V(hulp,ovt,1_of_2_of_3,mv)", "V(intrans,ovt,1_of_2_of_3,mv)", "V(trans,ovt,1_of_2_of_3,mv)" ], "neerliggen": [ "V(intrans,inf)" ], "Mam": [ "N(soort,ev,neut)" ], "Man": [ "Int", "N(eigen,ev,neut)", "N(soort,ev,neut)" ], "Mao": [ "N(eigen,ev,neut)" ], "waarachter": [ "Adv(pron,vrag)" ], "verkeersopstopping": [ "N(soort,ev,neut)" ], "noemen": [ "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "kerel": [ "N(soort,ev,neut)" ], "duizend-en-een": [ "Num(hoofd,bep,attr,onverv)" ], "verfilming": [ "N(soort,ev,neut)" ], "keren": [ "V(intrans,inf)", "N(soort,mv,neut)" ], "Zowel": [ "Conj(neven)" ], "National": [ "N(eigen,ev,neut)" ], "Max": [ "N(eigen,ev,neut)" ], "May": [ "N(eigen,ev,neut)" ], "dreef": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "dominee": [ "N(soort,ev,neut)" ], "verliezers": [ "N(soort,mv,neut)" ], "aanbiedingen": [ "N(soort,mv,neut)" ], "afwijst": [ "V(trans,ott,3,ev)" ], "economie": [ "N(soort,ev,neut)" ], "bleekblauwe": [ "Adj(attr,stell,verv_neut)" ], "toestand": [ "N(soort,ev,neut)" ], "prestige": [ "N(soort,ev,neut)" ], "Chris": [ "N(eigen,ev,neut)" ], "Cochran": [ "N(eigen,ev,neut)" ], "peil": [ "N(soort,ev,neut)" ], "zakenman": [ "N(soort,ev,neut)" ], "talloze": [ "Pron(onbep,neut,attr)" ], "begrafenis": [ "N(soort,ev,neut)" ], "Puskas": [ "N(eigen,ev,neut)" ], "Liebregts": [ "N(eigen,ev,neut)" ], "linkerkant": [ "N(soort,ev,neut)" ], "Koffie": [ "N(soort,ev,neut)" ], "huid": [ "N(soort,ev,neut)" ], "taboes": [ "N(soort,mv,neut)" ], "aangrijpt": [ "V(trans,ott,3,ev)" ], "teleurstelling": [ "N(soort,ev,neut)" ], "101-103": [ "Num(hoofd,bep,attr,onverv)" ], "amandelvormige": [ "Adj(attr,stell,verv_neut)" ], "huis": [ "N(soort,ev,neut)" ], "toonaangevend": [ "Adj(attr,stell,onverv)" ], "middengolfzenders": [ "N(soort,mv,neut)" ], "schuil": [ "Adj(attr,stell,onverv)" ], "clandestien": [ "Adj(adv,stell,onverv)" ], "voller": [ "Adj(attr,vergr,onverv)" ], "schuim": [ "N(soort,ev,neut)" ], "Komt": [ "V(intrans,ott,3,ev)" ], "blaadjes": [ "N(soort,mv,neut)" ], "lokvogels": [ "N(soort,mv,neut)" ], "houtje": [ "N(soort,ev,neut)" ], "Palestijnse": [ "Adj(attr,stell,verv_neut)" ], "traumatoloog": [ "N(soort,ev,neut)" ], "schuit": [ "N(soort,ev,neut)" ], "moeders": [ "N(soort,mv,neut)" ], "gepleit": [ "V(intrans,verl_dw,onverv)" ], "betreft": [ "V(trans,ott,3,ev)" ], "inkomstenbelasting": [ "N(soort,ev,neut)" ], "handschoenen": [ "N(soort,mv,neut)" ], "jij": [ "Pron(per,2,ev,nom)" ], "troep": [ "N(soort,ev,neut)" ], "definitie": [ "N(soort,ev,neut)" ], "hondenhokken": [ "N(soort,mv,neut)" ], "zesduizend": [ "Num(hoofd,bep,attr,onverv)" ], "non-actief": [ "Adj(attr,stell,onverv)" ], "verschuivingen": [ "N(soort,mv,neut)" ], "vrijwillig": [ "Adj(adv,stell,onverv)" ], "verwachting": [ "N(soort,ev,neut)" ], "Gare": [ "N(eigen,ev,neut)" ], "achterzijde": [ "N(soort,ev,neut)" ], "slager": [ "N(soort,ev,neut)" ], "zelfbewust": [ "Adj(attr,stell,onverv)" ], "Fabio": [ "N(eigen,ev,neut)" ], "gegoten": [ "V(trans,verl_dw,onverv)" ], "verkondigde": [ "V(trans,verl_dw,verv_neut)" ], "verzoening": [ "N(soort,ev,neut)" ], "lichamelijke": [ "Adj(attr,stell,verv_neut)" ], "vraaggesprek": [ "N(soort,ev,neut)" ], "vroedvrouwen": [ "N(soort,mv,neut)" ], "Burgers": [ "N(eigen,ev,neut)" ], "fijngesneden": [ "V(trans,verl_dw,onverv)" ], "vijfhoekige": [ "Adj(attr,stell,verv_neut)" ], "steden": [ "N(soort,mv,neut)" ], "daaronder": [ "Adv(pron,aanw)" ], "geschaamd": [ "V(refl,verl_dw,onverv)" ], "show": [ "N(soort,ev,neut)" ], "adviezen": [ "N(soort,mv,neut)" ], "twee-relatie": [ "N(soort,ev,neut)" ], "percent": [ "N(soort,ev,neut)" ], "sigaretterook": [ "N(soort,ev,neut)" ], "smalle": [ "Adj(attr,stell,verv_neut)" ], "zwakheid": [ "N(soort,ev,neut)" ], "vertrouwelijk": [ "Adj(adv,stell,onverv)" ], "ongewenst": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "benevens": [ "Conj(onder,met_inf)" ], "deken": [ "N(soort,ev,neut)" ], "Koop": [ "V(trans,imp)" ], "mooiedoortrapte-jongen-filmimage": [ "N(soort,ev,neut)" ], "uitgebreider": [ "Adj(attr,vergr,onverv)" ], "Praktisch": [ "Adj(adv,stell,onverv)" ], "reclame-bureau": [ "N(soort,ev,neut)" ], "verontwaardiging": [ "N(soort,ev,neut)" ], "Groot": [ "Adj(attr,stell,onverv)", "N(eigen,ev,neut)" ], "sterrennacht": [ "N(soort,ev,neut)" ], "huisartsen": [ "N(soort,mv,neut)" ], "toneelgezelschap": [ "N(soort,ev,neut)" ], "onpeilbare": [ "Adj(attr,stell,verv_neut)" ], "hoewel": [ "Conj(onder,met_fin)" ], "zwembaden": [ "N(soort,mv,neut)" ], "Bretagne": [ "N(eigen,ev,neut)" ], "fraai": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "Mel": [ "N(eigen,ev,neut)" ], "Alkmaar": [ "N(eigen,ev,neut)" ], "geldt": [ "V(intrans,ott,3,ev)" ], "Men": [ "Pron(onbep,neut,zelfst)" ], "Gainsborough": [ "N(eigen,ev,neut)" ], "blootgesteld": [ "V(trans,verl_dw,onverv)" ], "Onze": [ "Pron(bez,1,mv,neut,attr)" ], "genegen": [ "Adj(attr,stell,onverv)" ], "dodelijke": [ "Adj(attr,stell,verv_neut)" ], "Annie": [ "N(eigen,ev,neut)" ], "ervoer": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Met": [ "Prep(voor)" ], "bode": [ "N(soort,ev,neut)" ], "Beekbergen": [ "N(eigen,ev,neut)" ], "schuld": [ "N(soort,ev,neut)" ], "toebrengen": [ "V(trans,inf,subst)" ], "zestienhonderd": [ "Num(hoofd,bep,zelfst,onverv)" ], "NairobiDar-es-Salam": [ "N(eigen,ev,neut)" ], "Steve's": [ "N(eigen,ev,gen)" ], "hulp": [ "N(soort,ev,neut)" ], "geromantiseerd": [ "V(trans,verl_dw,onverv)" ], "aanwijzen": [ "V(trans,inf)" ], "300.000": [ "Num(hoofd,bep,zelfst,onverv)", "Num(hoofd,bep,attr,onverv)" ], "dreigende": [ "V(intrans,teg_dw,verv_neut)" ], "enkel": [ "Pron(onbep,neut,attr)", "Adj(adv,stell,onverv)", "N(soort,ev,neut)" ], "flatwoningen": [ "N(soort,mv,neut)" ], "familieportretten": [ "N(soort,mv,neut)" ], "schulp": [ "N(soort,ev,neut)" ], "bedoelingen": [ "N(soort,mv,neut)" ], "dreigends": [ "V(intrans,teg_dw,verv_gen)" ], "baard": [ "N(soort,ev,neut)" ], "gelet": [ "V(intrans,verl_dw,onverv)" ], "treffen": [ "V(intrans,inf,subst)", "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "Ingers": [ "N(eigen,ev,gen)" ], "humoristische": [ "Adj(attr,stell,verv_neut)" ], "boek": [ "N(soort,ev,neut)" ], "erin": [ "Adv(pron,onbep)" ], "echter": [ "Adv(gew,geen_func,stell,onverv)" ], "boel": [ "N(soort,ev,neut)" ], "voorspel": [ "N(soort,ev,neut)" ], "vrouwen": [ "N(soort,mv,neut)", "N(eigen,ev,neut)", "N(soort,ev,neut)" ], "adviseerde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "apparatuur": [ "N(soort,ev,neut)" ], "Crime": [ "Misc(vreemd)" ], "kruidenboek": [ "N(soort,ev,neut)" ], "flink": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "verbaasde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "rijdt": [ "V(intrans,ott,3,ev)", "V(intrans,ott,2,ev)" ], "Shakespeare": [ "N(eigen,ev,neut)" ], "elementaire": [ "Adj(attr,stell,verv_neut)" ], "architectuur": [ "N(soort,ev,neut)" ], "waardering": [ "N(soort,ev,neut)" ], "postuur": [ "N(soort,ev,neut)" ], "Finland": [ "N(eigen,ev,neut)" ], "weven": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "Zaterdagavond": [ "N(soort,ev,neut)" ], "gaststerren": [ "N(soort,mv,neut)" ], "tikfout": [ "N(soort,ev,neut)" ], "versterkt": [ "V(trans,verl_dw,onverv)", "V(trans,ott,3,ev)" ], "tienduizend": [ "Num(hoofd,bep,attr,onverv)" ], "degelijkheid": [ "N(soort,ev,neut)" ], "winterzonnetje": [ "N(soort,ev,neut)" ], "mekaar": [ "Pron(rec,neut)" ], "voordoen": [ "V(refl,inf)" ], "spontaniteit": [ "N(soort,ev,neut)" ], "strenge": [ "Adj(attr,stell,verv_neut)" ], "helpende": [ "V(intrans,teg_dw,verv_neut)" ], "binnenwerks": [ "Adj(adv,stell,onverv)" ], "voordoet": [ "V(refl,ott,3,ev)" ], "rijen": [ "N(soort,mv,neut)" ], "krantejongens": [ "N(soort,mv,neut)" ], "voetbal": [ "N(soort,ev,neut)" ], "avontuur": [ "N(soort,ev,neut)" ], "uitslapen": [ "V(intrans,inf)" ], "vrijen": [ "V(intrans,inf,subst)" ], "strelende": [ "V(intrans,teg_dw,verv_neut)" ], "overhaast": [ "Adj(adv,stell,onverv)", "V(trans,ott,3,ev)" ], "Stoomcursus": [ "N(soort,ev,neut)" ], "mondstuk": [ "N(soort,ev,neut)" ], "wisselen": [ "V(intrans,inf)" ], "contractueel": [ "Adj(adv,stell,onverv)" ], "inktvis": [ "N(soort,ev,neut)" ], "Venetie": [ "N(eigen,ev,neut)" ], "galadiner": [ "N(soort,ev,neut)" ], "harde": [ "Adj(attr,stell,verv_neut)" ], "teckelmoeder": [ "N(soort,ev,neut)" ], "joden": [ "N(soort,mv,neut)" ], "veldje": [ "N(soort,ev,neut)" ], "knieen": [ "N(soort,mv,neut)" ], "omhulsel": [ "N(soort,ev,neut)" ], "menen": [ "V(trans,ott,1_of_2_of_3,mv)", "V(trans,inf)" ], "huifkar": [ "N(soort,ev,neut)" ], "Ajax": [ "N(eigen,ev,neut)" ], "behoorlijk": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "Mij": [ "Pron(per,1,ev,dat_of_acc)" ], "uitkijkpost": [ "N(soort,ev,neut)" ], "Bonheur": [ "Misc(vreemd)" ], "Min": [ "Num(hoofd,onbep,zelfst,stell,onverv)" ], "verbinding": [ "N(soort,ev,neut)" ], "Tekort": [ "Adj(attr,stell,onverv)" ], "Mis": [ "Adj(attr,stell,onverv)" ], "Grote": [ "Adj(attr,stell,verv_neut)" ], "protesten": [ "N(soort,mv,neut)" ], "brandstof": [ "N(soort,ev,neut)" ], "jou": [ "Pron(per,2,ev,dat_of_acc)" ], "verkruimelde": [ "V(trans,verl_dw,verv_neut)" ], "stadhuis": [ "N(soort,ev,neut)" ], "verdrijft": [ "V(trans,ott,3,ev)" ], "jazzelementen": [ "N(soort,mv,neut)" ], "Geanimeerd": [ "V(trans,verl_dw,onverv)" ], "techniek": [ "N(soort,ev,neut)" ], "visbouillon": [ "N(soort,ev,neut)" ], "Jagger": [ "N(eigen,ev,neut)" ], "aantrekkelijk": [ "Adj(attr,stell,onverv)" ], "componist": [ "N(soort,ev,neut)" ], "zakkige": [ "Adj(attr,stell,verv_neut)" ], "wetende": [ "V(trans,teg_dw,verv_neut)" ], "Swahili": [ "N(eigen,ev,neut)" ], "opzij": [ "Adv(gew,geen_func,stell,onverv)" ], "duwde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "haren": [ "N(soort,mv,neut)" ], "voorbereiden": [ "V(refl,inf)", "V(trans,inf)" ], "uitrekenen": [ "V(trans,inf)" ], "geschapen": [ "V(trans,verl_dw,onverv)" ], "bergruimte": [ "N(soort,ev,neut)" ], "NVSH": [ "N(eigen,ev,neut)" ], "materiaal": [ "N(soort,ev,neut)" ], "gerekend": [ "V(intrans,verl_dw,onverv)", "V(trans,verl_dw,onverv)" ], "besneeuwde": [ "V(trans,verl_dw,verv_neut)" ], "jurken": [ "N(soort,mv,neut)" ], "glasvezel": [ "N(soort,ev,neut)" ], "documentaire": [ "N(soort,ev,neut)" ], "vermaarde": [ "Adj(attr,stell,verv_neut)" ], "popmuziek": [ "N(soort,ev,neut)" ], "antiquair": [ "N(soort,ev,neut)" ], "systematisch": [ "Adj(adv,stell,onverv)" ], "hinnikend": [ "V(intrans,teg_dw,onverv)" ], "krabbelde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "kasboeken": [ "N(soort,mv,neut)" ], "emotionele": [ "Adj(attr,stell,verv_neut)" ], "lyriek": [ "N(soort,ev,neut)" ], "zeggen": [ "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)", "V(intrans,inf)" ], "pers": [ "N(soort,ev,neut)" ], "reservaat": [ "N(soort,ev,neut)" ], "duwen": [ "V(trans,inf)" ], "tegenkomen": [ "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "bloemenkrans": [ "N(soort,ev,neut)" ], "toeren": [ "N(soort,mv,neut)" ], "Waldorf-Astoria": [ "N(eigen,ev,neut)" ], "nieuwslezer": [ "N(soort,ev,neut)" ], "gelezen": [ "V(trans,verl_dw,onverv)", "V(intrans,verl_dw,onverv)" ], "Welnee": [ "Int" ], "achttiende": [ "Num(rang,bep,attr,onverv)" ], "Grace": [ "N(eigen,ev,neut)" ], "Palaverboek": [ "N(soort,ev,neut)" ], "gevoelsleven": [ "N(soort,ev,neut)" ], "klachten": [ "N(soort,mv,neut)" ], "zwerven": [ "V(intrans,inf,subst)", "V(intrans,inf)" ], "fjorden": [ "N(soort,mv,neut)" ], "Wiegerma": [ "N(eigen,ev,neut)" ], "pest": [ "N(soort,ev,neut)" ], "Delden": [ "N(eigen,ev,neut)" ], "Creatieoord": [ "N(eigen,ev,neut)" ], "luchtvervuiling": [ "N(soort,ev,neut)" ], "verrader": [ "N(soort,ev,neut)" ], "Midden": [ "Adv(gew,geen_func,stell,onverv)" ], "verslag": [ "N(soort,ev,neut)" ], "erom": [ "Adv(pron,onbep)" ], "gezelschap": [ "N(soort,ev,neut)" ], "erop": [ "Adv(pron,onbep)", "Adv(pron,aanw)" ], "kleuren": [ "N(soort,mv,neut)" ], "Auschwitz": [ "N(eigen,ev,neut)" ], "maandag": [ "N(eigen,ev,neut)" ], "Cornelis": [ "N(eigen,ev,neut)" ], "gedeelte": [ "N(soort,ev,neut)" ], "vervoer": [ "N(soort,ev,neut)" ], "prijs": [ "N(soort,ev,neut)" ], "geweldenaar": [ "N(soort,ev,neut)" ], "geregeerd": [ "V(trans,verl_dw,onverv)" ], "Arbeit": [ "Misc(vreemd)" ], "dichter": [ "Adv(gew,geen_func,vergr,onverv)" ], "aardewerk": [ "N(soort,ev,neut)" ], "alcoholist": [ "N(soort,ev,neut)" ], "communicatiemiddelen": [ "N(soort,mv,neut)" ], "Hanneke": [ "N(eigen,ev,neut)" ], "kloppen": [ "V(trans,ott,1_of_2_of_3,mv)", "V(intrans,inf)" ], "krotten": [ "N(soort,mv,neut)" ], "veelbesproken": [ "Adj(attr,stell,onverv)" ], "waarschuwend": [ "V(intrans,teg_dw,onverv)" ], "pijnlijk": [ "Adj(adv,stell,onverv)" ], "Spelen": [ "N(eigen,mv,neut)", "N(soort,mv,neut)" ], "Daume": [ "N(eigen,ev,neut)" ], "rijke": [ "Adj(attr,stell,verv_neut)" ], "ontvangt": [ "V(trans,ott,3,ev)" ], "schriftelijk": [ "Adj(adv,stell,onverv)" ], "schrikbewind": [ "N(soort,ev,neut)" ], "tegenstrijdigheid": [ "N(soort,ev,neut)" ], "vechten": [ "V(intrans,inf)" ], "wijnen": [ "N(soort,mv,neut)" ], "kleurenproduktie": [ "N(soort,ev,neut)" ], "compleet": [ "Adj(attr,stell,onverv)" ], "leidt": [ "V(intrans,ott,3,ev)", "V(trans,ott,3,ev)" ], "ijzerzaagjes": [ "N(soort,mv,neut)" ], "achtten": [ "V(hulp,ovt,1_of_2_of_3,mv)", "V(trans,ovt,1_of_2_of_3,mv)" ], "opereren": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "Ondanks": [ "Prep(voor)" ], "woordenloze": [ "Adj(attr,stell,verv_neut)" ], "betalen": [ "V(trans,inf)", "V(intrans,inf)" ], "opmerkelijk": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "huur": [ "N(soort,ev,neut)" ], "zakenmensen": [ "N(soort,mv,neut)" ], "Justitie": [ "N(soort,ev,neut)" ], "caries": [ "N(soort,ev,neut)" ], "mijnheer": [ "N(soort,ev,neut)" ], "schuur": [ "N(soort,ev,neut)" ], "afwezig": [ "Adj(attr,stell,onverv)" ], "niveau": [ "N(soort,ev,neut)" ], "integratie": [ "N(soort,ev,neut)" ], "verplicht": [ "V(trans,verl_dw,onverv)" ], "dwaas": [ "Adj(attr,stell,onverv)" ], "Mol": [ "N(eigen,ev,neut)" ], "prima": [ "Adj(attr,stell,onverv)" ], "Volgens": [ "Prep(voor)" ], "ervoor": [ "Adv(pron,onbep)" ], "bond": [ "N(soort,ev,neut)" ], "NOS": [ "N(eigen,ev,neut)" ], "Bolton": [ "N(eigen,ev,neut)" ], "iedereen": [ "Pron(onbep,neut,zelfst)" ], "climax": [ "N(soort,ev,neut)" ], "ondernam": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "vertellen": [ "V(trans,inf)", "V(intrans,inf)" ], "ronduit": [ "Adv(gew,geen_func,stell,onverv)" ], "dashboard": [ "N(soort,ev,neut)" ], "bons": [ "N(soort,ev,neut)" ], "Jean": [ "N(eigen,ev,neut)" ], "bewijsbaar": [ "Adj(attr,stell,onverv)" ], "Spontini": [ "N(eigen,ev,neut)" ], "Avenue": [ "N(eigen,ev,neut)" ], "welzijn": [ "N(soort,ev,neut)" ], "zeulen": [ "V(trans,inf)" ], "noteren": [ "V(trans,inf)" ], "Brandpunt": [ "N(soort,ev,neut)" ], "Mr.": [ "N(eigen,ev,neut)" ], "Academie": [ "N(eigen,ev,neut)" ], "wieden": [ "V(trans,inf)" ], "bood": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Patrick": [ "N(eigen,ev,neut)" ], "Laser": [ "N(soort,ev,neut)" ], "meisjes": [ "N(soort,mv,neut)", "N(eigen,ev,neut)" ], "groeitijd": [ "N(soort,ev,neut)" ], "echtgenoten": [ "N(soort,mv,neut)" ], "oosterse": [ "Adj(attr,stell,verv_neut)" ], "boog": [ "N(soort,ev,neut)", "V(trans,ovt,1_of_2_of_3,ev)" ], "gymnastiekuitvoering": [ "N(soort,ev,neut)" ], "kleurig": [ "Adj(attr,stell,onverv)" ], "Ventura": [ "N(eigen,ev,neut)" ], "boom": [ "N(soort,ev,neut)" ], "technicus": [ "N(soort,ev,neut)" ], "boos": [ "Adj(attr,stell,onverv)" ], "prins": [ "N(soort,ev,neut)" ], "boot": [ "N(soort,ev,neut)" ], "bundelen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "VITUS": [ "N(eigen,ev,neut)" ], "frame": [ "N(soort,ev,neut)" ], "Monty": [ "N(eigen,ev,neut)" ], "huisarts": [ "N(soort,ev,neut)" ], "maanden": [ "N(soort,mv,neut)" ], "tv-produkties": [ "N(soort,mv,neut)" ], "team": [ "N(soort,ev,neut)" ], "gaande": [ "V(intrans,teg_dw,verv_neut)" ], "bekendste": [ "Adj(attr,overtr,verv_neut)" ], "spray": [ "N(soort,ev,neut)" ], "Tricia": [ "N(eigen,ev,neut)" ], "vermisten": [ "V(trans,verl_dw,verv_mv)" ], "Totdat": [ "Conj(onder,met_fin)" ], "scharen": [ "N(soort,mv,neut)" ], "vetarme": [ "Adj(attr,stell,verv_neut)" ], "Smith": [ "N(eigen,ev,neut)" ], "stiekum": [ "Adj(adv,stell,onverv)" ], "dertigste": [ "Num(rang,bep,attr,onverv)" ], "intelligentie": [ "N(soort,ev,neut)" ], "gebeurde": [ "V(intrans,ovt,1_of_2_of_3,ev)", "V(intrans,verl_dw,verv_neut)" ], "kinderloos": [ "Adj(attr,stell,onverv)" ], "dreun": [ "N(soort,ev,neut)", "V(intrans,ott,1,ev)" ], "Wacht": [ "V(intrans,imp)" ], "citroen": [ "N(soort,ev,neut)" ], "Demerest": [ "N(eigen,ev,neut)" ], "spannend": [ "Adj(attr,stell,onverv)" ], "bemoedigen": [ "V(trans,inf)" ], "zichtbaar": [ "Adj(attr,stell,onverv)" ], "reversibiliteit": [ "N(soort,ev,neut)" ], "gebedsmolens": [ "N(soort,mv,neut)" ], "onuitgeslapen": [ "Adj(attr,stell,onverv)" ], "handel": [ "N(soort,ev,neut)" ], "2,1": [ "Num(hoofd,bep,attr,onverv)" ], "vernietigingskamp": [ "N(soort,ev,neut)" ], "handen": [ "N(soort,mv,neut)" ], "pakkende": [ "V(intrans,teg_dw,verv_neut)" ], "trots": [ "Adj(attr,stell,onverv)", "N(soort,ev,neut)" ], "ingeschreven": [ "V(trans,verl_dw,onverv)" ], "sherry'tje": [ "N(soort,ev,neut)" ], "Michel": [ "N(eigen,ev,neut)" ], "traag": [ "Adj(adv,stell,onverv)" ], "interesseren": [ "V(trans,inf)" ], "twijfel": [ "N(soort,ev,neut)" ], "driemaal": [ "Adv(gew,geen_func,stell,onverv)" ], "vlag": [ "N(soort,ev,neut)" ], "kruipt": [ "V(intrans,ott,3,ev)" ], "gedoceerd": [ "V(trans,verl_dw,onverv)" ], "onderzoerzoekers": [ "N(soort,mv,neut)" ], "aanvallers": [ "N(soort,mv,neut)" ], "aanwijzingen": [ "N(soort,mv,neut)" ], "vlak": [ "Adv(gew,geen_func,stell,onverv)" ], "verlengingszaken": [ "N(soort,mv,neut)" ], "positie": [ "N(soort,ev,neut)" ], "satijn": [ "N(soort,ev,neut)" ], "vlees": [ "N(soort,ev,neut)" ], "zakelijkheid": [ "N(soort,ev,neut)" ], "gebeuren": [ "V(intrans,inf)", "V(intrans,ott,1_of_2_of_3,mv)", "N(soort,ev,neut)" ], "momenten": [ "N(soort,mv,neut)" ], "voorbereidingen": [ "N(soort,mv,neut)" ], "2-3": [ "Num(hoofd,bep,attr,onverv)" ], "bord": [ "N(soort,ev,neut)" ], "trouw": [ "N(soort,ev,neut)", "Adj(attr,stell,onverv)" ], "hechte": [ "Adj(attr,stell,verv_neut)" ], "Nixon-bewind": [ "N(soort,ev,neut)" ], "gestekt": [ "V(trans,verl_dw,onverv)" ], "paard": [ "N(soort,ev,neut)" ], "soldaten": [ "N(soort,mv,neut)" ], "schouders": [ "N(soort,mv,neut)" ], "dierentuin": [ "N(soort,ev,neut)" ], "patroondelen": [ "N(soort,mv,neut)" ], "internationaal": [ "Adj(adv,stell,onverv)" ], "Prijsvorming": [ "N(soort,ev,neut)" ], "aanvankelijk": [ "Adj(adv,stell,onverv)" ], "dierenasiel": [ "N(soort,ev,neut)" ], "gesteld": [ "V(trans,verl_dw,onverv)", "V(intrans,verl_dw,onverv)", "Adj(attr,stell,onverv)" ], "genomen": [ "V(trans,verl_dw,onverv)" ], "kwaadaardig": [ "Adj(adv,stell,onverv)" ], "karton": [ "N(soort,ev,neut)" ], "veroorzaakt": [ "V(trans,verl_dw,onverv)", "V(trans,ott,3,ev)" ], "Lau's": [ "N(eigen,ev,gen)" ], "monsieur": [ "N(soort,ev,neut)" ], "Enfin": [ "Int" ], "angstdroom": [ "N(soort,ev,neut)" ], "voorbedachten": [ "Adj(attr,stell,verv_neut)" ], "vitamine": [ "N(soort,ev,neut)" ], "waardige": [ "Adj(attr,stell,verv_neut)" ], "moederschap": [ "N(soort,ev,neut)" ], "opgewekt": [ "V(trans,verl_dw,onverv)" ], "rivieren": [ "N(soort,mv,neut)" ], "beleefde": [ "Adj(attr,stell,verv_neut)" ], "uitzenden": [ "V(trans,inf)" ], "buiten": [ "Adv(gew,geen_func,stell,onverv)", "Prep(voor)", "N(soort,ev,neut)" ], "populair": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "mensen": [ "N(soort,mv,neut)" ], "Zullen": [ "V(hulp,ott,1_of_2_of_3,mv)" ], "teen": [ "N(soort,ev,neut)" ], "Mann's": [ "N(eigen,ev,gen)" ], "ministers": [ "N(soort,mv,neut)" ], "Noorse": [ "Adj(attr,stell,verv_neut)" ], "prikkeldraad": [ "N(soort,ev,neut)" ], "manman": [ "N(soort,ev,neut)" ], "japonnen": [ "N(soort,mv,neut)" ], "trompettist": [ "N(soort,ev,neut)" ], "Almelo": [ "N(eigen,ev,neut)" ], "volstaan": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "afgezaagd": [ "Adj(attr,stell,onverv)" ], "misdaad": [ "N(soort,ev,neut)" ], "kindje": [ "N(soort,ev,neut)" ], "geluk": [ "N(soort,ev,neut)" ], "geintje": [ "N(soort,ev,neut)" ], "modepers": [ "N(soort,ev,neut)" ], "baai": [ "N(soort,ev,neut)", "N(eigen,ev,neut)" ], "handig": [ "Adj(attr,stell,onverv)" ], "fatalisme": [ "N(soort,ev,neut)" ], "breekt": [ "V(intrans,ott,3,ev)" ], "eerlijkheid": [ "N(soort,ev,neut)" ], "baan": [ "N(soort,ev,neut)" ], "misdaan": [ "V(trans,verl_dw,onverv)" ], "afgeleverd": [ "V(trans,verl_dw,onverv)" ], "baas": [ "N(soort,ev,neut)" ], "variaties": [ "N(soort,mv,neut)" ], "krijgsman": [ "N(soort,ev,neut)" ], "beroepsvoetbal": [ "N(soort,ev,neut)" ], "geslacht": [ "N(soort,ev,neut)" ], "immunisatie": [ "N(soort,ev,neut)" ], "tamboers": [ "N(soort,mv,neut)" ], "omkijken": [ "V(intrans,inf)" ], "vlek": [ "N(soort,ev,neut)" ], "urenlange": [ "Adj(attr,stell,verv_neut)" ], "oudoom": [ "N(soort,ev,neut)" ], "bladen": [ "N(soort,mv,neut)" ], "bouw": [ "N(soort,ev,neut)", "V(trans,imp)" ], "overgangsjaren": [ "N(soort,mv,neut)" ], "gloriedag": [ "N(soort,ev,neut)" ], "Durft": [ "V(trans,ott,2,ev)" ], "varen": [ "V(intrans,inf)" ], "waterpomp": [ "N(soort,ev,neut)" ], "astrologie": [ "N(soort,ev,neut)" ], "nevenuitkomst": [ "N(soort,ev,neut)" ], "koesteren": [ "V(trans,ott,1_of_2_of_3,mv)" ], "baby": [ "N(soort,ev,neut)" ], "onbekend": [ "Adj(attr,stell,onverv)" ], "reklamekampagne": [ "N(soort,ev,neut)" ], "alwetend": [ "Adj(adv,stell,onverv)" ], "hulstboom": [ "N(soort,ev,neut)" ], "gamma": [ "N(soort,ev,neut)" ], "signalement": [ "N(soort,ev,neut)" ], "skitechniek": [ "N(soort,ev,neut)" ], "minuscuul": [ "Adj(adv,stell,onverv)" ], "regelmaat": [ "N(soort,ev,neut)" ], "goddelijke": [ "Adj(attr,stell,verv_neut)" ], "handwerk": [ "N(soort,ev,neut)" ], "leuker": [ "Adj(attr,vergr,onverv)" ], "verrukkelijks": [ "Adj(attr,stell,verv_gen)" ], "back": [ "Misc(vreemd)" ], "Vuile": [ "Adj(attr,stell,verv_neut)" ], "aanknopingspunten": [ "N(soort,mv,neut)" ], "stroeve": [ "Adj(attr,stell,verv_neut)" ], "betekenen": [ "V(trans,inf)", "V(intrans,inf)" ], "schaakspel": [ "N(soort,ev,neut)" ], "aangesloten": [ "V(trans,verl_dw,onverv)" ], "weliswaar": [ "Adv(gew,geen_func,stell,onverv)" ], "ontruiming": [ "N(soort,ev,neut)" ], "VROUW": [ "N(soort,ev,neut)" ], "aangekleed": [ "V(refl,verl_dw,onverv)" ], "moest": [ "V(hulp,ovt,1_of_2_of_3,ev)" ], "Ooievaar": [ "N(eigen,ev,neut)" ], "Margriet": [ "N(soort,ev,neut)" ], "krimpen": [ "V(intrans,inf)" ], "activiteit": [ "N(soort,ev,neut)" ], "gloed": [ "N(soort,ev,neut)" ], "nertsstola": [ "N(soort,ev,neut)" ], "harte": [ "N(soort,ev,dat)" ], "opinie": [ "N(soort,ev,neut)" ], "onjuiste": [ "Adj(attr,stell,verv_neut)" ], "landelijke": [ "Adj(attr,stell,verv_neut)" ], "sick": [ "Adj(adv,stell,onverv)" ], "publikatie": [ "N(soort,ev,neut)" ], "gewild": [ "V(intrans,verl_dw,onverv)" ], "rijtje": [ "N(soort,ev,neut)" ], "bebouwde": [ "V(trans,verl_dw,verv_neut)" ], "uitgezochte": [ "V(trans,verl_dw,verv_neut)" ], "gunstig": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "cognacje": [ "N(soort,ev,neut)" ], "overloop": [ "N(soort,ev,neut)" ], "luid": [ "Adj(adv,stell,onverv)" ], "ontdekten": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "luie": [ "Adj(attr,stell,verv_neut)" ], "Dagen": [ "N(soort,mv,neut)" ], "besefte": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "eeuwenoude": [ "Adj(attr,stell,verv_neut)" ], "tegen": [ "Prep(voor)", "Adv(gew,geen_func,stell,onverv)", "Adv(deel_v)", "Adv(deel_adv)" ], "vertoefd": [ "V(intrans,verl_dw,onverv)" ], "klasgenoten": [ "N(soort,mv,neut)" ], "Figuur": [ "N(soort,ev,neut)" ], "oplet": [ "V(trans,ott,3,ev)" ], "vliegreis": [ "N(soort,ev,neut)" ], "twintig": [ "Num(hoofd,bep,attr,onverv)" ], "bakken": [ "V(intrans,inf)", "V(trans,inf)" ], "Heijermans": [ "N(eigen,ev,neut)" ], "reclamemensen": [ "N(soort,mv,neut)" ], "bakker": [ "N(soort,ev,neut)" ], "lieten": [ "V(hulp,ovt,1_of_2_of_3,mv)" ], "leefregels": [ "N(soort,mv,neut)" ], "aangestapt": [ "V(intrans,verl_dw,onverv)" ], "noteerde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "(oud)studenten": [ "N(soort,mv,neut)" ], "reddingsduikboten": [ "N(soort,mv,neut)" ], "atmosfeer": [ "N(soort,ev,neut)" ], "satire": [ "N(soort,ev,neut)" ], "vitaminehoudende": [ "Adj(attr,stell,verv_neut)" ], "bevrijdingsfeest": [ "N(soort,ev,neut)" ], "herleefde": [ "V(intrans,verl_dw,verv_neut)" ], "zorgden": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "onhoudbare": [ "Adj(attr,stell,verv_neut)" ], "fortuin": [ "N(soort,ev,neut)" ], "keerde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "boys": [ "N(soort,mv,neut)" ], "ongemakken": [ "N(soort,mv,neut)" ], "onderplank": [ "N(soort,ev,neut)" ], "brengen": [ "V(trans,inf)", "V(trans,inf,subst)" ], "ketsen": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "afwijzen": [ "V(trans,inf)" ], "dagelijkse": [ "Adj(attr,stell,verv_neut)" ], "Politiek": [ "Adj(adv,stell,onverv)" ], "weekbladen": [ "N(soort,mv,neut)" ], "geinterpreteerd": [ "V(trans,verl_dw,onverv)" ], "professor": [ "N(soort,ev,neut)" ], "boze": [ "Adj(attr,stell,verv_neut)" ], "foeilelijke": [ "Adj(attr,stell,verv_neut)" ], "staten": [ "N(soort,mv,neut)" ], "Rienk": [ "N(eigen,ev,neut)" ], "natte": [ "Adj(attr,stell,verv_neut)" ], "lukt": [ "V(intrans,ott,3,ev)" ], "Transparante": [ "Adj(attr,stell,verv_neut)" ], "overbevolkingsverhalen": [ "N(soort,mv,neut)" ], "Kampioen-compromissensluiter": [ "N(soort,ev,neut)" ], "werkloosheid": [ "N(soort,ev,neut)" ], "vaderland": [ "N(soort,ev,neut)" ], "knoflook": [ "N(soort,ev,neut)" ], "hoogste": [ "Adj(attr,overtr,verv_neut)" ], "marmotten": [ "N(soort,mv,neut)" ], "afschuwelijke": [ "Adj(attr,stell,verv_neut)" ], "platbektangetje": [ "N(soort,ev,neut)" ], "zwager": [ "N(soort,ev,neut)" ], "telt": [ "V(intrans,ott,3,ev)", "V(trans,ott,3,ev)" ], "kan": [ "V(hulp,ott,3,ev)", "V(trans,ott,3,ev)", "V(hulp,ott,1,ev)", "V(hulp,ott,2,ev)", "V(trans,ott,1,ev)", "V(intrans,ott,3,ev)" ], "Descriptions": [ "Misc(vreemd)" ], "betekenis": [ "N(soort,ev,neut)" ], "Pretty": [ "N(eigen,ev,neut)" ], "wekenlange": [ "Adj(attr,stell,verv_neut)" ], "kat": [ "N(soort,ev,neut)" ], "hevige": [ "Adj(attr,stell,verv_neut)" ], "boerden": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "daalde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "verricht": [ "V(trans,verl_dw,onverv)" ], "erfelijk": [ "Adj(adv,stell,onverv)" ], "platen": [ "N(soort,mv,neut)" ], "groeit": [ "V(intrans,ott,3,ev)" ], "Navarra": [ "N(eigen,ev,neut)" ], "ontzettend": [ "Adj(adv,stell,onverv)", "V(intrans,teg_dw,onverv)" ], "vertraging": [ "N(soort,ev,neut)" ], "Rijksasiel": [ "N(soort,ev,neut)" ], "strandstoelen": [ "N(soort,mv,neut)" ], "kalmerend": [ "V(intrans,teg_dw,onverv)" ], "betekenden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "nijver": [ "Adj(adv,stell,onverv)" ], "Jonas": [ "N(eigen,ev,neut)" ], "Hoewel": [ "Conj(onder,met_fin)", "Adv(gew,geen_func,stell,onverv)" ], "mevrouwen": [ "N(soort,mv,neut)" ], "zoontje": [ "N(soort,ev,neut)" ], "succes": [ "N(soort,ev,neut)" ], "Bunt": [ "N(eigen,ev,neut)" ], "voorkomen": [ "V(trans,inf)", "V(intrans,ott,1_of_2_of_3,mv)" ], "wisselend": [ "V(intrans,teg_dw,onverv)" ], "denkbeeldige": [ "Adj(attr,stell,verv_neut)" ], "Halverwege": [ "Adv(gew,geen_func,stell,onverv)" ], "clan": [ "N(eigen,ev,neut)" ], "gelukkig": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "overeen": [ "Adv(gew,geen_func,stell,onverv)" ], "modebeeld": [ "N(soort,ev,neut)" ], "ongezond": [ "Adj(attr,stell,onverv)" ], "toewijding": [ "N(soort,ev,neut)" ], "duidt": [ "V(intrans,ott,3,ev)" ], "ongelovig": [ "Adj(adv,stell,onverv)" ], "schimmen": [ "N(soort,mv,neut)" ], "produkt": [ "N(soort,ev,neut)" ], "tent": [ "N(soort,ev,neut)" ], "uitgewezen": [ "V(trans,verl_dw,onverv)" ], "bereid": [ "Adj(attr,stell,onverv)" ], "neemt": [ "V(trans,ott,3,ev)" ], "internationale": [ "Adj(attr,stell,verv_neut)" ], "spande": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "gedreven": [ "V(trans,verl_dw,onverv)" ], "verdedigen": [ "V(trans,inf,subst)" ], "verschuldigde": [ "V(trans,verl_dw,verv_neut)" ], "geraffineerde": [ "Adj(attr,stell,verv_neut)" ], "experiment": [ "N(soort,ev,neut)" ], "verdediger": [ "N(soort,ev,neut)" ], "betaalde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Blaricum": [ "N(eigen,ev,neut)" ], "vroegtijdige": [ "Adj(attr,stell,verv_neut)" ], "statig": [ "Adj(adv,stell,onverv)" ], "treedt": [ "V(trans,ott,3,ev)" ], "accepteren": [ "V(trans,inf)" ], "honden": [ "N(soort,mv,neut)" ], "werkelijkheid": [ "N(soort,ev,neut)" ], "vlerk": [ "N(soort,ev,neut)" ], "leverde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "verlossende": [ "V(intrans,teg_dw,verv_neut)" ], "kostwinner": [ "N(soort,ev,neut)" ], "wegens": [ "Prep(voor)" ], "getoond": [ "V(trans,verl_dw,onverv)" ], "revolutionaire": [ "Adj(attr,stell,verv_neut)" ], "middelmaat": [ "N(soort,ev,neut)" ], "puddingvorm": [ "N(soort,ev,neut)" ], "vroedvrouw": [ "N(soort,ev,neut)" ], "voelden": [ "V(refl,ovt,1_of_2_of_3,mv)" ], "ontwijken": [ "V(trans,inf)" ], "meegedeeld": [ "V(trans,verl_dw,onverv)" ], "afzonderlijke": [ "Adj(attr,stell,verv_neut)" ], "halfdonker": [ "Adj(attr,stell,onverv)" ], "gefrustreerd": [ "V(trans,verl_dw,onverv)" ], "overzichtstentoonstelling": [ "N(soort,ev,neut)" ], "dwars": [ "Adj(adv,stell,onverv)" ], "kei": [ "N(soort,ev,neut)" ], "Da's": [ "V(hulp_of_kopp,ott,3,ev)" ], "noodoplossing": [ "N(soort,ev,neut)" ], "prijken": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "ken": [ "V(trans,ott,1,ev)" ], "assistenten": [ "N(soort,mv,neut)" ], "oorzaken": [ "N(soort,mv,neut)" ], "aktetas": [ "N(soort,ev,neut)" ], "wellicht": [ "Adv(gew,geen_func,stell,onverv)" ], "riool-extase": [ "N(soort,ev,neut)" ], "erachter": [ "Adv(pron,onbep)" ], "voorspellen": [ "V(trans,inf)" ], "stofbergen": [ "N(soort,mv,neut)" ], "beeindigd": [ "V(trans,verl_dw,onverv)" ], "rommelen": [ "V(intrans,inf)" ], "Utopia": [ "N(eigen,ev,neut)" ], "enthousiasme": [ "N(soort,ev,neut)" ], "leveren": [ "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "voetgangers": [ "N(soort,mv,neut)" ], "Ravens": [ "N(eigen,ev,neut)" ], "heren": [ "N(soort,mv,neut)" ], "balk": [ "N(soort,ev,neut)" ], "vlot": [ "Adj(adv,stell,onverv)" ], "hartstochtelijk": [ "Adj(adv,stell,onverv)" ], "Veronica": [ "N(eigen,ev,neut)" ], "vermogensmisdrijven": [ "N(soort,mv,neut)" ], "Burg": [ "N(eigen,ev,neut)" ], "neiging": [ "N(soort,ev,neut)" ], "mooier": [ "Adj(attr,vergr,onverv)" ], "ruimte": [ "N(soort,ev,neut)" ], "stappen": [ "V(intrans,inf)", "V(intrans,ott,1_of_2_of_3,mv)" ], "krotopruiming": [ "N(soort,ev,neut)" ], "groene": [ "Adj(attr,stell,verv_neut)" ], "dikke": [ "Adj(attr,stell,verv_neut)" ], "Burm": [ "N(eigen,ev,neut)" ], "communes": [ "N(soort,mv,neut)" ], "A-D": [ "Num(hoofd,bep,attr,onverv)" ], "sigaret": [ "N(soort,ev,neut)" ], "kortom": [ "Int", "Adv(gew,geen_func,stell,onverv)" ], "tenten": [ "N(soort,mv,neut)" ], "individualisme": [ "N(soort,ev,neut)" ], "tere": [ "Adj(attr,stell,verv_neut)" ], "jongelui": [ "N(soort,mv,neut)" ], "identieke": [ "Adj(attr,stell,verv_neut)" ], "alleenstaande": [ "Adj(attr,stell,verv_neut)", "Adj(zelfst,stell,verv_neut)" ], "ribbelige": [ "Adj(attr,stell,verv_neut)" ], "studentendecaan": [ "N(soort,ev,neut)" ], "motor": [ "N(soort,ev,neut)" ], "term": [ "N(soort,ev,neut)" ], "werkhypothese": [ "N(soort,ev,neut)" ], "Canarische": [ "N(eigen,mv,neut)" ], "parfumeer": [ "V(trans,imp)" ], "platencontract": [ "N(soort,ev,neut)" ], "Steinbachs": [ "N(eigen,mv,neut)" ], "Kusche": [ "N(eigen,ev,neut)" ], "pijnen": [ "N(soort,mv,neut)" ], "zichtbare": [ "Adj(attr,stell,verv_neut)" ], "plekken": [ "N(soort,mv,neut)" ], "miljoen": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "invaliditeitsverzekeringen": [ "N(soort,mv,neut)" ], "kwijtraakte": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "acryl": [ "N(soort,ev,neut)" ], "Trouwens": [ "Adv(gew,geen_func,stell,onverv)" ], "band": [ "N(soort,ev,neut)" ], "bang": [ "Adj(attr,stell,onverv)" ], "Allemaal": [ "Pron(onbep,neut,zelfst)" ], "Jonge": [ "Adj(attr,stell,verv_neut)" ], "gemak": [ "N(soort,ev,neut)" ], "grasanjer": [ "N(soort,ev,neut)" ], "thuiskomen": [ "V(intrans,inf)" ], "bank": [ "N(soort,ev,neut)" ], "toevoeging": [ "N(soort,ev,neut)" ], "ziekteverzekering": [ "N(soort,ev,neut)" ], "bonnen": [ "N(soort,mv,neut)" ], "omlijst": [ "V(trans,verl_dw,onverv)" ], "Poesjkin": [ "N(eigen,ev,neut)" ], "indruk": [ "N(soort,ev,neut)" ], "bedoel": [ "V(trans,ott,1,ev)", "V(trans,ott,2,ev)" ], "begrip": [ "N(soort,ev,neut)" ], "geenszins": [ "Adv(gew,geen_func,stell,onverv)" ], "zeilt": [ "V(intrans,ott,3,ev)" ], "opgepropt": [ "V(trans,verl_dw,onverv)" ], "bloemetjes": [ "N(soort,mv,neut)" ], "aangesmeerd": [ "V(trans,verl_dw,onverv)" ], "aardappeltjes": [ "N(soort,mv,neut)" ], "tenslotte": [ "Adv(gew,geen_func,stell,onverv)" ], "lessen": [ "N(soort,mv,neut)" ], "verzoek": [ "N(soort,ev,neut)" ], "ademhaling": [ "N(soort,ev,neut)" ], "voetballen": [ "V(intrans,inf)" ], "ethische": [ "Adj(attr,stell,verv_neut)" ], "lust": [ "N(soort,ev,neut)" ], "Bordeauxregions": [ "N(soort,mv,neut)" ], "energieke": [ "Adj(attr,stell,verv_neut)" ], "Zuid-Vietnam": [ "N(eigen,ev,neut)" ], "onderneming": [ "N(soort,ev,neut)" ], "brommers": [ "N(soort,mv,neut)" ], "vecht": [ "V(intrans,ott,3,ev)" ], "rekenen": [ "V(intrans,inf)" ], "uiterste": [ "Adj(zelfst,stell,verv_neut)" ], "negatieve": [ "Adj(attr,stell,verv_neut)" ], "zandtrottoirs": [ "N(soort,mv,neut)" ], "collectie": [ "N(soort,ev,neut)" ], "stommelde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Ugly": [ "N(eigen,ev,neut)" ], "steeds": [ "Adv(gew,geen_func,stell,onverv)" ], "kil": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "1_2": [ "Num(hoofd,bep,attr,onverv)" ], "onstilbaar": [ "Adj(attr,stell,onverv)" ], "hondje": [ "N(soort,ev,neut)" ], "kin": [ "N(soort,ev,neut)" ], "m'n": [ "Pron(bez,1,ev,neut,attr)" ], "vruchtjes": [ "N(soort,mv,neut)" ], "kip": [ "N(soort,ev,neut)" ], "uzelf": [ "Pron(per,2,ev,nom)" ], "officier": [ "N(soort,ev,neut)" ], "Omdat": [ "Conj(onder,met_fin)" ], "overmorgen": [ "Adv(gew,geen_func,stell,onverv)" ], "Ootmarsum": [ "N(eigen,ev,neut)" ], "Gedroogde": [ "V(intrans,verl_dw,verv_neut)" ], "burgerlijk": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "ingedragen": [ "V(trans,verl_dw,onverv)" ], "zachtjes": [ "Adv(gew,geen_func,stell,onverv)" ], "beloning": [ "N(soort,ev,neut)" ], "Skarabee": [ "N(eigen,ev,neut)" ], "opvatting": [ "N(soort,ev,neut)" ], "anderzijds": [ "Adv(gew,geen_func,stell,onverv)" ], "nazaten": [ "N(soort,mv,neut)" ], "experimenten": [ "N(soort,mv,neut)" ], "Akersloot": [ "N(eigen,ev,neut)" ], "schaden": [ "V(intrans,inf)" ], "Joseph": [ "N(eigen,ev,neut)" ], "houtsvuur": [ "N(soort,ev,neut)" ], "preuts": [ "Adj(attr,stell,verv_gen)" ], "Verhage": [ "N(eigen,ev,neut)" ], "Dolle": [ "N(eigen,ev,neut)" ], "dispensatie": [ "N(soort,ev,neut)" ], "vergeten": [ "V(trans,verl_dw,onverv)", "V(trans,ott,1_of_2_of_3,mv)", "V(trans,inf)", "V(intrans,inf)" ], "winnen": [ "V(trans,inf)", "V(intrans,inf)" ], "dorpsschool": [ "N(soort,ev,neut)" ], "stammen": [ "N(soort,mv,neut)", "V(intrans,ott,1_of_2_of_3,mv)" ], "vierduizend": [ "Num(hoofd,bep,attr,onverv)" ], "tuiten": [ "N(soort,mv,neut)" ], "Munchen": [ "N(eigen,ev,neut)" ], "beoordelen": [ "V(trans,inf)" ], "delen": [ "N(soort,mv,neut)", "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "aanbeveling": [ "N(soort,ev,neut)" ], "jazztrompettist": [ "N(soort,ev,neut)" ], "Boeyoeng": [ "N(eigen,ev,neut)" ], "uiteenlopende": [ "V(intrans,teg_dw,verv_neut)" ], "verzamelde": [ "V(trans,verl_dw,verv_neut)" ], "uitgelachen": [ "V(trans,verl_dw,onverv)" ], "Ieren": [ "N(soort,mv,neut)" ], "verblijven": [ "N(soort,mv,neut)" ], "voordat": [ "Conj(onder,met_fin)" ], "Nee": [ "Int" ], "nachten": [ "N(soort,mv,neut)" ], "geadopteerd": [ "V(trans,verl_dw,onverv)" ], "farmaceutische": [ "Adj(attr,stell,verv_neut)" ], "persoonlijkheid": [ "N(soort,ev,neut)" ], "sentimentele": [ "Adj(attr,stell,verv_neut)" ], "Apollo-15": [ "N(eigen,ev,neut)" ], "groter": [ "Adj(attr,vergr,onverv)" ], "geschonken": [ "V(trans,verl_dw,onverv)" ], "Mooie": [ "Adj(attr,stell,verv_neut)" ], "racerij": [ "N(soort,ev,neut)" ], "Net": [ "Adv(gew,geen_func,stell,onverv)" ], "New": [ "N(eigen,ev,neut)" ], "indrukken": [ "N(soort,mv,neut)" ], "verdrietige": [ "Adj(attr,stell,verv_neut)", "Adj(zelfst,stell,verv_neut)" ], "15,6": [ "Num(hoofd,bep,attr,onverv)" ], "vlug": [ "Adj(adv,stell,onverv)" ], "maandblad": [ "N(soort,ev,neut)" ], "cadeau": [ "N(soort,ev,neut)" ], "daartegen": [ "Adv(pron,aanw)" ], "motto": [ "N(soort,ev,neut)" ], "glorie": [ "N(soort,ev,neut)" ], "leerling": [ "N(soort,ev,neut)" ], "oplichtten": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "toevertrouwen": [ "V(trans,inf)" ], "druipt": [ "V(intrans,ott,3,ev)" ], "noodzakelijk": [ "Adj(attr,stell,onverv)" ], "deelnemen": [ "V(intrans,inf)" ], "autoriteit": [ "N(soort,ev,neut)" ], "vervalt": [ "V(intrans,ott,3,ev)" ], "deelnemer": [ "N(soort,ev,neut)" ], "tevreden": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "Horse": [ "N(eigen,ev,neut)" ], "Bijna": [ "Adv(gew,geen_func,stell,onverv)" ], "wakkere": [ "Adj(attr,stell,verv_neut)" ], "inkomen": [ "N(soort,ev,neut)" ], "dwaze": [ "Adj(attr,stell,verv_neut)" ], "belangrijkste": [ "Adj(attr,overtr,verv_neut)", "Adj(zelfst,overtr,verv_neut)" ], "straf": [ "N(soort,ev,neut)" ], "levensvatbaar": [ "Adj(attr,stell,onverv)" ], "enthousiaste": [ "Adj(attr,stell,verv_neut)" ], "champignons": [ "N(soort,mv,neut)" ], "strak": [ "Adj(adv,stell,onverv)" ], "Aischylos": [ "N(eigen,ev,neut)" ], "minimumcijfers": [ "N(soort,mv,neut)" ], "smaad": [ "N(soort,ev,neut)" ], "ambitie": [ "N(soort,ev,neut)" ], "luidruchtig": [ "Adj(adv,stell,onverv)" ], "Kralingen": [ "N(eigen,ev,neut)" ], "luxe": [ "Adj(attr,stell,onverv)" ], "goden": [ "N(soort,mv,neut)" ], "smaak": [ "N(soort,ev,neut)" ], "acrobatische": [ "Adj(attr,stell,verv_neut)" ], "pleegt": [ "V(trans,ott,3,ev)" ], "gedrongen": [ "V(intrans,verl_dw,onverv)" ], "Hille": [ "N(eigen,ev,neut)" ], "meneer": [ "N(soort,ev,neut)" ], "verwording": [ "N(soort,ev,neut)" ], "Drenthe": [ "N(eigen,ev,neut)" ], "spastici": [ "N(soort,mv,neut)" ], "frieten": [ "N(soort,mv,neut)" ], "ouderwets": [ "Adj(attr,stell,onverv)" ], "sudderde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "heuvels": [ "N(soort,mv,neut)" ], "loopt": [ "V(intrans,ott,3,ev)", "V(trans,ott,2,ev)", "V(trans,ott,3,ev)" ], "toegaat": [ "V(intrans,ott,3,ev)" ], "fotosafari's": [ "N(soort,mv,neut)" ], "beloerd": [ "V(trans,verl_dw,onverv)" ], "Fuck": [ "Misc(vreemd)" ], "autopedjes": [ "N(soort,mv,neut)" ], "gedateerd": [ "V(trans,verl_dw,onverv)" ], "Notre": [ "N(eigen,ev,neut)" ], "harder": [ "Adj(attr,vergr,onverv)", "Adj(adv,vergr,onverv)" ], "Draai": [ "V(trans,ott,2,ev)" ], "beschaving": [ "N(soort,ev,neut)" ], "actiestrategie": [ "N(soort,ev,neut)" ], "uitgaven": [ "N(soort,mv,neut)" ], "Amstelveen": [ "N(eigen,ev,neut)" ], "onderschat": [ "V(trans,verl_dw,onverv)" ], "zag": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(hulp,ovt,1_of_2_of_3,ev)" ], "wonen": [ "V(intrans,inf)", "V(intrans,ott,1_of_2_of_3,mv)", "V(trans,inf)" ], "Kopenhagen": [ "N(eigen,ev,neut)" ], "Soft": [ "N(eigen,ev,neut)" ], "Philip": [ "N(eigen,ev,neut)" ], "zak": [ "N(soort,ev,neut)" ], "zal": [ "V(hulp,ott,3,ev)", "V(hulp,ott,1,ev)" ], "Fleet": [ "N(eigen,ev,neut)" ], "student": [ "N(soort,ev,neut)" ], "zat": [ "V(intrans,ovt,1_of_2_of_3,ev)", "V(hulp,ovt,1_of_2_of_3,ev)" ], "pluchen": [ "Adj(attr,stell,onverv)" ], "kok": [ "N(soort,ev,neut)" ], "takken": [ "N(soort,mv,neut)" ], "dikte": [ "N(soort,ev,neut)" ], "kom": [ "V(intrans,ott,1,ev)", "N(soort,ev,neut)", "V(hulp_of_kopp,ott,2,ev)", "V(intrans,imp)" ], "kon": [ "V(hulp,ovt,1_of_2_of_3,ev)", "V(trans,ovt,1_of_2_of_3,ev)", "V(intrans,ovt,1_of_2_of_3,ev)" ], "kop": [ "N(soort,ev,neut)" ], "beurzen": [ "N(soort,mv,neut)" ], "kou": [ "N(soort,ev,neut)" ], "David": [ "N(eigen,ev,neut)" ], "straalt": [ "V(trans,ott,3,ev)" ], "Prager": [ "N(eigen,ev,neut)" ], "Overveens": [ "Adj(attr,stell,onverv)" ], "James-Bond-film": [ "N(soort,ev,neut)" ], "afgeraden": [ "V(trans,verl_dw,onverv)" ], "verlieten": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "Hans-Georg": [ "N(eigen,ev,neut)" ], "woonark": [ "N(soort,ev,neut)" ], "nadruk": [ "N(soort,ev,neut)" ], "Vorig": [ "Adj(attr,stell,onverv)" ], "fors": [ "Adj(adv,stell,onverv)" ], "Neem": [ "V(trans,imp)" ], "vader": [ "N(soort,ev,neut)" ], "krepeerden": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "teentjes": [ "N(soort,mv,neut)" ], "begripsverklaring": [ "N(soort,ev,neut)" ], "wereldje": [ "N(soort,ev,neut)" ], "steekt": [ "V(intrans,ott,3,ev)", "V(trans,ott,3,ev)" ], "sociaal": [ "Adj(adv,stell,onverv)" ], "inherente": [ "Adj(attr,stell,verv_neut)" ], "attracties": [ "N(soort,mv,neut)" ], "verkeerde": [ "Adj(attr,stell,verv_neut)" ], "dubbelgevouwen": [ "V(trans,verl_dw,onverv)" ], "relatie": [ "N(soort,ev,neut)" ], "inpassen": [ "V(trans,inf)" ], "libretto": [ "N(soort,ev,neut)" ], "beslist": [ "Adj(adv,stell,onverv)", "Adv(gew,geen_func,stell,onverv)" ], "zondag": [ "N(eigen,ev,neut)" ], "hoofdrollen": [ "N(soort,mv,neut)" ], "alledag": [ "N(soort,ev,neut)" ], "centimeter": [ "N(soort,ev,neut)" ], "genoeg": [ "Pron(onbep,neut,attr)", "Pron(onbep,neut,zelfst)" ], "duivelbezweringsmaskers": [ "N(soort,mv,neut)" ], "president": [ "N(soort,ev,neut)" ], "vanille-ijs": [ "N(soort,ev,neut)" ], "Behrendt": [ "N(eigen,ev,neut)" ], "achteruit": [ "Adv(gew,geen_func,stell,onverv)" ], "Reiche": [ "N(eigen,ev,neut)" ], "steelt": [ "V(trans,ott,3,ev)" ], "evenredigheid": [ "N(soort,ev,neut)" ], "liefde": [ "N(soort,ev,neut)" ], "lapjes": [ "N(soort,mv,neut)" ], "Bernard": [ "N(eigen,ev,neut)" ], "haaknaald": [ "N(soort,ev,neut)" ], "huisbaas": [ "N(soort,ev,neut)" ], "opluchting": [ "N(soort,ev,neut)" ], "maakt": [ "V(trans,ott,3,ev)", "V(trans,imp)", "V(trans,ott,2,ev)" ], "kater": [ "N(soort,ev,neut)" ], "Hallstein": [ "N(eigen,ev,neut)" ], "bikkelharde": [ "Adj(attr,stell,verv_neut)" ], "foto": [ "N(soort,ev,neut)" ], "ambivalentie": [ "N(soort,ev,neut)" ], "alvast": [ "Adv(gew,geen_func,stell,onverv)" ], "idee": [ "N(soort,ev,neut)" ], "gelooide": [ "V(trans,verl_dw,verv_neut)" ], "technisch": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "antwoordde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "boven": [ "Prep(voor)", "Adv(gew,geen_func,stell,onverv)", "Adv(deel_v)" ], "flatneurose": [ "N(soort,ev,neut)" ], "dringen": [ "V(intrans,inf)" ], "V.V.V.": [ "N(soort,ev,neut)" ], "idem": [ "Adv(gew,geen_func,stell,onverv)" ], "helder": [ "Adj(attr,stell,onverv)" ], "curieus": [ "Adj(attr,stell,onverv)" ], "bikini": [ "N(soort,ev,neut)" ], "mogelijk": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "aangetrokken": [ "V(trans,verl_dw,onverv)" ], "malaise": [ "N(soort,ev,neut)" ], "hierdoor": [ "Adv(pron,aanw)" ], "Buiten": [ "Adv(gew,geen_func,stell,onverv)" ], "Mensen": [ "N(soort,mv,neut)" ], "toesprak": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "vernederingen": [ "N(soort,mv,neut)" ], "aten": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "heeft-ie": [ "V(hulp_of_kopp,ott,3,ev)" ], "trekdieren": [ "N(soort,mv,neut)" ], "zee": [ "N(soort,ev,neut)" ], "Aken": [ "N(eigen,ev,neut)" ], "zeg": [ "V(trans,ott,1,ev)", "V(trans,imp)", "V(trans,ott,2,ev)" ], "brochures": [ "N(soort,mv,neut)" ], "zei": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "dinkie-toy": [ "N(soort,ev,neut)" ], "doekjes": [ "N(soort,mv,neut)" ], "prijzen": [ "N(soort,mv,neut)", "V(trans,inf)" ], "fout": [ "N(soort,ev,neut)", "Adj(attr,stell,onverv)" ], "eierroof": [ "N(soort,ev,neut)" ], "Vreedzame": [ "Adj(attr,stell,verv_neut)" ], "werklozen": [ "Adj(zelfst,stell,verv_mv)" ], "zes": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "schoolproblemen": [ "N(soort,mv,neut)" ], "zet": [ "V(trans,ott,3,ev)", "V(refl,ott,3,ev)", "V(refl,imp)", "V(trans,imp)" ], "minst": [ "Num(hoofd,onbep,zelfst,overtr,onverv)" ], "22-jarige": [ "Adj(attr,stell,verv_neut)" ], "snikkend": [ "V(intrans,teg_dw,onverv)" ], "omgekeerd": [ "V(trans,verl_dw,onverv)" ], "besloten": [ "V(trans,ovt,1_of_2_of_3,mv)", "V(trans,verl_dw,onverv)" ], "Mick": [ "N(eigen,ev,neut)" ], "NOSstudio": [ "N(soort,ev,neut)" ], "psychische": [ "Adj(attr,stell,verv_neut)" ], "glimlachte": [ "V(intrans,ovt,1_of_2_of_3,ev)", "V(trans,ovt,1_of_2_of_3,ev)" ], "jongeman": [ "N(soort,ev,neut)" ], "durven": [ "V(hulp,inf)" ], "altijd": [ "Adv(gew,aanw)" ], "maand": [ "N(soort,ev,neut)" ], "opbloeiende": [ "V(intrans,teg_dw,verv_neut)" ], "verduidelijkt": [ "V(trans,verl_dw,onverv)" ], "brievenbus": [ "N(soort,ev,neut)" ], "FIKTE": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "oorlogsspelletjes": [ "N(soort,mv,neut)" ], "inspraak": [ "N(soort,ev,neut)" ], "doormaakt": [ "V(trans,ott,3,ev)" ], "zwemmen": [ "V(intrans,inf)" ], "betekenissen": [ "N(soort,mv,neut)" ], "erboven": [ "Adv(pron,onbep)" ], "zwaaide": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "zoveelste": [ "Num(rang,onbep,attr,onverv)" ], "dames": [ "N(soort,mv,neut)" ], "beschikten": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "kleinbehuisd": [ "Adj(attr,stell,onverv)" ], "opgesmukt": [ "V(trans,verl_dw,onverv)" ], "kinderbescherming": [ "N(soort,ev,neut)" ], "rennen": [ "V(intrans,inf)" ], "Nog": [ "Adv(gew,geen_func,stell,onverv)" ], "tragedie": [ "N(soort,ev,neut)" ], "zonder": [ "Prep(voor)", "Adv(gew,geen_func,stell,onverv)", "Conj(onder,met_inf)" ], "kul": [ "N(soort,ev,neut)" ], "gekrast": [ "V(trans,verl_dw,onverv)" ], "kun": [ "V(hulp,ott,2,ev)", "V(intrans,ott,2,ev)", "V(trans,ott,2,ev)" ], "ikoon": [ "N(soort,ev,neut)" ], "tweetal": [ "N(soort,ev,neut)" ], "shock-effecten": [ "N(soort,mv,neut)" ], "Nou": [ "Adv(gew,aanw)", "Int" ], "Edvard": [ "N(eigen,ev,neut)" ], "Berlijn": [ "N(eigen,ev,neut)" ], "verzorg": [ "V(trans,imp)" ], "steevast": [ "Adj(adv,stell,onverv)", "Adv(gew,geen_func,stell,onverv)" ], "puin": [ "N(soort,ev,neut)" ], "schoolmeester": [ "N(soort,ev,neut)" ], "reageert": [ "V(trans,ott,3,ev)" ], "MIDEM": [ "N(eigen,ev,neut)" ], "Soms": [ "Adv(gew,aanw)" ], "Miep": [ "N(eigen,ev,neut)" ], "teruggesnoeid": [ "V(trans,verl_dw,onverv)" ], "walgelijke": [ "Adj(attr,stell,verv_neut)" ], "Mies": [ "N(eigen,ev,neut)" ], "NIET": [ "Adv(gew,geen_func,stell,onverv)" ], "chirurg": [ "N(soort,ev,neut)" ], "Laten": [ "V(hulp,ott,1_of_2_of_3,mv)", "V(hulp,inf)" ], "primitieve": [ "Adj(attr,stell,verv_neut)" ], "pitten": [ "N(soort,mv,neut)" ], "ingrijpend": [ "V(intrans,teg_dw,onverv)" ], "bedacht": [ "V(trans,verl_dw,onverv)", "V(refl,ovt,1_of_2_of_3,ev)", "V(trans,ovt,1_of_2_of_3,ev)" ], "Later": [ "Adj(adv,vergr,onverv)" ], "waarnaar": [ "Adv(pron,vrag)" ], "financieringsmaatschappijen": [ "N(soort,mv,neut)" ], "Song": [ "N(eigen,ev,neut)" ], "absolute": [ "Adj(attr,stell,verv_neut)" ], "ontroering": [ "N(soort,ev,neut)" ], "aankomen": [ "V(intrans,inf)" ], "zie": [ "V(trans,ott,1,ev)", "V(intrans,ott,1,ev)", "V(trans,ott,2,ev)" ], "kanalen": [ "N(soort,mv,neut)" ], "Probeer": [ "V(hulp,imp)" ], "aanleiding": [ "N(soort,ev,neut)" ], "verdrongen": [ "V(trans,verl_dw,onverv)" ], "Terwijl": [ "Conj(onder,met_fin)" ], "Duitsland": [ "N(eigen,ev,neut)" ], "recepties": [ "N(soort,mv,neut)" ], "zij": [ "Pron(per,3,ev_of_mv,nom)", "V(hulp_of_kopp,conj)" ], "voorzetten": [ "V(trans,inf)" ], "Carolina": [ "N(eigen,ev,neut)" ], "blindelings": [ "Adj(adv,stell,onverv)" ], "zin": [ "N(soort,ev,neut)" ], "keihard": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "reaktiemogelijkheden": [ "N(soort,mv,neut)" ], "voorbeeld": [ "N(soort,ev,neut)" ], "warenhuizen": [ "N(soort,mv,neut)" ], "afgunst": [ "N(soort,ev,neut)" ], "zit": [ "V(intrans,ott,3,ev)", "V(intrans,ott,1,ev)", "V(trans,ott,3,ev)", "V(hulp,ott,3,ev)", "V(intrans,ott,2,ev)" ], "pop-art": [ "N(soort,ev,neut)" ], "ingenieurs": [ "N(soort,mv,neut)" ], "cotelet": [ "N(soort,ev,neut)" ], "wisselwerking": [ "N(soort,ev,neut)" ], "nalatigheid": [ "N(soort,ev,neut)" ], "Gustav": [ "N(eigen,ev,neut)" ], "voordelige": [ "Adj(attr,stell,verv_neut)" ], "vederachtige": [ "Adj(attr,stell,verv_neut)" ], "revolver": [ "N(soort,ev,neut)" ], "Harris": [ "N(eigen,ev,neut)" ], "ludieke": [ "Adj(attr,stell,verv_neut)" ], "drugs": [ "N(soort,mv,neut)" ], "resultaat": [ "N(soort,ev,neut)" ], "waaronder": [ "Adv(pron,vrag)" ], "nette": [ "Adj(attr,stell,verv_neut)" ], "aanrijden": [ "V(intrans,inf)" ], "Enterprises": [ "N(eigen,ev,neut)" ], "Edmund": [ "N(eigen,ev,neut)" ], "behoorlijke": [ "Adj(attr,stell,verv_neut)" ], "absoluut": [ "Adj(adv,stell,onverv)" ], "geheimzinnige": [ "Adj(attr,stell,verv_neut)" ], "mislukking": [ "N(soort,ev,neut)" ], "geetst": [ "V(trans,verl_dw,onverv)" ], "Rekelsvrouwen": [ "N(soort,mv,neut)" ], "hobby-set-dozen": [ "N(soort,mv,neut)" ], "intussen": [ "Adv(gew,geen_func,stell,onverv)" ], "casual": [ "Adj(attr,stell,onverv)" ], "federale": [ "Adj(attr,stell,verv_neut)" ], "scherpe": [ "Adj(attr,stell,verv_neut)" ], "bijzonder": [ "Adj(adv,stell,onverv)", "N(soort,ev,neut)" ], "Ahead-Haarlem": [ "N(eigen,ev,neut)" ], "genezing": [ "N(soort,ev,neut)" ], "moeder": [ "N(soort,ev,neut)" ], "nariep": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Zesde": [ "N(eigen,ev,neut)" ], "opgeluisterd": [ "V(trans,verl_dw,onverv)" ], "gevierd": [ "V(trans,verl_dw,onverv)" ], "maart": [ "N(eigen,ev,neut)" ], "destijds": [ "Adv(gew,aanw)" ], "Gesloten": [ "V(trans,verl_dw,onverv)" ], "georienteerd": [ "V(trans,verl_dw,onverv)" ], "gekomen": [ "V(intrans,verl_dw,onverv)" ], "boycotten": [ "V(trans,inf)" ], "ruime": [ "Adj(attr,stell,verv_neut)" ], "bouwstop": [ "N(soort,ev,neut)" ], "leggen": [ "V(trans,inf)", "V(refl,inf)" ], "overschrijden": [ "V(trans,inf)" ], "Staten": [ "N(eigen,mv,neut)" ], "spraakvermogen": [ "N(soort,ev,neut)" ], "armoede": [ "N(eigen,ev,neut)", "N(soort,ev,neut)" ], "overgevlogen": [ "V(intrans,verl_dw,onverv)" ], "ouderworden": [ "V(intrans,inf,subst)" ], "geconcentreerd": [ "V(trans,verl_dw,onverv)" ], "bezitlozen": [ "Adj(zelfst,stell,verv_mv)" ], "heden": [ "N(soort,ev,neut)", "N(eigen,ev,neut)" ], "vrijdagochtend": [ "N(soort,ev,neut)" ], "doorschijnend": [ "Adj(attr,stell,onverv)" ], "chains": [ "N(soort,mv,neut)" ], "ruine": [ "N(soort,ev,neut)" ], "gesubsidieerd": [ "V(trans,verl_dw,onverv)" ], "uitoefenen": [ "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "voorbehoedmiddelen": [ "N(soort,mv,neut)" ], "kinderkopje": [ "N(soort,ev,neut)" ], "glas": [ "N(soort,ev,neut)" ], "broekpak": [ "N(soort,ev,neut)" ], "briesje": [ "N(soort,ev,neut)" ], "grotere": [ "Adj(attr,vergr,verv_neut)" ], "uiterlijke": [ "Adj(zelfst,stell,verv_neut)" ], "tjalken": [ "N(soort,mv,neut)" ], "Castle": [ "N(eigen,ev,neut)" ], "gekleurd": [ "V(trans,verl_dw,onverv)" ], "vernemen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "ogenschijnlijk": [ "Adj(adv,stell,onverv)" ], "meesters": [ "N(soort,mv,neut)" ], "beloofde": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(trans,verl_dw,verv_neut)" ], "punt": [ "N(soort,ev,neut)" ], "onrechtvaardig": [ "Adj(adv,stell,onverv)" ], "Mijn": [ "Pron(bez,1,ev,neut,attr)" ], "rechterarm": [ "N(soort,ev,neut)" ], "evenzo": [ "Adv(gew,geen_func,stell,onverv)" ], "vinden": [ "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "Visserijstr.": [ "N(eigen,ev,neut)" ], "afbrak": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "volhouden": [ "V(trans,inf)" ], "polysonore": [ "Adj(attr,stell,verv_neut)" ], "wandelde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "natuurkunde": [ "N(soort,ev,neut)" ], "accepteerde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "kwijt": [ "Adj(attr,stell,onverv)" ], "enzovoorts": [ "Adv(gew,geen_func,stell,onverv)" ], "sociale": [ "Adj(attr,stell,verv_neut)" ], "sjaaltjes": [ "N(soort,mv,neut)" ], "entree": [ "N(soort,ev,neut)" ], "voila": [ "Misc(vreemd)" ], "afscheid": [ "N(soort,ev,neut)" ], "registratie": [ "N(soort,ev,neut)" ], "ongehuwde": [ "Adj(attr,stell,verv_neut)" ], "Pierre": [ "N(eigen,ev,neut)" ], "gespuwd": [ "V(trans,verl_dw,onverv)" ], "rechten": [ "N(soort,mv,neut)" ], "Mike": [ "N(eigen,ev,neut)" ], "drukt": [ "V(trans,ott,3,ev)" ], "26jarige": [ "Adj(attr,stell,verv_neut)" ], "jaarlijks": [ "Adj(adv,stell,onverv)" ], "rechter": [ "N(soort,ev,neut)", "Adj(attr,vergr,onverv)" ], "wijd": [ "Adj(adv,stell,onverv)" ], "eerlijk": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "trokken": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "moeilijk": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "wijn": [ "N(soort,ev,neut)" ], "sigarenkistjes": [ "N(soort,mv,neut)" ], "Nonnetjes": [ "N(eigen,ev,gen)" ], "bereiken": [ "V(trans,inf)" ], "Uiterlijk": [ "Adj(adv,stell,onverv)" ], "wandelen": [ "V(intrans,inf)" ], "louter": [ "Adj(adv,stell,onverv)" ], "OVS": [ "N(eigen,ev,neut)" ], "wasmachine": [ "N(soort,ev,neut)" ], "Russische": [ "Adj(attr,stell,verv_neut)" ], "ambachtsman": [ "N(soort,ev,neut)" ], "cruisen": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "bijtgrage": [ "Adj(attr,stell,verv_neut)" ], "levensgezel": [ "N(soort,ev,neut)" ], "cruises": [ "N(soort,mv,neut)" ], "scherts": [ "V(intrans,ott,1,ev)" ], "woningnood": [ "N(soort,ev,neut)" ], "Ferree": [ "N(eigen,ev,neut)" ], "laboratoriumwerk": [ "N(soort,ev,neut)" ], "skicentrum": [ "N(soort,ev,neut)" ], "zon": [ "N(soort,ev,neut)" ], "Evenaar": [ "N(soort,ev,neut)" ], "Hangt": [ "V(intrans,ott,3,ev)" ], "overspannen": [ "Adj(attr,stell,onverv)" ], "paraplu": [ "N(soort,ev,neut)" ], "ongevallenverzekeringen": [ "N(soort,mv,neut)" ], "uitermate": [ "Adv(gew,geen_func,stell,onverv)", "Adj(attr,stell,verv_neut)" ], "zou": [ "V(hulp,ovt,1_of_2_of_3,ev)" ], "skien": [ "V(intrans,inf)" ], "Beuningen": [ "N(eigen,ev,neut)" ], "ambulance": [ "N(soort,ev,neut)" ], "kruizemunt": [ "N(soort,ev,neut)" ], "kleurenharmonieen": [ "N(soort,mv,neut)" ], "veronderstelling": [ "N(soort,ev,neut)" ], "welgemikte": [ "Adj(attr,stell,verv_neut)" ], "Engeland": [ "N(eigen,ev,neut)" ], "verkocht": [ "V(trans,verl_dw,onverv)", "V(trans,ovt,1_of_2_of_3,ev)" ], "Driehonderd": [ "Num(hoofd,bep,attr,onverv)" ], "gedaald": [ "V(intrans,verl_dw,onverv)" ], "Escoffier": [ "N(eigen,ev,neut)" ], "bekritiseerde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "openluchtmuseum": [ "N(soort,ev,neut)" ], "achterblijft": [ "V(intrans,ott,3,ev)" ], "D'66": [ "N(eigen,ev,neut)" ], "gereputeerde": [ "Adj(attr,stell,verv_neut)" ], "wilt": [ "V(hulp,ott,2,ev)", "V(trans,ott,2,ev)", "V(intrans,ott,2,ev)" ], "Naast": [ "Prep(voor)" ], "beefden": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "Mina": [ "N(eigen,ev,neut)" ], "overwegen": [ "V(trans,inf)" ], "toegebeten": [ "V(trans,verl_dw,onverv)" ], "Shappy": [ "N(eigen,ev,neut)" ], "officieren": [ "N(soort,mv,neut)" ], "Uitgekiend": [ "V(trans,verl_dw,onverv)" ], "aandeel": [ "N(soort,ev,neut)" ], "smart": [ "N(soort,ev,neut)" ], "onkosten": [ "N(soort,mv,neut)" ], "Russel": [ "N(eigen,ev,neut)" ], "verfstof": [ "N(soort,ev,neut)" ], "Bobath": [ "N(eigen,ev,neut)" ], "hop-d'r-op": [ "Adv(gew,geen_func,stell,onverv)" ], "manschappen": [ "N(soort,mv,neut)" ], "Russen": [ "N(soort,mv,neut)" ], "vijandigheid": [ "N(soort,ev,neut)" ], "waarmede": [ "Adv(pron,vrag)" ], "aanwezig": [ "Adj(attr,stell,onverv)" ], "samen-zijn": [ "V(intrans,inf,subst)" ], "diamanten": [ "N(soort,mv,neut)" ], "verharder": [ "N(soort,ev,neut)" ], "Kortom": [ "Adv(gew,geen_func,stell,onverv)", "Int" ], "midimode": [ "N(soort,ev,neut)" ], "teruggebracht": [ "V(trans,verl_dw,onverv)" ], "Cucumber": [ "N(eigen,ev,neut)" ], "-onderzoek": [ "N(soort,ev,neut)" ], "fans": [ "N(soort,mv,neut)" ], "olielampje": [ "N(soort,ev,neut)" ], "daarboven": [ "Adv(pron,aanw)" ], "gabardine": [ "N(soort,ev,neut)" ], "mannen": [ "N(soort,mv,neut)" ], "Bondserie": [ "N(soort,ev,neut)" ], "geringe": [ "Adj(attr,stell,verv_neut)" ], "helemaal": [ "Adv(gew,geen_func,stell,onverv)" ], "namelijk": [ "Adv(gew,geen_func,stell,onverv)" ], "uitwissen": [ "V(trans,inf)" ], "wind": [ "N(soort,ev,neut)" ], "Spartaan": [ "N(soort,ev,neut)" ], "Centraal": [ "Adj(attr,stell,onverv)" ], "inspirerende": [ "V(intrans,teg_dw,verv_neut)" ], "opstellen": [ "V(refl,ott,1_of_2_of_3,mv)" ], "Bovendien": [ "Adv(gew,geen_func,stell,onverv)" ], "ondergebracht": [ "V(trans,verl_dw,onverv)" ], "deugdelijk": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "voorhand": [ "N(soort,ev,neut)" ], "Eerlijkheidshalve": [ "Adv(gew,geen_func,stell,onverv)" ], "gingen": [ "V(intrans,ovt,1_of_2_of_3,mv)", "V(hulp,ovt,1_of_2_of_3,mv)", "V(trans,ovt,1_of_2_of_3,mv)" ], "verre": [ "Adj(attr,stell,verv_neut)" ], "fotoserie": [ "N(soort,ev,neut)" ], "daargelaten": [ "Prep(achter)" ], "toeneemt": [ "V(intrans,ott,3,ev)" ], "gereageerd": [ "V(intrans,verl_dw,onverv)" ], "afliep": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "gezamenlijk": [ "Adj(adv,stell,onverv)" ], "OZZ": [ "N(soort,ev,neut)" ], "uitgeprobeerd": [ "V(trans,verl_dw,onverv)" ], "Wilgen": [ "N(eigen,ev,neut)" ], "benadrukken": [ "V(trans,inf)" ], "bedaren": [ "V(intrans,inf)" ], "liefst": [ "Adj(adv,vergr,onverv)" ], "Bedoel": [ "V(intrans,ott,2,ev)" ], "gezegden": [ "N(soort,mv,neut)" ], "Snowdon": [ "N(eigen,ev,neut)" ], "stervende": [ "V(intrans,teg_dw,verv_neut)" ], "onderbreken": [ "V(trans,inf)" ], "ongeorganiseerde": [ "Adj(attr,stell,verv_neut)" ], "verse": [ "Adj(attr,stell,verv_neut)" ], "opeengeperste": [ "V(trans,verl_dw,verv_neut)" ], "kwaadheid": [ "N(soort,ev,neut)" ], "verhalen": [ "N(soort,mv,neut)", "V(trans,inf)" ], "vluggertje": [ "N(soort,ev,neut)" ], "niets": [ "Pron(onbep,neut,zelfst)" ], "puur": [ "Adj(adv,stell,onverv)" ], "mrs.": [ "N(eigen,ev,neut)" ], "gezorgd": [ "V(trans,verl_dw,onverv)" ], "ramen": [ "N(soort,mv,neut)" ], "operatie": [ "N(soort,ev,neut)" ], "diep": [ "Adj(adv,stell,onverv)" ], "getrouwd": [ "V(intrans,verl_dw,onverv)" ], "verhinderd": [ "V(trans,verl_dw,onverv)" ], "lag": [ "V(intrans,ovt,1_of_2_of_3,ev)", "V(hulp,ovt,1_of_2_of_3,ev)" ], "verte": [ "N(soort,ev,neut)" ], "tutoyerend": [ "V(intrans,teg_dw,onverv)" ], "veroorzakende": [ "V(trans,teg_dw,verv_neut)" ], "weggegaan": [ "V(intrans,verl_dw,onverv)" ], "gedokterd": [ "V(intrans,verl_dw,onverv)" ], "afgeslagen": [ "V(trans,verl_dw,onverv)" ], "vanuit": [ "Prep(voor)" ], "Spanje": [ "N(eigen,ev,neut)" ], "zelden": [ "Adv(gew,geen_func,stell,onverv)" ], "lap": [ "N(soort,ev,neut)" ], "opvoeding": [ "N(soort,ev,neut)" ], "ondeugende": [ "Adj(attr,stell,verv_neut)" ], "las": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "eindspurt": [ "N(soort,ev,neut)" ], "rondbuig-": [ "N(soort,ev,neut)" ], "jong": [ "Adj(attr,stell,onverv)" ], "pikken": [ "V(trans,ott,1_of_2_of_3,mv)" ], "beoogde": [ "V(trans,verl_dw,verv_neut)" ], "nieuw": [ "Adj(attr,stell,onverv)" ], "verdeeld": [ "V(trans,verl_dw,onverv)" ], "nervositeit": [ "N(soort,ev,neut)" ], "piano": [ "N(soort,ev,neut)" ], "volzinnen": [ "N(soort,mv,neut)" ], "zus": [ "N(soort,ev,neut)" ], "geconfronteerd": [ "V(trans,verl_dw,onverv)" ], "eindigden": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "17.000": [ "Num(hoofd,bep,attr,onverv)" ], "recorder": [ "N(soort,ev,neut)" ], "aanpakken": [ "V(trans,inf)" ], "verdeelt": [ "V(trans,ott,3,ev)" ], "vergaat": [ "V(intrans,ott,3,ev)" ], "schijnheiligheid": [ "N(soort,ev,neut)" ], "pittige": [ "Adj(attr,stell,verv_neut)" ], "sinaasappelsap": [ "N(soort,ev,neut)" ], "kermis": [ "N(soort,ev,neut)" ], "aceton": [ "N(soort,ev,neut)" ], "jood": [ "N(soort,ev,neut)" ], "buikwand": [ "N(soort,ev,neut)" ], "daarbinnen": [ "Adv(pron,aanw)" ], "autoritaire": [ "Adj(attr,stell,verv_neut)" ], "lopen": [ "V(intrans,inf)", "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)", "V(hulp,inf)", "V(intrans,ott,1_of_2_of_3,mv)" ], "Bescherming": [ "N(eigen,ev,neut)" ], "stijgende": [ "V(intrans,teg_dw,verv_neut)" ], "wandkleed": [ "N(soort,ev,neut)" ], "conflict": [ "N(soort,ev,neut)" ], "Vanaf": [ "Prep(voor)" ], "overal": [ "Adv(gew,onbep)" ], "Miss": [ "N(soort,ev,neut)" ], "Azie": [ "N(eigen,ev,neut)" ], "tenminste": [ "Adv(gew,geen_func,stell,onverv)" ], "formele": [ "Adj(attr,stell,verv_neut)" ], "mindere": [ "Num(hoofd,onbep,attr,vergr,verv_neut)" ], "weelderige": [ "Adj(attr,stell,verv_neut)" ], "geuren": [ "N(soort,mv,neut)" ], "combineren": [ "V(trans,inf)" ], "gulden": [ "N(soort,ev,neut)" ], "onechte": [ "Adj(attr,stell,verv_neut)" ], "meestal": [ "Adv(gew,geen_func,stell,onverv)" ], "portret": [ "N(soort,ev,neut)" ], "blijkbaar": [ "Adv(gew,geen_func,stell,onverv)" ], "lelijke": [ "Adj(attr,stell,verv_neut)" ], "slimheid": [ "N(soort,ev,neut)" ], "wegliet": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "roadmanager": [ "N(soort,ev,neut)" ], "talrijk": [ "Adj(attr,stell,onverv)" ], "melkmannen": [ "N(soort,mv,neut)" ], "Verandering": [ "N(soort,ev,neut)" ], "eend": [ "N(soort,ev,neut)" ], "eene": [ "Pron(onbep,neut,attr)" ], "aankomst": [ "N(soort,ev,neut)" ], "Breton": [ "N(eigen,ev,neut)" ], "overwinning": [ "N(soort,ev,neut)" ], "huizen": [ "N(soort,mv,neut)" ], "spelletjes": [ "N(soort,mv,neut)" ], "gemerkt": [ "V(trans,verl_dw,onverv)" ], "huizes": [ "N(soort,ev,gen)" ], "ondertitel": [ "N(soort,ev,neut)" ], "beginnen": [ "V(intrans,inf)", "V(trans,ott,1_of_2_of_3,mv)", "V(trans,inf)", "V(intrans,ott,1_of_2_of_3,mv)", "V(hulp,ott,1_of_2_of_3,mv)" ], "eens": [ "Adv(gew,geen_func,stell,onverv)", "Adj(attr,stell,onverv)" ], "middelmatige": [ "Adj(attr,stell,verv_neut)" ], "wist": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(hulp,ovt,1_of_2_of_3,ev)" ], "Verkeer": [ "N(eigen,ev,neut)" ], "structuur": [ "N(soort,ev,neut)" ], "gesmoorde": [ "V(trans,verl_dw,verv_neut)" ], "tube": [ "N(soort,ev,neut)" ], "erotisch": [ "Adj(attr,stell,onverv)" ], "interessanter": [ "Adj(attr,vergr,onverv)" ], "etc.": [ "Adv(gew,geen_func,stell,onverv)" ], "uitgever": [ "N(soort,ev,neut)" ], "Tower": [ "N(eigen,ev,neut)" ], "Snoeshaan": [ "N(eigen,ev,neut)" ], "deskundigen": [ "Adj(zelfst,stell,verv_mv)" ], "werkploeg": [ "N(soort,ev,neut)" ], "ALS": [ "Conj(onder,met_fin)" ], "pratend": [ "V(intrans,teg_dw,onverv)" ], "wisselvallige": [ "Adj(attr,stell,verv_neut)" ], "kleurenfilms": [ "N(soort,mv,neut)" ], "drentelden": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "Meneer": [ "N(soort,ev,neut)" ], "vervaardigd": [ "V(trans,verl_dw,onverv)" ], "verzekeringstarief": [ "N(soort,ev,neut)" ], "aflatende": [ "V(intrans,teg_dw,verv_neut)" ], "gekrepeerd": [ "V(trans,verl_dw,onverv)" ], "wederzijds": [ "Adj(adv,stell,onverv)" ], "genieting": [ "N(soort,ev,neut)" ], "dagverblijf": [ "N(soort,ev,neut)" ], "aardig": [ "Adj(attr,stell,onverv)" ], "les": [ "N(soort,ev,neut)" ], "let": [ "V(intrans,ott,3,ev)" ], "terroriseerden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "onderrigt": [ "N(soort,ev,neut)" ], "Yves": [ "N(eigen,ev,neut)" ], "plassen": [ "N(soort,mv,neut)" ], "vergeleken": [ "V(trans,verl_dw,onverv)" ], "spasticiteit": [ "N(soort,ev,neut)" ], "dijk": [ "N(soort,ev,neut)" ], "bankreferenties": [ "N(soort,mv,neut)" ], "Square": [ "N(eigen,ev,neut)" ], "Norway": [ "N(eigen,ev,neut)" ], "afgrijselijke": [ "Adj(attr,stell,verv_neut)" ], "doorgedraaid": [ "V(trans,verl_dw,onverv)" ], "teveel": [ "Num(hoofd,onbep,zelfst,stell,onverv)" ], "popnummers": [ "N(soort,mv,neut)" ], "aanvallen": [ "N(soort,mv,neut)" ], "okay": [ "Int" ], "1-persoonskamer": [ "N(soort,ev,neut)" ], "verkrijgbaar": [ "Adj(attr,stell,onverv)" ], "leeuwenkop": [ "N(soort,ev,neut)" ], "sleur": [ "N(soort,ev,neut)" ], "uitzicht": [ "N(soort,ev,neut)" ], "particuliere": [ "Adj(attr,stell,verv_neut)" ], "opgewassen": [ "Adj(attr,stell,onverv)" ], "onjuist": [ "Adj(attr,stell,onverv)" ], "giechelden": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "dorst": [ "N(soort,ev,neut)" ], "mogelijkheid": [ "N(soort,ev,neut)" ], "onverdraaglijke": [ "Adj(attr,stell,verv_neut)" ], "plantgat": [ "N(soort,ev,neut)" ], "ANP": [ "N(eigen,ev,neut)" ], "gekwetst": [ "V(trans,verl_dw,onverv)" ], "vermoedens": [ "N(soort,mv,neut)" ], "miljard": [ "Num(hoofd,bep,attr,onverv)" ], "presidentsverkiezingen": [ "N(soort,mv,neut)" ], "meneren": [ "N(soort,mv,neut)" ], "Gray": [ "N(eigen,ev,neut)" ], "dubbel-lp": [ "N(soort,ev,neut)" ], "geurig": [ "Adj(attr,stell,onverv)" ], "resulteren": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "Evenals": [ "Conj(onder,met_fin)" ], "ziekten": [ "N(soort,mv,neut)" ], "sam-sam": [ "Adv(gew,geen_func,stell,onverv)" ], "Caecilia": [ "N(eigen,ev,neut)" ], "puberteit": [ "N(soort,ev,neut)" ], "wachten": [ "V(intrans,inf)", "V(intrans,ott,1_of_2_of_3,mv)" ], "keert": [ "V(refl,ott,3,ev)" ], "William": [ "N(eigen,ev,neut)" ], "sneden": [ "N(soort,mv,neut)" ], "doorloop": [ "N(soort,ev,neut)" ], "daartoe": [ "Adv(pron,aanw)" ], "potlood": [ "N(soort,ev,neut)" ], "prompt": [ "Adj(adv,stell,onverv)" ], "vergunning": [ "N(soort,ev,neut)" ], "vernietigd": [ "V(trans,verl_dw,onverv)" ], "Koningin": [ "N(soort,ev,neut)" ], "meesten": [ "Num(hoofd,onbep,zelfst,overtr,verv_mv)" ], "Belgische": [ "Adj(attr,stell,verv_neut)" ], "punch": [ "Misc(vreemd)" ], "nachts": [ "N(soort,ev,gen)" ], "diepzeezwemmen": [ "V(intrans,inf)" ], "meester": [ "N(soort,ev,neut)" ], "glaasje-op": [ "N(soort,ev,neut)" ], "Stadion": [ "N(soort,ev,neut)" ], "donkerblauwe": [ "Adj(attr,stell,verv_neut)" ], "roodgeschilderde": [ "Adj(attr,stell,verv_neut)" ], "verzwegen": [ "V(trans,verl_dw,onverv)" ], "vermoeden": [ "V(trans,inf)" ], "provocatus": [ "N(soort,ev,neut)" ], "onderaan": [ "Prep(voor)" ], "bekertje": [ "N(soort,ev,neut)" ], "Zondag": [ "N(eigen,ev,neut)" ], "kennen": [ "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "bleef": [ "V(hulp_of_kopp,ovt,1_of_2_of_3,ev)", "V(intrans,ovt,1_of_2_of_3,ev)" ], "rechtse": [ "Adj(attr,stell,verv_neut)" ], "jaar": [ "N(soort,ev,neut)" ], "voorspoedig": [ "Adj(adv,stell,onverv)" ], "dichtgetrokken": [ "V(trans,verl_dw,onverv)" ], "bleek": [ "V(hulp_of_kopp,ovt,1_of_2_of_3,ev)", "V(intrans,ovt,1_of_2_of_3,ev)" ], "Meestentijds": [ "Adv(gew,geen_func,stell,onverv)" ], "decormaquette": [ "N(soort,ev,neut)" ], "papier": [ "N(soort,ev,neut)" ], "eten": [ "N(soort,ev,neut)", "V(trans,ott,1_of_2_of_3,mv)", "V(intrans,inf)", "V(trans,inf)" ], "Godsnaam": [ "N(soort,ev,neut)" ], "baby-doll": [ "N(soort,ev,neut)" ], "koken": [ "V(intrans,inf)" ], "Buitenveldert-Amsterdam": [ "N(eigen,ev,neut)" ], "Rimini": [ "N(eigen,ev,neut)" ], "koket": [ "Adj(adv,stell,onverv)" ], "lid": [ "N(soort,ev,neut)" ], "Och": [ "Int" ], "jouw": [ "Pron(bez,2,ev,neut,attr)" ], "lig": [ "V(intrans,ott,1,ev)" ], "Psychiatrische": [ "Adj(attr,stell,verv_neut)" ], "Kartoffelsalat": [ "N(soort,ev,neut)" ], "motivering": [ "N(soort,ev,neut)" ], "geraakt": [ "V(hulp_of_kopp,verl_dw,onverv)", "V(trans,verl_dw,onverv)", "V(intrans,verl_dw,onverv)" ], "PCS": [ "Num(hoofd,bep,zelfst,onverv)" ], "gemeen": [ "Adj(attr,stell,onverv)" ], "triest": [ "Adj(attr,stell,onverv)" ], "pendelen": [ "V(intrans,inf)" ], "grammofoon": [ "N(soort,ev,neut)" ], "zenuwslopende": [ "Adj(attr,stell,verv_neut)" ], "elkaars": [ "Pron(rec,gen)" ], "kluivend": [ "V(intrans,teg_dw,onverv)" ], "ding": [ "N(soort,ev,neut)" ], "lering": [ "N(soort,ev,neut)" ], "zoals": [ "Conj(onder,met_fin)" ], "Rein": [ "N(eigen,ev,neut)" ], "bereikte": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "voorste": [ "Adj(attr,stell,verv_neut)" ], "kruidenboeken": [ "N(soort,mv,neut)" ], "vijftig": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "Ober": [ "N(soort,ev,neut)" ], "rustig": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "lijdt": [ "V(trans,ott,3,ev)" ], "Europa's": [ "N(eigen,ev,gen)" ], "geestdrift": [ "N(soort,ev,neut)" ], "etablissement": [ "N(soort,ev,neut)" ], "collagestijl": [ "N(soort,ev,neut)" ], "sommige": [ "Pron(onbep,neut,attr)" ], "tijdens": [ "Prep(voor)" ], "huisvrouwen": [ "N(soort,mv,neut)" ], "Opgeschrikt": [ "V(trans,verl_dw,onverv)" ], "meubelen": [ "N(soort,mv,neut)" ], "toebehoord": [ "V(intrans,verl_dw,onverv)" ], "merels": [ "N(soort,mv,neut)" ], "geknecht": [ "V(trans,verl_dw,onverv)" ], "hesje": [ "N(soort,ev,neut)" ], "koelkast": [ "N(soort,ev,neut)" ], "ARP": [ "N(eigen,ev,neut)" ], "aardbevingen": [ "N(soort,mv,neut)" ], "geringste": [ "Adj(attr,overtr,verv_neut)" ], "geraamd": [ "V(trans,verl_dw,onverv)" ], "grapje": [ "N(soort,ev,neut)" ], "vijanden": [ "N(soort,mv,neut)" ], "vaste": [ "Adj(attr,stell,verv_neut)" ], "uitbuiting": [ "N(soort,ev,neut)" ], "eengezinswoningen": [ "N(soort,mv,neut)" ], "zaken": [ "N(soort,mv,neut)" ], "gekronkelde": [ "V(intrans,verl_dw,verv_neut)" ], "meespelen": [ "V(intrans,inf)" ], "eeuw": [ "N(soort,ev,neut)" ], "boordevol": [ "Adj(attr,stell,onverv)" ], "aanwijzing": [ "N(soort,ev,neut)" ], "arbeidsveld": [ "N(soort,ev,neut)" ], "lazen": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "Altijd": [ "Adv(gew,aanw)" ], "Parool": [ "N(eigen,ev,neut)" ], "tuin": [ "N(soort,ev,neut)" ], "deelden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "Hendrika": [ "N(eigen,ev,neut)" ], "zoldertje": [ "N(soort,ev,neut)" ], "zodanig": [ "Pron(aanw,neut,zelfst)" ], "Onassis": [ "N(eigen,ev,neut)" ], "doden": [ "Adj(zelfst,stell,verv_mv)", "V(trans,inf)" ], "Teruggekeerd": [ "V(intrans,verl_dw,onverv)" ], "Indiers": [ "N(soort,mv,neut)" ], "appeltaart": [ "N(soort,ev,neut)" ], "goede": [ "Adj(attr,stell,verv_neut)", "Adj(zelfst,stell,verv_neut)" ], "kluchtige": [ "Adj(attr,stell,verv_neut)" ], "Pallandt": [ "N(eigen,ev,neut)" ], "turn-ons": [ "N(soort,mv,neut)" ], "dossier": [ "N(soort,ev,neut)" ], "zelfbewuster": [ "Adj(attr,vergr,onverv)" ], "kennis": [ "N(soort,ev,neut)" ], "popperig": [ "Adj(attr,stell,onverv)" ], "gezinstype": [ "N(soort,ev,neut)" ], "zichzelf": [ "Pron(ref,3,ev_of_mv)" ], "leeggehaald": [ "V(trans,verl_dw,onverv)" ], "goeds": [ "Adj(attr,stell,verv_gen)" ], "Zonder": [ "Prep(voor)", "Conj(onder,met_inf)" ], "beamen": [ "V(trans,inf)" ], "beschouw": [ "V(trans,ott,1,ev)" ], "aanvraag": [ "N(soort,ev,neut)" ], "rilde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "mentaliteit": [ "N(soort,ev,neut)" ], "vlakte": [ "N(soort,ev,neut)" ], "afwas": [ "N(soort,ev,neut)" ], "telkens": [ "Adv(gew,geen_func,stell,onverv)" ], "stierf": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "sprekende": [ "V(intrans,teg_dw,verv_neut)" ], "heftige": [ "Adj(attr,stell,verv_neut)" ], "Sark": [ "N(eigen,ev,neut)" ], "doodeenzaam": [ "Adj(attr,stell,onverv)" ], "tonen": [ "V(trans,ott,1_of_2_of_3,mv)", "V(refl,ott,1_of_2_of_3,mv)", "N(soort,mv,neut)", "V(intrans,ott,1_of_2_of_3,mv)", "V(trans,inf)" ], "speel": [ "V(trans,ott,1,ev)" ], "voorouders": [ "N(soort,mv,neut)" ], "honend": [ "V(intrans,teg_dw,onverv)" ], "registreert": [ "V(trans,ott,3,ev)" ], "chanson-programma": [ "N(soort,ev,neut)" ], "prenten": [ "N(soort,mv,neut)" ], "desnoods": [ "Adv(gew,geen_func,stell,onverv)" ], "bevatten": [ "V(trans,ott,1_of_2_of_3,mv)", "V(trans,ovt,1_of_2_of_3,mv)" ], "ontucht": [ "N(soort,ev,neut)" ], "geintegreerd": [ "V(trans,verl_dw,onverv)" ], "manifesteerde": [ "V(refl,ovt,1_of_2_of_3,ev)" ], "zeurderige": [ "Adj(attr,stell,verv_neut)" ], "noch": [ "Conj(neven)" ], "haverklap": [ "N(soort,ev,neut)" ], "bezaaid": [ "V(trans,verl_dw,onverv)" ], "onverharde": [ "Adj(attr,stell,verv_neut)" ], "voelend": [ "V(intrans,teg_dw,onverv)" ], "professionele": [ "Adj(attr,stell,verv_neut)" ], "dichtbij": [ "Adv(gew,geen_func,stell,onverv)" ], "ambtsperiode": [ "N(soort,ev,neut)" ], "gebrek": [ "N(soort,ev,neut)" ], "fondueschotels": [ "N(soort,mv,neut)" ], "Reclamemensen": [ "N(soort,mv,neut)" ], "Elspeet": [ "N(eigen,ev,neut)" ], "gestorven": [ "V(intrans,verl_dw,onverv)" ], "gelegenheid": [ "N(soort,ev,neut)" ], "bleke": [ "Adj(attr,stell,verv_neut)" ], "buitengewoon": [ "Adj(adv,stell,onverv)" ], "kogels": [ "N(soort,mv,neut)" ], "opzien": [ "N(soort,ev,neut)" ], "regenjas": [ "N(soort,ev,neut)" ], "ongegrond": [ "Adj(attr,stell,onverv)" ], "Zwijger": [ "N(eigen,ev,neut)" ], "eigenschappen": [ "N(soort,mv,neut)" ], "node": [ "Adv(gew,geen_func,stell,onverv)" ], "verdienstelijk": [ "Adj(adv,stell,onverv)" ], "wanhopige": [ "Adj(attr,stell,verv_neut)" ], "Doen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "tulp": [ "N(soort,ev,neut)" ], "Doet": [ "V(trans,ott,3,ev)" ], "oliehaven": [ "N(soort,ev,neut)" ], "aantrekkelijke": [ "Adj(attr,stell,verv_neut)" ], "sphagnum-turf": [ "N(soort,ev,neut)" ], "zakie": [ "N(soort,ev,neut)" ], "Leeuw": [ "N(soort,ev,neut)" ], "lof": [ "N(soort,ev,neut)" ], "Oil": [ "N(eigen,ev,neut)" ], "lol": [ "N(soort,ev,neut)" ], "concluderen": [ "V(trans,inf)" ], "daaromheen": [ "Adv(pron,aanw)" ], "citaat": [ "N(soort,ev,neut)" ], "tevens": [ "Adv(gew,geen_func,stell,onverv)" ], "landen": [ "N(soort,mv,neut)", "N(eigen,ev,neut)" ], "los": [ "Adj(attr,stell,onverv)" ], "lot": [ "N(soort,ev,neut)" ], "noodlot": [ "N(soort,ev,neut)" ], "aanzien": [ "N(soort,ev,neut)", "V(intrans,inf,subst)", "V(trans,inf)" ], "slachtpartij": [ "N(soort,ev,neut)" ], "plaatsjes": [ "N(soort,mv,neut)" ], "Moeder": [ "N(soort,ev,neut)", "N(eigen,ev,neut)" ], "Jonkheer": [ "N(soort,ev,neut)" ], "Slavische": [ "Adj(attr,stell,verv_neut)" ], "hijzelf": [ "Pron(per,3,ev,nom)" ], "Nederlands": [ "Adj(attr,stell,onverv)", "N(eigen,ev,neut)", "N(eigen,ev,gen)" ], "Daardoor": [ "Adv(pron,aanw)" ], "klap": [ "N(soort,ev,neut)" ], "AWW": [ "N(soort,ev,neut)" ], "koorts": [ "N(soort,ev,neut)" ], "Stichting": [ "N(eigen,ev,neut)" ], "haten": [ "V(intrans,inf)" ], "zakje": [ "N(soort,ev,neut)" ], "rapport": [ "N(soort,ev,neut)" ], "Kirsch": [ "N(soort,ev,neut)" ], "bungalowhotel": [ "N(soort,ev,neut)" ], "milieus": [ "N(soort,mv,neut)" ], "kunststoffen": [ "Adj(attr,stell,onverv)" ], "huwelijksreis": [ "N(soort,ev,neut)" ], "rechtsaf": [ "Adv(gew,geen_func,stell,onverv)" ], "mogen": [ "V(hulp,inf)", "V(intrans,ott,1_of_2_of_3,mv)", "V(hulp,ott,1_of_2_of_3,mv)", "V(trans,ott,1_of_2_of_3,mv)" ], "Doge": [ "N(soort,ev,neut)" ], "weekend-": [ "N(soort,ev,neut)" ], "wonderkinderen": [ "N(soort,mv,neut)" ], "medewerkers": [ "N(soort,mv,neut)" ], "slagerstouw": [ "N(soort,ev,neut)" ], "waaraan": [ "Adv(pron,vrag)", "Adv(pron,betr)" ], "illusie": [ "N(soort,ev,neut)" ], "Huishoudschool": [ "N(soort,ev,neut)" ], "vangen": [ "V(trans,inf)" ], "Stevens": [ "N(eigen,ev,neut)" ], "vaderlandse": [ "Adj(attr,stell,verv_neut)" ], "onthullend": [ "V(intrans,teg_dw,onverv)" ], "controle": [ "N(soort,ev,neut)" ], "wekelijks": [ "Adj(adv,stell,onverv)" ], "sturen": [ "V(trans,inf)", "N(soort,mv,neut)" ], "maanoppervlak": [ "N(soort,ev,neut)" ], "Gezinsvorming": [ "N(eigen,ev,neut)" ], "Lijdensweek": [ "N(soort,ev,neut)" ], "zinsnede": [ "N(soort,ev,neut)" ], "Darnley": [ "N(eigen,ev,neut)" ], "maatschappelijk": [ "Adj(attr,stell,onverv)" ], "ambtenaren": [ "N(soort,mv,neut)" ], "goeie": [ "Adj(attr,stell,verv_neut)", "Adj(zelfst,stell,verv_neut)" ], "regering": [ "N(soort,ev,neut)" ], "Uitgaande": [ "V(intrans,teg_dw,verv_neut)" ], "oerkracht": [ "N(soort,ev,neut)" ], "luieren": [ "V(intrans,inf)" ], "lijkt": [ "V(hulp_of_kopp,ott,3,ev)", "V(intrans,ott,3,ev)" ], "Haarlem": [ "N(eigen,ev,neut)" ], "schilderwerk": [ "N(soort,ev,neut)" ], "ontdooid": [ "V(trans,verl_dw,onverv)" ], "bieden": [ "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "klonken": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "buurtje": [ "N(soort,ev,neut)" ], "gebracht": [ "V(trans,verl_dw,onverv)" ], "Carel": [ "N(eigen,ev,neut)" ], "missing-link": [ "N(soort,ev,neut)" ], "lusteloos": [ "Adj(adv,stell,onverv)" ], "Recreatie": [ "N(eigen,ev,neut)" ], "gemene": [ "Adj(attr,stell,verv_neut)" ], "i.u.d.'s": [ "N(soort,mv,neut)" ], "impressionistische": [ "Adj(attr,stell,verv_neut)" ], "evenement": [ "N(soort,ev,neut)" ], "mexicaanse": [ "Adj(attr,stell,verv_neut)" ], "Ierland": [ "N(eigen,ev,neut)" ], "Gaaikema": [ "N(eigen,ev,neut)" ], "rebelse": [ "Adj(attr,stell,verv_neut)" ], "coordinatie": [ "N(soort,ev,neut)" ], "tragisch": [ "Adj(attr,stell,onverv)" ], "Inmiddels": [ "Adv(gew,geen_func,stell,onverv)" ], "toeristische": [ "Adj(attr,stell,verv_neut)" ], "zoetvijltje": [ "N(soort,ev,neut)" ], "plezierigste": [ "Adj(attr,overtr,verv_neut)" ], "eerst": [ "Adj(adv,vergr,onverv)", "Adv(gew,geen_func,stell,onverv)" ], "kleuter": [ "N(soort,ev,neut)" ], "oefenen": [ "V(intrans,inf)", "V(trans,inf)" ], "katholieke": [ "Adj(attr,stell,verv_neut)" ], "Waag": [ "V(trans,imp)" ], "Ome": [ "N(soort,ev,neut)" ], "zelfportret": [ "N(soort,ev,neut)" ], "regeringspartijen": [ "N(soort,mv,neut)" ], "Waar": [ "Adv(gew,vrag)", "Adv(pron,betr)" ], "weerstond": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "pleiten": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "komkommers": [ "N(soort,mv,neut)" ], "gasten": [ "N(soort,mv,neut)" ], "jachtsafari's": [ "N(soort,mv,neut)" ], "Sander": [ "N(eigen,ev,neut)" ], "waarschuwde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "schuilnaam": [ "N(soort,ev,neut)" ], "Parade": [ "N(eigen,ev,neut)" ], "Elizabeth": [ "N(eigen,ev,neut)" ], "natuurmuseum": [ "N(soort,ev,neut)" ], "teruggehouden": [ "V(trans,verl_dw,onverv)" ], "bosneger": [ "N(soort,ev,neut)" ], "ziekenhuisbevallingen": [ "N(soort,mv,neut)" ], "verkoop": [ "N(soort,ev,neut)" ], "uitbundige": [ "Adj(attr,stell,verv_neut)" ], "schooldeur": [ "N(soort,ev,neut)" ], "klem": [ "Adj(attr,stell,onverv)" ], "schoonheidswater": [ "N(soort,ev,neut)" ], "doormidden": [ "Adv(gew,geen_func,stell,onverv)" ], "opereert": [ "V(intrans,ott,3,ev)" ], "soelaas": [ "N(soort,ev,neut)" ], "excellenties": [ "N(soort,mv,neut)" ], "huwelijk": [ "N(soort,ev,neut)" ], "Lindner": [ "N(eigen,ev,neut)" ], "kerstmis": [ "N(eigen,ev,neut)" ], "opgericht": [ "V(trans,verl_dw,onverv)" ], "morgens": [ "N(soort,ev,gen)" ], "gelijk": [ "N(soort,ev,neut)", "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "niet-Hindostaans": [ "Adj(attr,stell,onverv)" ], "aandriften": [ "N(soort,mv,neut)" ], "abrikozen": [ "N(soort,mv,neut)" ], "Ons": [ "Pron(bez,1,mv,neut,attr)", "N(eigen,ev,neut)" ], "oefening": [ "N(soort,ev,neut)" ], "ontstaan": [ "V(intrans,verl_dw,onverv)" ], "gezellige": [ "Adj(attr,stell,verv_neut)" ], "Police": [ "Misc(vreemd)" ], "slagzin": [ "N(soort,ev,neut)" ], "nieuwsmedia": [ "N(soort,mv,neut)" ], "ruikende": [ "V(intrans,teg_dw,verv_neut)" ], "ontstaat": [ "V(intrans,ott,3,ev)" ], "waarschuwen": [ "V(trans,inf)" ], "algauw": [ "Adv(gew,geen_func,stell,onverv)" ], "Overspel": [ "N(soort,ev,neut)" ], "misprijzend": [ "V(intrans,teg_dw,onverv)" ], "leken": [ "V(hulp_of_kopp,ovt,1_of_2_of_3,mv)" ], "meetellen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "Dahome": [ "N(eigen,ev,neut)" ], "Oog": [ "N(soort,ev,neut)" ], "inachtneming": [ "N(soort,ev,neut)" ], "volgorde": [ "N(soort,ev,neut)" ], "Ook": [ "Adv(gew,geen_func,stell,onverv)" ], "aantal": [ "N(soort,ev,neut)" ], "Oom": [ "N(soort,ev,neut)", "N(eigen,ev,neut)" ], "lui": [ "Adj(attr,stell,onverv)" ], "dagen-": [ "Adj(attr,stell,verv_neut)" ], "sluiten": [ "V(refl,inf)", "V(trans,inf)" ], "voelde": [ "V(refl,ovt,1_of_2_of_3,ev)", "V(trans,ovt,1_of_2_of_3,ev)" ], "ploegafspraken": [ "N(soort,mv,neut)" ], "gordijnring": [ "N(soort,ev,neut)" ], "minutieus": [ "Adj(attr,stell,onverv)" ], "serie": [ "N(soort,ev,neut)" ], "Soefi-zijn": [ "N(soort,ev,neut)" ], "fluitjes": [ "N(soort,mv,neut)" ], "wachtte": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(intrans,ovt,1_of_2_of_3,ev)" ], "thuis-opgevoede": [ "Adj(attr,stell,verv_neut)" ], "Overdoen": [ "V(intrans,inf)" ], "geheven": [ "V(trans,verl_dw,onverv)" ], "Philippe": [ "N(eigen,ev,neut)" ], "pleet": [ "N(soort,ev,neut)" ], "prakken": [ "V(trans,inf)" ], "filmsterren": [ "N(soort,mv,neut)" ], "eethuizen": [ "N(soort,mv,neut)" ], "initiatief": [ "N(soort,ev,neut)" ], "zaadje-eitje": [ "N(soort,ev,neut)" ], "kozen": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "Bruce": [ "N(eigen,ev,neut)" ], "sijsjes": [ "N(soort,mv,neut)" ], "koersstijging": [ "N(soort,ev,neut)" ], "geraak": [ "V(hulp_of_kopp,ott,1,ev)" ], "voelen": [ "V(intrans,inf)", "V(trans,ott,1_of_2_of_3,mv)", "V(refl,inf)" ], "verruiming": [ "N(soort,ev,neut)" ], "zo'n": [ "Pron(aanw,neut,attr)" ], "eiwitten": [ "N(soort,mv,neut)" ], "barok": [ "N(soort,ev,neut)" ], "vaagheid": [ "N(soort,ev,neut)" ], "baron": [ "N(soort,ev,neut)" ], "perspektief": [ "N(soort,ev,neut)" ], "zijde": [ "N(soort,ev,neut)" ], "bewaring": [ "N(soort,ev,neut)" ], "Previn": [ "N(eigen,ev,neut)" ], "onderhandelingen": [ "N(soort,mv,neut)" ], "Revu": [ "N(eigen,ev,neut)" ], "relations": [ "N(soort,mv,neut)" ], "Limburgse": [ "Adj(attr,stell,verv_neut)" ], "huisdier": [ "N(soort,ev,neut)" ], "huilen": [ "V(intrans,inf)" ], "leerzaam": [ "Adj(attr,stell,onverv)" ], "fijngehakte": [ "V(trans,verl_dw,verv_neut)" ], "juffrouw": [ "N(soort,ev,neut)" ], "klik": [ "N(soort,ev,neut)" ], "woont": [ "V(intrans,ott,3,ev)" ], "Sorry": [ "Int" ], "auto's": [ "N(soort,mv,neut)" ], "keukenprinses": [ "N(soort,ev,neut)" ], "hier": [ "Adv(gew,aanw)", "Adv(pron,aanw)" ], "compliment": [ "N(soort,ev,neut)" ], "emancipatie": [ "N(soort,ev,neut)" ], "schiep": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "danig": [ "Adj(adv,stell,onverv)" ], "allerprilste": [ "Adj(attr,overtr,verv_neut)" ], "Maastrichtse": [ "Adj(attr,stell,verv_neut)" ], "bloedend": [ "V(intrans,teg_dw,onverv)" ], "instructies": [ "N(soort,mv,neut)" ], "actie": [ "N(soort,ev,neut)" ], "zeegedierte": [ "N(soort,ev,neut)" ], "Door": [ "Prep(voor)", "N(eigen,ev,neut)" ], "genre": [ "N(soort,ev,neut)" ], "knoop": [ "N(soort,ev,neut)" ], "zonzoeker": [ "N(soort,ev,neut)" ], "creaties": [ "N(soort,mv,neut)" ], "primair": [ "Adj(adv,stell,onverv)" ], "raadplegen": [ "V(trans,inf)" ], "handkarren": [ "N(soort,mv,neut)" ], "opzettelijk": [ "Adj(adv,stell,onverv)" ], "Albert": [ "N(eigen,ev,neut)" ], "conclusie": [ "N(soort,ev,neut)" ], "gedreigd": [ "V(trans,verl_dw,onverv)" ], "Chabaudanjer": [ "N(soort,ev,neut)" ], "lijst": [ "N(soort,ev,neut)" ], "wegwerken": [ "V(trans,inf)" ], "natuurbad": [ "N(soort,ev,neut)" ], "woongemeenschappen": [ "N(soort,mv,neut)" ], "waartegen": [ "Adv(pron,vrag)" ], "Alle": [ "Pron(onbep,neut,attr)" ], "praatje": [ "N(soort,ev,neut)" ], "merendeel": [ "N(soort,ev,neut)" ], "gemeubileerd": [ "V(trans,verl_dw,onverv)" ], "nood": [ "N(soort,ev,neut)" ], "bijwonen": [ "V(trans,inf,subst)" ], "smaakpapillen": [ "N(soort,mv,neut)" ], "gewenste": [ "V(trans,verl_dw,verv_neut)" ], "Vanuit": [ "Prep(voor)" ], "grachten": [ "N(soort,mv,neut)" ], "thuiskwam": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "snauwde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "onderschatten": [ "V(trans,ott,1_of_2_of_3,mv)" ], "harpoenier": [ "N(soort,ev,neut)" ], "haalde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "high": [ "N(eigen,ev,neut)" ], "plein": [ "N(soort,ev,neut)" ], "media-mannen": [ "N(soort,mv,neut)" ], "probeerde": [ "V(hulp,ovt,1_of_2_of_3,ev)" ], "wateren": [ "N(soort,mv,neut)" ], "zakte": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "pleit": [ "N(soort,ev,neut)", "V(intrans,ott,3,ev)" ], "Chuvalo": [ "N(eigen,ev,neut)" ], "vliegen": [ "V(intrans,inf)", "V(intrans,ott,1_of_2_of_3,mv)" ], "19,75": [ "Num(hoofd,bep,attr,onverv)" ], "klaarmaakte": [ "V(refl,ovt,1_of_2_of_3,ev)" ], "nadele": [ "N(soort,ev,dat)" ], "Moderne": [ "Adj(attr,stell,verv_neut)" ], "veroordeeld": [ "V(trans,verl_dw,onverv)" ], "aankwam": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "Liefhebber": [ "N(soort,ev,neut)" ], "zuidkust": [ "N(soort,ev,neut)" ], "slakken": [ "N(soort,mv,neut)" ], "tenger": [ "Adj(attr,stell,onverv)" ], "gemanipuleer": [ "N(soort,ev,neut)" ], "paren": [ "V(intrans,inf)" ], "voorhoofdknobbel": [ "N(soort,ev,neut)" ], "Brussel": [ "N(eigen,ev,neut)" ], "kronkelt": [ "V(intrans,ott,3,ev)" ], "Aan": [ "Prep(voor)" ], "heeft": [ "V(hulp,ott,3,ev)", "V(trans,ott,3,ev)", "V(intrans,ott,3,ev)", "V(trans,ott,2,ev)" ], "dankt": [ "V(trans,ott,3,ev)" ], "kunstgeschiedenis": [ "N(soort,ev,neut)" ], "Onlangs": [ "Adv(gew,geen_func,stell,onverv)" ], "kusten": [ "N(soort,mv,neut)" ], "spierpoedelnaakt": [ "Adj(attr,stell,onverv)" ], "Kermis": [ "N(eigen,ev,neut)" ], "belangrijke": [ "Adj(attr,stell,verv_neut)" ], "Durham": [ "N(eigen,ev,neut)" ], "Koeweit": [ "N(eigen,ev,neut)" ], "toeschouwers": [ "N(soort,mv,neut)" ], "suiker": [ "N(soort,ev,neut)" ], "verdient": [ "V(trans,ott,3,ev)", "V(trans,ott,2,ev)" ], "Overal": [ "Adv(gew,onbep)" ], "woord": [ "N(soort,ev,neut)" ], "contract": [ "N(soort,ev,neut)" ], "kleinzerig": [ "Adj(attr,stell,onverv)" ], "Dorp": [ "N(soort,ev,neut)" ], "gebiedt": [ "V(trans,ott,3,ev)" ], "beheersen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "lijve": [ "N(soort,ev,dat)" ], "boontjes": [ "N(soort,mv,neut)" ], "schokbrekers": [ "N(soort,mv,neut)" ], "prachtig": [ "Adj(attr,stell,onverv)" ], "terreinen": [ "N(soort,mv,neut)" ], "harten": [ "N(soort,ev,neut)" ], "groepseffect": [ "N(soort,ev,neut)" ], "Dory": [ "N(eigen,ev,neut)" ], "groeten": [ "V(intrans,inf)" ], "tournee": [ "N(soort,ev,neut)" ], "zijden": [ "Adj(attr,stell,onverv)" ], "gefascineerd": [ "V(trans,verl_dw,onverv)" ], "betrekken": [ "V(trans,inf)" ], "contacten": [ "N(soort,mv,neut)" ], "hielden": [ "V(intrans,ovt,1_of_2_of_3,mv)", "V(trans,ovt,1_of_2_of_3,mv)" ], "nadenk": [ "V(intrans,ott,1,ev)" ], "geringere": [ "Adj(attr,vergr,verv_neut)" ], "langdurig": [ "Adj(adv,stell,onverv)" ], "koninklijke": [ "Adj(attr,stell,verv_neut)" ], "afgebroken": [ "V(trans,verl_dw,onverv)" ], "negen": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "Ach": [ "Int" ], "blijken": [ "V(hulp_of_kopp,ott,1_of_2_of_3,mv)", "V(intrans,inf)" ], "neger": [ "N(soort,ev,neut)" ], "schilder": [ "N(soort,ev,neut)" ], "-stronken": [ "N(soort,mv,neut)" ], "Gevormde": [ "V(trans,verl_dw,verv_neut)" ], "hijgend": [ "V(intrans,teg_dw,onverv)" ], "onvoldaanheid": [ "N(soort,ev,neut)" ], "effe": [ "Adv(gew,geen_func,stell,onverv)" ], "popmusici": [ "N(soort,mv,neut)" ], "studeerde": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(intrans,ovt,1_of_2_of_3,ev)" ], "afschrikken": [ "V(trans,inf)" ], "Act": [ "Misc(vreemd)" ], "importeert": [ "V(trans,ott,3,ev)" ], "bruikbaars": [ "Adj(attr,stell,verv_gen)" ], "Veel": [ "Num(hoofd,onbep,attr,stell,onverv)" ], "lokaas": [ "N(soort,ev,neut)" ], "schijn": [ "N(soort,ev,neut)", "V(hulp_of_kopp,ott,2,ev)" ], "ziekenhuisgemeenschap": [ "N(soort,ev,neut)" ], "gezichten": [ "N(soort,mv,neut)" ], "Ada": [ "N(eigen,ev,neut)" ], "verdiept": [ "V(refl,verl_dw,onverv)" ], "vaten": [ "N(soort,mv,neut)" ], "kweken": [ "V(trans,inf,subst)", "V(trans,inf)" ], "zwoer": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "deelnemers": [ "N(soort,mv,neut)" ], "bankstel": [ "N(soort,ev,neut)" ], "lijdensweg": [ "N(soort,ev,neut)" ], "departement": [ "N(soort,ev,neut)" ], "kiezen": [ "V(trans,inf)", "V(intrans,inf)" ], "hoofdgebouw": [ "N(soort,ev,neut)" ], "verjaarscadeau": [ "N(soort,ev,neut)" ], "wegstromen": [ "V(intrans,inf)" ], "dosis": [ "N(soort,ev,neut)" ], "STOP": [ "N(soort,ev,neut)" ], "afgewogen": [ "V(trans,verl_dw,onverv)" ], "westerse": [ "Adj(attr,stell,verv_neut)" ], "slaatje": [ "N(soort,ev,neut)" ], "sketches": [ "N(soort,mv,neut)" ], "Henri": [ "N(eigen,ev,neut)" ], "bordjes": [ "N(soort,mv,neut)" ], "nauwgezet": [ "Adj(adv,stell,onverv)" ], "drankverkopers": [ "N(soort,mv,neut)" ], "achtentwintigste": [ "Num(rang,bep,zelfst,onverv)" ], "klok": [ "N(soort,ev,neut)" ], "voorstellen": [ "V(trans,inf)" ], "klom": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "gevoed": [ "V(trans,verl_dw,onverv)" ], "inzien": [ "V(intrans,inf)" ], "Daan": [ "N(eigen,ev,neut)" ], "waarvoor": [ "Adv(pron,vrag)" ], "gevoel": [ "N(soort,ev,neut)" ], "Daar": [ "Adv(pron,aanw)", "Adv(gew,aanw)" ], "Henry": [ "N(eigen,ev,neut)" ], "bitter": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "ongelofelijk": [ "Adj(adv,stell,onverv)" ], "stoornissen": [ "N(soort,mv,neut)" ], "frisse": [ "Adj(attr,stell,verv_neut)" ], "hoeken": [ "N(soort,mv,neut)" ], "verhuisd": [ "V(intrans,verl_dw,onverv)" ], "angst": [ "N(soort,ev,neut)" ], "Jasperina": [ "N(eigen,ev,neut)" ], "verwacht": [ "V(trans,ott,1,ev)", "V(trans,ott,3,ev)" ], "Stefan": [ "N(eigen,ev,neut)" ], "jury-leden": [ "N(soort,mv,neut)" ], "serre": [ "N(soort,ev,neut)" ], "Britse": [ "Adj(attr,stell,verv_neut)" ], "vangst": [ "N(soort,ev,neut)" ], "verschijnsel": [ "N(soort,ev,neut)" ], "verbouwing": [ "N(soort,ev,neut)" ], "september": [ "N(eigen,ev,neut)" ], "avonden": [ "N(soort,mv,neut)" ], "stroom": [ "N(soort,ev,neut)" ], "naad": [ "N(soort,ev,neut)" ], "Galbulten": [ "N(soort,mv,neut)" ], "Mobil": [ "N(eigen,ev,neut)" ], "alsnog": [ "Adv(gew,geen_func,stell,onverv)" ], "anonieme": [ "Adj(attr,stell,verv_neut)" ], "naam": [ "N(soort,ev,neut)" ], "Cecil": [ "N(eigen,ev,neut)" ], "kernen": [ "N(soort,mv,neut)" ], "hartspier": [ "N(soort,ev,neut)" ], "Zachtheid": [ "N(soort,ev,neut)" ], "middle-class": [ "N(soort,ev,neut)" ], "naar": [ "Prep(voor)", "Adv(deel_adv)" ], "onderdeel": [ "N(soort,ev,neut)" ], "publieke": [ "Adj(attr,stell,verv_neut)" ], "beloop": [ "N(soort,ev,neut)" ], "Hotel": [ "N(soort,ev,neut)" ], "climacterium": [ "N(soort,ev,neut)" ], "ranch": [ "N(soort,ev,neut)" ], "direct": [ "Adj(adv,stell,onverv)" ], "optrad": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "nootjes": [ "N(soort,mv,neut)" ], "gelijktijdig": [ "Adj(adv,stell,onverv)" ], "spiegelstroken": [ "N(soort,mv,neut)" ], "voorechtelijke": [ "Adj(attr,stell,verv_neut)" ], "nous": [ "Misc(vreemd)" ], "vereist": [ "V(trans,verl_dw,onverv)" ], "probleempjes": [ "N(soort,mv,neut)" ], "nadere": [ "Adj(attr,vergr,verv_neut)" ], "liever": [ "Adj(adv,vergr,onverv)" ], "Want": [ "Conj(neven)" ], "lorren": [ "N(soort,mv,neut)" ], "wegpikt": [ "V(trans,ott,3,ev)" ], "verrassende": [ "V(intrans,teg_dw,verv_neut)" ], "baden": [ "V(intrans,ovt,1_of_2_of_3,mv)", "V(intrans,inf)" ], "nadert": [ "V(trans,ott,3,ev)" ], "aangrijpend": [ "V(intrans,teg_dw,onverv)" ], "teneinde": [ "Conj(onder,met_inf)" ], "belastingbetalers": [ "N(soort,mv,neut)" ], "onverhoedse": [ "Adj(attr,stell,verv_neut)" ], "Poolse": [ "Adj(attr,stell,verv_neut)" ], "feite": [ "N(soort,ev,dat)" ], "hing": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "behoort": [ "V(intrans,ott,3,ev)" ], "bergen": [ "N(soort,mv,neut)" ], "37-jarige": [ "Adj(attr,stell,verv_neut)" ], "lingerie": [ "N(soort,ev,neut)" ], "noodzakelijkheden": [ "N(soort,mv,neut)" ], "agressie": [ "N(soort,ev,neut)" ], "zijne": [ "Pron(bez,3,ev,neut,attr)" ], "onwrikbaar": [ "Adj(adv,stell,onverv)" ], "Lester": [ "N(eigen,ev,neut)" ], "vervangen": [ "V(trans,verl_dw,onverv)" ], "schildje": [ "N(soort,ev,neut)" ], "aanstekelijke": [ "Adj(attr,stell,verv_neut)" ], "wandelden": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "praatstof": [ "N(soort,ev,neut)" ], "iets": [ "Pron(onbep,neut,zelfst)", "Pron(onbep,neut,attr)" ], "directie": [ "N(soort,ev,neut)" ], "japon": [ "N(soort,ev,neut)" ], "versturen": [ "V(trans,inf)" ], "vooral": [ "Adv(gew,geen_func,stell,onverv)" ], "oplevert": [ "V(trans,ott,3,ev)" ], "lyrisch": [ "Adj(attr,stell,onverv)" ], "badkamer": [ "N(soort,ev,neut)" ], "jazz": [ "Misc(vreemd)" ], "Brusselse": [ "Adj(attr,stell,verv_neut)" ], "auto": [ "N(soort,ev,neut)" ], "onderwerp": [ "N(soort,ev,neut)" ], "kuren": [ "V(intrans,inf)" ], "J.B.": [ "N(eigen,ev,neut)" ], "DSRV": [ "N(soort,ev,neut)" ], "binnenkort": [ "Adv(gew,geen_func,stell,onverv)" ], "bezuinigen": [ "V(intrans,inf)" ], "ongenoemd": [ "Adj(attr,stell,onverv)" ], "vooruitgang": [ "N(soort,ev,neut)" ], "zatterik": [ "N(soort,ev,neut)" ], "opging": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "bewandelen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "getracht": [ "V(hulp,verl_dw,onverv)" ], "mag": [ "V(hulp,ott,3,ev)", "V(trans,ott,2,ev)", "V(hulp,ott,1,ev)", "V(intrans,ott,3,ev)", "V(trans,ott,1,ev)", "V(hulp,ott,2,ev)" ], "veilige": [ "Adj(attr,stell,verv_neut)" ], "afgronden": [ "N(soort,mv,neut)" ], "ginds": [ "Adv(gew,aanw)" ], "etentjes": [ "N(soort,mv,neut)" ], "gracieuze": [ "Adj(attr,stell,verv_neut)" ], "weinig": [ "Num(hoofd,onbep,zelfst,stell,onverv)", "Num(hoofd,onbep,attr,stell,onverv)" ], "man": [ "N(soort,ev,neut)", "N(eigen,ev,neut)", "Misc(vreemd)", "N(soort,mv,neut)" ], "map": [ "N(soort,ev,neut)" ], "zeker": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)", "Pron(onbep,neut,attr)" ], "zeldzamer": [ "Adj(attr,vergr,onverv)" ], "lezen": [ "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)", "V(intrans,inf)" ], "huizenbouw": [ "N(soort,ev,neut)" ], "ermee": [ "Adv(pron,onbep)" ], "boodschappen": [ "N(soort,mv,neut)" ], "lezer": [ "N(soort,ev,neut)" ], "daaruit": [ "Adv(pron,aanw)" ], "Hermans": [ "N(eigen,ev,neut)" ], "vloedlijn": [ "N(soort,ev,neut)" ], "processen": [ "N(soort,mv,neut)" ], "uren": [ "N(soort,mv,neut)" ], "misleidende": [ "V(intrans,teg_dw,verv_neut)" ], "kuchte": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "l.p.": [ "N(soort,ev,neut)" ], "bevolking": [ "N(soort,ev,neut)" ], "voortgezet": [ "V(trans,verl_dw,onverv)" ], "Abrahamse": [ "N(eigen,ev,neut)" ], "operette": [ "N(soort,ev,neut)" ], "deurknop": [ "N(soort,ev,neut)" ], "hoekje": [ "N(soort,ev,neut)" ], "herinneringen": [ "N(soort,mv,neut)" ], "voorkeur": [ "N(soort,ev,neut)" ], "Alstublieft": [ "Int" ], "Terra": [ "Misc(vreemd)" ], "dialogen": [ "N(soort,mv,neut)" ], "praatte": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "tuinpaden": [ "N(soort,mv,neut)" ], "bekijkt": [ "V(trans,ott,2,ev)", "V(trans,ott,3,ev)" ], "Terre": [ "N(eigen,ev,neut)" ], "bibliotheek": [ "N(soort,ev,neut)" ], "bromde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "avondje": [ "N(soort,ev,gen)" ], "vijfde": [ "Num(rang,bep,attr,onverv)" ], "manieren": [ "N(soort,mv,neut)" ], "Veld": [ "N(eigen,ev,neut)" ], "kostuums": [ "N(soort,mv,neut)" ], "indicaties": [ "N(soort,mv,neut)" ], "ditzelfde": [ "Pron(aanw,neut,attr)" ], "Warm": [ "V(trans,imp)" ], "radiostations": [ "N(soort,mv,neut)" ], "steeg": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "rechtstreeks": [ "Adj(adv,stell,onverv)" ], "wielrijdster": [ "N(soort,ev,neut)" ], "steek": [ "N(soort,ev,neut)", "V(trans,imp)" ], "steen": [ "N(soort,ev,neut)" ], "fokken": [ "V(intrans,inf)" ], "kwetsbare": [ "Adj(attr,stell,verv_neut)" ], "beschikte": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "allerscherpst": [ "Adj(attr,overtr,onverv)" ], "straat": [ "N(soort,ev,neut)" ], "uitzending": [ "N(soort,ev,neut)" ], "simplificaties": [ "N(soort,mv,neut)" ], "ogenblik": [ "N(soort,ev,neut)" ], "DANKTE": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "opmerkelijkste": [ "Adj(attr,overtr,verv_neut)" ], "minachting": [ "N(soort,ev,neut)" ], "rock": [ "N(soort,ev,neut)" ], "neergelegd": [ "V(trans,verl_dw,onverv)" ], "trottoirs": [ "N(soort,mv,neut)" ], "vergelijk": [ "V(trans,ott,1,ev)" ], "uitmaken": [ "V(trans,inf)" ], "vervelen": [ "V(refl,inf)" ], "2.000": [ "Num(hoofd,bep,attr,onverv)" ], "gesmoord": [ "V(trans,verl_dw,onverv)" ], "Blois": [ "N(eigen,ev,neut)" ], "gevolg": [ "N(soort,ev,neut)" ], "dreigde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Chemische": [ "Adj(attr,stell,verv_neut)" ], "vriendinnetjes": [ "N(soort,mv,neut)" ], "Venlo": [ "N(eigen,ev,neut)" ], "bouwtrant": [ "N(soort,ev,neut)" ], "olijke": [ "Adj(attr,stell,verv_neut)" ], "vlamgevat": [ "V(intrans,verl_dw,onverv)" ], "heilzaam": [ "Adj(attr,stell,onverv)" ], "Compromis": [ "N(soort,ev,neut)" ], "riskante": [ "Adj(attr,stell,verv_neut)" ], "rode": [ "Adj(attr,stell,verv_neut)" ], "katoen": [ "N(soort,ev,neut)" ], "cultuur": [ "N(soort,ev,neut)" ], "moeten": [ "V(hulp,ott,1_of_2_of_3,mv)", "V(hulp,inf)" ], "benijdden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "Hoes": [ "N(eigen,ev,neut)" ], "Als": [ "Conj(onder,met_fin)" ], "onderzochte": [ "V(trans,verl_dw,verv_neut)" ], "uberhaupt": [ "Adv(gew,geen_func,stell,onverv)" ], "zelfmoord": [ "N(soort,ev,neut)" ], "verklaring": [ "N(soort,ev,neut)" ], "geachte": [ "V(trans,verl_dw,verv_neut)" ], "aarzelde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "nahoudt": [ "V(trans,ott,3,ev)" ], "Roodaangelopen": [ "Adj(attr,stell,onverv)" ], "mee": [ "Adv(deel_v)", "Adv(deel_adv)", "Adv(gew,geen_func,stell,onverv)" ], "vrouw-maagd": [ "N(soort,ev,neut)" ], "mei": [ "N(eigen,ev,neut)" ], "paasfolklore": [ "N(soort,ev,neut)" ], "binnen": [ "Adv(gew,geen_func,stell,onverv)", "Adv(deel_v)", "Prep(voor)" ], "Terugzetten": [ "V(intrans,inf)" ], "groenige": [ "Adj(attr,stell,verv_neut)" ], "men": [ "Pron(onbep,neut,zelfst)" ], "verleden": [ "N(soort,ev,neut)", "Adj(attr,stell,onverv)" ], "mes": [ "N(soort,ev,neut)" ], "processie": [ "N(soort,ev,neut)" ], "met": [ "Prep(voor)" ], "Terug": [ "Adv(gew,geen_func,stell,onverv)" ], "blokje": [ "N(soort,ev,neut)" ], "Mevrouw": [ "N(soort,ev,neut)" ], "allerkleinsten": [ "Adj(zelfst,overtr,verv_neut)" ], "daglicht": [ "N(soort,ev,neut)" ], "medailles": [ "N(soort,mv,neut)" ], "woonde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "broedtijd": [ "N(soort,ev,neut)" ], "roes": [ "N(soort,ev,neut)" ], "roet": [ "N(soort,ev,neut)" ], "gaapte": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "hits": [ "N(soort,mv,neut)" ], "bespreken": [ "V(trans,inf,subst)" ], "lauwwarm": [ "Adj(attr,stell,onverv)" ], "Ijsland": [ "N(eigen,ev,neut)" ], "bekeken": [ "V(trans,verl_dw,onverv)" ], "meegaande": [ "V(intrans,teg_dw,verv_neut)" ], "aarzelen": [ "V(intrans,inf)" ], "gehouden": [ "V(trans,verl_dw,onverv)" ], "kwalen": [ "N(soort,mv,neut)" ], "allesverwoestend": [ "Adj(attr,stell,onverv)" ], "And": [ "Misc(vreemd)" ], "Hoge": [ "Adj(attr,stell,verv_neut)" ], "Remover": [ "Misc(vreemd)" ], "jarigen": [ "Adj(zelfst,stell,verv_mv)" ], "agent": [ "N(soort,ev,neut)" ], "bijfokken": [ "V(intrans,inf)" ], "maximum": [ "N(soort,ev,neut)" ], "lokale": [ "Adj(attr,stell,verv_neut)" ], "angstig": [ "Adj(adv,stell,onverv)" ], "drukke": [ "Adj(attr,stell,verv_neut)" ], "evolutionaire": [ "Adj(attr,stell,verv_neut)" ], "nabootsen": [ "V(intrans,inf)" ], "vakantiereizen": [ "N(soort,mv,neut)" ], "vastberaden": [ "Adj(adv,stell,onverv)" ], "Citaat": [ "N(soort,ev,neut)" ], "Tevens": [ "Adv(gew,geen_func,stell,onverv)" ], "boerendansers": [ "N(soort,mv,neut)" ], "mede": [ "Adv(gew,geen_func,stell,onverv)" ], "doorsneekijker": [ "N(soort,ev,neut)" ], "flutargumenten": [ "N(soort,mv,neut)" ], "studie": [ "N(soort,ev,neut)" ], "heimwee": [ "N(soort,ev,neut)" ], "titels": [ "N(soort,mv,neut)" ], "conservatieve": [ "Adj(attr,stell,verv_neut)" ], "scheelt": [ "V(trans,ott,3,ev)" ], "verantwoordelijkheid": [ "N(soort,ev,neut)" ], "heleboel": [ "N(soort,ev,neut)" ], "sensuele": [ "Adj(attr,stell,verv_neut)" ], "uitzondering": [ "N(soort,ev,neut)" ], "studio": [ "N(soort,ev,neut)" ], "verkapt": [ "Adj(adv,stell,onverv)" ], "Munchhausen": [ "N(eigen,ev,neut)" ], "steil": [ "Adj(adv,stell,onverv)" ], "Dwayne": [ "N(eigen,ev,neut)" ], "opgeborgen": [ "V(trans,verl_dw,onverv)" ], "Pas": [ "Adv(gew,geen_func,stell,onverv)", "N(eigen,ev,neut)" ], "Koorts": [ "N(soort,ev,neut)" ], "Paradiso": [ "N(eigen,ev,neut)" ], "teint": [ "N(soort,ev,neut)" ], "tumult": [ "N(soort,ev,neut)" ], "nabijheid": [ "N(soort,ev,neut)" ], "doorgemaakt": [ "V(trans,verl_dw,onverv)" ], "identificeren": [ "V(trans,inf)" ], "Producer": [ "N(soort,ev,neut)" ], "Dali": [ "N(eigen,ev,neut)" ], "promoveren": [ "V(intrans,inf)" ], "sluit": [ "V(trans,ott,3,ev)" ], "Enkelaar": [ "N(eigen,ev,neut)" ], "meel": [ "N(soort,ev,neut)" ], "Roemenie": [ "N(eigen,ev,neut)" ], "woestijn": [ "N(soort,ev,neut)" ], "rattenvlo": [ "N(soort,ev,neut)" ], "reddingsvloot": [ "N(soort,ev,neut)" ], "Bettelstudent": [ "N(eigen,ev,neut)" ], "handicap": [ "N(soort,ev,neut)" ], "meen": [ "V(trans,ott,1,ev)", "V(trans,ott,2,ev)" ], "afijn": [ "Int" ], "bekleedt": [ "V(trans,ott,3,ev)" ], "meer": [ "Adv(gew,geen_func,vergr,onverv)", "Num(hoofd,onbep,attr,vergr,onverv)", "Num(hoofd,onbep,zelfst,vergr,onverv)", "N(soort,ev,neut)" ], "Borra": [ "N(eigen,ev,neut)" ], "alcohol": [ "N(soort,ev,neut)" ], "toefje": [ "N(soort,ev,neut)" ], "jaarmarkt": [ "N(soort,ev,neut)" ], "gunstige": [ "Adj(attr,stell,verv_neut)" ], "walvissen": [ "N(soort,mv,neut)" ], "brak": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "Juliana": [ "N(eigen,ev,neut)" ], "sprekers": [ "N(soort,mv,neut)" ], "Pisuisse": [ "N(eigen,ev,neut)" ], "Dame": [ "N(eigen,ev,neut)" ], "billijken": [ "V(trans,inf)" ], "levenslang": [ "Adj(adv,stell,onverv)" ], "nevel": [ "N(soort,ev,neut)" ], "voetgangersvereniging": [ "N(soort,ev,neut)" ], "Dorpsstraat": [ "N(eigen,ev,neut)" ], "verbeelding": [ "N(soort,ev,neut)" ], "enkelbreuk": [ "N(soort,ev,neut)" ], "opluisterde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "albums": [ "N(soort,mv,neut)" ], "getuige": [ "Prep(voor)", "N(soort,ev,neut)" ], "mij": [ "Pron(per,1,ev,dat_of_acc)", "Pron(ref,1,ev)" ], "eindelijk": [ "Adv(gew,geen_func,stell,onverv)" ], "paaien": [ "V(trans,inf)" ], "plastic": [ "N(soort,ev,neut)" ], "min": [ "Num(hoofd,onbep,attr,stell,onverv)", "Num(hoofd,onbep,zelfst,stell,onverv)" ], "studentenorganisaties": [ "N(soort,mv,neut)" ], "mis": [ "N(soort,ev,neut)" ], "vijftiende": [ "Num(rang,bep,zelfst,onverv)" ], "Dana": [ "N(eigen,ev,neut)" ], "souvenirs": [ "N(soort,mv,neut)" ], "rustieke": [ "Adj(attr,stell,verv_neut)" ], "legertuig": [ "N(soort,ev,neut)" ], "opdonder": [ "N(soort,ev,neut)" ], "Dank": [ "N(soort,ev,neut)", "V(trans,ott,1,ev)" ], "bloemmotieven": [ "N(soort,mv,neut)" ], "name": [ "N(soort,ev,dat)" ], "vergeven": [ "V(intrans,inf)", "V(trans,inf)" ], "opberg-bankje": [ "N(soort,ev,neut)" ], "rijlessen": [ "N(soort,mv,neut)" ], "luchten": [ "V(trans,inf)" ], "Margaret": [ "N(eigen,ev,neut)" ], "boudiers": [ "N(eigen,mv,neut)" ], "continent": [ "N(soort,ev,neut)" ], "verdrijven": [ "V(trans,inf)" ], "Hieraan": [ "Adv(pron,aanw)" ], "aandelenkoersen": [ "N(soort,mv,neut)" ], "stelt": [ "V(trans,ott,2,ev)", "V(refl,ott,3,ev)", "V(trans,ott,3,ev)" ], "Nuss": [ "N(eigen,ev,neut)" ], "ontwikkelingsplan": [ "N(soort,ev,neut)" ], "ondernemersinitiatief": [ "N(soort,ev,neut)" ], "gifhistorie": [ "N(soort,ev,neut)" ], "verrekenen": [ "V(trans,inf)" ], "instinct": [ "N(soort,ev,neut)" ], "timmeren": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "ZuidAmerika": [ "N(eigen,ev,neut)" ], "vatte": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "verbazen": [ "V(trans,inf)" ], "plegen": [ "V(hulp,ott,1_of_2_of_3,mv)", "V(trans,inf,subst)" ], "mej.": [ "N(eigen,ev,neut)" ], "Billy": [ "N(eigen,ev,neut)" ], "lollig": [ "Adj(attr,stell,onverv)" ], "wezenlijke": [ "Adj(attr,stell,verv_neut)" ], "witzijden": [ "Adj(attr,stell,onverv)" ], "poeslief": [ "Adj(attr,stell,onverv)" ], "rommel": [ "N(soort,ev,neut)" ], "gepikt": [ "V(trans,verl_dw,onverv)", "V(intrans,verl_dw,onverv)" ], "Gelijk": [ "Conj(onder,met_fin)" ], "kookboeken": [ "N(soort,mv,neut)" ], "wegvalt": [ "V(intrans,ott,3,ev)" ], "linkerhand": [ "N(soort,ev,neut)" ], "Hollywood": [ "N(eigen,ev,neut)" ], "Philiptheatre": [ "N(eigen,ev,neut)" ], "paspoort": [ "N(soort,ev,neut)" ], "meid": [ "N(soort,ev,neut)" ], "zwaar": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "Sankt": [ "N(eigen,ev,neut)" ], "begeeft": [ "V(refl,ott,3,ev)" ], "waarboven": [ "Adv(pron,vrag)" ], "stellingen": [ "N(soort,mv,neut)" ], "befaamde": [ "Adj(attr,stell,verv_neut)" ], "terugkeer": [ "N(soort,ev,neut)" ], "westen": [ "N(soort,ev,neut)" ], "neerknielden": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "Home": [ "N(eigen,ev,neut)" ], "geslikt": [ "V(trans,verl_dw,onverv)" ], "briefje": [ "N(soort,ev,neut)" ], "middelbare": [ "Adj(attr,stell,verv_neut)" ], "artiesteningang": [ "N(soort,ev,neut)" ], "bidprentjesformaat": [ "N(soort,ev,neut)" ], "Weense": [ "Adj(attr,stell,verv_neut)" ], "verkeersovertreders": [ "N(soort,mv,neut)" ], "sprieten": [ "N(soort,mv,neut)" ], "gevaar": [ "N(soort,ev,neut)" ], "decembermaand": [ "N(soort,ev,neut)" ], "onderdelen": [ "N(soort,mv,neut)" ], "interessant": [ "Adj(attr,stell,onverv)" ], "ongeduldiger": [ "Adj(attr,vergr,onverv)" ], "gedroomd": [ "V(trans,verl_dw,onverv)" ], "McDonald": [ "N(eigen,ev,neut)" ], "volslagen": [ "Adj(adv,stell,onverv)" ], "rolt": [ "V(intrans,ott,3,ev)" ], "binnen-": [ "Adj(attr,stell,verv_neut)" ], "inscriptie": [ "N(soort,ev,neut)" ], "visie": [ "N(soort,ev,neut)" ], "beschrijvingskunst": [ "N(soort,ev,neut)" ], "volksmaal": [ "N(soort,ev,neut)" ], "paplepel": [ "N(soort,ev,neut)" ], "luidt": [ "V(intrans,ott,3,ev)", "V(trans,ott,3,ev)", "V(hulp,ott,3,ev)" ], "profane": [ "Adj(attr,stell,verv_neut)" ], "nippen": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "straks": [ "Adv(gew,geen_func,stell,onverv)" ], "mengen": [ "V(intrans,inf)", "V(trans,inf,subst)" ], "walvisvaarder": [ "N(soort,ev,neut)" ], "ongeluk": [ "N(soort,ev,neut)" ], "ethiek": [ "N(soort,ev,neut)" ], "lied": [ "N(soort,ev,neut)" ], "zoeken": [ "V(trans,inf)", "V(intrans,ott,1_of_2_of_3,mv)", "V(intrans,inf)", "V(trans,inf,subst)" ], "boycot": [ "N(soort,ev,neut)" ], "luchtig": [ "Adj(adv,stell,onverv)" ], "liep": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "veldheer": [ "N(soort,ev,neut)" ], "liet": [ "V(hulp,ovt,1_of_2_of_3,ev)", "V(intrans,ovt,1_of_2_of_3,ev)", "V(trans,ovt,1_of_2_of_3,ev)" ], "erflatingen": [ "N(soort,mv,neut)" ], "gezinnen": [ "N(soort,mv,neut)" ], "spijzen": [ "N(soort,mv,neut)" ], "aantrok": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "publiceerde": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(intrans,ovt,1_of_2_of_3,ev)" ], "grijs": [ "Adj(zelfst,stell,onverv)", "Adj(attr,stell,onverv)" ], "pleegde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Economische": [ "N(eigen,mv,neut)" ], "Hoog": [ "Adj(adv,stell,onverv)" ], "Elke": [ "Pron(onbep,neut,attr)" ], "gevogelte": [ "N(soort,ev,neut)" ], "rond": [ "Prep(voor)", "Adj(attr,stell,onverv)", "Adv(deel_v)" ], "macht": [ "Misc(vreemd)", "N(soort,ev,neut)" ], "denk-": [ "N(soort,ev,neut)" ], "voorop": [ "Adv(gew,geen_func,stell,onverv)" ], "Panorama": [ "N(eigen,ev,neut)" ], "spontaan": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "bestelwagen": [ "N(soort,ev,neut)" ], "kapper": [ "N(soort,ev,neut)" ], "life": [ "N(eigen,ev,neut)" ], "Hoor": [ "V(intrans,imp)" ], "luchtvaart": [ "N(soort,ev,neut)" ], "kroop": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "Pia": [ "N(eigen,ev,neut)" ], "wegbereiders": [ "N(soort,mv,neut)" ], "fantasieen": [ "N(soort,mv,neut)" ], "nare": [ "Adj(attr,stell,verv_neut)" ], "Komedianten": [ "N(eigen,ev,neut)" ], "verschilt": [ "V(intrans,ott,3,ev)" ], "mosterd": [ "N(soort,ev,neut)" ], "melk": [ "N(soort,ev,neut)" ], "Ritman": [ "N(eigen,ev,neut)" ], "schipbreukelingen": [ "N(soort,mv,neut)" ], "moe": [ "Adj(attr,stell,onverv)", "N(soort,ev,neut)" ], "beloven": [ "V(trans,inf)" ], "zeeschepen": [ "N(soort,mv,neut)" ], "Gezellig": [ "Adj(attr,stell,onverv)" ], "lift": [ "N(soort,ev,neut)" ], "ochtend": [ "N(soort,ev,neut)" ], "reisroute": [ "N(soort,ev,neut)" ], "rood": [ "Adj(zelfst,stell,onverv)", "Adj(attr,stell,onverv)" ], "sigaar": [ "N(soort,ev,neut)" ], "ongeduldig": [ "Adj(adv,stell,onverv)" ], "drukte": [ "V(intrans,ovt,1_of_2_of_3,ev)", "V(trans,ovt,1_of_2_of_3,ev)" ], "geschenk": [ "N(soort,ev,neut)" ], "bericht": [ "N(soort,ev,neut)" ], "wisseljaren": [ "N(soort,mv,neut)" ], "masker": [ "N(soort,ev,neut)" ], "Elly": [ "N(eigen,ev,neut)" ], "strand": [ "N(soort,ev,neut)" ], "nasi": [ "N(eigen,ev,neut)" ], "abortuskliniek": [ "N(soort,ev,neut)" ], "heilzame": [ "Adj(attr,stell,verv_neut)" ], "hengelaar": [ "N(soort,ev,neut)" ], "grill": [ "N(soort,ev,neut)" ], "bouwprogramma": [ "N(soort,ev,neut)" ], "bloedvaten": [ "N(soort,mv,neut)" ], "ligt": [ "V(intrans,ott,3,ev)", "V(hulp,ott,3,ev)" ], "karwei": [ "N(soort,ev,neut)" ], "geestelijk": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "sterk": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "mr.": [ "N(eigen,ev,neut)" ], "verbergen": [ "V(trans,inf)" ], "hypofysaire": [ "Adj(attr,stell,verv_neut)" ], "bekwaam": [ "Adj(attr,stell,onverv)" ], "Gedeelde": [ "V(trans,verl_dw,verv_neut)" ], "opperste": [ "Adj(attr,stell,verv_neut)" ], "glazige": [ "Adj(attr,stell,verv_neut)" ], "denkt": [ "V(trans,ott,3,ev)", "V(trans,ott,2,ev)", "V(intrans,ott,3,ev)" ], "combinatie": [ "N(soort,ev,neut)" ], "belang": [ "N(soort,ev,neut)" ], "herstellen": [ "V(trans,inf)" ], "0,95": [ "Num(hoofd,bep,attr,onverv)" ], "resultaten": [ "N(soort,mv,neut)" ], "plaatsvindt": [ "V(intrans,ott,3,ev)" ], "moeilijkheden": [ "N(soort,mv,neut)" ], "(maatschappij-)visie": [ "N(soort,ev,neut)" ], "basis": [ "N(soort,ev,neut)" ], "Black": [ "N(eigen,mv,neut)" ], "mens": [ "N(soort,ev,neut)" ], "arrogantie": [ "N(soort,ev,neut)" ], "eenmaal": [ "Adv(gew,geen_func,stell,onverv)" ], "Weelf": [ "N(eigen,ev,neut)" ], "prrachtig": [ "Adj(attr,stell,onverv)" ], "surfing": [ "N(soort,ev,neut)" ], "Overigens": [ "Adv(gew,geen_func,stell,onverv)" ], "geredigeerd": [ "V(trans,verl_dw,onverv)" ], "nimmer": [ "Adv(gew,onbep)" ], "vergezelde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "ontslag": [ "N(soort,ev,neut)" ], "Sport": [ "N(soort,ev,neut)" ], "omheen": [ "Adv(deel_adv)" ], "gekropen": [ "V(intrans,verl_dw,onverv)" ], "ijdelheid": [ "N(soort,ev,neut)" ], "vogels": [ "N(soort,mv,neut)" ], "syteem": [ "N(soort,ev,neut)" ], "resoluut": [ "Adj(adv,stell,onverv)" ], "centjes": [ "N(soort,mv,neut)" ], "Maltz": [ "N(eigen,ev,neut)" ], "alfabetische": [ "Adj(attr,stell,verv_neut)" ], "glimlach": [ "N(soort,ev,neut)" ], "rekening": [ "N(soort,ev,neut)" ], "onherroepelijk": [ "Adj(adv,stell,onverv)" ], "intree": [ "N(soort,ev,neut)" ], "activiteiten": [ "N(soort,mv,neut)" ], "geboortedorp": [ "N(soort,ev,neut)" ], "antwoordt": [ "V(trans,ott,3,ev)" ], "Klimrozen": [ "N(soort,mv,neut)" ], "nauw": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "puntbaardje": [ "N(soort,ev,neut)" ], "Merton": [ "N(eigen,ev,neut)" ], "schotels": [ "N(soort,mv,neut)" ], "richten": [ "V(trans,inf)" ], "Suiker": [ "N(soort,ev,neut)" ], "faciliteiten": [ "N(soort,mv,neut)" ], "giro-overschrijvingen": [ "N(soort,mv,neut)" ], "lijf": [ "N(soort,ev,neut)" ], "relief": [ "N(soort,ev,neut)" ], "kudde": [ "N(soort,ev,neut)" ], "Queens": [ "N(eigen,ev,neut)" ], "mijnen": [ "N(soort,mv,neut)" ], "Rijssen": [ "N(eigen,ev,neut)" ], "lijn": [ "N(soort,ev,neut)" ], "veert": [ "V(intrans,ott,3,ev)" ], "voorwaarden": [ "N(soort,mv,neut)" ], "wanden": [ "N(soort,mv,neut)" ], "Zeer": [ "Adv(gew,geen_func,stell,onverv)" ], "Capricieux": [ "N(eigen,ev,neut)" ], "toeschouwer": [ "N(soort,ev,neut)" ], "belangrijk": [ "Adj(attr,stell,onverv)" ], "geleverd": [ "V(trans,verl_dw,onverv)" ], "oogschaduw": [ "N(soort,ev,neut)" ], "steun": [ "N(soort,ev,neut)" ], "Vindt": [ "V(trans,ott,2,ev)" ], "Pietje": [ "N(eigen,ev,neut)" ], "Emilia": [ "N(eigen,ev,neut)" ], "orgel": [ "N(soort,ev,neut)" ], "epidemie": [ "N(soort,ev,neut)" ], "Marlene": [ "N(eigen,ev,neut)" ], "goedheid": [ "N(soort,ev,neut)" ], "Bill": [ "N(eigen,ev,neut)" ], "oppervlak": [ "N(soort,ev,neut)" ], "Haag": [ "N(eigen,ev,neut)" ], "kraag": [ "N(soort,ev,neut)" ], "vechtlustige": [ "Adj(attr,stell,verv_neut)" ], "Haal": [ "V(trans,imp)" ], "Tongeren": [ "N(eigen,ev,neut)" ], "kraai": [ "N(soort,ev,neut)" ], "affiches": [ "N(soort,mv,neut)" ], "Spaak": [ "N(eigen,ev,neut)" ], "Schmidt": [ "N(eigen,ev,neut)" ], "Londen": [ "N(eigen,ev,neut)" ], "Haar": [ "Pron(bez,3,ev,neut,attr)", "N(soort,ev,neut)" ], "gerechten": [ "N(soort,mv,neut)" ], "pannetje": [ "N(soort,ev,neut)" ], "Santa": [ "N(eigen,ev,neut)" ], "doorgaans": [ "Adv(gew,geen_func,stell,onverv)" ], "Houd": [ "V(trans,imp)" ], "hangar": [ "N(soort,ev,neut)" ], "deftige": [ "Adj(attr,stell,verv_neut)" ], "brandbaar": [ "Adj(attr,stell,onverv)" ], "Santi": [ "N(eigen,ev,neut)" ], "getrokken": [ "V(trans,verl_dw,onverv)" ], "lila": [ "Adj(zelfst,stell,onverv)" ], "aangelopen": [ "V(intrans,verl_dw,onverv)" ], "eigenaar": [ "N(soort,ev,neut)" ], "PCPA": [ "N(soort,ev,neut)" ], "vrijheid": [ "N(soort,ev,neut)" ], "Glimlachend": [ "V(intrans,teg_dw,onverv)" ], "broertje": [ "N(soort,ev,neut)" ], "omtrent": [ "Prep(voor)" ], "dronken": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "Sowjets": [ "N(soort,mv,neut)" ], "raad": [ "N(soort,ev,neut)" ], "massieve": [ "Adj(attr,stell,verv_neut)" ], "merk": [ "V(trans,ott,1,ev)", "N(soort,ev,neut)" ], "klimt": [ "V(intrans,ott,3,ev)" ], "symboliek": [ "N(soort,ev,neut)" ], "platteland": [ "N(soort,ev,neut)" ], "Zegt": [ "V(trans,ott,3,ev)", "V(trans,ott,2,ev)" ], "Korver": [ "N(eigen,ev,neut)" ], "raam": [ "N(soort,ev,neut)" ], "Montreal": [ "N(eigen,ev,neut)" ], "Gevoed": [ "V(trans,verl_dw,onverv)" ], "Koeprin": [ "N(eigen,ev,neut)" ], "grammofoonopname": [ "N(soort,ev,neut)" ], "verschaffen": [ "V(trans,inf)", "V(trans,inf,subst)" ], "bekroning": [ "N(soort,ev,neut)" ], "honderdduizenden": [ "Num(hoofd,bep,attr,onverv)" ], "samenstelde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Ljubljana": [ "N(eigen,ev,neut)" ], "voetvolk": [ "N(soort,ev,neut)" ], "democratisering": [ "N(soort,ev,neut)" ], "Uffizi": [ "N(eigen,ev,neut)" ], "verspreiden": [ "V(trans,ott,1_of_2_of_3,mv)" ], "kolonisten": [ "N(soort,mv,neut)" ], "wijdt": [ "V(trans,ott,3,ev)" ], "Milton": [ "N(eigen,ev,neut)" ], "blues": [ "N(soort,mv,neut)" ], "hield": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(refl,ovt,1_of_2_of_3,ev)" ], "laboratoria": [ "N(soort,mv,neut)" ], "voortaan": [ "Adv(gew,geen_func,stell,onverv)" ], "wiegen": [ "N(soort,mv,neut)" ], "dagblad": [ "N(soort,ev,neut)" ], "artistieke": [ "Adj(attr,stell,verv_neut)" ], "gisteravond": [ "Adv(gew,geen_func,stell,onverv)" ], "bekend": [ "Adj(attr,stell,onverv)" ], "hielp": [ "V(intrans,ovt,1_of_2_of_3,ev)", "V(trans,ovt,1_of_2_of_3,ev)" ], "speeltuin": [ "N(soort,ev,neut)" ], "rende": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(intrans,ovt,1_of_2_of_3,ev)" ], "beroerder": [ "Adj(attr,vergr,onverv)" ], "vaarten": [ "N(soort,mv,neut)" ], "communiceren": [ "V(intrans,inf)" ], "400.000": [ "Num(hoofd,bep,attr,onverv)" ], "ambities": [ "N(soort,mv,neut)" ], "link": [ "Adj(attr,stell,onverv)" ], "exotische": [ "Adj(attr,stell,verv_neut)" ], "15-jarig": [ "Adj(attr,stell,onverv)" ], "lint": [ "N(soort,ev,neut)" ], "examen": [ "N(soort,ev,neut)" ], "jeugdige": [ "Adj(attr,stell,verv_neut)" ], "stencil": [ "N(soort,ev,neut)" ], "mezelf": [ "Pron(ref,1,ev)" ], "sneeuw": [ "N(soort,ev,neut)" ], "Ruim": [ "Adj(adv,stell,onverv)" ], "Verenigde": [ "N(eigen,mv,neut)" ], "ziekenhuis": [ "N(soort,ev,neut)" ], "potpourri": [ "N(soort,ev,neut)" ], "winkels": [ "N(soort,mv,neut)" ], "Liever": [ "Adj(adv,vergr,onverv)" ], "winkelt": [ "V(intrans,ott,3,ev)" ], "driekwart": [ "Num(hoofd,bep,zelfst,onverv)" ], "grootmoederprincipe": [ "N(soort,ev,neut)" ], "aandacht": [ "N(soort,ev,neut)" ], "fronsen": [ "V(trans,inf)" ], "juiste": [ "Adj(attr,stell,verv_neut)" ], "rade": [ "N(soort,ev,dat)" ], "Aandachtig": [ "Adj(adv,stell,onverv)" ], "middeltje": [ "N(soort,ev,neut)" ], "festivaltent": [ "N(soort,ev,neut)" ], "bonnensysteem": [ "N(soort,ev,neut)" ], "waarbij": [ "Adv(pron,betr)", "Adv(pron,vrag)" ], "hangen": [ "V(trans,inf)", "V(intrans,ott,1_of_2_of_3,mv)", "V(trans,ott,1_of_2_of_3,mv)", "V(intrans,inf)" ], "uitsterving": [ "N(soort,ev,neut)" ], "Enige": [ "Pron(onbep,neut,attr)" ], "namiddag": [ "N(soort,ev,neut)" ], "teruggevallen": [ "V(intrans,verl_dw,onverv)" ], "ansichtkaarten": [ "N(soort,mv,neut)" ], "vissenmoordenaar": [ "N(soort,ev,neut)" ], "vurige": [ "Adj(attr,stell,verv_neut)" ], "Weesp": [ "N(eigen,ev,neut)" ], "periode": [ "N(soort,ev,neut)" ], "Vooral": [ "Adv(gew,geen_func,stell,onverv)" ], "moeilijkheid": [ "N(soort,ev,neut)" ], "schokkende": [ "V(intrans,teg_dw,verv_neut)" ], "arrangeur": [ "N(soort,ev,neut)" ], "Spaans": [ "Adj(zelfst,stell,onverv)" ], "samentrekken": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "virtuoos": [ "Adj(attr,stell,onverv)" ], "reaktievorm": [ "N(soort,ev,neut)" ], "meloen": [ "N(soort,ev,neut)" ], "duidelijkste": [ "Adj(attr,overtr,verv_neut)" ], "haarfijn": [ "Adj(adv,stell,onverv)" ], "Spring": [ "N(eigen,ev,neut)" ], "moeilijke": [ "Adj(attr,stell,verv_neut)" ], "Weinig": [ "Num(hoofd,onbep,attr,stell,onverv)" ], "tikken": [ "V(intrans,inf)" ], "graagte": [ "N(soort,ev,neut)" ], "buitenlanders": [ "N(soort,mv,neut)" ], "Zelf": [ "Pron(aanw,neut,attr,w_zelf)" ], "bochten": [ "N(soort,mv,neut)" ], "ploppertjes": [ "N(soort,mv,neut)" ], "gedacht": [ "V(trans,verl_dw,onverv)" ], "beslissing": [ "N(soort,ev,neut)" ], "punten-telling": [ "N(soort,ev,neut)" ], "oranje": [ "Adj(attr,stell,onverv)", "Adj(zelfst,stell,onverv)" ], "vermoedelijke": [ "Adj(attr,stell,verv_neut)" ], "potente": [ "Adj(attr,stell,verv_neut)" ], "Marianne": [ "N(eigen,ev,neut)" ], "specifiek": [ "Adj(adv,stell,onverv)" ], "synthetisch": [ "Adj(attr,stell,onverv)" ], "Crawford": [ "N(eigen,ev,neut)" ], "daarvan": [ "Adv(pron,aanw)" ], "Friedl": [ "N(eigen,ev,neut)" ], "liefdeskandidaten": [ "N(soort,mv,neut)" ], "verscherpt": [ "V(intrans,verl_dw,onverv)" ], "gesleept": [ "V(trans,verl_dw,onverv)" ], "roze": [ "Adj(zelfst,stell,onverv)" ], "marge": [ "N(soort,ev,neut)" ], "dwalen": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "heerst": [ "V(intrans,ott,3,ev)" ], "tafeltje": [ "N(soort,ev,neut)" ], "ledematen": [ "N(soort,mv,neut)" ], "thee": [ "N(soort,ev,neut)" ], "point": [ "Misc(vreemd)" ], "vetkwabjes": [ "N(soort,mv,neut)" ], "rage": [ "N(soort,ev,neut)" ], "ingebracht": [ "V(trans,verl_dw,onverv)" ], "Moderedactrices": [ "N(soort,mv,neut)" ], "Vijfde": [ "N(eigen,ev,neut)" ], "vermoord": [ "V(trans,ott,1,ev)" ], "vaderlijke": [ "Adj(attr,stell,verv_neut)" ], "goedkoper": [ "Adj(attr,vergr,onverv)" ], "belastingen": [ "N(soort,mv,neut)" ], "maitre": [ "N(soort,ev,neut)" ], "vroege": [ "Adj(attr,stell,verv_neut)" ], "Westeuropese": [ "Adj(attr,stell,verv_neut)" ], "blauwe": [ "Adj(attr,stell,verv_neut)" ], "middelpunt": [ "N(soort,ev,neut)" ], "stevig": [ "Adj(adv,stell,onverv)" ], "eisen": [ "N(soort,mv,neut)" ], "aspecten": [ "N(soort,mv,neut)" ], "rapporteren": [ "V(trans,inf)" ], "ontslagen": [ "V(trans,verl_dw,onverv)" ], "Club-Hotel": [ "N(soort,ev,neut)" ], "protserig": [ "Adj(attr,stell,onverv)" ], "constante": [ "Adj(attr,stell,verv_neut)" ], "koppen": [ "N(soort,mv,neut)" ], "miniatuurtoneel": [ "N(soort,ev,neut)" ], "machines": [ "N(soort,mv,neut)" ], "Hongaarse": [ "Adj(attr,stell,verv_neut)" ], "Hair": [ "N(eigen,ev,neut)" ], "uitzonderlijke": [ "Adj(attr,stell,verv_neut)" ], "keuze": [ "N(soort,ev,neut)" ], "grondslag": [ "N(soort,ev,neut)" ], "krachtiger": [ "Adj(attr,vergr,onverv)" ], "trieste": [ "Adj(attr,stell,verv_neut)" ], "Pepper": [ "N(eigen,ev,neut)" ], "flesje": [ "N(soort,ev,neut)" ], "Gevolg": [ "N(soort,ev,neut)" ], "zware": [ "Adj(attr,stell,verv_neut)" ], "brug": [ "N(soort,ev,neut)" ], "naargeestige": [ "Adj(attr,stell,verv_neut)" ], "brui": [ "N(soort,ev,neut)" ], "massacommunicatie": [ "N(soort,ev,neut)" ], "krulspelden": [ "N(soort,mv,neut)" ], "moedersterfte": [ "N(soort,ev,neut)" ], "gewonnen": [ "V(intrans,verl_dw,onverv)", "V(trans,verl_dw,onverv)" ], "krullen": [ "N(soort,mv,neut)" ], "figuurzaag": [ "N(soort,ev,neut)" ], "slag": [ "N(soort,ev,neut)" ], "Simon": [ "N(eigen,ev,neut)" ], "wrede": [ "Adj(attr,stell,verv_neut)" ], "specialistische": [ "Adj(attr,stell,verv_neut)" ], "gracht": [ "N(soort,ev,neut)" ], "voel": [ "V(trans,ott,1,ev)", "V(refl,ott,1,ev)" ], "rancuneus": [ "Adj(attr,stell,onverv)" ], "positieve": [ "Adj(attr,stell,verv_neut)" ], "zwart": [ "Adj(attr,stell,onverv)", "Adj(zelfst,stell,onverv)" ], "blondine": [ "N(soort,ev,neut)" ], "slak": [ "N(soort,ev,neut)" ], "Ruffo": [ "N(eigen,ev,neut)" ], "gezond": [ "Adj(attr,stell,onverv)" ], "recepten": [ "N(soort,mv,neut)" ], "voer": [ "N(soort,ev,neut)" ], "verlaten": [ "V(trans,verl_dw,onverv)", "V(trans,inf)" ], "badhuish": [ "Misc(vreemd)" ], "slap": [ "Adj(attr,stell,onverv)" ], "voet": [ "N(soort,ev,neut)" ], "sukses": [ "N(soort,ev,neut)" ], "Hartog": [ "N(eigen,ev,neut)" ], "Sharon": [ "N(eigen,ev,neut)" ], "uitgezonderd": [ "Conj(onder,met_fin)" ], "lijsten": [ "N(soort,mv,neut)" ], "opdraafde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "behandeld": [ "V(trans,verl_dw,onverv)" ], "goedverzorgde": [ "Adj(attr,stell,verv_neut)" ], "zwenkte": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "Jackie": [ "N(eigen,ev,neut)" ], "gedonder": [ "N(soort,ev,neut)" ], "smaakt": [ "V(intrans,ott,3,ev)" ], "gastheer": [ "N(soort,ev,neut)" ], "imponeerde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "vertrokken": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "commentator": [ "N(soort,ev,neut)" ], "zuigt": [ "V(trans,ott,3,ev)" ], "Binnen": [ "N(eigen,ev,neut)" ], "Geef": [ "V(trans,imp)", "V(refl,ott,2,ev)", "N(eigen,ev,neut)" ], "behandelt": [ "V(trans,ott,3,ev)" ], "wreed": [ "Adj(attr,stell,onverv)" ], "vakmensen": [ "N(soort,mv,neut)" ], "onderdrukt": [ "V(trans,verl_dw,onverv)" ], "noorden": [ "N(soort,ev,neut)" ], "babbeltje": [ "N(soort,ev,neut)" ], "Geen": [ "Pron(onbep,neut,attr)" ], "ZIJN": [ "Pron(bez,3,ev,neut,attr)" ], "nadenken": [ "V(intrans,inf)" ], "Gees": [ "N(eigen,mv,neut)" ], "bijeenkomsten": [ "N(soort,mv,neut)" ], "fiasco": [ "N(soort,ev,neut)" ], "London": [ "N(eigen,ev,neut)" ], "McCarthy": [ "N(eigen,ev,neut)" ], "Bea": [ "N(eigen,ev,neut)" ], "Bee": [ "N(eigen,mv,neut)" ], "lichaamstaal": [ "N(soort,ev,neut)" ], "verzoeken": [ "V(trans,inf)" ], "bundel": [ "N(soort,ev,neut)" ], "Bourget": [ "N(eigen,ev,neut)" ], "mobilisatie": [ "N(soort,ev,neut)" ], "Acifit": [ "N(eigen,ev,neut)" ], "Bel": [ "V(trans,imp)" ], "Ben": [ "N(eigen,ev,neut)", "V(hulp_of_kopp,ott,1,ev)" ], "tyfus": [ "N(soort,ev,neut)" ], "Gerard": [ "N(eigen,ev,neut)" ], "bevestigd": [ "V(trans,verl_dw,onverv)" ], "hopeloos": [ "Adj(adv,stell,onverv)" ], "formuleren": [ "V(trans,inf)" ], "vlakbij": [ "Adv(gew,geen_func,stell,onverv)" ], "Half": [ "Adj(adv,stell,onverv)" ], "dassen": [ "N(soort,mv,neut)" ], "Houdt": [ "V(intrans,ott,3,ev)" ], "demografische": [ "Adj(attr,stell,verv_neut)" ], "uitkering": [ "N(soort,ev,neut)" ], "gekookt": [ "V(intrans,verl_dw,onverv)" ], "lengtevariaties": [ "N(soort,mv,neut)" ], "breigarens": [ "N(soort,mv,neut)" ], "bieten": [ "N(soort,mv,neut)" ], "tweeenzestig": [ "Num(hoofd,bep,attr,onverv)" ], "kerstavond": [ "N(soort,ev,neut)" ], "markt": [ "N(soort,ev,neut)" ], "spuit": [ "N(soort,ev,neut)" ], "sherry": [ "N(soort,ev,neut)" ], "overhouden": [ "V(trans,inf)" ], "Zelfexpressie": [ "N(eigen,ev,neut)" ], "arbeidsvoorwaarden": [ "N(soort,mv,neut)" ], "tweeduizend": [ "Num(hoofd,bep,attr,onverv)" ], "dokter": [ "N(soort,ev,neut)" ], "bevestigt": [ "V(trans,ott,3,ev)" ], "dodelijk": [ "Adj(adv,stell,onverv)" ], "moederlijke": [ "Adj(attr,stell,verv_neut)" ], "Levering": [ "N(soort,ev,neut)" ], "concert": [ "N(soort,ev,neut)" ], "schoolkind": [ "N(soort,ev,neut)" ], "vakbladen": [ "N(soort,mv,neut)" ], "Classics": [ "Misc(vreemd)" ], "spaarzaam": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "gebeurd": [ "V(intrans,verl_dw,onverv)" ], "wuivend": [ "V(intrans,teg_dw,onverv)" ], "bezochten": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "rukte": [ "V(intrans,ovt,1_of_2_of_3,ev)", "V(trans,ovt,1_of_2_of_3,ev)" ], "sportvis": [ "N(soort,ev,neut)" ], "Leger": [ "N(eigen,ev,neut)" ], "Casso": [ "N(eigen,ev,neut)" ], "beinvloeden": [ "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "Vrije": [ "N(eigen,ev,neut)" ], "huren": [ "V(trans,inf)" ], "gebeurt": [ "V(intrans,ott,3,ev)" ], "hoofdstuk": [ "N(soort,ev,neut)" ], "Bestond": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "ontwikkelde": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(intrans,verl_dw,verv_neut)" ], "tijdlang": [ "N(soort,ev,neut)" ], "tweeling": [ "N(soort,ev,neut)" ], "aureool": [ "N(soort,ev,neut)" ], "vooruit": [ "Adv(gew,geen_func,stell,onverv)" ], "30,-": [ "Num(hoofd,bep,attr,onverv)" ], "Reich": [ "N(eigen,ev,neut)" ], "verdwijnt": [ "V(intrans,ott,3,ev)" ], "saunabaden": [ "N(soort,mv,neut)" ], "wonder": [ "N(soort,ev,neut)" ], "telefooncel": [ "N(soort,ev,neut)" ], "bedrijvige": [ "Adj(attr,stell,verv_neut)" ], "anzichtschone": [ "Adj(attr,stell,verv_neut)" ], "Hand": [ "N(soort,ev,neut)" ], "weken": [ "N(soort,mv,neut)", "V(trans,inf)", "V(intrans,ovt,1_of_2_of_3,mv)" ], "laakte": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "zelfde": [ "Pron(aanw,neut,attr)" ], "rigoreuze": [ "Adj(attr,stell,verv_neut)" ], "ingelicht": [ "V(trans,verl_dw,onverv)" ], "compensatie": [ "N(soort,ev,neut)" ], "onderlaken": [ "N(soort,ev,neut)" ], "hetzelfde": [ "Pron(aanw,neut,attr)", "Pron(aanw,neut,zelfst)" ], "mejuffrouwen": [ "N(soort,mv,neut)" ], "Hans": [ "N(eigen,ev,neut)" ], "Mierlo": [ "N(eigen,ev,neut)" ], "goed-Amerikaanse": [ "Adj(attr,stell,verv_neut)" ], "freule": [ "N(soort,ev,neut)" ], "krant": [ "N(soort,ev,neut)" ], "religieuze": [ "Adj(attr,stell,verv_neut)" ], "roemt": [ "V(trans,ott,3,ev)" ], "Gelderse": [ "Adj(attr,stell,verv_neut)" ], "conflictsituatie": [ "N(soort,ev,neut)" ], "kippe-ei": [ "N(soort,ev,neut)" ], "spijlen": [ "N(soort,mv,neut)" ], "vrijwel": [ "Adv(gew,geen_func,stell,onverv)" ], "diner": [ "N(soort,ev,neut)" ], "langwerpige": [ "Adj(attr,stell,verv_neut)" ], "lijstje": [ "N(soort,ev,neut)" ], "CHU": [ "N(eigen,ev,neut)" ], "rand": [ "N(soort,ev,neut)" ], "zoveel": [ "Num(hoofd,onbep,attr,stell,onverv)", "Num(hoofd,onbep,zelfst,stell,onverv)" ], "daarover": [ "Adv(pron,aanw)" ], "vette": [ "Adj(attr,stell,verv_neut)" ], "afdaalde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "nazomer": [ "N(soort,ev,neut)" ], "nam": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(intrans,ovt,1_of_2_of_3,ev)" ], "georganiseerd": [ "V(trans,verl_dw,onverv)" ], "ruzie": [ "N(soort,ev,neut)" ], "koperplaatbewerking": [ "N(soort,ev,neut)" ], "nat": [ "Adj(attr,stell,onverv)" ], "Bij": [ "Prep(voor)" ], "openlijker": [ "Adj(adv,vergr,onverv)" ], "sierprutsjes": [ "N(soort,mv,neut)" ], "glorieuze": [ "Adj(attr,stell,verv_neut)" ], "optreden": [ "V(intrans,inf)", "V(intrans,inf,subst)", "N(soort,ev,neut)" ], "Kennedyverleden": [ "N(soort,ev,neut)" ], "buitenissige": [ "Adj(attr,stell,verv_neut)" ], "benadering": [ "N(soort,ev,neut)" ], "knollen": [ "N(soort,mv,neut)" ], "voorhoofd": [ "N(soort,ev,neut)" ], "Tsjechoslowakije": [ "N(eigen,ev,neut)" ], "kelders": [ "N(soort,mv,neut)" ], "55e": [ "Num(rang,bep,attr,onverv)" ], "Jazeker": [ "Int" ], "aanbevolen": [ "V(trans,verl_dw,onverv)" ], "koning": [ "N(soort,ev,neut)" ], "heimelijke": [ "Adj(attr,stell,verv_neut)" ], "beseffen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "lords": [ "N(soort,mv,neut)" ], "uitdrukken": [ "V(trans,inf,subst)" ], "arbitrage": [ "N(soort,ev,neut)" ], "ornament": [ "N(soort,ev,neut)" ], "ontzeggen": [ "V(trans,inf)" ], "kokende": [ "V(intrans,teg_dw,verv_neut)" ], "Ruud": [ "N(eigen,ev,neut)" ], "Iedereen": [ "Pron(onbep,neut,zelfst)" ], "weleens": [ "Adv(gew,geen_func,stell,onverv)" ], "zelfs": [ "Adv(gew,geen_func,stell,onverv)" ], "gepikeerd": [ "V(trans,verl_dw,onverv)" ], "huishouden": [ "N(soort,ev,neut)" ], "frei": [ "Misc(vreemd)" ], "4,50": [ "Num(hoofd,bep,attr,onverv)" ], "lijden": [ "V(intrans,inf)", "V(intrans,ott,1_of_2_of_3,mv)" ], "volk": [ "N(soort,ev,neut)" ], "Festival": [ "N(eigen,ev,neut)" ], "Hindoe": [ "N(soort,ev,neut)" ], "overrompelt": [ "V(trans,ott,3,ev)" ], "woonden": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "deftiger": [ "Adj(attr,vergr,onverv)" ], "beschimmelde": [ "V(intrans,verl_dw,verv_neut)" ], "Vermoedelijk": [ "Adj(adv,stell,onverv)" ], "mystiek": [ "N(soort,ev,neut)" ], "punten": [ "N(soort,mv,neut)" ], "eilanden": [ "N(soort,mv,neut)" ], "roept": [ "V(trans,ott,3,ev)", "V(intrans,ott,3,ev)" ], "Stone": [ "N(eigen,ev,neut)" ], "drinke": [ "V(trans,conj)" ], "Geld": [ "N(soort,ev,neut)" ], "ingewikkelde": [ "Adj(attr,stell,verv_neut)" ], "Westen": [ "N(soort,ev,neut)" ], "deskundig": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "onderzoekers": [ "N(soort,mv,neut)" ], "Huisarts": [ "N(eigen,ev,neut)" ], "Hare": [ "N(eigen,ev,neut)" ], "Dijkstra": [ "N(eigen,ev,neut)" ], "slim": [ "Adj(adv,stell,onverv)" ], "Moray": [ "N(eigen,ev,neut)" ], "RutSpeer": [ "N(eigen,ev,neut)" ], "drinkt": [ "V(trans,ott,3,ev)", "V(intrans,ott,3,ev)" ], "vacuum": [ "N(soort,ev,neut)" ], "wijst": [ "V(intrans,ott,3,ev)", "V(trans,ott,3,ev)" ], "Montaldo": [ "N(eigen,ev,neut)" ], "verwerkt": [ "V(trans,verl_dw,onverv)" ], "Beiroet": [ "N(eigen,ev,neut)" ], "brandbare": [ "Adj(attr,stell,verv_neut)" ], "piet": [ "N(soort,ev,neut)" ], "volgden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "bedrag": [ "N(soort,ev,neut)" ], "uitlokken": [ "V(trans,inf)" ], "adviseur": [ "N(soort,ev,neut)" ], "Kaarsdragers": [ "N(soort,mv,neut)" ], "loslaten": [ "V(trans,inf)" ], "bouwkundig": [ "Adj(attr,stell,onverv)" ], "lonend": [ "V(intrans,teg_dw,onverv)" ], "beeldcassettes": [ "N(soort,mv,neut)" ], "Aanleiding": [ "N(soort,ev,neut)" ], "hulpbehoevende": [ "Adj(attr,stell,verv_neut)" ], "talismannen": [ "N(soort,mv,neut)" ], "branden": [ "V(trans,ott,1_of_2_of_3,mv)", "V(trans,inf)" ], "vond": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "onverschillig": [ "Adj(adv,stell,onverv)" ], "aktie": [ "N(soort,ev,neut)" ], "genageld": [ "V(trans,verl_dw,onverv)" ], "rottijd": [ "N(soort,ev,neut)" ], "hedendaagse": [ "Adj(attr,stell,verv_neut)" ], "Straks": [ "Adv(gew,geen_func,stell,onverv)" ], "rare": [ "Adj(attr,stell,verv_neut)" ], "doende": [ "V(intrans,teg_dw,verv_neut)" ], "nee": [ "Int" ], "piraterij": [ "N(soort,ev,neut)" ], "naief": [ "Adj(attr,stell,onverv)" ], "saxofoon": [ "N(soort,ev,neut)" ], "reuzevent": [ "N(soort,ev,neut)" ], "nek": [ "N(soort,ev,neut)" ], "gordijn": [ "N(soort,ev,neut)" ], "toneelschool": [ "N(soort,ev,neut)" ], "flatje": [ "N(soort,ev,neut)" ], "beledigen": [ "V(trans,inf)" ], "riddergoed": [ "N(soort,ev,neut)" ], "net": [ "Adv(gew,geen_func,stell,onverv)", "N(soort,ev,neut)" ], "Lolita-achtig": [ "Adj(attr,stell,onverv)" ], "Nkima": [ "N(eigen,ev,neut)" ], "Gene": [ "N(eigen,ev,neut)" ], "beluisteren": [ "V(trans,inf)" ], "anti-conceptie": [ "N(soort,ev,neut)" ], "jongleren": [ "V(intrans,inf)" ], "Leeuwarden": [ "N(eigen,ev,neut)" ], "transplantaties": [ "N(soort,mv,neut)" ], "zocht": [ "V(intrans,ovt,1_of_2_of_3,ev)", "V(trans,ovt,1_of_2_of_3,ev)" ], "percentsgewijs": [ "Adj(adv,stell,onverv)" ], "staarde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "voor": [ "Prep(voor)", "Conj(onder,met_inf)", "Adv(deel_v)", "Adv(gew,geen_func,stell,onverv)", "N(eigen,ev,neut)", "N(soort,ev,neut)", "Conj(onder,met_fin)", "Adv(deel_adv)" ], "voos": [ "Adj(attr,stell,onverv)" ], "meerdere": [ "Num(hoofd,onbep,attr,vergr,verv_neut)" ], "doelstelling": [ "N(soort,ev,neut)" ], "volgende": [ "V(intrans,teg_dw,verv_neut)" ], "Bestaat": [ "V(intrans,ott,3,ev)" ], "extra": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "kwamen": [ "V(intrans,ovt,1_of_2_of_3,mv)", "V(trans,ovt,1_of_2_of_3,mv)" ], "draagt": [ "V(trans,ott,3,ev)" ], "tekent": [ "V(trans,ott,3,ev)" ], "artiesten": [ "N(soort,mv,neut)" ], "meekrijgen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "onderdrukking": [ "N(soort,ev,neut)" ], "topplaats": [ "N(soort,ev,neut)" ], "kunstbenen": [ "N(soort,mv,neut)" ], "uitgestreken": [ "V(trans,verl_dw,onverv)" ], "krampachtig": [ "Adj(adv,stell,onverv)" ], "overgedragen": [ "V(trans,verl_dw,onverv)" ], "fris": [ "Adj(adv,stell,onverv)" ], "gevoelens": [ "N(soort,mv,neut)" ], "onoverbiddelijke": [ "Adj(attr,stell,verv_neut)" ], "4,95": [ "Num(hoofd,bep,attr,onverv)" ], "aspect": [ "N(soort,ev,neut)" ], "rechtbank": [ "N(soort,ev,neut)" ], "onmiddellijk": [ "Adj(adv,stell,onverv)" ], "kinderverhalen": [ "N(soort,mv,neut)" ], "Monsieur": [ "N(soort,ev,neut)" ], "Bob": [ "N(eigen,ev,neut)" ], "schildpad": [ "N(soort,ev,neut)" ], "ontmoedigt": [ "V(trans,ott,3,ev)" ], "twee": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "Lord": [ "N(eigen,ev,neut)" ], "praktisch": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "vogelbescherming": [ "N(soort,ev,neut)" ], "Boo": [ "N(eigen,ev,neut)" ], "fresco's": [ "N(soort,mv,neut)" ], "zovele": [ "Num(hoofd,onbep,attr,stell,verv_neut)" ], "aanstaande": [ "Adj(attr,stell,verv_neut)" ], "spreiding": [ "N(soort,ev,neut)" ], "Bos": [ "N(eigen,ev,neut)" ], "Fijn": [ "Adj(attr,stell,onverv)" ], "Christ'l": [ "N(eigen,ev,neut)" ], "planken": [ "N(soort,mv,neut)" ], "pasta": [ "N(soort,ev,neut)" ], "puntje": [ "N(soort,ev,neut)" ], "plotseling": [ "Adj(adv,stell,onverv)" ], "netjes": [ "Adv(gew,geen_func,stell,onverv)" ], "Friese": [ "Adj(attr,stell,verv_neut)" ], "onnodige": [ "Adj(attr,stell,verv_neut)" ], "straffen": [ "V(intrans,inf)", "V(intrans,inf,subst)" ], "gemakkelijker": [ "Adj(adv,vergr,onverv)" ], "draait": [ "V(intrans,ott,3,ev)", "V(trans,ott,3,ev)" ], "betrouwbaarheid": [ "N(soort,ev,neut)" ], "Frieso": [ "N(eigen,ev,neut)" ], "rauw": [ "Adj(attr,stell,onverv)" ], "masseuse": [ "N(soort,ev,neut)" ], "doorzocht": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "even": [ "Adv(gew,geen_func,stell,onverv)" ], "wijnkopers": [ "N(soort,mv,neut)" ], "betreurde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "gedecoreerd": [ "V(trans,verl_dw,onverv)" ], "komen": [ "V(intrans,inf)", "V(hulp_of_kopp,inf)", "V(intrans,ott,1_of_2_of_3,mv)" ], "vork": [ "N(soort,ev,neut)" ], "vorm": [ "N(soort,ev,neut)" ], "Staphorst": [ "N(eigen,ev,neut)" ], "verwachten": [ "V(trans,inf)" ], "symfonieorkest": [ "N(soort,ev,neut)" ], "eigenaars": [ "N(soort,mv,neut)" ], "drift": [ "N(soort,ev,neut)" ], "pijn": [ "N(soort,ev,neut)" ], "pijp": [ "N(soort,ev,neut)" ], "Sontag": [ "N(eigen,ev,neut)" ], "daagt": [ "V(intrans,ott,3,ev)" ], "dollars": [ "N(soort,mv,neut)" ], "eiste": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "evenmin": [ "Adv(gew,geen_func,stell,onverv)" ], "vierenzeventigste": [ "Num(rang,bep,zelfst,onverv)" ], "toestellen": [ "N(soort,mv,neut)" ], "joviaal": [ "Adj(adv,stell,onverv)" ], "Majesteit": [ "N(eigen,ev,neut)" ], "dramatisch": [ "Adj(attr,stell,onverv)" ], "schippers": [ "N(soort,mv,neut)" ], "serieus": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "slok": [ "N(soort,ev,neut)" ], "opnamen": [ "N(soort,mv,neut)" ], "sporthal": [ "N(soort,ev,neut)" ], "slaagde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "Laan": [ "N(eigen,ev,neut)" ], "rawi": [ "N(soort,ev,neut)" ], "Gert": [ "N(eigen,ev,neut)" ], "slot": [ "N(soort,ev,neut)" ], "lagere-schooltijd": [ "N(soort,ev,neut)" ], "zondagavond": [ "N(soort,ev,neut)" ], "kreeften": [ "N(soort,mv,neut)" ], "hitst": [ "V(trans,ott,3,ev)" ], "bezienswaardigheid": [ "N(soort,ev,neut)" ], "flatgebouwen": [ "N(soort,mv,neut)" ], "Laat": [ "V(hulp,imp)", "V(trans,imp)", "V(hulp,ott,1,ev)", "V(hulp,ott,3,ev)", "Adj(adv,stell,onverv)" ], "kapitaalkrachtige": [ "Adj(attr,stell,verv_neut)" ], "Schinveld": [ "N(eigen,ev,neut)" ], "Staat": [ "V(intrans,ott,3,ev)" ], "nl.": [ "Adv(gew,geen_func,stell,onverv)" ], "spaarzame": [ "Adj(attr,stell,verv_neut)" ], "sjiekste": [ "Adj(attr,overtr,verv_neut)" ], "dingen": [ "N(soort,mv,neut)" ], "verkrachting": [ "N(soort,ev,neut)" ], "modinettes": [ "N(soort,mv,neut)" ], "wijze": [ "N(soort,ev,neut)", "Adj(attr,stell,verv_neut)" ], "geaccepteerd": [ "V(trans,verl_dw,onverv)" ], "handelingen": [ "N(soort,mv,neut)" ], "actief": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "hitte": [ "N(soort,ev,neut)" ], "Theresia": [ "N(eigen,ev,neut)" ], "dubbelzinnigheid": [ "N(soort,ev,neut)" ], "gevallen": [ "N(soort,mv,neut)", "V(intrans,verl_dw,onverv)" ], "tijdvak": [ "N(soort,ev,neut)" ], "kinderverlamming": [ "N(soort,ev,neut)" ], "beslotenheid": [ "N(soort,ev,neut)" ], "hoorde": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(intrans,ovt,1_of_2_of_3,ev)" ], "vaag": [ "Adj(attr,stell,onverv)" ], "uitsluitend": [ "Adv(gew,geen_func,stell,onverv)" ], "Voorts": [ "Adv(gew,geen_func,stell,onverv)" ], "pils": [ "N(soort,ev,neut)" ], "vaak": [ "Adv(gew,geen_func,stell,onverv)" ], "geimporteerde": [ "V(trans,verl_dw,verv_neut)" ], "verwensingen": [ "N(soort,mv,neut)" ], "Eddie": [ "N(eigen,ev,neut)" ], "betoog": [ "N(soort,ev,neut)" ], "hobbelpaard": [ "N(soort,ev,neut)" ], "commissie": [ "N(soort,ev,neut)" ], "edith": [ "N(eigen,ev,neut)" ], "vijftien": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "samenwerkend": [ "V(intrans,teg_dw,onverv)" ], "woedend": [ "V(intrans,teg_dw,onverv)" ], "homoseksueel": [ "N(soort,ev,neut)" ], "Fins": [ "Adj(attr,stell,onverv)" ], "twaalf-en-een-half": [ "Num(hoofd,bep,attr,onverv)" ], "slachtoffer": [ "N(soort,ev,neut)" ], "vulgaire": [ "Adj(attr,stell,verv_neut)" ], "commentaar": [ "N(soort,ev,neut)" ], "gepraat": [ "V(intrans,verl_dw,onverv)" ], "pesah": [ "N(eigen,ev,neut)" ], "Leven": [ "N(soort,ev,neut)" ], "opgediend": [ "V(trans,verl_dw,onverv)" ], "plaatselijke": [ "Adj(attr,stell,verv_neut)" ], "tenthuisjes": [ "N(soort,mv,neut)" ], "luchtbuidel": [ "N(soort,ev,neut)" ], "Quadrille": [ "N(eigen,ev,neut)" ], "paradis": [ "Misc(vreemd)" ], "bromfietser": [ "N(soort,ev,neut)" ], "House": [ "N(eigen,ev,neut)" ], "Residence": [ "Misc(vreemd)" ], "compartimentjes": [ "N(soort,mv,neut)" ], "overzien": [ "V(trans,inf)" ], "gevonden": [ "V(trans,verl_dw,onverv)" ], "verhuizing": [ "N(soort,ev,neut)" ], "republikeinen": [ "N(soort,mv,neut)" ], "aangesproken": [ "V(trans,verl_dw,onverv)" ], "voorstel": [ "N(soort,ev,neut)" ], "toneelstukken": [ "N(soort,mv,neut)" ], "poeier": [ "N(soort,ev,neut)" ], "gezakt": [ "V(intrans,verl_dw,onverv)" ], "tweede": [ "Num(rang,bep,attr,onverv)", "Num(rang,bep,zelfst,onverv)" ], "Wolkow": [ "N(eigen,ev,neut)" ], "sjoemelen": [ "V(trans,inf)" ], "stoplichten": [ "N(soort,mv,neut)" ], "kindermishandeling": [ "N(soort,ev,neut)" ], "ontbreekt": [ "V(intrans,ott,3,ev)" ], "afwijkende": [ "V(intrans,teg_dw,verv_neut)" ], "mannetjes": [ "N(soort,mv,neut)" ], "asperges": [ "N(soort,mv,neut)" ], "Langlauf": [ "N(soort,ev,neut)" ], "toeval": [ "N(soort,ev,neut)" ], "spannen": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "aanvallige": [ "Adj(attr,stell,verv_neut)" ], "wezen": [ "V(hulp_of_kopp,inf)", "N(soort,ev,neut)" ], "no.": [ "N(soort,ev,neut)" ], "vergissen": [ "V(refl,inf)" ], "bewogen": [ "Adj(attr,stell,onverv)" ], "opzeggen": [ "V(intrans,inf)" ], "aarzelend": [ "V(intrans,teg_dw,onverv)" ], "moment": [ "N(soort,ev,neut)" ], "ontdekte": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "supermarkets": [ "N(soort,mv,neut)" ], "Catac": [ "N(eigen,ev,neut)" ], "spreekt": [ "V(intrans,ott,3,ev)", "V(trans,ott,3,ev)" ], "gegaan": [ "V(intrans,verl_dw,onverv)", "V(trans,verl_dw,onverv)" ], "Loenochod": [ "N(eigen,ev,neut)" ], "Wiegel": [ "N(eigen,ev,neut)" ], "betaald": [ "V(trans,verl_dw,onverv)" ], "aanmerkelijk": [ "Adj(adv,stell,onverv)" ], "But": [ "Misc(vreemd)" ], "Atletico": [ "N(eigen,ev,neut)" ], "schipbreuk": [ "N(soort,ev,neut)" ], "genoteerd": [ "V(trans,verl_dw,onverv)" ], "Drente": [ "N(eigen,ev,neut)" ], "geneesheer-directeur": [ "N(soort,ev,neut)" ], "koppeling": [ "N(soort,ev,neut)" ], "belastbare": [ "Adj(attr,stell,verv_neut)" ], "berggebieden": [ "N(soort,mv,neut)" ], "onwil": [ "N(soort,ev,neut)" ], "verleend": [ "V(trans,verl_dw,onverv)" ], "tweeen": [ "Num(hoofd,bep,zelfst,onverv)" ], "familieleden": [ "N(soort,mv,neut)" ], "Deskundigheid": [ "N(soort,ev,neut)" ], "genezingsbehoefte": [ "N(soort,ev,neut)" ], "snaveltje": [ "N(soort,ev,neut)" ], "Magisch": [ "Adj(attr,stell,onverv)" ], "Piraeus": [ "N(eigen,ev,neut)" ], "pomponvormige": [ "Adj(attr,stell,verv_neut)" ], "deuren": [ "N(soort,mv,neut)" ], "verleent": [ "V(trans,ott,3,ev)" ], "struktuur": [ "N(soort,ev,neut)" ], "behalen": [ "V(trans,inf)" ], "klinken": [ "V(intrans,inf)" ], "mankement": [ "N(soort,ev,neut)" ], "broertjes": [ "N(soort,mv,neut)" ], "scholen": [ "N(soort,mv,neut)" ], "wanbegrip": [ "N(soort,ev,neut)" ], "Sssst": [ "Int" ], "zoal": [ "Adv(gew,aanw)" ], "elkaar": [ "Pron(rec,neut)" ], "notariele": [ "Adj(attr,stell,verv_neut)" ], "meren": [ "V(intrans,inf)" ], "verpanjerd": [ "V(trans,verl_dw,onverv)" ], "provincies": [ "N(soort,mv,neut)" ], "adres": [ "N(soort,ev,neut)" ], "oceaanoppervlak": [ "N(soort,ev,neut)" ], "nog": [ "Adv(gew,geen_func,stell,onverv)" ], "bovenal": [ "Adv(gew,geen_func,stell,onverv)" ], "onzegbaars": [ "Adj(attr,stell,verv_gen)" ], "biologisch": [ "Adj(attr,stell,onverv)" ], "vooruitstrevende": [ "Adj(attr,stell,verv_neut)" ], "wijn-publicisten": [ "N(soort,mv,neut)" ], "kastje": [ "N(soort,ev,neut)" ], "behulpzaamheid": [ "N(soort,ev,neut)" ], "doppen": [ "V(trans,inf)" ], "Roode": [ "N(eigen,ev,neut)" ], "kuste": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "sexshops": [ "N(soort,mv,neut)" ], "not": [ "Misc(vreemd)" ], "nou": [ "Adv(gew,aanw)", "Int" ], "coach": [ "N(soort,ev,neut)" ], "massief": [ "Adj(attr,stell,onverv)" ], "Poema's": [ "N(eigen,mv,neut)" ], "garderobe": [ "N(soort,ev,neut)" ], "parochiehuis": [ "N(soort,ev,neut)" ], "ouderwetse": [ "Adj(attr,stell,verv_neut)" ], "vooruitzichten": [ "N(soort,mv,neut)" ], "knap": [ "Adj(attr,stell,onverv)" ], "haven": [ "N(soort,ev,neut)" ], "ernst": [ "N(soort,ev,neut)" ], "haver": [ "N(soort,ev,neut)" ], "verwonden": [ "V(trans,inf)" ], "geheime": [ "Adj(attr,stell,verv_neut)" ], "weggegooid": [ "V(trans,verl_dw,onverv)" ], "werkruimte": [ "N(soort,ev,neut)" ], "opgetogen": [ "Adj(attr,stell,onverv)" ], "vurig": [ "Adj(adv,stell,onverv)" ], "blootstellen": [ "V(intrans,inf)" ], "overtollige": [ "Adj(attr,stell,verv_neut)" ], "verpesten": [ "V(trans,inf)" ], "nr.": [ "N(soort,ev,neut)" ], "vroeg": [ "V(trans,ovt,1_of_2_of_3,ev)", "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "woordenstroom": [ "N(soort,ev,neut)" ], "Gelukkig": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "borrelende": [ "V(intrans,teg_dw,verv_neut)" ], "Schimmen": [ "N(soort,mv,neut)" ], "subsidie": [ "N(soort,ev,neut)" ], "uitgekeken": [ "V(intrans,verl_dw,onverv)" ], "vage": [ "Adj(attr,stell,verv_neut)" ], "duimpje": [ "N(soort,ev,neut)" ], "onwettig": [ "Adj(attr,stell,onverv)" ], "details": [ "N(soort,mv,neut)" ], "piassen": [ "N(soort,mv,neut)" ], "gezaaid": [ "V(trans,verl_dw,onverv)" ], "inwendig": [ "Adj(adv,stell,onverv)" ], "ijver": [ "N(soort,ev,neut)" ], "moraal": [ "N(soort,ev,neut)" ], "bewerkelijk": [ "Adj(attr,stell,onverv)" ], "spinazie": [ "N(soort,ev,neut)" ], "vijver": [ "N(soort,ev,neut)" ], "Elaine": [ "N(eigen,ev,neut)" ], "'30": [ "Num(hoofd,bep,attr,onverv)" ], "buffet": [ "N(soort,ev,neut)" ], "toekomstige": [ "Adj(attr,stell,verv_neut)" ], "apart": [ "Adj(attr,stell,onverv)" ], "rustige": [ "Adj(attr,stell,verv_neut)" ], "patiente": [ "N(soort,ev,neut)" ], "Ervaringsfeiten": [ "N(soort,mv,neut)" ], "Judith": [ "N(eigen,ev,neut)" ], "beste": [ "Adj(attr,overtr,verv_neut)", "Adj(zelfst,overtr,onverv)", "Adj(adv,vergr,verv_neut)", "Adj(zelfst,overtr,verv_neut)" ], "veiligheidspin": [ "N(soort,ev,neut)" ], "Sinds": [ "Conj(onder,met_fin)" ], "appel": [ "N(soort,ev,neut)" ], "terecht": [ "Adv(gew,geen_func,stell,onverv)" ], "zelve": [ "Pron(aanw,neut,attr,w_zelf)" ], "Amerika": [ "N(eigen,ev,neut)" ], "evoluties": [ "N(soort,mv,neut)" ], "geslachtsleven": [ "N(soort,ev,neut)" ], "Hierbij": [ "Adv(pron,aanw)" ], "zorgt": [ "V(intrans,ott,3,ev)" ], "verstoring": [ "N(soort,ev,neut)" ], "lichtstad": [ "N(soort,ev,neut)" ], "lawaai": [ "N(soort,ev,neut)" ], "oorzaak": [ "N(soort,ev,neut)" ], "Pansy": [ "N(eigen,ev,neut)" ], "onbewust": [ "Adj(adv,stell,onverv)" ], "Nivernais": [ "N(eigen,ev,neut)" ], "Barrett": [ "N(eigen,ev,neut)" ], "zoek": [ "Adv(gew,geen_func,stell,onverv)", "V(trans,ott,1,ev)" ], "budgetten": [ "N(soort,mv,neut)" ], "aanbood": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "zoet": [ "Adj(attr,stell,onverv)" ], "moraal-code": [ "N(soort,ev,neut)" ], "fenomeen": [ "N(soort,ev,neut)" ], "cholera": [ "N(soort,ev,neut)" ], "genre-aquarellen": [ "N(soort,mv,neut)" ], "Astruc": [ "N(eigen,ev,neut)" ], "klopten": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "kleurloos": [ "Adj(attr,stell,onverv)" ], "Astrud": [ "N(eigen,ev,neut)" ], "collega": [ "N(soort,ev,neut)" ], "vanavond": [ "Adv(gew,geen_func,stell,onverv)" ], "waarschuwing": [ "N(soort,ev,neut)" ], "hennep": [ "N(soort,ev,neut)" ], "Minnaars": [ "N(eigen,ev,neut)" ], "Zuidpool": [ "N(eigen,ev,neut)" ], "tijde": [ "N(soort,ev,dat)" ], "Kees": [ "N(eigen,ev,neut)" ], "administratie": [ "N(soort,ev,neut)" ], "Gracht": [ "N(eigen,ev,neut)" ], "succesvol": [ "Adj(attr,stell,onverv)" ], "Rooie": [ "Adj(attr,stell,verv_neut)" ], "welvaart": [ "N(soort,ev,neut)" ], "protesteren": [ "V(intrans,inf)" ], "Gezond": [ "N(eigen,ev,neut)" ], "paprika's": [ "N(soort,mv,neut)" ], "Ester": [ "N(eigen,ev,neut)" ], "sneuvelt": [ "V(intrans,ott,3,ev)" ], "aangetrouwd": [ "Adj(attr,stell,onverv)" ], "logisch": [ "Adj(attr,stell,onverv)" ], "overwonnen": [ "V(intrans,verl_dw,onverv)", "V(trans,verl_dw,onverv)" ], "Werksituatie": [ "N(soort,ev,neut)" ], "haastig": [ "Adj(adv,stell,onverv)" ], "Niemand": [ "Pron(onbep,neut,zelfst)" ], "getreden": [ "V(trans,verl_dw,onverv)" ], "Nederlanders": [ "N(soort,mv,neut)" ], "Jezus": [ "N(eigen,ev,neut)" ], "breidt": [ "V(refl,ott,3,ev)" ], "stuit": [ "V(intrans,ott,3,ev)" ], "aanval": [ "N(soort,ev,neut)" ], "merkt": [ "V(trans,ott,3,ev)", "V(trans,ott,2,ev)" ], "overheid": [ "N(soort,ev,neut)" ], "samenwoning": [ "N(soort,ev,neut)" ], "stemmenwinst": [ "N(soort,ev,neut)" ], "charmantste": [ "Adj(attr,overtr,verv_neut)" ], "brieven": [ "N(soort,mv,neut)" ], "uitgestrekte": [ "V(trans,verl_dw,verv_neut)" ], "verantwoord": [ "V(trans,verl_dw,onverv)" ], "criminaliteit": [ "N(soort,ev,neut)" ], "nut": [ "N(soort,ev,neut)" ], "huisvesten": [ "V(trans,inf)" ], "verfijnde": [ "V(trans,verl_dw,verv_neut)" ], "begroet": [ "V(trans,verl_dw,onverv)" ], "Jean-Gabriel": [ "N(eigen,ev,neut)" ], "genoemde": [ "V(trans,verl_dw,verv_neut)" ], "kantoor": [ "N(soort,ev,neut)" ], "verdringingsstelsel": [ "N(soort,ev,neut)" ], "pamfletten": [ "N(soort,mv,neut)" ], "pollepel": [ "N(soort,ev,neut)" ], "Carlos": [ "N(eigen,ev,neut)" ], "afgedwongen": [ "V(trans,verl_dw,onverv)" ], "koffer-wegen": [ "V(intrans,inf,subst)" ], "hectares": [ "N(soort,mv,neut)" ], "aangename": [ "Adj(attr,stell,verv_neut)" ], "Wallen": [ "N(eigen,mv,neut)" ], "nihil": [ "Pron(onbep,neut,zelfst)" ], "Kennedy's": [ "N(eigen,mv,neut)" ], "vals": [ "Adj(attr,stell,onverv)" ], "uitgaan": [ "V(intrans,inf)" ], "valt": [ "V(intrans,ott,3,ev)" ], "worden": [ "V(hulp_of_kopp,inf)", "V(hulp_of_kopp,ott,1_of_2_of_3,mv)", "V(trans,inf)", "V(hulp_of_kopp,inf,subst)" ], "onbevangen": [ "Adj(adv,stell,onverv)" ], "vertekend": [ "V(trans,verl_dw,onverv)" ], "aankopen": [ "N(soort,mv,neut)" ], "ontsnapping": [ "N(soort,ev,neut)" ], "uitgaat": [ "V(intrans,ott,3,ev)" ], "krijgsraad": [ "N(soort,ev,neut)" ], "ontspannen": [ "V(trans,verl_dw,onverv)", "V(refl,inf)" ], "Dokter": [ "N(soort,ev,neut)" ], "vraagt": [ "V(trans,ott,2,ev)", "V(trans,ott,3,ev)" ], "McCartney": [ "N(eigen,ev,neut)" ], "onderdanen": [ "N(soort,mv,neut)" ], "ondertussen": [ "Adv(gew,geen_func,stell,onverv)" ], "Lane": [ "N(eigen,ev,neut)" ], "volgt": [ "V(intrans,ott,3,ev)", "V(trans,ott,3,ev)" ], "Benno": [ "N(eigen,ev,neut)" ], "getraumatiseerd": [ "V(trans,verl_dw,onverv)" ], "shirts": [ "N(soort,mv,neut)" ], "sterren": [ "N(soort,mv,neut)" ], "verdraagt": [ "V(trans,ott,3,ev)" ], "komst": [ "N(soort,ev,neut)" ], "excommuniceerde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "stuks": [ "N(soort,mv,neut)" ], "kunstschatten": [ "N(soort,mv,neut)" ], "steunlokalen": [ "N(soort,mv,neut)" ], "reiger": [ "N(soort,ev,neut)" ], "Officier": [ "N(soort,ev,neut)" ], "badpaviljoentje": [ "N(soort,ev,neut)" ], "uitnodiging": [ "N(soort,ev,neut)" ], "Valkenswaard": [ "N(eigen,ev,neut)" ], "constateer": [ "V(trans,ott,1,ev)" ], "schaven": [ "N(soort,mv,neut)" ], "jaren": [ "N(soort,mv,neut)" ], "inschakeling": [ "N(soort,ev,neut)" ], "speervissen": [ "V(intrans,inf,subst)" ], "nieuwjaar": [ "N(eigen,ev,neut)" ], "modegevoelig": [ "Adj(attr,stell,onverv)" ], "bezitsrecht": [ "N(soort,ev,neut)" ], "binnenvaren": [ "V(intrans,inf)" ], "verwachtte": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "knie": [ "N(soort,ev,neut)" ], "ongeveer": [ "Adv(gew,geen_func,stell,onverv)" ], "deelnemende": [ "V(intrans,teg_dw,verv_neut)" ], "handgreep": [ "N(soort,ev,neut)" ], "logeerpartij": [ "N(soort,ev,neut)" ], "Duvalier": [ "N(eigen,ev,neut)" ], "stompen": [ "N(soort,mv,neut)" ], "serieuzer": [ "Adj(attr,vergr,onverv)" ], "wensdroom": [ "N(soort,ev,neut)" ], "goedvinden": [ "V(intrans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "bederven": [ "V(trans,ott,1_of_2_of_3,mv)" ], "richtingen": [ "N(soort,mv,neut)" ], "kosten": [ "N(soort,mv,neut)" ], "kwaaltje": [ "N(soort,ev,neut)" ], "televisie-juke-box": [ "N(soort,ev,neut)" ], "knip": [ "V(trans,imp)" ], "zozeer": [ "Adv(gew,aanw)" ], "uitgeschakeld": [ "V(trans,verl_dw,onverv)" ], "Kamperdijk": [ "N(eigen,ev,neut)" ], "binnenplaatsje": [ "N(soort,ev,neut)" ], "pepertje": [ "N(soort,ev,neut)" ], "formatie": [ "N(soort,ev,neut)" ], "hulpverlening": [ "N(soort,ev,neut)" ], "uitstromend": [ "V(intrans,teg_dw,onverv)" ], "Daniel": [ "N(eigen,ev,neut)" ], "record": [ "N(soort,ev,neut)" ], "gekoesterd": [ "V(trans,verl_dw,onverv)" ], "uiteenlopen": [ "V(intrans,inf)" ], "vlieg": [ "N(soort,ev,neut)" ], "Daarmee": [ "Adv(pron,aanw)" ], "Poll": [ "N(eigen,ev,neut)" ], "toepassingsmogelijkheden": [ "N(soort,mv,neut)" ], "uitbundigheid": [ "N(soort,ev,neut)" ], "enorm": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "meikaas": [ "N(soort,ev,neut)" ], "hoogtijdagen": [ "N(soort,mv,neut)" ], "stukken": [ "N(soort,mv,neut)" ], "schudde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Lionel": [ "N(eigen,ev,neut)" ], "snugger": [ "Adj(attr,stell,onverv)" ], "genezen": [ "V(intrans,inf)" ], "doorgedrongen": [ "V(intrans,verl_dw,onverv)" ], "loskomt": [ "V(intrans,ott,3,ev)" ], "snoep": [ "N(soort,ev,neut)" ], "overhemd": [ "N(soort,ev,neut)" ], "geslagen": [ "V(intrans,verl_dw,onverv)" ], "nukkig": [ "Adj(adv,stell,onverv)" ], "jukbeenderen": [ "N(soort,mv,neut)" ], "graden": [ "N(soort,mv,neut)" ], "aanbouw": [ "N(soort,ev,neut)" ], "grootmoeder": [ "N(soort,ev,neut)" ], "markante": [ "Adj(attr,stell,verv_neut)" ], "terugkerende": [ "V(intrans,teg_dw,verv_neut)" ], "benaderde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "woorden": [ "N(soort,mv,neut)" ], "verkenners": [ "N(soort,mv,neut)" ], "centen": [ "N(soort,mv,neut)" ], "balken": [ "N(soort,mv,neut)" ], "consumptie": [ "N(soort,ev,neut)" ], "hotelportier": [ "N(soort,ev,neut)" ], "clowns": [ "N(soort,mv,neut)" ], "kunstvezels": [ "N(soort,mv,neut)" ], "Alberts": [ "N(eigen,ev,neut)" ], "liften": [ "N(soort,mv,neut)" ], "etalagepoppen": [ "N(soort,mv,neut)" ], "Koning": [ "N(eigen,ev,neut)" ], "overwon": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "Kopechne": [ "N(eigen,ev,neut)" ], "erdoor": [ "Adv(pron,onbep)" ], "raakt": [ "V(hulp_of_kopp,ott,3,ev)", "V(hulp_of_kopp,ott,2,ev)", "V(intrans,ott,3,ev)" ], "pater": [ "N(soort,ev,neut)" ], "bewerkelijke": [ "Adj(attr,stell,verv_neut)" ], "programma's": [ "N(soort,mv,neut)" ], "alwaar": [ "Adv(gew,vrag)" ], "Celsius": [ "N(eigen,ev,neut)" ], "Palaver": [ "N(soort,ev,neut)" ], "vergissing": [ "N(soort,ev,neut)" ], "cafe": [ "N(soort,ev,neut)" ], "Schep": [ "V(trans,imp)" ], "weersomstandigheden": [ "N(soort,mv,neut)" ], "materiele": [ "Adj(attr,stell,verv_neut)" ], "vinger": [ "N(soort,ev,neut)" ], "Model": [ "N(eigen,ev,neut)" ], "nasmeulend": [ "V(intrans,teg_dw,onverv)" ], "Wickler's": [ "N(eigen,ev,gen)" ], "klaarblijkelijk": [ "Adj(adv,stell,onverv)" ], "geloofsleven": [ "N(soort,ev,neut)" ], "Nixons": [ "N(eigen,mv,neut)" ], "tien": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)", "N(soort,ev,neut)" ], "Libero": [ "N(eigen,ev,neut)" ], "bouten": [ "N(soort,mv,neut)" ], "benaderen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "geschilderd": [ "V(trans,verl_dw,onverv)" ], "Vandaag": [ "Adv(gew,geen_func,stell,onverv)" ], "stramien": [ "N(soort,ev,neut)" ], "Starr": [ "N(eigen,ev,neut)" ], "gebak": [ "N(soort,ev,neut)" ], "Anne": [ "N(eigen,ev,neut)" ], "volle": [ "Adj(attr,stell,verv_neut)" ], "verzekerde": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(trans,verl_dw,verv_neut)" ], "kastanjes": [ "N(soort,mv,neut)" ], "chansons": [ "N(soort,mv,neut)" ], "betreffende": [ "V(trans,teg_dw,verv_neut)" ], "conclusies": [ "N(soort,mv,neut)" ], "optel-": [ "N(soort,mv,neut)" ], "vervoermiddel": [ "N(soort,ev,neut)" ], "Vandaar": [ "Adv(gew,aanw)" ], "onwelgevallig": [ "Adj(attr,stell,onverv)" ], "zond": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "rinse": [ "Adj(attr,stell,verv_neut)" ], "Anno": [ "Prep(voor)" ], "zong": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "gehuurd": [ "V(trans,verl_dw,onverv)" ], "kieskeurig": [ "Adj(attr,stell,onverv)" ], "Jantien": [ "N(eigen,ev,neut)" ], "bedden": [ "N(soort,mv,neut)" ], "zetten": [ "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "drukken": [ "V(trans,inf)", "V(intrans,inf)" ], "8,75": [ "Num(hoofd,bep,attr,onverv)" ], "falen": [ "V(intrans,inf,subst)" ], "personeel": [ "N(soort,ev,neut)" ], "bijgaand": [ "V(intrans,teg_dw,onverv)" ], "premieheffing": [ "N(soort,ev,neut)" ], "Bourbons": [ "N(eigen,mv,neut)" ], "aangenomen": [ "V(trans,verl_dw,onverv)" ], "boyos": [ "N(soort,mv,neut)" ], "eenennegentig": [ "Num(hoofd,bep,zelfst,onverv)" ], "naadje": [ "N(soort,ev,neut)" ], "bijgekomen": [ "V(intrans,verl_dw,onverv)" ], "eigenaresse": [ "N(soort,ev,neut)" ], "Karel": [ "N(eigen,ev,neut)" ], "geput": [ "V(trans,verl_dw,onverv)" ], "knieholten": [ "N(soort,mv,neut)" ], "Last": [ "N(eigen,ev,neut)" ], "keukenflesjes": [ "N(soort,mv,neut)" ], "soepeler": [ "Adj(attr,vergr,onverv)" ], "aanbieden": [ "V(trans,ott,1_of_2_of_3,mv)" ], "uitpraten": [ "V(trans,inf)" ], "kunstmanen": [ "N(soort,mv,neut)" ], "gewrichten": [ "N(soort,mv,neut)" ], "bevliegingen": [ "N(soort,mv,neut)" ], "opgegeven": [ "V(trans,verl_dw,onverv)" ], "radiogolven": [ "N(soort,mv,neut)" ], "verenigingswateren": [ "N(soort,mv,neut)" ], "hulpmiddel": [ "N(soort,ev,neut)" ], "a.s.": [ "Adj(attr,stell,verv_neut)" ], "smak": [ "N(soort,ev,neut)" ], "midgetgolf": [ "N(soort,ev,neut)" ], "zoom": [ "N(soort,ev,neut)" ], "zoon": [ "N(soort,ev,neut)" ], "Witte": [ "N(eigen,ev,neut)" ], "innerlijke": [ "Adj(attr,stell,verv_neut)" ], "tegelijkertijd": [ "Adv(gew,geen_func,stell,onverv)" ], "vliegtuiglawaai": [ "N(soort,ev,neut)" ], "Kent": [ "N(eigen,ev,neut)" ], "beeld": [ "N(soort,ev,neut)" ], "verliefd": [ "Adj(attr,stell,onverv)" ], "kamperen": [ "V(intrans,inf)" ], "bovenop": [ "Prep(voor)" ], "gezondheid": [ "N(soort,ev,neut)" ], "minislangenlerenmantelpak": [ "N(soort,ev,neut)" ], "gerecht": [ "N(soort,ev,neut)" ], "vast": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "goed": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)", "N(soort,ev,neut)" ], "bloeddruk": [ "N(soort,ev,neut)" ], "zaadcel": [ "N(soort,ev,neut)" ], "illustere": [ "Adj(attr,stell,verv_neut)" ], "weekend": [ "N(soort,ev,neut)" ], "treft": [ "V(trans,ott,3,ev)" ], "knol": [ "N(soort,ev,neut)" ], "zwangerschapsstuipen": [ "N(soort,mv,neut)" ], "gewenst": [ "V(trans,verl_dw,onverv)" ], "knop": [ "N(soort,ev,neut)" ], "kleurloze": [ "Adj(attr,stell,verv_neut)" ], "lands": [ "N(soort,ev,gen)" ], "verslond": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Hollandsche": [ "N(eigen,ev,neut)" ], "know": [ "Misc(vreemd)" ], "Herman": [ "N(eigen,ev,neut)" ], "carnavalstijd": [ "N(soort,ev,neut)" ], "bestreken": [ "V(trans,verl_dw,onverv)" ], "Bijlmer": [ "N(eigen,ev,neut)" ], "afgekoeld": [ "V(intrans,verl_dw,onverv)" ], "Questura": [ "N(soort,ev,neut)" ], "vrijheidsstrijder": [ "N(soort,ev,neut)" ], "spaanplaat": [ "N(soort,ev,neut)" ], "gidsen": [ "N(soort,mv,neut)" ], "Moskou": [ "N(eigen,ev,neut)" ], "volop": [ "Adv(gew,geen_func,stell,onverv)" ], "Schik": [ "V(trans,imp)" ], "kinderziektes": [ "N(soort,mv,neut)" ], "Verdere": [ "Adj(attr,vergr,verv_neut)" ], "Schil": [ "V(trans,imp)" ], "bredere": [ "Adj(attr,vergr,verv_neut)" ], "munt": [ "N(soort,ev,neut)" ], "nichtje": [ "N(soort,ev,neut)" ], "slaapkamer": [ "N(soort,ev,neut)" ], "ongepelde": [ "Adj(attr,stell,verv_neut)" ], "stellen": [ "V(trans,inf)", "V(trans,inf,subst)", "V(trans,ott,1_of_2_of_3,mv)" ], "tegenwoordige": [ "Adj(attr,stell,verv_neut)" ], "heimelijk": [ "Adj(adv,stell,onverv)" ], "ruisende": [ "V(intrans,teg_dw,verv_neut)" ], "ingewikkeld": [ "Adj(attr,stell,onverv)" ], "teken": [ "V(trans,ott,2,ev)" ], "hogere": [ "Adj(attr,vergr,verv_neut)" ], "relatiepatroon": [ "N(soort,ev,neut)" ], "behalve": [ "Conj(onder,met_fin)" ], "direkte": [ "Adj(attr,stell,verv_neut)" ], "roepen": [ "V(trans,ott,1_of_2_of_3,mv)", "V(trans,inf)" ], "Juist": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "schuldgevoelens": [ "N(soort,mv,neut)" ], "ontwikkelt": [ "V(refl,ott,3,ev)" ], "klinieken": [ "N(soort,mv,neut)" ], "zorg": [ "N(soort,ev,neut)", "V(trans,imp)" ], "tijd": [ "N(soort,ev,neut)" ], "zodat": [ "Conj(onder,met_fin)" ], "rechtvaardiging": [ "N(soort,ev,neut)" ], "vraag": [ "N(soort,ev,neut)", "V(intrans,imp)", "V(trans,imp)", "V(trans,ott,1,ev)" ], "boterhammen": [ "N(soort,mv,neut)" ], "gogo": [ "Misc(vreemd)" ], "boottocht": [ "N(soort,ev,neut)" ], "verschuiving": [ "N(soort,ev,neut)" ], "vijvers": [ "N(soort,mv,neut)" ], "onderwijssituatie": [ "N(soort,ev,neut)" ], "afnemen": [ "V(trans,inf)", "V(intrans,inf)" ], "sommigen": [ "Pron(onbep,neut,zelfst)" ], "been": [ "N(soort,ev,neut)" ], "mannenzaken": [ "N(soort,mv,neut)" ], "eitje": [ "N(soort,ev,neut)" ], "aldoor": [ "Adv(gew,geen_func,stell,onverv)" ], "stolling": [ "N(soort,ev,neut)" ], "bleven": [ "V(hulp_of_kopp,ovt,1_of_2_of_3,mv)" ], "cabaretier": [ "N(soort,ev,neut)" ], "weggeweest": [ "V(intrans,verl_dw,onverv)" ], "trein": [ "N(soort,ev,neut)" ], "meerlen": [ "N(eigen,ev,neut)" ], "lange": [ "Adj(attr,stell,verv_neut)" ], "verwezenlijkt": [ "V(trans,verl_dw,onverv)" ], "stapels": [ "N(soort,mv,neut)" ], "voordeed": [ "V(refl,ovt,1_of_2_of_3,ev)" ], "garantie": [ "N(soort,ev,neut)" ], "vrouw": [ "N(soort,ev,neut)" ], "politieman": [ "N(soort,ev,neut)" ], "arbeidersvrouwen": [ "N(soort,mv,neut)" ], "truffel": [ "N(soort,ev,neut)" ], "opnemen": [ "V(trans,inf)", "V(trans,inf,subst)" ], "langs": [ "Prep(voor)", "Adv(deel_v)" ], "Paal": [ "N(soort,ev,neut)" ], "stuur": [ "N(soort,ev,neut)" ], "gaarne": [ "Adv(gew,geen_func,stell,onverv)" ], "voordeel": [ "N(soort,ev,neut)" ], "vertraagde": [ "V(trans,verl_dw,verv_neut)" ], "pilgebruikende": [ "Adj(attr,stell,verv_neut)" ], "uiteenzetten": [ "V(trans,inf)" ], "tikt": [ "V(intrans,ott,3,ev)" ], "vlinder": [ "N(soort,ev,neut)" ], "betasten": [ "V(trans,inf)" ], "flessenexpressie": [ "N(soort,ev,neut)" ], "oudste": [ "Adj(attr,overtr,verv_neut)" ], "computerprogrammeurs": [ "N(soort,mv,neut)" ], "goederen": [ "N(soort,mv,neut)" ], "geaarde": [ "V(intrans,verl_dw,verv_neut)" ], "voeding": [ "N(soort,ev,neut)" ], "nostalgie": [ "N(soort,ev,neut)" ], "optreedt": [ "V(intrans,ott,3,ev)" ], "veranderingen": [ "N(soort,mv,neut)" ], "ongeboren": [ "Adj(attr,stell,onverv)" ], "attitude-wijziging": [ "N(soort,ev,neut)" ], "stembiljet": [ "N(soort,ev,neut)" ], "zaad": [ "N(soort,ev,neut)" ], "voorhoofdsfronsen": [ "N(soort,mv,neut)" ], "gunstigste": [ "Adj(attr,overtr,verv_neut)" ], "aanrader": [ "N(soort,ev,neut)" ], "zaak": [ "N(soort,ev,neut)" ], "zaal": [ "N(soort,ev,neut)" ], "ontgaan": [ "V(trans,verl_dw,onverv)" ], "neergang": [ "N(soort,ev,neut)" ], "James": [ "N(soort,ev,neut)" ], "gereserveerds": [ "Adj(attr,stell,verv_gen)" ], "afgewerkt": [ "V(trans,verl_dw,onverv)" ], "beperktere": [ "V(trans,verl_dw,verv_neut)" ], "Greta": [ "N(eigen,ev,neut)" ], "tegenstander": [ "N(soort,ev,neut)" ], "ontmaagt": [ "V(trans,ott,3,ev)" ], "trekt": [ "V(trans,ott,3,ev)", "V(intrans,ott,3,ev)" ], "torentje": [ "N(soort,ev,neut)" ], "teleurgestelde": [ "V(trans,verl_dw,verv_neut)" ], "handenarbeid": [ "N(soort,ev,neut)" ], "tolereren": [ "V(trans,inf)" ], "stellig": [ "Adj(adv,stell,onverv)" ], "aanbrengen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "aigretteveertjes": [ "N(soort,mv,neut)" ], "Dixon": [ "N(eigen,ev,neut)" ], "ontzetting": [ "N(soort,ev,neut)" ], "redigeren": [ "V(trans,inf)" ], "burgers": [ "N(soort,mv,neut)" ], "zout": [ "N(soort,ev,neut)" ], "sproeien": [ "V(intrans,inf)" ], "Gruyters": [ "N(eigen,ev,neut)" ], "voorwerp": [ "N(soort,ev,neut)" ], "eindexamen": [ "N(soort,ev,neut)" ], "menhirs": [ "N(soort,mv,neut)" ], "schaaltje": [ "N(soort,ev,neut)" ], "grafkrans": [ "N(soort,ev,neut)" ], "grammofoonplaat": [ "N(soort,ev,neut)" ], "functies": [ "N(soort,mv,neut)" ], "gekost": [ "V(trans,verl_dw,onverv)" ], "leerde": [ "V(hulp,ovt,1_of_2_of_3,ev)", "V(trans,ovt,1_of_2_of_3,ev)" ], "hartinfarct": [ "N(soort,ev,neut)" ], "zwembad": [ "N(soort,ev,neut)" ], "export": [ "N(soort,ev,neut)" ], "heesters": [ "N(soort,mv,neut)" ], "Nicky": [ "N(eigen,ev,neut)" ], "pestbacillen": [ "N(soort,mv,neut)" ], "letsel": [ "N(soort,ev,neut)" ], "twaalfde": [ "Num(rang,bep,zelfst,onverv)" ], "hitparade": [ "N(soort,ev,neut)" ], "barnsteenkleurig": [ "Adj(attr,stell,onverv)" ], "overvallen": [ "V(trans,verl_dw,onverv)", "N(soort,mv,neut)" ], "must": [ "N(soort,ev,neut)" ], "onbemande": [ "Adj(attr,stell,verv_neut)" ], "Noordelijke": [ "N(eigen,ev,neut)" ], "gehoord": [ "V(intrans,verl_dw,onverv)", "V(trans,verl_dw,onverv)" ], "balkon": [ "N(soort,ev,neut)" ], "zeemijnbouw": [ "N(soort,ev,neut)" ], "hebben": [ "V(hulp,ott,1_of_2_of_3,mv)", "V(trans,inf)", "V(hulp,inf)", "V(intrans,ott,1_of_2_of_3,mv)", "V(trans,ott,1_of_2_of_3,mv)" ], "levensperiode": [ "N(soort,ev,neut)" ], "klimaat": [ "N(soort,ev,neut)" ], "beter": [ "Adj(adv,vergr,onverv)", "Adj(attr,vergr,onverv)" ], "steriele": [ "Adj(attr,stell,verv_neut)" ], "tint": [ "N(soort,ev,neut)" ], "Pads": [ "Misc(vreemd)" ], "Romney": [ "N(eigen,ev,neut)" ], "communicatie": [ "N(soort,ev,neut)" ], "Vernon": [ "N(eigen,ev,neut)" ], "Prinses": [ "N(soort,ev,neut)", "N(eigen,ev,neut)" ], "twijfelen": [ "V(intrans,inf)" ], "golf": [ "N(soort,ev,neut)", "N(eigen,ev,neut)" ], "welig": [ "Adj(adv,stell,onverv)" ], "prikkelgeleiding": [ "N(soort,ev,neut)" ], "voorstelde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "slikken": [ "V(trans,inf)" ], "herinnerd": [ "V(trans,verl_dw,onverv)" ], "beest": [ "N(soort,ev,neut)" ], "lawaai-patientjes": [ "N(soort,mv,neut)" ], "elektronische": [ "Adj(attr,stell,verv_neut)" ], "luistert": [ "V(intrans,ott,3,ev)" ], "klemmetje": [ "N(soort,ev,neut)" ], "schimpend": [ "V(intrans,teg_dw,onverv)" ], "echtpaar": [ "N(soort,ev,neut)" ], "literatuuropgaven": [ "N(soort,mv,neut)" ], "herinnert": [ "V(trans,ott,3,ev)" ], "begeleiders": [ "N(soort,mv,neut)" ], "situaties": [ "N(soort,mv,neut)" ], "aangebracht": [ "V(trans,verl_dw,onverv)" ], "verbijsterde": [ "V(trans,verl_dw,verv_neut)" ], "rustiger": [ "Adj(adv,vergr,onverv)" ], "make-ups": [ "N(soort,mv,neut)" ], "trend": [ "N(soort,ev,neut)" ], "broodschrijvers": [ "N(soort,mv,neut)" ], "Tweede": [ "N(eigen,ev,neut)" ], "overige": [ "Adj(attr,stell,verv_neut)" ], "toekomen": [ "V(intrans,inf)", "V(trans,inf)" ], "werken": [ "V(intrans,inf)", "N(soort,mv,neut)", "V(trans,inf)", "V(intrans,ott,1_of_2_of_3,mv)" ], "vensterbanken": [ "N(soort,mv,neut)" ], "openbaar-vervoer-safari": [ "N(soort,ev,neut)" ], "slavernij": [ "N(soort,ev,neut)" ], "patienten": [ "N(soort,mv,neut)" ], "muur": [ "N(soort,ev,neut)" ], "Lourdes": [ "N(eigen,ev,neut)" ], "Bethesda": [ "N(eigen,ev,neut)" ], "Thiel": [ "N(eigen,ev,neut)" ], "meende": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "verveel": [ "V(refl,ott,1,ev)" ], "geschuwd": [ "V(trans,verl_dw,onverv)" ], "vriendschappen": [ "N(soort,mv,neut)" ], "betrekkingen": [ "N(soort,mv,neut)" ], "reddingsduikboot": [ "N(soort,ev,neut)" ], "eitjes": [ "N(soort,mv,neut)" ], "poespas": [ "N(soort,ev,neut)" ], "uiteinde": [ "N(soort,ev,neut)" ], "welvaartsvaste": [ "Adj(attr,stell,verv_neut)" ], "vaststellen": [ "V(trans,inf,subst)" ], "zeiden": [ "V(trans,ovt,1_of_2_of_3,mv)", "V(intrans,ovt,1_of_2_of_3,mv)" ], "broodsnijmachine": [ "N(soort,ev,neut)" ], "greppel": [ "N(soort,ev,neut)" ], "massa": [ "N(soort,ev,neut)" ], "kostte": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "welke": [ "Pron(vrag,neut,zelfst)", "Pron(betr,gen,zelfst)" ], "Toch": [ "Adv(gew,geen_func,stell,onverv)" ], "koortsachtig": [ "Adj(adv,stell,onverv)" ], "noodzaak": [ "N(soort,ev,neut)" ], "milieuvervuiling": [ "N(soort,ev,neut)" ], "weerspiegeling": [ "N(soort,ev,neut)" ], "vegen": [ "V(trans,inf)" ], "opwindends": [ "V(intrans,teg_dw,verv_gen)" ], "Rusland": [ "N(eigen,ev,neut)" ], "care": [ "Misc(vreemd)" ], "Alles": [ "Pron(onbep,neut,zelfst)" ], "studies": [ "N(soort,mv,neut)" ], "gedicht": [ "N(soort,ev,neut)" ], "prikkels": [ "N(soort,mv,neut)" ], "prikkelt": [ "V(intrans,ott,3,ev)" ], "bezwaren": [ "N(soort,mv,neut)" ], "azalea": [ "N(soort,ev,neut)" ], "belt": [ "V(intrans,ott,3,ev)" ], "slagroom": [ "N(soort,ev,neut)" ], "vestiging": [ "N(soort,ev,neut)" ], "meewerkten": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "vogeltjes": [ "N(soort,mv,neut)" ], "gedroogde": [ "V(intrans,verl_dw,verv_neut)" ], "firmanaam": [ "N(soort,ev,neut)" ], "bijnaam": [ "N(soort,ev,neut)" ], "teckels": [ "N(soort,mv,neut)" ], "Zulk": [ "Pron(aanw,neut,attr)" ], "Integendeel": [ "Int" ], "wijder": [ "Adj(attr,vergr,onverv)" ], "gooi": [ "N(soort,ev,neut)" ], "aangetoond": [ "V(trans,verl_dw,onverv)" ], "knopen": [ "N(soort,mv,neut)" ], "Andre": [ "N(eigen,ev,neut)" ], "vernuft": [ "N(soort,ev,neut)" ], "genitalien": [ "N(soort,mv,neut)" ], "zwakke": [ "Adj(attr,stell,verv_neut)" ], "bewoonster": [ "N(soort,ev,neut)" ], "ophalen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "roerstokjes": [ "N(soort,mv,neut)" ], "schijnen": [ "V(hulp_of_kopp,ott,1_of_2_of_3,mv)" ], "......": [ "Punc(hellip)" ], "overleed": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "Gezin": [ "N(eigen,ev,neut)" ], "casu": [ "N(soort,ev,neut)" ], "Meesters": [ "N(soort,mv,neut)" ], "identificeert": [ "V(trans,ott,3,ev)" ], "rouge": [ "N(soort,ev,neut)" ], "vissers": [ "N(soort,mv,neut)" ], "Onder": [ "Prep(voor)" ], "siert": [ "V(trans,ott,3,ev)" ], "maakten": [ "V(trans,ovt,1_of_2_of_3,mv)", "V(refl,ovt,1_of_2_of_3,mv)" ], "weergave": [ "N(soort,ev,neut)" ], "boerenkinderen": [ "N(soort,mv,neut)" ], "risico's": [ "N(soort,mv,neut)" ], "Toen": [ "Conj(onder,met_fin)", "Adv(gew,aanw)" ], "uniform": [ "N(soort,ev,neut)" ], "aardrijkskunde": [ "N(soort,ev,neut)" ], "stemmetje": [ "N(soort,ev,neut)" ], "doodziek": [ "Adj(attr,stell,onverv)" ], "mazelen": [ "N(soort,mv,neut)" ], "Frazier": [ "N(eigen,ev,neut)" ], "excuus": [ "N(soort,ev,neut)" ], "sigarebandjes": [ "N(soort,mv,neut)" ], "zand-": [ "N(soort,mv,neut)" ], "talen": [ "N(soort,mv,neut)" ], "bent": [ "V(hulp_of_kopp,ott,2,ev)", "V(intrans,ott,2,ev)" ], "zuigelingensterfte": [ "N(soort,ev,neut)" ], "commercie": [ "N(soort,ev,neut)" ], "Vanmorgen": [ "Adv(gew,geen_func,stell,onverv)" ], "Chauffeur": [ "N(soort,ev,neut)" ], "Moeilijk": [ "Adj(attr,stell,onverv)" ], "Frankie": [ "N(eigen,ev,neut)" ], "gemeubileerde": [ "V(trans,verl_dw,verv_neut)" ], "skiers": [ "N(soort,mv,neut)" ], "grijpen": [ "V(trans,inf)", "V(intrans,inf)" ], "innamen": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "gecombineerd": [ "V(trans,verl_dw,onverv)" ], "zwart-witbeelden": [ "N(soort,mv,neut)" ], "schandpaal": [ "N(soort,ev,neut)" ], "tongetjes": [ "N(soort,mv,neut)" ], "vannacht": [ "Adv(gew,geen_func,stell,onverv)" ], "zwijgend": [ "V(intrans,teg_dw,onverv)" ], "aftrekposten": [ "N(soort,mv,neut)" ], "overblijfselen": [ "N(soort,mv,neut)" ], "Kruckenhauser": [ "N(eigen,ev,neut)" ], "Bedrog": [ "N(soort,ev,neut)" ], "verliest": [ "V(trans,ott,3,ev)" ], "juryrapport": [ "N(soort,ev,neut)" ], "broederschap": [ "N(soort,ev,neut)" ], "alimentatie": [ "N(soort,ev,neut)" ], "communistische": [ "Adj(attr,stell,verv_neut)" ], "overbeweiding": [ "N(soort,ev,neut)" ], "Thijs": [ "N(eigen,ev,neut)" ], "polijstpasta": [ "N(soort,ev,neut)" ], "prijkt": [ "V(intrans,ott,3,ev)" ], "Wetenschappelijke": [ "Adj(attr,stell,verv_neut)" ], "meevoerend": [ "V(trans,teg_dw,onverv)" ], "filmtijdschriften": [ "N(soort,mv,neut)" ], "zuinig": [ "Adj(attr,stell,onverv)" ], "problemen": [ "N(soort,mv,neut)" ], "Paola": [ "N(eigen,ev,neut)" ], "Caesar": [ "N(eigen,ev,neut)" ], "zieken": [ "Adj(zelfst,stell,verv_mv)" ], "zorgen": [ "N(soort,mv,neut)", "V(trans,inf)", "V(intrans,inf)" ], "zake": [ "N(soort,ev,dat)" ], "verlorene": [ "V(trans,verl_dw,verv_neut)" ], "ontdekkingsreiziger": [ "N(soort,ev,neut)" ], "maaltijden": [ "N(soort,mv,neut)" ], "natuurlijke": [ "Adj(attr,stell,verv_neut)" ], "tegemoet": [ "Adv(gew,geen_func,stell,onverv)" ], "Philips": [ "N(eigen,ev,neut)" ], "gedenkteken": [ "N(soort,ev,neut)" ], "verzetten": [ "V(refl,inf)" ], "biedt": [ "V(trans,ott,3,ev)" ], "Groenland": [ "N(eigen,ev,neut)" ], "halfgestopte": [ "Adj(attr,stell,verv_neut)" ], "randjes": [ "N(soort,mv,neut)" ], "botsing": [ "N(soort,ev,neut)" ], "berg": [ "N(soort,ev,neut)" ], "seksueel": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "opknappen": [ "V(trans,inf)" ], "Manny": [ "N(eigen,ev,neut)" ], "socialist": [ "N(soort,ev,neut)" ], "werknemers": [ "N(soort,mv,neut)" ], "gaan": [ "V(intrans,inf)", "V(hulp,ott,1_of_2_of_3,mv)", "V(intrans,ott,1_of_2_of_3,mv)", "V(trans,inf)", "V(hulp,inf)", "V(intrans,inf,subst)" ], "vervelt": [ "V(intrans,ott,3,ev)" ], "ondanks": [ "Prep(voor)" ], "beschadigd": [ "V(trans,verl_dw,onverv)" ], "verbrassende": [ "V(trans,teg_dw,verv_neut)" ], "Country": [ "N(eigen,ev,neut)" ], "Helemaal": [ "Adv(gew,geen_func,stell,onverv)" ], "gaat": [ "V(intrans,ott,3,ev)", "V(intrans,imp)", "V(hulp,ott,3,ev)", "V(trans,ott,3,ev)", "V(hulp,ott,2,ev)", "V(intrans,ott,2,ev)" ], "vreugdedans": [ "N(soort,ev,neut)" ], "goud": [ "Adj(attr,stell,onverv)", "N(soort,ev,neut)" ], "tekst": [ "N(soort,ev,neut)" ], "staatsprijs": [ "N(soort,ev,neut)" ], "kanker": [ "N(soort,ev,neut)" ], "vistochtje": [ "N(soort,ev,neut)" ], "samenlevingsstructuur": [ "N(soort,ev,neut)" ], "volgend": [ "V(intrans,teg_dw,onverv)" ], "weleer": [ "Adv(gew,geen_func,stell,onverv)" ], "ontruimd": [ "V(trans,verl_dw,onverv)" ], "Trastevere": [ "N(eigen,ev,neut)" ], "sierlijke": [ "Adj(attr,stell,verv_neut)" ], "ontketend": [ "V(trans,verl_dw,onverv)" ], "menselijke": [ "Adj(attr,stell,verv_neut)", "Adj(zelfst,stell,verv_neut)" ], "Niettemin": [ "Adv(gew,geen_func,stell,onverv)" ], "'70-'71": [ "Num(hoofd,bep,zelfst,onverv)" ], "SGP": [ "N(eigen,ev,neut)" ], "best": [ "Adj(adv,vergr,onverv)", "N(soort,ev,neut)", "Adj(attr,overtr,onverv)" ], "Pant": [ "N(eigen,ev,neut)" ], "volgens": [ "Prep(voor)" ], "Tibetaanse": [ "Adj(attr,stell,verv_neut)" ], "Heiden": [ "N(eigen,ev,neut)" ], "volkstuincomplexen": [ "N(soort,mv,neut)" ], "regelen": [ "V(trans,inf)" ], "gedronken": [ "V(trans,verl_dw,onverv)" ], "Nice": [ "N(eigen,ev,neut)" ], "klinkt": [ "V(intrans,ott,3,ev)" ], "eigenlijke": [ "Adj(attr,stell,verv_neut)" ], "inspanningen": [ "N(soort,mv,neut)" ], "Jorma": [ "N(eigen,ev,neut)" ], "sportief": [ "Adj(attr,stell,onverv)" ], "wordt": [ "V(hulp_of_kopp,ott,3,ev)", "V(hulp_of_kopp,ott,2,ev)" ], "aanzienlijk": [ "Adj(adv,stell,onverv)" ], "Worden": [ "V(hulp_of_kopp,ott,1_of_2_of_3,mv)" ], "Nico": [ "N(eigen,ev,neut)" ], "veilinghuizen": [ "N(soort,mv,neut)" ], "Vraagt": [ "V(trans,ott,2,ev)" ], "zang": [ "N(soort,ev,neut)" ], "dusver": [ "Adv(gew,aanw)" ], "banden": [ "N(soort,mv,neut)" ], "op-": [ "N(soort,ev,neut)" ], "geluisterd": [ "V(intrans,verl_dw,onverv)", "V(trans,verl_dw,onverv)" ], "journalisten": [ "N(soort,mv,neut)" ], "ons": [ "Pron(bez,1,mv,neut,attr)", "Pron(per,1,mv,dat_of_acc)", "Pron(ref,1,mv)", "N(eigen,ev,neut)" ], "round": [ "Adj(attr,stell,onverv)" ], "nooit": [ "Adv(gew,onbep)" ], "Dream": [ "N(eigen,ev,neut)" ], "gebakken": [ "V(trans,verl_dw,onverv)" ], "antirevolutionaire": [ "Adj(attr,stell,verv_neut)" ], "dierbaar": [ "Adj(attr,stell,onverv)" ], "Operatie": [ "N(eigen,ev,neut)" ], "Papa": [ "N(eigen,ev,neut)" ], "geschiedt": [ "V(intrans,ott,3,ev)" ], "Getrouwd": [ "V(intrans,verl_dw,onverv)" ], "Sojoez-11": [ "N(eigen,ev,neut)" ], "uitverkoren": [ "V(intrans,verl_dw,onverv)", "V(trans,verl_dw,onverv)" ], "ploeteren": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "oog": [ "N(soort,ev,neut)" ], "zodra": [ "Conj(onder,met_fin)" ], "Kosten": [ "N(soort,mv,neut)" ], "ook": [ "Adv(gew,geen_func,stell,onverv)" ], "voorgelicht": [ "V(trans,verl_dw,onverv)" ], "woensdag": [ "N(eigen,ev,neut)" ], "oom": [ "N(soort,ev,neut)" ], "Koster": [ "N(eigen,ev,neut)" ], "natuurreservaat": [ "N(soort,ev,neut)" ], "Jachtige": [ "Adj(attr,stell,verv_neut)" ], "oor": [ "N(soort,ev,neut)" ], "Dennendal": [ "N(eigen,ev,neut)" ], "langer": [ "Adj(adv,vergr,onverv)", "Adj(attr,vergr,onverv)" ], "ademhalingswegen": [ "N(soort,mv,neut)" ], "Edward": [ "N(eigen,ev,neut)" ], "hertrouwd": [ "V(trans,verl_dw,onverv)" ], "diepzeehaai": [ "N(soort,ev,neut)" ], "vaklien": [ "N(soort,mv,neut)" ], "onderwerpen": [ "N(soort,mv,neut)" ], "televisieseizoenen": [ "N(soort,mv,neut)" ], "lichamen": [ "N(soort,mv,neut)" ], "Kortgeleden": [ "Adv(gew,geen_func,stell,onverv)" ], "dappersten": [ "Adj(zelfst,overtr,verv_neut)" ], "klaagt": [ "V(trans,ott,3,ev)" ], "nieuwsgierigen": [ "Adj(zelfst,stell,verv_mv)" ], "Niet": [ "Adv(gew,geen_func,stell,onverv)" ], "levensvisie": [ "N(soort,ev,neut)" ], "Godfried": [ "N(soort,ev,neut)" ], "Doctoraal": [ "Adj(attr,stell,onverv)" ], "weerkaatsen": [ "V(trans,ott,1_of_2_of_3,mv)" ], "spieren": [ "N(soort,mv,neut)" ], "verouderingsproces": [ "N(soort,ev,neut)" ], "Stones": [ "N(eigen,mv,neut)" ], "Slangen": [ "N(soort,mv,neut)" ], "recht-aan": [ "Adj(attr,stell,onverv)" ], "bureau": [ "N(soort,ev,neut)" ], "gegroeid": [ "V(trans,verl_dw,onverv)" ], "Mersham": [ "N(eigen,ev,neut)" ], "ontlasting": [ "N(soort,ev,neut)" ], "Permanent": [ "Adj(attr,stell,onverv)" ], "Park": [ "N(eigen,ev,neut)" ], "bewees": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "eraan": [ "Adv(pron,onbep)" ], "nieuwbouwwijk": [ "N(soort,ev,neut)" ], "02550-15579": [ "Num(hoofd,bep,zelfst,onverv)" ], "toonde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Garneer": [ "V(trans,imp)" ], "haalden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "dochtertje": [ "N(soort,ev,neut)" ], "moderator": [ "N(soort,ev,neut)" ], "handenarbeidzaken": [ "N(soort,mv,neut)" ], "bloedplasma": [ "N(soort,ev,neut)" ], "Anson": [ "N(eigen,ev,neut)" ], "wapenhandel": [ "N(soort,ev,neut)" ], "karakteristiek": [ "Adj(attr,stell,onverv)" ], "snakt": [ "V(intrans,ott,3,ev)" ], "Third": [ "N(eigen,ev,neut)" ], "Toon": [ "N(eigen,ev,neut)" ], "Amerika's": [ "N(eigen,ev,gen)" ], "monopolies": [ "N(soort,mv,neut)" ], "Salonwoorden": [ "N(soort,mv,neut)" ], "Arnhem": [ "N(eigen,ev,neut)" ], "eindje": [ "N(soort,ev,neut)" ], "drinken": [ "V(trans,inf)" ], "knipperbollen": [ "N(soort,mv,neut)" ], "verzekering": [ "N(soort,ev,neut)" ], "oudere": [ "Adj(attr,vergr,verv_neut)" ], "tochten": [ "N(soort,mv,neut)" ], "begeleidende": [ "V(intrans,teg_dw,verv_neut)" ], "Drouin": [ "N(eigen,ev,neut)" ], "bevelen": [ "V(trans,inf)" ], "voorzien": [ "V(trans,inf)", "V(trans,verl_dw,onverv)" ], "toeristen": [ "N(soort,mv,neut)" ], "voortdurend": [ "Adv(gew,geen_func,stell,onverv)" ], "systeem": [ "N(soort,ev,neut)" ], "Drie": [ "Num(hoofd,bep,attr,onverv)" ], "nagenoeg": [ "Adv(gew,geen_func,stell,onverv)" ], "flauwe": [ "Adj(attr,stell,verv_neut)" ], "voorziet": [ "V(intrans,ott,3,ev)" ], "universiteitsgebouw": [ "N(soort,ev,neut)" ], "ouders": [ "N(soort,mv,neut)" ], "charmes": [ "N(soort,mv,neut)" ], "Kutschinsky": [ "N(eigen,ev,neut)" ], "gezogen": [ "V(trans,verl_dw,onverv)" ], "gemakkelijk": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "grintpad": [ "N(soort,ev,neut)" ], "Arlbergpas": [ "N(eigen,ev,neut)" ], "Cheverny": [ "N(eigen,ev,neut)" ], "toekomst": [ "N(soort,ev,neut)" ], "seksuele": [ "Adj(attr,stell,verv_neut)", "Adj(zelfst,stell,verv_neut)" ], "huidige": [ "Adj(attr,stell,verv_neut)" ], "geloven": [ "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)", "V(intrans,inf)" ], "devoot": [ "Adj(adv,stell,onverv)" ], "schuiven": [ "V(trans,inf)" ], "zwanger": [ "Adj(attr,stell,onverv)" ], "spreekuur": [ "N(soort,ev,neut)" ], "huwelijksfeesten": [ "N(soort,mv,neut)" ], "voorbijgaan": [ "V(intrans,inf,subst)" ], "verdeling": [ "N(soort,ev,neut)" ], "Kennedytraditie": [ "N(soort,ev,neut)" ], "glaasje": [ "N(soort,ev,neut)" ], "geschiedde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "werkte": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "gebroken": [ "V(trans,verl_dw,onverv)", "V(intrans,verl_dw,onverv)" ], "gericht": [ "V(trans,verl_dw,onverv)" ], "behoren": [ "V(hulp,ott,1_of_2_of_3,mv)", "V(intrans,ott,1_of_2_of_3,mv)" ], "kinderarts": [ "N(soort,ev,neut)" ], "ontberingen": [ "N(soort,mv,neut)" ], "speelde": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(intrans,ovt,1_of_2_of_3,ev)" ], "autobiografie": [ "N(soort,ev,neut)" ], "koek": [ "N(soort,ev,neut)" ], "bedroeg": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "koel": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "aandringen": [ "V(intrans,inf,subst)" ], "kracht": [ "N(soort,ev,neut)" ], "versperden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "tegenvallers": [ "N(soort,mv,neut)" ], "Paul": [ "N(eigen,ev,neut)", "Misc(vreemd)" ], "dessins": [ "N(soort,mv,neut)" ], "sportieve": [ "Adj(attr,stell,verv_neut)" ], "Nyerere": [ "N(eigen,ev,neut)" ], "iedere": [ "Pron(onbep,neut,attr)" ], "vennoot": [ "N(soort,ev,neut)" ], "vorderingen": [ "N(soort,mv,neut)" ], "verrichten": [ "V(trans,ott,1_of_2_of_3,mv)", "V(trans,inf)" ], "onredelijke": [ "Adj(attr,stell,verv_neut)" ], "route": [ "N(soort,ev,neut)" ], "erotisch-technische": [ "Adj(attr,stell,verv_neut)" ], "chauvinisme": [ "N(soort,ev,neut)" ], "ieders": [ "Pron(onbep,gen,zelfst)" ], "historie": [ "N(soort,ev,neut)" ], "garde": [ "N(soort,ev,neut)" ], "Bovenaan": [ "Adv(gew,geen_func,stell,onverv)" ], "aan": [ "Prep(voor)", "Prep(comb)", "Adv(deel_v)", "Adv(gew,geen_func,stell,onverv)", "Adv(deel_adv)" ], "vereende": [ "Adj(attr,stell,verv_neut)" ], "V.S.": [ "N(eigen,mv,neut)" ], "Rob": [ "N(eigen,ev,neut)" ], "lenen": [ "V(trans,inf)" ], "oud": [ "Adj(attr,stell,onverv)" ], "Nijs": [ "N(eigen,ev,neut)" ], "Napels": [ "N(eigen,ev,neut)" ], "omgeving": [ "N(soort,ev,neut)" ], "ontworpen": [ "V(trans,verl_dw,onverv)" ], "Village": [ "N(eigen,ev,neut)" ], "Provence": [ "N(eigen,ev,neut)" ], "herschrijft": [ "V(trans,ott,3,ev)" ], "piste": [ "N(soort,ev,neut)" ], "Straight": [ "N(eigen,ev,neut)" ], "begeleidt": [ "V(trans,ott,3,ev)" ], "verwerken": [ "V(trans,inf)" ], "scheidsrechter": [ "N(soort,ev,neut)" ], "diplomatieke": [ "Adj(attr,stell,verv_neut)" ], "doorzien": [ "V(trans,inf)" ], "Menac": [ "N(eigen,ev,neut)" ], "creme": [ "N(soort,ev,neut)" ], "wilde": [ "V(hulp,ovt,1_of_2_of_3,ev)", "V(intrans,ovt,1_of_2_of_3,ev)", "Adj(attr,stell,verv_neut)", "V(trans,ovt,1_of_2_of_3,ev)" ], "vorige": [ "Adj(attr,stell,verv_neut)" ], "zuster": [ "N(soort,ev,neut)" ], "verreweg": [ "Adv(gew,geen_func,stell,onverv)" ], "fikse": [ "Adj(attr,stell,verv_neut)" ], "reclamebureau": [ "N(soort,ev,neut)" ], "gedegradeerd": [ "V(trans,verl_dw,onverv)" ], "verboden": [ "N(soort,mv,neut)", "V(trans,verl_dw,onverv)" ], "garen": [ "N(soort,ev,neut)" ], "straten": [ "N(soort,mv,neut)" ], "begrijpt": [ "V(trans,ott,3,ev)", "V(trans,ott,2,ev)" ], "bewaren": [ "V(trans,inf)" ], "Cannes": [ "N(eigen,ev,neut)" ], "overdrijve": [ "V(intrans,conj)" ], "vasthoudt": [ "V(intrans,ott,3,ev)" ], "klaarlichte": [ "Adj(attr,stell,verv_neut)" ], "instigatie": [ "N(soort,ev,neut)" ], "Price": [ "N(eigen,ev,neut)" ], "beginjaren": [ "N(soort,mv,neut)" ], "mening": [ "N(soort,ev,neut)" ], "inhouden": [ "V(trans,inf)" ], "ringetjes": [ "N(soort,mv,neut)" ], "butler": [ "N(soort,ev,neut)" ], "ach": [ "Int" ], "moederziel": [ "N(soort,ev,neut)" ], "telegram": [ "N(soort,ev,neut)" ], "conversatiezaal": [ "N(soort,ev,neut)" ], "beviel": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "tochtje": [ "N(soort,ev,neut)" ], "REACTIES": [ "N(soort,mv,neut)" ], "mensapen": [ "N(soort,mv,neut)" ], "herstel": [ "N(soort,ev,neut)" ], "verdachts": [ "Adj(attr,stell,verv_gen)" ], "kankeren": [ "V(intrans,inf)" ], "act": [ "N(soort,ev,neut)" ], "motief": [ "N(soort,ev,neut)" ], "dichters": [ "N(soort,mv,neut)" ], "literatuur": [ "N(soort,ev,neut)" ], "gepoetst": [ "V(trans,verl_dw,onverv)" ], "diefstal": [ "N(soort,ev,neut)" ], "probeerden": [ "V(hulp,ovt,1_of_2_of_3,mv)" ], "vaatziekten": [ "N(soort,mv,neut)" ], "vrachtwagens": [ "N(soort,mv,neut)" ], "sliep": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "alternatief": [ "N(soort,ev,neut)" ], "verwonderen": [ "V(refl,inf)" ], "verontwaardigd": [ "V(trans,verl_dw,onverv)" ], "verbeeldingskracht": [ "N(soort,ev,neut)" ], "verschillen": [ "N(soort,mv,neut)", "V(intrans,ott,1_of_2_of_3,mv)" ], "fontein": [ "N(soort,ev,neut)" ], "aapje": [ "N(soort,ev,neut)" ], "Slingelandt": [ "N(eigen,ev,neut)" ], "stemverheffing": [ "N(soort,ev,neut)" ], "zwerftochten": [ "N(soort,mv,neut)" ], "delirium": [ "N(soort,ev,neut)" ], "proeven": [ "N(soort,mv,neut)", "V(trans,inf)" ], "Peterke": [ "N(eigen,ev,neut)" ], "draaiboekauteurs": [ "N(soort,mv,neut)" ], "zevenhonderd": [ "Num(hoofd,bep,attr,onverv)" ], "waardig": [ "Adj(adv,stell,onverv)" ], "Chatillon-en-Bazois": [ "N(eigen,ev,neut)" ], "rechtvaardigen": [ "V(trans,inf)" ], "accijnzen": [ "N(soort,mv,neut)" ], "zekerheid": [ "N(soort,ev,neut)" ], "onderhield": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "crepe": [ "N(soort,ev,neut)" ], "tafels": [ "N(soort,mv,neut)" ], "enthousiast": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "felle": [ "Adj(attr,stell,verv_neut)" ], "felicitatiekaart": [ "N(soort,ev,neut)" ], "Hieronder": [ "Adv(pron,aanw)" ], "maten": [ "N(soort,mv,neut)" ], "Sabine": [ "N(eigen,ev,neut)" ], "gang": [ "N(soort,ev,neut)" ], "uiterlijk": [ "N(soort,ev,neut)", "Adj(attr,stell,onverv)" ], "koortsig": [ "Adj(attr,stell,onverv)" ], "bewijzen": [ "V(trans,inf)", "N(soort,mv,neut)", "V(trans,ott,1_of_2_of_3,mv)" ], "verspilling": [ "N(soort,ev,neut)" ], "inheemse": [ "Adj(attr,stell,verv_neut)" ], "pijpers": [ "N(soort,mv,neut)" ], "doordringen": [ "V(trans,inf)" ], "onderuitgezakt": [ "V(intrans,verl_dw,onverv)" ], "ziekte": [ "N(soort,ev,neut)" ], "aangehouden": [ "V(trans,verl_dw,onverv)" ], "pioniers": [ "N(soort,mv,neut)" ], "schaaldieren": [ "N(soort,mv,neut)" ], "machtszwakke": [ "Adj(attr,stell,verv_neut)" ], "diverse": [ "Pron(onbep,neut,attr)" ], "aangepaste": [ "V(trans,verl_dw,verv_neut)" ], "koks": [ "N(soort,mv,neut)" ], "ballen": [ "N(soort,mv,neut)" ], "Alassio": [ "N(eigen,ev,neut)" ], "intrigeerde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "honderdste": [ "Num(rang,bep,attr,onverv)" ], "jicht": [ "N(soort,ev,neut)" ], "Bepaald": [ "Adv(gew,geen_func,stell,onverv)" ], "Calabria": [ "N(eigen,ev,neut)" ], "ballet": [ "N(soort,ev,neut)" ], "peperdure": [ "Adj(attr,stell,verv_neut)" ], "gereden": [ "V(trans,verl_dw,onverv)" ], "Annelies": [ "N(eigen,ev,neut)" ], "feit": [ "N(soort,ev,neut)" ], "betrekkelijk": [ "Adj(adv,stell,onverv)" ], "verzorgde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Zuidlimburgers": [ "N(soort,mv,neut)" ], "Dag": [ "Int" ], "geweldige": [ "Adj(attr,stell,verv_neut)" ], "Italiaanse": [ "Adj(attr,stell,verv_neut)" ], "onderbouw": [ "N(soort,ev,neut)" ], "trillingen": [ "N(soort,mv,neut)" ], "Dan": [ "Adv(gew,aanw)" ], "aangekomen": [ "V(intrans,verl_dw,onverv)" ], "uitgedeeld": [ "V(trans,verl_dw,onverv)" ], "vanzelfsprekend": [ "Adj(adv,stell,onverv)" ], "heetst": [ "Adj(zelfst,overtr,onverv)" ], "Das": [ "N(eigen,ev,neut)" ], "Dat": [ "Pron(aanw,neut,zelfst)", "Pron(aanw,neut,attr)", "Conj(onder,met_fin)" ], "onbruikbare": [ "Adj(attr,stell,verv_neut)" ], "kinesica": [ "N(soort,ev,neut)" ], "ruimtestation": [ "N(soort,ev,neut)" ], "januari": [ "N(eigen,ev,neut)" ], "Rue": [ "N(eigen,ev,neut)" ], "keien": [ "N(soort,mv,neut)" ], "Day": [ "N(eigen,ev,neut)" ], "Zonen": [ "N(soort,mv,neut)" ], "vuurwerk": [ "N(soort,ev,neut)" ], "werkmethoden": [ "N(soort,mv,neut)" ], "enigszins": [ "Adv(gew,geen_func,stell,onverv)" ], "grofheden": [ "N(soort,mv,neut)" ], "heette": [ "V(hulp_of_kopp,ovt,1_of_2_of_3,ev)" ], "Christelijk": [ "N(eigen,ev,neut)" ], "schreven": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "volgezogen": [ "V(trans,verl_dw,onverv)" ], "gapt": [ "V(trans,ott,3,ev)" ], "beeldcassette": [ "N(soort,ev,neut)" ], "Hebben": [ "V(hulp,ott,1_of_2_of_3,mv)", "V(trans,ott,1_of_2_of_3,mv)" ], "verzorgen": [ "V(trans,inf)" ], "magots": [ "N(eigen,ev,neut)" ], "terugbrengen": [ "V(trans,inf)" ], "gegeten": [ "V(trans,verl_dw,onverv)" ], "zolang": [ "Conj(onder,met_fin)" ], "komt": [ "V(intrans,ott,3,ev)", "V(intrans,ott,2,ev)", "V(intrans,imp)", "V(hulp_of_kopp,ott,3,ev)", "V(trans,ott,3,ev)", "V(hulp_of_kopp,ott,2,ev)" ], "familieroman": [ "N(soort,ev,neut)" ], "schakelde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "afbeeldingen": [ "N(soort,mv,neut)" ], "plukken": [ "V(trans,inf)" ], "make-up": [ "N(soort,ev,neut)" ], "nadelen": [ "N(soort,mv,neut)" ], "goedhartig": [ "Adj(attr,stell,onverv)" ], "gepleegd": [ "V(trans,verl_dw,onverv)" ], "Consumptiesex": [ "N(soort,ev,neut)" ], "International": [ "N(eigen,ev,neut)" ], "bovendien": [ "Adv(gew,geen_func,stell,onverv)" ], "matig": [ "Adj(adv,stell,onverv)" ], "Venusstraat": [ "N(eigen,ev,neut)" ], "effectenbeurs": [ "N(soort,ev,neut)" ], "perfectie": [ "N(soort,ev,neut)" ], "lukte": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "worst": [ "N(soort,ev,neut)" ], "Zonnekust": [ "N(soort,ev,neut)" ], "voorsprong": [ "N(soort,ev,neut)" ], "gooien": [ "V(trans,inf)" ], "tweeentwintig": [ "Num(hoofd,bep,attr,onverv)", "Num(hoofd,bep,zelfst,onverv)" ], "verhaal": [ "N(soort,ev,neut)" ], "buren": [ "N(soort,mv,neut)" ], "liedjesteksten": [ "N(soort,mv,neut)" ], "Rijksbureau": [ "N(soort,ev,neut)" ], "bezweren": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "isotonische": [ "Adj(attr,stell,verv_neut)" ], "schakelen": [ "V(trans,inf)", "V(intrans,ott,1_of_2_of_3,mv)" ], "overgelaten": [ "V(trans,verl_dw,onverv)" ], "peperduur": [ "Adj(attr,stell,onverv)" ], "kooi": [ "N(soort,ev,neut)" ], "zondagsavonds": [ "N(soort,ev,gen)" ], "kook": [ "N(soort,ev,neut)" ], "effect": [ "N(soort,ev,neut)" ], "afspraken": [ "N(soort,mv,neut)" ], "hurkWC's": [ "N(soort,mv,neut)" ], "koop": [ "N(soort,ev,neut)", "V(trans,imp)" ], "huishoudgeld": [ "N(soort,ev,neut)" ], "koos": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "telde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "hoogconjunctuur": [ "N(soort,ev,neut)" ], "boodschap": [ "N(soort,ev,neut)" ], "gilden": [ "N(soort,mv,neut)" ], "opvarenden": [ "Adj(zelfst,stell,verv_mv)" ], "spottend": [ "V(intrans,teg_dw,onverv)" ], "formuleert": [ "V(trans,ott,3,ev)" ], "Ongeduldig": [ "Adj(adv,stell,onverv)" ], "BoymansVan": [ "N(eigen,ev,neut)" ], "Fauriel": [ "N(eigen,ev,neut)" ], "verkeersopvoeding": [ "N(soort,ev,neut)" ], "Den": [ "N(eigen,ev,neut)" ], "tanden": [ "N(soort,mv,neut)" ], "onze": [ "Pron(bez,1,mv,neut,attr)" ], "veroordeelde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "paniekje": [ "N(soort,ev,neut)" ], "Der": [ "N(eigen,ev,neut)" ], "kostelijke": [ "Adj(attr,stell,verv_neut)" ], "Guernsey": [ "N(eigen,ev,neut)" ], "oppervlakte-temperatuur": [ "N(soort,ev,neut)" ], "onveranderd": [ "Adj(attr,stell,onverv)" ], "nagedacht": [ "V(intrans,verl_dw,onverv)" ], "najaarstrek": [ "N(soort,ev,neut)" ], "glipte": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "veerkracht": [ "N(soort,ev,neut)" ], "toelaat": [ "V(trans,ott,3,ev)" ], "borrel": [ "N(soort,ev,neut)" ], "rampen": [ "N(soort,mv,neut)" ], "trachten": [ "V(hulp,ott,1_of_2_of_3,mv)" ], "bijtijds": [ "Adv(gew,geen_func,stell,onverv)" ], "bondig": [ "Adj(adv,stell,onverv)" ], "pistolen": [ "N(soort,mv,neut)" ], "Bouchet": [ "N(eigen,ev,neut)" ], "Incognita": [ "Misc(vreemd)" ], "voedingsstoffen": [ "N(soort,mv,neut)" ], "vermeldt": [ "V(trans,ott,3,ev)" ], "all": [ "Adj(attr,stell,onverv)" ], "Standen": [ "N(soort,mv,neut)" ], "braken": [ "V(intrans,inf)" ], "bastaard": [ "N(soort,ev,neut)" ], "China": [ "N(eigen,ev,neut)" ], "als": [ "Conj(onder,met_fin)", "Conj(neven)" ], "overjas": [ "N(soort,ev,neut)" ], "Ching": [ "N(eigen,ev,neut)" ], "verlangen": [ "N(soort,ev,neut)" ], "Utrecht": [ "N(eigen,ev,neut)" ], "Prima": [ "N(eigen,ev,neut)" ], "ongemotiveerd": [ "Adj(attr,stell,onverv)" ], "klaagzangen": [ "N(soort,mv,neut)" ], "werklustige": [ "Adj(attr,stell,verv_neut)" ], "regelmatig": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "Julius": [ "N(eigen,ev,neut)" ], "afkomstig": [ "Adj(attr,stell,onverv)" ], "leeftijdsverloochening": [ "N(soort,ev,neut)" ], "nadelig": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "innemen": [ "V(trans,inf)", "V(trans,inf,subst)" ], "appartement": [ "N(soort,ev,neut)" ], "aalmoezenier": [ "N(soort,ev,neut)" ], "gauw": [ "Adv(gew,geen_func,stell,onverv)" ], "blonde": [ "Adj(attr,stell,verv_neut)" ], "opeens": [ "Adv(gew,geen_func,stell,onverv)" ], "disfunktioneel": [ "Adj(attr,stell,onverv)" ], "Robbe": [ "N(eigen,ev,neut)" ], "verbintenis": [ "N(soort,ev,neut)" ], "decors": [ "N(soort,mv,neut)" ], "onbeheerst": [ "Adj(adv,stell,onverv)" ], "Provo-beweging": [ "N(soort,ev,neut)" ], "versterkende": [ "V(intrans,teg_dw,verv_neut)" ], "snel": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "krachten": [ "N(soort,mv,neut)" ], "Victor": [ "N(eigen,ev,neut)" ], "geliefde": [ "Adj(zelfst,stell,verv_neut)" ], "behandeling": [ "N(soort,ev,neut)" ], "buurvrouw": [ "N(soort,ev,neut)" ], "gave": [ "N(soort,ev,neut)" ], "jaloezie": [ "N(soort,ev,neut)" ], "kort": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "behoorden": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "Griekse": [ "Adj(attr,stell,verv_neut)" ], "summum": [ "N(soort,ev,neut)" ], "broek": [ "N(soort,ev,neut)" ], "onvermijdelijk": [ "Adj(attr,stell,onverv)" ], "pantry": [ "N(soort,ev,neut)" ], "broer": [ "N(soort,ev,neut)" ], "teweer": [ "Adv(gew,geen_func,stell,onverv)" ], "and": [ "Misc(vreemd)", "N(soort,mv,neut)", "N(eigen,ev,neut)", "N(eigen,mv,neut)" ], "Vroeger": [ "Adj(adv,vergr,onverv)" ], "therapeute": [ "N(soort,ev,neut)" ], "onbewuste": [ "Adj(attr,stell,verv_neut)" ], "knalde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "Prins": [ "N(soort,ev,neut)", "N(eigen,ev,neut)" ], "eveneens": [ "Adv(gew,geen_func,stell,onverv)" ], "onafhankelijk": [ "Adj(attr,stell,onverv)" ], "verzolen": [ "V(trans,inf)" ], "weerkeert": [ "V(intrans,ott,3,ev)" ], "informatie": [ "N(soort,ev,neut)" ], "telefoonverbinding": [ "N(soort,ev,neut)" ], "dirigisme": [ "N(soort,ev,neut)" ], "Kerstmis": [ "N(eigen,ev,neut)" ], "achteraf": [ "Adv(gew,geen_func,stell,onverv)", "Adj(attr,stell,onverv)" ], "pad": [ "N(soort,ev,neut)" ], "bedreigd": [ "V(trans,verl_dw,onverv)" ], "Belangrijk": [ "Adj(attr,stell,onverv)" ], "vertoonde": [ "V(refl,ovt,1_of_2_of_3,ev)" ], "bedekt": [ "V(trans,verl_dw,onverv)" ], "kost": [ "V(trans,ott,3,ev)", "N(soort,ev,neut)" ], "toenemende": [ "V(intrans,teg_dw,verv_neut)" ], "pak": [ "N(soort,ev,neut)", "V(trans,imp)", "V(intrans,imp)" ], "moederonderzeeer": [ "N(soort,ev,neut)" ], "pal": [ "Adv(gew,geen_func,stell,onverv)" ], "behoeftigen": [ "Adj(zelfst,stell,verv_mv)" ], "watertje": [ "N(soort,ev,neut)" ], "Die": [ "Pron(aanw,neut,attr)", "N(eigen,ev,neut)", "Pron(betr,neut,zelfst)", "Pron(aanw,neut,zelfst)" ], "verpleegtehuizen": [ "N(soort,mv,neut)" ], "pap": [ "N(soort,ev,neut)" ], "pas": [ "Adv(gew,geen_func,stell,onverv)", "N(soort,ev,neut)", "V(intrans,imp)" ], "ontvangen": [ "V(trans,verl_dw,onverv)" ], "Dik": [ "Adj(adv,stell,onverv)" ], "rodehond": [ "N(soort,ev,neut)" ], "ingeslagen": [ "V(trans,verl_dw,onverv)" ], "rationeel": [ "Adj(attr,stell,onverv)" ], "lipgloss": [ "N(soort,ev,neut)" ], "werkzaam": [ "Adj(attr,stell,onverv)" ], "pay": [ "Misc(vreemd)" ], "voorschriften": [ "N(soort,mv,neut)" ], "erdoorheen": [ "Adv(pron,onbep)" ], "verrukt": [ "V(trans,verl_dw,onverv)" ], "Dit": [ "Pron(aanw,neut,zelfst)", "Pron(aanw,neut,attr)" ], "brandblaren": [ "N(soort,mv,neut)" ], "zachtmoedige": [ "Adj(attr,stell,verv_neut)" ], "jezelf": [ "Pron(ref,2,ev)" ], "Frans": [ "Adj(attr,stell,onverv)", "N(eigen,ev,neut)" ], "kaap": [ "N(soort,ev,neut)" ], "Philadelphia": [ "N(eigen,ev,neut)" ], "Hindeloper": [ "Adj(attr,stell,onverv)" ], "ellebogen": [ "N(soort,mv,neut)" ], "Franz": [ "N(eigen,ev,neut)" ], "kaas": [ "N(soort,ev,neut)" ], "ontbieden": [ "V(trans,inf)" ], "bekroond": [ "V(trans,verl_dw,onverv)" ], "koud": [ "Adj(attr,stell,onverv)" ], "verveling": [ "N(soort,ev,neut)" ], "theorie": [ "N(soort,ev,neut)" ], "lente": [ "N(soort,ev,neut)" ], "Gerrit": [ "N(eigen,ev,neut)" ], "beschaamd": [ "V(trans,verl_dw,onverv)" ], "geslaagde": [ "V(intrans,verl_dw,verv_neut)" ], "kritiek": [ "N(soort,ev,neut)" ], "letter": [ "N(soort,ev,neut)" ], "tocht": [ "N(soort,ev,neut)" ], "eidooiers": [ "N(soort,mv,neut)" ], "18de": [ "Num(rang,bep,attr,onverv)" ], "meega": [ "V(intrans,ott,1,ev)" ], "verwerkte": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "kous": [ "N(soort,ev,neut)" ], "tikte": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "amerikaans": [ "Adj(attr,stell,verv_gen)" ], "Trouw": [ "N(eigen,ev,neut)" ], "springvorm": [ "N(soort,ev,neut)" ], "concurreren": [ "V(intrans,inf)" ], "dienen": [ "V(hulp,ott,1_of_2_of_3,mv)" ], "contact": [ "N(soort,ev,neut)" ], "belichaming": [ "N(soort,ev,neut)" ], "behoefte": [ "N(soort,ev,neut)" ], "eind": [ "N(soort,ev,neut)" ], "snij": [ "V(trans,imp)" ], "lichtheid": [ "N(soort,ev,neut)" ], "complicaties": [ "N(soort,mv,neut)" ], "Hoogenboom": [ "N(eigen,ev,neut)" ], "Provinciale": [ "Adj(attr,stell,verv_neut)" ], "vermocht": [ "V(hulp,ovt,1_of_2_of_3,ev)" ], "opeten": [ "V(trans,ott,1_of_2_of_3,mv)" ], "beledigden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "blijmoedigheid": [ "N(soort,ev,neut)" ], "Amerikaanse": [ "Adj(attr,stell,verv_neut)" ], "volkomen": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)", "Adv(gew,geen_func,stell,onverv)" ], "burgerpersoneel": [ "N(soort,ev,neut)" ], "Kuif": [ "N(eigen,ev,neut)" ], "miljonairs": [ "N(soort,mv,neut)" ], "inlichtingen": [ "N(soort,mv,neut)" ], "overtredingen": [ "N(soort,mv,neut)" ], "New-York": [ "N(eigen,ev,neut)" ], "normen": [ "N(soort,mv,neut)" ], "Goren": [ "N(eigen,ev,neut)" ], "leefden": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "uitgezet": [ "V(trans,verl_dw,onverv)" ], "arm": [ "N(soort,ev,neut)", "Adj(attr,stell,onverv)" ], "hulpelozer": [ "Adj(attr,vergr,onverv)" ], "27.000": [ "Num(hoofd,bep,attr,onverv)" ], "duidelijk": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "rechtlijnig": [ "Adj(attr,stell,onverv)" ], "bekende": [ "Adj(attr,stell,verv_neut)", "V(trans,ovt,1_of_2_of_3,ev)" ], "orgasmen": [ "N(soort,mv,neut)" ], "Trade": [ "Misc(vreemd)" ], "zindelijkheidstraining": [ "N(soort,ev,neut)" ], "badmintonwedstrijd": [ "N(soort,ev,neut)" ], "uitzonderingen": [ "N(soort,mv,neut)" ], "wintersport": [ "N(soort,ev,neut)" ], "pen": [ "N(soort,ev,neut)" ], "Vaticaan": [ "N(eigen,ev,neut)" ], "pep": [ "N(soort,ev,neut)" ], "tuin-schoonheid": [ "N(soort,ev,neut)" ], "vermijdbare": [ "Adj(attr,stell,verv_neut)" ], "stuurde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "verlegen": [ "Adj(attr,stell,onverv)" ], "per": [ "Prep(voor)" ], "dogela's": [ "N(soort,mv,neut)" ], "pet": [ "N(soort,ev,neut)" ], "geschreven": [ "V(trans,verl_dw,onverv)", "V(intrans,verl_dw,onverv)" ], "klassenstrijd": [ "N(eigen,ev,neut)" ], "mijdende": [ "V(trans,teg_dw,verv_neut)" ], "ontsnappen": [ "V(intrans,inf)" ], "schouder": [ "N(soort,ev,neut)" ], "Veenestraat": [ "N(eigen,ev,neut)" ], "bitterballen": [ "N(soort,mv,neut)" ], "stommigheid": [ "N(soort,ev,neut)" ], "Rijst": [ "V(intrans,ott,3,ev)" ], "Rien": [ "N(eigen,ev,neut)" ], "gespannen": [ "Adj(attr,stell,onverv)", "V(trans,verl_dw,onverv)", "Adj(adv,stell,onverv)" ], "piloten": [ "N(soort,mv,neut)" ], "Elsje": [ "N(eigen,ev,neut)" ], "Spanjaarden": [ "N(soort,mv,neut)" ], "aanhangig": [ "Adj(attr,stell,onverv)" ], "Hayworth": [ "N(eigen,ev,neut)" ], "Riet": [ "N(eigen,ev,neut)" ], "verloskundige": [ "Adj(attr,stell,verv_neut)" ], "menstruatie": [ "N(soort,ev,neut)" ], "bezittingen": [ "N(soort,mv,neut)" ], "Broadway": [ "N(eigen,ev,neut)" ], "overkomen": [ "V(intrans,inf)", "V(trans,verl_dw,onverv)", "V(intrans,verl_dw,onverv)" ], "instituut": [ "N(soort,ev,neut)" ], "voortkronkelende": [ "V(intrans,teg_dw,verv_neut)" ], "brandstichtingen": [ "N(soort,mv,neut)" ], "algeheel": [ "Adj(attr,stell,onverv)" ], "lijfwacht": [ "N(soort,ev,neut)" ], "Schokkende": [ "V(intrans,teg_dw,verv_neut)" ], "gedeprimeerd": [ "V(trans,verl_dw,onverv)" ], "Chen": [ "N(eigen,ev,neut)" ], "vonkende": [ "V(intrans,teg_dw,verv_neut)" ], "Boer-van": [ "N(eigen,ev,neut)" ], "Minnema": [ "N(eigen,ev,neut)" ], "Harry": [ "N(eigen,ev,neut)" ], "WAREN": [ "V(hulp_of_kopp,ovt,1_of_2_of_3,mv)" ], "romans": [ "N(soort,mv,neut)" ], "ernstige": [ "Adj(attr,stell,verv_neut)" ], "San": [ "N(eigen,ev,neut)" ], "milieu": [ "N(soort,ev,neut)" ], "Carnac": [ "N(eigen,ev,neut)" ], "gestoken": [ "V(trans,verl_dw,onverv)" ], "organische": [ "Adj(attr,stell,verv_neut)" ], "christelijke": [ "Adj(attr,stell,verv_neut)" ], "liedjes": [ "N(soort,mv,neut)" ], "computer": [ "N(soort,ev,neut)" ], "ergens": [ "Adv(gew,onbep)", "Adv(pron,onbep)" ], "besproeien": [ "V(trans,ott,1_of_2_of_3,mv)" ], "milieuverontreiniging": [ "N(soort,ev,neut)" ], "aus": [ "N(eigen,ev,neut)" ], "kwispelen": [ "V(intrans,inf)" ], "Brussels": [ "Adj(attr,stell,onverv)" ], "prestatie": [ "N(soort,ev,neut)" ], "duurdere": [ "Adj(attr,vergr,verv_neut)" ], "homofilie": [ "N(soort,ev,neut)" ], "onderzocht": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(trans,verl_dw,onverv)" ], "doorging": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "richting": [ "N(soort,ev,neut)" ], "Saloon": [ "N(eigen,ev,neut)" ], "Brugge": [ "N(eigen,ev,neut)" ], "Adultery": [ "N(eigen,ev,neut)" ], "ziekenkamer": [ "N(soort,ev,neut)" ], "Bureau": [ "N(soort,ev,neut)" ], "voorkomende": [ "V(intrans,teg_dw,verv_neut)" ], "willen": [ "V(hulp,ott,1_of_2_of_3,mv)", "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)", "V(hulp,inf)" ], "schoenpoetswinkeltje": [ "N(soort,ev,neut)" ], "verduisteren": [ "V(trans,inf)" ], "zodoende": [ "Adv(gew,aanw)" ], "Haaksbergen": [ "N(eigen,ev,neut)" ], "32-jarige": [ "Adj(attr,stell,verv_neut)" ], "Dr.": [ "N(eigen,ev,neut)" ], "vermoedelijk": [ "Adj(adv,stell,onverv)" ], "familie": [ "N(soort,ev,neut)" ], "Duitssprekende": [ "Adj(attr,stell,verv_neut)" ], "zoekt": [ "V(trans,ott,3,ev)", "V(hulp,ott,3,ev)" ], "aftrekken": [ "V(trans,inf)" ], "pitjes": [ "N(soort,mv,neut)" ], "herhaling": [ "N(soort,ev,neut)" ], "gemotiveerde": [ "V(trans,verl_dw,verv_neut)" ], "verderfelijke": [ "Adj(attr,stell,verv_neut)" ], "bloembodem": [ "N(soort,ev,neut)" ], "lagere": [ "Adj(attr,vergr,verv_neut)" ], "Tegen": [ "Prep(voor)" ], "Sextant": [ "N(eigen,ev,neut)" ], "omstandigheid": [ "N(soort,ev,neut)" ], "eist": [ "V(trans,ott,3,ev)" ], "pil": [ "N(soort,ev,neut)" ], "vooruitgegaan": [ "V(trans,verl_dw,onverv)" ], "afdraaien": [ "V(trans,inf)" ], "Coler": [ "N(eigen,ev,neut)" ], "hadden": [ "V(hulp,ovt,1_of_2_of_3,mv)", "V(trans,ovt,1_of_2_of_3,mv)" ], "pleidooi": [ "N(soort,ev,neut)" ], "vakantie-contact": [ "N(soort,ev,neut)" ], "geopend": [ "V(trans,verl_dw,onverv)" ], "Palmen": [ "N(soort,mv,neut)" ], "Kunt": [ "V(hulp,ott,2,ev)" ], "courant": [ "Adj(attr,stell,onverv)" ], "Ouders": [ "N(soort,mv,neut)" ], "dunkt": [ "V(hulp_of_kopp,ott,3,ev)" ], "landhuis": [ "N(soort,ev,neut)" ], "gratie": [ "N(soort,ev,neut)" ], "duidelijk-Zweedse": [ "Adj(attr,stell,verv_neut)" ], "ontstolen": [ "V(trans,verl_dw,onverv)" ], "brood": [ "N(soort,ev,neut)", "N(eigen,ev,neut)" ], "dacht": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(intrans,ovt,1_of_2_of_3,ev)" ], "verstond": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "verklaard": [ "V(trans,verl_dw,onverv)" ], "gezinsmaaltijd": [ "N(soort,ev,neut)" ], "JEAN-LOUIS": [ "N(eigen,ev,neut)" ], "nageoogde": [ "V(trans,verl_dw,verv_neut)" ], "Westerse": [ "Adj(attr,stell,verv_neut)" ], "ZuidLimburg": [ "N(eigen,ev,neut)" ], "begeleid": [ "V(trans,verl_dw,onverv)" ], "meent": [ "V(trans,ott,3,ev)" ], "adoptiebeleid": [ "N(soort,ev,neut)" ], "verdoofd": [ "V(trans,verl_dw,onverv)" ], "verklaart": [ "V(trans,ott,3,ev)" ], "broeken": [ "N(soort,mv,neut)" ], "L'Air": [ "N(eigen,ev,neut)" ], "brutaliteit": [ "N(soort,ev,neut)" ], "zielen": [ "N(soort,mv,neut)" ], "Rijk": [ "N(eigen,ev,neut)" ], "Rijn": [ "N(eigen,ev,neut)" ], "Beckman": [ "N(eigen,ev,neut)" ], "aanvaarden": [ "V(trans,inf)", "V(trans,inf,subst)" ], "miljonair": [ "N(soort,ev,neut)" ], "onderkomen": [ "N(soort,ev,neut)" ], "krantenproject": [ "N(soort,ev,neut)" ], "Sparta": [ "N(eigen,ev,neut)" ], "pitje": [ "N(soort,ev,neut)" ], "verbonden": [ "V(trans,verl_dw,onverv)" ], "aangeraakt": [ "V(trans,verl_dw,onverv)" ], "traditioneel": [ "Adj(attr,stell,onverv)" ], "ergere": [ "Adj(attr,vergr,verv_neut)" ], "gebondenheid": [ "N(soort,ev,neut)" ], "hiernaast": [ "Adv(pron,aanw)" ], "Sex": [ "N(soort,ev,neut)" ], "grimmige": [ "Adj(attr,stell,verv_neut)" ], "Iedere": [ "Pron(onbep,neut,attr)" ], "uitwegen": [ "N(soort,mv,neut)" ], "klokslag": [ "Adv(gew,geen_func,stell,onverv)" ], "papieren": [ "Adj(attr,stell,onverv)", "N(soort,mv,neut)" ], "afschuwelijker": [ "Adj(attr,vergr,onverv)" ], "indien": [ "Conj(onder,met_fin)" ], "medewerking": [ "N(soort,ev,neut)" ], "wrijven": [ "V(trans,inf)" ], "beweren": [ "V(trans,inf)" ], "plakjes": [ "N(soort,mv,neut)" ], "motoren": [ "N(soort,mv,neut)" ], "Natuuuurlijk": [ "Adj(adv,stell,onverv)" ], "hertogin": [ "N(soort,ev,neut)" ], "beleefdheid": [ "N(soort,ev,neut)" ], "vervloekt": [ "V(trans,verl_dw,onverv)" ], "dunne": [ "Adj(attr,stell,verv_neut)" ], "zestiende": [ "Num(rang,bep,attr,onverv)", "Num(rang,bep,zelfst,onverv)" ], "Erkel": [ "N(eigen,ev,neut)" ], "Gisteren": [ "Adv(gew,geen_func,stell,onverv)" ], "Sera": [ "N(eigen,ev,neut)" ], "zorgvuldiger": [ "Adj(attr,vergr,onverv)" ], "cijferen": [ "V(trans,inf)" ], "rijken": [ "Adj(zelfst,stell,verv_mv)" ], "prof.": [ "N(eigen,ev,neut)" ], "onberispelijk": [ "Adj(attr,stell,onverv)" ], "Eigenlijk": [ "Adj(adv,stell,onverv)" ], "stichting": [ "N(soort,ev,neut)" ], "opvangen": [ "V(trans,inf)" ], "rijker": [ "Adj(attr,vergr,onverv)" ], "spasme": [ "N(soort,ev,neut)" ], "bezien": [ "V(trans,verl_dw,onverv)" ], "dergelijk": [ "Pron(aanw,neut,attr)" ], "pages": [ "N(soort,mv,neut)" ], "trachtte": [ "V(hulp,ovt,1_of_2_of_3,ev)" ], "kale": [ "Adj(attr,stell,verv_neut)" ], "Vorige": [ "Adj(attr,stell,verv_neut)" ], "leiden": [ "V(trans,inf)", "V(intrans,ott,1_of_2_of_3,mv)" ], "verstuurd": [ "V(trans,verl_dw,onverv)" ], "Revolutie": [ "N(soort,ev,neut)" ], "flessen": [ "N(soort,mv,neut)" ], "blijf": [ "V(hulp_of_kopp,ott,1,ev)", "V(intrans,ott,1,ev)" ], "leider": [ "N(soort,ev,neut)" ], "kalm": [ "Adj(attr,stell,onverv)" ], "hortend": [ "V(intrans,teg_dw,onverv)" ], "geschriften": [ "N(soort,mv,neut)" ], "blijk": [ "N(soort,ev,neut)" ], "stroken": [ "N(soort,mv,neut)" ], "milligram": [ "N(soort,ev,neut)" ], "algehele": [ "Adj(attr,stell,verv_neut)" ], "proef": [ "N(soort,ev,neut)" ], "Kluns": [ "N(eigen,ev,neut)" ], "Meighen": [ "N(eigen,ev,neut)" ], "spier": [ "N(soort,ev,neut)" ], "Stel": [ "V(trans,imp)" ], "merkten": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "mamuthones": [ "N(soort,mv,neut)" ], "donker": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "Dus": [ "Adv(gew,aanw)" ], "Campagnolo": [ "N(eigen,ev,neut)" ], "vloeimest": [ "N(soort,ev,neut)" ], "verloop": [ "N(soort,ev,neut)" ], "verloor": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Butler": [ "N(soort,ev,neut)" ], "uitgaande": [ "V(intrans,teg_dw,verv_neut)" ], "eigen": [ "Pron(aanw,neut,attr,w_eigen)", "Pron(onbep,neut,attr)", "Adj(attr,stell,onverv)" ], "pnd": [ "N(soort,mv,neut)" ], "ooit": [ "Adv(gew,onbep)" ], "pauze": [ "N(soort,ev,neut)" ], "folkloristisch": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "Recht-toe": [ "Adj(attr,stell,onverv)" ], "kranten": [ "N(soort,mv,neut)" ], "groeien": [ "V(intrans,inf)" ], "kamp": [ "N(soort,ev,neut)" ], "Neemt": [ "V(trans,ott,3,ev)" ], "gekocht": [ "V(trans,verl_dw,onverv)" ], "huurder": [ "N(soort,ev,neut)" ], "heersers": [ "N(soort,mv,neut)" ], "kapsel": [ "N(soort,ev,neut)" ], "autootje": [ "N(soort,ev,neut)" ], "ergeren": [ "V(refl,inf)" ], "gesigneerde": [ "V(trans,verl_dw,verv_neut)" ], "naartoe": [ "Adv(deel_adv)" ], "borduurnaald": [ "N(soort,ev,neut)" ], "nonnen": [ "N(soort,mv,neut)" ], "wijn-en-spijs-journalisten": [ "N(soort,mv,neut)" ], "oorspronkelijk": [ "Adj(adv,stell,onverv)" ], "linie": [ "N(soort,ev,neut)" ], "probeer": [ "V(trans,imp)" ], "souvereine": [ "N(soort,ev,neut)" ], "ambtelijke": [ "Adj(attr,stell,verv_neut)" ], "terwijl": [ "Conj(onder,met_fin)" ], "vaders": [ "N(soort,mv,neut)" ], "nummers": [ "N(soort,mv,neut)" ], "Seth": [ "N(eigen,ev,neut)" ], "Beatles": [ "N(eigen,mv,neut)" ], "meten": [ "V(trans,ott,1_of_2_of_3,mv)" ], "gesproken": [ "V(intrans,verl_dw,onverv)", "V(trans,verl_dw,onverv)" ], "bezitten": [ "V(trans,ott,1_of_2_of_3,mv)" ], "kookt": [ "V(intrans,ott,3,ev)", "V(intrans,ott,2,ev)" ], "leeftijd": [ "N(soort,ev,neut)" ], "gehandicapte": [ "V(trans,verl_dw,verv_neut)" ], "lekker": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "meter": [ "N(soort,ev,neut)" ], "kang": [ "N(soort,ev,neut)" ], "Eskimo": [ "N(soort,ev,neut)" ], "ineens": [ "Adv(gew,geen_func,stell,onverv)" ], "vuiltje": [ "N(soort,ev,neut)" ], "vriendinnen": [ "N(soort,mv,neut)" ], "simplistische": [ "Adj(attr,stell,verv_neut)" ], "Sir": [ "N(soort,ev,neut)" ], "Sit": [ "N(eigen,ev,neut)" ], "geparkeerd": [ "V(trans,verl_dw,onverv)" ], "pop": [ "N(soort,ev,neut)" ], "ziekenauto": [ "N(soort,ev,neut)" ], "Alghero": [ "N(eigen,ev,neut)" ], "kans": [ "N(soort,ev,neut)" ], "kant": [ "N(soort,ev,neut)" ], "pot": [ "N(soort,ev,neut)" ], "inmiddels": [ "Adv(gew,geen_func,stell,onverv)" ], "marktaandelen": [ "N(soort,mv,neut)" ], "meest": [ "Adv(gew,geen_func,overtr,onverv)", "Num(hoofd,onbep,attr,overtr,onverv)", "Num(hoofd,onbep,zelfst,overtr,onverv)" ], "inenten": [ "V(intrans,inf)" ], "proces": [ "N(soort,ev,neut)" ], "verwerping": [ "N(soort,ev,neut)" ], "afgeven": [ "V(intrans,inf)" ], "braak": [ "Adj(attr,stell,onverv)" ], "laboratorium": [ "N(soort,ev,neut)" ], "ontvangst": [ "N(soort,ev,neut)" ], "misselijkheid": [ "N(soort,ev,neut)" ], "arsenaal": [ "N(soort,ev,neut)" ], "t.a.v.": [ "Prep(voor)" ], "verhoudingen": [ "N(soort,mv,neut)" ], "Dwars": [ "Adj(adv,stell,onverv)" ], "rivier": [ "N(soort,ev,neut)" ], "hoogstens": [ "Adv(gew,geen_func,stell,onverv)" ], "gelijkvormige": [ "Adj(attr,stell,verv_neut)" ], "films": [ "N(soort,mv,neut)" ], "ultrafijne": [ "Adj(attr,stell,verv_neut)" ], "meespeelden": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "beurs": [ "N(soort,ev,neut)" ], "doorleef": [ "V(trans,ott,1,ev)" ], "argument": [ "N(soort,ev,neut)" ], "donderdag": [ "N(eigen,ev,neut)" ], "liefdadigheid": [ "N(soort,ev,neut)" ], "konservatieve": [ "Adj(attr,stell,verv_neut)" ], "Amersfoortse": [ "Adj(attr,stell,verv_neut)" ], "buik": [ "N(soort,ev,neut)" ], "Blik": [ "N(soort,ev,neut)" ], "stellingname": [ "N(soort,ev,neut)" ], "zitting": [ "N(soort,ev,neut)" ], "laboranten": [ "N(soort,mv,neut)" ], "buis": [ "N(soort,ev,neut)" ], "Heren": [ "N(soort,mv,neut)" ], "buit": [ "N(soort,ev,neut)" ], "Turkije": [ "N(eigen,ev,neut)" ], "verstaan": [ "V(trans,inf)" ], "fantasie": [ "N(soort,ev,neut)" ], "passende": [ "V(intrans,teg_dw,verv_neut)" ], "enclave": [ "N(soort,ev,neut)" ], "verstaat": [ "V(trans,ott,3,ev)" ], "links": [ "Adv(gew,geen_func,stell,onverv)" ], "blind": [ "Adj(attr,stell,onverv)" ], "buikig": [ "Adj(attr,stell,onverv)" ], "adjudant": [ "N(soort,ev,neut)" ], "aankwamen": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "schoongewaaid": [ "V(intrans,verl_dw,onverv)" ], "zoete": [ "Adj(attr,stell,verv_neut)" ], "afstoting": [ "N(soort,ev,neut)" ], "Trapp": [ "N(eigen,ev,neut)" ], "dienst": [ "N(soort,ev,neut)", "N(eigen,ev,neut)" ], "Anton": [ "N(eigen,ev,neut)" ], "feilloze": [ "Adj(attr,stell,verv_neut)" ], "borden": [ "N(soort,mv,neut)" ], "ontdekken": [ "V(trans,inf)" ], "hierheen": [ "Adv(pron,aanw)" ], "bordes": [ "N(soort,ev,neut)" ], "Chr.": [ "N(eigen,ev,neut)" ], "telefoontje": [ "N(soort,ev,neut)" ], "zingen": [ "V(trans,inf)", "V(intrans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "traditionele": [ "Adj(attr,stell,verv_neut)" ], "buikje": [ "N(soort,ev,neut)" ], "ambitieus": [ "Adj(attr,stell,onverv)" ], "bewerkt": [ "V(trans,verl_dw,onverv)", "V(trans,ott,2,ev)" ], "fouten": [ "N(soort,mv,neut)" ], "laatste": [ "Adj(attr,overtr,verv_neut)", "Adj(zelfst,overtr,verv_neut)" ], "blijvend": [ "V(intrans,teg_dw,onverv)" ], "type": [ "N(soort,ev,neut)" ], "passage": [ "N(soort,ev,neut)" ], "handfuncties": [ "N(soort,mv,neut)" ], "avondeten": [ "N(soort,ev,neut)" ], "doorbraak": [ "N(soort,ev,neut)" ], "brandend": [ "V(intrans,teg_dw,onverv)" ], "spijt": [ "V(intrans,ott,3,ev)", "N(soort,ev,neut)" ], "opzicht": [ "N(soort,ev,neut)" ], "impotentie": [ "N(soort,ev,neut)" ], "kampen": [ "V(intrans,inf)" ], "geworpen": [ "V(trans,verl_dw,onverv)" ], "sociaaleconomisch": [ "Adj(adv,stell,onverv)" ], "ineenstorten": [ "V(intrans,inf,subst)" ], "getinte": [ "Adj(attr,stell,verv_neut)" ], "rellen": [ "N(soort,mv,neut)" ], "sadistisch": [ "Adj(attr,stell,onverv)" ], "gisting": [ "N(soort,ev,neut)" ], "ontwikkeling": [ "N(soort,ev,neut)" ], "rondloopt": [ "V(intrans,ott,3,ev)" ], "seizoenen": [ "N(soort,mv,neut)" ], "onbetamelijk": [ "Adj(attr,stell,onverv)" ], "ingevoerd": [ "V(trans,verl_dw,onverv)" ], "nadien": [ "Adv(gew,aanw)" ], "Zolang": [ "Conj(onder,met_fin)" ], "stemming": [ "N(soort,ev,neut)" ], "symbolen": [ "N(soort,mv,neut)" ], "haute-couture": [ "N(soort,ev,neut)" ], "verzameling": [ "N(soort,ev,neut)" ], "glimlachende": [ "V(intrans,teg_dw,verv_neut)" ], "kalend": [ "V(intrans,teg_dw,onverv)" ], "arresteerde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "informeert": [ "V(trans,ott,3,ev)" ], "hardgekookte": [ "Adj(attr,stell,verv_neut)" ], "miste": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "ligging": [ "N(soort,ev,neut)" ], "lieveling": [ "N(soort,ev,neut)" ], "obligaties": [ "N(soort,mv,neut)" ], "Louise": [ "N(eigen,ev,neut)" ], "pluizenraper": [ "N(soort,ev,neut)" ], "capituleer": [ "V(intrans,ott,1,ev)" ], "Complimenteus": [ "Adj(attr,stell,onverv)" ], "verdienen": [ "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "sterveling": [ "N(soort,ev,neut)" ], "staken": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "wijten": [ "V(trans,inf)" ], "Christus": [ "N(eigen,ev,neut)" ], "Presentatrice": [ "N(soort,ev,neut)" ], "Pere-Lachaise": [ "N(eigen,ev,neut)" ], "verwierf": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "TNO": [ "N(eigen,ev,neut)" ], "talenten": [ "N(soort,mv,neut)" ], "overschreden": [ "V(trans,verl_dw,onverv)" ], "beleefd": [ "V(intrans,verl_dw,onverv)" ], "Lapland": [ "N(eigen,ev,neut)" ], "bad": [ "V(trans,ovt,1_of_2_of_3,ev)", "N(soort,ev,neut)" ], "leraren": [ "N(soort,mv,neut)" ], "kast": [ "N(soort,ev,neut)" ], "aangetroffen": [ "V(trans,verl_dw,onverv)" ], "vlekkies": [ "N(soort,mv,neut)" ], "ballingschap": [ "N(soort,ev,neut)" ], "Rita": [ "N(eigen,ev,neut)" ], "strafbehoefte": [ "N(soort,ev,neut)" ], "Boeing": [ "N(soort,ev,neut)" ], "bak": [ "V(trans,imp)" ], "Armonada": [ "N(eigen,ev,neut)" ], "kapsones": [ "N(soort,mv,neut)" ], "bal": [ "N(soort,ev,neut)" ], "onvrij": [ "Adj(attr,stell,onverv)" ], "nalopen": [ "V(trans,inf)" ], "alsjeblieft": [ "Int", "Adv(gew,geen_func,stell,onverv)" ], "beleeft": [ "V(trans,ott,3,ev)" ], "Gedroogd": [ "V(intrans,verl_dw,onverv)" ], "voortreffelijk": [ "Adj(adv,stell,onverv)" ], "bar": [ "N(soort,ev,neut)", "Adj(adv,stell,onverv)" ], "raadzaal": [ "N(soort,ev,neut)" ], "Afgelopen": [ "V(intrans,verl_dw,onverv)" ], "nachtmerrie": [ "N(soort,ev,neut)" ], "verkrachtingen": [ "N(soort,mv,neut)" ], "Sol": [ "N(eigen,ev,neut)" ], "Son": [ "N(eigen,ev,neut)" ], "gladde": [ "Adj(attr,stell,verv_neut)" ], "belangrijker": [ "Adj(attr,vergr,onverv)" ], "wringen": [ "V(trans,inf)" ], "waggelt": [ "V(intrans,ott,3,ev)" ], "muziekinstituut": [ "N(soort,ev,neut)" ], "terugkwam": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "gronden": [ "N(soort,mv,neut)" ], "onwaarschijnlijk": [ "Adj(attr,stell,onverv)" ], "Indonesie": [ "N(eigen,ev,neut)" ], "houding": [ "N(soort,ev,neut)" ], "verstoort": [ "V(trans,ott,3,ev)" ], "polio": [ "N(soort,ev,neut)" ], "Central": [ "N(eigen,ev,neut)" ], "stokken": [ "N(soort,mv,neut)" ], "polis": [ "N(soort,ev,neut)" ], "breken": [ "V(intrans,inf)", "V(trans,inf)" ], "iiii": [ "Num(hoofd,bep,zelfst,onverv)" ], "Nederland": [ "N(eigen,ev,neut)" ], "april": [ "N(eigen,ev,neut)" ], "zeuren": [ "V(intrans,inf)" ], "achterhalen": [ "V(trans,inf)" ], "wegspoelen": [ "V(trans,inf)" ], "schaapsherder": [ "N(soort,ev,neut)" ], "instructie": [ "N(soort,ev,neut)" ], "Oude": [ "N(eigen,ev,neut)" ], "spirit": [ "N(soort,ev,neut)" ], "bordje": [ "N(soort,ev,neut)" ], "Amerikanen": [ "N(soort,mv,neut)" ], "Delft": [ "N(eigen,ev,neut)" ], "gereedschap": [ "N(soort,ev,neut)" ], "dichtgehouden": [ "V(trans,verl_dw,onverv)" ], "kauw": [ "V(intrans,ott,1,ev)" ], "Bijlmermeer": [ "N(eigen,ev,neut)" ], "haute-finance": [ "N(soort,ev,neut)" ], "blikken": [ "N(soort,mv,neut)" ], "Kennelijk": [ "Adj(adv,stell,onverv)" ], "olifant": [ "N(soort,ev,neut)" ], "ontmoeten": [ "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "Verbondsvergadering": [ "N(soort,ev,neut)" ], "gesneden": [ "V(trans,verl_dw,onverv)" ], "thans": [ "Adv(gew,geen_func,stell,onverv)", "Adv(gew,aanw)" ], "allerhande": [ "Pron(onbep,neut,attr)" ], "Plotseling": [ "Adj(adv,stell,onverv)" ], "schieten": [ "V(intrans,inf)" ], "foutje": [ "N(soort,ev,neut)" ], "zinde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "toegediend": [ "V(trans,verl_dw,onverv)" ], "haring": [ "N(soort,ev,neut)" ], "oppositieleider": [ "N(soort,ev,neut)" ], "behelpen": [ "V(refl,inf)" ], "vroegere": [ "Adj(attr,vergr,verv_neut)" ], "minderwaardigheidsgevoelens": [ "N(soort,mv,neut)" ], "Weet": [ "V(trans,ott,2,ev)", "V(intrans,ott,1,ev)" ], "meubelplaat": [ "N(soort,ev,neut)" ], "iemand": [ "Pron(onbep,neut,zelfst)" ], "individueel": [ "Adj(attr,stell,onverv)" ], "PARIJS": [ "N(eigen,ev,neut)" ], "gemist": [ "V(trans,verl_dw,onverv)" ], "driedimensionaal": [ "Adj(adv,stell,onverv)" ], "verkochten": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "openingetje": [ "N(soort,ev,neut)" ], "secundaire": [ "Adj(attr,stell,verv_neut)" ], "jongeren": [ "Adj(zelfst,vergr,verv_neut)", "Adj(zelfst,stell,verv_mv)" ], "controleren": [ "V(trans,inf)" ], "overgebracht": [ "V(trans,verl_dw,onverv)" ], "heide": [ "N(soort,ev,neut)" ], "Verantwoorde": [ "N(eigen,ev,neut)" ], "minderjarigen": [ "Adj(zelfst,stell,verv_mv)" ], "St.": [ "N(eigen,ev,neut)" ], "reumatische": [ "Adj(attr,stell,verv_neut)" ], "fotograferende": [ "V(intrans,teg_dw,verv_neut)" ], "gehaakte": [ "V(trans,verl_dw,verv_neut)" ], "bed": [ "N(soort,ev,neut)" ], "da's": [ "V(hulp_of_kopp,ott,3,ev)" ], "filmscript": [ "N(soort,ev,neut)" ], "vissen": [ "N(soort,mv,neut)", "V(intrans,inf)" ], "bek": [ "N(soort,ev,neut)" ], "zuchtte": [ "V(intrans,ovt,1_of_2_of_3,ev)", "V(trans,ovt,1_of_2_of_3,ev)" ], "bel": [ "Misc(vreemd)" ], "Wanneer": [ "Conj(onder,met_fin)", "Adv(gew,betr)" ], "ben": [ "V(hulp_of_kopp,ott,1,ev)", "V(hulp_of_kopp,ott,2,ev)", "V(intrans,ott,1,ev)" ], "Loopt": [ "V(intrans,ott,3,ev)" ], "pijnloos": [ "Adj(adv,stell,onverv)" ], "vrouw-vrouw": [ "N(soort,ev,neut)" ], "gunstiger": [ "Adj(attr,vergr,onverv)" ], "bepalen": [ "V(trans,inf)" ], "erbij": [ "Adv(pron,onbep)" ], "klaagde": [ "V(trans,ovt,1_of_2_of_3,ev)", "V(intrans,ovt,1_of_2_of_3,ev)" ], "verbondenheid": [ "N(soort,ev,neut)" ], "grondig": [ "Adj(adv,stell,onverv)" ], "Alexander": [ "N(eigen,ev,neut)" ], "hersencellen": [ "N(soort,mv,neut)" ], "Corner": [ "N(eigen,ev,neut)" ], "kistje": [ "N(soort,ev,neut)" ], "onderwijs": [ "N(soort,ev,neut)" ], "veertienjarig": [ "Adj(attr,stell,onverv)" ], "Arend": [ "N(eigen,ev,neut)" ], "Sta": [ "V(intrans,ott,2,ev)" ], "passant": [ "Misc(vreemd)" ], "doodgewone": [ "Adj(attr,stell,verv_neut)" ], "tamelijk": [ "Adv(gew,geen_func,stell,onverv)" ], "florissant": [ "Adj(attr,stell,onverv)" ], "objecten": [ "N(soort,mv,neut)" ], "Chauvin": [ "N(eigen,ev,neut)" ], "verwrongen": [ "V(trans,verl_dw,onverv)" ], "opgevoed": [ "V(trans,verl_dw,onverv)" ], "consideratie": [ "N(soort,ev,neut)" ], "reumatisch": [ "Adj(attr,stell,onverv)" ], "blauwbloedigen": [ "Adj(zelfst,stell,verv_mv)" ], "advies": [ "N(soort,ev,neut)" ], "atoomduikboot": [ "N(soort,ev,neut)" ], "veranda": [ "N(soort,ev,neut)" ], "begin": [ "N(soort,ev,neut)", "V(trans,ott,1,ev)", "V(intrans,ott,1,ev)" ], "Dreimaderlhaus": [ "N(eigen,ev,neut)" ], "dagboek": [ "N(soort,ev,neut)" ], "Vader": [ "N(soort,ev,neut)" ], "brillen": [ "N(soort,mv,neut)" ], "biljardairs": [ "N(soort,mv,neut)" ], "NOS-schakelcentrum": [ "N(soort,ev,neut)" ], "donzen": [ "Adj(attr,stell,onverv)" ], "hertrouwde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "geopenbaard": [ "V(intrans,verl_dw,onverv)" ], "Acifit-ploegleider": [ "N(soort,ev,neut)" ], "erfelijke": [ "Adj(attr,stell,verv_neut)" ], "Letter": [ "N(soort,ev,neut)" ], "vastbindt": [ "V(trans,ott,2,ev)" ], "rijkdom": [ "N(soort,ev,neut)" ], "overtreft": [ "V(trans,ott,3,ev)" ], "Damas": [ "N(eigen,ev,neut)" ], "predikant": [ "N(soort,ev,neut)" ], "indenken": [ "V(trans,inf)" ], "loodje": [ "N(soort,ev,neut)" ], "eensterre-restaurants": [ "N(soort,mv,neut)" ], "kenden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "chronische": [ "Adj(attr,stell,verv_neut)" ], "FBO": [ "N(eigen,ev,neut)" ], "ouderlijk": [ "Adj(attr,stell,onverv)" ], "vastgezet": [ "V(trans,verl_dw,onverv)" ], "broedgelegenheid": [ "N(soort,ev,neut)" ], "galbulten": [ "N(soort,mv,neut)" ], "bankier": [ "N(soort,ev,neut)" ], "verscheurd": [ "V(trans,verl_dw,onverv)" ], "metro": [ "N(soort,ev,neut)" ], "fantastische": [ "Adj(attr,stell,verv_neut)" ], "ingehaald": [ "V(trans,verl_dw,onverv)" ], "ontstegen": [ "V(intrans,verl_dw,onverv)" ], "Honderden": [ "Num(hoofd,bep,attr,onverv)" ], "terechtgekomen": [ "V(intrans,verl_dw,onverv)" ], "Craig": [ "N(eigen,ev,neut)" ], "TREFFEN": [ "V(trans,ott,1_of_2_of_3,mv)" ], "ademnood": [ "N(soort,ev,neut)" ], "brand": [ "N(soort,ev,neut)" ], "spits": [ "N(soort,ev,neut)" ], "GrootBrittannie": [ "N(eigen,ev,neut)" ], "riepen": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "voortvloeiden": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "lakens": [ "N(soort,mv,neut)" ], "bij": [ "Prep(voor)", "Adv(deel_v)", "Adv(gew,geen_func,stell,onverv)", "Adv(deel_adv)" ], "reisgezelschap": [ "N(soort,ev,neut)" ], "stromende": [ "V(intrans,teg_dw,verv_neut)" ], "portretten": [ "N(soort,mv,neut)" ], "Boven": [ "Prep(voor)", "Adv(gew,geen_func,stell,onverv)" ], "d'r": [ "Pron(bez,3,ev,neut,attr)" ], "afgeweest": [ "V(trans,verl_dw,onverv)" ], "verkeersongelukken": [ "N(soort,mv,neut)" ], "vijzelen": [ "V(trans,inf)" ], "Picpus": [ "N(eigen,ev,neut)" ], "kunnen": [ "V(hulp,inf)", "V(intrans,inf)", "V(intrans,ott,1_of_2_of_3,mv)", "V(trans,inf)", "V(hulp,ott,1_of_2_of_3,mv)", "V(trans,ott,1_of_2_of_3,mv)" ], "idylles": [ "N(soort,mv,neut)" ], "Rhoda": [ "N(eigen,ev,neut)" ], "suede": [ "N(soort,ev,neut)" ], "verkeer": [ "N(soort,ev,neut)" ], "praat": [ "V(intrans,ott,1,ev)", "V(intrans,ott,2,ev)", "V(intrans,ott,3,ev)" ], "Ede": [ "N(eigen,ev,neut)" ], "gebruiken": [ "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "Stadionweg": [ "N(eigen,ev,neut)" ], "anderen": [ "Pron(onbep,neut,zelfst)" ], "Dingsda": [ "N(eigen,ev,neut)" ], "Huyskens": [ "N(eigen,ev,neut)" ], "winkelen": [ "V(intrans,inf)" ], "verstand": [ "N(soort,ev,neut)" ], "tachtig": [ "Num(hoofd,bep,attr,onverv)" ], "Toetela": [ "N(eigen,ev,neut)" ], "knikte": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "economisch": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "Duits": [ "Adj(zelfst,stell,onverv)", "Adj(attr,stell,onverv)" ], "Cijfers": [ "N(soort,mv,neut)" ], "doordrinkt": [ "V(intrans,ott,3,ev)" ], "verleiden": [ "V(trans,inf,subst)" ], "hoegenaamd": [ "Adv(gew,geen_func,stell,onverv)" ], "Welk": [ "Pron(vrag,neut,zelfst)" ], "Perzen": [ "N(eigen,ev,neut)" ], "Well": [ "Misc(vreemd)" ], "troffen": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "slaat-ie": [ "V(intrans,ott,3,ev)" ], "december": [ "N(eigen,ev,neut)" ], "landbouw": [ "N(soort,ev,neut)" ], "solidariteit": [ "N(soort,ev,neut)" ], "kritische": [ "Adj(attr,stell,verv_neut)" ], "pikant": [ "Adj(attr,stell,onverv)" ], "individuele": [ "Adj(attr,stell,verv_neut)" ], "melodieen": [ "N(soort,mv,neut)" ], "aanwezige": [ "Adj(attr,stell,verv_neut)" ], "smerig": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "allang": [ "Adv(gew,geen_func,stell,onverv)" ], "rotsen": [ "N(soort,mv,neut)" ], "Duits-Nederlandse": [ "Adj(attr,stell,verv_neut)" ], "Chambord": [ "N(eigen,ev,neut)" ], "aldus": [ "Adv(gew,aanw)" ], "hurken": [ "N(soort,mv,neut)" ], "Een": [ "Art(onbep,zijd_of_onzijd,neut)", "Num(hoofd,bep,zelfst,onverv)", "Num(hoofd,bep,attr,onverv)" ], "dialoog": [ "N(soort,ev,neut)" ], "medelijden": [ "N(soort,ev,neut)" ], "mishandeling": [ "N(soort,ev,neut)" ], "vergoeden": [ "V(trans,inf)" ], "menigte": [ "N(soort,ev,neut)" ], "onthouding": [ "N(soort,ev,neut)" ], "principe": [ "N(soort,ev,neut)" ], "gehoorzaamden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "verbod": [ "N(soort,ev,neut)" ], "ziekelijke": [ "Adj(attr,stell,verv_neut)" ], "beschouwd": [ "V(trans,verl_dw,onverv)" ], "ontsteld": [ "Adj(adv,stell,onverv)" ], "Delon": [ "N(eigen,ev,neut)" ], "artikel": [ "N(soort,ev,neut)" ], "sterrenbeeld": [ "N(soort,ev,neut)" ], "alleenrecht": [ "N(soort,ev,neut)" ], "sportnieuws": [ "N(soort,ev,neut)" ], "handleiding": [ "N(soort,ev,neut)" ], "Nieuwenhuizen": [ "N(eigen,ev,neut)" ], "probleem": [ "N(soort,ev,neut)" ], "beschouwt": [ "V(trans,ott,3,ev)" ], "Flas": [ "N(eigen,ev,neut)" ], "organisaties": [ "N(soort,mv,neut)" ], "reisbureaus": [ "N(soort,mv,neut)" ], "gevangen": [ "V(trans,verl_dw,onverv)" ], "nauwelijks": [ "Adv(gew,geen_func,stell,onverv)" ], "Ergens": [ "Adv(pron,onbep)" ], "bevat": [ "V(trans,ott,3,ev)" ], "subliem": [ "Adj(attr,stell,onverv)" ], "Indian": [ "N(eigen,ev,neut)" ], "Tommy": [ "N(eigen,ev,neut)" ], "buitenromp": [ "N(soort,ev,neut)" ], "vreugde": [ "N(soort,ev,neut)" ], "voorwerpen": [ "N(soort,mv,neut)" ], "begon": [ "V(hulp,ovt,1_of_2_of_3,ev)", "V(intrans,ovt,1_of_2_of_3,ev)", "V(trans,ovt,1_of_2_of_3,ev)" ], "gezinsleven": [ "N(soort,ev,neut)" ], "opgehouden": [ "V(trans,verl_dw,onverv)" ], "Willem": [ "N(eigen,ev,neut)" ], "vrij": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "gedragingen": [ "N(soort,mv,neut)" ], "begint": [ "V(intrans,ott,3,ev)", "V(hulp,ott,3,ev)" ], "soep": [ "N(soort,ev,neut)" ], "gewone": [ "Adj(attr,stell,verv_neut)" ], "plan": [ "N(soort,ev,neut)" ], "kijken": [ "V(intrans,inf)", "V(trans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "ontzettende": [ "Adj(attr,stell,verv_neut)" ], "gebieden": [ "N(soort,mv,neut)" ], "zulke": [ "Pron(aanw,dat,attr)" ], "beschreven": [ "V(trans,verl_dw,onverv)" ], "prolongatie": [ "N(soort,ev,neut)" ], "plat": [ "N(soort,ev,neut)", "Adj(attr,stell,onverv)" ], "geladen": [ "V(trans,verl_dw,onverv)" ], "Patroni": [ "N(eigen,ev,neut)" ], "woedt": [ "V(intrans,ott,3,ev)" ], "verdwenen": [ "V(intrans,verl_dw,onverv)", "V(intrans,ovt,1_of_2_of_3,mv)" ], "slaperigheid": [ "N(soort,ev,neut)" ], "toaalbeeld": [ "N(soort,ev,neut)" ], "snackbar": [ "N(soort,ev,neut)" ], "Peinzend": [ "V(intrans,teg_dw,onverv)" ], "opgedroogd": [ "V(intrans,verl_dw,onverv)" ], "populariteit": [ "N(soort,ev,neut)" ], "Jenny": [ "N(eigen,ev,neut)" ], "hieromtrent": [ "Adv(pron,aanw)" ], "schitteren": [ "V(intrans,inf)" ], "Vijf": [ "Num(hoofd,bep,attr,onverv)" ], "taxichauffeur": [ "N(soort,ev,neut)" ], "Blaise": [ "N(eigen,ev,neut)" ], "waargemaakt": [ "V(trans,verl_dw,onverv)" ], "kneep": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "stick": [ "N(soort,ev,neut)" ], "herkende": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "begonne": [ "V(intrans,verl_dw,onverv)" ], "gewoon": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "afknippen": [ "V(trans,inf)" ], "oproep": [ "N(soort,ev,neut)" ], "zelfstandigheid": [ "N(soort,ev,neut)" ], "compromis": [ "N(soort,ev,neut)" ], "oproer": [ "N(soort,ev,neut)" ], "Jacobus": [ "N(eigen,ev,neut)" ], "nodige": [ "Adj(attr,stell,verv_neut)" ], "bod": [ "N(soort,ev,neut)" ], "bof": [ "N(soort,ev,neut)" ], "eigendom": [ "N(soort,ev,neut)" ], "voorlichting": [ "N(soort,ev,neut)" ], "restanten": [ "N(soort,mv,neut)" ], "FIM": [ "N(eigen,ev,neut)" ], "bom": [ "N(soort,ev,neut)" ], "bos": [ "N(soort,ev,neut)" ], "vermoeidheidverschijnselen": [ "N(soort,mv,neut)" ], "commerciele": [ "Adj(attr,stell,verv_neut)" ], "Hommes": [ "N(eigen,ev,neut)" ], "waardoor": [ "Adv(pron,betr)", "Adv(pron,vrag)" ], "melkhandelaar": [ "N(soort,ev,neut)" ], "neem": [ "V(trans,imp)", "V(trans,ott,2,ev)", "V(trans,ott,1,ev)" ], "complex": [ "N(soort,ev,neut)" ], "gevarieerd": [ "V(trans,verl_dw,onverv)" ], "geconstateerd": [ "V(trans,verl_dw,onverv)" ], "neer": [ "Adv(deel_v)" ], "grondbelasting": [ "N(soort,ev,neut)" ], "toegedaan": [ "V(trans,verl_dw,onverv)" ], "Voorzichtig": [ "Adj(adv,stell,onverv)" ], "tijdverdrijf": [ "N(soort,ev,neut)" ], "University": [ "N(eigen,ev,neut)" ], "reisdoel": [ "N(soort,ev,neut)" ], "behoeven": [ "V(hulp,inf)" ], "opdoemen": [ "V(intrans,inf)" ], "Ruime": [ "Adj(attr,stell,verv_neut)" ], "Burton": [ "N(eigen,ev,neut)" ], "klokkeluider": [ "N(soort,ev,neut)" ], "voorbereidselen": [ "N(soort,mv,neut)" ], "afgelegen": [ "Adj(attr,stell,onverv)" ], "colleges": [ "N(soort,mv,neut)" ], "bevel": [ "N(soort,ev,neut)" ], "Voortaan": [ "Adv(gew,geen_func,stell,onverv)" ], "Werp": [ "V(trans,imp)" ], "harmonie": [ "N(soort,ev,neut)" ], "nabuureiland": [ "N(soort,ev,neut)" ], "halfslachtigheid": [ "N(soort,ev,neut)" ], "Indien": [ "Conj(onder,met_fin)" ], "speciale": [ "Adj(attr,stell,verv_neut)" ], "Afgaande": [ "V(intrans,teg_dw,verv_neut)" ], "industrie": [ "N(soort,ev,neut)" ], "Willie": [ "N(eigen,ev,neut)" ], "opgevoerd": [ "V(trans,verl_dw,onverv)" ], "Arabieren": [ "N(soort,mv,neut)" ], "varkensvlees": [ "N(soort,ev,neut)" ], "Nieuwjaarsdag": [ "N(eigen,ev,neut)" ], "schepper": [ "N(soort,ev,neut)" ], "verwijten": [ "N(soort,mv,neut)", "V(trans,inf)" ], "spiraalvormige": [ "Adj(attr,stell,verv_neut)" ], "zaaks": [ "N(soort,ev,gen)" ], "maandelijkse": [ "Adj(attr,stell,verv_neut)" ], "plek": [ "N(soort,ev,neut)" ], "draden": [ "N(soort,mv,neut)" ], "West": [ "Misc(vreemd)" ], "Glans": [ "N(soort,ev,neut)" ], "bomen": [ "N(soort,mv,neut)" ], "Elk": [ "Pron(onbep,neut,attr)", "Pron(onbep,neut,zelfst)" ], "verschil": [ "N(soort,ev,neut)" ], "achtergrond": [ "N(soort,ev,neut)" ], "aarzelt": [ "V(intrans,ott,3,ev)" ], "behoede": [ "V(trans,conj)" ], "alsof": [ "Conj(onder,met_fin)" ], "profeet": [ "N(soort,ev,neut)" ], "huursom": [ "N(soort,ev,neut)" ], "revolutiontair": [ "N(soort,ev,neut)" ], "persagent": [ "N(soort,ev,neut)" ], "schoonheid": [ "N(soort,ev,neut)" ], "onvervangbaar": [ "Adj(attr,stell,onverv)" ], "snufje": [ "N(soort,ev,neut)" ], "gemutst": [ "Adj(attr,stell,onverv)" ], "kampementen": [ "N(soort,mv,neut)" ], "kleuradvies": [ "N(soort,ev,neut)" ], "opname": [ "N(soort,ev,neut)" ], "wrange": [ "Adj(attr,stell,verv_neut)" ], "knorde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "flats": [ "N(soort,mv,neut)" ], "verbreken": [ "V(trans,inf)" ], "Verbond": [ "N(soort,ev,neut)" ], "boekenkast": [ "N(soort,ev,neut)" ], "Psychologen": [ "N(soort,mv,neut)" ], "Soestdijk": [ "N(eigen,ev,neut)" ], "Roche": [ "N(eigen,ev,neut)" ], "nature": [ "N(soort,ev,dat)" ], "Bardot": [ "N(eigen,ev,neut)" ], "moeite": [ "N(soort,ev,neut)" ], "aanzetten": [ "V(intrans,inf)" ], "lampjes": [ "N(soort,mv,neut)" ], "technologie": [ "N(soort,ev,neut)" ], "wijzerplaat": [ "N(soort,ev,neut)" ], "gunstigst": [ "Adj(attr,overtr,onverv)" ], "Oosten": [ "N(eigen,ev,neut)" ], "zwijgen": [ "V(intrans,inf)" ], "snelheidsovertredingen": [ "N(soort,mv,neut)" ], "wetten": [ "N(soort,mv,neut)" ], "Borneo-SumatraHandelmaatschappij": [ "N(eigen,ev,neut)" ], "Ineens": [ "Adv(gew,geen_func,stell,onverv)" ], "flauw": [ "Adj(attr,stell,onverv)" ], "toegezwaaid": [ "V(trans,verl_dw,onverv)" ], "daarin": [ "Adv(pron,aanw)" ], "kastekort": [ "N(soort,ev,neut)" ], "opwinding": [ "N(soort,ev,neut)" ], "beschikken": [ "V(intrans,ott,1_of_2_of_3,mv)", "V(trans,inf)" ], "decor": [ "N(soort,ev,neut)" ], "behoeft": [ "V(hulp,ott,3,ev)", "V(trans,ott,3,ev)" ], "streek": [ "V(intrans,ovt,1_of_2_of_3,ev)", "N(soort,ev,neut)" ], "regeringsschijven": [ "N(soort,mv,neut)" ], "Honderdvijftig": [ "Num(hoofd,bep,attr,onverv)" ], "tweeenvijftig": [ "Num(hoofd,bep,attr,onverv)" ], "kralenkransen": [ "N(soort,mv,neut)" ], "gedwongen": [ "V(trans,verl_dw,onverv)" ], "streep": [ "N(soort,ev,neut)" ], "eerbied": [ "N(soort,ev,neut)" ], "vertederd": [ "V(trans,verl_dw,onverv)" ], "vlaktes": [ "N(soort,mv,neut)" ], "gestolen": [ "V(trans,verl_dw,onverv)" ], "opeenstapeling": [ "N(soort,ev,neut)" ], "Vietnamese": [ "Adj(attr,stell,verv_neut)" ], "fantaseerden": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "peterselie": [ "N(soort,ev,neut)" ], "bus": [ "N(soort,ev,neut)" ], "plannen": [ "N(soort,mv,neut)" ], "vertelden": [ "V(trans,ovt,1_of_2_of_3,mv)", "V(intrans,ovt,1_of_2_of_3,mv)" ], "hoofd": [ "N(soort,ev,neut)" ], "organisatie": [ "N(soort,ev,neut)" ], "fornuis": [ "N(soort,ev,neut)" ], "India": [ "N(eigen,ev,neut)" ], "muren": [ "N(soort,mv,neut)" ], "soms": [ "Adv(gew,aanw)", "Adv(gew,geen_func,stell,onverv)" ], "stijf": [ "Adj(adv,stell,onverv)" ], "vermande": [ "V(refl,ovt,1_of_2_of_3,ev)" ], "geroken": [ "V(trans,verl_dw,onverv)" ], "relatief": [ "Adj(attr,stell,onverv)" ], "VVV's": [ "N(soort,mv,neut)" ], "Jamesy": [ "N(eigen,ev,neut)" ], "gedoe": [ "N(soort,ev,neut)" ], "frappante": [ "Adj(attr,stell,verv_neut)" ], "Indie": [ "N(eigen,ev,neut)" ], "afhangt": [ "V(intrans,ott,3,ev)" ], "stijl": [ "N(soort,ev,neut)" ], "voldoende": [ "Pron(onbep,neut,attr)", "Pron(onbep,neut,zelfst)" ], "actrice": [ "N(soort,ev,neut)" ], "democratie": [ "N(soort,ev,neut)" ], "kopen": [ "V(trans,inf)", "V(intrans,inf)", "V(intrans,ott,1_of_2_of_3,mv)" ], "anderhalf": [ "Num(hoofd,bep,attr,onverv)" ], "keuzevakken": [ "N(soort,mv,neut)" ], "televisie": [ "N(soort,ev,neut)" ], "intelligent": [ "Adj(attr,stell,onverv)" ], "chaos": [ "N(soort,ev,neut)" ], "akelige": [ "Adj(attr,stell,verv_neut)" ], "concentreren": [ "V(refl,inf)" ], "scala": [ "N(soort,ev,neut)" ], "gewoonten": [ "N(soort,mv,neut)" ], "natuur": [ "N(soort,ev,neut)" ], "girls": [ "Misc(vreemd)" ], "Marrat": [ "N(eigen,ev,neut)" ], "derde": [ "Num(rang,bep,attr,onverv)" ], "intellectuele": [ "Adj(attr,stell,verv_neut)" ], "eenvoudig": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "wagens": [ "N(soort,mv,neut)" ], "tempo": [ "N(soort,ev,neut)" ], "gebeurtenis": [ "N(soort,ev,neut)" ], "Omgerekend": [ "V(trans,verl_dw,onverv)" ], "Amerikaan": [ "N(soort,ev,neut)" ], "avondwandelingen": [ "N(soort,mv,neut)" ], "terugtrok": [ "V(refl,ovt,1_of_2_of_3,ev)" ], "tussentijd": [ "N(soort,ev,neut)" ], "afstandelijk": [ "Adj(attr,stell,onverv)" ], "historische": [ "Adj(attr,stell,verv_neut)" ], "coitus": [ "N(soort,ev,neut)" ], "1,80": [ "Num(hoofd,bep,attr,onverv)" ], "slechte": [ "Adj(attr,stell,verv_neut)", "Adj(zelfst,stell,verv_neut)" ], "naamplaatje": [ "N(soort,ev,neut)" ], "verrijzen": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "open": [ "Adj(attr,stell,onverv)" ], "Verre": [ "N(eigen,ev,neut)", "Adj(attr,stell,verv_neut)" ], "Parijse": [ "Adj(attr,stell,verv_neut)" ], "reclamespot": [ "N(soort,ev,neut)" ], "steken": [ "V(trans,inf)" ], "ijverige": [ "Adj(attr,stell,verv_neut)" ], "winter": [ "N(soort,ev,neut)" ], "wettig": [ "Adj(attr,stell,onverv)" ], "slechts": [ "Adv(gew,geen_func,stell,onverv)" ], "Bloedschande": [ "N(soort,ev,neut)" ], "gordijnen": [ "N(soort,mv,neut)" ], "gast-arbeiders": [ "N(soort,mv,neut)" ], "Gwen": [ "N(eigen,ev,neut)" ], "tenzij": [ "Conj(onder,met_fin)" ], "lichtzinnigheid": [ "N(soort,ev,neut)" ], "Personality": [ "N(eigen,ev,neut)" ], "garanderen": [ "V(trans,inf)" ], "1,90": [ "Num(hoofd,bep,attr,onverv)" ], "prille": [ "Adj(attr,stell,verv_neut)" ], "symbool": [ "N(soort,ev,neut)" ], "toneel": [ "N(soort,ev,neut)" ], "verontschuldigingen": [ "N(soort,mv,neut)" ], "onderduikers": [ "N(soort,mv,neut)" ], "vreemdeling": [ "N(soort,ev,neut)" ], "Tweeentwintig": [ "Num(hoofd,bep,attr,onverv)" ], "gebruikte": [ "V(trans,verl_dw,verv_neut)" ], "Ten": [ "Prep(voor)" ], "goudlame": [ "N(soort,ev,neut)" ], "terloops": [ "Adj(adv,stell,onverv)" ], "betrof": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Kersentuin": [ "N(eigen,ev,neut)" ], "Niets": [ "Pron(onbep,neut,zelfst)" ], "openbaar": [ "Adj(attr,stell,onverv)" ], "daarna": [ "Adv(pron,aanw)" ], "avonduren": [ "N(soort,mv,neut)" ], "gediend": [ "V(trans,verl_dw,onverv)" ], "renteniers": [ "N(soort,mv,neut)" ], "beleid": [ "N(soort,ev,neut)" ], "melden": [ "V(trans,ott,1_of_2_of_3,mv)" ], "bewust": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "werktuigelijk": [ "Adj(adv,stell,onverv)" ], "groen-groen": [ "N(eigen,ev,neut)" ], "vitale": [ "Adj(attr,stell,verv_neut)" ], "plakken": [ "N(soort,mv,neut)" ], "voorvaderen": [ "N(soort,mv,neut)" ], "handiger": [ "Adj(attr,vergr,onverv)" ], "dierenliefde": [ "N(soort,ev,neut)" ], "Curacao": [ "N(eigen,ev,neut)" ], "pianoles": [ "N(soort,ev,neut)" ], "onzichtbare": [ "Adj(attr,stell,verv_neut)" ], "Oostenrijk": [ "N(eigen,ev,neut)" ], "haardvuur": [ "N(soort,ev,neut)" ], "anticonceptie": [ "N(eigen,ev,neut)" ], "weemoedig": [ "Adj(adv,stell,onverv)" ], "Nieuw": [ "N(eigen,ev,neut)" ], "kopie": [ "N(soort,ev,neut)" ], "parfum": [ "N(soort,ev,neut)" ], "beroemdheden": [ "N(soort,mv,neut)" ], "jachtgeweer": [ "N(soort,ev,neut)" ], "opmerkelijke": [ "Adj(attr,stell,verv_neut)" ], "spirituele": [ "Adj(attr,stell,verv_neut)" ], "besloot": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "vordering": [ "N(soort,ev,neut)" ], "daarom": [ "Adv(gew,aanw)" ], "Klaassenspel": [ "N(soort,ev,neut)" ], "Crazy": [ "N(eigen,ev,neut)" ], "tennisbaan": [ "N(soort,ev,neut)" ], "bespeuren": [ "V(trans,inf)" ], "daarop": [ "Adv(pron,aanw)" ], "geschikt": [ "Adj(attr,stell,onverv)", "V(trans,verl_dw,onverv)" ], "verknocht": [ "Adj(attr,stell,onverv)" ], "respect": [ "N(soort,ev,neut)" ], "goedwillende": [ "Adj(attr,stell,verv_neut)" ], "Monroe": [ "N(eigen,ev,neut)" ], "mijn": [ "Pron(bez,1,ev,neut,attr)" ], "Joegoslavie": [ "N(eigen,ev,neut)" ], "turkoois": [ "Adj(zelfst,stell,onverv)" ], "getransformeerde": [ "V(trans,verl_dw,verv_neut)" ], "zachte": [ "Adj(attr,stell,verv_neut)" ], "uitgebreid": [ "V(trans,verl_dw,onverv)" ], "recht": [ "N(soort,ev,neut)", "Adj(adv,stell,onverv)" ], "kopje": [ "N(soort,ev,neut)" ], "bezeten": [ "Adj(adv,stell,onverv)", "V(trans,verl_dw,onverv)" ], "centimeters": [ "N(soort,mv,neut)" ], "actrices": [ "N(soort,mv,neut)" ], "hetgeen": [ "Pron(betr,neut,zelfst)" ], "schreien": [ "V(trans,ott,1_of_2_of_3,mv)" ], "gespecialiseerd": [ "V(refl,verl_dw,onverv)" ], "The": [ "N(eigen,ev,neut)", "N(eigen,mv,neut)" ], "wenst": [ "V(trans,ott,3,ev)", "V(trans,ott,2,ev)" ], "soorten": [ "N(soort,mv,neut)" ], "onzin": [ "N(soort,ev,neut)" ], "wetenschappelijk": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "Eva": [ "N(eigen,ev,neut)" ], "roemrucht": [ "Adj(attr,stell,onverv)" ], "noemden": [ "V(trans,ovt,1_of_2_of_3,mv)" ], "v.Rh.": [ "N(eigen,ev,neut)" ], "monteren": [ "V(trans,inf)" ], "schoonmaak": [ "N(soort,ev,neut)" ], "pedofiel": [ "N(soort,ev,neut)" ], "overigens": [ "Adv(gew,geen_func,stell,onverv)" ], "belevenissen": [ "N(soort,mv,neut)" ], "daarentegen": [ "Adv(gew,geen_func,stell,onverv)" ], "stipt": [ "Adj(adv,stell,onverv)" ], "torsen": [ "V(trans,inf)" ], "wennen": [ "V(intrans,inf)" ], "copulatie": [ "N(soort,ev,neut)" ], "zilvergrijs": [ "Adj(attr,stell,onverv)" ], "Grootpa": [ "N(soort,ev,neut)" ], "Iemand": [ "Pron(onbep,neut,zelfst)" ], "mild": [ "Adj(attr,stell,onverv)" ], "Daarover": [ "Adv(pron,aanw)" ], "beenspieren": [ "N(soort,mv,neut)" ], "gesteund": [ "V(trans,verl_dw,onverv)" ], "afmaken": [ "V(trans,inf)" ], "magie": [ "N(soort,ev,neut)" ], "maatschappijen": [ "N(soort,mv,neut)" ], "min.": [ "N(soort,mv,neut)" ], "vervolgens": [ "Adv(gew,geen_func,stell,onverv)" ], "Yersey": [ "N(eigen,ev,neut)" ], "Produkten": [ "N(soort,mv,neut)" ], "klimrozen": [ "N(soort,mv,neut)" ], "slanke": [ "Adj(attr,stell,verv_neut)" ], "temidden": [ "Adv(gew,geen_func,stell,onverv)" ], "plaatje": [ "N(soort,ev,neut)" ], "beslissen": [ "V(intrans,inf)", "V(trans,inf)" ], "Caraibische": [ "Adj(attr,stell,verv_neut)" ], "Tja": [ "Int" ], "verliezen": [ "V(trans,inf)", "V(intrans,inf)", "V(trans,ott,1_of_2_of_3,mv)" ], "Greene": [ "N(eigen,ev,neut)" ], "zweer": [ "V(trans,ott,1,ev)" ], "Johnson": [ "N(eigen,ev,neut)" ], "zweet": [ "N(soort,ev,neut)" ], "Katherine": [ "N(eigen,ev,neut)" ], "uitgestorven": [ "V(intrans,verl_dw,onverv)" ], "streng": [ "Adj(attr,stell,onverv)", "Adj(adv,stell,onverv)" ], "balletgeschiedenis": [ "N(soort,ev,neut)" ], "dertien-": [ "Adj(attr,stell,onverv)" ], "Ratsma": [ "N(eigen,ev,neut)" ], "leeuwendeel": [ "N(soort,ev,neut)" ], "zigeunervrouw": [ "N(soort,ev,neut)" ], "nest": [ "N(soort,ev,neut)" ], "musicals": [ "N(soort,mv,neut)" ], "dunner": [ "Adj(attr,vergr,onverv)" ], "verbrijzeld": [ "V(trans,verl_dw,onverv)" ], "vleespasteitje": [ "N(soort,ev,neut)" ], "levensduur": [ "N(soort,ev,neut)" ], "emoties": [ "N(soort,mv,neut)" ], "stijve": [ "Adj(attr,stell,verv_neut)" ], "kerstboom": [ "N(soort,ev,neut)" ], "dreiging": [ "N(soort,ev,neut)" ], "weiden": [ "N(soort,mv,neut)" ], "adverteerders": [ "N(soort,mv,neut)" ], "minirokken": [ "N(soort,mv,neut)" ], "bloemetje": [ "N(soort,ev,neut)" ], "aangifte": [ "N(soort,ev,neut)" ], "benaderbaar": [ "Adj(attr,stell,onverv)" ], "schoonzicht": [ "N(soort,ev,neut)" ], "presidente": [ "N(soort,ev,neut)" ], "jaartje": [ "N(soort,ev,neut)" ], "haast-je-rep-jehuwelijk": [ "N(soort,ev,neut)" ], "Deur": [ "N(soort,ev,neut)" ], "boeiende": [ "V(intrans,teg_dw,verv_neut)" ], "voorstellingen": [ "N(soort,mv,neut)" ], "ratten": [ "N(soort,mv,neut)" ], "Eilanden": [ "N(eigen,mv,neut)" ], "herenkleding": [ "N(soort,ev,neut)" ], "grenzen": [ "N(soort,mv,neut)", "V(intrans,ott,1_of_2_of_3,mv)" ], "eigenheimer": [ "N(soort,ev,neut)" ], "inrichting": [ "N(soort,ev,neut)" ], "duidde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "Sterker": [ "Adj(attr,vergr,onverv)" ], "Misschien": [ "Adv(gew,geen_func,stell,onverv)" ], "Limburg": [ "N(eigen,ev,neut)" ], "Jules": [ "N(eigen,ev,neut)" ], "veelsoortige": [ "Adj(attr,stell,verv_neut)" ], "gedaan": [ "V(trans,verl_dw,onverv)", "V(intrans,verl_dw,onverv)" ], "ramadan": [ "N(soort,ev,neut)" ], "aarde": [ "N(soort,ev,neut)" ], "aanknopen": [ "V(trans,inf)" ], "inzicht": [ "N(soort,ev,neut)" ], "blindedarm": [ "N(soort,ev,neut)" ], "Belgisch": [ "Adj(attr,stell,onverv)" ], "sonde": [ "N(soort,ev,neut)" ], "zusterhuis": [ "N(soort,ev,neut)" ], "beslaan": [ "V(trans,ott,1_of_2_of_3,mv)" ], "tijden": [ "N(soort,mv,neut)" ], "voortkomen": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "moderne": [ "Adj(attr,stell,verv_neut)" ], "tegenstanders": [ "N(soort,mv,neut)" ], "argwanender": [ "Adj(attr,vergr,onverv)" ], "neus": [ "N(soort,ev,neut)" ], "uitgangspunt": [ "N(soort,ev,neut)" ], "belevings-": [ "N(soort,mv,neut)" ], "Carola": [ "N(eigen,ev,neut)" ], "Rotterdam": [ "N(eigen,ev,neut)" ], "geringer": [ "Adj(attr,vergr,onverv)" ], "Hoofd-van-de-Dienst": [ "N(soort,ev,neut)" ], "kamelen": [ "N(soort,mv,neut)" ], "duiden": [ "V(trans,inf)", "V(intrans,ott,1_of_2_of_3,mv)" ], "prachtige": [ "Adj(attr,stell,verv_neut)" ], "stalde": [ "V(trans,ovt,1_of_2_of_3,ev)" ], "onlangs": [ "Adv(gew,geen_func,stell,onverv)" ], "waardelozer": [ "Adj(attr,vergr,onverv)" ], "autoriteiten": [ "N(soort,mv,neut)" ], "ondergeschikte": [ "Adj(attr,stell,verv_neut)" ], "uitgevallen": [ "V(intrans,verl_dw,onverv)" ], "werksters": [ "N(soort,mv,neut)" ], "Ziet": [ "V(trans,ott,2,ev)" ], "peinzen": [ "V(intrans,ott,1_of_2_of_3,mv)" ], "vrienden": [ "N(soort,mv,neut)" ], "voornamelijk": [ "Adv(gew,geen_func,stell,onverv)" ], "verpakt": [ "V(trans,verl_dw,onverv)" ], "geconsumeerd": [ "V(trans,verl_dw,onverv)" ], "smartlapen": [ "N(soort,mv,neut)" ], "tinteling": [ "N(soort,ev,neut)" ], "akte": [ "N(soort,ev,neut)" ], "bevallen": [ "V(intrans,inf)" ], "beschrijven": [ "V(trans,inf)" ], "Vogelaars": [ "N(eigen,ev,neut)" ], "gespaard": [ "V(trans,verl_dw,onverv)" ], "Guerrero": [ "N(eigen,ev,neut)" ], "kruisbes": [ "N(soort,ev,neut)" ], "bedenken": [ "V(trans,inf)", "V(trans,inf,subst)", "V(refl,inf)" ], "Hoogendijk": [ "N(eigen,ev,neut)" ], "plus": [ "Conj(onder,met_fin)" ], "naieve": [ "Adj(attr,stell,verv_neut)" ], "genoemd": [ "V(trans,verl_dw,onverv)" ], "hoorn": [ "N(soort,ev,neut)" ], "Fantastisch": [ "Adj(attr,stell,onverv)" ], "Ijssel": [ "N(eigen,ev,neut)" ], "boeken": [ "N(soort,mv,neut)", "V(trans,inf)" ], "Kunnen": [ "V(intrans,ott,1_of_2_of_3,mv)", "V(hulp,ott,1_of_2_of_3,mv)" ], "hardnekkig": [ "Adj(adv,stell,onverv)" ], "d'Indy": [ "N(eigen,ev,neut)" ], "hoort": [ "V(intrans,ott,3,ev)", "V(trans,ott,2,ev)" ], "cognac": [ "N(soort,ev,neut)" ], "Zoals": [ "Conj(onder,met_fin)" ], "verdiepingen": [ "N(soort,mv,neut)" ], "onverwoestbare": [ "Adj(attr,stell,verv_neut)" ], "burger": [ "N(soort,ev,neut)" ], "meewerken": [ "V(intrans,inf)" ], "client": [ "N(soort,ev,neut)" ], "lepel": [ "N(soort,ev,neut)" ], "qua": [ "Prep(voor)" ], "natuurlijk": [ "Adj(adv,stell,onverv)", "Adj(attr,stell,onverv)" ], "Romeins": [ "Adj(zelfst,stell,onverv)" ], "anjers": [ "N(soort,mv,neut)" ], "aanhoren": [ "V(trans,inf)" ], "Tom": [ "N(eigen,ev,neut)" ], "tegenvallen": [ "V(intrans,inf)" ], "Top": [ "N(soort,ev,neut)" ], "Hebt": [ "V(hulp,ott,2,ev)", "V(trans,ott,2,ev)" ], "O'Hara": [ "N(eigen,ev,neut)" ], "songs": [ "N(soort,mv,neut)" ], "Tot": [ "Prep(voor)" ], "bevonden": [ "V(refl,verl_dw,onverv)" ], "scholieren": [ "N(eigen,ev,neut)", "N(soort,mv,neut)" ], "toegesnelde": [ "V(intrans,verl_dw,verv_neut)" ], "Doetichem": [ "N(eigen,ev,neut)" ], "hinderlijke": [ "Adj(attr,stell,verv_neut)" ], "politicus": [ "N(soort,ev,neut)" ], "Laurent": [ "N(eigen,ev,neut)" ], "oogmake-up": [ "N(soort,ev,neut)" ], "Deze": [ "Pron(aanw,neut,attr)", "Pron(aanw,neut,zelfst)" ], "speelt": [ "V(trans,ott,3,ev)", "V(intrans,ott,3,ev)", "V(intrans,ott,2,ev)" ], "duurden": [ "V(intrans,ovt,1_of_2_of_3,mv)" ], "leefde": [ "V(intrans,ovt,1_of_2_of_3,ev)" ], "Vaste": [ "Adj(attr,stell,verv_neut)" ], "duurder": [ "Adj(attr,vergr,onverv)" ], "gaten": [ "N(soort,mv,neut)" ], "Moet": [ "V(intrans,ott,3,ev)", "V(hulp,ott,2,ev)" ], "voorkomend": [ "V(intrans,teg_dw,onverv)" ], "Zaken": [ "N(eigen,mv,neut)", "N(soort,mv,neut)" ], "godsdienst": [ "N(soort,ev,neut)" ], "opofferen": [ "V(trans,inf)" ], "zwerfkat": [ "N(soort,ev,neut)" ], "bekvechten": [ "V(intrans,inf)" ], "voorspellende": [ "V(trans,teg_dw,verv_neut)" ], "getiteld": [ "Adj(attr,stell,onverv)" ], "amper": [ "Adv(gew,geen_func,stell,onverv)" ], "mist": [ "N(soort,ev,neut)", "V(intrans,ott,3,ev)" ], "red.": [ "N(soort,ev,neut)" ], "Duitsers": [ "N(soort,mv,neut)" ], "aansluiting": [ "N(soort,ev,neut)" ], "uitdelen": [ "V(trans,inf)" ], "weemoed": [ "N(soort,ev,neut)" ], "kopse": [ "Adj(attr,stell,verv_neut)" ], "adrenaline-injectie": [ "N(soort,ev,neut)" ], "gerucht": [ "N(soort,ev,neut)" ], "Daarnaast": [ "Adv(pron,aanw)" ], "portier": [ "N(soort,ev,neut)" ], "Borsen": [ "N(eigen,ev,neut)" ], "Jacobs": [ "N(eigen,ev,neut)" ], "porties": [ "N(soort,mv,neut)" ], "tijdje": [ "N(soort,ev,neut)" ], "handschrift": [ "N(soort,ev,neut)" ], "bijspijkeren": [ "V(trans,inf)" ], "vreemdsoortig": [ "Adj(attr,stell,onverv)" ], "gemakzucht": [ "N(soort,ev,neut)" ], "MEISJE": [ "N(soort,ev,neut)" ], "tante": [ "N(soort,ev,neut)" ], "kopend": [ "V(trans,teg_dw,onverv)" ], "mascotte": [ "N(soort,ev,neut)" ], "coupures": [ "N(soort,mv,neut)" ], "kijkt": [ "V(intrans,ott,3,ev)", "V(intrans,ott,2,ev)" ], "stimuleren": [ "V(trans,inf,subst)" ], "dicht": [ "Adv(gew,geen_func,stell,onverv)", "Adj(attr,stell,onverv)" ], "mits": [ "Conj(onder,met_fin)" ], "beticht": [ "V(refl,verl_dw,onverv)" ], "smerigheid": [ "N(soort,ev,neut)" ], "geleden": [ "Adv(gew,geen_func,stell,onverv)" ], "Papa's": [ "N(eigen,mv,neut)" ], "hanteren": [ "V(trans,inf)" ], "vriendin": [ "N(soort,ev,neut)" ], "landschappen": [ "N(soort,mv,neut)" ], "etcetera": [ "Adv(gew,geen_func,stell,onverv)" ], "infecties": [ "N(soort,mv,neut)" ], "6-jarigen": [ "Adj(zelfst,stell,verv_mv)" ], "gedroeg": [ "V(refl,ovt,1_of_2_of_3,ev)" ] } ================================================ FILE: lib/natural/brill_pos_tagger/data/English/README.txt ================================================ The tranformation rules in tr_from_brill_paper.txt are from this article: A simple rule-based part of speech tagger, Eric Brill, Published in: Proceeding ANLC '92 Proceedings of the third conference on Applied natural language processing, Pages 152-155. http://dl.acm.org/citation.cfm?id=974526 The lexicon in lexicon_from_posjs.json is from: https://github.com/dariusk/pos-js The transformation rules in tr_from_posj.txt are derived from Javascript code in: BrillTransformationRules.js from https://github.com/dariusk/pos-js/ ================================================ FILE: lib/natural/brill_pos_tagger/data/English/lexicon_from_posjs.json ================================================ { "'": [ "\"" ], "\"": [ "\"" ], "Ranavan": [ "NNP" ], "fawn": [ "NN" ], "pro-Soviet": [ "JJ" ], "Hydro-Electric": [ "NNP" ], "waste-disposal": [ "JJ", "NN" ], "chameleons": [ "NNS" ], "clotted": [ "JJ" ], "spiders": [ "NNS" ], "verses": [ "NNS" ], "hanging": [ "VBG", "JJ", "NN" ], "Hawaiian\\/Japanese": [ "JJ" ], "hastily": [ "RB" ], "comically": [ "RB" ], "REIS": [ "NNP" ], "localized": [ "JJ", "VBN" ], "spidery": [ "JJ" ], "disobeying": [ "VBG" ], "marketing-wise": [ "JJ" ], "plant-closing": [ "JJ" ], "Archuleta": [ "NNP" ], "refunding": [ "VBG", "VBG|NN", "JJ", "NN" ], "Western": [ "JJ", "NN", "NNP" ], "wrought-iron": [ "JJ" ], "Gravesend": [ "NNP" ], "government-to-government": [ "JJ" ], "Euro": [ "NNP" ], "familiarness": [ "NN" ], "slothful": [ "JJ" ], "Valle": [ "NNP" ], "Famed": [ "JJ" ], "Blade": [ "NNP" ], "Poetry": [ "NNP", "NN" ], "Mizell": [ "NNP" ], "plant-modernization": [ "JJ" ], "Rizopolous": [ "NNP" ], "seamier": [ "JJR" ], "wooded": [ "JJ" ], "grueling": [ "JJ", "VBG" ], "Muniz": [ "NNP" ], "Amparano": [ "NNP" ], "Saco": [ "NNP" ], "Miert": [ "NN" ], "Sack": [ "NNP" ], "virtuosos": [ "NNS" ], "circuitry": [ "NN" ], "crotch": [ "NN" ], "Raptopoulos": [ "NNP" ], "Multilateral": [ "NNP" ], "S-D": [ "NN" ], "immunities": [ "NNS" ], "all-news": [ "JJ" ], "Pinkerton": [ "NNP" ], "gaskets": [ "NNS" ], "Kibbutzim": [ "NNS" ], "Shocked": [ "VBN", "JJ" ], "deadheads": [ "NNS" ], "junkification": [ "NN" ], "Dixiecrat": [ "NNP" ], "Honorable": [ "NNP" ], "Olde": [ "NNP" ], "": [], "snuggled": [ "VBD" ], "inanimate": [ "JJ" ], "errors": [ "NNS" ], "Initially": [ "RB" ], "self-reliant": [ "JJ" ], "defenses": [ "NNS" ], "Hamilton": [ "NNP" ], "HCFA": [ "NNP" ], "designing": [ "VBG" ], "numeral": [ "NN" ], "pawed": [ "VBN" ], "Kosonen": [ "NNP" ], "Designcraft": [ "NNP" ], "mailings": [ "NNS" ], "perforations": [ "NNS" ], "Sussman": [ "NNP" ], "affiliates": [ "NNS", "VBZ" ], "advanced-ceramics": [ "NN", "NNS" ], "perfunctorily": [ "RB" ], "malunya": [ "NN" ], "affiliated": [ "VBN", "JJ" ], "Footnotes": [ "NNS" ], "confronts": [ "VBZ" ], "small-screen": [ "JJ" ], "Manger": [ "NNP" ], "Manges": [ "NNP" ], "Bereuter": [ "NNP" ], "kids": [ "NNS", "VBZ" ], "uplifting": [ "JJ", "VBG" ], "Downfall": [ "NNP" ], "deferring": [ "VBG" ], "controversy": [ "NN" ], "Keillor": [ "NNP" ], "neurologist": [ "NN" ], "electric-power": [ "JJ" ], "orthographies": [ "NNS" ], "Hafiz": [ "NNP" ], "sheep-lined": [ "JJ" ], "projection": [ "NN" ], "inflation-induced": [ "JJ" ], "Harvey": [ "NNP" ], "stern": [ "JJ", "NN" ], "insecurity": [ "NN" ], "Vernor": [ "NNP" ], "inevitable": [ "JJ" ], "Vernon": [ "NNP" ], "distortions": [ "NNS" ], "reasserting": [ "VBG" ], "sermons": [ "NNS" ], "grounds-care": [ "JJ" ], "populations": [ "NNS" ], "exuberantly": [ "RB" ], "Sindona": [ "NNP" ], "Hardshell": [ "NNP" ], "lankmark": [ "NN" ], "whole-heartedly": [ "RB" ], "Pedone": [ "NNP" ], "pay-movie": [ "JJ" ], "co-marketing": [ "JJ" ], "intake": [ "NN" ], "morally": [ "RB" ], "Indigo": [ "NNP" ], "Edgardo": [ "NN" ], "non-advertising": [ "JJ" ], "Reichhold": [ "NNP" ], "Gastronomy": [ "NNP" ], "old-guard": [ "JJ" ], "wiretapping": [ "NN", "VBG" ], "deputy": [ "NN", "JJ" ], "wand": [ "NN" ], "R.G.": [ "NNP" ], "grass-fed": [ "JJ" ], "Darling": [ "NNP", "JJ", "NN", "UH" ], "disparagement": [ "NN" ], "titanium": [ "NN" ], "Tippecanoe": [ "NNP" ], "rayon": [ "NN" ], "pinto": [ "NN" ], "nondiscretionary": [ "JJ" ], "well-armed": [ "JJ" ], "Editorials": [ "NNS" ], "co-operation": [ "NN" ], "electrical-engineering": [ "JJ" ], "McCamant": [ "NNP" ], "travel": [ "NN", "VBP", "VB" ], "Attention": [ "NN", "VB" ], "Businessland": [ "NNP" ], "Nussbaum": [ "NNP" ], "tabac": [ "NN" ], "Bates": [ "NNP" ], "exposited": [ "VBN" ], "Feelers": [ "NNS" ], "assimilated": [ "VBN", "JJ" ], "dinosaurs": [ "NNS" ], "iodocompounds": [ "NNS" ], "Fogg": [ "NNP" ], "stipulate": [ "VBP", "JJ", "VB" ], "sentencing": [ "NN", "VBG", "JJ" ], "pigment": [ "NN" ], "Tenants": [ "NNPS" ], "CFM": [ "NNP" ], "FINANCIAL": [ "NNP" ], "recombination": [ "NN" ], "CFD": [ "NNP" ], "CFC": [ "NNP", "NN" ], "subplots": [ "NNS" ], "kiloton": [ "NN" ], "b-Current": [ "JJ", "LS|JJ" ], "Shimon": [ "NNP" ], "CFP": [ "NNP" ], "Retention": [ "NNP" ], "sprawling": [ "VBG", "JJ" ], "snugly": [ "RB" ], "libertie": [ "NN" ], "Capistrano": [ "NNP" ], "Blackstone": [ "NNP", "VBP" ], "ice-feeling": [ "NN" ], "Sabreliner": [ "NNP" ], "benefited": [ "VBD", "VBN" ], "Robertson": [ "NNP" ], "Soviet-trained": [ "JJ" ], "activating": [ "VBG" ], "gay-ess": [ "VBP" ], "playhouse": [ "NN" ], "H.L.": [ "NNP" ], "WPS": [ "NNP" ], "ex-dividend": [ "JJ", "NN", "RB" ], "His": [ "PRP$", "NNP" ], "Hit": [ "VBN", "VBP", "NN", "VB" ], "fit": [ "VB", "VBN", "VBP", "JJ", "NN", "RB", "VBD" ], "Albrights": [ "NNPS" ], "Schroeder": [ "NNP" ], "screaming": [ "VBG", "JJ", "NN" ], "gridiron": [ "NN" ], "Admirers": [ "NNS" ], "Bischofberger": [ "NNP" ], "Kavanagh": [ "NNP" ], "Walesa": [ "NNP" ], "Hid": [ "NNP" ], "fig": [ "NN" ], "Rubins": [ "NNS" ], "reentered": [ "VBD" ], "Ciminero": [ "NNP" ], "Him": [ "PRP", "NNP" ], "Galanter": [ "NNP" ], "effecte": [ "VB" ], "Plebian": [ "JJ" ], "Aloe": [ "NNP" ], "vouchers": [ "NNS" ], "top-quality": [ "JJ" ], "Civics": [ "NNPS" ], "Pavlovitch": [ "NNP" ], "effects": [ "NNS", "VBZ" ], "Specialized": [ "NNP", "JJ" ], "McArtor": [ "NNP" ], "honeybee": [ "NN" ], "broiler": [ "NN" ], "whacking": [ "VBG" ], "castigating": [ "VBG" ], "wooden": [ "JJ" ], "Pergamon": [ "NNP" ], "Combine": [ "VB" ], "uninfluenced": [ "VBN" ], "transit-association": [ "NN" ], "Weakening": [ "VBG" ], "Dairies": [ "NNPS", "NNP", "NNS" ], "finger-paint": [ "NN" ], "Eyewear": [ "NNP" ], "parasites": [ "NNS" ], "Bullocks": [ "NNP" ], "Pamorex": [ "NNP" ], "Crowds": [ "NNS" ], "ANNOUNCED": [ "VBD" ], "Pomerania": [ "NNP" ], "Denizens": [ "NNS" ], "toleration": [ "NN" ], "Susie": [ "NNP", "NN" ], "enviroment": [ "NN" ], "Sidestepping": [ "VBG" ], "adapt": [ "VB", "VBP" ], "Basement": [ "NN" ], "Chivas": [ "NNP" ], "Kahler": [ "NNP" ], "nightdress": [ "NN" ], "Impressionists": [ "NNPS" ], "MEDIA": [ "NNP" ], "underfoot": [ "RB" ], "Schwarz": [ "NNP" ], "Corinne": [ "NNP" ], "Argabright": [ "NNP" ], "elsewhere": [ "RB", "NN" ], "stereotypical": [ "JJ" ], "Bergelt": [ "NNP" ], "Transformers": [ "NNPS" ], "estimate": [ "NN", "VB", "VBP" ], "obliterans": [ "NNS" ], "Egg": [ "NNP", "NN" ], "chlorine": [ "NN" ], "silent": [ "JJ" ], "producer\\/director": [ "NN" ], "Nigel": [ "NNP" ], "disturber": [ "NN" ], "nucleoli": [ "NNS" ], "Woodberry": [ "NNP" ], "Domestically": [ "RB" ], "SIGNED": [ "VBN" ], "disturbed": [ "VBN", "VBD", "JJ" ], "dinner-hour": [ "JJ" ], "third-dimensionality": [ "NN" ], "Facts": [ "NNP", "NNPS", "NNS" ], "mendacity": [ "NN" ], "Niger": [ "NNP" ], "breed": [ "NN", "VB", "VBP" ], "Varadero": [ "NNP" ], "Activity": [ "NN", "NNP" ], "Gingerly": [ "RB" ], "megabytes": [ "NNS" ], "Nerves": [ "NNS" ], "Lurie": [ "NNP" ], "olds": [ "NNS" ], "LAND": [ "NNP" ], "renovated": [ "VBN", "JJ" ], "needed": [ "VBN", "VBN|JJ", "JJ", "VBD" ], "master": [ "NN", "JJ", "VB", "JJR" ], "mousseline": [ "NN" ], "genesis": [ "NN" ], "specters": [ "NNS" ], "Russo-American": [ "JJ" ], "Hammerstein": [ "NNP" ], "Aztar": [ "NNP" ], "scrapes": [ "NNS" ], "yield": [ "VB", "VBP", "JJ", "NN" ], "mid-June": [ "NNP", "NN" ], "mutilated": [ "VBN", "JJ" ], "Daddy": [ "NNP" ], "heftiest": [ "JJS" ], "positively": [ "RB" ], "Guardsmen": [ "NNPS" ], "SPAN": [ "NNP" ], "anniversaries": [ "NNS" ], "ozone-destroying": [ "JJ" ], "Moonlighting": [ "NN", "NNP" ], "Zeta": [ "NNP" ], "feeling": [ "NN", "VBG" ], "movie-themed": [ "JJ" ], "Escadrille": [ "NNP" ], "third-round": [ "JJ" ], "value-story": [ "JJ" ], "neuroselective": [ "JJ" ], "Chicago": [ "NNP" ], "straight-from-the-shoulder": [ "JJ" ], "index-options": [ "NNS" ], "consenting": [ "VBG", "JJ" ], "pecs": [ "NNS" ], "brawny": [ "JJ" ], "recapitalized": [ "VBN" ], "skullcap": [ "NN" ], "Theo": [ "NNP" ], "Then": [ "RB" ], "Them": [ "PRP", "NNP", "DT" ], "scraped": [ "VBD", "VBN" ], "wholesome": [ "JJ" ], "Ashenberg": [ "NNP" ], "Grodnik": [ "NNP" ], "Thee": [ "PRP" ], "Tschilwyk": [ "NNP" ], "Myron": [ "NNP" ], "They": [ "PRP", "NNP" ], "v-senv5": [ "NNP" ], "ex-accountant": [ "NN" ], "shipments": [ "NNS" ], "diminishing": [ "VBG" ], "chumminess": [ "NN" ], "resonates": [ "VBZ" ], "Jessye": [ "NNP" ], "tensely": [ "RB" ], "Hubacher": [ "NNP" ], "Pandora": [ "NNP" ], "resonated": [ "VBD" ], "transverse": [ "JJ", "NN" ], "KEARNEY": [ "NNP" ], "Encore": [ "NNP" ], "semicircular": [ "JJ" ], "Pastern": [ "NNP" ], "Lanvin": [ "NNP" ], "state-directed": [ "JJ" ], "Journal-Bulletin": [ "NNP" ], "willinge": [ "JJ" ], "Civilized": [ "JJ" ], "Armide": [ "NN" ], "fugitives": [ "NNS" ], "conservative-led": [ "JJ" ], "purged": [ "VBN", "VBD" ], "saying": [ "VBG", "NN" ], "ffreind": [ "VB" ], "U-2": [ "NNP" ], "Euralliance": [ "NNP" ], "Mignanelli": [ "NNP" ], "Jacobson": [ "NNP" ], "padded": [ "JJ", "VBN" ], "Butterfinger": [ "NNP" ], "Cunha": [ "NNP" ], "incorruptibility": [ "NN" ], "Basinger": [ "NNP" ], "hounded": [ "VBD" ], "apace": [ "RB" ], "Taiyo": [ "NNP" ], "clicked": [ "VBD", "VBN" ], "Rizvi": [ "NNP" ], "excavator": [ "NN" ], "lepidoptery": [ "NN" ], "Ammonium": [ "NN" ], "lube": [ "NN" ], "Geste": [ "NNP" ], "TEACH": [ "VB" ], "L.C.": [ "NNP" ], "familistical": [ "JJ" ], "photo-montage": [ "JJ" ], "INSEAD": [ "NNP" ], "Warnke": [ "NNP" ], "Sibson": [ "NNP" ], "outfielders": [ "NNS" ], "Dionne": [ "NNP" ], "Comenico": [ "NNP" ], "Bancorp.": [ "NNP" ], "affronted": [ "VBN" ], "currencny": [ "NN" ], "Senators": [ "NNS", "NNP", "NNPS" ], "Ecology": [ "NN", "NNP" ], "Baden-Wuerttemburg": [ "NNP" ], "nicely": [ "RB" ], "Andover": [ "NNP" ], "succumb": [ "VB" ], "Dances": [ "NNS", "NNPS" ], "Dancer": [ "NNP" ], "software-installation": [ "NN" ], "pipers": [ "NNS" ], "Jabe": [ "NNP" ], "programmatic": [ "JJ" ], "concretistic-seeming": [ "JJ" ], "Centerbank": [ "NNP" ], "Anderson": [ "NNP" ], "Boon-Sanwa": [ "NNP" ], "news": [ "NN", "NNS" ], "McChicken": [ "NNP" ], "advisedly": [ "RB" ], "Mosle": [ "NNP" ], "above-market": [ "JJ" ], "Heinkel": [ "NNP" ], "Trinitron": [ "NNP" ], "motional": [ "JJ" ], "guided-missile": [ "JJ", "NN" ], "Chugoku": [ "NNP" ], "Dexedrine": [ "NNP" ], "Tarzana": [ "NNP" ], "Eichner": [ "NNP" ], "Hurst": [ "NNP" ], "requisites": [ "NNS" ], "wage": [ "NN", "VB" ], "redistricting": [ "VBG", "NN" ], "extend": [ "VB", "VBP", "VBZ" ], "nature": [ "NN", "JJ" ], "Eisai": [ "NNP" ], "fruits": [ "NNS" ], "lapping": [ "VBG" ], "superficial": [ "JJ" ], "brainwashed": [ "VBN" ], "Bajakian": [ "NNP" ], "extent": [ "NN" ], "tendons": [ "NNS" ], "airflow": [ "NN" ], "Resolute": [ "NNP" ], "Camusfearna": [ "NNP" ], "lookit": [ "NN" ], "Orkem": [ "NNP", "VB" ], "Handmaid": [ "NNP" ], "lumber-like": [ "JJ" ], "Altairians": [ "NNPS" ], "Oil-related": [ "JJ" ], "fearlessly": [ "RB" ], "Apartment": [ "NN", "NNP" ], "foreclosing": [ "VBG" ], "SCHWARTZ": [ "NNP" ], "Reuter": [ "NNP", "NN" ], "meaningfulness": [ "NN" ], "wearying": [ "VBG" ], "unhealed": [ "JJ" ], "fondled": [ "VBN" ], "minuses": [ "NNS" ], "self-consistent": [ "JJ" ], "month-long": [ "JJ" ], "brindle": [ "NN" ], "humming": [ "NN", "VBG" ], "Instantly": [ "RB" ], "triviality": [ "NN" ], "layette": [ "NN" ], "fro": [ "RB" ], ".": [ "." ], "Nischwitz": [ "NNP" ], "much": [ "JJ", "DT", "NN", "RB", "RB|JJ" ], "Jorio": [ "NNP" ], "Closely": [ "RB" ], "sterilizer": [ "NN" ], "dehumanised": [ "VBN" ], "unleavened": [ "JJ" ], "fry": [ "NN", "VBP", "VB" ], "Ellman": [ "NNP" ], "Goals": [ "NNPS" ], "doubte": [ "NN" ], "INMAC": [ "NNP" ], "spit": [ "VB", "NN", "VBD" ], "Clayt": [ "NNP" ], "Clays": [ "NNP" ], "spic": [ "NN" ], "Donovan": [ "NNP" ], "doubts": [ "NNS", "VBZ" ], "Akerson": [ "NNP" ], "two-hundredths": [ "NNS" ], "Cipolla": [ "NNP" ], "spin": [ "VB", "NN" ], "Volksgeist": [ "FW" ], "skilfully": [ "RB" ], "wildcat": [ "NN", "JJ" ], "near-irrelevant": [ "JJ" ], "U.N.-chartered": [ "JJ" ], "Ben-Gurion": [ "NNP" ], "bargain-hunters": [ "NNS" ], "contingencies": [ "NNS" ], "crupper": [ "NN" ], "microbiological": [ "JJ" ], "misconstrued": [ "VBN" ], "low-smoke": [ "JJ" ], "red-figured": [ "JJ" ], "Courtrai": [ "NNP" ], "prostrate": [ "JJ" ], "Crusaders": [ "NNPS", "NNS" ], "biddies": [ "NNS" ], "slide-packs": [ "NNS" ], "cupful": [ "JJ" ], "carboxymethyl": [ "NN" ], "Berridge": [ "NNP" ], "Innumerable": [ "JJ" ], "embargos": [ "NNS" ], "conditioned": [ "VBN", "VBD", "JJ" ], "to-morrow": [ "RB" ], "Stanhope": [ "NNP" ], "Brookings": [ "NNP" ], "conditioner": [ "NN" ], "half-billion": [ "JJ" ], "hone": [ "VB", "VBP" ], "memorial": [ "NN", "JJ" ], "WFXT": [ "NNP" ], "inventively": [ "RB" ], "C/NNP.A.J.": [ "NNP" ], "mummified": [ "VBN" ], "honk": [ "VBP" ], "slash-mouthed": [ "JJ" ], "Tahitian": [ "JJ", "NNP" ], "conformed": [ "VBN", "VBD" ], "visitations": [ "NNS" ], "HOSPITALS": [ "NNS" ], "fireweed": [ "NN" ], "saluted": [ "VBD", "VBN" ], "myocardial": [ "JJ" ], "Front-runners": [ "NNS" ], "Maybe": [ "RB", "UH" ], "Alienus": [ "NNP" ], "torpedoes": [ "NNS" ], "low-grade": [ "JJ" ], "pfffted": [ "VBD" ], "torpedoed": [ "VBN", "VBD" ], "cost-effectiveness": [ "NN" ], "holystones": [ "NNS" ], "spotty": [ "JJ" ], "furlough": [ "NN" ], "peremptory": [ "JJ" ], "Verges": [ "NNP" ], "mentors": [ "NNS" ], "Stearn": [ "NNP" ], "academic": [ "JJ", "NN" ], "ALPA": [ "NNP" ], "academia": [ "NN" ], "lonelier": [ "RBR" ], "EBS": [ "NNP" ], "J.MBB": [ "NNP" ], "Table": [ "NN", "NNP" ], "corporate": [ "JJ" ], "massaging": [ "VBG" ], "Hickey": [ "NNP" ], "absurdities": [ "NNS" ], "golden": [ "JJ" ], "half-starved": [ "JJ" ], "topography": [ "NN" ], "valleys": [ "NNS" ], "Feigenbaum": [ "NNP" ], "salt-crusted": [ "JJ" ], "lasso": [ "NN", "VB" ], "claudication": [ "NN" ], "Vitalie": [ "NNP" ], "ham": [ "NN" ], "duffer": [ "NN" ], "out-of-town": [ "JJ" ], "Oscar": [ "NNP" ], "bull-roaring": [ "JJ" ], "Schlemmer": [ "NNP" ], "Mohammedanism": [ "NNP" ], "hay": [ "NN", "VB" ], "duffel": [ "NN" ], "vicitims": [ "NNS" ], "has": [ "VBZ", "VBN", "." ], "hat": [ "NN" ], "Spence": [ "NNP" ], "Housekeeping": [ "NN", "NNP" ], "elders": [ "NNS" ], "Serieuses": [ "NNP" ], "constrictors": [ "NNS" ], "unequivocally": [ "RB" ], "objective": [ "NN", "JJ" ], "indicative": [ "JJ" ], "compaction": [ "NN" ], "Seaboard": [ "NNP" ], "ERNST": [ "NNP" ], "solid-state": [ "JJ" ], "Eurocell": [ "NNP" ], "Tipping": [ "NN" ], "riskiness": [ "NN" ], "Kontrollbank": [ "NNP" ], "sleuthing": [ "NN" ], "Wedtech": [ "NNP" ], "Brenda": [ "NNP" ], "Perfecta": [ "NNP" ], "studiousness": [ "NN" ], "Stiller": [ "NNP" ], "Pentagon": [ "NNP" ], "double-step": [ "JJ" ], "misdemeanors": [ "NNS" ], "Swedish": [ "JJ", "NNP" ], "Quadrex": [ "NNP" ], "crowd": [ "NN", "VBP", "VB" ], "walk-on": [ "NN" ], "flue": [ "NN" ], "mosques": [ "NNS" ], "Expressways": [ "NNP" ], "crown": [ "NN", "VB" ], "culpas": [ "FW" ], "Bourcier": [ "NNP" ], "captive": [ "JJ", "NN" ], "Avdel": [ "NNP" ], "emphases": [ "NNS" ], "anti-epilepsy": [ "JJ" ], "fiduciary": [ "JJ" ], "debt-rating": [ "JJ" ], "leather-hard": [ "JJ" ], "perchance": [ "RB" ], "Nixdorf": [ "NNP" ], "bottom": [ "NN", "JJ", "VB" ], "inhuman": [ "JJ" ], "Wangenheim": [ "NNP" ], "reqion": [ "NN" ], "Celebration": [ "NNP" ], "Lasorda": [ "NNP" ], "Calls": [ "NNS", "VBZ" ], "non-porous": [ "JJ" ], "considerin": [ "VBG" ], "life-or-death": [ "NN" ], "Kentuck": [ "NNP" ], "brigades": [ "NNS" ], "starring": [ "VBG", "JJ" ], "caskets": [ "NNS" ], "Scwhab": [ "NNP" ], "accelerations": [ "NNS" ], "restlessness": [ "NN" ], "benches": [ "NNS" ], "Transmanche-Link": [ "NNP" ], "anomalous": [ "JJ" ], "officeholders": [ "NNS" ], "catchy": [ "JJ" ], "newly-emerging": [ "JJ" ], "sticle": [ "VB" ], "ribozymes": [ "NNS" ], "classical-music": [ "JJ" ], "lemmings": [ "NNS" ], "Cydonia": [ "NNP" ], "pre-tax": [ "JJ" ], "Concerned": [ "NNP", "JJ", "VBN" ], "honeymoon": [ "NN", "VB" ], "Valdez": [ "NNP" ], "Pontiac-Cadillac": [ "NNP" ], "shoots": [ "VBZ", "NNS" ], "appropriators": [ "NNS" ], "Ends": [ "NNS", "VBZ", "NNPS" ], "despised": [ "VBD", "VBN" ], "fabric": [ "NN" ], "Inherently": [ "RB" ], "raped": [ "VBN", "VBD", "JJ" ], "Carolco": [ "NNP" ], "grasping": [ "VBG" ], "GERMANY": [ "NNP" ], "rapes": [ "NNS", "VBZ" ], "avocados": [ "NNS" ], "Endo": [ "NNP" ], "perfumes": [ "NNS" ], "Bonds-b": [ "NNP", "NNPS" ], "denoting": [ "VBG" ], "Telesphere": [ "NNP", "NN" ], "cohnfidunt": [ "NN" ], "perfumed": [ "JJ", "VBN" ], "Roast": [ "VB" ], "Nineteenth": [ "JJ", "NNP" ], "Bensonhurst": [ "NNP" ], "incinerator": [ "NN" ], "Interferon": [ "NNP" ], "congratulations": [ "NNS", "UH" ], "dark-squared": [ "JJ" ], "Whom": [ "WP", "NNP" ], "Year-to-date": [ "JJ" ], "Jaya": [ "NNP" ], "Household": [ "NNP", "NN" ], "VTOL": [ "NNP" ], "County": [ "NNP", "NN", "NNPS" ], "Merom": [ "NNP" ], "open-air": [ "JJ" ], "nicest": [ "JJS" ], "appeals-court": [ "NN", "JJ" ], "soldering": [ "JJ", "VBG" ], "slow-bouncing": [ "JJ" ], "Jays": [ "NNPS" ], "Manderscheid": [ "NNP" ], "passenger": [ "NN", "JJ" ], "disgrace": [ "NN" ], "Ladas": [ "NNP" ], "Tales": [ "NNS", "NNP", "NNPS" ], "YOUNG": [ "JJ", "NNP" ], "VARIAN": [ "NNP" ], "two-day": [ "JJ" ], "Fukuda": [ "NNP" ], "ECU-based": [ "JJ" ], "taxable-equivalent": [ "JJ" ], "Fennessy": [ "NNP" ], "Velasco": [ "NNP" ], "Resler": [ "NNP" ], "crowns": [ "NNS" ], "Paraquat": [ "NN" ], "Burke": [ "NNP" ], "wordlessly": [ "RB" ], "Demagogues": [ "NNS" ], "thoroughgoing": [ "JJ" ], "Checchi": [ "NNP" ], "hawked": [ "VBD", "VBN" ], "Melbourne": [ "NNP" ], "SONGsters": [ "NNS" ], "Bucer": [ "NNP" ], "smelling": [ "VBG" ], "hawker": [ "NN" ], "Filofax": [ "NNP" ], "Ida": [ "NNP" ], "meteorologist": [ "NN" ], "continentally": [ "RB" ], "Debutante": [ "NNP" ], "Oriole": [ "NNP" ], "Dragonetti": [ "NNP" ], "BURNHAM": [ "NNP" ], "A.D": [ "NN" ], "Wiley": [ "NNP" ], "chain": [ "NN", "VBP" ], "whoever": [ "WP" ], "Agura": [ "NNP" ], "Spector": [ "NNP" ], "Cairoli": [ "NNP" ], "Ipswich": [ "NNP" ], "chair": [ "NN", "VB" ], "Beyeler": [ "NNP" ], "ballet": [ "NN", "FW" ], "amplification": [ "NN" ], "grapples": [ "VBZ" ], "freelance": [ "JJ" ], "Yemma": [ "NNP" ], "sweat-suits": [ "NNS" ], "balled": [ "VBN" ], "grappled": [ "VBD" ], "underlining": [ "VBG", "NN" ], "circumstances": [ "NNS" ], "oversight": [ "NN" ], "tenacious": [ "JJ" ], "Barret": [ "NNP" ], "windshields": [ "NNS" ], "paychecks": [ "NNS" ], "jerk": [ "NN", "VB" ], "enflamed": [ "VBN" ], "optronics": [ "NN" ], "Barred": [ "VBN" ], "gloomy": [ "JJ" ], "Levittown": [ "NNP" ], "Barren": [ "NNP" ], "locked": [ "VBN", "JJ", "VBD" ], "Barrel": [ "NN" ], "upper-lower": [ "JJ" ], "exact": [ "JJ", "VB" ], "minute": [ "NN", "JJ" ], "Tri-State": [ "NNP" ], "Hellman": [ "NNP" ], "reining": [ "VBG" ], "skewed": [ "VBN", "VBD", "JJ" ], "illustrators": [ "NNS" ], "erasures": [ "NNS" ], "skewer": [ "NN" ], "reimpose": [ "VB", "JJ" ], "M$": [ "$" ], "Silvio": [ "NNP" ], "versatility": [ "NN" ], "hindered": [ "VBN", "VBD" ], "M.": [ "NNP", "NN" ], "ogles": [ "VBZ" ], "M4": [ "NNP" ], "Olgivanna": [ "NNP" ], "chopping": [ "VBG", "NN" ], "hegemonic": [ "JJ" ], "SFr3": [ "NNP" ], "SFr2": [ "NNP" ], "kindliness": [ "NN" ], "DeRita": [ "NNP" ], "celebrated": [ "VBD", "JJ", "VBN" ], "storability": [ "NN" ], "Premise": [ "NNP" ], "S*/NNS&Ls": [ "NNP" ], "non-caffeine": [ "JJ" ], "celebrates": [ "VBZ" ], "unintentionally": [ "RB" ], "Metrecal": [ "NNP" ], "Me": [ "PRP", "NNP", "VBP" ], "Md": [ "NNP" ], "Ma": [ "NNP", "FW" ], "busyness": [ "NN" ], "Mc": [ "NNP" ], "climbs": [ "VBZ", "NNS" ], "blunted": [ "VBD", "JJ", "VBN" ], "Mo": [ "NNP" ], "Mi": [ "NNP", "FW" ], "plucking": [ "VBG" ], "Mt": [ "NNP" ], "Ms": [ "NNP" ], "Mr": [ "NNP" ], "dwindling": [ "VBG" ], "My": [ "PRP$", "NN", "NNP" ], "blunter": [ "NN" ], "ME": [ "PRP" ], "MG": [ "NNP" ], "MF": [ "NNP" ], "MC": [ "NNP" ], "MB": [ "NNP" ], "impacted": [ "VBN", "JJ" ], "MO": [ "NNP" ], "Pestillo": [ "NNP" ], "Haddix": [ "NNP" ], "queue": [ "NN" ], "snowbirds": [ "NNS" ], "sprouted": [ "VBD", "VBN" ], "MP": [ "NNP" ], "MS": [ "NNP" ], "MR": [ "NNP" ], "ill-fated": [ "JJ" ], "non-circumvention": [ "NN" ], "Kylberg": [ "NNP" ], "Jardin": [ "NNP" ], "stockbuilding": [ "VBG" ], "Dilantin": [ "NNP" ], "houseman": [ "NN" ], "POWs": [ "NNS" ], "Germano-Slavic": [ "JJ" ], "redevelopers": [ "NNS" ], "ex-wives": [ "NNS" ], "BOOSTS": [ "NNS", "VBZ" ], "opposes": [ "VBZ" ], "August": [ "NNP" ], "perished": [ "VBD", "VBN" ], "Watsonville": [ "NNP" ], "ARNOLD": [ "NNP" ], "non-Magyars": [ "NNPS" ], "Rima": [ "NNP" ], "unjust": [ "JJ" ], "Pinsk": [ "NNP" ], "Those": [ "DT", "NNP" ], "perishes": [ "VBZ" ], "Iris": [ "NNP" ], "dampness": [ "NN" ], "Szocs": [ "NNP" ], "ADVANCES": [ "NNS" ], "Proposals": [ "NNS" ], "Bars": [ "NNP" ], "Henley": [ "NNP", "NN" ], "consoles": [ "NNS", "VBZ" ], "Barr": [ "NNP", "NN" ], "Bather": [ "NN" ], "ADVANCED": [ "NNP" ], "gray-black": [ "JJ" ], "Pianos": [ "NNP" ], "Mikoyan": [ "NNP" ], "oscillator": [ "NN" ], "Hershey": [ "NNP" ], "pre-financed": [ "JJ" ], "Laotian": [ "JJ" ], "Wetherell": [ "NNP" ], "following": [ "VBG", "JJ", "NN" ], "renew": [ "VB", "VBP" ], "Revolutionaries": [ "NNS" ], "unoriginals": [ "NNS" ], "want": [ "VBP", "VB", "NN" ], "mailboxes": [ "NNS" ], "Symphony": [ "NNP" ], "Chula": [ "NNP" ], "Dayna": [ "NNP" ], "Shige": [ "NNP" ], "photoelectronic": [ "JJ" ], "Mantha": [ "NNP" ], "petroleum-related": [ "JJ" ], "Broglie": [ "NNP" ], "Broglio": [ "NNP" ], "T-bills": [ "NNS" ], "anti-toxic": [ "JJ" ], "mid-September": [ "NNP", "NN" ], "thanking": [ "VBG" ], "Sprizzo": [ "NNP" ], "Significant": [ "JJ" ], "Dumb": [ "JJ" ], "Bard": [ "NNP" ], "epidemiologic": [ "JJ" ], "B-flat": [ "NN" ], "Zucker": [ "NNP" ], "convincingly": [ "RB" ], "fueled": [ "VBN", "VBD" ], "laxative": [ "NN" ], "Wiesel": [ "NNP" ], "Softness": [ "NN" ], "warm-blooded": [ "JJ" ], "extended-care": [ "JJ" ], "heliotrope": [ "NN" ], "under-achievers": [ "NNS" ], "Crobsy": [ "NNP" ], "advertiser-sponsored": [ "JJ" ], "inhabiting": [ "VBG" ], "Flexibility": [ "NN" ], "middle-income": [ "JJ", "NN" ], "forebears": [ "NNS" ], "skirmish": [ "NN" ], "Gillespie": [ "NNP" ], "Centredale": [ "NNP" ], "Lumex": [ "NNP" ], "gold-based": [ "JJ" ], "shirked": [ "VBN" ], "colorblindness": [ "NN" ], "Bowie": [ "NNP" ], "LIN": [ "NNP" ], "Hiroaki": [ "NNP" ], "copious": [ "JJ" ], "LIT": [ "NNP" ], "anti-Semites": [ "NNS", "NN" ], "Trustees": [ "NNS", "NNPS", "NNP" ], "Elias": [ "NNP" ], "Cromwell": [ "NNP" ], "Wetten": [ "FW" ], "jig": [ "NN" ], "disconnect": [ "VB" ], "milked": [ "VBD", "VBN" ], "Stoltzman": [ "NNP" ], "Agencies": [ "NNS", "NNP", "NNPS" ], "Hopis": [ "NNPS" ], "revenue-raisers": [ "NNS" ], "First-hand": [ "JJ" ], "librarians": [ "NNS" ], "spotlighting": [ "VBG" ], "gold-leaf": [ "JJ", "NN" ], "oral-care": [ "JJ" ], "Veil": [ "NNP" ], "no-brainer": [ "NN" ], "Hiding": [ "VBG" ], "apron": [ "NN" ], "shacked": [ "VBN" ], "Iraqis": [ "NNPS" ], "ENERGY": [ "NN", "NNP" ], "bashful": [ "JJ" ], "EL-10": [ "NNP" ], "overpowering": [ "JJ" ], "Gordon": [ "NNP" ], "now-standard": [ "JJ" ], "workmanlike": [ "JJ" ], "henpecked": [ "JJ" ], "sorted": [ "VBN", "VBD" ], "bedevil": [ "VB" ], "loan-repayment": [ "NN" ], "hickory": [ "NN" ], "didn": [ "VBD" ], "pealing": [ "VBG" ], "Yellow": [ "NNP", "JJ" ], "Bubenik": [ "NNP" ], "cadence": [ "NN" ], "Roslyn": [ "NNP" ], "instability": [ "NN" ], "quarter": [ "NN" ], "Plowman": [ "NN" ], "Merieux-Connaught": [ "NNP" ], "growthy": [ "JJ" ], "bursting": [ "VBG" ], "Yoshiaki": [ "NNP" ], "presages": [ "VBZ" ], "growths": [ "NNS" ], "Venturesome": [ "JJ" ], "frames": [ "NNS" ], "irremediable": [ "JJ" ], "entering": [ "VBG" ], "Soiree": [ "NNP" ], "uselessness": [ "NN" ], "salads": [ "NNS" ], "disasters": [ "NNS" ], "Deborah": [ "NNP" ], "Jiangsu": [ "NNP" ], "assessors": [ "NNS" ], "Imasdounian": [ "NNP" ], "Michigan": [ "NNP", "JJ" ], "Nightclubs": [ "NNPS" ], "staff-written": [ "JJ" ], "seriously": [ "RB" ], "TIGRs": [ "NNP" ], "calming": [ "VBG", "JJ" ], "cash-back": [ "JJ" ], "Bouvier": [ "NNP" ], "Westpac": [ "NNP" ], "incentives": [ "NNS" ], "Recital": [ "NNP" ], "Johsen": [ "NNP" ], "inwardly": [ "RB" ], "crazies": [ "NNS" ], "grandma": [ "NN" ], "la-la": [ "JJ" ], "composer-pianist-conductor": [ "NN" ], "backfiring": [ "VBG" ], "Sun-3\\": [ "NNP" ], "Ventes": [ "NNP" ], "precious-metals": [ "NNS", "JJ", "NN" ], "modest": [ "JJ" ], "Kepler": [ "NNP" ], "Voegtli": [ "NNP" ], "socking": [ "VBG" ], "Yucaipa": [ "NNP" ], "hemorrhoids": [ "NNS" ], "Norwalk": [ "NNP" ], "top-heavy": [ "JJ" ], "Latchford": [ "NNP" ], "cigarette-vending": [ "JJ" ], "spoken": [ "VBN", "JJ" ], "twined": [ "VBD", "VBN" ], "Pixley": [ "NNP" ], "NIH-appointed": [ "JJ" ], "spokes": [ "NNS" ], "periodical": [ "NN" ], "Sinyard": [ "NNP" ], "affords": [ "VBZ" ], "Palos": [ "NNP" ], "Drouot": [ "NNP" ], "Monday": [ "NNP" ], "Cia.": [ "NNP" ], "inflation-offsetting": [ "JJ" ], "carbide-products": [ "NNS" ], "Stuckey": [ "NNP" ], "Mounted": [ "NNP" ], "lingering": [ "VBG", "JJ" ], "subcompacts": [ "NNS" ], "Omron": [ "NNP" ], "RAISED": [ "VBD" ], "whitewash": [ "NN" ], "solid-waste": [ "NN", "JJ" ], "surges": [ "NNS", "VBZ" ], "snatch": [ "VB", "VBP" ], "retrogressive": [ "JJ" ], "Smaby": [ "NNP" ], "Hamilton-oriented": [ "JJ" ], "absorbs": [ "VBZ" ], "surged": [ "VBD", "VBN" ], "drug-cartel": [ "JJ" ], "History": [ "NN", "NNP" ], "government-guaranteed": [ "JJ" ], "Equinox": [ "NNP" ], "Ciao": [ "FW" ], "crossroads": [ "NNS", "NN" ], "so-so": [ "JJ", "NN" ], "oerations": [ "NNS" ], "wandering": [ "VBG" ], "shakeup": [ "NN" ], "Waring": [ "NNP" ], "sumptuous": [ "JJ" ], "turned": [ "VBD", "VBN" ], "jewels": [ "NNS" ], "Field": [ "NNP", "NN" ], "Hubay": [ "NNP" ], "uninterrupted": [ "JJ" ], "Nummi": [ "NNP" ], "Exchange-listed": [ "JJ" ], "politicos": [ "NNS" ], "fashionable": [ "JJ", "NN" ], "coliseum": [ "NN" ], "Forester": [ "NNP" ], "zoo": [ "NN" ], "market-monitoring": [ "JJ" ], "Cinematographer": [ "NN" ], "travel-agency": [ "NN" ], "Klesken": [ "NNP" ], "pistachio": [ "JJ" ], "opposite": [ "JJ", "IN", "NN" ], "discerning": [ "JJ" ], "below-investment-grade": [ "JJ" ], "spewing": [ "VBG" ], "Darman": [ "NNP" ], "oil-rig": [ "NN" ], "Plentywood": [ "NNP" ], "Depositors": [ "NNS" ], "Wong": [ "NNP" ], "Depository": [ "NNP" ], "Melsungen": [ "NNP" ], "Sochaux": [ "NNP" ], "non-vaccinated": [ "JJ" ], "touchy": [ "JJ" ], "Hurwitt": [ "NNP" ], "Instances": [ "NNS" ], "jitters": [ "NNS", "NN" ], "obsidian": [ "NN" ], "jittery": [ "JJ" ], "scavanged": [ "VBN" ], "Sibley": [ "NNP" ], "lung-function": [ "JJ" ], "unmistakable": [ "JJ" ], "imagines": [ "VBZ" ], "friction": [ "NN" ], "Ethiopia": [ "NNP", "NN" ], "inconsistent": [ "JJ" ], "imagined": [ "VBN", "VBD", "JJ" ], "area-sales": [ "JJ" ], "ensembles": [ "NNS" ], "reconciling": [ "VBG" ], "transact": [ "VB" ], "Duponts": [ "NNPS" ], "aimlessly": [ "RB" ], "Adia": [ "NNP" ], "Dolmabahce": [ "NNP" ], "seven-unit": [ "JJ" ], "concurrence": [ "NN" ], "Alfieri": [ "NNP" ], "then-minister": [ "NN" ], "rejoiced": [ "VBD" ], "Surprising": [ "JJ" ], "revolutionized": [ "VBD", "VBN" ], "balconies": [ "NNS" ], "stoicism": [ "NN" ], "skiffs": [ "NNS" ], "rejoices": [ "VBZ" ], "Mid-Atlantic": [ "NN" ], "etcetera": [ "NN", "FW" ], "recombinant": [ "JJ" ], "keenly": [ "RB" ], "Winnie": [ "NNP" ], "bathwater": [ "NN" ], "recurred": [ "VBD", "VBN" ], "Facilities": [ "NNPS", "NNP", "NNS" ], "airily": [ "RB" ], "YES": [ "NNP" ], "Pawtucket": [ "NNP" ], "Old-time": [ "JJ" ], "WTBS": [ "NNP" ], "gold-share": [ "JJ" ], "printing-ink": [ "JJ" ], "Osbert": [ "NNP" ], "Nearing": [ "VBG" ], "Ringo": [ "NNP" ], "bishopry": [ "NN" ], "MerchantsBank": [ "NNP" ], "FIAT": [ "NNP" ], "defensively": [ "RB" ], "Arabian-American": [ "NNP" ], "foreign-investment": [ "JJ" ], "Lermer": [ "NNP" ], "Compilation": [ "NN" ], "field-services": [ "JJ" ], "Designated": [ "NNP" ], "Wisdom": [ "NNP", "NN" ], "vaccines": [ "NNS" ], "unlocks": [ "VBZ" ], "kilometer": [ "NN" ], "moons": [ "NNS" ], "Kadane": [ "NNP" ], "Ziegfeld": [ "NNP" ], "welcomes": [ "VBZ" ], "food-sector": [ "JJ" ], "Rademacher": [ "NNP" ], "Hip": [ "NN" ], "severe-looking": [ "JJ" ], "Harbor": [ "NNP" ], "Wachter": [ "NNP" ], "Oglethorpe": [ "NNP" ], "VGA": [ "NNP" ], "Katzenjammer": [ "NNP" ], "Mazowsze": [ "NNP" ], "Teeth": [ "NNS" ], "menacing": [ "JJ", "VBG" ], "wickedly": [ "RB" ], "Cosmos": [ "NNP" ], "uncharacteristically": [ "RB" ], "Ashington-Pickett": [ "NNP" ], "majestically": [ "RB" ], "Collectors": [ "NNS" ], "Hwang": [ "NNP" ], "millionaire": [ "NN" ], "catcalls": [ "NNS" ], "lifeline": [ "NN" ], "workplace": [ "NN", "JJ" ], "raggedness": [ "NN" ], "grooming": [ "NN", "VBG" ], "fix": [ "VB", "VBP", "NN" ], "roominess": [ "NN" ], "Yosemite": [ "NNP" ], "Kaganovich": [ "NNP" ], "Fairbanks": [ "NNP" ], "gaiety": [ "NN" ], "Whiteley": [ "NNP" ], "Smiths": [ "NNPS" ], "Carnegey": [ "NNP" ], "cribs": [ "NNS", "VBZ" ], "Nedelya": [ "NNP" ], "Shouldering": [ "VBG" ], "Alperstein": [ "NNP" ], "Chaseman": [ "NNP" ], "Caius": [ "NNP" ], "network-buying": [ "JJ" ], "A.C.": [ "NNP" ], "suppressant": [ "NN" ], "west": [ "NN", "JJ", "RB", "JJS" ], "Interscience": [ "NNP" ], "Asheville": [ "NNP" ], "motives": [ "NNS" ], "MountainBikes": [ "NNPS" ], "toadyism": [ "NN" ], "BankAmerica": [ "NNP" ], "tightener": [ "NN" ], "clergyman": [ "NN" ], "readings": [ "NNS" ], "photos": [ "NNS" ], "tightened": [ "VBD", "VBN" ], "offshore": [ "JJ", "RB" ], "abject": [ "JJ" ], "extant": [ "JJ" ], "Prompted": [ "VBN" ], "Adjusted": [ "NNP", "VBN", "JJ" ], "Muenchen": [ "NNP" ], "fin": [ "NN" ], "pretence": [ "NN" ], "Pozzatti": [ "NNP" ], "bankrupts": [ "VBZ" ], "Cooch": [ "NNP" ], "state-building": [ "NN" ], "Size": [ "NN" ], "graphed": [ "VBN" ], "importation": [ "NN" ], "Zhitzhakli": [ "NNP" ], "over-stitched": [ "JJ" ], "labor-force": [ "NN" ], "limping": [ "VBG", "JJ" ], "depressors": [ "NNS" ], "demolition": [ "NN", "JJ" ], "Profile": [ "NN" ], "Norcen": [ "NNP" ], "ingrained": [ "JJ" ], "sinuously": [ "RB" ], "Profili": [ "NNP" ], "Apocrypha": [ "NNPS" ], "Kiko": [ "NNP" ], "Kiki": [ "NNP" ], "Blood": [ "NNP", "NN" ], "Bloom": [ "NNP" ], "visually": [ "RB" ], "assigns": [ "VBZ", "NNS" ], "hideaway": [ "NN" ], "Map": [ "NNP" ], "saber-toothed": [ "JJ" ], "Clear": [ "NNP" ], "IRS": [ "NNP" ], "anti-Honecker": [ "JJ" ], "IRI": [ "NNP" ], "Anywhere": [ "RB" ], "Clean": [ "NNP", "JJ", "NN", "VB" ], "Barend": [ "NNP" ], "IRA": [ "NNP", "NN" ], "Temper": [ "NN", "NNP" ], "by-product": [ "NN" ], "agronomist": [ "NN" ], "Tappan": [ "NNP" ], "wane": [ "VB", "VBP", "NN" ], "Whiting": [ "NNP" ], "Mednis": [ "NNP" ], "Non-lawyers": [ "NNS" ], "Longley": [ "NNP" ], "flatish": [ "JJ" ], "May": [ "NNP", "MD" ], "peculiarities": [ "NNS" ], "nonunionized": [ "VBN" ], "Berlitz": [ "NNP" ], "Sigmund": [ "NNP" ], "highest-ranking": [ "JJ" ], "Magellan": [ "NNP", "NN" ], "persistently": [ "RB" ], "NAB": [ "NNP" ], "NAC": [ "NNP" ], "Mudugno": [ "NNP" ], "Conceivably": [ "RB" ], "being": [ "VBG", "JJ", "NN", "VBG|JJ" ], "Diesel": [ "NNP", "NN" ], "NAM": [ "NNP" ], "NAR": [ "NNP" ], "NAS": [ "NNP" ], "Aeschylus": [ "NNP" ], "B.G.": [ "NNP" ], "Megargel": [ "NNP" ], "temblor": [ "NN" ], "generator": [ "NN" ], "Completed": [ "VBN" ], "adroit": [ "JJ" ], "plunderers": [ "NNS" ], "Mac": [ "NNP" ], "plumed": [ "JJ" ], "grounder": [ "NN" ], "saddened": [ "JJ", "VBN" ], "plumes": [ "NNS" ], "dart-throwing": [ "NN" ], "Crane": [ "NNP" ], "Completes": [ "VBZ" ], "FOREAMI": [ "NNP" ], "foot-loose": [ "JJ" ], "customer-oriented": [ "JJ" ], "absense": [ "NN" ], "unerring": [ "JJ" ], "Tarnoff": [ "NNP" ], "rejoin": [ "VB", "VBP" ], "decomposed": [ "JJ" ], "sums": [ "NNS", "VBZ" ], "romps": [ "NNS" ], "spokespersons": [ "NNS" ], "traffic": [ "NN" ], "preference": [ "NN" ], "decomposes": [ "VBZ" ], "Manon": [ "NNP" ], "sensational": [ "JJ" ], "Coontz": [ "NNP" ], "Millenbruch": [ "NNP" ], "conpired": [ "VBN" ], "Sergio": [ "NNP" ], "piston-brake": [ "NN" ], "Electrochemical": [ "NNP" ], "superiority": [ "NN" ], "Warming": [ "VBG" ], "Valiant": [ "NNP" ], "pizza-eating": [ "JJ" ], "Suggs": [ "NNP" ], "obstruct": [ "VB", "VBP" ], "Case": [ "NNP", "NN" ], "satisfactory": [ "JJ" ], "NAFTA": [ "NNP" ], "Aligning": [ "VBG" ], "rest-room": [ "NN" ], "Expressed": [ "VBN" ], "pervading": [ "VBG" ], "Expresses": [ "VBZ" ], "firstpreference": [ "NN" ], "Sorkin": [ "NNP" ], "Hanifen": [ "NNP" ], "substance": [ "NN" ], "self-effacement": [ "NN" ], "Pharaoh": [ "NNP" ], "Verwoerd": [ "NNP" ], "propylthiouracil": [ "NN" ], "ravines": [ "NNS" ], "bench...": [ ":" ], "Chausson": [ "NNP" ], "bravest-feathered": [ "JJ" ], "averse": [ "JJ" ], "Cartoonist": [ "NN" ], "disparaging": [ "VBG" ], "Pooling": [ "NNP" ], "Gaul": [ "NNP" ], "KCs": [ "NNS" ], "endogamy": [ "NN" ], "Knows": [ "VBZ" ], "exasperating": [ "VBG", "JJ" ], "Bramah": [ "NNP" ], "bio-research": [ "NN" ], "ferromagnetic": [ "JJ" ], "revolutionists": [ "NNS" ], "newsboy": [ "NN" ], "one-iron": [ "JJ" ], "Agoura": [ "NNP" ], "KCS": [ "NNP" ], "Gloria": [ "NNP" ], "Lindzen": [ "NNP" ], "sonority": [ "NN" ], "Hesburgh": [ "NNP" ], "perturbed": [ "JJ", "VBD", "VBN" ], "commingled": [ "VBN" ], "antidote": [ "NN" ], "tangoed": [ "VBD" ], "revivified": [ "VBN" ], "Herber": [ "NNP" ], "Celie": [ "NNP" ], "lively": [ "JJ", "RB" ], "Celia": [ "NNP" ], "pivot": [ "JJ", "NN", "VB" ], "biches": [ "NNS" ], "news-magazine": [ "NN" ], "gnashing": [ "VBG" ], "bubbly": [ "JJ", "NN" ], "salicylate": [ "NN" ], "gleam": [ "NN", "VBP" ], "glean": [ "VB" ], "Galamian": [ "NNP" ], "Peninsula": [ "NNP" ], "redirection": [ "NN" ], "Calder": [ "NNP" ], "Steckles": [ "NNP" ], "sealed": [ "VBN", "VBD", "JJ" ], "cupids": [ "NNS" ], "bubble": [ "NN", "VBP", "VB" ], "Political-Military": [ "NNP" ], "tire-makers": [ "NNS" ], "secreted": [ "VBN" ], "emigres": [ "NNS" ], "societal": [ "JJ" ], "Southgate": [ "NNP" ], "with": [ "IN", "JJ", "RB", "RP" ], "Redevelopment": [ "NNP" ], "abused": [ "VBN", "JJ", "VBD" ], "rage": [ "NN", "VB" ], "self-seeking": [ "JJ", "NN" ], "upper-level": [ "JJ" ], "tripe": [ "NN" ], "marginality": [ "NN" ], "chomped": [ "VBN" ], "rags": [ "NNS" ], "operationally": [ "RB" ], "FRANKLIN": [ "NNP" ], "abuser": [ "NN" ], "abuses": [ "NNS" ], "Berea": [ "NNP" ], "trips": [ "NNS" ], "touchstone": [ "NN" ], "dance-committee": [ "JJ" ], "Beaubien": [ "NNP" ], "Hormats": [ "NNP" ], "color-television": [ "NN" ], "Cinderella": [ "NNP" ], "POLITICAL": [ "JJ" ], "Auerbach": [ "NNP" ], "watches": [ "NNS", "VBZ" ], "Meineke": [ "NNP" ], "incepting": [ "VBG" ], "associating": [ "VBG" ], "follow-up": [ "NN", "JJ" ], "formulation": [ "NN" ], "creak": [ "NN", "VB" ], "tremble": [ "VB", "NN" ], "C.H.": [ "NNP" ], "cream": [ "NN", "JJ" ], "Ladd": [ "NNP" ], "Lada": [ "NNP" ], "Burnley": [ "NNP" ], "sympathetically": [ "RB" ], "unparalleled": [ "JJ" ], "Savior": [ "NNP", "NN" ], "Bunyan": [ "NNP" ], "Incinerator": [ "NNP" ], "Lady": [ "NNP", "NN" ], "Amadee": [ "NNP" ], "faxes": [ "NNS" ], "refunded": [ "VBN" ], "waving": [ "VBG", "NN" ], "Kaufnabb": [ "NNP" ], "faxed": [ "VBD", "VBN" ], "hairsplitting": [ "JJ" ], "brotherhood": [ "NN" ], "linebackers": [ "NNS" ], "LeFevre": [ "NNP" ], "tricky": [ "JJ" ], "Krims": [ "NNPS" ], "twinges": [ "NNS" ], "Henh": [ "UH" ], "Mercer-Meidinger-Hansen": [ "NNP" ], "Explained": [ "NNP" ], "maliciously": [ "RB" ], "Casinos": [ "NNS" ], "Lyric": [ "NNP" ], "pre-Revolutionary": [ "JJ" ], "Moorhead": [ "NNP" ], "accreted": [ "VBN" ], "Hens": [ "NNS", "NNPS" ], "industry-government": [ "JJ", "NN" ], "legislatures": [ "NNS" ], "head-to-head": [ "JJ", "RB", "RBR" ], "Drinkhouse": [ "NNP" ], "oathe": [ "NN" ], "caused": [ "VBN", "VBD" ], "beware": [ "VB", "VBP" ], "ceramic": [ "JJ" ], "unitholders": [ "NNS" ], "About": [ "IN", "RB", "NNP" ], "tax-loss": [ "NN", "JJ" ], "Farley": [ "NNP" ], "Alperts": [ "NNS" ], "causes": [ "NNS", "VBZ" ], "Galsworthy": [ "NNP" ], "Rodney-Miss": [ "NNP" ], "predawn": [ "JJ" ], "front-desk": [ "NN", "JJ" ], "contraction-extension": [ "JJ" ], "gall-bladder": [ "NN" ], "overexpose": [ "VB" ], "Grappelly": [ "NNP" ], "norm": [ "NN" ], "re-marketing": [ "NN" ], "break-neck": [ "JJ" ], "floated": [ "VBD", "VBN" ], "TRANSCANADA": [ "NNP" ], "Conversation": [ "NN" ], "Menzel": [ "NNP" ], "floater": [ "NN" ], "Wilkes": [ "VBZ", "NNP" ], "Maniffature": [ "NNP" ], "Wilkey": [ "NNP" ], "insufficiently": [ "RB" ], "sang": [ "VBD", "FW" ], "Hoxa": [ "NNP" ], "sane": [ "JJ" ], "Semifinished": [ "VBN" ], "sana": [ "FW" ], "senselessly": [ "RB" ], "sank": [ "VBD" ], "self-employment": [ "NN" ], "abbreviated": [ "JJ" ], "OEP": [ "NNP" ], "bird-brain": [ "NN" ], "ultravehement": [ "JJ" ], "Thrice": [ "RB" ], "strong-willed": [ "JJ" ], "topcoats": [ "NNS" ], "accreditation": [ "NN" ], "psychosomatic": [ "JJ" ], "straggle": [ "VBP" ], "hyper-trader": [ "NN" ], "Dutch\\/Shell": [ "NNP" ], "computing-services": [ "JJ" ], "PAYS": [ "VBZ" ], "Ogilvy": [ "NNP", "NN" ], "jurist": [ "NN" ], "dwells": [ "VBZ" ], "hash": [ "NN", "VB", "VBP" ], "obtrudes": [ "VBZ" ], "hatchway": [ "NN" ], "Huntley": [ "NNP" ], "Departments": [ "NNPS", "NNP" ], "strata": [ "NNS" ], "daunted": [ "VBD", "VBN", "JJ" ], "OEC": [ "NNP" ], "unrewarding": [ "JJ" ], "hast": [ "VBP" ], "less-complicated": [ "JJ" ], "MANHATTAN": [ "NNP" ], "criminality": [ "NN" ], "Histadrut": [ "NNP" ], "Concept": [ "NNP" ], "Fawkes": [ "NNP" ], "Mercer": [ "NNP" ], "Rodman": [ "NNP" ], "Vaikule": [ "NNP" ], "periodic": [ "JJ" ], "free-on-board": [ "JJ" ], "Quintet": [ "NNP" ], "Chazanoff": [ "NNP" ], "skepticism": [ "NN" ], "dehumanized": [ "VBN" ], "Alsatian": [ "NNP" ], "depart": [ "VB", "VBP" ], "retroactive": [ "JJ" ], "reclaimed": [ "VBN", "VBD", "JJ" ], "Scorpio": [ "NNP" ], "art-auction": [ "NN" ], "traumatized": [ "VBD", "VBN" ], "full-sized": [ "JJ" ], "Puttin": [ "NNP" ], "cynics": [ "NNS" ], "launchings": [ "NNS" ], "shape-up": [ "JJ" ], "rudder": [ "NN" ], "Crash": [ "NNP", "NN" ], "invalidism": [ "NN" ], "prejudging": [ "VBG" ], "Dumpster": [ "NNP" ], "Bamford": [ "NNP" ], "cat-and-mouse": [ "JJ" ], "act...": [ ":" ], "failure-to-supervise": [ "JJ" ], "initiated": [ "VBN", "VBD" ], "company": [ "NN" ], "Frumil": [ "NNP" ], "corrected": [ "VBN", "VBD", "JJ" ], "Subways": [ "NNS" ], "initiates": [ "VBZ", "NNS" ], "Subic": [ "NNP" ], "survey-type": [ "JJ" ], "Cybill": [ "NNP" ], "stampings": [ "NNS" ], "Willows": [ "NNS" ], "Gods": [ "NNP", "NNS" ], "installing": [ "VBG" ], "Corsicas": [ "NNS" ], "CORTES": [ "NNP" ], "resorcinol": [ "NN", "JJ" ], "ice-breaker": [ "JJ", "NN" ], "knocked": [ "VBD", "VBN" ], "grope": [ "VB", "VBP" ], "scramble": [ "NN", "VBP", "VB" ], "Panasonic": [ "NNP", "JJ" ], "bogs": [ "VBZ" ], "Guppy": [ "NNP" ], "meaner": [ "JJR" ], "bogy": [ "NN" ], "Called": [ "VBN", "VBD", "NNP" ], "Somali": [ "JJ", "NNP" ], "clotheslines": [ "NNS" ], "allegro": [ "JJ" ], "electric-driven": [ "JJ" ], "Grits": [ "NNP" ], "recapitalize": [ "VB" ], "Wolfson": [ "NNP" ], "Quinta": [ "NNP" ], "Glasgow": [ "NNP" ], "bonded": [ "VBN", "JJ" ], "brushoff": [ "NN" ], "huge": [ "JJ" ], "Murkland": [ "NNP" ], "hugh": [ "JJ" ], "dismissed": [ "VBD", "VBN" ], "Frances": [ "NNP" ], "top-selling": [ "JJ" ], "Hering": [ "NNP" ], "hugs": [ "NNS" ], "dismisses": [ "VBZ" ], "Sigmen": [ "NNP" ], "Skorich": [ "NNP" ], "thickened": [ "VBN", "VBD" ], "disgraced": [ "VBN" ], "variant": [ "NN", "JJ" ], "ineffectively": [ "RB" ], "hackwork": [ "NN" ], "Declan": [ "NNP" ], "malevolent": [ "JJ" ], "loan-to-value": [ "JJ" ], "resemble": [ "VB", "VBP" ], "twisting": [ "VBG", "NN" ], "France.": [ "NNP" ], "Stuff": [ "NN" ], "Nero": [ "NNP" ], "media": [ "NNS", "NN" ], "exclusions": [ "NNS" ], "Ikle": [ "NNP" ], "everlastingly": [ "RB" ], "accuse": [ "VB", "VBP" ], "Oilfields": [ "NNS" ], "peppy": [ "JJ" ], "installed": [ "VBN", "JJ", "VBD" ], "enrollments": [ "NNS" ], "paper": [ "NN", "VB" ], "spirituals": [ "NNS" ], "installer": [ "NN" ], "sceneries": [ "NNS" ], "schoolhouse": [ "NN" ], "sell-through": [ "NN" ], "cheerfulness": [ "NN" ], "bummed": [ "VBN" ], "Parental": [ "JJ" ], "boomerangs": [ "NNS" ], "Fisheries": [ "NNP", "NNPS" ], "bypass": [ "VB", "NN" ], "non-subcommittee": [ "JJ" ], "Brussels": [ "NNP", "NNS" ], "sauce": [ "NN" ], "reintroduced": [ "VBN", "VBD" ], "colleague": [ "NN" ], "Loma": [ "NNP" ], "Lomb": [ "NNP" ], "abandons": [ "VBZ" ], "gadget": [ "NN" ], "MS-DOS": [ "NNP" ], "deliberating": [ "VBG" ], "Berkman": [ "NNP" ], "idols": [ "NNS" ], "Markovic": [ "NNP" ], "Ameritech": [ "NNP" ], "Curley": [ "NNP" ], "cigar-making": [ "JJ" ], "autocracy": [ "NN" ], "Satires": [ "NNPS" ], "anti-price-fixing": [ "JJ" ], "Authority": [ "NNP", "NN" ], "courses": [ "NNS" ], "Day-to-day": [ "JJ" ], "Oswald": [ "NNP" ], "shocking": [ "JJ", "VBG" ], "chipping": [ "VBG", "NN" ], "begged": [ "VBD", "VBN" ], "Bosak": [ "NNP" ], "cicadas": [ "NNS" ], "C.W.": [ "NNP" ], "Bergman": [ "NNP" ], "scarcely-tapped": [ "JJ" ], "lipstick": [ "NN" ], "scoops": [ "VBZ", "NNS" ], "boxed-in": [ "JJ" ], "research": [ "NN", "VB", "VBP" ], "RF-082": [ "NN" ], "life-changing": [ "JJ" ], "Report": [ "NNP", "NN", "VB", "VBP" ], "Jewett": [ "NNP" ], "electricals": [ "NNS" ], "cables": [ "NNS" ], "bedlam": [ "NN" ], "Muzo": [ "NNP" ], "Canute": [ "NNP" ], "Bohane": [ "NNP" ], "suntan": [ "NN" ], "CIRCUIT": [ "NNP" ], "airway": [ "NN" ], "ecologically": [ "RB" ], "Nino": [ "NNP" ], "Buell": [ "NNP" ], "tractor-trailer": [ "NN" ], "carry-on": [ "JJ", "NN" ], "Exitosa": [ "NNP" ], "MGM": [ "NNP" ], "Fawaz": [ "NNP" ], "Thyssen": [ "NNP" ], "porpoise": [ "NN" ], "precautionary": [ "JJ" ], "Remains": [ "NNS" ], "Dalai": [ "NNP" ], "preservation": [ "NN" ], "Delancy": [ "NNP" ], "Agonale": [ "NNP" ], "Malocclusion": [ "NN" ], "peaceable": [ "JJ" ], "CH": [ "NN", "NNP" ], "percolator": [ "NN" ], "Started": [ "VBN" ], "swipe": [ "NN", "VB" ], "tradition": [ "NN" ], "Giraffe": [ "NNP" ], "intra-EC": [ "JJ" ], "calculations": [ "NNS" ], "Homebrew": [ "NNP" ], "essays": [ "NNS" ], "Starter": [ "NNP" ], "scimitar-wielding": [ "JJ" ], "tenderfoot": [ "NN" ], "Assignation": [ "NN" ], "hand-covered": [ "JJ" ], "age-and-sex": [ "JJ" ], "Bugs": [ "NNP", "NNS" ], "cheekbones": [ "NNS" ], "Trinen": [ "NNP" ], "Dludsky": [ "NNP" ], "stifle": [ "VB" ], "evicting": [ "VBG" ], "Treble": [ "NNP" ], "Hogg": [ "NNP" ], "Cancer": [ "NNP", "NN" ], "Hoge": [ "NNP" ], "de-emphasized": [ "VBN" ], "getaway": [ "NN" ], "Hogs": [ "NNS" ], "dismantling": [ "VBG", "NN" ], "Shiloh": [ "NNP" ], "mass-producing": [ "VBG" ], "country-and-Western": [ "JJ" ], "Speculative": [ "JJ" ], "exuberant": [ "JJ" ], "forward-moving": [ "JJ" ], "swanky": [ "JJ" ], "Metro-Goldwyn-Mayer": [ "NNP" ], "Oldsmobile": [ "NNP" ], "Anti-Deficiency": [ "NNP" ], "mutilates": [ "VBZ" ], "blond": [ "JJ", "NN" ], "conjugate": [ "NN" ], "Etess": [ "NNP" ], "odors": [ "NNS" ], "Founding": [ "NNP", "VBG" ], "fermented": [ "VBN" ], "permanence": [ "NN" ], "single-B-minus": [ "JJ", "NNP", "NN" ], "peridontal": [ "JJ" ], "recognizing": [ "VBG" ], "Othello": [ "NNP" ], "Addis": [ "NNP" ], "penman": [ "NN" ], "Recreation": [ "NNP", "NN" ], "singles": [ "NNS", "VBZ" ], "Consultant": [ "NNP", "NN" ], "Pollare": [ "NNP" ], "shake-up": [ "NN" ], "Energetic": [ "JJ" ], "understands": [ "VBZ" ], "wiggled": [ "VBD" ], "seize": [ "VB", "VBP" ], "Brownapopolus": [ "NNP" ], "OTC": [ "NNP" ], "proliferated": [ "VBN", "VB", "VBD" ], "cultivating": [ "VBG" ], "administrate": [ "VB" ], "Indirect": [ "JJ" ], "OTS": [ "NNP" ], "harvests": [ "NNS" ], "wording": [ "NN" ], "ambiguities": [ "NNS" ], "husband-and-wife": [ "JJ", "NN" ], "team-management": [ "NN" ], "far-flung": [ "JJ" ], "Consumption": [ "NN" ], "exterminate": [ "VB" ], "agonize": [ "VB", "VBP" ], "Deadly": [ "JJ" ], "Motown": [ "NNP" ], "affix": [ "VB" ], "Amgen": [ "NNP" ], "Pepperdine": [ "NNP" ], "Behold": [ "VB" ], "overwhelmed": [ "VBN", "VBD", "JJ" ], "blender": [ "NN" ], "Bast": [ "NNP" ], "Basu": [ "NNP" ], "Bass": [ "NNP", "NN" ], "two-room": [ "JJ" ], "Dirt": [ "NN" ], "commodity-market": [ "NN" ], "Premiere": [ "NNP" ], "Patrolmen": [ "NNP" ], "gooey": [ "JJ" ], "Basf": [ "NNP" ], "Maxxam": [ "NNP" ], "Base": [ "NNP", "NN" ], "Dire": [ "JJ" ], "Dirk": [ "NNP" ], "Palash": [ "NNP" ], "indifference": [ "NN" ], "non-wealthy": [ "JJ" ], "columns": [ "NNS" ], "chiefdoms": [ "NNS" ], "uncontested": [ "JJ" ], "mousetraps": [ "NNS" ], "pleasure\\": [ "CC" ], "Cooker": [ "NNP" ], "Lesley": [ "NNP" ], "adventurers": [ "NNS" ], "Aroostook": [ "NNP" ], "Cooked": [ "VBN", "JJ" ], "remedy": [ "NN", "VB" ], "Delaware-based": [ "JJ" ], "Finevest": [ "NNP" ], "compass": [ "NN", "VB" ], "damnit": [ "UH" ], "distraction": [ "NN" ], "sects": [ "NNS" ], "incapacitated": [ "VBN" ], "well-off": [ "JJ" ], "tanked": [ "VBN" ], "Improper": [ "JJ" ], "Surveying": [ "VBG" ], "untrustworthiness": [ "NN" ], "tanker": [ "NN" ], "roundhouse": [ "NN" ], "rumored": [ "VBN", "VBD", "JJ" ], "insane": [ "JJ" ], "Criticisms": [ "NNP" ], "handcuffs": [ "NNS" ], "GROUP": [ "NNP", "NN" ], "Sener": [ "NNP" ], "bundling": [ "VBG" ], "activists": [ "NNS", "VBZ" ], "redoubt": [ "NN" ], "Thirty-ninth": [ "NNP" ], "collectively": [ "RB" ], "Founders": [ "NNPS", "NNP", "NNS" ], "semidrying": [ "JJ" ], "analog": [ "NN", "JJ" ], "Osram": [ "NNP" ], "Straightening": [ "VBG" ], "Roukema": [ "NNP" ], "dipole": [ "JJ", "NN" ], "Peggy": [ "NNP" ], "exclaimed": [ "VBD" ], "Tieken": [ "NNP" ], "ablated": [ "VBN" ], "hauteur": [ "NN" ], "thrive": [ "VB", "VBP" ], "Hollowell": [ "NNP" ], "pantomimed": [ "VBD" ], "hunter-gatherers": [ "NNS" ], "unsealing": [ "NN" ], "NEKOOSA": [ "NNP" ], "condoned": [ "VBN", "VBD" ], "Fulton": [ "NNP" ], "empowering": [ "VBG" ], "Neil": [ "NNP" ], "legitimately": [ "RB" ], "KRENZ": [ "NNP" ], "out-of-door": [ "NN" ], "money-maker": [ "NN" ], "Boy-Lady": [ "NNP" ], "Wilde": [ "NNP" ], "al-Husseini": [ "NNP" ], "Acapulco": [ "NNP" ], "retarded": [ "JJ", "NN" ], "Wisely": [ "RB" ], "Breton": [ "NNP" ], "bell": [ "NN" ], "Clyde": [ "NNP" ], "adaptation": [ "NN" ], "Mecholyl": [ "NNP" ], "Peanuts": [ "NNP", "NNPS", "NNS" ], "belt": [ "NN" ], "nimbler": [ "JJR" ], "Cary": [ "NNP" ], "Blaikie": [ "NNP" ], "Leiby": [ "NNP" ], "Cars": [ "NNPS", "NNP", "NNS" ], "Stoutt": [ "NNP" ], "satire": [ "NN" ], "imperfections": [ "NNS" ], "longs": [ "VBZ" ], "proprietor": [ "NN" ], "extravagant": [ "JJ" ], "Carl": [ "NNP" ], "Cara": [ "NNP" ], "Card": [ "NNP", "NN" ], "Care": [ "NNP", "VB", "VBP", "NN" ], "Polly": [ "NNP" ], "coahse": [ "NN" ], "N.C.": [ "NNP" ], "Spike-haired": [ "JJ" ], "Polls": [ "NNS" ], "complements": [ "VBZ", "NNS" ], "awake": [ "JJ", "RB", "VB" ], "Sinfonia": [ "NNP" ], "pacemaker": [ "NN" ], "Pollo": [ "NNP" ], "Harriet": [ "NNP" ], "Harrier": [ "NNP" ], "Hiroshima": [ "NNP" ], "Giblen": [ "NNP" ], "lace-drawn": [ "JJ" ], "presses": [ "NNS", "VBZ" ], "Slim-Fast": [ "NNP" ], "Markel": [ "NNP" ], "Drennen": [ "NNP" ], "budget": [ "NN", "VB" ], "Colston": [ "NNP" ], "Biopharm": [ "NNP" ], "Markey": [ "NNP" ], "pressed": [ "VBN", "VBD" ], "Brauerei": [ "NNP" ], "Market": [ "NNP", "NN" ], "error-laden": [ "JJ" ], "hand-wringer": [ "NN" ], "agitation": [ "NN" ], "averaging": [ "VBG", "JJ", "NN" ], "binding": [ "NN", "JJ", "VBG" ], "eve": [ "NN" ], "deferred-maintenance": [ "JJ" ], "signal-processing": [ "JJ", "NN" ], "Expressway": [ "NNP", "NN" ], "contract-services": [ "NNS" ], "Bouwer": [ "NNP" ], "raiders": [ "NNS" ], "Norwick": [ "NNP" ], "starlight": [ "NN" ], "Norwich": [ "NNP" ], "economic-efficiency": [ "NN" ], "Leibowitz": [ "NNP" ], "U.S.A": [ "NNP", "NN" ], "behemoths": [ "NNS" ], "Spencerian": [ "JJ" ], "Tidal": [ "NNP" ], "Payments": [ "NNS", "NNP" ], "affairs": [ "NNS" ], "most-watched": [ "JJ" ], "U.S.$": [ "$" ], "cardholders": [ "NNS" ], "Miners": [ "NNP" ], "Likud": [ "NNP" ], "nickname": [ "NN", "VB", "VBP" ], "infamous": [ "JJ" ], "Regulator": [ "NNP" ], "hymen": [ "NN" ], "Oregonian": [ "NNP" ], "Haas": [ "NNP" ], "Mexico-based": [ "JJ" ], "Manny": [ "NNP", "NN" ], "Taster": [ "NNP" ], "Mockowiczes": [ "NNPS" ], "copes": [ "VBZ" ], "clasped": [ "VBD", "VBN" ], "Reidy": [ "NNP" ], "O.": [ "NNP" ], "quick-fix": [ "JJ" ], "uncouth": [ "JJ" ], "salvo": [ "NN", "FW" ], "World-Wide": [ "NNP", "JJ" ], "Boyde": [ "NNP" ], "Grenier": [ "NNP" ], "Orphic": [ "JJ" ], "harness-emotions": [ "JJ" ], "Colorliner": [ "NNP" ], "salve": [ "NN", "VB" ], "Marsh": [ "NNP" ], "Harland": [ "NNP" ], "avionics": [ "NNS", "NN" ], "no-strike": [ "JJ" ], "pool-side": [ "JJ", "NN" ], "abstention": [ "NN" ], "F.O.": [ "NNP" ], "Brando": [ "NNP" ], "truism": [ "NN" ], "Nationally": [ "RB" ], "Brande": [ "NNP" ], "audiotex": [ "NN" ], "multi-year": [ "JJ" ], "Brandy": [ "NNP" ], "parents": [ "NNS" ], "Brands": [ "NNP", "NNPS", "NNS" ], "closedown": [ "NN" ], "Old-House": [ "NNP" ], "Brandt": [ "NNP" ], "On": [ "IN", "NNP" ], "Ol": [ "JJ" ], "Ok": [ "NNP", "NN" ], "Oi": [ "NNP" ], "Oh": [ "UH", "NNP" ], "Of": [ "IN", "NNP" ], "couple": [ "NN", "JJ", "VB" ], "bureaucrat": [ "NN" ], "emanating": [ "VBG" ], "Pepinsky": [ "NNP" ], "oneyear": [ "JJ" ], "polemic": [ "JJ" ], "Oz": [ "NNP" ], "Oy": [ "NNP" ], "Buzz": [ "NNP" ], "colonials": [ "NNS" ], "credit-reporting": [ "JJ", "NN" ], "Or": [ "CC" ], "Cairo-sponsored": [ "JJ" ], "OK": [ "JJ", "RB", "UH" ], "OH": [ "NN" ], "Schacht": [ "NNP" ], "OF": [ "IN" ], "Show": [ "NNP", "NN", "VB" ], "Schotter": [ "NNP" ], "Kaydon": [ "NNP", "NN" ], "greenback": [ "NN" ], "chorus": [ "NN" ], "Heideman": [ "NNP" ], "OR": [ "CC" ], "noninterference": [ "NN" ], "Treatment": [ "NNP", "NN" ], "COUP": [ "NN" ], "standing-room": [ "NN" ], "Burlingham": [ "NNP" ], "crapshoot": [ "NN", "VB" ], "bounce": [ "VB", "VBP", "NN" ], "bouncy": [ "JJ" ], "Assumption": [ "NN" ], "gold-filled": [ "JJ" ], "earthquake...": [ ":" ], "greener": [ "JJR" ], "underbelly": [ "NN" ], "sorbed": [ "VBN" ], "orderings": [ "NNS" ], "Yacos": [ "NNP" ], "Japanese-based": [ "JJ" ], "microbes": [ "NNS" ], "Rosty": [ "NNP" ], "Frank": [ "NNP", "NNPS" ], "firecracker": [ "NN" ], "Witter": [ "NNP" ], "Frans": [ "NNP" ], "Ogisu": [ "NNP" ], "Witten": [ "NNP" ], "Drexel-underwritten": [ "JJ" ], "Franz": [ "NNP" ], "Aviation": [ "NNP", "NN" ], "LEADER": [ "NN" ], "Hells": [ "NNP" ], "Sculley": [ "NNP" ], "Liaisons": [ "NNS" ], "electronics-instruments": [ "JJ" ], "less-aggressive": [ "JJ" ], "respite": [ "NN" ], "Reeder": [ "NNP" ], "Hello": [ "UH" ], "browny": [ "JJ" ], "disjointed": [ "VBN", "JJ" ], "Soft-spoken": [ "JJ" ], "scraggly": [ "JJ" ], "Kassebaum": [ "NNP" ], "Oso": [ "NNP" ], "Winnetka": [ "NNP" ], "telephone-information": [ "NN" ], "mouth": [ "NN" ], "Rican": [ "JJ", "NN", "NNP" ], "canning": [ "NN", "VBG", "JJ" ], "Suhey": [ "NNP" ], "well-versed": [ "JJ" ], "seven-figure": [ "JJ" ], "Herslow": [ "NNP" ], "terrorists": [ "NNS" ], "disturbingly": [ "RB" ], "inti": [ "NN" ], "disease-resistance": [ "JJ" ], "bloodspots": [ "NNS" ], "Flights": [ "NNS" ], "controversies": [ "NNS" ], "el-Fna": [ "NNP" ], "controllers": [ "NNS" ], "Corvallis": [ "NNP" ], "Pellicano": [ "NNP" ], "sightseeing": [ "NN" ], "backbend": [ "NN" ], "uncertainties": [ "NNS" ], "discoid": [ "JJ" ], "Dime": [ "NNP" ], "gases": [ "NNS" ], "atheists": [ "NNS" ], "four-jet": [ "JJ" ], "fragmented": [ "JJ", "VBN" ], "Natcher": [ "NNP" ], "Principal": [ "NNP", "JJ", "NN" ], "market-reform": [ "JJ" ], "Natchez": [ "NNP" ], "junior-year-abroad": [ "JJ" ], "carping": [ "VBG", "JJ", "NN" ], "Boswell": [ "NNP" ], "frozen-embryo": [ "NN" ], "HelmsleySpear": [ "NNP" ], "Resolution": [ "NNP", "NN" ], "intestines": [ "NNS" ], "Spinnaker": [ "NNP" ], "Consolidated": [ "NNP", "VBN", "JJ" ], "testaments": [ "NNS" ], "paired": [ "VBN", "JJ", "VBD" ], "retaliatory": [ "JJ" ], "purges": [ "VBZ", "NNS" ], "Scotchman": [ "NN" ], "Magoun": [ "NNP" ], "Apex": [ "NNP" ], "Goudsmit": [ "NNP" ], "Enthoven": [ "NNP" ], "deadliest": [ "JJS" ], "haunt": [ "VB", "VBP", "NN" ], "Vauxhall": [ "NNP" ], "bobbed": [ "VBD" ], "Twins": [ "NNP", "NNS", "NNPS" ], "nectaries": [ "NNS" ], "self-victimized": [ "JJ" ], "tragi-comic": [ "JJ" ], "unsaturated": [ "JJ" ], "non-Fed": [ "JJ" ], "intrepid": [ "JJ" ], "puzzling": [ "JJ", "VBG" ], "Hollins": [ "NNP" ], "Hazel": [ "NNP" ], "uranium": [ "NN" ], "Noticing": [ "VBG" ], "Last": [ "JJ", "NNP", "RB", "VB" ], "Gephardt": [ "NNP" ], "Senor": [ "NNP" ], "tech": [ "NN" ], "revision": [ "NN" ], "depredations": [ "NNS" ], "myofibrils": [ "NNS" ], "trans-illuminated": [ "JJ" ], "litigants": [ "NNS" ], "Larchmont": [ "NNP" ], "Longwood": [ "NNP" ], "suppression": [ "NN" ], "Ludie": [ "NNP" ], "bibliographies": [ "NNS" ], "bianco": [ "NN" ], "interfaith": [ "JJ" ], "Dort": [ "NNP" ], "Devery": [ "NNP" ], "methodologies": [ "NNS" ], "Pitman-Moore": [ "NNP" ], "time-share": [ "JJ" ], "Sacramento-based": [ "JJ" ], "crease": [ "NN" ], "transient": [ "JJ" ], "Stamford": [ "NNP" ], "F.E.": [ "NNP" ], "rewt": [ "NN" ], "Hodson": [ "NNP" ], "Bolivar": [ "NNP" ], "Doubt": [ "NN", "VBP" ], "hepatitis": [ "NN", "NNP" ], "Aguirre-Sacasa": [ "NNP" ], "conservative": [ "JJ", "NN" ], "two-seater": [ "JJ" ], "Shortridge": [ "NNP" ], "detectives": [ "NNS" ], "amalgamation": [ "NN" ], "unforseen": [ "JJ", "NN" ], "glows": [ "NNS" ], "Bobar": [ "NNP" ], "carelessly": [ "RB" ], "Bince": [ "NNP" ], "Organ": [ "NN" ], "dicker": [ "VB" ], "account": [ "NN", "VBP", "VB" ], "Ornithological": [ "NNP" ], "Loantech": [ "NNP" ], "minerals": [ "NNS" ], "rediscovery": [ "NN" ], "detested": [ "VBD", "VBN" ], "Intercity": [ "JJ" ], "amanuensis": [ "NN" ], "diorah": [ "NN" ], "Scobee-Frazier": [ "NNP" ], "extraditing": [ "VBG" ], "Negus": [ "NNP" ], "less-than-brilliant": [ "JJ" ], "vouchsafes": [ "VBZ" ], "Bankruptcy": [ "NNP", "NN" ], "stair-step": [ "JJ" ], "Begins": [ "VBZ" ], "Haqvin": [ "NNP" ], "Winchester": [ "NNP", "NN" ], "cannibals": [ "NNS" ], "castle-themed": [ "JJ" ], "progenitors": [ "NNS" ], "Atlantes": [ "NN" ], "Catskills": [ "NNPS" ], "Hollsworth": [ "NNP" ], "dynamics": [ "NNS" ], "tempted": [ "VBN", "VBD" ], "victor": [ "NN" ], "Entrance": [ "NN" ], "lawbreakers": [ "NNS" ], "sweats": [ "NNS" ], "Association": [ "NNP", "NN" ], "alpha-beta-gammas": [ "NNS" ], "waning": [ "VBG" ], "Kathryn": [ "NNP" ], "multimedia": [ "NNS" ], "mough": [ "NN" ], "sweaty": [ "JJ" ], "Blockade": [ "NN" ], "flowing": [ "VBG", "JJ" ], "Handels": [ "NNP" ], "continously": [ "RB" ], "harassing": [ "VBG" ], "druggist": [ "NN" ], "Brasilia": [ "NNP" ], "wishy-washy": [ "JJ" ], "Luciano": [ "NNP" ], "Puppies": [ "NNS" ], "squirming": [ "VBG" ], "garbage-to-energy": [ "JJ" ], "Seddon": [ "NNP" ], "hi-tech": [ "JJ" ], "credits": [ "NNS", "VBZ" ], "Recycling": [ "NNP", "NN" ], "ould": [ "JJ" ], "information-technology": [ "JJ" ], "Alien": [ "NNP" ], "derby": [ "NN" ], "makes": [ "VBZ", "NNS", "NN" ], "maker": [ "NN" ], "hasps": [ "NNS" ], "panicked": [ "VBD", "VBN", "JJ" ], "Tito": [ "NNP" ], "Pigeon": [ "NNP" ], "It-wit": [ "NN" ], "NASDA": [ "NNP" ], "Beronio": [ "NNP" ], "nibbling": [ "VBG", "NN" ], "butyl-lithium": [ "NN" ], "McKusick": [ "NNP" ], "desiring": [ "VBG" ], "Solo": [ "NNP", "JJ" ], "Bookman": [ "NNP" ], "property\\/casualty": [ "NN" ], "Presently": [ "RB" ], "HEARS": [ "VBZ" ], "incertain": [ "JJ" ], "Sold": [ "VBN" ], "Sole": [ "NNP", "NN" ], "Lobbyist": [ "NN" ], "Siegel": [ "NNP", "NN" ], "Masami": [ "NNP" ], "Neutral": [ "NNP", "JJ" ], "surrogates": [ "NNS" ], "NATO": [ "NNP" ], "Kauffmann": [ "NNP" ], "Jadwiga": [ "NNP" ], "ex-FDA": [ "JJ" ], "arbitrage``": [ "``" ], "Chatsworth": [ "NNP" ], "EURODOLLARS": [ "NNS", "NNPS|NNS", "NNPS" ], "rich": [ "JJ", "NNS", "NN" ], "stolidly": [ "RB" ], "undeclared": [ "JJ" ], "Laporte": [ "NNP" ], "Hiawatha": [ "NNP" ], "Growing": [ "VBG" ], "Blackfriar": [ "NNP" ], "customer": [ "NN" ], "Madam": [ "NNP" ], "Shurtleff": [ "NNP" ], "integrating": [ "VBG" ], "meatpacker": [ "NN" ], "Fiedler": [ "NNP" ], "trans-lingually": [ "RB" ], "unknowns": [ "NNS" ], "clean-water": [ "NN" ], "reserves": [ "NNS", "VBZ" ], "retell": [ "VBP" ], "Overland": [ "NNP" ], "English-language": [ "JJ", "NN" ], "Lawford": [ "NNP" ], "scatter": [ "NN", "VB" ], "Harnischfeger": [ "NNP" ], "field-service": [ "JJ" ], "murmuring": [ "VBG" ], "plate": [ "NN" ], "copywriter": [ "NN" ], "billboards": [ "NNS" ], "rode": [ "VBD" ], "ascension": [ "NN" ], "Democratic-controlled": [ "JJ" ], "Panmunjom": [ "NNP" ], "bolstered": [ "VBN", "VBD" ], "Rosie": [ "NNP", "NN" ], "cross-eyed": [ "JJ" ], "tightrope": [ "NN" ], "Vesole": [ "NNP" ], "comedy": [ "NN" ], "sucess": [ "NN" ], "clasping": [ "VBG" ], "fine-looking": [ "JJ" ], "SCRAP": [ "VBP" ], "disassociated": [ "VBD" ], "wignapping": [ "NN" ], "Y-region": [ "NN" ], "re-entering": [ "VBG" ], "Glowering": [ "VBG" ], "Forseth": [ "NNP" ], "Spanberg": [ "NNP" ], "Ono": [ "NNP" ], "Ong": [ "NNP" ], "Grosse": [ "NNP" ], "Bleeker": [ "NNP" ], "Laugh": [ "NNP" ], "Maccario": [ "NNP" ], "Nine-month": [ "JJ" ], "Madson": [ "NNP" ], "evolutionary": [ "JJ" ], "thigh": [ "NN" ], "non-church": [ "JJ" ], "volts": [ "NNS" ], "Shigeru": [ "NNP" ], "altogether": [ "RB" ], "Fitzgerald": [ "NNP" ], "Lincoln-Mercury-Merkur": [ "NNP" ], "summer-holiday": [ "JJ" ], "Mikie": [ "NNP" ], "long-lived": [ "JJ" ], "Reconsider": [ "VB" ], "Emergency": [ "NNP", "NN" ], "cut-rate": [ "JJ" ], "BRIDGEPORT": [ "NNP" ], "high-price": [ "JJ" ], "accompaniments": [ "NNS" ], "barrel-wide": [ "JJ" ], "derivative": [ "JJ", "NN" ], "Home": [ "NNP", "NN" ], "subparagraph": [ "NN" ], "LYNCH": [ "NNP" ], "physicians": [ "NNS" ], "prosper": [ "VB" ], "Yongjian": [ "NNP" ], "Conviction": [ "NN" ], "Teleprompter": [ "NNP" ], "Fortified": [ "VBN" ], "Morrill": [ "NNP" ], "Register": [ "NNP" ], "creedal": [ "JJ" ], "Long-Term": [ "NNP", "JJ" ], "junior-high": [ "JJ" ], "Extensions": [ "NNS" ], "Sense": [ "NN", "NNP" ], "nose-dived": [ "VBD", "VBN" ], "Creators": [ "NNS" ], "grimaced": [ "VBD" ], "STOCK": [ "NN", "NNP" ], "off-center": [ "JJ" ], "five-party": [ "JJ" ], "far-famed": [ "JJ" ], "concave": [ "JJ" ], "Riely": [ "NNP" ], "Wenceslas": [ "NNP" ], "invertebrates": [ "NNS" ], "Bonanno": [ "NNP" ], "reproducing": [ "VBG" ], "homogeneous": [ "JJ" ], "Landis": [ "NNP" ], "Molloy": [ "NNP" ], "self-image": [ "NN" ], "Dunes": [ "NNPS", "NNP", "NNS" ], "gravel-voiced": [ "JJ" ], "Recyclers": [ "NNPS" ], "Anniversary": [ "NNP", "NN" ], "Dropping": [ "VBG" ], "Cheng": [ "NNP" ], "Seiyu": [ "NNP" ], "patch": [ "NN", "VB" ], "witness": [ "NN", "VB" ], "mind-set": [ "NN" ], "Treausry": [ "NNP" ], "Noting": [ "VBG" ], "creditworthy": [ "NN" ], "frowns": [ "VBZ" ], "market-on-close": [ "JJ" ], "DuroTest": [ "NNP" ], "Shortly": [ "RB" ], "unwieldy": [ "JJ" ], "greedy": [ "JJ" ], "Monopolies": [ "NNPS", "NNP" ], "convolutions": [ "NNS" ], "ServantCor": [ "NNP", "NN" ], "Hammersla": [ "NNP" ], "Ecco": [ "NNP" ], "Oros": [ "NNP" ], "Angola": [ "NNP" ], "Juliano": [ "NNP" ], "U-I": [ "NNP" ], "Zayre": [ "NNP" ], "countrey": [ "NN" ], "Plenary": [ "NNP" ], "underinvestigated": [ "JJ" ], "troughed": [ "VBD" ], "BOSSES": [ "NNP" ], "Calvert": [ "NNP" ], "receding": [ "VBG" ], "gamekeeper": [ "NN" ], "upper-class": [ "JJ" ], "imprecates": [ "VBZ" ], "jurists": [ "NNS" ], "REINSURERS": [ "NNS" ], "Refco": [ "NNP" ], "landlord-tenant": [ "JJ" ], "Kubek": [ "NNP" ], "Connecting": [ "NNP" ], "Backstairs": [ "NNS" ], "WORKS": [ "NNP" ], "vetoed": [ "VBD", "VBN" ], "Dunston": [ "NNP" ], "erstwhile": [ "JJ" ], "foul-ups": [ "NNS" ], "Pinter": [ "NNP" ], "onslaughts": [ "NNS" ], "lumen": [ "NN" ], "garden-shrub": [ "NN" ], "Kikkoman": [ "NNP" ], "interests": [ "NNS", "VBZ" ], "enforcement": [ "NN" ], "Boardman": [ "NNP" ], "quarry": [ "NN" ], "Dill": [ "NNP" ], "Roosevelt": [ "NNP" ], "Calcium": [ "NN" ], "Xenia": [ "NNP" ], "Copperman": [ "NNP" ], "incongruities": [ "NNS" ], "Heckman": [ "NNP" ], "commandant": [ "NN" ], "Existing": [ "VBG", "JJ" ], "non-research": [ "JJ" ], "orchestrated": [ "VBD", "VBN" ], "Ashton-Tate": [ "NNP" ], "gays": [ "NNS" ], "Doswell": [ "NNP" ], "Tennesse": [ "NNP" ], "Negotiable": [ "JJ" ], "Oldenburg": [ "NNP" ], "false": [ "JJ", "RB" ], "shrinks": [ "VBZ" ], "chivalrous": [ "JJ" ], "Fenimore": [ "NNP" ], "cost-reduction": [ "JJ", "NN" ], "tonight": [ "RB", "NN" ], "Secret": [ "NNP", "JJ" ], "Ledge": [ "NN", "NNP" ], "wave-setting": [ "JJ" ], "mustachioed": [ "JJ" ], "depict": [ "VB", "VBP" ], "Mulloy": [ "NNP" ], "how-to": [ "JJ" ], "Fukuyama": [ "NNP" ], "cloakrooms": [ "NNS" ], "DEFENSE": [ "NN" ], "teetered": [ "VBD" ], "Invisible": [ "NNP" ], "Lansbury": [ "NNP" ], "tall-masted": [ "JJ" ], "Sysco": [ "NNP" ], "manor": [ "NN" ], "Brown-tobacco": [ "JJ" ], "Fizkultura": [ "NNP" ], "hoof-and-mouth": [ "JJ" ], "cipher": [ "VB" ], "Mode": [ "NNP" ], "jimmied": [ "VBD" ], "oil-slicked": [ "JJ" ], "Wheatena": [ "NNP" ], "so-called": [ "JJ", "NNP", "NN" ], "placement": [ "NN" ], "Barasch": [ "NNP" ], "Soderblom": [ "NNP" ], "bred": [ "VBN", "VBD" ], "Adaptaplex": [ "NNP" ], "Belisle": [ "NNP" ], "lots": [ "NNS" ], "consorting": [ "VBG" ], "O*/NNP&Y": [ "NN" ], "brew": [ "NN", "VB" ], "back...": [ ":" ], "Unstained": [ "JJ" ], "Hasenauer": [ "NNP" ], "Brandes": [ "NNP" ], "Reliance": [ "NNP", "NN" ], "free-traders": [ "NNS" ], "Brandel": [ "NNP" ], "rubric": [ "NN" ], "bean-counting": [ "NN" ], "replaster": [ "VB" ], "taps": [ "NNS", "VBZ" ], "trying": [ "VBG", "JJ", "NN" ], "Betsey": [ "NNP" ], "quickened": [ "VBD", "VBN" ], "Curzon": [ "NNP" ], "entities": [ "NNS" ], "irk": [ "VB" ], "tape": [ "NN", "VB", "VBP" ], "reggae-and-rock": [ "JJ" ], "riding": [ "VBG", "JJ", "NN" ], "Storekeepers": [ "NNS" ], "preliminaries": [ "NNS" ], "Schlieren": [ "NNP" ], "undivided": [ "JJ" ], "Hooked": [ "VBD" ], "Tasso": [ "NNP" ], "I.R.S": [ "NNP" ], "unbundle": [ "VB" ], "EnClean": [ "NNP" ], "Keen": [ "NNP" ], "molasses": [ "NN" ], "sinus": [ "NN" ], "wring": [ "VB" ], "strollers": [ "NNS" ], "monkish": [ "JJ" ], "Rating": [ "NNP", "NN" ], "five-block": [ "JJ" ], "State-run": [ "JJ" ], "fez-wearing": [ "JJ" ], "comprising": [ "VBG" ], "taxes": [ "NNS", "VBZ" ], "low-value": [ "JJ" ], "stuff": [ "NN", "VB", "VBP" ], "cabaret-like": [ "JJ" ], "taxed": [ "VBN", "JJ", "VBD" ], "Landesrentenbank": [ "NNP" ], "Brent": [ "NNP" ], "guessing": [ "VBG", "NN" ], "deathward": [ "RB" ], "pronoun": [ "NN" ], "frame": [ "NN", "VBP", "VB" ], "AmeriGas": [ "NNP" ], "Joachim": [ "NNP" ], "Fe": [ "NNP" ], "elusiveness": [ "NN" ], "knee-type": [ "JJ" ], "Hooker": [ "NNP" ], "Linden": [ "NNP" ], "dungeon": [ "NN" ], "Nagayama": [ "NNP" ], "destiny": [ "NN" ], "Yanks": [ "NNS", "NNP" ], "Issam": [ "NNP" ], "nuclear": [ "JJ" ], "Hindoo": [ "NNP" ], "Issak": [ "NNP" ], "roiled": [ "VBN" ], "STUBBED": [ "VBN" ], "membrane": [ "NN" ], "onward-driving": [ "JJ" ], "Linder": [ "NNP" ], "incumbent-protection": [ "JJ" ], "post-bankruptcy": [ "JJ" ], "Succasunna": [ "NNP" ], "Courbet": [ "NNP" ], "INQUIRY": [ "NN" ], "hot-selling": [ "JJ" ], "Clairson": [ "NNP" ], "staring": [ "VBG" ], "handstands": [ "NNS" ], "challengers": [ "NNS" ], "marts": [ "NNS" ], "Circus": [ "NNP" ], "Leontief": [ "NNP" ], "Zurich-based": [ "JJ" ], "Ione": [ "NNP" ], "award-winning": [ "JJ" ], "Musmanno": [ "NNP" ], "exalting": [ "VBG" ], "low-altitude": [ "NN" ], "near-term": [ "JJ", "NN" ], "Ledger": [ "NNP", "NN" ], "indict": [ "VB" ], "stylistically": [ "RB" ], "scapulars": [ "NNS" ], "Certificates-a": [ "NNP", "NNPS" ], "Meadows": [ "NNP" ], "mailman": [ "NN" ], "balloonists": [ "NNS" ], "decanting": [ "VBG" ], "open-shelf": [ "JJ" ], "genetic": [ "JJ" ], "willing": [ "JJ", "VBG" ], "entitle": [ "VB", "VBP" ], "Aziz": [ "NNP" ], "feather": [ "NN", "VB" ], "GRiDPad": [ "NNP", "NN" ], "Land-based": [ "JJ" ], "commuter": [ "NN" ], "commutes": [ "NNS", "VBZ" ], "coherence": [ "NN" ], "quasi-performer": [ "NN" ], "commuted": [ "VBN", "VBD" ], "Vicks": [ "NNP" ], "Kupor": [ "NNP" ], "MARKS": [ "NNS" ], "swindling": [ "VBG" ], "Vicky": [ "NNP" ], "banish": [ "VB" ], "countermeasures": [ "NNS" ], "sourly": [ "RB" ], "Widener": [ "NNP" ], "Verbrugge": [ "NNP" ], "Ebersol": [ "NNP" ], "OECD": [ "NNP" ], "Bethlehem": [ "NNP" ], "Mahal-flavor": [ "NNP" ], "Virginians": [ "NNPS" ], "westerly": [ "JJ", "RB" ], "Greek-speaking": [ "JJ" ], "Noces": [ "NNP", "FW" ], "Dalfen": [ "NNP" ], "Yazov": [ "NNP" ], "greater": [ "JJR", "RBR" ], "cohort": [ "NN" ], "ostentatious": [ "JJ" ], "newsroom": [ "NN" ], "descendants": [ "NNS" ], "Judie": [ "NNP" ], "Regular": [ "NNP", "JJ" ], "Stanbury": [ "NNP" ], "chronicling": [ "VBG" ], "unimaginable": [ "JJ" ], "ex-employer": [ "NN" ], "Mandelbaum": [ "NNP" ], "nondescriptly": [ "RB" ], "high-standard": [ "JJ" ], "diplomatically": [ "RB" ], "Decker": [ "NNP" ], "polyesters": [ "NNS" ], "ex-employee": [ "NN" ], "heathenish": [ "JJ" ], "Hanover-Precious": [ "NNP" ], "Dulles": [ "NNP", "NNS" ], "non-fortress-like": [ "JJ" ], "off": [ "IN", "RB|IN", "JJ", "NN", "RB", "RP" ], "EYP": [ "NNP" ], "provocatively": [ "RB" ], "SHIBUMI": [ "NNP" ], "southeastern": [ "JJ" ], "oft": [ "RB" ], "diphtheria": [ "NN" ], "windowless": [ "JJ" ], "Bambi-syndronists": [ "NNS" ], "reefs": [ "NNS" ], "monetarism": [ "NN" ], "newest": [ "JJS", "JJ" ], "Similarly": [ "RB" ], "peer-group": [ "JJ" ], "Lover": [ "NNP", "NN" ], "resuspended": [ "VBN", "VBD" ], "Siegman": [ "NNP" ], "Joyo": [ "NNP" ], "Camdessus": [ "NNP" ], "monetarist": [ "NN", "JJ" ], "Ramcharger": [ "NNP" ], "granulocytic": [ "JJ" ], "W.D.": [ "NNP" ], "Schering": [ "NNP" ], "too-expensive": [ "JJ" ], "moralities": [ "NNS" ], "hot-rolled": [ "JJ" ], "neoliberal": [ "JJ" ], "Countrywide": [ "NNP" ], "crack": [ "NN", "JJ", "VB", "VBP" ], "Unfurling": [ "VBG" ], "one-percentage-point": [ "JJ" ], "Lebo": [ "NNP" ], "Qualitative": [ "JJ" ], "stooped": [ "VBD" ], "falters": [ "VBZ" ], "crux": [ "NN" ], "Ghent": [ "NNP" ], "Photofrin": [ "NN" ], "crus": [ "NN" ], "RESOURCES": [ "NNP" ], "debatable": [ "JJ" ], "Virdon": [ "NNP" ], "bulge": [ "NN", "VB" ], "Insta-Care": [ "NNP" ], "sharp-jawed": [ "JJ" ], "Gino": [ "NNP" ], "Agents": [ "NNS", "NNP", "NNPS" ], "Hondurans": [ "NNS" ], "become": [ "VB", "VBD", "VBN", "VBP" ], "Earthbeat": [ "NNP" ], "Lauritsen": [ "NNP" ], "Purves": [ "NNP" ], "Newburgh": [ "NNP" ], "Kidder": [ "NNP", "JJR" ], "stress-producing": [ "JJ" ], "Rykoff-Sexton": [ "NNP" ], "Food-price": [ "JJ" ], "castorbeans": [ "NNS" ], "hissing": [ "NN", "VBG" ], "Feldstein": [ "NNP" ], "Belvidere": [ "NNP" ], "recognition": [ "NN" ], "Warrior": [ "NNP" ], "cutting-tools": [ "NNS" ], "passion": [ "NN" ], "saucepan": [ "NN" ], "five-by-eight-inch": [ "JJ" ], "Fruehauf": [ "NNP" ], "sidestreet": [ "NN" ], "biology": [ "NN" ], "Kikuyu": [ "NNP" ], "Komurasaki": [ "NNP" ], "Telefonos": [ "NNP", "NNPS" ], "Jaggers": [ "NNP" ], "last-resort": [ "JJ" ], "Utopia": [ "NNP", "NN" ], "torched": [ "VBD", "VBN" ], "tubing": [ "NN", "," ], "posterity": [ "NN" ], "imaginary": [ "JJ", "NN" ], "milquetoast": [ "NN" ], "Judgments": [ "NNS" ], "debentures": [ "NNS" ], "grayer": [ "JJR" ], "SalFininistas": [ "NNP" ], "Cos": [ "NNP", "NNPS" ], "Replace": [ "VB" ], "Glassell": [ "NNP" ], "moss-covered": [ "JJ" ], "blackness": [ "NN" ], "curative": [ "JJ" ], "mucilage": [ "NN" ], "grayed": [ "JJ" ], "swimming": [ "VBG", "JJ", "NN" ], "cultivates": [ "VBZ" ], "high-priced": [ "JJ" ], "letters": [ "NNS" ], "Somewhere": [ "RB", "NNP", "NN" ], "Propulsion": [ "NNP" ], "Caesars": [ "NNP", "NNPS" ], "sharpness": [ "NN" ], "Ravel-like": [ "JJ" ], "Schmalzried": [ "NNP" ], "unstanched": [ "VBN" ], "cultivated": [ "VBN", "JJ", "VBD" ], "HOLIDAY": [ "NNP", "NN" ], "bothers": [ "VBZ" ], "glistened": [ "VBD" ], "brownies": [ "NNS" ], "zenith": [ "NN" ], "Corton-Charlemagne": [ "NNP" ], "nonfarm": [ "JJ" ], "splintered": [ "JJ", "VBD", "VBN" ], "pairing": [ "NN", "VBG" ], "faster-growing": [ "JJR" ], "providential": [ "JJ" ], "solid-muscle": [ "JJ" ], "terminates": [ "VBZ" ], "Billings": [ "NNS", "NNP" ], "sommelier": [ "FW" ], "Majdan-Tartarski": [ "NNP" ], "Exact": [ "JJ" ], "Wimpys": [ "NNP" ], "public-housing": [ "JJ", "NN" ], "Sanitation": [ "NNP", "NN" ], "airline-hostess": [ "NN" ], "Kloman": [ "NNP" ], "Lo-Jack": [ "NNP" ], "cancer-gene": [ "JJ" ], "FormBase": [ "NNP" ], "Bohn": [ "NNP" ], "Lifson": [ "NNP" ], "Healthcare": [ "NNP", "JJ", "NN" ], "Milstar": [ "NNP" ], "Nu-West": [ "NNP" ], "Guber\\/Peters": [ "NNP" ], "fragmentation": [ "NN" ], "tossed": [ "VBD", "VBN", "JJ" ], "evident": [ "JJ" ], "shrunk": [ "VBN" ], "Terrizzi": [ "NNP" ], "wheellike": [ "JJ" ], "excitement": [ "NN" ], "tosses": [ "NNS" ], "office-supply": [ "JJ" ], "problem": [ "NN" ], "man-to-man": [ "RB" ], "Vowel-Length": [ "NN" ], "Bumkins": [ "NNP" ], "Cementos": [ "NNP", "NNS" ], "Argonne": [ "NNP" ], "obese": [ "JJ" ], "Nath": [ "NNP" ], "Alleghany": [ "NNP" ], "fine-featured": [ "JJ" ], "Nate": [ "NNP" ], "smoothed-muscled": [ "JJ" ], "nonetheless": [ "RB" ], "tubular": [ "JJ" ], "Somers": [ "NNP" ], "leafmold": [ "NN" ], "decisional": [ "JJ" ], "Khare": [ "NNP" ], "details": [ "NNS", "VBZ" ], "D.W.": [ "NNP" ], "gene-replication": [ "NN" ], "Corp.": [ "NNP", "NN" ], "rebelled": [ "VBD", "VBN" ], "Accord": [ "NNP" ], "Trickster": [ "NNP" ], "Matais": [ "NNP" ], "Peery": [ "NNP" ], "Druse": [ "JJ" ], "outlets": [ "NNS" ], "treelike": [ "JJ" ], "ULI": [ "NNP" ], "Monterrey-based": [ "JJ" ], "Delwin": [ "NNP" ], "Praise": [ "NN" ], "Michaels": [ "NNP", "NNS" ], "exposure": [ "NN" ], "export-driven": [ "JJ" ], "Octoroon": [ "NNP" ], "Corps": [ "NNP", "NNPS", "NN" ], "caricaturist": [ "NN" ], "compete": [ "VB", "VBP" ], "villainous": [ "JJ" ], "Rhu-beb-ni-ice": [ "NN" ], "Philly": [ "RB" ], "Infotab": [ "NNP" ], "non-Alternative": [ "NNP" ], "near-strangers": [ "NNS" ], "clamoring": [ "VBG" ], "yield-maintenance": [ "NN" ], "Agile": [ "FW", "JJ" ], "magnetic": [ "JJ" ], "Kensington": [ "NNP" ], "Interlude": [ "NNP" ], "Roche": [ "NNP" ], "Rocha": [ "NNP" ], "tenuous": [ "JJ" ], "Partecipazioni": [ "NNP" ], "integrity": [ "NN" ], "stinks": [ "VBZ" ], "cm.": [ "NN" ], "Brainard": [ "NNP" ], "self-consuming": [ "JJ" ], "Assemblyman": [ "NNP" ], "periodicals": [ "NNS" ], "Immediate": [ "NNP", "JJ" ], "propellants": [ "NNS" ], "neighbours": [ "NNS" ], "Propylene": [ "NN" ], "Greenshields": [ "NNP" ], "over-the-road": [ "JJ" ], "worth": [ "JJ", "IN", "NN", "RB", "VBN", "VBP" ], "alternating": [ "VBG" ], "Aaawww": [ "UH" ], "stud": [ "NN" ], "Ametek": [ "NNP" ], "perishable": [ "JJ" ], "Mancini": [ "NNP" ], "Shaughnessy": [ "NNP" ], "Pipe": [ "NNP" ], "replication": [ "NN" ], "summarized": [ "VBN", "VBD" ], "pre-employment": [ "JJ", "NN" ], "Hands-off": [ "JJ" ], "white-collar-defense": [ "JJ" ], "five-ply": [ "JJ" ], "blanche": [ "JJ", "NN" ], "by-election": [ "NN", "JJ" ], "progression": [ "NN" ], "daydream": [ "NN" ], "Subsidies": [ "NNS" ], "debunked": [ "VBN" ], "samurai": [ "FW", "NN" ], "underground-storage": [ "NN" ], "vegetable-protein": [ "NN" ], "superlunary": [ "JJ" ], "Zagaria": [ "NNP" ], "Conning": [ "NNP" ], "weapons-plant": [ "JJ" ], "professionally": [ "RB" ], "Boats": [ "NNS", "NNP" ], "Thema": [ "NNP" ], "Troubled": [ "JJ", "VBN", "NNP" ], "shatteringly": [ "RB" ], "Capra": [ "NNP" ], "machines": [ "NNS" ], "Salle": [ "NNP" ], "auto-market": [ "NN" ], "filtration": [ "NN" ], "food-service": [ "NN", "JJ" ], "Fireman": [ "NNP", "NN" ], "time-tested": [ "JJ" ], "Grandis": [ "NNP" ], "offshoots": [ "NNS" ], "Whirling": [ "JJ" ], "Mazda": [ "NNP" ], "market-place": [ "NN" ], "baptistery": [ "NN" ], "Sedan": [ "NNP" ], "Olatunji": [ "NNP" ], "Nietzsche": [ "NNP" ], "Photograph": [ "NN", "NNP" ], "No-o-o": [ "UH" ], "viewings": [ "NNS" ], "Caradon": [ "NNP" ], "PARIS": [ "NNP" ], "sub-therapeutic": [ "JJ" ], "Linville": [ "NNP" ], "equals": [ "VBZ", "NNS" ], "remarried": [ "VBD", "VBN" ], "Cadre": [ "NNP" ], "Algonquin": [ "NNP" ], "Taisei": [ "NNP" ], "non-Mexican": [ "JJ" ], "Marshal": [ "NNP" ], "stresses": [ "NNS", "VBZ" ], "bilevel": [ "JJ" ], "Duero": [ "NNP" ], "fireballs": [ "NNS" ], "catch-up": [ "NN", "JJ" ], "Barabba": [ "NNP" ], "Riefling": [ "NNP" ], "stressed": [ "VBD", "JJ", "VBN" ], "sequestering": [ "NN" ], "otters": [ "NNS" ], "Absolute": [ "JJ" ], "Brownell": [ "NNP" ], "Economdis": [ "NNP" ], "water-purification": [ "NN" ], "inequitable": [ "JJ" ], "plenum": [ "NN" ], "Raymonda": [ "NNP" ], "inequitably": [ "RB" ], "building-supplies": [ "NNS" ], "Satan": [ "NNP", "NN" ], "compulsively": [ "RB" ], "HOLLYWOOD": [ "NNP" ], "bra": [ "NN" ], "Cestre": [ "NNP" ], "devastation": [ "NN" ], "Shootin": [ "VBG" ], "Bellini": [ "NNP", "NNS" ], "fulfull": [ "VB" ], "sweater": [ "NN" ], "W.I.L.D": [ "NNP" ], "unrehearsed": [ "JJ" ], "Poughkeepsie": [ "NNP" ], "spearhead": [ "VB", "NN" ], "administering": [ "VBG" ], "sweated": [ "VBD", "VBN" ], "exacts": [ "VBZ" ], "Competes": [ "VBZ" ], "chlorpromazine": [ "NN" ], "Consort": [ "NNP" ], "Skye": [ "NNP" ], "Extracts": [ "NNS" ], "simperers": [ "NNS" ], "ascribe": [ "VBP", "VB" ], "two-drug": [ "JJ" ], "regrouping": [ "NN", "VBG" ], "championships": [ "NNS" ], "profits-optimism": [ "JJ" ], "overstretch": [ "VB" ], "Thurmond": [ "NNP" ], "Count-Duke": [ "NNP" ], "Ormoc": [ "NNP" ], "Normally": [ "RB", "NNP" ], "Svevo": [ "NNP" ], "divorced": [ "VBN", "JJ", "VBD" ], "divorcee": [ "NN" ], "Steele": [ "NNP" ], "honeymooners": [ "NNS" ], "cuddly": [ "JJ" ], "divorces": [ "NNS" ], "era": [ "NN" ], "containment": [ "NN" ], "elbow": [ "NN" ], "Steels": [ "NNP", "NNS" ], "maget": [ "NN" ], "Abe": [ "NNP" ], "quivering": [ "VBG" ], "relativistic": [ "JJ" ], "DiLorenzo": [ "NNP" ], "Abt": [ "NNP" ], "Abu": [ "NNP" ], "Schenley": [ "NNP" ], "RTC-owned": [ "JJ" ], "totaled": [ "VBD", "VBN", "VBP" ], "Caniglia": [ "NNP" ], "impassive": [ "JJ" ], "confidential": [ "JJ" ], "Seafirst": [ "NNP" ], "rationed": [ "VBN" ], "nuts": [ "NNS", "JJ" ], "photoelectrons": [ "NNS" ], "corporation-socialist": [ "JJ" ], "Lelogeais": [ "NNP" ], "LATEST": [ "JJS" ], "chines": [ "NNS" ], "Griggs": [ "NNP" ], "Invoking": [ "VBG" ], "Duluth": [ "NNP" ], "misleads": [ "VBZ" ], "Huard": [ "NNP" ], "Farrell": [ "NNP" ], "Anglo-Dutch": [ "JJ", "NNP" ], "purging": [ "VBG", "NN" ], "pre-1986": [ "JJ" ], "CALL": [ "NN", "JJ", "VB", "NNP", "NN|JJ" ], "Mandom": [ "NNP" ], "well-born": [ "JJ" ], "crystallographic": [ "JJ" ], "Colucci": [ "NNP" ], "greasies": [ "NNS" ], "Brasiliaaircraft": [ "NNP" ], "Guest": [ "NNP", "NN" ], "gumption": [ "NN" ], "slimmed": [ "VBN" ], "undetected": [ "JJ" ], "ancients": [ "NNS" ], "slimmer": [ "JJR", "RB" ], "coiling": [ "VBG" ], "counter-drill": [ "VB" ], "understates": [ "VBZ" ], "pension-plan": [ "NN" ], "defrauded": [ "VBD", "VBN" ], "production": [ "NN" ], "understated": [ "VBN", "VBD", "JJ" ], "single-A-1-plus": [ "NNP" ], "fumigants": [ "NNS" ], "Cherwell": [ "NNP" ], "typescript": [ "NN" ], "Ditto": [ "NN" ], "underperform": [ "VB", "JJ" ], "Oman": [ "NNP" ], "Keepers": [ "NNS" ], "Motion": [ "NNP", "NN" ], "Omar": [ "NNP" ], "Arraignment": [ "NN" ], "Hamburger": [ "NN", "NNP" ], "sizenine": [ "JJ" ], "Cross-Purposes": [ "NNPS" ], "Reno-Lake": [ "NNP|NP" ], "principals": [ "NNS" ], "Schoenberg": [ "NNP" ], "reasonably": [ "RB" ], "routines": [ "NNS" ], "reasonable": [ "JJ" ], "Broadcasters": [ "NNS", "NNP", "NNPS" ], "varmint": [ "NN" ], "Volatile": [ "JJ" ], "feeds": [ "VBZ", "NNS" ], "Turin-based": [ "JJ" ], "volcanos": [ "NNS" ], "unfocused": [ "JJ" ], "dumping": [ "VBG", "NN" ], "emeralds": [ "NNS" ], "apotheosis": [ "NN" ], "clay-mining": [ "NN" ], "Type": [ "NN", "NNP" ], "Brunswig": [ "NNP" ], "chauvinistic": [ "JJ" ], "Aubrey": [ "NNP", "NN" ], "Gumucio": [ "NNP" ], "trainers": [ "NNS" ], "ruggedly": [ "RB" ], "out-of-sight": [ "JJ" ], "drawn-out": [ "JJ" ], "self-important": [ "JJ" ], "disputed": [ "VBN", "VBD", "JJ" ], "barrier": [ "NN" ], "bellhops": [ "NNS" ], "Ubberroth": [ "NNP" ], "certifies": [ "VBZ" ], "death-sentence": [ "NN" ], "funn-eeee": [ "JJ" ], "disputes": [ "NNS", "VBZ" ], "fastening": [ "NN" ], "enlightened": [ "JJ", "VBN" ], "lollipop": [ "NN" ], "certified": [ "VBN", "JJ" ], "scabs": [ "NNS" ], "chortled": [ "VBD", "VBN" ], "baseman": [ "NN" ], "Ugh": [ "UH" ], "Parade": [ "NNP" ], "maniac": [ "NN" ], "shortner": [ "NN" ], "practitioner": [ "NN" ], "One-third": [ "NN" ], "AFFLUENT": [ "JJ" ], "flawless": [ "JJ" ], "sprig": [ "NN" ], "Pernod": [ "NN" ], "chortles": [ "VBZ" ], "manias": [ "NNS" ], "blackout": [ "NN" ], "generalizations": [ "NNS" ], "clouding": [ "NN" ], "JERSEY": [ "NNP" ], "Amendments": [ "NNPS", "NNS" ], "Tracey": [ "NNP" ], "re-enact": [ "VB" ], "railroads": [ "NNS" ], "hamstring": [ "VB" ], "another": [ "DT", "JJ", "NN" ], "Manfred": [ "NNP", "VBN" ], "Vulturidae": [ "NNS" ], "Flavel": [ "NNP" ], "Azoff": [ "NNP" ], "alcoves": [ "NNS" ], "illustrate": [ "VB", "VBP" ], "reconfirming": [ "VBG" ], "public-sector": [ "NN", "JJ" ], "tossers": [ "NNS" ], "U-turn": [ "NN" ], "takeovers": [ "NNS" ], "more-than-ordinary": [ "JJ" ], "sweat-saturated": [ "JJ" ], "Sangamon": [ "NNP" ], "mail-sorting": [ "VBG" ], "dogs": [ "NNS", "VBZ" ], "incitements": [ "NNS" ], "Pike": [ "NNP" ], "Rushdie": [ "NNP" ], "Rare": [ "JJ" ], "over-large": [ "JJ" ], "offhand": [ "JJ" ], "Spaarbank": [ "NNP" ], "Andersson": [ "NNP" ], "enmeshed": [ "VBN" ], "cereal": [ "NN" ], "anti-missile": [ "JJ", "NN" ], "guild": [ "NN" ], "guile": [ "NN" ], "luxuriosly-upholstered": [ "JJ" ], "volume-decliner": [ "JJ" ], "meteorology": [ "NN" ], "step-father": [ "NN" ], "Relation": [ "NN" ], "Lewtas": [ "NNP" ], "Spontex": [ "NNP" ], "Hazzard": [ "NNP" ], "lanzador": [ "FW" ], "microfossils": [ "NNS" ], "AIDS-treatment": [ "NN" ], "Hiltunen": [ "NNP" ], "resettable": [ "JJ" ], "well-meaning": [ "JJ" ], "Lendrum": [ "NNP" ], "Zamislov": [ "NNP" ], "respecting": [ "VBG" ], "Venable": [ "NNP" ], "Lincoln": [ "NNP", "VBP", "NN" ], "i-th": [ "NN" ], "Talbott": [ "NNP" ], "sportsmen": [ "NNS" ], "Kinnear": [ "NNP" ], "admittances": [ "NNS" ], "refreshingly": [ "RB" ], "impelled": [ "VBN", "VBD" ], "DeKalb": [ "NNP" ], "contents": [ "NNS" ], "Q.": [ "NNP" ], "Pravda": [ "NNP" ], "semi-conductors": [ "NNS" ], "field-based": [ "JJ" ], "convenient": [ "JJ" ], "stillness": [ "NN" ], "Confiscated": [ "VBN|JJ" ], "subjects": [ "NNS", "VBZ" ], "quadric": [ "NN", "JJ" ], "thundering": [ "VBG", "JJ" ], "pilgrimage": [ "NN" ], "Phase-3": [ "NN" ], "Phase-2": [ "NN" ], "Emyanitoff": [ "NNP" ], "AMBASSADOR": [ "NN" ], "Flamingo": [ "NNP" ], "Splits": [ "NNS" ], "Button": [ "NNP" ], "Resolving": [ "NNP", "VBG" ], "troughs": [ "NNS" ], "Machine-vision": [ "JJ" ], "weak...": [ ":" ], "ramblings": [ "NNS" ], "immediacy": [ "NN" ], "Yutaka": [ "NNP" ], "return-on-savings": [ "JJ" ], "Atchinson": [ "NNP" ], "blood-pressure": [ "JJ", "NN" ], "nostrils": [ "NNS" ], "witnessed": [ "VBN", "VBD" ], "Shanties": [ "NNPS" ], "enshrined": [ "VBN" ], "QB": [ "NNP" ], "QE": [ "NNP" ], "repudiation": [ "NN" ], "reserve": [ "NN", "JJ", "VB", "VBP" ], "Fultz": [ "NNP" ], "yachters": [ "NNS" ], "Atala": [ "NNP" ], "ESOP": [ "NNP", "NN" ], "Refinements": [ "NNS" ], "foamed-core": [ "JJ" ], "bellow": [ "NN", "VB" ], "value-oriented": [ "JJ" ], "Yocum": [ "NNP" ], "witnesses": [ "NNS" ], "Mapco": [ "NNP" ], "Moselle": [ "NNP" ], "Photography": [ "NNP" ], "mid-flight": [ "RB" ], "fuel-guzzling": [ "JJ" ], "Krueger": [ "NNP" ], "completes": [ "VBZ" ], "industriously": [ "RB" ], "cashews": [ "NNS" ], "facaded": [ "VBN" ], "show-biz": [ "NN" ], "Haitian": [ "JJ" ], "tracers": [ "NNS" ], "Sass": [ "NNP" ], "tin-roofed": [ "JJ" ], "machos": [ "NNS" ], "fluid-filled": [ "JJ" ], "haunted": [ "VBN", "VBD", "JJ" ], "roundabout": [ "JJ" ], "Curie-Weiss": [ "NNP" ], "rolled-up": [ "JJ" ], "conventioneers": [ "NNS" ], "runs": [ "VBZ", "NNS" ], "domesticity": [ "NN" ], "runt": [ "NN" ], "Donoghue": [ "NNP", "NN", "VB" ], "SMALL-COMPANY": [ "JJ" ], "Pearce": [ "NNP" ], "gears": [ "NNS", "VBZ" ], "rung": [ "VBN", "NN" ], "Psychical": [ "JJ" ], "insurgents": [ "NNS" ], "freshwater": [ "JJR" ], "Loeser": [ "NNP" ], "Clifford": [ "NNP" ], "smoldered": [ "VBD", "VBN" ], "AEP": [ "NNP" ], "AES": [ "NNP" ], "Jackson": [ "NNP" ], "Caracas": [ "NNP" ], "AEW": [ "NNP" ], "shoe-horn": [ "VB" ], "Shinton": [ "NNP" ], "AEC": [ "NNP" ], "Bleier": [ "NNP" ], "bullhorns": [ "NNS" ], "AEG": [ "NNP" ], "horrendous": [ "JJ" ], "Judeo-Christian": [ "JJ" ], "Meyohas": [ "NNP" ], "pastel": [ "JJ", "NN" ], "draws": [ "VBZ", "NNS" ], "smoggy": [ "JJ", "NN" ], "pasted": [ "VBN", "VBD" ], "Horror": [ "NNP" ], "Fifteenth": [ "NNP", "JJ" ], "Workmen": [ "NNS" ], "cooperation": [ "NN" ], "drawn": [ "VBN", "JJ" ], "drawl": [ "NN" ], "encounters": [ "NNS", "VBZ" ], "Micha": [ "NNP" ], "pastes": [ "NNS" ], "Domingo": [ "NNP" ], "handful": [ "NN" ], "A310-300s": [ "NNP" ], "Hudnut": [ "NNP" ], "rush-hour": [ "JJ" ], "succumbs": [ "VBZ" ], "non-skid": [ "JJ" ], "Koeppel": [ "NNP" ], "Self-Government": [ "NNP" ], "Perish": [ "VB" ], "essentially": [ "RB" ], "psychologists": [ "NNS" ], "han": [ "NN" ], "colorlessness": [ "NN" ], "excrement": [ "NN" ], "Bring": [ "VB" ], "Mich.": [ "NNP" ], "Gtech": [ "NNP" ], "Dawn": [ "NNP", "NN" ], "Brink": [ "NNP" ], "Telemann": [ "NNP" ], "uniformity": [ "NN" ], "tone": [ "NN", "VB" ], "SkyWest": [ "NNP" ], "Conservationists": [ "NNS" ], "had": [ "VBD", "VBN" ], "Molokai": [ "NNP" ], "engulfs": [ "VBZ" ], "Furhmann": [ "NNP" ], "anticipatory": [ "JJ" ], "tons": [ "NNS" ], "infirm": [ "JJ" ], "tony": [ "JJ" ], "guzzlers": [ "NNS" ], "newsmaker": [ "NN" ], "companionway": [ "NN" ], "gratitude": [ "NN" ], "backwardness": [ "NN" ], "Taccetta": [ "NNP" ], "Tchalo": [ "FW" ], "Connecticut": [ "NNP", "NN" ], "Hungarians": [ "NNPS", "NNS" ], "Barge": [ "NNP", "NN" ], "Mamaroneck": [ "NNP" ], "hospitalization": [ "NN" ], "plebeian": [ "JJ" ], "excite": [ "VB" ], "Elections": [ "NNS", "NNP" ], "madhouse": [ "NN" ], "psychically": [ "RB" ], "idolatry": [ "NN" ], "novitiates": [ "NNS" ], "Horstman": [ "NNP" ], "reciprocal": [ "JJ" ], "Canada-Newfoundland": [ "NNP" ], "warbler": [ "NN" ], "rattlers": [ "NNS" ], "thrash": [ "VB" ], "ultracentrifuge": [ "NN" ], "endpoints": [ "NNS" ], "Lamberjack": [ "NNP" ], "Massey": [ "NNP" ], "Marenzio": [ "NNP" ], "beetles": [ "NNS" ], "Amfac": [ "NNP" ], "marksmanship": [ "NN" ], "unblinkingly": [ "RB" ], "CVN": [ "NNP" ], "dizzy": [ "JJ" ], "teutonic": [ "JJ" ], "spectrometric": [ "JJ" ], "CVB": [ "NNP" ], "chip-design": [ "JJ" ], "municipal": [ "JJ", "NN" ], "bilious": [ "JJ" ], "pesticide-free": [ "JJ" ], "Santas": [ "NNPS" ], "Ill.": [ "NNP" ], "addressees": [ "NNS" ], "Smug": [ "JJ" ], "wider-body": [ "JJR" ], "disciplining": [ "VBG" ], "Classroom": [ "NNP" ], "fuss": [ "NN", "VB" ], "Lyndhurst": [ "NNP" ], "unready": [ "JJ" ], "Denver-based": [ "JJ", "NNP" ], "TND.B": [ "NNP" ], "fuse": [ "NN", "VB" ], "Bloeser": [ "NNP" ], "rasping": [ "JJ" ], "venturing": [ "VBG" ], "Takashimaya": [ "NNP" ], "Flippo": [ "NNP" ], "humble": [ "JJ", "VB" ], "Gresham": [ "NNP" ], "Alamito": [ "NNP" ], "neo-stagnationist": [ "JJ" ], "client": [ "NN" ], "casbah": [ "NN" ], "R.W.": [ "NNP" ], "sullenly": [ "RB" ], "Ille": [ "NNP" ], "tax-department": [ "JJ" ], "wops": [ "VBZ" ], "Doubtless": [ "RB" ], "daguerreotypes": [ "NNS" ], "super-Herculean": [ "JJ" ], "Duff": [ "NNP" ], "Lorenzo": [ "NNP" ], "thanks": [ "NNS", "VBZ", "VB", "UH" ], "sabbatical": [ "NN", "JJ" ], "beautifying": [ "VBG" ], "Taft-Hartley": [ "NNP" ], "Suitable": [ "JJ" ], "nilpotent": [ "JJ" ], "similarities": [ "NNS" ], "High-Yield": [ "NNP" ], "Baeyens": [ "NNP" ], "cowhand": [ "NN" ], "Nader": [ "NNP" ], "openings": [ "NNS" ], "Eighth": [ "NNP", "JJ" ], "Democratic-endorsed": [ "JJ" ], "Hubble": [ "NNP" ], "Tabellen": [ "FW" ], "six-footer": [ "NN" ], "Wink": [ "NNP" ], "Winn": [ "NNP" ], "sweet-clover": [ "NN" ], "mail-order": [ "JJ", "NN" ], "Jansen": [ "NNP" ], "InCide": [ "NNP" ], "designers": [ "NNS" ], "Lancet": [ "NNP" ], "Agouron": [ "NNP" ], "Wine": [ "NNP", "NN" ], "eroded": [ "VBN", "JJ", "VBD" ], "rustle": [ "NN", "VB" ], "Hochman": [ "NNP" ], "cool": [ "JJ", "NN", "RB", "VB", "VBP" ], "temporally": [ "RB" ], "slavish": [ "JJ" ], "sawmill": [ "NN" ], "mail-fraud": [ "NN" ], "night": [ "NN", "RB" ], "long-endurance": [ "JJ" ], "fluoride": [ "NN" ], "mazes": [ "NNS" ], "Arrack": [ "NN" ], "dualities": [ "NNS" ], "Supplies": [ "NNS" ], "Steamboat": [ "NNP" ], "OFFENSIVE": [ "JJ" ], "caliper": [ "NN" ], "fine-arts": [ "NNS" ], "Papanicolaou": [ "NN" ], "Commission": [ "NNP", "FW", "NN" ], "Rewarding": [ "NN" ], "Grapefruit": [ "NNP" ], "Italia": [ "NNP" ], "Glantz": [ "NNP" ], "bemused": [ "JJ" ], "contaminating": [ "VBG" ], "glamorize": [ "VB" ], "ungracious": [ "JJ" ], "Malibu": [ "NNP" ], "signifying": [ "VBG" ], "Bieber": [ "NNP" ], "post-conviction": [ "JJ" ], "cortical": [ "JJ" ], "dolce": [ "FW" ], "near-Balkanization": [ "NN" ], "Proceedings": [ "NNP", "NNS" ], "architectural": [ "JJ" ], "Mailing": [ "NNP", "VBG" ], "president-U.S.": [ "NN" ], "non-contributory": [ "JJ" ], "Vajna": [ "NNP" ], "gentler": [ "JJR" ], "docutainment": [ "NN" ], "Briarcliff": [ "NNP" ], "passenger-kilometers": [ "NNS" ], "Dragging": [ "VBG" ], "DEPOSIT": [ "NN", "NNP" ], "Arata": [ "NNP" ], "Priory": [ "NNP" ], "Horizon": [ "NNP" ], "synagogues": [ "NNS" ], "Puglisi": [ "NNP" ], "attorney": [ "NN" ], "catchall": [ "NN" ], "rendering": [ "VBG", "NN" ], "Schnabel": [ "NNP", "JJ" ], "Richfield": [ "NNP" ], "vipers": [ "NNS" ], "Blasi": [ "NNP" ], "Garcias": [ "NNPS" ], "Tatanga": [ "NNP" ], "frill": [ "NN" ], "overblown": [ "JJ" ], "sternal": [ "JJ" ], "Cherkasov": [ "NNP" ], "Regency": [ "NNP", "NN" ], "Presley": [ "NNP" ], "emission-control": [ "JJ" ], "Blast": [ "NNP" ], "Blass": [ "NNP" ], "gaseous": [ "JJ" ], "garaged": [ "VBN" ], "firelight": [ "NN" ], "McChesney": [ "NNP" ], "Bhagat": [ "NNP" ], "U.N.F.P": [ "NNP" ], "garages": [ "NNS" ], "Liipfert": [ "NNP" ], "catalyst": [ "NN" ], "Fanshawe": [ "NNP" ], "sailboats": [ "NNS" ], "human-generated": [ "JJ" ], "reproductive": [ "JJ" ], "crows": [ "NNS", "VBZ" ], "not-knowing": [ "RB|VBG" ], "McGraw-Hill": [ "NNP" ], "Reducing": [ "VBG" ], "Crean": [ "NNP" ], "Cream": [ "NNP" ], "Jessie": [ "NNP" ], "Joint-venture": [ "JJ" ], "aorta": [ "NN" ], "Some": [ "DT", "NNP", "RB" ], "Quill\\/William": [ "NNP" ], "potholes": [ "NNS" ], "direct-marketed": [ "JJ" ], "Repsol": [ "NNP" ], "constriction": [ "NN" ], "valuing": [ "VBG" ], "chantier": [ "FW" ], "denouncing": [ "VBG" ], "Isikoff": [ "NNP" ], "evasive": [ "JJ" ], "test": [ "NN", "VBP", "VB" ], "Largely": [ "RB" ], "Kaza": [ "NNP" ], "Maxicare": [ "NNP" ], "Behan": [ "NNP" ], "authoritarianism": [ "NN" ], "school-sponsored": [ "JJ" ], "Ouse": [ "NNP" ], "faze": [ "VB" ], "}": [ ")" ], "Escobar": [ "NNP" ], "fourth-ranking": [ "JJ" ], "Hallman": [ "NNP" ], "bestioles": [ "NNS" ], "banquets": [ "NNS" ], "Keller": [ "NNP" ], "Chicken": [ "NNP", "NN" ], "Kelley": [ "NNP" ], "Japanese-language": [ "JJ", "NN" ], "songs": [ "NNS" ], "Draw-file": [ "NN", "VB" ], "concept": [ "NN" ], "Mathias": [ "NNP" ], "redeployment": [ "NN" ], "Containment": [ "NN", "NNP" ], "silverware": [ "NN" ], "horseback": [ "NN", "JJ", "RB" ], "underwriter": [ "NN" ], "Republic": [ "NNP", "NN" ], "roundtable": [ "JJ" ], "battle": [ "NN", "VBP", "VB" ], "Memoir": [ "NN" ], "tenable": [ "JJ" ], "soothed": [ "VBD" ], "varnish": [ "NN" ], "zeroing": [ "VBG" ], "aristocratic": [ "JJ" ], "Delphine": [ "NNP" ], "Intent": [ "NN" ], "island-fantasy": [ "JJ" ], "headstrong": [ "JJ" ], "extols": [ "VBZ" ], "puppyish": [ "JJ" ], "Prego": [ "NNP" ], "Roles": [ "NNS" ], "graphite-plastic": [ "JJ" ], "treadmill": [ "NN" ], "Rolex": [ "NNP" ], "dark-haired": [ "JJ" ], "Mineralogy": [ "NNP" ], "turns": [ "VBZ", "NNS" ], "gun": [ "NN", "VB" ], "gum": [ "NN", "VB" ], "Butterfield": [ "NNP" ], "car-sales": [ "NNS" ], "guy": [ "NN" ], "Reaganite": [ "JJ" ], "jurisdictional": [ "JJ" ], "Leningrad-Kirov": [ "NNP" ], "Sander": [ "NNP" ], "CML": [ "NNP" ], "CMK": [ "NNP" ], "detonated": [ "VBN", "VBD" ], "CMI": [ "NNP" ], "CME": [ "NNP" ], "Watts": [ "NNP" ], "CMA": [ "NNP" ], "hand-woven": [ "VBN", "NN" ], "Galoob": [ "NNP" ], "wattles": [ "NNS" ], "Aluminum-Bat": [ "NN" ], "CMZ": [ "NNP" ], "forging": [ "VBG" ], "Ziff": [ "NNP" ], "CMS": [ "NNP" ], "Fork": [ "NNP" ], "Corp.-compatible": [ "JJ" ], "Form": [ "NN", "VB", "NNP" ], "heaviness": [ "NN" ], "foregoing": [ "NN", "JJ", "VBG" ], "shares": [ "NNS", "NN", "VBZ" ], "Ford": [ "NNP" ], "peels": [ "VBZ" ], "Yoshida": [ "NNP" ], "alertness": [ "NN" ], "Fort": [ "NNP", "VB" ], "khaneh": [ "FW" ], "Darin": [ "NNP" ], "handyman": [ "NN" ], "research-and-production": [ "JJ" ], "wonduh": [ "VB" ], "sleepwalkers": [ "NNS" ], "English": [ "NNP", "JJ", "NNPS", "NNS" ], "combatant": [ "JJ", "NN" ], "Lorin": [ "NNP" ], "Bunks": [ "NNS" ], "teacher": [ "NN" ], "sociable": [ "JJ" ], "Perch": [ "NNP" ], "Juvenile": [ "NNP", "JJ" ], "Portugal": [ "NNP" ], "oilfield": [ "NN" ], "lithotripter": [ "NN" ], "Fueling": [ "VBG" ], "Sanlandro": [ "NNP" ], "Percy": [ "NNP" ], "burdensome": [ "JJ" ], "reagents": [ "NNS" ], "Lizzy": [ "NNP" ], "plotted": [ "VBN", "VBD" ], "lighthouses": [ "NNS" ], "Guarascio": [ "NNP" ], "H.A.": [ "NNP" ], "regardless": [ "RB" ], "extra": [ "JJ", "NN", "RB" ], "unappeasably": [ "RB" ], "uphill": [ "JJ", "RB" ], "filaments": [ "NNS" ], "puffed": [ "VBN", "VBD" ], "Isaam": [ "NNP" ], "unappeasable": [ "JJ" ], "Isaac": [ "NNP" ], "quenching": [ "NN" ], "Complaint": [ "NN" ], "Semon": [ "NNP" ], "Lines-Trans": [ "NNP" ], "coalesce": [ "VB", "VBP" ], "Fell": [ "NNP", "VBD" ], "unreinforced": [ "JJ" ], "slough": [ "VB" ], "Idols": [ "NNS" ], "Feld": [ "NNP" ], "Government-owned": [ "JJ" ], "Teleflora": [ "NNP" ], "rainfall": [ "NN" ], "Anabaptist": [ "NN", "NNP" ], "Require": [ "VB" ], "celebrity-oriented": [ "JJ" ], "southern-central": [ "JJ" ], "non-member": [ "NN" ], "Westbrook": [ "NNP" ], "Quotations": [ "NNPS", "NNS" ], "spaceships": [ "NNS" ], "prepay": [ "VB" ], "defeats": [ "NNS", "VBZ" ], "Conn.based": [ "JJ" ], "top-management": [ "JJ", "NN" ], "Johann": [ "NNP" ], "syntactically": [ "RB" ], "HEYNOW": [ "NNP" ], "woefully": [ "RB" ], "Homer": [ "NNP" ], "Livermore": [ "NNP" ], "Clough": [ "NNP" ], "Drivers": [ "NNS" ], "self-realized": [ "JJ" ], "chit": [ "NN" ], "Freight": [ "NNP", "NN" ], "ton-per-year": [ "JJ" ], "ERG": [ "NNP" ], "chin": [ "NN", "VB" ], "Runge": [ "NNP" ], "ERC": [ "NNP" ], "chic": [ "JJ", "NN" ], "determinations": [ "NNS" ], "Dubinsky": [ "NNP" ], "emerging-growth": [ "NN" ], "varnishes": [ "NNS" ], "dialysis": [ "NN" ], "discussion": [ "NN" ], "Reber": [ "NNP" ], "switchgear": [ "NN" ], "positional": [ "JJ" ], "antitrust-law": [ "JJ", "NN" ], "Rebel": [ "NN", "NNP" ], "wash-up": [ "JJ" ], "deteriorate": [ "VB", "VBP" ], "armies": [ "NNS" ], "unenforcible": [ "JJ" ], "Biaggi": [ "NNP" ], "peerless": [ "JJ" ], "escalate": [ "VB", "VBP" ], "APARTHEID": [ "NNP" ], "Elaborate": [ "JJ" ], "songbook": [ "NN" ], "push-up": [ "NN", "JJ" ], "Kendrick": [ "NNP" ], "shortcovering": [ "NN" ], "drastic": [ "JJ", "RB" ], "Spiller": [ "NNP" ], "Supavud": [ "NNP" ], "Shih": [ "NNP" ], "Kornbluth": [ "NNP" ], "Dieter": [ "NNP" ], "grandson": [ "NN" ], "HUDSON": [ "NNP" ], "devotees": [ "NNS" ], "beehive": [ "NN" ], "Radio": [ "NNP", "NN" ], "ill-founded": [ "JJ" ], "Sporkin": [ "NNP" ], "Radic": [ "NNP" ], "Grandparent": [ "NNP" ], "Ship": [ "NNP", "NN" ], "conquests": [ "NNS" ], "opts": [ "VBZ" ], "Combustion": [ "NNP" ], "Author": [ "NNP", "NN" ], "backwoods-and-sand-hill": [ "JJ" ], "Hannon": [ "NNP" ], "Jas": [ "NNP" ], "Jap": [ "NNP" ], "Jan": [ "NNP" ], "brain": [ "NN" ], "Mandell": [ "NNP" ], "Jam": [ "NNP" ], "tablets": [ "NNS" ], "obediences": [ "NNS" ], "Jai": [ "NNP" ], "still-building": [ "JJ" ], "still": [ "RB", "JJ", "NN", "VB" ], "Mandela": [ "NNP" ], "Dolan": [ "NNP" ], "safe-driving": [ "JJ" ], "lyin": [ "NN" ], "big-souled": [ "JJ" ], "customer-driven": [ "JJ" ], "Arkansas-based": [ "JJ" ], "correspondence": [ "NN" ], "Modigliani": [ "NNP" ], "Genghis": [ "NNP" ], "thermometers": [ "NNS" ], "refineries": [ "NNS" ], "Ventspils": [ "NNP" ], "slacks": [ "NNS" ], "five-year-old": [ "JJ" ], "Mattison": [ "NNP" ], "galloping": [ "VBG", "JJ" ], "Zeke": [ "NNP" ], "susceptibility": [ "NN" ], "inversion": [ "NN" ], "placate": [ "VB" ], "WestAir": [ "NNP" ], "drop": [ "NN", "JJ", "VB", "VBP" ], "S.G.": [ "NNP" ], "beings": [ "NNS" ], "Glenview": [ "NNP" ], "extradite": [ "VB" ], "marshals": [ "NNS" ], "seamanship": [ "NN" ], "grouse": [ "VBP", "NN" ], "challenged": [ "VBD", "VBN" ], "mixed-up": [ "JJ" ], "Museum": [ "NNP", "NN" ], "stooping": [ "VBG" ], "free-holders": [ "NNS" ], "yeah": [ "UH", "NN" ], "Kahwaty": [ "NNP" ], "challenges": [ "NNS", "VBZ" ], "Becalmed": [ "VBN" ], "year": [ "NN", "JJ" ], "Zealand-based": [ "JJ" ], "beer-drinker": [ "NN" ], "Thru": [ "IN" ], "quasi-private": [ "JJ" ], "monitors": [ "NNS", "VBZ" ], "crisis-response": [ "JJ" ], "Seattle-based": [ "JJ" ], "Compagnie": [ "NNP" ], "Norwegian": [ "JJ", "NNP" ], "structural-adjustment": [ "JJ", "NN" ], "wholeheartedly": [ "RB" ], "Indochinese": [ "JJ", "NNS" ], "temporizing": [ "VBG" ], "Tariff": [ "NN", "NNP" ], "well-operated": [ "JJ" ], "Iijima": [ "NNP" ], "York-area": [ "JJ" ], "saxophones": [ "NNS" ], "Taiwan-born": [ "JJ" ], "scandal-stench": [ "NN" ], "Itoiz": [ "NNP" ], "advantages": [ "NNS" ], "vuhranduh": [ "NN" ], "Lincoln-Douglas": [ "NNP" ], "repayable": [ "JJ" ], "contemplation": [ "NN" ], "Travelers": [ "NNP", "NNS", "NNPS" ], "AgResource": [ "NNP" ], "transition": [ "NN" ], "Erin": [ "NNP" ], "tangled": [ "JJ", "VBD", "VBN" ], "Erik": [ "NNP" ], "Ironic": [ "JJ" ], "nonprofit": [ "JJ" ], "Padget": [ "NNP" ], "Payers": [ "NNS" ], "suffice": [ "VB", "VBP" ], "BENTSEN": [ "NNP" ], "Historian": [ "NN" ], "flipping": [ "VBG", "JJ", "RB" ], "TRAVELS": [ "VBZ" ], "aluminum-industry": [ "NN" ], "Vonnegut": [ "NNP" ], "Medicine": [ "NNP", "NN" ], "two-and-a-half-mile": [ "JJ" ], "L.L.": [ "NNP" ], "tomorrow": [ "NN", "JJ", "RB" ], "Petry": [ "NNP" ], "Euro-son": [ "NN" ], "Bruckner": [ "NNP" ], "reinvestment": [ "NN" ], "publicly-traded": [ "JJ" ], "Driscoll": [ "NNP" ], "Zadel": [ "NNP" ], "predomination": [ "NN" ], "Tech-Sym": [ "NNP" ], "typographical": [ "JJ" ], "despises": [ "VBZ" ], "Analyses": [ "NNS" ], "Roaco": [ "NNP" ], "brainy": [ "JJ" ], "Quadrum": [ "NNP" ], "uninformed": [ "JJ" ], "brains": [ "NNS" ], "Jail": [ "NNP", "NN" ], "interbank": [ "NN", "JJ", "RB", "NN|JJ", "NN|RB", "NN|JJ|RB", "RB|NN|JJ" ], "auto-immune": [ "JJ" ], "Karstadt": [ "NNP" ], "professionals": [ "NNS" ], "back-disability": [ "NN" ], "transferred": [ "VBN", "VBD", "JJ" ], "discernment": [ "NN" ], "Bremerton": [ "NNP" ], "diktat": [ "JJ" ], "GERMANS": [ "NNPS", "NNS", "NN" ], "Volland": [ "NNP" ], "overcollateralized": [ "VBN" ], "extinguish": [ "VB" ], "Settlement": [ "NN", "NNP" ], "Ekberg": [ "NNP" ], "unsubstantiated": [ "JJ" ], "Cappy": [ "NNP" ], "Marcor": [ "NNP" ], "Marcos": [ "NNP" ], "beef-hungry": [ "JJ" ], "Orrie": [ "NNP" ], "Capps": [ "NNP" ], "For...": [ ":" ], "OUTSIDE": [ "JJ" ], "Winnipeg": [ "NNP" ], "Deep": [ "NNP", "JJ", "NN", "RB" ], "Petre": [ "NNP" ], "Marcom": [ "NNP" ], "Israelite": [ "NNP" ], "snorting": [ "NN" ], "blonde-headed": [ "JJ" ], "custom-built": [ "VBN" ], "call-in": [ "JJ" ], "Refuses": [ "VBZ" ], "chemical-weapons": [ "NNS", "JJ" ], "Wiseguy": [ "NNP" ], "Package": [ "NN" ], "Vestar": [ "NNP" ], "thesaurus": [ "NN" ], "importantly": [ "RB" ], "Viatech": [ "NNP" ], "Akio": [ "NNP" ], "Akin": [ "NNP" ], "MeraBank": [ "NNP" ], "countries": [ "NNS" ], "Ibaraki": [ "NNP" ], "Ente": [ "NNP" ], "Iveco": [ "NNP" ], "Thermo": [ "NNP" ], "Coupes": [ "NNP" ], "implications": [ "NNS" ], "premiered": [ "VBD" ], "chauffeured": [ "VBN" ], "premieres": [ "NNS", "VBZ" ], "heir-designate": [ "NN" ], "precipice-walled": [ "JJ" ], "Jibril": [ "NNP" ], "Web": [ "NNP" ], "Aggies": [ "NNP" ], "Blount": [ "NNP" ], "Wei": [ "NNP" ], "Character": [ "NN", "NNP" ], "hairpin": [ "NN" ], "play-by-play": [ "JJ" ], "Wes": [ "NNP" ], "cathode-ray": [ "NN" ], "teamed": [ "VBD", "VBN" ], "Wet": [ "JJ", "NNP" ], "bridgework": [ "NN" ], "Sharing": [ "VBG" ], "Jeepers": [ "UH" ], "Nijinska": [ "NNP" ], "Pelletier": [ "NNP" ], "industrialize": [ "VB" ], "embittered": [ "VBN", "JJ" ], "self-supporting": [ "JJ" ], "Nijinsky": [ "NN" ], "Awake": [ "NNP" ], "Cupply": [ "NNP" ], "Marsden": [ "NNP" ], "Adaptations": [ "NNS" ], "paneled": [ "JJ" ], "ten-gallon": [ "JJ" ], "crevasses": [ "NNS" ], "Levinson": [ "NNP" ], "humbled": [ "VBN", "VBD" ], "stroll": [ "NN", "VB", "VBP" ], "LD060": [ "NN" ], "well-capitalized": [ "JJ" ], "self-indulgence": [ "NN" ], "rippling": [ "VBG" ], "irritant": [ "NN" ], "Intellectual": [ "NNP" ], "thumbnail": [ "NN" ], "anti-tax": [ "JJ" ], "ambling": [ "VBG" ], "carloads": [ "NNS" ], "Arhat": [ "NNP" ], "Chicago-area": [ "JJ" ], "bannnnnng": [ "VB" ], "EMA": [ "NNP" ], "Whigs": [ "NNPS", "NNS" ], "EMC": [ "NNP" ], "burst": [ "NN", "VBD", "VBN", "VBP", "VB" ], "excoriated": [ "VBD", "VBN" ], "EMI": [ "NNP" ], "anchored": [ "VBN", "VBD", "JJ" ], "Harbanse": [ "NNP" ], "EMS": [ "NNP" ], "hoes": [ "NNS" ], "non-discrimination": [ "NN" ], "Tolerance": [ "NN" ], "Index-arbitrage": [ "NN" ], "break-up": [ "NN", "JJ" ], "Rincon": [ "NNP" ], "once-dull": [ "JJ" ], "Krzywy-Rog": [ "NNP" ], "Krieger": [ "NNP" ], "Members": [ "NNS", "NNPS", "NNP" ], "complications": [ "NNS" ], "westbound": [ "JJ" ], "intonations": [ "NNS" ], "Diehards": [ "NNS" ], "Puttana": [ "NN" ], "piece-by-piece": [ "JJ" ], "Lieberman": [ "NNP" ], "toting": [ "VBG" ], "Beahrs": [ "NNP" ], "Joseph": [ "NNP", "NNPS" ], "clipboards": [ "NNS" ], "broil": [ "NN", "VB" ], "money-transfer": [ "JJ", "NN" ], "WIN\\": [ "NNP" ], "WINS": [ "VBZ" ], "Adoniram": [ "NNP" ], "undersold": [ "NN" ], "outcuss": [ "VBZ" ], "Malaysia": [ "NNP", "NN" ], "Lavery": [ "NNP" ], "mortgage-industry": [ "NN" ], "botched": [ "VBN", "JJ" ], "Altenburg": [ "NNP" ], "madness": [ "NN" ], "foreboding": [ "NN", "JJ" ], "hybrids": [ "NNS" ], "inexplicable": [ "JJ" ], "exploit": [ "VB", "NN", "VBP" ], "Japanese-Americans": [ "NNPS", "NNS" ], "biographer": [ "NN" ], "Velazquez": [ "NNP" ], "Principals": [ "NNS" ], "charismatic": [ "JJ" ], "sledding": [ "NN", "VBG" ], "amino": [ "JJ" ], "muzzling": [ "JJ" ], "Pain": [ "NN" ], "lioness": [ "NN" ], "Meteorological": [ "NNP" ], "micrometeoritic": [ "JJ" ], "Paid": [ "VBN", "JJ" ], "tropical": [ "JJ", "NN" ], "pace-setter": [ "NN" ], "Paix": [ "NNP" ], "Floyd": [ "NNP" ], "dictator": [ "NN" ], "six-dollar": [ "JJ" ], "Goodby": [ "NNP", "UH" ], "Maybelline": [ "NNP" ], "before-school": [ "JJ" ], "aggressions": [ "NNS" ], "straying": [ "VBG" ], "Yr.": [ "NN" ], "discontinuing": [ "VBG" ], "Involved": [ "VBN" ], "fours": [ "NNS" ], "earth-bound": [ "JJ" ], "vagueness": [ "NN" ], "skiers": [ "NNS" ], "Biosystems": [ "NNP", "NNPS" ], "Night": [ "NNP", "NNPS", "NN" ], "freebooters": [ "NNS" ], "financial-service": [ "NN", "JJ" ], "Steroids": [ "NNS" ], "Yaffe": [ "NNP" ], "offbeat": [ "JJ" ], "Hyun": [ "NNP" ], "moderns": [ "NNS" ], "Performed": [ "VBN" ], "biped": [ "NN" ], "Edgewater": [ "NNP" ], "Moody": [ "NNP", "JJ", "NN" ], "Histochemistry": [ "NNP" ], "Aaronson": [ "NNP" ], "GNP": [ "NNP", "NN" ], "bickered": [ "VBN" ], "tilling": [ "VBG" ], "mucus": [ "NN" ], "metric": [ "JJ", "NN" ], "continuing-education": [ "JJ" ], "Insurgent": [ "JJ" ], "Better": [ "NNP", "RBR", "RB", "JJR" ], "Unwilling": [ "JJ" ], "Israel": [ "NNP" ], "develop": [ "VB", "VBP" ], "M.R.": [ "NNP" ], "pester": [ "VB" ], "Notitia": [ "NNS" ], "Bloomberg": [ "NNP" ], "preisolated": [ "VBN" ], "Fed-watching": [ "JJ" ], "near-complete": [ "JJ" ], "Amado": [ "NNP" ], "Hitter": [ "NN" ], "Fertitta": [ "NNP" ], "century...": [ ":" ], "squatted": [ "VBD", "VBN" ], "Telelawyer": [ "NNP" ], "Amada": [ "NNP" ], "rodder": [ "NN" ], "single-sentence": [ "JJ" ], "fifty-cent": [ "JJ" ], "bronchiolitis": [ "NN" ], "Colee": [ "NNP" ], "squatter": [ "NN" ], "irresistable": [ "JJ" ], "Peruvian": [ "JJ", "NNP" ], "nacelle": [ "NN" ], "Caverns": [ "NNP" ], "Terence": [ "NNP" ], "Nesconset": [ "NNP" ], "tarpapered": [ "JJ" ], "Catinari": [ "NNP" ], "Walkers": [ "NNPS", "NNS" ], "depreciation-induced": [ "JJ" ], "Municipals": [ "NNS", "NNPS" ], "airborne-radar": [ "NN" ], "Puma": [ "NN" ], "nondurable": [ "JJ" ], "Service": [ "NNP", "NN" ], "Oaklanders": [ "NNPS" ], "worn-out": [ "JJ" ], "Bafflers": [ "NNPS" ], "neon": [ "NN" ], "moviestar": [ "NN" ], "Gases": [ "NNS" ], "Pump": [ "NNP", "NN" ], "growled": [ "VBD" ], "maternity": [ "NN" ], "greetings": [ "NNS" ], "Euro-that": [ "NN" ], "Syllables": [ "NNS" ], "Molecular": [ "NNP" ], "d-c": [ "NN" ], "Linear": [ "NNP" ], "forward-looking": [ "JJ" ], "Muniak": [ "NNP" ], "abortive": [ "JJ" ], "felicities": [ "NNS" ], "Marysville": [ "NNP" ], "overbought": [ "VBN", "JJ", "NN" ], "Thatcherian": [ "JJ" ], "lowest-cost": [ "JJ", "JJS" ], "Analyst": [ "NN", "NNP" ], "disproportionate": [ "JJ" ], "propped": [ "VBN", "VBD" ], "Outflows": [ "NNS" ], "Tenn.-based": [ "JJ" ], "dialectics": [ "NNS" ], "earnest": [ "NN", "JJ" ], "Plainview": [ "NNP" ], "Playtex": [ "NNP" ], "fortune": [ "NN" ], "heightened": [ "VBN", "VBD", "JJ" ], "Regulars": [ "NNS" ], "unrequited": [ "JJ" ], "conducts": [ "VBZ" ], "Greyhound": [ "NNP" ], "roll": [ "NN", "VB", "VBP" ], "annually": [ "RB" ], "yearnings": [ "NNS" ], "unspoiled": [ "JJ" ], "scholastics": [ "NNS" ], "Salwen": [ "NNP" ], "Mahran": [ "NNP" ], "output": [ "NN", "VB" ], "Magleby": [ "NNP" ], "falsehood": [ "NN" ], "verbal": [ "JJ" ], "exposed": [ "VBN", "JJ", "VBD" ], "tragedies": [ "NNS" ], "cathode": [ "NN" ], "Walnut": [ "NNP", "NN" ], "exposes": [ "VBZ" ], "zealously": [ "RB" ], "slurries": [ "NNS" ], "intend": [ "VBP", "VB" ], "Udall": [ "NNP" ], "ACTH": [ "NNP" ], "salicylic": [ "JJ" ], "manipulator": [ "NN" ], "Symantec": [ "NNP" ], "palms": [ "NNS" ], "AlunJones": [ "NNP" ], "two-minute": [ "JJ" ], "Vinken": [ "NNP" ], "Pompey": [ "NNP" ], "Ion": [ "NNP" ], "Prizzi": [ "NNP" ], "bustlin": [ "NN" ], "elephant-like": [ "JJ" ], "fractures": [ "NNS", "VBZ" ], "Chilean": [ "JJ" ], "Kalmuk": [ "NNP" ], "FT-SE": [ "NNP" ], "carefulness": [ "NN" ], "sweet-natured": [ "JJ" ], "PLACE": [ "NNP" ], "heat-absorbing": [ "JJ" ], "fractured": [ "VBN", "JJ", "VBD" ], "bazaar": [ "NN" ], "Leonardo": [ "NNP" ], "Kalmus": [ "NNP" ], "B.B.C.": [ "NNP" ], "Krakowiak": [ "NNP" ], "Cavenee": [ "NNP" ], "user-inviting": [ "JJ" ], "Scapin": [ "NNP" ], "mugging": [ "NN" ], "Blaine": [ "NNP" ], "Chevron": [ "NNP", "NN" ], "non-resistants": [ "JJ" ], "D&B": [ "NNP", "VBP", "NN" ], "backup": [ "NN", "JJ" ], "Intergovernmental": [ "NNP" ], "Kapoor": [ "NNP" ], "Boogie": [ "NNP" ], "Amicam": [ "NNP" ], "Pavletich": [ "NNP" ], "shrinking": [ "VBG", "NN" ], "intervention": [ "NN" ], "Noctiluca": [ "NN" ], "discount-coupon": [ "NN" ], "Karshilama": [ "NNP" ], "Well-received": [ "JJ" ], "Rounding-off": [ "NN" ], "Yuppily": [ "RB" ], "Budzyn": [ "NNP" ], "Finnie": [ "NNP" ], "Ruschkowski": [ "NNP" ], "explosions": [ "NNS" ], "LOSS\\": [ "NN" ], "Acarbose": [ "NNP" ], "cost-push": [ "JJ" ], "shoestring": [ "NN" ], "pitcher": [ "NN" ], "Kennon": [ "NNP" ], "American-developed": [ "JJ" ], "Calderwood": [ "NNP" ], "Galveston-Port": [ "NNP" ], "shootout": [ "NN" ], "recouped": [ "VBD", "VBN" ], "omelet": [ "NN" ], "pervasively": [ "RB" ], "eighth-floor": [ "JJ" ], "Trouble": [ "NN" ], "wholes": [ "NNS" ], "curtail": [ "VB", "VBP" ], "illustrator": [ "NN" ], "embedded": [ "VBN", "JJ" ], "Ironweed": [ "NN" ], "Two-month": [ "JJ" ], "Survival": [ "NNP" ], "Marston": [ "NNP" ], "waltzing": [ "VBG" ], "Fitzwater": [ "NNP" ], "Adaptation": [ "NN" ], "realigned": [ "VBD", "JJ" ], "Moves": [ "NNS" ], "DEFECT": [ "VBP" ], "sturdiest": [ "JJS" ], "Jacques-Francois": [ "NNP" ], "BALKS": [ "VBZ" ], "rosarians": [ "NNS" ], "Veterans": [ "NNP", "NNPS", "NNS" ], "Idol": [ "NNP" ], "finishes": [ "VBZ", "NNS" ], "Howson-Algraphy": [ "NNP" ], "Niven": [ "NNP" ], "inactivation": [ "NN" ], "Finnegan": [ "NNP" ], "Herald-American": [ "NNP" ], "Purpose": [ "NNP", "NN" ], "Daberko": [ "NNP" ], "fools": [ "NNS" ], "poor": [ "JJ", "NN", "NNP" ], "Engine": [ "NNP", "NN" ], "diaries": [ "NNS" ], "unselfconsciousness": [ "NN" ], "endeavors": [ "NNS" ], "whistling": [ "VBG" ], "drive-through": [ "JJ" ], "vp": [ "NN" ], "vertigo": [ "NN" ], "SIMPLIFYING": [ "VBG" ], "Y.W.C.A.": [ "NNP" ], "Miron": [ "NNP" ], "titillating": [ "VBG" ], "insertions": [ "NNS" ], "Boissoneault": [ "NNP" ], "Comcast": [ "NNP" ], "DIRECTORS": [ "NNS" ], "cores": [ "NNS" ], "overseas": [ "JJ", "NN", "RB" ], "Magnolias": [ "NNS" ], "Intervoice": [ "NNP" ], "disaffiliation": [ "NN" ], "interspecies": [ "NNS" ], "ceases": [ "VBZ" ], "JWP": [ "NNP" ], "Unknown": [ "JJ" ], "HURRICANE": [ "NNP" ], "heavy-water": [ "NN" ], "ceased": [ "VBD", "VBN" ], "thoughtful": [ "JJ" ], "unblock": [ "VB" ], "Take": [ "VB", "NNP", "VBP" ], "Shultz": [ "NNP" ], "bulb": [ "NN" ], "pipsqueak": [ "NN" ], "religious": [ "JJ", "IN", "NN" ], "Kasler": [ "NNP" ], "osteoporosis": [ "NN" ], "Cieca": [ "NNP" ], "corps": [ "NN", "FW" ], "Staloff": [ "NNP" ], "Discos": [ "NNS" ], "computerizing": [ "VBG" ], "music-publishing": [ "JJ" ], "sight-seeing": [ "JJ", "NN" ], "volunteer": [ "NN", "VB", "JJR", "VBP" ], "twothirds": [ "NNS" ], "patently": [ "RB" ], "clean-air": [ "JJ", "NN" ], "Hancock": [ "NNP" ], "pseudoephedrine": [ "NN" ], "Status-roles": [ "NNS" ], "coloured": [ "JJ" ], "Celestial": [ "NNP" ], "Surging": [ "VBG" ], "wrangler": [ "NN" ], "Underwoods": [ "NNPS" ], "coupon-distribution": [ "JJ" ], "Terminiello": [ "NNP" ], "anarchical": [ "JJ" ], "Veiling": [ "VBG" ], "artfulness": [ "NN" ], "rationally": [ "RB" ], "reaffirming": [ "VBG" ], "startin": [ "VBG" ], "brucellosis": [ "NN" ], "ass": [ "NN" ], "lulls": [ "NNS", "VBZ" ], "nullity": [ "NN" ], "streets": [ "NNS" ], "GUN": [ "NNP" ], "less-conservative": [ "JJ" ], "coudn": [ "MD" ], "Watchmen": [ "NNP" ], "Youngberg": [ "NNP" ], "Gaetan": [ "NNP" ], "Robb": [ "NNP" ], "bass": [ "NN" ], "heavy-construction": [ "NN" ], "cues": [ "NNS" ], "raw-material": [ "NN", "JJ" ], "lurch": [ "NN", "VBP" ], "nonproliferation": [ "NN" ], "Stenhachs": [ "NNPS" ], "cued": [ "VBD" ], "Importers": [ "NNP" ], "Breda": [ "NNP" ], "scallops": [ "NNS" ], "stockyards": [ "NNS" ], "Chessman": [ "NNP" ], "longshoremen": [ "NNS" ], "Paramus": [ "NNP" ], "confict": [ "NN" ], "continuingly": [ "RB" ], "ragtime": [ "NN" ], "Latinovich": [ "NNP" ], "excess": [ "JJ", "NN" ], "marring": [ "VBG" ], "food-products": [ "NNS" ], "Fokine": [ "NNP" ], "Doll": [ "NNP" ], "cathartic": [ "JJ" ], "psalmist": [ "NN" ], "Dole": [ "NNP" ], "Bolstered": [ "VBN" ], "Krasnik": [ "NNP" ], "Kohnstamm-positive": [ "JJ", "NNP" ], "indirection": [ "NN" ], "Trusthouse": [ "NNP" ], "advertising": [ "NN", "VBG", "VBG|NN" ], "successors": [ "NNS" ], "Plateau": [ "NNP" ], "inspires": [ "VBZ" ], "Tingley": [ "NNP" ], "gun-carrying": [ "JJ" ], "Stateswest": [ "NNP" ], "Chicopee": [ "NNP" ], "S*": [ "NNP" ], "head-topper": [ "NN" ], "S.": [ "NNP" ], "A.S.": [ "NNP" ], "seventeenth": [ "JJ" ], "Climb": [ "VB" ], "S$": [ "$" ], "Commencing": [ "VBG" ], "Moet": [ "NNP", "JJS" ], "Butlers": [ "NNPS" ], "Intouch": [ "NNP" ], "Connor": [ "NNP" ], "Mono-unsaturated": [ "JJ" ], "Backyard": [ "NN" ], "oil-field": [ "NN", "JJ" ], "Struggle": [ "NNP", "VBP" ], "cannibalism": [ "NN" ], "Sheraton-Biltmore": [ "NNP" ], "Sy": [ "NNP" ], "Viewmaster": [ "NNP" ], "Sr": [ "NNP" ], "propellers": [ "NNS" ], "Sp": [ "NNP" ], "Arlt": [ "NNP" ], "Su": [ "NNP" ], "St": [ "NNP", "NN" ], "Banking": [ "NNP", "VBG", "JJ", "NN" ], "Si": [ "NNP" ], "sclerotic": [ "JJ" ], "So": [ "RB", "NNP", "CC", "IN", "UH" ], "pretense": [ "NN" ], "Se": [ "NNP" ], "coup-planning": [ "NN" ], "daminozide": [ "NN" ], "macho": [ "JJ", "NN" ], "game-management": [ "NN" ], "spandrels": [ "NNS" ], "SS": [ "NNP" ], "on-again-off-again": [ "JJ" ], "Blumberg": [ "NNP" ], "SP": [ "NNP" ], "SW": [ "NNP" ], "anti-airline": [ "NN" ], "SK": [ "NNP" ], "FELLOWSHIP": [ "NN" ], "SH": [ "NN", "NNP" ], "SO": [ "RB" ], "budgets": [ "NNS" ], "SC": [ "NNP" ], "SA": [ "NNP" ], "self-conscious": [ "JJ" ], "SE": [ "NNP" ], "SD": [ "NNP" ], "Bitten": [ "VBN" ], "IBJ": [ "NNP" ], "persists": [ "VBZ" ], "cubist": [ "JJ" ], "IBM": [ "NNP", "NN" ], "unconcealed": [ "VBN" ], "IBC": [ "NNP" ], "Finberg": [ "NNP" ], "black-draped": [ "JJ" ], "quartets": [ "NNS" ], "Innocent": [ "JJ" ], "Cellist": [ "NNP" ], "Signers": [ "NNS" ], "IBT": [ "NNP" ], "cubism": [ "NN" ], "overcharging": [ "VBG" ], "stymie": [ "VB" ], "surpassed": [ "VBN", "VBD" ], "dismembering": [ "VBG" ], "individualistic": [ "JJ" ], "Brahm": [ "NNP" ], "reject": [ "VB", "VBP" ], "surpasses": [ "VBZ" ], "Falb": [ "NNP" ], "Alcorn": [ "NNP" ], "Lower": [ "JJR", "NNP" ], "Microorganisms": [ "NNS" ], "desisted": [ "VBD" ], "purring": [ "VBG", "NN" ], "compulsory": [ "JJ" ], "Sumat": [ "NNP" ], "criticize": [ "VB", "VBP" ], "Schellke": [ "NNP" ], "Slote": [ "NNP" ], "embark": [ "VB", "VBP" ], "anytime": [ "RB" ], "roommates": [ "NNS" ], "chopsticks": [ "NNS" ], "Euthanasia": [ "NN" ], "Marathon": [ "NNP" ], "ghostbusters": [ "NNS" ], "world-affairs": [ "NNS" ], "groundup": [ "JJ" ], "networking": [ "NN", "VBG" ], "Cholet": [ "NNP" ], "Bedouins": [ "NNS" ], "Definite": [ "JJ" ], "charities": [ "NNS" ], "Southbrook": [ "NNP" ], "lovebirds": [ "NNS" ], "sarcolemmal": [ "JJ" ], "southpaw": [ "NN" ], "Atlas": [ "NNP", "JJ", "NN" ], "clarinet": [ "NN" ], "Confederacy": [ "NNP", "NN" ], "Property-tax": [ "JJ" ], "may...": [ ":" ], "Pountain": [ "NNP" ], "miter": [ "VB" ], "Temptation": [ "NN", "NNP" ], "Equibank": [ "NNP" ], "absence": [ "NN" ], "prowled": [ "VBD" ], "differed": [ "VBD", "VBN" ], "rabble": [ "NN" ], "Tupolev": [ "NNP" ], "boastings": [ "NNS" ], "misalignment": [ "NN" ], "evening": [ "NN", "VBG" ], "cable-television": [ "NN" ], "Intergroup": [ "NNP" ], "Hostess": [ "NNP" ], "slighter": [ "JJR" ], "musket": [ "NN" ], "Kwang": [ "NNP" ], "flatout": [ "NN" ], "Pre-Legislative": [ "NNP" ], "sexologist": [ "NN" ], "flashlight-type": [ "JJ" ], "fifth-largest": [ "JJ" ], "slighted": [ "JJ", "VBN" ], "Incurably": [ "RB" ], "inflecting": [ "VBG" ], "impressionists": [ "NNS" ], "liquefied": [ "VBN" ], "obligates": [ "VBZ" ], "freebies": [ "NNS" ], "Suez": [ "NNP" ], "bless": [ "VB" ], "Quaid": [ "NNP" ], "disdaining": [ "VBG" ], "Elbaum": [ "NNP" ], "McNaughton": [ "NNP" ], "blest": [ "VB", "VBN" ], "fairy": [ "JJ", "NN" ], "obligated": [ "VBN", "VBD", "JJ" ], "heavy": [ "JJ", "NN", "RB" ], "thrombi": [ "NNS" ], "transcribe": [ "VB", "VBP" ], "gathering-in": [ "NN" ], "Tax": [ "NNP", "NN", "VB" ], "Gentleman": [ "NN", "NNP" ], "Anat": [ "NNP" ], "ballistics": [ "NNS" ], "honest-to-Betsy": [ "RB" ], "Westridge": [ "NNP" ], "Fearon": [ "NNP" ], "four-element": [ "JJ" ], "heave": [ "NN" ], "anarchy": [ "NN" ], "processed-foods": [ "JJ" ], "Tad": [ "NNP" ], "Diethylstilbestrol": [ "NN" ], "jolly": [ "JJ" ], "Besher": [ "NNP" ], "shrivel": [ "VB" ], "reacquisition": [ "NN" ], "Serpentine": [ "NNP" ], "Town": [ "NNP", "NN" ], "Rayfield": [ "NNP" ], "Storyboard": [ "NNP" ], "earns": [ "VBZ" ], "Manjucri": [ "NNP" ], "toiling": [ "VBG", "NN" ], "Senese": [ "NNP" ], "Capitalincludes": [ "NNS" ], "hapless": [ "JJ" ], "Blend": [ "VB" ], "step-up": [ "NN" ], "Fantastic": [ "JJ" ], "broad-based": [ "JJ" ], "Sauvignon": [ "NNP" ], "Bros": [ "NNP", "NNPS" ], "Broe": [ "NNP" ], "Brod": [ "NNP" ], "Feniger": [ "NNP" ], "Supplee": [ "NNP" ], "CNBC": [ "NNP" ], "Samba": [ "NNP" ], "Adds": [ "VBZ", "NNP" ], "spitting": [ "VBG", "NN" ], "quasi-recitative": [ "JJ" ], "Tatler": [ "NNP" ], "Hawksworth": [ "NNP" ], "Adde": [ "NNP" ], "effortless": [ "JJ" ], "visions": [ "NNS", "VBZ" ], "equating": [ "VBG" ], "vote-begging": [ "NN" ], "obtainable": [ "JJ" ], "Grenville": [ "NNP" ], "DEAE-cellulose": [ "NNP", "NN" ], "announcements": [ "NNS" ], "teamsters": [ "NNS" ], "fiddle": [ "NN", "VB" ], "Dutil": [ "NNP" ], "Refuge": [ "NNP" ], "trapped": [ "VBN", "VBD", "JJ" ], "Schroll": [ "NNP" ], "BRADSTREET": [ "NNP" ], "trapper": [ "NN" ], "French-Italian": [ "JJ" ], "Initiating": [ "VBG" ], "assaulted": [ "VBD", "VBN" ], "skillfulness": [ "NN" ], "imperiled": [ "VBN", "JJ" ], "clean-fuels": [ "NNS" ], "south-eastern": [ "JJ" ], "Dreamboat": [ "NNP" ], "gnawed": [ "VBD" ], "hesitating": [ "VBG" ], "Mahoganny": [ "NNP" ], "breadbasket": [ "NN" ], "garrison": [ "NN", "VB" ], "Communities": [ "NNPS", "NNS" ], "mooed": [ "VBD" ], "Beretta": [ "NNP" ], "phobia": [ "NN" ], "readapting": [ "VBG" ], "event-driven": [ "JJ" ], "footnote": [ "NN" ], "tearfully": [ "RB" ], "Mizuno": [ "NNP" ], "heaviest": [ "JJS" ], "deflationary": [ "JJ" ], "committment": [ "NN" ], "Late": [ "RB", "JJ", "NNP" ], "ogled": [ "VBD", "VBN" ], "Window": [ "NN" ], "organs": [ "NNS" ], "boorish": [ "JJ" ], "adorns": [ "VBZ" ], "adrift": [ "RB" ], "Wetzler": [ "NNP" ], "Price": [ "NNP", "NN" ], "itemized": [ "VBN" ], "Graduates": [ "NNS" ], "after-dinner": [ "JJ" ], "Swinburne": [ "NNP" ], "Focusing": [ "VBG" ], "Cruze": [ "NNP" ], "caliber": [ "NN" ], "Lucinda": [ "NNP" ], "Lookit": [ "VB" ], "Chief": [ "NNP", "JJ", "NN" ], "money-back": [ "JJ" ], "Chien": [ "NNP", "FW" ], "Schweitzer": [ "NNP" ], "Polygram": [ "NNP" ], "Killips": [ "NNP" ], "ballyhoo": [ "NN" ], "once-in-a-lifetime": [ "JJ" ], "Usinor": [ "NNP" ], "arising": [ "VBG" ], "Viscerally": [ "RB" ], "Nanjing": [ "NNP" ], "divestiture": [ "NN" ], "Chartered": [ "NNP" ], "ansuh": [ "VB" ], "velocity": [ "NN" ], "rechargeable": [ "JJ" ], "physics": [ "NN", "NNS" ], "stalked": [ "VBD", "VBN", "JJ" ], "homefolk": [ "NN" ], "phenomenon": [ "NN" ], "hovered": [ "VBD", "VBN" ], "gas-tax": [ "NN" ], "Wheaties": [ "NNPS" ], "church-going": [ "JJ" ], "beatniks": [ "NNS" ], "Johannesburg": [ "NNP" ], "Benin": [ "NNP" ], "heavens": [ "NNS", "UH" ], "Venturi": [ "NNP" ], "ERISA": [ "NNP" ], "predilections": [ "NNS" ], "flattery": [ "NN" ], "Prednisone": [ "NN" ], "megabit": [ "NN" ], "Pittston": [ "NNP" ], "French": [ "JJ", "NNP", "NNS", "NNPS" ], "common-law-marriage": [ "NN" ], "Trustee": [ "NNP" ], "vomica": [ "NN" ], "ymg": [ "NN" ], "Office.": [ "NNP" ], "ten-minute": [ "JJ" ], "sanhedrin": [ "NN" ], "inner-ear": [ "JJ" ], "local-news": [ "NN" ], "Michelle": [ "NNP", "NN" ], "FITC": [ "NNP" ], "retorts": [ "NNS", "VBZ" ], "Uclaf": [ "NNP" ], "Greco": [ "NNP" ], "competing": [ "VBG", "JJ", "VBG|JJ" ], "boils": [ "VBZ" ], "Counselor": [ "NNP" ], "unburned": [ "JJ" ], "Oncogen": [ "NNP" ], "bone-loss": [ "NN" ], "Confucian": [ "NNP", "JJ" ], "employer-paid": [ "JJ" ], "hypo": [ "JJ" ], "hype": [ "NN" ], "doctrinaire": [ "JJ", "NN" ], "wriggled": [ "VBD" ], "Franck": [ "NNP" ], "howled": [ "VBD" ], "Paradox": [ "NNP" ], "Franco": [ "NNP" ], "drafted": [ "VBN", "VBD" ], "locale": [ "NN" ], "Bridgewater": [ "NNP" ], "Kipp": [ "NNP" ], "Laramie": [ "NNP" ], "France": [ "NNP" ], "drenching": [ "NN" ], "Asbury": [ "NNP" ], "Gibbs": [ "NNP" ], "Mama": [ "NNP", "NN" ], "portrait": [ "NN" ], "Poised": [ "NNP" ], "Goldenberg": [ "NNP" ], "Gibby": [ "NNP" ], "payroll-paring": [ "JJ" ], "locals": [ "NNS" ], "Brash": [ "NNP" ], "oldies": [ "NNS" ], "loud-voiced": [ "JJ" ], "tolls": [ "NNS" ], "falsify": [ "VB" ], "Realty": [ "NNP" ], "Tsuruo": [ "NNP" ], "Brass": [ "NNP" ], "FREED": [ "VBD" ], "five-row": [ "JJ" ], "Rodolfo": [ "NNP" ], "Kercheval": [ "NNP" ], "Smelov": [ "NNP" ], "Rippe": [ "NNP" ], "disintegrative": [ "JJ" ], "Redundant": [ "NNP" ], "Elise": [ "NNP" ], "arrears": [ "NNS" ], "abruptly": [ "RB" ], "hoisted": [ "VBN", "VBD" ], "collaborators": [ "NNS" ], "Vadas": [ "NNP" ], "Vadar": [ "NNP" ], "grass-covered": [ "JJ" ], "memorized": [ "VBN", "VBD" ], "higher-cost": [ "JJ", "JJR" ], "drug-store": [ "NN" ], "minorities": [ "NNS" ], "TOURISM": [ "NN" ], "mausoleum": [ "NN" ], "Admirably": [ "RB" ], "SHEDDING": [ "VBG" ], "Mailloux": [ "NNP" ], "Compaq": [ "NNP", "VB" ], "Koerner": [ "NNP" ], "Bader": [ "NNP" ], "Rothshchild": [ "NNP" ], "proton": [ "NN" ], "non-exempt": [ "JJ" ], "Crack": [ "NN" ], "Sullam": [ "NNP" ], "Lookout": [ "NNP" ], "Bracknell": [ "NNP" ], "three-building": [ "JJ" ], "BRITANNICA": [ "NNP" ], "Protection": [ "NNP", "NN" ], "Runiewicz": [ "NNP" ], "Bogdan": [ "NNP" ], "Gott": [ "FW" ], "ganglion": [ "NN" ], "Lenders": [ "NNS", "NNP" ], "Harbison": [ "NNP" ], "enroll": [ "VB", "VBP" ], "N": [ "NN", "NNP" ], "Gilt": [ "NNP" ], "Switch": [ "NN" ], "Donna": [ "NNP" ], "confusions": [ "NNS" ], "Hassan": [ "NNP" ], "F-major": [ "NN" ], "furrow": [ "NN" ], "floating-point": [ "JJ", "NN" ], "substantiates": [ "VBZ" ], "Supplement": [ "NNP", "NN" ], "accidently": [ "RB" ], "Asmara": [ "NNP" ], "LifeSavers": [ "NNPS", "NNP" ], "Qatar": [ "NNP" ], "procedurally": [ "RB" ], "embroidered": [ "VBN" ], "Pulaski": [ "NNP" ], "high-rolling": [ "JJ" ], "industrial-product": [ "NN" ], "Delving": [ "VBG" ], "Bonwit": [ "NNP" ], "Eyes": [ "NNP", "NNPS", "NNS" ], "grant": [ "NN", "VBP", "VB" ], "Luke": [ "NNP" ], "Lafite-Rothschild": [ "NNP" ], "Masks": [ "VBZ" ], "makeshift": [ "JJ", "NN" ], "paid-up": [ "JJ" ], "vulnerable": [ "JJ" ], "grand": [ "JJ" ], "well-hit": [ "JJ" ], "throughput": [ "NN" ], "Lonski": [ "NNP" ], "composition": [ "NN" ], "pleadings": [ "NNS" ], "Faith": [ "NNP", "NN" ], "classmates": [ "NNS" ], "fatty": [ "JJ" ], "indispensability": [ "NN" ], "Seated": [ "VBN" ], "soberly": [ "RB" ], "Bleus": [ "NNP" ], "calcification": [ "NN" ], "Euro-beach": [ "NN", "JJ" ], "Archie": [ "NNP" ], "calibrates": [ "VBZ" ], "sniggered": [ "VBD" ], "Rhenish": [ "JJ" ], "Lupel": [ "NNP" ], "MX": [ "NNP" ], "eighty-nine": [ "NN" ], "synopsis": [ "NN" ], "calibrated": [ "VBN", "VBD" ], "share-trading": [ "NN" ], "influx": [ "NN" ], "mobs": [ "NNS" ], "Schwinn": [ "NNP" ], "POLICY": [ "NNP" ], "Burleson": [ "NNP" ], "settlements": [ "NNS" ], "Grenadian": [ "JJ" ], "reviewed": [ "VBN", "VBD" ], "devastatingly": [ "RB" ], "public-stock": [ "NN" ], "Falconbridge": [ "NNP" ], "Reconstruction": [ "NNP" ], "reviewer": [ "NN" ], "Durables": [ "NNPS" ], "PIK": [ "NNP" ], "informal": [ "JJ" ], "PIC": [ "NNP" ], "shortcut": [ "NN" ], "representational": [ "JJ", "NN" ], "cherries": [ "NNS" ], "questioned": [ "VBD", "VBN" ], "Berkeley": [ "NNP", "NN" ], "PIR": [ "NNP" ], "Spouse": [ "NN" ], "double-hamburger": [ "NN" ], "reemphasizes": [ "VBZ" ], "nymphomaniacs": [ "NNS" ], "capacities": [ "NNS" ], "cruise-ship": [ "NN", "JJ" ], "payment...": [ ":" ], "Antigua": [ "NNP" ], "dearly": [ "RB" ], "tax-accounting": [ "NN" ], "preparatory": [ "JJ" ], "pre-sentencing": [ "JJ" ], "ponds": [ "NNS" ], "Kathie": [ "NNP" ], "maltreatment": [ "NN" ], "helter-skelter": [ "JJ" ], "Systemic": [ "JJ" ], "Personages": [ "NNS" ], "softness": [ "NN" ], "LABORATORIES": [ "NNP" ], "Crip": [ "NNP" ], "terminology": [ "NN" ], "Cris": [ "NNP" ], "F-16s": [ "NNPS" ], "sketch": [ "NN", "VB" ], "Push-ups": [ "NNS" ], "Dancing": [ "NN" ], "Pattern": [ "NN" ], "still-healthy": [ "JJ" ], "Myself": [ "NNP" ], "yolk": [ "NN" ], "lips": [ "NNS" ], "towards": [ "IN" ], "plumbers": [ "NNS" ], "Laos": [ "NNP" ], "callousness": [ "NN" ], "Futures-related": [ "JJ" ], "Manifatture": [ "NNP" ], "MorningStar": [ "NNP" ], "dilapidated": [ "JJ", "VBN" ], "manufacturing-sector": [ "NN" ], "Preparations": [ "NNP", "NNS" ], "Aquacutie": [ "NNP" ], "competitions": [ "NNS" ], "intramuscularly": [ "RB" ], "Davidson": [ "NNP" ], "Sainted": [ "NNP" ], "Southport": [ "NNP" ], "Protestant": [ "NNP", "JJ", "NN" ], "Parliamentarians": [ "NNP" ], "benefactor": [ "NN" ], "undergone": [ "VBN" ], "Biologics": [ "NNP" ], "quota": [ "NN" ], "multivalent": [ "JJ" ], "Biologico": [ "NNP" ], "assists": [ "VBZ", "NNS" ], "viewpoints": [ "NNS" ], "infusion-therapy": [ "JJ" ], "repressions": [ "NNS" ], "Strategies": [ "NNS", "NNP" ], "Swallow": [ "NNP" ], "offside": [ "NN" ], "real-estate-investment": [ "NN" ], "BUYERS": [ "NNS" ], "Taylor": [ "NNP", "NN" ], "anti-Sony": [ "JJ" ], "lyophilized": [ "VBN" ], "mentalities": [ "NNS" ], "Scam": [ "NN" ], "silence": [ "NN", "VB" ], "shavers": [ "NNS" ], "Thi": [ "NNP" ], "not-so-new": [ "JJ" ], "unimpaired": [ "JJ" ], "BATTLE": [ "NN" ], "presupposes": [ "VBZ" ], "Hennessey": [ "NNP" ], "reworked": [ "VBD", "VBN" ], "Evangelicalism": [ "NNP" ], "Norman": [ "NNP" ], "HISPANIC": [ "JJ" ], "placing": [ "VBG", "NN" ], "Kitty": [ "NNP", "NN" ], "visas": [ "NNS" ], "Koch": [ "NNP" ], "unlashed": [ "VBD" ], "Benackova": [ "NNP" ], "Kitti": [ "NNP" ], "opposed": [ "VBN", "JJ", "VBD" ], "uncomplaining": [ "JJ" ], "withholding": [ "NN", "VBG" ], "olestra": [ "NN" ], "Secom": [ "NNP" ], "healthful": [ "JJ" ], "Perpetual": [ "JJ" ], "Dakotas": [ "NNPS" ], "tragically": [ "RB" ], "Howe": [ "NNP" ], "investment-banking": [ "NN", "JJ" ], "liberalizing": [ "VBG" ], "Howl": [ "NNP" ], "livability": [ "NN" ], "Rafsanjani": [ "NNP" ], "viciously": [ "RB" ], "limpid": [ "JJ" ], "Okayama": [ "NNP" ], "purloined": [ "VBN" ], "chomp": [ "NN", "VBP" ], "familar": [ "JJ" ], "Newspeak": [ "NNP" ], "graham-flour-based": [ "JJ" ], "MacroChem": [ "NNP" ], "munis": [ "NNS" ], "On-to-Spokane": [ "NNP" ], "Marella": [ "NNP" ], "similar": [ "JJ" ], "CBS-K": [ "NNP" ], "hesitantly": [ "RB" ], "ordered": [ "VBD", "VBN", "JJ" ], "Lauder": [ "NNP" ], "metalsmiths": [ "NNS" ], "interventions": [ "NNS" ], "arm-levitation": [ "NN" ], "criminal-abortion": [ "JJ" ], "Edward": [ "NNP" ], "buckle-on": [ "JJ" ], "consoled": [ "VBD", "VBN" ], "aeronautical": [ "JJ" ], "dashed": [ "VBN", "JJ", "VBD" ], "fears": [ "NNS", "VBZ" ], "application": [ "NN" ], "Wash.": [ "NNP" ], "department": [ "NN" ], "aprons": [ "NNS" ], "feare": [ "NN" ], "dashes": [ "NNS", "VBZ" ], "Benninger": [ "NNP" ], "smiles": [ "NNS", "VBZ" ], "Exterminatin": [ "VBG" ], "securitiess": [ "NN" ], "Stanford": [ "NNP", "NN" ], "Sentry": [ "NNP" ], "Cott": [ "NNP" ], "Sizwe": [ "NNP" ], "hot-slough": [ "JJ" ], "assayed": [ "VBN" ], "Sentra": [ "NNP" ], "afterglow": [ "NN" ], "graphically": [ "RB" ], "smiled": [ "VBD", "VBN" ], "banalization": [ "NN" ], "Dauchy": [ "NNP" ], "approving": [ "VBG" ], "Roundtable": [ "NNP" ], "aesthetically": [ "RB" ], "Baucus": [ "NNP" ], "correlated": [ "JJ", "VBD", "VBN" ], "syntactical": [ "JJ" ], "resolving": [ "VBG" ], "Perches": [ "NNP" ], "Corrette": [ "NNP" ], "England-born": [ "NNP|VBN" ], "bribe": [ "NN", "VB" ], "Perched": [ "VBN" ], "Soviets": [ "NNPS", "NNP", "NNS" ], "infringing": [ "VBG" ], "Apparently": [ "RB" ], "Levinger": [ "NNP" ], "current-carrying": [ "JJ" ], "Bengal": [ "NNP" ], "No-Smoking": [ "NNP" ], "lob-scuse": [ "NN" ], "FALL": [ "NN" ], "Mortality": [ "NN" ], "compact": [ "JJ", "NN", "NN|JJ" ], "GABLE": [ "NNP" ], "Parent": [ "NNP", "NN" ], "insistent": [ "JJ" ], "Nod": [ "NNP" ], "Nob": [ "NNP" ], "uninformative": [ "JJ" ], "Father-God": [ "NNP" ], "anti-communist": [ "JJ" ], "Not": [ "RB", "NNP", "DT" ], "Nov": [ "NNP" ], "Now": [ "RB", "NNP" ], "Nor": [ "CC" ], "unabridged": [ "JJ" ], "rebounding": [ "VBG" ], "Celebrity": [ "NNP", "NN" ], "assuming": [ "VBG" ], "acreage": [ "NN" ], "Donut": [ "NNP" ], "Elbow": [ "NN", "NNP" ], "yourselves": [ "PRP" ], "Curb": [ "VB" ], "No.": [ "NN", "JJ", "VB", "NNP" ], "Organification": [ "NN" ], "meticulously": [ "RB" ], "browny-haired": [ "JJ" ], "booze": [ "NN" ], "Mogul": [ "NNP" ], "Yiddish": [ "NNP", "JJ" ], "Antibody": [ "NN" ], "sedentary": [ "JJ" ], "enforce": [ "VB", "VBP" ], "Antietam": [ "NNP" ], "FHLBB": [ "NNP" ], "overfunded": [ "VBN" ], "jump": [ "NN", "VBP", "JJ", "VB" ], "notwithstanding": [ "IN", "RB" ], "waitress": [ "NN" ], "Gris": [ "NNP" ], "Ramseier": [ "NNP" ], "Milanoff": [ "NNP" ], "Fahey": [ "NNP" ], "anti-party": [ "JJ" ], "Kutney": [ "NNP" ], "Isacsson": [ "NNP" ], "conning": [ "VBG" ], "Grid": [ "NNP" ], "Survived": [ "VBD" ], "Hibler": [ "NNP" ], "houseful": [ "NN" ], "upsetting": [ "VBG", "JJ", "NN" ], "McNealy": [ "NNP" ], "fifteenth": [ "JJ" ], "Hershel": [ "NNP" ], "Conducted": [ "VBN" ], "just-rejuvenated": [ "JJ" ], "Skipjack": [ "NNP" ], "Palace": [ "NNP", "NN" ], "Tequila": [ "NNP" ], "Back": [ "RB", "NN", "RP", "NNP", "VBP", "JJ" ], "Bach": [ "NNP", "NN" ], "ever-anxious": [ "JJ" ], "avaricious": [ "JJ" ], "automotive-product": [ "NN" ], "Kermit": [ "NNP" ], "Organizational": [ "JJ" ], "strong-arm": [ "JJ" ], "patents": [ "NNS" ], "Temperatures": [ "NNS" ], "hilltops": [ "NNS" ], "Oilers": [ "NNP", "NNPS" ], "foresee": [ "VBP", "VB" ], "Krishnamurthy": [ "NNP" ], "adroitness": [ "NN" ], "Assistance": [ "NNP", "NN" ], "manage": [ "VB", "VBP" ], "Pankyo": [ "NNP" ], "all-white": [ "JJ" ], "Loyalist": [ "JJ" ], "Rowland-Morin": [ "NNP" ], "Lanza": [ "NNP" ], "biophysical": [ "JJ" ], "semi-sterile": [ "JJ" ], "Rich-affiliated": [ "JJ" ], "Discontinue": [ "VB" ], "trivializing": [ "VBG" ], "camera": [ "NN" ], "Averae": [ "NNP" ], "Png": [ "NNP" ], "Markus": [ "NNP" ], "salvages": [ "VBZ" ], "Kumagai-Gumi": [ "NNP" ], "Oakar": [ "NNP" ], "Basking": [ "NNP" ], "fifteenth-century": [ "JJ" ], "salvaged": [ "VBN" ], "boards": [ "NNS", "VBZ" ], "parachute": [ "NN", "VB" ], "techno-managerial": [ "JJ" ], "laendler": [ "JJ" ], "meek": [ "JJ" ], "computer-products": [ "NNS", "JJ" ], "averaged": [ "VBD", "VBN" ], "subrogation": [ "NN" ], "test-prep": [ "JJ" ], "longhaul": [ "NN" ], "Generation": [ "NNP", "NN" ], "VIII": [ "NNP" ], "servants": [ "NNS" ], "Caravan": [ "NNP" ], "meet": [ "VB", "VBP", "NN" ], "averages": [ "NNS", "VBZ" ], "certainty": [ "NN" ], "Israeli": [ "JJ", "NNP" ], "links": [ "NNS", "VBZ", "NN" ], "money-losing": [ "JJ" ], "radioing": [ "VBG" ], "chinless": [ "JJ" ], "week-end": [ "NN" ], "synchronism": [ "NN" ], "Politics-ridden": [ "JJ" ], "pulling": [ "VBG" ], "intuitions": [ "NNS" ], "peelback": [ "JJ" ], "cave-men": [ "NNS" ], "Wakabayashi": [ "NNP" ], "embodiment": [ "NN" ], "Deeper": [ "JJR" ], "cratering": [ "VBG" ], "well-served": [ "JJ" ], "waterproof": [ "NN" ], "Beast": [ "NNP" ], "Passaic-Clifton": [ "NNP" ], "sentiments": [ "NNS" ], "Reservation": [ "NNP", "NN" ], "instinctively": [ "RB" ], "listens": [ "VBZ" ], "MiniScribe": [ "NNP" ], "filament": [ "NN" ], "embellished": [ "VBN" ], "Baubles": [ "NNPS" ], "ultrasonically": [ "RB" ], "outdid": [ "VBD" ], "Heilbron": [ "NNP" ], "Mrs": [ "NNP" ], "Roman": [ "NNP", "JJ", "NNPS" ], "bibliographical": [ "JJ" ], "Allou": [ "NNP" ], "Allow": [ "VB" ], "Alloy": [ "NN" ], "Wheeling": [ "NNP" ], "Makin": [ "NNP", "VBG" ], "scoop": [ "NN", "VB" ], "Guard": [ "NNP", "NN", "VB" ], "encyclopedia": [ "NN" ], "desensitized": [ "VBN" ], "encyclopedic": [ "JJ" ], "sambuca": [ "NN" ], "estate-freeze": [ "JJ" ], "Skelly": [ "NNP" ], "Baltimorean": [ "NNP" ], "Bapepam": [ "NNP" ], "employee-health": [ "NN" ], "carnivores": [ "NNS" ], "interceptor": [ "NN" ], "Favre": [ "NNP" ], "box-office": [ "NN" ], "RAF": [ "NNP" ], "Multiple": [ "NNP", "JJ" ], "equanimity": [ "NN" ], "EASTERN": [ "NNP" ], "Telegraphers": [ "NNS", "NNPS" ], "subroutines": [ "NNS" ], "Baxley": [ "NNP" ], "gymnasts": [ "NNS" ], "Multiply": [ "VB" ], "RAX": [ "NNP" ], "overflights": [ "NNS" ], "popularly": [ "RB" ], "wells": [ "NNS" ], "Loser": [ "JJ" ], "Loses": [ "VBZ" ], "J.E.": [ "NNP" ], "Lewco": [ "NNP" ], "sinfulness": [ "NN" ], "Losec": [ "NNP" ], "unnaturalness": [ "NN" ], "Mendelsohn": [ "NNP" ], "university": [ "NN" ], "Montpelier": [ "NNP" ], "Bellman": [ "NNP" ], "Telemunchen": [ "NNP" ], "tax-based": [ "JJ" ], "slide": [ "NN", "VBP", "VB" ], "firings": [ "NNS" ], "Pesce": [ "NNP" ], "drug-delivery": [ "JJ" ], "still-ravaged": [ "JJ" ], "Dream-Sweetmite": [ "NNP" ], "six-minute": [ "JJ" ], "Statistics": [ "NNP", "NNS", "NNPS" ], "attachments": [ "NNS" ], "Borges": [ "NNP" ], "Bertrand": [ "NNP" ], "witha": [ "NN" ], "OCC": [ "NNP" ], "constitute": [ "VBP", "VB" ], "buccolic": [ "JJ" ], "psychopomp": [ "NN" ], "Oils": [ "NNS" ], "OCR": [ "NNP" ], "special": [ "JJ", "NN" ], "littered": [ "VBN", "VBD" ], "special-projects": [ "JJ" ], "Parioli": [ "NNP" ], "vestibule": [ "NN" ], "Fermate": [ "NNP" ], "obsessive": [ "JJ", "NN" ], "Anderlini": [ "NNP" ], "Crosbie": [ "NNP" ], "hopscotch": [ "NN" ], "full-season": [ "JJ" ], "Gromov": [ "NNP" ], "darkly": [ "RB" ], "non-Cocom": [ "JJ" ], "Daiwa": [ "NNP", "NN" ], "Relentlessly": [ "RB" ], "improvisational": [ "JJ" ], "Sentor": [ "NNP" ], "Meurons": [ "NNS" ], "delegated": [ "VBN" ], "tulle": [ "NN" ], "Drawing": [ "VBG", "NNP", "NN" ], "resumed": [ "VBD", "VBN" ], "Bombay": [ "NNP", "NN" ], "Cell-free": [ "JJ" ], "Owen": [ "NNP" ], "near-recession": [ "NN" ], "timer": [ "NN" ], "times": [ "NNS", "VBZ", "CC", "RB" ], "Telxon": [ "NNP" ], "Boesky-greed-is-good": [ "JJ" ], "isotropic": [ "JJ" ], "cash-hungry": [ "JJ" ], "resumes": [ "VBZ", "NNS" ], "timed": [ "VBN", "VBD", "JJ" ], "Lustgarten": [ "NNP" ], "reassessment": [ "NN" ], "Lanier": [ "NNP" ], "Iaciofano": [ "NNP" ], "Merry-go-round": [ "NNP" ], "confuse": [ "VB", "VBP" ], "cramp": [ "NN" ], "unsupported": [ "JJ" ], "French-Canadians": [ "NNPS" ], "bitch": [ "NN", "VB" ], "man-in-the-moon": [ "JJ" ], "Pioneering": [ "NNP" ], "Shann": [ "NNP" ], "Newtonian": [ "JJ" ], "Contracts": [ "NNS", "NNPS" ], "Fran": [ "NNP" ], "Tshombe": [ "NNP" ], "wrapper": [ "NN" ], "Dunker": [ "NNP" ], "Pilko": [ "NNP" ], "Dunkel": [ "NNP" ], "minisupercomputers": [ "NNS" ], "goings-on": [ "NNS" ], "Weill\\/Bertolt": [ "NNP" ], "hard-nosed": [ "JJ" ], "Fray": [ "NN" ], "land-disposal": [ "NN" ], "weepers": [ "NNS" ], "Volney": [ "NNP" ], "crackle": [ "NN", "VBP" ], "innovate": [ "VB" ], "surfing": [ "NN" ], "secco": [ "NN", "FW" ], "objectification": [ "NN" ], "newlywed": [ "NN" ], "RESEARCHERS": [ "NNS" ], "Geary": [ "NNP" ], "catered": [ "VBD", "JJ" ], "bloodiest": [ "JJS" ], "bloat": [ "NN" ], "conscious": [ "JJ", "NN" ], "Malcom": [ "NNP" ], "sidetracked": [ "VBD" ], "Macmillan": [ "NNP" ], "caterer": [ "NN" ], "insignificance": [ "NN" ], "Asti": [ "NNP" ], "enforced": [ "VBN", "VBD", "JJ" ], "Asta": [ "NNP" ], "Flying": [ "NNP", "VBG" ], "enforcer": [ "NN" ], "enforces": [ "VBZ" ], "Interview": [ "NNP", "VB" ], "EVEREX": [ "NNP" ], "metaphysics": [ "NNS", "NN" ], "Falstaff": [ "NNP" ], "Administrator": [ "NNP" ], "Solemnly": [ "RB" ], "Parcel": [ "NNP" ], "rosier": [ "JJR", "RBR" ], "thunders": [ "VBZ" ], "Bowery": [ "NNP" ], "pushups": [ "NNS" ], "battles": [ "NNS", "VBZ" ], "Schuman": [ "NNP" ], "grounding": [ "VBG", "NN" ], "battled": [ "VBD", "VBN" ], "Nokomis": [ "NNP" ], "Morgenthau": [ "NNP" ], "mountaintop": [ "NN" ], "polka-dotted": [ "JJ" ], "blades": [ "NNS" ], "venereal": [ "JJ" ], "swollen": [ "JJ", "VBN" ], "acupuncturist": [ "NN" ], "regi": [ "FW" ], "development-aid": [ "NN" ], "Geographic": [ "NNP", "JJ" ], "Countin": [ "VBG" ], "quick-kill": [ "JJ" ], "Rescue": [ "NNP", "NN" ], "Exceed": [ "VBD" ], "free-marketers": [ "NNS" ], "subtracted": [ "VBN", "VBD" ], "Keiyo": [ "NNP" ], "Mold": [ "NN" ], "repeated": [ "VBN", "VBN|JJ", "VBD", "JJ" ], "Fellow": [ "NN", "JJ", "NNP" ], "Rusting": [ "VBG" ], "Lavallade": [ "NNP" ], "skunk": [ "NN" ], "stationing": [ "VBG" ], "Lehn": [ "NNP" ], "sisters-in-law": [ "NNS" ], "Anthea": [ "NNP" ], "loadin": [ "VBG" ], "seclude": [ "VB" ], "Anthem": [ "NNP" ], "Belzec": [ "NNP" ], "halting": [ "VBG", "JJ" ], "Non-residential": [ "JJ" ], "beatific": [ "JJ" ], "telling": [ "VBG", "JJ", "NN" ], "homeshopping": [ "NN" ], "Holgerson": [ "NNP" ], "Garvier": [ "NNP" ], "unfinished": [ "JJ" ], "sheriff": [ "NN" ], "nitrous": [ "JJ" ], "Waterways": [ "NNS" ], "brighten": [ "VB" ], "Pro-Choice": [ "JJ" ], "won": [ "VBD", "NN", "NNS", "VBN" ], "Newtown": [ "NNP" ], "cameos": [ "NNS" ], "inherited": [ "VBN", "VBD", "JJ" ], "embody": [ "VBP" ], "seasonality": [ "NN" ], "bottom-of-the-barrel": [ "JJ" ], "Lumia": [ "NNP" ], "kinked": [ "JJ" ], "Marquis": [ "NNP" ], "indentations": [ "NNS" ], "alabaster": [ "NN", "JJR" ], "Holtzman": [ "NNP" ], "maritime": [ "JJ" ], "vehicles": [ "NNS" ], "Rosner": [ "NNP" ], "scintillating": [ "JJ" ], "siphons": [ "NNS" ], "Guizot": [ "NNP" ], "Fitness": [ "NNP" ], "post-Deng": [ "JJ" ], "Savelyeva": [ "NNP" ], "dwellings": [ "NNS" ], "Rezsoe": [ "NNP" ], "professors": [ "NNS" ], "Forget": [ "VB", "NNP" ], "tobacco": [ "NN" ], "CANADIAN": [ "JJ" ], "imperious": [ "JJ" ], "French-speaking": [ "JJ" ], "yearn": [ "VB", "VBP", "NN" ], "coaxed": [ "VBN", "VBD" ], "Abbe-Scotch": [ "NNP" ], "Darlington": [ "NNP" ], "Austrian": [ "JJ", "NNP" ], "Internatonal": [ "NNP" ], "stock-repurchase": [ "JJ" ], "Senk": [ "NNP" ], "Rainy": [ "NNP" ], "multiplying": [ "VBG" ], "Investing": [ "VBG", "NN", "NNP" ], "Arland": [ "NNP" ], "pro-repeal": [ "JJ" ], "canine": [ "JJ", "NN" ], "Stolzenbach": [ "NNP" ], "hotel\\/entertainment": [ "NN" ], "Cadbury-Schweppes": [ "NNP" ], "rifts": [ "NNS" ], "Mariners": [ "NNPS" ], "intercorporate": [ "JJ" ], "Raine": [ "NNP" ], "conductivity": [ "NN" ], "Nuttle": [ "NNP" ], "washable": [ "JJ" ], "double-entendre": [ "NN" ], "N.H.": [ "NNP" ], "illusory": [ "JJ" ], "southward": [ "RB", "JJ" ], "Normura": [ "NNP" ], "dialectically": [ "RB" ], "Liptak": [ "NNP" ], "McIntyre": [ "NNP" ], "diethylaminoethyl": [ "NN" ], "Sen.": [ "NNP" ], "re-oriented": [ "VBN" ], "keg": [ "NN" ], "hurrying": [ "VBG", "JJ" ], "ovals": [ "NNS" ], "indiscriminate": [ "JJ" ], "Hooray": [ "UH" ], "kicking": [ "VBG", "NN" ], "Projecting": [ "VBG" ], "Benanav": [ "NNP" ], "key": [ "JJ", "NN", "VB" ], "reprobating": [ "VBG" ], "flying-mount": [ "NN" ], "Muscovite": [ "NNP" ], "D-night": [ "NN" ], "questionaire": [ "NN" ], "limits": [ "NNS", "VBP", "VBZ" ], "writhed": [ "VBD" ], "outrank": [ "VBP" ], "historichomes": [ "NNS" ], "computer-distributed": [ "JJ" ], "one-size-fits-all": [ "JJ" ], "strains": [ "NNS" ], "heavenward": [ "JJ" ], "Loftus": [ "NNP" ], "red-flag": [ "VB" ], "self-assertion": [ "NN" ], "diplomats": [ "NNS" ], "Integraph": [ "NNP" ], "paranormal": [ "JJ" ], "presaging": [ "VBG" ], "overarming": [ "VBG" ], "accomplishing": [ "VBG" ], "TransTechnology": [ "NNP" ], "ANTHEM": [ "NNP" ], "unaffordable": [ "JJ" ], "aircraft-electronics": [ "NN" ], "glommed": [ "VBD" ], "immense": [ "JJ", "NN" ], "Bolivian": [ "JJ" ], "Spook": [ "VBP" ], "troopers": [ "NNS" ], "controlled": [ "VBN", "JJ", "VBD" ], "retrospective": [ "NN", "JJ" ], "Steinbach": [ "NNP" ], "harborside": [ "NN" ], "replenishment": [ "NN" ], "controller": [ "NN" ], "abortions": [ "NNS" ], "G.N.": [ "NNP" ], "unamusing": [ "JJ" ], "Masnadieri": [ "NNP" ], "Falwell": [ "NNP" ], "Consequently": [ "RB" ], "Hanao": [ "NNP" ], "debtor": [ "NN", "JJ" ], "Gardening": [ "NNP" ], "monohull": [ "NN" ], "energy-industry": [ "NN" ], "Sture": [ "NNP" ], "Atlantans": [ "NNPS" ], "Angotti": [ "NNP" ], "dynamism": [ "NN" ], "Federal-Tiger": [ "NNP" ], "Kneeling": [ "VBG" ], "piloting": [ "NN", "VBG" ], "Stockdale": [ "NNP" ], "comets": [ "NNS" ], "margin-calls": [ "NNS" ], "examines": [ "VBZ" ], "examiner": [ "NN" ], "modestly": [ "RB" ], "Baccarat": [ "NNP" ], "prestidigitation": [ "NN" ], "surface": [ "NN", "VB", "VBP" ], "Fraas": [ "NNP" ], "examined": [ "VBD", "VBN" ], "Pretty": [ "RB", "JJ", "NNP" ], "cometh": [ "VBZ" ], "day-after-day": [ "JJ" ], "Songbag": [ "NNP" ], "bazaars": [ "NNS" ], "school-based": [ "JJ" ], "Skilton": [ "NNP" ], "Seoul-Moscow": [ "NNP" ], "computer-aided": [ "JJ" ], "Bangkok": [ "NNP", "NN" ], "harmonies": [ "NNS" ], "over-all": [ "JJ" ], "northwest": [ "RB", "NN", "JJS", "JJ" ], "Arabist": [ "JJ" ], "Syse": [ "NNP" ], "glob-flakes": [ "NN" ], "Mockler": [ "NNP" ], "foreign-made": [ "JJ" ], "Types": [ "NNS" ], "dirhams": [ "NNS" ], "Torme": [ "NNP" ], "Buzzy": [ "NNP" ], "anti-viral": [ "JJ" ], "proscribe": [ "VBP" ], "Curie": [ "NNP" ], "stumped": [ "VBN" ], "Curia": [ "NNP" ], "Hallelujah": [ "NNP", "NN" ], "refashion": [ "NN", "VB" ], "steals": [ "VBZ" ], "rift": [ "NN" ], "RB&H": [ "NNP" ], "Macaulay": [ "NNP" ], "EBPI": [ "NNP" ], "Evelyn": [ "NNP" ], "Mayflower": [ "NNP" ], "role-experiment": [ "NN" ], "Tide": [ "NNP", "NN" ], "insurmountable": [ "JJ" ], "Experiments": [ "NNS" ], "furriers": [ "NNS" ], "coronaries": [ "NNS" ], "headcount": [ "NN" ], "Exton": [ "NNP" ], "spy-chaser": [ "NN" ], "By-passing": [ "VBG" ], "increasingly": [ "RB" ], "spotchecks": [ "NNS" ], "lunation": [ "NN" ], "liked": [ "VBD", "VBN" ], "Disappointments": [ "NNS" ], "distant": [ "JJ" ], "Atwell": [ "NNP" ], "VATICAN": [ "NNP" ], "dais": [ "NN" ], "Gaming": [ "NNP", "NN" ], "Bellevue": [ "NNP" ], "community-service": [ "NN" ], "O.K.": [ "UH", "NNP" ], "Spadafora": [ "NNP" ], "Zane": [ "NNP" ], "emblems": [ "NNS" ], "restaurateur": [ "NN" ], "Dorsey": [ "NNP" ], "Dorset": [ "NNP" ], "indignation": [ "NN" ], "precedents": [ "NNS" ], "disappearance": [ "NN" ], "propelled": [ "VBN", "VBD" ], "Herrmann": [ "NNP" ], "Zambon": [ "NNP" ], "propeller": [ "NN" ], "Amerman": [ "NNP" ], "intersection": [ "NN" ], "Total-Cie": [ "NNP" ], "Aug.": [ "NNP" ], "Manuscript": [ "NNP" ], "skips": [ "VBZ" ], "Merely": [ "RB" ], "Drawbacks": [ "NNS" ], "unthaw": [ "VB" ], "payments": [ "NNS" ], "conscripts": [ "NNS" ], "rote": [ "NN", "JJ" ], "climbers": [ "NNS" ], "revisits": [ "VBZ" ], "glare": [ "NN", "VB" ], "Avoid": [ "VB" ], "Colleagues": [ "NNS" ], "Leventhal": [ "NNP" ], "U.": [ "NNP" ], "Kong-based": [ "JJ", "NNP" ], "FOES": [ "NNS" ], "moderates": [ "NNS", "VBZ" ], "Andras": [ "NNP" ], "Boyeki": [ "NNP" ], "objected": [ "VBD", "VBN" ], "Newell": [ "NNP" ], "Enrico": [ "NNP" ], "oppression": [ "NN" ], "cradle": [ "NN", "VB" ], "moderated": [ "VBN", "VBD" ], "inflammation": [ "NN" ], "open-door": [ "NN", "JJ" ], "sweepstakes": [ "NN", "NNS" ], "Strang": [ "NNP" ], "demonstrated": [ "VBN", "VBD", "JJ" ], "limitations": [ "NNS" ], "to-and-fro": [ "RB" ], "forgit": [ "VB", "VBP" ], "Straight": [ "JJ" ], "Official": [ "JJ", "NNP" ], "degree-granting": [ "JJ" ], "Up": [ "IN", "RB", "RP", "NNP" ], "Us": [ "NNP", "NNPS", "PRP" ], "Farmwife": [ "NNP" ], "Um": [ "UH" ], "berserk": [ "JJ", "RB" ], "Cartier": [ "NNP" ], "F.R.": [ "NN" ], "Dream-Way": [ "NNP" ], "Euratom": [ "NNP" ], "unhinged": [ "VBN" ], "anchorage": [ "NN" ], "UP": [ "IN", "RP", "NNP" ], "US": [ "PRP", "NNP" ], "quartet": [ "NN" ], "UN": [ "NNP" ], "UH": [ "NNP" ], "UK": [ "NNP" ], "unaided": [ "JJ" ], "interlobular": [ "JJ" ], "CB-radio-style": [ "JJ" ], "ninth-inning": [ "NN" ], "cocoa": [ "NN" ], "restatement": [ "NN" ], "pointless": [ "JJ" ], "cyclorama": [ "NN" ], "Vergessen": [ "FW" ], "additional": [ "JJ" ], "lagged": [ "VBN", "VBD" ], "Stripes": [ "NNP", "NNPS", "NNS" ], "Valois": [ "NNP" ], "Souza": [ "NNP" ], "SsangYong": [ "NNP" ], "Franchisee": [ "NN" ], "Fear-maddened": [ "JJ" ], "non-Aryan": [ "JJ" ], "Moss": [ "NNP" ], "Waldo": [ "NNP" ], "heart-disease": [ "NN" ], "gait": [ "NN" ], "squirmy": [ "JJ" ], "gain": [ "NN", "VBP", "VB" ], "Rauschenbusch": [ "NNP" ], "October-December": [ "NNP" ], "MetroCorp": [ "NNP" ], "highest": [ "JJS", "RB", "RBS" ], "McGinley": [ "NNP" ], "Bordner": [ "NNP" ], "sinusoids": [ "NNS" ], "Kinnock": [ "NNP" ], "derelicts": [ "NNS" ], "Niarchos": [ "NNP" ], "Twist": [ "NN", "VB", "NNP" ], "Einstein": [ "NNP" ], "cavalcades": [ "NNS" ], "Djurdjevic": [ "NNP" ], "Nawal": [ "NNP" ], "marketplace": [ "NN" ], "Invictus": [ "NNP" ], "kisses": [ "NNS", "VBZ" ], "beats": [ "VBZ", "NNS" ], "Doors": [ "NNS" ], "Spierer": [ "NNP" ], "education": [ "NN" ], "take-home": [ "JJ" ], "Lubyanka": [ "NNP" ], "K.C.": [ "NN" ], "Leftist": [ "JJ" ], "cosmopolitans": [ "NNS" ], "ingredients": [ "NNS" ], "RULES": [ "NNS" ], "chock-a-block": [ "JJ" ], "Elmgrove": [ "NNP" ], "proctors": [ "NNS" ], "Wells": [ "NNP" ], "presaged": [ "VBD" ], "Delivery": [ "NN", "NNP" ], "Giles": [ "NNP" ], "Vane": [ "NNP" ], "popularizing": [ "VBG" ], "McCleod": [ "NNP" ], "blunders": [ "NNS" ], "stormbound": [ "JJ" ], "exothermic": [ "JJ" ], "traditionalist": [ "NN", "JJ" ], "tackiest": [ "JJS" ], "Kazikaev": [ "NNP" ], "Hyndman": [ "NNP" ], "foil": [ "NN", "VB" ], "middlebrow": [ "JJ" ], "backstage": [ "RB" ], "Endure": [ "VBP" ], "Novato": [ "NNP" ], "Muncipal": [ "NNP" ], "in-office": [ "JJ" ], "better-prepared": [ "JJ" ], "shuns": [ "VBZ" ], "accidents": [ "NNS" ], "shunt": [ "NN" ], "Tzora": [ "NNP" ], "Rome-based": [ "JJ" ], "Fourteenth": [ "NNP" ], "Stickers": [ "NNS" ], "indirectly": [ "RB" ], "eclipsing": [ "VBG" ], "paperless": [ "JJ" ], "Keul": [ "NNP" ], "Soak": [ "VB" ], "Frontier": [ "NNP" ], "Toubro": [ "NNP" ], "circumlocution": [ "NN" ], "twelve-hour": [ "JJ" ], "high-button": [ "JJ" ], "Energieproduktiebedrijf": [ "NNP" ], "trodden": [ "JJ" ], "Bailey": [ "NNP" ], "Leggett": [ "NNP" ], "Cuauhtemoc": [ "NNP" ], "Soap": [ "NNP", "NN" ], "ruling-class": [ "JJ" ], "Hondo": [ "NNP" ], "auf": [ "FW" ], "swam": [ "VBD" ], "Honda": [ "NNP", "NN" ], "pensions": [ "NNS" ], "Shapovalov": [ "NNP" ], "swat": [ "NN" ], "swap": [ "NN", "VBP", "VB" ], "Sheets": [ "NNP" ], "Dynafac": [ "NN", "NNP" ], "recycle": [ "VB" ], "aux": [ "FW" ], "sorry": [ "JJ", "RB", "UH" ], "sway": [ "VB", "VBP", "NN" ], "Pleas": [ "NNPS", "NNP", "NNS" ], "collaborate": [ "VB", "VBP" ], "Znaniye": [ "NNP" ], "void": [ "NN", "JJ", "VB" ], "Industria": [ "NNP" ], "Panyotis": [ "NNP" ], "trend-spotter": [ "NN" ], "voir": [ "FW" ], "comico-romantico": [ "JJ" ], "Simplot": [ "NNP" ], "deplorably": [ "RB" ], "hurricane-stricken": [ "JJ" ], "Extending": [ "VBG" ], "unrelated": [ "JJ" ], "enhance": [ "VB", "VBP" ], "deplorable": [ "JJ" ], "separation-of-powers": [ "JJ" ], "whirlwind": [ "NN", "JJ" ], "landlords": [ "NNS" ], "Cuisine": [ "NNP" ], "Margaux": [ "NNP" ], "scouted": [ "VBD" ], "Christic": [ "NNP" ], "Herrick": [ "NNP" ], "Christie": [ "NNP", "NN" ], "Yasuda": [ "NNP" ], "hibernate": [ "VBP", "VB" ], "tangential": [ "JJ" ], "kidnap": [ "VB" ], "disintegrated": [ "VBD" ], "ignominiously": [ "RB" ], "tall-growing": [ "JJ" ], "Sikes": [ "NNP" ], "uptempo": [ "JJ" ], "Schenk": [ "NNP" ], "WELLS": [ "NNP" ], "yonder": [ "NN" ], "spokesman": [ "NN" ], "confusin": [ "NN" ], "reviving": [ "VBG", "JJ" ], "mee": [ "PRP" ], "helmets": [ "NNS" ], "market-hog": [ "JJ" ], "mea": [ "FW" ], "back-on-terra-firma": [ "JJ" ], "muzzle": [ "NN", "VB" ], "mem": [ "FW" ], "men": [ "NNS" ], "mei": [ "FW" ], "weirdly": [ "RB" ], "met": [ "VBD", "VBN" ], "Bussieres": [ "NNP" ], "biconcave": [ "JJ" ], "Lassus": [ "NNP" ], "systematized": [ "VBN" ], "Aalseth": [ "NNP" ], "rooster-comb": [ "NN" ], "launch-control": [ "NN" ], "Curry": [ "NNP" ], "Predispositions": [ "NNS" ], "Chiron": [ "NNP" ], "Simeon": [ "NNP" ], "Brakes": [ "NNS" ], "Extra": [ "NNP" ], "Scolatti": [ "NNP" ], "Demonstrations": [ "NNS" ], "defects-office": [ "NN" ], "fajitas": [ "NNS" ], "Ricketts": [ "NNP" ], "have-nots": [ "NNS" ], "Lyon": [ "NNP" ], "mobility": [ "NN" ], "south-central": [ "JJ" ], "objectively": [ "RB" ], "sliced": [ "VBN", "VBD" ], "Fleischmanns": [ "NNP" ], "Norske": [ "NNP" ], "Piano": [ "NNP", "NN" ], "Romanza": [ "NNP" ], "tutelage": [ "NN" ], "Boersen-Zeitung": [ "NNP" ], "rationalist": [ "JJ", "NN" ], "doubled-edged": [ "JJ" ], "LOBBIES": [ "VBZ" ], "gold-oriented": [ "JJ" ], "Drexler": [ "NNP" ], "well-servicing": [ "JJ" ], "Kingsepp": [ "NNP" ], "Rudibaugh": [ "NNP" ], "rationalism": [ "NN" ], "Carbon": [ "NNP", "NN" ], "TASS": [ "NNP" ], "overlooked": [ "VBN", "VBD" ], "grabbin": [ "VBG" ], "surgical-abortion": [ "JJ" ], "multi-state": [ "JJ" ], "workmanship": [ "NN" ], "phraseology": [ "NN" ], "Smelting": [ "NNP" ], "defecated": [ "VBN" ], "rook": [ "NN" ], "room": [ "NN", "NNP" ], "interposition": [ "NN" ], "flue-cured": [ "JJ" ], "roof": [ "NN" ], "Slug": [ "VB" ], "movies": [ "NNS" ], "Fournier": [ "NNP" ], "exceptions": [ "NNS" ], "root": [ "NN", "VBP", "VB" ], "troubles": [ "NNS", "VBZ" ], "motor-operated": [ "JJ" ], "Zweibel": [ "NNP" ], "Chrome": [ "NNP" ], "Wizard": [ "NNP", "NN" ], "whistle-blowers": [ "NNS" ], "Scalfaro": [ "NNP" ], "cials": [ "NNS" ], "Maecker": [ "NNP" ], "Hardscrabble": [ "NNP" ], "shelving": [ "NN" ], "Fast-food": [ "NN" ], "elicited": [ "VBN", "VBD" ], "January-August": [ "NNP" ], "decrying": [ "VBG" ], "Darcy": [ "NNP" ], "remonstrated": [ "VBD" ], "Red-Green": [ "NNP" ], "quibble": [ "VB" ], "loggers": [ "NNS" ], "Fidler": [ "NNP" ], "disassemble": [ "VB" ], "manuals": [ "NNS" ], "loyalty": [ "NN" ], "ova": [ "NN" ], "fracas": [ "NN" ], "Kiley": [ "NNP" ], "disassembly": [ "NN" ], "cathoderay": [ "NN" ], "security-type": [ "JJ" ], "lifesaving": [ "VBG" ], "Trujillos": [ "NNPS" ], "defaces": [ "VBZ" ], "EQUITIES": [ "NNPS" ], "Delusion": [ "NNP" ], "Touring": [ "VBG", "NN" ], "neglect": [ "NN", "VB", "VBP" ], "Ended": [ "NNP" ], "fictitious": [ "JJ" ], "pasteurized": [ "VBN" ], "plagiarizers": [ "NNS" ], "Edwviges": [ "NNP" ], "Textiles": [ "NNP", "NNS" ], "glycols": [ "NNS" ], "determinate": [ "JJ" ], "Agnelli": [ "NNP" ], "high-rep": [ "JJ" ], "inconclusive": [ "JJ" ], "Socialization": [ "NN" ], "W.T.": [ "NNP" ], "fable": [ "NN" ], "fellas": [ "NNS" ], "budding": [ "VBG", "JJ" ], "cattaloe": [ "NN" ], "famille": [ "FW" ], "personae": [ "NNS" ], "deathly": [ "JJ" ], "personal": [ "JJ", "NN", "NNP" ], "Sun-Times": [ "NNP" ], "Econometric": [ "NNP" ], "MiGs": [ "NNPS" ], "Luber": [ "NNP" ], "stalemate": [ "NN" ], "Butter-Nut": [ "NNP" ], "drops": [ "VBZ", "NNS" ], "confidently": [ "RB" ], "rebutted": [ "VBN", "VBD" ], "comedy-oriented": [ "JJ" ], "madly": [ "RB" ], "combination": [ "NN" ], "Ashwood": [ "NNP" ], "driftin": [ "VBG" ], "Challenge": [ "NNP", "NN" ], "glazes": [ "NNS" ], "demythologize": [ "VB" ], "Agenda": [ "NNP", "NN" ], "Beggiato": [ "NNP" ], "glazed": [ "VBN" ], "imprisoning": [ "VBG" ], "Saitama": [ "NNP" ], "Chesley": [ "NNP" ], "AIDS-related": [ "JJ" ], "emergency-cash": [ "NN" ], "Seita": [ "NNP" ], "Seitz": [ "NNP" ], "ducking": [ "VBG" ], "interpolation": [ "NN" ], "Check": [ "VB", "NNP" ], "punishable": [ "JJ" ], "nonchurchgoing": [ "JJ" ], "Goulde": [ "NNP" ], "admittees": [ "NNS" ], "SS.": [ "NNP" ], "trading": [ "NN", "NN|VBG", "VBG|NN", "JJ", "VBG" ], "forgot": [ "VBD", "VBN" ], "aids": [ "NNS", "VBZ" ], "LeBrun": [ "NNP" ], "comedies": [ "NNS" ], "two-percentage-point": [ "JJ" ], "Obeying": [ "VBG" ], "merchants": [ "NNS" ], "unbound": [ "JJ", "VBN" ], "Menderes": [ "NNP" ], "Eagle-Berol": [ "NNP" ], "Rosabelle": [ "NNP" ], "Skolniks": [ "NNP" ], "bulkheads": [ "NNS" ], "debit": [ "NN" ], "Stockman": [ "NNP" ], "Join": [ "VB", "NNP", "VBP" ], "Clive": [ "NNP" ], "Reps.": [ "NNP", "NNPS" ], "SS-18s": [ "NNS" ], "abate": [ "VB" ], "Healthco": [ "NNP" ], "mushrooming": [ "NN" ], "Salvatori": [ "NNP" ], "resew": [ "VB" ], "gruonded": [ "VBD" ], "Privatizing": [ "NN" ], "SST": [ "NNP" ], "cosmic": [ "JJ" ], "Sudden": [ "JJ" ], "SSI": [ "NNP" ], "uses": [ "VBZ", "NNS" ], "enraged": [ "JJ", "VBD", "VBN" ], "Adolf": [ "NNP" ], "causeways": [ "NNS" ], "Freshmen": [ "NNS" ], "oracles": [ "NNS" ], "Waite": [ "NNP" ], "double-A-2": [ "NN", "JJ" ], "double-A-3": [ "JJ" ], "Electro-Optics": [ "NNP" ], "Vectra": [ "NNP" ], "ALBERTA": [ "NNP" ], "Fienberg": [ "NNP" ], "PATRON": [ "NNP" ], "acquaint": [ "VB" ], "Mess": [ "NN" ], "Consolidation": [ "NN" ], "Mullerin": [ "NNP" ], "Johns": [ "NNP" ], "Excellent": [ "JJ" ], "woodwind": [ "NN" ], "gourmets": [ "NNS" ], "McKinleyville": [ "NNP" ], "Commandeering": [ "VBG" ], "Estimated": [ "VBN", "JJ" ], "dower": [ "NN" ], "Yevgeny": [ "NNP" ], "chronicled": [ "VBD", "VBN" ], "Charleston": [ "NNP", "NN" ], "Minikes": [ "NNP" ], "begins": [ "VBZ" ], "homogenized": [ "VBN" ], "Travel-Holiday": [ "NNP" ], "enshrouding": [ "VBG" ], "Exhausted": [ "JJ" ], "conforms": [ "VBZ" ], "Colefax": [ "NNP" ], "exchangeable": [ "JJ" ], "biochemical": [ "JJ" ], "perilla": [ "NN" ], "Bottlers": [ "NNP", "NNS" ], "Mercier": [ "NNP" ], "Snuff": [ "NNP" ], "recommence": [ "VB" ], "Curacao": [ "NNP" ], "rattle": [ "NN", "VB" ], "ebb-and-flow": [ "NN" ], "Lewellyn": [ "NNP" ], "Gideon": [ "NNP" ], "central-planning": [ "JJ" ], "prerecorded": [ "VBN" ], "nine-tenths": [ "NNS" ], "theology": [ "NN" ], "Tashkent": [ "NNP" ], "Egyptian": [ "JJ", "NNP" ], "Kinder-Care": [ "NNP" ], "Gripen": [ "NNP" ], "recordkeeping": [ "NN" ], "quarterback": [ "NN" ], "yearlong": [ "JJ" ], "uproariously": [ "RB" ], "overplayed": [ "VBD", "VBN" ], "criminal-justice": [ "NN" ], "Biological": [ "JJ", "NNP" ], "legal-services": [ "NNS", "JJ" ], "maria": [ "NNS" ], "Sanctuary": [ "NNP" ], "splints": [ "NNS" ], "competitors": [ "NNS" ], "Kyocera": [ "NNP" ], "egg-throwing": [ "JJ" ], "unleashed": [ "VBN", "VBD" ], "Sabre": [ "NNP" ], "PATCO": [ "NNP" ], "armament": [ "NN" ], "UPI": [ "NNP" ], "mineralized": [ "JJ" ], "implying": [ "VBG" ], "flouted": [ "VBN" ], "poison": [ "NN", "NN|JJ", "JJ", "VB" ], "McDuffie": [ "NNP" ], "dampening": [ "JJ" ], "CONSUMERS": [ "NNS" ], "double-A": [ "JJ", "NNP", "NN" ], "bookish": [ "JJ" ], "double-C": [ "NN" ], "celery": [ "NN" ], "Archbishops": [ "NNS" ], "Post-Newsweek": [ "NNP" ], "Advantages": [ "NNS" ], "Lahus": [ "NNP" ], "Others": [ "NNS", "NNPS", "NNP" ], "bangish": [ "JJ" ], "lightening": [ "VBG" ], "company-owned": [ "JJ" ], "extraterrestrials": [ "NNS" ], "preparatives": [ "NNS" ], "nyet": [ "UH" ], "difference...": [ ":" ], "Yesiree": [ "UH" ], "appetizer": [ "NN" ], "trans-Panama": [ "JJ" ], "water-deficient": [ "JJ" ], "pallets": [ "NNS" ], "Holstein": [ "NNP" ], "untradeable": [ "JJ" ], "boom-boom-boom": [ "JJ" ], "dauphin": [ "NN" ], "facilitators": [ "NNS" ], "COMMENTS": [ "NNS" ], "godliness": [ "NN" ], "hookworm": [ "NN" ], "troop": [ "NN", "VBP" ], "adulterous": [ "JJ" ], "Partners": [ "NNPS", "NNP", "NNS" ], "Star-Spangled": [ "NNP", "JJ" ], "testing": [ "NN", "VBG", "VBG|NN" ], "Af-values": [ "NNS" ], "dog-meat": [ "NN" ], "Indexes": [ "NNS" ], "Dreamers": [ "NNS", "NNPS" ], "non-stop": [ "JJ" ], "hoydenish": [ "JJ" ], "Indexed": [ "JJ" ], "interruptions": [ "NNS" ], "home-entertainment": [ "JJ" ], "Watervliet": [ "NNP" ], "Somebody": [ "NN", "NNP" ], "Plotkin": [ "NNP" ], "narrated": [ "VBN" ], "eighty-sixth": [ "JJ" ], "half-a-dozen": [ "NN" ], "Billed": [ "VBN" ], "by-ways": [ "NNS" ], "Multiplexers": [ "NNS" ], "socio-economic": [ "JJ", "NN" ], "Blumstein": [ "NNP" ], "W.Va.": [ "NNP" ], "Tunnel": [ "NNP" ], "non-governmental": [ "JJ" ], "busloads": [ "NNS" ], "motto": [ "NN" ], "Otherwise": [ "RB" ], "Micawber": [ "NNP" ], "Cylinder": [ "NN" ], "resistant": [ "JJ", "NN" ], "Imperiales": [ "NNPS" ], "uncertainty": [ "NN" ], "elastomer": [ "NN" ], "discount-movie": [ "JJ" ], "RobertsCorp": [ "NNP" ], "Naples-born": [ "JJ" ], "carat": [ "NN" ], "Thrall": [ "NNP" ], "Glimco": [ "NNP" ], "Bahamas": [ "NNPS", "NNP" ], "precut": [ "JJ" ], "half-point": [ "JJ" ], "Muscat": [ "NNP" ], "putt": [ "NN", "VB" ], "oceanography": [ "NN" ], "puts": [ "VBZ", "NNS" ], "regenerate": [ "VB" ], "KANEB": [ "NNP" ], "parsley": [ "NN" ], "Paredon": [ "NN" ], "growth...": [ ":" ], "soft-landing": [ "JJ" ], "entered": [ "VBD", "VBN" ], "lovely": [ "JJ" ], "well-deserved": [ "JJ" ], "SHORT-TERM": [ "JJ" ], "eight-bar": [ "JJ" ], "Emmert": [ "NNP" ], "Flor": [ "NNP" ], "Flow": [ "NNP" ], "BRITISH": [ "JJ" ], "word-games": [ "NNS" ], "Keteyian": [ "NNP" ], "Flom": [ "NNP" ], "Misery": [ "NN" ], "scrubbers": [ "NNS" ], "Voice": [ "NNP", "NN" ], "harshness": [ "NN" ], "Debugging": [ "VBG" ], "Reputedly": [ "RB" ], "vendetta": [ "NN" ], "Process": [ "NNP", "NN" ], "Tatman": [ "NNP" ], "Canaan": [ "NNP" ], "Pines": [ "NNP" ], "ceilings": [ "NNS" ], "CAPITALIST": [ "JJ" ], "sprinted": [ "VBD" ], "cane": [ "NN" ], "bribery-related": [ "JJ" ], "recuperate": [ "VB" ], "well-kept": [ "JJ" ], "Arrangement": [ "NNP", "NN" ], "cant": [ "NN" ], "cans": [ "NNS", "VBZ" ], "inscrutable": [ "JJ" ], "gaze": [ "NN", "VB", "VBP" ], "cockatoos": [ "NNS" ], "borough": [ "NN" ], "specialization": [ "NN" ], "Kibbutz": [ "NNP" ], "erudition": [ "NN" ], "realizing": [ "VBG" ], "Sanson": [ "NNP" ], "Chatwal": [ "NNP" ], "Sansom": [ "NNP" ], "small-company-stock": [ "NN" ], "world-famous": [ "JJ", "NN" ], "colonies": [ "NNS" ], "detergency": [ "NN" ], "evolve": [ "VB", "VBP" ], "off-duty": [ "JJ" ], "Hals": [ "NNP" ], "opulent": [ "JJ" ], "Champlain": [ "NNP" ], "impelling": [ "JJ" ], "Dilip": [ "NNP" ], "price-stabilized": [ "JJ" ], "Usually": [ "RB" ], "geological": [ "JJ" ], "interferometers": [ "NNS" ], "Brassbound": [ "NNP" ], "SAKOS": [ "FW" ], "presto": [ "RB" ], "unconditionally": [ "RB" ], "jackdaws": [ "NNS" ], "failing": [ "VBG", "NN" ], "Matson": [ "NNP" ], "resuming": [ "VBG" ], "Janitsch": [ "NNP" ], "perceptiveness": [ "NN" ], "sanctums": [ "NNS" ], "yours": [ "PRP", "JJ" ], "worked-out": [ "JJ" ], "Helicopters": [ "NNP", "NNPS" ], "Griffin": [ "NNP" ], "unclenched": [ "VBN" ], "Significants": [ "NNS" ], "crystallites": [ "NNS" ], "Capone": [ "NNP", "NN" ], "Acceptable": [ "JJ" ], "assigned": [ "VBN", "VBD", "JJ" ], "assignee": [ "NN" ], "fighters": [ "NNS" ], "reformation": [ "NN" ], "salivary": [ "JJ" ], "rent-a-colonel": [ "NN" ], "rent-subsidy": [ "JJ" ], "Bills": [ "NNS", "NNP" ], "pecuniary": [ "JJ" ], "Boss": [ "NNP", "NN" ], "appellant": [ "FW" ], "copyrights": [ "NNS" ], "Backlog": [ "NN" ], "cardiologists": [ "NNS" ], "Buddhism": [ "NNP", "NN" ], "revenue-sharing": [ "JJ" ], "ago.": [ "RB" ], "Kerr-Mills": [ "NNP" ], "Bowman": [ "NNP" ], "boasted": [ "VBD", "VBN" ], "involuntary": [ "JJ" ], "rehash": [ "NN", "VBP" ], "supervisors": [ "NNS" ], "paramilitary": [ "JJ" ], "orthodontic": [ "JJ" ], "hi-fi": [ "NN" ], "Browne": [ "NNP" ], "Picturing": [ "VBG" ], "Arp": [ "NNP" ], "Stolz": [ "NNP" ], "Art": [ "NNP", "VBZ", "NN" ], "repossessed": [ "JJ", "VBN" ], "ramparts": [ "NNS" ], "Arx": [ "NNP" ], "tormentors": [ "NNS" ], "Michele": [ "NNP" ], "Computing": [ "VBG", "NNP" ], "Ara": [ "NNP" ], "Arc": [ "NNP" ], "Are": [ "VBP", "NNP" ], "testers": [ "NNS" ], "talk-aboutiveness": [ "NN" ], "Ark": [ "NNP", "NN" ], "Michels": [ "NNP" ], "Arm": [ "NN", "VB", "NNP" ], "Aro": [ "NNP" ], "cowardice": [ "NN" ], "Arraignments": [ "NNS" ], "dean": [ "NN", "NNP" ], "Generics": [ "NNS" ], "Beef": [ "NN", "NNP" ], "Conduits": [ "NNS" ], "deaf": [ "JJ" ], "Zeising": [ "NNP" ], "Been": [ "VBN", "NNP" ], "yf": [ "NN" ], "Beep": [ "NNP", "NN" ], "Beer": [ "NN", "NNP" ], "yearlings": [ "NNS" ], "Beet": [ "NNP" ], "Browns": [ "NNP", "NNPS" ], "dear": [ "JJ", "NN", "RB", "UH" ], "doll-like": [ "JJ" ], "carts": [ "NNS" ], "microwave": [ "NN" ], "buffer": [ "NN", "VB" ], "Parizeau": [ "NNP" ], "provoking": [ "VBG", "JJ" ], "Leonidas": [ "NNP" ], "carte": [ "NN" ], "Kochan": [ "NNP" ], "trade-in": [ "NN" ], "subscriptions": [ "NNS" ], "codifies": [ "VBZ" ], "predicting": [ "VBG", "NN" ], "Junk": [ "NN" ], "Salman": [ "NNP" ], "defense-electronics": [ "NNS", "JJ" ], "Corey": [ "NNP" ], "buffet": [ "NN", "VB", "VBP" ], "Blampied": [ "NNP" ], "missive": [ "NN" ], "codified": [ "VBN" ], "backlogs": [ "NNS" ], "lyking": [ "VBG" ], "appeasing": [ "NN" ], "Hoped-for": [ "JJ" ], "leave-taking": [ "NN" ], "blithe": [ "JJ" ], "Merill": [ "NNP" ], "Carstens": [ "NNP" ], "clapboard": [ "NN" ], "second-guessed": [ "VBN" ], "emcee": [ "NN" ], "managers": [ "NNS" ], "Dallas": [ "NNP" ], "Isabell": [ "NNP" ], "memory-pictures": [ "NNS" ], "Pokorny": [ "NNP" ], "HyperCard": [ "NNP" ], "down": [ "RB", "IN|RB", "RBR", "VBP", "IN", "JJ", "NN", "RP", "VB" ], "Southlife": [ "NNP" ], "plain-clothes": [ "JJ" ], "P.D.I.": [ "NNP" ], "Chairmen": [ "NNS" ], "refined": [ "JJ", "VBN" ], "Satrum": [ "NNP" ], "Cranston": [ "NNP" ], "solar-electromagnetic": [ "NN" ], "TRC": [ "NNP" ], "initial": [ "JJ", "NN", "VB" ], "U/NNP.S.C.": [ "NNP" ], "districts\\/states": [ "NNS" ], "futureeither": [ "NN" ], "let-down": [ "NNS" ], "editor": [ "NN" ], "fraction": [ "NN" ], "tank-related": [ "JJ" ], "Herman": [ "NNP", "NN" ], "polemical": [ "JJ" ], "creation": [ "NN" ], "clinics": [ "NNS" ], "Lissa": [ "NNP" ], "Bradsby": [ "NNP" ], "Dicello": [ "NNP" ], "anionics": [ "NNS" ], "landing": [ "NN", "VBG" ], "feminine": [ "JJ", "NN" ], "experimentations": [ "NNS" ], "zaiteku": [ "FW" ], "Defeat": [ "NNP" ], "one-stooler": [ "NN" ], "analyst": [ "NN" ], "Urstadt": [ "NNP" ], "evinced": [ "VBN", "VBD" ], "trendiest": [ "JJS" ], "Albanians": [ "NNPS", "NNS" ], "deer-handling": [ "NN" ], "bad-neighbor": [ "JJ" ], "Boismassif": [ "NNP" ], "Langhorne": [ "NNP" ], "Fedders": [ "NNP", "NNS" ], "work-in-progress": [ "NN" ], "northerner": [ "NN" ], "resuscitating": [ "VBG" ], "Richman": [ "NNP" ], "governors-association": [ "NN" ], "Niche-itis": [ "NN" ], "on-air": [ "JJ" ], "Heymann": [ "NNP" ], "flood-lighted": [ "JJ" ], "strengthening": [ "VBG", "JJ", "NN" ], "pontiff": [ "NN" ], "petit": [ "FW" ], "cure-all": [ "NN", "JJ" ], "HELPS": [ "VBZ" ], "awhile": [ "RB" ], "marinated": [ "VBN" ], "Tiber": [ "NNP" ], "Persona": [ "NNP" ], "exaltations": [ "NNS" ], "Menuhin-Amadeus": [ "NNP" ], "Taisho": [ "NNP" ], "Persons": [ "NNS", "NNP", "NNPS" ], "time-strapped": [ "JJ" ], "Lande": [ "NNP" ], "Uplands": [ "NNPS" ], "Romantic": [ "JJ", "NNP" ], "faction": [ "NN" ], "handicap": [ "NN", "VB" ], "super-expensive": [ "JJ" ], "utilities": [ "NNS" ], "Conveyance": [ "NN" ], "brightens": [ "VBZ" ], "export-license": [ "JJ", "NN" ], "Cathy": [ "NNP" ], "twelve-year-old": [ "JJ" ], "bluefish": [ "NNS" ], "Barnard": [ "NNP", "NN" ], "load-shedding": [ "NNS" ], "restorer": [ "NN" ], "annuity": [ "NN" ], "pseudo": [ "JJ" ], "worked": [ "VBD", "VBN" ], "scribblers": [ "NNS" ], "Substitute": [ "JJ" ], "Daikin": [ "NNP" ], "Exploracion": [ "NNP" ], "restored": [ "VBN", "VBD" ], "discreetly": [ "RB" ], "E.G.": [ "NNP" ], "hijacker": [ "NN" ], "Torino": [ "NNP" ], "Tango": [ "NNP" ], "Winning": [ "VBG", "NNP" ], "Kalevi": [ "NNP" ], "redouble": [ "VB" ], "myelofibrosis": [ "NN" ], "hijacked": [ "VBN", "VBD" ], "DALLAS": [ "NNP" ], "swoon": [ "NN" ], "father": [ "NN", "VB" ], "parenchyma": [ "NN" ], "Redskins": [ "NNPS" ], "analogous": [ "JJ" ], "Washington-based": [ "JJ" ], "telegraph": [ "NN", "VBP", "VB" ], "Lakeland": [ "NNP" ], "Sewanee": [ "NNP" ], "Cantobank": [ "NNP" ], "Tenements": [ "NNS" ], "enslavement": [ "NN" ], "self-proclaimed": [ "JJ" ], "undergirding": [ "NN" ], "airings": [ "NNS" ], "biceps": [ "NNS", "NN" ], "stiffed": [ "VBD", "VBN" ], "cheapest": [ "JJS" ], "proposals": [ "NNS" ], "tartans": [ "NNS" ], "trombones": [ "NNS" ], "turgid": [ "JJ" ], "Mahmoud": [ "NNP" ], "Fidelity": [ "NNP" ], "misimpressions": [ "NNS" ], "stiffer": [ "JJR" ], "talked": [ "VBD", "VBN" ], "Curcio": [ "NNP" ], "Merger": [ "NN", "NNP" ], "four-crate": [ "JJ" ], "onrushing": [ "JJ" ], "measurable": [ "JJ" ], "Pittsburghers": [ "NNPS" ], "measurably": [ "RB" ], "currant": [ "NN" ], "Zoghby": [ "NNP" ], "targets": [ "NNS", "VBZ" ], "Define": [ "VB" ], "majors": [ "NNS" ], "page-one": [ "JJ", "NN" ], "distension": [ "NN" ], "self-redefinition": [ "NN" ], "encrusted": [ "VBN" ], "Comend": [ "VB" ], "Klette": [ "NNP" ], "annals": [ "NNS", "NN" ], "suspect": [ "VBP", "JJ", "NN", "VB" ], "noconfidence": [ "JJ" ], "less-than-perfect": [ "JJ" ], "covetousness": [ "NN" ], "processing": [ "NN", "VBG" ], "Bishops": [ "NNP", "NNS" ], "Latvians": [ "NNPS" ], "DSW": [ "NN" ], "Bids": [ "NNS" ], "DSP": [ "NNP" ], "cushioning": [ "NN", "VBG" ], "DSL": [ "NNP" ], "DSM": [ "NNP" ], "DSG": [ "NNP" ], "frosting": [ "NN" ], "colonization": [ "NN" ], "Muffling": [ "VBG" ], "box": [ "NN", "VB" ], "boy": [ "NN", "UH" ], "diagnoses": [ "NNS", "VBZ" ], "Founder": [ "NN", "NNP" ], "bop": [ "NN" ], "grinned": [ "VBD" ], "bow": [ "NN", "VB", "VBP" ], "Founded": [ "VBN" ], "spheres": [ "NNS" ], "Daylight": [ "NNP" ], "diagnosed": [ "VBN", "VBD" ], "bon": [ "FW" ], "Jaques": [ "NNP" ], "boa": [ "NN" ], "Antonini": [ "NNP" ], "bog": [ "VB", "NN" ], "teenage": [ "JJ" ], "Cortlandt": [ "NNP" ], "KFAC-FM": [ "NNP" ], "passthrough": [ "JJ" ], "Mannix": [ "NNP" ], "Lansing": [ "NNP" ], "close-knit": [ "JJ" ], "mainframe-class": [ "JJ", "NN" ], "transplant": [ "NN", "VBP", "VB" ], "Couperin": [ "NNP" ], "infinitum": [ "FW", "NN" ], "Conrail": [ "NNP" ], "cooperates": [ "VBZ" ], "uncritical": [ "JJ" ], "Tonio": [ "NNP" ], "vineyard": [ "NN" ], "Aerospace": [ "NNP", "NN" ], "cooperated": [ "VBN", "VBD" ], "Maintaining": [ "VBG" ], "scriptwriters": [ "NNS" ], "Kingwood": [ "NNP" ], "beadwork": [ "NN" ], "Carletonian": [ "NNP" ], "polymerizations": [ "NNS" ], "labyrinth": [ "NN" ], "Behaviour": [ "NN" ], "Customhouse": [ "NNP" ], "forswears": [ "VBZ" ], "AUS": [ "NNP" ], "Money-market": [ "NN" ], "Ginsberg": [ "NNP" ], "bushels": [ "NNS" ], "four-syllable": [ "JJ" ], "JOIN": [ "VB" ], "evil-doers": [ "NNS" ], "McAfee": [ "NNP" ], "quoting": [ "VBG" ], "Scan": [ "NNP" ], "whizzed": [ "VBD" ], "frivolity": [ "NN" ], "drags": [ "VBZ" ], "Numbers": [ "NNS", "NNPS" ], "romanticized": [ "VBN" ], "Ekstrohm": [ "NNP" ], "Abney": [ "NNP" ], "thicknesses": [ "NNS" ], "Purkis": [ "NNP" ], "Heather": [ "NNP" ], "Conalco": [ "NNP" ], "non-user": [ "NN" ], "fuck": [ "VB" ], "forerunners": [ "NNS" ], "Cougar": [ "NNP" ], "floodheads": [ "NNS" ], "RE-ENTRY": [ "NNP" ], "subconsciously": [ "RB" ], "metal-workers": [ "NNS" ], "Earns": [ "VBZ" ], "nonchalant": [ "JJ" ], "Carrollton": [ "NNP" ], "Flotilla": [ "NNP" ], "irreverent": [ "JJ" ], "hazardous-waste": [ "NN", "JJ" ], "Liddell": [ "NNP" ], "Germania": [ "NNP" ], "male-sterile": [ "JJ" ], "Germanic": [ "JJ", "NNP" ], "metamidophos": [ "NNS" ], "Amerongen": [ "NNP" ], "Urn": [ "NNP" ], "proto-senility": [ "NN" ], "hand-tooled": [ "JJ" ], "membership": [ "NN" ], "nondairy": [ "JJ" ], "Urs": [ "NNP" ], "New-construction": [ "NN" ], "CORP.": [ "NNP" ], "sweat-soaked": [ "JJ" ], "fetal-alcohol": [ "JJ" ], "heat-treatment": [ "NN" ], "Braniff": [ "NNP" ], "Restless": [ "JJ" ], "reseller": [ "JJR", "JJ", "NN" ], "elongation": [ "NN" ], "Olean": [ "NNP" ], "Headland": [ "NNP" ], "caption": [ "NN" ], "brokerage-firm": [ "JJ" ], "Nicaraguan": [ "JJ", "NNP" ], "Sequa": [ "NNP" ], "demonstratives": [ "NNS" ], "Hasbrouck": [ "NNP" ], "oncology": [ "NN" ], "spreadsheets": [ "NNS" ], "half-inch": [ "JJ" ], "fatalities": [ "NNS" ], "solder": [ "JJ", "VB" ], "blooded": [ "VBN" ], "Trappings": [ "NNP" ], "Cf.": [ "VB" ], "Muscle": [ "NN", "NNP" ], "police": [ "NN", "VB", "NNS" ], "krater": [ "NN" ], "domestic-policy": [ "JJ", "NN" ], "Rail": [ "NNP", "NN" ], "Rain": [ "NNP", "NN" ], "Regis": [ "NNP" ], "Guatemala": [ "NNP" ], "Opportunity": [ "NNP", "NN" ], "policy": [ "NN" ], "one-out-of-three": [ "JJ" ], "sterility": [ "NN" ], "transparently": [ "RB" ], "reinvested": [ "VBN", "VBD" ], "underpinning": [ "NN", "VBG" ], "Terg-O-Tometer": [ "NNP" ], "Solomons": [ "NNPS" ], "tucked": [ "VBN", "VBD" ], "Burghardt": [ "NNP" ], "soulful": [ "JJ" ], "contravened": [ "VBD", "VBN" ], "lunch": [ "NN", "VB" ], "markings": [ "NNS" ], "Fiasco": [ "NNP", "NN" ], "teller": [ "NN" ], "Kloner": [ "NNP" ], "pimp": [ "NN" ], "Selmer-Sande": [ "NNP" ], "Trabb": [ "NNP" ], "Seville": [ "NNP" ], "showcasing": [ "VBG" ], "home-owners": [ "NNS" ], "PANEL": [ "NN" ], "physiologic": [ "JJ" ], "motherland": [ "NN" ], "one-over-par": [ "JJ" ], "Sentelle": [ "NNP" ], "unachievable": [ "JJ" ], "elephants": [ "NNS" ], "mass-market": [ "JJ", "NN" ], "well-paying": [ "JJ" ], "SERVICES": [ "NNP", "NNPS", "NNS" ], "foreign-trading": [ "JJ" ], "Routine": [ "JJ" ], "tax-exemption": [ "NN" ], "Disappointing": [ "JJ" ], "Lollipops": [ "NNS" ], "carrion": [ "JJ", "NN" ], "Successful": [ "JJ", "NNP" ], "HEFTY": [ "NNP" ], "FSLIC": [ "NNP" ], "Pocket": [ "NNP" ], "firewater": [ "NN" ], "bailout": [ "NN" ], "Stansfield": [ "NNP" ], "Longer-term": [ "JJ", "RB" ], "assurance": [ "NN" ], "registries": [ "NNS" ], "irrigating": [ "VBG" ], "G": [ "NN", "NNP", "LS" ], "Rights": [ "NNP", "NN", "NNS", "NNPS" ], "Needing": [ "VBG" ], "non-bank": [ "JJ" ], "publicsector": [ "JJ" ], "coffers": [ "NNS" ], "noisemakers": [ "NNS" ], "Luigi": [ "NNS" ], "ajar": [ "RB" ], "Maharashtra": [ "NNP" ], "Fight": [ "VB", "NN" ], "carnival": [ "NN" ], "waiter": [ "NN" ], "contented": [ "VBN", "JJ" ], "Microscopes": [ "NNS" ], "bar-buddy": [ "NN" ], "Andruses": [ "NNPS" ], "vision": [ "NN" ], "frequent": [ "JJ", "VBP", "VB" ], "adoptees": [ "NNS" ], "Lindens": [ "NNPS" ], "fleeing": [ "VBG" ], "dungeons": [ "NNS" ], "SHEVARDNADZE": [ "NNP" ], "subterfuges": [ "NNS" ], "neo-populist": [ "JJ" ], "Super-Protein": [ "NNP" ], "enthralled": [ "JJ", "VBN" ], "Black": [ "NNP", "JJ", "NN" ], "intrastate": [ "JJ" ], "overheating": [ "VBG", "JJ", "NN" ], "noisier": [ "JJR" ], "infant-formula": [ "NN" ], "Lecky": [ "NNP" ], "Isolating": [ "VBG" ], "Anglo-American": [ "NNP", "JJ" ], "Minerva": [ "NNP" ], "Norwell": [ "NNP" ], "home-state": [ "JJ" ], "bare-bones": [ "JJ" ], "flatiron": [ "NN" ], "Saxe": [ "NNP" ], "vacuum-tube": [ "JJ" ], "fifteen-mile": [ "JJ" ], "speaking": [ "VBG", "NN" ], "anti-South": [ "JJ" ], "Oncor": [ "NNP" ], "inefficient": [ "JJ" ], "Miracle": [ "NNP" ], "Ministries": [ "NNP" ], "Denouncing": [ "VBG" ], "Court-packing": [ "JJ" ], "Hanshin": [ "NNP" ], "set-up": [ "NN" ], "Consulting": [ "NNP", "NN" ], "doddering": [ "JJ" ], "log-jam": [ "NN" ], "Addwest": [ "NNP" ], "automakers": [ "NNS" ], "big-shouldered": [ "JJ" ], "Styrofoam": [ "NNP" ], "Jayark": [ "NNP" ], "metre": [ "NN" ], "DeWalt": [ "NNP" ], "thyrotoxic": [ "JJ" ], "EUROPE": [ "NNP" ], "global-news": [ "NN" ], "Prescription-drug": [ "NN" ], "Bandini": [ "NNP" ], "Rockies": [ "NNPS" ], "defecting": [ "VBG" ], "Expectations": [ "NNS", "NNP", "NNPS" ], "Lovett": [ "NNP" ], "hard-hit": [ "JJ" ], "incontestable": [ "JJ" ], "himself": [ "PRP" ], "pastry": [ "NN" ], "nondefeatist": [ "JJ" ], "Waterston": [ "NNP" ], "Torrance": [ "NNP" ], "squaw": [ "NN" ], "squat": [ "JJ", "NN", "VB" ], "Steudler": [ "NNP" ], "Broncs": [ "NNP" ], "foreigner": [ "NN" ], "complexity": [ "NN" ], "shocked": [ "VBN", "VBD", "JJ" ], "more-muscular": [ "JJ" ], "squad": [ "NN" ], "quieting": [ "VBG" ], "reacquainted": [ "VBN" ], "Bronco": [ "NNP" ], "Kazakhstan": [ "NNP" ], "Mathematical": [ "JJ" ], "ultimate": [ "JJ" ], "flattered": [ "VBN", "JJ", "VBD" ], "Worldwide": [ "NNP" ], "DHL": [ "NNP" ], "innuendoes": [ "NNS" ], "Parrot": [ "NNP" ], "with-it": [ "JJ" ], "arguing": [ "VBG", "NN" ], "cathedrals": [ "NNS" ], "cost-raising": [ "JJ" ], "billon": [ "NN" ], "out-migration": [ "NN" ], "humorists": [ "NNS" ], "Kellum": [ "NNP" ], "tugging": [ "VBG" ], "Keane": [ "NNP" ], "incisive": [ "JJ" ], "wheel-loader": [ "JJ" ], "angst": [ "NN" ], "bleating": [ "VBG" ], "cosponsors": [ "VBZ" ], "Actively": [ "RB" ], "Graubart": [ "NNP" ], "Duty-free": [ "JJ" ], "iniquitous": [ "JJ" ], "Harriers": [ "NNPS" ], "WE": [ "PRP" ], "WB": [ "NNP" ], "big-boned": [ "JJ" ], "Detached": [ "VBN" ], "pro-U.N.F.P.": [ "JJ" ], "Yuppie": [ "NNP", "NN" ], "disunity": [ "NN" ], "WW": [ "NNP" ], "bedside": [ "NN" ], "Barre": [ "NNP" ], "maninstays": [ "NNS" ], "high-profile": [ "JJ" ], "sponsorship": [ "NN" ], "enthusiast": [ "NN" ], "new-rich": [ "JJ" ], "We": [ "PRP", "NNP", "NN" ], "Wa": [ "NNP", "," ], "Wo": [ "MD" ], "non-Soviet": [ "JJ" ], "treasure": [ "NN", "VBP" ], "Uzi-model": [ "JJ" ], "Wu": [ "NNP" ], "windbag": [ "NN" ], "Diary": [ "NNP" ], "coagulating": [ "VBG" ], "travesty": [ "NN", "VB" ], "treasury": [ "NN" ], "enthusiasm": [ "NN" ], "pegged": [ "VBN", "VBD", "JJ" ], "Partisan": [ "NNP" ], "program-trade": [ "JJ" ], "even-larger": [ "JJ" ], "Kleist": [ "NNP" ], "self-plagiarisms": [ "NNS" ], "seekin": [ "VBG" ], "Frothingham": [ "NNP" ], "satiety": [ "NN" ], "hailed": [ "VBD", "VBN" ], "gee": [ "UH" ], "juleps": [ "NNS" ], "unaltered": [ "JJ" ], "chiropractor": [ "NN" ], "bitters": [ "NNS" ], "Pelin": [ "NNP" ], "enjoys": [ "VBZ" ], "in-migration": [ "NN" ], "Mommor": [ "NNP" ], "Laird": [ "NNP" ], "Right": [ "RB", "NNP", "JJ", "NN", "UH" ], "Angel": [ "NNP" ], "W.": [ "NNP", "NN" ], "colossus": [ "NN" ], "Snodgrass": [ "NNP" ], "requesting": [ "VBG" ], "growth-stunting": [ "JJ" ], "miles": [ "NNS" ], "Weiler": [ "NNP" ], "less-restrictive": [ "JJ" ], "nostril": [ "NN" ], "Attribute": [ "NNP" ], "Anger": [ "VBP", "NN" ], "tallow": [ "NN" ], "Delacre": [ "NNP" ], "ANR": [ "NNP" ], "declared": [ "VBD", "VBN", "JJ" ], "Wyndham": [ "NNP" ], "Grant": [ "NNP", "VB" ], "Provide": [ "VB", "VBP" ], "sear": [ "VB" ], "Wansee": [ "NNP" ], "seat": [ "NN", "VB", "VBP" ], "starlet": [ "NN" ], "HELD": [ "VBD" ], "declares": [ "VBZ" ], "Neave": [ "NNP" ], "Grand": [ "NNP", "FW", "JJ" ], "Placement": [ "NNP", "NN" ], "emulating": [ "VBG" ], "Grano": [ "NNP" ], "Shaefer": [ "NNP" ], "Machiguenga": [ "NNP" ], "Nakazato": [ "NNP" ], "Bonecrusher": [ "NNP" ], "indicted": [ "VBN", "VBD" ], "Illiterate": [ "JJ" ], "tongue-tied": [ "JJ" ], "pilot-management": [ "JJ" ], "label": [ "NN", "VB", "VBP" ], "boundaries": [ "NNS" ], "public-information": [ "JJ" ], "permeated": [ "VBN", "VBD" ], "Mercantilists": [ "NNS" ], "government...": [ ":" ], "across": [ "IN", "RB", "RP" ], "property-tax": [ "JJ" ], "satiate": [ "VB" ], "Nervousness": [ "NN" ], "infrastructure": [ "NN" ], "august": [ "JJ" ], "FOR": [ "IN" ], "FOX": [ "NN" ], "data-base": [ "JJ", "NN" ], "procreativity": [ "NN" ], "dreamless": [ "JJ" ], "dogging": [ "VBG" ], "Each": [ "DT" ], "beefed-up": [ "JJ" ], "gauntlet": [ "NN" ], "Perse": [ "NNP" ], "per-passenger": [ "NN" ], "Potlatch": [ "NNP" ], "Carver": [ "NNP" ], "philosophically": [ "RB" ], "feelers": [ "NNS" ], "Carvey": [ "NNP" ], "fulminate": [ "VB" ], "badly-needed": [ "JJ" ], "blasts": [ "NNS" ], "sketchy": [ "JJ" ], "Taught": [ "VBN" ], "tout": [ "VB", "FW", "NN" ], "Carved": [ "JJ" ], "Statistical": [ "NNP", "JJ" ], "womanhood": [ "NN" ], "Laboratory": [ "NNP", "NN" ], "longshot": [ "NN" ], "nonentity": [ "NN" ], "long-sleeved": [ "JJ" ], "ISRAEL": [ "NNP" ], "polities": [ "NNS" ], "about-face": [ "NN" ], "Wachtel": [ "NNP" ], "dislocations": [ "NNS" ], "V-shaped": [ "JJ" ], "McLennan": [ "NNP" ], "PRICIEST": [ "JJS" ], "Riley": [ "NNP" ], "considering": [ "VBG" ], "Assembly": [ "NNP", "NN" ], "capable": [ "JJ" ], "wobble": [ "VB", "NN" ], "Affiliates": [ "NNP", "NNPS" ], "Optical": [ "NNP" ], "wobbly": [ "JJ" ], "Assemble": [ "VB" ], "Affiliated": [ "NNP", "VBN" ], "capably": [ "RB" ], "derogation": [ "NN" ], "lustily": [ "RB" ], "vopos": [ "FW" ], "repurchasing": [ "VBG" ], "circumference": [ "NN" ], "Hathaway": [ "NNP" ], "wake": [ "NN", "VBP", "VB" ], "Solovyov": [ "NNP" ], "stand-ups": [ "NNS" ], "hardcore": [ "JJ", "NN" ], "Revise": [ "VB" ], "plastering": [ "NN" ], "Chiaromonte": [ "NNP" ], "Showalter": [ "NNP" ], "earlier-reported": [ "JJ" ], "Baths": [ "NNPS" ], "investigating": [ "VBG", "NN" ], "Shipbuilders": [ "NNPS" ], "falsified": [ "VBN" ], "blackballed": [ "VBN" ], "Shivers": [ "NNP" ], "Crutzen": [ "NNP" ], "Tibetan-like": [ "JJ" ], "Burge": [ "NNP" ], "Intermediate": [ "NNP", "JJ" ], "Blumenfeld": [ "NNP" ], "Symposium": [ "NNP", "NN" ], "protein": [ "NN" ], "Targetted": [ "NNP" ], "essayish": [ "JJ" ], "doubting": [ "VBG", "JJ" ], "dairies": [ "NNS" ], "paring": [ "VBG" ], "woodland": [ "JJ" ], "Infusion": [ "NN" ], "lava": [ "NN" ], "Destruction": [ "NN", "NNP" ], "grantors": [ "NNS" ], "extended": [ "VBN", "VBD", "JJ" ], "expended": [ "VBN", "VBD" ], "Mustangs": [ "NNP" ], "incarceration": [ "NN" ], "Barcelona": [ "NNP" ], "annulled": [ "VBD" ], "Holliday": [ "NNP" ], "Ortho": [ "NNP" ], "CAPITAL": [ "NNP", "NN" ], "pistoleers": [ "NNS" ], "shopworn": [ "JJ" ], "Hampton": [ "NNP" ], "Indian-summer": [ "JJ" ], "identifiers": [ "NNS" ], "Fosterites": [ "NNP" ], "stunted": [ "VBN" ], "Carlton": [ "NNP" ], "Bit": [ "NN", "RB" ], "admonishing": [ "VBG" ], "Marxists": [ "NNPS" ], "allowance": [ "NN" ], "convened": [ "VBD", "VBN" ], "nitrogen-fertilizer": [ "NN" ], "consisted": [ "VBD", "VBN" ], "alfalfa": [ "NN" ], "Englishy": [ "JJ" ], "Einsatzkommandos": [ "NNP" ], "Feedlots": [ "NNS" ], "snug-fitting": [ "JJ" ], "Pittsburg": [ "NNP" ], "leeway": [ "NN" ], "flavor": [ "NN" ], "embroideries": [ "NNS" ], "statesmen": [ "NNS" ], "willy-nilly": [ "JJ", "RB" ], "decriminalization": [ "NN" ], "tourism": [ "NN" ], "Putka": [ "NNP" ], "pre-clinical": [ "JJ" ], "silver-painted": [ "JJ" ], "Weekes": [ "NNP" ], "Nisbet": [ "NNP" ], "Enver": [ "NNP" ], "swooning": [ "NN" ], "glutinous": [ "JJ" ], "tenses": [ "NNS" ], "First-Born": [ "NNP" ], "Coconut": [ "NNP" ], "tensed": [ "VBD" ], "Telefonica": [ "NNP" ], "Well-trained": [ "JJ" ], "GRAND": [ "JJ", "NNP" ], "Liberal": [ "NNP", "JJ", "NN" ], "DC-10s": [ "NNPS", "NNS" ], "vertically": [ "RB" ], "acquainted": [ "VBN" ], "vending": [ "NN", "VBG", "JJ" ], "arsonist": [ "NN" ], "Haase": [ "NNP" ], "utopians": [ "NNS" ], "Gannon": [ "NNP" ], "demography": [ "NN" ], "Moreover": [ "RB", "JJR" ], "passionate": [ "JJ" ], "escalators": [ "NNS" ], "Digest": [ "NNP", "NN" ], "woolly-minded": [ "JJ" ], "Schmidt-Chiari": [ "NNP" ], "obsessions": [ "NNS" ], "Gilkson": [ "NNP" ], "Romana": [ "NNP" ], "pronounce": [ "VB" ], "Analogously": [ "RB" ], "showman": [ "NN" ], "Pembina": [ "NNP" ], "snoring": [ "VBG", "NN" ], "smarting": [ "VBG" ], "prerogatives": [ "NNS" ], "potentiometer": [ "NN" ], "illustrated": [ "VBN", "JJ", "VBD" ], "Shipyard": [ "NNP" ], "Pasteur": [ "NNP" ], "Skies": [ "NNPS" ], "thrust-to-weight": [ "JJ" ], "staff-reduction": [ "NN", "JJ" ], "snake-like": [ "JJ" ], "job-training": [ "NN" ], "Ciardi": [ "NNP" ], "fitness": [ "NN" ], "sixty-day": [ "JJ" ], "Vietnam": [ "NNP" ], "glycerol": [ "NN" ], "Behavior": [ "NN" ], "Assuredly": [ "RB" ], "glomerular": [ "JJ" ], "Intermediates": [ "NNPS", "NNS" ], "long-studied": [ "JJ" ], "R-shaped": [ "JJ" ], "lithograph": [ "NN" ], "city-states": [ "NNS" ], "Images": [ "NNP" ], "most-dangerous": [ "JJ" ], "purported": [ "JJ", "VBD" ], "fertile": [ "JJ" ], "Middletown": [ "NNP" ], "quintets": [ "NNS" ], "cranny": [ "NN" ], "Buaford": [ "NNP" ], "Maintenance": [ "NNP", "NN" ], "certitudes": [ "NNS" ], "Trapped": [ "VBN" ], "pastures": [ "NNS" ], "hassling": [ "VBG" ], "Leperq": [ "NNP" ], "Baruschke": [ "NNP" ], "distracted": [ "VBN", "VBD" ], "collided": [ "VBD" ], "deadlines": [ "NNS" ], "heroine": [ "NN" ], "Appropriation": [ "NNP" ], "practised": [ "JJ" ], "tyrosine": [ "NN" ], "gains-tax-cut": [ "JJ" ], "spicy": [ "JJ" ], "Baliles": [ "NNP" ], "Dorgan": [ "NNP" ], "wholehearted": [ "JJ" ], "Orlick": [ "NNP" ], "pre-kidnap": [ "JJ" ], "Meller": [ "NNP" ], "information-services": [ "JJ", "NNS" ], "Mellen": [ "NNP" ], "whichever-the-hell": [ "JJ" ], "teddy-bear": [ "NN" ], "BATTLED": [ "VBD" ], "Guber": [ "NNP" ], "spice": [ "NN", "VBP", "VB" ], "well-understood": [ "JJ" ], "Eddie": [ "NNP" ], "Angeles-based": [ "JJ" ], "Wheat-germ": [ "NN" ], "powerless": [ "JJ" ], "dawdling": [ "VBG" ], "Hershiser": [ "NNP" ], "aesthetes": [ "NNS" ], "Shijie": [ "NNP" ], "Crucial": [ "JJ" ], "one-sixteenth": [ "NN" ], "undiminished": [ "JJ" ], "examine": [ "VB", "VBP" ], "spat": [ "VBD", "NN" ], "Riding": [ "VBG", "NNP" ], "Weinroth": [ "NNP" ], "Mulligatawny": [ "NNP" ], "casualty": [ "NN" ], "strikers": [ "NNS" ], "Busby": [ "NNP" ], "turmoils": [ "NNS" ], "Cuneo": [ "NNP" ], "designating": [ "VBG" ], "weeded": [ "VBN" ], "Courtenay": [ "NNP" ], "what-nots": [ "NNS" ], "Buddhists": [ "NNP" ], "Somewhat": [ "RB" ], "redeposition": [ "NN" ], "Tse-tung": [ "NNP" ], "painted-in": [ "NN" ], "victimize": [ "VBP" ], "Milko": [ "NNP" ], "Climate": [ "NNP", "NN" ], "deliverers": [ "NNS" ], "FPA": [ "NNP" ], "equitably": [ "RB" ], "Fixed-income": [ "JJ", "NN" ], "FPL": [ "NNP" ], "Yorktown": [ "NNP" ], "custom-made": [ "JJ", "VBN" ], "Milka": [ "NNP" ], "Milky": [ "NNP" ], "Alfredo": [ "NNP" ], "equitable": [ "JJ" ], "itches": [ "VBZ" ], "Beneficial": [ "NNP" ], "blackmailers": [ "NNS" ], "Healthdyne": [ "NNP" ], "wanta": [ "VB" ], "excretion": [ "NN" ], "boosters": [ "NNS" ], "u": [ "PRP", "NN" ], "oases": [ "NNS" ], "double-bolt": [ "VB" ], "grassroots": [ "NNS" ], "Waning": [ "JJ" ], "departmentalizing": [ "VBG" ], "Tomczak": [ "NNP" ], "full-body": [ "JJ" ], "Kaplan": [ "NNP" ], "Asahi": [ "NNP", "NNS" ], "Championship": [ "NNP" ], "McLuhan": [ "NNP" ], "Icahn": [ "NNP" ], "tomes": [ "NNS" ], "PRIME": [ "JJ", "NN", "NNP" ], "puffs": [ "VBZ" ], "Hazlitt": [ "NNP" ], "righted": [ "VBN" ], "Giorgios": [ "NNP" ], "puffy": [ "JJ" ], "plausibility": [ "NN" ], "yon": [ "RB" ], "Socrates": [ "NNP" ], "Calude": [ "NNP" ], "Pels": [ "NNP" ], "Liman": [ "NNP" ], "clench": [ "VB" ], "Objections": [ "NNS" ], "squirted": [ "VBD" ], "forking": [ "VBG" ], "alma": [ "JJ", "NN" ], "phosphines": [ "NNS" ], "diagnometer": [ "NN" ], "Piraro": [ "NNP" ], "CTCA": [ "NNP" ], "Vilnius": [ "NNP" ], "outworn": [ "JJ" ], "clinch": [ "VB" ], "arithmetized": [ "VBN" ], "straighten": [ "VB" ], "Peppers": [ "NNP" ], "squeezes": [ "VBZ", "NNS" ], "late-summer\\": [ "JJ" ], "Corollas": [ "NNPS" ], "repeals": [ "VBZ" ], "Densmore": [ "NNP" ], "Laro": [ "NNP" ], "wrecked": [ "VBD", "JJ", "VBN" ], "trinket": [ "NN" ], "Muffler": [ "NNP" ], "Hydro": [ "NNP" ], "wrecker": [ "NN" ], "fetishize": [ "VBP" ], "hotbed": [ "NN" ], "HCS": [ "NNP" ], "mull": [ "VB" ], "action-adventure": [ "JJ" ], "bushwhacked": [ "VBD" ], "calculates": [ "VBZ" ], "witchy": [ "JJ" ], "mule": [ "NN" ], "HCC": [ "NNP" ], "Georgescu": [ "NNP" ], "HCF": [ "NNP" ], "affectionately": [ "RB" ], "Fishback": [ "NNP" ], "stupor": [ "NN" ], "Clark": [ "NNP" ], "Clare": [ "NNP" ], "squiggly": [ "RB" ], "Clara": [ "NNP" ], "Wrangle": [ "VB" ], "WLIB": [ "NNP" ], "repaying": [ "VBG" ], "Keenan": [ "NNP" ], "Separating": [ "VBG" ], "Marquette": [ "NNP" ], "collated": [ "VBN" ], "specialize": [ "VB", "VBP" ], "Misawa": [ "NNP" ], "splashes": [ "VBZ", "NNS" ], "Reform": [ "NNP", "NN" ], "phasing-out": [ "NN" ], "munchkin": [ "NN" ], "Mmes.": [ "NNPS" ], "rock-ribbed": [ "JJ" ], "Carboni": [ "NNP" ], "Dolly": [ "NNP" ], "pigmented": [ "VBN" ], "Dolls": [ "NNP" ], "composure": [ "NN" ], "correspondent\\/news": [ "NNS" ], "monocytogenes": [ "FW" ], "Bialystok": [ "NNP" ], "anathema": [ "NN" ], "Astrophysicist": [ "NN" ], "Houtz": [ "NNP" ], "Coming": [ "VBG", "NNP" ], "Lekberg": [ "NNP" ], "Governments": [ "NNS", "NNP" ], "Biblically": [ "RB" ], "engaged": [ "VBN", "JJ", "VBD" ], "jangling": [ "VBG" ], "just-departed": [ "JJ" ], "Communist-led": [ "JJ" ], "Byronic": [ "JJ" ], "disfavor": [ "NN" ], "karaoke": [ "FW", "NN" ], "Purcell": [ "NNP" ], "Brody": [ "NNP" ], "hour": [ "NN" ], "recall": [ "VB", "NN", "VBP" ], "sulkily": [ "RB" ], "Activists": [ "NNS" ], "marcato": [ "FW" ], "Stoicism": [ "NN" ], "social-register": [ "JJ" ], "Oregonians": [ "NNPS" ], "remain": [ "VB", "VBP" ], "halts": [ "NNS", "VBZ" ], "reaps": [ "VBZ" ], "proteolytic": [ "JJ" ], "stubborn": [ "JJ" ], "ritual": [ "NN" ], "synchronized": [ "VBN", "JJ" ], "rejuvenated": [ "VBN", "JJ" ], "minimun": [ "NN" ], "collision": [ "NN" ], "minimum": [ "JJ", "JJ|NN", "NN" ], "halfmile": [ "NN" ], "despot": [ "NN" ], "petroleum-exploration": [ "JJ" ], "UNESCO": [ "NNP" ], "Calif": [ "NNP" ], "biography": [ "NN" ], "rejuvenates": [ "VBZ" ], "homicide": [ "NN" ], "Yalta": [ "NNP" ], "Sandhurst": [ "NNP" ], "Mustard": [ "NN" ], "Chromatography": [ "NN", "NNP" ], "misallocated": [ "VBD" ], "technology": [ "NN" ], "comfort": [ "NN", "VB" ], "low-risk": [ "JJ" ], "maps": [ "NNS" ], "Wamre": [ "NNP" ], "Nouns": [ "NNS" ], "stir": [ "VB", "VBP", "NN" ], "Comanches": [ "NNPS" ], "uninfected": [ "JJ" ], "plasmodium": [ "NN" ], "Kelli": [ "NNP" ], "kitty": [ "NN" ], "divinities": [ "NNS" ], "dry-gulchin": [ "NN" ], "spread-sensitive": [ "JJ" ], "Shafroth": [ "NNP" ], "Transplantation": [ "NNP" ], "countering": [ "VBG" ], "accorded": [ "VBN", "VBD" ], "Erde": [ "NNP" ], "verified": [ "VBN" ], "undecided": [ "JJ" ], "reappeared": [ "VBD", "VBN" ], "hair-trigger": [ "JJ" ], "CLARK": [ "NNP" ], "tradeoffs": [ "NNS" ], "conglomerates": [ "NNS" ], "special-service": [ "JJ" ], "Muscular": [ "NNP" ], "dragon": [ "NN" ], "BVIslander": [ "NN" ], "rebuked": [ "VBD", "VBN" ], "co-exist": [ "VB" ], "BROKERAGE": [ "NN" ], "Kurtzig": [ "NNP" ], "Bish": [ "NNP" ], "mulching": [ "VBG" ], "heartfelt": [ "JJ" ], "RAYCHEM": [ "NNP" ], "Creamer": [ "NNP" ], "Roald": [ "NNP" ], "Inefficient-Market": [ "NNP" ], "Canfield": [ "NNP" ], "hundredth": [ "JJ" ], "comedic": [ "JJ" ], "comedie": [ "NN" ], "emaciated": [ "VBN", "JJ" ], "Final-hour": [ "JJ" ], "verifier": [ "NN" ], "seasonally": [ "RB" ], "three-hour-long": [ "JJ" ], "counter-culture": [ "JJ" ], "Jath": [ "NNP" ], "worshiping": [ "VBG" ], "cinches": [ "NNS" ], "Fuchs": [ "NNP" ], "invigoration": [ "NN" ], "Scana": [ "NNP" ], "hyphens": [ "NNS" ], "compound": [ "NN", "JJ", "VB", "VBP" ], "walk-to": [ "JJ" ], "viewers": [ "NNS" ], "groped": [ "VBD" ], "mystery": [ "NN" ], "huddle": [ "NN" ], "Polished": [ "JJ" ], "Chmn.": [ "NNP" ], "Kika": [ "NNP" ], "Super-Sets": [ "NNP" ], "evade": [ "VB" ], "micro": [ "JJ" ], "Merkurs": [ "NNPS" ], "rattail": [ "NN" ], "submarine-launched": [ "JJ" ], "repeating": [ "VBG", "JJ" ], "integrated-circuit": [ "JJ" ], "politicize": [ "VB" ], "fuel-economy": [ "NN" ], "Berle": [ "NNP" ], "above-ceiling": [ "NN" ], "engaging": [ "VBG", "JJ" ], "managements": [ "NNS" ], "suspecting": [ "VBG" ], "edged": [ "VBD", "JJ", "VBN" ], "wisecracks": [ "NNS" ], "bandaged": [ "VBN", "JJ" ], "acquisitive": [ "JJ" ], "Coor": [ "NNP" ], "Braumeisters": [ "NNPS" ], "traitorous": [ "JJ" ], "sickness": [ "NN" ], "T-helper": [ "NN" ], "Cook": [ "NNP", "NN", "VB" ], "evaluation": [ "NN" ], "Cool": [ "JJ", "VB", "NNP" ], "semi-celebrities": [ "NNS" ], "Long-range": [ "JJ" ], "office\\/dept.": [ "NN" ], "backer": [ "NN" ], "extraordinary": [ "JJ", "NN" ], "asked...": [ ":" ], "Enos": [ "NNP" ], "deflate": [ "VB" ], "backed": [ "VBN", "JJ", "VBD" ], "Migliorino": [ "NNP" ], "Nielsen": [ "NNP" ], "faucet": [ "NN" ], "Archbishop": [ "NNP" ], "constraining": [ "VBG" ], "Puritan": [ "NNP", "JJ" ], "white-spirits": [ "JJ" ], "PAPER": [ "NN", "NNP", "NNS" ], "Puritans": [ "NNS" ], "free-spiritedness": [ "NN" ], "bawh": [ "NN" ], "private-bank": [ "JJ" ], "Lorena": [ "NNP" ], "advertisement": [ "NN" ], "Smukler": [ "NNP" ], "treetops": [ "NNS" ], "Homewood": [ "NNP" ], "welcome": [ "JJ", "NN", "VB", "VBP" ], "pituitary-gland": [ "NN" ], "major-burden-to-the-planet": [ "NN" ], "steel-gray": [ "JJ" ], "faultlessly": [ "RB" ], "mercilessly": [ "RB" ], "Screen": [ "NN" ], "WPP": [ "NNP" ], "jetty": [ "NN" ], "Slums": [ "NNP" ], "Environmental": [ "NNP", "JJ" ], "paper-products": [ "NNS", "JJ" ], "four-count": [ "JJ" ], "Silesia": [ "NNP" ], "catapult": [ "VB", "VBP" ], "Justin": [ "NNP" ], "Ballenger": [ "NNP" ], "Napkins": [ "NNS" ], "sea-launched": [ "JJ" ], "differentiate": [ "VB", "VBP" ], "Dividend": [ "NN", "NNP" ], "reedbuck": [ "NN" ], "after-school": [ "JJ" ], "cost-savings": [ "JJ", "NNS" ], "Franklyn": [ "NNP" ], "allurement": [ "NN" ], "Juncal": [ "NNP" ], "third-dimensional": [ "JJ" ], "clear-it-out": [ "JJ" ], "Cimoli": [ "NNP" ], "unbroken": [ "JJ" ], "ONCE": [ "RB" ], "Sprinkel": [ "NNP" ], "swerve": [ "VBP", "NN", "VB" ], "confessional": [ "NN", "JJ" ], "ditcher": [ "NN" ], "focally": [ "RB" ], "Eurocops": [ "NNPS" ], "Amusing": [ "JJ" ], "make-ready": [ "NN" ], "Aterman": [ "NNP" ], "three-quarters": [ "NNS", "NN" ], "Administrative": [ "NNP", "JJ" ], "ditched": [ "VBD" ], "Limitations": [ "NNS", "NNPS" ], "Lucio": [ "NNP" ], "Shoreline": [ "NN" ], "Bernardo": [ "NNP" ], "Ukrainian": [ "JJ", "NNP" ], "Clostridium": [ "NN" ], "Lucie": [ "NNP" ], "Cudahy": [ "NNP" ], "Lucia": [ "NNP" ], "lifts": [ "VBZ", "NNS" ], "zitless": [ "JJ" ], "Laband": [ "NNP" ], "electro-optical": [ "JJ" ], "arbitrager": [ "NN" ], "chary": [ "JJ" ], "frequent-flyer": [ "NN" ], "serene": [ "JJ", "NN" ], "godfather": [ "NN" ], "eggs": [ "NNS" ], "Holes": [ "NNS" ], "chart": [ "NN", "VB", "VBP" ], "serviced": [ "VBN", "VBD" ], "Holen": [ "NNP" ], "charm": [ "NN", "VB" ], "Evans-Black": [ "NNP" ], "services": [ "NNS", "VBZ" ], "Fresh": [ "JJ", "NNP" ], "Taras": [ "NNP" ], "teems": [ "VBZ" ], "Anointing": [ "VBG" ], "honkytonks": [ "NNS" ], "dealer-related": [ "JJ" ], "WATCH": [ "VB" ], "gin": [ "NN" ], "curtain-raiser": [ "NN" ], "Beira": [ "NNP" ], "seething": [ "VBG", "JJ" ], "Rexall": [ "NNP" ], "consanguineous": [ "JJ" ], "chelas": [ "NNS" ], "rebels": [ "NNS", "VBZ" ], "swelling": [ "VBG", "JJ", "NN" ], "charter-shipping": [ "JJ" ], "passer-by": [ "NN" ], "Confident": [ "JJ" ], "shut-in": [ "JJ" ], "Billiken": [ "NNP" ], "headlines": [ "NNS" ], "tight-fistedness": [ "NN" ], "exteriors": [ "NNS" ], "Freeman": [ "NNP" ], "sluggishly": [ "RB" ], "music-making": [ "NN" ], "Sellers": [ "NNP", "NNS" ], "Caterpillar": [ "NNP" ], "Solomon-like": [ "JJ" ], "sanitize": [ "VBP" ], "thruways": [ "RB" ], "Concluding": [ "VBG" ], "unagi": [ "FW" ], "general-insurance": [ "NN" ], "Keeny": [ "NNP" ], "City-based": [ "JJ" ], "U.N.-monitored": [ "JJ" ], "Guilford-Martin": [ "NNP" ], "Favorite": [ "NNP", "JJ" ], "toddlers": [ "NNS" ], "mid-1950s": [ "NNS" ], "rotted": [ "VBN" ], "Amending": [ "VBG" ], "irresolution": [ "NN" ], "methanol-powered": [ "JJ" ], "judiciously": [ "RB" ], "Keene": [ "NNP" ], "Riddle": [ "NN" ], "Scenarios": [ "NNS" ], "spikes": [ "NNS" ], "motorcycles": [ "NNS" ], "Distributors": [ "NNS", "NNPS", "NNP" ], "enclaves": [ "NNS" ], "Lucullan": [ "JJ" ], "Ecogen": [ "NNP" ], "Minneapolis": [ "NNP", "NNS" ], "motorcycled": [ "VBD" ], "pre-production": [ "JJ" ], "spiked": [ "JJ", "VBN" ], "Female": [ "JJ" ], "Apologies": [ "NNS" ], "restaurants": [ "NNS" ], "light-flared": [ "JJ" ], "Morse": [ "NNP" ], "semi-finished": [ "JJ" ], "semisecret": [ "JJ" ], "overburdened": [ "VBN", "JJ", "VBD" ], "short-contact": [ "JJ" ], "internationalist": [ "JJ" ], "Woodside": [ "NNP" ], "Omnicorp": [ "NNP" ], "Sigemund": [ "NNP" ], "GET": [ "VB" ], "antimaterialism": [ "NN" ], "GE\\": [ "NNP" ], "GEC": [ "NNP" ], "cahoots": [ "NNS" ], "eight-year": [ "JJ" ], "Richards": [ "NNP" ], "internationalism": [ "NN" ], "Bayaderka": [ "NNP" ], "Superstar": [ "NNP" ], "rbi": [ "NNS" ], "trustingly": [ "RB" ], "mailbox": [ "NN" ], "Archibald": [ "NNP" ], "premise": [ "NN" ], "mirth": [ "NN" ], "plutonium-powered": [ "JJ" ], "inimitable": [ "JJ" ], "axiom": [ "NN" ], "glorification": [ "NN" ], "Detective": [ "NNP" ], "Yeh": [ "NNP" ], "defunct": [ "JJ", "VB" ], "Slower": [ "JJR" ], "docudrama": [ "NN" ], "appropriations": [ "NNS" ], "Yea": [ "UH" ], "Gann": [ "NNP" ], "foreign": [ "JJ" ], "sparring": [ "VBG", "NN" ], "Reservoirs": [ "NNP" ], "suede": [ "NN" ], "Carving": [ "NN" ], "focused": [ "VBN", "JJ", "VBD" ], "Dawson": [ "NNP" ], "anlayst": [ "NN" ], "Yet": [ "RB", "RB|CC", "CC" ], "Yew": [ "NNP", "NN" ], "subpar": [ "JJ" ], "combinable": [ "JJ" ], "duplicable": [ "JJ" ], "Surrounded": [ "VBN" ], "Rastus": [ "NNP" ], "panicking": [ "VBG" ], "undersecretary": [ "NN" ], "Schaumburg": [ "NNP" ], "cross-functional": [ "JJ" ], "non-instinctive": [ "JJ" ], "Institut": [ "NNP" ], "sinuousness": [ "NN" ], "Checks": [ "NNS" ], "Defendant": [ "NN" ], "Khmer": [ "NNP" ], "fused": [ "VBN", "VBD" ], "Middenstandsbank": [ "NNP" ], "viscometer": [ "NN" ], "Wendell": [ "NNP" ], "apostle": [ "NN" ], "Processing": [ "NNP", "NN", "VBG" ], "appall": [ "VBP" ], "TV-Cable": [ "NNP" ], "screened": [ "VBN", "VBD" ], "grandsons": [ "NNS" ], "peppery": [ "JJ" ], "fuses": [ "NNS" ], "peppers": [ "NNS" ], "middle-of-the-roaders": [ "NNS" ], "nukes": [ "NNS" ], "freelancing": [ "NN" ], "assorted": [ "JJ", "VBN" ], "ineptitude": [ "NN" ], "decorous": [ "JJ" ], "roved": [ "VBD" ], "non-Germans": [ "NNS" ], "two-valued": [ "JJ" ], "Stockholm": [ "NNP", "NN" ], "Rory": [ "NNP" ], "resisted": [ "VBN", "VBD" ], "outriggers": [ "NNS" ], "patriarchy": [ "NN" ], "evangelical": [ "JJ" ], "Indications": [ "NNS" ], "dicks": [ "NNS" ], "politician": [ "NN" ], "Pohly": [ "NNP" ], "deferred": [ "VBN", "VBD", "JJ" ], "skiff": [ "NN" ], "teaspoonful": [ "JJ", "NN" ], "mechanochemically": [ "RB" ], "Institue": [ "NNP" ], "radiosterilized": [ "VBN" ], "Rehfeld": [ "NNP" ], "escheat": [ "NN" ], "century": [ "NN" ], "perilously": [ "RB" ], "Irv": [ "NN" ], "audience-friendly": [ "JJ" ], "Delay": [ "NNP", "NN" ], "confining": [ "VBG" ], "DataQuest": [ "NNP" ], "stoves": [ "NNS" ], "Ira": [ "NNP" ], "Elliott": [ "NNP" ], "Ahm": [ "PRP" ], "all-important": [ "JJ" ], "urethra": [ "NN" ], "ethylene": [ "NN" ], "infernally": [ "RB" ], "Copp": [ "NNP" ], "lap-shoulder": [ "JJ" ], "Sonnenschein": [ "NNP" ], "bristle": [ "VBP", "VB", "NN" ], "Heine": [ "NNP" ], "Copy": [ "NNP", "VBP", "NN" ], "riddling": [ "VBG" ], "currencies": [ "NNS" ], "Cash-pressed": [ "JJ" ], "PETROLEUM": [ "NNP" ], "deterrence...": [ ":" ], "SISAL": [ "NNP" ], "stripe": [ "NN" ], "unveil": [ "VB" ], "LVI": [ "NNP" ], "horse-drawn": [ "JJ" ], "gestures": [ "NNS", "VBZ" ], "organically": [ "RB" ], "Serving": [ "VBG" ], "whores": [ "NNS" ], "PLANS": [ "VBZ" ], "Plainly": [ "RB" ], "Councils": [ "NNPS" ], "Healthvest": [ "NNP" ], "Superconductivity": [ "NN" ], "Carolus": [ "NNP" ], "iffy": [ "JJ" ], "Economic": [ "NNP", "JJ" ], "Insitutional": [ "JJ" ], "briquettes": [ "NNS" ], "Fiscal-year": [ "JJ" ], "consumer-minded": [ "JJ" ], "know\\/no": [ "NN" ], "Albany": [ "NNP", "NN" ], "criss-cross": [ "VBP", "JJ" ], "Kennewick": [ "NNP" ], "Obispo": [ "NNP" ], "zestfully": [ "RB" ], "segregate": [ "VB" ], "Boren": [ "NNP" ], "Picon": [ "NNP" ], "shrewdly": [ "RB" ], "Minolta": [ "NNP" ], "place-names": [ "NN", "NNS" ], "choreographers": [ "NNS" ], "Aspirin": [ "NNP" ], "McGann": [ "NNP" ], "postal": [ "JJ" ], "Proprietorships": [ "NNP", "NNS" ], "PROPOSE": [ "VB" ], "adjusters": [ "NNS" ], "coal-black": [ "JJ" ], "studious": [ "JJ" ], "Christopher": [ "NNP" ], "impassible": [ "JJ" ], "clamping": [ "VBG" ], "Astra": [ "NNP" ], "per-ad": [ "JJ" ], "Belknap": [ "NNP" ], "malfunctions": [ "NNS" ], "Commons": [ "NNP", "NN", "NNPS" ], "Truth": [ "NN", "NNP" ], "bribing": [ "VBG" ], "knock": [ "VB", "VBP", "NN" ], "Butterwyn": [ "NNP" ], "L-shaped": [ "JJ" ], "hard-wire": [ "JJ" ], "preradiation": [ "NN" ], "objectiveness": [ "NN" ], "parsimonious": [ "JJ" ], "borrows": [ "VBZ" ], "loyalist": [ "NN", "JJ" ], "foolish": [ "JJ" ], "machinegun": [ "NN" ], "Happens": [ "VBZ" ], "outscored": [ "VBD" ], "drill-bit": [ "NN" ], "lastest": [ "JJS" ], "Fischbach": [ "NNP" ], "Deliberately": [ "RB" ], "blow": [ "NN", "VB", "VBP" ], "re-regulation": [ "NN" ], "TALENT": [ "NN" ], "infliction": [ "NN" ], "scalps": [ "NNS" ], "Togs": [ "NNP" ], "balmy": [ "JJ" ], "phantasy": [ "NN" ], "pleats": [ "NNS" ], "revenue-desperate": [ "JJ" ], "fixations": [ "NNS" ], "inimical": [ "JJ" ], "Ambridge": [ "NNP" ], "Bosket": [ "NNP" ], "Freni": [ "NNP" ], "Cascade": [ "NNP" ], "Sourcing": [ "VBG" ], "self-published": [ "JJ" ], "Birkel": [ "NNP" ], "feigning": [ "VBG" ], "Nomani": [ "NNP" ], "Cocoa": [ "NNP", "NN" ], "canvassing": [ "VBG" ], "Cocom": [ "NNP" ], "hindrances": [ "NNS" ], "buffoons": [ "NNS" ], "tiff": [ "NN" ], "abusive": [ "JJ" ], "retailer": [ "NN" ], "seating": [ "NN", "VBG" ], "English-rights": [ "JJ" ], "Increase": [ "VB", "NN", "NNP" ], "inhospitable": [ "JJ" ], "Oberkfell": [ "NNP" ], "retailed": [ "VBN" ], "Zaroubin": [ "NNP" ], "locking-in": [ "NN" ], "U.S.-style": [ "JJ" ], "Feeley": [ "NNP" ], "police-dodging": [ "NN" ], "underused": [ "VBN" ], "Cordis": [ "NNP" ], "out-plunging": [ "JJ" ], "underlines": [ "VBZ" ], "Esperanza": [ "NNP" ], "Stephenson": [ "NNP" ], "exterminated": [ "VBN" ], "Filter": [ "NNP" ], "mechanistic": [ "JJ" ], "underlined": [ "VBD", "VBN" ], "Supply-sider": [ "NNP" ], "HONECKER": [ "NNP" ], "Beijing": [ "NNP", "VBG" ], "pickers": [ "NNS" ], "CORNUCOPIA": [ "NN" ], "Kazakh": [ "NNP" ], "corkscrews": [ "NNS" ], "Bennett": [ "NNP", "NN" ], "Groucho": [ "NNP" ], "drug-traffickers": [ "NNS" ], "market-specific": [ "JJ" ], "Potala": [ "NNP" ], "curt": [ "JJ" ], "constant": [ "JJ", "NN", "RB" ], "pseudonymous": [ "JJ" ], "GORBACHEV": [ "NNP" ], "beckoning": [ "VBG", "NN" ], "scarlet": [ "JJ" ], "Charisma": [ "NNP" ], "cure": [ "NN", "VBP", "VB" ], "network-writer": [ "JJ" ], "fabricating": [ "VBG", "NN" ], "Linda": [ "NNP" ], "curl": [ "VB", "VBP" ], "stripper": [ "NN" ], "Municipalities": [ "NNS" ], "pecks": [ "NNS" ], "Commissioned": [ "VBN" ], "Neo-Classicists": [ "NNPS" ], "mayonnaise": [ "NN" ], "confine": [ "VB", "VBP" ], "dark-green": [ "JJ" ], "Advance": [ "NNP", "JJ" ], "Bowles": [ "NNP" ], "Kleiman": [ "NNP" ], "Slogan": [ "NNP" ], "endocrine": [ "JJ" ], "marijuana-smuggling": [ "JJ" ], "less-risky": [ "JJ" ], "showgirls": [ "NNS" ], "HDTV": [ "NN", "NNP" ], "Hainan": [ "NNP" ], "cater": [ "VBP", "VB" ], "utterly": [ "RB" ], "fructose": [ "NN" ], "balm-of-Gilead": [ "NN" ], "unenforceable": [ "JJ" ], "reflectors": [ "NNS" ], "Bartville": [ "NNP" ], "Taft": [ "NNP" ], "implies": [ "VBZ" ], "cooker": [ "NN" ], "healers": [ "NNS" ], "red-and-yellow": [ "JJ" ], "mortgage-interest": [ "JJ" ], "cooked": [ "VBN", "VBD" ], "implied": [ "VBN", "JJ", "VBD" ], "Determine": [ "VB" ], "razing": [ "VBG" ], "uterus": [ "NN" ], "conjugal": [ "JJ" ], "verstrichen": [ "FW" ], "Voegelin": [ "NNP" ], "portraying": [ "VBG" ], "groceries": [ "NNS" ], "fascinatingly": [ "RB" ], "Coons": [ "NNP" ], "Angelina": [ "NNP" ], "marveled": [ "VBD", "VBN" ], "Bonds": [ "NNS", "NNP", "NNPS" ], "Gatsby-in-reverse": [ "NN" ], "ill-suited": [ "JJ" ], "reductions": [ "NNS" ], "Prepayments": [ "NNS" ], "masculine": [ "JJ", "NN" ], "Sietsma": [ "NNP" ], "pleasing": [ "JJ", "NN", "VBG" ], "NTSB": [ "NNP" ], "nervousness": [ "NN" ], "Redoute": [ "NNP" ], "proctor": [ "NN" ], "presently": [ "RB" ], "Sportswriters": [ "NNS" ], "Ibbotson": [ "NNP" ], "radiophonic": [ "JJ" ], "startlingly": [ "RB" ], "hoards": [ "NNS" ], "uttuh": [ "VB" ], "entire": [ "JJ", "NN" ], "economic-reform": [ "JJ", "NN" ], "diverging": [ "VBG" ], "A.N.": [ "NNP" ], "RepublicBank": [ "NNP" ], "Gatos": [ "NNP" ], "busier": [ "JJR" ], "busies": [ "NNS" ], "pre-emancipation": [ "NN" ], "flex-time": [ "JJ" ], "havens": [ "NNS" ], "Timken": [ "NNP" ], "Sacred": [ "NNP" ], "Howard": [ "NNP", "RP", "NNPS" ], "Neoax": [ "NNP" ], "Onsets": [ "NNS" ], "Fast": [ "NNP", "JJ" ], "Birns": [ "NNP" ], "squabble": [ "NN" ], "Faso": [ "NNP" ], "wider-than-normal": [ "JJ" ], "repurchased": [ "VBN", "VBD" ], "par-5": [ "JJ" ], "par-3": [ "NN" ], "emigrations": [ "NNS" ], "fat": [ "JJ", "NN" ], "IUD": [ "NNP" ], "Butts": [ "NNP" ], "Necessity": [ "NN" ], "Butte": [ "NNP" ], "employerpaid": [ "JJ" ], "Tindal": [ "NNP" ], "Nugget": [ "NNP" ], "apologetic": [ "JJ" ], "vexatious": [ "JJ" ], "Afranio": [ "NNP" ], "packing": [ "VBG", "NN" ], "healing": [ "NN", "JJ", "VBG" ], "pinch-hitter": [ "NN" ], "safer": [ "JJR" ], "DEVELOPMENTS": [ "NNPS" ], "million-gallon": [ "JJ" ], "Oreos": [ "NNPS" ], "windfalls": [ "NNS" ], "Jennifer": [ "NNP" ], "Correll": [ "NNP" ], "Henritze": [ "NNP" ], "Week-end": [ "NN" ], "implement": [ "VB", "VBP" ], "depressant": [ "NN" ], "Reedville": [ "NNP" ], "absolutes": [ "NNS" ], "bumming": [ "VBG" ], "obsolesence": [ "NN" ], "light-duty": [ "JJ" ], "Starlings": [ "NNS" ], "Beneficiary": [ "NN" ], "Rhode": [ "NNP" ], "Rhoda": [ "NNP" ], "Batchelder": [ "NNP" ], "over-50": [ "JJ" ], "Answer": [ "NN", "VB" ], "welcomed": [ "VBD", "VBN" ], "Aston": [ "NNP" ], "oilfields": [ "NNS" ], "abhorrently": [ "RB" ], "Tarter": [ "NNP" ], "Garrin": [ "NNP" ], "Mentality": [ "NN" ], "hammered": [ "VBN", "VBD" ], "once-moribund": [ "JJ" ], "little-known": [ "JJ" ], "totality": [ "NN" ], "year-ago": [ "JJ" ], "Eastman": [ "NNP" ], "Astor": [ "NNP" ], "prized": [ "VBN", "JJ" ], "disgust": [ "NN" ], "locker-room": [ "NN" ], "Honest": [ "UH" ], "Revolution": [ "NNP", "NN" ], "prizes": [ "NNS", "VBZ" ], "Latour": [ "NNP" ], "many-bodied": [ "JJ" ], "steroid-induced": [ "JJ" ], "silvery": [ "JJ" ], "headstands": [ "NNS" ], "non-communist": [ "JJ" ], "fooling": [ "VBG", "NN" ], "jeers": [ "NNS" ], "tobacco-product": [ "JJ" ], "grated": [ "VBD", "JJ" ], "public-asset": [ "JJ" ], "closing": [ "VBG", "JJ", "NN", "VBG|NN" ], "Asylum": [ "NNP" ], "fetch": [ "VB", "VBP" ], "experiential": [ "JJ" ], "blabs": [ "VBZ" ], "Camping": [ "NN" ], "invoices": [ "NNS" ], "teamster": [ "NN" ], "lammed": [ "VBD" ], "McGeorge": [ "NNP" ], "homoerotic": [ "JJ" ], "Meninas": [ "NNP" ], "hair-care": [ "NN", "JJ" ], "well-wishing": [ "NN" ], "Chapdelaine": [ "NNP" ], "varied": [ "VBN", "VBD", "JJ" ], "Yo": [ "NNP" ], "Worrell": [ "NNP" ], "Drink": [ "VB", "NN" ], "Ye": [ "NNP" ], "Fridge": [ "NNP" ], "Respondents": [ "NNS" ], "KFC": [ "NNP" ], "NZ$": [ "$" ], "Yr": [ "NN" ], "Yu": [ "NNP" ], "profile": [ "NN", "JJ", "VB" ], "Riegle": [ "NNP" ], "rumpus": [ "NN" ], "incompetence": [ "NN" ], "leukemia": [ "NN" ], "Washington-Alexandria": [ "NNP" ], "dockyards": [ "NNS" ], "incompetency": [ "NN" ], "beer-runner": [ "NN" ], "Hedison": [ "NNP" ], "pleasantness": [ "NN" ], "Gosson": [ "NNP" ], "chasing": [ "VBG", "NN" ], "friendlier": [ "JJR", "RBR" ], "Texas-Louisiana": [ "NNP" ], "Y.": [ "NNP" ], "interviewees": [ "NNS" ], "nonworking": [ "JJ" ], "miscues": [ "NNS" ], "trembling": [ "VBG", "JJ" ], "year...": [ ":" ], "sensitively": [ "RB" ], "Adultery": [ "NNP" ], "furious": [ "JJ" ], "solos": [ "NNS", "VBZ" ], "subsequently": [ "RB" ], "B-52": [ "NNP", "NN" ], "cease-fire": [ "NN", "JJ" ], "rutted": [ "JJ" ], "disarm": [ "VB" ], "Theatres": [ "NNP" ], "McMillin": [ "NNP" ], "east-west": [ "JJ" ], "flattering": [ "JJ" ], "electors": [ "NNS" ], "Rotman": [ "NNP" ], "enactments": [ "NNS" ], "twirls": [ "VBZ" ], "Legislators": [ "NNS" ], "integrators": [ "NNS" ], "twirly": [ "JJ" ], "wadded": [ "VBD" ], "accredited": [ "VBD", "VBN" ], "bull-necked": [ "JJ" ], "blatant": [ "JJ" ], "circumspectly": [ "RB" ], "disrupts": [ "VBZ" ], "youngish": [ "JJ" ], "sapling": [ "NN" ], "bolder": [ "JJR" ], "Nickelodeon": [ "NNP" ], "century-old": [ "JJ" ], "Robie": [ "NNP" ], "LeMans": [ "NNP" ], "tetragonal": [ "JJ" ], "ineffably": [ "RB" ], "Robin": [ "NNP" ], "building-control": [ "NN" ], "flail": [ "NN" ], "frayed": [ "JJ", "VBN" ], "blindfolded": [ "VBN", "JJ", "VBD" ], "shelf-registered": [ "JJ" ], "Indicated": [ "VBD" ], "Gari": [ "NNP" ], "mammals": [ "NNS" ], "Kailin": [ "NNP" ], "cowhide": [ "NN" ], "Moroccan": [ "NNP", "JJ" ], "Gary": [ "NNP" ], "Talsky": [ "NNP" ], "theatergoing": [ "JJ" ], "Sanjay": [ "NNP" ], "two-inch": [ "JJ" ], "footsy": [ "NN" ], "-ism": [ "NN" ], "pantry": [ "NN" ], "recoated": [ "VBN" ], "Finucane": [ "NNP" ], "Print": [ "VB" ], "table-top": [ "JJ" ], "sexual": [ "JJ" ], "Prins": [ "NNP" ], "Kaliniak": [ "NNP" ], "Griston": [ "NNP" ], "Nu": [ "NNP" ], "Hein": [ "NNP" ], "Ching": [ "NNP" ], "China": [ "NNP" ], "barley": [ "NN" ], "Chino": [ "NNP" ], "Chinn": [ "NNP" ], "tradeable": [ "JJ" ], "Bostonian": [ "NNP" ], "Kakita": [ "NNP" ], "Trappist": [ "JJ" ], "fluctuates": [ "VBZ" ], "NJ": [ "NNP" ], "Natick": [ "NNP" ], "Picks": [ "VBZ" ], "fluctuated": [ "VBD", "VBN" ], "Manhattan-based": [ "JJ" ], "goitrogens": [ "NNS" ], "Exceptions": [ "NNS" ], "Specific": [ "JJ" ], "Outlook": [ "NN", "NNP" ], "yard": [ "NN" ], "Durban": [ "NNP" ], "candle-lit": [ "JJ" ], "hinting": [ "VBG" ], "better-educated": [ "JJ" ], "yarn": [ "NN" ], "dumbbell": [ "NN" ], "Rothwell": [ "NNP" ], "V-8": [ "JJ", "NNP" ], "V-6": [ "NNP", "JJ", "NN" ], "Sammy": [ "NNP" ], "Adsi": [ "NNP" ], "handier": [ "JJR" ], "seventy-six": [ "JJ" ], "braced": [ "VBN", "VBD" ], "Emhart": [ "NNP" ], "reaches": [ "VBZ", "NNS" ], "glanders": [ "NNS" ], "Pickup": [ "NNP" ], "Tuitions": [ "NNS" ], "guidebook": [ "NN" ], "Necesarily": [ "NNP" ], "reached": [ "VBN", "VBD" ], "hashes": [ "NNS" ], "braces": [ "NNS" ], "presuming": [ "VBG" ], "pershare": [ "JJ" ], "MANAGEMENT": [ "NNP" ], "coffee-roasting": [ "JJ" ], "Symbol": [ "NN", "NNP" ], "Inheritance": [ "NN" ], "demythologized": [ "VBN", "JJ" ], "paxam": [ "NN" ], "intermediate": [ "JJ" ], "then-Vice": [ "NNP", "JJ" ], "student-directed": [ "JJ" ], "acquiescence": [ "NN" ], "programmable": [ "JJ" ], "cartoonlike": [ "JJ" ], "malapropism": [ "NN" ], "rifle-shotgun": [ "NN" ], "bulldog": [ "JJ" ], "hesitatingly": [ "RB" ], "Gainen": [ "NNP" ], "overexpansion": [ "NN" ], "unsubtle": [ "JJ" ], "Hartweger": [ "NNP" ], "NP": [ "NNP" ], "Gaines": [ "NNP" ], "three-front": [ "JJ" ], "inapt": [ "JJ" ], "coughed": [ "VBD", "VBN" ], "opposition-party": [ "JJ" ], "Pound": [ "NNP", "NN" ], "Portraits": [ "NNPS" ], "Agnese": [ "NNP" ], "Sabrina": [ "NN", "NNP" ], "long-term``": [ "``" ], "tenements": [ "NNS" ], "Stirs": [ "VBZ" ], "Battista": [ "NNP" ], "mastodons": [ "NNS" ], "anthropologist": [ "NN" ], "men-folk": [ "NNS" ], "Hagood": [ "NNP" ], "FRINGE-BENEFIT": [ "JJ" ], "Newhart": [ "NNP" ], "yearned": [ "VBD", "VBN" ], "have": [ "VBP", "JJ", "NN", "VB", "VBN" ], "Dollar-De": [ "NNP" ], "Bacarella": [ "NNP" ], "continents": [ "NNS" ], "black-and-yellow": [ "JJ" ], "shoestrings": [ "NNS" ], "million-share": [ "JJ", "NN" ], "gingerly": [ "RB", "JJ" ], "precipice": [ "NN" ], "capital-to-assets": [ "JJ", "NNS" ], "whistle-stop": [ "JJ" ], "computer-edited": [ "JJ" ], "Omission": [ "NN" ], "LeGere": [ "NNP" ], "Meggs": [ "NNP", "NNS" ], "super-regulator": [ "NN" ], "Morley": [ "NNP" ], "postition": [ "NN" ], "orchestrations": [ "NNS" ], "Scientology": [ "NNP" ], "mimics": [ "NNS", "VBZ" ], "Rafer": [ "NNP" ], "enamels": [ "NNS" ], "clinkers": [ "NNS" ], "prisoner": [ "NN" ], "payment": [ "NN" ], "inexorable": [ "JJ" ], "beets": [ "NNS" ], "misrelated": [ "VBN" ], "disease": [ "NN" ], "deuterium": [ "NN" ], "Banca": [ "NNP" ], "MICROPOLIS": [ "NNP" ], "occasion": [ "NN", "VB" ], "Banco": [ "NNP" ], "contemptuous": [ "JJ" ], "inexorably": [ "RB" ], "squeegee": [ "VBP" ], "Gonzalez": [ "NNP" ], "recess": [ "NN" ], "Britten": [ "NNP", "NN" ], "ejaculated": [ "VBD" ], "Capshaw": [ "NNP" ], "demurred": [ "VBD" ], "Wheelabrator": [ "NNP" ], "hamlet": [ "NN" ], "trustfully": [ "RB" ], "shutoff": [ "NN" ], "submachine": [ "JJ" ], "definable": [ "JJ" ], "ImmunoGen": [ "NNP" ], "demurrer": [ "NN" ], "Pysllium": [ "NN" ], "Snezak": [ "NNP" ], "freedom-conscious": [ "JJ" ], "Colodny": [ "NNP" ], "knowledge": [ "NN" ], "short-seller": [ "NN" ], "Doner": [ "NNP" ], "Vanessa": [ "NNP" ], "no-hit": [ "JJ" ], "sonofabitch": [ "NN" ], "cohesiveness": [ "NN" ], "Arau": [ "NNP" ], "front-office": [ "NN" ], "standard-weight": [ "JJ" ], "emitting": [ "VBG" ], "Handelsbank": [ "NNP" ], "Hummerstone": [ "NNP" ], "Thrift": [ "NNP", "NN" ], "Casanovas": [ "NNPS" ], "hijacking": [ "NN", "VBG" ], "Finnish": [ "JJ" ], "feed-grain": [ "NN" ], "reputations": [ "NNS" ], "microelectronic": [ "JJ" ], "Winnick": [ "NNP" ], "Husak": [ "NNP" ], "Blevins": [ "NNPS" ], "Gaffney": [ "NNP" ], "subways": [ "NNS" ], "teams": [ "NNS", "VBZ" ], "Helaba": [ "NNP" ], "PITCH": [ "NNP" ], "excesses": [ "NNS" ], "Zoe": [ "NNP" ], "hypophyseal": [ "JJ" ], "CONSOLIDATED": [ "NNP" ], "GNP-based": [ "JJ" ], "showdown": [ "NN" ], "metal-hydrido": [ "NN" ], "polyphosphates": [ "NNS" ], "Zoo": [ "NNP" ], "LEAVE": [ "NN" ], "teakwood": [ "NN" ], "daffodils": [ "NNS" ], "Vanuatu": [ "NNP" ], "tuxedos": [ "NNS" ], "Juliber": [ "NNP" ], "Squaresville": [ "NNP" ], "Pettibone": [ "NNP" ], "brunt": [ "NN" ], "Discreet": [ "JJ" ], "wean": [ "VB" ], "invariant": [ "JJ", "NN" ], "tediously": [ "RB" ], "b-Week": [ "NN", "LS|NN" ], "dirty": [ "JJ", "VB" ], "antiquarians": [ "NNS" ], "Nonelectrical": [ "JJ" ], "various": [ "JJ" ], "Incline": [ "NNP" ], "weak": [ "JJ" ], "Inexpensive": [ "JJ" ], "antics": [ "NNS" ], "Elvador": [ "NNP" ], "Financings": [ "NNS" ], "watts": [ "NNS" ], "Tompkins": [ "NNP" ], "effluent": [ "NN", "JJ" ], "Osamu": [ "NNP" ], "revoked": [ "VBN" ], "UAP": [ "NNP" ], "joke": [ "NN", "VBP", "VB" ], "equal": [ "JJ", "NN", "VB", "VBP" ], "pulp": [ "NN", "VB" ], "Byrnes": [ "NNP" ], "liquidating": [ "VBG", "JJ", "NN" ], "politicizing": [ "VBG" ], "placebo": [ "NN" ], "statues": [ "NNS" ], "bond-market": [ "JJ" ], "treasure-trove": [ "NN" ], "disarmament": [ "NN" ], "coexistence": [ "NN" ], "Piscataway": [ "NNP" ], "Machinists": [ "NNS", "NNS|NPS", "NNPS", "NNP" ], "liquidations": [ "NNS" ], "Miklos": [ "NNP" ], "Musica": [ "NNP" ], "Buffet": [ "NNP" ], "honeysuckle": [ "NN" ], "manhood": [ "NN" ], "tax-law": [ "NN", "JJ" ], "asphyxia": [ "NN" ], "playwrights": [ "NNS" ], "magnetized": [ "VBN" ], "devoting": [ "VBG" ], "self-aggrandizing": [ "JJ" ], "Thailand": [ "NNP", "NN" ], "Huerta": [ "NNP" ], "supermarket-refrigeration": [ "NN" ], "thrift-industry": [ "NN", "JJ" ], "EXCHANGE": [ "NN" ], "hard-core": [ "JJ" ], "Massachussets": [ "NNP" ], "Parsow": [ "NNP" ], "Trevor": [ "NNP" ], "Airlines": [ "NNPS", "NNP", "NNS" ], "musicality": [ "NN" ], "Parson": [ "NNP" ], "airline-industry": [ "NN" ], "watcher": [ "NN" ], "advance-purchase": [ "JJ", "NN" ], "emergency-relief": [ "NN" ], "welcoming": [ "VBG", "NN", "JJ" ], "Arigato": [ "FW" ], "super-experiment": [ "NN" ], "Spruell": [ "NNP" ], "Tissues": [ "NNPS" ], "limited-scale": [ "JJ" ], "General": [ "NNP", "JJ" ], "Nunn": [ "NNP" ], "Pricing": [ "NN", "NNP", "VBG" ], "THREAT": [ "NN" ], "hubs": [ "NNS" ], "ensuing": [ "VBG" ], "outshone": [ "NN" ], "frustrating": [ "JJ", "VBG" ], "lassitude": [ "NN" ], "liberal-democratic": [ "JJ" ], "Carty": [ "NNP" ], "movie-to-be": [ "NN" ], "workplaces": [ "NNS" ], "weighed": [ "VBD", "VBN" ], "arrangements": [ "NNS" ], "closets": [ "NNS" ], "marginalia": [ "NNS" ], "watched": [ "VBD", "VBN", "JJ" ], "Beach": [ "NNP", "NN" ], "corporate-lending": [ "JJ" ], "tumbled": [ "VBD", "VBN", "JJ" ], "whirl": [ "NN", "VB", "VBP" ], "diety": [ "NN" ], "Fever": [ "NN" ], "Return": [ "NN", "NNP", "VB" ], "Schuette": [ "NNP" ], "MBK": [ "NNP" ], "diets": [ "NNS" ], "MBE": [ "NNP" ], "DiSimone": [ "NNP" ], "MBA": [ "NN", "NNP" ], "MBB": [ "NNP" ], "target-language": [ "NN" ], "sugar-coated": [ "JJ" ], "Polo\\/Ralph": [ "NNP" ], "tumbler": [ "NN" ], "Postel": [ "NNP" ], "powerboat": [ "NN" ], "Posted": [ "VBN", "VBD" ], "garish": [ "JJ" ], "Pemex": [ "NNP" ], "Prevents": [ "VBZ" ], "Aims": [ "VBZ" ], "sauna": [ "NN" ], "Groves": [ "NNP" ], "Grover": [ "NNP" ], "Haste": [ "NN" ], "noncommittally": [ "RB" ], "yoga": [ "NN" ], "unfetter": [ "VB" ], "C.R.": [ "NNP" ], "Westminister": [ "NNP" ], "Pasquale": [ "NNP" ], "disoriented": [ "VBN", "JJ" ], "exceedingly": [ "RB" ], "wobbled": [ "VBD", "VBN" ], "residuals": [ "NNS" ], "redeemable": [ "JJ" ], "Warshaw": [ "NNP" ], "comparisons": [ "NNS" ], "multibilliondollar": [ "JJ" ], "wreckage": [ "NN" ], "Weimar": [ "NNP" ], "stores": [ "NNS", "VBZ" ], "numbering": [ "VBG", "NN" ], "diskette": [ "NN" ], "interim": [ "JJ", "NN" ], "Collected": [ "NNP" ], "localize": [ "VB" ], "flashlight": [ "NN" ], "nerve-shattering": [ "JJ" ], "Aspects": [ "NNPS" ], "repetitious": [ "JJ" ], "reformer": [ "JJ", "NN" ], "onward": [ "RB" ], "demographic": [ "JJ" ], "future-time": [ "JJ" ], "ductwork": [ "NN" ], "slits": [ "NNS", "VBZ" ], "Jacobius": [ "NNP" ], "tremulously": [ "RB" ], "Heiko": [ "NNP" ], "embossed": [ "VBD", "VBN" ], "bishops": [ "NNS" ], "reformed": [ "VBN", "JJ", "VBD" ], "characteristically": [ "RB" ], "resolved": [ "VBN", "VBD" ], "footholds": [ "NNS" ], "co-founders": [ "NNS" ], "Thread": [ "VB" ], "Madrigal": [ "NNP" ], "Hadley": [ "NNP" ], "Gran": [ "NNP", "NN" ], "Threat": [ "NN" ], "resolves": [ "VBZ" ], "Release": [ "NNP", "NN", "VB" ], "bailiff": [ "NN" ], "futures-market": [ "NN" ], "computer-age": [ "JJ" ], "Inflammatory": [ "JJ" ], "like": [ "IN", "JJ", "NN", "VB", "VBP" ], "minicomputer": [ "NN" ], "vibrant": [ "JJ" ], "Niem": [ "NNP" ], "admitted": [ "VBD", "VBN", "JJ" ], "Anders": [ "NNP" ], "H/NNP.A.": [ "NN" ], "chick": [ "NN" ], "job-hunting": [ "JJ" ], "kaleidoscope": [ "NN" ], "coin-cleaning": [ "JJ" ], "one-year-old": [ "JJ" ], "Heldring": [ "NNP" ], "foamed-in-place": [ "JJ" ], "Wasatch": [ "NNP" ], "Meyerbeer": [ "NNP" ], "Arney": [ "NNP" ], "scurried": [ "VBD" ], "federal-court": [ "JJ", "NN" ], "Arai": [ "NNP" ], "hail": [ "NN", "VB", "VBP" ], "hair": [ "NN" ], "Tribune-Democrat": [ "NNP" ], "Palatine": [ "NNP" ], "Janofsky": [ "NNP" ], "recommendation": [ "NN" ], "elephantine": [ "JJ" ], "indemnify": [ "VB" ], "poseurs": [ "NNS" ], "scurries": [ "NNS" ], "Non-Catholics": [ "NNS" ], "Crosbys": [ "NNPS" ], "trust": [ "NN", "VBP", "VB" ], "OS\\": [ "NNP", "NN" ], "hurricane": [ "NN" ], "McDLT": [ "NNP" ], "unalluring": [ "JJ" ], "neurosis": [ "NN" ], "discretion": [ "NN" ], "Racks": [ "VBZ", "NNS" ], "null-type": [ "JJ" ], "fueloil": [ "NN" ], "videotext": [ "NN" ], "Mathues": [ "NNP" ], "Baker": [ "NNP" ], "Bakes": [ "NNP" ], "non-readers": [ "NNS" ], "lieutenant": [ "NN" ], "uptight": [ "JJ" ], "Oubati": [ "NNP" ], "Diebel": [ "NNP" ], "marketable": [ "JJ" ], "consumerism": [ "NN" ], "Foggia": [ "NNP" ], "Indulgence": [ "NNP" ], "Jarrell": [ "NNP" ], "CPAs": [ "NNS", "NNP", "NNPS" ], "introduces": [ "VBZ" ], "purism": [ "NN" ], "switchboard": [ "NN" ], "befogged": [ "JJ" ], "Japan": [ "NNP" ], "introduced": [ "VBN", "VBD" ], "Kingman": [ "NNP" ], "Salina": [ "NNP" ], "Psychology": [ "NNP" ], "socks": [ "NNS" ], "Iraqw": [ "NNP" ], "Iraqi": [ "JJ", "NNP" ], "termini": [ "NNS" ], "Mindlin": [ "NNP" ], "lightyears": [ "NNS" ], "Cronkite": [ "NNP" ], "Lanzhou": [ "NNP" ], "Fresca": [ "NNP" ], "impartation": [ "NN" ], "elastic": [ "JJ", "NN" ], "rushed": [ "VBD", "VBN", "JJ" ], "two-tone": [ "JJ" ], "petroleumproducts": [ "NNS" ], "FAST": [ "NNP" ], "rushes": [ "VBZ", "NNS" ], "Artra": [ "NNP" ], "onepage": [ "JJ" ], "glimmer": [ "NN" ], "FASB": [ "NNP" ], "USN.": [ "NNP" ], "touted": [ "VBN", "VBD" ], "insures": [ "VBZ" ], "insurer": [ "NN" ], "coke": [ "NN" ], "insured": [ "VBN", "VBD", "JJ", "NN" ], "propylene": [ "NN" ], "photocathodes": [ "NNS" ], "no-star": [ "JJ" ], "anonymous": [ "JJ" ], "now-obscure": [ "JJ" ], "persimmons": [ "NNS" ], "Ariail": [ "NNP" ], "flit": [ "VBP" ], "non-representation": [ "JJ" ], "flip": [ "JJ", "VB" ], "Konigsberg": [ "NNP" ], "Toshiki": [ "NNP" ], "omnibus": [ "JJ", "NN" ], "Toshiko": [ "NNP" ], "thorn": [ "NN" ], "wage-discrimination": [ "NN" ], "madrigal": [ "NN" ], "replying": [ "VBG" ], "circus": [ "NN" ], "well-defined": [ "JJ" ], "kilogram": [ "NN" ], "shoot-out": [ "NN" ], "commentators": [ "NNS" ], "identities": [ "NNS" ], "Carwood": [ "NNP" ], "Driesell": [ "NNP" ], "Trepp": [ "NNP" ], "geeing": [ "VBG" ], "dressed": [ "VBN", "JJ", "VBD" ], "Movable": [ "JJ" ], "interdepartmental": [ "JJ" ], "detain": [ "VB" ], "Wireless": [ "NNP" ], "interest-free": [ "JJ" ], "ducked": [ "VBD" ], "dresses": [ "NNS", "VBZ" ], "dresser": [ "NN" ], "convicts": [ "NNS" ], "Cry": [ "NN", "NNP" ], "Fortas": [ "NNP" ], "Hersey": [ "NNP" ], "maturational": [ "JJ" ], "April": [ "NNP" ], "detours": [ "NNS" ], "over-hired": [ "VBD" ], "Prospect": [ "NNP" ], "stirred": [ "VBD", "VBN" ], "ramble": [ "VB", "VBP" ], "AARP": [ "NNP" ], "grimmer": [ "RBR" ], "Alonso": [ "NNP" ], "wine": [ "NN", "JJ" ], "Gratified": [ "JJ" ], "pool-equipment": [ "NN" ], "Communisn": [ "NN" ], "EVERYONE": [ "NN" ], "Minitruck": [ "NN" ], "Zaves": [ "NNP" ], "sterilizing": [ "VBG" ], "dynasty": [ "NN" ], "Communist": [ "NNP", "NNPS", "JJ", "NN" ], "Infirmary": [ "NNP" ], "inexpert": [ "JJ" ], "Employes": [ "NNS" ], "public-relations": [ "NNS", "JJ", "NN" ], "consciences": [ "NNS" ], "Wathen": [ "NNP" ], "glides": [ "VBZ" ], "midseason": [ "NN" ], "activist": [ "NN", "JJ" ], "orange-juice": [ "NN" ], "@": [ "IN", "SYM" ], "noninterest-income": [ "NN" ], "haughtiness": [ "NN" ], "Deluge": [ "NN" ], "non-interest": [ "JJ", "NN" ], "prowls": [ "VBZ" ], "Auvil": [ "NNP" ], "Kevah": [ "NNP" ], "nw.": [ "NN" ], "reiterating": [ "VBG" ], "Shook": [ "VBD" ], "canners": [ "NNS" ], "MONEY": [ "NN", "NNP" ], "harried": [ "VBN", "VBD" ], "ANNUAL": [ "JJ" ], "cannery": [ "NN" ], "drug-pricing": [ "NN" ], "barracks": [ "NN", "NNS" ], "martingale": [ "NN" ], "Norris-LaGuardia": [ "NNP" ], "feathery": [ "JJ" ], "Fortunately": [ "RB", "NNP" ], "Nightmare": [ "NNP", "NN" ], "feathers": [ "NNS" ], "direct": [ "JJ", "VBP", "RB", "VB" ], "Solly": [ "NNP" ], "nail": [ "NN", "RB", "VB" ], "Okamoto": [ "NNP" ], "bubblelike": [ "JJ" ], "Samsung-Corning": [ "NNP" ], "caseworkers": [ "NNS" ], "commemorating": [ "VBG" ], "revolves": [ "VBZ" ], "revolver": [ "NN" ], "liberty": [ "NN" ], "Houdini": [ "NNP" ], "Mmm": [ "UH" ], "oaths": [ "NNS" ], "Manko": [ "NNP" ], "ebbs": [ "VBZ" ], "rubdowns": [ "NNS" ], "revolved": [ "VBD", "VBN" ], "Augustan": [ "NNP" ], "electroshocks": [ "NNS" ], "ultimatums": [ "NNS" ], "half-past": [ "JJ" ], "overplanted": [ "VBN" ], "vertebrates": [ "NNS" ], "GARY": [ "NNP" ], "Fitchburg": [ "NNP" ], "red-and-white": [ "JJ" ], "snacked": [ "VBD" ], "Dames": [ "NNPS", "NNP" ], "Obligations": [ "NNS" ], "counterprogramming": [ "NN" ], "leaves": [ "VBZ", "JJ", "NNS" ], "Elkus": [ "NNP" ], "Per-capita": [ "JJ" ], "White-haired": [ "JJ" ], "Barbados": [ "NNP" ], "midway": [ "RB", "JJ", "NN" ], "issuers": [ "NNS" ], "prints": [ "NNS", "VBZ" ], "consumer-analgesic": [ "JJ" ], "Well-Tempered": [ "JJ" ], "Narrative": [ "JJ" ], "purifying": [ "VBG" ], "Henceforth": [ "RB" ], "Pasadena": [ "NNP" ], "meats": [ "NNS" ], "Lefcourt": [ "NNP" ], "audivi": [ "FW" ], "meaty": [ "JJ" ], "riots": [ "NNS" ], "saleswomen": [ "NNS" ], "gweilo": [ "FW" ], "denationalization": [ "NN" ], "dollar-sellers": [ "NNS" ], "fainting": [ "NN", "VBG" ], "saber": [ "NN" ], "small-employer": [ "NN" ], "Sounion": [ "NNP" ], "Blue-chip": [ "JJ" ], "Legers": [ "NNPS" ], "overstored": [ "JJ" ], "excellent": [ "JJ" ], "Accrued": [ "VBN" ], "Kay-Bee": [ "NNP" ], "supplemental": [ "JJ" ], "Bio-Technology": [ "NNP" ], "Manigat": [ "NNP" ], "philanthropic": [ "JJ" ], "Brahms": [ "NNP" ], "archaism": [ "NN" ], "Lube": [ "NNP" ], "iridium": [ "NN" ], "Fox-Meyer": [ "NNP" ], "Mohan": [ "NNP" ], "Mrad": [ "NN" ], "salvage": [ "VB", "NN" ], "grenade": [ "NN" ], "Buchwald": [ "NNP" ], "male-fertile": [ "JJ" ], "scorekeepers": [ "NNS" ], "overhears": [ "VBZ" ], "Jarvik": [ "NNP" ], "estate": [ "NN" ], "hemoglobin": [ "NN" ], "gadgets": [ "NNS" ], "more-spontaneous": [ "JJ" ], "treasuries": [ "NNS" ], "jumble": [ "NN" ], "keep": [ "VB", "NN", "VBP" ], "attract": [ "VB", "VBP" ], "Jarvis": [ "NNP" ], "ceremony": [ "NN" ], "Haywood": [ "NNP" ], "multibank": [ "NN" ], "drummed": [ "VBD", "VBN" ], "finalist": [ "NN" ], "drummer": [ "NN" ], "Poverty": [ "NN", "NNP" ], "pro-environment": [ "NN" ], "Flemings": [ "NNP", "NNPS" ], "char-broiled": [ "JJ" ], "description": [ "NN" ], "first-bracket": [ "NN" ], "insecure": [ "JJ" ], "befoh": [ "RB" ], "astoundingly": [ "RB" ], "Stookey": [ "NNP" ], "ash-blonde": [ "JJ" ], "Wilhelmina": [ "NNP" ], "salsa": [ "NN" ], "Banners": [ "NNS" ], "parallel": [ "JJ", "RB", "VB", "VBP", "NN" ], "provisionally": [ "RB" ], "humiliatingly": [ "RB" ], "Quakeress": [ "NN" ], "Sadler": [ "NNP" ], "hotel-casinos": [ "NNS" ], "HEALTHY": [ "JJ" ], "amid": [ "IN" ], "highpriced": [ "JJ" ], "pullout": [ "NN" ], "summing": [ "VBG" ], "flippantly": [ "RB" ], "funniest": [ "JJS" ], "fourth-biggest": [ "JJ" ], "Rouge": [ "NNP" ], "antique-car": [ "NN" ], "Rough": [ "JJ", "NN" ], "Midvale": [ "NNP" ], "reforming": [ "VBG" ], "glories": [ "NNS", "VBZ" ], "agriculture-related": [ "JJ" ], "resounds": [ "VBZ" ], "Sportin": [ "VBG" ], "staining": [ "NN", "VBG" ], "Nadelmann": [ "NNP" ], "Haselhoff": [ "NNP" ], "How-2": [ "NNP" ], "howdy": [ "UH" ], "RXDC": [ "NNP" ], "dioramas": [ "NN" ], "Reva": [ "NNP" ], "Shopkorn": [ "NNP" ], "rancidity": [ "NN" ], "sob": [ "VB" ], "Convinced": [ "VBN" ], "Blistered": [ "VBN" ], "McCord": [ "NNP" ], "Coastline": [ "NNP" ], "denizens": [ "NNS" ], "blots": [ "NNS", "VBZ" ], "diseases": [ "NNS" ], "coconut-containing": [ "JJ" ], "Kosar": [ "NNP" ], "preconceived": [ "JJ" ], "whitened": [ "JJ", "VBD" ], "diseased": [ "JJ" ], "linguists": [ "NNS" ], "Kosan": [ "NNP" ], "flotation": [ "NN" ], "Nameless": [ "NNP" ], "Online": [ "NNP" ], "ennumerated": [ "VBD" ], "Soldatenko": [ "NNP" ], "long-hair": [ "JJ" ], "steelworkers": [ "NNS" ], "Walden": [ "NNP" ], "Verfahrenstechnik": [ "NNP" ], "Unigesco": [ "NNP" ], "Three-and-a-half": [ "JJ" ], "Adding": [ "VBG" ], "exhilarated": [ "VBN" ], "fishpond": [ "NN" ], "Percent": [ "NN" ], "leftist": [ "JJ" ], "nitrite": [ "NN" ], "Handelsman": [ "NNP" ], "railed": [ "VBD", "VBN" ], "Corpus": [ "NNP" ], "Stock-fund": [ "JJ", "NN" ], "Azusa": [ "NNP" ], "desertion": [ "NN" ], "Restrictive": [ "JJ" ], "Oberlin": [ "NNP" ], "banning": [ "VBG", "NN" ], "foolishly": [ "RB" ], "newly": [ "RB", "JJ" ], "Zeien": [ "NNP" ], "Signore": [ "NNP" ], "independence": [ "NN" ], "Inferential": [ "NNP" ], "Darwen": [ "NNP" ], "associate": [ "JJ", "VBP", "NN", "VB" ], "hump-backed": [ "JJ" ], "unwraps": [ "VBZ" ], "Bitterness": [ "NN" ], "anti-A": [ "NNP" ], "anti-B": [ "NNP" ], "homologous": [ "RB" ], "Signora": [ "FW", "NNP" ], "mastering": [ "VBG" ], "too-hearty": [ "JJ" ], "ASW": [ "NN" ], "mononuclear": [ "JJ" ], "reinstatement": [ "NN" ], "Supervisor": [ "NNP" ], "Photo": [ "NNP" ], "notching": [ "VBG" ], "hyperbolic": [ "JJ" ], "spendthrifts": [ "NNS" ], "days": [ "NNS" ], "hypocracy": [ "NN" ], "Traits": [ "NNP" ], "wowed": [ "VBD" ], "X-rayed": [ "VBN" ], "artistry": [ "NN" ], "F.B.": [ "NNP" ], "weight-training": [ "NN" ], "ayni": [ "NNS" ], "ecumenists": [ "NNS" ], "Interviewed": [ "VBN" ], "lovable": [ "JJ" ], "subcontractor": [ "NN" ], "much-discussed": [ "JJ" ], "Shenandoah": [ "NNP" ], "inter-German": [ "JJ" ], "affilliate": [ "NN" ], "ASC": [ "NNP" ], "fact-finding": [ "JJ", "NN" ], "Insurances": [ "NNPS" ], "Cocoons": [ "NNS" ], "five-foot": [ "JJ" ], "ASA": [ "NNP" ], "pomological": [ "JJ" ], "gowns": [ "NNS" ], "Sweetener": [ "NNP" ], "malingering": [ "VBG" ], "extra-nasty": [ "JJ" ], "speechwriters": [ "NNS" ], "Automated": [ "NNP", "VBN" ], "embellish": [ "VB" ], "Twice": [ "RB" ], "life-enhancement": [ "NN" ], "Thames": [ "NNP", "NNS" ], "Shots": [ "NNS" ], "postcards": [ "NNS" ], "lather": [ "NN" ], "finance-director": [ "NN" ], "Surrey": [ "NNP" ], "reclining": [ "VBG", "JJ" ], "frankly": [ "RB" ], "overinvested": [ "VBN" ], "up-or-down": [ "JJ" ], "visages": [ "NNS" ], "Sputnik": [ "NNP" ], "hemispherical": [ "JJ" ], "seminal": [ "JJ" ], "bridge": [ "NN", "JJ", "VB" ], "Christos": [ "NNP" ], "handkerchief": [ "NN" ], "thistles": [ "NNS" ], "Barreiro": [ "NNP" ], "OCC-member": [ "JJ" ], "unpopular": [ "JJ" ], "Help-wanted": [ "JJ" ], "truck-sales": [ "NNS" ], "Binn": [ "NNP" ], "lunchtime": [ "NN" ], "healer": [ "NN" ], "Bernini": [ "NNP" ], "general-merchandise": [ "NN" ], "page-long": [ "JJ" ], "seminar": [ "NN" ], "parliamentarian": [ "NN" ], "thoroughly": [ "RB" ], "Trends": [ "NNP", "NNS", "NNPS" ], "thorough": [ "JJ" ], "dermal": [ "JJ" ], "unashamedly": [ "RB" ], "Nikitas": [ "NNP" ], "Economies": [ "NNS" ], "court-appointed": [ "JJ" ], "cross-bay": [ "JJ" ], "tularemia": [ "NN" ], "Schroder": [ "NNP" ], "hotel-restaurant": [ "NN" ], "erasers": [ "NNS" ], "impels": [ "VBZ" ], "rancid": [ "JJ" ], "Promised": [ "JJ" ], "aggrandizing": [ "VBG" ], "pardoned": [ "VBN", "VBD" ], "mega-projects": [ "NNS" ], "overpriced": [ "VBN", "JJ" ], "Anglo-North": [ "JJ" ], "Tsarevich": [ "NNP" ], "U.S.investors": [ "NNS" ], "Spots": [ "NNS" ], "musicals": [ "NNS" ], "Inquirer": [ "NNP" ], "opinionmakers": [ "NNS" ], "aspired": [ "VBD" ], "peddle": [ "VB", "VBP" ], "endowment": [ "NN" ], "LOCKHEED": [ "NNP" ], "prevailed": [ "VBD", "VBN" ], "situations": [ "NNS" ], "sycophantic": [ "JJ" ], "gouty": [ "JJ" ], "liquified": [ "JJ" ], "hardball": [ "NN" ], "greenness": [ "NN" ], "borrowed": [ "VBN", "VBD", "JJ" ], "sambur": [ "NN" ], "Handicapped": [ "NNP" ], "neoclassical": [ "JJ" ], "ultimatum": [ "NN" ], "borrower": [ "NN" ], "applejack": [ "NN" ], "Gunder": [ "NNP" ], "considerate": [ "JJ" ], "dog-eared": [ "JJ" ], "Weatherly": [ "NNP" ], "angers": [ "VBZ" ], "bel": [ "FW" ], "spokesperson": [ "NN" ], "igneous": [ "JJ" ], "Mediterranean": [ "NNP", "JJ" ], "massifs": [ "NNS" ], "multinationalism": [ "NN" ], "ailments": [ "NNS" ], "Medialink": [ "NNP" ], "wildflowers": [ "NNS" ], "sharpens": [ "VBZ" ], "skeptically": [ "RB" ], "Wolfe": [ "NNP" ], "Helva": [ "NNP" ], "Wolff": [ "NNP" ], "potty": [ "NN" ], "Formula": [ "NN" ], "Datson": [ "NNP" ], "molehill": [ "NN" ], "Stolley": [ "NNP" ], "mus": [ "MD" ], "Corp.:8.725": [ "NNP" ], "Stoller": [ "NNP" ], "Insomnia": [ "NN" ], "mud": [ "NN" ], "Pizarro": [ "NNP" ], "Hilger": [ "NNP" ], "G.E.": [ "NNP" ], "hopefully": [ "RB" ], "mum": [ "JJ", "NN" ], "furloughs": [ "NNS" ], "herding": [ "VBG", "NN" ], "print-developing": [ "JJ" ], "deposed": [ "VBN", "VBD" ], "Staffordshire": [ "NNP" ], "pre-med": [ "JJ" ], "Zimbabwean": [ "NNP", "JJ" ], "portrays": [ "VBZ" ], "CEREAL": [ "NNP" ], "four-quarter": [ "JJ" ], "NASAA": [ "NNP" ], "Drahuschak": [ "NNP" ], "Bridgeton": [ "NNP" ], "born-to-shop": [ "JJ" ], "fault": [ "NN", "VB", "VBP" ], "Barnum": [ "NNP" ], "overcooks": [ "VBZ" ], "Pantas": [ "NNP" ], "six-day": [ "JJ" ], "consonantal": [ "JJ" ], "Gandois": [ "NNP" ], "spurs": [ "NNS", "VBZ" ], "industry-specific": [ "JJ" ], "expense": [ "NN" ], "interoffice": [ "JJ" ], "HomeFed": [ "NNP", "VBN" ], "Blomfield": [ "NNP" ], "antiSony": [ "JJ" ], "Geos": [ "NNS" ], "TVs": [ "NNS", "NNPS" ], "hands-down": [ "JJ" ], "foamy-necked": [ "JJ" ], "inactivate": [ "VB" ], "Vendome": [ "NNP" ], "corteggiamento": [ "FW" ], "villains": [ "NNS" ], "pre-selected": [ "VBN", "JJ" ], "Cutty": [ "NNP" ], "FEMALES": [ "NNS" ], "TVX": [ "NNP" ], "Hockett": [ "NNP" ], "warehouses": [ "NNS", "VBZ" ], "sororities": [ "NNS" ], "zigzags": [ "NNS" ], "TVS": [ "NNP" ], "Spencer": [ "NNP" ], "beneficiary": [ "NN", "JJ" ], "Bering": [ "NNP" ], "appestat": [ "NN" ], "TVA": [ "NNP" ], "unchanged": [ "JJ" ], "refuted": [ "VBD", "VBN" ], "Adams": [ "NNP" ], "pecked": [ "VBD" ], "transatlantic": [ "JJ", "NN" ], "Adame": [ "NNP" ], "Geo.": [ "NNP" ], "moldable": [ "JJ" ], "Adamo": [ "NNP" ], "Irretrievably": [ "RB" ], "STATES": [ "NNS" ], "microns": [ "NNS" ], "Fillmore": [ "NNP" ], "Deputy": [ "NNP", "JJ" ], "lb-plus": [ "JJ" ], "Shuiski": [ "NNP" ], "censors": [ "NNS", "VBZ" ], "arnica": [ "NN" ], "SUBURBIA": [ "NN" ], "n": [ "NN", "CC" ], "Herzog": [ "NNP" ], "dashboard": [ "NN" ], "YMCA": [ "NNP" ], "cantles": [ "NNS" ], "AIDS-inspired": [ "JJ" ], "disquisition": [ "NN" ], "persecutory": [ "JJ" ], "persecutors": [ "NNS" ], "card-carrying": [ "JJ" ], "accessories": [ "NNS" ], "dazzled": [ "VBN", "JJ" ], "Tela": [ "NNP" ], "dazzles": [ "VBZ" ], "dazzler": [ "NN" ], "pathology": [ "NN" ], "Microdyne": [ "NNP" ], "Tell": [ "VB", "NNP" ], "Thacher": [ "NNP" ], "Handing": [ "VBG" ], "Abstraction": [ "NNP", "NN" ], "prior": [ "RB", "NN", "JJ" ], "forgitful": [ "JJ" ], "high-polluting": [ "JJ" ], "Woodruff": [ "NNP" ], "beside": [ "IN", "RB" ], "Chongju": [ "NNP" ], "Remarks": [ "NNS", "NNP", "VBZ" ], "single-valued": [ "JJ" ], "Imaginary": [ "NNP", "JJ" ], "Clumps": [ "NNS" ], "Contraction": [ "NN" ], "Primerica": [ "NNP" ], "peaks": [ "NNS", "VBZ" ], "Descending": [ "VBG" ], "Oley": [ "NNP" ], "Oleg": [ "NNP" ], "unyielding": [ "JJ" ], "Cascading": [ "VBG", "NN" ], "Olea": [ "NNP" ], "greeter": [ "NN" ], "goofed": [ "VBD" ], "Patterson": [ "NNP" ], "darned": [ "RB" ], "all-something-or-the-other": [ "JJ" ], "shortly": [ "RB" ], "dada": [ "NN" ], "trash-bag": [ "NN" ], "litigator": [ "NN" ], "Muenchmeyer": [ "NNP" ], "Manager": [ "NNP", "NN" ], "multistage": [ "JJ" ], "Ethical": [ "NNP" ], "Narrow-gauged": [ "JJ" ], "Utility": [ "NNP", "NN" ], "snowman": [ "NN" ], "assembling": [ "VBG", "NN" ], "Estonian": [ "JJ", "NNP" ], "unemployment": [ "NN" ], "ex-housing": [ "JJ" ], "rodent": [ "NN" ], "grades": [ "NNS" ], "grader": [ "NN" ], "less-profitable": [ "JJ" ], "break.": [ "NN" ], "gray-thatched": [ "JJ" ], "megabyte": [ "NN" ], "preparer": [ "NN" ], "sacredness": [ "NN" ], "Kuwait": [ "NNP" ], "warping": [ "VBG", "NN" ], "Konstantin": [ "NNP" ], "Heileman": [ "NNP" ], "gave": [ "VBD" ], "backhome": [ "NN" ], "Epinalers": [ "NNPS" ], "salacious": [ "JJ" ], "breaks": [ "NNS", "VBZ" ], "LEAVING": [ "VBG" ], "Doolin": [ "NNP" ], "Skyline": [ "NNP" ], "descending": [ "VBG" ], "overcrowding": [ "NN", "JJ" ], "b-Includes": [ "VBZ" ], "melting": [ "VBG", "JJ", "NN" ], "Chrysalis": [ "NNP" ], "brutality": [ "NN" ], "renames": [ "VBZ" ], "Shevardnadze": [ "NNP" ], "Unmarried": [ "JJ" ], "follower": [ "NN" ], "Echo": [ "NNP" ], "renamed": [ "VBN", "VBD" ], "majored": [ "VBN" ], "Hakko": [ "NNP" ], "envision": [ "VBP", "VB" ], "Mosque": [ "NNP", "NN" ], "Underwear": [ "NN" ], "M30": [ "NNP" ], "Takeover-stock": [ "JJ" ], "election": [ "NN" ], "Champagne": [ "NNP", "NN" ], "Pitiful": [ "NNP" ], "Edinburgh": [ "NNP" ], "Experienced": [ "VBN" ], "SCI": [ "NNP" ], "SCE": [ "NNP" ], "Gurla": [ "NNP" ], "Annalee": [ "NNP" ], "SCA": [ "NNP" ], "mystified": [ "VBN" ], "Hiram": [ "NNP" ], "Spago": [ "NNP" ], "loins": [ "NNS" ], "cable-televison": [ "NN" ], "hunk": [ "NN" ], "Tradition": [ "NN", "NNP" ], "SCR": [ "NNP" ], "khaki": [ "JJ" ], "Huggins": [ "NNP" ], "plugging": [ "VBG", "NN" ], "Camaro": [ "NNP" ], "mark-ups": [ "NNS" ], "Coincidences": [ "NNPS" ], "Kligman": [ "NNP" ], "METALS": [ "NNS", "NNPS" ], "ASDA": [ "NNP" ], "shuck": [ "VB" ], "powpow": [ "NN" ], "Forecasting": [ "NN" ], "Courtaulds": [ "NNP" ], "blabbed": [ "VBD" ], "plying": [ "VBG" ], "Renata": [ "NNP" ], "Strivers": [ "NNPS" ], "Scarface": [ "NNP" ], "Runnan": [ "NNP" ], "tannin": [ "NN" ], "duke": [ "NN" ], "Florio": [ "NNP" ], "aber": [ "FW" ], "disaffiliate": [ "VBP" ], "unsalted": [ "JJ" ], "Keshtmand": [ "NNP" ], "fern": [ "NN" ], "Environment": [ "NNP", "NN" ], "ahs": [ "UH" ], "abed": [ "RB" ], "ussr": [ "NN" ], "RATES": [ "NNS", "NNPS", "NNP" ], "Tewary": [ "NNP" ], "Islanders": [ "NNPS" ], "vaccination": [ "NN" ], "warrant": [ "NN", "VBP", "VB" ], "transoceanic": [ "JJ" ], "sunlight": [ "NN" ], "Hilprecht": [ "NNP" ], "stuck": [ "VBN", "VBD", "JJ" ], "Brean": [ "NNP" ], "mid-October": [ "NNP", "JJ", "NN", "JJR" ], "Shiremanstown": [ "NNP" ], "data-storing": [ "JJ" ], "Bread": [ "NNP", "NN" ], "indexers": [ "NNS" ], "Heart-measuring": [ "JJ" ], "Congratulations": [ "NNS", "UH" ], "interrelation": [ "NN" ], "Periclean": [ "NNP" ], "automate": [ "VB" ], "pp.": [ "NNS" ], "pricked": [ "VBN" ], "overcollected": [ "JJ" ], "Aviazione": [ "NNP" ], "deoxyribonucleic": [ "JJ" ], "Finishing": [ "VBG" ], "forborne": [ "VB" ], "Cauff": [ "NNP" ], "Loomans": [ "NNP" ], "Seventy-six": [ "JJ" ], "tipsters": [ "NNS" ], "Mifflin": [ "NNP" ], "mannequins": [ "NNS" ], "Dannemiller": [ "NNP" ], "U.N.-backed": [ "JJ" ], "Ohmae": [ "NNP" ], "nerdy": [ "JJ" ], "more": [ "JJR", "RBR|NN", "JJ", "JJR|RBR", "NN", "RB", "RP", "RBR|JJR", "RBR" ], "nerds": [ "NNS" ], "worshipful": [ "JJ" ], "cobbled": [ "VBN", "VBD" ], "Kunze": [ "NNP" ], "suspicions": [ "NNS" ], "Edouard": [ "NNP" ], "limbic": [ "JJ" ], "sometime": [ "RB", "JJ" ], "cobbler": [ "NN" ], "voter-approved": [ "JJ" ], "Taylors": [ "NNPS" ], "regime": [ "NN" ], "inborn": [ "JJ" ], "eerie": [ "JJ" ], "Panelli": [ "NNP" ], "outgrew": [ "VBD" ], "insurance-policy": [ "NN" ], "mastoideus": [ "NN" ], "Rinker": [ "NNP" ], "Cornwall": [ "NNP" ], "Rouben": [ "NNP" ], "Ewan": [ "NNP" ], "beheading": [ "NN", "VBG" ], "Euro-banners": [ "NNS" ], "but...": [ ":" ], "implant": [ "NN", "VB" ], "erosion": [ "NN" ], "papery": [ "JJ" ], "squeals": [ "NNS" ], "ROARED": [ "VBD" ], "Britoil": [ "NNP" ], "savviest": [ "JJS" ], "SPERANDEO": [ "NNP" ], "football": [ "NN" ], "flushes": [ "VBZ" ], "V.H.": [ "NNP" ], "shirkers": [ "NNS" ], "flushed": [ "VBN", "VBD" ], "Woodhaven": [ "NNP" ], "Forecasters": [ "NNS" ], "agayne": [ "RB" ], "faster": [ "RBR", "JJR", "RB" ], "Universal-International": [ "NNP" ], "verve": [ "NN" ], "vigorously": [ "RB" ], "Clifton": [ "NNP" ], "roomed": [ "VBD" ], "unchallenged": [ "JJ" ], "remarked": [ "VBD", "VBN" ], "fasten": [ "VB", "VBP" ], "nuclei": [ "NNS" ], "item-processing": [ "JJ" ], "relation-back": [ "JJ" ], "Klugt": [ "NNP" ], "winnings": [ "NNS" ], "Tsk": [ "UH" ], "Dutch-descended": [ "JJ" ], "rob": [ "VB", "VBP" ], "Vickstrom": [ "NNP" ], "rod": [ "NN" ], "deliveries": [ "NNS", "NN" ], "Fuqua": [ "NNP" ], "Transcontinental": [ "NNP" ], "Getz": [ "NNP" ], "Kluge": [ "NNP" ], "savings-type": [ "JJ" ], "functioned": [ "VBD", "VBN" ], "Gets": [ "VBZ", "NNP" ], "rot": [ "NN", "VB" ], "row": [ "NN", "VBP", "VB" ], "inverse": [ "JJ", "NN" ], "unk-unks": [ "NNS" ], "blind-sided": [ "JJ", "VBN" ], "September-October": [ "NNP" ], "fairy-tale": [ "NN" ], "earthquake": [ "NN" ], "aplomb": [ "NN" ], "unconcernedly": [ "RB" ], "Oesterreichische": [ "NNP" ], "R-Cape": [ "NNP" ], "marrieds": [ "NNS" ], "Snap-On": [ "NNP" ], "Whittlesey": [ "NNP" ], "Holston": [ "NNP" ], "frequencies": [ "NNS" ], "emphasizes": [ "VBZ" ], "Creepers": [ "UH" ], "Tsunami": [ "NNS" ], "Roylott": [ "NNP" ], "feel-good": [ "JJ" ], "emphasized": [ "VBD", "VBN" ], "bathos": [ "NN" ], "hydraulically": [ "RB" ], "near-majority": [ "JJ" ], "Danger": [ "NNP", "NN" ], "Owens-Illinois": [ "NNP" ], "Accounts": [ "NNS", "NNP", "NNPS" ], "Tyndall": [ "NNP" ], "hotelier": [ "NN" ], "Yok.": [ "NNP" ], "Novo": [ "NNP" ], "irritates": [ "VBZ" ], "Azcuenaga": [ "NNP" ], "Braddock": [ "NNP" ], "Nova": [ "NNP" ], "thickest": [ "JJS" ], "widened": [ "VBD", "VBN" ], "double-bladed": [ "JJ" ], "video-rental": [ "JJ" ], "Savory": [ "JJ" ], "\\*\\*": [ "SYM", "NN" ], "Feuermann": [ "NNP" ], "irritated": [ "VBN", "JJ", "VBD" ], "evaporative": [ "JJ" ], "explictly": [ "RB" ], "psyllium-fortified": [ "JJ" ], "goes": [ "VBZ" ], "hopscotched": [ "VBD" ], "Qui": [ "FW" ], "jilted": [ "VBN" ], "now-legal": [ "JJ" ], "Nov.": [ "NNP", "NN", "VB" ], "tabulation": [ "NN" ], "Fragua": [ "NNP" ], "slaying": [ "NN", "VBG" ], "learn": [ "VB", "VBP" ], "investment-newsletter": [ "NN" ], "femininity": [ "NN" ], "erembal": [ "NNP" ], "witch": [ "NN" ], "foreign-flag": [ "NN" ], "Pebworth": [ "NNP" ], "Mainz": [ "NNP" ], "oodles": [ "NN" ], "Fischer": [ "NNP" ], "boast": [ "VBP", "NN", "VB" ], "rethink": [ "VB", "NN" ], "AGENCY": [ "NNP", "NN" ], "then-Speaker": [ "JJ" ], "lamps": [ "NNS" ], "prudent-man": [ "JJ" ], "Maine": [ "NNP" ], "Leet": [ "NNP" ], "Kress": [ "NNP" ], "Lees": [ "NNP" ], "Visiting": [ "VBG", "NNP" ], "problematic": [ "JJ" ], "atrocious": [ "JJ" ], "wreak": [ "VB" ], "Ohioans": [ "NNPS" ], "Kresa": [ "NNP" ], "civilizations": [ "NNS" ], "touchdown": [ "NN" ], "Jerky": [ "NNP" ], "crisis": [ "NN" ], "bulbs": [ "NNS" ], "Sienkiewicz": [ "NNP" ], "chimps": [ "NNS" ], "variously": [ "RB" ], "Nikon": [ "NNP" ], "Appel": [ "NNP" ], "prey": [ "NN", "VBP", "VB" ], "meanes": [ "NNS" ], "prep": [ "JJ", "NN" ], "today": [ "NN", "JJ", "RB" ], "plug": [ "NN", "VBP", "VB" ], "Westamerica": [ "NNP", "NN" ], "Pellegrini": [ "NNP" ], "cased": [ "VBD" ], "fuel": [ "NN", "VBP", "VB" ], "higher-than-normal": [ "JJ" ], "Manningham": [ "NNP" ], "BUFFALO": [ "NNP" ], "spoilage": [ "NN" ], "Lavidge": [ "NNP" ], "depressants": [ "NNS" ], "family-owned": [ "JJ" ], "posthumous": [ "JJ" ], "inveterate": [ "JJ" ], "dthat": [ "IN" ], "Vesco": [ "NNP" ], "Bergsma": [ "NNP" ], "hitmakers": [ "NNS" ], "address": [ "NN", "VBP", "VB" ], "Kanon": [ "NNP" ], "figure": [ "NN", "VB", "VBP", "VBZ" ], "inexperience": [ "NN" ], "adherent": [ "JJ", "NN" ], "Hutchings": [ "NNP" ], "Encino": [ "NNP" ], "unloads": [ "VBZ" ], "McDowell": [ "NNP" ], "air-cell": [ "JJ" ], "Dilys": [ "NNP" ], "naivete": [ "NN" ], "Concerning": [ "VBG" ], "middle-range": [ "JJ" ], "medium-to-long-range": [ "JJ" ], "mismanagement": [ "NN" ], "Tarwhine": [ "NNP" ], "night-vision": [ "JJ", "NN" ], "fourth": [ "JJ", "RB" ], "Demand": [ "NN", "VB", "NNP" ], "deep-pocketed": [ "JJ" ], "generic-drug": [ "NN", "JJ" ], "digesting": [ "VBG" ], "Coproduction": [ "NNP" ], "bedground": [ "NN" ], "tyke": [ "NN" ], "trickling": [ "VBG" ], "unificationists": [ "NNS" ], "representations": [ "NNS" ], "Eligibility": [ "NN" ], "eighth": [ "JJ", "NN" ], "Exclusive": [ "JJ" ], "Gomez": [ "NNP" ], "Cardin": [ "NNP" ], "utero": [ "NN" ], "Soup": [ "NNP", "NN" ], "substerilization": [ "NN" ], "pastilles": [ "NNS" ], "Spahnie": [ "NN" ], "Newport": [ "NNP", "NN" ], "Behague": [ "NNP" ], "Ratner": [ "NNP" ], "statisticians": [ "NNS" ], "Unruh": [ "NNP" ], "stock-warrant": [ "NN" ], "DOORS": [ "NNS" ], "cistern": [ "NN" ], "mantlepiece": [ "NN" ], "dreading": [ "VBG" ], "farmed": [ "VBD", "JJ" ], "stanchest": [ "JJS" ], "Euromark": [ "NN" ], "Rules": [ "NNP", "NNS", "NNPS" ], "cathodoluminescent": [ "JJ" ], "guiltiness": [ "NN" ], "non-confrontational": [ "JJ" ], "hanky": [ "NN" ], "Wesley": [ "NNP" ], "Everywhere": [ "RB" ], "pervade": [ "VBP" ], "farmer": [ "NN" ], "Matamoras": [ "NNP" ], "loophole": [ "NN" ], "leggy": [ "JJ" ], "Ruled": [ "VBN" ], "Throne": [ "NN" ], "Wildlife": [ "NNP", "NN" ], "nomads": [ "NNS" ], "Harmonizing": [ "NNP" ], "Koenigsberg": [ "NNP" ], "non-recessionary": [ "JJ" ], "top-four": [ "JJ" ], "Nobuto": [ "NNP" ], "Ultimate": [ "NNP", "JJ" ], "Ornelas": [ "NNP" ], "inheriting": [ "VBG" ], "invents": [ "VBZ" ], "sop": [ "NN" ], "endangerment": [ "NN" ], "argues...": [ ":" ], "Monsky": [ "NNP" ], "community-based": [ "JJ" ], "all-New": [ "NNP" ], "ordain": [ "VB" ], "whiplash": [ "NN" ], "farewell": [ "NN", "UH" ], "Petersburg": [ "NNP" ], "Poag": [ "NNP" ], "Eugenia": [ "NNP" ], "intended": [ "VBN", "VBD", "JJ" ], "UGI": [ "NNP" ], "computer-market": [ "JJ" ], "concur": [ "VBP", "VB" ], "precooked": [ "VBN" ], "sha": [ "MD" ], "tensions": [ "NNS" ], "prophesized": [ "VBD" ], "UGF": [ "NNP" ], "abounding": [ "VBG" ], "Timpanogos": [ "NNP" ], "with-but-after": [ "JJ" ], "Throw": [ "VB", "NNP" ], "monopolized": [ "VBD", "VBN" ], "eagle": [ "NN" ], "one-owner": [ "JJ" ], "Gregoire": [ "NNP" ], "Economizers": [ "NNS" ], "nuclear-weapons-sites": [ "NNS" ], "rocket-motor": [ "NN" ], "dyed-in-the-wool": [ "JJ" ], "TECHNOLOGIES": [ "NNP" ], "minted": [ "VBN" ], "drilled": [ "VBN", "VBD" ], "Bock": [ "NNP" ], "Battery": [ "NNP", "NN" ], "then-Secretary": [ "NNP" ], "Boca": [ "NNP" ], "Virgins": [ "NNPS" ], "Gringo": [ "NN", "NNP" ], "Holler": [ "NNP" ], "outbreaks": [ "NNS" ], "mortars": [ "NNS" ], "Longview": [ "NNP" ], "Holley": [ "NNP" ], "Ah-ah": [ "UH" ], "long-troubled": [ "JJ" ], "R2-D2": [ "NN" ], "Hyde-to-Jekyll": [ "JJ" ], "parasols": [ "NNS" ], "handled": [ "VBN", "VBD" ], "Chernishev": [ "NNP" ], "unattainable": [ "JJ", "NN" ], "dissolutions": [ "NNS" ], "squashed": [ "JJ", "VBN" ], "in-state": [ "JJ" ], "Lido": [ "NNP" ], "afterthought": [ "NN" ], "spurned": [ "VBN", "VBD", "JJ" ], "native-born": [ "JJ" ], "prayers": [ "NNS" ], "less-than-robust": [ "JJ" ], "Contras": [ "NNPS", "NNP", "NNS" ], "DGII": [ "NNP" ], "arousing": [ "VBG" ], "seller-financed": [ "JJ" ], "woodcarver": [ "NN" ], "Aurelius": [ "NNP" ], "international-share": [ "JJ" ], "Lids": [ "NNS" ], "Netty": [ "NNP" ], "Bruckheimer": [ "NNP" ], "Kaufhof": [ "NNP" ], "stylized": [ "JJ", "VBN" ], "SE\\/30": [ "NNP" ], "Netto": [ "NNP" ], "self-betrayal": [ "NN" ], "grunt": [ "VB", "NN" ], "strange-sounding": [ "JJ" ], "prior-approval": [ "JJ" ], "Garment": [ "NNP" ], "Futhermore": [ "NN" ], "barrels-a-day": [ "JJ" ], "newage": [ "NN" ], "Yoshiyuki": [ "NNP" ], "cards": [ "NNS" ], "pulsation": [ "NN" ], "sladang": [ "NN" ], "Thelma": [ "NNP" ], "Bakeries": [ "NNP" ], "BPC": [ "NNP" ], "BPB": [ "NNP" ], "overfill": [ "VB" ], "Grange": [ "NNP" ], "Attraction": [ "NNP" ], "stiffest": [ "JJS" ], "suspense": [ "NN" ], "Navona": [ "NNP" ], "exchanging": [ "VBG" ], "ADR": [ "NNP" ], "price-reporting": [ "NN" ], "wage-setter": [ "NN" ], "batting": [ "VBG", "NN" ], "ADS": [ "NNPS", "NN", "NNS" ], "Karlis": [ "NNP" ], "subsystems": [ "NNS" ], "```": [ "NN", "VB" ], "Lemmon": [ "NNP" ], "Hotelecopy": [ "NNP" ], "Topeka": [ "NNP" ], "sciences": [ "NNS" ], "jade-handled": [ "JJ" ], "Sauternes": [ "NNP", "NNPS" ], "Jachmann": [ "NNP" ], "Londono": [ "NNP" ], "roleplaying": [ "NN" ], "commonplace": [ "JJ", "NN" ], "Korean-American": [ "JJ", "NNP" ], "Barnaba": [ "NNP" ], "Good": [ "JJ", "NNP", "NN", "UH" ], "icon": [ "NN" ], "wireless": [ "JJ" ], "annum": [ "NN", "FW" ], "Geduld": [ "NNP" ], "proud": [ "JJ" ], "pores": [ "NNS", "VBZ" ], "Abreast": [ "NNP" ], "pored": [ "VBD", "VBN" ], "applicator": [ "NN" ], "Gesamtkunstwerke": [ "FW" ], "pop-out": [ "JJ" ], "drastically": [ "RB" ], "inequity": [ "NN" ], "Anglophilia": [ "NNP" ], "antitakeover": [ "JJR" ], "cheat": [ "VB", "VBP" ], "Kanjorski": [ "NNP" ], "allegations": [ "NNS" ], "Research": [ "NNP", "NN" ], "spacer": [ "NN" ], "spaces": [ "NNS" ], "Opposed": [ "VBN" ], "Bundesbank": [ "NNP" ], "inshore": [ "JJ", "RB" ], "painlessly": [ "RB" ], "trot": [ "NN", "VB" ], "Publishers": [ "NNPS", "NNP", "NNS" ], "sausage-grinder": [ "NN" ], "Confer": [ "NNP" ], "gunloading": [ "NN" ], "skywave": [ "NN" ], "believing": [ "VBG" ], "Mimi": [ "NNP" ], "Overtega": [ "NNP" ], "Louis": [ "NNP" ], "Annual": [ "JJ", "NNP" ], "broadest": [ "JJS" ], "Europalia": [ "NNP" ], "Kennametal": [ "NNP" ], "Lashof": [ "NNP" ], "Colombatto": [ "NNP" ], "cylinders": [ "NNS" ], "heisted": [ "VBD" ], "cautionary": [ "JJ" ], "burlesque": [ "JJ" ], "Doherty": [ "NNP" ], "high-backed": [ "JJ" ], "contrivances": [ "NNS" ], "Goethe": [ "NNP" ], "Salim": [ "NNP" ], "Gouldoid": [ "JJ" ], "jokes": [ "NNS", "VBZ" ], "Geoff": [ "NNP" ], "predicted": [ "VBD", "JJ", "VBN" ], "E.W.": [ "NNP" ], "Dagens": [ "NNP" ], "Plympton": [ "NNP" ], "Conquest": [ "NNP" ], "Lamphere": [ "NNP" ], "oil-depletion": [ "JJ" ], "Off-Road": [ "NNP" ], "signs": [ "NNS", "VBZ" ], "Jaffray": [ "NNP" ], "Conus": [ "NNP" ], "Dickie": [ "NNP" ], "Bits": [ "NNS" ], "Chicagoans": [ "NNPS", "NNS" ], "Chestnut": [ "NNP", "NN" ], "Tardily": [ "RB" ], "subcompact": [ "NN", "JJ" ], "Hamish": [ "NNP" ], "Bouncing": [ "NNP" ], "Loose": [ "NNP", "JJ" ], "commitments": [ "NNS" ], "Vitro-Anchor": [ "NNP" ], "Galipault": [ "NNP" ], "anti-apartheid": [ "JJ", "NN" ], "Breuer": [ "NNP" ], "Harperner": [ "NNP" ], "saucy": [ "JJ" ], "three-step": [ "JJ", "NN" ], "Seiders": [ "NNP" ], "disaffection": [ "NN" ], "freight-forwarding": [ "JJ" ], "harshly": [ "RB" ], "Westerly": [ "NNP" ], "Indigestion": [ "NN" ], "Tolstoy": [ "NNP", "NN" ], "fathuh": [ "NN" ], "tantalizingly": [ "RB" ], "ISC\\/Bunker": [ "NNP" ], "quiet": [ "JJ", "NN", "VB" ], "jillions": [ "NNS" ], "Krat": [ "NNP" ], "Genetics": [ "NNP", "NNPS" ], "Travel": [ "NNP", "NN", "VB" ], "staff...": [ ":" ], "period": [ "NN" ], "insist": [ "VBP", "VB" ], "Durning": [ "NNP" ], "ECU-denominated": [ "JJ" ], "sugar-producing": [ "JJ" ], "Numerous": [ "JJ" ], "debt-service": [ "JJ", "NN" ], "Courant": [ "NNP" ], "turkey": [ "NN", "JJ" ], "televising": [ "NN" ], "subscribed": [ "VBN", "VBD", "VBN|JJ" ], "lower-value": [ "JJR" ], "consultancy": [ "NN" ], "Meeker": [ "NNP" ], "Edsel": [ "NNP" ], "subscribes": [ "VBZ" ], "Modest": [ "JJ" ], "ASHTON-TATE": [ "NNP" ], "peaking": [ "VBG", "NN" ], "vulture-like": [ "JJ" ], "direction": [ "NN" ], "Aer": [ "NNP" ], "exasperate": [ "VB" ], "CAAC": [ "NNP" ], "ostentation": [ "NN" ], "surreptitiously": [ "RB" ], "Spilman": [ "NNP" ], "Hartfield-Zodys": [ "NNP" ], "walkie-talkie": [ "NN" ], "roaringest": [ "JJS" ], "TRANSPLANT": [ "NNP" ], "case": [ "NN", "VB" ], "Aeronautics": [ "NNP" ], "multiple-purpose": [ "JJ" ], "deposit-transfer": [ "NN" ], "Stetson": [ "NNP" ], "Intertech": [ "NNP" ], "cash": [ "NN", "VB" ], "cask": [ "NN" ], "fiercer": [ "JJR" ], "cast": [ "NN", "JJ", "VB", "VBD", "VBN", "VBP" ], "Conversion": [ "NNP", "NN" ], "Metamorphosis": [ "NN" ], "intifada": [ "NN" ], "Laurel": [ "NNP" ], "abducted": [ "VBN", "NN" ], "Lauren": [ "NNP" ], "reflectance": [ "NN" ], "antisocial": [ "JJ" ], "clefts": [ "NNS" ], "Dionysian": [ "JJ" ], "duplicating": [ "VBG" ], "refinery": [ "NN" ], "leadoff": [ "NN" ], "flat-bed": [ "JJ", "NN" ], "ironic": [ "JJ" ], "impaled": [ "VBN" ], "refiners": [ "NNS" ], "four-wheel": [ "JJ" ], "Characteristically": [ "RB" ], "hustlers": [ "NNS" ], "Germanys": [ "NNS", "NNPS" ], "revolutions": [ "NNS" ], "participant": [ "NN" ], "MarCor": [ "NNP" ], "sellin": [ "NN" ], "Frenchmen": [ "NNPS", "NNS" ], "fender": [ "NN" ], "Swiftly": [ "RB" ], "injurious": [ "JJ" ], "squadroom": [ "NN" ], "Jacuzzi": [ "NNP", "NN" ], "FileNet": [ "NNP" ], "catfish": [ "NN" ], "manila": [ "JJ" ], "Lasswitz": [ "NNP" ], "frequented": [ "VBD", "VBN" ], "fended": [ "VBD", "VBN" ], "Yancey-6": [ "NN" ], "Aphrodite": [ "NNP" ], "even-handed": [ "JJ" ], "Antone": [ "NNP" ], "Antoni": [ "NNP" ], "first-half": [ "JJ", "NN" ], "one-by-one": [ "JJ" ], "statue": [ "NN" ], "electronics-distribution": [ "NN" ], "epidemiological": [ "JJ" ], "FIDELITY": [ "NNP" ], "Antony": [ "NNP" ], "Off-flavor": [ "NN" ], "electromagnetism": [ "NN" ], "British-French-Israeli": [ "JJ" ], "Psychoanalytic": [ "NNP" ], "Failures": [ "NNS" ], "bodied": [ "JJ" ], "Zirbel": [ "NNP" ], "delectable": [ "JJ" ], "catchword": [ "NN" ], "Pure": [ "NNP", "JJ" ], "delectably": [ "RB" ], "influence-peddling": [ "NN", "JJ" ], "bodies": [ "NNS", "VBZ" ], "justify": [ "VB", "VBP" ], "Pink": [ "NNP", "JJ", "NN" ], "Bokat": [ "NNP" ], "Yakkety": [ "NNP" ], "splices": [ "VBZ" ], "Barrios": [ "NNP" ], "Pina": [ "NNP" ], "Pine": [ "NNP" ], "spliced": [ "VBN" ], "cease": [ "VB", "VBP" ], "polish": [ "VB", "NN" ], "Decorators": [ "NNP" ], "Municipal": [ "JJ", "NNP", "NN" ], "FDIC": [ "NNP" ], "feminist": [ "JJ", "NN" ], "Missile": [ "NNP" ], "Tamotsu": [ "NNP" ], "ditties": [ "NNS" ], "invasion-theory": [ "NN" ], "Bosworth": [ "NNP" ], "Bonnierforetagen": [ "NNP" ], "feminism": [ "NN" ], "assets*": [ "NNS" ], "Clairton": [ "NNP" ], "Non-smoking": [ "NN" ], "half-states": [ "NNS" ], "co-ordinates": [ "VBZ" ], "the...": [ ":" ], "Motorfair": [ "NNP" ], "Af-stage": [ "JJ" ], "reconfiguration": [ "NN" ], "Accompanied": [ "VBN" ], "U.N.": [ "NNP", "JJ", "NN" ], "Kasen": [ "NNP" ], "television-viewing": [ "NN" ], "acute": [ "JJ", "NN" ], "towel": [ "NN" ], "coursed": [ "VBN" ], "eight-piece": [ "JJ" ], "Old": [ "NNP", "JJ" ], "towed": [ "VBD", "VBN" ], "footballs": [ "NNS" ], "Enhancement": [ "NNP" ], "Ludden": [ "NNP" ], "snatches": [ "NNS", "VBZ" ], "apple-tree": [ "NN" ], "simulator": [ "NN" ], "quick-service": [ "JJ" ], "Master": [ "NNP", "NN" ], "Muynak": [ "NNP" ], "snatched": [ "VBD", "VBN" ], "arms-reduction": [ "NN", "JJ" ], "Struggling": [ "VBG" ], "animalcare": [ "JJ" ], "swaps": [ "NNS" ], "tricks": [ "NNS", "VBZ" ], "Cater": [ "NNP" ], "Tettamanti": [ "NNP" ], "Mercifully": [ "RB" ], "kilter": [ "NN" ], "penny-pinching": [ "JJ" ], "Harmas": [ "NNP" ], "cringing": [ "VBG", "JJ" ], "slaughter": [ "NN", "VBP" ], "pooch": [ "NN" ], "Forsyth": [ "NNP" ], "prattle": [ "NN" ], "lifeboats": [ "NNS" ], "five-consecutive": [ "JJ" ], "treadmills": [ "NNS" ], "fillings": [ "NNS" ], "freight-jumper": [ "NN" ], "Genesee": [ "NNP" ], "thin-soled": [ "JJ" ], "whence": [ "WRB" ], "Celine": [ "NNP" ], "Amherst": [ "NNP" ], "discrimination": [ "NN" ], "Broder": [ "NNP" ], "Anand": [ "NNP" ], "nods": [ "VBZ", "NNS" ], "Toseland": [ "NNP" ], "Cumulative": [ "JJ", "NNP" ], "warbling": [ "VBG" ], "Hosomi": [ "NNP" ], "engendered": [ "VBN", "VBD" ], "rising": [ "VBG", "NN", "JJ" ], "anti-Nazis": [ "NNPS" ], "syringe": [ "NN" ], "syringa": [ "NN" ], "Postmaster": [ "NNP" ], "vine-shaded": [ "JJ" ], "whales": [ "NNS" ], "Norma": [ "NNP" ], "cultured": [ "JJ", "VBN" ], "Clorets": [ "NNP" ], "half-darkness": [ "NN" ], "Norms": [ "NNS" ], "cultures": [ "NNS" ], "Veltri": [ "NNP" ], "Arcadipane": [ "NNP" ], "livestock-dealing": [ "JJ" ], "Tunis": [ "NNP" ], "Permit": [ "VB" ], "triple-C": [ "JJ", "NNP", "NN" ], "triple-B": [ "JJ" ], "triple-A": [ "JJ", "NNP", "NN" ], "Turben": [ "NNP" ], "travelogue-like": [ "JJ" ], "competitve": [ "JJ" ], "Boksen": [ "NNP" ], "extermination": [ "NN" ], "incise": [ "VB" ], "Subaru": [ "NNP" ], "de-inking": [ "JJ" ], "closely-held": [ "JJ" ], "Ambigua": [ "NNP" ], "triple-a": [ "JJ" ], "Ringler": [ "NNP" ], "Constructors": [ "NNPS" ], "autoimmune": [ "JJ" ], "theophylline": [ "NN" ], "Biederman": [ "NNP" ], "repatriation": [ "NN" ], "outgrip": [ "VB" ], "Knightsbridge": [ "NNP" ], "scotches": [ "NNS" ], "Fabrri": [ "NNP" ], "deserve": [ "VBP", "VB" ], "Eternal": [ "NNP" ], "Dart": [ "NNP" ], "Dark": [ "NNP", "JJ" ], "Darn": [ "VB" ], "seven-stories": [ "JJ" ], "Lesch-Nyhan": [ "NNP" ], "Panhandle": [ "NNP", "VB" ], "line-drawing": [ "JJ" ], "Dare": [ "VB" ], "Pulitzer": [ "NNP" ], "deviation": [ "NN" ], "mummies": [ "NNS" ], "releasing": [ "VBG" ], "Jaguar": [ "NNP", "NN" ], "T.R.": [ "NNP" ], "uncorked": [ "VBD", "VBN" ], "finale": [ "NN" ], "Foundry": [ "NNP" ], "Dashitchev": [ "NNP" ], "fiberglas": [ "NNS" ], "bullets": [ "NNS" ], "Dragon": [ "NNP" ], "finals": [ "NNS" ], "feedlot": [ "NN" ], "land-locked": [ "JJ" ], "Satisfactory": [ "JJ" ], "Forty-third": [ "JJ" ], "anti-plaque": [ "JJ" ], "teleology": [ "NN" ], "Cuban": [ "JJ", "NNP" ], "directors": [ "NNS" ], "Presbyterians": [ "NNPS" ], "treason": [ "NN" ], "directory": [ "NN", "JJ" ], "numbing": [ "JJ" ], "sorption-desorption": [ "NN" ], "Maple": [ "NNP", "JJ", "NN" ], "crumpled": [ "JJ", "VBD", "VBN" ], "tarry": [ "VB" ], "Lubowski": [ "NNP" ], "Riggs": [ "NNP" ], "Hendrik": [ "NNP" ], "coach": [ "NN" ], "generalize": [ "VB", "VBP" ], "barons": [ "NNS" ], "Certificates": [ "NNS", "NNP", "NNPS" ], "cementing": [ "VBG" ], "decisions": [ "NNS" ], "Subsequently": [ "RB", "NNP" ], "barony": [ "NN" ], "glimpse": [ "NN" ], "apartment": [ "NN" ], "weightings": [ "NNS" ], "subsided": [ "VBD", "VBN" ], "Kurlak": [ "NNP" ], "Frequently": [ "RB", "NNP" ], "subsides": [ "VBZ", "NNS" ], "infringement": [ "NN" ], "Angus": [ "NNP" ], "prognostication": [ "NN" ], "treating": [ "VBG" ], "Silber": [ "NNP" ], "Steptoe": [ "NNP" ], "RUSSIANS": [ "NNS" ], "Dickey": [ "NNP" ], "nahce": [ "JJ" ], "Ress": [ "NNP" ], "clinched": [ "VBD" ], "Rest": [ "VB", "NNP" ], "occurs": [ "VBZ" ], "singularly": [ "RB" ], "Stitched": [ "VBN" ], "Dickel": [ "NNP" ], "threshing": [ "NN" ], "renouncing": [ "VBG" ], "clincher": [ "NN" ], "clinches": [ "NNS" ], "Milbauer": [ "NNP" ], "flick": [ "NN" ], "employing": [ "VBG" ], "JURY": [ "NN" ], "uh-huh": [ "UH" ], "Willow": [ "NNP" ], "Ease": [ "VB" ], "Hennefeld": [ "NNP" ], "Kasten": [ "NNP" ], "Ilka": [ "NNP" ], "Kaster": [ "NNP" ], "granular-type": [ "JJ" ], "Easy": [ "NNP", "JJ", "RB" ], "Flameco": [ "NNP" ], "East": [ "NNP", "NNPS", "JJ", "NN", "RB", "NNS" ], "distributorship": [ "NN" ], "Ionizing": [ "VBG" ], "sue": [ "VB", "VBP" ], "sub": [ "NN", "FW" ], "sun": [ "NN", "VB" ], "sum": [ "NN", "VB" ], "Naturals": [ "NNPS", "NNP" ], "Disposti": [ "NNP" ], "money-winner": [ "NN" ], "sur": [ "FW" ], "sup": [ "VB" ], "skippering": [ "VBG" ], "Straights": [ "NNS" ], "low-cal": [ "JJ" ], "Kodansha": [ "NNP" ], "Barba": [ "NNP" ], "toes": [ "NNS" ], "AIDS-research": [ "JJ" ], "autumn-touched": [ "JJ" ], "Fonstein": [ "NNP" ], "Chardonnay-sipping": [ "JJ" ], "Ginza": [ "NN", "NNP" ], "Gloves": [ "NNP" ], "Glover": [ "NNP" ], "equations": [ "NNS" ], "WAGE": [ "NN" ], "bacteria-contaminated": [ "JJ" ], "underhanded": [ "JJ" ], "high-school": [ "NN", "JJ" ], "dues": [ "NNS" ], "Mathewson": [ "NNP" ], "turnabout": [ "NN" ], "Biondi-Santi": [ "NNP" ], "stiffness": [ "NN" ], "better-remembered": [ "JJ" ], "student-led": [ "JJ" ], "ex-marine": [ "NN" ], "tramping": [ "VBG" ], "camcorder": [ "NN" ], "poignantly": [ "RB" ], "arms-control": [ "NN", "JJ" ], "fee-per-case": [ "JJ" ], "solitude": [ "NN" ], "airlifting": [ "VBG" ], "Providence": [ "NNP", "NN" ], "Louisville": [ "NNP" ], "enlivened": [ "VBN" ], "herring": [ "NN" ], "loping": [ "VBG" ], "Intermarco": [ "NNP" ], "rustic": [ "JJ" ], "vote-diluting": [ "JJ" ], "radar-type": [ "JJ" ], "Richeson": [ "NNP" ], "discipleship": [ "NN" ], "Harlin": [ "NNP" ], "horses": [ "NNS" ], "Theodosian": [ "JJ" ], "immersion": [ "NN" ], "bank-credit": [ "NN" ], "sorcery": [ "NN" ], "antibiotics": [ "NNS" ], "aerialists": [ "NNS" ], "hissed": [ "VBD" ], "Trupins": [ "NNPS" ], "five-member": [ "JJ" ], "Laplace": [ "NNP" ], "Alberding": [ "NNP" ], "Wheeland": [ "NNP" ], "Libyan": [ "JJ", "NN", "NNP" ], "Showbiz": [ "NNP" ], "Captures": [ "NNP" ], "Gecker": [ "NNP" ], "Cozying": [ "VBG" ], "ineffectual": [ "JJ" ], "caveat": [ "NN" ], "Apropos": [ "RB" ], "absently": [ "RB" ], "Indefinite": [ "JJ" ], "Captured": [ "VBN" ], "technical-services": [ "NNS" ], "Willenson": [ "NNP" ], "searchlight": [ "NN" ], "duets": [ "NNS" ], "Duffey": [ "NNP" ], "asset-rich": [ "JJ" ], "Interco": [ "NNP" ], "metamorphosis": [ "NN" ], "Thompson": [ "NNP" ], "regulation\\/deregulation": [ "NN" ], "Democratique": [ "NNP" ], "third-generation": [ "JJ" ], "ostentatiously": [ "RB" ], "terrestrial": [ "JJ" ], "grey-haired": [ "JJ" ], "Cashin": [ "NNP" ], "liveried": [ "JJ" ], "Cannon": [ "NNP" ], "irrigate": [ "VB" ], "untied": [ "VBD" ], "occasionally": [ "RB" ], "Boseki": [ "NNP" ], "Iodination": [ "NN" ], "antebellum": [ "JJ" ], "Lobo": [ "NNP" ], "biophysics": [ "NNS" ], "cadmium": [ "NN" ], "adventure": [ "NN", "VB" ], "concentrating": [ "VBG" ], "Ceremonial": [ "NNP" ], "PRODUCT": [ "NN" ], "Belgrade": [ "NNP" ], "Single-A-3": [ "JJ" ], "Single-A-2": [ "JJ" ], "meticulous": [ "JJ" ], "stock-optioned": [ "JJ" ], "untenable": [ "JJ" ], "Armen": [ "NNP" ], "fish-export": [ "JJ" ], "Armed": [ "NNP", "VBN", "JJ" ], "PPI": [ "NNP" ], "Yenakiyevo": [ "NNP" ], "SAINT": [ "NNP" ], "Bottom": [ "NNP", "JJ", "NN" ], "Carr-Lowrey": [ "NNP" ], "Alsop": [ "NNP" ], "Tessie": [ "NNP" ], "grille-route": [ "NN" ], "Same": [ "JJ" ], "Ravitz": [ "NNP" ], "Lorrain": [ "NNP" ], "Alson": [ "NNP" ], "Arab-sponsored": [ "JJ" ], "Relational": [ "NNP" ], "Cigarette": [ "NN", "NNP" ], "Roach": [ "NNP" ], "unitary": [ "JJ" ], "Daolet": [ "NNP" ], "transfers": [ "NNS", "VBZ" ], "soccer": [ "NN" ], "somebody": [ "NN" ], "generously": [ "RB" ], "Err": [ "VB" ], "Trimmer": [ "NNP" ], "countercharged": [ "VBD" ], "Era": [ "NNP", "NN" ], "Haack": [ "NNP" ], "countercharges": [ "NNS" ], "U.S.-grown": [ "JJ" ], "instructions": [ "NNS" ], "intolerably": [ "RB" ], "Longue": [ "NNP" ], "Hands-on": [ "JJ" ], "Danes": [ "NNPS", "NNP", "NNS" ], "sequester": [ "NN", "VB", "VBP" ], "accommodates": [ "VBZ" ], "permanant": [ "JJ" ], "immunoelectrophoresis": [ "NN" ], "Western-owned": [ "JJ" ], "Ready": [ "JJ", "NNP" ], "accommodated": [ "VBN" ], "transportable": [ "JJ" ], "intolerable": [ "JJ" ], "erratic": [ "JJ" ], "intactible": [ "JJ" ], "Bede": [ "NNP" ], "Fabric": [ "NN", "NNP" ], "Kitada": [ "NNP" ], "oppressed": [ "JJ", "VBD", "VBN" ], "Butcher": [ "NNP" ], "loopy": [ "JJ" ], "Simat": [ "NNP" ], "mainframes": [ "NNS" ], "loops": [ "NNS", "VBZ" ], "atonal": [ "JJ" ], "oppresses": [ "VBZ" ], "kotowaza": [ "FW" ], "croaking": [ "NN" ], "Abitibi-Price": [ "NNP" ], "firsts": [ "NNS" ], "telltale": [ "JJ", "NN" ], "Vikes": [ "NNPS" ], "anti-depressant": [ "JJ", "NN" ], "disquiet": [ "NN" ], "hilt": [ "NN" ], "hydraulic": [ "JJ" ], "unambiguity": [ "NN" ], "candour": [ "NN" ], "hill": [ "NN" ], "constant-temperature": [ "NN" ], "compounding": [ "VBG", "NN" ], "Samoilov": [ "NNP" ], "Bryce": [ "NNP" ], "roofs": [ "NNS" ], "side-effects": [ "NNS" ], "management-incentive": [ "JJ" ], "yearthat": [ "NN" ], "Opinion": [ "NNP", "NN" ], "shut-off": [ "JJ" ], "Germans.": [ "NNS" ], "bourgeoisie": [ "NNS", "FW" ], "Tempter": [ "NNP" ], "less-than-amicable": [ "JJ" ], "prejudice": [ "NN", "VB" ], "Guardian": [ "NNP" ], "Bland": [ "JJ" ], "Blanc": [ "NNP" ], "Vietor": [ "NNP" ], "Ponder": [ "VBP" ], "shrewish": [ "JJ" ], "seeming": [ "JJ", "VBG" ], "vellum": [ "JJ" ], "Connelly": [ "NNP" ], "Indian": [ "NNP", "JJ" ], "Axel": [ "NNP" ], "distributive": [ "JJ" ], "earthworms": [ "NNS" ], "story": [ "NN" ], "scathing": [ "JJ" ], "Dictionary": [ "NNP", "NN" ], "talismanic": [ "JJ" ], "Durmoy": [ "NNP" ], "leading": [ "VBG", "JJ|VBG", "VBG|JJ", "JJ", "NN" ], "Castro-Medellin": [ "NNP" ], "polyether-type": [ "JJ" ], "Voicetek": [ "NNP" ], "sub-freezing": [ "JJ" ], "market-ready": [ "JJ" ], "often-criticized": [ "JJ" ], "VIACOM": [ "NNP" ], "Danske": [ "NNP" ], "second-class": [ "JJ" ], "Hawker": [ "NNP" ], "Hawkes": [ "NNP" ], "store": [ "NN", "VB", "VBP" ], "temptations": [ "NNS" ], "Bevel": [ "VB" ], "saint": [ "NN" ], "Dangerous": [ "JJ", "NNP" ], "retinal": [ "JJ" ], "off-putting": [ "JJ" ], "alumina": [ "NN" ], "Bozic": [ "NNP" ], "five-course": [ "JJ" ], "shrunken": [ "JJ", "VBN" ], "king": [ "NN" ], "kind": [ "NN", "JJ", "RB" ], "Munich-based": [ "JJ" ], "weatherproof": [ "JJ" ], "Semmelman": [ "NNP" ], "Chickasaws": [ "NNPS" ], "Transol": [ "NNP" ], "cut-price": [ "JJ" ], "multibillion": [ "JJ" ], "Gladiator": [ "NNP" ], "Questioned": [ "VBN" ], "tongues": [ "NNS" ], "Ballet": [ "NNP", "NN" ], "skyscrapers": [ "NNS" ], "storytelling": [ "NN" ], "Giampiero": [ "NNP" ], "shrewd": [ "JJ" ], "Marmalstein": [ "NNP" ], "tongued": [ "VBD", "JJ" ], "Westport": [ "NNP" ], "Telegraphie": [ "NNP" ], "Cid": [ "NNP" ], "Caccappolo": [ "NNP" ], "smallpox": [ "NN" ], "Frabotta": [ "NNP" ], "Moreland": [ "NNP" ], "DJS-Inverness": [ "NNP" ], "single-sex": [ "JJ" ], "conforming": [ "VBG" ], "entirety": [ "NN" ], "humanize": [ "VB" ], "establshed": [ "VBN" ], "genetically": [ "RB" ], "Perna": [ "NNP" ], "Levenson": [ "NNP" ], "gild": [ "VB" ], "inconvenience": [ "NN" ], "Equal": [ "NNP", "JJ" ], "architects": [ "NNS" ], "rarefied": [ "VBN" ], "Pedott": [ "NNP" ], "probabilistic": [ "JJ" ], "farmhouses": [ "NNS" ], "dealers": [ "NNS" ], "Gaither": [ "NNP" ], "forerunner": [ "NN" ], "acclaims": [ "VBZ" ], "lying": [ "VBG", "NN" ], "Serenity": [ "NN" ], "vaunted": [ "JJ", "VBN" ], "safeguarding": [ "VBG" ], "barter": [ "NN" ], "grandmas": [ "NNS" ], "Dolores": [ "NNP", "NNS" ], "Suits": [ "NNS", "NNPS" ], "inflexible": [ "JJ" ], "rate-IRA": [ "NN" ], "Suite": [ "NN", "NNP" ], "Lowenthal": [ "NNP" ], "piezoelectric": [ "JJ" ], "Affordable": [ "NNP", "JJ" ], "Lacking": [ "VBG" ], "suburbanized": [ "VBN" ], "Epsilon": [ "NNP" ], "China-investment": [ "JJ" ], "airtime": [ "NN" ], "yet-to-be-formed": [ "JJ" ], "Stratas": [ "NNP" ], "incapacitating": [ "JJ" ], "founding": [ "NN", "VBG", "JJ" ], "bradykinin": [ "NN" ], "invoke": [ "VB" ], "ungrateful": [ "JJ" ], "Batch": [ "NN" ], "mortgage-backed": [ "JJ" ], "H.J.": [ "NNP" ], "knighted": [ "VBN" ], "reprint": [ "VB" ], "Uno-Ven": [ "NNP" ], "Evren": [ "NNP" ], "syringes": [ "NNS" ], "engraver": [ "NN" ], "Knorr": [ "NNP" ], "tree-huggers": [ "NNS" ], "prescribing": [ "VBG" ], "catharsis": [ "NN" ], "laser-beam-printer": [ "NN" ], "McCoy": [ "NNP" ], "revenues": [ "NNS" ], "engraved": [ "VBN", "JJ" ], "wrote": [ "VBD" ], "Whitehead": [ "NNP" ], "excellences": [ "NNS" ], "charge-excess": [ "NN" ], "rent-subsidized": [ "JJ" ], "procrastinated": [ "VBD" ], "visualize": [ "VB" ], "axially": [ "RB" ], "tummy": [ "NN" ], "worst-marked": [ "JJ" ], "surmounted": [ "VBD", "VBN" ], "ups": [ "NNS" ], "Mmmm": [ "UH" ], "Quell": [ "NNP" ], "Fogelson": [ "NNP" ], "Hsu": [ "NNP" ], "Costanza": [ "NNP" ], "obscenities": [ "NNS" ], "frugality": [ "NN" ], "solo": [ "NN", "JJ", "RB|JJ", "VB" ], "misstep": [ "NN" ], "ushered": [ "VBD", "VBN" ], "silicone": [ "NN" ], "Gasoline": [ "NN" ], "franchises": [ "NNS", "VBZ" ], "attention": [ "NN" ], "Manual": [ "JJ", "NNP" ], "confiscated": [ "VBN", "VBD" ], "bullhide": [ "NN" ], "Workplace": [ "NN", "NNP" ], "fatality": [ "NN" ], "franchisee": [ "NN" ], "franchised": [ "VBN", "JJ" ], "Steinmetz": [ "NNP" ], "oversee": [ "VB" ], "shorthanded": [ "JJ" ], "Aspercreme": [ "NNP" ], "Apollonian": [ "JJ" ], "cancer-susceptible": [ "JJ" ], "much-respected": [ "JJ" ], "nettled": [ "VBD", "VBN" ], "distress": [ "NN" ], "Ex-Cub": [ "JJ" ], "drug-interdiction": [ "NN", "JJ" ], "export-control": [ "JJ", "NN" ], "Snowmass": [ "NNP" ], "Skala": [ "NNP" ], "Metcalf": [ "NNP" ], "Lovie": [ "UH" ], "Ibrahim": [ "NNP" ], "Yoorick": [ "NNP" ], "Cement": [ "NNP" ], "Caitlin": [ "NNP" ], "Fueled": [ "VBN" ], "Edelmann": [ "NNP" ], "Tightened": [ "JJ" ], "Pediatricians": [ "NNS" ], "cone-sphere": [ "JJ" ], "Coeditors": [ "NNS" ], "waste-water": [ "NN" ], "isolationistic": [ "JJ" ], "Sunay": [ "NNP" ], "institutionalized": [ "VBN", "JJ" ], "commodity-options": [ "NNS" ], "flight": [ "NN" ], "Marcile": [ "NNP" ], "proxy-solicitation": [ "JJ" ], "unswagged": [ "JJ" ], "imprudence": [ "NN" ], "precision": [ "NN", "JJ" ], "Corinth": [ "NNP" ], "rescissions": [ "NNS" ], "notables": [ "NNS" ], "instructor": [ "NN" ], "up-tight": [ "JJ" ], "Guccione": [ "NNP" ], "GoldCard": [ "NNP" ], "workmen": [ "NNS" ], "guarding": [ "VBG" ], "indefinitely": [ "RB" ], "Leponex": [ "NNP" ], "Fifty-fifth": [ "NNP" ], "Fabrics": [ "NNP", "NNS", "NNPS" ], "kick": [ "NN", "VB", "VBP" ], "Aikin": [ "NNP" ], "servitude": [ "NN" ], "Forwarding": [ "NNP" ], "unaccompanied": [ "JJ" ], "blue-blood": [ "JJ" ], "Lurgi": [ "NNP" ], "launderer": [ "NN" ], "important-looking": [ "JJ" ], "antithesis": [ "NN" ], "Centrality": [ "NN" ], "Vernitron": [ "NNP", "NN" ], "laundered": [ "VBN", "VBD" ], "Advancers": [ "NNS" ], "Chicago-based": [ "JJ" ], "shirt": [ "NN" ], "sachems": [ "NNS" ], "denunciation": [ "NN" ], "badgering": [ "VBG" ], "HUNGARY": [ "NNP" ], "shirk": [ "VB" ], "yucca": [ "NN" ], "daughters": [ "NNS" ], "higher": [ "JJR", "RB", "RBR" ], "sell": [ "VB", "VBP", "JJ", "NN" ], "GOOD": [ "JJ" ], "Escorts": [ "NNS" ], "restraint": [ "NN" ], "Ranch": [ "NNP", "NN" ], "demarcated": [ "VBN" ], "restrains": [ "VBZ" ], "Crossing": [ "VBG" ], "Triangle": [ "NNP", "NN" ], "Solana": [ "NNP" ], "Fitzgibbon": [ "NNP" ], "Polypropylene": [ "NN" ], "Qureshey": [ "NNP" ], "try": [ "VB", "VBP", "NN" ], "magnified": [ "VBN", "VBD" ], "destabilizing": [ "VBG", "JJ" ], "Norsemen": [ "NNPS" ], "machinery": [ "NN" ], "extorted": [ "VBD" ], "magnifies": [ "VBZ" ], "self": [ "NN", "PRP" ], "Liberalism": [ "NN", "NNP" ], "acquisition-minded": [ "JJ" ], "Fitts": [ "NNP" ], "prorata": [ "FW" ], "large-area": [ "JJ" ], "prorate": [ "VB" ], "Anti-nuclear": [ "JJ" ], "pop-music": [ "NN" ], "Dragoumis": [ "NNP" ], "Wonderful": [ "JJ" ], "humaine": [ "NN" ], "Playground": [ "NNP" ], "comprehensively": [ "RB" ], "blank-faced": [ "JJ" ], "Ovonic": [ "NNP" ], "Groff": [ "NNP" ], "summaries": [ "NNS" ], "meanest": [ "JJS" ], "Jackpot": [ "NNP" ], "Ironically": [ "RB", "NNP" ], "Marulanda": [ "NNP" ], "Nokia": [ "NNP" ], "comedy\\": [ "JJ" ], "Pompano": [ "NNP" ], "Shores": [ "NNP" ], "Chadli": [ "NNP" ], "difficile": [ "FW" ], "jostle": [ "VBP", "VB" ], "Ammann": [ "NNP" ], "Sain": [ "NNP" ], "Injection": [ "NNP", "NN" ], "vetoing": [ "VBG" ], "Hilder": [ "NNP" ], "Naumberg": [ "NNP" ], "Artois": [ "NNP" ], "Enzor": [ "NNP" ], "Sail": [ "NNP" ], "Thou": [ "PRP" ], "advocate": [ "NN", "VB", "VBP" ], "bemoan": [ "VB" ], "Kurtanjek": [ "NNP" ], "Thor": [ "NNP" ], "Thom": [ "NNP" ], "re-entry": [ "NN" ], "Nakhamkin": [ "NNP" ], "Foliage": [ "NN", "NNP" ], "macromolecular": [ "JJ" ], "Revising": [ "VBG" ], "Uniroyal\\": [ "NNP" ], "skeptical": [ "JJ" ], "cogeneration": [ "NN" ], "confront": [ "VB", "VBP" ], "phosphors": [ "NNS" ], "separately": [ "RB" ], "uproar": [ "NN" ], "deleterious": [ "JJ" ], "Cady": [ "NNP" ], "Bishopsgate": [ "NNP" ], "DALKON": [ "NNP" ], "campagna": [ "NN" ], "new-model": [ "JJ", "NN" ], "policy-makers": [ "NNS" ], "disinclined": [ "VBN", "JJ" ], "Matsunaga": [ "NNP" ], "chaulmoogra": [ "NN" ], "Roustabouts": [ "NNPS" ], "hurriedly": [ "RB" ], "Prosecutor": [ "NNP" ], "Sony\\/Columbia": [ "NNP" ], "LATE": [ "JJ", "RB", "NNP" ], "constitutionality": [ "NN" ], "Klimt": [ "NNP" ], "Gewirtz": [ "NNP" ], "Parvenu": [ "NNP" ], "Sunday-newspaper": [ "NNP" ], "Nishi": [ "NNP" ], "stock-manipulation": [ "NN", "JJ" ], "jumped-up": [ "JJ" ], "Uspensky": [ "NNP" ], "perpendicular": [ "JJ" ], "I-75": [ "NN" ], "refused": [ "VBD", "VBN" ], "Bikers": [ "NNS" ], "consolation": [ "NN" ], "refuses": [ "VBZ" ], "Peiping": [ "NNP" ], "projector": [ "NN" ], "pipeline": [ "NN" ], "asserting": [ "VBG" ], "bristling": [ "VBG", "JJ" ], "raucous": [ "JJ" ], "violins": [ "NNS" ], "careerism": [ "NN" ], "plaza": [ "NN" ], "virus": [ "NN" ], "lifeless": [ "JJ" ], "Bolshevism": [ "NNP" ], "Voyagers.": [ "NNPS" ], "Keizer": [ "NNP" ], "Defrost": [ "VB" ], "youthful": [ "JJ" ], "calloused": [ "JJ" ], "CONFIRMED": [ "VBD" ], "Andersen": [ "NNP" ], "re-engineered": [ "VBD", "VBN" ], "Moffett": [ "NNP" ], "tappets": [ "NNS" ], "Arbogast": [ "NNP" ], "BioScience": [ "NNP" ], "Minster": [ "NNP" ], "artifice": [ "NN" ], "flagellated": [ "VBN" ], "strumming": [ "VBG" ], "stench": [ "NN" ], "impressed": [ "VBN", "VBN|JJ", "JJ", "VBD" ], "acquiesce": [ "VB" ], "lone": [ "JJ" ], "handles": [ "VBZ", "NNS" ], "long": [ "JJ", "VBP", "RB" ], "Microcom": [ "NNP", "NN" ], "Torrid-Breeze": [ "NNP" ], "impresses": [ "VBZ" ], "impresser": [ "NN" ], "etch": [ "VB" ], "EAST": [ "NNP", "NNS", "JJ" ], "Appaloosas": [ "NNPS" ], "authored": [ "VBN" ], "audacious": [ "JJ" ], "monomers": [ "NNS" ], "Barth": [ "NNP" ], "anesthetics": [ "NNS" ], "kitchenware": [ "NN" ], "Elizario": [ "NNP" ], "anti-clericalism": [ "JJ" ], "fulfilling": [ "VBG" ], "Wesleyan": [ "NNP" ], "sanguineum": [ "NN" ], "Barbera": [ "NNP" ], "bankrolling": [ "VBG" ], "price-sensitive": [ "JJ" ], "co-managing": [ "JJ", "VBG" ], "fluctuations": [ "NNS" ], "etc.": [ "FW", "NN" ], "Bankhaus": [ "NNP" ], "fiscally": [ "RB" ], "debt-for-environment": [ "NN" ], "Saxony": [ "NNP" ], "Gerold": [ "NNP" ], "water-cooled": [ "JJ" ], "Nazia": [ "NNP" ], "coordinator": [ "NN" ], "Attack": [ "NNP", "NN" ], "reservoirs": [ "NNS" ], "whitewashing": [ "VBG" ], "rally": [ "NN", "VBP", "VB" ], "rained": [ "VBD", "VBN" ], "Nazis": [ "NNPS", "NNP", "NNS" ], "Cunard": [ "NNP" ], "leadership...": [ ":" ], "rainbow": [ "NN" ], "toeholds": [ "NNS" ], "camcorders": [ "NNS" ], "Jorge": [ "NNP" ], "Ignorance": [ "NN" ], "saffron": [ "NN" ], "Price-boosting": [ "JJ" ], "one-on-one": [ "JJ", "RB" ], "Personally": [ "RB" ], "bandstand": [ "NN" ], "Prefecture": [ "NNP" ], "Colts": [ "NNP" ], "Coupons": [ "NNS" ], "nice": [ "JJ" ], "Audit": [ "NNP" ], "Hackmann": [ "NNP" ], "private-placement": [ "JJ", "NN" ], "smitten": [ "VBN" ], "self-discovery": [ "NN" ], "cityscapes": [ "NNS" ], "dragnet": [ "NN" ], "bonding": [ "VBG", "NN" ], "ROK": [ "NNP" ], "allowing": [ "VBG" ], "Audio": [ "NNP" ], "Saupiquet": [ "NNP" ], "relaunch": [ "VB" ], "HHS": [ "NNP" ], "Asher": [ "NNP" ], "Curling": [ "NNP" ], "Edna": [ "NNP" ], "amusements": [ "NNS" ], "Turned": [ "VBN" ], "departments": [ "NNS" ], "Rubinstein": [ "NNP" ], "Afro-Asian": [ "NNP" ], "Boisvert": [ "NNP" ], "Kinney": [ "NNP" ], "safekeep": [ "VB" ], "Turner": [ "NNP" ], "buffalo": [ "NN", "NNS" ], "Wheelan": [ "NNP" ], "Based": [ "VBN", "NNP" ], "Basel": [ "NNP" ], "Oremland": [ "NNP" ], "Foret": [ "NNP" ], "Lattice": [ "NNP" ], "Braverman": [ "NNP" ], "discordant": [ "JJ" ], "uphold": [ "VB", "VBP" ], "Shippings": [ "NNS" ], "inbreeding": [ "VBG", "NN" ], "graybeards": [ "NNS" ], "Govett": [ "NNP" ], "Morphophonemic": [ "JJ" ], "Axxess": [ "NNP" ], "languages": [ "NNS", "VBZ" ], "warehouseman": [ "NN" ], "repackage": [ "VB" ], "careened": [ "VBD" ], "blended": [ "JJ", "VBD", "VBN" ], "include": [ "VBP", "VBN", "VB" ], "Takahashi": [ "NNP" ], "Matagorda": [ "NNP" ], "face-lifting": [ "NN" ], "Killen": [ "NNP" ], "accommodations": [ "NNS" ], "currency-exchange": [ "JJ" ], "Topaz": [ "NNP" ], "Reaffirming": [ "VBG" ], "Oresme": [ "NNP" ], "skivvies": [ "NNS" ], "Chesterfield": [ "NNP" ], "Bruckmann": [ "NNP" ], "socio-political": [ "JJ" ], "disclaimed": [ "VBD" ], "leveled": [ "VBD", "VBN" ], "Composer": [ "NN" ], "Taurida": [ "NNP" ], "Riverwalk": [ "NNP" ], "Dyazide": [ "NNP" ], "Telecommunications": [ "NNPS", "NNP", "NNS" ], "Euzhan": [ "NNP" ], "concluded": [ "VBD", "VBN" ], "non-fiction": [ "JJ", "NN" ], "Wames": [ "NNP" ], "Nocturne": [ "NNP" ], "Kerrey": [ "NNP" ], "wrestling": [ "VBG", "NN" ], "malice": [ "NN" ], "electronic-transaction": [ "JJ" ], "aquifer": [ "NN" ], "counter-argument": [ "NN" ], "bedpans": [ "NNS" ], "reunion": [ "NN" ], "acid": [ "NN", "JJ" ], "Cash-heavy": [ "JJ" ], "Shanyun": [ "NNP" ], "Baches": [ "NNPS" ], "bibliophiles": [ "NNS" ], "Governors": [ "NNP", "NNS", "NNPS" ], "disentangle": [ "VB" ], "bearish": [ "JJ" ], "Coherent": [ "NNP" ], "occupation": [ "NN" ], "McElvaney": [ "NNP" ], "well-traveled": [ "JJ" ], "chose": [ "VBD" ], "Seton": [ "NNP" ], "kangaroo": [ "NN" ], "Grovers": [ "NNP" ], "wraps": [ "VBZ", "NNS" ], "Apostles": [ "NNPS" ], "explore": [ "VB", "VBP" ], "Yun": [ "NNP" ], "insubordinate": [ "JJ" ], "Belvieu": [ "NNP" ], "Checchi-Skinner": [ "NNP" ], "settling": [ "VBG", "NN" ], "Goodis": [ "NNP" ], "Arvey": [ "NNP" ], "Selection": [ "NN" ], "blue-glazed": [ "JJ" ], "apparat": [ "NN" ], "Christmastime": [ "NNP" ], "operating-system": [ "JJ", "NN" ], "suggests": [ "VBZ" ], "Cheshire": [ "NNP" ], "Palm": [ "NNP", "NN" ], "Pall": [ "NNP", "NN" ], "Palo": [ "NNP" ], "Phosphates": [ "NNP" ], "pre-academic": [ "JJ" ], "Pale": [ "NNP", "RB" ], "pajama": [ "NN" ], "pro-Hearst": [ "JJ" ], "Staffers": [ "NNS" ], "saltier": [ "JJR" ], "Ships": [ "NNS" ], "hardy": [ "JJ" ], "Exit": [ "NN" ], "doubtfully": [ "RB" ], "Froissart": [ "NNP" ], "Wiseman": [ "NNP" ], "no-back": [ "NN" ], "from": [ "IN", "RB", "RP" ], "Neurex": [ "NNP" ], "frog": [ "NN" ], "procrastinate": [ "VB" ], "underscoring": [ "VBG" ], "DEMOCRATS": [ "NNS" ], "circuitous": [ "JJ" ], "rapid-fire": [ "JJ" ], "auxiliaries": [ "NNS" ], "removable": [ "JJ" ], "Gun": [ "NNP", "NN" ], "Wheaton": [ "NNP" ], "Landfill": [ "NN", "NNP" ], "Sequoia": [ "NNP", "NN" ], "Kondratas": [ "NNP" ], "Mig": [ "NN" ], "Guy": [ "NNP" ], "Netsch": [ "NNP" ], "Affair": [ "NNP", "NN" ], "Aghazadeh": [ "NNP" ], "fifth-best": [ "JJ" ], "accrues": [ "VBZ" ], "recessionary": [ "JJ" ], "Calvi": [ "NNP" ], "Comsat": [ "NNP" ], "hookups": [ "NNS" ], "accrued": [ "VBN", "JJ" ], "Tartaglia": [ "NNP" ], "Edmund": [ "NNP" ], "Farnese": [ "NNP" ], "thirsty": [ "JJ" ], "nonverbal": [ "JJ" ], "re-set": [ "VB" ], "L&N": [ "NNP" ], "assumptions": [ "NNS" ], "Reorganizing": [ "VBG" ], "Australian": [ "JJ", "NNP" ], "electronic-defense": [ "NN" ], "autobiography": [ "NN" ], "counting": [ "VBG", "NN" ], "spinnability": [ "NN" ], "then-rampant": [ "JJ" ], "cliches": [ "NNS" ], "Toshiichi": [ "NNP" ], "sidewalks": [ "NNS" ], "stewardship": [ "NN" ], "Large-package": [ "JJ" ], "Garments": [ "NNS" ], "Concocts": [ "VBZ" ], "secular": [ "JJ" ], "cliched": [ "JJ" ], "Mambelli": [ "NNP" ], "ceasing": [ "VBG" ], "detests": [ "VBZ" ], "warehouse-management": [ "NN" ], "normalcy": [ "NN" ], "deltoid": [ "NN" ], "Pockets": [ "NNS" ], "Inability": [ "NN" ], "Ruwe": [ "NNP" ], "Puhl": [ "NNP" ], "somethin": [ "NN" ], "Outdoor": [ "JJ", "NNP" ], "hum": [ "NN", "VB" ], "budge": [ "VB" ], "Sonenberg": [ "NNP" ], "civics": [ "NNS" ], "villas": [ "NNS" ], "Kings": [ "NNP", "NNPS" ], "Liriano": [ "NNP" ], "Sino-foreign": [ "JJ" ], "Craton": [ "NNP" ], "violator": [ "NN" ], "perishing": [ "VBG" ], "sanctioned": [ "VBN" ], "Interference": [ "NNP" ], "interpreted": [ "VBN", "VBD" ], "strove": [ "VBD" ], "Tortoriello": [ "NNP" ], "Mitre": [ "NNP" ], "interpreter": [ "NN" ], "Markese": [ "NNP" ], "small-equipment": [ "NN" ], "late-1988": [ "JJ" ], "dismaying": [ "JJ" ], "Fairly": [ "RB" ], "neighborly": [ "JJ" ], "glee": [ "NN" ], "Lublin": [ "NNP" ], "crowds": [ "NNS", "VBP", "VBZ" ], "Admassy": [ "NNP" ], "Tickets": [ "NNS" ], "Ibn": [ "NNP" ], "undoing": [ "NN", "VBG" ], "impressing": [ "VBG" ], "Deloris": [ "NNP" ], "REPORTS": [ "NNS" ], "ambition": [ "NN" ], "abstractive": [ "JJ" ], "clippings": [ "NNS" ], "measly": [ "JJ" ], "edit": [ "VB" ], "enviable": [ "JJ" ], "subcontinent": [ "NN" ], "redwoods": [ "NNS" ], "three-wood": [ "JJ" ], "Bucky": [ "NNP" ], "computer-operated": [ "JJ" ], "Eliminating": [ "VBG" ], "pleasures": [ "NNS" ], "Bucks": [ "NNP" ], "treads": [ "VBZ" ], "Preferences": [ "NNP", "NNS", "NNPS" ], "floutingly": [ "RB" ], "Venezuelans": [ "NNPS" ], "Nihon": [ "NNP" ], "deals...": [ ":" ], "double-wing": [ "JJ" ], "whipsawed": [ "VBN" ], "senior-subordinated": [ "JJ" ], "ambassadors": [ "NNS" ], "Verboort": [ "NN" ], "say-great": [ "JJ" ], "KAISER": [ "NNP" ], "honorably": [ "RB" ], "Civ.": [ "NNP" ], "Waikoloa": [ "NNP" ], "Canseco": [ "NNP" ], "chaos": [ "NN" ], "delivre": [ "VB" ], "Weisberg": [ "NNP" ], "Brokerage": [ "NN", "NNP" ], "M.I.T.-trained": [ "JJ" ], "Unique": [ "JJ" ], "Cartoon": [ "NN", "NNP" ], "Sequent": [ "NNP" ], "Ednee": [ "NNP" ], "Mattis": [ "NNP" ], "pours": [ "VBZ" ], "SUPREME": [ "NNP" ], "up-scale": [ "JJ" ], "Mattie": [ "NNP" ], "Stupid": [ "JJ" ], "Beige": [ "NNP" ], "Mattia": [ "NNP" ], "Paganini": [ "NNS" ], "organic": [ "JJ" ], "g": [ "NN" ], "crashed": [ "VBD", "JJ", "VBN" ], "bioequivalence-therapeutic-equivalence": [ "JJ" ], "Autocollimator": [ "NN" ], "footnoted": [ "VBN" ], "loggerheads": [ "NNS" ], "Renaissance-style": [ "JJ" ], "regaining": [ "VBG" ], "hence": [ "RB" ], "footnotes": [ "NNS" ], "Regionally": [ "RB" ], "self-enclosed": [ "JJ" ], "Belfast": [ "NNP" ], "Lufkin": [ "NNP" ], "eleventh": [ "JJ" ], "Electrical": [ "NNP", "JJ" ], "title-holder": [ "NN" ], "J.G.": [ "NNP" ], "two-wheel-drive": [ "JJ" ], "assailing": [ "VBG" ], "end-of-year": [ "JJ" ], "property-investment": [ "NN" ], "unknown": [ "JJ", "NN" ], "Waving": [ "VBG" ], "glide-bombed": [ "VBD" ], "misunderstood": [ "VBN", "VBD" ], "Nibelungenlied": [ "NNP" ], "Lencioni": [ "NNP" ], "consoling": [ "VBG" ], "Mixtec": [ "JJ" ], "cuckoo-bumblebee": [ "NN" ], "well-organized": [ "JJ" ], "fist-fighting": [ "NN" ], "Intolerable": [ "JJ" ], "Denrees": [ "NNP" ], "bashed": [ "VBD", "VBN" ], "colas": [ "NNS" ], "Quebecers": [ "NNPS" ], "Ellison": [ "NNP" ], "War-era": [ "NNP" ], "willingess": [ "NN" ], "househld": [ "JJ" ], "basher": [ "NN" ], "Cozumel": [ "NNP" ], "creditors": [ "NNS" ], "Diego": [ "NNP", "JJ" ], "co-written": [ "VBN" ], "right-of-entry": [ "NN" ], "Keogh": [ "NNP" ], "teenagers": [ "NNS" ], "thrift-rescue": [ "JJ", "NN" ], "small-stock": [ "NN", "JJ" ], "delineated": [ "VBN" ], "gloomily": [ "RB" ], "Forgiveness": [ "NN" ], "convenants": [ "NNS" ], "declasse": [ "JJ" ], "Howsam": [ "NNP" ], "lightning-like": [ "JJ" ], "propriety": [ "NN" ], "marginalizing": [ "VBG" ], "boastful": [ "JJ" ], "Dock": [ "NNP" ], "trespassing": [ "NN", "VBG" ], "Angrist": [ "NNP" ], "Johansen": [ "NNP" ], "misplacing": [ "VBG" ], "law-based": [ "JJ" ], "Gorenstein": [ "NNP" ], "Moines": [ "NNP" ], "twittering": [ "VBG" ], "mavens": [ "NNS" ], "Dorsten": [ "NNP" ], "agglutinins": [ "NNS" ], "hilltop": [ "NN" ], "Agnelli-related": [ "JJ" ], "GM-Toyota": [ "JJ" ], "why": [ "WRB" ], "Lindsay": [ "NNP" ], "JPI": [ "NNP" ], "Huskins": [ "NNP" ], "ensues": [ "VBZ" ], "oscillated": [ "VBD" ], "off-season": [ "NN" ], "Actress": [ "NNP" ], "pipe": [ "NN" ], "blowup": [ "NN" ], "ensued": [ "VBD", "VBN" ], "Everybody": [ "NN", "NNP" ], "Whose": [ "WP$" ], "balding": [ "JJ", "VBG" ], "stonemason": [ "NN" ], "pleases": [ "VBZ" ], "Shima": [ "NNP" ], "chapters": [ "NNS" ], "Klamath": [ "NNP" ], "Chemical": [ "NNP", "JJ", "NN" ], "unwinding": [ "NN", "VBG" ], "convertibles": [ "NNS" ], "utter": [ "JJ", "VBP", "VB" ], "pleased": [ "VBN", "JJ", "VBD" ], "litigation": [ "NN" ], "earthquake-proof": [ "JJ" ], "SUPERPOWERS": [ "NNPS" ], "post-modern": [ "JJ" ], "Gramercy": [ "NNP" ], "Dickson": [ "NNP" ], "Tanganika": [ "NNP" ], "he": [ "PRP", "VB" ], "widegrip": [ "JJ" ], "indignant": [ "JJ" ], "cube": [ "NN" ], "skimp": [ "VB" ], "skims": [ "VBZ" ], "Clayton-Pedersen": [ "NNP" ], "Enright": [ "NNP" ], "GPA": [ "NNP" ], "growth-and-income": [ "JJ" ], "Beaman": [ "NNP" ], "cubs": [ "NNS" ], "coordinating": [ "VBG", "NN" ], "aleck": [ "NN" ], "Holman": [ "NNP" ], "Plastics": [ "NNS", "NNPS", "NNP" ], "Sentence": [ "NN" ], "Ambushes": [ "NNS" ], "Spinning": [ "VBG" ], "paternalism": [ "NN", "JJ" ], "Stalinist-corrupted": [ "JJ" ], "union-busting": [ "JJ" ], "tickertape": [ "NN" ], "Halsey": [ "NNP" ], "editorialize": [ "VB" ], "half-million": [ "JJ" ], "go-go": [ "JJ" ], "workbench": [ "NN" ], "Ungava": [ "NNP" ], "Relocation": [ "NNP" ], "bust-up": [ "JJ" ], "honorariums": [ "NNS" ], "multipart": [ "JJ" ], "Cartusciello": [ "NNP" ], "Bosses": [ "NNS" ], "confrontational": [ "JJ" ], "despoiled": [ "VBN" ], "endothermic": [ "JJ" ], "sparsely": [ "RB" ], "traditionalism": [ "NN" ], "penetrations": [ "NNS" ], "credentialized": [ "JJ" ], "monstrous": [ "JJ" ], "candidate-picking": [ "JJ" ], "multifaceted": [ "JJ" ], "wetting": [ "VBG", "NN" ], "limit": [ "NN", "VB", "VBP" ], "defacing": [ "VBG" ], "Diagnoses": [ "NNPS" ], "Gordin": [ "NNP" ], "jot": [ "NN" ], "conclave": [ "NN" ], "horrifyingly": [ "RB" ], "joy": [ "NN" ], "Democrat": [ "NNP", "NN" ], "job": [ "NN" ], "Subway": [ "NNP", "NN" ], "Machiavellian": [ "JJ" ], "Epigraph": [ "NN" ], "stucco": [ "NN" ], "Donnelly": [ "NNP" ], "estuarian": [ "NN" ], "tremolo": [ "NN" ], "valiantly": [ "RB" ], "april": [ "NNP" ], "presidential-primary": [ "NN" ], "Sustaining": [ "VBG" ], "Dealer": [ "NNP", "NN" ], "grounds": [ "NNS", "VBZ" ], "Expos": [ "NNPS" ], "Kuhlman": [ "NNP" ], "Staffe": [ "NNP" ], "heredity": [ "NN" ], "Indianapolis-based": [ "JJ" ], "symphonies": [ "NNS" ], "Staffs": [ "NNS" ], "Abd-al-Aziz": [ "NNP" ], "advertising-backed": [ "JJ" ], "Sternberg": [ "NNP" ], "Postwar": [ "RB" ], "decent": [ "JJ" ], "Campestre": [ "NNP" ], "trademark": [ "NN" ], "responds": [ "VBZ" ], "short-circuited": [ "VBD", "VBN" ], "arbitrator": [ "NN" ], "lipsticks": [ "NNS" ], "Toronto": [ "NNP", "NN" ], "puberty": [ "NN" ], "harshest": [ "JJS" ], "talk-show": [ "NN", "JJ" ], "discimination": [ "NN" ], "frozen-pizza": [ "NN" ], "Westmin": [ "NNP" ], "Face": [ "NNP", "VBP" ], "boozed-out": [ "JJ" ], "naphtha": [ "NN" ], "McGruder": [ "NNP" ], "Junk-holders": [ "NNS" ], "follow-ups": [ "NNS" ], "auto-emission": [ "NN" ], "Regret": [ "NN" ], "Sept.": [ "NNP", "JJ", "NN" ], "shrimping": [ "NN" ], "lanthanum": [ "NN" ], "leaded-glass": [ "JJ" ], "Not-held": [ "JJ" ], "stunning": [ "JJ" ], "black-eyed": [ "JJ" ], "medicinal": [ "JJ", "NN" ], "Doraville": [ "NNP" ], "Knappertsbusch": [ "NNP" ], "unworkable": [ "JJ" ], "crassness": [ "NN" ], "lower-than-anticipated": [ "JJ" ], "draining": [ "VBG", "NN" ], "lonely": [ "JJ" ], "Marchand": [ "NNP" ], "lightweight": [ "JJ", "NN" ], "disinterred": [ "VBN" ], "Rimini": [ "NNP" ], "over-price": [ "VB" ], "Culver": [ "NNP" ], "maddening": [ "JJ", "VBG" ], "temptingly": [ "RB" ], "lyricists": [ "NNS" ], "exuberance": [ "NN" ], "burnouts": [ "NNS" ], "disciple": [ "NN" ], "Doobie": [ "NNP" ], "disagree": [ "VBP", "VB" ], "Fungi": [ "NNP" ], "Quickening": [ "VBG" ], "overcrowded": [ "JJ", "VBN" ], "recriminations": [ "NNS" ], "picayune": [ "JJ" ], "Rauschenberg": [ "NNP" ], "Loosli": [ "NNP" ], "fur-and-leather": [ "JJ" ], "warming": [ "NN", "VBG|NN", "VBG" ], "Houston": [ "NNP", "JJ" ], "Meaney": [ "NNP" ], "aquisition": [ "NN" ], "timbre": [ "NN" ], "enamored": [ "JJ" ], "self-serve": [ "NN" ], "conquer": [ "VB", "VBP" ], "Ruppert": [ "NNP" ], "re-incorporated": [ "VBN" ], "cameo": [ "NN", "JJ" ], "camel": [ "NN" ], "accosting": [ "VBG" ], "system-management": [ "NN" ], "Balmain": [ "NNP" ], "off-off": [ "JJ" ], "Strawbridge": [ "NNP" ], "Eshleman": [ "NNP" ], "Liebler": [ "NNP" ], "pythons": [ "NNS" ], "Hand-holding": [ "NN" ], "Burkhardt": [ "NNP" ], "archfool": [ "NN" ], "Crumley": [ "NNP" ], "guts": [ "NNS" ], "trade-ethnic": [ "JJ" ], "Quotron": [ "NNP", "NN" ], "usage": [ "NN" ], "Glasses": [ "NNS" ], "Pearson": [ "NNP" ], "provisions": [ "NNS" ], "wagon": [ "NN" ], "Homeowners": [ "NNP", "NNS" ], "term": [ "NN", "VB", "VBP" ], "single-handed": [ "JJ" ], "Components": [ "NNP", "NNPS" ], "catchers": [ "NNS" ], "redesign": [ "NN", "VB" ], "Gabe": [ "NNP" ], "Portago": [ "NNP" ], "largest-selling": [ "JJ" ], "CAMBREX": [ "NNP" ], "Vila": [ "NNP" ], "KVA": [ "NNP" ], "gilt-edged": [ "JJ" ], "RISK": [ "NN" ], "perpetual": [ "JJ" ], "housing-assistance": [ "JJ" ], "Treece": [ "NNP" ], "Frosted": [ "NNP" ], "Interfinance": [ "NNP" ], "overtures": [ "NNS" ], "feigned": [ "JJ", "VBN" ], "hosts": [ "NNS", "VBZ" ], "glass-fiber": [ "JJ" ], "anti-cholesterol": [ "JJ" ], "parity": [ "NN" ], "exceed": [ "VB", "VBP" ], "smoothly": [ "RB" ], "contemporaneous": [ "JJ" ], "reclamation": [ "NN" ], "melee": [ "NN" ], "dot-matrix": [ "NN" ], "past.": [ "NN" ], "Zukin": [ "NNP" ], "misadventures": [ "NNS" ], "Biblical": [ "JJ", "NNP" ], "Wildbad": [ "NNP" ], "Himebaugh": [ "NNP" ], "underutilization": [ "NN" ], "Tussard": [ "NNP" ], "Jack-of-all-trades": [ "NN" ], "Korobytsin": [ "NNP" ], "Heartwise": [ "NNP" ], "physician-executive": [ "JJ" ], "pasty": [ "JJ", "NN" ], "across-the-board": [ "JJ", "NN", "RB" ], "services-repair": [ "NN" ], "Newall": [ "NNP" ], "Dollars": [ "NNPS", "NNS" ], "Ehman": [ "NNP" ], "Bingles": [ "NNS" ], "fords": [ "NNS" ], "pasta": [ "NN" ], "Bingley": [ "NNP" ], "paste": [ "NN", "VB" ], "calcium-supplemented": [ "JJ" ], "pike": [ "NN" ], "Jurists": [ "NNP" ], "rare": [ "JJ" ], "carried": [ "VBD", "VBN" ], "Dufresne": [ "NNP" ], "goat-drawn": [ "JJ" ], "then-Air": [ "JJ|NP" ], "Carr": [ "NNP" ], "Kreutzer": [ "NNP" ], "carrier": [ "NN" ], "construction-oriented": [ "JJ" ], "outstripped": [ "NN", "VBD", "VBN" ], "Cigna": [ "NNP" ], "Angelica": [ "NNP", "FW" ], "half-heartedly": [ "JJ" ], "outset": [ "NN" ], "WTXF": [ "NNP" ], "polished": [ "VBN", "JJ", "VBD" ], "Gorton": [ "NNP" ], "gymnastic": [ "JJ" ], "Gene-Spliced": [ "JJ" ], "Angelico": [ "NNP" ], "polishes": [ "NNS" ], "lawful": [ "JJ" ], "zoology": [ "NN" ], "Penman": [ "NNP" ], "Honeybee": [ "NNP" ], "AWOC": [ "NNP" ], "Schuler": [ "NNP" ], "Feeding": [ "NNP" ], "Grease": [ "NN" ], "Finance": [ "NNP", "NN" ], "crave": [ "VBP", "VB" ], "suburbs": [ "NNS" ], "Capetown": [ "NNP" ], "Transcaucasus": [ "NNP" ], "spiral": [ "NN", "VB" ], "RAAF": [ "NNP" ], "captains": [ "NNS" ], "Hartigan": [ "NNP" ], "gazpacho": [ "NN" ], "Execution": [ "NNP", "NN" ], "Leveraged": [ "JJ", "VBN" ], "Greasy": [ "JJ" ], "automates": [ "VBZ" ], "Davison": [ "NNP" ], "nourish": [ "VB" ], "catsup": [ "NN" ], "supertanker": [ "NN" ], "Galophone-Prissy": [ "NNP" ], "indigents": [ "NNS" ], "DEFICIT": [ "NNP" ], "Witcher": [ "NNP" ], "defamed": [ "VBN", "VBD" ], "administration...": [ ":" ], "protesting": [ "VBG" ], "FCB\\/Leber": [ "NNP" ], "Tawney": [ "NNP" ], "Britain": [ "NNP" ], "graphite": [ "NN" ], "unasterisked": [ "JJ" ], "Hi-Country": [ "NNP" ], "CAE-Link": [ "NNP" ], "monastic": [ "JJ" ], "bewail": [ "VB" ], "Descent": [ "NN" ], "horrific": [ "JJ" ], "Illinois-based": [ "JJ" ], "overhauled": [ "VBN", "VBD" ], "maroon": [ "JJ" ], "Geometric": [ "NNP", "JJ" ], "visa": [ "NN" ], "gizmo": [ "NN" ], "monopolists": [ "NNS" ], "Haskin": [ "NNP" ], "glint": [ "NN" ], "multi-spired": [ "JJ" ], "overprotected": [ "VBN" ], "hurricane-prone": [ "JJ" ], "Elsinore": [ "NNP" ], "coffees": [ "NNS" ], "repute": [ "NN" ], "Raful": [ "NNP" ], "conclusion": [ "NN" ], "Mushr": [ "NN" ], "mildness": [ "NN" ], "kinds": [ "NNS" ], "Lionville": [ "NNP" ], "pumps": [ "NNS" ], "Karim": [ "NNP" ], "Karin": [ "NNP" ], "Acme-Cleveland": [ "NNP" ], "rhapsody": [ "NN" ], "market-related": [ "JJ" ], "Siti": [ "NNP" ], "auxiliary": [ "JJ", "NN" ], "Surviving": [ "NNP", "VBG" ], "adaptable": [ "JJ" ], "Bellas": [ "NNP" ], "Sitz": [ "NNP" ], "tumefaciens": [ "NN" ], "tulips": [ "NNS" ], "dominoes": [ "NN" ], "laundromat": [ "NN" ], "sash": [ "NN" ], "pistol-whipped": [ "VBD" ], "impersonalized": [ "JJ" ], "Campuses": [ "NNS" ], "fig.": [ "NN" ], "tormenting": [ "VBG" ], "Elevated": [ "NNP" ], "Sugar": [ "NNP", "NN" ], "plaudits": [ "NNS" ], "Thriving": [ "JJ" ], "Seekonk": [ "NNP" ], "Thrive": [ "VBP" ], "third-biggest": [ "JJ" ], "little-noted": [ "JJ" ], "consulate": [ "NN" ], "Casey": [ "NNP" ], "fingernails": [ "NNS" ], "couch-potato": [ "NN" ], "Cases": [ "NNS" ], "Winooski": [ "NNP" ], "Regionalism": [ "NNP" ], "illegally": [ "RB" ], "PHOBIA": [ "NN" ], "shielding": [ "NN", "VBG" ], "IXL": [ "NNP" ], "reversibility": [ "NN" ], "Eiszner": [ "NNP" ], "TAINTS": [ "VBZ" ], "Super-NOW": [ "NNP" ], "presser": [ "NN" ], "Waikikians": [ "NNPS" ], "neo-swing": [ "NN" ], "antianemia": [ "JJ" ], "Single-seeded": [ "JJ" ], "Tierno": [ "NNP" ], "tensile": [ "JJ" ], "intensification": [ "NN" ], "disburden": [ "VB" ], "then-Minister": [ "JJ" ], "Whisper": [ "NNP" ], "debuting": [ "VBG" ], "parsympathetic": [ "JJ" ], "B.A.": [ "NNP" ], "world-oriented": [ "JJ" ], "switchblade": [ "NN" ], "Gressette": [ "NNP" ], "crisply": [ "RB" ], "Hockey": [ "NNP" ], "Merlis": [ "NNP" ], "milled": [ "JJ" ], "SIZING": [ "NNP" ], "admire": [ "VB", "VBP" ], "machine-masters": [ "NNS" ], "dangled": [ "VBD", "VBN" ], "whaling": [ "NN" ], "unlisted": [ "JJ", "VBN" ], "Georgene": [ "NNP" ], "Verner": [ "NNP" ], "dangles": [ "VBZ" ], "Arighi": [ "NNP" ], "negated": [ "VBN", "VBD" ], "increasing": [ "VBG", "JJ", "NN" ], "pictorially": [ "RB" ], "Neville": [ "NNP" ], "Sioux": [ "NNP", "NNPS" ], "PROCTER": [ "NNP" ], "russet-colored": [ "JJ" ], "jasmine": [ "NN" ], "Budget": [ "NNP", "NN" ], "Longer": [ "JJR" ], "Stuttgart": [ "NNP" ], "eight-acre": [ "JJ" ], "Amtech": [ "NNP" ], "Foremost": [ "RB", "NNP" ], "lead\\/sulfur": [ "NN" ], "Yuko": [ "NNP" ], "Yuki": [ "NNP" ], "borrowers": [ "NNS" ], "fast-developing": [ "JJ" ], "Allenport": [ "NNP" ], "hollyhocks": [ "NNS" ], "NOC": [ "NNP" ], "grade-school": [ "JJ" ], "yet...": [ ":" ], "CONSERVATIVES": [ "NNS" ], "NOW": [ "RB", "NNP" ], "NOP": [ "NN", "NNP" ], "burrow": [ "NN", "VB" ], "interferon": [ "NN" ], "Cheered": [ "VBN" ], "Quincy": [ "NNP" ], "previous-year": [ "JJ" ], "high-current": [ "JJ" ], "Jennings": [ "NNP" ], "besets": [ "VBZ" ], "explained": [ "VBD", "VBN" ], "Hallingby": [ "NNP" ], "scoffer": [ "NN" ], "Stock-market": [ "NN" ], "Savoyards": [ "NNP" ], "Quince": [ "NN" ], "Irishmen": [ "NNPS", "NNS" ], "spoke": [ "VBD", "NN" ], "re-emphasize": [ "VB", "VBP" ], "Scheherazade": [ "NNP" ], "overshadow": [ "VBP", "VB" ], "glimmering": [ "VBG" ], "replacement-car": [ "NN" ], "Anticipated": [ "VBN", "JJ" ], "play-it-safe": [ "JJ" ], "Corning": [ "NNP", "VBG" ], "heralded": [ "VBN", "VBD" ], "Sassy": [ "NNP", "JJ" ], "Brainards": [ "NNPS" ], "Bioengineers": [ "NNS" ], "Brighton": [ "NNP" ], "segregationist": [ "NN", "JJ" ], "mired": [ "VBN", "JJ" ], "successful": [ "JJ" ], "greenhouse-effect": [ "JJ" ], "officio": [ "FW" ], "hurt": [ "VBN", "JJ", "NN", "VB", "VBD", "VBP" ], "naczelnik": [ "FW" ], "Genossenschaftsbank": [ "NNP" ], "goddammit": [ "UH" ], "detective-story": [ "NN" ], "straddle": [ "VB" ], "Luna": [ "NNP" ], "vow": [ "NN", "VBP" ], "Lung": [ "NNP", "NN" ], "Gogol": [ "NNP" ], "lower-wage": [ "JJ" ], "Lund": [ "NNP" ], "better-paying": [ "JJ" ], "Mystery": [ "NN", "NNP" ], "unstuffy": [ "VB" ], "droppable": [ "JJ" ], "household": [ "NN", "JJ" ], "Celso": [ "NNP" ], "Insulate": [ "VB" ], "Reality": [ "NN", "NNP" ], "Smith-Colmer": [ "NNP" ], "reprove": [ "VB" ], "money-hungry": [ "NN" ], "rescue": [ "NN", "VB" ], "preferably": [ "RB" ], "Eagle": [ "NNP" ], "Wheaties-box": [ "JJ" ], "complaining": [ "VBG" ], "Atop": [ "IN" ], "damage": [ "NN", "VBP", "VB" ], "Killing": [ "NN", "NNP", "VBG" ], "machine": [ "NN" ], "methodology": [ "NN" ], "health-maintenance": [ "NN" ], "trading-fraud": [ "NN" ], "Jussel": [ "NNP" ], "agglutination": [ "NN" ], "preferable": [ "JJ" ], "Caldor": [ "NNP" ], "Alcatel": [ "NNP" ], "arylesterase": [ "NN" ], "swing": [ "NN", "VBP", "JJ", "VB" ], "anti-flag-burning": [ "JJ" ], "possum": [ "NN" ], "Matlock": [ "NNP" ], "calves": [ "NNS" ], "wins": [ "VBZ", "NNS" ], "attracts": [ "VBZ" ], "Tiant": [ "NNP" ], "signatories": [ "NNS" ], "wink": [ "NN", "VB" ], "Haskell": [ "NNP" ], "keeps": [ "VBZ", "NNS" ], "Manitoba": [ "NNP" ], "PNC": [ "NNP" ], "Petruchka": [ "NNP" ], "wing": [ "NN", "VBP" ], "wind": [ "NN", "VBP", "VB" ], "heavily-upholstered": [ "JJ" ], "Lohmans": [ "NNP" ], "Requirements": [ "NNS" ], "money-retirees": [ "NNS" ], "ARAL-88": [ "NNP" ], "C.B.": [ "NNP" ], "west-central": [ "JJ" ], "handcuff": [ "VBP" ], "lower-cost": [ "JJ", "JJR" ], "affect": [ "VB", "VBP", "NN" ], "soothingly": [ "RB" ], "whoring": [ "NN" ], "Kearns": [ "NNP" ], "rankings": [ "NNS" ], "un-Swiss": [ "JJ" ], "Kearny": [ "NNP" ], "narrowest": [ "JJS" ], "Harris": [ "NNP" ], "Prohibited": [ "NNP" ], "endeavoring": [ "VBG" ], "shipbuilder": [ "NN" ], "Shattuck": [ "NNP" ], "woods": [ "NNS" ], "workhorse": [ "NN" ], "universalistic": [ "JJ" ], "Christiansen": [ "NNP" ], "exploding-wire": [ "JJ" ], "commemorate": [ "VB", "VBP" ], "captioned": [ "VBD" ], "tenancy": [ "NN" ], "MRI": [ "NNP" ], "Robbery": [ "NNP" ], "Cards": [ "NNP", "VBP", "NNPS", "NNS" ], "township": [ "NN" ], "Robbers": [ "NNS" ], "MRA": [ "NNP" ], "MRC": [ "NNP" ], "represents": [ "VBZ" ], "China-bound": [ "JJ" ], "Hilkert": [ "NNP" ], "chamber-music": [ "JJ" ], "queues": [ "NNS" ], "dumps": [ "VBZ", "NNS" ], "clothed": [ "VBN" ], "Branford": [ "NNP" ], "Bonnier": [ "NNP" ], "Hoogli": [ "NNP" ], "Mouse": [ "NNP", "NN" ], "queued": [ "JJ" ], "preceded": [ "VBD", "VBN" ], "typifies": [ "VBZ" ], "financial": [ "JJ" ], "swathe": [ "NN" ], "Dortmund": [ "NNP" ], "bowls": [ "NNS", "VBZ" ], "mule-drawn": [ "JJ" ], "precedes": [ "VBZ" ], "fortnight": [ "NN" ], "laboratory": [ "NN" ], "Grauman": [ "NNP" ], "urbane": [ "JJ" ], "Stillwater": [ "NNP" ], "Tarheelia": [ "NNP" ], "Hellisen": [ "NNP" ], "Awkwardly": [ "RB" ], "JT8D-200": [ "NN" ], "rented": [ "VBN", "JJ", "VBD" ], "Colorcoat": [ "NNP" ], "Swasey": [ "NNP" ], "Systematically": [ "RB" ], "last-gasp": [ "JJ" ], "Karre": [ "NNP" ], "fugitive": [ "JJ", "NN" ], "sensory": [ "JJ" ], "assures": [ "VBZ" ], "Nutmeg": [ "NNP" ], "Singletary": [ "NNP" ], "sensors": [ "NNS" ], "Poltrack": [ "NNP" ], "Raphael": [ "NNP" ], "Disgrace": [ "NN" ], "Hord": [ "NNP" ], "tsunami-warning": [ "JJ" ], "Hori": [ "NNP" ], "typified": [ "VBN", "VBD" ], "Dubilier": [ "NNP" ], "secularism": [ "NN" ], "obsolescent": [ "JJ" ], "Horn": [ "NNP", "NN" ], "joint-venturing": [ "NN" ], "waddles": [ "VBZ" ], "naturalism": [ "NN" ], "Human": [ "NNP", "JJ", "NN" ], "clothes": [ "NNS" ], "shopper": [ "NN" ], "heavy-crude": [ "NN" ], "skim-milk": [ "NN" ], "subtlety": [ "NN" ], "Please": [ "VB", "RB", "UH", "NNP" ], "shopped": [ "VBN", "VBD" ], "Turpin": [ "NNP" ], "Canion": [ "NNP" ], "contralto": [ "NN" ], "outstandingly": [ "RB" ], "Skyway": [ "NNP" ], "copyright-infringement": [ "NN" ], "dogmas": [ "NN", "NNS" ], "hardboard": [ "NN" ], "postulate": [ "VB" ], "legs": [ "NNS" ], "persecute": [ "VBP" ], "oil-patch": [ "JJ", "NN" ], "Atmospheric": [ "NNP" ], "collapse": [ "NN", "VB" ], "fibrous": [ "JJ" ], "snooty": [ "JJ" ], "bounty": [ "NN" ], "Precious-metals": [ "NNS", "JJ" ], "Named": [ "VBN" ], "wisdom": [ "NN" ], "Outrunning": [ "VBG" ], "Bertoia": [ "NNP" ], "Chernobyl": [ "NNP" ], "Plummer": [ "NNP" ], "PHOENIX": [ "NNP" ], "iteration": [ "NN" ], "endure": [ "VB", "VBP" ], "warm-toned": [ "JJ" ], "bodyguards": [ "NNS" ], "contribution": [ "NN" ], "recheck": [ "VBP" ], "Computerworld": [ "NNP" ], "Varvara": [ "NNP" ], "groaning": [ "VBG" ], "girder": [ "NN" ], "PLC": [ "NNP" ], "Keeping": [ "VBG", "NNP" ], "demand-related": [ "JJ" ], "Fraud": [ "NNP", "NN" ], "Gursel": [ "NNP" ], "overregulated": [ "JJ", "VBN" ], "Haussmann": [ "NNP" ], "rechartering": [ "VBG" ], "Crotale": [ "JJ" ], "Bans": [ "NNP" ], "responsible": [ "JJ" ], "Northlich": [ "NNP" ], "Tastes": [ "NNPS", "NNS" ], "condensers": [ "NNS" ], "metallic": [ "JJ" ], "Bane": [ "NNP", "NN" ], "Band": [ "NNP", "NN" ], "Bang": [ "NNP" ], "causing": [ "VBG", "NN" ], "defiantly": [ "RB" ], "Banc": [ "NNP" ], "alai": [ "FW" ], "Bani": [ "NNP" ], "Bank": [ "NNP", "NN", "VB" ], "commercial-credit": [ "NN" ], "Marrow-Tech": [ "NNP" ], "Anglo\\/Dutch": [ "NNP" ], "Emboldened": [ "JJ", "VBN" ], "gloaters": [ "NNS" ], "mystique": [ "NN" ], "contact-lens": [ "NN" ], "looming": [ "VBG", "NN" ], "deficit-inflation-capital-flight": [ "JJ" ], "well-fortified": [ "JJ" ], "affirmation": [ "NN" ], "Logic": [ "NNP", "NN" ], "retaining": [ "VBG" ], "Puppeteer": [ "NN" ], "conclaves": [ "NNS" ], "morality": [ "NN" ], "initiator": [ "NN" ], "antitrust": [ "JJ", "NN" ], "grove": [ "NN" ], "professor": [ "NN" ], "Kingston": [ "NNP" ], "detectors": [ "NNS" ], "rerun-sales": [ "NNS" ], "alas": [ "UH" ], "braying": [ "JJ" ], "world-at-large": [ "NN" ], "suspicions...": [ ":" ], "budget-cutting": [ "NN" ], "classicism": [ "NN" ], "Ashmolean": [ "NNP" ], "bomb": [ "NN", "VB" ], "pro-enterprise": [ "JJ" ], "Sawallisch": [ "NNP" ], "tequila": [ "NN" ], "advisors": [ "NNS" ], "parolees": [ "NNS" ], "reinstitution": [ "NN" ], "Cinalli": [ "NNP" ], "undefined": [ "JJ" ], "regiments": [ "NNS" ], "gauge": [ "NN", "VB" ], "five-week": [ "JJ" ], "Meyner": [ "NNP" ], "capes": [ "NNS" ], "rock-hard": [ "JJ" ], "copy": [ "NN", "VBP", "VB" ], "crisis-management": [ "JJ", "NN" ], "buckboard": [ "NN" ], "menu": [ "NN" ], "adoption-assistance": [ "JJ" ], "buxom": [ "JJ" ], "breath-taking": [ "JJ", "NN" ], "steel-ingot": [ "NN" ], "theme": [ "NN" ], "Beulah": [ "NNP" ], "Evry": [ "NNP" ], "mend": [ "VB" ], "telegrams": [ "NNS", "VBZ" ], "Belated": [ "JJ" ], "quasi-religious": [ "JJ" ], "fellow-countryman": [ "NN" ], "bank-branch": [ "JJ" ], "lenders": [ "NNS" ], "chutney": [ "NN" ], "plane-building": [ "NN" ], "avenger": [ "NN" ], "Pointing": [ "VBG" ], "requalify": [ "VB" ], "slow-scrambling": [ "JJ" ], "IQ": [ "NNP" ], "lurched": [ "VBD" ], "Purified": [ "VBN" ], "Nett": [ "NNP" ], "Clearly": [ "RB", "NNP" ], "two-mile": [ "JJ" ], "traverse": [ "VB" ], "leasing": [ "NN", "VBG|NN", "VBG" ], "consummation": [ "NN" ], "conservatories": [ "NNS" ], "Tenney": [ "NNP" ], "Velveeta": [ "NNP" ], "Liebowitz": [ "NNP" ], "babyhood": [ "NN" ], "natural-gas": [ "NN", "JJ" ], "nocturnal": [ "JJ" ], "best": [ "JJS", "RBS", "JJSS", "NN", "RB" ], "demonologist": [ "NN" ], "stealthy": [ "JJ" ], "killable": [ "JJ" ], "planoconcave": [ "JJ" ], "height-to-diameter": [ "NN" ], "Courts": [ "NNPS", "NNP", "NNS" ], "conceptual": [ "JJ" ], "toolmaker": [ "NN" ], "Cage": [ "NNP" ], "pirate": [ "NN" ], "boom-boxes": [ "NNS" ], "donut-sales": [ "JJ" ], "claws": [ "NNS" ], "screwball": [ "JJ", "NN" ], "felons": [ "NNS" ], "cripple-maker": [ "NN" ], "felony": [ "NN" ], "aesthetic": [ "JJ", "NN" ], "non-daily": [ "JJ" ], "Mechanix": [ "NNP" ], "two-sevenths": [ "NNS" ], "Trohan": [ "NNP" ], "drew": [ "VBD" ], "wrap-around": [ "JJ" ], "carbon": [ "NN" ], "Malabar": [ "NNP" ], "Stiemerling": [ "NNP" ], "Veronica": [ "NN" ], "violators": [ "NNS" ], "adapter": [ "NN" ], "PSA": [ "NNP" ], "adventurer": [ "NN" ], "adventures": [ "NNS" ], "PSE": [ "NNP" ], "goal-line": [ "NN" ], "Demented": [ "JJ" ], "estates": [ "NNS" ], "PS\\": [ "NN", "NNP", "NNS" ], "quests": [ "NNS" ], "adapted": [ "VBN", "VBD" ], "nanny": [ "NN" ], "polycrystalline": [ "JJ" ], "irresponsible": [ "JJ", "NN" ], "higher-rate": [ "JJ" ], "Sawicki": [ "NNP" ], "canyon": [ "NN" ], "SAFEWAY": [ "NNP" ], "irresponsibly": [ "RB" ], "linguistically": [ "RB" ], "Weyerhauser": [ "NNP" ], "non-professionals": [ "NNS" ], "eased...": [ ":" ], "Skyros": [ "NNP" ], "corrugations": [ "NNS" ], "anti-psychotic": [ "JJ" ], "D.,Calif": [ "NNP" ], "chrome": [ "NN" ], "work-force": [ "NN" ], "breakoff": [ "JJ" ], "risk-capital": [ "JJ" ], "extraction": [ "NN" ], "neo-dadaist": [ "NN" ], "quadripartite": [ "JJ" ], "tutorials": [ "NNS" ], "Luneburg": [ "NNP" ], "incompetent": [ "JJ" ], "life": [ "NN", "RB" ], "Board-traded": [ "JJ" ], "hospitalized": [ "VBN", "JJ" ], "cash-equivalent": [ "JJ" ], "Poland": [ "NNP" ], "Fergus": [ "NNP" ], "similar-sounding": [ "JJ" ], "Concrete": [ "NNP", "JJ" ], "joust": [ "NN" ], "lift": [ "VB", "NN", "VBP" ], "regaled": [ "VBD", "VBN" ], "child": [ "NN" ], "Investigating": [ "VBG" ], "chili": [ "NN", "NNS" ], "self-destructed": [ "VBD" ], "modern-day": [ "JJ" ], "chill": [ "NN", "JJ", "VB" ], "unsold": [ "JJ" ], "adaptations": [ "NNS" ], "sanctorum": [ "FW" ], "Grove\\/Weidenfeld": [ "NN" ], "Kippur": [ "NNP" ], "never-predictable": [ "JJ" ], "picturing": [ "VBG", "NN" ], "Potsdam": [ "NNP" ], "Y-cells": [ "NNS" ], "Slyke": [ "NNP" ], "actuated": [ "VBN" ], "letdown": [ "NN" ], "electromagnets": [ "NNS" ], "Sure-sure": [ "JJ" ], "sterno-cleido": [ "NN" ], "schoolbooks": [ "NNS" ], "doorman": [ "NN" ], "Grafin": [ "NNP" ], "Grafil": [ "NNP" ], "buckles": [ "NNS" ], "Confirmation": [ "NN" ], "Lehtinen": [ "NNP" ], "accouterments": [ "NNS" ], "Doronfeld": [ "NNP" ], "impaling": [ "VBG" ], "Barataria": [ "NNP" ], "enlistment": [ "NN" ], "swarthy": [ "JJ" ], "manageability": [ "NN" ], "babies": [ "NNS" ], "nonphysical": [ "JJ" ], "Appleby": [ "NNP" ], "re-incorporation": [ "NN" ], "Taper": [ "NNP" ], "Ranieri": [ "NNP" ], "wholewheat": [ "JJ" ], "Biggio": [ "NNP" ], "Taped": [ "VBN" ], "Peking": [ "NNP" ], "stiffs": [ "NNS" ], "speech-making": [ "NN" ], "pioneers": [ "NNS" ], "wives": [ "NNS" ], "J.J.": [ "NNP" ], "RJR": [ "NNP" ], "stupendous": [ "JJ" ], "kwhr": [ "NN" ], "ventricles": [ "NNS" ], "hair-growing": [ "JJ" ], "IOCSIXF": [ "NN" ], "IOCSIXG": [ "NN" ], "subpoena": [ "NN", "FW", "VB" ], "spearheading": [ "VBG" ], "juridical": [ "JJ" ], "misrepresents": [ "VBZ" ], "fittest": [ "JJS" ], "halfhearted": [ "JJ" ], "adagios": [ "NNS" ], "British-American": [ "NNP", "JJ" ], "Buxtehude": [ "NNP" ], "high-rated": [ "JJ" ], "forsaken": [ "VBN" ], "forsakes": [ "VBZ" ], "life-saving": [ "JJ" ], "deductable": [ "JJ" ], "ungovernable": [ "JJ" ], "plight": [ "NN" ], "caregiver": [ "NN" ], "cellophane": [ "NN" ], "charter-boat": [ "NN" ], "agricultural-research": [ "JJ" ], "Geertz": [ "NNP" ], "HUD-related": [ "JJ" ], "ground-floor": [ "JJ" ], "irradiated": [ "VBN", "JJ" ], "Ligne": [ "NNP" ], "Halebian": [ "NNP" ], "Waltham": [ "NNP" ], "thickening": [ "VBG" ], "Framework": [ "NNP" ], "collections": [ "NNS" ], "delinquents": [ "NNS" ], "Marrill": [ "NNP" ], "contribued": [ "VBD" ], "self-inflicted": [ "JJ" ], "ON": [ "IN", "RP", "NNP" ], "Aeneid": [ "NNP" ], "zero-magnitude": [ "NN" ], "birth": [ "NN" ], "Oceana": [ "NNP" ], "massively": [ "RB" ], "Taksim": [ "NNP" ], "Braving": [ "VBG" ], "articulated": [ "VBN" ], "tapering": [ "VBG" ], "Ingeniera": [ "NNP" ], "de-listed": [ "VBN" ], "Behind": [ "IN", "NNP", "RB" ], "pavement": [ "NN" ], "abscesses": [ "NNS" ], "DEALERS": [ "NNPS" ], "people": [ "NNS", "NN" ], "Pharmacy": [ "NNP" ], "Tropical": [ "NNP" ], "Toensing": [ "NNP" ], "warring": [ "VBG" ], "aspen": [ "NN", "JJ" ], "Shirer": [ "NNP" ], "gasps": [ "NNS" ], "sociology": [ "NN" ], "Quarry": [ "NNP" ], "hulks": [ "NNS" ], "Baum": [ "NNP" ], "Prolusion": [ "NNP" ], "Withdrawals": [ "NNS" ], "impulsively": [ "RB" ], "tarantara": [ "NN" ], "consummately": [ "RB" ], "serpents": [ "NNS" ], "a-raising": [ "VBG" ], "germinate": [ "VBP" ], "Keith": [ "NNP" ], "Royce": [ "NNP" ], "pinched": [ "VBN", "VBD", "JJ" ], "INFORMATION": [ "NNP", "NN" ], "Naess": [ "NNP" ], "Didi": [ "NNP" ], "specialty-machinery": [ "NN" ], "Hauling": [ "VBG" ], "Thing": [ "NNP", "NN" ], "Practices": [ "NNPS", "NNP", "NNS" ], "shifting": [ "VBG", "JJ", "NN" ], "pinches": [ "NNS" ], "brokerage": [ "NN" ], "Think": [ "VBP", "VB", "NNP" ], "insinuations": [ "NNS" ], "Snatching": [ "VBG" ], "derailed": [ "VBD", "VBN" ], "Celanese": [ "NNP" ], "rebuffed": [ "VBN", "VBD" ], "Ichi": [ "NNP" ], "Bronson": [ "NNP" ], "despair": [ "NN", "VB" ], "repellent": [ "JJ", "NN" ], "spins": [ "VBZ" ], "Shake": [ "VB" ], "sarakin": [ "FW" ], "Strength": [ "NN", "NNP" ], "Summers": [ "NNP" ], "dashboards": [ "NNS" ], "Occasional": [ "JJ", "NNP" ], "Misses": [ "NNPS" ], "fixed-price": [ "JJ" ], "Hirschman": [ "NNP" ], "attrition": [ "NN" ], "reducing": [ "VBG", "NN" ], "Repligen": [ "NNP" ], "ownerships": [ "NNS" ], "Ali": [ "NNP" ], "panorama": [ "NN" ], "Paestum": [ "NNP" ], "vinegar": [ "NN" ], "Wichita": [ "NNP" ], "common-law": [ "JJ", "NN" ], "Amaury": [ "NNP" ], "Ogura": [ "NNP" ], "thrips": [ "NN" ], "happy": [ "JJ" ], "alloys": [ "NNS" ], "fascination": [ "NN" ], "grokking": [ "VBG" ], "Completing": [ "VBG" ], "Dentistry": [ "NNP" ], "conclusively": [ "RB" ], "Dabney": [ "NNP" ], "gripes": [ "NNS", "VBZ" ], "Boole": [ "NNP" ], "hemisphere": [ "NN" ], "melanin": [ "NN" ], "materals": [ "NNS" ], "silliness": [ "NN" ], "mirthless": [ "JJ" ], "Reductions": [ "NNS" ], "antiCommunist": [ "JJ" ], "peso": [ "NN" ], "pest": [ "NN", "JJS" ], "pontificate": [ "VB" ], "panels": [ "NNS" ], "five-inch": [ "JJ" ], "Mancuso": [ "NNP", "NN" ], "juvenile": [ "JJ", "NN" ], "liberal": [ "JJ", "NN" ], "Variety": [ "NNP" ], "Dixiecrats": [ "NNS" ], "tournament": [ "NN" ], "muscatel": [ "NN" ], "Zuercher": [ "NNP" ], "Raimondo": [ "NNP" ], "exist": [ "VB", "VBP", "NNP" ], "obligations": [ "NNS" ], "accounting": [ "NN", "VBG", "JJ" ], "provisons": [ "NNS" ], "supporters": [ "NNS" ], "solicitation": [ "NN" ], "dotted": [ "VBN", "VBD", "JJ" ], "Gherlein": [ "NNP" ], "ROBERT": [ "NNP" ], "Beismortier": [ "NNP" ], "Hennessy": [ "NNP" ], "Nolan": [ "NNP" ], "deep-seated": [ "JJ" ], "dissimiliar": [ "JJ" ], "Ceramics": [ "NNPS" ], "disastrously": [ "RB" ], "Shuwa": [ "NNP" ], "Reinforcing": [ "VBG" ], "nondriver": [ "NN" ], "invested": [ "VBN", "VBN|JJ", "VBD" ], "persecution": [ "NN" ], "Barberini": [ "NNP" ], "anti-white": [ "JJ" ], "Carpathians": [ "NNPS" ], "Jutish": [ "JJ" ], "Stirring": [ "VBG" ], "spades": [ "NNS" ], "deformational": [ "JJ" ], "sniffed": [ "VBD" ], "Ellsworth": [ "NNP" ], "Aureliano": [ "NNP" ], "DevelopMate": [ "NNP" ], "goaded": [ "VBD", "VBN" ], "McKid": [ "NNP" ], "Steinhart": [ "NNP" ], "fares": [ "NNS", "NN", "VBZ" ], "novelty": [ "NN" ], "Indians": [ "NNPS", "NNP" ], "Glauber": [ "NNP" ], "avalanche": [ "NN" ], "anti-airline-takeover": [ "JJ" ], "gallbladder": [ "NN" ], "Indiana": [ "NNP" ], "Falkland": [ "NNP" ], "Plump": [ "JJ" ], "cupped": [ "VBD", "JJ" ], "rousing": [ "JJ", "NN" ], "Truckers": [ "NNS" ], "indolent": [ "JJ" ], "behave": [ "VB", "VBP" ], "Lighting": [ "NNP", "VBG", "NN" ], "veterans": [ "NNS" ], "Hnilica": [ "NNP" ], "single-employer": [ "JJ", "NN" ], "prepaid": [ "JJ", "VBN", "VB" ], "Scranton": [ "NNP" ], "refinance": [ "VB" ], "SunAmerica": [ "NNP" ], "mourn": [ "VB" ], "servicing": [ "NN", "VBG" ], "Seko": [ "NNP" ], "sun-browned": [ "JJ" ], "Experimental": [ "JJ" ], "fire-resistant": [ "JJ" ], "wondrously": [ "RB" ], "Dugan": [ "NNP" ], "short-range": [ "JJ" ], "solves": [ "VBZ" ], "Northeastern": [ "JJ", "NNP" ], "corporate-identity": [ "JJ" ], "Intelogic": [ "NNP" ], "Aeromexico": [ "NNP" ], "solved": [ "VBN", "VBD" ], "Quigley": [ "NNP" ], "Cantonese": [ "NNP", "JJ" ], "Subsidizing": [ "VBG" ], "Tables": [ "NNS" ], "officiate": [ "VB" ], "Marmi": [ "NNP" ], "steaks": [ "NNS" ], "Bldg.": [ "NNP" ], "Hingham": [ "NNP" ], "erotic": [ "JJ" ], "anti-androgen": [ "JJ" ], "Dellums": [ "NNP" ], "Tricia": [ "NNP" ], "cleanliness": [ "NN" ], "Brumidi-Costaggini": [ "NNP" ], "crackpot": [ "NN" ], "current": [ "JJ", "NN" ], "extraterrestrial": [ "JJ" ], "whipcracking": [ "NN" ], "Crowell": [ "NNP" ], "all-powerful": [ "JJ" ], "Cays": [ "NNP" ], "drewe": [ "VBD" ], "tough-looking": [ "JJ" ], "Machold": [ "NNP" ], "UNION": [ "NN", "NNP" ], "amalgam": [ "NN" ], "Caetani": [ "NNP" ], "Decca": [ "NNP", "NN" ], "Eighties": [ "NNP" ], "Nynex": [ "NNP" ], "Godwin": [ "NNP" ], "government-relations": [ "NNS" ], "Baton": [ "NNP" ], "studied": [ "VBN", "VBD", "JJ" ], "tassels": [ "NNS" ], "Exegete": [ "NNP" ], "therein": [ "RB" ], "Miglia": [ "NNP" ], "studies": [ "NNS", "VBZ" ], "bearable": [ "JJ" ], "carpets": [ "NNS" ], "indiscriminantly": [ "RB" ], "defense-budget": [ "NN" ], "SOYBEANS": [ "NNS", "NNPS" ], "Rogin": [ "NNP" ], "properties.``": [ "``" ], "Alberto": [ "NNP" ], "Alberta": [ "NNP" ], "monaural": [ "JJ" ], "grimmest": [ "JJS" ], "fresher": [ "JJR" ], "Emanuele": [ "NNP" ], "Abello": [ "NNP" ], "predictions": [ "NNS" ], "public-land": [ "JJ" ], "Pontius": [ "NNP" ], "corners": [ "NNS" ], "Kafkaesque": [ "JJ" ], "One-Leg": [ "NNP" ], "Califon": [ "NNP" ], "cranked": [ "VBD", "VBN" ], "afford": [ "VB", "VBP" ], "apparent": [ "JJ", "NN" ], "MD-90s": [ "NNS" ], "wrenches": [ "NNS", "VBZ" ], "easiest": [ "JJS" ], "behalf": [ "NN" ], "Oum": [ "NNP" ], "COS.": [ "NNP" ], "lumberjack": [ "NN" ], "overloaded": [ "VBN", "JJ" ], "cooked-over": [ "JJ" ], "believer": [ "NN" ], "believes": [ "VBZ" ], "God-curst": [ "JJ" ], "Appliances": [ "NNPS" ], "believed": [ "VBD", "VBN" ], "scenics": [ "NNS" ], "Worth-based": [ "JJ" ], "O.N.": [ "NNP" ], "Sepulveda": [ "NNP" ], "Inward": [ "NNP" ], "teaspoons": [ "NNS" ], "wrenched": [ "VBD", "VBN" ], "Bandaging": [ "NNP" ], "Officine": [ "NNP" ], "intransigent": [ "JJ" ], "hides": [ "NNS", "VBZ" ], "fiche": [ "FW" ], "philological": [ "JJ" ], "agendas": [ "NNS" ], "uncles": [ "NNS" ], "deserves": [ "VBZ" ], "Vyacheslav": [ "NNP" ], "ticklebrush": [ "NN" ], "agave": [ "NN" ], "elephant": [ "NN" ], "Holmberg": [ "NNP" ], "parameter": [ "NN" ], "Newlywed": [ "NNP" ], "belongs": [ "VBZ" ], "snaps": [ "VBZ" ], "Aeroquip": [ "NNP" ], "EQU": [ "NN" ], "blasting": [ "VBG", "JJ" ], "transportation-cost": [ "JJ" ], "rehabilitate": [ "VB" ], "Managua": [ "NNP" ], "overfunding": [ "NN" ], "date": [ "NN", "VBP", "VB" ], "Become": [ "VB" ], "data": [ "NNS", "NN|NNS", "NNS|NN", "NN" ], "Shandong": [ "NNP" ], "Yoshihashi": [ "NNP" ], "sectors": [ "NNS" ], "interest-sensitive": [ "JJ" ], "aseptically": [ "RB" ], "approximation": [ "NN" ], "applicant": [ "NN" ], "sclerosis": [ "NN" ], "yielding": [ "VBG", "JJ", "NN" ], "Catching": [ "VBG" ], "definitions": [ "NNS" ], "quatrain": [ "NN" ], "scents": [ "NNS" ], "wavelengths": [ "NNS" ], "debt-coverage": [ "JJ" ], "unfavorably": [ "RB" ], "haute": [ "FW", "JJ" ], "unacceptable": [ "JJ" ], "Leaguers": [ "NNP", "NNPS" ], "bibulous": [ "JJ" ], "unacceptably": [ "RB" ], "ungentlemanly": [ "JJ" ], "unfavorable": [ "JJ" ], "stills": [ "NNS" ], "Clemson": [ "NNP" ], "Shaw": [ "NNP" ], "solitary": [ "JJ", "NN" ], "Karalis": [ "NNP" ], "Zolo": [ "NNP" ], "lackluster": [ "JJ", "NN", "RB" ], "bagels": [ "NNS" ], "Unlimited": [ "NNP", "JJ" ], "covertly": [ "RB" ], "creations": [ "NNS" ], "orchestrating": [ "VBG" ], "Rafeedie": [ "NNP" ], "Persky": [ "NNP" ], "decades": [ "NNS" ], "into": [ "IN", "RP" ], "Amin": [ "NNP" ], "stabilizers": [ "NNS" ], "three-family": [ "JJ" ], "matches": [ "VBZ", "NNS" ], "cholesterol-reduction": [ "NN" ], "Socialist": [ "NNP", "JJ", "NN" ], "insomnia": [ "NN" ], "Sherwin-Williams": [ "NNP" ], "Langer": [ "NNP" ], "records": [ "NNS", "VBZ" ], "Socialism": [ "NN", "NNP" ], "six-week": [ "JJ" ], "arriving": [ "VBG" ], "in-laws": [ "NNS" ], "non-brain": [ "JJ" ], "runners": [ "NNS" ], "matched": [ "VBN", "JJ", "VBD" ], "revery": [ "NN" ], "Newest": [ "JJS" ], "revert": [ "VB", "VBP" ], "McCrory": [ "NNP" ], "wetness": [ "NN" ], "bowling": [ "NN", "VBG" ], "target-hunting": [ "JJ" ], "manors": [ "NNS" ], "workman": [ "NN" ], "sex-manuals": [ "NNS" ], "Richmond-area": [ "JJ" ], "ALCOHOL": [ "NNP" ], "whosoever": [ "WP" ], "Snyder": [ "NNP" ], "bovine": [ "JJ", "NN" ], "low-wage": [ "JJ" ], "Calderone": [ "NNP" ], "Habicht": [ "NNP" ], "Ferraros": [ "NNPS" ], "revises": [ "VBZ" ], "Shah": [ "NNP" ], "giddy": [ "JJ" ], "Eire": [ "NNP", "NN" ], "canvas": [ "NN" ], "workaholic": [ "NN", "JJ" ], "Anwar": [ "NN" ], "top-performing": [ "JJ" ], "methylene": [ "NN" ], "unreleasable": [ "JJ" ], "Emission": [ "NN" ], "Hollis": [ "NNP" ], "sibilant": [ "JJ", "NN" ], "suggesting": [ "VBG" ], "linguine": [ "NN" ], "bordering": [ "VBG" ], "flurries": [ "NNS" ], "clustering": [ "VBG", "NN" ], "joiners": [ "NNS" ], "Braille": [ "NNP" ], "treaty-making": [ "NN" ], "possibility": [ "NN" ], "untidiness": [ "NN" ], "KOFY-FM": [ "NNP" ], "intensely": [ "RB" ], "Aye-yah-ah-ah": [ "UH" ], "huskiness": [ "NN" ], "toned": [ "VBN" ], "Bruyette": [ "NNP" ], "Monet": [ "NNP" ], "Monex": [ "NNP" ], "Money": [ "NNP", "NN" ], "thunderclaps": [ "NNS" ], "Jeffry": [ "NNP" ], "grinder": [ "NN" ], "story-book": [ "NN" ], "livable": [ "JJ" ], "Euro-pillows": [ "NNS" ], "Hovarter": [ "NNP" ], "Monel": [ "NNP" ], "famine-relief": [ "NN" ], "Sanford": [ "NNP" ], "Tailback": [ "NNP" ], "now-purged": [ "JJ" ], "Blanco": [ "NNP" ], "Conradie": [ "NNP" ], "hair-raising": [ "JJ" ], "nested": [ "VBN", "VBD" ], "vote": [ "NN", "VB", "VBP" ], "nester": [ "NN" ], "Blancs": [ "NNP" ], "intermolecular": [ "JJ" ], "Benington": [ "NNP" ], "merger-related": [ "JJ" ], "phonetics": [ "NNS" ], "Franco-German": [ "NNP" ], "survivability": [ "NN" ], "Garza": [ "NNP" ], "Spagna": [ "FW" ], "Uses": [ "NNS" ], "six-lane": [ "JJ" ], "Homestake": [ "NNP" ], "Petruzzi": [ "NNP" ], "debt-servicing": [ "NN" ], "dealmakers": [ "NNS" ], "Grandson": [ "NNP" ], "white-stucco": [ "JJ" ], "Aircoa": [ "NNP" ], "Haskayne": [ "NNP" ], "boomtown": [ "NN" ], "space-rocket": [ "NN" ], "padding": [ "NN", "VBG" ], "redoubled": [ "VBN", "VBD" ], "Northwest-Skinner": [ "NNP" ], "Sept": [ "NNP" ], "offocus": [ "NN" ], "High-priced": [ "JJ" ], "Embarrassed": [ "JJ" ], "encrypting": [ "VBG" ], "exacted": [ "VBD" ], "Titan": [ "NNP" ], "non-members": [ "NNS" ], "Emmerich": [ "NNP" ], "Alejandro": [ "NNP" ], "future": [ "NN", "JJ" ], "Trump-watchers": [ "NNS" ], "opens": [ "VBZ" ], "Holynskyj": [ "NNP" ], "cavalier": [ "JJ" ], "financings": [ "NNS" ], "prospect": [ "NN" ], "FLIGHT": [ "NN" ], "tasted": [ "VBD", "VBN" ], "round-faced": [ "JJ" ], "tastes": [ "NNS", "VBZ" ], "Inquiry": [ "NNP" ], "lurking": [ "VBG" ], "dragooned": [ "VBD" ], "hand-carved": [ "JJ" ], "serials": [ "NNS" ], "sanctimonious": [ "JJ" ], "LeRoy": [ "NNP" ], "undercover": [ "JJ" ], "Aspin": [ "NNP" ], "take": [ "VB", "NN", "VBP" ], "vandals": [ "NNS" ], "convulsive": [ "JJ" ], "long-life": [ "JJ" ], "altered": [ "VBN", "JJ", "VBD" ], "Galant": [ "NNP" ], "Katutura": [ "NNP" ], "candidly": [ "RB" ], "Kerr": [ "NNP" ], "transpirating": [ "VBG" ], "Kern": [ "NNP" ], "standard-bearer": [ "NN" ], "Rogaine": [ "NNP" ], "Radames": [ "NNP" ], "Belin": [ "NNP" ], "Settled": [ "VBN" ], "Portuguese": [ "JJ", "NNP" ], "enamel": [ "NN" ], "ex-convict": [ "NN" ], "French-government-owned": [ "JJ" ], "occidental": [ "JJ" ], "Mame": [ "NNP" ], "AK-47": [ "NNP" ], "Swingin": [ "NNP" ], "Strip": [ "NNP", "VB" ], "affirmed": [ "VBD", "VBN" ], "Hereby": [ "RB" ], "surplus": [ "NN", "JJ" ], "Kurland": [ "NNP" ], "consumption-tax": [ "NN" ], "mince": [ "VB" ], "Hamilton-Dorgan": [ "NNP" ], "LAWYER": [ "NN" ], "realists": [ "NNS" ], "unkind": [ "JJ" ], "ready-to-eat": [ "JJ" ], "robs": [ "VBZ" ], "Greek-Canadian": [ "JJ" ], "Fraga": [ "NNP" ], "ALLOWED": [ "VBD" ], "robe": [ "NN" ], "clawing": [ "VBG" ], "Real-estate": [ "NN" ], "charmed": [ "VBN", "VBD" ], "sweet-smelling": [ "JJ" ], "morphological": [ "JJ" ], "Lexington": [ "NNP", "NN" ], "countered": [ "VBD", "VBN" ], "breakfast-table": [ "NN" ], "cursing": [ "VBG", "NN" ], "Kiowa": [ "NNP" ], "Farmingdale": [ "NNP" ], "Products": [ "NNPS", "NNP", "NNS" ], "Ta-Hu-Wa-Hu-Wai": [ "NNP" ], "Sikhs": [ "NNPS" ], "literal-minded": [ "JJ" ], "Givers": [ "NNP" ], "assimilate": [ "VB" ], "Madsen": [ "NNP" ], "neutralist": [ "JJ", "NN" ], "nociceptive": [ "JJ" ], "neutralism": [ "NN" ], "liable": [ "JJ" ], "Kassem": [ "NNP" ], "disparage": [ "VB" ], "surgeries": [ "NNS" ], "gout": [ "NN" ], "raged": [ "VBD", "VBN" ], "dived": [ "VBD", "VBN" ], "Specifically": [ "RB" ], "cheesecloth": [ "NN" ], "BOARD": [ "NNP" ], "Goldwag": [ "NNP" ], "surgery": [ "NN" ], "Ravencroft": [ "NNP" ], "diver": [ "NN" ], "Tirello": [ "NNP" ], "rages": [ "VBZ", "NNS" ], "bugler": [ "NN" ], "gastrointestinal": [ "JJ" ], "thease": [ "NN" ], "Zafris": [ "NNP" ], "Librium": [ "NNP" ], "Vandenberg": [ "NNP" ], "Audiovisual": [ "NNP" ], "high-net": [ "NN" ], "discount-rate": [ "JJ" ], "vote-loser": [ "NN" ], "Mather": [ "NNP" ], "Determining": [ "VBG" ], "affecting": [ "VBG" ], "Primakov": [ "NNP" ], "Keeling": [ "NNP" ], "Bible": [ "NNP", "JJ", "NN" ], "Velon": [ "NNP" ], "charmer": [ "NN" ], "supermarket": [ "NN" ], "HLTs": [ "NNS" ], "rapacious": [ "JJ" ], "jovial": [ "JJ" ], "jaunts": [ "NNS" ], "hit-run": [ "NN" ], "demonetized": [ "VBN" ], "Hodgkin": [ "NNP" ], "second-worst": [ "JJ" ], "shit-sick": [ "JJ" ], "necropsy": [ "NN" ], "Citation": [ "NNP" ], "Worms": [ "NNPS", "NNP" ], "Glynis": [ "NNP" ], "loudly": [ "RB" ], "Cornelius": [ "NNP" ], "expression": [ "NN" ], "Mollie": [ "NNP" ], "Liber": [ "NNP" ], "ants": [ "NNS" ], "homosexuality": [ "NN" ], "stereophonic": [ "JJ" ], "anti": [ "IN", "NN" ], "Libel": [ "NNP" ], "ante": [ "NN", "FW", "VB" ], "human-sounding": [ "JJ" ], "thick-skulled": [ "JJ" ], "contingent-fee": [ "JJ" ], "combines": [ "VBZ", "NNS" ], "booms": [ "NNS", "VBZ" ], "teddy": [ "NN" ], "breath": [ "NN", "VB" ], "combined": [ "VBN", "JJ", "VBD" ], "lowincome": [ "JJ" ], "Signor": [ "NNP" ], "Plus-one": [ "JJ" ], "squinted": [ "VBD", "VBN" ], "Distressed": [ "JJ" ], "influence": [ "NN", "VB", "VBP" ], "Torrence": [ "NNP" ], "sturdily": [ "RB" ], "Rotary": [ "NNP" ], "administrator": [ "NN" ], "Agatha": [ "NNP" ], "rematches": [ "NNS" ], "globally": [ "RB" ], "blowfish": [ "NN" ], "Honshu": [ "NNP" ], "shanty": [ "NN" ], "Wedd": [ "NNP" ], "disbelieve": [ "VB" ], "vote-getters": [ "NNS" ], "COMMUNICATIONS": [ "NNPS", "NNP" ], "newspaperman": [ "NN" ], "Doctrine": [ "NNP", "NN" ], "curricula": [ "NNS" ], "girth": [ "NN" ], "malevolencies": [ "NNS" ], "brow": [ "NN" ], "Jolt": [ "NNP", "VB" ], "brok": [ "VBD" ], "M.D": [ "NNP" ], "Ilyushins": [ "NNPS" ], "three-second": [ "JJ" ], "shuts": [ "VBZ", "NNS" ], "funds-service": [ "JJ" ], "spiraling": [ "VBG", "JJ" ], "Trettien": [ "NNP" ], "expediently": [ "RB" ], "Rodney-Honor": [ "NNP" ], "unemployed": [ "JJ" ], "cramming": [ "VBG" ], "two-year-old": [ "JJ", "NN" ], "Bondholder": [ "NN" ], "unmanageably": [ "RB" ], "cheere": [ "VBP" ], "glycerolized": [ "VBN" ], "State-owned": [ "JJ" ], "Anchorage": [ "NNP" ], "carillons": [ "NNS" ], "cheers": [ "NNS", "VBZ" ], "Birtcher": [ "NNP" ], "Diagnostics": [ "NNPS" ], "unmanageable": [ "JJ" ], "cheery": [ "JJ" ], "Kirschbaum": [ "NNP" ], "Silkworms": [ "NNP" ], "escorts": [ "VBZ", "NNS" ], "coste": [ "VB" ], "Slay": [ "VBP" ], "flocks": [ "NNS" ], "antihistamine": [ "NN" ], "sharp-rising": [ "JJ" ], "Simultaneous": [ "JJ" ], "engulfing": [ "VBG", "JJ" ], "genii": [ "NN" ], "bravura": [ "NN", "JJ" ], "trains": [ "NNS", "VBZ" ], "genie": [ "NN" ], "Soule": [ "NNP" ], "Slab": [ "NN" ], "Botswana": [ "NNP" ], "Mexicana": [ "NNP" ], "idleness": [ "NN" ], "barbecues": [ "NNS" ], "McGlothlin": [ "NNP" ], "mediumistic": [ "JJ" ], "break-down": [ "NN" ], "DISCOUNT": [ "NN", "NNP", "JJ" ], "Mexicans": [ "NNPS", "NNS" ], "Daniel": [ "NNP" ], "Hurrays": [ "NNP" ], "non-binding": [ "JJ" ], "McGillivray": [ "NNP" ], "Bygdeman": [ "NNP" ], "barbecued": [ "VBN" ], "Pepper\\/Seven": [ "NNP" ], "blondes": [ "NNS" ], "Mullen": [ "NNP" ], "Zack": [ "NNP" ], "Zach": [ "NNP" ], "Phineoppus": [ "NNP" ], "near-left": [ "NN" ], "hereabouts": [ "RB" ], "Stirlen": [ "NNP" ], "formative": [ "JJ", "NN" ], "lengthens": [ "VBZ" ], "Transgenics": [ "NNP" ], "Copernicus-the-astronomer": [ "NN" ], "Muller": [ "NNP" ], "Hitchcock": [ "NNP" ], "Cuckoo": [ "NN" ], "Mona": [ "NNP" ], "unquiet": [ "JJ" ], "Korra": [ "NNP" ], "Monk": [ "NNP" ], "Drake": [ "NNP" ], "Mis-ter": [ "NNP" ], "Mont": [ "NNP" ], "Wellman": [ "NNP" ], "Mony": [ "NNP" ], "clan": [ "NN" ], "clam": [ "NN", "VBP" ], "clad": [ "VBN", "JJ" ], "overhyped": [ "JJ" ], "Rabinowiczes": [ "NNPS" ], "yearly": [ "JJ", "RB" ], "Muammar": [ "NNP" ], "Tasuku": [ "NNP" ], "full-scale": [ "JJ" ], "clay": [ "NN" ], "claw": [ "NN" ], "Cervetto": [ "NNP" ], "clap": [ "NN" ], "sewing-machine": [ "NN" ], "Ostrager": [ "NNP" ], "winds": [ "NNS", "VBZ" ], "Brandon": [ "NNP" ], "yyyy": [ "NN" ], "all-pervading": [ "JJ" ], "endeavor": [ "NN", "VB" ], "Cecchini": [ "NNP" ], "obviousness": [ "NN" ], "Piranesi": [ "NNP" ], "innoculation": [ "NN" ], "riveting": [ "VBG", "JJ" ], "Timidly": [ "RB" ], "Bleckner": [ "NNP" ], "oblige": [ "VB", "NN" ], "juggernaut": [ "NN" ], "Projects": [ "NNPS", "NNP", "NNS" ], "state-provided": [ "JJ" ], "unsuccessfully": [ "RB" ], "philosophizing": [ "VBG", "NN" ], "Concordance": [ "NN" ], "contingent": [ "JJ", "NN" ], "confided": [ "VBD", "VBN" ], "relented": [ "VBD", "VBN" ], "Testifying": [ "VBG" ], "Awareness": [ "NN", "NNP" ], "ration": [ "NN" ], "Proteins": [ "NNPS" ], "sprung": [ "VBN" ], "imminence": [ "NN" ], "confides": [ "VBZ" ], "ratios": [ "NNS" ], "standpoint": [ "NN" ], "Curzio": [ "NNP" ], "Chardonnays": [ "NNPS" ], "joyfully": [ "RB" ], "counterbids": [ "NNS" ], "fightin": [ "VBG" ], "evil-minded": [ "JJ" ], "act": [ "NN", "VBP", "VB" ], "Timber": [ "NN", "NNP" ], "Macchiarola": [ "NNP" ], "commercial-property": [ "NN" ], "curling": [ "NN", "VBG" ], "Litz": [ "NNP" ], "Advancement": [ "NNP" ], "home-furnishings": [ "NNS" ], "Eppelmann": [ "NNP" ], "Hansen": [ "NNP" ], "parties": [ "NNS", "VBZ" ], "Lite": [ "NNP" ], "somnolent": [ "JJ" ], "Pakistani": [ "JJ", "NNP" ], "Lita": [ "NNP" ], "Gilhooley": [ "NNP" ], "blood-bought": [ "JJ" ], "V.E.": [ "NNP" ], "yeasts": [ "NNS" ], "Equimark": [ "NNP" ], "bobbing": [ "VBG" ], "recommends": [ "VBZ" ], "BORLAND": [ "NNP" ], "TeleVideo": [ "NNP" ], "Yanes": [ "NNP" ], "fastidious": [ "JJ" ], "lane": [ "NN" ], "McFeeley": [ "NNP" ], "cloned": [ "VBN" ], "Francais": [ "NNP" ], "Teniente": [ "NNP" ], "Guido": [ "NNP" ], "DRAM": [ "NNP" ], "Detroit-over-San": [ "JJ" ], "wickets": [ "NNS" ], "Guide": [ "NNP", "NN" ], "buying": [ "VBG", "NN", "JJ", "VBG|NN" ], "rotundity": [ "NN" ], "Wrigley": [ "NNP" ], "confessions": [ "NNS" ], "algorithm": [ "NN" ], "in-law": [ "NN" ], "sales-building": [ "JJ" ], "Won": [ "NNP" ], "severally": [ "RB" ], "Close": [ "RB", "VB", "NNP", "VBP", "JJ" ], "torso": [ "NN" ], "agree": [ "VB", "VBP" ], "detailed": [ "VBN", "JJ", "VBD" ], "gone": [ "VBN", "JJ", "VBN|JJ" ], "carves": [ "VBZ" ], "dovish": [ "JJ" ], "Quietism": [ "NNP" ], "ag": [ "NN", "JJ" ], "Seigner": [ "NNP" ], "ah": [ "UH", "VBP" ], "am": [ "VBP", "FW", "RB" ], "Amiel": [ "NNP" ], "Deatherage": [ "NNP" ], "Nacional": [ "NNP" ], "as": [ "IN", "NNP", "JJ", "RB" ], "Becca": [ "NNP" ], "au": [ "FW", "NN" ], "at": [ "IN", "VBD", "RB", "RP" ], "Garrisonian": [ "NN" ], "ax": [ "NN" ], "marine-transport": [ "NN" ], "Quietist": [ "NNP" ], "carven": [ "VBN" ], "Serve-Air": [ "NNP" ], "self-referential": [ "JJ" ], "prosceniums": [ "NNS" ], "oilcloth": [ "NN" ], "Salamander": [ "NNP" ], "Machos": [ "FW" ], "Simpsons": [ "NNPS" ], "Machon": [ "NNP" ], "gunboats": [ "NNS" ], "Birenbaum": [ "NNP" ], "spatial": [ "JJ" ], "jell": [ "VB" ], "contemporaries": [ "NNS" ], "bizarrely": [ "RB" ], "IBRD": [ "NNP" ], "unrefrigerated": [ "JJ" ], "fluorinated": [ "VBN" ], "annex": [ "NN", "VB" ], "Maier": [ "NNP" ], "slant": [ "NN", "VB" ], "a.": [ "NN" ], "herbs": [ "NNS" ], "middling": [ "JJ" ], "Pekin": [ "NNP" ], "PROFITT": [ "NNP" ], "Sabol": [ "NNP" ], "mite-box": [ "NN" ], "Explanations": [ "NNS" ], "PROFITS": [ "NNS" ], "Retin-A": [ "NNP" ], "Vicar": [ "NNP" ], "dogleg": [ "NN" ], "police-community": [ "JJ" ], "padlock": [ "NN" ], "Absorbing": [ "VBG" ], "Twiggy": [ "NNP" ], "mimic": [ "VB", "VBP" ], "cps": [ "NNS" ], "Vical": [ "NNP" ], "cpu": [ "NN" ], "overeager": [ "JJ" ], "Canada": [ "NNP" ], "externally": [ "RB" ], "instincts": [ "NNS" ], "asteroids": [ "NNS" ], "ex-Beecham": [ "JJ" ], "Currier": [ "NNP" ], "Amdahl": [ "NNP" ], "sugar-using": [ "JJ" ], "upkeep": [ "NN" ], "fairness": [ "NN" ], "revolting": [ "JJ" ], "Mateyo": [ "NNP" ], "Wickhams": [ "NNP" ], "caveats": [ "NNS" ], "disciples": [ "NNS" ], "pornographic": [ "JJ" ], "Early-morning": [ "JJ" ], "champions": [ "NNS", "VBZ" ], "piddling": [ "JJ" ], "co-signed": [ "JJ" ], "dressing": [ "NN", "VBG", "JJ" ], "Precious": [ "NNP", "JJ", "RB" ], "well-cut": [ "JJ" ], "splashing": [ "VBG" ], "state-produced": [ "JJ" ], "compromising": [ "VBG", "JJ" ], "gemlike": [ "JJ" ], "fullbacking": [ "VBG" ], "Severence": [ "NNP" ], "self-experimentation": [ "NN" ], "purpose...": [ ":" ], "Kweisi": [ "NNP" ], "manageable": [ "JJ" ], "price-moving": [ "JJ" ], "Cockburn": [ "NNP" ], "`": [ "``" ], "Noam": [ "NNP" ], "Noah": [ "NNP" ], "accompanying": [ "VBG", "JJ" ], "DELAYED": [ "VBN" ], "underclothes": [ "NNS" ], "dinosaur": [ "NN" ], "scrapping": [ "VBG", "NN" ], "Darrell": [ "NNP" ], "program-driven": [ "JJ" ], "Chiat\\": [ "NNP", "JJ" ], "Powless": [ "NNP" ], "humongous": [ "JJ" ], "antibiotic": [ "NN", "JJ" ], "pretenses": [ "NNS" ], "two-class": [ "JJ" ], "Nordmann": [ "NNP" ], "fill-ins": [ "NNS" ], "nation-state": [ "NN", "JJ" ], "Dilly": [ "NNP" ], "Arlin": [ "NNP" ], "flashback": [ "NN" ], "Immaculate": [ "NNP" ], "prime-1": [ "NN" ], "one-drug": [ "JJ" ], "poisonous": [ "JJ" ], "burgundy": [ "NN" ], "Safari": [ "NNP" ], "non-medical": [ "JJ" ], "avenues": [ "NNS" ], "super-user": [ "NN" ], "celluloses": [ "NNS" ], "Patronage": [ "NN" ], "Bureaus": [ "NNP", "NNPS" ], "installations": [ "NNS" ], "Deminex": [ "NNP" ], "re-examines": [ "VBZ" ], "electronic-bomb": [ "NN" ], "pidgin": [ "NN", "JJ" ], "DALIS": [ "NNPS" ], "Fireside\\/Simon": [ "NNP" ], "dreamlessly": [ "RB" ], "non-performing": [ "JJ" ], "dramatist": [ "NN" ], "backlash": [ "NN" ], "squashy": [ "JJ" ], "mudslinging": [ "NN" ], "Planet": [ "NNP", "NN" ], "ultra-safe": [ "JJ" ], "Westendorf": [ "NNP" ], "L-1011": [ "NNP" ], "Zurich": [ "NNP", "NN" ], "Totaling": [ "VBG" ], "compliance": [ "NN" ], "Litowski": [ "NNP" ], "interconnected": [ "VBN" ], "atelier": [ "NN" ], "Richardson-Smith": [ "NNP" ], "cap-and-ball": [ "JJ" ], "gunfights": [ "NNS" ], "brimmed": [ "VBD", "VBN" ], "Lytton": [ "NNP" ], "Astarte": [ "NNP" ], "Auf": [ "NNP" ], "filial": [ "JJ" ], "Sleepy-eyed": [ "JJ" ], "Aul": [ "NNP" ], "Cotty": [ "NNP" ], "conspiratorial": [ "JJ" ], "Pouilly-Fuisse": [ "NNP" ], "worry-free": [ "JJ" ], "intermediate-range": [ "JJ" ], "unbleached": [ "JJ" ], "Elements": [ "NNS", "NNPS" ], "Optimists": [ "NNS" ], "Peat": [ "NNP" ], "mothers-in-law": [ "NNS" ], "bigness": [ "NN" ], "AMDAHL": [ "NNP" ], "Peal": [ "NNP" ], "Peak": [ "NNP", "JJ" ], "Scratchard": [ "NNP" ], "Meaningful": [ "JJ" ], "Financing": [ "NNP", "VBG", "NN" ], "Canoga": [ "NNP" ], "contrive": [ "VB" ], "Philippines": [ "NNP", "NNPS" ], "Humble": [ "NNP" ], "spoils": [ "NNS" ], "LaFalce": [ "NNP" ], "Slick": [ "JJ" ], "expansively": [ "RB" ], "riverbank": [ "NN" ], "DIOCS": [ "NN" ], "delphic": [ "JJ" ], "evolves": [ "VBZ" ], "Carltons": [ "NNPS" ], "chisel": [ "NN", "VB" ], "Coney": [ "NNP" ], "indicating": [ "VBG" ], "evolved": [ "VBN", "JJ", "VBD" ], "Compelled": [ "VBN" ], "beautiful": [ "JJ" ], "Denton": [ "NNP" ], "impacts": [ "NNS" ], "stated": [ "VBN", "JJ", "VBD" ], "rustled": [ "VBN", "JJ" ], "dislikes": [ "VBZ", "NN", "NNS" ], "moon": [ "NN", "VB" ], "accept": [ "VB", "VBP" ], "autumn": [ "NN" ], "Laban": [ "NNP" ], "Venezuelan": [ "JJ", "NNP" ], "rustler": [ "NN" ], "elaborately": [ "RB" ], "McCulley": [ "NNP" ], "faster-spending": [ "JJ" ], "equities": [ "NNS" ], "Fulham": [ "NNP" ], "earnings": [ "NNS", "NN" ], "cling": [ "VBP", "VB" ], "Maquila": [ "NN" ], "telegraphic": [ "JJ" ], "Hanover": [ "NNP" ], "Correspondence": [ "NN" ], "BancOklahoma": [ "NNP" ], "expense-account": [ "NN" ], "Bracken": [ "NNP" ], "Ditka": [ "NNP" ], "Maxentius": [ "NNP" ], "re-evaluating": [ "JJ", "VBG" ], "haggardly": [ "RB" ], "backyard": [ "NN" ], "Yastrow": [ "NNP" ], "unhesitant": [ "JJ" ], "summarization": [ "NN" ], "debility": [ "NN" ], "Authority-Garden": [ "NNP" ], "MANUFACTURERS": [ "NNPS" ], "hauling": [ "VBG", "NN" ], "Beowulf": [ "NNP" ], "chemistries": [ "NNS" ], "pre-historic": [ "JJ" ], "marine-research": [ "NN" ], "pans": [ "NNS", "VBZ" ], "veridical": [ "JJ" ], "pant": [ "NN" ], "Nana": [ "NNP" ], "pany": [ "NN" ], "MICRO": [ "NNP" ], "sinning": [ "NN" ], "pane": [ "NN" ], "Scofield": [ "NNP" ], "Seasonings": [ "NNPS" ], "Nkrumah": [ "NNP" ], "Alter": [ "VB", "NNP" ], "Abbie": [ "NNP" ], "Collateral": [ "NN" ], "Seifert": [ "NNP" ], "Llewellyn": [ "NNP" ], "debilitated": [ "VBN", "JJ" ], "decision-maker": [ "NN" ], "deeds": [ "NNS", "VBZ" ], "urbanization": [ "NN" ], "MD11": [ "NNP" ], "ocean-shipping": [ "NN" ], "hysterectomy": [ "NN" ], "nonparticulate": [ "NN" ], "rigids": [ "NNS" ], "VandenBerg": [ "NNP" ], "lineback": [ "NN" ], "consign": [ "VB" ], "iridescent": [ "JJ" ], "Experimentally": [ "RB" ], "Gerhard": [ "NNP" ], "Creative": [ "NNP", "JJ" ], "Partnerships": [ "NNS" ], "Alcibiades": [ "NNP" ], "be-thonged": [ "JJ" ], "judgeships": [ "NNS" ], "real-estate": [ "NN", "JJ" ], "Menet": [ "NNP" ], "Newton": [ "NNP" ], "truths": [ "NNS" ], "impugning": [ "VBG" ], "Pole": [ "NNP", "NN" ], "plurality": [ "NN" ], "Thanks": [ "NNS", "UH" ], "Pola": [ "NNP" ], "Polo": [ "NNP" ], "recovery-program": [ "NN" ], "Poll": [ "NNP", "NN" ], "Polk": [ "NNP" ], "fee-related": [ "JJ" ], "Menem": [ "NNP" ], "transforming": [ "VBG" ], "bends": [ "NNS", "VBZ" ], "catalogues": [ "NNS" ], "Dactyls": [ "NNPS" ], "Balenciaga": [ "NNP" ], "exorbitant": [ "JJ" ], "Setting": [ "VBG" ], "fewer": [ "JJR", "RB", "RBR" ], "Peoples": [ "NNPS", "NNP", "NNS" ], "Mon-Fay": [ "NNP" ], "catalogued": [ "VBN", "VBD" ], "takeing": [ "VBG" ], "BMC": [ "NNP" ], "BMA": [ "NNP" ], "BMI": [ "NNP" ], "mattered": [ "VBD", "VBN" ], "pea-green": [ "JJ" ], "BMP": [ "NN", "NNP" ], "goitrogen": [ "NN" ], "BMW": [ "NNP" ], "BMT": [ "NNP" ], "TREND-SETTER": [ "NN" ], "expiation": [ "NN" ], "Railroad": [ "NNP", "NN" ], "Beckstrom": [ "NNP" ], "Folding": [ "VBG" ], "free-spending": [ "JJ" ], "drifting": [ "VBG", "JJ", "NN" ], "porcelain": [ "NN" ], "disheveled": [ "JJ" ], "Burgundies": [ "NNPS" ], "paucity": [ "NN" ], "pitfalls": [ "NNS" ], "proxy": [ "NN", "JJ" ], "imagine": [ "VB", "VBP" ], "Nonprofit": [ "JJ" ], "reproach": [ "NN" ], "Hispanic": [ "JJ", "NNP" ], "uplands": [ "NNS" ], "chlorothiazide": [ "NN" ], "positioning": [ "VBG", "NN" ], "Allotments": [ "NNS" ], "instigation": [ "NN" ], "bookies": [ "NNS" ], "Spanos": [ "NNP" ], "conductors": [ "NNS" ], "Doran": [ "NNP" ], "redeemded": [ "VBN" ], "Tabacs": [ "NNP" ], "waspishly": [ "RB" ], "corrugated": [ "JJ", "VBN" ], "vowel": [ "NN", "JJ" ], "protectionist": [ "JJ", "NN" ], "thereafter": [ "RB" ], "preordainment": [ "NN" ], "slipper": [ "NN" ], "Services\\/Japan": [ "NNP" ], "Kinnett": [ "NNP" ], "Kagan": [ "NNP" ], "SMALL": [ "NNP", "JJ" ], "Treiger": [ "NNP" ], "Isham": [ "NNP" ], "protectionism": [ "NN" ], "intervention...": [ ":" ], "unexplained": [ "JJ" ], "tadpoles": [ "NNS" ], "Courier": [ "NNP" ], "Hualien": [ "NNP" ], "Helmet": [ "NN" ], "erupted": [ "VBD", "VBN" ], "Mathavious": [ "NNP" ], "tangency": [ "NN" ], "crisscrossed": [ "VBN", "VBD" ], "sympathies": [ "NNS" ], "Doubts": [ "NNS" ], "relationship": [ "NN" ], "eucalyptus": [ "NN" ], "soft-drinks": [ "NNS" ], "immediate": [ "JJ" ], "credit-market": [ "JJ" ], "mishap": [ "NN" ], "consult": [ "VB" ], "focusing": [ "VBG", "NN" ], "unprofitable": [ "JJ" ], "observatory": [ "NN" ], "Equator": [ "NNP", "NN" ], "Jean-Pascal": [ "NNP" ], "professoriate": [ "NN" ], "computer-guided": [ "JJ" ], "Inhouse": [ "JJ" ], "drawled": [ "VBD" ], "PegaSys": [ "NNP" ], "Migs": [ "NNS" ], "lovelorn": [ "JJ" ], "less-influential": [ "JJ" ], "revelling": [ "VBG" ], "carrier-current": [ "JJ" ], "Sanjiv": [ "NNP" ], "refrigerators": [ "NNS" ], "fights": [ "NNS", "VBZ" ], "well-developed": [ "JJ" ], "Donnay": [ "NNP" ], "Adverse": [ "JJ" ], "Donnan": [ "NNP" ], "Loevner": [ "NNP" ], "more-senior": [ "JJR", "JJ" ], "ballerina": [ "NN" ], "honeybees": [ "NNS" ], "Kyoto": [ "NNP" ], "trowel": [ "NN" ], "Makwah": [ "NNP" ], "equaled": [ "VBD", "VBN" ], "analogy": [ "NN" ], "chest-back-lat-shoulder": [ "JJ" ], "MacKinnon": [ "NNP" ], "fellers": [ "NNS" ], "civil-investigative": [ "JJ" ], "effecting": [ "VBG" ], "benefit-plan": [ "JJ" ], "Prentice-Hall": [ "NNP" ], "viscoelasticity": [ "NN" ], "high-rate": [ "JJ" ], "funnier": [ "JJR" ], "Tanzi": [ "NNP" ], "Lysol": [ "NNP" ], "tokens": [ "NNS" ], "unequal": [ "JJ" ], "Tomsho": [ "NNP" ], "covet": [ "VB", "VBP" ], "cover": [ "VB", "NN", "VBP" ], "coves": [ "NNS" ], "low-stress": [ "JJ" ], "autofluorescence": [ "NN" ], "Fauntroy": [ "NNP" ], "Physicochemical": [ "JJ" ], "Swirsky": [ "NNP" ], "Singing": [ "VBG", "NNP" ], "fiscal-fourth": [ "JJ" ], "trip-hammer": [ "NN" ], "notebook-size": [ "JJ" ], "Burnsville": [ "NNP" ], "Kidnaper": [ "NN" ], "Gridley": [ "NNP" ], "aghast": [ "JJ" ], "Mail-Order": [ "JJ" ], "well-endowed": [ "JJ" ], "Soviet-American": [ "JJ" ], "Melloan": [ "NNP" ], "Hajime": [ "NNP" ], "AIDS-like": [ "JJ" ], "electronic-quote": [ "NN" ], "SCUD": [ "NNP" ], "condos": [ "NNS" ], "undying": [ "JJ" ], "Istvan": [ "NNP" ], "Tagamet": [ "NNP" ], "Lodestar": [ "NNP" ], "bastion": [ "NN" ], "T.B.": [ "NNP" ], "alloted": [ "VBN" ], "Broomfield": [ "NNP" ], "Oddy": [ "NNP" ], "Masters": [ "NNP", "NNPS", "NNS" ], "magicians": [ "NNS" ], "Stouffer": [ "NNP" ], "gratis": [ "JJ", "RB" ], "Point-Pepperell": [ "NNP" ], "Odds": [ "NNS", "NNPS" ], "eies": [ "NNS" ], "upholstery": [ "NN" ], "Dana-Farber": [ "NNP" ], "Heikes": [ "NNP" ], "Yaaba": [ "NNP" ], "Pereira": [ "NNP" ], "Minutes": [ "NNPS", "NNP", "NNS" ], "dustin": [ "VBG" ], "Tator": [ "NNP" ], "tumors": [ "NNS" ], "demeanors": [ "NNS" ], "low-fat": [ "JJ" ], "obscure": [ "JJ", "VB" ], "sew": [ "VB", "VBP" ], "dryin": [ "VBG" ], "seq": [ "NN" ], "overwhelm": [ "VB", "VBP" ], "Fox": [ "NNP" ], "Foy": [ "NNP" ], "sex": [ "NN", "VB" ], "Foe": [ "NNP" ], "see": [ "VB", "UH", "VBP" ], "Fog": [ "NN" ], "unsheltered": [ "JJ" ], "migration": [ "NN" ], "sea": [ "NN", "VB", "VBP" ], "Stedt": [ "NNP" ], "Umm": [ "UH" ], "institutes": [ "NN" ], "Westbound": [ "NNP" ], "Calabria": [ "NNP" ], "bone-marrow": [ "NN" ], "vitamins": [ "NNS" ], "Yale-New": [ "NNP" ], "unmarketable": [ "JJ" ], "topmost": [ "JJ" ], "avuncular": [ "JJ" ], "Belinda": [ "NNP", "NN" ], "Ungaretti": [ "NNP" ], "Rebounding": [ "VBG" ], "Pocketing": [ "VBG" ], "ego-adaptive": [ "JJ" ], "embargoes": [ "NNS" ], "Dmitri": [ "NNP" ], "redesigning": [ "VBG" ], "Serves": [ "VBZ" ], "hooted": [ "VBD", "VBN" ], "shortlived": [ "JJ" ], "Served": [ "VBN" ], "pagan": [ "JJ" ], "embargoed": [ "JJ", "VBD", "VBN" ], "Kaskaskia": [ "NNP" ], "Nortek": [ "NNP" ], "RETIREMENT": [ "NNP" ], "Goldscheider": [ "NNP" ], "fifty-year": [ "JJ" ], "repainted": [ "VBN", "JJ" ], "scams": [ "NNS" ], "Halloran": [ "NNP" ], "long-term": [ "JJ", "NN", "RB", "NNS" ], "Nortex": [ "NNP" ], "volcanic": [ "JJ" ], "electrician": [ "NN" ], "Spectator": [ "NNP" ], "drunk": [ "JJ", "NN", "VBN" ], "underwent": [ "VBD" ], "Ephlin": [ "NNP" ], "forklift": [ "NN" ], "USGA": [ "NNP" ], "triservice": [ "NN" ], "community": [ "NN" ], "hollow": [ "JJ", "NN" ], "agents": [ "NNS" ], "BREWERS": [ "NNS" ], "creeds": [ "NNS" ], "underlay": [ "VBP" ], "runups": [ "NNS" ], "worthless": [ "JJ" ], "vehemently": [ "RB" ], "numinous": [ "JJ" ], "APPLE": [ "NNP" ], "Trail": [ "NNP", "VB" ], "A321s": [ "NNS" ], "scions": [ "NNS" ], "McBride": [ "NNP" ], "flounced": [ "VBN" ], "self-deceived": [ "JJ" ], "semi-public": [ "JJ" ], "Burwell": [ "NNP" ], "Waseda": [ "NNP" ], "repayments": [ "NNS" ], "then-21": [ "JJ" ], "towne": [ "NN" ], "fund": [ "NN", "VBP", "VB" ], "McRoberts": [ "NNP" ], "vortex": [ "NN" ], "Ninja": [ "NNP" ], "womanizing": [ "VBG" ], "insiders": [ "NNS" ], "towns": [ "NNS" ], "ligands": [ "NNS" ], "Standard-issue": [ "JJ" ], "tweaked": [ "VBD" ], "Dallara": [ "NNP" ], "judicial": [ "JJ" ], "Duplicating": [ "VBG" ], "sesame": [ "NN" ], "Fighters": [ "NNP" ], "sociality": [ "NN" ], "redounds": [ "VBZ" ], "Measure": [ "NN", "NNP", "VB" ], "front-loaded": [ "JJ" ], "Keschl": [ "NNP" ], "road-crossing": [ "NN" ], "owed": [ "VBN", "VBD" ], "Hubermann": [ "NNP" ], "Hartzog": [ "NNP" ], "owes": [ "VBZ" ], "mediating": [ "VBG" ], "decor": [ "NN" ], "Ayres": [ "NNP" ], "volume-based": [ "JJ" ], "decoy": [ "NN" ], "two-color": [ "JJ" ], "Morelli": [ "NNP" ], "ingot": [ "NN" ], "voraciously": [ "RB" ], "Jocelyn": [ "NNP" ], "Apergillus": [ "NN" ], "monasticism": [ "NN" ], "doan": [ "VBP" ], "levels": [ "NNS", "VBZ" ], "dollar-and-cents": [ "JJ" ], "Raleigh": [ "NNP" ], "Expands": [ "VBZ" ], "oddest": [ "JJS" ], "Cameo": [ "NNP" ], "Camel": [ "NNP" ], "Woodbridge": [ "NNP" ], "upland": [ "JJ", "RB" ], "Rate": [ "NNP", "NN" ], "regulating": [ "VBG", "NN" ], "Nastro": [ "NNP" ], "Uxbridge": [ "NNP" ], "Resourceful": [ "JJ" ], "Rath": [ "NNP" ], "Segal": [ "NNP" ], "red-haired": [ "JJ" ], "hypothesized": [ "VBN" ], "militiamen": [ "NNS" ], "Alabamans": [ "NNS" ], "rumbling": [ "VBG" ], "LAYOFFS": [ "NNS" ], "Segar": [ "NNP" ], "contradicting": [ "VBG" ], "relevancy": [ "NN" ], "dissociation": [ "NN" ], "interregnum": [ "NN" ], "Rahway": [ "NNP" ], "sweet-shrub": [ "NN" ], "VCOR": [ "NNP" ], "Varian": [ "NNP" ], "ellipsoids": [ "NNS" ], "location": [ "NN" ], "DM850-a-month": [ "JJ" ], "billable": [ "JJ" ], "relevance": [ "NN" ], "Fukuoka": [ "NNP" ], "Shartzer": [ "NNP" ], "victims": [ "NNS" ], "Frenchwoman": [ "NNP" ], "rigatoni": [ "NN" ], "Merhige": [ "NNP" ], "instructors": [ "NNS" ], "Vermejo": [ "NNP" ], "deflationist": [ "NN" ], "Duffus": [ "NNP" ], "integrated-steel": [ "NN" ], "contraptions": [ "NNS" ], "Aransas": [ "NNP" ], "governess": [ "NN" ], "criminal-defense": [ "JJ", "NN" ], "amicably": [ "RB" ], "Dams": [ "NNS" ], "Damp": [ "JJ" ], "DES": [ "NNP", "NN" ], "Yamatake": [ "NNP" ], "Damn": [ "VB", "JJ" ], "sight": [ "NN", "VB" ], "nostrums": [ "NNS" ], "DEA": [ "NNP" ], "DEC": [ "NNP" ], "amicable": [ "JJ" ], "Dame": [ "NNP" ], "wrongful": [ "JJ" ], "Balcerowicz": [ "NNP" ], "Viewmaster-Ideal": [ "NNP" ], "stamens": [ "NNS" ], "stables": [ "NNS" ], "sheet-fed": [ "JJ" ], "stabled": [ "VBD" ], "film-processing": [ "NN" ], "blood-red": [ "NN" ], "cop-killer": [ "JJ" ], "durables": [ "NNS" ], "EPO-treated": [ "JJ" ], "tankers": [ "NNS" ], "lubra": [ "NN" ], "two-for-one": [ "JJ" ], "Riviera": [ "NNP" ], "Soll": [ "NNP" ], "U.S.-SOVIET": [ "JJ" ], "vitals": [ "NNS" ], "non-tariff": [ "JJ" ], "Earth-quake": [ "NN" ], "scarify": [ "VB" ], "wildlife": [ "NN" ], "Fulgoni": [ "NNP" ], "anything": [ "NN" ], "global-market": [ "JJ" ], "Shawano": [ "NNP" ], "ambush": [ "NN", "VB" ], "computational": [ "JJ" ], "Hatless": [ "JJ" ], "Bensten": [ "NNP" ], "Young": [ "NNP", "JJ", "NN" ], "ACS": [ "NNP" ], "adverbs": [ "NNS" ], "Skillman": [ "NNP" ], "Riger": [ "NNP" ], "ACT": [ "NNP" ], "burdens": [ "NNS", "VBZ" ], "next": [ "JJ", "IN", "RB" ], "CoGen": [ "NNP" ], "criticisms": [ "NNS" ], "straight-line": [ "JJ" ], "bargaining": [ "NN", "JJ", "VBG" ], "assuring": [ "VBG" ], "textual": [ "JJ" ], "occupy": [ "VB", "VBP" ], "often-disparaged": [ "JJ" ], "pixie-like": [ "JJ" ], "BONO": [ "FW" ], "rhetorical": [ "JJ" ], "DowBrands": [ "NNP" ], "excavating": [ "VBG" ], "impudent": [ "JJ" ], "Klimpl": [ "NNP" ], "Mlle": [ "NNP" ], "retina": [ "NN" ], "Trafton": [ "NNP" ], "vowing": [ "VBG" ], "numismatic": [ "JJ" ], "High-yielding": [ "JJ" ], "cortico-hypothalamic": [ "JJ" ], "port-shopping": [ "NN" ], "Bandish": [ "NNP" ], "nieces": [ "NNS" ], "redeemed": [ "VBN", "VBD" ], "feather-bedding": [ "NN" ], "Indoor": [ "JJ" ], "Ohlman": [ "NNP" ], "electrophorus": [ "NN" ], "Erdos": [ "NNP" ], "mature": [ "JJ", "VB", "NNP", "VBP" ], "supervisor": [ "NN" ], "Gobbee": [ "NNP" ], "WALL": [ "NNP" ], "Disposal": [ "NNP", "NN" ], "Jolla": [ "NNP" ], "Parks": [ "NNP", "NNPS", "NNS" ], "Gutfreund-Postel": [ "NNP" ], "Mishelevka": [ "NNP" ], "Frothy": [ "JJ" ], "Memory": [ "NN", "NNP" ], "Parke": [ "NNP" ], "wove": [ "VBD" ], "formalism": [ "NN" ], "Chesshire": [ "NNP" ], "bad-cop": [ "JJ" ], "Sundstrand": [ "NNP" ], "Brush-off": [ "NN", "NNP" ], "Dividends": [ "NNS" ], "leftward": [ "JJ" ], "overshoots": [ "VBZ" ], "actors": [ "NNS" ], "brazier": [ "NN" ], "Monchecourt": [ "NNP" ], "pockmarked": [ "JJ", "VBN" ], "rumor-fraught": [ "JJ" ], "sided": [ "VBD", "VBN" ], "faintly": [ "RB" ], "Gorilla": [ "NNP" ], "Onan": [ "NNP" ], "DRILLING": [ "NN" ], "Railway": [ "NNP" ], "Biscuits": [ "NNP", "NNPS" ], "sides": [ "NNS" ], "worsened": [ "VBD", "VBN" ], "unionized": [ "JJ", "VBD", "VBN" ], "one-set": [ "JJ" ], "TR.": [ "NNP" ], "Ritter": [ "NNP" ], "superstate": [ "NN" ], "summit": [ "NN", "JJ" ], "walker": [ "NN" ], "Exchange-rate": [ "JJ" ], "Krauts": [ "NNS" ], "essay": [ "NN" ], "CPI": [ "NNP" ], "pooched": [ "VBD" ], "Taxonomists": [ "NNS" ], "CPA": [ "NNP" ], "Tweed": [ "NNP" ], "CPC": [ "NNP" ], "results": [ "NNS", "VBZ" ], "June-to-September": [ "NNP" ], "dedicates": [ "VBZ" ], "Nonconformists": [ "NNS" ], "CPR": [ "NNP" ], "QVC": [ "NNP" ], "CPT": [ "NN" ], "ORDERS": [ "VBZ" ], "inferences": [ "NNS" ], "Taraday": [ "NNP" ], "renunciations": [ "NNS" ], "Milhaud": [ "NNP" ], "court-supervised": [ "JJ" ], "send": [ "VB", "VBP" ], "outlooks": [ "NNS" ], "commuter-airline": [ "NN" ], "Bharati": [ "NNP" ], "Candide": [ "NNP" ], "sent": [ "VBD", "VBN" ], "pestering": [ "VBG" ], "recitals": [ "NNS" ], "Sanctions": [ "NNS", "NNPS" ], "Goldstein": [ "NNP" ], "languished": [ "VBN", "VBD" ], "Following": [ "VBG", "NN" ], "languishes": [ "VBZ" ], "pyrometer": [ "NN" ], "seven-member": [ "JJ" ], "categories": [ "NNS" ], "Kimball": [ "NNP" ], "travel-services": [ "NNS" ], "recognizance": [ "NN" ], "Related": [ "NNP", "JJ", "VBN" ], "Talking": [ "VBG" ], "bemoans": [ "VBZ" ], "obesity": [ "NN" ], "Seattle": [ "NNP", "NN" ], "thirty-foot": [ "JJ" ], "Lynford": [ "NNP" ], "burrowed": [ "VBD" ], "agrarian": [ "JJ", "NN" ], "Redbirds": [ "NNP" ], "buckskins": [ "NNS" ], "Newbery": [ "NNP" ], "Newberg": [ "NNP" ], "re-enactments": [ "NNS", "NN" ], "Reinhardt": [ "NNP" ], "shivery": [ "JJ" ], "Jessica": [ "NNP" ], "firma": [ "FW", "NN" ], "Alai": [ "NNP" ], "Giddings": [ "NNP" ], "analogously": [ "RB" ], "Alan": [ "NNP" ], "laxity": [ "NN" ], "Alar": [ "NN", "NNP" ], "Alas": [ "UH", "RB" ], "firms": [ "NNS", "VBZ" ], "Diario": [ "NNP" ], "Barbudos": [ "NNPS" ], "Newton-John": [ "NNP" ], "fertilization": [ "NN" ], "panelists": [ "NNS" ], "jammies": [ "NNS" ], "Lammermoor": [ "NNP" ], "identifications": [ "NNS" ], "Tremdine": [ "NNP" ], "aerodynamic": [ "JJ" ], "physiology": [ "NN" ], "Streak": [ "NNP" ], "sentimentality": [ "NN" ], "engage": [ "VB", "VBP" ], "Stream": [ "NNP" ], "firm.": [ "NN" ], "Energy": [ "NNP", "NN" ], "Ala.": [ "NNP" ], "McCarthy-era": [ "JJ" ], "bank-affiliated": [ "JJ" ], "Militia": [ "NNS" ], "Religious": [ "JJ", "NNP" ], "Dohnanyi": [ "NNP" ], "debts": [ "NNS" ], "Decay": [ "NNP" ], "finagling": [ "NN" ], "Alleged": [ "JJ" ], "distrusted": [ "VBN", "VBD" ], "Industrielle": [ "NNP" ], "moonlighting": [ "NN", "VBG" ], "F-14": [ "NN", "NNP" ], "F-15": [ "NNP", "NN" ], "trivialize": [ "VB" ], "F-18": [ "NN" ], "F.E.L.": [ "NNP" ], "cheered": [ "VBD", "VBN" ], "Ha": [ "NNP", "UH" ], "Outright": [ "JJ" ], "archbishop": [ "NN" ], "whipping": [ "VBG", "JJ", "NN" ], "painstakingly": [ "RB" ], "ministers": [ "NNS" ], "cash-or-shares": [ "JJ" ], "Oppenheim": [ "NNP" ], "muffed": [ "VBD", "VBN" ], "Telmex": [ "NNP" ], "Delawareans": [ "NNPS" ], "Kaisers": [ "NNPS" ], "chloride": [ "NN" ], "Biny": [ "NNP" ], "crisscrossing": [ "VBG" ], "Bricktop": [ "NNP" ], "monophonic": [ "JJ" ], "Gumi": [ "NNP" ], "one-megabit": [ "JJ" ], "Hosting": [ "VBG" ], "Cimabue": [ "NNP" ], "Gums": [ "NNS" ], "Gump": [ "NNP" ], "Sucre": [ "NNP" ], "sharply": [ "RB" ], "roller-coaster": [ "NN" ], "promotional": [ "JJ" ], "folder": [ "NN" ], "pollutant": [ "NN" ], "cross-margining": [ "JJ", "NN" ], "Christoph": [ "NNP" ], "insists": [ "VBZ" ], "instinctual": [ "JJ" ], "Subtle": [ "JJ" ], "hare-brained": [ "JJ" ], "campsites": [ "NNS" ], "million-member-Teamsters": [ "NNPS" ], "wed": [ "VBN", "VB" ], "Shrieves": [ "NNP" ], "Sherrie": [ "NNP" ], "depiction": [ "NN" ], "beckoned": [ "VBD", "VBN" ], "Several": [ "JJ", "NNP" ], "trumpet": [ "NN", "VBP" ], "Shoupe": [ "NNP" ], "Osler": [ "NNP" ], "nuts-and-bolts": [ "JJ" ], "hydrophilic": [ "JJ" ], "Crocodile": [ "NNP" ], "Bolling": [ "NNP" ], "Ransy": [ "NNP" ], "expansion-minded": [ "JJ" ], "tableau": [ "NN" ], "Ittleson": [ "NNP" ], "Tigershark": [ "NNP" ], "Railcar": [ "NNP" ], "stand": [ "VB", "NN", "VBP" ], "ACQUISITIONS": [ "NNS" ], "blocks": [ "NNS", "VBZ" ], "Flax": [ "NNP" ], "wallpaper": [ "NN" ], "Poitrine": [ "NNP" ], "paleo": [ "NN" ], "blocky": [ "JJ" ], "Garcia": [ "NNP" ], "notebook": [ "NN" ], "demonstrating": [ "VBG" ], "Ingrid": [ "NNP" ], "lagoons": [ "NNS" ], "near-total": [ "JJ" ], "efficiently": [ "RB" ], "Welmers": [ "NNS" ], "selectors": [ "NNS" ], "critical-intellectual": [ "JJ" ], "intellectuals": [ "NNS" ], "Leisire": [ "NNP" ], "Buhrmann-Tetterode": [ "NNP" ], "Kaiser": [ "NNP" ], "jigger": [ "NN" ], "unpalatable": [ "JJ" ], "comma": [ "NN" ], "N.C.-based": [ "JJ" ], "Brenna": [ "NNP" ], "Octobrists": [ "NNPS" ], "operative": [ "JJ", "NN" ], "easements": [ "NNS" ], "recreating": [ "VBG" ], "unpeace": [ "NN" ], "excretory": [ "JJ" ], "Shroeder": [ "NNP" ], "hypothesize": [ "VB" ], "Southeastern": [ "NNP", "JJ" ], "shudder": [ "VB", "VBP" ], "spoiling": [ "VBG" ], "hobby": [ "NN" ], "Bazaar": [ "NNP" ], "French-franc": [ "NN" ], "burping": [ "VBG" ], "crucial": [ "JJ" ], "Excluding": [ "VBG", "NNP" ], "Reichenberg": [ "NNP" ], "Manzanola": [ "NNP" ], "triphosphorous": [ "JJ" ], "Wynston": [ "NNP" ], "A&M": [ "NNP", "NN" ], "Katz": [ "NNP" ], "rail-equipment": [ "JJ" ], "installment": [ "NN", "JJ" ], "gallstones": [ "NNS" ], "A&E": [ "NNP" ], "Sporting": [ "NNP", "NN" ], "M-19": [ "NN" ], "merge": [ "VB", "NN", "VBP" ], "Informix": [ "NNP" ], "Kato": [ "NNP" ], "accounts": [ "NNS", "VBZ" ], "A&W": [ "NNP" ], "A&P": [ "NNP", "NN" ], "Kate": [ "NNP", "NN" ], "veracious": [ "JJ" ], "Lumpur": [ "NNP" ], "kisha": [ "FW" ], "BUSINESS": [ "NN", "NNP" ], "Treasure": [ "NNP", "NN" ], "Mills": [ "NNP", "NNPS", "NNS" ], "Millo": [ "NNP" ], "Most-Favored": [ "JJS" ], "intangible": [ "JJ", "NN" ], "Dispatch": [ "NNP" ], "Treasury": [ "NNP", "NN" ], "repainting": [ "NN", "VBG" ], "Mille": [ "NNP" ], "WOLFSON": [ "NNP" ], "Lynes": [ "NNP" ], "wander": [ "VB", "VBP" ], "Least-cost": [ "JJ" ], "Agreement": [ "NNP", "NN" ], "HIAA": [ "NNP" ], "venom": [ "NN" ], "exults": [ "VBZ" ], "saltbush": [ "NN" ], "Contractors": [ "NNS", "NNPS" ], "czar": [ "NN" ], "Bakkers": [ "NNPS" ], "interactions": [ "NNS" ], "Grove": [ "NNP", "NN" ], "yawns": [ "NNS" ], "opinion-makers": [ "NNS" ], "Albanese": [ "NNP" ], "Herwick": [ "NNP" ], "BICC": [ "NNP" ], "Freddy": [ "NNP" ], "loomed": [ "VBD", "VBN" ], "Cuellar": [ "NNP" ], "eyeballing": [ "VBG" ], "monographs": [ "NNS" ], "Aided": [ "VBN" ], "Bachman": [ "NNP" ], "shuld": [ "MD" ], "congressonal": [ "JJ" ], "mesmerized": [ "VBN" ], "followings": [ "NNS" ], "low-calorie": [ "JJ" ], "Aides": [ "NNS" ], "Caper": [ "NNP" ], "Wheeler": [ "NNP" ], "transmitters": [ "NNS" ], "Capet": [ "NNP" ], "Hypocrisy": [ "NN" ], "pines": [ "NNS" ], "Review": [ "NNP", "NN" ], "owned": [ "VBN", "VBD", "JJ" ], "straining": [ "VBG" ], "owner": [ "NN" ], "Capek": [ "NNP" ], "Sovtransavto": [ "NNP" ], "Pampers": [ "NNPS", "NNP" ], "Capel": [ "NNP" ], "Naturally": [ "RB" ], "legislative": [ "JJ" ], "Solidarity-led": [ "JJ" ], "STOCKS": [ "NNS" ], "Y-MP\\/832": [ "NNP" ], "foreign-based": [ "JJ" ], "upstate": [ "JJ", "RB" ], "tulip-shaped": [ "JJ" ], "state-controlled": [ "JJ" ], "acknowleged": [ "VBD" ], "Bahrenburg": [ "NNP" ], "spaceship": [ "NN" ], "painful": [ "JJ" ], "twinjets": [ "NNS" ], "HERO": [ "NN" ], "Levin": [ "NNP" ], "trestle": [ "NN" ], "midlevel": [ "JJ" ], "printmaking": [ "NN" ], "applauds": [ "VBZ" ], "BRANDS": [ "NNPS" ], "Meanwile": [ "RB" ], "marquees": [ "NNS" ], "delimits": [ "VBZ" ], "steel": [ "NN", "JJ" ], "buttocks": [ "NNS" ], "boot-wearer": [ "JJ" ], "steed": [ "NN" ], "manpower": [ "NN" ], "haystacks": [ "NNS" ], "restaffed": [ "VBD" ], "malpractice": [ "NN", "VB" ], "punctured": [ "JJ", "VBN" ], "Paschall": [ "NNP" ], "Re-enactments": [ "NNS" ], "steep": [ "JJ", "NN" ], "torrent": [ "NN" ], "steer": [ "VB", "NN", "VBP" ], "Jolivet": [ "NNP" ], "seaborne": [ "JJ" ], "Results": [ "NNS", "NNP" ], "PLODDERS": [ "NNS" ], "chromium-plated": [ "JJ" ], "Mercedes-Benz": [ "NNP" ], "devotions": [ "NNS" ], "Zorn": [ "NNP" ], "Haferkamp": [ "NNP" ], "blockbuster": [ "NN", "JJ" ], "Balag": [ "NNP" ], "clearly": [ "RB" ], "Remember": [ "VB" ], "Claws": [ "NNS" ], "wryness": [ "NN" ], "documents": [ "NNS", "VBZ" ], "soak": [ "VB" ], "bacterium": [ "NN" ], "bassoon": [ "NN" ], "vented": [ "VBD", "VBN" ], "probly": [ "RB" ], "mechanism": [ "NN" ], "decomposing": [ "VBG" ], "bonanza": [ "NN" ], "mechanist": [ "NN" ], "soap": [ "NN" ], "Dare-Base": [ "NNP" ], "regard": [ "NN", "VB", "VBP" ], "snuff": [ "VB", "NN" ], "BEWARE": [ "VB" ], "safety-first": [ "JJ" ], "sophomoric": [ "JJ" ], "psychiatry": [ "NN" ], "Hurricanes": [ "NNPS" ], "HOLD": [ "VB" ], "medal": [ "NN" ], "Patents": [ "NNP" ], "RCSB": [ "NNP" ], "thirdquarter": [ "JJ", "NN" ], "Expedition": [ "NNP" ], "reignite": [ "VB", "NN" ], "endrocrine": [ "JJ" ], "Pancho": [ "NNP" ], "disallowance": [ "NN" ], "montgolfiere": [ "FW" ], "Marquess": [ "NNP" ], "Sophias": [ "NNP" ], "leftfield": [ "NN" ], "EXE": [ "NNP" ], "Evidences": [ "NNS" ], "dissociate": [ "VB" ], "understate": [ "VBP" ], "EXP": [ "NNP" ], "Wolzein": [ "NNP" ], "Removal": [ "NNP", "NN" ], "asylum": [ "NN" ], "ELP": [ "NNP" ], "jostling": [ "VBG" ], "illumine": [ "VB" ], "planter": [ "NN" ], "championed": [ "VBN", "VBD" ], "ex-chairman": [ "NN" ], "emancipate": [ "VB" ], "Serif": [ "NNP" ], "planted": [ "VBN", "JJ", "VBD" ], "poohbah": [ "NN" ], "matronly": [ "JJ" ], "Bergsten": [ "NNP" ], "maggots": [ "NNS" ], "bourbon": [ "NN" ], "Saltiel": [ "NNP" ], "maggoty": [ "JJ" ], "Keswick": [ "NNP" ], "pogroms": [ "NNS" ], "Sumita": [ "NNP" ], "Owners": [ "NNS", "NNP" ], "humanness": [ "NN" ], "internationals": [ "NNS" ], "intellectually": [ "RB" ], "Ekman": [ "NNP" ], "flower-scented": [ "JJ" ], "fronds": [ "NNS" ], "Fashions": [ "NNPS" ], "River": [ "NNP", "NN" ], "multiyear": [ "JJ" ], "quarter-mile": [ "NN", "JJ" ], "dishearten": [ "VB" ], "Lydall": [ "NNP" ], "spatula": [ "NN" ], "Brahmin": [ "NNP" ], "luminosity": [ "NN" ], "nise": [ "JJ" ], "disapprobation": [ "NN" ], "streamlined": [ "JJ", "VBD", "VBN" ], "DeGol": [ "NNP" ], "Anniston": [ "NNP" ], "incurably": [ "RB" ], "Wilshire": [ "NNP" ], "Histrionix": [ "NNP" ], "creationist": [ "JJ" ], "catastrophic": [ "JJ" ], "heartburn": [ "NN" ], "edition": [ "NN" ], "Pre-attack": [ "JJ" ], "corrals": [ "NNS" ], "subcommittee": [ "NN" ], "bidders": [ "NNS" ], "incurable": [ "JJ" ], "Nonunion": [ "NNP" ], "creationism": [ "NN" ], "yodel": [ "NN" ], "bossman": [ "NN" ], "Hannes": [ "NNP" ], "partisan": [ "JJ", "NN" ], "Euro-Belge": [ "NNP" ], "extraneousness": [ "NN" ], "Two-part": [ "JJ" ], "injustice": [ "NN" ], "Jean-Pierre": [ "NNP" ], "Jones-Irwin": [ "NNP" ], "reauthorization": [ "NN" ], "classless": [ "JJ" ], "faceless": [ "JJ" ], "Forum": [ "NNP" ], "WFRR": [ "NNP" ], "Amdura": [ "NNP" ], "bright-eyed": [ "JJ" ], "Admistration": [ "NNP" ], "port-of-call": [ "NN" ], "candybar": [ "NN" ], "drum": [ "VB", "NN" ], "Ter-Arutunian": [ "NNP" ], "unflinching": [ "JJ" ], "sevenday": [ "JJ" ], "Ethiopian": [ "JJ" ], "drug": [ "NN" ], "Serum": [ "NN" ], "sugared": [ "JJ", "VBN" ], "Anlage": [ "NNP" ], "irruptions": [ "NNS" ], "Vaughan": [ "NNP" ], "clamshell": [ "NN" ], "cm": [ "NN" ], "cc": [ "NN" ], "Guinea": [ "NNP" ], "ca": [ "MD" ], "skylights": [ "NNS" ], "laity": [ "NN" ], "missile-guidance": [ "JJ" ], "nonstops": [ "NNS" ], "pounced": [ "VBD" ], "rapidement": [ "FW" ], "allocated": [ "VBN", "VBD" ], "paperboy": [ "NN" ], "cu": [ "NN" ], "equips": [ "VBZ" ], "Get": [ "VB", "NNP", "VBP" ], "trajectory": [ "NN" ], "dazzling": [ "JJ", "VBG" ], "anhydrously": [ "RB" ], "Chennault": [ "NNP" ], "Gee": [ "UH", "NNP" ], "ex-member": [ "NN" ], "QUANTUM": [ "NNP" ], "hottest": [ "JJS" ], "I.D.": [ "NN" ], "break-even": [ "JJ", "NN", "VB" ], "Marous": [ "NNP" ], "Gem": [ "NNP" ], "Gel": [ "NNP" ], "Mid-sized": [ "JJ" ], "stalled": [ "VBN", "JJ", "VBD" ], "rioting": [ "NN" ], "Enthusiastic": [ "JJ" ], "Cytogen": [ "NNP" ], "geysering": [ "VBG" ], "laser": [ "NN" ], "Continentals": [ "NNS" ], "grinning": [ "VBG", "JJ" ], "Pulling": [ "VBG" ], "Fatman": [ "NNP" ], "Hickok": [ "NNP" ], "rigged": [ "VBN", "VBD", "JJ" ], "maul": [ "VB" ], "Eros": [ "NNP" ], "rethought": [ "JJ" ], "movie-studio": [ "NN" ], "Burnsides": [ "NNPS" ], "preppie": [ "NN" ], "delaying": [ "VBG", "JJ", "NN|VBG" ], "lush": [ "JJ" ], "L.R.": [ "NNP" ], "lust": [ "NN" ], "five-cylinder": [ "JJ" ], "Crestmont": [ "NNP" ], "Rajter": [ "NNP" ], "cremation": [ "NN" ], "waspish": [ "JJ" ], "maligned": [ "VBN" ], "concealing": [ "VBG" ], "Pettee": [ "NNP" ], "highlighted": [ "VBN", "VBD" ], "Raoul": [ "NNPS", "NNP" ], "Geothermal": [ "NNP" ], "five-pound": [ "JJ" ], "glares": [ "VBZ" ], "infarction": [ "NN" ], "Wertheimer": [ "NNP" ], "inlaid": [ "VBN" ], "balm": [ "NN" ], "ball": [ "NN" ], "balk": [ "VB", "VBP" ], "Canadian-fisheries": [ "NNS" ], "Jase": [ "NNP" ], "forecasts": [ "NNS", "VBZ" ], "heaped": [ "VBN", "VBD" ], "robotic": [ "JJ" ], "Hires": [ "NNP" ], "overalls": [ "NNS" ], "whyfores": [ "NNS" ], "Julio": [ "NNP" ], "Oklahoman": [ "NNP" ], "Julie": [ "NNP" ], "Julia": [ "NNP" ], "Sontag": [ "NNP" ], "clambering": [ "VBG" ], "Thutmose": [ "NNP" ], "wigmaker": [ "NN" ], "Ito-Yokado": [ "NNP" ], "Sahour": [ "NNP" ], "snake": [ "NN" ], "gully": [ "NN" ], "Marcia": [ "NNP" ], "moments": [ "NNS" ], "glut": [ "NN", "VB" ], "hand-blower": [ "NN" ], "LABOR": [ "NNP", "NN" ], "Emphasis": [ "NN" ], "glum": [ "JJ", "NN" ], "Drobny": [ "NNP" ], "glue": [ "NN" ], "Flynn": [ "NNP" ], "Bahrain": [ "NNP", "NN" ], "Ankara": [ "NNP" ], "Unbelievable": [ "JJ" ], "Works": [ "NNP", "NNS", "NNPS" ], "Ketchikan": [ "NNP" ], "politique": [ "FW" ], "fifth-straight": [ "JJ" ], "coattails": [ "NNS" ], "Levesque": [ "NNP" ], "Osterreichische": [ "NNP" ], "Zoeller": [ "NNP" ], "unrecoverable": [ "JJ" ], "fluctuating": [ "VBG" ], "Unfortunately": [ "RB" ], "taunt": [ "NN", "VB" ], "famously": [ "RB" ], "Slatkin": [ "NNP" ], "Kaddish": [ "NNP" ], "SGA": [ "NNP" ], "car-rental": [ "JJ", "NN" ], "bayonets": [ "NNS" ], "Skating": [ "NNP" ], "SGB": [ "NNP" ], "crisp": [ "JJ", "NN" ], "onion": [ "NN" ], "Gensichen": [ "NNP" ], "bigotry": [ "NN" ], "scenic": [ "JJ" ], "Wakayama": [ "NNP" ], "Quit": [ "VB" ], "indications": [ "NNS" ], "Kodama": [ "NNP" ], "guaranty": [ "NN" ], "U.N.F.P.": [ "NNP" ], "foreseeable": [ "JJ" ], "footage": [ "NN" ], "Withrow": [ "NNP" ], "ballot": [ "NN" ], "hashers": [ "NNS" ], "Tenderfoot": [ "NN" ], "Procaine": [ "NN" ], "Barron": [ "NNP" ], "hoarder": [ "NN" ], "Gardner-Denver": [ "NNP" ], "leveraged": [ "JJ", "VBN", "NN" ], "snappy": [ "JJ" ], "half-crocked": [ "JJ" ], "high-definition": [ "JJ", "NN" ], "forgiven": [ "VBN" ], "Barrow": [ "NNP" ], "Eden": [ "NNP" ], "Markrud": [ "NNP" ], "haulage": [ "JJ", "NN" ], "shortage": [ "NN" ], "ornithologist": [ "NN" ], "Brizola": [ "NNP" ], "senior-management": [ "NN" ], "fetal-vulnerability": [ "JJ" ], "Eder": [ "NNP" ], "Toward": [ "IN", "NNP" ], "mosquito-plagued": [ "JJ" ], "gained": [ "VBD", "VBN", "VB" ], "embolisms": [ "NNS" ], "ingest": [ "VBP", "VB" ], "idolize": [ "VBP" ], "Talon": [ "NNP" ], "seeds": [ "NNS" ], "gainer": [ "NN" ], "kneebreeches": [ "NNS" ], "seedy": [ "JJ" ], "strode": [ "VBD" ], "Grune": [ "NNP" ], "German-born": [ "JJ" ], "Consuming": [ "VBG" ], "clotheshorse": [ "NN" ], "unbent": [ "JJ" ], "libertarians": [ "NNS" ], "jingles": [ "NNS" ], "uninterruptedly": [ "RB" ], "Charters": [ "NNP" ], "abreaction": [ "NN" ], "Coen": [ "NNP" ], "Sensibility": [ "NN" ], "jingled": [ "VBD" ], "recapitalizations": [ "NNS" ], "sander": [ "NN" ], "Serra": [ "NNP" ], "Young-Jin": [ "NNP" ], "Sickness": [ "NN" ], "off-speed": [ "JJ" ], "housing": [ "NN", "VBG", "JJ" ], "Dictates": [ "NNS" ], "stamina": [ "NN" ], "Expenditure": [ "NNP" ], "Republicanism": [ "NNP" ], "unresponsive": [ "JJ" ], "Deor": [ "NNP" ], "daughter-in-law": [ "NN" ], "hoosegows": [ "NNS" ], "storehouse": [ "NN" ], "beeped": [ "VBN" ], "delivery": [ "NN" ], "Suppose": [ "VB" ], "delivers": [ "VBZ" ], "Balance": [ "NNP" ], "illustrative": [ "JJ" ], "beeper": [ "NN", "JJR" ], "straightaway": [ "NN", "RB" ], "Jessy": [ "NNP" ], "Bicycle": [ "NNP", "NN" ], "official": [ "NN", "JJ" ], "reinforcement": [ "NN" ], "harvested": [ "VBN" ], "gold-phone": [ "NN" ], "unguaranteed": [ "JJ" ], "Vagabond": [ "NNP" ], "Jesse": [ "NNP" ], "Lusser": [ "NNP" ], "televison-record": [ "NN" ], "BOSTON": [ "NNP" ], "Riga": [ "NNP" ], "Leixlip": [ "NNP" ], "denote": [ "VB", "VBP" ], "semi-arid": [ "JJ" ], "Neisse-Oder": [ "NNP" ], "shepherded": [ "VBD" ], "Thoma": [ "NNP" ], "Benets": [ "NNPS" ], "battery-powered": [ "JJ" ], "anaerobic": [ "JJ" ], "Imam": [ "NNP" ], "Imai": [ "NNP" ], "variety": [ "NN" ], "Griswold": [ "NNP" ], "saunas": [ "NNS" ], "fast-rising": [ "JJ" ], "deficit-racked": [ "JJ" ], "intermission": [ "NN" ], "Anti-Jones": [ "JJ" ], "WANES": [ "VBZ" ], "penciled": [ "VBN" ], "satellite-dish": [ "NN" ], "FELLED": [ "VBD" ], "videocasette": [ "NN" ], "footprints": [ "NNS" ], "foreleg": [ "NN" ], "unswerving": [ "JJ" ], "Dulude": [ "NNP" ], "arbiter": [ "NN" ], "McFeely": [ "RB" ], "Fifty-two": [ "JJ" ], "Arvin": [ "NNP" ], "pacify": [ "VB" ], "Wafaa": [ "NNP" ], "Appleseeds": [ "NNPS" ], "Page": [ "NNP", "NN" ], "matrix": [ "NN" ], "time-on-the-job": [ "JJ" ], "buyin": [ "NN" ], "limousines": [ "NNS" ], "Fujimoto": [ "NNP" ], "transports": [ "NNS", "VBZ" ], "undercutting": [ "VBG" ], "orders-related": [ "JJ" ], "coquette": [ "NN" ], "Soaring": [ "VBG" ], "pension": [ "NN" ], "Trotting": [ "VBG" ], "buoy": [ "VB" ], "knockers": [ "NNS" ], "Sadly": [ "RB" ], "consolidated": [ "JJ", "VBD", "VBN" ], "C-90": [ "NN" ], "Rous": [ "NNP" ], "Boies": [ "NNP" ], "Antler": [ "NNP" ], "oldest": [ "JJS" ], "Sicurella": [ "NNP" ], "consolidates": [ "VBZ" ], "psychopathic": [ "JJ" ], "underclassman": [ "NN" ], "metropolitian": [ "JJ" ], "sputtered": [ "VBD" ], "Schmolka": [ "NNP" ], "forte-pianos": [ "NNS" ], "physiological": [ "JJ" ], "knife-edge": [ "NN" ], "Architects": [ "NNS", "NNPS" ], "Rangel": [ "NNP" ], "Ranger": [ "NNP" ], "Sasebo": [ "NNP" ], "Schonberg": [ "NNP" ], "hell-for-leather": [ "RB" ], "slowest": [ "JJS" ], "Pololu": [ "NNP" ], "overpaying": [ "VBG" ], "litle": [ "JJ", "NN" ], "League": [ "NNP", "NN" ], "Breed": [ "NNP", "NN" ], "higher-multiple": [ "JJ" ], "fireplaces": [ "NNS" ], "geology": [ "NN" ], "blanket": [ "NN", "VBP", "NN|JJ", "JJ", "VB" ], "distort": [ "VB", "VBP" ], "sellers": [ "NNS" ], "Telectronics": [ "NNP" ], "Adlai": [ "NNP" ], "disobedient": [ "JJ" ], "Brindisi": [ "NNP" ], "XRAL": [ "NNP" ], "Canada-North": [ "NNP" ], "uninviting": [ "JJ" ], "Surrounding": [ "VBG" ], "ACLU": [ "NNP" ], "antagonize": [ "VB", "VBP" ], "Amudarya": [ "NNP" ], "auto-insurance": [ "NN" ], "Shevchenko": [ "NNP" ], "League-sponsored": [ "JJ" ], "Ambiguan": [ "JJ" ], "Lubrizol": [ "NNP" ], "chaffing": [ "VBG" ], "belaboring": [ "VBG", "NN" ], "Kiryat": [ "NNP" ], "dwindles": [ "VBZ" ], "Idealist": [ "NN" ], "Bauman": [ "NNP" ], "Avoidance": [ "NNP" ], "established": [ "VBN", "JJ", "VBD" ], "disk": [ "NN" ], "LSC": [ "NNP" ], "DeMyer": [ "NNP" ], "Dresdner-ABD": [ "NNP" ], "+": [ "SYM", "NN" ], "Sherman": [ "NNP" ], "walkout": [ "NN" ], "LSI": [ "NNP" ], "sideman": [ "NN" ], "LSU": [ "NNP" ], "reconstruction": [ "NN" ], "drug-laden": [ "JJ" ], "SECURITY": [ "NN" ], "LSX": [ "NNP" ], "textures": [ "NNS" ], "Yeller": [ "JJ" ], "Stiles": [ "NNP" ], "Tiepolo": [ "NNP" ], "Yellen": [ "NNP" ], "textured": [ "JJ" ], "noncompliant": [ "JJ" ], "Dimitris": [ "NNP" ], "celebration": [ "NN" ], "F.S.B.": [ "NNP" ], "Vanities": [ "NNS", "NNPS", "NNP" ], "Widsith": [ "NNP" ], "Martinair": [ "NNP" ], "rigorously": [ "RB" ], "Tuesday": [ "NNP" ], "alter-ego": [ "NN" ], "Brozman": [ "NNP" ], "bunked": [ "VBD" ], "smoke": [ "NN", "VB", "VBP" ], "bunker": [ "NN" ], "Negotiations": [ "NNS" ], "secure": [ "VB", "JJ", "VBP" ], "Cristal": [ "NNP" ], "windowpane": [ "NN" ], "phase-two": [ "JJ" ], "modulated": [ "VBN" ], "Interleukin-3": [ "NN" ], "wrack": [ "NN", "VBP" ], "BEVERLY": [ "NNP" ], "linearly": [ "RB" ], "experimentation": [ "NN" ], "shams": [ "NNS" ], "Nezhari": [ "NNP" ], "castor-oil": [ "NN" ], "Lock": [ "NNP" ], "knoll": [ "NN" ], "Corestates": [ "NNP" ], "Ssmc": [ "NN", "NNP" ], "fragmentary": [ "JJ", "RB" ], "two-pronged": [ "JJ" ], "Dells": [ "NNP" ], "Plunkett": [ "NNP" ], "already-strained": [ "JJ" ], "sunbleached": [ "VBN" ], "stochastic": [ "JJ" ], "emeritus": [ "NN", "JJ" ], "tariff": [ "NN" ], "authentically": [ "RB" ], "Della": [ "NNP" ], "soils": [ "NNS" ], "Porters": [ "NNPS" ], "unfailing": [ "JJ" ], "Courtier": [ "NNP", "NN" ], "grovel": [ "VB" ], "Habib": [ "NNP" ], "groves": [ "NNS" ], "tinder": [ "NN" ], "gallons": [ "NNS" ], "Astronaut": [ "NN" ], "Glance": [ "VB" ], "could": [ "MD" ], "piers": [ "NNS" ], "ascetic": [ "NN" ], "chemical-arms-control": [ "JJ" ], "Carnochan": [ "NNP" ], "whole-bank": [ "JJ" ], "flunking": [ "VBG" ], "unreadable": [ "JJ" ], "Freie": [ "NNP" ], "Nizer": [ "NNP" ], "Rowan": [ "NNP" ], "scientist-consultant": [ "NN" ], "unsatisfying": [ "JJ" ], "indifferent": [ "JJ" ], "altitudes": [ "NNS" ], "MOHAWK": [ "NNP" ], "envenomed": [ "VBN" ], "Iran-Iraq": [ "NNP" ], "IPTAY": [ "NNP" ], "snobbishly": [ "RB" ], "morbid": [ "JJ" ], "minuet": [ "NN" ], "objets": [ "FW" ], "if": [ "IN" ], "memorization": [ "NN" ], "tax-deductible": [ "JJ" ], "doable": [ "JJ" ], "Extruded": [ "VBN" ], "Gottshall": [ "NNP" ], "theatricality": [ "NN" ], "suing": [ "VBG" ], "unmiked": [ "VBN" ], "bottler": [ "NN" ], "chromatogram": [ "NN" ], "LeSabre": [ "NNP" ], "underbracing": [ "NN" ], "repeats": [ "VBZ", "NNS" ], "Trusk": [ "NNP" ], "homeowners": [ "NNS" ], "fund-objective": [ "JJ" ], "nascent": [ "JJ" ], "corvettes": [ "NNS" ], "Trust": [ "NNP", "NN", "VB", "VBP" ], "claimant": [ "NN" ], "ridings": [ "NNS" ], "Fitzwilliam": [ "NNP" ], "tricked": [ "VBN" ], "Switchgear": [ "NNP" ], "Innes": [ "NNP" ], "Inner": [ "NNP", "JJ" ], "New-home": [ "JJ" ], "priciest": [ "JJS" ], "mayor": [ "NN" ], "Catholics": [ "NNPS", "NNP", "NNS" ], "marketmaking": [ "NN" ], "Kalyani": [ "NNP" ], "waterworks": [ "NN", "NN|NNS" ], "bronchiole": [ "NN" ], "bunching": [ "VBG" ], "count": [ "NN", "VB", "VBP" ], "beakers": [ "NNS" ], "fragment": [ "NN" ], "most-recommended-issues": [ "JJ" ], "promulgators": [ "NNS" ], "soothing": [ "VBG", "JJ" ], "stanza-form": [ "NN" ], "Labatt": [ "NNP" ], "loose-jowled": [ "JJ" ], "classified": [ "VBN", "VBD", "JJ" ], "backgrounds": [ "NNS" ], "naysay": [ "VB" ], "Softer": [ "JJR" ], "hexameter": [ "NN" ], "hard-won": [ "JJ" ], "MARGIN": [ "NN" ], "excavations": [ "NNS" ], "Newtonville": [ "NNP" ], "Kinnevik": [ "NNP" ], "councils": [ "NNS" ], "autocollimator": [ "NN" ], "pin-point": [ "JJ" ], "stronger-than-expected": [ "JJ" ], "Cyclone": [ "NNP" ], "Nellcor": [ "NNP" ], "radio-location": [ "NN" ], "Psyche": [ "NNP" ], "Lampe": [ "NNP" ], "Wary": [ "JJ" ], "Wars": [ "NNPS", "NNP", "NNS" ], "vessels": [ "NNS" ], "strangers": [ "NNS" ], "forte": [ "NN" ], "Warm": [ "JJ" ], "understaffs": [ "VBZ" ], "Ward": [ "NNP" ], "Chatham": [ "NNP" ], "forth": [ "RB", "RP" ], "Convocations": [ "NNS" ], "PILGRIM": [ "NNP" ], "appointments": [ "NNS" ], "putty": [ "NN" ], "Palaces": [ "NNPS" ], "Scare": [ "NNP", "NN" ], "monoliths": [ "NNS" ], "Cambridge": [ "NNP", "NN" ], "Eastern": [ "NNP", "JJ" ], "Gellert": [ "NNP" ], "construing": [ "VBG" ], "ordering": [ "VBG", "NN" ], "four-bagger": [ "NN" ], "waterfall": [ "NN" ], "unenticing": [ "JJ" ], "low-paying": [ "JJ" ], "EuroTV": [ "NNP" ], "Rohm": [ "NNP" ], "truthfulness": [ "NN" ], "COAHR": [ "NNP" ], "E-71": [ "NNP" ], "Nationalized": [ "VBN" ], "beaching": [ "VBG" ], "toconsolidated": [ "VBN" ], "Cell": [ "NNP", "NN" ], "Stalinist": [ "JJ", "NN", "NNP" ], "four-day": [ "JJ" ], "Squeezing": [ "VBG" ], "blossomed": [ "VBD", "VBN" ], "Doerner": [ "NNP" ], "drones": [ "NNS" ], "Harveys": [ "NNPS" ], "ficials": [ "NNS" ], "Cela": [ "NNP" ], "Rohs": [ "NNP" ], "Rohr": [ "NNP" ], "Magruder": [ "NNP" ], "gooseberry": [ "NN" ], "hearse": [ "NN" ], "protracted": [ "JJ", "VBN" ], "German-made": [ "JJ" ], "Shreveport": [ "NNP" ], "flagpole": [ "NN" ], "Isolde": [ "FW", "NNP" ], "Koshland": [ "NNP" ], "Census": [ "NNP", "NN" ], "vetoes": [ "NNS", "VBZ" ], "ludicrously": [ "RB" ], "early-season": [ "JJ" ], "plant-expansion": [ "JJ" ], "Guffey": [ "NNP" ], "totted": [ "VBN" ], "Forsan": [ "FW" ], "Necklace": [ "NNP" ], "Brookmeyer": [ "NNP" ], "ever-existent": [ "JJ" ], "Communism": [ "NNP", "NN" ], "extracurricular": [ "JJ" ], "one-pound-or-so": [ "JJ" ], "kung-fu": [ "NN" ], "tavern": [ "NN" ], "admonitions": [ "NNS" ], "Kerensky": [ "NNP" ], "Dompierre": [ "NNP" ], "devious": [ "JJ" ], "Purina": [ "NNP" ], "encumbered": [ "VBN" ], "bronchitis": [ "NN" ], "Romero": [ "NNP" ], "Tax-loss": [ "NN" ], "Mironenko": [ "NNP" ], "DIAPER": [ "NN" ], "House-Senate": [ "NNP", "JJ" ], "stomach": [ "NN", "VB" ], "Correct": [ "JJ" ], "Cumhuriyet": [ "NNP" ], "alors": [ "FW" ], "stomack": [ "NN" ], "mean-spirited": [ "JJ" ], "MUMBO": [ "NN" ], "Nymex": [ "NNP" ], "Tudor-style": [ "JJ" ], "magnum": [ "NN" ], "Mahathir": [ "NNP" ], "Stolen": [ "NNP" ], "Dniepr": [ "NNP" ], "prohibitive": [ "JJ" ], "Naderite": [ "NNP|JJ" ], "devoutly": [ "RB" ], "Olivier": [ "NNP" ], "cumulatively": [ "RB" ], "Side": [ "NNP", "NN" ], "manifested": [ "VBD", "VBN" ], "Excise-tax": [ "JJ" ], "leavening": [ "VBG" ], "antidepressant": [ "NN" ], "deacon": [ "NN" ], "unsophisticated": [ "JJ" ], "Jerrico": [ "NNP" ], "notion": [ "NN" ], "fussy": [ "JJ" ], "dredged": [ "VBD" ], "Amatayakul": [ "NNP" ], "Kiep": [ "NNP" ], "Kiev": [ "NNP" ], "Carriers": [ "NNP", "NNS", "NNPS" ], "anti-abortion": [ "JJ", "NN" ], "barbiturate": [ "NN" ], "HUNTLEY": [ "NNP" ], "Gouldings": [ "NNPS" ], "infrared": [ "JJ", "NN" ], "serenely": [ "RB" ], "IH.": [ "NNP" ], "dredges": [ "VBZ" ], "wrung": [ "VB" ], "good-size": [ "JJ" ], "bemaddening": [ "VBG" ], "Kiel": [ "NNP" ], "latent": [ "JJ", "NN" ], "Brand": [ "NN", "NNP" ], "Republicans": [ "NNPS", "NNP", "NNS" ], "Bldg": [ "NNP" ], "frivolities": [ "NNS" ], "SCHLOSS": [ "NNP" ], "custom-fit": [ "VB" ], "summarizing": [ "VBG" ], "accompanists": [ "NNS" ], "Brant": [ "NNP" ], "fatboy": [ "NN" ], "financial-related": [ "JJ" ], "Plumrose": [ "NNP" ], "predecessor": [ "NN" ], "Harms": [ "NNP" ], "center-fire": [ "JJ" ], "auditor-general": [ "NN" ], "frowning": [ "VBG" ], "Soviet": [ "JJ", "NNP" ], "Nikonov": [ "NNP" ], "chastened": [ "VBD", "VBN" ], "Armstrong": [ "NNP" ], "blunderings": [ "NNS" ], "Fresnel": [ "NNP" ], "oil-industry": [ "NN" ], "Denman": [ "NNP" ], "syllabicity": [ "NN" ], "Upson": [ "NNP" ], "Weasel": [ "NNP" ], "endosperm": [ "NN" ], "Overextension": [ "NN" ], "Pull": [ "VB" ], "Pepperidge": [ "NNP" ], "Bailkin": [ "NNP" ], "now-misplaced": [ "JJ" ], "sewage-polluted": [ "JJ" ], "Homecoming": [ "NN", "NNP" ], "SEEKS": [ "VBZ" ], "bake-offs": [ "NNS" ], "ES250": [ "NNP" ], "Quick-Wate": [ "NNP" ], "snoozing": [ "VBG", "NN" ], "Presbyterianism": [ "NN" ], "symmetric": [ "JJ" ], "Asensio": [ "NNP" ], "chattels": [ "NNS" ], "multiple-paged": [ "JJ" ], "Cralin": [ "NNP" ], "paramagnetic": [ "JJ" ], "slugs": [ "NNS" ], "Ten-year": [ "JJ" ], "Preoccupied": [ "VBN", "JJ" ], "pre-conscious": [ "JJ" ], "Argus": [ "NNP" ], "city-bred": [ "JJ" ], "Westmoreland": [ "NNP" ], "CENTERIOR": [ "NNP" ], "Metromedia-ITT": [ "NNP" ], "Genie": [ "NNP" ], "data-handling": [ "NN" ], "saloonkeeper": [ "NN" ], "VICTOR": [ "NNP" ], "Pickford": [ "NNP" ], "common-carrier": [ "NN" ], "Focus": [ "NNP" ], "workroom": [ "NN" ], "twos": [ "NNS" ], "Leads": [ "VBZ" ], "axle-breaking": [ "JJ" ], "capital-draining": [ "VBG" ], "gobbledygook": [ "NN" ], "Garman": [ "NNP" ], "requests": [ "NNS", "VBZ" ], "negotiation": [ "NN" ], "eyesight": [ "NN" ], "non-core": [ "JJ" ], "Electricity": [ "NNP", "NN" ], "KMW": [ "NNP" ], "Galicians": [ "NNPS" ], "money-strapped": [ "JJ" ], "Groupe": [ "NNP" ], "broadening": [ "VBG", "NN" ], "FREIGHTWAYS": [ "NNP", "NNPS" ], "moon-splashed": [ "JJ" ], "chimneys": [ "NNS" ], "Hillary": [ "NNP" ], "Boxer": [ "NNP" ], "Rust": [ "NNP" ], "Groups": [ "NNS", "NNPS", "NNP" ], "post-retirement": [ "JJ" ], "Igdaloff": [ "NNP" ], "Bootle": [ "NNP" ], "cutouts": [ "NNS" ], "families": [ "NNS" ], "autumns": [ "NNS" ], "beastly": [ "JJ" ], "Citizens": [ "NNPS", "NNP", "NNS" ], "jeopardized": [ "VBN" ], "carbamazepine": [ "NN" ], "coherent": [ "JJ" ], "Montreux": [ "NNP" ], "Superstitions": [ "NNPS" ], "jeopardizes": [ "VBZ" ], "Bozeman": [ "NNP" ], "nose-dive": [ "NN" ], "Cynical": [ "JJ" ], "soundproof": [ "JJ" ], "Chelmno": [ "NNP" ], "Altos": [ "NNP" ], "pre-colonial": [ "NN" ], "depictions": [ "NNS" ], "Accused": [ "NNP", "JJ" ], "abrupt": [ "JJ" ], "Dried": [ "VBN", "JJ" ], "coffin": [ "NN" ], "mealtime": [ "NN" ], "double-digit": [ "JJ", "NN" ], "smorgasbord": [ "NN" ], "Thence": [ "RB" ], "discourses": [ "NNS" ], "Crises": [ "NNS" ], "dumped": [ "VBD", "VBN" ], "glutamic": [ "JJ" ], "plastic-coated": [ "JJ" ], "British-built": [ "JJ" ], "Jelke": [ "NNP" ], "comparative": [ "JJ", "NN" ], "Falling": [ "VBG", "NNP" ], "Rococo": [ "JJ" ], "confirmed": [ "VBD", "VBN", "JJ" ], "One-Horse": [ "JJ" ], "patent": [ "NN", "JJ" ], "punctuation": [ "NN" ], "skyjacked": [ "VBN" ], "unharmed": [ "JJ" ], "Ingersoll": [ "NNP" ], "raid": [ "NN", "VB" ], "Crisman": [ "NNP" ], "high-frequency": [ "JJ" ], "blames": [ "VBZ" ], "Hocke": [ "NNP" ], "closings": [ "NNS" ], "rain": [ "NN", "VB" ], "Basel-based": [ "JJ" ], "Berol": [ "NNP" ], "Milquetoasts": [ "NNS" ], "Y": [ "NNP", "PRP", "FW", "JJ", "NN" ], "faiths": [ "NNS" ], "blamed": [ "VBD", "VBN" ], "literatures": [ "NNS" ], "Diplomats": [ "NNS" ], "Kegham": [ "NNP" ], "scenario": [ "NN" ], "counterman": [ "NN" ], "Electrification": [ "NNP" ], "orgasms": [ "NNS" ], "bodes": [ "VBZ" ], "Proper": [ "JJ" ], "camps": [ "NNS" ], "deficit-debt": [ "NN" ], "kinship": [ "NN" ], "privately-owned": [ "JJ" ], "Sheldon": [ "NNP" ], "Able": [ "NNP" ], "repose": [ "NN" ], "Bonn-sponsored": [ "NNP" ], "Surprise": [ "NN", "NNP" ], "convivial": [ "JJ" ], "adding": [ "VBG", "NN" ], "Lazy": [ "NNP" ], "starboard": [ "VB" ], "order-taker": [ "NN" ], "dished": [ "VBD" ], "Leeches": [ "NNS" ], "Offenbach": [ "NNP" ], "surtax": [ "NN" ], "rescission": [ "NN" ], "Slovenia": [ "NNP" ], "advisories": [ "NNS" ], "transformed": [ "VBN", "JJ", "VBD" ], "VALLEY": [ "NNP" ], "plasma": [ "NN" ], "Tampa": [ "NNP" ], "Filipino": [ "NNP", "JJ", "NN" ], "basses": [ "NNS" ], "Aarvik": [ "NNP" ], "Combis": [ "NNPS" ], "Envigado": [ "NNP" ], "Priem": [ "NNP" ], "printing-press": [ "NN" ], "arak": [ "FW" ], "penny-stockbroker": [ "NN" ], "disadvantage": [ "NN" ], "multiplexing": [ "NN" ], "insurgent": [ "JJ" ], "Guadalupe": [ "NNP" ], "immoralities": [ "NNS" ], "midcapitalization": [ "NN" ], "Zambian": [ "JJ" ], "lapsed": [ "JJ", "VBD", "VBN" ], "tight-turn": [ "JJ" ], "Trading": [ "NN", "NNP", "VBG" ], "Necci": [ "NNP" ], "lapses": [ "NNS", "VBZ" ], "Yao": [ "NNP" ], "starvation": [ "NN" ], "gas-guzzling": [ "JJ" ], "sends": [ "VBZ" ], "Divided": [ "VBN" ], "Tom": [ "NNP" ], "antimonide": [ "NN" ], "webs": [ "NNS" ], "Loewenstern": [ "NNP" ], "Planeten": [ "NNP" ], "Seasoned": [ "JJ" ], "separateness": [ "NN" ], "Mesaba": [ "NNP" ], "Lea": [ "NNP" ], "Lipman": [ "NNP" ], "Led": [ "VBN", "VBD" ], "Lee": [ "NNP" ], "Leg": [ "NNP", "NN" ], "phenomenal": [ "JJ" ], "Lek": [ "NNP" ], "Kots": [ "NNP" ], "Len": [ "NNP" ], "Leo": [ "NNP" ], "Lep": [ "NNP" ], "Les": [ "NNP", "FW" ], "Let": [ "VB", "NNP", "VBD" ], "Leu": [ "NNP" ], "Lev": [ "NNP" ], "Lew": [ "NNP" ], "Lex": [ "NNP" ], "lagers": [ "NNS" ], "WNET": [ "NNP" ], "past-due": [ "JJ" ], "scribbles": [ "VBZ" ], "Hedman": [ "NNP" ], "half-city": [ "NN" ], "Caucusing": [ "VBG" ], "unswaggering": [ "JJ" ], "patienthood": [ "NN" ], "graduates": [ "NNS", "VBZ" ], "blander": [ "JJR" ], "Swine": [ "JJ" ], "Swing": [ "NNP" ], "scarves": [ "NN" ], "Swink": [ "NNP" ], "Deryck": [ "NNP" ], "dines": [ "VBZ" ], "diner": [ "NN" ], "impenetrable": [ "JJ" ], "theirs": [ "PRP", "JJ" ], "Ceramic": [ "JJ" ], "Mortage": [ "NNP" ], "bone-deep": [ "JJ" ], "dined": [ "VBD", "VBN" ], "cherish": [ "VB", "VBP" ], "Pupil": [ "NN" ], "Ciciulla": [ "NNP" ], "pegged-down": [ "JJ" ], "mantle": [ "NN" ], "Factory-to-You": [ "NNP" ], "Make": [ "VB", "VBP", "NN", "NNP" ], "delighted": [ "VBN", "JJ", "VBD" ], "Poison": [ "NN" ], "balances": [ "NNS", "VBZ" ], "Weinberger": [ "NNP" ], "balanced": [ "JJ", "VBD", "VBN" ], "lewd": [ "JJ" ], "malignancies": [ "NNS" ], "Sirs": [ "NNPS", "NNS" ], "Ketchum": [ "NNP" ], "fuchsia": [ "NN" ], "liquidated": [ "VBN", "VBD" ], "Solzhenitsyn": [ "NNP" ], "unstressed": [ "JJ" ], "general-election": [ "NN", "JJ" ], "crime-infested": [ "JJ" ], "book-selection": [ "NN" ], "vitality": [ "NN" ], "Kurzweil": [ "NNP" ], "McLauchlin": [ "NNP" ], "encoded": [ "VBN" ], "Filigreed": [ "JJ" ], "reset": [ "NN", "VBN", "JJ", "VB" ], "responding": [ "VBG" ], "unthinkable": [ "JJ", "NN" ], "generosity": [ "NN" ], "Bacterial": [ "JJ" ], "Milman": [ "NNP" ], "Milstein": [ "NNP" ], "Chicago-Manchester": [ "NNP" ], "private-sector": [ "JJ", "NN" ], "hotter": [ "JJR" ], "electric-sewer-water": [ "JJ" ], "theorizing": [ "NN" ], "Scampini": [ "NNP" ], "Wanderjahr": [ "NN" ], "Hector": [ "NNP" ], "subsist": [ "VB" ], "cacao": [ "NN" ], "Blunt": [ "NNP", "JJ" ], "mole": [ "NN" ], "dosages": [ "NNS" ], "inculcated": [ "VBD", "VBN" ], "baguette": [ "FW" ], "Jacobean": [ "JJ" ], "weaned": [ "VBN" ], "weakened": [ "VBN", "JJ", "VBD" ], "handmade": [ "JJ" ], "foot-tall": [ "JJ" ], "liberalized": [ "VBN", "JJ", "VBD" ], "negotiators": [ "NNS", "VBZ" ], "Carrozza": [ "NN" ], "Supercritical": [ "NNP" ], "shoji": [ "FW" ], "limited-partnership": [ "NN", "JJ" ], "tripped": [ "VBD", "VBN" ], "ENCYCLOPAEDIA": [ "NNP" ], "EXECUTIVES": [ "NNPS", "NNS" ], "Dallas-Fort": [ "NNP" ], "Gifting": [ "NN" ], "Stalinists": [ "NNPS", "NNS" ], "guiltless": [ "JJ" ], "yardage": [ "NN" ], "CHEWING": [ "VBG" ], "Massive": [ "JJ", "NNP" ], "Monument": [ "NNP", "NN" ], "action-results": [ "NNS" ], "Fausto": [ "NNP" ], "auto-obscuria": [ "NN" ], "B.V.": [ "NNP" ], "pseudo-thinking": [ "NN" ], "cheated": [ "VBN", "JJ", "VBD" ], "hemophilia": [ "NN" ], "Tritium": [ "NN" ], "pollings": [ "NNS" ], "woodworm": [ "NN" ], "affidavit": [ "NN" ], "Gourman": [ "NNP" ], "cheater": [ "NN" ], "Ropart": [ "NNP" ], "Teutonic": [ "JJ" ], "Penutian": [ "NNP" ], "centuries-old": [ "JJ" ], "lineup": [ "NN" ], "Situated": [ "VBN" ], "government-sponsored": [ "JJ" ], "computer-assembly": [ "NN" ], "vampires": [ "NNS" ], "write-off": [ "NN" ], "single-family": [ "JJ", "NN" ], "global": [ "JJ" ], "Parsley": [ "NNP" ], "Dundee": [ "NNP" ], "Lintner": [ "NNP" ], "irritants": [ "NNS" ], "Haugh": [ "NNP" ], "Quite": [ "RB", "PDT", "JJ" ], "tea-drinking": [ "NN" ], "brochure": [ "NN" ], "Comparable": [ "JJ" ], "grape": [ "NN" ], "zone": [ "NN" ], "flask": [ "NN" ], "hums": [ "VBZ" ], "adenocard": [ "NN" ], "flash": [ "NN", "VBP", "JJ", "VB" ], "Jean-Luc": [ "NNP" ], "Strenuous": [ "JJ" ], "videos": [ "NNS" ], "feebly": [ "RB" ], "protective": [ "JJ", "NN" ], "Zhu": [ "NNP" ], "Effoa": [ "NNP" ], "dispelled": [ "VBN", "VBD" ], "Amfesco": [ "NNP" ], "financeer": [ "NN" ], "Kililngsworth": [ "NNP" ], "floodlighted": [ "VBN" ], "Klinger": [ "NNP" ], "Volunteers": [ "NNPS", "NNP" ], "Cincinnati-based": [ "JJ" ], "feeble": [ "JJ" ], "Rapoport": [ "NNP" ], "tooling": [ "VBG", "NN" ], "Facility": [ "NNP" ], "altering": [ "VBG" ], "Rita-Sue": [ "NNP" ], "fragile": [ "JJ" ], "puppy": [ "NN" ], "Cheerful": [ "JJ" ], "ruminants": [ "NNS" ], "Pastures": [ "NNS" ], "Transylvania": [ "NNP" ], "PCS": [ "NNP" ], "PCP": [ "NNP" ], "repetitive": [ "JJ" ], "PCM": [ "NNP" ], "Bryson": [ "NNP" ], "Rodale": [ "NNP" ], "Bapilly": [ "NNP" ], "Rider": [ "NNP" ], "decelerating": [ "VBG" ], "Fittro": [ "NNP" ], "Lowe": [ "NNP" ], "Lown": [ "NNP" ], "PCs": [ "NNS", "NNP", "NNPS" ], "scaffold": [ "NN" ], "voume": [ "NN" ], "Gebrueder": [ "NNP" ], "Basso": [ "NNP" ], "During": [ "IN", "NNP" ], "Viaje": [ "NNP" ], "supporting": [ "VBG", "JJ" ], "burn": [ "VB", "VBP", "NN" ], "explosion": [ "NN" ], "Berri": [ "NNP" ], "overseers": [ "NNS" ], "corporate-earnings": [ "NNS" ], "Berra": [ "NNP" ], "Hentoff": [ "NNP" ], "Berry": [ "NNP", "NN" ], "demonizing": [ "NN" ], "Bassi": [ "NNP" ], "rubbery": [ "JJ" ], "appears": [ "VBZ", "NNS" ], "change": [ "NN", "VBP", "VB" ], "Skandinaviska": [ "NNP" ], "pedals": [ "NNS", "VBZ" ], "MacNeil-Lehrer": [ "NNP" ], "Edzard": [ "NNP" ], "Humpty": [ "NNP" ], "Cardiovasculatory": [ "NNP" ], "Sweig": [ "NNP" ], "detonate": [ "VB", "VBP" ], "trial": [ "NN", "VB" ], "aviation-services": [ "NNS", "JJ" ], "Resnick": [ "NNP" ], "jaw": [ "NN" ], "seedcoats": [ "NNS" ], "triad": [ "NN", "JJ" ], "Fahlgren": [ "NNP" ], "agates": [ "NNS" ], "inference": [ "NN" ], "Rangoni": [ "NNP" ], "Zwei": [ "NNP" ], "lending": [ "NN", "VBG", "NN|VBG", "JJ" ], "Palasts": [ "NNPS" ], "Malays": [ "NNP" ], "Update": [ "NNP" ], "keeper": [ "NN" ], "retires": [ "VBZ" ], "suicides": [ "NNS" ], "discrediting": [ "NN", "VBG" ], "terminal": [ "NN", "JJ" ], "streetcar": [ "NN" ], "Stritch": [ "NNP" ], "Tiger": [ "NNP", "NN" ], "Caddyshack": [ "NNP" ], "live": [ "VB", "RB", "VBP", "JJ" ], "jam": [ "NN", "VB", "VBP" ], "Tammy": [ "NNP" ], "eccentrics": [ "NNS" ], "marginally": [ "RB" ], "deluxer": [ "NN" ], "re-insure": [ "VB" ], "credulity": [ "NN" ], "Waltermire": [ "NNP" ], "ABC": [ "NNP" ], "Echeandia": [ "NNP" ], "Beverage": [ "NNP" ], "Ulanys": [ "NNP", "NNPS" ], "risk-analysis": [ "NN" ], "pay-out": [ "NN" ], "misconception": [ "NN" ], "Moune": [ "NNP" ], "clumps": [ "NNS" ], "yelling": [ "VBG", "NN" ], "logarithm": [ "NN" ], "Concise": [ "JJ" ], "Jens": [ "NNP" ], "Epilepsy": [ "NNP" ], "MMS": [ "NNP" ], "theater-exhibition": [ "NN" ], "gathers": [ "VBZ" ], "MMI": [ "NNP" ], "Alessio": [ "NNP" ], "Jena": [ "NNP" ], "Corporations": [ "NNS", "NNPS", "NNP" ], "shock-damping": [ "JJ" ], "MMC": [ "NNP" ], "breeds": [ "NNS", "VBZ" ], "dedicated": [ "VBN", "JJ", "VBD" ], "warm-hearted": [ "JJ" ], "AH-64": [ "NN", "NNP" ], "saith": [ "VBZ", "VB" ], "expanding": [ "VBG", "JJ" ], "winehead": [ "NN" ], "supremacy": [ "NN" ], "Neoliberal": [ "JJ" ], "purity": [ "NN" ], "STRUGGLED": [ "VBD" ], "pong": [ "NN" ], "unlovable": [ "JJ" ], "Dataproducts": [ "NNP", "NNPS" ], "quota-increase": [ "JJ" ], "Magog": [ "NNP" ], "trophies": [ "NNS" ], "Fleischer": [ "NNP" ], "Norm": [ "NNP" ], "Acorn": [ "NNP" ], "Karkazis": [ "NNP" ], "Gene-splicing": [ "NN" ], "staircase": [ "NN" ], "planetary-science": [ "JJ" ], "commodity-oriented": [ "JJ" ], "prohibition": [ "NN" ], "banding": [ "VBG" ], "Trumplane": [ "NNP" ], "Lorincze": [ "NNP" ], "Pilson": [ "NNP" ], "crepe": [ "JJ" ], "remember": [ "VB", "VBP" ], "Two-day": [ "JJ" ], "candles": [ "NNS" ], "tag-team": [ "JJ" ], "chin-out": [ "JJ" ], "home-mortgage": [ "JJ" ], "baseballs": [ "NNS" ], "truley": [ "RB" ], "crept": [ "VBD", "VBN" ], "Rawlings": [ "NNP" ], "bleedings": [ "NNS" ], "Sulzer": [ "NNP" ], "installment-loan": [ "JJ" ], "embassies": [ "NNS" ], "tagged": [ "VBN", "VBD", "JJ" ], "Farm-machine": [ "NN" ], "foreclosure": [ "NN" ], "Spanish-American": [ "NNP", "JJ" ], "colt": [ "NN" ], "toward": [ "IN" ], "goad": [ "NN" ], "cross-currency": [ "JJ" ], "Brezinski": [ "NNP" ], "coli": [ "NNS" ], "cold": [ "JJ", "NN" ], "cole": [ "NN" ], "birds": [ "NNS" ], "cola": [ "NN" ], "Landini": [ "NNP" ], "sloe-eyed": [ "JJ" ], "rooftop": [ "NN" ], "Greater": [ "NNP", "JJR" ], "assiduity": [ "NN" ], "Transactions": [ "NNS", "NNP" ], "selves": [ "NNS" ], "reacting": [ "VBG" ], "Landing": [ "NNP", "VBG" ], "immortality": [ "NN" ], "Leesona-Holt": [ "NNP" ], "resurfaced": [ "VBD", "VBN" ], "enny": [ "JJ" ], "feats": [ "NNS" ], "Blythe": [ "NNP" ], "halt": [ "NN", "JJ", "VB", "VBP" ], "Trexler": [ "NNP" ], "Robertsons": [ "NNPS" ], "delinking": [ "NN" ], "Compliance": [ "NNP", "NN" ], "Zupan": [ "NNP" ], "wielded": [ "VBN", "VBD" ], "appoints": [ "VBZ" ], "Preventive": [ "JJ" ], "Elinor": [ "NNP" ], "hall": [ "NN" ], "halo": [ "NN" ], "Fery": [ "NNP" ], "LIVERPOOL": [ "NNP" ], "better-quality": [ "JJ" ], "Marlene": [ "NNP" ], "construction-management": [ "JJ" ], "jurisprudence": [ "NN" ], "Critical": [ "NNP", "JJ" ], "dramatical": [ "JJ" ], "Lowenstein": [ "NNP" ], "cancer-suppressing": [ "JJ" ], "em": [ "PRP" ], "Desire": [ "NN" ], "en": [ "IN", "FW", "RB" ], "eh": [ "UH" ], "Baer": [ "NNP" ], "trade-offs": [ "NNS", "NN" ], "worriedly": [ "RB" ], "Except": [ "IN", "NNP" ], "Guadalajara": [ "NNP" ], "show\\": [ "NN" ], "Philadelphia-based": [ "JJ" ], "newscaster": [ "NN" ], "ex": [ "FW", "JJ" ], "et": [ "FW", "VBD", "CC", "NNP" ], "er": [ "UH" ], "vying": [ "VBG" ], "foot-thick": [ "JJ" ], "opened": [ "VBD", "VBN" ], "space": [ "NN", "VB" ], "VH-1": [ "NNP" ], "Torquemada": [ "NNP" ], "opener": [ "NN" ], "showy": [ "JJ" ], "castlelike": [ "JJ" ], "too-naked": [ "JJ" ], "eidetic": [ "JJ" ], "Mattei": [ "NNP" ], "Ghanaian": [ "JJ" ], "Stans": [ "NNP" ], "earthquake-related": [ "JJ" ], "mid-1989": [ "NN" ], "Covey": [ "NNP" ], "mid-1986": [ "NN" ], "Cover": [ "NNP", "VB" ], "eluted": [ "VBN" ], "quart": [ "NN" ], "Stand": [ "VB", "VBP", "NN" ], "Lockwood": [ "NNP" ], "Foreign": [ "NNP", "JJ" ], "Ransomes": [ "NNP" ], "rearrangements": [ "NNS" ], "barest": [ "JJS" ], "Beatie": [ "NNP" ], "Guiana": [ "NNP" ], "Bavarian": [ "JJ" ], "domes": [ "NNS" ], "Konner": [ "NNP" ], "Sarsaparilla": [ "NN" ], "Promise": [ "NNP" ], "domed": [ "JJ" ], "Even": [ "RB", "JJ" ], "concertos": [ "NNS" ], "Teslik": [ "NNP" ], "Asil": [ "NNP" ], "impossibly": [ "RB" ], "Fumio": [ "NN" ], "Asia": [ "NNP", "NN" ], "Inca": [ "NNP", "JJ" ], "Landers": [ "NNP" ], "orthographic": [ "JJ" ], "Rookie": [ "NN", "NNP" ], "impossible": [ "JJ" ], "forwarding": [ "NN", "VBG" ], "Ever": [ "RB", "NNP" ], "Al-Sabah": [ "NNP" ], "Inco": [ "NNP" ], "sheep": [ "NN", "NNS" ], "sheer": [ "JJ", "NN" ], "Diamond": [ "NNP", "NN" ], "sheet": [ "NN" ], "jugs": [ "NNS" ], "lightened": [ "VBD", "VBN" ], "weekdays": [ "NNS", "RB" ], "transaminase": [ "NN" ], "naughtier": [ "JJR" ], "co-pilots": [ "NNS" ], "Galicia": [ "NNP" ], "Calmer": [ "JJR" ], "long-vanished": [ "JJ" ], "much-despised": [ "JJ" ], "sheen": [ "NN" ], "larder": [ "NN" ], "shampooed": [ "VBN" ], "Johansson": [ "NNP" ], "Waterseller": [ "NNP" ], "Neck": [ "NNP" ], "courier": [ "NN" ], "pelting": [ "JJ", "VBG" ], "sewer": [ "NN" ], "spot-checking": [ "NN" ], "peck": [ "VBP", "NN", "VB" ], "Inc.": [ "NNP", "NNPS", "NN" ], "Quinzaine": [ "NNP" ], "rugged": [ "JJ" ], "Heisch": [ "NNP" ], "Speculators": [ "NNS" ], "Larkspur": [ "NNP" ], "non-union": [ "JJ" ], "shady": [ "JJ" ], "sublime": [ "JJ", "NN" ], "Furillo": [ "NNP" ], "Remarketers": [ "NNS" ], "saute": [ "VB" ], "correction": [ "NN" ], "World-Journal-Tribune": [ "NNP" ], "Cali": [ "NNP" ], "too-simple-to-be-true": [ "JJ" ], "Call": [ "VB", "NNP", "NN" ], "Calm": [ "JJ" ], "abnormalities": [ "NNS" ], "breakfast": [ "NN" ], "Crawford": [ "NNP" ], "Cale": [ "NNP" ], "Calf": [ "NNP" ], "sterilized": [ "VBN", "VBD" ], "anti-Kabul": [ "JJ" ], "Phi": [ "NNP" ], "cavemen": [ "NNS" ], "skidding": [ "VBG" ], "Hellene": [ "NNP" ], "Non-interest": [ "JJ" ], "mismeasurement": [ "NN" ], "Exodus": [ "NNP" ], "faciunt": [ "FW" ], "six-cylinder": [ "JJ" ], "trans-Pacific": [ "JJ" ], "Osipenko": [ "NNP" ], "SUNY": [ "NNP" ], "Colombians": [ "NNPS", "NNS" ], "PS": [ "NNP" ], "Markoe": [ "NNP" ], "Less-than-truckload": [ "JJ" ], "Nacion": [ "NNP" ], "Duyvil": [ "NNP" ], "hamstrung": [ "JJ", "VBN", "VBP" ], "Cal.": [ "NN" ], "Ph.": [ "NNP", "NNPS", "NN" ], "largish": [ "JJ" ], "sunset": [ "NN", "VB" ], "diagonals": [ "NNS" ], "dispersed": [ "VBN", "JJ", "VBD" ], "higher-caliber": [ "JJR" ], "Fifth": [ "NNP", "JJ" ], "posse": [ "NN" ], "brainchild": [ "NN" ], "Accutane": [ "NNP" ], "Polevoi": [ "NNP" ], "hydride": [ "NN" ], "misrepresenting": [ "VBG" ], "Sony-owned": [ "JJ" ], "hydrido": [ "NN" ], "Schwartzman": [ "NNP" ], "Centurion": [ "NNP" ], "Seismographic": [ "NNP" ], "cheeseburgers": [ "NNS" ], "crackling": [ "NN" ], "ikey-kikey": [ "JJ" ], "gnaw": [ "VB" ], "ratio": [ "NN" ], "unedifying": [ "JJ" ], "probings": [ "NNS" ], "high-fidelity": [ "NN" ], "Solar": [ "NNP", "JJ" ], "underfunded": [ "VBN", "JJ" ], "Leasco": [ "NNP" ], "Katya": [ "NNP" ], "NATIONAL": [ "NNP", "JJ" ], "telomeric": [ "JJ" ], "prides": [ "VBZ" ], "Plunging": [ "VBG" ], "fortifications": [ "NNS" ], "remoter": [ "JJR" ], "prided": [ "VBD", "VBN" ], "revulsion": [ "NN" ], "European-minded": [ "JJ" ], "appreciatively": [ "RB" ], "Grumbled": [ "VBD" ], "seldom": [ "RB" ], "Alley": [ "NNP", "NN" ], "Jeux": [ "FW" ], "guttered": [ "VBD" ], "Rundfunk": [ "NNP" ], "Allen": [ "NNP", "NNPS" ], "electroreality": [ "NN" ], "PM": [ "NNP" ], "bluebloods": [ "NNS" ], "pouches": [ "NNS" ], "irradiation": [ "NN" ], "once-prevailing": [ "JJ" ], "Runyon": [ "NNP" ], "unmarried": [ "JJ", "VBN" ], "Parkhouse": [ "NNP" ], "fanned": [ "VBD", "VBN" ], "famine": [ "NN" ], "Winslow": [ "NNP" ], "matter-of-factly": [ "RB" ], "tackling": [ "VBG" ], "halides": [ "NNS" ], "big-daddy": [ "JJ" ], "Berlin": [ "NNP", "JJ", "NN" ], "work-out": [ "JJ", "NN" ], "Butt": [ "NNP" ], "herbal": [ "JJ" ], "Butz": [ "NNP" ], "Equations": [ "NNS" ], "extraordinary...": [ ":" ], "Antares": [ "NNP" ], "post-revolutionary": [ "JJ" ], "Palmolive": [ "NNP" ], "transluscent": [ "JJ" ], "OSHA": [ "NNP" ], "spitfire": [ "NN" ], "industrial-automation": [ "NN" ], "UNITED": [ "NNP" ], "Swamped": [ "VBN" ], "diocesan": [ "JJ" ], "self-interest": [ "NN", "JJ" ], "heatshield": [ "NN" ], "successor-designate": [ "JJ" ], "unfrosted": [ "VBN" ], "characterization": [ "NN" ], "Chevalier": [ "NNP" ], "mirroring": [ "VBG", "NN" ], "pilings": [ "NNS" ], "moreover": [ "RB" ], "imcomparable": [ "JJ" ], "deducting": [ "VBG" ], "capitalizations": [ "NNS" ], "Anthology": [ "NNP" ], "interleukin-1": [ "NN" ], "lawsuit": [ "NN" ], "rebuild": [ "VB" ], "manmade-fiber": [ "JJ" ], "SCECorp": [ "NNP" ], "lumpish": [ "JJ" ], "relatedness": [ "NN" ], "sewage-treatment": [ "NN" ], "whispers": [ "NNS", "VBZ" ], "dangers": [ "NNS" ], "build-better-for-less": [ "JJ" ], "rebuilt": [ "VBN" ], "prie-dieu": [ "FW" ], "exhaustion": [ "NN" ], "shortages": [ "NNS" ], "pesticide": [ "NN" ], "Hamburg": [ "NNP" ], "non-veterans": [ "NNS" ], "Creamette": [ "NNP" ], "observers": [ "NNS" ], "Vorontsov": [ "NNP" ], "Enforcers": [ "NNS" ], "casino-company": [ "NN" ], "countless": [ "JJ" ], "OEX": [ "NNP" ], "Continuation": [ "NN" ], "Merced": [ "NNP" ], "fruitbowl": [ "NN" ], "Reins": [ "NNP" ], "pseudo-patriotism": [ "NN" ], "Serlin": [ "NNP" ], "Greenhouse": [ "NN" ], "OEL": [ "NNP" ], "dregs": [ "NNS" ], "Reine": [ "NNP" ], "landslide": [ "NN" ], "PARTICIPATED": [ "VBD" ], "piglets": [ "NNS" ], "Reina": [ "NNP" ], "baccalaureate": [ "NN" ], "Dice": [ "NNS" ], "Dick": [ "NNP" ], "Me-210": [ "NNP", "JJ" ], "South-East": [ "NNP" ], "bias": [ "NN" ], "embrace": [ "VB", "VBP", "NN" ], "bestial": [ "JJ" ], "heels": [ "NNS" ], "multitudes": [ "NNS" ], "mediocre": [ "JJ" ], "Bolsa": [ "NNP" ], "Mediumistic": [ "JJ" ], "commuting": [ "VBG", "NN" ], "Arden": [ "NNP" ], "epoch": [ "NN" ], "Lock-Up": [ "NN" ], "fair-weather": [ "JJ" ], "pedantic": [ "JJ" ], "finish": [ "VB", "NN", "VBP" ], "buccaneers": [ "NNS" ], "Shady": [ "NNP" ], "reunions": [ "NNS" ], "Pinsoneault": [ "NNP" ], "Stash": [ "NNP" ], "videotaped": [ "VBN", "VBD" ], "Steelworkers": [ "NNPS", "NNP" ], "woulda": [ "MD" ], "Shade": [ "NNP", "NN" ], "Hersh": [ "NNP" ], "ringside": [ "NN" ], "inspector-general": [ "JJ" ], "Joining": [ "VBG" ], "Ackermann": [ "NNP" ], "theater": [ "NN" ], "fluorescein-labeled": [ "JJ" ], "sex-for-hire": [ "JJ" ], "diatomic": [ "JJ" ], "hospital-care": [ "NN" ], "slugged": [ "VBD", "VBN" ], "choreography": [ "NN" ], "edema": [ "NN" ], "wintered": [ "VBN" ], "tablespoonful": [ "NN", "JJ" ], "slugger": [ "NN" ], "slanting": [ "VBG", "JJ" ], "dueling": [ "VBG", "NN" ], "revaluation": [ "NN" ], "tirade": [ "NN" ], "daydreaming": [ "NN" ], "conclude": [ "VB", "VBP" ], "sportin": [ "VBG" ], "washbasin": [ "NN" ], "ESOPs": [ "NNS", "NNP" ], "well-set": [ "JJ" ], "sportif": [ "FW" ], "participative": [ "JJ" ], "near-solid": [ "JJ" ], "SoHo": [ "NNP" ], "real": [ "JJ", "NN", "RB" ], "Renwick": [ "NNP" ], "preliterate": [ "JJ" ], "Tuck": [ "NNP" ], "read": [ "VB", "NN", "VBP|VBD", "VBD", "VBN", "VBP", "VBD|VBP" ], "Phillip": [ "NNP" ], "detoxify": [ "VB" ], "Reorganized": [ "NNP" ], "leapfrog": [ "VB", "NN" ], "quickness": [ "NN" ], "unreflective": [ "JJ" ], "detract": [ "VB", "VBP" ], "pesetas": [ "NNS" ], "French-polished": [ "JJ" ], "Adrien": [ "NNP" ], "reap": [ "VB", "VBP" ], "rear": [ "JJ", "NN", "VB" ], "Kenlake": [ "NNP" ], "fractionally": [ "RB" ], "suppliers": [ "NNS" ], "yg-globulin": [ "NN" ], "Theocracy": [ "NN" ], "glass-making": [ "NN", "JJ" ], "abjection": [ "NN" ], "evidencing": [ "VBG" ], "Hawkinses": [ "NNPS" ], "servile": [ "JJ" ], "rival-bashing": [ "JJ" ], "Szanton": [ "NNP" ], "hacks": [ "NNS" ], "astronomer": [ "NN" ], "Archives": [ "NNPS", "NNP" ], "duration": [ "NN" ], "Barbaresco": [ "NNP" ], "slaughtering": [ "VBG" ], "putter": [ "NN" ], "recorded": [ "VBN", "VBD", "JJ" ], "Landrieu": [ "NNP" ], "descents": [ "NNS" ], "Southeast": [ "NNP", "JJ", "NN", "RB" ], "featherless": [ "JJ" ], "recorder": [ "NN" ], "putted": [ "VBD" ], "Marilyn": [ "NNP" ], "architectonic": [ "JJ" ], "stagecoaches": [ "NNS" ], "Hunt": [ "NNP" ], "dejection": [ "NN" ], "winnowing": [ "NN" ], "sedimentation": [ "NN" ], "seducing": [ "VBG" ], "hectic": [ "JJ" ], "Promotion": [ "NNP", "NN" ], "anti-Catholic": [ "JJ" ], "fondness": [ "NN" ], "Weavers": [ "NNS", "NNPS" ], "easy-to-read": [ "JJ" ], "explusion": [ "NN" ], "paints": [ "NNS", "VBZ" ], "STRIPES": [ "NNP" ], "Grandmothers": [ "NNP" ], "greatly": [ "RB" ], "Forgot": [ "VBN" ], "Depressive": [ "NNP" ], "Dubaih": [ "NNP" ], "heater": [ "NN" ], "disinfectant": [ "NN" ], "Cousin": [ "NNP", "NN" ], "more-advanced": [ "JJ", "JJR" ], "Memories": [ "NNPS", "NNP", "NNS" ], "Fallout": [ "NNP" ], "Wyser-Pratte": [ "NNP" ], "Hung": [ "NNP" ], "nicotine": [ "NN" ], "Bard\\/EMS": [ "NNP" ], "heated": [ "VBN", "JJ", "VBD" ], "Steppers": [ "NNPS", "NNS" ], "wellspring": [ "NN" ], "gungho": [ "JJ" ], "prepare": [ "VB", "VBP" ], "co-ops": [ "NN" ], "Vaux": [ "NNP" ], "stoppage": [ "NN" ], "Engelken": [ "NNP" ], "DISPLAYED": [ "VBD" ], "Hotei": [ "NNP" ], "stealth": [ "NN" ], "Birthday": [ "NN", "NNP" ], "unclasping": [ "VBG" ], "uremia": [ "NN" ], "faulted": [ "VBN", "VBD" ], "eluate": [ "NN" ], "Motorcycles": [ "NNS" ], "highway-relief": [ "JJ" ], "Nagykanizsa": [ "NNP" ], "TSH-treated": [ "JJ" ], "Calimala": [ "NNP" ], "Tripoli": [ "NNP" ], "DDG-51": [ "NNP" ], "Calcutta": [ "NNP" ], "appareled": [ "VBN" ], "irreversible": [ "JJ" ], "Department-store": [ "JJ" ], "McKay": [ "NNP" ], "Leinoff": [ "NNP" ], "Monday-morning": [ "JJ" ], "comics": [ "NNS" ], "condemnatory": [ "JJ" ], "Leyte": [ "NNP" ], "enameling": [ "NN", "VBG" ], "Grisebach": [ "NNP" ], "Grenfell": [ "NNP" ], "keyboarding": [ "VBG" ], "Shrugged": [ "VBN" ], "builders": [ "NNS" ], "Nobuya": [ "NNP" ], "commercial-banking": [ "NN", "JJ" ], "septa": [ "NNS" ], "cartons": [ "NNS" ], "oxen": [ "NNS" ], "subdue": [ "VB" ], "Cemetery": [ "NNP", "NN" ], "sales": [ "NNS", "JJ", "VBZ" ], "pummeling": [ "NN" ], "Tijd": [ "NNP" ], "erawhere": [ "NN" ], "reassumed": [ "VBN" ], "flat-to-lower": [ "JJ" ], "credibility": [ "NN" ], "storage": [ "NN", "JJ" ], "thither": [ "RB" ], "cinematography": [ "NN" ], "hobbyists": [ "NNS" ], "gambling": [ "NN", "VBG" ], "seven-week-old": [ "JJ" ], "surest": [ "JJS" ], "Vicki": [ "NNP" ], "Iwatare": [ "NNP" ], "desolation": [ "NN" ], "Misinformation": [ "NN" ], "eromonga": [ "FW" ], "Renaults": [ "NNPS" ], "technologies\\": [ "JJ" ], "flattened": [ "VBN", "VBD", "JJ" ], "nerve-racking": [ "JJ" ], "Pissarro": [ "NNP" ], "Surrealists": [ "NNS" ], "Whitefish": [ "NNP" ], "Stuffing": [ "VBG" ], "chords": [ "NNS" ], "adsorbed": [ "VBN" ], "Workshops": [ "NNS" ], "pectoral-front": [ "JJ" ], "titration": [ "NN" ], "Gypsy": [ "NN" ], "Ovitz": [ "NNP" ], "Pablo": [ "NNP" ], "maturity": [ "NN" ], "beachhead": [ "NN" ], "hateful": [ "JJ" ], "pointing": [ "VBG", "NN" ], "Griesa": [ "NNP" ], "rumdum": [ "NN" ], "splitting": [ "NN", "VBG", "JJ" ], "slimming": [ "VBG" ], "Alcarria": [ "NNP" ], "bequeath": [ "VB" ], "cardiologist": [ "NN" ], "gaucherie": [ "NN" ], "Schmidt": [ "NNP" ], "Astwood": [ "NNP" ], "dimesize": [ "JJ" ], "Brown": [ "NNP", "JJ" ], "compatiblizers": [ "NNS" ], "altruism": [ "NN" ], "FORCE": [ "VBP" ], "interior-decorating": [ "JJ" ], "Ralston": [ "NNP" ], "Syms": [ "NNP", "NNS" ], "Parallel": [ "JJ" ], "mpg": [ "NN" ], "sprains": [ "NNS" ], "Recovering": [ "VBG" ], "very": [ "RB", "JJ" ], "indubitable": [ "JJ" ], "officials-cum-drug-traffickers": [ "NNS" ], "based-CAE": [ "JJ|NP" ], "mph": [ "NN", "JJ" ], "vertex": [ "NN" ], "verb": [ "NN" ], "minded": [ "VBD", "VBN" ], "UVB": [ "NN" ], "austerity": [ "NN" ], "morphemic": [ "JJ" ], "suzerain": [ "NN" ], "randomness": [ "NN" ], "Beethoven": [ "NNP" ], "Khalifa": [ "NNP" ], "guileless": [ "JJ" ], "Midnight": [ "NNP" ], "Kruger": [ "NNP" ], "Ancel": [ "NNP" ], "Electrostatic": [ "JJ" ], "cash-rich": [ "JJ" ], "Wyo.": [ "NNP" ], "Reiss": [ "NNP" ], "Henrich": [ "NNP" ], "Genuine": [ "NNP" ], "TSH": [ "NNP" ], "TSB": [ "NNP" ], "reminiscence": [ "NN" ], "self-contained": [ "JJ", "NN" ], "Glaxo": [ "NNP" ], "ELECTRONICS": [ "NNP" ], "Valens": [ "NNP" ], "Circles": [ "NNS" ], "papering": [ "VBG" ], "apologizes": [ "VBZ" ], "Widened": [ "VBD" ], "bituminous": [ "JJ" ], "three-game": [ "JJ" ], "Ronnie": [ "NNP" ], "Harmful": [ "JJ" ], "Feeney": [ "NNP" ], "apologized": [ "VBD", "VBN" ], "Probing": [ "VBG" ], "egalitarianism": [ "NN" ], "Tammany": [ "NNP" ], "repugnant": [ "JJ" ], "Violeta": [ "NNP" ], "Alexei": [ "NNP" ], "entailing": [ "VBG" ], "recruits": [ "NNS", "VBZ" ], "rudimentary": [ "JJ" ], "answers": [ "NNS", "VBZ" ], "Grindlay": [ "NNP" ], "sardines": [ "NNS" ], "yummy": [ "JJ", "NN" ], "consumer-oriented": [ "JJ" ], "conflation": [ "NN" ], "Borden": [ "NNP", "NN" ], "interposed": [ "VBN" ], "Phamaceutical": [ "NNP" ], "will-to-power": [ "NN" ], "ahead": [ "RB", "JJ" ], "disclaimers": [ "NNS" ], "dream-ridden": [ "JJ" ], "telecast": [ "NN" ], "soldier": [ "NN" ], "bestowal": [ "NN" ], "whoppers": [ "NNS" ], "innovativeness": [ "NN" ], "Woessner": [ "NNP" ], "Border": [ "NNP", "NN" ], "Victor": [ "NNP" ], "sidearms": [ "NNS" ], "Independents": [ "NNPS" ], "Exactly": [ "RB" ], "T-1600": [ "NNP" ], "capacity-expansion": [ "JJ", "NN" ], "agonized": [ "VBD", "JJ" ], "order-entry": [ "JJ", "NN" ], "Molesworth": [ "NNP" ], "Compulsions": [ "NNP" ], "original-issue": [ "JJ" ], "unpleasantness": [ "NN" ], "income-producing": [ "JJ" ], "Clarks": [ "NNS" ], "Tredyffrin": [ "NNP" ], "easy-to-use": [ "JJ" ], "Creating": [ "VBG" ], "Elf": [ "NNP" ], "injure": [ "VB", "VBP" ], "overharvesting": [ "NN" ], "microeconomics": [ "NNS" ], "reserving": [ "VBG" ], "Lapham": [ "NNP" ], "CLUBS": [ "NNS" ], "ROME": [ "NNP" ], "girds": [ "VBZ" ], "doubtlessly": [ "RB" ], "wide-winged": [ "JJ" ], "injury": [ "NN" ], "stand-up": [ "JJ" ], "erode": [ "VB", "VBP" ], "Policemen": [ "NNS", "NNPS" ], "Chickens": [ "NNS" ], "Colson": [ "NNP" ], "powerhouses": [ "NNS" ], "suction": [ "NN" ], "Oral": [ "NNP" ], "Oran": [ "NNP" ], "Sheila": [ "NNP" ], "aspirational": [ "JJ" ], "Yoshitoki": [ "NNP" ], "AFDC": [ "NNP" ], "metal-cutting": [ "JJ" ], "Hartlib": [ "NNP" ], "sweeps": [ "NNS", "VBZ" ], "Soxhlet": [ "NN" ], "peals": [ "NNS" ], "reshaping": [ "VBG", "NN" ], "Kerkorian": [ "NNP" ], "Staining": [ "VBG" ], "missile-transporter": [ "NN" ], "parasol": [ "NN" ], "stampede": [ "NN", "VB", "VBP" ], "Chubb": [ "NNP" ], "Bronislava": [ "NNP" ], "near-misses": [ "NN" ], "exclude": [ "VB", "VBP" ], "grey-skied": [ "JJ" ], "sci-fi": [ "JJ", "NN" ], "Wergeland": [ "NNP" ], "lithographic": [ "JJ" ], "pocketful": [ "NN" ], "telefax": [ "NN" ], "cloying": [ "JJ", "JJ|VBG" ], "ransom": [ "NN" ], "Ganis": [ "NNP" ], "Heightened": [ "JJ" ], "tattoo": [ "NN" ], "Fitzpatrick": [ "NNP" ], "Pass": [ "NNP", "VB" ], "germinal": [ "JJ" ], "Yilin": [ "NNP" ], "rose-of-Sharon": [ "NN" ], "idiocy": [ "NN" ], "roadblocks": [ "NNS" ], "escutcheon": [ "NN" ], "collectability": [ "NN" ], "gasp": [ "NN", "VB" ], "inconceivable": [ "JJ" ], "INC.": [ "NNP" ], "Milcote": [ "NNP" ], "Adamec": [ "NNP" ], "prerequisites": [ "NNS" ], "lava-rocks": [ "NNS" ], "mortgage-backed-securities": [ "NNS" ], "overnight": [ "JJ", "NN", "RB" ], "buns": [ "NNS" ], "renewing": [ "VBG" ], "Fila": [ "NNP" ], "Ubermenschen": [ "NNPS" ], "File": [ "NN", "VB" ], "Film": [ "NNP" ], "Fill": [ "VB", "VBP" ], "chicks": [ "NNS" ], "Fishery": [ "NNP" ], "uncensored": [ "JJ" ], "Floresville": [ "NNP" ], "Africans": [ "NNPS", "NNP" ], "dine": [ "VB" ], "space-station": [ "NN", "JJ" ], "tousled": [ "VBN", "JJ" ], "rebuilder": [ "NN" ], "non-negative": [ "JJ" ], "then-owner": [ "JJ" ], "Cardinals": [ "NNP", "NNPS" ], "Superstition": [ "NN" ], "painstaking": [ "JJ" ], "fines": [ "NNS", "NN" ], "post-war": [ "JJ", "NN" ], "fool": [ "NN", "JJ", "VB" ], "drunk-and-disorderlies": [ "NNS" ], "spear-throwing": [ "JJ" ], "Syndicates": [ "NNS" ], "food": [ "NN" ], "awarding": [ "VBG", "NN" ], "prenatal": [ "JJ", "RB" ], "grandfathers": [ "NNS" ], "Syndicated": [ "NNP" ], "Sunward": [ "NNP" ], "foot": [ "NN", "VBP", "JJ", "VB" ], "sixth-grade": [ "JJ" ], "Stillwell": [ "NNP" ], "Lewisohn": [ "NNP" ], "desperately": [ "RB" ], "SFX": [ "NNP" ], "croupier": [ "NN" ], "Suns": [ "NNPS", "NNS" ], "sailor": [ "NN" ], "Ekwanok": [ "NNP" ], "heavyweights": [ "NNS" ], "D&H": [ "NNP" ], "Bueno": [ "FW" ], "SFD": [ "NNP" ], "SFE": [ "NNP" ], "Sung": [ "NNP" ], "Toland": [ "NNP" ], "in-grown": [ "JJ" ], "unachieved": [ "VBN" ], "savored": [ "VBD", "VBN" ], "editor-in-chief": [ "NN" ], "inspirational": [ "JJ" ], "fees": [ "NNS" ], "gentlelady": [ "NN" ], "wacky": [ "JJ" ], "mortgage-servicing": [ "NN" ], "irreconcilable": [ "JJ" ], "cemented": [ "VBN" ], "bulking": [ "VBG" ], "Minella": [ "NNP" ], "Kessler": [ "NNP" ], "Starve": [ "NNP", "VB" ], "Zemlya": [ "NNP" ], "Bloomingdales": [ "NNP" ], "presumptuous": [ "JJ" ], "since": [ "IN", "RB" ], "temporary": [ "JJ" ], "InterNorth": [ "NNP" ], "ultrasonics": [ "NNS" ], "laxatives": [ "NNS" ], "M\\/A-Com": [ "NNP" ], "Bent-Arm": [ "NNP" ], "dunk": [ "NN", "VB" ], "pun": [ "NN" ], "flaunt": [ "VB", "VBP" ], "asw": [ "NN" ], "ast": [ "JJ" ], "forty-niners": [ "NNS" ], "production-sharing": [ "JJ", "NN" ], "dung": [ "NN" ], "dune": [ "NN" ], "heroin": [ "NN" ], "ask": [ "VB", "VBP" ], "spread-out": [ "JJ" ], "Palladio": [ "NNP" ], "ash": [ "NN" ], "pup": [ "NN" ], "Investments": [ "NNPS", "NNP", "NNS" ], "heroic": [ "JJ" ], "ketorolac": [ "NNP" ], "Sohmer": [ "NNP" ], "perceptual": [ "JJ" ], "fugures": [ "NNS" ], "tenets": [ "NNS" ], "six-fold": [ "RB" ], "tortoises": [ "NNS" ], "cheering": [ "VBG" ], "Respect": [ "NN" ], "yield-management": [ "NN" ], "lantana": [ "NN" ], "Selma": [ "NNP" ], "liquefies": [ "VBZ" ], "DAYTON": [ "NNP" ], "penny-ante": [ "JJ" ], "reflected": [ "VBD", "JJ", "VBN" ], "Badura-Skoda-Vienna": [ "NNP" ], "Hubbell": [ "NNP" ], "tektites": [ "NNS" ], "alliterative": [ "JJ" ], "Gorce": [ "NNP" ], "herbicides": [ "NNS" ], "Jeremiah": [ "NNP" ], "Plekhanov": [ "NNP" ], "ballot-burning": [ "JJ" ], "Mortgage-backed": [ "JJ" ], "Lipchitz": [ "NNP" ], "price-setting": [ "NN" ], "handshaker": [ "NN" ], "diabetes": [ "NN" ], "vilification": [ "NN" ], "Brinkley": [ "NNP" ], "shifted": [ "VBD", "VBN" ], "hardbound": [ "JJ" ], "Modell": [ "NNP" ], "Ventura": [ "NNP" ], "anti-Western": [ "JJ" ], "Venture": [ "NNP", "NN" ], "McGraw": [ "NNP" ], "western": [ "JJ" ], "Gianicolo": [ "NNP" ], "Calais": [ "NNP" ], "Searle": [ "NNP" ], "squeaky": [ "JJ", "RB" ], "inducted": [ "VBN" ], "collaborations": [ "NNS" ], "prejudged": [ "VBN" ], "squeaks": [ "VBZ" ], "photographing": [ "VBG", "NN" ], "grogginess": [ "NN" ], "Leninskoye": [ "NNP" ], "Figs.": [ "NNS", "NN", "NNP" ], "Quotidien": [ "NNP" ], "Extinction": [ "NNP" ], "rationalizations": [ "NNS" ], "Saudis": [ "NNPS", "VBP" ], "substantiated": [ "JJ" ], "Conduct": [ "NNP", "VB" ], "Father": [ "NNP", "NN" ], "juicy": [ "JJ" ], "unthematic": [ "JJ" ], "Stenhach": [ "NNP" ], "juice": [ "NN" ], "ecstatically": [ "RB" ], "bridled": [ "VBN" ], "income-oriented": [ "JJ" ], "sensual": [ "JJ" ], "GTE": [ "NNP" ], "Gruene": [ "NNP" ], "outbound": [ "JJ" ], "retracted": [ "VBN", "VBD", "JJ" ], "Band-Aid": [ "NNP" ], "Arger": [ "NNP" ], "flaming": [ "JJ", "VBG" ], "cargoes": [ "NNS" ], "labour": [ "NN" ], "checklist": [ "NN" ], "Ryrie": [ "NNP" ], "Puccini": [ "NNP" ], "Pissocra": [ "NNP" ], "repossesed": [ "JJ" ], "Thy": [ "PRP", "PRP$" ], "frauds": [ "NNS" ], "Companies": [ "NNS", "NNPS", "NNP" ], "Kakutani": [ "NNP" ], "Foxmoor": [ "NNP" ], "Stronach": [ "NNP" ], "hothouse": [ "JJ" ], "Aviva": [ "NNP" ], "The": [ "DT", "NNP", "JJ", "NN", "VB" ], "Mulligan": [ "NNP" ], "gregarious": [ "JJ" ], "Bolstering": [ "VBG" ], "prolongation": [ "NN" ], "Mommy": [ "NNP" ], "outbidding": [ "VBG" ], "Postscript": [ "NNP" ], "Momma": [ "NNP" ], "bridge-financing": [ "JJ" ], "Fishing": [ "NNP", "NN" ], "World-wide": [ "JJ" ], "Mahagonny": [ "NNP" ], "giggles": [ "NNS" ], "acerbic": [ "JJ" ], "fiercest": [ "JJS" ], "Croonen": [ "NNP" ], "flounders": [ "VBZ" ], "hefted": [ "VBD" ], "top-notch": [ "JJ" ], "giggled": [ "VBD", "VBN" ], "church-owned": [ "JJ" ], "begets": [ "VBZ" ], "Nishiki": [ "NNP" ], "copyright": [ "NN", "JJ" ], "Norberto": [ "NNP" ], "government-plus": [ "JJ" ], "bonheur": [ "NN" ], "CHARLES": [ "NNP" ], "no-good-bums": [ "NNS" ], "darted": [ "VBD" ], "pre-history": [ "JJ", "NN" ], "necking": [ "NN" ], "long-familiar": [ "JJ" ], "world-weary": [ "JJ" ], "pretty": [ "RB", "JJ" ], "Bolger": [ "NNP" ], "NatWest": [ "NNP" ], "low-interest": [ "JJ" ], "seven-session": [ "JJ" ], "custodian": [ "NN" ], "custodial": [ "JJ" ], "trees": [ "NNS" ], "Dupuy": [ "NNP" ], "Crystal": [ "NNP", "NN" ], "spackle": [ "VB" ], "tossing": [ "VBG", "NN" ], "gloved": [ "VBN", "JJ" ], "sacrificed": [ "VBN" ], "MICROSYSTEMS": [ "NNP" ], "full-bodied": [ "JJ" ], "sacrifices": [ "NNS", "VBZ" ], "CHARITABLE": [ "JJ" ], "Unitarians": [ "NNPS", "NNP" ], "gloves": [ "NNS" ], "glover": [ "NN" ], "battlegrounds": [ "NNS" ], "Pritchett": [ "NNP" ], "crams": [ "VBZ" ], "re-rated": [ "VBN" ], "W.N.": [ "NNP" ], "Decent": [ "JJ" ], "outboard": [ "JJ" ], "YEEEEEECH": [ "UH" ], "manning": [ "VBG" ], "horoscopes": [ "NNS" ], "transportation": [ "NN" ], "Knife-grinder": [ "NNP" ], "Babin": [ "NNP" ], "Liddle": [ "NNP" ], "patties": [ "NNS" ], "horrid": [ "JJ" ], "Lectec": [ "NNP" ], "dramatics": [ "NNS" ], "FATHER": [ "NN" ], "Tikopia": [ "NNP" ], "grocer": [ "NN" ], "VIDEO": [ "NN", "NNP" ], "thermistor": [ "NN" ], "architect": [ "NN" ], "Kissinger": [ "NNP" ], "management-employee": [ "NN" ], "NHTSA": [ "NNP" ], "gynecologists": [ "NNS" ], "Zacks": [ "NNP" ], "genre": [ "NN" ], "Haro": [ "NNP" ], "Harm": [ "NNP" ], "Hark": [ "NNP" ], "unknowing": [ "JJ" ], "Fisk": [ "NNP" ], "Fish": [ "NNP", "NN" ], "Hard": [ "NNP", "JJ", "RB" ], "Briscoe": [ "NNP" ], "Hara": [ "NNP" ], "Rhoads": [ "NNP" ], "watchtowers": [ "NNS" ], "crackpots": [ "NNS" ], "Allingham": [ "NNP" ], "Argiento": [ "NNP" ], "searchlights": [ "NNS" ], "government-held": [ "JJ" ], "batters": [ "NNS", "VBZ" ], "likee": [ "VB" ], "ridiculing": [ "VBG" ], "trans-Canadian": [ "JJ" ], "assortments": [ "NNS" ], "Discussion": [ "NN" ], "strenghtening": [ "VBG" ], "ideologues": [ "NNS" ], "badminton": [ "NN" ], "Maidens": [ "NNPS" ], "likes": [ "VBZ", "NNS", "NN" ], "private-line": [ "JJ" ], "Mose": [ "NNP" ], "neck-deep": [ "JJ" ], "described": [ "VBN", "VBD" ], "Mosk": [ "NNP" ], "Batangas": [ "NNP" ], "resellers": [ "NNS" ], "Most": [ "JJS", "NNP", "RBS", "RB" ], "describes": [ "VBZ" ], "maintenance": [ "NN" ], "preventable": [ "JJ" ], "Astrid": [ "NNP" ], "SX-21": [ "NNP" ], "Tomoshige": [ "NNP" ], "Honecker": [ "NNP" ], "budgeted": [ "VBN", "VBD" ], "three-foot-wide": [ "JJ" ], "lodgings": [ "NNS" ], "wet": [ "JJ", "NN", "VBD", "VB", "VBP" ], "append": [ "VB" ], "else": [ "RB", "JJ", "NN" ], "Westvaco": [ "NNP" ], "transacting": [ "VBG" ], "second-quarter": [ "JJ", "NN" ], "referrals": [ "NNS" ], "utmost": [ "JJ", "NN" ], "conspirator": [ "NN" ], "virologist": [ "NN" ], "all-paper": [ "JJ", "NN" ], "governor": [ "NN" ], "Memotec": [ "NNP" ], "Verdi": [ "NNP" ], "Mallinckrodt": [ "NNP" ], "eateries": [ "NNS" ], "erupting": [ "VBG" ], "straggling": [ "VBG" ], "voters": [ "NNS" ], "Furthermore": [ "RB" ], "Spuyten": [ "NNP" ], "sharecrop": [ "NN" ], "cellular-phone": [ "NN" ], "wartorn": [ "NN" ], "Cassandras": [ "NNPS" ], "Meistersinger": [ "NNP" ], "shuttered": [ "JJ", "VBD", "VBN" ], "Ryerson": [ "NNP" ], "shag": [ "JJ" ], "shad": [ "NN" ], "shah": [ "NN" ], "Meir": [ "NNP" ], "sham": [ "NN", "JJ" ], "Huff": [ "NNP" ], "Pollution-control": [ "JJ" ], "receptions": [ "NNS" ], "curators": [ "NNS" ], "Transmission": [ "NNP", "NN" ], "Alliant": [ "NNP" ], "overweight": [ "JJ", "NN" ], "feds": [ "NNS" ], "user": [ "NN" ], "priceless": [ "JJ" ], "takeover-proof": [ "JJ" ], "plugs": [ "NNS", "VBZ" ], "Telerama": [ "NNP" ], "much-beloved": [ "JJ" ], "unrolls": [ "VBZ" ], "wedged": [ "VBN", "VBD" ], "grind": [ "VBP", "NN", "VB" ], "segmented": [ "JJ" ], "center-stage": [ "JJ" ], "stubbed": [ "VBN" ], "Vaezi": [ "NNP" ], "grins": [ "NNS" ], "Girl": [ "NNP", "NN" ], "Dennis": [ "NNP", "NNS" ], "mislaid": [ "VBN" ], "authoritatively": [ "RB" ], "distances": [ "NNS", "VBZ" ], "Chugai": [ "NNP" ], "MOVED": [ "VBD" ], "escorted": [ "VBD", "VBN" ], "atrophy": [ "NN", "VBP" ], "unhedged": [ "VBN" ], "inlets": [ "NNS" ], "hemolytic": [ "JJ" ], "praying": [ "VBG", "NN" ], "Killpath": [ "NNP" ], "$": [ "$" ], "moist": [ "JJ" ], "pier": [ "NN" ], "Football": [ "NNP", "NN" ], "guaranteed": [ "VBN", "JJ", "VBD" ], "Finished": [ "VBN" ], "havin": [ "VBG" ], "Spiegelman": [ "NNP" ], "specialty-chemical": [ "NN" ], "Germany": [ "NNP" ], "decontamination": [ "NN" ], "guarantees": [ "NNS", "VBZ" ], "Maclean": [ "NNP" ], "Tivoli": [ "NNP" ], "march": [ "NN", "VBP", "VB" ], "fast-acting": [ "JJ" ], "Stallkamp": [ "NNP" ], "thousand-person": [ "JJ" ], "culturally": [ "RB" ], "Owego": [ "NNP" ], "Biehl": [ "NNP" ], "well-equipped": [ "JJ" ], "Waited": [ "VBN" ], "overriding": [ "VBG", "JJ" ], "Shukri": [ "NNP" ], "Scanner": [ "NNP" ], "UBS": [ "NNP" ], "interestingly": [ "RB" ], "Smallwood": [ "NNP" ], "immunization": [ "NN" ], "Pepto-Bismol": [ "NNP" ], "Learning": [ "NNP", "VBG" ], "Shu-tt": [ "VB" ], "woodshed": [ "NN" ], "Sidecar": [ "NN" ], "art-nouveau": [ "JJ" ], "brakes": [ "NNS", "VBZ" ], "philandering": [ "VBG" ], "histology": [ "NN" ], "Salomonovich": [ "NNP" ], "trade-union": [ "NN", "JJ" ], "fanfare": [ "NN" ], "Verbatim": [ "JJ" ], "higher-octane": [ "JJ" ], "Pittsburgh": [ "NNP" ], "gratuity": [ "NN" ], "exceeding": [ "VBG", "JJ" ], "slash": [ "VB", "NN", "VBP" ], "phasing": [ "VBG" ], "Hokan": [ "NNP" ], "variances": [ "NNS" ], "chargin": [ "VBG" ], "ruh": [ "FW" ], "run": [ "VB", "VBD", "VBN", "VBP", "NN" ], "pulpwood": [ "NN" ], "rum": [ "NN" ], "rub": [ "NN", "VB", "VBP" ], "first-time": [ "JJ" ], "Pymm": [ "NNP" ], "rug": [ "NN" ], "rue": [ "NN" ], "macro-instructions": [ "NNS" ], "short-story": [ "NN" ], "panhandle": [ "NN" ], "ochre": [ "JJ", "NN" ], "rut": [ "NN" ], "Grannell": [ "NNP" ], "integers": [ "NNS" ], "Girozentrale": [ "NNP" ], "Showdown": [ "NNP" ], "metrazol": [ "NN" ], "Lior": [ "NNP" ], "sourdough": [ "JJ", "NN" ], "Lion": [ "NNP" ], "Courier-Journal": [ "NNP" ], "F.O.O.D.": [ "NNP" ], "nonequivalent": [ "JJ" ], "Diagnosis": [ "NNP" ], "Thomp": [ "NN" ], "Eclectic": [ "JJ" ], "gambits": [ "NNS" ], "Racing": [ "NNP", "VBG" ], "rolls": [ "NNS", "VBZ" ], "Racine": [ "NNP" ], "Caddy": [ "NNP" ], "accountability": [ "NN" ], "marble-encased": [ "JJ" ], "heritage": [ "NN" ], "Northamptonshire": [ "NNP" ], "Kuster": [ "NNP" ], "Noll": [ "NNP" ], "sizzle": [ "NN", "VB" ], "bursitis": [ "NN" ], "lowprofile": [ "JJ" ], "syndicators": [ "NNS" ], "Individuals": [ "NNS" ], "Micronite": [ "NN" ], "warlike": [ "JJ" ], "fiber-end": [ "JJ" ], "Bostic": [ "NNP" ], "Kazis": [ "NNP" ], "lacheln": [ "FW" ], "Lilac": [ "NNP" ], "physical-chemical": [ "JJ" ], "U.N.-sponsored": [ "JJ" ], "Bostik": [ "NNP" ], "Tyszkiewicz": [ "NNP" ], "Murray": [ "NNP", "NN" ], "foresight": [ "NN" ], "origin...": [ ":" ], "gymnastics": [ "NNS" ], "stragglers": [ "NNS" ], "Wis.-based": [ "JJ" ], "Haarlem": [ "NNP" ], "Uchida": [ "NNP" ], "Shaw-Crier": [ "NNP" ], "fleshpots": [ "NNS" ], "animal-health": [ "NN" ], "Sizova": [ "NNP" ], "tormenters": [ "NNS" ], "pattered": [ "VBD" ], "Summertime": [ "NN" ], "tomography": [ "NN" ], "Kyodo": [ "NNP" ], "rough-tough": [ "JJ" ], "Lugar": [ "NNP" ], "ECUs": [ "NNS" ], "Kazan": [ "NNP" ], "Leather": [ "NNP" ], "preachers": [ "NNS" ], "Speaking": [ "VBG", "NN", "NNP" ], "vagabonds": [ "NNS" ], "lap-top": [ "JJ" ], "curriculum": [ "NN" ], "spectators": [ "NNS" ], "re-election": [ "NN", "JJ" ], "visits": [ "NNS", "VBZ" ], "Thought": [ "NNP", "VBD", "NN" ], "neocortex": [ "NN" ], "Teague": [ "NNP" ], "Emmett": [ "NNP" ], "S&P-down": [ "NN" ], "Mexicanos": [ "NNP" ], "required": [ "VBN", "VBD", "JJ" ], "humiliated": [ "VBN", "JJ" ], "cable-TV-system": [ "NN" ], "factually": [ "RB" ], "humiliates": [ "VBZ" ], "requires": [ "VBZ" ], "evenly": [ "RB" ], "block-buster": [ "NN" ], "eradicated": [ "VBN", "VBD" ], "nuns": [ "NNS" ], "Pell": [ "NNP", "NN" ], "unalloyed": [ "JJ" ], "Wright-style": [ "JJ" ], "marbleizing": [ "NN" ], "go": [ "VB", "JJ", "NN", "RP", "VBP" ], "gm": [ "NN" ], "Integrated": [ "NNP" ], "Af-fold": [ "JJ" ], "Cuisinart": [ "NNP" ], "baron": [ "NN" ], "earthbound": [ "JJ" ], "transacted": [ "VBN" ], "chinos": [ "NNS" ], "wizard": [ "NN" ], "airplay": [ "NN" ], "government-owned": [ "JJ" ], "attired": [ "JJ", "VBN" ], "brass-bound": [ "JJ" ], "Bet": [ "NNP" ], "Goriot": [ "NNP" ], "schooner": [ "NN" ], "Pulley": [ "NNP" ], "pro-family": [ "NN" ], "thermos": [ "NN" ], "self-diagnostic": [ "JJ" ], "Pullen": [ "NNP" ], "Bisi": [ "NNP" ], "SpA": [ "NNP" ], "defamatory": [ "JJ" ], "Hindelong": [ "NNP" ], "Teerlink": [ "NNP" ], "Spy": [ "NNP" ], "tonal": [ "JJ" ], "non-food": [ "JJ", "NN" ], "cyclosporine": [ "NN", "JJ" ], "Schuylkill": [ "NNP", "NN" ], "insurance-premium-finance": [ "JJ" ], "Spa": [ "NNP" ], "innately": [ "RB" ], "Solebury": [ "NNP" ], "five-count": [ "JJ" ], "oddball": [ "JJ" ], "Thynne": [ "NNP" ], "jetplane": [ "NN" ], "punishing": [ "VBG", "JJ" ], "digest-size": [ "JJ" ], "expunging": [ "NN" ], "Farentino": [ "NNP" ], "Same-store": [ "JJ" ], "clotting": [ "VBG" ], "predispositions": [ "NNS" ], "Soothing": [ "VBG" ], "limited-edition": [ "JJ" ], "Poirot": [ "NNP" ], "Rohatyn": [ "NNP" ], "auspices": [ "NNS" ], "Briefly": [ "RB" ], "sophists": [ "NNS" ], "Boyd": [ "NNP" ], "opaque": [ "JJ" ], "dealer": [ "NN" ], "espresso": [ "NN" ], "Boym": [ "NNP" ], "Boys": [ "NNPS", "NNP", "NNS" ], "rotten": [ "JJ" ], "Kirkland": [ "NNP" ], "Aulnay": [ "NNP" ], "schoolboys": [ "NNS" ], "Quatre": [ "NNP" ], "newcasts": [ "NNS" ], "vodkas": [ "NNS" ], "burnt-red": [ "JJ" ], "A.D.L.": [ "NNP" ], "Houghton": [ "NNP" ], "stance": [ "NN" ], "brokering": [ "VBG", "NN" ], "stanch": [ "VB", "JJ" ], "stock-fraud": [ "NN" ], "BANKERS": [ "NNS", "NNPS" ], "woolly-headed": [ "JJ" ], "growing": [ "VBG", "JJ", "NN" ], "inceptor": [ "NN" ], "Crimean": [ "NNP" ], "affidavits": [ "NNS" ], "Hedding": [ "NNP" ], "material0F.": [ "NN" ], "likened": [ "VBD", "VBN" ], "Colder": [ "JJR" ], "PATTON": [ "NNP" ], "Aho": [ "NNP" ], "Billheimer": [ "NNP" ], "repel": [ "VB", "VBP" ], "products": [ "NNS" ], "cataloging": [ "VBG" ], "fellow-men": [ "NNS" ], "Wonder": [ "NNP", "NN", "VBP" ], "examining": [ "VBG", "NN" ], "half-time": [ "NN", "JJ", "RB" ], "Portuguese-language": [ "JJ" ], "centum": [ "NN" ], "clout": [ "NN" ], "Lipson": [ "NNP" ], "Waldheim": [ "NNP" ], "ligament": [ "NN" ], "anomalies": [ "NNS" ], "horticultural": [ "JJ" ], "Dai-Tokyo": [ "NNP" ], "manipulate": [ "VB", "VBP" ], "strapped": [ "VBN", "VBD", "JJ" ], "aspirants": [ "NNS" ], "swanlike": [ "JJ" ], "arsines": [ "NNS" ], "Birkhead": [ "NNP" ], "vine-crisscrossed": [ "JJ" ], "indefensible": [ "JJ" ], "Appropriations": [ "NNP", "NNPS", "NNS" ], "statutes": [ "NNS" ], "benchmark": [ "NN", "JJ" ], "self-criticism": [ "NN" ], "missile": [ "NN" ], "Editorial": [ "JJ", "NN" ], "Anti-Ballistic": [ "NNP" ], "shrieked": [ "VBD" ], "burr-headed": [ "JJ" ], "SNET": [ "NNP" ], "RADIO": [ "NN", "NNP" ], "nurture": [ "VB", "NN" ], "Englanders": [ "NNPS" ], "repairman": [ "NN" ], "anthropological": [ "JJ" ], "headstand": [ "NN" ], "Similarities": [ "NNS" ], "Almighty": [ "NNP" ], "documenting": [ "VBG" ], "Aoki": [ "NNP" ], "hesitate": [ "VB", "VBP" ], "sealift": [ "NN" ], "ambivalence": [ "NN" ], "reoriented": [ "VBN" ], "Rothschilds": [ "NNPS" ], "digested": [ "VBN" ], "Furey": [ "NNP" ], "poetry": [ "NN" ], "YOUR": [ "JJ", "PRP$" ], "compiled": [ "VBN", "VBD" ], "cladding": [ "NN" ], "ideologically": [ "RB" ], "pink": [ "JJ", "NN" ], "fostered": [ "VBN", "VBD" ], "entree": [ "NN", "FW" ], "jiffy": [ "NN" ], "debasement": [ "NN" ], "Alleghenies": [ "NNPS" ], "Ltee": [ "NNP" ], "foment": [ "VB" ], "Ambassador-at-Large": [ "NNP" ], "sky-high": [ "JJ" ], "pansies": [ "NNS" ], "buoying": [ "VBG" ], "adjectival": [ "JJ" ], "Farewell": [ "NNP" ], "agenda": [ "NN", "NNS" ], "supply-sider": [ "NN" ], "immensity": [ "NN" ], "unsolved": [ "JJ" ], "unbreakable": [ "JJ" ], "Hongkong": [ "NNP" ], "frescoing": [ "NN" ], "offences": [ "NNS" ], "bogeymen": [ "NNS" ], "stator": [ "NN" ], "Schantz": [ "NNP" ], "Patchen": [ "NNP" ], "Bangles": [ "NNPS" ], "PWA-owned": [ "JJ" ], "special-technology": [ "NN" ], "exclusion": [ "NN" ], "housewife": [ "NN" ], "Allocation": [ "NN" ], "still-to-be-named": [ "JJ" ], "stock-index-futures": [ "NNS", "JJ" ], "Volunteer": [ "NNP" ], "Philibert": [ "NNP" ], "fieldmice": [ "NN" ], "sterios": [ "NNS" ], "pure": [ "JJ" ], "stratification": [ "NN" ], "unflaky": [ "JJ" ], "tile": [ "NN" ], "Salsich": [ "NNP" ], "Repeating": [ "VBG" ], "starchiness": [ "NN" ], "Coolest": [ "JJS" ], "Supreme": [ "NNP" ], "Yamane": [ "NNP" ], "fundraisers": [ "NNS" ], "McNear": [ "NNP" ], "foiling": [ "VBG" ], "McNeal": [ "NNP" ], "pools": [ "NNS", "VBZ" ], "lead-exposure": [ "JJ" ], "indolently": [ "RB" ], "Displaying": [ "VBG" ], "denuclearized": [ "VBN" ], "Albertson": [ "NNP" ], "SURVEYS": [ "NNS" ], "prognosticators": [ "NNS" ], "aggravates": [ "VBZ" ], "Hoxan": [ "NNP" ], "chunk": [ "NN" ], "index-linked": [ "JJ" ], "aggravated": [ "VBN", "VBD" ], "text-form": [ "NN" ], "seesaw": [ "NN", "JJ" ], "designer": [ "NN" ], "sands": [ "NNS" ], "Narbonne": [ "NNP" ], "sandy": [ "JJ" ], "lukewarm": [ "JJ" ], "EGYPT": [ "NNP" ], "Season": [ "NN", "NNP" ], "McVities": [ "NNP" ], "repositioning": [ "NN", "VBG" ], "fathom": [ "VB" ], "Juliette": [ "NNP" ], "scimitar": [ "NN" ], "Towering": [ "VBG", "JJ" ], "amendatory": [ "JJ" ], "spacesuits": [ "NNS" ], "Engle": [ "NNP" ], "Brumidi": [ "NNP" ], "Aptitude": [ "NNP" ], "terminated": [ "VBN", "VBD" ], "Gershen": [ "NNP" ], "Fundamental": [ "JJ", "NNP" ], "conservatives": [ "NNS" ], "alchemists": [ "NNS" ], "Judd-Boston": [ "NNP" ], "befriended": [ "VBD", "VBN" ], "Steiger": [ "NNP" ], "post-hearing": [ "JJ" ], "Stuart-family": [ "NN" ], "McLendon": [ "NNP" ], "Guimet": [ "NNP" ], "childless": [ "JJ" ], "standbys": [ "NNS" ], "mono-iodotyrosine": [ "JJ", "NN" ], "original-equipment": [ "JJ", "NN" ], "Sondheim": [ "NNP" ], "Newburger": [ "NNP" ], "Hybritech": [ "NNP" ], "Managing": [ "NNP", "VBG", "NN" ], "reserve-building": [ "NN" ], "lobule": [ "NN" ], "Burdett": [ "NNP" ], "Gunner": [ "NNP" ], "introspective": [ "JJ" ], "Pantasaph": [ "NNP" ], "NORTHEAST": [ "NN", "NNP" ], "fella": [ "NN", "UH" ], "ASP": [ "NNP" ], "WORD": [ "NN" ], "AST": [ "NNP" ], "guys": [ "NNS" ], "WORK": [ "VBP" ], "adjoins": [ "VBZ" ], "AS\\": [ "NNP", "NN" ], "chintz": [ "VBP" ], "attach": [ "VB", "VBP" ], "attack": [ "NN", "VBP", "VB" ], "buckaroos": [ "NNS" ], "Odom": [ "NNP" ], "motorcyle": [ "NN" ], "Klan": [ "NNP" ], "Rinehart": [ "NNP" ], "Roquemore": [ "NNP" ], "Teixeira": [ "NNP" ], "Bini": [ "NNP" ], "DUN": [ "NNP" ], "Rev.": [ "NNP" ], "Bing": [ "NNP" ], "clanging": [ "NN", "VBG" ], "DUF": [ "NN" ], "formalities": [ "NNS" ], "Bride": [ "NNP" ], "R": [ "NN", "NNP" ], "Dutton": [ "NNP" ], "World-Telegram": [ "NNP" ], "overwhelming": [ "JJ", "VBG" ], "updating": [ "VBG", "NN" ], "Grossman": [ "NNP" ], "choreographed": [ "VBN", "JJ" ], "Channing": [ "NNP" ], "Bognato": [ "NNP" ], "electroshock": [ "NN" ], "distinguishes": [ "VBZ" ], "beg": [ "VBP", "VB" ], "bed": [ "NN", "VB", "VBP" ], "bee": [ "NN" ], "RENT-A-CAR": [ "NNP" ], "snazzy": [ "JJ" ], "distinguished": [ "VBN", "JJ", "VBD" ], "bet": [ "NN", "RB", "VB", "VBD", "VBN", "VBP" ], "exhibit": [ "NN", "VBP", "VB" ], "rhythmic": [ "JJ" ], "Baris": [ "NNP" ], "Curtiss-Wright": [ "NNP" ], "R-stage": [ "JJ" ], "Gillette": [ "NNP", "NN" ], "Swiggett": [ "NNP" ], "carrots": [ "NNS" ], "center-field": [ "NN" ], "photographic-products": [ "JJ" ], "sardonic": [ "JJ" ], "battlegroups": [ "NNS" ], "torment": [ "NN", "VB" ], "all-options": [ "JJ" ], "Vegetable": [ "NN" ], "constrained": [ "VBN", "JJ" ], "batwings": [ "NNS" ], "rice-processing": [ "JJ" ], "Isabel": [ "NNP" ], "mainstays": [ "NNS" ], "square-built": [ "JJ" ], "INVESTORS": [ "NNS" ], "Retton": [ "NNP" ], "no-frills": [ "JJ" ], "instancy": [ "NN" ], "Dillinger": [ "NNP" ], "self-hatred": [ "NN" ], "instance": [ "NN" ], "romances": [ "NNS" ], "dimming": [ "VBG" ], "option-related": [ "JJ" ], "floundered": [ "VBN", "VBD" ], "hoodlums": [ "NNS" ], "Urals": [ "NNPS", "NNS" ], "Worlders": [ "NNPS" ], "demise": [ "NN" ], "Norths": [ "NNPS" ], "nuisance": [ "NN", "JJ" ], "Northy": [ "NNP" ], "bloodthirsty": [ "JJ" ], "Somersaults": [ "NNS" ], "consequences": [ "NNS" ], "WSJ\\/NBC": [ "NNP", "NN" ], "semi-retired": [ "JJ" ], "Growth": [ "NN", "NNP" ], "conventional-arms": [ "NNS", "JJ" ], "Brendel": [ "NNP" ], "ex-franchise": [ "NN" ], "affair": [ "NN" ], "six-ton": [ "JJ" ], "reprehensible": [ "JJ" ], "kiddie": [ "NN" ], "adjudicator": [ "NN" ], "anyway": [ "RB" ], "contour-obliterating": [ "JJ" ], "farfetched": [ "JJ" ], "coal-mining": [ "JJ" ], "parked": [ "VBN", "JJ", "VBD" ], "unenvied": [ "JJ" ], "Manske": [ "NNP" ], "counterterror": [ "JJ" ], "boutiques": [ "NNS" ], "remunerated": [ "VBN" ], "Bonaccolta": [ "NNP" ], "fiberglass": [ "NNS", "NN" ], "ever-lovin": [ "JJ" ], "millennia": [ "NN", "NNS" ], "Creditanstalt-Bankverein": [ "NNP" ], "attained": [ "VBD", "VBN" ], "sulfur": [ "NN" ], "stocks-index": [ "JJ" ], "Leszek": [ "NNP" ], "Medici": [ "NNPS" ], "quantified": [ "VBN" ], "Eats": [ "NNS" ], "bodybuilders": [ "NNS" ], "assimilable": [ "JJ" ], "User-friendly": [ "JJ" ], "Politically": [ "RB" ], "Ilva": [ "NNP" ], "ascended": [ "VBD" ], "evolution": [ "NN" ], "heart-wrenching": [ "JJ" ], "shy": [ "JJ", "NN", "RB", "VB", "VBP" ], "pricetags": [ "NNS" ], "uprisings": [ "NNS" ], "she": [ "PRP" ], "mixologists": [ "NNS" ], "Incrementally": [ "RB" ], "solicitous": [ "JJ" ], "flogged": [ "VBD" ], "Two-year": [ "JJ" ], "Stroking": [ "VBG" ], "sho": [ "UH" ], "movie-making": [ "NN" ], "home-building": [ "JJ", "NN" ], "accuses": [ "VBZ" ], "accuser": [ "NN" ], "halving": [ "VBG" ], "WEFA": [ "NNP" ], "typhoons": [ "NNS" ], "inkling": [ "NN" ], "differs": [ "VBZ" ], "Williamstown": [ "NNP" ], "accused": [ "VBN", "VBD", "JJ", "NN" ], "usefulness": [ "NN" ], "Tartary": [ "NNP" ], "configuration-data": [ "JJ" ], "pianism": [ "NN" ], "add-ons": [ "NNS" ], "Hergesheimer": [ "NNP" ], "Chiriqui": [ "NNP" ], "Dimaggio": [ "NNP" ], "horribly": [ "RB" ], "willpower": [ "NN" ], "arraigned": [ "VBD", "VBN" ], "horrible": [ "JJ", "NN" ], "neither": [ "DT", "NN", "RB", "CC" ], "INCREASING": [ "VBG" ], "kidneys": [ "NNS" ], "Wipe": [ "VB" ], "BellSouth-LIN": [ "NNP", "JJ" ], "McAlinden": [ "NNP" ], "ultracentrifugation": [ "NN" ], "spares": [ "NNS", "VBZ" ], "Campo": [ "NNP" ], "Recall": [ "VB", "VBP" ], "extolling": [ "VBG" ], "seemed": [ "VBD", "VBN" ], "spared": [ "VBN", "VBD" ], "Remain": [ "VB" ], "Race": [ "NNP", "NN" ], "middle-level": [ "JJ" ], "ailerons": [ "NNS" ], "approval": [ "NN" ], "mujahideen": [ "FW" ], "Tunnard": [ "NNP" ], "undetermined": [ "JJ" ], "Poling": [ "NNP" ], "meritless": [ "JJ" ], "Revlon": [ "NNP", "NN" ], "at-risk": [ "JJ" ], "control-room": [ "NN" ], "anchormen": [ "NNS" ], "Masson": [ "NNP" ], "year-before": [ "JJ" ], "Headlines": [ "NNS" ], "High-grade": [ "JJ" ], "fee-per-day": [ "NN" ], "Kyo-zan": [ "NN" ], "Chabrier": [ "NNP" ], "franchise": [ "NN", "VB" ], "Tabuchi": [ "NNP" ], "quantity-based": [ "JJ" ], "feeblest": [ "JJS" ], "Regalia": [ "NNP" ], "Middle-Eastern": [ "JJ" ], "addition": [ "NN" ], "new-mown": [ "JJ" ], "Immigration": [ "NNP" ], "conjoined": [ "VBN" ], "chimiques": [ "FW" ], "MOTOR": [ "NNP" ], "do-nothing": [ "JJ" ], "Raider": [ "NNP" ], "armistice": [ "NN" ], "isolating": [ "VBG", "JJ" ], "banshees": [ "NNS" ], "well-paid": [ "JJ" ], "Pretend": [ "VB" ], "SEC.": [ "NNP" ], "ghoulish": [ "JJ" ], "expenditure": [ "NN" ], "Repayment": [ "NNP" ], "Lutsenko": [ "NNP" ], "brunch": [ "NN" ], "capering": [ "VBG" ], "Logistics": [ "NNP" ], "owne": [ "JJ" ], "Tired": [ "JJ", "VBN" ], "contexts": [ "NNS" ], "supervened": [ "VBN" ], "ripen": [ "VBP" ], "Avocado": [ "NNP" ], "chanceries": [ "NNS" ], "Tires": [ "NNS", "NNPS" ], "disaster-subsidy": [ "JJ" ], "Rusty": [ "NNP" ], "tt": [ "NN" ], "non-surgical": [ "JJ" ], "inaccurately": [ "RB" ], "owns": [ "VBZ" ], "cornering": [ "VBG" ], "bi-modal": [ "JJ" ], "Cyprus": [ "NNP" ], "TAKING": [ "VBG" ], "ArgoSystems": [ "NNPS" ], "Troops": [ "NNS", "NNP" ], "Laverty": [ "NNP" ], "neuron": [ "NN" ], "tonic": [ "NN" ], "interrogate": [ "VB" ], "plundered": [ "VBN" ], "deterence": [ "NN" ], "channel-zapping": [ "JJ" ], "disclosures": [ "NNS", "VBZ" ], "windmill": [ "NN" ], "orbital": [ "JJ", "NN" ], "Dresdner": [ "NNP" ], "calamitous": [ "JJ" ], "incumbent": [ "JJ", "NN" ], "blight": [ "NN" ], "Machelle": [ "NNP" ], "Mix-Up": [ "NN" ], "Viareggio": [ "NNP" ], "post-reapportionment": [ "JJ" ], "Repairing": [ "VBG" ], "Huddle": [ "NN" ], "hardliner": [ "NN" ], "Financial-service": [ "NN" ], "rightfully": [ "RB" ], "Lucassen": [ "NNP" ], "compared": [ "VBN", "VBD" ], "Sabo": [ "NNP" ], "wrongly": [ "RB" ], "Saba": [ "NNP" ], "Grimes": [ "NNP" ], "Norsk": [ "NNP" ], "transaction": [ "NN" ], "freight-transport": [ "JJ", "NN" ], "reflection": [ "NN" ], "Throwing": [ "VBG" ], "Meinckian": [ "NNP" ], "Damonne": [ "NNP" ], "sanipractor": [ "NN" ], "campaign-decided": [ "NN" ], "HEUBLEIN": [ "NNP" ], "Superman": [ "NNP" ], "She": [ "PRP", "NN" ], "taller": [ "JJR", "RBR" ], "non-communists": [ "NNS" ], "schnooks": [ "NNS" ], "tell...": [ ":" ], "Blaber": [ "NNP" ], "Perasso": [ "NNP" ], "centralizing": [ "VBG", "JJ" ], "incentive-spurred": [ "JJ" ], "spells": [ "VBZ", "NNS" ], "reaffirmation": [ "NN" ], "saviour": [ "NN" ], "Waldenbooks": [ "NNP" ], "beta-blocker": [ "NN" ], "stock-picking": [ "JJ", "NN" ], "fine-tune": [ "VB" ], "deposits": [ "NNS", "VBZ" ], "deuterated": [ "VBD" ], "Broner": [ "NNP" ], "footballer": [ "NN" ], "drug-supply": [ "JJ" ], "homework": [ "NN" ], "Yasser": [ "NNP" ], "sonic": [ "JJ" ], "wooed": [ "VBN", "VBD" ], "definitive": [ "JJ" ], "fate": [ "NN" ], "whims": [ "NNS" ], "swami": [ "NNS" ], "fats": [ "NNS" ], "die-up": [ "NN" ], "historic": [ "JJ" ], "Autolatina": [ "NNP" ], "Attributes": [ "NNS" ], "dental-products": [ "NNS" ], "Proof": [ "NN" ], "Inspectors": [ "NNS" ], "break-the-rules": [ "JJ" ], "renegade": [ "NN" ], "nameplate": [ "NN" ], "sizes": [ "NNS", "VBZ" ], "worthwile": [ "VB" ], "Burchuladze": [ "NNP" ], "candy": [ "NN" ], "sized": [ "VBD", "JJ", "VBN" ], "tablespoons": [ "NNS" ], "pinging": [ "VBG" ], "hydrolyzed": [ "VBN" ], "lends": [ "VBZ" ], "Hoaps": [ "NNP" ], "Albrecht": [ "NNP" ], "Gerbig": [ "NNP" ], "rims": [ "NNS" ], "Teipel": [ "NNP" ], "upswing": [ "NN" ], "goats": [ "NNS" ], "Babylon": [ "NNP" ], "Seizes": [ "VBZ" ], "price-and-seasonally": [ "RB" ], "sorption": [ "NN" ], "Institutio": [ "NNP" ], "retirements": [ "NNS" ], "Rhythms": [ "NNPS" ], "medieval": [ "JJ", "NN" ], "Practically": [ "RB" ], "Leavenworth": [ "NNP" ], "expansion": [ "NN", "JJ" ], "Strobel": [ "NNP" ], "imperfectly": [ "RB" ], "choked": [ "VBD", "VBN" ], "Aslanian": [ "NNP" ], "Pyrometer": [ "NNP" ], "Antiquity": [ "NN" ], "eatables": [ "NNS" ], "U": [ "NNP", "NN" ], "seraphim": [ "NN" ], "reptile": [ "NN" ], "celebrations": [ "NNS" ], "Ford-Kissinger": [ "NNP" ], "citron": [ "JJ" ], "Graph": [ "NN" ], "evocation": [ "NN" ], "mushrooms": [ "NNS" ], "Foxx": [ "NNP" ], "brusquely": [ "RB" ], "secretive": [ "JJ" ], "winging": [ "VBG" ], "Nakamura": [ "NNP" ], "agin": [ "IN", "RB" ], "Rameau": [ "NNP" ], "Dunlop": [ "NNP" ], "Dayton": [ "NNP" ], "Lorca": [ "NNP" ], "CGE": [ "NNP" ], "accountant": [ "NN" ], "figuratively": [ "RB" ], "inner": [ "JJ" ], "CGP": [ "NNP" ], "TEDs": [ "NNS" ], "backhand": [ "NN" ], "R.F.": [ "NNP" ], "Perin": [ "NNP" ], "FED": [ "NNP" ], "prophetic": [ "JJ" ], "Campitelli": [ "NNP" ], "government-encouraged": [ "JJ" ], "administrators": [ "NNS" ], "Daschle": [ "NNP" ], "fraternities": [ "NNS" ], "Hesse": [ "NNP" ], "Harrows": [ "NNPS" ], "Industrial": [ "NNP", "JJ" ], "apiece": [ "RB", "JJ" ], "annuities": [ "NNS" ], "millstones": [ "NNS" ], "projecting": [ "VBG" ], "Seashore": [ "NNP" ], "gagged": [ "VBN", "VBD" ], "Cacao": [ "NNP" ], "i.d.": [ "NN" ], "Industrias": [ "NNP" ], "mechanics": [ "NNS" ], "Semel": [ "NNP" ], "Alla": [ "NNP" ], "boulevards": [ "NNS" ], "cost-efficiency": [ "NN" ], "Tasaki": [ "NNP" ], "Fellows": [ "NNS" ], "impulse-related": [ "JJ" ], "build-ups": [ "NNS" ], "Ally": [ "VBP" ], "baksheesh": [ "NN" ], "folio": [ "NN" ], "castigation": [ "NN" ], "equiment": [ "NN" ], "torrid": [ "JJ" ], "savagely": [ "RB" ], "Appell": [ "NNP" ], "meteor": [ "NN" ], "Telecommuncations": [ "NNPS" ], "jamming": [ "NN" ], "Mexico-watchers": [ "NNS" ], "indiscretions": [ "NNS" ], "deficit-reduction": [ "NN", "JJ" ], "Depicted": [ "VBN" ], "impurity": [ "NN" ], "bronchi": [ "NNS" ], "Allday": [ "NNP" ], "Aflatoxin": [ "NN" ], "Date": [ "NN", "NNP" ], "Healey": [ "NNP" ], "tightest": [ "JJS", "RBS" ], "unsteadily": [ "RB" ], "Chambers": [ "NNP", "NNS", "NNPS" ], "retirees": [ "NNS" ], "Savage": [ "NNP", "JJ" ], "Engraph": [ "NNP" ], "Bernstein-Macaulay": [ "NNP" ], "coal-preparation": [ "JJ" ], "protest": [ "NN", "VB", "VBP" ], "Toledo": [ "NNP", "NN" ], "intermingle": [ "VBP" ], "IJAL": [ "NNP" ], "up.": [ "RB" ], "fronts": [ "NNS" ], "Liverpool": [ "NNP" ], "Klein": [ "NNP" ], "Lunge": [ "NNP" ], "restriction": [ "NN" ], "onstage": [ "NN", "RB" ], "high-coupon": [ "JJ" ], "Grocery": [ "NNP", "NN" ], "pro-environmental": [ "JJ" ], "activation": [ "NN" ], "Auschwitz": [ "NNP" ], "clear-channel": [ "JJ", "NN" ], "dealer-managers": [ "NNS" ], "advocating": [ "VBG" ], "Queks": [ "NNPS" ], "snowflakes": [ "NNS" ], "well-structured": [ "JJ" ], "shoelace": [ "NN" ], "pure-meat": [ "NN" ], "nursery": [ "NN", "JJ" ], "greenish": [ "JJ" ], "fortiori": [ "FW" ], "closed-circuit": [ "JJ" ], "machine-gun": [ "NN" ], "swoons": [ "NNS" ], "bimonthly": [ "JJ" ], "Strasbourg": [ "NNP" ], "concise": [ "JJ" ], "Negative": [ "JJ" ], "Hounds": [ "NNPS" ], "evaluated": [ "VBN", "VBD" ], "twiddled": [ "VBD" ], "Affected": [ "VBN" ], "desirous": [ "JJ" ], "hang-tough": [ "JJ" ], "now-ousted": [ "JJ" ], "unskilled": [ "JJ" ], "fetish": [ "NN" ], "Anselmo": [ "NNP" ], "evolving": [ "VBG" ], "centric": [ "JJ" ], "baby-food": [ "JJ" ], "Items": [ "NNS" ], "never": [ "RB", "RBR" ], "Artisans": [ "NNS" ], "S.I.": [ "NNP" ], "second-hand": [ "JJ" ], "cardboard": [ "NN", "JJ" ], "Georgano": [ "NNP" ], "Fragile": [ "NNP" ], "buckled": [ "VBD", "VBN", "JJ" ], "vulnerability": [ "NN" ], "groveling": [ "VBG", "NN" ], "piercing": [ "VBG", "JJ" ], "Soering": [ "NNP" ], "tolerating": [ "VBG", "JJ" ], "golds": [ "NNS" ], "weapons-grade": [ "JJ" ], "monosyllable": [ "NN" ], "Lilley": [ "NNP" ], "astute": [ "JJ" ], "Archangel": [ "NNP" ], "exquisiteness": [ "NN" ], "hunch": [ "NN", "VB" ], "elaborated": [ "VBN" ], "second-deadliest": [ "JJ" ], "shelter.": [ "NN" ], "dehumanize": [ "VB" ], "treatment": [ "NN" ], "elaborates": [ "VBZ" ], "near-monopoly": [ "NN", "JJ" ], "Telemundo": [ "NNP" ], "Binning": [ "NNP" ], "drowned": [ "VBN", "JJ", "VBD" ], "college-educated": [ "JJ" ], "Armies": [ "NNP" ], "Corresponding": [ "VBG" ], "mortality": [ "NN" ], "unsteadiness": [ "NN" ], "Heuvelmans": [ "NNP" ], "exited": [ "VBD", "VBN" ], "panacea": [ "NN" ], "Loire": [ "NNP" ], "misfiring": [ "VBG" ], "Insisting": [ "VBG" ], "Removed": [ "VBN" ], "tell": [ "VB", "VBP" ], "slam-dunk": [ "NN", "VB" ], "expose": [ "VB", "NN", "VBP" ], "Yuen": [ "NNP" ], "underwear": [ "NN" ], "Hibbard": [ "NNP" ], "loony": [ "JJ" ], "A.D.": [ "NNP", "FW", "NN", "RB" ], "shelters": [ "NNS" ], "counter-trade": [ "JJ" ], "Esrey": [ "NNP" ], "inhabited": [ "VBN", "VBD", "JJ" ], "directorial": [ "JJ" ], "Vittorio": [ "NNP" ], "rights": [ "NNS" ], "Cornwallis": [ "NNP" ], "Vittoria": [ "NNP" ], "foliage": [ "NN" ], "Japan-made": [ "JJ" ], "frantic": [ "JJ" ], "home-center": [ "NN" ], "endow": [ "VB", "VBP" ], "Short-term": [ "JJ", "NNP" ], "summarizes": [ "VBZ" ], "barbers": [ "NNS" ], "U.s": [ "NNP" ], "Ricken": [ "NNP" ], "squirting": [ "VBG" ], "CALLS": [ "NNPS" ], "give": [ "VB", "NN", "VBP" ], "high-efficiency": [ "NN" ], "TransAtlantic": [ "NNP" ], "Humphries": [ "NNP" ], "gleefully": [ "RB" ], "artifically": [ "RB" ], "laser-surgery": [ "NN" ], "crystallized": [ "VBD", "VBN" ], "U.S": [ "NNP", "SYM" ], "polio": [ "NN" ], "Phoenix": [ "NNP" ], "Gaisman": [ "NNP" ], "scrivener": [ "NN" ], "braids": [ "NNS" ], "stupidity": [ "NN" ], "Jack": [ "NNP" ], "polis": [ "NN" ], "Mokaba": [ "NNP" ], "butting": [ "VBG" ], "U.K": [ "NNP" ], "U.N": [ "NNP" ], "Hashing": [ "NN", "NNP" ], "Excision": [ "NN" ], "peopled": [ "VBN" ], "Neesen": [ "NNP" ], "futures-exchange": [ "NN" ], "abdomen": [ "NN" ], "Connolly": [ "NNP" ], "Prickly": [ "JJ" ], "Quinton": [ "NNP" ], "do-gooder": [ "JJ", "NN" ], "Shlomo": [ "NNP" ], "kangaroo-committee": [ "NN" ], "summarize": [ "VB" ], "muddling": [ "VBG" ], "ambivalent": [ "JJ" ], "suppressants": [ "NNS" ], "DEFERRED": [ "JJ" ], "U.S.A.": [ "NNP", "NN" ], "electronic-test": [ "JJ" ], "under-50": [ "JJ" ], "gulling": [ "VBG" ], "anti-miscarriage": [ "JJ" ], "cold-cuts": [ "NNS" ], "L.B.": [ "NNP" ], "cofactors": [ "NNS" ], "Sharps": [ "NNP" ], "amplifying": [ "VBG" ], "overstepping": [ "VBG" ], "elucidations": [ "NNS" ], "Sharpe": [ "NNP" ], "panthers": [ "NNS" ], "partisans": [ "NNS" ], "indispensible": [ "JJ" ], "private-label": [ "JJ", "NN" ], "three-week-old": [ "JJ" ], "soaking": [ "VBG", "JJ", "NN", "RB" ], "stopover": [ "NN" ], "DIASONICS": [ "NNP" ], "superhighway": [ "NN" ], "anti-lobbying": [ "JJ" ], "Bobby": [ "NNP" ], "decions": [ "NNS" ], "Detail": [ "NNP" ], "underscore": [ "VBP", "NN", "VB" ], "family-welfare": [ "NN" ], "Frederik": [ "NNP" ], "heavy-industry": [ "NN" ], "Weakens": [ "VBZ" ], "Capitol-EMI": [ "NNP" ], "brightness": [ "NN" ], "quarter-century": [ "NN", "JJ" ], "calibrating": [ "VBG" ], "investigator": [ "NN" ], "Sapanski": [ "NNP" ], "lucy": [ "NN" ], "Goose": [ "NNP" ], "Fortescue": [ "NNP" ], "Milan": [ "NNP" ], "less-cyclical": [ "JJ" ], "Tacker": [ "NNP" ], "motoring": [ "VBG" ], "luck": [ "NN" ], "adobe": [ "NN" ], "enthusiasts": [ "NNS" ], "Dressed": [ "VBN" ], "Wow": [ "UH" ], "RNAs": [ "NNS" ], "Charts": [ "NNS" ], "Waleson": [ "NNP" ], "Woo": [ "NNP" ], "taught": [ "VBN", "VBD" ], "Bogner": [ "NNP" ], "polivinylchloride": [ "NN" ], "Woe": [ "NN" ], "enclosure": [ "NN" ], "Dresses": [ "NNS" ], "Dresser": [ "NNP" ], "conjectures": [ "NNS", "VBZ" ], "roadblock": [ "NN" ], "decree": [ "NN" ], "COOPER": [ "NNP" ], "pig-infested": [ "JJ" ], "stagemate": [ "NN" ], "freelancers": [ "NNS" ], "anesthetically": [ "RB" ], "ranted": [ "VBD" ], "HMS": [ "NNP" ], "conjectured": [ "VBN" ], "Tractarians": [ "NNS" ], "appraisers": [ "NNS" ], "HMA": [ "NNP" ], "Warners": [ "NNS" ], "primitive-eclogue": [ "JJ" ], "spring-joints": [ "NN" ], "grease": [ "NN" ], "Emeryville": [ "NNP" ], "Ricans": [ "NNS", "NNP", "NNPS" ], "Weigand": [ "NNP" ], "Crowder": [ "NNP" ], "over-emphasize": [ "JJ" ], "mistress": [ "NN" ], "monologue": [ "NN" ], "tax-rate": [ "JJ", "NN" ], "greasy": [ "JJ" ], "logging": [ "NN", "VBG", "JJ" ], "childishly": [ "RB" ], "trade-mark": [ "NN" ], "ist": [ "FW" ], "prodigal": [ "JJ" ], "braggadocio": [ "NN" ], "perforated": [ "JJ" ], "cellars": [ "NNS" ], "loud": [ "JJ", "RB" ], "skilled-nursing": [ "JJ" ], "grownups": [ "NNS" ], "Dorothee": [ "NNP" ], "hoop": [ "NN" ], "Sovereign": [ "NNP" ], "hoot": [ "NN", "VBP" ], "hook": [ "NN", "VB" ], "Villanova": [ "NNP" ], "Folks": [ "NNS" ], "hoof": [ "NN" ], "hood": [ "NN" ], "Attali": [ "NNP" ], "goblins": [ "NNS" ], "ECA": [ "NNP" ], "financial-futures": [ "NNS" ], "Hanover-Pebble": [ "NNP" ], "non-realistic": [ "JJ" ], "ECI": [ "NNP" ], "business-like": [ "JJ" ], "ECU": [ "NNP" ], "Wittgreen": [ "NNP" ], "Dainippon": [ "NNP" ], "ECP": [ "NNP" ], "non-duck": [ "JJ" ], "inferno": [ "NN" ], "twenty-first-century": [ "JJ" ], "steamily": [ "RB" ], "ballyhooey": [ "NN" ], "inflow": [ "NN" ], "mutate": [ "VB" ], "bed-and-breakfast": [ "JJ" ], "nondefense": [ "JJ", "NN" ], "individual-contributor": [ "NN" ], "self-restraint": [ "NN" ], "Boonton": [ "NNP" ], "Neighbor": [ "NN" ], "Geroge": [ "NNP" ], "swells": [ "NNS", "VBZ" ], "mid-thirties": [ "NNS" ], "Purchases": [ "NNS", "NNPS" ], "bondholder": [ "NN" ], "M.A.": [ "NNP" ], "cruelly": [ "RB" ], "depraved": [ "JJ", "VBN" ], "Galina": [ "NNP" ], "Sticker": [ "NN" ], "normalizing": [ "VBG" ], "artillerist": [ "NN" ], "matter": [ "NN", "VBP", "VB" ], "Colin": [ "NNP" ], "childlike": [ "JJ" ], "espouse": [ "VBP" ], "clerical-lay": [ "JJ" ], "Louisiana-Pacific": [ "NNP" ], "Floor": [ "NNP", "NN" ], "pistons": [ "NNS" ], "rivers": [ "NNS" ], "Flood": [ "NNP", "VBP" ], "Coaching": [ "NN" ], "childcare": [ "NN" ], "expeditions": [ "NNS" ], "reprieve": [ "NN" ], "Poets": [ "NNS" ], "power-hungry": [ "JJ" ], "boaters": [ "NNS" ], "it...": [ ":" ], "demoralizing": [ "VBG" ], "subcontracts": [ "NNS" ], "Khin": [ "NNP" ], "Instructions": [ "NNS", "NNP" ], "Dirks": [ "NNP", "NNS" ], "wrists": [ "NNS" ], "psychologically": [ "RB" ], "replenished": [ "VBN", "VBD" ], "Ludlow": [ "NNPS" ], "repatriate": [ "VB", "VBP" ], "Adelia": [ "NNP" ], "government-set": [ "VBN" ], "inconsistency": [ "NN" ], "Trenton": [ "NNP" ], "Dynasts": [ "NNPS" ], "torchbearer": [ "NN" ], "greased": [ "VBD", "VBN" ], "Dynasty": [ "NNP", "NN" ], "summitry": [ "NN" ], "SHOPPERS": [ "NNS" ], "greases": [ "NNS" ], "moviemakers": [ "NNS" ], "half-implemented": [ "JJ" ], "Marketers": [ "NNS", "NNPS" ], "Karsner": [ "NNP" ], "visitor": [ "NN" ], "brilliance": [ "NN" ], "calculable": [ "JJ" ], "Bay-front": [ "JJ" ], "Alvan": [ "NNP" ], "evil-but-cute": [ "JJ" ], "resisting": [ "VBG" ], "divinity": [ "NN" ], "unleashes": [ "VBZ" ], "wooden-leg": [ "NN" ], "paralleling": [ "VBG" ], "Amana": [ "NNP" ], "MicroGeneSys": [ "NNP" ], "acne": [ "NN" ], "folded": [ "VBN", "VBD", "JJ" ], "interpenetration": [ "NN" ], "Wight": [ "NNP" ], "Wolverton": [ "NNP" ], "integrate": [ "VB", "VBP" ], "slender-waisted": [ "JJ" ], "edict": [ "NN" ], "early-childhood": [ "NN" ], "Unitours": [ "NNPS" ], "somnambulates": [ "VBZ" ], "Comics": [ "NNPS" ], "warmheartedness": [ "NN" ], "stop": [ "VB", "NN", "VBP" ], "Cawley": [ "NNP" ], "libellos": [ "NNS" ], "cracks": [ "NNS", "VBZ" ], "HEWLETT-PACKARD": [ "NNP" ], "coating": [ "NN", "VBG" ], "thermoforming": [ "JJ" ], "comply": [ "VB", "VBP" ], "Gloucester": [ "NNP" ], "briefer": [ "JJR" ], "POUNDED": [ "VBD" ], "Sally": [ "NNP", "NN" ], "rime": [ "NN" ], "thrusts": [ "NNS", "VBZ" ], "weed-killing": [ "JJ" ], "briefed": [ "VBN", "VBD" ], "consanguineously": [ "RB" ], "prowazwki": [ "NN" ], "fertility": [ "NN" ], "Straniera": [ "NNP" ], "Clapping": [ "VBG" ], "Joint-research": [ "JJ" ], "ethical": [ "JJ" ], "reference": [ "NN" ], "Roark": [ "NNP" ], "tie-up": [ "NN" ], "sturgeon": [ "NN" ], "Kempinski": [ "NNP" ], "Juanita": [ "NNP" ], "Viag": [ "NNP" ], "Wangemans": [ "NNPS" ], "ficus": [ "NN" ], "constrictor": [ "NN" ], "revenuers": [ "NNS" ], "causeway": [ "NN" ], "auto-strop": [ "JJ" ], "tantamount": [ "JJ" ], "electricity-industry": [ "NN" ], "unbanning": [ "VBG", "NN" ], "Bucknell": [ "NNP" ], "Yards": [ "NNP" ], "Eurofighter": [ "NNP" ], "juxtapose": [ "VBP" ], "deflecting": [ "VBG" ], "Podolsky": [ "NNP" ], "were": [ "VBD", "VB" ], "pickins": [ "NNS" ], "richest": [ "JJS" ], "telecopier": [ "NN" ], "modeling": [ "NN", "JJ", "VBG" ], "picking": [ "VBG", "NN" ], "white-clad": [ "JJ" ], "mucky": [ "JJ" ], "horsemen": [ "NNS" ], "prudential": [ "JJ" ], "subverting": [ "VBG" ], "Abnormal": [ "JJ" ], "Refcorps": [ "NNS" ], "distinction": [ "NN" ], "Reasoning": [ "NN", "NNP" ], "typist": [ "NN" ], "Devoted": [ "VBN" ], "appeared": [ "VBD", "VBN" ], "Jouvet": [ "NNP" ], "Snow": [ "NNP", "NN" ], "hygiene": [ "NN" ], "administrations": [ "NNS" ], "Wentworth": [ "NNP" ], "Constantin": [ "NNP" ], "turnouts": [ "NNS" ], "dusting": [ "VBG", "NN" ], "unsloped": [ "JJ" ], "particulars": [ "NNS" ], "recognised": [ "VBD" ], "Cagayan": [ "NNP" ], "ethers": [ "NNS" ], "obtained": [ "VBN", "VBD", "VBP" ], "Stout": [ "NNP" ], "quantities": [ "NNS" ], "sunshine": [ "NN" ], "less.": [ "NN" ], "marijuana": [ "NN" ], "sunshiny": [ "JJ" ], "Marines": [ "NNPS", "NNS" ], "individualists": [ "NNS" ], "misquoted": [ "VBN" ], "Huskers": [ "NNPS" ], "Boothby": [ "NNP" ], "profitably": [ "RB" ], "Sellars": [ "NNP" ], "near": [ "IN", "RB", "VB", "JJ" ], "apocryphal": [ "JJ" ], "neat": [ "JJ" ], "motorist": [ "NN" ], "DESPITE": [ "IN" ], "Tigard": [ "NNP" ], "Enel": [ "NNP" ], "anchor": [ "NN", "VBP", "VB" ], "power-starved": [ "JJ" ], "automotive-emissions-testing": [ "JJ" ], "traditionalistic": [ "JJ" ], "ip": [ "NN" ], "is": [ "VBZ", "RB", "NNS", "VBP" ], "it": [ "PRP" ], "Dante": [ "NNP", "NN" ], "strivers": [ "NNS" ], "Ruder": [ "NNP" ], "ij": [ "NN" ], "jest": [ "NN" ], "in": [ "IN", "FW", "NN", "RB", "RP", "IN|RP", "NNP", "RP|IN", "RBR", "VBD" ], "textiles": [ "NNS" ], "sanitized": [ "VBN" ], "two-product": [ "JJ" ], "convulsively": [ "RB" ], "overstated": [ "VBN", "VBD" ], "bottles": [ "NNS", "VBZ" ], "Fergeson": [ "NNP" ], "anoint": [ "VB" ], "insulin-dependent": [ "JJ" ], "bottled": [ "JJ", "VBD", "VBN" ], "Berettas": [ "NNS" ], "overstates": [ "VBZ" ], "Chilblains": [ "NNS" ], "phobias": [ "NNS" ], "Pencils": [ "NNS" ], "astringent": [ "JJ" ], "no-man": [ "JJ" ], "declaring": [ "VBG" ], "redevelop": [ "VB" ], "Neihart": [ "NNP" ], "self-sufficiency": [ "NN" ], "Bramwell": [ "NNP" ], "lonesome": [ "JJ" ], "Hard-Hearted": [ "NNP" ], "Truck": [ "NNP", "NN" ], "quarter-inch": [ "JJ" ], "potentials": [ "NNS" ], "Craftsmen": [ "NNPS", "NNP" ], "Air": [ "NNP", "NN" ], "stiffened": [ "VBD", "VBN" ], "pari-mutuel": [ "JJ" ], "Pelican": [ "NNP" ], "practiced": [ "VBN", "VBD", "JJ" ], "BeechNut": [ "NNP" ], "timeouts": [ "NNS" ], "Pucik": [ "NNP" ], "drug-policy": [ "NN" ], "Sakaguchi": [ "NNP" ], "Sonja": [ "NNP" ], "crabapple": [ "NN" ], "Vasvani": [ "NNP" ], "squamous": [ "JJ" ], "practices": [ "NNS", "VBZ" ], "tombstone": [ "NN" ], "Minicar": [ "JJ" ], "Packaged-goods": [ "NNS" ], "Thornburg": [ "NNP" ], "facto": [ "FW", "JJ", "NN" ], "Musician": [ "NN" ], "Sulaiman": [ "NNP" ], "molar": [ "NN" ], "sporting": [ "VBG", "JJ", "NN" ], "belowground": [ "NN" ], "bandwidth": [ "NN" ], "identify": [ "VB", "VBP" ], "Drivon": [ "NNP" ], "supernormal": [ "JJ" ], "facts": [ "NNS" ], "Shenzhen": [ "NNP" ], "bed-type": [ "JJ" ], "sunflower": [ "NN" ], "Mattone": [ "NNP" ], "regarded": [ "VBN", "JJ", "VBD" ], "Rotunda": [ "NNP" ], "defray": [ "VB" ], "Censorship": [ "NN" ], "moody": [ "JJ" ], "ALLY": [ "NN" ], "beholds": [ "VBZ" ], "fluidity": [ "NN" ], "Holch": [ "NNP" ], "Freya": [ "NNP" ], "darlings": [ "NNS" ], "twin-jet": [ "NN" ], "converged": [ "VBD" ], "Albania": [ "NNP" ], "vapors": [ "NNS" ], "Lucca": [ "NNP" ], "reconsidering": [ "VBG" ], "coarseness": [ "NN" ], "low-down": [ "NN", "JJ" ], "Alvise": [ "NNP" ], "criminal-law": [ "NN" ], "Targo": [ "JJ" ], "esthetics": [ "NNS" ], "svelte-looking": [ "JJ" ], "signposts": [ "NNS" ], "unexplored": [ "JJ" ], "anodes": [ "NNS" ], "package-delivery": [ "JJ" ], "holdup": [ "NN" ], "Crude-goods": [ "NNS" ], "scrimmage": [ "NN" ], "Klauber": [ "NNP" ], "first-three": [ "JJ" ], "Denverite": [ "NNP" ], "Lifeco": [ "NNP" ], "Maddry": [ "NNP" ], "red-turbaned": [ "JJ" ], "notification": [ "NN" ], "Covering": [ "NNP" ], "Triandos": [ "NNP" ], "daytime": [ "JJ", "NN" ], "RNA-based": [ "JJ" ], "motor-control": [ "JJ" ], "societyonly": [ "RB" ], "JMB": [ "NNP" ], "unmagnified": [ "JJ" ], "nonpoisonous": [ "JJ" ], "Basse": [ "NNP" ], "friend-of-the-court": [ "JJ" ], "bank-backed": [ "JJ" ], "burl": [ "NN" ], "car-safety": [ "JJ", "NN" ], "Baileefe": [ "NNP" ], "Swedes": [ "NNPS", "NNP", "NNS" ], "Sweden": [ "NNP" ], "firemen": [ "NNS" ], "burr": [ "NN" ], "bury": [ "VB", "VBP" ], "unendurable": [ "JJ" ], "BECHTEL": [ "NNP" ], "zur": [ "FW" ], "B.F.": [ "NNP" ], "Conceptually": [ "RB" ], "untenured": [ "VBN" ], "gabbing": [ "VBG" ], "sleep-disorder": [ "JJ" ], "unwillingly": [ "RB" ], "Technicians": [ "NNPS", "NNS" ], "Evidence": [ "NN" ], "incentive-maximizing": [ "JJ" ], "Lappenberg": [ "NNP" ], "Idal": [ "NNP" ], "Rindos": [ "NNP" ], "correspondents": [ "NNS" ], "Tomash": [ "NNP" ], "RJR-style": [ "JJ" ], "Tomaso": [ "NNP" ], "formerly": [ "RB" ], "pilot-training": [ "JJ", "NN" ], "ploy": [ "NN" ], "gut-Democratic": [ "JJ" ], "Hymowitz": [ "NNP" ], "intellectual": [ "JJ", "NN" ], "Krutchensky": [ "NNP" ], "Playback": [ "NNP" ], "Cosmetics": [ "NNS", "NNP", "NNPS" ], "frightened": [ "VBN", "JJ", "VBD" ], "Behind-the-scenes": [ "JJ" ], "Withholding": [ "NN" ], "snorts": [ "VBZ" ], "magnetisms": [ "NNS" ], "catlike": [ "JJ" ], "per-share": [ "JJ", "NN" ], "pitons": [ "NNS" ], "Cantoni": [ "NNP" ], "lurid": [ "JJ" ], "undergrowth": [ "NN" ], "irreversibility": [ "NN" ], "placeless": [ "JJ" ], "unknowable": [ "JJ" ], "drought-stricken": [ "JJ" ], "garments": [ "NNS" ], "Convenience": [ "NNP", "JJ", "NN" ], "powerfully": [ "RB" ], "Survey": [ "NNP", "NN" ], "Bauer": [ "NNP" ], "massacred": [ "VBD", "VBN" ], "obsequies": [ "NNS" ], "Melzi": [ "NNP" ], "tryin": [ "NN", "VBG" ], "Semi-Tech": [ "NNP" ], "hikers": [ "NNS" ], "bellwether": [ "NN", "JJ" ], "unvarying": [ "VBG" ], "hyalinization": [ "NN" ], "foul-up": [ "NN" ], "Ratners": [ "NNP" ], "Gaithersburg": [ "NNP" ], "Rayon": [ "NNP" ], "daddy": [ "NN" ], "separated": [ "VBN", "JJ", "VBD", "VBP" ], "field-hands": [ "NN" ], "trotter": [ "NN" ], "sticks": [ "NNS", "VBZ" ], "sidestep": [ "VB", "VBP" ], "all-woman": [ "JJ" ], "sticky": [ "JJ" ], "scrawl": [ "NN" ], "Conner": [ "NNP" ], "fashioned": [ "VBN", "VBD" ], "stirrings": [ "NNS" ], "gowned": [ "JJ" ], "nonpareil": [ "JJ" ], "Jeffersonian": [ "JJ" ], "oversimplification": [ "NN" ], "alerts": [ "VBZ", "NNS" ], "half-witted": [ "JJ" ], "breakwaters": [ "NNS" ], "co-insurance": [ "JJ", "NN" ], "ribbons": [ "NNS" ], "dies": [ "VBZ", "NNS" ], "pinball-parlor": [ "NN" ], "diet": [ "NN", "VB" ], "grassland": [ "NN" ], "diem": [ "FW", "NN" ], "Colloton": [ "NNP" ], "died": [ "VBD", "VBN" ], "derail": [ "VB", "VBP" ], "Roxy": [ "NNP" ], "pessimists": [ "NNS" ], "Vattern": [ "NNP" ], "Giants-Houston": [ "NNP" ], "Mitterrand": [ "NNP" ], "sobering": [ "VBG", "JJ" ], "spokeman": [ "NN" ], "Changeable": [ "JJ" ], "mobilized": [ "VBN", "VBD" ], "gunslingers": [ "NNS" ], "skip": [ "VB", "VBP" ], "jingling": [ "VBG" ], "skit": [ "NN" ], "low-temperature": [ "JJ", "NN" ], "option-based": [ "JJ" ], "abatement": [ "NN" ], "tourist-delivery": [ "JJ" ], "skim": [ "VB", "VBP", "JJ" ], "Sneed": [ "NNP" ], "skin": [ "NN" ], "morphology": [ "NN" ], "skid": [ "NN", "VB", "VBD" ], "Evening": [ "NNP", "NN" ], "deceitful": [ "JJ" ], "paper-goods": [ "NNS" ], "Sylphide": [ "NNP" ], "Hopley": [ "NNP" ], "Broadcast": [ "NNP" ], "answered": [ "VBD", "VBN" ], "phonemes": [ "NNS" ], "Lifeguard": [ "NN" ], "better-than-average": [ "JJ" ], "string": [ "NN", "VB" ], "PriMerit": [ "NNP" ], "mass-reproduced": [ "JJ" ], "HUD": [ "NNP" ], "Explicit": [ "JJ" ], "geometrical": [ "JJ" ], "dinghy": [ "NN" ], "heroin-user": [ "NN" ], "pay-in-kind": [ "JJ", "NN" ], "Wildwood": [ "NNP" ], "Where": [ "WRB", "NNP" ], "LANDOR": [ "NNP" ], "Vent": [ "NN" ], "Recess": [ "NN", "VB" ], "LAWYERS": [ "NNS", "NNP" ], "staples": [ "NNS" ], "banished": [ "VBN", "VBD" ], "Health-care": [ "JJ" ], "miniaturized": [ "VBN" ], "boat-yard": [ "NN" ], "Lesbian": [ "NNP" ], "magnet": [ "NN" ], "banishes": [ "VBZ" ], "humanistic": [ "JJ" ], "two-timed": [ "VBN" ], "Lorlyn": [ "NNP" ], "Venn": [ "NNP" ], "recooned": [ "VBD" ], "extenuating": [ "VBG" ], "pregnancies": [ "NNS" ], "frequent-flier": [ "JJ" ], "trading-related": [ "JJ" ], "less-liquid": [ "JJR" ], "Loesser": [ "NNP" ], "NESB": [ "NNP" ], "U.S.-dollar": [ "NN" ], "Grads": [ "NNS" ], "Macassar": [ "NNP" ], "ere": [ "IN" ], "overcoming...": [ ":" ], "photosensitive": [ "JJ" ], "leatherbound": [ "JJ", "NN" ], "Masterpiece": [ "NNP" ], "half-forgotten": [ "JJ" ], "unrestricted": [ "JJ" ], "Quack": [ "NNP", "NN", "UH" ], "Damian": [ "NNP" ], "Sensenbrenner": [ "NNP" ], "bandwagon": [ "NN" ], "Coward": [ "NNP" ], "Variations": [ "NNPS", "NNS" ], "Seaton": [ "NNP" ], "weir": [ "NN" ], "Uniondale": [ "NNP" ], "snagging": [ "VBG" ], "congestion": [ "NN" ], "deceit": [ "NN" ], "Leath": [ "NNP" ], "comptroller": [ "NN" ], "Brendle": [ "NNP" ], "Theatre-by-the-Sea": [ "NNP" ], "bids...": [ ":" ], "exploitation": [ "NN" ], "Ikegai": [ "NNP" ], "souring": [ "NN", "VBG" ], "cyst": [ "NN" ], "crusading": [ "VBG" ], "Matrix": [ "NNP" ], "convenience-store": [ "NN" ], "OBrion": [ "NNP" ], "Hammarskjold": [ "NNP" ], "professorships": [ "NNS" ], "Alkylate": [ "NNP" ], "Viss": [ "NNP" ], "pollute": [ "VB" ], "Bridgestone\\/Firestone": [ "NNP" ], "SunCor": [ "NNP" ], "Visx": [ "NNP" ], "scenarios": [ "NNS" ], "Guadalupes": [ "NNPS" ], "Visa": [ "NNP", "NN" ], "balks": [ "VBZ" ], "armchairs": [ "NNS" ], "brashest": [ "JJS" ], "grow-or-die": [ "JJ" ], "Inhalation": [ "NNP" ], "McGonagle": [ "NNP" ], "airline-acquisition": [ "JJ" ], "satirizes": [ "VBZ" ], "Grisoni": [ "NNP" ], "subsistent": [ "JJ" ], "Leinonen": [ "NNP" ], "performance-sharing": [ "JJ" ], "Brae": [ "NNP" ], "Brad": [ "NNP" ], "calorimetric": [ "JJ" ], "Bran": [ "NNP" ], "antismoking": [ "JJ" ], "Benelli": [ "NNP" ], "balk.": [ "VBP" ], "veterinarians": [ "NNS" ], "electrotherapist": [ "NN" ], "Pallo": [ "NNP" ], "repressing": [ "VBG" ], "Children": [ "NNS", "NNP", "NNPS" ], "deceased": [ "JJ", "NN", "VBN" ], "Oatnut": [ "NNP" ], "Caring": [ "VBG" ], "cost-saving": [ "JJ" ], "proscriptive": [ "JJ" ], "Baruch": [ "NNP" ], "Lamma": [ "NNP" ], "FOOTNOTE": [ "NNP" ], "pawning": [ "VBG" ], "coincident": [ "JJ" ], "Dutch": [ "JJ", "NNPS", "NNP" ], "bad-law": [ "NN" ], "dimwits": [ "NNS" ], "sell-order": [ "JJ" ], "normalize": [ "VB" ], "strainin": [ "VBG" ], "rays": [ "NNS" ], "Dahmane": [ "NNP" ], "slim-waisted": [ "JJ" ], "tilt": [ "NN", "JJ", "VB" ], "necklaces": [ "NNS" ], "ping": [ "NN", "VB" ], "pine": [ "NN", "VBP" ], "tax-fraud": [ "NN" ], "chemical": [ "NN", "JJ" ], "till": [ "IN", "VB" ], "HUH": [ "NNP" ], "skates": [ "NNS" ], "pins": [ "NNS", "VBZ" ], "concertmaster": [ "NN" ], "consulting-firm": [ "NN" ], "pint": [ "NN" ], "spy-plane": [ "NN" ], "Hubba": [ "UH" ], "thermometric": [ "JJ" ], "Oher": [ "NNP" ], "whodunnit": [ "UH" ], "designed": [ "VBN", "VBD" ], "scalloped": [ "JJ" ], "millionths-of-a-second": [ "JJ" ], "aviator": [ "NN" ], "Hippophagique": [ "NNP" ], "Furs": [ "NNP" ], "domestic-inflation": [ "NN" ], "Hendl": [ "NNP" ], "twice-around": [ "JJ" ], "Fury": [ "NNP", "NN" ], "maybe": [ "RB" ], "unobvious": [ "JJ" ], "carriers": [ "NNS" ], "exterminator": [ "NN" ], "Gaussian": [ "JJ" ], "fluent": [ "JJ" ], "provide": [ "VB", "VBP" ], "thorny": [ "JJ" ], "pickets": [ "NNS" ], "thorns": [ "NNS" ], "gesture": [ "NN" ], "Feared": [ "VBN" ], "cute": [ "JJ" ], "daily-wear": [ "JJ" ], "free-buying": [ "JJ" ], "Item-Categories": [ "NNPS" ], "entity": [ "NN" ], "stability": [ "NN" ], "Medicaid-covered": [ "JJ" ], "Walzer": [ "NNP" ], "cuts": [ "NNS", "VBZ", "NN" ], "CAHNERS": [ "NNP" ], "Utahans": [ "NNPS" ], "Merrill-Lynch": [ "NNP" ], "Budieshein": [ "NNP" ], "Jean-Rene": [ "NNP" ], "freight-car": [ "NN" ], "Kozak": [ "NNP" ], "plagiarized": [ "VBN" ], "salves": [ "NNS" ], "Iranian-backed": [ "JJ" ], "serenaded": [ "VBN", "VBD" ], "Wage-settlement": [ "JJ" ], "extirpated": [ "VBN" ], "alluvial": [ "JJ" ], "nouveau": [ "JJ" ], "finance": [ "NN", "VBP", "VB" ], "captivated": [ "VBN", "VBD", "JJ" ], "P.S": [ "NN" ], "killer": [ "NN" ], "shatter": [ "VB" ], "sooner": [ "RBR", "RB" ], "Usines": [ "NNP" ], "state-sector": [ "JJ" ], "misinterpreters": [ "NNS" ], "budget-sensitive": [ "JJ" ], "aspirations": [ "NNS" ], "Kestner": [ "NNP" ], "killed": [ "VBN", "VBD" ], "ornraier": [ "RBR" ], "Bonniers": [ "NNP" ], "Stores": [ "NNPS", "NNP", "NNS" ], "Storer": [ "NNP" ], "resignation": [ "NN" ], "Wakeman": [ "NNP" ], "pickoff": [ "NN" ], "nonfood": [ "NN" ], "unwashed": [ "JJ" ], "Hispanic-market": [ "JJ" ], "peasant": [ "NN", "JJ" ], "P.m": [ "NN" ], "disseration": [ "NN" ], "Southwestern": [ "NNP", "JJ" ], "stock-quote": [ "JJ" ], "thin-margin": [ "JJ" ], "Amstel": [ "NNP" ], "Borrioboola-Gha": [ "NNP" ], "Lux": [ "FW" ], "Luz": [ "NNP" ], "oil-exporting": [ "NN" ], "Misconceptions": [ "NNS" ], "Luc": [ "NNP" ], "gurgling": [ "VBG" ], "aloof": [ "JJ", "RB" ], "Touted": [ "VBN" ], "Steamship": [ "NNP" ], "socialized": [ "VBN", "VBD" ], "flintless": [ "JJ" ], "undulate": [ "VB", "VBP" ], "socializes": [ "VBZ" ], "Ehrman": [ "NNP" ], "papers": [ "NNS" ], "Maureen": [ "NNP" ], "Mastering": [ "VBG" ], "nudes": [ "NNS" ], "ladder": [ "NN" ], "unless": [ "IN" ], "Siamese": [ "NNP" ], "gagging": [ "VBG" ], "democracies": [ "NNS" ], "cholesterol-lowering": [ "JJ" ], "vinyl": [ "NN" ], "Whelen": [ "NNP" ], "follow-on": [ "JJ" ], "Farrar": [ "NNP" ], "Deciding": [ "VBG" ], "Intuition": [ "NN" ], "Already": [ "RB" ], "language": [ "NN" ], "bared": [ "VBD" ], "widths": [ "NNS" ], "drizzling": [ "VBG", "JJ" ], "listings": [ "NNS" ], "proffered": [ "VBD", "VBN" ], "Haden": [ "NNP" ], "foreign-entry-limit": [ "JJ" ], "blacksmith": [ "NN" ], "rewrites": [ "VBZ" ], "Windex": [ "NNP" ], "exotic": [ "JJ" ], "water-borne": [ "JJ" ], "Braye": [ "NNP" ], "scandalized": [ "VBD", "VBN" ], "Didion": [ "NNP" ], "test-like": [ "JJ" ], "ISI": [ "NNP" ], "XIII": [ "NNP" ], "ISO": [ "NNP" ], "Anthong": [ "NNP" ], "ISC": [ "NNP" ], "Rotorex": [ "NNP" ], "restaurant-industry": [ "JJ" ], "scandalizes": [ "VBZ" ], "rivets": [ "VBZ", "NNS" ], "incompetently": [ "RB" ], "honesty": [ "NN" ], "vermeil": [ "JJ" ], "old-grad-type": [ "NN" ], "Pringle": [ "NNP" ], "plains": [ "NNS" ], "Inflation": [ "NN" ], "fellowships": [ "NNS" ], "workability": [ "NN" ], "Botts": [ "NNP" ], "helpings": [ "NNS" ], "Midsized": [ "JJ" ], "less-than-alarming": [ "JJ" ], "massaged": [ "VBN" ], "accurately": [ "RB" ], "maquette": [ "NN" ], "SEMICONDUCTOR": [ "NNP" ], "videodisks": [ "NNS" ], "stipulation": [ "NN" ], "cartels": [ "NNS" ], "Maclaine": [ "NNP" ], "framers": [ "NNS" ], "gotta": [ "VB", "VBN", "VBP", "VBN|TO", "VBP|TO" ], "LifeSpan": [ "NNP" ], "orgy": [ "NN" ], "swearing-in": [ "NN" ], "venture": [ "NN", "VBP", "JJ", "VB" ], "Sexism": [ "NN" ], "commends": [ "VBZ" ], "Autobiography": [ "NNP" ], "Jockey": [ "NNP" ], "dollop": [ "NN" ], "stoicaly": [ "RB" ], "fifth-consecutive": [ "JJ" ], "E.E.": [ "NNP" ], "plunge": [ "NN", "VBP", "VB" ], "France-Germany": [ "NNP" ], "Arnolphe": [ "NNP" ], "backwoods": [ "NNS", "JJ" ], "Tollman-Hundley": [ "NNP" ], "prize-fighter": [ "NN" ], "Dworkin-Cosell": [ "NNP" ], "personalized": [ "VBN", "JJ" ], "pranks": [ "NNS" ], "present-time": [ "JJ" ], "Ballhaus": [ "NNP" ], "Articles": [ "NNPS", "NNS" ], "Ravenscroft": [ "NNP" ], "non-prescription": [ "JJ", "NN" ], "investigations": [ "NNS" ], "weakwilled": [ "JJ" ], "anarchist-adventurers": [ "NNS" ], "Strawberry": [ "NNP" ], "indwelling": [ "VBG", "JJ" ], "contrasts": [ "NNS", "VBZ" ], "conspicuous": [ "JJ" ], "Magarity": [ "NNP" ], "Teich": [ "NNP" ], "beachfront": [ "NN", "JJ" ], "refunds": [ "NNS" ], "fills": [ "VBZ" ], "gyro": [ "NN" ], "wreathed": [ "VBN" ], "Arrayed": [ "VBN" ], "filly": [ "NN" ], "sixteen-year-old": [ "JJ" ], "Kasavubu": [ "NNP" ], "fille": [ "FW" ], "massacres": [ "NNS" ], "Galena": [ "NNP" ], "Monastery": [ "NNP" ], "obligatto": [ "NN" ], "Blohm": [ "NNP" ], "trotted": [ "VBD", "VBN" ], "obstructive": [ "JJ" ], "Indicator": [ "NN" ], "Ltd.": [ "NNP", "NN" ], "Hoyvald": [ "NNP" ], "filed": [ "VBN", "VBD" ], "contemporary": [ "JJ", "NN" ], "Graduate": [ "NNP", "JJ", "NN" ], "Gato": [ "NNP" ], "Gati": [ "NNP" ], "Gate": [ "NNP", "NN" ], "Monogamy": [ "NN" ], "lieder": [ "JJ", "NN" ], "pluri-party": [ "JJ" ], "Payless": [ "NNP" ], "Stapleton": [ "NNP" ], "histories": [ "NNS" ], "Cafferarelli": [ "NNP" ], "nickels": [ "NNS" ], "Saltzburg": [ "NNP" ], "anti-program-trading": [ "JJ" ], "reproducibility": [ "NN" ], "savoring": [ "VBG" ], "underage": [ "JJ" ], "Leaves": [ "NNS" ], "spraying": [ "NN", "VBG" ], "free-floater": [ "NN" ], "framing": [ "NN", "VBG" ], "Toodle": [ "NNP" ], "Midway": [ "NNP", "RB" ], "third-straight": [ "JJ" ], "reading": [ "NN", "VBG" ], "snorted": [ "VBD" ], "Yuli": [ "NNP" ], "Wycombe": [ "NNP" ], "ruddy": [ "JJ", "RB" ], "Malmesbury": [ "NNP" ], "Soeren": [ "NNP" ], "space-shuttle": [ "NN" ], "kernel": [ "NN" ], "lethargy": [ "NN" ], "rookie-of-the-year": [ "NN" ], "monarchists": [ "NNS" ], "anti-conservation": [ "JJ" ], "defense-procurement": [ "NN" ], "innovative": [ "JJ" ], "Exhibits": [ "NNPS" ], "Sigourney": [ "NNP" ], "unsecured": [ "JJ" ], "Hopefully": [ "RB", "NNP" ], "calendar": [ "NN" ], "cost-benefit": [ "JJ" ], "steadfast": [ "JJ", "RB" ], "Stena": [ "NNP" ], "Forgive": [ "VB" ], "performance-oriented": [ "JJ" ], "whereabouts": [ "NN", "NNS" ], "metabolites": [ "NNS" ], "rads": [ "NNS" ], "Ferrier": [ "NNP" ], "Houston-Montgomery": [ "NNP" ], "checks": [ "NNS", "VBZ" ], "oversized": [ "JJ", "VBN" ], "deletions": [ "NNS" ], "Barkley": [ "NNP" ], "single-warhead": [ "NN" ], "killing": [ "VBG", "JJ", "NN" ], "Competitors": [ "NNS" ], "Froelich": [ "NNP" ], "pillared": [ "JJ", "VBN" ], "top-rated": [ "JJ" ], "pre-World-War": [ "JJ" ], "Thirty-eighth": [ "NNP" ], "cents-per-hour": [ "JJ" ], "nomenclature": [ "NN" ], "indelicate": [ "JJ" ], "Tours": [ "NNPS" ], "disappointment": [ "NN" ], "holders": [ "NNS" ], "decimals": [ "NNS" ], "forecasting": [ "NN", "JJ", "VBG" ], "over-regulation": [ "NN" ], "SV-10": [ "NN" ], "Elizabethan": [ "JJ", "NNP" ], "Kuse": [ "NNP" ], "Whitlock": [ "NNP" ], "possessive": [ "JJ" ], "Zellerbach": [ "NNP" ], "Tigue": [ "NNP" ], "perpetuating": [ "VBG" ], "Corash": [ "NNP" ], "Sotnikov": [ "NNP" ], "quadrupling": [ "VBG", "NN" ], "arts": [ "NNS" ], "caricature": [ "NN", "VB" ], "all-too-familiar": [ "JJ" ], "localisms": [ "NNS" ], "shortening": [ "VBG", "NN" ], "self-regulator": [ "NN" ], "constituencies": [ "NNS" ], "trading-oriented": [ "JJ" ], "graveyard": [ "NN" ], "business-communications": [ "NNS" ], "agranulocytosis": [ "NN" ], "codpiece": [ "NN" ], "Allstates": [ "NNP" ], "Taxpayers": [ "NNS", "NNP", "NNPS" ], "Picus": [ "NNP" ], "spills": [ "NNS", "VBZ" ], "overdose": [ "NN" ], "Selwyn": [ "NNP" ], "those": [ "DT" ], "mid-section": [ "NN" ], "job-classification": [ "NN" ], "Minoru": [ "NNP" ], "litterbug": [ "NN" ], "Minors": [ "NNS" ], "disconnected": [ "VBN", "JJ" ], "Discounts": [ "NNS" ], "Malmo": [ "NNP" ], "Fixture": [ "NNP" ], "aircraft-engine": [ "JJ", "NN" ], "client-service": [ "JJ", "NN" ], "Fallick": [ "NNP" ], "deformities": [ "NNS" ], "awakened": [ "VBN", "VBD" ], "grantee": [ "NN" ], "endothelial": [ "JJ" ], "Basketball": [ "NNP", "NN" ], "corn-buying": [ "JJ" ], "Florian": [ "NNP" ], "endowed": [ "VBN", "VBD", "JJ" ], "rubbing": [ "VBG", "NN" ], "undertones": [ "NNS" ], "camp-made": [ "JJ" ], "kindnesses": [ "NNS" ], "middle": [ "NN", "JJ" ], "Koyo": [ "NNP" ], "ferns": [ "NNS" ], "Puffing": [ "VBG" ], "family-run": [ "JJ" ], "wimping": [ "VBG" ], "Hoyt": [ "NNP" ], "insofar": [ "RB", "IN" ], "same": [ "JJ" ], "deference": [ "NN" ], "intermediary": [ "NN", "JJ" ], "autonomously": [ "RB" ], "Peabody": [ "NNP" ], "gaspingly": [ "RB" ], "Leroy": [ "NNP" ], "Message": [ "NN", "NNP" ], "devours": [ "VBZ" ], "munch": [ "VB" ], "disincentives": [ "NNS" ], "Canticle": [ "NNP" ], "Defaults": [ "NNS" ], "Smeal": [ "NNP" ], "Mortars": [ "NNS" ], "exluding": [ "VBG" ], "discernable": [ "JJ" ], "intermittent": [ "JJ" ], "Tamerlane": [ "NNP" ], "DOONESBURY": [ "NNP" ], "Phibro": [ "NNP" ], "expressionism": [ "NN" ], "Rubega": [ "NNP" ], "imprint": [ "VB", "NN" ], "Hiss": [ "NNP" ], "adrenal": [ "JJ", "NN" ], "Chavis": [ "NNP" ], "ethyl": [ "NN" ], "dipped": [ "VBD", "VBN" ], "cash-up-front": [ "NN" ], "Genelabs": [ "NNPS" ], "Rattner": [ "NNP" ], "Carmody": [ "NNP" ], "swath": [ "NN" ], "vivify": [ "VB" ], "dipper": [ "NN" ], "Jeep\\/Eagle": [ "NNP" ], "Ethics": [ "NNP", "NN", "NNS" ], "Banquet": [ "NNP", "NN" ], "nos.": [ "NN" ], "liken": [ "VBP" ], "presentable": [ "JJ" ], "Carat": [ "NNP" ], "Concert-Disc": [ "NNP" ], "admitting": [ "VBG" ], "dimensioning": [ "JJ", "VBG" ], "F.S.L.I.C": [ "NNP" ], "Moosilauke": [ "NNP" ], "blankets": [ "NNS", "VBZ" ], "Executioner": [ "NN" ], "noncompetitively": [ "RB" ], "nosy": [ "JJ" ], "CPTs": [ "NNS" ], "Artfully": [ "RB" ], "chamber": [ "NN" ], "audience": [ "NN" ], "nose": [ "NN", "VB" ], "neuronal": [ "JJ" ], "Pathology": [ "NNP" ], "Enron": [ "NNP" ], "Dress": [ "NNP", "VB" ], "specifies": [ "VBZ" ], "Democracy": [ "NNP", "NN" ], "alternated": [ "VBD", "VBN" ], "Ned": [ "NNP" ], "Neb": [ "NNP" ], "Nec": [ "FW" ], "specified": [ "VBN", "JJ", "VBD" ], "Nev": [ "NNP" ], "New": [ "NNP", "NNPS", "JJ", "NN" ], "Net": [ "JJ", "NNP", "NN" ], "spasm": [ "NN" ], "car-dealers": [ "NNS" ], "gross": [ "JJ", "NN", "VB" ], "Intermoda": [ "NNP" ], "Lempesis": [ "NNP" ], "PS\\/2": [ "NNP" ], "Gogo": [ "NNP" ], "Valspar": [ "NNP" ], "Artie": [ "NNP" ], "custody": [ "NN" ], "Gogh": [ "NNP" ], "Barokocy": [ "NNP" ], "reinbursement": [ "NN" ], "buttressed": [ "VBN" ], "Lycidas": [ "NNP" ], "Doritos": [ "NNS" ], "underwriters": [ "NNS", "," ], "cliques": [ "NNS" ], "thefts": [ "NNS" ], "broker": [ "NN" ], "squall": [ "NN" ], "broken": [ "VBN", "JJ" ], "Kyne": [ "NNP" ], "buttresses": [ "NNS", "VBZ" ], "highest-priced": [ "JJS" ], "mysticism": [ "NN" ], "squarely": [ "RB" ], "Husky": [ "NNP", "JJ" ], "roaming": [ "VBG", "NN" ], "pettinesses": [ "NNS" ], "California-bashing": [ "JJ" ], "opium": [ "NN" ], "tease": [ "VB", "NN", "VBP" ], "othe": [ "JJ" ], "bilharziasis": [ "NN" ], "Kalin": [ "NNP" ], "arty": [ "JJ" ], "MANY": [ "JJ" ], "organizers": [ "NNS" ], "check-processing": [ "JJ", "NN" ], "Dimensions": [ "NNP", "NNS", "NNPS" ], "Functions": [ "NNPS" ], "Contacts": [ "NNPS" ], "not-strictly-practical": [ "JJ" ], "then-current": [ "JJ" ], "Xydis": [ "NNP" ], "Kwasha": [ "NNP" ], "theories...": [ ":" ], "Baring": [ "NNP" ], "state-private": [ "JJ" ], "Larsson": [ "NNP" ], "argumentation": [ "NN" ], "Conductor": [ "NN", "NNP" ], "daubed": [ "VBD" ], "Nest": [ "NNP" ], "Greiner": [ "NNP" ], "brute": [ "NN", "JJ" ], "fates": [ "NNS" ], "Suffering": [ "VBG" ], "Nesi": [ "NNP" ], "Luth": [ "NNP" ], "two-tiered": [ "JJ" ], "Counsel": [ "NNP", "NN" ], "mornings": [ "NNS" ], "countersuing": [ "VBG" ], "hesitance": [ "NN" ], "proportionately": [ "RB" ], "debt\\/equity": [ "NN" ], "Transition": [ "NN", "NNP" ], "DIAL-A-PIANO-LESSON": [ "NNP" ], "anti-infectives": [ "NNS" ], "wiping": [ "VBG" ], "collosal": [ "JJ" ], "staircases": [ "NNS" ], "Walker": [ "NNP" ], "Gutfreund": [ "NNP" ], "Castle": [ "NNP", "NN" ], "hesitancy": [ "NN" ], "municipally-sponsored": [ "JJ" ], "belated": [ "JJ" ], "bomb-proof": [ "JJ" ], "Cigarette-vending": [ "JJ" ], "commonality": [ "NN" ], "HUD-supervised": [ "JJ" ], "co-chief": [ "JJ", "NN" ], "anemated": [ "VBN" ], "Nouvelle": [ "NNP" ], "sudden-end": [ "JJ" ], "SHOULD": [ "MD" ], "strawberry": [ "NN" ], "solvents": [ "NNS" ], "suitcase": [ "NN" ], "Commissioning": [ "VBG" ], "undereducated": [ "JJ" ], "Blues": [ "NNPS", "NNP", "NNS" ], "ossification": [ "NN" ], "Alison": [ "NN" ], "Allgemeine": [ "NNP" ], "COFFEE": [ "NN", "NNP" ], "TuHulHulZote": [ "NNP" ], "leaked": [ "VBN", "VBD" ], "croons": [ "VBZ" ], "VISX": [ "NNP" ], "leaker": [ "NN" ], "VISA": [ "NNP" ], "girlfriend": [ "NN" ], "lifetime": [ "NN", "JJ" ], "deterrent": [ "NN" ], "go-betweens": [ "NNS" ], "Nieman": [ "NNP" ], "PKbanken": [ "NNP" ], "Miringoff": [ "NNP" ], "slew": [ "NN" ], "drouth": [ "NN" ], "bragging": [ "VBG", "NN" ], "unaccustomed": [ "JJ" ], "Drilling": [ "NNP", "NN" ], "Frontage": [ "NN" ], "definition-specialization": [ "JJ", "NN" ], "entertainment-industry": [ "NN" ], "students": [ "NNS" ], "Geolite": [ "NN" ], "Vadehra": [ "NNP" ], "Balanchine": [ "NNP" ], "deriving": [ "VBG" ], "obsesses": [ "VBZ" ], "Houten": [ "NNP" ], "elastomers": [ "NNS" ], "tackle": [ "VB", "VBP", "NN" ], "revolve": [ "VB", "VBP" ], "unpopularity": [ "NN" ], "remote": [ "JJ" ], "Restructure": [ "VBP" ], "recapitulation": [ "NN" ], "thrift-resolution": [ "NN" ], "Intangible": [ "JJ" ], "Secretary-designate": [ "NNP" ], "home-health-care": [ "JJ" ], "high-balance": [ "JJ" ], "nutrient": [ "JJ" ], "sterility-assurance": [ "NN" ], "counter-trend": [ "JJ" ], "starting": [ "VBG", "JJ", "NN" ], "bottoming": [ "VBG" ], "growling": [ "VBG" ], "Trish": [ "NNP" ], "Gallitano": [ "NNP" ], "Voute": [ "NNP" ], "mug": [ "NN" ], "suburban": [ "JJ" ], "alerting": [ "VBG" ], "Wayne": [ "NNP" ], "half-owned": [ "JJ" ], "Theorem": [ "NN" ], "b-reflects": [ "VBZ" ], "Euler": [ "NNP" ], "reluctant": [ "JJ" ], "Transcaucasian": [ "JJ" ], "Fremont": [ "NNP" ], "odyssey": [ "NN" ], "investigational": [ "JJ" ], "Bologna": [ "NNP", "NN" ], "Fulghum": [ "NNP" ], "selloffs": [ "NNS" ], "nightfall": [ "NN" ], "Beame": [ "NNP" ], "bevy": [ "NN" ], "self-deception": [ "NN" ], "shifters": [ "NNS" ], "rambunctious": [ "JJ" ], "Vehicles": [ "NNPS", "NNS" ], "overdone": [ "VBN" ], "Holliston": [ "NNP" ], "scour": [ "VBP", "VB" ], "posseman": [ "NN" ], "bottleneck": [ "NN" ], "capillary": [ "NN" ], "Ventured": [ "NNP" ], "extractors": [ "NNS" ], "benevolent": [ "JJ" ], "industrialization": [ "NN" ], "Course": [ "NNP" ], "crckdown.": [ "NN" ], "Rector": [ "NNP" ], "mistaking": [ "VBG", "NN" ], "incompatibles": [ "NNS" ], "Surety": [ "NNP" ], "Buds": [ "NNPS" ], "fauteuil": [ "FW" ], "titled": [ "VBN", "JJ", "VBD" ], "MacGregor": [ "NNP" ], "periodicity": [ "NN" ], "JSP-supported": [ "JJ" ], "Benzell": [ "NNP" ], "knitted": [ "VBN", "VBD", "JJ" ], "titles": [ "NNS" ], "lawyer": [ "NN" ], "Budd": [ "NNP" ], "Unam": [ "NNP" ], "Wycoff": [ "NNP" ], "novitiate": [ "NN" ], "CHECKUPS": [ "NNS" ], "Liberties": [ "NNPS", "NNP" ], "high-profit-margin": [ "JJ" ], "Ellington": [ "NNP" ], "sociologically": [ "RB" ], "Grievances": [ "NNP", "NNPS" ], "Eskandarian": [ "NNP" ], "unreported": [ "JJ" ], "HENRI": [ "NNP" ], "pupated": [ "VBN" ], "K": [ "NNP", "LS", "NN" ], "beacon": [ "NN" ], "venerated": [ "VBN" ], "HENRY": [ "NNP" ], "biweekly": [ "JJ", "NN" ], "drubbed": [ "VBN" ], "fatter": [ "JJR" ], "search": [ "NN", "VB", "VBP" ], "feminine-care": [ "JJ" ], "Pumwani": [ "NNP" ], "super-headache": [ "NN" ], "emergency-claims": [ "NNS" ], "Nissei": [ "NNP" ], "fatten": [ "VB", "VBP" ], "pathological": [ "JJ" ], "Devin": [ "NNP" ], "Devil": [ "NNP", "NN" ], "Scriptures": [ "NNPS", "NNP", "NNS" ], "bathe": [ "VB" ], "Warriors": [ "NNP", "NNPS" ], "transit": [ "NN", "JJ" ], "sadist": [ "NN" ], "seceded": [ "VBN" ], "debugged": [ "VBN" ], "Yaddo": [ "NNP" ], "sadism": [ "NN" ], "establish": [ "VB", "VBP" ], "barked": [ "VBD" ], "issues-such": [ "JJ" ], "Conoco": [ "NNP" ], "Hard-surface": [ "JJ" ], "rotogravures": [ "NNS" ], "cultivation": [ "NN" ], "water-holding": [ "JJ" ], "Transfer": [ "NN", "NNP" ], "OUR": [ "PRP$" ], "achieving": [ "VBG" ], "OUT": [ "IN", "RP" ], "BOTH": [ "DT" ], "Glamorous": [ "JJ" ], "Boeing": [ "NNP", "VBG" ], "career-bound": [ "JJ" ], "FEDERAL": [ "NNP", "JJ" ], "brisk": [ "JJ" ], "dammit": [ "UH", "VB" ], "Chukchi": [ "NNP" ], "Racal": [ "NNP" ], "maharajahs": [ "NNS" ], "Schwartau": [ "NNP" ], "none": [ "NN" ], "income-paying": [ "JJ" ], "intercepted": [ "VBD", "VBN" ], "Comany": [ "NNP" ], "clergy": [ "NN", "NNS" ], "Tagalog": [ "NNP" ], "refugee": [ "NN" ], "blastdown": [ "NN" ], "ex-jazz": [ "JJ" ], "compare": [ "VB", "VBP", "NN" ], "Personal-computer": [ "NN" ], "buttress": [ "VB" ], "ionizing": [ "VBG" ], "raisin": [ "NN" ], "socal": [ "JJ" ], "AHSC": [ "NNP" ], "electronography": [ "NN" ], "minimum-tax": [ "NN" ], "gray-looking": [ "JJ" ], "wisely": [ "RB" ], "Ex-Presidents": [ "NNS" ], "thallium": [ "NN" ], "morning-session": [ "NN" ], "Carpenter": [ "NNP" ], "Stacy": [ "NNP" ], "Cabanne": [ "NNP" ], "Balkanize": [ "VB" ], "Stack": [ "NNP" ], "heartwarmingly": [ "RB" ], "galactic": [ "JJ" ], "charms": [ "NNS", "VBZ" ], "petite": [ "JJ" ], "servicers": [ "NNS" ], "capital-intensive": [ "JJ" ], "slangy-confidential": [ "JJ" ], "bouffant": [ "JJ", "NN" ], "petits": [ "FW", "JJ" ], "Jepson": [ "NNP" ], "Sophie": [ "NNP" ], "Cadbury": [ "NNP" ], "bloom": [ "NN", "VBP", "VB" ], "Sophia": [ "NNP" ], "coffin-sized": [ "JJ" ], "coax": [ "VB" ], "unreservedly": [ "RB" ], "coat": [ "NN", "VB" ], "cemeteries": [ "NNS" ], "coal": [ "NN" ], "Prawiro": [ "NNP" ], "What": [ "WP", "NNP", "PDT", "WDT" ], "finalized": [ "VBN", "VBD" ], "U.K.": [ "NNP", "JJ", "NN" ], "setback": [ "NN" ], "Pearlman": [ "NNP" ], "Intermark": [ "NNP" ], "dough": [ "NN" ], "M\\/I": [ "NNP" ], "existence": [ "NN" ], "clumsily": [ "RB" ], "Wham": [ "UH" ], "Whah": [ "WRB" ], "anaplasmosis": [ "NN" ], "Ranking": [ "NN", "VBG" ], "Pinola": [ "NNP" ], "Morehouse": [ "NNP" ], "render": [ "VB", "VBP" ], "sodium": [ "NN" ], "Leyland": [ "NNP" ], "Marietta": [ "NNP" ], "clamor": [ "VBP", "NN" ], "bereft": [ "JJ", "VBN" ], "infantrymen": [ "NNS" ], "pollen-and-nectar": [ "NN" ], "time-temperature": [ "JJ", "NN" ], "Gullah": [ "NNP" ], "minting": [ "VBG" ], "Dorcas": [ "NNP" ], "walls": [ "NNS" ], "Hansmann": [ "NNP" ], "Seelenfreund": [ "NNP" ], "detach": [ "VB" ], "Mogadishu": [ "NNP" ], "Afrique": [ "NNP" ], "Dist": [ "NNP" ], "Chung": [ "NNP" ], "suprise": [ "NN" ], "token": [ "JJ", "NN" ], "Kronish": [ "NNP" ], "subjugation": [ "NN" ], "under-owned": [ "JJ" ], "Dish": [ "NNP" ], "McDonnell": [ "NNP", "NN" ], "Disk": [ "NN" ], "upper-echelon": [ "JJ" ], "clamp": [ "VB", "NN" ], "paper-company": [ "JJ", "NN" ], "clams": [ "NNS" ], "low-pass": [ "JJ" ], "nakedness": [ "NN" ], "beret": [ "NN" ], "securities-laws": [ "NNS" ], "dullish": [ "JJ" ], "implicated": [ "VBN" ], "Granville": [ "NNP" ], "Pattenden": [ "NNP" ], "seniority": [ "NN" ], "allusions": [ "NNS" ], "sub-minimum": [ "JJ" ], "ides": [ "NNS" ], "initiatives": [ "NNS", "VBZ" ], "reinstating": [ "VBG" ], "Lawyers": [ "NNS", "NNP", "NNPS" ], "HOLDINGS": [ "NNPS" ], "Popkin": [ "NNP" ], "numbingly": [ "RB" ], "Outlet": [ "NNP" ], "avenge": [ "VB" ], "Rocketdyne": [ "NNP" ], "Ukraine": [ "NNP" ], "Rosalynn": [ "NNP" ], "stridently": [ "RB" ], "Parsons": [ "NNP" ], "Anytime": [ "RB" ], "Inacio": [ "NNP" ], "Chin-Use": [ "VB" ], "Fenerty": [ "NNP" ], "Magoon": [ "NNP" ], "disposition": [ "NN" ], "Capwell": [ "NNP" ], "Squeezed": [ "VBN" ], "Pelham": [ "NNP" ], "Yankees": [ "NNP", "NNPS", "NNS" ], "junk-bond-financed": [ "JJ" ], "Raines": [ "NNP" ], "Rainer": [ "NNP" ], "Tasaki-Riger": [ "NNP" ], "settlers": [ "NNS" ], "omit": [ "VB", "VBP" ], "Nazzella": [ "NNP" ], "Gettleman": [ "NNP" ], "Homeowner": [ "NNP" ], "audacity": [ "NN" ], "Inna": [ "NNP" ], "Kieslowski": [ "NNP" ], "McKinley": [ "NNP" ], "Pullman": [ "NNP" ], "CONVICTS": [ "VBZ" ], "seduction": [ "NN" ], "soot-stained": [ "JJ" ], "bullies": [ "VBZ", "NNS" ], "Officers": [ "NNS", "NNPS", "NN", "NNP" ], "smaller": [ "JJR", "RBR" ], "elevator": [ "NN" ], "Salerno": [ "NNP" ], "Gilbert": [ "NNP" ], "unfunnily": [ "RB" ], "Lipton": [ "NNP" ], "Saltis-McErlane": [ "NNP" ], "energy-hungry": [ "JJ" ], "Slight": [ "JJ" ], "totally": [ "RB" ], "kob": [ "NN" ], "entreated": [ "VBD" ], "suffixand": [ "NN" ], "Pediatric": [ "NNP" ], "beardown": [ "JJ" ], "casework": [ "NN" ], "matching-fund": [ "JJ" ], "Oberreit": [ "NNP" ], "ravings": [ "NNS" ], "mentality": [ "NN" ], "DTF": [ "NN" ], "madmen": [ "NNS" ], "vernier": [ "NN" ], "turboprop": [ "NN" ], "newswire": [ "NN" ], "three-fifths": [ "JJ" ], "liquid-chromatography": [ "NN" ], "pickups": [ "NNS" ], "colander": [ "NN" ], "Philco-sponsored": [ "JJ" ], "workbenches": [ "NNS" ], "riddance": [ "NN" ], "interactive": [ "JJ" ], "Jurong": [ "NNP" ], "emanation": [ "NN" ], "Waterville": [ "NNP" ], "actuary": [ "NN" ], "plead": [ "VB", "VBP" ], "interloper": [ "NN" ], "Schmetterer": [ "NNP" ], "intestine": [ "NN" ], "Somerset": [ "NNP" ], "collateralized": [ "JJ", "VBN" ], "Kozloff": [ "NNP" ], "schizoid": [ "JJ" ], "Virginia": [ "NNP" ], "onset": [ "NN" ], "extracted": [ "VBN", "VBD" ], "Joffrey": [ "NNP" ], "press-freedom": [ "NN" ], "hecatomb": [ "NN" ], "commentary": [ "NN" ], "listeria": [ "FW" ], "RPM": [ "NNP" ], "Beefsteak": [ "NNP" ], "Hanwa": [ "NNP" ], "equipping": [ "VBG", "NN" ], "medium-sized": [ "JJ" ], "depths": [ "NNS" ], "Communications": [ "NNPS", "NNP", "NNS" ], "oat-bran": [ "NN" ], "self-correcting": [ "JJ" ], "Anatomically": [ "RB" ], "pocketing": [ "VBG" ], "squelched": [ "VBN" ], "handscrolls": [ "NNS" ], "loners": [ "NNS" ], "Encouraging": [ "VBG" ], "squelch": [ "VBP" ], "ASDIC": [ "NNP" ], "Armageddon": [ "NN", "NNP" ], "Regime": [ "NNP" ], "COLLECTING": [ "NN" ], "lumping": [ "VBG" ], "Helms": [ "NNP" ], "antisubmarine": [ "JJ" ], "Bixby": [ "NNP" ], "hillside": [ "NN" ], "sanctity": [ "NN" ], "tax-backed": [ "JJ" ], "Fiechter": [ "NNP" ], "persuasively": [ "RB" ], "mother-naked": [ "JJ" ], "Sensor": [ "NNP" ], "goose-stepping": [ "VBG" ], "gangs": [ "NNS" ], "philanthropists": [ "NNS" ], "Takihyo": [ "NNP" ], "J.T.": [ "NNP" ], "anachronisms": [ "NNS" ], "freedoms": [ "NNS" ], "generators": [ "NNS" ], "Whitlow": [ "NNP" ], "first-preference": [ "NN" ], "cysts": [ "NNS" ], "prowess": [ "NN" ], "notation": [ "NN" ], "permission": [ "NN" ], "Marry": [ "NNP" ], "Barre-Montpelier": [ "NNP" ], "horsemeat": [ "NN" ], "UNCERTAINTY": [ "NN" ], "Marra": [ "NNP" ], "promptings": [ "NNS" ], "Reich": [ "NNP" ], "annexation": [ "NN" ], "Kingdome": [ "NNP" ], "slingers": [ "NNS" ], "cumulate": [ "VB" ], "real-life": [ "JJ" ], "twiggy-looking": [ "JJ" ], "Smartt": [ "NNP" ], "Hebrews": [ "NNPS" ], "series-production": [ "NN" ], "reputable": [ "JJ" ], "Op.": [ "NNP", "NN" ], "Attendance": [ "NN" ], "McGurk": [ "NNP" ], "tended": [ "VBD", "VBN", "JJ" ], "Wright": [ "NNP" ], "individual": [ "JJ", "NN" ], "tender": [ "NN", "VBP", "JJ", "VB" ], "Tuchman": [ "NNP" ], "enveloped": [ "VBN" ], "Collaborative": [ "NNP" ], "multiparty": [ "NN", "JJ" ], "manumitted": [ "VBN" ], "TCU": [ "NNP" ], "TCR": [ "NNP" ], "aviary": [ "NN" ], "halves": [ "NNS", "VBZ" ], "Plunking": [ "VBG" ], "envelopes": [ "NNS" ], "TCI": [ "NNP" ], "TCF": [ "NNP" ], "guilt": [ "NN" ], "Isaiah": [ "NNP" ], "technical-ladder": [ "JJ" ], "interfaces": [ "NNS" ], "constitutional-law": [ "JJ", "NN" ], "analogues": [ "NNS" ], "overvalued": [ "VBN", "VBN|JJ", "VBD", "JJ" ], "trespassed": [ "VBN", "VBD" ], "cleaned-up": [ "JJ" ], "Belshazzar": [ "NNP" ], "Preambles": [ "NNS" ], "understand\\/adopt": [ "VB" ], "combustibles": [ "NNS" ], "mid-February": [ "NNP" ], "Grieco": [ "NNP" ], "PW4060": [ "NNP" ], "Rossi": [ "NNP" ], "Krauss-Maffei": [ "NNP" ], "Jenner": [ "NNP" ], "Sidney": [ "NNP" ], "sugar-subsidy": [ "NN" ], "Counselors": [ "NNPS" ], "Ladehoff": [ "NNP" ], "openness": [ "NN" ], "Payline": [ "NNP" ], "suppressing": [ "VBG" ], "seven-inning": [ "JJ" ], "blood-kinship": [ "NN" ], "create": [ "VB", "VBP" ], "TROUBLES": [ "NNS" ], "Ever-more": [ "RB" ], "Lousie": [ "NNP" ], "fast-frozen": [ "JJ" ], "Senora": [ "NNP" ], "Lubbock": [ "NNP" ], "Ritchie": [ "NNP" ], "hopefuls": [ "NNS" ], "roomette": [ "NN" ], "Servant": [ "NNP" ], "flavorful": [ "JJ" ], "Casino": [ "NNP", "NN" ], "COVER": [ "NN" ], "pre-1933": [ "JJ" ], "understand": [ "VB", "VBP" ], "realms": [ "NNS" ], "Dycom": [ "NNP" ], "Pozen": [ "NNP" ], "Sino-British": [ "JJ" ], "Ding": [ "NNP" ], "bile": [ "NN" ], "unify": [ "VB" ], "enchanted": [ "VBN", "JJ" ], "Dino": [ "NNP" ], "laxness": [ "NN" ], "bill": [ "NN", "VBP", "VB" ], "bilk": [ "VB" ], "Salpetriere": [ "NNP" ], "Dinh": [ "NNP" ], "prolusions": [ "NNS" ], "Defending": [ "VBG" ], "CONTAMINATION": [ "NN" ], "non-Dow": [ "NNP" ], "Incorrect": [ "JJ" ], "vaults": [ "NNS" ], "shoddy": [ "JJ" ], "credit-worthiness": [ "NN" ], "rancor": [ "NN" ], "decoration": [ "NN" ], "cadge": [ "VBP" ], "tribesmen": [ "NNS" ], "arenas": [ "NNS" ], "computer-network": [ "NN" ], "Monarque": [ "FW" ], "saline": [ "NN", "JJ" ], "headless": [ "JJ" ], "Zimmer": [ "NNP" ], "leafed": [ "VBD" ], "Carrying": [ "VBG" ], "copying": [ "NN", "VBG" ], "Martinique": [ "NNP" ], "dishonouring": [ "VBG" ], "F.D.": [ "NNP" ], "less-hurried": [ "JJ" ], "Barksdale": [ "NNP" ], "Motor": [ "NNP", "NN" ], "itch": [ "VB", "NN" ], "praising": [ "VBG" ], "Sinhalese-dominated": [ "JJ" ], "most-obvious": [ "JJ" ], "moment": [ "NN" ], "citadels": [ "NNS" ], "Bermuda-based": [ "JJ" ], "information-display": [ "JJ", "NN" ], "sandals": [ "NNS" ], "carver": [ "NN" ], "Coffin": [ "NNP" ], "knowed": [ "VBN" ], "grown-up": [ "JJ", "NN" ], "Figura": [ "NNP" ], "Langbo": [ "NNP" ], "Figure": [ "NN", "VB", "NNP" ], "percentages": [ "NNS" ], "high-tech-sounding": [ "JJ" ], "morrow": [ "NN" ], "cornball": [ "NN" ], "y": [ "NNP", "NN" ], "revising": [ "VBG" ], "absolving": [ "VBG" ], "chemistry": [ "NN" ], "Considering": [ "VBG" ], "echoing": [ "VBG" ], "purview": [ "NN" ], "makeshifts": [ "NNS" ], "Bremen": [ "NNP" ], "Cycads": [ "NNS" ], "Chojnowski": [ "NNP" ], "Sheckley": [ "NNP" ], "zodiacal": [ "JJ" ], "dishonesty": [ "NN" ], "alignment": [ "NN" ], "diversions": [ "NNS" ], "Overstreet": [ "NNP" ], "excites": [ "VBZ" ], "exciter": [ "NN" ], "shouting": [ "VBG", "NN" ], "bridal": [ "JJ" ], "Alida": [ "NNP" ], "Scholars": [ "NNPS", "NNS" ], "co-manager": [ "NN" ], "chambermaid": [ "NN" ], "co-managed": [ "VBN", "JJ", "VBD" ], "matters": [ "NNS", "VBZ" ], "reapportionment": [ "NN" ], "Enhance": [ "NNP" ], "Trichinella": [ "NN" ], "wave-particle": [ "NN" ], "wisenheimer": [ "NN" ], "disrepair": [ "NN" ], "enervation": [ "NN" ], "forepart": [ "NN" ], "Sigoloff": [ "NNP" ], "Reedy": [ "NNP" ], "glove": [ "NN" ], "Orthodoxy": [ "NNP" ], "deshabille": [ "NN" ], "INFLATION": [ "NN" ], "gut-flattening": [ "JJ" ], "friezes": [ "NNS" ], "Rawlins": [ "NNP" ], "protein-restricted": [ "JJ" ], "Chosen": [ "NNP" ], "peddlers": [ "NNS" ], "gravy": [ "NN" ], "examples": [ "NNS" ], "quarter-point": [ "NN", "JJ" ], "fee-shifting": [ "JJ" ], "ferroelectric": [ "JJ" ], "scrim": [ "NN" ], "Bretz": [ "NNP" ], "aerobic": [ "JJ" ], "pew": [ "NN" ], "Brett": [ "NNP" ], "integration": [ "NN" ], "per": [ "IN", "FW", "RP", "NNP" ], "pen": [ "NN", "VB" ], "Simplex": [ "JJ" ], "best-performing": [ "JJ", "JJS" ], "peg": [ "VBP", "NN", "VB" ], "commentator": [ "NN" ], "pea": [ "NN" ], "anarchic": [ "JJ" ], "F18s": [ "NNS" ], "robbery": [ "NN" ], "chartists": [ "NNS" ], "Roulac": [ "NNP" ], "all-night": [ "JJ" ], "pulse-jet": [ "NN" ], "I.N.D.": [ "NNP" ], "Bledsoe": [ "NNP" ], "chanting": [ "VBG", "NN" ], "Elsie": [ "NNP" ], "chargeable": [ "JJ" ], "defrayed": [ "VBN" ], "engorged": [ "VBN" ], "judicial-conduct": [ "NN" ], "Banfield": [ "NNP" ], "dystopia": [ "NN" ], "Lovingood": [ "NNP" ], "robbers": [ "NNS" ], "conciliatory": [ "JJ" ], "bestseller": [ "NN" ], "beans": [ "NNS" ], "Privately": [ "RB", "NNP" ], "industrial-gas": [ "JJ" ], "Pastiche": [ "NN" ], "C.A.I.P.": [ "NNP" ], "Datsun": [ "NNP" ], "reckonings": [ "NNS" ], "code-sharing": [ "NN" ], "neutrality": [ "NN" ], "Helps": [ "VBZ" ], "STUDIES": [ "NNS" ], "uncaused": [ "JJ" ], "meet...": [ ":" ], "witchcraft": [ "NN" ], "Tbilisi": [ "NNP" ], "Sleepwalkers": [ "NNS" ], "forward": [ "RB", "JJ", "NN", "VB" ], "Punjab": [ "NNP" ], "doctored": [ "VBN" ], "precision-timing": [ "NN" ], "Mikulski": [ "NNP" ], "roadbuilding": [ "NN" ], "weaker": [ "JJR", "RBR" ], "interagency": [ "NN", "JJ" ], "nodular": [ "JJ" ], "re-enacting": [ "VBG" ], "juxtaposed": [ "VBN" ], "dueled": [ "VBD" ], "juxtaposes": [ "VBZ" ], "brain-damaged": [ "JJ" ], "pre-sale": [ "JJ" ], "Debban": [ "NNP" ], "Doing": [ "NNP", "VBG" ], "Soon": [ "RB" ], "floppy-tie": [ "JJ" ], "Kuhlke": [ "NNP" ], "uninitiate": [ "NN" ], "circumvention": [ "NN" ], "Ohio": [ "NNP" ], "unequally": [ "RB" ], "groove": [ "NN" ], "MVP": [ "NNP" ], "Accident": [ "NNP", "NN" ], "life-like": [ "JJ" ], "congruence": [ "NN" ], "Jenco": [ "NNP" ], "spoonfuls": [ "NNS" ], "omens": [ "NNS" ], "dispensation": [ "NN" ], "revenue-law": [ "JJ", "NN" ], "semi-catatonic": [ "JJ" ], "Versailles": [ "NNP" ], "bracket": [ "NN" ], "TXO": [ "NNP" ], "fogged": [ "JJ" ], "Sumarlin": [ "NNP" ], "swamp": [ "NN", "VB" ], "Rieke": [ "NNP" ], "plugged": [ "VBN", "VBD" ], "bronchioles": [ "NNS" ], "Fiberglas": [ "JJ", "NN", "NNP" ], "excrete": [ "VB" ], "Andrews": [ "NNP" ], "Ebaugh": [ "NNP" ], "aunt": [ "NN" ], "transferors": [ "NNS" ], "Cardenas": [ "NNP" ], "seventh-biggest": [ "JJ" ], "Tonkin": [ "NNP" ], "escapade": [ "NN" ], "Intercede": [ "VB" ], "aggregates": [ "NNS" ], "fished": [ "VBN" ], "fervently": [ "RB" ], "Branagan": [ "NNP" ], "oceanthermal": [ "JJ" ], "retranslated": [ "VBN" ], "Zapfel": [ "NNP" ], "amused": [ "VBN", "JJ", "VBD" ], "Scots": [ "NNS", "NNP", "NNPS" ], "Scott": [ "NNP" ], "Worldly": [ "RB", "NNP" ], "boathouses": [ "NNS" ], "Nordine": [ "NNP" ], "out-of-bounds": [ "JJ" ], "Haldeman": [ "NNP" ], "Intrepid": [ "NNP" ], "dogged": [ "VBN", "JJ", "VBD" ], "Meagher": [ "NNP" ], "front-page": [ "JJ", "NN" ], "dioxins": [ "NNS" ], "Saint": [ "NNP" ], "Isle": [ "NNP" ], "Islander": [ "NNP" ], "Someone": [ "NN", "NNP" ], "waterflows": [ "NNS" ], "Weir": [ "NNP" ], "Orly": [ "NNP" ], "granular": [ "JJ" ], "Wein": [ "NNP" ], "Weil": [ "NNP" ], "Ernesto": [ "NNP" ], "Hempel": [ "NNP" ], "internment": [ "NN" ], "inject": [ "VB", "VBP" ], "cortisone": [ "NN" ], "Bridewell": [ "NNP" ], "countriman": [ "NN" ], "confounding": [ "VBG" ], "Berets": [ "NNPS" ], "Telesis": [ "NNP" ], "Dirion": [ "NNP" ], "resonant": [ "JJ" ], "subservient": [ "JJ" ], "surgeon": [ "NN" ], "samovar": [ "FW", "NN" ], "knight": [ "NN" ], "Brumbaugh": [ "NNP" ], "supine": [ "NN" ], "burlesques": [ "NNS" ], "Preparedness": [ "NN" ], "Abbot": [ "NNP" ], "mobilize": [ "VB" ], "Cesar": [ "NNP" ], "Select": [ "NNP", "VB" ], "unpublishable": [ "JJ" ], "Turkey": [ "NNP", "NN" ], "ovens": [ "NNS" ], "hardening": [ "VBG" ], "educators": [ "NNS" ], "antigen": [ "NN" ], "tinny": [ "JJ", "NN" ], "mural": [ "NN" ], "Smalling": [ "NNP" ], "bloodshot": [ "JJ" ], "agricolas": [ "FW" ], "high-sulfur": [ "JJ" ], "WHAT": [ "WP", "WDT" ], "WHAS": [ "NNP" ], "campuses": [ "NNS" ], "Machinist-union": [ "NNP" ], "T-34": [ "NN" ], "Johnnie": [ "NNP" ], "T-37": [ "NN" ], "T-38": [ "NN" ], "Supplemental": [ "NNP", "JJ", "NN" ], "free-mail": [ "NN" ], "Weakest": [ "JJS" ], "raccoons": [ "NNS" ], "Seize": [ "NNP", "VB" ], "Biscuit": [ "NNP" ], "Backstage": [ "RB" ], "nonexistent": [ "JJ" ], "bachelor": [ "NN" ], "intercept": [ "NN", "VBP", "VB" ], "puffed-up": [ "JJ" ], "Cheil": [ "NNP" ], "Unida": [ "NNP" ], "jockeys": [ "NNS" ], "Jeep-brand": [ "JJ" ], "mindset": [ "NN" ], "Unocal": [ "NNP", "JJ" ], "Petrone": [ "NNP" ], "Storeria": [ "NNP" ], "DISAPPOINTMENTS": [ "NNS" ], "resurrect": [ "VB", "VBP" ], "compellingly": [ "RB" ], "adult-literacy": [ "NN" ], "Papandreou": [ "NNP" ], "four-family": [ "JJ" ], "Conmel": [ "NNP" ], "fourth-quarter": [ "JJ", "NN" ], "Kapadia": [ "NNP" ], "Chancellorsville": [ "NNP" ], "agribusiness": [ "NN" ], "Blossom": [ "NNP" ], "SMU": [ "NNP" ], "Interstate\\/Johnson": [ "NNP" ], "asynchrony": [ "NN" ], "beanstalk": [ "NN" ], "dudgeon": [ "NN" ], "facades": [ "NNS" ], "Manila": [ "NNP" ], "ups-and-downs": [ "NNS" ], "oval": [ "JJ", "NN" ], "resolutions": [ "NNS" ], "SMD": [ "NNP" ], "name-dropping": [ "NN", "NNP" ], "Status": [ "NN", "NNP" ], "lamplight": [ "NN" ], "Barcelona-based": [ "JJ" ], "Statue": [ "NNP" ], "Declaration": [ "NNP", "NN" ], "McCaughey": [ "NNP" ], "Galway": [ "NNP" ], "Vasady": [ "NNP" ], "Single-subject": [ "JJ" ], "Kattus": [ "NNP" ], "armadillo": [ "NN" ], "ashamed": [ "JJ" ], "informally": [ "RB" ], "parapsychology": [ "NN" ], "Bulletin": [ "NNP", "NN" ], "misty-eyed": [ "JJ" ], "grandmotherly": [ "JJ" ], "RIGHTS": [ "NNS" ], "vaudeville": [ "NN" ], "REVENUE": [ "NN" ], "Period": [ "NN", "NNP" ], "nullified": [ "VBN", "VBD" ], "do-everything": [ "JJ" ], "celiac": [ "JJ" ], "Inconsistent": [ "JJ" ], "double-B-minus\\": [ "NN" ], "Impressions": [ "NNS" ], "parkway": [ "NN" ], "wooooosh": [ "NN" ], "poseur": [ "NN" ], "steel-related": [ "JJ" ], "Shining": [ "NNP", "VBG" ], "pool-care": [ "JJ" ], "CONSULTING": [ "NNP" ], "whitehaired": [ "JJ" ], "Comroe": [ "NNP" ], "Goldenthal": [ "NNP" ], "flour-milling": [ "JJ", "NN" ], "second-year": [ "JJ" ], "effectively": [ "RB" ], "Galata": [ "NNP" ], "Starks": [ "NNP" ], "spruce": [ "NN", "VB" ], "contempt": [ "NN" ], "debt-heavy": [ "JJ" ], "cinderblock": [ "NN" ], "emotionalism": [ "NN" ], "regions": [ "NNS" ], "druther": [ "VB" ], "fete": [ "VB" ], "Graciela": [ "NNP" ], "Ridgway": [ "NNP" ], "Fryar": [ "NNP" ], "aft": [ "JJ", "NN", "RB" ], "carvers": [ "NNS" ], "vitreous-china": [ "NN" ], "Cliff": [ "NNP" ], "Continuity": [ "NN" ], "Institutionalization": [ "NN" ], "Technical": [ "NNP", "JJ" ], "annexed": [ "VBD" ], "xxxx": [ "NN" ], "market-research": [ "NN", "JJ" ], "frenzy-free": [ "JJ" ], "UKRAINIANS": [ "NNS" ], "Japanese-South": [ "NNP" ], "cost-finding": [ "JJ" ], "Gazing": [ "VBG" ], "Freightways": [ "NNP", "NNPS" ], "primers": [ "NNS" ], "italics": [ "NNS" ], "Livestock": [ "NN", "NNP" ], "Healy": [ "NNP" ], "MacDowell": [ "NNP" ], "Resist": [ "VB" ], "cuvees": [ "NNS" ], "stevedore": [ "NN" ], "retail-banking": [ "JJ", "NN" ], "minivan": [ "NN" ], "fallback": [ "NN", "JJ" ], "Hausman": [ "NNP" ], "HUGO": [ "NNP" ], "deliberative": [ "JJ" ], "Dunbar": [ "NNP" ], "in-house": [ "JJ", "NN", "RB" ], "downtime": [ "NN" ], "Pherwani": [ "NNP" ], "hugged": [ "VBD" ], "lands": [ "NNS", "VBZ" ], "Shangri-La": [ "NNP" ], "bow-tied": [ "JJ" ], "Hermann": [ "NNP" ], "American-trained": [ "JJ" ], "Hindle": [ "NNP" ], "band-wagon": [ "JJ" ], "sic": [ "RB", "FW", "VB" ], "Schedule": [ "NNP" ], "boy-meets-girl": [ "NN" ], "lampposts": [ "NNS" ], "acres": [ "NNS" ], "resorting": [ "VBG" ], "latitude": [ "NN" ], "farm-trade": [ "JJ" ], "Presbyterian-St": [ "JJ|NP" ], "Pembridge": [ "NNP" ], "unnerved": [ "VBD", "JJ" ], "Stricken": [ "NNP" ], "phagocytes": [ "NNS" ], "repassed": [ "VBN" ], "Hard-hitting": [ "JJ" ], "GMAC": [ "NNP" ], "institutionally": [ "RB" ], "doffing": [ "VBG" ], "Churpek": [ "NNP" ], "Adobe": [ "NNP" ], "Unemployment": [ "NN", "NNP" ], "ahdawam": [ "UH" ], "Baltimore-Washington": [ "NNP" ], "Uyl": [ "NNP" ], "slipping": [ "VBG" ], "vivified": [ "VBN" ], "LaRosa": [ "NNP" ], "reintroducing": [ "VBG" ], "Previous": [ "JJ" ], "Ghost": [ "NN", "NNP" ], "Whaley": [ "NNP" ], "thwart": [ "VB", "NN", "RB" ], "transported": [ "VBN", "VBD" ], "Whaler": [ "NNP" ], "programmed": [ "VBN", "JJ" ], "Sino-Soviet": [ "JJ" ], "live-oak": [ "NN" ], "Mercers": [ "NNPS" ], "programmes": [ "NNS" ], "most-valuable": [ "JJ" ], "Rotterdam": [ "NNP" ], "Westland": [ "NNP" ], "defend": [ "VB", "VBP" ], "Sussex": [ "NNP" ], "Tut": [ "NNP" ], "magic-practicing": [ "JJ" ], "opining": [ "VBG" ], "rec": [ "NN" ], "electronics": [ "NNS", "NN" ], "red": [ "JJ", "NN" ], "franc": [ "NN" ], "Magwitch": [ "NNP" ], "Aitken": [ "NNP" ], "aflatoxin": [ "NN" ], "retrieved": [ "VBN", "VBD" ], "consortiums": [ "NNS" ], "soreheads": [ "NNS" ], "Theodor": [ "NNP" ], "chattily": [ "RB" ], "EXPECT": [ "VBP" ], "trends": [ "NNS" ], "Turbofan": [ "NN" ], "Buffalo": [ "NNP", "NN" ], "retriever": [ "NN" ], "power-hitter": [ "NN" ], "cured": [ "VBN", "VBD" ], "Multi-employer": [ "JJ" ], "cures": [ "NNS", "VBZ" ], "taxable-fund": [ "JJ" ], "imput": [ "NN" ], "Operators": [ "NNP", "NNS" ], "strippers": [ "NNS" ], "STEEL": [ "NNP" ], "plastics": [ "NNS" ], "dusty-green": [ "JJ" ], "hay-fever": [ "NN" ], "embarrassed": [ "VBN", "VBD", "JJ" ], "hurdle": [ "NN", "VB" ], "Birdwood": [ "NNP" ], "rusticated": [ "VBN" ], "afield": [ "RB" ], "Hans-Ulrich": [ "NNP" ], "splotched": [ "JJ" ], "data-processing": [ "NN", "JJ" ], "non-Christians": [ "NNPS", "NNP" ], "ripples": [ "NNS" ], "realistically": [ "RB" ], "talkfest": [ "NN" ], "rippled": [ "VBD" ], "wistfully": [ "RB" ], "less-traveled": [ "JJ" ], "Warhol": [ "NNP" ], "Kilty": [ "NNP" ], "strongman": [ "NN" ], "Deacon": [ "NNP" ], "environmental": [ "JJ" ], "sporadically": [ "RB" ], "absent-minded": [ "JJ" ], "Battle-tested": [ "JJ" ], "Pesaro": [ "NNP" ], "non-executive": [ "JJ" ], "plumage": [ "NN" ], "slack": [ "JJ", "VB", "NN" ], "Sabha": [ "NNP" ], "shrapnel": [ "NN" ], "Low-flying": [ "JJ" ], "shampoo": [ "NN" ], "splotches": [ "NNS" ], "MATTEL": [ "NNP" ], "calamity": [ "NN" ], "boyish": [ "JJ" ], "Engineer": [ "NNP" ], "Moiseyeva": [ "NNP" ], "NUCLEAR": [ "NN" ], "Lech": [ "NNP" ], "two-year-long": [ "JJ" ], "patting": [ "VBG" ], "discussions": [ "NNS" ], "Rudnick": [ "NNP" ], "thyroidal": [ "JJ" ], "handsets": [ "NNS" ], "X-linked": [ "JJ" ], "Nugent": [ "NNP" ], "lawmkers": [ "NNS" ], "MLSS": [ "NN" ], "safety-related": [ "JJ" ], "debt-reduction": [ "NN", "JJ" ], "KnowledgeWare": [ "NNP" ], "Airways": [ "NNPS", "NNP" ], "Goldman": [ "NNP" ], "Hitching": [ "VBG" ], "Flem": [ "NNP" ], "program-related": [ "JJ" ], "Flea": [ "NNP" ], "doubleheader": [ "NN" ], "Flee": [ "VBP" ], "mooring": [ "NN" ], "Nikes": [ "NNPS" ], "HOME-SALE": [ "JJ" ], "hazel": [ "JJ" ], "Cheri": [ "NNP" ], "tartan-patterned": [ "JJ" ], "diathermy": [ "NN" ], "WACS": [ "NNPS" ], "Matteson": [ "NNP" ], "tax-writing": [ "JJ" ], "W.E.": [ "NNP" ], "heartening": [ "JJ" ], "Illustrated": [ "NNP" ], "Mohamad": [ "NNP" ], "discursive": [ "JJ" ], "absurd": [ "JJ" ], "trobles": [ "NNS" ], "planks": [ "NNS" ], "SMALL-BUSINESS": [ "NN" ], "Sansui": [ "NNP" ], "Irrawaddy": [ "NNP" ], "overhangs": [ "NNS" ], "Straighten": [ "VB" ], "rusted": [ "JJ" ], "chevre": [ "NN" ], "Unconscionable": [ "JJ" ], "coloring": [ "NN" ], "debacles": [ "NNS" ], "hydroelectric": [ "JJ" ], "Yoshimoto": [ "NNP" ], "anthropic": [ "JJ" ], "Complaints": [ "NNS" ], "SOUTHERN": [ "NNP" ], "equilibrium": [ "NN" ], "Sgt.": [ "NNP" ], "chairmanships": [ "NNS" ], "Reversal": [ "NNP" ], "bat-roost": [ "JJ" ], "thrived": [ "VBD", "VBN" ], "Matsui": [ "NNP" ], "can..": [ "MD" ], "SAVINGS": [ "NNP", "NNPS" ], "gardenettes": [ "NNS" ], "timing": [ "NN", "VBG" ], "thrives": [ "VBZ" ], "areas": [ "NNS", "VBN" ], "crabs": [ "NNS" ], "Back-of-the-envelope": [ "JJ" ], "organ": [ "NN" ], "king-sized": [ "JJ" ], "eyebrow": [ "NN" ], "excreted": [ "VBN" ], "Pistol-whipping": [ "IN" ], "Oriental": [ "JJ", "NNP" ], "dissolves": [ "VBZ" ], "Ca.": [ "NNP" ], "madam": [ "NN" ], "debt-limit": [ "NN" ], "farthest": [ "JJS", "RBS" ], "heightens": [ "VBZ" ], "subsidizing": [ "VBG" ], "preprinting": [ "NN" ], "Symes": [ "NNP" ], "yearning": [ "NN", "VBG" ], "scholastic": [ "JJ", "NN" ], "refrained": [ "VBD", "VBN" ], "lotter": [ "NN" ], "Talmadge": [ "NNP" ], "Boil": [ "VB" ], "kinesthetically": [ "RB" ], "Dnieper": [ "NNP" ], "exploited": [ "VBN", "VBD" ], "respiration...": [ ":" ], "cheaters": [ "NNS" ], "ex-reporters": [ "NNS" ], "purses": [ "NNS" ], "exploiter": [ "NN" ], "homogenate": [ "NN" ], "pursed": [ "VBD" ], "July": [ "NNP" ], "Keye\\/Donna\\/Pearlstein": [ "NN" ], "Avedisian": [ "NNP" ], "grumble": [ "VBP", "VB" ], "Sabinson": [ "NNP" ], "jeopardizing": [ "VBG" ], "propulsions": [ "NNS" ], "Axa": [ "NNP" ], "Axe": [ "NNP" ], "Gagarin": [ "NNP" ], "professional-design": [ "JJ" ], "optional": [ "JJ" ], "Crary": [ "NNP" ], "Juergen": [ "NNP" ], "deadlock": [ "NN" ], "instant": [ "NN", "JJ" ], "robberies": [ "NNS" ], "provincial": [ "JJ" ], "Olshan": [ "NNP" ], "predispose": [ "VB", "VBP" ], "dBase": [ "NNP" ], "conquered": [ "VBN", "VBD" ], "passing": [ "VBG", "JJ", "NN" ], "glorious": [ "JJ" ], "UMW": [ "NNP" ], "underhandedness": [ "NN" ], "alphabetically": [ "RB" ], "unventilated": [ "VBN" ], "Savannakhet": [ "NNP" ], "Magpie": [ "NNP" ], "rocket-fuel": [ "NN" ], "seashores": [ "NNS" ], "laugh": [ "NN", "VBP", "VB" ], "Run-down": [ "JJ" ], "Weird": [ "JJ", "NNP" ], "instigators": [ "NNS" ], "deliberation": [ "NN" ], "piecewise": [ "RB" ], "Lithuanian": [ "JJ" ], "Salmon": [ "NNP" ], "rpm": [ "NN" ], "Electro-Optical": [ "NNP" ], "kitchen": [ "NN" ], "Corot": [ "NNP" ], "perennially": [ "RB" ], "asymmetrically": [ "RB" ], "arises": [ "VBZ" ], "perplexed": [ "JJ", "VBN" ], "America\\/International": [ "NNP" ], "arisen": [ "VBN" ], "atmospheric": [ "JJ" ], "censuses": [ "NNS" ], "contradicted": [ "VBD", "VBN" ], "Appignanesi": [ "NNP" ], "Blockbuster": [ "NNP" ], "Chicago-centric": [ "JJ" ], "Jacobs": [ "NNP" ], "likable": [ "JJ" ], "prosy": [ "JJ" ], "ornithology": [ "NN" ], "Jacoby": [ "NNP" ], "blood": [ "NN" ], "paper-manufacturing": [ "JJ" ], "CD-type": [ "JJ" ], "Bellcore": [ "NNP" ], "Wrongs": [ "NNS" ], "haunches": [ "NNS" ], "prose": [ "NN" ], "portray": [ "VB", "VBP" ], "Cristiani": [ "NNP" ], "untoward": [ "JJ" ], "progressing": [ "VBG" ], "indistinguishable": [ "JJ" ], "plenipotentiary": [ "NN" ], "Car": [ "NNP", "NN" ], "shuttle": [ "NN", "JJ" ], "Herzfeld": [ "NNP" ], "Orden": [ "NNP" ], "Lombarde": [ "NNP" ], "material": [ "NN", "JJ" ], "TURMOIL": [ "NN" ], "Lombardo": [ "NNP" ], "Dusseldorf": [ "NNP" ], "Lombardi": [ "NNP" ], "bullying": [ "VBG" ], "assessing": [ "VBG" ], "flew": [ "VBD" ], "neckline": [ "NN" ], "ante-bellum": [ "FW", "JJ", "NN" ], "Order": [ "NNP", "NN" ], "besmirch": [ "VB" ], "uncombable": [ "JJ" ], "center": [ "NN", "JJ", "RB", "VB", "VBP" ], "around-the-clock": [ "JJ" ], "roughhewn": [ "JJ" ], "overshadowed": [ "VBN", "VBD" ], "householder": [ "NN" ], "Globally": [ "RB" ], "retiring": [ "VBG", "JJ" ], "supercharged": [ "JJ" ], "oops": [ "UH" ], "publicize": [ "VB" ], "restuarant": [ "JJ" ], "fixated": [ "VBN" ], "reupholstering": [ "VBG" ], "Ragsdale": [ "NNP" ], "granddad": [ "NN" ], "Sirot": [ "NNP" ], "super-absorbent": [ "JJ" ], "Seaman": [ "NNP", "RB" ], "Abscam-indicted": [ "JJ" ], "books": [ "NNS", "NN|POS" ], "surpass": [ "VB", "VBP" ], "seats": [ "NNS", "VBZ" ], "Scraps": [ "NNS" ], "anye": [ "JJ" ], "raves": [ "VBZ" ], "swig": [ "NN" ], "field": [ "NN", "JJ", "VB", "VBP" ], "area-wide": [ "JJ" ], "Kamehameha": [ "NNP" ], "bluebonnets": [ "NNS" ], "bench": [ "NN", "VB" ], "adminstrative": [ "JJ" ], "bogey-symbol": [ "NN" ], "foreign-policy": [ "NN", "JJ" ], "raved": [ "VBD" ], "citizen": [ "NN" ], "Comparable-store": [ "JJ" ], "Aqazadeh": [ "NNP" ], "Greenwood": [ "NNP" ], "tests": [ "NNS", "VBZ" ], "haltingly": [ "RB" ], "worlds": [ "NNS" ], "testy": [ "JJ" ], "repulsions": [ "NNS" ], "deployment": [ "NN" ], "condescending": [ "JJ", "VBG" ], "Mennen": [ "NNP" ], "Tarantino": [ "NNP" ], "incompletely": [ "RB" ], "noncommunist": [ "NN" ], "housekeeper": [ "NN" ], "newly-appointed": [ "JJ" ], "porous": [ "JJ" ], "commencements": [ "NNS" ], "Darvocet-N": [ "NNP" ], "corporativists": [ "NNS" ], "Laundered": [ "VBN" ], "BVI": [ "NNP" ], "works": [ "NNS", "VBZ" ], "lucidly": [ "RB" ], "imprints": [ "NNS" ], "graphic-arts": [ "NNS" ], "mushroomed": [ "VBN", "VBD" ], "Mineola": [ "NNP" ], "president\\/finance": [ "NN" ], "majeure": [ "NN", "FW" ], "whiner": [ "NN" ], "deviants": [ "NNS" ], "Editor": [ "NNP", "NN" ], "legislated": [ "VBN", "VBD" ], "Mukherjee": [ "NNP" ], "job-hunters": [ "NNS" ], "whined": [ "VBD" ], "Hardball": [ "NNP" ], "Mike": [ "NNP" ], "est": [ "FW" ], "encouraging": [ "VBG", "JJ" ], "obsessed": [ "VBN", "JJ" ], "dunes": [ "NNS" ], "biotechnology-based": [ "JJ" ], "cents-off": [ "JJ" ], "Wenger": [ "NNP" ], "kidnappers": [ "NNS" ], "panes": [ "NNS" ], "lumpen-intellectual": [ "JJ" ], "manifesting": [ "VBG" ], "electrical-safety": [ "JJ" ], "Glenham": [ "NNP" ], "snapper": [ "NN" ], "Newarker": [ "NNP" ], "Lousy": [ "JJ" ], "snapped": [ "VBD", "VBN", "JJ" ], "ORDERED": [ "VBN" ], "well-informed": [ "JJ" ], "InterVoice": [ "NNP" ], "panel": [ "NN" ], "E.M.": [ "NNP" ], "radio-controlled": [ "JJ" ], "distilling": [ "VBG", "NN" ], "smartly": [ "RB" ], "sea-transport": [ "JJ" ], "comet-like": [ "JJ" ], "Rucellai": [ "NNP" ], "Financially": [ "RB" ], "large-deposit": [ "JJ" ], "Questions": [ "NNS", "NNP", "VBZ" ], "Bessie": [ "NNP" ], "predictor": [ "NN" ], "baseless": [ "JJ" ], "Law-enforcement": [ "JJ", "NN" ], "rendered": [ "VBN", "VBD" ], "varitinted": [ "JJ" ], "State-Local": [ "NNP" ], "public-health": [ "JJ", "NN" ], "rhythmical": [ "JJ" ], "billions": [ "NNS" ], "lacked": [ "VBD", "VBN" ], "weekends": [ "NNS" ], "eine": [ "FW" ], "calorie-heavy": [ "JJ" ], "earnings-driven": [ "JJ" ], "Single-occupancy": [ "NN" ], "enticed": [ "VBD" ], "Owens-Corning": [ "NNP" ], "growth-controlling": [ "JJ" ], "AGAIN": [ "RB" ], "buy": [ "VB", "VBP", "VB|NN", "JJ", "NN" ], "co-anchored": [ "VBN" ], "bus": [ "NN" ], "Der": [ "NNP" ], "Losses": [ "NNS", "NNP" ], "Paperboard": [ "NNP", "NN" ], "but": [ "CC", "IN", "JJ", "RB" ], "shute": [ "VB" ], "authenticator": [ "NN" ], "Dei": [ "NNP", "FW" ], "Del": [ "NNP" ], "Den": [ "NNP" ], "Deo": [ "NNP" ], "first-floor": [ "JJ", "NN" ], "Deb": [ "NNP" ], "Dec": [ "NNP" ], "Dee": [ "NNP" ], "Def": [ "NNP" ], "embargo": [ "NN", "VB" ], "misty": [ "JJ" ], "princes": [ "NNS" ], "Salant": [ "NNP" ], "frugally": [ "RB" ], "breweries": [ "NNS" ], "Albertine": [ "NNP" ], "Salang": [ "NNP" ], "minutes": [ "NNS" ], "moralizing": [ "VBG", "JJ" ], "windless": [ "JJ" ], "probaby": [ "NN" ], "air-quality": [ "NN" ], "airmen": [ "NNS" ], "Meantime": [ "RB", "NNP" ], "wide-eyed": [ "JJ" ], "Hofstad": [ "NNP" ], "Dunkirk": [ "NNP" ], "Euromarket": [ "NNP" ], "Marches": [ "NNPS" ], "Shvets": [ "NNP" ], "virtual": [ "JJ" ], "shearing": [ "NN", "VBG" ], "Worker": [ "NNP" ], "ledge": [ "NN" ], "Altogether": [ "RB" ], "Phase": [ "NN", "NNP" ], "I...": [ ":" ], "Aca": [ "NNP" ], "greater-fool": [ "JJ", "JJR" ], "Annihilate": [ "VB" ], "Ace": [ "NNP", "NN" ], "brainlessly": [ "RB" ], "Jerebohms": [ "NNP" ], "glacier-like": [ "JJ" ], "weaponry": [ "NN" ], "Act": [ "NNP", "NN" ], "Zhitkov": [ "NNP" ], "McFall": [ "NNP" ], "Scotchgard": [ "NNP" ], "godsend": [ "NN" ], "solution-type": [ "JJ" ], "contraceptive": [ "JJ", "NN" ], "deluxe": [ "JJ" ], "Ashurst": [ "NNP" ], "test-preparation": [ "JJ" ], "Stock-loan": [ "NN" ], "winders": [ "NNS" ], "pupil": [ "NN" ], "AYER": [ "NNP" ], "Scandal": [ "NN", "NNP" ], "augmented": [ "VBN", "JJ", "VBD" ], "low-load": [ "JJ" ], "Pacemakers": [ "NNPS" ], "state-supported": [ "JJ" ], "represent": [ "VB", "VBP" ], "twice-extended": [ "JJ" ], "liar": [ "NN" ], "dere": [ "NN" ], "revoking": [ "VBG" ], "Uhl": [ "NNP" ], "poorest": [ "JJS" ], "adoption-business": [ "NN" ], "Grumman": [ "NNP" ], "Additionally": [ "RB" ], "non-consolidated": [ "JJ" ], "tweed": [ "NN" ], "pride": [ "NN", "VBP" ], "Merabank": [ "NNP" ], "placated": [ "VBN" ], "Unpopular": [ "JJ" ], "nonresident": [ "JJ" ], "Pilgrim": [ "NNP", "NN" ], "Pilgrin": [ "NNP" ], "human-robot": [ "NN" ], "Industry": [ "NN", "NNP" ], "despondency": [ "NN" ], "Metzler": [ "NNP" ], "position-squaring": [ "NN" ], "every": [ "DT" ], "softened": [ "VBD", "VBN", "JJ" ], "upstream": [ "RB", "JJ" ], "Durenberger": [ "NNP" ], "Industri": [ "NNP" ], "Steak": [ "NNP" ], "Steam": [ "NN" ], "Origin": [ "NN" ], "Presence": [ "NNP" ], "ovation": [ "NN" ], "Archipelago": [ "NNP" ], "Hanover-Misty": [ "NNP" ], "phonebook": [ "NN" ], "Hemphill": [ "NNP" ], "make-work": [ "JJ", "NN" ], "MacNamara": [ "NNP" ], "joggers": [ "NNS" ], "Batchelor": [ "NNP" ], "Shareholders": [ "NNS", "NNP" ], "picketed": [ "VBD", "VBN" ], "cooperative": [ "JJ", "NN" ], "Arab-Israeli": [ "JJ" ], "Express-Buick": [ "NNP" ], "Sokolov": [ "NNP" ], "weddings": [ "NNS" ], "estimates": [ "NNS", "VBZ" ], "Rash": [ "NNP" ], "crocketed": [ "JJ" ], "persuade": [ "VB", "VBP" ], "Cosgrove": [ "NNP" ], "freehand": [ "JJ", "RB" ], "estimated": [ "VBN", "JJ", "VBD" ], "Burroughs": [ "NNP" ], "Obsolescence": [ "NNP" ], "allowances": [ "NNS" ], "third-class": [ "JJ" ], "rustler-hunter": [ "NN" ], "specification": [ "NN" ], "Continuous": [ "JJ" ], "sheeted": [ "JJ" ], "morbid-minded": [ "JJ" ], "Hachuel": [ "NNP" ], "smidgins": [ "NNS" ], "conduct": [ "NN", "VBP", "VB" ], "streetcars": [ "NNS" ], "injections": [ "NNS" ], "city-trading": [ "NN" ], "pats": [ "NNS" ], "Indonesia": [ "NNP", "NN" ], "bearishly": [ "RB" ], "Holiness": [ "NN", "NNP" ], "stared": [ "VBD", "VBN" ], "market-oriented": [ "JJ" ], "transmits": [ "VBZ" ], "Ferraro": [ "NNP" ], "Ferrari": [ "NNP" ], "contentions": [ "NNS" ], "bulks": [ "VBZ" ], "path": [ "NN" ], "stares": [ "NNS" ], "Ferrara": [ "NNP" ], "orthodoxy": [ "NN" ], "reversals": [ "NNS" ], "Herwig": [ "NNP" ], "connoisseur": [ "NN" ], "Coddington": [ "NNP" ], "auction": [ "NN", "VB" ], "Hoof": [ "NNP" ], "proportioned": [ "JJ" ], "Pieces": [ "NNP", "NNS" ], "Engaging": [ "VBG" ], "characterizing": [ "VBG" ], "monogamous": [ "JJ" ], "pay-back": [ "JJ" ], "vacations": [ "NNS" ], "Idrissa": [ "NNP" ], "tie-in": [ "NN", "JJ" ], "touchdowns": [ "NNS" ], "charisma": [ "NN" ], "visibly": [ "RB" ], "anticus": [ "NN" ], "visible": [ "JJ" ], "Kids": [ "NNP", "NNS", "NNPS" ], "protein-1": [ "NN" ], "Leech": [ "NNP" ], "Minority": [ "NNP", "NN" ], "Housed": [ "VBN" ], "privet": [ "NN" ], "discrepancies": [ "NNS" ], "Houses": [ "NNS" ], "government-mandated": [ "JJ" ], "Interfunding": [ "NNP" ], "Grimesby": [ "NNP" ], "acceded": [ "VBD", "VBN" ], "microwavable": [ "JJ" ], "minicrash": [ "NN" ], "mV": [ "NN" ], "corporis": [ "FW" ], "casualties": [ "NNS" ], "mother.": [ "NN" ], "cerebellum": [ "NN" ], "Stanger": [ "NNP" ], "mg": [ "NN", "JJ" ], "ma": [ "FW", "NN" ], "mm": [ "NN" ], "ml": [ "NN" ], "mo": [ "NN" ], "Alternatives": [ "NNP" ], "WBBM-TV": [ "NNP" ], "Bramalea": [ "NNP" ], "my": [ "PRP$", "UH", "PRP", "JJ" ], "quarrel": [ "NN", "VB" ], "mnemonic": [ "JJ" ], "Sark": [ "NNP" ], "autoloader": [ "NN" ], "high-sounding": [ "JJ" ], "then-Treasury": [ "JJ", "NNP" ], "Gutfreunds": [ "NNPS" ], "Motel": [ "NNP" ], "Sara": [ "NNP" ], "Sidewalks": [ "NNPS" ], "DJS": [ "NNP" ], "Sary": [ "NNP" ], "Mardis": [ "NNP" ], "predicting-machines": [ "NNS" ], "end": [ "NN", "VBP", "JJ", "RB", "VB" ], "Fundamentals": [ "NNS", "NNPS" ], "idosyncratic": [ "JJ" ], "frescos": [ "NNS" ], "Jeep": [ "NN", "NNP" ], "Kreisler": [ "NNP" ], "that...": [ ":" ], "six-thirty": [ "JJ" ], "charging": [ "VBG", "NN" ], "toasted-nut": [ "NN" ], "Handelsbanken": [ "NNP" ], "Essentially": [ "RB" ], "VCRs": [ "NNS" ], "unanimously": [ "RB" ], "protuberance": [ "NN" ], "polymerase": [ "NN" ], "ivory-inlay": [ "NN" ], "unit-making": [ "VBG" ], "SMART": [ "JJ" ], "stronghold": [ "NN" ], "PUBLICITY": [ "NN" ], "Maxwell": [ "NNP" ], "arbitrate": [ "VB" ], "Praver": [ "NNP" ], "enervating": [ "VBG" ], "scout": [ "NN", "VB" ], "Cattle": [ "NNS", "NNP" ], "Seidler": [ "NNP" ], "frontend": [ "NN" ], "Wintour": [ "NNP" ], "imbued": [ "VBN" ], "Selected": [ "JJ", "NNP", "VBN" ], "non-identity": [ "JJ" ], "half-brothers": [ "NNS" ], "computer-aided-software-engineering": [ "NN" ], "reformers": [ "NNS" ], "fads": [ "NNS" ], "Dahl": [ "NNP" ], "Leonid": [ "NNP" ], "canto": [ "FW", "NN" ], "stingrays": [ "NNS" ], "expectations": [ "NNS" ], "Keats": [ "NNP" ], "Keath": [ "NNP" ], "egotist...": [ ":" ], "fade": [ "VB", "VBP", "NN" ], "Lauber": [ "NNP" ], "tall-oil": [ "JJ" ], "KRAFT": [ "NNP" ], "moontrack": [ "NN" ], "Bristol-Myers": [ "NNP" ], "cost-containment": [ "NN", "JJ" ], "Sturdy": [ "JJ" ], "Gotta": [ "VB", "NNP" ], "carrier-based": [ "JJ" ], "roost": [ "VB", "NN" ], "disparaged": [ "VBD", "VBN" ], "Geffen": [ "NNP" ], "Injun": [ "NNP" ], "Odysseus": [ "NNP" ], "Russian-dominated": [ "JJ" ], "DBL": [ "NNP" ], "cronyism": [ "NN" ], "Laguerre": [ "NNP" ], "DBC": [ "NNP" ], "mothers": [ "NNS" ], "chuck": [ "NN", "VB" ], "Sting": [ "NNP" ], "Moritz": [ "NNP" ], "filling": [ "VBG", "NN" ], "yakking": [ "VBG" ], "Morita": [ "NNP" ], "victory": [ "NN" ], "skeletal": [ "JJ" ], "DBS": [ "NNP" ], "woolgather": [ "VB" ], "lasting": [ "VBG", "JJ" ], "Lanese": [ "NNP" ], "signing": [ "VBG", "NN" ], "Messerschmitt-Boelkow": [ "NNP" ], "Hodge": [ "NNP" ], "proportion": [ "NN" ], "fussing": [ "VBG" ], "magnets": [ "NNS" ], "Hippocrates": [ "NNP", "NNS" ], "poncho": [ "NN" ], "frog-haiku": [ "NN" ], "clozapine": [ "NN" ], "goo": [ "NN" ], "Katonah": [ "NNP" ], "vade": [ "FW" ], "trumpeter": [ "NN" ], "market-opening": [ "JJ" ], "co-produce": [ "VB" ], "two-hour": [ "JJ" ], "gob": [ "NN" ], "ex-lawyer": [ "NN" ], "metal-processing": [ "JJ" ], "millennium": [ "NN" ], "Imprimis": [ "NNP" ], "Telephone-operations": [ "NNS" ], "interconnectedness": [ "NN" ], "got": [ "VBD", "VBN", "VBP", "VB" ], "Telecussed": [ "VBD" ], "investment-promotion": [ "NN" ], "scopes": [ "NNS" ], "Rugged": [ "JJ" ], "stock-loan": [ "NN" ], "cirrhosis": [ "NN" ], "Circus-Circus": [ "NNP" ], "scoped": [ "NN" ], "hand": [ "NN", "RB", "VB", "VBP", "JJ" ], "AFP": [ "NNP" ], "glisten": [ "NN", "VB", "VBP" ], "mailgram": [ "NN" ], "laborer": [ "NN" ], "periodontal": [ "JJ" ], "inexpensive": [ "JJ" ], "Mountain": [ "NNP", "NN" ], "priorities": [ "NNS" ], "labored": [ "VBD", "VBN", "JJ" ], "Embassy": [ "NNP", "NN" ], "Sisulu": [ "NNP" ], "cooperating": [ "VBG" ], "Pharmics": [ "NNP" ], "Nicolas": [ "NNP" ], "Impetus": [ "NN" ], "already": [ "RB" ], "Working": [ "NNP", "JJ", "NN", "VBG" ], "Leverett": [ "NNP" ], "Incredulous": [ "JJ" ], "selfless": [ "JJ" ], "sober": [ "JJ" ], "categorize": [ "VB" ], "Overlords": [ "NNPS" ], "Flaherty": [ "NNP" ], "solicitations": [ "NNS" ], "Cocktail": [ "NN" ], "shareholder-owned": [ "JJ" ], "physician-reimbursement": [ "JJ" ], "euphoric": [ "JJ" ], "euphoria": [ "NN" ], "six-time": [ "JJ" ], "ballistic": [ "JJ" ], "Wolstenholme": [ "NNP" ], "analgesic": [ "JJ", "NN" ], "ASSOCIATION": [ "NNP", "NN" ], "Fur": [ "NNP", "NN" ], "servo": [ "NN", "JJ" ], "Seldom": [ "RB" ], "tool": [ "NN" ], "abates": [ "VBZ" ], "took": [ "VBD" ], "Londontowne": [ "NNP" ], "Patterns": [ "NNS" ], "Sunset": [ "NNP" ], "dBASE": [ "NNP" ], "Fun": [ "NNP" ], "abated": [ "VBN", "VBD" ], "nonpartisan": [ "JJ" ], "whereby": [ "WRB" ], "Features": [ "NNPS" ], "near-Communists": [ "NNS" ], "foul-smelling": [ "JJ" ], "unsentimental": [ "JJ" ], "more-attractive": [ "JJ" ], "cowhands": [ "NNS" ], "steady-Eddies": [ "NNS" ], "Pocasset": [ "NNP" ], "Adele": [ "NNP" ], "lifesize": [ "JJ" ], "Dimly": [ "RB" ], "fashion": [ "NN", "VB" ], "unrest": [ "NN" ], "Dying": [ "NNP", "VBG" ], "overleveraging": [ "VBG" ], "Hanover-Lucy": [ "NNP" ], "talking": [ "VBG", "NN", "NN|VBG" ], "oil-tanker": [ "NN" ], "staggeringly": [ "RB" ], "conditioning...": [ ":" ], "Etsuro": [ "NNP" ], "paid-in": [ "JJ" ], "doughty": [ "JJ" ], "Jasmine": [ "NNP" ], "balling": [ "VBG" ], "R.V.": [ "NNP" ], "localities": [ "NNS" ], "shelf": [ "NN" ], "effectiveness": [ "NN" ], "mid-twentieth": [ "JJ" ], "hot-dog": [ "JJ" ], "Absent": [ "VB", "IN", "JJ", "JJ|IN" ], "evangelist": [ "NN" ], "grape-arbor": [ "NN" ], "near-identical": [ "JJ" ], "CWP": [ "NNP" ], "Collective": [ "NNP" ], "humbly": [ "RB" ], "Priestess": [ "NNP" ], "rumble": [ "NN", "VBP" ], "Communistic": [ "JJ" ], "centering": [ "VBG", "NN" ], "evangelism": [ "NN" ], "tabling": [ "VBG", "JJ", "NN" ], "prostitute": [ "NN", "VB" ], "peers": [ "NNS", "VBZ" ], "romantick": [ "JJ" ], "tallyho": [ "NN" ], "epistolatory": [ "JJ" ], "anti-leak": [ "JJ" ], "Anaconda": [ "NN", "NNP" ], "crankshaft": [ "NN" ], "Loathing": [ "NN" ], "silencing": [ "VBG" ], "Go-Go": [ "NN" ], "Collateralized": [ "NNP" ], "Populace": [ "NN" ], "special-purpose": [ "JJ" ], "reorganize": [ "VB" ], "arrayed": [ "VBN" ], "McDonough": [ "NNP" ], "EDISON": [ "NNP" ], "all-lesbian": [ "JJ" ], "studiously": [ "RB" ], "snickers": [ "NNS" ], "satiric": [ "JJ" ], "Furniture": [ "NNP", "NN" ], "rinsing": [ "NN", "VBG" ], "mixture": [ "NN" ], "Soifer": [ "NNP" ], "Manute": [ "NNP" ], "novelists": [ "NNS" ], "blinking": [ "JJ", "VBG", "RB" ], "baffle": [ "VB" ], "Gingl": [ "NNP" ], "Weymouth": [ "NNP" ], "demagogues": [ "NNS" ], "Armco": [ "NNP" ], "intersperses": [ "VBZ" ], "Watson-Watt": [ "NNP" ], "spice-laden": [ "JJ" ], "Raimer": [ "NNP" ], "Disabled": [ "JJ", "NN", "NNP", "VBN" ], "interspersed": [ "VBN" ], "Rodrigo": [ "NNP" ], "Guterman": [ "NNP" ], "Burritt": [ "NNP" ], "rail-car": [ "NN" ], "thwarting": [ "VBG" ], "strainers": [ "NNS" ], "lay-sisters": [ "NNS" ], "demented": [ "JJ", "VBN" ], "Galax": [ "NNP" ], "taxied": [ "VBD" ], "Braitman": [ "NNP" ], "discriminating": [ "VBG", "JJ" ], "gladiator": [ "NN" ], "Herron": [ "NNP" ], "amalgamated": [ "VBN" ], "capacity": [ "NN" ], "postride": [ "JJ" ], "interviewing": [ "VBG", "NN" ], "luminescent": [ "JJ" ], "loopaholics": [ "NNS" ], "Clarke": [ "NNP" ], "Statistique": [ "NNP" ], "Shuxian": [ "NNP" ], "Roderick": [ "NNP" ], "Small-business": [ "NN" ], "volumetric": [ "JJ" ], "Unificationism": [ "NNP" ], "G.B.S.": [ "NN" ], "adage": [ "NN" ], "Impco": [ "NNP" ], "Unificationist": [ "JJ" ], "byways": [ "NNS" ], "flowering": [ "NN", "VBG" ], "improve": [ "VB", "VBP" ], "Danco": [ "NNP" ], "slow-spending": [ "JJ" ], "Dance": [ "NNP", "NN" ], "make...": [ ":" ], "Famine": [ "NN" ], "layered": [ "VBN" ], "conceits": [ "NN" ], "snooker": [ "NN" ], "imported-food": [ "NN" ], "monograph": [ "NN" ], "self-respect": [ "NN" ], "Kaye": [ "NNP" ], "direct-steelmaking": [ "NN" ], "Supra-Expressionism": [ "NNP" ], "towels": [ "NNS" ], "BSPP": [ "NNP" ], "double-breasted": [ "JJ" ], "Destler": [ "NNP" ], "unfurled": [ "VBN" ], "Malacca": [ "NNP" ], "stirringly": [ "RB" ], "foully": [ "RB" ], "Chance": [ "NN", "NNP" ], "trampled": [ "VBN", "VBD", "JJ" ], "diskettes": [ "NNS" ], "fantasies": [ "NNS" ], "Hucksters": [ "NNP" ], "metal-coil": [ "JJ" ], "snips": [ "NNS" ], "automotive-lighting": [ "JJ", "NN" ], "bladder": [ "NN" ], "usurped": [ "VBN" ], "oil-spill": [ "NN", "JJ" ], "Budlong": [ "NNP" ], "auto-industry": [ "NN", "JJ" ], "dissatisfactions": [ "NNS" ], "Mahone": [ "NNP" ], "lessen": [ "VB" ], "Medibank": [ "NNP" ], "lesser": [ "JJR", "RBR" ], "Domingos": [ "NNP" ], "teachers": [ "NNS" ], "office-furniture": [ "JJ" ], "inexplicit": [ "JJ" ], "Gross": [ "NNP", "JJ" ], "zip-code": [ "NN" ], "Eurodebentures": [ "NNS" ], "nightgowns": [ "NNS" ], "usable": [ "JJ" ], "Simms": [ "NNP" ], "Attridge": [ "NNP" ], "operator-services": [ "NNS" ], "surcharge": [ "NN" ], "Cramer": [ "NNP" ], "snobbery": [ "NN" ], "four-page-a-minute": [ "JJ" ], "Stahl": [ "NNP" ], "wound": [ "NN", "VBD", "VBN", "VB" ], "yahoos": [ "NNS" ], "BOGGS": [ "NNP" ], "RECORD": [ "NNP" ], "complex": [ "JJ", "NN" ], "Vieux": [ "NNP" ], "CBS-owned": [ "JJ" ], "interparty": [ "NN" ], "Fla.-based": [ "JJ" ], "Investors": [ "NNS", "NNPS", "NNP" ], "Minkow": [ "NNP" ], "pampering": [ "VBG" ], "twiddling": [ "VBG" ], "Spectra": [ "NNS", "NNP" ], "constricting": [ "VBG" ], "amortization": [ "NN" ], "co-optation": [ "NN" ], "laissez-faire": [ "FW", "JJ", "NN" ], "monumentalism": [ "NN" ], "Pedestrian": [ "NNP" ], "Hilton": [ "NNP" ], "vilifies": [ "VBZ" ], "Ethyl": [ "NNP" ], "highway-construction": [ "JJ" ], "feuded": [ "VBD" ], "Williamsburg": [ "NNP" ], "councilman": [ "NN" ], "APPLIANCES": [ "NNPS" ], "uncooperative": [ "JJ" ], "Herder": [ "NNP" ], "Intercepting": [ "VBG" ], "forfeiture": [ "NN" ], "flutist": [ "NN" ], "Raghib": [ "NNP" ], "Wing": [ "NNP" ], "Wind": [ "NNP", "NN" ], "hairless": [ "JJ" ], "interprets": [ "VBZ" ], "humanity": [ "NN" ], "Guttman-type": [ "JJ" ], "actresses": [ "NNS" ], "quake-hit": [ "JJ" ], "D": [ "NN", "LS", "NNP" ], "Fluorescence": [ "NN" ], "Tichy": [ "NNP" ], "Gabriel": [ "NNP" ], "timber-dependent": [ "JJ" ], "Content": [ "JJ" ], "reapportion": [ "VBP" ], "valewe": [ "NN" ], "Rudolf": [ "NNP" ], "apart": [ "RB", "RP", "JJ" ], "anti-Newtonian": [ "JJ" ], "intertwined": [ "VBN", "JJ" ], "clearheaded": [ "JJ" ], "gift": [ "NN" ], "remanding": [ "VBG" ], "Lichtenstein": [ "NNP" ], "M.I.M.": [ "NNP" ], "anciently": [ "RB" ], "ditty": [ "NN" ], "splendor": [ "NN" ], "all-Negro": [ "JJ" ], "Educate": [ "VB" ], "overnighters": [ "NNS" ], "weight-height": [ "NN" ], "reunifed": [ "VBN" ], "sanction": [ "NN", "VBP", "VB" ], "enrolling": [ "NN" ], "gangbusters": [ "NNS" ], "Hillsborough": [ "NNP" ], "Nippon": [ "NNP" ], "untried": [ "JJ" ], "meters": [ "NNS", "NN" ], "precautions": [ "NNS" ], "Harrigan": [ "NNP" ], "embodied": [ "VBN", "VBD" ], "non-commissioned": [ "JJ" ], "Xanax": [ "NNP" ], "RATTLED": [ "VBD" ], "reinvest": [ "VB", "VBP" ], "Looming": [ "VBG" ], "aid-to-education": [ "NN" ], "prejudicial": [ "JJ" ], "cooped": [ "JJ", "NN", "VBN" ], "Repeatedly": [ "RB" ], "Brezhnev": [ "NNP" ], "Implores": [ "VBZ" ], "cash-laden": [ "JJ" ], "espionage": [ "NN" ], "ironclad": [ "JJ" ], "erodes": [ "VBZ" ], "Tegal": [ "NNP" ], "multi-agency": [ "JJ", "NN" ], "libertine": [ "NN" ], "Oakland-Alameda": [ "NNP" ], "phthalate": [ "NN" ], "CJS": [ "NNP" ], "lookee-loos": [ "NNS" ], "landowners": [ "NNS" ], "nontransferable": [ "JJ" ], "limitation": [ "NN" ], "census": [ "NN" ], "agriculture-chemicals": [ "NNS" ], "Leobardo": [ "NNP" ], "shards": [ "NNS" ], "Kafka": [ "NNP" ], "catkins": [ "NNS" ], "Lucretia": [ "NNP" ], "cooled": [ "VBN", "JJ", "VBD" ], "self-splicing": [ "JJ" ], "Foss": [ "NNP" ], "Novacor": [ "NNP" ], "scandal-plagued": [ "JJ" ], "paddies": [ "NNS" ], "primitive": [ "JJ" ], "Guthrie": [ "NNP" ], "froze": [ "VBD", "VBN" ], "preambles": [ "NNS" ], "Lebans": [ "NNP" ], "tapings": [ "NNS" ], "taffy": [ "JJ" ], "electorate": [ "NN" ], "Survive": [ "VB" ], "cafeteria": [ "NN" ], "jeunes": [ "FW" ], "Dodger": [ "NNP", "NN" ], "disinterest": [ "NN" ], "interlopers": [ "NNS" ], "lags": [ "VBZ", "NNS" ], "Baldy": [ "NNP" ], "unpretentious": [ "JJ" ], "grain-trading": [ "JJ" ], "oil-well": [ "NN" ], "anti-racketeering": [ "JJ" ], "full-clad": [ "JJ" ], "head": [ "NN", "JJ", "RB", "VB", "VBP" ], "medium": [ "NN", "JJ" ], "Sundays": [ "NNPS", "NNP", "NNS" ], "preschoolers": [ "NNS" ], "heal": [ "VB" ], "world-leading": [ "JJ" ], "Suckow": [ "NNP" ], "Liffe": [ "NNP" ], "boarding-home": [ "NN" ], "heat": [ "NN", "VB", "VBP" ], "hear": [ "VB", "VBP" ], "Ewe": [ "NNP" ], "heap": [ "NN" ], "free-spirited": [ "JJ" ], "nodded": [ "VBD", "VBN" ], "counsel": [ "NN", "VB", "VBP" ], "Uruguay": [ "NNP" ], "compositional": [ "JJ" ], "lopping": [ "NN" ], "high-powered": [ "JJ" ], "bargain": [ "NN", "VB" ], "danseur": [ "FW" ], "adore": [ "VBP", "VB" ], "advertising-conscious": [ "JJ" ], "co-opted": [ "VBN" ], "mustering": [ "VBG" ], "Electronic": [ "NNP", "JJ" ], "southernmost": [ "JJ" ], "adorn": [ "VB", "VBP" ], "obfuscation": [ "NN" ], "sinful": [ "JJ" ], "one-thousand-zloty": [ "JJ" ], "non-diva-like": [ "JJ" ], "simulations": [ "NNS" ], "pigpens": [ "NNS" ], "M8.7sp": [ "NNP" ], "Nauman": [ "NNP" ], "Chiefs": [ "NNPS", "NNP" ], "willingly": [ "RB" ], "Poo": [ "NNP" ], "Monteath": [ "NNP" ], "isomers": [ "NNS" ], "futures-related": [ "JJ" ], "incestuous": [ "JJ" ], "EST": [ "NNP", "NN", "RB" ], "new-loan": [ "JJ" ], "self-congratulation": [ "NN" ], "ESP": [ "NNP" ], "Heebner": [ "NNP" ], "CyCare": [ "NNP" ], "Tooth": [ "NN" ], "ESB": [ "NNP" ], "ESN": [ "NN" ], "QUARTER": [ "NN" ], "reassuringly": [ "RB" ], "Unconscious": [ "NNP" ], "bullet": [ "NN" ], "uranyl": [ "NN" ], "withhold": [ "VB", "VBP" ], "urethane": [ "NN" ], "Denlea": [ "NNP" ], "oeufs": [ "FW" ], "backward": [ "RB", "JJ" ], "Contributions": [ "NNS" ], "Suvorov": [ "NNP" ], "forgeries": [ "NNS" ], "counseling": [ "NN", "VBG" ], "Choral": [ "NNP" ], "brokerages": [ "NNS" ], "MasterCards": [ "NNS" ], "Iacocca": [ "NNP" ], "fusing": [ "VBG", "NN" ], "Buddy": [ "NNP" ], "brandin": [ "NN" ], "Cilluffo": [ "NNP" ], "S.D.": [ "NNP" ], "contemplating": [ "VBG" ], "flowered": [ "JJ", "VBD", "VBN" ], "trustees": [ "NNS" ], "Waverly": [ "NNP" ], "sceptical": [ "JJ" ], "Rosoff": [ "NNP" ], "Kafaroff": [ "NNP" ], "Haole": [ "FW" ], "formed-tooth": [ "JJ" ], "broadly": [ "RB" ], "Countries": [ "NNPS", "NNP", "NNS" ], "thawed": [ "VBN" ], "hattes": [ "NNS" ], "Hargrave": [ "NNP" ], "rockstrewn": [ "NN" ], "drug-abuse": [ "JJ", "NN" ], "roving": [ "VBG" ], "eighteen-year-old": [ "JJ" ], "Indebted": [ "JJ" ], "denounced": [ "VBD", "VBN" ], "Muratore": [ "NNP" ], "Wollman": [ "NNP" ], "denounces": [ "VBZ" ], "money-market": [ "JJ", "NN" ], "Hsieh": [ "NNP" ], "Rederi": [ "NNP" ], "peek": [ "NN" ], "inland": [ "RB", "JJ" ], "off-off-Broadway": [ "NNP", "JJ" ], "nonresidential-contracting": [ "JJ" ], "Diebold": [ "NNP" ], "takeoff": [ "NN" ], "price-consciousness": [ "NN" ], "Durakon": [ "NNP" ], "bake": [ "JJ", "VB" ], "Jana": [ "NNP" ], "allout": [ "JJ" ], "constitution": [ "NN" ], "Theatre": [ "NNP" ], "spire": [ "NN" ], "El-Abed": [ "NNP" ], "manikins": [ "NNS" ], "up-market": [ "JJ" ], "humorist": [ "NN" ], "Reeves": [ "NNP", "NNS" ], "Mirek": [ "NNP" ], "retroviral": [ "JJ" ], "Maneret": [ "NNP" ], "eliminations": [ "NNS" ], "Trackdown": [ "NNP" ], "Annuity": [ "NNP" ], "plant-location": [ "JJ" ], "Khomeini": [ "NNP" ], "dissipates": [ "VBZ" ], "meteorites": [ "NNS" ], "Liechtenstein": [ "NNP" ], "Jan.": [ "NNP", "NN", "VB" ], "groups": [ "NNS" ], "dea": [ "NN" ], "dissipated": [ "VBN", "VBD" ], "lonely-hearts": [ "NNS" ], "Rocket-powered": [ "JJ" ], "unidentified": [ "JJ" ], "pearly": [ "JJ" ], "PEOPLE": [ "NNS" ], "pearls": [ "NNS" ], "culpa": [ "FW" ], "ratable": [ "JJ" ], "marble": [ "NN" ], "aircraft-engine-maintenance": [ "JJ" ], "kerygma": [ "FW" ], "child-rearing": [ "NN" ], "abounded": [ "VBD" ], "crime\\/comedy": [ "NN" ], "Talmud": [ "NNP" ], "Raikin": [ "NNP" ], "patronage-free": [ "JJ" ], "morals": [ "NNS" ], "Catholicism": [ "NNP" ], "Interlake": [ "NNP" ], "AuCoin": [ "NNP" ], "Trend-following": [ "JJ" ], "Brissette": [ "NNP" ], "Vasso": [ "NNP" ], "Hungarian": [ "JJ", "NNP" ], "Radzymin": [ "NNP" ], "criteria": [ "NNS" ], "Gillett": [ "NNP" ], "Affidavits": [ "NNS" ], "blacked-out": [ "JJ" ], "Gintel": [ "NNP" ], "Vivacious": [ "JJ" ], "chocolate": [ "NN", "JJ" ], "Gesualdo": [ "NNP" ], "Groundwater": [ "NNP" ], "Push": [ "NN", "VB", "VBP" ], "misreading": [ "NN" ], "goofiness": [ "NN" ], "Carsten": [ "NNP" ], "Crystallographic": [ "JJ", "NNP" ], "trick...": [ ":" ], "zinc-sulphide": [ "NN" ], "districts": [ "NNS" ], "hymselfe": [ "NN" ], "predominating": [ "VBG" ], "slightest": [ "JJS" ], "dropper": [ "NN" ], "Gerolamo": [ "NNP" ], "corrupted": [ "VBN" ], "parings": [ "NNS" ], "amazons": [ "NNS" ], "newsletters": [ "NNS" ], "sky-tapping": [ "JJ" ], "stroke": [ "NN", "VB" ], "corrupter": [ "NN" ], "Lenwood": [ "NNP" ], "Manderbach": [ "NNP" ], "hydrogen": [ "NN" ], "foreign-ownership": [ "NN" ], "requirements": [ "NNS" ], "Marketing": [ "NNP", "NN", "VBG", "VBG|NN" ], "Cartoonists": [ "NNP" ], "minivans": [ "NNS" ], "innumerable": [ "JJ" ], "Considered": [ "VBN" ], "bankruptcylaw": [ "NN" ], "Flyer": [ "NNP" ], "Gallagher": [ "NNP" ], "Wage-price": [ "JJ" ], "speaks": [ "VBZ" ], "Elkhorn": [ "NNP" ], "tipper": [ "NN" ], "irrational": [ "JJ" ], "ballroom": [ "NN" ], "rites": [ "NNS" ], "motorists": [ "NNS" ], "Dinosaur": [ "NNP" ], "outlandish": [ "JJ" ], "tipped": [ "VBD", "VBN" ], "tippee": [ "NN" ], "evoke": [ "VB", "VBP" ], "nannies": [ "NNS" ], "Powers": [ "NNP" ], "Hashimoto": [ "NNP" ], "reposition": [ "VB" ], "flat-bottomed": [ "JJ" ], "misbegotten": [ "JJ" ], "compressing": [ "VBG" ], "fire-control": [ "JJ" ], "persons": [ "NNS" ], "Asleep": [ "RB" ], "glancing": [ "VBG", "JJ" ], "refund": [ "NN", "VB" ], "sonnet": [ "NN" ], "Feiner": [ "NNP" ], "undervalued": [ "VBN", "VBD", "JJ" ], "blocker": [ "NN" ], "fangs": [ "NNS" ], "canard": [ "NN" ], "accolades": [ "NNS" ], "in-store": [ "JJ" ], "academeh": [ "NN" ], "Gorbachev-era": [ "NN" ], "worship": [ "NN", "VB", "VBP" ], "blocked": [ "VBN", "JJ", "VBD" ], "segregationists": [ "NNS" ], "rebalancing": [ "VBG" ], "Qualls": [ "NNP" ], "Sierras": [ "NNPS" ], "bead-like": [ "JJ" ], "Falco": [ "NNP" ], "coordinated": [ "VBN", "VBD", "JJ" ], "Factories": [ "NNS", "NNPS" ], "LD056": [ "NN" ], "meridian": [ "NN" ], "cutter": [ "NN" ], "quick-tempered": [ "JJ" ], "sparing": [ "VBG", "JJ" ], "Highness": [ "NNP" ], "Turtles": [ "NNPS" ], "M.T.": [ "NNP" ], "appraised": [ "VBN" ], "HRT": [ "NNP" ], "radicals": [ "NNS" ], "gourmet": [ "NN", "JJ" ], "warranted": [ "VBN", "JJ", "VBD" ], "asset-growth": [ "NN" ], "HRH": [ "NNP" ], "HRE": [ "NNP" ], "feathered": [ "JJ", "VBN" ], "appraiser": [ "NN" ], "HRB": [ "NNP" ], "Clams": [ "NNS" ], "Josephus": [ "NNP" ], "Bolduc": [ "NNP" ], "opera": [ "NN" ], "Mentum": [ "NNP" ], "belts": [ "NNS", "VBZ" ], "slumps": [ "VBZ", "NNS" ], "Gotterdammerung": [ "NNP" ], "fourth-level": [ "JJ" ], "fair-trade-related": [ "JJ" ], "lower-paid": [ "JJ" ], "Campaigning": [ "VBG" ], "Gilroy": [ "NNP" ], "Heathrow": [ "NNP" ], "Airbus": [ "NNP" ], "weighted": [ "JJ", "VBD", "VBN" ], "nettlesome": [ "JJ" ], "weight-control": [ "JJ" ], "pillaged": [ "VBD" ], "blacked": [ "VBN" ], "Britain-U.S.": [ "JJ" ], "zebra": [ "NN" ], "Forks": [ "NNS" ], "myrtle": [ "NN" ], "reckons": [ "VBZ" ], "quake-torn": [ "JJ" ], "sustains": [ "VBZ" ], "obfuscations": [ "NNS" ], "Shakespearian": [ "JJ" ], "Grabbing": [ "VBG" ], "disposables": [ "NNS" ], "someplace": [ "RB", "NN" ], "Ciporkin": [ "NNP" ], "Bodner": [ "NNP" ], "clover": [ "NN" ], "more-natural": [ "JJ" ], "reformulation": [ "NN" ], "Coudersport": [ "NNP" ], "ENG": [ "NNP" ], "Keilin": [ "NNP" ], "ENI": [ "NNP" ], "Deppy": [ "NNP" ], "key-someone": [ "NN" ], "obituaries": [ "NNS" ], "light-headed": [ "JJ" ], "half-moons": [ "NNS" ], "explorers": [ "NNS" ], "Parity": [ "NN" ], "Leuffer": [ "NNP" ], "Julian": [ "NNP" ], "schnapps": [ "NN" ], "Delray": [ "NNP" ], "Glass-Steagall": [ "NNP" ], "teammates": [ "NNS" ], "deprogrammings": [ "NNS" ], "Industrialistes": [ "NNP" ], "FDA": [ "NNP" ], "Expenditures": [ "NNS", "NNPS" ], "mind-altering": [ "JJ" ], "Slobodin": [ "NNP" ], "faculty": [ "NN" ], "Nairne": [ "NNP" ], "sovereign": [ "JJ", "NN", "NN|JJ" ], "soaring": [ "VBG", "JJ" ], "Scripp": [ "NNP" ], "Forrestal": [ "NNP" ], "Geographical": [ "JJ" ], "disinterested": [ "JJ" ], "surveys": [ "NNS", "VBZ" ], "Johan": [ "NNP" ], "R-Bergen": [ "NNP" ], "Espagnol": [ "NNP" ], "Parkways": [ "NNP", "NNPS" ], "convention": [ "NN" ], "circa": [ "RB" ], "Dove": [ "NN", "NNP" ], "assigned-risk": [ "NN" ], "Biosite": [ "NNP" ], "interest-rate-sensitive": [ "JJ" ], "hug": [ "NN", "VB", "VBP" ], "Whitten": [ "NNP" ], "tempers": [ "NNS" ], "hub": [ "NN" ], "Deregulation": [ "NN" ], "greatcoated": [ "JJ" ], "huh": [ "UH" ], "inexpressible": [ "JJ" ], "hut": [ "NN" ], "inexpressibly": [ "RB" ], "Cortex": [ "NNP" ], "tempera": [ "NN" ], "ill-advised": [ "JJ" ], "circulates": [ "VBZ" ], "holder": [ "NN" ], "Cortes": [ "NNP" ], "petrified": [ "JJ", "VBN" ], "DeLay": [ "NNP" ], "demythologizing": [ "VBG" ], "tawdry": [ "JJ" ], "vapor-pressure": [ "NN" ], "Tryon": [ "NNP" ], "diplomatic": [ "JJ" ], "r": [ "NN" ], "DOWNEY": [ "NNP" ], "Lawful": [ "JJ" ], "change-ringing": [ "NN" ], "Gagne": [ "NNP" ], "EX-OFFICIALS": [ "NNS" ], "broken-nosed": [ "JJ" ], "armored": [ "JJ", "VBN" ], "Hirsch": [ "NNP" ], "underprepared": [ "JJ" ], "right-to-work": [ "JJ" ], "PolyGram": [ "NNP" ], "stolid": [ "JJ" ], "Vollard": [ "NNP" ], "overjoyed": [ "JJ" ], "exploratory": [ "JJ" ], "Sadie": [ "NNP" ], "transcription": [ "NN" ], "Schuller": [ "NNP" ], "Capitalizing": [ "VBG" ], "Watercolor": [ "NNP" ], "dining": [ "NN", "JJ", "VBG" ], "emphasis": [ "NN" ], "Strouds": [ "NNP" ], "thermometer": [ "NN" ], "Maltese": [ "NNP", "JJ" ], "hyperemic": [ "JJ" ], "Selve": [ "NNP" ], "hyperemia": [ "NN" ], "Exch": [ "NN" ], "sect": [ "NN" ], "stock-basket": [ "NN", "JJ" ], "sterns": [ "NNS" ], "Munro": [ "NNP" ], "botulinum": [ "NN" ], "Mickie": [ "NNP" ], "precluded": [ "VBD", "VBN", "JJ" ], "Sheiner": [ "NNP" ], "visitors": [ "NNS" ], "Gandhi": [ "NNP" ], "brashness": [ "NN" ], "librarian": [ "NN" ], "headcount-control": [ "NN" ], "bioengineers": [ "NNS" ], "littering": [ "NN" ], "encasing": [ "VBG" ], "depreciation": [ "NN" ], "Carpentier": [ "NNP" ], "tax-cut": [ "JJ", "NN" ], "considered": [ "VBN", "VBD", "JJ" ], "Morin": [ "NNP" ], "Tensile": [ "JJ" ], "Protectionism": [ "NNP", "NN" ], "Post-Serialism": [ "NNP" ], "Habla": [ "NNP" ], "vetted": [ "VBN" ], "Comecon": [ "NNP" ], "infielder": [ "NN" ], "revamping": [ "VBG", "NN" ], "once-proud": [ "JJ" ], "yen-bond": [ "JJ" ], "southwestern": [ "JJ" ], "Triland": [ "NNP" ], "Syrdarya": [ "NNP" ], "SOUTH": [ "NNP" ], "woolen": [ "JJ" ], "interessant": [ "FW" ], "Veraldi": [ "NNP" ], "half-full": [ "JJ" ], "Rauch": [ "NNP" ], "crimp": [ "VB", "NN" ], "low-lying": [ "JJ" ], "hooting": [ "JJ" ], "Pune": [ "NNP" ], "narrows": [ "VBZ" ], "Piazza": [ "NNP", "FW" ], "Puna": [ "NNP" ], "Piazzo": [ "NNP" ], "boilers": [ "NNS" ], "seventeen-inch": [ "JJ" ], "art-dealing": [ "JJ" ], "substitutionary": [ "JJ" ], "indulgences": [ "NNS" ], "tailor": [ "VB", "NN" ], "food-shop": [ "JJ" ], "primates": [ "NNS" ], "treachery": [ "NN" ], "LXi": [ "NNP" ], "a-Discounted": [ "JJ", "VBN", "LS|JJ" ], "Laurentiis": [ "NNP" ], "mewed": [ "VBD" ], "pinnacle": [ "NN" ], "surrealism": [ "NN" ], "Shantung": [ "NNP" ], "Officielle": [ "NNP" ], "Mirage": [ "NNP" ], "Foulds": [ "NNP" ], "non-writers": [ "NNS" ], "printing-equipment": [ "NN" ], "Loggia": [ "NNP" ], "BELL": [ "NNP" ], "Fontana": [ "NNP" ], "ancestral": [ "JJ" ], "violated": [ "VBD", "VBN" ], "sleepily": [ "RB" ], "simmering": [ "VBG" ], "violates": [ "VBZ" ], "Voyager": [ "NNP" ], "fails": [ "VBZ", "NNS" ], "Frayne": [ "NNP" ], "bicyclist": [ "NN" ], "charters": [ "NNS", "VBZ" ], "seers": [ "NNS" ], "Trunk": [ "NN", "NNP" ], "Bangalore": [ "NNP" ], "sackes": [ "NNS" ], "sacker": [ "NN" ], "Loopholes": [ "NNS" ], "receivers": [ "NNS" ], "best-run": [ "JJS" ], "Northumberland": [ "NN" ], "self-serving": [ "JJ" ], "disdainful": [ "JJ" ], "floundering": [ "VBG", "JJ" ], "bang-sashes": [ "NNS" ], "package-sort": [ "JJ" ], "dutiful": [ "JJ" ], "Ga": [ "NNP" ], "STOCK-INDEX": [ "NN" ], "Songs": [ "NNPS", "NNS" ], "bunko": [ "NN" ], "Falegnami": [ "NNP" ], "discussions..": [ "NNS" ], "poivre": [ "FW", "NN" ], "successes": [ "NNS" ], "darin": [ "JJ" ], "shortstop": [ "NN" ], "Phamaceuticals": [ "NNPS" ], "energies": [ "NNS" ], "Imbrium": [ "NNP" ], "Replies": [ "NNS" ], "Smiling": [ "VBG" ], "bunks": [ "NNS" ], "authoring": [ "VBG" ], "Ransom": [ "NNP", "NN", "NNPS" ], "Flaws": [ "NNS" ], "air-separation": [ "NN" ], "percussionist": [ "NN" ], "physician-patient": [ "JJ" ], "after-effects": [ "NNS" ], "robotics": [ "NNS" ], "Leatherneck": [ "NNP" ], "sampling": [ "NN", "VBG" ], "Luftfahrt": [ "NNP" ], "Sciences": [ "NNPS", "NNP" ], "pole": [ "NN" ], "colon": [ "NN" ], "initialing": [ "VBG" ], "polo": [ "NN" ], "unleaded": [ "JJ" ], "poll": [ "NN", "JJ", "VB" ], "Events": [ "NNS", "NNP" ], "runaway": [ "JJ", "VBN", "NN" ], "squaring": [ "VBG" ], "lifes": [ "NNS" ], "lifer": [ "NN" ], "Kroczek": [ "NNP" ], "Bacillus": [ "NN", "FW" ], "high-profit": [ "JJ" ], "withstanding": [ "VBG" ], "Downgrades": [ "NNS" ], "filmmakers": [ "NNS" ], "gaited": [ "JJ" ], "X-tend": [ "NN" ], "Fall-in": [ "NNP" ], "Knee": [ "NN" ], "carryforwards": [ "NNS" ], "hardly": [ "RB" ], "Downgraded": [ "VBN" ], "WAO": [ "NNP" ], "Kortunov": [ "NNP" ], "product-line": [ "NN" ], "WAC": [ "NNP" ], "Wedged": [ "VBN" ], "stupendously": [ "RB" ], "Shevack": [ "NNP" ], "virutally": [ "RB" ], "WAZ": [ "NNP" ], "cresting": [ "VBG" ], "WAS": [ "VBD" ], "WAR": [ "NNP", "NN" ], "paying": [ "VBG", "JJ" ], "libelous": [ "JJ" ], "McLeod": [ "NNP" ], "postscript": [ "NN" ], "amend": [ "VB", "VBP" ], "two-income": [ "JJ", "NN" ], "explicitness": [ "NN" ], "Reservists": [ "NNPS" ], "straitjacketed": [ "JJ" ], "Someday": [ "RB", "NN" ], "shrieks": [ "NNS" ], "Preseault": [ "NNP" ], "trackless": [ "JJ" ], "SS-24s": [ "NNPS" ], "heelers": [ "NNS" ], "snaking": [ "VBG" ], "Shingles": [ "NNS" ], "clutter": [ "NN", "VB" ], "buy\\": [ "JJ" ], "ETHICS": [ "NNS" ], "Ozick": [ "NNP" ], "Alyce": [ "NNP" ], "volition": [ "NN" ], "helmet": [ "NN" ], "resentful": [ "JJ" ], "Generic-Drug": [ "JJ" ], "Cen-Tennial": [ "NNP" ], "alphabet": [ "NN" ], "unrolled": [ "JJ" ], "coarsely": [ "RB" ], "shifts": [ "NNS", "VBZ" ], "Brotherhood": [ "NNP" ], "Beaverton": [ "NNP" ], "less-popular": [ "JJ" ], "Silver": [ "NN", "JJ", "NNP" ], "toweling": [ "NN" ], "Konowitch": [ "NNP" ], "Kevlar": [ "NNP" ], "libido": [ "NN" ], "booths": [ "NNS" ], "Pullmans": [ "NNS" ], "ninefold": [ "JJ", "RB" ], "producers": [ "NNS" ], "Idle": [ "JJ" ], "half-staff": [ "JJ" ], "weaknesses": [ "NNS" ], "CANDIDATES": [ "NNS" ], "threaded": [ "VBN" ], "Struthers": [ "NNP" ], "insurgents.": [ "NNS" ], "Asset-management": [ "JJ" ], "Amazonia": [ "NNP" ], "Tigrean": [ "JJ" ], "C.O.G.": [ "NNP" ], "DAWDLING": [ "NN" ], "seventy-two": [ "JJ" ], "Byting": [ "VBG" ], "guided": [ "VBN", "VBD", "JJ" ], "Krapp": [ "NNP" ], "pariah": [ "NN" ], "differentiation": [ "NN" ], "laser-read": [ "JJ" ], "guides": [ "NNS", "VBZ" ], "Cowan": [ "NNP" ], "overlapped": [ "VBN", "VBD" ], "assemblages": [ "NNS" ], "Tropicana": [ "NNP" ], "Dome": [ "NNP" ], "wall": [ "NN", "VBP", "VB" ], "handclasp": [ "NN" ], "Scores": [ "NNS", "NNPS" ], "anti-profiteering": [ "JJ" ], "scheduled": [ "VBN", "VBD", "JJ" ], "POTABLES": [ "NNS" ], "loaned": [ "VBN", "VBD" ], "Tale": [ "NN", "NNP" ], "heterozygous": [ "JJ" ], "headroom": [ "NN" ], "coaxial": [ "JJ" ], "Crafts": [ "NNPS" ], "JVC": [ "NNP" ], "Tall": [ "JJ" ], "left-hand": [ "JJ" ], "sheared": [ "JJ", "VBN" ], "unnerving": [ "VBG", "JJ" ], "Sonatas": [ "NNS", "NNP" ], "Asset-backed": [ "JJ" ], "tape-delay": [ "NN" ], "Revised": [ "NNP", "VBN" ], "Finally": [ "RB" ], "Datatronic": [ "NNP" ], "irreproducibility": [ "NN" ], "arrays": [ "NNS" ], "junk-LBO": [ "JJ" ], "Something": [ "NN", "NNP" ], "surgicenters": [ "NNS" ], "recalls": [ "VBZ", "NNS" ], "Boasts": [ "VBZ" ], "outpaces": [ "VBZ" ], "mileage-based": [ "JJ" ], "Studds": [ "NNP" ], "Army": [ "NNP", "NN" ], "fluttered": [ "VBD" ], "Roslev": [ "NNP" ], "Arms": [ "NNP", "NNPS", "NNS" ], "Brierley-controlled": [ "JJ" ], "Capote": [ "NNP" ], "outpaced": [ "VBD", "NN", "VB", "VBN", "VBP" ], "sociologists": [ "NNS" ], "tonally": [ "RB" ], "informant": [ "NN" ], "top-secret": [ "JJ" ], "adjuncts": [ "NNS" ], "floured": [ "VBN" ], "tintable": [ "JJ" ], "incidentals": [ "NNS" ], "Sacrifice": [ "NN", "NNP" ], "already-tense": [ "JJ" ], "fusty": [ "JJ" ], "Ceil": [ "NNP" ], "colchicum": [ "NN" ], "nutty": [ "JJ" ], "Disc": [ "NNP" ], "compulsion": [ "NN" ], "quitting": [ "VBG" ], "calmed": [ "VBD", "VBN" ], "Orchard": [ "NNP" ], "Wilmington": [ "NNP", "NN" ], "communicate": [ "VB", "VBP" ], "nudist": [ "JJ" ], "outreach": [ "NN" ], "Venetian": [ "NNP", "JJ" ], "anti-Americanism": [ "NN" ], "Roch": [ "NNP" ], "calmer": [ "JJR" ], "Rock": [ "NNP" ], "flattest": [ "JJS" ], "Ramillies": [ "NNP" ], "writer\\/producers": [ "NNS" ], "on": [ "IN", "NNP", "RBR", "JJ", "RB", "RP" ], "tear-filled": [ "JJ" ], "ol": [ "JJ", "NN", "UH" ], "demarcation": [ "NN" ], "oh": [ "UH" ], "of": [ "IN", "RB", "RP", "NNP" ], "indestructibility": [ "NN" ], "reinforcing": [ "VBG" ], "Inverness": [ "NNP" ], "subdues": [ "VBZ" ], "oz": [ "NN" ], "ox": [ "NN" ], "os": [ "NN" ], "Souvanna": [ "NNP" ], "op": [ "NNP", "NN" ], "amber": [ "JJ", "NN" ], "Jordon": [ "NNP" ], "alarmism": [ "NN" ], "garnet": [ "NN" ], "Gebhard": [ "NNP" ], "Backers": [ "NNS" ], "garner": [ "VB", "VBP" ], "bail-jumping": [ "NN" ], "accountants...": [ ":" ], "abrogate": [ "VB" ], "Aronson": [ "NNP" ], "Bowen": [ "NNP" ], "strictly": [ "RB" ], "Tailors": [ "NNP" ], "hazards": [ "NNS" ], "racism": [ "NN" ], "strict": [ "JJ" ], "racist": [ "JJ", "NN" ], "Export-Import": [ "NNP" ], "flaunt-your-wealth": [ "JJ" ], "extolled": [ "VBD" ], "Hospital-Cornell": [ "NNP" ], "condone": [ "VB" ], "equated": [ "VBN", "VBD" ], "Verses": [ "NNS", "NNPS" ], "jua": [ "FW" ], "jug": [ "NN" ], "ABCs": [ "NNS" ], "idea": [ "NN" ], "soprano": [ "NN", "JJ" ], "strenuous": [ "JJ" ], "rosebush": [ "NN" ], "subcontractors": [ "NNS" ], "Media-buying": [ "NN" ], "terminus": [ "NN" ], "applying": [ "VBG" ], "street-corner": [ "JJ" ], "pork-barrel": [ "JJ", "NN" ], "gherkins": [ "NNS" ], "Joanna": [ "NNP" ], "bulb-making": [ "JJ" ], "anti-alcohol": [ "JJ" ], "five-hundred-year-old": [ "JJ" ], "Enemies": [ "NNS" ], "castles": [ "NNS" ], "south-of-the-border": [ "JJ" ], "politico": [ "NN" ], "Imelda": [ "NNP" ], "endearment": [ "NN" ], "Armenians": [ "NNPS" ], "x-There": [ "EX", "LS|EX" ], "revamps": [ "VBZ" ], "lightly": [ "RB" ], "drawin": [ "VBG" ], "politics": [ "NNS", "NN" ], "unteach": [ "VB" ], "beds": [ "NNS" ], "Pentagonese": [ "NNP" ], "bicycling": [ "NN" ], "Doman": [ "NNP" ], "Physicist": [ "NNP" ], "insurance": [ "NN" ], "Slides": [ "NNS" ], "Slider": [ "NNP" ], "hellfire": [ "NN" ], "unneeded": [ "JJ" ], "dismayed": [ "VBN", "JJ" ], "auto-parts": [ "JJ", "NNS" ], "ICI": [ "NNP" ], "Suffers": [ "VBZ" ], "ICN": [ "NNP" ], "ICM": [ "NNP" ], "superconductivity": [ "NN" ], "ICC": [ "NNP" ], "ICA": [ "NNP" ], "gunplay": [ "NN" ], "ICG": [ "NNP" ], "ICE": [ "NNP" ], "fetid": [ "JJ" ], "polyisocyanates": [ "NNS" ], "Franyo": [ "NNP" ], "Cromwellian": [ "JJ" ], "ICS": [ "NNP" ], "Cliffs": [ "NNP", "NNPS" ], "unconstitutionally": [ "RB" ], "illusive": [ "JJ" ], "Caplan": [ "NNP" ], "Azlant": [ "NNP" ], "Surplus": [ "NNP", "JJ" ], "Eminonu": [ "NNP" ], "Nurses": [ "NNS" ], "multimegaton": [ "JJ" ], "odds": [ "NNS" ], "telex": [ "NN" ], "unscathed": [ "JJ" ], "GATT": [ "NNP" ], "Likely": [ "JJ", "RB" ], "rimmed": [ "JJ", "VBD" ], "Primarily": [ "RB" ], "phlegm": [ "NN" ], "Fame": [ "NNP", "NN" ], "Theoretically": [ "RB" ], "underutilized": [ "VBN" ], "migrated": [ "VBN", "VBD" ], "Edison": [ "NNP", "NN" ], "Japan-U.S": [ "NNP" ], "sluggers": [ "NNS" ], "Faint": [ "JJ" ], "Toto": [ "NNP" ], "Tots": [ "NNP", "NNPS" ], "surgical": [ "JJ" ], "migrates": [ "VBZ" ], "unmoved": [ "JJ" ], "long-run": [ "JJ" ], "Hondius": [ "NNP" ], "longstrained": [ "VBN" ], "defaulters": [ "NNS" ], "Neo-Romanticism": [ "NNP" ], "Custodian": [ "NNP" ], "assuage": [ "VB" ], "incisiveness": [ "NN" ], "participants": [ "NNS" ], "diluting": [ "VBG" ], "Mirsky": [ "NNP" ], "program": [ "NN", "VBP", "VB" ], "depending": [ "VBG" ], "viz.": [ "NN" ], "presentation": [ "NN" ], "fill-in": [ "JJ" ], "positivists": [ "NNS" ], "woman": [ "NN", "VB" ], "equivocal": [ "JJ" ], "sparkplugs": [ "NNS" ], "thin-lipped": [ "JJ" ], "induce": [ "VB" ], "Raeder": [ "NNP" ], "Classes": [ "NNS", "NN" ], "Morvillo": [ "NNP" ], "soles": [ "NNS" ], "rebounds": [ "VBZ", "NNS" ], "NPL": [ "NNP" ], "writing-instruments": [ "JJ" ], "wave-travel": [ "JJ" ], "unlike": [ "IN", "JJ", "NN" ], "Penang": [ "NNP" ], "sanctify": [ "VB" ], "grandfather": [ "NN", "VB" ], "Aiding": [ "NNP" ], "Kolsrud": [ "NNP" ], "vibes": [ "NNS" ], "Motorcycle": [ "NNP" ], "Pearlstine": [ "NNP" ], "conflicted": [ "VBD", "VBN" ], "coxcombs": [ "NNS" ], "Digate": [ "NNP" ], "manslaughter": [ "NN" ], "chimera-chasing": [ "JJ" ], "Oce-Van": [ "NNP" ], "rats": [ "NNS" ], "Thieme": [ "NNP" ], "Proudfoot": [ "NNP" ], "rate": [ "NN", "VBP", "VB" ], "anti-contamination": [ "JJ" ], "Initiation": [ "NN" ], "rata": [ "FW", "JJ", "NN" ], "CALLIOPE": [ "NNP" ], "surprise-filled": [ "JJ" ], "new-generation": [ "NN" ], "sutures": [ "NNS" ], "hesitation": [ "NN" ], "Headly": [ "NNP" ], "ophthalmologists": [ "NNS" ], "Betty": [ "NNP" ], "woodworking": [ "NN" ], "Eveready": [ "NNP" ], "barbecue": [ "NN", "VB" ], "interlaced": [ "VBN", "JJ" ], "guns": [ "NNS", "VBZ" ], "prosaic": [ "JJ" ], "KISSINGER": [ "NNP" ], "eligibility": [ "NN" ], "LOAN": [ "NNP", "NN" ], "Walitzee": [ "NNP" ], "overactive": [ "JJ" ], "Redeemer": [ "NNP" ], "retraining": [ "NN", "VBG" ], "bullishly": [ "RB" ], "vice-presidents": [ "NNS" ], "Ogonyok": [ "NNP" ], "misinterpret": [ "VB", "VBP" ], "caravans": [ "NNS" ], "ornithological": [ "JJ" ], "reincorporating": [ "VBG" ], "Accomplishments": [ "NNS" ], "sculptural": [ "JJ" ], "drunkards": [ "NNS" ], "Grayson": [ "NNP" ], "reshufflings": [ "NNS" ], "cookfire": [ "NN" ], "timber-state": [ "JJ" ], "thankfully": [ "RB" ], "Wendel": [ "NNP" ], "still-raging": [ "VBG" ], "should-be": [ "JJ" ], "controversialists": [ "NNS" ], "Wendee": [ "NNP" ], "Acres": [ "NNP" ], "screens": [ "NNS", "VBZ" ], "impolitic": [ "JJ" ], "armoire": [ "NN" ], "major-league": [ "JJ" ], "feedings": [ "NNS" ], "Aspenstrom": [ "NNP" ], "Arctic": [ "NNP", "JJ" ], "viscoelastic": [ "JJ" ], "forisque": [ "FW" ], "tarpaulin": [ "NN" ], "interception": [ "NN" ], "piggyback": [ "NN", "VB" ], "inlay": [ "NN" ], "Pardus": [ "NNP" ], "Katangans": [ "NNPS" ], "converters": [ "NNS" ], "Intek": [ "NNP" ], "seismograph": [ "NN" ], "Intel": [ "NNP" ], "CNCA": [ "NNP" ], "golly": [ "UH" ], "drips": [ "VBZ" ], "Intensification": [ "NN" ], "draughts": [ "NN", "NNS" ], "Inns": [ "NNPS" ], "Aden": [ "NNP" ], "Inter": [ "NNP" ], "draughty": [ "JJ" ], "end-of-school": [ "JJ" ], "eventuality": [ "NN" ], "debates": [ "NNS", "VBZ" ], "bystanders": [ "NNS" ], "Expanding": [ "VBG" ], "equation": [ "NN" ], "policemen": [ "NNS" ], "recast": [ "VB" ], "debated": [ "VBN", "VBD" ], "exposure-time": [ "NN" ], "Wade": [ "NNP" ], "ROUGH": [ "JJ" ], "bugaboos": [ "NNS" ], "Wada": [ "NNP" ], "evangelicals": [ "NNS" ], "matchmaking": [ "NN" ], "dweller": [ "NN" ], "Baa-2": [ "JJ", "NNP" ], "Baa-3": [ "JJ", "NNP", "NN" ], "cosmological": [ "JJ" ], "Baa-1": [ "JJ", "NNP", "NN" ], "Intergraph": [ "NNP" ], "sitcom": [ "NN" ], "Rainey": [ "NNP" ], "arise": [ "VB", "VBP" ], "cultivate": [ "VB" ], "anti-monopoly": [ "JJ" ], "offspring": [ "NN", "NNS" ], "Arps": [ "NNP" ], "packaged-goods": [ "NNS", "JJ" ], "transduction": [ "NN" ], "HomeCare": [ "NNP" ], "chip-making": [ "NN" ], "desperation": [ "NN" ], "Bonus": [ "NNP" ], "highest-rated": [ "JJ" ], "cleansing": [ "NN", "VBG" ], "motels": [ "NNS" ], "nitwits": [ "NNS" ], "Tufts": [ "NNP" ], "cytokine": [ "NN|JJ" ], "draw-down": [ "NN" ], "record-high": [ "JJ" ], "emulate": [ "VB" ], "Pointers": [ "NNS" ], "Atkisson": [ "NNP" ], "Laue": [ "NNP" ], "corkscrew": [ "NN" ], "Laux": [ "NNP" ], "indomitable": [ "JJ" ], "Perluss": [ "NNP" ], "capitalize": [ "VB" ], "rotund": [ "JJ" ], "WTVJ": [ "NNP" ], "Davises": [ "NNPS" ], "Everyone": [ "NN", "NNP" ], "Whittenburg": [ "NNP" ], "automobiles": [ "NNS" ], "export-bound": [ "JJ" ], "strutting": [ "VBG", "JJ" ], "specifying": [ "VBG" ], "agnostics": [ "NNS" ], "State-financed": [ "JJ" ], "rentals": [ "NNS" ], "Linus": [ "NNP" ], "unhip": [ "JJ" ], "Siepi": [ "NNP" ], "schillings": [ "NNS" ], "McN": [ "NNP" ], "sloop": [ "NN" ], "Interesting": [ "JJ" ], "anachronistically": [ "RB" ], "Brazos": [ "NNP" ], "trackage": [ "NN" ], "underwhelmed": [ "VBN" ], "Anglo-Jewish": [ "JJ" ], "paunchy": [ "JJ" ], "concentric": [ "JJ" ], "Arias": [ "NNP" ], "Smithfield": [ "NNP" ], "Zhaoxing": [ "NNP" ], "utilizes": [ "VBZ" ], "Lindner": [ "NNP" ], "sky-reaching": [ "JJ" ], "Ohira": [ "NNP" ], "Fitzhugh": [ "NNP" ], "glide": [ "VB", "VBP" ], "environmentalist": [ "NN", "JJ" ], "Carnegie": [ "NNP" ], "environmentalism": [ "NN" ], "nonproductive": [ "JJ" ], "deficit-ridden": [ "JJ" ], "muddied": [ "VBN", "JJ" ], "khaki-bound": [ "JJ" ], "fully-diluted": [ "JJ" ], "Karol": [ "NN" ], "Bandar": [ "NNP" ], "speechless": [ "JJ" ], "units": [ "NNS" ], "evaded": [ "VBN", "VBD" ], "Tualatin": [ "NNP" ], "playthings": [ "NNS" ], "Karos": [ "NNP" ], "bigger": [ "JJR", "RBR" ], "Amadou-Mahtar": [ "NNP" ], "CORNFELD": [ "NNP" ], "non-automotive": [ "JJ" ], "Masons": [ "NNPS", "NNP", "NNS" ], "utilized": [ "VBN", "VBD" ], "cantonment": [ "NN" ], "Scottish": [ "NNP", "JJ" ], "short-sellers": [ "NNS" ], "nab": [ "VB" ], "aspens": [ "NNS" ], "Display": [ "NN", "VB" ], "Lobar": [ "NNP" ], "Militant": [ "JJ" ], "modernized": [ "VBN", "JJ", "VBD" ], "knock-out": [ "JJ" ], "Rhea": [ "NNP" ], "Donor": [ "NN" ], "seditious": [ "JJ" ], "Chaplin-like": [ "JJ" ], "sexism": [ "NN" ], "waste-energy": [ "NN" ], "marketplaces": [ "NNS" ], "Third": [ "NNP", "JJ", "LS", "RB" ], "disbelieved": [ "VBD" ], "at-market": [ "JJ" ], "insignificances": [ "NNS" ], "Samuel": [ "NNP" ], "pasted-in": [ "JJ" ], "puckering": [ "VBG" ], "Nightly": [ "NNP" ], "PHONE": [ "NNP" ], "Wazir": [ "NNP" ], "paradise": [ "NN" ], "postponements": [ "NNS" ], "base-stealing": [ "JJ" ], "evader": [ "NN" ], "Deane": [ "NNP" ], "hailing": [ "VBG" ], "boldness": [ "NN" ], "Malt": [ "NNP" ], "gut": [ "NN", "VB" ], "experimenting": [ "VBG" ], "Doolittle": [ "NNP" ], "Year-round": [ "RB" ], "Deans": [ "NNP", "NNS" ], "Mali": [ "NNP" ], "attendant": [ "NN", "JJ" ], "Male": [ "JJ", "NN", "NNP" ], "Bloch": [ "NNP" ], "Block": [ "NNP", "NN" ], "uprising": [ "NN" ], "fiat": [ "NN" ], "Addicts": [ "NNS" ], "coaches": [ "NNS" ], "Rachelle": [ "NNP" ], "soil-bearing": [ "JJ" ], "THIEVES": [ "NNS" ], "high-horsepower": [ "JJ" ], "turne": [ "VB" ], "solidly": [ "RB" ], "unhealthy": [ "JJ" ], "four-sided": [ "JJ" ], "Mendoza": [ "NNP" ], "Bethle": [ "NN" ], "rankles": [ "VBZ" ], "SUSPECT": [ "JJ" ], "defects": [ "NNS" ], "Refsum": [ "NNP" ], "pedal": [ "VB", "NN" ], "Drugstore": [ "NNP", "NN" ], "whale": [ "NN" ], "overrode": [ "VBD" ], "moan": [ "VB" ], "utilization": [ "NN" ], "edginess": [ "NN" ], "rails": [ "NNS", "VBZ" ], "collar": [ "NN", "VB" ], "prescient": [ "JJ" ], "Cummings": [ "NNP" ], "Newer": [ "JJR" ], "reverence": [ "NN" ], "moat": [ "NN" ], "unchecked": [ "JJ" ], "frustrated...": [ ":" ], "Viewers": [ "NNS" ], "Cinzano": [ "NNP" ], "Crabs": [ "NNP" ], "pains": [ "NNS" ], "SINCE": [ "IN" ], "public-opinion": [ "JJ", "NN" ], "Ottawa": [ "NNP", "NN" ], "Arcilla": [ "NNP" ], "rustlings": [ "NNS" ], "Crabb": [ "NNP" ], "ferment": [ "NN" ], "Plumbing": [ "NNP" ], "Montedision": [ "NN" ], "punters": [ "NNS" ], "compartment": [ "NN" ], "Nux": [ "NN" ], "Whosoever": [ "NN" ], "vial": [ "NN" ], "Nut": [ "NNP" ], "NOVA": [ "NNP" ], "and\\/or": [ "NN" ], "Delvin": [ "NNP" ], "gangling": [ "JJ" ], "undiplomatic": [ "JJ" ], "populating": [ "VBG" ], "executioner": [ "NN" ], "mismanaged": [ "VBD" ], "Oliver": [ "NNP" ], "asham": [ "JJ" ], "Olivet": [ "NNP" ], "outstanding": [ "JJ" ], "Longhorns": [ "NNP" ], "second-look": [ "JJ" ], "delisted": [ "VBN", "VBD" ], "Beryl": [ "NNP" ], "MURDER": [ "NN" ], "flight-to-quality": [ "JJ", "NN" ], "Quiney": [ "NNP" ], "hexagonal": [ "JJ" ], "semiliterate": [ "JJ" ], "Masillon": [ "NNP" ], "Cayman": [ "NNP" ], "interferes": [ "VBZ" ], "DiIulio": [ "NNP" ], "lackadaisical": [ "JJ" ], "four-person": [ "JJ" ], "empirically": [ "RB" ], "Drexel": [ "NNP", "NN" ], "chairman": [ "NN" ], "Parsifal": [ "NNP", "JJ" ], "Swede": [ "NN" ], "interfered": [ "VBD", "VBN" ], "foreman": [ "NN" ], "Helpline": [ "NNP" ], "Internaional": [ "NNP" ], "rapist": [ "NN" ], "reckon": [ "VBP", "VB" ], "pillage": [ "VB", "NN" ], "measures": [ "NNS", "VBZ" ], "shimming": [ "NN" ], "reunited": [ "VBN" ], "eight-and-a-half-foot": [ "JJ" ], "SOFTWARE": [ "NNP" ], "Paddock": [ "NNP" ], "measured": [ "VBN", "VBD", "JJ" ], "Pieta": [ "NNP" ], "queasily": [ "RB" ], "grams": [ "NNS" ], "time-hotels": [ "NNS" ], "Zen": [ "NNP" ], "Zel": [ "NNP" ], "dissolved": [ "VBN", "VBD" ], "aquifers": [ "NNS" ], "pigeonholing": [ "NN" ], "Gloversville": [ "NNP" ], "Zey": [ "PRP" ], "Perfect": [ "JJ", "NNP" ], "link-ups": [ "NNS" ], "asphalt": [ "NN", "JJ" ], "Knill": [ "NNP" ], "ballplayer": [ "NN" ], "Walters-Donaldson": [ "NNP" ], "Majority": [ "NNP" ], "Genome": [ "NNP" ], "melody": [ "NN" ], "costing": [ "VBG", "NN" ], "oil-leasing": [ "NN" ], "Alexeyeva": [ "NNP" ], "aggravate": [ "VBP", "VB" ], "nevertheless": [ "RB" ], "Instructors": [ "NNS" ], "Troyes": [ "NNP" ], "penalty": [ "NN" ], "Conaway": [ "NNP" ], "Whitby": [ "NNP" ], "Democratization": [ "NN" ], "Kandinsky": [ "NNP" ], "Courcy": [ "NNP" ], "ILA": [ "NNP" ], "counterpoint": [ "NN" ], "aficionado": [ "NN" ], "furnaces": [ "NNS" ], "revered": [ "VBN", "JJ" ], "MiG-23BN": [ "NN" ], "procrastination": [ "NN" ], "Epicurean": [ "JJ" ], "compliments": [ "NNS" ], "Kaddurah-Daouk": [ "NNP" ], "oaks": [ "NNS" ], "non-edible": [ "JJ" ], "crime-busting": [ "JJ" ], "PHH": [ "NNP" ], "keenest": [ "JJS" ], "imponderables": [ "NNS" ], "activity": [ "NN" ], "PHS": [ "NNP" ], "dizziness": [ "NN" ], "paradoxical": [ "JJ" ], "consciously": [ "RB" ], "loveliness": [ "NN" ], "SHORT": [ "JJ", "NNP" ], "martyrdom": [ "NN" ], "Parkersburg": [ "NNP" ], "upsurge": [ "NN" ], "X-rated": [ "JJ" ], "Urielites": [ "NNPS" ], "Homemakers": [ "NNP" ], "Derails": [ "NNS" ], "Boniface": [ "NNP" ], "security-services": [ "NN" ], "efficacious": [ "JJ" ], "move-up": [ "JJ" ], "nailed": [ "VBN", "VBD" ], "Cutrer": [ "NNP" ], "slapped": [ "VBD", "VBN" ], "Codevilla": [ "NNP" ], "Jubal": [ "NNP" ], "incentive-reduced": [ "JJ" ], "Colmer": [ "NNP" ], "Hyannis": [ "NNP" ], "orbiting": [ "VBG" ], "C.D.": [ "NNP" ], "cancelling": [ "VBG" ], "Principal-only": [ "JJ" ], "Outline": [ "NN" ], "Ednie": [ "NNP" ], "days.": [ "NNS", "NN" ], "Janus": [ "NNP" ], "succeed": [ "VB", "VBP" ], "Ignition": [ "NN" ], "venturers": [ "NNS" ], "ciliates": [ "NNS" ], "Willetts": [ "NNP" ], "orchardists": [ "NNS" ], "license": [ "NN", "VBP", "VB" ], "Oxley": [ "NNP" ], "MHz": [ "NNS" ], "Christianson": [ "NNP" ], "Priscilla": [ "NNP" ], "Non-Smokers": [ "NNP" ], "sojourners": [ "NNS" ], "duplicity": [ "NN" ], "breastworks": [ "NNS" ], "vehicle-production": [ "JJ" ], "ARMs": [ "NNS", "NN" ], "off-balance": [ "JJ" ], "whelk": [ "NN" ], "slots": [ "NNS" ], "Mountain-Hi": [ "NNP" ], "Snook": [ "NNP" ], "bolster": [ "VB", "VBP", "NN" ], "Filippo": [ "NNP" ], "Co-op": [ "NN", "NNP" ], "Zomax": [ "NNP" ], "illumined": [ "VBD" ], "apprehensively": [ "RB" ], "pinpoints": [ "NNS" ], "confabulation": [ "NN" ], "Revson": [ "NNP" ], "armory": [ "NN" ], "brick": [ "NN" ], "illumines": [ "VBZ" ], "yielding-Mediterranian-woman": [ "JJ" ], "sending": [ "VBG", "NN" ], "quintet": [ "NN" ], "Blanton": [ "NNP" ], "vaguely": [ "RB" ], "Pioneers": [ "NNPS", "NNS" ], "infuriation": [ "NN" ], "Suitors": [ "NNS" ], "R.L.": [ "NNP" ], "obsessive-compulsive": [ "JJ" ], "corrode": [ "VBP", "VB" ], "employer-provided": [ "JJ" ], "Reily": [ "NNP" ], "parachutes": [ "NNS" ], "tweaking": [ "VBG", "NN" ], "bebop": [ "NN" ], "Kobe": [ "NNP" ], "Shannon": [ "NNP" ], "welding": [ "NN", "VBG" ], "QUOTABLE": [ "JJ" ], "Sumitomo": [ "NNP" ], "Edmonia": [ "NN" ], "Jones-Imboden": [ "NNP" ], "interlacing": [ "VBG" ], "leans": [ "VBZ" ], "vacuumed": [ "VBD" ], "Izaak": [ "NNP" ], "computer-driven": [ "JJ" ], "inspirationally": [ "RB" ], "Jellinek": [ "NNP" ], "OKC": [ "NNP" ], "Idaho-based": [ "JJ" ], "India-born": [ "JJ" ], "sliver": [ "NN" ], "tradedistorting": [ "JJ" ], "arrives": [ "VBZ" ], "Southmark": [ "NNP" ], "wallops": [ "VBZ" ], "Hanford": [ "NNP" ], "Manzoni": [ "NNP" ], "world-commerce": [ "JJ" ], "Prokofieff": [ "NNP" ], "domains": [ "NNS" ], "arrived": [ "VBD", "VBN" ], "Generalissimo": [ "NNP" ], "government-bond": [ "NN", "JJ" ], "Bookies": [ "NNS" ], "undersubscription": [ "NN" ], "robust": [ "JJ" ], "lower": [ "JJR", "RBR", "VBP", "JJ", "RB", "VB" ], "Backe": [ "NNP" ], "equalled": [ "VBN" ], "sumac": [ "NN" ], "persuasive": [ "JJ" ], "bounces": [ "VBZ", "NNS" ], "anybody": [ "NN" ], "Rubeli": [ "NNP" ], "deliverable": [ "JJ" ], "Starkey": [ "NNP" ], "Terrace": [ "NNP" ], "bounced": [ "VBD", "VBN" ], "Broxodent": [ "NNP" ], "data-recording": [ "NN" ], "grievance": [ "NN" ], "precedence": [ "NN" ], "Semmes": [ "NNP" ], "Handmade": [ "NNP" ], "competitive": [ "JJ" ], "mountaineering": [ "NN" ], "inactive": [ "JJ" ], "Suspicion": [ "NN" ], "Poindexter": [ "NNP" ], "margarine": [ "NN" ], "Scripture": [ "NNP", "NN" ], "export-boosting": [ "JJ" ], "pin-curl": [ "JJ" ], "Freida": [ "NNP" ], "advisers": [ "NNS" ], "rowed": [ "VBD" ], "exclusively": [ "RB" ], "exhibition": [ "NN" ], "rocklike": [ "JJ" ], "Filed": [ "VBN" ], "Estancieros": [ "NNS" ], "Visker": [ "NNP" ], "civilizational": [ "JJ" ], "Criminologists": [ "NNS" ], "grapeshot": [ "NN" ], "Baranovichi": [ "NNP" ], "Daihatsu": [ "NNP" ], "Definitely": [ "RB" ], "unwomanly": [ "RB" ], "alkylarysulfonate": [ "NN" ], "Carrie": [ "NNP" ], "jots": [ "VBZ" ], "Kenny": [ "NNP" ], "Salida": [ "NNP" ], "citizen-sparked": [ "JJ" ], "flabbergasted": [ "JJ", "VBN" ], "Stellar": [ "NNP" ], "Bertelsmann": [ "NNP" ], "Aventine": [ "NNP" ], "McMaster": [ "NNP" ], "anti-smokers": [ "NNS" ], "social-issue": [ "JJ" ], "less-than-successful": [ "JJ" ], "folders": [ "NNS" ], "tiefes": [ "FW" ], "ecology": [ "NN" ], "piglet": [ "NN" ], "aciduria": [ "NN" ], "denigration": [ "NN" ], "streaming": [ "VBG" ], "president\\/product": [ "NN" ], "BRNF": [ "NNP" ], "grenades": [ "NNS" ], "newsletter": [ "NN" ], "bellyfull": [ "NN" ], "snake-rail": [ "JJ" ], "bushy-tailed": [ "JJ" ], "capos": [ "NNS" ], "Philippine-studies": [ "NN" ], "tampers": [ "NNS" ], "Raoul-Duval": [ "NNP" ], "Lawsuit": [ "NNP" ], "Tarnopol": [ "NNP" ], "Guar": [ "JJ" ], "jumpy": [ "JJ" ], "beleaguered": [ "JJ", "VBN" ], "graining": [ "NN" ], "jumps": [ "NNS", "VBZ" ], "Harriton": [ "NNP" ], "Arragon": [ "NNP" ], "juju": [ "NN" ], "Altimari": [ "NNP" ], "Payton": [ "NNP" ], "powerplants": [ "NNS" ], "Procedural": [ "JJ" ], "Decries": [ "VBZ" ], "volunteering": [ "VBG", "NN" ], "ordeal": [ "NN" ], "Kimsong": [ "NNP" ], "Bovine": [ "NNP" ], "dune-grass": [ "NN" ], "acquistion": [ "NN" ], "repulsion": [ "NN" ], "Essex": [ "NNP" ], "huffed": [ "VBD" ], "arside": [ "NN" ], "Subsystems": [ "NNS" ], "Skopas": [ "NNP" ], "Bears": [ "NNPS", "NNP", "NNS" ], "deafness": [ "NN" ], "mustached": [ "JJ" ], "holster": [ "NN" ], "mustaches": [ "NNS" ], "centrality": [ "NN" ], "Hillsdown": [ "NNP" ], "Beare": [ "NNP" ], "Beard": [ "NNP" ], "hope...": [ ":" ], "introverted": [ "VBN", "JJ" ], "tumble": [ "NN", "VB" ], "creaked": [ "VBD" ], "Every": [ "DT" ], "oddities": [ "NNS" ], "mountains": [ "NNS" ], "RICOing": [ "NN" ], "Gainesville": [ "NNP" ], "potassium": [ "NN" ], "Gautier": [ "NNP" ], "Boy-Marquita": [ "NNP" ], "taxpayer-related": [ "JJ" ], "Grenada": [ "NNP" ], "deployed": [ "VBN", "VBD" ], "Load": [ "NN" ], "McNabb": [ "NNP" ], "Perdido": [ "NNP" ], "higher-profit": [ "JJR", "JJ" ], "drinkers": [ "NNS" ], "Harrity": [ "NNP" ], "Loan": [ "NNP", "NN" ], "geneticists": [ "NNS" ], "stalking": [ "VBG", "VBG|NN" ], "N.R.": [ "NNP" ], "ingrates": [ "NNS" ], "Elan": [ "NNP" ], "dazzlingly": [ "RB" ], "more-conventional": [ "JJR" ], "sunnier": [ "JJR" ], "LBOs": [ "NNS", "NNPS", "NNP" ], "beguiling": [ "JJ" ], "saturate": [ "VB" ], "associated": [ "VBN", "VBD", "JJ" ], "Calenda": [ "NNP" ], "management-consultant": [ "NN" ], "Management\\": [ "JJ" ], "Underground": [ "JJ" ], "associates": [ "NNS", "VBZ" ], "Singh": [ "NNP" ], "Bagatelles": [ "NNPS" ], "laser-type": [ "JJ" ], "Amstrad": [ "NNP" ], "inequities": [ "NNS" ], "AIDS-prevention": [ "JJ" ], "visualization": [ "NN" ], "income": [ "NN" ], "Recently": [ "RB" ], "Laguna": [ "NNP" ], "pennant": [ "NN" ], "Elected": [ "VBN" ], "jackboots": [ "NNS" ], "develops": [ "VBZ" ], "truth-in-lending": [ "NN" ], "Laughing": [ "NNP" ], "flirtation": [ "NN" ], "weigh": [ "VB", "VBP" ], "Making": [ "VBG", "NNP" ], "halfback": [ "NN" ], "Criminal-defense": [ "NN" ], "Extractor": [ "NN" ], "Letterman": [ "NNP" ], "Andean": [ "JJ", "NNP" ], "potters": [ "NNS" ], "non-enforcement": [ "JJ" ], "bills-measures": [ "JJ" ], "weights": [ "NNS", "VBZ" ], "pyre": [ "NN" ], "Mach": [ "NN" ], "carved": [ "VBN", "JJ", "VBD" ], "proximate": [ "JJ" ], "pervert": [ "NN" ], "Natrona": [ "NNP" ], "B-cell": [ "NN" ], "Cranes": [ "NNPS", "NNS" ], "Panamanian": [ "JJ", "NNP" ], "high-blood-pressure": [ "JJ" ], "computer-service": [ "JJ" ], "motor-car": [ "NN" ], "whiskeys``": [ "``" ], "J.D.": [ "NNP" ], "timberland": [ "NN" ], "long-bodied": [ "JJ" ], "Launching": [ "VBG" ], "Dodge": [ "NNP" ], "Shere": [ "NNP" ], "Hazlett": [ "NNP" ], "disposal": [ "NN" ], "deterministic": [ "JJ" ], "Duclos": [ "NNP" ], "Jovian": [ "JJ" ], "half-gourd": [ "NN" ], "Sarason": [ "NNP" ], "stable": [ "JJ", "NN" ], "Buyer": [ "NNP" ], "Odyssey": [ "NNP", "NN" ], "Mort": [ "NNP" ], "Brassnose": [ "NNP" ], "overlaps": [ "VBZ" ], "Superintendents": [ "NNS" ], "talons": [ "NNS" ], "much-publicized": [ "JJ" ], "reinterpret": [ "VB" ], "electron": [ "NN" ], "bounding": [ "VBG" ], "drinking": [ "NN", "JJ", "VBG" ], "materialism": [ "NN" ], "physiognomy": [ "NN" ], "incoherent": [ "JJ" ], "off-price": [ "JJ" ], "cloud-flecked": [ "JJ" ], "reappearing": [ "VBG" ], "three-judge": [ "JJ" ], "alltime": [ "NN" ], "Zealand-dollar": [ "NN" ], "synthetic-leather": [ "JJ" ], "Silbert": [ "NNP" ], "Waymouth": [ "NNP" ], "Newgate": [ "NNP" ], "State": [ "NNP", "NNS", "NN" ], "Atorino": [ "NNP" ], "anti-Catholicism": [ "NN" ], "Fung": [ "NNP" ], "paleness": [ "NN" ], "Maryland": [ "NNP", "NN" ], "Two-Stem": [ "JJ" ], "checkers": [ "NNS" ], "microanalysis": [ "NN" ], "frankfurters": [ "NNS" ], "radar-eluding": [ "VBG", "NNP", "JJ" ], "outlasted": [ "VBD" ], "colorization": [ "NN" ], "Simmon": [ "NNP" ], "garishness": [ "NN" ], "Henderson": [ "NNP" ], "mutual-aid": [ "JJ" ], "Airports": [ "NNP", "NNS" ], "gaily": [ "RB" ], "Shantz": [ "NNP" ], "Light": [ "NNP", "JJ", "NN", "VB" ], "pushing": [ "VBG", "JJ", "NN" ], "slated": [ "VBN", "VBD" ], "swirled": [ "VBD" ], "MAINTENANCE": [ "NNP" ], "Stat.": [ "NNP", "NN" ], "confiscating": [ "VBG" ], "Job-Bias": [ "JJ" ], "vividness": [ "NN" ], "Maddalena": [ "NNP" ], "low-sugar": [ "JJ" ], "sob-wallow": [ "NN" ], "Yalagaloo": [ "UH" ], "ELDERLY": [ "JJ" ], "Ismaili": [ "NNP" ], "grants-in-aid": [ "NN" ], "warnings": [ "NNS" ], "nervous": [ "JJ" ], "Eckhardt": [ "NNP" ], "Amicable": [ "NNP" ], "payoffs": [ "NNS" ], "reds": [ "NNS" ], "examinations": [ "NNS" ], "slinging": [ "VBG" ], "preferred-stock": [ "JJ", "NN" ], "Treat": [ "VB", "NN" ], "redo": [ "VB" ], "Jergens": [ "NNP" ], "Rafales": [ "NNPS" ], "rackety": [ "JJ" ], "Ernie": [ "NNP" ], "Treasury-bond": [ "JJ" ], "No-Tobacco": [ "NNP" ], "rackets": [ "NNS" ], "MX-missile": [ "NN" ], "Erling": [ "NNP" ], "Pyrrhic": [ "JJ" ], "Andreotti": [ "NNP" ], "Sunda": [ "NNP" ], "Intervenes": [ "VBZ" ], "Count": [ "NNP", "VBP", "VB" ], "by-passed": [ "VBN" ], "Rodriquez": [ "NNP" ], "Chuck": [ "NNP", "VB" ], "pale-blue": [ "JJ" ], "Exclaimed": [ "VBD" ], "Trains": [ "NNS" ], "distractedly": [ "RB" ], "by-passes": [ "VBZ" ], "flabbiness": [ "NN" ], "weighting": [ "NN" ], "Taiwanese": [ "JJ", "NNP", "NNPS" ], "carbon-dioxide": [ "NN" ], "Balcor": [ "NNP" ], "amethystine": [ "JJ" ], "lumber": [ "NN", "VBP" ], "Ptolemaists": [ "NNS" ], "purports": [ "VBZ" ], "befits": [ "VBZ" ], "Mollica": [ "NNP" ], "Jewboy": [ "NN" ], "spying": [ "VBG", "NN" ], "Feature": [ "NNP" ], "mega-problems": [ "NNS" ], "complaisance": [ "NN" ], "villain": [ "NN" ], "carrot": [ "NN" ], "something": [ "NN" ], "hemlines": [ "NNS" ], "B70": [ "NN" ], "summers": [ "NNS" ], "one-branch": [ "JJ" ], "decaying": [ "VBG", "JJ" ], "Pilgrm": [ "NNP" ], "Aldermen": [ "NNS" ], "buoyant": [ "JJ" ], "prognosis": [ "NN" ], "lamechians": [ "NNS" ], "unites": [ "VBZ" ], "gear-box": [ "NN" ], "Shows": [ "NNS", "VBZ" ], "Patriarchy": [ "NNP" ], "tension": [ "NN" ], "Assn": [ "NNP" ], "cupboard": [ "NN" ], "Snellville": [ "NNP" ], "Philo": [ "NNP" ], "Bairnco": [ "NNP" ], "masks": [ "NNS" ], "Gummi-Werke": [ "NNP" ], "Complying": [ "VBG" ], "cheaper": [ "JJR", "RBR" ], "readiness": [ "NN" ], "Bouchard": [ "NNP" ], "Moonan": [ "NNP" ], "straps": [ "NNS" ], "ferret": [ "VB", "NN" ], "Stubblefield": [ "NNP" ], "co-hero": [ "NN" ], "batter": [ "NN", "VB" ], "martini": [ "NN" ], "parsonage": [ "NN" ], "spreads": [ "VBZ", "NNS" ], "saturated": [ "VBN", "JJ", "VBD" ], "Manzi": [ "NNP" ], "unfortunates": [ "NNS" ], "Moslem": [ "NNP", "JJ" ], "Time-Mynah": [ "NNP" ], "mathematicians": [ "NNS" ], "Wachtell": [ "NNP" ], "tyrant": [ "NN" ], "Warwick": [ "NNP" ], "Gargan": [ "NNP" ], "Gildersleeve": [ "NNP" ], "takings": [ "NNS" ], "frailties": [ "NNS" ], "Shell": [ "NNP", "NN" ], "gadflies": [ "NNS" ], "sackings": [ "NNS" ], "brawle": [ "NN" ], "anti-nuclear": [ "JJ" ], "nostalgic": [ "JJ" ], "estimating": [ "VBG", "NN" ], "Factorex": [ "NNP" ], "permanent": [ "JJ" ], "inspecting": [ "VBG" ], "shores": [ "NNS" ], "orange": [ "JJ", "NN" ], "conformance": [ "NN" ], "Queens": [ "NNP", "NNPS" ], "eastward": [ "RB" ], "bumbling": [ "JJ", "VBG" ], "Hawks": [ "NNPS", "NNP", "NNS" ], "christianizing": [ "VBG" ], "makings": [ "NNS" ], "Strukturbericht": [ "NNP" ], "adversely": [ "RB" ], "topcoat": [ "NN" ], "supermainframe": [ "NN" ], "Carnarvon": [ "NNP" ], "satellites": [ "NNS" ], "impaired": [ "VBN", "JJ" ], "investor": [ "NN" ], "unpublicized": [ "JJ" ], "Greenland": [ "NNP" ], "Swaggart": [ "NNP" ], "transitional": [ "JJ" ], "profound": [ "JJ" ], "Pro": [ "NNP", "FW" ], "birth-defect": [ "NN" ], "executive-type": [ "NN" ], "retorted": [ "VBD" ], "conservatism": [ "NN" ], "Jose-Maria": [ "NNP" ], "this.``": [ "``" ], "Subject": [ "NN", "JJ" ], "mitral": [ "JJ" ], "studios": [ "NNS" ], "liquid-glass": [ "NN" ], "psychopharmacological": [ "JJ" ], "Octet": [ "NNP" ], "mothered": [ "VBN" ], "phloem": [ "NN" ], "iron-willed": [ "JJ" ], "Octel": [ "NNP", "NN" ], "Angevine": [ "NNP" ], "Which": [ "WDT" ], "substructure": [ "NN" ], "clinching": [ "VBG" ], "Moreau": [ "NNP" ], "Flustered": [ "JJ" ], "studio\\": [ "JJ" ], "Hawke": [ "NNP" ], "exotic-Hawaiian-locale": [ "JJ" ], "hollering": [ "VBG", "JJ" ], "whitening": [ "VBG" ], "Historians": [ "NNS", "NNPS" ], "Buying": [ "VBG", "NNP", "NN" ], "transmutation": [ "NN" ], "apses": [ "NNS" ], "Raimu": [ "NNP" ], "Neptune": [ "NNP" ], "Wilsonian": [ "JJ" ], "promptly": [ "RB" ], "Fairy": [ "NNP", "NN" ], "usual": [ "JJ", "RB" ], "broker-dealer": [ "NN", "JJ", "NN|JJ" ], "Expense": [ "NN" ], "archaeologist": [ "NN" ], "Bulgaria": [ "NNP" ], "manicures": [ "VBZ" ], "age-old": [ "JJ" ], "enlargements": [ "NNS" ], "Wegener": [ "NNP" ], "illicit": [ "JJ" ], "manicured": [ "VBN" ], "Chayet": [ "NNP" ], "inky-brown": [ "JJ" ], "DOGS": [ "NNS" ], "computer-reservation": [ "JJ", "NN" ], "bolt-action": [ "JJ" ], "vases": [ "NNS" ], "McCullough": [ "NNP" ], "G.O.": [ "NNP" ], "Lemma": [ "NN" ], "listless": [ "JJ" ], "Lemme": [ "VB" ], "proposing": [ "VBG" ], "enormity": [ "NN" ], "Shoemaker": [ "NNP" ], "steams": [ "VBZ" ], "Rausch": [ "NNP" ], "Potlatches": [ "NNPS" ], "investment-management": [ "NN", "JJ" ], "Tyner": [ "NNP" ], "uniting": [ "VBG" ], "toy-store": [ "NN" ], "Voss": [ "NNP" ], "inmate": [ "NN" ], "flip-flop": [ "NN", "VBP", "JJ" ], "Marge": [ "NNP" ], "ticklish": [ "JJ" ], "rigs": [ "NNS" ], "Vose": [ "NNP" ], "Margo": [ "NNP" ], "agility": [ "NN" ], "x-rays": [ "NN", "NNS" ], "Rousseauan": [ "JJ" ], "postgraduate": [ "JJ" ], "shallow": [ "JJ", "NN" ], "Bolotin": [ "NNP" ], "Toronado": [ "NNP" ], "Wheels": [ "NNP" ], "O.E.": [ "NNP" ], "LIBOR": [ "NNP" ], "Shin": [ "NNP" ], "Belth": [ "NNP" ], "ricocheted": [ "VBD" ], "simple-seeming": [ "JJ" ], "hearings": [ "NNS" ], "Ziminska-Sygietynska": [ "NNP" ], "kickback": [ "NN" ], "boring": [ "JJ", "VBG", "NN" ], "Hopkinsian": [ "NNP" ], "infectious": [ "JJ" ], "screeching": [ "VBG", "JJ" ], "chattered": [ "VBD" ], "Sheena": [ "NNP" ], "Nazionale": [ "NNP" ], "Suhler": [ "NNP" ], "human-based": [ "JJ" ], "Folded": [ "NNP" ], "westward": [ "RB", "JJ", "NN" ], "mogul": [ "NN" ], "Ritz-Carlton": [ "NNP" ], "sincerity": [ "NN" ], "Metromedia": [ "NNP" ], "Compounding": [ "VBG" ], "intersecting": [ "VBG" ], "S.O.B.": [ "NN" ], "Bernardin": [ "NNP" ], "over-pretended": [ "JJ" ], "rout": [ "NN" ], "matchmakers": [ "NNS" ], "double-crossed": [ "VBD" ], "Erithmatic": [ "NN" ], "alienating": [ "VBG", "JJ" ], "willful": [ "JJ" ], "trivia": [ "NNS", "NN" ], "=": [ "SYM" ], "vegetation": [ "NN" ], "God-given": [ "JJ" ], "comest": [ "VBP" ], "coproducer": [ "NN" ], "Dragoslav": [ "NNP" ], "pomp-filled": [ "JJ" ], "muck": [ "NN" ], "harmful": [ "JJ" ], "Detroit": [ "NNP" ], "Gregory": [ "NNP" ], "Hanover-Sally": [ "NNP" ], "pulchritude": [ "NN" ], "thespians": [ "NNS" ], "Wollo": [ "NNP" ], "halved": [ "VBN", "JJ", "VBD" ], "clipboard-size": [ "JJ" ], "appallingly": [ "RB" ], "LEVINE": [ "NNP" ], "Mitchel": [ "NNP" ], "KICKING": [ "VBG" ], "lumpier": [ "JJR" ], "diagnostics": [ "NNS" ], "Appleseed": [ "NNP" ], "Lessons": [ "NNS" ], "EFPs": [ "NNS" ], "burners": [ "NNS" ], "tidings": [ "NNS" ], "Devens": [ "NNP" ], "hardcover": [ "NN" ], "serving": [ "VBG", "NN" ], "democrats": [ "NNS" ], "Innovation": [ "NNP" ], "Wilkinson": [ "NNP" ], "filmed": [ "VBN", "VBD", "JJ" ], "aftershave": [ "NN" ], "clutching": [ "VBG" ], "Jay": [ "NNP", "NN" ], "perfumery": [ "NN" ], "interclass": [ "JJ" ], "sunflowers": [ "NNS" ], "Sharply": [ "RB" ], "myriad": [ "JJ", "NN" ], "counter-balanced": [ "JJ" ], "off-the-cuff": [ "JJ" ], "threateningly": [ "RB" ], "overeating": [ "NN", "VBG" ], "formidable-appearing": [ "JJ" ], "wrestlings": [ "NNS" ], "road-show": [ "NN" ], "Persuading": [ "VBG" ], "Ulisse": [ "NNP" ], "SPENT": [ "VBD" ], "trims": [ "VBZ", "NNS" ], "non-Jewish": [ "JJ" ], "Bowser": [ "NNP" ], "stowaway": [ "NN" ], "THF": [ "NNP" ], "THE": [ "DT", "NNP" ], "Sulgrave": [ "NNP" ], "THC": [ "NNP" ], "helion": [ "NN" ], "jury-duty": [ "NN" ], "bellies": [ "NNS" ], "Grobstein": [ "NNP" ], "enlisting": [ "VBG" ], "ended": [ "VBD", "JJ", "VB", "VBN" ], "Penny": [ "NNP", "NN" ], "plopped": [ "VBD" ], "ministered": [ "VBD" ], "disparities": [ "NNS" ], "sparrows": [ "NNS" ], "pre-Easter": [ "JJ" ], "Politrick": [ "NN" ], "unison": [ "NN" ], "electrical-cable": [ "NN" ], "Uneven": [ "JJ" ], "expel": [ "VB" ], "Engaged": [ "VBN" ], "fantastically": [ "RB" ], "gametocide": [ "NN" ], "nonferrous": [ "JJ" ], "Unity": [ "NNP" ], "Rales": [ "NNP" ], "phosphor-screen": [ "NN" ], "Units": [ "NNP", "NNPS", "NNS" ], "Harapiak": [ "NNP" ], "unlimited": [ "JJ" ], "junks": [ "VBZ" ], "arguably": [ "RB" ], "wagers": [ "NNS" ], "scathingly": [ "RB" ], "freckled": [ "JJ" ], "Rothenberg": [ "NNP" ], "statehooders": [ "NNS" ], "Wrangler": [ "NNP" ], "Irises": [ "NNP", "NNS", "NNPS" ], "weighing": [ "VBG", "NN" ], "world-wide": [ "JJ", "RB" ], "gas-one-tenth": [ "NN" ], "Torchmark": [ "NNP" ], "Catatonia": [ "NNP" ], "embarrassment": [ "NN" ], "probing": [ "VBG", "JJ", "NN" ], "radiation-produced": [ "JJ" ], "sonorous": [ "JJ" ], "wasp": [ "NN" ], "commands": [ "NNS", "VBZ" ], "month-end": [ "JJ", "NN" ], "Strait": [ "NNP" ], "budgeting": [ "NN", "VBG" ], "Confused": [ "VBN", "JJ" ], "Sungene": [ "NNP" ], "Unlikely": [ "RB" ], "illiquid": [ "JJ" ], "Veracruz": [ "NNP" ], "Canneries": [ "NNP" ], "tinning": [ "VBG" ], "commando": [ "NN" ], "unconvincing": [ "JJ" ], "Timothy": [ "NNP" ], "Worthless": [ "JJ" ], "cheap-shot": [ "JJ" ], "Dromey": [ "NNP" ], "unfolding": [ "VBG", "JJ" ], "wholesale-sized": [ "JJ" ], "narrower": [ "JJR" ], "litter-strewn": [ "JJ" ], "packaging": [ "NN", "VBG" ], "Bristol-Meyers": [ "NNP" ], "misapplied": [ "VBN" ], "respect": [ "NN", "VBP", "VB" ], "narrowed": [ "VBD", "VBN" ], "RD": [ "NNP" ], "leadsman": [ "NN" ], "cavities": [ "NNS" ], "ton-mile": [ "JJ" ], "fishers": [ "NNS" ], "hunters": [ "NNS" ], "storyteller": [ "NN" ], "Herald-Examiner": [ "NNP" ], "Forecasts": [ "NNPS", "NNP", "NNS" ], "Bonneville": [ "NNP" ], "literal": [ "JJ" ], "sidesteps": [ "VBZ" ], "catechize": [ "VB" ], "floats": [ "VBZ" ], "Aderholds": [ "NNPS" ], "ghettos": [ "NNS" ], "determinant": [ "NN" ], "Exxon": [ "NNP", "NN" ], "skinhead": [ "NN" ], "Ababa": [ "NNP" ], "sufficient": [ "JJ" ], "jaded": [ "JJ", "VBN" ], "Credit": [ "NNP", "NN", "FW" ], "billion-asset": [ "JJ" ], "hightechnologies": [ "NNS" ], "Acknowledges": [ "VBZ" ], "XYLOGICS": [ "NNP" ], "painter": [ "NN" ], "interstices": [ "NNS" ], "arms-production": [ "NN" ], "once-absolute": [ "JJ" ], "Quilt": [ "NNP", "NN" ], "riflemen-rangers": [ "NNS" ], "TRAVEL": [ "NN" ], "ejection": [ "NN" ], "Trumped": [ "VBN" ], "Kleinaitis": [ "NNP" ], "made-for-TV": [ "JJ" ], "Skiing": [ "NN" ], "not-so-subtly": [ "RB" ], "Taiwan": [ "NNP" ], "buy-stop": [ "JJ" ], "Quill": [ "NNP" ], "intercity": [ "JJ", "NN" ], "potions": [ "NNS" ], "Lassie": [ "NNP" ], "Reinvestment": [ "NNP" ], "palely": [ "RB" ], "DJIA": [ "NNP" ], "dual": [ "JJ" ], "snuck": [ "VBD" ], "Strom": [ "NNP" ], "Intelligent": [ "NNP", "JJ" ], "Stroh": [ "NNP" ], "coal-fired": [ "JJ" ], "canned-food": [ "NN" ], "member": [ "NN" ], "kitty-cornered": [ "JJ" ], "Halliburton": [ "NNP", "NN" ], "unwired": [ "VBD" ], "non-dischargable": [ "JJ" ], "Reinhold": [ "NNP" ], "Sandburgs": [ "NNPS" ], "Sperling": [ "NNP" ], "grandeur": [ "NN" ], "sincerest": [ "JJS" ], "diplomat": [ "NN" ], "beast": [ "NN" ], "Wal-Mart": [ "NNP" ], "OTC-market": [ "JJ" ], "fixed-repayment": [ "JJ" ], "Pivot": [ "NNP" ], "courant": [ "FW" ], "Gilda": [ "NNP" ], "aftuh": [ "RB" ], "Rosso": [ "NNP" ], "Savonarola": [ "NNP" ], "Stated": [ "VBN" ], "Staten": [ "NNP" ], "tithes": [ "NNS" ], "States": [ "NNPS", "NNP", "NNS" ], "Stater": [ "NNP" ], "adrenaline": [ "NN" ], "demonize": [ "VB" ], "Welch": [ "NNP" ], "Fawcett": [ "NNP" ], "Shearson": [ "NNP" ], "bending": [ "VBG" ], "beer-bellied": [ "JJ" ], "routinely": [ "RB" ], "dockworkers": [ "NNS" ], "Schnader": [ "NNP" ], "Bonham": [ "NNP" ], "gyrations": [ "NNS" ], "Bonfiglio": [ "NNP" ], "wealthy": [ "JJ", "NNS" ], "Yass": [ "NNP" ], "fishing": [ "NN", "VBG", "JJ" ], "active-matrix": [ "JJ", "NN" ], "Microscopically": [ "RB" ], "waterskiing": [ "NN" ], "backroom": [ "NN" ], "NAHB": [ "NNP" ], "reconsidered": [ "VBN", "VBD" ], "Marin": [ "NNP" ], "well-turned-out": [ "JJ" ], "satellite-linked": [ "JJ" ], "supply": [ "NN", "VBP", "VB" ], "upper-medium": [ "JJ" ], "nos": [ "NNS" ], "enact": [ "VB" ], "captivating": [ "JJ", "VBG" ], "layering": [ "VBG", "NN" ], "toured": [ "VBD" ], "seventh-inning": [ "JJ" ], "Meager": [ "JJ" ], "Droll": [ "NNP" ], "Below": [ "IN", "RB" ], "aeternitatis": [ "FW" ], "Dvorak": [ "NNP" ], "Maumee": [ "NNP" ], "helpful": [ "JJ" ], "tryouts": [ "NNS" ], "howitzer": [ "NN" ], "piasters": [ "NNS" ], "Camaro-Firebird": [ "NNP" ], "multibillion-yen": [ "JJ" ], "loser": [ "NN", "JJ" ], "loses": [ "VBZ", "NNS" ], "Honey": [ "NNP", "NN" ], "Skip": [ "VB", "NNP" ], "Maria": [ "NNP" ], "herons": [ "NNS" ], "Saab-Scania": [ "NNP" ], "retractable": [ "JJ" ], "elevators": [ "NNS" ], "mattresses": [ "NNS" ], "growth": [ "NN", "JJ", "VB" ], "Bonanza": [ "NNP" ], "throughout": [ "IN", "RB" ], "Formally": [ "RB" ], "Promoters": [ "NNP", "NNS" ], "miner": [ "NN" ], "mines": [ "NNS" ], "markers": [ "NNS" ], "blenders": [ "NNS" ], "earrings": [ "NNS" ], "mined": [ "VBN", "VBD" ], "patiently": [ "RB" ], "trout": [ "NN", "NNS" ], "truckers": [ "NNS" ], "obey": [ "VB", "VBP" ], "analysed": [ "VBN" ], "over-night": [ "JJ" ], "Gram-negative": [ "JJ" ], "Umkhonto": [ "NNP" ], "Longmont": [ "NNP" ], "re-creations": [ "NNS" ], "Warburg": [ "NNP" ], "extension": [ "NN" ], "saddle": [ "NN", "VB" ], "sectarian": [ "JJ", "NN" ], "gulping": [ "VBG" ], "Nogay": [ "NNP" ], "Stagecoach": [ "NNP" ], "multi-disciplinary": [ "JJ" ], "taxpaying": [ "JJ" ], "Wander-Years": [ "NNP" ], "additives": [ "NNS" ], "owl": [ "NN" ], "own": [ "JJ", "VBN", "VBP", "VB" ], "Cornell": [ "NNP" ], "creativity": [ "NN" ], "Marseilles": [ "NNP" ], "Stockard": [ "NNP" ], "Takao": [ "NNP" ], "kilowatt-hours": [ "NNS", "NN" ], "Soviet-controlled": [ "JJ" ], "Ribeiro": [ "NNP" ], "keystroke": [ "NN" ], "J.F.": [ "NNP" ], "billfold": [ "NN" ], "policed": [ "VBN" ], "soft-looking": [ "JJ" ], "Diversity": [ "NN", "NNP" ], "platoon": [ "NN" ], "Milberg": [ "NNP" ], "blanketed": [ "VBD" ], "smoothing": [ "VBG" ], "package-holiday": [ "JJ" ], "intention": [ "NN" ], "Israeli\\/Palestinian": [ "JJ" ], "Rowley": [ "NNP" ], "breeding": [ "VBG", "NN" ], "inter-company": [ "JJ" ], "multistate": [ "NN" ], "spittle": [ "NN" ], "bitches": [ "NNS" ], "fixers": [ "NNS" ], "decisis": [ "FW" ], "Sonoma": [ "NNP" ], "Tel": [ "NNP" ], "Jenny": [ "NNP" ], "challenger": [ "NN" ], "Tea": [ "NNP", "NN" ], "Anti-A": [ "NNP" ], "Ted": [ "NNP" ], "Tee": [ "NNP", "UH" ], "Tex": [ "NNP" ], "Sheehy": [ "NNP" ], "Cetron": [ "NNP" ], "Jenni": [ "NNP" ], "demonstrate": [ "VB", "VBP" ], "rickety": [ "JJ" ], "recork": [ "VB" ], "here-for": [ "JJ" ], "Embittered": [ "JJ" ], "Pagones": [ "NNP" ], "Instinctively": [ "RB" ], "soft-shell": [ "JJ" ], "hymns": [ "NNS" ], "conspired": [ "VBD", "VBN" ], "Lander": [ "NNP" ], "hard-to-fit": [ "JJ" ], "needle-like": [ "JJ" ], "Haun": [ "NNP" ], "Stetsons": [ "NNPS" ], "Bartlesville": [ "NNP" ], "Tempering": [ "VBG" ], "Dustin": [ "NNP" ], "Yeni": [ "NNP" ], "triphosphopyridine": [ "JJ" ], "volumes": [ "NNS" ], "reorientation": [ "NN" ], "apportioned": [ "VBN" ], "Payson": [ "NNP" ], "Converts": [ "NNS" ], "Musical": [ "NNP", "JJ" ], "Baltimore": [ "NNP", "NN" ], "galvanism": [ "NN" ], "quicker": [ "JJR", "RBR", "JJ" ], "capability...": [ ":" ], "McInroy": [ "NNP" ], "Fights": [ "NNS" ], "jewel": [ "NN" ], "pricey": [ "JJ" ], "intentionally": [ "RB" ], "whole-egg": [ "JJ" ], "Lyster": [ "NNP" ], "xenon": [ "NN" ], "CANADA": [ "NNP" ], "Steelton": [ "NNP" ], "xylem": [ "NN" ], "raining": [ "VBG" ], "sitters": [ "NNS" ], "Thorn-EMI": [ "NNP" ], "hordes": [ "NNS" ], "quota-breakers": [ "NNS" ], "Hasting": [ "NNP" ], "mark-denominated": [ "JJ" ], "foul": [ "JJ", "RB", "VB", "UH" ], "Seller": [ "NN" ], "revelers": [ "NNS" ], "prices": [ "NNS", "VBZ" ], "BROWN-FORMAN": [ "NNP" ], "preface": [ "NN" ], "centimeter": [ "NN" ], "Until": [ "IN", "NNP" ], "aggression": [ "NN" ], "Antar": [ "NNP" ], "Electromyography": [ "NN" ], "crooned": [ "VBD" ], "Kushkin": [ "NNP" ], "Manufacturers": [ "NNPS", "NNP", "NNS" ], "Michaelcheck": [ "NNP" ], "quadruple": [ "VB", "JJ" ], "outwit": [ "VB" ], "Belgians": [ "NNPS", "NNP" ], "demoted": [ "VBN", "VBD" ], "Climbing": [ "VBG" ], "sinking": [ "VBG", "VBG|NN", "JJ", "NN" ], "callin": [ "VBG" ], "propane": [ "NN" ], "SP1": [ "JJ" ], "financial-planning": [ "JJ" ], "laser-resistant": [ "JJ" ], "pierce": [ "VB" ], "tantalizing": [ "VBG", "JJ" ], "lignite": [ "JJ", "NN" ], "fur": [ "NN" ], "Redding": [ "NNP" ], "Heights": [ "NNP", "NNPS" ], "specialty-store": [ "NN" ], "uttering": [ "VBG" ], "Hannifin": [ "NNP" ], "Less": [ "RBR", "JJR", "NNP" ], "distate": [ "NN" ], "brutish": [ "JJ" ], "cross-top": [ "JJ" ], "Vast": [ "JJ" ], "gorup": [ "NN" ], "Quist": [ "NNP" ], "disunited": [ "VBN" ], "Jerez": [ "NNP" ], "anti-Galileo": [ "JJ" ], "commented": [ "VBD", "VBN" ], "Lesk": [ "NNP" ], "Conventional": [ "JJ", "NNP" ], "tolerate": [ "VB", "VBP" ], "railing": [ "NN" ], "Summerspace": [ "NNP" ], "na/TO": [ "NNP" ], "Hecla": [ "NNP" ], "non-ICO": [ "JJ" ], "resignations": [ "NNS" ], "pavane": [ "NN" ], "DiVarco": [ "NNP" ], "Huai": [ "NNP" ], "relieving": [ "VBG" ], "thunder": [ "NN", "VB", "VBP" ], "Perinetti": [ "NNP" ], "Earthmen": [ "NNPS", "NNP", "NNS" ], "schism": [ "NN" ], "Companion": [ "NN", "NNP" ], "Guerrillas": [ "NNS", "NNPS" ], "bonuses": [ "NNS", "VBZ" ], "early-warning": [ "NN" ], "Raspberry": [ "NN" ], "admiral": [ "NN" ], "inducement": [ "NN" ], "grovels": [ "VBZ" ], "Pudwell": [ "NNP" ], "legations": [ "NNS" ], "PROSECUTORS": [ "NNS" ], "top-flight": [ "JJ" ], "sobs": [ "NNS" ], "midafternoon": [ "NN" ], "fissured": [ "VBN" ], "PATIENCE": [ "NN" ], "Resins": [ "NNPS" ], "Forgotten": [ "NNP" ], "fissures": [ "NNS" ], "tenspot": [ "NN" ], "excelsior": [ "NN" ], "Botulinal": [ "JJ" ], "Dominique": [ "NNP" ], "Zita": [ "NNP" ], "flatlands": [ "NNS" ], "k": [ "NN" ], "Petite": [ "JJ" ], "Xiao": [ "NNP" ], "newspaper-publishing": [ "JJ" ], "unwanted": [ "JJ" ], "indulging": [ "VBG" ], "Mutton": [ "NNP" ], "labor-saving": [ "JJ" ], "Towsley": [ "NNP" ], "slivery": [ "NN" ], "Skates": [ "NNP" ], "cocaine": [ "NN" ], "Pompeii": [ "NNP" ], "zoning": [ "NN", "VBG" ], "opponents": [ "NNS" ], "derivatives": [ "NNS" ], "good-hearted": [ "JJ" ], "reticulate": [ "JJ" ], "anti-deer": [ "JJ" ], "Rabin": [ "NNP" ], "females": [ "NNS" ], "standardized": [ "JJ", "VBN" ], "high-wage": [ "JJ" ], "pointedly": [ "RB" ], "taffycolored": [ "VBN" ], "smelts": [ "NNS" ], "lord": [ "NN" ], "zipped": [ "VBD" ], "foul-mouthed": [ "JJ" ], "tastefully": [ "RB" ], "Merz": [ "NNP" ], "lesson-learning": [ "NN" ], "Nuell": [ "NNP" ], "grimed": [ "VBN" ], "plunged": [ "VBD", "VBN" ], "Merv": [ "NNP" ], "Ropes": [ "NNPS" ], "anticompetitive": [ "JJ" ], "plunges": [ "NNS", "VBZ" ], "municipally": [ "RB" ], "marketing-and-distribution": [ "JJ" ], "world-freight": [ "NN" ], "Cyoctol": [ "NNP" ], "overextend": [ "VBP" ], "slimmed-down": [ "JJ" ], "currency": [ "NN" ], "Amoskeag": [ "NNP" ], "Energie": [ "NNP" ], "Loudon": [ "NNP" ], "Dempsey": [ "NNP" ], "unmasked": [ "VBN" ], "pigsty": [ "NN" ], "comedians": [ "NNS" ], "imperishable": [ "JJ" ], "child-safety": [ "JJ" ], "Zimet": [ "NNP" ], "Cabbage": [ "NNP", "NN" ], "Mullins": [ "NNP" ], "fanaticism": [ "NN" ], "tripling": [ "VBG" ], "latest-quarter": [ "JJ" ], "thermodynamic": [ "JJ" ], "survivable": [ "JJ" ], "despondent": [ "JJ" ], "triage": [ "NN" ], "Players": [ "NNPS", "NNP", "NNS" ], "McInerney": [ "NNP" ], "constants": [ "NNS" ], "persuasiveness": [ "NN" ], "Erie": [ "NNP" ], "Knowledgeable": [ "JJ" ], "drinks": [ "NNS", "VBZ" ], "deutsche": [ "NN", "FW" ], "first-mortgage": [ "JJ", "NN" ], "pet-rabbit-raising": [ "JJ" ], "baggage": [ "NN" ], "trellises": [ "NNS" ], "Fabulous": [ "NNP", "JJ" ], "timers": [ "NNS" ], "communistic": [ "JJ" ], "Drug-industry": [ "JJ" ], "Renowned": [ "VBN" ], "Criminals": [ "NNS" ], "MONTHLY": [ "JJ" ], "derring-do": [ "NN" ], "Recruiter": [ "NNP" ], "side-conclusions": [ "NNS" ], "Recruited": [ "VBN" ], "wrought": [ "VBN", "VBD", "JJ" ], "deregulating": [ "VBG" ], "superregional": [ "JJ" ], "unforeseen": [ "JJ" ], "auditors": [ "NNS" ], "survivors": [ "NNS" ], "Karangelen": [ "NNP" ], "insubstantial": [ "JJ" ], "Stainless": [ "NNP", "JJ" ], "Khost": [ "NNP" ], "easier": [ "JJR", "RBR", "RB" ], "Implements": [ "NNS" ], "Wilcox": [ "NNP" ], "thrones": [ "NNS" ], "planetoid": [ "NN" ], "slate": [ "NN", "JJ" ], "Presumably": [ "RB" ], "blini": [ "NNS" ], "aspersions": [ "NNS" ], "constructional": [ "JJ" ], "schools": [ "NNS" ], "Pechiney": [ "NNP" ], "slats": [ "NNS" ], "lenient": [ "JJ" ], "competitiveness": [ "NN" ], "Prudent": [ "NNP" ], "CODE-NAMED": [ "VBN" ], "renditions": [ "NNS" ], "argriculture": [ "NN" ], "fiscal-first": [ "JJ" ], "Hobbes": [ "NNP" ], "Pitney-Bowes": [ "NNP" ], "loyalties": [ "NNS" ], "twindam": [ "NN" ], "glad-handing": [ "NN" ], "unwary": [ "JJ" ], "pliant": [ "JJ" ], "series": [ "NN", "NNS" ], "slow-building": [ "JJ" ], "Yeres": [ "NNP" ], "Recognizing": [ "VBG" ], "Okada": [ "NNP" ], "depositing": [ "VBG" ], "substantially": [ "RB" ], "mutineer": [ "NN" ], "emulsified": [ "VBN" ], "TRADE": [ "NN", "NNP" ], "Hahn": [ "NNP" ], "high-temperature": [ "JJ", "NN" ], "ten-concert": [ "JJ" ], "package-design": [ "NN" ], "less-self-confident": [ "JJ" ], "single-market": [ "JJ", "NN" ], "redundancies": [ "NNS" ], "heavy-duty": [ "JJ", "NN" ], "H.K.": [ "NNP" ], "Culvers": [ "NNPS" ], "Super": [ "NNP", "JJ" ], "Chaikoff": [ "NNP" ], "foundation": [ "NN" ], "written": [ "VBN", "JJ" ], "Abortion": [ "NNP", "NN" ], "safe-cracking": [ "JJ" ], "Pension": [ "NN", "NNP" ], "Lapin": [ "FW" ], "mobsters": [ "NNS" ], "desks": [ "NNS" ], "Frankfurt": [ "NNP", "NN", "NNPS" ], "withered": [ "JJ", "VBN" ], "Princeton\\/Newport-like": [ "JJ" ], "shipper": [ "NN" ], "exposing": [ "VBG", "JJ" ], "Rosenberg": [ "NNP" ], "Mingo": [ "NNP" ], "Chan": [ "NNP" ], "Chao": [ "NNP" ], "silicon": [ "NN" ], "shipped": [ "VBN", "JJ", "VBD" ], "speedy": [ "JJ" ], "coeds": [ "NNS" ], "Cadam": [ "NNP" ], "repealed": [ "VBN", "VBD" ], "Anjelica": [ "NNP" ], "caught": [ "VBN", "VBD" ], "speeds": [ "NNS", "VBZ" ], "Universities": [ "NNS", "NNPS", "NNP" ], "bowl": [ "NN", "VBP" ], "Dun": [ "NNP" ], "most-likely": [ "JJ" ], "dailies": [ "NNS" ], "celebrators": [ "NNS" ], "Due": [ "JJ", "NNP", "RB" ], "sallies": [ "NNS" ], "channels": [ "NNS" ], "second-degree": [ "JJ", "NN" ], "infused": [ "VBN" ], "abutments": [ "NNS" ], "Trabants": [ "NNPS" ], "elms": [ "NNS" ], "Messelt": [ "NNP" ], "fur-piece": [ "NN" ], "eye-gouging": [ "NN" ], "basketball": [ "NN" ], "exchequer": [ "NN" ], "betrothed": [ "VBD" ], "investment-insurance": [ "NN" ], "prepurchase": [ "JJ" ], "Italian-led": [ "JJ" ], "Chorale": [ "NNP" ], "carload": [ "NN" ], "over-arching": [ "JJ" ], "hypothetical": [ "JJ" ], "SoundView": [ "NNP" ], "external-trade": [ "JJ" ], "bethought": [ "VB" ], "Encyclopaedia": [ "NNP" ], "Gallon-Loren": [ "NNP" ], "immensities": [ "NNS" ], "lunges": [ "VBZ" ], "lunger": [ "NN" ], "expunged": [ "VBN" ], "nirvana": [ "NN" ], "megalomaniac": [ "NN" ], "advisement": [ "NN" ], "Summit": [ "NNP", "NN" ], "scholastically": [ "RB" ], "unfair-trade": [ "JJ" ], "crawl": [ "VB", "NN" ], "lunged": [ "VBD" ], "Serkin": [ "NNP" ], "exultation": [ "NN" ], "showed": [ "VBD", "VBN" ], "elegant": [ "JJ" ], "hyenas": [ "NNS" ], "tree": [ "NN" ], "TINTING": [ "NN" ], "project": [ "NN", "VB", "VBP" ], "Frequency": [ "NNP" ], "involutorial": [ "JJ" ], "blasphemed": [ "VBD" ], "Wessels": [ "NNP" ], "Furies": [ "NNS" ], "Sulya": [ "NNP" ], "runner": [ "NN" ], "Woodyard": [ "NNP" ], "untrained": [ "JJ" ], "antagonistic": [ "JJ" ], "shrubs": [ "NNS" ], "home-builder": [ "NN" ], "Memorex": [ "NNP" ], "ANSA": [ "NNP" ], "hyper-inflation": [ "NN" ], "gripe": [ "VBP", "NN", "VB" ], "nigs": [ "NNS" ], "asymmetric": [ "JJ" ], "recommended": [ "VBD", "VBN", "JJ" ], "Pursuit": [ "NN" ], "doors": [ "NNS" ], "Ask": [ "VB", "NNP" ], "grips": [ "NNS" ], "Ash": [ "NNP" ], "Iain": [ "NNP" ], "Jones": [ "NNP" ], "Sardina": [ "NNP" ], "Catherall": [ "NNP" ], "Counterpoint": [ "NN" ], "debonair": [ "JJ" ], "reverberated": [ "VBN", "VBD" ], "Althea": [ "NNP" ], "guardedness": [ "NN" ], "Warrick": [ "NNP" ], "stock-price": [ "JJ", "NN" ], "cams": [ "NNS" ], "camp": [ "NN", "VB" ], "Schwada": [ "NNP" ], "rotary": [ "JJ" ], "consumer-product": [ "JJ", "NN" ], "CREATIVE": [ "JJ" ], "memberships": [ "NNS" ], "Brideshead": [ "NNP" ], "howl": [ "NN", "VB" ], "Baden-Wuerttemberg": [ "NNP" ], "Lisbon": [ "NNP" ], "circulations": [ "NNS" ], "Chicago-Warsaw": [ "NNP" ], "came": [ "VBD" ], "Anglicans": [ "NNS" ], "Symonds": [ "NNP" ], "Abdul": [ "NNP" ], "shark-infested": [ "JJ" ], "reschedule": [ "VB" ], "Marcella": [ "NNP" ], "participate": [ "VB", "VBP" ], "falsehoods": [ "NNS" ], "unmanaged": [ "JJ" ], "Marcello": [ "NNP" ], "convenient-type": [ "JJ" ], "layout": [ "NN" ], "Reaching": [ "VBG" ], "quaint": [ "JJ" ], "wastewater": [ "NN" ], "Tripod-Laing": [ "NNP" ], "Ranked": [ "VBN" ], "salvos": [ "NNS" ], "Wealthy": [ "NNP" ], "ballyhooed": [ "VBN" ], "On-Site": [ "NNP" ], "organizes": [ "VBZ" ], "D.C.": [ "NNP", "JJ", "NN" ], "pre-empt": [ "VB", "JJ" ], "denounce": [ "VBP", "VB" ], "psychiatric": [ "JJ" ], "foremost": [ "JJ", "RB" ], "Encompassing": [ "VBG" ], "beavertail": [ "NN" ], "masonry": [ "NN" ], "tenaciously": [ "RB" ], "worth-waiting-for": [ "JJ" ], "Xiaobo": [ "NNP" ], "dipping": [ "VBG" ], "Mackenzie": [ "NNP" ], "prayerful": [ "JJ" ], "Seventies": [ "NNPS" ], "sludge-covered": [ "JJ" ], "twinkling": [ "VBG", "NN" ], "Bennington": [ "NNP" ], "freewheelers": [ "NNS" ], "Neurenschatz": [ "NNP" ], "Winners": [ "NNS" ], "cloning": [ "VBG", "NN" ], "Subverts": [ "NNP" ], "McPherson": [ "NNP" ], "resigned": [ "VBD", "VBN", "JJ" ], "pricking": [ "VBG" ], "no-lose": [ "JJ" ], "pressured": [ "VBN", "JJ", "NN", "VB", "VBD" ], "rings": [ "NNS", "VBZ" ], "solicitude": [ "NN" ], "top-drawer": [ "NN", "JJ" ], "pressures": [ "NNS" ], "Wednesdays": [ "NNS", "NNPS" ], "oedipal": [ "JJ" ], "yogurt": [ "NN" ], "Lockies": [ "NNPS" ], "Pooh-like": [ "JJ" ], "apples": [ "NNS", "JJ" ], "Bebe": [ "NNP" ], "wanted": [ "VBD", "JJ", "VBN" ], "good-news": [ "NN" ], "J/NNP.G.L.": [ "NNP" ], "employment-services": [ "JJ" ], "fullscale": [ "JJ" ], "Porkapolis": [ "NNP" ], "TANDEM": [ "NNP" ], "reconstitute": [ "VB" ], "defiance": [ "NN" ], "Quemoy": [ "NNP" ], "debt": [ "NN" ], "attendents": [ "NNS" ], "planner": [ "NN" ], "disdain": [ "NN", "VBP", "VB" ], "Sovran": [ "NNP" ], "Weybosset": [ "NNP" ], "Blessed": [ "NNP", "VBN" ], "planned": [ "VBN", "JJ", "VBD" ], "Menshikov": [ "NNP" ], "alternate": [ "JJ", "VBP", "NN", "VB" ], "ramrod-straight": [ "JJ" ], "miscommunication": [ "NN" ], "BCD": [ "NNP" ], "fudged": [ "VBD" ], "Caton": [ "NNP" ], "liberal-conservative": [ "JJ" ], "BCA": [ "NNP" ], "munches": [ "VBZ" ], "trickiest": [ "JJS" ], "smithereens": [ "NNS" ], "hers": [ "PRP", "JJ" ], "re-education": [ "NN" ], "gleaming": [ "VBG" ], "munched": [ "VBD" ], "Sorry": [ "JJ", "UH" ], "grazing": [ "VBG", "JJ", "NN" ], "BCS": [ "NNP" ], "Pomton": [ "NNP" ], "reconsideration": [ "NN" ], "parley": [ "NN", "VB" ], "trapdoor": [ "NN" ], "Orrin": [ "NNP" ], "Malay": [ "NNP" ], "Infection": [ "NN" ], "art-shop": [ "NN" ], "privilege": [ "NN" ], "dynamically": [ "RB" ], "deportations": [ "NNS" ], "dots": [ "NNS" ], "face-to-face": [ "JJ", "RB" ], "Algiers": [ "NNP" ], "FDA-regulated": [ "JJ" ], "sewer-repair": [ "JJ" ], "gavottes": [ "NNS" ], "gloats": [ "VBZ" ], "low-ceilinged": [ "JJ" ], "Schulz": [ "NNP" ], "Nominations": [ "NNS" ], "doth": [ "VBZ" ], "expansionists": [ "NNS" ], "Gatward": [ "NNP" ], "gritty": [ "JJ" ], "joblot": [ "NN" ], "life-health": [ "NN" ], "inpatient": [ "NN" ], "scowled": [ "VBD" ], "NSBU": [ "NNP" ], "Kuiper": [ "NNP" ], "excited": [ "VBN", "JJ", "VBD" ], "light-rail": [ "JJ" ], "betas": [ "NNS" ], "MAGURNO": [ "NNP" ], "Campbell": [ "NNP", "NN" ], "Pitt-Rivers": [ "NNP" ], "congratulation": [ "NN" ], "Southmark-supported": [ "JJ" ], "Painters": [ "NNS" ], "taunts": [ "NNS" ], "overpowers": [ "VBZ" ], "Teferi": [ "NNP" ], "upscale": [ "JJ", "NN", "RB" ], "Gazette": [ "NNP" ], "violin": [ "NN" ], "churchmen": [ "NNS" ], "damaged": [ "VBN", "JJ", "VBD" ], "severity": [ "NN" ], "pawnshop": [ "NN" ], "allegoric": [ "JJ" ], "Naw": [ "UH" ], "DILLARD": [ "NNP" ], "verify": [ "VB", "VBP" ], "hall-mark": [ "NN" ], "by-gone": [ "JJ" ], "drop-out": [ "JJ" ], "damages": [ "NNS", "VBZ" ], "Roine": [ "NNP" ], "Wratten": [ "NNP" ], "emphatic": [ "JJ" ], "voyager": [ "NN" ], "voyages": [ "NNS" ], "Scripps-Howard": [ "NNP" ], "equalizing": [ "NN" ], "Roskind": [ "NNP" ], "Retrovirus": [ "NNP" ], "seamen": [ "NNS" ], "Hinsdale": [ "NNP" ], "haggard": [ "JJ" ], "simulates": [ "VBZ" ], "Spalding": [ "NNP", "VBG" ], "Zielinski": [ "NNP" ], "Beset": [ "VBN" ], "fanatically": [ "RB" ], "simulated": [ "VBN", "JJ" ], "quantitative": [ "JJ" ], "pairings": [ "NNS" ], "dissects": [ "VBZ" ], "veils": [ "NNS" ], "DLINE": [ "NN" ], "boyhood": [ "NN" ], "Thank": [ "VB", "VBP" ], "Thanh": [ "NNP" ], "THAT": [ "WDT", "DT" ], "Subsequent": [ "JJ" ], "Baden-Baden": [ "NNP" ], "DRI": [ "NNP" ], "Bien": [ "NNP" ], "Position": [ "NN", "VB" ], "Thant": [ "NNP" ], "THAN": [ "IN" ], "DRG": [ "NNP" ], "Pumpkin": [ "NNP" ], "self-assured": [ "JJ" ], "handshake": [ "NN" ], "magically": [ "RB" ], "Soweto": [ "NNP" ], "old-fashioned": [ "JJ" ], "Sulamith": [ "NNP" ], "palmtops": [ "NNS" ], "innocent": [ "JJ" ], "botanists": [ "NNS" ], "Nichtige": [ "NN" ], "SystemOne": [ "NNP" ], "Broiler": [ "NN" ], "quirk": [ "NN" ], "knock-down": [ "JJ" ], "Cathleen": [ "NNP" ], "shabbily": [ "RB" ], "Chrysler": [ "NNP" ], "ratcheting": [ "VBG|NN", "VBG" ], "quirt": [ "NN" ], "Geier": [ "NNP" ], "Campbell-brand": [ "JJ" ], "Claudia": [ "NN" ], "brought": [ "VBN", "VBD" ], "specie": [ "FW", "NN" ], "deviance": [ "NN" ], "Claudio": [ "NNP", "NN" ], "bulked": [ "VBD" ], "Graziano": [ "NNP" ], "headwalls": [ "NNS" ], "sailorly": [ "RB" ], "ballooned": [ "VBN", "VBD" ], "Yoshizawa": [ "NNP" ], "consultants": [ "NNS" ], "Bismark": [ "NNP" ], "Greenness": [ "NN" ], "Philadelphia-area": [ "JJ" ], "Norton": [ "NNP", "NN" ], "newly-created": [ "JJ" ], "enemies": [ "NNS" ], "Messing": [ "VBG" ], "iniquities": [ "NNS" ], "Cudkowicz": [ "NNP" ], "polluted": [ "JJ", "VBD", "VBN" ], "birdlike": [ "JJ" ], "disheartened": [ "VBN" ], "exposition": [ "NN" ], "periphery": [ "NN" ], "Hatching": [ "NNP" ], "nitrate": [ "NN" ], "polluter": [ "NN" ], "Convertible": [ "JJ", "NNP" ], "theological": [ "JJ" ], "cultist": [ "NN" ], "McElroy": [ "NNP" ], "Remy": [ "NNP" ], "shaker": [ "NN" ], "shakes": [ "VBZ", "NNS" ], "secularists": [ "NNS" ], "REJECTS": [ "VBZ" ], "Admittedly": [ "RB" ], "Valedictorian": [ "NNP" ], "Dooley": [ "NNP" ], "Marocaine": [ "NNP" ], "Westpheldt": [ "NNP" ], "Characters": [ "NNS" ], "defensive": [ "JJ", "NN" ], "poppies": [ "NNS" ], "pliers": [ "NNS" ], "film-maker": [ "NN" ], "officiating": [ "VBG" ], "Gurkhas": [ "NNP" ], "AVX": [ "NNP" ], "Valentino": [ "NNP" ], "Valentina": [ "NNP" ], "fabrications": [ "NNS" ], "entrants": [ "NNS" ], "Valentine": [ "NNP", "NN" ], "annualized": [ "VBN", "VBD", "JJ" ], "Scrapings": [ "NNS" ], "AVC": [ "NNP" ], "hulking": [ "JJ", "VBG" ], "Use": [ "VB", "NNP", "NN" ], "Fee": [ "NN" ], "soe": [ "NN" ], "sod": [ "NN" ], "Blacks": [ "NNS", "NNPS", "NNP" ], "facility": [ "NN" ], "Greeks": [ "NNPS", "NNS" ], "son": [ "NN" ], "Few": [ "JJ", "NNP" ], "raiser": [ "NN" ], "raises": [ "VBZ", "NNS" ], "sow": [ "VBP", "NN", "VB" ], "soy": [ "NN" ], "Latino": [ "JJ" ], "Ont.": [ "NNP" ], "Fey": [ "NNP" ], "Checkit": [ "NNP" ], "authorizes": [ "VBZ" ], "waits": [ "VBZ" ], "La-la-landers": [ "NNS" ], "support": [ "NN", "VB", "VBP" ], "constantly": [ "RB" ], "Labeling": [ "VBG" ], "device.": [ "NN" ], "intra-stellar": [ "NN" ], "Schrager": [ "NNP" ], "Yoshio": [ "NNP" ], "Expressionism": [ "NNP" ], "general-director": [ "NN" ], "Hinkle": [ "NNP" ], "manmade": [ "NN" ], "fellow-employees": [ "NNS" ], "remarking": [ "VBG" ], "Nickelson": [ "NNP" ], "Akers": [ "NNP" ], "well-cemented": [ "JJ" ], "otter": [ "NN" ], "Servicios": [ "NNP" ], "Jens-Uwe": [ "NNP" ], "inside": [ "IN", "JJ", "NN", "RB" ], "devices": [ "NNS" ], "paprika": [ "NN" ], "faster-working": [ "JJR" ], "Hungary-Suez": [ "NNP" ], "glaringly": [ "RB" ], "Weatherford": [ "NNP" ], "Buoyed": [ "VBN" ], "communize": [ "VB" ], "Intourist": [ "NNP" ], "pilot-seniority": [ "NN" ], "door-frame": [ "NN" ], "Kurlander": [ "NNP" ], "Trooper": [ "NNP" ], "guideposts": [ "NNS" ], "textbook": [ "NN" ], "pig-drunk": [ "JJ" ], "centrifuged": [ "VBN" ], "Rimbaud": [ "NN" ], "Observations": [ "NNS" ], "death-row": [ "NN", "JJ" ], "negotiations": [ "NNS" ], "Unused": [ "JJ" ], "Francisco": [ "NNP" ], "AP-Dow": [ "NNP" ], "Trace": [ "NNP" ], "Track": [ "NNP", "NN" ], "ambrosial": [ "JJ" ], "nestling": [ "NN" ], "Hernando": [ "NNP" ], "Tract": [ "NNP" ], "entomologist": [ "NN" ], "Tracy": [ "NNP" ], "superfluous": [ "JJ" ], "models": [ "NNS" ], "sunroof": [ "NN" ], "long-far": [ "NN" ], "Amos": [ "NNP" ], "Journal\\/NBC": [ "NNP" ], "Charley": [ "NNP" ], "Vadstena": [ "NNP" ], "Person": [ "NNP", "NN" ], "vestiges": [ "NNS" ], "Charles": [ "NNP" ], "Charlet": [ "NNP" ], "Bayanihan": [ "NNP" ], "pet": [ "NN", "VB", "JJ" ], "conferred": [ "VBN", "VBD" ], "Willam": [ "NNP" ], "renegotiating": [ "VBG" ], "irrigation": [ "NN" ], "hangovers": [ "NNS" ], "pep": [ "NN", "VB" ], "umbrage": [ "NN" ], "hay-shakers": [ "NNS" ], "disrepute": [ "NN" ], "skate": [ "VB" ], "asymptomatic": [ "JJ" ], "rose-tea": [ "NN" ], "millisecond": [ "NN" ], "bribes": [ "NNS" ], "Wee": [ "NNP" ], "Falmouth": [ "NNP" ], "obsessively": [ "RB" ], "reverting": [ "VBG" ], "recurrence": [ "NN" ], "bicycles": [ "NNS" ], "bribed": [ "VBD", "VBN" ], "atavistic": [ "JJ" ], "persevere": [ "VB", "VBP" ], "icing": [ "NN" ], "Everytime": [ "RB" ], "scoreboard": [ "NN" ], "Yield": [ "NNP", "NN" ], "Carvain": [ "NNP" ], "roundups": [ "NNS" ], "ellipsis": [ "NN" ], "Stratforde": [ "NNP" ], "fretting": [ "VBG" ], "Kai-shek": [ "NNP" ], "Rand": [ "NNP" ], "proto-oncogenes": [ "NN" ], "amoral": [ "JJ" ], "Fairing": [ "NN" ], "Rank": [ "NNP", "NN" ], "Peterpaul": [ "NNP" ], "Jansenist": [ "NNP" ], "Nicaraguans": [ "NNPS" ], "aviators": [ "NNS" ], "Text": [ "NN" ], "rate-increase": [ "JJ" ], "crony": [ "NN" ], "Maquilas": [ "NNP" ], "occurrence": [ "NN" ], "collage": [ "NN" ], "sigh": [ "NN", "VBP" ], "sign": [ "NN", "VBP", "VB" ], "adulation": [ "NN" ], "value-system": [ "NN" ], "Aganbegyan": [ "NNP" ], "anaconda": [ "NN" ], "Slemrod": [ "NNP" ], "parachuting": [ "VBG" ], "Associations": [ "NNP", "NNS", "NNPS" ], "Ballooning": [ "NN" ], "tartare": [ "NN" ], "jeopardy": [ "NN" ], "Westphalia": [ "NNP" ], "hamstringing": [ "VBG" ], "Epilady": [ "NNP" ], "scar": [ "NN" ], "irresolvable": [ "JJ" ], "Veselich": [ "NNP" ], "Equality": [ "NNP" ], "leaped": [ "VBD", "VBN" ], "AFRICA": [ "NNP" ], "over-simple": [ "JJ" ], "understanding": [ "NN", "VBG", "JJ" ], "Woman": [ "NNP", "NN" ], "Hoboken": [ "NNP" ], "sublease": [ "NN" ], "language-housekeeper": [ "JJ" ], "Emmy": [ "NN", "NNP" ], "BLOW": [ "NNP" ], "Rush-Presbyterian-St": [ "NNP" ], "nonelectrical": [ "JJ" ], "Memorials": [ "NNP" ], "stair": [ "NN" ], "One-armed": [ "JJ" ], "Alaouite": [ "JJ" ], "ineffective": [ "JJ" ], "automated-teller-machine": [ "JJ" ], "Doaty": [ "NNP" ], "Wixom": [ "NNP" ], "spurts": [ "NNS", "VBZ" ], "Zealander": [ "NNP" ], "cheek-to-jowl": [ "RB" ], "Morover": [ "JJR" ], "convenes": [ "VBZ" ], "DOG": [ "NN" ], "logical": [ "JJ" ], "DOE": [ "NNP" ], "poll-taker": [ "NN" ], "loquacity": [ "NN" ], "fake": [ "JJ", "NN", "VBP" ], "Atonement": [ "NN", "NNP" ], "DOS": [ "NNP" ], "flagging": [ "JJ", "VBG" ], "DOW": [ "NNP" ], "DOT": [ "NNP" ], "PLANTS": [ "NNS" ], "crammed": [ "VBN", "VBD" ], "Dershowitz": [ "NNP" ], "voices": [ "NNS", "VBZ" ], "Sarasota": [ "NNP" ], "wicker": [ "NN" ], "angry": [ "JJ" ], "Delayed": [ "JJ" ], "Sigler": [ "NNP" ], "wicket": [ "NN" ], "large-city": [ "JJ", "NN" ], "broken-down": [ "JJ" ], "enriched": [ "VBN" ], "wicked": [ "JJ" ], "scratched": [ "VBD", "VBN" ], "Poetics": [ "NNP" ], "Mortar": [ "NNP", "NN" ], "pollsters": [ "NNS" ], "Yocam": [ "NNP" ], "transoms": [ "NNS" ], "Marchese": [ "NNP" ], "Jimmy": [ "NNP" ], "scratches": [ "NNS" ], "Valhi": [ "NNP" ], "sieben": [ "FW" ], "Sintered": [ "VBN" ], "sanctified": [ "JJ" ], "hydrochloride": [ "NN" ], "Saga": [ "NNP", "NN" ], "pretend": [ "VB", "JJ" ], "Sage": [ "NNP" ], "Kegler": [ "NNP" ], "inflamed": [ "JJ", "VBD" ], "flannels": [ "NNS" ], "Prudhoe": [ "NNP" ], "Squier": [ "NNP" ], "pumpkin": [ "NN" ], "Newsweek": [ "NNP", "NN" ], "re-examination": [ "NN" ], "Slotnick": [ "NNP" ], "awesome": [ "JJ" ], "virgins": [ "NNS" ], "validly": [ "RB" ], "Broadview": [ "NNP" ], "allowed": [ "VBN", "JJ", "VB", "VBD" ], "stole": [ "VBD" ], "Medtronic": [ "NNP" ], "no-trade": [ "JJ" ], "savor": [ "VB" ], "dysgenic": [ "JJ" ], "Evenflo": [ "NNP" ], "tax-free.": [ "JJ" ], "undertook": [ "VBD" ], "encampment": [ "NN" ], "field-officials": [ "NNS" ], "federal-funds": [ "JJ" ], "misjudgments": [ "NNS" ], "wardens": [ "NNS" ], "ex-aides": [ "NNS" ], "yelp": [ "NN" ], "Peripherals": [ "NNPS", "NNP" ], "Hooch": [ "NNP" ], "revealed": [ "VBD", "JJ", "VBN" ], "golfers": [ "NNS" ], "Ozarks": [ "NNPS" ], "Literaturnaya": [ "NNP" ], "consequently": [ "RB" ], "nomadic": [ "JJ" ], "Probe": [ "NNP" ], "ordinarily": [ "RB" ], "st": [ "NN" ], "opinionated": [ "JJ" ], "so": [ "RB", "CC", "FW", "IN" ], "sl": [ "UH" ], "snowed": [ "VBD" ], "tutoring": [ "VBG", "NN" ], "se": [ "FW", "IN", "NN", "PRP" ], "drunken": [ "JJ" ], "augurs": [ "VBZ" ], "wrappin": [ "VBG" ], "privation": [ "NN" ], "status-roles": [ "NNS" ], "flips": [ "VBZ", "NNS" ], "care-adviser": [ "NN" ], "Magarrell": [ "NNP" ], "Nippur": [ "NN" ], "flagships": [ "NNS" ], "experiments": [ "NNS" ], "Perth": [ "NNP" ], "crowbait": [ "NN" ], "omitting": [ "VBG" ], "frequents": [ "VBZ" ], "razors": [ "NNS" ], "Paray": [ "NNP" ], "bulldoze": [ "VB" ], "drunker": [ "JJR" ], "lovelies": [ "NNS" ], "Swifts": [ "NNPS" ], "sacrosanct": [ "JJ" ], "tore": [ "VBD", "VBN" ], "constituted": [ "VBD", "VBN" ], "avid": [ "JJ" ], "tellingly": [ "RB" ], "internationally": [ "RB" ], "how": [ "WRB" ], "torn": [ "VBN", "JJ" ], "Greylag": [ "NNP" ], "sylvan": [ "JJ" ], "tort": [ "NN" ], "April-June": [ "NNP" ], "suspicion": [ "NN" ], "Pandick": [ "NNP" ], "foreign-aid": [ "NN", "JJ" ], "Arguably": [ "RB" ], "televison": [ "NN" ], "Stabbert": [ "NNP" ], "limbo": [ "NN" ], "Asilomar": [ "NNP" ], "TCMP": [ "NNP" ], "hop": [ "NN", "VB" ], "Choices": [ "NNS", "NNPS" ], "Mideastern": [ "JJ" ], "dance-theatre": [ "JJ" ], "symposium": [ "NN" ], "equipment-packed": [ "JJ" ], "Rockettes": [ "NNPS" ], "reckoning": [ "NN", "VBG" ], "tipoff": [ "NN" ], "shouted": [ "VBD", "VBN" ], "Simulator": [ "NNP" ], "Lazzeri": [ "NNP" ], "roasts": [ "NNS" ], "Macbeth": [ "NNP" ], "now-shuttered": [ "JJ" ], "cropping": [ "VBG" ], "Preti": [ "NNP" ], "Pretl": [ "NNP" ], "suffixes": [ "NNS" ], "photocathode": [ "NN" ], "Vitzhum": [ "NNP" ], "Department-sponsored": [ "JJ" ], "Shared": [ "NNP" ], "Learned": [ "NNP", "VBD" ], "suhthuhn": [ "JJ" ], "EARTHQUAKE": [ "NN" ], "accordion-folding": [ "JJ" ], "rioters": [ "NNS" ], "Sauce": [ "NNP" ], "I.P.": [ "NNP" ], "squared": [ "JJ", "VBD", "VBN" ], "abide": [ "VB", "VBP" ], "navels": [ "NNS" ], "investigation": [ "NN" ], "Ghostbusters": [ "NNS", "NNP" ], "Article": [ "NN", "NNP" ], "squares": [ "NNS" ], "dilemmas": [ "NN", "NNS" ], "demoralization": [ "NN" ], "recalculating": [ "VBG" ], "Enichem": [ "NNP" ], "Meynell": [ "NNP" ], "cooperatively": [ "RB" ], "palatial": [ "JJ" ], "Provigo": [ "NNP" ], "recordings": [ "NNS" ], "McCaw": [ "NNP", "NN" ], "bumpy": [ "JJ" ], "poems": [ "NNS" ], "Westfield": [ "NNP" ], "scarred": [ "JJ", "VBN" ], "Whampoa": [ "NNP" ], "patronage": [ "NN" ], "gilts": [ "NNS" ], "councilwoman": [ "NN" ], "Ballon": [ "NNP" ], "Pritzker": [ "NNP", "JJR" ], "Deficiency": [ "NNP" ], "vociferousness": [ "NN" ], "footwear": [ "NN" ], "Ballot": [ "NN" ], "Ballou": [ "NNP" ], "err": [ "VBP", "VB" ], "Ortiz": [ "NNP" ], "Balts": [ "NNPS" ], "guardhouse": [ "NN" ], "reinvestigation": [ "NN" ], "shareholder-payout": [ "JJ" ], "open": [ "JJ", "VBP", "NN", "RB", "RP", "VB" ], "second-level": [ "JJ" ], "ripping": [ "VBG" ], "partook": [ "VBP" ], "boulevard": [ "NN" ], "home-blend": [ "NN" ], "convent": [ "NN" ], "franchisor": [ "NN" ], "Hmpf": [ "UH" ], "Hmm": [ "NN", "UH" ], "Daremblum": [ "NNP" ], "shiver": [ "NN", "VB" ], "brevity": [ "NN" ], "deglycerolized": [ "VBN" ], "convene": [ "VB", "VBP" ], "begotten": [ "VBN" ], "infected": [ "VBN", "VBD", "JJ", "VBN|JJ" ], "Paluck": [ "NNP" ], "pre-Christmas": [ "JJ" ], "Goodbody": [ "NNP" ], "homemade": [ "JJ" ], "preprepared": [ "VBN" ], "Moineau": [ "NNP" ], "illusionist": [ "NN" ], "raccoon-skin": [ "JJ" ], "fooled": [ "VBN" ], "hyperplasia": [ "NN" ], "iceberg": [ "NN" ], "favors": [ "VBZ", "NNS" ], "folly": [ "NN" ], "typography": [ "NN" ], "Lester": [ "NNP" ], "once-exploding": [ "JJ" ], "coats": [ "NNS" ], "Suiza": [ "NNP" ], "individualized": [ "JJ", "VBN" ], "top-ranked": [ "JJ" ], "favore": [ "FW" ], "addressing": [ "VBG" ], "unadited": [ "JJ", "VBN" ], "veracity": [ "NN" ], "shipowners": [ "NNS" ], "Baullari": [ "NNP" ], "argument": [ "NN" ], "Poesy": [ "NN" ], "spender": [ "NN" ], "Creme": [ "NNP" ], "Nichias": [ "NNP" ], "horsepower": [ "NN" ], "JAGRY": [ "NNP" ], "Idaho": [ "NNP" ], "law.": [ "NN" ], "Rehnquist": [ "NNP" ], "Simmonsville": [ "NNP" ], "Nyunt": [ "NNP" ], "Congregation": [ "NNP" ], "management-information": [ "JJ", "NN" ], "blinding": [ "JJ", "VBG" ], "adjusting": [ "VBG", "NN" ], "ironically": [ "RB" ], "Quinn": [ "NNP" ], "backyards": [ "NNS" ], "staffed": [ "VBN" ], "TIMES": [ "NNP" ], "pay-television": [ "NN" ], "Anker": [ "NNP" ], "crochet": [ "VB" ], "Prescott": [ "NNP" ], "winters": [ "NNS" ], "Auditorium": [ "NNP" ], "Erasing": [ "VBG" ], "photochemical": [ "JJ" ], "lawn": [ "NN" ], "Well-educated": [ "JJ" ], "Beghin": [ "NNP" ], "Vallecas": [ "NNP" ], "nonlethal": [ "JJ" ], "Scattered": [ "VBN" ], "adult-training": [ "JJ" ], "metalworking": [ "NN" ], "conservatively-cravated": [ "JJ" ], "versa": [ "RB", "FW" ], "three-mile": [ "JJ" ], "cancer-causing": [ "JJ" ], "low-base-price": [ "JJ" ], "laws": [ "NNS" ], "Jacki": [ "NNP" ], "lexical": [ "JJ" ], "murmurs": [ "VBZ" ], "CF6-6": [ "NNP", "NN" ], "opportunist": [ "NN" ], "babbled": [ "VBD" ], "Balladur": [ "NNP" ], "merit": [ "NN", "VB", "VBP" ], "opportunism": [ "NN" ], "underbedding": [ "NN" ], "Roland": [ "NNP" ], "Comvik": [ "NNP" ], "Magten": [ "NNP" ], "parsimony": [ "NN" ], "Trelleborg": [ "NNP" ], "democratization": [ "NN" ], "re-emphasizing": [ "VBG" ], "Indirectly": [ "RB" ], "debunk": [ "VB" ], "unplagued": [ "VBN" ], "state-centered": [ "JJ" ], "Edith": [ "NNP" ], "rephrase": [ "VB" ], "altercation": [ "NN" ], "lifeguard": [ "NN" ], "management-pilots": [ "JJ" ], "psychiatrist": [ "NN" ], "assistant": [ "NN", "JJ" ], "freezing": [ "VBG", "JJ", "NN" ], "Listeners": [ "NNS" ], "Bunker": [ "NNP" ], "complex-valued": [ "JJ" ], "reserve-draining": [ "JJ" ], "Pontiff": [ "NNP" ], "Euro-cards": [ "NNS" ], "resource": [ "NN" ], "hypoadrenocorticism": [ "NN" ], "hinges": [ "NNS", "VBZ" ], "parasitic": [ "JJ" ], "priest": [ "NN" ], "Hound": [ "NNP" ], "hinged": [ "VBN" ], "orchids": [ "NNS" ], "Patricio": [ "NNP" ], "nouveaux": [ "FW" ], "artistically": [ "RB" ], "Optek": [ "NNP" ], "Patricia": [ "NNP" ], "redcoats": [ "NNS" ], "Batallion": [ "NNP" ], "R.,Vitro": [ "NNP" ], "anyways": [ "UH" ], "Ashtabula": [ "NN", "NNP" ], "heifers": [ "NNS" ], "Hendricks": [ "NNP" ], "yuse": [ "NN" ], "Egalitarianism": [ "NNP" ], "Kan.": [ "NNP" ], "misappropriated": [ "VBD", "VBN" ], "Gulbuddin": [ "NNP" ], "That": [ "DT", "NNP", "PDT", "IN", "RB", "WP", "WDT" ], "ostensibly": [ "RB" ], "Thay": [ "NN" ], "sites": [ "NNS" ], "fierceness": [ "NN" ], "Elmhurst": [ "NNP" ], "Twentieth": [ "NNP" ], "Thad": [ "NNP" ], "Thai": [ "NNP", "JJ" ], "Turnout": [ "NN" ], "Than": [ "IN" ], "molds": [ "NNS" ], "Thal": [ "NNP" ], "panache": [ "NN" ], "vertical": [ "JJ", "NN" ], "apparition": [ "NN" ], "Securities": [ "NNPS", "NNP", "NNS", "VBP" ], "capitalistic": [ "JJ" ], "recitation": [ "NN" ], "concentrate": [ "VB", "VBP", "NN" ], "Tjokorda": [ "NNP" ], "Kann": [ "NNP" ], "Kano": [ "NNP" ], "mans": [ "VBZ" ], "raddled": [ "VBN" ], "Kane": [ "NNP" ], "mana": [ "NN" ], "mane": [ "NN" ], "unamortized": [ "JJ" ], "Kant": [ "NNP" ], "Barberton": [ "NNP" ], "Whatman": [ "NNP" ], "mano": [ "NN" ], "Preferably": [ "RB" ], "Timberlake": [ "NNP" ], "hurts": [ "VBZ" ], "adjudication": [ "NN" ], "very-highly": [ "JJ" ], "Morbid": [ "JJ" ], "Ivern": [ "NNP" ], "FSX": [ "NNP" ], "dolt": [ "NN" ], "Rivoli": [ "FW" ], "H.M.S.S.": [ "NNP" ], "caring": [ "VBG", "JJ", "NN" ], "swashbuckling": [ "JJ" ], "sorely-needed": [ "JJ" ], "Stowey": [ "NNP" ], "Medieval": [ "NNP", "JJ" ], "Flash": [ "NN" ], "recaptured": [ "VBN" ], "bereavements": [ "NNS" ], "concede": [ "VBP", "VB" ], "damping": [ "VBG", "JJ" ], "Tetris": [ "NN" ], "prototype": [ "NN", "JJ" ], "reflex": [ "NN", "JJ" ], "hilarity": [ "NN" ], "enable": [ "VB", "VBP" ], "gist": [ "NN" ], "centerpiece": [ "NN" ], "turtleneck": [ "NN" ], "half-a-million": [ "JJ" ], "Analysts": [ "NNS", "NNP" ], "antiquarian": [ "JJ" ], "nonqualified": [ "VBN" ], "diffuse": [ "JJ", "VB" ], "sharpshooters": [ "NNS" ], "Spiritual": [ "JJ" ], "profane": [ "JJ" ], "non-issue": [ "NN" ], "polls": [ "NNS", "VBZ" ], "end-use": [ "JJ" ], "Supplementary": [ "NNP" ], "Wyeth": [ "NNP" ], "spotlight": [ "NN", "VB" ], "aerosolized": [ "VBN" ], "Album": [ "NN", "NNP" ], "grown-ups": [ "NNS" ], "Cooking": [ "NNP" ], "gritty-eyed": [ "JJ" ], "Takanori": [ "NNP" ], "pinks": [ "NNS" ], "ivy": [ "NN" ], "Rolodexes": [ "NNPS" ], "binary": [ "JJ" ], "expenditures": [ "NNS", "VBZ" ], "missiles": [ "NNS" ], "Latest-quarter": [ "JJ" ], "prevail": [ "VB", "VBP" ], "wiring": [ "NN", "VBG" ], "Rafferty": [ "NNP" ], "Cerus": [ "NNP" ], "mouldering": [ "VBG" ], "Tobruk": [ "NNP" ], "non-contact": [ "JJ" ], "licit": [ "JJ" ], "black-robed": [ "JJ" ], "barbed": [ "JJ", "VBN" ], "Seto": [ "NNP" ], "boosted": [ "VBD", "VBN" ], "Escape": [ "NNP", "NN", "VB" ], "Risparmio": [ "NNP" ], "much-copied": [ "JJ" ], "fowl": [ "NN" ], "barber": [ "NN" ], "Commonly": [ "RB" ], "extern": [ "NN" ], "recapture": [ "VB", "NN" ], "booster": [ "NN" ], "LIVESTOCK": [ "NNP", "NN" ], "Buser": [ "NNP" ], "customized": [ "VBN", "JJ" ], "clobber": [ "VB" ], "ringer": [ "NN" ], "quixotic": [ "JJ" ], "Milwaukee": [ "NNP" ], "earthquake-trained": [ "JJ" ], "petroleum-products": [ "NNS" ], "Gramm-Rudman": [ "NNP" ], "HBO": [ "NNP" ], "Minneapolis-St": [ "NNP" ], "HBJ": [ "NNP" ], "robing": [ "NN" ], "safeguards": [ "NNS" ], "fateful": [ "JJ" ], "Smuzynski": [ "NNP" ], "presumption": [ "NN" ], "pastoris": [ "NN" ], "ex-President": [ "NNP", "JJ" ], "jarred": [ "VBD", "VBN" ], "Shugart": [ "NNP" ], "Tattingers": [ "NNPS" ], "Regnery": [ "NNP" ], "Separation": [ "NN" ], "unviable": [ "JJ" ], "family-planning": [ "JJ", "NN" ], "Altama": [ "NNP" ], "starving": [ "VBG", "JJ" ], "HOFI": [ "NNP" ], "around": [ "IN", "RB", "RP", "RB|RP" ], "delinquencies": [ "NNS" ], "scurrying": [ "VBG" ], "Baltic": [ "JJ", "NNP" ], "breakage": [ "NN" ], "Pricor": [ "NNP" ], "MGM\\": [ "NNP" ], "cuff-like": [ "JJ" ], "inexplicably": [ "RB" ], "Neiman": [ "NNP" ], "direct-mail": [ "JJ", "NN" ], "Notwithstanding": [ "IN" ], "inter": [ "FW", "IN" ], "kennel": [ "NN" ], "Recognition": [ "NNP", "NN" ], "Matsushita": [ "NNP" ], "RALLIED": [ "VBD" ], "explaining": [ "VBG", "VBG|NN" ], "conditional": [ "JJ", "NN" ], "lobster": [ "NN" ], "blood-specked": [ "JJ" ], "perpetrators": [ "NNS" ], "Komleva": [ "NNP" ], "Furnace": [ "NN" ], "revenue-neutral": [ "JJ" ], "MacLeishes": [ "NNPS" ], "composers": [ "NNS" ], "moon-round": [ "JJ" ], "memories": [ "NNS" ], "grand-looking": [ "JJ" ], "Danubian": [ "JJ" ], "corrosive": [ "JJ" ], "Huricane": [ "NNP" ], "M.D.": [ "NNP", "NN" ], "brats": [ "NNS" ], "Totten": [ "NNP" ], "UnionFed": [ "NNP" ], "computer-aided-design": [ "JJ" ], "transformers": [ "NNS" ], "Freudenberger": [ "NNP" ], "Embryos": [ "NNS" ], "Expanded": [ "VBN" ], "Aswara": [ "NNP" ], "pluralist": [ "NN" ], "pluralism": [ "NN" ], "undercuts": [ "VBZ" ], "Rosewood": [ "NNP" ], "Serge": [ "NNP" ], "cozy": [ "JJ", "RB" ], "fifth-highest": [ "JJ" ], "origins": [ "NNS" ], "swarms": [ "NNS" ], "legerdemain": [ "NN" ], "Mozambique": [ "NNP" ], "Terminator": [ "NNP" ], "slights": [ "NNS" ], "starry-eyed": [ "JJ" ], "slighty": [ "NN" ], "Stimson": [ "NNP" ], "shied": [ "VBD", "VBN" ], "less-visible": [ "JJ" ], "Magnus": [ "NNP" ], "headsets": [ "NNS" ], "Away": [ "RB", "NNP", "IN" ], "legged": [ "JJ" ], "screws": [ "NNS" ], "fishes": [ "NNS", "VBZ" ], "whim": [ "NN" ], "homeless": [ "JJ", "NN" ], "shies": [ "VBZ" ], "Magnum": [ "NN", "NNP" ], "Plain-vanilla": [ "JJ" ], "Estonians": [ "NNPS" ], "dawned": [ "VBD" ], "Mahayanist": [ "NN" ], "hev": [ "VB" ], "BAROMETER": [ "NN" ], "her": [ "PRP$", "PRP", "PRP$R" ], "ever-increasing": [ "JJ" ], "bristles": [ "VBZ", "NNS" ], "Heiwado": [ "NNP" ], "hex": [ "NN" ], "hey": [ "UH" ], "Iliad": [ "NNP" ], "Veille": [ "NNP" ], "over-broad": [ "JJ" ], "hel": [ "NN" ], "hem": [ "NN" ], "hen": [ "NN" ], "bristled": [ "VBD" ], "Englewood": [ "NNP" ], "verbatim": [ "RB", "JJ" ], "Mahfouz": [ "NNP" ], "Fosterite": [ "NNP" ], "U.S.Japan": [ "JJ" ], "handsome": [ "JJ" ], "underdressed": [ "JJ" ], "rescuing": [ "VBG" ], "House": [ "NNP", "JJ", "NN" ], "rhu-beb": [ "NN" ], "browbeaten": [ "VBN" ], "mid-engine": [ "JJ" ], "Soares-Kemp": [ "NNP" ], "telepathic": [ "JJ" ], "invigorating": [ "VBG" ], "trend-followers": [ "NNS" ], "credit-policy": [ "NN" ], "Thursday": [ "NNP" ], "Estee": [ "NNP" ], "lairs": [ "NNS" ], "low-profile": [ "JJ" ], "Estep": [ "NNP" ], "appalling": [ "JJ" ], "whit": [ "NN" ], "allocator": [ "NN" ], "water-filled": [ "JJ" ], "monsieur": [ "NN" ], "Kidnapper": [ "NN" ], "Glazer-Fine": [ "NNP" ], "Segalas": [ "NNP" ], "querulous": [ "JJ" ], "solaced": [ "VBN" ], "deterrant": [ "JJ" ], "ice-cold": [ "NN" ], "misplace": [ "VB" ], "Employees": [ "NNS", "NNP", "NNPS" ], "crack-induced": [ "JJ" ], "Thurow": [ "NNP" ], "midsize": [ "JJ" ], "Aspen": [ "NNP" ], "paint-recycling": [ "JJ" ], "resell": [ "VB", "VBP", "JJ" ], "Coolidges": [ "NNPS", "NNP" ], "rostrum": [ "NN" ], "Soviet-Finnish": [ "JJ" ], "grand-daughter": [ "NN" ], "Leighfield": [ "NNP" ], "mask": [ "NN", "VBP", "VB" ], "clowning": [ "NN" ], "mash": [ "NN", "VB" ], "mast": [ "NN" ], "mass": [ "NN", "JJ", "RB", "VB" ], "inter-exchange": [ "JJ" ], "Zeitung": [ "NNP" ], "sin": [ "NN", "VBP", "VB" ], "Hinzack": [ "NNP" ], "axles": [ "NNS" ], "birdcage": [ "NN" ], "bosoms": [ "NNS" ], "triptych": [ "NN" ], "recapturing": [ "VBG" ], "gate-post": [ "NN" ], "anti-rejection": [ "JJ" ], "minicar": [ "NN" ], "Vincent": [ "NNP" ], "evicted": [ "VBN" ], "sleazebag": [ "NN" ], "Jean-Honore": [ "NNP" ], "Rickel": [ "NNP" ], "Hafetz": [ "NNP" ], "levee": [ "NN" ], "Harper": [ "NNP" ], "chewing": [ "VBG", "JJ", "NN" ], "asterisks": [ "NNS" ], "Entries": [ "NNS" ], "uncounted": [ "JJ" ], "Rickey": [ "NNP" ], "degeneration": [ "NN" ], "appointment": [ "NN" ], "overpowered": [ "VBN", "VBD" ], "Honotassa": [ "NNP" ], "wavers": [ "NNS" ], "detention": [ "NN" ], "documentaries": [ "NNS" ], "diary": [ "NN" ], "ex-player": [ "NN" ], "Mitofsky": [ "NNP" ], "showings": [ "NNS" ], "CHILDREN": [ "NNS" ], "often-repeated": [ "JJ" ], "Vivaldi": [ "NNP" ], "HOUSE": [ "NNP" ], "EXPRESS": [ "NNP" ], "dodged": [ "VBD", "VBN" ], "nine-press": [ "NN" ], "deftness": [ "NN" ], "no-inflation": [ "JJ", "NN" ], "harry": [ "VB" ], "sea-food": [ "NN" ], "Woodin": [ "NNP" ], "son-of-a-bitch": [ "NN" ], "pigskin": [ "NN" ], "Heinemann": [ "NNP" ], "Candu": [ "NNP" ], "discriminates": [ "NNS", "VBZ" ], "interpretor": [ "NN" ], "bond-holders": [ "NNS" ], "material-management": [ "NN" ], "discriminated": [ "VBD", "JJ", "NN", "VB" ], "Kangyo": [ "NNP" ], "Sylvio": [ "NNP" ], "Ifint": [ "NNP" ], "product-design": [ "JJ" ], "query": [ "NN" ], "Sylvia": [ "NNP" ], "crests": [ "NNS" ], "F-20s": [ "NNPS" ], "Rossilini": [ "NNP" ], "hormonal": [ "JJ" ], "misrouted": [ "VBN" ], "Restraint": [ "NNP" ], "Weichern": [ "NNP" ], "auto-financing": [ "NN" ], "whirled": [ "VBD" ], "lower-than-expected": [ "JJ" ], "Karolinska": [ "NNP" ], "immiserated": [ "JJ" ], "sentient": [ "JJ", "NN" ], "prestige-sentitive": [ "JJ" ], "Herald": [ "NNP" ], "Luthringshausen": [ "NNP" ], "Latvian": [ "JJ", "NNP" ], "Nonmagical": [ "NNP" ], "Feathertop": [ "NNP" ], "welded": [ "VBN" ], "transposed": [ "VBN" ], "Cone": [ "NNP" ], "Cong": [ "NNP" ], "reactors": [ "NNS" ], "Conn": [ "NNP" ], "somewhat-ambiguous": [ "JJ" ], "non-police": [ "JJ" ], "Licks": [ "NNP" ], "reacquired": [ "VBN" ], "software-industry": [ "JJ" ], "non-flight": [ "JJ" ], "flatland": [ "NN" ], "homilies": [ "NNS" ], "expends": [ "VBZ" ], "spooned": [ "VBD" ], "Cardinal": [ "NNP", "JJ" ], "beheld": [ "VBD" ], "pulls": [ "VBZ", "NNS" ], "Varnessa": [ "NNP" ], "Medmenham": [ "NNP" ], "Fragin": [ "NNP" ], "cowpox": [ "NN" ], "less-intrusive": [ "JJ" ], "Ovalle": [ "NNP" ], "Varese": [ "NNP" ], "sitter": [ "NN" ], "amassing": [ "NN", "VBG" ], "ballad": [ "NN" ], "one-for-one": [ "JJ" ], "check-ups": [ "NNS" ], "a\\/k\\/a": [ "NN" ], "still-daylighted": [ "JJ" ], "sports-oriented": [ "JJ" ], "foundations": [ "NNS" ], "meat-packing": [ "JJ", "NN" ], "Neumann": [ "NNP" ], "midstream": [ "NN" ], "Nessel": [ "NNP" ], "Nessen": [ "NNP" ], "railroading": [ "VBG" ], "facelift": [ "NN" ], "unvaryingly": [ "RB" ], "Schlitz": [ "NNP" ], "merveilleux": [ "FW" ], "prompt": [ "VB", "JJ", "VBP" ], "soak-the-rich": [ "JJ" ], "off-the-books": [ "JJ" ], "Cautious": [ "JJ" ], "cross-licensing": [ "NN", "JJ" ], "implausibly": [ "RB" ], "Jackals": [ "NNS" ], "Marschalk": [ "NNP" ], "Dhabi": [ "NNP" ], "burgs": [ "NNS" ], "Basses": [ "NNPS" ], "frivolously": [ "RB" ], "att": [ "IN" ], "glowing": [ "VBG", "JJ|VBG", "JJ" ], "artery-pulmonary": [ "NN" ], "Measures": [ "NNS" ], "relinquished": [ "VBD", "VBN" ], "womb-leasing": [ "NN" ], "half-century": [ "NN", "JJ" ], "sq": [ "JJ" ], "perversely": [ "RB" ], "second-tier": [ "JJ" ], "Baslot": [ "NNP" ], "three-men-and-a-helper": [ "JJ" ], "blotted": [ "VBD", "VBN" ], "Flags": [ "NNS", "NNP" ], "waver": [ "VBP", "NN", "VB" ], "waves": [ "NNS" ], "ethics": [ "NNS", "NN" ], "Helpless": [ "NNP", "JJ" ], "SKIES": [ "NNS" ], "sp": [ "NN" ], "decontaminated": [ "VBN" ], "refuse": [ "VB", "VBP", "NN" ], "rustlers": [ "NNS" ], "Conditions": [ "NNS" ], "ADMITTED": [ "VBD" ], "Elfner": [ "NNP" ], "inquire": [ "VB" ], "Mid-America": [ "NNP" ], "M-m-m": [ "UH" ], "Sophoclean": [ "NNP" ], "functionaries": [ "NNS" ], "Confutatis": [ "FW" ], "Sea-road": [ "NN" ], "Kronenberger": [ "NNP" ], "grasshoppers": [ "NNS" ], "JFK": [ "NNP" ], "Atwood": [ "NNP" ], "mud-sweat-and-tears": [ "JJ" ], "furthering": [ "VBG" ], "Sotela": [ "NNP" ], "mousse": [ "NN" ], "distortion": [ "NN" ], "implausible": [ "JJ" ], "Dixon": [ "NNP" ], "stealin": [ "VBG" ], "astrology": [ "NN" ], "laced": [ "VBN", "VBD", "JJ" ], "roemer": [ "NN" ], "termed": [ "VBD", "VBN" ], "telegraphic-transfer": [ "JJ" ], "guillotine": [ "NN" ], "conjugation": [ "NN" ], "Oberstar": [ "NNP" ], "anti-European": [ "JJ" ], "laces": [ "NNS" ], "zippo": [ "NN" ], "crysanthemum": [ "NN" ], "lacey": [ "JJ", "NN" ], "tentatively": [ "RB" ], "Grammar": [ "NNP" ], "Theirs": [ "JJ", "PRP" ], "transbay": [ "JJ" ], "anti-hooligan": [ "JJ" ], "Michael": [ "NNP" ], "salamander": [ "NN" ], "Quadrant": [ "NNP" ], "speculate": [ "VB", "VBP" ], "professional-level": [ "JJ" ], "homogenize": [ "VB" ], "trans-Atlantic": [ "JJ", "NNP" ], "hereafter": [ "RB" ], "Eagleburger": [ "NNP" ], "nauseous": [ "JJ" ], "Resistance": [ "NNP", "NN" ], "unsprayed": [ "VBN" ], "REGULATIONS": [ "NNS" ], "Petroles": [ "NNP" ], "found": [ "VBD", "VBN", "VB" ], "shambling": [ "VBG" ], "dosed": [ "VBN", "VBD" ], "safaris": [ "NNS" ], "Rose": [ "NNP" ], "reduce": [ "VB", "VBP" ], "Rosa": [ "NNP" ], "Forest-products": [ "NNS" ], "jellies": [ "NNS" ], "Rosy": [ "NNP" ], "doses": [ "NNS" ], "Rost": [ "NNP" ], "leadership-sanctioned": [ "JJ" ], "KangaROOS": [ "NNP" ], "penicillin": [ "NN" ], "Ross": [ "NNP" ], "embattled": [ "JJ", "VBN" ], "Publicly": [ "RB" ], "Rimes": [ "NNP" ], "Gander": [ "NNP" ], "Durlach": [ "NNP" ], "tele-processing": [ "JJ" ], "Launches": [ "VBZ" ], "nuclear-power": [ "JJ", "NN" ], "meteorological": [ "JJ" ], "salute": [ "NN", "VB" ], "Eskimos": [ "NNPS" ], "belief": [ "NN" ], "demure": [ "JJ" ], "sublimed": [ "VBN" ], "confidence": [ "NN" ], "belies": [ "VBZ" ], "qualify": [ "VB", "VBP" ], "conditioning": [ "NN", "VBG" ], "housebound": [ "JJ" ], "clique": [ "NN" ], "WESTWOOD": [ "NNP" ], "owners": [ "NNS" ], "Younis": [ "NNP" ], "spike-haired": [ "JJ" ], "Oopsie-Cola": [ "NNP" ], "Years": [ "NNS", "NNP", "NNPS" ], "reorganization-plan": [ "JJ" ], "sensations": [ "NNS" ], "longneck": [ "JJ" ], "cyanide": [ "NN" ], "castle": [ "NN" ], "warheads": [ "NNS" ], "Imhoff": [ "NNP" ], "Verplanck": [ "NNP" ], "rooted": [ "VBN", "JJ" ], "belligerent": [ "JJ" ], "Oxytetracycline": [ "NN" ], "Reverend": [ "NNP" ], "IFIL": [ "NNP" ], "sacrificial": [ "JJ" ], "DREXEL": [ "NNP" ], "Chesterton": [ "NNP" ], "unpleased": [ "VBN" ], "Hopei": [ "NNP" ], "guest": [ "NN", "JJ" ], "Rude": [ "NNP", "JJ" ], "Rudi": [ "NNP" ], "month-old": [ "JJ" ], "Brigantine": [ "NNP" ], "omnipresent": [ "JJ" ], "Elmsford": [ "NNP" ], "Plantations": [ "NNS", "NNPS", "NNP" ], "crow": [ "NN", "VB" ], "Hopes": [ "NNS" ], "Rudy": [ "NNP" ], "intra-state": [ "JJ" ], "warmly": [ "RB" ], "Clarkson": [ "NNP" ], "lavished": [ "VBD", "VBN" ], "Straightened": [ "VBN" ], "satirical": [ "JJ" ], "crop": [ "NN", "RP", "VB", "VBP" ], "Dumont": [ "NNP" ], "endlessly": [ "RB" ], "REBUFF": [ "NN" ], "thawing": [ "VBG" ], "non-democratic": [ "JJ" ], "polarized": [ "VBN" ], "worktable": [ "NN" ], "Mantle": [ "NNP", "NN" ], "Pichia": [ "NN" ], "layouts": [ "NNS" ], "runners-up": [ "NNS" ], "MetWest": [ "NNP" ], "TUCSON": [ "NNP" ], "Floats": [ "VBZ" ], "shellfish": [ "NN", "NNS" ], "railroader": [ "NN" ], "teensy": [ "JJ" ], "suffocating": [ "VBG", "JJ" ], "fieldstone": [ "NN" ], "canceling": [ "VBG" ], "beforehand": [ "RB" ], "pedestrian": [ "JJ", "NN" ], "George-Creque": [ "NNP" ], "Overnite": [ "NNP" ], "freakishly": [ "RB" ], "hand-sized": [ "JJ" ], "Comique": [ "NNP" ], "Dobbins": [ "NNP" ], "Micronic": [ "NNP" ], "knobs": [ "NNS" ], "three-part": [ "JJ" ], "thyroid-stimulating": [ "JJ", "NN" ], "nontrade": [ "NN" ], "kneecap": [ "NN" ], "eagle-eyed": [ "JJ" ], "yearbooks": [ "NNS" ], "Underscoring": [ "VBG" ], "monastery": [ "NN" ], "under-three-years": [ "JJ" ], "affordability": [ "NN" ], "securities-law": [ "NN", "JJ" ], "darts": [ "NN", "NNS" ], "Yaklin": [ "NNP" ], "Harpo": [ "NNP" ], "women-owned": [ "JJ" ], "Counsel/NNP...": [ ":" ], "Roussel-Uclaf": [ "NNP" ], "lessons": [ "NNS" ], "dragger": [ "NN" ], "majoritarian": [ "JJ" ], "actionable": [ "JJ" ], "Cost": [ "NN", "NNP" ], "herniated": [ "VBN" ], "Honduran": [ "JJ" ], "dragged": [ "VBN", "VBD" ], "Prapas": [ "NNP" ], "chowder": [ "NN" ], "Braque": [ "NNP" ], "cruiser": [ "NN" ], "cruises": [ "NNS" ], "Drenched": [ "JJ" ], "Freon": [ "NN", "NNP" ], "secretaries": [ "NNS" ], "lengthwise": [ "RB", "JJ" ], "Wedel": [ "NNP" ], "freight": [ "NN", "VB" ], "Man-Made": [ "JJ" ], "Fatal": [ "NNP" ], "elswehere": [ "NN" ], "Fatah": [ "NNP", "NN" ], "pre-existent": [ "JJ" ], "Exports": [ "NNS", "NNPS" ], "Southerner": [ "NNP", "JJ", "NN" ], "Cie.": [ "NNP" ], "dwindled": [ "VBD", "VBN" ], "Istel": [ "NNP" ], "writer": [ "NN" ], "clothesline": [ "NN" ], "competently": [ "RB" ], "aqua-lung": [ "NN" ], "enzyme": [ "NN" ], "Pitfalls": [ "NNS" ], "Arundel": [ "NNP" ], "Travellers": [ "NNS" ], "Confederate": [ "NNP", "JJ", "NN" ], "hush-hush": [ "JJ" ], "cholinesterase": [ "NN" ], "Lanesmanship": [ "NN" ], "Defense": [ "NNP", "NN" ], "downpour": [ "NN" ], "Danube": [ "NNP" ], "banned": [ "VBN", "VBD" ], "January-March": [ "NNP" ], "Slocum": [ "NNP" ], "Fas-antigen": [ "NN" ], "Tarkington": [ "NNP" ], "Code": [ "NNP" ], "Atomics\\/Combustion": [ "NNP" ], "banner": [ "NN" ], "quizzed": [ "VBD" ], "deductive": [ "JJ" ], "enemy": [ "NN" ], "Gruller": [ "NNP" ], "radiation-protection": [ "JJ" ], "Suzman": [ "NNP" ], "Coda": [ "NNP" ], "carbines": [ "NNS" ], "Haynes": [ "NNP" ], "Cananea": [ "NNP" ], "Arizona-related": [ "JJ" ], "compressibility": [ "NN" ], "Plasti-Bars": [ "NNP" ], "McCormack": [ "NNP" ], "unqualifiedly": [ "RB" ], "largesse": [ "NN", "VB" ], "eradicating": [ "VBG" ], "re-edited": [ "VBN" ], "startup": [ "NN", "JJ" ], "potent": [ "JJ" ], "correspondent": [ "NN" ], "backfire": [ "VB", "VBP" ], "gas-turbine": [ "JJ" ], "contour": [ "NN" ], "baritone": [ "NN", "JJ" ], "sliding-rate": [ "JJ" ], "Sibling": [ "NN" ], "guinea": [ "NN" ], "demons": [ "NNS" ], "weapons-control": [ "JJ" ], "Ilona": [ "NNP" ], "Idris": [ "NNP" ], "prodigally": [ "RB" ], "viciousness": [ "NN" ], "black-haired": [ "JJ" ], "Viva": [ "FW" ], "screeched": [ "VBD" ], "candor": [ "NN" ], "Vive": [ "FW" ], "enclosures": [ "NNS" ], "stretcher": [ "NN" ], "Mezzanine": [ "NNP" ], "Browning": [ "NNP" ], "Martinsek": [ "NNP" ], "Kobacker": [ "NNP" ], "respondents": [ "NNS" ], "death": [ "NN" ], "screeches": [ "NNS", "VBZ" ], "diminution": [ "NN" ], "Weickerian": [ "JJ" ], "Leona": [ "NNP" ], "Leong": [ "NNP" ], "Leone": [ "NNP" ], "preponderantly": [ "RB" ], "Jason": [ "NNP" ], "Carena": [ "NNP" ], "Pittenger": [ "NNP" ], "Brawer": [ "NNP" ], "Declines": [ "NNS" ], "Merighi": [ "NNP" ], "Todd": [ "NNP" ], "messiah": [ "NN" ], "accomplice": [ "NN" ], "farm-supply": [ "JJ" ], "Irelands": [ "NNP" ], "Stocks\\/Mutual": [ "NNP" ], "Nobel": [ "NNP" ], "Duriron": [ "NNP" ], "frosty": [ "JJ" ], "U.S.-Mexican": [ "JJ", "NNP" ], "Reuling": [ "NNP" ], "Harwood": [ "NNP" ], "Plews": [ "NNP" ], "Rousseau": [ "NNP" ], "souffle": [ "NN" ], "four-minute": [ "JJ" ], "KVDA": [ "NNP" ], "adornments": [ "NNS" ], "eightball": [ "NN" ], "Weirton": [ "NNP" ], "Tagg": [ "NNP" ], "dealmaker": [ "NN" ], "Watt": [ "NNP" ], "raced": [ "VBD" ], "champion": [ "NN", "JJ", "VB", "VBP" ], "paddles": [ "NNS" ], "halftime": [ "NN" ], "races": [ "NNS", "VBZ" ], "representative": [ "NN", "JJ" ], "systematic": [ "JJ" ], "mainlander": [ "NN" ], "pump-priming": [ "NN" ], "packers": [ "NNS" ], "respiration": [ "NN" ], "doctorates": [ "NNS" ], "two-party": [ "JJ" ], "Journeys": [ "NNS" ], "Orem": [ "NNP" ], "enrollment": [ "NN" ], "existance": [ "NN" ], "far-sighted": [ "JJ" ], "Northbrook": [ "NNP" ], "medically": [ "RB" ], "public-spirited": [ "JJ" ], "Oncogenes": [ "NNS" ], "leaning": [ "VBG" ], "Englishwoman": [ "NNP" ], "Stelco": [ "NNP", "NN" ], "eeriness": [ "NN" ], "occlusive": [ "JJ" ], "ContiTrade": [ "NNP" ], "clucked": [ "VBD" ], "housemate": [ "NN" ], "Dairymen": [ "NNP" ], "pacemakers": [ "NNS" ], "Telzrow": [ "NNP" ], "Kanska": [ "NNP" ], "AWAY": [ "RP" ], "Kulani": [ "NNP" ], "actuaries": [ "NNS" ], "recently-announced": [ "JJ" ], "cytolysis": [ "NN" ], "Sinfonica": [ "NNP" ], "involutions": [ "NNS" ], "premonition": [ "NN" ], "forgiveness": [ "NN" ], "stung": [ "VBN", "VBD" ], "Harnessing": [ "VBG" ], "knitting": [ "VBG", "NN" ], "Leatherman": [ "NNP" ], "understating": [ "VBG" ], "Lines": [ "NNPS", "NNP", "NNS" ], "Liner": [ "NNP" ], "contrition": [ "NN" ], "Mercenary": [ "NN" ], "Nisshin": [ "NNP" ], "nouns": [ "NNS" ], "Italian-made": [ "JJ" ], "selfdamaging": [ "JJ" ], "fabrication": [ "NN" ], "housing-policy": [ "NN" ], "Limited": [ "NNP", "JJ", "VBN" ], "then-president": [ "JJ" ], "flagpoles": [ "NNS" ], "alleging": [ "VBG" ], "italicized": [ "VBN" ], "aftershock": [ "NN" ], "normals": [ "NNS" ], "theatres": [ "NNS" ], "equilibrated": [ "VBN" ], "redistribution": [ "NN" ], "airline-related": [ "JJ" ], "Villages": [ "NNS" ], "glitz": [ "NN" ], "befuddled": [ "VBD", "VBN" ], "jerkings": [ "NNS" ], "stunt": [ "NN", "VB" ], "befuddles": [ "VBZ" ], "mistresses": [ "NNS" ], "Kogyo": [ "NNP" ], "Orens": [ "NNP" ], "Krisher": [ "NNP" ], "pro-abortion": [ "JJ" ], "district\\/state": [ "NN" ], "one-square-mile": [ "JJ" ], "A.O.": [ "NNP" ], "rifleman": [ "NN" ], "manna": [ "NN" ], "Breaux": [ "NNP" ], "jutting": [ "VBG" ], "Palomar": [ "NNP" ], "skateboards": [ "NNS" ], "Nightlife": [ "NN" ], "suffering": [ "VBG", "JJ", "NN" ], "baskets": [ "NNS" ], "entrenched": [ "VBN", "VBD", "JJ" ], "Kucharski": [ "NNP" ], "blue-collar-mail": [ "JJ", "NN" ], "Boneh": [ "NNP" ], "d": [ "FW", "LS", "NN" ], "anti-liquor": [ "JJ" ], "squandered": [ "VBN", "VBD" ], "Methodist": [ "NNP", "JJ" ], "Yardeni": [ "NNP" ], "Highly": [ "RB", "NNP" ], "played-out": [ "JJ" ], "continue": [ "VB", "VBP" ], "yields": [ "NNS", "VBZ" ], "Methodism": [ "NNP" ], "Kochitov": [ "NNP" ], "Bones": [ "NNS" ], "continuo": [ "NN" ], "Cason": [ "NNP" ], "NRDC": [ "NNP" ], "partying": [ "VBG" ], "COOPERATION": [ "NN" ], "senate": [ "NN" ], "spring": [ "NN", "VB", "VBP" ], "Retrovir": [ "NNP" ], "Fahrenheit": [ "NNP", "NN" ], "attics": [ "NNS" ], "Scot": [ "NNP", "NN" ], "thermostats": [ "NNS" ], "curious": [ "JJ" ], "Collischon": [ "NNP" ], "gun-running": [ "JJ", "NN" ], "couscous": [ "NN" ], "Bittker": [ "NNP" ], "Schwalbe": [ "NNP" ], "heavy-armed": [ "JJ" ], "on-the-job": [ "JJ" ], "transactions": [ "NNS" ], "Aloft": [ "JJ" ], "hydrocarbon-storage": [ "NN" ], "Railbikers": [ "NNS" ], "BS": [ "NNP" ], "convulsions": [ "NNS" ], "three-dimentional": [ "JJ" ], "slopping": [ "VBG" ], "Assimilation": [ "NNP" ], "rural-care": [ "JJ" ], "Brady": [ "NNP" ], "overallotments": [ "NNS" ], "Rianta": [ "NNP" ], "odor": [ "NN" ], "Lagrange": [ "NNP" ], "sanguineous": [ "JJ" ], "pasteurization": [ "NN" ], "v.w.": [ "NN" ], "departures": [ "NNS" ], "digitizes": [ "VBZ" ], "Wenham": [ "NNP" ], "shadings": [ "NNS" ], "IVF": [ "NNP" ], "MERRILL": [ "NNP" ], "PCBs": [ "NNS" ], "Deaconess": [ "NNP" ], "won-lost": [ "JJ" ], "weatherbeaten": [ "JJ" ], "sacrament": [ "NN" ], "Ottoman": [ "NNP" ], "forearms": [ "NNS" ], "Aussedat": [ "NNP" ], "Narrowly": [ "NNP" ], "junkbond-financed": [ "JJ" ], "NEG": [ "NNP" ], "NED": [ "NNP" ], "Gujarat": [ "NN", "NNP" ], "NEC": [ "NNP" ], "Styron": [ "NNP" ], "blue-carpeted": [ "JJ" ], "NEW": [ "JJ", "NNP", "NN" ], "Scarborough": [ "NNP" ], "depositors": [ "NNS" ], "striven": [ "VBN" ], "retail-brokerage": [ "JJ" ], "strived": [ "VBD" ], "Tokai": [ "NNP" ], "videodisk": [ "NN" ], "minor-leaguer": [ "NN" ], "anti-program": [ "JJ" ], "crackdown": [ "NN" ], "suit": [ "NN", "VBP", "RB", "VB" ], "Smoking": [ "NNP", "VBG", "NN" ], "Yuan": [ "NNP" ], "strives": [ "VBZ" ], "Should": [ "MD", "NNP" ], "Baptist": [ "NNP", "JJ", "NN", "NNP|JJ" ], "hoo-pig": [ "UH" ], "inches": [ "NNS", "NN", "VBZ" ], "graciously": [ "RB" ], "infinitive": [ "NN" ], "slump": [ "NN", "VBP", "VB" ], "well-regarded": [ "JJ" ], "slums": [ "NNS" ], "inched": [ "VBD", "VBN" ], "highest-yielding": [ "JJ" ], "Sergei": [ "NNP" ], "refinancing": [ "NN", "VBG" ], "Minnesotan": [ "NNP" ], "yeller": [ "JJ" ], "burrows": [ "NNS" ], "up": [ "IN", "JJ", "IN|RB", "RB", "RP", "VB", "NNP", ",", "RBR" ], "us": [ "PRP" ], "um": [ "FW", "UH", "PRP" ], "un": [ "FW", "NN" ], "uh": [ "UH" ], "last-minute": [ "JJ", "NN" ], "ascertainable": [ "JJ" ], "short-dated": [ "JJ" ], "yelled": [ "VBD", "VBN" ], "storing": [ "VBG", "NN" ], "parses": [ "VBZ" ], "consigned": [ "VBD", "VBN" ], "pollution-causing": [ "JJ" ], "hangups": [ "NNS" ], "travel-management": [ "NN" ], "thugs": [ "NNS" ], "Durcan": [ "NNP" ], "dissemination": [ "NN" ], "fixing": [ "VBG", "NN" ], "post-crash": [ "JJ" ], "specialty-printing": [ "JJ" ], "Kalyagin": [ "NNP" ], "deviate": [ "VB" ], "Bagley": [ "NNP" ], "ferried": [ "VBD", "VBN" ], "Espectador": [ "NNP" ], "trouser": [ "NN" ], "lucid": [ "JJ" ], "prosecution": [ "NN" ], "garbage-in": [ "JJ" ], "cranking": [ "VBG" ], "Zug": [ "NNP" ], "ferries": [ "NNS" ], "anti-Fascist": [ "JJ" ], "leaflets": [ "NNS" ], "Timbers": [ "NNP" ], "Revolutionibus": [ "FW" ], "duopoly": [ "RB" ], "walk-through": [ "JJ" ], "holes": [ "NNS" ], "Connection": [ "NN" ], "Webber": [ "NNP" ], "KGB": [ "NNP" ], "confederation": [ "NN" ], "KGF": [ "NNP" ], "inaccuracy": [ "NN" ], "fresh": [ "JJ", "JJ|RB" ], "holed": [ "VBN", "VBD" ], "having": [ "VBG" ], "Rotan": [ "NNP" ], "melts": [ "VBZ" ], "knotted": [ "JJ", "VBD", "VBN" ], "tattered": [ "JJ", "VBN" ], "Kennington": [ "NNP" ], "soften": [ "VB" ], "ex-investment": [ "JJ" ], "softer": [ "JJR", "RB" ], "Summarizing": [ "VBG" ], "coverts": [ "NNS" ], "Gerstenblatt": [ "NNP" ], "Del.-based": [ "JJ" ], "Designer": [ "NN" ], "longstanding": [ "JJ" ], "edgewise": [ "RB" ], "Miserables": [ "FW" ], "Volvo-Renault": [ "NNP" ], "Designed": [ "VBN" ], "Bottoms": [ "NNS" ], "glees": [ "NNS" ], "On-Line": [ "NNP", "JJ" ], "treasures": [ "NNS" ], "pestilent": [ "JJ" ], "stocked": [ "VBN", "VBD" ], "Noffsinger": [ "NNP" ], "creeps": [ "VBZ" ], "panting": [ "VBG", "JJ", "NN" ], "redefinition": [ "NN" ], "Schechter": [ "NNP" ], "semi-city": [ "JJ" ], "anti-fraud": [ "JJ" ], "wipe": [ "VB", "VBP" ], "Medford": [ "NNP" ], "FFr1": [ "NNP" ], "Forellen": [ "NNP" ], "Maurice": [ "NNP" ], "transmission": [ "NN" ], "Y-MP": [ "NNP" ], "Dennison": [ "NNP" ], "racy": [ "JJ" ], "huh-uh": [ "JJ" ], "Hoagy": [ "NNP" ], "discounting": [ "NN", "VBG|NN", "VBG" ], "givenness": [ "NN" ], "Mervyn": [ "NNP" ], "near-completed": [ "JJ" ], "affadavit": [ "NN" ], "Telaction": [ "NNP" ], "Agence": [ "NNP" ], "Buente": [ "NNP" ], "licensee": [ "NN" ], "licensed": [ "VBN", "VBD", "JJ" ], "two-button": [ "JJ" ], "imply": [ "VB", "VBP" ], "Graedel": [ "NNP" ], "licenses": [ "NNS", "VBZ" ], "Parodis": [ "NNS" ], "leakage": [ "NN" ], "graduating": [ "VBG", "NN" ], "Bonavia": [ "NNP" ], "Janes": [ "NNPS" ], "Janet": [ "NNP" ], "aboveboard": [ "JJ" ], "Yontz": [ "NNP" ], "glissade": [ "NN" ], "Waukegan": [ "NNP" ], "Achieving": [ "VBG" ], "consistently": [ "RB" ], "Cuddeford": [ "NNP" ], "polluting": [ "VBG", "JJ" ], "sixth": [ "JJ", "RB" ], "mammography": [ "NN" ], "Ferencik": [ "NNP" ], "Rumscheidt": [ "NNP" ], "Campagnoli": [ "NNP" ], "baroness": [ "NN" ], "Prior": [ "RB" ], "Giamatti": [ "NNP" ], "Kuhn": [ "NNP" ], "technical": [ "JJ" ], "Odors": [ "NNP" ], "inoperable": [ "JJ" ], "bellicosity": [ "NN" ], "Immortal": [ "NNP" ], "resulting": [ "VBG", "VBG|JJ", "JJ" ], "admiralty": [ "NN" ], "Shareholder": [ "NN" ], "buffered": [ "VBN", "VBD" ], "maquila": [ "NN" ], "Starke": [ "NNP" ], "outcomes": [ "NNS" ], "unmasculine": [ "JJ" ], "sovereignty": [ "NN" ], "now-dismembered": [ "JJ" ], "million-mark": [ "JJ" ], "Pripet": [ "NNP" ], "causal": [ "JJ" ], "Younkers": [ "NNP", "NNS" ], "Korn": [ "NNP" ], "exciting": [ "JJ", "VBG" ], "Kori": [ "NNP" ], "ivy-covered": [ "JJ" ], "DRUGS": [ "NNPS" ], "Millburn": [ "NNP" ], "McCollum": [ "NNP" ], "pedagogical": [ "JJ" ], "Drag": [ "VB" ], "irrepressible": [ "JJ" ], "Sony-Columbia": [ "JJ", "NNP" ], "humorless": [ "JJ" ], "forefathers": [ "NNS" ], "midday": [ "NN", "RB" ], "Kors": [ "NNP" ], "Himont": [ "NNP" ], "cathodophoretic": [ "JJ" ], "Eastland": [ "NNP" ], "shipwreck": [ "NN" ], "ESTATE": [ "NN", "NNP" ], "Beadleston": [ "NNP" ], "Smith\\/Greenland": [ "NNP" ], "Koppel": [ "NNP" ], "DEVICES": [ "NNP" ], "unplug": [ "VB" ], "bullhorn": [ "NN" ], "first-section": [ "JJ" ], "rubbish": [ "NN", "JJ" ], "eye-undeceiving": [ "NN" ], "Yokogawa": [ "NNP" ], "piety": [ "NN" ], "Hironaka": [ "NNP" ], "Oxnard": [ "NNP" ], "Donics": [ "NNP" ], "prompts": [ "VBZ" ], "Marjorie": [ "NNP" ], "Scandinavians": [ "NNPS" ], "Spirituals": [ "NNS" ], "emphatically": [ "RB" ], "nonliterary": [ "JJ" ], "cherubim": [ "NN" ], "slid": [ "VBD", "NNP", "VBN" ], "perfecting": [ "VBG" ], "pelvic": [ "JJ", "NN" ], "slim": [ "JJ", "VB" ], "prevailin": [ "NN" ], "Liberation": [ "NNP" ], "slit": [ "NN", "VB" ], "tantrums": [ "NNS" ], "slip": [ "VB", "NN", "VBP" ], "pelvis": [ "NN" ], "Brelin": [ "NNP" ], "Duties": [ "NNP", "NNS" ], "mullets": [ "NNS" ], "Phelps": [ "NNP" ], "delay": [ "NN", "VB", "VBP" ], "non-propagating": [ "JJ" ], "second-story": [ "JJ" ], "higher-fat": [ "JJR" ], "paternally": [ "RB" ], "palates": [ "NNS" ], "manacles": [ "NNS" ], "pub": [ "NN" ], "McGowan": [ "NNP" ], "Keansburg": [ "NNP" ], "Reprisals": [ "NNS" ], "impetuousness": [ "NN" ], "eminences": [ "NNS" ], "Hive": [ "NNP" ], "graveyards": [ "NNS" ], "fits": [ "VBZ", "NNS" ], "marrow": [ "NN" ], "hawk": [ "NN", "VBP", "VB" ], "Cleva": [ "NNP" ], "solidarity": [ "NN" ], "inscrutability": [ "NN" ], "non-Greek": [ "JJ" ], "Centers": [ "NNPS", "NNP", "VBZ" ], "commodities": [ "NNS" ], "Lybrand": [ "NNP" ], "pollution-free": [ "JJ" ], "antelope": [ "NN", "NNS" ], "cross-dressing": [ "JJ" ], "retrofitting": [ "NN" ], "Nearness": [ "NN" ], "Tennenbaum": [ "NNP" ], "future-day": [ "JJ" ], "Barnumville": [ "NNP" ], "deducing": [ "VBG" ], "chosen": [ "VBN", "JJ" ], "snouts": [ "NNS" ], "non-farm": [ "JJ" ], "blistered": [ "VBN" ], "diluents": [ "NNS" ], "winners": [ "NNS" ], "suppressor": [ "NN" ], "quite-comfortable": [ "JJ" ], "bakery-mix": [ "JJ" ], "mitigates": [ "VBZ" ], "Wholesale": [ "JJ", "NNP" ], "outlined": [ "VBN", "VBD", "JJ" ], "SKr225": [ "NNS" ], "innermost": [ "JJ" ], "launder": [ "VB" ], "Cardiac": [ "NNP" ], "Aliber": [ "NNP" ], "pain-relief": [ "NN" ], "legendary": [ "JJ" ], "Social": [ "NNP", "JJ", "NNS" ], "golfers...": [ ":" ], "outlines": [ "NNS", "VBZ" ], "presidential": [ "JJ" ], "regionalism": [ "JJ" ], "minimalist": [ "JJ", "NN" ], "wallowing": [ "VBG" ], "truth": [ "NN" ], "minimalism": [ "NN" ], "remuda": [ "NN" ], "Titans": [ "NNS" ], "subset": [ "NN" ], "Haumd": [ "NNP" ], "WestLB": [ "NNP" ], "expectantly": [ "RB" ], "Willard": [ "NNP" ], "Poodle": [ "NNP" ], "Steiner": [ "NNP" ], "stepmothers": [ "NNS" ], "castigate": [ "VB" ], "Grips": [ "NNS" ], "Zubin": [ "NNP" ], "germaneness": [ "NN" ], "benefiting": [ "VBG" ], "nestbuilding": [ "NN" ], "dismissal": [ "NN" ], "overproduction": [ "NN" ], "Chebrikov": [ "NNP" ], "community-oriented": [ "JJ" ], "antimissile": [ "JJ" ], "motifs": [ "NNS" ], "hilarious": [ "JJ" ], "Photographic": [ "JJ" ], "eye-filling": [ "JJ" ], "Qintex": [ "NNP" ], "delineate": [ "VB" ], "Sukuma": [ "NNP" ], "subsiding": [ "VBG" ], "uncontrollably": [ "RB" ], "pre-publication": [ "JJ" ], "spill-related": [ "JJ" ], "graze": [ "VBP", "VB" ], "tresses": [ "NNS" ], "cutting-edge": [ "JJ", "NN" ], "Cathodic": [ "NNP" ], "shortest": [ "JJS" ], "Lesser": [ "NNP" ], "reposed": [ "VBD", "VBN" ], "top-of-the-line": [ "JJ" ], "Point": [ "NNP", "JJ", "NN" ], "Cravath": [ "NNP" ], "Ackerly": [ "NNP" ], "put": [ "VB", "JJ", "NN", "VBP|VB", "VBD", "VBN", "VBP" ], "sleeplessness": [ "NN" ], "qualifying": [ "VBG" ], "Ulbricht": [ "NNP" ], "ultramodern": [ "JJ" ], "Shearing": [ "NNP" ], "staggered": [ "VBD", "JJ", "VBN" ], "manuscript": [ "NN" ], "yells": [ "VBZ" ], "Blomdahl": [ "NNP" ], "Hasse": [ "NNP" ], "Calgon": [ "NNP" ], "quasi-mechanistic": [ "JJ" ], "Kempner": [ "NNP" ], "self-help": [ "NN", "NNP", "JJ" ], "prank": [ "NN" ], "suppositions": [ "NNS" ], "razorback": [ "NN" ], "Grigsby": [ "NNP" ], "over-spent": [ "JJ" ], "pre-Reagan": [ "JJ" ], "instruction-set": [ "JJ", "NN" ], "inalienable": [ "JJ" ], "institute-sponsored": [ "JJ" ], "fouling": [ "NN", "VBG" ], "Actual": [ "JJ" ], "Half-time": [ "JJ" ], "chagrin": [ "NN" ], "adaptor": [ "NN" ], "difficult": [ "JJ" ], "cow-blood": [ "NN" ], "disengage": [ "VB" ], "Housman": [ "NNP" ], "concrete-product-making": [ "NN" ], "manhole": [ "NN" ], "Hastily": [ "RB" ], "retraction": [ "NN" ], "meanin": [ "VBG", "NN" ], "warfare": [ "NN" ], "exposure...": [ ":" ], "bother": [ "VB", "VBP" ], "aggressor": [ "NN" ], "reacted": [ "VBD", "VBN" ], "extravaganzas": [ "NNS" ], "animal-based": [ "JJ" ], "rollercoaster": [ "NN", "JJ" ], "Afrika": [ "NNP" ], "pertussis": [ "NN" ], "devotion": [ "NN" ], "collecting": [ "VBG", "NN" ], "beggar": [ "NN" ], "trusting": [ "JJ", "VBG" ], "gently": [ "RB" ], "reassuring": [ "VBG", "JJ" ], "gentle": [ "JJ", "VB" ], "Eidsmo": [ "NNP" ], "defending": [ "VBG", "JJ" ], "fourteenth": [ "JJ" ], "C.S.": [ "NNP" ], "affinities": [ "NNS" ], "Mutants": [ "NNS" ], "thrift-insurance": [ "NN" ], "Pockmanster": [ "NNP" ], "hungrily": [ "RB" ], "Compiled": [ "VBN" ], "Rickenbaugh": [ "NNP" ], "awed": [ "VBN", "JJ" ], "hangover": [ "NN" ], "waffles": [ "NNS" ], "lilt": [ "NN" ], "public-service": [ "JJ", "NN" ], "astride": [ "IN" ], "waffled": [ "VBD", "VBN" ], "flash-bulbs": [ "NNS" ], "awes": [ "VBZ" ], "accuracy": [ "NN" ], "Borrowers": [ "NNS" ], "Conservatory": [ "NNP" ], "unobtrusively": [ "RB" ], "pitches": [ "NNS", "VBZ" ], "Journal\\/Europe": [ "NNP" ], "Moudy": [ "NNP" ], "old-age": [ "JJ" ], "Godunov": [ "NNP" ], "gussets": [ "NNS" ], "midmonth": [ "RB" ], "addiction": [ "NN" ], "ratifying": [ "VBG" ], "Lindemanns": [ "NNPS" ], "philosophers": [ "NNS" ], "MCI": [ "NNP" ], "tramps": [ "VBZ" ], "ambitions": [ "NNS" ], "locust": [ "NN" ], "MCA": [ "NNP" ], "five-point": [ "JJ" ], "Aquinas": [ "NNP" ], "mechanical": [ "JJ" ], "recoil": [ "NN", "VBP" ], "painting": [ "NN", "VBG" ], "incarcerate": [ "VB" ], "Shawnee": [ "NNP" ], "Heyden": [ "NNP", "NN" ], "bondsman": [ "NN" ], "public-transit": [ "JJ" ], "Whitmore": [ "NNP" ], "Cablevision": [ "NNP" ], "net-capital": [ "JJ" ], "briny": [ "JJ" ], "Daley": [ "NNP" ], "Rangers": [ "NNPS" ], "brine": [ "NN" ], "Manoplax": [ "NNP" ], "Waste": [ "NNP", "NN", "VB" ], "economist": [ "NN" ], "pitched": [ "VBD", "JJ", "VBN" ], "decade": [ "NN" ], "principal": [ "JJ", "NN", "NN|JJ" ], "vulture": [ "NN" ], "anti-gay": [ "JJ" ], "burnished": [ "VBN" ], "noir": [ "FW" ], "timpani": [ "NNS" ], "Experimenting": [ "VBG" ], "should": [ "MD" ], "buttons": [ "NNS" ], "reading-rooms": [ "NNS" ], "spontaneity": [ "NN" ], "ever-changing": [ "JJ" ], "indecisiveness": [ "NN" ], "bomblets": [ "NNS" ], "meant": [ "VBD", "VBN" ], "capsules": [ "NNS" ], "Applause": [ "NN" ], "means": [ "VBZ", "NNS", "NN" ], "Telesystems": [ "NNP", "NNS" ], "impinging": [ "VBG" ], "McBee": [ "NNP" ], "impeachment": [ "NN" ], "Salaries": [ "NNS" ], "Wankui": [ "NNP" ], "Nightingale": [ "NN", "NNP" ], "shaping": [ "VBG", "NN" ], "Sinner": [ "NNP" ], "Fleury": [ "NNP" ], "Because": [ "IN", "RB" ], "metabolite": [ "NN" ], "Jacobite": [ "NNP" ], "unexecuted": [ "VBN" ], "rail-passenger": [ "NN" ], "extra-sensory": [ "JJ" ], "glossed": [ "VBD", "VBN" ], "default": [ "NN", "VB" ], "neo-fascist": [ "JJ" ], "assembly-line": [ "NN" ], "unfeasible": [ "JJ" ], "favoring": [ "VBG" ], "Hock": [ "NNP" ], "low-rated": [ "JJ" ], "water-balance": [ "NN" ], "international-leasing": [ "JJ" ], "indecisive": [ "JJ" ], "correlations": [ "NNS" ], "packet": [ "NN" ], "meted": [ "VBN", "VBD" ], "Treasury-bill": [ "NN" ], "packed": [ "VBN", "JJ", "VBD" ], "innovator": [ "NN" ], "mien": [ "NN" ], "Human-rights": [ "NNS" ], "Ariane": [ "NNP" ], "fill-or-kill": [ "JJ" ], "Terminals": [ "NNS" ], "Meatheads": [ "NNS" ], "taunting": [ "VBG", "NN" ], "cloudless": [ "JJ" ], "piston": [ "NN" ], "pistol": [ "NN" ], "score-wise": [ "JJ" ], "fire-colored": [ "JJ" ], "ends": [ "NNS", "VBZ" ], "inchworm": [ "NN" ], "court-approved": [ "JJ" ], "drachmas": [ "NNS", "NN" ], "butts": [ "NNS", "VBZ" ], "hogging": [ "VBG" ], "seaboard": [ "NN" ], "rejoins": [ "VBZ" ], "reappears": [ "VBZ" ], "covert-operations": [ "NNS" ], "mooing": [ "VBG" ], "observable": [ "JJ" ], "non-striking": [ "JJ" ], "Devotees": [ "NNS" ], "invited": [ "VBN", "VBD" ], "PERSUADING": [ "VB" ], "Sky-god": [ "NNP" ], "Holyoke": [ "NNP" ], "Lindsey": [ "NNP" ], "cents-a-share": [ "JJ" ], "trumps": [ "NNS" ], "government-sanctioned": [ "JJ" ], "Four-fifths": [ "NNS" ], "Scribe": [ "VB", "NNP" ], "invites": [ "VBZ" ], "Inspiring": [ "VBG", "JJ" ], "half-cocked": [ "JJ" ], "Pietermartizburg": [ "NNP" ], "stranding": [ "VBG" ], "Sartre": [ "NNP" ], "Girls": [ "NNP", "NNS" ], "distil": [ "VB" ], "nine-to-five": [ "JJ" ], "subsedies": [ "NNS" ], "whispering": [ "VBG", "NN" ], "higher-density": [ "JJ" ], "specialist-firm": [ "JJ" ], "lectern": [ "NN" ], "keying": [ "VBG" ], "pulsated": [ "VBD" ], "Monmouth": [ "NNP" ], "Bruccoli": [ "NNP" ], "music-loving": [ "JJ" ], "steadiness": [ "NN" ], "Pensive": [ "JJ" ], "Phone": [ "NN", "NNP" ], "hawking": [ "VBG", "NN" ], "transporters": [ "NNS" ], "chastised": [ "VBD", "VBN" ], "Harlan-Hickory": [ "NNP" ], "Tremblay": [ "NNP" ], "high-positive": [ "JJ" ], "Stadt": [ "NNP" ], "hindquarters": [ "NNS" ], "mannequin": [ "NN" ], "chastises": [ "VBZ" ], "Knights": [ "NNP", "NNPS", "NNS" ], "toasting": [ "VBG" ], "Pledge": [ "NNP" ], "affirmative": [ "JJ", "NN" ], "Innis-Maggiore-Olson": [ "NNP" ], "Push-Pull": [ "NNP" ], "Ciriaco": [ "NNP" ], "Index-linked": [ "JJ" ], "accumulator": [ "NN" ], "Bingaman": [ "NNP" ], "discoveries": [ "NNS" ], "groin": [ "NN" ], "iron-shod": [ "JJ" ], "globalizing": [ "VBG" ], "concerted": [ "JJ", "VBN" ], "whitewashed": [ "VBN" ], "reverse-surface": [ "JJ" ], "appalls": [ "VBZ" ], "reiteration": [ "NN" ], "ice-free": [ "JJ" ], "loosely-taped": [ "JJ" ], "rhinovirus-receptors": [ "NNS" ], "Fitting": [ "VBG" ], "askew": [ "RB" ], "sheath": [ "NN" ], "Gre.": [ "NNP" ], "upmarket": [ "JJ" ], "publicly-held": [ "JJ" ], "organ-transplant": [ "JJ", "NN" ], "concealed": [ "VBN", "JJ", "VBD" ], "Asch": [ "NNP" ], "buffoon": [ "NN" ], "lengthening": [ "VBG" ], "outbreak": [ "NN" ], "Safer": [ "NNP" ], "now...": [ ":" ], "Podolia": [ "NNP" ], "Carmer": [ "NNP" ], "Tribunal": [ "NNP" ], "Grew": [ "VBD" ], "drink": [ "NN", "VBP", "VB" ], "Prendergast": [ "NNP" ], "cafeterias": [ "NNS" ], "fecundity": [ "NN" ], "Greg": [ "NNP" ], "Midas": [ "NNP" ], "Carmen": [ "NNP" ], "Carmel": [ "NNP" ], "pleasantly": [ "RB" ], "labor-intensive": [ "JJ" ], "fascinate": [ "VB", "VBP" ], "fully": [ "RB" ], "shacks": [ "NNS" ], "achievement-test": [ "NN" ], "do-good": [ "JJ" ], "fuel-neutral": [ "JJ" ], "tap-tap": [ "NN" ], "golf-ball": [ "NN" ], "Need": [ "VB", "NNP", "MD", "NN", "VBP" ], "Sapporo": [ "NNP" ], "renegotiated": [ "VBN", "VBD" ], "Closer": [ "RBR" ], "reprographic": [ "JJ" ], "immortalized": [ "VBN" ], "Fuming": [ "VBG" ], "fine-point": [ "JJ" ], "Cave": [ "NNP" ], "actress\\": [ "JJ" ], "Negroes": [ "NNPS", "NNP", "NNS" ], "Herrin-Murphysboro-West": [ "NNP" ], "Deltacorp": [ "NNP", "NN" ], "outleaped": [ "VBD" ], "Corcoran": [ "NNP" ], "wood-product": [ "NN" ], "housework": [ "NN" ], "clipped": [ "VBN", "VBD" ], "exempt": [ "JJ", "VB" ], "punchbowl": [ "NN" ], "memorandums": [ "NNS" ], "MISFIRE": [ "NN" ], "Heroic": [ "NNP" ], "multi-media": [ "NNS" ], "know...": [ ":" ], "Clemente": [ "NNP" ], "Logsdon": [ "NNP" ], "checking": [ "VBG", "NN" ], "Capacitors": [ "NNP" ], "cedar": [ "NN" ], "Clements": [ "NNP" ], "humors": [ "NNS" ], "supervise": [ "VB", "VBP" ], "whopping": [ "JJ" ], "airports": [ "NNS" ], "passable": [ "JJ" ], "evildoers": [ "NNS" ], "willow-lined": [ "JJ" ], "redound": [ "VB" ], "Ruys": [ "NNP" ], "shuddered": [ "VBD" ], "philanthropies": [ "NNS" ], "nerves": [ "NNS" ], "Ambroise": [ "NNP" ], "inexperienced": [ "JJ" ], "Arrowhead": [ "NNP" ], "Addition": [ "NN" ], "Ansco": [ "NNP" ], "hypersonic": [ "JJ" ], "uncharacteristic": [ "JJ" ], "algebraically": [ "RB" ], "habits": [ "NNS" ], "pacifistic": [ "JJ" ], "treks": [ "VBZ" ], "crudely": [ "RB" ], "Eugene": [ "NNP" ], "trainman": [ "NN" ], "Cutrere": [ "NNP" ], "cruelest": [ "JJS" ], "bedding": [ "NN" ], "Marcus": [ "NNP" ], "random-access": [ "JJ" ], "Sundor": [ "NNP" ], "blowing": [ "VBG", "VBG|NN", "NN" ], "Solon": [ "NNP" ], "travelogue": [ "NN" ], "out-compete": [ "VB" ], "Aziza": [ "NNP" ], "staccatos": [ "NNS" ], "X-gyro": [ "NN" ], "dollars...": [ ":" ], "Solow": [ "NNP" ], "Proefrock": [ "NNP" ], "Alsatians": [ "NNPS" ], "Unveiling": [ "VBG" ], "Foreclosure": [ "NNP" ], "left-justified": [ "JJ" ], "gazing": [ "VBG" ], "whistled": [ "VBD", "VBN" ], "accusers": [ "NNS" ], "Dependent": [ "NNP", "JJ" ], "Uh": [ "UH", "IN" ], "Dukakises": [ "NNP" ], "Broader": [ "JJR" ], "Erburu": [ "NNP" ], "Harlingen": [ "NNP" ], "poof": [ "NN" ], "Sommer": [ "NNP" ], "stockynges": [ "NNS" ], "software": [ "NN" ], "centrist": [ "JJ" ], "Speakers": [ "NNS" ], "rectify": [ "VB" ], "delenda": [ "FW" ], "longings": [ "NNS" ], "assess": [ "VB", "VBP" ], "Labour": [ "NNP" ], "protector": [ "NN" ], "protozoa": [ "NNS" ], "withholding-tax": [ "JJ" ], "larvae": [ "NNS" ], "Frauds": [ "NNPS" ], "Omnibank": [ "NNP" ], "Contrarian": [ "JJ" ], "larval": [ "JJ" ], "Wiener": [ "NNP" ], "impeding": [ "VBG" ], "pool": [ "NN", "VBP", "VB" ], "proliferating": [ "VBG" ], "Berbera": [ "NNP" ], "catamaran": [ "NN" ], "insanely": [ "RB" ], "FE": [ "NNP" ], "complacency": [ "NN" ], "Mondrian": [ "NNP" ], "Artistes": [ "NNP" ], "savings-and-loans": [ "JJ" ], "Hutchinson": [ "NNP" ], "shamanistic": [ "JJ" ], "Foresight": [ "NN" ], "lowered": [ "VBD", "VBN", "JJ" ], "Reggie": [ "NNP", "NN" ], "rectum": [ "NN" ], "Outcome": [ "NN" ], "Chelsea": [ "NNP" ], "disbursement": [ "NN" ], "compute": [ "VB" ], "campus": [ "NN" ], "multinational": [ "JJ" ], "gravitational": [ "JJ" ], "imbalances": [ "NNS" ], "J.Y.": [ "NNP" ], "one-family": [ "JJ" ], "Leverkuhn": [ "NNP" ], "tertian": [ "JJ" ], "appraise": [ "VB" ], "undecideds": [ "NNS" ], "sirloin": [ "NN" ], "Karen": [ "NNP" ], "contribute": [ "VB", "VBP" ], "availabilities": [ "NNS" ], "sibling": [ "NN" ], "unsavory": [ "JJ" ], "Scrapiron": [ "NNP" ], "preschooler": [ "NN" ], "programmer": [ "NN" ], "r-Revised": [ "VBN", "VB" ], "readjustments": [ "NNS" ], "Bearden": [ "NNP" ], "Utah": [ "NNP" ], "Yesterday": [ "NN", "RB", "NNP" ], "scholarly": [ "JJ" ], "proto-Yokuts": [ "NNS" ], "Janachowski": [ "NNP" ], "test-practice": [ "JJ" ], "predominant": [ "JJ" ], "Pompadour": [ "NNP" ], "reckless": [ "JJ" ], "jumbos": [ "NNS" ], "Geraghtys": [ "NNPS" ], "Acquiring": [ "VBG" ], "Vitus": [ "NNP" ], "Shokubai": [ "NNP" ], "Middle-class": [ "JJ" ], "vignette": [ "NN" ], "townsmen": [ "NNS" ], "veil": [ "NN" ], "six-year-old": [ "JJ" ], "draperies": [ "NNS" ], "OCN-PPL": [ "NNP" ], "SRS": [ "NNP" ], "misnomer": [ "NN" ], "amahs": [ "NNS" ], "influenza-pneumonia": [ "JJ" ], "hedges": [ "NNS" ], "Isuzu": [ "NNP" ], "silica": [ "NN" ], "rep": [ "NN" ], "ticketed": [ "VBN" ], "Constantinos": [ "NNP" ], "philantrophy": [ "NN" ], "Barber-Greene": [ "NNP" ], "domponents": [ "NNS" ], "mid-size": [ "JJ" ], "By-the-Sea": [ "NNP" ], "controversial": [ "JJ" ], "superefficient": [ "JJ" ], "defraud": [ "VB" ], "Madelon": [ "NNP" ], "Vince": [ "NNP" ], "obsoleting": [ "VBG" ], "bike": [ "NN" ], "Buy-out": [ "NN" ], "daze": [ "NN" ], "Shirley": [ "NNP" ], "Ovcharenko": [ "NNP" ], "Patriarca": [ "NNP" ], "Rakestraw": [ "NNP" ], "Patriarch": [ "NNP" ], "begrudge": [ "VB" ], "expectable": [ "JJ" ], "wholeness": [ "NN" ], "used-car": [ "NN", "JJ" ], "tagging": [ "VBG" ], "manes": [ "NNS" ], "Hefter": [ "NNP" ], "leaseback": [ "NN" ], "pique": [ "JJ", "NN", "VB" ], "semi-nude": [ "JJ" ], "pro-Europe": [ "JJ" ], "HIV\\": [ "NNP" ], "chest-back-shoulder": [ "JJ" ], "Kinsey": [ "NNP" ], "triumph": [ "NN", "VB" ], "fliers": [ "NNS" ], "monotonous": [ "JJ" ], "bubbling": [ "VBG", "NN" ], "midsummer": [ "NN" ], "ice-filled": [ "JJ" ], "subaltern": [ "NN" ], "long-standing": [ "JJ" ], "Available": [ "JJ" ], "meekly": [ "RB" ], "Culture": [ "NNP", "NN" ], "P.L.": [ "NNP", "NN" ], "Kawasaki-Rikuso": [ "NNP" ], "revolutionize": [ "VB" ], "meetin": [ "NN" ], "no-tax-increase": [ "JJ" ], "Sonata": [ "NNP", "NN" ], "frank": [ "JJ", "NN" ], "Downstairs": [ "NN", "RB" ], "Bourgeois": [ "NNP" ], "festive": [ "JJ" ], "revels": [ "NNS" ], "plastic-timber": [ "NN" ], "Stinnett": [ "NNP" ], "kindred": [ "JJ" ], "conglomerate": [ "NN", "JJ" ], "Hassenfeld": [ "NNP" ], "flower-inscribed": [ "JJ" ], "watchers": [ "NNS" ], "daughter": [ "NN" ], "Constellation": [ "NNP" ], "five-and-a-half": [ "NN" ], "plain-spoken": [ "JJ" ], "absorbency": [ "NN" ], "unhelpful": [ "JJ" ], "F.A.": [ "NNP" ], "Unveiled": [ "VBN" ], "browsing": [ "VBG", "NN" ], "Novalta": [ "NNP" ], "Winch": [ "NNP" ], "envious": [ "JJ" ], "stripped-down": [ "JJ" ], "demythologization": [ "NN" ], "Connery": [ "NNP" ], "one-shot": [ "JJ" ], "infield": [ "NN" ], "eyeful": [ "NN" ], "hindsight": [ "NN" ], "pre-nuptial": [ "JJ" ], "rancho": [ "NN" ], "estancia": [ "NN" ], "Reporter": [ "NNP", "NN" ], "alligator": [ "NN" ], "likelihood": [ "NN" ], "motivate": [ "VB", "VBP" ], "negative": [ "JJ", "NN" ], "voice-altering": [ "JJ" ], "mightiest": [ "JJS" ], "Pflaum": [ "NNP" ], "toneless": [ "JJ" ], "memoranda": [ "NNS" ], "Pezza": [ "NNP" ], "sociopath": [ "NN" ], "Hamiltonian": [ "JJ" ], "GOODY": [ "NNP" ], "infusion": [ "NN" ], "award": [ "NN", "VBP", "VB" ], "Teams": [ "NNS" ], "Golenbock": [ "NNP" ], "intratissue": [ "NN" ], "ever-swelling": [ "JJ" ], "Geldermann": [ "NNP" ], "compatability": [ "NN" ], "characterize": [ "VB", "VBP" ], "torquer": [ "NN" ], "Molard": [ "NNP" ], "theories": [ "NNS" ], "custom-design": [ "JJ" ], "oxide": [ "NN" ], "Walsh": [ "NNP" ], "Chorrillos": [ "NNP" ], "transparency": [ "NN" ], "workstations": [ "NNS" ], "BEARS": [ "NNP" ], "Bruns": [ "NNP" ], "Sealey": [ "NNP" ], "grandees": [ "NNS" ], "Brunk": [ "NNP" ], "Bruno": [ "NNP" ], "Sealed": [ "NNP" ], "Dollar-Britten": [ "NNP" ], "hatted": [ "VBN" ], "Passat": [ "NNP" ], "validated": [ "VBN" ], "substance-abusing": [ "JJ" ], "acrobatic": [ "JJ" ], "Welsh": [ "NNP", "JJ" ], "agony": [ "NN" ], "Leger": [ "NNP" ], "one-liners": [ "NNS" ], "hitman": [ "NN" ], "Pru-Bache": [ "NNP" ], "rookie": [ "NN" ], "interview": [ "NN", "VB" ], "types": [ "NNS" ], "beach": [ "NN" ], "Gilts": [ "NNS" ], "cherubs": [ "NNS" ], "Aliah": [ "NNP" ], "Nikkhah": [ "NNP" ], "melt-textured": [ "JJ" ], "castle-like": [ "JJ" ], "Grgich": [ "NNP" ], "Place-names": [ "NNS" ], "midlands": [ "NNS" ], "strategists": [ "NNS" ], "witching": [ "JJ", "NN" ], "ex-wife": [ "NN" ], "Lifestyles": [ "NNPS", "NNP" ], "IV-drug-free": [ "JJ" ], "line-driven": [ "NN" ], "hasty": [ "JJ" ], "government-managed": [ "JJ" ], "retort": [ "NN", "VB", "VBP" ], "red-blood": [ "JJ" ], "haste": [ "NN" ], "water-purity": [ "NN" ], "extirpating": [ "VBG" ], "warchest": [ "NN" ], "Hustler": [ "NN" ], "arterial": [ "JJ" ], "modesty": [ "NN" ], "infested": [ "VBN", "JJ" ], "decide": [ "VB", "VBP" ], "Walbrecher": [ "NNP" ], "Colonial": [ "NNP", "JJ" ], "Vons": [ "NNPS" ], "Regatta": [ "NNP" ], "Meister": [ "NNP" ], "Tips": [ "NNP" ], "bombing": [ "NN", "VBG" ], "appeasement": [ "NN" ], "pencil-pusher": [ "NN" ], "highlights": [ "VBZ", "NNS" ], "avocado": [ "NN" ], "ex-smokers": [ "NNS" ], "awfulness": [ "NN" ], "Velasquez": [ "NNP" ], "workable": [ "JJ" ], "bespeak": [ "VBP" ], "metals-stock": [ "NN" ], "Fairview": [ "NNP" ], "versus": [ "IN", "CC", "FW" ], "stabilities": [ "NNS" ], "woken": [ "VBN" ], "reagent": [ "NN" ], "mid-50s": [ "NNS" ], "exhaled": [ "VBD" ], "fresh-ground": [ "JJ" ], "affianced": [ "VBN" ], "rocky": [ "JJ" ], "tampering": [ "VBG", "NN" ], "Librarians": [ "NNS" ], "five-days-a-week": [ "JJ" ], "absolve": [ "VBP" ], "rocks": [ "NNS", "VBZ" ], "artifical": [ "JJ" ], "four-fold": [ "JJ", "RB" ], "cornbread": [ "NN" ], "Af-inch": [ "JJ" ], "lifted": [ "VBD", "VBN" ], "schemes": [ "NNS" ], "kneels": [ "VBZ" ], "pro-NATO": [ "JJ" ], "Confess": [ "VB" ], "Stelzer": [ "NNP" ], "Antoine": [ "NNP" ], "tultul": [ "FW" ], "accompnaying": [ "VBG" ], "Konikow": [ "NNP" ], "ratepayers": [ "NNS" ], "transcends": [ "VBZ" ], "motorized": [ "VBN", "JJ" ], "Crucians": [ "NNPS" ], "prohibitions": [ "NNS" ], "jiving": [ "VBG" ], "disloyalty": [ "NN" ], "non-liquid": [ "JJ" ], "attested": [ "VBN", "VBD" ], "Tredici": [ "NNP" ], "market-stabilizing": [ "JJ" ], "dishwashers": [ "NNS" ], "veto": [ "NN", "VB" ], "Tomkins": [ "NNP" ], "Sirowitz": [ "NNP" ], "Havisham": [ "NNP" ], "mourning": [ "VBG", "NN" ], "campaigns": [ "NNS" ], "LIES": [ "VBZ" ], "V-1": [ "NNP" ], "pro-democracy": [ "JJ" ], "collation": [ "NN" ], "no-valued": [ "JJ" ], "Yasuo": [ "NNP" ], "Kageyama": [ "NNP" ], "fishing\\": [ "JJ" ], "volatile": [ "JJ" ], "buys": [ "VBZ", "NNS" ], "created": [ "VBN", "VBD", "JJ" ], "September": [ "NNP" ], "Torah": [ "NNP" ], "creates": [ "VBZ" ], "newdrug": [ "NN" ], "regress": [ "VB" ], "Contrary": [ "JJ" ], "Oji": [ "NNP" ], "Bridges": [ "NNP", "NNS", "NNPS" ], "Padovan": [ "NNP" ], "vulgar": [ "JJ" ], "daunting": [ "JJ", "VBG" ], "Gamecock": [ "NNP" ], "Bridget": [ "NNP" ], "pots": [ "NNS" ], "Ackerman": [ "NNP" ], "Bauer-Ecsy": [ "NNP" ], "sparse": [ "JJ" ], "Gen.": [ "NNP" ], "guzzle": [ "VB" ], "securities-fraud": [ "NN" ], "thick": [ "JJ", "NN", "RB" ], "recapitalization": [ "NN" ], "mid-19th": [ "JJ" ], "four-engined": [ "JJ" ], "Uncle": [ "NNP", "NN" ], "observations": [ "NNS" ], "snags": [ "NNS" ], "Selena": [ "NNP" ], "lunatics": [ "NNS" ], "filibuster": [ "NN", "VB" ], "pinpointing": [ "VBG" ], "Ajit": [ "NNP" ], "happily": [ "RB" ], "Texasness": [ "NN" ], "besuboru": [ "FW" ], "haflis": [ "NNS" ], "Chattanooga": [ "NNP" ], "Geno": [ "NNP" ], "factory-outlet": [ "JJ" ], "Koyata": [ "NNP" ], "tabloids": [ "NNS" ], "random-storage": [ "JJ" ], "Gene": [ "NNP" ], "Kurnit": [ "NNP" ], "Penal": [ "NNP" ], "orgasm": [ "NN" ], "scenes": [ "NNS" ], "TUC": [ "NNP" ], "minus": [ "CC", "FW", "IN", "JJ", "NN" ], "Sayre": [ "NNP" ], "freight-cost": [ "JJ" ], "effectuate": [ "VB" ], "Kisen": [ "NNP" ], "gradualism": [ "NN" ], "dog-eat-dog": [ "JJ" ], "constellations": [ "NNS" ], "gradualist": [ "NN" ], "Hauser": [ "NNP" ], "dabbed": [ "VBD" ], "intifadah": [ "NN" ], "high-minded": [ "JJ" ], "Isao": [ "NNP" ], "quieter": [ "JJR" ], "MacIsaacs": [ "NNP" ], "necktie": [ "NN" ], "laden": [ "JJ", "VBN", "VB" ], "American-Jewish": [ "JJ" ], "hamper": [ "VB", "NN" ], "light-crude": [ "NN" ], "quieted": [ "VBD", "VBN" ], "Library": [ "NNP", "NN" ], "fruit-flavored": [ "JJ" ], "Reinisch": [ "NNP" ], "transmit": [ "VB", "VBP" ], "correlating": [ "VBG" ], "tax-credit": [ "NN" ], "writhe": [ "NN", "VB" ], "Frozen": [ "VBN" ], "Computers": [ "NNPS", "NNP", "NNS" ], "Bessie\\/Harper": [ "NNP" ], "Ryder": [ "NNP" ], "exercised": [ "VBN", "VBD", "JJ" ], "anatomy": [ "NN" ], "Korea": [ "NNP" ], "Wenz": [ "NNP" ], "Sieckman": [ "NNP" ], "exercises": [ "NNS", "VBZ" ], "Andrus": [ "NNP" ], "Went": [ "VBD" ], "Atsushi": [ "NNP" ], "duckling": [ "NN" ], "alumni": [ "NNS" ], "Scene": [ "NNP", "NN" ], "voulez": [ "FW" ], "missed": [ "VBD", "VBN", "JJ" ], "Skaggs": [ "NNP" ], "Egnuss": [ "NNP" ], "profundity": [ "NN" ], "theatrically": [ "RB" ], "Tombigbee": [ "NNP" ], "pre-trading": [ "JJ" ], "Monitor": [ "NNP" ], "Opaque": [ "JJ" ], "doped": [ "JJ" ], "damed": [ "VBD", "VBN" ], "number-crunchers": [ "NNS" ], "Ralston-Purina": [ "NNP" ], "Ganges": [ "NNP" ], "cherry-flavored": [ "JJ" ], "cogeneration-plant": [ "NN" ], "steadying": [ "JJ" ], "doper": [ "NN" ], "Anna": [ "NNP" ], "European": [ "JJ", "NN", "NNP" ], "coup-makers": [ "NNS" ], "pant-legs": [ "NNS" ], "whistle-blower": [ "NN" ], "Judsons": [ "NNPS" ], "easy-to-reach": [ "JJ" ], "Security-Connecticut": [ "NNP" ], "deepest": [ "JJS" ], "firebombs": [ "NNS" ], "personality": [ "NN" ], "Fiscal": [ "JJ", "NN", "NNP" ], "stasis": [ "NN" ], "three-dimensionality": [ "NN" ], "egghead": [ "NN" ], "cardinals": [ "NNS" ], "mEq.": [ "NN" ], "going-private": [ "JJ" ], "gored": [ "VBN" ], "Quick": [ "NNP", "RB", "JJ" ], "gambler-politician": [ "NN" ], "Bahia": [ "NNP" ], "monologues": [ "NNS" ], "Concertante": [ "NNP" ], "Fife": [ "NNP" ], "winos": [ "NNS" ], "covering": [ "VBG", "NN" ], "idioms": [ "NNS" ], "Clinic": [ "NNP" ], "one-hundredth": [ "NN" ], "undrawn": [ "NN" ], "pointers": [ "NNS" ], "Functionally": [ "RB" ], "half-percent": [ "JJ" ], "Luxurious": [ "JJ" ], "uninhabited": [ "JJ" ], "press-forge": [ "NN" ], "w.": [ "JJ" ], "single-A-1\\": [ "NN" ], "window-film": [ "NN" ], "Rivals": [ "NNS" ], "Foster": [ "NNP" ], "cattle": [ "NNS", "NN" ], "Longhorn": [ "NNP" ], "Hardly": [ "RB" ], "Indonesian": [ "JJ", "NNP" ], "Comprehensive": [ "NNP", "JJ" ], "scoffing": [ "NN" ], "Water": [ "NNP", "NN" ], "Ben-hadad": [ "NNP" ], "cellist": [ "NN" ], "counterattacked": [ "VBD" ], "payout-bylaws": [ "NNS" ], "failings": [ "NNS" ], "warmed-over": [ "IN" ], "ocular": [ "JJ" ], "terms": [ "NNS", "VBZ" ], "Inevitably": [ "RB" ], "wo": [ "MD" ], "Gignac": [ "NNP" ], "bioresearch": [ "NN" ], "patty-cake": [ "JJ" ], "sleek-headed": [ "JJ" ], "McFee": [ "NNP" ], "Danilow": [ "NNP" ], "admirals": [ "NNS" ], "Gumbel\\/Walt": [ "NNP" ], "convertible": [ "JJ", "NN" ], "overestimated": [ "VBD", "VBN" ], "oomph": [ "NN" ], "electing": [ "VBG" ], "foes": [ "NNS" ], "Chicago-Paris": [ "NNP" ], "Guidelines": [ "NNS" ], "didactic": [ "JJ" ], "Boliou": [ "NNP" ], "brag": [ "VB", "VBP", "NN" ], "brad": [ "NN" ], "brah": [ "FW" ], "Cokes": [ "NNS" ], "bran": [ "NN" ], "kronor": [ "NNS", "FW", "NN" ], "gable": [ "NN" ], "year-end": [ "NN", "JJ", "RB" ], "narcosis": [ "NN" ], "fresh-perked": [ "JJ" ], "dawdled": [ "VBD" ], "headlights": [ "NNS" ], "condemned": [ "VBN", "JJ", "VBD" ], "Kean": [ "NNP" ], "Seemingly": [ "RB" ], "Divertimento": [ "NNP" ], "Cleaning": [ "VBG", "NN" ], "appreciation": [ "NN" ], "co-anchor": [ "NN", "JJ" ], "beebread": [ "NN" ], "droplets": [ "NNS" ], "sequence-tagged": [ "JJ" ], "Dream-Torkin": [ "NNP" ], "fest": [ "NN", "JJS" ], "scaled-backed": [ "JJ" ], "XYVISION": [ "NNP" ], "deterred": [ "VBN", "VBD" ], "co-owner": [ "NN" ], "vaccinating": [ "VBG" ], "Percussion": [ "NNP" ], "launcher": [ "NN" ], "launches": [ "VBZ", "NNS" ], "stubs": [ "NNS" ], "air": [ "NN", "VB", "VBN", "VBP" ], "aim": [ "NN", "VBP", "VB" ], "harrumphing": [ "NN" ], "trumpeted": [ "VBD", "VBN" ], "aid": [ "NN", "VB", "VBP" ], "property": [ "NN" ], "inspired": [ "VBN", "JJ", "VBD" ], "launched": [ "VBN", "VBD", "VB" ], "paeans": [ "NNS" ], "plateful": [ "JJ" ], "Baltasar": [ "NNP" ], "V.O.": [ "NNP" ], "VWR": [ "NNP" ], "electromechanical": [ "JJ" ], "uplift": [ "NN", "VB" ], "slighting": [ "VBG" ], "Roseanne": [ "NNP" ], "crawlspace": [ "NN" ], "Willcox": [ "NNP" ], "Petitio": [ "NNP" ], "Pratt": [ "NNP" ], "Gerlinger": [ "NNP" ], "air-freight-forwarding": [ "JJ" ], "hierarchies": [ "NNS" ], "lithium": [ "NN" ], "unconcern": [ "NN" ], "Amaral": [ "NNP" ], "palpably": [ "RB" ], "disagreement": [ "NN" ], "noncommercial": [ "JJ" ], "redneck": [ "NN" ], "palpable": [ "JJ" ], "de-emphasize": [ "VB" ], "commodity-price": [ "JJ" ], "prescribed": [ "VBN", "JJ", "VBD" ], "Addressing": [ "VBG" ], "diagramming": [ "VBG" ], "actinometer": [ "NN" ], "episodic": [ "JJ" ], "director-general": [ "NN" ], "peacocks": [ "NNS" ], "Charlestonians": [ "NNPS", "NNS" ], "television-related": [ "JJ" ], "Wartzman": [ "NNP" ], "contact": [ "NN", "JJ", "VB" ], "prescribes": [ "VBZ" ], "droppers": [ "NNS" ], "analyzable": [ "JJ" ], "white-coated": [ "JJ" ], "Swank": [ "NNP" ], "Picchi": [ "NNP" ], "kale": [ "NN" ], "Parkland": [ "NNP" ], "kali": [ "FW" ], "anti-social": [ "JJ" ], "Editors": [ "NNS" ], "nondrying": [ "JJ" ], "bandied": [ "VBN" ], "new-spilled": [ "JJ" ], "cervix": [ "NN" ], "eying": [ "VBG" ], "tyrannize": [ "VB" ], "re-activate": [ "VB" ], "board": [ "NN", "RB", "VB" ], "marginal": [ "JJ" ], "Thornburgh": [ "NNP" ], "expelled": [ "VBN", "VBD" ], "progressed": [ "VBD", "VBN" ], "retread": [ "NN" ], "KODAK": [ "NNP" ], "Try": [ "VB", "VBP" ], "Thomson-CSF": [ "NNP" ], "vies": [ "VBZ" ], "unification": [ "NN" ], "cosmical": [ "JJ" ], "progresses": [ "VBZ" ], "non-employee": [ "JJ" ], "operatorship": [ "NN" ], "Lizt": [ "NNP" ], "Arpege": [ "NNP" ], "bogeys": [ "NNS" ], "super-regional": [ "JJ" ], "Liza": [ "NNP" ], "oil-driller": [ "NN" ], "self-portraits": [ "NNS" ], "reinterpreting": [ "VBG" ], "augur": [ "VBP" ], "hard-hitting": [ "JJ" ], "Naperville": [ "NNP" ], "non-party": [ "JJ" ], "honored": [ "VBN", "JJ", "VBD" ], "honoree": [ "NN" ], "lashes": [ "NNS" ], "Cirona": [ "NNP" ], "Sunbird": [ "NNP" ], "tapis": [ "NN" ], "eyeing": [ "VBG" ], "lashed": [ "VBD", "VBN" ], "Sheraton": [ "NNP" ], "treasurers": [ "NNS" ], "somersaulting": [ "JJ", "NN" ], "Ear-Muffs": [ "NNPS" ], "Boltz": [ "NNP" ], "/": [ "NN", "JJ" ], "mulls": [ "VBZ" ], "nuzzled": [ "VBD" ], "Jupiter-bound": [ "JJ" ], "Judea": [ "NNP" ], "beating": [ "VBG", "NN" ], "haberdasheries": [ "NNS" ], "JYJ": [ "NN|SYM" ], "Medgyessy": [ "NNP" ], "Micronics": [ "NNP" ], "cash-strapped": [ "JJ" ], "home-grown": [ "JJ" ], "Ebasco": [ "NNP" ], "third-tier": [ "JJ" ], "GM-10s": [ "NNP" ], "budget$": [ "$" ], "constructive": [ "JJ" ], "circonscription": [ "NN" ], "flinching": [ "VBG" ], "Baxter": [ "NNP" ], "callable": [ "JJ" ], "Strickland": [ "NNP" ], "goldbanded": [ "VBN" ], "Chinese-Soviet": [ "NNP" ], "numerator": [ "NN" ], "three-meter-high": [ "JJ" ], "Simba": [ "NNP" ], "hazes": [ "NNS" ], "Popoff": [ "NNP" ], "Dauphine": [ "NNP" ], "digestion": [ "NN" ], "hell-raising": [ "NN" ], "FEARS": [ "NNS" ], "bound": [ "VBN", "JJ", "NN", "VBD" ], "Hopi": [ "NNP" ], "Tipperary": [ "NNP" ], "Insider": [ "NNP", "JJ", "NN" ], "non-controlling": [ "JJ" ], "crags": [ "NNS" ], "capped": [ "VBD", "VBN", "JJ" ], "Judging": [ "VBG", "NNP", "NN" ], "croaks": [ "NNS" ], "Sarandon": [ "NNP" ], "mutates": [ "VBZ" ], "divertimento": [ "JJ" ], "Reptilian": [ "NNP" ], "mutated": [ "VBN" ], "Oakhurst": [ "NNP" ], "herdsmen": [ "NNS" ], "tints": [ "NNS" ], "converse": [ "VB", "NN" ], "Minn.-based": [ "JJ" ], "less-established": [ "JJ" ], "Novello": [ "NNP" ], "PRESIDENT": [ "NN", "NNP" ], "restive": [ "JJ" ], "true": [ "JJ" ], "Left": [ "NNP", "VBD", "VBN", "JJ", "NN", "RB" ], "nationwide": [ "JJ", "RB" ], "absent": [ "JJ", "VB" ], "Menuhin": [ "NNP" ], "undefeated": [ "JJ" ], "liens": [ "NNS" ], "Alar-style": [ "JJ" ], "Patience": [ "NN" ], "cosec": [ "NN" ], "anew": [ "RB" ], "inquiring": [ "JJ", "VBG" ], "medication": [ "NN" ], "Carpeting": [ "NN" ], "lowering": [ "VBG", "NN" ], "Purvis": [ "NNP" ], "lumped": [ "VBN", "VBD" ], "warm-red": [ "JJ" ], "self-dramatization": [ "NN" ], "Fieldcrest": [ "NNP" ], "write": [ "VB", "VBP" ], "fast-food": [ "NN", "JJ" ], "topped": [ "VBD", "VBN" ], "porosity": [ "NN" ], "polymyositis": [ "NN" ], "Jolliffe": [ "NNP" ], "topper": [ "NN" ], "frolic": [ "NN", "VB" ], "quickening": [ "VBG" ], "growth-suppressing": [ "JJ" ], "EXXON": [ "NNP" ], "declassifying": [ "VBG" ], "Isoda": [ "NNP" ], "Daisy-Cadnetix": [ "NNP" ], "notepad": [ "NN" ], "indenture": [ "NN" ], "Koran": [ "NNP" ], "concurrent": [ "JJ" ], "vacuum-formed": [ "JJ" ], "Krohn": [ "NNP" ], "base-price": [ "NN" ], "abridgment": [ "NN" ], "five-and-twenty": [ "JJ" ], "Macksey": [ "NNP" ], "radioactivity": [ "NN" ], "governed": [ "VBN", "JJ", "VBD" ], "outlive": [ "VB" ], "collared": [ "VBN" ], "WBAI": [ "NNP" ], "loyal": [ "JJ" ], "rainier": [ "JJR" ], "telephone-network": [ "JJ" ], "erased": [ "VBN", "VBD" ], "deigned": [ "VBD" ], "Goetz": [ "NNP" ], "quality-conscious": [ "JJ" ], "consul": [ "NN" ], "margined": [ "VBN" ], "unmixed": [ "VBN" ], "Bowenized": [ "VBN" ], "Marsha": [ "NNP" ], "Britches": [ "NNS" ], "adamantly": [ "RB" ], "Cassiopeia": [ "NNP" ], "Yamabe": [ "NNP" ], "Palme": [ "NNP" ], "killings": [ "NNS" ], "Bold": [ "NNP" ], "sacked": [ "VBD", "VBN" ], "Beregovoy": [ "NNP" ], "shrinkage": [ "NN" ], "Finis": [ "NNP" ], "Boll": [ "NNP" ], "rhythm": [ "NN" ], "co-presidents": [ "NNS" ], "Fritzie": [ "NNP" ], "decking": [ "NN", "VBG" ], "pondered": [ "VBD", "VBN" ], "Gentile": [ "NNP" ], "Eighty-Eight": [ "NNP" ], "non-accrual": [ "JJ" ], "Kodiak": [ "NNP" ], "entries": [ "NNS" ], "non-metallic": [ "JJ" ], "perceived": [ "VBN", "VBD", "JJ" ], "Parker": [ "NNP" ], "PUTS": [ "NNPS" ], "Just": [ "RB", "NNP", "JJ" ], "Kiddie": [ "NNP" ], "anisotropy": [ "NN" ], "over-ambition": [ "NN" ], "womb-to-tomb": [ "JJ" ], "shuttering": [ "VBG" ], "perceives": [ "VBZ" ], "SR": [ "NNP" ], "prohibiton": [ "NN" ], "woven": [ "VBN", "JJ" ], "unsubsidized": [ "JJ" ], "three-dimensional": [ "JJ" ], "WoodMac": [ "NNP" ], "paydown": [ "NN" ], "scarcity": [ "NN" ], "Berche": [ "NNP" ], "Bert": [ "NNP" ], "purchasers": [ "NNS" ], "curse": [ "NN", "VB" ], "appear": [ "VB", "VBP" ], "Surlyn": [ "NNP" ], "Georgian": [ "JJ", "NNP" ], "pleasingly": [ "RB" ], "havoc": [ "NN" ], "Berg": [ "NNP" ], "consortia": [ "NNS", "NN" ], "Imaging": [ "NNP" ], "pulsating": [ "VBG" ], "Imagine": [ "VB", "NNP" ], "appeal": [ "NN", "VBP", "VB" ], "self-preservation": [ "NN" ], "consolidations": [ "NNS" ], "Conspicuous": [ "JJ" ], "Momoyama": [ "NNP" ], "vocalists": [ "NNS" ], "oscillating": [ "VBG" ], "fast-grossing": [ "JJ" ], "astrophysicist": [ "NN" ], "featherbedding": [ "NN" ], "fractious": [ "JJ" ], "Jittery": [ "JJ" ], "suckers": [ "NNS" ], "Jerral": [ "NNP" ], "Deadlock": [ "NN" ], "Sells": [ "NNP", "VBZ" ], "pesticides.``": [ "``" ], "Alvear": [ "NNP" ], "incoming": [ "JJ", "VBG" ], "Reservoir": [ "NNP" ], "impatiently": [ "RB" ], "SF": [ "NNP" ], "depositions": [ "NNS" ], "pictorial": [ "JJ" ], "Staggeringly": [ "RB" ], "tax-revision": [ "JJ" ], "homecoming": [ "NN" ], "Flav-O-Rich": [ "NNP" ], "penalizes": [ "VBZ" ], "mild-winter": [ "JJ" ], "Murrow": [ "NNP" ], "Amonasro": [ "NNP" ], "outfly": [ "VB" ], "jolts": [ "NNS" ], "stings": [ "NNS" ], "penalized": [ "VBN", "VBD" ], "stingy": [ "JJ" ], "prove": [ "VB", "VBP" ], "beneficence": [ "NN" ], "Legent": [ "NNP" ], "ayatollah": [ "NN" ], "territories": [ "NNS" ], "BSN": [ "NNP", "NN" ], "non-Big": [ "JJ" ], "ca.": [ "IN", "NN" ], "cuter": [ "JJR" ], "BSB": [ "NNP" ], "anemias": [ "NNS" ], "Pity": [ "NNP", "VB" ], "hesitates": [ "VBZ" ], "commissioner": [ "NN" ], "Pitz": [ "NNP" ], "repentance": [ "NN" ], "symptomatic": [ "JJ" ], "absorptions": [ "NNS" ], "commissioned": [ "VBN", "VBD" ], "hesitated": [ "VBD", "VBN" ], "containing": [ "VBG" ], "fingered": [ "VBD", "VBN" ], "Air-raid": [ "JJ" ], "Fyodor": [ "NNP" ], "unsung": [ "JJ" ], "rapidly-diminishing": [ "JJ" ], "Lieb": [ "NNP" ], "organizations": [ "NNS" ], "Klute": [ "NNP" ], "Lied": [ "NNP" ], "indescribable": [ "JJ" ], "car": [ "NN" ], "Magnetic": [ "JJ" ], "cap": [ "NN", "VBP", "VB" ], "Lien": [ "NN" ], "abacuses": [ "NNS" ], "undiversified": [ "JJ", "VBN" ], "cat": [ "NN" ], "hardest": [ "JJS", "RBS", "RB" ], "renders": [ "VBZ" ], "can": [ "MD", "NN", "VB" ], "pepper-coated": [ "JJ" ], "cab": [ "NN" ], "inpost": [ "NN" ], "room-rate": [ "JJ" ], "Hirschfeld": [ "NNP" ], "book-to-bill": [ "JJ", "NN" ], "nonpaying": [ "JJ" ], "o": [ "IN", "NN", "RB" ], "repackaged": [ "VBN" ], "Varigrad": [ "NNP" ], "Actor-Crooner": [ "NNP" ], "clothing": [ "NN" ], "McNichols": [ "NNP" ], "haulers": [ "NNS" ], "unwavering": [ "VBG" ], "Backer": [ "NNP" ], "Bitter": [ "JJ" ], "freezer": [ "NN" ], "freezes": [ "VBZ", "NNS" ], "Firemen": [ "NNS" ], "Marshes": [ "NNP" ], "Eaters": [ "NNS" ], "Pericles": [ "NNP" ], "pinch-hitters": [ "NNS" ], "deviated": [ "VBD", "VBN" ], "Matsuo": [ "NNP" ], "backlots": [ "NNS" ], "deviates": [ "VBZ" ], "alternative-operator": [ "NN" ], "Ablard": [ "NNP" ], "Whitfield": [ "NNP" ], "Upstairs": [ "NN" ], "Metropolitan": [ "NNP" ], "Grishaw-Mueller": [ "NNP" ], "priestly": [ "JJ" ], "electrolysis-of-water": [ "JJ" ], "Heeding": [ "VBG" ], "Celnicker": [ "NNP" ], "hightops": [ "NNS" ], "deactivated": [ "VBN" ], "Aichi": [ "NNP", "NNS" ], "Dream-Miss": [ "NNP" ], "WNBC-TV": [ "NNP" ], "deactivates": [ "VBZ" ], "restructurings": [ "NNS" ], "Compress": [ "VB" ], "vicinity": [ "NN" ], "quibs": [ "NNS" ], "E.P.": [ "NN" ], "medical-test": [ "JJ" ], "Rogers": [ "NNP" ], "Fall": [ "NNP", "NN", "VB" ], "Peralta": [ "NNP" ], "Panzhihua": [ "NNP" ], "tails": [ "NNS" ], "woodchucks": [ "NNS" ], "vigilance": [ "NN" ], "Friar": [ "NN" ], "denominational": [ "JJ" ], "Interfering": [ "VBG" ], "preacher-singer": [ "NN" ], "Phalanx": [ "NNP" ], "lineage": [ "NN" ], "Milt": [ "NNP" ], "intrigues": [ "NNS" ], "chuckled": [ "VBD" ], "scarcer": [ "JJR", "NN" ], "still-commanding": [ "JJ" ], "Bressler": [ "NNP" ], "chuckles": [ "NNS", "VBZ" ], "Redford": [ "NNP" ], "intrigued": [ "VBN", "JJ" ], "Mile": [ "NNP" ], "Mill": [ "NNP" ], "skirmishers": [ "NNS" ], "Milk": [ "NN", "NNP" ], "Airmail": [ "NN" ], "back-issue": [ "JJ" ], "sobbingly": [ "RB" ], "Pere": [ "NNP" ], "Perk": [ "NNP" ], "directing": [ "VBG", "NN" ], "hurried": [ "VBD", "VBN", "JJ" ], "T.H.": [ "NNP" ], "dideoxyinosine": [ "NN" ], "Suzuka": [ "NNP" ], "Peru": [ "NNP", "NN" ], "hurries": [ "VBZ" ], "happen": [ "VB", "VBP" ], "Suzuki": [ "NNP" ], "amusement": [ "NN" ], "Mythical": [ "JJ" ], "irons": [ "NNS", "VBZ" ], "Assess": [ "VB" ], "shadowing": [ "NN", "VBG" ], "Malaria": [ "NN" ], "wind-velocity": [ "NN" ], "antiwar": [ "JJ" ], "irony": [ "NN" ], "communicating": [ "VBG", "NN" ], "worshiped": [ "VBN" ], "Mimieux": [ "NNP" ], "increase": [ "NN", "VB", "VBP" ], "Threads": [ "NNS" ], "rational": [ "JJ" ], "side-by-side": [ "RB" ], "ruinous": [ "JJ" ], "Conte": [ "NNP" ], "Af.": [ "NNP", "NN" ], "punky": [ "JJ" ], "cars": [ "NNS" ], "carp": [ "VBP", "NN" ], "punks": [ "NNS" ], "INTENSIVE": [ "JJ" ], "intruding": [ "VBG" ], "caro": [ "FW" ], "counteracted": [ "VBN", "VBD" ], "ominous": [ "JJ" ], "Belmonts": [ "NNPS" ], "card": [ "NN" ], "care": [ "NN", "VB", "VBP" ], "vestige": [ "NN" ], "Gulick": [ "NNP" ], "beautify": [ "VBP" ], "McCurry": [ "NNP" ], "Linker": [ "NNP" ], "billion-a-year": [ "JJ" ], "entrusted": [ "VBN" ], "Partisans": [ "NNS" ], "Linked": [ "VBN" ], "diocs": [ "NNS" ], "low-end": [ "JJ", "NN" ], "high-power": [ "JJ" ], "Bois": [ "NNP" ], "Titche": [ "NNP" ], "indecent": [ "JJ" ], "untrue": [ "JJ" ], "botanist": [ "NN" ], "Templeman": [ "NNP" ], "message": [ "NN" ], "drove": [ "VBD", "NN" ], "creche": [ "NN" ], "truthfully": [ "RB" ], "checked": [ "VBN", "VBD", "JJ" ], "waned": [ "VBD", "VBN" ], "SU-27": [ "NN" ], "crossings": [ "NNS" ], "acre-feet": [ "NN" ], "mortgage-insurance": [ "JJ", "NN" ], "checker": [ "NN" ], "blackening": [ "NN" ], "undergrads": [ "NNS" ], "triple-checked": [ "VBD" ], "national": [ "JJ", "NN", "RB" ], "Garratt": [ "NNP" ], "wanes": [ "VBZ", "NNS" ], "dismembered": [ "VBD" ], "nutrition": [ "NN" ], "Segura": [ "NNP" ], "needed...": [ ":" ], "asides": [ "NNS" ], "quam": [ "FW" ], "Hobart": [ "NNP" ], "Nairobi": [ "NNP" ], "DataPlan": [ "NNP" ], "television": [ "NN" ], "velveteen": [ "NN" ], "model-year": [ "JJ" ], "bastions": [ "NNS" ], "monopolies": [ "NNS" ], "Starling": [ "NNP" ], "unimpeachable": [ "JJ" ], "profit-oriented": [ "JJ" ], "incepted": [ "VBD" ], "Yasumichi": [ "NNP" ], "respectability": [ "NN" ], "sea-damp": [ "JJ" ], "troublesome": [ "JJ" ], "contentious": [ "JJ" ], "consolidated-pretax": [ "JJ" ], "Locking": [ "VBG" ], "punctually": [ "RB" ], "comfy": [ "JJ" ], "distorted": [ "VBN", "VBD", "JJ" ], "fetal-protection": [ "JJ" ], "Trash": [ "NNP", "VB" ], "USIA": [ "NNP" ], "sodomy": [ "NN" ], "undercurrent": [ "NN" ], "Okinawa": [ "NNP" ], "USIS": [ "NNP" ], "charlatanry": [ "NN" ], "deux": [ "FW" ], "Hadson": [ "NNP" ], "Aggie": [ "NNP" ], "uncousinly": [ "JJ" ], "Hillyer": [ "NNP" ], "Mijbil": [ "NNP" ], "price": [ "NN", "VBP", "VB" ], "affirmations": [ "NNS" ], "KSAN": [ "NNP" ], "Methyl": [ "NN" ], "rationale": [ "NN" ], "successive": [ "JJ" ], "mullah": [ "NN" ], "]": [ ")" ], "Childhood": [ "NNP", "NN" ], "SSMC": [ "NNP" ], "forever": [ "RB" ], "Scrabble": [ "NNP" ], "anticorruption": [ "NN" ], "unamended": [ "JJ" ], "duplication": [ "NN" ], "Chromosome": [ "NN" ], "underestimates": [ "VBZ" ], "well-rounded": [ "JJ" ], "thefin": [ "VBG" ], "laureate": [ "NN" ], "rambling": [ "NN", "JJ" ], "operagoers": [ "NNS" ], "mains": [ "NNS" ], "U.S.-made": [ "JJ" ], "Alquist": [ "NNP" ], "Hoopla": [ "NNP" ], "Ruhollah": [ "NNP" ], "low-acid": [ "JJ" ], "REITs": [ "NNS" ], "Southwest": [ "NNP", "JJ", "NN", "RB" ], "Chautauqua": [ "NNP" ], "Hisao": [ "NNP" ], "saints": [ "NNS" ], "Kiang": [ "NNP" ], "Jacoboski": [ "NNP" ], "deployments": [ "NNS" ], "computer-unit": [ "JJ" ], "inventions": [ "NNS" ], "misquoting": [ "VBG" ], "Banerian": [ "NNP" ], "overwritten": [ "JJ" ], "Angeles-Pasadena": [ "NNP" ], "shepherding": [ "VBG" ], "grossing": [ "VBG" ], "Barring": [ "VBG" ], "peritoneal": [ "JJ" ], "Sidak": [ "NNP" ], "Burnand": [ "NNP" ], "denting": [ "VBG" ], "Haydon": [ "NNP" ], "Capitoline": [ "NNP" ], "unsaleable": [ "JJ" ], "ad-hoc": [ "JJ" ], "long-dominant": [ "JJ" ], "shareholdings": [ "NNS" ], "indeterminable": [ "JJ" ], "crotchety": [ "JJ" ], "effectual": [ "JJ" ], "quickie": [ "NN", "JJ" ], "gleamed": [ "VBD" ], "nonspecifically": [ "RB" ], "physically": [ "RB" ], "equalization": [ "NN" ], "Bankcard": [ "NNP" ], "Hofstra": [ "NNP" ], "asleep": [ "RB", "JJ" ], "CBC": [ "NNP" ], "char-grilled": [ "JJ" ], "Ferment": [ "NN" ], "Catalonians": [ "NNPS" ], "exterminating": [ "VBG" ], "decidely": [ "RB" ], "Legalization": [ "NN" ], "incite": [ "VB", "VBP" ], "Cellulose": [ "NN" ], "Tons": [ "NNS" ], "Wetter": [ "NNP" ], "Leeds": [ "NNP" ], "Rostagno": [ "NNP" ], "Coordinating": [ "NNP" ], "Heffer": [ "NNP" ], "Golly": [ "UH" ], "sun-burned": [ "JJ" ], "Scenic": [ "JJ" ], "blame": [ "VB", "NN", "VBP" ], "sinecures": [ "NNS" ], "Delaunay": [ "NNP" ], "sub-conscious-level": [ "NN" ], "Thaxter": [ "NNP" ], "pertain": [ "VBP", "VB" ], "Oh-the-pain-of-it": [ "UH" ], "tie-breaker": [ "NN" ], "Through": [ "IN", "NNP" ], "aura": [ "NN" ], "newfound": [ "JJ" ], "evict": [ "VB" ], "mites": [ "NNS" ], "Jeremy": [ "NNP" ], "diachronic": [ "JJ" ], "Jose": [ "NNP" ], "Pictures": [ "NNPS", "NNP", "NNS" ], "deviating": [ "VBG" ], "Flite-King": [ "JJ" ], "ASSOCIATES": [ "NNP", "NNPS" ], "Chinese-inspired": [ "JJ" ], "evangelists": [ "NNS" ], "eight-team": [ "JJ" ], "upper-house": [ "NN", "JJ" ], "Sportscasters": [ "NNS" ], "McWilliams": [ "NNP" ], "Tylan": [ "NNP" ], "Stick": [ "NNP", "VB" ], "Tanks": [ "NNS" ], "prurient": [ "JJ" ], "linguistic": [ "JJ" ], "jerky": [ "JJ", "NN" ], "marrowbones": [ "NNS" ], "Harpener": [ "NNP" ], "confectionary": [ "JJ" ], "Portsmouth": [ "NNP" ], "rubs": [ "NNS", "VBZ" ], "Ravine": [ "NNP" ], "Pasley": [ "NNP" ], "cigarette-tax": [ "NN" ], "P-E": [ "NNP", "NN" ], "land-ownership": [ "NN" ], "purse-snatchings": [ "NNS" ], "regurgitating": [ "VBG" ], "Schnitz": [ "NNP" ], "pistol-packing": [ "JJ" ], "freely": [ "RB" ], "thrillers": [ "NNS" ], "Manuela": [ "NNP" ], "ein": [ "FW" ], "polymer": [ "NN" ], "Herdman": [ "NNP" ], "alcoholic": [ "JJ", "NN" ], "AIW": [ "NNP" ], "health-care": [ "NN", "JJ" ], "AIR": [ "NNP", "NN" ], "AIM": [ "NNP" ], "Hammacks": [ "NNP", "NNPS" ], "pleads": [ "VBZ" ], "attributed": [ "VBD", "VBN" ], "achievement": [ "NN" ], "AID": [ "NNP" ], "AIG": [ "NNP" ], "Silberberg": [ "NNP" ], "AIA": [ "NNP" ], "de-iodinating": [ "VBG", "JJ" ], "farmwives": [ "NNS" ], "quarter-to-quarter": [ "JJ" ], "Sturgess": [ "NNP" ], "halogenated": [ "VBD" ], "Dorrances": [ "NNPS" ], "Conquete": [ "NNP" ], "image-making": [ "NN", "JJ" ], "followers": [ "NNS" ], "Co-cola": [ "NNP" ], "a-la-Aristotle": [ "NN" ], "mouth-watering": [ "JJ" ], "n-dimensional": [ "JJ" ], "petted": [ "VBN" ], "adipic": [ "JJ" ], "Rowswell": [ "NNP" ], "bigoted": [ "JJ" ], "anecdotal": [ "JJ" ], "Beaver": [ "NNP" ], "corpulence": [ "NN" ], "smelt": [ "VBD", "VBN" ], "alligators": [ "NNS" ], "Prosopopoeia": [ "NNP" ], "enchanting": [ "JJ" ], "force-rate": [ "NN" ], "Bogota": [ "NNP" ], "truck-maker": [ "NN" ], "Dass": [ "FW" ], "constitutional": [ "JJ" ], "Dash": [ "NNP", "NN" ], "Rep.": [ "NNP" ], "Heliopolis": [ "NNP" ], "well-fleshed": [ "JJ" ], "calculator-toting": [ "JJ" ], "emergency-medical": [ "JJ" ], "comment": [ "VB", "VBP", "NN" ], "GIMMEE": [ "UH" ], "aeration": [ "NN" ], "Barco": [ "NNP" ], "stateroom": [ "NN" ], "valuable": [ "JJ" ], "fleeced": [ "VBN" ], "rule.": [ "NN" ], "unstaring": [ "VBG" ], "WAFA": [ "NNP" ], "administrator-general": [ "NN" ], "Niepce": [ "NNP" ], "temblor-prone": [ "JJ" ], "geographically": [ "RB" ], "Lewinton": [ "NNP" ], "young-skewing": [ "JJ" ], "fussily": [ "RB" ], "warms": [ "VBZ" ], "zany": [ "JJ" ], "Exporters": [ "NNPS" ], "unfold": [ "VB", "VBP" ], "non-clients": [ "NNS" ], "Pietruski": [ "NNP" ], "FAST-FOOD": [ "NN" ], "rules": [ "NNS", "VBZ" ], "ruler": [ "NN" ], "counter-successes": [ "NNS" ], "calendars": [ "NNS" ], "bureaucratization": [ "NN" ], "briefest": [ "JJS" ], "listening": [ "VBG", "NN" ], "unaccounted": [ "JJ" ], "culprits": [ "NNS" ], "Localism": [ "NN" ], "Toney": [ "NNP" ], "snail-like": [ "JJ" ], "commend": [ "VB", "VBP" ], "SiH": [ "NN" ], "conversing": [ "VBG" ], "dislodged": [ "VBD", "VBN" ], "saleslady": [ "NN" ], "Palmer": [ "NNP" ], "everyone...": [ ":" ], "greeting": [ "NN", "VBG", "JJ" ], "Interpore": [ "NNP" ], "oblivion": [ "NN" ], "Nuveen": [ "NNP" ], "Imitation": [ "NN" ], "Seniors": [ "NNS", "NNP" ], "Thea": [ "NNP" ], "Alfred": [ "NNP" ], "bespectacled": [ "JJ" ], "immovable": [ "JJ" ], "Daytona": [ "NNP" ], "fairs": [ "NNS" ], "post-mortal": [ "JJ" ], "U.S.-China": [ "NNP", "JJ" ], "cleanser": [ "NN" ], "Vowing": [ "VBG" ], "Customs": [ "NNPS", "NNP", "NNS" ], "fullyear": [ "JJ" ], "cleansed": [ "VBD", "VBN" ], "Earl": [ "NNP" ], "pylons": [ "NNS" ], "JUST": [ "RB" ], "Crunch": [ "VB", "NN" ], "radial": [ "JJ" ], "Schumpeter": [ "NNP" ], "unease": [ "NN" ], "BMP-1": [ "NN" ], "uneasy": [ "JJ" ], "lyriist": [ "NN" ], "Undugu": [ "NNP" ], "reader-friendly": [ "JJ" ], "Earp": [ "NNP" ], "throw": [ "VB", "VBP", "NN" ], "Ears": [ "NNS" ], "supervises": [ "VBZ" ], "trekked": [ "VBD" ], "previsions": [ "NNS" ], "Guadalcanal": [ "NNP" ], "supervised": [ "VBD", "JJ", "VBN" ], "wold": [ "MD" ], "rate-tightening": [ "JJ" ], "Knowlton": [ "NNP" ], "flashbacks": [ "NNS" ], "statuette": [ "NN" ], "flim-flammery": [ "NN" ], "Parichy-Hamm": [ "NNP" ], "inflation-created": [ "JJ" ], "numerically": [ "RB" ], "skunks": [ "NNS" ], "Jesperson": [ "NNP" ], "earring": [ "NN" ], "law-school": [ "NN", "JJ" ], "male-headed": [ "JJ" ], "Gutenberghus": [ "NNP" ], "table-tennis": [ "NN" ], "removing": [ "VBG" ], "Stabenau": [ "NNP" ], "backbench": [ "JJ" ], "school-research": [ "JJ" ], "nerve-ends": [ "NNS" ], "greying": [ "VBG" ], "exclusiveness": [ "NN" ], "Sewing": [ "NNP", "VBG" ], "indicators": [ "NNS" ], "Carlin": [ "NNP" ], "Lancia": [ "NNP" ], "Naster": [ "NNP" ], "Strapless": [ "NNP" ], "Cagliari": [ "NNP" ], "P-3": [ "NN" ], "Commitment": [ "NNP" ], "quantitatively": [ "RB" ], "Highways": [ "NNS", "NNP", "NNPS", "RB" ], "ingratitoode": [ "NN" ], "sadness": [ "NN" ], "postures": [ "NNS" ], "pro-ball": [ "NN" ], "C-plane": [ "NN" ], "two-disc": [ "JJ" ], "impersonator": [ "NN" ], "naysayers": [ "NNS" ], "SEEQ": [ "NNP" ], "stiff-backed": [ "JJ" ], "endevor": [ "NN" ], "quandary": [ "NN" ], "reliability": [ "NN" ], "mid-January": [ "NNP" ], "percenter": [ "NN" ], "Fleming": [ "NNP" ], "SEEK": [ "VB" ], "statuses": [ "NNS" ], "Prometrix": [ "NNP" ], "NLRB": [ "NNP" ], "Data-destroying": [ "JJ" ], "Reach": [ "NNP" ], "snuffer": [ "NN" ], "Palladian": [ "NNP" ], "snuffed": [ "VBN", "VBD" ], "CompuServe": [ "NNP" ], "suites": [ "NNS" ], "paranoiac": [ "NN" ], "esthetic": [ "JJ" ], "Fernando": [ "NNP" ], "computerized": [ "JJ", "NN", "VB", "VBN" ], "Outsville": [ "NNP" ], "suited": [ "VBN", "VBD" ], "Cashways": [ "NNPS" ], "CityFed": [ "NNP" ], "redecorating": [ "VBG", "NN" ], "airheads": [ "NNS" ], "Paragould": [ "NNP" ], "Pedigree-contemplating": [ "VBG" ], "Fromm": [ "NNP" ], "aminometha": [ "NN" ], "hard-working": [ "JJ" ], "Fancy": [ "NNP", "JJ" ], "untidy": [ "JJ" ], "Feders": [ "NNP" ], "judgment-proof": [ "JJ" ], "banishment": [ "NN" ], "outlining": [ "VBG" ], "skeleton": [ "NN", "JJ" ], "ESPN": [ "NNP" ], "groundwork": [ "NN" ], "Fernand": [ "NNP" ], "neutrino-sized": [ "JJ" ], "income-earner": [ "NN" ], "Brandhorst": [ "NNP" ], "wire-tapping": [ "NN" ], "contortionists": [ "NNS" ], "Chadroe": [ "NNP" ], "refocus": [ "VB" ], "federalize": [ "VB" ], "equate": [ "VB", "VBP" ], "interior-furnishings": [ "NNS" ], "ESPs": [ "NNPS", "NNS" ], "passivity": [ "NN" ], "Salk": [ "NNP" ], "Sala": [ "NNP" ], "Compassionately": [ "RB" ], "Sale": [ "NNP", "NN" ], "maladjusted": [ "JJ" ], "Salt": [ "NNP", "NN", "VB" ], "Tortoises": [ "NNPS" ], "concurring": [ "VBG" ], "isms": [ "NNS" ], "louis": [ "NNS" ], "unfailingly": [ "RB" ], "state-level": [ "JJ" ], "ponderousness": [ "NN" ], "mutterings": [ "NNS" ], "ogling": [ "VBG" ], "Triple-A": [ "NNP", "JJ" ], "Gulag": [ "NNP", "NN" ], "Stoecklin": [ "NNP" ], "CAMPAIGN": [ "NNP" ], "colossal": [ "JJ" ], "Grandmother": [ "NNP" ], "Jessey": [ "NNP" ], "overturns": [ "VBZ" ], "Generalized": [ "NNP" ], "keening": [ "NN", "VBG" ], "gentler-sloping": [ "JJ" ], "Giurleo": [ "NNP" ], "ecclesiastical": [ "JJ" ], "Singles": [ "NNS", "VBZ" ], "Entombment": [ "NN" ], "boardrooms": [ "NNS" ], "line-item-veto": [ "JJ" ], "thickness": [ "NN" ], "him.": [ "NN" ], "laggardness": [ "NN" ], "proselytizing": [ "VBG", "NN" ], "heavier-than-usual": [ "JJ" ], "Lyneses": [ "NNP" ], "Namib": [ "NNP" ], "Prosecutors": [ "NNS" ], "computer-data-storage": [ "JJ" ], "Staged": [ "VBN" ], "loose": [ "JJ", "RB", "VB", "RB|RP" ], "modify": [ "VB", "VBP" ], "mendacious": [ "JJ" ], "re-vision": [ "NN" ], "Sniffing": [ "VBG" ], "selective": [ "JJ" ], "Diamond-Star": [ "NNP" ], "Newburyport": [ "NNP" ], "Bendjedid": [ "NNP" ], "unproven": [ "JJ" ], "REAL-ESTATE": [ "JJ", "NN" ], "Plouf": [ "NNP" ], "Cougars": [ "NNPS" ], "Korngold": [ "NNP" ], "disassociate": [ "VB" ], "C-minus": [ "JJ" ], "Shimbun": [ "NNP" ], "Shrug": [ "NN" ], "Aeroflot": [ "NNP", "JJ" ], "limos": [ "NNS" ], "Ziari": [ "NNP" ], "grindings": [ "NNS" ], "fatsos": [ "NNS" ], "thatches": [ "NNS" ], "straightened": [ "VBD", "VBN" ], "Alvarez": [ "NNP" ], "toys": [ "NNS", "VBZ" ], "lewdness": [ "NN" ], "Nicol": [ "NNP" ], "impaction": [ "NN" ], "read-only": [ "JJ" ], "Explorer": [ "NNP" ], "probabilities": [ "NNS" ], "Cadillac": [ "NNP", "NN" ], "Agrippa": [ "NNP" ], "Handyman": [ "NNP" ], "Ghoreyeb": [ "NNP" ], "Australites": [ "NNS" ], "FCC": [ "NNP" ], "favorer": [ "NN" ], "Undoubtedly": [ "RB", "NNP" ], "entails": [ "VBZ" ], "Torsten": [ "NNP" ], "turbo": [ "NN" ], "staphylococcus": [ "NN" ], "stylistic": [ "JJ" ], "studio-quality": [ "JJ", "NN" ], "Kalipharma": [ "NNP" ], "dishwasher": [ "NN" ], "Yukihiro": [ "NNP" ], "captors": [ "NNS" ], "instrumental": [ "JJ", "NN" ], "impulse": [ "NN", "JJ" ], "mounted": [ "VBN", "JJ", "VBD" ], "Yerevan": [ "NNP" ], "Megamarketing": [ "NN" ], "nit-picking": [ "NN" ], "Gerstacker": [ "NNP" ], "Stop-loss": [ "NN" ], "breezes": [ "NNS" ], "pawns": [ "NNS" ], "offended": [ "VBN", "JJ", "VBD" ], "hand-made": [ "JJ" ], "adjudging": [ "VBG" ], "fronted": [ "VBD" ], "Boston": [ "NNP" ], "propounded": [ "VBD" ], "situs": [ "NN" ], "history": [ "NN" ], "Normalize": [ "VB" ], "ions": [ "NNS" ], "decapitalized": [ "JJ" ], "CAR": [ "NN" ], "Chinese-American": [ "JJ", "NNP" ], "Martinsburg": [ "NNP" ], "northernmost": [ "JJ" ], "archipelago": [ "NN" ], "BACKED": [ "VBD" ], "fundamentalism": [ "NN" ], "bloodless": [ "JJ" ], "CAE": [ "NNP" ], "firmly": [ "RB" ], "tandem-seat": [ "JJ" ], "E.T.C": [ "NNP" ], "dust-up": [ "NN" ], "menus": [ "NNS" ], "multi-gear": [ "JJ" ], "Clerks": [ "NNS", "NNP" ], "Aldridge": [ "NNP" ], "artist-author": [ "NN" ], "Renault": [ "NNP" ], "Malvenius": [ "NNP" ], "ocher": [ "NN" ], "sneak": [ "VB", "NN", "VBP" ], "Nickless": [ "NNP" ], "Dogumenti": [ "FW" ], "Dreams": [ "NNS", "NNPS", "NNP" ], "gardeners": [ "NNS" ], "invasion": [ "NN" ], "telephoned": [ "VBD", "VBN" ], "custom-make": [ "VB" ], "preferential": [ "JJ" ], "negligibly": [ "RB" ], "Southland": [ "NNP" ], "MAKE": [ "VB" ], "spectra": [ "NNS" ], "spectre": [ "NN" ], "inundations": [ "NNS" ], "Peron": [ "NNP" ], "negligible": [ "JJ" ], "telephones": [ "NNS" ], "deterioration": [ "NN" ], "crafts": [ "NNS" ], "wreaking": [ "VBG" ], "Laurie": [ "NNP" ], "crafty": [ "JJ" ], "orientations": [ "NNS" ], "Jansz.": [ "NNP" ], "help": [ "VB", "NN", "VBP" ], "hierarchy": [ "NN" ], "slouch": [ "NN" ], "sooo": [ "RB" ], "soon": [ "RB" ], "IL-2": [ "NNP" ], "held": [ "VBN", "VBD", "JJ" ], "soot": [ "NN" ], "redfish": [ "NN" ], "drooling": [ "VBG" ], "kinetic": [ "JJ" ], "Michilimackinac": [ "NNP" ], "fanning": [ "VBG", "NN" ], "skirmishing": [ "NN", "VBG" ], "startled-horse": [ "JJ" ], "Sweanor": [ "NNP" ], "Marlborough": [ "NNP" ], "teeming": [ "VBG" ], "watchdogs": [ "NNS" ], "single-class": [ "JJ" ], "Silvershoe": [ "NNP" ], "acculturated": [ "VBN" ], "Frito-Lay": [ "NNP" ], "yj": [ "NN" ], "ym": [ "NN" ], "yl": [ "NN" ], "nondollar": [ "JJ" ], "indefatigable": [ "JJ" ], "yc": [ "NN" ], "yb": [ "NN" ], "ye": [ "PRP", "SYM", "NN" ], "re-declared": [ "VBD" ], "yg": [ "NN" ], "anticipated": [ "VBN", "JJ", "VBD" ], "vomit": [ "VBP" ], "anticipates": [ "VBZ" ], "yp": [ "NN" ], "ys": [ "VBZ" ], "yr": [ "NN" ], "irrationality": [ "NN" ], "yt": [ "NN" ], "drought-shriveled": [ "JJ" ], "Abdul-Raheem": [ "NNP" ], "stopper": [ "NN" ], "erection": [ "NN" ], "Solchaga": [ "NNP" ], "chamfer": [ "NN" ], "Sandia": [ "NNP" ], "ifs": [ "NNS" ], "Culmone": [ "NNP" ], "Ierulli": [ "NNP" ], "malfeasant": [ "JJ" ], "lexicostatistics": [ "NNS" ], "Lippi": [ "NNP" ], "stopped": [ "VBD", "VBN" ], "Council": [ "NNP", "NN" ], "Sandip": [ "NNP" ], "minstrels": [ "NNS" ], "Battalion": [ "NNP" ], "give-away": [ "JJ" ], "End": [ "NN", "VB", "NNP" ], "Kennelly": [ "NNP" ], "Eng": [ "NNP" ], "positioned": [ "VBN", "VBD", "JJ" ], "Acid": [ "JJ" ], "kidnapping": [ "NN", "VBG" ], "Grenoble": [ "NNP" ], "Cozen": [ "NNP" ], "Swavely": [ "NNP" ], "dominates": [ "VBZ" ], "tinting-film": [ "NN" ], "Antwerp-based": [ "JJ" ], "surrounded": [ "VBN", "VBD", "VBN|JJ" ], "Hawthorne": [ "NNP", "NN" ], "price-corroding": [ "JJ" ], "trusts": [ "NNS", "VBZ" ], "flattening": [ "VBG", "NN" ], "Israeli-Palestinian": [ "JJ", "NNP" ], "intransigents": [ "NNS" ], "preparers": [ "NNS" ], "myocardium": [ "NN" ], "earnings-per-share": [ "JJ" ], "issue": [ "NN", "VBP", "VB" ], "like-minded": [ "JJ" ], "WSJ\\": [ "NNP" ], "dictatorial": [ "JJ" ], "Clarendon": [ "NNP" ], "Washingtons": [ "NNPS" ], "labs": [ "NNS" ], "Taittinger": [ "NNP" ], "reason": [ "NN", "VB", "VBP" ], "equivocating": [ "NN" ], "fortress-like": [ "JJ" ], "launch": [ "VB", "NN" ], "good-for-you": [ "JJ" ], "persuading": [ "VBG", "NN" ], "platter": [ "JJ", "NN" ], "blossom": [ "VB", "JJ", "NN" ], "POOCH": [ "NN" ], "beggars": [ "NNS" ], "Codifying": [ "VBG" ], "Elsevier": [ "NNP" ], "product-liability": [ "JJ", "NN" ], "beggary": [ "NN" ], "consultations": [ "NNS" ], "presumptions": [ "NNS" ], "Sybase": [ "NNP" ], "space-weapons": [ "NNS" ], "dominating": [ "VBG", "JJ" ], "croissants": [ "NNS" ], "prohibitively": [ "RB" ], "maple": [ "NN", "JJ" ], "arbitration": [ "NN" ], "stress-related": [ "JJ" ], "Kaulentis": [ "NNP" ], "bum": [ "NN", "VBP", "JJ" ], "transcendent": [ "JJ" ], "econobox": [ "NN" ], "scheme": [ "NN" ], "banana": [ "NN" ], "schema": [ "NN" ], "Money-fund": [ "NN", "JJ" ], "Twenty-seven": [ "JJ" ], "water-ski": [ "NN" ], "Vocal": [ "NN" ], "overdrive": [ "NN" ], "signaling": [ "VBG", "NN" ], "sulfuric": [ "JJ" ], "norms": [ "NNS" ], "ulcerated": [ "JJ" ], "supercharger": [ "NN" ], "Guevara": [ "NNP" ], "tunic": [ "NN" ], "uncolored": [ "JJ" ], "ouster": [ "NN" ], "Schuyler": [ "NNP" ], "Seiler": [ "NNP" ], "alluding": [ "VBG" ], "Jeopardize": [ "VB" ], "merciless": [ "JJ" ], "battering": [ "VBG", "NN" ], "S.C.": [ "NNP" ], "ousted": [ "VBN", "VBD", "JJ" ], "weapon": [ "NN" ], "Deficit": [ "NNP" ], "Parliamentary": [ "JJ" ], "overstaying": [ "VBG" ], "Gon": [ "VBG" ], "Goh": [ "NNP" ], "God": [ "NNP", "UH" ], "Gog": [ "NNP" ], "Goa": [ "NNP" ], "Got": [ "VBD", "VBN", "NNP", "VB" ], "Kalonji": [ "NNP" ], "once-devoted": [ "JJ" ], "sidewise": [ "RB", "JJ" ], "evasion": [ "NN" ], "Approvals": [ "NNS" ], "Demographics": [ "NNS" ], "officers": [ "NNS" ], "cross-purchase": [ "JJ" ], "faultlines": [ "NNS" ], "generics-maker": [ "NN" ], "applauded": [ "VBD", "VBN" ], "Sandler": [ "NNP" ], "experienced": [ "VBN", "JJ", "VBD" ], "English-Scottish-French": [ "NNP" ], "Long-debated": [ "JJ" ], "Magnet": [ "NNP" ], "Slipping": [ "VBG" ], "Massacres": [ "NNS" ], "experiences": [ "NNS", "VBZ" ], "Aboveground": [ "JJ" ], "C.C.B.": [ "NNP" ], "Placements": [ "NNP" ], "Warman": [ "NNP" ], "Sticks": [ "NNP" ], "loopholes": [ "NNS" ], "popularity": [ "NN" ], "unreasonable": [ "JJ" ], "unreasonably": [ "RB" ], "Call-In": [ "NN" ], "latest": [ "JJS", "JJ" ], "hips": [ "NNS" ], "boredom": [ "NN" ], "perseverance": [ "NN" ], "Lennox": [ "NNP" ], "Gauleiter": [ "NNP" ], "languid": [ "JJ" ], "bespeaks": [ "VBZ" ], "planeload": [ "NN" ], "ex-Attorney": [ "NNP" ], "scorched": [ "JJ", "VBD" ], "Ministers": [ "NNPS", "NNP", "NNS" ], "barbell": [ "NN" ], "flood-control": [ "JJ" ], "social-class": [ "JJ" ], "Lennon": [ "NNP" ], "Mengistu": [ "NNP" ], "debt-ceiling": [ "JJ", "NN" ], "scorcher": [ "NN" ], "HILLS": [ "NNP" ], "psychically-blind": [ "JJ" ], "paranoid": [ "JJ" ], "vibration-control": [ "JJ" ], "assertion": [ "NN" ], "striptease": [ "NN" ], "hardener": [ "NN" ], "doodads": [ "NNS" ], "hardened": [ "VBN", "JJ", "VBD" ], "Duffy": [ "NNP" ], "Phineas": [ "NNP" ], "legible": [ "JJ" ], "Sorrell": [ "NNP" ], "management-research": [ "NN" ], "trimesters": [ "NNS" ], "outlast": [ "VB" ], "Sangallo": [ "NNP" ], "Hayasaka": [ "NNP" ], "desulfurization": [ "NN" ], "docile": [ "JJ" ], "isolationism": [ "NN" ], "Feldman": [ "NNP" ], "soft-drink": [ "NN", "JJ" ], "event-risk": [ "JJ", "NN" ], "enlargers": [ "NNS" ], "molten": [ "JJ" ], "cyanide-laced": [ "JJ" ], "snake-oil": [ "JJ", "NN" ], "L.H.": [ "NNP" ], "millenium": [ "NN" ], "Powerful": [ "JJ" ], "poisoner": [ "NN" ], "insurance-company": [ "NN", "JJ" ], "state-owned": [ "JJ" ], "Councilman": [ "NNP" ], "miseries": [ "NNS" ], "jury-rigged": [ "VBD" ], "Bricom": [ "NNP" ], "poisoned": [ "VBN", "VBD" ], "courteous": [ "JJ" ], "adjudicators": [ "NNS" ], "INDEX": [ "NN" ], "Varlaam": [ "NNP" ], "Ackerley": [ "NNP" ], "Tahoe": [ "NNP" ], "disapproving": [ "JJ" ], "linkups": [ "NNS" ], "CHANGED": [ "VBD", "VBN" ], "pithiest": [ "JJS" ], "wife\\/mother": [ "NN" ], "purposeless": [ "JJ" ], "protecting": [ "VBG" ], "Receptech": [ "NNP" ], "big-game": [ "JJ" ], "constellation": [ "NN" ], "Disgruntled": [ "JJ" ], "sixth-biggest": [ "JJ" ], "bifurcate": [ "VB" ], "digitalization": [ "NN" ], "Haestier": [ "NNP" ], "Boltzmann": [ "NNP" ], "Quips": [ "VBZ" ], "Soloviev": [ "NNP" ], "Tehran": [ "NNP" ], "day-long": [ "JJ" ], "opening-hour": [ "JJ" ], "as-yet": [ "RB" ], "Coupal": [ "NNP" ], "invisibly": [ "RB" ], "Departure": [ "NN" ], "Veronis": [ "NNP" ], "rudiments": [ "NNS" ], "pseudo-symmetric": [ "JJ" ], "invisible": [ "JJ" ], "Hohlbein": [ "NNP" ], "ice-core": [ "NN" ], "lookalike": [ "JJ" ], "secrets": [ "NNS" ], "Infantry": [ "NNP" ], "Superconductors": [ "NNS" ], "Schaack": [ "NNP" ], "woke": [ "VBD" ], "class-warfare": [ "JJ", "NN" ], "weatherstrip": [ "VB" ], "procedural": [ "JJ" ], "Graham": [ "NNP" ], "one-product": [ "NN" ], "inflation-wary": [ "JJ" ], "Wan": [ "NNP" ], "passively": [ "RB" ], "Productivity": [ "NN", "NNP" ], "home-run": [ "JJ", "NN" ], "hackers": [ "NNS" ], "charlotte": [ "NN" ], "hewn": [ "VBN" ], "Ltd": [ "NNP", "NN" ], "complies": [ "VBZ" ], "cross-sectional": [ "JJ", "NN" ], "Traditionally": [ "RB" ], "spotting": [ "VBG", "VBG|NN" ], "Way": [ "NN", "NNP" ], "hews": [ "VBZ" ], "vessel": [ "NN" ], "complied": [ "VBN", "VBD" ], "Was": [ "VBD" ], "War": [ "NNP", "JJ", "NN" ], "Alexandrine": [ "JJ" ], "Capt.": [ "NNP" ], "psychotherapists": [ "NNS" ], "Cedar": [ "NNP" ], "f.o.b": [ "JJ" ], "reduced-fat": [ "JJ" ], "Saabye": [ "NNP" ], "Poppenberg": [ "NNP" ], "decisiveness": [ "NN" ], "Allies": [ "NNPS", "NNP", "NNS" ], "overstate": [ "VB", "VBP" ], "Chesebrough-Pond": [ "NNP" ], "permeating": [ "VBG" ], "Fluent": [ "JJ", "NNP" ], "Mayfield": [ "NNP" ], "Allied": [ "NNP", "JJ" ], "recalled": [ "VBD", "VBN" ], "coalitions": [ "NNS" ], "bidding": [ "NN", "VBG", "JJ" ], "reenact": [ "VB" ], "cabdriver": [ "NN" ], "egg-on-the-face": [ "JJ" ], "loon": [ "NN" ], "randomly": [ "RB" ], "loom": [ "VBP", "NN", "VB" ], "soiled": [ "VBN", "JJ", "VBD" ], "look": [ "VB", "NN", "VBP" ], "well-written": [ "JJ" ], "assertedly": [ "RB" ], "Aldomet": [ "NNP" ], "mainframe": [ "NN", "JJ" ], "lightning-occurrence": [ "JJ" ], "endanger": [ "VB", "VBP" ], "loot": [ "NN", "VB" ], "non-junkies": [ "NNS" ], "loop": [ "NN" ], "LOWER": [ "JJR" ], "Pena": [ "NNP" ], "Directive": [ "NNP" ], "fickleness": [ "NN" ], "out-of-touch": [ "JJ" ], "clientslose": [ "JJ" ], "Fingers": [ "NNP" ], "confound": [ "VB" ], "reads": [ "VBZ" ], "Dictator": [ "NNP" ], "Roloff": [ "NNP" ], "three-hour": [ "JJ" ], "hyperbole": [ "NN" ], "Foley": [ "NNP" ], "fedora": [ "NN" ], "Born": [ "VBN", "NNP" ], "repudiated": [ "VBN", "VBD" ], "discredit": [ "VB", "NN" ], "terram": [ "FW" ], "personal-care": [ "JJ", "NN" ], "Ariadne": [ "NNP" ], "TAMPA": [ "NNP" ], "Gerome": [ "NNP" ], "Reactionaries": [ "NNS" ], "arbitrators": [ "NNS" ], "acrobacy": [ "NN" ], "Prick": [ "VB" ], "assortment": [ "NN" ], "skyrocketing": [ "VBG" ], "crucible": [ "NN" ], "ALUMINUM": [ "NNP" ], "half-baked": [ "JJ" ], "Sosnoff": [ "NNP" ], "pricks": [ "NNS" ], "Dunn-Atherton": [ "NNP" ], "garoupa": [ "NN" ], "Rowlands": [ "NNP" ], "grossly": [ "RB" ], "mid-range": [ "JJ" ], "extortionate": [ "JJ" ], "chore": [ "NN" ], "chord": [ "NN" ], "migratory": [ "JJ" ], "Faneuil": [ "NNP" ], "festivus": [ "FW" ], "morsel": [ "NN" ], "Anabel": [ "NNP" ], "Internet": [ "NNP", "NN" ], "startups": [ "NNS" ], "buttoned-down": [ "JJ" ], "Casting": [ "VBG" ], "German-Italian": [ "JJ" ], "Flour": [ "NN" ], "decayed": [ "JJ", "VBD", "VBN" ], "brand-new": [ "JJ" ], "Saalfeld": [ "NNP" ], "Bradford-White": [ "NNP" ], "specially-trained": [ "JJ" ], "Ludlum": [ "NNP" ], "insert": [ "VB", "VBP", "NN" ], "long-acting": [ "JJ" ], "price-depressing": [ "JJ" ], "Bank\\/IMF": [ "NNP" ], "sharers": [ "NNS" ], "Subsidiary": [ "NN" ], "re-invested": [ "JJ", "VBN" ], "audio-specialty": [ "NN" ], "outright": [ "JJ", "RB" ], "Alexandria": [ "NNP" ], "Previously": [ "RB" ], "Ensign": [ "NNP" ], "Boxell": [ "NNP" ], "Windels": [ "NNP" ], "byproduct": [ "NN" ], "swooped": [ "VBD" ], "resold": [ "VBN", "VBD", "VBP", "VB" ], "mathematical": [ "JJ" ], "Haughey": [ "NNP" ], "Carols": [ "NNPS" ], "Guitarist": [ "NNP" ], "left-field": [ "JJ" ], "Plains": [ "NNP", "NNS", "NNPS" ], "Caroli": [ "NNP" ], "window-shopping": [ "NN" ], "gamebird": [ "NN" ], "Carole": [ "NNP" ], "Economy": [ "NNP", "NN" ], "savage": [ "JJ", "NN" ], "paginated": [ "VBN" ], "vacationer": [ "NN" ], "Citrus": [ "NNP" ], "barnstormer": [ "NN" ], "Zhijie": [ "NNP" ], "venturesome": [ "JJ" ], "Gasset": [ "NNP" ], "conditionally": [ "RB" ], "liturgy": [ "NN" ], "great-uncles": [ "NNS" ], "Sangyo": [ "NNP" ], "Andriessen": [ "NNP" ], "forgets": [ "VBZ" ], "minimal": [ "JJ" ], "berated": [ "VBN", "VBD" ], "stem": [ "VB", "NN", "VBP" ], "DOC-IN-A-BOX": [ "NNP" ], "step": [ "NN", "VBP", "VB" ], "outlanders": [ "NNS" ], "stew": [ "NN", "VB" ], "lasts": [ "VBZ" ], "plots": [ "NNS", "VBZ" ], "predictability": [ "NN" ], "space-systems": [ "NNS" ], "toppled": [ "VBN", "VBD" ], "shine": [ "NN", "VBP", "VB" ], "Jin-Shung": [ "NNP" ], "entailed": [ "VBD", "VBN" ], "talks-including": [ "JJ" ], "mega-crash": [ "NN" ], "rumbled": [ "VBD" ], "shins": [ "NNS" ], "messaging": [ "NN", "VBG" ], "pullouts": [ "NNS" ], "classics": [ "NNS" ], "shiny": [ "JJ" ], "dietary": [ "JJ" ], "channeling": [ "VBG" ], "junkholders": [ "NNS" ], "paltry": [ "JJ" ], "computes": [ "VBZ" ], "legislates": [ "VBZ" ], "stopping-point": [ "NN" ], "nonsense": [ "NN", "JJ" ], "say-so": [ "NN" ], "Waltch": [ "NNP" ], "quake-prone": [ "JJ" ], "Stalled": [ "VBN" ], "unbeknownst": [ "JJ" ], "Nogaret": [ "NNP" ], "Ruth": [ "NNP" ], "Villagers": [ "NNS" ], "Papermils": [ "NNP" ], "Gassman": [ "NNP" ], "sashay": [ "NN" ], "Victims": [ "NNS", "NNP" ], "black-consumer": [ "NN" ], "brassiness": [ "NN" ], "Salvatore": [ "NNP" ], "Shylock": [ "NNP" ], "Turkey.": [ "NNP" ], "disallowed": [ "VBD", "VBN" ], "manufacture": [ "VB", "NN", "VBP" ], "harem": [ "NN" ], "dips": [ "NNS" ], "inept": [ "JJ" ], "specialty": [ "NN", "JJ" ], "bolsters": [ "VBZ" ], "Blois": [ "NNP" ], "fishy": [ "JJ" ], "transportation-equipment": [ "NN" ], "gold-convertible": [ "JJ" ], "Unitarian": [ "NNP", "JJ", "NN" ], "persisting": [ "VBG", "JJ" ], "Brookmont": [ "NNP" ], "calligraphers": [ "NNS" ], "patient-care": [ "JJ" ], "Euro-jogging": [ "JJ" ], "accustomed": [ "VBN", "VBN|JJ", "JJ" ], "Lonrho": [ "NNP" ], "Moffitt": [ "NNP" ], "Stone-Consolidated": [ "NNP" ], "bride-gift": [ "NN" ], "Pagemaker": [ "NNP" ], "Ich": [ "FW" ], "estrogen": [ "NN" ], "acidity": [ "NN" ], "Ica": [ "NN" ], "Chalon-sur-Saone": [ "NNP" ], "chafed": [ "VBN" ], "Hampshire": [ "NNP" ], "INTERMARK": [ "NNP" ], "Kitchin": [ "NNP" ], "asters": [ "NNS" ], "chafes": [ "VBZ" ], "psychopath": [ "NN" ], "dammed-up": [ "VBN" ], "Abstractionists": [ "NNS" ], "liberalize": [ "VB", "VBP" ], "sullen": [ "JJ" ], "All-weather": [ "JJ" ], "anthology": [ "NN" ], "rewriting": [ "VBG" ], "hotel\\/casino": [ "NN" ], "bottom-line": [ "JJ" ], "genome": [ "NN" ], "fuzzier": [ "JJR" ], "seduzione": [ "FW" ], "Sisters": [ "NNP", "NNS", "NNPS" ], "Tetanus": [ "NN" ], "battery-operated": [ "JJ", "NN" ], "McKesson": [ "NNP" ], "regulations": [ "NNS" ], "sluicing": [ "VBG" ], "price-stabilizing": [ "JJ" ], "Coca": [ "NNP" ], "neuropathology": [ "NN" ], "shorelines": [ "NNS" ], "thundered": [ "VBD" ], "overlong": [ "JJ" ], "Showtime": [ "NNP" ], "Intermec": [ "NNP" ], "tailpipe": [ "NN" ], "sounder": [ "JJR" ], "wellbeing": [ "NN" ], "pink-petticoated": [ "JJ" ], "repatriations": [ "NNS" ], "goooolick": [ "NN" ], "megawatt": [ "NN" ], "berries": [ "NNS" ], "sounded": [ "VBD", "VBN" ], "sales-of": [ "IN" ], "Erdman": [ "NNP" ], "Brophy": [ "NNP" ], "non-life": [ "JJ" ], "fair-market": [ "JJ" ], "psyche": [ "NN" ], "chicken-mutilating": [ "JJ" ], "bell-ringers": [ "NNS" ], "Canada-U.S.": [ "NNP" ], "post-1979": [ "JJ" ], "Lower-than-expected": [ "JJ" ], "Kuhns": [ "NNP" ], "Righteous": [ "JJ" ], "WLF": [ "NNP" ], "part-owner": [ "NN" ], "shackles": [ "NNS" ], "best-sellers": [ "NNS" ], "Ballroom": [ "NNP" ], "Silas": [ "NNP" ], "Stone": [ "NNP" ], "Award": [ "NNP", "NN" ], "Aware": [ "JJ" ], "wage-rates": [ "NNS" ], "backflips": [ "VBZ" ], "shackled": [ "VBN" ], "Xiangyang": [ "NNP" ], "Swanson": [ "NNP" ], "upstarts": [ "NNS" ], "suite": [ "NN", "FW" ], "Weider": [ "NNP" ], "virtuous": [ "JJ" ], "eight-foot": [ "JJ" ], "Canadian": [ "JJ", "NNP", "NN" ], "miners": [ "NNS" ], "quelling": [ "NN", "VBG" ], "Vermes": [ "NNP" ], "Jaime": [ "NNP" ], "trough": [ "NN" ], "cellular": [ "JJ" ], "S-curve": [ "NN" ], "crowed": [ "VBD", "VBN" ], "facilitate": [ "VB", "VBP" ], "hardware-maintenance": [ "NN" ], "non-existant": [ "JJ" ], "ever-dying": [ "JJ" ], "exasperatingly": [ "RB" ], "Partner": [ "NNP" ], "hairier": [ "JJR" ], "panic-stricken": [ "JJ" ], "defiling": [ "VBG" ], "compensated": [ "VBN", "VBD" ], "Nazario": [ "NNP" ], "teasers": [ "NNS" ], "encroachment": [ "NN" ], "among": [ "IN" ], "decreed": [ "VBD", "VBN" ], "compensates": [ "VBZ" ], "should...": [ ":" ], "Giorgetta": [ "NNP" ], "intraocular": [ "JJ" ], "decrees": [ "NNS", "VBZ" ], "Seventy-fourth": [ "NNP" ], "banquetings": [ "NNS" ], "climes": [ "NNS" ], "sausage": [ "NN" ], "poke": [ "NN", "VB" ], "Locks": [ "NNP" ], "Environmentalists": [ "NNS", "NNPS" ], "marketed": [ "VBN", "VBD" ], "acccounting": [ "NN" ], "TAMMY": [ "NNP" ], "referees": [ "NNS" ], "America": [ "NNP" ], "marketer": [ "NN" ], "Dynabook": [ "NNP" ], "combative": [ "JJ" ], "accomplices": [ "NNS" ], "meandering": [ "VBG" ], "four-door": [ "JJ" ], "consumer-telephone": [ "JJ" ], "Cossacks": [ "NNPS" ], "commercial": [ "JJ", "NN" ], "brooch": [ "NN" ], "Heating": [ "NN", "NNP", "VBG" ], "case...": [ ":" ], "quell": [ "VB" ], "Baird": [ "NNP" ], "ponytails": [ "NNS" ], "canals": [ "NNS" ], "Kostelanetz": [ "NNP" ], "Orgotein": [ "NNP" ], "Lying": [ "VBG" ], "Kernel": [ "NNP" ], "chant": [ "NN", "VB" ], "overseen": [ "VBN", "NN" ], "stone-still": [ "JJ" ], "whisking": [ "VBG" ], "COMMUTERS": [ "NNS" ], "oversees": [ "VBZ" ], "overseer": [ "NN" ], "Kerner": [ "NNP" ], "wig": [ "NN" ], "Gertrude": [ "NNP" ], "Waikiki": [ "NNP" ], "Ritz": [ "NNP" ], "unhitched": [ "VBD", "VBN" ], "win": [ "VB", "NN", "VBP" ], "Yin": [ "NNP" ], "litigators": [ "NNS" ], "muddy-tasting": [ "JJ" ], "Rito": [ "NNP" ], "wit": [ "NN" ], "vivacity": [ "NN" ], "redefining": [ "VBG" ], "Rite": [ "NNP" ], "Rita": [ "NNP" ], "space-based": [ "JJ" ], "Bylot": [ "NNP" ], "chemical-arms": [ "NNS", "JJ" ], "remains": [ "VBZ", "NNS" ], "one-stroke": [ "JJ" ], "Papa": [ "NNP", "NN" ], "Newfoundland": [ "NNP" ], "Matters": [ "NNP", "NNS|VBZ", "VBZ" ], "JSP": [ "NNP" ], "balustrade": [ "NN" ], "Papp": [ "NNP" ], "Bhd.": [ "NNP" ], "nickeling": [ "VBG" ], "started": [ "VBD", "JJ", "VBN", "VB" ], "vivid": [ "JJ" ], "REAGAN": [ "NNP" ], "rough-sanded": [ "JJ" ], "Roxboro": [ "NNP" ], "one-plane": [ "JJ" ], "Afro-Cuban": [ "JJ" ], "Seagoville": [ "NNP" ], "grain-exporting": [ "NN" ], "starter": [ "NN", "JJ" ], "Monterey": [ "NNP" ], "crosses": [ "VBZ", "NNS" ], "mythical": [ "JJ" ], "irreparably": [ "RB" ], "midwinter": [ "NN" ], "UtiliCorp": [ "NNP" ], "irreparable": [ "JJ" ], "depravities": [ "NNS" ], "Traveler": [ "NNP" ], "Rostenkowski": [ "NNP" ], "NP-27": [ "NNP" ], "customs-cleared": [ "JJ" ], "four-for-one": [ "RB" ], "ushers": [ "VBZ", "NNS" ], "cheapens": [ "VBZ" ], "ferrets": [ "VBZ" ], "intimations": [ "NNS" ], "Halpern": [ "NNP" ], "Vistoso": [ "NNP" ], "serviceable": [ "JJ" ], "wonderful": [ "JJ" ], "skirt": [ "NN", "VB", "VBP" ], "truth-revealing": [ "JJ" ], "intraparty": [ "JJ" ], "Mohlere": [ "NNP" ], "tubers": [ "NNS" ], "Blumenthal": [ "NNP" ], "romancing": [ "VBG", "NN" ], "NIAGARA": [ "NNP" ], "Heffner": [ "NNP" ], "BECOME": [ "VB" ], "Winton": [ "NNP" ], "pantaloons": [ "NNS" ], "unserviceable": [ "JJ" ], "Cepeda": [ "NNP" ], "rations": [ "NNS" ], "fatigue": [ "NN", "VBP" ], "belongings": [ "NNS" ], "medical-care": [ "NN" ], "Weighted": [ "NNP" ], "advocated": [ "VBN", "VBD" ], "Unimin": [ "NNP" ], "catty": [ "JJ" ], "feels": [ "VBZ", "NNS" ], "Emptied": [ "VBD" ], "Middle": [ "NNP", "NNPS", "JJ", "NN" ], "bakery": [ "NN" ], "advocates": [ "NNS", "VBZ" ], "chain...": [ ":" ], "bakers": [ "NNS" ], "quotations": [ "NNS" ], "ex-singer": [ "NN" ], "astronomical": [ "JJ" ], "Hoppe": [ "NNP" ], "combinations": [ "NNS" ], "Doonesbury": [ "NNP" ], "anchorite": [ "NN" ], "smarts": [ "VBZ" ], "Representative": [ "NNP", "NN" ], "physicalness": [ "NN" ], "imitating": [ "VBG" ], "advisable": [ "JJ" ], "sub-underwriters": [ "NNS" ], "Dwor": [ "NNP" ], "MOTORISTS": [ "NNS" ], "filets": [ "NNS" ], "Sink": [ "NNP" ], "STSN": [ "NNP" ], "manifestos": [ "NNS" ], "Steppenwolf": [ "NNP" ], "Sing": [ "NNP", "VBP" ], "imbalance": [ "NN" ], "LBO": [ "NNP", "NN" ], "forest-product": [ "NN" ], "Harvester": [ "NNP" ], "affectations": [ "NNS" ], "dike": [ "NN" ], "BUY-OUT": [ "NN" ], "placid": [ "JJ" ], "dinnerware": [ "NN" ], "mini-fiestas": [ "NNS" ], "literacy": [ "NN" ], "grumbling": [ "VBG", "NN" ], "Pabor": [ "NNP" ], "divides": [ "VBZ" ], "Falwell-Robertson": [ "NNP" ], "predilection": [ "NN" ], "Carmichael": [ "NNP" ], "shaking": [ "VBG", "NN" ], "legions": [ "NNS" ], "front-end": [ "JJ" ], "conceiving": [ "VBG" ], "tumbrels": [ "NNS" ], "ills": [ "NNS" ], "Benedictine": [ "JJ" ], "York-mind": [ "NNP|NN" ], "IFA": [ "NNP" ], "IFC": [ "NNP" ], "self-enforced": [ "JJ" ], "laundry": [ "NN" ], "Piszczalski": [ "NNP" ], "IFO": [ "NNP" ], "deprivations": [ "NNS" ], "IFI": [ "NNP" ], "actor": [ "NN" ], "longhorns": [ "NNS" ], "confess": [ "VB", "VBP" ], "Prizms": [ "NNPS" ], "cop-out": [ "NN" ], "Adrianople": [ "NN" ], "Burzon": [ "NNP" ], "Contrasts": [ "NNS" ], "Gartner": [ "NNP", "JJR" ], "withering": [ "VBG", "JJ" ], "Upset": [ "VBN" ], "Surge": [ "NNP" ], "Ives": [ "NNP" ], "completely": [ "RB" ], "Whiteford": [ "NNP" ], "Ivey": [ "NNP" ], "Anita": [ "NNP" ], "Hostaria": [ "NNP" ], "WITHHOLDING": [ "NN" ], "reeled": [ "VBD", "VBN" ], "Mastergate": [ "NNP", "NN" ], "pound-foolish": [ "JJ" ], "Carvalho": [ "NNP" ], "stride": [ "NN", "VBP", "VB" ], "shred": [ "NN", "VB" ], "Gothic": [ "JJ", "NNP" ], "derivations": [ "NNS" ], "more-sophisticated": [ "JJ" ], "protagonists": [ "NNS" ], "soldered": [ "VBN" ], "Cycly": [ "NNP" ], "beadle": [ "NN" ], "Nasdaq-traded": [ "JJ" ], "Vinson": [ "NNP" ], "Rochester": [ "NNP", "NN" ], "Atlee": [ "NNP" ], "precisely": [ "RB" ], "Boris": [ "NNP" ], "Conduit": [ "NNP" ], "management": [ "NN" ], "stringently": [ "RB" ], "Conradies": [ "NNP", "NNPS" ], "non-partisan": [ "JJ" ], "Funds": [ "NNS", "NNPS", "NNP" ], "NUS": [ "NNP" ], "Argos": [ "NNP" ], "Argon": [ "NN" ], "NUM": [ "NNP" ], "MacAllister": [ "NNP" ], "Borie": [ "NNP" ], "post-mortem": [ "JJ", "NN" ], "best-looking": [ "JJ" ], "picturesquely": [ "RB" ], "hitching": [ "NN", "VBG" ], "reallocate": [ "VB" ], "Hugely": [ "RB" ], "manifestation": [ "NN" ], "Silberman": [ "NNP" ], "varieties": [ "NNS" ], "One-inch": [ "JJ" ], "dual-road-up": [ "NN" ], "Biopure": [ "NNP" ], "underperforms": [ "VBZ" ], "bevor": [ "FW" ], "old-boy": [ "NN" ], "unprovable": [ "JJ" ], "breezy": [ "JJ" ], "Ismet": [ "NNP" ], "REPLIGEN": [ "NNP" ], "Leleiohaku": [ "NNP" ], "dourly": [ "RB" ], "Cornfeld": [ "NNP" ], "mediators": [ "NNS" ], "follow-through": [ "JJ", "IN", "NN" ], "b-Based": [ "VBN", "JJ" ], "Gentlemen": [ "NNS", "NNP" ], "EQUIPMENT": [ "NNP" ], "ultrasonic": [ "JJ" ], "close": [ "VB", "VBP", "JJ", "NN", "RB" ], "transactionstructuring": [ "NN" ], "wristwatches": [ "NNS" ], "Tadzhikistan": [ "NNP" ], "post-Inaugural": [ "JJ" ], "roiling": [ "VBG", "JJ" ], "Melott": [ "NNP" ], "cranes": [ "NNS" ], "Tuberculosis": [ "NNP" ], "Rollins": [ "NNP" ], "ecumenical": [ "JJ" ], "makeover": [ "NN" ], "KWU": [ "NNP" ], "Vacations": [ "NNS", "NNPS" ], "Rolling": [ "NNP" ], "truck": [ "NN", "VB", "VBP" ], "detector": [ "NN" ], "Des": [ "NNP", "FW" ], "deploy": [ "VB", "VBP" ], "passionately": [ "RB" ], "Torell": [ "NNP" ], "expires": [ "VBZ" ], "camper": [ "NN" ], "camped": [ "VBD", "VBN" ], "Weissmuller": [ "NNP" ], "expired": [ "VBD", "VBN", "JJ" ], "truce": [ "NN" ], "Godiva": [ "NNP" ], "simplicities": [ "NNS" ], "SAMURAI": [ "NNP" ], "hot-colored": [ "JJ" ], "granddaddies": [ "NNS" ], "breeze": [ "NN", "VB" ], "Secretary-General": [ "NNP" ], "snapshot": [ "NN" ], "databases": [ "NNS" ], "Boskin": [ "NNP" ], "bun": [ "NN" ], "radio-pharmaceutical": [ "JJ" ], "qualms": [ "NNS" ], "Tara": [ "NNP" ], "hammerless": [ "JJ" ], "Waal": [ "NNP" ], "Barney": [ "NNP" ], "Pushup": [ "NNP" ], "passe": [ "JJ" ], "MUST": [ "MD" ], "manzanita": [ "NN" ], "soothsayers": [ "NNS" ], "based": [ "VBN", "VBD" ], "tire": [ "NN", "VBP", "VB" ], "rasa": [ "NN" ], "miniseries": [ "NNS", "NN" ], "(": [ "(" ], "transplants": [ "NNS" ], "Mervin": [ "NNP" ], "rash": [ "NN", "JJ" ], "bug": [ "NN", "VBP" ], "cosmetics-industry": [ "NN" ], "Beacon": [ "NNP" ], "bases": [ "NNS", "VBZ" ], "suckered": [ "VBN" ], "bud": [ "NN", "VB" ], "rasp": [ "NN" ], "Barnes": [ "NNP", "NNS" ], "girlie": [ "NN" ], "Wald": [ "NNP" ], "Jew-haters": [ "NNS" ], "commendation": [ "NN" ], "Stella": [ "NNP" ], "Gorham": [ "NNP" ], "Popular": [ "NNP", "JJ" ], "C-SPAN": [ "NNP" ], "sowing": [ "NN", "VBG" ], "Humiliation": [ "NN" ], "course": [ "NN", "RB" ], "outward-projecting": [ "JJ" ], "gust": [ "NN", "RB" ], "transposition": [ "NN" ], "Scientech": [ "NNP" ], "watershed": [ "NN", "JJ" ], "topaz": [ "NN" ], "gush": [ "VBP", "VB" ], "feeling-state": [ "NN" ], "fasteners": [ "NNS" ], "trodding": [ "VBG" ], "counterprogram": [ "VB" ], "spotted": [ "VBD", "VBN", "JJ" ], "Staiger": [ "NNP" ], "mists": [ "NNS" ], "consulates": [ "NNS" ], "Lapp": [ "NNP" ], "Question": [ "NN", "VB", "NNP" ], "vagabond": [ "NN" ], "freeze": [ "NN", "VB", "VBP" ], "Pollin": [ "NNP" ], "driveway": [ "NN" ], "desperate": [ "JJ" ], "reattached": [ "VBN" ], "Indicators": [ "NNP", "NNS", "NNPS" ], "XR-7": [ "NNP" ], "steel-stock": [ "NN" ], "irrefutable": [ "JJ" ], "Bessarabia": [ "NNP" ], "reconfirm": [ "VB" ], "unionists": [ "NNS" ], "timeliness": [ "NN" ], "missing": [ "VBG", "JJ", "NN" ], "Toppers": [ "NNP" ], "Demus-Schubert": [ "NNP" ], "supernatural": [ "JJ", "NN" ], "Greenbelt": [ "NNP" ], "Kenyans": [ "NNPS" ], "Threepenny": [ "NN", "NNP" ], "outsiders": [ "NNS" ], "comparable": [ "JJ" ], "rinses": [ "NNS" ], "DeVries": [ "NNP" ], "demur": [ "VBP" ], "Chiat": [ "NNP" ], "Stonewall": [ "NNP" ], "Mulhouse": [ "NNP" ], "lamechian": [ "JJ" ], "melds": [ "VBZ" ], "comparably": [ "RB" ], "Gable": [ "NNP" ], "Titled": [ "VBN" ], "diligent": [ "JJ" ], "Ruvolo": [ "NNP" ], "accordion": [ "NN" ], "year-round": [ "JJ", "RB" ], "Pontissara": [ "NNP" ], "ranked": [ "VBD", "VBN", "JJ" ], "Lawyer": [ "NNP" ], "RJR-Macdonald": [ "NNP" ], "non-methanol": [ "JJ" ], "Vachell": [ "NNP" ], "christen": [ "VB" ], "Hydro-Quebec": [ "NNP" ], "budgetary": [ "JJ" ], "Picoult": [ "NNP" ], "Lok": [ "NNP" ], "Patton": [ "NNP" ], "Rosenthal": [ "NNP" ], "Al-Seyassah": [ "NNP" ], "Los": [ "NNP", "JJ" ], "Music": [ "NNP", "NN" ], "Low": [ "NNP", "JJ" ], "Lot": [ "NN", "NNP" ], "instituting": [ "VBG" ], "hoverin": [ "VBG" ], "kings": [ "NNS" ], "Musil": [ "NNP" ], "Esnard": [ "NNP" ], "willy": [ "RB" ], "barrel-per-day": [ "JJ" ], "sari": [ "NN" ], "Sisk": [ "NNP" ], "Gregg": [ "NNP" ], "wills": [ "NNS" ], "larger-than-expected": [ "JJ" ], "cowards": [ "NNS" ], "slowly": [ "RB" ], "kingpin": [ "NN" ], "Consob": [ "NNP" ], "Six-year-old": [ "JJ" ], "beef-jerky": [ "NN" ], "Stoltz": [ "NNP" ], "microtonal": [ "JJ" ], "league": [ "NN" ], "bi-regional": [ "JJ" ], "Bluefield": [ "NNP" ], "hashish": [ "NN" ], "smokescreens": [ "NNS" ], "deer-killing": [ "NN" ], "Sizzling": [ "JJ" ], "hytt": [ "PRP" ], "oversize": [ "JJ" ], "quotation": [ "NN" ], "billionnaire": [ "NN" ], "anti-defense": [ "JJ" ], "Babin-Festival": [ "NNP" ], "outspread": [ "VBN", "JJ" ], "Routo-Jig": [ "NN" ], "spur-of-the-moment": [ "JJ" ], "Elvira": [ "NNP" ], "re-thinking": [ "VBG" ], "underclass": [ "NNS" ], "Cohens": [ "NNPS" ], "Rally": [ "NNP", "NN", "VB" ], "Risley": [ "NNP" ], "coincidental": [ "JJ" ], "Sergeant": [ "NNP", "NN" ], "Terrence": [ "NNP" ], "Nomisma": [ "NNP" ], "Stallard": [ "NNP" ], "Geisha": [ "NN" ], "inhabits": [ "VBZ" ], "swinging": [ "VBG", "JJ" ], "Ariz.": [ "NNP" ], "bucks": [ "NNS", "VBZ" ], "municipals": [ "NNS" ], "trooping": [ "VBG" ], "liquidator": [ "NN" ], "overrendered": [ "VBN" ], "Metamucil": [ "NNP", "NN" ], "strange": [ "JJ" ], "tabbed": [ "VBD" ], "Virnich": [ "NNP" ], "fanatics": [ "NNS" ], "fide": [ "FW", "JJ" ], "wranglers": [ "NNS" ], "unconventional": [ "JJ" ], "plaids": [ "NNS" ], "promoters": [ "NNS" ], "nightly": [ "JJ", "RB" ], "Tulip": [ "NNP" ], "dammed": [ "VBD" ], "fierce": [ "JJ" ], "extendible": [ "JJ" ], "magician": [ "NN" ], "poultry": [ "NN" ], "Galveston-Houston": [ "NNP" ], "weld": [ "VB", "NN" ], "corn-based": [ "JJ" ], "Spofford": [ "NNP" ], "well": [ "RB", "VBP", "JJ", "NN", "VB", "UH" ], "Fantasy": [ "NNP" ], "great-grandmother": [ "NN" ], "Sovietized": [ "JJ" ], "stirrups": [ "NNS" ], "Skill": [ "JJ", "NN" ], "spherical": [ "JJ" ], "Novick": [ "NNP" ], "Bathyran": [ "NNP" ], "attractively": [ "RB" ], "insinuating": [ "VBG" ], "Guerrilla": [ "NN" ], "Spenglerian": [ "JJ" ], "long-chain": [ "NN" ], "ping-pong": [ "NN" ], "Technological": [ "NNP" ], "wild-eyed": [ "JJ" ], "Porter": [ "NNP" ], "steward": [ "NN" ], "Camilo": [ "NNP" ], "imparts": [ "VBZ" ], "vide": [ "FW" ], "Vignola": [ "NNP" ], "handiwork": [ "NN" ], "stratum": [ "NN" ], "Coffield": [ "NNP" ], "swellings": [ "NNS" ], "Sultanov": [ "NNP" ], "accomodate": [ "VB" ], "Esso": [ "NNP", "NN" ], "Hassey": [ "NNP" ], "railcar": [ "NN" ], "Jacques": [ "NNP" ], "Doorne": [ "NNP" ], "Ref.": [ "NN" ], "Shampoo": [ "NNP" ], "solvency": [ "NN" ], "recharging": [ "VBG" ], "cashed": [ "VBD", "VBN" ], "Executed": [ "VBD" ], "Reid": [ "NNP" ], "granite": [ "NN" ], "Glorious": [ "JJ" ], "Gephardtian": [ "JJ" ], "Kita": [ "NNP" ], "immunology": [ "NN" ], "two-parent": [ "JJ" ], "dictionaries": [ "NNS" ], "Azerbaijan": [ "NNP" ], "Echelon": [ "NNP" ], "Cologne": [ "NNP" ], "nonfunctional": [ "JJ" ], "GAF": [ "NNP" ], "M&Ms": [ "NNS" ], "drizzly": [ "JJ" ], "Herald-Tribune": [ "NNP" ], "Oprah": [ "NNP" ], "Groupement": [ "NNP" ], "anti-diabetes": [ "JJ" ], "phenomena": [ "NNS" ], "zotl": [ "NN" ], "Mason": [ "NNP" ], "Optique": [ "NNP" ], "melioration": [ "NN" ], "husk": [ "NN" ], "vociferous": [ "JJ" ], "KAL": [ "NNP" ], "drizzle": [ "NN" ], "Christensen": [ "NNP" ], "Homozygous": [ "JJ" ], "communes": [ "NNS" ], "Seventh": [ "NNP", "JJ" ], "injects": [ "VBZ" ], "consultative": [ "JJ" ], "appreciative": [ "JJ" ], "Bystrzyca": [ "NNP" ], "Wishes": [ "NNS" ], "sponsoring": [ "VBG" ], "Slash-B": [ "NNP" ], "Polymerix": [ "NNP" ], "Seurat": [ "NNP" ], "Cabrini": [ "NNP" ], "individualist": [ "NN" ], "sale-leaseback": [ "NN" ], "goatee": [ "NN" ], "journal": [ "NN" ], "lecturers": [ "NNS" ], "carats": [ "NNS" ], "Australia-based": [ "JJ" ], "buy-out-related": [ "JJ" ], "variation": [ "NN" ], "unfleshed": [ "VBN" ], "smidgen": [ "NN" ], "individualism": [ "NN" ], "Canfor": [ "NNP" ], "interlinked": [ "VBN" ], "crankcase": [ "NN" ], "Tigreans": [ "NNPS" ], "Konrad": [ "NNP" ], "beige": [ "JJ" ], "puppies": [ "NNS" ], "tongue": [ "NN" ], "Insuring": [ "VBG" ], "turtle": [ "NN" ], "Dialogues": [ "NNP" ], "PMs": [ "NNS" ], "townships": [ "NNS" ], "attains": [ "VBZ" ], "corporate-development": [ "NN" ], "AirCal": [ "NNP" ], "panoramas": [ "NNS" ], "Thousands": [ "NNS", "NNP" ], "reconstituting": [ "VBG" ], "PMR": [ "NNP" ], "synthesized": [ "VBN" ], "seat-sale": [ "JJ" ], "imperial": [ "JJ" ], "synthesizes": [ "VBZ" ], "synthesizer": [ "NN" ], "Jeannie": [ "NNP" ], "drownings": [ "NNS" ], "Shedding": [ "VBG" ], "neutral": [ "JJ" ], "f-As": [ "IN", "NNP", "NNS" ], "one-act": [ "JJ" ], "kegs": [ "NNS" ], "threaten": [ "VB", "VBP" ], "Spicer": [ "NNP" ], "bridgeheads": [ "NNS" ], "presuppositions": [ "NNS" ], "program-maker": [ "NN" ], "paean": [ "NN" ], "storied": [ "JJ" ], "seven-concert": [ "JJ" ], "Increasingly": [ "RB" ], "Kuriles": [ "NNP" ], "instructing": [ "VBG" ], "accommodative": [ "JJ" ], "turnings": [ "NNS" ], "stories": [ "NNS" ], "empty": [ "JJ", "NN", "RB", "VB", "VBP" ], "systematically-simple": [ "JJ" ], "mass-media": [ "NN", "NNS" ], "Hispano": [ "NNP" ], "Blankenship": [ "NNP" ], "Cargo": [ "NNP" ], "Schwarzer": [ "NNP" ], "Headley": [ "NNP" ], "Banknote": [ "NNP" ], "MSX": [ "NNP" ], "MSU": [ "NNP" ], "Lake": [ "NNP", "NN" ], "lithotripsy": [ "NN" ], "MSP": [ "NNP" ], "crystals": [ "NNS" ], "Mediterranean-inspired": [ "JJ" ], "Bohart": [ "NNP" ], "Bullfinch": [ "NN" ], "pussycat": [ "NN" ], "Slightam": [ "NNP" ], "rumors": [ "NNS", "VBZ" ], "three-row": [ "JJ" ], "Superstores": [ "NNPS", "NNS" ], "tailoring": [ "VBG", "NN" ], "Sunshine": [ "NNP" ], "Merrimac": [ "NNP" ], "sidechairs": [ "NNS" ], "Richstone": [ "NNP" ], "Mouth": [ "NNP" ], "stumps": [ "NNS" ], "Endgame": [ "NNP" ], "stumpy": [ "JJ" ], "Hachiyas": [ "NNPS" ], "Hees": [ "NNP" ], "Baseman": [ "NN" ], "experimenters": [ "NNS" ], "C.C.": [ "NNP" ], "MOST": [ "JJS" ], "Heed": [ "VB" ], "biotechnology": [ "NN" ], "empowers": [ "VBZ" ], "Heem": [ "NNP" ], "nine-state": [ "JJ" ], "pestilence": [ "NN" ], "Killion": [ "NNP" ], "persistent": [ "JJ", "NN" ], "Viscera": [ "NNPS" ], "unopposable": [ "JJ" ], "PGH": [ "NNP" ], "uneducated": [ "JJ" ], "lives": [ "NNS", "VBZ" ], "desert-bound": [ "JJ" ], "Strangely": [ "RB" ], "sunburnt": [ "JJ" ], "Shardlow": [ "NNP" ], "Davidge": [ "NNP" ], "mackerel": [ "NN" ], "Overseeing": [ "VBG" ], "plenary": [ "JJ" ], "sermon": [ "NN" ], "Thruston": [ "NNP" ], "encores": [ "NNS" ], "Rylie": [ "NNP" ], "two-dimensional": [ "JJ" ], "whose": [ "WP$" ], "Hose": [ "NNP" ], "Purgatory": [ "NNP" ], "calculate": [ "VB", "VBP" ], "Exceptional": [ "NNP", "JJ" ], "syndciated": [ "VBN" ], "Rosalind": [ "NNP" ], "Host": [ "NNP", "NN" ], "four-square-block": [ "JJ" ], "land-owning": [ "JJ" ], "Beecher": [ "NNP" ], "Waterloo": [ "NN", "NNP" ], "Sidoti": [ "NNP" ], "rosiest": [ "JJS" ], "Turbinen": [ "NNP" ], "low-budget": [ "JJ" ], "embroider": [ "VBP", "VB" ], "Sticking": [ "NNP" ], "Sukio": [ "NNP" ], "hath": [ "VBZ" ], "horse-blanket": [ "RB" ], "graced": [ "VBD", "VBN" ], "high-flying": [ "JJ" ], "Brubaker": [ "NNP" ], "Nepalese": [ "NNPS", "NNP", "JJ" ], "Buenas": [ "NNP" ], "graces": [ "NNS" ], "Dozen": [ "NNP" ], "seven-word": [ "JJ" ], "winded": [ "JJ", "VBN" ], "plummetted": [ "VBD" ], "Stifter": [ "NNP" ], "justices": [ "NNS" ], "winder": [ "NN" ], "Torrijos": [ "NNP" ], "worthlessness": [ "NN" ], "fuel-efficiency": [ "JJ" ], "state-approved": [ "JJ" ], "preferences": [ "NNS" ], "wreck": [ "NN", "VB" ], "complexities": [ "NNS" ], "Hacienda": [ "NNP" ], "pragmatist": [ "NN" ], "hazy": [ "JJ" ], "liberated": [ "VBN", "JJ", "VBD" ], "haze": [ "NN" ], "Imboden": [ "NNP" ], "sidled": [ "VBD" ], "missile-launch": [ "JJ" ], "coefficient": [ "NN" ], "descendents": [ "NNS" ], "repugnance": [ "NN" ], "perquisites": [ "NNS" ], "abstractly": [ "RB" ], "Professionally": [ "RB" ], "flailed": [ "VBD" ], "Krutch": [ "NNP" ], "Alternative-operator": [ "NN" ], "Leagues": [ "NNPS" ], "Smaedt": [ "NNP" ], "rests": [ "VBZ", "NNS" ], "economics": [ "NNS", "NN" ], "credit": [ "NN", "VB", "VBP" ], "sombre": [ "JJ" ], "exacting": [ "JJ" ], "Wonderland": [ "NNP" ], "demagogic": [ "JJ" ], "Serial": [ "JJ", "NNP" ], "gaucheries": [ "NNS" ], "menial": [ "JJ" ], "management-controlled": [ "JJ" ], "grandkids": [ "NNS" ], "ice-cubes": [ "NNS" ], "Afraid": [ "JJ" ], "decries": [ "VBZ" ], "ozone-cancer": [ "JJ" ], "Rather": [ "RB", "NNP" ], "Fittingly": [ "RB" ], "sports-apparel": [ "JJ" ], "food-production": [ "NN" ], "weevil": [ "NN" ], "double-married": [ "JJ" ], "Vandringsar": [ "NNP" ], "specifics": [ "NNS" ], "decried": [ "VBD" ], "Wyman": [ "NNP" ], "overworking": [ "VBG" ], "dictum": [ "NN" ], "criminals": [ "NNS" ], "Jewry": [ "NNP" ], "Includes": [ "VBZ", "NNS" ], "leaks": [ "NNS" ], "five-seventeen": [ "JJ" ], "Stoltenberg": [ "NNP" ], "negociants": [ "NNS" ], "Photographer": [ "NNP" ], "Included": [ "VBN", "JJ" ], "Uhr": [ "NNP" ], "leaky": [ "JJ" ], "six-packs": [ "NNS" ], "Sorting": [ "VBG" ], "Sanctam": [ "NNP" ], "heart-to-heart": [ "JJ" ], "Bilbao": [ "NNP" ], "ring-labeled": [ "JJ" ], "frenzy": [ "NN" ], "adult": [ "NN", "JJ" ], "protozoan": [ "JJ", "NN" ], "aligned": [ "VBN", "JJ" ], "chi-chi": [ "FW", "JJ" ], "Pinion": [ "NNP" ], "Better-educated": [ "JJ" ], "verdant": [ "JJ" ], "Supply": [ "NNP", "NN" ], "Fraser": [ "NNP" ], "somber": [ "JJ" ], "Realtors": [ "NNS", "NNPS", "NNP" ], "akin": [ "JJ", "RB|JJ" ], "divergent": [ "JJ" ], "reindicting": [ "VBG" ], "sinusoidal": [ "JJ" ], "softener": [ "NN" ], "nicotine-free": [ "JJ" ], "litigation-support": [ "JJ" ], "derogate": [ "NN" ], "print-shop": [ "NN" ], "Charterhouse": [ "NNP" ], "surveyor": [ "NN" ], "Baldor": [ "NNP" ], "magnitudes": [ "NNS" ], "beef-feeding": [ "JJ" ], "Eurocracy": [ "NN", "NNP" ], "multiple-state": [ "JJ" ], "Junge": [ "NNP" ], "masterly": [ "JJ" ], "gumming": [ "VBG" ], "Lure": [ "VBP" ], "predictors": [ "NNS" ], "Lakewood": [ "NNP" ], "Neue": [ "NNP" ], "Kai": [ "NNP" ], "Massacre": [ "NNP" ], "Kao": [ "NNP" ], "Irving": [ "NNP" ], "boroughs": [ "NNS" ], "Kas": [ "NNP" ], "twitching": [ "VBG" ], "dual-channel": [ "JJ" ], "estimable": [ "JJ" ], "Kay": [ "NNP" ], "Reintroducing": [ "VBG" ], "Surcliffes": [ "NNPS" ], "construe": [ "VB", "VBP" ], "commencing": [ "VBG" ], "minority": [ "NN", "JJ", "NN|JJ" ], "Fragonard": [ "NNP" ], "Skeoch": [ "NNP" ], "Castro": [ "NNP", "NN" ], "bottom-down": [ "JJ" ], "waterfront": [ "NN" ], "president": [ "NN", "NNP" ], "higher-paid": [ "JJ" ], "bark-nibbling": [ "JJ" ], "Jeanette": [ "NNP" ], "stepchildren": [ "NN" ], "overtaken": [ "VBN" ], "insistence": [ "NN" ], "Tranquility": [ "NN", "NNP" ], "fungi": [ "NNS" ], "Kheel": [ "NNP" ], "Aldrin": [ "NNP" ], "plied": [ "VBD", "VBN" ], "Sporadic": [ "JJ" ], "rider-fashion": [ "JJ" ], "EEAE-cellulose": [ "NN" ], "foresaw": [ "VBD" ], "larger-than-normal": [ "JJ" ], "co-operating": [ "VBG" ], "Pre-decoration": [ "NN" ], "High-definition": [ "JJ" ], "banged": [ "VBD", "VBN" ], "mystics": [ "NNS" ], "shipbuilders": [ "NNS" ], "wickedness": [ "NN" ], "McNair": [ "NNP" ], "PRA": [ "NNP" ], "PRC": [ "NNP" ], "glycerine": [ "NN" ], "PRO": [ "FW" ], "PRI": [ "NNP" ], "drug-smuggling": [ "JJ" ], "encounter": [ "NN", "VB", "VBP" ], "decaffeinated": [ "VBN" ], "Equities": [ "NNPS", "NNP", "NNS" ], "convalescence": [ "NN" ], "reinstituting": [ "VBG" ], "Hartung": [ "NNP" ], "Melvyn": [ "NNP" ], "well-adjusted": [ "JJ" ], "Lifeboat": [ "NNP" ], "pianists": [ "NNS" ], "therapy": [ "NN" ], "Generale": [ "NNP" ], "Generali": [ "NNP" ], "Telepictures": [ "NNPS", "NNP" ], "cautiousness": [ "NN" ], "ethicist": [ "NN" ], "bony": [ "JJ" ], "meat": [ "NN" ], "bono": [ "FW" ], "Straight-Arm": [ "NNP" ], "bona": [ "FW", "JJ" ], "meal": [ "NN" ], "bone": [ "NN" ], "mean": [ "VB", "VBP", "JJ", "NN" ], "triple-sealed": [ "JJ" ], "improvise": [ "VB" ], "ATP": [ "NN" ], "reinsurers": [ "NNS" ], "Mauritania": [ "NNP" ], "Widmark": [ "NNP" ], "gunny": [ "NN" ], "Investigation": [ "NNP", "NN" ], "Tunick": [ "NNP" ], "awry": [ "RB", "RB|JJ", "JJ" ], "navy": [ "NN", "JJ" ], "rebuts": [ "VBZ" ], "Discovery": [ "NNP", "NN" ], "quantify": [ "VB" ], "Winsor": [ "NNP" ], "Muse": [ "NNP" ], "F.B.I.": [ "NN", "NNP" ], "Deepak": [ "NNP" ], "Romer": [ "NNP" ], "deflator": [ "NN" ], "novelistic": [ "JJ" ], "Karnak": [ "NNP" ], "bluntest": [ "RBS" ], "Muss": [ "NNP" ], "democratizing": [ "VBG" ], "Must": [ "MD" ], "rehearsed": [ "VBN" ], "relics": [ "NNS" ], "auto-making": [ "NN" ], "non-residential": [ "JJ" ], "anti-recession": [ "JJ" ], "Miyagi": [ "NNP" ], "Xiaoqing": [ "NNP" ], "whammy": [ "NN" ], "patriarchate": [ "NN" ], "frenziedly": [ "RB" ], "earned-run": [ "JJ" ], "backlit": [ "JJ" ], "Hollister": [ "NNP" ], "Allso": [ "RB" ], "specialty-chemicals": [ "NNS" ], "Trichrome": [ "JJ" ], "impossibility": [ "NN" ], "ankle-deep": [ "JJ" ], "Tygartis": [ "NNP" ], "anti-science": [ "JJ" ], "religionists": [ "NNS" ], "appreciations": [ "NNS" ], "Petipa-Tschaikowsky": [ "NNP" ], "C-Span": [ "NNP" ], "Cafe": [ "NNP", "NN" ], "bioengineer": [ "VB" ], "half-cup": [ "JJ" ], "wronged": [ "VBN", "JJ" ], "features": [ "NNS", "VBZ" ], "thereon": [ "RB" ], "Buddhist": [ "JJ", "NN", "NNP" ], "University-EPA": [ "NNP" ], "comforted": [ "VBN" ], "Essar": [ "NNP" ], "Sociological": [ "JJ" ], "RULE": [ "VBP" ], "RMd": [ "NN" ], "semiempirical": [ "JJ" ], "Sonambula": [ "NNP" ], "torpid": [ "JJ" ], "leaders": [ "NNS" ], "RMS": [ "NNP" ], "annotated": [ "VBN" ], "Conder": [ "NNP" ], "Introduce": [ "VB" ], "Festival": [ "NNP" ], "twenties": [ "NNS" ], "Vindication": [ "NNP" ], "RMI": [ "NNP" ], "Wagner-Peyser": [ "NNP" ], "Body-building": [ "JJ" ], "solemnly": [ "RB" ], "Symbol:HRB": [ "NNP" ], "IRONY": [ "NN" ], "Malden": [ "NNP" ], "Schmalensee": [ "NNP" ], "Humphrey": [ "NNP" ], "Safely": [ "RB" ], "coverages": [ "NNS" ], "distance": [ "NN", "VB" ], "Consider": [ "VB", "NNP" ], "Stillerman": [ "NNP" ], "college-oriented": [ "JJ" ], "enabled": [ "VBD", "VBN" ], "prayin": [ "NN" ], "Louis-Dreyfus": [ "NNP" ], "pleadingly": [ "RB" ], "Guerin": [ "NNP" ], "street": [ "NN" ], "stratified": [ "JJ", "VBN" ], "ex-Communist": [ "JJ", "NN" ], "Sajak": [ "NNP" ], "anatomically": [ "RB" ], "realestate": [ "NN", "VB" ], "extracting": [ "VBG" ], "mink": [ "NN" ], "far-fetched": [ "JJ" ], "unthinking": [ "JJ" ], "low-priced": [ "JJ" ], "Shelly": [ "NNP" ], "LINK-UP": [ "NN" ], "Designing": [ "NNP", "VBG" ], "obviously": [ "RB" ], "mint": [ "NN" ], "Buster": [ "NNP" ], "J.I.": [ "NNP" ], "Schneier": [ "NNP" ], "proto-Athabascan": [ "NN" ], "sharecroppers": [ "NNS" ], "Overseers": [ "NNPS" ], "Albers": [ "NNP" ], "Albert": [ "NNP" ], "divulge": [ "VB" ], "book-review": [ "NN" ], "Devol": [ "NNP" ], "Devon": [ "NNP" ], "CLAUSE": [ "NN" ], "Superslims": [ "NNPS" ], "Alberg": [ "NNP" ], "Directed": [ "VBN", "NNP" ], "caricatures": [ "NNS" ], "single-firm": [ "JJ" ], "lowball": [ "NN" ], "Knight": [ "NNP", "VBP" ], "psychological-intellectual": [ "JJ" ], "impurities": [ "NNS" ], "translator": [ "NN" ], "TSEM": [ "NN" ], "regular": [ "JJ" ], "caricatured": [ "VBN" ], "VecTrol": [ "NNP" ], "Cutler": [ "NNP" ], "Stendhal": [ "NNP" ], "Coca-Cola": [ "NNP" ], "long-planned": [ "JJ" ], "reimbursement": [ "NN" ], "mitigate": [ "VB" ], "Hovnanian": [ "NNP" ], "Yumiko": [ "NNP" ], "mushy": [ "JJ" ], "Wiederaufbau": [ "NNP" ], "shade-darkened": [ "JJ" ], "save-the-universe": [ "JJ" ], "consumer": [ "NN" ], "consumes": [ "VBZ" ], "Thiot": [ "NNP" ], "pruta": [ "NN" ], "spangle": [ "NN" ], "second-echelon": [ "JJ" ], "Spiotto": [ "NNP" ], "chilblains": [ "NNS" ], "Lafe": [ "NNP" ], "bearer": [ "NN" ], "Rebuilding": [ "VBG" ], "carbons": [ "NNS" ], "explain": [ "VB", "VBP" ], "oxytetracycline": [ "NN" ], "Detention": [ "NNP" ], "Free": [ "NNP", "JJ", "RB" ], "Fred": [ "NNP" ], "brimstone": [ "NN" ], "Frey": [ "NNP" ], "ebbing": [ "VBG" ], "stabbing": [ "VBG" ], "clobbered": [ "VBN", "VBD" ], "mischievous": [ "JJ" ], "boyfriend": [ "NN" ], "Fret": [ "VB" ], "waylaid": [ "VBN" ], "patter": [ "NN" ], "consumables": [ "NNS" ], "raiment": [ "NN" ], "patted": [ "VBD" ], "Carlile": [ "NNP" ], "technicians": [ "NNS" ], "meteors": [ "NNS" ], "Philinte": [ "NNP" ], "Hillis": [ "NNP" ], "Leaders": [ "NNS", "NNPS" ], "brewery-scion-turned-banker": [ "NN" ], "Washington": [ "NNP" ], "Searching": [ "VBG" ], "disco": [ "NN" ], "Prufrock": [ "NNP" ], "ABUSE": [ "NN" ], "architecture": [ "NN" ], "birth-control": [ "NN", "JJ" ], "cower": [ "VBP", "VB" ], "grilled": [ "JJ", "VBN" ], "Schwerdt": [ "NNP" ], "Completion": [ "NN", "NNP" ], "decides": [ "VBZ" ], "Sprenger": [ "NNP" ], "Tracys": [ "NNP", "NNS" ], "crewmen": [ "NNS" ], "pooling-of-interest": [ "JJ" ], "Schumer": [ "NNP" ], "decided": [ "VBD", "VBN", "JJ" ], "well-documented": [ "JJ" ], "stress-temperature": [ "JJ" ], "UPJOHN": [ "NNP" ], "Boost": [ "VB", "VBP", "NNP" ], "Autosuggestibility": [ "NN" ], "voyage": [ "NN", "FW" ], "reprinting": [ "VBG" ], "Greenwald": [ "NNP" ], "consequence": [ "NN" ], "smacks": [ "VBZ" ], "Nomenklatura": [ "NN" ], "Controller": [ "NNP" ], "day-old": [ "JJ" ], "pets": [ "NNS" ], "Bleach": [ "NN" ], "phenonenon": [ "NN" ], "Overt": [ "JJ" ], "shoemaking": [ "VBG" ], "unconstitutional": [ "JJ" ], "Serrana": [ "NNP" ], "triplet": [ "NN" ], "brat": [ "NN" ], "Dusty": [ "NNP" ], "Wilms": [ "NNP" ], "Peyrelongue": [ "NNP" ], "Counter": [ "NNP" ], "staves": [ "VBZ" ], "Wickham": [ "NNP" ], "questioner": [ "NN" ], "Toast": [ "NNP" ], "Hospitality": [ "NNP" ], "Wilma": [ "NNP" ], "Ehlers": [ "NNP" ], "disorderly": [ "JJ" ], "CONVICTION": [ "NN" ], "cutglass": [ "JJ" ], "regattas": [ "NNS" ], "pollinated": [ "VBN" ], "against": [ "IN" ], "Abboud": [ "NNP" ], "per-game": [ "JJ" ], "Basile": [ "NNP" ], "peddling": [ "VBG", "JJ", "NN" ], "pate": [ "NN" ], "Metier": [ "NNP" ], "gushed": [ "VBD" ], "portant": [ "FW" ], "low-paid": [ "JJ" ], "loader": [ "NN" ], "initiative": [ "NN" ], "gusher": [ "NN" ], "gushes": [ "VBZ" ], "loaded": [ "VBN", "JJ", "VBD" ], "arsenic": [ "NN" ], "Cezanne": [ "NNP" ], "Elkan": [ "NNP" ], "Ulysses": [ "NNP", "NN" ], "Kingan": [ "NNP" ], "riled": [ "VBN" ], "Macfarlane": [ "NNP" ], "fluff": [ "NN" ], "Tineo": [ "NNP" ], "futility": [ "NN" ], "Beardsley": [ "NNP" ], "referendum": [ "NN" ], "erect": [ "VB", "VBP", "JJ" ], "milieu": [ "NN" ], "Beardslee": [ "NNP" ], "Bitting": [ "NNP" ], "gadgetry": [ "NN" ], "riles": [ "VBZ" ], "idol": [ "NN" ], "Mohawk": [ "NNP" ], "suppress": [ "VB", "VBP" ], "Negas": [ "NNP" ], "Prolonged": [ "VBN", "JJ" ], "decrepit": [ "JJ" ], "generals": [ "NNS" ], "regretted": [ "VBD", "VBN" ], "censored": [ "VBN" ], "Rocket": [ "NNP" ], "picketing": [ "NN", "VBG" ], "Athletic": [ "NNP", "JJ" ], "Intl": [ "NNP" ], "Into": [ "IN", "NNP" ], "Dollar": [ "NN", "NNP" ], "say": [ "VBP", "FW", "NN", "NNP", "VB", "UH" ], "all-stock": [ "JJ" ], "melted": [ "VBN", "JJ", "VBD" ], "exiling": [ "VBG" ], "Elinsky": [ "NNP" ], "mousy": [ "JJ" ], "Ignacio": [ "NNP" ], "American-Negro": [ "NNP" ], "pseudo-feeling": [ "NN" ], "strait-laced": [ "JJ" ], "defeated": [ "VBN", "VBD" ], "Uniconer": [ "NNP" ], "Liberals": [ "NNPS", "NNS" ], "Sejm": [ "NNP" ], "faked": [ "VBN", "VBD" ], "mouse": [ "NN" ], "extraditions": [ "NNS" ], "Georgetown": [ "NNP" ], "Epson": [ "NNP" ], "rovings": [ "NNS" ], "counter-attacked": [ "VBD" ], "Epsom": [ "NNP" ], "entitles": [ "VBZ" ], "belle": [ "FW", "NN" ], "jotting": [ "VBG" ], "Lemont": [ "NNP" ], "N.D.": [ "NNP" ], "belly": [ "NN", "RB" ], "contaminate": [ "VB" ], "mixtures": [ "NNS" ], "rupiah": [ "NN" ], "Haruyuki": [ "NNP" ], "showing": [ "VBG", "NN" ], "Franco-Japanese": [ "NNP" ], "bells": [ "NNS" ], "Hisham": [ "NNP" ], "Residence": [ "NNP" ], "differing": [ "VBG", "JJ" ], "kit": [ "NN" ], "garlic": [ "NN" ], "kin": [ "NN", "JJ", "MD" ], "supposing": [ "VBG" ], "guilders": [ "NNS" ], "kif": [ "NN" ], "kid": [ "NN", "VB" ], "Italtel": [ "NN" ], "drowsily": [ "RB" ], "unconcerned": [ "JJ" ], "ALQ-178": [ "NNP" ], "virile": [ "JJ" ], "high-stepped": [ "JJ" ], "Wesson": [ "NNP" ], "lease-funded": [ "JJ" ], "Kobayashi": [ "NNP" ], "Bilzerian": [ "NNP" ], "Errors": [ "NNS", "NNP" ], "consciousness": [ "NN" ], "poised...": [ ":" ], "Bureaucrats": [ "NNS" ], "Overfall": [ "NNP" ], "RVs": [ "NNS" ], "personages": [ "NNS" ], "Branch": [ "NNP", "NN" ], "Heavenly": [ "NNP", "JJ" ], "Lagerlof": [ "NNP" ], "Branca": [ "NNP" ], "character": [ "NN" ], "inconclusively": [ "RB" ], "quarrelsome": [ "JJ" ], "ascents": [ "NNS" ], "knuckle-duster": [ "NN" ], "completely-restored": [ "JJ" ], "one-kiloton": [ "JJ" ], "stockpiling": [ "NN" ], "auspicious": [ "JJ" ], "blanching": [ "VBG", "NN" ], "Scorsese": [ "NNP" ], "erected": [ "VBN", "VBD" ], "Djemaa": [ "NNP" ], "Aikawa": [ "NNP" ], "triple-Crated": [ "JJ" ], "performing": [ "VBG", "JJ", "NN" ], "unnecessary": [ "JJ" ], "Inpatient": [ "NN" ], "ridicules": [ "VBZ" ], "Wattley": [ "NNP" ], "Agnellis": [ "NNPS" ], "never-to-be-forgotten": [ "JJ" ], "belly-up": [ "JJ", "RB" ], "Marching": [ "NNP" ], "Kowalski": [ "NNP" ], "Milpitas": [ "NNP" ], "Helga": [ "NNP" ], "Droz": [ "NNP" ], "Broad": [ "NNP", "JJ", "RB" ], "Garrett": [ "NNP" ], "bombarded": [ "VBD", "VBN" ], "eight-month": [ "JJ" ], "Yeargin": [ "NNP" ], "intern": [ "NN", "VB" ], "Jotaro": [ "NNP" ], "Moslems": [ "NNPS", "NNP", "NNS" ], "Arvind": [ "NNP" ], "eked": [ "VBD", "VBN" ], "plaintively": [ "RB" ], "contrarieties": [ "NNS" ], "Mikulich": [ "NNP" ], "theatrical": [ "JJ", "NN" ], "eel": [ "NN" ], "HIV\\/AIDS": [ "JJ" ], "conquering": [ "VBG" ], "Drinking": [ "VBG" ], "larkspur": [ "NN" ], "Marla": [ "NNP" ], "prairies": [ "NNS" ], "foreign-transaction": [ "NN" ], "Whitley": [ "NNP" ], "humanists": [ "NNS" ], "faery": [ "NN" ], "power-steering": [ "NN" ], "unorganized": [ "JJ" ], "protagonist": [ "NN" ], "Georgia-Pacific": [ "NNP" ], "compleated": [ "VBN" ], "information-gathering": [ "JJ" ], "empowerment": [ "NN" ], "flourished": [ "VBD", "VBN" ], "sector...": [ ":" ], "ribs": [ "NNS" ], "cliche": [ "NN" ], "first-home": [ "JJ" ], "Charlene": [ "NNP" ], "outboards": [ "NNS" ], "outrage": [ "NN", "VB" ], "warrent": [ "JJ" ], "Allis-Chalmers": [ "NNP" ], "marshal": [ "NN", "VB", "VBP" ], "dim-witted": [ "JJ" ], "palm-lined": [ "JJ" ], "tastier": [ "JJR" ], "birdied": [ "VBD", "VBN" ], "PW4000": [ "NNP" ], "Coupe": [ "NNP" ], "overkill": [ "NN" ], "carving": [ "VBG" ], "Frustrated": [ "JJ", "VBN" ], "birdies": [ "NNS" ], "Rickettsia": [ "NN" ], "TEK": [ "NNP" ], "province": [ "NN" ], "husbun": [ "NN" ], "inductions": [ "NNS" ], "Riepe": [ "NNP" ], "TEA": [ "NNP" ], "Shawl": [ "NN" ], "off-stage": [ "NN" ], "sojourner": [ "NN" ], "maximum-security": [ "JJ" ], "vehemence": [ "NN" ], "flu-like": [ "JJ" ], "TEP": [ "NNP" ], "Safavids": [ "NNPS" ], "polyols": [ "NNS", "NN" ], "gentrified": [ "VBN" ], "half-interest": [ "NN" ], "messhall": [ "NN" ], "idealized": [ "VBN", "JJ" ], "largest-ever": [ "JJ" ], "CORP": [ "NNP", "NN" ], "diaper": [ "NN" ], "turpentine": [ "NN" ], "stockbrokerage": [ "NN" ], "bevels": [ "NNS" ], "McCone": [ "NNP" ], "fleawort": [ "NN" ], "mouthed": [ "VBD" ], "lilies": [ "NNS" ], "Archimedes": [ "NNP" ], "detective": [ "NN" ], "punnished": [ "VBD", "VBN" ], "milligrams": [ "NNS" ], "bounds": [ "NNS", "VBZ" ], "conformists": [ "NNS" ], "Grateful": [ "NNP" ], "plaintiffs": [ "NNS" ], "urbanism": [ "NN" ], "Interhome": [ "NNP" ], "breathe": [ "VB", "VBP" ], "frowzy": [ "JJ" ], "bachelor-type": [ "JJ" ], "Oakwood": [ "NNP" ], "Franciscan": [ "JJ", "NNP" ], "graft-riddled": [ "JJ" ], "discounters": [ "NNS" ], "gland": [ "NN" ], "single-handedly": [ "RB", "JJ" ], "non-brand": [ "JJ" ], "pedagogue": [ "NN" ], "anthrax": [ "NN" ], "cushioned": [ "VBN", "VBD" ], "audition": [ "NN", "VB" ], "aunts": [ "NNS" ], "authoritative": [ "JJ" ], "skirted": [ "VBN", "VBD" ], "Andrew": [ "NNP" ], "actuators": [ "NNS" ], "Andrei": [ "NNP" ], "Timing": [ "NN" ], "laser-treatment": [ "NN" ], "Hasbrouk": [ "NNP" ], "shows": [ "VBZ", "NNS" ], "Andree": [ "NNP" ], "optically": [ "RB" ], "TREATING": [ "VBG" ], "cash-short": [ "JJ" ], "Armbro": [ "NNP" ], "clear-cut": [ "JJ" ], "sensuous": [ "JJ" ], "hollered": [ "VBD" ], "on-the-spot": [ "JJ" ], "shatters": [ "NNS", "VBZ" ], "Koshare": [ "NNP" ], "Berean": [ "NNP" ], "Falvey": [ "NNP" ], "Ottoni": [ "NNP" ], "pension-insurance": [ "JJ" ], "shelf-life": [ "NN" ], "tiger-paw": [ "NN" ], "Medicis": [ "NNPS", "NNP" ], "Okobank": [ "NNP" ], "myrrh": [ "NN" ], "non-competition": [ "JJ" ], "prepupal": [ "JJ" ], "Orient": [ "NNP", "NN" ], "Woodcock": [ "NNP" ], "decelerate": [ "VB" ], "million-franc": [ "JJ" ], "customary": [ "JJ" ], "proletariat": [ "NN" ], "teary-eyed": [ "JJ" ], "go-along": [ "JJ" ], "downplays": [ "VBZ" ], "Micropolis": [ "NNP" ], "assailants": [ "NNS" ], "Erasmus": [ "NNP" ], "proletarian": [ "JJ" ], "resourceful": [ "JJ" ], "Phenolic": [ "JJ" ], "Shortages": [ "NNS" ], "fancies": [ "VBZ" ], "breathy": [ "JJ" ], "burnout": [ "NN" ], "sufferer": [ "NN" ], "Monde": [ "NNP" ], "skirting": [ "VBG" ], "suffered": [ "VBD", "VBN" ], "simmer": [ "VB", "VBP" ], "DiNardo": [ "NNP" ], "shoot": [ "VB", "NN", "VBP" ], "deltoids": [ "NNS" ], "Nutting": [ "NNP" ], "Moskovskaya": [ "NNP" ], "estranging": [ "JJ" ], "piggybacking": [ "VBG" ], "Eichmann": [ "NNP" ], "Spanish-born": [ "JJ" ], "Roybal": [ "NNP" ], "mashing": [ "VBG" ], "Liquidation": [ "NNP" ], "trended": [ "VBN" ], "futurists": [ "NNS" ], "Eldest": [ "JJS" ], "Propylaea": [ "NNP" ], "item": [ "NN" ], "excellence": [ "NN", "FW" ], "industrial-vehicle": [ "NN" ], "Gardini": [ "NNP" ], "capitalgains": [ "NNS" ], "non-answer": [ "JJ", "NN" ], "Pedde": [ "NNP" ], "anesthetic": [ "NN" ], "Transkei": [ "NNP" ], "nineties": [ "NNS" ], "House.": [ "NNP" ], "zooms": [ "VBZ" ], "inconsequential": [ "JJ" ], "Antiques": [ "NNPS" ], "Accademia": [ "NNP" ], "Burlington": [ "NNP" ], "Shakespeare": [ "NNP", "NN" ], "semifinals": [ "NNS" ], "twaddle": [ "NN" ], "stealer": [ "NN" ], "adds": [ "VBZ" ], "negotatiators": [ "NNS" ], "micro-organisms": [ "NNS" ], "Appreciation": [ "NNP" ], "sweaters": [ "NNS" ], "McClintock": [ "NNP" ], "big-borrowing": [ "JJ" ], "Economics": [ "NNP", "NNS" ], "Tuscany": [ "NNP" ], "Presidency": [ "NNP", "NN" ], "NetFrame": [ "NNP" ], "mussels": [ "NNS" ], "makeup": [ "NN" ], "Haddad": [ "NNP" ], "availed": [ "VBD" ], "superstition": [ "NN" ], "dwelled": [ "VBN" ], "Neidl": [ "NNP" ], "airfields": [ "NNS" ], "tangent": [ "JJ", "NN" ], "kilometers": [ "NNS" ], "Cementing": [ "VBG" ], "tuxedoed": [ "JJ" ], "nine-digit": [ "JJ" ], "bruises": [ "NNS" ], "torso-defining": [ "JJ" ], "somatic": [ "JJ" ], "expulsion": [ "NN" ], "simultaneous": [ "JJ" ], "historical": [ "JJ" ], "suggestion": [ "NN" ], "raccoon": [ "NN" ], "apartment-building": [ "NN" ], "conveniently": [ "RB" ], "swipes": [ "VBZ" ], "Technology": [ "NNP", "NN" ], "bruised": [ "VBN", "JJ" ], "elect": [ "VB", "VBP" ], "undepicted": [ "JJ", "VBN" ], "withal": [ "IN" ], "patriots": [ "NNS" ], "verge": [ "NN" ], "teen-agers": [ "NNS" ], "Aim": [ "VB", "NN", "NNP" ], "surmount": [ "VB" ], "Spinney": [ "NNP" ], "Plaintiffs": [ "NNS" ], "hotels": [ "NNS" ], "wealth": [ "NN" ], "Komsomol": [ "NNP" ], "aye": [ "RB" ], "pluses": [ "NNS" ], "joyous": [ "JJ" ], "aya": [ "NN" ], "complaisant": [ "JJ" ], "month-earlier": [ "JJ" ], "capercailzie": [ "NN" ], "grandmasters": [ "NNS" ], "Cedric": [ "NNP" ], "Clemens": [ "NNP" ], "klaxon": [ "NN" ], "squid": [ "NN" ], "Clement": [ "NNP" ], "man-in-the-European-street": [ "NN" ], "aspirin": [ "NN" ], "vous": [ "FW" ], "slob": [ "NN" ], "Venetoen": [ "NNP" ], "Cimflex": [ "NNP" ], "Struggles": [ "NNP" ], "Geely": [ "NNP" ], "diversionary": [ "JJ" ], "Microsoft-Apple": [ "NNP" ], "facet-planes": [ "NNS" ], "Adventists": [ "NNP" ], "Gastineau": [ "NNP" ], "demolish": [ "VB" ], "Garea": [ "NNP" ], "unimproved": [ "JJ" ], "reviews": [ "NNS", "VBZ" ], "founder-originator": [ "NN" ], "check-kiting": [ "JJ" ], "anti-government": [ "JJ", "NN" ], "septum": [ "NN" ], "aridity": [ "NN" ], "nonce": [ "NN" ], "reflector": [ "NN" ], "lobbying": [ "VBG", "JJ", "NN" ], "confused": [ "VBN", "JJ", "VBD" ], "Whitemarsh": [ "NNP" ], "Score": [ "VB", "NN" ], "council": [ "NN" ], "Prado": [ "NNP" ], "confuses": [ "VBZ" ], "Issue": [ "NN", "NNP", "VB" ], "complainant": [ "NN" ], "Bronzavia-Air": [ "NNP" ], "Boeotian": [ "NNP" ], "thumbing": [ "VBG" ], "ballards": [ "NNS" ], "nine-game": [ "JJ" ], "Grupo": [ "NNP" ], "Ermanno": [ "NNP" ], "textile-related": [ "JJ" ], "loaves": [ "NNS" ], "map": [ "NN", "VBP", "VB" ], "effortful": [ "JJ" ], "mar": [ "VB" ], "swayed": [ "VBD", "VBN" ], "hydrogens": [ "NNS" ], "strokes": [ "NNS", "VBZ" ], "max": [ "NN" ], "Healthier": [ "JJR" ], "Sagami": [ "NNP" ], "mad": [ "JJ" ], "Yale": [ "NNP", "NN" ], "mai": [ "MD" ], "mah": [ "PRP$" ], "Platter": [ "NNP" ], "Electron-microscopical": [ "NN" ], "mud-caked": [ "JJ" ], "EuroBelge": [ "NNP" ], "scrambling": [ "VBG" ], "non-investment": [ "JJ" ], "regurgitated": [ "VBD", "VBN" ], "Yankees-Brooklyn": [ "NNP" ], "long-range": [ "JJ" ], "Cavanagh": [ "NNP" ], "tale": [ "NN" ], "cascade": [ "NN", "VB" ], "financial-report": [ "JJ" ], "deposit": [ "NN", "VB", "VBP" ], "deceive": [ "VB" ], "unleash": [ "VB", "VBP" ], "tall": [ "JJ" ], "markkaa": [ "NN" ], "talk": [ "VB", "VBP", "NN" ], "orchard...": [ ":" ], "Hymn": [ "NN", "NNP" ], "Mississippi": [ "NNP" ], "Uncas": [ "NNP" ], "distributors": [ "NNS" ], "government-controlled": [ "JJ" ], "Mayfair": [ "NNP" ], "shaky": [ "JJ" ], "wishing": [ "VBG", "NN" ], "Dicke": [ "NNP" ], "introductions": [ "NNS" ], "recoup": [ "VB" ], "pitch": [ "NN", "JJ", "VB", "VBP" ], "Dicks": [ "NNP" ], "Waxman": [ "NNP" ], "gold-plated": [ "JJ" ], "adhesive": [ "JJ", "NN" ], "F-18s": [ "NNS" ], "Greiff": [ "NNP" ], "Comes": [ "VBZ" ], "Pettersson": [ "NNP" ], "consequential": [ "JJ" ], "World": [ "NNP", "NN" ], "uptake": [ "NN" ], "Public-works": [ "NNS" ], "recipes": [ "NNS" ], "christening": [ "NN" ], "fuels": [ "NNS", "VBZ" ], "less-perfectly": [ "RBR" ], "Tremendae": [ "NNP" ], "Laboratories": [ "NNPS", "NNP" ], "field-sequential": [ "JJ" ], "bestselling": [ "JJ" ], "home-equity": [ "JJ", "NN" ], "attorneys": [ "NNS" ], "Simple": [ "JJ", "NN" ], "Lovelace": [ "NNP" ], "settings": [ "NNS" ], "arrows": [ "NNS" ], "Teamsters": [ "NNPS", "NNP" ], "Simply": [ "RB" ], "rock": [ "NN", "JJ", "VB", "VBP" ], "scolded": [ "VBN" ], "Homma": [ "NNP" ], "Detectives": [ "NNP" ], "eyelid": [ "NN" ], "Shorted": [ "JJ" ], "air-water": [ "JJ" ], "COUNTRY": [ "NN" ], "sweepings": [ "NNS" ], "Swears": [ "VBZ" ], "Shorter": [ "JJR", "NNP" ], "Startled": [ "VBN" ], "whirlwinds": [ "NNS" ], "Frazier": [ "NNP" ], "scion": [ "NN" ], "fazed": [ "VBD" ], "hemmed": [ "VBN" ], "Springing": [ "VBG" ], "Therese": [ "NNP" ], "Davids": [ "NNP" ], "Feigen": [ "NNP" ], "Theresa": [ "NNP" ], "Renovo": [ "NNP" ], "Savoca": [ "NNP" ], "reforestation": [ "NN" ], "dioxide": [ "NN" ], "pizzeria": [ "NN" ], "centerline": [ "NN" ], "sensor": [ "NN" ], "Tragedy": [ "NN", "NNP" ], "Wemmick": [ "NNP" ], "Attakapas": [ "NNP" ], "landlord": [ "NN" ], "Tepper": [ "NNP" ], "Citibank": [ "NNP" ], "sideways": [ "RB", "JJ" ], "juxtapositions": [ "NNS" ], "Corp.s": [ "NNP" ], "sparkled": [ "VBD" ], "cough": [ "NN", "VB" ], "orb": [ "NN" ], "infuriating": [ "JJ", "VBG" ], "advance": [ "NN", "JJ", "VB", "VBP" ], "sphynxes": [ "NNS" ], "Lowndes": [ "NNP" ], "one-for-two": [ "JJ" ], "derivation": [ "NN" ], "theare": [ "NN" ], "where": [ "WRB" ], "Normal": [ "JJ", "NNP" ], "bowling-related": [ "JJ" ], "Vortex": [ "NNP", "NN" ], "thing": [ "NN" ], "thine": [ "JJ" ], "algaecide": [ "NN" ], "economic-forecasting": [ "JJ" ], "hands-off": [ "JJ" ], "think": [ "VBP", "VB", "NN" ], "Adelaide": [ "NNP" ], "Neusteters": [ "NNP" ], "Translocations": [ "NNS" ], "Farney": [ "NNP" ], "Compumat": [ "NNP", "NN" ], "utopianism": [ "NN" ], "crib": [ "NN", "JJ" ], "WABC": [ "NNP" ], "Carnegie-Mellon": [ "NNP" ], "Krebs": [ "NNP" ], "Martin-type": [ "JJ" ], "non-residents": [ "NNS" ], "sounds": [ "VBZ", "NNS" ], "cheesy": [ "JJ" ], "Sea-Land": [ "NNP" ], "interchange": [ "NN" ], "Levy": [ "NNP" ], "Weighing": [ "VBG" ], "murky": [ "JJ" ], "Hoffman": [ "NNP" ], "dog-and-pony": [ "NN" ], "Problems": [ "NNS" ], "Ecological": [ "NNP" ], "sound\\": [ "JJ" ], "pastry-lined": [ "JJ" ], "Comeback": [ "NNP" ], "rebuttal": [ "NN" ], "mermaid": [ "NN" ], "bloodshed": [ "NN" ], "eyes": [ "NNS" ], "Sweazey": [ "NNP" ], "Fortune": [ "NNP", "NN" ], "subpoenas": [ "NNS" ], "eyed": [ "VBD" ], "Tough": [ "JJ" ], "interred": [ "VBD" ], "cleanse": [ "VB" ], "Comfed": [ "NNP" ], "Thomases": [ "NNP" ], "Serenade": [ "NNP" ], "trenches": [ "NNS" ], "sailing": [ "NN", "VBG" ], "self-employed": [ "JJ" ], "notches": [ "NNS" ], "midtown": [ "JJ", "NN" ], "Magma": [ "NNP" ], "reacquire": [ "VB" ], "Regulus": [ "NN" ], "high-growth": [ "JJ", "NN" ], "notched": [ "VBN", "VBD" ], "lullaby": [ "NN" ], "stubby": [ "JJ" ], "SWC": [ "NNP" ], "computer-marketing": [ "NN" ], "grab-bag": [ "NN" ], "comedian": [ "NN" ], "destroyers...": [ ":" ], "monochrome": [ "JJ" ], "Puppy": [ "NNP" ], "glibly": [ "RB" ], "x-Year-to-date": [ "JJ" ], "speakers": [ "NNS" ], "Enjoying": [ "VBG" ], "hopples": [ "NNS" ], "Center-punch": [ "VB" ], "Kimbrough": [ "NNP" ], "half-life": [ "NN" ], "consortium": [ "NN" ], "Photographers": [ "NNP" ], "CFM56-3C": [ "NN" ], "switching": [ "VBG", "NN", "VBG|NN" ], "chromosomes": [ "NNS" ], "roster": [ "NN" ], "cheesecake": [ "NN" ], "enter": [ "VB", "VBN", "VBP" ], "earthquake-resistant": [ "JJ" ], "Abolition": [ "NNP" ], "semi-gelatinous": [ "JJ" ], "bowels": [ "NNS" ], "ghostbusting": [ "NN" ], "coveted": [ "VBN", "JJ" ], "festooning": [ "VBG" ], "Ringer": [ "NNP" ], "Sextuor": [ "NNP" ], "swift-striding": [ "JJ" ], "Ringel": [ "NNP" ], "Savers": [ "NNP" ], "fundraiser": [ "NN" ], "Hessische": [ "NNP" ], "shop": [ "NN", "VB", "VBP" ], "rating": [ "NN", "VBG" ], "Curriculum": [ "NN" ], "shot": [ "NN", "VBD", "VBN" ], "Keng": [ "NNP" ], "show": [ "NN", "VB", "VBP" ], "Clearing": [ "NNP" ], "cornea": [ "NN" ], "Demons": [ "NNS" ], "elevate": [ "VB", "VBP" ], "Goffstein": [ "NNP" ], "shoe": [ "NN" ], "Kent": [ "NNP" ], "corner": [ "NN", "JJ", "VB" ], "fend": [ "VB" ], "Rubenesquely": [ "JJ" ], "Reproduced": [ "VBN" ], "quality-control": [ "NN", "JJ" ], "plume": [ "NN" ], "plumb": [ "RB", "JJ" ], "Dundeen": [ "NNP" ], "Flores": [ "NNP" ], "McClatchy": [ "NNP" ], "fens": [ "NNS" ], "germs": [ "NNS" ], "Translation": [ "NNP", "NN" ], "plump": [ "JJ" ], "non-invasive": [ "JJ" ], "Bumpers": [ "NNP" ], "replaying": [ "VBG" ], "opto-electronic": [ "JJ" ], "pricings": [ "NNS" ], "eight-foot-high": [ "JJ" ], "Gide": [ "NNP" ], "nearly": [ "RB" ], "pharaohs": [ "NNS" ], "denials": [ "NNS" ], "moviegoer": [ "NN" ], "Opinions": [ "NNS", "NNPS" ], "flyways": [ "NNS" ], "short-staffed": [ "JJ" ], "Sturley": [ "NNP" ], "capstan": [ "NN" ], "jumper": [ "NN" ], "worrying": [ "VBG", "JJ" ], "NOTES": [ "NNS" ], "pro-Yankee": [ "NN" ], "cocktails": [ "NNS" ], "Lucifer": [ "NNP" ], "reevaluation": [ "NN" ], "teething": [ "VBG" ], "Money-saving": [ "JJ" ], "federal-corporate": [ "JJ" ], "Fares": [ "NNS" ], "Iowa": [ "NNP" ], "registering": [ "VBG" ], "limber": [ "JJ" ], "sandwich-type": [ "JJ" ], "malted": [ "VBN" ], "diamonds": [ "NNS" ], "straighteners": [ "NNS" ], "Flowering": [ "NN" ], "Hopwood": [ "NNP" ], "movieland": [ "NN" ], "FirstSouth": [ "NNP" ], "atrophic": [ "JJ" ], "parental": [ "JJ" ], "Atheist": [ "NNP" ], "slingshot": [ "NN" ], "crucified": [ "VBD", "VBN" ], "Mahoney": [ "NNP" ], "enthralling": [ "JJ", "VBG" ], "Bailiffs": [ "NNS" ], "SOARS": [ "VBZ" ], "innoculating": [ "VBG" ], "animal-like": [ "JJ" ], "Northrop": [ "NNP", "NN", "VB" ], "amateurs": [ "NNS" ], "fat-substitute": [ "JJ" ], "profs": [ "NNS" ], "Continues": [ "VBZ" ], "cornered": [ "VBN", "VBD", "JJ" ], "mobile-telecommunications": [ "NNS" ], "slain": [ "VBN" ], "U.S.-Japanese": [ "JJ" ], "condemning": [ "VBG" ], "Here": [ "RB", "UH" ], "Heel-Terka": [ "NNP" ], "specializing": [ "VBG" ], "sensible": [ "JJ", "NN" ], "intrude": [ "VB", "VBP" ], "umber": [ "JJ", "NN" ], "Third-party": [ "JJ" ], "undershirt": [ "NN" ], "feeders": [ "NNS" ], "armload": [ "NN" ], "dependable": [ "JJ" ], "Kenmare": [ "NNP" ], "flight-attendants": [ "NNS" ], "sensibly": [ "RB" ], "hand-holding": [ "NN", "JJ" ], "Originals": [ "NNS" ], "Broderick": [ "NNP" ], "David-Weill": [ "NNP" ], "Galtier": [ "NNP" ], "whips": [ "NNS", "VBZ" ], "refractories": [ "NNS" ], "Herr": [ "NNP", "FW" ], "radiochlorine": [ "NN" ], "ideologist": [ "NN" ], "memorialized": [ "VBN" ], "reopening": [ "VBG" ], "million-asset": [ "JJ" ], "JURORS": [ "NNS" ], "post-production": [ "NN", "JJ" ], "Diversification": [ "NN" ], "Somehow": [ "RB" ], "well-cared-for": [ "JJ" ], "ongoing": [ "JJ" ], "ignition": [ "NN" ], "Sleepily": [ "RB" ], "Avenue": [ "NNP", "NN" ], "major-party": [ "JJ" ], "orginate": [ "VB" ], "planar": [ "JJ" ], "nonresidential": [ "JJ" ], "investor-relations": [ "NNS", "JJ" ], "Rahn": [ "NNP" ], "Supplementing": [ "VBG" ], "Bester": [ "NNP" ], "malformed": [ "JJ" ], "bargain-hunting": [ "NN", "JJ" ], "tidiness": [ "NN" ], "Montevideo": [ "NNP" ], "siphoned": [ "VBD", "VBN" ], "recalculated": [ "VBD", "VBN" ], "Alstyne": [ "NNP" ], "censorial": [ "JJ" ], "semesters": [ "NNS" ], "arguments": [ "NNS" ], "credit-discrimination": [ "NN" ], "Lanka": [ "NNP" ], "five-round": [ "JJ" ], "capital-appreciation": [ "NN" ], "oil": [ "NN" ], "Sept.1": [ "NNP" ], "Hicks": [ "NNP" ], "pronouncement": [ "NN" ], "cauterize": [ "VB" ], "ancestors": [ "NNS" ], "Nesbitt": [ "NNP" ], "climbing": [ "VBG", "NN" ], "flexed": [ "VBD" ], "one-man": [ "JJ" ], "Voorhes": [ "NNP" ], "Chore": [ "NN" ], "Hurtado": [ "NNP" ], "largely": [ "RB", "VBN" ], "amounts": [ "NNS", "VBZ" ], "Eagleton-Newark": [ "NNP" ], "creeper": [ "NN" ], "easing": [ "VBG", "JJ", "NN", "VBG|NN" ], "bumping": [ "VBG" ], "parody": [ "NN", "VB" ], "Surveys": [ "NNS", "NNP" ], "Clavier": [ "NN" ], "gaining": [ "VBG" ], "crossbars": [ "NNS" ], "multipled": [ "VBD" ], "Boxing": [ "NN" ], "Frelinghuysen": [ "NNP" ], "Maynor": [ "NNP" ], "lobules": [ "NNS" ], "Lions": [ "NNP" ], "illegitimacy": [ "NN" ], "monei": [ "NN", "NNS" ], "baptismal": [ "JJ" ], "Archer-Daniels-Midland": [ "NNP" ], "worryin": [ "VBG" ], "feedlots": [ "NNS" ], "crab": [ "NN" ], "Engines": [ "NNPS", "NNP", "NNS" ], "TO": [ "TO" ], "pups": [ "NNS" ], "Duchy": [ "NNP" ], "head-tossing": [ "NN" ], "shingles": [ "NNS" ], "Weeds": [ "NNS" ], "Perchdale": [ "NNP" ], "grip": [ "NN", "VBP" ], "slanted": [ "VBN", "VBD", "JJ" ], "grit": [ "NN", "VB" ], "Thenceforth": [ "NN" ], "Saratoga": [ "NNP" ], "reddened": [ "VBD", "VB" ], "Denny": [ "NNP" ], "grid": [ "NN" ], "inglorious": [ "JJ" ], "unheroic": [ "JJ" ], "washed-out": [ "JJ" ], "grim": [ "JJ" ], "grin": [ "NN", "VB" ], "Childs": [ "NNP" ], "diamond-shaped": [ "JJ" ], "Bloomfield": [ "NNP" ], "Kemble": [ "NNP" ], "absentia": [ "FW" ], "facing": [ "VBG", "JJ" ], "Childe": [ "NNP" ], "Hack": [ "NNP" ], "Refrigeration": [ "NN", "NNP" ], "counter-arguments": [ "NNS" ], "thirsted": [ "VBN" ], "niceties": [ "NNS" ], "greenmailer": [ "NN" ], "Threats": [ "NNS" ], "Jewelry": [ "NN" ], "Gerald": [ "NNP" ], "ascend": [ "VB" ], "eyelets": [ "NNS" ], "Amazing": [ "JJ", "NNP" ], "Dr.": [ "NNP" ], "Selectmen": [ "NNS" ], "Hamiltonians": [ "NNPS" ], "ascent": [ "NN" ], "Douglass": [ "NNP" ], "ADDED": [ "VBD" ], "jonron": [ "FW" ], "colonial": [ "JJ", "NN" ], "drug-addled": [ "JJ" ], "extensively": [ "RB" ], "Conde": [ "NNP" ], "pioneer": [ "NN", "VB" ], "Fidis": [ "NNP" ], "highbrow": [ "JJ" ], "linoleum": [ "NN" ], "windbreaks": [ "NNS" ], "intravenous": [ "JJ" ], "grafting": [ "VBG" ], "Dry": [ "NNP", "JJ" ], "Dinsmore": [ "NNP" ], "sprint": [ "NN" ], "Coping": [ "VBG" ], "Dru": [ "NNP" ], "dictators": [ "NNS" ], "Wesker": [ "NNP" ], "Goodbye": [ "NNP", "UH" ], "arithmetical": [ "JJ" ], "Litvinchuk": [ "NNP" ], "Rambo": [ "NNP" ], "fringe": [ "NN", "JJ" ], "adman": [ "NN" ], "helpmate": [ "NN" ], "Kyong": [ "NNP" ], "water-soluble": [ "JJ" ], "CREAM": [ "NNP" ], "checkup": [ "NN" ], "Bagging": [ "VBG" ], "memorials": [ "NNS" ], "bricklayers": [ "NNS" ], "implantation": [ "NN" ], "Bowl": [ "NNP" ], "blessed": [ "VBN", "JJ", "VBD" ], "references": [ "NNS" ], "dreaming": [ "VBG", "NN" ], "Flagler": [ "NNP" ], "annoys": [ "VBZ" ], "T-shirts": [ "NNS" ], "re-evaluation": [ "NN" ], "Unwarranted": [ "JJ" ], "McLendon-Ebony": [ "NNP" ], "Politan": [ "NNP" ], "co-ordinating": [ "VBG" ], "totalitarian": [ "JJ" ], "Visits": [ "NNS" ], "cardmembers": [ "NNS" ], "Av.": [ "NNP" ], "redlining": [ "VBG" ], "caterpillars": [ "NNS" ], "relocations": [ "NNS" ], "Yahwe": [ "NNP" ], "indorsed": [ "VBD" ], "tobacco-industry": [ "NN" ], "stressors": [ "NNS" ], "strikes": [ "NNS", "VBZ" ], "sophisticated": [ "JJ" ], "downshoot": [ "NN" ], "nonacid": [ "JJ" ], "intoxication": [ "NN" ], "sophisticates": [ "NNS" ], "Beneath": [ "IN" ], "downstairs": [ "NN", "RB" ], "nonviolence": [ "NN" ], "romantic": [ "JJ", "NN" ], "Integrator": [ "NNP" ], "Garden-variety": [ "NN" ], "centerfielder": [ "NN" ], "indisposition": [ "NN" ], "investment-linked": [ "JJ" ], "exemplar": [ "NN" ], "Avi": [ "NNP" ], "jabbing": [ "VBG" ], "blackbird": [ "NN" ], "electrifying": [ "JJ" ], "Cushing": [ "NNP" ], "Ava": [ "NNP" ], "Bureaucratic": [ "JJ" ], "USG": [ "NNP" ], "torpor": [ "NN" ], "Margret": [ "NNP" ], "USC": [ "NNP" ], "USA": [ "NNP" ], "rail-traffic": [ "JJ" ], "USN": [ "NNP" ], "Azerbaijani": [ "NNP" ], "deer": [ "NN", "NNS" ], "deep": [ "JJ", "RB" ], "resultant": [ "JJ", "NN" ], "USW": [ "NNP" ], "IBM-remarketer": [ "JJ" ], "USS": [ "NNP" ], "grasped": [ "VBN", "VBD" ], "USP": [ "NNP" ], "deed": [ "NN" ], "carps": [ "VBZ" ], "USX": [ "NNP" ], "selfish": [ "JJ" ], "Harlan-Marcia": [ "NNP" ], "sports-functions": [ "NNS" ], "sufferings": [ "NNS" ], "drivers": [ "NNS" ], "ceaselessly": [ "RB" ], "narcotics": [ "NNS", "NN" ], "Cisneros": [ "NNP" ], "Bogdanor": [ "NNP" ], "Tooling": [ "VBG" ], "Dahlen": [ "NNP" ], "fruitless": [ "JJ" ], "Omaha": [ "NNP", "NN" ], "stilted": [ "JJ" ], "Urraca": [ "NNP" ], "square-foot": [ "JJ" ], "gon": [ "VBG", "VB" ], "Bachlund": [ "NNP" ], "decorated": [ "VBN", "VBD", "JJ" ], "smaller-size": [ "JJ" ], "prewar": [ "JJ" ], "resembled": [ "VBD" ], "US$": [ "$" ], "profit-eating": [ "JJ" ], "sewed": [ "VBD", "VBN" ], "readership": [ "NN" ], "HOMEOWNERS": [ "NNS" ], "Gunther": [ "NNP" ], "resale": [ "NN" ], "inhibited": [ "VBD", "VBN" ], "god": [ "NN" ], "Harassment": [ "NN" ], "well-brushed": [ "JJ" ], "burdening": [ "VBG" ], "Processors": [ "NNPS" ], "wormy": [ "JJ" ], "duplicates": [ "VBZ" ], "rascals": [ "NNS" ], "Dazed": [ "JJ" ], "worms": [ "NNS" ], "Financieros": [ "NNP" ], "Robeson": [ "NNP" ], "tonnage": [ "NN" ], "revellers": [ "NNS" ], "prolongs": [ "VBZ" ], "duplicated": [ "VBN" ], "Protogeometric": [ "JJ", "NNP" ], "Meditations": [ "NNPS", "NNS" ], "inexhaustible": [ "JJ" ], "modernization": [ "NN" ], "fairways": [ "NNS" ], "prodding": [ "VBG", "NN" ], "hideout": [ "NN" ], "hideous": [ "JJ" ], "instigating": [ "VBG" ], "petro-dollar": [ "JJ" ], "Scouting": [ "VBG" ], "Referrals": [ "NNS" ], "paot": [ "NN" ], "drive-train": [ "NN" ], "Sonic": [ "JJ" ], "squeeze-out": [ "NN" ], "child-oriented": [ "JJ" ], "washer": [ "NN" ], "Svensk": [ "NNP" ], "twice-monthly": [ "JJ" ], "Abyssinians": [ "NNPS" ], "haggling": [ "VBG", "NN" ], "extrusion": [ "NN" ], "dictatorship": [ "NN" ], "unsuspected": [ "JJ" ], "overtakin": [ "VBG" ], "grubs": [ "NNS" ], "bankrolled": [ "VBD", "VBN" ], "hypothyroidism": [ "NN" ], "chandelle": [ "VB" ], "portable": [ "JJ", "NN" ], "Kochanek": [ "NNP" ], "prominence": [ "NN" ], "eloped": [ "VBD" ], "chairman-designate": [ "NNP" ], "preposterous": [ "JJ" ], "Planitzer": [ "NNP" ], "Chargers": [ "NNPS" ], "transvestitism": [ "NN" ], "hard-to-fault": [ "JJ" ], "MUNICIPALS": [ "NNS" ], "Fergusson": [ "NNP" ], "subscripts": [ "NNS" ], "Malato": [ "NNP" ], "soft-heartedness": [ "NN" ], "Berliners": [ "NNP" ], "Cultural": [ "NNP", "JJ" ], "paper-pushing": [ "JJ" ], "everlasting": [ "JJ", "NN" ], "steelmaking": [ "NN", "VBG" ], "theme-park": [ "NN" ], "component": [ "NN" ], "Gericault": [ "NNP" ], "BLS": [ "NNP" ], "operalet": [ "NN" ], "Petrus": [ "NNP" ], "disinflationary": [ "JJ" ], "Earth-week": [ "NN" ], "enmity": [ "NN" ], "Leeza": [ "NNP" ], "Czestochwa": [ "NNP" ], "Quatsch": [ "FW" ], "expiating": [ "VBG" ], "Pundits": [ "NNS" ], "summate": [ "NN", "VB" ], "temperately": [ "RB" ], "Southam": [ "NNP", "NN" ], "CLEARED": [ "VBD" ], "Canal": [ "NNP", "NN" ], "Canam": [ "NNP" ], "Darkness": [ "NN", "NNP" ], "extrapolations": [ "NNS" ], "Anctil": [ "NNP" ], "Kruk": [ "NNP" ], "emptied": [ "VBN", "VBD" ], "hunching": [ "VBG" ], "unseating": [ "VBG" ], "solid-gold": [ "JJ" ], "empties": [ "VBZ" ], "emptier": [ "JJR", "RBR" ], "soliticitations": [ "NNS" ], "legislator": [ "NN" ], "readily": [ "RB" ], "eye": [ "NN" ], "eyd": [ "VBN" ], "general-appeal": [ "JJ" ], "Frito": [ "NNP" ], "Niles": [ "NNP" ], "Pasha": [ "NNP" ], "heavy-handedness": [ "NN" ], "puke": [ "NN" ], "comparing": [ "VBG" ], "Fritz": [ "NNP" ], "splash": [ "NN" ], "amenities": [ "NNS" ], "libel": [ "NN" ], "dunks": [ "VBZ" ], "Frits": [ "NNP" ], "Stage": [ "NNP", "NN" ], "Bio-Response": [ "NNP" ], "Tennis": [ "NNP" ], "one-story": [ "JJ" ], "suffused": [ "VBD", "VBN" ], "deinstitutionalization": [ "NN" ], "Louise": [ "NNP" ], "retrogradations": [ "NNS" ], "forfeitable": [ "JJ" ], "Masaki-Schatz": [ "NNP" ], "globe-spanning": [ "JJ" ], "Mouvement": [ "NNP" ], "Park-affiliated": [ "JJ" ], "Babelists": [ "NNS" ], "risk-management": [ "NN" ], "Daugherty": [ "NNP" ], "frustratingly": [ "RB" ], "Atone": [ "VB" ], "believability": [ "NN" ], "paragraph": [ "NN" ], "Pyhrric": [ "JJ" ], "slovenly": [ "JJ" ], "superstitions": [ "NNS" ], "pioneered": [ "VBD", "VBN" ], "prefaced": [ "VBD", "VBN" ], "fryers": [ "NNS" ], "University-based": [ "JJ" ], "mutuality": [ "NN" ], "bravely": [ "RB" ], "Polystyrene": [ "NNP", "NN" ], "Richwhite": [ "NNP" ], "gravely": [ "RB" ], "traduced": [ "VBN" ], "drug-trafficking": [ "JJ", "VBG", "NN" ], "Oder": [ "NNP" ], "hilum": [ "NN" ], "attain": [ "VB", "VBP" ], "Stained": [ "VBN" ], "Correggio": [ "NNP" ], "!": [ "!" ], "Patentees": [ "NNS" ], "pyrometers": [ "NNS" ], "Serex": [ "NNP" ], "Sedimentation": [ "NN" ], "Arrington": [ "NNP" ], "think-tank": [ "NN" ], "ensemble": [ "NN" ], "co-heads": [ "NNS" ], "long-arranged": [ "JJ" ], "Doi": [ "NNP" ], "Don": [ "NNP" ], "Doo": [ "NNP" ], "Dom": [ "NNP" ], "Doc": [ "NNP" ], "Compton": [ "NNP" ], "Thais": [ "NNPS" ], "Dog": [ "NNP" ], "Doe": [ "NNP" ], "Sybron": [ "NNP" ], "Dor": [ "NNP" ], "Dos": [ "NNP" ], "Dov": [ "NNP" ], "Dow": [ "NNP" ], "Neinas": [ "NNP" ], "chute": [ "NN" ], "ribozyme": [ "NN" ], "hypnotized": [ "VBN" ], "interpolated": [ "VBD" ], "Hunsucker": [ "NNP" ], "VITRO": [ "NNP" ], "misplaced": [ "VBN" ], "doused": [ "VBD", "VBN" ], "T.E.": [ "NNP" ], "Eavesdropping": [ "NN" ], "Confucianism": [ "NNP" ], "Alphonse": [ "NNP" ], "Rockaways": [ "NNPS" ], "Telephones": [ "NNP", "NNS" ], "Copycat": [ "NN" ], "rifles": [ "NNS" ], "played": [ "VBD", "VBN" ], "winged": [ "VBD", "VBN", "JJ" ], "hifalutin": [ "JJ" ], "U.S.-endorsed": [ "JJ" ], "deploring": [ "VBG" ], "radar": [ "NN" ], "producer-consumer": [ "JJ" ], "rifled": [ "JJ" ], "predisposed": [ "VBN" ], "filters": [ "NNS", "VBZ" ], "noncommissioned": [ "JJ" ], "suffer": [ "VB", "VBP" ], "Trinity": [ "NNP", "NN" ], "thrilling": [ "JJ" ], "self-designated": [ "JJ" ], "Ifni": [ "NNP" ], "gaslights": [ "NNS" ], "Kovacic": [ "NNP" ], "X-chromosome": [ "NN" ], "nausea": [ "NN" ], "carpentry": [ "NN" ], "noticing": [ "VBG" ], "Youth": [ "NNP", "NNS", "NN" ], "home-bred": [ "JJ" ], "complain": [ "VBP", "VB" ], "Medicaid-paid": [ "JJ" ], "sweatshops": [ "NNS" ], "alundum": [ "NN" ], "conic": [ "JJ", "NN" ], "Perestroika": [ "FW" ], "rip-roaring": [ "JJ" ], "positions": [ "NNS", "VBZ" ], "Laima": [ "NNP" ], "Tamara": [ "NNP" ], "exquisite": [ "JJ" ], "mystification": [ "NN" ], "suitcase-sized": [ "JJ" ], "Bundesbank-meeting": [ "NN" ], "stakebuilding": [ "VBG", "NN" ], "fairing": [ "NN" ], "identifying": [ "VBG" ], "watered": [ "VBN", "VBD" ], "Plaskett": [ "NNP" ], "muscle-flexing": [ "JJ" ], "non-pregnant": [ "JJ" ], "Ephesians": [ "NNPS" ], "trooper": [ "NN" ], "throes": [ "NNS" ], "crowing": [ "VBG", "NN" ], "Cepheus": [ "NNP" ], "schemers": [ "NNS" ], "Deering": [ "NNP" ], "print": [ "NN", "VB", "VBP" ], "fortitude": [ "NN" ], "ironed": [ "VBN" ], "brewery": [ "NN" ], "foreground": [ "NN" ], "EC-wide": [ "JJ" ], "circumstance": [ "NN" ], "Leaving": [ "VBG" ], "Hardart": [ "NNP" ], "Ameri-Cable": [ "NNP" ], "members": [ "NNS" ], "beneficient": [ "JJ" ], "Uno": [ "NNP" ], "Manned": [ "NNP", "VBN" ], "Eurotunnel": [ "NNP" ], "Gribbin": [ "NNP" ], "unlacing": [ "VBG" ], "conducted": [ "VBN", "VBD" ], "Patman": [ "NNP" ], "science-education": [ "NN" ], "rogues": [ "NNS" ], "anti-slavery": [ "JJ" ], "dons": [ "VBZ", "NNS" ], "IOWA": [ "NNP" ], "BMIRs": [ "NNPS" ], "Revzin": [ "NNP" ], "then-52": [ "JJ" ], "barbarian": [ "NN" ], "mishandled": [ "VBD", "JJ", "VBN" ], "done": [ "VBN", "JJ", "RB", "VBD" ], "rerouted": [ "VBN" ], "An-12": [ "NN" ], "Genesis": [ "NNP", "NN" ], "Nonresident": [ "JJ" ], "Medco": [ "NNP" ], "Zachau": [ "NNP" ], "defense-contract": [ "NN" ], "revive": [ "VB", "VBP" ], "single-owner": [ "JJ" ], "thickets": [ "NNS" ], "militant": [ "JJ" ], "regulation": [ "NN", "JJ" ], "assumption": [ "NN" ], "Gamma": [ "NNP" ], "amplifiers": [ "NNS" ], "Raul": [ "NNP" ], "Matthews": [ "NNP" ], "Folk-lore": [ "NN" ], "conspirators": [ "NNS" ], "Rauh": [ "NNP" ], "muggers": [ "NNS" ], "conduit": [ "NN" ], "pare": [ "VB" ], "Linguists": [ "NNS" ], "draper": [ "NN" ], "drapes": [ "NNS" ], "Locust": [ "NN" ], "USFL": [ "NNP" ], "draped": [ "VBD", "JJ", "VBN" ], "rockin": [ "JJ" ], "dentist": [ "NN" ], "part": [ "NN", "JJ", "RB", "VB" ], "pars": [ "NNS" ], "Says": [ "VBZ" ], "roughcast": [ "NN" ], "Tockman": [ "NNP" ], "Killelea": [ "NNP" ], "carnage": [ "NN" ], "savagery": [ "NN" ], "namesake": [ "NN" ], "nation-states": [ "NN" ], "recording": [ "NN", "VBG|NN", "VBG" ], "chartaceos": [ "NNS" ], "Goyette": [ "NNP" ], "declare": [ "VB", "VBP" ], "Affairs": [ "NNP", "NNPS" ], "idled": [ "VBN", "VBD" ], "nominee": [ "NN" ], "Revelation": [ "NNP", "NN" ], "fact-bound": [ "JJ" ], "Turbin": [ "NNP" ], "Custom": [ "NNP", "JJ" ], "trifled": [ "VBN" ], "inholdings": [ "NNS" ], "Galle": [ "NNP" ], "idler": [ "NN" ], "test-marketed": [ "VBD", "VBN", "JJ" ], "Galli": [ "NNP" ], "often-heard": [ "JJ" ], "Dozens": [ "NNS" ], "Gallo": [ "NNP" ], "insufferably": [ "RB" ], "Shinbun": [ "NNP" ], "majority": [ "NN", "JJ" ], "nullifiers": [ "NNS" ], "insufferable": [ "JJ" ], "waitin": [ "NN" ], "Gustafson": [ "NNP" ], "easygoing": [ "JJ" ], "sweatshirts": [ "NNS" ], "serve": [ "VB", "VBP" ], "salmon": [ "NN", "NNS" ], "cosy": [ "JJ" ], "booby-trap": [ "NN" ], "extremely": [ "RB" ], "fuel-cost": [ "JJ" ], "branching": [ "VBG", "NN" ], "giggling": [ "VBG" ], "interceded": [ "VBD" ], "mediation": [ "NN" ], "storyline": [ "NN" ], "Waldholz": [ "NNP" ], "Accord-fighter": [ "JJ" ], "Hapoalim": [ "NNP" ], "sector": [ "NN" ], "Yastrzemski": [ "NNP" ], "Stringfellow": [ "NNP" ], "sparrow": [ "NN" ], "Pimlott": [ "NNP" ], "vampire": [ "NN" ], "nonrefundable": [ "JJ" ], "acceptability": [ "NN" ], "bodybuilding": [ "NN" ], "Wonjerika": [ "NNP" ], "defiles": [ "VBZ" ], "fungible": [ "JJ" ], "Edmiston": [ "NNP" ], "Bengt": [ "NNP" ], "Wheatley": [ "NNP" ], "ruin": [ "NN", "VBP", "VB" ], "Group-of-Seven": [ "NN" ], "cataclysms": [ "NNS" ], "massing": [ "VBG" ], "affiliations": [ "NNS" ], "Ravich": [ "NNP" ], "plain-vanilla": [ "NN" ], "Yakov": [ "NNP" ], "devastate": [ "VB" ], "cool-headed": [ "JJ" ], "Ballantine": [ "NNP" ], "slithered": [ "VBD" ], "Fewer": [ "JJR", "RB" ], "picture-postcard": [ "NN" ], "Paxton": [ "NNP" ], "silk": [ "NN" ], "sill": [ "NN" ], "silo": [ "NN" ], "contagious": [ "JJ" ], "Fujis": [ "NNPS" ], "testifying": [ "VBG" ], "Anyway": [ "RB" ], "dissociating": [ "VBG" ], "Fujii": [ "NNP" ], "Permut": [ "NNP" ], "common": [ "JJ", "NN" ], "allocations": [ "NNS" ], "Heel-Holiday": [ "NNP" ], "philanthropy": [ "NN" ], "severing": [ "VBG", "NN" ], "builder-dealer": [ "JJ" ], "Kuwaiti": [ "JJ" ], "import-incentive": [ "JJ" ], "excavation": [ "NN" ], "summed": [ "VBD", "VBN" ], "bank-fraud": [ "NN", "JJ" ], "irregularly": [ "RB" ], "amorphously": [ "RB" ], "gravest": [ "JJS" ], "Boulle": [ "NNP" ], "changeable": [ "JJ" ], "Hildy": [ "NNP" ], "Customarily": [ "RB" ], "resolute": [ "JJ" ], "electoral": [ "JJ" ], "Selectol": [ "NNP" ], "fans": [ "NNS", "VBZ" ], "Toobin": [ "NNP" ], "anti-lock": [ "JJ" ], "distraught": [ "JJ" ], "mouthful": [ "NN" ], "champagne": [ "NN" ], "Blackfeet": [ "NNPS", "NNP" ], "instrument-jammed": [ "JJ" ], "criminologist": [ "NN" ], "mobile-home": [ "NN" ], "center-punch": [ "VB" ], "DDR": [ "NNP" ], "DDT": [ "NNP" ], "DDI": [ "NNP" ], "scuttle": [ "VB" ], "Populaire": [ "NNP" ], "Dang": [ "NNP" ], "DDB": [ "NNP" ], "Dane": [ "NNP" ], "irreverence": [ "NN" ], "Refugees": [ "NNS", "NNP" ], "Dana": [ "NNP" ], "half-hour": [ "NN", "JJ" ], "Arafat": [ "NNP" ], "bank-sponsored": [ "JJ" ], "Antisubmarine": [ "JJ" ], "sultan": [ "NN" ], "Morino": [ "NNP" ], "jumpiness": [ "NN" ], "large-screen": [ "JJ" ], "dreamlike": [ "JJ" ], "kitchens": [ "NNS" ], "big-selling": [ "JJ" ], "Cuyler": [ "NNP" ], "geniuses": [ "NNS" ], "Parke-Davis": [ "NNP" ], "cakes": [ "NNS" ], "pancake": [ "NN" ], "Voltaire": [ "NNP" ], "donkey": [ "NN" ], "FEWER": [ "JJR" ], "dances": [ "NNS", "VBZ" ], "dancer": [ "NN" ], "caked": [ "VBN", "VBD" ], "Onni": [ "NNP", "NNS" ], "Munsell": [ "NNP" ], "Onno": [ "NNP" ], "FK-506": [ "NNP" ], "Advises": [ "VBZ" ], "Adviser": [ "NNP" ], "ensures": [ "VBZ" ], "snaring": [ "VBG" ], "pocketbook": [ "NN" ], "Mobilfunk": [ "NNP" ], "old-growth": [ "JJ" ], "vertebrate": [ "JJ" ], "all-college": [ "NN" ], "kidnapped": [ "VBN", "VBD" ], "stock-specialist": [ "JJ" ], "dropping": [ "VBG", "NN" ], "ensured": [ "VBD" ], "intrusive": [ "JJ" ], "fountainhead": [ "NN" ], "first-year": [ "JJ" ], "Stake": [ "VB" ], "Inpex": [ "NNP" ], "gay": [ "JJ" ], "performance-based": [ "JJ" ], "chatted": [ "VBD" ], "recaptilization": [ "NN" ], "gas": [ "NN", "VB" ], "gap": [ "NN" ], "repertoire": [ "NN" ], "gal": [ "NN", "JJ" ], "vane": [ "NN" ], "millionaires": [ "NNS" ], "gai": [ "FW" ], "gag": [ "NN" ], "wedding": [ "NN" ], "chatter": [ "NN", "VB", "VBP" ], "gab": [ "NN" ], "replaces": [ "VBZ" ], "Ordered": [ "VBD", "VBN" ], "outperforms": [ "VBZ" ], "PILING": [ "VBG" ], "College": [ "NNP", "NN" ], "consular": [ "JJ" ], "red-tape": [ "NN" ], "Angie": [ "NNP" ], "redevelopment": [ "NN" ], "waterway": [ "NN" ], "clubrooms": [ "NNS" ], "mystic": [ "JJ", "NN" ], "colon-cancer": [ "NN" ], "down-to-earth": [ "JJ" ], "echelon": [ "NN" ], "Goodfellow": [ "NNP" ], "Heiser": [ "NNP" ], "Watrous": [ "NNP" ], "Receiving": [ "VBG" ], "shunning": [ "VBG" ], "aches": [ "NNS", "VBZ" ], "Dialogue": [ "NNP" ], "Londoner": [ "NN", "NNP" ], "sociologist": [ "NN" ], "rheumatism": [ "NN" ], "engrossed": [ "JJ", "VBN" ], "airbags": [ "NNS" ], "wherein": [ "WRB", "RB" ], "benign": [ "JJ" ], "discourse": [ "NN", "VB" ], "ached": [ "VBD" ], "Pecorone": [ "NNP" ], "Monocite": [ "NNP" ], "Staley": [ "NNP" ], "husbands": [ "NNS" ], "absolved": [ "VBD" ], "purpose": [ "NN" ], "Parisians": [ "NNPS" ], "breathalyzer": [ "NN" ], "obeisant": [ "JJ" ], "Pardo": [ "NNP" ], "ADRs": [ "NNS", "NNP", "NNPS" ], "motionless": [ "JJ" ], "Biomedicals": [ "NNP" ], "craved": [ "VBN", "VBD" ], "prophet": [ "NN" ], "redesigned": [ "VBN", "VBD", "JJ" ], "craven": [ "JJ" ], "Magnums": [ "NNS", "NNPS" ], "craves": [ "VBZ" ], "toil": [ "VBP", "NN", "VB" ], "functionary": [ "NN" ], "hardwoods": [ "NNS" ], "Colorocs": [ "NNP" ], "paneling": [ "NN" ], "EITC": [ "NNP" ], "new-money": [ "JJ" ], "vindictive": [ "JJ" ], "Sendler": [ "NNP" ], "All-Star": [ "NNP", "JJ" ], "Armin": [ "NNP" ], "circling": [ "VBG" ], "Bekkai": [ "NNP" ], "Wigs": [ "NNS" ], "tear-soaked": [ "JJ" ], "discipline": [ "NN", "VB", "VBP" ], "R.P.": [ "NNP" ], "Strumwasser": [ "NNP" ], "Nipsco": [ "NNP" ], "Euro-enthusiasts": [ "NNS" ], "vague": [ "JJ" ], "Raboy": [ "NNP" ], "bravery": [ "NN" ], "wags": [ "NNS" ], "circumcision": [ "NN" ], "administrative": [ "JJ" ], "brainstorm": [ "NN" ], "unloading": [ "VBG", "NN" ], "Airfone": [ "NNP", "NN" ], "valueless": [ "JJ" ], "chalking": [ "VBG" ], "squashing": [ "VBG" ], "displace": [ "VB" ], "Harley": [ "NNP" ], "smallness": [ "NN" ], "Matsushita-made": [ "JJ" ], "subparts": [ "NNS" ], "Campaneris": [ "NNP" ], "droped": [ "VBD" ], "Harlem": [ "NNP", "JJ" ], "competitively": [ "RB" ], "Coupled": [ "VBN" ], "air-express": [ "NN" ], "Fond": [ "NNP", "JJ" ], "Erbamont": [ "NNP", "NN" ], "Couples": [ "NNS", "NNP" ], "surging": [ "VBG", "JJ" ], "propitious": [ "JJ" ], "Embryogen": [ "NNP" ], "mediocrity": [ "NN" ], "bamboo": [ "NN" ], "motion-control": [ "NN" ], "your...": [ ":" ], "channelled": [ "VBN" ], "fourth-class": [ "JJ" ], "Danis": [ "NNP" ], "gardening": [ "NN", "VBG" ], "Gulf": [ "NNP" ], "Eskenazi": [ "NNP" ], "obliged": [ "VBN", "VBN|JJ", "JJ", "VBD" ], "predisposing": [ "VBG" ], "pricing": [ "NN", "VBG" ], "mirror": [ "NN", "VBP", "VB" ], "scuttled": [ "VBD", "VBN", "JJ" ], "double-A1": [ "NN" ], "obliges": [ "VBZ" ], "Holden": [ "NNP" ], "Roessler": [ "NNP" ], "acquaintance": [ "NN" ], "collapses": [ "VBZ", "NNS" ], "fivefold": [ "JJ", "RB" ], "metamorphosed": [ "VBN" ], "pill-factory": [ "JJ" ], "burgeoned": [ "VBD", "VBN" ], "connecting": [ "VBG", "JJ" ], "verbally": [ "RB" ], "lard": [ "NN" ], "lark": [ "NN" ], "automobile-tire": [ "JJ" ], "Alarm": [ "NNP", "NN" ], "visionary": [ "JJ" ], "rapping": [ "NN", "VBG" ], "wayward": [ "JJ" ], "anemics": [ "NNS" ], "windowpanes": [ "NNS" ], "offenders": [ "NNS" ], "Roman-camp": [ "NN" ], "unenthusiastic": [ "JJ" ], "Heng-Shan": [ "NNP" ], "monologist": [ "NN" ], "Policies": [ "NNS" ], "scandal-ridden": [ "JJ" ], "optimize": [ "VB" ], "shrilling": [ "VBG" ], "Chieti": [ "NNP" ], "mid-market": [ "JJ" ], "anti-competitive": [ "JJ" ], "Alfa": [ "NNP", "NN" ], "Glenn": [ "NNP" ], "Choctaws": [ "NNPS" ], "nature-conquering": [ "JJ" ], "gratings": [ "NNS" ], "peccadilloes": [ "NNS" ], "ounce": [ "NN" ], "extensions": [ "NNS" ], "double-A\\": [ "NNP", "JJ" ], "bluster": [ "NN", "VB" ], "wilted": [ "JJ", "VBN" ], "Chrisanthopoulos": [ "NNP" ], "lessor": [ "NN" ], "harassed": [ "VBD", "VBN" ], "higher-yielding": [ "JJ" ], "hard-boiled": [ "JJ" ], "framed": [ "VBN", "VBD", "JJ" ], "CWA": [ "NNP" ], "moderating": [ "VBG", "JJ" ], "Advertising\\/San": [ "NNP" ], "custom-designed": [ "JJ" ], "gains-tax": [ "JJ", "NN" ], "lesson": [ "NN" ], "top-yielding": [ "JJ" ], "Vulture": [ "NN" ], "race-driver": [ "NN" ], "derangement": [ "NN" ], "kaffeeklatsch": [ "FW" ], "Non-Dissonant": [ "NNP" ], "trading-room": [ "NN" ], "Nichido": [ "NNP" ], "rape-and-incest": [ "JJ" ], "immigration": [ "NN" ], "butlers": [ "NNS" ], "subjectively": [ "RB" ], "another...": [ ":" ], "discomfit": [ "VB" ], "particulates": [ "NNS" ], "sheep-like": [ "JJ" ], "Riedel": [ "NNP" ], "de": [ "FW", "IN", "JJ", "NNP" ], "parts-suppliers": [ "NNS" ], "Fools": [ "NNS" ], "rear-looking": [ "JJ" ], "Bigelow": [ "NNP" ], "members.": [ "NN" ], "research-heavy": [ "JJ" ], "cubbyholes": [ "NNS" ], "Siebern": [ "NNP" ], "corn-producing": [ "JJ" ], "Perhaps": [ "RB" ], "notarized": [ "VBN" ], "Westinghouse": [ "NNP" ], "provost": [ "NN" ], "Zeidner": [ "NNP" ], "Occident": [ "NNP" ], "Fiberall": [ "NNP" ], "Siebert": [ "NNP" ], "brethren": [ "NNS" ], "Murder": [ "NN", "NNP" ], "adjudicate": [ "VB" ], "MERGER": [ "NN" ], "Danehy": [ "NNP" ], "pennants": [ "NNS" ], "buckshot": [ "NN" ], "Kass": [ "NNP" ], "pails": [ "NNS" ], "priori": [ "FW" ], "semi-private": [ "JJ" ], "Proxy": [ "NN" ], "cesspools": [ "NNS" ], "Nicholas": [ "NNP", "NNS" ], "yodeling": [ "VBG" ], "conventionally": [ "RB" ], "spurns": [ "VBZ" ], "patsies": [ "NNS" ], "itemizing": [ "VBG" ], "enterprise": [ "NN" ], "luxurious": [ "JJ" ], "depicting": [ "VBG" ], "work-weary": [ "JJ" ], "pro-Trujillo": [ "JJ" ], "statesman": [ "NN" ], "power-tool": [ "JJ", "NN" ], "Roussel": [ "NNP" ], "romantics": [ "NNS" ], "ascertained": [ "VBN", "VBD" ], "arm-twisting": [ "NNP" ], "floe": [ "NN" ], "Alferon": [ "NNP" ], "Strangfeld": [ "NNP" ], "quick-to-prepare": [ "JJ" ], "Cinematografica": [ "NNP" ], "Balcolm": [ "NNP" ], "Nedlloyd": [ "NNP" ], "classic": [ "JJ", "NN" ], "beckons": [ "VBZ" ], "preadmission": [ "NN" ], "Whosever": [ "WP" ], "sometimes-necessary": [ "JJ" ], "integral": [ "NN", "JJ" ], "corroding": [ "VBG" ], "rivalry": [ "NN" ], "factoring": [ "NN", "VBG" ], "Mellal": [ "NNP" ], "Payne": [ "NNP" ], "record-breaking": [ "JJ" ], "Saatchis": [ "NNPS" ], "Crippled": [ "NNP" ], "diagnosticians": [ "NNS" ], "countenances": [ "NNS" ], "stupefying": [ "JJ" ], "Prudential": [ "NNP", "JJ" ], "automotive": [ "JJ" ], "non-subscription": [ "JJ" ], "postage-prepaid": [ "JJ" ], "past-oriented": [ "JJ" ], "recreation": [ "NN" ], "Takeovers": [ "NNS", "NNPS" ], "Woolard": [ "NNP" ], "Overtones": [ "NNS" ], "sulked": [ "VBD" ], "molal": [ "JJ" ], "hunter": [ "NN" ], "McCraw": [ "NNP" ], "DKNY": [ "NNP" ], "bandoleers": [ "NNS" ], "playmate": [ "NN" ], "luxury-goods": [ "NNS" ], "Shortening": [ "VBG" ], "Lottie": [ "NNP" ], "government-certified": [ "JJ" ], "insertion": [ "NN" ], "cassocked": [ "JJ" ], "quick-handling": [ "JJ" ], "Norway": [ "NNP" ], "Guthman": [ "NNP" ], "recession": [ "NN" ], "sonogram": [ "NN" ], "earmarking": [ "VBG" ], "pipes": [ "NNS" ], "piper": [ "NN" ], "paddle": [ "NN" ], "inconveniences": [ "NNS" ], "acquisiton": [ "NN" ], "payday": [ "NN" ], "revisionist": [ "JJ" ], "Iran-Contra": [ "NNP", "JJ" ], "piped": [ "VBD", "VBN" ], "Milos": [ "NNP" ], "Boheme": [ "NNP", "FW" ], "narrow-bodied": [ "JJ" ], "spacing": [ "NN", "JJ" ], "demoniac": [ "JJ" ], "Buckhannon": [ "NN" ], "FTC": [ "NNP" ], "Marriage": [ "NNP", "NN" ], "fiefdom": [ "NN" ], "Paracchini": [ "NNP" ], "archness": [ "NN" ], "preamble": [ "NN" ], "Equestrian": [ "NNP" ], "lower-income": [ "JJ", "JJR" ], "Cried": [ "VBD" ], "conceit": [ "NN" ], "Intelligence": [ "NNP", "NN" ], "franks-in-buns": [ "NNS" ], "farm-subsidy": [ "NN" ], "neater": [ "RBR" ], "Crier": [ "NNP" ], "health-insurance": [ "NN" ], "Wieden": [ "NNP" ], "three-minute": [ "JJ" ], "opticians": [ "NNS" ], "Prosperity": [ "NN" ], "race...": [ ":" ], "blizzard": [ "NN" ], "Tack-solder": [ "VB" ], "decrease": [ "NN", "VB", "VBP" ], "Nachman": [ "NNP" ], "Brazilian": [ "JJ", "NNP" ], "HOME": [ "NNP", "NN" ], "Yoran": [ "NNP" ], "gallivantin": [ "NN" ], "dissonance": [ "NN" ], "male-only": [ "JJ" ], "asteroid": [ "JJ", "NN" ], "Katherine": [ "NNP" ], "Kobrand": [ "NNP" ], "venal": [ "JJ" ], "Porta-Potti": [ "NNP" ], "trait": [ "NN" ], "silted": [ "VBN" ], "trail": [ "NN", "VBP", "VB" ], "train": [ "NN", "VB", "VBP" ], "normalized": [ "VBN" ], "swooping": [ "VBG" ], "beetle-browed": [ "JJ" ], "Estonia": [ "NNP" ], "embarked": [ "VBD", "VBN" ], "super-spy": [ "NN" ], "Encourage": [ "VB", "VBP" ], "Breene": [ "NNP" ], "pedaled": [ "VBN" ], "obvious": [ "JJ" ], "unwitting": [ "JJ" ], "inviolate": [ "JJ" ], "hormone-treated": [ "JJ" ], "Savath": [ "NNP" ], "octoroon": [ "NN" ], "snacks": [ "NNS" ], "Protestant-dominated": [ "JJ" ], "infantry": [ "NN" ], "sought": [ "VBD", "VBN" ], "four-point": [ "JJ" ], "HOLDING": [ "NNP" ], "low-foam": [ "NN" ], "food-fish": [ "NNS" ], "Rosenfield": [ "NNP" ], "lamb": [ "NN" ], "monoxide": [ "NN" ], "lame": [ "JJ" ], "lamp": [ "NN" ], "solitudes": [ "NNS" ], "forest": [ "NN" ], "psyches": [ "NNS" ], "hedgers": [ "NNS" ], "furnace": [ "NN" ], "nips": [ "NNS" ], "flanking": [ "VBG" ], "Stirling": [ "NNP" ], "factored": [ "VBN", "JJ" ], "Yoshiharu": [ "NNP" ], "bushwhackin": [ "JJ" ], "billings": [ "NNS" ], "nary": [ "DT", "PDT" ], "Georgeson": [ "NNP" ], "obtrusiveness": [ "NN" ], "deliriously": [ "RB" ], "defective": [ "JJ" ], "Fixed-rate": [ "JJ" ], "picturesque": [ "JJ", "NN" ], "Brenmor": [ "NNP" ], "sidelong": [ "JJ" ], "Weather": [ "NNP" ], "Champ": [ "NNP" ], "Kwan": [ "NNP" ], "lingua": [ "FW" ], "Ateliers": [ "NNP" ], "Boatel": [ "NN" ], "Transportek": [ "NNP" ], "concentration-camp": [ "NN" ], "charting": [ "NN", "VBG" ], "butternut": [ "NN" ], "Oistrakh": [ "NNP" ], "burning": [ "VBG", "JJ", "NN" ], "Raccoons": [ "NNS" ], "koan": [ "FW" ], "Neubauer": [ "NNP" ], "Quartet": [ "NNP", "NN" ], "kindergarten": [ "NN" ], "Fortier": [ "NNP" ], "Forties": [ "NNP", "NNPS" ], "bedpost": [ "NN" ], "well-respected": [ "JJ" ], "waggling": [ "VBG" ], "Stronghold": [ "JJ" ], "tickled": [ "VBD", "VBN" ], "spell": [ "VB", "NN", "VBP" ], "fiesta": [ "NN" ], "Wacker": [ "NNP" ], "courtroom": [ "NN" ], "Loves": [ "VBZ", "NNP" ], "Mother": [ "NNP", "NN" ], "Exchnage": [ "NNP" ], "Woodworth": [ "NNP" ], "Tamiris": [ "NNP" ], "Jinshajiang": [ "NNP" ], "stormier": [ "JJR" ], "meterological": [ "JJ" ], "Cheveralls": [ "NNP" ], "change-over": [ "NN" ], "Gunny": [ "NNP" ], "computer-activated": [ "JJ" ], "virulent": [ "JJ" ], "Lichtblau": [ "NNP" ], "Fed": [ "NNP", "VBN", "JJ" ], "Richterian": [ "JJ" ], "Avelar": [ "NNP" ], "Korobytsins": [ "NNS" ], "half-well": [ "JJ" ], "Klatsky": [ "NNP" ], "winked": [ "VBD", "VBN" ], "outcry": [ "NN" ], "McRae": [ "NNP" ], "burdened": [ "VBN", "VBD" ], "pacifism": [ "NN" ], "Monets": [ "NNPS" ], "filmmaking": [ "NN" ], "Exxon-Valdez": [ "JJ" ], "role-playing": [ "NN" ], "Bruch": [ "NNP" ], "matt": [ "NN" ], "Increasing": [ "VBG", "JJ|VBG" ], "mats": [ "NNS" ], "Wyche": [ "NNP" ], "plods": [ "VBZ" ], "common-stock": [ "JJ", "NN" ], "repress": [ "VB" ], "stub": [ "NN", "VB" ], "mate": [ "NN", "VBP", "VB", "UH" ], "messenger": [ "NN" ], "SICK": [ "NNP" ], "peeling": [ "VBG", "NN" ], "Tasmania": [ "NNP" ], "math": [ "NN" ], "heretics": [ "NNS" ], "P.-T.A.": [ "NNP" ], "thunderstorm": [ "NN" ], "affilates": [ "NNS" ], "meaningfully": [ "RB" ], "Appalachians": [ "NNPS" ], "Tanker": [ "NNP" ], "Manitoba-based": [ "JJ" ], "megadrop": [ "NN" ], "pocket-size": [ "JJ" ], "Sparling": [ "NNP" ], "Morinaga": [ "NNP" ], "hyperinflation": [ "NN" ], "university-wide": [ "JJ" ], "still-outstanding": [ "JJ" ], "Burgesses": [ "NNS" ], "Pantheon": [ "NNP" ], "Floey": [ "NNP" ], "fouled": [ "VBD", "JJ", "VBN" ], "pre-May": [ "JJ" ], "grieving": [ "VBG" ], "Endowment": [ "NNP" ], "unspent": [ "JJ" ], "Oxfordshire": [ "NNP" ], "Japs": [ "NNPS" ], "NAIRO": [ "NNP" ], "Dickinson": [ "NNP" ], "Toshiba": [ "NNP" ], "synthesizine": [ "NN" ], "Weinberg": [ "NNP" ], "swept": [ "VBD", "JJ", "VBN" ], "Adverbial": [ "JJ" ], "fiber-related": [ "JJ" ], "air-pollution": [ "NN" ], "nut": [ "NN" ], "gas-station": [ "JJ" ], "Bauser": [ "NNP" ], "sixteenth": [ "JJ" ], "veto-proof": [ "JJ" ], "appartus": [ "NN" ], "eavesdrop": [ "VB" ], "smolder": [ "VBP" ], "completed": [ "VBN", "JJ", "VBD" ], "picnicked": [ "VBD" ], "dreary": [ "JJ" ], "perforce": [ "RB" ], "Ryutaro": [ "NNP" ], "Land-Rover": [ "NNP" ], "capital-raising": [ "JJ", "NN" ], "discretionary": [ "JJ" ], "non-intellectual": [ "JJ" ], "anti-socialist": [ "JJ" ], "jocks": [ "NNS" ], "O.K": [ "UH" ], "wad-working": [ "NN" ], "Caleb": [ "NNP" ], "Born-again": [ "JJ" ], "circumspect": [ "JJ" ], "amplitude": [ "NN" ], "Flush": [ "JJ" ], "visited": [ "VBD", "VBN" ], "morticians": [ "NNS" ], "plutonium-based": [ "JJ" ], "fluctuation": [ "NN" ], "transitory": [ "JJ" ], "Fought": [ "VBN" ], "Pirelli": [ "NNP" ], "unlikely": [ "JJ", "RB" ], "clunker": [ "NN" ], "Peg": [ "NNP" ], "Dilenschneider": [ "NNP" ], "Couple": [ "JJ", "NN" ], "Pushing": [ "VBG" ], "prays": [ "VBZ" ], "parks": [ "NNS" ], "Xinhua": [ "NNP" ], "Sante": [ "NNP" ], "Santa": [ "NNP" ], "miniskirt": [ "NN" ], "rubber-stamp": [ "VB" ], "self-dictate": [ "NN" ], "savages": [ "NNS" ], "closeups": [ "NNS" ], "Trac": [ "NNP" ], "early-morning": [ "JJ", "NN" ], "supranationalism": [ "NN" ], "Gillers": [ "NNP" ], "Eagleton": [ "NNP" ], "Trap": [ "NNP" ], "savaged": [ "VBD" ], "trendier": [ "JJR" ], "communications-network": [ "JJ" ], "Inter-American": [ "NNP" ], "Tray": [ "NNP" ], "overestimation": [ "NN" ], "gurus": [ "NNS" ], "afresh": [ "RB" ], "U.S.-Philippine": [ "JJ" ], "wherewith": [ "VB" ], "stranded": [ "VBN", "VBD" ], "reconcilable": [ "JJ" ], "silver-gray": [ "JJ" ], "sheathing": [ "NN" ], "anti-American": [ "JJ" ], "normally": [ "RB" ], "Saturday": [ "NNP" ], "Fei": [ "NNP" ], "galvanizing": [ "VBG", "NN" ], "appliques": [ "NNS" ], "industrialism": [ "NN" ], "big-hearted": [ "JJ" ], "off-hours": [ "JJ", "NNS" ], "slanderer": [ "NN" ], "medical-products": [ "NNS" ], "festooned": [ "VBN" ], "floodlight": [ "NN" ], "underappreciated": [ "JJ" ], "BEST": [ "JJS" ], "leaching": [ "NN" ], "inspiring": [ "JJ", "VBG" ], "debt-payment": [ "JJ", "NN" ], "Neibart": [ "NNP" ], "couponing": [ "NN", "VBG|NN", "VBG" ], "neighbhorhoods": [ "NNS" ], "INTERVOICE": [ "NNP" ], "Va.-based": [ "JJ" ], "lobo": [ "NN" ], "lobe": [ "NN" ], "whistleblower": [ "NN" ], "Amitai": [ "NNP" ], "Accacia": [ "NNP" ], "Imrene": [ "NNP" ], "Belzberg": [ "NNP" ], "Tadahiko": [ "NNP" ], "littlest": [ "JJS" ], "Cemal": [ "NNP" ], "Selden": [ "NNP" ], "cycled": [ "VBN" ], "dripped": [ "VBD" ], "shelling": [ "VBG", "NN" ], "co-extinction": [ "NN" ], "Seldes": [ "NNP" ], "including": [ "VBG" ], "fighter-jet": [ "NN" ], "cycles": [ "NNS", "VBZ" ], "filched": [ "VBD", "VBN" ], "Interlochen": [ "NNP" ], "Baiba": [ "NNP" ], "adventuresome": [ "JJ" ], "Special-interest": [ "JJ" ], "Spokesmen": [ "NNS", "NNP" ], "snowplow": [ "NN" ], "co-payment": [ "JJ" ], "Passion": [ "NNP" ], "seventy-five-foot": [ "JJ" ], "injunctive": [ "JJ" ], "speechlessness": [ "NN" ], "vicars": [ "NNS" ], "imaginatively": [ "RB" ], "fine-feathered": [ "JJ" ], "Noriega": [ "NNP", "NN" ], "pattern": [ "NN" ], "microcomputer-systems": [ "JJ" ], "deep-discount": [ "JJ" ], "Ophthalmic": [ "NNP" ], "Charnock": [ "NNP" ], "Ouzo": [ "NN" ], "Shoulder": [ "NN" ], "smilingly": [ "RB" ], "pseudynom": [ "NN" ], "BARKER": [ "NNP" ], "emitted": [ "VBN", "VBD" ], "deliver": [ "VB", "VBP" ], "handpicked": [ "VBN", "VBD" ], "three-axis": [ "JJ" ], "Anchor": [ "NNP" ], "festering": [ "VBG" ], "nightmares": [ "NNS" ], "asunder": [ "RB" ], "thence": [ "RB" ], "streetlight": [ "NN" ], "hundred-and-eighty-degree": [ "JJ" ], "Design": [ "NNP", "NN" ], "Knecht": [ "NNP" ], "swallow": [ "VB", "NN", "VBP" ], "Mafia": [ "NNP" ], "neon-lighted": [ "JJ" ], "aquarium": [ "NN" ], "cornices": [ "NNS" ], "relevant": [ "JJ" ], "contamination": [ "NN" ], "Pinkie": [ "NN" ], "Luxembourg": [ "NNP" ], "ushering": [ "VBG" ], "Journal-American": [ "NNP" ], "North-Rhine": [ "NNP" ], "Hoe": [ "VB" ], "Christian-Moslem": [ "JJ" ], "walnut": [ "NN" ], "unearthed": [ "VBN", "VBD" ], "flourishing": [ "VBG", "JJ" ], "securities-investment": [ "JJ" ], "salable": [ "JJ" ], "quasi-public": [ "JJ" ], "centerstage": [ "NN" ], "Pietro": [ "NNP" ], "attends": [ "VBZ" ], "certain": [ "JJ", "RB" ], "sticklike": [ "JJ" ], "curtain": [ "NN" ], "proposal": [ "NN" ], "Asia\\/Pacific": [ "JJ" ], "division.": [ "NN" ], "phosphorescent": [ "JJ" ], "DeMar": [ "NNP" ], "aramid": [ "NN" ], "overwhelmingly": [ "RB" ], "protect": [ "VB", "VBP" ], "Dent": [ "NNP" ], "bulk": [ "NN", "JJ" ], "business-as-usual": [ "JJ" ], "tenderly": [ "RB" ], "Honestly": [ "RB" ], "Kuala": [ "NNP" ], "bull": [ "NN", "VB" ], "Professional": [ "NNP", "JJ" ], "incentive-bonus": [ "NN" ], "Deng": [ "NNP" ], "divisions": [ "NNS" ], "Virsaladze": [ "NNP" ], "wrap-up": [ "JJ" ], "entrepreneurial": [ "JJ" ], "Production": [ "NN", "NNP" ], "extracts": [ "NNS", "VBZ" ], "inherits": [ "VBZ" ], "penalizing": [ "VBG" ], "chaotic": [ "JJ" ], "PONT": [ "NNP" ], "Trimedyne": [ "NNP" ], "walks": [ "VBZ", "NNS" ], "shanties": [ "NNS" ], "papyrus": [ "NN" ], "LIBERTY": [ "NNP" ], "commending": [ "VBG" ], "counter-tenor": [ "NN" ], "convection": [ "NN" ], "nine-month": [ "JJ" ], "unretouched": [ "JJ" ], "SUPERIOR": [ "NNP" ], "slammer": [ "NN" ], "pro-market": [ "JJ" ], "oink": [ "UH" ], "cypress-like": [ "JJ" ], "GAS": [ "NNP", "NN" ], "GAR": [ "NNP" ], "GAP": [ "NNP" ], "GAO": [ "NNP" ], "agency-dealing": [ "JJ" ], "slammed": [ "VBD", "VBN" ], "Dorado": [ "NNP" ], "frontal": [ "JJ" ], "GAG": [ "NNP" ], "Earthlings": [ "NNS" ], "Drought": [ "NN" ], "eugenic": [ "JJ" ], "Handsome": [ "JJ", "NNP" ], "disseminating": [ "VBG" ], "neolithic": [ "JJ" ], "JCP": [ "NNP" ], "pleasure-boat": [ "NN" ], "Benesi": [ "NNP" ], "AUTO": [ "NNP" ], "Ride": [ "VB", "NNP" ], "corkers": [ "NNS" ], "binoculars": [ "NNS" ], "ghazal": [ "FW" ], "Discipline": [ "NN" ], "Unruly": [ "JJ" ], "Tait": [ "NNP" ], "Cadillacs": [ "NNPS", "NNS" ], "garb": [ "NN" ], "PERIPATETIC": [ "JJ" ], "Cammack": [ "NNP" ], "president-engineering": [ "NN|NN" ], "pampered": [ "JJ" ], "promulgating": [ "VBG" ], "Finkelstein": [ "NNP" ], "Sichuan": [ "NNP" ], "Langsdorf": [ "NNP" ], "knotty": [ "JJ" ], "inwardness": [ "NN" ], "confidences": [ "NNS" ], "deltas": [ "NNS" ], "sister-in-law": [ "NN" ], "necessitate": [ "VBP", "VB" ], "Excels": [ "NNS", "NNPS" ], "logistics-computer": [ "NN" ], "Pilgrimage": [ "NNP" ], "P*/NNP&G": [ "NN", "VB" ], "Resourcesrose": [ "NNP" ], "spectrophotometric": [ "JJ" ], "Davis\\/Zweig": [ "NNP" ], "well-worn": [ "JJ" ], "Excell": [ "NNP" ], "nastiest": [ "JJS" ], "Grandparents": [ "NNP", "NNS" ], "squandering": [ "VBG" ], "Deeply": [ "RB" ], "barnsful": [ "NN" ], "Amax": [ "NNP" ], "confederacy": [ "NN" ], "Perham": [ "NNP" ], "Flanked": [ "VBN" ], "Olney": [ "NNP" ], "REACTOR": [ "NN" ], "sympathy...": [ ":" ], "Woods": [ "NNP", "NNPS" ], "reconverting": [ "VBG" ], "oratorical": [ "JJ" ], "green-scaled": [ "JJ" ], "contrabass": [ "NN" ], "half-speed": [ "JJ" ], "crazily": [ "RB" ], "Aunts": [ "NNS" ], "Wide": [ "NNP", "JJ" ], "Bordeau": [ "NNP" ], "authority": [ "NN" ], "ideals": [ "NNS" ], "Offers": [ "VBZ" ], "Zitin": [ "NNP" ], "Jerebohm": [ "NNP" ], "Terrorism": [ "NNP" ], "Banbury": [ "NNP" ], "Harvesting": [ "NN" ], "shrug": [ "VB", "NN", "VBP" ], "port-side": [ "JJ" ], "unfunny": [ "JJ" ], "shrub": [ "NN" ], "Danssesse": [ "NNP" ], "BMEWS": [ "NNP" ], "panzers": [ "NNS" ], "clarity": [ "NN" ], "Herrera": [ "NNP" ], "Czechoslovak-made": [ "JJ" ], "elementary-grade": [ "JJ" ], "Cote": [ "NNP" ], "Boehringer-Ingleheim": [ "NNP" ], "Shostakovich": [ "NNP" ], "Afterward": [ "RB" ], "thinly": [ "RB" ], "trombonist": [ "NN" ], "Tail": [ "NNP" ], "accosted": [ "VBN", "VBD" ], "oiled": [ "JJ" ], "meminisse": [ "FW" ], "Cirillo": [ "NNP" ], "although": [ "IN" ], "Zaffius": [ "NNP" ], "oiler": [ "NN" ], "half-horse": [ "JJ" ], "Cawthorn": [ "NNP" ], "raiding": [ "VBG", "NN" ], "copper-rich": [ "JJ" ], "actual": [ "JJ" ], "socket": [ "NN" ], "Rubbermaid": [ "NNP" ], "ribbed": [ "JJ" ], "Mesirov": [ "NNP" ], "Comprised": [ "VBN" ], "cockroaches": [ "NNS" ], "imitation-woodgrain": [ "NN" ], "socked": [ "VBD" ], "prevailing": [ "VBG", "JJ" ], "rule``": [ "``" ], "Wogan": [ "NNP" ], "faltering": [ "VBG", "NN" ], "driftnet": [ "NN" ], "Montreal-Toronto": [ "JJ" ], "Wiligis": [ "NNP" ], "obliterated": [ "VBN" ], "ankles": [ "NNS" ], "imbibed": [ "VBN", "VBD" ], "playoff": [ "NN" ], "esteem": [ "NN" ], "Laserscope": [ "NNP" ], "wheat-germ": [ "NN" ], "Woodstream": [ "NNP" ], "Ideally": [ "RB" ], "Terranomics": [ "NNS" ], "Mountains": [ "NNPS", "NNP" ], "Raymondville": [ "NNP" ], "Hostetter": [ "NNP" ], "ridge": [ "NN" ], "Reckon": [ "VB", "VBP" ], "self-explanatory": [ "JJ" ], "Ex-Wells": [ "NNP" ], "fourth-century": [ "JJ" ], "reigned": [ "VBD" ], "Porcaro": [ "NNP" ], "biggest": [ "JJS", "RBS" ], "life-and-death": [ "JJ" ], "glib": [ "JJ" ], "Minnett": [ "NNP" ], "rajah": [ "NN" ], "preparations": [ "NNS" ], "Jew-as-enemy": [ "NN" ], "Tschoegl": [ "NNP" ], "study-plan": [ "NN" ], "contemptuously": [ "RB" ], "Adopting": [ "VBG" ], "Vietnamese-backed": [ "JJ" ], "Multiplying": [ "VBG" ], "snagged": [ "VBN", "VBD" ], "Proposed": [ "VBN" ], "image-processing": [ "NN", "JJ" ], "heatedly": [ "RB" ], "Uninhibited": [ "NNP", "JJ" ], "mischarging": [ "NN" ], "levis": [ "NNS" ], "cerulean": [ "NN" ], "Discussions": [ "NNS" ], "Serological": [ "JJ" ], "Ivy": [ "NNP", "JJ" ], "palm-studded": [ "JJ" ], "acids": [ "NNS" ], "doomsayers": [ "NNS" ], "Would-be": [ "JJ" ], "recounts": [ "VBZ" ], "Drobnick": [ "NNP" ], "separating": [ "VBG" ], "inflation-fighting": [ "JJ", "NN" ], "developing-nation": [ "JJ" ], "undiluted": [ "JJ" ], "value-assessment": [ "NN" ], "antiviral": [ "JJ" ], "propects": [ "NNS" ], "bloodletting": [ "VBG", "NN" ], "standing-room-only": [ "JJ" ], "Noriegan": [ "JJ" ], "high-ceilinged": [ "JJ" ], "Ardito-Barletta": [ "NNP" ], "Know": [ "VB", "VBP", "NNP" ], "Noriegas": [ "NNS" ], "EQUITY": [ "NNP" ], "Knox": [ "NNP" ], "Ostlandske": [ "NNP" ], "Schrunk": [ "NNP" ], "dictatorships": [ "NNS" ], "forever-Cathy": [ "NN" ], "Spill": [ "NN" ], "pilot-union": [ "JJ" ], "dack-rihs": [ "NNS" ], "DiLeo": [ "NNP" ], "uncommon": [ "JJ", "RB" ], "booboo": [ "NN" ], "previous": [ "JJ" ], "double-helix": [ "JJ" ], "Orchesis": [ "NNP" ], "Janson": [ "NNP" ], "musclemen": [ "NNS" ], "Benita": [ "NNP" ], "Benito": [ "NNP" ], "co-develop": [ "VB" ], "microelectronics": [ "NNS", "NN" ], "armor": [ "NN" ], "styryl-lithium": [ "NN" ], "Sleep": [ "NN", "VB", "NNP", "VBP" ], "limited": [ "JJ", "VBD", "VBN" ], "neige": [ "FW" ], "many-times": [ "RB" ], "Stardent": [ "NNP" ], "Scasi": [ "NNP" ], "wigmakers": [ "NNS" ], "Hammers": [ "VBZ" ], "Carters": [ "NNPS" ], "CMOS": [ "NNP" ], "poorly": [ "RB" ], "AMONG": [ "IN" ], "replacements": [ "NNS" ], "premium-beer": [ "NN" ], "anti-army": [ "JJ" ], "powderpuff": [ "NN" ], "snipe": [ "VB" ], "Naive": [ "JJ" ], "Sudol": [ "NNP" ], "Corder": [ "NNP" ], "hampered": [ "VBN", "VBD" ], "Tashjian": [ "NNP" ], "tenacity": [ "NN" ], "stationery": [ "NN" ], "tongue-lashing": [ "NN" ], "CHASE": [ "NNP" ], "Henri": [ "NNP", "NNPS" ], "barium": [ "NN" ], "co-lead": [ "JJ" ], "maximized": [ "VBN" ], "four-square": [ "NN" ], "Doulgas": [ "NNP" ], "RDWS": [ "NN" ], "sanitation-control": [ "JJ" ], "Henry": [ "NNP" ], "Fudo": [ "NNP" ], "Syrian-backed": [ "JJ", "NNP" ], "Biotech": [ "NNP" ], "pooled": [ "VBN", "JJ" ], "greenbacks": [ "NNS" ], "Reference": [ "NNP", "NN" ], "Premier": [ "NNP" ], "mackinaw": [ "NN" ], "management-labor": [ "JJ" ], "phase": [ "NN", "VB" ], "Melody": [ "NNP" ], "Leschly": [ "NNP" ], "parted": [ "VBD", "VBN", "JJ" ], "reflectance-measuring": [ "JJ" ], "fabulous": [ "JJ" ], "Soya": [ "NNP" ], "infiltration": [ "NN" ], "parapets": [ "NNS" ], "undated": [ "JJ" ], "friendships": [ "NNS" ], "tweezers": [ "NNS" ], "chests": [ "NNS" ], "Motoren": [ "NNP" ], "fattening": [ "VBG", "NN" ], "redistributed": [ "VBN" ], "mutational": [ "JJ" ], "organisms": [ "NNS" ], "worsen": [ "VB" ], "stock-trader": [ "NN" ], "insinuate": [ "VB" ], "redistributes": [ "VBZ" ], "E-6A": [ "NN" ], "Diest": [ "NNP" ], "endorse": [ "VB", "VBP" ], "speeded-up": [ "JJ" ], "Abandoning": [ "VBG" ], "paper-making": [ "JJ" ], "Balking": [ "VBG" ], "Lymington": [ "NNP" ], "American-made": [ "JJ" ], "Vilas": [ "NNP" ], "Critics": [ "NNS", "NNP" ], "shills": [ "NNS" ], "feisty": [ "JJ" ], "delegates": [ "NNS" ], "Urged": [ "VBN" ], "Follow": [ "VB" ], "represented": [ "VBN", "VBD" ], "aftermath": [ "NN" ], "finders": [ "NNS" ], "potato-like": [ "JJ" ], "wait-and-see": [ "JJ" ], "forum": [ "NN" ], "Tabs": [ "NNS" ], "MINIMUM-WAGE": [ "NN" ], "stipulates": [ "VBZ" ], "Surprisingly": [ "RB" ], "Owned": [ "NNP" ], "disclaims": [ "VBZ" ], "mentor": [ "NN" ], "Pinel": [ "NNP" ], "Owner": [ "NN", "NNP" ], "Tabb": [ "NNP" ], "stipulated": [ "VBD", "VBN" ], "MBAs": [ "NNS" ], "politic": [ "JJ", "NN" ], "swearing": [ "NN", "VBG" ], "Thomasini": [ "NNP" ], "Jossy": [ "NNP" ], "Collectibles": [ "NNS", "NNP" ], "Studying": [ "VBG" ], "Siemaszko": [ "NNP" ], "sneer": [ "NN" ], "Sick": [ "NNP", "JJ" ], "LAWMAKERS": [ "NNS" ], "Gostomski": [ "NNP" ], "smelter": [ "NN" ], "Sprouting": [ "NN" ], "hospital": [ "NN" ], "Express": [ "NNP", "JJ", "NN" ], "Rivkin": [ "NNP" ], "Northwood": [ "NNP" ], "mediate": [ "VB" ], "noting": [ "VBG" ], "reserpine": [ "NN" ], "incautious": [ "JJ" ], "alpenglow": [ "NN" ], "preview": [ "NN" ], "assessment": [ "NN" ], "juiciest": [ "JJS" ], "Ark.": [ "NNP" ], "barbarous": [ "JJ" ], "polyether": [ "NN" ], "interpenetrate": [ "VBP" ], "A.J.": [ "NNP" ], "correspondingly": [ "RB" ], "Cece": [ "NNP" ], "Sugarman": [ "NNP" ], "Dilthey": [ "NNP" ], "film-making": [ "JJ" ], "Cech": [ "NNP" ], "Ceco": [ "NNP" ], "Write": [ "VB" ], "Ear": [ "NNP", "NN" ], "wintering": [ "VBG" ], "Anti-Semite": [ "NN" ], "Poppins": [ "NNP" ], "Eat": [ "NNP", "VB" ], "prearranged": [ "VBN", "JJ" ], "Rousell": [ "NNP" ], "Mister": [ "NNP" ], "Movats": [ "NNP" ], "Popping": [ "VBG" ], "unilateral": [ "JJ" ], "IIs": [ "NNPS" ], "ingenuity": [ "NN" ], "cooling-off": [ "JJ", "NN" ], "Clyfford": [ "NNP" ], "Unpleasant": [ "JJ" ], "non-NMS": [ "JJ" ], "Hillman": [ "NNP" ], "pluralistic": [ "JJ" ], "Wheel": [ "NNP", "NN" ], "IIT": [ "NNP" ], "sneers": [ "VBZ", "NNS" ], "scolding": [ "VBG" ], "infecting": [ "VBG" ], "Admissions": [ "NNP", "NNPS" ], "lesions": [ "NNS" ], "Jordan": [ "NNP" ], "aching": [ "VBG", "JJ" ], "Michelangelos": [ "NNPS" ], "dollar-selling": [ "NN" ], "Carmon": [ "NNP" ], "confrontations": [ "NNS" ], "moisten": [ "VB" ], "shakeout": [ "NN" ], "Cogeneration": [ "NNP" ], "delicacy": [ "NN" ], "price-jolting": [ "JJ" ], "Marlin": [ "NNP" ], "Buckhorn": [ "NN" ], "Excellence": [ "NN" ], "bylines": [ "NNS" ], "Kawasaki": [ "NNP" ], "best-pitcher": [ "JJ" ], "heavers": [ "NNS" ], "snarling": [ "VBG" ], "eye-to-eye": [ "JJ", "RB" ], "Salinas": [ "NNP" ], "turn-ons": [ "NNS" ], "jungle": [ "NN" ], "decreasing": [ "VBG" ], "aloud": [ "RB" ], "civil-service": [ "JJ", "NN" ], "oysters": [ "NNS" ], "misadventure": [ "NN" ], "nouvelle": [ "JJ" ], "Nostalgia": [ "NN" ], "Nostalgic": [ "JJ" ], "outshine": [ "VB" ], "Cup-Tote": [ "NNP" ], "SeaEscape": [ "NNP" ], "clapped": [ "VBD" ], "automating": [ "VBG" ], "glances": [ "NNS", "VBZ" ], "Third-Period": [ "JJ" ], "entrances": [ "NNS" ], "utilitarian": [ "JJ" ], "polluters": [ "NNS" ], "supervoting": [ "JJ" ], "first-level": [ "JJ" ], "McCall": [ "NNP" ], "entranced": [ "VBN" ], "compelling": [ "JJ", "VBG" ], "glanced": [ "VBD" ], "Aspencades": [ "NNPS" ], "vehicle": [ "NN" ], "Observatory": [ "NNP" ], "out-of-favor": [ "JJ" ], "pseudo-lobbyists": [ "NNS" ], "churchgoers": [ "NNS" ], "waffling": [ "VBG", "JJ", "NN" ], "potentates": [ "NNS" ], "Kidd": [ "NNP" ], "Bonfire": [ "NN", "NNP" ], "Kajima": [ "NNP" ], "Fawn": [ "NNP" ], "several": [ "JJ", "RB" ], "enmities": [ "NNS" ], "potatoes": [ "NNS" ], "PACS": [ "NNS" ], "Bolshoi": [ "NNP" ], "RICO-forfeiture": [ "JJ" ], "frantically": [ "RB" ], "affiliate": [ "NN", "VB" ], "Wilber": [ "NNP" ], "each": [ "DT" ], "Chapel": [ "NNP", "NN" ], "wariness": [ "NN" ], "correctional": [ "JJ" ], "imponderable": [ "JJ", "NN" ], "Neon": [ "NNP" ], "mahogany": [ "NN" ], "stockbrokers": [ "NNS" ], "onleh": [ "RB" ], "first-refusal": [ "JJ" ], "Dynamite": [ "NNP" ], "ghosts": [ "NNS" ], "double-decker": [ "JJ" ], "footfalls": [ "NNS" ], "Paladin": [ "NNP" ], "looseleaf": [ "NN" ], "fraught": [ "JJ" ], "Chancellor": [ "NNP" ], "counselors": [ "NNS" ], "baseballight": [ "NN" ], "adjust": [ "VB", "VBP" ], "splashed": [ "VBD", "VBN" ], "LaserTripter": [ "NNP" ], "chisels": [ "NNS" ], "eternal": [ "JJ" ], "salesmanship": [ "NN" ], "masterpiece": [ "NN" ], "Novo\\": [ "NNP" ], "Soldiers": [ "NNS", "NNPS" ], "non-fat": [ "JJ" ], "Shank": [ "NNP" ], "Kotobuki": [ "NNP" ], "Insects": [ "NNS" ], "grasses": [ "NNS" ], "AmBase": [ "NNP" ], "Sancho": [ "NNP" ], "Kilhour": [ "NNP" ], "encephalographic": [ "JJ" ], "aspire": [ "VB", "VBP" ], "onto": [ "IN" ], "tinkering": [ "NN", "VBG" ], "grassed": [ "VBN" ], "rand": [ "NN", "NNS" ], "rang": [ "VBD" ], "appeals": [ "NNS", "VBZ" ], "fighter-bombers": [ "NNS" ], "bandages": [ "NNS" ], "rank": [ "NN", "VBP", "JJ", "VB" ], "hearing": [ "NN", "VBG" ], "bombard": [ "VB" ], "now-dominant": [ "JJ" ], "Volare": [ "NNP" ], "postmark": [ "NN" ], "calorie": [ "NN" ], "caloric": [ "JJ" ], "triable": [ "JJ" ], "four-cylinder": [ "JJ" ], "lulled": [ "VBN" ], "Kulturbund": [ "NNP" ], "London-bred": [ "JJ" ], "geered": [ "VBN" ], "rewritten": [ "VBN" ], "reappraised": [ "VBD", "VBN" ], "indeterminate": [ "JJ" ], "Hacksaw": [ "NNP" ], "antiques": [ "NNS" ], "Volkswagen": [ "NNP", "NN" ], "putty-like": [ "JJ" ], "pre-selling": [ "VBG", "NN" ], "wedge": [ "NN", "VB" ], "Tuohy": [ "NNP" ], "bomb-plant": [ "JJ" ], "insightful": [ "JJ" ], "long-term-oriented": [ "JJ" ], "urban": [ "JJ" ], "overdraw": [ "VB" ], "scare-tactic": [ "NN" ], "airwaves": [ "NNS" ], "vertical-takeoff-and-landing": [ "JJ" ], "Carolyne": [ "NNP" ], "non-job-connected": [ "JJ" ], "negotiating": [ "VBG", "JJ", "NN" ], "slide-lock": [ "NN" ], "wrapped": [ "VBN", "VBD" ], "Benefit": [ "NNP", "VB" ], "Joannie": [ "NNP" ], "wardrobe": [ "NN" ], "Yitzhak": [ "NNP" ], "rampage": [ "NN" ], "divisible": [ "JJ" ], "bloated": [ "JJ", "VBN" ], "O.T.": [ "NNP" ], "ABA": [ "NNP" ], "interrelated": [ "VBN", "JJ" ], "flame": [ "NN", "VBP", "VB" ], "Gang": [ "NNP", "NN" ], "Spirrison": [ "NNP" ], "Renshaw": [ "NNP" ], "legibility": [ "NN" ], "swift-footed": [ "JJ" ], "oath-taking": [ "NN" ], "Triamcinolone": [ "NN" ], "Pershare": [ "JJ" ], "arbs": [ "NNS" ], "pollination": [ "NN" ], "commercializing": [ "VBG" ], "Menilmontant": [ "NNP" ], "advising": [ "VBG", "NN" ], "public-address": [ "JJ" ], "slithering": [ "VBG" ], "thomp": [ "NN" ], "Czechoslovakia": [ "NNP" ], "Conceived": [ "VBN" ], "pandanus": [ "NN" ], "predominantly": [ "RB" ], "Picop": [ "NNP" ], "clunky": [ "JJ" ], "wide-awake": [ "JJ" ], "easier-to-read": [ "JJ" ], "Vowel": [ "NNP" ], "Jelly": [ "NNP" ], "complexes": [ "NNS" ], "Pikaia": [ "NNP" ], "Leland": [ "NNP" ], "Relentless": [ "JJ" ], "Attermann": [ "NNP" ], "Wang": [ "NNP" ], "Whitelock": [ "NNP" ], "gravitas": [ "NNS" ], "Shield": [ "NNP" ], "Want": [ "VB", "VBP" ], "pineapple": [ "NN" ], "stock-related": [ "JJ" ], "pasha": [ "NN" ], "Tetley": [ "NNP" ], "yank": [ "VB", "NN" ], "kerchiefs": [ "NNS" ], "sanctuary": [ "NN" ], "herpetologist": [ "NN" ], "shipmate": [ "NN" ], "sago": [ "NN" ], "saga": [ "NN" ], "sage": [ "NN", "JJ" ], "two-season": [ "JJ" ], "solutions": [ "NNS" ], "polemics": [ "NNS" ], "Pickin": [ "VBG" ], "sags": [ "NNS" ], "chewed": [ "VBD", "VBN" ], "Salespeople": [ "NNS" ], "bluing": [ "NN" ], "Mercantile": [ "NNP" ], "delays": [ "NNS", "VBZ" ], "refreshment": [ "NN" ], "boies": [ "NNS" ], "takeover-stock": [ "JJ", "NN" ], "pearl-gray": [ "JJ" ], "eleventh-hour": [ "JJ" ], "non-figurative": [ "JJ" ], "excitedly": [ "RB" ], "Surrender": [ "VB", "NNP" ], "dullness": [ "NN" ], "Whittier": [ "NNP" ], "Pacheco": [ "NNP" ], "imperceptibly": [ "RB" ], "criticizes": [ "VBZ" ], "asbestos": [ "NN" ], "overpressure": [ "NN" ], "fluid": [ "NN", "JJ" ], "criticized": [ "VBN", "VBD" ], "congruent": [ "JJ" ], "Eurasian": [ "NNP" ], "report": [ "NN", "VBP", "VB" ], "Magdalene": [ "NNP" ], "older-skewing": [ "JJR" ], "Magdalena": [ "NNP" ], "Sucrerie": [ "NNP" ], "subservience": [ "NN" ], "translating": [ "VBG", "NN" ], "Telecharge": [ "NNP" ], "method": [ "NN" ], "peroxide": [ "NN" ], "Jupiter": [ "NNP", "NN" ], "Conradically": [ "RB" ], "health-services": [ "JJ" ], "fragrant": [ "JJ" ], "thrashing": [ "NN", "VBG" ], "electrodes": [ "NNS" ], "habit": [ "NN" ], "wrest": [ "VB" ], "Eckenfelder": [ "NNP" ], "proclaims": [ "VBZ" ], "detection": [ "NN" ], "price-competitive": [ "JJ" ], "red-necked": [ "JJ" ], "corrupt": [ "JJ", "VB" ], "noodles": [ "NNS" ], "Klatman": [ "NNP" ], "byword": [ "NN" ], "overborrowing": [ "VBG" ], "Dodgers": [ "NNP", "JJ", "NNPS" ], "Desegregation": [ "NN", "NNP" ], "Ditlow": [ "NNP" ], "hundred-thousand-share": [ "JJ" ], "interdiction": [ "NN" ], "modulate": [ "VBP", "VB" ], "Kingfisher": [ "NNP" ], "brushbacks": [ "NNS" ], "Costantine": [ "NNP" ], "unconscionable": [ "JJ" ], "Dak": [ "NNP" ], "incarnation": [ "NN" ], "Budgeting": [ "NN", "NNP" ], "leaping": [ "VBG", "JJ|VBG" ], "larynx": [ "NN" ], "Lumber": [ "NNP", "NN" ], "Bangs": [ "NNP" ], "wear": [ "VB", "JJ", "NN", "VBP" ], "low-back-pain": [ "JJ" ], "goddess": [ "NN" ], "franc-denominated": [ "JJ" ], "Karet": [ "NNP" ], "beeps": [ "NNS" ], "politically": [ "RB" ], "amortized": [ "VBN" ], "WNBC": [ "NNP" ], "Karel": [ "NNP" ], "Kowa": [ "NNP" ], "Small-stock": [ "NN" ], "Zink": [ "NNP" ], "infection-fighting": [ "JJ" ], "Lidex": [ "NNP" ], "Maj.": [ "NNP" ], "GIVE": [ "VBP" ], "beer-runners": [ "NNS" ], "anti-discrimination": [ "JJ", "NN" ], "Runways": [ "NNS" ], "Pharmaceuticals": [ "NNP", "NNS", "NNPS" ], "Brittan": [ "NNP" ], "Intimations": [ "NNS" ], "majestic": [ "JJ" ], "Plaster": [ "NNP", "NN" ], "less-educated": [ "JJ" ], "banisters": [ "NNS" ], "hysterically": [ "RB" ], "wide-open": [ "JJ" ], "rotenone": [ "NN" ], "space-buying": [ "NN" ], "Marlboro": [ "NNP" ], "simplification": [ "NN" ], "becalmed": [ "JJ" ], "subverts": [ "VBZ" ], "Pittsburgh-based": [ "JJ" ], "Kibbutzniks": [ "NNS" ], "single-barrel": [ "JJ" ], "Mogan": [ "NNP" ], "Pennsylvania": [ "NNP" ], "Medicines": [ "NNP" ], "glided": [ "VBD" ], "well-run": [ "JJ" ], "gasolines": [ "NNS" ], "Skoal": [ "NNP" ], "patronizing": [ "VBG", "JJ" ], "glider": [ "NN" ], "windup": [ "NN" ], "Arlauskas": [ "NNP" ], "foster-care": [ "JJ" ], "non-Western": [ "JJ" ], "leprosy": [ "NN" ], "Helmerich": [ "NNP" ], "Plug-in": [ "JJ" ], "delle": [ "NNP" ], "marinade": [ "NN" ], "Spreading": [ "NNP" ], "procedure": [ "NN" ], "hangars": [ "NNS" ], "confreres": [ "FW", "NNS" ], "Compaore": [ "NNP" ], "market-maker": [ "NN" ], "Ellis": [ "NNP" ], "provocative": [ "JJ" ], "Boise-Cascade": [ "NNP" ], "slovenliness": [ "NN" ], "Ellie": [ "NNP" ], "experts": [ "NNS" ], "subspecies": [ "NNS" ], "PATH": [ "NNP" ], "interacts": [ "VBZ" ], "Nathaniel": [ "NNP" ], "aged-care": [ "NN" ], "circumventing": [ "VBG" ], "gpd": [ "NN" ], "B.U.": [ "NNP" ], "matsyendra": [ "NN" ], "low-income": [ "JJ", "NN" ], "colour-prints": [ "NNS" ], "Copersucar": [ "NNP" ], "bands": [ "NNS" ], "Franchise": [ "NNP" ], "PEDAL": [ "NN" ], "harming": [ "VBG" ], "uncharged": [ "JJ" ], "lusty": [ "JJ" ], "satellite": [ "NN", "JJ" ], "settle": [ "VB", "VBP" ], "Maguire": [ "NNP" ], "lusts": [ "NNS" ], "bastard": [ "NN" ], "deflect": [ "VB" ], "suburb": [ "NN" ], "Coatedboard": [ "NNP" ], "Monsanto": [ "NNP" ], "portal": [ "NN" ], "Ashland": [ "NNP", "VBP" ], "insisted": [ "VBD", "VBN" ], "normalization": [ "NN" ], "tassel": [ "NN" ], "Bernadine": [ "NNP" ], "lunch-time": [ "NN" ], "Ottaway": [ "NNP" ], "intercompany": [ "NN" ], "FUNDS": [ "NNS", "NNP", "NNPS" ], "minimill": [ "NN" ], "poked": [ "VBD", "VBN" ], "gabble": [ "NN" ], "savings": [ "NNS", "NN" ], "incapable": [ "JJ", "NN" ], "Trendy": [ "JJ" ], "floor-covering": [ "NN" ], "appease": [ "VB" ], "Lots": [ "NNS" ], "luxury-car": [ "NN", "JJ" ], "diesels": [ "NNS" ], "mending": [ "VBG", "NN" ], "unimpeachably": [ "RB" ], "Lott": [ "NNP" ], "Yachtel": [ "NN" ], "DeMoulin": [ "NNP" ], "bugged": [ "VBN", "VBD" ], "breaching": [ "VBG" ], "Churches": [ "NNP", "NNS", "NNPS" ], "strenuously": [ "RB" ], "ever-higher": [ "JJ" ], "Georgians": [ "NNPS" ], "Ought": [ "MD" ], "dearer": [ "JJR" ], "meanly": [ "RB" ], "co-defendants": [ "NNS" ], "vie": [ "VBP", "VB" ], "Loyola": [ "NNP" ], "roughish": [ "JJ" ], "image-provoking": [ "JJ" ], "overemphasize": [ "VB" ], "kelp": [ "NN" ], "teenager": [ "NN" ], "entropy-increasing": [ "JJ" ], "Giroux": [ "NNP" ], "city": [ "NN" ], "trashed": [ "VBN" ], "Piero": [ "NNP" ], "groundbreakers": [ "NNS" ], "spanned": [ "VBN", "VBD" ], "upturn": [ "NN" ], "non-time": [ "NN" ], "spanner": [ "NN" ], "Piers": [ "NNP" ], "ditto": [ "NN" ], "appearing": [ "VBG" ], "employer-sponsored": [ "JJ" ], "hunt": [ "NN", "VB", "VBP" ], "zoom": [ "VB" ], "offices": [ "NNS" ], "overrated": [ "VBN" ], "hung": [ "VBD", "JJ", "VBN" ], "superlative": [ "JJ" ], "petting": [ "NN" ], "proudly": [ "RB" ], "Dalldorf": [ "NNP" ], "Wildenstein": [ "NNP" ], "Muck": [ "NNP" ], "Much": [ "RB", "JJ", "NNP" ], "smarmy": [ "JJ" ], "recently-passed": [ "JJ" ], "wrenching": [ "JJ", "VBG" ], "Sisley": [ "NNP" ], "self-effacing": [ "JJ" ], "companions": [ "NNS" ], "totals": [ "VBZ", "NNS" ], "Shoney": [ "NNP" ], "small-appearing": [ "JJ" ], "MNB": [ "NNP" ], "MNC": [ "NNP" ], "hastens": [ "VBZ" ], "PBS": [ "NNP" ], "PBX": [ "NNP" ], "disappeared": [ "VBD", "VBN" ], "two-colored": [ "JJ" ], "idolized": [ "JJ" ], "Summcorp": [ "NNP" ], "pectoralis": [ "NN" ], "interjected": [ "VBD" ], "bylaw": [ "NN" ], "By-the-Book": [ "JJ" ], "plum": [ "NN" ], "Disarmament": [ "NNP" ], "Gomel": [ "NNP" ], "Melanto": [ "NNP" ], "plus": [ "CC", "IN", "JJ", "NN", "RB" ], "improvidently": [ "RB" ], "glowering": [ "VBG" ], "conformations": [ "NNS" ], "Hone": [ "NNP" ], "trafficker": [ "NN" ], "Hong": [ "NNP", "JJ" ], "patent-law": [ "NN" ], "MANAGERS": [ "NNS" ], "over-stress": [ "VB" ], "credited": [ "VBN", "VBD" ], "Schaffner": [ "NNP" ], "Valente": [ "NNP" ], "trafficked": [ "VBD" ], "brushcut": [ "NN" ], "fruitful": [ "JJ" ], "deferents": [ "NNS" ], "existed": [ "VBD", "VBN" ], "stereotype": [ "NN" ], "sidings": [ "NNS" ], "attainments": [ "NNS" ], "sneezing": [ "VBG" ], "MiniSport": [ "NNP" ], "personage": [ "NN" ], "Illustration": [ "NNP" ], "Mammograms": [ "NNS" ], "Fellini": [ "NNP" ], "minter": [ "NN" ], "newsperson": [ "NN" ], "crews": [ "NNS" ], "astrophysics": [ "NNS" ], "Bonjour": [ "FW" ], "metabolism": [ "NN" ], "theory-and": [ "NN" ], "questionable": [ "JJ" ], "Rangoon": [ "NNP" ], "calving": [ "VBG", "NN" ], "payoffif": [ "NN" ], "Hon.": [ "NNP" ], "Tax-free": [ "JJ" ], "heinous": [ "JJ" ], "satisfactorily": [ "RB" ], "boondoggler": [ "NN" ], "questionably": [ "RB" ], "Maddie": [ "NNP" ], "medical-practice": [ "NN" ], "helicopter-borne": [ "JJ" ], "paging": [ "NN" ], "phosphate": [ "NN" ], "Bainbridge": [ "NNP" ], "sickliest": [ "JJS" ], "plant-sciences": [ "JJ" ], "PERMANENTE": [ "NNP" ], "Vista": [ "NNP" ], "Granada": [ "NNP" ], "forearm": [ "NN" ], "Pensacola": [ "NNP" ], "advancements": [ "NNS" ], "Abigail": [ "NNP" ], "Tuborg": [ "NNP" ], "indirect": [ "JJ" ], "buzzwords": [ "NNS" ], "propagandists": [ "NNS" ], "Lehne": [ "NNP" ], "punster": [ "NN" ], "overbid": [ "VBD", "VB" ], "inquisitiveness": [ "NN" ], "dialect": [ "NN" ], "emeriti": [ "FW" ], "unbalanced": [ "JJ", "VBN" ], "cleric": [ "NN" ], "superposition": [ "NN" ], "Effective": [ "JJ" ], "Relishes": [ "NNS" ], "Dain-sponsored": [ "JJ" ], "recompence": [ "NN" ], "miscellaneous": [ "JJ" ], "Harman": [ "NNP" ], "blokes": [ "NNS" ], "Splendor": [ "NN" ], "ridges": [ "NNS" ], "catastrophic-healthcare": [ "JJ" ], "discharge": [ "NN", "VB" ], "honour": [ "NN" ], "Kodak": [ "NNP", "NN" ], "power-company": [ "NN" ], "Emile": [ "NNP" ], "Chateaubriand": [ "NNP" ], "navel": [ "NN" ], "Kohi": [ "FW" ], "yacht": [ "NN" ], "Kohl": [ "NNP" ], "Dumas": [ "NNP" ], "well-designed": [ "JJ" ], "voluntarism": [ "NN" ], "intimacy": [ "NN" ], "reappraising": [ "VBG" ], "Emily": [ "NNP" ], "pistils": [ "NNS" ], "regulars": [ "NNS" ], "below-market": [ "JJ" ], "focus": [ "NN", "VBP", "VB" ], "leads": [ "VBZ", "NNS" ], "Hardings": [ "NNPS" ], "ice": [ "NN", "JJ" ], "Frum": [ "NNP" ], "crack-using": [ "JJ" ], "empathize": [ "VB" ], "McElyee": [ "NNP" ], "reinsuring": [ "VBG" ], "pompously": [ "RB" ], "icy": [ "JJ" ], "environment": [ "NN" ], "Jeroboams": [ "NNPS" ], "charge": [ "NN", "VBP", "VB" ], "quash": [ "VB" ], "discovering": [ "VBG" ], "Robots": [ "NNP", "NNS" ], "papier-mache": [ "NN" ], "coop": [ "NN" ], "Ferre": [ "NNP" ], "Quattlebaum": [ "NNP" ], "Ferro": [ "NNP" ], "sours": [ "VBZ" ], "hard-disk": [ "NN", "JJ" ], "plantain": [ "NN" ], "cook": [ "NN", "VB", "VBP" ], "Ferry": [ "NNP", "NN" ], "Speculation": [ "NN" ], "little": [ "JJ", "RB" ], "stonewalled": [ "VBD" ], "federal-systems": [ "JJ" ], "Laswick": [ "NNP" ], "three-inning": [ "JJ" ], "camaraderie": [ "NN" ], "cold-weather": [ "JJ" ], "invidious": [ "JJ" ], "asset-management": [ "NN" ], "encroach": [ "VB" ], "phosphorus-bridged": [ "JJ" ], "rehashed": [ "VBD" ], "Naftalis": [ "NNP" ], "better-than-expected": [ "JJ", "NN" ], "dries": [ "NNS", "VBZ" ], "drier": [ "NN", "JJR", "RBR" ], "mid-1992": [ "NN" ], "body-tissue": [ "NN" ], "obsolete": [ "JJ" ], "mid-1995": [ "NN" ], "Damages": [ "NNS", "NNPS" ], "ZDF": [ "NNP" ], "pre-Communist": [ "JJ" ], "Abbenhaus": [ "NNP" ], "deluded": [ "JJ", "VBD" ], "Sheffield": [ "NNP" ], "Cullen\\/Frost": [ "NNP" ], "transcontinental": [ "JJ" ], "Haggard": [ "NNP" ], "Accor": [ "NNP" ], "prescriptions": [ "NNS" ], "Barrister": [ "NNP" ], "skyjackers": [ "NNS" ], "still-limited": [ "JJ" ], "cork": [ "NN" ], "Mustang": [ "NNP", "NN" ], "city\\/regional": [ "JJ" ], "Matrimonial": [ "NNP" ], "male": [ "JJ", "JJ|NN", "NN" ], "standout": [ "NN" ], "shove": [ "VB", "NN" ], "healthy": [ "JJ" ], "ravaging": [ "VBG" ], "busybodies": [ "NNS" ], "Sibly": [ "NNP" ], "Maximilian": [ "NNP" ], "Hornung": [ "NNP" ], "prude": [ "NN" ], "Floating": [ "VBG", "JJ" ], "Ruanda-Urundi": [ "NNP" ], "SIDES": [ "NNS" ], "emerge": [ "VB", "VBP" ], "Kayabashi": [ "NNP" ], "humour": [ "NN" ], "inducing": [ "VBG" ], "Member": [ "NN", "NNP" ], "trousers-pockets": [ "NNS" ], "preconceptions": [ "NNS" ], "Communion": [ "NNP" ], "Ind.": [ "NNP" ], "Siegfried": [ "NNP" ], "hoppled": [ "VBN" ], "inflections": [ "NNS" ], "podiatric": [ "JJ" ], "brighter": [ "JJR" ], "off-base": [ "JJ" ], "Strenger": [ "NNP" ], "doctor-oriented": [ "JJ" ], "binational": [ "JJ" ], "Carbones": [ "NNPS" ], "Wendells": [ "NNPS" ], "fourteen-nation": [ "NN" ], "negroes": [ "NNPS" ], "Barneys": [ "NNP" ], "reorder": [ "VB" ], "lawns": [ "NNS" ], "ayes": [ "NNS" ], "Gerardo": [ "NNP" ], "sheds": [ "VBZ", "NNS" ], "Fredrikshall": [ "NNP" ], "Lebanon": [ "NNP" ], "part-timers": [ "NNS" ], "alliance": [ "NN" ], "Swallow-Barn": [ "NNP" ], "Homeless": [ "NNP", "JJ" ], "placements": [ "NNS" ], "president-international": [ "NN" ], "Mij": [ "NNP" ], "Beaming": [ "VBG" ], "Mio": [ "NNP" ], "Mia": [ "NNP" ], "seven-month-old": [ "JJ" ], "geeks": [ "NNS" ], "glitch": [ "NN" ], "mediumship": [ "NN" ], "demagoguery": [ "NN" ], "Eighteenth": [ "NNP", "JJ" ], "five-pfennig": [ "JJ" ], "Mix": [ "NNP" ], "Gasse": [ "NNP" ], "terrain-marring": [ "JJ" ], "IMSAI": [ "NNP" ], "intelligible": [ "JJ", "NN" ], "painkillers": [ "NNS" ], "price-fixing": [ "NN", "JJ" ], "Jeri": [ "NNP" ], "undulated": [ "VBD" ], "cardinal": [ "JJ", "NN" ], "lucked": [ "VBD" ], "Strategists": [ "NNS" ], "begs": [ "VBZ" ], "Boehm": [ "NNP" ], "etched": [ "VBD", "VBN" ], "leavin": [ "VBG" ], "crashes": [ "NNS", "VBZ" ], "crasher": [ "NN" ], "fascist": [ "JJ" ], "scoff": [ "VBP", "NN" ], "Ramirez": [ "NNP" ], "fascism": [ "NN" ], "depriving": [ "VBG" ], "Rawls": [ "NNP" ], "celluloids": [ "NNS" ], "muggy": [ "JJ" ], "Ellesmere": [ "NNP" ], "liquid": [ "JJ", "NN" ], "drumsticks": [ "NNS" ], "Damas": [ "NNP" ], "Jeans": [ "NNPS" ], "noncriminal": [ "JJ" ], "Breakers": [ "NNP", "NNPS" ], "Elks": [ "NNP" ], "Muscatine": [ "NNP" ], "Janesville": [ "NNP" ], "invests": [ "VBZ" ], "Jeane": [ "NNP" ], "Trenchard": [ "NNP" ], "Monorail": [ "NNP" ], "Kwango": [ "NNP" ], "subjectivity": [ "NN" ], "extractor": [ "NN" ], "Otero": [ "NNP" ], "subsections": [ "NNS" ], "estuary": [ "NN" ], "furnished": [ "VBN", "VBD", "JJ" ], "understandingly": [ "RB" ], "paternalist": [ "JJ" ], "creativity-oriented": [ "JJ" ], "local-service": [ "JJ" ], "SOUVENIRS": [ "NNS" ], "furnishes": [ "VBZ" ], "Maturities": [ "NNS" ], "White": [ "NNP", "JJ", "NN" ], "Christ-like": [ "JJ" ], "foldable": [ "JJ" ], "supplemented": [ "VBN", "VBD" ], "skinfolds": [ "NNS" ], "Stung": [ "VBN" ], "abhorred": [ "VBD" ], "self-insurance": [ "NN" ], "tangos": [ "NNS" ], "Using": [ "VBG" ], "Jordonelle": [ "NNP" ], "investment-oriented": [ "JJ" ], "Cable": [ "NNP", "NN" ], "unhurriedly": [ "RB" ], "underneath": [ "IN", "NN" ], "cowering": [ "VBG" ], "Gottesfeld": [ "NNP" ], "A340": [ "NN" ], "lustful": [ "JJ" ], "Loyalties": [ "NNS" ], "Pontchartrain": [ "NNP" ], "Klauser": [ "NNP" ], "name": [ "NN", "VB", "UH", "VBP" ], "coaxes": [ "VBZ" ], "sensibilities": [ "NNS" ], "laborers": [ "NNS" ], "substitutes": [ "NNS", "VBZ" ], "synchronize": [ "VBP", "VB" ], "bullion": [ "NN" ], "trussed-up": [ "JJ" ], "recognitions": [ "NNS" ], "social-security": [ "NN" ], "loss-recovery": [ "JJ" ], "populated": [ "VBN", "JJ", "VBD" ], "hiccups": [ "NNS" ], "expansions": [ "NNS" ], "uninhibited": [ "JJ" ], "Semiramis": [ "NNP" ], "Distributing": [ "VBG" ], "inopportune": [ "JJ" ], "responsiblilty": [ "NN" ], "tuned": [ "VBN", "JJ", "VBD" ], "obsession": [ "NN" ], "plans": [ "NNS", "VBP", "VBZ" ], "once-downtrodden": [ "JJ" ], "Woodman": [ "NNP" ], "low-pitched": [ "JJ" ], "infarct": [ "NN" ], "issuances": [ "NNS" ], "Engineered": [ "NNP" ], "Woodmac": [ "NNP" ], "Pennsylvania-based": [ "JJ" ], "de-iodinated": [ "VBN" ], "antiphonal": [ "JJ" ], "variable-speed": [ "JJ" ], "Record": [ "NNP", "NN", "VB" ], "broker-sold": [ "JJ" ], "Security": [ "NNP", "NN" ], "liberal-arts": [ "NNS" ], "Lamalie": [ "NNP" ], "overmedicated": [ "VBN" ], "calories": [ "NNS" ], "Accelerated": [ "VBN" ], "unpaid": [ "JJ" ], "butterflies": [ "NNS" ], "swine": [ "NNS" ], "Kaboom": [ "NN" ], "widow": [ "NN" ], "childhood": [ "NN" ], "ammo": [ "NN" ], "revenue": [ "NN" ], "Stark": [ "NNP" ], "Start": [ "VB", "NN", "NNP", "VBP" ], "Hartford\\/Springfield": [ "NNP" ], "Stars": [ "NNP", "NN", "NNS", "NNPS" ], "Starr": [ "NNP" ], "array": [ "NN" ], "hairdressers": [ "NNS" ], "less-dramatic": [ "JJ" ], "peddles": [ "VBZ" ], "peddler": [ "NN" ], "Bundesnachrichtendienst": [ "NNP" ], "intra-governmental": [ "JJ" ], "opus": [ "NN" ], "Kedgeree": [ "NN" ], "Wharton": [ "NNP" ], "terrifying": [ "JJ", "VBG" ], "peddled": [ "VBN" ], "Provision": [ "NN" ], "seduced": [ "VBN" ], "Geneva-based": [ "JJ" ], "greenly": [ "RB" ], "cope": [ "VB", "NN" ], "Pasternak": [ "NNP" ], "caning": [ "NN" ], "Turnpike-widening": [ "JJ" ], "paredon": [ "NN" ], "Seng": [ "NNP" ], "Naked": [ "JJ" ], "cops": [ "NNS" ], "nonoccurrence": [ "NN" ], "Send": [ "VB", "NNP" ], "seducer": [ "NN" ], "seduces": [ "VBZ" ], "immigrant": [ "NN", "JJ" ], "Mobutu": [ "NNP" ], "specify": [ "VB", "VBP" ], "Katanga": [ "NNP" ], "possiblities": [ "NNS" ], "unfortunately": [ "RB" ], "oats": [ "NNS", "NN" ], "Jogjakarta": [ "NN" ], "capital-gain": [ "JJ" ], "fourth-flight": [ "JJ" ], "Time-Warner": [ "NNP" ], "mindful": [ "JJ" ], "schooled": [ "VBN" ], "Alpers": [ "NNP" ], "outcome": [ "NN" ], "oath": [ "NN" ], "Alpert": [ "NNP" ], "rend": [ "VB" ], "Topkapi": [ "NNP" ], "Did-": [ "NNP" ], "CONTACT": [ "NN" ], "rent": [ "NN", "VB", "VBN", "VBP" ], "Unglazed": [ "VBN" ], "hunter-killer": [ "NN", "JJ" ], "Glavin": [ "NNP" ], "sashayed": [ "VBD" ], "marathon": [ "NN", "JJ" ], "right-to-privacy": [ "JJ" ], "narrow-minded": [ "JJ" ], "homerun": [ "NN" ], "Fazio": [ "NNP" ], "ideas": [ "NNS" ], "great-grandchildren": [ "NNS" ], "ideal": [ "JJ", "NN" ], "Sent": [ "VBN" ], "fracture": [ "NN" ], "blunt": [ "VB", "JJ" ], "DISNEY": [ "NNP" ], "luckiest": [ "JJS" ], "hooves": [ "NNS" ], "Basics": [ "NNP", "NNPS" ], "kibbutz": [ "NN" ], "inks": [ "NNS" ], "betrayal": [ "NN" ], "Shortageflation": [ "NN" ], "barflies": [ "NNS" ], "medical-school": [ "NN" ], "Erodes": [ "VBZ" ], "stormed": [ "VBD", "VBN" ], "Waldbaum": [ "NNP" ], "Yegor": [ "NNP" ], "WHITMAN": [ "NNP" ], "CITY": [ "NNP" ], "Wagoneer": [ "NNP", "NN" ], "Taoism": [ "NNP" ], "Type-O": [ "JJ" ], "coproductions": [ "NNS" ], "RIAA": [ "NNP" ], "Erensel": [ "NNP" ], "Gold\\/Minerals": [ "NNP" ], "P.A.": [ "NN" ], "humilation": [ "NN" ], "sculpted": [ "VBN" ], "terror-stricken": [ "JJ" ], "Dassault": [ "NNP", "NN" ], "permeable": [ "JJ" ], "F.N.": [ "NNP" ], "non-com": [ "NN" ], "hustled": [ "VBD", "VBN" ], "Whittaker": [ "NNP" ], "feistiness": [ "NN" ], "polysilicon": [ "NN" ], "Fellowship": [ "NNP", "NN" ], "Authentication": [ "NNP" ], "Gilbertie": [ "NNP" ], "drumbeating": [ "NN" ], "shibboleth": [ "NN" ], "tailpipe-emissions": [ "NNS", "JJ" ], "adhere": [ "VB", "VBP" ], "hustler": [ "NN" ], "hustles": [ "VBZ" ], "unshaven": [ "JJ" ], "principled": [ "JJ" ], "one-million-plus": [ "JJ" ], "B-2": [ "NNP", "JJ", "NN" ], "B-3": [ "JJ", "NNP" ], "open-skies": [ "JJ" ], "B-1": [ "NNP", "JJ" ], "unheard-of": [ "JJ" ], "B-4": [ "NNP" ], "invocation": [ "NN" ], "transfusions": [ "NNS" ], "MSD-200": [ "NNP" ], "Progressive": [ "NNP", "JJ" ], "H": [ "NNP", "LS", "NN" ], "Twigs": [ "NNS" ], "Arthritis": [ "NNP" ], "non-viral": [ "JJ" ], "multimillion": [ "JJ", "NN" ], "strafing": [ "VBG" ], "Shops": [ "NNPS", "VBZ", "NNP", "NNS" ], "reveal": [ "VB", "VBP" ], "Radcliffe": [ "NNP" ], "contradistinction": [ "NN" ], "driers": [ "NNS" ], "attitude": [ "NN" ], "kickbacks": [ "NNS" ], "Suburban": [ "NNP", "JJ" ], "RATIOS": [ "NNS" ], "ken": [ "NN" ], "bids": [ "NNS", "VBZ" ], "abler": [ "JJR" ], "college": [ "NN" ], "Wildly": [ "RB" ], "apologies": [ "NNS" ], "determinative": [ "JJ" ], "cadets": [ "NNS" ], "kitschy": [ "JJ" ], "Edelman": [ "NNP" ], "reproducibly": [ "RB" ], "federal": [ "JJ" ], "Mont.": [ "NNP" ], "definite": [ "JJ" ], "Alarcon": [ "NNP" ], "fun-in-the-sun": [ "JJ" ], "nooks": [ "NNS" ], "reproducible": [ "JJ" ], "Trevino": [ "NNP" ], "cantered": [ "VBD" ], "corridors": [ "NNS" ], "communicators": [ "NNS" ], "half-gainer": [ "NN" ], "pine-knot": [ "JJ" ], "jurisprudentially": [ "RB" ], "now-shaky": [ "JJ" ], "FUND": [ "NNP" ], "disinfectants": [ "NNS" ], "diners": [ "NNS" ], "volubly": [ "RB" ], "interfere": [ "VB", "VBP" ], "Leitz": [ "NNP" ], "Monte": [ "NNP", "FW" ], "wanders": [ "VBZ" ], "subskills": [ "NNS" ], "recumbent": [ "JJ" ], "Millay": [ "NNP" ], "Month": [ "NNP" ], "leftists": [ "NNS" ], "berry": [ "NN" ], "Dream-Lusty": [ "NNP" ], "Monty": [ "NNP" ], "duty": [ "NN" ], "Decline": [ "NN" ], "Halcion": [ "NNP", "NN" ], "cabal": [ "NN" ], "Geraldo": [ "NNP" ], "pox": [ "NN" ], "Shortstop": [ "NNP" ], "armchair": [ "NN", "JJ" ], "pot": [ "NN", "VB" ], "pontificates": [ "VBZ" ], "hunched": [ "VBN", "VBD", "JJ" ], "Denali": [ "NNP" ], "pop": [ "NN", "JJ", "VB", "VBP" ], "pol": [ "NN" ], "swum": [ "VBN" ], "pod": [ "NN" ], "hunches": [ "NNS" ], "MAKES": [ "VBZ" ], "teammate": [ "NN" ], "Electric": [ "NNP", "JJ" ], "rhinestones": [ "NNS" ], "entrenchment": [ "NN" ], "bequeathed": [ "VBN", "VBD" ], "cash-squeezed": [ "JJ" ], "Bisson": [ "NNP" ], "Y.M.H.A.": [ "NNP" ], "billionaires": [ "NNS" ], "dairymen": [ "NNS" ], "engine": [ "NN" ], "Leominster": [ "NNP" ], "blessing": [ "NN", "VBG" ], "Spokeswomen": [ "NNS" ], "ADVANCEMENT": [ "NNP" ], "Stavropoulos": [ "NNP" ], "tiger": [ "NN" ], "callipygous": [ "NN" ], "eatery": [ "NN" ], "Geissinger": [ "NNP" ], "minister": [ "NN", "NNP" ], "Barmore": [ "NNP" ], "eaters": [ "NNS" ], "careful": [ "JJ" ], "irrelevant": [ "JJ" ], "dribble": [ "NN" ], "sniff": [ "VB" ], "mount": [ "VB", "NN", "VBP" ], "volatilization": [ "NN" ], "Vary": [ "VBP" ], "premature": [ "JJ" ], "pre-date": [ "VB" ], "prime-3": [ "NN" ], "air-passenger": [ "NN" ], "mound": [ "NN" ], "Sega": [ "NNP" ], "Yachtsman": [ "NNP" ], "enriches": [ "VBZ" ], "vest": [ "NN", "VB" ], "Slice": [ "NN" ], "Silvers": [ "NNP" ], "coupled": [ "VBN", "VBD" ], "self-rule": [ "NN" ], "Edwin": [ "NNP", "NNPS" ], "Oak": [ "NNP", "NN" ], "ex-Justice": [ "NN" ], "couples": [ "NNS" ], "coupler": [ "NN" ], "Oat": [ "NNP" ], "Shoppers": [ "NNS" ], "decisively": [ "RB" ], "Cashman": [ "NNP" ], "erroneously": [ "RB" ], "Schwarzkopf": [ "NNP" ], "dithering": [ "VBG" ], "Void": [ "NN" ], "chuckling": [ "VBG" ], "no-profit": [ "JJ" ], "persona": [ "NN", "FW" ], "Commodity": [ "NNP", "NN" ], "refraction": [ "NN" ], "Soul": [ "NNP" ], "asseet": [ "NN" ], "decently": [ "RB" ], "Sour": [ "NNP" ], "abalone": [ "NN" ], "unqualified": [ "JJ" ], "illicitly": [ "RB" ], "cartoon": [ "NN" ], "togetherness": [ "NN" ], "Buckhead": [ "NNP" ], "Drunken": [ "JJ" ], "omelette": [ "NN" ], "estimation": [ "NN" ], "sand": [ "NN" ], "Appelbaum": [ "NNP" ], "ranch": [ "NN" ], "double-checking": [ "NN" ], "synthesised": [ "VBN" ], "shroud": [ "VBP" ], "Physical": [ "NNP", "JJ", "NN" ], "LBO-related": [ "JJ" ], "Herod": [ "NNP" ], "Vikings": [ "NNPS", "NNP" ], "Heron": [ "NNP" ], "actress": [ "NN" ], "risking": [ "VBG" ], "Nikolais": [ "NNP" ], "internationalization": [ "NN" ], "satin": [ "NN" ], "halfway": [ "RB", "JJ" ], "lower-cut": [ "JJ" ], "socialite": [ "NN" ], "agreeement": [ "NN" ], "Propane": [ "NNP" ], "rose": [ "VBD", "VBP", "JJ", "NN" ], "Getty": [ "NNP" ], "Laboratorium": [ "NNP" ], "disrupt": [ "VB", "VBP" ], "Tsur": [ "NNP" ], "Marmara": [ "NNP" ], "Ricco": [ "NNP" ], "Adair": [ "NNP" ], "confines": [ "NNS" ], "saber-rattling": [ "NN", "JJ" ], "confined": [ "VBN", "JJ", "VBD" ], "Beiderbecke": [ "NNP" ], "Wynn": [ "NNP" ], "Producer": [ "NN", "NNP" ], "exquisitely": [ "RB" ], "reduces": [ "VBZ" ], "reducer": [ "NN" ], "sanity": [ "NN" ], "snort": [ "VB", "NN" ], "four-in-hand": [ "JJ" ], "Israelites": [ "NNPS" ], "substandard": [ "JJ" ], "stony-meteorite": [ "JJ" ], "reduced": [ "VBN", "VBD", "JJ" ], "Antoinette": [ "NNP" ], "Bookwalter": [ "NNP" ], "Vevay": [ "NNP" ], "inflation-hedge": [ "JJ" ], "West": [ "NNP", "NNS", "NNPS", "JJ", "NN", "RB" ], "better-capitalized": [ "JJ" ], "esplanade": [ "NN" ], "Employer": [ "NN" ], "Cracklin": [ "NNP" ], "semi-local": [ "JJ" ], "Employee": [ "NNP", "NN" ], "Cahners": [ "NNP" ], "Bartleby": [ "NNP" ], "eloquence": [ "NN" ], "Berens": [ "NNP" ], "boatsmen": [ "NNS" ], "Basler": [ "NNP" ], "resonate": [ "VB" ], "DeMoss": [ "NNP" ], "preceding": [ "VBG", "JJ" ], "ornamentation": [ "NN" ], "loose-knit": [ "JJ" ], "biofeedback": [ "NN" ], "TRO": [ "NN" ], "Co-optation": [ "NN" ], "Rutherford": [ "NNP" ], "Kolstad": [ "NNP" ], "launch-pad": [ "JJ" ], "Olin": [ "NNP" ], "Neuberger": [ "NNP" ], "TRT": [ "NNP" ], "TRW": [ "NNP" ], "TRV": [ "NNP" ], "roly-poly": [ "JJ" ], "radiography": [ "NN" ], "Extensor": [ "NNP" ], "Cabernets": [ "NNPS" ], "cornucopia": [ "NN" ], "Jackie": [ "NNP" ], "shrimp": [ "NN" ], "informing": [ "VBG" ], "creepers": [ "NNS" ], "Coleco": [ "NNP" ], "relative-performance": [ "JJ" ], "equalize": [ "VB" ], "tariffs": [ "NNS", "NNPS" ], "rapeseed": [ "NN" ], "Bexar": [ "NNP" ], "ladies": [ "NNS" ], "Fritze": [ "NNP" ], "Commisioner": [ "NNP" ], "polka": [ "NN" ], "pick-up": [ "JJ", "NN" ], "Fabbri": [ "NNP" ], "Tumbling": [ "JJ" ], "conservancy": [ "NN" ], "Otto": [ "NNP" ], "Otte": [ "NNP" ], "theoretically": [ "RB" ], "Wolters-Kluwer": [ "NNP" ], "ESL": [ "NNP" ], "boatloads": [ "NNS" ], "Nabisco": [ "NNP" ], "Hurwitz": [ "NNP" ], "Vikulov": [ "NNP" ], "expiration-related": [ "JJ" ], "liberals": [ "NNS" ], "Infiniti": [ "NNP" ], "Ashamed": [ "JJ" ], "unfertile": [ "JJ" ], "Infinite": [ "JJ", "NN" ], "Mansfield": [ "NNP" ], "Lesley-Anne": [ "NNP" ], "multi-millionaire": [ "JJ", "NN" ], "merrymaking": [ "NN" ], "Errol": [ "NNP" ], "Stoneridge": [ "NNP" ], "over-50s": [ "NNS" ], "amongst": [ "IN" ], "Wurm": [ "NNP" ], "Sloves": [ "NNP" ], "hotel-casino": [ "NN" ], "Melies": [ "NNP" ], "Inscribed": [ "VBN" ], "pygmies": [ "NNS" ], "Kisha": [ "FW" ], "demilitarize": [ "VB" ], "Arbitrage-related": [ "JJ" ], "hard-sell": [ "JJ" ], "Saito": [ "NNP" ], "highboard": [ "NN" ], "cloisters": [ "NNS" ], "dimly-outlined": [ "JJ" ], "inoculation": [ "NN" ], "muscle-bound": [ "JJ" ], "Gienow": [ "NNP" ], "Layout": [ "NN" ], "Space": [ "NNP", "NN" ], "Nucor": [ "NNP" ], "shoulders": [ "NNS" ], "Detergent": [ "NN" ], "lichen": [ "NN" ], "smokescreen": [ "NN" ], "McKenzie": [ "NNP" ], "encompass": [ "VB" ], "bishop": [ "NN" ], "pre-season": [ "JJ" ], "heather": [ "NN" ], "discerned": [ "VBN" ], "Hirey": [ "NNP" ], "Sumo": [ "NN" ], "puttable": [ "JJ" ], "narrowing": [ "VBG", "NN" ], "Hired": [ "JJ", "VBN" ], "radio-TV": [ "JJ", "NN" ], "heathen": [ "JJ", "NN" ], "SGC": [ "NNP" ], "analystics": [ "NNS" ], "Johnstown": [ "NNP" ], "Farnum": [ "NNP" ], "McCormick": [ "NNP" ], "collaborative": [ "JJ" ], "Wellington": [ "NNP" ], "concoctions": [ "NNS" ], "Zoete": [ "NNP" ], "Deafening": [ "VBG" ], "Perier": [ "NNP" ], "accruals": [ "NNS" ], "unanswerable": [ "JJ" ], "inflation-growth": [ "NN" ], "Marilee": [ "NNP" ], "slowball": [ "NN" ], "conceptualizing": [ "VBG" ], "Brewer": [ "NNP" ], "Runner": [ "NNP" ], "quavering": [ "VBG" ], "internalized": [ "VBN" ], "lamentations": [ "NNS" ], "sudsing": [ "NN" ], "hitless": [ "JJ" ], "tanned": [ "JJ", "VBN" ], "AMUSEMENT": [ "JJ" ], "Breen": [ "NNP" ], "all": [ "DT", "RB|DT", "DT|RB", "RB", "PDT" ], "quizzical": [ "JJ" ], "self-pacification": [ "NN" ], "ZZZZ": [ "NNP" ], "Delphi": [ "NNP" ], "ale": [ "NN" ], "Frederick": [ "NNP" ], "swerving": [ "VBG" ], "Ayatollah": [ "NNP" ], "systemic": [ "JJ" ], "Messrs": [ "NNPS" ], "deportees": [ "NNS" ], "hmmm": [ "UH" ], "wanton": [ "JJ" ], "kick-offs": [ "NNS" ], "all-natural": [ "JJ" ], "now-historic": [ "JJ" ], "Strut": [ "VB" ], "High-ranking": [ "JJ" ], "commander": [ "NN" ], "Strum": [ "NNP" ], "Strub": [ "NNP" ], "problem-the": [ "JJ" ], "al.": [ "NNS" ], "Beachfront": [ "NNP" ], "Dior": [ "NNP" ], "CHICAGO": [ "NNP" ], "namedropper": [ "NN" ], "sundials": [ "NNS" ], "facetious": [ "JJ" ], "chicly": [ "RB" ], "oxides": [ "NNS" ], "Fowler": [ "NNP" ], "awful": [ "JJ", "RB" ], "quadriceps": [ "NNS" ], "sentimental": [ "JJ" ], "Nursing": [ "NNP", "VBG" ], "proscribed": [ "VBN" ], "Vail": [ "NNP" ], "proscribes": [ "VBZ" ], "walkouts": [ "NNS" ], "Ushuaia": [ "NNP" ], "Wellesley": [ "NNP" ], "underperformers": [ "NNS" ], "immanent": [ "JJ" ], "Durant": [ "NNP" ], "collar-to-collar": [ "JJ" ], "Pharma": [ "NNP" ], "gleened": [ "VBN" ], "monodisperse": [ "JJ" ], "reins": [ "NNS" ], "Ewen": [ "NNP" ], "BDDP": [ "NNP" ], "Interest": [ "NN", "NNP" ], "pound-of-flesh": [ "JJ" ], "Circle": [ "NNP", "NN" ], "Oppen": [ "NNP" ], "Trans-Pecos": [ "NNP" ], "displaying": [ "VBG" ], "crust": [ "NN" ], "Frustrate": [ "VBP" ], "crush": [ "NN", "VB" ], "faltered": [ "VBD", "VBN" ], "Absent-minded": [ "JJ" ], "more-than-terrible": [ "JJ" ], "Iranians": [ "NNPS" ], "Brauchli": [ "NNP" ], "multitude": [ "NN" ], "condensed": [ "JJ", "VBN" ], "tags": [ "NNS", "VBZ" ], "Exaggerated": [ "VBN" ], "unwaveringly": [ "RB" ], "unprofessional": [ "JJ" ], "raked": [ "VBD", "VBN" ], "behaviour": [ "NN" ], "condenser": [ "NN" ], "CoAdvil": [ "NNP" ], "Two-Year": [ "JJ" ], "nerd-and-geek": [ "JJ" ], "under-35": [ "JJ" ], "piquant": [ "JJ" ], "outposts": [ "NNS" ], "gamesmen": [ "NNS" ], "Toy": [ "NNP", "NN" ], "store-sales": [ "NN" ], "Top": [ "JJ", "NNP", "NN" ], "Italian-cut": [ "JJ" ], "bathers": [ "NNS" ], "Tok": [ "NNP" ], "Toi": [ "NNP" ], "Too": [ "RB", "NNP" ], "ocelot": [ "NN" ], "Lahan": [ "NNP" ], "Toa": [ "NNP" ], "senders": [ "NNS" ], "Toe": [ "NNP" ], "obscurely": [ "RB" ], "Lived": [ "VBD" ], "jurors": [ "NNS" ], "Shiftan": [ "NNP" ], "denominated": [ "VBN" ], "Overall": [ "RB", "NNP", "JJ" ], "Lives": [ "NNS", "NNP", "VBZ" ], "toughs": [ "NNS" ], "markets": [ "NNS", "VBZ" ], "minor": [ "JJ", "NN" ], "front-running": [ "JJ" ], "Late-night": [ "JJ" ], "which...": [ ":" ], "spacers": [ "NNS" ], "lopsidedly": [ "RB" ], "pinheaded": [ "JJ" ], "Wyatt": [ "NNP" ], "basically": [ "RB" ], "lapels": [ "NNS" ], "nitpicking": [ "JJ" ], "Silbermann": [ "NNP" ], "chaplain": [ "NN" ], "confessionals": [ "NNS" ], "Holewinski": [ "NNP" ], "stationmaster": [ "NN" ], "Particularly": [ "RB" ], "Figurines": [ "NNS" ], "wizards": [ "NNS" ], "Vasilenko": [ "NNP" ], "Kiran": [ "NNP" ], "unfairness": [ "NN" ], "McNerney": [ "NNP" ], "souped-up": [ "JJ" ], "Phantom": [ "NNP" ], "everyone": [ "NN" ], "spenders": [ "NNS" ], "box-sized": [ "JJ" ], "Grahamstown": [ "NNP" ], "Tie-vole-ee": [ "NN" ], "Nora": [ "NNP" ], "methyl": [ "NN" ], "Savona": [ "NNP" ], "Nord": [ "NNP" ], "Nori": [ "NNP" ], "mother-of-pearl": [ "JJ", "NN" ], "meandered": [ "VBD" ], "influenced": [ "VBN", "VBD" ], "court": [ "NN", "VBP", "VB" ], "goal": [ "NN" ], "half-year": [ "JJ", "NN" ], "Rockhall": [ "NNP" ], "gin-and-tonics": [ "NNS" ], "quadrillionth": [ "NN" ], "Detachment": [ "NNP" ], "Amira": [ "NNP" ], "influences": [ "NNS", "VBZ" ], "non-Korean": [ "JJ" ], "bawdy": [ "JJ" ], "goat": [ "NN" ], "Structural": [ "NNP", "JJ" ], "algebra": [ "NN" ], "Gallium": [ "NN" ], "pricecutting": [ "NN" ], "superpremiums": [ "NNS" ], "unsurprising": [ "VBG", "JJ" ], "softball": [ "NN" ], "mountings": [ "NNS" ], "Debonnie": [ "NNP" ], "profited": [ "VBD", "VBN" ], "rationalize": [ "VB", "VBP" ], "prefers": [ "VBZ" ], "interpolations": [ "NNS" ], "stash": [ "VB", "NN" ], "surfeit": [ "NN", "VBP" ], "Pension-fund": [ "NN" ], "assailant": [ "NN" ], "Nasdaq\\/National": [ "NNP" ], "shade": [ "NN", "VB" ], "coals-to-Newcastle": [ "JJ" ], "Kakadu": [ "NN" ], "turnover": [ "NN" ], "Nikka": [ "NNP" ], "tip-off": [ "NN" ], "outrages": [ "NNS" ], "Vescos": [ "NNPS" ], "essence": [ "NN" ], "pay-TV": [ "NN" ], "then-moribund": [ "JJ" ], "sponging": [ "NN" ], "outraged": [ "VBN", "JJ", "VBD" ], "market-makers": [ "NNS" ], "reconnect": [ "VB" ], "operations...": [ ":" ], "inquiries": [ "NNS" ], "disagreed": [ "VBD", "VBN" ], "style": [ "NN" ], "Hash": [ "NNP", "NN" ], "tax-freedom": [ "NN" ], "yet-another": [ "JJ" ], "pray": [ "VB", "VBP" ], "Stefan": [ "NNP" ], "SAAMI": [ "NNP" ], "Code-Alarm": [ "NNP" ], "disagrees": [ "VBZ" ], "scop": [ "NN" ], "prai": [ "VBP" ], "speaker": [ "NN" ], "Estimate": [ "NNP", "VB" ], "flexural": [ "JJ" ], "pram": [ "NN" ], "dwarfism": [ "NN" ], "W.O.": [ "NNP" ], "thoroughbred": [ "JJ", "NN" ], "mimetic": [ "JJ" ], "sucking": [ "VBG", "NN" ], "Enfield": [ "NNP" ], "Goodwill": [ "NNP", "NN" ], "eulogy": [ "NN" ], "t-tau": [ "NN" ], "Firzite": [ "NN" ], "imitators": [ "NNS" ], "Asean": [ "JJ" ], "but-bulls": [ "IN" ], "frigate": [ "NN" ], "pint-sized": [ "JJ" ], "wafting": [ "VBG" ], "stroked": [ "VBD", "VBN" ], "friendship": [ "NN" ], "sedimentary": [ "JJ" ], "Lambeth": [ "NNP" ], "Mory": [ "NNP" ], "electrogalvanizing": [ "VBG" ], "inflates": [ "VBZ" ], "buffetted": [ "VBN" ], "Untch": [ "NNP" ], "Platform": [ "NN" ], "Mori": [ "NNP" ], "expect": [ "VBP", "VB", "IN" ], "Mischa": [ "NNP" ], "inflated": [ "JJ", "VBD", "VBN" ], "More": [ "RBR", "JJ", "NN", "JJR", "JJS", "RBR|JJR", "NNP" ], "reverent": [ "JJ" ], "gangland": [ "NN" ], "wondered": [ "VBD", "VBN" ], "poachers": [ "NNS" ], "convicting": [ "VBG" ], "clandestine": [ "JJ" ], "impeccably": [ "RB" ], "induces": [ "VBZ" ], "shipment": [ "NN" ], "diaphragms": [ "NNS" ], "induced": [ "VBN", "VBD" ], "remodeling": [ "VBG", "NN" ], "Gurus": [ "NNS" ], "passenger-restraint": [ "NN" ], "Cosmo": [ "NNP" ], "Schraffts": [ "NNP" ], "powwow": [ "NN" ], "warm-up": [ "NN" ], "Kingdom-based": [ "JJ" ], "loused": [ "VBD" ], "bushes": [ "NNS" ], "Olechowski": [ "NNP" ], "e.g": [ "NN", "FW" ], "Igbo": [ "NNP" ], "progressives": [ "NNS" ], "bushel": [ "NN" ], "feed": [ "NN", "VB", "VBD", "VBP" ], "Huge": [ "JJ" ], "hydrides": [ "NNS" ], "feel": [ "VB", "VBP", "NN" ], "Hugo": [ "NNP", "NN" ], "Hugh": [ "NNP" ], "aseptic": [ "JJ" ], "feet": [ "NNS", "NN" ], "sympathy": [ "NN" ], "cardmember": [ "NN" ], "Buzzell": [ "NNP" ], "densitometry": [ "NN" ], "Rat-face": [ "NN" ], "Autobiographies": [ "NNS" ], "soaps": [ "NNS" ], "impeccable": [ "JJ" ], "Eating": [ "NN", "NNP", "VBG" ], "majority-owned": [ "JJ" ], "Models": [ "NNS" ], "grime": [ "NN" ], "astuteness": [ "NN" ], "brisker": [ "JJR" ], "hangs": [ "VBZ" ], "Cytel": [ "NNP" ], "Iard": [ "NNP" ], "grimy": [ "JJ", "NN" ], "Gulch": [ "NNP" ], "kilobytes": [ "NNS" ], "recovered": [ "VBD", "VBN" ], "oversupply": [ "NN" ], "pipelines": [ "NNS" ], "Vineland": [ "NNP" ], "hotel": [ "NN" ], "property\\": [ "JJ" ], "Volokh": [ "NNP" ], "Mail-order": [ "NN" ], "optical": [ "JJ" ], "Suisse-First": [ "NNP" ], "megalomania": [ "NN" ], "Nevsky": [ "NNP" ], "second-biggest": [ "JJ" ], "KOREAN": [ "JJ" ], "lavishing": [ "VBG" ], "rate-sensitive": [ "JJ" ], "Korff": [ "NNP" ], "aims": [ "VBZ", "NNS" ], "ATMs": [ "NNS" ], "outrageous": [ "JJ" ], "Kromy": [ "NNP" ], "chousin": [ "VBG" ], "journalistic": [ "JJ" ], "risks": [ "NNS", "VBZ" ], "insulted": [ "VBN", "VBD" ], "inventiveness": [ "NN" ], "midmorning": [ "NN" ], "risky": [ "JJ" ], "Gilded": [ "NNP" ], "dropoffs": [ "NNS" ], "suspicious": [ "JJ" ], "hour-long": [ "JJ" ], "Jane": [ "NNP", "NN" ], "cognizant": [ "JJ" ], "Gilder": [ "NNP" ], "Becton": [ "NNP" ], "rife": [ "JJ" ], "down-and-outers": [ "NNS" ], "nights": [ "NNS" ], "Bellarosa": [ "NNP" ], "imitations": [ "NNS" ], "DRUG": [ "NN", "NNP" ], "Chimerine": [ "NNP" ], "still-new": [ "JJ" ], "riff": [ "NN" ], "UCC": [ "NNP" ], "Seeks": [ "VBZ" ], "Chodorow": [ "NNP" ], "semi-abstractions": [ "NNS" ], "contractual": [ "JJ" ], "free-wheeling": [ "JJ" ], "Perimeter": [ "NNP" ], "coterie": [ "NN" ], "intervened": [ "VBD", "VBN" ], "Miami-Madrid": [ "NNP" ], "Orbis": [ "NNP" ], "seances": [ "NNS" ], "eruption": [ "NN" ], "Waldorf": [ "NNP" ], "cigarette": [ "NN" ], "steady-state": [ "JJ" ], "choral": [ "JJ" ], "thermostat": [ "NN" ], "boycotting": [ "VBG" ], "prestige": [ "NN", "JJ" ], "transcending": [ "VBG" ], "Finds": [ "VBZ" ], "intervenes": [ "VBZ" ], "Mehl": [ "NNP" ], "Augustine": [ "NNP" ], "Yaobang": [ "NNP" ], "reinvigoration": [ "NN" ], "Yoshihisa": [ "NNP" ], "Houston-Dallas": [ "JJ" ], "Boga": [ "NNP" ], "Quebequois": [ "NNP" ], "Kimmell": [ "NNP" ], "left-of-center": [ "JJ" ], "notch": [ "NN", "VB" ], "Euripides": [ "NNP" ], "journeys": [ "NNS" ], "Cerebral": [ "NNP" ], "wildcatter": [ "NN" ], "Rothko": [ "NNP" ], "share-holders": [ "NNS" ], "Oil-field": [ "NN" ], "capital-coverage": [ "NN" ], "Skinny": [ "NNP" ], "Entrekin": [ "NNP" ], "relive": [ "VBP", "VB" ], "stubble": [ "JJ", "NN" ], "Amateur": [ "NNP", "JJ", "NN" ], "unrealistic": [ "JJ" ], "discord": [ "NN" ], "grotesque": [ "JJ" ], "GENERAL": [ "NNP" ], "rubles": [ "NNS" ], "Wilfred": [ "NNP", "VBD" ], "unsuited": [ "VBN" ], "QFC": [ "NNP" ], "Pyne": [ "NNP" ], "Liberia": [ "NNPS", "NNP" ], "land-rich": [ "JJ" ], "publicity": [ "NN" ], "spurious": [ "JJ" ], "TIP": [ "NN", "NNP" ], "Funded": [ "VBN" ], "fastest": [ "JJS", "RBS" ], "steam-baths": [ "NNS" ], "non-voting": [ "JJ", "NN" ], "Aldus": [ "NNP" ], "compiles": [ "VBZ" ], "compiler": [ "NN" ], "Protests": [ "NNS", "VBZ" ], "continuum": [ "NN" ], "fruit-juice": [ "NN" ], "Sleight": [ "NNP" ], "timeless": [ "JJ" ], "Restudy": [ "VB" ], "all-federal": [ "JJ" ], "submariners": [ "NNS" ], "wheeling": [ "NN", "VBG" ], "retaliated": [ "VBD" ], "repulsed": [ "VBN" ], "oxcart": [ "NN" ], "Machiguengas": [ "NNS", "NNPS" ], "Sorge": [ "NNP" ], "declines": [ "NNS", "VBZ" ], "Summaryof": [ "NNP" ], "Nomi": [ "NNP" ], "Nomo": [ "NNP" ], "spill-cleanup": [ "NN" ], "kylix": [ "NN" ], "Eisenstat": [ "NNP" ], "declined": [ "VBD", "VBN" ], "annihilation": [ "NN" ], "parchment": [ "NN" ], "Pamplin": [ "NNP" ], "Jurgen": [ "NNP" ], "COASTAL": [ "NNP" ], "FundTrust": [ "NNP" ], "numerous": [ "JJ" ], "hairs": [ "NNS" ], "ethanol-based": [ "JJ" ], "Cavarretta": [ "NNP" ], "leavings": [ "NNS" ], "desegregated": [ "VBN" ], "B-52H": [ "NN" ], "prolusion": [ "NN" ], "Dabbling": [ "VBG" ], "outfit": [ "NN", "VB", "VBP" ], "counter-productive": [ "JJ" ], "small-denomination": [ "NN", "JJ" ], "Highfield": [ "NNP" ], "radiopharmaceutical": [ "JJ" ], "prelude": [ "NN" ], "Touchstone": [ "NNP" ], "Kazuhiko": [ "NNP" ], "Werter": [ "NNP" ], "prescription": [ "NN" ], "hesitant": [ "JJ" ], "hermetic": [ "JJ" ], "Amando": [ "NNP" ], "Collectively": [ "RB" ], "Sununu": [ "NNP" ], "re-investment": [ "NN" ], "Farmboy": [ "NNP" ], "muskadell": [ "NN" ], "Cannavino": [ "NNP" ], "cynic": [ "NN", "JJ" ], "Moloch": [ "NNP" ], "gussied": [ "VBN" ], "knee-deep": [ "JJ" ], "S-Cargo": [ "NNP" ], "Conservancy": [ "NNP" ], "marveling": [ "VBG" ], "Vietnam-veteran": [ "JJ" ], "crispy": [ "JJ" ], "hour-and-a-half": [ "NN" ], "java": [ "NN" ], "panky": [ "NN" ], "scented": [ "JJ", "VBN" ], "Hebraic": [ "JJ" ], "re-explore": [ "VB" ], "fifteen-minute": [ "JJ" ], "heterogamous": [ "JJ" ], "HOTELS": [ "NNPS" ], "Takeover": [ "NN", "NNP" ], "refrigeration": [ "NN" ], "ocean": [ "NN" ], "Travancore": [ "NNP" ], "skyward": [ "RB" ], "horticultural-products": [ "NNS" ], "Paul-Minneapolis": [ "NNP" ], "tangents": [ "NNS" ], "referee": [ "NN" ], "Ratajczak": [ "NNP" ], "kilograms": [ "NNS" ], "firefighters": [ "NNS" ], "transferring": [ "VBG" ], "R.I.-based": [ "JJ" ], "Academic": [ "NNP" ], "Tactical": [ "NNP" ], "well-mannered": [ "JJ" ], "budget-making": [ "JJ" ], "plants": [ "NNS", "VBZ" ], "feather-like": [ "JJ" ], "conception": [ "NN" ], "Estonian-language": [ "JJ" ], "stagewhispers": [ "VBZ" ], "Ganado": [ "NNP" ], "Winston": [ "NNP" ], "Sales": [ "NNS", "NNP", "NNPS" ], "Rudner": [ "NNP" ], "mythologies": [ "NNS" ], "Salem": [ "NNP" ], "barricade": [ "NN", "VB" ], "Saleh": [ "NNP" ], "evaluates": [ "VBZ" ], "Hokkaido": [ "NNP" ], "non-forthcoming": [ "JJ" ], "Italy": [ "NNP" ], "canvassed": [ "VBN" ], "Madaripur": [ "NNP" ], "gel": [ "NN" ], "Equity": [ "NNP", "NN" ], "weirs": [ "NNS" ], "Italo": [ "NNP" ], "pavilions": [ "NNS" ], "distrusts": [ "VBZ" ], "Ruggiero": [ "NNP" ], "electriques": [ "FW" ], "examiners": [ "NNS" ], "Thrombinar": [ "NNP" ], "Dederick": [ "NNP" ], "us...": [ ":" ], "more-level": [ "JJ" ], "stimulates": [ "VBZ" ], "Hemel": [ "NNP" ], "Penney": [ "NNP", "NN" ], "assuaged": [ "VBN" ], "CURBING": [ "VBG" ], "stimulated": [ "VBN", "VBD" ], "Rahman": [ "NNP" ], "tellers": [ "NNS" ], "drought-seared": [ "JJ" ], "Vermont": [ "NNP" ], "mid-century": [ "JJ" ], "bureau-sponsored": [ "JJ" ], "aflatoxin-free": [ "JJ" ], "fitness-promoting": [ "JJ" ], "holidays": [ "NNS", "VBZ" ], "doers": [ "NNS" ], "anhydrous": [ "JJ" ], "Ferranti-led": [ "JJ" ], "resuscitated": [ "VBN" ], "abnormality": [ "NN" ], "cheek": [ "NN" ], "cheer": [ "NN", "VB", "VBP" ], "vulnerabilities": [ "NNS" ], "stating": [ "VBG" ], "throwaway": [ "JJ" ], "lowers": [ "VBZ", "NNS" ], "carport": [ "NN" ], "Anzilotti": [ "NNP" ], "scrupulous": [ "JJ" ], "canted": [ "JJ" ], "Long-haul": [ "JJ" ], "all-star": [ "JJ" ], "Ai-": [ "NNP" ], "exonerating": [ "VBG" ], "Orioles": [ "NNP", "NNPS" ], "Territory": [ "NNP" ], "great-quality": [ "NN" ], "profitable": [ "JJ" ], "Overture": [ "NNP" ], "Knapek": [ "NNP" ], "observant": [ "JJ" ], "development...": [ ":" ], "topsy-turvy": [ "JJ", "RB" ], "contractor": [ "NN" ], "governmental": [ "JJ" ], "Acadia": [ "NNP" ], "price\\/earnings": [ "NNS" ], "Palfrey": [ "NNP" ], "reinstate": [ "VB" ], "barbarisms": [ "NNS" ], "freefall": [ "NN" ], "complaint": [ "NN" ], "complains": [ "VBZ" ], "stews": [ "NNS" ], "Youths": [ "NNP" ], "deflators": [ "NNS" ], "teahouse": [ "NN" ], "recantation": [ "NN" ], "Anxious": [ "JJ" ], "Clemensen": [ "NNP" ], "Mityukh": [ "NNP" ], "entangled": [ "JJ", "VBD", "VBN" ], "Aid": [ "NNP", "NN", "VB" ], "morale": [ "NN" ], "rotate": [ "VB" ], "Life-preservers": [ "NNS" ], "polymers": [ "NNS" ], "sexton": [ "NN" ], "mini-vans": [ "NNS" ], "Upgrades": [ "NNS" ], "READY": [ "NNP", "JJ" ], "Centralizing": [ "VBG" ], "sprinklers": [ "NNS" ], "Gentile-Jewish": [ "NNP" ], "many-sided": [ "JJ" ], "stagnating": [ "VBG" ], "Northview": [ "NNP" ], "Cambodians": [ "NNPS" ], "soybean-meal": [ "NN" ], "Jannequin": [ "NNP" ], "wonderland": [ "NN" ], "Assonance": [ "NN" ], "HAPPY": [ "JJ" ], "Ainsley": [ "NNP" ], "braweling": [ "VBG" ], "eqns.": [ "NN" ], "double-wall": [ "JJ" ], "ill-mannered": [ "JJ" ], "seller": [ "NN" ], "adoptive": [ "JJ" ], "innovation": [ "NN" ], "Coopersmith": [ "NNP" ], "Fooled": [ "VBN" ], "Bahcall": [ "NNP" ], "Frenchman": [ "NNP", "NN" ], "porridge": [ "NN" ], "under-reported": [ "JJ" ], "Victim": [ "NN" ], "telegrapher": [ "NN" ], "baited": [ "VBN" ], "Command": [ "NNP", "NN" ], "upraised": [ "VBN" ], "Tridex": [ "NNP" ], "telegraphed": [ "VBD" ], "Russia": [ "NNP", "NN" ], "Antori": [ "NNP" ], "ICAO": [ "NNP" ], "substances": [ "NNS" ], "undertow": [ "NN" ], "housekeeping": [ "NN" ], "wherefores": [ "NNS" ], "forbears": [ "NNS" ], "surfers": [ "NNS" ], "Motive": [ "NN" ], "Barbakow": [ "NNP" ], "Fishkill": [ "NNP" ], "zorrillas": [ "NNS" ], "asset-based": [ "JJ" ], "fantasia": [ "NN" ], "wanna": [ "VB", "VBP" ], "gamma": [ "NN", "JJ" ], "conserving": [ "VBG" ], "blouses": [ "NNS" ], "eight-year-old": [ "JJ", "NN" ], "Elmer": [ "NNP" ], "Ponce": [ "NNP" ], "drifter": [ "NN" ], "Stranahan": [ "NNP" ], "mergers-advisory": [ "JJ" ], "figs.": [ "NNS", "NN" ], "drifted": [ "VBD", "VBN" ], "Scotch-and-soda": [ "NN" ], "gouge": [ "VB", "VBP" ], "Zubkovskaya": [ "NNP" ], "featureless": [ "JJ" ], "SPENDING": [ "NN" ], "slimmer-than-expected": [ "JJ" ], "ache": [ "NN", "VB", "VBP" ], "B-2s": [ "NNPS", "NNS" ], "Anthony": [ "NNP", "NNPS" ], "back-pay": [ "NN" ], "wormwood": [ "NN" ], "analyze": [ "VB", "VBP" ], "idol-worship": [ "NN" ], "contrite": [ "JJ" ], "tutored": [ "VBN" ], "clots": [ "NNS" ], "glamour": [ "NN" ], "cloth": [ "NN" ], "LoSpam": [ "NNP" ], "enhancing": [ "VBG" ], "near-panic": [ "JJ", "NN" ], "smaller-than-average": [ "JJ" ], "electric-transport": [ "NN" ], "outpost": [ "NN" ], "professorship": [ "NN" ], "Belk": [ "NNP" ], "patriot": [ "NN" ], "Belo": [ "NNP" ], "Aparicio": [ "NNP" ], "consist": [ "VB", "VBP" ], "Bell": [ "NNP" ], "characteristic": [ "JJ", "NN" ], "Bela": [ "NNP" ], "barring": [ "VBG" ], "full-blown": [ "JJ", "NN" ], "Belz": [ "NNP" ], "shooed": [ "VBN" ], "highlight": [ "VB", "VBP", "NN" ], "Aggressive": [ "NNP" ], "chapels": [ "NNS" ], "x-ray": [ "NN" ], "Belt": [ "NNP", "NN" ], "editorially": [ "RB" ], "airdrops": [ "NNS" ], "sublet": [ "VB", "VBN" ], "Luisa": [ "NNP" ], "Luise": [ "NNP" ], "graham": [ "NN" ], "thin-walled": [ "JJ" ], "Coolers": [ "NNS" ], "Commander-in-Chief": [ "NNP" ], "immunologist": [ "NN" ], "unjustifiably": [ "RB" ], "evils": [ "NNS" ], "Babcock": [ "NNP" ], "parlor": [ "NN" ], "Hangman": [ "NNP" ], "defrauding": [ "VBG" ], "shallower": [ "JJR" ], "unjustifiable": [ "JJ" ], "artistic": [ "JJ" ], "mustard": [ "NN", "JJ", "VB" ], "Metro": [ "NNP", "NN" ], "proration": [ "NN", "JJ" ], "backbone": [ "NN" ], "problems": [ "NNS" ], "latecomer": [ "NN" ], "three-dice": [ "JJ" ], "helping": [ "VBG", "NN" ], "insect": [ "NN", "JJ" ], "telexes": [ "NNS" ], "garbed": [ "VBN" ], "tear-jerking": [ "JJ" ], "rightful": [ "JJ" ], "Bankhead": [ "NNP" ], "Delius": [ "NNP" ], "sapping": [ "VBG" ], "forming": [ "VBG", "NN" ], "Hiroshi": [ "NNP" ], "near-record": [ "JJ", "NN" ], "Furze": [ "NNP" ], "Migrant": [ "NNP" ], "non-hydrogen-bonded": [ "JJ" ], "attaining": [ "VBG", "NN" ], "narrative": [ "NN", "JJ" ], "six-point": [ "JJ" ], "intentional": [ "JJ" ], "Scowcroft": [ "NNP" ], "gabardine": [ "NN" ], "McAlester": [ "NNP" ], "wrestle": [ "VB" ], "uninspected": [ "JJ" ], "hooks": [ "NNS", "VBZ" ], "anti-Castro": [ "JJ" ], "Veterinary": [ "NNP", "JJ" ], "U.B.U.": [ "NNP" ], "grinding": [ "VBG", "NN" ], "Symington": [ "NNP" ], "seaquake": [ "NN" ], "fancifully": [ "RB" ], "monomer": [ "NN" ], "unstapled": [ "JJ" ], "Rohrer": [ "NNP" ], "Geneticist": [ "NNP" ], "Agree": [ "VBP" ], "Norio": [ "NNP" ], "Belvedere": [ "NNP" ], "interpenetrates": [ "VBZ" ], "dramatically": [ "RB" ], "polyethers": [ "NNS" ], "midocean": [ "JJ" ], "surfactant": [ "NN" ], "Esber": [ "NNP" ], "bibles": [ "NNS" ], "ed.": [ "NN" ], "Calvin": [ "NNP" ], "Soviet-German": [ "NNP" ], "passenger-mile": [ "NN" ], "cover-up": [ "NN" ], "posture": [ "NN", "VBP" ], "bistros": [ "NNS" ], "still-secret": [ "JJ" ], "super-imposed": [ "VBN" ], "Halas": [ "NNP" ], "Baltensweiler": [ "NNP" ], "winter": [ "NN" ], "tenderness": [ "NN" ], "black-and-orange": [ "JJ" ], "Strand": [ "NNP" ], "nine-day": [ "JJ" ], "half-industrial": [ "JJ" ], "stratify": [ "VB" ], "Subcontractors": [ "NNS" ], "DTH": [ "NNP" ], "Brien": [ "NNP" ], "flashlights": [ "NNS" ], "Maggart": [ "NNP" ], "datelined": [ "VBN", "VBD" ], "Brief": [ "NNP", "JJ", "NN" ], "Ellmann": [ "NNP" ], "power-train": [ "NN" ], "abominable": [ "JJ" ], "Panic": [ "NN", "NNP" ], "superceded": [ "VBD", "VBN" ], "ex-bandits": [ "NNS" ], "reaching": [ "VBG", "NN" ], "somatostatin": [ "NN" ], "Cujo": [ "NNP" ], "concisely": [ "RB" ], "gubernatorial": [ "JJ" ], "Maryanne": [ "NNP" ], "toenails": [ "NNS" ], "Koreans": [ "NNPS", "NNP", "NNS" ], "Highlands": [ "NNP", "NNPS", "NNS" ], "categorically": [ "RB" ], "New-York": [ "NNP" ], "Obviously": [ "RB" ], "Mussolini-like": [ "JJ" ], "less-than-half-time": [ "JJ" ], "manufacturing-automation": [ "NN" ], "stair-well": [ "NN" ], "controversy-prone": [ "JJ" ], "post-graduate": [ "JJ", "NN" ], "one-issue": [ "JJ" ], "Piloting": [ "VBG" ], "Cuddleback": [ "NNP" ], "Immoderate": [ "NNP" ], "communicational": [ "JJ" ], "unenviable": [ "JJ" ], "transfer-tax": [ "NN" ], "January-to-August": [ "NNP" ], "brachii": [ "NNS" ], "Danchin": [ "NNP" ], "Tanny": [ "NNP" ], "unconditional": [ "JJ" ], "definitively": [ "RB" ], "armpit": [ "NN" ], "disowned": [ "VBD", "VBN" ], "once-bustling": [ "JJ" ], "Binary": [ "JJ" ], "Tithing": [ "NN" ], "strategic-weapons": [ "JJ" ], "Operational": [ "JJ" ], "chartist": [ "NN" ], "dark-blue": [ "JJ" ], "columnists": [ "NNS" ], "Input": [ "NN", "NNP" ], "Lebanese-controlled": [ "JJ" ], "galloped": [ "VBN" ], "lamming": [ "VBG" ], "long-delayed": [ "JJ" ], "devotional": [ "JJ" ], "garbled": [ "VBN" ], "uniramous": [ "JJ" ], "Oyajima": [ "NNP" ], "Career": [ "NNP", "NN" ], "rarest": [ "JJS" ], "Chinese-British": [ "JJ" ], "steadfastly": [ "RB" ], "virulence": [ "NN" ], "recount": [ "VB", "NN" ], "detects": [ "VBZ" ], "F.S.C.": [ "NNP" ], "ALL": [ "PDT", "NNP" ], "Igaras": [ "NNP" ], "strategically": [ "RB" ], "dusted": [ "VBN", "VBD" ], "napkins": [ "NNS" ], "Onondaga": [ "NNP" ], "Rhone-Poulenc": [ "NNP" ], "Amboy": [ "NNP" ], "ALT": [ "NNP" ], "ALU": [ "NNP" ], "picture-images": [ "NNS" ], "bittersweet": [ "JJ" ], "STAGED": [ "VBD" ], "Parts": [ "NNS", "NNP", "NNPS" ], "Suspension": [ "NNP" ], "soil-nutrients": [ "NNS" ], "Party": [ "NNP", "NN" ], "nightclub": [ "NN" ], "Shipments": [ "NNS" ], "sir": [ "NN", "UH" ], "sip": [ "NN" ], "Flames": [ "NNPS" ], "sit": [ "VB", "FW", "VBP" ], "Ruxpin": [ "NNP" ], "invulnerability": [ "NN" ], "embarrassingly": [ "RB" ], "outclass": [ "VBP", "VB" ], "Baby-dear": [ "NNP" ], "Edgerton": [ "NNP" ], "privatize": [ "VB" ], "ruffians": [ "NNS" ], "memoir": [ "NN" ], "Engraving": [ "NNP" ], "maternal": [ "JJ" ], "maladjustment": [ "NN" ], "immersed": [ "VBN", "VBD" ], "beer-tax": [ "JJ" ], "impulsive": [ "JJ" ], "Ghose": [ "NNP" ], "pseudo-scientific": [ "JJ" ], "herd-owner": [ "NN" ], "polarities": [ "NNS" ], "reassurances": [ "NNS" ], "trippin": [ "NN" ], "archtype": [ "NN" ], "Nashua": [ "NNP" ], "Rifkinesque": [ "JJ" ], "sanest": [ "JJS" ], "tactic": [ "NN" ], "CreditWatch": [ "NNP" ], "reauthorized": [ "VBN" ], "Wockenfuss": [ "NNP" ], "pulsed": [ "VBN" ], "demobilized": [ "VBN" ], "waif": [ "NN" ], "statutory": [ "JJ" ], "beguile": [ "VBP" ], "pistols": [ "NNS" ], "pulses": [ "NNS" ], "cross-market": [ "JJ" ], "hankered": [ "VBN" ], "lifeblood": [ "NN" ], "Boucherie": [ "NNP" ], "Vermeersch": [ "NNP" ], "frightening": [ "JJ", "VBG" ], "McInnes": [ "NNP" ], "Liberian": [ "JJ" ], "clusters": [ "NNS", "VBZ" ], "edging": [ "VBG", "NN" ], "fewer-than-expected": [ "JJ" ], "freeman": [ "NN" ], "Cay": [ "NNP" ], "pecans": [ "NNS" ], "gasses": [ "NNS" ], "gasser": [ "NN" ], "Cap": [ "NNP", "VB" ], "Cav": [ "NNP" ], "invitations": [ "NNS" ], "Can": [ "MD", "NNP" ], "Cam": [ "NNP" ], "Cal": [ "NNP" ], "Cab": [ "NNP" ], "Caa": [ "NNP", "JJ" ], "Murders": [ "NNS" ], "PRINCE": [ "NNP" ], "gassed": [ "VBN" ], "Devonshire": [ "NNP" ], "Puget": [ "NNP" ], "railbikes": [ "NNS" ], "Autry": [ "NNP" ], "marketization": [ "NN" ], "Restrict": [ "VB" ], "fuzz": [ "NN" ], "hook-up": [ "NN" ], "BankWatch": [ "NNP" ], "beveled": [ "VBN" ], "E.": [ "NNP" ], "thumb-sucking": [ "NN" ], "disregarding": [ "VBG" ], "beavered": [ "VBD" ], "McClintick": [ "NNP" ], "lilac": [ "JJ" ], "tepid": [ "JJ" ], "indulges": [ "VBZ" ], "unbelievable": [ "JJ" ], "misperceptions": [ "NNS" ], "lesser-known": [ "JJ" ], "Wendy": [ "NNP", "NN" ], "stewardesses": [ "NNS" ], "preying": [ "VBG" ], "indulged": [ "VBD" ], "Pressburger": [ "NNP" ], "tabulate": [ "VB" ], "frontier": [ "NN" ], "Claremont": [ "NNP" ], "unencumbered": [ "JJ" ], "dock-siders": [ "NNS" ], "party-line": [ "JJ", "NN" ], "exporting": [ "VBG" ], "Brewery": [ "NNP", "NN" ], "preprivatization": [ "NN" ], "supports": [ "VBZ", "NNS" ], "Sacrifices": [ "NNS" ], "Alva": [ "NNP" ], "pendant": [ "NN" ], "LaGrange": [ "NNP" ], "molecularly": [ "RB" ], "bondmarket": [ "NN" ], "MacAndrews": [ "NNP" ], "weaves": [ "NNS", "VBZ" ], "computer-system-design": [ "JJ" ], "cranberry-and-gray": [ "JJ" ], "latitudes": [ "NNS" ], "Charlton": [ "NNP" ], "Landscape": [ "NNP" ], "plainly": [ "RB" ], "anti-seizure": [ "JJ" ], "Phenothiazine": [ "NN" ], "flocked": [ "VBD", "VBN" ], "echo": [ "NN", "VBP", "VB" ], "engenders": [ "VBZ" ], "Accordingly": [ "RB" ], "lovering": [ "VBG" ], "Heyford": [ "NNP" ], "Saab": [ "NNP" ], "laughingly": [ "RB" ], "North": [ "NNP", "NNPS", "JJ", "NN", "RB" ], "publication": [ "NN" ], "Norte": [ "NNP" ], "Rent-A-Lease": [ "NNP" ], "Bonaventure": [ "NNP" ], "Miriam": [ "NNP" ], "wood-paneled": [ "JJ" ], "Segur": [ "NNP" ], "fermions": [ "NNS" ], "canvassers": [ "NNS" ], "badness": [ "NN" ], "misinformed": [ "VBN" ], "Leumi": [ "NNP" ], "high-sudsing": [ "JJ" ], "Success": [ "NN", "NNP" ], "Meredith": [ "NNP", "NN" ], "Alderson": [ "NNP" ], "musings": [ "NNS" ], "docketed": [ "VBN" ], "Directions": [ "NNP", "NNS", "NNPS" ], "reflecting": [ "VBG", "JJ" ], "overreaches": [ "VBZ" ], "BLUE": [ "JJ" ], "Sniffle": [ "NNP" ], "SELLING": [ "NNP", "VBG" ], "Deutsch": [ "NNP" ], "isolation": [ "NN" ], "proneness": [ "NN" ], "rarity": [ "NN" ], "Galan": [ "NNP" ], "Leery": [ "JJ" ], "NETWORK": [ "NN" ], "nonsurgical": [ "JJ" ], "blip": [ "NN", "VBP", "VB" ], "faux": [ "FW", "JJ" ], "Basho": [ "NNP" ], "academically": [ "RB" ], "cathouse": [ "NN" ], "Michelangelo": [ "NNP" ], "angle": [ "NN", "VB" ], "rearranged": [ "VBD" ], "Winnebago": [ "NNP" ], "rearranges": [ "VBZ" ], "madstones": [ "NNS" ], "woven-root": [ "JJ" ], "HEALTH": [ "NN", "NNP" ], "Severna": [ "NNP" ], "pharmacist": [ "NN" ], "re-opening": [ "VBG" ], "Barrette": [ "JJ" ], "annnouncement": [ "NN" ], "emancipation": [ "NN" ], "tough-minded": [ "JJ" ], "alarmed": [ "VBN", "JJ" ], "nonprescription": [ "NN" ], "insidiously": [ "RB" ], "neighboring": [ "VBG", "JJ" ], "Song": [ "NNP", "NN" ], "exhorting": [ "VBG" ], "IMEDE": [ "NNP" ], "Chabrol": [ "NNP" ], "two-line": [ "JJ" ], "flux": [ "NN" ], "Millers": [ "NNPS", "NNP" ], "Pryce": [ "NNP" ], "hypervelocity": [ "NN" ], "Venti": [ "NNP" ], "Vento": [ "NNP" ], "bulging": [ "VBG", "JJ" ], "ANNUITY": [ "NNP" ], "stove": [ "NN" ], "wide-sweeping": [ "JJ" ], "Jyoti": [ "NNP" ], "Genevieve": [ "NNP" ], "TOPAZ": [ "NNP" ], "Lassila": [ "NNP" ], "Riiiing": [ "UH" ], "Blueger": [ "NNP" ], "neurotoxic": [ "JJ" ], "darkest": [ "JJS" ], "U.S.S.R": [ "NNP", "SYM" ], "subtracting": [ "VBG" ], "bottling": [ "NN", "VBG" ], "squirms": [ "VBZ" ], "boucle": [ "NN" ], "Promptly": [ "RB" ], "verbs": [ "NNS" ], "bogged": [ "VBD", "VBN" ], "combo": [ "NN" ], "chemical-weapon": [ "NN" ], "Strongin": [ "NNP" ], "warm-ups": [ "NNS" ], "stock-holding": [ "JJ" ], "Transco": [ "NNP" ], "broncs": [ "NNS" ], "Octobers": [ "NNPS" ], "urethanes": [ "NNS" ], "Tarrant": [ "NNP" ], "embezzlement": [ "NN" ], "stitching": [ "NN" ], "deceives": [ "VBZ" ], "spokewoman": [ "NN" ], "Know-nothings": [ "NNS" ], "allocate": [ "VB", "VBP" ], "vacuolization": [ "NN" ], "clubbers": [ "NNS" ], "competitive-analysis": [ "JJ" ], "liquidators": [ "NNS" ], "deceived": [ "VBN", "VBD" ], "Burnham": [ "NNP" ], "FDC": [ "NNP" ], "horticulturally": [ "RB" ], "module": [ "NN" ], "oligarchs": [ "NNS" ], "FDR": [ "NNP" ], "geometrically": [ "RB" ], "FRANKENBERRY": [ "NNP" ], "Ballad": [ "NNP" ], "televised": [ "VBN", "JJ" ], "Intrapreneurship": [ "NN" ], "coveting": [ "VBG" ], "Rittlemann": [ "NNP" ], "frustrates": [ "VBZ" ], "Lawless": [ "NNP" ], "Newells": [ "NNPS" ], "rendition": [ "NN" ], "Rudoff": [ "NNP" ], "frustrated": [ "VBN", "JJ", "VBD" ], "data-service": [ "JJ" ], "publishers": [ "NNS" ], "Aviion": [ "NNP" ], "Gazettes": [ "NNP" ], "Dallas-headquartered": [ "JJ" ], "rescuers": [ "NNS" ], "Chlortetracycline": [ "NN" ], "Doxiadis": [ "NNP" ], "succesful": [ "JJ" ], "Maggie": [ "NNP" ], "dramatization": [ "NN" ], "anti-generic": [ "JJ" ], "sewerage": [ "NN" ], "solar-radiation": [ "NN" ], "non-junk": [ "JJ" ], "news-weekly": [ "NN" ], "Indies": [ "NNPS", "NNP" ], "underscores": [ "VBZ" ], "auctions": [ "NNS", "VBZ" ], "Rolls": [ "NNP", "NN" ], "up...": [ ":" ], "Axis": [ "NNP" ], "sequenced": [ "VBN" ], "self-completion": [ "NN" ], "carbonates": [ "NNS" ], "Ellerman": [ "NNP" ], "R.E.": [ "NNP" ], "walk": [ "VB", "VBP", "NN" ], "Gamper": [ "NNP" ], "interface": [ "NN", "VB" ], "phonologic": [ "JJ" ], "fledging": [ "VBG" ], "coordinates": [ "NNS", "VBZ" ], "sequences": [ "NNS" ], "overpayment": [ "NN" ], "desk-top": [ "JJ" ], "trays": [ "NNS" ], "i.e.": [ "FW", "NN", "RP" ], "subsurface": [ "JJ" ], "Grzesiak": [ "NNP" ], "Brahmaputra": [ "NNP" ], "intendant": [ "NN" ], "Discount": [ "NNP", "JJ" ], "pullet-roofed": [ "JJ" ], "Sandra": [ "NNP" ], "Sandro": [ "NNP" ], "counterculture": [ "JJ" ], "nickel": [ "NN", "JJ" ], "inbound": [ "JJ" ], "interrupts": [ "VBZ" ], "nicked": [ "VBN" ], "injustices": [ "NNS" ], "walloping": [ "JJ", "NN" ], "overture": [ "NN" ], "help-me-make-it-through-the-fiscal-nigh": [ "JJ" ], "CDs": [ "NNS", "NNPS", "NNP" ], "cavorting": [ "VBG", "NN" ], "Joplin": [ "NN" ], "overturn": [ "VB" ], "Innopac": [ "NNP" ], "CDA": [ "NNP" ], "CDC": [ "NNP" ], "overuse": [ "NN" ], "CDK": [ "NNP" ], "CDT": [ "NNP" ], "CDU": [ "NNP" ], "Fatalities": [ "NNS" ], "Fitch": [ "NNP" ], "loosest": [ "JJS" ], "mutant": [ "JJ" ], "ten-month": [ "JJ" ], "mid-afternoon": [ "JJ", "NN", "RB" ], "ajury": [ "NN" ], "eight-hour": [ "JJ" ], "outspend": [ "VBP" ], "water-reactor": [ "JJ" ], "Loving": [ "NNP" ], "oiticica": [ "NN" ], "kissed": [ "VBD", "VBN" ], "unveiling": [ "VBG", "NN" ], "market-moving": [ "JJ" ], "clear-headed": [ "JJ" ], "H.N.": [ "NNP" ], "improves": [ "VBZ" ], "refinancings": [ "NNS" ], "conversations": [ "NNS" ], "Waveland": [ "NNP" ], "fantasized": [ "VBN" ], "gets": [ "VBZ" ], "UST": [ "NNP" ], "tomatoes": [ "NNS" ], "sops": [ "NNS", "VBZ" ], "raisers": [ "NNS" ], "windstorm": [ "NN" ], "Alma": [ "NNP" ], "Hanover-Bertie": [ "NNP" ], "Manuel": [ "NNP" ], "D.L.": [ "NNP" ], "downpayment": [ "NN" ], "gutter": [ "NN" ], "semi-finalists": [ "NNS" ], "extramural": [ "JJ" ], "railbiking": [ "NN" ], "slaughterhouse": [ "NN" ], "re-paid": [ "VBD" ], "gutted": [ "VBN", "VBD" ], "spectator": [ "NN" ], "abrasion-resistant": [ "NN" ], "REPAIR": [ "NN" ], "dismounts": [ "VBZ" ], "riveted": [ "VBN", "VBD" ], "Faithful": [ "NN" ], "Fawell": [ "NNP" ], "obtain": [ "VB", "VBP" ], "Hasidic": [ "JJ" ], "interim-dividend": [ "NN" ], "batteries": [ "NNS" ], "recollection": [ "NN" ], "propositioned": [ "VBD" ], "Crews": [ "NNP" ], "neurasthenic": [ "NN" ], "lettuce": [ "NN" ], "Taikisha": [ "NNP" ], "toilets": [ "NNS" ], "majesty": [ "NN" ], "Neveh": [ "NNP" ], "Teddy": [ "NNP" ], "Publication": [ "NN", "NNP" ], "Diagnostic": [ "NNP" ], "Downing": [ "NNP" ], "attractive": [ "JJ" ], "c-Yields": [ "NNS", "LS|NNS" ], "stowed": [ "VBN", "VBD" ], "rescind": [ "VB" ], "Institution": [ "NNP" ], "Bloopers": [ "NNS" ], "frieze": [ "NN" ], "Jaffe": [ "NNP" ], "masquerade": [ "NN", "VBP" ], "Lazar": [ "NNP" ], "Camels": [ "NNS" ], "Saledo": [ "NNP" ], "doughnut": [ "NN" ], "Felsenthal": [ "NNP" ], "governmemt": [ "NN" ], "Arbitrage": [ "NN" ], "Garonzik": [ "NNP" ], "T\\/A": [ "NNP" ], "Guam": [ "NNP" ], "sophomore": [ "NN" ], "DeScenza": [ "NNP" ], "Iverson": [ "NNP" ], "incendiary": [ "JJ" ], "Ueberroth": [ "NNP" ], "Foods": [ "NNPS", "NNP", "NNS" ], "machine-gun-toting": [ "JJ" ], "Boylan": [ "NNP" ], "Fulson": [ "NNP" ], "razor-sharp": [ "JJ" ], "Bouygues": [ "NNP", "NNS" ], "auto-loaders": [ "NNS" ], "sultry": [ "JJ" ], "Shiflett": [ "NNP" ], "Informed": [ "VBN" ], "stat": [ "NN" ], "Bahar": [ "NNP" ], "pre-legislative": [ "JJ" ], "platforms": [ "NNS" ], "Kahn": [ "NNP" ], "pussy-willow": [ "NN" ], "export": [ "NN", "VBP", "JJ", "VB" ], "econometrics": [ "NN" ], "proprietorships": [ "NNS" ], "Sherren": [ "NNP" ], "himselfe": [ "NN" ], "NORAD": [ "NNP" ], "Warmly": [ "RB" ], "severance": [ "NN", "JJ" ], "Shamir": [ "NNP" ], "Sihanouk": [ "NNP" ], "Alzheimer": [ "NNP" ], "debuts": [ "VBZ" ], "soft-currency": [ "JJ" ], "blood-flecked": [ "JJ" ], "Range": [ "NN", "NNP" ], "Sutz": [ "NNP" ], "hypoactive": [ "JJ" ], "fluorescent": [ "JJ" ], "motive": [ "NN", "JJ" ], "half-empty": [ "JJ" ], "death-like": [ "JJ" ], "linger": [ "VB", "VBP" ], "shrub-covered": [ "JJ" ], "universe": [ "NN" ], "Kaifu": [ "NNP" ], "SPCA": [ "NNP" ], "track-signal": [ "JJ" ], "monthly": [ "JJ", "NN", "RB" ], "Zero": [ "NN" ], "sighting": [ "NN" ], "Moehn": [ "NNP" ], "Oct": [ "NNP" ], "blot-like": [ "JJ" ], "inaugurating": [ "VBG" ], "food-canning": [ "NN" ], "cocked": [ "VBD", "VBN" ], "dulcet": [ "JJ" ], "travelers": [ "NNS" ], "scarecrowish": [ "JJ" ], "Chadha": [ "NNP" ], "Adjusters": [ "NNS" ], "housing-discrimination": [ "NN" ], "Clashes": [ "NNS" ], "whiplashes": [ "NNS" ], "Widely": [ "NN", "RB" ], "well-regulated": [ "JJ" ], "Pedigrees": [ "NNS" ], "teabag": [ "NN" ], "Enforcement": [ "NNP", "NN" ], "Ivory": [ "NNP", "NN" ], "van": [ "NNP", "NN" ], "Corneilus": [ "NNP" ], "incipient": [ "JJ" ], "kidding": [ "VBG" ], "polymerization": [ "NN" ], "divisional": [ "JJ" ], "quadratic": [ "JJ" ], "desolations": [ "NNS" ], "Commands": [ "NNS" ], "Shipman": [ "NNP" ], "Poole": [ "NNP" ], "black-clad": [ "JJ" ], "asocial": [ "JJ" ], "courtliness": [ "NN" ], "good-bye": [ "NN", "JJ", "UH" ], "well-positioned": [ "JJ" ], "squeeze": [ "NN", "VBP", "VB" ], "untraditional": [ "JJ" ], "made": [ "VBN", "VBD", "JJ" ], "tactics": [ "NNS" ], "hitter": [ "NN" ], "whether": [ "IN", "CC" ], "Barabolak": [ "NNP" ], "Appleyard": [ "NNP" ], "atheist": [ "JJ", "NN" ], "Uerkesh": [ "NNP" ], "interchanges": [ "NNS" ], "Bovard": [ "NNP" ], "wedge-nosed": [ "JJ" ], "Hamrick": [ "NNP" ], "nine-story": [ "JJ" ], "inadequate": [ "JJ" ], "Writes": [ "NNP", "VBZ" ], "Writer": [ "NNP" ], "plaques": [ "NNS" ], "SEPARATED": [ "VBN" ], "APPEARS": [ "VBZ" ], "mutual": [ "JJ" ], "diplomas": [ "NNS" ], "calibration": [ "NN" ], "Uto-Aztecan": [ "NNP" ], "Freinkel": [ "NNP" ], "Decathlon": [ "NNP" ], "reinvigorating": [ "VBG" ], "cutthroat": [ "JJ" ], "overtones": [ "NNS" ], "L.E.": [ "NNP" ], "Banner": [ "NNP", "NN" ], "Strident": [ "JJ" ], "laundry-type": [ "JJ" ], "Lehder": [ "NNP" ], "Ottermole": [ "NNP" ], "Nonbuilding": [ "JJ" ], "Jean-Paul": [ "NNP" ], "household-products": [ "NNS" ], "metabolized": [ "VBN" ], "income-tax": [ "NN", "JJ" ], "Creditbank": [ "NNP" ], "twangy": [ "JJ" ], "BUYING": [ "NN" ], "extort": [ "VB" ], "Garbage": [ "NNP" ], "semitrance": [ "NN" ], "Competitive": [ "JJ", "NNP" ], "coincidentally": [ "RB" ], "Keizai": [ "NNP" ], "ex-employees": [ "NNS" ], "Bacteria": [ "NNS" ], "medium-distance": [ "JJ" ], "Mortimer": [ "NNP" ], "underemployment": [ "NN" ], "Procardia": [ "NNP" ], "Germany-based": [ "JJ" ], "treading": [ "VBG" ], "junketeering": [ "NN" ], "granting": [ "VBG", "NN" ], "four-month-old": [ "JJ" ], "religious-right": [ "NN" ], "aggregations": [ "NNS" ], "Ronald": [ "NNP" ], "Visitors": [ "NNS", "NNP", "NNPS" ], "Nagamo": [ "NNP" ], "impoverishment": [ "NN" ], "lore": [ "NN" ], "portentous": [ "JJ" ], "shaving": [ "NN", "VBG" ], "digit": [ "NN" ], "hormone": [ "NN" ], "Frankly": [ "RB", "NNP" ], "Electrosurgery": [ "NNP" ], "cardiomegaly": [ "NN" ], "reconstructions": [ "NNS" ], "second-stage": [ "JJ" ], "Ducking": [ "VBG" ], "elevations": [ "NNS" ], "Ole": [ "JJ", "NNP" ], "Sande": [ "NNP" ], "internally": [ "RB" ], "slyly": [ "RB" ], "Chippendale": [ "NNP" ], "Dalgety": [ "NNP" ], "aircraft-navigation": [ "NN" ], "Rojas": [ "NNP" ], "Coupon": [ "NN", "NNP" ], "SoftLetter": [ "NNP" ], "Sands": [ "NNP", "NNPS" ], "citizen-plaintiffs": [ "NNS" ], "Sandy": [ "NNP" ], "elegy": [ "NN" ], "cloves": [ "NNS" ], "shirtsleeve": [ "NN" ], "small-game": [ "JJ", "NN" ], "tired": [ "VBN", "JJ", "VBD" ], "bacon": [ "NN" ], "pulse": [ "NN", "VB" ], "tires": [ "NNS", "VBZ" ], "consists": [ "VBZ" ], "rusty": [ "JJ" ], "inheritors": [ "NNS" ], "foreign-owned": [ "JJ" ], "ten-foot": [ "JJ" ], "blouse": [ "NN" ], "Weart": [ "NNP" ], "Colo": [ "NNP" ], "Supports": [ "VBZ" ], "Unemployed": [ "JJ", "NNP" ], "boogie": [ "NN" ], "contributed": [ "VBD", "VBN" ], "fingers": [ "NNS" ], "Weary": [ "JJ", "NNP" ], "pathogenic": [ "JJ" ], "Wrong": [ "JJ", "NNP" ], "roadhouse": [ "NN" ], "set-asides": [ "NNS" ], "redelivered": [ "VBN" ], "contributes": [ "VBZ" ], "exclamations": [ "NNS" ], "Kassan": [ "NNP" ], "specialist": [ "NN", "JJ" ], "misjudged": [ "VBD", "VBN" ], "hero": [ "NN" ], "brocaded": [ "JJ" ], "reporter": [ "NN" ], "herb": [ "NN" ], "splinter": [ "NN", "VBP", "JJ" ], "sunspot": [ "NN" ], "here": [ "RB" ], "herd": [ "NN", "VB" ], "reported": [ "VBD", "JJ", "VB", "VBN", "VBP" ], "[": [ "(" ], "Cold": [ "NNP", "JJ", "NN" ], "whipping-boys": [ "NNS" ], "conversational": [ "JJ" ], "road-shy": [ "JJ" ], "Fernberger": [ "NNP" ], "Catastrophic": [ "NNP" ], "Settlements": [ "NNP", "NNS" ], "HLR": [ "NNP" ], "robin": [ "NN" ], "tremors": [ "NNS" ], "symmetrical": [ "JJ" ], "Cola": [ "NNP" ], "no-more-nonsense": [ "JJ" ], "swan": [ "NN" ], "Basir": [ "NNP" ], "MEXICO": [ "NNP" ], "fireworks": [ "NNS" ], "panjandrum": [ "NN" ], "Snack-food": [ "NN" ], "MERGING": [ "VBG" ], "Pomerantz": [ "NNP" ], "Scottsdale": [ "NNP" ], "computer-security": [ "JJ" ], "Basil": [ "NNP" ], "Syrians": [ "NNPS" ], "SKr20": [ "NNS" ], "Messina": [ "NNP" ], "unit": [ "NN" ], "Merle": [ "NNP" ], "rise-perhaps": [ "RB" ], "hanky-panky": [ "NN" ], "Plugging": [ "VBG" ], "bays": [ "NNS" ], "Chahar": [ "NNP" ], "Humility": [ "NNP" ], "sweltering": [ "JJ" ], "personal-spending": [ "NN" ], "Quek": [ "NNP" ], "Charity": [ "NN", "NNP" ], "expiring": [ "VBG" ], "Holds": [ "NNP" ], "holy": [ "JJ" ], "detracts": [ "VBZ" ], "gashes": [ "NNS" ], "ruminations": [ "NNS" ], "Emerson": [ "NNP", "NN" ], "menaced": [ "VBN" ], "hole": [ "NN", "VBP", "VB" ], "hold": [ "VB", "VB|NN", "NN", "RB", "VBP" ], "Pardon": [ "NN", "VB" ], "irksome": [ "JJ" ], "porcupines": [ "NNS" ], "EDA": [ "NNP" ], "Wilderness": [ "NN", "NNP" ], "Geeks": [ "NNPS", "NNS" ], "budget-altering": [ "JJ" ], "EDS": [ "NNP" ], "cristata": [ "FW" ], "battlefront": [ "NN" ], "discotheque": [ "NN" ], "EDT": [ "NNP" ], "Hobday": [ "NNP" ], "centralization": [ "NN" ], "postponable": [ "JJ" ], "Frosts": [ "NNPS" ], "Positive": [ "JJ", "NNP" ], "FCB\\": [ "NNP" ], "Ex-smokers": [ "NNS" ], "malign": [ "JJ" ], "over-simplification": [ "NN" ], "Antonovich": [ "NNP" ], "Travelling": [ "VBG" ], "hog": [ "NN", "NNS" ], "fuzzed": [ "VBD", "VBN" ], "Blowing": [ "NN" ], "hob": [ "NN" ], "hoc": [ "FW" ], "hon": [ "NN" ], "drying": [ "VBG", "NN" ], "Gardner": [ "NNP" ], "then-dress": [ "JJ" ], "hot": [ "JJ" ], "patrimony": [ "NN" ], "significance": [ "NN" ], "Wedgwood": [ "NNP" ], "casualty-loss": [ "JJ" ], "classify": [ "VB", "VBP" ], "A": [ "DT", "NNP", "NNS", "PRP", "FW", "JJ", "LS", "NN", "NNPS", "VB" ], "renounced": [ "VBD" ], "McKinnon": [ "NNP" ], "beauty": [ "NN" ], "minimums": [ "NNS" ], "Michelman": [ "NNP" ], "infrastructural": [ "JJ" ], "Yields": [ "NNS" ], "Schober": [ "NNP" ], "overexploited": [ "JJ" ], "pseudo-emotion": [ "NN" ], "Manafort": [ "NNP" ], "headquarters": [ "NN", "NNS" ], "presiding": [ "VBG" ], "Lalauries": [ "NNPS" ], "TASTY": [ "JJ" ], "debt-laden": [ "JJ" ], "Grigoriy": [ "NNP" ], "democratic": [ "JJ" ], "then-client": [ "NN" ], "backdrop": [ "NN" ], "Maruwa": [ "NNP" ], "Edita": [ "NNP" ], "schoolmates": [ "NNS" ], "Pavese": [ "NNP" ], "car-assembly": [ "NN" ], "home-delivered": [ "JJ" ], "dreamed": [ "VBD", "VBN" ], "Mindanao": [ "NNP" ], "Jules": [ "NNP" ], "Micro-Economics": [ "NNPS" ], "murals": [ "NNS" ], "Charlottesville": [ "NNP" ], "fidelity": [ "NN" ], "Broadbent": [ "NNP" ], "term-end": [ "JJ" ], "dreamer": [ "NN" ], "admirably": [ "RB" ], "break-through": [ "NN" ], "Howdy": [ "UH" ], "Munching": [ "VBG" ], "Smarter": [ "RB", "RBR" ], "McKinsey": [ "NNP" ], "intelligentsia": [ "NN", "NNS" ], "goal-oriented": [ "JJ" ], "distinguishing": [ "VBG", "JJ" ], "bowstring": [ "NN" ], "nobler": [ "JJR" ], "nobles": [ "NNS" ], "admirable": [ "JJ" ], "grievous": [ "JJ" ], "Eubie": [ "NNP" ], "aftershock-damping": [ "JJ" ], "accrual": [ "NN" ], "SpellRight": [ "NNP" ], "Gossiping": [ "NNP" ], "awfully": [ "RB" ], "SWITCHING": [ "VBG" ], "Gottlieb": [ "NNP" ], "pleasantries": [ "NNS" ], "across-the-board-cuts": [ "NNS" ], "spotless": [ "JJ" ], "Dutchman": [ "NNP" ], "McCluskey": [ "NNP" ], "Three-quarters": [ "NNS" ], "Undersecretary": [ "NNP" ], "Superior": [ "NNP", "JJ" ], "Falklands": [ "NNP" ], "chest-high": [ "JJ" ], "jet-setters": [ "NNS" ], "knockout": [ "NN" ], "near-limit": [ "JJ" ], "contracting": [ "NN", "VBG" ], "whiz": [ "NN", "UH" ], "earned-income": [ "NN" ], "strychnine": [ "NN" ], "c-Translated": [ "VBN", "NNP" ], "whir": [ "NN" ], "Trunkline": [ "NNP" ], "whip": [ "NN", "VB" ], "borne": [ "VBN" ], "shutdowns": [ "NNS" ], "balanced-budget": [ "JJ", "NN" ], "Gustav": [ "NNP" ], "trending": [ "VBG" ], "whoosh": [ "VBP", "NN" ], "homoeroticism": [ "NN" ], "Gustaf": [ "NNP" ], "Sin\\/Your": [ "NNP" ], "Curiosity": [ "NN", "NNP" ], "Purepac": [ "NNP" ], "cigar": [ "NN" ], "pre-Anglo-Saxon": [ "JJ" ], "intervention-speeded": [ "JJ" ], "sellout": [ "NN" ], "managerial": [ "JJ" ], "hero-worshippers": [ "NNS" ], "Hiatt": [ "NNP" ], "SES": [ "NNP" ], "Scrivener": [ "NNP" ], "cornerstone": [ "NN" ], "post-sale": [ "JJ" ], "piecemeal": [ "RB", "NN" ], "takeout": [ "NN" ], "reprimanded": [ "VBN" ], "Bramante": [ "NNP" ], "greenhouse-produced": [ "JJ" ], "Votes": [ "NNS" ], "Voter": [ "NN", "NNP" ], "clinical": [ "JJ" ], "McCaughan": [ "NNP" ], "exit-visa": [ "JJ" ], "eyeglasses": [ "NNS" ], "spinning": [ "VBG", "JJ" ], "miliaris": [ "NN" ], "Waterford": [ "NNP" ], "Steelers": [ "NNP" ], "bitten": [ "VBN" ], "even-tempered": [ "JJ" ], "rhododendron": [ "NN" ], "Sonia": [ "NNP" ], "Puche": [ "NNP" ], "Mitzel": [ "NNP" ], "beguiled": [ "VBN" ], "numerological": [ "JJ" ], "Recordings": [ "NNP" ], "Simmons": [ "NNP", "NNS" ], "chugging": [ "VBG" ], "non-warranty": [ "NN" ], "bitter": [ "JJ" ], "rummaged": [ "VBD" ], "Anku": [ "NNP" ], "electronic-data": [ "JJ", "NN|NNS" ], "cushions": [ "NNS" ], "gothic": [ "JJ" ], "Victory": [ "NNP", "NN" ], "pulse-timing": [ "JJ" ], "modern-dance": [ "NN" ], "Kaina": [ "NNP" ], "Chrysler-brand": [ "JJ" ], "peril": [ "NN" ], "ever-tightening": [ "JJ" ], "I.A.P/NNP.A.": [ "NN" ], "Hyperlite": [ "NN" ], "Carroll": [ "NNP" ], "Maxim": [ "NNP" ], "nations": [ "NNS" ], "pneumonia": [ "NN" ], "Eades": [ "NNP" ], "acquisition": [ "NN" ], "Cody": [ "NNP" ], "Bucchino": [ "NNP" ], "fevered": [ "JJ" ], "hue": [ "NN" ], "corne": [ "NN" ], "Tatsunori": [ "NNP" ], "broody": [ "JJ" ], "headland": [ "NN" ], "width": [ "NN" ], "corny": [ "JJ" ], "easy-to-film": [ "JJ" ], "on-again": [ "JJ" ], "Holly": [ "NNP" ], "corns": [ "NNS" ], "diversifications": [ "NNS" ], "Schrier": [ "NNP" ], "herdin": [ "NN", "VBG" ], "three-foot": [ "JJ" ], "Kansallis": [ "NNP" ], "furrier": [ "NN" ], "circulated": [ "VBD", "VBN" ], "object": [ "NN", "VBP", "VB" ], "Pavane": [ "NNP" ], "backpedal": [ "VB" ], "Paychex": [ "NNP" ], "known": [ "VBN", "JJ" ], "large-diameter": [ "JJ" ], "Nunzio": [ "NNP" ], "Bulloch": [ "NNP" ], "FALTERS": [ "NNP" ], "Bullock": [ "NNP" ], "pirogues": [ "NNS" ], "consummate": [ "JJ" ], "place": [ "NN", "VBP", "RB", "VB" ], "Brillo": [ "NN" ], "Mayumi": [ "NNP" ], "incomplete": [ "JJ" ], "marvel": [ "VB", "NN" ], "Klansmen": [ "NNPS" ], "chirpy": [ "JJ" ], "Basra": [ "NNP" ], "McGuane": [ "NNP" ], "folk-music": [ "NN" ], "Situation": [ "NNP" ], "heckled": [ "VBN" ], "reinvented": [ "VBD", "VBN" ], "Congressional": [ "NNP", "JJ" ], "touches": [ "NNS", "VBZ" ], "busy": [ "JJ" ], "Premium": [ "NNP" ], "skirmishes": [ "NNS" ], "typewriters": [ "NNS" ], "buss": [ "NN" ], "Whitbread": [ "NNP" ], "bust": [ "NN", "JJ|RB", "VB" ], "skirmished": [ "VBD", "VBN" ], "druggies": [ "NNS" ], "Hirschey": [ "NNP" ], "Romanee-Conti": [ "NNP" ], "tire-kickers": [ "NNS" ], "longhorn": [ "NN" ], "non-regulated": [ "JJ" ], "Californian": [ "NN", "JJ", "NNP" ], "cervelat": [ "NN" ], "cubic": [ "JJ" ], "Francaise": [ "NNP" ], "Vases": [ "NNS" ], "Chapters": [ "NNS" ], "Delors": [ "NNP" ], "Quicker": [ "JJR" ], "cushion": [ "NN", "VB" ], "Stadtmauer": [ "NNP" ], "by-wheelchair": [ "JJ" ], "Colorado": [ "NNP" ], "Ringing": [ "NN", "NNP", "VBG" ], "ad-agency": [ "NN" ], "Schwemer": [ "NNP" ], "decoys": [ "NNS" ], "Ripplemeyer": [ "NNP" ], "three-year": [ "JJ" ], "Transporting": [ "VBG" ], "release": [ "NN", "VBP", "VB" ], "particulate": [ "JJ" ], "Sharpest": [ "JJS" ], "stand-still": [ "JJ" ], "sheet-metal": [ "JJ", "NN" ], "Biedermeier": [ "FW", "NNP" ], "Gruppe": [ "NNP" ], "Famous-Barr": [ "NNP" ], "naturalness": [ "NN" ], "Stikeman": [ "NNP" ], "Olympian": [ "JJ" ], "result": [ "NN", "VBP", "VB" ], "Leyden": [ "NN" ], "internationalize": [ "VB" ], "hammer": [ "NN", "VBP", "VB" ], "Dogs": [ "NNS", "NNPS", "NNP" ], "peptizing": [ "VBG" ], "Cocteau": [ "NNP" ], "oncogene": [ "NN" ], "Waist-High": [ "JJ" ], "Risk": [ "NN", "NNP" ], "Szold": [ "NNP" ], "overbillings": [ "NNS" ], "Rise": [ "NN", "NNP", "VBP", "VB" ], "REPLICATION": [ "NN" ], "just-revised": [ "JJ" ], "Credietbank": [ "NNP" ], "occupational": [ "JJ" ], "Terrier": [ "NNP" ], "Devans": [ "NNP" ], "parallels": [ "NNS", "VBZ" ], "disposable": [ "JJ", "NN" ], "international-operations": [ "NNS" ], "inextricable": [ "JJ" ], "SUGAR": [ "NN", "NNP" ], "inextricably": [ "RB" ], "Tomonggong": [ "NNP" ], "conflagration": [ "NN" ], "butane": [ "NN" ], "downgrade": [ "NN", "VB" ], "discursiveness": [ "NN" ], "pity": [ "NN", "VBP" ], "patented": [ "VBN", "VBD", "JJ" ], "accident": [ "NN" ], "Trammell": [ "NNP" ], "Simonds-Gooding": [ "NNP" ], "Poehl": [ "NNP" ], "pits": [ "NNS", "VBZ" ], "mew": [ "VB" ], "demanded": [ "VBD", "VBN" ], "recoilless": [ "JJ" ], "pith": [ "NN" ], "Dreyfus": [ "NNP" ], "thyroid": [ "NN" ], "demander": [ "NN" ], "colo-rectal": [ "JJ" ], "asked": [ "VBD", "VBN", "JJ", "VBN|JJ" ], "Tallahoosa": [ "NNP" ], "lockers": [ "NNS" ], "media-buying": [ "JJ", "NN", "NNP" ], "near-manic": [ "JJ" ], "Petfoods": [ "NNPS" ], "agglomerate": [ "NN", "VB" ], "self-professed": [ "JJ" ], "caffeine-free": [ "JJ" ], "Unquestionably": [ "RB" ], "blending": [ "VBG", "NN" ], "stock-swap": [ "JJ" ], "Columns": [ "NNS", "NNPS", "NN" ], "postmasters": [ "NNS" ], "Marron": [ "NNP" ], "stop-limit": [ "JJ" ], "Clarence": [ "NNP" ], "quake-displaced": [ "JJ" ], "Confucius": [ "NNP" ], "mitigation": [ "NN" ], "Worksheets": [ "NNS" ], "Tomato": [ "NNP" ], "Guralnick": [ "NNP" ], "tax-reducing": [ "VBG" ], "skiis": [ "NNS" ], "comprehensiveness": [ "NN" ], "Zoladex": [ "NNP" ], "grillework": [ "NN" ], "estuaries": [ "NNS" ], "Almaden": [ "NNP" ], "Holmes": [ "NNP" ], "Hapsburg": [ "NNP" ], "Devils": [ "NNPS" ], "Superdome": [ "NNP" ], "two-fold": [ "JJ" ], "mates": [ "NNS" ], "cross-referencing": [ "NN" ], "Anselm": [ "NNP" ], "starstruck": [ "JJ" ], "levies": [ "NNS" ], "LOC": [ "NNP" ], "Mitsuo": [ "NNP" ], "Mitsui": [ "NNP", "NNS" ], "Double-Jointed": [ "NNP" ], "equator": [ "NN" ], "Responsible": [ "JJ" ], "Vacation": [ "NN", "NNP" ], "ill-equipped": [ "JJ" ], "LOW": [ "RB" ], "LOT": [ "NNP" ], "levied": [ "VBN", "VBD" ], "doomsayer": [ "NN" ], "crusaders": [ "NNS" ], "Marlys": [ "NNP" ], "Swiss-cheese": [ "NN" ], "Co-Chief": [ "NNP" ], "marshlands": [ "NNS" ], "computer-room": [ "JJ" ], "things": [ "NNS" ], "toaster": [ "NN" ], "any": [ "DT", "RB" ], "Newman": [ "NNP" ], "Plaines": [ "NNP" ], "Sippl": [ "NNP" ], "toasted": [ "VBD", "VBN" ], "outsell": [ "VB" ], "bacteria-free": [ "JJ" ], "DeVos": [ "NNP" ], "DeVon": [ "NNP" ], "Rune": [ "NNP" ], "preachy": [ "JJ" ], "DeVoe": [ "NNP" ], "tuna": [ "NN" ], "Naturalization": [ "NNP" ], "tung": [ "NN" ], "tune": [ "NN", "VB", "VBP" ], "Dalzell-Cousin": [ "NNP" ], "desert-battle": [ "JJ" ], "vice-president": [ "NN" ], "before-tax": [ "JJ" ], "Nutritional": [ "NNP" ], "echoed": [ "VBD", "VBN" ], "cannibalize": [ "VB" ], "burgers": [ "NNS" ], "dewatering": [ "VBG" ], "echoes": [ "NNS", "VBZ" ], "rancorous": [ "JJ" ], "spurred": [ "VBN", "VBD" ], "Over-the-counter": [ "JJ" ], "Elkind": [ "NNP" ], "allgedly": [ "RB" ], "sovereigns": [ "NNS" ], "sub-tests": [ "NNS" ], "Whitaker": [ "NNP" ], "Elkins": [ "NNP" ], "short-covering": [ "NN", "JJ" ], "bond-insurance": [ "JJ" ], "Metroplex": [ "NNP" ], "enters": [ "VBZ" ], "dialogues": [ "NNS" ], "Russians": [ "NNPS", "NNP", "NNS" ], "ENVIRONMENTAL": [ "JJ" ], "ease": [ "VB", "NN", "VBP" ], "slices": [ "NNS", "VBZ" ], "slick-talking": [ "JJ" ], "topical": [ "JJ" ], "terrestrially": [ "RB" ], "Samengo-Turner": [ "NNP" ], "easy": [ "JJ", "RB" ], "falter": [ "VB", "VBP" ], "east": [ "JJ", "NN", "RB" ], "Wilbur": [ "NNP" ], "posed": [ "VBN", "VBD" ], "Kelton": [ "NNP" ], "well-wedged": [ "JJ" ], "status-dropout": [ "NN" ], "MX-6s": [ "NNPS" ], "poses": [ "VBZ" ], "bushy": [ "JJ" ], "occurring": [ "VBG" ], "harmoniously": [ "RB" ], "Oncology": [ "NNP" ], "Nederlander": [ "NNP" ], "bobby": [ "NN", "JJ" ], "Lowry": [ "NNP" ], "Ezekiel": [ "NNP" ], "eight-by-ten": [ "JJ" ], "Mts.": [ "NNP" ], "Shrove": [ "NNP" ], "Follow-up": [ "JJ" ], "without,``": [ "``" ], "Aquidneck": [ "NNP" ], "finely-spun": [ "JJ" ], "split-up": [ "NN" ], "Desrosiers": [ "NNP" ], "N.M": [ "NNP" ], "N.J": [ "NNP" ], "N.H": [ "NNP" ], "Peanut": [ "NN" ], "midyear": [ "NN", "JJ" ], "N.D": [ "NNP" ], "N.C": [ "NNP" ], "N.A": [ "NN", "NNP" ], "Suspect": [ "JJ" ], "N.Y": [ "NNP" ], "conflicts.": [ "NN" ], "N.V": [ "NNP", "NN" ], "lend-lease": [ "JJ" ], "Palms": [ "NNPS" ], "W\\/O": [ "NNP" ], "Motley": [ "NNP" ], "rehearse": [ "VB" ], "Hasseltine": [ "NNP" ], "speed-up": [ "JJ" ], "creative": [ "JJ" ], "repression": [ "NN" ], "imposes": [ "VBZ" ], "Palma": [ "NNP" ], "Cholet-Dupont": [ "NNP" ], "attorney-client": [ "JJ" ], "Gandalf": [ "NNP" ], "Hippie": [ "NNP" ], "nubbins": [ "NNS" ], "Wertheim": [ "NNP" ], "terraces": [ "NNS" ], "city-charter": [ "NN" ], "Barcalounger": [ "NNP" ], "Euro-barbecue": [ "NN" ], "terraced": [ "VBN" ], "manufacturing": [ "NN", "VBG" ], "Gorby": [ "NNP" ], "ham-like": [ "JJ" ], "intellectus": [ "FW" ], "Factor-VIII": [ "NNP" ], "coexistent": [ "JJ" ], "Dyson": [ "NNP" ], "pseudo-glamorous": [ "JJ" ], "Lullwater": [ "NNP" ], "Gitanes": [ "NNP" ], "cohesively": [ "RB" ], "leverage": [ "NN", "VB" ], "disqualified": [ "VBN", "VBD" ], "slightly": [ "RB" ], "meddle": [ "VB" ], "Fiero": [ "NNP" ], "consulting": [ "NN", "JJ", "VBG" ], "Fenway": [ "NNP" ], "well-cared": [ "JJ" ], "Starpointe": [ "NNP" ], "cell-free": [ "JJ" ], "Marketed": [ "VBN" ], "freshman": [ "NN" ], "Fiery": [ "JJ" ], "consumer-products": [ "NNS", "JJ" ], "vibrancy": [ "NN" ], "journeying": [ "VBG" ], "Fuss": [ "VB" ], "precludes": [ "VBZ" ], "chalk-white": [ "JJ" ], "Tchaikovsky": [ "NNP" ], "knowing": [ "VBG", "JJ", "NN" ], "busy-work": [ "NN" ], "GOP": [ "NNP" ], "uncluttered": [ "JJ" ], "alphabetized": [ "VBD", "VBN" ], "Civilian-groups": [ "NNPS" ], "underestimated": [ "VBN", "VBD" ], "insurrection": [ "NN", "JJ" ], "non-contract": [ "JJ" ], "offer": [ "NN", "VB", "VBP" ], "understandably": [ "RB" ], "dickering": [ "NN" ], "notifications": [ "NNS" ], "talents": [ "NNS" ], "incorporation": [ "NN" ], "Dalloway": [ "NNP" ], "heavy-tracked": [ "JJ" ], "squalid": [ "JJ" ], "unchlorinated": [ "VBN" ], "anti-dilutive": [ "JJ" ], "Seeing": [ "VBG", "NNP" ], "Tone": [ "NN" ], "Tong": [ "NNP" ], "Toni": [ "NNP" ], "myopic": [ "JJ" ], "myopia": [ "NN" ], "Hatteras": [ "NNP" ], "highest-grossing": [ "JJS" ], "histochemical": [ "JJ" ], "rerun": [ "NN" ], "Tony": [ "NNP" ], "Andy": [ "NNP" ], "Szeto": [ "NNP" ], "fiefdoms": [ "NNS" ], "Differ": [ "VBP" ], "nectareous": [ "JJ" ], "Ruffel": [ "NNP" ], "Scurlock": [ "NNP" ], "bathrobe": [ "NN" ], "Crush": [ "NNP" ], "Virgin": [ "NNP", "JJ" ], "Virgil": [ "NNP" ], "Coburg": [ "NNP" ], "LOGIC": [ "NNP" ], "pretrial": [ "JJ" ], "Coburn": [ "NNP" ], "OLYMPIA": [ "NNP" ], "Sunday-Tuesday": [ "NNP" ], "microcytochemistry": [ "NN" ], "floor": [ "NN" ], "uttered": [ "VBD", "VBN" ], "grammatical": [ "JJ" ], "ambitious": [ "JJ" ], "lenses": [ "NNS" ], "Ibos": [ "NNP" ], "smell": [ "NN", "VB", "VBP" ], "cortex": [ "NN" ], "Tirpak": [ "NNP" ], "rehearsing": [ "VBG" ], "Western-style": [ "JJ" ], "semi-professionally": [ "RB" ], "pitcher-coach": [ "NN" ], "Luthuli": [ "NNP" ], "non-cumulative": [ "JJ" ], "grinders": [ "NNS" ], "rolling": [ "VBG", "JJ", "NN" ], "annointed": [ "VBN" ], "congested": [ "JJ", "VBN" ], "denationalized": [ "VBN" ], "Kemchenjunga": [ "NNP" ], "mateless": [ "JJ" ], "disruption": [ "NN" ], "serialized": [ "VBN" ], "lowdown": [ "JJ" ], "IMF-World": [ "NNP" ], "iodoprotein": [ "NN" ], "packets": [ "NNS" ], "Quaker": [ "NNP" ], "Samara": [ "NNP" ], "unquenched": [ "VBN" ], "budworm": [ "NN" ], "banners": [ "NNS" ], "Lamle": [ "NNP" ], "restaurateurs": [ "NNS" ], "perch": [ "NN", "VB" ], "Riney": [ "NNP" ], "reviewers": [ "NNS" ], "oneasy": [ "NN" ], "Nicklaus": [ "NNP" ], "Desktop": [ "NNP" ], "throw-away": [ "JJ" ], "doted": [ "VBN" ], "fawned": [ "VBN" ], "FIRMS": [ "NNS" ], "Sluggish": [ "JJ" ], "Stinson": [ "NNP" ], "Siemienas": [ "NNP" ], "Tupperware": [ "NNP" ], "Songau": [ "NNP" ], "Santayana": [ "NNP" ], "plainclothes": [ "NNS", "JJ" ], "Sizable": [ "JJ" ], "KETV": [ "NNP" ], "debtholders": [ "NNS" ], "WEEK": [ "NN" ], "leaving...": [ ":" ], "WEEI": [ "NNP" ], "Prize": [ "NNP", "NN" ], "Debussy": [ "NNP" ], "two-door": [ "JJ", "NN" ], "Cosmic": [ "NNP" ], "Conquering": [ "NNP" ], "VAX": [ "NNP" ], "bustle": [ "NN" ], "Smilin": [ "NNP" ], "fullest": [ "JJS" ], "Hannibal": [ "NNP" ], "betterment": [ "NN" ], "VAT": [ "NNP" ], "thermoformed": [ "VBN" ], "Off-Broadway": [ "NNP" ], "kneading": [ "VBG" ], "vans": [ "NNS" ], "muscat": [ "JJ" ], "Aldrich": [ "NNP" ], "reclusive": [ "JJ" ], "Dubin": [ "NNP" ], "Stock-index": [ "NN", "JJ" ], "yd.": [ "NN" ], "post-Watergate": [ "JJ" ], "rents": [ "NNS", "VBZ" ], "self-expression": [ "NN" ], "growth-fund": [ "NN" ], "Coche-Dury": [ "NNP" ], "phosphates": [ "NNS" ], "leering": [ "VBG", "JJ" ], "Lt.": [ "NNP" ], "ordo": [ "FW" ], "psychosocial": [ "JJ" ], "retirement-system": [ "JJ" ], "axes": [ "NNS" ], "A.E.": [ "NNP" ], "Timmy": [ "NNP" ], "proprieties": [ "NNS" ], "ACCOUNTANTS": [ "NNS" ], "Jannsen": [ "NNP" ], "creepiest": [ "JJS" ], "steel-toothed": [ "JJ" ], "grandparents": [ "NNS" ], "funeral": [ "NN", "JJ" ], "tight-lipped": [ "JJ" ], "splice": [ "NN" ], "Undismayed": [ "JJ" ], "alone": [ "RB", "JJ" ], "along": [ "IN", "RB", "RP", "RB|RP" ], "anchoring": [ "VBG" ], "tachyarrhythmia": [ "NN" ], "Power-generation": [ "JJ" ], "anti-reformers": [ "NNS" ], "Packer": [ "NNP" ], "saws": [ "NNS" ], "vectors": [ "NNS" ], "eduction": [ "NN" ], "Packet": [ "NN" ], "Ziegler": [ "NNP" ], "Casals": [ "NNP" ], "stock-exchange": [ "NN" ], "Joshi": [ "NNP" ], "Oilcloth": [ "NN" ], "pinkly": [ "RB" ], "Paradoxically": [ "RB" ], "melodious": [ "JJ" ], "Delahanty": [ "NNP" ], "radish": [ "NN" ], "Technique": [ "NN" ], "prefer": [ "VBP", "VB" ], "coinciding": [ "VBG", "JJ" ], "unabsorbed": [ "JJ" ], "typically...": [ ":" ], "Tilghman": [ "NNP" ], "crime": [ "NN" ], "Nikko": [ "NNP" ], "Donizetti": [ "NNP" ], "traders": [ "NNS" ], "unmarked": [ "JJ" ], "to-do": [ "NN" ], "Crouch": [ "NNP" ], "huskily": [ "RB" ], "homesick": [ "JJ" ], "shortfalls": [ "NNS" ], "filmy": [ "JJ" ], "films": [ "NNS" ], "unwounded": [ "JJ" ], "sonnets": [ "NNS" ], "climax": [ "NN", "VB" ], "carved-out-of-solid": [ "JJ" ], "series.": [ "NN" ], "marbles": [ "NNS" ], "subsistence": [ "NN" ], "Barely": [ "RB" ], "tailing": [ "VBG" ], "validity": [ "NN" ], "Retail": [ "JJ", "NNP" ], "Ambassador-designate": [ "NNP" ], "logos": [ "NNS", "NN" ], "Analytrol": [ "NNP" ], "celebrity-driven": [ "JJ" ], "foods": [ "NNS" ], "coexist": [ "VB", "VBP" ], "biophysicist": [ "NN" ], "dual-purpose": [ "JJ" ], "tax-policy": [ "NN" ], "disking": [ "VBG" ], "Tylenol": [ "NNP" ], "Greenwich-Potowomut": [ "NNP" ], "Monkey": [ "NNP" ], "typicality": [ "NN" ], "HOBBY": [ "NN" ], "stockbroker": [ "NN" ], "evidently": [ "RB" ], "mauler": [ "NN" ], "silos": [ "NNS" ], "poking": [ "VBG" ], "Guzzi": [ "NNP" ], "CLUBBING": [ "VBG" ], "self-critical": [ "JJ" ], "electronicmedical-equipment": [ "JJ" ], "explores": [ "VBZ" ], "explorer": [ "NN" ], "slush": [ "NN" ], "transients": [ "NNS" ], "Hamer": [ "NNP" ], "explored": [ "VBN", "VBD" ], "Flottl": [ "NNP" ], "it-wit": [ "NN" ], "Brokerage-firm": [ "JJ" ], "such": [ "JJ", "PDT", "DT" ], "suck": [ "VB", "NN", "VBP" ], "Flotte": [ "NNP" ], "Dipylon": [ "NNP" ], "titular": [ "JJ" ], "NCR": [ "NNP" ], "Borgeson": [ "NNP" ], "pranha": [ "NN" ], "NCI": [ "NNP" ], "darkened": [ "VBD", "VBN", "JJ" ], "furiouser": [ "RBR" ], "black-tipped": [ "JJ" ], "NCB": [ "NNP" ], "post-trial": [ "JJ" ], "colonic": [ "JJ" ], "Protitch": [ "NNP" ], "unsolicited": [ "JJ" ], "Grimm": [ "NNP", "NN" ], "Maurier": [ "NNP" ], "noteworthy": [ "JJ" ], "sell-off": [ "NN", "NNS" ], "heraldic": [ "JJ" ], "reaffirms": [ "VBZ" ], "blustered": [ "VBD" ], "dyspeptic": [ "JJ" ], "legal-ethics": [ "NNS" ], "Onidi": [ "NNP" ], "Widget": [ "NNP" ], "yawning": [ "VBG", "JJ" ], "thumb": [ "NN", "VB" ], "court-reporting": [ "JJ" ], "Singin": [ "VBG" ], "public-works": [ "NNS", "JJ" ], "Kissing": [ "VBG" ], "thump": [ "NN", "VB" ], "deviant": [ "JJ" ], "presentness": [ "NN" ], "downsizing": [ "VBG", "NN" ], "conveying": [ "VBG" ], "insemination": [ "NN" ], "executors": [ "NNS" ], "Returns": [ "NNS" ], "thyroids": [ "NNS" ], "chromatic": [ "JJ" ], "retrain": [ "VB" ], "Tullock": [ "NNP" ], "Viggo": [ "NNP" ], "Tittabawassee": [ "NNP" ], "Torresi": [ "NNP" ], "Birgfeld": [ "NNP" ], "maintaining": [ "VBG" ], "firming": [ "VBG", "NN" ], "double-whammy": [ "NN" ], "Codification": [ "NN" ], "look-alike": [ "JJ", "NN" ], "McAllen": [ "NNP" ], "wallpapers": [ "NNS" ], "Lucky-Goldstar": [ "NNP" ], "olivefaced": [ "JJ" ], "Lotte": [ "NNP" ], "Forfeiture": [ "NNP" ], "Tristars": [ "NNPS" ], "Ind.-investment": [ "NN" ], "repaid": [ "VBN", "VBD" ], "Governali": [ "NNP" ], "Loudermilk": [ "NNP" ], "sexually": [ "RB" ], "regionally": [ "RB" ], "Knife": [ "NNP", "NN" ], "small-scale": [ "JJ" ], "Shepherd": [ "NNP" ], "Undeterred": [ "JJ" ], "ever-optimistic": [ "JJ" ], "jounce": [ "NN" ], "Minoso": [ "NNP" ], "Remembering": [ "VBG" ], "Welcome": [ "NNP", "NN", "UH", "VB" ], "Leopard": [ "NNP" ], "non-inflationary": [ "JJ" ], "verisimilitude": [ "NN" ], "protections": [ "NNS" ], "D.J.": [ "NNP" ], "inconspicuously": [ "RB" ], "formula": [ "NN" ], "Rectum": [ "NN" ], "Saturn": [ "NNP" ], "sainthood": [ "NN" ], "chemically": [ "RB" ], "Tropworld": [ "NNP" ], "superiors": [ "NNS" ], "willya": [ "MD" ], "cowling": [ "NN" ], "mapped": [ "VBN", "VBD" ], "seventh": [ "JJ" ], "vicious": [ "JJ" ], "plea": [ "NN", "VB" ], "quarterbacks": [ "NNS" ], "Fenton": [ "NNP" ], "longrange": [ "JJ" ], "monogrammed": [ "JJ" ], "foundation-stone": [ "NN" ], "silhouetted": [ "VBN", "JJ" ], "basso": [ "NN" ], "undisguised": [ "JJ" ], "programming": [ "NN", "VBG" ], "routed": [ "VBN", "VBD" ], "trial-book": [ "JJ" ], "X-marked": [ "JJ" ], "silhouettes": [ "NNS" ], "Philippians": [ "NNS" ], "LXI": [ "NNP" ], "routes": [ "NNS", "VBZ" ], "jumbled": [ "VBN" ], "number-one": [ "JJ" ], "Hayeses": [ "NNPS" ], "recapitalizing": [ "VBG" ], "plea-bargain": [ "JJ" ], "bluish": [ "JJ" ], "teaches": [ "VBZ" ], "speculatively": [ "RB" ], "Horwath": [ "NNP" ], "forfeiting": [ "VBG" ], "well-tailored": [ "JJ" ], "ink-jetting": [ "JJ" ], "MacNeil\\": [ "NNP", "JJ" ], "synchrony": [ "NN" ], "light-bulb": [ "NN" ], "waist": [ "NN" ], "rodders": [ "NNS" ], "judgements": [ "NNS" ], "dissipate": [ "VB" ], "separatists": [ "NNS" ], "realization": [ "NN" ], "out-moded": [ "JJ" ], "Sharpshooters": [ "NNPS" ], "silvas": [ "FW" ], "Attilio": [ "NNP" ], "Patrice": [ "NNP" ], "Josephthal": [ "NNP" ], "Patrick": [ "NNP" ], "Kurd": [ "NNP" ], "proving": [ "VBG", "NN" ], "betray": [ "VB", "VBP" ], "ridiculous": [ "JJ" ], "Install": [ "VB" ], "jury-tampering": [ "JJ" ], "Laff": [ "NNP" ], "Kurt": [ "NNP" ], "republic": [ "NN" ], "poultice": [ "NN" ], "nine-year": [ "JJ" ], "vocabularies": [ "NNS" ], "Poynting-Robertson": [ "NNP" ], "anti-authoritarian": [ "JJ" ], "scrumptious": [ "JJ" ], "Seerey": [ "NNP" ], "unprecedented": [ "JJ" ], "Athenians": [ "NNPS" ], "once-bloated": [ "JJ" ], "WTPI-FM": [ "NNP" ], "Dissenting": [ "JJ" ], "janitor": [ "NN" ], "picture-palace": [ "NN" ], "cowed": [ "VBN" ], "obliging": [ "JJ" ], "Elemer": [ "NNP" ], "descends": [ "VBZ" ], "Couturier": [ "NNP" ], "dusty-slippered": [ "JJ" ], "financier": [ "NN" ], "foiled": [ "VBN", "JJ", "VBD" ], "rainwater": [ "NN" ], "preservative": [ "JJ" ], "nott": [ "RB" ], "gunfighter": [ "NN" ], "AUTOMOBILES": [ "NNPS" ], "unsuitable": [ "JJ" ], "cent": [ "NN", "FW" ], "note": [ "NN", "JJ", "VBP", "VB", "NN|VB" ], "unsuitably": [ "RB" ], "Monoclonal": [ "JJ" ], "hedonistic": [ "JJ" ], "butterfly": [ "NN" ], "indebted": [ "JJ" ], "handing": [ "VBG" ], "Drop": [ "VB", "NNP", "VBP", "NN" ], "mid-twentieth-century": [ "JJ" ], "invoked": [ "VBD", "VBN" ], "East-West": [ "NNP", "JJ" ], "remarks": [ "NNS", "VBZ" ], "prodigies": [ "NNS" ], "metaphysicals": [ "NNS" ], "weather-royal": [ "JJ" ], "montage": [ "NN" ], "sale": [ "NN" ], "hugely": [ "RB" ], "market...": [ ":" ], "not.": [ "NN" ], "salt": [ "NN", "JJ" ], "mega-resorts": [ "NNS" ], "twinned": [ "VBN" ], "Broncos": [ "NNP", "NNS" ], "Merola": [ "NNP" ], "propagandist": [ "NN" ], "Mobs": [ "NNS" ], "slot": [ "NN" ], "weapons": [ "NNS" ], "slow": [ "JJ", "VBP", "RB", "VB" ], "slop": [ "NN", "VB" ], "tariff-reduction": [ "NN" ], "sloe": [ "NN" ], "tears": [ "NNS", "VBZ" ], "slog": [ "VB" ], "four-letter": [ "JJ" ], "roustabout": [ "NN" ], "wilfully": [ "RB" ], "suggestions...": [ ":" ], "long-settled": [ "JJ" ], "godlike": [ "JJ" ], "Meadowland": [ "NNP" ], "oil-and-gas": [ "JJ" ], "touch": [ "NN", "RB", "VB", "VBP" ], "Presto": [ "FW" ], "tree-clumps": [ "NNS" ], "Roling": [ "NNP" ], "over-stored": [ "JJ" ], "drumlin": [ "NN" ], "Cowessett-East": [ "NNP" ], "Starkov": [ "NNP" ], "iron-poor": [ "JJ" ], "Admiralty": [ "NN" ], "infringes": [ "VBZ" ], "Conneaut": [ "NNP" ], "time-span": [ "NN" ], "artist": [ "NN" ], "borrow": [ "VB", "VBP" ], "absurdly": [ "RB" ], "non-sales": [ "JJ" ], "Tripartite": [ "NNP" ], "overreaction": [ "NN" ], "Manchester": [ "NNP" ], "wheare": [ "WRB" ], "Frankenberry": [ "NNP" ], "marred": [ "VBN", "JJ", "VBD" ], "Granath": [ "NNP" ], "Edmondson": [ "NNP" ], "Juniors": [ "NNS", "JJ", "NNPS" ], "subatomic": [ "JJ" ], "gangster": [ "NN" ], "Communist-type": [ "JJ" ], "Armory": [ "NNP" ], "no-one": [ "JJ" ], "purest": [ "JJS" ], "dysentery": [ "NN" ], "windshield": [ "NN" ], "Hempstead": [ "NNP" ], "diddle": [ "UH" ], "temporized": [ "VBD" ], "mops": [ "NNS" ], "demagnification": [ "NN" ], "Baja": [ "NNP", "NN" ], "Allergan": [ "NNP" ], "scooting": [ "VBG" ], "jobs": [ "NNS" ], "ANNUITIES": [ "NNS" ], "Jervis": [ "NNP" ], "suppresses": [ "VBZ" ], "gratefully": [ "RB" ], "co-opting": [ "NN" ], "spare": [ "JJ", "VB", "VBP" ], "spark": [ "VB", "NN", "VBP" ], "suppressed": [ "VBN", "JJ", "VBD" ], "quack": [ "NN", "UH" ], "deliciously": [ "RB" ], "Czechoslovak": [ "JJ" ], "residence": [ "NN" ], "jokers": [ "NNS" ], "Phipps": [ "NNP" ], "inclusions": [ "NNS" ], "residency": [ "NN" ], "now-defunct": [ "JJ", "NNP" ], "conductorship": [ "NN" ], "flextime": [ "NN" ], "work-rule": [ "JJ", "NN" ], "Mortgage": [ "NNP", "NN" ], "Delaware": [ "NNP" ], "Comparing": [ "VBG" ], "amphobiles": [ "NNS" ], "boar": [ "NNS" ], "aerial": [ "JJ" ], "extinct": [ "JJ" ], "crew": [ "NN" ], "fungus-produced": [ "JJ" ], "boat": [ "NN" ], "fitful": [ "JJ" ], "sprays": [ "NNS" ], "submerging": [ "VBG" ], "stretch": [ "NN", "VBP", "JJ", "VB" ], "mounting": [ "VBG", "JJ", "NN" ], "locally": [ "RB" ], "mutinous": [ "JJ" ], "Sardinia": [ "NNP" ], "twin-line": [ "JJ" ], "theaf": [ "NN" ], "diatribe": [ "NN" ], "Replied": [ "VBD" ], "Pacific-listed": [ "JJ" ], "Hebert": [ "NNP" ], "Varnell": [ "NNP" ], "Whenever": [ "WRB" ], "seniority-list": [ "NN" ], "chlorofluorocarbon": [ "NN" ], "non-exclusive": [ "JJ" ], "Play": [ "NNP", "NN", "VB" ], "chatty": [ "JJ" ], "unclouded": [ "JJ" ], "jute": [ "NN" ], "eschews": [ "VBZ" ], "pacers": [ "NNS" ], "dressy": [ "JJ" ], "re-energized": [ "JJ" ], "relic": [ "NN" ], "constituency": [ "NN" ], "region": [ "NN" ], "moorings": [ "NNS" ], "Londonderry": [ "NNP" ], "prevalence": [ "NN" ], "warehouse-club": [ "NN" ], "less-creditworthy": [ "JJ" ], "speedway": [ "NN" ], "NT&SA": [ "NNP" ], "Prettier": [ "JJR" ], "Airy": [ "JJ" ], "minimum-fee": [ "JJ" ], "undiversifiable": [ "JJ" ], "compatriots": [ "NNS" ], "DuVol": [ "NNP" ], "Towards": [ "NNP", "IN" ], "propagation": [ "NN" ], "threatens": [ "VBZ" ], "scientifically": [ "RB" ], "surveillance": [ "NN" ], "Freddie": [ "NNP" ], "Borglum": [ "NNP" ], "underestimate": [ "VB" ], "ARISE": [ "VBP" ], "pre-introduction": [ "JJ" ], "glutting": [ "VBG" ], "Readiness": [ "NN" ], "reverts": [ "VBZ" ], "snarls": [ "NNS" ], "births": [ "NNS" ], "domineering": [ "VBG", "JJ" ], "Bathyrans": [ "NNPS" ], "near-unmatched": [ "JJ" ], "culled": [ "VBN" ], "tumor-necrosis": [ "JJ" ], "Jiaqi": [ "NNP" ], "blind-pool": [ "JJ" ], "hubba": [ "UH" ], "Colorful": [ "JJ" ], "driftwood": [ "NN" ], "Holies": [ "NNPS" ], "Displacement": [ "NN" ], "Holien": [ "NNP" ], "Sonet-based": [ "JJ" ], "color-field": [ "JJ" ], "PWA": [ "NNP" ], "wraith-like": [ "JJ" ], "Lucerne": [ "NNP" ], "hubby": [ "NN" ], "exacerbations": [ "NNS" ], "distills": [ "VBZ" ], "sprayed": [ "VBN", "VBD" ], "white-shoe": [ "JJ" ], "slime": [ "NN" ], "Sokolev": [ "NNP" ], "attorney-consultant": [ "NN" ], "amalgamate": [ "VB" ], "slimy": [ "JJ" ], "propfan": [ "NN", "JJ", "VB" ], "three-hour-show": [ "NN" ], "pols": [ "NNS" ], "omissions": [ "NNS" ], "inaudible": [ "JJ" ], "TEXAS": [ "NNP" ], "Louchheim": [ "NNP" ], "briefings": [ "NNS" ], "unprovocative": [ "JJ" ], "color": [ "NN", "JJ", "VB", "VBP" ], "Morfey": [ "NNP" ], "antagonisms": [ "NNS" ], "Takamori": [ "NNP" ], "Artemisia": [ "NNP" ], "Nicastro": [ "NNP" ], "TBWA": [ "NNP" ], "Secondly": [ "RB" ], "Tripe": [ "NNP" ], "Adjournment": [ "NN" ], "Nile": [ "NNP", "NN" ], "Perfume": [ "NN" ], "Richert": [ "NNP" ], "transcended": [ "VBD" ], "comrade": [ "NN" ], "boycotted": [ "VBN" ], "Sherwood": [ "NNP" ], "cash-draw": [ "JJ" ], "partaking": [ "VBG" ], "Beirut-on-Hudson": [ "NNP" ], "expunge": [ "VB" ], "nutrients": [ "NNS" ], "Dubois": [ "NNP" ], "destigmatization": [ "NN" ], "Augustus": [ "NNP" ], "discarded": [ "VBN", "VBD" ], "tsunami": [ "NN", "NNS" ], "Beall": [ "NNP" ], "Fourtou": [ "NNP" ], "pundits": [ "NNS" ], "glycol": [ "NN" ], "HOMESTEAD": [ "NNP" ], "Beale": [ "NNP" ], "Soukhouma": [ "NNP" ], "auditorium": [ "NN" ], "bankruptcies": [ "NNS" ], "most-used": [ "JJ" ], "curator": [ "NN" ], "Stockgrowers": [ "NNPS" ], "Delaney": [ "NNP" ], "Rubinfien": [ "NNP" ], "sweetest-tasting": [ "JJ" ], "conscionable": [ "JJ" ], "JACKPOT": [ "NNP" ], "Ruidoso": [ "NNP" ], "noon": [ "NN" ], "attacks.": [ "NN" ], "searing": [ "VBG", "JJ" ], "ventilation": [ "NN" ], "abusable": [ "JJ" ], "Orthopedic": [ "NNP" ], "exit": [ "NN", "VB" ], "forecasted": [ "VBN" ], "dissociates": [ "VBZ" ], "hand-written": [ "JJ" ], "DeTomaso": [ "NNP" ], "Daimler": [ "NNP" ], "ex-prison": [ "NN" ], "scientific": [ "JJ" ], "power": [ "NN", "VBP", "VB" ], "intimate": [ "JJ", "NN", "VB" ], "Carrot": [ "NNP" ], "Meisenheimer": [ "NNP" ], "solar-wind": [ "NN" ], "Glenda": [ "NNP" ], "travelin": [ "VBG" ], "product-development": [ "NN" ], "treatable": [ "JJ" ], "favorite": [ "JJ", "NN" ], "Kysor": [ "NNP" ], "slender": [ "JJ", "JJR" ], "Riunite": [ "NNP" ], "J.N.": [ "NNP" ], "stipulations": [ "NNS" ], "lower-status": [ "JJ", "NN" ], "independent-minded": [ "JJ" ], "Losers": [ "NNS" ], "localism": [ "NN" ], "lofty": [ "JJ" ], "irreversibly": [ "RB" ], "crewcut": [ "NN" ], "Beaten": [ "VBN" ], "T-bond": [ "JJ", "NN" ], "policy-coordination": [ "NN" ], "accumulates": [ "VBZ" ], "Branman": [ "NNP" ], "Acting": [ "NNP", "NN", "VBG" ], "motor-home": [ "NN" ], "certifying": [ "VBG" ], "bargain-basement": [ "JJ", "NN" ], "accumulated": [ "VBN", "JJ", "VBD" ], "coupe": [ "NN" ], "Guadeloupe": [ "NNP" ], "simulcasting": [ "VBG" ], "Wilcock": [ "NNP" ], "Queenan": [ "NNP" ], "draft-avoidance": [ "NN" ], "Benched": [ "NNP", "VB" ], "stylishly": [ "RB" ], "bulk-buying": [ "JJ" ], "semi-ambiguous": [ "JJ" ], "Feinstein": [ "NNP" ], "percussive": [ "JJ" ], "convertibility": [ "NN" ], "mollify": [ "VB" ], "viscous": [ "JJ" ], "innovated": [ "VBD" ], "BUILDING": [ "NNP" ], "complete": [ "JJ", "VB", "VBP" ], "fifth-century": [ "JJ" ], "Bum": [ "NNP" ], "self-images": [ "NN" ], "Steuben": [ "NNP" ], "made-for-television": [ "JJ" ], "prostitution..": [ "NN" ], "mice": [ "NNS" ], "aide": [ "NN" ], "cords": [ "NNS" ], "mica": [ "NN" ], "superego": [ "NN" ], "darken": [ "VBP" ], "pajama-clad": [ "JJ" ], "microphoning": [ "VBG" ], "couching": [ "VBG" ], "Bug": [ "NN", "NNP" ], "fruitfulness": [ "NN" ], "stonily": [ "RB" ], "self-perceived": [ "JJ" ], "darker": [ "JJR" ], "Anglia": [ "NNP" ], "brotherly": [ "JJ" ], "exhausted": [ "VBN", "VBD" ], "savers\\/investors": [ "NNS" ], "accents": [ "NNS", "VBZ" ], "wartime": [ "NN" ], "Showmanship": [ "NN" ], "washings": [ "NNS" ], "hoodlum": [ "NN" ], "Criterion": [ "NNP", "NN" ], "McRaney": [ "NNP" ], "clauses": [ "NNS" ], "Barbary": [ "JJ", "NNP" ], "subjugating": [ "VBG" ], "exile\\/trade": [ "NN" ], "nuclear-tipped": [ "JJ" ], "Acorns": [ "NNS" ], "hollowness": [ "NN" ], "abolish": [ "VB" ], "Stensrud": [ "NNP" ], "Preussag": [ "NNP" ], "pre-kindergarten": [ "NN" ], "predestined": [ "VBN" ], "grammarians": [ "NNS" ], "pollutants": [ "NNS" ], "Bullshit": [ "UH" ], "standardize": [ "VB" ], "forgettable": [ "JJ" ], "non-Japanese": [ "JJ" ], "bombed": [ "VBN", "VBD" ], "vigilantism": [ "NN" ], "Visscher": [ "NNP" ], "Practical": [ "JJ", "NNP" ], "Cardiff": [ "NNP" ], "Glove": [ "NNP" ], "Nonspecific": [ "JJ" ], "Pease": [ "NNP" ], "Greentree": [ "NNP" ], "principally": [ "RB" ], "disdained": [ "VBN" ], "BLAST": [ "NN" ], "Fordham": [ "NNP" ], "Sparrow-size": [ "NNP" ], "mocking": [ "VBG", "JJ" ], "groom": [ "NN" ], "Ascent": [ "NNP" ], "wag": [ "NN", "VBP" ], "counterweight": [ "NN" ], "fraudulent": [ "JJ" ], "immunoglobulin": [ "NN" ], "Rychard": [ "NNP" ], "Artur": [ "NNP" ], "oppressors": [ "NNS" ], "splicing": [ "VBG" ], "influenza": [ "NN" ], "consider": [ "VB", "VBP" ], "Knowledgeware": [ "NNP" ], "Physiological": [ "NNP", "JJ" ], "worker-years": [ "NNS" ], "weariness": [ "NN" ], "Usinor-Sacilor": [ "NNP" ], "Boutflower": [ "NNP" ], "tours": [ "NNS", "VBZ" ], "aflatoxin-producing": [ "JJ" ], "Syllabification": [ "NN" ], "GROWS": [ "VBZ" ], "Y-cell": [ "NN", "NNP" ], "Earthquake-related": [ "JJ" ], "Rooker": [ "NNP" ], "fjords": [ "NNS" ], "look-see": [ "NN" ], "Barbara": [ "NNP" ], "Evil": [ "NNP", "JJ", "NN" ], "state-plan": [ "JJ" ], "Kingsley": [ "NNP" ], "smile": [ "NN", "VB", "VBP" ], "wad": [ "NN", "VB" ], "Colby": [ "NNP" ], "detestation": [ "NN" ], "Ollie": [ "NNP" ], "BREAKERS": [ "NNP" ], "Shaffner": [ "NN" ], "encroaching": [ "VBG" ], "blebs": [ "NNS" ], "strand": [ "NN" ], "anxiety-released": [ "NN" ], "Fassbinder": [ "NNP" ], "misinformation": [ "NN" ], "laying": [ "VBG", "NN", "," ], "weatherman": [ "NN" ], "Lycra": [ "NNP" ], "Rodding": [ "NN" ], "swirling": [ "VBG" ], "wind-and-water": [ "JJ" ], "CONSUMER": [ "NN" ], "blue-blooded": [ "JJ" ], "Gasich": [ "NNP" ], "teacher-employee": [ "NN" ], "tricolor": [ "JJ" ], "Nolen": [ "NNP" ], "destitute": [ "JJ" ], "cabin-crew": [ "NNS" ], "near-blind": [ "JJ" ], "antibody-producing": [ "JJ" ], "million-square-foot": [ "JJ" ], "Bourn": [ "NNP" ], "decimeter-wave-length": [ "NN" ], "dispassionately": [ "RB" ], "disruptions": [ "NNS" ], "resume": [ "VB", "NN", "VBP" ], "Capo": [ "NNP" ], "succinct": [ "JJ" ], "consumer-driven": [ "JJ" ], "Cape": [ "NNP", "NN" ], "high-purity": [ "JJ", "NN" ], "Jiang": [ "NNP" ], "trampling": [ "VBG", "NN" ], "N.A.": [ "NNP", "NN" ], "Newhouse": [ "NNP" ], "concluding": [ "VBG", "JJ" ], "outdone": [ "VBN" ], "reshaped": [ "VBN", "VBD" ], "stirke": [ "NN" ], "showrooms": [ "NNS" ], "Korbin": [ "NNP" ], "roadways": [ "NNS" ], "reshapes": [ "VBZ" ], "infrequently": [ "RB" ], "healthier": [ "JJR", "RBR" ], "acquittal": [ "NN" ], "social": [ "JJ", "NN" ], "sweetness": [ "NN" ], "underrate": [ "VB" ], "Circuit": [ "NNP", "NN" ], "Marne": [ "NNP" ], "mortgaged-backed": [ "JJ" ], "apprised": [ "VBN" ], "regiment": [ "NN", "VB" ], "whimsically": [ "RB" ], "cargo": [ "NN" ], "compensations": [ "NNS" ], "decrement": [ "NN" ], "old-model": [ "JJ" ], "debunking": [ "NN" ], "Nutritionists": [ "NNS" ], "Md.": [ "NNP" ], "fetuses": [ "NNS" ], "catch-all": [ "JJ" ], "twister-coners": [ "NNS" ], "objectives": [ "NNS" ], "Romano": [ "NNP" ], "poodle": [ "NN" ], "maltreat": [ "VBP" ], "Romans": [ "NNPS", "NNP", "NNS" ], "polecat": [ "NN" ], "Stehlin": [ "NNP" ], "Newport-based": [ "JJ" ], "gas-company": [ "NN" ], "waterways": [ "NNS" ], "emission": [ "NN" ], "Janssen": [ "NNP" ], "Quebeckers": [ "NNPS" ], "S-s-sahjunt": [ "NN" ], "citizenry": [ "NN" ], "Leason": [ "NNP" ], "Yeung": [ "NNP" ], "normative": [ "JJ" ], "Then-Navy": [ "NNP" ], "Tiffany": [ "NNP" ], "classificatory": [ "JJ" ], "Perelman": [ "NNP" ], "abundant": [ "JJ" ], "Manly": [ "NNP" ], "toughened": [ "VBD", "VBN" ], "punched": [ "VBD", "VBN" ], "Bayreuth": [ "NNP" ], "safe-deposit": [ "JJ" ], "concessionaire": [ "NN" ], "libertines": [ "NNS" ], "nationhood": [ "NN" ], "gristmill": [ "NN" ], "CARIPLO": [ "NNP" ], "tea-leaf": [ "NN" ], "salty": [ "JJ" ], "profit-maximizing": [ "JJ" ], "Saville": [ "NNP" ], "dress": [ "NN", "VBP", "VB" ], "Castro-led": [ "JJ" ], "salts": [ "NNS" ], "condemn": [ "VB", "VBP" ], "Pagurian": [ "NNP" ], "Mountaineer": [ "NNP" ], "trebled": [ "VBN", "VBD" ], "emancipated": [ "VBN", "JJ" ], "fruition": [ "NN" ], "ungoverned": [ "JJ" ], "functioning": [ "VBG", "NN" ], "metalworkers": [ "NNS" ], "BanPonce": [ "NNP" ], "tab-lifter": [ "NN" ], "appanage": [ "NN" ], "Instantaneously": [ "RB" ], "asset-valuation": [ "NN" ], "appealed": [ "VBD", "VBN" ], "flutter": [ "NN" ], "snotty": [ "JJ" ], "Taoist": [ "NNP" ], "Market-If-Touched": [ "NNP" ], "childbearing": [ "VBG" ], "larceny": [ "NN" ], "manipulated": [ "VBN", "VBD" ], "earnings-growth": [ "NN", "JJ" ], "impermissible": [ "JJ" ], "penury": [ "NN" ], "Hathcock": [ "NNP" ], "re-enforces": [ "VBZ" ], "Lyman": [ "NNP" ], "pear-shaped": [ "JJ" ], "incessantly": [ "RB" ], "yellow-green": [ "JJ" ], "Bluebonnet": [ "NNP" ], "guaranteed-neutral": [ "JJ" ], "Serv-Air": [ "NNP" ], "bulldozers": [ "NNS" ], "Thorndike": [ "NNP" ], "Zweig": [ "NNP" ], "ruble\\/gold": [ "JJ" ], "Copperweld": [ "NNP", "NN" ], "behahn": [ "RB" ], "Fixed": [ "VBN", "VBD", "JJ" ], "rapidly": [ "RB" ], "laddered": [ "JJ" ], "nystatin": [ "NN" ], "face-amount": [ "JJ", "NN" ], "ruining": [ "VBG" ], "Sischy": [ "NNP" ], "snobs": [ "NNS" ], "tyrants": [ "NNS" ], "secondarily": [ "RB" ], "O.B.": [ "NNP" ], "Nozze": [ "FW" ], "snowball": [ "NN", "VB" ], "renegotiations": [ "NNS" ], "outlawing": [ "VBG" ], "Dwellers": [ "NNS" ], "reticent": [ "JJ" ], "reassured": [ "VBN", "VBD" ], "defense-appropriations": [ "JJ" ], "shifty": [ "JJ" ], "Loman": [ "NNP" ], "war": [ "NN", "NNP", "VB" ], "double-A-1": [ "JJ", "NN" ], "coping": [ "VBG", "NN" ], "Universal-Morning": [ "NNP" ], "labeling": [ "VBG", "NN" ], "Ricca": [ "NNP" ], "Connections": [ "NNS", "NNP" ], "Bolshevistic": [ "JJ" ], "Lomax": [ "NNP" ], "floors": [ "NNS" ], "cratered": [ "VBN" ], "Seltzer": [ "NNP" ], "Lomas": [ "NNP" ], "Quinlan": [ "NNP" ], "marry": [ "VB", "VBP" ], "execs": [ "NNS" ], "airconditioner": [ "JJR" ], "incinerators": [ "NNS" ], "prophesying": [ "VBG" ], "Oldham": [ "NNP" ], "grandmothers": [ "NNS" ], "gene-therapy": [ "NN" ], "Inmate": [ "NNP" ], "hay-wagon": [ "NN" ], "newspaper-delivery": [ "NN" ], "blues": [ "NNS", "JJ" ], "office-systems": [ "NNS" ], "scribe": [ "NN" ], "terrify": [ "VB" ], "really": [ "RB" ], "Morale": [ "NN" ], "tailback": [ "NN" ], "mark-up": [ "NN" ], "midcontinent": [ "JJ" ], "Dion": [ "NNP" ], "once-high-flying": [ "JJ" ], "Contrast": [ "NN" ], "norske": [ "NNP" ], "Flaming": [ "NNP" ], "NewsEdge": [ "NNP" ], "Ostro": [ "NNP" ], "Toyota": [ "NNP" ], "antisera": [ "NN" ], "blue-draped": [ "JJ" ], "cockpit": [ "NN" ], "pickaxe": [ "NN" ], "shop-till-you-drop": [ "JJ" ], "Peacekeeper": [ "NNP" ], "P.J.": [ "NNP" ], "figures-order": [ "NNS|NN" ], "looseness": [ "NN" ], "reared": [ "VBD", "VBN" ], "retained": [ "VBN", "JJ", "VBD" ], "TBS": [ "NNP" ], "misusing": [ "VBG" ], "give-and-take": [ "NN" ], "afflictions": [ "NNS" ], "retainer": [ "NN" ], "Lausanne": [ "NNP" ], "first-grader": [ "NN" ], "unmanned": [ "JJ" ], "company-sponsored": [ "JJ" ], "clump": [ "NN" ], "exhibited": [ "VBN", "VBD" ], "two-letter": [ "JJ" ], "purhasing": [ "NN" ], "Alwin": [ "NNP" ], "A\\/S": [ "NNP" ], "Combs": [ "NNP" ], "Garrick": [ "NNP" ], "sit-down": [ "JJ" ], "adduce": [ "VB" ], "stumpage": [ "NN" ], "Combo": [ "NNP" ], "Topper": [ "NNP" ], "ironing": [ "VBG", "NN" ], "Combe": [ "NNP" ], "Iglehart": [ "NNP" ], "Ghettos": [ "NNPS" ], "franked": [ "JJ", "VBN" ], "exertions": [ "NNS" ], "Transportation": [ "NNP", "NN" ], "probity": [ "NN" ], "lengthiest": [ "JJS" ], "Cosma": [ "NNP" ], "Enterprises": [ "NNPS", "NNP", "NNS" ], "flings": [ "NNS" ], "franker": [ "JJR" ], "Nonfat": [ "NNP" ], "degassed": [ "VBN" ], "Tracor": [ "NNP" ], "Underwriter": [ "NNP" ], "depressingly": [ "RB" ], "philantropists": [ "NNS" ], "two-bedroom": [ "JJ" ], "Catherwood": [ "NNP" ], "Mesa": [ "NNP" ], "Reinforced": [ "NNP" ], "B&B": [ "NNP" ], "Clausen": [ "NNP" ], "guanidine": [ "NN" ], "Kramer": [ "NNP" ], "B&H": [ "NNP" ], "less-indomitable": [ "JJ" ], "defends": [ "VBZ" ], "Vivaldi-at-brunch": [ "JJ" ], "B&W": [ "NNP" ], "Freind": [ "NNP" ], "Nowadays": [ "RB" ], "stickiness": [ "NN" ], "Rican-American": [ "NNP" ], "Connell": [ "NNP" ], "Yigal": [ "NNP" ], "hams": [ "NNS" ], "precipitating": [ "VBG" ], "gasket": [ "NN" ], "pranksters": [ "NNS" ], "Sesit": [ "NNP" ], "Rockwell": [ "NNP", "NN" ], "pajamas": [ "NNS" ], "carbon-impregnated": [ "JJ" ], "craft-industrial": [ "JJ" ], "directives": [ "NNS" ], "mill-pond": [ "NN" ], "Leopold": [ "NNP" ], "Erection": [ "NNP" ], "taxidermist": [ "NN" ], "flatnesses": [ "NNS" ], "probability": [ "NN" ], "firsthand": [ "RB", "JJ", "NN" ], "swiftly": [ "RB" ], "Wards": [ "NNP", "NNS" ], "anti-takeover": [ "JJ", "NN" ], "offensively": [ "RB" ], "Zaishuo": [ "NNP" ], "salinity": [ "NN" ], "Lumped": [ "VBN" ], "Munroe": [ "NNP" ], "semiconductor-manufacturing": [ "NN" ], "donkeys": [ "NNS" ], "Securities-trading": [ "JJ" ], "paper-shuffling": [ "NN" ], "Amerace": [ "NNP" ], "have-not": [ "JJ" ], "clog": [ "VB" ], "frocks": [ "NNS" ], "Post-tragedy": [ "RB" ], "friable": [ "JJ" ], "Ahmanson": [ "NNP" ], "alcohol-powered": [ "JJ" ], "Noonday": [ "NNP" ], "Kingdom": [ "NNP", "NN" ], "spineless": [ "JJ" ], "Muslim": [ "NNP" ], "misplacements": [ "NNS" ], "ELECTED": [ "VBD" ], "younguh": [ "JJR" ], "Revivals": [ "NNS" ], "PW-4000": [ "NN" ], "financial-services": [ "NNS", "JJ", "NN" ], "occuring": [ "VBG" ], "beams": [ "NNS", "VBZ" ], "ever-worsening": [ "JJ" ], "adheres": [ "VBZ" ], "anti-Somoza": [ "JJ" ], "devising": [ "VBG" ], "adhered": [ "VBN", "VBD" ], "steel-casting": [ "JJ" ], "untreated": [ "JJ" ], "Shietz": [ "NNP" ], "Richmond-Petersburg": [ "NNP" ], "railbiker": [ "NN" ], "riven": [ "VBN" ], "tumult": [ "NN" ], "tabby": [ "JJ", "NN" ], "Athlone": [ "NNP" ], "proclaim": [ "VB", "VBP" ], "IBEW": [ "NNP" ], "river": [ "NN" ], "mineralogical": [ "JJ" ], "Grattan": [ "NNP" ], "creator": [ "NN" ], "nibble": [ "VB", "NN" ], "picketers": [ "NNS" ], "frontrunner": [ "NN" ], "Correspondents": [ "NNPS" ], "wielder": [ "NN" ], "snow-white": [ "JJ" ], "avowedly": [ "RB" ], "sacred": [ "JJ" ], "puncturing": [ "VBG" ], "shorter-tenure": [ "JJ" ], "Saskatchewan": [ "NNP" ], "currently": [ "RB", "JJ" ], "triple-B-minus": [ "NNP", "JJ" ], "Sons": [ "NNP", "NNS", "NNPS" ], "futile": [ "JJ" ], "Sony": [ "NNP" ], "rite": [ "NN" ], "all-too-sincere": [ "JJ" ], "open-access": [ "NN" ], "buoys": [ "NNS", "VBZ" ], "Bridgeport": [ "NNP" ], "giddiness": [ "NN" ], "self-centered": [ "JJ" ], "OUTLOOK": [ "NNP" ], "Prime-1": [ "JJ", "NN" ], "Prime-3": [ "JJ" ], "Prime-2": [ "JJ" ], "flatware": [ "NN" ], "mitigating": [ "VBG", "JJ" ], "Lipner": [ "NNP" ], "Honor": [ "NNP", "NN" ], "Sikorski": [ "NNP" ], "rehashing": [ "VBG" ], "prospects": [ "NNS" ], "dauntless": [ "JJ" ], "influential": [ "JJ" ], "Worldscope": [ "NNP" ], "offending": [ "VBG" ], "BREADBOX": [ "NN" ], "Donaghy": [ "NNP" ], "unMcGuanean": [ "JJ" ], "Calaveras": [ "NNS" ], "approve": [ "VB", "VBP" ], "Legislative": [ "NNP" ], "soundings": [ "NNS" ], "gadfly": [ "NN" ], "except": [ "IN", "VB" ], "Greatness": [ "NNP" ], "churns": [ "VBZ" ], "joint-production": [ "JJ" ], "backsides": [ "NNS" ], "trade-distorting": [ "JJ" ], "devil": [ "NN" ], "publishing": [ "NN", "JJ", "VBG" ], "Nestled": [ "VBN" ], "MARCOS": [ "NNP" ], "lizards": [ "NNS" ], "Tickell": [ "NNP" ], "ml.": [ "NN" ], "convicted": [ "VBN", "VBD" ], "calculi": [ "NNS" ], "Scout": [ "NNP" ], "incentive-backed": [ "JJ" ], "Queensland": [ "NNP" ], "Infotechnology": [ "NNP" ], "sweetheart": [ "NN", "JJ" ], "silenced": [ "VBN", "VBD" ], "Seaga": [ "NNP" ], "threes-fulfilled": [ "NN" ], "bitchy": [ "JJ" ], "silences": [ "NNS" ], "sleeves": [ "NNS" ], "Saudi": [ "NNP", "JJ" ], "long-depressed": [ "JJ" ], "handling": [ "NN", "VBG" ], "reinstalled": [ "VBN" ], "nonmaterial": [ "JJ" ], "micrographics": [ "NNS" ], "Kassar": [ "NNP" ], "single-sponsor": [ "JJ" ], "CAREER": [ "NNP" ], "Yair": [ "NNP" ], "Turnkey": [ "NNP" ], "Kassal": [ "NNP" ], "kissing": [ "VBG" ], "heart-pounding": [ "JJ" ], "hoping": [ "VBG" ], "elegance": [ "NN" ], "folksy": [ "JJ" ], "Detractors": [ "NNS" ], "Galapagos": [ "NNP" ], "bank-baiting": [ "JJ" ], "ducks": [ "NNS", "VBZ" ], "all-automatic": [ "JJ" ], "centennial": [ "NN", "JJ" ], "triple": [ "JJ", "NN", "RB", "VB" ], "beautifully": [ "RB" ], "carry-forwards": [ "NNS" ], "Doerig": [ "NNP" ], "shorted": [ "VBN", "VBD" ], "fibers": [ "NNS" ], "riverboat": [ "NN" ], "shorten": [ "VB", "VBP" ], "tells": [ "VBZ" ], "shorter": [ "JJR" ], "Ichiro": [ "NNP" ], "x-Includes": [ "VBZ" ], "virtually": [ "RB", "IN", "JJ" ], "INTEREST": [ "NN" ], "wasteland": [ "NN" ], "Fiats": [ "NNPS" ], "Quint": [ "NNP" ], "foments": [ "VBZ" ], "Gehl": [ "NNP" ], "commune": [ "NN", "FW", "VB" ], "servitors": [ "NNS" ], "snail": [ "NN" ], "gringos": [ "NNS" ], "Skeletal": [ "JJ" ], "unsatisfied": [ "JJ" ], "ill-defined": [ "JJ" ], "deformity": [ "NN" ], "nondeductible": [ "JJ" ], "jealously": [ "RB" ], "marine-products": [ "NNS" ], "Rainier": [ "NNP" ], "imcomplete": [ "JJ" ], "long-suspected": [ "JJ" ], "stack": [ "NN", "VB" ], "crosscurrents": [ "NNS" ], "institution-wide": [ "JJ" ], "oil-drilling": [ "NN" ], "rosters": [ "NNS" ], "immediate-response": [ "JJ" ], "Lanston": [ "NNP" ], "Ill-considered": [ "JJ" ], "Lottery": [ "NNP" ], "Landon": [ "NNP" ], "commercial-satellite-launching": [ "JJ" ], "schedules": [ "NNS" ], "aroma": [ "NN" ], "Survivors": [ "NNS" ], "arrests": [ "NNS" ], "Aeronauticas": [ "NNP" ], "LaWarre": [ "NNP" ], "Landor": [ "NNP" ], "wits": [ "NNS" ], "assaying": [ "VBG" ], "overbroad": [ "JJ" ], "brutalism": [ "NN" ], "surprises": [ "NNS", "VBZ" ], "MD-90": [ "NN" ], "bake-oven": [ "NN" ], "night-time": [ "JJ" ], "signals": [ "NNS", "VBZ" ], "Sulcer": [ "NNP" ], "grapefruit": [ "NN", "NNS" ], "Talk": [ "NN", "NNP", "VB" ], "Rodeph": [ "NNP" ], "input": [ "NN" ], "submissions": [ "NNS" ], "surprised": [ "VBN", "VBD", "JJ" ], "add-on": [ "JJ", "NN" ], "Daniels": [ "NNP" ], "BRACED": [ "NNP" ], "Ohara": [ "NNP" ], "Dow-Jones": [ "NNP" ], "depreciable": [ "JJ" ], "hurricane-hit": [ "JJ" ], "aerospace": [ "NN", "JJ" ], "falcon": [ "NN" ], "indelibly": [ "RB" ], "Maytag": [ "NNP" ], "projects": [ "NNS", "VBZ" ], "flannel": [ "NN" ], "Epplers": [ "NNP" ], "worsening": [ "VBG", "JJ", "NN" ], "Terramycin": [ "NN" ], "stylist": [ "NN" ], "forcibly": [ "RB" ], "Bedridden": [ "JJ" ], "consensus": [ "NN" ], "communications": [ "NNS", "NN" ], "Leben": [ "NNP" ], "confinements": [ "NNS" ], "Professor": [ "NNP" ], "stylish": [ "JJ" ], "cronies": [ "NNS" ], "Mondonville": [ "NNP" ], "buddies": [ "NNS" ], "Andi": [ "NNP" ], "Alterman": [ "NNP" ], "sponsorships": [ "NNS" ], "federal-question": [ "JJ" ], "FEAR": [ "VBP", "NN" ], "Insam": [ "NNP" ], "horsedom": [ "NN" ], "full-dress": [ "JJ" ], "Daniele": [ "NNP" ], "linkages": [ "NNS" ], "Meech": [ "NNP" ], "Foreigners": [ "NNS" ], "prior-day": [ "JJ" ], "temple": [ "NN" ], "Bohmerwald": [ "FW" ], "waiving": [ "VBG" ], "Transwestern": [ "NNP" ], "senior-graduate": [ "NN" ], "major": [ "JJ", "NN", "VBP" ], "Pollution": [ "NNP" ], "Michigan-based": [ "JJ" ], "exaggerated": [ "VBN", "JJ", "VBD" ], "captious": [ "JJ" ], "coureurs": [ "FW" ], "Radioing": [ "VBG" ], "helpfulness": [ "NN" ], "self-deprecation": [ "NN" ], "Katie": [ "NNP" ], "Kans.": [ "NNP" ], "repair": [ "NN", "VB", "VBP" ], "garbage": [ "NN" ], "Carthage": [ "FW" ], "recreate": [ "VB", "VBP" ], "Carthago": [ "FW" ], "locus": [ "NN" ], "collapsible": [ "JJ" ], "Gian": [ "NNP" ], "careerists": [ "NNS" ], "producer-hubby": [ "NN" ], "Findlay": [ "NNP" ], "due-process": [ "NN" ], "sneaky": [ "JJ" ], "spending": [ "NN", "VBG|NN", "JJ", "NN|VBG", "VBG" ], "poison-pill": [ "JJ", "NN" ], "sneaks": [ "VBZ" ], "submit": [ "VB", "VBP" ], "custom": [ "NN", "JJ", "RB" ], "Foamy": [ "NNP" ], "bridesmaids": [ "NNS" ], "fund-raisers": [ "NNS" ], ":": [ ":" ], "torquers": [ "NNS" ], "blueprint": [ "NN" ], "Regarding": [ "VBG" ], "Strongheart": [ "NNP" ], "atop": [ "IN" ], "brazenness": [ "NN" ], "Kanegafuchi": [ "NNP" ], "Yank": [ "NN", "NNP" ], "Moby": [ "NNP" ], "SJO": [ "NNP" ], "atom": [ "NN" ], "coldest": [ "JJS" ], "McLelland": [ "NNP" ], "FreudToy": [ "NNP" ], "inducements": [ "NNS" ], "marginal-rate": [ "NN" ], "bumpers": [ "NNS" ], "Africa": [ "NNP" ], "slander": [ "NN", "VB" ], "beauty-idiom": [ "NN" ], "verification": [ "NN" ], "behavioral": [ "JJ" ], "continuously": [ "RB" ], "cachexia": [ "FW" ], "Excerpts": [ "NNS" ], "operating-cost": [ "JJ" ], "single-country": [ "JJ" ], "heartthrob": [ "NN" ], "discolored": [ "VBN", "JJ" ], "corporate-owned": [ "JJ" ], "cowboys": [ "NNS" ], "eye-catching": [ "JJ" ], "Outside": [ "IN", "JJ", "NN", "RB" ], "Babe": [ "NNP" ], "subtypes": [ "NNS" ], "billion-dollar": [ "JJ" ], "re-established": [ "VBD" ], "Pawcatuck": [ "NNP" ], "sunken": [ "JJ" ], "invalid": [ "JJ", "NN", "NNS" ], "occasional": [ "JJ" ], "wildlife-related": [ "JJ" ], "defense-products": [ "NNS" ], "tenterhooks": [ "NNS" ], "tart": [ "JJ", "NN" ], "elements": [ "NNS" ], "scrub": [ "VB", "JJ", "NN" ], "beginnings": [ "NNS" ], "provided": [ "VBN", "VBD" ], "fixed-dollar": [ "JJ" ], "Derby": [ "NNP" ], "unpunctured": [ "JJ" ], "bedeviled": [ "VBN" ], "articulations": [ "NNS" ], "ago": [ "RB", "IN" ], "furthest": [ "JJS", "RBS" ], "fighter": [ "NN" ], "Nineties": [ "NNPS" ], "reasoned": [ "VBD", "JJ", "VBN" ], "scotch": [ "NN", "VB" ], "age": [ "NN", "VBP" ], "feud": [ "NN" ], "mailgrams": [ "NNS" ], "carrying": [ "VBG", "JJ", "NN" ], "Huwa": [ "NNP" ], "teachings": [ "NNS" ], "oracle": [ "NN" ], "military-style": [ "JJ" ], "Mercury": [ "NNP" ], "partial": [ "JJ", "NN" ], "effigy": [ "NN" ], "Ever-confident": [ "JJ" ], "Betsy": [ "NNP" ], "non-propagandistic": [ "JJ" ], "dainty": [ "JJ" ], "gossip": [ "NN" ], "delectation": [ "NN" ], "churned": [ "VBD" ], "detoured": [ "VBD", "VBN" ], "what-will-T": [ "WP|MD|NP" ], "Alden": [ "NNP" ], "curds": [ "NNS" ], "Yaniv": [ "NNP" ], "oceanfront": [ "JJ", "NN" ], "housebreaking": [ "NN" ], "primly": [ "RB" ], "postings": [ "NNS" ], "probe": [ "NN", "VBP", "VB" ], "end-of-the-year": [ "JJ" ], "torture": [ "NN", "VBP", "VB" ], "Dain": [ "NNP" ], "continues": [ "VBZ" ], "Femina": [ "NNP" ], "abduction": [ "NN" ], "Classics": [ "NNS", "NNPS" ], "continued": [ "VBD", "JJ", "VBN" ], "timely": [ "JJ", "RB" ], "Ambassador": [ "NNP", "NN" ], "Grabowiec": [ "NNP" ], "princess-in-a-carriage": [ "NN" ], "Patriots": [ "NNPS" ], "Hieber": [ "NNP" ], "Lentjes": [ "NNP" ], "visuals": [ "NNS" ], "Onset": [ "NN" ], "Petipa-Minkus": [ "NNP" ], "venerable-but-much-derided": [ "JJ" ], "Nurse": [ "NNP" ], "odd": [ "JJ" ], "ode": [ "NN" ], "Labovitz": [ "NNP" ], "self-certainty": [ "NN" ], "supply\\/demand": [ "NN" ], "Stonehenge": [ "NNP" ], "Bodleian": [ "NNP" ], "toughens": [ "VBZ" ], "life-size": [ "JJ" ], "Mondale": [ "NNP" ], "slabs": [ "NNS" ], "counterbalancing": [ "VBG" ], "lappets": [ "NNS" ], "proliferation": [ "NN" ], "respectively": [ "RB" ], "gathered": [ "VBD", "VBN" ], "delivering": [ "VBG" ], "trade-off": [ "NN" ], "octave": [ "JJ" ], "medallions": [ "NNS" ], "price-driven": [ "JJ" ], "gazes": [ "VBZ" ], "Giorgio": [ "NNP" ], "great": [ "JJ", "RB" ], "coops": [ "NNS" ], "Kantorei": [ "NNP" ], "receive": [ "VB", "VBP" ], "titanic": [ "JJ" ], "Maalox": [ "NNP" ], "overcommitted": [ "VBN" ], "microchemistry": [ "NN" ], "Lips": [ "NNS" ], "defeat": [ "NN", "VB", "VBP" ], "popcorn": [ "NN" ], "opinion": [ "NN" ], "bookkeeping": [ "NN", "VBG" ], "quarter-century-old": [ "JJ" ], "double-B": [ "JJ" ], "grower": [ "NN" ], "Helfman": [ "NNP" ], "slogging": [ "VBG" ], "Excludes": [ "VBZ", "NNS" ], "disobey": [ "VB" ], "terrified": [ "VBN", "JJ", "VBD" ], "Triptych": [ "NNP" ], "extricate": [ "VB" ], "anti-tax-shelter": [ "JJ" ], "Danieli": [ "NNP" ], "foreign-exchange": [ "JJ", "NN" ], "Pragmatism": [ "NN" ], "quick-drying": [ "JJ" ], "super-city": [ "NN" ], "Counters": [ "VBZ" ], "unphysical": [ "JJ" ], "perfusion": [ "NN" ], "rutabaga": [ "NN" ], "certificate": [ "NN" ], "drawing-rooms": [ "NNS" ], "figurative": [ "JJ" ], "open-minded": [ "JJ" ], "duplicate": [ "VB", "JJ" ], "Chetta": [ "NNP" ], "Nomination": [ "NN" ], "turnoff": [ "NN" ], "passageway": [ "NN" ], "Chok": [ "NNP" ], "purposes": [ "NNS" ], "subdued": [ "VBN", "JJ", "VBD" ], "Chou": [ "NNP" ], "Chow": [ "NNP" ], "gladly": [ "RB" ], "delegating": [ "VBG" ], "Lanny": [ "NNP" ], "self-analysis": [ "NN" ], "Mergers": [ "NNPS", "NNP", "NNS" ], "charity": [ "NN" ], "ill-trained": [ "JJ" ], "animals": [ "NNS" ], "Feedback": [ "NN" ], "this": [ "DT", "RB", "PDT" ], "erythroid": [ "NN" ], "two-part": [ "JJ" ], "septuagenarian": [ "NN" ], "run-scoring": [ "JJ" ], "thin": [ "JJ", "RB", "VB" ], "feistier": [ "JJR" ], "overcooled": [ "JJ" ], "Inmac": [ "NNP" ], "reeds": [ "NNS" ], "Hemus": [ "NNP" ], "off-color": [ "JJ" ], "reedy": [ "JJ" ], "Copies": [ "NNS" ], "Inman": [ "NNP" ], "disease-resistant": [ "JJ" ], "intramural": [ "JJ" ], "martyr": [ "NN" ], "hereinafter": [ "RB" ], "interdenominational": [ "JJ" ], "weaken": [ "VB", "VBP" ], "W.B.": [ "NNP" ], "mutually": [ "RB" ], "wares": [ "NNS" ], "courtiers": [ "NNS" ], "Shcherbitsky": [ "NNP" ], "Rim-Fire": [ "JJ" ], "Payment": [ "NN" ], "scammed": [ "VBD" ], "singular": [ "JJ", "NN" ], "successors-in-spirit": [ "NNS" ], "Disease": [ "NNP", "NN" ], "nailing": [ "VBG" ], "Frost-Debby": [ "NNP" ], "preferring": [ "VBG" ], "little-town": [ "JJ" ], "bellboys": [ "NNS" ], "Clarita": [ "NNP" ], "Apple": [ "NNP", "NN" ], "CRAY": [ "NNP" ], "or": [ "CC", "NNP" ], "Denis": [ "NNP" ], "RACIST": [ "JJ" ], "Buffeted": [ "VBN" ], "MLPI": [ "NNP" ], "Leahy": [ "NNP" ], "Catholic": [ "NNP", "JJ", "NN" ], "point-spread": [ "JJ" ], "producer": [ "NN" ], "produces": [ "VBZ" ], "Microbiology": [ "NNP" ], "produced": [ "VBN", "VBD" ], "Pfau": [ "NNP" ], "motorcycle": [ "NN" ], "year-earlier": [ "JJ", "NN" ], "Serene": [ "NNP" ], "Caters": [ "NNP" ], "progeny": [ "NN" ], "Friedman": [ "NNP" ], "Cracking": [ "VBG" ], "communication": [ "NN" ], "silken": [ "JJ" ], "lawlessness": [ "NN" ], "elites": [ "NNS" ], "bolting": [ "VBG" ], "Qizhen": [ "NNP" ], "popularized": [ "VBN", "VBD" ], "gun-slinging": [ "JJ" ], "detergents": [ "NNS" ], "bothering": [ "VBG" ], "Costner": [ "NNP" ], "folk-lore": [ "NN" ], "Cowley": [ "NNP" ], "cage": [ "NN" ], "orphaned": [ "VBN", "JJ" ], "left-right": [ "JJ" ], "Arlen": [ "NNP" ], "hallmarks": [ "NNS" ], "San": [ "NNP", "NNS", "NNPS", "JJ" ], "Sam": [ "NNP" ], "Sal": [ "NNP" ], "undertaking": [ "NN", "VBG" ], "traced": [ "VBN", "VBD" ], "Sag": [ "NNP" ], "accompanies": [ "VBZ" ], "Sad": [ "JJ" ], "Kooning": [ "NNP" ], "Yetnikoff": [ "NNP" ], "vibrations": [ "NNS" ], "Conan": [ "NNP" ], "accompanied": [ "VBN", "VBD" ], "Inspections": [ "NNP" ], "Saw": [ "VBD", "NNP" ], "Arles": [ "NN" ], "Sat": [ "VBD" ], "Platinum": [ "NN", "NNP" ], "overextended": [ "VBN", "VBD", "JJ" ], "exacerbated": [ "VBN", "VBD" ], "Dentsu": [ "NNP" ], "yellowish": [ "JJ" ], "doing": [ "VBG", "VBG|NN" ], "Underage": [ "JJ" ], "upholders": [ "NNS" ], "sidelight": [ "NN" ], "static": [ "JJ", "NN" ], "ionosphere": [ "NN" ], "snippy": [ "JJ" ], "half-jokingly": [ "RB" ], "hitches": [ "NNS", "VBZ" ], "Evergreen": [ "NNP" ], "halter": [ "NN" ], "Lourie": [ "NNP" ], "susceptors": [ "NNS" ], "traversed": [ "VBN", "VBD" ], "Nerio": [ "NNP" ], "O&Y": [ "NNP", "NN" ], "Alpine": [ "NNP", "JJ" ], "Solitudinem": [ "FW" ], "Spikes": [ "NNP" ], "NT&SA-run": [ "JJ" ], "Meek": [ "NNP" ], "J.X.": [ "NNP" ], "tempo": [ "NN" ], "temps": [ "NNS" ], "Miguel": [ "NNP" ], "tied": [ "VBN", "JJ", "VBD" ], "tempt": [ "VB", "VBP" ], "shun": [ "VB", "VBP" ], "Meet": [ "VB", "NNP", "VBP" ], "steering": [ "NN", "JJ", "VBG" ], "assiduously": [ "RB" ], "defining": [ "VBG" ], "fortune-tellers": [ "NN" ], "scary": [ "JJ" ], "Rullo": [ "NNP" ], "compote": [ "NN" ], "scars": [ "NNS" ], "vineyards": [ "NNS" ], "Naderites": [ "NNS" ], "Jump": [ "NN", "VB" ], "congeniality": [ "NN" ], "pigs": [ "NNS", "VBZ" ], "Fredric": [ "NNP" ], "CHEVRON": [ "NNP" ], "Fredrik": [ "NNP" ], "scare": [ "VB", "NN", "VBP" ], "cannonball": [ "NN" ], "equates": [ "VBZ" ], "Nary": [ "NNP" ], "Popish": [ "NNP" ], "Destroyer": [ "NN" ], "lettering": [ "NN" ], "touring": [ "VBG", "JJ", "NN" ], "autographed": [ "VBN", "JJ" ], "autographer": [ "NN" ], "three-way": [ "JJ" ], "Nara": [ "NNP" ], "mid-Victorian": [ "NNP" ], "Suites": [ "NNPS", "NNP" ], "Placentia": [ "NNP" ], "condensate": [ "NN" ], "traveller": [ "NN" ], "triplication": [ "NN" ], "PROCEEDINGS": [ "NNS" ], "imitate": [ "VB", "VBP" ], "detectable": [ "JJ" ], "AMERICANS": [ "NNS" ], "hand-crafted": [ "JJ", "VBN" ], "belligerently": [ "RB" ], "travelled": [ "JJ", "VBD", "VBN" ], "Reproach": [ "VB" ], "Nylev": [ "NNP" ], "Bowes": [ "NNP" ], "Trophy": [ "NNP", "NN" ], "UNR": [ "NNP" ], "suburbanite": [ "JJ", "NN" ], "red-tipped": [ "JJ" ], "rearmed": [ "JJ" ], "hardtack-box": [ "NN" ], "fizzes": [ "VBZ" ], "Gwyn": [ "NNP" ], "beatings": [ "NNS" ], "UNA": [ "NNP" ], "UNC": [ "NNP" ], "tacked-down": [ "JJ" ], "Assad": [ "NNP" ], "Beermann": [ "NNP" ], "Lawton": [ "NNP" ], "Bolton": [ "NNP" ], "haven": [ "NN" ], "inscriptions": [ "NNS" ], "dead-end": [ "JJ" ], "subroutine": [ "NN" ], "Pohs": [ "NNP" ], "Handsomest": [ "JJS" ], "Corne": [ "NNP" ], "Willson": [ "NNP" ], "Disciplined": [ "VBN" ], "dowel": [ "NN" ], "disband": [ "VB" ], "Pohl": [ "NNP" ], "country": [ "NN" ], "terror-filled": [ "JJ" ], "Teter": [ "NNP" ], "belly-flopped": [ "VBD" ], "Aging": [ "NNP", "VBG" ], "viewer": [ "NN" ], "Fosback": [ "NNP" ], "partnership": [ "NN" ], "poisons": [ "NNS", "VBZ" ], "Westminster": [ "NNP" ], "Bachtold": [ "NNP" ], "stable-garage": [ "NN" ], "Polysilicon": [ "NN" ], "Correctly": [ "RB" ], "Elianti": [ "NNP" ], "viewed": [ "VBN", "VBD" ], "Pacholik": [ "NNP" ], "outfought": [ "NN" ], "Petermann": [ "NNP" ], "health-related": [ "JJ" ], "Midlantic": [ "NNP" ], "directivity": [ "NN" ], "BIG": [ "NNP", "JJ" ], "BID": [ "NNP" ], "jurisdictions": [ "NNS" ], "five-coordinate": [ "JJ" ], "Hodges": [ "NNP" ], "Yugoslav-born": [ "JJ" ], "snake-charmer": [ "NN" ], "Colinas": [ "NNP" ], "injunctions": [ "NNS" ], "BIP": [ "NNP" ], "toughest": [ "JJS" ], "embroiled": [ "VBN" ], "Hendry": [ "NNP" ], "conservative-liberal": [ "JJ" ], "noblesse": [ "JJ" ], "Polycast": [ "NNP" ], "better-known": [ "JJ" ], "Piping": [ "NN" ], "Advertising": [ "NNP", "NN", "VBG" ], "device": [ "NN" ], "vultures": [ "NNS" ], "Asked": [ "VBN", "VBD" ], "Descartes": [ "NNP" ], "manuevering": [ "NN", "VBG" ], "checking-account": [ "JJ" ], "Acquired": [ "VBN", "NNP" ], "Gyllensten": [ "NNP" ], "U.S.-Czech": [ "JJ" ], "Relative": [ "JJ" ], "double-A-rated": [ "JJ" ], "fiasco": [ "NN" ], "Brieff": [ "NNP" ], "wounded": [ "VBN", "JJ" ], "Acquirer": [ "NN" ], "turnery": [ "NN" ], "atmosphere": [ "NN" ], "CONGRESS": [ "NNP" ], "monasteries": [ "NNS" ], "hawing": [ "VBG" ], "terminate": [ "VB", "VBP" ], "centralized": [ "JJ", "VBD", "VBN" ], "Took": [ "VBD" ], "organized-crime": [ "NN" ], "Shrine": [ "NNP" ], "mismanaging": [ "VBG" ], "bedroom": [ "NN" ], "unconnected": [ "JJ" ], "medication-dispensing": [ "JJ" ], "Bissell": [ "NNP" ], "Soviet-Western": [ "NNP" ], "H-2": [ "NNP" ], "boutique-store": [ "NN" ], "Jill": [ "NNP" ], "Gatsby": [ "NNP" ], "printers": [ "NNS" ], "Younger": [ "JJR", "NNP" ], "Unwinding": [ "VBG" ], "jackpot": [ "NN" ], "Kaufmann": [ "NNP" ], "market-if-touched": [ "NN" ], "H-P": [ "NNP" ], "Malknecht": [ "NNP" ], "doubtful": [ "JJ" ], "moneymakers": [ "NNS" ], "B-I-G": [ "NNP" ], "once-scandalous": [ "JJ" ], "envy-quotient": [ "NN" ], "Vigier": [ "NNP" ], "h": [ "NN" ], "Brand-Name": [ "NN" ], "T-Max": [ "NNP" ], "Supt.": [ "NNP" ], "anti-programmers": [ "NNS" ], "four-megabit": [ "JJ" ], "six-person": [ "JJ" ], "furs": [ "NNS" ], "withstand": [ "VB", "VBP" ], "Amneris": [ "NNP" ], "Rubel": [ "NNP" ], "Donner": [ "NNP" ], "primarly": [ "RB" ], "exerted": [ "VBN", "VBD" ], "Chalidale": [ "NNP" ], "electrode": [ "NN" ], "state-administered": [ "JJ" ], "Joanne": [ "NNP" ], "dust-settling": [ "JJ" ], "Arimathea": [ "NNP" ], "paper-work": [ "NN" ], "Restoration": [ "NNP", "NN" ], "unravel": [ "VB", "VBP" ], "Lockerbie": [ "NNP" ], "legitimize": [ "VB" ], "sevices": [ "NNS" ], "harsher": [ "JJR", "RBR" ], "Republican": [ "NNP", "JJ", "NN" ], "browbeat": [ "VB" ], "retentive": [ "JJ" ], "Kalentiev": [ "NNP" ], "Andrzej": [ "NNP" ], "Developing": [ "VBG", "NNP" ], "single-A-3": [ "JJ", "NN", "NNP" ], "single-A-2": [ "JJ", "NN", "NNP" ], "single-A-1": [ "JJ", "NN" ], "second-order": [ "JJ" ], "dartboard": [ "NN" ], "courtyard": [ "NN" ], "Vedrine": [ "NNP" ], "greenware": [ "NN" ], "panelboard": [ "NN" ], "weary": [ "JJ" ], "Stalling": [ "VBG" ], "stake-building": [ "VBG" ], "more-volatile": [ "JJR" ], "drillers": [ "NNS" ], "Umpire": [ "NN" ], "match-width": [ "NN" ], "recorders": [ "NNS" ], "Mossoviet": [ "NNP" ], "etc": [ "FW", "NN" ], "millivoltmeter": [ "NN" ], "rooming-house": [ "NN" ], "puff": [ "NN", "VB" ], "Buskirk": [ "NNP" ], "Sunman": [ "NNP" ], "strongly": [ "RB" ], "epigrams": [ "NNS" ], "apportionments": [ "NNS" ], "Would": [ "MD" ], "Godkin": [ "NNP" ], "editing\\/electronic": [ "JJ" ], "incest": [ "NN" ], "unsanctioned": [ "JJ" ], "Turin": [ "NNP" ], "Marantz": [ "NNP" ], "Crouched": [ "VBN" ], "powered": [ "VBN", "JJ" ], "Outputs": [ "NNS" ], "mathematics": [ "NNS", "NN" ], "poured": [ "VBD", "VBN" ], "aquamarine": [ "NN" ], "Westborough": [ "NNP" ], "pro-Castro": [ "JJ" ], "totaling": [ "VBG" ], "Expand": [ "NNP" ], "high-toned": [ "JJ" ], "Financiers": [ "NNS" ], "crisscross": [ "VBP" ], "pixies": [ "NNS" ], "emigration-related": [ "JJ" ], "Financiere": [ "NNP" ], "blatancy": [ "NN" ], "allusiveness": [ "NN" ], "Naxos": [ "NNP" ], "Shaking": [ "VBG" ], "freewheeling": [ "JJ" ], "consumer-led": [ "JJ" ], "median-nerve": [ "JJ" ], "apparitions": [ "NNS" ], "Farragut": [ "NNP" ], "memorizing": [ "NN", "VBG" ], "deregulation": [ "NN" ], "AIChE": [ "NNP" ], "cameo-like": [ "JJ" ], "aesthetics": [ "NNS" ], "silver-haired": [ "JJ" ], "Vesuvio": [ "NNP" ], "odd-year": [ "JJ" ], "country-squirehood": [ "NN" ], "orchards": [ "NNS" ], "optimistic": [ "JJ" ], "raison": [ "FW", "NN" ], "Mathematics": [ "NNP", "NN" ], "Toxic": [ "JJ" ], "conserve": [ "VB" ], "terrorist": [ "JJ", "NN" ], "market-inspired": [ "JJ" ], "dilate": [ "VB" ], "yuppie": [ "NN" ], "earthmoving": [ "JJ", "NN" ], "tempestuous": [ "JJ" ], "digging": [ "VBG", "NN" ], "terrorism": [ "NN" ], "discount-retailing": [ "NN" ], "repercussions": [ "NNS" ], "Rafale": [ "NNP" ], "Three-day": [ "JJ" ], "millilon": [ "NN" ], "restating": [ "VBG" ], "Benedek": [ "NNP" ], "assuaging": [ "VBG" ], "Medical": [ "NNP", "JJ" ], "wisest": [ "JJS" ], "siphoning": [ "VBG" ], "proficiency": [ "NN" ], "Garrard": [ "NNP" ], "afghan": [ "NN" ], "mosaic": [ "NN" ], "six-week-old": [ "JJ" ], "Superfund": [ "NNP" ], "Cowles": [ "NNP" ], "Soignee": [ "FW" ], "well-illustrated": [ "JJ" ], "harpsichord": [ "NN" ], "Violin": [ "NNP", "NN" ], "microvan": [ "NN" ], "turned-up": [ "JJ" ], "strategicarms": [ "NNS" ], "Influenced": [ "NNP" ], "inconsistently": [ "RB" ], "Polian": [ "NNP" ], "corporate-pension": [ "JJ" ], "dachshounds": [ "NNS" ], "Hayden": [ "NNP" ], "PROSECUTOR": [ "NNP", "NN" ], "Tyre": [ "NNP" ], "day-to-day": [ "JJ" ], "hand-operated": [ "JJ" ], "Proxmire": [ "NNP" ], "nonsegregated": [ "JJ" ], "Theodosius": [ "NNP" ], "developing-country": [ "JJ" ], "Nilsson": [ "NNP" ], "pompous": [ "JJ" ], "Brigadier": [ "NNP" ], "lattice": [ "NN" ], "Reason": [ "NNP", "NN" ], "clerking": [ "NN" ], "Divesting": [ "VBG" ], "noblemen": [ "NNS" ], "harshened": [ "VBD" ], "Norall": [ "NNP" ], "increased": [ "VBN", "JJ", "VB", "VBD", "VBN|JJ" ], "Launch": [ "NN", "VB" ], "Heartland": [ "NNP" ], "fairies": [ "NNS" ], "Shipping": [ "NNP", "NN" ], "WayMar": [ "NNP" ], "increases": [ "NNS", "VBZ" ], "Cellular": [ "NNP" ], "Sao": [ "NNP" ], "incessant": [ "JJ" ], "Casablanca": [ "NNP" ], "tablet-shattering": [ "JJ" ], "Raydiola": [ "NNP" ], "CITIZENS": [ "NNS" ], "purling": [ "VBG" ], "pries": [ "VBZ" ], "parasite": [ "NN" ], "garage": [ "NN", "VBP" ], "post-June": [ "JJ" ], "JUDGE": [ "NN", "NNP" ], "prevention": [ "NN" ], "THOSE": [ "DT" ], "sinewy": [ "JJ" ], "Brougham": [ "NNP" ], "Vladivostok": [ "NNP" ], "marketshare": [ "NN" ], "sinews": [ "NNS" ], "almonds": [ "NNS" ], "downside": [ "NN", "JJ" ], "Game-Boy": [ "NN" ], "seed-bearing": [ "JJ" ], "oneself": [ "PRP" ], "LeBoutillier": [ "NNP" ], "Vladimir": [ "NNP" ], "jalapeno": [ "JJ" ], "Luerssen": [ "NNP" ], "literally": [ "RB" ], "Karamazov": [ "NNP" ], "Say": [ "VB", "NNP", "VBP" ], "non-option": [ "JJ" ], "doer": [ "NN" ], "does": [ "VBZ" ], "telephone-booth": [ "NN" ], "blurry": [ "JJ" ], "Desarrollo": [ "NNP" ], "cadaverous": [ "JJ" ], "Inside": [ "IN", "NNP", "NN", "RB" ], "cellulose": [ "NN" ], "no-loads": [ "NNS" ], "behind-schedule": [ "JJ" ], "yuh": [ "PRP" ], "residences": [ "NNS" ], "Egil": [ "NNP" ], "beneath": [ "IN", "RB" ], "slackjawed": [ "VBN" ], "payout": [ "NN" ], "double-decking": [ "NN" ], "asks": [ "VBZ" ], "traces": [ "NNS", "VBZ" ], "worker-compensation": [ "NN" ], "Rapp": [ "NNP" ], "Tammen": [ "NNP" ], "laboring": [ "VBG" ], "courtly": [ "JJ" ], "on-stage": [ "JJ" ], "nucleus": [ "NN" ], "concession": [ "NN" ], "encamp": [ "VB" ], "Spice-Nice": [ "NNP" ], "Rape": [ "NNP" ], "executives": [ "NNS" ], "enigmatic": [ "JJ" ], "ACCOUNT": [ "NN", "NNP" ], "contractions": [ "NNS" ], "title-insurance": [ "JJ", "NN" ], "Desai": [ "NNP" ], "iodinating": [ "VBG" ], "combat-ready": [ "JJ" ], "roads": [ "NNS" ], "negotiable": [ "JJ" ], "Network": [ "NNP", "NN" ], "peccavi": [ "FW" ], "Jeep-Eagle": [ "NNP" ], "caviar": [ "NN" ], "Micronyx": [ "NNP" ], "Hulbert": [ "NNP" ], "trigger": [ "VB", "NN", "VBP" ], "Procreation": [ "NN" ], "troubling": [ "JJ", "VBG" ], "inter-tribal": [ "JJ" ], "bd": [ "NNS" ], "Cogefar": [ "NNP" ], "Ambler": [ "NNP" ], "Verrone": [ "NNP" ], "Finnair": [ "NNP" ], "Isosceles": [ "NNP" ], "teleological": [ "JJ" ], "DIET": [ "NNP" ], "Portillo": [ "NNP" ], "water-treatment": [ "NN", "JJ" ], "Chatter-Proofed": [ "JJ" ], "dextrous": [ "JJ" ], "be": [ "VB", "VBN", "VBP" ], "candidacy": [ "NN" ], "headrests": [ "NNS" ], "DIED": [ "VBD" ], "arsenals": [ "NNS" ], "six-inch-square": [ "JJ" ], "deficitcutting": [ "NN" ], "realist": [ "NN" ], "Gettysburg": [ "NNP" ], "Gourlay": [ "NNP" ], "non-casino": [ "JJ" ], "nominations": [ "NNS" ], "custom-tailored": [ "JJ" ], "fold": [ "VB", "NN", "VBP" ], "menstruation": [ "JJ" ], "kowtow": [ "VB" ], "Portage": [ "NNP" ], "gasconade": [ "VB" ], "cosponsored": [ "VBN" ], "replica": [ "NN" ], "sixth-largest": [ "JJ", "JJS" ], "Yamaichi": [ "NNP" ], "endeared": [ "VBD", "VBN" ], "DAF": [ "NNP" ], "Kohler": [ "NNP" ], "Brain": [ "NN", "NNP" ], "gold-backed": [ "JJ" ], "DAT": [ "NNP" ], "nosedive": [ "NN", "JJ" ], "Naktong": [ "NNP" ], "state-dominated": [ "JJ" ], "Hayward": [ "NNP" ], "DAX": [ "NNP" ], "DAY": [ "NNP" ], "Bathar-on-Walli": [ "NNP" ], "woodlots": [ "NNS" ], "colonized": [ "VBD", "VBN" ], "bailing": [ "VBG", "NN" ], "Aslacton": [ "NNP" ], "Karatz": [ "NNP" ], "Karate": [ "NN", "NNP" ], "Beringer": [ "NNP" ], "Context": [ "NN" ], "Testament": [ "NNP" ], "epilogue": [ "NN" ], "Mainstream": [ "NN", "NNP" ], "tidelands": [ "NNS" ], "quetzal": [ "NN" ], "Findings": [ "NNS" ], "Pyrex": [ "NNP" ], "hoots": [ "NNS" ], "Thirty-one": [ "JJ" ], "rule": [ "NN", "VBP", "VB" ], "soporific": [ "JJ" ], "computer-magazine": [ "JJ" ], "athlete-student": [ "NN" ], "delicate-beyond-description": [ "JJ" ], "oil-bath": [ "NN" ], "abhor": [ "VB" ], "Epstein": [ "NNP" ], "practicability": [ "NN" ], "InterMedia": [ "NNP" ], "AGI": [ "NNP" ], "Missail": [ "NNP" ], "crunchier": [ "JJR" ], "AGF": [ "NNP" ], "AGE": [ "NNP" ], "Stuart": [ "NNP" ], "AGA": [ "NNP" ], "self-incrimination": [ "NN" ], "Messenger": [ "NNP", "NN" ], "Kingpin": [ "NN" ], "AGS": [ "NNP" ], "relationships": [ "NNS" ], "votes": [ "NNS", "VBZ" ], "anti-cartel": [ "JJ" ], "J-2": [ "NNP" ], "endings": [ "NNS" ], "voted": [ "VBD", "VBN" ], "hacksaw": [ "NN" ], "Vere": [ "NNP" ], "Rocking": [ "NNP" ], "Yellow-pages": [ "NN" ], "customer-account": [ "NN" ], "Toth": [ "NNP" ], "Iranian": [ "JJ", "NNP" ], "compassion": [ "NN" ], "gobbles": [ "VBZ" ], "Volio": [ "NNP" ], "Centerior": [ "NNP" ], "egrets": [ "NNS" ], "exporters": [ "NNS" ], "Automatic": [ "NNP", "JJ" ], "gobbled": [ "VBD", "VBN" ], "chapel": [ "NN" ], "tickets": [ "NNS" ], "co-plaintiff": [ "NN" ], "Daim": [ "NNP" ], "furrowed": [ "JJ", "VBN" ], "Helton": [ "NNP" ], "Longinotti": [ "NNPS" ], "scalar": [ "JJ" ], "humidity": [ "NN" ], "casinos": [ "NNS", "VBZ" ], "delegate": [ "NN", "VB" ], "war-dirty": [ "JJ" ], "quaking": [ "VBG" ], "nondescript": [ "JJ" ], "Harbridge": [ "NNP" ], "Cowboys-owned": [ "JJ" ], "Wah": [ "NNP" ], "phoney": [ "JJ" ], "pragmatic": [ "JJ" ], "Matuschka": [ "NNP" ], "two-note": [ "JJ" ], "phones": [ "NNS", "VBZ" ], "shut": [ "VBN", "VBD", "JJ", "NN", "VB" ], "skillfully": [ "RB" ], "gull": [ "NN" ], "resubmitted": [ "VBD" ], "Strange": [ "JJ", "NNP" ], "follow": [ "VB", "VBP" ], "MacGregors": [ "NNPS" ], "spontaneously": [ "RB" ], "sorriest": [ "JJS" ], "phoned": [ "VBD", "VBN" ], "perish": [ "VB" ], "Minnetonka": [ "NNP" ], "Trivia": [ "NNP" ], "seven-thirty": [ "RB" ], "Deluged": [ "VBN" ], "incompatible": [ "JJ" ], "Ones": [ "NNP" ], "toll": [ "NN", "VB" ], "Onex": [ "NNP" ], "tole": [ "NN", "VBD" ], "told": [ "VBD", "VBN" ], "unmotivated": [ "JJ" ], "simultaneously": [ "RB" ], "Padre": [ "NNP" ], "WASHINGTON": [ "NNP" ], "week-ends": [ "NNS" ], "kindled": [ "VBN" ], "bookcase": [ "NN" ], "Simulated": [ "JJ" ], "Addicted": [ "NNP" ], "detoxification": [ "NN" ], "Ft.": [ "NNP" ], "hundredweight": [ "NN" ], "kudos": [ "NNS" ], "Merrill": [ "NNP", "NN" ], "walkin": [ "VBG" ], "basketball-cutback": [ "NN" ], "struck": [ "VBD", "VBN" ], "Santucci": [ "NNP" ], "regimentation": [ "NN" ], "CTS": [ "NNP" ], "Stratus": [ "NNP", "NN" ], "angrily": [ "RB" ], "charred": [ "JJ", "VBN" ], "Health": [ "NNP", "NN" ], "ESystems": [ "NNP" ], "CTB": [ "NNP" ], "embarrass": [ "VB" ], "Ouija": [ "NNP" ], "removal": [ "NN" ], "ARBITRAGE": [ "NN" ], "Akros": [ "NNP" ], "Bernhardt": [ "NNP" ], "substitutions": [ "NNS" ], "prices...": [ ":" ], "Foil": [ "NNP" ], "whinnied": [ "VBD" ], "Akron": [ "NNP" ], "Unwanted": [ "JJ" ], "PaineWebber": [ "NNP", "NN", "VB" ], "Squadrons": [ "NNP" ], "Masterson": [ "NNP" ], "tumultuous": [ "JJ" ], "minor-sport": [ "NN" ], "Introduces": [ "VBZ" ], "curvature": [ "NN" ], "Feeds": [ "NNS" ], "Introduced": [ "VBN" ], "self-involved": [ "JJ" ], "handkerchiefs": [ "NNS" ], "bartender": [ "NN" ], "Challenging": [ "VBG" ], "full-throated": [ "JJ" ], "work": [ "NN", "VB", "VBP" ], "worm": [ "NN" ], "worn": [ "VBN", "JJ" ], "resents": [ "VBZ" ], "mammalian": [ "JJ" ], "macroscopically": [ "RB" ], "wort": [ "NN" ], "criticizing": [ "VBG" ], "corporativism": [ "NN" ], "airstrip": [ "NN" ], "psyllium": [ "NN" ], "exhorts": [ "VBZ" ], "Swan": [ "NNP", "NN" ], "Hurricane": [ "NNP", "NN" ], "Pennock": [ "NNP" ], "hyphenated": [ "JJ", "VBN" ], "sub-assembly": [ "NN" ], "Frontiers": [ "NNS" ], "dry-eyed": [ "JJ" ], "Parkos": [ "NNP" ], "Journal": [ "NNP", "NN" ], "hosannas": [ "NNS" ], "mulch": [ "NN" ], "disappear": [ "VB", "VBP" ], "completed-contract": [ "JJ" ], "disappoint": [ "VB" ], "Arguing": [ "VBG" ], "Rilly": [ "NNP" ], "FORCES": [ "NNS" ], "subbing": [ "VBG" ], "Will": [ "MD", "NNP", "NN", "VB" ], "Wilm": [ "NNP" ], "interlibrary": [ "JJ" ], "Wilk": [ "NNP" ], "Wild": [ "NNP", "JJ" ], "Wile": [ "NNP" ], "blonde-haired": [ "JJ" ], "meaningful": [ "JJ" ], "nipped": [ "VBD" ], "shimmering": [ "VBG", "JJ" ], "foolhardy": [ "JJ" ], "thickens": [ "VBZ" ], "Afanasyeva": [ "NNP" ], "scarf": [ "NN" ], "ambulance": [ "NN" ], "Sexual": [ "NNP" ], "order": [ "NN", "VBP", "IN", "VB" ], "Moultons": [ "NNPS" ], "Eye": [ "NNP", "NN" ], "office": [ "NN" ], "Longman": [ "NNP" ], "five-blade": [ "JJ" ], "Indeterminate": [ "NNP" ], "proportionate": [ "JJ" ], "squalor": [ "NN" ], "Absorbed": [ "VBN" ], "debuted": [ "VBD" ], "sludge": [ "NN" ], "misconduct": [ "NN" ], "realism": [ "NN" ], "upholding": [ "VBG" ], "bugless": [ "JJ" ], "extraterritorial": [ "JJ" ], "Monetary": [ "NNP", "JJ", "NN" ], "clanged": [ "VBD" ], "pricier": [ "JJR" ], "brawling": [ "NN" ], "stippled": [ "JJ" ], "securities-price": [ "JJ" ], "Burns": [ "NNP" ], "Burnt": [ "NNP" ], "skyline": [ "NN" ], "Raising": [ "VBG", "NNP" ], "willling": [ "VBG" ], "three-cornered": [ "JJ" ], "anti-statist": [ "NN" ], "Pros": [ "NNS" ], "Mitropoulos": [ "NNP" ], "Reama": [ "NNP" ], "friction-free": [ "JJ" ], "Travels": [ "NNP", "NNS" ], "Suggests": [ "NNS" ], "Foote": [ "NNP" ], "shameful": [ "JJ" ], "suitor": [ "NN" ], "Gumport": [ "NNP" ], "Rathbones": [ "NNPS" ], "intercrisis": [ "NN" ], "Rubicam": [ "NNP" ], "mini-saga": [ "NN" ], "bolted": [ "VBN", "VBD" ], "weasling": [ "VBG" ], "oxygen": [ "NN" ], "doles": [ "VBZ" ], "embankment": [ "NN" ], "NPD": [ "NNP" ], "GFSA": [ "NNP" ], "doled": [ "VBD", "VBN" ], "Gallant": [ "NNP" ], "Groton": [ "NNP" ], "Rhine": [ "NNP" ], "Choking": [ "VBG" ], "Feminist": [ "NNP" ], "SOME": [ "DT" ], "Galland": [ "NNP" ], "Montbrial": [ "NNP" ], "disappointing": [ "JJ" ], "recognizable": [ "JJ" ], "Tournier": [ "NNP" ], "Feminism": [ "NN" ], "reformists": [ "NNS" ], "Novak": [ "NNP" ], "Presbyterian": [ "NNP" ], "cornmeal-price": [ "NN" ], "cameras": [ "NNS" ], "baby-products": [ "JJ" ], "fellowship": [ "NN" ], "phone-company": [ "NN" ], "steel-service-center": [ "NN" ], "unproblematic": [ "JJ" ], "Napoleon": [ "NNP", "NN" ], "Bugatti": [ "NNP" ], "deep-sounding": [ "JJ" ], "arpeggios": [ "NNS" ], "Assemblies": [ "NNP" ], "atom-like": [ "JJ" ], "admits": [ "VBZ", "NNS" ], "anti-Soviet": [ "JJ" ], "Griffith-Jones": [ "NNP" ], "condicions": [ "NNS" ], "theoriticians": [ "NNS" ], "entry-limiting": [ "JJ" ], "Norell": [ "NNP" ], "Zend-Avesta": [ "NNP" ], "undaunted": [ "JJ" ], "Australasian": [ "JJ" ], "louse": [ "VB", "NN" ], "myth-making": [ "VBG", "NN" ], "lousy": [ "JJ" ], "cannisters": [ "NNS" ], "solicitousness": [ "NN" ], "Baker-Shevardnadze": [ "NNP", "JJ" ], "condom": [ "NN" ], "carloading": [ "NN" ], "SWAO": [ "NNP" ], "realness": [ "NN" ], "Palestinian": [ "JJ", "NNP", "NN" ], "split-level": [ "JJ" ], "miscalculation": [ "NN" ], "overaggressive": [ "JJ" ], "Going": [ "VBG", "NNP" ], "radar.": [ "NN" ], "Aegis-class": [ "JJ" ], "comin": [ "VBG", "NN" ], "comic": [ "JJ", "NN" ], "Symbion": [ "NNP" ], "Hustle": [ "VB" ], "Garish": [ "JJ" ], "Tests": [ "NNS", "NNP", "NNPS" ], "hedging": [ "VBG", "VBG|JJ", "JJ", "NN" ], "Repository": [ "NNP", "NN" ], "Testy": [ "JJ" ], "Kolber": [ "NNP" ], "Fawzy": [ "NNP" ], "Testa": [ "NNP" ], "compromise": [ "NN", "JJ", "VB" ], "horn-rimmed": [ "JJ" ], "upshot": [ "NN" ], "Psychotherapy": [ "NNP" ], "Fawzi": [ "NNP" ], "Disneyland": [ "NNP" ], "kiwi": [ "NN" ], "S*/NN&L": [ "NNP", "JJ" ], "decorations": [ "NNS" ], "fanatical": [ "JJ" ], "provisioned": [ "VBN" ], "radars": [ "NNS" ], "Care-Unit": [ "NNP" ], "rejected": [ "VBD", "VBN" ], "Preparation": [ "NN", "NNP" ], "Ahmet": [ "NNP" ], "weakly": [ "RB" ], "southernisms": [ "NNS" ], "Y&R": [ "NNP" ], "Berman": [ "NNP" ], "dissociated": [ "VBN" ], "Selkirk": [ "NNP" ], "face-saving": [ "JJ", "NN" ], "mercy": [ "NN" ], "disproportionally": [ "RB" ], "Mitofksy": [ "NNP" ], "hike": [ "NN", "VB" ], "non-freezing": [ "JJ" ], "programs": [ "NNS" ], "expurgation": [ "NN" ], "Wrecks": [ "VBZ" ], "songwriters": [ "NNS" ], "high-cost": [ "JJ" ], "Prose": [ "NNP" ], "Madonna": [ "NNP" ], "hacking": [ "JJ", "NN" ], "haves": [ "NNS" ], "much-abused": [ "JJ" ], "Ticor": [ "NNP" ], "rewrite": [ "VB", "NN" ], "Cordier": [ "NNP" ], "maniclike": [ "JJ" ], "Rig-Veda": [ "NNP" ], "pessimist": [ "NN" ], "Msec.": [ "NNS" ], "super-regionals": [ "NNS" ], "lull": [ "NN", "VB" ], "Reagan-era": [ "NN", "NNP", "JJ" ], "accompany": [ "VB", "VBP" ], "Knupp": [ "NNP" ], "Quasimodo": [ "NNP" ], "beef-fat": [ "JJ" ], "ponder": [ "VB", "VBP" ], "genuine": [ "JJ" ], "small-lot": [ "JJ" ], "retail-sized": [ "JJ" ], "Amory": [ "NNP" ], "Fleetwood": [ "NNP" ], "Stroud": [ "NNP" ], "gnomelike": [ "JJ" ], "overtook": [ "VBD" ], "virus-free": [ "JJ" ], "Stroup": [ "NNP" ], "circles": [ "NNS", "VBZ" ], "Aristide": [ "NNP" ], "Metropolian": [ "NNP" ], "SYSCO": [ "NNP" ], "Quayle": [ "NNP" ], "solidified": [ "VBD", "VBN" ], "HEXX": [ "NNP" ], "Demanded": [ "VBD" ], "circled": [ "VBD" ], "tally": [ "NN", "VBP", "VB" ], "corded": [ "VBN" ], "solidifies": [ "VBZ" ], "Vieth": [ "NNP" ], "Aidan": [ "NNP" ], "Ardmore": [ "NNP" ], "Telegraaf": [ "NNP" ], "newcomers": [ "NNS" ], "Self-contained": [ "JJ" ], "Election": [ "NNP", "NN" ], "deeply": [ "RB" ], "Institutes": [ "NNPS", "NNP", "NNS" ], "Native": [ "NNP", "JJ" ], "decidedly": [ "RB" ], "kyat": [ "NN" ], "teetering": [ "VBG", "JJ" ], "writeoff": [ "NN" ], "knightly": [ "JJ" ], "chandelier": [ "NN" ], "Dimitriadis": [ "NNP" ], "nephew": [ "NN" ], "Powell": [ "NNP" ], "Monteith": [ "NNP" ], "sharks": [ "NNS" ], "sewn": [ "VBN" ], "Fasken": [ "NNP" ], "Facetious": [ "NNP" ], "elucidated": [ "VBN" ], "thermodynamically": [ "RB" ], "yea": [ "NN" ], "fast-opening": [ "JJ", "NN" ], "most-valuable-player": [ "NN" ], "pursuing": [ "VBG", "NN" ], "so-far": [ "JJ" ], "Orkney": [ "NNP" ], "sews": [ "VBZ" ], "higher-capacity": [ "JJ" ], "Leven": [ "NNP" ], "Level": [ "NNP", "NN" ], "transfixing": [ "VBG" ], "unsteady": [ "JJ", "VB" ], "preferred": [ "JJ", "VBD", "VBG", "VBN" ], "Vieira": [ "NNP" ], "Oranjemund": [ "NNP" ], "MTCR": [ "NNP" ], "Lever": [ "NNP" ], "Francona": [ "NNP" ], "savory": [ "JJ" ], "Menagerie": [ "NNP" ], "speared": [ "VBD" ], "suffrage": [ "NN" ], "R.J.": [ "NNP" ], "Peres": [ "NNP" ], "nuper": [ "FW" ], "Brownlow": [ "NNP" ], "stead": [ "NN" ], "humanist": [ "JJ", "NN" ], "radiators": [ "NNS" ], "Dobbs": [ "NNP" ], "analytical": [ "JJ" ], "Perez": [ "NNP" ], "crucifixion": [ "NN" ], "steak": [ "NN" ], "steal": [ "VB", "VBP" ], "steam": [ "NN" ], "ghoul": [ "NN" ], "Christendom": [ "NNP", "NN" ], "Apparatus": [ "NN" ], "observes": [ "VBZ" ], "H.C.": [ "NNP" ], "segmentation": [ "NN" ], "Semmel": [ "NNP" ], "observed": [ "VBN", "JJ", "VBD" ], "building-materials": [ "NNS" ], "Cetus": [ "NNP" ], "scrutinizing": [ "VBG" ], "semiconductor-equipment": [ "NN" ], "gesticulated": [ "VBD" ], "chiding": [ "VBG" ], "Pricey": [ "JJ" ], "grain-storage": [ "NN" ], "anaprapath": [ "NN" ], "chortling": [ "VBG" ], "seeping": [ "VBG" ], "tester": [ "NN" ], "yen-support": [ "JJ" ], "breakaway": [ "NN" ], "mincing": [ "VBG" ], "Nasser": [ "NNP" ], "detracting": [ "VBG" ], "Issuers": [ "NNS" ], "disservice": [ "NN" ], "negatively": [ "RB" ], "straight-talking": [ "JJ" ], "received": [ "VBD", "VBN", "JJ" ], "abstractedness": [ "NN" ], "combating": [ "VBG" ], "ill": [ "JJ", "NNS", "NN", "RB" ], "paralyzing": [ "VBG", "JJ" ], "DaiIchi": [ "NNP" ], "ilk": [ "NN" ], "receives": [ "VBZ" ], "receiver": [ "NN" ], "Mickelberry": [ "NNP" ], "groans": [ "VBZ" ], "Honors": [ "NNP", "NNS" ], "department-store": [ "NN", "JJ" ], "Feb.": [ "NNP", "NN" ], "ETR": [ "NNP" ], "credit-information": [ "NN" ], "Klemperer": [ "NNP" ], "spear": [ "NN", "VB" ], "Cheeses": [ "NNPS" ], "ETA": [ "NNP" ], "urgencies": [ "NNS" ], "wider": [ "JJR", "RBR" ], "speak": [ "VB", "VBP" ], "trickery": [ "NN" ], "engines": [ "NNS" ], "mobilization": [ "NN" ], "Modrall": [ "NNP" ], "exhume": [ "VB" ], "Vague": [ "JJ" ], "leech": [ "NN", "VB" ], "Quotation": [ "NNP" ], "hiders": [ "NNS" ], "Takushoku": [ "NNP" ], "Electoral": [ "NNP" ], "concerning": [ "VBG" ], "catering": [ "NN", "VBG" ], "Guenter": [ "NNP" ], "handicraftsman": [ "NN" ], "quailing": [ "VBG" ], "Pieter": [ "NNP" ], "Klees": [ "NNP" ], "rasps": [ "NNS" ], "Perlman": [ "NNP" ], "raspy": [ "NN" ], "clean-shaven": [ "JJ" ], "Workshop": [ "NNP", "NN" ], "half-breed": [ "NN", "JJ" ], "lahk": [ "IN" ], "Bales": [ "NNP" ], "Agins": [ "NNP" ], "stink": [ "NN", "VBP" ], "blood-clot": [ "NN" ], "Ithacan": [ "NNP" ], "kaleidescope": [ "NN" ], "undemocratic": [ "JJ" ], "Matsuura": [ "NNP" ], "sting": [ "NN", "VB" ], "self-defeat": [ "NN" ], "money-minded": [ "JJ" ], "brake": [ "NN", "VB" ], "drug-education": [ "NN" ], "Lenny": [ "NNP" ], "Insecures": [ "NNPS" ], "Shields": [ "NNP" ], "Missions": [ "NNP" ], "wooing": [ "VBG", "NN" ], "bas-relief": [ "NN" ], "MiG-29": [ "NNP" ], "Dolce": [ "NNP" ], "Shlaes": [ "NNP" ], "veining": [ "NN", "VBG" ], "Parrino": [ "NNP" ], "sometimes-exhausting": [ "JJ" ], "Placid": [ "NNP" ], "Burmans": [ "NNPS" ], "avoids": [ "VBZ" ], "summer-long": [ "JJ" ], "perimeter": [ "NN" ], "pastels": [ "NNS" ], "foot-high": [ "JJ" ], "outperformed": [ "VBD", "VBN" ], "fastest-growing": [ "JJ", "JJS", "NN" ], "Skokie": [ "NNP" ], "insulating": [ "VBG", "JJ", "NN" ], "alkylbenzenesulfonates": [ "NNS" ], "counterbidders": [ "NNS" ], "Distillers": [ "NNPS", "NNP", "NNS" ], "operands": [ "NNS" ], "immaterial": [ "JJ" ], "Physically": [ "RB" ], "drip": [ "NN" ], "Monitors": [ "NNP" ], "Tribuna": [ "NNP" ], "haircuts": [ "NNS" ], "discreet": [ "JJ" ], "Tribune": [ "NNP" ], "local-money": [ "NN" ], "impertinent": [ "JJ" ], "buy-out": [ "NN", "JJ" ], "messieurs": [ "FW" ], "endometriosis": [ "NN" ], "querulously": [ "RB" ], "sticking": [ "VBG", "NN", "JJ" ], "unities": [ "NNS" ], "Mubarak": [ "NNP" ], "Conclusions": [ "NNS" ], "Zeron": [ "NNP" ], "dignify": [ "VB" ], "multilocation": [ "NN" ], "supervisory": [ "JJ" ], "tenting": [ "NN" ], "goggles": [ "NNS" ], "Zeros": [ "NNS" ], "physiochemical": [ "JJ" ], "still-continuing": [ "JJ" ], "Pittman": [ "NNP" ], "Ballantine\\/Del": [ "NNP" ], "Wesco": [ "NNP" ], "Gay": [ "NNP", "JJ" ], "photographer": [ "NN" ], "Trident": [ "NNP" ], "Gas": [ "NNP", "NN" ], "fared": [ "VBD", "VBN" ], "six-game": [ "JJ" ], "Gal": [ "NNP" ], "surtaxes": [ "NNS" ], "CASTLE": [ "NNP" ], "photographed": [ "VBN", "VBD" ], "maye": [ "MD" ], "maya": [ "FW" ], "required.": [ "VBN" ], "lead-zinc": [ "JJ" ], "fusion": [ "NN" ], "injuring": [ "VBG" ], "commandments": [ "NNS" ], "tarpon": [ "NN" ], "draftsmen": [ "NNS" ], "seductive": [ "JJ" ], "flavoring": [ "NN", "VBG" ], "texts": [ "NNS" ], "bucolic": [ "JJ" ], "Ga.": [ "NNP" ], "pains-taking": [ "JJ" ], "conniver": [ "NN" ], "invaluable": [ "JJ" ], "one-step": [ "JJ" ], "nude": [ "JJ", "NN" ], "force-fear": [ "JJ" ], "calculus": [ "NN" ], "profit-seeking": [ "JJ" ], "IL-4": [ "NN" ], "Skinnerish": [ "JJ" ], "lineages": [ "NNS" ], "Unwholesome": [ "JJ" ], "Distilled": [ "NNP" ], "shipboard-weapons": [ "NNS" ], "stylization": [ "NN" ], "overdriving": [ "VBG" ], "drawdown": [ "NN" ], "rhubarb-like": [ "JJ" ], "global-warming": [ "JJ" ], "WCRS-Eurocom": [ "NNP", "JJ" ], "Stoll": [ "NNP" ], "antirealistic": [ "JJ" ], "repository": [ "NN" ], "Lankford": [ "NNP" ], "molton": [ "NN" ], "outlays": [ "NNS" ], "U.N.F.P./NNP.": [ "JJ" ], "Farrells": [ "NNPS" ], "Property": [ "NNP", "NN" ], "hydra-headed": [ "JJ" ], "banked": [ "VBD", "JJ", "VBN" ], "lightheaded": [ "JJ" ], "Nazi-occupied": [ "JJ" ], "Mennonite": [ "JJ", "NNP" ], "hostilities": [ "NNS" ], "multi-valve": [ "JJ" ], "constituting": [ "VBG" ], "speedier": [ "JJR", "JJ" ], "banker": [ "NN" ], "horizon": [ "NN" ], "croak": [ "NN", "VBP" ], "SP1-plus": [ "JJ" ], "Siciliana": [ "NNP" ], "loin": [ "NN" ], "Hoijer": [ "NNP" ], "squander": [ "VB" ], "ruddiness": [ "NN" ], "hard-liner": [ "NN" ], "Faulding": [ "NNP" ], "deal": [ "NN", "VB", "VBP" ], "Kellogg-Briand": [ "NNP" ], "legislation": [ "NN" ], "slowdowns": [ "NNS" ], "editions": [ "NNS" ], "Mechanized": [ "VBN", "JJ" ], "anti-convulsive": [ "JJ" ], "recession-plagued": [ "JJ" ], "Sanyo": [ "NNP" ], "super-majority": [ "JJ", "NN" ], "shopping-mall": [ "NN|JJ" ], "Holcomb": [ "NNP" ], "China-watcher": [ "NN" ], "dead": [ "JJ", "NN", "RB", "VBN" ], "Psychiatry": [ "NNP" ], "Bfree": [ "NNP" ], "Fenster": [ "NNP" ], "Bellamy": [ "NNP" ], "wellrun": [ "JJ" ], "overindebtedness": [ "NN" ], "rejuvenation": [ "NN" ], "shuttled": [ "VBD", "VBN" ], "Czech": [ "JJ", "NNP" ], "Studio-City": [ "NNP" ], "Beadle": [ "NNP" ], "pension-minded": [ "JJ" ], "foreknown": [ "VB" ], "dovetails": [ "VBZ" ], "Xomen-E5": [ "NNP" ], "back-up": [ "NN", "JJ" ], "cancers": [ "NNS" ], "fingering": [ "VBG", "NN" ], "foreign-country": [ "JJ" ], "vacationers": [ "NNS" ], "fulfills": [ "VBZ" ], "stronger": [ "JJR", "RBR" ], "public-audit": [ "JJ" ], "Broome": [ "NNP" ], "saltwater": [ "NN" ], "stock-investing": [ "JJ" ], "archive": [ "NN" ], "university-based": [ "JJ" ], "Bagcraft": [ "NNP" ], "revetments": [ "NNS" ], "spongy": [ "JJ" ], "dying": [ "VBG", "JJ", "NN" ], "historical-claims": [ "NNS" ], "meanness": [ "NN" ], "Supermarket": [ "NN", "NNP" ], "reality": [ "NN" ], "Lurcat": [ "NNP" ], "Consideration": [ "NN" ], "orate": [ "VB" ], "disbursesments": [ "NNS" ], "Eurodynamics": [ "NNPS" ], "Windows": [ "NNP", "NNS", "NNPS" ], "Bruwer": [ "NNP" ], "troupe": [ "NN" ], "Nakayasu": [ "NNP" ], "WWRL": [ "NNP" ], "Estate": [ "NNP", "NN" ], "abscissa": [ "NN" ], "reasoning": [ "NN", "VBG" ], "Osis": [ "NNP" ], "Crescent": [ "NNP" ], "Encyclopedia": [ "NNP" ], "statistics-keepers": [ "NNS" ], "EOG": [ "NNP" ], "Nadir": [ "NNP" ], "dance": [ "NN", "VB", "VBP" ], "Bushnell": [ "NNP" ], "desegregate": [ "VB" ], "Aliksanian": [ "NNP" ], "fabricated": [ "VBN", "VBD", "JJ" ], "No-Name": [ "NNP" ], "ex-fighter": [ "NN" ], "sponge": [ "NN", "VBP", "VB" ], "idealism": [ "NN" ], "automated-teller": [ "JJ", "NN" ], "jogger": [ "NN" ], "Serve": [ "VB" ], "counter-attack": [ "NN" ], "Academics": [ "NNS" ], "infinitesimally": [ "RB" ], "underworked": [ "JJ" ], "terror": [ "NN" ], "idealist": [ "NN" ], "chip-packaging": [ "NN" ], "Present": [ "JJ", "NN", "RB", "VB", "NNP" ], "volunteers": [ "NNS" ], "Acquisitions": [ "NNS", "NNPS" ], "brown": [ "JJ", "NN", "VB" ], "Lynnwood": [ "NNP" ], "Deerstalker": [ "NN", "NNP" ], "upriver": [ "JJ" ], "cochannel": [ "JJ", "NN" ], "emergencies": [ "NNS" ], "trouble": [ "NN", "VBD", "VBP", "JJ", "VB" ], "brows": [ "NNS" ], "Georgette": [ "NNP" ], "toxins": [ "NNS" ], "Cubans": [ "NNPS", "NNP" ], "Superlative": [ "NNP" ], "Hallbauer": [ "NNP" ], "Sincere": [ "NNP" ], "wire-haired": [ "JJ" ], "WILL": [ "MD" ], "Georgi": [ "NNP" ], "introjected": [ "VBN" ], "George": [ "NNP" ], "newsreel": [ "NN" ], "governing": [ "VBG", "JJ", "NN" ], "cease-and-desist": [ "JJ", "NN" ], "imprecisely": [ "RB" ], "legalized": [ "VBN" ], "regret": [ "VBP", "NN", "VB" ], "Equity-Income": [ "NNP" ], "stop-work": [ "JJ" ], "regained": [ "VBD", "VBN" ], "Entergy": [ "NNP" ], "DD": [ "NNP" ], "Akerfeldt": [ "NNP" ], "Laverne\\": [ "JJ" ], "prairie": [ "NN" ], "Slowly": [ "RB" ], "Rick": [ "NNP" ], "Rich": [ "NNP", "JJ" ], "Rice": [ "NNP", "NN" ], "tempest": [ "NN" ], "Cahill": [ "NNP" ], "spleen-crushing": [ "JJ" ], "Cushman": [ "NNP" ], "assistance": [ "NN" ], "ComputerLand": [ "NNP" ], "Moravian": [ "NNP" ], "commensurate": [ "JJ" ], "unescorted": [ "JJ" ], "Spinoffs": [ "NNS" ], "inauguration": [ "NN" ], "peeled": [ "VBN", "VBD" ], "whiteness": [ "NN" ], "Youngstown": [ "NNP" ], "Kozinski": [ "NNP" ], "pennystock": [ "NN" ], "medico-military": [ "NN", "JJ" ], "Deak": [ "NNP" ], "Dean": [ "NNP" ], "Deal": [ "NNP", "NN" ], "cantonal": [ "JJ" ], "Deaf": [ "JJ", "NNP" ], "Dead": [ "NNP", "NNS", "JJ" ], "excursion": [ "NN" ], "Maynard": [ "NNP" ], "Sobey": [ "NNP" ], "computer-related": [ "JJ" ], "SOCIAL": [ "JJ" ], "Dear": [ "NNP", "JJ", "UH" ], "shootouts": [ "NNS" ], "R/NNP.H.S.": [ "NNP" ], "E-Systems": [ "NNP", "NNPS" ], "Lawmaking": [ "JJ" ], "confrontation": [ "NN" ], "idlings": [ "NNS" ], "pancreatitis": [ "NN" ], "dewy-eyed": [ "JJ" ], "C-5B": [ "NN", "NNP" ], "Evenings": [ "RB" ], "embarrassing": [ "JJ", "VBG" ], "GLS": [ "NNP" ], "AT*/NNP&T": [ "NN" ], "credit-rating": [ "JJ", "NN|JJ", "NN" ], "DA": [ "NN" ], "time-table": [ "NN" ], "Adley": [ "NNP" ], "sighted": [ "VBN", "VBD" ], "Fierce": [ "JJ" ], "fourth-ranked": [ "JJ" ], "desktop-publishing": [ "NN" ], "Adler": [ "NNP" ], "wept": [ "VBD", "VBN" ], "Hahnemann": [ "NNP" ], "Latowski": [ "NNP" ], "countertop": [ "NN" ], "abandonment": [ "NN" ], "Zebek": [ "NNP" ], "BOZELL": [ "NNP" ], "Westboro": [ "NNP" ], "slinky": [ "JJ" ], "Unflattering": [ "JJ" ], "catastrophic-care": [ "NN", "JJ" ], "instructional": [ "JJ" ], "bemoaning": [ "VBG" ], "slogan": [ "NN" ], "Wyvern": [ "NNP" ], "Compulsory": [ "JJ" ], "Down": [ "IN", "VB", "NNP" ], "bowled": [ "VBN" ], "Cherokees": [ "NNPS" ], "imitation": [ "NN" ], "Poems": [ "NNPS" ], "Vietnamese": [ "JJ", "NNP", "NNS", "NNPS" ], "playbacks": [ "NNS" ], "sidemen": [ "NNS" ], "paused": [ "VBD", "VBN" ], "refine": [ "VB" ], "Brockville": [ "NNP" ], "Lipper": [ "NNP" ], "Walter": [ "NNP" ], "Sheindlin": [ "NNP" ], "fortunately": [ "RB" ], "non-business": [ "JJ" ], "Munich": [ "NNP" ], "Industrywide": [ "JJ", "RB" ], "gaping": [ "VBG", "JJ" ], "afternoon": [ "NN" ], "superintend": [ "VB" ], "cranky": [ "JJ" ], "ponies": [ "NNS" ], "typewriting": [ "NN" ], "southern": [ "JJ" ], "unobtrusive": [ "JJ" ], "diva": [ "NN" ], "jousting": [ "VBG" ], "nondurables": [ "NNS" ], "prowlers": [ "NNS" ], "castling": [ "VBG" ], "ponied": [ "VBD" ], "lifting": [ "VBG", "JJ", "NN" ], "Parti": [ "NNP" ], "vomited": [ "VBD" ], "Stoics": [ "NNS" ], "surreys": [ "NNS" ], "wiggle": [ "NN", "JJ", "VB", "VBP" ], "Danish-American": [ "NNP" ], "townsman": [ "NN" ], "Sithe": [ "NNP" ], "automatically": [ "RB" ], "individual-type": [ "JJ" ], "McKinney": [ "NNP" ], "typical": [ "JJ" ], "novelized": [ "JJ" ], "albicans": [ "NNS" ], "Unlisted": [ "NNP" ], "nice-looking": [ "JJ" ], "MOTORS": [ "NNP", "NNPS" ], "DISCIPLINARY": [ "NN" ], "genteel": [ "JJ" ], "SKr1.5": [ "NNS" ], "tranche": [ "NN", "FW" ], "subs": [ "NNS" ], "fumed": [ "VBD" ], "appearin": [ "VBG" ], "Delhi": [ "NNP" ], "wracking": [ "VBG" ], "titers": [ "NNS" ], "Dictaphone": [ "NNP", "NN" ], "concierge": [ "NN" ], "according": [ "VBG" ], "artisan": [ "NN" ], "dreadfully": [ "RB" ], "showered": [ "VBN", "VBD" ], "hackles": [ "NNS" ], "restaurant-development": [ "NN" ], "overreacted": [ "VBN" ], "Wasson": [ "NNP" ], "refiner": [ "NN" ], "first-families": [ "NNS" ], "scaling": [ "VBG", "NN" ], "pain-bringing": [ "JJ" ], "courtship": [ "NN" ], "provision": [ "NN" ], "Specially": [ "RB" ], "first-rate": [ "JJ" ], "contemptible": [ "JJ" ], "residentially": [ "RB" ], "hard-to-spot": [ "JJ" ], "Thursdays": [ "NNPS" ], "costuming": [ "NN" ], "Santo": [ "NNP" ], "lawmen": [ "NNS" ], "Bulseco": [ "NNP" ], "Italian-American": [ "JJ" ], "Eliot": [ "NNP" ], "sugary": [ "JJ" ], "WFC": [ "NNP" ], "sugars": [ "NNS" ], "Peregrine": [ "NNP" ], "snapshots": [ "NNS" ], "ELWOOD": [ "NNP" ], "one-quarter-cent": [ "JJ" ], "operand": [ "NN" ], "prosecutorial": [ "JJ" ], "Reflects": [ "VBZ" ], "Freed": [ "VBN", "JJ", "NNP" ], "Rolfes": [ "NNP" ], "digressions": [ "NNS" ], "non-thermal": [ "JJ" ], "belligerence": [ "NN" ], "Vulcan": [ "NNP" ], "Jartran": [ "NNP" ], "airline-crash": [ "JJ" ], "happenings": [ "NNS" ], "Phyfe": [ "NNP" ], "communists": [ "NNS" ], "high-performing": [ "JJ" ], "photon-counting": [ "JJ" ], "virtuosi": [ "NNS" ], "film-makers": [ "NNS" ], "virtuoso": [ "JJ", "NN" ], "lugging": [ "VBG" ], "RoadRailer": [ "NNP" ], "Vihon": [ "NNP" ], "marina": [ "NN" ], "Reprints": [ "NNS" ], "marine": [ "NN", "JJ" ], "McGroarty": [ "NNP" ], "Videos": [ "NNPS" ], "coulda": [ "NN" ], "Sherlund": [ "NNP" ], "fonder": [ "JJR" ], "Compensation": [ "NNP", "NN" ], "Ninth": [ "NNP", "JJ" ], "stillbirths": [ "NNS" ], "disable": [ "VB" ], "Pinscher": [ "NN" ], "Freeport": [ "NNP" ], "tennis": [ "NN" ], "Rumors": [ "NNS", "NNP" ], "mayst": [ "MD" ], "There": [ "EX", "NN", "RB", "UH" ], "survivalists": [ "NNS" ], "angular": [ "JJ" ], "Hollings": [ "NNP" ], "impetuous": [ "JJ" ], "corinthian": [ "JJ" ], "Traynor": [ "NNP" ], "teacart": [ "NN" ], "tusks": [ "NNS" ], "free-lance": [ "JJ" ], "bed-time": [ "NN" ], "president-finance": [ "NN" ], "similitude": [ "NN" ], "relicensing": [ "NN" ], "Hourly": [ "JJ" ], "Scholar": [ "NNP" ], "thieving": [ "VBG", "JJ", "NN" ], "least-cost": [ "JJ" ], "eliminates": [ "VBZ" ], "acquirers": [ "NNS" ], "disabuse": [ "VB" ], "unstinting": [ "VBG", "JJ" ], "skimmers": [ "NNS" ], "Beverly": [ "NNP" ], "Flats": [ "NNP", "NNPS", "NNS" ], "eliminated": [ "VBN", "VBD" ], "handicaps": [ "NNS" ], "semantics": [ "NNS" ], "Nutley": [ "NNP" ], "Urbanization": [ "NN" ], "accordance": [ "NN" ], "hurl": [ "VB", "VBP" ], "accesses": [ "NNS" ], "rubout": [ "NN" ], "Glassworks": [ "NNP" ], "high-income": [ "JJ", "NN" ], "retracing": [ "VBG" ], "transcendant": [ "JJ" ], "accessed": [ "VBN" ], "photosynthesis": [ "NN" ], "lubricating-oil": [ "NN" ], "starve": [ "VB" ], "Gunter": [ "NNP" ], "premier": [ "NN", "JJ", "JJR" ], "Kittredge": [ "NNP" ], "invalidated": [ "VBN", "VBD" ], "dispersant": [ "NN" ], "investment-grade": [ "JJ", "NN" ], "Pappy": [ "NNP" ], "well-read": [ "JJ" ], "wallowed": [ "VBD", "VBN" ], "recover": [ "VB", "VBP" ], "premium-food": [ "NN" ], "bowling-league": [ "NN" ], "intellectual-property": [ "JJ" ], "infection-screening": [ "JJ" ], "idealization": [ "NN" ], "online": [ "JJ" ], "motivated": [ "VBN", "VBD", "JJ" ], "Poultry": [ "NN" ], "accustoms": [ "VBZ" ], "postmaster": [ "NN" ], "Borja": [ "NNP" ], "underserved": [ "JJ" ], "oppressive": [ "JJ" ], "SS-25s": [ "NNPS" ], "T-bill": [ "NN", "NNP" ], "anti-rightist": [ "JJ" ], "algebraic": [ "JJ" ], "Threlkeld": [ "NNP" ], "peaceful": [ "JJ" ], "unnavigable": [ "JJ" ], "cocopalm": [ "NN" ], "circuit-breaker": [ "NN", "JJ" ], "Fuck": [ "VB" ], "Dividend-related": [ "JJ" ], "five-hour": [ "JJ" ], "intrusions": [ "NNS" ], "Peterson-Kroll": [ "NNP" ], "slaves": [ "NNS" ], "Triborough": [ "NNP" ], "Telsmith": [ "NNP" ], "professional": [ "JJ", "NN" ], "ordination": [ "NN" ], "restaging": [ "VBG" ], "Sidley": [ "NNP" ], "psychobiology": [ "NN" ], "Lawson-Walters": [ "NNP" ], "state-sponsored": [ "JJ" ], "Advest": [ "NNP" ], "Political": [ "JJ", "NNP" ], "right-handed": [ "JJ" ], "Intercontinental": [ "NNP" ], "Reuters": [ "NNP", "NNS" ], "Role": [ "NN" ], "Rolf": [ "NNP" ], "gratified": [ "VBN", "JJ" ], "Drunkard": [ "NNP" ], "ocarina": [ "NN" ], "Roll": [ "NNP", "NN", "VB" ], "crashing": [ "VBG" ], "busily": [ "RB" ], "handlebars": [ "NNS" ], "Ludcke": [ "NNP" ], "Kansas": [ "NNP" ], "overbilled": [ "VBD" ], "skits": [ "NNS" ], "semi-controlled": [ "JJ" ], "buy-sell": [ "JJ" ], "threefold": [ "JJ", "RB" ], "Kansan": [ "NNP" ], "week-old": [ "JJ" ], "Wirthlin": [ "NNP" ], "growth-minded": [ "JJ" ], "reauthorize": [ "VB" ], "mini-component": [ "JJ" ], "domestic-production": [ "NN" ], "building-society": [ "JJ" ], "oil-covered": [ "JJ" ], "Sturbridge": [ "NNP" ], "ginmill": [ "NN" ], "differentiating": [ "VBG" ], "Ville": [ "NNP" ], "Villa": [ "NNP" ], "Champs": [ "NNP", "NNS" ], "recharged": [ "VBN" ], "true-false": [ "JJ" ], "Fiorina": [ "NNP" ], "Fiorini": [ "NNP" ], "pituitary": [ "JJ", "NN" ], "quorum": [ "NN" ], "Anticipation": [ "NN" ], "Santiveri": [ "NNP" ], "administratively": [ "RB" ], "whisked": [ "VBN" ], "protestations": [ "NNS" ], "tranquil": [ "JJ" ], "namely": [ "RB" ], "Janissaries": [ "NNS" ], "Millstein": [ "NNP" ], "OncoScint": [ "NNP" ], "angina": [ "NN" ], "explosive": [ "JJ", "NN" ], "reputed": [ "VBN", "JJ" ], "LDC": [ "NNP" ], "hypocrisies": [ "NNS" ], "whiskey": [ "NN" ], "Breaks": [ "NNP" ], "Attempts": [ "NNS" ], "preferred-share": [ "JJ", "NN" ], "LDS": [ "NNP" ], "LDP": [ "NNP" ], "complexion": [ "NN" ], "free-trade": [ "JJ", "NN" ], "concerto": [ "NN" ], "road-construction": [ "JJ", "NN" ], "squeaky-clean": [ "JJ" ], "fascinates": [ "VBZ" ], "verbiage": [ "NN" ], "notice": [ "NN", "VB", "VBP" ], "Johnson": [ "NNP" ], "prettiest": [ "JJS" ], "ACRES": [ "NNP" ], "school-improvement": [ "JJ", "NN" ], "Kreuter": [ "NNP" ], "Arne": [ "NNP" ], "African-safari": [ "JJ" ], "impromptu": [ "JJ", "NN" ], "institutional-type": [ "JJ" ], "onetime": [ "JJ" ], "cleave": [ "VB" ], "discernible": [ "JJ" ], "Metals": [ "NNP", "NNS", "NNPS" ], "Stepson": [ "NNP" ], "Metall": [ "NNP" ], "Lehigh": [ "NNP" ], "customarily": [ "RB" ], "long-distance": [ "JJ", "NN" ], "tax-anticipation": [ "JJ", "NN" ], "Death": [ "NN", "NNP" ], "half-mincing": [ "JJ" ], "binuclear": [ "JJ" ], "UniFirst": [ "NNP" ], "wreaths": [ "NNS" ], "renewals": [ "NNS" ], "pimples": [ "NNS" ], "Alcott": [ "NNP" ], "resurging": [ "VBG" ], "Healthsource": [ "NNP" ], "skew": [ "VB" ], "government-run": [ "JJ" ], "Reddington": [ "NNP" ], "dust-swirling": [ "JJ" ], "abating": [ "VBG" ], "upshots": [ "NNS" ], "subjecting": [ "VBG" ], "drop-in": [ "JJ" ], "Bicyclists": [ "NNPS" ], "external": [ "JJ" ], "Osborn": [ "NNP" ], "single-cell": [ "JJ" ], "Kenneth": [ "NNP" ], "slogans": [ "NNS" ], "humans": [ "NNS" ], "Weevil": [ "NNP" ], "Ganes": [ "NNP" ], "handicapped": [ "JJ", "VBN", "NNS" ], "Coiffet": [ "NNP" ], "Kennett": [ "NNP" ], "well-made": [ "JJ" ], "coolest": [ "JJS" ], "mandating": [ "VBG" ], "Spiro": [ "NNP" ], "ramp": [ "NN", "VB" ], "Cleave": [ "NNP" ], "interviewers": [ "NNS" ], "laggard": [ "JJ", "NN" ], "habitants": [ "NNS" ], "absorbedthe": [ "VB" ], "donating": [ "VBG" ], "Hismanal": [ "NNP" ], "stickers": [ "NNS" ], "northward": [ "RB" ], "Aeronautical": [ "NNP" ], "NSM": [ "NNP" ], "NSA": [ "NNP" ], "NSC": [ "NNP" ], "ex-House": [ "JJ" ], "personally-owned": [ "JJ" ], "dangerous...": [ ":" ], "gentlemen": [ "NNS" ], "officered": [ "VBN" ], "angered": [ "VBN", "JJ", "VBD" ], "Supposing": [ "VBG" ], "gorging": [ "VBG" ], "Whisky": [ "NN" ], "Pachelbel": [ "NNP" ], "investigated": [ "VBN", "VBD" ], "prefuh": [ "VB" ], "courtesan": [ "NN" ], "Homeroom": [ "NNP" ], "imprecations": [ "NNS" ], "non-publishers": [ "NNS" ], "bumpin": [ "VBG" ], "Marsico": [ "NNP" ], "Defectors": [ "NNS" ], "investigates": [ "VBZ" ], "Candle": [ "NNP" ], "Proprietorship": [ "NNP" ], "hundred-leaf": [ "JJ" ], "Klawitter": [ "NNP" ], "idiot-grin": [ "NN" ], "Telecom": [ "NNP" ], "Tibet": [ "NNP" ], "Lerach": [ "NNP" ], "Philosophical": [ "NNP" ], "laboratories": [ "NNS" ], "Knickerbocker": [ "NNP" ], "hit-making": [ "JJ" ], "laboratory-services": [ "JJ", "NNS" ], "heaps": [ "NNS" ], "knowledgeable": [ "JJ" ], "belittle": [ "VBP", "VB" ], "harddisk": [ "NN" ], "EXPRESSED": [ "VBD" ], "Indigenes": [ "NNP" ], "Reduction": [ "NNP", "NN" ], "madrigals": [ "NNS" ], "ribosomal": [ "JJ" ], "Spruill": [ "NNP" ], "terrains": [ "NNS" ], "Christ": [ "NNP", "NN", "UH" ], "answerable": [ "JJ" ], "horse-player": [ "NN" ], "staging": [ "VBG", "NN" ], "newly-weds": [ "NNS" ], "anti-LDP": [ "JJ" ], "senseless": [ "JJ" ], "refurbish": [ "VB" ], "smugglers": [ "NNS" ], "supercomputers": [ "NNS" ], "lender": [ "NN" ], "non-artistic": [ "JJ" ], "baloney": [ "NN" ], "Palmdale": [ "NNP" ], "Nuremberg": [ "NNP" ], "epoch-making": [ "JJ" ], "discontinue": [ "VB" ], "sawtimber": [ "NN" ], "early": [ "JJ", "JJ|RB", "RB" ], "Tour": [ "NNP", "NN" ], "symbolism": [ "NN" ], "oldline": [ "NN" ], "communiques": [ "NNS" ], "throwed": [ "VBD" ], "endorses": [ "VBZ" ], "one-month": [ "JJ" ], "External": [ "JJ", "NNP" ], "thrower": [ "NN" ], "nubile": [ "JJ" ], "Contant": [ "NNP" ], "hollowware": [ "NN" ], "dilution": [ "NN" ], "endorsed": [ "VBN", "VBD" ], "ceremonial": [ "JJ" ], "cause...": [ ":" ], "repricing": [ "NN" ], "Valenti": [ "NNP" ], "Houston-Galveston": [ "NNP" ], "chronology": [ "NN" ], "abetted": [ "VBN", "VBD" ], "Government": [ "NNP", "NN" ], "capital-goods": [ "NNS" ], "Zehnder": [ "NNP" ], "Dewhurst": [ "NNP" ], "asbestos-abatement": [ "JJ", "NN" ], "premonitory": [ "JJ" ], "dealership": [ "NN" ], "Wake": [ "VB", "NNP" ], "non-profit": [ "JJ" ], "Vaughn": [ "NNP" ], "rifling": [ "NN" ], "Wako": [ "NNP" ], "Thiele": [ "NNP" ], "business": [ "NN", "NNP" ], "Duren": [ "NNP" ], "strained": [ "VBD", "JJ", "VBN" ], "fast-cut": [ "JJ" ], "inherent": [ "JJ" ], "Long-distance": [ "NN" ], "emasculate": [ "VB" ], "pseudo-government": [ "NN" ], "MANUALS": [ "NNS" ], "gums": [ "NNS" ], "boldly": [ "RB" ], "parson": [ "NN" ], "parrot-like": [ "JJ" ], "Arhats": [ "NNPS" ], "bright-green": [ "JJ" ], "assassin": [ "NN" ], "Stennett": [ "NNP" ], "four-thirty": [ "RB" ], "rediscovering": [ "VBG" ], "Ostrowsky": [ "NNP" ], "Pils": [ "NNP" ], "Maffei": [ "NNP" ], "platoons": [ "NNS" ], "PROGRAM": [ "NN" ], "resuscitate": [ "VB" ], "your": [ "PRP$", "PRP|VBP" ], "Mon-Khmer": [ "NNP" ], "hot-line": [ "NN" ], "Rotha": [ "NNP" ], "Rego": [ "NNP" ], "assumed": [ "VBN", "VBD", "JJ" ], "unmodified": [ "JJ" ], "Priam": [ "NNP" ], "unreliability": [ "NN" ], "drank": [ "VBD" ], "low-cholesterol": [ "JJ" ], "Denials": [ "NNS" ], "melon-like": [ "JJ" ], "assumes": [ "VBZ" ], "Manufacturer": [ "NNP" ], "reassume": [ "VB" ], "Experience": [ "NN", "NNP" ], "Kondo": [ "NNP" ], "lymph": [ "NN" ], "McGregor": [ "NNP" ], "Johnston": [ "NNP" ], "Sports": [ "NNPS", "NNP", "NNS" ], "happening": [ "VBG", "NN" ], "autobiographical": [ "JJ" ], "historicity": [ "NN" ], "unrecognized": [ "JJ" ], "Stifel": [ "NNP" ], "Robinsonville": [ "NNP" ], "stapling": [ "NN", "VBG" ], "porcelains": [ "NNS" ], "Jefferson": [ "NNP", "NN" ], "high-volume": [ "JJ" ], "cornmeal": [ "NN" ], "Dietetic": [ "NNP" ], "charlatan": [ "NN" ], "Crisis": [ "NNP", "NN" ], "design...": [ ":" ], "Condoms": [ "NNS" ], "scanner": [ "NN" ], "bamboozled": [ "VBN" ], "scratching": [ "VBG", "NN" ], "landscape": [ "NN" ], "scanned": [ "VBD", "VBN" ], "Strike": [ "VB", "NN", "NNP" ], "human-leukocyte-derived": [ "JJ" ], "Banjo": [ "NNP" ], "Karns": [ "NNP" ], "Lal": [ "NNP" ], "innings": [ "NN", "NNS" ], "unwelcome": [ "JJ" ], "Lao": [ "NNP", "JJ" ], "hurtled": [ "VBD" ], "chandeliers": [ "NNS" ], "on-time": [ "JJ" ], "hydroxylation": [ "NN" ], "Lag": [ "NN" ], "Bertussi": [ "NNP" ], "Lab": [ "NNP", "NN" ], "Lac": [ "NNP" ], "valid": [ "JJ" ], "Lay": [ "NNP", "VBD", "VBP", "VB" ], "yow": [ "NN", "PRP" ], "Patten": [ "NNP" ], "Law": [ "NNP", "NN" ], "Lap": [ "NNP" ], "Las": [ "NNP" ], "Maack": [ "NNP" ], "Great": [ "NNP", "JJ" ], "two-digit": [ "JJ" ], "Foresman": [ "NNP" ], "Pickle": [ "NNP" ], "building": [ "NN", "VBG" ], "La.": [ "NNP" ], "condensation": [ "NN" ], "loutish": [ "JJ" ], "Moscow-allied": [ "JJ" ], "apathy": [ "NN" ], "marionettes": [ "NNS" ], "Shirwen": [ "NNP" ], "vines": [ "NNS" ], "Croom-Helm": [ "NNP" ], "linens": [ "NNS" ], "signalling": [ "VBG" ], "Melvin": [ "NNP" ], "tractors": [ "NNS" ], "seven-million-ton": [ "JJ" ], "jockeying": [ "VBG", "NN" ], "exhibitions": [ "NNS" ], "lopped": [ "VBD", "VBN" ], "Thortec": [ "NNP" ], "deadline": [ "NN" ], "worshipper": [ "NN" ], "benefits-consulting": [ "JJ" ], "dishwater": [ "NN" ], "Movieline": [ "NNP" ], "Inter-City": [ "NNP" ], "Bonhoeffer": [ "NNP" ], "disbelieves": [ "VBZ" ], "blueberries": [ "NNS" ], "hable": [ "JJ" ], "Braud": [ "NNP" ], "equivalence": [ "NN" ], "Braun": [ "NNP" ], "expounded": [ "VBD", "VBN" ], "stomping": [ "VBG", "NN" ], "Genson": [ "NNP" ], "spruced": [ "VBN" ], "cinematic": [ "JJ" ], "reneging": [ "VBG" ], "relieve": [ "VB" ], "reusing": [ "VBG" ], "arm-rise": [ "NN" ], "futures-investment": [ "JJ" ], "PCST": [ "NNP" ], "Malott": [ "NNP" ], "balancing": [ "NN", "VBG" ], "firebreaks": [ "NNS" ], "Seasonal": [ "JJ", "NNP" ], "Gwen": [ "NNP" ], "Geoffrion": [ "NNP" ], "Lully": [ "NNP" ], "last-mentioned": [ "JJ" ], "Fluctuation": [ "NN" ], "GREAT": [ "NNP", "JJ" ], "riverbanks": [ "NNS" ], "fence": [ "NN" ], "saga-like": [ "JJ" ], "Low-Income": [ "NNP" ], "Helliesen": [ "NNP" ], "race-drivers": [ "NNS" ], "Intair": [ "NNP" ], "casual": [ "JJ", "RB" ], "snippets": [ "NNS" ], "Martinez": [ "NNP" ], "Jonesborough": [ "NNP" ], "tussle": [ "NN" ], "darkness": [ "NN" ], "consumers": [ "NNS" ], "Boorse": [ "NNP" ], "Motorists": [ "NNS" ], "emotions": [ "NNS" ], "Zamora": [ "NNP" ], "retention": [ "NN" ], "cost-cutters": [ "NNS" ], "orthicon": [ "NN" ], "litters": [ "NNS" ], "Angst": [ "NN" ], "unsharpened": [ "VBN" ], "trunk": [ "NN" ], "gift-products": [ "NNS" ], "Homerists": [ "NNS" ], "Gov.": [ "NNP" ], "SAID": [ "VBD" ], "nonmembers": [ "NNS" ], "partaker": [ "VB" ], "partakes": [ "VBZ" ], "Mall": [ "NNP", "NN" ], "Spinrad": [ "NNP" ], "drawers": [ "NNS" ], "outsells": [ "VBZ" ], "Glorioso": [ "NNP" ], "B.J.": [ "NNP" ], "uniquely": [ "RB" ], "biodegradable": [ "JJ" ], "Cartesian": [ "JJ" ], "Chargeurs": [ "NNP" ], "Iodinated": [ "VBN" ], "four-month": [ "JJ" ], "cosmetic": [ "JJ", "NN" ], "layoff": [ "NN" ], "malapropisms": [ "NNS" ], "dispersement": [ "NN" ], "globes": [ "NNS" ], "Papua-New": [ "NNP" ], "Specimens": [ "NNS" ], "teach": [ "VB", "VBP" ], "Ehrhardt": [ "NNP" ], "metal-forming": [ "JJ" ], "flaws": [ "NNS" ], "Maser": [ "NNP" ], "country-life": [ "JJ" ], "ShowBiz": [ "NNP" ], "adminstration": [ "NN" ], "TOOLWORKS": [ "NNP" ], "Yarchoan": [ "NNP" ], "assessor": [ "NN" ], "home-bound": [ "JJ" ], "swoop": [ "NN" ], "countercultural": [ "JJ" ], "Birdie": [ "NNP" ], "Bless": [ "NNP", "VB" ], "stabilizing": [ "VBG" ], "car-parking": [ "JJ" ], "movie-of-the-week": [ "NN" ], "Hedrick": [ "NNP" ], "tortoise": [ "NN" ], "Kozuo": [ "NNP" ], "Atkinson": [ "NNP" ], "People": [ "NNS", "NN", "NNPS", "NNP" ], "coalition": [ "NN" ], "CHIMPS": [ "NNS" ], "Doubtful": [ "JJ" ], "entrapment": [ "NN" ], "Guttman": [ "NNP" ], "Pre-inaugural": [ "JJ" ], "Donnybrook": [ "NNP" ], "transcend": [ "VBP" ], "adviser": [ "NN" ], "Amharas": [ "NNPS" ], "Claeys": [ "NNP" ], "negligence": [ "NN" ], "boycott": [ "NN", "VB", "VBP" ], "Vizcaya": [ "NNP" ], "climates": [ "NNS" ], "less-expensive": [ "JJ", "JJR" ], "boat-building": [ "JJ" ], "unjacketed": [ "JJ" ], "Interstate": [ "NNP", "JJ", "NN" ], "processors": [ "NNS" ], "cafeteria-style": [ "JJ" ], "PGM": [ "NNP" ], "spreadsheet": [ "NN" ], "stayed": [ "VBD", "JJ", "VBN" ], "incisions": [ "NNS" ], "non-convertible": [ "JJ" ], "Habomai": [ "NNP" ], "worshipped": [ "NN" ], "Reinsurance": [ "NNP", "NN" ], "wigs": [ "NNS" ], "deja": [ "FW", "NN", "RB" ], "Impatiently": [ "RB" ], "derived": [ "VBN", "VBD" ], "foxtail": [ "NN" ], "triumphs": [ "NNS", "VBZ" ], "tries": [ "VBZ", "NNS" ], "Wollaeger": [ "NNP" ], "congratulating": [ "NN" ], "derives": [ "VBZ" ], "Sensing": [ "VBG" ], "a": [ "DT", "VB", ",", "VBN", "NNP", "FW", "JJ", "LS", "NN" ], "deluge": [ "NN" ], "enzymes": [ "NNS" ], "Sweet": [ "NNP", "JJ" ], "minicars": [ "NNS" ], "Kamens": [ "NNP" ], "bashing": [ "JJ", "VBG", "NN" ], "mantrap": [ "NN" ], "Sween": [ "NNP" ], "grizzled": [ "JJ" ], "committes": [ "NNS" ], "Accomplishing": [ "VBG" ], "tripolyphosphate": [ "NN" ], "preponderating": [ "JJ" ], "chalked": [ "VBN", "VBD" ], "show-piece": [ "JJ" ], "ex-chief": [ "JJ", "NN" ], "gainful": [ "JJ" ], "committee": [ "NN" ], "committed": [ "VBN", "JJ", "VBN|JJ", "VB", "VBD", "VBD|VBN" ], "crossborder": [ "JJ" ], "MIT": [ "NNP" ], "Wacklin": [ "NNP" ], "cardiovascular": [ "JJ" ], "limelight": [ "NN" ], "discloses": [ "VBZ" ], "tempering": [ "VBG" ], "Corroon": [ "NNP" ], "IMF-guided": [ "JJ" ], "gosaimasu": [ "FW" ], "brigands": [ "NNS" ], "overexcited": [ "VBN" ], "reluctance": [ "NN" ], "Strikes": [ "NNS" ], "actually": [ "RB" ], "unheated": [ "JJ" ], "Weitz": [ "NNP" ], "Putting": [ "VBG" ], "disclosed": [ "VBN", "JJ", "VBD" ], "lira": [ "NN", "NNS" ], "Tamil": [ "NNP" ], "tenfold": [ "RB", "JJ" ], "trail-worn": [ "JJ" ], "stiffen": [ "VB" ], "Evolution": [ "NNP", "NN" ], "seventy-foot": [ "JJ" ], "pre-empted": [ "VBN", "VBD" ], "second-to-die": [ "JJ" ], "Worried": [ "VBN", "JJ" ], "Victorian": [ "JJ", "NNP" ], "abberations": [ "NNS" ], "forefingers": [ "NNS" ], "Worries": [ "NNS" ], "nothin": [ "NN", "VBG" ], "Cavour": [ "NNP" ], "BILLS": [ "NNS", "NNPS" ], "lightens": [ "VBZ" ], "RANSOM": [ "NNP" ], "Pro-Am": [ "NNP" ], "decimal": [ "NN", "JJ" ], "Episodes": [ "NNS" ], "Whitcomb": [ "NNP" ], "messed": [ "VBD", "VBN" ], "C.E.": [ "NNP" ], "Commentaries": [ "NNPS" ], "Earnings": [ "NNS" ], "abstractionism": [ "NN" ], "international-capital": [ "JJ" ], "Hitachi": [ "NNP" ], "beyond": [ "IN", "RB" ], "passiveness": [ "NN" ], "veneration": [ "NN" ], "basements": [ "NNS" ], "Everett": [ "NNP" ], "meditating": [ "VBG" ], "Chatset": [ "NNP" ], "thrift-accounting": [ "NN" ], "fielded": [ "VBD", "VBN" ], "sustain": [ "VB", "VBP" ], "Diaper": [ "NNP", "NN" ], "R&D": [ "NN" ], "sympathized": [ "VBD" ], "R&M": [ "NNP" ], "Arnhem": [ "NNP" ], "upon": [ "IN", "RB", "RP" ], "ponderous": [ "JJ" ], "nationally": [ "RB" ], "Ignore": [ "VB" ], "cornstarch": [ "NN" ], "machine-family": [ "NN" ], "litigate": [ "VB" ], "coiffure": [ "NN" ], "diffused": [ "VBN" ], "retrial...": [ ":" ], "Takagi": [ "NNP" ], "terrible": [ "JJ" ], "bridegroom": [ "NN" ], "terribly": [ "RB" ], "expecting": [ "VBG" ], "businessmen": [ "NNS" ], "Darwinian": [ "JJ" ], "daisy": [ "NN" ], "heartbeat": [ "NN" ], "undergo": [ "VB", "VBP" ], "skin-care": [ "JJ", "NN" ], "sacrifice": [ "NN", "VB" ], "Frost": [ "NNP" ], "COURT": [ "NNP", "NN" ], "welfare-state": [ "JJ" ], "ever-growing": [ "JJ" ], "re-moralizing": [ "VBG" ], "Billmeyer": [ "NNP" ], "Kakumaru": [ "NNP" ], "mist": [ "NN" ], "miss": [ "VB", "VBP", "NN" ], "D*": [ "NNP" ], "SO-CALLED": [ "JJ" ], "inter-industry": [ "JJ" ], "inure": [ "VB", "VBP" ], "Sakellariadises": [ "NNS" ], "tax-and-spend": [ "JJ" ], "interwoven": [ "VBN", "VBD" ], "monetary-stroke-military": [ "JJ" ], "pinned": [ "VBN", "VBD" ], "Altman": [ "NNP" ], "fibrillation": [ "NN" ], "fielder": [ "NN" ], "Bumblebees": [ "NNS", "NNPS" ], "dealing": [ "VBG", "NN" ], "realign...": [ ":" ], "Montmartre": [ "NNP" ], "motor-vehicle": [ "NN" ], "bowed": [ "VBD", "VBN", "JJ" ], "Improved": [ "VBN", "JJ" ], "Check-List": [ "NNP" ], "bowel": [ "NN" ], "understructure": [ "NN" ], "Times-Mirror": [ "NNP" ], "outgrown": [ "VBN" ], "Improves": [ "VBZ" ], "deductibility": [ "NN" ], "monosyllables": [ "NNS" ], "inventing": [ "VBG" ], "translation": [ "NN" ], "Nellie": [ "NNP", "NN" ], "Croydon": [ "NNP" ], "Treadwell": [ "NNP" ], "grocery": [ "NN" ], "Rosenfeld": [ "NNP" ], "Spaced": [ "NNP" ], "grocers": [ "NNS" ], "Jukes": [ "NNP" ], "Sextet": [ "NNP" ], "bride": [ "NN" ], "Spaces": [ "NNPS" ], "intensities": [ "NNS" ], "long-sought": [ "JJ" ], "leafing": [ "VBG" ], "entranceway": [ "NN" ], "talker": [ "NN" ], "Peach": [ "NNP" ], "Baar": [ "NNP" ], "alongside": [ "IN", "RB" ], "SMYRNA": [ "NNP" ], "Elemental": [ "JJ" ], "emperors": [ "NNS" ], "Sykes": [ "NNP" ], "Bilbrey": [ "NNP" ], "more-informed": [ "JJ" ], "Enholme": [ "NNP" ], "lid": [ "NN" ], "lie": [ "VB", "VBP", "NN" ], "Dingle": [ "NNP" ], "jour": [ "FW" ], "Users": [ "NNS", "NNPS" ], "Ilkka": [ "NNP" ], "speculative": [ "JJ" ], "empowered": [ "VBN", "VBD" ], "transference": [ "NN" ], "sordid": [ "JJ" ], "lit": [ "VBD", "VBN", "JJ", "NN" ], "Covas": [ "NNP" ], "lip": [ "NN", "JJ" ], "glass-container": [ "NN", "JJ" ], "aggravating": [ "VBG", "JJ" ], "Datacomputer": [ "NNP" ], "Kenan": [ "NNP" ], "eight-partner": [ "JJ" ], "Baa1": [ "JJ" ], "Baa2": [ "JJ" ], "Baa3": [ "JJ" ], "Sharpshooter": [ "NNP" ], "supply-driven": [ "JJ" ], "promenade": [ "NN" ], "sponsored": [ "VBN", "VBD" ], "diametrically": [ "RB" ], "Massimo": [ "NNP" ], "Roomberg": [ "NNP" ], "Massimi": [ "NNP" ], "Rhys": [ "NNP" ], "archery": [ "NN" ], "anti-switching": [ "JJ" ], "chronicle": [ "NN" ], "clear": [ "JJ", "RB|JJ", "RB", "VB", "VBP" ], "broadened": [ "VBN", "VBD" ], "cleat": [ "NN" ], "Baskets": [ "NNS" ], "CHANGES": [ "NNS" ], "clean": [ "JJ", "VBP", "RB", "VB" ], "pickiest": [ "JJS" ], "Braden": [ "NNP" ], "nondoctrinaire": [ "JJ" ], "lest": [ "IN" ], "hyper": [ "JJ" ], "tincture": [ "NN" ], "Junid": [ "NNP" ], "sheik": [ "NN" ], "switch-hitter": [ "NN" ], "hyped": [ "VBD", "NN" ], "Ten-thousand-dollar": [ "JJ" ], "backdated": [ "VBD" ], "Savaiko": [ "NNP" ], "basic-cable": [ "JJ" ], "Loan-loss": [ "JJ" ], "stubbornness": [ "NN" ], "mid-1948": [ "JJ" ], "Chelmsford": [ "NNP" ], "surveyed": [ "VBN", "VBD" ], "Mandate": [ "NN" ], "circle": [ "NN", "VB" ], "Grow": [ "NNP", "VB" ], "juke": [ "NN" ], "Nederlandsche": [ "NNP" ], "far-lower": [ "JJR" ], "take-away": [ "JJ" ], "biopsy": [ "NN" ], "phosgene": [ "NN" ], "reinvesting": [ "VBG" ], "Medicare": [ "NNP" ], "break-away": [ "NN" ], "interminable": [ "JJ" ], "exhibiting": [ "VBG" ], "querying": [ "VBG" ], "waterproofing": [ "NN" ], "Tramp": [ "NNP" ], "Randol": [ "NNP" ], "ohmic": [ "JJ" ], "Warmongering": [ "VBG" ], "suspender-clad": [ "JJ" ], "end-of-the-quarter": [ "JJ" ], "new-business": [ "NN", "JJ" ], "mega-mergers": [ "NNS" ], "filled": [ "VBN", "JJ", "VBD" ], "DOCTORS": [ "NNS" ], "coffeehouse": [ "NN" ], "Winiarski": [ "NNP" ], "redefine": [ "VB" ], "Wealth": [ "NNP" ], "Pluses": [ "NNS" ], "bakes": [ "VBZ" ], "Cotillion": [ "NNP" ], "Isfahan": [ "NNP" ], "ready-to-wear": [ "JJ" ], "photo": [ "NN", "JJ" ], "Morrison": [ "NNP" ], "triple-A-rated": [ "JJ", "VBN" ], "Norddeutsche": [ "NNP" ], "circumscriptions": [ "NNS" ], "familiarity": [ "NN" ], "Adoptions": [ "NNS" ], "timeworn": [ "JJ" ], "incompatibility": [ "NN" ], "Costco": [ "NNP" ], "Dicarban": [ "NN" ], "Southampton": [ "NNP" ], "Lyttleton": [ "NNP" ], "Leopoldville": [ "NNP", "NN" ], "plutonium-recovery": [ "JJ" ], "invisibles": [ "NNS" ], "timidly": [ "RB" ], "propulsive": [ "JJ" ], "craters": [ "NNS" ], "WINSTON-SALEM": [ "NNP" ], "philanthropist": [ "NN" ], "McGillicuddy": [ "NNP" ], "sea-village": [ "NN" ], "next-generation": [ "NN", "JJ" ], "Biodegradable": [ "JJ" ], "rasped": [ "VBD" ], "mega": [ "JJ" ], "Curran": [ "NNP" ], "gaunt": [ "JJ" ], "campaign-finance": [ "JJ" ], "sensitive": [ "JJ", "NN" ], "grille": [ "NN" ], "phonies": [ "NNS" ], "Provincie": [ "NNP" ], "headed": [ "VBN", "VBD" ], "him": [ "PRP" ], "Panama": [ "NNP" ], "manners": [ "NNS" ], "Anhwei": [ "NNP" ], "Broker": [ "NNP", "NN" ], "header": [ "NN" ], "Vicksburg": [ "NNP" ], "Mt.": [ "NNP" ], "REMIC": [ "NNP" ], "Dotzler": [ "NNP" ], "Cabin": [ "NNP" ], "acculturation": [ "NN" ], "Deemed": [ "VBN" ], "Solel": [ "NNP" ], "glee-club": [ "NN" ], "arrest": [ "NN", "VBP", "VB" ], "Trigg": [ "NNP" ], "off-budget": [ "JJ", "NN" ], "Dunlaevy": [ "NNP" ], "uncritically": [ "RB" ], "ratings-getter": [ "NN" ], "reciprocate": [ "VB" ], "coarse": [ "JJ" ], "mutiny": [ "NN" ], "fiber-optic": [ "JJ" ], "Soler": [ "NNP" ], "territory": [ "NN" ], "Pilgrims": [ "NNPS" ], "delights": [ "VBZ", "NNS" ], "compromises": [ "NNS", "VBZ" ], "compromiser": [ "NN" ], "Especially": [ "RB" ], "Diocesan": [ "JJ" ], "determination": [ "NN" ], "compromised": [ "VBN", "VBD" ], "wrings": [ "VBZ" ], "save-the-wildlife": [ "JJ" ], "hobnob": [ "VB" ], "honest": [ "JJ" ], "yards": [ "NNS" ], "smolderingly": [ "RB" ], "cannibalizing": [ "VBG" ], "Konitz": [ "NNP" ], "once-sporadic": [ "JJ" ], "pseudo-profundities": [ "NNS" ], "while": [ "IN", "JJ", "NN", "RB", "VB" ], "Valvoline": [ "NNP" ], "Anschluss": [ "FW", "NNP" ], "Allie": [ "NNP" ], "Hotels": [ "NNPS", "NNP", "NNS" ], "uncompromising": [ "JJ" ], "nightingales": [ "NNS" ], "well-played": [ "JJ" ], "deworm": [ "VB" ], "tendered": [ "VBN", "JJ", "VBD" ], "rubber-like": [ "JJ" ], "first-place": [ "JJ" ], "streaking": [ "VBG" ], "cedar-roofed": [ "JJ" ], "RCA": [ "NNP", "NN" ], "mortis": [ "NN" ], "marble-columned": [ "JJ" ], "baseline": [ "NN", "JJ" ], "Kellaway": [ "NNP" ], "brutal-and": [ "JJ|CC" ], "Wrist": [ "NN" ], "overdoses": [ "NNS" ], "Unum": [ "NNP" ], "reselling": [ "VBG" ], "Beazer": [ "NNP" ], "Declining": [ "VBG", "JJ" ], "clearness": [ "NN" ], "hallway": [ "NN" ], "Mr.": [ "NNP", "NN" ], "bonus": [ "NN" ], "boo": [ "VB" ], "stashed": [ "VBN", "VBD" ], "stereo-sound": [ "JJ" ], "J.C.": [ "NNP" ], "revitalization": [ "NN", "JJ" ], "Shane": [ "NNP" ], "pre-1950s": [ "JJ" ], "asset-liability": [ "JJ", "NN" ], "Matos": [ "NNP" ], "Agin": [ "NNP" ], "formability": [ "NN" ], "haul": [ "NN", "VB" ], "foreign-investor": [ "NN" ], "auditor": [ "NN" ], "Agip": [ "NNP" ], "appalled": [ "VBN", "JJ" ], "scouring": [ "VBG", "NN" ], "coup": [ "NN", "FW" ], "lobsters": [ "NNS" ], "Hemmed": [ "VBN" ], "desk": [ "NN" ], "confiscation": [ "NN" ], "ignoble": [ "JJ" ], "Hemmer": [ "NNP" ], "cent-a-bushel": [ "JJ" ], "restlessly": [ "RB" ], "planetoids": [ "NNS" ], "OAS": [ "NNP" ], "Secretariate": [ "NNP" ], "Fulwood": [ "NNP" ], "dissimulation": [ "NN" ], "cross-currents": [ "NNS" ], "Shansi": [ "NNP" ], "waxing": [ "NN" ], "parentage": [ "NN" ], "conjured": [ "VBN", "VBD" ], "Citroen": [ "NN" ], "Predictably": [ "RB", "NNP" ], "Otsego": [ "NNP" ], "cemetery": [ "NN" ], "indigestible": [ "JJ" ], "Refsnes": [ "NNP" ], "Dever": [ "NNP" ], "stock-market": [ "NN", "JJ" ], "Prevention": [ "NNP", "NN" ], "fractionated": [ "VBN", "VBD" ], "harmonize": [ "VB" ], "Devey": [ "NNP" ], "descendant": [ "NN" ], "single-issue": [ "JJ", "NN" ], "Zaffarano": [ "NNP" ], "pre-empting": [ "JJ" ], "radiator": [ "NN" ], "determinedly": [ "RB" ], "Deparment": [ "NNP" ], "albino": [ "NN" ], "GROWTH": [ "NN" ], "short-changing": [ "JJ", "NN" ], "populous": [ "JJ" ], "opprobrium": [ "NN" ], "Bittania": [ "NNP" ], "carbon-14": [ "NN" ], "four-stroke": [ "JJ" ], "pillar": [ "NN" ], "CFTC": [ "NNP" ], "translates": [ "VBZ" ], "Recoup": [ "VB" ], "translated": [ "VBN", "VBD" ], "Skadden": [ "NNP" ], "perked": [ "VBD", "VBN" ], "Lumsden": [ "NNP" ], "mauve": [ "JJ" ], "Fears": [ "NNS", "VBZ" ], "Chubu": [ "NNP" ], "urgent": [ "JJ" ], "Retailing": [ "NN" ], "Breckenridge": [ "NNP" ], "Choose": [ "VB" ], "Attendants": [ "NNPS", "NNS" ], "Sibra": [ "NNP" ], "sabre-rattling": [ "NN" ], "Foreclosed": [ "VBN" ], "Cottle": [ "NNP" ], "Cardboard": [ "NN" ], "thyroxine": [ "NN" ], "eating": [ "VBG", "JJ", "NN" ], "Kerstin": [ "NNP" ], "booklet": [ "NN" ], "Bruises": [ "NNS" ], "jazzy": [ "JJ" ], "Pennzoil": [ "NNP" ], "Raccoon": [ "NNP" ], "Schang": [ "NNP" ], "subtract": [ "VB", "VBP" ], "paperwads": [ "NNS" ], "bureaus": [ "NN", "NNS" ], "Legalizing": [ "VBG" ], "blocs": [ "NNS" ], "samplers": [ "NNS" ], "scattergun": [ "NN" ], "simulation": [ "NN" ], "hinge": [ "VB", "NN" ], "sake": [ "NN", "FW" ], "Yemeni": [ "JJ", "NNP" ], "I.E.P.": [ "NNP" ], "tax-uniformity": [ "NN" ], "Redstone": [ "NNP", "NN" ], "block": [ "NN", "VBP", "JJ", "VB" ], "disclosure": [ "NN" ], "foreign-equity": [ "NN" ], "long-neck": [ "JJ" ], "SLHD": [ "NNP" ], "decertify": [ "VB" ], "ticket-transfer": [ "NN" ], "dissatisfaction": [ "NN" ], "strophe": [ "NN" ], "Cauffman": [ "NNP" ], "parables": [ "NNS" ], "fixed-term": [ "NN" ], "nine-page": [ "JJ" ], "wonderingly": [ "RB" ], "Republics": [ "NNPS", "NNP" ], "translucence": [ "NN" ], "translucency": [ "NN" ], "douse": [ "VB" ], "rivalries": [ "NNS" ], "kamikaze": [ "NN" ], "calumny": [ "NN" ], "hemming": [ "VBG" ], "Lerner": [ "NNP" ], "governs": [ "VBZ" ], "newel": [ "NN" ], "self-starters": [ "NNS" ], "turbulence": [ "NN" ], "reef": [ "NN" ], "Adrian": [ "NNP" ], "AC&R\\/CCL": [ "NNP" ], "amateurish": [ "JJ" ], "group-health": [ "NN" ], "amateurism": [ "NN" ], "Pallavicini": [ "NNP" ], "skulk": [ "VB" ], "skull": [ "NN" ], "Bar-Shavit": [ "NNP" ], "bewilders": [ "VBZ" ], "Ahern": [ "NNP" ], "Perspective": [ "NNP" ], "buglike": [ "JJ" ], "Guerbet": [ "NNP" ], "corrective": [ "JJ" ], "elitist": [ "JJ" ], "amphitheater": [ "NN" ], "iodotyrosines": [ "NNS" ], "gushy": [ "JJ" ], "Oakmont": [ "NNP" ], "spousal": [ "JJ" ], "Polar": [ "NNP" ], "Harding": [ "NNP" ], "jamboree": [ "NN" ], "nap": [ "NN", "VBP" ], "Designers": [ "NNPS", "NNP", "NNS" ], "electrical": [ "JJ" ], "Werke": [ "NNP" ], "kills": [ "VBZ", "NNS" ], "Teach": [ "VBP" ], "nay": [ "RB" ], "out-smart": [ "VB" ], "Alienated": [ "NNP" ], "oilheating": [ "NN" ], "reportedly": [ "RB" ], "fewest": [ "JJS" ], "luminaries": [ "NNS" ], "resign": [ "VB", "VBP" ], "lunging": [ "VBG" ], "averting": [ "VBG" ], "rested": [ "VBD", "VBN" ], "Scaring": [ "VBG" ], "orange-flavored": [ "JJ" ], "Documentary": [ "NNP" ], "Yalies": [ "NNS" ], "cryptographic": [ "JJ" ], "antecedent": [ "NN" ], "Empresa": [ "NNP" ], "sputniks": [ "NNS" ], "Rilwanu": [ "NNP" ], "fragmentarily": [ "RB" ], "bleached": [ "JJ", "VBN" ], "Stubbs": [ "NNP" ], "tactile": [ "JJ" ], "hallways": [ "NNS" ], "bleacher": [ "NN" ], "Yes": [ "UH", "NN", "RB", "NNP" ], "ribbies": [ "NNS" ], "Sell": [ "VB", "NNP" ], "left-leaning": [ "JJ" ], "cabinet-level": [ "JJ" ], "Self": [ "NNP", "NN" ], "kc.": [ "NN" ], "Rails": [ "NNPS" ], "salaries": [ "NNS" ], "Selz": [ "NNP" ], "sales-moving": [ "JJ" ], "aristocrat": [ "NN" ], "Reenact": [ "VB" ], "cement-and-glass": [ "JJ" ], "Painful": [ "JJ" ], "outperforming": [ "VBG" ], "Gaynor": [ "NNP" ], "Sabine": [ "NNP" ], "Sabina": [ "NNP" ], "Quadra": [ "NNP" ], "JVC\\/Victor": [ "NNP" ], "blobby": [ "JJ" ], "expelling": [ "VBG" ], "Perignon": [ "NNP" ], "wracked": [ "VBN", "VBD" ], "pinnacles": [ "NNS" ], "Borromini": [ "NNP" ], "Manya": [ "NNP" ], "Titus": [ "NNP" ], "Mrs.": [ "NNP" ], "Irimajiri": [ "NNP" ], "salaried": [ "JJ" ], "fictionalized": [ "VBN" ], "retold": [ "VBD" ], "Weisfield": [ "NNP" ], "exits": [ "NNS", "VBZ" ], "Veneto": [ "NNP" ], "tall-tale": [ "NN" ], "Tombrello": [ "NNP" ], "defocusing": [ "VBG" ], "verdict": [ "NN" ], "prosodic": [ "JJ" ], "Sentences": [ "NNS" ], "Karcher-Everly": [ "NNP" ], "inspection": [ "NN" ], "configurations": [ "NNS" ], "Conger": [ "NNP" ], "Orson": [ "NNP" ], "arbitragers": [ "NNS" ], "Reclamation": [ "NNP" ], "stoned": [ "VBN" ], "blitz": [ "NN" ], "Erroll": [ "NNP" ], "Equipment": [ "NNP", "NN" ], "graying": [ "VBG", "NN" ], "Schleiermacher": [ "NNP" ], "ardent": [ "JJ" ], "ferreting": [ "VBG" ], "cheapening": [ "VBG" ], "evokes": [ "VBZ" ], "Abner": [ "NNP" ], "dactyls": [ "NNS" ], "exacerbate": [ "VB", "VBP" ], "tribunal": [ "NN" ], "cell": [ "NN" ], "evoked": [ "VBN", "VBD" ], "Dannehower": [ "NNP" ], "tournaments": [ "NNS" ], "Barlow": [ "NNP" ], "apple-flavored": [ "JJ" ], "weirdy": [ "NN" ], "Created": [ "VBN" ], "car-maker": [ "NN" ], "D.C.-based": [ "JJ" ], "Wheelock": [ "NNP" ], "prescribe": [ "VB", "VBP" ], "Creates": [ "VBZ" ], "acoustics": [ "NNS" ], "likening": [ "VBG" ], "weirdo": [ "NN" ], "super-string": [ "JJ" ], "flunky": [ "NN" ], "Remingtons": [ "NNPS" ], "G.L.": [ "NNP" ], "engraving": [ "NN" ], "Strother": [ "NNP" ], "Long-lived": [ "JJ" ], "Hanch": [ "NNP" ], "morsels": [ "NNS" ], "veered": [ "VBD", "VBN" ], "Tooth-hurty": [ "NN" ], "preferentially": [ "RB" ], "Arabia": [ "NNP" ], "Arabic": [ "NNP", "JJ" ], "hexagon": [ "NN" ], "Suncor": [ "NNP" ], "Rolexes": [ "NNPS" ], "Legends": [ "NNPS" ], "danger": [ "NN" ], "shake": [ "VB", "NN", "VBP" ], "OGDEN": [ "NNP" ], "Miyazaki": [ "NNP" ], "apprehensive": [ "JJ" ], "Construct": [ "VB" ], "danged": [ "VBN" ], "re-living": [ "NN" ], "wrong-way": [ "JJ" ], "Lucian": [ "NNP" ], "Hare": [ "NNP" ], "comers": [ "NNS" ], "singing": [ "VBG", "JJ", "NN" ], "Photographing": [ "NNP" ], "property-liability": [ "NN" ], "subsidizes": [ "VBZ" ], "snoop": [ "VB" ], "current-coupon": [ "JJ" ], "child-care": [ "NN", "JJ" ], "Bookin": [ "NNP" ], "hightailing": [ "VBG" ], "Dreyer": [ "NNP" ], "contentment": [ "NN" ], "debt-financing": [ "JJ" ], "subsidized": [ "JJ", "VBN" ], "Varying": [ "JJ", "VBG" ], "exhaustive": [ "JJ" ], "placard-carrying": [ "JJ" ], "Memphis": [ "NNP", "NNS" ], "pleated": [ "JJ" ], "bureaucracy": [ "NN" ], "patient-advocacy": [ "NN" ], "biblical": [ "JJ" ], "mininum-wage": [ "NN" ], "becomes": [ "VBZ" ], "lacerate": [ "VB" ], "temblors": [ "NNS" ], "spare-parts": [ "JJ", "NNS" ], "blindsided": [ "VBN", "JJ" ], "disrobe": [ "VB" ], "becomed": [ "VBN" ], "sample": [ "NN", "JJ", "VB", "VBP" ], "LIKE": [ "IN" ], "corporates": [ "NNS" ], "sanctions": [ "NNS", "VBZ" ], "ride": [ "VB", "NN", "VBP" ], "Kuser": [ "NNP" ], "progressivity": [ "NN" ], "Video": [ "NNP", "NN" ], "Vote": [ "NN", "VB" ], "Tift": [ "NNP" ], "painless": [ "JJ" ], "initiatve": [ "NN" ], "crevasse": [ "NN" ], "TOP": [ "NNP" ], "semi-circle": [ "NN" ], "TOW": [ "NN" ], "Balletto": [ "NNP" ], "cross-section": [ "NN" ], "Figlewski": [ "NNP" ], "Dunham": [ "NNP" ], "shrift": [ "NN" ], "Pro-rated": [ "JJ" ], "Kentfield": [ "NNP" ], "tugboat": [ "NN" ], "college-completion": [ "JJ" ], "Compassion": [ "NNP" ], "vesicular": [ "JJ" ], "Thoreau": [ "NNP" ], "one-party": [ "JJ" ], "Bowater": [ "NNP", "NN" ], "prime-time": [ "JJ", "NN" ], "Sikkim": [ "NNP" ], "hand-lotion": [ "NN" ], "cottages": [ "NNS" ], "commodity-trading": [ "NN" ], "Alexis": [ "NNP" ], "insufficient": [ "JJ" ], "dogfight": [ "NN" ], "Alexia": [ "NNP" ], "X-ray-proof": [ "JJ" ], "Planar": [ "NNP" ], "crazes": [ "NNS" ], "Brocklin": [ "NNP" ], "Cayne": [ "NNP" ], "avarice": [ "NN" ], "crazee": [ "JJ" ], "crazed": [ "JJ", "VBD" ], "revise": [ "VB" ], "rove": [ "VB" ], "craggy": [ "JJ" ], "round-the-clock": [ "JJ" ], "unlawful": [ "JJ" ], "superimposing": [ "VBG" ], "Iturup": [ "NNP" ], "big-bucks": [ "JJ" ], "October-March": [ "NNP" ], "facilitated": [ "VBN" ], "advertorial": [ "JJ" ], "Dallas-based": [ "JJ" ], "Buksbaum": [ "NNP" ], "Seger": [ "NNP" ], "purgation": [ "NN" ], "mentioned": [ "VBN", "VBD" ], "converting": [ "VBG" ], "facilitates": [ "VBZ" ], "helicopters": [ "NNS" ], "Air-to-ground": [ "JJ" ], "stuggles": [ "VBZ" ], "Toynbee": [ "NNP" ], "Croasdale": [ "NNP" ], "C-12F": [ "NN" ], "two-wheel": [ "JJ" ], "Beginners": [ "NNS" ], "wife-to-be": [ "NN" ], "Jennie": [ "NNP" ], "excoriating": [ "VBG" ], "Arbel": [ "NNP" ], "Hammerton": [ "NNP" ], "Junk-portfolio": [ "NN" ], "sweets": [ "NNS" ], "fallible": [ "JJ" ], "Zeiss": [ "NNP" ], "Jenning": [ "NNP" ], "masters": [ "NNS" ], "dioxalate": [ "NN" ], "mastery": [ "NN" ], "swamping": [ "VBG" ], "consensual": [ "JJ" ], "Puny": [ "JJ" ], "registrations": [ "NNS" ], "magnitude": [ "NN" ], "Shipbuilding": [ "NNP", "NN" ], "Nordson": [ "NNP" ], "turn-of-the-century": [ "JJ" ], "blue-sky": [ "JJ" ], "junkets": [ "NNS" ], "globe": [ "NN" ], "unsurprised": [ "JJ" ], "home-plate": [ "NN" ], "Fifties": [ "NNPS" ], "measure": [ "NN", "VBP", "VB" ], "twenty-first": [ "JJ" ], "Bandstand": [ "NN" ], "Smyth": [ "NNP" ], "gallant": [ "JJ" ], "entry-price": [ "JJ" ], "Blakey": [ "NNP" ], "Xoma": [ "NNP" ], "sub-segments": [ "NNS" ], "groundwave": [ "NN" ], "playground": [ "NN" ], "ASME": [ "NNP" ], "thriving": [ "VBG", "JJ" ], "Zuratas": [ "NNP" ], "consigns": [ "VBZ" ], "statist": [ "JJ" ], "dissented": [ "VBD", "VBN" ], "A.J.C.": [ "NNP" ], "intruded": [ "VBN", "VBD" ], "high-performance": [ "JJ", "NN" ], "wines": [ "NNS" ], "Spinco": [ "NNP" ], "Draw": [ "VB", "NNP" ], "interplanetary": [ "JJ" ], "caregivers": [ "NNS" ], "Afghanistan": [ "NNP" ], "attending": [ "VBG" ], "intrudes": [ "VBZ" ], "intruder": [ "NN" ], "dissenter": [ "NN" ], "Eisenberg": [ "NNP" ], "Khaju": [ "NNP" ], "PHP": [ "NNP" ], "penknife": [ "NN" ], "Bestimmung": [ "FW" ], "snowstorm": [ "NN" ], "pilfering": [ "VBG" ], "pedimented": [ "VBN" ], "Comin": [ "VBG" ], "Seiki": [ "NNP" ], "Comic": [ "NNP" ], "Seiko": [ "NNP" ], "tramway": [ "NN" ], "Special-election": [ "NN" ], "veal": [ "NN" ], "indisposed": [ "JJ" ], "self-judging": [ "JJ" ], "rectifying": [ "VBG" ], "four-hour": [ "JJ" ], "Hart": [ "NNP" ], "signify": [ "VB" ], "Neo-Jazz": [ "NNP" ], "Perot-EDS": [ "JJ" ], "Animated": [ "JJ" ], "jump-start": [ "VB" ], "bears": [ "VBZ", "NNS" ], "squinting": [ "VBG" ], "durable": [ "JJ" ], "adopted": [ "VBN", "VBD", "JJ" ], "adoptee": [ "NN" ], "Gaafer": [ "NNP" ], "neurotransmitter": [ "NN" ], "jellyfish": [ "NN" ], "final": [ "JJ" ], "Valu": [ "NNP" ], "beard": [ "NN" ], "redesignation": [ "NN" ], "exactly": [ "RB" ], "Alumni": [ "NNPS" ], "Boogaard": [ "NNP" ], "Rivlin": [ "NNP" ], "bassist": [ "NN" ], "self-aggrandisement": [ "NN" ], "apologist": [ "NN" ], "frowningly": [ "RB" ], "swindled": [ "VBN", "VBD" ], "comity": [ "NN" ], "Norodom": [ "NNP" ], "photogenic": [ "JJ" ], "Meese": [ "NNP" ], "Formby": [ "NNP" ], "rough-and-ready-sounding": [ "JJ" ], "cravings": [ "NNS" ], "go-it-alone": [ "JJ" ], "Ante": [ "NN" ], "referral": [ "NN" ], "Anta": [ "NNP" ], "berths": [ "NNS" ], "re-entered": [ "VBD" ], "Span": [ "NN", "NNP" ], "thwarted": [ "VBN", "VBD" ], "partner-in-charge": [ "NN" ], "Spam": [ "NNP" ], "tabs": [ "NNS" ], "three-sentence": [ "JJ" ], "Sock": [ "VB" ], "market-making": [ "NN", "JJ" ], "Writers": [ "NNP", "NNS", "NNPS" ], "sundown": [ "NN" ], "Spar": [ "NNP" ], "dromozootic": [ "JJ" ], "Dream-Next": [ "NNP" ], "doubleA-2": [ "JJ" ], "sings": [ "VBZ" ], "Starzl": [ "NNP" ], "union-owned": [ "JJ" ], "kebob": [ "NN" ], "conformitarianism": [ "NN" ], "able": [ "JJ" ], "ably": [ "RB" ], "pronouncing": [ "JJ", "VBG" ], "unsmiling": [ "JJ" ], "Graphics": [ "NNP", "NNS", "NNPS" ], "seasonings": [ "NNS" ], "Appleton": [ "NNP" ], "medals": [ "NNS" ], "balloting": [ "NN" ], "counter-demand": [ "NN" ], "Delmore": [ "NNP" ], "cocaine-processing": [ "NN" ], "dubs": [ "VBZ" ], "Coopers": [ "NNP", "NNPS" ], "overlapping": [ "VBG", "JJ", "NN" ], "brother-in-law": [ "NN" ], "awe": [ "NN" ], "Vapor": [ "NN" ], "lay-up": [ "JJ" ], "plumber": [ "NN" ], "Ultimately": [ "RB" ], "obstructionist": [ "NN" ], "prickly": [ "JJ", "RB" ], "suture": [ "NN" ], "forlorn": [ "JJ" ], "Kwaishinsha": [ "NNP" ], "serge": [ "NN" ], "emerging": [ "VBG" ], "indoor": [ "JJ" ], "thirteen-year-old": [ "JJ" ], "mg.": [ "NN" ], "Self-sufficiency": [ "NN" ], "Leesona": [ "NNP" ], "Pedroli": [ "NNP" ], "midwife": [ "NN" ], "molest": [ "VB" ], "allaying": [ "VBG" ], "ostinatos": [ "NNS" ], "Tegucigalpa": [ "NNP" ], "Ilford": [ "NNP" ], "untimely": [ "JJ" ], "earned": [ "VBD", "JJ", "VBN" ], "Floodlights": [ "NNP" ], "grata": [ "FW" ], "winner": [ "NN" ], "employes": [ "NNS", "VBZ" ], "employer": [ "NN" ], "earner": [ "NN" ], "employee": [ "NN" ], "employed": [ "VBN", "VBD" ], "orderliness": [ "NN" ], "dodge": [ "VBP", "NN", "VB" ], "moralist": [ "NN" ], "Yard": [ "NNP" ], "up-pp": [ "RP" ], "overall": [ "JJ", "NN", "RB" ], "NAIR": [ "NNP" ], "Schell": [ "NNP" ], "once-sacred": [ "JJ" ], "buyer": [ "NN" ], "leases": [ "NNS", "VBZ" ], "Italian": [ "JJ", "NNP" ], "Levert": [ "NNP" ], "footlights": [ "NNS" ], "wellness": [ "NN" ], "sharpshooter": [ "NN" ], "moralism": [ "NN" ], "prossed": [ "FW" ], "Vigdor": [ "NNP" ], "contain": [ "VB", "VBP" ], "proponents": [ "NNS" ], "brand-loyal": [ "JJ" ], "NEA": [ "NNP" ], "hardwood": [ "NN" ], "chaperone": [ "NN" ], "orphan": [ "JJ", "NN" ], "Reub": [ "NNP" ], "under-50s": [ "NNS" ], "Salvagni": [ "NNP" ], "powder": [ "NN" ], "anastomoses": [ "NNS", "VBZ" ], "spy-in-training": [ "NN" ], "illiteracy": [ "NN" ], "Gaining": [ "VBG", "NNP" ], "statu": [ "FW" ], "stats": [ "NNS" ], "unilateralists": [ "NNS" ], "hit-and-run": [ "JJ" ], "state": [ "NN", "JJ", "VB", "VBP" ], "surmises": [ "NNS" ], "Gaillard": [ "NNP" ], "ciliated": [ "VBN" ], "anti-inflationary": [ "JJ" ], "insomma": [ "FW" ], "setbacks": [ "NNS" ], "boatels": [ "NNS" ], "sorely": [ "RB" ], "Assemblywoman": [ "NNP" ], "Colonna": [ "NNP" ], "C.C.B": [ "NNP" ], "Nekoosa": [ "NNP", "NN" ], "semi-annual": [ "JJ" ], "reallocated": [ "VBN" ], "gynecological": [ "JJ" ], "Aegean": [ "NNP" ], "retrievable": [ "JJ" ], "pileups": [ "NNS" ], "Pestered": [ "VBN" ], "once-stodgy": [ "JJ" ], "roil": [ "VB" ], "manifestations": [ "NNS" ], "spatter": [ "NN" ], "Result": [ "NN" ], "Tsou": [ "NNP" ], "semi-abstract": [ "JJ" ], "flocking": [ "VBG" ], "Over-achievers": [ "NNS" ], "spandex": [ "NN" ], "hydrotherapy": [ "NN" ], "passers-by": [ "NNS" ], "harmonic": [ "JJ" ], "amounted": [ "VBD", "VBN" ], "horticulturist": [ "NN" ], "waved": [ "VBD", "VBN" ], "rat-a-tat-tatty": [ "JJ" ], "tread": [ "VB", "NN" ], "Relax": [ "VB" ], "revenue-generating": [ "JJ" ], "outplacement": [ "NN" ], "gerbera": [ "NN" ], "Zuni": [ "NNP" ], "Tonawanda": [ "NNP" ], "Elvekrog": [ "NNP" ], "senses": [ "NNS", "VBZ" ], "husband-stealer": [ "NN" ], "adjourns": [ "VBZ" ], "nine-bedroom": [ "JJ" ], "Chandra": [ "NNP" ], "Regie": [ "NNP" ], "pharmacuetical": [ "JJ" ], "piqued": [ "VBN" ], "kava": [ "FW" ], "glossary": [ "NN" ], "electron-device": [ "NN" ], "pandemonium": [ "NN" ], "doctor-patient": [ "JJ" ], "Olszewskiof": [ "NNP" ], "Early": [ "RB", "NNP", "JJ" ], "reapportioned": [ "VBN" ], "CELEBRATIONS": [ "NNP" ], "Ter-Stepanova": [ "NNP" ], "free-market-oriented": [ "JJ" ], "sustenance": [ "NN" ], "W.R.": [ "NNP" ], "Saveth": [ "NNP" ], "blasphemous": [ "JJ" ], "balloon": [ "NN", "VBP", "VB" ], "tappet": [ "NN" ], "begat": [ "VBD" ], "sideboards": [ "NNS" ], "S-20": [ "NN" ], "rattled": [ "VBN", "JJ", "VBD" ], "eclectic": [ "JJ", "NN" ], "tapped": [ "VBD", "VBN" ], "Apolo": [ "NNP" ], "Mirante": [ "NNP" ], "Coastal": [ "NNP", "JJ" ], "reactionary": [ "JJ", "NN" ], "line-up": [ "NN" ], "effect": [ "NN", "JJ", "VB", "VBP" ], "EYEWEAR": [ "NN" ], "trembles": [ "VBZ" ], "Kurds": [ "NNPS" ], "discouraged": [ "VBN", "VBD", "JJ" ], "disorderliness": [ "NN" ], "embryo": [ "NN" ], "herpetology": [ "NN" ], "supernatant": [ "JJ" ], "surfboard": [ "NN" ], "intercede": [ "VB" ], "cent-per-barrel": [ "JJ" ], "universalize": [ "VBP" ], "no-nonsense": [ "JJ" ], "steoreotyped": [ "JJ" ], "Have": [ "VBP", "NNP", "VB" ], "draconian": [ "JJ" ], "BE": [ "VB" ], "BG": [ "NNP", "NN" ], "working-day": [ "JJ" ], "BA": [ "NNP" ], "Tecumseh": [ "NNP" ], "ocean-going": [ "JJ" ], "Nickerson": [ "NNP" ], "purifier": [ "NN" ], "linage": [ "NN" ], "BK": [ "NNP" ], "BT": [ "NNP" ], "BV": [ "NNP" ], "marauding": [ "VBG" ], "Collections": [ "NNS" ], "Germanized": [ "VBN" ], "Reinker": [ "NNP" ], "laurel": [ "NN" ], "purified": [ "VBN" ], "sputtering": [ "JJ" ], "Be": [ "VB", "NNP" ], "eye-strain": [ "NN" ], "Bo": [ "NNP" ], "logged": [ "VBN", "VBD" ], "Twenty-one-year-old": [ "NN" ], "sepsis": [ "NN" ], "Kandu": [ "NNP" ], "luncheons": [ "NNS" ], "By": [ "IN", "RB", "NNP", "UH" ], "Bershad": [ "NNP" ], "ample": [ "JJ" ], "Lackey": [ "NNP" ], "devisee": [ "NN" ], "devised": [ "VBN", "VBD" ], "self-assurance": [ "NN" ], "early-departure": [ "NN" ], "burden": [ "NN", "VB", "VBP" ], "side-looking": [ "JJ" ], "Mottus": [ "NNP" ], "devises": [ "VBZ" ], "PhacoFlex": [ "NNP" ], "strategic-arms": [ "JJ", "NNS", "NN" ], "glazing": [ "VBG" ], "England": [ "NNP" ], "B.": [ "NNP", ".", "LS", "NN" ], "al-Faisal": [ "NNP" ], "B2": [ "NN", "JJ" ], "setups": [ "NNS" ], "less-rigorous": [ "JJR" ], "ill-understood": [ "JJ" ], "glycosides": [ "NNS" ], "shed": [ "VB", "VBD", "VBN", "VBP", "NN" ], "Bombieri": [ "NNP" ], "shea": [ "NN" ], "repositories": [ "NNS" ], "belonged": [ "VBD", "VBN" ], "grizzlies": [ "NNS" ], "sleighs": [ "NNS" ], "non-newtonian": [ "JJ" ], "restudy": [ "NN" ], "fearlast": [ "NN" ], "redress": [ "VB", "NN" ], "deliverance": [ "NN" ], "midwestern": [ "JJ" ], "MacFarlanes": [ "NNP" ], "reduced-instruction": [ "NN" ], "Draper": [ "NNP" ], "Landonne": [ "NNP" ], "kettle": [ "NN" ], "Detroit-to-Tokyo": [ "JJ" ], "Overfunding": [ "VBG" ], "Voell": [ "NNP" ], "heir-apparent": [ "JJ", "NN" ], "Gaylor": [ "NNP" ], "commawnded": [ "VBD" ], "co-produced": [ "VBD", "VBN", "JJ" ], "Crosse": [ "NNP" ], "prohibited": [ "VBN", "VBD" ], "chancy": [ "JJ" ], "torsos": [ "NNS" ], "Ukropina": [ "NNP" ], "crystallizing": [ "VBG" ], "Jugend": [ "NNP" ], "Secord": [ "NNP" ], "co-authors": [ "VBZ" ], "staked": [ "VBN", "VBD" ], "scribing": [ "NN" ], "Tadeusz": [ "NNP" ], "gun-slinger": [ "NN" ], "delicacies": [ "NNS" ], "toppings": [ "NNS" ], "Novosibirsk": [ "NNP" ], "semi-inflated": [ "JJ" ], "arrogantly": [ "RB" ], "Flesher": [ "NNP" ], "Bonomo": [ "NNP" ], "stakes": [ "NNS", "VBZ" ], "primal": [ "JJ" ], "Seydoux": [ "NNP" ], "Jacquette": [ "NNP" ], "bridging": [ "VBG", "JJ" ], "due": [ "JJ", "IN", "NN", "RB", "NNS" ], "infer...": [ ":" ], "receptor": [ "NN" ], "Netherlands-based": [ "JJ" ], "strategy": [ "NN" ], "endeavours": [ "NNS" ], "utility": [ "NN", "JJ" ], "grassfire": [ "NN" ], "sopranos": [ "NNS" ], "Generic": [ "NNP" ], "Vegas": [ "NNP" ], "new-job": [ "JJ" ], "divulging": [ "VBG" ], "Sheeting": [ "NN" ], "Arrange": [ "VB" ], "cricket": [ "NN" ], "Vending": [ "NN" ], "Successive": [ "JJ" ], "generalship": [ "NN" ], "evacuate": [ "VB" ], "uncurled": [ "VBD" ], "Teschner": [ "NNP" ], "Allen-film": [ "NN" ], "Cinnamon": [ "NNP" ], "Highland": [ "NNP" ], "palmtop": [ "NN" ], "pi": [ "NN" ], "Sicilian": [ "JJ", "NNP" ], "Kamloops": [ "NNP" ], "cells": [ "NNS" ], "hosting": [ "VBG" ], "Michaelson": [ "NNP" ], "cruel": [ "JJ" ], "manifesto": [ "NN" ], "Sponsor": [ "NNP" ], "steepest": [ "JJS" ], "good-driver": [ "JJ" ], "Probes": [ "NNPS" ], "broader-based": [ "JJ", "JJR" ], "slugfest": [ "NN", "JJS" ], "Centocor": [ "NNP" ], "devise": [ "VB", "VBP" ], "Pfc.": [ "NNP" ], "penny": [ "NN" ], "Left-stream": [ "JJ" ], "magnates": [ "NNS" ], "resented": [ "VBD", "VBN" ], "Proleukin": [ "NNP" ], "ideational": [ "JJ" ], "Willens": [ "NNP" ], "chromosome": [ "NN" ], "Mining": [ "NNP", "NN" ], "Explosion": [ "NN" ], "scowls": [ "VBZ" ], "hazelnuts": [ "NNS" ], "fencing": [ "NN" ], "foreseeing": [ "VBG" ], "coffeepot": [ "NN" ], "palletized": [ "VBN" ], "paratroopers": [ "NNS" ], "chemise": [ "NN" ], "policy-making": [ "JJ", "NN", "VBG" ], "misconceptions": [ "NNS" ], "Depicting": [ "VBG" ], "chemist": [ "NN" ], "Like": [ "IN", "RB" ], "ecstatic": [ "JJ", "NN" ], "Ken": [ "NNP" ], "charge-offs": [ "NNS" ], "refreshments": [ "NNS" ], "Mathews": [ "NNP" ], "sleep-wakefulness": [ "NN" ], "owner-bred": [ "JJ" ], "Neglect": [ "VBP", "NN" ], "So-Ho": [ "NNP" ], "strike-force": [ "NN" ], "using": [ "VBG" ], "Discover": [ "NNP" ], "Melcher": [ "NNP" ], "poplin": [ "NN" ], "ill-gotten": [ "JJ" ], "theory-teaching": [ "VBG" ], "retail-distribution": [ "NN" ], "secondly": [ "RB" ], "Appear": [ "VBP" ], "nun": [ "NN" ], "Improvement": [ "NNP", "NN" ], "Bolet": [ "NNP" ], "nigh": [ "RB" ], "scheming": [ "JJ", "VBG" ], "colloquies": [ "NNS" ], "captain": [ "NN", "VBP" ], "minuscule": [ "JJ" ], "clearing-firm": [ "JJ" ], "offenses": [ "NNS" ], "Eizenstat": [ "NNP" ], "presente": [ "JJ" ], "sweetest": [ "JJS" ], "bimbos": [ "NNS" ], "presents": [ "VBZ", "NNS" ], "nuceoside": [ "NN" ], "nominal": [ "JJ", "NN" ], "hardtack": [ "NN" ], "sub-group": [ "NN" ], "trousers": [ "NNS" ], "saver": [ "NN" ], "slow-moving": [ "JJ" ], "saves": [ "VBZ" ], "cruising": [ "VBG", "NN" ], "Rail-transit": [ "NN" ], "Cabletron": [ "NNP" ], "connects": [ "VBZ" ], "compacts": [ "NNS" ], "Django": [ "NNP" ], "vice-regent": [ "JJ" ], "Becht": [ "NNP" ], "ADOPTED": [ "VBD" ], "Farge": [ "NNP" ], "EG&G": [ "NNP", "NN" ], "courageous": [ "JJ" ], "convexity": [ "NN" ], "Physiologically": [ "RB" ], "Littleton": [ "NNP" ], "laurels": [ "NNS" ], "coin-operated": [ "JJ" ], "Golar": [ "NNP" ], "nerve-cell": [ "JJ" ], "convenience": [ "NN" ], "Somoza": [ "NNP" ], "roundness": [ "NN" ], "inaction": [ "NN" ], "Frisch": [ "NNP" ], "farmhouse": [ "NN" ], "embouchure": [ "NN" ], "quilt": [ "NN" ], "warns": [ "VBZ" ], "pyramid": [ "NN", "VB" ], "second-in-command": [ "NN" ], "shoveled": [ "VBD", "VBN" ], "helluva": [ "JJ" ], "qualitatively": [ "RB" ], "cactus": [ "NN" ], "quill": [ "NN" ], "even": [ "RB", "JJ", "VB", "RB|JJ" ], "betraying": [ "VBG" ], "dividend-capture": [ "NN" ], "saved": [ "VBN", "VBD" ], "malleable": [ "JJ" ], "Traub": [ "NNP" ], "untenanted": [ "JJ" ], "maverick": [ "NN", "JJ" ], "Fardulli": [ "NNP" ], "plunked": [ "VBD" ], "anteaters": [ "NNS" ], "Sometimes": [ "RB" ], "Pesqueira": [ "NNP" ], "statehood": [ "NN" ], "Flip": [ "NNP" ], "refinement": [ "NN" ], "deposition": [ "NN" ], "Systran": [ "NNP" ], "Wonda": [ "NNP", "NN" ], "cross-blending": [ "JJ" ], "Labaton": [ "NNP" ], "by-roads": [ "NNS" ], "Smokies": [ "NNPS" ], "Haig": [ "NNP" ], "jams": [ "NNS" ], "Carmelite": [ "JJ" ], "Hail": [ "NNP" ], "expedited": [ "VBN", "VBD", "JJ" ], "Hair": [ "NN" ], "ornamental": [ "JJ" ], "superstitious": [ "JJ" ], "permit": [ "VB", "VBP", "NN" ], "aikido": [ "FW" ], "fathered": [ "VBD" ], "high-wire": [ "JJ" ], "shrubbery-lined": [ "JJ" ], "pray-for-growth-later": [ "JJ" ], "Fargo": [ "NNP" ], "business-interruption": [ "JJ" ], "Senate-backed": [ "JJ" ], "schooling": [ "NN", "VBG" ], "cost-control": [ "JJ" ], "Giffen": [ "NNP" ], "Eggers": [ "NNP" ], "circumvent": [ "VB" ], "particularity": [ "NN" ], "overhear": [ "VB" ], "overheat": [ "VB" ], "Computer-generated": [ "JJ" ], "Mankowski": [ "NNP" ], "barks": [ "VBZ" ], "Overvalued": [ "JJ" ], "secessionist": [ "NN" ], "overhead": [ "JJ", "NN", "RB" ], "calm": [ "JJ", "NN", "VB" ], "name-drops": [ "VBZ" ], "prior-year": [ "JJ" ], "self-regulatory": [ "JJ" ], "twirled": [ "JJ" ], "Prentiss": [ "NNP" ], "Miniver": [ "NNP" ], "Cliburn": [ "NNP" ], "Existentialists": [ "NNS" ], "composite": [ "JJ", "NN" ], "Ravenspurn": [ "NNP" ], "week-long": [ "JJ" ], "spiraled": [ "VBD" ], "product-marketing": [ "NN" ], "Inning": [ "NN" ], "plaintive": [ "JJ" ], "%CHG": [ "NN" ], "reality-based": [ "JJ" ], "gasoline": [ "NN" ], "Lauchli": [ "NNP" ], "gossiping": [ "VBG" ], "Advertisers": [ "NNS", "NNP", "NNPS" ], "audiophiles": [ "NNS" ], "Drexel-managed": [ "JJ" ], "laughs": [ "VBZ", "NNS" ], "honed": [ "VBN", "JJ" ], "involve": [ "VB", "VBP" ], "Relatives": [ "NNS" ], "discography": [ "NN" ], "French-Canadian": [ "NNP" ], "Waldensian": [ "JJ" ], "savers": [ "NNS" ], "Biofeedback": [ "NNP" ], "funky": [ "JJ" ], "motel-keeping": [ "NN" ], "Veblen": [ "NNP" ], "salivate": [ "VB" ], "bathrobes": [ "NNS" ], "quok": [ "FW" ], "cavernous": [ "JJ" ], "Nineveh": [ "NNP" ], "Starbird": [ "NNP" ], "high-loss": [ "JJ" ], "curiosity": [ "NN" ], "two-syllable": [ "JJ" ], "Budweisers": [ "NNS" ], "Dyncorp": [ "NNP" ], "purchase": [ "NN", "VB", "VBP" ], "All": [ "DT", "RB", "NNP", "PDT", "NNS|DT" ], "parading": [ "VBG" ], "Civic": [ "NNP", "JJ" ], "Civil": [ "NNP", "JJ" ], "stand-alone": [ "JJ" ], "Telerate": [ "NNP", "NN" ], "assuredly": [ "RB" ], "bout-de-souffle": [ "FW" ], "square-mile": [ "JJ" ], "waited": [ "VBD", "VBN" ], "uninsured": [ "JJ" ], "Alt": [ "NNP" ], "operations": [ "NNS" ], "deco": [ "NN" ], "unfolds": [ "VBZ" ], "maraschino": [ "NN" ], "deck": [ "NN", "VB" ], "steel-making": [ "JJ" ], "idiotypes": [ "NNS" ], "Humphreys": [ "NNP" ], "Opportunities": [ "NNS", "NNP", "NNPS" ], "eyewear": [ "JJ", "NN" ], "unmalicious": [ "JJ" ], "fortify": [ "VB" ], "monoclonal-antibody": [ "NN" ], "down.": [ "RP" ], "responsive": [ "JJ" ], "high-paid": [ "JJ" ], "Ventres": [ "NNP" ], "Virgilio": [ "NNP" ], "just-say-no": [ "JJ" ], ",": [ "," ], "blackened": [ "VBN", "JJ" ], "Beck": [ "NNP" ], "Cutting": [ "VBG", "NNP", "NN" ], "carve": [ "VB", "VBP" ], "Mexican-food": [ "JJ" ], "apogee": [ "NN" ], "imperturbable": [ "JJ" ], "repairmen": [ "NNS" ], "donors": [ "NNS" ], "sermons\\/From": [ "JJ" ], "Ruckert": [ "NNP" ], "downs": [ "NNS" ], "nightclubs": [ "NNS" ], "BALANCES": [ "NNS" ], "Steps": [ "NNPS", "VBZ", "NNS" ], "WOODSTOCK": [ "NNP" ], "rhapsodize": [ "VBP" ], "decorator": [ "NN" ], "musically": [ "RB" ], "leaner": [ "JJR", "RBR" ], "doubtingly": [ "RB" ], "mistrust": [ "NN", "VB" ], "Goebel": [ "NNP" ], "speak-easy": [ "NN" ], "Stop-close-only": [ "JJ" ], "victories": [ "NNS" ], "successorship": [ "NN" ], "sullying": [ "VBG" ], "spinneret": [ "NN" ], "inserts": [ "NNS" ], "pay-per-view": [ "JJ" ], "clarets": [ "NNS" ], "ministering": [ "VBG" ], "Factor": [ "NNP", "NN" ], "optimistically": [ "RB" ], "extract": [ "VB", "NN", "VBP" ], "safe-sounding": [ "JJ" ], "scoreless": [ "JJ" ], "cartridge": [ "NN" ], "airmailed": [ "VBD" ], "Piddington": [ "NNP" ], "hushed": [ "JJ" ], "sparkle": [ "NN" ], "Weisman": [ "NNP" ], "Njust": [ "NNP" ], "advancers": [ "NNS" ], "Pier": [ "NNP" ], "assaults": [ "NNS" ], "voltages": [ "NNS" ], "pityingly": [ "RB" ], "curtailment": [ "NN" ], "proportionality": [ "NN" ], "Jalaalwalikraam": [ "NNP" ], "LeMay": [ "NNP" ], "Nixon": [ "NNP" ], "rinds": [ "NNS" ], "saggy": [ "JJ" ], "shaggy": [ "JJ" ], "Gulliver": [ "NNP" ], "starts": [ "VBZ", "NNS", "VBP" ], "cackled": [ "VBD" ], "Noblesville": [ "NNP" ], "Defect": [ "NN" ], "Panda": [ "NNP", "NN" ], "communications-equipment": [ "NN" ], "deems": [ "VBZ" ], "Computation": [ "NNP" ], "Mirror": [ "NNP" ], "junk-holders": [ "NNS" ], "Cod": [ "NNP" ], "Swahili": [ "NNP" ], "Yoneda": [ "NNP" ], "longue": [ "NN" ], "Besset": [ "NNP" ], "McGrevin": [ "NNP" ], "Wootton": [ "NNP" ], "Grigory": [ "NNP" ], "peculiarity": [ "NN" ], "Borrowing": [ "VBG" ], "disappearing": [ "VBG" ], "Sattig": [ "NNP" ], "snubbing": [ "VBG", "NN" ], "Halls": [ "NNP" ], "Grigori": [ "NNP" ], "MUTUAL": [ "JJ" ], "terry-cloth": [ "NN" ], "spinach": [ "NN" ], "Wanna": [ "VB", "NNP", "VBP" ], "concussion": [ "NN" ], "recruiting": [ "VBG", "NN" ], "kolkhozes": [ "NNS" ], "union-represented": [ "JJ" ], "Corollary": [ "NN" ], "zeros": [ "NNS" ], "industrial-services": [ "JJ" ], "sometimes-tawdry": [ "JJ" ], "twister": [ "NN" ], "curtails": [ "VBZ" ], "Petrobras": [ "NNP" ], "BBN": [ "NNP" ], "moisture": [ "NN" ], "government-business": [ "NN" ], "malls": [ "NNS" ], "BBC": [ "NNP" ], "BBB": [ "NNP" ], "ten-by-ten-mile": [ "JJ" ], "Telos": [ "NNP", "NNS" ], "Troop": [ "NNP" ], "Waterhouse": [ "NNP" ], "peculiar": [ "JJ", "NN" ], "symptom": [ "NN" ], "congratulatory": [ "JJ" ], "anxiety": [ "NN" ], "Canberra": [ "NNP" ], "fraternisation": [ "NN" ], "Soviet-finished": [ "JJ" ], "full-service": [ "JJ" ], "purifiers": [ "NNS" ], "divisiveness": [ "NN" ], "subhumanity": [ "NN" ], "untrue...": [ ":" ], "on-the-go": [ "JJ" ], "Rudder": [ "NNP" ], "streetfighter": [ "NN" ], "Downey": [ "NNP" ], "hitting-pitching": [ "JJ" ], "Kloeckner": [ "NNP" ], "churn": [ "VB", "VBP" ], "Grooms": [ "NNP" ], "horde": [ "NN" ], "Norwest": [ "NNP" ], "Dismantle": [ "VB" ], "much-criticized": [ "JJ" ], "Tripod": [ "NNP" ], "Pianists": [ "NNS" ], "light-truck": [ "JJ", "NN" ], "chest": [ "NN" ], "chess": [ "NN" ], "streaked": [ "VBD", "VBN" ], "hoods": [ "NNS" ], "automotive-parts": [ "JJ" ], "waist-length": [ "JJ" ], "Hixson": [ "NNP" ], "bye": [ "VB" ], "Pennell": [ "NNP" ], "Cannell": [ "NNP" ], "Traviata": [ "NNP" ], "eight-thirty": [ "JJ" ], "three-inch": [ "JJ" ], "Rosemary": [ "NNP" ], "trusteeship": [ "NN" ], "unknowingly": [ "RB" ], "offersey": [ "NNS" ], "crevice": [ "NN" ], "by-pass": [ "NN" ], "money-laundering": [ "NN" ], "Hillcrest": [ "NNP" ], "Skandia": [ "NNP" ], "Commercants": [ "NNP" ], "clocked": [ "VBN" ], "reprinted": [ "VBN", "VBD" ], "fungal": [ "JJ" ], "boiler-room": [ "NN" ], "Alper": [ "NNP" ], "retire": [ "VB", "VBP" ], "tradition-bound": [ "JJ" ], "top-priority": [ "JJ" ], "deftly": [ "RB" ], "treaties": [ "NNS" ], "upfield": [ "RB" ], "uneasiness": [ "NN" ], "discourteous": [ "JJ" ], "stepping": [ "VBG", "JJ" ], "Dalrymple": [ "NNP" ], "Beigel": [ "NNP" ], "marvelously": [ "RB" ], "Bake-off": [ "NNP" ], "Roadway": [ "NNP" ], "Gioconda": [ "NNP" ], "cripple": [ "VB", "NN", "VBP" ], "AWE": [ "NNP" ], "hoard": [ "NN", "VB", "VBP" ], "pigeons": [ "NNS" ], "AWA": [ "NNP" ], "colorful": [ "JJ" ], "Days": [ "NNP", "NNPS", "NNS" ], "Sifton": [ "NNP" ], "bric-a-brac": [ "NN", "NNS" ], "Nodding": [ "VBG" ], "yachtels": [ "NNS" ], "home-improvement": [ "NN", "JJ" ], "built-from-kit": [ "JJ" ], "UNIFIED": [ "JJ" ], "bat": [ "NN", "VB" ], "bar": [ "NN", "VB", "VBP" ], "Segall": [ "NNP" ], "Remphan": [ "NNP" ], "high-yield": [ "JJ", "NN" ], "bay": [ "NN" ], "illegitimate": [ "JJ" ], "bag": [ "NN", "VB" ], "puffery": [ "NN" ], "Yoshi": [ "NNP" ], "seat-for-the-secretary": [ "JJ" ], "feudalism": [ "NN" ], "puffers": [ "NNS" ], "Dargene": [ "NNP" ], "bam": [ "UH" ], "Old-timers": [ "NNS" ], "Corinthian": [ "JJ", "NNP" ], "open-top": [ "JJ" ], "unworthy": [ "JJ", "NN" ], "Heusen": [ "NNP" ], "Order-Entry": [ "NN" ], "emergent": [ "JJ" ], "Sydney": [ "NNP", "NN" ], "Sleeper": [ "NNP" ], "spattered": [ "VBN" ], "mournfully": [ "RB" ], "prototypical": [ "JJ" ], "brazil": [ "NN" ], "fastballs": [ "NNS" ], "inappropriate": [ "JJ" ], "Choice": [ "NN", "NNP" ], "Mezzogiorno": [ "NNP" ], "longed-for": [ "JJ" ], "disprove": [ "VB" ], "Self-censorship": [ "NN" ], "Evaluations": [ "NNS" ], "Argent": [ "NNP" ], "lethargic": [ "JJ" ], "Massey-Ferguson": [ "NNP" ], "stiffening": [ "NN", "JJ" ], "G-R-H": [ "NNP" ], "Omnibus": [ "NN" ], "wrapping": [ "VBG", "NN" ], "Rudyard": [ "NNP" ], "ignorance": [ "NN" ], "vacuuming": [ "VBG", "NN" ], "Schall": [ "NNP" ], "stout-hearted": [ "JJ" ], "Yours": [ "PRP" ], "retrovision": [ "NN" ], "House-floor": [ "JJ" ], "B.t.u.": [ "NN" ], "bronzed": [ "JJ" ], "Gunnar": [ "NNP" ], "restarting": [ "VBG" ], "monopolize": [ "VB" ], "bronzes": [ "NNS" ], "Given": [ "VBN" ], "motioning": [ "VBG" ], "exemplary": [ "JJ" ], "Reconsideration": [ "NN" ], "photorealism": [ "NN" ], "Fullerton": [ "NNP" ], "Investcorp": [ "NNP" ], "modems": [ "NNS" ], "inquisitive": [ "JJ" ], "Withuhn": [ "NNP" ], "Forest": [ "NNP", "NN" ], "Dating": [ "NNP" ], "hoi-polloi": [ "FW" ], "Avco": [ "NNP" ], "co-workers": [ "NNS" ], "commonplaces": [ "NNS" ], "Earle": [ "NNP" ], "Gladys": [ "NNP" ], "Utley": [ "NNP" ], "renegotiation": [ "NN" ], "Exboyfriend": [ "NN" ], "Earls": [ "NNP" ], "Spillane": [ "NNP" ], "Citicorp": [ "NNP", "NNPS", "NN", "VB" ], "threw": [ "VBD" ], "Divisions": [ "NNS" ], "Morningstar": [ "NNP" ], "Bertram": [ "NNP" ], "Farberware": [ "NNP" ], "deadliness": [ "NN" ], "Meehan": [ "NNP" ], "ADIA": [ "NNP" ], "Utt": [ "NNP" ], "Aggrieved": [ "JJ" ], "Edmar": [ "NNP" ], "aviation": [ "NN" ], "Winawer": [ "NNP" ], "sly": [ "JJ" ], "remakes": [ "NNS" ], "originate": [ "VB", "VBP" ], "suppose": [ "VBP", "VB" ], "murders": [ "NNS", "VBZ" ], "chauvinism": [ "NN" ], "Hovercraft": [ "NNP" ], "guardianship": [ "NN" ], "well-balanced": [ "JJ" ], "paradises": [ "NNS" ], "Z-gyro": [ "NN" ], "sushi": [ "NN", "FW" ], "Conceptions": [ "NNS" ], "Caltech": [ "NNP" ], "homozygous": [ "JJ" ], "redecorated": [ "VBN" ], "expirations": [ "NNS" ], "vindicate": [ "VB" ], "Fiesta": [ "NNP" ], "LaMothe": [ "NNP" ], "who": [ "WP", "NN" ], "Seagate": [ "NNP" ], "Scholastic": [ "NNP" ], "potentially": [ "RB" ], "miswritten": [ "JJ" ], "Eisenhower": [ "NNP", "JJR" ], "debt-repayment": [ "NN" ], "transvestites": [ "NNS" ], "beef-import": [ "JJ" ], "governors": [ "NNS" ], "Raos": [ "NNP" ], "loincloth": [ "NN" ], "nurturer": [ "NN" ], "pharmacological": [ "JJ" ], "warden": [ "NN" ], "polyproplene": [ "NN" ], "Miltonic": [ "JJ" ], "plastic-pipe": [ "JJ" ], "bailed": [ "VBD", "VBN" ], "electronics-product": [ "NN" ], "RLLY": [ "NNP" ], "emissary": [ "NN" ], "lightheartedly": [ "RB" ], "stimuli": [ "NNS" ], "Shantytowns": [ "NNS" ], "smokes": [ "VBZ" ], "smoker": [ "NN" ], "Rauscher": [ "NNP" ], "hydration": [ "NN" ], "qualities": [ "NNS" ], "anchorman": [ "NN" ], "claims": [ "NNS", "VBZ" ], "smoked": [ "VBD", "JJ", "VBN" ], "sentence": [ "NN" ], "earlier-period": [ "NN" ], "unfair": [ "JJ" ], "stimulations": [ "NNS" ], "Clorox": [ "NNP" ], "Campeau-related": [ "JJ" ], "Wildman": [ "NNP" ], "steel-reinforced": [ "JJ" ], "wafers": [ "NNS" ], "Bellinger": [ "NNP" ], "candidate": [ "NN" ], "infinitely": [ "RB" ], "agile": [ "JJ" ], "nonchlorinated": [ "JJ" ], "Begging": [ "VBG" ], "youngsters": [ "NNS" ], "servicemen": [ "NNS" ], "co-payments": [ "NNS" ], "tax-collecting": [ "JJ" ], "cost-of-living": [ "JJ", "NN" ], "Playboy-Show-Biz": [ "NNP" ], "solar-power": [ "JJ" ], "interior": [ "JJ", "NN" ], "whichever": [ "WDT" ], "natal": [ "JJ" ], "Disappointment": [ "NN" ], "Richco": [ "NNP", "NN" ], "counter-moves": [ "NNS" ], "Kamin": [ "NNP" ], "Gersony": [ "NNP" ], "fined": [ "VBN", "VBD" ], "Casualties": [ "NNS" ], "manual": [ "JJ", "NN" ], "perfectibility": [ "NN" ], "autocracies": [ "NNS" ], "Giguiere": [ "NNP" ], "Provost": [ "NNP" ], "Lingus": [ "NNP" ], "Weitzen": [ "NNP" ], "CTA": [ "NNP" ], "sparred": [ "VBD" ], "Hajak": [ "NNP" ], "romantically": [ "RB" ], "Hilary": [ "NNP" ], "right-field": [ "NN" ], "Weapons": [ "NNP", "NNPS" ], "revel": [ "VB", "NN", "VBP" ], "readmitted": [ "VBN" ], "Yankus": [ "NNP" ], "Infrared": [ "JJ" ], "Onlookers": [ "NNS" ], "dense": [ "JJ" ], "vaccine-vendor": [ "JJ" ], "Hiring": [ "VBG" ], "unnameable": [ "JJ" ], "outspoken": [ "JJ" ], "Soviet-bloc": [ "JJ" ], "orbited": [ "VBD" ], "electronic-information": [ "NN" ], "tycoons": [ "NNS" ], "loudspeakers": [ "NNS" ], "obsequiousness": [ "NN" ], "grit-impregnated": [ "JJ" ], "translators": [ "NNS" ], "novelties": [ "NNS" ], "blackmail": [ "NN", "VB" ], "Forand": [ "NNP" ], "squeamish": [ "JJ" ], "sift": [ "VB", "VBP" ], "great-grandson": [ "NN" ], "McDonalds": [ "NNP" ], "super": [ "JJ", "FW" ], "Heatherington": [ "NNP" ], "impersonates": [ "VBZ" ], "Retired": [ "NNP", "JJ", "VBN" ], "Retiree": [ "NN" ], "commie": [ "JJ" ], "alignments": [ "NNS" ], "Abstract": [ "NNP", "JJ", "NN" ], "beta": [ "NN", "JJ" ], "Hearing": [ "NNP", "VBG" ], "Filofaxes": [ "NNPS" ], "cadre": [ "NN" ], "impersonated": [ "VBN" ], "Cameron": [ "NNP" ], "commit": [ "VB", "JJ", "VBP" ], "Lovers": [ "NNPS", "NNP" ], "sheets": [ "NNS" ], "money-handling": [ "NN" ], "litmus": [ "NN" ], "parsing": [ "VBG", "NN" ], "canny": [ "JJ" ], "doctrine": [ "NN" ], "Vault": [ "NNP" ], "cascades": [ "VBZ" ], "Tee-wah": [ "NNP" ], "Stay": [ "VB", "NNP" ], "fifty-dollar": [ "JJ" ], "non-auto": [ "JJ" ], "Nutrition": [ "NNP" ], "Bostian": [ "NNP" ], "Cultor": [ "NNP" ], "effaces": [ "VBZ" ], "amazingly": [ "RB" ], "Castros": [ "NNPS" ], "press-release": [ "NN" ], "Mocking": [ "NNP" ], "anti-freeze": [ "JJ", "NN" ], "Sutermeister": [ "NNP" ], "mortgagebacked": [ "JJ" ], "at-bat": [ "NN" ], "S.D": [ "NNP" ], "faring": [ "VBG" ], "DNA": [ "NNP", "NN" ], "S.C": [ "NNP" ], "offering": [ "NN", "VBG" ], "forks": [ "NNS" ], "Dade": [ "NNP" ], "ulcers": [ "NNS" ], "Dada": [ "NNP" ], "Extrapolation": [ "NN" ], "solar-corpuscular-radiation": [ "NN" ], "synonym": [ "NN" ], "I.C.H.": [ "NNP", "NN" ], "Z": [ "NNP", "NN" ], "atrocities": [ "NNS" ], "Dads": [ "NNP" ], "builds": [ "VBZ" ], "emboldened": [ "VBN", "VBD" ], "staged": [ "VBD", "VBN" ], "Anti-Ballistic-Missile": [ "JJ" ], "AFTERSHOCKS": [ "NNS" ], "Privatize": [ "VB" ], "Wister": [ "NNP" ], "Melrose": [ "NNP" ], "stager": [ "NN" ], "stages": [ "NNS", "VBZ" ], "diagnose": [ "VB", "VBP" ], "unenlightened": [ "JJ" ], "toss": [ "VB", "NN", "VBP" ], "dites": [ "FW" ], "Gerber": [ "NNP" ], "megatons": [ "NNS" ], "marksman": [ "NN" ], "floating": [ "VBG", "JJ" ], "Mertle": [ "NNP" ], "triamcinolone": [ "NN" ], "Pirie": [ "NNP" ], "wonder-working": [ "JJ" ], "generally": [ "RB" ], "handed": [ "VBD", "VBN" ], "Bodily": [ "NNP" ], "oppose": [ "VB", "NNPS", "VBP" ], "Advisor": [ "NNP" ], "hander": [ "NN" ], "tardy": [ "JJ" ], "vitamin-and-iron": [ "JJ" ], "ba-a-a": [ "UH" ], "futures-trading": [ "JJ" ], "MacArthur-Helen": [ "NNP" ], "Tietmeyer": [ "NNP" ], "Arnold": [ "NNP" ], "trepidation": [ "NN" ], "insurrections": [ "NNS" ], "DeBeauvoir": [ "NNP" ], "identity-management": [ "NN" ], "stoke": [ "VB" ], "pizzas": [ "NNS" ], "Institutue": [ "NNP" ], "plus-one": [ "JJ", "RB" ], "Constant": [ "JJ", "NN" ], "apology": [ "NN" ], "luckier": [ "JJR" ], "almanac": [ "NN" ], "more-favored": [ "JJ" ], "TROs": [ "NNS" ], "parcels": [ "NNS" ], "Anglo-French": [ "JJ", "NNP" ], "themed": [ "VBN" ], "recalculation": [ "NN" ], "themes": [ "NNS" ], "yapping": [ "VBG" ], "domestic-airline": [ "NN" ], "Louisiane": [ "NNP" ], "parasympathetic": [ "JJ" ], "Milbank": [ "NNP" ], "Louisiana": [ "NNP" ], "Czar": [ "NNP" ], "semiconductor-depreciation": [ "JJ" ], "hidebound": [ "JJ" ], "suicide": [ "NN" ], "praises": [ "VBZ", "NNS" ], "Philharmonic": [ "NNP", "NN" ], "polyunsaturated": [ "JJ" ], "scribble": [ "VB" ], "technique": [ "NN" ], "bordered": [ "VBN" ], "finally": [ "RB" ], "praised": [ "VBD", "JJ", "VBN" ], "emasculation": [ "NN" ], "Kerschner": [ "NNP" ], "Barry": [ "NNP" ], "DEPARTMENT": [ "NNP" ], "Temple-Inland": [ "NNP" ], "daintily": [ "RB" ], "Nomura": [ "NNP", "NN" ], "Saouma": [ "NNP" ], "Bruser": [ "NNP" ], "gambit": [ "NN" ], "FIT": [ "NNP" ], "patrolman": [ "NN" ], "Ironpants": [ "NNP" ], "figment": [ "NN" ], "bogeyed": [ "VBD" ], "sappy": [ "JJ" ], "FIG": [ "NNP" ], "uneventful": [ "JJ" ], "airfare": [ "NN" ], "word": [ "NN" ], "suppressors": [ "NNS" ], "Playskool": [ "NNP" ], "Affirmed": [ "NNP" ], "wore": [ "VBD" ], "dim": [ "JJ" ], "din": [ "NN" ], "Statements": [ "NNS" ], "nectar": [ "NN" ], "did": [ "VBD" ], "die": [ "VB", "VBP", "FW", "NN" ], "dig": [ "VB", "FW", "NN", "VBP" ], "reactivity": [ "NN" ], "specials": [ "NNS" ], "contempt-of-court": [ "NN" ], "moistening": [ "VBG" ], "dip": [ "NN", "VBP", "VB" ], "self-righteousness": [ "NN" ], "drug-pushing": [ "JJ" ], "Stoeckel": [ "NNP" ], "villa": [ "NN" ], "eclipse": [ "VB", "NN", "VBP" ], "Lawsuits": [ "NNS", "NNP", "NN" ], "maximization": [ "NN" ], "seven-inch": [ "JJ" ], "debt-futures": [ "NNS" ], "threshold": [ "NN" ], "Buffton": [ "NNP" ], "deregulaton": [ "NN" ], "bacterial": [ "JJ" ], "Weyerhaeuser": [ "NNP", "JJR" ], "pen-and-ink": [ "JJ" ], "gayety": [ "NN" ], "Donofrio": [ "NNP" ], "high-tailed": [ "VBD" ], "Liberal-Radical": [ "NNP" ], "takin": [ "VBG" ], "favour": [ "NN" ], "vandalized": [ "VBD", "VBN" ], "well-fed": [ "JJ" ], "incidents": [ "NNS" ], "dishonestly": [ "RB" ], "proclaiming": [ "VBG" ], "extemporize": [ "VB" ], "wail": [ "NN", "VB" ], "involuntarily": [ "RB" ], "Freeberg": [ "NNP" ], "Rabat": [ "NNP" ], "monied": [ "JJ" ], "signalizes": [ "VBZ" ], "Stalin": [ "NNP" ], "decipher": [ "VB" ], "monies": [ "NNS" ], "conversant": [ "NN" ], "Indosuez": [ "NNP" ], "alto": [ "NN" ], "leather-men": [ "NNS" ], "badgered": [ "VBD" ], "institute": [ "NN", "VB" ], "Tellier": [ "NNP" ], "dominantly": [ "RB" ], "thrashed": [ "VBD", "VBN" ], "convoys": [ "NNS" ], "One-fourth": [ "NN" ], "CLOROX": [ "NNP" ], "finer": [ "JJR" ], "Luxembourg-based": [ "JJ" ], "nylon": [ "NN" ], "all-out": [ "JJ" ], "hither": [ "RB" ], "Buren": [ "NNP" ], "careworn": [ "JJ" ], "Marcius": [ "NNP" ], "Purchasing": [ "NNP", "VBG", "NN" ], "Donato": [ "NNP" ], "subverted": [ "VBN" ], "spring-early": [ "JJ" ], "Farming": [ "VBG" ], "milliliter": [ "NN" ], "Ratto": [ "NNP" ], "everybody": [ "NN" ], "ungainly": [ "JJ" ], "poet-painter": [ "NN" ], "five-years": [ "NNS" ], "additive": [ "NN" ], "discus": [ "NN" ], "sharper": [ "JJR", "RBR" ], "spirituality": [ "NN" ], "median-family": [ "NN" ], "commutator-like": [ "JJ" ], "Lunch": [ "NN", "NNP" ], "touched": [ "VBD", "VBN" ], "Awards": [ "NNP" ], "flaunting": [ "VBG" ], "craftsman-in-residence": [ "JJ" ], "sharpen": [ "VB" ], "unconfirmed": [ "JJ" ], "cited": [ "VBD", "VBN" ], "Freres": [ "NNP" ], "Parsippany": [ "NNP" ], "fast-moving": [ "JJ", "NNP" ], "ageless": [ "JJ" ], "Blackstock": [ "NNP" ], "downtown": [ "NN", "JJ", "RB" ], "downing": [ "VBG" ], "fund-selling": [ "JJ" ], "reinvestigating": [ "VBG" ], "sonobuoy": [ "NN" ], "Duke": [ "NNP" ], "Nordyke": [ "NNP" ], "noninterest": [ "JJ" ], "avoiding": [ "VBG" ], "souk": [ "NN" ], "flu": [ "NN" ], "soul": [ "NN" ], "Pacific": [ "NNP", "JJ" ], "soup": [ "NN", "VB" ], "sour": [ "JJ", "VBP", "NN", "RB", "VB" ], "Cathcart": [ "NNP" ], "Ailing": [ "VBG" ], "arrive": [ "VB", "VBP" ], "small-time": [ "JJ" ], "predict": [ "VBP", "VB" ], "Digital": [ "NNP", "JJ", "NN" ], "Backhaus": [ "NNP" ], "Westmore": [ "NNP" ], "drawer": [ "NN" ], "shorting": [ "VBG", "NN" ], "Biedermann": [ "NNP" ], "Heylin": [ "NNP" ], "hand-me-down": [ "JJ" ], "yokels": [ "NNS" ], "harking": [ "VBG" ], "self-perpetuating": [ "JJ" ], "get": [ "VB", "VBP" ], "kraft-pulp": [ "JJ" ], "Bleckley": [ "NNP" ], "Eppel": [ "NNP" ], "strikingly": [ "RB" ], "appraisingly": [ "RB" ], "nighters": [ "NNS" ], "government-assisted": [ "JJ" ], "SOFT": [ "JJ" ], "Muldoon": [ "NNP" ], "rivaled": [ "VBD" ], "inputs": [ "NNS" ], "sheet-rolling": [ "VBG" ], "critics": [ "NNS" ], "Performing": [ "VBG" ], "Tri-Star": [ "NNP" ], "vivacious": [ "JJ" ], "hedonism": [ "NN" ], "Benedetti": [ "NNP" ], "Benedetto": [ "NNP" ], "pressuring": [ "VBG" ], "weeding": [ "VBG" ], "isothermally": [ "RB" ], "highroad": [ "NN" ], "Ede": [ "NNP" ], "borrowing": [ "NN", "JJ", "VBG", "VBG|NN" ], "avant": [ "FW" ], "Leslie": [ "NNP" ], "Edw": [ "NNP" ], "flat-out": [ "JJ", "RB" ], "halos": [ "NNS" ], "Euclid": [ "NNP" ], "cross-fertilization": [ "NN" ], "unconsciously": [ "RB" ], "Litta": [ "NNP" ], "straightening": [ "VBG", "NN" ], "gradual": [ "JJ", "RB" ], "argues": [ "VBZ" ], "male-dominated": [ "JJ" ], "Morgart": [ "NNP" ], "argued": [ "VBD", "VBN" ], "uninominal": [ "JJ" ], "single-level": [ "JJ" ], "trend-following": [ "JJ", "NN" ], "thank": [ "VB", "VBP" ], "mais": [ "FW" ], "prisoner-made": [ "JJ" ], "Moniuszko": [ "NNP" ], "Cluett": [ "NNP" ], "Kamm": [ "NNP" ], "gen": [ "NN" ], "maid": [ "NN" ], "coaching": [ "NN", "VBG" ], "Kamp": [ "NNP" ], "gem": [ "NN" ], "Esopus": [ "NNP" ], "mail": [ "NN", "VB", "VBP" ], "main": [ "JJ", "NN" ], "Nouvelle-Heloise": [ "NNP" ], "Hodgson": [ "NNP" ], "truest": [ "JJS" ], "machikin": [ "FW" ], "views": [ "NNS", "VBZ" ], "impulses": [ "NNS" ], "enclave": [ "NN" ], "satellite-assembly": [ "NN" ], "society-measured": [ "VBN" ], "Huntley-Brinkley": [ "NNP" ], "cooling-heating": [ "JJ" ], "Closing": [ "NN", "VBG" ], "Marconi": [ "NNP" ], "unpredictability": [ "NN" ], "possess": [ "VBP", "VB" ], "outweigh": [ "VBP", "VB" ], "battlefields": [ "NNS" ], "in-fighting": [ "NN" ], "Steelmaking": [ "NN" ], "directories": [ "NNS" ], "proteins": [ "NNS", "VBZ" ], "yet-unnamed": [ "JJ" ], "Anheuser": [ "NNP" ], "olim": [ "FW" ], "pharmacies": [ "NNS" ], "redraw": [ "VB" ], "Energies": [ "NNP", "NNPS" ], "Dinerstein": [ "NNP" ], "abnormal": [ "JJ" ], "recitative": [ "NN" ], "inhomogeneous": [ "JJ" ], "gird": [ "VB" ], "sifted": [ "VBD", "VBN" ], "giveth": [ "VBZ", "VB" ], "girl": [ "NN" ], "living": [ "VBG", "JJ", "NN" ], "stock-taking": [ "NN" ], "VICTIMS": [ "NNS" ], "Mileage": [ "NN" ], "mid-1940s": [ "NNS" ], "Pederson": [ "NNP" ], "lak": [ "IN" ], "refurbishment": [ "NN" ], "lad": [ "NN" ], "undertone": [ "NN" ], "tidbits": [ "NNS" ], "metaphysic": [ "NN" ], "canal": [ "NN" ], "Tokyo-based": [ "JJ", "NNP" ], "Theater": [ "NNP", "NN" ], "Dummkopf": [ "NN" ], "kedgeree": [ "NN" ], "pumping": [ "VBG" ], "spies": [ "NNS", "VBZ" ], "spiel": [ "NN" ], "BONUSES": [ "NNS" ], "miscreants": [ "NNS" ], "fuller": [ "JJR" ], "spied": [ "VBD", "VBN" ], "spend-now": [ "JJ" ], "Sigma": [ "NNP" ], "Options": [ "NNPS", "NNP", "NNS" ], "weather-resistant": [ "JJ" ], "cross-trading": [ "NN" ], "boastfully": [ "RB" ], "pepperoni": [ "NNS" ], "desultory": [ "JJ" ], "Chemische": [ "NNP" ], "substrates": [ "NNS" ], "p.m.-midnight": [ "NNP", "NN" ], "Viyella": [ "NNP" ], "trading-account": [ "JJ" ], "Probable": [ "JJ", "NNP" ], "discharges": [ "NNS", "VBZ" ], "Sayegh": [ "NNP" ], "thiihng": [ "NN" ], "all-America": [ "JJ" ], "permissibility": [ "NN" ], "unthreatening": [ "JJ" ], "Probably": [ "RB", "NNP" ], "Pirate": [ "NNP" ], "discharged": [ "VBN", "VBD" ], "public-TV": [ "NN" ], "seersucker": [ "NN" ], "thoughtless": [ "JJ" ], "lap": [ "NN", "VBP" ], "slept": [ "VBD", "VBN" ], "seas": [ "NNS" ], "CalTech": [ "NNP" ], "Carlos": [ "NNP" ], "daunt": [ "VB" ], "Janney": [ "NNP" ], "Bundy": [ "NNP" ], "Thurman": [ "NNP" ], "Bhojani": [ "NNP" ], "inflation-free": [ "JJ" ], "Subscribers": [ "NNS" ], "FRE": [ "NNP" ], "TUMBLE": [ "JJ" ], "Servifilm": [ "NNP" ], "non-event": [ "NN" ], "neutralists": [ "NNS" ], "blacklist": [ "VB" ], "Loughlin": [ "NNP" ], "Miles": [ "NNP" ], "formaldehyde": [ "NN" ], "Eslinger": [ "NNP" ], "emigrating": [ "VBG" ], "bio-analytical": [ "JJ" ], "knackwurst": [ "NN" ], "lugs": [ "NNS" ], "live-hauled": [ "VBD" ], "dissenters": [ "NNS" ], "Braeuer": [ "NNP" ], "Canyon": [ "NNP" ], "protected": [ "VBN", "JJ", "VBD" ], "fluoresces": [ "VBZ" ], "center-aisle": [ "NN" ], "Walsifer": [ "NNP" ], "DO": [ "VB" ], "Urbanski": [ "NNP" ], "DJ": [ "NNP" ], "anti-prostitution": [ "JJ" ], "mundane": [ "JJ" ], "DG": [ "NNP" ], "improbability": [ "NN" ], "DE": [ "NNP" ], "DC": [ "NN" ], "Chace": [ "NNP" ], "winding": [ "VBG", "JJ", "NN" ], "Regulation": [ "NN", "NNP" ], "north-bound": [ "JJ" ], "DX": [ "NNP" ], "stigma": [ "NN" ], "voiced": [ "VBD", "JJ", "VBN" ], "DU": [ "NNP" ], "guidewheels": [ "NNS" ], "Do": [ "VBP", "VB", "NNP" ], "pre-assault": [ "JJ" ], "jammed-together": [ "JJ" ], "Di": [ "NNP" ], "unheeding": [ "VBG" ], "insoluble": [ "JJ", "NN" ], "Rhett": [ "NNP" ], "answering": [ "VBG", "NN" ], "wetly": [ "RB" ], "Da": [ "NNP" ], "Undaunted": [ "JJ" ], "Kokubu": [ "NNP" ], "callously": [ "RB" ], "current-generation": [ "JJ", "NN" ], "Du": [ "NNP" ], "Dr": [ "NNP" ], "Ds": [ "NNS" ], "channel": [ "NN", "VB", "VBP" ], "Legislature": [ "NNP", "NN" ], "subtilis": [ "NNS" ], "colorin": [ "NN" ], "trace": [ "NN", "JJ", "VB" ], "permeates": [ "VBZ" ], "Healthy": [ "JJ" ], "succumbed": [ "VBN", "VBD" ], "Tanabe": [ "NNP" ], "Gaunt": [ "JJ" ], "Spirited": [ "JJ" ], "satisfying": [ "JJ", "VBG" ], "Ferranti": [ "NNP", "NNS" ], "PRISON-SHOP": [ "NNP" ], "Panamanians": [ "NNS", "NNPS" ], "D.": [ "NNP", "NN" ], "highboy": [ "NN" ], "naturopath": [ "NN" ], "Frankie": [ "NNP" ], "surprising": [ "JJ", "VBG" ], "Ms.": [ "NNP" ], "Palmingiano": [ "NNP" ], "gracefully": [ "RB" ], "Suffolk": [ "NNP" ], "Certs": [ "NNP" ], "matryoshka": [ "FW" ], "D2": [ "NN" ], "lexicon": [ "NN" ], "certification": [ "NN" ], "reassessing": [ "VBG" ], "non-patent": [ "JJ" ], "Ingo": [ "NNP" ], "sectorial": [ "JJ" ], "Province": [ "NNP" ], "BioVentures": [ "NNP" ], "standard-setting": [ "JJ", "NN" ], "Biologique": [ "NNP" ], "Rozelle": [ "NNP" ], "impunity": [ "NN" ], "norethandrolone": [ "NN" ], "Rozella": [ "NNP" ], "law-and-order": [ "NN" ], "disconcerting": [ "JJ", "VBG" ], "M.Ed": [ "NNP" ], "Holliger": [ "NNP" ], "ranking": [ "JJ", "VBG", "NN" ], "Kappa": [ "NNP" ], "muni": [ "NN", "JJ", "NNS" ], "pseudo-happiness": [ "NN" ], "hostage": [ "NN" ], "Menton": [ "NNP" ], "designated": [ "VBN", "VBD", "JJ" ], "uninvolved": [ "JJ" ], "Krane": [ "NNP" ], "relyriced": [ "VBD" ], "Mentor": [ "NNP" ], "distinctly": [ "RB" ], "designates": [ "VBZ" ], "Filipinos": [ "NNPS", "NNS" ], "beseech": [ "VBP" ], "Methods": [ "NNS", "NNPS" ], "keyboards": [ "NNS" ], "Helionetics": [ "NNP" ], "busiest": [ "JJS" ], "median": [ "JJ", "NN" ], "Shintoism": [ "NNP" ], "diversities": [ "NNS" ], "M.E.": [ "NNP" ], "threading": [ "VBG" ], "stupid": [ "JJ" ], "traffic-control": [ "NN" ], "employer-offered": [ "JJ" ], "home-and-home": [ "JJ" ], "detailsman": [ "NN" ], "Subgroups": [ "NNS" ], "able-bodied": [ "JJ" ], "crushes": [ "VBZ" ], "Storage": [ "NNP", "NN" ], "derailments": [ "NNS" ], "anti-secrecy": [ "JJ" ], "Inventory": [ "NN", "VB", "NNP" ], "Montrachet": [ "NNP" ], "dialectic": [ "NN" ], "Ky.-based": [ "JJ" ], "eyepiece": [ "NN" ], "COMMUNISTS": [ "NNS" ], "gratifying": [ "JJ", "VBG" ], "trijets": [ "NNS" ], "Jindo": [ "NNP" ], "Fascist": [ "NNP", "JJ" ], "wing-tip": [ "JJ" ], "forecast": [ "NN", "VBD", "VBN", "VBP", "VB" ], "Hours": [ "NNS" ], "Fascism": [ "NNP", "NN" ], "international-payments": [ "NNS" ], "Selective": [ "JJ" ], "geometric": [ "JJ" ], "saw-horse": [ "NN" ], "dried": [ "VBN", "VBD", "JJ" ], "run-ups": [ "NNS" ], "Sans": [ "NNP", "FW" ], "Northrup": [ "NNP" ], "tacit": [ "JJ" ], "signaled": [ "VBD", "VBN" ], "condensing": [ "VBG" ], "Unitarianism": [ "NNP" ], "Grounds": [ "NNPS", "NNP" ], "ternational": [ "JJ" ], "TriStar": [ "NNP" ], "remake": [ "VB" ], "delirium": [ "NN" ], "Michelson": [ "NNP" ], "contractually": [ "RB" ], "stretches": [ "NNS", "VBZ" ], "SEATO": [ "NNP" ], "despaired": [ "VBD" ], "nest-egg": [ "NN" ], "refocused": [ "VBD", "VBN" ], "Poore": [ "NNP" ], "Calor": [ "NNP" ], "innovations": [ "NNS" ], "clambered": [ "VBD" ], "stretched": [ "VBD", "JJ", "VBN" ], "disliking": [ "VBG" ], "neutrino": [ "NN" ], "westwards": [ "NNS" ], "refocuses": [ "VBZ", "VB" ], "laudable": [ "JJ" ], "anyplace": [ "RB" ], "mare": [ "NN" ], "unusual": [ "JJ" ], "Calif.": [ "NNP" ], "underworld": [ "NN" ], "Ochsenschlager": [ "NNP" ], "non-paper": [ "NN" ], "mark": [ "NN", "VBP", "VB" ], "mart": [ "NNP", "NN" ], "Blasphemous": [ "JJ" ], "quackery": [ "NN" ], "mars": [ "VBZ" ], "Modeling": [ "NNP" ], "shopping": [ "NN", "JJ", "VBG" ], "measles": [ "NN" ], "Reversing": [ "VBG" ], "SECOND": [ "JJ" ], "Jungle": [ "NNP" ], "Colcord": [ "NNP" ], "griping": [ "NN" ], "Yugoslavs": [ "NNS" ], "bar-code": [ "JJ" ], "slumber": [ "NN" ], "profiles": [ "NNS", "VBZ" ], "Yardumian": [ "NNP" ], "Rumor": [ "NN" ], "McCann-Erikson": [ "NNP" ], "bemoaned": [ "VBD" ], "profiled": [ "VBN" ], "philosophies": [ "NNS" ], "pushin": [ "NN" ], "Venice": [ "NNP" ], "interest-bearing": [ "JJ" ], "Toshio": [ "NNP" ], "unpolitical": [ "JJ" ], "Sung-Shan": [ "NNP" ], "rammed": [ "VBD" ], "Ostriches": [ "NNS" ], "H.F.": [ "NNP" ], "third-floor": [ "JJ" ], "poll-takers": [ "NNS" ], "scavenger": [ "NN" ], "movements": [ "NNS" ], "bags": [ "NNS", "VBZ" ], "different": [ "JJ" ], "absences": [ "NNS" ], "harsh": [ "JJ" ], "doctor": [ "NN", "VB" ], "Stieglitz": [ "NNP" ], "Asman": [ "NNP" ], "anti-acne": [ "NN" ], "skiddy": [ "JJ" ], "spot-market": [ "JJ" ], "heartbreak": [ "NN" ], "Gethsemane": [ "NN", "NNP" ], "smoke-stained": [ "JJ" ], "struggling": [ "VBG", "JJ" ], "exhaling": [ "VBG" ], "transitions": [ "NNS" ], "exhaust": [ "NN", "VB", "VBP" ], "GANNETT": [ "NNP" ], "third-party": [ "JJ" ], "Tallahatchie": [ "NNP" ], "Expo": [ "NNP", "NN" ], "scorned": [ "VBN", "VBD" ], "Moulton": [ "NNP" ], "Apparel": [ "NN", "NNP" ], "lemon": [ "NN", "JJ" ], "DaPuzzo": [ "NNP" ], "suffuse": [ "VB" ], "emigrated": [ "VBD", "VBN" ], "CCK-related": [ "JJ" ], "third-ranking": [ "JJ" ], "pentameter": [ "NN" ], "cardiac-drug": [ "JJ" ], "self-consciously": [ "RB", "JJ" ], "low-volume": [ "JJ" ], "Metrocorp": [ "NNP" ], "instillation": [ "NN" ], "Columbiana": [ "NNP" ], "prochoice": [ "NN" ], "DONORS": [ "NNS" ], "Niggertown": [ "NNP" ], "orchid-strewn": [ "JJ" ], "adulterated": [ "VBN", "JJ" ], "Treasurers": [ "NNS", "NNPS" ], "Margaret": [ "NNP" ], "borax": [ "NN" ], "Steinhardt": [ "NNP" ], "grating": [ "NN" ], "Coin": [ "NNP" ], "Sperry": [ "NNP" ], "thyrotrophin": [ "NN" ], "bluestocking": [ "NN" ], "adverbial": [ "JJ" ], "Tackles": [ "VBZ" ], "grandstanding": [ "VBG", "NN" ], "unfoldment": [ "NN" ], "co-publisher": [ "NN" ], "line-density": [ "NN" ], "SHELTERS": [ "NNS" ], "secrecy": [ "NN" ], "disadvantageous": [ "JJ" ], "railroad": [ "NN" ], "implicate": [ "VB" ], "Friars": [ "NNS" ], "Moleculon": [ "NNP" ], "lightning": [ "NN" ], "Troy": [ "NNP" ], "London": [ "NNP", "JJ" ], "retailers": [ "NNS" ], "Rosabeth": [ "NNP" ], "Trop": [ "NNP" ], "amortizing": [ "JJ", "VBG" ], "Enid": [ "NNP" ], "transmittable": [ "JJ" ], "Savoy": [ "NNP" ], "climactic": [ "JJ" ], "spans": [ "VBZ", "NNS" ], "Croma": [ "NNP" ], "imprisonment": [ "NN" ], "galvanic": [ "JJ" ], "trillion-dollar": [ "JJ" ], "Wachsman": [ "NNP" ], "Cost-effective": [ "JJ" ], "eighteenth-century": [ "JJ" ], "Swansea": [ "NNP" ], "error-prone": [ "JJ" ], "baseball-card": [ "JJ" ], "Atherton": [ "NNP" ], "livres": [ "FW", "NNS" ], "WHISPER": [ "NN" ], "RESEARCH": [ "NNP" ], "critical": [ "JJ" ], "Canellos": [ "NNP" ], "claustrophobia": [ "NN" ], "claustrophobic": [ "JJ" ], "moderate": [ "JJ", "VBP", "VB" ], "Pan-American": [ "JJ" ], "measuring": [ "VBG", "NN", "JJ|VBG" ], "forfeitures": [ "NNS" ], "no-men": [ "NNS" ], "buckling": [ "VBG", "NN" ], "airways": [ "NNS" ], "nonoperating": [ "VBG", "JJ", "NN" ], "shellshocked": [ "VBN", "JJ" ], "strangles": [ "VBZ" ], "consumer-paint": [ "JJ" ], "hara-kiri": [ "FW" ], "subcommitee": [ "NN" ], "Solved": [ "VBD" ], "despicable": [ "JJ" ], "maintainence": [ "NN" ], "recraft": [ "VB" ], "Efforts": [ "NNS" ], "strangled": [ "VBN", "JJ" ], "finicky": [ "JJ" ], "Stacey": [ "NNP" ], "tuning": [ "VBG", "NN" ], "conducting": [ "VBG", "NN" ], "son-in-law": [ "NN" ], "anti-business": [ "JJ" ], "Revenue": [ "NN", "NNP" ], "troupes": [ "NNS" ], "violence": [ "NN" ], "ARRESTED": [ "VBD" ], "asset-sale": [ "JJ" ], "non-banking": [ "JJ" ], "practical": [ "JJ", "NN" ], "Erotic": [ "NNP" ], "INVESTIGATION": [ "NNP" ], "threesome": [ "NN" ], "Supportive": [ "JJ" ], "program-selling": [ "JJ" ], "imitated": [ "VBN", "VBD" ], "Heads": [ "NNS", "NNPS" ], "straight-armed": [ "VBD" ], "Sunken": [ "NNP" ], "Magi": [ "NNP" ], "Fendrick": [ "NNP" ], "Wansley": [ "NNP" ], "Heady": [ "NNP", "JJ" ], "Soothsayer": [ "NNP" ], "Newmark": [ "NNP" ], "exploiting": [ "VBG" ], "Countered": [ "VBD" ], "imitates": [ "VBZ" ], "paganism": [ "NN" ], "shantytown": [ "NN" ], "ISSUES": [ "NNS" ], "Harold": [ "NNP" ], "Rectifier": [ "NNP" ], "Harkinson": [ "NNP" ], "gravid": [ "JJ" ], "slurped": [ "VBD" ], "sipping": [ "VBG", "NN" ], "recognizably": [ "RB" ], "decode": [ "VB" ], "greenhouse-gas": [ "JJ" ], "braiding": [ "VBG" ], "moth-like": [ "JJ" ], "Whipsnade": [ "NNP" ], "bettering": [ "VBG" ], "deepened": [ "VBD", "VBN" ], "Freud": [ "NNP", "," ], "chambered": [ "VBN" ], "Phosphate": [ "NNP" ], "Canterbury": [ "NNP" ], "shortterm": [ "JJ" ], "billowed": [ "VBD" ], "Fuentes": [ "NNP" ], "geriatric": [ "JJ" ], "evaporate": [ "VB", "VBP" ], "Delays": [ "NNS" ], "retrained": [ "VBN" ], "hound": [ "NN" ], "fountain-falls": [ "NNS" ], "discs": [ "NNS" ], "Oriani": [ "NNP" ], "doctrinal": [ "JJ" ], "departs": [ "VBZ" ], "Poeme": [ "NNP" ], "Grigorss": [ "NNP" ], "executive-branch": [ "JJ", "NN" ], "astronaut": [ "NN" ], "high-priority": [ "JJ" ], "overtime": [ "NN", "JJ", "RB" ], "million-a-year": [ "JJ" ], "Keehn": [ "NNP" ], "syngeries": [ "NNS" ], "awkwardly": [ "RB" ], "clamored": [ "VBD" ], "pitifully": [ "RB" ], "subdivision": [ "NN" ], "beer-guzzling": [ "JJ" ], "unload": [ "VB", "VBP" ], "Reasons": [ "NNS" ], "Colnaghi": [ "NNP" ], "Bochniarz": [ "NNP" ], "unsee": [ "VBN" ], "dramatic": [ "JJ" ], "weighty": [ "JJ" ], "drugging": [ "VBG" ], "spectral": [ "JJ" ], "upperclassmen": [ "NNS" ], "drug-sales": [ "NNS" ], "resolution": [ "NN" ], "Seafood": [ "NN" ], "Goolick": [ "NN" ], "Ramesh": [ "NNP" ], "Van": [ "NNP" ], "Winter": [ "NNP", "NNPS", "NN" ], "Val": [ "NNP" ], "Perle": [ "NNP" ], "geode": [ "NN" ], "plain-clothesmen": [ "NNS" ], "ever-narrowing": [ "JJ" ], "million-dollar": [ "JJ" ], "Vax": [ "NNP" ], "editorialist": [ "NN" ], "undisrupted": [ "JJ" ], "prevalance": [ "NN" ], "children": [ "NNS" ], "Bechtel": [ "NNP" ], "Yeast": [ "NN" ], "Mecklenberg": [ "NNP" ], "Zapala": [ "NNP" ], "POPs": [ "NNS" ], "Cookie-Crisp": [ "NNP" ], "wants": [ "VBZ", "NNS" ], "premium": [ "NN", "JJ|NN", "JJ" ], "distorting": [ "VBG" ], "straightforward": [ "JJ" ], "Japanese-financed": [ "JJ" ], "Chartres": [ "NNP" ], "JIM": [ "NNP" ], "Microelectronics": [ "NNPS", "NNP" ], "blood-chilling": [ "JJ" ], "aware": [ "JJ" ], "coyness": [ "NN" ], "forwarders": [ "NNS" ], "subterranean": [ "JJ" ], "Messinesi": [ "NNP" ], "unilateralism": [ "NN" ], "fuel-services": [ "NNS" ], "revaluing": [ "NN" ], "veined": [ "JJ" ], "conjugating": [ "VBG" ], "dampen": [ "VB" ], "polonaise": [ "NN" ], "unstilted": [ "JJ" ], "hym": [ "PRP" ], "Giubbonari": [ "NNP" ], "six-foot-four": [ "JJ" ], "hys": [ "PRP$" ], "Rink": [ "NNP" ], "damper": [ "NN" ], "nucleated": [ "VBN" ], "LS400": [ "NNP", "NN" ], "Needs": [ "NNS" ], "Needy": [ "NNP", "NNS" ], "F.D.R.": [ "NNP" ], "burger": [ "NN" ], "corrosion-resistant": [ "JJ" ], "commercial-litigation": [ "NN" ], "affectation": [ "NN" ], "Hanover-Ceyway": [ "NNP" ], "Salzgitter": [ "NNP" ], "ribbon": [ "NN" ], "putting": [ "VBG" ], "Clearasil": [ "NNP" ], "dial": [ "NN", "VB" ], "diam": [ "NN" ], "opted": [ "VBD", "VBN" ], "skeptic": [ "NN" ], "WARNED": [ "VBD" ], "bankruptcy-reorganization": [ "NN" ], "portions": [ "NNS" ], "ratchet": [ "VB" ], "White-shirted": [ "JJ" ], "selfeffacing": [ "VBG" ], "movement": [ "NN" ], "violently": [ "RB" ], "cohorts": [ "NNS" ], "trouncing": [ "NN" ], "Amon": [ "NNP" ], "morale-enhancing": [ "JJ" ], "ranged": [ "VBD", "VBN" ], "twang": [ "NN" ], "promising": [ "JJ", "VBG" ], "Cedergren": [ "NNP" ], "ranges": [ "NNS", "VBZ" ], "ranger": [ "NN" ], "Arthur": [ "NNP", "NN" ], "disastrous": [ "JJ" ], "H.M.S.S": [ "NNP" ], "capacitor": [ "NN" ], "Neuhaus": [ "NNP" ], "Analytical": [ "NNP", "JJ" ], "Amor": [ "FW" ], "sunning": [ "VBG" ], "Whole": [ "JJ" ], "Gachinger": [ "NNP" ], "publishes": [ "VBZ" ], "sub-zero": [ "JJ" ], "water-authority": [ "NN" ], "unconvinced": [ "JJ" ], "Kitamura": [ "NNP" ], "hard-earned": [ "JJ" ], "stretching": [ "VBG", "NN" ], "scurry": [ "NN", "VBP", "VB" ], "published": [ "VBN", "JJ", "VBD" ], "Neglecting": [ "VBG" ], "skids": [ "NNS" ], "cystic": [ "JJ" ], "authorize": [ "VB" ], "buses": [ "NNS" ], "clapping": [ "VBG", "NN" ], "Everlys": [ "NNS" ], "bused": [ "VBN" ], "icecap": [ "NN" ], "Bazy-Sire": [ "NNP" ], "memos": [ "NNS" ], "Core": [ "NNP", "JJ" ], "phonemic": [ "JJ" ], "Gimenez": [ "NNP" ], "senior-debt": [ "NN" ], "Corn": [ "NN", "NNP" ], "destination": [ "NN" ], "Multiflow": [ "NNP" ], "Cort": [ "NNP" ], "congratulated": [ "VBN", "VBD" ], "Corp": [ "NNP" ], "Corr": [ "NNP" ], "Brunner": [ "NNP" ], "Petitions": [ "NNS" ], "obstinate": [ "JJ" ], "strait": [ "NN" ], "LTV": [ "NNP" ], "pads": [ "NNS" ], "Kennedy": [ "NNP" ], "sniffers": [ "NNS" ], "falloff": [ "NN" ], "thrift-like": [ "JJ" ], "leavened": [ "VBD", "VBN", "JJ" ], "Pantasote": [ "NNP" ], "LTD": [ "NNP" ], "straight-haired": [ "JJ" ], "ruling-party": [ "NN" ], "willfully": [ "RB" ], "counterclaim": [ "NN" ], "alcohol-related": [ "JJ" ], "ladling": [ "VBG" ], "Aikman": [ "NNP" ], "sarcasms": [ "NNS" ], "sudden": [ "JJ" ], "discotheques": [ "NNS" ], "Kissick": [ "NNP" ], "Rezneck": [ "NNP" ], "lingered": [ "VBD", "VBN" ], "Wallenstein": [ "NNP" ], "bivouac": [ "NN" ], "Argas": [ "NNP" ], "barbequed": [ "JJ" ], "deplores": [ "VBZ" ], "Transcendentalism": [ "NNP" ], "Kindergarten": [ "NN" ], "hullabaloo": [ "NN" ], "Borge": [ "NNP" ], "church-state": [ "NN", "JJ" ], "Abrahams": [ "NNP" ], "deplored": [ "VBD" ], "aphorisms": [ "NNS" ], "rededicating": [ "VBG" ], "subminimum": [ "JJ", "NN" ], "enforcers": [ "NNS" ], "DRI\\/McGraw": [ "NNP" ], "Hordern": [ "NNP" ], "Mavis": [ "NNP" ], "pay-down": [ "JJ" ], "Battat": [ "NNP" ], "CONTROL": [ "NNP" ], "lakes": [ "NNS" ], "Bombers": [ "NNS" ], "frilly": [ "JJ" ], "long-view": [ "JJ" ], "inflationary": [ "JJ" ], "Effjohn": [ "NNP" ], "kegful": [ "JJ" ], "double-B-minus": [ "NN" ], "frills": [ "NNS" ], "synagogue": [ "NN" ], "solipsism": [ "NN" ], "savvier": [ "JJR" ], "response": [ "NN" ], "bleak": [ "JJ", "NN" ], "securities-based": [ "JJ" ], "Branum": [ "NNP" ], "Prater": [ "NNP" ], "eats": [ "VBZ" ], "Siemens-GEC-Plessey": [ "NNP" ], "re-enacted": [ "VBN" ], "barbital": [ "NN" ], "Lett": [ "NNP" ], "nonagricultural": [ "JJ" ], "Anouilh": [ "NNP" ], "sacadolares": [ "FW" ], "egregiously": [ "RB" ], "infant": [ "NN", "JJ" ], "formulations": [ "NNS" ], "rounded": [ "VBN", "JJ", "VBD" ], "Haislmaier": [ "NNP" ], "swamped": [ "VBN", "VBD" ], "half-crazy": [ "JJ" ], "oblique": [ "JJ" ], "rounder": [ "JJR" ], "lewdly": [ "RB" ], "rat-a-tat-tat": [ "JJ" ], "Extensive": [ "JJ" ], "Illusion": [ "NNP" ], "CSFB": [ "NNP" ], "manhunts": [ "NNS" ], "Vanous": [ "NNP" ], "Specialty": [ "NNP", "NN" ], "Ciba-Geigy": [ "NNP" ], "Lederle": [ "NNP" ], "detected": [ "VBN", "VBD" ], "monacle": [ "NN" ], "Viscount": [ "NNP" ], "Zoning": [ "NNP" ], "someone": [ "NN" ], "fireproofing": [ "NN", "VBG" ], "five-minute": [ "JJ" ], "scandalizing": [ "JJ" ], "redistribute": [ "VB", "VBP" ], "neophyte": [ "JJ", "NN" ], "Pavillion": [ "NNP" ], "grubby": [ "JJ" ], "sprang": [ "VBD" ], "FARGO": [ "NNP" ], "fuer": [ "NNP" ], "bestirred": [ "VBN" ], "Globo": [ "NNP" ], "confidence-crusher": [ "NN" ], "exiles": [ "NNS" ], "Telli": [ "NNP" ], "Globe": [ "NNP" ], "holiest": [ "JJS" ], "Pollnow": [ "NNP" ], "Schoenholtz": [ "NNP" ], "exiled": [ "VBN", "VBD", "JJ" ], "Association-College": [ "NNP" ], "Olenegorsk": [ "NNP" ], "order-to-ship": [ "JJ" ], "Scalia": [ "NNP" ], "essayist": [ "NN" ], "biscuits": [ "NNS" ], "Horseman": [ "NN" ], "Euro-products": [ "NNS" ], "subsystem": [ "NN" ], "once-unthinkable": [ "JJ" ], "syndicator": [ "NN" ], "mental": [ "JJ" ], "interweaving": [ "VBG" ], "house": [ "NN", "VBP", "VB" ], "chomping": [ "VBG" ], "trans-illumination": [ "NN" ], "sarsaparilla": [ "NN" ], "foreign-bank": [ "JJ" ], "countrymen": [ "NNS" ], "connect": [ "VB", "VBP" ], "ripple": [ "NN", "VB", "VBP", "JJ" ], "horsemanship": [ "NN" ], "backpacks": [ "NNS" ], "simplify": [ "VB", "VBP" ], "flower": [ "NN", "VBP" ], "Viktor": [ "NNP" ], "undervaluing": [ "VBG" ], "DeBat": [ "NNP" ], "ex-National": [ "JJ" ], "acting": [ "VBG", "JJ", "NN" ], "flowed": [ "VBD", "VBN" ], "MacWeek": [ "NNP" ], "quince": [ "NN" ], "tiresome": [ "JJ" ], "Ramathan": [ "NNP" ], "Northwestern": [ "NNP" ], "squished": [ "VBN" ], "commits": [ "VBZ" ], "uranium-mining": [ "NN" ], "geared": [ "VBN", "VBD" ], "difficulty": [ "NN" ], "Paging": [ "NNP" ], "confectionery": [ "NN" ], "cuckoos": [ "NNS" ], "giveaway": [ "NN", "JJ" ], "several-year": [ "JJ" ], "vibrato": [ "NN" ], "companion": [ "NN", "JJ" ], "superconductors": [ "NNS" ], "throwers": [ "NNS" ], "Helper": [ "NNP" ], "Basques": [ "NNPS" ], "cheap-wine": [ "JJ" ], "pilote": [ "FW" ], "Helped": [ "VBN" ], "Kaiparowits": [ "NNP" ], "much-heralded": [ "JJ" ], "free-drink": [ "JJ" ], "Subscribing": [ "VBG" ], "pilots": [ "NNS" ], "cash-management": [ "JJ" ], "INSURANCE": [ "NNP", "NN" ], "ridership": [ "NN" ], "botany": [ "NN" ], "CompuChem": [ "NNP" ], "stepmother": [ "NN" ], "Montgoris": [ "NNP" ], "mistakenly": [ "RB" ], "Brighetti": [ "NNP" ], "juncture": [ "NN" ], "instances": [ "NNS" ], "girl-friend": [ "NN" ], "Rancher": [ "NNP" ], "cups": [ "NNS" ], "ivory-tower": [ "JJ", "NN" ], "Lanesville": [ "NNP" ], "killin": [ "VBG" ], "indulgent": [ "JJ" ], "smoother": [ "JJ", "RB", "JJR" ], "COAST": [ "NNP" ], "Cheers": [ "NNP" ], "redistributing": [ "VBG" ], "cholera": [ "NN" ], "reflexly": [ "RB" ], "smoothed": [ "VBD", "VBN" ], "mutterers": [ "NNS" ], "bumble": [ "VB", "VBP" ], "trawl": [ "NN" ], "pest-control": [ "JJ" ], "Language": [ "NN", "NNP" ], "favorably": [ "RB" ], "acorns": [ "NNS" ], "service-type": [ "JJ" ], "excels": [ "VBZ" ], "sensation": [ "NN" ], "sangiovanni": [ "NNS" ], "sizable": [ "JJ" ], "favorable": [ "JJ" ], "DIFFERENCE": [ "NNP" ], "last-round": [ "JJ" ], "peaked": [ "VBD", "JJ", "VBN" ], "involvements": [ "NNS" ], "quickwitted": [ "JJ" ], "dossier": [ "NN" ], "d-Limited": [ "NNP" ], "Brambles": [ "NNP" ], "Objects": [ "NNS", "NNPS|VBZ" ], "Pinky": [ "NNP" ], "biracial": [ "JJ" ], "contrary": [ "JJ", "NN" ], "treated": [ "VBN", "VBD" ], "putout": [ "NN" ], "ambitiously": [ "RB" ], "tagua": [ "NN" ], "pre-existing": [ "JJ" ], "desuetude": [ "NN" ], "million-member": [ "JJ" ], "nuclide": [ "NN" ], "Breath": [ "NN" ], "Swire": [ "NNP" ], "Pageant": [ "NNP", "NN" ], "Outlooks": [ "NNS" ], "cometary": [ "JJ" ], "unafraid": [ "JJ" ], "under-achievement": [ "NN" ], "fading": [ "VBG", "JJ", "NN" ], "cardigan": [ "NN" ], "built": [ "VBN", "JJ", "VBD" ], "amorality": [ "NN" ], "Connall": [ "NNP" ], "Arab": [ "NNP", "JJ" ], "boardinghouses": [ "NNS" ], "Walmart": [ "NNP" ], "Davao": [ "NNP" ], "Guildford": [ "NNP" ], "Aran": [ "NNP" ], "Meals": [ "NNP" ], "Aral": [ "NNP" ], "hub-and-spoke": [ "JJ" ], "choppiness": [ "NN" ], "HDTV-screen": [ "JJ" ], "flute": [ "NN" ], "Hawaii": [ "NNP", "NNS" ], "HAS": [ "VBZ" ], "misstating": [ "VBG" ], "Savings": [ "NNP", "NNPS", "NNS" ], "Whelan": [ "NNP" ], "Manassas": [ "NNP" ], "non-interventionist": [ "JJ" ], "financiers": [ "NNS" ], "refrigerator": [ "NN" ], "Buckenham": [ "NNP" ], "big-business": [ "JJ", "NN" ], "diphosphopyridine": [ "JJ" ], "Zemlinsky": [ "NNP" ], "crisis-to-crisis": [ "JJ" ], "bustin": [ "VBG" ], "ATHLONE": [ "NNP" ], "Lodging": [ "NN" ], "Tyburn": [ "NN" ], "anti-submarine": [ "JJ" ], "pilferers": [ "NNS" ], "anti-market": [ "JJ" ], "joining": [ "VBG", "NN" ], "weavers": [ "NNS" ], "Xia": [ "NNP" ], "directorate": [ "NN" ], "particularly": [ "RB" ], "disturbances": [ "NNS" ], "prepackaged": [ "VBN" ], "fins": [ "NNS" ], "hugging": [ "VBG", "NN" ], "Bridgers": [ "NNP" ], "Hilo": [ "NNP" ], "repels": [ "VBZ" ], "fine": [ "JJ", "NN", "RB", "VB" ], "find": [ "VB", "VBP", "NN" ], "backtracking": [ "NN", "VBG" ], "Tucker": [ "NNP" ], "Tulsa": [ "NNP", "NN" ], "Coordination": [ "NN" ], "relent": [ "VBP", "VB" ], "dicate": [ "VBP" ], "frothier": [ "RBR" ], "marathons": [ "NNS" ], "PORTFOLIO": [ "NN" ], "Morgantown": [ "NNP" ], "Emigrant": [ "NNP" ], "boulder": [ "NN" ], "Desperately": [ "RB" ], "Apartheid": [ "NNP" ], "Stumbling": [ "JJ" ], "Verdes": [ "NNP" ], "Sukhoi": [ "NNP" ], "resolve": [ "VB", "NN" ], "Cataracts": [ "NNS" ], "racially": [ "RB" ], "Suddenly": [ "RB" ], "coughs": [ "NNS" ], "self-described": [ "JJ" ], "Co.``": [ "``" ], "meter": [ "NN" ], "WNYW": [ "NNP" ], "instrumentals": [ "NNS" ], "forensic": [ "JJ" ], "vine": [ "NN" ], "coal-railroad": [ "NN" ], "already-known": [ "JJ" ], "ball-hawking": [ "JJ" ], "domain": [ "NN" ], "overeat": [ "VBP" ], "chastisement": [ "NN" ], "Impressive": [ "JJ" ], "unit-labor": [ "JJ" ], "antihistorical": [ "JJ" ], "superseded": [ "VBN", "VBD" ], "please": [ "VB", "UH", "VBP" ], "fourth-period": [ "JJ" ], "walk-way": [ "NN" ], "smallest": [ "JJS" ], "blood-sport": [ "JJ" ], "Egyptians": [ "NNPS", "NN" ], "Charta": [ "NNP" ], "supersedes": [ "VBZ" ], "King": [ "NNP", "NN" ], "Kind": [ "NN", "NNP" ], "vindicated": [ "VBN", "VBD" ], "home-team": [ "JJ" ], "responses": [ "NNS" ], "exoneration": [ "NN" ], "aircraft": [ "NN", "NNS" ], "foothill": [ "NN" ], "encapsulate": [ "VB" ], "SELL-OFFS": [ "NNS" ], "breakups": [ "NNS" ], "Babatunde": [ "NNP" ], "full-time": [ "JJ", "RB" ], "assisted-living": [ "JJ" ], "erysipelas": [ "NN" ], "brunches": [ "NNS" ], "powers": [ "NNS", "VBZ" ], "pizzas-with-everything": [ "NNS" ], "gamblers": [ "NNS" ], "flight-crew": [ "NN" ], "customs-clearance": [ "NN" ], "arteriolosclerosis": [ "NN" ], "upgraded": [ "VBN", "VBD", "JJ" ], "cost-consciousness": [ "NN" ], "complacently": [ "RB" ], "ngandlu": [ "FW" ], "scairt": [ "VBN" ], "prosecuting": [ "VBG", "NN", "VBG|NN" ], "asymptotically": [ "RB" ], "Hoffer": [ "NNP" ], "Koehler": [ "NNP" ], "Stromeyer": [ "NNP" ], "twenty-five-year-old": [ "JJ" ], "Denied": [ "VBN" ], "McKenna": [ "NNP" ], "no-confidence": [ "NN" ], "feeding-pain": [ "JJ" ], "Jacquelyn": [ "NN" ], "raise": [ "VB", "VBP", "NN" ], "frets": [ "VBZ" ], "Sprung": [ "NNP" ], "choruses": [ "NNS" ], "un-aided": [ "JJ" ], "anti-human": [ "JJ" ], "Planners": [ "NNS", "NNPS", "NNP" ], "chorused": [ "VBD" ], "Margulies": [ "NNP" ], "weapons-modernization": [ "JJ" ], "pessimism": [ "NN" ], "Liquid": [ "NNP", "JJ", "NN" ], "Princeton": [ "NNP" ], "lulu": [ "NN" ], "Months": [ "NNS" ], "mountaineers": [ "NNS" ], "Marsicano": [ "NNP" ], "Presenting": [ "VBG" ], "Drill": [ "VB", "NN" ], "Newts": [ "NNP" ], "one-reel": [ "JJ" ], "Conveniently": [ "RB" ], "Donnelley": [ "NNP" ], "post-secondary": [ "JJ" ], "near-unanimous": [ "JJ" ], "Classic": [ "NNP", "JJ", "NN" ], "solid": [ "JJ", "NN", "RB" ], "puissant": [ "JJ" ], "holocaust": [ "NN" ], "aptness": [ "NN" ], "missteps": [ "NNS" ], "Eustis": [ "NNP" ], "Hulse": [ "NNP" ], "Toklas": [ "NNP" ], "hotelman": [ "NN" ], "Benelux": [ "NNP" ], "impracticable": [ "JJ" ], "Speedup": [ "NN", "NNP" ], "arms-sales": [ "JJ" ], "Confirming": [ "VBG" ], "finalists": [ "NNS" ], "Instead": [ "RB", "IN" ], "seduce": [ "VB" ], "menarche": [ "NN" ], "textile": [ "NN", "JJ" ], "Featherweight": [ "NN" ], "neutron": [ "NN" ], "passenger-tire": [ "JJ" ], "Realtor": [ "NN" ], "Muscovites": [ "NNS", "NNPS" ], "keys": [ "NNS" ], "appreciably": [ "RB" ], "osteoarthritis": [ "NN" ], "flitting": [ "VBG" ], "ab": [ "NN" ], "Bel-Air": [ "NNP" ], "agreed-on": [ "JJ" ], "supersede": [ "VB" ], "dystopian": [ "JJ" ], "private-eye": [ "NN" ], "forfeited": [ "VBN" ], "county": [ "NN" ], "blood-cell": [ "NN" ], "flags": [ "NNS", "VBZ" ], "Masur": [ "NNP" ], "DAYAC": [ "NNP" ], "ill-fitting": [ "JJ" ], "dystopias": [ "NNS" ], "pfennig": [ "NN", "FW" ], "Lothario": [ "NN" ], "alluring": [ "JJ" ], "Hoeve": [ "NNP" ], "lower-emission": [ "NN" ], "re-order": [ "JJ" ], "ludicrous": [ "JJ" ], "budgeteers": [ "NNS" ], "nowbankrupt": [ "JJ" ], "profoundly": [ "RB" ], "three-run": [ "JJ" ], "Carlsson": [ "NNP" ], "ad": [ "NN", "FW" ], "impetus": [ "NN" ], "pollster": [ "NN" ], "S.W.": [ "NNP" ], "calibre": [ "NN" ], "Hotel-casino": [ "NN" ], "reproof": [ "NN" ], "solvable": [ "JJ" ], "Payout": [ "NN" ], "overhanging": [ "VBG" ], "drama-filled": [ "JJ" ], "Riemann": [ "NNP" ], "Lotos": [ "NNP" ], "Bickwit": [ "NNP" ], "MRCA": [ "NNP" ], "Cruel": [ "JJ" ], "coffee-house": [ "NN" ], "Bachmann": [ "NNP" ], "Weslock": [ "NNP" ], "upgradings": [ "NNS" ], "unite": [ "VB", "VBP" ], "fast-approaching": [ "JJ" ], "coverup": [ "NN" ], "calypso": [ "NN" ], "Samoa": [ "NNP" ], "cognitive": [ "JJ" ], "profferred": [ "VBN" ], "follows": [ "VBZ" ], "miffed": [ "VBN", "VBD", "JJ" ], "Bradlee": [ "NNP" ], "Sunbelt": [ "NNP" ], "Bradley": [ "NNP", "NN" ], "ai": [ "VBP", "VB", "VBZ" ], "jolted": [ "VBD", "VBN" ], "metal-tasting": [ "JJ" ], "rheumatoid": [ "JJ" ], "more-generic": [ "JJ" ], "unilateralist": [ "JJ" ], "Lidov": [ "NNP" ], "vicelike": [ "JJ" ], "grass-roots": [ "JJ" ], "unpatronizing": [ "VBG" ], "strongest": [ "JJS" ], "cabinets": [ "NNS" ], "gourmet-food": [ "NN" ], "pronounced": [ "VBN", "VBD", "JJ" ], "Cornerback": [ "NN" ], "Seoul": [ "NNP", "NN" ], "contacts": [ "NNS", "VBZ" ], "affects": [ "VBZ", "NNS" ], "prayer-time": [ "NN" ], "endotoxin": [ "NN" ], "Greve": [ "NNP" ], "Zhejiang": [ "NNP" ], "pronounces": [ "VBZ" ], "mailers": [ "NNS" ], "Hartley-Leonard": [ "NNP" ], "JUDICIAL": [ "JJ" ], "augmenting": [ "VBG" ], "YWCA": [ "NNP" ], "headwall": [ "NN" ], "Medellin": [ "NNP" ], "Norbert": [ "NNP" ], "remembered": [ "VBD", "JJ", "VBN" ], "peculiarly": [ "RB" ], "Infectious": [ "JJ" ], "Lazybones": [ "NNP", "NNS" ], "David": [ "NNP", "NNPS" ], "restrictive": [ "JJ" ], "fee": [ "NN" ], "Norberg": [ "NNP" ], "hostages": [ "NNS" ], "Davis": [ "NNP" ], "Leucadia": [ "NNP" ], "Change-ringing": [ "NN" ], "Typically": [ "RB" ], "tripping": [ "VBG" ], "Caraiba": [ "NNP" ], "piles": [ "NNS", "NN", "VBZ" ], "graduation": [ "NN" ], "piled": [ "VBD", "VBN", "JJ" ], "Despair": [ "NN" ], "pediatrician": [ "NN" ], "Grev.": [ "NNP" ], "crass": [ "JJ" ], "Precisely": [ "RB" ], "tenants": [ "NNS" ], "pollution": [ "NN" ], "waltz": [ "NN", "VB" ], "al": [ "NNS", "FW", "NN" ], "aliens": [ "NNS" ], "invading": [ "VBG" ], "disenfranchisement": [ "NN" ], "proverb": [ "NN" ], "semi-heights": [ "NNS" ], "bankruptcy": [ "NN" ], "afflict": [ "VB" ], "denominationally": [ "RB" ], "professional\\/executive": [ "JJ" ], "Warwickshire": [ "NNP" ], "errand": [ "NN" ], "famines": [ "NNS" ], "Lehmans": [ "NNPS" ], "errant": [ "JJ" ], "mega-resort": [ "NN" ], "well-bound": [ "JJ" ], "splenetic": [ "JJ" ], "Schieffelin": [ "NNP" ], "Saunder": [ "NNP" ], "cloud": [ "NN", "VB", "VBP" ], "copy-cat": [ "JJ" ], "multilevel": [ "JJ" ], "hopes": [ "VBZ", "NNS" ], "Marriott": [ "NNP", "NN" ], "directed": [ "VBN", "VBD", "JJ" ], "Westerner": [ "NNP" ], "biggie": [ "NN" ], "gegenschein": [ "NN" ], "detachable": [ "JJ" ], "ABORTION": [ "NN" ], "error-free": [ "JJ" ], "Lewis": [ "NNP" ], "KQED": [ "NNP" ], "ropers": [ "NNS" ], "psoriasis": [ "NN" ], "Mauldin": [ "NNP" ], "hardest-hit": [ "JJ" ], "expedition": [ "NN" ], "codger": [ "NN" ], "lye": [ "NN" ], "Narrowing": [ "VBG" ], "Panglossian": [ "JJ" ], "markdowns": [ "NNS" ], "psychoanalysis": [ "NN" ], "Nye": [ "NNP" ], "Pathans": [ "NNPS" ], "gunmetal-gray": [ "JJ" ], "self-tender": [ "JJ" ], "Hillel": [ "NNP" ], "crypt": [ "NN" ], "state-chartered": [ "JJ" ], "semiautomatic": [ "JJ" ], "MACMILLAN": [ "NNP" ], "teemed": [ "VBD" ], "Rhin": [ "NNP" ], "Hiller": [ "NNP" ], "dungarees": [ "NNS" ], "irreplaceable": [ "JJ" ], "ponying": [ "VBG" ], "Tanner": [ "NNP" ], "Babylonian": [ "JJ", "NNP" ], "Recherche": [ "NNP" ], "Macel": [ "NNP" ], "audio\\/visual": [ "JJ" ], "accidental": [ "JJ" ], "lend": [ "VB", "VBP" ], "angora": [ "NN" ], "tablespoon": [ "NN" ], "Mullendore": [ "NNP" ], "Bodin": [ "NNP" ], "Newsprint": [ "NN" ], "liners": [ "NNS" ], "polynomials": [ "NNS" ], "lens": [ "NN" ], "Depictions": [ "NNS" ], "Lujan": [ "NNP" ], "lent": [ "VBD", "VBN" ], "genetics": [ "NNS" ], "hansom": [ "JJ" ], "desert": [ "NN", "JJ", "VB", "VBP" ], "Liberating": [ "VBG" ], "near-paralysis": [ "NN" ], "boyfriends": [ "NNS" ], "Macmillan\\": [ "NNP" ], "mantel": [ "NN" ], "downcast": [ "JJ" ], "rotational": [ "JJ" ], "Paperhouse": [ "NNP" ], "Spectrum": [ "NNP" ], "loafed": [ "VBD" ], "wahtahm": [ "NN" ], "failures": [ "NNS" ], "Interviu": [ "NNP" ], "debenture": [ "NN" ], "restraining": [ "VBG", "JJ", "NN" ], "Foresters": [ "NNS" ], "bulkhead": [ "NN" ], "round-tripping": [ "NN" ], "grays": [ "NNS" ], "SLIPS": [ "VBZ" ], "Seeking": [ "VBG" ], "stockholders...": [ ":" ], "enjoined": [ "VBN", "VBD" ], "Kellogg": [ "NNP", "NN" ], "habit-forming": [ "JJ" ], "sculptor": [ "NN" ], "Gerbrandt": [ "NNP" ], "redemptive": [ "JJ" ], "fatal": [ "JJ" ], "rejiggering": [ "VBG" ], "Pacitti": [ "NNP" ], "anti-Communism": [ "NN" ], "rubber-necking": [ "VBG" ], "Constitutional": [ "NNP", "JJ" ], "Walkin": [ "NNP" ], "ECONOMIC": [ "JJ" ], "vehicle-making": [ "JJ" ], "contribs": [ "NNS" ], "first-preferred": [ "JJ" ], "wires": [ "NNS" ], "Alisky": [ "NNP" ], "arrange": [ "VB", "VBP" ], "tang": [ "NN" ], "affirmative-action": [ "NN" ], "disappointingly": [ "RB" ], "shock": [ "NN", "VB" ], "Shayol": [ "NNP" ], "tenuously": [ "RB" ], "Osake": [ "NNP" ], "Aqualon": [ "NNP" ], "rearing": [ "VBG", "NN" ], "Abelson": [ "NNP" ], "Bibliography": [ "NN" ], "artificiality": [ "NN" ], "ex-schoolteacher": [ "NN" ], "bleeding": [ "VBG", "NN" ], "Lone": [ "NNP" ], "Long": [ "NNP", "JJ", "RB" ], "Despising": [ "VBG" ], "Streeter": [ "NNP" ], "Witnessing": [ "VBG" ], "price-growth": [ "JJ" ], "retracting": [ "VBG" ], "Susitna": [ "NNP" ], "Kinsell": [ "NNP" ], "pittance": [ "NN" ], "chicago": [ "NNP" ], "single-store": [ "JJ" ], "stockholder-owned": [ "JJ" ], "Pornographer": [ "NNP" ], "PRODUCTS": [ "NNS", "NNP" ], "tri-iodothyronine": [ "NN" ], "Goldstar": [ "NNP" ], "Datafleet": [ "NNP" ], "double-A-plus": [ "JJ", "NN" ], "body": [ "NN" ], "justification": [ "NN" ], "mews": [ "NN" ], "industy": [ "NN" ], "Dysan": [ "NNP" ], "bods": [ "NNS" ], "Cacophonist": [ "NNP" ], "frontiersmen": [ "NNS" ], "Bursts": [ "VBZ" ], "remissions": [ "NNS" ], "tremor": [ "NN" ], "extrema": [ "NNS" ], "bode": [ "VB", "VBP" ], "extreme": [ "JJ", "NN" ], "topicality": [ "NN" ], "inter-town": [ "JJ" ], "dastardly": [ "JJ" ], "cash-deferred": [ "JJ" ], "crystallize": [ "VB" ], "Deportees": [ "NNS" ], "Steichen": [ "NNP" ], "Valhalla": [ "NNP" ], "FORMER": [ "JJ" ], "Brothers": [ "NNPS", "NNP", "NNS" ], "limp": [ "JJ", "NN" ], "F\\": [ "NN" ], "sacrilegious": [ "JJ" ], "extravagance": [ "NN" ], "Nico": [ "NNP" ], "limb": [ "NN" ], "scandal": [ "NN" ], "Industrie": [ "NNP" ], "lima": [ "NN" ], "FM": [ "NNP", "JJ", "NN" ], "FN": [ "NNP" ], "Nice": [ "JJ", "RB", "NNP" ], "writedown": [ "NN" ], "Fu": [ "NNP", "NN" ], "Sirrine": [ "NNP" ], "Canepa": [ "NNP" ], "MDC": [ "NNP" ], "calculation": [ "NN" ], "TEACHERS": [ "NNP", "NNS" ], "harrowing": [ "JJ", "VBG" ], "MDT": [ "NNP" ], "collonaded": [ "VBN" ], "Tortillas": [ "NNPS" ], "C.P.": [ "NNP" ], "cost-efficient": [ "JJ" ], "asset-quality": [ "JJ" ], "lung-tissue": [ "JJ" ], "cookware": [ "NN" ], "Kloske": [ "NNP" ], "Urben": [ "NNP" ], "eccentricity": [ "NN" ], "commandeering": [ "VBG" ], "tearing": [ "VBG" ], "subscription": [ "NN", "JJ" ], "Frequent-flier": [ "JJ" ], "Clov": [ "NNP" ], "Clow": [ "NNP" ], "UPHELD": [ "VBN" ], "indignities": [ "NNS" ], "Buckeye": [ "NNP" ], "telephone-marketing": [ "JJ" ], "Whitehouse": [ "NNP" ], "uh-uh": [ "UH" ], "brinkmanship": [ "NN" ], "impeded": [ "VBN", "VBD" ], "employe": [ "NN" ], "immoderate": [ "JJ" ], "sanitarium": [ "NN" ], "Condos": [ "NNS" ], "Condor": [ "NNP" ], "IATA": [ "NNP" ], "Speeches": [ "NNS" ], "Orvis": [ "NNP" ], "boned": [ "VBN" ], "Orvil": [ "NNP" ], "ludicrousness": [ "NN" ], "fulfillment": [ "NN" ], "employs": [ "VBZ" ], "bones": [ "NNS" ], "patinas": [ "NNS" ], "slow-growing": [ "JJ" ], "overtly": [ "RB" ], "native": [ "JJ", "NN" ], "Kabel": [ "NNP" ], "California-based": [ "JJ" ], "demonic": [ "JJ" ], "responsibilities": [ "NNS" ], "attachment": [ "NN" ], "reeking": [ "VBG" ], "Ginner": [ "NNP" ], "Stafford": [ "NNP" ], "watery": [ "JJ" ], "Nissan": [ "NNP", "NN" ], "Malapi": [ "NNP" ], "collection": [ "NN" ], "forswore": [ "VBD" ], "Guards": [ "NNPS" ], "SCORE": [ "NNP" ], "trapdoors": [ "NNS" ], "Icelandic": [ "NNP" ], "lines": [ "NNS", "VBZ" ], "liner": [ "NN" ], "gunbarrel": [ "NN" ], "Shamrock": [ "NNP" ], "linen": [ "NN", "JJ" ], "chief": [ "JJ", "NN" ], "Marshalls": [ "NNP" ], "Tahiti": [ "NNP" ], "chien": [ "FW" ], "stock-trading": [ "NN", "JJ" ], "Schenectady": [ "NNP" ], "furnish": [ "VB", "VBP" ], "unforethought": [ "JJ" ], "eerily": [ "RB" ], "Minnesota": [ "NNP" ], "Cavazos": [ "NNP" ], "duffers": [ "NNS" ], "Takanashi": [ "NNP" ], "Csathy": [ "NNP" ], "worse-than-expected": [ "JJ" ], "Herzenberg": [ "NNP" ], "onboard": [ "NN" ], "gestational": [ "JJ" ], "industrious": [ "JJ" ], "hick-self": [ "NN" ], "Northerners": [ "NNPS", "NNS" ], "LaGuardia": [ "NNP" ], "taboos": [ "NNS" ], "quill-pen": [ "JJ" ], "Ebbetts": [ "NNP" ], "seige": [ "NN" ], "stances": [ "NNS" ], "Catania": [ "NNP" ], "Achilles": [ "NNP" ], "Inspectorate": [ "NNP" ], "Terpers": [ "NNPS" ], "noncommittal": [ "JJ" ], "lushes": [ "NNS" ], "non-retail": [ "JJ" ], "Lorain": [ "NNP" ], "yearend": [ "NN" ], "mention": [ "VB", "NN", "VBP" ], "cutting": [ "VBG", "VBG|NN", "JJ", "NN" ], "Seasons": [ "NNPS" ], "Merritt-Chapman": [ "NNP" ], "inoculations": [ "NNS" ], "kindness": [ "NN" ], "Roaming": [ "VBG" ], "capital-gains": [ "NNS", "JJ", "NN" ], "stunts": [ "NNS" ], "estranged": [ "VBN", "VBD", "JJ" ], "jiggling": [ "VBG" ], "identified": [ "VBN", "JJ", "VBD" ], "Toujours": [ "FW" ], "Bancroft": [ "NNP" ], "skid-row": [ "NN" ], "ABC-TV": [ "NNP" ], "disregard": [ "NN", "VB" ], "identifies": [ "VBZ" ], "identifier": [ "NN" ], "uninteresting": [ "JJ" ], "Tetrameron": [ "NNP" ], "three-room": [ "JJ" ], "tetrahalides": [ "NNS" ], "black-white": [ "JJ" ], "phosphate-buffered": [ "NN" ], "humanism": [ "NN" ], "sergeants": [ "NNS" ], "Dickens": [ "NNP" ], "sweatshirt": [ "NN" ], "non-wireline": [ "JJ" ], "Wacoal": [ "NNP" ], "empires": [ "NNS" ], "Gloeilampenfabrieken": [ "NNP" ], "short-dollar": [ "JJ", "NN" ], "Electress": [ "NNP" ], "clothing-store": [ "NN" ], "Signature": [ "NNP" ], "trickier": [ "JJR" ], "Sombrotto": [ "NNP" ], "oriental": [ "JJ" ], "sure-sure": [ "NN" ], "four-week": [ "JJ" ], "lecture": [ "NN", "VBP", "VB" ], "thereupon": [ "RB" ], "Contemplation": [ "NN" ], "coed": [ "NN" ], "capital-to-asset": [ "NN", "JJ" ], "Reliable": [ "NNP" ], "unluckily": [ "RB" ], "one-house": [ "JJ" ], "hazard": [ "NN", "VB" ], "non-virulent": [ "JJ" ], "delinquency": [ "NN" ], "computer-software": [ "NN" ], "spring-training": [ "NN" ], "French-modeled": [ "JJ" ], "Divisional": [ "NNP" ], "sun-tanned": [ "JJ" ], "Interim": [ "JJ" ], "qualification": [ "NN" ], "barriers": [ "NNS" ], "plant-and-equipment": [ "JJ" ], "Petrovich": [ "NNP" ], "south": [ "RB", "JJ", "NN" ], "predominate": [ "VBP" ], "infantryman": [ "NN" ], "Taming": [ "VBG" ], "franks": [ "NNS" ], "erroneous": [ "JJ" ], "instill": [ "VB" ], "Canadian-dollar": [ "JJ" ], "humblest": [ "JJS" ], "Phils": [ "NNPS" ], "thirties": [ "NNS" ], "observer": [ "NN" ], "Laude": [ "NNP" ], "deafened": [ "VBN" ], "Eurocrooks": [ "NNPS" ], "dehumidified": [ "VBN", "JJ" ], "Wilson-to-Jim": [ "JJ" ], "maidens": [ "NNS" ], "Adnan": [ "NNP" ], "chivying": [ "VBG" ], "agonies": [ "NNS" ], "Pueri": [ "FW" ], "Railroad-rate": [ "JJ" ], "Madrid-based": [ "JJ" ], "Trinova": [ "NNP" ], "overpayments": [ "NNS" ], "bell-ringer": [ "NN" ], "Reserved": [ "NNP", "VBN" ], "reaffirm": [ "VB", "VBP" ], "impoundment": [ "NN" ], "Rolland": [ "NNP" ], "Weisbord": [ "NNP" ], "mini-empire": [ "NN" ], "Pullings": [ "NNP" ], "prune": [ "NN", "VB" ], "hospices": [ "NNS" ], "probe-based": [ "JJ" ], "ninth-circuit": [ "JJ" ], "much-talked-about": [ "JJ" ], "linchpin": [ "NN" ], "inversely": [ "RB" ], "References": [ "NNS" ], "Merrell": [ "NNP" ], "doctorate": [ "NN" ], "Thiep": [ "NNP" ], "Kunkel": [ "NNP" ], "Thieu": [ "NNP" ], "finetuning": [ "VBG" ], "Par": [ "NNP" ], "Pas": [ "FW" ], "Pat": [ "NNP" ], "poverty-stricken": [ "JJ" ], "inundating": [ "VBG" ], "Pax": [ "NNP" ], "Pay": [ "VB", "VBP", "NNP", "NN" ], "Paz": [ "NNP" ], "Plastow": [ "NNP" ], "curves": [ "NNS" ], "milion": [ "NN" ], "Pac": [ "NNP" ], "pitiable": [ "JJ" ], "nonfiction": [ "NN" ], "dictate": [ "VB", "VBP" ], "SHUTTLE": [ "NN" ], "curved": [ "JJ", "VBN" ], "Pak": [ "NNP" ], "Pal": [ "NNP" ], "Pam": [ "NNP", "NN" ], "Pan": [ "NNP" ], "Pao": [ "NNP" ], "Mac-Laren": [ "NNP" ], "double-A\\/single-A-plus": [ "JJ" ], "maggot-covered": [ "JJ" ], "rejects": [ "VBZ", "NNS" ], "fictive": [ "JJ" ], "Sposato": [ "NNP" ], "psycho-physiology": [ "NN" ], "Uh-uh": [ "UH" ], "Distorts": [ "NNP" ], "nabbing": [ "VBG" ], "Exemption": [ "NN" ], "starches": [ "NNS" ], "Sesame": [ "NNP", "NN" ], "noontime": [ "NN" ], "masts": [ "NNS" ], "preliminary": [ "JJ", "NN" ], "Rural": [ "NNP", "JJ" ], "Stibel": [ "NNP" ], "starched": [ "VBN", "JJ" ], "quilted": [ "JJ" ], "downbeat": [ "JJ", "NN" ], "Calloway": [ "NNP" ], "Carnegie-Illinois": [ "NNP" ], "Inju": [ "NNP" ], "Wellsville": [ "NNP" ], "road-building": [ "JJ", "NN" ], "pork-barrelers": [ "NNS" ], "Bishop": [ "NNP" ], "mortgage-based": [ "JJ" ], "nags": [ "NNS" ], "absorbing": [ "VBG", "JJ" ], "near-certain": [ "JJ" ], "child-as-required-yuppie-possession": [ "NN" ], "Civilization": [ "NN", "NNP" ], "hemlocks": [ "NNS" ], "STREET": [ "NNP" ], "rebuke": [ "VB", "NN" ], "afferent": [ "JJ" ], "heighborhoods": [ "NNS" ], "incorruptible": [ "JJ", "NN" ], "antiserum": [ "NN" ], "restyled": [ "VBN", "JJ" ], "Teeter": [ "NNP" ], "excrutiatingly": [ "RB" ], "madman": [ "NN" ], "overgrown": [ "VBN", "JJ" ], "Manic": [ "NNP", "JJ" ], "Mon": [ "NNP" ], "Mom": [ "NN", "NNP" ], "Mob": [ "NN" ], "Manin": [ "NNP" ], "cockpits": [ "NNS" ], "Shepherds": [ "NNPS" ], "peptide": [ "NN" ], "beat": [ "VB", "JJ", "NN", "VBD", "VBN", "VBP" ], "beau": [ "NN" ], "bear": [ "VB", "NN", "VBP" ], "yelps": [ "NNS" ], "Prices": [ "NNS", "NNP" ], "bean": [ "NN", "VBN", "JJ" ], "pre-split": [ "JJ" ], "beak": [ "NN" ], "bulk-chemical": [ "NN|JJ", "JJ" ], "Wessel": [ "NNP" ], "Technologies": [ "NNP", "NNPS" ], "annihilate": [ "VB" ], "unauthorized": [ "JJ" ], "ANIMAL-RIGHTS": [ "NNS" ], "Bright": [ "NNP", "JJ" ], "Camden": [ "NNP" ], "mascara": [ "NN" ], "revocation": [ "NN" ], "tightening": [ "VBG", "JJ", "NN" ], "stinkpotters": [ "NNS" ], "splendidly": [ "RB" ], "Jerome": [ "NNP" ], "Letch": [ "NNP" ], "mystery-story": [ "JJ" ], "omission": [ "NN" ], "amply": [ "RB" ], "Jurors": [ "NNP", "NNS" ], "exists": [ "VBZ" ], "abstruse": [ "JJ" ], "Soviet-style": [ "JJ" ], "medicinalis": [ "FW" ], "Various": [ "JJ", "NNP" ], "audits": [ "NN", "NNS" ], "maximums": [ "NNS" ], "hottest-selling": [ "JJS" ], "centrifugation": [ "NN" ], "missile-range": [ "JJ" ], "Hunkerish": [ "JJ" ], "forest-products": [ "NNS", "JJ" ], "progress": [ "NN", "VB" ], "vaporization": [ "NN" ], "contaminated": [ "VBN", "VBD", "JJ" ], "Soviet-backed": [ "JJ" ], "minimills": [ "NNS" ], "Datastream": [ "NNP" ], "tailspin": [ "NN" ], "anonymously": [ "RB" ], "Study": [ "NNP", "NN", "VB" ], "S": [ "NNP", "POS", "NN" ], "Moreno": [ "NNP" ], "Lorimar": [ "NNP" ], "Hawley": [ "NNP" ], "upcountry": [ "JJ" ], "tenebrous": [ "JJ" ], "antipodes": [ "NNS" ], "Kanebo": [ "NN", "NNP" ], "Millenarianism": [ "NN" ], "under-serviced": [ "JJ" ], "retentiveness": [ "NN" ], "wholesale-store": [ "JJ" ], "fluoropolymers": [ "NNS" ], "at-home": [ "JJ" ], "acetonemia": [ "NN" ], "photographs": [ "NNS", "VBZ" ], "vent": [ "NN", "VB" ], "marjoram": [ "NN" ], "Inlet": [ "NNP" ], "P-11": [ "NN" ], "Solving": [ "VBG" ], "legal-lending": [ "JJ" ], "half-sister": [ "NN" ], "nostalgia": [ "NN" ], "Gershwins": [ "NNP" ], "PERIOD": [ "NN" ], "Ormsby": [ "NNP" ], "land-use": [ "NN" ], "OLE": [ "NNP" ], "copier": [ "NN" ], "copies": [ "NNS" ], "armadillos": [ "NNS" ], "Leinberger": [ "NNP" ], "neutralized": [ "VBN" ], "Brooklyn": [ "NNP", "NN" ], "stentorian": [ "JJ" ], "contemplative": [ "JJ" ], "copied": [ "VBN", "VBD" ], "tell-all": [ "JJ" ], "home.": [ "NN" ], "CFCs": [ "NNS", "NNP", "NNPS" ], "Fairchild": [ "NNP" ], "censor": [ "VBP", "VB" ], "Zworykin": [ "NNP" ], "Boyce": [ "NNP" ], "ridden": [ "VBN" ], "player": [ "NN" ], "nosedived": [ "VBD" ], "angles": [ "NNS" ], "angler": [ "NN" ], "Stratton": [ "NNP" ], "PRECIOUS": [ "JJ", "NNP" ], "payrolls": [ "NNS" ], "Heading": [ "VBG" ], "blackouts": [ "NNS" ], "homer": [ "NN", "VB" ], "homes": [ "NNS" ], "write-in": [ "NN" ], "planetarium": [ "NN" ], "marches": [ "NNS", "VBZ" ], "microcircuits": [ "NNS" ], "homey": [ "JJ" ], "appearance": [ "NN" ], "Yoneyama": [ "NNP" ], "woodgraining": [ "NN" ], "bond-trading": [ "JJ", "NN" ], "Mozambiquans": [ "NNS" ], "Shin-Daiwa": [ "NNP" ], "Crooked": [ "JJ" ], "unction": [ "NN" ], "UTILITIES": [ "NNP" ], "decamped": [ "VBD" ], "Baskerville": [ "NNP" ], "S.p.A.": [ "NNP" ], "contention": [ "NN" ], "begining": [ "NN" ], "Product": [ "NNP", "NN" ], "Garden": [ "NNP" ], "Christi": [ "NNP" ], "landmarks": [ "NNS" ], "richness": [ "NN" ], "impressionistic": [ "JJ" ], "Bedbugs": [ "NNS" ], "Cleanth": [ "NNP" ], "prognostications": [ "NNS" ], "Produce": [ "VB" ], "Dismal": [ "JJ" ], "Pendant": [ "NNP" ], "Christy": [ "NNP" ], "Sunoco": [ "NNP" ], "neutralizes": [ "VBZ" ], "twelfth": [ "JJ" ], "frivolous": [ "JJ" ], "Natwest": [ "NNP" ], "slickly": [ "RB" ], "caters": [ "VBZ" ], "novels": [ "NNS" ], "shames": [ "NNS" ], "hospitals": [ "NNS" ], "Chevaline": [ "NNP" ], "fucken": [ "JJ" ], "Yokel": [ "NNP" ], "scholars": [ "NNS" ], "shamed": [ "VBN" ], "bi-monthly": [ "JJ" ], "insure": [ "VB", "VBP" ], "untouchable": [ "JJ" ], "landlubber": [ "NN" ], "low-rate": [ "JJ" ], "forty-fold": [ "JJ" ], "thought": [ "VBD", "NN", "VBN" ], "showpiece": [ "NN" ], "pre-trial": [ "JJ", "NN" ], "feudalistic": [ "JJ" ], "Bookings": [ "NNS" ], "Fairless": [ "NNP" ], "good-quality": [ "JJ" ], "DOWNSIZING": [ "NN" ], "peacefully": [ "RB" ], "barking": [ "VBG", "NN" ], "red-tile": [ "JJ" ], "Harsco": [ "NNP" ], "Darth": [ "NNP" ], "profiteering": [ "VBG", "NN" ], "fingerprint": [ "NN" ], "domestic": [ "JJ", "NN" ], "bloodlust": [ "NN" ], "Federals": [ "NN" ], "ETV": [ "NNP" ], "Osnos": [ "NNP" ], "CDL": [ "NNP" ], "conjugates": [ "NNS" ], "network-wide": [ "JJ" ], "world-ignoring": [ "JJ" ], "affections": [ "NNS" ], "fast-shrinking": [ "JJ" ], "arbitraging": [ "VBG" ], "rebate": [ "NN" ], "conjugated": [ "VBN", "JJ" ], "good-will": [ "JJ", "NN" ], "scrimp": [ "VB" ], "Bushes": [ "NNPS", "NNS" ], "radiocarbon": [ "NN" ], "Sawyer": [ "NNP" ], "pit-run": [ "JJ" ], "dryer": [ "NN" ], "admonished": [ "VBD" ], "Stammering": [ "NN" ], "rumpled": [ "JJ" ], "oilworkers": [ "NNS" ], "idea-exchange": [ "NN" ], "journalism": [ "NN" ], "Takuma": [ "NNP" ], "Watterson": [ "NNP" ], "nation-building": [ "NN" ], "Employee-benefit": [ "JJ" ], "now-discontinued": [ "JJ" ], "journalist": [ "NN" ], "epoxy": [ "JJ" ], "wohaw": [ "NN" ], "Luxuries": [ "NNP" ], "awash": [ "JJ", "RB" ], "Documents": [ "NNS", "NNP" ], "force-feeding": [ "NN" ], "nine-months": [ "NNS" ], "alive": [ "JJ", "RB" ], "unpredictably": [ "RB" ], "Rosett": [ "NNP" ], "ostracism": [ "NN" ], "convey": [ "VB", "VBP" ], "convex": [ "JJ" ], "resulted...": [ ":" ], "novelist": [ "NN" ], "dollar-profits": [ "JJ" ], "Coffee": [ "NNP", "NN" ], "Leasure": [ "NN" ], "Naclerio": [ "NNP" ], "bifurcated": [ "JJ" ], "marched": [ "VBD", "VBN" ], "Tenderly": [ "RB" ], "economical": [ "JJ" ], "Sanitary": [ "NNP" ], "MANUFACTURING": [ "NNP" ], "ironies": [ "NNS" ], "Coffey": [ "NNP" ], "islander": [ "NN" ], "noise": [ "NN" ], "Killeen": [ "NNP" ], "Schlossberg": [ "NNP" ], "executive-legislative": [ "JJ" ], "buttoned": [ "VBN" ], "neurosurgeon": [ "NN" ], "Howick": [ "NNP" ], "Brancato": [ "NNP" ], "preventative": [ "JJ" ], "noisy": [ "JJ" ], "Fyffes": [ "NNP" ], "December": [ "NNP" ], "Vice-President": [ "NNP" ], "glade": [ "NN" ], "over-allotment": [ "JJ", "NN" ], "Noticias": [ "NNP" ], "work-a-day": [ "JJ" ], "engineless": [ "JJ" ], "one-dimensional": [ "JJ" ], "discard": [ "VB", "VBP" ], "J/NNP.I.": [ "JJ" ], "Medicare-eligible": [ "JJ" ], "projectors": [ "NNS" ], "Traitor": [ "NN" ], "childrens": [ "NNS" ], "mineralogy": [ "NN" ], "perspiring": [ "JJ" ], "chemists": [ "NNS" ], "cargo-handling": [ "NN" ], "guard": [ "NN", "JJ", "VB", "VBP" ], "Twilight": [ "NNP" ], "capital-reserve": [ "JJ" ], "well-baby": [ "JJ" ], "Stadium": [ "NNP", "NN" ], "Scientists": [ "NNS", "NNP" ], "perplexity": [ "NN" ], "donnybrook": [ "NN" ], "nonmedia": [ "NN" ], "Immunetech": [ "NNP" ], "micrograms": [ "NNS" ], "adolescent": [ "NN", "JJ" ], "Suzy": [ "NNP" ], "brides": [ "NNS" ], "Vanourek": [ "NNP" ], "impassively": [ "RB" ], "stimulative": [ "JJ" ], "McFarland": [ "NNP" ], "Varmus": [ "NNP" ], "typesetting": [ "NN" ], "Screenwriter": [ "NN" ], "earsplitting": [ "JJ" ], "self-righteous": [ "JJ" ], "anti-French": [ "JJ" ], "Jeffersonians": [ "NNPS" ], "Protracted": [ "JJ" ], "Syndic": [ "NNP" ], "artillerists": [ "NNS" ], "cut-throat": [ "JJ" ], "plague": [ "NN", "VB", "VBP" ], "commodities-related": [ "JJ" ], "strident": [ "JJ" ], "assets": [ "NNS" ], "THIDIU": [ "NNP" ], "free-travel": [ "JJ" ], "glory": [ "NN" ], "Camelot": [ "NNP" ], "French-born": [ "JJ" ], "Outwardly": [ "RB" ], "aristocratically": [ "RB" ], "trapezoid": [ "NN" ], "Intervention": [ "NN", "NNP" ], "durn": [ "JJ" ], "supreme": [ "NN", "JJ" ], "pin": [ "NN", "VBP", "VB" ], "garter": [ "NN" ], "Rye": [ "NNP", "NN" ], "Ryc": [ "NNP" ], "pig": [ "NN" ], "SS-24": [ "NNP" ], "SS-25": [ "NNP" ], "Appellate": [ "NNP" ], "SS-20": [ "NNP" ], "pip": [ "UH", "NN" ], "central-bank": [ "NN", "JJ" ], "pit": [ "NN", "VBP", "VB" ], "Wimbledon": [ "NNP" ], "rakish": [ "JJ" ], "claiming": [ "VBG" ], "forestry": [ "NN" ], "case-to-case": [ "JJ" ], "ellipses": [ "NNS" ], "motored": [ "VBD" ], "Jacksonville": [ "NNP" ], "stimulant": [ "NN" ], "Ry.": [ "NNP" ], "desecration": [ "NN" ], "Steward": [ "NN" ], "ecological": [ "JJ" ], "three-panel": [ "JJ" ], "medico": [ "NN" ], "That-a-way": [ "RB" ], "Stewart": [ "NNP" ], "Dragons": [ "NNP" ], "Private": [ "JJ", "NNP" ], "Ritterman": [ "NNP" ], "ironic...": [ ":" ], "preachiness": [ "NN" ], "cookbook": [ "NN" ], "vehement": [ "JJ" ], "right-to-counsel": [ "JJ" ], "tanking": [ "VBG" ], "enzyme-like": [ "JJ" ], "maquilas": [ "NNS" ], "bunkmates": [ "NNS" ], "sun-baked": [ "JJ" ], "heliocentric": [ "JJ" ], "hating": [ "VBG" ], "frostbite": [ "NN" ], "nuclear-propulsion": [ "JJ" ], "Earthquakes": [ "NNS" ], "patches": [ "NNS" ], "whereever": [ "WRB" ], "Buccaneers": [ "NNS" ], "bureaucrats": [ "NNS" ], "Oka": [ "NNP" ], "patched": [ "VBN", "JJ" ], "halogen": [ "NN" ], "public-affairs": [ "NNS" ], "already-developed": [ "JJ" ], "excused": [ "VBN", "VBD" ], "dales": [ "NNS" ], "regrets": [ "VBZ", "NNS" ], "merchant": [ "NN", "JJ" ], "risk": [ "NN", "VBP", "VB" ], "Angeles-area": [ "JJ" ], "oxaloacetic": [ "JJ" ], "nodules": [ "NNS" ], "voice-over": [ "JJ" ], "Poquet": [ "NNP" ], "tree-planting": [ "NN" ], "leggings": [ "NNS" ], "Lorillard": [ "NNP", "NN" ], "funneled": [ "VBD", "VBN" ], "Brakke": [ "NN" ], "Antique": [ "NNP" ], "market-by-market": [ "JJ" ], "Harte-Hanks": [ "NNP" ], "Regiment": [ "NNP" ], "verie": [ "RB" ], "flashy": [ "JJ" ], "shockproof": [ "JJ" ], "PROPERTY": [ "NN" ], "hostile-bid": [ "JJ" ], "Elburn": [ "NNP" ], "non-service-connected": [ "JJ" ], "snafu": [ "NN" ], "surrounding": [ "VBG", "JJ", "NN" ], "electricians": [ "NNS" ], "louder": [ "JJR", "RB", "RBR" ], "Harlequins": [ "NNPS" ], "Heraclitus": [ "NNP" ], "expressive": [ "JJ" ], "tethers": [ "NNS" ], "Revulsion": [ "NNP" ], "Carpenters": [ "NNPS", "NNS" ], "engine...": [ ":" ], "bronchiolar": [ "JJ" ], "plodding": [ "VBG", "NN" ], "coasters": [ "NNS" ], "Strafaci": [ "NNP" ], "despoilers": [ "NNS" ], "Andress": [ "NNP" ], "mints": [ "NNS" ], "Plants": [ "NNS" ], "kicked": [ "VBD", "VBN" ], "orgies": [ "NNS" ], "responsiveness": [ "NN" ], "law-making": [ "NNS" ], "Blasingame": [ "NNP" ], "McCarran-Ferguson": [ "NNP" ], "Exportkredit": [ "NNP" ], "ramps": [ "NNS", "VBZ" ], "Scandinavian": [ "NNP", "JJ" ], "socialize": [ "VB" ], "B.C": [ "NN", "NNP" ], "Utrecht": [ "NNP" ], "kicker": [ "NN" ], "non-taxable": [ "JJ" ], "overprotective": [ "JJ" ], "rightness": [ "NN" ], "arroyo": [ "NN" ], "monarch": [ "NN" ], "singled": [ "VBD", "VBN" ], "West-End": [ "NNP" ], "Pseudomonas": [ "NNS" ], "outpace": [ "VB", "VBP" ], "jogging": [ "NN" ], "analysts": [ "NNS" ], "mistake": [ "NN", "VB" ], "hydrophobia": [ "NN" ], "Bennis": [ "NNP" ], "hydrophobic": [ "JJ" ], "Petty": [ "NNP", "JJ", "NN" ], "Tenn": [ "NNP" ], "bad-expectations": [ "JJ" ], "perpetuated": [ "VBN" ], "Tend": [ "VBP", "VB" ], "canyonside": [ "NN" ], "Tens": [ "NNS" ], "perpetuates": [ "VBZ" ], "Rundfunkchor": [ "NNP" ], "Cleveland": [ "NNP", "NN" ], "foreign-car": [ "NN" ], "codewords": [ "NNS" ], "Engelhard": [ "NNP" ], "compositions": [ "NNS" ], "Everyman": [ "NNP" ], "unnnt": [ "NN" ], "preserved": [ "VBN", "JJ", "VBD" ], "Rheingold": [ "NNP" ], "Parisian": [ "NNP", "JJ" ], "Olga": [ "NNP" ], "Bombus": [ "NNP" ], "bellringers": [ "NNS" ], "phony": [ "JJ", "NN" ], "phone": [ "NN", "VB", "VBP" ], "Rounding": [ "VBG" ], "five-day": [ "JJ" ], "president-elect": [ "NN" ], "Eisenhhower": [ "NNP" ], "enjoying": [ "VBG" ], "left-centerfield": [ "JJ" ], "cleaner-burning": [ "JJ" ], "campers": [ "NNS" ], "Abalkin": [ "NNP" ], "Gottingen": [ "NNP" ], "daft": [ "JJ" ], "phrases": [ "NNS" ], "Perth-based": [ "JJ" ], "auto-loan": [ "JJ" ], "fortress": [ "NN" ], "decorative": [ "JJ" ], "inscription": [ "NN" ], "thankless": [ "JJ" ], "Ecolab": [ "NNP" ], "Leiden": [ "NN" ], "walkways": [ "NNS" ], "Jerry": [ "NNP" ], "Renoirs": [ "NNPS" ], "British-owned": [ "JJ" ], "woodpecker": [ "NN" ], "guarantee": [ "NN", "VB", "VBP" ], "Fleckenstein": [ "NNP" ], "Giraud": [ "NNP" ], "stint": [ "NN" ], "governor-elect": [ "NN" ], "Lortie": [ "NNP" ], "Miranda": [ "NNP" ], "once-private": [ "JJ" ], "T-72": [ "NN" ], "SbCs-type": [ "JJ" ], "kebabs": [ "NNS" ], "poker": [ "NN" ], "pokes": [ "VBZ" ], "Laurent": [ "NNP" ], "mouths": [ "NNS" ], "KRON": [ "NNP" ], "pokey": [ "JJ" ], "arthritis": [ "NN" ], "campgrounds": [ "NNS" ], "FORD": [ "NNP" ], "Emanuel": [ "NNP" ], "Seife": [ "NNP" ], "still-uncalculated": [ "JJ" ], "Laurene": [ "NNP" ], "arthritic": [ "JJ" ], "Around": [ "IN", "NNP" ], "systematization": [ "NN" ], "Fig.": [ "NN", "NNP" ], "acknowledged": [ "VBD", "VBN", "JJ" ], "ultimately": [ "RB" ], "unpunished": [ "JJ" ], "deepens": [ "VBZ" ], "acknowledges": [ "VBZ" ], "archaeology": [ "NN" ], "standard-issue": [ "JJ" ], "executed": [ "VBN", "JJ", "VBD" ], "interpretation": [ "NN" ], "Salvadoran": [ "JJ", "NNP" ], "Valdese": [ "NNP" ], "sprout": [ "VBP", "VB" ], "over": [ "IN", "RP", "JJ", "RP|RB", "RB" ], "off-the-record": [ "JJ" ], "pound": [ "NN", "VB", "VBP" ], "sickle": [ "JJ" ], "net-benefit": [ "JJ" ], "sickly": [ "JJ" ], "obligational": [ "JJ" ], "executes": [ "VBZ" ], "oven": [ "NN" ], "Bible-emancipated": [ "JJ" ], "Tutunik": [ "NNP" ], "Mogg": [ "NNP" ], "outsized": [ "JJ" ], "hands-off-all-sweets": [ "NNS" ], "flagrante": [ "FW" ], "destroyer": [ "NN" ], "SAC": [ "NNP" ], "SAB": [ "NNP" ], "Barges": [ "NNS" ], "Cruelty": [ "NNP" ], "destroyed": [ "VBN", "VBD", "JJ" ], "Bargen": [ "NNP" ], "compensatory": [ "JJ" ], "Armenian": [ "JJ", "NNP" ], "Tanaka": [ "NNP" ], "once-unprofitable": [ "JJ" ], "adventurously": [ "RB" ], "SAT": [ "NNP" ], "However": [ "RB", "RBR", "WRB" ], "Midwesco": [ "NNP" ], "Anglo-Argentine": [ "NNP" ], "payouts": [ "NNS" ], "uranium-waste": [ "JJ" ], "Martinsville": [ "NNP" ], "Curtain": [ "NNP" ], "bouts": [ "NNS" ], "rheum": [ "NN" ], "Annualized": [ "VBN", "JJ" ], "merchandisers": [ "NNS" ], "oversoftness": [ "NN" ], "Antithyroid": [ "JJ" ], "hermeneutics": [ "NN" ], "stinking": [ "VBG", "JJ" ], "fonts": [ "NNS" ], "training.": [ "NN" ], "meatpacking": [ "NN" ], "incentive-pay": [ "JJ" ], "dyeing": [ "NN" ], "capricious": [ "JJ" ], "TALKS": [ "VBZ" ], "Diffring": [ "NNP" ], "prohibit": [ "VB", "VBP" ], "Elton": [ "NNP" ], "tumbleweed": [ "NN" ], "independent": [ "JJ", "NN" ], "stern-to": [ "RB" ], "subsoil": [ "NN" ], "banana-exporting": [ "JJ" ], "tinting": [ "NN" ], "Quickview": [ "NNP" ], "chemical-bomb": [ "NN" ], "Derel": [ "NNP" ], "Derek": [ "NNP" ], "hanged": [ "VBN", "VBD" ], "Adolphus": [ "NNP" ], "truant": [ "JJ" ], "clothe": [ "VB" ], "Styles": [ "NNS", "NNP" ], "Idrocarburi": [ "NNP" ], "Ginn": [ "NNP" ], "ammoniac": [ "JJ" ], "Wrighting": [ "NN" ], "transplantable": [ "JJ" ], "Radetzky": [ "NNP" ], "integrative": [ "JJ" ], "bucking": [ "VBG" ], "Hurt": [ "NNP", "VBN" ], "William": [ "NNP" ], "Blumenkrantz": [ "NNP" ], "Ozanne": [ "NNP" ], "Hurd": [ "NNP" ], "Sounder": [ "NNP" ], "re-created": [ "JJ", "VBN" ], "Cooler": [ "NNP" ], "then-market": [ "JJ" ], "effort...": [ ":" ], "Folonari": [ "NNP" ], "re-creates": [ "VBZ" ], "formation": [ "NN" ], "time-limited": [ "JJ" ], "Tien": [ "NNP" ], "Percival": [ "NNP" ], "inside-the-Beltway": [ "NN" ], "BIGGER": [ "JJR" ], "vacationland": [ "NN" ], "Valparaiso": [ "NNP" ], "poetry-writing": [ "JJ" ], "machining": [ "NN" ], "recite": [ "VB", "VBP" ], "Impact": [ "NNP", "NN" ], "organification": [ "NN" ], "Cannistraro": [ "NNP" ], "Sojourner": [ "NNP" ], "corrosion-protection": [ "JJ", "NN" ], "megalopolises": [ "NNS" ], "PORTING": [ "VBG" ], "Etienne-Emile": [ "NNP" ], "Calisto": [ "NNP" ], "Espre": [ "NNP" ], "sharpest": [ "JJS" ], "nip": [ "NN", "VB" ], "Shaving": [ "NNP", "VBG" ], "mercury": [ "NN" ], "F.R": [ "NN" ], "Fitzpatrick-Davis": [ "NNP" ], "synthetic-diamond": [ "NN" ], "Thefts": [ "NNS" ], "After-the-fact": [ "JJ" ], "Berkowitz": [ "NNP" ], "F.C": [ "NNP" ], "wildly": [ "RB" ], "abstentions": [ "NNS" ], "percentage": [ "NN" ], "sidelining": [ "VBG" ], "acidified": [ "VBN" ], "Receipts": [ "NNPS", "NNP" ], "Search": [ "VB" ], "yuletide": [ "NN" ], "Burgsteinfurt": [ "NNP" ], "PW-2000": [ "NN" ], "esoteric": [ "JJ" ], "downsize": [ "VB" ], "Ties": [ "NNPS", "NNS" ], "collectives": [ "NNS" ], "Insurance-industry": [ "NN" ], "abandoning": [ "VBG" ], "piazza": [ "NN" ], "re-acquire": [ "VB" ], "classed": [ "VBN" ], "brokerage-stock": [ "NN" ], "strung": [ "VBN", "VBD" ], "precipitously": [ "RB" ], "Romaniuk": [ "NNP" ], "headlands": [ "NNS" ], "classes": [ "NNS" ], "wisps": [ "NNS" ], "Silences": [ "NNS" ], "countess": [ "NN" ], "Galaxy": [ "NN" ], "rag": [ "NN" ], "Gerd": [ "NNP" ], "ran": [ "VBD" ], "Disposables": [ "NNS" ], "ram": [ "VB", "NN" ], "raj": [ "NN" ], "Gero": [ "NNP" ], "raw": [ "JJ" ], "COUNSEL": [ "NN" ], "Spelman": [ "NNP" ], "temporary-help": [ "JJ", "NN" ], "rap": [ "NN", "VBP" ], "Hengst": [ "NNP" ], "plaster-of-Paris": [ "NN" ], "ray": [ "NN" ], "nipples": [ "NNS" ], "Kaolin": [ "NNP" ], "relapse": [ "NN" ], "Bibles": [ "NNPS", "NNP" ], "Lehman\\/American": [ "NNP" ], "degenerates": [ "VBZ" ], "Slaughter": [ "NNP" ], "short-of-war": [ "JJ" ], "Ridiculous": [ "JJ" ], "nonmusical": [ "JJ" ], "glimpsed": [ "VBN", "VBD" ], "glands": [ "NNS" ], "Ogden": [ "NNP" ], "denominator": [ "NN" ], "Blimp": [ "NNP" ], "gerundial": [ "JJ" ], "Bikini": [ "NNP" ], "glimpses": [ "NNS" ], "Faulk": [ "NNP" ], "half-acre": [ "JJ" ], "philosophic": [ "JJ" ], "Biking": [ "NNP", "VBG" ], "parting": [ "NN", "VBG" ], "nudism": [ "NN" ], "constancy": [ "NN" ], "TRUST": [ "NNP", "VBP", "NN" ], "out-of-alignment": [ "NN" ], "Sundome": [ "NNP" ], "centrex": [ "NN" ], "partition": [ "NN" ], "metal": [ "NN" ], "yearearlier": [ "JJ" ], "swerved": [ "VBD" ], "billion-franc": [ "NN" ], "shooing": [ "VBG" ], "payment-system": [ "NN" ], "inaccuracies": [ "NNS" ], "ORACLE": [ "NNP" ], "curio": [ "NN" ], "levying": [ "VBG" ], "high-intensity": [ "JJ" ], "currants": [ "NNS" ], "chariot": [ "NN" ], "contacted": [ "VBN", "VBD" ], "hunched-up": [ "JJ" ], "labels": [ "NNS", "VBZ" ], "mutual-fund": [ "JJ", "NN" ], "seawall": [ "NN" ], "white-water": [ "NN" ], "distillates": [ "NNS" ], "drawbridge": [ "NN" ], "availability": [ "NN" ], "och": [ "FW" ], "Korowin": [ "NNP" ], "faddish": [ "JJ" ], "Thereby": [ "RB" ], "Big": [ "NNP", "JJ", "NN" ], "Bid": [ "NNP" ], "Bib": [ "NNP" ], "Bic": [ "NNP" ], "whiteface": [ "JJ", "NN" ], "Bix": [ "NNP" ], "Feodor": [ "NNP" ], "parlayed": [ "VBD" ], "Mayans": [ "NNS" ], "niche-market": [ "NN" ], "blue-collar": [ "JJ" ], "Dornier": [ "NNP" ], "velours": [ "NN" ], "Berger": [ "NNP" ], "crudity": [ "NN" ], "Lopukhov": [ "NNP" ], "burden-sharing": [ "NN" ], "airstrips": [ "NNS" ], "Catalina": [ "NNP" ], "reconstruct": [ "VB", "VBP" ], "Ricardo": [ "NNP" ], "fabrics": [ "NNS" ], "steamer": [ "NN" ], "Batista": [ "NNP" ], "price-conscious": [ "JJ" ], "diethylstilbestrol": [ "NN" ], "yellow-dwarf": [ "JJ", "NN" ], "idiotic": [ "JJ" ], "easy-to-operate": [ "JJ" ], "gages": [ "NNS" ], "mergers": [ "NNS" ], "adjustable-rate": [ "JJ" ], "pummel": [ "VB" ], "Lego": [ "NNP" ], "Radhakrishnan": [ "NNP" ], "swears": [ "VBZ" ], "Morozov": [ "NNP" ], "upturned": [ "JJ" ], "Performance": [ "NN", "NNP" ], "Metzenbaum": [ "NNP" ], "Kennedy-Waxman": [ "NNP" ], "Hanks": [ "NNP" ], "tersely": [ "RB" ], "malaria": [ "NN" ], "Wachtler": [ "NNP" ], "Arianists": [ "NNS" ], "HIV-1": [ "NNP" ], "paralinguistic": [ "JJ" ], "Breger": [ "NNP" ], "incomprehension": [ "NN" ], "pocketbooks": [ "NNS" ], "Hays": [ "NNP" ], "Documentation": [ "NNP" ], "listlessly": [ "RB" ], "Advani": [ "NNP" ], "Torres": [ "NNP" ], "Chevy": [ "NNP", "NN" ], "dynamo": [ "NN" ], "outages": [ "NNS" ], "Gumbel": [ "NNP" ], "devout": [ "JJ" ], "Giustiniani": [ "NNP" ], "sipped": [ "VBD" ], "rhythms": [ "NNS" ], "Datuk": [ "NNP" ], "ventricular": [ "JJ" ], "W.I.": [ "NNP" ], "HCA": [ "NNP" ], "colloquium": [ "NN" ], "unheeded": [ "JJ" ], "re-creactions": [ "NNS" ], "Bergson": [ "NNP" ], "Mohamed": [ "NNP" ], "Zooey": [ "NNP" ], "suggest": [ "VBP", "VB" ], "Kanin": [ "NNP" ], "Torrey": [ "NNP" ], "vexed": [ "VBN", "JJ" ], "reconstructs": [ "VBZ" ], "Zulu": [ "NNP" ], "Aristotelean-Thomistic": [ "JJ" ], "occupants": [ "NNS" ], "vexes": [ "VBZ" ], "comprehension": [ "NN" ], "Hmong": [ "JJ", "NNPS" ], "Prentice": [ "NNP" ], "Seynes": [ "NNP" ], "bureaucratic": [ "JJ" ], "bingo": [ "NN" ], "aback": [ "RB" ], "incomparable": [ "JJ" ], "Lambert": [ "NNP" ], "binge": [ "NN" ], "rebounded": [ "VBD", "VBN", "VBP", "NN", "VB" ], "counter-apparatus": [ "NN" ], "Kimihide": [ "NNP" ], "blower": [ "NN" ], "general-practice": [ "JJ" ], "post-chemotherapy": [ "JJ" ], "incomparably": [ "RB" ], "containers": [ "NNS" ], "Unitil": [ "NNP" ], "topgallant": [ "NN" ], "fleeting": [ "JJ" ], "Staples": [ "NNP", "NNPS", "NNS" ], "Birnbaum": [ "NNP" ], "bereavement": [ "NN" ], "Dey": [ "NNP" ], "lumberyard": [ "NN" ], "evidenced": [ "VBN" ], "craft": [ "NN", "VB" ], "Gerosa": [ "NNP" ], "benefits": [ "NNS", "VBZ" ], "budged": [ "VBD", "VBN" ], "high-altitude": [ "JJ" ], "teapot": [ "NN" ], "pre-market": [ "JJ" ], "Secretary": [ "NNP", "NN" ], "deliberations": [ "NNS" ], "unelected": [ "JJ" ], "information-service": [ "NN" ], "hyperactive": [ "JJ" ], "heartland": [ "NN" ], "Bengalis": [ "NNPS" ], "mine-safety": [ "JJ" ], "thousandth": [ "JJ" ], "penultimate": [ "JJ" ], "Darkhorse": [ "NNP" ], "beepers": [ "NNS" ], "last-season": [ "JJ" ], "Owning": [ "VBG" ], "uninterruptible": [ "JJ" ], "brewer": [ "NN" ], "Naphta": [ "NNP" ], "Menu": [ "NNP" ], "System-specific": [ "JJ" ], "brewed": [ "VBN" ], "Candidates": [ "NNS" ], "punctuality": [ "NN" ], "moderate-income": [ "JJ", "NN" ], "Refinery": [ "NN", "NNP" ], "bonanzas": [ "NNS" ], "Abrams": [ "NNP" ], "Rapping": [ "VBG" ], "furled": [ "VBD" ], "foursome": [ "NN" ], "bhoy": [ "NN" ], "Rochford": [ "NNP" ], "ingested": [ "VBD", "VBN" ], "Worlds": [ "NNPS", "NNP" ], "hyperventilating": [ "NN" ], "passbooks": [ "NNS" ], "scientifically-trained": [ "JJ" ], "New-issue": [ "JJ" ], "AIEE": [ "NNP" ], "Nestle": [ "NNP" ], "CanadianImmigration": [ "NNP" ], "characters": [ "NNS" ], "mentions": [ "VBZ", "NNS" ], "workings": [ "NNS" ], "dozing": [ "VBG" ], "common-sense": [ "JJ", "NN" ], "mentioning": [ "VBG", "NN" ], "Twinkies": [ "NNPS" ], "incredulously": [ "RB" ], "Watergate-beleaguered": [ "JJ" ], "woodworms": [ "NNS" ], "kibbutz-made": [ "JJ" ], "property-related": [ "JJ" ], "direct-mail-mogul": [ "NN" ], "anti-Noriega": [ "JJ" ], "medics": [ "NNS" ], "uncoached": [ "JJ" ], "Corault": [ "NNP" ], "die-hards": [ "NNS" ], "year-to-date": [ "JJ", "NN" ], "laptop": [ "NN", "JJ" ], "transporting": [ "VBG", "NN" ], "Methodists": [ "NNPS" ], "discussant": [ "NN" ], "resigning": [ "VBG", "NN" ], "Oleanders": [ "NNS" ], "for...": [ ":" ], "functionally": [ "RB" ], "vices": [ "NNS" ], "Protestants": [ "NNPS", "NNP", "NNS" ], "polarization": [ "NN" ], "UIC": [ "NNP" ], "cholesterol-free": [ "JJ" ], "monitored": [ "VBN", "VBD", "JJ" ], "three-night": [ "JJ" ], "furry": [ "JJ" ], "groused": [ "VBD" ], "explanatory": [ "JJ" ], "Corso": [ "NNP" ], "Flint": [ "NNP" ], "Corsi": [ "NNP" ], "caravan": [ "NN" ], "Philip": [ "NNP" ], "breakfasted": [ "VBD" ], "grouses": [ "VBZ" ], "erratically": [ "RB" ], "reorganizations": [ "NNS" ], "Hekhmatyar": [ "NNP" ], "Marrakesh": [ "NNP" ], "rubicund": [ "JJ" ], "inescapable": [ "JJ" ], "Corona": [ "NNP" ], "prominant": [ "JJ" ], "salesparson": [ "NN" ], "cruzados": [ "NNS" ], "Invalid": [ "NNP" ], "wholesaler": [ "NN" ], "incontrovertible": [ "JJ" ], "officals": [ "NNS" ], "Nerds": [ "NNS", "NNPS" ], "Belo-Universal": [ "NNP" ], "atmospheres": [ "NNS" ], "Crimea": [ "NNP" ], "Bomb": [ "VB" ], "headline-grabbing": [ "JJ" ], "Tears": [ "NNS" ], "Finns": [ "NNPS" ], "Aguais": [ "NNP" ], "willowy": [ "JJ" ], "Milkaukee": [ "NNP" ], "crudest": [ "JJS" ], "incumbents": [ "NNS" ], "utmosts": [ "NNS" ], "HP": [ "NNP" ], "Pius": [ "NNP" ], "HK": [ "NNP" ], "HI": [ "NNP" ], "HN": [ "NNP" ], "HM": [ "NNP" ], "Autocoder": [ "NN" ], "advertise": [ "VB", "VBP" ], "HF": [ "NNP" ], "perfected": [ "VBN" ], "HD": [ "NNP" ], "HE": [ "PRP" ], "nobleman": [ "NN" ], "securities": [ "NNS" ], "fingerprinting": [ "NN", "VBG" ], "time-poor": [ "JJ" ], "Hu": [ "NNP" ], "ubiquity": [ "NN" ], "Hi": [ "UH", "NNP" ], "Ho": [ "NNP", "UH" ], "marauders": [ "NNS" ], "Begbick": [ "NNP" ], "booking": [ "NN", "VBG" ], "He": [ "PRP", "NNP" ], "plights": [ "NNS" ], "weasel-worded": [ "JJ" ], "searchingly": [ "RB" ], "supermachine": [ "NN" ], "Sandner": [ "NNP" ], "erotica": [ "NNS" ], "Deductible": [ "JJ" ], "homewards": [ "RB" ], "Commodities": [ "NNS", "NNP", "NNPS" ], "Gaston": [ "NNP" ], "Tassinari": [ "NNP" ], "hutments": [ "NNS" ], "plunging": [ "VBG", "NN" ], "H.": [ "NNP", "NN" ], "Venneboerger": [ "NNP" ], "Duverger": [ "NNP" ], "steadily": [ "RB" ], "Bess": [ "NNP" ], "efforts": [ "NNS" ], "twitch": [ "NN", "VB" ], "curry": [ "VB", "NN" ], "Best": [ "JJS", "NNP", "RBS|JJS", "RBS" ], "loan-officer": [ "NN" ], "Provided": [ "VBN" ], "Touches": [ "VBZ" ], "SERVICE": [ "NN", "NNP" ], "presence": [ "NN" ], "lunatic-fringe": [ "JJ" ], "shaken": [ "VBN", "JJ" ], "bucket-shop": [ "JJ" ], "Pattison": [ "NNP" ], "UNRESOLVED": [ "JJ" ], "free-market": [ "JJ", "NN" ], "Puts": [ "VBZ" ], "outmatched": [ "VBD" ], "much-anticipated": [ "JJ" ], "indispensable": [ "JJ", "NN" ], "lambskin": [ "NN" ], "aquisitions": [ "NNS" ], "anti-war-related": [ "JJ" ], "tacks": [ "NNS" ], "Mennis": [ "NNP" ], "synthesis": [ "NN" ], "Rocky": [ "NNP" ], "abysmal": [ "JJ" ], "differences": [ "NNS" ], "removes": [ "VBZ" ], "Zurkuhlen": [ "NNP" ], "Peasant": [ "NNP" ], "uncle": [ "NN" ], "outfox": [ "VB" ], "tacky": [ "JJ" ], "sustained": [ "VBN", "VBD", "JJ" ], "removed": [ "VBN", "JJ", "VBD" ], "Bascom": [ "NNP" ], "U.M.T.": [ "NN" ], "Fired": [ "VBN" ], "product-registration": [ "NN" ], "muster": [ "VB", "NN" ], "prowl": [ "NN", "VBP", "JJ" ], "higher-salaried": [ "JJR", "JJ" ], "coconut-lime": [ "JJ" ], "Fires": [ "NNP", "VBZ" ], "BRK": [ "NNP" ], "flappers": [ "NNS" ], "precious": [ "JJ", "RB" ], "LaMantia": [ "NNP" ], "CAROLG": [ "NNP" ], "starchy": [ "JJ" ], "gagline": [ "NN" ], "penal": [ "JJ" ], "trim": [ "VB", "JJ", "NN" ], "trio": [ "NN" ], "believably": [ "RB" ], "Resnik": [ "NNP" ], "nineteen-year-old": [ "JJ" ], "showin": [ "NN" ], "Hudson": [ "NNP", "NN" ], "Dissidents": [ "NNS" ], "escutcheons": [ "NNS" ], "panic-driven": [ "JJ" ], "Europeanization": [ "NN" ], "bio-medicine": [ "NN" ], "believable": [ "JJ" ], "boodleoo": [ "UH" ], "bearishness": [ "NN" ], "check": [ "NN", "VBP", "VB" ], "tris": [ "NNS" ], "constructed": [ "VBN", "VBD" ], "Rd.": [ "NNP" ], "detriments": [ "NNS" ], "tip": [ "NN", "VB", "VBP" ], "Steinkuhler": [ "NNP" ], "tin": [ "NN" ], "stagnant": [ "JJ" ], "tie": [ "NN", "VBP", "VB" ], "MARYLAND": [ "NNP" ], "Kincannon": [ "NNP" ], "Jewishness": [ "NN", "NNP" ], "dissonances": [ "NNS" ], "phoenix": [ "NN" ], "loan-loss": [ "NN", "JJ" ], "uniformly": [ "RB" ], "Windflower": [ "NNP" ], "wisecracked": [ "VBD" ], "Boase": [ "NNP" ], "dullest": [ "JJS" ], "magpies": [ "NNS" ], "multi-phase": [ "JJ" ], "hashing": [ "NN", "VBG" ], "Salon": [ "NNP" ], "portends": [ "VBZ" ], "longer": [ "RB", ",", "JJR", "RBR" ], "fill-in-your-favorite-epithet": [ "JJ" ], "Pollitt": [ "NNP" ], "landed": [ "VBD", "VBN" ], "longed": [ "VBD", "VBN" ], "great-nieces": [ "NNS" ], "grisly": [ "JJ" ], "effluents": [ "NNS" ], "premeditated": [ "JJ" ], "unimpeded": [ "JJ" ], "Loftier": [ "JJR" ], "tongue-in-cheek": [ "JJ", "RB" ], "Newsstands": [ "NNS" ], "business-minded": [ "JJ" ], "computation": [ "NN" ], "pseudophloem": [ "NN" ], "Sherry": [ "NNP", "NN" ], "swollen-looking": [ "JJ" ], "Today": [ "NN", "NNP", "RB" ], "Dad": [ "NNP", "NN" ], "Dae": [ "NNP" ], "Dag": [ "NNP" ], "essentials": [ "NNS" ], "helio-copters": [ "NNS" ], "Dan": [ "NNP" ], "Dai": [ "NNP" ], "Standard": [ "NNP", "JJ", "NN" ], "Boredom": [ "NN" ], "Das": [ "NNP" ], "Insurers": [ "NNS", "NNP" ], "Day": [ "NNP", "NN" ], "non-black": [ "JJ" ], "furrows": [ "NNS", "VBZ" ], "MEASUREX": [ "NNP" ], "credit-tightening": [ "NN" ], "Micelles": [ "NNS" ], "Rheumatics": [ "NN|NNS" ], "Chirac": [ "NNP" ], "bluffs": [ "NNS" ], "headquarter": [ "JJ" ], "Atari": [ "NNP" ], "pseudo-anthropological": [ "JJ" ], "intellectuality": [ "NN" ], "Bronfmans": [ "NNP", "NNS" ], "penises": [ "NNS" ], "Secure": [ "VB" ], "Canoe": [ "NNP" ], "Kron": [ "NNP" ], "firmwide": [ "RB" ], "registered": [ "VBN", "VBD", "JJ" ], "culminating": [ "VBG" ], "F111": [ "NN" ], "planning": [ "NN", "VBG" ], "symposiums": [ "NNS" ], "quick": [ "JJ", "NN", "RB" ], "eroding": [ "VBG" ], "phrasing": [ "NN" ], "Talleyrand": [ "NNP" ], "Antenne": [ "NNP" ], "delineaments": [ "NNS" ], "two-week": [ "JJ" ], "Katsanos": [ "NNP" ], "sucks": [ "VBZ" ], "public-interest": [ "JJ", "NN" ], "steelmakers": [ "NNS" ], "potato-supplier": [ "NN" ], "Colossians": [ "NNPS" ], "stands": [ "VBZ", "NNS", "NN" ], "Heorot": [ "NNP" ], "nationalized": [ "VBD", "VBN", "JJ" ], "unripe": [ "JJ" ], "contracted": [ "VBD", "VBN" ], "scads": [ "NNS" ], "Federico": [ "NNP" ], "nearness": [ "NN" ], "Karches": [ "NNP" ], "Karcher": [ "NNP" ], "Podger": [ "NNP" ], "reply": [ "NN", "VB", "VBP" ], "outlandishly": [ "RB" ], "Groom": [ "NNP" ], "custom-chip": [ "JJ" ], "once-spare": [ "JJ" ], "alkaline": [ "JJ" ], "Age": [ "NNP", "NN" ], "dazed": [ "JJ", "VBD", "VBN" ], "Aga": [ "NNP" ], "long-termers": [ "NNS" ], "water": [ "NN", "VB", "JJ" ], "attainment": [ "NN" ], "Miyata": [ "NNP" ], "baseball": [ "NN" ], "Gauged": [ "VBN" ], "refuse-littered": [ "JJ" ], "supplying": [ "VBG" ], "avenging": [ "JJ", "VBG" ], "sleepwalk": [ "NN", "VB" ], "bygone": [ "JJ" ], "expressly": [ "RB" ], "grounded": [ "VBN", "VBD", "JJ" ], "blotch": [ "NN" ], "restructuring": [ "NN", "VBG", "JJ", "VBG|NN" ], "binomial": [ "NN" ], "Lemans": [ "NNP" ], "potable": [ "JJ" ], "world-renowned": [ "JJ" ], "mimicked": [ "VBN" ], "Unione": [ "NNP" ], "unbidden": [ "JJ" ], "Justice": [ "NNP", "JJ", "NN" ], "Cover-Up": [ "NNP" ], "expletive": [ "NN" ], "Unions": [ "NNS" ], "bad-risk": [ "JJ" ], "conventional-type": [ "JJ" ], "transferrable": [ "JJ" ], "Import": [ "NN" ], "swallowed": [ "VBN", "VBD" ], "wrecking": [ "VBG" ], "Townley": [ "NNP" ], "third-quarter": [ "JJ", "NN", "NN|JJ" ], "fifty-pound": [ "JJ" ], "unsheathe": [ "VB" ], "Zeisler": [ "NNP" ], "frothy": [ "JJ" ], "memory": [ "NN" ], "certiorari": [ "NNS", "FW" ], "smeared": [ "VBN", "JJ" ], "smudged": [ "JJ" ], "October": [ "NNP" ], "reworking": [ "NN" ], "conductor": [ "NN" ], "sessions": [ "NNS" ], "clicking": [ "VBG", "NN" ], "outputs": [ "NNS" ], "cashier": [ "NN" ], "mainline": [ "JJ", "NN" ], "drown": [ "VB", "VBP" ], "first-hand": [ "JJ", "RB" ], "insights": [ "NNS" ], "Fourth-quarter": [ "JJ", "NN" ], "dialed": [ "VBD", "VBN" ], "chignon": [ "NN" ], "reprimanding": [ "VBG" ], "radon": [ "NN" ], "flagship": [ "NN", "JJ" ], "nonunion": [ "JJ" ], "rainstorm": [ "NN" ], "Safford": [ "NNP" ], "Antilles": [ "NNPS" ], "streak": [ "NN", "VBP" ], "earphone": [ "NN" ], "stream": [ "NN", "VB" ], "downfall": [ "NN" ], "Media": [ "NNP", "NN", "NNS", "NNPS" ], "expectant": [ "JJ" ], "Wonham": [ "NNP" ], "Borscht": [ "NNP" ], "Ushikubo": [ "NNP" ], "major-frauds": [ "JJ" ], "quacks": [ "NNS", "VBZ" ], "conversely": [ "RB" ], "Thoroughbred": [ "NNP" ], "living-room": [ "NN" ], "tip-toe": [ "NN" ], "Terms": [ "NNS", "NNP" ], "front-back": [ "JJ" ], "Mihalek": [ "NNP" ], "inheritance": [ "NN" ], "protectionists": [ "NNS" ], "secured": [ "VBN", "VBD", "JJ" ], "unwire": [ "VB" ], "Fruit": [ "NNP", "NN" ], "Shvartzer": [ "NNP" ], "unappreciated": [ "JJ" ], "Traps": [ "NNS" ], "cocktail": [ "NN" ], "marketability": [ "NN" ], "Horizons": [ "NNP" ], "red-white-and-blue": [ "JJ" ], "clone": [ "NN", "VB" ], "Mazzone": [ "NNP" ], "soyaburgers": [ "NNS" ], "THR": [ "NNP" ], "birthday": [ "NN" ], "interest-subsidy": [ "NN" ], "floral": [ "JJ" ], "renovation": [ "NN" ], "gorges": [ "NNS", "VBZ" ], "XCEL": [ "NNP" ], "radar-threat": [ "JJ" ], "summoning": [ "VBG" ], "amuse": [ "VB", "VBP" ], "purification": [ "NN" ], "needy": [ "JJ", "NNS" ], "Buttrick": [ "NNP" ], "Premark": [ "NNP" ], "out-migrants": [ "NNS" ], "Sidley-Ashurst": [ "NNP" ], "Leblanc": [ "NNP" ], "nine-member": [ "JJ" ], "Suntory": [ "NNP" ], "Leblang": [ "NNP" ], "head-injury": [ "NN" ], "acts": [ "NNS", "VBZ" ], "Upton": [ "NNP" ], "Wozniak": [ "NNP" ], "yuppies": [ "NNS" ], "Breaking": [ "VBG", "NNP" ], "midnight": [ "NN", "RB" ], "dinkiest": [ "JJS" ], "ducklings": [ "NNS" ], "Premarin": [ "NNP" ], "pre-eminent": [ "JJ" ], "swank": [ "JJ" ], "atCrcial": [ "NNP" ], "MinHa": [ "NNP" ], "handgun": [ "NN" ], "microcomputer": [ "NN", "JJR" ], "decontrol": [ "NN", "VB" ], "Communese": [ "NNP" ], "Moving": [ "VBG" ], "joblessness": [ "NN" ], "swans": [ "NNS" ], "Greifswald": [ "NNP" ], "thaws": [ "NNS" ], "eccentricities": [ "NNS" ], "Linger": [ "NNP", "VB" ], "buffetings": [ "NNS" ], "McDade": [ "NNP" ], "Misanthrope": [ "NN" ], "Edwardsville": [ "NNP", "NN" ], "iron-ore": [ "NN" ], "endeavored": [ "VBD", "VBN" ], "Adherence": [ "NN" ], "remolding": [ "VBG" ], "Triggering": [ "VBG" ], "not-so-pale": [ "JJ" ], "non-smoking": [ "JJ" ], "guffawing": [ "VBG" ], "Motorized": [ "NNP" ], "smog-ridden": [ "JJ" ], "Contest": [ "NNP", "NN" ], "cross-examination": [ "NN" ], "self-screening": [ "JJ" ], "Geological": [ "NNP" ], "Marder": [ "NNP" ], "Burford": [ "NNP", "NN" ], "phalanx": [ "NN" ], "Save": [ "VB", "NNP", "IN", "RB" ], "hysteria": [ "NN" ], "hacker": [ "NN" ], "set-aside": [ "JJ", "NN" ], "factors": [ "NNS", "VBZ" ], "middleman": [ "NN" ], "factory": [ "NN", "JJ" ], "extrapolate": [ "VB" ], "hacked": [ "VBD", "VBN" ], "misallocating": [ "VBG" ], "Palumbo": [ "NNP" ], "maneuver": [ "NN", "VB" ], "attendee": [ "NN" ], "attended": [ "VBD", "VBN" ], "bolts": [ "NNS" ], "profit-margin": [ "NN" ], "blizzards": [ "NNS" ], "counteroffensive": [ "NN" ], "nightingale": [ "NN" ], "hobble": [ "VB" ], "eject": [ "VB" ], "motional-modified": [ "JJ" ], "sophistication": [ "NN" ], "earning": [ "VBG", "NN" ], "asphalt-hard": [ "JJ" ], "compression": [ "NN" ], "blood-thirsty": [ "JJ" ], "gusto": [ "NN" ], "Collinsville": [ "NNP" ], "gusts": [ "NNS" ], "retreating": [ "VBG" ], "heavy-weight": [ "JJ" ], "reproval": [ "NN" ], "gusty": [ "JJ" ], "high-resolution": [ "JJ" ], "suspend": [ "VB", "VBP" ], "fetched": [ "VBD", "VBN" ], "moneymaker": [ "NN" ], "rafts": [ "NNS" ], "undercapitalized": [ "JJ" ], "Kelly": [ "NNP" ], "fetches": [ "VBZ" ], "commissioners": [ "NNS" ], "Panoz": [ "NNP" ], "Miyoshi": [ "NNP" ], "Lasmo": [ "NNP" ], "molded": [ "VBN", "JJ", "VBD" ], "J&L": [ "NNP", "NN" ], "J&C": [ "NNP" ], "J&B": [ "NNP" ], "maiestie": [ "NN" ], "haggle": [ "VB", "NN" ], "plastic": [ "NN", "JJ" ], "Margarito": [ "NNP" ], "Hoylake": [ "NNP" ], "Conable": [ "NNP" ], "Cult": [ "NNP", "NN" ], "Leonel": [ "NNP" ], "Culp": [ "NNP" ], "festivity": [ "NN" ], "exploring": [ "VBG" ], "amines": [ "NNS" ], "unobtainable": [ "JJ" ], "Co-authors": [ "NNS" ], "season": [ "NN" ], "T.T.": [ "NNP" ], "overcapacity": [ "NN" ], "Saull": [ "NNP" ], "Jerell": [ "NNP" ], "lengthier": [ "RBR" ], "quirky": [ "JJ" ], "traditionnel": [ "FW" ], "distantly": [ "RB" ], "Kedzie": [ "NNP" ], "toughening": [ "VBG" ], "public-policy": [ "NN", "JJ" ], "Runners": [ "NNS" ], "chugs": [ "NNS" ], "marines": [ "NNS" ], "mariner": [ "NN" ], "Yankee": [ "NNP", "JJ", "NN" ], "unprecedentedly": [ "RB" ], "legalizing": [ "VBG" ], "generality": [ "NN" ], "whiskies": [ "NNS" ], "Gastronomes": [ "NNS" ], "nominating": [ "VBG" ], "Jemela": [ "NNP" ], "bakeware": [ "NN" ], "conversion": [ "NN" ], "kimchi": [ "FW" ], "silhouette": [ "NN" ], "Premont": [ "NNP" ], "Funeral": [ "NNP", "NN" ], "mourners": [ "NNS" ], "Multifoods": [ "NNP", "NNPS" ], "Merrick": [ "NNP" ], "Bastards": [ "NNS" ], "in-home": [ "JJ" ], "paraphrase": [ "NN", "VBP" ], "pollution-reduction": [ "NN" ], "Aktiebolaget": [ "NNP" ], "optical-disk": [ "JJ" ], "agilely": [ "RB" ], "malpractices": [ "NNS" ], "social-services": [ "JJ" ], "sightings": [ "NNS" ], "de-iodination": [ "NN" ], "Olayan": [ "NNP" ], "Depression-era": [ "JJ" ], "pencils": [ "NNS", "VBZ" ], "Kuomintang": [ "NNP" ], "AC&R": [ "NNP" ], "Pflugerville": [ "NNP" ], "Audrey": [ "NNP" ], "trafficking": [ "NN", "VBG" ], "inter-Arab": [ "JJ" ], "senior": [ "JJ", "NN" ], "Humana": [ "NNP" ], "shrieking": [ "NN" ], "P\\/E": [ "NNP" ], "serenade": [ "NN" ], "grade-equivalent": [ "NN" ], "above-ground": [ "JJ" ], "supraventricular": [ "JJ" ], "diverge": [ "VB", "VBP" ], "end-of-model-year": [ "JJ" ], "woos": [ "VBZ" ], "evaluative": [ "JJ" ], "Continuing": [ "VBG", "NNP" ], "obstinacy": [ "NN" ], "shimmer": [ "NN" ], "Parry": [ "NNP" ], "woof": [ "NN" ], "wood": [ "NN" ], "CERTIFICATES": [ "NNS", "NNPS" ], "wool": [ "NN" ], "dreaded": [ "VBN", "VBD", "JJ" ], "Stettin": [ "NNP" ], "reoffered": [ "VBN", "JJ", "VBD" ], "expectation": [ "NN" ], "payment-in-kind": [ "JJ" ], "dye": [ "NN", "VB" ], "Baroque": [ "JJ", "NNP" ], "Discoveries": [ "NNS" ], "finance-minister": [ "NN" ], "badinage": [ "NN" ], "verdicts": [ "NNS" ], "braver": [ "JJR" ], "landro": [ "NN" ], "orphans": [ "NNS" ], "fainted": [ "VBD", "VBN" ], "denouement": [ "NN" ], "state-registered": [ "JJ" ], "clowns": [ "NNS" ], "fainter": [ "JJR" ], "Jozef": [ "NNP" ], "Corporal": [ "NNP" ], "poling": [ "VBG" ], "Physicians": [ "NNP", "NNS", "NNPS" ], "silver-bearded": [ "JJ" ], "art-historical": [ "JJ" ], "warfront": [ "NN" ], "beasties": [ "NNS" ], "Keeler": [ "NNP" ], "Spread": [ "VB" ], "Gehrig": [ "NNP" ], "Volk": [ "NNP" ], "Seminole": [ "NNP" ], "parking": [ "NN", "JJ", "VBG" ], "Sniper": [ "NNP" ], "fenced-in": [ "JJ" ], "inhibitory": [ "JJ" ], "mortgage": [ "NN", "VB" ], "crystal": [ "NN", "JJ" ], "ways": [ "NNS" ], "review": [ "NN", "VB", "VBP" ], "Univision": [ "NNP" ], "equipmwent-leasing": [ "NN" ], "inhibitors": [ "NNS" ], "Tarzan": [ "NNP" ], "region-by-region": [ "JJ" ], "shareholding": [ "NN" ], "Mazeroski": [ "NNP" ], "rebuilds": [ "VBZ" ], "toying": [ "VBG" ], "Harlow": [ "NNP" ], "sirens": [ "NNS" ], "multiplied": [ "VBN", "VBD" ], "shivered": [ "VBD" ], "medium-size": [ "JJ" ], "fellow-craftsmen": [ "NNS" ], "micelle": [ "NN" ], "U.S.": [ "NNP", "JJ", "VBP" ], "fast-talking": [ "JJ" ], "inseparable": [ "JJ" ], "multiplies": [ "VBZ" ], "recentralized": [ "VBN" ], "isthmus": [ "NN" ], "postage": [ "NN" ], "missions": [ "NNS" ], "gimmicky": [ "JJ" ], "gimmicks": [ "NNS" ], "Broadstar": [ "NNP" ], "prompted": [ "VBD", "VBN" ], "government-securities": [ "NNS", "JJ" ], "Turbine": [ "NNP" ], "utterance": [ "NN" ], "Sarrebourg": [ "NNP" ], "skull-bashings": [ "NNS" ], "Zumbrunn": [ "NNP" ], "key-financial": [ "JJ" ], "kazoo": [ "NN" ], "hereunto": [ "RB" ], "saliva": [ "NN" ], "destabilizes": [ "VBZ" ], "quinine": [ "NN" ], "assertions": [ "NNS" ], "misapplying": [ "VBG" ], "Herculean": [ "JJ" ], "skeletons": [ "NNS" ], "raring": [ "JJ" ], "bums": [ "NNS" ], "Beauty": [ "NNP", "NN" ], "disappearances": [ "NNS" ], "eyewitnesses": [ "NNS" ], "self-sustaining": [ "JJ" ], "microscopic": [ "JJ" ], "cucumber": [ "NN" ], "Deets": [ "NNP" ], "umpire": [ "NN" ], "followup": [ "JJ" ], "messes": [ "NNS" ], "long-keeping": [ "JJ" ], "reimburse": [ "VB", "VBP" ], "Breve": [ "NNP" ], "implored": [ "VBN", "VBD" ], "annoyance": [ "NN" ], "sea-horses": [ "NNS" ], "foreclosed": [ "VBN", "JJ", "VBN|JJ", "VBD" ], "implores": [ "VBZ" ], "attentive": [ "JJ" ], "excelled": [ "VBD", "VBN" ], "rhymes": [ "VBZ", "NNS" ], "refractory": [ "JJ", "NN" ], "Colors": [ "NNS", "NNPS" ], "jonquils": [ "NNS" ], "Cotran": [ "NNP" ], "spritzers": [ "NNS" ], "rhymed": [ "VBD" ], "Crystallography": [ "NNP" ], "Contend": [ "VBP" ], "Sako": [ "NN" ], "WFXT-TV": [ "NNP" ], "double-B-plus": [ "JJ", "NN" ], "generation-skipping": [ "JJ" ], "Sake": [ "FW" ], "telephone": [ "NN", "VB" ], "dissident": [ "JJ", "NN" ], "Ticketron": [ "NNP" ], "Euro-TV": [ "NNP" ], "Amomng": [ "JJ" ], "Speakership": [ "NNP" ], "Saks": [ "NNP", "NNS" ], "distiller": [ "NN" ], "Wardair": [ "NNP" ], "Kirchberger": [ "NNP" ], "Format": [ "NN" ], "distributions": [ "NNS" ], "rope-sight": [ "NN" ], "now-famous": [ "JJ" ], "supra": [ "RB" ], "Burdines": [ "NNPS" ], "macaroni": [ "NNS", "NN" ], "distilled": [ "VBN", "JJ" ], "reminder": [ "NN" ], "isle": [ "NN" ], "twosome": [ "NN" ], "barefoot": [ "RB", "JJ" ], "disadvantages": [ "NNS" ], "smothering": [ "VBG" ], "driver": [ "NN" ], "drives": [ "NNS", "VBZ" ], "driven": [ "VBN", "JJ" ], "submarines": [ "NNS" ], "Waxworks": [ "NNP" ], "Eta": [ "NNP" ], "vacanices": [ "NNS" ], "Bennigsen-Foerder": [ "NNP" ], "Perozo": [ "NNP" ], "vocalist": [ "NN" ], "Haaek": [ "NNP" ], "Bondholders": [ "NNS" ], "pints": [ "NNS" ], "sinkhole": [ "NN" ], "demineralization": [ "NN" ], "flakes": [ "NNS" ], "components": [ "NNS" ], "protege": [ "NN" ], "a-Monthly": [ "JJ" ], "soapsuds": [ "NNS" ], "disloyal": [ "JJ" ], "Stimulates": [ "VBZ" ], "agriculturals": [ "NNS" ], "waste-storage": [ "NN" ], "Provo": [ "NNP" ], "Teijin": [ "NNP" ], "lavish": [ "JJ" ], "Eisenach": [ "NNP" ], "kiln": [ "NN" ], "Diodati": [ "NNP" ], "LVMH": [ "NNP" ], "insight": [ "NN" ], "sampled": [ "VBN", "VBD" ], "blot": [ "NN", "VB" ], "metal-working": [ "JJ" ], "hint": [ "NN", "VBP", "VB" ], "Louella": [ "NNP" ], "embezzled": [ "VBD" ], "Shealy": [ "NNP" ], "Applications": [ "NNS", "NNPS" ], "bloodhounds": [ "NNS" ], "falsely": [ "RB" ], "bloc": [ "NN" ], "blob": [ "NN" ], "samples": [ "NNS", "VBZ" ], "sampler": [ "NN" ], "Simca": [ "NNP" ], "CABBAGE": [ "NN" ], "outwardly": [ "RB", "." ], "nattily": [ "RB" ], "Woolworth": [ "NNP", "NN" ], "intrapreneurship": [ "NN" ], "replaced": [ "VBN", "VBD" ], "hermetically": [ "RB" ], "Vedder": [ "NNP" ], "undergraduates": [ "NNS" ], "Shelton": [ "NNP" ], "divested": [ "VBN", "JJ", "VBD" ], "kilowatts": [ "NNS" ], "squirreling": [ "VBG" ], "Sultane": [ "NNP" ], "Tootal": [ "NNP" ], "Newbold": [ "NNP" ], "particle": [ "NN" ], "aqueous": [ "JJ" ], "oddly": [ "RB" ], "sternly": [ "RB" ], "quid-pro-quo": [ "JJ" ], "SHAREHOLDER": [ "NN" ], "Sultans": [ "NNS" ], "friar": [ "NN" ], "civil-rights": [ "NNS", "JJ", "NN" ], "mass-marketers": [ "NNS" ], "profit-making": [ "JJ", "NN" ], "six-week-long": [ "JJ" ], "Sidorenko": [ "NNP" ], "non-OPEC": [ "JJ" ], "neuralgia": [ "NN" ], "two-nosed": [ "JJ" ], "Ricostruzioni": [ "NNP" ], "Wray": [ "NNP" ], "deduce": [ "VB" ], "viselike": [ "JJ" ], "table": [ "NN", "VB" ], "International": [ "NNP", "JJ" ], "low-density": [ "JJ", "NN" ], "intact": [ "JJ" ], "McEnroe": [ "NNP" ], "Paddy": [ "NNP" ], "Knowing": [ "VBG" ], "Parthenon": [ "NNP" ], "Brentwood": [ "NNP" ], "renounce": [ "VB" ], "stops": [ "VBZ", "NNS" ], "reallocating": [ "VBG" ], "A-1": [ "JJ", "NN" ], "central-city": [ "NN" ], "unfunded": [ "JJ" ], "severed": [ "VBN", "VBD" ], "English-Danish": [ "NNP" ], "metropolis": [ "NN" ], "Later": [ "RB", "JJR", "RBR", "JJ" ], "populists": [ "NNS" ], "convincing": [ "JJ", "VBG", "NN" ], "warlords": [ "NNS" ], "squashed-looking": [ "JJ" ], "substratum": [ "NN" ], "fishery": [ "NN" ], "fantasize": [ "VBP", "VB" ], "pastors": [ "NNS" ], "Albright": [ "NNP" ], "Montagu": [ "NNP" ], "Mabon": [ "NNP" ], "one-act-play": [ "JJ" ], "Bundestag": [ "NNP", "NN" ], "Croix": [ "NNP" ], "beavers": [ "NNS" ], "Transit": [ "NNP", "NN" ], "small-fry": [ "JJ" ], "Erected": [ "VBN" ], "Blanche": [ "NNP" ], "Prevented": [ "VBN" ], "hypothalamus": [ "NN" ], "spaghetti": [ "NNS", "NN" ], "cripples": [ "NNS" ], "concentrations": [ "NNS" ], "Goebbels": [ "NNP" ], "McCracken": [ "NNP" ], "Soviet-built": [ "JJ" ], "flocculation": [ "NN" ], "scofflaws": [ "NNS" ], "spinal": [ "JJ", "NN" ], "Equate": [ "VB" ], "top-tang": [ "JJ", "NN" ], "lastly": [ "RB" ], "Kaufhaus": [ "NNP" ], "feudal": [ "JJ" ], "lawmaking": [ "JJ", "NN" ], "weeknight": [ "NN" ], "interest-only": [ "JJ" ], "Beatles": [ "NNPS", "NNP" ], "Opposite": [ "IN", "JJ" ], "Brannon": [ "NNP" ], "DELAYS": [ "VBZ" ], "Amenitskii": [ "NNP" ], "TECO": [ "NNP" ], "thereabouts": [ "RB" ], "suggestibility": [ "NN" ], "deteriorating": [ "VBG", "JJ" ], "Mlangeni": [ "NNP" ], "Marver": [ "NNP" ], "gibe": [ "NN" ], "Orejuela": [ "NNP" ], "baronial": [ "JJ" ], "Kummerfeld": [ "NNP" ], "caraway": [ "JJ", "NN" ], "garnered": [ "VBD", "VBN" ], "Circulations": [ "NNP" ], "overbreadth": [ "NN" ], "sentimentalists": [ "NNS" ], "sleaze": [ "NN" ], "greeted": [ "VBD", "VBN" ], "mat": [ "NN" ], "Drogoul": [ "NNP" ], "avec": [ "NNP", "FW" ], "Twin": [ "NNP" ], "Radical": [ "NNP" ], "Tawes": [ "NNP" ], "sleazy": [ "JJ" ], "risk-averse": [ "JJ" ], "russet": [ "JJ" ], "frighten": [ "VB", "VBP" ], "business-class": [ "JJ" ], "cringed": [ "VBD" ], "Principles": [ "NNS", "NNPS" ], "Spievack": [ "NNP" ], "slosh": [ "VB" ], "LeCave": [ "NNP" ], "special-edition": [ "JJ" ], "incorrect": [ "JJ" ], "B-cells": [ "NNS" ], "rubbed": [ "VBD", "VBN" ], "Woodbury": [ "NNP" ], "junk-financed": [ "JJ" ], "Quote": [ "NN" ], "dramatizations": [ "NNS" ], "then-husband": [ "NN" ], "just-picked": [ "JJ" ], "erecting": [ "VBG" ], "rubber": [ "NN" ], "Nuf": [ "RB" ], "arbitrageurs": [ "NNS" ], "redial": [ "VB" ], "sweet-tongued": [ "JJ" ], "eight-mile": [ "JJ" ], "ramification": [ "NN" ], "trash": [ "NN", "VB" ], "stalwart": [ "JJ", "NN" ], "preoccupation": [ "NN" ], "requested": [ "VBD", "VBN" ], "Berard": [ "NNP" ], "Basham": [ "NNP" ], "separate": [ "JJ", "VBP", "VB" ], "stocky": [ "JJ" ], "grotesques": [ "NNS" ], "CNA": [ "NNP" ], "CNN": [ "NNP" ], "stocks": [ "NNS", "VBZ", "RB" ], "freshness": [ "NN" ], "sun-inflamed": [ "JJ" ], "Knots": [ "NNP" ], "stackers": [ "NNS" ], "applause": [ "NN" ], "refinanced": [ "VBN", "VBD" ], "bellyaching": [ "NN" ], "Ornstein": [ "NNP" ], "Mean": [ "VB" ], "derrick": [ "NN" ], "Guidi": [ "NNP" ], "neo-classicism": [ "NN" ], "Dubovskoi": [ "NNP" ], "Suttle": [ "NNP" ], "preparation": [ "NN" ], "Stretch": [ "NNP", "JJ" ], "lack": [ "NN", "VB", "VBP" ], "executing": [ "VBG" ], "cornfield": [ "NN" ], "lacy": [ "JJ" ], "Words": [ "NNS", "NNPS" ], "blood-forming": [ "JJ" ], "piazzas": [ "NNS" ], "matron": [ "NN" ], "synthetic": [ "JJ", "NN" ], "contortion": [ "NN" ], "catastrophe": [ "NN" ], "Ecole": [ "NNP" ], "Christiane": [ "NNP" ], "lining": [ "VBG", "NN" ], "switched": [ "VBD", "VBN", "JJ" ], "Christiana": [ "NNP" ], "ham-radio": [ "NN" ], "dejectedly": [ "RB" ], "palsy": [ "NN" ], "Butane": [ "NN" ], "siblings": [ "NNS" ], "defuse": [ "VB" ], "Christians": [ "NNPS", "NNP", "NNS" ], "Usha": [ "NNP" ], "fax": [ "NN", "JJ" ], "low-duty": [ "JJ" ], "multiple-year": [ "JJ" ], "far": [ "RB", "IN", "JJ" ], "ticked": [ "VBD", "VBN", "JJ" ], "perseveres": [ "VBZ" ], "shavings": [ "NNS" ], "Behrens": [ "NNP" ], "psychologist": [ "NN" ], "sons": [ "NNS" ], "fan": [ "NN", "VBP", "VB" ], "hems": [ "NNS" ], "ticket": [ "NN" ], "ticker": [ "NN" ], "fad": [ "NN" ], "product-launch": [ "NN" ], "Capellan": [ "NNP" ], "upper-middle": [ "JJ" ], "shipboard": [ "NN", "JJ" ], "stimulus": [ "NN" ], "Litton": [ "NNP" ], "Ideologues": [ "NNS" ], "lesbians": [ "NNS" ], "booting": [ "VBG" ], "mountain-bike": [ "NN" ], "Endeavor": [ "VB", "NNP" ], "Galbraith": [ "NNP" ], "Macao": [ "NNP" ], "align": [ "VB", "VBP" ], "Chase": [ "NNP" ], "entourage": [ "NN" ], "Scarpia": [ "NNP" ], "Hattori": [ "NNP" ], "synergy": [ "NN" ], "Discourse": [ "NNP" ], "Welling": [ "NNP" ], "NOVEMBER": [ "NNP" ], "fabricates": [ "VBZ" ], "over-emphasized": [ "VBN", "JJ" ], "interaxial": [ "JJ" ], "imported": [ "VBN", "VBD", "JJ", "VBN|JJ" ], "Definitive": [ "JJ" ], "advantageous": [ "JJ" ], "reception": [ "NN" ], "whimper": [ "NN", "VB" ], "serve-the-world": [ "JJ" ], "importer": [ "NN" ], "attitudes": [ "NNS" ], "fathoms": [ "NNS" ], "ultra-pasteurized": [ "JJ" ], "scowling": [ "NN", "VBG" ], "conciliator": [ "NN" ], "whitecollar": [ "JJ" ], "Clouds": [ "NNP" ], "Susan": [ "NNP" ], "totalistic": [ "JJ" ], "Rachmaninoff": [ "NNP" ], "researchable": [ "JJ" ], "Mohammed": [ "NNP" ], "Gundy": [ "NNP" ], "red-light": [ "JJ" ], "Leonore": [ "NNP" ], "Danza": [ "NNP" ], "Communication": [ "NNP", "NN" ], "price-wise": [ "JJ" ], "fumigant": [ "NN" ], "weaning": [ "VBG" ], "schoolgirlish": [ "JJ" ], "miniature": [ "JJ", "NN" ], "supplements": [ "NNS", "VBZ" ], "spaceborn": [ "JJ" ], "gleeful": [ "JJ" ], "runoff": [ "NN" ], "Forrest": [ "NNP" ], "Metter": [ "NNP" ], "Chores": [ "NNS" ], "ex-president": [ "NN" ], "UNDEFINED": [ "JJ" ], "vioiln": [ "NN" ], "Things": [ "NNS", "NNP" ], "layer": [ "NN" ], "less-serious": [ "JJ" ], "spaciousness": [ "NN" ], "busboy": [ "NN" ], "appliances": [ "NNS" ], "Reader": [ "NNP" ], "inorganic": [ "JJ" ], "Luray": [ "NNP" ], "aberrant": [ "JJ" ], "pervades": [ "VBZ" ], "Maurer": [ "NNP" ], "punts": [ "NNS" ], "kidney-shaped": [ "JJ" ], "forcefully": [ "RB" ], "conspiring": [ "VBG" ], "pervaded": [ "VBD", "VBN" ], "new-home": [ "JJ" ], "school-lunch": [ "NN" ], "branded": [ "VBN", "JJ" ], "Zipper": [ "NNP" ], "waxen": [ "JJ" ], "resistor": [ "NN" ], "amalgamations": [ "NNS" ], "grabbing": [ "VBG", "NN" ], "crested": [ "JJ" ], "operators": [ "NNS" ], "Sidekick": [ "NNP" ], "stutter": [ "NN" ], "something...": [ ":" ], "Figaro": [ "NNP", "FW" ], "domination": [ "NN" ], "keyhole": [ "NN" ], "stick": [ "VB", "VBP", "NN" ], "Hegel": [ "NNP" ], "big-time": [ "JJ" ], "portended": [ "VBD" ], "Confronted": [ "VBN" ], "Zela": [ "NNP" ], "plagiarism": [ "NN" ], "battle-shattered": [ "JJ" ], "Thunderbirds": [ "NNPS" ], "protons": [ "NNS" ], "Kwon": [ "NNP" ], "arbitrating": [ "VBG" ], "Zell": [ "NNP" ], "forbearance": [ "NN" ], "Free-marketeers": [ "NNS" ], "originations": [ "NNS" ], "psychoanalytic": [ "JJ" ], "powers-that-be": [ "NN" ], "challenging": [ "VBG", "JJ" ], "drug-making": [ "JJ" ], "Thurday": [ "NNP" ], "Bonito": [ "NNP" ], "univalent": [ "JJ" ], "protects": [ "VBZ" ], "closet-sized": [ "JJ" ], "Grohl": [ "NNP" ], "meditate": [ "VB" ], "cold-storage": [ "JJ" ], "recursive": [ "JJ" ], "sleeplessly": [ "RB" ], "Know-Nothing": [ "JJ" ], "Friendly": [ "NNP" ], "wither": [ "VB", "VBP" ], "gullies": [ "NNS" ], "speeding": [ "VBG", "JJ", "NN" ], "shoo-in": [ "NN" ], "light-headedness": [ "JJ" ], "sandwich": [ "NN" ], "battle-cries": [ "NN" ], "Glo": [ "NNP" ], "Influential": [ "JJ" ], "commodity-chemical": [ "JJ" ], "oddballs": [ "NNS" ], "Shippin": [ "VB" ], "musicianship": [ "NN" ], "Careless": [ "NNP" ], "mismeasurements": [ "NNS" ], "Raucher": [ "NNP" ], "supply-and-demand": [ "NN" ], "penitentiary": [ "NN" ], "cults": [ "NNS" ], "retrofitted": [ "VBN" ], "Played": [ "VBN" ], "beatification": [ "NN" ], "LeMasters": [ "NNP" ], "cudgels": [ "NNS" ], "Player": [ "NNP", "NN" ], "culte": [ "FW" ], "retaliate": [ "VB" ], "Tech": [ "NNP" ], "half-dozen": [ "NN", "JJ" ], "Herschel": [ "NNP" ], "microsomal": [ "JJ" ], "Gestapo-style": [ "JJ" ], "gauges": [ "VBZ", "NNS" ], "non-sentimental": [ "JJ" ], "eludes": [ "VBZ" ], "Raikes": [ "NNP" ], "disabled": [ "JJ", "NN", "VBN" ], "gauged": [ "VBN", "VBD" ], "Jamiesson": [ "NNP" ], "scientist": [ "NN" ], "tuxedo-rental": [ "JJ" ], "Vranian": [ "NNP" ], "Pickens": [ "NNP" ], "dithers": [ "VBZ" ], "eluded": [ "VBD", "VBN" ], "read-my-lips": [ "JJ" ], "propensity": [ "NN" ], "Equivalent": [ "NN" ], "Threatened": [ "VBD" ], "excutives": [ "NNS" ], "conformist": [ "JJ", "NN" ], "filberts": [ "NNS" ], "Guyon": [ "NNP" ], "Dominican": [ "NNP", "JJ" ], "aggressively": [ "RB" ], "L": [ "NNP", "NN" ], "sub-station": [ "JJ", "NN" ], "screw-loose": [ "JJ" ], "accumulate": [ "VB", "VBP" ], "meat-processing": [ "JJ" ], "ozone-depleting": [ "JJ" ], "entropy": [ "NN" ], "Trustcorp": [ "NNP" ], "subtler": [ "JJR", "NN" ], "refresh": [ "VBP" ], "irreducible": [ "JJ" ], "rolling-steel": [ "NN" ], "Nutrasweet": [ "NNP" ], "malfunction": [ "NN" ], "succulent": [ "JJ" ], "fixture": [ "NN" ], "used": [ "VBN", "VBD", "JJ" ], "Tiger-Heli": [ "NNP" ], "Daywatch": [ "NNP" ], "inflict": [ "VB" ], "JAUNTS": [ "NNS" ], "Oculon": [ "NNP" ], "twists": [ "NNS", "VBZ" ], "democracy-free": [ "JJ" ], "out-of-mind": [ "JJ" ], "dugout": [ "NN" ], "Mulcahy": [ "NNP" ], "Frankenstein": [ "NNP" ], "congenial": [ "JJ" ], "one-sentence": [ "JJ" ], "Eliezer": [ "NNP" ], "electrical-products": [ "NNS" ], "docters": [ "NNS" ], "soulless": [ "JJ" ], "razor": [ "NN" ], "combed": [ "VBD", "VBN" ], "steeple": [ "NN" ], "forgive": [ "VB", "VBP" ], "Stauffer": [ "NNP" ], "abeyance": [ "NN" ], "hearths": [ "NNS" ], "lag": [ "VB", "NN", "VBP", "JJ" ], "dexamethasone": [ "NN" ], "blister": [ "NN" ], "honey-in-the-sun": [ "JJ" ], "Nonrecurring": [ "JJ" ], "non-academic": [ "JJ" ], "States-Yugoslav": [ "NNP" ], "cremated": [ "VBN" ], "Seger-Elvekrog": [ "NNP" ], "glottochronological": [ "JJ" ], "undercapitalization": [ "NN" ], "Helmsley-Spear": [ "NNP" ], "Barakat": [ "NNP" ], "Booming": [ "JJ" ], "patrons...": [ ":" ], "municipal-bond": [ "JJ", "NN" ], "fancy": [ "JJ", "NN", "VB" ], "brave": [ "JJ", "VB" ], "once-grumpy": [ "JJ" ], "speedometer": [ "NN" ], "lower-quality": [ "NN", "JJR" ], "passes": [ "VBZ", "NNS" ], "breathless": [ "JJ" ], "Co-sponsoring": [ "NNP" ], "Giroldi": [ "NNP", "NNS" ], "SWITCH": [ "NN" ], "inhibitions": [ "NNS" ], "polybutenes": [ "NNS" ], "passed": [ "VBN", "VBD" ], "penetrates": [ "VBZ" ], "single-shot": [ "JJ" ], "syrup": [ "NN" ], "court...": [ ":" ], "passel": [ "NN" ], "headache": [ "NN" ], "Paolo": [ "NNP" ], "treasured": [ "VBN", "JJ" ], "option": [ "NN", "VBP" ], "state-supervised": [ "JJ" ], "Pericle": [ "NNP" ], "relieved": [ "VBN", "VBD", "JJ" ], "Dijon": [ "NNP" ], "rawboned": [ "JJ" ], "semi-serious": [ "JJ" ], "treasurer": [ "NN" ], "nullifying": [ "VBG" ], "REALTY": [ "NNP" ], "Beefeater": [ "NNP" ], "Nishimura": [ "NNP" ], "reliever": [ "NN" ], "relieves": [ "VBZ" ], "finishing-school": [ "NN" ], "fence-sit": [ "VB" ], "Marina": [ "NNP" ], "sinless": [ "JJ" ], "Rico": [ "NNP" ], "F.A.O.": [ "NNP" ], "whiskered": [ "JJ" ], "brushlike": [ "JJ" ], "WPA": [ "NNP" ], "doubly": [ "RB" ], "West...": [ ":" ], "TRANSFER": [ "NN" ], "Crittenden": [ "NNP" ], "recently-filed": [ "JJ" ], "Anglo": [ "NNP" ], "Devices": [ "NNPS", "NNP", "NNS" ], "Wakui": [ "NNP" ], "gilt": [ "JJ", "NN|JJ", "NN" ], "Kombo": [ "NNP" ], "booklets": [ "NNS" ], "Dept.": [ "NNP" ], "Bamberger": [ "NNP" ], "Forge": [ "NNP" ], "Abercrombie": [ "NNP" ], "lorazapam": [ "NN" ], "perpetrate": [ "VB" ], "sandwiched": [ "VBN", "VBD" ], "Nuzhet": [ "NNP" ], "Supporters": [ "NNS" ], "hatbox": [ "NN" ], "staph": [ "NN" ], "archaized": [ "VBD" ], "manic-depressive": [ "NN" ], "Viewing": [ "VBG", "NN" ], "Refractories": [ "NNPS", "NNP" ], "sandwiches": [ "NNS" ], "Galvin": [ "NNP" ], "hurling": [ "VBG" ], "pianist": [ "NN" ], "puffing": [ "VBG" ], "human-resource": [ "JJ" ], "buff": [ "NN", "JJ" ], "wheedled": [ "VBN" ], "Boehlert": [ "NNP" ], "queasiness": [ "NN" ], "Coventry": [ "NNP" ], "reach": [ "VB", "VBP", "NN" ], "self-deluded": [ "JJ" ], "theircompany": [ "NN" ], "rumen": [ "NN" ], "miserly": [ "JJ" ], "Lafayette": [ "NNP", "NN" ], "Sears-McDonald": [ "NNP" ], "revivals": [ "NNS" ], "Giuseppe": [ "NNP" ], "soared": [ "VBD", "VBN" ], "equatorial": [ "JJ" ], "troubie": [ "NN" ], "windows": [ "NNS" ], "bugaboo": [ "NN" ], "coincides": [ "VBZ" ], "Switzer": [ "NNP" ], "locales": [ "NNS" ], "ingots": [ "NNS" ], "hindrance": [ "NN" ], "coincided": [ "VBD", "VBN" ], "Juliet": [ "NNP" ], "say...": [ ":" ], "agglutinin": [ "NN" ], "Forrester": [ "NNP" ], "rationalized": [ "JJ", "VBN" ], "reassembled": [ "VBN" ], "JP": [ "NNP" ], "Ebert": [ "NNP" ], "allocable": [ "JJ" ], "Erath": [ "NNP" ], "flexers": [ "NNS" ], "restarters": [ "NNS" ], "JH": [ "NNP" ], "laments": [ "VBZ", "NNS" ], "Forward": [ "NNP" ], "JA": [ "NNP" ], "tussled": [ "VBD" ], "ragging": [ "VBG" ], "Seattlites": [ "NNS" ], "grabbag": [ "NN" ], "Nationwide": [ "NNP", "JJ", "RB" ], "anvil": [ "NN" ], "firewood": [ "NN" ], "pianist-comedian": [ "NN" ], "Jr": [ "NNP" ], "Blaming": [ "VBG" ], "starters": [ "NNS" ], "Nature": [ "NNP", "NN" ], "Jo": [ "NNP" ], "Taruffi": [ "NNP" ], "unopposed": [ "JJ" ], "unilaterally": [ "RB" ], "feminists": [ "NNS" ], "hip": [ "NN", "JJ" ], "Bedford": [ "NNP" ], "hir": [ "PRP$" ], "his": [ "PRP$", "PRP" ], "mono-unsaturated": [ "JJ" ], "babble": [ "NN" ], "ceremoniously": [ "RB" ], "Cokely": [ "NNP" ], "amici": [ "FW" ], "explosively": [ "RB" ], "Bierce": [ "NNP" ], "longest": [ "JJS" ], "commiserate": [ "VB" ], "banquet": [ "NN" ], "ogress": [ "NN" ], "loneliness": [ "NN" ], "obstructionism": [ "NN" ], "JOINT": [ "JJ" ], "J.": [ "NNP" ], "dossiers": [ "NNS" ], "outstrips": [ "VBZ" ], "bars": [ "NNS", "VBZ" ], "Partnership": [ "NNP" ], "Shirt": [ "NNP" ], "intelligence": [ "NN" ], "Rospatch": [ "NNP" ], "yassuhs": [ "UH" ], "Shira": [ "NNP" ], "barb": [ "NN" ], "bare": [ "JJ", "VB" ], "bard": [ "NN" ], "bark": [ "NN", "VB" ], "Cluff": [ "NNP" ], "compacted": [ "JJ", "VBN" ], "barn": [ "NN" ], "entry-limited": [ "JJ" ], "learns": [ "VBZ" ], "glistening": [ "VBG" ], "Libya": [ "NNP" ], "distinctive": [ "JJ" ], "Oregon": [ "NNP", "NN" ], "libraries": [ "NNS" ], "ENDED": [ "VBD" ], "Menelaus": [ "NNP" ], "use": [ "NN", "VB", "VBP" ], "consecutive": [ "JJ" ], "shtik": [ "NN" ], "Thursday-night": [ "JJ" ], "SALT": [ "NNP" ], "initially": [ "RB" ], "Ingbar": [ "NNP" ], "bronchus": [ "NN" ], "one-company": [ "JJ" ], "general-purpose": [ "JJ" ], "denomination": [ "NN" ], "rapid": [ "JJ" ], "admirers": [ "NNS" ], "African": [ "JJ", "NNP" ], "Japanese": [ "JJ", "NN", "NNPS", "NNP", "NNS", "VBP" ], "already-nervous": [ "NN" ], "Spurred": [ "VBN" ], "blazer": [ "NN" ], "Fracturing": [ "NNP" ], "sluiced": [ "VBD", "VBN" ], "Morrissey": [ "NNP" ], "small-business": [ "NN", "JJ" ], "Unitholders": [ "NNS" ], "Morey": [ "NNP" ], "four-nation": [ "JJ" ], "sluices": [ "NNS" ], "blazed": [ "VBD" ], "became": [ "VBD" ], "redemptions": [ "NNS" ], "upturns": [ "NNS" ], "Morel": [ "NNP" ], "arbitrarily": [ "RB" ], "network-affiliated": [ "JJ" ], "three-point": [ "JJ" ], "carpet-cleaning": [ "JJ" ], "unleveled": [ "VBN" ], "improper": [ "JJ" ], "goldfish": [ "NN" ], "weasel": [ "NN" ], "Cobb": [ "NNP" ], "Cobo": [ "NNP" ], "cyclicality": [ "NN" ], "pesatas": [ "NNS" ], "pro-Reagan": [ "JJ" ], "Latter-day": [ "JJ" ], "Hewlett-Woodmere": [ "NNP" ], "jugglers": [ "NNS" ], "steeples": [ "NNS" ], "Guitar": [ "NNP" ], "whom": [ "WP" ], "reduction": [ "NN" ], "ditches": [ "NNS", "VBZ" ], "whoe": [ "WP" ], "Elite": [ "NNP" ], "Finkel": [ "NNP" ], "buck": [ "NN", "VBP", "VB" ], "process-control": [ "NN" ], "passably": [ "RB" ], "single-party": [ "JJ" ], "Maitland": [ "NNP" ], "TRIAD": [ "NNP" ], "Afghan-Pakistan": [ "JJ" ], "tug-of-war": [ "NN" ], "near-completion": [ "NN" ], "left-handed": [ "JJ" ], "labor-shortage": [ "NN" ], "stolen": [ "VBN", "JJ" ], "Succeeding": [ "VBG" ], "bailouts": [ "NNS" ], "sportiest": [ "JJS" ], "fingerings": [ "NNS" ], "foreign-assistance": [ "NN" ], "Heidrick": [ "NNP" ], "wireline": [ "JJ" ], "underperformed": [ "VBN" ], "Springerville": [ "NNP" ], "engineers": [ "NNS" ], "City": [ "NNP", "NN" ], "lodges": [ "NNS" ], "Middlesex": [ "NNP" ], "blurted": [ "VBD", "VBN" ], "self-promotion": [ "NN" ], "Edwards": [ "NNP" ], "Edwardh": [ "NNP" ], "lodged": [ "VBN", "VBD" ], "Fleet\\/Norstar": [ "NNP" ], "Write-offs": [ "NNS" ], "Freeze": [ "NN" ], "anguish": [ "NN", "VBP" ], "Cite": [ "VBP" ], "gallus-snapping": [ "JJ" ], "openended": [ "VBN" ], "predigested": [ "VBN" ], "twofold": [ "JJ", "RB" ], "myth": [ "NN" ], "retroactively": [ "RB" ], "Skydome": [ "NNP" ], "cumulus": [ "NN" ], "Vibrometer": [ "NN" ], "Rolls-Royce": [ "NNP" ], "widely": [ "RB" ], "itchy": [ "JJ" ], "pro-reform": [ "JJ", "NN" ], "parvenus": [ "NNS" ], "biochemist": [ "NN" ], "Ila": [ "NNP" ], "depersonalization": [ "NN" ], "negotiate": [ "VB", "VBP" ], "Sober": [ "NNP" ], "Fabian": [ "NNP" ], "psychoanalyst": [ "NN" ], "post-1987": [ "JJ" ], "executive-level": [ "JJ" ], "interrogation": [ "NN" ], "precedent-setting": [ "JJ" ], "verboten": [ "FW" ], "new-car": [ "NN", "JJ" ], "refute": [ "VB" ], "Seizing": [ "VBG" ], "edgy": [ "JJ" ], "unnourished": [ "JJ" ], "edge": [ "NN", "VB" ], "Augustines": [ "NNPS" ], "dares": [ "VBZ" ], "hotdog": [ "NN" ], "bleaching": [ "VBG" ], "honeymooning": [ "NN" ], "endeavour": [ "NN" ], "marshalling": [ "NN" ], "reliant": [ "JJ" ], "GLI": [ "NNP" ], "aftermaths": [ "NNS" ], "salutaris": [ "FW" ], "intervals": [ "NNS" ], "pyramiding": [ "VBG" ], "autumnal": [ "JJ" ], "Semenov": [ "NNP" ], "Sixteenth": [ "NNP", "JJ" ], "tigress": [ "NN" ], "tektite": [ "NN" ], "illusions": [ "NNS", "FW" ], "corroborated": [ "VBD", "VBN" ], "mile-long": [ "JJ" ], "half-melted": [ "JJ" ], "tamer": [ "JJR" ], "theorem": [ "NN" ], "single-digit": [ "JJ", "NN" ], "MedChem": [ "NNP" ], "curettage": [ "NN" ], "unscheduled": [ "JJ" ], "Farwell": [ "NNP" ], "Glory": [ "NN", "NNP" ], "twopoint": [ "NN" ], "conscript": [ "NN", "JJ" ], "sharpener": [ "NN" ], "REJECTED": [ "VBN" ], "Defends": [ "NNS", "VBZ" ], "rafters": [ "NNS" ], "specialized-engineering": [ "JJ" ], "WMB": [ "NNP" ], "antiseptic": [ "JJ", "NN" ], "sharpened": [ "VBN", "VBD" ], "Kass-Pedone": [ "NNP" ], "modifications": [ "NNS" ], "Cucamonga": [ "NNP" ], "capitals": [ "NNS" ], "drooled": [ "VBD" ], "ignore": [ "VB", "VBP" ], "one-week": [ "JJ" ], "unstable": [ "JJ" ], "rearrangement": [ "NN" ], "Teeley": [ "NNP" ], "pre-independence": [ "NN" ], "pro-student": [ "JJ" ], "Pharmaceutical": [ "NNP", "JJ" ], "konga": [ "NN" ], "hinted": [ "VBD", "VBN" ], "time-cast": [ "JJ" ], "Backs": [ "VBZ" ], "Leighton": [ "NNP" ], "highest-pitched": [ "JJ" ], "litter": [ "NN", "VBP" ], "selfishness": [ "NN" ], "co-developers": [ "NNS" ], "modernize": [ "VB" ], "insurance-cost": [ "JJ" ], "Prototype": [ "NN" ], "Clubs": [ "NNPS", "NNP", "NNS" ], "Fund": [ "NNP", "NN" ], "Virus": [ "NN" ], "Motorola": [ "NNP" ], "ticking": [ "VBG" ], "osmium": [ "NN" ], "headmaster": [ "NN" ], "Funk": [ "NNP" ], "PARENT": [ "NN" ], "Aguilar": [ "NNP" ], "non-beer": [ "JJ" ], "solecism": [ "NN" ], "Barton": [ "NNP" ], "Bartol": [ "NNP" ], "capital-punishment": [ "NN" ], "Taoists": [ "NNP" ], "cannons": [ "NNS" ], "palmed": [ "VBD" ], "roundup": [ "NN" ], "Fulfills": [ "VBZ" ], "Singleton": [ "NNP" ], "tauntingly": [ "RB" ], "Koreagate": [ "NNP" ], "Okrent": [ "NNP" ], "overgenerous": [ "JJ" ], "entrepreneurs": [ "NNS" ], "completing": [ "VBG" ], "I.R.S.": [ "NNP" ], "grazin": [ "VBG" ], "tyme": [ "NN" ], "hatred": [ "NN" ], "Nathan-Bond": [ "NNP" ], "resiliency": [ "NN" ], "microorganism": [ "NN" ], "unnoticed": [ "JJ" ], "stitched": [ "VBN" ], "conquest": [ "NN" ], "operational": [ "JJ" ], "OPPENHEIMER": [ "NNP" ], "shawls": [ "NNS" ], "religiosity": [ "NN" ], "Greene\\/Worldwide": [ "NNP" ], "Sonnett": [ "NNP" ], "resilience": [ "NN" ], "intraday": [ "JJ", "NN" ], "stitches": [ "NNS" ], "amidst": [ "IN" ], "Batallion-2000": [ "NNP" ], "window": [ "NN" ], "ABG-Semca": [ "NNP" ], "Fuzzy": [ "JJ" ], "skouting": [ "VBG" ], "albumin": [ "NN" ], "audio-visual": [ "JJ", "NN" ], "Beccaria": [ "NNP" ], "Verit": [ "NNP" ], "Maoist": [ "JJ" ], "higher-than-retail": [ "JJ" ], "Sylvan": [ "NNP" ], "Ziebarth": [ "NNP" ], "repeatedly": [ "RB" ], "Zedmark": [ "NNP" ], "Means": [ "NNP", "NNS", "NNPS", "VBZ" ], "non-Russian": [ "JJ" ], "Wickcliffe": [ "NNP" ], "commercialism": [ "NN" ], "licensees": [ "NNS" ], "feasting": [ "VBG" ], "peppermint": [ "NN" ], "majority-party": [ "JJ" ], "unsealed": [ "VBN", "JJ" ], "Westerners": [ "NNPS" ], "dill": [ "NN" ], "Ansel": [ "NNP" ], "dystrophy": [ "NN" ], "worthwhile": [ "JJ" ], "radiopasteurization": [ "NN" ], "shortcuts": [ "NNS" ], "gunpoint": [ "NN" ], "Hungerfords": [ "NNP" ], "divisive": [ "JJ" ], "missionaries": [ "NNS" ], "wall-flowers": [ "NNS" ], "capitalmarket": [ "NN" ], "forestalled": [ "VBN" ], "dessert-menu": [ "NN" ], "grouper": [ "NN" ], "malicious": [ "JJ" ], "Specifics": [ "NNS" ], "Embarcadero": [ "NNP" ], "grouped": [ "VBN" ], "ornamented": [ "VBN" ], "mammoth": [ "JJ" ], "interpretable": [ "JJ" ], "disrupting": [ "VBG" ], "Felsher": [ "NNP" ], "least-developed-nation": [ "JJ" ], "then-prevailing": [ "JJ" ], "half-filled": [ "JJ" ], "Foiles": [ "NNP" ], "fluorescence": [ "NN" ], "policymaker": [ "NN" ], "liquefy": [ "VB", "VBP" ], "Reformation": [ "NNP", "NN" ], "Foiled": [ "VBN" ], "KOFY": [ "NNP" ], "emoted": [ "VBD" ], "Oakland": [ "NNP", "NN" ], "scroll": [ "NN" ], "draftee": [ "NN" ], "reseachers": [ "NNS" ], "Kimmel": [ "NNP" ], "underachievers": [ "NNS" ], "philosopher": [ "NN" ], "instantaneous": [ "JJ" ], "Stands": [ "NNP" ], "prospectively": [ "RB" ], "Bowan": [ "NNP" ], "Viewpoint": [ "NNP", "NN" ], "special-interest": [ "JJ", "NN" ], "Endara": [ "NNP" ], "A.P.": [ "NNP" ], "squeezing": [ "VBG" ], "sweathruna": [ "FW" ], "Commanding": [ "VBG" ], "Dailey": [ "NNP" ], "property-rich": [ "JJ" ], "manufactured...": [ ":" ], "Systemwide": [ "JJ", "NNP" ], "Sobel": [ "NNP" ], "Porgy": [ "NNP" ], "engineered": [ "VBN", "VBD", "JJ" ], "headlined": [ "VBN", "VBD" ], "BANCORPORATION": [ "NNP" ], "NRM": [ "NNP" ], "auto-buying": [ "NN" ], "warships": [ "NNS" ], "Sims": [ "NNP" ], "LAN": [ "NNP" ], "troup": [ "NN" ], "one-thousandth": [ "NN" ], "fadeout": [ "NN" ], "Tarot-like": [ "JJ" ], "violinists": [ "NNS" ], "prepayment-protected": [ "JJ" ], "LAC": [ "NNP" ], "deals": [ "NNS", "VBZ" ], "Projections": [ "NNS" ], "Kuraray": [ "NNP", "NN" ], "dealt": [ "VBN", "VBD" ], "manifestly": [ "RB" ], "businesses": [ "NNS" ], "LAW": [ "NN", "NNP" ], "all-married": [ "JJ" ], "stainless-steel": [ "JJ" ], "Haynie": [ "NNP" ], "civic-lunch": [ "JJ" ], "Neanderthal": [ "JJ" ], "narcotizes": [ "VBZ" ], "reinsure": [ "VB" ], "Interviews": [ "NNS" ], "surefire": [ "JJ" ], "pre-French": [ "JJ" ], "Hutton": [ "NNP" ], "Raw-steel": [ "NN", "JJ" ], "Durwood": [ "NNP" ], "open-bank": [ "JJ" ], "beanballs": [ "NNS" ], "buffeted": [ "VBN" ], "universities": [ "NNS" ], "hourly": [ "JJ" ], "Zygmunt": [ "NNP" ], "Narita": [ "NNP" ], "non-familial": [ "JJ" ], "Zakes": [ "NNP" ], "attire": [ "NN" ], "Randall": [ "NNP" ], "post-colonial": [ "JJ" ], "twice-a-year": [ "JJ" ], "vistas": [ "NNS" ], "re-exports": [ "NNS" ], "noncontract": [ "JJ" ], "Belafonte": [ "NNP" ], "sinuses": [ "NNS" ], "Macropathology": [ "NN" ], "stock-conspiracy": [ "NN" ], "end-tailed": [ "VBN" ], "bottom-fishers": [ "NNS" ], "Technomic": [ "NNP" ], "Benediction": [ "NNP" ], "scrapped": [ "VBN", "VBD" ], "Alois": [ "NNP" ], "coverlet": [ "NN" ], "Dowd": [ "NNP" ], "Clapper": [ "NNP" ], "rationalistic": [ "JJ" ], "oversold": [ "VBN", "JJ", "VB" ], "U.S.-Korean": [ "JJ" ], "Hardy": [ "NNP" ], "permanent-insurance": [ "JJ" ], "Materials": [ "NNPS", "NNP", "NNS" ], "helpers": [ "NNS" ], "Spade": [ "NNP" ], "pseudo-history": [ "NN" ], "Carlsbad": [ "NNP" ], "feverishly": [ "RB" ], "shovel": [ "NN" ], "gossiped": [ "VBN" ], "declivity": [ "NN" ], "scales": [ "NNS", "VBZ" ], "forbid": [ "VB", "VBP", "UH" ], "chipped": [ "VBN", "VBD", "JJ" ], "black-and-white": [ "JJ" ], "shoved": [ "VBD", "VBN" ], "Threatening": [ "VBG" ], "subsidary": [ "JJ" ], "quake-inflicted": [ "JJ" ], "scaled": [ "VBN", "VBD" ], "adsorbs": [ "VBZ" ], "thirteenth-century": [ "JJ" ], "decade-long": [ "JJ" ], "Toho": [ "NNP" ], "nitrofurantoin": [ "NN" ], "shoves": [ "VBZ" ], "analyses": [ "NNS", "VBZ" ], "grassy": [ "JJ" ], "mycology": [ "NN" ], "pauses": [ "VBZ", "NNS" ], "Births": [ "NNS" ], "Jacksons": [ "NNPS" ], "deer-are-long-legged-rats-with-big-ears": [ "JJ" ], "modicum": [ "NN" ], "organismic": [ "JJ" ], "Murguia": [ "NNP" ], "exchange-listed": [ "JJ" ], "Dolphins": [ "NNPS" ], "particularistic": [ "JJ" ], "Gloom": [ "NN" ], "Selections": [ "NNS" ], "Gossips": [ "NNS" ], "inclined": [ "VBN", "JJ" ], "symbolizing": [ "VBG" ], "EMPLOYEE": [ "NN" ], "Oct.13": [ "NNP" ], "Copaken": [ "NNP" ], "Sighting": [ "VBG" ], "rabbit": [ "NN" ], "entwined": [ "VBN", "JJ" ], "thuringiensis": [ "FW" ], "Giannini": [ "NNP" ], "women": [ "NNS" ], "Trompe": [ "FW" ], "parent-company": [ "JJ", "NN" ], "ANF-Industrie": [ "NNP" ], "D.,Calif.": [ "NN" ], "restaged": [ "VBN" ], "extralegal": [ "JJ" ], "hookup": [ "NN" ], "Solloway": [ "NNP" ], "abort": [ "VB" ], "merged": [ "VBN", "JJ", "VBD" ], "kenning": [ "NN" ], "NTC": [ "NNP" ], "advancement": [ "NN" ], "NTG": [ "NNP" ], "Fox-Pitt": [ "NNP" ], "indulgence": [ "NN" ], "Northern": [ "NNP", "JJ" ], "descramblers.": [ "NN" ], "flaring": [ "VBG", "JJ" ], "rapt": [ "JJ" ], "heaving": [ "VBG" ], "Skipping": [ "VBG", "NN" ], "Magic": [ "NNP", "JJ" ], "rape": [ "NN", "VB", "VBP" ], "Cutbacks": [ "NNP" ], "Frisbee": [ "NNP" ], "guru": [ "NN" ], "patronize": [ "VB" ], "HUTTON": [ "NNP" ], "Hubie": [ "NNP" ], "fidgeting": [ "VBG" ], "Duchossois": [ "NNP" ], "extra-curricular": [ "JJ" ], "undersized": [ "VBN", "JJ" ], "goldsmith": [ "NN" ], "modulations": [ "NNS" ], "segmenting": [ "VBG" ], "exemplify": [ "VBP", "VB" ], "hurdles": [ "NNS" ], "bestsellers": [ "NNS" ], "anti-management": [ "JJ" ], "salvaging": [ "VBG", "NN" ], "Vassiliades": [ "NNP" ], "hurdled": [ "VBD" ], "Qualities": [ "NNPS", "NNP" ], "ethnic": [ "JJ" ], "Hence": [ "RB" ], "hymens": [ "NNS" ], "Dostoevski": [ "NNP" ], "Knightfall": [ "NNP" ], "sculptures": [ "NNS" ], "Aermacchi": [ "NNP" ], "interrupted": [ "VBN", "JJ", "VBD" ], "Far-reaching": [ "JJ" ], "Fairmont": [ "NNP" ], "sculptured": [ "VBN", "JJ" ], "penny-stocks": [ "NN" ], "high-rises": [ "NNS" ], "irregularity": [ "NN" ], "Rundfunk-Sinfonie-Orchester": [ "NNP" ], "Convulsively": [ "RB" ], "heavyweight": [ "NN", "JJ" ], "Toronto-based": [ "JJ", "NNP" ], "half-bottles": [ "NNS" ], "heebie-jeebies": [ "NNS" ], "fizzy": [ "NN" ], "humaneness": [ "NN" ], "dearest": [ "JJS" ], "primary-color": [ "JJ" ], "outsold": [ "VBD" ], "Inwood": [ "NNP" ], "obeisance": [ "NN" ], "Billard": [ "NNP" ], "complicate": [ "VB", "VBP" ], "inlet": [ "NN" ], "Hoemke": [ "NNP" ], "choosy": [ "JJ" ], "apologetically": [ "RB" ], "owe": [ "VBP", "VB" ], "money-wise": [ "JJ" ], "choose": [ "VB", "VBP" ], "Roizen": [ "NNP" ], "inconsistencies": [ "NNS" ], "covered": [ "VBN", "JJ", "VBD" ], "pending": [ "VBG", "JJ", "VBG|JJ" ], "Yoder": [ "NNP" ], "Task": [ "NNP" ], "Scandinavia": [ "NNP" ], "multi-purpose": [ "JJ" ], "Gabor": [ "NNP" ], "flour": [ "NN" ], "flout": [ "VB" ], "lionized": [ "VBN" ], "place-kicking": [ "NN" ], "catchwords": [ "NNS" ], "Gabon": [ "NNP" ], "Adam": [ "NNP" ], "microeconomic": [ "JJ" ], "Writing": [ "VBG", "NN", "NNP" ], "service": [ "NN", "VB", "VBP" ], "mollified": [ "VBN", "VBD" ], "decommissioned": [ "VBN" ], "drummers": [ "NNS" ], "HMOs": [ "NNP" ], "Considerable": [ "JJ" ], "Emulex": [ "NNP" ], "worst-case": [ "JJ" ], "unavailing": [ "JJ" ], "job-boosters": [ "NNS" ], "higher-toned": [ "JJ" ], "FiberWorld": [ "NNP" ], "Arts": [ "NNP", "NNPS", "NNS" ], "masterworks": [ "NNS" ], "completions": [ "NNS" ], "HATS": [ "NNS" ], "U.S.-built": [ "JJ" ], "Witnesses": [ "NNS", "NNPS" ], "whitish": [ "JJ" ], "Spangenberg": [ "NNP" ], "lobbied": [ "VBD", "VBN" ], "firepower": [ "NN" ], "sectional": [ "JJ" ], "Shuttle": [ "NNP", "NN" ], "Michelob": [ "NNP" ], "respects": [ "NNS", "VBZ" ], "effloresce": [ "VB" ], "unabated": [ "JJ" ], "gurgle": [ "NN" ], "impart": [ "VB" ], "McCafferty": [ "NNP" ], "dive": [ "NN", "VBP", "VB" ], "Vantage": [ "NNP" ], "proviso": [ "NN" ], "hair-relaxer": [ "NN" ], "witches": [ "NNS" ], "sunbaked": [ "JJ" ], "Deno": [ "NNP" ], "service-industry": [ "JJ", "NN" ], "digitalis": [ "NN" ], "supercritical": [ "JJ" ], "halfheartedly": [ "RB" ], "dumpster": [ "NN" ], "yori": [ "FW" ], "conflicts": [ "NNS", "VBZ" ], "Snedaker": [ "NNP" ], "Ed.": [ "NNP" ], "yore": [ "PRP$", "NN", "RB" ], "conscripted": [ "VBN" ], "feasible": [ "JJ" ], "conversation": [ "NN" ], "round-eyed": [ "JJ" ], "reweave": [ "VB" ], "slow-firing": [ "JJ" ], "warning-signals": [ "NN" ], "boondoggle": [ "NN" ], "information-delivery": [ "NN" ], "keyless": [ "JJ" ], "amorist": [ "NN" ], "nonrecurring": [ "VBG", "JJ" ], "experience-oriented": [ "JJ" ], "Maloof": [ "NNP" ], "much-delayed": [ "JJ" ], "Flushing": [ "NNP" ], "management-services": [ "NNS", "JJ" ], "endemic": [ "JJ" ], "tolerant": [ "JJ" ], "salient": [ "JJ" ], "triphenylstibine": [ "NN" ], "Swiss-franc": [ "NN" ], "Uprising": [ "NNP" ], "overdraft": [ "NN" ], "galley": [ "NN" ], "galled": [ "VBN" ], "tootles": [ "VBZ" ], "compact-disk": [ "NN" ], "minority-internship": [ "JJ" ], "earthshaking": [ "JJ" ], "pimplike": [ "JJ" ], "doomed": [ "VBN", "VBD", "JJ" ], "powdered": [ "JJ", "VBN" ], "simulate": [ "VB", "VBP" ], "institution": [ "NN" ], "heat-processing": [ "JJ" ], "Heymeyer": [ "NNP" ], "males": [ "NNS" ], "Bellow": [ "NNP" ], "recontamination": [ "NN" ], "say-speak": [ "NN" ], "Moldavian": [ "NNP" ], "riches": [ "NNS", "FW", "NN" ], "abetting": [ "VBG" ], "frugal": [ "JJ" ], "Fletcher": [ "NNP", "NN" ], "Corrupt": [ "NNP" ], "Ailey": [ "NNP" ], "creek-filled": [ "JJ" ], "Milling": [ "NNP" ], "quality-adjusted": [ "JJ" ], "Ailes": [ "NNP" ], "Empire": [ "NNP", "NN" ], "fissionable": [ "JJ" ], "Potash": [ "NNP" ], "muezzin": [ "NN" ], "quasi-xenophobic": [ "JJ" ], "Kremlin": [ "NNP" ], "Independent": [ "NNP", "JJ" ], "arraigning": [ "VBG" ], "shareholder-rights": [ "JJ", "NNS" ], "Pabst": [ "NNP" ], "ham-handed": [ "JJ" ], "pre-game": [ "JJ" ], "Braking": [ "NNP" ], "ghazals": [ "FW" ], "Twaron": [ "NNP" ], "Elizabeth": [ "NNP" ], "supplanted": [ "VBN" ], "Kiss": [ "VB" ], "Mattox": [ "NNP" ], "Yquem": [ "NNP" ], "Howie": [ "NNP" ], "Middlefield": [ "NNP" ], "wind-blown": [ "JJ" ], "firecrackers": [ "NNS" ], "Daniil": [ "NNP" ], "Laying": [ "VBG", "NNP" ], "siphon": [ "VB" ], "vouching": [ "VBG" ], "European-made": [ "JJ" ], "biologic": [ "JJ" ], "Mercedes": [ "NNP", "NNS", "NNPS" ], "delve": [ "VB" ], "highschool": [ "NN" ], "nucleotide": [ "NN" ], "Profits": [ "NNS", "NNPS" ], "amulets": [ "NNS" ], "terra-cotta-colored": [ "JJ" ], "much-lauded": [ "JJ" ], "Coeur": [ "NNP" ], "epicure": [ "NN" ], "CI": [ "NNP" ], "Assicurazioni": [ "NNP" ], "High": [ "NNP", "JJ", "RB" ], "Salter": [ "NNP" ], "Adjoining": [ "VBG" ], "Blvd": [ "NNP" ], "Silly": [ "NNP" ], "REQUESTS": [ "NNS" ], "seam": [ "NN" ], "smirked": [ "VBD" ], "Bantam": [ "NNP" ], "intragovernment": [ "JJ" ], "nolens": [ "FW" ], "non-market": [ "NN" ], "superimposes": [ "VBZ" ], "purely": [ "RB" ], "seaweed": [ "NN" ], "b-As": [ "IN", "NNS" ], "superimposed": [ "VBN", "JJ" ], "chicken": [ "NN" ], "seal": [ "NN", "VB", "VBP" ], "debate": [ "NN", "VB", "VBP" ], "Lingering": [ "JJ" ], "painted": [ "VBN", "VBD", "JJ" ], "Pyramids": [ "NNPS" ], "craziness": [ "NN" ], "Faget": [ "NNP" ], "cache": [ "NN" ], "Unpublished": [ "JJ" ], "Rey-controlled": [ "JJ" ], "Craft": [ "NN", "NNP" ], "tinges": [ "NNS" ], "re-echo": [ "VB" ], "Measured": [ "VBN" ], "property-sector": [ "NN" ], "lighter-than-air": [ "JJ" ], "Kollmorgen": [ "NNP" ], "sued": [ "VBD", "VBN" ], "UV-B": [ "NN", "JJ", "NNP" ], "Spinley": [ "NNP" ], "Quelch": [ "NNP" ], "canyons": [ "NNS" ], "flirting": [ "VBG" ], "Galophone-Kimberly": [ "NNP" ], "watercolor": [ "NN" ], "ones": [ "NNS" ], "sues": [ "VBZ" ], "daydreamed": [ "VBD" ], "suey": [ "NN" ], "Flugdienst": [ "NNP" ], "NIH": [ "NNP" ], "homosexuals": [ "NNS" ], "HCFCs": [ "NNS" ], "memorabilia": [ "NNS" ], "Sullivan": [ "NNP" ], "Maury": [ "NNP" ], "vied": [ "VBD", "VBN" ], "Promotional": [ "JJ" ], "NORC": [ "NNP" ], "Maura": [ "NNP" ], "grassroots-fueled": [ "JJ" ], "movie-star": [ "NN" ], "WIN": [ "NNP" ], "proprietorship": [ "NN" ], "Bertorelli": [ "NNP" ], "Gosh": [ "UH" ], "sediment": [ "NN" ], "truer": [ "JJR" ], "conversions": [ "NNS" ], "Siniscal": [ "NNP" ], "turbulent": [ "JJ" ], "Gold-backed": [ "JJ" ], "LMEYER": [ "NNP" ], "Lawrence": [ "NNP" ], "merits": [ "NNS", "VBZ" ], "recoiled": [ "VBD" ], "unfairly": [ "RB" ], "Amman": [ "NNP" ], "bright-red": [ "JJ" ], "Bernardine": [ "NNP" ], "Gutfeld": [ "NNP" ], "ever-quieter": [ "JJ" ], "record": [ "NN", "JJ", "VB", "VBP" ], "phase-one": [ "JJ" ], "Ramtron": [ "NNP" ], "superb": [ "JJ" ], "eight-cent": [ "JJ" ], "entrant": [ "NN" ], "chairmen": [ "NNS" ], "computer-hardware": [ "NN" ], "oldsters": [ "NNS" ], "trifle": [ "NN", "JJ", "RB", "VB" ], "Ellsaesser": [ "NNP" ], "reexamining": [ "VBG" ], "Zivley": [ "NNP" ], "Shunted": [ "VBN" ], "huts": [ "NNS" ], "neonatal": [ "JJ" ], "spoil": [ "VB", "VBP" ], "limited-time": [ "JJ" ], "paragraphing": [ "NN" ], "fervors": [ "NNS" ], "Safety-Kleen": [ "NNP" ], "Berlin-West": [ "NNP" ], "Tet": [ "NNP" ], "Daignault": [ "NNP" ], "Suemeg": [ "NNP" ], "Parkinson": [ "NNP", "NNPS" ], "Kirby": [ "NNP" ], "Shotgun-type": [ "JJ" ], "grain": [ "NN" ], "clogged": [ "VBN", "JJ", "VBD" ], "demurs": [ "VBZ" ], "DC-9": [ "JJ", "NN", "NNP" ], "torments": [ "VBZ", "NNS" ], "comestibles": [ "NNS" ], "out-of-school": [ "JJ" ], "wonder": [ "NN", "VBP", "JJ", "VB", "JJR" ], "kinesics": [ "NNS" ], "retailer-sales": [ "JJ" ], "worldly": [ "JJ" ], "Boundary": [ "NN" ], "fourth-grade": [ "JJ" ], "unhappiness": [ "NN" ], "no-layoff": [ "JJ" ], "adulterers": [ "NNS" ], "hypothalamically": [ "RB" ], "Margolin": [ "NNP" ], "Fujisankei": [ "NNP" ], "non-professional": [ "JJ" ], "lettermen": [ "NNS" ], "intimidates": [ "VBZ" ], "CF": [ "NNP" ], "freshborn": [ "NN" ], "Langendorf": [ "NNP" ], "enlarging": [ "VBG", "NN" ], "Strong-earnings": [ "NNS" ], "Benson": [ "NNP" ], "divinely": [ "RB" ], "Home-made": [ "JJ" ], "thrusting": [ "VBG", "NN" ], "sportswriter": [ "NN" ], "STATE": [ "NNP", "NN" ], "uncanny": [ "JJ" ], "repetition": [ "NN" ], "Navigation": [ "NNP" ], "kerchief": [ "NN" ], "wily": [ "JJ" ], "wilt": [ "MD", "NN", "VB" ], "opening-day": [ "NN" ], "intra-Community": [ "JJ" ], "disabled-workers": [ "NNS" ], "choices": [ "NNS" ], "will": [ "MD", "VBP", "NN", "RB", "VB" ], "hovering": [ "VBG" ], "Poetrie": [ "NNP" ], "suffix": [ "NN" ], "unaccommodating": [ "JJ" ], "riche": [ "JJ" ], "PLO": [ "NNP" ], "Potentially": [ "RB" ], "abbot": [ "NN" ], "Bollinger": [ "NNP" ], "Braques": [ "NNPS" ], "boite": [ "NNP" ], "unflappable": [ "JJ" ], "far-out": [ "JJ" ], "Plantation": [ "NNP", "NN" ], "richissimos": [ "NNS" ], "lobular": [ "JJ" ], "Bretton": [ "NNP" ], "Tactics": [ "NNS" ], "garbage-incinerator": [ "NN" ], "Hope": [ "NNP", "NN", "VB", "VBP" ], "Cambrex": [ "NNP" ], "Gaubert": [ "NNP" ], "Colman": [ "NNP" ], "privileges": [ "NNS", "VBZ" ], "program-dominated": [ "JJ" ], "limply": [ "RB" ], "horse-playing": [ "JJ" ], "retailing": [ "NN", "VBG" ], "Pasta": [ "NNP" ], "Londe": [ "NNP" ], "privileged": [ "JJ" ], "elbows": [ "NNS" ], "vaquero": [ "NN" ], "Janis": [ "NNP" ], "Sosnick": [ "NNP" ], "premiere": [ "NN", "VBP", "JJ", "VB" ], "takeoffs": [ "NNS" ], "MTV": [ "NNP" ], "diploma": [ "NN" ], "Voyagers": [ "NNPS" ], "first-amendment": [ "JJ" ], "proprietors": [ "NNS" ], "glared": [ "VBD" ], "marketwide": [ "JJ" ], "Bust": [ "NNP" ], "MTM": [ "NNP" ], "memorialist": [ "NN" ], "bear-market": [ "NN" ], "proprietory": [ "JJ" ], "suffragettes": [ "NNS" ], "already-expensive": [ "JJ" ], "asset-stripping": [ "JJ" ], "Looked": [ "VBD" ], "back-ups": [ "NNS" ], "Kutz": [ "NNP" ], "Muir": [ "NNP" ], "government-provided": [ "JJ" ], "unpacked": [ "JJ" ], "Lond.": [ "NNP" ], "theses": [ "NNS" ], "Minuses": [ "NNS" ], "commando-trained": [ "NN" ], "sensing": [ "VBG", "NN" ], "Haut": [ "NNP" ], "Annapolis": [ "NNP" ], "Quentin": [ "NNP" ], "Schmalma": [ "UH" ], "Conyers": [ "NNP" ], "quarter-moon": [ "NN" ], "identically": [ "RB" ], "melanderi": [ "NNPS" ], "Ayers": [ "NNP" ], "patria": [ "FW" ], "downturns": [ "NNS" ], "dooming": [ "VBG" ], "miniscule": [ "JJ", "NN" ], "Records\\/SONY": [ "NNP" ], "beauticians": [ "NNS" ], "Tower": [ "NNP" ], "happiness": [ "NN" ], "temerity": [ "NN" ], "Wolfsburg": [ "NNP" ], "avidly": [ "RB" ], "patronne": [ "NN" ], "two-page": [ "JJ" ], "point": [ "NN", "VBP", "RB", "VB" ], "Prohibition": [ "NNP", "NN" ], "Fujisawa": [ "NNP" ], "Milwaukee-based": [ "JJ" ], "crannies": [ "NNS" ], "Mattsson": [ "NNP" ], "earthquakes": [ "NNS" ], "Solodar": [ "NNP" ], "identical": [ "JJ" ], "Reared": [ "VBN" ], "Drum": [ "NNP" ], "tranquilizer": [ "NN" ], "permanent-looking": [ "JJ" ], "republics": [ "NNS" ], "Bante": [ "NNP" ], "name-droppers": [ "NNS" ], "idyllic": [ "JJ" ], "Norimasa": [ "NNP" ], "Bobettes": [ "NNS" ], "Bantu": [ "NNP" ], "fervente": [ "NNP" ], "ahem": [ "UH" ], "pamphlet": [ "NN" ], "Dealing": [ "VBG" ], "Federal-court": [ "JJ" ], "Barcus": [ "NNP" ], "repressed": [ "VBN", "JJ" ], "Desc": [ "NNP" ], "stain-resistant": [ "JJ" ], "Bunting": [ "NNP" ], "full-of-the-moon": [ "NN" ], "Milken": [ "NNP" ], "Fuller": [ "NNP" ], "credit...": [ ":" ], "faithfully": [ "RB" ], "IAFP": [ "NNP" ], "searching": [ "VBG", "NN" ], "Bronces": [ "NNP" ], "Sport-King": [ "NN" ], "darkhaired": [ "JJ" ], "self-content": [ "JJ" ], "Jonathan": [ "NNP" ], "neglecting": [ "VBG" ], "M.D.C": [ "NNP" ], "management-by-objective": [ "NN" ], "regular-featured": [ "JJ" ], "leaf": [ "NN" ], "lead": [ "VB", "VBN", "VBP", "JJ", "NN" ], "suavity": [ "NN" ], "leak": [ "NN" ], "mass-circulation": [ "JJ" ], "obscurities": [ "NNS" ], "lean": [ "JJ", "VBP", "VB" ], "Lavaro": [ "NN" ], "M.D.s": [ "NNS" ], "hold-back": [ "NN" ], "leap": [ "NN", "VBP", "VB" ], "nonfinancial": [ "JJ" ], "glacial": [ "JJ" ], "refolded": [ "VBD" ], "locate": [ "VB", "VBP" ], "mania": [ "NN" ], "all-in-all": [ "RB" ], "murderer": [ "NN" ], "Japanese\\/Chinese": [ "JJ" ], "Chimicles": [ "NNP" ], "mitt": [ "NN" ], "murdered": [ "VBN", "VBD", "JJ" ], "hoofmarks": [ "NNS" ], "Chester": [ "NNP" ], "slum": [ "NN" ], "Maui": [ "NNP" ], "tempered": [ "VBN", "VBD" ], "mite": [ "NN" ], "slug": [ "NN", "VB" ], "CONGRESSIONAL": [ "JJ" ], "Elios": [ "NNP" ], "incline": [ "NN" ], "stereotypically": [ "RB" ], "spilled": [ "VBD", "VBN" ], "ethics-related": [ "JJ" ], "shipping": [ "VBG", "NN" ], "surge": [ "NN", "VB" ], "Fundamentalists": [ "NNS", "NNPS" ], "Furiouser": [ "RBR" ], "Buick": [ "NNP" ], "Fosset": [ "NNP" ], "fatally": [ "RB" ], "Really": [ "RB", "UH", "NNP" ], "warranty": [ "NN" ], "Ecclesiastical": [ "NNP" ], "warrants": [ "NNS", "VBZ" ], "brambles": [ "NNS" ], "Predictions": [ "NNS" ], "druggers": [ "NNS" ], "brush": [ "NN", "JJ", "VB", "VBP" ], "inpenetrable": [ "JJ" ], "North-Central": [ "JJ" ], "Liebenow": [ "NNP" ], "Ball": [ "NNP", "NN" ], "resistors": [ "NNS" ], "Bali": [ "NNP" ], "grapevine": [ "NN" ], "Bald": [ "NNP" ], "province-wide": [ "JJ" ], "Bala": [ "NNP" ], "Sailor": [ "NNP" ], "Baly": [ "NNP" ], "Vern": [ "NNP" ], "NetWare": [ "NNP" ], "appointing": [ "VBG" ], "Kenji": [ "NNP" ], "funds": [ "NNS", "VBZ" ], "bombardments": [ "NNS" ], "corneal": [ "JJ" ], "missile-defense": [ "JJ" ], "Suggestion": [ "NNP" ], "Charmer": [ "NNP" ], "kibbutzniks": [ "NNS" ], "auto-dealer": [ "NN" ], "triple-digit": [ "JJ" ], "Bucharest": [ "NNP" ], "Gathering": [ "NN", "VBG" ], "Golf": [ "NNP", "NN" ], "Gold": [ "NNP", "NN" ], "Redbook": [ "NNP" ], "Goddamn": [ "UH" ], "insipid": [ "JJ" ], "recede": [ "VBP", "VB" ], "flood-prone": [ "JJ" ], "AFTERMATH": [ "NNP" ], "Hemingway": [ "NNP" ], "hand-wringing": [ "NN" ], "Strasny": [ "NNP" ], "network-owned": [ "JJ" ], "Tamales": [ "NNPS" ], "buffs": [ "NNS" ], "domesticates": [ "VBZ" ], "Mrads": [ "NNS" ], "horsewoman": [ "NN" ], "dearth": [ "NN" ], "carbohydrate": [ "NN" ], "bombarding": [ "VBG" ], "Vancouver": [ "NNP" ], "goodness": [ "NN" ], "wavelength": [ "NN" ], "anythin": [ "NN" ], "accolade": [ "NN" ], "Temporary": [ "JJ", "NNP" ], "ususal": [ "JJ" ], "more-or-less": [ "RB" ], "framer": [ "NN" ], "Adamski": [ "NNP" ], "book": [ "NN", "VB" ], "boom": [ "NN", "VB" ], "boon": [ "NN", "JJ" ], "Chinaman": [ "NNP" ], "Procedures": [ "NNPS", "NNP", "NNS" ], "honorary": [ "JJ" ], "withstood": [ "VBD", "VBN" ], "estanciero": [ "NN" ], "junk": [ "NN", "VB" ], "Jovanovich\\/Bruccoli": [ "NNP" ], "moguls": [ "NNS" ], "ideological": [ "JJ" ], "medications": [ "NNS" ], "dhow": [ "NN" ], "dollarette": [ "JJ" ], "Dover": [ "NNP" ], "Geingob": [ "NNP" ], "NFIB": [ "NNP" ], "Calmly": [ "RB" ], "rotting": [ "VBG" ], "tax-reform": [ "JJ", "NN" ], "well-entrenched": [ "JJ" ], "extended-range": [ "JJ" ], "Lust": [ "NNP" ], "northerly": [ "JJ" ], "hardboiled": [ "JJ" ], "mid-week": [ "JJ", "NN" ], "deferment": [ "NN" ], "Debts": [ "NNP" ], "BUSINESSLAND": [ "NNP" ], "Larsen": [ "NNP" ], "five-nation": [ "JJ" ], "co-venture": [ "NN" ], "Schuster": [ "NNP" ], "waste-management": [ "JJ", "NN" ], "advantage": [ "NN", "VB" ], "Moreira": [ "NNP" ], "fractioning": [ "VBG" ], "Adjusting": [ "VBG" ], "scold": [ "VB" ], "originality": [ "NN" ], "all-county": [ "JJ" ], "halfways": [ "RB" ], "mutinies": [ "NNS" ], "alphabetic": [ "JJ" ], "Duhagon": [ "NNP" ], "Elec": [ "NNP" ], "Apicella": [ "NNP" ], "button-down": [ "JJ" ], "citrus": [ "JJ", "NN" ], "cod-liver": [ "NN" ], "millages": [ "NNS" ], "appropriation": [ "NN" ], "rawhide": [ "NN" ], "Fridman": [ "NNP" ], "Kearney": [ "NNP" ], "Goshen": [ "NNP" ], "liaisons": [ "NNS" ], "ASSETS": [ "NNP", "NNPS", "NNS" ], "Loen": [ "NNP" ], "Cairenes": [ "NNPS" ], "Loeb": [ "NNP" ], "J/NNP.A.W.": [ "NNP" ], "broiled": [ "VBN" ], "deferments": [ "NNS" ], "ultra-violet": [ "JJ", "NN" ], "steadfastness": [ "NN" ], "non-compete": [ "JJ" ], "Loew": [ "NNP" ], "non-violent": [ "JJ" ], "Colonialism": [ "NN" ], "sooty": [ "JJ" ], "intonaco": [ "NN" ], "punning": [ "VBG" ], "precocity": [ "NN" ], "feasibility": [ "NN" ], "miniatures": [ "NNS" ], "Dissident": [ "NNP", "JJ" ], "sustaining": [ "VBG" ], "Cruger": [ "NNP" ], "Pampa": [ "NNP" ], "Charade": [ "NNP" ], "Burrill": [ "NNP" ], "hit-man": [ "NN" ], "Bosis": [ "NNP" ], "tiered": [ "JJ" ], "cooking": [ "NN", "VBG", "JJ" ], "Blackwill": [ "NNP" ], "BLOEDEL": [ "NNP" ], "Dylex": [ "NNP" ], "store-brand": [ "JJ" ], "AT&T": [ "NNP", "NN" ], "Agfa": [ "NNP" ], "hallucinating": [ "VBG" ], "Maldutis": [ "NNP" ], "shocks": [ "NNS", "VBZ" ], "widget": [ "NN" ], "Logging": [ "NN" ], "chins": [ "NNS" ], "Foundation": [ "NNP", "NN" ], "jubilantly": [ "RB" ], "zlotys": [ "NNS" ], "nawt": [ "RB" ], "china": [ "NN" ], "non-``": [ "``" ], "Octopus": [ "NNP" ], "doldrums": [ "NNS", "NN" ], "One-year": [ "NNP", "JJ" ], "Rundlett": [ "NNP" ], "climbed": [ "VBD", "VBN" ], "Nibble": [ "NNP" ], "compressor-manufacturing": [ "JJ" ], "Dubose": [ "NNP" ], "Jewell": [ "NNP" ], "Farther": [ "RB" ], "natures": [ "NNS" ], "over-leveraged": [ "JJ" ], "Shicoff": [ "NNP" ], "Isler": [ "NNP" ], "Isles": [ "NNP", "NNPS" ], "mortgage-lending": [ "JJ", "NN" ], "appropriately": [ "RB" ], "Dexter": [ "NNP" ], "lengthen": [ "VB", "VBP" ], "now-smaller": [ "JJ" ], "forbore": [ "VBD" ], "Vitulli": [ "NNP" ], "pro-rata": [ "JJ" ], "Warburgs": [ "NNPS" ], "ARTY": [ "NNP" ], "abbreviations": [ "NNS" ], "Gemeinschaft": [ "FW" ], "share-repurchase": [ "JJ" ], "Laodicean": [ "JJ", "NNP" ], "music": [ "NN" ], "therefore": [ "RB", "CC" ], "stock-registration": [ "NN" ], "Randell": [ "NNP" ], "Diabetes": [ "NNP" ], "Glenne": [ "NNP" ], "LOUIS": [ "NNP" ], "Clients": [ "NNS" ], "Red-blooded": [ "JJ" ], "father-murder": [ "NN" ], "primeval": [ "JJ" ], "Mattress": [ "NNP" ], "unpack": [ "VB" ], "Buoy": [ "NNP" ], "J.H.": [ "NNP" ], "Proprietary": [ "NNP" ], "archaeological": [ "JJ" ], "CHEMICAL": [ "NNP" ], "leadings": [ "NNS" ], "locker": [ "NN" ], "Colombia": [ "NNP", "NN" ], "anode": [ "NN" ], "sky-carving": [ "JJ" ], "six-mile": [ "JJ" ], "unreconstructed": [ "JJ" ], "cable-programming": [ "JJ" ], "Le": [ "NNP", "FW" ], "La": [ "NNP", "FW" ], "Lo": [ "NNP", "UH" ], "Li": [ "NNP" ], "American-style": [ "JJ" ], "Lu": [ "NNP" ], "cookers": [ "NNS" ], "automobile-parts": [ "JJ" ], "Biafra": [ "NNP" ], "absolute": [ "JJ", "NN" ], "LD": [ "NN" ], "LA": [ "NNP" ], "Malapai": [ "NNP" ], "Easter": [ "NNP", "NN" ], "LM": [ "NNP" ], "cutback": [ "NN" ], "Navin": [ "NNP" ], "playback": [ "NN" ], "LS": [ "NNP" ], "LP": [ "NNP", "NN" ], "dared": [ "VBD", "VBN" ], "Falcon": [ "NNP", "NN" ], "LX": [ "NNP" ], "junior-grade": [ "JJ" ], "Guste": [ "NNP" ], "L.": [ "NNP" ], "stingier": [ "JJR" ], "operator-assisted": [ "JJ" ], "emphysematous": [ "JJ" ], "Centerre": [ "NNP" ], "Hoping": [ "VBG" ], "down-payments": [ "NNS" ], "romped": [ "VBD" ], "Matunuck": [ "NNP" ], "sickening": [ "JJ" ], "tulip": [ "NN" ], "concoction": [ "NN" ], "Sarum": [ "NNP" ], "farmlands": [ "NNS" ], "nonsensical": [ "JJ" ], "point-of-sale": [ "JJ" ], "investment-counseling": [ "JJ" ], "Ehrlichman": [ "NNP" ], "Willy": [ "NNP" ], "already-shaky": [ "JJ" ], "Wills": [ "NNP" ], "whizzing": [ "VBG" ], "partnered": [ "VBN" ], "Dussa": [ "NNP" ], "Forty-one": [ "JJ" ], "CONTAIN": [ "VB" ], "Willa": [ "NNP" ], "multi-windowed": [ "JJ" ], "rewarded": [ "VBN", "VBD" ], "Boxford": [ "NNP" ], "Qinghua": [ "NNP" ], "Abbott": [ "NNP" ], "ligand": [ "NN" ], "occupations": [ "NNS" ], "randomization": [ "NN" ], "secede": [ "VB" ], "Progressivism": [ "NNP" ], "anticipations": [ "NNS" ], "HIV-related": [ "JJ" ], "wales": [ "NNS" ], "per-ton": [ "JJ" ], "Decisionline": [ "NNP" ], "variables": [ "NNS" ], "Prence": [ "NNP" ], "Libera": [ "FW" ], "Hickory": [ "NNP" ], "municipality": [ "NN" ], "riggers": [ "NNS" ], "HIGH": [ "NNP", "JJ" ], "recollections": [ "NNS" ], "Lodowick": [ "NNP" ], "multidimensional": [ "JJ" ], "undeveloped": [ "JJ" ], "glutted": [ "VBN", "JJ" ], "Mechanics": [ "NNP" ], "Shamu": [ "NNP" ], "five-percentage-point": [ "JJ" ], "Shame": [ "NNP", "VB" ], "arrow": [ "NN" ], "burial": [ "NN" ], "diatoms": [ "NNS" ], "Hovdingar": [ "FW" ], "Authenticated": [ "VBN" ], "telescope": [ "NN", "VB" ], "sandbars": [ "NNS" ], "Tiburon": [ "NNP" ], "outgeneraled": [ "VBN" ], "PENSION": [ "NN", "NNP" ], "Jamestown": [ "NNP" ], "allay": [ "VB" ], "WEDTECH": [ "NNP" ], "esoterica": [ "NNS" ], "touts": [ "VBZ" ], "Underseas": [ "NNP" ], "smirk": [ "NN", "VB" ], "mason": [ "NN" ], "encourage": [ "VB", "VBP" ], "zap": [ "VB", "VBP" ], "Correcting": [ "VBG" ], "outburst": [ "NN" ], "misrepresentations": [ "NNS" ], "full-spectrum": [ "NN" ], "stamping": [ "VBG", "VBG|NN", "NN" ], "sheetrock": [ "NN" ], "negociant": [ "NN" ], "resinlike": [ "JJ" ], "Blessings": [ "NNS" ], "Osric": [ "NNP" ], "air-conditioners": [ "NNS" ], "universally": [ "RB" ], "single-day": [ "JJ" ], "Pilsudski": [ "NNP" ], "competes": [ "VBZ" ], "commissaries": [ "NNS" ], "UH-60A": [ "NNP" ], "Crawford-Browne": [ "NNP" ], "ministries": [ "NNS" ], "Mooney": [ "NNP" ], "competed": [ "VBD", "VBN" ], "dentures": [ "NNS" ], "Walbancke": [ "NNP" ], "Krampe": [ "NNP" ], "Delfim": [ "NNP" ], "Mao": [ "NNP", "NN" ], "disfigured": [ "VBD", "VBN", "JJ" ], "maladies": [ "NNS" ], "Tshombe-Gizenga-Goa-Ghana": [ "NNP" ], "clamorous": [ "JJ" ], "reintroduces": [ "VBZ" ], "seizures": [ "NNS" ], "polybutene": [ "NN" ], "Itch": [ "VB" ], "Fearless": [ "NNP", "JJ" ], "ruins": [ "NNS" ], "mind-boggling": [ "JJ" ], "critter": [ "NN" ], "pan-tribal": [ "JJ" ], "Kerr-McGee": [ "NNP" ], "exulted": [ "VBD" ], "nigras": [ "NNS" ], "Gosbank": [ "NNP" ], "middle-Gaelic": [ "JJ" ], "large-size": [ "JJ" ], "Oracle": [ "NNP" ], "non-interstate": [ "JJ" ], "Colleges": [ "NNP", "NNS" ], "Alongside": [ "IN", "RB" ], "Diceon": [ "NNP" ], "idly": [ "RB" ], "regulator": [ "NN" ], "idle": [ "JJ", "VB" ], "also-ran": [ "NN" ], "assertiveness": [ "NN" ], "valiant": [ "JJ" ], "Aluminum-ingot": [ "NN" ], "bath-supplies": [ "NNS" ], "Preludes": [ "NNPS" ], "Generally": [ "RB", "NNP" ], "spectrum": [ "NN" ], "media-spending": [ "JJ" ], "Phuong": [ "NNP" ], "dozed": [ "VBD" ], "increment": [ "NN" ], "arousal": [ "JJ" ], "pomp": [ "NN" ], "CORPORATE": [ "JJ" ], "Studach": [ "NNP" ], "Live-In": [ "NN" ], "Fontaine": [ "NNP" ], "Kennard": [ "NNP" ], "beltway": [ "NN" ], "racers": [ "NNS" ], "moralizers": [ "NNS" ], "Pascual": [ "NNP" ], "anti-epileptic": [ "JJ" ], "Missionary": [ "JJ", "NN", "NNP" ], "concedes": [ "VBZ" ], "committing": [ "VBG" ], "sugarcane": [ "NN" ], "limitless": [ "JJ" ], "vexing": [ "JJ", "VBG" ], "retroviruses": [ "NNS" ], "metrics": [ "NNS" ], "Seib": [ "NNP" ], "diagnosable": [ "JJ" ], "Dispensing": [ "VBG" ], "conceded": [ "VBD", "VBN" ], "Mahler": [ "NNP" ], "singer": [ "NN" ], "non-EC": [ "JJ" ], "Paragon": [ "NNP" ], "trading-company": [ "NN" ], "many-much": [ "NN" ], "confidence-shattering": [ "JJ" ], "scream": [ "VB", "VBP", "NN" ], "custom-die": [ "NN" ], "Zanzibar": [ "JJ" ], "Curly": [ "JJ" ], "sons-in-law": [ "NNS" ], "ex-partners": [ "NNS" ], "TAXPAYERS": [ "NNS" ], "fennel": [ "NN" ], "ulcer": [ "NN" ], "Marks": [ "NNP", "NNS" ], "cheaply": [ "RB" ], "Resources": [ "NNPS", "NNP", "NNS" ], "Mylan": [ "NNP" ], "Extend": [ "VB" ], "longer-established": [ "JJ" ], "Reiser": [ "NNP" ], "Tiao": [ "NNP" ], "midshipmen": [ "NNS" ], "bliss": [ "NN" ], "Octave": [ "NNP" ], "Coliseum": [ "NNP", "NN" ], "rice": [ "NN" ], "Mylar": [ "NNP" ], "remotest": [ "JJS" ], "Dalkon": [ "NNP" ], "Tricks": [ "NNPS", "NNS" ], "bruddah": [ "FW", "NN" ], "dope-ridden": [ "JJ" ], "acrobats": [ "NNS" ], "inside-the-beltway": [ "NN" ], "conquerors": [ "NNS" ], "Harburg": [ "NNP" ], "boarder": [ "NN" ], "Guesstimates": [ "NNS" ], "Rip": [ "NNP" ], "Craig": [ "NNP", "JJ" ], "Rio": [ "NNP", "NN" ], "eyelids": [ "NNS" ], "Rim": [ "NNP" ], "Higher-income": [ "JJR" ], "twice-daily": [ "JJ" ], "boarded": [ "VBD", "VBN", "JJ" ], "Composers": [ "NNPS" ], "pioneering": [ "VBG", "JJ" ], "housewarming": [ "JJ" ], "clarified": [ "VBN", "VBD" ], "sensitivity": [ "NN" ], "howse": [ "NN" ], "three-bedroom": [ "JJ" ], "overexercised": [ "VBN" ], "eschewing": [ "VBG" ], "sweetpeas": [ "NNS" ], "Narberth": [ "NNP" ], "mass-produce": [ "VB" ], "Occupational": [ "NNP", "JJ" ], "clarifies": [ "VBZ" ], "rocket-propulsion": [ "NN" ], "playfulness": [ "NN" ], "deadpan": [ "JJ" ], "Advances": [ "NNS", "NNPS" ], "Dartboard": [ "NN", "NNP" ], "drover": [ "NN" ], "droves": [ "NNS" ], "ex-Mrs": [ "JJ|NP" ], "Sinhalese": [ "JJ" ], "third-story": [ "JJ" ], "imprimatur": [ "NN" ], "timber": [ "NN", "VB" ], "croakin": [ "VBG" ], "O*/NNP&M": [ "NN" ], "Advanced": [ "NNP", "JJ" ], "Coast-based": [ "JJ" ], "Dictation": [ "NN" ], "marketing-communications": [ "NNS" ], "Truesdell": [ "NNP" ], "unseemly": [ "JJ" ], "Parenthesis": [ "NN" ], "Bronx": [ "NNP" ], "flathead": [ "JJ" ], "tyranny": [ "NN" ], "Spectradyne": [ "NNP" ], "Elaborating": [ "VBG" ], "veer": [ "VB" ], "leisure-oriented": [ "JJ" ], "Otis": [ "NNP" ], "heating": [ "NN", "VBG" ], "incense": [ "NN" ], "Laura": [ "NNP", "NN" ], "high-yielding": [ "JJ" ], "Wohlstetter": [ "NNP" ], "multimillions": [ "NNS" ], "Lauri": [ "NNP" ], "horse-steak": [ "NN" ], "Lauro": [ "NNP" ], "eradicate": [ "VB" ], "obscenity": [ "NN" ], "gypsies": [ "NNS" ], "Mendell": [ "NNP" ], "Biovest": [ "NNP" ], "blonde": [ "JJ", "NN" ], "truthful": [ "JJ" ], "CICS": [ "NNP" ], "godhead": [ "NN" ], "relearns": [ "VBZ" ], "Hinman": [ "NNP" ], "Sitting": [ "VBG" ], "union": [ "NN", "JJ" ], "Tamm": [ "NNP" ], "flipped": [ "VBD" ], "reregulation": [ "NN" ], "Brassica": [ "NNP" ], "Hoosier": [ "NNP" ], "Weerasinghe": [ "NNP" ], "tallest": [ "JJS" ], "chlorazepate": [ "NN" ], "Remington": [ "NNP" ], "Tama": [ "NNP" ], "retrospect": [ "NN" ], "allotting": [ "VBG" ], "Royaux": [ "NNP" ], "Consensus": [ "NNP" ], "low-water": [ "NN", "JJ" ], "sycophants": [ "NNS" ], "business-related": [ "JJ" ], "Indemnity": [ "NNP" ], "Hieronymus": [ "NNP" ], "TDK": [ "NNP" ], "Elgin": [ "NNP" ], "participatory": [ "JJ" ], "data-communications": [ "NNS" ], "Talley": [ "NNP" ], "Beware": [ "VB" ], "unwillingness": [ "NN" ], "ugly": [ "JJ" ], "employ": [ "VB", "NN", "VBP" ], "disk-drive": [ "NN", "JJ" ], "Vlasi": [ "NNP" ], "Kaneb": [ "NNP", "JJ" ], "Zurcher": [ "NNP" ], "Prozac": [ "NNP" ], "Michel-Etienne": [ "NNP" ], "RODE": [ "VBD" ], "Evzone": [ "NNP" ], "Clarksburg": [ "NNP" ], "Potomac": [ "NNP" ], "London-based": [ "JJ", "NNP" ], "Sword": [ "NNP", "NN" ], "noncompetitive": [ "JJ" ], "womanly": [ "JJ" ], "verged": [ "VBD" ], "Phouma": [ "NNP" ], "JYM": [ "NN|SYM" ], "malefactors": [ "NNS" ], "jolting": [ "VBG" ], "Elders": [ "NNP", "NNS", "NNPS" ], "hot-honey": [ "JJ" ], "split": [ "NN", "VBN|JJ", "JJ", "VB", "VBD", "VBN", "VBP" ], "Peden": [ "NNP" ], "Clardy": [ "NNP" ], "Wussler": [ "NNP" ], "KIPPUR": [ "NNP" ], "boiled": [ "VBN", "VBD", "JJ" ], "effortlessly": [ "RB" ], "inadvertently": [ "RB" ], "qualifications": [ "NNS" ], "workforce": [ "NN" ], "intellectual-literary": [ "JJ" ], "consents": [ "NNS", "VBZ" ], "Liquidating": [ "NNP", "VBG" ], "boiler": [ "NN" ], "Bentsen": [ "NNP", "NN" ], "supper": [ "NN" ], "Persia": [ "NNP" ], "Traces": [ "NNS" ], "Tracer": [ "NNP" ], "midsized": [ "JJ", "VBN" ], "Malay-based": [ "JJ" ], "anti-Bork": [ "JJ" ], "Martyn": [ "NNP" ], "Miami-based": [ "JJ" ], "Gavin": [ "NNP" ], "Belton": [ "NNP" ], "goofing": [ "VBG" ], "discrepencies": [ "NNS" ], "plaque": [ "NN" ], "Weaken": [ "VB" ], "Shaffer": [ "NNP" ], "outlived": [ "VBN", "VBD" ], "Rapid": [ "NNP", "JJ" ], "Muscolina": [ "NNP" ], "Retracing": [ "VBG" ], "haberdashery": [ "NN" ], "scorekeeping": [ "NN" ], "out-of-doors": [ "NNS", "NN" ], "homogeneity": [ "NN" ], "gun-shy": [ "JJ" ], "snickered": [ "VBD" ], "Neversink": [ "NNP" ], "portrayed": [ "VBN", "VBD" ], "Happy": [ "NNP", "JJ" ], "Eternity": [ "NN" ], "Ewing": [ "NNP" ], "espouses": [ "VBZ" ], "insubordination": [ "NN" ], "Baghdad": [ "NNP" ], "beloved": [ "JJ", "VBN", "NN" ], "espoused": [ "VBD", "VBN" ], "Bake-Off": [ "NNP" ], "grilled-chicken": [ "JJ" ], "warn-your-enemy": [ "JJ" ], "confidentially": [ "RB" ], "survival": [ "NN" ], "Faculty": [ "NN" ], "Jewish-Gentile": [ "NNP" ], "otherworldly": [ "JJ" ], "unprotected": [ "JJ" ], "off-white": [ "JJ" ], "clustered": [ "VBN", "VBD" ], "shadow": [ "NN", "VB" ], "Muscovy": [ "NNP" ], "Mongi": [ "NNP" ], "Maniago": [ "NNP" ], "Schleswig-Holstein": [ "NNP" ], "gangplank": [ "NN" ], "retake": [ "VB" ], "festivities": [ "NNS" ], "Steven": [ "NNP" ], "Growers": [ "NNPS" ], "cholecystokinin": [ "NN" ], "Abyss": [ "NN" ], "Agricoles": [ "NNP" ], "hypocrisy": [ "NN" ], "Literally": [ "RB" ], "discordantly": [ "RB" ], "begin": [ "VB", "VBP" ], "proportionally": [ "RB" ], "defeatists": [ "NNS" ], "Book-of-the-Month": [ "NNP" ], "prospectuses": [ "NNS" ], "Between": [ "IN" ], "billboard": [ "NN" ], "stealthily": [ "RB" ], "Goodyear": [ "NNP", "VBP" ], "Asiatic": [ "JJ" ], "Merriam-Webster": [ "NNP" ], "Redwood": [ "NNP" ], "Passaic": [ "NNP" ], "MARKETING": [ "NN" ], "plucked": [ "VBD", "VBN" ], "Ingleside": [ "NNP" ], "slivers": [ "NNS" ], "alligatored": [ "VBN" ], "IBC\\": [ "NNP" ], "low-yielding": [ "JJ" ], "Jakes": [ "NNP" ], "fish": [ "NN", "RB", "VB", "NNS" ], "binder": [ "NN" ], "personal-computer": [ "NN", "JJ" ], "anti-scientific": [ "JJ" ], "anagram": [ "NN" ], "disdains": [ "VBZ" ], "IBCA": [ "NNP" ], "stoker": [ "NN" ], "Franchising": [ "NNP" ], "bicentennial": [ "NN", "JJ" ], "browse": [ "VB" ], "oneness": [ "NN" ], "property-poor": [ "JJ" ], "stoked": [ "VBN" ], "oversaw": [ "VBD", "VB" ], "beinge": [ "VBG" ], "RECRUITS": [ "VBZ" ], "infraction": [ "NN" ], "administer": [ "VB", "VBP" ], "Aaron": [ "NNP" ], "Management": [ "NNP", "NN" ], "Seelig": [ "NNP" ], "Rheinstein": [ "NNP" ], "collectors": [ "NNS" ], "fast-vanishing": [ "JJ" ], "altitude": [ "NN" ], "diocese": [ "NN" ], "tame": [ "JJ", "VB" ], "Testicular": [ "NNP" ], "NALU": [ "NNP" ], "greatness": [ "NN" ], "Device": [ "NN", "NNP" ], "single-room-occupancy": [ "JJ" ], "tamp": [ "VB" ], "contusions": [ "NNS" ], "DyDee": [ "NNP" ], "grooms": [ "NNS" ], "miles-per-hour": [ "JJ" ], "waistcoat": [ "NN" ], "quota-cheaters": [ "NNS" ], "nonvoting": [ "JJ" ], "hot-tempered": [ "JJ" ], "Boudreau": [ "NNP" ], "Soda": [ "NNP" ], "safeguard": [ "VB", "NN" ], "duel": [ "NN" ], "High-technologies": [ "NNS" ], "masquerading": [ "VBG" ], "Gene-Princess": [ "NNP" ], "smasher": [ "NN" ], "Pleasanton": [ "NNP" ], "auditioning": [ "VBG" ], "pesos": [ "NNS" ], "smashed": [ "VBD", "JJ", "VBN" ], "Brest": [ "NNP" ], "duet": [ "NN" ], "Lolita": [ "NNP" ], "refillable": [ "JJ" ], "Sentiment": [ "NN" ], "prudentially": [ "RB" ], "megahertz": [ "NN" ], "Deleage": [ "NNP" ], "whorls": [ "NNS" ], "Pittsboro": [ "NNP" ], "railhead": [ "NN" ], "candle": [ "NN" ], "tooth": [ "NN", "RB" ], "triangles": [ "NNS" ], "Tashi": [ "NNP" ], "microwaving": [ "VBG" ], "flaps": [ "NNS" ], "Apollo": [ "NNP" ], "eventual": [ "JJ" ], "Lefferts": [ "NNP" ], "role": [ "NN" ], "market-affecting": [ "JJ" ], "OHIO": [ "NNP" ], "vegetative": [ "JJ" ], "credit-line": [ "NN" ], "Ferruzzi": [ "NNP" ], "all-consuming": [ "JJ" ], "E": [ "NN", "NNP", "JJ", "LS" ], "Operation": [ "NNP", "NN" ], "ointment": [ "NN" ], "outage": [ "NN" ], "Gardena": [ "NNP" ], "comely": [ "JJ" ], "intent": [ "NN", "JJ" ], "class-conscious": [ "JJ" ], "Horticultural": [ "NNP" ], "variable": [ "JJ", "NN" ], "transporter": [ "NN" ], "Gardens": [ "NNPS", "NNP", "NNS" ], "rephrased": [ "VBN" ], "Inform": [ "NNP" ], "fluke": [ "NN" ], "filing": [ "NN", "VBG" ], "surface-analyzer": [ "NN" ], "Sudanese": [ "NNP" ], "overturned": [ "VBN", "VBD" ], "Heerden": [ "NNP" ], "gown": [ "NN" ], "Blackwells": [ "NNPS" ], "Wunderman": [ "NNP" ], "Shigezo": [ "NNP" ], "non-arbitrage": [ "JJ" ], "bandits": [ "NNS" ], "Wabash": [ "NNP" ], "Bye": [ "UH" ], "Proudhon": [ "NNP" ], "osf": [ "IN" ], "Millstone": [ "NNP" ], "airframes": [ "NNS" ], "Tourist": [ "NNP", "NN" ], "timbered": [ "JJ" ], "photocopiers": [ "NNS" ], "crates": [ "NNS" ], "crater": [ "NN" ], "Beckwith": [ "NNP" ], "Tourism": [ "NNP", "NN" ], "Glendora": [ "NNP" ], "anti-Yankee": [ "JJ" ], "who...": [ ":" ], "Agnos": [ "NNP" ], "choice": [ "NN", "JJ" ], "Lyle": [ "NNP" ], "Halprin": [ "NNP" ], "Selkirkers": [ "NNS" ], "stays": [ "VBZ", "NNS" ], "Olszewski": [ "NNP" ], "plaid-floored": [ "JJ" ], "bestiary": [ "NN" ], "Lasker": [ "NNP" ], "Dimitri": [ "NNP" ], "Tau": [ "NNP" ], "cooks": [ "NNS" ], "Tap": [ "VB", "NN" ], "Tar": [ "NNP", "NNS" ], "Monday-Friday": [ "NNP" ], "Organized": [ "NNP" ], "Sojuzpushnina": [ "NNP" ], "Tae": [ "NNP" ], "Inexplicably": [ "RB" ], "defaults": [ "NNS", "VBZ" ], "CLAIMS": [ "VBZ" ], "Tan": [ "NNP", "JJ" ], "Tao": [ "NNP" ], "Tai": [ "NNP" ], "Taj": [ "NNP" ], "Copernicus": [ "NNP" ], "crash-scarred": [ "JJ" ], "meadow": [ "NN" ], "intial": [ "JJ" ], "trails": [ "NNS", "VBZ" ], "Small-company": [ "JJ" ], "Dryja": [ "NNP" ], "lengthened": [ "VBN", "VBD", "JJ" ], "thrumming": [ "VBG" ], "long-suffering": [ "JJ" ], "shirts": [ "NNS" ], "costlier": [ "JJR" ], "not-so-lonely": [ "JJ" ], "Stop-Limit": [ "NNP" ], "Rolm": [ "NNP" ], "Landau": [ "NNP" ], "Loper": [ "NNP" ], "Magna": [ "NNP" ], "Fault-tolerant": [ "JJ" ], "scandal-wracked": [ "JJ" ], "boost": [ "VB", "NN", "VBP" ], "Lopez": [ "NNP" ], "Bio-Products": [ "NNP" ], "Porsche-like": [ "JJ" ], "under-depreciated": [ "NN" ], "Latham": [ "NNP" ], "egg-processing": [ "JJ" ], "Webb": [ "NNP" ], "Hallmark": [ "NNP" ], "photomicrograph": [ "NN" ], "accomplishes": [ "VBZ" ], "mafiosi": [ "NNS" ], "dusty": [ "JJ" ], "Displayed": [ "VBN" ], "LME": [ "NNP" ], "accomplished": [ "VBN", "JJ", "VBD" ], "irregulars": [ "NNS" ], "Bofors": [ "NNP" ], "commmuter": [ "NN" ], "REAL": [ "JJ", "NNP" ], "Shattered": [ "JJ" ], "Giulio": [ "NNP" ], "Thornton": [ "NNP", "NN" ], "cacophony": [ "NN" ], "Enough": [ "JJ", "RB", "NNP" ], "Jong": [ "NNP" ], "Joni": [ "NNP" ], "REAP": [ "VBP" ], "Heimers": [ "NNP" ], "nitrates": [ "NNS" ], "working": [ "VBG", "VBG|JJ", "VBG|NN", "JJ", "NN" ], "Kansai": [ "NNP" ], "Hayter": [ "NNP" ], "Lazzaroni": [ "NNP" ], "Royalty": [ "NNP" ], "Inmates": [ "NNS", "NNPS" ], "Jaclyn": [ "NNP" ], "High-gain": [ "JJ" ], "Sahjunt": [ "NNP" ], "Finnerty": [ "NNP" ], "Bush-Gorbachev": [ "NNP" ], "mid-continent": [ "JJ" ], "Vicolo": [ "NNP" ], "assimilation": [ "NN" ], "Doubled": [ "VBD" ], "Rapatee": [ "NNP" ], "non-family": [ "JJ" ], "tines": [ "NNS" ], "arable": [ "JJ" ], "Doubles": [ "NNP" ], "intemperance": [ "NN" ], "Opelika": [ "NNP" ], "riders": [ "NNS" ], "total-ban": [ "NN" ], "investment-recovery": [ "NN" ], "Joffre": [ "NNP" ], "originally": [ "RB" ], "abortion": [ "NN" ], "harmonious": [ "JJ" ], "Showers": [ "NNP" ], "Comparative": [ "JJ" ], "stupidities": [ "NNS" ], "zippers": [ "NNS" ], "toffee": [ "NN" ], "unraveled": [ "VBN", "JJ", "VBD" ], "Protestantism": [ "NNP" ], "admired": [ "VBD", "VBN", "JJ" ], "Mexicali": [ "NNP" ], "tree-shaded": [ "JJ" ], "mirrors": [ "VBZ", "NNS" ], "Hump": [ "NNP" ], "Hecht": [ "NNP" ], "Shilling": [ "NNP" ], "Matamoros": [ "NNP" ], "locks": [ "NNS", "VBZ" ], "incremental": [ "JJ" ], "Coffee-shop": [ "NN" ], "admires": [ "VBZ" ], "admirer": [ "NN" ], "Bore": [ "VB" ], "Hume": [ "NNP" ], "septic": [ "JJ", "NN" ], "Plimpton": [ "NNP" ], "dooms": [ "NNS" ], "road-circuit": [ "NN" ], "vainly": [ "RB" ], "foreshortening": [ "VBG" ], "slams": [ "VBZ" ], "Skinner": [ "NNP" ], "Knauer": [ "NNP" ], "Printemps": [ "NNP" ], "minicomputers": [ "NNS" ], "Drain": [ "VB", "NN" ], "moon-washed": [ "JJ" ], "dinosaur...": [ ":" ], "STC": [ "NNP" ], "power-buying": [ "JJ" ], "paleontologists": [ "NNS" ], "LecTec": [ "NNP" ], "Kissin": [ "NNP" ], "STS": [ "NNP" ], "Corporate": [ "JJ", "NNP" ], "Korps": [ "NNP" ], "egotistical": [ "JJ" ], "temperate": [ "JJ" ], "pulley": [ "NN" ], "obstetrician": [ "NN" ], "finanicial": [ "JJ" ], "Needless": [ "JJ", "NNP" ], "name-calling": [ "NN" ], "regressive": [ "JJ" ], "sandbox": [ "NN" ], "Moll": [ "NNP" ], "COCAINE": [ "NNP" ], "wolves": [ "NNS" ], "Astaires": [ "NNPS" ], "Mole": [ "NNP" ], "wastepaper": [ "NN" ], "Encouraged": [ "VBN", "JJ" ], "Spurgeon": [ "NNP" ], "seven-bedroom": [ "JJ" ], "Peterborough": [ "NNP" ], "SEPARATE": [ "JJ" ], "touch-tone": [ "JJ" ], "Prudence": [ "NNP", "NN" ], "years": [ "NNS" ], "episodes": [ "NNS" ], "yeard": [ "VBN" ], "Fjelstad": [ "NNP" ], "close-in": [ "JJ" ], "Lakeshore": [ "NNP" ], "dust-thick": [ "JJ" ], "once-fashionable": [ "JJ" ], "Cypress": [ "NNP", "NN" ], "Assist": [ "NNP" ], "Escanaba": [ "NNP" ], "Legislatures": [ "NNS" ], "antipathy": [ "NN" ], "suspension": [ "NN" ], "troubled": [ "JJ", "VBD", "VBN" ], "relapsed": [ "VBD" ], "augen": [ "FW" ], "recipients": [ "NNS" ], "civilian": [ "JJ", "NN" ], "Kemm": [ "NNP" ], "Deutsche": [ "NNP", "FW", "NN" ], "Minoan-Mycenaean": [ "NNP" ], "indigenous": [ "JJ" ], "secularized": [ "VBN" ], "big-large": [ "NN" ], "drilling": [ "NN", "JJ", "VBG" ], "Kemp": [ "NNP" ], "Webster": [ "NNP" ], "U.S.backed": [ "JJ" ], "frontage": [ "NN" ], "ki-yi-ing": [ "VBG" ], "materialized": [ "VBD", "VBN" ], "twenty-nine-foot-wide": [ "JJ" ], "Cafritz": [ "NNP" ], "Holcombe": [ "NNP" ], "fisherman": [ "NN" ], "Certified": [ "NNP" ], "scratchiness": [ "NN" ], "materializes": [ "VBZ" ], "quarrymen": [ "NNS" ], "retrieve": [ "VB", "VBP" ], "receipt": [ "NN" ], "Entitlements": [ "NNS" ], "Live": [ "NNP", "VBP", "JJ", "VB" ], "sponsor": [ "NN", "VBP", "VB" ], "prudently": [ "RB" ], "workdays": [ "NNS" ], "Mongan": [ "NNP" ], "interned": [ "VBN" ], "paroxysmal": [ "JJ" ], "Zawia": [ "NNP" ], "Treasonable": [ "JJ" ], "Barbour": [ "NNP" ], "Drums": [ "NNS" ], "typed": [ "VBN", "JJ", "VBD" ], "Transfers": [ "NNS" ], "complicates": [ "VBZ" ], "curbs": [ "NNS" ], "hairdresser": [ "NN" ], "FUTURES": [ "NNS" ], "Roughly": [ "RB" ], "complicated": [ "VBN", "JJ", "VBD" ], "Veritrac": [ "NNP" ], "pro-tem": [ "JJ" ], "GRANTING": [ "VBG" ], "Libertines": [ "NNS" ], "Avmark": [ "NNP" ], "fortune-happy": [ "JJ" ], "large-firm": [ "JJ" ], "initiate": [ "VB", "NN", "VBP" ], "aboard": [ "IN", "RB", "RP" ], "oil-futures": [ "NNS" ], "Owens": [ "NNP" ], "Dachshund": [ "NN" ], "emotion": [ "NN" ], "gunshot": [ "NN" ], "managed-care": [ "JJ" ], "saving": [ "VBG", "JJ", "NN" ], "XA2000": [ "NNP" ], "symmetry": [ "NN" ], "reprisal": [ "NN" ], "Aloud": [ "RB" ], "mignon": [ "NN" ], "Vasilievitch": [ "NNP" ], "Funding": [ "NNP", "NN" ], "veldt": [ "NN" ], "exaggerations": [ "NNS" ], "stifles": [ "VBZ" ], "sway-backed": [ "JJ" ], "Sabhavasu": [ "NNP" ], "Amici": [ "FW" ], "stifled": [ "VBD", "VBN" ], "embalming": [ "NN" ], "oversimplified": [ "VBN", "JJ" ], "decommissoned": [ "JJ" ], "plugugly": [ "JJ", "NN" ], "shawl": [ "NN" ], "play-acting": [ "NN" ], "Mullaney": [ "NNP" ], "tombstones": [ "NNS" ], "Stileman": [ "NNP" ], "Herger": [ "NNP" ], "Meils": [ "NNP" ], "LETTER": [ "NN" ], "herds": [ "NNS" ], "specialists": [ "NNS" ], "adoptable": [ "JJ" ], "Willingness": [ "NN" ], "Pentagon-related": [ "JJ" ], "nonsocialist": [ "JJ" ], "Economidis": [ "NNP" ], "unfit": [ "JJ", "NN" ], "Hubert": [ "NNP" ], "ascendancy": [ "NN" ], "tortures": [ "NNS", "VBZ" ], "illness": [ "NN" ], "sockdologizing": [ "VBG" ], "flat-footed": [ "JJ", "RB" ], "Procepe": [ "NNP" ], "Suggest": [ "VB" ], "amphibology": [ "NN" ], "locations": [ "NNS" ], "Easterners": [ "NNS", "NNPS" ], "gene-splicing": [ "NN", "JJ" ], "cold-rolled": [ "JJ" ], "wood-products": [ "NNS" ], "Rawleigh": [ "NNP" ], "SOARED": [ "VBD" ], "invite": [ "VB", "VBP", "NN" ], "Hastert": [ "NNP" ], "BREWS": [ "VBZ" ], "Evadna": [ "NNP" ], "warriors": [ "NNS" ], "Alicia": [ "NNP" ], "Salzman": [ "NNP" ], "intends": [ "VBZ" ], "portents": [ "NNS" ], "Hale": [ "NNP", "JJ" ], "Kenworthy": [ "NNP" ], "Half": [ "NN", "NNP", "PDT", "DT", "RB" ], "evened": [ "VBN" ], "Hall": [ "NNP", "NN" ], "Halo": [ "NNP" ], "creditably": [ "RB" ], "imperatives": [ "NNS" ], "printer": [ "NN" ], "High-end": [ "JJ" ], "ascendency": [ "NN" ], "Gilleland": [ "NNP" ], "Newcomers": [ "NNS" ], "Concessionaires": [ "NNS" ], "So-so": [ "NN" ], "Allison": [ "NNP" ], "printed": [ "VBN", "VBD", "JJ" ], "knowingly": [ "RB" ], "prayerfully": [ "RB" ], "creditable": [ "JJ" ], "Mohasco": [ "NNP" ], "Chet": [ "NNP" ], "Lands": [ "NNPS", "NNS" ], "Cher": [ "NNP" ], "Ches": [ "NNP" ], "twirlingly": [ "RB" ], "Ishida": [ "NNP" ], "Chez": [ "NNP" ], "Chex": [ "NNP" ], "Chef": [ "NNP" ], "Landa": [ "NNP" ], "phis": [ "NNS" ], "Granin": [ "NNP" ], "summer-winter": [ "JJ" ], "Chen": [ "NNP" ], "redirected": [ "VBN", "VBD" ], "Chem": [ "NNP" ], "Schilling": [ "NNP" ], "fascinated": [ "VBN", "JJ", "VBD" ], "stimulator": [ "NN" ], "coupon-equivalent": [ "JJ" ], "Rheumatism": [ "NNP" ], "infuriate": [ "VB" ], "APMS": [ "NNP" ], "Sky": [ "NNP", "NN" ], "Electronics": [ "NNP", "NNPS", "NNS", "NN" ], "fecal": [ "JJ" ], "sales-tax": [ "NN", "JJ" ], "elan": [ "NN" ], "Seigel": [ "NNP" ], "Piwen": [ "NNP" ], "aggressive": [ "JJ" ], "Ski": [ "NNP", "NN" ], "Meanings": [ "NNS" ], "equidistantly": [ "RB" ], "Chips": [ "NNPS", "NNP" ], "betrothal": [ "JJ" ], "Leadership": [ "NN", "NNP" ], "Frenzy": [ "NNP" ], "Housing": [ "NNP", "NN" ], "Bianco": [ "NNP" ], "gas-derived": [ "JJ" ], "hindmost": [ "JJ" ], "guarded": [ "VBN", "JJ", "VBD" ], "polypropylene": [ "NN" ], "Assets": [ "NNS", "NNP", "NNPS" ], "suitcases": [ "NNS" ], "tilting": [ "VBG" ], "fraud-related": [ "JJ" ], "two-round": [ "JJ" ], "simplistic": [ "JJ" ], "Nagymaros": [ "NNP" ], "college-sports": [ "NNS", "JJ" ], "hearing-aid": [ "NN" ], "mechanization": [ "NN" ], "awaiting": [ "VBG" ], "Machinist": [ "NNP" ], "Plaintiffs``": [ "``" ], "Ryosuke": [ "NNP" ], "Exhibit": [ "NN" ], "Public-health": [ "JJ", "NN" ], "Asquith": [ "NNP" ], "whipped": [ "VBD", "VBN", "JJ" ], "Dismounting": [ "VBG" ], "mealie-meal": [ "NN" ], "multifiber": [ "JJR" ], "Cashion": [ "NNP" ], "morose": [ "JJ" ], "cost-billing": [ "JJ" ], "One-day": [ "JJ" ], "Toll": [ "NN", "NNP" ], "hurricane-wracked": [ "JJ" ], "Juge": [ "NNP" ], "preclearance": [ "NN" ], "impressions": [ "NNS" ], "hastened": [ "VBD", "VBN" ], "Clintonville": [ "NNP" ], "Weithas": [ "NNP" ], "intoxicating": [ "JJ" ], "stock-appreciation-based": [ "JJ" ], "refresher": [ "NN" ], "agriculture-based": [ "JJ" ], "alarming": [ "JJ", "VBG" ], "low-speed": [ "JJ" ], "Jonas": [ "NNP" ], "consumer-electronics": [ "NNS", "JJ" ], "refreshed": [ "JJ", "VBD", "VBN" ], "Awe": [ "NN" ], "Mitsubishi": [ "NNP", "NNS" ], "Boondael": [ "NNP" ], "business-services": [ "JJ" ], "planes": [ "NNS" ], "Conasupo": [ "NNP" ], "bankruptcy-court": [ "NN", "JJ" ], "Gettinger": [ "NNP" ], "pro-Iranian": [ "JJ" ], "publicity-shy": [ "JJ" ], "McCauley": [ "NNP" ], "Vitarine": [ "NNP" ], "first-aid": [ "NN" ], "concentrated": [ "VBN", "JJ", "VBD" ], "busting": [ "VBG" ], "Automax": [ "NNP" ], "Bancario": [ "NNP" ], "stop-and-start": [ "JJ" ], "Luxco": [ "NNP" ], "recitations": [ "NNS" ], "s": [ "PRP", "NN" ], "concentrates": [ "VBZ", "NNS" ], "C-word": [ "NN" ], "doctoring": [ "NN" ], "loveliest": [ "JJS" ], "UMNO": [ "NNP" ], "Unsettling": [ "JJ" ], "Sweet-sour": [ "JJ" ], "compels": [ "VBZ" ], "dark-skinned": [ "JJ" ], "Leavitt": [ "NNP" ], "Giordano": [ "NNP" ], "Twenty-First": [ "NNP" ], "buoyancy": [ "NN" ], "radicalized": [ "VBN" ], "Horton": [ "NNP" ], "epistemology": [ "NN" ], "Pepper": [ "NNP", "NN" ], "RESIGNED": [ "VBD" ], "extra-high": [ "JJ" ], "accelerometer": [ "NN" ], "post-independence": [ "JJ" ], "one-upmanship": [ "NN" ], "stripped": [ "VBN", "JJ", "VBD" ], "ultracentrifugally": [ "RB" ], "spyglass": [ "NN" ], "Berber": [ "JJ", "NNP" ], "Briefer": [ "NNP" ], "relations": [ "NNS" ], "Sundarji": [ "NNP" ], "combatted": [ "VBN" ], "no-trading": [ "JJ" ], "formed": [ "VBN", "VBD", "JJ" ], "Baykal": [ "NNP" ], "geothermal": [ "JJ" ], "Industries-developed": [ "NNP" ], "Entertaining": [ "NNP" ], "former": [ "JJ", "NN" ], "runnin": [ "VBG" ], "co-ordination": [ "NN" ], "outflows": [ "NNS" ], "rock-like": [ "JJ" ], "Annandale": [ "NNP" ], "Commander": [ "NNP" ], "straighter": [ "JJR", "RBR" ], "huckstering": [ "VBG" ], "defeatism": [ "NN" ], "Revamps": [ "NNP" ], "newspaper": [ "NN" ], "situation": [ "NN" ], "Copland": [ "NNP" ], "Flugleasing": [ "NNP" ], "penthouse": [ "NN" ], "parboiled": [ "VBD" ], "non-vested": [ "JJ" ], "U.S.-led": [ "JJ" ], "all-round": [ "JJ" ], "Diaghileff": [ "NNP" ], "reviled": [ "VBN", "JJ" ], "Nagoya": [ "NNP" ], "dubious": [ "JJ" ], "obtuse": [ "JJ" ], "electrogalvanized": [ "JJ", "VBN" ], "Eliminate": [ "VB" ], "serological": [ "JJ" ], "engages": [ "NNS", "VBN", "VBZ" ], "debilitating": [ "JJ" ], "titer": [ "NN" ], "Govette": [ "NNP" ], "Replacing": [ "VBG" ], "theorized": [ "VBD" ], "mean-square": [ "JJ" ], "legalistic": [ "JJ" ], "Lovejoy": [ "NNP" ], "gelding": [ "NN" ], "Megdal": [ "NNP" ], "reformatory": [ "NN" ], "Landover": [ "NNP" ], "Whipple": [ "NNP" ], "UTA": [ "NNP" ], "chain-store": [ "JJ" ], "Oxygen": [ "NN" ], "deft": [ "JJ" ], "defy": [ "VB", "VBP" ], "Commissioner": [ "NNP" ], "UTL": [ "JJ" ], "edges": [ "NNS" ], "wired": [ "VBN", "VBD" ], "bluntly": [ "RB" ], "healthy-looking": [ "JJ" ], "brasses": [ "NNS" ], "Spherical": [ "JJ" ], "Appropriately": [ "RB" ], "Pork": [ "NNP", "NN" ], "tracking": [ "VBG", "NN" ], "renunciation": [ "NN" ], "Haupts": [ "NNP" ], "Zero-Based": [ "NNP" ], "Otros": [ "NNP" ], "Primark": [ "NNP" ], "Port": [ "NNP" ], "I.M.F.": [ "NNP" ], "steamed": [ "VBN", "VBD" ], "recycles": [ "VBZ" ], "recycler": [ "NN" ], "disconcert": [ "VB" ], "Crossfire": [ "NNP" ], "Conservative": [ "NNP", "JJ", "NN" ], "divestitures": [ "NNS" ], "BOJ": [ "NNP" ], "Concerns": [ "NNS" ], "BOC": [ "NNP" ], "BOD": [ "NN" ], "INVESTMENTS": [ "NNPS" ], "serious-minded": [ "JJ" ], "Boylston": [ "NNP" ], "uncap": [ "VB" ], "Infighting": [ "NN" ], "Males": [ "NNPS" ], "Bardagy": [ "NNP" ], "counterproposals": [ "NNS" ], "Malek": [ "NNP" ], "Lewala": [ "NNP" ], "overthrow": [ "VB", "NN" ], "haystack": [ "NN" ], "Malec": [ "NNP" ], "Duke-EPA": [ "JJ" ], "Debates": [ "NNS" ], "gestured": [ "VBD" ], "sportsmanship": [ "NN" ], "takeover-threat": [ "NN" ], "mosaic-like": [ "JJ" ], "downtrend": [ "NN" ], "Decreasing": [ "VBG" ], "world": [ "NN", "RB" ], "colluded": [ "VBD" ], "apprehending": [ "VBG" ], "Example": [ "NN" ], "tremulous": [ "JJ" ], "domestic-credit": [ "NN" ], "SETTING": [ "VBG" ], "Nacht": [ "FW" ], "unrepentant": [ "JJ" ], "out-of-step": [ "JJ" ], "G.O.P.": [ "NN" ], "shutter": [ "NN", "VB" ], "glamor": [ "NN" ], "militate": [ "VB" ], "Sludge": [ "NNP" ], "goosey": [ "JJ" ], "superintendent": [ "NN" ], "learning": [ "VBG", "NN" ], "grub": [ "NN" ], "Burchette": [ "NNP" ], "Engel": [ "NNP" ], "unshielded": [ "VBN" ], "demeaning": [ "JJ" ], "diving": [ "VBG", "JJ", "NN" ], "stagecoach": [ "NN" ], "divine": [ "JJ", "NN" ], "tva": [ "NN" ], "white-squire": [ "NN" ], "Brazilians": [ "NNPS", "NNS" ], "Prabang": [ "NNP" ], "cavity": [ "NN" ], "seaman": [ "NN" ], "refundable": [ "JJ" ], "semantically": [ "RB" ], "well-planned": [ "JJ" ], "restoring": [ "VBG", "NN" ], "SQUARE": [ "NNP" ], "holiday-season": [ "JJ", "NN" ], "retains": [ "VBZ" ], "Tax-exempts": [ "NNS" ], "Lukens": [ "NNP" ], "leadership": [ "NN" ], "Cawdron": [ "NNP" ], "E.D.": [ "NNP" ], "B-scale": [ "NN" ], "majoring": [ "VBG" ], "Private-sector": [ "JJ" ], "trickster": [ "NN" ], "retraced": [ "VBD" ], "Tibbs": [ "NNP" ], "Magnatek": [ "NNP" ], "Puzzled": [ "VBN" ], "local-exchange": [ "JJ" ], "Inisel": [ "NNP" ], "five-cent": [ "JJ" ], "loch": [ "NN" ], "rabbinical": [ "JJ" ], "Paine": [ "NNP" ], "shapely": [ "JJ" ], "No": [ "DT", "NN", "RB", "UH", "NNP" ], "McMullin": [ "NNP" ], "Paini": [ "NNP" ], "Ne": [ "NNP" ], "unethically": [ "RB" ], "Ng": [ "NNP" ], "Endangered": [ "NNP" ], "ineffable": [ "JJ" ], "Pains": [ "NNS" ], "conceptually": [ "RB" ], "Sansone": [ "NNP" ], "Finley": [ "NNP" ], "carbaryl": [ "NN" ], "Gordon\\/Pick": [ "NNP" ], "NH": [ "NNP" ], "Tewfik": [ "NNP" ], "Bielas": [ "NNP" ], "Hultberg": [ "NNP" ], "NL": [ "NNP" ], "DnC": [ "NNP" ], "NO": [ "DT", "RB", "UH" ], "lacquered": [ "VBN" ], "NB": [ "NNP" ], "NC": [ "NNP" ], "NE": [ "NNP" ], "deCordova": [ "NNP" ], "lounging": [ "VBG", "NN" ], "rumbles": [ "VBZ", "NNS" ], "Insect": [ "NN" ], "mindless": [ "JJ" ], "missy": [ "NN" ], "Windahall": [ "NNP" ], "Maeterlinck": [ "NNP" ], "NS": [ "NNP" ], "carabao": [ "NN" ], "NU": [ "NNP" ], "NV": [ "NNP" ], "NW": [ "NNP" ], "Hannover": [ "NNP" ], "Firebird": [ "NNP" ], "N.": [ "NNP", "JJ" ], "worsted": [ "JJ", "NN" ], "Nations-monitored": [ "JJ" ], "Alternately": [ "RB" ], "Tandy": [ "NNP", "VB" ], "foreheads": [ "NNS" ], "Group\\/Business": [ "NNP" ], "Arkhipov": [ "NNP" ], "whinny": [ "NN" ], "jewelery-related": [ "JJ" ], "liquid-drug": [ "JJ" ], "pull": [ "VB", "VBP", "NN" ], "rush": [ "NN", "VB", "VBP" ], "rehabilitations": [ "NNS" ], "hairpieces": [ "NNS" ], "Rodriguez": [ "NNP" ], "Property\\": [ "JJ" ], "Beheading": [ "VBG" ], "ruse": [ "NN" ], "eight-count": [ "JJ" ], "Caution": [ "NN", "VB" ], "Berndt": [ "NNP" ], "OGURA": [ "NNP" ], "rust": [ "NN", "VB" ], "Porche": [ "NNP" ], "gratuitous": [ "JJ" ], "DPX\\": [ "NNP" ], "hypertension": [ "NN" ], "Pathe": [ "NNP" ], "Sultanate": [ "NNP" ], "jargon": [ "NN" ], "AZT": [ "NNP" ], "Humanity": [ "NNP", "NN" ], "Real": [ "JJ", "NNP", "RB" ], "Sarawak": [ "NNP" ], "moniker": [ "NN" ], "ideally": [ "RB" ], "Taff": [ "NNP" ], "Read": [ "NNP", "VBP", "VB" ], "half-completed": [ "JJ" ], "COMPLETED": [ "VBD" ], "introspection": [ "NN" ], "p.a.": [ "NN" ], "T.D.": [ "NNP" ], "Rear": [ "JJ" ], "passerby": [ "NN" ], "Theran": [ "NNP" ], "hydraulics": [ "NNS", "NN" ], "anti-idiotypes": [ "NNS" ], "intimation": [ "NN" ], "environing": [ "VBG" ], "Kildare": [ "NNP" ], "Khivrich": [ "NNP" ], "infirmity": [ "NN" ], "Rempsberger": [ "NNP" ], "electronic-measuring": [ "JJ" ], "Conn.-based": [ "JJ" ], "Comeau": [ "NNP" ], "firebrand": [ "NN" ], "Correlations": [ "NNS" ], "dyed": [ "VBN" ], "Hardware": [ "NNP", "NN" ], "Cardillo": [ "NNP" ], "Bias": [ "NNP" ], "CATV": [ "NN" ], "Pitch": [ "NN", "VB", "NNP" ], "dyes": [ "NNS" ], "valves": [ "NNS" ], "added-value": [ "JJ" ], "Fit": [ "JJ" ], "population-control": [ "JJ" ], "Fix": [ "VB" ], "landlocked": [ "JJ" ], "Fig": [ "NN" ], "internist": [ "NN" ], "Fio": [ "NNP" ], "Fil": [ "NNP" ], "taxicab": [ "NN" ], "Schaefer": [ "NNP" ], "whitely": [ "RB" ], "Rendell": [ "NNP" ], "Waterbury": [ "NNP" ], "domestic-made": [ "JJ" ], "midwest": [ "JJS" ], "roadway": [ "NN" ], "Zwiren": [ "NNP" ], "Capricorn": [ "NNP" ], "tombs": [ "NNS" ], "checkin": [ "VBG" ], "Mignott": [ "NNP" ], "baton": [ "NN" ], "Ancistrodon": [ "NNP" ], "problem-solving": [ "JJ", "NN" ], "Nagin": [ "NNP" ], "mind-numbing": [ "JJ" ], "rootless": [ "JJ" ], "quasi-governmental": [ "JJ" ], "Maxtor": [ "NNP" ], "shenanigans": [ "NNS" ], "Anabaptists": [ "NNPS", "NNS" ], "sixty-five-mile": [ "JJ" ], "small": [ "JJ" ], "USED": [ "VBD" ], "Peace": [ "NNP", "NN" ], "paso": [ "NN" ], "milord": [ "NN" ], "healed": [ "VBN", "VBD" ], "past": [ "JJ", "VBN", "IN", "NN", "RB" ], "Terminating": [ "VBG" ], "fractionation": [ "NN" ], "displays": [ "NNS", "VBZ" ], "pass": [ "VB", "VBP", "NN" ], "Reyes": [ "NNP" ], "McCarty": [ "NNP" ], "investment": [ "NN", "JJ" ], "quicken": [ "VB" ], "shockwave": [ "NN" ], "fertilizations": [ "NNS" ], "menswear": [ "NN" ], "clock": [ "NN", "VBP" ], "corked": [ "JJ" ], "colonists": [ "NNS" ], "subspaces": [ "NNS" ], "full": [ "JJ", "RB" ], "Critically": [ "RB" ], "foreign-airline": [ "NN" ], "Bourses": [ "NNP" ], "Charlie": [ "NNP" ], "diapers": [ "NNS" ], "Digby": [ "NNP" ], "a-Includes": [ "VBZ" ], "Roeck": [ "NNP" ], "civilians": [ "NNS" ], "ventilated": [ "VBD", "VBN", "JJ" ], "elementary-school": [ "JJ" ], "Justino": [ "NNP" ], "Justine": [ "NNP" ], "solvating": [ "VBG" ], "experience": [ "NN", "VBP", "VB" ], "anthropologists": [ "NNS" ], "single-lot": [ "JJ" ], "cessation": [ "NN" ], "countin": [ "NN", "VBG" ], "Mannesmann": [ "NNP", "NN" ], "faculties": [ "NNS" ], "tax-free": [ "JJ" ], "welter": [ "NN" ], "followed": [ "VBD", "VBN|VBD", "JJ", "VBN" ], "Drubbing": [ "NN" ], "Richmond": [ "NNP", "NN" ], "Annisberg": [ "NNP" ], "Gigenza": [ "NNP" ], "literary": [ "JJ", "NN" ], "attendance": [ "NN" ], "Conlow": [ "NNP" ], "enliven": [ "VBP" ], "Alsagoray": [ "NNP" ], "Wexler": [ "NNP" ], "Friedrichs": [ "NNP" ], "unrecognizable": [ "JJ" ], "Conlon": [ "NNP" ], "tissue-transplant": [ "JJ" ], "Meana": [ "NNP" ], "Teknowledge": [ "NNP" ], "door": [ "NN", "RB" ], "Flannagans": [ "NNPS", "NNP" ], "anti-choice": [ "JJ" ], "one-sided": [ "JJ" ], "tested": [ "VBN", "VBD", "JJ" ], "jealousies": [ "NNS" ], "Celica": [ "NNP" ], "nonviolent": [ "JJ" ], "doom": [ "NN", "VB" ], "Irradiation": [ "NN" ], "Agitato": [ "NNP" ], "Chad": [ "NNP" ], "Radiopasteurization": [ "NN" ], "anxieties": [ "NNS" ], "applelike": [ "JJ" ], "centrifugal": [ "JJ" ], "Bondi": [ "NNP" ], "Newitt": [ "NNP" ], "changeover": [ "NN" ], "wimp": [ "NN", "VB" ], "diabetic": [ "JJ", "NN" ], "generalists": [ "NNS" ], "memoirs": [ "NNS" ], "Varga": [ "NNP" ], "Seventy-nine": [ "JJ" ], "concordant": [ "JJ" ], "sequins": [ "NNS" ], "respective": [ "JJ" ], "ANDERSEN": [ "NNP" ], "Vining": [ "NNP" ], "cosily": [ "RB" ], "speedboat": [ "NN" ], "enlargd": [ "VBN" ], "enlarge": [ "VB" ], "ONEIDA": [ "NNP" ], "Succeed": [ "NNP" ], "creeks": [ "NNS" ], "footman": [ "NN" ], "implicitly": [ "RB" ], "rollback": [ "NN" ], "sprinkle": [ "VB", "NN", "VBP" ], "trendsetter": [ "NN" ], "lanky": [ "JJ" ], "Emil": [ "NNP" ], "Closed-end": [ "JJ" ], "sympathize": [ "VBP", "VB" ], "Bio-Trends": [ "NNP" ], "Medfield": [ "NNP" ], "mended": [ "VBN" ], "CATFISH": [ "NNS" ], "GOULD": [ "NNP" ], "Maccaquano": [ "NNP" ], "low-margin": [ "JJ" ], "Silently": [ "RB" ], "Statistically": [ "RB" ], "waked": [ "VBD", "VBN" ], "abrasives": [ "NNS" ], "Dobson": [ "NNP" ], "Senorita": [ "NNP" ], "Woonsocket": [ "NNP" ], "RTRSY": [ "NNP" ], "expense-reducing": [ "JJ" ], "overcooked": [ "VBN" ], "Trailing": [ "VBG" ], "Bridgetown": [ "NNP" ], "replied": [ "VBD", "VBN" ], "circularity": [ "NN" ], "rocketed": [ "VBD", "VBN" ], "Pinpoint": [ "NNP" ], "Nervous": [ "JJ" ], "Nishizuka": [ "NNP" ], "wide-ranging": [ "JJ" ], "resorts": [ "NNS", "VBZ" ], "DKB": [ "NNP" ], "Fagenson": [ "NNP" ], "replies": [ "VBZ", "NNS" ], "Chem-Con": [ "NNP" ], "smiling": [ "VBG", "JJ", "NN" ], "roots": [ "NNS" ], "state-run": [ "JJ" ], "Plenitude": [ "NNP" ], "Lizzie": [ "NNP" ], "revalued": [ "VBN" ], "Pualani": [ "NNP" ], "hounds": [ "NNS" ], "symptoms": [ "NNS" ], "plotters": [ "NNS" ], "shuddering": [ "VBG", "JJ" ], "ugliness": [ "NN" ], "one-color": [ "JJ" ], "in-jokes": [ "NNS" ], "wined": [ "VBD" ], "Menfolk": [ "NNS" ], "focussed": [ "VBN", "VBD" ], "unstated": [ "JJ" ], "universality": [ "NN" ], "dull": [ "JJ" ], "Elektronik": [ "NNP" ], "busied": [ "VBD" ], "Medlin": [ "NNP" ], "Banker": [ "NNP" ], "weeds": [ "NNS" ], "Kennedy-wordsmith": [ "NNP" ], "verandah": [ "NN" ], "self-insured": [ "JJ", "VBN" ], "Duy": [ "NNP" ], "Alastair": [ "NNP" ], "piping": [ "NN" ], "directionless": [ "JJ" ], "repayment": [ "NN" ], "Benda": [ "NNP" ], "reactions": [ "NNS" ], "brunette": [ "JJ", "NN" ], "Phoenix-based": [ "JJ", "NNP" ], "scotched": [ "VBD" ], "advertisers": [ "NNS" ], "operation": [ "NN" ], "inquired": [ "VBD", "VBN" ], "Nitto": [ "NNP" ], "Weldon": [ "NNP" ], "Mazzorana": [ "NNP" ], "buzzsaw": [ "NN" ], "denotes": [ "VBZ" ], "Wackers": [ "NNPS" ], "slowly-mending": [ "JJ" ], "Stjernsward": [ "NNP" ], "denoted": [ "VBN", "VBD" ], "mineworkers": [ "NNS" ], "triennial": [ "NN" ], "Prof.": [ "NNP" ], "impudence": [ "NN" ], "warm": [ "JJ", "VB" ], "Builder": [ "NNP", "NN" ], "Brookland": [ "NNP" ], "Deduction": [ "NN" ], "abnormally": [ "RB" ], "Cartoons": [ "NNS" ], "ATARI": [ "NNP" ], "Serious": [ "JJ", "NNP" ], "McCain": [ "NNP" ], "bodyworkers": [ "NNS" ], "plowing": [ "VBG", "NN" ], "definition": [ "NN" ], "pairs": [ "NNS" ], "Panza": [ "NNP" ], "Fleischman": [ "NNP" ], "verandas": [ "NNS" ], "multihulled": [ "VBN" ], "testament": [ "NN" ], "existential": [ "JJ" ], "Economist": [ "NNP", "NN" ], "Reluctant": [ "JJ" ], "euphemism": [ "NN" ], "Fra": [ "NNP" ], "purport": [ "VBP" ], "Fri": [ "NNP" ], "despatched": [ "VBD" ], "brutally": [ "RB" ], "Curtiss": [ "NNP" ], "Pareo": [ "NNP" ], "Fry": [ "VB" ], "Persuasion": [ "NN" ], "wardrobes": [ "NNS" ], "Personality": [ "NNP" ], "Byrne": [ "NNP" ], "Abramowitz": [ "NNP" ], "cradles": [ "NNS" ], "moderately": [ "RB" ], "hallowed": [ "JJ" ], "formula-based": [ "JJ" ], "bedridden": [ "JJ" ], "Clericis": [ "NNP" ], "cradled": [ "VBN" ], "justly": [ "RB" ], "Illeman": [ "NNP" ], "Rolette": [ "NNP" ], "interviewee": [ "NN" ], "interviewed": [ "VBN", "VBD" ], "gaiters": [ "NNS" ], "typhoon": [ "NN" ], "repurchases": [ "NNS" ], "interviewer": [ "NN" ], "FRANKFURT": [ "NNP" ], "Puette": [ "NNP" ], "Mademoiselle": [ "NNP" ], "Recounting": [ "VBG" ], "Kleiner": [ "NNP" ], "condolences": [ "NNS" ], "Eubanks": [ "NNP" ], "fertility-control": [ "JJ" ], "charges": [ "NNS", "VBZ" ], "family-oriented": [ "JJ" ], "navigators": [ "NNS" ], "Rosenblum": [ "NNP" ], "surrealist": [ "JJ" ], "Interwoven": [ "JJ" ], "Impartiality": [ "NN" ], "waft": [ "VB" ], "graffiti": [ "NN" ], "Achenbaum": [ "NNP" ], "cleverness": [ "NN" ], "Snuggle": [ "NNP" ], "Mainstay": [ "NN" ], "Food": [ "NNP", "NN" ], "Brace": [ "NNP", "NN", "VB" ], "Orchester": [ "NNP" ], "Blackmun": [ "NNP" ], "Krogers": [ "NNPS" ], "also": [ "RB", "." ], "Haavelmo": [ "NNP" ], "conscription": [ "NN" ], "Foot": [ "NNP", "NN" ], "Chiat\\/Day\\/Mojo": [ "NNP" ], "CALLED": [ "VBD", "VBN" ], "counter-measures": [ "NNS" ], "departmental": [ "JJ" ], "Grais": [ "NNP" ], "PLUNGED": [ "VBD" ], "Lilly": [ "NNP", "RB" ], "balkanized": [ "JJ" ], "Eurofima": [ "NNP" ], "Grain": [ "NNP", "NN" ], "Grail": [ "NNP" ], "Friede": [ "NNP" ], "trills": [ "NNS" ], "ticketing": [ "VBG" ], "Haliburton": [ "NNP" ], "deviations": [ "NNS" ], "Capitol": [ "NNP", "NN" ], "arson": [ "NN" ], "Anne-Marie": [ "NNP" ], "sometimes": [ "RB" ], "barred": [ "VBN", "VBD" ], "self-financed": [ "JJ" ], "barren": [ "JJ" ], "Portfolio": [ "NNP", "NN" ], "barrel": [ "NN", "VB" ], "Relatively": [ "RB" ], "Nagorski": [ "NNP" ], "bulletin": [ "NN", "VB" ], "Anhalt-Bernburg": [ "NNP" ], "stock-appreciation": [ "NN" ], "American-built": [ "JJ" ], "Hal": [ "NNP" ], "Ham": [ "NNP" ], "Han": [ "NNP" ], "transshipment": [ "NN" ], "H.T.": [ "NNP" ], "Had": [ "VBD", "NNP", "VBN" ], "bookings": [ "NNS" ], "Hay": [ "NNP", "NN" ], "Merciful": [ "JJ" ], "Hap": [ "NNP" ], "baneful": [ "JJ" ], "Has": [ "VBZ", "NNP" ], "Hat": [ "NNP" ], "Pa.-based": [ "JJ" ], "Haw": [ "UH" ], "access": [ "NN", "VB" ], "Bulgarian": [ "JJ", "NNP" ], "Cellar": [ "NNP" ], "Dunn": [ "NNP" ], "neophytes": [ "NNS" ], "Dauster": [ "NNP" ], "Dung": [ "NNP" ], "cassette": [ "NN" ], "snobbish": [ "JJ" ], "calibers": [ "NNS" ], "broker-dealers": [ "NNS" ], "atheistic": [ "JJ" ], "McLemore": [ "NNP" ], "Wife": [ "NN" ], "Viande": [ "NNP" ], "Cowbird": [ "NNP" ], "sunny": [ "JJ" ], "trek": [ "NN", "VB", "VBP" ], "BACK": [ "RB" ], "non-insurance": [ "JJ", "NN" ], "plasters": [ "NNS" ], "Dimes": [ "NNP" ], "devoured": [ "VBN", "VBD" ], "adapts": [ "VBZ" ], "bytes": [ "NNS" ], "sojourn": [ "NN" ], "goitre": [ "NN" ], "caramel": [ "NN" ], "INCOME": [ "NN", "NNP" ], "approximations": [ "NNS" ], "prospectus": [ "NN" ], "Amalgamated": [ "NNP" ], "delicately": [ "RB" ], "sycamore": [ "NN" ], "Glacier": [ "NNP" ], "Grolier": [ "NNP" ], "Fiori": [ "NNP" ], "overboard": [ "RB" ], "Fiore": [ "NNP" ], "shower": [ "NN", "VB", "VBP" ], "free-falling": [ "JJ" ], "unrealized": [ "JJ" ], "sulfurous": [ "JJ" ], "Cuomo": [ "NNP" ], "Perkin-Elmer": [ "NNP" ], "AGREED": [ "VBD" ], "Panama-incorporated": [ "JJ" ], "Thatcher-style": [ "JJ" ], "Erikson": [ "NNP" ], "Hostile": [ "JJ" ], "AZTR": [ "NNP" ], "bull-like": [ "JJ" ], "Tustin": [ "NNP" ], "untouched": [ "JJ" ], "Hollinger": [ "NNP" ], "Sewer": [ "NNP" ], "Shionogi": [ "NNP" ], "Non": [ "FW" ], "lass": [ "NN" ], "last": [ "JJ", "NN", "RB", "VB", "VBP" ], "R-5th": [ "JJ" ], "door-fronted": [ "VBN" ], "business-migration": [ "NN" ], "connection": [ "NN" ], "eight-month-old": [ "JJ" ], "lash": [ "VB", "VBP", "NN" ], "McEnaney": [ "NNP" ], "acted": [ "VBD", "VBN" ], "Oresteia": [ "NNP" ], "geometry": [ "NN" ], "aforethought": [ "JJ", "NN" ], "sinuous": [ "JJ" ], "Greeniaus": [ "NNP" ], "S.P.": [ "NNP" ], "Woonasquatucket": [ "NNP" ], "Wyeth-Ayerst": [ "NNP" ], "Appointment": [ "NN", "NNP" ], "originators": [ "NNS" ], "lucrative": [ "JJ" ], "Automobile": [ "NNP", "NN" ], "decades-old": [ "JJ" ], "patrolled": [ "VBN", "VBD" ], "combatants": [ "NNS" ], "periwinkles": [ "NNS" ], "ozone-safe": [ "JJ" ], "infect": [ "VB" ], "moderation": [ "NN" ], "Siecles": [ "NNPS" ], "diffusely": [ "RB" ], "Prompt": [ "NNP", "JJ" ], "Michel": [ "NNP" ], "Icahns": [ "NNP" ], "exponential": [ "JJ" ], "Meinders": [ "NNP" ], "caged": [ "VBN" ], "Neste": [ "NNP" ], "expanded": [ "VBN", "VBD", "JJ" ], "empirical": [ "JJ" ], "Reverdy": [ "NNP" ], "presentational": [ "JJ" ], "cagey": [ "JJ" ], "Margins": [ "NNS", "NNP" ], "cages": [ "NNS" ], "trinkets": [ "NNS" ], "Vizeversa": [ "NNP" ], "von": [ "NNP" ], "waivered": [ "VBN" ], "motors": [ "NNS" ], "tell-tale": [ "JJ", "NN" ], "vos": [ "FW" ], "cuisine": [ "NN" ], "savings-and-loan": [ "JJ", "NN" ], "tight-fisted": [ "JJ" ], "Disgusted": [ "VBN" ], "Keffer": [ "NNP" ], "eventshah-leh": [ "RB" ], "Wisner": [ "NNP" ], "Gen-Probe": [ "NNP" ], "flooded": [ "VBN", "VBD" ], "Entrepreneurs": [ "NNS" ], "first-order": [ "JJ" ], "Pakistanis": [ "NNPS" ], "Chorus": [ "NNP" ], "Heinze": [ "NNP" ], "Benetton": [ "NNP" ], "ringsiders": [ "NNS" ], "guerrilla-held": [ "JJ" ], "Minns": [ "NNP" ], "Karp": [ "NNP" ], "Kary": [ "NNP" ], "delisting": [ "NN", "VBG" ], "honor": [ "NN", "VBP", "VB" ], "Kara": [ "NNP" ], "Names": [ "NNS", "NNPS" ], "Kare": [ "NNP" ], "make-believe": [ "NN" ], "Karo": [ "NNP" ], "Karl": [ "NNP", "JJ" ], "countian": [ "NN" ], "dieting": [ "NN", "VBG" ], "Neodata": [ "NNP" ], "Unimpressed": [ "JJ" ], "crackled": [ "VBD" ], "Amtran": [ "NNP" ], "Milne": [ "NNP" ], "crackles": [ "VBZ" ], "Undead": [ "NN" ], "PHOTOGRAPH": [ "NN" ], "cuffs": [ "NNS" ], "Non-cosmetic": [ "JJ" ], "anti-intellectual": [ "JJ" ], "overcurious": [ "JJ" ], "built-soap": [ "NN" ], "pinball": [ "NN" ], "resemblances": [ "NNS" ], "horseradish": [ "NN" ], "Lockman": [ "NNP" ], "Marino": [ "NNP" ], "depravity": [ "NN" ], "Tackle": [ "NNP" ], "Marine": [ "NNP", "JJ", "NN" ], "cordon": [ "FW", "NN" ], "PROSPECTS": [ "NNS" ], "Multimedia": [ "NNP" ], "poor-white-trash": [ "JJ" ], "emergency": [ "NN", "JJ" ], "McAlpine": [ "NNP" ], "Bellingham": [ "NNP" ], "abound": [ "VBP", "VB" ], "Lerman": [ "NNP" ], "Margery": [ "NNP" ], "emergence": [ "NN" ], "Gunfire": [ "NN" ], "Petrolane": [ "NNP" ], "marquee": [ "NN" ], "spine": [ "NN" ], "retrovirus": [ "NN" ], "marques": [ "NNS" ], "individuals": [ "NNS" ], "Wiesbaden": [ "NNP" ], "tribes": [ "NNS" ], "ExPe": [ "NNP" ], "metropolitanization": [ "NN" ], "velocities": [ "NNS" ], "methods": [ "NNS" ], "goddamn": [ "UH", "VBN", "JJ" ], "necessaries": [ "NNS" ], "Bourse": [ "NNP", "FW" ], "methode": [ "NNP" ], "Norristown": [ "NNP" ], "Confidential": [ "NNP" ], "measurements": [ "NNS" ], "benefit": [ "NN", "VB", "VBP" ], "Nyack": [ "NNP" ], "Ravenswood": [ "NNP" ], "Heublein": [ "NNP" ], "SIERRA": [ "NNP" ], "Deloitte-Touche": [ "NNP" ], "seclusion": [ "NN" ], "Antigone": [ "NNP" ], "inserting": [ "VBG" ], "chrysanthemums": [ "NNS" ], "obscures": [ "VBZ" ], "luncheon-voucher": [ "NN" ], "LATE-BREAKING": [ "JJ" ], "Congressmen": [ "NNS", "NNPS" ], "home-audience": [ "NN" ], "obscured": [ "VBN", "JJ", "VBD" ], "Havilland": [ "NNP" ], "Sugary": [ "JJ" ], "bad-smelling": [ "JJ" ], "deserved": [ "VBD", "VBN" ], "epochal": [ "JJ" ], "Quivar": [ "NNP" ], "Sugars": [ "NNPS" ], "encylopedia": [ "NN" ], "wrinkles": [ "NNS" ], "Levki": [ "NNP" ], "Prescience": [ "NNP" ], "excised": [ "VBD", "VBN" ], "wrinkled": [ "JJ", "VBD", "VBN" ], "torch-lit": [ "JJ" ], "eight-person": [ "JJ" ], "Bunch": [ "NN" ], "Globe-Democrat": [ "NNP" ], "Keizaikai": [ "NNP" ], "Debt-Burdened": [ "JJ" ], "Zola": [ "NNP" ], "readable": [ "JJ" ], "Shay": [ "NNP" ], "prodigious": [ "JJ" ], "Well-wishers": [ "NNS" ], "Altair": [ "NNP" ], "Balch": [ "NNP" ], "Shad": [ "NNP" ], "contributor": [ "NN" ], "HFC": [ "NNP" ], "Shan": [ "NNP" ], "enthusiasms": [ "NNS" ], "Used": [ "VBN", "JJ" ], "span": [ "NN", "VB", "VBP" ], "thwump": [ "NN" ], "harnessed": [ "VBN" ], "specialty-retail": [ "JJ" ], "Brunsdon": [ "NNP" ], "sock": [ "NN", "VB" ], "manufacturing-cost": [ "NN" ], "Feds": [ "NNPS" ], "prowling": [ "VBG" ], "spas": [ "NNS" ], "Sabras": [ "NNS" ], "Counties": [ "NNPS", "NNP" ], "considerably": [ "RB" ], "hot-cereals": [ "NNS" ], "Congresswoman": [ "NNP" ], "data-storage": [ "JJ", "NN" ], "deductions": [ "NNS" ], "Keynotes": [ "NNS" ], "hyping": [ "VBG", "NN" ], "Sha.": [ "NNP" ], "considerable": [ "JJ" ], "nonrecourse": [ "JJ" ], "fades": [ "NNS", "VBZ" ], "Afanasyev": [ "NNP" ], "positivist": [ "NN" ], "inhumane": [ "JJ" ], "Dolphin": [ "NNP" ], "Elegant": [ "NNP" ], "preemptive": [ "JJ" ], "Yemelyanenko": [ "NNP" ], "mortgage-securities": [ "JJ" ], "positivism": [ "NN", "JJ" ], "WWOR": [ "NNP" ], "Iguana": [ "NNP" ], "introjects": [ "NNS" ], "Gentility": [ "NN" ], "Sofia": [ "NNP" ], "trench": [ "NN" ], "Malkovich": [ "NNP" ], "unsafe": [ "JJ" ], "char": [ "VB" ], "chap": [ "NN" ], "diverse": [ "JJ" ], "chaw": [ "NN" ], "chat": [ "NN", "VBP", "VB" ], "surveying": [ "VBG", "NN", "VBG|NN" ], "Sierra": [ "NNP" ], "shiningly": [ "RB" ], "Nast": [ "NNP" ], "Phillies": [ "NNP", "NNPS" ], "conceptions": [ "NNS" ], "subordinator": [ "NN" ], "hove": [ "VBD" ], "Arthurian": [ "JJ" ], "Gurion": [ "NNP" ], "Skelton": [ "NNP" ], "Smokey": [ "NNP" ], "Julius": [ "NNP" ], "gardenia": [ "NN" ], "Rutstein": [ "NNP" ], "long-lasting": [ "JJ" ], "Nakasone": [ "NNP" ], "Portrayal": [ "NN" ], "reinsurance": [ "NN" ], "BIA-COR": [ "NNP" ], "Indiana-Ohio": [ "NNP" ], "land": [ "NN", "VBP", "VB" ], "lana": [ "FW" ], "Gawdamighty": [ "UH" ], "electroplated": [ "VBN" ], "Leipzig": [ "NNP", "NN" ], "thrombosis": [ "NN" ], "Rheinstahl": [ "NNP" ], "Winnipesaukee": [ "NNP" ], "Radar": [ "NNP" ], "beverage": [ "NN" ], "Chicago-Helsinki": [ "NNP" ], "Secaucus": [ "NNP" ], "Jif": [ "NNP" ], "modernizing": [ "VBG", "NN" ], "dawning": [ "VBG", "NN" ], "toted": [ "VBN" ], "Jin": [ "NNP" ], "railbirds": [ "NNS" ], "broaden": [ "VB", "VBP" ], "Jim": [ "NNP" ], "totem": [ "NN" ], "cobalt": [ "NN" ], "family-community": [ "NN" ], "broader": [ "JJR" ], "amiss": [ "JJ" ], "Pesticides": [ "NNS" ], "Biogen": [ "NNP" ], "Notice": [ "NN", "VB", "NNP" ], "Garson": [ "NNP" ], "Symptomatic": [ "JJ" ], "Youngest": [ "JJS", "NNP" ], "rejoined": [ "VBD", "VBN" ], "contours": [ "NNS" ], "expeditious": [ "JJ" ], "resources": [ "NNS" ], "pinkish-white": [ "JJ" ], "boatload": [ "NN" ], "quadruples": [ "VBZ" ], "dissents": [ "NNS" ], "petitions": [ "NNS", "VBZ" ], "quadrupled": [ "VBN", "VBD" ], "squirt": [ "NN" ], "Wakes": [ "NNP" ], "harbor": [ "NN", "VB", "VBP" ], "ICCO": [ "NNP" ], "whooping": [ "JJ", "VBG" ], "funneling": [ "VBG" ], "Sabbath": [ "NNP" ], "damning": [ "VBG" ], "JACUZZI": [ "NNP" ], "world-class": [ "JJ" ], "twice-yearly": [ "JJ" ], "lesbianism": [ "NN" ], "Sodium": [ "NN" ], "Spending": [ "NN", "VBG" ], "Richelieu": [ "NNP" ], "forthrightness": [ "NN" ], "Mathematically": [ "RB" ], "crook": [ "NN" ], "Broadcasts": [ "NNS" ], "croon": [ "VB" ], "Wellsley": [ "NNP" ], "drought-related": [ "JJ" ], "Campaigne": [ "NNP" ], "Schmedel": [ "NNP" ], "Tauke": [ "NNP" ], "industry-standard": [ "JJ" ], "henceforth": [ "RB" ], "turnaround": [ "NN" ], "advantageously": [ "RB" ], "much-coveted": [ "JJ" ], "Freedom": [ "NNP", "NN" ], "Dupont": [ "NNP" ], "Dierker": [ "NNP" ], "Orfeo": [ "NNP" ], "TECHNOLOGY": [ "NNP", "NN" ], "Greek-Americans": [ "NNPS" ], "keddah": [ "FW" ], "Trumbull": [ "NNP" ], "unwittingly": [ "RB" ], "Zaporogian": [ "NNP" ], "headline": [ "NN" ], "KV": [ "NNP", "NN" ], "survey": [ "NN", "VB", "VBP" ], "thatt": [ "IN" ], "NRLDA": [ "NNP" ], "A.G.": [ "NNP" ], "steamers": [ "NNS" ], "Greenwich": [ "NNP" ], "INSTITUTE": [ "NNP" ], "Feuchtwanger": [ "NNP" ], "lymphocytic": [ "JJ" ], "wishywashy": [ "NN" ], "dumbest": [ "JJS" ], "Paster": [ "NNP" ], "Kleinman": [ "NNP" ], "Maiorana": [ "NNP" ], "virus-boosting": [ "JJ" ], "Lamberth": [ "NNP" ], "Mandresh": [ "NNP" ], "guideline": [ "NN" ], "Cadwell": [ "NNP" ], "L.T.": [ "NNP" ], "Wedding": [ "NN", "NNP" ], "binges": [ "NNS" ], "Suspected": [ "VBN", "JJ" ], "vasodilator": [ "NN" ], "nonpolitical": [ "JJ" ], "BOND": [ "NN" ], "pencil": [ "NN" ], "Erlenmeyer": [ "NN" ], "By-Products": [ "NNP" ], "baby": [ "NN", "UH" ], "Reactors": [ "NNP" ], "housebreakers": [ "NNS" ], "enzymatic": [ "JJ" ], "attention...": [ ":" ], "twenty-dollar": [ "JJ" ], "clients": [ "NNS" ], "Hideaki": [ "NNP" ], "five-month": [ "JJ" ], "back-dating": [ "VBG" ], "Offenses": [ "NNS" ], "hauls": [ "NNS", "VBZ" ], "FRAUDS": [ "NNS" ], "process": [ "NN", "VBP", "VB" ], "lock": [ "VB", "VBP", "JJ", "NN" ], "coolness": [ "NN" ], "loco": [ "FW" ], "Hetman": [ "NNP" ], "Lender": [ "NNP" ], "bond-underwriting": [ "JJ" ], "nears": [ "VBZ", "NNS" ], "uncompensated": [ "JJ" ], "engagingly": [ "RB" ], "Agricole": [ "NNP" ], "all-American": [ "JJ" ], "educational": [ "JJ" ], "Agricola": [ "NNP" ], "paled": [ "VBD", "VB", "VBN" ], "Eldred": [ "NNP" ], "Millicent": [ "NNP" ], "procured": [ "VBN", "VBD" ], "Nuggets": [ "NNPS" ], "bilingual": [ "JJ" ], "hormones": [ "NNS" ], "burley": [ "NN" ], "Friends": [ "NNS", "NNPS", "NNP" ], "pales": [ "VBZ", "NNS" ], "Nathan": [ "NNP" ], "recorders.": [ "NNS" ], "summonses": [ "NNS" ], "a-gracious": [ "JJ" ], "terrors": [ "NNS" ], "Early-retirement": [ "NN" ], "Retardation": [ "NNP" ], "Brest-Silevniov": [ "NNP" ], "Gospel": [ "NNP" ], "Tinsman": [ "NNP" ], "Owens-Ilinois": [ "NNP" ], "Marlowe": [ "NNP" ], "realized": [ "VBD", "JJ", "VBN" ], "regains": [ "VBZ" ], "Sitco": [ "NNP" ], "Sanwa": [ "NNP" ], "robot": [ "NN" ], "oil-trading": [ "NN" ], "Oct.": [ "NNP", "NN" ], "Moet-Hennessy": [ "NNP" ], "realizes": [ "VBZ" ], "pungently": [ "RB" ], "presuppose": [ "VBP" ], "Good-by": [ "UH" ], "thrift-holding": [ "JJ" ], "holds": [ "VBZ", "NNS" ], "folksongs": [ "NNS" ], "mute": [ "JJ", "VB" ], "roll-call": [ "JJ", "NN" ], "Committeeman": [ "NNP" ], "directs": [ "VBZ" ], "Campbell-Mithun": [ "NNP" ], "Ads": [ "NNS" ], "perfect": [ "JJ" ], "byline": [ "NN" ], "broiling": [ "VBG" ], "Scientific": [ "NNP", "JJ" ], "Kodaks": [ "NNPS" ], "varies": [ "VBZ" ], "Brooks": [ "NNP" ], "Cabinet": [ "NNP", "NN" ], "meantime": [ "NN", "RB" ], "thieves": [ "NNS" ], "Brooke": [ "NNP" ], "hijackers": [ "NNS" ], "morgen": [ "FW" ], "vicariously": [ "RB" ], "Courter...": [ ":" ], "Hungry": [ "JJ" ], "astronomically": [ "RB" ], "beer-running": [ "NN" ], "seawater": [ "NN" ], "caucuses": [ "NNS" ], "realize": [ "VB", "VBP" ], "disgorgement": [ "NN" ], "Purnick": [ "NNP" ], "blown-up": [ "VBN" ], "autistic": [ "JJ" ], "ruefully": [ "RB" ], "Caronia": [ "NNP" ], "Emmanuel": [ "NNP" ], "sneezed": [ "VBD", "VBN" ], "group-identity": [ "NN" ], "candlewick": [ "NN" ], "electrically": [ "RB" ], "All-You-Can-Eat": [ "NNP" ], "Talmo": [ "NNP" ], "glasses": [ "NNS" ], "Friedmann": [ "NNP" ], "suitors": [ "NNS" ], "RIVALRIES": [ "NNS" ], "Organisation": [ "NNP" ], "bump": [ "VB", "NN", "VBP" ], "Aniseikonic": [ "JJ" ], "Chehel": [ "NNP" ], "deficiency": [ "NN" ], "Carbondale": [ "NNP" ], "VAX9000": [ "NN" ], "Vermonters": [ "NNPS" ], "Viren": [ "NNP" ], "fundamentally": [ "RB" ], "Welborn": [ "NNP" ], "Geocentricism": [ "NN" ], "rigging": [ "NN" ], "boutique": [ "NN" ], "Bassis": [ "NNPS" ], "M.S.": [ "NNP" ], "bicameral": [ "JJ" ], "anti-AIDS": [ "JJ" ], "Dirvin": [ "NNP" ], "unprepared": [ "JJ" ], "highs": [ "NNS" ], "Karene": [ "NNP" ], "news-weeklies": [ "NNS" ], "inferiority": [ "NN" ], "Flake": [ "NN" ], "Emery": [ "NNP" ], "Expecting": [ "VBG" ], "disintegrating": [ "VBG" ], "Dives": [ "NNS" ], "Passing": [ "VBG", "VB" ], "once-a-month": [ "JJ" ], "criss-crossing": [ "NN" ], "dejeuners": [ "FW" ], "gunk": [ "NN" ], "mainland": [ "NN", "JJ" ], "transferable": [ "JJ" ], "area": [ "NN" ], "Jesus": [ "NNP", "NN", "UH" ], "chilly": [ "JJ" ], "length": [ "NN" ], "ratification": [ "NN" ], "Manufactured": [ "JJ" ], "chills": [ "NNS", "VBZ" ], "Aubr.": [ "NNP" ], "untested": [ "JJ" ], "whiners": [ "NNS" ], "Gosheim": [ "NNP" ], "Fourth-of-July": [ "NNP" ], "scene": [ "NN" ], "Forecast": [ "NNP", "NN" ], "Coombs": [ "NNP" ], "Krispies": [ "NNPS" ], "affliction": [ "NN" ], "starker": [ "JJR" ], "scent": [ "NN" ], "NZI": [ "NNP" ], "Ries": [ "NNP" ], "Iraj": [ "NNP" ], "Iran": [ "NNP" ], "cinder-block": [ "JJ" ], "festival": [ "NN" ], "Lengwin": [ "NNP" ], "Doosan": [ "NNP" ], "backdoor": [ "JJ" ], "sergeant": [ "NN" ], "SHAKE": [ "VB" ], "Iraq": [ "NNP" ], "denominators": [ "NNS" ], "pervasive": [ "JJ" ], "Firearms": [ "NNP", "NNPS" ], "burglarized": [ "VBN" ], "laymen": [ "NNS" ], "pressurized": [ "VBN" ], "Barletta": [ "NNP" ], "recurrences": [ "NNS" ], "Waycross": [ "NNP" ], "Veryfine": [ "NNP" ], "Hastings": [ "NNP" ], "seed-capital": [ "JJ" ], "egregious": [ "JJ" ], "roulette": [ "NN" ], "big-fee": [ "JJ" ], "gentile": [ "NN", "JJ" ], "Goupil": [ "NNP" ], "Parella": [ "NNP" ], "student-test": [ "JJ" ], "U.S.-supplied": [ "JJ" ], "one-country": [ "JJ" ], "Bolingbroke": [ "NNP" ], "seethes": [ "VBZ" ], "Finsbury": [ "NNP" ], "Jeeps": [ "NNS" ], "Rowe": [ "NNP" ], "ponders": [ "VBZ" ], "dishes": [ "NNS", "VBZ" ], "prevayle": [ "VB" ], "uncalled": [ "JJ" ], "Fluor": [ "NNP" ], "Gazinosu": [ "NNP" ], "Bay-area": [ "JJ" ], "Jeep\\": [ "NNP" ], "worldwide": [ "JJ", "RB" ], "Pierce": [ "NNP", "VB" ], "khan": [ "FW" ], "Gumkowski": [ "NNP" ], "essential...": [ ":" ], "Samaritan": [ "NNP" ], "Ob-Irtysh": [ "NNP" ], "Fritzsche": [ "NNP" ], "Hiker": [ "NN" ], "petals": [ "NNS" ], "scabrous": [ "JJ" ], "Feliciano": [ "NNP" ], "Clinico-pathologic": [ "NNP" ], "Gaskin": [ "NNP" ], "Reserve": [ "NNP" ], "Bio-Dynamic": [ "NNP" ], "bleaker": [ "JJR" ], "Balsbaugh": [ "NNP" ], "thanksgiving": [ "NN" ], "program-trading": [ "JJ", "NN" ], "perceiving": [ "VBG" ], "bartenders": [ "NNS" ], "woolworkers": [ "NNS" ], "Tender": [ "NN", "NNP" ], "Tussle": [ "NNP" ], "rainbows": [ "NNS" ], "woolly": [ "JJ" ], "employee-benefit": [ "JJ", "NN" ], "greenhouse": [ "NN" ], "titian-haired": [ "JJ" ], "nominally": [ "RB" ], "Pennington": [ "NNP" ], "jay": [ "NN" ], "Euro-this": [ "NN" ], "jar": [ "NN" ], "Chromspun": [ "NNP" ], "Walton": [ "NNP" ], "bombings": [ "NNS" ], "Ultramar": [ "NNP" ], "jai": [ "FW" ], "jag": [ "NN" ], "untellable": [ "JJ" ], "jab": [ "NN" ], "Nightline": [ "NNP", "NN" ], "debtor-in-possession": [ "NN" ], "antagonism": [ "NN" ], "Okies": [ "NNP" ], "Dryden": [ "NNP" ], "WARNER-LAMBERT": [ "NNP" ], "sports-related": [ "JJ" ], "wing-shooting": [ "NN" ], "Bonhoffer": [ "NNP" ], "antagonist": [ "NN" ], "symbols": [ "NNS" ], "determinants": [ "NNS" ], "wynne": [ "VB" ], "BLAME": [ "VB" ], "lower-middle": [ "JJ" ], "rapped": [ "VBD", "VBN" ], "raceway": [ "NN" ], "exude": [ "VBP" ], "Brochures": [ "NNS" ], "strengthened": [ "VBN", "JJ", "VBD" ], "Heller": [ "NNP" ], "tax-shelter": [ "JJ", "NN" ], "allusion": [ "NN" ], "Pt": [ "NNP" ], "faier": [ "RB" ], "appliance": [ "NN" ], "differentials": [ "NNS" ], "zoologist": [ "NN" ], "Pa": [ "NNP" ], "Adoption": [ "NN", "NNP" ], "Pe": [ "NNP" ], "glass-bottom": [ "JJ" ], "Pi": [ "NN", "NNP" ], "Po": [ "NNP" ], "airmail": [ "NN" ], "Pm": [ "NN" ], "PR": [ "NNP", "NN" ], "Consitutional": [ "JJ" ], "PQ": [ "NN" ], "Rheims": [ "NNP" ], "insulting": [ "JJ", "VBG" ], "Iwo": [ "NNP" ], "self-taught": [ "JJ" ], "PX": [ "NNP" ], "Aloys": [ "NNP" ], "thermonuclear": [ "JJ" ], "P\\": [ "NNP" ], "PC": [ "NN", "NNP" ], "PA": [ "NNP" ], "PF": [ "NNP" ], "A135": [ "NN" ], "Dyna": [ "NNP" ], "truncheons": [ "NNS" ], "Jackman": [ "NNP" ], "Vastly": [ "RB" ], "perennials": [ "NNS" ], "high-topped": [ "JJ" ], "Kitchen": [ "NNP", "NN" ], "Harty": [ "NNP" ], "Hartz": [ "NNP" ], "toner": [ "NN" ], "Hartt": [ "NNP" ], "Domesday": [ "NNP" ], "Kimbolton": [ "NNP" ], "FACES": [ "VBZ" ], "souvenir": [ "NN" ], "P.": [ "NNP", "NN" ], "factory-jobs": [ "NNS" ], "slitter": [ "NN" ], "Widowers": [ "NNS" ], "Istiqlal": [ "NNP" ], "perfidious": [ "JJ" ], "Clearwater": [ "NNP" ], "doorway": [ "NN" ], "Cows": [ "NNS" ], "unearthing": [ "VBG" ], "Barbie": [ "NNP" ], "carbonyl": [ "NN" ], "roughed": [ "VBD" ], "milllion": [ "NN" ], "Gooding": [ "NNP" ], "Featherston": [ "NNP" ], "Bayou": [ "NNP" ], "Moderate": [ "JJ" ], "undergraduate": [ "JJ", "NNP", "NN" ], "rougher": [ "JJR" ], "torsion": [ "NN" ], "CR103": [ "NNP" ], "door-to-door": [ "JJ", "NN" ], "debs": [ "NNS" ], "Sophisticated": [ "JJ" ], "goverment.": [ "NN" ], "DJS\\/Inverness": [ "NNP", "NN" ], "Istat": [ "NNP" ], ">": [ "SYM", "NN" ], "sheepish": [ "JJ" ], "valuations": [ "NNS" ], "swarmed": [ "VBD", "VBN" ], "Tohmatsu": [ "NNP" ], "McKeown": [ "NNP" ], "Gossnab": [ "NNP" ], "Epiphany": [ "NNP" ], "shiftless": [ "JJ" ], "Sturges": [ "NNP" ], "purposively": [ "RB" ], "BELEAGUERED": [ "JJ" ], "lecherous": [ "JJ" ], "eraser-fitted": [ "JJ" ], "Number": [ "NN", "NNP" ], "Quiksilver": [ "NNP" ], "U.S.-developed": [ "JJ" ], "Battle": [ "NNP", "NN" ], "deductible": [ "JJ" ], "fielding": [ "NN", "VBG" ], "Schopenhauer": [ "NNP" ], "stuffing": [ "VBG", "NN" ], "Likening": [ "VBG" ], "playgrounds": [ "NNS" ], "bioequivalent": [ "JJ" ], "Pipes": [ "NNP" ], "Piper": [ "NNP" ], "until...": [ ":" ], "agonizes": [ "VBZ" ], "Fuel": [ "NNP", "NN" ], "Adequate": [ "JJ" ], "passbook": [ "NN" ], "merest": [ "JJS" ], "H&M": [ "NNP" ], "Nineteen-sixty": [ "NNP" ], "denial": [ "NN" ], "vocabulary": [ "NN" ], "Donbas": [ "NNP" ], "marketin": [ "NN" ], "complemented": [ "VBD" ], "Diplomatic": [ "JJ" ], "unsympathetic": [ "JJ" ], "wipeout": [ "NN" ], "sunshades": [ "NNS" ], "colts": [ "NNS" ], "identity": [ "NN" ], "Lai": [ "NNP" ], "audit": [ "NN", "VB" ], "Joking": [ "VBG" ], "shotgun": [ "NN", "JJ" ], "illusiveness": [ "NN" ], "tropocollagen": [ "NN" ], "patterns": [ "NNS" ], "Colombo": [ "NNP" ], "Artists": [ "NNPS", "NNP", "NNS" ], "diversify": [ "VB" ], "audio": [ "JJ", "NN" ], "north-south": [ "JJ" ], "bankruptcy-proceedings": [ "NNS" ], "corporate-wide": [ "JJ" ], "Kekisheva": [ "NNP" ], "well-financed": [ "JJ" ], "slitters": [ "NNS" ], "zotls": [ "NNS" ], "Wingman": [ "NN" ], "clocks": [ "NNS", "VBZ" ], "floes": [ "NNS" ], "BCI": [ "NNP" ], "web": [ "NN", "JJ" ], "Specthrie": [ "NNP" ], "wee": [ "JJ", "PRP" ], "hauntingly": [ "RB" ], "Contacted": [ "VBN" ], "wei": [ "NNS" ], "Tact": [ "NN" ], "GTI": [ "NNP" ], "undulating": [ "JJ" ], "Tack": [ "NN" ], "fly-dotted": [ "JJ" ], "reckless-endangerment": [ "NN" ], "Taco": [ "NNP" ], "villagers": [ "NNS" ], "PC9801LX5C": [ "NNP" ], "Garn": [ "NNP" ], "Ninomiya": [ "NNP" ], "Nipponese": [ "JJ" ], "biologists": [ "NNS" ], "archeological": [ "JJ" ], "Stalone": [ "NNP" ], "wishes..": [ "NN" ], "capitulation": [ "NN" ], "Spendthrift": [ "NNP" ], "tick": [ "VB", "NN" ], "peeked": [ "VBD" ], "pies": [ "NNS" ], "DesRosiers": [ "NNP" ], "Sopsaisana": [ "NNP" ], "Pirates": [ "NNP", "NNPS" ], "Ethel-Jane": [ "NNP" ], "truculence": [ "NN" ], "DuPont": [ "NNP" ], "vistors": [ "NNS" ], "undid": [ "VBD" ], "flickering": [ "VBG" ], "now-notorious": [ "JJ" ], "teratologies": [ "NNS" ], "FIRM": [ "NN", "NNP" ], "breakables": [ "NNS" ], "Ladenburg": [ "NNP" ], "actuarial": [ "JJ" ], "Rojo": [ "NNP" ], "cider": [ "NN" ], "immortal": [ "JJ" ], "VO5": [ "NNP" ], "scatters": [ "VBZ" ], "choosing": [ "VBG", "NN" ], "flush": [ "JJ", "NN", "RB", "VB", "VBP" ], "G-2": [ "NN" ], "Hutchison": [ "NNP" ], "Meridian": [ "NNP" ], "Christmas-time": [ "JJ" ], "contested": [ "VBN", "JJ", "VBD" ], "B.C.": [ "NN", "FW", "NNP" ], "just-in-time": [ "JJ" ], "Recurring": [ "VBG" ], "mementos": [ "NNS" ], "sayonara": [ "FW" ], "Elshtain": [ "NNP" ], "e-Estimated": [ "VBN" ], "Gruntal": [ "NNP" ], "nonsmokers": [ "NNS" ], "freeze-out": [ "JJ", "NN" ], "Hemweg": [ "NNP" ], "pressure": [ "NN", "VB", "VBP" ], "wields": [ "VBZ" ], "SABLE": [ "NNP" ], "Christian-Democratic": [ "NNP" ], "infiltrating": [ "VBG" ], "SPECIALIZED": [ "JJ" ], "coldly": [ "RB" ], "homemaker": [ "NN" ], "illegalities": [ "NNS" ], "lifestyle": [ "NN" ], "VOA": [ "NNP" ], "outshines": [ "VBZ" ], "Viruses": [ "NNS" ], "Trinkaus": [ "NNP" ], "Diery": [ "NNP" ], "flair": [ "NN" ], "documentary": [ "NN", "JJ" ], "Margeotes": [ "NNP", "NNS" ], "miscegenation": [ "NN" ], "f-plane": [ "NN" ], "Glazier": [ "NNP" ], "Greenville": [ "NNP" ], "Schreyer": [ "NNP" ], "gastronomy": [ "NN" ], "VENTURE": [ "NN" ], "Sofitel": [ "NNP" ], "Mood": [ "NNP" ], "advert": [ "NN" ], "Sacremento": [ "NNP" ], "watchman": [ "NN" ], "heresy": [ "NN" ], "riflemen": [ "NNS" ], "indoctrinated": [ "VBN" ], "boites": [ "NNS" ], "bagged": [ "VBD", "JJ" ], "Negotiation": [ "NN" ], "Balafrej": [ "NNP" ], "yarns": [ "NNS" ], "stonelike": [ "JJ" ], "Contract": [ "NNP", "NN" ], "Winzer": [ "NNP" ], "Cooke": [ "NNP" ], "convenience-food": [ "NN" ], "one-week-old": [ "JJ" ], "nation-wide": [ "JJ" ], "places": [ "NNS", "VBZ" ], "Marxist-leaning": [ "NNP" ], "placed": [ "VBN", "VBD" ], "gloated": [ "VBD" ], "Bank-Texas": [ "NNP" ], "Executive": [ "NNP", "NN" ], "Berkshire": [ "NNP" ], "nurses": [ "NNS" ], "is...": [ ":" ], "Cassa": [ "NNP" ], "hearers": [ "NNS" ], "reciprocates": [ "VBZ" ], "disengagement": [ "NN" ], "Darwin": [ "NNP" ], "nursed": [ "VBD" ], "effected": [ "VBN", "VBD" ], "CFM56-56s": [ "NNS" ], "Fate": [ "NNP", "NN" ], "deadly": [ "JJ", "RB" ], "Critic": [ "NNP" ], "lately": [ "RB" ], "Fats": [ "NNP", "NNS" ], "compares": [ "VBZ", "NNS" ], "behold": [ "VB" ], "Well-intentioned": [ "JJ" ], "illusion": [ "NN" ], "February": [ "NNP" ], "repeat": [ "VB", "JJ", "NN", "VBP" ], "Inheriting": [ "VBG" ], "worker": [ "NN" ], "Ineffective": [ "JJ" ], "tinier": [ "NN" ], "multinationals": [ "NNS" ], "repeal": [ "NN", "VB" ], "turboprops": [ "NNS" ], "searches": [ "NNS", "VBZ" ], "searcher": [ "NN" ], "Odd-year": [ "JJ" ], "misconstructions": [ "NNS" ], "perpendicularly": [ "RB" ], "searched": [ "VBD", "VBN" ], "gardens": [ "NNS", "VBZ" ], "c-Excludes": [ "VB" ], "Deauville": [ "NNP" ], "Ericson": [ "NNP" ], "Lippmann": [ "NNP" ], "Elegance": [ "NN" ], "NYU": [ "NNP" ], "McClure": [ "NNP" ], "BOTTLED": [ "VBN" ], "Berkshires": [ "NNP", "NNS" ], "fuel-distribution": [ "NN" ], "rekindle": [ "VB" ], "nervously": [ "RB" ], "Mondry": [ "NNP" ], "Ruhnau": [ "NNP" ], "onus": [ "NN" ], "stomach-churning": [ "JJ" ], "Babbitt": [ "NNP" ], "unanimity": [ "NN" ], "Sanraku": [ "NNP" ], "MANAGER": [ "NN" ], "Tokyu": [ "NNP" ], "manhandled": [ "VBN" ], "sexualized": [ "JJ" ], "STRIP": [ "VB" ], "Guerneville": [ "NNP" ], "militantly": [ "RB" ], "Dignity": [ "NNP", "NN" ], "amorous": [ "JJ" ], "two-inches": [ "NNS" ], "cow-people": [ "NN" ], "Enterprise": [ "NNP", "NNPS", "NN" ], "Musique": [ "NNP" ], "Military": [ "NNP", "JJ" ], "micromanage": [ "NN" ], "money-fed": [ "JJ" ], "succumbing": [ "VBG" ], "three-month-old": [ "JJ" ], "Yearly": [ "NNP", "JJ" ], "Stringing": [ "VBG" ], "exaggerate": [ "VB", "VBP" ], "compassionately": [ "RB" ], "Mutual-fund": [ "JJ", "NN" ], "harrowed": [ "VBN" ], "Merleau-Ponty": [ "NNP" ], "notifying": [ "VBG" ], "miuchi": [ "FW" ], "abolishing": [ "VBG" ], "MANEUVERS": [ "NNS" ], "Whoopee": [ "NN", "UH" ], "Killory": [ "NNP" ], "ATLANTIC": [ "NNP" ], "Schachter": [ "NNP" ], "Dodd-type": [ "NNP" ], "Moos": [ "NNP" ], "stardom": [ "NN" ], "Y-MP8-232": [ "NNP" ], "Avery": [ "NNP" ], "beer-cooling": [ "VBG" ], "Game": [ "NN", "NNP" ], "unfelt": [ "JJ" ], "personifies": [ "VBZ" ], "Chairperson": [ "NNP" ], "multifamily": [ "JJ", "RB" ], "Gorman": [ "NNP" ], "spunky": [ "NN" ], "residual": [ "JJ", "NN" ], "redeploy": [ "VB" ], "protection": [ "NN" ], "personified": [ "VBN", "VBD" ], "light-year": [ "NN" ], "cold-cereal": [ "JJ" ], "Nonresidential": [ "JJ" ], "KKR": [ "NNP" ], "issues...": [ ":" ], "KKK": [ "NNP" ], "Spruce": [ "NNP" ], "postponed": [ "VBN", "JJ", "VBD" ], "Riklis": [ "NNP" ], "shrimpers": [ "NNS" ], "cloistered": [ "JJ" ], "inflicting": [ "VBG" ], "Lampoon": [ "NNP" ], "lavatory": [ "NN" ], "now-scuttled": [ "JJ" ], "socioeconomic": [ "JJ" ], "absolution": [ "NN" ], "Crisco": [ "NNP" ], "plot": [ "NN", "VB", "VBP" ], "inculcation": [ "NN" ], "Seymour": [ "NNP" ], "wintertime": [ "NN" ], "coins": [ "NNS" ], "bundles": [ "NNS" ], "value-orientations": [ "NNS" ], "plod": [ "VB" ], "week-one": [ "JJ" ], "excelsin": [ "NN" ], "galbula": [ "FW" ], "bundled": [ "VBN" ], "abusing": [ "VBG" ], "bombast": [ "NN" ], "Breeden": [ "NNP" ], "toppling": [ "VBG" ], "wavy": [ "JJ" ], "Directorate": [ "NNP", "NN" ], "Chronicles": [ "NNP", "NNS" ], "separates": [ "VBZ" ], "Breeder": [ "NNP" ], "IRA-Plus": [ "NN" ], "blocking": [ "VBG", "JJ", "NN" ], "Swept": [ "VBN" ], "Headed": [ "VBN" ], "U.S.-German": [ "JJ" ], "still...": [ ":" ], "total-cost": [ "JJ" ], "Substantial": [ "JJ" ], "Initiative": [ "NNP" ], "Madrid": [ "NNP" ], "suppository": [ "NN" ], "Afield": [ "NNP" ], "Sammi": [ "NNP" ], "one-arm": [ "JJ" ], "Montenegrin": [ "NNP" ], "indicated": [ "VBD", "JJ", "VBN" ], "flunk": [ "VBP" ], "deadweight": [ "NN" ], "flung": [ "VBD", "VBN" ], "Ralph": [ "NNP" ], "agriculturally": [ "RB" ], "impair": [ "VB", "NN" ], "indicates": [ "VBZ" ], "wholesaling": [ "VBG", "NN" ], "Honeywell": [ "NNP" ], "zero-inflation": [ "NN" ], "befuddling": [ "VBG", "JJ" ], "university-funded": [ "JJ" ], "six-figure": [ "JJ" ], "recovery": [ "NN" ], "inhabitants": [ "NNS" ], "finger-post": [ "NN" ], "US-Travel": [ "NNP" ], "vehicular": [ "JJ" ], "isolation...": [ ":" ], "recovers": [ "VBZ" ], "co-wrote": [ "VBD" ], "Hindemith": [ "NN", "NNP" ], "hundred-yen": [ "JJ" ], "evolutionists": [ "NNS" ], "Cryptic": [ "JJ" ], "arcs": [ "NNS" ], "pollinating": [ "VBG" ], "customs": [ "NNS" ], "millimeter": [ "NN" ], "run-of-the-mine": [ "JJ" ], "arch": [ "NN", "VBP" ], "foundering": [ "VBG", "JJ" ], "complacent": [ "JJ" ], "elusive": [ "JJ" ], "alienate": [ "VB" ], "appreciate": [ "VB", "VBP" ], "Delegation": [ "NNP" ], "rogue": [ "JJ" ], "Fannie": [ "NNP" ], "Globocnik": [ "NNP" ], "Bureaucrat": [ "NN" ], "derided": [ "VBD", "VBN" ], "droopy-eyed": [ "JJ" ], "Hackel": [ "NNP" ], "priming": [ "VBG", "NN" ], "FARMERS": [ "NNS" ], "Eward": [ "NNP" ], "Drew": [ "NNP", "JJ", "VBD" ], "Dioxins": [ "NNS" ], "Orthodontic": [ "JJ" ], "Argentinian": [ "JJ" ], "valor": [ "NN" ], "Banda": [ "NNP" ], "Dred": [ "NNP" ], "well-connected": [ "JJ" ], "coffee": [ "NN" ], "choicest": [ "JJS" ], "Consequences": [ "NNS" ], "jerking": [ "VBG" ], "safe": [ "JJ", "NN" ], "expressionist": [ "NN" ], "roommate": [ "NN" ], "squadrons": [ "NNS" ], "penetration": [ "NN" ], "sack": [ "NN", "VB" ], "coal-like": [ "JJ" ], "lifelong": [ "JJ" ], "Candela": [ "NNP" ], "Sunday-school": [ "JJ" ], "whoop": [ "NN" ], "Twenty-six": [ "JJ" ], "eventualities": [ "NNS" ], "anion": [ "NN" ], "Saunders": [ "NNP" ], "dingo": [ "NN" ], "Beairsto": [ "NNP" ], "l": [ "NN", "NNS" ], "store-name": [ "JJ" ], "dingy": [ "JJ" ], "Lapides": [ "NNP" ], "flyers": [ "NNS" ], "cashmere": [ "NN" ], "Substituting": [ "VBG" ], "soon-to-be-sold": [ "JJ" ], "rental-car": [ "NN" ], "masseuse": [ "NN" ], "financial-crimes": [ "NNS" ], "Budapest": [ "NNP", "JJS" ], "publishing-group": [ "JJ" ], "I-5": [ "NNP" ], "maniacs": [ "NNS" ], "contracted-for": [ "JJ" ], "Clerk": [ "NNP" ], "living-benefits": [ "JJ" ], "Oneok": [ "NNP" ], "Downtown": [ "NN", "NNP" ], "Cereal": [ "NN", "NNP" ], "engrave": [ "VB" ], "Meyer": [ "NNP" ], "Trivest": [ "NNP" ], "commerical": [ "JJ" ], "colorless": [ "JJ" ], "Galloway": [ "NNP" ], "leftovers": [ "NNS" ], "Ahah": [ "UH" ], "Sardanapalus": [ "NNP" ], "dashing": [ "VBG", "JJ" ], "triphenylarsine": [ "NN" ], "detecting": [ "VBG", "NN" ], "Hirudo": [ "FW" ], "bobbin-to-cone": [ "JJ" ], "shrubbery": [ "NN" ], "either-or": [ "JJ" ], "Correctional": [ "NNP" ], "I-E": [ "NNP" ], "Big-bucks": [ "JJ" ], "Metric": [ "NNP" ], "Perken": [ "NNP" ], "AMERICAN": [ "NNP" ], "trade-ad": [ "NN" ], "footsteps": [ "NNS" ], "newly-plowed": [ "JJ" ], "high-interestrate": [ "JJ" ], "champs": [ "NNS" ], "once-faltering": [ "JJ" ], "Bobbsey": [ "NNP" ], "AMNESTY": [ "NN" ], "synonymous": [ "JJ" ], "doling": [ "VBG" ], "disembark": [ "VBP" ], "electronic": [ "JJ" ], "home-furnishing": [ "NN" ], "Suchocki": [ "NNP" ], "historiography": [ "NN" ], "Portia": [ "NNP" ], "pardonable": [ "JJ" ], "self-regulation": [ "NN" ], "explosives": [ "NNS" ], "vagina": [ "NN" ], "approximately": [ "RB", "JJ" ], "Exchange-sponsored": [ "JJ" ], "fumble": [ "NN" ], "john": [ "NN" ], "Kenzo": [ "NNP" ], "chanted": [ "VBD", "VBN" ], "Markham": [ "NNP" ], "Dodington": [ "NNP" ], "wastes": [ "NNS", "VBZ" ], "Mankiewicz": [ "NNP" ], "hard-currency": [ "NN", "JJ" ], "fluently": [ "RB" ], "wasted": [ "VBN", "VBD", "JJ" ], "Rosenstein": [ "NNP" ], "Backup": [ "JJ" ], "chantey": [ "NN" ], "Masahiko": [ "NNP" ], "policymaking": [ "JJ" ], "ColoradoUte": [ "NNP" ], "askance": [ "RB" ], "CENTRUST": [ "NNP" ], "enhancement": [ "NN" ], "Arteries": [ "NN", "NNS" ], "Un-American": [ "NNP" ], "temporize": [ "VB" ], "portraits": [ "NNS" ], "Cray": [ "NNP" ], "Crab": [ "NNP" ], "instant-camera": [ "NN" ], "Maestro": [ "NNP", "NN" ], "Mazowiecki": [ "NNP" ], "Oshkosh": [ "NNP" ], "Kadonada": [ "NNP" ], "Eurocrats": [ "NNS", "NNP" ], "fraternized": [ "VBD" ], "silversmith": [ "NN" ], "Victorians": [ "NNS", "NNPS" ], "social-role": [ "NN" ], "off-shore": [ "JJ" ], "Gallery": [ "NNP", "NN" ], "Flashdance": [ "NNP", "NN" ], "maquiladoras": [ "NNS", "FW" ], "culminated": [ "VBD", "VBN" ], "nobody": [ "NN" ], "disembarking": [ "VBG" ], "unsurmountable": [ "JJ" ], "Artist": [ "NNP", "NN" ], "germane": [ "JJ" ], "indemnification": [ "NN" ], "Lucy": [ "NNP" ], "assesses": [ "VBZ" ], "Luce": [ "NNP" ], "Columnist": [ "NNP" ], "culminates": [ "VBZ" ], "scripts": [ "NNS" ], "assessed": [ "VBN", "VBD" ], "Luci": [ "NNP" ], "grave": [ "JJ", "NN" ], "Luck": [ "NNP", "NN" ], "topple": [ "VB" ], "conjures": [ "VBZ" ], "ubiquitousness": [ "NN" ], "Arshinkoff": [ "NNP" ], "heartstring-plucking": [ "JJ" ], "Elanco": [ "NNP" ], "non-gasoline": [ "JJ" ], "PAP": [ "NNP" ], "Ridge": [ "NNP" ], "PAY": [ "NN", "VB" ], "Ripples": [ "NNS" ], "PAC": [ "NNP", "NN" ], "disturbs": [ "VBZ" ], "Katsuya": [ "NNP" ], "papillary": [ "JJ" ], "spuds": [ "NNS" ], "intergovernmental": [ "JJ" ], "PAN": [ "NNP" ], "letterman": [ "NN" ], "Santiago": [ "NNP" ], "geyser": [ "NN" ], "ellipsoid": [ "NN" ], "panned": [ "VBN", "VBD" ], "Stravinsky": [ "NNP" ], "throttling": [ "VBG" ], "beer-distribution": [ "NN" ], "gutsy": [ "JJ" ], "Englishmen": [ "NNS", "NNP" ], "marketings": [ "NNS" ], "WHIRLPOOL": [ "NN" ], "hairshirt": [ "NN" ], "rectangle": [ "NN" ], "cappuccino": [ "NN" ], "Ostrander": [ "NNP" ], "Ranney": [ "NNP" ], "rotated": [ "VBN", "VBD" ], "degradation": [ "NN" ], "Herzlinger": [ "NNP" ], "Board-listed": [ "JJ" ], "Gauchos": [ "NNS" ], "vividly": [ "RB" ], "Loud": [ "JJ", "NNP" ], "Ageny": [ "NNP" ], "stalwarts": [ "NNS" ], "tartly": [ "RB" ], "overrule": [ "VB" ], "Zennist": [ "NN" ], "Observing": [ "VBG" ], "Marckesano": [ "NNP" ], "Agent": [ "NNP" ], "LaSalle": [ "NNP" ], "Maurits": [ "NNP" ], "triol": [ "NN" ], "scrubbed": [ "VBN", "VBD" ], "secretary": [ "NN" ], "turmoil": [ "NN" ], "dustbin": [ "NN" ], "Gorbachev": [ "NNP" ], "zookeeper": [ "NN" ], "Atwells": [ "NNP" ], "gladness": [ "NN" ], "electrostatic": [ "JJ" ], "rampancy": [ "NN" ], "Lascar": [ "NNP" ], "optimum": [ "JJ", "NN" ], "Malawi": [ "NNP" ], "techniques": [ "NNS" ], "diffidence": [ "NN" ], "BVI-based": [ "JJ" ], "intermediate-term": [ "JJ" ], "TILT": [ "NN" ], "away": [ "RB", "RB|RP", "RP" ], "Bricker": [ "NNP" ], "Repeated": [ "VBN", "JJ" ], "bracing": [ "VBG", "NN" ], "arcane": [ "JJ" ], "increase-results": [ "NNS" ], "Decide": [ "VB" ], "Schweizerische": [ "NNP" ], "Philosophic": [ "JJ" ], "superstores": [ "NNS" ], "shields": [ "NNS" ], "transducer": [ "NN" ], "disavowed": [ "VBD" ], "de-iodinase": [ "NN" ], "Pfiefer": [ "NNP" ], "Rede": [ "NNP" ], "Shaped": [ "JJ" ], "Sulamite": [ "NN" ], "Shapes": [ "NNS" ], "travellers": [ "NNS" ], "Slutsky": [ "NNP" ], "terrazzo": [ "NN" ], "Cupertino": [ "NNP" ], "climate": [ "NN" ], "abstracts": [ "NNS" ], "Offer": [ "VB", "VBP", "NN" ], "red-blooded": [ "JJ" ], "astringency": [ "NN" ], "fermentation": [ "JJ", "NN" ], "MOB": [ "NNP" ], "Abie": [ "NNP" ], "disappears": [ "VBZ" ], "publicity-seeking": [ "JJ" ], "McCammon": [ "NNP" ], "Odell": [ "NNP" ], "Drive-in": [ "NNP" ], "whistles": [ "NNS" ], "unchangedat": [ "JJ" ], "Katangan": [ "JJ" ], "mutations": [ "NNS" ], "nonconformist": [ "NN" ], "TransmancheLink": [ "NNP" ], "i.d": [ "NN" ], "Ireland": [ "NNP" ], "Universe": [ "NNP", "NN" ], "telecommunications": [ "NNS", "JJ", "NN", "NNS|NN" ], "alia": [ "FW" ], "Kerry": [ "NNP" ], "noes": [ "NNS" ], "German-built": [ "JJ" ], "Heinzes": [ "NNPS" ], "Dedication": [ "NN", "NNP" ], "Surely": [ "RB" ], "oleanders": [ "NNS" ], "Schweppes": [ "NNP" ], "Raphaels": [ "NNS" ], "lockup": [ "NN" ], "innoculated": [ "VBN" ], "superpowers": [ "NNS" ], "Kneale": [ "NNP" ], "attacked": [ "VBN", "VBD" ], "XRESERVE": [ "NN" ], "disaster-assistance": [ "JJ" ], "Eschewing": [ "VBG" ], "attacker": [ "NN" ], "imbroglio": [ "NN" ], "Casbah": [ "NNP" ], "collects": [ "VBZ" ], "clairvoyant": [ "JJ" ], "Broward": [ "NNP" ], "Rufus": [ "NNP" ], "gracious": [ "JJ" ], "Heinz": [ "NNP" ], "ex-presidents": [ "NNS" ], "orthorhombic": [ "JJ" ], "Lvovna": [ "NNP" ], "Hoot": [ "NNP" ], "Hook": [ "NNP" ], "over-the-air": [ "JJ" ], "Ascii": [ "NNP" ], "Saloojee": [ "NNP" ], "Hood": [ "NNP", "NN" ], "cylinder": [ "NN" ], "cons": [ "NNS" ], "cont": [ "VBN" ], "Athens": [ "NNP" ], "tissue": [ "NN" ], "Snug-Grip": [ "NNP" ], "Convention": [ "NNP", "NN" ], "cleaning-fluid": [ "NN" ], "diagnostic": [ "JJ", "NN" ], "Athena": [ "NNP" ], "canvases": [ "NNS" ], "Bacardi": [ "NNP" ], "one-room": [ "JJ" ], "policy-research": [ "NN" ], "Stop": [ "VB", "NN", "NNP" ], "adjectives": [ "NNS" ], "agreeableness": [ "NN" ], "PAYMENTS": [ "NNS" ], "family-entertainment": [ "JJ" ], "synce": [ "IN" ], "hank": [ "NN" ], "Dines": [ "NNP" ], "Cedvet": [ "NNP" ], "hang": [ "VB", "JJ", "VBP", "NN" ], "counterparts": [ "NNS" ], "Cadesi": [ "NNP" ], "liberties": [ "NNS" ], "Machiavelli": [ "NNP" ], "Salvation": [ "NNP", "NN" ], "Cirrus": [ "NNP" ], "Lepercq": [ "NNP" ], "Broiled": [ "VBN" ], "Bricklayers": [ "NNPS" ], "Subcommittee": [ "NNP", "NN" ], "voice-mail": [ "NN" ], "musical": [ "JJ", "NN" ], "pronouncements": [ "NNS" ], "ultra-liberal": [ "JJ" ], "four-member": [ "JJ" ], "traditions": [ "NNS" ], "Konopnicki": [ "NNP" ], "Cambodia": [ "NNP" ], "Enquirer": [ "NNP" ], "Ballistic": [ "NNP" ], "Negmegan": [ "NNP" ], "Albacore": [ "NNP" ], "Koito": [ "NNP" ], "electronically": [ "RB" ], "single-lane": [ "JJ" ], "Paata": [ "NNP" ], "tramples": [ "VBZ" ], "Taxing": [ "VBG" ], "Utilization": [ "NN" ], "shout": [ "VB", "VBP", "NN" ], "cognac": [ "NN" ], "joss": [ "NN" ], "righteous": [ "JJ" ], "Odd-lot": [ "JJ" ], "insensitive": [ "JJ" ], "Sevin": [ "NN" ], "Restaurant": [ "NNP", "NN" ], "pizzicato": [ "NN" ], "unmolested": [ "JJ" ], "unfounded": [ "JJ" ], "cantilevers": [ "NNS" ], "catastrophic-health-care": [ "NN" ], "Fresno": [ "NNP", "NN" ], "cooler": [ "JJR", "NN" ], "Certain": [ "JJ", "NNP" ], "immunosuppressive": [ "JJ" ], "homing": [ "JJ", "VBG" ], "computer-chip": [ "NN", "JJ" ], "Clerfayt": [ "NNP" ], "swingin": [ "NN", "VBG" ], "songful": [ "JJ" ], "Pinick": [ "NNP" ], "flatter": [ "VB" ], "Inez": [ "NNP" ], "born": [ "VBN" ], "couture": [ "FW" ], "hassle": [ "NN", "VB" ], "flatten": [ "VB" ], "pugnacious": [ "JJ" ], "spinster": [ "NN" ], "bore": [ "VBD", "VBP", "JJ", "NN", "VB" ], "confusing": [ "JJ", "VBG" ], "congratulate": [ "VBP", "VB" ], "matriculate": [ "VB" ], "Booby": [ "JJ" ], "deep-space": [ "JJ" ], "house-painting": [ "JJ" ], "Cullinet": [ "NNP" ], "Ohio-based": [ "JJ" ], "Karacan": [ "NNP" ], "asking": [ "VBG", "JJ", "NN" ], "Yancy-6": [ "NN" ], "melange": [ "NN" ], "adorable": [ "JJ" ], "participation": [ "NN" ], "Gray": [ "NNP" ], "field-crop-seeds": [ "JJ" ], "Meetings": [ "NNS" ], "peel": [ "VB" ], "earlier-than-expected": [ "JJ" ], "Medicale": [ "NNP" ], "Gras": [ "NNP" ], "Neal": [ "NNP" ], "peed": [ "VBN" ], "procure": [ "VB" ], "Mementoes": [ "NNS" ], "Near": [ "IN", "JJ", "NNP" ], "Neas": [ "NNP" ], "Mescalero": [ "NNP" ], "Gram": [ "JJ", "NNP" ], "Asserts": [ "VBZ" ], "substitution": [ "NN" ], "peer": [ "NN", "VBP", "JJR", "VB" ], "Grab": [ "VB", "NN" ], "Grad": [ "NNP" ], "Graf": [ "NNP" ], "Junkholders": [ "NNS" ], "secretively": [ "RB" ], "breaded": [ "VBN" ], "shellfire": [ "NN" ], "zooming": [ "VBG" ], "shared": [ "VBN", "JJ", "VBD" ], "master-race": [ "NN" ], "vats": [ "NNS" ], "crouch": [ "NN", "VB" ], "mailroom": [ "NN", "JJ" ], "Abdullah": [ "NNP" ], "profession": [ "NN" ], "Caja": [ "NNP" ], "Enemy": [ "NN", "NNP" ], "versions": [ "NNS" ], "Negroid": [ "JJ" ], "stumble": [ "VB", "VBP", "NN" ], "Pendergast": [ "NNP" ], "familiarize": [ "VB" ], "deception": [ "NN" ], "connote": [ "VB", "VBP" ], "Managerial": [ "JJ" ], "conservation": [ "NN" ], "Matanky": [ "NNP" ], "wrongdoing": [ "NN" ], "threshhold": [ "NN" ], "malformations": [ "NNS" ], "Schlang": [ "NNP" ], "Money-making": [ "JJ" ], "mumbo-jumbo": [ "NN" ], "needled": [ "VBD" ], "diligence": [ "NN" ], "Halda": [ "NNP" ], "ceded": [ "VBD", "VBN" ], "disembarked": [ "VBD" ], "observances": [ "NNS" ], "needles": [ "NNS" ], "Romanesque": [ "JJ" ], "Greville": [ "NNP" ], "Distinguished": [ "NNP" ], "Catholic-Jewish": [ "JJ" ], "bottom-living": [ "JJ" ], "Pritikin": [ "NNP" ], "maximum": [ "JJ", "NN" ], "apostles": [ "NNS" ], "hangar": [ "NN" ], "authorization": [ "NN" ], "coverings": [ "NNS" ], "faking": [ "VBG" ], "all-Copland": [ "JJ" ], "prayed": [ "VBD", "VBN" ], "hotlines": [ "NNS" ], "guesses": [ "NNS", "VBZ" ], "NUMBER": [ "NN" ], "Manners": [ "NNP", "NNS" ], "boutique-lined": [ "JJ" ], "Cabot": [ "NNP" ], "guessed": [ "VBD", "VBN" ], "expertise": [ "NN" ], "prayer": [ "NN" ], "Hillsboro": [ "NNP" ], "commences": [ "VBZ" ], "Stuecker": [ "NNP" ], "pressure...": [ ":" ], "Kabalevsky": [ "NNP" ], "debtholder": [ "NN" ], "Namely": [ "RB" ], "senatorial": [ "JJ" ], "Falls": [ "NNP", "VBZ", "NNPS" ], "Eighty-Four": [ "NNP" ], "hoarseness": [ "NN" ], "Competent": [ "JJ" ], "Falla": [ "NNP" ], "immune-system": [ "NN" ], "enthuses": [ "VBZ" ], "mulling": [ "VBG", "NN" ], "labor-based": [ "JJ" ], "update": [ "VB", "VBP", "NN" ], "improvisation": [ "NN" ], "Trial": [ "NN", "NNP" ], "Stolzman": [ "NNP" ], "heptachlor": [ "NN" ], "Triad": [ "NNP" ], "Harpers": [ "NNP" ], "ex-musician": [ "NN" ], "Montgolfier": [ "NNP" ], "ground-water": [ "NN" ], "mid-to-high": [ "JJ" ], "snob-clannish": [ "JJ" ], "alertly": [ "RB" ], "Concurrence": [ "NN" ], "interval": [ "NN" ], "paper-littered": [ "JJ" ], "cohesion": [ "NN" ], "Jess": [ "NNP" ], "Bertha": [ "NNP" ], "flag-burner": [ "NN" ], "Blasphemers": [ "NNS" ], "grokked": [ "VBD", "VBN" ], "igloo": [ "NN" ], "tribunals": [ "NNS" ], "Moines-based": [ "JJ" ], "diplomacy": [ "NN" ], "long-cruise": [ "JJ" ], "million-dollar-plus": [ "JJ" ], "supplement": [ "NN", "VBP", "VB" ], "synapses": [ "NNS" ], "Bernz-O-Matic": [ "NN" ], "p.m.": [ "NN", "RB" ], "A330": [ "NN" ], "Non-money": [ "JJ" ], "layers": [ "NNS" ], "contributing": [ "VBG", "JJ" ], "Burl": [ "NNP" ], "visualizes": [ "VBZ" ], "Buri": [ "NNP" ], "Auberge": [ "NNP" ], "Burk": [ "NNP" ], "Burt": [ "NNP", "NN" ], "dissatisfied": [ "JJ", "VBN" ], "Burr": [ "NNP" ], "Bury": [ "NNP", "VB" ], "So-called": [ "JJ", "NNP" ], "Princes": [ "NNPS", "NNS" ], "Bekaa": [ "NNP" ], "Elaine": [ "NNP" ], "Artistic": [ "JJ" ], "airing": [ "VBG", "NN" ], "Cyrus": [ "NNP" ], "Christrian": [ "NNP" ], "unformed": [ "JJ" ], "visualized": [ "VBD", "VBN" ], "Mencius": [ "NNP" ], "flammable": [ "JJ" ], "Bumbry": [ "NNP" ], "Mateo": [ "NNP" ], "Episcopal": [ "NNP", "JJ" ], "Mater": [ "NNP" ], "Onleh": [ "RB" ], "evades": [ "VBZ" ], "biscotti": [ "NNS" ], "Kelman": [ "NNP" ], "plutocrats": [ "NNS" ], "verifiable": [ "JJ" ], "Feinman": [ "NNP" ], "Mevacor": [ "NNP" ], "agitate": [ "VBP" ], "cost": [ "NN", "VBD", "VBN", "VBP", "VB" ], "Maxhuette": [ "NNP" ], "Instant": [ "JJ", "NNP" ], "Height": [ "NN" ], "Pretax": [ "JJ", "NNP", "NN" ], "Salish": [ "NNP" ], "Lucite": [ "NNP" ], "OK.": [ "UH" ], "typesetters": [ "NNS" ], "thicker": [ "JJR", "RB", "RBR" ], "fastigheter": [ "FW" ], "ecumenist": [ "NN" ], "non-earning": [ "JJ" ], "Sportdom": [ "NN" ], "Representing": [ "VBG" ], "cynically": [ "RB" ], "Five-Year": [ "NNP" ], "housebroken": [ "JJ" ], "foreign-debt": [ "NN", "JJ" ], "socioeconomically": [ "RB" ], "Power-Seek": [ "NN" ], "CUNA": [ "NNP" ], "Near-Term": [ "RB" ], "lolling": [ "VBG" ], "Corroborating": [ "VBG" ], "Breakey": [ "NNP" ], "crash-wary": [ "JJ" ], "lustrous": [ "JJ" ], "Distribution": [ "NNP", "NN" ], "sieve": [ "NN" ], "Corvette": [ "NNP" ], "Israeli-occupied": [ "JJ" ], "military-medical": [ "JJ" ], "bangs": [ "NNS", "VBZ" ], "Quakers": [ "NNS", "NNPS" ], "OKI": [ "NNP" ], "washbowl": [ "NN" ], "York-SF": [ "NNP" ], "pillow": [ "NN" ], "ineffectiveness": [ "NN" ], "Dowager": [ "NNP" ], "perhaps-decisive": [ "JJ" ], "CALFED": [ "NNP" ], "Bizerte": [ "NNP" ], "Atlanta-Chicago": [ "NNP" ], "sextet": [ "NN" ], "losing": [ "VBG", "JJ", "NN" ], "softy": [ "NN" ], "oil-services": [ "JJ" ], "steam-generation": [ "JJ" ], "Lawmakers": [ "NNS", "NNPS" ], "most-actives": [ "JJS" ], "firearm": [ "NN" ], "Scopes": [ "NNP" ], "Customers": [ "NNS", "NNP" ], "higher-education": [ "JJ", "NN", "JJR" ], "Dies": [ "NNP", "VBZ" ], "Diet": [ "NNP" ], "Dieu": [ "FW" ], "wonderfully": [ "RB" ], "T.M.B.": [ "NNP" ], "Diem": [ "NNP" ], "symbolized": [ "VBD", "VBN" ], "Died": [ "VBD", "VBN", "VBD|VBN" ], "intently": [ "RB" ], "Amber": [ "NNP" ], "Watchers": [ "NNPS", "NNP" ], "union-sponsored": [ "JJ" ], "cluck": [ "NN" ], "Canelo": [ "NNP" ], "UFOs": [ "NNS" ], "supervote": [ "NN" ], "twenty-fifth": [ "JJ" ], "Sneaker": [ "NNP" ], "decked": [ "VBN" ], "fortified": [ "VBN", "VBD", "JJ" ], "tax-evasion": [ "NN" ], "purge": [ "NN", "VB" ], "Entrepreneur": [ "NN" ], "Awakening": [ "NNP" ], "HDTVs": [ "NNS" ], "Rondanini": [ "NNP" ], "totalled": [ "VBD", "VBN" ], "Throughout": [ "IN" ], "mild-mannered": [ "JJ" ], "Sweeneys": [ "NNPS", "NNP" ], "fracturing": [ "VBG" ], "Showa": [ "NNP" ], "Pizzo": [ "NNP" ], "word-processing": [ "NN", "NNS" ], "anteater": [ "NN" ], "MEDUSA": [ "NNP" ], "Warner-Lambert": [ "NNP" ], "occur": [ "VB", "VBP" ], "Pizza": [ "NNP" ], "Bishun": [ "NNP" ], "Brightman": [ "NNP" ], "giveaways": [ "NNS" ], "lounge": [ "NN", "VB" ], "unrealistically": [ "RB" ], "etymological": [ "JJ" ], "Burden": [ "NNP" ], "jiu-jitsu": [ "FW" ], "ROTC": [ "NNP" ], "Ensrud": [ "NNP" ], "strays": [ "NNS" ], "sweatshop": [ "NN" ], "economy": [ "NN" ], "product": [ "NN" ], "sedately": [ "RB" ], "dampened": [ "VBD", "VBN" ], "Heineken": [ "NNP" ], "artist-nature": [ "NN" ], "ornery": [ "JJ" ], "disgusted": [ "VBN", "JJ" ], "Skopbank": [ "NNP" ], "produce": [ "VB", "VBP", "NN" ], "Martin": [ "NNP" ], "Model": [ "NN", "NNP" ], "epaulets": [ "NNS" ], "pre-festival": [ "JJ" ], "cyclohexanol": [ "NN" ], "substantiation": [ "NN" ], "noses": [ "NNS" ], "wanderings": [ "NNS" ], "Isselbacher": [ "NNP" ], "portering": [ "NN" ], "corona": [ "NN" ], "nosed": [ "VBD" ], "Synar": [ "NNP" ], "half-reformed": [ "JJ" ], "Manley": [ "NNP" ], "perfection": [ "NN" ], "Sheep": [ "NNP", "NNS", "NN" ], "Sheer": [ "NNP", "JJ" ], "Industrials": [ "NNP", "NNS", "NNPS" ], "Sheet": [ "NNP" ], "nonpayment": [ "NN" ], "Biochemistry": [ "NNP" ], "freckles": [ "NNS" ], "raised": [ "VBN", "VBD", "JJ" ], "Tanin": [ "FW" ], "Re": [ "NNP", "NN" ], "Pergolesi": [ "NNP" ], "Cassell": [ "NNP" ], "Industriale": [ "NNP" ], "affirms": [ "VBZ" ], "Industriali": [ "NNP" ], "ENTERED": [ "VBD" ], "Bolivia": [ "NNP" ], "Rh": [ "NNP" ], "Sheen": [ "NNP" ], "RU": [ "NNP" ], "RV": [ "NN" ], "Enserch": [ "NNP" ], "incendiaries": [ "NNS" ], "top-10": [ "JJ" ], "DELIGHT": [ "VBP" ], "resettling": [ "VBG" ], "supernaturalism": [ "NN", "JJ" ], "RA": [ "NNP" ], "atonement": [ "NN" ], "a.k.a": [ "JJ" ], "factual": [ "JJ" ], "emigrants": [ "NNS" ], "non": [ "FW", "JJ" ], "nod": [ "NN", "VB", "VBP" ], "talk-format": [ "NN" ], "Faber": [ "NNP" ], "introduce": [ "VB", "VBP" ], "Eureka": [ "NNP" ], "unplanned": [ "JJ" ], "PL-480": [ "NN" ], "not": [ "RB" ], "R.": [ "NNP" ], "now": [ "RB", "JJ", "NN", "UH" ], "nor": [ "CC" ], "Stakes": [ "NNP", "NNS" ], "Flygplanet": [ "NNP" ], "Ensolite": [ "NN" ], "thankful": [ "JJ" ], "Geoffrie": [ "NNP" ], "concerned``": [ "``" ], "cannibalistic": [ "JJ" ], "Skim": [ "JJ" ], "fishmongers": [ "NNS" ], "Agricultural": [ "NNP", "JJ" ], "Skid": [ "NNP", "NN", "VBP" ], "unloaded": [ "VBN", "JJ", "VBD" ], "consummated": [ "VBN", "VBD" ], "Additive": [ "NN" ], "Raiff": [ "NNP" ], "Ordinance": [ "NNP" ], "Engisch": [ "NNP" ], "Legal": [ "NNP", "JJ" ], "wrap": [ "VB", "NN", "VBP" ], "polices": [ "NNS" ], "VIETNAM": [ "NNP" ], "Passed": [ "VBN" ], "Garth": [ "NNP" ], "Expected": [ "VBN", "NNP" ], "naming": [ "VBG", "NN" ], "tried": [ "VBD", "JJ", "VBN" ], "overcollection": [ "NN" ], "circumspection": [ "NN" ], "Janlori": [ "NNP" ], "rude": [ "JJ" ], "bullish": [ "JJ" ], "parceled": [ "VBN" ], "furthermore": [ "RB" ], "Vasa": [ "NNP" ], "thirst": [ "NN" ], "Ephesus": [ "NNP", "NN" ], "spaniel-like": [ "JJ" ], "Dearly": [ "RB" ], "Vass": [ "NNP" ], "moldings": [ "NNS" ], "Constants": [ "NNS" ], "philharmonic": [ "NN" ], "Arrested": [ "VBN" ], "divergence": [ "NN" ], "Yen": [ "NNP" ], "reacceleration": [ "NN" ], "gum-chewing": [ "JJ" ], "Hemant": [ "NNP" ], "Constitutions": [ "NNS" ], "Macomber": [ "NNP" ], "lunch-box": [ "NN" ], "right-to-life": [ "JJ" ], "Jeffery": [ "NNP" ], "Kroger": [ "NNP" ], "Leyva": [ "NNP" ], "ship-to-surface": [ "NN" ], "Harbour": [ "NNP" ], "invitation": [ "NN" ], "thankfulness": [ "NN" ], "Fifty-ninth": [ "NNP" ], "blind": [ "JJ", "NNS", "NN", "VB" ], "Verret": [ "NNP" ], "Suicide": [ "NN" ], "light-water": [ "JJ" ], "Sprague": [ "NNP" ], "Soto": [ "NNP" ], "evil-doing": [ "NN" ], "Simmel": [ "NNP" ], "Pandelli": [ "NNP" ], "blink": [ "VB", "NN" ], "Till": [ "IN" ], "Simmer": [ "VB" ], "Expressing": [ "VBG" ], "ring": [ "NN", "VB", "VBP" ], "six-hour": [ "JJ" ], "national-service": [ "JJ", "NN" ], "Freston": [ "NNP" ], "stock-pickers": [ "NNS" ], "Trygve": [ "NNP" ], "remotely": [ "RB" ], "Lieutenant": [ "NNP", "NN" ], "suvivors": [ "NNS" ], "gloom-and-doom": [ "JJ" ], "Response": [ "NNP", "NN" ], "authorized": [ "VBN", "VBN|JJ", "VBD", "JJ" ], "larks": [ "NNS" ], "Feuer": [ "NNP" ], "sores": [ "NNS" ], "appreciates": [ "VBZ" ], "repossess": [ "VB" ], "Refining": [ "NNP", "NN" ], "Sovietskaya": [ "NNP" ], "junkyard": [ "NN" ], "vocal\\": [ "JJ" ], "heretical": [ "JJ" ], "appreciated": [ "VBN", "VBD", "JJ" ], "titans": [ "NNS" ], "underwritten": [ "VBN", "JJ", "NN" ], "relocating": [ "VBG" ], "Creator": [ "NNP", "NN" ], "Fegersheim": [ "NNP" ], "recruit": [ "VB", "VBP", "NN" ], "Scientifique": [ "NNP" ], "reassignment": [ "NN" ], "aerials": [ "NNS" ], "vocals": [ "NNS" ], "overhang": [ "NN" ], "impinge": [ "VB", "VBP" ], "profuse": [ "JJ" ], "Saigon": [ "NNP", "NN" ], "overdosing": [ "VBG" ], "Accumaster": [ "NNP" ], "APPROVES": [ "VBZ" ], "Chantilly": [ "NNP" ], "Shanken": [ "NNP" ], "minivans.": [ "NNS" ], "Shanker": [ "NNP" ], "CALIFORNIA": [ "NNP" ], "Danville": [ "NNP" ], "Numeral": [ "NNP" ], "Faulkner": [ "NNP" ], "APPROVED": [ "VBD" ], "Commune": [ "NNP" ], "Giolito": [ "NNP" ], "lesser-developed-country": [ "JJ" ], "Delegates": [ "NNPS", "NNP", "NNS" ], "Wimsatt": [ "NNP" ], "Broun": [ "NNP" ], "snout": [ "NN" ], "equipment": [ "NN" ], "Time-Olivette": [ "NNP" ], "mendicant": [ "JJ" ], "polygynous": [ "JJ" ], "Salerno-Sonnenberg": [ "NNP" ], "Unconfirmed": [ "JJ" ], "spring-back": [ "JJ" ], "Off": [ "IN", "NNP", "RB", "RP" ], "Unlike": [ "IN" ], "attractiveness": [ "NN" ], "Nagel": [ "NNP" ], "neatly": [ "RB" ], "sports-and-entertainment": [ "JJ" ], "telephone-call": [ "NN" ], "Kauffeld": [ "NNP" ], "Reprinted": [ "VBN" ], "imposition": [ "NN" ], "customer-service": [ "JJ", "NN" ], "saintliness": [ "NN" ], "attempting": [ "VBG" ], "steady": [ "JJ", "RB" ], "unconquerable": [ "JJ" ], "Asian-owned": [ "JJ" ], "Cossack": [ "NNP" ], "Scrum": [ "NNP" ], "discoverer": [ "NN" ], "podiums": [ "NNS" ], "book-lined": [ "JJ" ], "Horse": [ "NNP", "NN" ], "discovered": [ "VBN", "JJ", "VBD" ], "Chandross": [ "NNP" ], "rate-watchers": [ "NNS" ], "Oversight": [ "NNP" ], "Sophocles": [ "NNP" ], "Dasher": [ "NNP" ], "snack": [ "NN" ], "Worse": [ "JJR", "RBR|JJR", "JJ", "JJR|RBR", "NNP", "RBR" ], "Wichterle": [ "NNP" ], "soup-to-nuts": [ "JJ" ], "ALCEE": [ "NNP" ], "staid": [ "JJ", "VBN" ], "hammock": [ "NN" ], "Worst": [ "JJS", "RBS" ], "Solidarityled": [ "NNP" ], "stain": [ "NN", "VB" ], "cash-starved": [ "JJ" ], "shrill": [ "JJ" ], "interstate": [ "JJ", "NN" ], "Luther": [ "NNP" ], "Pepsi-Cola": [ "NNP" ], "dervish-like": [ "JJ" ], "vocalic": [ "JJ" ], "Hartsfield": [ "NNP" ], "REQUIRED": [ "NNP" ], "reprints": [ "NNS", "VBZ" ], "Gottschalk": [ "NNP" ], "extremity": [ "NN" ], "Lobster": [ "NN" ], "Ba-1": [ "JJ", "NN" ], "Ba-2": [ "JJ", "NN", "NNP" ], "Hambric": [ "NNP" ], "Hall-Mills": [ "NNP" ], "color-coding": [ "VBG" ], "Benzedrine": [ "NNP" ], "actively": [ "RB" ], "charcoaled": [ "VBN" ], "recalcitrant": [ "JJ" ], "Byler": [ "NNP" ], "reproduced": [ "VBN", "VBD" ], "suspects": [ "VBZ", "NNS" ], "dervish": [ "NN" ], "ROOM": [ "NN" ], "January-June": [ "JJ" ], "glaze": [ "NN", "VB", "VBP" ], "rollicking": [ "JJ" ], "cotton-growing": [ "JJ" ], "Christiev": [ "NNP" ], "Renoir": [ "NNP", "JJ" ], "overcerebral": [ "JJ" ], "Productions": [ "NNPS", "NNP" ], "staffer": [ "NN" ], "Christies": [ "NNP" ], "import": [ "NN", "VB", "VBP" ], "all-cargo": [ "JJ" ], "therapies": [ "NNS" ], "orchestrate": [ "VB" ], "monarchy": [ "NN" ], "Wert": [ "NNP" ], "ENGRAPH": [ "NNP" ], "Hollingsworth": [ "NNP" ], "exhortations": [ "NNS" ], "App.": [ "NNP" ], "regulation-writing": [ "JJ" ], "non-white": [ "JJ" ], "Team": [ "NNP", "NN" ], "moans": [ "VBZ" ], "Konishi": [ "NNP" ], "duces": [ "FW" ], "resides": [ "VBZ" ], "resided": [ "VBD", "VBN" ], "Scripps": [ "NNP" ], "impediments": [ "NNS" ], "sulky": [ "JJ", "NN" ], "attache": [ "NN" ], "Krishnaswami": [ "NNP" ], "jeans": [ "NNS" ], "Sachs": [ "NNP" ], "sulks": [ "NNS" ], "Interested": [ "VBN", "JJ" ], "merriest": [ "JJS" ], "sassafras": [ "NN" ], "muttered": [ "VBD" ], "GenProbe": [ "NN" ], "scrimping": [ "VBG" ], "hillsides": [ "NNS" ], "Personal": [ "JJ", "NNP" ], "Doctors": [ "NNS", "NNPS" ], "partisanship": [ "NN" ], "Matsuda": [ "NNP" ], "intra-city": [ "NN" ], "Christsake": [ "NN" ], "krona": [ "NN" ], "impugn": [ "VB" ], "disclosing": [ "VBG" ], "substations": [ "NNS" ], "Purification": [ "NN", "NNP" ], "empathy": [ "NN" ], "suspected": [ "VBN", "VBD", "JJ" ], "Mangano": [ "NNP" ], "Pertamina": [ "NNP" ], "scarfing": [ "VBG" ], "Stimulating": [ "VBG" ], "myofibrillae": [ "NNS" ], "reimburseable": [ "JJ" ], "DeHaviland": [ "NNP" ], "Sportsman": [ "NNP" ], "blinkers": [ "NNS" ], "lire": [ "NNS", "FW", "NN" ], "Volzhsky": [ "NNP" ], "fume-filled": [ "JJ" ], "near-monopolies": [ "NNS" ], "implacable": [ "JJ" ], "Garin": [ "NNP" ], "bid-to-cover": [ "JJ", "NN" ], "Cumberland": [ "NNP" ], "contrarians": [ "NNS" ], "sawdust": [ "NN", "JJ" ], "skittishness": [ "NN" ], "Dietzer": [ "NNP" ], "Hirano": [ "NNP" ], "stewardess": [ "NN" ], "raptures": [ "NNS" ], "May\\": [ "NNP" ], "beaver": [ "NN" ], "Mailer": [ "NNP" ], "eight-page-a-minute": [ "JJ" ], "frozen-food": [ "NN" ], "ONE-DAY": [ "JJ" ], "O.E.C.D.": [ "NNP" ], "pillowcases": [ "NNS" ], "quagmire": [ "NN" ], "Illick": [ "NNP" ], "inquiry": [ "NN" ], "overambition": [ "NN" ], "week-to-week": [ "JJ" ], "aground": [ "RB" ], "Funari": [ "NNP" ], "foal": [ "NN" ], "foam": [ "NN", "VB", "VBP" ], "boom-and-bust": [ "JJ" ], "Wragge": [ "NNP" ], "Businessmen": [ "NNS" ], "CBS-Turner": [ "NNP" ], "Launched": [ "VBN" ], "Budweiser": [ "NNP" ], "in-group": [ "JJ", "NN" ], "space-defense": [ "JJ" ], "DeSoto": [ "NNP", "NN" ], "congressmen": [ "NNS" ], "alleviate": [ "VB", "VBP" ], "uninjured": [ "JJ" ], "music-hall": [ "JJ", "NN" ], "SDI": [ "NNP" ], "co-conspirators": [ "NNS" ], "taxi": [ "NN" ], "Swaine": [ "NNP" ], "livestock": [ "NN" ], "typhus": [ "NN" ], "glitterati": [ "NNS" ], "work-station": [ "NN" ], "SwedBank": [ "NNP" ], "self-reform": [ "NN" ], "Framatome": [ "NNP" ], "Might": [ "MD" ], "cliffhanging": [ "VBG" ], "renewed": [ "VBN", "VBD", "JJ" ], "Solano": [ "NNP" ], "Showing": [ "VBG" ], "Spot": [ "NN" ], "verse": [ "NN" ], "film-festival": [ "NN" ], "Multiplication": [ "NN" ], "loan-forgiveness": [ "NN" ], "overruling": [ "VBG" ], "swim": [ "VB", "VBP", "NN" ], "psi": [ "NNS" ], "laundering": [ "NN", "VBG" ], "stunk": [ "VBD" ], "onscreen": [ "RB" ], "Herter": [ "NNP" ], "Starts": [ "VBZ", "NNS" ], "gonne": [ "VBN" ], "Oersted": [ "NNP" ], "gonna": [ "VBG" ], "DEAE-cellulose-treated": [ "NN" ], "ramshackle": [ "JJ" ], "amp": [ "NN" ], "Hatred": [ "NN" ], "Mutchin": [ "NNP" ], "Soybeans": [ "NNS", "NNPS" ], "rat-holes": [ "NNS" ], "Near-term": [ "JJ" ], "rose-gold": [ "NN" ], "Executions": [ "NNS" ], "feckless": [ "JJ" ], "BioSciences": [ "NNP", "NNPS" ], "blackberry": [ "NN" ], "Interruptions": [ "NNS" ], "transpiration": [ "NN" ], "apartments": [ "NNS" ], "envoys": [ "NNS" ], "semiannual": [ "JJ" ], "nucleic": [ "JJ" ], "Lederberg": [ "NNP" ], "hemorrhage": [ "NN" ], "resource-use": [ "NN" ], "iron-casting": [ "JJ" ], "unlocked": [ "VBD", "VBN", "JJ" ], "Earlier": [ "RBR", "JJR", "RB" ], "Right-wing": [ "JJ" ], "honorarium": [ "NN" ], "Grippo": [ "NNP" ], "passive-loss": [ "JJ" ], "assembly": [ "NN" ], "indestructible": [ "JJ" ], "Bustard": [ "NN" ], "innocence": [ "NN" ], "assemble": [ "VB", "VBP" ], "sadder": [ "JJR" ], "iron-rod": [ "JJ" ], "creaking": [ "VBG", "NN" ], "casuals": [ "NNS" ], "closedowns": [ "NNS" ], "Lancret": [ "NNP" ], "ideology": [ "NN" ], "conceals": [ "VBZ" ], "antibody": [ "NN" ], "LTCB": [ "NNP" ], "freeing": [ "VBG", "NN" ], "outlook": [ "NN" ], "Kamemura": [ "NNP" ], "protease": [ "NN" ], "Rondo": [ "NN" ], "stare": [ "VB", "VBP", "FW", "NN" ], "Khustndinov": [ "NNP" ], "shags": [ "VBZ" ], "Horwitz": [ "NNP" ], "stark": [ "JJ", "RB" ], "start": [ "VB", "VBP", "NN", "RP" ], "public-school": [ "JJ", "NN" ], "stars": [ "NNS", "VBZ" ], "politeness": [ "NN" ], "Zaffuto": [ "NNP" ], "allergic": [ "JJ" ], "F-14s": [ "NNS" ], "smuggling": [ "VBG", "NN" ], "co-worker": [ "NN" ], "delayed": [ "VBN", "JJ", "VBD" ], "Nineteenth-century": [ "JJ" ], "intermissions": [ "NNS" ], "manipulative": [ "JJ" ], "know-how": [ "NN" ], "two-thirds": [ "NNS", "JJ", "NN", "RB" ], "machinelike": [ "JJ" ], "Dees": [ "NNP" ], "near-rich": [ "NN" ], "Original": [ "NNP", "JJ" ], "traveled": [ "VBD", "JJ", "VBN" ], "fraud": [ "NN" ], "lock-outs": [ "NNS" ], "Xidex": [ "NNP" ], "big-league": [ "JJ" ], "Secilia": [ "NNP" ], "Lightweight": [ "JJ" ], "world-shattering": [ "JJ" ], "intents": [ "NNS" ], "Judah": [ "NNP" ], "converage": [ "NN" ], "coral-colored": [ "JJ" ], "air-cargo": [ "NN" ], "Granite": [ "NNP" ], "Ferdinand": [ "NNP" ], "Judas": [ "NNP" ], "evens": [ "VBZ" ], "Nos.": [ "NNS" ], "Cutter": [ "NNP" ], "Lante": [ "NNP" ], "Annex": [ "NNP" ], "Chun": [ "NNP" ], "appraising": [ "VBG" ], "trample": [ "VB" ], "terminating": [ "VBG" ], "general-staff": [ "JJ", "NN" ], "transfusion": [ "NN" ], "Swedish-Swiss": [ "JJ", "NNP" ], "Madeira": [ "NNP" ], "Lantz": [ "NNP" ], "forcing": [ "VBG" ], "ineligible": [ "JJ" ], "Entre": [ "NNP" ], "Minsk": [ "NNP" ], "registry": [ "NN" ], "Entry": [ "NN" ], "Nations": [ "NNPS", "VBP", "NNP|NPS", "NNP", "NNS" ], "re-thought": [ "JJ" ], "dabble": [ "VB" ], "Amish": [ "NNP", "JJ" ], "Caliphobia": [ "NNP" ], "roasters": [ "NNS" ], "plastic-bodied": [ "JJ" ], "moonlight": [ "NN", "VB" ], "stockpile": [ "NN", "VB" ], "York-Moscow": [ "NNP" ], "prying": [ "JJ", "VBG" ], "Letting": [ "VBG" ], "Nerien": [ "NNP" ], "semantic": [ "JJ" ], "Compression": [ "NN", "NNP" ], "W.L.": [ "NNP" ], "month": [ "NN" ], "rock-and-roll": [ "NN" ], "bookers": [ "NNS" ], "Renaissance": [ "NNP", "NN" ], "ultra-high-speed": [ "JJ" ], "pledged": [ "VBD", "VBN" ], "first-run": [ "JJ" ], "uncollaborated": [ "JJ" ], "insulate": [ "VB", "VBP" ], "video-distribution": [ "NN" ], "DC-8-62": [ "NN" ], "fountain": [ "NN" ], "pledges": [ "NNS", "VBZ" ], "transience": [ "NN" ], "Hillyard": [ "NNP" ], "resounding": [ "JJ" ], "Steidtmann": [ "NNP" ], "Crabtree": [ "NNP" ], "Buffets": [ "NNS" ], "horror": [ "NN" ], "Revolt": [ "NN" ], "DeBakey": [ "NNP" ], "Newshour": [ "NN" ], "STOPPED": [ "VBN" ], "information-systems": [ "NNS", "JJ" ], "begot": [ "VBD" ], "antagonised": [ "VBN" ], "just-ended": [ "JJ" ], "ceaseless": [ "JJ" ], "Canary": [ "NNP" ], "fusillade": [ "NN" ], "Canard": [ "NNP" ], "throbbing": [ "VBG", "NN" ], "Lipowa": [ "NNP" ], "locomotive": [ "NN" ], "Krapels": [ "NNP" ], "Boatyards": [ "NNS" ], "gut-wrenching": [ "JJ" ], "dual-ladder": [ "JJ" ], "Simonson": [ "NNP" ], "movie-goer": [ "NN" ], "Nuns": [ "NNPS" ], "Readerman": [ "NNP" ], "enjoin": [ "VB" ], "befriends": [ "VBZ" ], "foreign-stock": [ "JJ" ], "envisions": [ "VBZ" ], "chuckle": [ "NN", "VB", "VBP" ], "ails": [ "NNS", "VBZ" ], "Kroll": [ "NNP" ], "investing": [ "VBG", "VBG|JJ", "VBG|NN", "JJ", "NN" ], "sun-bleached": [ "JJ" ], "Paribas": [ "NNP", "NNPS", "NNS" ], "microbiology": [ "NN" ], "Affirmatively": [ "RB" ], "learned": [ "VBD", "VBN", "JJ", "NN" ], "Bartholf": [ "NNP" ], "Craving": [ "VBG" ], "Bioline": [ "NNP" ], "ferocious": [ "JJ" ], "Ifo": [ "NNP" ], "gridlocked": [ "VBN", "JJ" ], "tracks": [ "VBZ", "NNS" ], "fourth-generation": [ "JJ" ], "Shortage": [ "NN" ], "Nahas": [ "NNP" ], "eventful": [ "JJ" ], "carpetbaggers": [ "NNS" ], "arena": [ "NN" ], "conviction": [ "NN" ], "outgrowth": [ "NN" ], "losses": [ "NNS" ], "dykes": [ "NNS" ], "Interprovincial": [ "NNP" ], "spy-chasing": [ "NN" ], "TransNet": [ "NNP" ], "Gurtz": [ "NNP" ], "sealing": [ "NN", "VBG" ], "Intermarriage": [ "NN" ], "Joan": [ "NNP" ], "Joao": [ "NNP" ], "inflected": [ "VBN", "JJ" ], "Castaneda": [ "NNP" ], "SP-44002": [ "LS" ], "requiring": [ "VBG" ], "SP-44001": [ "LS" ], "SP-44006": [ "LS" ], "Emmies": [ "NNPS" ], "mass-transit": [ "NN" ], "SP-44005": [ "LS" ], "revenue-losing": [ "JJ" ], "tender-offer": [ "JJ" ], "Jingsheng": [ "NNP" ], "Fines": [ "NNP" ], "Prothro": [ "NNP" ], "implanted": [ "VBN", "VBD" ], "conventional": [ "JJ" ], "heartened": [ "VBN" ], "revelation": [ "NN" ], "Chenoweth": [ "NNP" ], "Entenmann": [ "NNP" ], "Warden": [ "NNP" ], "Houk": [ "NNP" ], "Neo-Classicism": [ "NNP" ], "lineups": [ "NNS" ], "conformational": [ "JJ" ], "Limits": [ "NNPS", "NNP" ], "fusses": [ "VBZ" ], "grimly": [ "RB" ], "outpatient": [ "NN", "JJ" ], "two-time-losers": [ "JJ" ], "Perritt": [ "NNP" ], "Three-month": [ "JJ" ], "Technical-chart": [ "JJ" ], "DiLoreto": [ "NNP" ], "firebombing": [ "NN" ], "grill": [ "NN", "VB", "VBP" ], "Afterwards": [ "RB" ], "drearier": [ "RBR" ], "high-net-worth": [ "JJ" ], "union-bidder": [ "NN" ], "Hardwicke-Etter": [ "NNP" ], "Martian": [ "NNP", "JJ" ], "twenty-year": [ "JJ" ], "defense-industry": [ "JJ", "NN" ], "brain-wave": [ "JJ" ], "Publick": [ "NNP" ], "Tierney": [ "NNP" ], "Caspar": [ "NNP" ], "Coolidge": [ "NNP" ], "rejuvenate": [ "VB" ], "Pileggi": [ "NNP" ], "publicist": [ "NN" ], "well-behaved": [ "JJ" ], "phosphor": [ "NN" ], "spousal-notification": [ "NN" ], "phrase": [ "NN" ], "spectator-type": [ "JJ" ], "Opening": [ "VBG", "NN" ], "utilize": [ "VB", "VBP" ], "unlucky": [ "JJ" ], "shrouds": [ "VBZ" ], "Pre-College": [ "NNP" ], "Bevo": [ "NNP" ], "Gabelman": [ "NNP" ], "Thielsch": [ "NNP" ], "diffuses": [ "VBZ" ], "Darkling": [ "NNP" ], "Television": [ "NNP", "NN" ], "Reciprocal": [ "NNP" ], "Boehmer": [ "NNP" ], "maladjustments": [ "NNS" ], "CoreStates": [ "NNP", "NNPS" ], "Emirates": [ "NNPS", "NNP" ], "non-romantic": [ "JJ" ], "Viacom": [ "NNP" ], "horizontal": [ "JJ", "NN" ], "misnamed": [ "VBN" ], "Ameron": [ "NNP" ], "MBI": [ "NNP" ], "wind-swept": [ "JJ" ], "Flies": [ "NNS" ], "Flier": [ "NN" ], "Mexico": [ "NNP" ], "roundtrip": [ "NN" ], "UDC": [ "NNP" ], "Poster": [ "NNP" ], "Myrtle": [ "NNP" ], "McCaskill": [ "NNP" ], "granulocyte-macrophage": [ "NN" ], "miso": [ "NN" ], "remnants": [ "NNS" ], "Serenissimus": [ "NNP" ], "Midler": [ "NNP" ], "thermal": [ "JJ" ], "Weedon": [ "NNP" ], "gray-haired": [ "JJ" ], "Petrochemical": [ "NNP" ], "wishful": [ "JJ" ], "Platonica": [ "FW" ], "Phelan": [ "NNP", "NN" ], "territorial": [ "JJ", "NN" ], "autoclave": [ "NN" ], "Hypothesizing": [ "VBG" ], "systems": [ "NNS" ], "founders": [ "NNS" ], "Chong": [ "NNP" ], "Inada": [ "NNP" ], "food-safety": [ "JJ", "NN" ], "Classicist": [ "NN" ], "Fearful": [ "JJ" ], "tumbles": [ "VBZ", "NNS" ], "electives": [ "NNS" ], "Siberian": [ "JJ" ], "engine-casting": [ "NN" ], "Doron": [ "NNP" ], "permissible": [ "JJ", "NN" ], "Makato": [ "NNP" ], "transcendence": [ "NN" ], "Liar": [ "NN" ], "re-adopt": [ "NN" ], "pool-table": [ "NN" ], "watchdog": [ "NN", "JJ" ], "predators": [ "NNS" ], "purpling": [ "VBG" ], "lifestyles": [ "NNS" ], "predatory": [ "JJ" ], "barrels": [ "NNS" ], "ATTORNEY": [ "NNP" ], "Afghans": [ "NNPS" ], "Yuk-sui": [ "NNP" ], "Stockhausen": [ "NNP" ], "jaws": [ "NNS" ], "exasperated": [ "JJ" ], "Lapps": [ "NNPS" ], "ALLWASTE": [ "NNP" ], "punitive": [ "JJ" ], "deride": [ "VBP" ], "Guillaume": [ "NNP" ], "Feeder": [ "NN" ], "absurdity": [ "NN" ], "nonvirulent": [ "JJ" ], "TESTS": [ "NNS" ], "Farina": [ "NNP" ], "wedlock": [ "NN" ], "splattered": [ "VBN" ], "Nikons": [ "NNPS" ], "testify": [ "VB", "VBP" ], "Ainslie": [ "NNP" ], "coincidences": [ "NNS" ], "safety": [ "NN", "VB" ], "inactivated": [ "VBD", "VBN" ], "Prudential-Bache": [ "NNP" ], "mittens": [ "NNS" ], "counterrevolutionary": [ "JJ", "NN" ], "None": [ "NN", "NNP" ], "spelling-only": [ "JJ" ], "housed": [ "VBN", "VBD" ], "favored": [ "VBN", "VBD", "JJ" ], "PROPOSALS": [ "NNS" ], "preventatives": [ "NNS" ], "houses": [ "NNS", "VBZ" ], "unsightly": [ "JJ" ], "brightest": [ "JJS" ], "overshadowing": [ "VBG" ], "turnout": [ "NN" ], "speculation": [ "NN" ], "chemical-industry": [ "NN" ], "unresolved": [ "JJ" ], "BL": [ "NNP" ], "Fill-Or-Kill": [ "NNP" ], "millenarians": [ "NNS" ], "racial-preference": [ "NN", "JJ" ], "indivisibility": [ "NN" ], "ACTING": [ "JJ" ], "uncertainly": [ "RB" ], "Uniroyal-Goodrich": [ "NNP" ], "apocalypse": [ "NN" ], "pro-Socialist": [ "JJ" ], "Handel": [ "NNP" ], "decapitalize": [ "VBP" ], "oncologist": [ "NN" ], "E.T.": [ "NNP" ], "Mennonites": [ "NNPS" ], "incubated": [ "VBN" ], "warty": [ "JJ" ], "Bharat": [ "NNP" ], "warts": [ "NNS" ], "horse": [ "NN" ], "Autos": [ "NNS" ], "Brailsford": [ "NNP" ], "Youngsters": [ "NNS" ], "Olympus": [ "NN" ], "Ponoluu": [ "NNP" ], "Zombie": [ "NNP" ], "station": [ "NN" ], "seafaring": [ "JJ" ], "dual-trading": [ "NN" ], "Cynewulf": [ "NNP" ], "Emancipation": [ "NNP" ], "South-Asian": [ "NNP" ], "APPB": [ "NNP" ], "million-common": [ "NN" ], "quivered": [ "VBD" ], "Molotov": [ "NNP" ], "Fries": [ "NNP" ], "Purloined": [ "NNP" ], "accesory": [ "NN" ], "consonant": [ "JJ", "NN" ], "Fried": [ "NNP" ], "tapestries": [ "NNS" ], "classifiers": [ "NNS" ], "Buffetts": [ "NNPS", "NNP" ], "gret": [ "JJ" ], "grew": [ "VBD", "VBN" ], "self-awareness": [ "NN" ], "Valleyfair": [ "NNP" ], "Korn\\/Ferry": [ "NNP" ], "grey": [ "JJ", "NN" ], "non-newspaper": [ "JJ" ], "Krystallographie": [ "NNP" ], "Cecil": [ "NNP" ], "Cecin": [ "NNP" ], "contraception": [ "NN" ], "Bowker": [ "NNP" ], "Poulenc": [ "NNP" ], "LINCOLN": [ "NNP" ], "Peng": [ "NNP" ], "perestroika": [ "FW", "NN" ], "Fortney": [ "NNP" ], "Penn": [ "NNP" ], "blissful": [ "JJ" ], "null": [ "JJ", "NN" ], "Penh": [ "NNP" ], "Fleeting": [ "JJ" ], "cave": [ "NN", "VB" ], "Sheboygan": [ "NNP" ], "AjA": [ "NNP" ], "AjB": [ "NNP" ], "options-related": [ "JJ" ], "six-story": [ "JJ" ], "Lightfoot": [ "NNP" ], "aired": [ "VBN", "VBD" ], "hires": [ "VBZ", "NNS" ], "Sewickley": [ "NNP" ], "multilingual": [ "JJ" ], "Anthropologists": [ "NNS" ], "bettered": [ "VBD" ], "Kisscorni": [ "NNP" ], "hired": [ "VBN", "JJ", "VBD" ], "reawaken": [ "VB" ], "Aj.": [ "NNP" ], "Iosola": [ "NNP" ], "Adamson": [ "NNP" ], "Crum": [ "NNP" ], "Satis": [ "NNP" ], "direct-investment": [ "JJ" ], "raving": [ "VBG", "JJ" ], "sturdy": [ "JJ" ], "Viewer": [ "NNP", "NN" ], "bedfast": [ "JJ" ], "Sayles": [ "NNP" ], "tongs": [ "NNS" ], "part-time": [ "JJ", "RB" ], "electrons": [ "NNS" ], "Callahan": [ "NNP" ], "bower": [ "NN" ], "unwed": [ "JJ" ], "tubes": [ "NNS" ], "naively": [ "RB" ], "Viewed": [ "VBN" ], "one-eighth": [ "NN", "JJ" ], "Pythagoreans": [ "NNPS" ], "seven-hit": [ "JJ" ], "Favour": [ "NN" ], "velvety": [ "JJ" ], "ringers": [ "NNS" ], "albums": [ "NNS" ], "distressing": [ "JJ" ], "Dorens": [ "NNP" ], "Redmond": [ "NNP" ], "justice": [ "NN" ], "Multiphastic": [ "NNP" ], "get...": [ ":" ], "Dorena": [ "NNP" ], "Caravaggio": [ "NNP" ], "Norment": [ "NNP" ], "porcupine": [ "NN" ], "financing": [ "NN", "JJ", "VBG" ], "strut": [ "NN" ], "Intercollegiate": [ "NNP" ], "Tillotson": [ "NNP" ], "Gas-cooled": [ "JJ" ], "Eaton": [ "NNP" ], "tear-jerkers": [ "NNS" ], "pretending": [ "VBG" ], "caseloads": [ "NNS" ], "remarketings": [ "NNS" ], "Maxima": [ "NNP" ], "Nev.": [ "NNP" ], "co-operate": [ "NN", "VB" ], "Auntie": [ "NNP" ], "adhering": [ "VBG" ], "retaliation": [ "NN" ], "stored": [ "VBN", "VBD" ], "Stott": [ "NNP" ], "after-hours": [ "JJ", "NNS", "RB" ], "buyings": [ "NNS" ], "Guides": [ "NNS", "NNP", "NNPS" ], "andrenas": [ "NNPS" ], "patriotism": [ "NN" ], "management-consulting": [ "JJ" ], "culture": [ "NN" ], "Centronics": [ "NNP" ], "Schillinger": [ "NNP" ], "hell-bound": [ "JJ" ], "Emma": [ "NNP" ], "termites": [ "NNS" ], "colonialists": [ "NNS" ], "life-supporting": [ "JJ" ], "Messinger": [ "NNP" ], "pictures": [ "NNS", "VBZ" ], "utopia": [ "NN" ], "Depletions": [ "NNS" ], "round-bottom": [ "JJ" ], "pictured": [ "VBN", "VBD" ], "perversities": [ "NNS" ], "Hogwash": [ "NN" ], "stagnation": [ "NN" ], "Isabella": [ "NNP", "NN" ], "Butterworth": [ "NNP" ], "Isabelle": [ "NNP" ], "lange": [ "FW" ], "Ohioan": [ "NNP" ], "spray": [ "NN", "VB" ], "Zamiatin": [ "NNP" ], "negligent-homicide": [ "NN" ], "half-hearted": [ "JJ" ], "Tuskegee": [ "NNP" ], "B.C.-based": [ "JJ" ], "zipper": [ "NN" ], "Anchisi": [ "NNP" ], "kneeled": [ "VBD" ], "commoditize": [ "VB" ], "Kochis": [ "NNP" ], "Consciousness": [ "NN" ], "cashing": [ "VBG" ], "Disciplinary": [ "NNP" ], "Steve": [ "NNP" ], "Merits": [ "NNS" ], "forgotten": [ "VBN", "JJ" ], "vault": [ "NN", "VB" ], "experimental": [ "JJ" ], "Spacenet": [ "NNP" ], "Irish-made": [ "JJ" ], "expendable": [ "JJ" ], "waterside": [ "NN" ], "post-colonialism": [ "NN" ], "unfolded": [ "VBD", "VBN" ], "recommending": [ "VBG" ], "Educator": [ "NNP" ], "mist-like": [ "JJ" ], "employee-ownership": [ "JJ", "NN" ], "Grand-Clement": [ "NNP" ], "Bethel": [ "NNP" ], "irresponsibility": [ "NN" ], "Bethea": [ "NNP" ], "wifely": [ "JJ" ], "Coble": [ "NNP" ], "ever-faster": [ "JJ" ], "Gingrich": [ "NNP" ], "Czechoslovaks": [ "NNPS" ], "test-tube": [ "NN" ], "lived": [ "VBD", "VBN", "VB" ], "Ballard": [ "NNP" ], "Angenics": [ "NNP" ], "Flashed": [ "VBN" ], "Broadcasting": [ "NNP", "VBG", "NN" ], "Buchbinder": [ "NNP" ], "liver": [ "NN" ], "Pick": [ "VB", "NNP" ], "safety-sensitive": [ "JJ" ], "Sumner": [ "NNP" ], "lutihaw": [ "FW" ], "two-by-four": [ "NN" ], "pact": [ "NN" ], "intriguing": [ "JJ", "VBG" ], "practicality": [ "NN" ], "Sotun": [ "NNP" ], "Garner": [ "NNP" ], "Agency": [ "NNP", "NN" ], "pace": [ "NN", "VB", "VBP" ], "Incest": [ "NN" ], "smart": [ "JJ", "NN", "RB" ], "Lemanowicz": [ "NNP" ], "Renfro": [ "NNP" ], "comrades": [ "NNS" ], "mailrooms": [ "NNS" ], "guide": [ "NN", "VBP", "VB" ], "pack": [ "NN", "VB", "VBP" ], "smacked": [ "VBD" ], "costly": [ "JJ", "RB" ], "funded": [ "VBN", "VBD", "JJ" ], "wagering": [ "NN", "VBG" ], "forebear": [ "NN" ], "Racism": [ "NN", "NNP" ], "ground-glass": [ "JJ" ], "sluice": [ "NN" ], "Slash": [ "VB" ], "Eagles": [ "NNP", "NNPS" ], "payers": [ "NNS" ], "Esther": [ "NNP" ], "Ingot": [ "NN" ], "mulitiplier": [ "JJ" ], "Murdoch": [ "NNP" ], "Extraordinary": [ "JJ" ], "fabulations": [ "NNS" ], "energizing": [ "VBG" ], "Phyllis": [ "NNP" ], "Gaulle": [ "NNP" ], "impious": [ "JJ" ], "superfast": [ "JJ" ], "ratings": [ "NNS" ], "banter": [ "NN" ], "Scenes": [ "NNS" ], "Movies": [ "NNP", "NNS" ], "computer-controlled": [ "JJ" ], "Lagnado": [ "NNP" ], "multisided": [ "JJ" ], "Berlaymont": [ "NNP" ], "Oswego": [ "NNP" ], "consistence": [ "NN" ], "accrediting": [ "NN" ], "NewsHour": [ "NNP" ], "double-stage": [ "JJ" ], "consistency": [ "NN" ], "canned-mushroom": [ "JJ" ], "Grafton": [ "NNP" ], "romanticize": [ "VB" ], "Living": [ "NNP", "VBG", "JJ" ], "exploits": [ "NNS", "VBZ" ], "powering": [ "VBG" ], "Cavallo": [ "NNP" ], "shivering": [ "VBG", "NN" ], "Cavalli": [ "NNP" ], "Tyler": [ "NNP" ], "Usery": [ "NNP" ], "RoadRailers": [ "NNPS" ], "disseminate": [ "VB" ], "Benzinger": [ "NNP" ], "excavators": [ "NNS" ], "Commodore": [ "NNP" ], "Krys": [ "NNP" ], "Visigoths": [ "NNPS" ], "useless": [ "JJ" ], "brushed": [ "VBD", "VBN", "JJ" ], "Rimmer": [ "NNP" ], "Graphic": [ "NNP" ], "Dowty": [ "NNP" ], "Demodocus": [ "NNP" ], "well-populated": [ "JJ" ], "wonderbars": [ "NNS" ], "notched-stick": [ "JJ" ], "Hockaday": [ "NNP" ], "M.B.A.s": [ "NNPS", "NNP", "NNS" ], "Madeleine": [ "NNP" ], "diuretics": [ "NNS" ], "debt-induced": [ "JJ" ], "vests": [ "NNS" ], "excluding": [ "VBG" ], "envisioned": [ "VBD", "VBN" ], "Keynesian": [ "JJ" ], "Auxiliaries": [ "NNPS", "NNP" ], "Cogan": [ "NNP" ], "popular": [ "JJ" ], "Dunaway": [ "NNP" ], "Sarpsis": [ "NNP" ], "sonny-boy": [ "NN" ], "cones": [ "NNS" ], "freebase": [ "NN" ], "Hyman": [ "NNP" ], "Unitrode": [ "NNP" ], "economic": [ "JJ" ], "Midwestern": [ "JJ", "NN", "NNP" ], "Jesuits": [ "NNPS" ], "AMs": [ "NNS" ], "Difficult": [ "JJ" ], "AMI": [ "NNP" ], "Grossinger": [ "NNP" ], "Dooling": [ "NNP" ], "SPRUCING": [ "VBG" ], "AMA": [ "NNP" ], "spouting": [ "VBG" ], "AMC": [ "NNP" ], "AMF": [ "NNP" ], "Tennessean": [ "NNP" ], "AMP": [ "NNP" ], "AMR": [ "NNP" ], "AMT": [ "NNP" ], "MassMutual": [ "NNP" ], "Epistles": [ "NNPS" ], "Bila": [ "NNP" ], "anecdotes": [ "NNS" ], "Bill": [ "NNP", "NN" ], "equipotent": [ "JJ" ], "MacMillan": [ "NNP" ], "negatives": [ "NNS" ], "Homeric": [ "NNP", "JJ" ], "Decliners": [ "NNS" ], "smothered": [ "VBD", "VBN", "JJ" ], "SCANDALS": [ "NNS" ], "Nouveaux": [ "NNP" ], "turret": [ "NN", "JJ" ], "Distant": [ "JJ" ], "Looks": [ "VBZ" ], "high-heeled": [ "JJ" ], "geosciences": [ "NNS" ], "Looky": [ "VB" ], "Baron": [ "NNP" ], "hounding": [ "VBG" ], "tofu": [ "NN" ], "Beauchamps": [ "NNPS" ], "alpha": [ "JJ", "NN" ], "Discovering": [ "VBG" ], "RoadRailing": [ "VBG" ], "Gershwin": [ "NNP" ], "Boulder": [ "NNP" ], "yo-yo": [ "NN" ], "supplicating": [ "VBG" ], "Diversey": [ "NNP" ], "approved": [ "VBD", "VBN", "JJ" ], "Nadine": [ "NNP" ], "spawning": [ "VBG" ], "eons": [ "NNS" ], "Tonal": [ "JJ" ], "done-and": [ "CC" ], "janitors": [ "NNS" ], "Tosca": [ "NNP" ], "Littell": [ "NNP" ], "shouldered": [ "VBD", "VBN" ], "injection": [ "NN" ], "probate": [ "NN" ], "Tosco": [ "NNP" ], "Metatrace": [ "NNP" ], "Woodward": [ "NNP", "RB" ], "vacancies": [ "NNS" ], "Schnuck": [ "NNP" ], "Saadi": [ "NNP" ], "preparative": [ "JJ" ], "Buber-think": [ "NNP|VB" ], "Wylie": [ "NNP" ], "Blackmer": [ "NNP" ], "reverse-reverse": [ "JJ" ], "Tu": [ "NNP" ], "accessibility": [ "NN" ], "utility-cost": [ "NN" ], "Aviv": [ "NNP" ], "To": [ "TO", "NNP", "NN" ], "canonist": [ "NN" ], "Barshop": [ "NNP" ], "Avis": [ "NNP" ], "Ti": [ "NNP" ], "three-to-five-year": [ "JJ" ], "evocative": [ "JJ" ], "surmise": [ "VB" ], "Cardizem": [ "NNP" ], "Spanish-language": [ "JJ", "NN", "NNP" ], "goddamit": [ "UH" ], "TV": [ "NN", "NNP" ], "TW": [ "NNP" ], "TR": [ "NNP" ], "cesium-137": [ "NN" ], "Default": [ "NNP" ], "co-obligation": [ "NN" ], "TI": [ "NNP" ], "Versicherung": [ "NNP" ], "TD": [ "NNP" ], "TB": [ "NN" ], "TC": [ "NNP" ], "arithmetic": [ "NN" ], "TA": [ "NNP" ], "Customer": [ "NN", "NNP" ], "wohd": [ "NN" ], "venerable": [ "JJ", "NN" ], "laboratory-supply": [ "JJ" ], "T8": [ "NNP" ], "Pounds": [ "NNS" ], "pickup-bed": [ "NN" ], "Median": [ "JJ" ], "Crippling": [ "JJ", "NNP" ], "T.": [ "NNP", "NNPS", "NN" ], "Woodcliff": [ "NNP" ], "labels.": [ "NNS" ], "Amazonian": [ "JJ" ], "Minutemen": [ "NNPS" ], "Sparrows": [ "NNP" ], "earphones": [ "NNS" ], "arch-enemy": [ "NN" ], "e": [ "NN", "NNP" ], "Uzi": [ "NNP" ], "complicating": [ "VBG" ], "animal-rights": [ "NNS", "JJ", "NN" ], "Donations": [ "NNS" ], "underrated": [ "VBN" ], "imprecise": [ "JJ" ], "virtue": [ "NN" ], "Yalobusha": [ "NNP" ], "Westburne": [ "NNP" ], "Boccone": [ "NNP" ], "OST": [ "NNP" ], "Barsuki": [ "NNP" ], "bioTechnology": [ "NNP" ], "wall-paneling": [ "JJ" ], "Clasping": [ "VBG" ], "mid-morning": [ "NN" ], "Scheduled": [ "VBN" ], "Biddle": [ "NNP" ], "birthplace": [ "NN" ], "commas": [ "NNS" ], "sales-conscious": [ "JJ" ], "J/NNP.A.": [ "NN", "VB" ], "optical-scanning": [ "JJ" ], "re-establishing": [ "VBG", "JJ" ], "Rekindled": [ "VBN" ], "Schedules": [ "NNS" ], "Sulphur": [ "NN", "NNP" ], "friendly": [ "JJ" ], "Stress": [ "NN", "NNP" ], "Penrose": [ "NNP" ], "wave": [ "NN", "VB", "VBP" ], "coffeecup": [ "NN" ], "felicity": [ "NN" ], "Risks": [ "NNS" ], "rattling": [ "VBG", "NN" ], "Deukmejian": [ "NNP" ], "Camry": [ "NNP" ], "Korbich": [ "NNP" ], "Acquisition": [ "NNP", "NN" ], "Risky": [ "NNP" ], "Embryo": [ "NN" ], "Charlotte": [ "NNP" ], "Hewett": [ "NNP" ], "Sago": [ "NNP" ], "acute-care": [ "NN" ], "compassionate": [ "JJ" ], "near-synonyms": [ "NNS" ], "self-starting": [ "JJ" ], "Tyco": [ "NNP" ], "Tuesdays": [ "NNPS" ], "rationalizing": [ "VBG" ], "Index": [ "NNP", "NN" ], "Laughlin": [ "NNP" ], "Magnificent": [ "JJ" ], "SEAQ": [ "NNP" ], "Cameras": [ "NNS" ], "SEAT": [ "NNP" ], "redone": [ "JJ", "NN" ], "pre-literate": [ "JJ" ], "Camera": [ "NNP", "NN" ], "muffs": [ "NNS" ], "parimutuels": [ "NNS" ], "sultans": [ "NNS" ], "Ishiguro": [ "NNP" ], "Raton": [ "NNP" ], "Disadvantages": [ "NNS" ], "pitilessly": [ "RB" ], "Disadvantaged": [ "NNP" ], "Kristin": [ "NNP" ], "Coors-Stroh": [ "NNP" ], "Copiague": [ "NNP" ], "long-handled": [ "JJ" ], "Publisher": [ "NNP", "NN" ], "Locked": [ "VBN" ], "Airman": [ "NNP" ], "Blanched": [ "VBN" ], "kidnapper": [ "NN" ], "KHAD\\/WAD": [ "NN" ], "Popes": [ "NNPS" ], "Locker": [ "NNP" ], "Published": [ "VBN" ], "non-dairy-creamer": [ "NN" ], "enterprising": [ "JJ" ], "Rosalco": [ "NNP" ], "AZT-treated": [ "JJ" ], "convert": [ "VB", "VBP", "NN" ], "fAs": [ "NNP" ], "villages": [ "NNS" ], "Tells": [ "VBZ" ], "Theodore": [ "NNP" ], "cave-in": [ "NN" ], "Greenleaf": [ "NNP" ], "comminge": [ "VBG" ], "Soapy": [ "JJ" ], "diaper-changing": [ "JJ" ], "gene": [ "NN" ], "salvation": [ "NN" ], "frictional": [ "JJ" ], "Grunfeld": [ "NNP" ], "Blake": [ "NNP" ], "Doctor": [ "NNP", "NN" ], "rakishly": [ "RB" ], "Contributing": [ "VBG" ], "Enskilda": [ "NNP" ], "buildup": [ "NN" ], "infest": [ "VB" ], "well-polished": [ "JJ" ], "handfuls": [ "NNS" ], "enterprisingly": [ "RB" ], "Fields": [ "NNP", "NNPS", "NNS" ], "Rapanelli": [ "NNP" ], "traditionalized": [ "VBN" ], "Disputes": [ "NNP" ], "devotedly": [ "RB" ], "historically": [ "RB" ], "subsection": [ "NN" ], "compatriot": [ "NN" ], "CARTER-WALLACE": [ "NNP" ], "formally": [ "RB" ], "balsams": [ "NNS" ], "Roffman": [ "NNP" ], "visibility": [ "NN" ], "charming": [ "JJ" ], "Kirkwood": [ "NNP" ], "Squibb": [ "NNP" ], "appointed": [ "VBN", "JJ", "VBD" ], "blithely": [ "RB" ], "wearin": [ "VBG" ], "lapse": [ "NN", "VB", "VBP" ], "exeuctive": [ "NN" ], "postmarked": [ "VBN" ], "ensconced": [ "VBN", "VBD" ], "transmitted": [ "VBN", "JJ", "VBD" ], "Birmingham": [ "NNP" ], "Mapplethorpe": [ "NNP" ], "Circumstances": [ "NNS" ], "unveiled": [ "VBD", "JJ", "VBN" ], "double-valued": [ "JJ" ], "Brooklyn-born": [ "JJ" ], "Qantas": [ "NNP" ], "Lovell": [ "NNP" ], "Friedberg": [ "NNP" ], "Shipyards": [ "NNP", "NNPS" ], "high-VAT": [ "JJ" ], "Lovely": [ "NNP" ], "corruptions": [ "NNS" ], "Sinhalese.": [ "JJ" ], "Merchant": [ "NNP", "NN" ], "Times-Picayune": [ "NNP" ], "Breeders": [ "NNP", "NNS" ], "despairs": [ "VBZ" ], "Quyne": [ "NNP" ], "asinine": [ "JJ" ], "unseated": [ "JJ", "VBD" ], "service-oriented": [ "JJ" ], "GRiD": [ "NNP" ], "Happened": [ "VBD", "VBN" ], "Lionel": [ "NNP" ], "fare": [ "NN", "VBP", "VB" ], "Assisting": [ "VBG" ], "Tymnet": [ "NNP" ], "farm": [ "NN", "VB" ], "faro": [ "NN" ], "Euroshuttle": [ "NNP" ], "aborigines": [ "NNS" ], "matchmaker": [ "NN" ], "dalliances": [ "NNS" ], "aliquots": [ "NNS" ], "Micelli": [ "NNP" ], "alibis": [ "NNS" ], "tomb": [ "NN" ], "Detroiters": [ "NNS" ], "bloodstream": [ "NN" ], "indemnifying": [ "VBG" ], "computations": [ "NNS" ], "yrs": [ "NNS" ], "Nyberg": [ "NNP" ], "half-block": [ "NN" ], "Ploys": [ "NNS" ], "dilatation": [ "NN" ], "Arrangements": [ "NNS" ], "Inter-Canadian": [ "NNP" ], "Rothmans": [ "NNP" ], "Lusaka": [ "NNP" ], "PENCILS": [ "NNS" ], "Resisting": [ "VBG" ], "gynecology": [ "NN" ], "Ruiz-Mateos": [ "NNP" ], "basement": [ "NN" ], "backbends": [ "NNS" ], "costume": [ "NN", "JJ" ], "temporal": [ "JJ", "NN" ], "Kayne": [ "NNP" ], "new-telephone-line": [ "NN" ], "IOC": [ "NNP" ], "Torstar": [ "NNP" ], "Labouisse": [ "NNP" ], "articulation": [ "NN" ], "mesothelioma": [ "NN" ], "Formica": [ "NNP" ], "instrumented": [ "JJ" ], "subtraction": [ "NN" ], "stout": [ "JJ" ], "Hettie": [ "NNP" ], "Venus": [ "NNP", "NN" ], "Hemenway": [ "NNP" ], "Respond": [ "VBP" ], "overcharges": [ "NNS" ], "miniwelfare": [ "JJ" ], "pre-war": [ "JJ", "NN" ], "spoon-feed": [ "VB" ], "ever-successful": [ "JJ" ], "Deslonde": [ "NNP" ], "brassieres": [ "NNS" ], "overcharged": [ "VBN", "VBD" ], "freedom-loving": [ "JJ" ], "Specter": [ "NNP", "NN" ], "chided": [ "VBN", "VBD" ], "Listenin": [ "NN" ], "MERCHANTS": [ "NNPS" ], "Random": [ "NNP", "JJ" ], "Salins": [ "NNP" ], "vacuolated": [ "VBN" ], "citric": [ "JJ" ], "pursuits": [ "NNS" ], "collegial": [ "JJ" ], "investigative": [ "JJ" ], "refight": [ "VB" ], "Breeding": [ "NNP" ], "Wick": [ "NNP" ], "Santry": [ "NNP" ], "maximizes": [ "VBZ" ], "Loral": [ "NNP", "JJ" ], "Microbilt": [ "NNP" ], "Loran": [ "NNP" ], "entertainment": [ "NN" ], "CEO": [ "NNP", "NN" ], "terming": [ "VBG" ], "single-copy": [ "JJ" ], "back-alley": [ "JJ" ], "teetotaler": [ "NN" ], "cause": [ "NN", "VB", "VBG", "VBP" ], "Troutman": [ "NNP" ], "abolitionists": [ "NNS" ], "contemporize": [ "VB" ], "Involving": [ "VBG" ], "Syncor": [ "NNP" ], "galaxies": [ "NNS" ], "R.D.": [ "NNP" ], "Fistoulari": [ "NNP" ], "cleansers": [ "NNS" ], "Darak": [ "NNP" ], "x": [ "NN" ], "Corrections": [ "NNP", "NNPS", "NNS" ], "evidential": [ "JJ" ], "Prevost": [ "NNP" ], "Rodgers": [ "NNP" ], "Noxema": [ "NNP" ], "re-emphasise": [ "VB" ], "Yurochka": [ "NNP" ], "Nicandra": [ "NNP" ], "Murasawa": [ "NNP" ], "galling": [ "JJ" ], "Eurovision": [ "NNP" ], "projectile": [ "NN" ], "Recklessly": [ "RB" ], "powerful": [ "JJ" ], "Fete": [ "NNP" ], "Liliputian": [ "NNP" ], "Snelling": [ "NNP" ], "Theoretical": [ "JJ", "NNP" ], "Enzytech": [ "NNP" ], "clearinghouse": [ "NN" ], "cash-and-stock": [ "JJ" ], "tobacco-juice": [ "NN" ], "inasmuch": [ "RB" ], "three-digit": [ "JJ" ], "Favorable": [ "JJ" ], "ankle": [ "NN" ], "Lydia": [ "NNP" ], "Dawkins": [ "NNP" ], "Vidunas": [ "NNP" ], "lists": [ "NNS", "VBZ" ], "chemicals": [ "NNS" ], "Rosenbach": [ "NNP" ], "liste": [ "FW" ], "characterizations": [ "NNS" ], "girdle": [ "NN" ], "well-established": [ "JJ" ], "submitted": [ "VBN", "VBD" ], "Auburn": [ "NN", "NNP" ], "succinctly": [ "RB" ], "Zing": [ "NNP" ], "Mihaly": [ "NNP" ], "R.T.": [ "NNP" ], "Zinc": [ "NN" ], "Benham": [ "NNP" ], "Oval": [ "NNP", "JJ" ], "acrylic-fiber": [ "JJ" ], "Absolution": [ "NN" ], "eight-times": [ "JJ" ], "globalists": [ "NNS" ], "sweeteners": [ "NNS" ], "Abilene": [ "NNP" ], "horrors": [ "NNS" ], "Other": [ "JJ", "NNP" ], "earful": [ "NN" ], "Editions": [ "NNPS" ], "despatch": [ "NN" ], "Sarasate": [ "NNP" ], "similar-sized": [ "JJ" ], "Bastianini": [ "NNP" ], "interstates": [ "NNS" ], "Batman": [ "NNP" ], "relatives": [ "NNS" ], "auto-emissions": [ "NNS" ], "radioclast": [ "NN" ], "red-bellied": [ "JJ" ], "plowshares": [ "NNS" ], "Pueblo": [ "NNP" ], "duels": [ "NNS" ], "Photonics": [ "NNP" ], "France-Presse": [ "NNP" ], "discos": [ "NNS" ], "imperilled": [ "VBN" ], "vengeance": [ "NN" ], "counterbalance": [ "VB", "NN" ], "corrects": [ "VBZ" ], "Centrex": [ "NNP" ], "gallery": [ "NN" ], "play-off": [ "NN" ], "Equalizer": [ "NNP" ], "Bertolotti": [ "NNP" ], "food-processing": [ "NN", "JJ" ], "urn": [ "NN" ], "overhearing": [ "VBG" ], "Kanner": [ "NNP" ], "astonishing": [ "JJ" ], "ear-splitting": [ "JJ" ], "dustbowl": [ "NN" ], "constrain": [ "VB" ], "Randi": [ "NNP" ], "redheads": [ "NNS" ], "underpins": [ "VBZ" ], "telepathically": [ "RB" ], "selectiveness": [ "NN" ], "Rande": [ "NNP" ], "Commandment": [ "NN" ], "double-talk": [ "NN" ], "Randy": [ "NNP" ], "Gavrilov": [ "NNP" ], "Bonenfant": [ "NNP" ], "carcinogen": [ "NN" ], "marine-related": [ "JJ" ], "obsequious": [ "JJ" ], "lowlands": [ "NNS" ], "Hough": [ "NNP" ], "MacPhail": [ "NNP" ], "receptors": [ "NNS" ], "patristic": [ "JJ" ], "Czarina": [ "NNP" ], "achieve": [ "VB", "VBP" ], "back-slapping": [ "JJ" ], "Nevermind": [ "VB" ], "exaltation": [ "NN" ], "Schwemm": [ "NNP" ], "popular-priced": [ "JJ" ], "plunking": [ "VBG" ], "second-half": [ "JJ", "NN" ], "offsaddled": [ "VBD" ], "Allegra": [ "NNP" ], "Masterworks": [ "NNPS" ], "trucks": [ "NNS", "VBZ" ], "Garamendi": [ "NNP" ], "Barnicle": [ "NNP" ], "directrices": [ "NNS" ], "Hwan": [ "NNP" ], "Allegro": [ "NNP", "FW" ], "FAILED": [ "VBD" ], "Palisades": [ "NNP", "NNPS" ], "golfs": [ "NNS" ], "Gravely": [ "NNP" ], "tunes": [ "NNS", "VBZ" ], "slimed": [ "VBN" ], "Kacy": [ "NNP" ], "embryonic": [ "JJ" ], "Nathanael": [ "NNP" ], "torts": [ "NNS" ], "Levina": [ "NNP" ], "Levine": [ "NNP" ], "Tesco": [ "NNP" ], "shrouded": [ "VBN", "VBD" ], "Dieppe": [ "NNP" ], "reoccupation": [ "NN" ], "operates": [ "VBZ" ], "officials": [ "NNS" ], "reinforcements": [ "NNS" ], "operated": [ "VBN", "VBD|VBN", "VBD", "JJ" ], "all-employee": [ "JJ" ], "reverse-engineering": [ "NN" ], "Softener": [ "NN" ], "Wisconsin": [ "NNP", "NN" ], "MAPCO": [ "NNP" ], "nightmare": [ "NN" ], "intending": [ "VBG" ], "Alabamas": [ "NNPS" ], "tend": [ "VBP", "VB" ], "Kingsbridge": [ "NNP" ], "tens": [ "NNS" ], "unshaved": [ "JJ" ], "tent": [ "NN" ], "Full-time": [ "JJ" ], "Magnin": [ "NNP" ], "dropoff": [ "NN" ], "remitting": [ "VBG" ], "limbs": [ "NNS" ], "laid-off": [ "JJ", "VBN" ], "Telex": [ "NN", "NNP" ], "merry": [ "JJ" ], "one-stop": [ "JJ" ], "unfired": [ "VBN" ], "Juras": [ "NNP" ], "Remarque": [ "NNP" ], "unstoppable": [ "JJ" ], "hits": [ "NNS", "VBZ" ], "sediments": [ "NNS" ], "Burgee": [ "NNP" ], "Arlene": [ "NNP" ], "shingle": [ "NN" ], "Formosan": [ "JJ" ], "Burger": [ "NNP" ], "revitalized": [ "VBD", "VBN" ], "bellboy": [ "NN" ], "Quebec": [ "NNP", "NN" ], "nymph": [ "NN" ], "nontoxic": [ "JJ" ], "scabbed": [ "VBN" ], "auto-maker": [ "NN" ], "autocrats": [ "NNS" ], "subtitle": [ "NN" ], "Delawares": [ "NNS" ], "Amoco": [ "NNP" ], "Pauleys": [ "NNPS" ], "U.S.C.": [ "NNP", "NN" ], "Avoids": [ "VBZ" ], "Bockris": [ "NNP" ], "Jaap": [ "NNP" ], "ENTERS": [ "VBZ" ], "thanked": [ "VBD", "VBN" ], "Leukemia": [ "NNP" ], "Frills": [ "NNP" ], "outlaws": [ "NNS" ], "Groep": [ "NNP" ], "eraser": [ "NN" ], "erases": [ "VBZ" ], "Editing": [ "NN" ], "Hephzibah": [ "NNP" ], "battlements": [ "NNS" ], "constitutes": [ "VBZ" ], "anti-pocketbook": [ "JJ" ], "textile-importing": [ "NN" ], "Fulbright": [ "NNP" ], "five-speed": [ "JJ" ], "exploiters": [ "NNS" ], "guerrillas": [ "NNS" ], "Courses": [ "NNS", "NNP" ], "Whitrow": [ "NNP" ], "impress": [ "VB", "NN", "VBP" ], "smoking": [ "NN", "VBG" ], "reclassified": [ "VBD", "VBN" ], "Blandon": [ "NNP" ], "Lifeguards": [ "NNS" ], "FOUNDER": [ "NN" ], "Bricks": [ "NNS" ], "BILL": [ "NN" ], "queuing": [ "VBG" ], "Belasco": [ "NNP" ], "Kamchatka": [ "NNP" ], "Kaisha": [ "NNP" ], "mused": [ "VBD" ], "ratiocinating": [ "JJ" ], "under-inclusion": [ "NN" ], "Shochiku-Fuji": [ "NNP" ], "two-month": [ "JJ" ], "Cortizone-5": [ "NNP" ], "Ashman": [ "NNP" ], "BENEFITS": [ "NNS" ], "parte": [ "NN" ], "going-over": [ "NN" ], "shotshells": [ "NNS" ], "McShane": [ "NNP" ], "Cottrell": [ "NNP" ], "Flusser": [ "NNP" ], "tweezed": [ "VBN" ], "parts": [ "NNS" ], "wheel": [ "NN", "VBP" ], "wrong-headed": [ "JJ" ], "party": [ "NN" ], "divvying": [ "VBG" ], "Aluminum": [ "NNP", "JJ", "NN" ], "employee-stock": [ "JJ" ], "Failing": [ "VBG" ], "abounds": [ "VBZ" ], "Rossides": [ "NNP" ], "Audience": [ "NN" ], "Non-God": [ "UH" ], "destruction": [ "NN" ], "scarcely": [ "RB" ], "MacReady": [ "NNP" ], "neuropathy": [ "NN" ], "Taizo": [ "NNP" ], "placating": [ "VBG" ], "Invacare": [ "NNP" ], "Durkin": [ "NNP" ], "drowns": [ "VBZ" ], "Threshold": [ "NNP" ], "Androfski": [ "NNP" ], "Newsnight": [ "NNP" ], "advertises": [ "VBZ" ], "advertiser": [ "NN" ], "Gaydon": [ "NNP" ], "Flower": [ "NNP" ], "Dionie": [ "NNP" ], "TOOK": [ "NNP" ], "Canadians": [ "NNPS", "NNS" ], "detail": [ "NN", "VB" ], "Brookhaven": [ "NNP" ], "mini-mill": [ "NN" ], "blackberry-basil": [ "NN" ], "femme": [ "FW" ], "run-down": [ "JJ" ], "density": [ "NN" ], "pin-pointed": [ "VBN" ], "MC88200": [ "NNP" ], "Yoichi": [ "NNP" ], "FACING": [ "VBG" ], "narcolepsy": [ "NN" ], "morgue": [ "NN" ], "riverside": [ "NN" ], "balloons": [ "NNS", "VBZ" ], "Exposure": [ "NN" ], "canter": [ "NN" ], "Nicolson": [ "NNP" ], "Hibben": [ "NNP" ], "half-murmured": [ "JJ" ], "Limit": [ "VB", "NNP", "NN" ], "Nelson": [ "NNP" ], "bottoms": [ "NNS" ], "HK$": [ "$" ], "loss": [ "NN" ], "Cookies": [ "NNS" ], "necessary": [ "JJ" ], "lost": [ "VBD", "VBN", "JJ" ], "Lights": [ "NNS", "NNPS", "NNP" ], "Corrado": [ "NNP" ], "Penelope": [ "NNP" ], "gangsters": [ "NNS" ], "tipple": [ "VBP" ], "Wilkes-Barre": [ "NNP" ], "Jasper": [ "NNP" ], "Shrewsbury": [ "NNP" ], "lose": [ "VB", "VBP" ], "broad-scale": [ "JJ" ], "Milton": [ "NNP" ], "CITIES\\/ABC": [ "NNP" ], "Garryowen": [ "NNP" ], "parceling": [ "NN" ], "Asahipen": [ "NNP" ], "going-home": [ "JJ" ], "Thunder": [ "NN", "NNP" ], "Mayan": [ "JJ" ], "loan-guarantee": [ "NN" ], "library": [ "NN" ], "trucker": [ "NN" ], "home": [ "NN", "VBP", "RB", "VB" ], "EEG": [ "NNP" ], "leery": [ "JJ" ], "profittaking": [ "NN" ], "chroniclers": [ "NNS" ], "Bohemia": [ "NNP" ], "anti-trust": [ "JJ" ], "pinpoint": [ "VB", "NN", "VBP" ], "overlay": [ "NN", "VBP" ], "steaming": [ "VBG" ], "broad": [ "JJ" ], "overlap": [ "NN", "VB", "VBP" ], "non-dual": [ "JJ" ], "mutation": [ "NN" ], "adventuring": [ "NN" ], "Toronto-area": [ "JJ" ], "fanny": [ "NN" ], "Bryant": [ "NNP" ], "octogenarian": [ "JJ" ], "Nureyev": [ "NNP" ], "Quilted": [ "NNP" ], "real-world": [ "JJ" ], "subdirector": [ "NN" ], "hurls": [ "VBZ" ], "Vereinsbank": [ "NNP" ], "Shakes": [ "VBZ" ], "non-lethal": [ "JJ" ], "naps": [ "NNS" ], "Hastings-on-Hudson": [ "NNP" ], "Archaeology": [ "NNP" ], "refuge": [ "NN" ], "cataracts": [ "NNS" ], "tonics": [ "NNS" ], "M.C.": [ "NNP" ], "Cernuda": [ "NNP" ], "Mental": [ "NNP", "JJ" ], "Boadicea": [ "NNP" ], "greening": [ "JJ", "NN", "VBG" ], "Jorda": [ "NNP" ], "Conspiracy": [ "NNP" ], "myeloid": [ "NN" ], "Crosfield": [ "NNP" ], "Medical-instrument": [ "JJ" ], "KLUC-FM": [ "NNP" ], "Garibaldi": [ "NNP" ], "Communists": [ "NNPS", "NNP", "NNS" ], "contending": [ "VBG" ], "fettered": [ "VBN" ], "previously": [ "RB" ], "Papetti": [ "NNP" ], "Quickly": [ "RB" ], "ultrasound": [ "NN" ], "Internal": [ "NNP", "JJ" ], "Conseil": [ "NNP" ], "Secular": [ "JJ" ], "PRATT": [ "NNP" ], "multivalve": [ "JJ" ], "Colorama": [ "NN" ], "slow-motion": [ "JJ" ], "Daphne": [ "NNP" ], "Veraguas": [ "NNP" ], "service-center": [ "NN" ], "north": [ "RB", "JJ", "NN" ], "state-trading": [ "JJ" ], "rioted": [ "VBD" ], "triangular": [ "JJ" ], "fountains": [ "NNS" ], "blaming": [ "VBG" ], "Chamber": [ "NNP", "NN" ], "strawberries": [ "NNS" ], "oxygens": [ "NNS" ], "Oops": [ "UH" ], "lowest-rated": [ "JJ" ], "sprinkling": [ "NN", "VBG" ], "ordinances": [ "NNS" ], "minutely": [ "RB" ], "Pagnol": [ "NNP" ], "bargaining-chip": [ "NN" ], "metronome": [ "NN" ], "Khrushchevs": [ "NNPS" ], "skill-dilution": [ "JJ" ], "Cheyennes": [ "NNPS" ], "dismounting": [ "VBG" ], "catalog-clothing-merchandiser": [ "NN" ], "fabricator": [ "NN" ], "display": [ "NN", "VBP", "VB" ], "urging": [ "VBG", "NN" ], "I.Q.": [ "NNP", "NN" ], "diligently": [ "RB" ], "universal": [ "JJ" ], "Nghe": [ "NNP" ], "dialogue": [ "NN" ], "Hatakeyama": [ "NNP" ], "Mustafa": [ "NNP" ], "house-building": [ "NN" ], "functions": [ "NNS", "VBZ" ], "Northridge": [ "NNP" ], "Geneva": [ "NNP" ], "Jr.": [ "NNP", "NNPS" ], "Aoyama": [ "NNP" ], "Never": [ "RB", "UH", "NNP" ], "Neveu": [ "NNP" ], "Acid-washed": [ "JJ" ], "publicists": [ "NNS" ], "Peller": [ "NNP" ], "BEGAN": [ "VBD" ], "discorporated": [ "VBN" ], "star": [ "NN", "JJ", "VB" ], "Dual": [ "JJ" ], "Congregationalism": [ "NNP" ], "half-mile": [ "JJ", "NN" ], "stay": [ "VB", "VBP", "NN" ], "staf": [ "NN" ], "stag": [ "NN", "JJ" ], "newspaper-printing": [ "NN" ], "stab": [ "NN" ], "Braggadocio": [ "NNP" ], "additionally": [ "RB" ], "fir": [ "NN" ], "Congregationalist": [ "NN" ], "phosphorus": [ "NN" ], "less-than-altruistic": [ "JJ" ], "Ungermann-Bass": [ "NNP" ], "Embraer": [ "NNP" ], "Neilson": [ "NNP" ], "atheism": [ "NN" ], "watercolors": [ "NNS" ], "Hanover-Mauri": [ "NNP" ], "Refined": [ "NNP" ], "foreshadowing": [ "VBG" ], "sniveling": [ "VBG" ], "Corsica": [ "NNP" ], "aided": [ "VBN", "VBD" ], "forgone": [ "JJ" ], "whoops": [ "VBZ" ], "knelt": [ "VBD", "VBN" ], "single-step": [ "JJ" ], "clean-up": [ "JJ", "NN" ], "knell": [ "NN" ], "perverted": [ "VBN", "JJ", "VBD" ], "aides": [ "NNS" ], "Kwong": [ "NNP" ], "Sabena": [ "NNP" ], "buddy": [ "NN" ], "SKr29": [ "NNS" ], "Cluck": [ "NNP" ], "DeFazio": [ "NNP" ], "disability": [ "NN" ], "Preferred": [ "NNP", "JJ" ], "Kristallstrukturen": [ "FW" ], "car-buff": [ "JJ" ], "MDL-1": [ "NN" ], "Chucas": [ "NNP" ], "Kinji": [ "NNP" ], "Thurgood": [ "NNP" ], "Authors": [ "NNS" ], "Merlo": [ "NNP" ], "Dougherty": [ "NNP" ], "fists": [ "NNS" ], "realignment": [ "NN" ], "Presser": [ "NN" ], "light-wave": [ "JJ", "NN" ], "Identifying": [ "VBG" ], "Harley-Davidson": [ "NNP" ], "Anglican": [ "NNP", "JJ" ], "Pressed": [ "VBN" ], "Kuperberg": [ "NNP" ], "Shapiro": [ "NNP" ], "Shitts": [ "NNP" ], "epidemiologists": [ "NNS" ], "hypostatization": [ "NN" ], "crops": [ "NNS", "VBZ" ], "Tepid": [ "NNP" ], "extinguishment": [ "NN" ], "Almonds": [ "NNS" ], "irrationally": [ "RB" ], "Colosseum": [ "NNP" ], "Raiders": [ "NNPS", "NNP", "NNS" ], "McIntosh": [ "NNP" ], "zirconate": [ "NN" ], "likely": [ "JJ", "RB" ], "arrangers": [ "NNS" ], "subordinate": [ "JJ", "NN", "VB" ], "bureacratic": [ "JJ" ], "appetite": [ "NN" ], "Tolek": [ "NNP" ], "low-moisture": [ "JJ" ], "Arizona": [ "NNP" ], "polyelectrolytes": [ "NNS" ], "Culkin": [ "NNP" ], "Manzella": [ "NNP" ], "IgG": [ "NNP" ], "Parkhurst": [ "NNP" ], "mutual-funds": [ "NNS" ], "Pomona": [ "NNP" ], "foodstuffs": [ "NNS" ], "Toler": [ "NNP" ], "upward": [ "RB", "JJ" ], "low-ball": [ "JJ" ], "Central-bank": [ "NN" ], "snared": [ "VBN" ], "niche": [ "NN" ], "iodoamino": [ "NN" ], "Cuts": [ "NNS" ], "Irwin": [ "NNP" ], "Pennview": [ "NNP" ], "Two-income": [ "NN" ], "songbirds": [ "NNS" ], "provisioning": [ "VBG", "NN" ], "inheritable": [ "JJ" ], "product-swap": [ "NN" ], "reshuffle": [ "NN", "VB" ], "Rizzuto": [ "NNP" ], "contraction": [ "NN" ], "Engh": [ "NNP" ], "Rounded": [ "JJ" ], "Knudsen": [ "NNP" ], "bumps": [ "NNS", "VBZ" ], "Packaging": [ "NNP", "NN" ], "oozed": [ "VBD" ], "creasingly": [ "RB" ], "Luxury": [ "NN" ], "Inorganic": [ "JJ" ], "Persico": [ "NNP" ], "intrigue": [ "NN", "VB" ], "Either": [ "CC", "DT", "NNP" ], "Industries": [ "NNPS", "NNP", "NNS" ], "fantastic": [ "JJ" ], "Gutwein": [ "NNP" ], "kinesthetic": [ "JJ" ], "McCay": [ "NNP" ], "EasyLink": [ "NNP" ], "guests": [ "NNS" ], "god-like": [ "JJ" ], "exhusband": [ "NN" ], "tertiary": [ "JJ" ], "head-on": [ "RB", "JJ", "NN" ], "non-Humana": [ "JJ" ], "high-velocity": [ "JJ" ], "Gramm": [ "NNP" ], "Pro-choice": [ "JJ" ], "WHO": [ "WP" ], "Honolulu-based": [ "JJ" ], "hand-screened": [ "VBN" ], "survive": [ "VB", "VBP" ], "WHX": [ "NNP" ], "WHY": [ "WRB" ], "non-high": [ "JJ" ], "pynte": [ "NN" ], "Catcher": [ "NNP", "NN" ], "highfalutin": [ "JJ" ], "Blasts": [ "NNS" ], "Times-Stock": [ "NNP" ], "dogma": [ "NN" ], "female-dominated": [ "JJ" ], "Greasies": [ "NNS" ], "ostracized": [ "VBN" ], "computer-stock": [ "NN" ], "Bienville": [ "NNP" ], "exploitative": [ "JJ" ], "laid-back": [ "JJ" ], "Shipston": [ "NNP" ], "ELECTRIC": [ "NNP" ], "Kingsford": [ "NNP" ], "Hettinger": [ "NNP" ], "Corporation": [ "NNP", "NN" ], "Whereas": [ "IN", "WRB" ], "stressing": [ "VBG" ], "Globalization": [ "NNP", "NN" ], "isothermal": [ "JJ" ], "autonomy": [ "NN" ], "Watching": [ "VBG" ], "colds": [ "NNS" ], "Hawesville": [ "NNP" ], "adventurism": [ "NN" ], "slipstream": [ "NN" ], "amazing": [ "JJ" ], "adventurist": [ "JJ" ], "colde": [ "MD" ], "undesirable": [ "JJ", "NN" ], "competency": [ "NN" ], "blanks": [ "NNS" ], "Lucas": [ "NNP" ], "Spinelli": [ "NNP" ], "vibratory": [ "JJ" ], "believers": [ "NNS" ], "arrearages": [ "NNS" ], "Bargain-hunters": [ "NNS" ], "single-engine": [ "JJ" ], "Bank\\/Tidewater": [ "NNP" ], "egos": [ "NNS" ], "schoolchildren": [ "NN", "VB", "NNS" ], "Hargitay": [ "NNP" ], "photoluminescence": [ "NN" ], "Trianon": [ "NNP" ], "octogenaraians": [ "NNS" ], "day-watch": [ "NN" ], "Became": [ "VBD" ], "Kalinowski": [ "NNP" ], "goodbye": [ "NN", "UH" ], "operate": [ "VB", "VBP" ], "athletes": [ "NNS" ], "wus": [ "RB" ], "W/NNP.B/NNP.I.": [ "NN" ], "unnamed": [ "JJ" ], "pothole": [ "NN" ], "Wrongdoers": [ "NNS" ], "Hetty": [ "NNP" ], "Newark": [ "NNP" ], "mumbo": [ "NN" ], "captions": [ "NNS" ], "Ordinary": [ "JJ", "NNP" ], "wuh": [ "VBP" ], "before": [ "IN", "RB", "RP" ], "Halstead": [ "NNP" ], "Hosaka": [ "NNP" ], "chatte": [ "FW" ], "rescheduled": [ "VBD", "VBN" ], "Chorney": [ "NNP" ], "JOB": [ "NN" ], "Pate": [ "NNP" ], "Pati": [ "FW" ], "Path": [ "NNP", "NN" ], "Exeter": [ "NNP" ], "Oyster": [ "NNP", "NN" ], "gunning": [ "VBG", "NN" ], "Computations": [ "NNS" ], "ninth-largest": [ "JJ" ], "runny": [ "JJ" ], "Simulation": [ "NN" ], "caterpillar": [ "NN" ], "downright": [ "RB", "JJ" ], "Hartnett": [ "NNP" ], "Kymberly": [ "NNP" ], "Syntex": [ "NNP" ], "soddenly": [ "RB" ], "Semiconductors": [ "NNPS", "NNP" ], "arrested": [ "VBN", "VBD" ], "Derr": [ "NNP" ], "superficiality": [ "NN" ], "enterteyned": [ "VBD" ], "lofts": [ "NNS" ], "non-comparable": [ "JJ" ], "hawkers": [ "NNS" ], "long-shelf-life": [ "JJ" ], "pepping": [ "VBG" ], "methacrylate": [ "NN" ], "counterbid": [ "NN" ], "calmly": [ "RB" ], "durability": [ "NN" ], "Shabbat": [ "NNP" ], "skins": [ "NNS" ], "Moulin": [ "NNP" ], "untrustworthy": [ "JJ" ], "FmHA": [ "NNP" ], "Shelagh": [ "NNP" ], "imperiling": [ "VBG" ], "Thereupon": [ "RB" ], "chart-room": [ "JJ" ], "redressed": [ "VBN" ], "Luncheon": [ "NNP" ], "Rue": [ "NNP", "FW", "NN" ], "lurks": [ "VBZ" ], "Producers": [ "NNS", "NNPS", "NNP" ], "E-II": [ "NNP" ], "languish": [ "VB" ], "housings": [ "NNS" ], "Econoclast": [ "NNP" ], "Anspach": [ "NNP" ], "telecommunication": [ "NN" ], "Dodd": [ "NNP" ], "birefringence": [ "NN" ], "ascending": [ "VBG" ], "Dods": [ "NNP" ], "Brenham": [ "NNP" ], "existentialist": [ "NN" ], "Minpeco": [ "NNP" ], "Costaggini": [ "NNP" ], "wrath": [ "NN" ], "Ripa": [ "NNP", "NN" ], "bioinsecticides": [ "NNS" ], "Ripe": [ "NNP" ], "Guideposts": [ "NNPS", "NNP" ], "Angrily": [ "RB" ], "or...": [ ":" ], "punctuated": [ "VBN" ], "Burlingame": [ "NNP" ], "major-market": [ "JJ" ], "triple-crown": [ "JJ" ], "chinked": [ "VBN" ], "mass-produced": [ "JJ" ], "fictions": [ "NNS" ], "Handled": [ "VBN" ], "non-lawyers": [ "NNS" ], "fee-for-service": [ "JJ" ], "once-mighty": [ "JJ" ], "economy...": [ ":" ], "Handler": [ "NNP", "NN" ], "Handley": [ "NNP" ], "immensely": [ "RB" ], "Gortonists": [ "NNS", "NNPS" ], "crime-fighting": [ "JJ" ], "yuan": [ "NN", "NNS" ], "Haislip": [ "NNP" ], "hawks": [ "NNS", "VBZ" ], "Beech": [ "NNP" ], "Hanson": [ "NNP" ], "tufts": [ "NNS" ], "Desert": [ "NNP", "NN" ], "shallowness": [ "NN" ], "Checci": [ "NNP" ], "Cerf": [ "NNP" ], "Strongly": [ "RB" ], "urban-fringe": [ "JJ" ], "reprobate": [ "NN" ], "Scotian": [ "NNP" ], "foreclose": [ "VB" ], "digs": [ "VBZ", "NNS" ], "Cerv": [ "NNP" ], "Pacify": [ "VB" ], "sober-faced": [ "JJ" ], "space-age": [ "JJ" ], "requisite": [ "JJ" ], "unscented": [ "VBN" ], "matting": [ "NN" ], "Anterior": [ "NNP" ], "data-gathering": [ "JJ" ], "rill": [ "NN" ], "Shepard": [ "NNP" ], "Bentham": [ "NNP" ], "evaporates": [ "VBZ" ], "bitterness": [ "NN" ], "non-alcoholic": [ "JJ" ], "townspeople": [ "NN" ], "knights": [ "NNS" ], "girlishly": [ "RB" ], "evaporated": [ "VBD", "VBN" ], "AUSTIN": [ "NNP" ], "Fads": [ "NNS" ], "abstracting": [ "VBG" ], "palace": [ "NN" ], "overdependence": [ "NN" ], "Alors": [ "FW" ], "Glaze": [ "VB" ], "reassert": [ "VB" ], "ginger": [ "NN" ], "two-burner": [ "JJ" ], "floodlit": [ "JJ" ], "OPTIONS": [ "NNS" ], "Anheuser-Busch": [ "NNP" ], "TEMPORARY": [ "JJ" ], "Nesbit": [ "NNP" ], "Holderlin": [ "NNP" ], "communicative": [ "JJ" ], "collectivizers": [ "NNS" ], "Cochran": [ "NNP" ], "fitting": [ "JJ", "NN", "VBG" ], "sleeper": [ "NN" ], "Mugabe": [ "NNP" ], "insularity": [ "NN" ], "tunnels": [ "NNS" ], "salubrious": [ "JJ" ], "Medical-supply": [ "JJ" ], "show-stoppers": [ "NNS" ], "Ivan": [ "NNP" ], "two-lane": [ "JJ" ], "observation": [ "NN" ], "Hammerschmidt": [ "NNP" ], "overloud": [ "JJ" ], "impostor": [ "NN" ], "breathes": [ "VBZ" ], "breather": [ "NN" ], "self-destructive": [ "JJ" ], "unadjusted": [ "JJ" ], "hamming": [ "VBG", "NN" ], "Ballets": [ "NNP", "NNS" ], "Durrell": [ "NNP" ], "Nazism": [ "NNP" ], "Laszlo": [ "NNP" ], "annoyed": [ "VBN", "VBD", "JJ" ], "Bowne": [ "NNP" ], "Opponents": [ "NNS" ], "aquatic": [ "JJ" ], "small-city": [ "NN" ], "brutalities": [ "NNS" ], "peasanthood": [ "NN" ], "food-packaging": [ "JJ" ], "Hwa-Shan": [ "NNP" ], "Carmine": [ "NNP" ], "northeast": [ "NN", "JJ", "RB" ], "flatulent": [ "JJ" ], "price-earnings": [ "JJ", "NN", "NNS" ], "jailed": [ "VBN", "VBD", "JJ" ], "palliative": [ "JJ" ], "Havana": [ "NNP" ], "Campenhout": [ "NNP" ], "Mnouchkine": [ "NNP" ], "Leave": [ "VB" ], "Satellites": [ "NNS" ], "asset-allocation": [ "JJ", "NN" ], "watermelon": [ "NN" ], "consensus-seeker": [ "NN" ], "MicroAge": [ "NNP" ], "earl": [ "NN" ], "earn": [ "VB", "VBP" ], "Honored": [ "VBN" ], "dicendi": [ "FW" ], "Fokker": [ "NNP" ], "metric-ton-per-year": [ "JJ" ], "stooges": [ "NNS" ], "monumental": [ "JJ" ], "winced": [ "VBD", "VBN" ], "enchant": [ "VB" ], "pug-nosed": [ "JJ" ], "ears": [ "NNS" ], "humanly": [ "RB" ], "Billboarding": [ "NNP" ], "diminutive": [ "JJ" ], "Stickney": [ "NNP" ], "roasted": [ "VBN", "JJ", "VBD" ], "alterations": [ "NNS" ], "unmurmuring": [ "JJ" ], "allure": [ "NN" ], "nontraditional": [ "JJ" ], "PARTNER": [ "NN" ], "inter-city": [ "JJ" ], "incorporating": [ "JJ", "VBG" ], "antifraud": [ "NN" ], "unflatteringly": [ "RB" ], "Bettner": [ "NNP" ], "Tool": [ "NNP", "NN" ], "woozy": [ "JJ" ], "Inferiority": [ "NN" ], "artificial": [ "JJ", "NN" ], "globalism": [ "NN" ], "Maronites": [ "NNPS" ], "Toot": [ "NNP", "UH" ], "Back-to-back": [ "JJ" ], "bloodstains": [ "NNS" ], "globalist": [ "NN" ], "adjudged": [ "VBN" ], "Boettcher": [ "NNP" ], "homebuilding": [ "NN" ], "medium-grade": [ "JJ" ], "insinuated": [ "VBD" ], "wears": [ "VBZ" ], "Lipshie": [ "NNP" ], "Usurpations": [ "NNS" ], "physicist": [ "NN" ], "lotion": [ "NN" ], "search-and-examination": [ "JJ" ], "architect-developer": [ "NN" ], "hundreds-of-billions-of-yen": [ "JJ" ], "arrogating": [ "VBG" ], "insinuates": [ "VBZ" ], "cuirassiers": [ "NNS" ], "cousin": [ "NN" ], "data-collection": [ "NN" ], "suggested": [ "VBD", "VBN", "JJ" ], "Saturated": [ "JJ" ], "civilised": [ "JJ" ], "McDonald": [ "NNP", "NN", "VB" ], "wounding": [ "VBG" ], "jotted": [ "JJ" ], "nothing-down": [ "JJ" ], "sweepers": [ "NNS" ], "Stevenses": [ "NNPS" ], "Cassim": [ "NNP" ], "Gemina": [ "NNP" ], "presumably": [ "RB" ], "Patagonians": [ "NNPS" ], "Soldado": [ "NNP" ], "air-charter": [ "JJ" ], "eulogized": [ "VBD" ], "Papal": [ "JJ" ], "Lorraine": [ "NNP" ], "lanterns": [ "NNS", "VBZ" ], "foray": [ "NN" ], "WCRS": [ "NNP" ], "Legally": [ "RB" ], "Shinpan": [ "NNP" ], "copycat": [ "NN" ], "tint": [ "VBP", "NN" ], "tins": [ "NNS" ], "Vocabulary": [ "NNP" ], "basis": [ "NN" ], "Ryne": [ "NNP" ], "Waters": [ "NNP" ], "yaks": [ "NNS" ], "patrolling": [ "VBG", "NN" ], "Lamos": [ "NNP" ], "tiny": [ "JJ" ], "Lamon": [ "NNP" ], "commission": [ "NN", "VB" ], "mid-Atlantic": [ "JJ" ], "detrimental": [ "JJ" ], "interest": [ "NN", "VBP", "VB" ], "basic": [ "JJ", "NN" ], "basil": [ "NN" ], "Marxist-Leninist": [ "JJ", "NNP" ], "basin": [ "NN" ], "Kong-dollar": [ "NN" ], "meritocracy": [ "NN" ], "Hibor": [ "NNP" ], "deeper": [ "JJR", "RBR", "RB" ], "Saddle": [ "NNP" ], "dismiss": [ "VB", "VBP" ], "yellowing": [ "VBG" ], "shattering": [ "VBG", "JJ" ], "runup": [ "NN" ], "tolled": [ "VBN" ], "MISUSE": [ "NNP" ], "deepen": [ "VB" ], "downplay": [ "VB" ], "stockpickers": [ "NNS" ], "Ohga": [ "NNP" ], "commercial-switch": [ "JJ" ], "Centrale": [ "NNP" ], "affirm": [ "VB", "VBP" ], "all-knowing": [ "JJ" ], "luggage": [ "NN" ], "toll-rate": [ "JJ" ], "courageously": [ "RB" ], "GM-Jaguar": [ "JJ", "NNP" ], "unshed": [ "JJ" ], "pessimistic": [ "JJ" ], "settles": [ "VBZ" ], "parastatals": [ "NNS" ], "tax-haven": [ "JJ", "NN" ], "track": [ "NN", "VBP", "VB" ], "mauling": [ "VBG" ], "Chastened": [ "VBN" ], "Grevyles": [ "NNP" ], "ABBIE": [ "NNP" ], "lasses": [ "NNS" ], "museums": [ "NNS" ], "waging": [ "VBG" ], "level-headed": [ "JJ" ], "non-refundable": [ "JJ" ], "parish": [ "NN" ], "V.": [ "NNP", "CC", "IN" ], "stickier": [ "JJR" ], "maryed": [ "VBN" ], "Dixieland": [ "NNP", "NN" ], "Catalyst": [ "NNP" ], "shoveling": [ "VBG" ], "Bare-Faced": [ "NNP" ], "VA": [ "NNP" ], "bearded": [ "JJ", "VBD", "VBN" ], "Valued": [ "VBN" ], "VF": [ "NNP" ], "tax-give-away": [ "JJ" ], "renaissance": [ "NN", "NNP" ], "VS": [ "NNP" ], "Values": [ "NNPS", "NNP", "NNS" ], "VW": [ "NNP" ], "Va": [ "NNP" ], "black-majority": [ "JJ" ], "inherit": [ "VB", "VBP" ], "Howorth": [ "NNP" ], "Coniston": [ "NNP", "NN" ], "Vt": [ "NNP" ], "Vu": [ "NNP" ], "TVwhich": [ "NNP" ], "pro-independence": [ "JJ" ], "flops": [ "VBZ", "NNS" ], "investments": [ "NNS" ], "McMullan": [ "NNP" ], "etiquette": [ "NN" ], "Politburo": [ "NNP" ], "well-diversified": [ "JJ" ], "yen": [ "NNS", "NN" ], "Muses": [ "NNP" ], "year-old": [ "JJ" ], "yes": [ "UH", "RB" ], "five-and-dime": [ "JJ", "NN" ], "yet": [ "RB", "CC" ], "Musee": [ "NNP" ], "nudge": [ "VB", "NN" ], "brassiere": [ "NN" ], "decade-old": [ "JJ" ], "Demetrius": [ "NNP" ], "royal": [ "JJ", "NN" ], "bantered": [ "VBN" ], "Giving": [ "VBG" ], "julep": [ "NN" ], "inefficiencies": [ "NNS" ], "translucent": [ "JJ" ], "contestant": [ "NN" ], "save": [ "VB", "IN", "VBP" ], "trimming": [ "VBG", "NN" ], "Brinson": [ "NNP" ], "sapped": [ "VBN", "VBD" ], "roosting": [ "VBG" ], "sailors": [ "NNS" ], "BAKER": [ "NNP" ], "ski-joring": [ "NN" ], "Schulze": [ "NNP" ], "Farrow": [ "NNP" ], "Hatton": [ "NNP" ], "nationalists": [ "NNS" ], "KPMG": [ "NNP" ], "Overseas": [ "NNP", "JJ", "RB" ], "coincide": [ "VB", "VBP" ], "hatchback": [ "NN" ], "Pollen": [ "NNP" ], "Discrepancies": [ "NNS" ], "A.F.": [ "NNP" ], "occlusion": [ "NN" ], "career-risking": [ "JJ" ], "chuffing": [ "VBG" ], "game-winning": [ "JJ" ], "Orinoco": [ "NNP" ], "zombies": [ "NNS" ], "Immunex": [ "NNP" ], "angelfish": [ "NN" ], "Witness": [ "VB", "NNP" ], "fur-lined": [ "JJ" ], "theorists": [ "NNS" ], "shuttles": [ "NNS", "VBZ" ], "bookseller": [ "NN" ], "somehow": [ "RB", "WRB" ], "elderly": [ "JJ", "NN" ], "platters": [ "NNS" ], "vaulted": [ "VBD" ], "blacked-in": [ "JJ" ], "sluicehouse": [ "NN" ], "Noufou": [ "NNP" ], "income-support": [ "NN" ], "Stalingr": [ "NNP" ], "uncoated": [ "JJ" ], "Kyzyl": [ "NNP" ], "noncumulative": [ "JJ" ], "Siege": [ "NNP" ], "seized-property": [ "JJ" ], "archivist": [ "NN" ], "runing": [ "VBG" ], "offcourse": [ "JJ" ], "Moliere": [ "NNP" ], "Rising": [ "VBG" ], "slurry": [ "NN" ], "Vadim": [ "NNP" ], "epigenetic": [ "JJ" ], "Odilo": [ "NNP" ], "molecule": [ "NN" ], "four-color": [ "JJ" ], "two-component": [ "JJ" ], "unreason": [ "NN" ], "end-of-season": [ "JJ" ], "fire-crackers": [ "NNS" ], "videotex": [ "NN" ], "digestible": [ "JJ" ], "inedible": [ "JJ" ], "non-scientist": [ "JJ" ], "Simsbury": [ "NNP" ], "near-maddened": [ "JJ" ], "barbarians": [ "NNS" ], "submarine": [ "NN", "JJ" ], "magazine": [ "NN" ], "Pressing": [ "VBG" ], "Including": [ "VBG", "NNP" ], "Swinging": [ "VBG" ], "nonstrikers": [ "NNS" ], "double-bogeyed": [ "VBD" ], "Marley": [ "NNP" ], "Haskins": [ "NNP" ], "ores": [ "NNS" ], "thinner": [ "JJR", "NN" ], "anointing": [ "VBG" ], "pungency": [ "NN" ], "Urien": [ "NNP" ], "Lehman": [ "NNP" ], "paunch": [ "NN" ], "jetting": [ "VBG" ], "fumes": [ "NNS", "VBZ" ], "slurs": [ "NNS" ], "scalded": [ "VBN" ], "thinned": [ "VBN", "VBD" ], "non-cash": [ "JJ" ], "murderers": [ "NNS" ], "slipshod": [ "JJ" ], "Unless": [ "IN", "NNP" ], "NBS": [ "NNP" ], "flying": [ "VBG", "VBG|NN|JJ", "JJ", "NN" ], "jealousy": [ "NN" ], "voice-processing": [ "JJ" ], "old-line": [ "JJ", "NN" ], "Chinese-style": [ "JJ" ], "NBI": [ "NNP" ], "Backed": [ "VBN", "NNP" ], "vacated": [ "VBN", "VBD" ], "NBA": [ "NNP" ], "factions": [ "NNS" ], "most-favored-nation": [ "JJ" ], "expectancies": [ "NNS" ], "Pressure-happy": [ "JJ" ], "Konzerthaus": [ "NNP" ], "Gazdag": [ "NNP" ], "January": [ "NNP" ], "spike": [ "NN", "VB" ], "GenCorp": [ "NNP" ], "avions": [ "FW" ], "educations": [ "NNS" ], "unpadded": [ "JJ" ], "Masuda": [ "NNP" ], "assented": [ "VBD", "VBN" ], "B.D.": [ "NNP" ], "titters": [ "NNS" ], "Franke": [ "NNP" ], "prevents": [ "VBZ" ], "caution": [ "NN", "VBP", "VB" ], "energize": [ "VB" ], "Franks": [ "NNPS" ], "Unilever": [ "NNP" ], "tollways": [ "RB" ], "horrifying": [ "JJ" ], "average": [ "JJ", "NN", "VB", "VBP" ], "optical-storage": [ "JJ" ], "Sybert": [ "NNP" ], "spotlighted": [ "VBN" ], "neuritis": [ "NN" ], "D-Mass.": [ "NNP" ], "Nuclear": [ "NNP", "JJ" ], "erupts": [ "VBZ" ], "beautifully-tapered": [ "JJ" ], "wriggling": [ "VBG" ], "Masse": [ "NNP" ], "thunk": [ "NN" ], "pimpled": [ "JJ" ], "Massa": [ "NNP" ], "tarnished": [ "VBN", "JJ", "VBD" ], "Gaza": [ "NNP" ], "muffins": [ "NNS" ], "unallocable": [ "JJ" ], "Highway": [ "NNP", "NN" ], "graft": [ "NN", "VB" ], "bruinish": [ "JJ" ], "marking": [ "VBG", "NN" ], "bruising": [ "JJ", "VBG" ], "cents-a-unit": [ "JJ" ], "fosters": [ "VBZ" ], "Klerk": [ "NNP" ], "Bimini": [ "NNP" ], "Tagliabue": [ "NNP" ], "Velcro": [ "NN" ], "Sanger-Harris": [ "NNP" ], "tamale": [ "NN" ], "pouted": [ "VBD" ], "roomier": [ "JJR" ], "Criminalization": [ "NN" ], "braking": [ "VBG", "NN" ], "Drive": [ "NNP", "NN", "VB" ], "parenthood": [ "NN" ], "cement-truck": [ "JJ" ], "journey": [ "NN", "VB" ], "NEARLY": [ "JJ", "RB" ], "budded": [ "VBD" ], "magnificence": [ "NN" ], "Mass.": [ "NNP" ], "weekend": [ "NN" ], "Iroquois": [ "NNP" ], "Rothe": [ "NNP" ], "jacked": [ "VBD", "VBN" ], "Lithell": [ "NNP" ], "Echoing": [ "VBG" ], "cut-and-paste": [ "VB" ], "Mendelson": [ "NNP" ], "Decisions": [ "NNS" ], "trembled": [ "VBD" ], "jacket": [ "NN" ], "stripping": [ "VBG", "NN" ], "taxlow": [ "NN" ], "profits": [ "NNS", "VBZ" ], "Apalachicola": [ "NNP" ], "vermilion": [ "JJ", "NN" ], "Systeme": [ "NNP" ], "five-game": [ "JJ" ], "Desmond": [ "NNP" ], "cattlemen": [ "NNS" ], "commentaries": [ "NNS" ], "anticipation": [ "NN" ], "Armisteads": [ "NNPS" ], "disorders": [ "NNS" ], "unrelieved": [ "JJ" ], "Hosogane": [ "NNP" ], "Atlas-Centaur": [ "NNP" ], "bond-fund": [ "NN" ], "expansion-contraction": [ "NN" ], "blasphemies": [ "NNS" ], "Danzig": [ "NNP" ], "advises": [ "VBZ" ], "Grill": [ "NNP" ], "hypercellularity": [ "NN" ], "trouble-free": [ "JJ" ], "defying": [ "VBG" ], "advised": [ "VBN", "VBD", "JJ" ], "unworn": [ "JJ" ], "Donaldson": [ "NNP" ], "mayorship": [ "NN" ], "Riben": [ "NNP" ], "swapping": [ "VBG", "NN" ], "hang-ups": [ "NNS" ], "Smythe": [ "NNP" ], "Cortese": [ "NNP" ], "Distally": [ "RB" ], "Potemkin": [ "NNP" ], "noiseless": [ "JJ" ], "Bordetella": [ "NN" ], "round": [ "NN", "IN", "JJ", "VBP", "RB", "VB" ], "Ribes": [ "NNP" ], "surgically": [ "RB" ], "rhapsodizing": [ "VBG" ], "unexpected": [ "JJ" ], "Jacchia": [ "NNP" ], "Beefing": [ "VBG" ], "Jardine": [ "NNP" ], "Ath.": [ "NNP" ], "Lags": [ "VBZ" ], "Opus": [ "NNP" ], "Issuing": [ "VBG", "NN" ], "bombardment": [ "NN" ], "Niva": [ "NNP" ], "ravenous": [ "JJ" ], "circulars": [ "NNS" ], "Head": [ "NNP", "NN" ], "filler": [ "NN" ], "filles": [ "FW" ], "Orion": [ "NNP" ], "pound-DM": [ "JJ" ], "acquisitiveness": [ "NN" ], "Wrote": [ "VBD" ], "Heat": [ "NN", "NNP" ], "deficiencies": [ "NNS" ], "Hear": [ "VB" ], "Defensive": [ "JJ" ], "international": [ "JJ", "NN" ], "Piller": [ "NNP" ], "Forever": [ "NNP", "RB" ], "impassiveness": [ "NN" ], "shutters": [ "NNS" ], "dwarf": [ "NN", "VBP", "VB" ], "Cooperman": [ "NNP" ], "Fingerprints": [ "NNS" ], "high-protein": [ "JJ" ], "JCKC": [ "NNP" ], "Keeshond": [ "NN" ], "Goodwills": [ "NNPS" ], "wearily": [ "RB" ], "exemplified": [ "VBN" ], "Lotus": [ "NNP", "NN" ], "fleetest": [ "JJS" ], "Railroads": [ "NNPS", "NNP", "NNS" ], "jungles": [ "NNS" ], "exemplifies": [ "VBZ" ], "Session": [ "NN" ], "redoubling": [ "VBG" ], "Glison": [ "NNP" ], "two-foot": [ "JJ" ], "slackened": [ "VBD", "JJ", "VBN" ], "recounting": [ "VBG" ], "insolent": [ "JJ" ], "statewide": [ "JJ", "RB" ], "merely": [ "RB" ], "Ossad": [ "NNP" ], "sweating": [ "VBG", "NN" ], "fox-terrier": [ "NN" ], "spiffing": [ "JJ" ], "mid-1960s": [ "NNS" ], "Thrush": [ "NNP" ], "Beecham": [ "NNP" ], "lieutenants": [ "NNS" ], "visit": [ "NN", "VB", "VBP" ], "head-hunting": [ "NN" ], "disaffiliated": [ "JJ" ], "Pietism": [ "NNP" ], "Novell": [ "NNP" ], "Endless": [ "JJ" ], "Comment": [ "NN", "NNP" ], "preserving": [ "VBG" ], "Solid": [ "JJ", "NNP", "NN" ], "unequaled": [ "JJ" ], "cancer-suppressors": [ "NNS" ], "Hayes": [ "NNP" ], "lovelier-than-life": [ "JJ" ], "Hayek": [ "NNP" ], "Rebels": [ "NNS" ], "real-estate-related": [ "JJ" ], "reelected": [ "VBN" ], "Cuatrecasas": [ "NNP" ], "premarital": [ "JJ" ], "birthrate": [ "NN" ], "Kappil": [ "NNP" ], "Improvements": [ "NNP", "NNS" ], "making": [ "VBG", "NN" ], "Archive": [ "NNP" ], "nearest": [ "JJS", "RBS", "IN" ], "Fundamentally": [ "RB" ], "frescoes": [ "NNS" ], "flouting": [ "NN", "VBG" ], "greenest": [ "JJS" ], "Gulfstream": [ "NNP" ], "Yemens": [ "NNPS" ], "frescoed": [ "JJ" ], "voice-recognition": [ "NN" ], "burgeoning": [ "VBG", "JJ" ], "Tristan": [ "NNP", "FW", "NN" ], "overreacting": [ "VBG" ], "Arpanet": [ "NNP" ], "two-dozen": [ "JJ" ], "equipment-leasing": [ "JJ" ], "trollop": [ "NN" ], "Pretender": [ "NN" ], "Row": [ "NNP", "NN" ], "persuasion": [ "NN" ], "Shoppsers": [ "NNS" ], "testicle": [ "NN" ], "bond-price": [ "JJ" ], "Raymon": [ "NNP" ], "Kreditanstalt": [ "NNP" ], "Rapier": [ "NN" ], "Milenoff": [ "NNP" ], "deforestation": [ "NN" ], "COOKE": [ "NNP" ], "Sexton": [ "NN", "NNP" ], "Succession": [ "NN", "NNP" ], "Teatime": [ "NN" ], "noun": [ "NN" ], "CERA": [ "NNP" ], "basked": [ "VBD" ], "Series": [ "NNP", "NN", "NNS", "NNPS" ], "purify": [ "VB", "VBP" ], "Magazine": [ "NNP", "NN" ], "Carliner": [ "NNP" ], "auto-limitation": [ "NN" ], "spray-dried": [ "JJ" ], "Kerby": [ "NNP" ], "HOPE": [ "VBP" ], "abuzz": [ "JJ" ], "basket": [ "NN" ], "nous": [ "FW" ], "non-call": [ "JJ" ], "Medicare-catastrophic-care": [ "JJ" ], "shoes": [ "NNS" ], "backs": [ "NNS", "VBZ" ], "Nutcracker": [ "NNP", "NN" ], "COMPUTERS": [ "NNS", "NNP" ], "Leshem": [ "NNP" ], "Mutual": [ "NNP", "JJ" ], "mediaevalist": [ "NN" ], "underpriced": [ "JJ", "VBN", "VBN|JJ" ], "Olvey": [ "NNP" ], "Asra": [ "NNP" ], "petrochemicals": [ "NNS" ], "equip": [ "VB", "VBP" ], "winger": [ "NN" ], "jock": [ "NN" ], "observational": [ "JJ" ], "Balkanizing": [ "VBG" ], "group": [ "NN", "VB", "VBP" ], "monitor": [ "VB", "NN", "VBP" ], "interesting": [ "JJ" ], "Pancoast": [ "NNP" ], "Uniroyal": [ "NNP" ], "FADA": [ "NNP" ], "Muslims": [ "NNPS", "NNP" ], "FADE": [ "VBP" ], "Listerine": [ "NNP" ], "Hanlon": [ "NNP" ], "Japanese-type": [ "JJ" ], "INGERSOLL-RAND": [ "NNP" ], "Fanny": [ "NNP" ], "repriced": [ "VBN" ], "resignedly": [ "RB" ], "Washington-area": [ "JJ" ], "Kyle": [ "NNP" ], "-ing": [ "JJ" ], "Jellyby": [ "NNP" ], "Vocational": [ "NNP", "JJ" ], "MIG-2": [ "JJ" ], "leopards": [ "NNS" ], "Appalled": [ "JJ" ], "rattles": [ "VBZ" ], "rattler": [ "NN" ], "handbills": [ "NNS" ], "workload": [ "NN" ], "withholdings": [ "NNS" ], "feverish": [ "JJ" ], "Bertoli": [ "NNP" ], "thunder-purple": [ "JJ" ], "Purse": [ "NNP" ], "AIB.PR": [ "NNP" ], "wide-cut": [ "JJ" ], "Minimum": [ "NNP" ], "careless": [ "JJ" ], "seacoast": [ "NN" ], "Bertolt": [ "NNP" ], "Turnbull": [ "NNP" ], "Byzas": [ "NNP" ], "vogue": [ "NN" ], "brews": [ "VBZ", "NNS" ], "Oczakov": [ "NNP" ], "Eritrea": [ "NNP" ], "Holdings": [ "NNP", "NNPS", "NNS" ], "Health-insurance": [ "NN" ], "treacherous": [ "JJ" ], "some...": [ ":" ], "conventions": [ "NNS" ], "Saviour": [ "NNP" ], "speculators": [ "NNS" ], "fingertips": [ "NNS" ], "worried": [ "VBN", "VBD", "JJ" ], "shewe": [ "NN" ], "Keo": [ "NNP" ], "Pomham": [ "NNP" ], "Upham": [ "NNP" ], "Kel": [ "NNP" ], "stitch": [ "NN" ], "Keg": [ "NNP" ], "horoscope": [ "NN" ], "Gauloises": [ "NNP", "NNPS" ], "earlier-announced": [ "JJ" ], "condemns": [ "VBZ" ], "Formation": [ "NNP" ], "Aires": [ "NNP" ], "Key": [ "NNP", "JJ", "NN" ], "Luvs": [ "NNPS" ], "Cefiro": [ "NNP" ], "patenting": [ "NN" ], "brimming": [ "VBG" ], "Bloomingdale": [ "NNP" ], "Pro-life": [ "JJ" ], "Commerce": [ "NNP", "NN" ], "Comrade": [ "NN" ], "earthquake-triggered": [ "JJ" ], "furtively": [ "RB" ], "semi-autonomous": [ "JJ" ], "bringing": [ "VBG", "NN" ], "Baudelaire": [ "NNP" ], "Gorshin": [ "NNP" ], "Afternoon": [ "UH" ], "intendants": [ "NNS" ], "attarcks": [ "NNS" ], "Baku": [ "NNP" ], "Installed": [ "VBN" ], "Gesell": [ "NNP" ], "registrar": [ "NN" ], "funks": [ "NNS" ], "Huntington": [ "NNP" ], "Bake": [ "NNP", "VB" ], "Sherwin": [ "NNP" ], "remorseful": [ "JJ" ], "Epes": [ "NNP" ], "Humanities": [ "NNP" ], "tidying": [ "VBG" ], "nutritional": [ "JJ" ], "specificity": [ "NN" ], "Inflationary": [ "JJ" ], "methodological": [ "JJ" ], "Demands": [ "NNS" ], "Jalalabad": [ "NNP" ], "Posey": [ "NNP" ], "PVC": [ "NNP" ], "health-and-benefits": [ "JJ" ], "lambaste": [ "VB", "VBP" ], "fiery": [ "JJ" ], "A[fj]": [ "SYM" ], "Teen-agers": [ "NNS" ], "foreign-led": [ "JJ" ], "meme": [ "FW" ], "gaudy": [ "JJ" ], "Oberweis": [ "NNP" ], "Sauerteig": [ "NNP" ], "adjourned": [ "VBD", "VBN" ], "allegedly": [ "RB" ], "lean-to": [ "JJ", "NN" ], "memo": [ "NN" ], "Deposits": [ "NNS", "NNPS" ], "LOOKING": [ "VBG" ], "Samurai": [ "NNP" ], "straw-colored": [ "JJ" ], "semiconductor-production": [ "NN" ], "illegality": [ "NN" ], "remora": [ "NNS" ], "scraping": [ "VBG", "NN" ], "areosol": [ "NN" ], "Hendersonville": [ "NNP" ], "centigrade": [ "JJ" ], "Right-hander": [ "JJ" ], "Materialism": [ "NN" ], "strolls": [ "VBZ" ], "Subsistencias": [ "NNP" ], "lick": [ "VB" ], "Container": [ "NNP" ], "librarian-board": [ "NN" ], "lice": [ "NNS" ], "entombed": [ "VBN" ], "Tight": [ "JJ" ], "Karnes": [ "NNP" ], "pro-forma": [ "FW" ], "modality": [ "NN" ], "initiatiors": [ "NNS" ], "recreated": [ "VBN" ], "Pierre-Karl": [ "NNP" ], "vestments": [ "NNS" ], "Visitation": [ "NNP" ], "Murphy": [ "NNP" ], "Langley": [ "NNP" ], "recreates": [ "VBZ" ], "performance": [ "NN" ], "Francophone": [ "JJ" ], "store-front": [ "JJ" ], "bets": [ "NNS" ], "formulas": [ "NNS" ], "Thule": [ "NNP" ], "Dellwood": [ "NNP" ], "comings": [ "NNS" ], "Hatchet": [ "NNP" ], "incidence": [ "NN" ], "Tristano": [ "NNP", "NN" ], "rehearsal": [ "NN" ], "assault": [ "NN", "VBP" ], "barrage": [ "NN" ], "bete": [ "JJ" ], "formulae": [ "NNS" ], "complaints": [ "NNS" ], "Dworkin": [ "NNP" ], "Hatched": [ "VBN" ], "proxies": [ "NNS" ], "spaced": [ "VBN", "JJ" ], "queens": [ "NNS" ], "Beyond": [ "IN", "NNP" ], "radioactive": [ "JJ" ], "Littlepage": [ "NNP" ], "multi-product": [ "JJ" ], "Favored": [ "JJ", "VBN" ], "creativeness": [ "NN" ], "cowpuncher": [ "NN" ], "scowl": [ "VBP" ], "voodoo": [ "NN" ], "Dominguez": [ "NNP" ], "Coogan": [ "NNP" ], "down-down": [ "JJ" ], "watered-down": [ "JJ" ], "rejoinder": [ "NN" ], "playoffs": [ "NNS" ], "newer": [ "JJR" ], "finger-sucking": [ "NN" ], "kwon": [ "FW" ], "voter": [ "NN" ], "Delloye": [ "NNP" ], "bank-teller": [ "NN" ], "Gabriela": [ "NNP" ], "tiredness": [ "NN" ], "Stephen": [ "NNP" ], "Condit": [ "NNP" ], "Health-Chem": [ "NNP" ], "Fosdick": [ "NNP" ], "Across": [ "IN", "NNP" ], "reek": [ "VBP", "NN" ], "despairingly": [ "RB" ], "stormy": [ "JJ" ], "reel": [ "NN", "VBP", "VB" ], "RIT": [ "NNP" ], "storms": [ "NNS" ], "non-dramas": [ "NNS" ], "analytic": [ "JJ", "NN" ], "McKinzie": [ "NNP" ], "Israeli-born": [ "JJ" ], "ice-baggers": [ "NNS" ], "helix": [ "NN" ], "ostensible": [ "JJ" ], "RID": [ "VB" ], "McGwire": [ "NNP", "NN" ], "sensitivities": [ "NNS" ], "awareness": [ "NN" ], "Confrontation": [ "NN" ], "Organizations": [ "NNP", "NNPS", "NNS" ], "geocentric": [ "JJ" ], "Large": [ "JJ", "NNP" ], "steel-quota": [ "NN" ], "unimportant": [ "JJ" ], "a.k.a.": [ "JJ" ], "Largo": [ "NNP" ], "sociability": [ "NN" ], "blends": [ "NNS" ], "Triton": [ "NNP" ], "Gillian": [ "NNP" ], "biosynthesized": [ "VBN" ], "Striking": [ "VBG", "JJ" ], "moodily": [ "RB" ], "supply-demand": [ "JJ", "NN" ], "morning": [ "NN" ], "rotationally": [ "RB" ], "Straits": [ "NNPS", "NNP", "NNS" ], "man.": [ "NN" ], "long-bubbling": [ "JJ" ], "Education": [ "NNP", "NN" ], "audited": [ "VBN", "JJ", "VBD" ], "Shotwell": [ "NNP" ], "Visualize": [ "VB" ], "Connoisseur": [ "NNP" ], "sensitives": [ "NNS" ], "Vital": [ "JJ", "NN" ], "eliminating": [ "VBG" ], "contains": [ "VBZ" ], "Acrylic": [ "NNP" ], "penny-stock": [ "JJ", "NN" ], "impetigo": [ "NN" ], "radiates": [ "VBZ" ], "Itching": [ "VBG" ], "Socinianism": [ "NNP" ], "RECORDS": [ "NNS" ], "enough": [ "RB", "JJ", "NN" ], "radiated": [ "VBD", "VBN", "JJ" ], "J.M.": [ "NNP", "." ], "luncheon-meat": [ "NN" ], "evensong": [ "NN" ], "approvals": [ "NNS" ], "Rescued": [ "VBN" ], "ascribed": [ "VBN", "VBD" ], "quarter-by-quarter": [ "JJ" ], "diverticulitis": [ "NN" ], "nationality": [ "NN" ], "pharmacists": [ "NNS" ], "Havens": [ "NNP" ], "coupons": [ "NNS" ], "Equally": [ "RB" ], "self-confessed": [ "JJ" ], "restroom": [ "NN" ], "cognizance": [ "NN" ], "guardians": [ "NNS" ], "Anfia": [ "NNP" ], "half-conscious": [ "JJ" ], "pacified": [ "VBD" ], "Lantos": [ "NNP" ], "Class-D": [ "NNP" ], "Pearl": [ "NNP" ], "pacifies": [ "VBZ" ], "pacifier": [ "NN" ], "Kohnstamm-negative": [ "JJ" ], "specialty-material": [ "JJ" ], "ascribes": [ "VBZ" ], "gear-sets": [ "NNS" ], "Anthropology": [ "NNP" ], "euphemisms": [ "NNS" ], "Southwood": [ "NNP" ], "Medicare-approved": [ "JJ" ], "tilts": [ "VBZ" ], "crossfire": [ "NN" ], "Constance": [ "NNP" ], "attaching": [ "VBG" ], "computer-oriented": [ "JJ" ], "judging": [ "VBG", "NN" ], "oxyhydroxides": [ "NNS" ], "Getulio": [ "NNP" ], "finial": [ "NN" ], "fiftieth": [ "JJ" ], "Millbrae": [ "NNP" ], "Romulo": [ "NNP" ], "Rothmeier": [ "NNP" ], "Pointe": [ "NNP" ], "oust": [ "VB" ], "squash": [ "NN", "RB" ], "laptops": [ "NNS" ], "Ackroyd": [ "NNP" ], "Points": [ "NNPS" ], "declaration": [ "NN" ], "Action": [ "NNP", "NN" ], "COME": [ "VBN" ], "Bamsi": [ "NNP" ], "sound": [ "NN", "JJ", "RB", "VB", "VBP", "VBZ" ], "cocu": [ "NN" ], "Ambulances": [ "NNS" ], "Allegretti": [ "NNP" ], "epidermis": [ "NN" ], "inadequacies": [ "NNS" ], "troopships": [ "NNS" ], "abortion-funding": [ "JJ" ], "coca": [ "NN" ], "many": [ "JJ", "DT", "NN", "RB", "VB", "NNS", "PDT" ], "cancelled": [ "VBN" ], "slapping": [ "VBG", "JJ", "NN" ], "cock": [ "NN" ], "nonlinguistic": [ "JJ" ], "Factors": [ "NNS", "NNP" ], "Sudan": [ "NNP" ], "Lutz": [ "NNP" ], "Antonio-based": [ "JJ" ], "Factory": [ "NN", "NNP" ], "dynamos": [ "NNS" ], "sleeping": [ "VBG", "NN", "VBG|NN" ], "strain": [ "NN", "VB", "VBP" ], "Chappaqua": [ "NNP" ], "releases": [ "NNS", "VBZ" ], "Monticciolo": [ "NNP" ], "primitives": [ "NNS" ], "Ovens": [ "NNS" ], "creaks": [ "NNS" ], "job-destroying": [ "JJ" ], "chromatography": [ "NN" ], "Grumble": [ "NNP" ], "belie": [ "VBP", "VB" ], "CD-4": [ "NNP" ], "Guignol": [ "NNP" ], "compiling": [ "VBG" ], "aerobics": [ "NN", "NNS" ], "clammy": [ "JJ" ], "safe-conduct": [ "NN" ], "unperceived": [ "VBN" ], "Hardwick": [ "NNP" ], "hypothalamic-cortical": [ "JJ" ], "pickoffs": [ "NNS" ], "Embedded": [ "VBN" ], "patrician": [ "JJ", "NN" ], "assist": [ "VB", "NN", "VBP" ], "Waldman": [ "NNP" ], "nacho-crunching": [ "JJ" ], "CD-I": [ "NNP" ], "rough-hewn": [ "JJ" ], "more-open": [ "JJ" ], "motorcade": [ "NN" ], "gas-producing": [ "JJ", "NN" ], "Tribes": [ "NNS" ], "shortwings": [ "NNS" ], "businesslike": [ "JJ" ], "Miller-Studds": [ "NNP" ], "biwa": [ "FW" ], "Motors": [ "NNPS", "NNP" ], "coming-of-age": [ "JJ" ], "Sweezey": [ "NNP" ], "A.K.C.": [ "NNP" ], "uncomplicated": [ "JJ" ], "cameramen": [ "NNS" ], "handouts": [ "NNS" ], "outdoor": [ "JJ" ], "sputters": [ "VBZ" ], "asset-backed": [ "JJ" ], "unionist": [ "NN" ], "sights": [ "NNS" ], "French-made": [ "JJ" ], "Plastic": [ "JJ", "NNP" ], "unofficial": [ "JJ" ], "Zaharah": [ "NNP" ], "thudding": [ "VBG" ], "despoiling": [ "VBG" ], "Git": [ "VB" ], "England-based": [ "JJ" ], "Rowland": [ "NNP" ], "Ramada": [ "NNP" ], "Taurus": [ "NNP" ], "Cezannes": [ "NNPS" ], "meteorite": [ "NN" ], "A5": [ "NN" ], "Soleil": [ "NNP" ], "atomisation": [ "NN" ], "Ulric": [ "NNP" ], "decentralization": [ "NN" ], "GROVE": [ "NNP" ], "PROSPER": [ "VBP" ], "Quadrille": [ "NNP" ], "nonconvertible": [ "JJ" ], "gnarled": [ "JJ" ], "remote-site": [ "NN" ], "credentials": [ "NNS" ], "Dolley": [ "NNP" ], "Operations": [ "NNP", "NNS", "NNPS", "FW" ], "Raised": [ "VBN" ], "hydrated": [ "JJ" ], "newly-married": [ "JJ" ], "epicycles": [ "NNS" ], "Warrants": [ "NNS" ], "twittered": [ "VBD" ], "Biden": [ "NNP" ], "reimbursing": [ "VBG" ], "gratifyingly": [ "RB" ], "Heinrich": [ "NNP" ], "bewitched": [ "VBN" ], "worries": [ "NNS", "VBZ" ], "market-based": [ "JJ" ], "turtle-neck": [ "JJ" ], "Pressured": [ "VBN" ], "Entertainment": [ "NNP", "NN" ], "nurture...": [ ":" ], "farm-engineering": [ "NN" ], "imaged": [ "VBN" ], "Pressures": [ "NNS" ], "AB": [ "NNP" ], "educator": [ "NN" ], "Kimberly-Clark": [ "NNP" ], "images": [ "NNS" ], "AIDS-infected": [ "JJ" ], "Assurance": [ "NNP" ], "AD": [ "NN", "NNP" ], "HOUSTON": [ "NNP" ], "Meg": [ "NNP", "NN" ], "outs": [ "NNS" ], "food-importing": [ "JJ" ], "princely": [ "JJ" ], "Augustin": [ "NNP" ], "Kolberg": [ "NNP" ], "Mel": [ "NNP" ], "Men": [ "NNS", "NNP", "NNPS", "NN" ], "mini-series": [ "NN", "NNS" ], "charlatans": [ "NNS" ], "Met": [ "NNP", "FW", "VBD", "VBN" ], "Reliability": [ "NN" ], "Sponsored": [ "VBN" ], "schoolteachers": [ "NNS" ], "rough-cut": [ "JJ" ], "millidegrees": [ "NNS" ], "Chisholm": [ "NNP" ], "knife": [ "NN" ], "Gorski": [ "NNP" ], "worst-hit": [ "JJ" ], "good-by": [ "UH", "RB" ], "Bendectin": [ "NNP" ], "dispensary": [ "NN" ], "Seabrook": [ "NNP" ], "Settle": [ "VB" ], "budget-priced": [ "JJ" ], "raptor": [ "NN" ], "ALQ-135": [ "NN" ], "Leigh": [ "NNP" ], "AP": [ "NNP" ], "Scared": [ "VBN", "JJ" ], "AS": [ "NNP", "IN" ], "Czeslaw": [ "NNP" ], "Sparcstation": [ "NNP" ], "ORTEGA": [ "NNP" ], "MacInnis": [ "NNP" ], "pockets": [ "NNS", "VBZ" ], "fallacy": [ "NN" ], "consolidate": [ "VB", "VBP" ], "Fanning": [ "NNP" ], "brainwashing": [ "NN" ], "unused": [ "JJ" ], "coupon": [ "NN" ], "skilled": [ "JJ", "VBN" ], "actuate": [ "VB" ], "harness": [ "NN", "VBP", "VB" ], "Output": [ "NN" ], "skillet": [ "NN" ], "Banstar": [ "NNP" ], "acquiesced": [ "VBD", "VBN" ], "Rhine-Westphalia": [ "NNP" ], "telescoping": [ "NN" ], "paraphernalia": [ "NNS", "NN" ], "restrained": [ "VBN", "VBD", "JJ" ], "disfavored": [ "JJ" ], "railcars": [ "NNS" ], "Lynch": [ "NNP" ], "oxidised": [ "VBN" ], "fanatic": [ "NN", "JJ" ], "Guilin": [ "NNP" ], "motherly": [ "JJ" ], "Autocracies": [ "NNPS" ], "Stopped": [ "VBN" ], "hurricanes": [ "NNS" ], "Mac-Reynolds": [ "NNP" ], "arranged": [ "VBN", "VBD" ], "Significantly": [ "RB" ], "lesson...": [ ":" ], "practically": [ "RB" ], "Soviet-Israeli": [ "JJ" ], "relabeling": [ "VBG" ], "Gesangverein": [ "NNP" ], "arranges": [ "VBZ" ], "peeking": [ "VBG" ], "eschew": [ "VB" ], "Satoshi": [ "NNP" ], "Wickes": [ "NNP", "NNS" ], "imagination": [ "NN" ], "single-adjudicator": [ "JJ" ], "Broeg": [ "NNP" ], "Frail": [ "JJ" ], "Secutities": [ "NNPS" ], "Wicked": [ "NNP" ], "again": [ "RB" ], "Accardo": [ "NNP" ], "goddam": [ "JJ" ], "J.R.": [ "NNP" ], "mother-only": [ "JJ" ], "cross-promotion": [ "NN" ], "earth-shattering": [ "JJ" ], "revisions": [ "NNS" ], "crew-pairing": [ "JJ" ], "At": [ "IN", "NNP" ], "unthinkingly": [ "RB" ], "withdraw": [ "VB", "VBP" ], "demobilize": [ "VB" ], "academies": [ "NNS" ], "Dorothy": [ "NNP" ], "Bull": [ "NNP", "NN" ], "marshes": [ "NNS" ], "Mojave": [ "NNP" ], "Schafer": [ "NNP" ], "grudge": [ "NN" ], "P-7A": [ "NNP" ], "culture-Protestantism": [ "NN" ], "collegiate": [ "JJ" ], "Song-sam": [ "NNP" ], "Kahler-Craft": [ "NNP" ], "Warsaw": [ "NNP" ], "colleges": [ "NNS" ], "lapped": [ "VBD", "VBN" ], "founder": [ "NN", "VB" ], "Workers": [ "NNPS", "NNP", "NNS" ], "allergy": [ "NN" ], "founded": [ "VBN", "VBD" ], "commute": [ "VBP", "NN" ], "THANKS": [ "NNS" ], "expressions": [ "NNS" ], "briefcases": [ "NNS" ], "shattered": [ "VBN", "JJ", "VBD" ], "preserves": [ "VBZ", "NNS" ], "Byzantine": [ "JJ", "NNP" ], "Kazushige": [ "NNP" ], "Davenport": [ "NNP" ], "Bayonne": [ "NNP" ], "TAX": [ "NN" ], "Fleischmann": [ "NNP" ], "Devout": [ "JJ" ], "crimson": [ "JJ", "NN" ], "Arenula": [ "NNP" ], "tycoon": [ "NN" ], "examiantion": [ "NN" ], "Training": [ "NNP", "NN" ], "unabashed": [ "JJ" ], "sitting": [ "VBG", "VBG|JJ", "NN" ], "authentications": [ "NNS" ], "Trikojus": [ "NNP" ], "Poussins": [ "NNS" ], "wiretap": [ "NN" ], "purrs": [ "VBZ" ], "Sebastian": [ "NNP" ], "Punishment": [ "NN" ], "elated": [ "JJ", "VBN" ], "washing": [ "VBG", "NN" ], "whiskey-baritoned": [ "JJ" ], "drugged": [ "VBN", "JJ" ], "Beaumont": [ "NNP" ], "blares": [ "VBZ" ], "Primaxin": [ "NNP" ], "big-money": [ "JJ" ], "bypassed": [ "VBN", "VBD" ], "Uneasiness": [ "NN" ], "blared": [ "VBD" ], "tribal": [ "JJ" ], "Abiomed": [ "NNP" ], "McGlade": [ "NNP" ], "anti-abortionists": [ "NNS" ], "Mineralogies": [ "NNPS" ], "Westcom": [ "NNP" ], "perspective": [ "NN", "JJ" ], "tandem-trainer": [ "NN" ], "MIPS": [ "NNP", "NNS" ], "affable": [ "JJ" ], "Andris": [ "NNP" ], "creatures": [ "NNS" ], "residue": [ "NN" ], "swampy": [ "JJ" ], "sweetly": [ "RB" ], "brackets": [ "NNS" ], "swamps": [ "NNS" ], "industry-wide": [ "JJ" ], "typifying": [ "VBG" ], "caffeine": [ "NN" ], "Demisch": [ "NNP" ], "leafhopper": [ "JJR" ], "PR-wise": [ "JJ" ], "Isaly": [ "NNP" ], "MIPs": [ "NNP", "NNS" ], "railway-based": [ "JJ" ], "Manalapan": [ "NNP" ], "Ahead": [ "RB", "NNP" ], "Classified": [ "JJ", "NNP" ], "anti-union": [ "JJ" ], "threads": [ "NNS" ], "lunch-hour": [ "NN" ], "furlongs": [ "NNS" ], "Apologia": [ "NN" ], "Apologie": [ "NNP" ], "frangipani": [ "NNS" ], "Returning": [ "VBG", "NNP" ], "sofar": [ "RB" ], "sofas": [ "NNS" ], "shell-psychology": [ "NN" ], "uncharted": [ "JJ" ], "misery": [ "NN" ], "Ardent": [ "NNP", "JJ" ], "Bizarre": [ "JJ" ], "Dehmelt": [ "NNP" ], "African-Americans": [ "NNPS" ], "mosque": [ "NN" ], "shareholder\\": [ "JJ" ], "America.": [ "NNP" ], "Charging": [ "VBG" ], "FHA-backed": [ "JJ" ], "Walla": [ "NNP" ], "shareholders": [ "NNS" ], "Walle": [ "NNP" ], "long-held": [ "JJ" ], "Kristiansen": [ "NNP" ], "Metschan": [ "NNP" ], "plastered": [ "VBN", "JJ" ], "governance": [ "NN" ], "Sonet-compatible": [ "JJ" ], "squires": [ "NNS" ], "subsumed": [ "VBN" ], "Wally": [ "NNP" ], "restraints": [ "NNS" ], "plasterer": [ "NN" ], "money-management": [ "NN", "JJ" ], "Transtar": [ "NNP" ], "Alysia": [ "NNP" ], "landes": [ "NNS" ], "Sotheby": [ "NNP" ], "handsomely": [ "RB" ], "FOMC": [ "NNP" ], "collision-damage": [ "NN" ], "constructs": [ "VBZ" ], "Americas": [ "NNP", "NNPS" ], "necromantic": [ "JJ" ], "American": [ "NNP", "JJ", "NN", "RB" ], "Roger": [ "NNP" ], "McKeon": [ "NNP" ], "Chiang": [ "NNP" ], "Woburn": [ "NNP" ], "health-food": [ "NN" ], "Innocenti": [ "NNP" ], "barroom": [ "NN" ], "commercial-bank": [ "JJ", "NN" ], "specializes": [ "VBZ" ], "Hamlet": [ "NNP" ], "guards": [ "NNS", "VBZ" ], "patrols": [ "NNS" ], "Harnack": [ "NNP" ], "Razors": [ "NNS" ], "specialized": [ "JJ", "VBD", "VBN" ], "hovels": [ "NNS" ], "half-straightened": [ "VBD" ], "deficit-cutting": [ "JJ", "NN" ], "Retirement": [ "NNP", "NN" ], "junked": [ "VBN" ], "salesmen": [ "NNS" ], "onslaught": [ "NN" ], "Welty": [ "NNP" ], "Mfume": [ "NNP" ], "current-account": [ "JJ", "NN" ], "ensnarled": [ "VBN" ], "numbers": [ "NNS", "VBZ" ], "junket": [ "NN" ], "P.M.": [ "RB", "NNP", "FW", "JJ", "NN" ], "Cause": [ "NNP", "VB" ], "base-runner": [ "NN" ], "Seso": [ "NNP" ], "narrowly": [ "RB" ], "Autorapido": [ "NNP" ], "TIRED": [ "JJ" ], "rapport": [ "NN" ], "TIRES": [ "NNS" ], "Sparc": [ "NNP" ], "Declarative": [ "JJ" ], "Spare": [ "JJ" ], "BLOOD": [ "NN" ], "worst-performing": [ "JJ" ], "Spark": [ "NNP" ], "hamburgers": [ "NNS" ], "slackening": [ "VBG" ], "Producer-Price": [ "NNP" ], "redwood": [ "NN" ], "Schneider": [ "NNP" ], "Artemis": [ "NNP" ], "questioning": [ "VBG", "VBG|NN", "JJ", "NN" ], "malediction": [ "NN" ], "tangere": [ "JJ" ], "fast-growing": [ "JJ" ], "Continue": [ "VB", "VBP" ], "spectacularly": [ "RB" ], "coming": [ "VBG", "JJ", "NN" ], "Furious": [ "NNP" ], "Residents": [ "NNS" ], "Chair": [ "NNP" ], "Porretti": [ "NNP" ], "Counting": [ "VBG" ], "Japanese-made": [ "JJ" ], "Aristotelian": [ "JJ", "NNP" ], "toiletries": [ "NNS" ], "upholstered": [ "VBN" ], "retail-sales": [ "JJ", "NNS" ], "Perito": [ "NNP" ], "Dough": [ "NN" ], "skilful": [ "JJ" ], "cancer-ridden": [ "JJ" ], "Mazzera": [ "NNP" ], "Cocaine": [ "NN" ], "Afrikaner": [ "JJ", "NNP" ], "Forced": [ "VBN" ], "Nashville": [ "NNP" ], "Imported": [ "NNP" ], "ANCHORAGE": [ "NNP" ], "through": [ "IN", "JJ", "RB", "RP" ], "Forces": [ "NNPS", "NNP", "NNS", "FW", "VBZ" ], "engineering-management": [ "JJ", "NN" ], "Wolcyrz": [ "NNP" ], "Pagans": [ "NNS" ], "golfing": [ "NN", "VBG" ], "Tomas": [ "NNP" ], "pests": [ "NNS" ], "bosom": [ "NN" ], "Notte": [ "NNP" ], "Elijah": [ "NNP" ], "forints": [ "NNS" ], "misunderstandings": [ "NNS" ], "Bidding": [ "NN" ], "researches": [ "VBZ", "NNS" ], "recollected": [ "VBD" ], "Toman": [ "NNP" ], "Tatzel": [ "NNP" ], "Jerrold": [ "NNP" ], "Schwengel": [ "NNP" ], "postwar": [ "JJ" ], "embezzler": [ "NN" ], "socially": [ "RB" ], "prejudices": [ "NNS" ], "Capitalism": [ "NN", "NNP" ], "frigid": [ "JJ" ], "Capitalist": [ "NNP" ], "motioned": [ "VBD" ], "prejudiced": [ "VBN", "JJ" ], "vacationed": [ "VBD" ], "Canastels": [ "NNP" ], "Taipei": [ "NNP" ], "church-goers": [ "NNS" ], "Interspec": [ "NNP" ], "fantasy": [ "NN" ], "hails": [ "VBZ" ], "Laptop": [ "NN" ], "supersensitive": [ "JJ" ], "Commoner": [ "NNP" ], "home-nursing": [ "JJ" ], "saloons": [ "NNS", "VBZ" ], "wrappers": [ "NNS" ], "Fiddles": [ "NNS" ], "Fiddler": [ "NNP" ], "Reverently": [ "RB" ], "winnow": [ "VB" ], "mm.": [ "NN", "NNS" ], "marshaling": [ "VBG" ], "cynicism": [ "NN" ], "uninvited": [ "JJ" ], "Contel": [ "NNP", "NN" ], "DC10-30": [ "NN" ], "Atkissons": [ "NNPS" ], "Collyer": [ "NNP" ], "pubescent": [ "JJ" ], "DiCara": [ "NNP" ], "Avant-garde": [ "NN" ], "burned-out": [ "JJ" ], "Sweeping": [ "VBG" ], "glass-like": [ "JJ" ], "intra-party": [ "JJ" ], "Mario": [ "NNP" ], "airframe": [ "NN" ], "Ogilvyspeak": [ "NNP" ], "Weaning": [ "NNP" ], "enforcing": [ "VBG" ], "pre-recorded": [ "JJ" ], "cockroach": [ "NN" ], "bombshell": [ "NN" ], "centerfold": [ "NN" ], "gobblers": [ "NNS" ], "impeached": [ "VBN" ], "reparations": [ "NNS" ], "beginning": [ "VBG", "JJ", "NN" ], "Deerfield": [ "NNP" ], "Badin": [ "NNP" ], "Jawaharlal": [ "NNP" ], "Lobbying": [ "NN" ], "Soil": [ "NN" ], "needing": [ "VBG" ], "hatchet-faced": [ "JJ" ], "Biggs": [ "NNP" ], "withes": [ "NNS" ], "NASA": [ "NNP" ], "NASD": [ "NNP" ], "Soir": [ "NNP" ], "Prodigy": [ "NNP" ], "mazurka": [ "NN" ], "raptors": [ "NNS" ], "wallboard": [ "NN" ], "embraces": [ "VBZ", "NNS" ], "stabs": [ "NNS", "VBZ" ], "jabbed": [ "VBD" ], "embraced": [ "VBN", "VBD" ], "fiction": [ "NN" ], "three-and-a-half": [ "JJ" ], "unacquainted": [ "VBN" ], "X.": [ "NNP" ], "straight-out": [ "JJ" ], "bloodied": [ "JJ", "VBN" ], "Laventhol": [ "NNP" ], "anti-clotting": [ "JJ" ], "hollows": [ "NNS" ], "Littleboy": [ "NNP" ], "Germont": [ "NNP" ], "Scholastica": [ "NNP" ], "XL": [ "NNP" ], "Frenzel": [ "NNP" ], "Tsai": [ "NNP" ], "sales-loss": [ "JJ" ], "one-acters": [ "NNS" ], "powertrain": [ "NN" ], "Tsao": [ "NNP" ], "expressivness": [ "NN" ], "Tsar": [ "NNP" ], "tomato-red": [ "NN" ], "portfolio-maker": [ "NN" ], "obstructed": [ "VBN", "VBD" ], "trolls": [ "NNS" ], "dippy": [ "JJ" ], "CLAUSTROPHOBIC": [ "JJ" ], "Sooraji": [ "NNP" ], "conventionality": [ "NN" ], "Left-Wing": [ "NNP" ], "GEnie": [ "NNP" ], "Favor": [ "VB" ], "Physiology": [ "NNP" ], "EXAMINE": [ "VB" ], "substracting": [ "VBG" ], "orginally": [ "RB" ], "PLEASURE": [ "NN" ], "patient-interview": [ "JJ" ], "Xu": [ "NNP" ], "trudged": [ "VBD", "VBN" ], "bassinet": [ "NN" ], "lilting": [ "JJ", "JJ|VBG", "VBG" ], "reroofing": [ "NN" ], "reparation": [ "NN" ], "Lagonda": [ "NNP" ], "Esprit": [ "NNP" ], "Son-of-DAT": [ "NNP" ], "Busey": [ "NNP" ], "hangout": [ "NN" ], "showers": [ "NNS" ], "POST-TRIAL": [ "NNP" ], "Troopers": [ "NNS" ], "cowman": [ "NN" ], "Doubleday": [ "NNP" ], "social-action": [ "NN" ], "Power": [ "NNP", "NN" ], "couch": [ "NN" ], "recondite": [ "JJ" ], "cholorfluorocarbons": [ "NNS" ], "Futter": [ "NNP" ], "Congel": [ "NNP" ], "Equitable": [ "NNP" ], "Teacher": [ "NN" ], "wows": [ "VBZ" ], "millenniums": [ "NNS" ], "programmers": [ "NNS" ], "underpinnings": [ "NNS" ], "unceremoniously": [ "RB" ], "loosens": [ "VBZ" ], "esse": [ "FW", "NN" ], "officiated": [ "VBD" ], "off-key": [ "JJ" ], "Elecktra": [ "NNP" ], "inarticulate": [ "JJ" ], "MD-81": [ "NN" ], "MD-80": [ "NN", "NNP" ], "drifts": [ "VBZ", "NNS" ], "soft-cookie": [ "NN" ], "suppleness": [ "NN" ], "reflections": [ "NNS" ], "sea-beach": [ "NN" ], "Pisces": [ "NNP" ], "Shrinking": [ "VBG" ], "clinician": [ "NN" ], "Popolare": [ "NNP" ], "Seiren": [ "NNP" ], "commissions": [ "NNS", "VBZ", "NN" ], "Langevin": [ "NNP" ], "noblest": [ "JJS" ], "converge": [ "VB", "VBP" ], "Krenz": [ "NNP" ], "unmeritorious": [ "JJ" ], "tough-talking": [ "NN" ], "Bonilla": [ "NNP" ], "immaturity": [ "NN" ], "Hanoverian": [ "NNP", "JJ" ], "Kathy": [ "NNP", "NN" ], "chimes": [ "VBZ", "NNS" ], "Messiaen": [ "NNP" ], "merger": [ "NN" ], "merges": [ "VBZ", "NNS" ], "Lessing": [ "NNP" ], "lawn-feeding": [ "JJ" ], "self-deprecating": [ "JJ" ], "idiots": [ "NNS" ], "chimed": [ "VBD" ], "night-coach": [ "JJ" ], "lathes": [ "NNS" ], "Kathe": [ "NNP" ], "Solidarity": [ "NNP", "NN" ], "venture-capital": [ "JJ", "NN" ], "Fiat": [ "NNP" ], "intractable": [ "JJ" ], "Unify": [ "VB" ], "internists": [ "NNS" ], "express": [ "VB", "VBP", "JJ", "NN" ], "analytical-instruments": [ "JJ" ], "zapped": [ "VBD" ], "breast": [ "NN" ], "autobiographic": [ "JJ" ], "Assiniboia": [ "NNP" ], "oil-recycling": [ "NN" ], "Pitcoff": [ "NNP" ], "STARTING": [ "NNP" ], "Tootsie": [ "NNP" ], "doubled": [ "VBD", "VBN" ], "Unilab": [ "NNP" ], "logistic": [ "JJ" ], "doubles": [ "NNS", "VBZ" ], "July-September": [ "JJ" ], "Larkins": [ "NNP" ], "Portland": [ "NNP" ], "natural-resources": [ "NNS", "JJ" ], "threehour": [ "JJ" ], "Dismissing": [ "VBG" ], "business-judgment": [ "NN" ], "Spreads": [ "NNS" ], "deactivation": [ "NN" ], "biannual": [ "JJ" ], "nerly": [ "RB" ], "Citing": [ "VBG", "NNP" ], "SKF": [ "NNP" ], "manly": [ "JJ" ], "Volkenstein": [ "NNP" ], "Phoenixville": [ "NNP" ], "DeCicco": [ "NNP" ], "government-agency": [ "JJ", "NN" ], "playwright-director": [ "NN" ], "expert": [ "NN", "JJ" ], "embalmers": [ "NNS" ], "shatterproof": [ "JJ" ], "Punch": [ "VB" ], "vascular": [ "JJ" ], "Bushby": [ "NNP" ], "Cleopatra": [ "NNP" ], "encephalitis": [ "NN" ], "Cipher": [ "NNP" ], "beetling": [ "JJ" ], "intimidated": [ "VBN" ], "seventeenth-century": [ "JJ" ], "figurehead": [ "NN" ], "Off-price": [ "JJ" ], "conservationist": [ "NN" ], "INPS": [ "NNP" ], "Ionic": [ "JJ" ], "acidulous": [ "JJ" ], "substitute": [ "NN", "JJ", "VB", "VBP" ], "symbolical": [ "JJ" ], "restaurant": [ "NN" ], "Dancers": [ "NNP", "NNS" ], "tempos": [ "NNS" ], "emergency-room": [ "NN" ], "Windham": [ "NNP" ], "sharp-focus": [ "JJ" ], "zilch": [ "NN|JJ" ], "re-run": [ "VBN" ], "esprit": [ "FW" ], "elaborating": [ "VBG" ], "Derck": [ "NNP" ], "tubules": [ "NNS" ], "profligate": [ "JJ" ], "ravages": [ "NNS" ], "gypsy": [ "NN" ], "DFS\\/Pacific": [ "NNP" ], "asserted": [ "VBD", "VBN" ], "ravaged": [ "VBN" ], "civilize": [ "VB" ], "furthers": [ "VBZ" ], "weaving": [ "VBG", "NN" ], "Chinooks": [ "NNS" ], "Dineen": [ "NNP" ], "rivals": [ "NNS", "VBZ" ], "omniscient": [ "JJ" ], "Floral": [ "NNP" ], "fly-by-nighters": [ "NNS" ], "chiseled": [ "VBN", "JJ" ], "tape-product": [ "NN" ], "TRUSTEE": [ "NN" ], "less-obvious": [ "JJ" ], "Daughter": [ "NN" ], "enchantingly": [ "RB" ], "dissension": [ "NN" ], "Syllabicity": [ "NN" ], "Rajiv": [ "NNP" ], "strictest": [ "JJS" ], "grains": [ "NNS" ], "grainy": [ "JJ" ], "elections": [ "NNS" ], "Schimmel": [ "NNP" ], "reopens": [ "VBZ" ], "denominations": [ "NNS" ], "coyly": [ "RB" ], "Robins": [ "NNP" ], "whimpers": [ "NNS" ], "ganging": [ "VBG" ], "unearned": [ "JJ" ], "computer-game": [ "NN" ], "DRDW": [ "NN" ], "Bluntly": [ "RB" ], "astound": [ "VB" ], "boat-rocker...": [ ":" ], "Fuji-apple": [ "JJ" ], "Prison": [ "NNP", "NN" ], "aspects": [ "NNS" ], "Bonett": [ "NNP" ], "disillusioning": [ "JJ" ], "electromagnetic-test": [ "NN" ], "benevolence": [ "NN" ], "migraine": [ "NN" ], "perpetrator": [ "NN" ], "Glaris": [ "NNP" ], "Towle": [ "NNP" ], "antibody-based": [ "JJ" ], "corridor": [ "NN" ], "quick-frozen": [ "VBN" ], "fibrosis": [ "NN" ], "shortchanged": [ "VBN" ], "development": [ "NN" ], "Statute": [ "NN" ], "Statuto": [ "NN" ], "virility": [ "NN" ], "Intertrade": [ "NNP" ], "traditionally": [ "RB" ], "Banawan": [ "NNP" ], "Provisional": [ "NNP" ], "Zionists": [ "NNPS" ], "pre-refunded": [ "JJ" ], "task": [ "NN", "VB" ], "Al-Rowas": [ "NNP" ], "ExploiTech": [ "NNP" ], "purtiest": [ "JJS" ], "coachmen": [ "NNS" ], "snarl": [ "NN" ], "express...": [ ":" ], "Quacks": [ "NNS" ], "Die-hard": [ "JJ" ], "year-on-year": [ "JJ" ], "Platonist": [ "NN", "NNP" ], "irritably": [ "RB" ], "maleness": [ "NN" ], "Platonism": [ "NN" ], "shape": [ "NN", "VBP", "VB" ], "Frustration": [ "NN" ], "irritable": [ "JJ" ], "Yorkers": [ "NNPS", "NNP" ], "alternative": [ "NN", "JJ" ], "Kenyan": [ "JJ", "NNP" ], "Forster": [ "NNP" ], "rundown": [ "NN", "JJ" ], "cut": [ "VB", "VBD", "VBN", "VBP", "JJ", "NN" ], "Crovitz": [ "NNP" ], "cur": [ "NN" ], "cup": [ "NN", "VB" ], "marrying": [ "VBG" ], "emigre": [ "NN" ], "Pae": [ "NNP" ], "source": [ "NN" ], "cue": [ "NN" ], "cud": [ "NN" ], "undistinguished": [ "JJ" ], "cub": [ "NN" ], "cul": [ "NN" ], "waxed": [ "VBD", "JJ", "VBN" ], "Air-traffic": [ "NN" ], "habeas": [ "NNS", "FW" ], "Opositora": [ "NNP" ], "Bette": [ "NNP" ], "Exploration": [ "NNP", "NN" ], "be....": [ ":" ], "reliable": [ "JJ" ], "hallucinations": [ "NNS" ], "Christian": [ "NNP", "NNS", "JJ", "NN" ], "Betts": [ "NNP" ], "maples": [ "NNS" ], "decisionmaking": [ "NN" ], "purveyor": [ "NN" ], "forcefulness": [ "NN" ], "recycled": [ "VBN", "JJ", "VBD" ], "bockwurst": [ "NN" ], "cu.": [ "NN" ], "walrus": [ "NN" ], "irretrievably": [ "RB" ], "unhindered": [ "JJ" ], "one-inch": [ "JJ" ], "half-standard": [ "JJ" ], "absolutely": [ "RB" ], "commercial-free": [ "JJ" ], "redistributionism": [ "NN" ], "delegation": [ "NN" ], "split-finger": [ "NN" ], "redistributionist": [ "NN" ], "presences": [ "NNS" ], "Riverview": [ "NNP" ], "minefield": [ "NN" ], "over-allotments": [ "NNS" ], "culprit": [ "NN" ], "divestiture-related": [ "JJ" ], "Tieck": [ "NNP" ], "decision": [ "NN" ], "proficient": [ "JJ" ], "Modular": [ "NNP" ], "Illuminating": [ "NNP" ], "epic": [ "NN", "JJ" ], "Shultis": [ "NNP" ], "Box": [ "NNP" ], "Boy": [ "NN", "NNP", "UH" ], "Auto-Europe": [ "NNP" ], "Stempel": [ "NNP" ], "treasury-management": [ "NN" ], "Bow": [ "NNP" ], "Bol": [ "NNP" ], "Bon": [ "NNP", "FW" ], "Medusa": [ "NN" ], "RELEASE": [ "NN" ], "Boa": [ "NN" ], "Bob": [ "NNP" ], "Frontieres": [ "FW" ], "Romania": [ "NNP" ], "Loyal": [ "JJ" ], "lower-than-planned": [ "JJ" ], "S.Grove": [ "NNP" ], "sweet-sour": [ "JJ" ], "submucosa": [ "NN" ], "Enhanced": [ "NNP" ], "delist": [ "VB" ], "Captain": [ "NNP", "NN" ], "XL\\/Datacomp": [ "NNP" ], "systematizing": [ "VBG" ], "fantods": [ "NNS" ], "depose": [ "VB" ], "Vt.-based": [ "JJ" ], "Strauss": [ "NNP" ], "Experiment": [ "NN" ], "Otterlo": [ "NNP" ], "Wash.-based": [ "JJ" ], "Accuracy": [ "NN", "NNP" ], "birth-prevention": [ "NN" ], "single-foot": [ "JJ" ], "Oppressive": [ "JJ" ], "openers": [ "NNS" ], "Longest": [ "NNP" ], "Coverage": [ "NNP", "NN" ], "Rexene": [ "NNP" ], "Mips": [ "NNP" ], "translate": [ "VB", "VBP" ], "JROE": [ "NNP" ], "Professionals": [ "NNP", "NNS" ], "motel-keepers": [ "NNS" ], "Hage": [ "NNP" ], "Splendide": [ "NNP" ], "Promises": [ "VBZ" ], "delighting": [ "VBG" ], "subsidiary": [ "NN", "JJ" ], "behavior-modification": [ "NN" ], "planed": [ "VBN" ], "expressway": [ "NN" ], "homeownership": [ "NN" ], "casein": [ "NN" ], "W.C.": [ "NNP" ], "driveways": [ "NNS" ], "planet": [ "NN" ], "Salty": [ "NNP" ], "planer": [ "NN" ], "horse-trail": [ "NN" ], "Pasterns": [ "NNPS" ], "azalea": [ "NN" ], "Wildcat": [ "NNP" ], "cross-writing": [ "NN" ], "learning-curve": [ "JJ" ], "Babel": [ "NNP" ], "Secured": [ "JJ" ], "kola": [ "NN" ], "Nymark": [ "NNP" ], "deprive": [ "VB" ], "rarities": [ "NNS" ], "consulted": [ "VBN", "VBD" ], "revelatory": [ "JJ" ], "appetizing": [ "JJ" ], "organizational": [ "JJ" ], "CAMPEAU": [ "NNP" ], "cafe": [ "NN" ], "Presentation": [ "NN" ], "overfeed": [ "VB" ], "RC6280": [ "NN" ], "Red-Greens": [ "NNPS" ], "not-quite-perfect": [ "JJ" ], "Sailing": [ "NNP", "NN" ], "Fidel": [ "NNP" ], "Chrissake": [ "UH" ], "adoring": [ "VBG" ], "composing": [ "VBG" ], "intensifying": [ "VBG", "JJ" ], "Dallasites": [ "NNPS" ], "POINTS": [ "NNPS" ], "Israelis": [ "NNPS", "NNS" ], "Student": [ "NNP", "NN" ], "emanated": [ "VBD", "VBN" ], "linkup": [ "NN" ], "Evangelista": [ "NNP" ], "Wade-Evans": [ "NNP" ], "Heel-Lotus": [ "NNP" ], "cellar": [ "NN" ], "intensifier": [ "NN" ], "dustjacket": [ "NN" ], "mismatch": [ "NN" ], "St-Laurent": [ "NNP" ], "admen": [ "NNS" ], "antiquities": [ "NNS" ], "reserve...": [ ":" ], "intensified": [ "VBN", "VBD", "JJ" ], "restoration": [ "NN" ], "TELESIS": [ "NNP" ], "co-occurring": [ "JJ" ], "entertaining": [ "VBG", "JJ", "NN" ], "Garzarelli": [ "NNP" ], "scouting": [ "VBG" ], "deterrence": [ "NN" ], "Boulroud": [ "NNP" ], "overlooking": [ "VBG" ], "monic": [ "JJ" ], "wards": [ "NNS" ], "bankers": [ "NNS" ], "Pah": [ "NNP" ], "Sahara": [ "NNP" ], "presenting": [ "VBG" ], "ignoramus": [ "NN" ], "in-room": [ "JJ" ], "clear-cutting": [ "NN" ], "mix-up": [ "NN" ], "ready-made": [ "JJ" ], "caribou": [ "NN", "NNS" ], "magnetically": [ "RB" ], "time-zone": [ "JJ" ], "amplifier": [ "NN" ], "amplifies": [ "VBZ" ], "Baumgarten": [ "NNP" ], "Assuming": [ "VBG", "NNP" ], "amplified": [ "VBN" ], "compose": [ "VB", "VBP" ], "drive-in": [ "NN" ], "boom-or-bust": [ "JJ" ], "Jujo": [ "NNP" ], "suave": [ "JJ" ], "water-washed": [ "VBN" ], "compost": [ "NN" ], "tradesmen": [ "NNS" ], "be...": [ ":" ], "bottomed": [ "VBN", "VBD" ], "Democratic-style": [ "JJ" ], "unhurt": [ "JJ" ], "dessert": [ "NN" ], "Vollrath": [ "NNP" ], "Rearding": [ "VBG" ], "spider-leg": [ "JJ" ], "RIVER": [ "NNP" ], "refusers": [ "NNS" ], "companywide": [ "JJ", "RB" ], "salad": [ "NN" ], "Alcoholic": [ "NNP" ], "Murai": [ "NNP" ], "Ty": [ "NNP", "NN" ], "Eldon": [ "NNP" ], "Murat": [ "NNP" ], "Hersly": [ "NNP" ], "Caligula": [ "NNP" ], "McCloy": [ "NNP" ], "ceasefire": [ "NN" ], "charter-type": [ "JJ" ], "Roemer": [ "NNP" ], "vacillation": [ "NN" ], "mysticisms": [ "NNS" ], "rector": [ "NN" ], "Term": [ "NN", "NNP" ], "Contra": [ "NNP", "JJ" ], "Annaud": [ "NNP" ], "Criteria": [ "NNP" ], "Tropic": [ "NNP" ], "Avocados": [ "NNS" ], "fros": [ "NNS" ], "analogue": [ "NN" ], "penalty-free": [ "JJ" ], "commercial-goods": [ "NNS" ], "Ogunjobi": [ "NNP" ], "dowdy": [ "JJ" ], "GIPPER": [ "NN" ], "Pornsen": [ "NNP" ], "assisted": [ "VBN", "VBD" ], "severalty": [ "NN" ], "pleading": [ "VBG", "JJ", "NN" ], "Dahlia": [ "NNP" ], "phonemics": [ "NNS" ], "Schoder": [ "NNP" ], "non-linear": [ "JJ" ], "VacSYN\\": [ "NNP" ], "plunkers": [ "NNS" ], "beasts": [ "NNS" ], "Hasbro": [ "NNP" ], "licentiousness": [ "NN" ], "AGREES": [ "VBZ" ], "D.H.": [ "NNP" ], "talent": [ "NN" ], "warless": [ "JJ" ], "Burkina": [ "NNP" ], "MCorp": [ "NNP" ], "premiering": [ "VBG", "NN" ], "Menas": [ "NNP" ], "climb": [ "VB", "VBP", "NN" ], "Proceeds": [ "NNS", "NNP" ], "Tareytown": [ "NNP" ], "composed": [ "VBN", "VBD", "JJ" ], "decentralized": [ "JJ", "VBD", "VBN" ], "Amtrak": [ "NNP" ], "Munster": [ "NNP" ], "Pisa": [ "NNP" ], "Emporium": [ "NNP" ], "Finger": [ "NNP" ], "composer": [ "NN" ], "composes": [ "VBZ" ], "corpuscular": [ "JJ" ], "belittling": [ "VBG" ], "Driver": [ "NNP", "NN" ], "Driven": [ "VBN" ], "classically": [ "RB" ], "Congregational": [ "NNP", "JJ" ], "Gramm-Rudman-Hollings": [ "NNP" ], "penny-wise": [ "JJ" ], "reciprocity": [ "NN" ], "Propper": [ "NNP" ], "butler": [ "NN" ], "Rennell": [ "NNP" ], "co-inventors": [ "NNS" ], "Insurance-reform": [ "NN" ], "Lukassen": [ "NNP" ], "defendant": [ "NN" ], "Pty.": [ "NNP" ], "charcoal": [ "NN" ], "engender": [ "VB" ], "kiosk": [ "NN" ], "Wilfrid": [ "NNP" ], "Flakes": [ "NNPS", "NNP" ], "Radio-Television": [ "NNP" ], "dentistry": [ "NN" ], "Nash": [ "NNP" ], "Ultra": [ "NNP" ], "minions": [ "NNS" ], "Inspire": [ "NNP" ], "transmissible": [ "JJ" ], "anti-Nazi": [ "JJ" ], "Etruscan": [ "JJ" ], "gruff": [ "JJ" ], "rehabilitation": [ "NN" ], "ontologically": [ "RB" ], "syrupy": [ "JJ" ], "Cultures": [ "NNS" ], "Apogee": [ "NNP" ], "syrups": [ "NNS" ], "noises": [ "NNS" ], "midsts": [ "NNS" ], "prepreg": [ "NN" ], "differentiability": [ "NN" ], "unseasonable": [ "JJ" ], "formations": [ "NNS" ], "Farthing": [ "NNP" ], "aniline": [ "NN" ], "Three-year-old": [ "JJ" ], "Daewoo": [ "NNP" ], "Durocher": [ "NNP" ], "once-desirable": [ "JJ" ], "Superconcentrates": [ "NNS" ], "quisling": [ "NN" ], "Petrie": [ "NNP" ], "Conservatism": [ "NN" ], "Mainliner-Highland": [ "NNP" ], "delicately-textured": [ "JJ" ], "prostate": [ "NN", "JJ" ], "necklace-like": [ "JJ" ], "Southey": [ "NNP" ], "lecher": [ "NN" ], "state-subsidized": [ "JJ" ], "HIV": [ "NNP" ], "Maplecrest": [ "NNP" ], "guilder": [ "NN" ], "RETREAT": [ "NN" ], "Tennessee": [ "NNP" ], "supranational": [ "JJ" ], "chambermaids": [ "NNS" ], "BHP": [ "NNP" ], "mustache": [ "NN" ], "eggplants": [ "NNS" ], "Dollar-yen": [ "JJ" ], "Kriz": [ "NNP" ], "contriving": [ "VBG" ], "Beside": [ "IN" ], "Creations": [ "NNPS", "NNS" ], "circumscribed": [ "JJ" ], "knocks": [ "VBZ", "NNS" ], "Krim": [ "NNP" ], "transborder": [ "JJ" ], "galaxy": [ "NN" ], "iguana": [ "JJ" ], "edematous": [ "JJ" ], "tsk": [ "UH" ], "tsh": [ "NN" ], "most-hazardous": [ "JJ" ], "undressed": [ "VBD" ], "itemize": [ "VB" ], "heroism": [ "NN" ], "godless": [ "JJ" ], "pugh": [ "JJ" ], "European-based": [ "JJ" ], "couplers": [ "NNS" ], "black-owned": [ "JJ" ], "steel-hulled": [ "JJ" ], "Slack": [ "NNP" ], "pangs": [ "NNS" ], "Yin-Yang": [ "NNP" ], "beads": [ "NNS" ], "denigrate": [ "VB" ], "Architect": [ "NNP" ], "squabbling": [ "NN", "VBG" ], "preschool": [ "JJ" ], "applicants": [ "NNS" ], "straddling": [ "VBG" ], "Hollingshead": [ "NNP" ], "greenhouses": [ "NNS" ], "masterminding": [ "VBG", "NN" ], "Wurtzel": [ "NNP" ], "hisself": [ "PRP" ], "preclude": [ "VB", "VBP" ], "Dillard": [ "NNP" ], "oversubscribed": [ "VBN", "JJ" ], "E.O.": [ "NNP" ], "beady": [ "JJ" ], "Downside": [ "JJ" ], "McLish": [ "NNP" ], "tacticians": [ "NNS" ], "monumentally": [ "RB" ], "crackdowns": [ "NNS" ], "Jima": [ "NNP" ], "pastel-like": [ "JJ" ], "Dai-Ichi\\/Nippon": [ "NNP" ], "averred": [ "VBD" ], "Awad": [ "NNP" ], "drumroll": [ "NN" ], "barrel-vaulted": [ "JJ" ], "incensed": [ "VBN", "JJ" ], "popping": [ "VBG" ], "Unisys": [ "NNP", "NNS" ], "eking": [ "VBG" ], "Permission": [ "NN" ], "enforceable": [ "JJ" ], "crazy-wonderful": [ "JJ" ], "Plee-Zing": [ "NNP" ], "invective": [ "NN" ], "scriptural": [ "JJ" ], "flushing": [ "NN", "VBG" ], "Mandle": [ "NNP" ], "Ural": [ "NNP" ], "Countering": [ "VBG" ], "peonies": [ "NNS" ], "vibrionic": [ "JJ" ], "Anti-Swapo": [ "JJ" ], "grunting": [ "VBG" ], "contrarian": [ "JJ", "NN" ], "IRSAC": [ "NNP" ], "qua": [ "FW" ], "clarify": [ "VB", "VBP" ], "approaches": [ "NNS", "VBZ" ], "que": [ "FW" ], "British": [ "JJ", "NNP", "NNS", "NNPS" ], "qui": [ "FW" ], "Sanger": [ "NNP", "NN" ], "quo": [ "FW", "WDT", "NN" ], "super-empirical": [ "JJ" ], "pokerfaced": [ "JJ" ], "backwards": [ "RB", "NNS", "JJ" ], "allies": [ "NNS" ], "Flesh": [ "NN" ], "mortar": [ "NN" ], "battlefield-electronic": [ "JJ" ], "open-necked": [ "JJ" ], "Acey": [ "NNP" ], "allied": [ "VBN", "JJ", "VBD" ], "mortal": [ "JJ", "NN" ], "Aces": [ "NNS" ], "order-taking": [ "NN" ], "flat-rolled": [ "JJ" ], "less-effective": [ "JJ" ], "warys": [ "NNS" ], "domiciled": [ "VBN" ], "grandfather-father-to-son": [ "JJ" ], "elegiac": [ "JJ" ], "Sievers": [ "NNP" ], "Rubber": [ "NNP", "JJ" ], "lagging": [ "VBG", "JJ", "NN" ], "Significance": [ "NN" ], "Sventek": [ "NNP" ], "Kooks": [ "NNPS" ], "Durgin": [ "NNP" ], "tax-and-spending": [ "JJ" ], "Muncke": [ "NNP" ], "owning": [ "VBG", "NN" ], "Playboy": [ "NNP" ], "dextrous-fingered": [ "JJ" ], "Circuit-breaker": [ "JJ" ], "nebular": [ "JJ" ], "scant": [ "JJ" ], "Stocks": [ "NNS", "NNPS" ], "bargained": [ "VBD", "VBN" ], "scans": [ "NNS", "VBZ" ], "Fliers": [ "NNPS" ], "explanation": [ "NN" ], "acquire": [ "VB", "NN", "VBP" ], "foamy": [ "JJ" ], "two-game": [ "NN" ], "Burnett": [ "NNP" ], "Bordeaux": [ "NNP" ], "foams": [ "NNS" ], "Nearby": [ "RB", "JJ", "NNP" ], "Reds": [ "NNPS", "NNP", "NNS" ], "bodyguard": [ "NN" ], "Accountemps": [ "NNP" ], "Ozagen": [ "NNP" ], "treatise": [ "NN" ], "smoothbore": [ "NN" ], "landholdings": [ "NNS" ], "bewilderedly": [ "RB" ], "Reda": [ "NNP" ], "off-field": [ "JJ" ], "assays": [ "NNS" ], "impersonations": [ "NNS" ], "Lastly": [ "RB" ], "Sutherland": [ "NNP" ], "Ragan": [ "NNP" ], "Hueglin": [ "NNP" ], "Lachica": [ "NNP" ], "Follow-through": [ "JJ" ], "Parmer": [ "NNP" ], "cavern": [ "NN" ], "outdoorsman": [ "NN" ], "throat": [ "NN" ], "Dilworth": [ "NNP" ], "Defuse": [ "VB" ], "Mueller": [ "NNP" ], "catapults": [ "VBZ" ], "attention-grabbing": [ "JJ" ], "Jacuzzis": [ "NNS" ], "incentive": [ "NN", "JJ" ], "Ziraldo": [ "NNP" ], "schoolmaster": [ "NN" ], "concerns": [ "NNS", "VBZ" ], "Ticket": [ "NN" ], "Ticker": [ "NNP" ], "Glad": [ "JJ" ], "alienation": [ "NN" ], "WARS": [ "NNS", "NNP" ], "deathless": [ "JJ" ], "Kiarti": [ "NNP" ], "Eritreans": [ "NNPS" ], "New-England": [ "NNP" ], "M-CSF": [ "NNP" ], "interning": [ "VBG" ], "Protege": [ "NNP" ], "Russes": [ "NNP" ], "Sankei": [ "NNP" ], "Inadequate": [ "JJ" ], "line-drying": [ "JJ" ], "McNamara": [ "NNP" ], "Joyce": [ "NNP" ], "Tartarughe": [ "NNP" ], "Afrikanerdom": [ "NNP" ], "Russel": [ "NNP" ], "thicken": [ "VB" ], "transaction-entry": [ "NN" ], "fascists": [ "NNS" ], "rotating": [ "VBG" ], "Religion": [ "NN", "NNP" ], "traitor": [ "NN" ], "Stumbles": [ "VBZ" ], "one-million-letter": [ "JJ" ], "unreliable": [ "JJ" ], "Regal": [ "NNP" ], "Regan": [ "NNP" ], "thicket": [ "NN" ], "communication-cluttered": [ "JJ" ], "Denison": [ "NNP" ], "communism": [ "NN" ], "sparks": [ "VBZ", "NNS" ], "Aycock": [ "NNP" ], "Superslim": [ "NNP" ], "Oei": [ "NNP" ], "no-nos": [ "NNS" ], "mothballs": [ "NNS" ], "president\\/chief": [ "NN" ], "prancing": [ "NN", "VBG" ], "Jacob": [ "NNP" ], "communist": [ "JJ", "NN" ], "shouldering": [ "VBG" ], "pitfall": [ "NN" ], "regularly": [ "RB" ], "presorting": [ "NN" ], "starch": [ "NN" ], "astigmatism": [ "NN" ], "pave": [ "VB" ], "associate-label": [ "JJ" ], "Stories": [ "NNP", "NNS" ], "rebellious": [ "JJ" ], "overinsistent": [ "JJ" ], "pashas": [ "NNS" ], "sperm": [ "NN" ], "Endicott": [ "NNP" ], "Well-to-Do": [ "JJ" ], "Carlson": [ "NNP" ], "resultants": [ "NNS" ], "fixes": [ "NNS" ], "dispell": [ "VB" ], "tableland": [ "NN" ], "Desheng": [ "NNP" ], "fixed": [ "VBN", "JJ", "VBD", "VBD|VBN" ], "Bearishness": [ "NN" ], "Guarantee": [ "NN", "NNP" ], "Fungible": [ "JJ" ], "well-guarded": [ "JJ" ], "Courthouse": [ "NN" ], "turkeys": [ "NNS" ], "racked": [ "VBN", "VBD" ], "groggy": [ "JJ" ], "non-repetitious": [ "JJ" ], "reiterate": [ "VB", "VBP" ], "Orbiting": [ "NNP" ], "intensity": [ "NN" ], "racket": [ "NN" ], "liberalization": [ "NN" ], "Ochoa": [ "NNP" ], "easy-to-turn": [ "JJ" ], "indirectness": [ "NN" ], "Scrub": [ "VB" ], "reform": [ "NN", "VB" ], "vignettes": [ "NNS" ], "criminalizing": [ "VBG" ], "canons": [ "NNS" ], "unscrewed": [ "VBD" ], "difficulties": [ "NNS" ], "boundary": [ "NN" ], "Heston": [ "NNP" ], "inflation-fuels-growth": [ "JJ" ], "Concerto": [ "NNP" ], "BE&K": [ "NNP" ], "months-long": [ "JJ" ], "GM-CSF": [ "NNP" ], "cauliflower": [ "NN" ], "operations\\": [ "NNP" ], "sorrow": [ "NN" ], "Mantegna": [ "NNP" ], "jewelled": [ "JJ" ], "Creedon": [ "NNP" ], "Gaelic": [ "JJ" ], "reproduces": [ "VBZ" ], "Well-Seasoned": [ "JJ" ], "mandamus": [ "NN" ], "book-flogging": [ "JJ" ], "Entirely": [ "RB" ], "Concerts": [ "NNPS", "NNP", "NNS" ], "Macintosh": [ "NNP" ], "commenting": [ "VBG" ], "Soldier": [ "NNP" ], "burnishing": [ "VBG" ], "metered": [ "VBN" ], "kosher": [ "JJ" ], "transplantation": [ "NN" ], "Lippens": [ "NNP" ], "Spinners": [ "NNPS" ], "wringing": [ "VBG" ], "property-tax-cutting": [ "JJ" ], "bayleefe": [ "NN" ], "Champassak": [ "NNP" ], "Mardon": [ "NNP" ], "two-tier": [ "JJ" ], "ambushed": [ "VBD", "VBN" ], "See-through": [ "JJ" ], "Squire": [ "NNP" ], "Ahsan": [ "NNP" ], "Bench": [ "NNP" ], "reborn": [ "VBN", "JJ" ], "deflected": [ "VBD", "VBN" ], "uninitiated": [ "JJ" ], "Sapp": [ "NNP" ], "Pending": [ "VBG", "NNP" ], "long-necked": [ "JJ" ], "swimmer": [ "NN" ], "mouthpiece": [ "NN" ], "short-wave": [ "JJ" ], "newscast": [ "NN" ], "migrate": [ "VB", "VBP" ], "seasoned": [ "JJ", "VBN" ], "drowsy": [ "JJ" ], "rump": [ "NN", "JJ" ], "other-nation": [ "JJ" ], "iodinate": [ "VB" ], "anomaly": [ "NN" ], "drift-net": [ "NN", "JJ" ], "logic-rhetoric": [ "NN" ], "Carriages": [ "NNS" ], "Moonies": [ "NNPS", "NNS" ], "Overbuilding": [ "VBG", "NN" ], "Norex": [ "NNP" ], "S-11": [ "NN" ], "S-10": [ "NNP", "NN" ], "tense": [ "JJ", "NN" ], "riverfront": [ "NN" ], "assessments": [ "NNS" ], "locomotives": [ "NNS" ], "Roeser": [ "NNP" ], "distilleries": [ "NNS" ], "exhumations": [ "NNS" ], "caving": [ "NN" ], "Nalick": [ "NNP" ], "venomous": [ "JJ" ], "ordinarius": [ "NN" ], "commmon": [ "JJ" ], "hairpiece": [ "NN" ], "Centering": [ "VBG" ], "fumbling": [ "VBG", "JJ" ], "delusion": [ "NN" ], "Cineplex": [ "NNP" ], "LONDON": [ "NNP", "NN" ], "Estes": [ "NNP" ], "Anti-Americanism": [ "NNP" ], "partner": [ "NN" ], "pedestal": [ "NN" ], "espousing": [ "VBG" ], "Yaqui": [ "NNP" ], ")": [ ")" ], "coronary": [ "JJ" ], "Accountants": [ "NNPS" ], "shoehorned": [ "VBN" ], "womb": [ "NN" ], "Panel": [ "NNP" ], "Avoiding": [ "VBG", "NNP" ], "itemization": [ "NN" ], "code-related": [ "JJ" ], "sigue": [ "FW" ], "Surrendering": [ "VBG" ], "discredited": [ "VBN", "JJ" ], "sisters": [ "NNS" ], "recourse": [ "NN" ], "drafts": [ "NNS" ], "neural": [ "JJ" ], "Resident": [ "NNP" ], "Spring": [ "NNP", "NN" ], "builder": [ "NN" ], "NOT-GUILTY": [ "JJ" ], "Sprint": [ "NNP" ], "Total": [ "JJ", "NNP" ], "Seventeenth": [ "JJ" ], "reintroduce": [ "VBP", "VB" ], "Flute": [ "NN" ], "excise": [ "NN", "JJ", "VB" ], "nicknames": [ "NNS" ], "drafty": [ "JJ" ], "agrochemical": [ "NN" ], "inveigle": [ "VB" ], "nicknamed": [ "VBN", "VBD" ], "vocational": [ "JJ" ], "Fourth": [ "NNP", "JJ", "RB" ], "streptokinase": [ "NNP" ], "Y.J.": [ "NNP" ], "Lutheran": [ "NNP" ], "Gundle": [ "NNP" ], "Shogun": [ "NNP" ], "one-sixth": [ "JJ", "NN" ], "Victoria": [ "NNP" ], "delegations": [ "NNS" ], "jackets": [ "NNS" ], "Dirksen": [ "NNP" ], "ought": [ "MD" ], "Pulkova": [ "NNP" ], "Toxics": [ "NNP" ], "elapsed": [ "VBN" ], "Krasnoyarsk": [ "NNP" ], "satin-covered": [ "JJ" ], "elapses": [ "VBZ" ], "Bromagen": [ "NNP" ], "ward-heelers": [ "NNS" ], "ad-free": [ "JJ" ], "displaced": [ "VBN", "VBD" ], "gm.": [ "NN" ], "courtrooms": [ "NNS" ], "Isaacson": [ "NNP" ], "Durham": [ "NNP" ], "displaces": [ "VBZ" ], "ghosted": [ "VBD" ], "livelier": [ "JJR" ], "straightway": [ "RB" ], "classical": [ "JJ" ], "Signs": [ "NNS" ], "Olle": [ "NNP" ], "Grohowski": [ "NNP" ], "taskmaster": [ "NN" ], "righthander": [ "NN" ], "happens": [ "VBZ" ], "Option": [ "NNP", "NN" ], "best-hearted": [ "JJ" ], "eqn.": [ "NN" ], "electroplating": [ "NN" ], "screwed": [ "VBN", "VBD" ], "clean-top": [ "JJ" ], "Devcon": [ "NNP" ], "Heaven": [ "NNP", "NN", "UH" ], "Applying": [ "VBG" ], "lipid": [ "NN" ], "refurbishing": [ "VBG", "NN" ], "pedaling": [ "VBG" ], "topiary": [ "JJ" ], "unchangeable": [ "JJ" ], "U.N.C.L.E": [ "NNP" ], "urbanized": [ "VBN", "JJ" ], "Jetway": [ "NNP" ], "class-biased": [ "JJ" ], "Lascivious": [ "NNP" ], "Rabaul": [ "NNP" ], "CASSETTE": [ "NN" ], "Guardino": [ "NNP" ], "central-district": [ "JJ" ], "Guardini": [ "NNP" ], "crudes": [ "NNS" ], "Billing": [ "NN" ], "backpackers": [ "NNS" ], "planners": [ "NNS" ], "FRICTION": [ "NN" ], "cancerous": [ "JJ" ], "interdependence": [ "NN" ], "Shinagawa": [ "NNP" ], "proteolysis": [ "NN" ], "earthenware": [ "NN" ], "unfashionable": [ "JJ" ], "meclofenamate": [ "NN" ], "knuckles": [ "NNS", "VBZ" ], "PROSECUTIONS": [ "NNS" ], "Equipement": [ "NNP" ], "Quattro.": [ "NNP" ], "condense": [ "VB" ], "Twomey": [ "NNP" ], "hankerin": [ "VBG" ], "avowed": [ "JJ" ], "Therapy": [ "NNP", "NN" ], "knuckled": [ "VBD" ], "crucially": [ "RB" ], "Fair-priced": [ "JJ" ], "November": [ "NNP" ], "Valmet": [ "NN" ], "banquet-hall": [ "NN" ], "Arbuckle": [ "NNP" ], "Tyne": [ "NNP" ], "Philanthropic": [ "NNP" ], "media-stock": [ "JJ" ], "crawled": [ "VBD", "VBN" ], "Source:New": [ "NNP" ], "sequel": [ "NN" ], "Protons": [ "NNS" ], "unpartisan": [ "JJ" ], "knockdown": [ "NN" ], "fuddy-duddy": [ "JJ" ], "Harlan": [ "NNP" ], "kraft": [ "NN" ], "brouhaha": [ "NN" ], "versatile": [ "JJ" ], "Sekel": [ "NNP" ], "Guiseppe": [ "NNP" ], "HUD-backed": [ "JJ" ], "Graff": [ "NNP" ], "general-practitioner": [ "NN" ], "Crosby": [ "NNP" ], "Capetronic": [ "NNP" ], "Gauguin": [ "NNP" ], "Glaciology": [ "NNP" ], "Graft": [ "NN" ], "indiscriminating": [ "JJ" ], "domino": [ "NN" ], "exceeded": [ "VBD", "VBN" ], "Surgeons": [ "NNPS", "NNS" ], "transfused": [ "VBN" ], "periods": [ "NNS" ], "AFL-CIO": [ "NNP", "NN" ], "loft": [ "NN" ], "tumor-suppressors": [ "NNS" ], "Tempe": [ "NNP" ], "overpurchase": [ "VB" ], "Babble": [ "NN" ], "corporation": [ "NN" ], "Tempo": [ "NNP" ], "duplications": [ "NNS" ], "Mcdonald": [ "NNP" ], "Centrum": [ "NNP" ], "Sylmar": [ "NNP" ], "Gitter": [ "NNP" ], "parallelism": [ "NN" ], "Blakes": [ "NNS" ], "conveys": [ "VBZ" ], "Interlocking": [ "VBG" ], "floppies": [ "NNS" ], "hard-liquor": [ "JJ", "NN" ], "Sabella": [ "NNP" ], "Deere": [ "NNP" ], "F-20": [ "NNP" ], "Elcotel": [ "NNP" ], "bankrupcy": [ "NN" ], "Alba": [ "NNP" ], "chemist-turned-entrepreneur": [ "NN" ], "Expenses": [ "NNS" ], "deregulated": [ "VBN", "JJ", "VBD" ], "Exterior": [ "NNP" ], "condiments": [ "NNS" ], "propsed": [ "VBN" ], "food-services": [ "NNS" ], "Pryor": [ "NNP" ], "Behringwerke": [ "NNP" ], "elegances": [ "NNS" ], "Juilliard": [ "NNP", "NN" ], "reprocess": [ "VB" ], "white-suited": [ "JJ" ], "Quackenbush": [ "NNP" ], "guard-room": [ "NN" ], "GROWING": [ "VBG" ], "Handzlik": [ "NNP" ], "Re-creating": [ "VBG" ], "rendezvoused": [ "VBD" ], "undisputed": [ "JJ" ], "computer-matching": [ "JJ" ], "Obey": [ "NNP" ], "Vinnicum": [ "NNP" ], "Minnelli": [ "NNP" ], "metamorphic": [ "JJ" ], "LeFrere": [ "NNP" ], "Mnemosyne": [ "NNP" ], "whipsaw": [ "JJ", "NN", "VB" ], "acoustically": [ "RB" ], "whatsoever": [ "RB", "WP" ], "Pride-Venus": [ "NNP" ], "Redland": [ "NNP" ], "Nasty": [ "JJ" ], "Prescribed": [ "VBN" ], "arboreal": [ "JJ" ], "dispense": [ "VB", "VBP" ], "housecleaning": [ "NN" ], "Prieur": [ "NNP" ], "gratification": [ "NN" ], "vastly": [ "RB" ], "caliphs": [ "NNS" ], "Richter": [ "NNP", "JJR" ], "anemic": [ "JJ" ], "anemia": [ "NN" ], "gluey": [ "JJ" ], "school": [ "NN", "VB" ], "magnate": [ "NN" ], "Murtaugh": [ "NNP" ], "Ousley": [ "NNP" ], "conceive": [ "VB", "VBP" ], "glues": [ "NNS" ], "cocoa-trading": [ "JJ" ], "apprehension": [ "NN" ], "MALAISE": [ "NNP" ], "Schweiker": [ "NNP" ], "Cowboys": [ "NNPS", "NNP", "NNS" ], "delightfully": [ "RB" ], "glued": [ "VBN", "VBD" ], "possiblity": [ "NN" ], "Haake": [ "NNP" ], "veritable": [ "JJ" ], "Ruffled": [ "VBN" ], "disciplines": [ "NNS" ], "Satoko": [ "NNP" ], "construed": [ "VBN", "VBD" ], "guidelines": [ "NNS" ], "disciplined": [ "VBN", "VBD", "JJ" ], "Palazzo": [ "NNP" ], "umbrella": [ "NN" ], "browsing.": [ "NN" ], "take-up": [ "JJ" ], "Saint-Saens": [ "NNP" ], "blue": [ "JJ", "NN" ], "Z.": [ "NNP" ], "hide": [ "VB", "VBP", "NN" ], "cosmologists": [ "NNS" ], "supplied": [ "VBN", "VBD" ], "blur": [ "NN", "VB", "VBP" ], "supplier": [ "NN" ], "supplies": [ "NNS", "VBZ" ], "Behrendt": [ "NNP" ], "non-violence": [ "NN", "JJ" ], "democratized": [ "VBN" ], "Niebuhr": [ "NNP" ], "governorship": [ "NN" ], "Strehler": [ "NNP" ], "state-appointed": [ "JJ" ], "Crispin": [ "NNP" ], "etching": [ "NN" ], "McAvity": [ "NNP" ], "MIDLANTIC": [ "NNP" ], "Wedgeworth": [ "NNP" ], "hideously": [ "RB" ], "Gradual": [ "JJ" ], "settler": [ "NN" ], "ridicule": [ "NN", "VB" ], "culminate": [ "VB", "VBP" ], "poshest": [ "JJS" ], "shinbone": [ "NN" ], "depreciated": [ "VBD" ], "proposition...": [ ":" ], "Bayezit": [ "NNP" ], "murkily": [ "RB" ], "natives": [ "NNS" ], "settled": [ "VBD", "VBN", "JJ", "VB" ], "Panting": [ "VBG" ], "Group": [ "NNP", "NN" ], "Destec": [ "NNP" ], "Yehhh": [ "UH" ], "grumbled": [ "VBD", "VBN" ], "godmother": [ "NN" ], "Pedersen": [ "NNP" ], "Madagascar": [ "NNP" ], "patience": [ "NN" ], "Orville": [ "NNP" ], "Werdell": [ "NNP" ], "offi": [ "NNS" ], "Cat": [ "NNP" ], "grumbles": [ "VBZ" ], "would": [ "MD" ], "Laotians": [ "NNS" ], "fenoldopam": [ "NN" ], "tenders": [ "NNS" ], "Messiah": [ "NNP" ], "distributing": [ "VBG", "NN" ], "throw-rug": [ "NN" ], "Whichever": [ "WDT" ], "quipping": [ "VBG" ], "Donuts": [ "NNP", "NNPS", "NNS" ], "Ezra": [ "NNP" ], "Beauregard": [ "NNP" ], "Gradison": [ "NNP" ], "excommunicated": [ "VBN" ], "black-body": [ "JJ", "NN" ], "tenors": [ "NNS" ], "ferrying": [ "VBG" ], "poultices": [ "NNS" ], "Ramparts": [ "NNS" ], "Stronger": [ "JJR", "NNP" ], "cheek-to-cheek": [ "JJ" ], "abundance": [ "NN" ], "Crowd": [ "NNP", "NN" ], "Crowe": [ "NNP" ], "arterioles": [ "NNS" ], "Crown": [ "NNP", "NN" ], "advocacy": [ "NN" ], "Crows": [ "NNPS" ], "warmish": [ "JJ" ], "Spotlight": [ "NNP" ], "employee-management": [ "JJ", "NN" ], "hobos": [ "NNS" ], "MAKING": [ "VBG" ], "guitar-twanging": [ "JJ" ], "financial-support": [ "JJ" ], "defile": [ "VB" ], "receivables": [ "NN", "NNS" ], "gasoline-powered": [ "JJ" ], "dolphin": [ "NN" ], "pyschiatrist": [ "NN" ], "powerfulness": [ "NN" ], "riskiest": [ "JJS" ], "Bunny": [ "NNP" ], "returned": [ "VBD", "VBN" ], "non-verbal": [ "JJ" ], "legislate": [ "VB" ], "Cordova": [ "NNP" ], "stand-off": [ "JJ" ], "non-elderly": [ "JJ" ], "creditworthiness": [ "NN" ], "mollycoddle": [ "NN" ], "toxic": [ "JJ", "NN" ], "actuality": [ "NN" ], "Darla": [ "NNP" ], "Modzelewski": [ "NNP" ], "Yuzek": [ "NNP" ], "Commonweal": [ "NNP" ], "Mariam": [ "NNP" ], "Marian": [ "NNP" ], "pantomimic": [ "JJ" ], "imaginable": [ "JJ" ], "lump": [ "NN", "VBP" ], "airless": [ "JJ" ], "understandable": [ "JJ" ], "lances": [ "NNS" ], "girders": [ "NNS" ], "appropriateness": [ "NN" ], "splendid": [ "JJ" ], "Siegal": [ "NNP" ], "capacitors": [ "NNS" ], "quasi-monopolistic": [ "JJ" ], "ATTRACTS": [ "VBZ" ], "plumbing": [ "NN" ], "preventive": [ "JJ", "NN" ], "name-plating": [ "JJ" ], "Unanimously": [ "RB" ], "Nonetheless": [ "RB" ], "Gabriele": [ "NNP" ], "Arlington": [ "NNP" ], "fiendish": [ "JJ" ], "non-staple": [ "JJ" ], "margining": [ "VBG" ], "fealty": [ "NN" ], "two-term": [ "JJ" ], "counterterrorism": [ "NN" ], "Nitsuko": [ "NNP" ], "R.I.": [ "NNP" ], "tilth": [ "NN" ], "howsomever": [ "RB" ], "signatory": [ "JJ", "NN" ], "Gajda": [ "NNP" ], "mistreat": [ "VB" ], "HASTINGS": [ "NNP" ], "Goldin": [ "NNP" ], "litigious": [ "JJ" ], "Mobile": [ "NNP", "JJ" ], "ripens": [ "VBZ" ], "Goldie": [ "NNP" ], "CHW": [ "NNP" ], "rental": [ "JJ", "NN" ], "Dwight": [ "NNP" ], "gluttony": [ "NN" ], "tootley-toot-tootled": [ "VBN" ], "community-development": [ "NN" ], "swaying": [ "VBG", "NN" ], "gluttons": [ "NNS" ], "Lureen": [ "NNP" ], "Foul": [ "NNP", "JJ" ], "herald": [ "VB", "VBP" ], "Newsreel": [ "NNP" ], "minutiae": [ "NNS" ], "occupation-as": [ "NN|IN" ], "noncompliance": [ "NN" ], "chanteuse": [ "NN" ], "junkloads": [ "NNS" ], "Frankfort": [ "NNP" ], "Carrel": [ "NNP" ], "two-weeks": [ "JJ" ], "juggling": [ "VBG", "NN" ], "Frankford": [ "NNP" ], "Derivative": [ "JJ" ], "mega-issues": [ "NNS" ], "lugged": [ "VBD", "VBN" ], "pounce": [ "VB" ], "large": [ "JJ", "RB" ], "mandrel": [ "NN" ], "psychic": [ "JJ", "NN" ], "crisis-oriented": [ "JJ" ], "sighing": [ "VBG" ], "aloneness": [ "NN" ], "laid": [ "VBN", "VBD" ], "DeGregorio": [ "NNP" ], "lain": [ "VBN" ], "decision-making": [ "NN", "JJ" ], "carcass": [ "NN" ], "gimcracks": [ "NNS" ], "aforesaid": [ "JJ", "RB" ], "worse": [ "JJR", "JJ", "RBR" ], "disk-read": [ "JJ" ], "W": [ "NNP", "NN" ], "boosting": [ "VBG" ], "peaky": [ "JJ" ], "immigrated": [ "VBD", "VBN" ], "Minnesotans": [ "NNPS" ], "joiner": [ "NN" ], "sods": [ "NNS" ], "Chain": [ "NN" ], "Argonauts": [ "NNPS" ], "longterm": [ "JJ", "NN" ], "conceding": [ "VBG" ], "filter": [ "NN", "VB" ], "city-wide": [ "JJ" ], "heck": [ "NN", "UH" ], "smokers": [ "NNS" ], "soda": [ "NN" ], "Carefully": [ "RB" ], "Antarctic": [ "NNP" ], "Saucony": [ "NNP" ], "separable": [ "JJ" ], "Hoyte": [ "NNP" ], "marriageables": [ "NNS" ], "trade-magazine": [ "JJ" ], "seldom-stolen": [ "JJ" ], "officious": [ "JJ" ], "researcher": [ "NN" ], "attractions": [ "NNS" ], "primary": [ "JJ", "NN" ], "pre-paid": [ "VBD" ], "Jinny": [ "NNP" ], "inharmonious": [ "JJ" ], "Welby": [ "NNP" ], "Sainte-Chapelle": [ "NNP" ], "insulation": [ "NN" ], "Kwek": [ "NNP" ], "Gyrocompass": [ "NN" ], "Wimpy": [ "NNP" ], "researched": [ "VBN", "VBD" ], "rechristening": [ "VBG" ], "Congress": [ "NNP", "NN" ], "long-awaited": [ "JJ" ], "heights": [ "NNS" ], "confirming": [ "VBG" ], "ScheringPlough": [ "NN" ], "corpus": [ "NN", "FW" ], "Chevenement": [ "NNP" ], "frailest": [ "JJS" ], "illiterate": [ "JJ" ], "leaking": [ "VBG", "JJ" ], "Flanagan": [ "NNP" ], "kindest": [ "JJS" ], "Borg-Warner": [ "NNP" ], "SH-11": [ "NNP" ], "Tanzman": [ "NNP" ], "Managed": [ "VBN" ], "prefecture": [ "NN" ], "unsaid": [ "JJ" ], "Wilcher": [ "NNP" ], "lip-sucking": [ "NN" ], "immigrants": [ "NNS" ], "tourists": [ "NNS" ], "X-MP": [ "NNP" ], "Apprehensively": [ "RB" ], "pre-tested": [ "VBN" ], "MacSharry": [ "NNP" ], "Seveso": [ "NNP" ], "market-corporate": [ "JJ" ], "Escort": [ "NNP" ], "Guillermin": [ "NNP" ], "Farmington": [ "NNP" ], "half-man": [ "NN" ], "most-influential": [ "JJ" ], "Tampa-based": [ "JJ" ], "net-like": [ "JJ" ], "SRESERVE": [ "NN" ], "Off-season": [ "JJ" ], "puritanical": [ "JJ" ], "Linwood": [ "NNP" ], "Erle": [ "NNP" ], "overallotment": [ "NN|JJ" ], "Sylvie": [ "NNP" ], "rodents": [ "NNS" ], "hatch": [ "NN", "VBP", "VB" ], "geographers": [ "NNS" ], "Gibbons": [ "NNP" ], "Meigher": [ "NNP" ], "Lenygon": [ "NNP" ], "Shafer": [ "NNP" ], "ProBody": [ "NNP" ], "energy-adjusted": [ "JJ" ], "Grasslands": [ "NNPS", "NNS" ], "Shooter": [ "NNP" ], "SPWL": [ "NNP" ], "diversifying": [ "VBG" ], "mayoralty": [ "NN" ], "Ceilings": [ "NNS" ], "pressure-volume-temperature": [ "NN" ], "structively": [ "RB" ], "feint": [ "NN", "VB" ], "Paced": [ "VBN" ], "Warrens": [ "NNS" ], "promotions": [ "NNS" ], "potency": [ "NN" ], "Saved": [ "NNP" ], "Bourbons": [ "NNPS", "NNP" ], "Voices": [ "NNS" ], "I.A.": [ "NN" ], "back-room": [ "NN" ], "Burdened": [ "VBN" ], "Mexico-United": [ "NNP" ], "Declares": [ "VBZ" ], "Giovanni": [ "NNP" ], "phenomenally": [ "RB" ], "registrants": [ "NNS" ], "Loomis": [ "NNP" ], "output-restricting": [ "JJ" ], "bait": [ "NN", "VB" ], "medley": [ "NN" ], "Pro-Family": [ "NNP" ], "alight": [ "JJ", "VB" ], "confabulations": [ "NNS" ], "wedging": [ "VBG" ], "insurance-claims": [ "NNS" ], "Martinelli": [ "NNP" ], "colors": [ "NNS", "VBZ" ], "Heyward": [ "NNP" ], "Lunday": [ "NNP" ], "self-indulgent": [ "JJ" ], "bail": [ "VB", "NN" ], "graded": [ "VBN" ], "Edict": [ "NNP" ], "thumbs-down": [ "NN" ], "spite": [ "NN", "VB" ], "orienting": [ "VBG" ], "spits": [ "VBZ" ], "knuckle": [ "NN", "VB" ], "Racketeering": [ "NNP" ], "Inter-american": [ "NNP" ], "Bengals-Browns": [ "JJ" ], "Finals": [ "NNS" ], "leasable": [ "JJ" ], "Anxiety": [ "NNP", "NN" ], "pillorying": [ "VBG" ], "trillion-plus": [ "NN" ], "unhurried": [ "JJ" ], "skin-perceptiveness": [ "NN" ], "twentieth-century": [ "JJ", "NN" ], "despite": [ "IN" ], "U.S.that": [ "NN" ], "botanical": [ "JJ" ], "Matilda": [ "NNP" ], "Clanahan": [ "NNP" ], "Kagakushi": [ "NNP" ], "Moore": [ "NNP" ], "Kaldahl": [ "NNP" ], "anxiously": [ "RB" ], "Schoenfeld": [ "NNP" ], "commercialization": [ "NN" ], "pro-choice": [ "JJ" ], "Moors": [ "NNPS" ], "NagyAntal": [ "NNP" ], "C13532": [ "NNP" ], "Lamson": [ "NNP" ], "inter-agency": [ "JJ" ], "Guilherme": [ "NNP" ], "penance": [ "NN" ], "BPCA": [ "NNP" ], "Vineyard": [ "NNP" ], "Textile": [ "NNP", "NN" ], "Excuses": [ "NNPS" ], "Ants": [ "NNS" ], "Pitching": [ "VBG" ], "disturbing": [ "JJ", "VBG" ], "UniHealth": [ "NNP" ], "Mathilde": [ "NNP" ], "jet-black": [ "NN" ], "Jean-Marie": [ "NNP" ], "feline": [ "JJ" ], "Utilities": [ "NNP", "NNS", "NNPS" ], "continually": [ "RB" ], "grandmother": [ "NN" ], "discovers": [ "VBZ" ], "Anti": [ "NNP" ], "empower": [ "VBP" ], "discovery": [ "NN" ], "Roundup": [ "NNP" ], "Trek": [ "NNP" ], "Colored": [ "NNP", "JJ" ], "wide-grip": [ "JJ" ], "Tree": [ "NNP", "NN" ], "however": [ "RB", "RBR", "WRB" ], "relatonship": [ "NN" ], "Sambuca": [ "NNP" ], "cashiers": [ "NNS" ], "newt": [ "NN" ], "absorbent": [ "JJ" ], "Among": [ "IN" ], "Cruiser": [ "NNP" ], "Bucay": [ "NNP" ], "Tennant": [ "NNP" ], "mildly": [ "RB" ], "Roads": [ "NNP", "NNS" ], "behaviors": [ "NNS" ], "smuggled": [ "VBN", "VBD" ], "gay-rights": [ "NNS" ], "single-A-minus": [ "JJ", "NN" ], "agitators": [ "NNS" ], "wretched": [ "JJ" ], "mild-voiced": [ "JJ" ], "Hengesbach": [ "NNP" ], "smuggler": [ "NN" ], "dissipating": [ "VBG" ], "palamedes": [ "NN" ], "padlocked": [ "VBD" ], "subscribing": [ "VBG" ], "conference": [ "NN" ], "break-in": [ "NN" ], "Literature": [ "NNP", "NN" ], "financial-data": [ "JJ" ], "seein": [ "VBG" ], "tour\\/theme": [ "NN" ], "credit-ratings": [ "NNS" ], "schoolroom": [ "NN" ], "moneymaking": [ "JJ", "NN" ], "captives": [ "NNS" ], "Amway": [ "NNP" ], "Sakowitz": [ "NNP" ], "stepladders": [ "NNS" ], "Stallings": [ "NNP" ], "anchors": [ "NNS", "VBZ" ], "Revitalization": [ "NNP" ], "Zingggg-O": [ "UH" ], "Javanese": [ "JJ" ], "Alexandra": [ "NNP" ], "Alexandre": [ "NNP" ], "touch-starved": [ "JJ" ], "Sartoris": [ "NNP" ], "combos": [ "NNS" ], "Analytic": [ "NNP" ], "Grinten": [ "NNP" ], "multi-million": [ "JJ" ], "legislating": [ "VBG", "NN" ], "batterie": [ "NN" ], "NAREB": [ "NNP" ], "BLACK": [ "JJ", "NNP" ], "Constructions": [ "NNP" ], "planking": [ "NN" ], "broth": [ "NN" ], "half-brother": [ "NN" ], "Corp.:8.50": [ "NNP" ], "Spokesman": [ "NNP" ], "sidestepped": [ "VBD", "VBN" ], "Horses": [ "NNS" ], "mettwurst": [ "NN" ], "Nazar": [ "NNP" ], "forehead": [ "NN" ], "acetominophen": [ "NN" ], "drawback": [ "NN" ], "usurping": [ "VBG" ], "Nazal": [ "NNP" ], "Development": [ "NNP", "NN" ], "screw": [ "NN", "VB" ], "Paglieri": [ "NNP" ], "numerical": [ "JJ" ], "buyback": [ "JJ", "NN" ], "capital-market": [ "JJ", "NN" ], "Junkers": [ "NNPS" ], "Beckworth": [ "NNP" ], "HPB": [ "NNP" ], "gemsbok": [ "NNS" ], "loblolly": [ "NN" ], "possessed": [ "VBD", "VBN" ], "endorsements": [ "NNS" ], "impediment": [ "NN" ], "SAMOS": [ "NNP", "NN" ], "admiringly": [ "RB" ], "Clothing": [ "NN", "NNP" ], "possesses": [ "VBZ" ], "leaguer": [ "NN" ], "leagues": [ "NNS" ], "rubies": [ "NNS" ], "departed": [ "VBD", "JJ", "VBN" ], "proposed": [ "VBN", "VBD", "VBP", "VBN|JJ", "JJ" ], "Thevenot": [ "NNP" ], "Thevenow": [ "NNP" ], "bruise": [ "NN", "VB" ], "Credito": [ "NNP" ], "Forms": [ "NNPS", "NNS" ], "proposes": [ "VBZ" ], "Hegelian": [ "NNP" ], "leagued": [ "VBN" ], "orgone": [ "NN" ], "rivulets": [ "NNS" ], "scattering": [ "VBG" ], "Nicosia": [ "NNP" ], "enlighten": [ "VB" ], "bargain-priced": [ "JJ" ], "cherry": [ "JJ", "NN" ], "Conspicuously": [ "RB" ], "sub-human": [ "JJ" ], "Moisture": [ "NN" ], "Keefe": [ "NNP" ], "Debt": [ "NN", "NNP" ], "flavorings": [ "NNS" ], "farmsteads": [ "NNS" ], "DeMeo": [ "NNP" ], "low-VAT": [ "JJ" ], "skeptics": [ "NNS" ], "metaphorical": [ "JJ" ], "i860": [ "NN" ], "Nadja": [ "NNP" ], "burne": [ "VB" ], "flattish": [ "JJ" ], "Factoring": [ "NN" ], "first-base": [ "JJ" ], "go-getters": [ "NNS" ], "mini-revolution": [ "NN" ], "burns": [ "NNS", "VBZ" ], "burnt": [ "VBN", "JJ" ], "rumor": [ "NN" ], "Munsters": [ "NNPS" ], "Heart": [ "NNP", "NN" ], "Relevant": [ "JJ" ], "peeved": [ "VBN" ], "mansions": [ "NNS" ], "zeal": [ "NN" ], "contradict": [ "VB", "VBP" ], "Probhat": [ "NNP" ], "Topic": [ "NNP" ], "Heard": [ "NNP", "VBN" ], "peeves": [ "NNS", "VBZ" ], "broadcaster": [ "NN" ], "pursues": [ "VBZ" ], "uninterruptable": [ "JJ" ], "Nelson-Atkins": [ "NNP" ], "reams": [ "NNS" ], "Hearn": [ "NNP" ], "nuclear-weapons": [ "NNS", "JJ" ], "Fitzwilliams": [ "NNP" ], "Again": [ "RB", "NNP" ], "Merchants": [ "NNP", "NNS", "NNPS" ], "Topix": [ "NNP" ], "stringing": [ "VBG" ], "Quyney": [ "NN" ], "left-front": [ "JJ" ], "freer-spending": [ "JJ" ], "LaBella": [ "NNP" ], "clucks": [ "VBZ", "NNS" ], "Piovra": [ "FW" ], "usher": [ "NN", "VBP", "VB" ], "Waertsilae": [ "NNP" ], "Plates": [ "NNS" ], "peacemaker": [ "NN" ], "contests": [ "NNS" ], "rapidity": [ "NN" ], "Luksik": [ "NNP" ], "Strokes": [ "NNS" ], "Biscayne": [ "NNP" ], "rhino": [ "NN" ], "newsprint": [ "NN" ], "Mankind": [ "NNP", "NN" ], "kayoed": [ "VBN" ], "Burnside": [ "NNP" ], "Accepted": [ "JJ", "NNP", "VBN" ], "Stroked": [ "VBD" ], "deleted": [ "VBN", "VBD" ], "brawl": [ "NN" ], "Brodsky": [ "NNP" ], "newcomer": [ "NN" ], "Deposit": [ "NNP", "NN" ], "menopause": [ "NN" ], "sangaree": [ "NN" ], "Mello": [ "NNP" ], "oversaturating": [ "VBG" ], "Dryer": [ "NN" ], "Hewlett-Packard": [ "NNP" ], "Hershhenson": [ "NNP" ], "choke": [ "VB", "VBP", "NN" ], "dinner": [ "NN" ], "ensure": [ "VB", "VBP" ], "inveigh": [ "VBP" ], "ownself": [ "PRP" ], "Bolinder": [ "NNP" ], "Planters": [ "NNP" ], "dials": [ "NNS", "VBZ" ], "Meryl": [ "NNP" ], "Diamanti": [ "NNP" ], "lavishly": [ "RB" ], "long-cherished": [ "JJ" ], "obscene": [ "JJ" ], "bath": [ "NN" ], "bats": [ "NNS", "VBZ" ], "Steinbergs": [ "NNP" ], "aircraft-test": [ "JJ" ], "Gencor": [ "NNP" ], "pampers": [ "VBZ" ], "Confidently": [ "RB" ], "anorexia": [ "NN" ], "INDUSTRIES": [ "NNPS", "NNP" ], "infidelity": [ "NN" ], "Stotler": [ "NNP" ], "foisted": [ "VBD", "VBN" ], "Amen": [ "UH", "FW", "JJ", "NNP" ], "fuel-injected": [ "JJ" ], "destabilize": [ "VB" ], "Amee": [ "NNP" ], "timelier": [ "JJR" ], "Amex": [ "NNP" ], "striding": [ "VBG" ], "JUMPING": [ "NNP" ], "pamphleteer": [ "NN" ], "Centoxin": [ "NNP" ], "Mantua": [ "NNP" ], "Ames": [ "NNP" ], "Amer": [ "NNP" ], "Infamous": [ "NNP" ], "amateur": [ "NN", "JJ" ], "GMC": [ "NNP" ], "excerpt": [ "NN" ], "GMA": [ "NNP" ], "bottlenecks": [ "NNS" ], "Lemuel": [ "NNP" ], "payable": [ "JJ" ], "Hardest": [ "JJS", "RBS" ], "liveliest": [ "JJS" ], "Outhwaite": [ "NNP" ], "housing-loan": [ "NN" ], "selectivity": [ "NN" ], "barrio": [ "NN" ], "animosity...": [ ":" ], "Brevet": [ "NNP" ], "Observer": [ "NNP" ], "Vom": [ "NNP" ], "Von": [ "NNP", "FW" ], "Tensing": [ "NNP" ], "Mikeen": [ "NNP" ], "loitering": [ "NN", "VBG" ], "encumber": [ "VB" ], "Swissmade": [ "JJ" ], "GMr": [ "NN" ], "Westcoast": [ "NNP" ], "panicky": [ "JJ" ], "flame-throwers": [ "NNS" ], "Deseret": [ "NNP" ], "Maxus": [ "NNP" ], "levity": [ "NN" ], "liberalism": [ "NN" ], "Adios-Rena": [ "NNP" ], "no-new-taxes": [ "JJ" ], "self-protection": [ "NN" ], "pledging": [ "VBG" ], "innovators...": [ ":" ], "anti-foreign": [ "JJ" ], "when": [ "WRB", "IN" ], "oratio": [ "FW" ], "Blaise": [ "NNP" ], "suitably-loaded": [ "JJ" ], "Lamentation": [ "NNP" ], "soundly": [ "RB" ], "plumbed": [ "VBD" ], "government-backed": [ "JJ" ], "undeniably": [ "RB" ], "Blueprints": [ "VBZ" ], "Buber": [ "NNP" ], "tasteful": [ "JJ" ], "suppers": [ "NNS" ], "liquidate": [ "VB" ], "Part-time": [ "JJ" ], "Contrasted": [ "VBN" ], "top...": [ ":" ], "mark-yen": [ "JJ" ], "after-run": [ "JJ" ], "sacks": [ "NNS" ], "Boorstyn": [ "NNP" ], "Barrah": [ "NNP" ], "domestic-demand": [ "JJ" ], "Sergiusz": [ "NNP" ], "forgoes": [ "VBZ" ], "ground-swell": [ "NN" ], "Crowntuft": [ "NNP" ], "Peoria": [ "NNP" ], "Welles": [ "NNP" ], "Weller": [ "NNP" ], "epicyclically": [ "RB" ], "trickle": [ "NN", "VB", "VBP" ], "resource-wasting": [ "JJ" ], "rooters": [ "NNS" ], "tripartite": [ "JJ" ], "Nazarova": [ "NNP" ], "microbiologist": [ "NN" ], "Schwarzenberger": [ "NNP" ], "contraventions": [ "NNS" ], "British-born": [ "JJ" ], "Fatima": [ "NNP" ], "clarification": [ "NN" ], "Truly": [ "NNP", "RB" ], "sequestered": [ "VBN" ], "Regrettably": [ "RB" ], "durable-goods": [ "NNS" ], "Flavell": [ "NNP" ], "MK-Ferguson": [ "NNP" ], "Bowdoin": [ "NNP" ], "airlift": [ "NN" ], "stake-out": [ "NN" ], "widthwise": [ "RB" ], "unfamiliar": [ "JJ" ], "Sonet": [ "NNP" ], "Keyes": [ "NNP" ], "Swiss-born": [ "JJ" ], "ritzy": [ "JJ" ], "Delia": [ "NNP" ], "Methuselahs": [ "NNPS" ], "well-experienced": [ "JJ" ], "clouds": [ "NNS", "VBZ" ], "impressive": [ "JJ" ], "level": [ "NN", "VBP", "JJ", "VB" ], "Vrilium": [ "NNP" ], "posts": [ "NNS", "VBZ" ], "likens": [ "VBZ" ], "Delio": [ "NNP" ], "Inspectorate-Adia": [ "NNP" ], "Purely": [ "RB" ], "domestically": [ "RB" ], "decorativeness": [ "NN" ], "bisque": [ "NN" ], "Debate": [ "NN", "VBP" ], "tenths": [ "NNS" ], "Enthusiast": [ "NNP" ], "pork": [ "NN" ], "Flaum": [ "NNP" ], "tougher": [ "JJR", "RBR" ], "industrialists": [ "NNS" ], "injunction": [ "NN" ], "pore": [ "NN" ], "deflating": [ "VBG" ], "Carolinian": [ "NNP" ], "Ledyard": [ "NNP" ], "catapulted": [ "VBD", "VBN" ], "Enthusiasm": [ "NN" ], "twin-engine": [ "JJ" ], "toughen": [ "VB" ], "bales": [ "NNS" ], "port": [ "NN", "JJ" ], "card-activated": [ "JJ" ], "Kunashir": [ "NNP" ], "Fathi": [ "NNP" ], "high-level": [ "JJ", "NNP" ], "reelection": [ "NN" ], "stately": [ "JJ" ], "HEXCEL": [ "NNP" ], "self-pitying": [ "JJ" ], "Merigan": [ "NNP" ], "announcment": [ "NN" ], "Aprile": [ "NNP" ], "per-store": [ "JJ" ], "Apology": [ "NNP" ], "Senesac": [ "NNP" ], "EMPLOYEES": [ "NNS" ], "entertain": [ "VB" ], "three-round": [ "JJ" ], "WGP": [ "NNP" ], "mockups": [ "NNS" ], "Abbett": [ "NNP" ], "demolishing": [ "VBG" ], "pyorrhea": [ "NN" ], "upward-mobile": [ "JJ" ], "Hatfield": [ "NNP" ], "exams": [ "NNS" ], "Francesco": [ "NNP" ], "Francesca": [ "NNP" ], "hand-delivered": [ "JJ" ], "Trafficking": [ "NN", "NNP" ], "videocameras": [ "NNS" ], "CROWDED": [ "JJ" ], "tuxedo": [ "NN" ], "sympathique": [ "FW" ], "Languages": [ "NNP", "NNPS" ], "tax-payment": [ "NN" ], "bribery": [ "NN" ], "Therefore": [ "RB", "CC" ], "bribers": [ "NNS" ], "scam": [ "NN" ], "Sanders": [ "NNP", "NNPS" ], "Cupboard": [ "NN" ], "life-threatening": [ "JJ" ], "neuropsychiatric": [ "JJ" ], "Hoffa": [ "NNP" ], "Aktiengesellschaft": [ "NNP" ], "undersea": [ "JJ" ], "diagrams": [ "NNS" ], "roared": [ "VBD" ], "Hunterdon": [ "NNP" ], "survivalist": [ "NN" ], "diurnal": [ "JJ" ], "Opera": [ "NNP", "NN" ], "Opere": [ "NNP" ], "turbine-generators": [ "NNS" ], "NKK": [ "NNP" ], "teaser": [ "NN" ], "power-plant": [ "NN" ], "Charter": [ "NNP", "NN" ], "Ahrens": [ "NNP" ], "edible": [ "JJ" ], "Barter": [ "NN" ], "Dakin": [ "NNP" ], "Ameaux": [ "NNP" ], "Harford": [ "NNP" ], "Bannister": [ "NNP" ], "IBM-oriented": [ "JJ" ], "Wrap": [ "NNP" ], "druncke": [ "VBD", "JJ" ], "Nonfinancial": [ "JJ" ], "Ground": [ "NNP", "NN" ], "pent-up": [ "JJ" ], "nursing": [ "NN", "VBG" ], "Integration": [ "NN", "NNP" ], "Topton": [ "NNP" ], "avocation": [ "NN" ], "Plainfield": [ "NNP" ], "Felske": [ "NNP" ], "Noble": [ "NNP" ], "Acropolis": [ "NNP" ], "Grassley": [ "NNP" ], "sailboat": [ "NN" ], "co-market": [ "VB" ], "all-new": [ "JJ" ], "interference-like": [ "JJ" ], "vital": [ "JJ" ], "Blair": [ "NNP" ], "Aljian": [ "NNP" ], "vitae": [ "NN" ], "husbandry": [ "NN" ], "deification": [ "NN" ], "Tank": [ "NNP" ], "Macklin": [ "NNP" ], "big-stakes": [ "JJ" ], "Valeri": [ "NNP" ], "Valero": [ "NNP" ], "Tana": [ "NNP" ], "flattens": [ "VBZ" ], "Beesemyers": [ "NNP" ], "Carlucci": [ "NNP" ], "PRICES": [ "NNS", "NN" ], "Bromfield": [ "NNP" ], "Olerichs": [ "NNPS" ], "Pinar": [ "NNP" ], "Gelbart": [ "NNP" ], "syndicates": [ "NNS" ], "reaped": [ "VBN", "VBD" ], "Burning": [ "VBG", "NN", "NNP" ], "self-delusion": [ "NN" ], "value-investing": [ "JJ" ], "quarter-of-a-century": [ "JJ" ], "inform": [ "VB", "VBP" ], "reaper": [ "NN" ], "syndicated": [ "VBN", "VBD", "JJ" ], "Operating-system": [ "JJ" ], "representation": [ "NN" ], "Yankee-come-lately": [ "JJ" ], "lamented": [ "VBD" ], "hassled": [ "VBN" ], "Aros": [ "NNP" ], "fallout": [ "NN" ], "Hunting": [ "NN" ], "chicken-and-egg": [ "JJ" ], "magistrate": [ "NN" ], "retools": [ "VBZ" ], "CONTINENTAL": [ "NNP" ], "imitative": [ "JJ" ], "donates": [ "VBZ" ], "Klejna": [ "NNP" ], "Lopid": [ "NNP" ], "Higher": [ "JJR", "NNP" ], "Selig": [ "NNP" ], "demeans": [ "VBZ" ], "intervenors": [ "NNS" ], "Hazardous": [ "JJ" ], "extremis": [ "FW" ], "Anson": [ "NN" ], "amelioration": [ "NN" ], "barristers": [ "NNS" ], "Augusto": [ "NNP" ], "qualifies": [ "VBZ" ], "bouffe": [ "NN" ], "Cyclades": [ "NNS" ], "turtlebacks": [ "NNS" ], "Augusta": [ "NNP" ], "Supermarkets": [ "NNS", "NNP", "NNPS" ], "Rome": [ "NNP", "NN" ], "rivaling": [ "VBG" ], "refrigerated": [ "VBN", "JJ" ], "Roma": [ "NNP" ], "A.V.": [ "NNP" ], "Romm": [ "NNP" ], "porters": [ "NNS" ], "gushing": [ "VBG" ], "escorting": [ "VBG" ], "Infant": [ "JJ" ], "stabilize": [ "VB", "VBP" ], "Lindemann": [ "NNP" ], "debating": [ "VBG", "JJ" ], "donated": [ "VBN", "VBD" ], "eighties": [ "NNS" ], "wanting-to-be-alone": [ "JJ" ], "cornerstones": [ "NNS" ], "Flagg": [ "NNP" ], "dishing": [ "VBG" ], "busts": [ "NNS", "VBZ" ], "lambastes": [ "VBZ" ], "dissenting": [ "JJ", "VBG" ], "tidily": [ "RB" ], "third-selling": [ "JJ" ], "lambasted": [ "VBD", "VBN" ], "Devine": [ "NNP" ], "Valais": [ "NNP" ], "unrestrictedly": [ "RB" ], "Finder": [ "NNP" ], "long-stemmed": [ "JJ" ], "Wheat": [ "NNP", "JJ", "NN" ], "intercourse": [ "NN" ], "Gandy": [ "NNP" ], "uncannily": [ "RB" ], "liveliness": [ "NN" ], "Barbier-Mueller": [ "NNP" ], "Jager": [ "NNP" ], "landfilling": [ "VBG", "NN" ], "committeemen": [ "NNS" ], "Five-O": [ "NNP" ], "Snedeker": [ "NNP" ], "Samsung": [ "NNP" ], "unsolder": [ "VB" ], "dispatched": [ "VBD", "VBN" ], "LaBoon": [ "NNP" ], "Babson": [ "NNP" ], "Felipe": [ "NNP" ], "Vocabularianism": [ "NNP" ], "telepathy": [ "NN" ], "dispatches": [ "NNS" ], "manikin": [ "NN" ], "Widen": [ "VB" ], "live-in": [ "JJ" ], "Spear": [ "NNP", "VB" ], "referent": [ "NN" ], "Franconia": [ "NNP" ], "pandemic": [ "NN" ], "Sign": [ "NNP", "NN" ], "turn": [ "VB", "NN", "RB", "VBP" ], "handicrafts": [ "NNS" ], "Anticipating": [ "VBG" ], "cafes": [ "NNS" ], "Wider": [ "JJR" ], "turf": [ "NN", "JJ" ], "Gordan": [ "NNP" ], "Ferrero": [ "NNP" ], "Speak": [ "VB", "NN", "NNP" ], "BOD1,000": [ "NN" ], "market-driven": [ "JJ" ], "milk-supply": [ "NN" ], "spiralled": [ "VBD" ], "accruing": [ "VBG" ], "toughest-ever": [ "JJS" ], "Eubank": [ "NNP" ], "Horowitz": [ "NNP" ], "zinc-strip": [ "JJ" ], "Mon-Columbia": [ "NNP" ], "cheerfully": [ "RB" ], "Break": [ "NN", "VB", "NNP" ], "Leach": [ "NNP" ], "action-packed": [ "JJ" ], "Bombeck": [ "NNP" ], "containerized-cargo": [ "NN" ], "Commercial": [ "NNP", "FW", "JJ", "NN" ], "insulins": [ "NNS" ], "charge-offs...": [ ":" ], "fortuitous": [ "JJ" ], "high-legged": [ "JJ" ], "Gauntley": [ "NNP" ], "Phoenician": [ "JJ" ], "HIGHER": [ "JJR" ], "IMA": [ "NNP" ], "Airpark": [ "NNP" ], "Upchurch": [ "NNP" ], "IMF": [ "NNP" ], "Brendan": [ "NNP" ], "IMO": [ "NNP" ], "Dowling": [ "NNP" ], "IMS": [ "NNP" ], "enigma": [ "NN" ], "Minister": [ "NNP" ], "affiliating": [ "VBG" ], "Five-Elements": [ "NNP" ], "Runtagh": [ "NNP" ], "reinforce": [ "VB", "VBP" ], "branch-by-branch": [ "RB" ], "Sears": [ "NNP", "NNS" ], "computer": [ "NN" ], "Brake": [ "NNP" ], "bigticket": [ "NN" ], "unsatisfactorily": [ "RB" ], "Jaross": [ "NNP" ], "Pottawatomie": [ "NNP" ], "technology-licensing": [ "JJ" ], "Fails": [ "NNS", "VBZ" ], "once-over": [ "NN" ], "Tora": [ "NNP" ], "Toro": [ "NNP", "NN" ], "Bolanos": [ "NNP" ], "Tort": [ "NNP" ], "pastime": [ "NN" ], "Fishman": [ "NNP" ], "Clurman": [ "NNP" ], "EMPIRE": [ "NNP" ], "Tory": [ "NNP", "JJ" ], "astonishingly": [ "RB" ], "wanderer": [ "NN" ], "Drift": [ "NNP" ], "Bravado": [ "NNP" ], "Cattrall": [ "NNP" ], "wandered": [ "VBD" ], "X-Tru-Coat": [ "NNP" ], "animation": [ "NN" ], "Spaulding": [ "NNP" ], "resembling": [ "VBG" ], "tambourine": [ "NN" ], "improvisations": [ "NNS" ], "surf": [ "NN", "VBP" ], "sure": [ "JJ", "PDT", "RB", "UH" ], "Dealers": [ "NNS", "NNP", "NNPS" ], "adversities": [ "NNS" ], "indelible": [ "JJ" ], "Hebrew": [ "NNP" ], "donation": [ "NN" ], "Montfaucon": [ "NNP" ], "Francoisette": [ "NNP" ], "COVERAGE": [ "NNP" ], "surmised": [ "VBD", "VBN" ], "Taxi": [ "NN" ], "autonomic-somatic": [ "JJ" ], "tax-overhaul": [ "JJ", "NN" ], "latex": [ "NN" ], "Antioquia": [ "NNP" ], "NRL": [ "NNP" ], "NRC": [ "NNP" ], "NRA": [ "NNP" ], "later": [ "RB", "JJ", "RP", "JJR", "RBR" ], "Ventilation": [ "NN", "NNP" ], "beaded": [ "VBN" ], "Prodded": [ "VBN" ], "Bolinas": [ "NNP" ], "Schick": [ "NNP" ], "Sportswear": [ "NNP" ], "uninterested": [ "JJ" ], "urge": [ "VB", "VBP", "NN" ], "often-ignored": [ "JJ" ], "bulked-up": [ "JJ" ], "reinvigorate": [ "VB" ], "pursuant": [ "JJ" ], "Vermont-based": [ "JJ" ], "dirge": [ "NN" ], "semi-literate": [ "JJ" ], "Anthropic": [ "NNP" ], "Cornish": [ "NNP" ], "Gaylord": [ "NNP" ], "nadir": [ "NN" ], "gulf": [ "NN" ], "Saddam": [ "NNP" ], "Convincing": [ "VBG", "JJ" ], "gulp": [ "NN" ], "crimps": [ "VBZ" ], "J/NNP.J/NNP.A.": [ "NN" ], "glandular": [ "JJ" ], "Non-``": [ "``" ], "Mass\\/Amherst": [ "NNP" ], "Gaja": [ "NNP" ], "wistful": [ "JJ" ], "Preliminary": [ "JJ" ], "Edythe": [ "NNP" ], "Techcorps": [ "NNP" ], "homestead": [ "NN" ], "Acclaim": [ "NNP" ], "closed-end": [ "JJ" ], "doble": [ "NN" ], "outperform": [ "VB", "JJ", "VBP" ], "African-controlled": [ "JJ" ], "Denise": [ "NNP" ], "barbaric": [ "JJ" ], "Nell": [ "NNP" ], "commercial-loan": [ "JJ", "NN" ], "Clueless": [ "NNP" ], "artworks": [ "NNS" ], "egotism": [ "NN" ], "T-cell": [ "NN" ], "slashing": [ "VBG" ], "Taschereau": [ "NNP" ], "ball-carriers": [ "NNS" ], "back-end": [ "JJ" ], "Vigorous": [ "JJ" ], "voluntary": [ "JJ" ], "Tsitouris": [ "NNP" ], "illusionary": [ "JJ" ], "Portico": [ "NNP" ], "remote-controlled": [ "JJ" ], "Kenney": [ "NNP" ], "Smith-Hughes": [ "NNP" ], "historicism": [ "NN" ], "barging": [ "VBG" ], "smokestack": [ "NN" ], "ketosis": [ "NN" ], "Himalayas": [ "NNPS" ], "Vos": [ "NNP" ], "Yff": [ "IN" ], "guitar": [ "NN" ], "Zosen": [ "NNP" ], "Himalayan": [ "JJ" ], "car-development": [ "NN" ], "road-map": [ "NN" ], "acquiring": [ "VBG" ], "Irma": [ "NNP" ], "contract": [ "NN", "VB", "VBP" ], "officer": [ "NN" ], "Pantages": [ "NNS" ], "Rudman": [ "NNP" ], "designations": [ "NNS" ], "railway": [ "NN" ], "filtering": [ "VBG", "NN" ], "Michelin": [ "NNP" ], "billion-yen": [ "JJ" ], "HARD": [ "JJ" ], "Buechel": [ "NNP" ], "Widespread": [ "JJ" ], "opines": [ "VBZ" ], "two-story": [ "JJ" ], "enunciated": [ "VBD" ], "Foodmaker": [ "NNP" ], "consumptive": [ "JJ" ], "escalated": [ "VBN", "VBD" ], "Negotiating": [ "VBG" ], "tonsils": [ "NNS" ], "salt-edged": [ "JJ" ], "featuring": [ "VBG" ], "squatters": [ "NNS" ], "Lawn": [ "NNP" ], "fishin": [ "VBG" ], "Madama": [ "NNP" ], "downwind": [ "RB", "JJ" ], "Madame": [ "NNP", "NN" ], "repond": [ "VB" ], "coherently": [ "RB" ], "ophthalmic": [ "JJ" ], "Lidgerwood": [ "NNP" ], "ashtrays": [ "NNS" ], "spirit": [ "NN" ], "protocols": [ "NNS" ], "pilot": [ "NN", "JJ", "VB" ], "Jean-Michel": [ "NNP" ], "Stern-faced": [ "JJ" ], "chromatographic": [ "JJ" ], "obligating": [ "VBG" ], "entractes": [ "NNS" ], "career": [ "NN", "NNP" ], "defunded": [ "VBN" ], "Open": [ "NNP", "JJ", "VB" ], "Kuan": [ "NNP" ], "Opel": [ "NNP" ], "trove": [ "NN" ], "non-insider": [ "NN" ], "fisted": [ "VBD" ], "AMEX": [ "NNP" ], "Politicians": [ "NNS" ], "minds": [ "NNS" ], "AMES": [ "NNP" ], "Salton": [ "NNP" ], "shopkeeper": [ "NN" ], "Mirella": [ "NNP" ], "economic-cooperation": [ "NN" ], "granted": [ "VBN", "JJ", "VBD" ], "eggshell": [ "JJ" ], "Workforce": [ "NNP" ], "dining-room": [ "NN" ], "anti-opera": [ "NN" ], "sucker": [ "NN" ], "jazzmen": [ "NNS" ], "careen": [ "VB" ], "huzzahs": [ "NNS" ], "silliest": [ "JJS" ], "vintners": [ "NNS" ], "week": [ "NN" ], "studentled": [ "VBN" ], "slow-acting": [ "JJ" ], "Walkmen": [ "NNP" ], "Karan": [ "NNP" ], "weed": [ "NN", "VB" ], "director": [ "NN" ], "Dread": [ "NNP" ], "Banks": [ "NNP", "NNPS", "NNS" ], "Sidewalk": [ "NNP", "NN" ], "weep": [ "VB", "NN" ], "Dream": [ "NNP", "NN", "VB" ], "Insurrecto": [ "FW" ], "quantitive": [ "JJ" ], "Generic-industry": [ "JJ" ], "sinned": [ "VBN" ], "rupee": [ "NN" ], "maltreated": [ "VBN" ], "once-balkanized": [ "JJ" ], "without": [ "IN" ], "relief": [ "NN" ], "deflated": [ "VBD", "JJ", "VBN" ], "inability": [ "NN" ], "Romances": [ "NNP" ], "sinner": [ "NN" ], "coaxing": [ "JJ", "VBG" ], "ninth": [ "JJ" ], "twenty-page": [ "JJ" ], "DeBartolo": [ "NNP" ], "persiflage": [ "NN" ], "Belgian": [ "JJ", "NNP" ], "headhunters": [ "NNS" ], "wher": [ "WRB" ], "refrigerant": [ "NN" ], "cumara": [ "NN" ], "liters": [ "NNS" ], "cattle-lifter": [ "NN" ], "surprise...": [ ":" ], "airfield": [ "NN" ], "emulsifiers": [ "NNS" ], "lets": [ "VBZ" ], "setting": [ "VBG", "NN" ], "bleats": [ "NNS" ], "flashing": [ "VBG", "NN" ], "sucked": [ "VBD", "VBN" ], "\\*": [ "SYM", "LS", "NN" ], "hot-water": [ "NN" ], "men-of-war": [ "NNS" ], "Deliberations": [ "NNP" ], "Tamarijn": [ "NNP" ], "Manu": [ "NNP" ], "omnipotence": [ "NN" ], "Many": [ "JJ", "RB", "NNP", "PDT", "DT" ], "inordinate": [ "JJ" ], "president\\/national-government": [ "NN" ], "Ortega": [ "NNP" ], "Mana": [ "NNP" ], "J.D.H.": [ "NNP" ], "mahua": [ "NN" ], "treehouse": [ "NN" ], "millidegree": [ "NN" ], "Mann": [ "NNP" ], "Brave": [ "NNP" ], "iron-handed": [ "JJ" ], "out-of-court": [ "JJ" ], "Hallett": [ "NNP" ], "Consul": [ "NNP" ], "gyms": [ "NNS" ], "Blaustein": [ "NNP" ], "Switches": [ "NNS" ], "AmeriTrust": [ "NNP" ], "run-ins": [ "NNS", "JJ", "NN" ], "donations": [ "NNS" ], "wholly-owned": [ "JJ" ], "scientist\\/traders": [ "NNS" ], "Majestic": [ "NNP" ], "curriculums": [ "NNS" ], "just-concluded": [ "JJ" ], "picture": [ "NN", "VB", "VBP" ], "Immanuel": [ "NNP" ], "LEVERAGED": [ "VBN" ], "Aschenbach": [ "NNP" ], "Reuben": [ "NNP" ], "competition": [ "NN" ], "Luft": [ "NNP" ], "Located": [ "VBN" ], "Kum": [ "NNP" ], "Ellen": [ "NNP" ], "lentils": [ "NNS" ], "developmental": [ "JJ" ], "mood": [ "NN" ], "Pechora-class": [ "JJ" ], "Sherrill": [ "NNP" ], "frees": [ "VBZ" ], "freer": [ "JJR" ], "West-German": [ "JJ" ], "rooming": [ "VBG" ], "depletion": [ "NN" ], "half-off": [ "JJ" ], "imputed": [ "VBN", "JJ" ], "tailin": [ "NN" ], "debt-to-assets": [ "JJ" ], "wristwatch": [ "NN" ], "porter": [ "NN" ], "freed": [ "VBN", "JJ", "VBD" ], "Schley": [ "NNP" ], "KUHN": [ "NNP" ], "unpegged": [ "JJ" ], "beached": [ "JJ" ], "stereotyped": [ "JJ", "VBN" ], "Schlek": [ "NNP" ], "parishioners": [ "NNS" ], "resurrection": [ "NN" ], "Billerica": [ "NNP" ], "Blush": [ "NNP" ], "stereotypes": [ "NNS" ], "Playing": [ "VBG" ], "beaches": [ "NNS" ], "Regaard": [ "NNP" ], "Goya": [ "NNP" ], "gendarme": [ "NN" ], "Schoolmarm": [ "NN" ], "reprisals": [ "NNS" ], "mega-deals": [ "NNS" ], "discussed": [ "VBN", "VBD" ], "decelerated": [ "VBN" ], "Quattro": [ "NNP" ], "discusses": [ "VBZ" ], "A300-600R": [ "NNP" ], "tribe": [ "NN" ], "Nunes": [ "NNP" ], "curses": [ "NNS" ], "instruments": [ "NNS" ], "Jidge": [ "NNP" ], "Rostagnos": [ "NNPS" ], "Sandinistas...": [ ":" ], "cursed": [ "VBD", "VBN" ], "Trivelpiece": [ "NNP" ], "flea-infested": [ "JJ" ], "SUES": [ "VBZ" ], "Rorer": [ "NNP" ], "Lubars": [ "NNP" ], "propeller-driven": [ "JJ" ], "Obelisk": [ "NNP" ], "there": [ "EX", "RB", "UH" ], "relocation": [ "NN" ], "alleged": [ "VBN", "JJ", "VBD" ], "junctures": [ "NNS" ], "knee-socked": [ "JJ" ], "Proclamation": [ "NNP" ], "nuclear-armed": [ "JJ" ], "alleges": [ "VBZ", "NNS" ], "fastball": [ "NN" ], "treat": [ "VB", "VBP", "NN" ], "Utsunomiya": [ "NNP" ], "Singer": [ "NNP", "NN" ], "Compute": [ "VB" ], "Ordinarily": [ "RB" ], "staunchest": [ "JJS" ], "Water-soluble": [ "JJ" ], "crystallite": [ "NN" ], "rouse": [ "VB" ], "well-modulated": [ "JJ" ], "Narragansett": [ "NNP" ], "offical": [ "JJ" ], "wholesale": [ "JJ", "NN" ], "slumlord": [ "NN" ], "artisans": [ "NNS" ], "Abell": [ "NNP" ], "whupped": [ "VBD" ], "Billboard": [ "NNP" ], "flats": [ "NNS" ], "grass": [ "NN" ], "creeping": [ "VBG", "JJ" ], "Lancaster": [ "NNP" ], "accentuated": [ "VBN", "VBD" ], "Bhutan": [ "NNP" ], "taste": [ "NN", "VB", "VBP" ], "tri-colored": [ "JJ" ], "cockeyed": [ "JJ" ], "accentuates": [ "VBZ" ], "tasty": [ "JJ" ], "firebug": [ "NN" ], "uncovered": [ "VBN", "VBD", "JJ" ], "onerous": [ "JJ" ], "piracy": [ "NN" ], "volley-ball": [ "NN" ], "roses": [ "NNS" ], "off-year": [ "JJ" ], "c-reflects": [ "VBZ" ], "lemon-lime": [ "JJ" ], "passenger-car": [ "NN" ], "proliferate": [ "VBP" ], "super-exciting": [ "JJ" ], "fuel-efficient": [ "JJ" ], "pillows": [ "NNS" ], "Modestly": [ "RB" ], "Carden": [ "NNP" ], "cordless": [ "JJ" ], "START": [ "NNP" ], "Faight": [ "NNP" ], "STARS": [ "NNP", "NNS" ], "Holguin": [ "NNP" ], "inroads": [ "NNS" ], "PFC": [ "NNP" ], "blacks": [ "NNS", "NNPS" ], "Majesty": [ "NNP" ], "Quotrons": [ "NNPS" ], "Deegan": [ "NNP" ], "Darlene": [ "NNP" ], "platted": [ "VBN" ], "Textbook": [ "NN" ], "executive-model": [ "JJ" ], "Cleo": [ "NNP" ], "shortfall": [ "NN" ], "Hungarian-born": [ "NNP", "JJ" ], "Esnards": [ "NNPS" ], "roi": [ "FW" ], "ShareData": [ "NNP" ], "scrappy": [ "JJ" ], "off-road": [ "JJ" ], "wreath": [ "NN" ], "logarithms": [ "NNS" ], "no-fuss": [ "JJ" ], "Avnet": [ "NNP" ], "Avner": [ "NNP" ], "re-rescue": [ "VB" ], "SHOPS": [ "NNS" ], "child-development": [ "NN" ], "titter": [ "NN", "VBP" ], "facelifts": [ "NNS" ], "extraneous": [ "JJ" ], "Dramatic": [ "JJ" ], "dairy": [ "NN", "JJ", "NN|JJ" ], "Gardelin": [ "NNP" ], "Arakawa": [ "NNP" ], "lawmakers": [ "NNS" ], "blood-soaked": [ "JJ" ], "Axioms": [ "NNS" ], "tethered": [ "VBN", "VBD", "JJ" ], "uptick": [ "NN", "NN|JJ", "VB" ], "Alaska": [ "NNP" ], "Baulieu": [ "NNP" ], "snapdragons": [ "NNS" ], "vacationing": [ "VBG", "NN" ], "beefore": [ "IN" ], "Translink": [ "NNP" ], "Field-Fisher": [ "NNP" ], "Boom-city": [ "NNP" ], "Testing": [ "NN", "NNP" ], "Fenner": [ "NNP" ], "Vendors": [ "NNS" ], "phonology": [ "NN" ], "butterfat-rich": [ "JJ" ], "Carla": [ "NNP" ], "limited-growth": [ "NN" ], "Marrie": [ "NNP" ], "liars": [ "NNS" ], "Carli": [ "NNP" ], "Carlo": [ "NNP" ], "lise": [ "NNS" ], "familiarly": [ "RB" ], "dessier": [ "VB" ], "Pepcid": [ "NNP" ], "escalation": [ "NN" ], "abstracted": [ "JJ", "VBD" ], "Kravis": [ "NNP" ], "slavered": [ "VBD" ], "breakers": [ "NNS" ], "butyrate": [ "NN" ], "invention": [ "NN" ], "regulus": [ "NN" ], "yokel": [ "NN" ], "Naganawa": [ "NNP" ], "hairspray": [ "NN" ], "stickpin": [ "NN" ], "chalk": [ "NN", "VBP", "VB" ], "risen": [ "VBN" ], "Quitslund": [ "NNP" ], "musts": [ "NNS" ], "wrongdoers": [ "NNS" ], "belied": [ "VBD" ], "rascal": [ "NN" ], "brief": [ "JJ", "NN", "VB" ], "Milunovich": [ "NNP" ], "Drs.": [ "NNP", "NNPS" ], "version": [ "NN" ], "pulpit": [ "NN" ], "Nowhere": [ "RB" ], "CEOs": [ "NNS", "NNP" ], "Compound": [ "JJ", "NN" ], "information-processing": [ "NN" ], "Cinq": [ "NNP" ], "pre-penicillin": [ "JJ" ], "unquestioned": [ "JJ" ], "compresses": [ "NNS", "VBZ" ], "ruffle": [ "VB" ], "Daimler-Benz": [ "NNP" ], "mayoral": [ "JJ" ], "drudgery": [ "NN" ], "compressed": [ "VBN", "VBD" ], "Kaltschmitt": [ "NNP" ], "Dumez": [ "NNP" ], "tragedy": [ "NN" ], "rocket-bombs": [ "NNS" ], "Winthrop": [ "NNP" ], "Absolutely": [ "RB" ], "pizzerias": [ "NNS" ], "bungled": [ "VBD", "VBN" ], "switchers": [ "NNS" ], "Kolb": [ "NNP" ], "horrified": [ "VBN", "JJ" ], "Japanese-American": [ "JJ" ], "gyrated": [ "VBD", "VBN" ], "tragedians": [ "NNS" ], "binders": [ "NNS" ], "Thoroughly": [ "NNP", "RB" ], "Smithsonian": [ "NNP" ], "Gisele": [ "NNP" ], "doggerel": [ "NN" ], "Artzt": [ "NNP" ], "Chien-Min": [ "NNP" ], "apprentices": [ "NNS" ], "Circumstance": [ "NNP" ], "Beatty": [ "NNP" ], "Mayor-elect": [ "NNP" ], "Supper": [ "NNP", "NN" ], "Immediately": [ "RB" ], "affluence": [ "NN" ], "courthouses": [ "NNS" ], "Hammersmith": [ "NNP" ], "flat": [ "JJ", "NN", "RB" ], "flaw": [ "NN" ], "flap": [ "NN" ], "Erich": [ "NNP" ], "materiel": [ "NN" ], "mire": [ "NN" ], "maquiladora": [ "NN" ], "flay": [ "VB" ], "flax": [ "NN" ], "mutely": [ "RB" ], "Morocco": [ "NNP" ], "flag": [ "NN", "VB" ], "Mass": [ "NNP", "JJ", "NN" ], "Fresenius": [ "NNP" ], "Nacchio": [ "NNP" ], "flak": [ "NN" ], "Lightly": [ "RB" ], "self-sacrifice": [ "NN" ], "Gymnasium": [ "NNP" ], "besides": [ "IN", "RB" ], "Greaney": [ "NNP" ], "Finalists": [ "NNS" ], "yanked": [ "VBD", "VBN" ], "salted": [ "VBN", "VBD", "JJ" ], "classified-ad": [ "NN" ], "Nepal": [ "NNP" ], "mid-1958": [ "NN" ], "quota-trained": [ "JJ" ], "S.P.C.A.": [ "NN" ], "libertarian": [ "JJ" ], "mortgage-banking": [ "NN" ], "Fortin": [ "NNP" ], "run-up": [ "NN" ], "pro-union": [ "JJ" ], "Quebecois": [ "NNP" ], "Defections": [ "NNS" ], "ordinance": [ "NN" ], "independent-contractor": [ "JJ" ], "toxic-waste-dump": [ "JJ" ], "Ahmiri": [ "NNP" ], "exalted": [ "JJ", "VBD" ], "once-loyal": [ "JJ" ], "Shadow": [ "NNP", "NN" ], "rebalance": [ "VB" ], "aahs": [ "NNS" ], "guttural": [ "JJ", "NN" ], "okay": [ "JJ", "RB", "VB", "UH" ], "abdicate": [ "VBP", "VB" ], "estate...": [ ":" ], "orbits": [ "NNS" ], "never-ending": [ "JJ" ], "sponsors": [ "NNS", "VBZ" ], "Epps": [ "NNP" ], "Interhash": [ "NNP" ], "lighting": [ "NN", "VBG" ], "FAKE": [ "JJ" ], "holored": [ "VBN" ], "contingency": [ "NN" ], "proclaimed": [ "VBD", "JJ", "VBN" ], "short": [ "JJ", "NN", "RB", "VB" ], "Aiken": [ "NNP" ], "wallets": [ "NNS" ], "ring-around-a-rosy": [ "NN" ], "marching": [ "VBG", "NN" ], "congregation": [ "NN" ], "supervision": [ "NN" ], "climaxed": [ "VBD", "VBN" ], "site-development": [ "NN" ], "Logan": [ "NNP" ], "extrapolation": [ "NN" ], "Playgirl": [ "NNP" ], "Democrats": [ "NNPS", "NNP", "NNS", "VBP" ], "climaxes": [ "NNS" ], "shorn": [ "VB" ], "pre-maquila": [ "JJ" ], "began": [ "VBD" ], "Yukon": [ "NNP" ], "lifeguards": [ "NNS" ], "tanks": [ "NNS" ], "unimaginative": [ "JJ" ], "Koffman": [ "NNP" ], "closeness": [ "NN" ], "Tarmac": [ "NNP" ], "Bianchi": [ "NNP" ], "chansons": [ "FW" ], "Confindustria": [ "NNP" ], "boun": [ "NN" ], "fourth-hand": [ "JJ" ], "millinery": [ "NN" ], "clashed": [ "VBN", "VBD" ], "Clinics": [ "NNP" ], "Monticello": [ "NNP", "NN" ], "mattress": [ "NN" ], "clashes": [ "NNS", "VBZ" ], "Binder": [ "NNP" ], "SUIT": [ "NN" ], "ebulliently": [ "RB" ], "bout": [ "NN", "IN" ], "dimly": [ "RB" ], "oftentimes": [ "RB" ], "reappearance": [ "NN" ], "Safra": [ "NNP" ], "incitement": [ "NN" ], "Oxford": [ "NNP" ], "Pleasure": [ "NN" ], "hunted": [ "VBN", "VBD", "JJ" ], "Spain": [ "NNP" ], "Seward": [ "NNP" ], "adventurous": [ "JJ" ], "Halperin": [ "NNP" ], "schoolteacher": [ "NN" ], "Racquet": [ "NNP" ], "mathematician": [ "NN" ], "liniment": [ "NN" ], "philology": [ "NN" ], "policyholders": [ "NNS" ], "Consultants": [ "NNP", "NNS", "NNPS" ], "mastered": [ "VBN", "VBD" ], "Midwood": [ "NNP" ], "Hospitals": [ "NNS", "NNP", "NNPS" ], "Christian-dominated": [ "JJ" ], "Larson": [ "NNP" ], "bolstering": [ "VBG" ], "Castroism": [ "NNP" ], "weight": [ "NN", "VB" ], "Saints": [ "NNP", "NNPS" ], "greenmail": [ "NN" ], "Lothson": [ "NNP" ], "Debra": [ "NNP" ], "Mud": [ "NNP" ], "Cleota": [ "NNP" ], "transistors": [ "NNS" ], "cloudy": [ "JJ" ], "Passport": [ "NN" ], "SuperDot": [ "NNP" ], "standards": [ "NNS" ], "English-Dutch": [ "JJ" ], "Equifax": [ "NNP" ], "alcohol": [ "NN" ], "foolproof": [ "JJ" ], "frittering": [ "VBG" ], "chartroom": [ "NN" ], "commemorative": [ "JJ", "NN" ], "said.``": [ "``" ], "see-lective": [ "JJ" ], "half-grown": [ "JJ" ], "guess": [ "VBP", "NN", "VB" ], "Caprice": [ "NNP" ], "lever": [ "NN" ], "czars": [ "NNS" ], "Corvettes": [ "NNS" ], "Brestowe": [ "NNP" ], "echelons": [ "NNS" ], "jet": [ "NN", "VBP" ], "home-delivery": [ "NN" ], "seahorse": [ "NN" ], "Molding": [ "NN", "NNP" ], "Polyphosphates": [ "NNS" ], "Eloy": [ "NNP" ], "clipboard-sized": [ "JJ" ], "fallen": [ "VBN", "JJ" ], "Eloi": [ "NNP" ], "connotation": [ "NN" ], "Ostpolitik": [ "NNP" ], "limestone": [ "NN" ], "enlarges": [ "VBZ" ], "Oklahoma": [ "NNP" ], "Keeps": [ "VBZ" ], "litany": [ "NN" ], "Territories": [ "NNP", "NNPS" ], "enlarged": [ "VBN", "JJ", "VBD" ], "mine-hunting": [ "JJ" ], "hipline": [ "NN" ], "illustrating": [ "VBG" ], "Sinan": [ "NNP" ], "Shaver": [ "NNP" ], "Denver-area": [ "NN" ], "Tintoretto": [ "NNP" ], "rookies": [ "NNS" ], "Geman": [ "NNP" ], "interviews": [ "NNS", "VBZ" ], "Fayette": [ "NNP" ], "Pleasant": [ "NNP", "JJ" ], "trend": [ "NN", "VB" ], "Larry": [ "NNP" ], "transparent...": [ ":" ], "fought": [ "VBD", "VBN" ], "Abroad": [ "RB", "NNP" ], "mainstay": [ "NN", "JJ" ], "serotonin": [ "NN" ], "rifle": [ "NN" ], "unmentioned": [ "VBN" ], "insolvencies": [ "NNS" ], "excitability": [ "NN" ], "scabbard": [ "NN" ], "Elementary": [ "NNP", "JJ" ], "scanners": [ "NNS" ], "McAuley": [ "NNP" ], "amass": [ "VB", "VBP" ], "pre-emption": [ "JJ" ], "Borland": [ "NNP" ], "exert": [ "VB", "VBP" ], "Zionist": [ "JJ" ], "Swisher": [ "NNP" ], "Zionism": [ "NNP" ], "Keio": [ "NNP" ], "J.B.": [ "NNP" ], "hopelessly": [ "RB" ], "Iceland": [ "NNP" ], "Relativism": [ "NN" ], "Romagnosi": [ "NNP" ], "Eppler": [ "NNP" ], "foamed": [ "JJ", "VBD", "VBN" ], "banjo": [ "NN" ], "Hamey": [ "NNP" ], "Cities-ABC": [ "NNP" ], "electric": [ "JJ", "NN" ], "populate": [ "VB", "VBP" ], "hyperzeal": [ "NN" ], "Sternenberg": [ "NNP" ], "RBS": [ "NNP" ], "Arkhangelsk": [ "NNP" ], "Six-month": [ "JJ", "NNP" ], "certificate-of-need": [ "NN" ], "Zhao": [ "NNP" ], "Bohemian": [ "NNP" ], "storefronts": [ "NNS" ], "defensible": [ "JJ" ], "RBC": [ "NNP" ], "Reeves-type": [ "JJ" ], "Marsam": [ "NNP" ], "diversifed": [ "VBN" ], "order-processing": [ "JJ" ], "chaga": [ "NN" ], "traditional": [ "JJ" ], "home-fashion": [ "NN" ], "obediently": [ "RB" ], "liberate": [ "VB" ], "Colfax": [ "NNP" ], "restore": [ "VB", "VBP" ], "Profit": [ "NN", "NNP" ], "Shack": [ "NNP" ], "Efficiencies": [ "NNS" ], "fining": [ "VBG" ], "gain.": [ "NN" ], "Haruki": [ "NNP" ], "emulsion": [ "NN" ], "Brumby": [ "NNP" ], "drumbeat": [ "NN" ], "grazed": [ "VBD" ], "witty": [ "JJ" ], "axial": [ "JJ" ], "grazer": [ "NN" ], "Hampster": [ "NNP" ], "pink-sheet": [ "JJ" ], "Sorecom": [ "NNP" ], "northerners": [ "NNS" ], "Homebuilders": [ "NNPS" ], "Specialties": [ "NNP" ], "levi-clad": [ "JJ" ], "Tavoy": [ "NNP" ], "grievances": [ "NNS" ], "adulthood": [ "NN" ], "white-spirit": [ "NN" ], "BW": [ "NNP" ], "Kandahar": [ "NNP" ], "Meselson": [ "NNP" ], "BP": [ "NNP" ], "cringe": [ "VBP", "VB" ], "Alabamian": [ "NN" ], "Christopoulos": [ "NNP" ], "overhauling": [ "VBG", "NN" ], "evangelist-industrialist": [ "NN" ], "Households": [ "NNS" ], "defense": [ "NN" ], "unflagging": [ "JJ" ], "six-cent-a-share": [ "JJ" ], "chambers": [ "NNS" ], "ex-Marine": [ "NN" ], "Reformed": [ "NNP", "JJ" ], "more-stringent": [ "JJ", "JJR" ], "threats": [ "NNS", "VBZ" ], "Hinchliff": [ "NNP" ], "Miniscribe": [ "NNP" ], "fall-off": [ "NN" ], "Trego": [ "NNP" ], "upper-deck": [ "JJ" ], "viewership": [ "NN" ], "Mottram": [ "NNP" ], "tactically": [ "RB" ], "Buttacavoli": [ "NNP" ], "climbable": [ "JJ" ], "Blackburn": [ "NNP" ], "favorableness": [ "NN" ], "Could": [ "MD" ], "citya": [ "NN" ], "betrayer": [ "NN" ], "demon-ridden": [ "NN" ], "Khouja": [ "NNP" ], "baleful": [ "JJ" ], "bibs": [ "NNS" ], "Dhuu": [ "NNP" ], "Bonnor": [ "NNP" ], "Teenage": [ "NNP" ], "paradigms": [ "NNS" ], "Meadow": [ "NNP" ], "sheaths": [ "NNS" ], "renegotiable": [ "JJ" ], "bandit": [ "NN" ], "unincorporated": [ "JJ" ], "asceticism": [ "NN" ], "Counseling": [ "NN", "NNP" ], "Spurdle": [ "NNP" ], "Trujillo": [ "NNP" ], "economy-lodging": [ "JJ" ], "Cheddi": [ "NNP" ], "Cotton": [ "NNP", "NN" ], "reside": [ "VBP", "VB" ], "limp-looking": [ "JJ" ], "regulates": [ "VBZ" ], "Maserati": [ "NNP" ], "previewing": [ "VBG" ], "sweet": [ "JJ" ], "wastebasket": [ "NN" ], "sweep": [ "NN", "VB" ], "F.J.": [ "NNP" ], "pants-legs": [ "NN" ], "regulated": [ "VBN", "JJ", "VBD" ], "village": [ "NN" ], "Post-Graduate": [ "NNP" ], "banditos": [ "NNS" ], "tepees": [ "NNS" ], "startling": [ "JJ", "VBG" ], "Saftey": [ "NNP" ], "Reforms": [ "NNS" ], "Properties": [ "NNP", "NNPS", "NNS" ], "adenomas": [ "NN" ], "flinty": [ "JJ" ], "softest": [ "JJS" ], "motion-pattern": [ "NN" ], "cinch": [ "NN", "VB" ], "demand": [ "NN", "VB", "VBP" ], "logger": [ "NN" ], "Booty": [ "NN" ], "Memoirs": [ "NNP" ], "Irian": [ "NNP" ], "frozen": [ "VBN", "JJ" ], "Boots": [ "NNP", "NNS" ], "Solemnis": [ "NNP" ], "Booth": [ "NNP" ], "Eckerd": [ "NNP" ], "insistently": [ "RB" ], "concurrently": [ "RB" ], "storage-case": [ "NN" ], "credence": [ "NN" ], "napped": [ "VBD" ], "Vicenza": [ "NNP" ], "demon": [ "NN" ], "Shrewd": [ "JJ" ], "Semiconductor": [ "NNP", "NN" ], "obstacle": [ "NN" ], "Dominated": [ "VBN" ], "Harbors": [ "NNPS" ], "chestnuts": [ "NNS" ], "spell-binding": [ "JJ" ], "Pp.": [ "NN", "NNS" ], "anti-cancer": [ "JJ" ], "cross-marketing": [ "JJ", "VBG" ], "Adventure": [ "NNP", "NN" ], "Leyse": [ "NNP" ], "absentees": [ "NNS" ], "monolithic": [ "JJ" ], "Mo.-based": [ "JJ" ], "Itel": [ "NNP" ], "essences": [ "NNS" ], "peacemaking": [ "NN", "JJ" ], "impede": [ "VB", "VBP" ], "contractors": [ "NNS" ], "bronzy-green-gold": [ "JJ" ], "third-period": [ "JJ" ], "bourgeois": [ "JJ", "NN" ], "deflects": [ "VBZ" ], "overemphasized": [ "VBN" ], "Hoechst": [ "NNP" ], "Treasurys": [ "NNPS", "NNP", "NNS" ], "Miller": [ "NNP" ], "awaye": [ "RB" ], "Druin": [ "NNP" ], "Socialists": [ "NNS", "NNPS" ], "Geology": [ "NNP" ], "WINDOW": [ "NN" ], "Stardust": [ "NN" ], "Millen": [ "NNP" ], "Cos.": [ "NNP", "NNPS" ], "dulling": [ "VBG" ], "spindled": [ "VBD" ], "chain-of-command": [ "NN" ], "unseen": [ "JJ" ], "Seems": [ "VBZ", "NNS" ], "Sec.": [ "NN", "NNP" ], "Madre": [ "NNP" ], "Bohlen": [ "NNP" ], "shootings": [ "NNS" ], "arrowed": [ "JJ" ], "continent": [ "NN" ], "Rainman": [ "NNP" ], "crusher": [ "NN" ], "Arnell": [ "NNP" ], "F16s": [ "NNS" ], "U.N.-supervised": [ "JJ" ], "grottoes": [ "NNS" ], "Matsu": [ "NNP" ], "Krumpp": [ "NNP" ], "tormented": [ "VBN", "JJ" ], "acrobatics": [ "NNS" ], "Handy": [ "NNP" ], "Banoun": [ "NNP" ], "Performances": [ "NNPS" ], "Raghavan": [ "NNP" ], "doorbell": [ "NN" ], "Smedes": [ "NNP" ], "Seco": [ "NNP" ], "Fashion": [ "NNP", "NN", "VB" ], "Landmark": [ "NNP" ], "Martoche": [ "NNP" ], "Penthouse": [ "NNP" ], "and\\": [ "CC" ], "systematically": [ "RB" ], "admittedly": [ "RB" ], "Candace": [ "NNP" ], "IBM-bashing": [ "NN" ], "collect": [ "VB", "JJ", "VBP" ], "Dearie": [ "NNP" ], "Bifutek-san": [ "FW" ], "Rinascimento": [ "NNP" ], "AirTran": [ "NNP" ], "Mulvoy": [ "NNP" ], "engravings": [ "NNS" ], "Lemon": [ "NNP" ], "arch-opponent": [ "NN" ], "proessional": [ "NN" ], "Sixties": [ "NNPS", "NNS" ], "Dhofaris": [ "NNPS" ], "sauces": [ "NNS" ], "saucer": [ "NN" ], "documentary-type": [ "JJ" ], "Murfreesboro": [ "NNP" ], "retry": [ "VB" ], "Mareb": [ "NNP" ], "b-plane": [ "NN" ], "inoculate": [ "VB" ], "shamrocks": [ "NNS" ], "bankruptcy-law": [ "NN", "JJ" ], "retro": [ "JJ" ], "Marer": [ "NNP" ], "pegboard": [ "NN" ], "contrasting": [ "VBG", "JJ" ], "meretricious": [ "JJ" ], "Tennyson": [ "NNP" ], "Dreieich": [ "NNP" ], "Gospel-singer": [ "NN" ], "Market-leader": [ "NN" ], "Prejudice": [ "NNP" ], "elixir": [ "NN" ], "Lavelle": [ "NNP" ], "Govs.": [ "NNP" ], "GUIDE": [ "NNP" ], "vaccine": [ "NN" ], "Roh": [ "NNP" ], "cautious": [ "JJ" ], "Unleaded": [ "JJ" ], "runes": [ "NNS" ], "Ron": [ "NNP" ], "kitchenette": [ "NN" ], "Rob": [ "NNP" ], "glaucoma": [ "NN" ], "Rod": [ "NNP" ], "Roe": [ "NNP" ], "associaitons": [ "NNS" ], "Roy": [ "NNP" ], "double-glazed": [ "JJ" ], "quashed": [ "VBD", "VBN" ], "complimentary": [ "JJ" ], "fluttering": [ "VBG" ], "Commission-controlled": [ "JJ" ], "fleets": [ "NNS", "VBZ" ], "Urbano": [ "NNP" ], "yearbook": [ "NN" ], "Senium": [ "FW" ], "purporting": [ "VBG" ], "Pavel": [ "NNP" ], "no-tax": [ "JJ" ], "Lee-based": [ "JJ" ], "Paved": [ "VBN" ], "burials": [ "NNS" ], "rows": [ "NNS" ], "entitlement": [ "NN", "JJ" ], "Hildebrandt": [ "NNP" ], "PARTNERSHIP": [ "NNP" ], "Brut": [ "NNP" ], "summertime": [ "NN" ], "sleight": [ "NN" ], "upheld": [ "VBD", "VBN" ], "Lao-tse": [ "NNP" ], "Launder-Ometer": [ "NNP" ], "Arianespace": [ "NNP" ], "Kanoff": [ "NNP" ], "Hrothgar": [ "NNP" ], "pterygia": [ "NN" ], "Familism": [ "NN" ], "goods-producing": [ "JJ" ], "gracefulness": [ "NN" ], "pumped-up": [ "JJ" ], "reassurance": [ "NN" ], "Malpractice": [ "NN" ], "raftered": [ "VBN" ], "Ashton": [ "NNP" ], "Franchisees": [ "NNS" ], "supinely": [ "RB" ], "Austin": [ "NNP" ], "enthusiam": [ "NN" ], "Petipa": [ "NNP" ], "Cassatt": [ "NNP" ], "remunerative": [ "JJ" ], "city-like": [ "JJ" ], "Commemorative": [ "NNP" ], "Lawrenceville": [ "NNP" ], "landscaped": [ "VBN", "JJ" ], "capitalized": [ "VBN", "JJ", "VBD" ], "Mignon": [ "NNP" ], "capitalizes": [ "VBZ" ], "clear-eyed": [ "JJ" ], "landscapes": [ "NNS" ], "Pitney": [ "NNP" ], "Talyzin": [ "NNP" ], "steeped": [ "VBN" ], "sepia": [ "JJ" ], "loan-management": [ "NN" ], "Attracted": [ "VBN" ], "Arguments": [ "NNS" ], "teased": [ "VBN", "VBD" ], "higher-quality": [ "JJ", "NN" ], "Orbe": [ "NNP" ], "Indicating": [ "VBG" ], "steeper": [ "JJR", "NN" ], "boatyards": [ "NNS" ], "disappoints": [ "VBZ" ], "peach": [ "NN" ], "Fuster": [ "NNP" ], "Heberto": [ "NNP" ], "High-tension": [ "JJ" ], "peace": [ "NN" ], "These": [ "DT" ], "Gottesman": [ "NNP" ], "Fielder": [ "NNP" ], "Kolff": [ "NNP" ], "TNT": [ "NNP", "NN" ], "Mallet-Prevost": [ "NNP" ], "users": [ "NNS" ], "Walford": [ "NNP" ], "eighty-fifth": [ "JJ" ], "breasts": [ "NNS" ], "fertilized": [ "VBN", "JJ" ], "TNF": [ "NNP" ], "Ranyard": [ "NNP" ], "posters": [ "NNS" ], "TNN": [ "NNP" ], "California-backed": [ "JJ" ], "happier": [ "JJR" ], "Longstreet": [ "NNP" ], "Stansbery": [ "NNP" ], "curvaceously": [ "RB" ], "semi-rigid": [ "JJ" ], "foundry": [ "NN" ], "fat-tired": [ "JJ" ], "Deller": [ "NNP" ], "impatient": [ "JJ", "NN" ], "private-banking": [ "JJ" ], "non-social": [ "JJ" ], "impatiens": [ "NNS" ], "vocally": [ "RB" ], "reined": [ "VBD", "VBN" ], "F.W.": [ "NNP" ], "Europeanish": [ "JJ" ], "vue": [ "FW", "NN" ], "carnality": [ "NN" ], "clinical-products": [ "NNS" ], "Politizdat": [ "NNP" ], "Finsilver": [ "NNP" ], "Cooling": [ "NN", "NNP" ], "gang": [ "NN", "VB" ], "Department": [ "NNP", "NN" ], "C-130": [ "NN" ], "cases": [ "NNS", "VBZ" ], "cat-like": [ "JJ" ], "theorist": [ "NN" ], "Monagan": [ "NNP" ], "Lithox": [ "NNP" ], "Lille": [ "NNP" ], "fortresses": [ "NNS" ], "metallurgy": [ "NN" ], "high-mileage": [ "JJ" ], "Paquin": [ "NNP" ], "breach": [ "NN", "VB" ], "unsettling": [ "JJ", "VBG" ], "Arroyo": [ "NNP" ], "overstraining": [ "NN" ], "confirmation": [ "NN" ], "re-animated": [ "JJ" ], "mainstream": [ "NN", "JJ", "RB" ], "Amidst": [ "IN" ], "ladle": [ "NN" ], "Rhodes": [ "NNP" ], "Zenaida": [ "NNP" ], "P": [ "NN", "NNP" ], "Allende": [ "NNP" ], "re-animates": [ "VBZ" ], "Jarmusch": [ "NNP" ], "downgradings": [ "NNS" ], "volume-wine": [ "JJ" ], "Tedi": [ "NNP" ], "Congdon": [ "NNP" ], "paternity": [ "NN" ], "bonds": [ "NNS" ], "Coletta": [ "NNP" ], "workouts": [ "NNS" ], "Vevey": [ "NNP" ], "friendliness": [ "NN" ], "Cygne": [ "NNP" ], "copper-based": [ "JJ" ], "Arseneault": [ "NNP" ], "Allentown": [ "NNP" ], "Skywalker": [ "NNP" ], "Spatiality": [ "NN" ], "Arrest": [ "NN" ], "Novaya": [ "NNP" ], "Suit": [ "NN" ], "thynke": [ "VBP" ], "life-time": [ "JJ" ], "folk": [ "NN", "NNS" ], "Mekong": [ "NNP" ], "farm-policy": [ "NN" ], "robotism": [ "NN" ], "showcase": [ "NN", "JJ" ], "concessions": [ "NNS" ], "Formed": [ "VBN" ], "investable": [ "JJ" ], "nickel-iron": [ "NN" ], "Former": [ "JJ", "NNP" ], "LENSES": [ "NNS" ], "St-story": [ "NN" ], "Billock": [ "NNP" ], "voluntarily": [ "RB" ], "degree": [ "NN" ], "re-arguing": [ "VBG" ], "monetary": [ "JJ" ], "youngest": [ "JJS" ], "gloat": [ "VB", "NN" ], "Enimont": [ "NNP" ], "adjoined": [ "VBD" ], "Chantal": [ "NNP" ], "Begley": [ "NNP" ], "INVESTMENT": [ "NNP", "NN" ], "survivor": [ "NN" ], "distressed": [ "JJ", "VBN" ], "pickle": [ "NN" ], "Haverfield": [ "NNP" ], "Insight": [ "NNP" ], "shades": [ "NNS" ], "leaving": [ "VBG", "NN" ], "bond-futures": [ "NNS" ], "Moross": [ "NNP" ], "submerged": [ "VBN", "JJ" ], "pitchmen": [ "NNS" ], "lighthearted": [ "JJ" ], "writes": [ "VBZ" ], "distresses": [ "NNS", "VBZ" ], "up-to-date": [ "JJ" ], "falsity": [ "NN" ], "duct": [ "NN" ], "improbably": [ "RB" ], "apt": [ "JJ" ], "improbable": [ "JJ" ], "captaincy": [ "NN" ], "cheerleader": [ "NN" ], "walruses": [ "NNS" ], "Appraisers": [ "NNPS" ], "ape": [ "NN" ], "Clearance": [ "NN" ], "stream-of-consciousness": [ "NN" ], "hypothetically": [ "RB" ], "examination": [ "NN" ], "six-foot": [ "JJ" ], "brushwork": [ "NN" ], "constitutionally": [ "RB" ], "Arranging": [ "VBG" ], "eagles": [ "NNS" ], "freezers": [ "NNS" ], "grandest": [ "JJS" ], "clever": [ "JJ" ], "homopolymers": [ "NNS" ], "opiates": [ "NNS" ], "advertiser-programming": [ "NN" ], "antennae": [ "NNS" ], "clean-burning": [ "JJ" ], "Murmann": [ "NNP" ], "capitulated": [ "VBD", "VBN" ], "prepublication": [ "NN" ], "non-compliance": [ "NN" ], "antennas": [ "NNS" ], "verity": [ "NN" ], "fraternize": [ "VB" ], "disingenuous": [ "JJ" ], "Nucci": [ "NNP" ], "Hemming": [ "NNP" ], "mounded": [ "VBD", "VBN" ], "critic": [ "NN" ], "liquid-crystal": [ "JJ", "NN" ], "profitting": [ "VBG" ], "cubists": [ "NNS" ], "Hemispheric": [ "NNP" ], "executor": [ "NN" ], "Vamp": [ "NNP" ], "palpitations": [ "NNS" ], "Varner": [ "NNP" ], "dissolve": [ "VB", "VBP", "NN" ], "Dwyer": [ "NNP" ], "persuades": [ "VBZ" ], "Science": [ "NNP", "NN" ], "G.P.": [ "NNP" ], "Rimstalker": [ "NNP" ], "inaccessible": [ "JJ" ], "Forests": [ "NNPS", "NNP", "NNS" ], "Alistair": [ "NNP" ], "clomped": [ "VBD" ], "lessers": [ "NNS" ], "Buttavacoli": [ "NNP" ], "Guandong": [ "NNP" ], "Laidig": [ "NNP" ], "well-founded": [ "JJ" ], "mid-term": [ "JJ" ], "hinders": [ "VBZ" ], "justifiable": [ "JJ" ], "struggles": [ "NNS", "VBZ" ], "Afnasjev": [ "NNP" ], "fiscal-first-quarter": [ "JJ" ], "justifiably": [ "RB" ], "struggled": [ "VBD", "VBN" ], "toddler": [ "NN" ], "Montero": [ "NNP" ], "Campobello": [ "NNP" ], "fifth-inning": [ "NN" ], "Dorfman": [ "NNP" ], "Reading": [ "NNP", "NN", "VBG" ], "Soba": [ "FW" ], "Noranda": [ "NNP" ], "monthlong": [ "JJ" ], "tact": [ "NN" ], "militarist": [ "NN" ], "tack": [ "NN", "VB", "VBP" ], "wrist": [ "NN" ], "restructures": [ "VBZ" ], "Orchestration": [ "NNP" ], "militarism": [ "NN" ], "radio-station": [ "NN" ], "Dronk": [ "NNP" ], "Cognos": [ "NNP" ], "Vickery": [ "NNP" ], "majorities": [ "NNS" ], "Vickers": [ "NNP" ], "Anac": [ "NNP" ], "arduous": [ "JJ" ], "Demme": [ "NNP" ], "manganese": [ "NN" ], "softdrink": [ "NN" ], "Pamasu": [ "NNP" ], "six-year": [ "JJ" ], "Norgle": [ "NNP" ], "broad-scaled": [ "JJ" ], "colognes": [ "NNS" ], "beauties": [ "NNS" ], "Shellpot": [ "NNP" ], "goof-offs": [ "NNS" ], "reporters": [ "NNS" ], "meager": [ "JJ" ], "Sophomores": [ "NNS" ], "Shaevitz": [ "NNP" ], "bolognaise": [ "FW" ], "Cecilia": [ "NNP" ], "Elyria": [ "NNP" ], "flautist": [ "NN" ], "GENENTECH": [ "NNP" ], "Poszgay": [ "NNP" ], "holiday": [ "NN" ], "TransAmerican": [ "NNP" ], "campaigned": [ "VBD", "VBN" ], "pan-national": [ "JJ" ], "idiomatic": [ "JJ" ], "latermaturing": [ "JJ" ], "interstellar": [ "JJ" ], "Eddies": [ "NNP" ], "land-based": [ "JJ" ], "Nederlandse": [ "NNP" ], "Estherson": [ "NNP" ], "leniency": [ "NN" ], "crystallographers": [ "NNS" ], "Turnover": [ "NN", "NNP" ], "landings": [ "NNS" ], "articles": [ "NNS" ], "E-2C": [ "NN", "NNP" ], "footstool": [ "NN" ], "Stanford-Idec": [ "NNP" ], "trimmer": [ "JJR" ], "Nogol": [ "NNP" ], "Slowing": [ "VBG", "JJ" ], "trimmed": [ "VBN", "RBR", "VBD", "JJ" ], "strike-bound": [ "JJ" ], "Calderon": [ "NNP" ], "hosses": [ "NNS" ], "dogmatic": [ "JJ" ], "cocoon": [ "NN" ], "oui": [ "FW" ], "Moiseyev": [ "NNP" ], "car-happy": [ "JJ" ], "whimsy": [ "NN" ], "oud": [ "NN" ], "Oryx": [ "NNP" ], "Ronnel": [ "NN" ], "Chaucer": [ "NNP" ], "PRIVILEGE": [ "NN" ], "our": [ "PRP$" ], "Structures": [ "NNS", "NNPS", "NNP" ], "additions": [ "NNS" ], "out": [ "IN", "JJ", "NN", "RB", "RP" ], "Borrowed": [ "VBN" ], "Genigraphics": [ "NNP" ], "southerly": [ "JJ" ], "hagglings": [ "NNS" ], "acknowledgment": [ "NN" ], "sentiment": [ "NN" ], "Warrenton": [ "NNP" ], "cerebral": [ "JJ" ], "Fabi": [ "NNP" ], "gossamer": [ "NN" ], "telemarketers": [ "NNS" ], "plaguing": [ "VBG" ], "Borrower": [ "NN" ], "Goldwyn": [ "NNP" ], "IDA": [ "NNP" ], "frankness": [ "NN" ], "fourth-consecutive": [ "JJ" ], "disclose": [ "VB", "VBP" ], "Fists": [ "NNS" ], "insecurities": [ "NNS" ], "Dianne": [ "NNP" ], "BURBANK": [ "NNP" ], "Unconcerned": [ "JJ" ], "Azioni": [ "NNP" ], "tenement": [ "NN" ], "Verification": [ "NN", "NNP" ], "miscellanies": [ "NNS" ], "Agnew": [ "NNP" ], "tenant": [ "NN" ], "Agnes": [ "NNP", "NNS" ], "miscount": [ "NN" ], "informs": [ "VBZ" ], "Durante": [ "NNP" ], "grass-green": [ "JJ" ], "York-born": [ "NNP|VBN" ], "Hyde": [ "NNP" ], "Diving": [ "NN", "NNP" ], "Hallucigenia": [ "NNP" ], "Divine": [ "NNP", "JJ", "NN" ], "museum": [ "NN" ], "Baldness": [ "NN" ], "recession-wary": [ "JJ" ], "Wadsworth": [ "NNP" ], "obscurity": [ "NN" ], "Bartholow": [ "NNP" ], "signboard": [ "NN" ], "realtors": [ "NNS" ], "bonnet": [ "NN" ], "little-noticed": [ "JJ" ], "galvanized": [ "JJ", "VBD", "VBN" ], "apprenticeship": [ "NN" ], "Gyp": [ "NNP" ], "outstate": [ "JJ" ], "umbrellas": [ "NNS" ], "Valery": [ "NNP" ], "M.D.-speak": [ "JJ" ], "Dickensian": [ "JJ" ], "wagging": [ "VBG" ], "Fitz": [ "NNP" ], "Brokers": [ "NNS", "NNP", "NNPS" ], "Duston": [ "NNP" ], "Hawk": [ "NNP" ], "Moscone": [ "NNP" ], "Hawn": [ "NNP" ], "tidbit": [ "NN" ], "ombudsman": [ "NN" ], "Trader": [ "NNP" ], "Trades": [ "NNPS" ], "disheartening": [ "JJ" ], "insta-book": [ "NN" ], "Kirschner": [ "NNP" ], "Hauptman": [ "NNP" ], "mules": [ "NNS" ], "diminish": [ "VB", "VBP" ], "Koopman": [ "NNP" ], "Traded": [ "NNP", "VBN" ], "Reactions": [ "NNS" ], "U.S.-U.K.": [ "JJ" ], "succeeded": [ "VBN", "VBD" ], "monetary-policy": [ "NN" ], "objectionable": [ "JJ" ], "Petey": [ "NN" ], "wish-list": [ "NN" ], "Vessel": [ "NNP" ], "Lyme-disease": [ "JJ" ], "Peter": [ "NNP" ], "M&A": [ "NNP", "NN" ], "tracts": [ "NNS" ], "clip": [ "NN", "VB" ], "M&H": [ "NNP" ], "Anton": [ "NNP" ], "recyclable": [ "JJ" ], "coalesces": [ "VBZ" ], "Norborne": [ "NNP" ], "Jody": [ "NNP" ], "linked": [ "VBN", "VBD", "JJ" ], "ringed": [ "JJ", "VBN" ], "pallor": [ "NN" ], "Cheryl": [ "NNP" ], "pupils": [ "NNS" ], "bough": [ "NN" ], "Orlowski": [ "NNP" ], "Bayerische": [ "NNP" ], "Airfones": [ "NNS" ], "unbearably": [ "RB" ], "Dewey": [ "NNP" ], "energy-services": [ "NNS", "JJ" ], "dollar-sign": [ "NN" ], "leakers": [ "NNS" ], "bellwethers": [ "NNS" ], "accountants": [ "NNS" ], "digestive": [ "JJ" ], "Klass": [ "NNP" ], "Panels": [ "NNS" ], "Cyprian": [ "NNP" ], "spirits": [ "NNS" ], "subjective": [ "JJ" ], "polyester": [ "NN" ], "Shoppes": [ "NNP", "NNS" ], "whipsawing": [ "NN", "VBG" ], "Slim": [ "NNP", "JJ" ], "trounced": [ "VBD" ], "Actions": [ "NNS" ], "Atty.": [ "NNP" ], "open-handed": [ "JJ" ], "VeloBind": [ "NNP" ], "Huck": [ "NNP" ], "post-Revolutionary": [ "JJ" ], "agreed": [ "VBD", "VBN", "JJ" ], "large-denomination": [ "NN", "JJ" ], "artfully": [ "RB" ], "longevity": [ "NN" ], "technician": [ "NN" ], "docilely": [ "RB" ], "Terral": [ "NNP" ], "fission": [ "NN" ], "weekly": [ "JJ", "RB|JJ", "NN|JJ", "NN", "RB" ], "fear": [ "NN", "VB", "VBP" ], "feat": [ "NN" ], "Genossenschafts": [ "NNP" ], "postulates": [ "NNS" ], "nearer": [ "JJR", "IN", "RBR" ], "put-option": [ "NN" ], "Sekisui": [ "NNP" ], "justitia": [ "NN" ], "postulated": [ "VBN", "JJ" ], "studded": [ "VBN" ], "local": [ "JJ", "NN" ], "not-yet-married": [ "JJ" ], "plazas": [ "NNS" ], "agree.": [ "VB" ], "symptom-free": [ "JJ" ], "monuments": [ "NNS" ], "Platzer": [ "NNP" ], "massacre": [ "NN", "VB" ], "Champagnes": [ "NNS" ], "burglars": [ "NNS" ], "malaise": [ "NN" ], "misbranded": [ "JJ" ], "post-attack": [ "JJ" ], "Providing": [ "VBG" ], "airman": [ "NN" ], "manye": [ "JJ" ], "differential": [ "JJ", "NN" ], "nonracial": [ "JJ" ], "ITEL": [ "NNP" ], "leviathan": [ "JJ", "NN" ], "avoidable": [ "JJ" ], "ascertain": [ "VB" ], "Sevigli": [ "NNP" ], "Draco": [ "NNP" ], "Kueneke": [ "NNP" ], "Einhorn": [ "NNP" ], "predictive": [ "JJ" ], "requirement": [ "NN" ], "Philco": [ "NNP" ], "State-controlled": [ "JJ" ], "humiliation": [ "NN" ], "Branching": [ "NNP" ], "Friedenwald": [ "NNP" ], "longer-lived": [ "JJ" ], "pigeon-holed": [ "JJ" ], "Over-chilling": [ "NN" ], "Bowls": [ "NNP" ], "buzzed": [ "VBD" ], "non-cyclical": [ "JJ" ], "luminous": [ "JJ" ], "Orben": [ "NNP" ], "Galatians": [ "NNPS" ], "drawling": [ "VBG" ], "droughts": [ "NNS" ], "favor": [ "NN", "VBP", "VB" ], "chairmanship": [ "NN" ], "doxepin": [ "NN" ], "boughs": [ "NNS" ], "Affect": [ "VB" ], "yellerish": [ "JJ" ], "bought": [ "VBD", "VBN" ], "Foerster": [ "NNP" ], "Conception": [ "NNP" ], "ability": [ "NN" ], "opening": [ "NN", "VBG", "JJ" ], "Smith-Kline": [ "NNP" ], "Hokey": [ "JJ" ], "Vector": [ "NNP" ], "fast-firing": [ "JJ" ], "Jury": [ "NNP", "NN" ], "Pretoria": [ "NNP", "NN" ], "Retrieval": [ "NNP" ], "Kemper": [ "NNP" ], "Mets": [ "NNP", "NNPS" ], "Peladeau": [ "NNP" ], "Metz": [ "NNP" ], "theoreticians": [ "NNS" ], "natural-foods": [ "NNS" ], "Meta": [ "NNP" ], "non-British": [ "JJ" ], "tactical": [ "JJ" ], "unclear": [ "JJ" ], "Lila": [ "NNP" ], "Harriman": [ "NNP" ], "MIDDLEMAN": [ "NN" ], "environments": [ "NNS" ], "Thieves": [ "NNS" ], "Lonsdale": [ "NNP" ], "connotes": [ "VBZ" ], "Lily": [ "NNP" ], "electrocardiogram": [ "NN" ], "unclean": [ "JJ" ], "Shoettle": [ "NNP" ], "occured": [ "VBD" ], "motorbike": [ "NN" ], "Mendes": [ "NNP" ], "platform": [ "NN" ], "choosier": [ "JJR" ], "Mendez": [ "NNP" ], "boatman": [ "NN" ], "reservations": [ "NNS" ], "No-Cal": [ "NNP" ], "symbolic-sounding": [ "JJ" ], "Guild": [ "NNP" ], "bedded": [ "VBN" ], "Pothier": [ "NNP" ], "scrutiny": [ "NN" ], "dressers": [ "NNS" ], "pageants": [ "NNS" ], "tangible": [ "JJ" ], "Ennis": [ "NNP" ], "Porsches": [ "NNPS" ], "verbenas": [ "NNS" ], "admonishments": [ "NNS" ], "management-led": [ "JJ", "NN" ], "fearful": [ "JJ" ], "come-uppance": [ "NN" ], "speculator": [ "NN" ], "Concludes": [ "VBZ" ], "Preyss": [ "NNP" ], "black-crowned": [ "JJ" ], "motif": [ "NN" ], "ringing": [ "VBG", "NN" ], "Miner": [ "NNP" ], "Abernathys": [ "NNPS" ], "Sunlight": [ "NNP" ], "rooster": [ "NN" ], "thum": [ "PRP" ], "gunship": [ "NN" ], "thug": [ "NN" ], "co-edited": [ "JJ" ], "Troup": [ "NNP" ], "gyroscopes": [ "NNS" ], "weak-kneed": [ "JJ" ], "Trout": [ "NNP" ], "pilgrimages": [ "NNS" ], "twin-engined": [ "JJ" ], "PROPOSED": [ "VBD" ], "eight-week": [ "JJ" ], "subcontract": [ "VB", "JJ", "NN" ], "waitresses": [ "NNS" ], "Wishing": [ "VBG" ], "largess": [ "NN" ], "geographical": [ "JJ" ], "largest": [ "JJS", "RBS" ], "misogynist": [ "NN" ], "Communist-inspired": [ "JJ" ], "Insights": [ "NNPS" ], "clamors": [ "VBZ" ], "Billikens": [ "NNP" ], "hunting-gear": [ "JJ" ], "slave": [ "NN" ], "Purdue": [ "NNP" ], "conceived": [ "VBN", "VBD", "JJ" ], "Axa-Midi": [ "NNP" ], "toxicology": [ "NN" ], "throngs": [ "NNS" ], "laborious": [ "JJ" ], "conceives": [ "VBZ" ], "conceiver": [ "NN" ], "PLO-backed": [ "JJ" ], "Janizsewski": [ "NNP" ], "undertakes": [ "VBZ" ], "undertaker": [ "NN" ], "Kopcke": [ "NNP" ], "DuCharme": [ "NNP" ], "banging": [ "VBG", "NN" ], "catastrophically": [ "RB" ], "medium-duty": [ "JJ" ], "StatesWest": [ "NNP", "JJS" ], "undertaken": [ "VBN" ], "decliners": [ "NNS" ], "excessive": [ "JJ" ], "Deliver": [ "VB" ], "once-vast": [ "JJ" ], "germanium": [ "NN" ], "reincorporated": [ "VBN" ], "Romo": [ "NNP" ], "Engrg": [ "NNP" ], "underperforming": [ "VBG", "VBG|JJ", "JJ" ], "Weeks": [ "NNP", "NNS" ], "envisaged": [ "VBD", "VBN" ], "z-Not": [ "RB" ], "post-Vietnam": [ "JJ" ], "uncommonly": [ "RB" ], "arresting": [ "VBG", "JJ" ], "arylesterases": [ "NNS" ], "clothier": [ "NN" ], "Sacrestia": [ "NNP" ], "Genel": [ "NNP" ], "jars": [ "NNS" ], "more-powerful": [ "JJR" ], "Couch-potato": [ "NN" ], "astrological": [ "JJ" ], "MacWhorter": [ "NNP" ], "high-leverage": [ "JJ" ], "Lubkin": [ "NNP" ], "Adios-On": [ "NNP" ], "blueprints": [ "NNS", "VBZ" ], "frighteningly": [ "RB" ], "envisages": [ "VBZ" ], "facial": [ "JJ" ], "Schumacher": [ "NNP" ], "press": [ "NN", "VBP", "VB" ], "Ethernet": [ "NNP" ], "chutzpah": [ "NN" ], "countervailing": [ "JJ", "VBG" ], "check-out": [ "NN" ], "Zurn": [ "NNP" ], "truck-parts": [ "NNS" ], "Tangible": [ "JJ" ], "Paranormal": [ "NNP" ], "Kenyon": [ "NNP" ], "wonders": [ "NNS", "VBZ" ], "darbuka": [ "NN" ], "Sue": [ "NNP" ], "Amdec": [ "NNP" ], "spot-news": [ "NNS" ], "Sun": [ "NNP", "NN" ], "Sum": [ "NNP" ], "flagrant": [ "JJ" ], "expositions": [ "NNS" ], "Saicheua": [ "NNP" ], "Suu": [ "NNP" ], "Sut": [ "NNP" ], "Sur": [ "FW", "NNP" ], "vicarious": [ "JJ" ], "synchotron": [ "JJ" ], "Nike-Zeus": [ "NNP" ], "employment": [ "NN" ], "text-ordered": [ "JJ" ], "breakthroughs": [ "NNS" ], "Sponsors": [ "NNS" ], "staccato": [ "NN", "FW" ], "dipoles": [ "NNS" ], "vesting": [ "VBG" ], "mealynose": [ "NN" ], "Energized": [ "VBN" ], "Andee": [ "NNP" ], "acronym": [ "NN" ], "Penna.": [ "FW" ], "Jewel": [ "NNP" ], "Andel": [ "NNP" ], "Andes": [ "NNPS", "NNP" ], "Darlow": [ "NNP" ], "Remove": [ "VB" ], "item-veto": [ "JJ", "VB" ], "ECPA": [ "NNP" ], "Ellamae": [ "NNP" ], "non-Hispanic": [ "JJ" ], "inboards": [ "NNS" ], "Americana": [ "NNS", "NNP", "NN" ], "Americano": [ "NNP" ], "Sheller-Globe": [ "NNP" ], "constructon": [ "NN" ], "Stigmata": [ "NNS" ], "dial-a-banker": [ "JJ" ], "futurist": [ "NN" ], "Hepker": [ "NNP" ], "Portrait": [ "NN", "JJ" ], "Pointer": [ "NNP" ], "Pointes": [ "NNP" ], "converging": [ "VBG" ], "Morgan": [ "NNP", "NN" ], "wilderness": [ "NN" ], "previous-month": [ "JJ" ], "Juan": [ "NNP" ], "corporate-bond": [ "JJ" ], "F-series": [ "NNPS", "JJ" ], "weather": [ "NN", "VB", "VBP" ], "promise": [ "NN", "VB", "VBP" ], "evoking": [ "VBG" ], "unrifled": [ "JJ" ], "pre-noon": [ "NN" ], "iron-clad": [ "JJ" ], "Lightstone": [ "NNP" ], "fawning": [ "JJ", "VBG" ], "CH-47D": [ "NNP" ], "egalitarian": [ "JJ" ], "transfer": [ "NN", "VB", "VBP" ], "Invitations": [ "NNS" ], "Amy": [ "NNP" ], "Brinsley": [ "NNP" ], "Stoic": [ "NNP", "JJ" ], "resists": [ "VBZ" ], "Amp": [ "NNP" ], "farm-product": [ "NN" ], "Amt": [ "FW" ], "Prominent": [ "JJ" ], "chalky": [ "JJ" ], "hilar": [ "JJ" ], "Gunton": [ "NNP" ], "Turandot": [ "NNP" ], "trimester": [ "NN" ], "assail": [ "VB" ], "Bangladesh": [ "NNP" ], "Fantasia": [ "NNP" ], "Consumer": [ "NNP", "NN" ], "JoAnn": [ "NNP" ], "Lieut": [ "NN" ], "distract": [ "VB" ], "catching": [ "VBG", "NN" ], "infusions": [ "NNS" ], "cake": [ "NN" ], "gullibility": [ "NN" ], "sympathizing": [ "VBG" ], "government-ordered": [ "JJ" ], "carborundum": [ "JJ" ], "cream-of-the-crop": [ "NN" ], "Horten": [ "NNP" ], "work-paralysis": [ "NN" ], "inquisitor": [ "NN" ], "sheered": [ "VBD" ], "Shanghai-born": [ "JJ" ], "Soichiro": [ "NNP" ], "duplicative": [ "JJ" ], "Corby": [ "NNP" ], "Cortland": [ "NNP" ], "not-so-rich": [ "NN" ], "gross-income": [ "NN" ], "Wines": [ "NNP" ], "Brundtland": [ "NNP" ], "curtained": [ "JJ" ], "Lufthansa": [ "NNP", "NN" ], "complection": [ "NN" ], "COPE": [ "VB" ], "Merion": [ "NNP" ], "incredibly": [ "RB" ], "hot-pink": [ "JJ" ], "MD90": [ "NN" ], "shredded": [ "JJ", "VBD" ], "nourishment": [ "NN" ], "Torrid-Mighty": [ "NNP" ], "Future": [ "NNP", "JJ", "NN" ], "agrarian-reform": [ "JJ" ], "perfectionists": [ "NNS" ], "squeak": [ "NN" ], "exchangers": [ "NNS" ], "cliff": [ "NN" ], "pre-Punic": [ "JJ" ], "coupling": [ "VBG", "NN" ], "Omni": [ "NNP" ], "Lavaughn": [ "NNP" ], "seceding": [ "VBG" ], "Orders": [ "NNS", "NNPS" ], "riboflavin": [ "NN" ], "Bogart": [ "NNP" ], "smoke-filled": [ "JJ" ], "HIGHEST": [ "JJS" ], "Assurances": [ "NNP", "NNPS" ], "life-death": [ "JJ" ], "YORK": [ "NNP" ], "unscientific": [ "JJ" ], "writings": [ "NNS" ], "finessed": [ "VBD", "VBN" ], "Killers": [ "NNPS" ], "Leaping": [ "VBG" ], "Abbas": [ "NNP" ], "rocketing": [ "VBG" ], "Sundance": [ "NNP" ], "aegis": [ "NN" ], "ornate": [ "JJ" ], "conjuring": [ "VBG" ], "Woodwards": [ "NNP" ], "conjure": [ "VB", "VBP" ], "Tiles": [ "NNS" ], "herpetologists": [ "NNS" ], "electricity": [ "NN" ], "bank-holding": [ "JJ", "VBG", "NN" ], "IOCS": [ "NN" ], "Z-axis": [ "NN" ], "Efficiency": [ "NN" ], "farflung": [ "NN" ], "hardness": [ "NN" ], "kwashiorkor": [ "NN" ], "homemakers": [ "NNS" ], "corporate-tax": [ "JJ" ], "swivel": [ "JJ", "NN", "VB" ], "Riegger": [ "NNP" ], "deli": [ "NNS" ], "test-fired": [ "VBN" ], "preceeded": [ "VBN" ], "dell": [ "NN" ], "Mayberry": [ "NNP" ], "synthesizers": [ "NNS" ], "seven-eighths": [ "NNS", "JJ" ], "uncertain": [ "JJ", "RB" ], "active-player": [ "NN" ], "FLARE-OFF": [ "NN" ], "differentiated": [ "VBN", "JJ", "VBD" ], "prize": [ "NN", "JJ", "VBP" ], "Publique": [ "NNP" ], "Tele-Communications": [ "NNP", "NNPS" ], "Piccolino": [ "NNP" ], "tax-exempt": [ "JJ" ], "implanting": [ "VBG" ], "specialties": [ "NNS" ], "coolers": [ "NNS" ], "Desperate": [ "JJ" ], "succession": [ "NN" ], "green-brown": [ "JJ" ], "eye-popping": [ "JJ" ], "Evidently": [ "RB" ], "Screw": [ "NNP" ], "charter": [ "NN", "JJ" ], "BEI": [ "NNP" ], "daybed": [ "NN" ], "Lubberlanders": [ "NNS" ], "BEA": [ "NNP" ], "Kelly\\/David": [ "NNP" ], "stiffens": [ "VBZ" ], "pro-Communist": [ "JJ", "NNP" ], "icebergs": [ "NNS" ], "charted": [ "VBN" ], "shrugging": [ "VBG" ], "sterile": [ "JJ" ], "BET": [ "NNP" ], "hilariously": [ "RB" ], "country...": [ ":" ], "Appeal": [ "NNP", "NN", "VBP" ], "ruthless": [ "JJ" ], "Boley": [ "NNP" ], "dollar-cost": [ "JJ", "NN" ], "decry": [ "VB", "VBP" ], "OmniBank": [ "NNP" ], "Poltava": [ "NNP" ], "Hooper": [ "NNP" ], "Bedford-Stuyvesant...": [ ":" ], "Presidential": [ "JJ", "NNP" ], "Goverman": [ "NNP" ], "off-again": [ "JJ" ], "intentioned": [ "JJ" ], "Church": [ "NNP", "NN" ], "interdependent": [ "JJ" ], "dogwood": [ "NN" ], "dorm": [ "NN" ], "Varviso": [ "NNP" ], "pancreas": [ "NN" ], "silica-glass": [ "NN" ], "strewn": [ "VBN" ], "shareowners": [ "NNS" ], "sloshed": [ "VBD" ], "shmaltzy": [ "NN" ], "Gas-reactor": [ "JJ" ], "Elman": [ "NNP" ], "sale-purchases": [ "NNS" ], "Choosing": [ "VBG" ], "Rognoni": [ "NNP" ], "Alternative": [ "JJ", "NNP" ], "Goliath": [ "NNP" ], "Compared": [ "VBN" ], "divide": [ "VB", "NN", "VBP" ], "Frist": [ "FW" ], "warrantless": [ "JJ" ], "Physique": [ "NN" ], "Gatlinburg": [ "NNP" ], "summons": [ "NN" ], "Reznichenko": [ "NNP" ], "remnant": [ "NN" ], "Skeptics": [ "NNS", "NNP" ], "cheating": [ "NN", "VBG" ], "tardiness": [ "NN" ], "best-selling": [ "JJ", "JJS" ], "Slate": [ "NNP" ], "Varity": [ "NNP", "NN" ], "statesmanship": [ "NN" ], "non-Tories": [ "NNS" ], "five-person": [ "JJ" ], "highflying": [ "JJ" ], "CarCool": [ "NNP" ], "Stepanovich": [ "NNP" ], "Calves": [ "NNS" ], "snap-on": [ "JJ" ], "relay": [ "VB", "NN", "VBP" ], "relax": [ "VB", "VBP" ], "Softsoap": [ "NNP" ], "Halma": [ "NNP" ], "tying": [ "VBG" ], "pontifical": [ "JJ" ], "epicyclical": [ "JJ" ], "unaffiliated": [ "JJ" ], "orney": [ "JJ" ], "famed": [ "JJ", "VBN" ], "blade": [ "NN" ], "nonbusiness": [ "NN" ], "afar": [ "RB" ], "Pursewarden": [ "NNP" ], "Enchaine": [ "NNP" ], "Richardot": [ "NNP" ], "fames": [ "NNS" ], "Golub": [ "NNP" ], "Cardiovascular": [ "NNP" ], "DPW": [ "NNP" ], "vanities": [ "NNS" ], "DPT": [ "NNP" ], "DPS": [ "NNP" ], "newsweekly": [ "RB" ], "co-pilot": [ "NN", "NNS" ], "organized": [ "VBN", "VBD", "JJ" ], "Briar": [ "NNP" ], "dragons": [ "NNS" ], "Brian": [ "NNP" ], "Bike": [ "NNP" ], "DPC": [ "NNP" ], "cryostat": [ "NN" ], "Daze": [ "NNP" ], "organizer": [ "NN" ], "McClelland": [ "NNP" ], "McCurdy": [ "NNP" ], "Lloyds": [ "NNP" ], "Benoit": [ "NNP" ], "yuk": [ "NN" ], "cheetah": [ "NN" ], "nitrogen-mustard": [ "JJ" ], "Eagle-Picher": [ "NNP" ], "cheetal": [ "JJ" ], "Metabolite": [ "NN" ], "shored": [ "VBN" ], "modulation": [ "NN" ], "envied": [ "VBD" ], "fiber-coupled": [ "JJ" ], "Rattigan": [ "NNP" ], "overprotection": [ "NN" ], "diagram": [ "NN" ], "quips": [ "VBZ", "NNS" ], "destined": [ "VBN" ], "chump": [ "NN" ], "chums": [ "NNS" ], "Petersen": [ "NNP" ], "obscuring": [ "VBG" ], "Ormat": [ "NNP" ], "effective": [ "JJ", "VBN", "NN" ], "scourge": [ "NN" ], "Rensselaerwyck": [ "NNP" ], "well-ruled": [ "JJ" ], "luring": [ "VBG" ], "shocker": [ "NN" ], "snowballs": [ "NNS", "VBZ" ], "specks": [ "NNS" ], "Another": [ "DT", "NNP" ], "always-present": [ "JJ" ], "repatriated": [ "VBN" ], "pantheist": [ "NN" ], "Kenilworth": [ "NNP" ], "squint": [ "VBP" ], "evocations": [ "NNS" ], "Monterrey": [ "NNP" ], "Cuisinarts": [ "NNPS" ], "counterbidder": [ "NN" ], "Sigurd": [ "NNP" ], "USAir": [ "NNP", "NN" ], "CHALLENGED": [ "VBN" ], "OFFERED": [ "NNP", "JJ", "VBN|JJ", "VBN" ], "CBOE": [ "NNP" ], "vary": [ "VBP", "VB" ], "nonpriority": [ "NN" ], "Brew": [ "NNP" ], "Ruffians": [ "NNS" ], "CBOT": [ "NNP" ], "antacid": [ "NN" ], "Decades": [ "NNS" ], "bread-and-butter": [ "JJ" ], "well-received": [ "JJ" ], "PARTNERS": [ "NNS", "NNP", "NNPS" ], "all-exclusive": [ "JJ" ], "lovingly": [ "RB" ], "McDougall": [ "NNP" ], "directional": [ "JJ" ], "Offered": [ "NNP", "VBN" ], "bewteen": [ "IN" ], "matured": [ "VBD", "VBN" ], "hidden": [ "VBN", "JJ" ], "in-crowd": [ "NN" ], "glorify": [ "VB", "VBP" ], "Volvo": [ "NNP" ], "slicing": [ "VBG" ], "detachment": [ "NN" ], "wholesalers": [ "NNS" ], "var.": [ "NN" ], "DuComb": [ "NNP" ], "non-absorbent": [ "JJ" ], "hyped-up": [ "JJ" ], "structural": [ "JJ" ], "video-game": [ "NN" ], "APS": [ "NNP" ], "APV": [ "NNP" ], "APT": [ "NNP" ], "LaLonde": [ "NNP" ], "API": [ "NNP" ], "APM": [ "NNP" ], "Thirty-three": [ "NNP" ], "interfering": [ "VBG" ], "Seidel": [ "NNP" ], "expectancy": [ "NN" ], "distillers": [ "NNS" ], "biopesticide": [ "NN" ], "Labothe": [ "NNP" ], "distillery": [ "NN" ], "displacement": [ "NN" ], "Balogh": [ "NNP" ], "blinded": [ "VBN" ], "smoked-ham": [ "NN" ], "Byrum": [ "NNP" ], "Alastor": [ "NNP" ], "Dexatrim": [ "NNP" ], "diction": [ "NN" ], "Lefebvre": [ "NNP" ], "waive": [ "VB" ], "semiconductor": [ "NN" ], "strategist": [ "NN" ], "Godfrey": [ "NNP" ], "phenolic": [ "NN", "JJ" ], "Almagest": [ "NNP" ], "Garanti": [ "NNP" ], "University": [ "NNP", "NN" ], "Secesh": [ "NNP" ], "upbringing": [ "NN" ], "Frisco": [ "NNP" ], "Notarius": [ "NNP" ], "alert": [ "JJ", "VBP", "NN", "VB" ], "knit": [ "VBN", "JJ", "NN", "VB" ], "Erdolversorgungs": [ "NNP" ], "tie-ins": [ "NNS", "NN" ], "enlist": [ "VB" ], "scruff": [ "NN" ], "his\\/her": [ "JJR" ], "Carolingian": [ "JJ" ], "bated": [ "JJ" ], "Delbert": [ "NNP" ], "Yamaguchi": [ "NNP" ], "waists": [ "NNS" ], "relentlessness": [ "NN" ], "mid-priced": [ "JJ" ], "Ponzi": [ "NNP" ], "carryover": [ "NN" ], "selection-rejection": [ "JJ" ], "Gurria": [ "NNP" ], "adepts": [ "NNS" ], "Yoknapatawpha": [ "NNP" ], "loss-making": [ "JJ" ], "Postelle": [ "NNP" ], "wash": [ "NN", "VBP", "JJ", "VB" ], "instruct": [ "VB", "VBP" ], "Rall": [ "NNP" ], "Cullowhee": [ "NNP" ], "Hesse-Darmstadt": [ "NNP" ], "POLITICS": [ "NNS" ], "niger": [ "NN" ], "Stringer": [ "NNP" ], "Proctor": [ "NNP" ], "Vauxhill": [ "NNP" ], "Muggeridge": [ "NNP" ], "two-bits": [ "NNS" ], "R-6th": [ "NNP" ], "touting": [ "VBG" ], "muscle-meat": [ "NN" ], "listed": [ "VBN", "VBD", "JJ" ], "blossoms": [ "NNS" ], "underlie": [ "VBP", "VB" ], "mid-fifties": [ "NNS" ], "listen": [ "VB", "VBP" ], "banister": [ "NN" ], "predictably": [ "RB" ], "predictable": [ "JJ" ], "hayfields": [ "NNS" ], "sulphur": [ "NN" ], "MIPS-based": [ "JJ" ], "Beautiful": [ "JJ", "NNP" ], "attendent": [ "NN" ], "outlay": [ "NN" ], "Give": [ "VB" ], "outlaw": [ "VB", "NN" ], "halogens": [ "NNS" ], "one-twentieth": [ "JJ", "NN" ], "Feess": [ "NNP" ], "seminars": [ "NNS" ], "Poussin": [ "NNP" ], "dressmaking": [ "NN" ], "Attitudes": [ "NNS" ], "seminary": [ "NN" ], "Irish-Soviet": [ "JJ" ], "Jarrodsville": [ "NNP" ], "Angelo": [ "NNP" ], "PENCIL": [ "NNP" ], "Gradually": [ "RB" ], "Angell": [ "NNP" ], "Bilanz": [ "NNP" ], "entail": [ "VB", "VBP" ], "privvy": [ "JJ" ], "Sumter": [ "NNP" ], "Angela": [ "NNP" ], "Wis.": [ "NNP" ], "side-stepping": [ "JJ" ], "non-AMT": [ "JJ" ], "Mnuchin": [ "NNP" ], "Goloven": [ "NNP" ], "Angels": [ "NNPS", "NNP", "NNS" ], "Williams": [ "NNP" ], "Flexural": [ "JJ" ], "ex-Gov": [ "NNP" ], "concrete": [ "JJ", "NN" ], "Conlin": [ "NNP" ], "nagged": [ "VBD" ], "Schrage": [ "NNP" ], "Angel\\": [ "NNP" ], "agressive": [ "JJ" ], "Russo": [ "NNP" ], "Selway-Swift": [ "NNP" ], "Guglielmo": [ "NNP" ], "Wise": [ "NNP", "JJ" ], "miscalculated": [ "VBD", "VBN" ], "Stevric": [ "NNP" ], "doin": [ "VBG" ], "Direct-mail": [ "JJ" ], "letter": [ "NN" ], "counter-escalation": [ "NN" ], "drought": [ "NN" ], "ipso": [ "FW" ], "trapping": [ "VBG", "NN" ], "Dyer": [ "NNP" ], "undamaged": [ "JJ" ], "episode": [ "NN" ], "infidel": [ "JJ" ], "regulative": [ "JJ" ], "Ragavan": [ "NNP" ], "rollickingly": [ "RB" ], "Meshulam": [ "NNP" ], "kingdom-wide": [ "JJ" ], "departing": [ "VBG" ], "magisterially": [ "RB" ], "Astrodome": [ "NNP" ], "Cockerel": [ "NNP" ], "SCHWAB": [ "NNP" ], "soluble": [ "JJ" ], "Confessions": [ "NNPS", "NNP", "NNS" ], "recliner": [ "NN" ], "Battenkill": [ "NNP" ], "shuffling": [ "VBG", "NN" ], "cousins": [ "NNS" ], "wasting": [ "VBG", "JJ", "NN" ], "unreassuringly": [ "RB" ], "Scandalios": [ "NNP" ], "stropping": [ "VBG" ], "Scrambling": [ "VBG" ], "Millicom": [ "NNP" ], "Woman\\/McCall": [ "NNP" ], "Sweating": [ "VBG" ], "sniping": [ "NN", "VBG" ], "ELSINORE": [ "NNP" ], "kittenish": [ "JJ" ], "Taviani": [ "NNP" ], "Labor": [ "NNP", "NN" ], "Teletrac": [ "NNP" ], "flanker": [ "NN" ], "on-board": [ "JJ" ], "Completions": [ "NNS" ], "off-farm": [ "JJ" ], "altruistically": [ "RB" ], "you-know-what": [ "NN" ], "Galen": [ "NNP" ], "flanked": [ "VBD", "VBN" ], "Aricaras": [ "NNPS" ], "fait": [ "NN" ], "Bottling": [ "NNP" ], "blew": [ "VBD" ], "Adrar": [ "NNP" ], "mandatory": [ "JJ", "NN" ], "disaster": [ "NN" ], "fair": [ "JJ", "NN", "RB" ], "Hustead": [ "NNP" ], "Crawfordsville": [ "NNP" ], "exhanges": [ "NNS" ], "Daer": [ "NNP" ], "bled": [ "VBD" ], "blem": [ "NN" ], "faim": [ "FW" ], "essayists": [ "NNS" ], "Craddock": [ "NNP" ], "Shelter": [ "NN", "NNP" ], "hunker": [ "VB" ], "Convocation": [ "NN", "NNP" ], "Cusa": [ "NNP" ], "experimentalism": [ "NN" ], "unalterable": [ "JJ" ], "Peugeot": [ "NNP" ], "ooze": [ "NN", "VB" ], "invigorated": [ "VBN" ], "Clarion": [ "NNP" ], "Hessians": [ "NNS", "NNPS" ], "lefthanders": [ "NNS" ], "horseflesh": [ "NN" ], "Reproduction": [ "NNP" ], "Horsham": [ "NNP" ], "angling": [ "VBG", "NN" ], "Capello": [ "NNP" ], "anthropology": [ "NN" ], "federalist": [ "NN" ], "conclusions": [ "NNS" ], "Patients": [ "NNS", "NNPS" ], "Stratford": [ "NNP", "VB" ], "up-front": [ "JJ" ], "dents": [ "NNS" ], "Leche": [ "NNP" ], "federalism": [ "NN", "JJ" ], "Aberdeen": [ "NNP" ], "admission": [ "NN" ], "exogamy": [ "NN" ], "estragole": [ "NN" ], "vain": [ "JJ", "RB" ], "Pelto": [ "NNP" ], "Axelrod": [ "NNP" ], "Telegraph": [ "NNP" ], "retelling": [ "NN" ], "Peltz": [ "NNP" ], "Holidays": [ "NNS" ], "EXPANDS": [ "VBZ" ], "BPD": [ "NNP" ], "penalize": [ "VB", "VBP" ], "contestants": [ "NNS" ], "Kindertotenlieder": [ "FW" ], "provincially": [ "RB" ], "breathlessly": [ "RB" ], "startled": [ "VBN", "VBD", "JJ" ], "Deadwood": [ "NNP" ], "Hewlett": [ "NNP" ], "Flowers": [ "NNPS", "NNP", "NNS" ], "Pipeline": [ "NNP" ], "Vida": [ "NNP" ], "Stuart-James": [ "NNP" ], "kilowatt-hour": [ "NN" ], "Confederations": [ "NNPS" ], "harangues": [ "NNS", "VBZ" ], "Mothers": [ "NNPS", "NNP", "NNS" ], "Waban": [ "NNP" ], "Spanish-speaking": [ "JJ" ], "fast-forward": [ "JJ" ], "moneys": [ "NNS" ], "harangued": [ "VBD" ], "pandering": [ "VBG" ], "paralegals": [ "NNS" ], "Boulet": [ "NNP" ], "Boulez": [ "NNP" ], "diverted": [ "VBN", "VBD" ], "phobic-like": [ "JJ" ], "presidency": [ "NN" ], "ferreted": [ "VBD", "VBN" ], "Peterhouse": [ "NNP" ], "gray-beard": [ "JJ" ], "harvesting": [ "NN", "VBG" ], "skirts": [ "NNS", "VBZ" ], "biotech": [ "JJ", "NN" ], "Gainers": [ "NNP", "NNS" ], "McGovern": [ "NNP" ], "gas-gathering": [ "JJ", "VBG" ], "collectivization": [ "NN" ], "delicatessen": [ "NN" ], "FHA": [ "NNP" ], "Ealy": [ "NNP" ], "obeying": [ "VBG" ], "Domokous": [ "NNP" ], "Capitan": [ "NNP" ], "Capital": [ "NNP", "NN" ], "aqueducts": [ "NNS" ], "FHP": [ "NNP" ], "trusted": [ "VBN", "VBD", "JJ" ], "trustee": [ "NN" ], "rapprochement": [ "NN" ], "Topping": [ "VBG" ], "Killingsworth": [ "NNP" ], "Ulyate": [ "NNP" ], "Understandably": [ "RB" ], "cumulative": [ "JJ" ], "Uncommon": [ "JJ" ], "haphazard": [ "JJ" ], "Eurocrat": [ "NN" ], "washouts": [ "NNS" ], "fairly": [ "RB" ], "Intech": [ "NNP" ], "Mandhata": [ "NNP" ], "typhoid": [ "NN" ], "tops": [ "NNS", "VBZ" ], "hackneyed": [ "JJ" ], "Matsing": [ "NNP" ], "Khomeni": [ "NNP" ], "Acala": [ "NNP" ], "gold-wire": [ "NN" ], "H2Owner": [ "NNP" ], "SENIOR": [ "JJ" ], "different-color": [ "JJ" ], "rescinded": [ "VBN", "VBD" ], "Dorgen": [ "NNP" ], "reconceptualization": [ "NN" ], "Brazelton": [ "NNP" ], "off-exchange": [ "JJ", "NN" ], "Pantyhose": [ "NN" ], "blackjack": [ "NN" ], "opinions": [ "NNS" ], "Russell": [ "NNP" ], "givin": [ "VBG" ], "already-identified": [ "JJ" ], "Notebooks": [ "NNP", "NNS" ], "disguise": [ "VB", "VBP", "NN" ], "financially": [ "RB" ], "uncombed": [ "VBN", "JJ" ], "Rebates": [ "NNS" ], "market-style": [ "JJ" ], "alum": [ "NN" ], "Discours": [ "NNP" ], "campaign": [ "NN", "VB" ], "bijouterie": [ "FW" ], "Lautenberg": [ "NNP" ], "middle-of-the-road": [ "JJ" ], "gooshey": [ "JJ" ], "St.": [ "NNP", "NN" ], "DAMAGES": [ "NNS" ], "Apart": [ "RB", "NNP" ], "abashed": [ "JJ" ], "casually": [ "RB" ], "Trinitarian": [ "NNP" ], "possible": [ "JJ", "RB" ], "firmer": [ "JJR", "RB", "RBR" ], "Alamo": [ "NNP", "NN" ], "Length": [ "NN" ], "barnacles": [ "NNS" ], "gridlock": [ "NN" ], "Emilio": [ "NNP" ], "Byrd": [ "NNP" ], "firmed": [ "VBD", "VBN" ], "Grass": [ "NNP" ], "Lords": [ "NNPS", "NNP", "NNS" ], "Sheremetyevo": [ "NNP" ], "new-found": [ "JJ" ], "seaside": [ "JJ", "NN" ], "prepositioning": [ "JJ" ], "steps": [ "NNS", "VBZ" ], "Lorde": [ "NNP" ], "cross-selling": [ "NN" ], "bruited": [ "VBN" ], "bonkers": [ "JJ" ], "Mmes": [ "NNPS" ], "macabre": [ "JJ" ], "predominance": [ "NN" ], "broadcasters": [ "NNS" ], "lockstep": [ "NN" ], "specially-designated": [ "JJ" ], "equestrian": [ "JJ" ], "Ihor": [ "NNP" ], "comeuppance": [ "NN" ], "attendees": [ "NNS" ], "for": [ "IN", "NNP", "CC", "JJ", "RB", "RP" ], "arms-making": [ "NN" ], "fox": [ "NN" ], "foe": [ "NN" ], "Dunton": [ "NNP" ], "fog": [ "NN", "VB" ], "Tapley": [ "NNP" ], "Armenia": [ "NNP" ], "H.R.": [ "NNP" ], "foh": [ "IN" ], "colles": [ "FW" ], "Lifestyle": [ "NNP" ], "dollar\\": [ "JJ" ], "Garbutt": [ "NNP" ], "By-word": [ "JJ" ], "unfixed": [ "JJ", "VBD" ], "Burrillville": [ "NNP" ], "Czarship": [ "NNP" ], "Macon": [ "NNP" ], "insets": [ "NNS" ], "boycotts": [ "NNS" ], "dollars": [ "NNS" ], "citizens": [ "NNS" ], "turbinates": [ "NNS" ], "storeroom": [ "NN" ], "Slo-Flo": [ "NNP" ], "makersa": [ "NNS" ], "AG": [ "NNP" ], "homesteads": [ "NNS" ], "rebut": [ "VB" ], "extra-literary": [ "JJ" ], "shopkeepers": [ "NNS" ], "twirler": [ "NN" ], "nought": [ "NN" ], "Airgas": [ "NNP" ], "Fairfield": [ "NNP" ], "presenters": [ "NNS" ], "problematical": [ "JJ" ], "AF": [ "NNP" ], "stockholder": [ "NN" ], "spores": [ "NNS" ], "Cress": [ "NNP" ], "Crest": [ "NNP" ], "uneventfully": [ "RB" ], "Silent": [ "NNP" ], "unambiguous": [ "JJ" ], "Governor-General": [ "NNP" ], "Approached": [ "VBN" ], "Sabaneta": [ "NNP" ], "Elvis": [ "NNP" ], "Itsuo": [ "NNP" ], "stock-purchase": [ "JJ" ], "one-time": [ "JJ" ], "Sauter": [ "NNP" ], "late-payment": [ "NN", "JJ" ], "Approaches": [ "NNS" ], "ill-starred": [ "JJ" ], "physicists": [ "NNS" ], "step-by-step": [ "JJ" ], "call": [ "VB", "JJ", "NN", "VBP" ], "benefits-services": [ "JJ" ], "halls": [ "NNS" ], "million-unit": [ "JJ" ], "therefrom": [ "RB" ], "manufacturers": [ "NNS" ], "Column": [ "NN", "NNP" ], "food-scare": [ "NN" ], "Tillery": [ "NNP" ], "demographically": [ "RB" ], "shrilly": [ "RB" ], "Bullion": [ "NNP" ], "udon": [ "FW" ], "Lyubov": [ "NNP" ], "once-promising": [ "JJ" ], "Tallarico": [ "NNP" ], "circumstantial": [ "JJ" ], "Lundy": [ "NNP" ], "ceteras": [ "FW" ], "cut-down": [ "JJ" ], "Whoever": [ "WP", "NNP" ], "Waldorf-Astoria": [ "NNP" ], "Engineering": [ "NNP", "NN" ], "Prab": [ "NNP" ], "Honiss": [ "NNP" ], "lays": [ "VBZ", "NNS" ], "palm": [ "NN", "VB" ], "Enrique": [ "NNP" ], "Amsterdam-Rotterdam": [ "NNP" ], "looms": [ "VBZ", "NNS" ], "proved": [ "VBD", "JJ", "VBN" ], "S.J.": [ "NNP" ], "Informal": [ "JJ" ], "drovers": [ "NNS" ], "fattened": [ "VBN", "VBD" ], "proven": [ "VBN", "JJ" ], "crumble": [ "VB" ], "soothe": [ "VB" ], "proves": [ "VBZ" ], "Bakker": [ "NNP" ], "usability": [ "NN" ], "Ab1,040": [ "NNP" ], "Knoll": [ "NNP" ], "McDaniel": [ "NNP" ], "protested": [ "VBD", "VBN" ], "Weakness": [ "NN" ], "Leichtman": [ "NNP" ], "curiae": [ "FW" ], "school-leaving": [ "JJ" ], "conferring": [ "VBG" ], "Ojibwa": [ "NNP" ], "developers": [ "NNS" ], "Pork-barrel": [ "JJ" ], "directionally": [ "RB" ], "McNamar": [ "NNP" ], "maimed": [ "JJ" ], "free-speech": [ "NN" ], "deathbed": [ "NN" ], "literalism": [ "NN" ], "anti-wrinkling": [ "JJ" ], "toned-down": [ "JJ" ], "Ranke": [ "NNP" ], "Englander": [ "NNP" ], "asbestos-removal": [ "NN", "JJ" ], "reorganization": [ "NN" ], "Yemenis": [ "NNPS" ], "Brought": [ "VBN" ], "Datapoint": [ "NNP" ], "prolixity": [ "NN" ], "thyroxine-binding": [ "JJ" ], "disorganization": [ "NN" ], "peacock": [ "NN" ], "Reporting": [ "NNP" ], "STORES": [ "NNP", "NNPS" ], "Unanimity": [ "NN" ], "Stressed": [ "VBN" ], "Yusen": [ "NNP" ], "jarring": [ "VBG", "JJ" ], "forage": [ "NN", "JJ" ], "Edisto": [ "NNP" ], "novel-in-progress": [ "NN" ], "RCA-Victor": [ "NNP" ], "Market-if-touched": [ "JJ" ], "core-jacket": [ "JJ" ], "suspending": [ "VBG" ], "de-facto": [ "JJ" ], "Patricof": [ "NNP" ], "Jumping": [ "VBG", "UH" ], "shouldda": [ "MD|VB" ], "Iken": [ "NNP" ], "platitudes": [ "NNS" ], "Soft-drink": [ "NN" ], "Yusaku": [ "NNP" ], "Appointed": [ "VBN" ], "Mitsukoshi": [ "NNP" ], "cheap": [ "JJ", "NN", "RB" ], "two-way": [ "JJ" ], "merchandise-trade": [ "JJ" ], "ergotropic": [ "JJ" ], "cornflake-size": [ "JJ" ], "Bosley": [ "NNP" ], "pressure-sensing": [ "JJ" ], "trod": [ "VBN" ], "Bosler": [ "NNP" ], "Overwhelming": [ "JJ" ], "tear": [ "VB", "VBP", "NN" ], "Kali": [ "VBP" ], "folk-dance": [ "NN" ], "unscripted": [ "JJ" ], "Lamy-Lutti": [ "NNP" ], "subway": [ "NN" ], "stockade": [ "NN" ], "team": [ "NN", "VB", "VBP" ], "inscribed": [ "VBN", "VBD", "JJ" ], "outdrew": [ "VBD" ], "bonfire": [ "NN" ], "prevent": [ "VB", "VBP" ], "no-win": [ "JJ" ], "side-stepped": [ "VBD", "VBN" ], "attic": [ "NN" ], "soft-spoken": [ "JJ" ], "U.M.C.I.A.": [ "NNP" ], "attis": [ "NN" ], "Participation": [ "NN" ], "playpen": [ "NN" ], "educate": [ "VB" ], "trop": [ "FW" ], "Poppea": [ "FW" ], "Afford": [ "VB" ], "three-door": [ "JJ" ], "Haverhill": [ "NNP" ], "reminiscent": [ "JJ", "NN" ], "necrotic": [ "JJ" ], "freaks": [ "NNS" ], "L.A.": [ "NNP" ], "True": [ "JJ", "NNP", "RB", "UH" ], "Trud": [ "NNP" ], "pre-reform": [ "JJ" ], "reread": [ "VB", "VBD", "VBN" ], "palindromes": [ "NNS" ], "cribbing": [ "VBG" ], "memory-expansion": [ "JJ" ], "Warned": [ "VBD" ], "Traditionalists": [ "NNPS" ], "Selectives": [ "NNPS" ], "muskets": [ "NNS" ], "moisturizer": [ "NN" ], "Namibian": [ "JJ" ], "nitroglycerine": [ "NN" ], "assassinating": [ "VBG" ], "crumbles": [ "VBZ" ], "bunkered": [ "VBN" ], "vitiates": [ "VBZ" ], "thereunder": [ "RB" ], "four-inch": [ "JJ" ], "crumbled": [ "VBD", "VBN", "JJ" ], "Prize-winning": [ "JJ" ], "love": [ "NN", "NNP", "VB", "VBP" ], "bloods": [ "NNS" ], "Lie": [ "NNP", "NN", "VB" ], "D.D.S.": [ "NNP" ], "bloody": [ "JJ" ], "Friedrich": [ "NNP" ], "qualified": [ "VBN", "VBN|JJ", "JJ", "VBD" ], "consderations": [ "NNS" ], "once-indomitable": [ "JJ" ], "traversing": [ "VBG" ], "forefront": [ "NN" ], "Ranging": [ "VBG" ], "Limbo": [ "NNP" ], "cherishes": [ "VBZ" ], "positive": [ "JJ", "NN" ], "marketing-data": [ "NNS" ], "tightly": [ "RB" ], "imaginations": [ "NNS" ], "cherished": [ "VBN", "JJ", "VBD" ], "Binomial": [ "NN" ], "wondering": [ "VBG", "NN" ], "German-French": [ "JJ" ], "Balmy": [ "JJ" ], "introducing": [ "VBG" ], "``": [ "``" ], "Syferd": [ "NNP" ], "Knogo": [ "NNP" ], "half-digested": [ "JJ" ], "odious": [ "JJ" ], "Streptococcus": [ "NN" ], "visual": [ "JJ" ], "degrade": [ "VB" ], "LDI": [ "NNP" ], "epitaph": [ "NN" ], "velour": [ "NN" ], "Blackwell": [ "NNP" ], "honey": [ "NN", "VB", "UH", "JJ" ], "preponderance": [ "NN" ], "DISTRICT": [ "JJ" ], "child-bearing": [ "NN" ], "Conreid": [ "NNP" ], "Istel-type": [ "JJ" ], "reportage": [ "NN" ], "nether": [ "JJ", "CC" ], "values": [ "NNS", "VBZ" ], "indolence": [ "NN" ], "stockroom": [ "NN" ], "toll-free": [ "JJ" ], "write-downs": [ "NNS", "NN" ], "Federal": [ "NNP", "JJ" ], "catheters": [ "NNS" ], "understatement": [ "NN" ], "currency-market": [ "JJ" ], "Galahad": [ "NNP" ], "Drug-Treatment": [ "JJ" ], "Wha": [ "WP" ], "A\\": [ "JJ" ], "fatherly": [ "JJ" ], "grosses": [ "VBZ" ], "self-aggrandizement": [ "NN" ], "cost-transfer": [ "NN" ], "Liz": [ "NNP" ], "fps": [ "NNS" ], "PRISON": [ "NN" ], "grossed": [ "VBD" ], "pro-growth": [ "JJ" ], "four-to-one": [ "RB" ], "Why": [ "WRB", "NNP", "UH" ], "five-year": [ "JJ" ], "rubber-stamped": [ "JJ" ], "Sausalito": [ "NNP" ], "jazz": [ "NN" ], "Herrington": [ "NNP" ], "mortally": [ "RB" ], "spot": [ "NN", "JJ", "VB", "VBP" ], "Pyzhyanov": [ "NNP" ], "applications": [ "NNS" ], "misshapen": [ "JJ" ], "Chiller": [ "NNP" ], "Greek-born": [ "JJ" ], "Magadan": [ "NNP" ], "acceptances": [ "NNS" ], "filthy": [ "JJ" ], "shockingly": [ "RB" ], "disagreeable": [ "JJ" ], "supersonic": [ "JJ" ], "News\\/Retrieval": [ "NNP" ], "wheelchair": [ "NN" ], "freestylers": [ "NNS" ], "razor-edged": [ "JJ" ], "Bedtime": [ "NN" ], "Ciba-Geigy\\": [ "JJ" ], "Teleport": [ "NNP" ], "Wrath": [ "NN", "NNP" ], "FICOs": [ "NNS" ], "epilepsy": [ "NN" ], "hiring": [ "VBG", "NN" ], "maneuvered": [ "VBD", "VBN" ], "Inflate": [ "VB" ], "multi-million-dollar": [ "JJ" ], "spewings": [ "NNS" ], "thoughtfulness": [ "NN" ], "mini-post": [ "JJ" ], "Direction": [ "NNP", "NN" ], "solace": [ "NN", "VBP" ], "protoplasmic": [ "JJ" ], "cleanest": [ "JJS" ], "Forney": [ "NNP" ], "value-boosting": [ "JJ" ], "Hispanics": [ "NNPS", "NNS" ], "hubbub": [ "NN" ], "Whitney": [ "NNP" ], "clothiers": [ "NNS" ], "Pitchers": [ "NNS" ], "Cahoon": [ "NNP" ], "embezzling": [ "VBG" ], "subordinates": [ "NNS", "VBZ" ], "origination": [ "NN" ], "Folly": [ "NNP", "NN" ], "Maximum": [ "NNP", "JJ" ], "Farouk": [ "NNP" ], "homebuilder": [ "NN" ], "epithets": [ "NNS" ], "Raceway": [ "NNP", "NN" ], "subordinated": [ "VBN", "JJ", "VBD" ], "Gadwani": [ "NNP" ], "Lullaby": [ "NN" ], "joked": [ "VBD" ], "foreign-trade": [ "JJ", "NN" ], "crushers": [ "NNS" ], "Pecos": [ "NNP" ], "shirtwaist": [ "NN" ], "magnetic-tape": [ "JJ", "NN" ], "opportuning": [ "NN" ], "breakthrough": [ "NN" ], "interferometer": [ "NN" ], "Bermuda": [ "NNP", "JJ", "NN" ], "Heresy": [ "NNP" ], "compulsives": [ "NNS" ], "NET": [ "JJ" ], "Vanguardia": [ "NNP" ], "briefcase": [ "NN" ], "Jos": [ "NNP" ], "container": [ "NN" ], "brags": [ "VBZ", "NNS" ], "reveled": [ "VBD" ], "Joy": [ "NNP", "NN" ], "Copie": [ "NNP" ], "collisions": [ "NNS" ], "contained": [ "VBD", "VBN", "JJ" ], "onrush": [ "NN" ], "Joe": [ "NNP" ], "better-than-thou": [ "JJ" ], "Detecting": [ "VBG" ], "Ivies": [ "NNPS" ], "Jon": [ "NNP" ], "Places": [ "NNS", "NNPS" ], "Placer": [ "NNP" ], "ground-cargo": [ "NN" ], "near-perfect": [ "JJ" ], "I.L.": [ "NN" ], "Mixed": [ "NNP", "VBN", "JJ" ], "Skippy": [ "NNP" ], "Averages": [ "NNP", "NNS" ], "liberally": [ "RB" ], "disguised": [ "VBN", "VBD", "JJ" ], "jetliners": [ "NNS" ], "Consent": [ "NNP" ], "collapsing": [ "VBG" ], "acutely": [ "RB" ], "disguises": [ "VBZ", "NNS" ], "recompense": [ "NN" ], "bothersome": [ "JJ" ], "Declinations": [ "NNS" ], "misused": [ "VBN", "VBD" ], "Heath": [ "NNP" ], "Synthetic": [ "JJ", "NNP" ], "intuition": [ "NN" ], "Wordsworth": [ "NNP" ], "potter": [ "NN" ], "walk-in": [ "JJ" ], "Lately": [ "RB", "NNP" ], "tooted": [ "VBD" ], "chubby": [ "JJ" ], "potted": [ "JJ", "VBN" ], "on-budget": [ "JJ" ], "aerospace-industry": [ "NN" ], "sayed": [ "VBD" ], "Gains": [ "NNS" ], "Jamieson": [ "NNP" ], "beer-industry": [ "NN" ], "indicate": [ "VB", "VBP" ], "u.": [ "NN" ], "microscopical": [ "JJ" ], "typing": [ "NN", "VBG" ], "full-banded": [ "JJ" ], "Repeal": [ "NN", "VB" ], "Pascale": [ "NNP" ], "Orangeburg": [ "NNP" ], "Katzenstein": [ "NNP" ], "blazon": [ "VB" ], "Litchfield": [ "NNP" ], "tuneful": [ "JJ" ], "meddling": [ "VBG", "NN" ], "Torrid": [ "NNP" ], "Appeals": [ "NNPS", "NNP", "NNS" ], "simmered": [ "VBN", "VBD" ], "Torrio": [ "NNP" ], "Isadora": [ "NNP" ], "photographic": [ "JJ" ], "Isadore": [ "NNP" ], "storehouses": [ "NNS" ], "quake-relief": [ "JJ" ], "clairvoyance": [ "NN" ], "Integra-A": [ "NNP" ], "Zalles": [ "NNP" ], "Alf": [ "NNP" ], "Cavett": [ "NNP" ], "HOMESTAKE": [ "NNP" ], "scuba": [ "NN" ], "too-rapid": [ "JJ" ], "Oratory": [ "NNP" ], "adjustablerate": [ "NN" ], "nicer": [ "JJR" ], "Congregational-Baptist": [ "NNP" ], "SALES": [ "NNS", "NNP" ], "Ala": [ "NNP" ], "L.A": [ "NNP" ], "Unsecured": [ "JJ" ], "Balinese": [ "NNP" ], "MacArthur": [ "NNP" ], "Jewish": [ "JJ", "NNP" ], "Servive": [ "NNP" ], "peace-keeping": [ "NN", "JJ" ], "Kleenex": [ "NNP" ], "WORKERS": [ "NNS", "NNPS" ], "Smurfit": [ "NNP" ], "SMOKING": [ "NN" ], "McGinty": [ "NNP" ], "Daytonas": [ "NNP" ], "pagers": [ "NNS" ], "Ungrateful": [ "JJ" ], "maneuvering": [ "NN", "VBG", "JJ" ], "tundra": [ "NN" ], "Defoe": [ "NNP" ], "Montserrat": [ "NNP" ], "microwaves": [ "NNS" ], "indentured": [ "VBN" ], "Separately": [ "RB", "NNP" ], "direct-line": [ "JJ" ], "hematologist": [ "NN" ], "microwaved": [ "VBN" ], "myne": [ "PRP$" ], "Trainer": [ "NNP" ], "bads": [ "NNS" ], "stilts": [ "NNS" ], "Ormstedt": [ "NNP" ], "Merit": [ "NNP" ], "crooked": [ "JJ" ], "bade": [ "VBD" ], "Trained": [ "VBN" ], "rim-fires": [ "NNS", "NN" ], "Attrition": [ "NN" ], "forecasters": [ "NNS" ], "Coltsman": [ "NN" ], "mini-supercomputers": [ "NNS" ], "walking": [ "VBG", "VBG|NN", "JJ", "NN" ], "Nines": [ "NNPS" ], "Lateran": [ "NNP" ], "Lateral": [ "NNP" ], "synchronous": [ "JJ" ], "Ferenc": [ "NNP" ], "lettered": [ "VBD" ], "Gelman": [ "NNP" ], "conduction": [ "NN" ], "Huntsman": [ "NNP" ], "Heel-Betty": [ "NNP" ], "Krishnaists": [ "NNS" ], "Balkanized": [ "JJ" ], "hockey": [ "NN" ], "entreaties": [ "NNS" ], "posted": [ "VBD", "VBN", "JJ" ], "Bluebird": [ "NNP" ], "Westview": [ "NNP" ], "Juarez": [ "NNP" ], "surfaced": [ "VBD", "VBN" ], "infallible": [ "JJ", "NN" ], "tune-belly": [ "NN" ], "Geraghty": [ "NNP" ], "intermixed": [ "VBD" ], "LeCompte": [ "NNP" ], "maniacal": [ "JJ" ], "Cohn": [ "NNP" ], "Linsey": [ "NNP" ], "Joviality": [ "NN" ], "bombs": [ "NNS" ], "COLGATE-PALMOLIVE": [ "NNP" ], "masseuses": [ "NNS" ], "WXRK": [ "NNP" ], "Dashwood": [ "NNP" ], "masseur": [ "NN" ], "All-American": [ "NNP" ], "Biggest": [ "JJS", "NNP" ], "Cumbancheros": [ "NNP" ], "Olivetti": [ "NNP" ], "cash-raising": [ "JJ", "NN" ], "individual-retirement-account": [ "NN" ], "mecca": [ "NN" ], "enlightening": [ "VBG", "JJ" ], "wielding": [ "VBG" ], "bootleg": [ "JJ", "NN" ], "broadcast-and-cable": [ "JJ" ], "testimonials": [ "NNS" ], "Quad": [ "NNP" ], "teens": [ "NNS", "NN" ], "presage": [ "VB", "VBP" ], "Debora": [ "NNP" ], "civ": [ "NN" ], "inappropriately": [ "RB" ], "McLean": [ "NNP" ], "aberration": [ "NN" ], "unpremeditated": [ "JJ" ], "Directors": [ "NNS", "NNP", "NNPS" ], "reigns": [ "VBZ" ], "Tolentino": [ "NNP" ], "Directory": [ "NNP" ], "undermine": [ "VB", "VBP" ], "Gisors": [ "NNP" ], "Kalison": [ "NNP" ], "twotiered": [ "JJ" ], "Schnacke": [ "NNP" ], "nomias": [ "NNS", "NNPS" ], "bare-armed": [ "JJ" ], "WWL": [ "NNP" ], "walkers": [ "NNS" ], "Virgilia": [ "NNP" ], "guesstimates": [ "NNS" ], "costcutting": [ "NN" ], "kingside": [ "NN" ], "Sudier": [ "NNP" ], "dislocation": [ "NN" ], "Deus": [ "FW" ], "throttled": [ "VBN" ], "Reames": [ "NNP" ], "breaking-out": [ "NN" ], "vacation": [ "NN", "VBP" ], "seven-year-old": [ "JJ" ], "needlessly": [ "RB" ], "Caravaggio.": [ "NNP" ], "daylong": [ "JJ" ], "start-up": [ "JJ", "NNS", "NN", "VB" ], "Depew": [ "NNP" ], "mischarges": [ "NNS" ], "Matra-Harris": [ "NNP" ], "Birth": [ "NNP" ], "Ellwood": [ "NNP" ], "rooftops": [ "NNS" ], "pass-through": [ "JJ" ], "Greatest": [ "JJS", "NNP" ], "arbitration-eligibility": [ "NN" ], "felling": [ "VBG" ], "ALII": [ "NNP" ], "Chicago-Montreal": [ "NNP" ], "Grains": [ "NNS", "NNPS" ], "hypertrophy": [ "NN" ], "Quantum": [ "NNP" ], "perpetuate": [ "VB", "VBP" ], "MX-6": [ "NNP" ], "Jihong": [ "NNP" ], "O-B": [ "NNP" ], "hard-edged": [ "JJ" ], "reliefs": [ "NNS" ], "RISC-based": [ "JJ" ], "Machado": [ "NNP" ], "graceful": [ "JJ" ], "pizazz": [ "NN" ], "Istiqlal-sponsored": [ "JJ" ], "Rios": [ "NNP" ], "Cedars": [ "NNPS" ], "Macrophages": [ "NNS" ], "Battalion-2000": [ "NN" ], "Thaxters": [ "NNPS" ], "coconuts": [ "NNS" ], "Granther": [ "NNP" ], "war-like": [ "JJ" ], "decertified": [ "VBN" ], "breakdown": [ "NN" ], "askin": [ "VBG" ], "oceanographic": [ "JJ" ], "knowhow": [ "NN" ], "Spoon": [ "NNP" ], "tomorrow,will": [ "NN" ], "Eakle": [ "NNP" ], "bulletproof": [ "JJ" ], "Iron": [ "NNP", "NN" ], "Test-preparation": [ "JJ" ], "McCann-Erickson": [ "NNP" ], "psychiatrists": [ "NNS" ], "Fleisher": [ "VB", "NNP" ], "veering": [ "VBG" ], "vacant": [ "JJ" ], "pacing": [ "VBG", "JJ", "NN" ], "xylene": [ "NN" ], "dancelike": [ "JJ" ], "retrace": [ "VB" ], "Cuddihy": [ "NNP" ], "Abolitionists": [ "NNS" ], "Incarnation": [ "NNP" ], "truculent": [ "JJ" ], "exaggerating": [ "VBG" ], "pay-cable": [ "JJ", "NN" ], "Abend": [ "NNP" ], "snarled": [ "VBD" ], "Proceeding": [ "VBG" ], "Markets": [ "NNPS", "NNP", "NNS" ], "underline": [ "VB" ], "underling": [ "NN" ], "much-smaller": [ "JJ" ], "Intertan": [ "NNP" ], "science-fiction": [ "NN" ], "wince": [ "NN" ], "prominently": [ "RB" ], "SKIDDED": [ "VBD" ], "Harvest": [ "NNP" ], "Decision": [ "NNP", "NN" ], "skies": [ "NNS" ], "skier": [ "NN" ], "Dammit": [ "UH", "VB" ], "Shak.": [ "NNP" ], "Potato": [ "NN" ], "DeForest": [ "NNP" ], "retract": [ "VB" ], "Genocide": [ "NN" ], "Peck": [ "NNP" ], "signal-intensity": [ "NN" ], "fringed": [ "VBN", "JJ" ], "forms-processing": [ "NN" ], "fossils": [ "NNS" ], "amputation": [ "NN" ], "action-oriented": [ "JJ" ], "Synergistics": [ "NNP" ], "GLITTERS": [ "VBZ" ], "Artillery": [ "NN", "NNP" ], "souvenirs": [ "NNS" ], "undergirded": [ "VBD" ], "four-games-to-one": [ "JJ" ], "slings": [ "NNS" ], "grouping": [ "NN", "VBG" ], "Zur": [ "FW" ], "picnickers": [ "NNS" ], "thinke": [ "VBZ", "VB" ], "monopoly": [ "NN" ], "Sloan": [ "NNP" ], "playin": [ "VBG" ], "racial": [ "JJ" ], "thinks": [ "VBZ" ], "belched": [ "VBD" ], "pollen-producing": [ "VBG" ], "authenticate": [ "VBP" ], "dimensions": [ "NNS" ], "Flannagan": [ "NNP" ], "last-place": [ "JJ" ], "two-year": [ "JJ" ], "tube": [ "NN" ], "pre-18th-century": [ "JJ" ], "Gershman": [ "NNP" ], "tuba": [ "NN" ], "stroking": [ "NN", "VBG" ], "First-half": [ "JJ" ], "Planning": [ "NNP", "NN" ], "Valladolid": [ "NNP" ], "ink-jet": [ "JJ" ], "retail-based": [ "JJ" ], "Ruby": [ "NNP" ], "Saint-Geours": [ "NNP" ], "armored-vehicle": [ "JJ" ], "leaned": [ "VBD", "VBN" ], "destroys": [ "VBZ" ], "anti-anemia": [ "NN" ], "malfunctioning": [ "NN" ], "dissection": [ "NN" ], "home-buying": [ "JJ", "NN" ], "Neece": [ "NNP" ], "Thatcherism": [ "NNP" ], "ENTREPRENEURSHIP": [ "NN" ], "Albertville": [ "NNP" ], "Sammye": [ "NNP" ], "spotlights": [ "VBZ" ], "Degree": [ "NN" ], "Stunned": [ "VBN" ], "industry": [ "NN" ], "off-beat": [ "JJ" ], "realignments": [ "NNS" ], "dibs": [ "NNS" ], "Radius": [ "NNP" ], "practicable": [ "JJ" ], "ASSOCIATION-COLLEGE": [ "NNP" ], "gesturing": [ "VBG" ], "stressed-out": [ "JJ" ], "dilettante": [ "NN" ], "infielders": [ "NNS" ], "fundraising": [ "VBG", "NN" ], "flawed": [ "JJ", "VBN" ], "image": [ "NN", "VB" ], "rectification": [ "NN" ], "woodcutters": [ "NNS" ], "dour": [ "JJ" ], "Least": [ "JJS" ], "new-share": [ "JJ" ], "freaked": [ "VBN" ], "Feralloys": [ "NNP" ], "fritters": [ "NNS" ], "widower": [ "NN" ], "SHOPPE": [ "NNP" ], "tie-breaking": [ "JJ" ], "tableware": [ "NN" ], "Ait-Laoussine": [ "NNP" ], "Empty": [ "JJ", "NNP" ], "Lease": [ "NNP", "NN" ], "subscriber": [ "NN" ], "reinvigorated": [ "VBN" ], "bookcases": [ "NNS" ], "Hans-Peter": [ "NNP" ], "worshippers": [ "NNS" ], "Demler": [ "NNP" ], "springboard": [ "NN" ], "Reunification": [ "NN", "NNP" ], "Gompachi": [ "NNP" ], "hookers": [ "NNS" ], "Harro": [ "UH" ], "EUROP": [ "NNP" ], "mandates": [ "NNS", "VBZ" ], "Mahal": [ "NNP" ], "Mahan": [ "NNP" ], "Vosges": [ "NNPS", "NNP" ], "irredentism": [ "NN" ], "private-insurance": [ "NN" ], "Harry": [ "NNP" ], "antiquated": [ "JJ" ], "Caufield": [ "NNP" ], "oversoft": [ "JJ", "NN" ], "VAX\\": [ "NNP" ], "design-side": [ "JJ" ], "tebuthiuron": [ "NN" ], "sang-froid": [ "FW" ], "flatteringly": [ "RB" ], "unwaivering": [ "VBG" ], "Seminar": [ "NNP" ], "sackless": [ "JJ" ], "ignorant": [ "JJ" ], "well-molded": [ "JJ" ], "behest": [ "NN" ], "investment-house": [ "NN" ], "hobbies": [ "NNS" ], "Outfielder": [ "NNP", "NN" ], "fifty-fifty": [ "JJ" ], "Sapio": [ "NNP" ], "Scoring": [ "NNP" ], "somnambulism": [ "NN" ], "beaming": [ "VBG", "JJ" ], "Payroll": [ "NNP" ], "Bancaire": [ "NNP" ], "supercollider": [ "NN" ], "Tandem": [ "NNP" ], "Linsley": [ "NNP" ], "administers": [ "VBZ" ], "MacDougall": [ "NNP" ], "near-luxury": [ "JJ" ], "Kurdish": [ "JJ" ], "Wickersham": [ "NNP" ], "lendable": [ "JJ" ], "clipboard": [ "NN" ], "congress": [ "NN" ], "enrolled": [ "VBN", "VBD", "JJ" ], "retardation": [ "NN" ], "near-by": [ "IN", "JJ" ], "Sino-U.S.": [ "JJ", "NNP" ], "Sandberg": [ "NNP" ], "restorers": [ "NNS" ], "Short-sellers": [ "NNP", "NNS" ], "gastric": [ "JJ" ], "Cici": [ "NNP" ], "Chengdu": [ "NNP" ], "neuter": [ "NN" ], "Korean-U.S.": [ "NNP" ], "fascimile-machine": [ "NN" ], "Party.": [ "NNP" ], "gravitates": [ "VBZ" ], "BRING": [ "VB" ], "restricted": [ "VBN", "JJ", "VBD" ], "test-run": [ "NN" ], "original": [ "JJ", "NN" ], "Lefty": [ "NNP" ], "Caesar": [ "NNP" ], "index-futures": [ "JJ", "NNS" ], "bran-processing": [ "JJ" ], "Transamerica": [ "NNP" ], "improperly": [ "RB" ], "content": [ "NN", "JJ", "VB" ], "Ayob": [ "NNP" ], "Bietnar": [ "NNP" ], "Theft": [ "NN" ], "Laws": [ "NNS", "NNP" ], "endogenous": [ "JJ" ], "undeserved": [ "JJ" ], "lawyering": [ "NN" ], "puzzled": [ "VBN", "JJ", "VBD" ], "Rhona": [ "NNP" ], "crestfallen": [ "JJ" ], "puzzler": [ "NN" ], "candid": [ "JJ" ], "Twenty-year-old": [ "JJ" ], "offal": [ "NN" ], "scapegoats": [ "NNS" ], "predominately": [ "RB" ], "price-supporting": [ "JJ" ], "cunningly": [ "RB" ], "Piet": [ "NNP" ], "ceding": [ "VBG" ], "Durney": [ "NNP" ], "LOOM": [ "VBZ" ], "gold-mining": [ "JJ", "NN" ], "EDUCATION": [ "NN" ], "ingratitude": [ "NN" ], "confederates": [ "NNS" ], "nonsystematic": [ "JJ" ], "Ismail": [ "NNP" ], "facsimile": [ "NN", "JJ" ], "Vita": [ "NNP" ], "Claridge": [ "NNP" ], "penalties": [ "NNS" ], "sync": [ "NN" ], "Acoustical": [ "JJ" ], "canvass": [ "NN", "VB" ], "turning": [ "VBG", "JJ", "NN" ], "bottom-fishing": [ "NN" ], "situated": [ "VBN" ], "two-and-a-half": [ "JJ" ], "Ballestre": [ "NNP" ], "semi-skilled": [ "JJ" ], "Caesarean": [ "JJ" ], "TransCanada": [ "NNP" ], "excitatory": [ "JJ" ], "Toronto-Dominion": [ "NNP" ], "Callaway": [ "NNP" ], "semifinalists": [ "NNS" ], "nurse": [ "NN" ], "microchip": [ "NN", "JJ" ], "contrast": [ "NN", "VB", "VBP" ], "Tracing": [ "VBG" ], "Compromises": [ "NNS" ], "Crescott": [ "NNP" ], "hours": [ "NNS", "VBZ" ], "smartest": [ "JJS" ], "Calvary": [ "NNP" ], "irrespective": [ "RB" ], "Bickford": [ "NNP" ], "yellowed": [ "VBN" ], "phrasings": [ "NNS" ], "still-mammoth": [ "JJ" ], "Lyons": [ "NNP" ], "reactionaries": [ "NNS" ], "iuvabit": [ "FW" ], "Palestine-General": [ "NNP" ], "pentamidine": [ "NN" ], "pico": [ "NN" ], "skyrocket": [ "VB" ], "pick": [ "VB", "VBP", "NN" ], "action": [ "NN" ], "undersize": [ "JJ" ], "smuggle": [ "VB" ], "multiple-use": [ "JJ" ], "Marne-la-Vallee": [ "NNP" ], "unaggressive": [ "JJ" ], "rattlesnakes": [ "NNS" ], "marriages": [ "NNS" ], "excellently": [ "RB" ], "indoors": [ "NN", "RB" ], "Servatius": [ "NNP" ], "coercion": [ "NN" ], "Lacey": [ "NNP" ], "Introducing": [ "VBG" ], "ridding": [ "VBG" ], "Marushita": [ "NNP" ], "one-half-point": [ "JJ", "NN" ], "Balkan": [ "NNP", "JJ" ], "petroleum": [ "NN" ], "uniqueness": [ "NN" ], "implore": [ "VB" ], "magnification": [ "NN" ], "freest": [ "JJS" ], "pitching": [ "VBG", "NN" ], "recouping": [ "VBG" ], "sanitaire": [ "FW" ], "reminiscing": [ "VBG" ], "inferential": [ "JJ" ], "Cruickshank": [ "NNP" ], "no-good": [ "JJ" ], "tightfisted": [ "JJ" ], "nonbanking": [ "JJ" ], "Eisler": [ "NNP" ], "super-charger": [ "NN" ], "casino-hotel": [ "NN", "NN|JJ" ], "coyote": [ "NN" ], "super-charged": [ "JJ" ], "Ladbroke": [ "NNP" ], "cunning": [ "JJ", "NN" ], "Cheese": [ "NNP" ], "keeping": [ "VBG", "NN" ], "disquietude": [ "NN" ], "apportion": [ "VB" ], "science": [ "NN", "JJ" ], "Fathers": [ "NNPS", "NNP", "NNS" ], "Bornholm": [ "NNP" ], "gesticulating": [ "VBG" ], "Omnicom": [ "NNP" ], "betties": [ "NNS" ], "professions": [ "NNS" ], "Conference": [ "NNP", "NN" ], "Dardalla": [ "NNP" ], "Hassenberg": [ "NNP" ], "gallop": [ "NN", "VB" ], "poetizing": [ "VBG" ], "anti-fungal": [ "JJ" ], "STET": [ "NNP" ], "sense": [ "NN", "VBP", "VB" ], "gallon": [ "NN" ], "Mutsch": [ "NNP" ], "axis": [ "NN" ], "Shintaro": [ "NNP" ], "information": [ "NN" ], "dazzle": [ "VB" ], "interconnect": [ "NN", "VB" ], "anti-abortionist": [ "NN" ], "Misunderstanding": [ "VBG", "NN" ], "Tacit": [ "NNP" ], "monopolistic": [ "JJ" ], "A.A.": [ "NNP", "NN" ], "Caisse": [ "NNP" ], "unattended": [ "JJ" ], "creature": [ "NN" ], "wiles": [ "NNS" ], "aplenty": [ "JJ", "RB" ], "Doughnuttery": [ "NN" ], "countryside": [ "NN" ], "Snead": [ "NNP" ], "entrepreneurship": [ "NN" ], "Tacloban": [ "NNP" ], "Soundview": [ "NNP" ], "Swiss": [ "JJ", "NNP", "NNS", "NNPS" ], "evaluations": [ "NNS" ], "purled": [ "VBD", "VBN" ], "Bottega": [ "NNP" ], "Bongo": [ "NNP" ], "Arbs": [ "NNS" ], "Zacharias": [ "NNP" ], "premonitions": [ "NNS" ], "Steinkrauss": [ "NNP" ], "Arby": [ "NNP", "NN" ], "Gaechinger": [ "NNP" ], "wrench": [ "VB", "NN" ], "deafening": [ "VBG", "JJ" ], "reshape": [ "VB" ], "Bastin": [ "NNP" ], "Okla.": [ "NNP" ], "geographic": [ "JJ" ], "Multiples": [ "NNPS" ], "crouchin": [ "JJ" ], "cockiness": [ "NN" ], "radios": [ "NNS" ], "Torrid-Adios": [ "NNP" ], "Castparts": [ "NNP" ], "network-services": [ "JJ" ], "TRIPS": [ "NNS" ], "Benjamin": [ "NNP" ], "Hiltons": [ "NNPS" ], "unimposing": [ "JJ" ], "Kims": [ "NNPS", "NNP" ], "polarizing": [ "VBG" ], "grade": [ "NN", "VB" ], "Brookline": [ "NNP" ], "Nichols": [ "NNP" ], "Anyhow": [ "RB", "NNP" ], "pool...": [ ":" ], "propose": [ "VB", "VBP" ], "bank-director": [ "NN" ], "big-budget": [ "JJ" ], "Overly": [ "RB" ], "Alsthom": [ "NNP" ], "skipper": [ "NN", "VB" ], "misuse": [ "NN", "VB", "VBP" ], "Hime": [ "NNP" ], "nighted": [ "JJ" ], "stewed": [ "JJ", "VBD" ], "Christmas-like": [ "JJ" ], "likeness": [ "NN" ], "always": [ "RB" ], "IPO": [ "NNP", "NN" ], "IPM": [ "NNP" ], "Aftershocks": [ "NNS" ], "experiencing": [ "VBG" ], "primitivism": [ "NN" ], "Sounds": [ "VBZ" ], "errata": [ "NNS" ], "thimble-sized": [ "JJ" ], "Destinations": [ "NNS" ], "status": [ "NN", "FW" ], "Bryn": [ "NNP" ], "accelerator": [ "NN" ], "m&a": [ "JJ" ], "NGL": [ "NNP" ], "throwin": [ "VBG", "NN" ], "ware": [ "NN" ], "high-living": [ "JJ" ], "clockwork": [ "NN" ], "Watkins-Johnson": [ "NNP" ], "bouquets": [ "NNS" ], "Erosion": [ "NN" ], "twitched": [ "VBD" ], "repressive": [ "JJ" ], "silky": [ "JJ" ], "package-tracing": [ "NN" ], "tipsy": [ "JJ" ], "Manning": [ "NNP" ], "sparingly": [ "RB" ], "SunGard": [ "NNP" ], "single-A2": [ "JJ" ], "holstered": [ "VBD", "VBN", "JJ" ], "Movie": [ "NNP", "NN" ], "misses": [ "VBZ", "NNS" ], "race": [ "NN", "VB" ], "Filtertek": [ "NNP" ], "Astronomy": [ "NN", "NNP" ], "silke": [ "NN" ], "hard-pressed": [ "JJ" ], "attentions": [ "NNS" ], "stock-margin": [ "JJ" ], "single-A\\": [ "NN", "NNP" ], "reformulated": [ "VBN", "JJ" ], "localization": [ "NN" ], "trite": [ "JJ" ], "premediated": [ "JJ" ], "Dugdale": [ "NNP" ], "Maude": [ "NNP" ], "pro-sealed-records": [ "JJ" ], "well-nigh": [ "RB" ], "Inspection": [ "NNP" ], "prefab": [ "JJ" ], "bumped": [ "VBD", "VBN" ], "armful": [ "NN" ], "Wanger": [ "NNP" ], "rack": [ "NN", "VB", "VBP" ], "Cathay": [ "NNP" ], "w": [ "IN" ], "bumper": [ "NN", "JJ", "JJR" ], "volumetrically": [ "RB" ], "delicate": [ "JJ" ], "pay-hike": [ "JJ" ], "gazed": [ "VBD" ], "Winery": [ "NNP" ], "emblazoned": [ "VBN" ], "shantytowns": [ "NNS" ], "number": [ "NN", "VB", "VBP" ], "twisted": [ "VBN", "JJ", "VBD" ], "superagent": [ "NN" ], "murmured": [ "VBD" ], "guar": [ "JJ" ], "ethereal": [ "JJ" ], "Revenue-short": [ "JJ" ], "numbed": [ "VBN" ], "Corruption": [ "NN", "NNP" ], "black-figured": [ "JJ" ], "Sprinkle": [ "VB" ], "R.A.F.": [ "NNP" ], "heads": [ "NNS", "VBZ" ], "Paperweight": [ "NNP" ], "boating": [ "NN", "VBG" ], "lease-back": [ "NN" ], "threatening": [ "VBG", "JJ" ], "heady": [ "JJ" ], "heade": [ "NN" ], "SPLIT-UP": [ "NN" ], "Auger": [ "NNP" ], "fruitfully": [ "RB" ], "Rayburn-Johnson": [ "NNP" ], "relies": [ "VBZ" ], "sun-kissed": [ "JJ" ], "Milano": [ "NNP" ], "Allegany": [ "NNP" ], "Jane\\": [ "NNP" ], "Stannard": [ "NNP" ], "Nightshade": [ "NNP" ], "conjunctions": [ "NNS" ], "Gambit": [ "NNP" ], "grace": [ "NN", "VB", "VBP" ], "Grabski": [ "NNP" ], "Hercule": [ "NNP" ], "diffusion": [ "NN" ], "critically": [ "RB" ], "Shortcuts": [ "NNS" ], "freighters": [ "NNS" ], "Toyo": [ "NNP" ], "Warner-Chilcott": [ "NNP" ], "detractor": [ "NN" ], "tablespoonfuls": [ "NNS" ], "determined": [ "VBN", "VBD", "JJ" ], "marriage": [ "NN" ], "Atomic": [ "NNP", "JJ" ], "KEY": [ "JJ" ], "Toys": [ "NNPS", "VBZ", "NNP", "NNS" ], "corn-belt": [ "NN" ], "IndoSuez": [ "NNP" ], "Kasriel": [ "NNP" ], "remembers": [ "VBZ" ], "JUICE": [ "NN" ], "hi-graders": [ "NNS" ], "livers": [ "NNS" ], "Redfield": [ "NNP" ], "Projected": [ "VBN" ], "livery": [ "NN" ], "vitally": [ "RB" ], "Crude": [ "JJ", "NN", "NNP" ], "Stoneware": [ "JJ" ], "mawkish": [ "JJ" ], "Suggestions": [ "NNS" ], "basics": [ "NNS" ], "Aboff": [ "NNP" ], "Club": [ "NNP", "NN" ], "Pramual": [ "NNP" ], "Poltawa": [ "NNP" ], "commemorates": [ "VBZ" ], "bovines": [ "NNS" ], "dichondra": [ "NN" ], "Murville": [ "NNP" ], "commemorated": [ "VBN", "VBD" ], "play": [ "VB", "NN", "VBP" ], "Mokae": [ "NNP" ], "pianist\\/bassoonist\\/composer": [ "NN" ], "relied": [ "VBN", "VB", "VBD" ], "yaws": [ "NNS" ], "Caere": [ "NNP" ], "yawn": [ "NN", "VB" ], "Octavia": [ "NNP" ], "yawl": [ "NN" ], "plan": [ "NN", "VB", "VBN", "VBP" ], "Jervase": [ "NNP" ], "defections": [ "NNS" ], "foreign-affairs": [ "NNS" ], "Cheerios-brand": [ "JJ" ], "directive": [ "NN" ], "Redhook": [ "NNP" ], "golden-share": [ "NN" ], "tensioning": [ "VBG" ], "Laidlaw": [ "NNP" ], "researchers": [ "NNS" ], "self-managing": [ "JJ" ], "smocks": [ "NNS" ], "strutted": [ "VBD" ], "Carolinas": [ "NNPS", "NNP", "NNS" ], "end-user": [ "NN" ], "R/NNP.C/NNP.A.": [ "NN" ], "Explain": [ "VB" ], "Interviewing": [ "NN" ], "interceptors": [ "NNS" ], "session": [ "NN" ], "Ralphs": [ "NNP" ], "mothballing": [ "NN" ], "C.J.": [ "NNP" ], "aluminum-makers": [ "NNS" ], "hipper": [ "JJR" ], "impact": [ "NN", "VB" ], "Conferees": [ "NNS" ], "indicator": [ "NN" ], "Labe": [ "NNP" ], "Decimus": [ "NNP" ], "stockholders": [ "NNS" ], "Rhyme": [ "VB" ], "cut-glass": [ "JJ" ], "Harrah": [ "NNP" ], "failed": [ "VBD", "VBN", "JJ" ], "fugual": [ "JJ" ], "Jelinski": [ "NNP" ], "medical-benefits": [ "NNS" ], "conservative-communist": [ "JJ" ], "arch-heretic": [ "NN" ], "five-star": [ "JJ" ], "Patriot": [ "NNP" ], "Pascagoula": [ "NNP" ], "Kunz": [ "NNP" ], "Frazee": [ "NNP" ], "Primo": [ "NNP" ], "impregnable": [ "JJ" ], "Rectangular": [ "JJ" ], "Niobe": [ "VB" ], "Cilcorp": [ "NNP", "NN" ], "Kung": [ "NN" ], "closely": [ "RB" ], "Vale": [ "NNP" ], "Hearts": [ "NNPS", "NNP" ], "AUDITS": [ "NNS" ], "Frazer": [ "NNP" ], "COTTON": [ "NN", "NNP" ], "Kahan": [ "NNP" ], "Rabbits": [ "NNS" ], "Help": [ "VB", "NN" ], "sleeve": [ "NN" ], "Chapelles": [ "NNPS" ], "stirling": [ "JJ" ], "Held": [ "VBN", "VBD" ], "lower-volume": [ "JJ" ], "tottering": [ "JJ", "VBG" ], "aryl": [ "NN" ], "inductees": [ "NNS" ], "Helm": [ "NNP" ], "Hell": [ "UH", "NNP", "NN" ], "overdrawn": [ "JJ" ], "Graves": [ "NNP" ], "Adrienne": [ "NNP" ], "blood-letting": [ "NN" ], "Cyber": [ "NNP" ], "booklists": [ "NNS" ], "geologic": [ "JJ" ], "backstitch": [ "NN", "VB" ], "Zeitgeist": [ "NNP" ], "Akita": [ "NNP" ], "muted": [ "VBN", "VBD", "JJ" ], "Advocate": [ "NNP" ], "hatcheries": [ "NNS" ], "Lauderdale": [ "NNP" ], "Redesign": [ "NN" ], "Drell": [ "NNP" ], "avoidance": [ "NN" ], "Florido": [ "NNP" ], "Cambria": [ "NNP" ], "Enzymatic": [ "JJ" ], "intolerant": [ "JJ" ], "Florida": [ "NNP" ], "Against": [ "IN", "NNP" ], "bedazzlement": [ "NN" ], "peacetime": [ "NN" ], "strikeout": [ "NN" ], "selectively": [ "RB" ], "Scholarship": [ "NN", "NNP" ], "Bostonians": [ "NNPS" ], "waffle-pattern": [ "NN" ], "Hayne": [ "NNP" ], "agriculteurs": [ "FW" ], "no-walls-no-doors": [ "JJ" ], "phosphorous": [ "JJ" ], "Kapnek": [ "NNP" ], "Vigreux": [ "NNP" ], "floor-to-ceiling": [ "JJ" ], "multi-colored": [ "JJ" ], "soddies": [ "NNS" ], "Nina": [ "NNP" ], "shortsighted": [ "JJ" ], "Most-recommended": [ "JJ" ], "Wrestlemania": [ "NNP" ], "Alokut": [ "NNP" ], "half-price": [ "NN" ], "smashing": [ "JJ", "NN", "VBG" ], "corresponds": [ "VBZ" ], "Lounge": [ "NNP", "NN" ], "unrealism": [ "NN" ], "bayed": [ "VBD", "VBN" ], "townhouse": [ "NN" ], "all-around": [ "JJ" ], "connexion": [ "NN" ], "roofing": [ "NN" ], "filth": [ "NN" ], "Gibson": [ "NNP", "NN" ], "acceptance": [ "NN" ], "Robbins": [ "NNP" ], "Macy": [ "NNP" ], "Dwarfing": [ "VBG" ], "Mace": [ "NNP" ], "Hartmarx": [ "NNP" ], "Jennison": [ "NNP" ], "Hintz": [ "NNP" ], "assassinated": [ "VBN", "VBD" ], "Mack": [ "NNP" ], "Quezon": [ "NNP" ], "Hints": [ "NNS" ], "firm": [ "NN", "JJ", "VB" ], "Otradovec": [ "NNP" ], "sobriety": [ "NN" ], "high-pitched": [ "JJ" ], "pseudosocialism": [ "NN" ], "fire": [ "NN", "VB" ], "equestrians": [ "NNS" ], "Concert": [ "NNP" ], "all-time": [ "JJ" ], "next-to-last": [ "JJ" ], "roustabouts": [ "NNS" ], "beach-party": [ "NN" ], "Debt-free": [ "JJ" ], "Reinaldo": [ "NNP" ], "enterotoxemia": [ "NN" ], "Concern": [ "NN" ], "casino": [ "NN" ], "NAV:22.15": [ "NN" ], "un-advertisers": [ "NNS" ], "moth": [ "NN" ], "screech": [ "NN" ], "dotting": [ "VBG", "NN" ], "Strategy": [ "NN", "NNP" ], "Armond": [ "NNP" ], "mots": [ "FW" ], "Sunflowers": [ "NNS" ], "Pertschuk": [ "NNP" ], "vanish": [ "VBP", "VB" ], "Armonk": [ "NNP" ], "funny": [ "JJ" ], "choking": [ "VBG", "JJ", "NN" ], "SESCO": [ "NNP" ], "elevated": [ "VBN", "VBD", "JJ" ], "market-sensitive": [ "JJ" ], "pressure-measuring": [ "JJ" ], "great-great-grandfather": [ "NN" ], "Morimoto": [ "NNP" ], "ledgers": [ "NNS" ], "Bluff": [ "NNP" ], "longer-run": [ "JJ" ], "Segnar": [ "NNP" ], "elevates": [ "VBZ" ], "vote-getter": [ "NN" ], "Bierbower": [ "NNP" ], "smokable": [ "JJ" ], "Salive": [ "NNP" ], "Saliva": [ "NN" ], "expediting": [ "VBG" ], "Kimbell-Diamond": [ "NNP" ], "leapt": [ "VBD" ], "leaps": [ "NNS", "VBZ" ], "Ishihara": [ "NNP" ], "focal": [ "JJ" ], "recent": [ "JJ" ], "canned": [ "JJ", "VBN" ], "whaddya": [ "WP" ], "visualizations": [ "NNS" ], "Ibsen": [ "NNP" ], "cognoscenti": [ "NNS" ], "DARPA": [ "NNP" ], "clearance": [ "NN" ], "Petroliam": [ "NNP" ], "plagues": [ "VBZ" ], "paymaster": [ "NN" ], "hotrod": [ "NN" ], "open-year": [ "JJ" ], "telegram": [ "NN" ], "moonlike": [ "JJ" ], "small-capitalization": [ "JJ" ], "Coulson": [ "NNP" ], "swinger": [ "NN" ], "anti-drug": [ "JJ", "NN" ], "co-ordinated": [ "JJ" ], "pillars": [ "NNS" ], "hues": [ "NNS" ], "Yuzuru": [ "NNP" ], "outcasts": [ "NNS" ], "Numb": [ "JJ" ], "prelate": [ "NN" ], "flowchart": [ "NN" ], "clutches": [ "NNS", "VBZ" ], "spot-promoted": [ "NN" ], "demands": [ "NNS", "VBZ" ], "Impasse": [ "NNP" ], "teleconferences": [ "NNS" ], "Executive-branch": [ "JJ" ], "clutched": [ "VBD", "VBN" ], "Probus": [ "NNP" ], "pouncing": [ "VBG" ], "Daily": [ "NNP", "JJ", "RB" ], "pertinent": [ "JJ" ], "parliamentarians": [ "NNS" ], "empty-shelved": [ "JJ" ], "underway": [ "RB", "JJ" ], "shimmered": [ "VBD" ], "toxicant": [ "NN" ], "CRIMINAL": [ "JJ" ], "late-day": [ "JJ" ], "Motoyuki": [ "NNP" ], "Burmah": [ "NNP" ], "irresistibly": [ "RB" ], "Burman": [ "NNP" ], "Coyotes": [ "NNS" ], "unfazed": [ "VBN", "JJ" ], "Hydraulic": [ "NNP", "JJ" ], "Hawksley": [ "NNP" ], "indigent": [ "JJ" ], "irresistible": [ "JJ" ], "abandon": [ "VB", "NN", "VBP" ], "cortege": [ "NN" ], "soirees": [ "NNS" ], "Sufficient": [ "JJ" ], "sub-Christian": [ "JJ" ], "knuckleball": [ "NN" ], "jokingly": [ "RB" ], "prosecuted": [ "VBN", "VBD" ], "Vacuum": [ "NNP", "NN" ], "jumping-off": [ "JJ" ], "Lubriderm": [ "NNP" ], "inclination": [ "NN" ], "Loon": [ "NNP" ], "Antonia": [ "NNP" ], "Szuros": [ "NNP" ], "Loom": [ "NNP" ], "Look": [ "VB", "NN", "UH", "NNP" ], "Rosalie": [ "NNP" ], "STUDENTS": [ "NNS" ], "interpreters": [ "NNS" ], "Colossus": [ "NNP" ], "agreement": [ "NN" ], "Antonin": [ "NNP" ], "Antonio": [ "NNP" ], "Cervantes": [ "NNP" ], "Pinellas": [ "NNP" ], "tidal": [ "JJ" ], "by": [ "IN", "RB", "RP", "RB|RP" ], "Loop": [ "NNP", "NN" ], "glorying": [ "VBG" ], "discontented": [ "JJ" ], "data\\": [ "JJ" ], "Espenhain": [ "NNP" ], "Papasan": [ "NNP" ], "hatchet": [ "NN" ], "sub-markets": [ "NNS" ], "stock-selection": [ "JJ" ], "forgave": [ "VBD" ], "book-breaking": [ "JJ" ], "hatched": [ "VBN", "VBD" ], "filagree": [ "NN" ], "non-swimmers": [ "NNS" ], "Hertz": [ "NNP" ], "fitfully": [ "RB" ], "glumly": [ "RB" ], "dubiously": [ "RB" ], "plainest": [ "JJS" ], "Pickard": [ "NNP" ], "doubters": [ "NNS" ], "bare-footed": [ "JJ" ], "Pollock": [ "NNP" ], "primarily": [ "RB" ], "insecticide": [ "NN" ], "Bosco": [ "NNP" ], "Bosch": [ "NNP" ], "Shantou": [ "NNP" ], "arcade": [ "NN" ], "chide": [ "VB", "VBP" ], "shillings": [ "NNS" ], "life-bettering": [ "JJ" ], "knee-jerk": [ "JJ", "RB" ], "Bernie": [ "NNP" ], "Giacometti": [ "NNP" ], "byzantine": [ "JJ" ], "polytonal": [ "JJ" ], "relaxed": [ "VBN", "JJ", "VBD" ], "lint": [ "NN" ], "buttery": [ "JJ" ], "construction-related": [ "JJ" ], "archaic": [ "JJ" ], "link": [ "NN", "VB", "VBP" ], "Trite": [ "JJ" ], "Turnpike": [ "NNP" ], "line": [ "NN", "VBP", "RB", "VB" ], "Seasonally": [ "RB" ], "Caryl": [ "NNP" ], "relaxes": [ "VBZ" ], "gizmos": [ "NNS" ], "Bhutto": [ "NNP" ], "Jeff": [ "NNP" ], "thickeners": [ "NNS" ], "Buena": [ "NNP" ], "MEN": [ "NNS", "NN" ], "MEI": [ "NNP" ], "horned": [ "JJ" ], "below-investment": [ "JJ" ], "MET": [ "VBD" ], "skis": [ "NNS" ], "seekingly": [ "RB" ], "sublicense": [ "NN" ], "NonProfit": [ "NNP" ], "hornet": [ "NN" ], "industry-supported": [ "JJ" ], "Birdwhistell": [ "NNP" ], "Kellner": [ "NNP" ], "nationalist": [ "JJ", "NN" ], "defined": [ "VBN", "JJ", "VBD" ], "more-than-$": [ "$" ], "anti-pesticide": [ "JJ" ], "Crop": [ "NNP" ], "non-pathogenic": [ "JJ" ], "rate-slashing": [ "JJ" ], "concealment": [ "NN" ], "Manhattan": [ "NNP" ], "defines": [ "VBZ" ], "phantom": [ "JJ", "VBP", "NN" ], "Comair": [ "NNP" ], "electronic-trading": [ "JJ", "NN" ], "Mulford": [ "NNP" ], "bullishness": [ "NN" ], "ILLINOIS": [ "NNP" ], "Litman\\/Gregory": [ "NNP" ], "Ownership": [ "NNP", "NN" ], "conditioners": [ "NNS" ], "swirl": [ "NN", "VB" ], "sails": [ "NNS", "VBZ" ], "European-American": [ "NNP" ], "all-weather": [ "JJ" ], "Abbe-Direct": [ "NNP" ], "Mambo": [ "NNP" ], "robots": [ "NNS" ], "proclamations": [ "NNS" ], "Centigrade": [ "NN" ], "mealy": [ "JJ" ], "hazardous-waste-site": [ "NN" ], "bodily": [ "JJ", "RB" ], "meals": [ "NNS" ], "effrontery": [ "NN" ], "hells": [ "NNS" ], "tailored": [ "VBN", "JJ" ], "Hoak": [ "NNP" ], "electromagnet": [ "NN" ], "Xuanping": [ "NNP" ], "metabolize": [ "VB" ], "reconditioning": [ "VBG" ], "Hoag": [ "NNP" ], "Aegis": [ "NNP" ], "Dong-A": [ "NNP" ], "hello": [ "UH", "NN" ], "Leninism-Marxism": [ "NNP" ], "Guardia": [ "NNP" ], "code": [ "NN", "VB" ], "guzzler": [ "NN" ], "guzzles": [ "VBZ" ], "sorrier": [ "JJR" ], "Contemplating": [ "VBG", "NNP" ], "Nissans": [ "NNPS" ], "playland": [ "NN" ], "renown": [ "NN", "VB" ], "Construcciones": [ "NNP" ], "mercenaries": [ "NNS" ], "guzzled": [ "VBD" ], "Giuffrida": [ "NNP" ], "Civil-rights": [ "NNS", "JJ" ], "grandly": [ "RB" ], "non-monopolistic": [ "JJ" ], "Cares": [ "VBZ" ], "McAllister": [ "NNP" ], "Step": [ "NN", "NNP", "VB" ], "teardrop": [ "NN" ], "Sanatorium": [ "NNP" ], "hipster": [ "NN" ], "dislike": [ "NN", "VB", "VBP" ], "social-studies": [ "NN" ], "Beaux-Arts": [ "NNP" ], "moot": [ "JJ" ], "Racketeer": [ "NNP" ], "Truckee": [ "NNP" ], "self-will": [ "NN" ], "Noonan": [ "NNP" ], "rewrapped": [ "NN" ], "Glucksman": [ "NNP" ], "jist": [ "RB" ], "Varani": [ "NNP" ], "Lagoon": [ "NNP" ], "BANKS": [ "NNS", "NNPS" ], "Regardless": [ "RB" ], "second-round": [ "JJ" ], "atonally": [ "RB" ], "recit": [ "FW" ], "Hagen": [ "NNP" ], "Ste.": [ "NNP" ], "Hager": [ "NNP" ], "Directly": [ "RB" ], "Extreme": [ "JJ", "NNP" ], "logistics": [ "NNS" ], "disordered": [ "JJ", "VBN" ], "besieging": [ "VBG" ], "Scully": [ "NNP" ], "Boy/NNP...": [ ":" ], "Dreadnought": [ "NNP" ], "munitions": [ "NNS" ], "incidentally": [ "RB" ], "umpteenth": [ "JJ" ], "flag-stick": [ "NN" ], "twine": [ "NN" ], "time-line": [ "NN" ], "B\\/C": [ "NN" ], "vintages": [ "NNS" ], "price-reform": [ "JJ" ], "Provenza": [ "NNP" ], "inpatients": [ "NNS" ], "B\\/T": [ "NNP" ], "twins": [ "NNS" ], "proffer": [ "VB" ], "Bodenheim": [ "NNP" ], "bird": [ "NN" ], "Verbindungstechnik": [ "NNP" ], "unmask": [ "VB" ], "led": [ "VBN", "VBD", "VB" ], "eminently": [ "RB" ], "leg": [ "NN" ], "len": [ "NN" ], "les": [ "FW" ], "let": [ "VB", "VBD", "VBN", "VBP", "NN" ], "lex": [ "FW" ], "Nofzinger": [ "NNP" ], "Commonwealth": [ "NNP", "NN" ], "impressionism": [ "NN" ], "right-to-lifers": [ "NNS" ], "twin-deficit": [ "NN" ], "dried-out": [ "JJ" ], "non-strategic": [ "JJ" ], "Himmler": [ "NNP" ], "steel-rod": [ "NN" ], "insulin": [ "NN" ], "impressionist": [ "NN", "JJ" ], "residents": [ "NNS" ], "Elbaz": [ "NNP" ], "Fiddlesticks": [ "NNS" ], "Anglo-Saxon": [ "NNP", "JJ" ], "Britannic": [ "JJ" ], "Britannia": [ "NNP" ], "complying": [ "VBG" ], "Distributed": [ "VBN" ], "Propertius": [ "NNP" ], "boxy": [ "JJ" ], "sensitize": [ "VB" ], "Year-ago": [ "JJ" ], "seatrout": [ "NN" ], "Falconry": [ "NNP" ], "Bretherick": [ "NNP" ], "standing": [ "VBG", "JJ", "NN" ], "sketchbook": [ "NN" ], "half-aloud": [ "RB" ], "pawn": [ "NN", "VB" ], "Seagram": [ "NNP" ], "recalling": [ "VBG", "NN" ], "Borneo": [ "NNP" ], "Vanderbilt": [ "NNP" ], "doubt": [ "NN", "VBP", "RB", "VB" ], "Pignatelli": [ "NNP" ], "yardstick": [ "NN" ], "hot-buttons": [ "NNS" ], "Merchandise": [ "NNP" ], "confiscate": [ "VB" ], "Westin": [ "NNP" ], "Noskova": [ "NNP" ], "Burial": [ "NN" ], "queerer": [ "JJR" ], "occurred": [ "VBD", "VBN" ], "approached": [ "VBD", "VBN" ], "deregulate": [ "VB", "NN" ], "Rogues": [ "NNPS" ], "winches": [ "NNS" ], "Interfinancial": [ "NNP" ], "CAC": [ "NNP" ], "Rifles": [ "NNS" ], "DISTRESSFUL": [ "JJ" ], "Heartburn": [ "NNP" ], "endearments": [ "NNS" ], "reproduce": [ "VB" ], "Midco": [ "NNP" ], "Linsenberg": [ "NNP" ], "drill": [ "NN", "VB" ], "whodunnit-style": [ "JJ" ], "Haberle": [ "NNP" ], "wearing": [ "VBG" ], "streamed": [ "VBD", "VBN" ], "bent": [ "VBD", "VBN", "JJ", "NN" ], "firefighting": [ "NN" ], "disaster-contingency": [ "NN" ], "DOLLARS": [ "NNPS" ], "Banawans": [ "NNPS" ], "transpired": [ "VBN", "VBD" ], "Cato": [ "NNP" ], "Cats": [ "NNP" ], "Catt": [ "NNP" ], "bend": [ "VB", "NN" ], "Catz": [ "NNP" ], "five-hundred-dollar": [ "JJ" ], "Korneyeva": [ "NNP" ], "tune-in": [ "JJ" ], "Claytor": [ "NNP" ], "Clayton": [ "NNP" ], "Nationalcar": [ "NNP" ], "McGill": [ "NNP", "NN" ], "Prieska": [ "NNP" ], "good-living": [ "JJ" ], "Rental": [ "NNP", "JJ" ], "luster": [ "NN" ], "value-problems": [ "NNS" ], "aspiring": [ "JJ", "VBG" ], "Araskog": [ "NNP" ], "await": [ "VB", "VBP" ], "tactually": [ "RB" ], "Ximenez-Vargas": [ "NNP" ], "WCRS\\/Boston": [ "NNP" ], "intraepithelial": [ "JJ" ], "weevils": [ "NNS" ], "prawns": [ "NNS" ], "Community": [ "NNP", "NN" ], "acquitted": [ "VBN", "VBD" ], "allot": [ "VB" ], "allow": [ "VB", "VBP" ], "lactate": [ "NN" ], "alloy": [ "NN" ], "sub-interval": [ "NN" ], "Raisa": [ "NNP" ], "Regina": [ "NNP" ], "Raise": [ "VB", "NNP" ], "Regine": [ "NNP" ], "Toulouse-Lautrec": [ "NNP" ], "Vientiane": [ "NNP" ], "fine-tooth": [ "JJ" ], "snafus": [ "NNS" ], "Flumenophobe": [ "NNP" ], "Match": [ "NNP", "NN" ], "once-distinct": [ "JJ" ], "Secretariat": [ "NNP", "NN" ], "cycads": [ "NNS" ], "Slenczynka": [ "NNP" ], "Liberace": [ "NNP" ], "heart-rending": [ "JJ" ], "Traficant": [ "NNP" ], "Blamed": [ "VBN" ], "co-sponsor": [ "NN", "VB" ], "designs": [ "NNS", "VBZ" ], "Coudert": [ "NNP" ], "seatbelt": [ "NN" ], "Feverishly": [ "RB" ], "Senshukai": [ "NNP" ], "belch": [ "NN" ], "Ozone": [ "NN" ], "yen-denominated": [ "JJ" ], "billiard": [ "NN" ], "Soliz": [ "NNP" ], "Cholesterol": [ "NN" ], "earthlings": [ "NNS" ], "Melanesian": [ "NNP" ], "mysteries": [ "NNS" ], "traffic-safety": [ "NN" ], "Cristo": [ "NNP" ], "irks": [ "VBZ" ], "draftees": [ "NNS" ], "sufficiently": [ "RB" ], "delightful": [ "JJ" ], "contract-food": [ "NN" ], "Arkansas": [ "NNP", "NNS" ], "hoodwinked": [ "VBN" ], "scants": [ "VBZ" ], "models-on-the-way-up": [ "JJ" ], "Paperin": [ "NNP" ], "habitually": [ "RB" ], "broad-appeal": [ "JJ" ], "Macneff": [ "NNP" ], "decays": [ "VBZ" ], "Marum": [ "NNP" ], "banal": [ "JJ" ], "registrant": [ "NN" ], "Multnomah": [ "NNP" ], "reformism": [ "NN" ], "populace": [ "NN" ], "bad": [ "JJ", "NN", "RB" ], "Genentech": [ "NNP", "NN" ], "mafias": [ "NNS" ], "not-A": [ "NN" ], "subdivisions": [ "NNS" ], "Snowball": [ "NN" ], "Giuliani": [ "NNP" ], "bunches": [ "NNS" ], "money-saving": [ "JJ", "NN" ], "reformist": [ "NN", "JJ" ], "oblong": [ "JJ" ], "APPLIED": [ "NNP" ], "Statesman": [ "NNP" ], "Grunnfeu": [ "NNP" ], "Misbegotten": [ "NNP" ], "incalculable": [ "JJ" ], "ban": [ "NN", "VB", "VBP" ], "tropical-fruit": [ "NN" ], "ignominious": [ "JJ" ], "P-20": [ "NN" ], "cofounder": [ "NN" ], "dismantled": [ "VBN", "VBD" ], "secants": [ "NNS" ], "looting": [ "NN", "VBG" ], "retooling": [ "VBG", "NN" ], "latches": [ "VBZ" ], "Summerfolk": [ "NNP" ], "Sammartini": [ "NNP" ], "dismantles": [ "VBZ" ], "shucks": [ "UH", "NNS" ], "latched": [ "VBN", "VBD" ], "J.W.": [ "NNP" ], "Changyi": [ "NNP" ], "endowments": [ "NNS" ], "blown": [ "VBN" ], "Maccabee": [ "NNP" ], "Cleve": [ "NNP" ], "privies": [ "NNS" ], "BAY": [ "NNP" ], "victimless": [ "JJ" ], "Stabilizing": [ "VBG" ], "blows": [ "NNS", "VBZ" ], "cabbage": [ "NN" ], "automated-trading": [ "NN" ], "Donnell": [ "NNP" ], "Peeping": [ "NNP" ], "HIGH-SCHOOL": [ "NN" ], "Ryzhkov": [ "NNP" ], "percussion": [ "NN" ], "Lazarus": [ "NNP" ], "Lintas:Campbell-Ewald": [ "NNP" ], "Shearn": [ "NNP" ], "world-amid": [ "IN" ], "adopts": [ "VBZ" ], "Evangelical": [ "JJ", "NNP" ], "tomato": [ "NN" ], "Inquisitor-General": [ "NNP" ], "co-op": [ "NN", "NNP" ], "Xiaoping": [ "NNP" ], "confectioner": [ "NN" ], "opalescent": [ "JJ" ], "rotunda": [ "NN" ], "non-authoritative": [ "JJ" ], "subliterary": [ "JJ" ], "Sector": [ "NNP" ], "Daiei": [ "NNP" ], "colleagues": [ "NNS" ], "Classical": [ "NNP" ], "Livshitz": [ "NNP" ], "tortured": [ "VBN", "JJ", "VBD" ], "Supremacy": [ "NN" ], "Kilduff": [ "NNP" ], "Anglicanism": [ "NN" ], "briefing": [ "NN", "VBG" ], "misunderstand": [ "VB" ], "kissings": [ "NNS" ], "yrs.": [ "NNS" ], "Boom": [ "NNP" ], "stopovers": [ "NNS" ], "Bosque": [ "NNP" ], "Synod": [ "NNP" ], "Toornstra": [ "NNP" ], "mischief": [ "NN" ], "heeds": [ "VBZ" ], "commonstock": [ "NN" ], "Tobishima": [ "NNP" ], "patroness": [ "NN" ], "adjunct": [ "NN", "JJ" ], "sharp-limbed": [ "JJ" ], "pre-conditions": [ "NNS" ], "Mayland": [ "NNP" ], "equaling": [ "VBG" ], "Mississippians": [ "NNS" ], "bloodsucking": [ "VBG" ], "Greece": [ "NNP" ], "show-down": [ "NN" ], "carcasses": [ "NNS" ], "flagellation": [ "NN" ], "rollout": [ "NN" ], "socializing": [ "VBG" ], "British-Dutch": [ "JJ" ], "un-American": [ "JJ" ], "industryas": [ "NNS" ], "ignited": [ "VBD", "VBN" ], "latecomers": [ "NNS" ], "unscramble": [ "VB" ], "self-reinsure": [ "VB" ], "Demery": [ "NNP" ], "noire": [ "NN" ], "Checked": [ "VBN" ], "pre-1967": [ "JJ" ], "pre-1960": [ "JJ" ], "Morristown": [ "NNP" ], "bikes": [ "NNS" ], "Turnaround": [ "NNP", "NN" ], "Under": [ "IN", "NNP" ], "bayly": [ "NN" ], "Independence": [ "NNP", "NN" ], "resells": [ "VBZ" ], "Spraying": [ "VBG" ], "squirreled": [ "VBN" ], "enamelled": [ "JJ" ], "softens": [ "VBZ" ], "Tracks": [ "NNS", "NNPS" ], "Gloomy": [ "JJ" ], "finger": [ "NN", "VB" ], "flinch": [ "VB" ], "exchanged": [ "VBN", "VBD" ], "Rommel": [ "NNP" ], "move": [ "NN", "VBP", "VB" ], "meditative": [ "JJ" ], "Whether": [ "IN", "NNP" ], "information-seeking": [ "NN" ], "Linvure": [ "NNP" ], "exchanger": [ "NN" ], "exchanges": [ "NNS", "VBZ" ], "baby-sitter": [ "NN" ], "committees": [ "NNS", "VBZ" ], "five-story": [ "JJ" ], "Danvers": [ "NNP" ], "drug-testing": [ "NN" ], "coalescence": [ "NN" ], "SLTI": [ "NNP" ], "stomachwise": [ "RB" ], "F.G.": [ "NNP" ], "inter-relation": [ "NN" ], "power-driven": [ "JJ" ], "rein": [ "VB", "NN" ], "handstand": [ "NN" ], "four-wood": [ "JJ" ], "anomie": [ "FW" ], "hydrochemistry": [ "NN" ], "temporarily": [ "RB" ], "anomic": [ "JJ" ], "C": [ "NN", "JJ", "LS", "NNP" ], "bipartisanship": [ "NN" ], "Handbook": [ "NN", "NNP" ], "generational": [ "JJ" ], "forepaws": [ "NNS" ], "Porterhouse": [ "NN" ], "crystal-lattice": [ "JJ", "NN" ], "Feebly": [ "RB" ], "book-burning": [ "JJ" ], "Mellanby": [ "NNP" ], "Cadwalader": [ "NNP" ], "DeVillars": [ "NNP" ], "Korotich": [ "NNP" ], "Lazard": [ "NNP" ], "Lazare": [ "NNP" ], "environmental-impact": [ "JJ" ], "Intriguing": [ "JJ" ], "two-day-old": [ "JJ" ], "aspires": [ "VBZ" ], "vitamin": [ "NN" ], "grasp": [ "VB", "VBP", "NN" ], "advisability": [ "NN" ], "gnomes": [ "NNS" ], "historians": [ "NNS" ], "restrictions": [ "NNS" ], "tantrum": [ "NN" ], "figured": [ "VBD", "JJ", "VBN" ], "five-fold": [ "JJ" ], "Mikado": [ "NNP" ], "heretofore-accepted": [ "JJ" ], "Centennial": [ "NNP" ], "volley": [ "NN" ], "double-meaning": [ "NN" ], "Shayne": [ "NNP" ], "cold-war": [ "JJ" ], "crafter": [ "NN" ], "adjusted": [ "VBN", "JJ", "VBD" ], "hinterlands": [ "NNS" ], "Alceste": [ "NNP" ], "Greenpeace": [ "NNP" ], "Hanoi": [ "NNP" ], "revamp": [ "VB", "NN" ], "migrant": [ "JJ", "NN" ], "Pratap": [ "NNP" ], "Bruhn": [ "NNP" ], "Garry": [ "NNP" ], "escudo": [ "NN" ], "crafted": [ "VBN", "VBD" ], "Passos": [ "NNP" ], "ataxia": [ "NN" ], "chromium": [ "NN" ], "Interagency": [ "NNP" ], "neocortical-hypothalamic": [ "JJ" ], "Vivien": [ "NNP" ], "quotas": [ "NNS" ], "Franklin-Trout": [ "NNP" ], "Vivier": [ "NNP" ], "Clozaril": [ "NNP" ], "recurring": [ "VBG" ], "ballast": [ "NN" ], "U.S-based": [ "JJ" ], "psychotherapist": [ "NN" ], "Lukas": [ "NNP" ], "bayonet": [ "NN" ], "gunpowder": [ "NN" ], "junk-bonds": [ "NNS" ], "fine-boned": [ "JJ" ], "toothless": [ "JJ" ], "emphaticize": [ "VB" ], "Wilder": [ "NNP" ], "Presidents": [ "NNS", "NNPS", "NNP" ], "Heel-Kaola": [ "NNP" ], "poured-in-place": [ "VBN" ], "Choctaw": [ "NNP" ], "JOKE": [ "NN" ], "Hanover-Supermarket": [ "NNP" ], "Lancome": [ "NNP" ], "eyeball": [ "NN" ], "Tire": [ "NNP", "NN" ], "globigii": [ "NNS" ], "Panorama": [ "NNP" ], "surprisingly": [ "RB" ], "sentencings": [ "NNS" ], "Sort": [ "NN", "VB" ], "Badly": [ "RB" ], "long-line": [ "JJ" ], "Menendez": [ "NNP" ], "cue-phrase": [ "NN" ], "Sore": [ "JJ" ], "Sutcliffe": [ "NNP" ], "order-imbalance": [ "NN" ], "Paints": [ "NNP" ], "soundness": [ "NN" ], "tollhouse": [ "NN" ], "fenugreek": [ "NN" ], "Handling": [ "VBG" ], "Tipton": [ "NNP" ], "Imprisoned": [ "VBN" ], "dusk": [ "NN" ], "elicits": [ "VBZ" ], "hangman": [ "NN" ], "paving": [ "VBG" ], "dust": [ "NN", "VB", "VBP" ], "Ardito": [ "NNP" ], "light-hearted": [ "JJ" ], "nurtured": [ "VBD", "VBN" ], "discounted": [ "VBN", "JJ", "VBD" ], "Escalation": [ "NN" ], "disrupted": [ "VBN", "JJ", "VBD" ], "single-malt": [ "JJ" ], "confronted": [ "VBN", "VBD" ], "unceasingly": [ "RB" ], "Schoch": [ "NNP" ], "command": [ "NN", "VBP", "VB" ], "Phrase": [ "NNP" ], "Blocked": [ "VBN" ], "bananas": [ "NNS" ], "CEO-designate": [ "NN" ], "rambled": [ "VBD" ], "LaserWriter": [ "NNP" ], "tansy": [ "NN" ], "repressers": [ "NNS" ], "Equivalents": [ "NNS" ], "Monitoring": [ "NN", "VBG" ], "rambles": [ "VBZ" ], "Myers": [ "NNP" ], "afflicted": [ "VBN", "JJ" ], "Wearing": [ "VBG", "NNP" ], "LaMacchia": [ "NNP" ], "residential": [ "JJ" ], "anti-productive": [ "JJ" ], "sickened": [ "VBN", "VBD", "JJ" ], "Eduard": [ "NNP" ], "Wieland": [ "NNP" ], "innocents": [ "NNS" ], "U.S.-donated": [ "JJ" ], "concretistic": [ "JJ" ], "flat-panel": [ "JJ" ], "magnify": [ "VB" ], "complicity": [ "NN" ], "chancellor": [ "NN" ], "Reginald": [ "NNP" ], "Lavoisier": [ "NNP" ], "Syed": [ "NNP" ], "Norwegians": [ "NNPS" ], "Dinner": [ "NN" ], "heart-stopping": [ "JJ" ], "Booker": [ "NNP" ], "Lauer": [ "NNP" ], "Secomerica": [ "NNP" ], "susceptibilities": [ "NNS" ], "accelerating": [ "VBG", "VBG|NN", "JJ" ], "becomin": [ "VBG" ], "Gelles": [ "NNP" ], "Geller": [ "NNP" ], "war-torn": [ "JJ" ], "immunity": [ "NN" ], "reform-minded": [ "JJ" ], "Westwood": [ "NNP" ], "landscapers": [ "NNS" ], "replacement": [ "NN", "JJ" ], "rumor-happy": [ "JJ" ], "habitat": [ "NN" ], "shuttling": [ "VBG" ], "Guaranteed": [ "VBN", "NNP", "JJ" ], "thief": [ "NN" ], "unaudited": [ "JJ" ], "Acton": [ "NNP" ], "recession-resistant": [ "JJ" ], "Comptroller": [ "NNP", "NN" ], "transport": [ "NN", "VBP", "VB" ], "headship": [ "NN" ], "disbelief": [ "NN" ], "agriproducts": [ "NNS" ], "avoid": [ "VB", "JJ", "VBP" ], "environmental-services": [ "NNS" ], "apprehended": [ "VBN" ], "InvesTech": [ "NNP" ], "gummed": [ "VBN" ], "Gives": [ "VBZ" ], "stairway": [ "NN" ], "Hanauer": [ "NNP" ], "stags": [ "NNS" ], "Pence": [ "NNP" ], "Gelb": [ "NNP" ], "Geld": [ "NNP" ], "shortchanging": [ "VBG" ], "Gell": [ "NNP" ], "Refill": [ "VB" ], "stage": [ "NN", "VBP", "VB" ], "sister": [ "NN", "JJ" ], "Co-author": [ "NN" ], "Boliden": [ "NNP" ], "recession-sensitive": [ "JJ" ], "Sacheverell": [ "NNP" ], "Yosi": [ "NNP" ], "Calgene": [ "NNP" ], "Shelley": [ "NNP", "NN" ], "diabolical": [ "JJ" ], "Chaves": [ "NNP" ], "Carder": [ "NNP" ], "Rosella": [ "NNP" ], "Pedro": [ "NNP" ], "Roselle": [ "NNP" ], "HansGeorg": [ "NNP" ], "booed": [ "VBD" ], "Hagerty": [ "NNP" ], "flailing": [ "VBG" ], "borers": [ "NNS" ], "Comus": [ "NNP" ], "federal-formula": [ "JJ" ], "Pavlovsky": [ "NNP" ], "disaffected": [ "JJ" ], "British-based": [ "JJ" ], "Perzio-Biroli": [ "NNP" ], "savings-deposit": [ "JJ" ], "Sudikoff": [ "NNP" ], "Tylenol-tampering": [ "JJ" ], "data-transmission": [ "JJ", "NN" ], "dockside": [ "NN" ], "Gentiles": [ "NNPS" ], "justifying": [ "VBG" ], "disapproval": [ "NN" ], "Hambros": [ "NNP" ], "Lanvin-owned": [ "JJ" ], "imbibe": [ "VB" ], "hand-tool": [ "NN" ], "dog-rose": [ "NN" ], "pretax": [ "JJ", "NN" ], "naturally": [ "RB" ], "funnel": [ "VB", "NN" ], "Weld": [ "NNP" ], "perpetuation": [ "NN" ], "ambiance": [ "NN" ], "Interestingly": [ "RB" ], "Well": [ "UH", "RB", "NNP" ], "assassins": [ "NNS" ], "Welt": [ "NNP", "FW" ], "quasi-folk": [ "JJ" ], "un-advertising": [ "NN" ], "Orix": [ "NNP" ], "Telescope": [ "NNP" ], "behemoth": [ "NN" ], "Goldwin": [ "NNP" ], "wife": [ "NN" ], "smooth": [ "JJ", "VB" ], "Hebron": [ "NNP" ], "Orin": [ "NNP" ], "Ottauquechee": [ "NNP" ], "on-and-off": [ "JJ" ], "discount-toy": [ "JJ" ], "coiffed": [ "JJ" ], "Mandolin": [ "NNP" ], "recognize": [ "VB", "VBP" ], "orbit": [ "NN", "VB" ], "R.I": [ "NNP" ], "abaringe": [ "NN" ], "Clinical": [ "NNP", "JJ" ], "FEMA": [ "NNP" ], "backfield": [ "NN" ], "six-count": [ "JJ" ], "mushroom": [ "NN", "VBP", "VB" ], "Whitehall": [ "NNP", "NN" ], "CL": [ "NNP" ], "non-accruing": [ "JJ" ], "Volume": [ "NN", "NNP" ], "PETS": [ "NNS" ], "Fagan": [ "NNP" ], "quartz": [ "NN" ], "four-cents-a-share": [ "JJ" ], "three-body": [ "JJ" ], "quarts": [ "NNS" ], "Covent": [ "NNP" ], "woes": [ "NNS", "VBZ" ], "Merited": [ "JJ" ], "Timony": [ "NNP" ], "Chronometer": [ "NNP" ], "uranium-recovery": [ "JJ" ], "South": [ "NNP", "NNPS", "JJ", "NN", "RB" ], "consisently": [ "RB" ], "Girard": [ "NNP" ], "Unice": [ "NNP" ], "gearboxes": [ "NNS" ], "forthrightly": [ "RB" ], "Unico": [ "NNP" ], "Wm.": [ "NNP" ], "Dowex-2-chloride": [ "NN", "NNP" ], "extra-thick": [ "JJ" ], "questionnaires": [ "NNS" ], "rural": [ "JJ" ], "Komori": [ "NNP" ], "Overwhelmed": [ "VBN" ], "well-drilled": [ "JJ" ], "Parretti": [ "NNP" ], "Lucretius": [ "NNP" ], "dysplasia": [ "NN" ], "million-and-counting": [ "JJ" ], "Lodge": [ "NNP" ], "Cascaded": [ "VBN" ], "orthophosphate": [ "NN" ], "co-sponsored": [ "VBD", "JJ", "VBN" ], "Pressman": [ "NNP" ], "Watch": [ "NN", "VB", "NNP" ], "PHILADELPHIA": [ "NNP" ], "CV": [ "NNP" ], "recording-company": [ "NN" ], "heavy-truck": [ "NN", "NNS" ], "Changing": [ "VBG", "JJ" ], "Martyrs": [ "NNP" ], "restock": [ "VB" ], "DMB&B\\/International": [ "JJ" ], "optimists": [ "NNS" ], "evacuation": [ "NN" ], "Greening": [ "NN" ], "Reasoner": [ "NNP" ], "here...": [ ":" ], "D.s": [ "NNPS", "NNP" ], "wagons": [ "NNS" ], "Szolds": [ "NNPS", "NNP" ], "stocks-boosted": [ "NN" ], "bewildered": [ "VBN", "JJ" ], "Lifecodes": [ "NNPS" ], "D.C": [ "NNP" ], "Attic": [ "NNP", "JJ" ], "Sangetsu": [ "NNP" ], "Sufi": [ "JJ" ], "fogy": [ "NN" ], "D.K": [ "NNP" ], "SNP": [ "NN" ], "indices": [ "NNS" ], "Spahn": [ "NNP" ], "vacuous": [ "JJ" ], "pre-vision": [ "JJ" ], "diverting": [ "VBG" ], "occasioned": [ "VBN" ], "Golda": [ "NNP" ], "Staniszkis": [ "NNP" ], "VOLUME": [ "NN" ], "Godspeed": [ "NN" ], "Collins": [ "NNP", "NN" ], "flatus": [ "NN" ], "meditation": [ "NN" ], "letter-writing": [ "JJ" ], "Generating": [ "NNP" ], "Churchyard": [ "NNP" ], "self-sufficient": [ "JJ", "NN" ], "Feringa": [ "NNP" ], "Merner": [ "NNP" ], "above": [ "IN", "JJ", "RB" ], "churches": [ "NNS" ], "counters": [ "NNS", "VBZ" ], "Cosmopulos": [ "NNP" ], "sinkt": [ "FW" ], "sinks": [ "VBZ" ], "low-crime": [ "JJ" ], "delicto": [ "FW" ], "H.P.R.": [ "NNP" ], "delicti": [ "FW" ], "self-exile": [ "NN" ], "Jean-Claude": [ "NNP" ], "McGrath": [ "NNP" ], "Emcee": [ "NNP" ], "studs": [ "NNS" ], "movie-like": [ "JJ" ], "balance": [ "NN", "VBP", "JJ", "RB", "VB" ], "Burkes": [ "NNPS", "NNP" ], "Labrador": [ "NNP" ], "pre-marital": [ "JJ" ], "study": [ "NN", "VBP", "VB" ], "Lambarene": [ "NNP" ], "mannerism": [ "NN" ], "STAR-STUDDED": [ "JJ" ], "Hush": [ "NN", "UH" ], "Delmont": [ "NNP" ], "Husk": [ "NNP" ], "arcus": [ "NN" ], "fifth-least": [ "JJ" ], "most-respected": [ "JJS" ], "think-alike": [ "JJ" ], "diameter": [ "NN" ], "Nac": [ "NNP" ], "Time-Life": [ "NNP" ], "Legislation": [ "NN", "NNP" ], "Figone": [ "NNP" ], "cheats": [ "VBZ" ], "Katmandu": [ "NNP" ], "glance": [ "NN", "VB" ], "auditing": [ "NN", "VBG" ], "highly-confident": [ "JJ" ], "Cornona": [ "NNP" ], "Drugs": [ "NNS", "NNPS", "NNP" ], "Psychotherapist": [ "NN" ], "chooses": [ "VBZ" ], "well-trained": [ "JJ" ], "circonscriptions": [ "NNS" ], "supercolliding": [ "VBG" ], "Steiners": [ "NNPS" ], "renovations": [ "NNS" ], "fractions": [ "NNS" ], "Horatio": [ "NNP" ], "Jonquieres": [ "NNP" ], "traceable": [ "JJ" ], "Robusta-producing": [ "JJ" ], "reign": [ "NN", "VBP", "VB" ], "escapist": [ "JJ" ], "Gould": [ "NNP" ], "continual": [ "JJ" ], "Krasnow": [ "NNP" ], "EUMMELIHS": [ "NNP" ], "bunnies": [ "NNS" ], "permits": [ "VBZ", "NNS" ], "bomb-detection": [ "JJ" ], "Rios-embryos": [ "NNS" ], "Nap": [ "NNP" ], "immutable": [ "JJ" ], "communist-led": [ "JJ" ], "Atrium": [ "NNP" ], "export-promotion": [ "JJ" ], "Laufenberg": [ "NNP" ], "agriculture-extension": [ "NN" ], "Marxist": [ "JJ", "NNP" ], "bureaucraticized": [ "JJ" ], "Barbaud": [ "NNP" ], "Arfeen": [ "NNP" ], "non-affiliate": [ "NN" ], "thatched-roof": [ "JJ" ], "Stuckert": [ "NNP" ], "Marxism": [ "NNP" ], "Hogan": [ "NNP" ], "sweethearts": [ "NNS" ], "aerated": [ "VBN" ], "Purdew": [ "NNP" ], "photocopy": [ "VB" ], "debauchery": [ "NN" ], "Heidelberg": [ "NNP" ], "Corlopam": [ "NNP" ], "aerates": [ "VBZ" ], "boats": [ "NNS" ], "REACHED": [ "NNP" ], "ordinary": [ "JJ", "NN" ], "fudge": [ "VB", "VBP", "NN" ], "radio-show": [ "JJ" ], "RBSPr": [ "NNP" ], "classifying": [ "VBG" ], "Dylan": [ "NNP", "NN" ], "lotteries": [ "NNS" ], "Establishing": [ "VBG" ], "Anglo-Irish": [ "JJ" ], "b-Percent": [ "NN" ], "overdressed": [ "JJ" ], "Entwhistle": [ "NNP" ], "chilled": [ "VBN", "JJ", "VBD" ], "last-second": [ "JJ" ], "Dryfoos": [ "NNP" ], "supermarkets": [ "NNS" ], "green": [ "JJ", "NN", "VB" ], "over-achievement": [ "NN" ], "block-trading": [ "NN" ], "remonstrate": [ "VB" ], "MegEcon": [ "NNP" ], "greed": [ "NN" ], "Wilmot": [ "NNP" ], "twelvefold": [ "JJ" ], "devote": [ "VB", "VBP" ], "consent": [ "NN", "VB" ], "jabs": [ "NNS" ], "Huichol": [ "NNP" ], "Hazy": [ "NNP" ], "resonable": [ "JJ" ], "crimping": [ "VBG" ], "Nonsmokers": [ "NNP" ], "ASCAP": [ "NNP" ], "DeLuca": [ "NNP" ], "refectories": [ "NNS" ], "somnolence": [ "NN" ], "Finish": [ "VB" ], "videotapes": [ "NNS" ], "air-conditioner": [ "NN" ], "somewhere": [ "RB", "NN" ], "air-conditioned": [ "JJ" ], "Volcker": [ "NNP" ], "Judge": [ "NNP", "NN", "VB" ], "precipitate": [ "VB", "NN" ], "Encare": [ "NNP" ], "interpretive": [ "JJ" ], "then": [ "RB", "IN", "JJ" ], "Mergens": [ "NNP" ], "affected": [ "VBN", "JJ", "VBD", "JJ|VBN" ], "thei": [ "PRP" ], "locusts": [ "NNS" ], "amenable": [ "JJ" ], "tire-making": [ "JJ", "NN" ], "Periodic": [ "JJ" ], "clogging": [ "VBG" ], "thet": [ "DT", "NN", "VB" ], "ther": [ "RB", "EX", "JJR", "PRP$" ], "seedcoat": [ "NN" ], "moneyed": [ "JJ" ], "Bearer": [ "NN" ], "gallows": [ "NN", "NNS" ], "relishes": [ "VBZ", "NNS" ], "subpenas": [ "NNS" ], "JUDICIARY": [ "NNP" ], "presupposition": [ "NN" ], "grows": [ "VBZ" ], "Sforzt": [ "NNP" ], "seedlings": [ "NNS" ], "Armada": [ "NNP" ], "Vaclav": [ "NNP" ], "Rainbow": [ "NNP" ], "Zipperstein": [ "NNP" ], "monolith": [ "NN" ], "COURTS": [ "NNS" ], "list": [ "NN", "VBP", "VB" ], "crimes": [ "NNS" ], "cabanas": [ "NNS" ], "Bevmark": [ "NNP" ], "cascading": [ "VBG", "JJ" ], "retied": [ "VBD" ], "Biographical": [ "NNP" ], "pigments": [ "NNS" ], "Myth": [ "NNP" ], "dialects": [ "NNS" ], "buy-backs": [ "NNS" ], "Neiman-Marcus": [ "NNP" ], "research-staff": [ "NN" ], "bacteria-based": [ "JJ" ], "fudging": [ "NN" ], "Eritrean": [ "JJ", "NNP" ], "Jakarta": [ "NNP", "NN" ], "pool-owners": [ "NNS" ], "Contradictions": [ "NNP" ], "sliding": [ "VBG", "JJ" ], "disagreements": [ "NNS" ], "W.F.": [ "NNP" ], "marketwise": [ "RB" ], "Junk-fund": [ "NN" ], "troopship": [ "NN" ], "lawless": [ "JJ" ], "depots": [ "NNS" ], "drug-free": [ "JJ" ], "deceptive": [ "JJ" ], "indemnity": [ "NN" ], "Massage": [ "NN", "NNP" ], "incorporates": [ "VBZ" ], "unfulfilled": [ "JJ" ], "recovering": [ "VBG" ], "Certification": [ "NNP" ], "Tappets": [ "NNS" ], "Rothman": [ "NNP" ], "mental-illness": [ "NN" ], "Determined": [ "VBN" ], "aborning": [ "RB" ], "incorporated": [ "VBN", "JJ", "VBD" ], "self-conceited": [ "JJ" ], "JAPAN": [ "NNP" ], "student-athletes": [ "NNS" ], "re-examining": [ "VBG" ], "Mediobanca": [ "NNP" ], "crooning": [ "VBG" ], "chopper": [ "NN" ], "fighter-plane": [ "NN" ], "AIDS": [ "NNP" ], "Nestor": [ "NNP" ], "Samper": [ "NNP" ], "adventitious": [ "JJ" ], "Jaycees": [ "NNPS" ], "self-policing": [ "JJ" ], "Yokich": [ "NNP" ], "plentiful": [ "JJ" ], "airs": [ "NNS", "VBZ" ], "Nintendo": [ "NNP", "NN" ], "airy": [ "JJ" ], "inflate": [ "VB" ], "warded": [ "VBN" ], "Judgment": [ "NNP" ], "copper-producing": [ "JJ" ], "Clarcor": [ "NNP" ], "B": [ "NNP", "JJ", "LS", "NN" ], "Imposed": [ "VBN" ], "Hiroyuki": [ "NNP" ], "Rockville": [ "NNP" ], "fragility": [ "NN" ], "luncheon": [ "NN" ], "Cinnaminson": [ "NNP" ], "FREEZE": [ "VB" ], "exhilarating": [ "JJ" ], "surface-active": [ "JJ" ], "Improprieties": [ "NNS" ], "Sadakane": [ "NNP" ], "short-to-medium": [ "JJ" ], "Algemene": [ "NNP" ], "Dravo": [ "NNP" ], "Advisory": [ "NNP", "JJ", "NN" ], "Set": [ "VB", "VBN", "NNP" ], "glorified": [ "VBN", "JJ" ], "Suresh": [ "NNP" ], "Advisors": [ "NNPS", "NNP", "NNS" ], "negotiator": [ "NN" ], "Trittico": [ "FW" ], "Sex": [ "NN", "NNP" ], "binds": [ "VBZ" ], "black-bearded": [ "JJ" ], "Sea": [ "NNP", "NN" ], "Sen": [ "NNP" ], "solely": [ "RB" ], "Stuck-up": [ "NN" ], "Downers": [ "NNP" ], "manned": [ "JJ", "VBD", "VBN" ], "laboriously": [ "RB" ], "shoals": [ "NNS" ], "stooooomp": [ "VB" ], "manner": [ "NN" ], "Occupational-Urgent": [ "NNP" ], "Newcomb": [ "NNP" ], "Arnell\\/Bickford": [ "NNP" ], "strength": [ "NN" ], "Finot": [ "NNP" ], "Rosser": [ "NNP" ], "zest": [ "NN" ], "subduing": [ "VBG" ], "toursists": [ "NNS" ], "sign-language": [ "NN" ], "pianissimos": [ "NNS" ], "Brookfield": [ "NNP" ], "Nausea": [ "NN" ], "Liming": [ "NNP" ], "Bakersfield": [ "NNP" ], "Meat": [ "NNP", "NN" ], "Eamonn": [ "NNP" ], "Conran": [ "NNP" ], "Boni": [ "NNP" ], "Bonn": [ "NNP", "NN" ], "BRAMALEA": [ "NNP" ], "Conrac": [ "NNP" ], "nutritive": [ "JJ" ], "Vision": [ "NNP" ], "Bond": [ "NNP", "NN" ], "Lindy": [ "NNP" ], "Bourke-White": [ "NNP" ], "Monetta": [ "NNP" ], "neighborhoods": [ "NNS" ], "emasculated": [ "VBD" ], "W-region": [ "NN" ], "producin": [ "VBG" ], "Lauderhill": [ "NNP" ], "accounted": [ "VBD", "VBN" ], "calmness": [ "NN" ], "briskly": [ "RB" ], "renting": [ "VBG", "NN" ], "subtly": [ "RB" ], "Peduzzi": [ "NNP" ], "phosphide": [ "NN" ], "eminent": [ "JJ" ], "Amclyde": [ "NNP" ], "subtle": [ "JJ" ], "exclusivity": [ "NN" ], "blotting": [ "VBG" ], "resemblance": [ "NN" ], "alluded": [ "VBD", "VBN" ], "Janeiro": [ "NNP" ], "Eiffel": [ "NNP" ], "alizarin": [ "NN" ], "Wastewater": [ "NNP" ], "electrophoresis": [ "NN" ], "ConAgra": [ "NNP" ], "German-speaking": [ "JJ" ], "Ebrahim": [ "NNP" ], "co-defendant": [ "NN" ], "musta": [ "MD" ], "Hoffmann-La": [ "NNP" ], "do": [ "VBP", "FW", "NN", "VB", "NNS", "VBZ" ], "seven-digit": [ "JJ" ], "intersect": [ "VB", "VBP" ], "Peepy": [ "NNP" ], "di": [ "NNP", "FW" ], "Republican-governor\\": [ "JJ" ], "Hopson": [ "NNP" ], "dd": [ "VBD" ], "Souphanouvong": [ "NNP" ], "da": [ "NNP", "NN" ], "protectively": [ "RB" ], "Grinsfelder": [ "NNP" ], "statutorily": [ "RB" ], "side-step": [ "VBP" ], "du": [ "NNP", "FW" ], "UJB": [ "NNP" ], "Tordella": [ "NNP" ], "Corry": [ "NNP" ], "irregularities": [ "NNS" ], "Carrara": [ "NNP" ], "large-business": [ "JJ" ], "bondholdings": [ "NNS" ], "Rockport": [ "NNP" ], "squadron": [ "NN" ], "limited-substitution": [ "JJ" ], "PANDA": [ "NNP" ], "squeezed": [ "VBN", "VBD" ], "triumphed": [ "VBD", "VBN" ], "lemonade": [ "NN" ], "bio-assay": [ "NN" ], "ANGELES": [ "NNP" ], "Murrin": [ "NNP" ], "depends": [ "VBZ" ], "Orissa": [ "NNP" ], "Toalster": [ "NNP" ], "Askin": [ "NNP" ], "jocose": [ "JJ" ], "Coulas": [ "NNP" ], "sourcing": [ "NN", "VBG" ], "lightning-fast": [ "JJ" ], "tainted": [ "VBN", "VBD", "JJ", "VBN|JJ" ], "props": [ "NNS" ], "Caldera": [ "NNP" ], "zoooop": [ "NN" ], "Ratcliff": [ "NNP" ], "Minden": [ "NNP" ], "claims-processing": [ "NN" ], "accord": [ "NN", "VBP", "RB", "VB" ], "downgrades": [ "NNS" ], "Feelings": [ "NNS" ], "Doria": [ "NNP" ], "double-jeopardy": [ "NN" ], "Doric": [ "JJ" ], "Cochrane": [ "NNP" ], "postponement": [ "NN" ], "Abrupt": [ "JJ" ], "Teraoka": [ "NNP" ], "I.B.M.": [ "NNP" ], "packages": [ "NNS", "VBZ" ], "downgraded": [ "VBD", "VBN" ], "Doris": [ "NNP", "NNS" ], "scribbling": [ "VBG" ], "added:``": [ "``" ], "penurious": [ "JJ" ], "parried": [ "VBD" ], "Custer": [ "NNP" ], "Kofanes": [ "NNS" ], "coy": [ "JJ" ], "open-collared": [ "JJ" ], "cod": [ "NN" ], "cog": [ "NN" ], "Navy": [ "NNP", "NN" ], "unverifiable": [ "JJ" ], "Langton": [ "NNP" ], "Ratliff": [ "NNP" ], "con": [ "JJ", "NN", "RB", "VB", "FW", "IN" ], "Forty-second": [ "JJ" ], "Initial": [ "JJ" ], "Alamogordo": [ "NNP" ], "Board": [ "NNP", "NNPS", "NN" ], "TV-production": [ "JJ" ], "polynomial": [ "NN", "JJ" ], "beheaded": [ "VBD" ], "jays": [ "NNS" ], "broadens": [ "VBZ" ], "petty": [ "JJ" ], "five-column": [ "JJ" ], "buffets": [ "NNS" ], "margin-the": [ "NN|DT" ], "corollaries": [ "NNS" ], "nonverbally": [ "RB" ], "print-out": [ "JJ" ], "search-and-seizure": [ "JJ" ], "crashlet": [ "NN" ], "Wedbush": [ "NNP" ], "Riverboat": [ "NNP" ], "injury-prone": [ "JJ" ], "Air-freight": [ "NN" ], "surreptitious": [ "JJ" ], "Long-term": [ "JJ", "NNP" ], "Fin-syn": [ "JJ" ], "naval": [ "JJ" ], "convening": [ "VBG", "NN" ], "merchantbanking": [ "NN" ], "MAJOR": [ "JJ" ], "chorines": [ "NNS" ], "trigger-happy": [ "JJ" ], "high-up": [ "JJ" ], "anti-cigarette": [ "JJ" ], "non-ideological": [ "JJ" ], "Worcester": [ "NNP" ], "iodide-concentrating": [ "JJ" ], "Immigrant": [ "JJ" ], "Bettencourt": [ "NNP" ], "OFFICIALS": [ "NNS" ], "vernal": [ "JJ" ], "voice": [ "NN", "VBP", "VB" ], "overtaking": [ "VBG" ], "JAILED": [ "VBN" ], "receptionist": [ "NN" ], "encyclopedias": [ "NNS" ], "Wallenberg": [ "NNP" ], "Rubio": [ "NNP" ], "Rubin": [ "NNP" ], "Kizzie": [ "NNP" ], "Rubik": [ "NNP" ], "Disk\\/Trend": [ "NNP" ], "recurrent": [ "JJ" ], "plated": [ "VBN" ], "utopias": [ "NNS" ], "Canny": [ "NNP" ], "E.R.": [ "NNP" ], "Thai-Cambodian": [ "JJ" ], "bifocal": [ "JJ" ], "Frick": [ "NNP" ], "Alisarda": [ "NNP" ], "evil": [ "JJ", "NN" ], "Spinola": [ "NNP" ], "pubs": [ "NNS" ], "CRESTMONT": [ "NNP" ], "elucidative": [ "JJ" ], "Austins": [ "NNPS" ], "Minh": [ "NNP" ], "Clarice": [ "NNP" ], "CalComp": [ "NNP" ], "thy": [ "JJ", "PRP$", "PRP" ], "Ishii": [ "NNP" ], "AAb": [ "NNP" ], "Mind": [ "VB", "NN", "NNP" ], "Mine": [ "NNP", "PRP", "JJ" ], "resettlement": [ "NN" ], "Ming": [ "NNP" ], "tho": [ "NN" ], "the": [ "DT", "VBD", "VBP", "NN|DT", "IN", "JJ", "NN", "NNP", "PDT" ], "cataract": [ "NN" ], "Mint": [ "NNP", "NN" ], "Pete": [ "NNP" ], "Fanuc": [ "NNP" ], "Wellcome": [ "NNP" ], "Storyteller": [ "NNP", "NN" ], "printing-systems": [ "NNS" ], "cap.": [ "NN" ], "Pets": [ "NNS" ], "shuttle-busing": [ "NN" ], "Non-callable": [ "JJ" ], "cross-border": [ "JJ" ], "T.J.": [ "NNP" ], "Ballwin": [ "NNP" ], "hills": [ "NNS" ], "flooring": [ "NN" ], "cost-conscious": [ "JJ" ], "reuniting": [ "VBG" ], "hilly": [ "JJ" ], "passive": [ "JJ", "NN" ], "alchemy": [ "NN" ], "anti-Communists": [ "NNPS" ], "cranberries": [ "NNS" ], "Barclay": [ "NNP" ], "orzae": [ "NNS" ], "behind-the-scenes": [ "JJ" ], "Wagon": [ "NNP" ], "mocked": [ "VBN", "VBD" ], "ashore": [ "RB", "JJ" ], "million-to-$": [ "$" ], "Athlete": [ "NNP" ], "apostates": [ "NNS" ], "caps": [ "NNS", "VBZ" ], "first-person": [ "NN" ], "capo": [ "NN" ], "barge": [ "NN", "VB", "VBP" ], "Gerard": [ "NNP" ], "cape": [ "NN" ], "commission...": [ ":" ], "Niedermaier": [ "NNP" ], "Amabile": [ "NNP" ], "lily": [ "NN" ], "grizzly": [ "NN" ], "Grocer": [ "NNP" ], "gas-cooled": [ "JJ" ], "Northland": [ "NN", "NNP" ], "Styka": [ "NNP" ], "security": [ "NN" ], "Compiler": [ "NN" ], "antique": [ "JJ", "NN" ], "warily": [ "RB" ], "once-prestigious": [ "JJ" ], "collarbone": [ "NN" ], "productions": [ "NNS" ], "constables": [ "NNS" ], "critique": [ "NN" ], "Bisiewicz": [ "NNP" ], "archetype": [ "NN" ], "one-percentage": [ "JJ" ], "Poker": [ "NN", "NNP" ], "Relationship": [ "NNP" ], "ransacked": [ "VBN", "VBD" ], "purple": [ "JJ", "NN" ], "bullyboys": [ "NNS" ], "poor-mouth": [ "JJ" ], "black-balled": [ "VBN" ], "effeminate": [ "JJ" ], "colloquy": [ "NN" ], "Wilpers": [ "NNP" ], "Voiture": [ "NNP" ], "Fel-Pro": [ "NNP" ], "Chairs": [ "NNS" ], "confluent": [ "JJ" ], "angering": [ "VBG" ], "Place": [ "NNP", "NN", "VB" ], "gangsterish": [ "JJ" ], "Packwood-Roth": [ "NNP" ], "Eileen": [ "NNP" ], "Renzas": [ "NNP" ], "Image": [ "NN" ], "routings": [ "NNS" ], "Baim": [ "NNP" ], "writers": [ "NNS" ], "Democratic-led": [ "JJ" ], "Westinghouse-Mitsubishi": [ "NNP" ], "Verreau": [ "NNP" ], "Cut": [ "VB", "NNP" ], "dilemma": [ "NN" ], "Kelleher": [ "NNP" ], "Cup": [ "NNP", "NN" ], "pays": [ "VBZ" ], "Dadaism": [ "NNP" ], "Snecma": [ "NNP" ], "back-to-back": [ "JJ" ], "Discretion": [ "NN" ], "Cub": [ "NNP" ], "formidable": [ "JJ", "FW" ], "Maryann": [ "NNP" ], "renovating": [ "VBG" ], "workbooks": [ "NNS" ], "counter-efforts": [ "NNS" ], "wailed": [ "VBD", "VBN" ], "USOM": [ "NNP" ], "Existentialism": [ "NNP" ], "unchanging": [ "JJ" ], "Jackson-Vanick": [ "JJ" ], "causative": [ "JJ" ], "fight": [ "NN", "VB", "VBP" ], "Chiuchow": [ "NNP" ], "firm...": [ ":" ], "accordingly": [ "RB" ], "pre-register": [ "VB" ], "CuK": [ "JJ" ], "Carberry": [ "NNP" ], "Barnabas": [ "NNP" ], "helio-copter": [ "NN" ], "interest-rate": [ "NN", "JJ" ], "sagging": [ "VBG", "JJ", "NN", "VBG|JJ" ], "Weinbach": [ "NNP" ], "Stacked": [ "JJ" ], "president\\/public": [ "JJ" ], "Impose": [ "VB" ], "Aqua": [ "NNP" ], "guppies": [ "NNS" ], "wood-encased": [ "JJ" ], "prepayments": [ "NNS" ], "Woven": [ "VBN" ], "PROFIT-SHARING": [ "NN" ], "garnish": [ "NN" ], "dowry": [ "NN" ], "Armuelles": [ "NNP" ], "hurrah": [ "NN" ], "strongrooms": [ "NNS" ], "Ferreira": [ "NNP" ], "veterinarian": [ "NN" ], "Fairness": [ "NNP", "NN" ], "Punching": [ "VBG" ], "Tarkeshian": [ "NNP" ], "City-type": [ "JJ" ], "mails": [ "NNS" ], "non-traders": [ "NNS" ], "MCC": [ "NNP" ], "paragraphs": [ "NNS" ], "bell-ringing": [ "JJ" ], "Malta": [ "NNP" ], "evidence": [ "NN", "VBP" ], "manure": [ "NN" ], "Steppel": [ "NNP" ], "Valin": [ "NNP" ], "newlyweds": [ "NNS" ], "PageMaker": [ "NNP" ], "Gustafsson": [ "NNP" ], "disputable": [ "JJ" ], "bourgeois-bashing": [ "JJ" ], "system-specific": [ "JJ" ], "presumes": [ "VBZ" ], "Running": [ "VBG", "NNP", "NN" ], "interested": [ "JJ", "VBD", "VBN" ], "Asteroidal": [ "JJ" ], "pro-rated": [ "JJ" ], "Trucks": [ "NNS", "NNPS" ], "Mask": [ "NNP" ], "Kornfield": [ "NNP" ], "polite": [ "JJ" ], "mightily": [ "RB" ], "polity": [ "NN" ], "Airline": [ "NNP", "NN" ], "MCV": [ "NNP" ], "Bankler": [ "NNP" ], "two-to-three": [ "JJ" ], "Lumumba": [ "NNP" ], "Haut-Brion": [ "NNP" ], "Safi": [ "NNP" ], "doctrinally": [ "RB" ], "Masu": [ "NNP" ], "videocassette": [ "NN" ], "fact": [ "NN" ], "TRANSAMERICA": [ "NNP" ], "Sandalwood": [ "NNP" ], "Safe": [ "NNP", "JJ" ], "fulcrum": [ "NN" ], "datum": [ "NN" ], "wakeful": [ "JJ" ], "drop-off": [ "NN", "JJ" ], "medical-leave": [ "JJ" ], "Elephant": [ "NNP", "NN" ], "Maughan": [ "NNP" ], "Maugham": [ "NNP" ], "rectangles": [ "NNS" ], "lactating": [ "VBG" ], "non-amortizing": [ "JJ" ], "honoring": [ "VBG" ], "Lupatkin": [ "NNP" ], "health-oriented": [ "JJ" ], "outplayed": [ "VBD" ], "Dominick": [ "NNP" ], "atrophied": [ "VBN" ], "Dominici": [ "NNP" ], "Hedge": [ "NNP" ], "presumed": [ "VBN", "JJ", "VBD" ], "Westside": [ "NNP" ], "Mercedes-Benzes": [ "NNPS", "NNS" ], "Dominica": [ "NNP" ], "Winterhalder": [ "NNP" ], "alumnae": [ "NNS" ], "Economique": [ "NNP" ], "Recapitulation": [ "NNP" ], "bone-weary": [ "JJ" ], "aldermen": [ "NNS" ], "blase": [ "JJ", "NN" ], "Tascher": [ "NNP" ], "liability": [ "NN" ], "microprocessors": [ "NNS" ], "Zycher": [ "NNP" ], "federalized": [ "JJ" ], "blast": [ "NN", "VB" ], "index-trading": [ "NN" ], "pull-down": [ "JJ" ], "Middlebury": [ "NNP" ], "alcoholic-beverage": [ "NN" ], "helm": [ "NN" ], "bring": [ "VB", "VBP" ], "basophilic": [ "JJ" ], "Fricke": [ "NNP" ], "Global": [ "NNP", "JJ" ], "Slivka": [ "NNP" ], "p": [ "NN" ], "liposomes": [ "NNS" ], "Ping-pong": [ "NN" ], "Friday-the-13th": [ "JJ", "NN" ], "Hondas": [ "NNPS", "NNS" ], "distasteful": [ "JJ" ], "Firestone": [ "NNP", "NN" ], "revolution": [ "NN" ], "Quotable": [ "NNP" ], "Euroissues": [ "NNS" ], "McCann": [ "NNP" ], "niggardly": [ "JJ" ], "professionalism": [ "NN" ], "thinker": [ "NN" ], "Campeau": [ "NNP", "NN" ], "free-for-all": [ "NN" ], "acrimonious": [ "JJ" ], "materials-related": [ "JJ" ], "continence": [ "NN" ], "Lederer": [ "NNP" ], "Notable": [ "NNP", "JJ" ], "rapeseeds": [ "NNS" ], "TIPS": [ "NNS" ], "Notably": [ "RB" ], "generalpurpose": [ "JJ" ], "WORLDLY": [ "JJ" ], "satisfy": [ "VB", "VBP" ], "collateral": [ "NN", "JJ" ], "Snatchers": [ "NNPS" ], "interfacial": [ "JJ" ], "Benny": [ "NNP" ], "Guarana": [ "NNP" ], "Delegate": [ "NNP" ], "Sunnyvale": [ "NNP" ], "Saud": [ "NNP" ], "Benno": [ "NNP" ], "hoops": [ "NNS" ], "no-new-tax": [ "JJ" ], "Saul": [ "NNP" ], "Lobsenz": [ "NNP" ], "Portwatchers": [ "NNPS" ], "Antolini": [ "NNP" ], "precursor": [ "NN" ], "eke": [ "VB" ], "Cynthia": [ "NNP" ], "vibrating": [ "VBG" ], "exiting": [ "VBG" ], "anti-Sandinista": [ "JJ" ], "Greenhill": [ "NNP" ], "airline-financed": [ "JJ" ], "matrimonial": [ "JJ" ], "computerrelated": [ "JJ" ], "hiking": [ "VBG", "NN" ], "Nitze": [ "NNP" ], "T.W.": [ "NNP" ], "Angry": [ "JJ", "NNP" ], "Kellmer": [ "NNP" ], "Mackey": [ "NNP" ], "anti-Semitism": [ "NN", "NNP", "JJ" ], "seashore": [ "NN" ], "illumination": [ "NN" ], "rarely": [ "RB" ], "Caucus": [ "NNP" ], "senile": [ "JJ" ], "ASLACTON": [ "NNP" ], "waterline": [ "NN" ], "Washizu": [ "NNP" ], "matador": [ "NN" ], "entrance": [ "NN" ], "Shalom": [ "NNP", "FW" ], "minimum-wage": [ "NN" ], "well-trampled": [ "JJ" ], "child-face": [ "NN" ], "conspire": [ "VBP", "VB" ], "Dharma": [ "NNP" ], "Huntz": [ "NNP" ], "Shalov": [ "NNP" ], "jabberings": [ "NNS" ], "Sturge": [ "NNP" ], "wretchedness": [ "NN" ], "Kuttner": [ "NNP" ], "high-octane": [ "JJ" ], "redecoration": [ "NN" ], "Brill": [ "NNP" ], "innuendo": [ "NN" ], "labeled": [ "VBN", "VBD" ], "Underlying": [ "VBG", "JJ" ], "slumbering": [ "VBG" ], "lubricant": [ "NN", "JJ" ], "Ninety-Eight": [ "NNP" ], "spy": [ "NN", "VB" ], "centenarians": [ "NNS" ], "subsidies": [ "NNS" ], "fortunes": [ "NNS" ], "canned-foods": [ "NNS", "JJ" ], "baddebt": [ "JJ" ], "union-management": [ "JJ" ], "spa": [ "NN" ], "distinguishable": [ "JJ" ], "risk-taking": [ "NN" ], "hull-first": [ "RB" ], "wornout": [ "NN" ], "productive": [ "JJ" ], "bankrupt": [ "JJ", "NN", "VB", "VBP" ], "evil-looking": [ "JJ" ], "malevolence": [ "NN" ], "chateaux": [ "NN" ], "Howsabout": [ "RB" ], "nihilism": [ "NN" ], "nowhere": [ "RB", "NN" ], "criterion": [ "NN" ], "nihilist": [ "NN" ], "Lyaki": [ "NNP" ], "allowable": [ "JJ" ], "re-enactment": [ "NN" ], "Disquisition": [ "NNP" ], "Decentralization": [ "NN" ], "BankTexas": [ "NNP" ], "CANCER": [ "NNP" ], "Tupelev-144": [ "NNP" ], "glass-strewn": [ "JJ" ], "averted": [ "VBN", "VBD" ], "brazen": [ "JJ", "VB" ], "non-trade-related": [ "JJ" ], "Cavalier": [ "NNP" ], "flourish": [ "VB", "NN", "VBP" ], "compatibility": [ "NN" ], "Donohoo": [ "NNP" ], "Detente": [ "NN" ], "Quietly": [ "RB" ], "nationalistic": [ "JJ" ], "explicit": [ "JJ" ], "Rumania": [ "NNP" ], "rather": [ "RB", "IN" ], "progressively": [ "RB" ], "Tambrands": [ "NNP" ], "Crest-Colgate": [ "JJ" ], "fireball": [ "NN" ], "Polyconomics": [ "NNP" ], "idiosyncratic": [ "JJ" ], "bumptious": [ "JJ" ], "Che": [ "NNP" ], "Chg": [ "NN" ], "Chi": [ "NNP" ], "forfeit": [ "VB", "NN" ], "haircut": [ "NN" ], "affectingly": [ "RB" ], "spurning": [ "VBG" ], "Nika": [ "NNP" ], "Chu": [ "NNP" ], "Swartz": [ "NNP" ], "Divers": [ "NNP" ], "revivalism": [ "NN" ], "air-to-air": [ "JJ" ], "Sympathy": [ "NN", "NNP" ], "hungrier": [ "JJR" ], "acknowledge": [ "VBP", "VB" ], "terminations": [ "NNS" ], "Greenall": [ "NNP" ], "reaping": [ "VBG" ], "inflicted": [ "VBD", "VBN" ], "Chemicals": [ "NNPS", "NNP", "NNS" ], "suffocate": [ "VB" ], "Lockhart": [ "NNP" ], "Avon": [ "NNP", "NN" ], "Grace": [ "NNP", "NN" ], "Atkins": [ "NNP" ], "centenary": [ "JJ" ], "Vishwanath": [ "NNP" ], "Kutak": [ "NNP" ], "fling": [ "NN", "VB" ], "chimp": [ "NN" ], "relativism": [ "NN" ], "natured": [ "JJ" ], "Ch.": [ "NN" ], "Registrations": [ "NNS" ], "relativist": [ "NN" ], "equidistant": [ "JJ" ], "cascaded": [ "VBD" ], "highyield": [ "JJ" ], "brigadier": [ "NN" ], "interrogator": [ "NN" ], "barrow": [ "NN" ], "wont": [ "JJ" ], "equalizers": [ "NNS" ], "streaks": [ "NNS" ], "concerti": [ "NNS" ], "servant": [ "NN" ], "victuals": [ "NNS" ], "five-judge": [ "JJ" ], "phonic": [ "JJ" ], "ceremonially": [ "RB" ], "detonation": [ "NN" ], "redactions": [ "NNS" ], "handsomer": [ "JJR" ], "entirely": [ "RB" ], "concerts": [ "NNS" ], "poetically": [ "RB" ], "significantly": [ "RB" ], "Maricopa": [ "NNP" ], "Implementation": [ "NN" ], "provocateurs": [ "NNS" ], "Swed": [ "NNP" ], "Hepatitis": [ "NNP" ], "Kamel": [ "NNP" ], "familarity": [ "NN" ], "avidity": [ "NN" ], "fires": [ "NNS", "VBZ" ], "Hurter": [ "NNP" ], "ubiquitous": [ "JJ" ], "Caroline": [ "NNP", "NN" ], "Chip-o": [ "NNP" ], "FINAL": [ "JJ" ], "third-worst": [ "JJ" ], "Carolina": [ "NNP" ], "unsupportable": [ "JJ" ], "Journey": [ "NNP" ], "receiving": [ "VBG", "NN" ], "viable": [ "JJ" ], "inevitably": [ "RB" ], "Creston": [ "NNP" ], "Callas": [ "NNP" ], "five-mile": [ "JJ" ], "Hafif": [ "NNP" ], "proofread": [ "VBD" ], "rights-of-way": [ "JJ" ], "Ervin": [ "NNP" ], "Callan": [ "NNP" ], "Grannon": [ "NNP" ], "prospector": [ "NN" ], "Urging": [ "NNP" ], "waxy": [ "JJ" ], "milestones": [ "NNS" ], "Sibaral": [ "NNP" ], "Ramfis": [ "NNP" ], "privatization-consulting": [ "JJ" ], "shouders": [ "NNS" ], "Gaspard": [ "NNP" ], "palaces": [ "NNS" ], "Cooperative": [ "NNP" ], "promotion": [ "NN" ], "passenger-miles": [ "NNS" ], "flat-headed": [ "JJ" ], "Rated": [ "VBN", "JJ", "NNP" ], "striking": [ "JJ", "VBG" ], "Aguirre": [ "NNP" ], "omitted": [ "VBN", "VBD" ], "comprised": [ "VBN", "VBD" ], "Rates": [ "NNS", "NNP" ], "low-sulfur": [ "JJ" ], "comprises": [ "VBZ" ], "smelters": [ "NNS" ], "size": [ "NN", "VBP", "VB" ], "Kristol": [ "NNP" ], "Burry": [ "NNP" ], "categorical": [ "JJ" ], "callous": [ "JJ" ], "households": [ "NNS" ], "government-leaked": [ "JJ" ], "Burro": [ "NNP" ], "Defying": [ "VBG" ], "carousel": [ "NN" ], "pomologist": [ "NN" ], "cost-effective": [ "JJ" ], "RACKS": [ "NNS" ], "friend": [ "NN" ], "comprise.": [ "NN" ], "mostly": [ "RB", "JJ" ], "Cominform": [ "NNP" ], "Unseasonably": [ "RB" ], "expanse": [ "NN", "JJ" ], "Feshbach": [ "NNP" ], "Cretaceous": [ "NNP", "JJ" ], "social-political-economical": [ "JJ" ], "post-Barre": [ "JJ" ], "lunched": [ "VBN" ], "optimism": [ "NN" ], "CRA": [ "NNP" ], "receptionists": [ "NNS" ], "optimist": [ "NN" ], "Rockabye": [ "NNP" ], "yesteryear": [ "NN" ], "start-ups": [ "NNS" ], "fruity": [ "JJ" ], "anatomic": [ "JJ" ], "lunches": [ "NNS" ], "physiotherapist": [ "NN" ], "hairline": [ "NN" ], "intrauterine": [ "JJ" ], "Enlargement": [ "NN" ], "angel": [ "NN" ], "Fernald": [ "NNP" ], "anastomotic": [ "JJ" ], "Kohlberg": [ "NNP" ], "MOVES": [ "VBZ" ], "Waffen": [ "NNP" ], "sompin": [ "NN" ], "BBDO": [ "NNP" ], "Combined": [ "VBN", "JJ", "NNP" ], "anger": [ "NN", "VBP" ], "self-scrutiny": [ "NN" ], "insatiable": [ "JJ" ], "Branchburg": [ "NNP" ], "Sprite": [ "NNP" ], "Ingram": [ "NNP" ], "veteran": [ "NN", "JJ" ], "S.A": [ "NNP" ], "Pasoan": [ "NNP" ], "shore": [ "NN", "JJ", "RB", "VB" ], "Blame": [ "VB" ], "Olsen": [ "NNP" ], "Legitimate": [ "JJ" ], "palazzo": [ "NN" ], "translatorfor": [ "NN|IN" ], "impairment": [ "NN" ], "INTERBANK": [ "NNP", "NN|JJ", "JJ", "NN|JJ|RB", "NN", "RB", "RB|NN|JJ" ], "palazzi": [ "NNS", "NN" ], "four-speed": [ "JJ" ], "takeaways": [ "NNS" ], "Forensic": [ "NNP" ], "tax-supported": [ "JJ" ], "hostelries": [ "NNS" ], "directmail": [ "NN" ], "plainer": [ "JJR" ], "undertakings": [ "NNS" ], "foothold": [ "NN" ], "spraining": [ "VBG" ], "death-locked": [ "JJ" ], "newly-scrubbed": [ "JJ" ], "encased": [ "VBD" ], "Letitia": [ "NNP" ], "pokeneu": [ "FW" ], "GLASNOST": [ "NNP", "FW" ], "wreaked": [ "VBD", "VBN" ], "conservatively": [ "RB" ], "Engles": [ "NNP" ], "Engler": [ "NNP" ], "Weldwood": [ "NNP", "JJ" ], "good-night": [ "JJ" ], "Northeast": [ "NNP", "JJ", "NN" ], "Querecho": [ "NNP" ], "foaming": [ "NN", "VBG" ], "A.M": [ "RB", "NNP" ], "Machine-tool": [ "JJ" ], "octagonal": [ "JJ" ], "middle-market": [ "JJ" ], "Turnock": [ "NNP" ], "blindness": [ "NN" ], "Incredibly": [ "RB" ], "geography": [ "NN" ], "Liter": [ "NN" ], "deep-pocket": [ "JJ" ], "productivity": [ "NN" ], "prepositional": [ "JJ" ], "Shakya": [ "NNP" ], "texture": [ "NN" ], "DNX": [ "NNP" ], "Mahzeer": [ "NNP" ], "Tassel": [ "NNP" ], "sufficent": [ "JJ" ], "ENTEL": [ "NNP" ], "Ahmad": [ "NNP" ], "immodesty": [ "NN" ], "back-to-school": [ "JJ" ], "SCHOOL": [ "NN" ], "Cudmore": [ "NNP" ], "breeches": [ "NNS" ], "capital-boosting": [ "JJ" ], "red-frocked": [ "JJ" ], "Florentine": [ "NNP", "JJ" ], "sonar": [ "NN" ], "bid-wanted": [ "JJ" ], "Bellwood": [ "NNP" ], "husband": [ "NN" ], "concert": [ "NN" ], "Estimates": [ "NNS" ], "Knutz": [ "NNP" ], "Inaugural": [ "NNP", "JJ", "NN" ], "Supercomputers": [ "NNPS" ], "Knute": [ "NNP" ], "Location": [ "NNP", "NN" ], "pretext": [ "NN" ], "Markowitz": [ "NNP" ], "nonstandard": [ "JJ" ], "concern": [ "NN", "VBP", "VB" ], "Bolsheviks": [ "NNPS", "NNP", "NNS" ], "Reactionary": [ "JJ", "NNP", "NN" ], "Johnson-Merck": [ "NNP" ], "seekers": [ "NNS" ], "justifies": [ "VBZ" ], "justified": [ "VBN", "VBD", "JJ", "VBN|JJ" ], "anti-Colmer": [ "JJ" ], "thirtieth": [ "JJ" ], "S.p": [ "NNP" ], "connoisseurs": [ "NNS" ], "Stenton": [ "NNP" ], "micro-electronic": [ "JJ" ], "BERNARD": [ "NNP" ], "indefiniteness": [ "NN" ], "free-standing": [ "JJ" ], "article": [ "NN" ], "fawn-colored": [ "JJ" ], "attaches": [ "VBZ" ], "talented": [ "JJ" ], "drug-fighting": [ "JJ" ], "ballpark": [ "NN" ], "Wholesalers": [ "NNS" ], "eight-inch": [ "JJ" ], "Wassily": [ "NNP" ], "Interair": [ "NNP" ], "fresh-faced": [ "JJ" ], "autions": [ "NNS" ], "comet": [ "NN" ], "AIDS-drug": [ "JJ" ], "comes": [ "VBZ", "NNS" ], "comer": [ "NN" ], "inkblots": [ "NNS" ], "Torpetius": [ "NNP" ], "occluded": [ "VBN" ], "double-A-minus": [ "JJ", "NN", "NNP" ], "Isgur": [ "NNP" ], "COB": [ "NNP" ], "repackaging": [ "VBG" ], "COM": [ "NNP" ], "Leader": [ "NNP" ], "Vencor": [ "NNP" ], "Mutuelles": [ "NNP" ], "punishes": [ "VBZ" ], "dyslexia": [ "NN" ], "agreed-to": [ "JJ" ], "wall-to-wall": [ "JJ" ], "punished": [ "VBN" ], "Known": [ "VBN" ], "diclosed": [ "VBN" ], "import-screening": [ "NN" ], "reprice": [ "VB" ], "Claiborne": [ "NNP" ], "hell-fire": [ "NN" ], "Leval": [ "NNP" ], "stems": [ "VBZ", "NNS" ], "scrupulously": [ "RB" ], "KTXL": [ "NNP" ], "sedition": [ "NN" ], "ghost-busting": [ "NN" ], "TELV": [ "NNP" ], "two-system": [ "JJ" ], "expropriated": [ "JJ" ], "Afif": [ "NNP" ], "unbelievably": [ "RB" ], "Faulder": [ "NNP" ], "editorial": [ "NN", "JJ" ], "R.N.": [ "NNP" ], "Cable-system": [ "NN" ], "sorghum": [ "NN" ], "U.S.based": [ "JJ" ], "exercisable": [ "JJ" ], "CO.": [ "NNP" ], "Shahrabani": [ "NNP" ], "H.G.": [ "NNP" ], "soil": [ "NN", "VB" ], "Fenn": [ "NNP" ], "UNFLUORIDATED": [ "JJ" ], "Charge": [ "NNP", "NN", "VB" ], "specialist-credit": [ "JJ" ], "hens": [ "NNS" ], "indebtedness": [ "NN" ], "Mingus": [ "NNP" ], "toll-road": [ "NN" ], "court-ordered": [ "JJ" ], "Chart": [ "NN", "NNP" ], "Charm": [ "NNP" ], "coworkers": [ "NNS" ], "Wildhack": [ "NNP" ], "Nassau": [ "NNP" ], "moth-eaten": [ "VBN" ], "document": [ "NN", "VB", "VBP" ], "contouring": [ "VBG" ], "Carlta": [ "NNP" ], "edifying": [ "JJ" ], "Mid-Continent": [ "NNP" ], "Lorenz": [ "NNP" ], "fruit": [ "NN" ], "Harvie": [ "NNP" ], "trawler": [ "NN" ], "Reaganites": [ "NNPS" ], "Longfellow": [ "NNP" ], "mentally": [ "RB", "NN", "JJ" ], "Gadhafi": [ "NNP" ], "traps": [ "NNS", "VBZ" ], "over-hand": [ "JJ" ], "locality": [ "NN" ], "Campus": [ "NNP", "NN" ], "Hillstrom": [ "NNP" ], "toadies": [ "NNS" ], "PROMISE": [ "NN" ], "underachiever": [ "NN" ], "Nilsen": [ "NNP" ], "Playhouse": [ "NNP" ], "Bluthenzweig": [ "NNP" ], "A330-300s": [ "NNS" ], "Creditor": [ "NN" ], "Izvestia": [ "NNP" ], "PARK": [ "NN", "NNP" ], "SEVEN-UP": [ "NNP" ], "Ameritas": [ "NNP" ], "EPO": [ "NNP" ], "civilized": [ "JJ", "VBN" ], "PARS": [ "NNP" ], "storming": [ "VBG" ], "Tractebel": [ "NNP" ], "speed": [ "NN", "VB" ], "EPC": [ "NNP" ], "EPA": [ "NNP" ], "Sterling": [ "NNP", "NN" ], "angiotensin": [ "NN" ], "desktop": [ "NN", "JJ" ], "Toshiyuki": [ "NNP" ], "gloating": [ "VBG" ], "Othon": [ "NNP" ], "mournful": [ "JJ" ], "momentum": [ "NN" ], "hover": [ "VB", "VBP" ], "frown": [ "VBP" ], "specimen": [ "NN" ], "wheelbases": [ "NNS" ], "Eclipse": [ "NNP", "NN" ], "absorptive": [ "JJ" ], "usefully": [ "RB" ], "MV40000": [ "NN" ], "Celtics": [ "NNPS", "NNP" ], "pre-Freudian": [ "JJ" ], "Hez": [ "NNP", "NN" ], "lads": [ "NNS" ], "execution": [ "NN" ], "lady": [ "NN" ], "hovel": [ "NN" ], "Shop": [ "NNP", "NN", "VB" ], "QuesTech": [ "NNP" ], "Shot": [ "VBN" ], "burdock": [ "NN" ], "pounds": [ "NNS", "VBZ" ], "postcard": [ "NN" ], "slower-than-anticipated": [ "JJ" ], "Squatting": [ "VBG", "NNP" ], "Gates-Warren": [ "NNP" ], "Shoe": [ "NNP" ], "white-washed": [ "JJ" ], "dirtier": [ "JJR" ], "Suntrust": [ "NNP" ], "Nobrega": [ "NNP", "NN" ], "Before": [ "IN", "NNP", "RB" ], "meringues": [ "NNS" ], "homicides": [ "NNS" ], "densest": [ "JJS" ], "Wholesome": [ "JJ" ], "Steinbecks": [ "NNPS" ], "wastrel": [ "NN" ], "Elavil": [ "NNP" ], "auto-repair": [ "JJ" ], "strangulation": [ "NN" ], "perverse": [ "JJ" ], "Zeme": [ "NNP" ], "white-majority": [ "JJ" ], "junk-mail": [ "NN", "JJ" ], "deficit": [ "NN" ], "Ai": [ "VBP", "NNP", "VBZ" ], "Interface": [ "NNP" ], "Ainus": [ "NNPS" ], "necessitating": [ "VBG" ], "IPOs": [ "NNPS", "NNP", "NNS" ], "Wooded": [ "JJ" ], "post-surgery": [ "JJ" ], "ovulation": [ "NN" ], "Wooden": [ "JJ" ], "tuition": [ "NN" ], "Tinseltown": [ "NNP" ], "meets": [ "VBZ", "NNS" ], "cottonmouth": [ "NN" ], "mini-Prohibition": [ "NNP" ], "containerboard": [ "NN" ], "underselling": [ "VBG" ], "interrogators": [ "NNS" ], "aeon": [ "NN" ], "reexamine": [ "VB" ], "placard": [ "NN" ], "pastness": [ "NN" ], "S.A.": [ "NNP" ], "Bookshop": [ "NNP" ], "hiatus": [ "NN" ], "chop": [ "VB", "NN" ], "Solutions": [ "NNPS", "NNS" ], "over-corrected": [ "VBD" ], "chow": [ "NN" ], "tweety-bird": [ "JJ" ], "deranged": [ "JJ", "VBN" ], "folklike": [ "JJ" ], "researching": [ "VBG" ], "protests": [ "NNS", "VBZ" ], "alveolus": [ "NN" ], "tritium": [ "NN" ], "Schmidlin": [ "NNP" ], "fruitlessly": [ "RB" ], "reipublicae": [ "FW" ], "bathtubs": [ "NNS" ], "renovate": [ "VB" ], "electrosurgical": [ "JJ" ], "shipbuilding": [ "NN" ], "operator": [ "NN" ], "tilted": [ "VBD", "VBN", "JJ" ], "Meeting": [ "VBG", "NNP", "NN" ], "Ulrich": [ "NNP" ], "actuarially": [ "RB" ], "Moon-faced": [ "JJ" ], "Lyceum": [ "NNP" ], "Wachovia": [ "NNP" ], "Hellinger": [ "NNP" ], "cold-blooded": [ "JJ" ], "A.I.R.": [ "NNP" ], "four-mile": [ "JJ" ], "Fending": [ "VBG" ], "Olathe": [ "NNP" ], "Prestige": [ "NN", "NNP" ], "immaculate": [ "JJ" ], "overpaid": [ "VBN", "VBD", "JJ" ], "side-rack": [ "NN" ], "Simak": [ "NNP" ], "immemorial": [ "JJ" ], "curiously": [ "RB" ], "McKnight": [ "NNP" ], "Simai": [ "NNP" ], "cottage": [ "NN" ], "caryatides": [ "NNS" ], "bad-news": [ "JJ", "NN" ], "corduroy": [ "NN" ], "hire": [ "VB", "VBP", "NN" ], "Theorists": [ "NNS" ], "proof-of-purchases": [ "NNS" ], "circulation": [ "NN" ], "art-filled": [ "JJ" ], "bucket": [ "NN" ], "dabbling": [ "VBG" ], "bucked": [ "VBD", "VBN" ], "popularize": [ "VB" ], "Moise": [ "NNP" ], "momentarily": [ "RB" ], "describe": [ "VB", "VBP" ], "moved": [ "VBD", "VBN" ], "aftershocks": [ "NNS" ], "bawled": [ "VBD" ], "precrash": [ "JJ" ], "Lennie": [ "NNP" ], "L.J.": [ "NNP" ], "Citic": [ "NNP", "JJ" ], "mover": [ "NN" ], "moves": [ "NNS", "VBZ" ], "nerd": [ "NN" ], "judicially": [ "RB" ], "Jake": [ "NNP", "NN" ], "completeness": [ "NN" ], "antenna": [ "NN" ], "administered": [ "VBN", "VBD" ], "foothills": [ "NNS" ], "Heinbockel": [ "NNP" ], "intercontinental": [ "JJ" ], "Fascists": [ "NNPS" ], "evenings": [ "NNS" ], "relegating": [ "VBG" ], "houseboat": [ "NN" ], "S*/NNP&L": [ "NN" ], "polar": [ "JJ" ], "Dogberry": [ "NNP" ], "punditry": [ "NN" ], "mudguard": [ "NN" ], "overreact": [ "VB", "VBP" ], "Excitement": [ "NN" ], "overreach": [ "VB" ], "Estates": [ "NNP" ], "coverage": [ "NN" ], "torches": [ "NNS" ], "laudatory": [ "JJ" ], "S*/NNP&P": [ "NN" ], "resealed": [ "VBN" ], "doubter": [ "NN" ], "connotations": [ "NNS" ], "turf-hungry": [ "JJ" ], "Untouchables": [ "NNPS" ], "dedifferentiated": [ "JJ" ], "Spalsbury": [ "NNP" ], "Exchangeable": [ "NNP" ], "Investment-grade": [ "JJ" ], "doubted": [ "VBD", "VBN" ], "stringy": [ "JJ" ], "Academically": [ "RB" ], "strings": [ "NNS", "VBZ" ], "Pepperell": [ "NNP" ], "Internationalist": [ "NNP" ], "Fetzer": [ "NNP" ], "Frankel": [ "NNP" ], "Exxon-owned": [ "JJ" ], "Domeier": [ "NNP" ], "Wayland": [ "NNP" ], "Capri": [ "NNP" ], "inflating": [ "VBG" ], "Moses": [ "NNP", "NNS" ], "batches": [ "NNS" ], "referring": [ "VBG" ], "headsman": [ "NN" ], "trudging": [ "VBG" ], "Hodosh": [ "NNP" ], "substantively": [ "RB" ], "dinnertime": [ "NN" ], "solicit": [ "VB", "VBP" ], "high-fiber": [ "JJ" ], "clerics": [ "NNS" ], "nodes": [ "NNS" ], "subtleties": [ "NNS" ], "Aysshom": [ "NNP" ], "clairaudiently": [ "RB" ], "clubbed": [ "JJ", "VBD" ], "robes": [ "NNS" ], "parry": [ "VB" ], "Hypnosis": [ "NN" ], "matriculated": [ "VBN", "VBD" ], "enciphered": [ "VBN" ], "vasorum": [ "NN" ], "robed": [ "VBN" ], "Situs": [ "NN" ], "Enzo": [ "NNP" ], "retrial": [ "NN" ], "organizationally": [ "RB" ], "effluvium": [ "NN" ], "first-eight": [ "JJ" ], "Kline": [ "NNP" ], "mild": [ "JJ" ], "Knead": [ "VB" ], "Breakfast": [ "NN", "NNP" ], "Esteban": [ "NNP" ], "Seidman": [ "NNP", "NN" ], "Hobson": [ "NNP" ], "Nimbus-7": [ "NNP" ], "opting": [ "VBG" ], "nearing": [ "VBG" ], "Inasmuch": [ "RB" ], "Cerise": [ "NNP" ], "family-centered": [ "JJ" ], "AVON": [ "NNP" ], "conscience": [ "NN" ], "Latin": [ "NNP", "JJ", "NNPS" ], "Ayala": [ "NNP" ], "Tolley": [ "NNP" ], "Dalbar": [ "NNP" ], "fractional": [ "JJ" ], "unicycle": [ "NN" ], "blundered": [ "VBD", "VBN" ], "Alltel": [ "NNP" ], "moisturizers": [ "NNS" ], "flocculated": [ "VBN" ], "strong": [ "JJ", "RB" ], "Italian-style": [ "JJ" ], "addictions": [ "NNS" ], "ultra": [ "JJ" ], "colored": [ "JJ", "VBN" ], "twice-a-day": [ "JJ" ], "Tommie": [ "NNP" ], "Itself": [ "PRP" ], "victimized": [ "VBN", "JJ" ], "re-creation": [ "NN" ], "unharmonious": [ "JJ" ], "Bohemians": [ "NNPS" ], "toughness": [ "NN" ], "Parish": [ "NNP" ], "impiety": [ "NN" ], "Warfield": [ "NNP" ], "hogs": [ "NNS" ], "chunky": [ "JJ" ], "merger-law": [ "NN" ], "pro-neutralist": [ "JJ" ], "chunks": [ "NNS" ], "Schnabelian": [ "JJ" ], "spawned": [ "VBD", "VBN" ], "minifying": [ "VBG" ], "Benchley": [ "NNP" ], "Brooding": [ "NNP", "VBG" ], "Automobiles": [ "NNS", "NNPS" ], "userfriendly": [ "JJ" ], "Standard-Times": [ "NNP" ], "polyps": [ "NNS" ], "automated-pit-trading": [ "NN" ], "abridged": [ "VBN" ], "shvartze": [ "NN" ], "weapons-acquisition": [ "NN" ], "bio-medical": [ "JJ" ], "site": [ "NN" ], "Kochaneks": [ "NNPS" ], "abridges": [ "VBZ" ], "rangelands": [ "NNS" ], "broke": [ "VBD", "VBN", "JJ", "RB", "VB" ], "browned": [ "VBN" ], "underwrites": [ "VBZ" ], "hurry": [ "NN", "VBP", "VB" ], "Literary": [ "NNP", "JJ" ], "Cautions": [ "NNPS" ], "stone-gray": [ "JJ" ], "addle-brained": [ "JJ" ], "Freudian": [ "JJ", "NNP" ], "Chatterji": [ "NNP" ], "subtends": [ "VBZ" ], "Easterbrook": [ "NNP" ], "compound-engine": [ "JJ" ], "thumped": [ "VBD" ], "spontaneous": [ "JJ" ], "Inflows": [ "NNS" ], "wine-dark": [ "JJ" ], "high-density": [ "JJ" ], "pushes": [ "VBZ", "NNS" ], "courtesies": [ "NNS" ], "Galbani": [ "NNP" ], "pushed": [ "VBD", "VBN" ], "revelry": [ "NN" ], "best-seller": [ "NN" ], "lacks": [ "VBZ" ], "Paos": [ "NNPS" ], "arteriolar-pulmonary": [ "JJ" ], "chops": [ "NNS" ], "warhead": [ "NN" ], "ratified": [ "VBD", "VBN" ], "foreseen": [ "VBN" ], "foresees": [ "VBZ" ], "Foreign-registered": [ "JJ" ], "biopharmaceutical": [ "JJ" ], "Kouji": [ "NNP" ], "ratifies": [ "VBZ" ], "centimeters": [ "NNS" ], "unearthly": [ "JJ" ], "heavy-electrical-goods": [ "JJ" ], "rapists": [ "NNS" ], "ft": [ "NN" ], "fy": [ "VBP" ], "Pansies": [ "NNS" ], "Blank": [ "NNP" ], "dwarfed": [ "VBN", "VBD" ], "screenwriters": [ "NNS" ], "Conseco": [ "NNP" ], "biennium": [ "NN" ], "pre-primary": [ "JJ" ], "outdistanced": [ "VBD", "VBN" ], "Syria": [ "NNP" ], "WFAA": [ "NNP" ], "co-authored": [ "VBN", "VBD" ], "Stressed-out": [ "JJ" ], "Kopstein": [ "NNP" ], "morphine": [ "NN" ], "PUBLISHING": [ "NN", "NNP" ], "frictions": [ "NNS" ], "laminate": [ "NN", "JJ" ], "documentation": [ "NN" ], "Deer": [ "NNP", "NN", "NNS" ], "bugs": [ "NNS", "VBZ" ], "lesser-rank": [ "JJR" ], "slacking": [ "VBG" ], "colonels": [ "NNS" ], "Sometime": [ "RB" ], "one-word": [ "JJ" ], "scaring": [ "VBG" ], "Deed": [ "NNP" ], "A.R.A.": [ "NNP" ], "Grisha-class": [ "JJ" ], "Sandwiched": [ "VBN" ], "GHR": [ "NNP" ], "GHS": [ "NNP" ], "rhinos": [ "NNS" ], "indigestion": [ "NN" ], "cyclists": [ "NNS" ], "auburn": [ "JJ" ], "Birkelund": [ "NNP" ], "perceptive": [ "JJ" ], "Sandwiches": [ "NNS" ], "Neb.-based": [ "JJ" ], "staunch": [ "JJ", "VB" ], "atrun": [ "JJ" ], "Arseny": [ "NNP" ], "co-chairmen": [ "NNS" ], "environmentally": [ "RB" ], "fog-free": [ "JJ" ], "FII": [ "NNP" ], "Habsburg": [ "NNP" ], "Bankverein": [ "NNP" ], "Bee-Hunter": [ "NNP" ], "Keep": [ "VB", "NNP" ], "I.W.": [ "NNP" ], "Moods": [ "NNP" ], "pretty-good-rated": [ "JJ" ], "Kreditkasse": [ "NNP" ], "Reichmann": [ "NNP" ], "animism": [ "NN" ], "railbed": [ "NN" ], "Reaction": [ "NN" ], "much-craved": [ "JJ" ], "seminarians": [ "NNS" ], "chartings": [ "NNS" ], "Palmetto": [ "NNP" ], "offensives": [ "NNS" ], "sweeping": [ "VBG", "JJ", "NN" ], "intranasal": [ "JJ" ], "C-12": [ "NN" ], "C-17": [ "NNP", "NN" ], "trailed": [ "VBD", "VBN" ], "Loans": [ "NNS", "NNP" ], "transplanting": [ "VBG" ], "s.r.l.": [ "NNP" ], "capability": [ "NN" ], "Bovenzi": [ "NNP" ], "Hickman": [ "NNP" ], "Gayle": [ "NNP" ], "abortion-rights": [ "NNS", "JJ" ], "trailer": [ "NN" ], "pamper": [ "VB" ], "nein": [ "FW" ], "dichotomy": [ "NN" ], "Falcons": [ "NNS", "NNPS" ], "thirteenth": [ "JJ", "NN" ], "Zelda": [ "NNP" ], "bickering": [ "NN", "VBG" ], "Peaceful": [ "JJ" ], "totalitarianism": [ "NN" ], "taunted": [ "VBD", "VBN" ], "bikers": [ "NNS" ], "expense-paid": [ "JJ" ], "juniors": [ "NNS" ], "blue-chip": [ "JJ", "NNP", "NN" ], "Sinai": [ "NNP" ], "half-way": [ "JJ", "RB" ], "Ledford": [ "NNP" ], "pouty-looking": [ "JJ" ], "trade-processing": [ "NN" ], "ARTICLE": [ "NN" ], "smock": [ "NN" ], "in-plant": [ "JJ" ], "inert": [ "JJ" ], "protruding": [ "VBG" ], "dirt": [ "NN", "JJ" ], "Butowsky": [ "NNP" ], "Grey": [ "NNP" ], "Campground": [ "NNP" ], "base": [ "NN", "VBP", "JJ", "VB" ], "coastline": [ "NN" ], "dire": [ "JJ", "FW" ], "Webern": [ "NNP" ], "bash": [ "NN", "VB" ], "Godot": [ "NNP" ], "liquidities": [ "NNS" ], "uprooted": [ "VBN", "VBD", "JJ" ], "spot-television": [ "JJ" ], "Josephine": [ "NNP" ], "banker-editor": [ "NN" ], "sheiks": [ "NNS" ], "Dixons": [ "NNP" ], "tainted-meat": [ "NN" ], "schemata": [ "NN" ], "Disputado": [ "NNP" ], "scouts": [ "NNS" ], "Disputada": [ "NNP" ], "Faraday": [ "NNP" ], "Lexus": [ "NNP" ], "Bang-Jensen": [ "NNP" ], "Methylene": [ "NN" ], "partnerships": [ "NNS" ], "knots": [ "NNS" ], "Mecca": [ "NNP" ], "Watanabe": [ "NNP" ], "Panther": [ "NNP" ], "quarreled": [ "VBD", "VBN" ], "bread": [ "NN" ], "dabbing": [ "VBG" ], "Imo": [ "NNP" ], "antiquity": [ "NN" ], "elder": [ "JJR", "JJ", "NN", "JJ|JJR" ], "typefaces": [ "NNS" ], "legitimating": [ "VBG" ], "Durable-goods": [ "JJ" ], "ednedayose": [ "NN" ], "odds-on": [ "JJ" ], "Samford": [ "NNP" ], "Orestes": [ "NNP" ], "obedience": [ "NN" ], "airborne": [ "JJ" ], "Steinbeck": [ "NNP" ], "light-reflecting": [ "JJ" ], "Ghez": [ "NNP" ], "Delta": [ "NNP", "JJ", "NN" ], "ladylike": [ "JJ" ], "lawman": [ "NN" ], "storm": [ "NN", "VB", "VBP" ], "bullwhackers": [ "NNS" ], "two-hit": [ "JJ" ], "Vaska": [ "NNP" ], "CULPA": [ "NNP" ], "Oddly": [ "RB" ], "flatters": [ "VBZ" ], "cartridges": [ "NNS" ], "ventricle": [ "NN" ], "Patricelli": [ "NNP" ], "Lancashire": [ "NNP" ], "viaducts": [ "NNS" ], "Feldene": [ "NNP" ], "kindly": [ "RB", "JJ" ], "performers": [ "NNS" ], "carriage-step": [ "NN" ], "Matthies": [ "NNP" ], "impersonal": [ "JJ" ], "McClellan": [ "NNP" ], "haddock": [ "NN" ], "Serafin": [ "NNP" ], "dealer-led": [ "JJ" ], "kindle": [ "VB" ], "Rossini": [ "NNP" ], "Elisa": [ "NNP" ], "newborns": [ "NNS" ], "deciding": [ "VBG", "JJ" ], "Defence": [ "NN" ], "macaw": [ "NN" ], "Fossett": [ "NNP" ], "presentlye": [ "NN" ], "WBZ": [ "NNP" ], "Douglas": [ "NNP" ], "Current": [ "JJ", "NNP" ], "substantial": [ "JJ" ], "post-1997": [ "JJ" ], "Stoecker": [ "NNP" ], "CAPITAL-GAINS": [ "NNP" ], "Wolkind": [ "NNP" ], "Sutra": [ "NN" ], "Fendi": [ "NNP" ], "stranglehold": [ "NN" ], "Sutro": [ "NNP" ], "auctioneer": [ "NN" ], "Vineyards": [ "NNS", "NNPS" ], "CoastAmerica": [ "NNP" ], "pesticide-reform": [ "NN" ], "unique-ingrown-screwedup": [ "JJ" ], "Kennan": [ "NNP" ], "Charcoal": [ "NN" ], "BEAT": [ "NN" ], "quote": [ "VB", "VBP", "NN" ], "Installing": [ "VBG" ], "exempted": [ "VBN", "VBD" ], "BEAM": [ "NNP" ], "under-funded": [ "JJ" ], "eaten": [ "VBN" ], "Guyana": [ "NNP" ], "hallucinatory": [ "JJ" ], "Remic": [ "NNP", "JJ" ], "short-cutting": [ "JJ" ], "mineral-rich": [ "JJ" ], "aberrations": [ "NNS" ], "salary": [ "NN" ], "Muzak": [ "NNP" ], "prettiness": [ "NN" ], "Quizzical": [ "NNP" ], "crudities": [ "NNS" ], "luckily": [ "RB" ], "Wolfgang": [ "NNP" ], "beach-drift": [ "NN" ], "skein": [ "NN" ], "blend": [ "NN", "VBP", "VB" ], "Yavapai": [ "NNP" ], "Fulke": [ "NNP" ], "Bartha": [ "NNP" ], "Norris": [ "NNP" ], "aglimmering": [ "VBG" ], "Thirdly": [ "RB" ], "Squires": [ "NNP" ], "Wyden": [ "NNP" ], "sheepskin": [ "NN" ], "Nalcor": [ "NNP" ], "completion": [ "NN" ], "express-delivery": [ "NN" ], "absoluteness": [ "NN" ], "DEAL": [ "NNP" ], "Shahn": [ "NNP" ], "Sailors": [ "NNS" ], "aflatoxin-related": [ "JJ" ], "Traffic": [ "NNP", "NN" ], "central": [ "JJ", "NN" ], "entrepreneurism": [ "NN" ], "pressure-measurement": [ "NN" ], "C.C.N.Y.": [ "NNP" ], "believeth": [ "VBZ" ], "Scholey": [ "NNP" ], "Revisited": [ "NNP" ], "upstanding": [ "JJ" ], "meanwhile": [ "RB", "NN" ], "famous": [ "JJ", "NNS" ], "Ditmars": [ "NNP" ], "drunkard": [ "NN" ], "during": [ "IN" ], "DEAE": [ "NNP" ], "half-drunk": [ "JJ" ], "wheezes": [ "NNS" ], "PerkinElmer": [ "NNP" ], "left-wing": [ "JJ" ], "Fletch": [ "NNP" ], "faxing": [ "VBG" ], "E&P": [ "NNP" ], "perfume": [ "NN" ], "E&J": [ "NNP" ], "Telford": [ "NNP" ], "Fatso": [ "NN" ], "wheezed": [ "VBD" ], "mis-reading": [ "VBG" ], "once-powerful": [ "JJ" ], "reminisced": [ "VBD", "VBN" ], "expanding-profit": [ "JJ" ], "undergoes": [ "VBZ" ], "Stoops": [ "NNP" ], "nitrocellulose": [ "NN" ], "nostalgically": [ "RB" ], "plough": [ "VB" ], "Verne": [ "NNP" ], "reminisces": [ "VBZ" ], "descriptions": [ "NNS" ], "Taif": [ "NNP" ], "Belletch": [ "NNP" ], "Neither": [ "CC", "DT", "IN", "RB" ], "deploying": [ "VBG" ], "Subroto": [ "NNP" ], "Parc": [ "NNP" ], "plasticity": [ "NN" ], "Park": [ "NNP", "NN", "VB" ], "wop": [ "VB" ], "shipsets": [ "NNS" ], "marine-shipping": [ "JJ" ], "Part": [ "NN", "NNP" ], "McLauchlan": [ "NNP" ], "woe": [ "NN" ], "assistants": [ "NNS" ], "piss": [ "VB" ], "catalogs": [ "NNS", "VBZ" ], "FDA-approved": [ "JJ" ], "notoriously": [ "RB" ], "Despina": [ "NNP" ], "appetites": [ "NNS" ], "precision-materials": [ "NNS" ], "nut-like": [ "JJ" ], "stairways": [ "NNS" ], "poorer": [ "JJR", "RBR" ], "Sanity": [ "NN" ], "readying": [ "VBG" ], "useable": [ "JJ" ], "adores": [ "VBZ" ], "grief-stricken": [ "JJ" ], "Satisfied": [ "VBN" ], "wage-floor": [ "JJ" ], "Genzyme": [ "NNP" ], "adored": [ "VBD", "VBN" ], "anti-inflation": [ "JJ" ], "Huxtable": [ "NNP" ], "buzz": [ "NN", "JJ", "VB" ], "shortcake": [ "NN" ], "Studwell": [ "NNP" ], "unrelenting": [ "JJ" ], "Certainly": [ "RB" ], "Dickman": [ "NNP" ], "Prucker": [ "NNP" ], "motivation": [ "NN" ], "awnings": [ "NNS" ], "Reeboks": [ "NNPS" ], "body-numbing": [ "JJ" ], "fixedrate": [ "JJ", "NN" ], "Sterba": [ "NNP" ], "Melancholy": [ "JJ" ], "victimizes": [ "VBZ" ], "forseeable": [ "JJ" ], "Grannies": [ "NNPS" ], "post-modernism": [ "NN" ], "HNSX": [ "NNP" ], "mockingly": [ "RB" ], "wait": [ "VB", "VBP", "NN" ], "Preamble": [ "NN" ], "travelrestrictions": [ "NNS" ], "partly": [ "RB" ], "Reichmann-controlled": [ "JJ" ], "packs": [ "NNS", "VBZ" ], "narration": [ "NN" ], "higher-level": [ "JJ" ], "Diehl": [ "NNP" ], "low-caliber": [ "NN" ], "doggedly": [ "RB" ], "Jeroboam": [ "NN" ], "Basket": [ "NNP" ], "corporate-finance": [ "JJ", "NN" ], "Pfeiffer": [ "NNP" ], "child-abuse": [ "NN", "JJ" ], "pilgrim": [ "NN" ], "mumbling": [ "VBG" ], "overran": [ "VBD" ], "Dona": [ "NNP" ], "Alacrity": [ "NNP" ], "INDIAN": [ "JJ" ], "Done": [ "VBN" ], "Dong": [ "NNP" ], "Soft-Sell": [ "JJ" ], "transcripts": [ "NNS" ], "most-active": [ "JJ", "JJS" ], "Issues": [ "NNS", "NNP", "NNPS" ], "herein": [ "RB" ], "geologists": [ "NNS" ], "rulers": [ "NNS" ], "race-based": [ "JJ" ], "PennCorp": [ "NNP" ], "Nidal": [ "NNP" ], "Ruiz": [ "NNP" ], "debt-financed": [ "JJ" ], "salons": [ "NNS" ], "clerical": [ "JJ", "NN" ], "anymore": [ "RB" ], "belong": [ "VB", "VBP", "JJ" ], "Alert": [ "NNP" ], "unfenced": [ "JJ" ], "shackle": [ "VB" ], "modification": [ "NN" ], "Silk": [ "NNP" ], "Sill": [ "NNP" ], "Shine": [ "NNP" ], "Philippoff": [ "NNP" ], "Shing": [ "NNP" ], "optic": [ "JJ" ], "dime": [ "NN" ], "anorthic": [ "JJ" ], "Shinn": [ "NNP" ], "Publications": [ "NNPS", "NNP" ], "H.S.": [ "NNP" ], "haunting": [ "JJ", "VBG", "NN" ], "Robinowitz": [ "NNP" ], "Shiny": [ "NNP" ], "Klipstein": [ "NNP" ], "luminescence": [ "NN" ], "mega-crashes": [ "NNS" ], "Mevalotin": [ "NN" ], "jogs": [ "VBZ" ], "underlies": [ "VBZ" ], "chronicles": [ "VBZ", "NNS" ], "chronicler": [ "NN" ], "clears": [ "VBZ" ], "Lousiness": [ "NN" ], "calinda": [ "NN" ], "Fang": [ "NNP" ], "blockhouse": [ "NN" ], "unco-operative": [ "JJ" ], "Salazar": [ "NNP" ], "incongruity": [ "NN" ], "pseudo-questions": [ "NNS" ], "Aloha": [ "NNP" ], "quarters": [ "NNS" ], "Fans": [ "NNS" ], "Pamela": [ "NNP" ], "pyrotechnic": [ "JJ" ], "useful": [ "JJ" ], "Lindamood": [ "NNP" ], "lieutenant-governor": [ "NN" ], "panaceas": [ "NNS" ], "Harel": [ "NNP" ], "throaty": [ "JJ" ], "Rorschach": [ "NNP" ], "yttrium-containing": [ "JJ" ], "canisters": [ "NNS" ], "throats": [ "NNS" ], "Brown-Forman": [ "NNP" ], "daylights": [ "NNS" ], "Koppers": [ "NNP" ], "transformation": [ "NN" ], "S.O.B": [ "NNP" ], "COLLAPSE": [ "NN" ], "Handlers": [ "NNP", "NNS" ], "evaluate": [ "VB", "VBP" ], "Beatlemania": [ "NN", "NNP" ], "tiring": [ "VBG" ], "enthusiastically": [ "RB" ], "Billy": [ "NNP" ], "Hittner": [ "NNP" ], "Eppner": [ "NNP" ], "co-chaired": [ "VBN", "JJ" ], "Ruoff": [ "NNP" ], "tinkered": [ "VBN" ], "moire": [ "JJ" ], "submission": [ "NN" ], "Shikotan": [ "NNP" ], "signal": [ "NN", "VB", "VBP" ], "resorted": [ "VBN" ], "flexibility": [ "NN" ], "actives": [ "NNS" ], "strife": [ "NN" ], "linen-covered": [ "JJ" ], "donna": [ "NN" ], "minced": [ "VBN" ], "communications-technology": [ "NN" ], "Schiff": [ "NNP" ], "wombs": [ "NNS" ], "major-medical": [ "JJ" ], "lathe": [ "NN" ], "outnumber": [ "VBP" ], "showgrounds": [ "NNS" ], "ultra-thin": [ "JJ" ], "Martineau": [ "NNP" ], "trendy": [ "JJ" ], "transversely": [ "RB" ], "Greenback": [ "NNP" ], "beneficially": [ "RB" ], "exec": [ "NN" ], "dialyzed": [ "VBN", "VBD" ], "pounding": [ "VBG", "NN" ], "NWA": [ "NNP" ], "Disposition": [ "NNP" ], "pushers": [ "NNS" ], "Kredietbank": [ "NNP" ], "hypocritical": [ "JJ" ], "pfennigs": [ "NNS" ], "Outgoing": [ "JJ" ], "rebates": [ "NNS" ], "Aetna": [ "NNP", "NN" ], "dilating": [ "VBG" ], "Fudosan": [ "NNP" ], "rebated": [ "VBN" ], "pitchers": [ "NNS" ], "abroad": [ "RB" ], "Rhodesia": [ "NNP" ], "faith": [ "NN" ], "Impediments": [ "NNP" ], "PASOK": [ "NNP" ], "grease-removal": [ "JJ" ], "beefsteak": [ "NN" ], "portico": [ "NN" ], "Scudder": [ "NNP" ], "Catherine": [ "NNP" ], "trucking": [ "NN", "VBG" ], "Chateauvallon": [ "NNP" ], "allotment": [ "NN" ], "Quake": [ "NN" ], "tax-avoidance": [ "JJ", "NN" ], "Domitian": [ "NNP" ], "Leale": [ "NNP" ], "Rolnick": [ "NNP" ], "seeing": [ "VBG" ], "baboons": [ "NNS" ], "shipshape": [ "JJ" ], "quasisports": [ "NNS" ], "two-seaters": [ "JJ", "NNS" ], "caretaker": [ "NN" ], "birches": [ "NNS" ], "ensue": [ "VB", "VBP" ], "Their": [ "PRP$", "NNP" ], "Boursault": [ "NNP" ], "conscientious": [ "JJ" ], "Quebecor": [ "NNP" ], "Brady-type": [ "JJ" ], "Vitale": [ "NNP" ], "caressed": [ "VBD" ], "Composite": [ "NNP", "JJ", "NN" ], "small-company": [ "NN", "JJ" ], "besieged": [ "VBN", "JJ" ], "gruesomeness": [ "NN" ], "Portman": [ "NNP" ], "consultation": [ "NN" ], "caresses": [ "NNS", "VBZ" ], "Vitaly": [ "NNP" ], "Toit": [ "NNP" ], "confessing": [ "VBG" ], "disaster-recovery": [ "JJ", "NN" ], "hummocks": [ "NNS" ], "Severs": [ "NNP" ], "trade-allocating": [ "NN" ], "theatergoer": [ "NN" ], "pedestals": [ "NNS" ], "Attorneys-at-Large": [ "NNP" ], "vendor": [ "NN" ], "Severe": [ "JJ", "NNP" ], "gas-tax-increasing": [ "JJ" ], "earlier-expressed": [ "JJ" ], "Severa": [ "NNP" ], "Toil": [ "NN" ], "college-bound": [ "JJ" ], "ceremonies": [ "NNS" ], "Rufenacht": [ "NNP" ], "clubhouses": [ "NNS" ], "Casson": [ "NNP" ], "noradrenalin": [ "NN" ], "circuits": [ "NNS", "VBZ" ], "chromed": [ "JJ" ], "Svenska": [ "NNP" ], "Brit": [ "NNP" ], "fringe-benefit": [ "NN" ], "heterogeneous": [ "JJ" ], "d-Percent": [ "LS|NN" ], "Wage": [ "NN" ], "Wagg": [ "NNP" ], "Stop-limit": [ "JJ" ], "adults": [ "NNS" ], "Stormy": [ "NNP" ], "do-or-die": [ "JJ" ], "Tate": [ "NNP" ], "willed": [ "VBD", "VBN" ], "Tata": [ "NNP" ], "precept": [ "NN" ], "languishing": [ "VBG", "JJ" ], "sharing": [ "VBG", "NN" ], "seethe": [ "VB", "VBP" ], "oxidized": [ "JJ" ], "Above": [ "IN", "JJ", "RB", "NNP" ], "Minpeco-Manufacturers": [ "NNPS" ], "cotton": [ "NN" ], "four-lane": [ "JJ" ], "analyticity": [ "NN" ], "Calculating": [ "VBG" ], "Complicity": [ "NN" ], "condescension": [ "NN" ], "politicians": [ "NNS" ], "dept.": [ "NN" ], "enquired": [ "VBD" ], "tits": [ "NNS" ], "forge": [ "VB", "VBP", "NN" ], "Hammacher": [ "NNP" ], "Gerry": [ "NNP" ], "bravado": [ "NN" ], "Panetta": [ "NNP" ], "co-sponsors": [ "NNS" ], "revamped": [ "VBN", "VBD", "JJ" ], "Lovenberg": [ "NNP" ], "Powicke": [ "NNP" ], "Cheval": [ "NNP" ], "clenched": [ "JJ", "VBD", "VBN" ], "heath": [ "NN" ], "perishables": [ "NNS" ], "depth": [ "NN" ], "heats": [ "VBZ" ], "Geiger": [ "NNP", "NN" ], "clenches": [ "VBZ" ], "Unger": [ "NNP" ], "Watkins": [ "NNP" ], "multipactor": [ "NN" ], "Lars": [ "NNP" ], "mores": [ "NNS" ], "Wall-Tex": [ "NN" ], "Zeffirelli": [ "NNP" ], "Lara": [ "NNP" ], "price-slashing": [ "JJ", "NN" ], "elution": [ "NN" ], "Swadesh": [ "NNP" ], "corporate-law": [ "NN" ], "Lark": [ "NNP" ], "mercer": [ "NN" ], "instrumentally": [ "RB" ], "Combat": [ "NNP" ], "Alcan": [ "NNP" ], "aria": [ "NN" ], "arid": [ "JJ" ], "ripened": [ "VBD", "VBN" ], "Hallador": [ "NNP" ], "relocated": [ "VBD", "VBN" ], "highbrow-furrowing": [ "NN" ], "fly": [ "VB", "NN", "VBP" ], "P&C": [ "NNP" ], "products...": [ ":" ], "P&G": [ "NNP", "NNPS", "NN", "VB" ], "portfolios": [ "NNS" ], "Two-thirds": [ "NNS" ], "prudence": [ "NN" ], "child-cloud": [ "NN" ], "Muong": [ "NNP" ], "squeaked": [ "VBD" ], "P&S": [ "NNP" ], "Chica": [ "NNP" ], "enslaved": [ "VBN" ], "frigates": [ "NNS" ], "discouragement": [ "NN" ], "polymeric": [ "JJ" ], "Chico": [ "NNP" ], "multipleuser": [ "JJ" ], "asparagus": [ "NN" ], "insuperable": [ "JJ" ], "Bodmer": [ "NNP" ], "non-equity": [ "JJ" ], "flickered": [ "VBD", "VBN" ], "unexciting": [ "JJ" ], "insuperably": [ "RB" ], "deleting": [ "VBG" ], "dilute": [ "VB", "JJ" ], "manliness": [ "NN" ], "howls": [ "NNS", "VBZ" ], "Teaching": [ "NN", "NNP", "VBG" ], "vilified": [ "VBN" ], "edifice": [ "NN" ], "valet": [ "NN" ], "experiment": [ "NN", "VBP", "VB" ], "ARRIVED": [ "VBD" ], "selecting": [ "VBG", "NN" ], "self-defeating": [ "JJ" ], ";": [ ";" ], "Winfrey": [ "NNP" ], "Swift": [ "NNP" ], "saps": [ "VBZ" ], "GOLDEN": [ "NNP" ], "melancholy": [ "NN", "JJ" ], "focuses": [ "VBZ", "NNS" ], "Cunningham": [ "NNP" ], "Kerrville": [ "NNP" ], "Greer": [ "NNP" ], "Appearance": [ "NN" ], "Debating": [ "NNP" ], "Sagos": [ "NNS" ], "Greek": [ "NNP", "JJ" ], "Green": [ "NNP", "JJ", "NN" ], "Volumes": [ "NNS", "NNP" ], "artificial-heart": [ "JJ" ], "Greed": [ "NN", "NNP" ], "spellers": [ "NNS" ], "noisily": [ "RB" ], "bites": [ "NNS", "VBZ" ], "coddling": [ "NN" ], "Jean-Louis": [ "NNP" ], "antecedents": [ "NNS" ], "Emory": [ "NNP" ], "Hindu": [ "NNP", "NN" ], "juries": [ "NNS" ], "pariahs": [ "NNS" ], "Kirk": [ "NNP" ], "highly-leveraged": [ "JJ" ], "Utopian": [ "NNP", "JJ" ], "filde": [ "VBN" ], "Kira": [ "NNP" ], "N-no": [ "UH" ], "Harmless": [ "JJ" ], "role-experimentation": [ "NN" ], "Explaining": [ "VBG" ], "REMEMBER": [ "VB" ], "R-Warren": [ "NNP" ], "vs.": [ "IN", "CC", "FW", "JJ", "NN" ], "Taxable": [ "NNP" ], "reregulate": [ "VB" ], "Ruberg": [ "NNP" ], "simpliciter": [ "FW" ], "reflects": [ "VBZ" ], "stirups": [ "NNS" ], "optimizing": [ "VBG" ], "McWhinney": [ "NNP" ], "imprisons": [ "VBZ" ], "Denmark": [ "NNP", "NN" ], "gardened": [ "VBD" ], "darting": [ "VBG" ], "Calhoun": [ "NNP" ], "Skylark": [ "NNP" ], "Claire": [ "NNP" ], "S-K-I": [ "NNP" ], "six-inch": [ "JJ" ], "LARGEST": [ "JJS" ], "inattentive": [ "JJ" ], "Leisure": [ "NNP", "NN" ], "arched": [ "JJ", "VBD", "VBN" ], "Khrushchev": [ "NNP" ], "mostaccioli": [ "NN" ], "videodiscs": [ "NNS" ], "UCLA": [ "NNP" ], "Esplanade": [ "NNP" ], "Choreographed": [ "VBN" ], "donut": [ "NN" ], "arches": [ "NNS", "VBZ" ], "infinitesimal": [ "JJ" ], "Baltimore-based": [ "JJ" ], "Defenders": [ "NNS" ], "TRUCK": [ "NNP" ], "intitiative": [ "NN" ], "Grunberg": [ "NNP" ], "Heidegger": [ "NNP" ], "Quelle": [ "NNP" ], "escapes": [ "NNS", "VBZ" ], "escaped": [ "VBD", "VBN" ], "Damon": [ "NNP" ], "color-printing": [ "JJ" ], "Homemade": [ "NNP", "VBN" ], "suds": [ "NNS", "NN" ], "triangle": [ "NN" ], "darkening": [ "VBG" ], "cots": [ "NNS" ], "boasting": [ "VBG" ], "jails": [ "NNS" ], "mortaring": [ "NN" ], "NHL": [ "NNP" ], "semitropical": [ "JJ" ], "NHI": [ "NNP" ], "Camino": [ "NNP" ], "neurotic": [ "JJ" ], "solidifying": [ "VBG" ], "located": [ "VBN", "JJ", "VBD" ], "Gord": [ "NNP" ], "Gore": [ "NNP" ], "Urich": [ "NNP" ], "elliptical": [ "JJ" ], "Coriolanus": [ "NNP" ], "deplore": [ "VB" ], "Lobby": [ "NNP" ], "Philips": [ "NNP", "NNS" ], "cobwebs": [ "NNS" ], "furiously": [ "RB" ], "billows": [ "NNS" ], "colonnaded": [ "JJ" ], "lift-ticket": [ "JJ", "NN" ], "chiefs": [ "NNS" ], "Blackberry": [ "NNP" ], "Lifetime": [ "NNP", "NN" ], "spelling": [ "NN", "VBG" ], "hasher": [ "NN", "JJR" ], "flagrantly": [ "RB" ], "flashier": [ "JJR" ], "Eigen": [ "NNP" ], "SAME": [ "JJ" ], "corral": [ "NN", "VB" ], "Accudyne": [ "NNP" ], "crematoriums": [ "NNS" ], "healthcare": [ "NN" ], "LONG-TERM": [ "JJ" ], "fund-research": [ "JJ", "NN" ], "Keidanren": [ "NNP" ], "bathing": [ "NN", "VBG" ], "Addington": [ "NNP" ], "Cycling": [ "NNP" ], "Brandeis": [ "NNP" ], "Gonzales": [ "NNP" ], "Carnevale": [ "NNP" ], "Smith": [ "NNP" ], "higher-paying": [ "JJ" ], "less-developed": [ "JJ", "JJR" ], "bumblebee": [ "NN" ], "brittle": [ "JJ" ], "subversive": [ "JJ" ], "Paperwork": [ "NNP" ], "e-In": [ "IN" ], "consumer-goods": [ "NNS" ], "sinecure": [ "NN" ], "Athanassiades": [ "NNP" ], "youngster": [ "NN" ], "Anti-Communist": [ "JJ", "NNP" ], "Luis": [ "NNP" ], "Eyke": [ "NNP" ], "sardonically": [ "RB" ], "Schulman": [ "NNP" ], "communicator": [ "NN" ], "Aaa-ee": [ "UH" ], "administration-Fed": [ "JJ" ], "Margolis": [ "NNP" ], "Miami": [ "NNP" ], "Pyo": [ "NNP" ], "Brother": [ "NNP" ], "Confair": [ "NNP" ], "modernistic": [ "JJ" ], "watch-spring": [ "JJ" ], "parent-teacher": [ "JJ" ], "seat-belt": [ "NN" ], "ex-hurler": [ "NN" ], "adjournment": [ "NN" ], "Celsius": [ "NNP" ], "mode": [ "NN", "FW" ], "commonwealth": [ "NN" ], "engraves": [ "VBZ" ], "CODE,DTF": [ "NN" ], "Administrators": [ "NNPS", "NNP" ], "paid-for": [ "IN" ], "prorated": [ "VBN" ], "inverted": [ "JJ", "VBN" ], "climatic": [ "JJ" ], "turnkey": [ "NN" ], "Spatial": [ "JJ" ], "Avenues": [ "NNP" ], "ticket-writing": [ "NN" ], "secretly": [ "RB" ], "activism": [ "NN" ], "criminally": [ "RB" ], "protoplasm": [ "NN" ], "Fence-line": [ "JJ" ], "Bebear": [ "NNP" ], "pre-Sterling": [ "JJ" ], "Proust": [ "NNP" ], "wick": [ "NN" ], "underpinned": [ "VBN", "VBD" ], "Beginning": [ "VBG", "NNP", "NN" ], "Rosalyn": [ "NNP" ], "influent": [ "JJ", "NN" ], "achievements": [ "NNS" ], "reacts": [ "VBZ" ], "stepped-up": [ "JJ" ], "diagonal": [ "JJ" ], "Substantive": [ "NNP" ], "Not-Held": [ "NNP" ], "ancestry": [ "NN" ], "Sweat": [ "NN" ], "advisor": [ "NN" ], "Agrobacterium": [ "NN" ], "drowning": [ "VBG" ], "precaution": [ "NN" ], "route": [ "NN", "VBP", "FW", "IN", "RB", "VB" ], "diminished": [ "VBN", "JJ", "VBD" ], "relentless": [ "JJ" ], "keen": [ "JJ", "NN", "VB" ], "keel": [ "NN", "VB" ], "Aspencade": [ "NNP" ], "diminishes": [ "VBZ" ], "Lamb": [ "NNP", "NN" ], "Reckitt": [ "NNP" ], "incarnate": [ "JJ", "VB" ], "Lama": [ "NNP" ], "succeeds": [ "VBZ" ], "zero-sum": [ "JJ" ], "Nipe": [ "NNP" ], "decribed": [ "VBD" ], "forego": [ "VB", "VBP" ], "Lamm": [ "NNP" ], "Massell": [ "NNP" ], "filigree": [ "JJ", "NN" ], "sucker-rolling": [ "JJ" ], "ice-cream": [ "NN" ], "Lamy": [ "NNP" ], "Nipp": [ "NNP" ], "Mobilia": [ "NNP" ], "Slavic": [ "NNP", "JJ" ], "Peerless": [ "NNP" ], "Slavin": [ "NNP" ], "perinatally": [ "RB" ], "tremblor": [ "NN" ], "prouder": [ "RBR" ], "unambiguously": [ "RB" ], "circulate": [ "VB", "VBP" ], "pervaporation": [ "NN" ], "home-ownership": [ "NN" ], "lighters": [ "NNS" ], "earmarked": [ "VBN", "VBD", "VBN|JJ" ], "suitability": [ "NN" ], "love-in-action": [ "NN" ], "Searles": [ "NNP" ], "synergistic": [ "JJ" ], "herself": [ "PRP" ], "Combellack": [ "NNP" ], "photograph": [ "NN", "VB" ], "spurn": [ "VBP", "VB" ], "Allure": [ "NN" ], "English-dialogue": [ "JJ" ], "two...": [ ":" ], "transgression": [ "NN" ], "buggers": [ "NNS" ], "spurt": [ "NN", "VBP" ], "providing": [ "VBG", "IN" ], "supplanting": [ "VBG" ], "Rumford": [ "NNP" ], "Information": [ "NNP", "NN" ], "Guderian": [ "NNP" ], "gratingly": [ "RB" ], "dogmatically": [ "RB" ], "government-supported": [ "JJ" ], "Highlights": [ "NNS" ], "dewdrops": [ "NNS" ], "beefs": [ "VBZ" ], "thereto": [ "RB" ], "p.m": [ "RB", "FW", "NN" ], "mycobacteria": [ "NN" ], "beefy": [ "JJ" ], "border": [ "NN" ], "prior-review": [ "JJ" ], "hot-dipped": [ "JJ" ], "Coffee-House": [ "NNP" ], "sprinkles": [ "VBZ" ], "sprinkler": [ "NN" ], "unadulterated": [ "JJ" ], "gunner": [ "NN" ], "Photos": [ "NNS" ], "sprinkled": [ "VBD", "VBN" ], "medical-airlift": [ "NN" ], "gunned": [ "VBN", "VBD" ], "Underwriting": [ "NN", "VBG" ], "Cotman": [ "NNP" ], "adieu": [ "FW" ], "Unamused": [ "JJ" ], "Bremner": [ "NNP" ], "disgorge": [ "VB" ], "little-publicized": [ "JJ" ], "Sharkey": [ "NNP" ], "resplendent": [ "JJ" ], "liturgical": [ "JJ" ], "flip-flopped": [ "JJ" ], "crossroading": [ "VBG" ], "sippers": [ "NNS" ], "Heidi": [ "NNP" ], "olive-green": [ "JJ" ], "snow-fence": [ "NN" ], "Toomey": [ "NNP" ], "spring-brake": [ "NN" ], "gentleladies": [ "NNS" ], "Eastate": [ "NNP" ], "Loney": [ "NNP" ], "harmonization": [ "NN" ], "Expects": [ "NNS", "VBZ" ], "blurt": [ "NN", "VBP" ], "proceedings": [ "NNS" ], "propels": [ "VBZ" ], "profit-taking": [ "NN", "NNS", "JJ" ], "businessman": [ "NN" ], "Cioffi": [ "NNP" ], "Jorndt": [ "NNP" ], "Provincial": [ "NNP", "JJ" ], "Matt": [ "NNP" ], "Mascarita": [ "NNP" ], "Matz": [ "NNP" ], "unfathomable": [ "JJ" ], "reclaiming": [ "VBG" ], "Math": [ "NNP", "NN" ], "envy": [ "NN", "VBP", "VB" ], "transfer-pricing": [ "JJ" ], "valuation": [ "NN" ], "idiocies": [ "NNS" ], "hadd": [ "VBN" ], "re-evaluate": [ "VB", "JJ", "VBP" ], "Brauer": [ "NNP" ], "Dinsa": [ "NNP" ], "stableman": [ "NN" ], "equivalents": [ "NNS" ], "slows": [ "VBZ", "NNS" ], "crumbling": [ "VBG", "JJ" ], "Oestreich": [ "NNP" ], "FiberCom": [ "NNP" ], "Hague": [ "NNP" ], "desecrated": [ "VBN" ], "drug-approval": [ "JJ" ], "marvels": [ "NNS", "VBZ" ], "Domicilium": [ "NNP" ], "anti-crime": [ "JJ" ], "wincing": [ "VBG" ], "parlors": [ "NNS" ], "Jerseyite": [ "NNP" ], "shrillness": [ "NN" ], "Takaezu": [ "NNP" ], "Uncontrolled": [ "JJ" ], "Diana": [ "NNP" ], "preach": [ "VB", "VBP" ], "Driving": [ "VBG", "NNP" ], "burying": [ "VBG" ], "capitalists": [ "NNS" ], "legacy": [ "NN" ], "theocracy": [ "NN" ], "Jenkins": [ "NNP" ], "SBCI": [ "NNP" ], "forgo": [ "VB", "VBP" ], "unearth": [ "VB" ], "furbishing": [ "NN" ], "cents": [ "NNS" ], "Protective": [ "JJ" ], "Sosuke": [ "NNP" ], "joys": [ "NNS" ], "tabula": [ "NN" ], "high-gloss": [ "JJ" ], "correctly": [ "RB" ], "lug": [ "VB", "NN" ], "lui": [ "FW" ], "flicks": [ "NNS" ], "sold": [ "VBN", "VBD" ], "Beaufort": [ "NNP" ], "nutritious": [ "JJ" ], "franchiser": [ "NN" ], "barreling": [ "VBG" ], "munching": [ "VBG" ], "Cuban-American": [ "NNP" ], "Petrograd": [ "NNP" ], "foreshadow": [ "VB", "VBP" ], "squads": [ "NNS" ], "disproportionately": [ "RB" ], "Home-keeping": [ "JJ" ], "pilgrims": [ "NNS" ], "interpretations": [ "NNS" ], "Belzbergs": [ "NNPS" ], "Devereux": [ "NNP" ], "disobeyed": [ "VBN", "VBD" ], "Jihad": [ "NNP" ], "Mazilo": [ "NNP" ], "lobster-backed": [ "JJ" ], "jersey": [ "NN" ], "habitual": [ "JJ" ], "CIA": [ "NNP" ], "Karolinerna": [ "NNP" ], "individuation": [ "NN" ], "betrayed": [ "VBN", "VBD" ], "temperamental": [ "JJ" ], "cohere": [ "VB" ], "crystalline": [ "JJ" ], "alternates": [ "VBZ", "NNS" ], "Garber": [ "NNP" ], "disintegrate": [ "VB" ], "Incident": [ "NN" ], "computer-systems": [ "NNS" ], "inertia": [ "NN" ], "office-product": [ "NN" ], "volunteerism": [ "NN" ], "N.F.": [ "NNP" ], "Indo-German": [ "NNP" ], "Careful": [ "JJ" ], "cocotte": [ "NN" ], "darkling": [ "JJ" ], "Meador": [ "NNP" ], "Cuban-assisted": [ "JJ" ], "Ignazio": [ "NNP" ], "Sandinista": [ "NNP", "JJ" ], "June.": [ "NN" ], "kicks": [ "VBZ", "NNS" ], "boxcars": [ "NNS" ], "Duty-Free": [ "NNP" ], "digger": [ "NN" ], "novel": [ "NN", "JJ" ], "principal-only": [ "JJ" ], "Unsinkable": [ "NNP" ], "wth": [ "IN" ], "Elbe": [ "NNP" ], "Elba": [ "NNP" ], "resident": [ "NN", "JJ" ], "CIT": [ "NNP" ], "WNYC-FM": [ "NNP" ], "despues": [ "FW" ], "battle-cry": [ "NN" ], "Pushkin": [ "NNP" ], "Briggs": [ "NNP" ], "Hinduism": [ "NNP" ], "lambs": [ "NNS" ], "Hinduish": [ "JJ" ], "Lobl": [ "NNP" ], "Melamine": [ "JJ" ], "PPG": [ "NNP" ], "consumer-credit": [ "JJ", "NN" ], "anachronism": [ "NN" ], "operas": [ "NNS" ], "Underneath": [ "IN", "NN" ], "chants": [ "NNS" ], "PPP": [ "NNP", "NN" ], "high-interest-rate": [ "JJ" ], "Containers": [ "NNPS", "NNP" ], "helium": [ "NN" ], "haranguing": [ "VBG" ], "Exocet": [ "NNP" ], "Uniate": [ "NNP" ], "absorb": [ "VB", "VBP" ], "raw-sugar": [ "JJ" ], "recommendatons": [ "NNS" ], "Freeway": [ "NNP" ], "dissidents.": [ "NN" ], "Families": [ "NNS", "NNPS" ], "sore-ridden": [ "JJ" ], "stay-at-home": [ "JJ" ], "Whittington": [ "NNP" ], "energized": [ "VBN" ], "paycheck": [ "NN" ], "Wallingford": [ "NNP" ], "Wieslawa": [ "NNP" ], "i": [ "NN", "FW", "NNP", "NNS" ], "modeled": [ "VBN", "VBD", "JJ" ], "stirrup-guard": [ "NN" ], "long-rumored": [ "JJ" ], "rink": [ "NN" ], "home-acquisition": [ "JJ" ], "flexing": [ "VBG" ], "Heywood": [ "NNP" ], "energizes": [ "VBZ" ], "Remembrance": [ "NN", "NNP" ], "]*": [ "NN", "DT", "JJ", "RB", "UH", "NNP", "NNS", "NN|POS", ",", "VBG", "VBP" ], "jurisconsults": [ "NNS" ], "Provinces": [ "NNP", "NNPS" ], "Peaceable": [ "NNP", "JJ" ], "underdog": [ "NN" ], "accurate": [ "JJ" ], "resiliently": [ "RB" ], "Sunday": [ "NNP" ], "office-supplies": [ "NNS" ], "matter-of-factness": [ "NN" ], "low-level": [ "JJ" ], "altruists": [ "NNS" ], "bequests": [ "NNS" ], "surfaces": [ "NNS", "VBZ" ], "Helmut": [ "NNP" ], "extends": [ "VBZ" ], "Beaux": [ "NNP" ], "W.H.": [ "NNP" ], "intimated": [ "VBD", "VBN" ], "Continuum": [ "NN" ], "AFRICAN-AMERICAN": [ "JJ" ], "open-face": [ "JJ" ], "Winston-Salem": [ "NNP" ], "pro-cut": [ "JJ" ], "avant-garde": [ "JJ", "NN" ], "rebelliously": [ "RB" ], "reproducibilities": [ "NNS" ], "labor-management": [ "JJ", "NN" ], "prominent": [ "JJ" ], "Priddy": [ "NNP" ], "alternatively": [ "RB" ], "assault-weapons": [ "JJ" ], "LAMBERT": [ "NNP" ], "head-cold": [ "NN" ], "clarinetist": [ "NN" ], "low-maintenance": [ "JJ" ], "Tranportation": [ "NNP" ], "full-on": [ "JJ" ], "Roxani": [ "NNP" ], "backlog": [ "NN" ], "Wheeling-Pittsburgh": [ "NNP" ], "benzene": [ "NN" ], "drug-infested": [ "JJ" ], "cognate": [ "JJ" ], "ZENITH": [ "NNP" ], "Wagner": [ "NNP" ], "Curragh": [ "NNP" ], "incubus": [ "NN" ], "copra": [ "NN" ], "liking": [ "NN", "VBG" ], "Shahal": [ "NNP" ], "Larkin": [ "NNP" ], "imitation-caning": [ "JJ" ], "Monsieur": [ "NNP", "FW" ], "sweepingly": [ "RB" ], "Killer": [ "NNP" ], "public-television": [ "NN" ], "ROY": [ "NNP" ], "increasing-rate": [ "JJ" ], "fretted": [ "VBD" ], "computer-and-semiconductor": [ "JJ" ], "over-occupied": [ "JJ" ], "exerpts": [ "NNS" ], "Houston-area": [ "JJ" ], "Measurement": [ "NNP", "NN" ], "gypsum": [ "NN" ], "processed-meat": [ "JJ" ], "misrepresentation": [ "NN" ], "life-style": [ "NN", "JJ" ], "exacerbation": [ "NN" ], "Soloviev-Sedoi": [ "NNP" ], "sinister": [ "JJ" ], "Ages": [ "NNPS", "NNP", "NNS" ], "recognized": [ "VBN", "JJ", "VBD" ], "epitomize": [ "VB", "VBP" ], "recognizes": [ "VBZ" ], "Agee": [ "NNP" ], "U.K.-based": [ "JJ" ], "Tobin": [ "NNP" ], "enacts": [ "VBZ" ], "squarefoot": [ "JJ" ], "Democratic-sounding": [ "JJ" ], "congregate": [ "VB" ], "particularistic-seeming": [ "JJ" ], "Dukes": [ "NNPS", "NNP" ], "backups": [ "NNS" ], "lower-priority": [ "JJ" ], "Sarti": [ "NNP" ], "rejoice": [ "VBP", "VB" ], "impatience": [ "NN" ], "Zhang": [ "NNP" ], "mastermind": [ "NN", "VB" ], "canting": [ "JJ" ], "noticed": [ "VBD", "VBN", "JJ" ], "Holzman": [ "NNP" ], "vein": [ "NN" ], "notices": [ "NNS", "VBZ" ], "jinx": [ "NN" ], "unexamined": [ "JJ" ], "hr": [ "NN" ], "mucked": [ "VBN" ], "hp": [ "NN" ], "Edelson": [ "NNP" ], "Navistar": [ "NNP" ], "Drifts": [ "NNS", "NNP" ], "escrow": [ "NN", "JJ" ], "prophecies": [ "NNS" ], "hierarchical": [ "JJ" ], "spigots": [ "NNS" ], "ho": [ "UH" ], "overflow": [ "NN" ], "ha": [ "UH" ], "mucker": [ "NN" ], "modifiers": [ "NNS" ], "Appalachian": [ "NNP" ], "Luang": [ "NNP" ], "Rapids": [ "NNP", "NNPS" ], "Merieux": [ "NNP", "NN" ], "Resentment": [ "NN" ], "show-offy": [ "JJ" ], "carriage": [ "NN" ], "Gillis": [ "NNP" ], "offstage": [ "RB", "JJ" ], "Dodds": [ "NNP" ], "Smirnoff": [ "NNP" ], "twise": [ "RB" ], "affectionate": [ "JJ" ], "redeems": [ "VBZ" ], "Springdale": [ "NNP" ], "urns": [ "NNS" ], "M\\*A\\*S\\*H": [ "NNP" ], "twist": [ "NN", "VBP", "VB" ], "anti-semite": [ "NN" ], "lobes": [ "NNS" ], "matricide": [ "NN" ], "Bankers": [ "NNPS", "NNP", "NNS" ], "vociferously": [ "RB" ], "balcony": [ "NN" ], "discount...": [ ":" ], "Shall": [ "MD", "NNP" ], "Paynes": [ "NNPS" ], "Byzantium": [ "NNP" ], "Shale": [ "NNP" ], "Fridays": [ "NNPS", "NNP", "NNS" ], "crummy": [ "JJ" ], "fledgling": [ "NN", "JJ" ], "disposing": [ "VBG" ], "Parichy": [ "NNP" ], "Euroflics": [ "NNPS" ], "expressible": [ "JJ" ], "Rests": [ "VBZ" ], "COKE": [ "NNP", "NN" ], "gradations": [ "NNS" ], "insults": [ "NNS" ], "inescapably": [ "RB" ], "handymen": [ "NNS" ], "Oberhausen": [ "NNP" ], "pathways": [ "NNS" ], "precise-sounding": [ "JJ" ], "curbed": [ "VBN", "VBD" ], "Andromache": [ "NNP" ], "Avianca": [ "NNP" ], "RTC": [ "NNP" ], "Harken": [ "NNP" ], "Betting": [ "NNP", "VBG" ], "Georgia-based": [ "JJ" ], "Clairol": [ "NNP" ], "Proposition": [ "NNP", "NN" ], "floor-level": [ "JJ" ], "Blendax": [ "NNP" ], "Oncogene": [ "NNP" ], "zillions": [ "NNS" ], "dynamic": [ "JJ", "NN" ], "Outpatient": [ "NN", "NNP" ], "straws": [ "NNS" ], "mental-health": [ "JJ", "NN" ], "neoplasia": [ "FW" ], "reunion-Halloween": [ "JJ" ], "Hombrecher": [ "NNP" ], "re-establishment": [ "NN" ], "Descendants": [ "NNS" ], "remodeled": [ "VBD", "VBN" ], "Parenthood": [ "NNP", "NN" ], "yield-hungry": [ "JJ" ], "Addict": [ "NNP", "NN" ], "executive-only": [ "JJ" ], "nourishes": [ "VBZ" ], "Sulzberger": [ "NNP" ], "Tulane": [ "NNP" ], "downstream": [ "RB", "JJ" ], "desirable": [ "JJ" ], "railways": [ "NNS" ], "flashpoint": [ "NN" ], "Wilks": [ "NNP" ], "entitlements": [ "NNS" ], "nourished": [ "VBN", "JJ" ], "reforms": [ "NNS" ], "Wilke": [ "NNP" ], "low-key": [ "JJ" ], "hit-and-miss": [ "JJ" ], "operetta": [ "NN" ], "post-season": [ "NN" ], "molesting": [ "VBG" ], "naturalist": [ "NN" ], "Tillet": [ "NNP" ], "first-term": [ "JJ" ], "companies": [ "NNS" ], "solution": [ "NN" ], "correct": [ "JJ", "VBP", "VB" ], "LaRiviere": [ "NNP" ], "vector": [ "NN" ], "mopped": [ "VBD", "VBN" ], "McCanna": [ "NNP" ], "cholesterol": [ "NN" ], "Goering": [ "NNP" ], "RTZ": [ "NNP" ], "reshuffling": [ "VBG", "NN" ], "run-on": [ "NN" ], "build-up": [ "NN" ], "Occupation": [ "NNP" ], "worriers": [ "NNS" ], "Joann": [ "NNP" ], "Shupe": [ "NNP" ], "lustre": [ "NN" ], "isocyanate-labeled": [ "NN" ], "form-creating": [ "JJ" ], "gray-backs": [ "NNS" ], "lavender": [ "JJ", "NN" ], "orifices": [ "NNS" ], "anti-smoking": [ "JJ" ], "Poles": [ "NNPS", "NNP", "NNS" ], "Agreements": [ "NNS" ], "neo": [ "JJ" ], "spouses": [ "NNS" ], "Clemence": [ "NN" ], "chemcial": [ "JJ" ], "shamefacedly": [ "RB" ], "Mosbacher": [ "NNP" ], "Pewabic": [ "NNP" ], "Kinkaid": [ "NNP" ], "Put": [ "VB", "VBD", "VBN", "JJ", "NN" ], "new": [ "JJ" ], "net": [ "JJ", "NN", "VB" ], "harbors": [ "NNS", "VBZ" ], "healthily": [ "RB" ], "unasked": [ "JJ" ], "screams": [ "NNS", "VBZ" ], "filbert": [ "JJ" ], "Burbank": [ "NNP" ], "Federated": [ "NNP" ], "price-cutting": [ "NN", "JJ" ], "interpret": [ "VB", "VBP" ], "remittances": [ "NNS" ], "Sharecropping": [ "NN" ], "three-piece": [ "JJ" ], "Correction": [ "NN", "NNP" ], "piroghi": [ "NNS" ], "floorboards": [ "NNS" ], "speeded": [ "VBD", "VBN" ], "seed-pods": [ "NNS" ], "adolescents": [ "NNS" ], "reschedulable": [ "JJ" ], "Claus": [ "NNP" ], "Privacy": [ "NN" ], "revenue-raising": [ "JJ", "NN" ], "possessing": [ "VBG" ], "Bennett-Bloom": [ "NNP" ], "spurted": [ "VBD", "VBN" ], "Methanol": [ "NN" ], "busses": [ "NNS" ], "carinii": [ "NN" ], "Romain": [ "NNP" ], "counts": [ "NNS", "VBZ" ], "Offshore": [ "NNP", "JJ" ], "workday": [ "NN" ], "self-administration": [ "NN" ], "chest-swelling": [ "JJ" ], "ratty": [ "JJ" ], "Subpoenas": [ "NNS" ], "Wilkins": [ "NNP" ], "IRS-HHS": [ "JJ" ], "recommend": [ "VB", "VBP" ], "N.J.": [ "NNP" ], "Johanna": [ "NNP" ], "gilding": [ "NN" ], "type": [ "NN", "VB" ], "made-up": [ "JJ" ], "Trent": [ "NNP" ], "Manet": [ "NNP" ], "churchyard": [ "NN" ], "posting": [ "VBG", "NN" ], "Raitt": [ "NNP" ], "DiMaggio": [ "NNP" ], "shoulder-high": [ "JJ" ], "surrealistic": [ "JJ" ], "hotel-management": [ "NN" ], "rimless": [ "JJ" ], "Nordic": [ "JJ" ], "trend-setter": [ "NN" ], "glottochronology": [ "NN" ], "McKim": [ "NNP" ], "sped": [ "VBD", "VBN" ], "Bombardier": [ "NNP" ], "Eiji": [ "NNP" ], "freemail": [ "NN" ], "credulousness": [ "NN" ], "sizzled": [ "VBD" ], "suggestive": [ "JJ" ], "Petrini": [ "NNP" ], "ONEZIE": [ "NNP" ], "sizzles": [ "VBZ" ], "Montvale": [ "NNP" ], "better-selling": [ "JJ" ], "stagnated": [ "VBD" ], "blips": [ "NNS" ], "keratitis": [ "NN" ], "assent": [ "NN" ], "Keynesians": [ "NNPS" ], "babbiting": [ "NN" ], "Illustrations": [ "NNS", "NNP" ], "counterespionage": [ "NN" ], "freescrip": [ "NN" ], "Tillie": [ "NNP" ], "Tankers": [ "NNS" ], "Habeas": [ "FW" ], "Edmond": [ "NNP" ], "CBS-TV": [ "NNP" ], "globalization": [ "NN" ], "Chimie": [ "NNP" ], "EEOC": [ "NNP" ], "poltically": [ "RB" ], "Laurance": [ "NNP" ], "McGhie": [ "NNP" ], "skindive": [ "VB" ], "reconciled": [ "VBN" ], "Rill": [ "NNP" ], "Howell": [ "NNP" ], "sickroom": [ "NN" ], "Ebensburg": [ "NNP", "NN" ], "reconciles": [ "VBZ" ], "national-treasure": [ "JJ" ], "loyalists": [ "NNS" ], "ablation": [ "NN" ], "Regius": [ "NNP" ], "riffing": [ "VBG" ], "Werther": [ "NNP" ], "Loughman": [ "NNP" ], "citrated": [ "VBN" ], "Fialkow": [ "NNP" ], "pianos": [ "NNS" ], "ensnare": [ "VB" ], "Brook": [ "NNP" ], "Comprecin": [ "NNP" ], "Laurence": [ "NNP" ], "Simonds": [ "NNP" ], "keyboard": [ "NN" ], "toady": [ "NN" ], "Hitlers": [ "NNPS" ], "one-quarter": [ "NN", "JJ" ], "fun-loving": [ "JJ" ], "Anti-Semitic": [ "JJ" ], "Helen": [ "NNP" ], "surcharges": [ "NNS" ], "Pamour": [ "NNP" ], "Vidal": [ "NNP" ], "ghouls": [ "NNS" ], "Oxy": [ "NNP" ], "sterilization": [ "NN" ], "Alternatively": [ "RB" ], "price-to-earnings": [ "JJ" ], "academics": [ "NNS" ], "bankroll": [ "VB", "VBP" ], "Battelle": [ "NNP" ], "aborted": [ "JJ", "VBD", "VBN" ], "indulge": [ "VB", "VBP" ], "Toros": [ "NNP" ], "cashflow": [ "NN" ], "high-capacity": [ "JJ" ], "rhetoric": [ "NN" ], "pollution-control": [ "JJ", "NN" ], "Economists": [ "NNS", "NNP", "NNPS" ], "palm-fringed": [ "JJ" ], "tracery": [ "NN" ], "Cariaga": [ "NNP" ], "musicians": [ "NNS" ], "Pettigrew": [ "NNP" ], "faraway": [ "JJ" ], "non-violently": [ "RB" ], "prerequisite": [ "NN" ], "Dataquest": [ "NNP" ], "acoustic": [ "JJ" ], "calibrations": [ "NNS" ], "interruption": [ "NN" ], "interministerial": [ "JJ" ], "sonatas": [ "NNS" ], "Couve": [ "NNP" ], "Police-man": [ "NNP" ], "Glasnost": [ "FW" ], "all-American-boy": [ "NN" ], "escrowed": [ "VBN" ], "caustic": [ "JJ" ], "exigencies": [ "NNS" ], "dawn": [ "NN", "VB" ], "publically": [ "RB" ], "collector": [ "NN" ], "Dorsch": [ "NNP" ], "Goodwin": [ "NNP" ], "Litigants": [ "NNS" ], "ever-expanding": [ "JJ" ], "Expansion": [ "NN" ], "adhesion": [ "NN" ], "unromantic": [ "JJ" ], "surprise": [ "NN", "JJ", "RB", "VB" ], "school-desegregation": [ "NN" ], "sluggish": [ "JJ" ], "rock-steady": [ "NN" ], "thirty-mile": [ "JJ" ], "Antitrust": [ "NNP", "JJ" ], "hangers-on": [ "NNS" ], "telescoped": [ "VBN" ], "revenge": [ "NN" ], "Watertown": [ "NNP" ], "bestow": [ "VB" ], "cement": [ "NN", "VB" ], "Planes": [ "NNS" ], "telescopes": [ "NNS" ], "Sarmi": [ "NNP" ], "Criticism": [ "NN", "NNP" ], "aisle": [ "NN" ], "Lucien": [ "NNP" ], "Gumpel": [ "NNP" ], "red-rimmed": [ "JJ" ], "messages": [ "NNS" ], "wry-faced": [ "JJ" ], "Ukrainians": [ "NNPS" ], "Sandinistas": [ "NNPS", "NNP", "NNS" ], "liquids": [ "NNS" ], "diggers": [ "NNS" ], "Bowlers": [ "NNPS" ], "second-guessing": [ "NN", "VBG" ], "enrollees": [ "NNS" ], "playwright": [ "NN" ], "economists": [ "NNS" ], "Stadiums": [ "NNS" ], "workingmen": [ "NNS" ], "Frondel": [ "NNP" ], "Lincoln-Mercury": [ "NNP" ], "BroadBeach": [ "NNP" ], "synthesize": [ "VB" ], "Wainwright": [ "NNP" ], "Morarji": [ "NNP" ], "NASA-Air": [ "NNP" ], "property-management": [ "NN" ], "neutralization": [ "NN" ], "girls": [ "NNS" ], "interlude": [ "NN" ], "Claude": [ "NNP" ], "overstating": [ "VBG" ], "non-drug": [ "JJ" ], "monicker": [ "JJR" ], "Valium": [ "NNP" ], "exposures": [ "NNS" ], "dilated": [ "VBN" ], "Boucher": [ "NNP" ], "escort": [ "NN", "VB" ], "dramatized": [ "VBN" ], "Corners": [ "NNPS" ], "villager": [ "NN" ], "Mid-State": [ "NNP" ], "objecting": [ "VBG" ], "dramatizes": [ "VBZ" ], "Discs": [ "NNP" ], "No.3": [ "JJ" ], "dilates": [ "VBZ" ], "stocking": [ "VBG", "NN" ], "firehouses": [ "NNS" ], "soonest": [ "JJS" ], "legalize": [ "VB", "VBP" ], "Gifford": [ "NNP" ], "N.M.": [ "NNP" ], "threadbare": [ "JJ" ], "bidder": [ "NN" ], "thills": [ "NNS" ], "coltish": [ "JJ" ], "Heumann": [ "NNP" ], "steelmaker": [ "NN" ], "fluoropolymer": [ "NN" ], "extorting": [ "VBG" ], "seamstress": [ "NN" ], "Roleplaying": [ "NN", "VBG" ], "alibi": [ "NN" ], "Canaveral": [ "NNP" ], "Compiegne": [ "NNP" ], "impotent": [ "JJ" ], "fishing-boat": [ "NN" ], "niece": [ "NN" ], "hebephrenic": [ "JJ" ], "sneered": [ "VBD" ], "Kakuei": [ "NNP" ], "Algerian": [ "JJ", "NNP" ], "Refunds": [ "NNS" ], "buggies": [ "NNS" ], "Trotter": [ "NNP" ], "cassettes": [ "NNS" ], "Comex": [ "NNP" ], "Comet": [ "NNP" ], "Lalaurie": [ "NNP" ], "exonerate": [ "VB" ], "Comer": [ "NNP" ], "Bakhtiari": [ "NNP" ], "pointe": [ "FW" ], "W-2s": [ "NNS" ], "medical": [ "JJ" ], "impudently": [ "RB" ], "Philippine": [ "JJ", "NNP" ], "unmated": [ "VBN" ], "Diaghilev": [ "NNP" ], "digress": [ "VB" ], "points": [ "NNS", "VBZ" ], "falconers": [ "NNS" ], "paterollers": [ "NNS" ], "pointy": [ "JJ" ], "doves": [ "NNS" ], "discontent": [ "NN" ], "MINORITY": [ "NN" ], "Gold-oriented": [ "JJ" ], "rapture": [ "NN" ], "incoherently": [ "RB" ], "Samson": [ "NNP" ], "well-publicized": [ "JJ" ], "thirds": [ "NNS" ], "wide-shouldered": [ "JJ" ], "judges": [ "NNS", "VBZ" ], "Byelorussia": [ "NNP" ], "Angellism": [ "NNP" ], "undoubtedly": [ "RB" ], "insecticides": [ "NNS" ], "Visual": [ "JJ" ], "judged": [ "VBN", "VBD" ], "palisades": [ "NNS" ], "Prexy": [ "NNP" ], "Greedily": [ "RB" ], "Explosions": [ "NNS" ], "Pembroke": [ "NNP" ], "third*": [ "JJS" ], "Sperandeo": [ "NNP" ], "seventy-odd": [ "JJ" ], "super-fast": [ "JJ" ], "smug": [ "JJ" ], "Organization": [ "NNP", "NN" ], "Palestinians": [ "NNPS" ], "autonavigator": [ "NN" ], "Johnstone": [ "NNP" ], "out...": [ ":" ], "fields": [ "NNS", "VBZ" ], "repealing": [ "VBG" ], "Miraflores": [ "NNP" ], "Anatoly": [ "NNP" ], "Anatole": [ "NNP" ], "Sacre": [ "NNP" ], "linguist": [ "NN" ], "attest": [ "VB", "VBP" ], "Bello": [ "NNP" ], "Sogo": [ "NNP" ], "Belli": [ "NNP" ], "zoned": [ "VBN" ], "Belle": [ "NNP" ], "Bella": [ "NNP" ], "contract-drilling": [ "NN", "VBG" ], "zones": [ "NNS" ], "Debbie": [ "NNP" ], "Patrimony": [ "NNP" ], "Butler": [ "NNP" ], "Rexinger": [ "NNP" ], "Macropathological": [ "NNP" ], "hydrocarbon": [ "NN" ], "Bells": [ "NNPS", "NNP", "NNS" ], "pebbles": [ "NNS" ], "Bearman": [ "NNP" ], "Biology": [ "NNP" ], "Run": [ "NNP", "NN", "VB" ], "Rum": [ "NNP" ], "scrap": [ "NN", "JJ", "VB" ], "Hassenfelt": [ "NNP" ], "Petro-Canada": [ "NNP" ], "prince": [ "NN" ], "Rus": [ "NNP" ], "sorts": [ "NNS" ], "drug-sensing": [ "JJ" ], "RULING": [ "NN" ], "Leverage": [ "NN" ], "pyrophosphate": [ "NN" ], "Toshimitsu": [ "NNP" ], "dumber": [ "JJR" ], "sulfur-dioxide": [ "NN" ], "laureates": [ "NNS" ], "virtuosity": [ "NN" ], "G.W.": [ "NNP" ], "wedge-shaped": [ "JJ" ], "carnivorous": [ "JJ" ], "uncreative": [ "JJ" ], "excavate": [ "VB" ], "father-confessor": [ "NN" ], "earthquake-stricken": [ "JJ" ], "unusally": [ "RB" ], "Moreton": [ "NNP" ], "opportunities": [ "NNS" ], "MARCHED": [ "VBD" ], "Brush": [ "NNP", "NN", "VB" ], "Amerada": [ "NNP" ], "Mayhap": [ "RB" ], "gaming-card": [ "NN" ], "vex": [ "VBP" ], "Machinery": [ "NNP", "NN" ], "mc.": [ "NN" ], "tightest-fitting": [ "JJS" ], "Cuyahoga": [ "NNP" ], "Petroleum": [ "NNP", "NN" ], "whisper": [ "NN", "VB" ], "ballparks": [ "NNS" ], "BULL": [ "NNP" ], "springs": [ "NNS", "VBZ" ], "speedily": [ "RB" ], "Papermate": [ "NNP" ], "easy-to-spot": [ "JJ" ], "play-girl": [ "NN" ], "brassy": [ "JJ" ], "Claimants": [ "NNPS" ], "proceeded": [ "VBD", "VBN" ], "eradication": [ "NN" ], "missile-engineering": [ "JJ" ], "formalizes": [ "VBZ" ], "cuttings": [ "NNS" ], "glamorized": [ "VBN" ], "fog-enshrouded": [ "JJ" ], "taxi-ways": [ "NNS" ], "Ratcliffe": [ "NNP" ], "X-ray": [ "NN", "JJ" ], "Sentencing": [ "NN", "VBG" ], "Wyckoff": [ "NNP" ], "formalized": [ "JJ", "VBN" ], "Sandhills": [ "NNP" ], "non-Communist": [ "JJ" ], "Georgia": [ "NNP" ], "Hands": [ "NNP", "NNPS", "NNS" ], "re-runs": [ "NNS" ], "crane-safety": [ "NN" ], "crew-rest": [ "NN" ], "strictures": [ "NNS" ], "Yang": [ "NNP" ], "Lars-Erik": [ "NNP" ], "Chappell": [ "NNP" ], "egg-breaking": [ "NN" ], "demobilizing": [ "VBG" ], "exception": [ "NN" ], "shovels": [ "NNS" ], "tank": [ "NN", "VB" ], "oboist": [ "NN" ], "Turkmenia": [ "NNP" ], "homebound": [ "JJ" ], "lizard": [ "NN" ], "finder": [ "NN" ], "tans": [ "NNS" ], "chilling": [ "VBG", "JJ" ], "Corrigan": [ "NNP" ], "metropolitan": [ "JJ", "NN" ], "Thompson-CSF": [ "NNP" ], "semper": [ "FW" ], "alternative-fueled": [ "JJ" ], "encamped": [ "VBN" ], "Lyme": [ "NNP", "NN" ], "sequined": [ "JJ" ], "shame": [ "NN", "VB" ], "Southdown": [ "NNP" ], "hardscrabble": [ "JJ" ], "Jenks": [ "NNP" ], "clinging": [ "VBG" ], "anastomosis": [ "NN" ], "pathfinder": [ "NN" ], "Gear": [ "NNP", "NN" ], "cools": [ "VBZ" ], "Tornado": [ "NNP" ], "non-Indian": [ "JJ" ], "away-from-home": [ "JJ" ], "sidelined": [ "VBN", "JJ" ], "cooly": [ "RB" ], "forklifts": [ "NNS" ], "chin-wagging": [ "JJ" ], "sidelines": [ "NNS" ], "IMF-approved": [ "JJ" ], "Stalinism": [ "NNP" ], "discriminatory": [ "JJ" ], "Framingham": [ "NNP" ], "blandly": [ "RB" ], "Faust": [ "NNP" ], "jealous": [ "JJ" ], "technology-transfer": [ "NN" ], "Builders": [ "NNPS", "NNP", "NNS" ], "Kerich": [ "NNP" ], "romp": [ "NN", "VBP" ], "near-absence": [ "NN" ], "unemotional": [ "JJ" ], "Duration": [ "NN" ], "Bantus": [ "NNPS" ], "SunTrust": [ "NNP" ], "entanglements": [ "NNS" ], "De": [ "NNP", "FW" ], "clemency": [ "NN" ], "Kaitaia": [ "NNP" ], "Defamation": [ "NNP" ], "rebellions": [ "NNS" ], "Kohut": [ "NNP" ], "Raich": [ "NNP" ], "Leadbetter": [ "NNP" ], "new-styled": [ "JJ" ], "biggest-selling": [ "JJ" ], "Unhappily": [ "RB" ], "balletic": [ "JJ" ], "catalytic": [ "JJ" ], "satisfactions": [ "NNS" ], "low-to-no-fat": [ "JJ" ], "Weak": [ "JJ" ], "more-pressing": [ "JJ" ], "greensward": [ "NN" ], "Wear": [ "VB", "NNP" ], "Chancery": [ "NNP" ], "designate": [ "VB", "JJ", "NN" ], "opt": [ "VB", "VBP" ], "Ligget": [ "NNP" ], "unfitting": [ "JJ" ], "ducts": [ "NNS" ], "recession-oriented": [ "JJ" ], "depicts": [ "VBZ" ], "Onegin": [ "NNP" ], "dogcatcher": [ "NN" ], "technology-related": [ "JJ" ], "money-making": [ "JJ", "NN" ], "Barker": [ "NNP" ], "banshee": [ "NN" ], "Brawls": [ "NNS" ], "Keihin": [ "NNP" ], "Anglo-Protestant": [ "JJ" ], "Acourse": [ "NN" ], "over-optimistic": [ "JJ" ], "curtness": [ "NN" ], "indium": [ "NN" ], "post-hurricane": [ "JJ" ], "working-class": [ "JJ", "NN" ], "assimilating": [ "VBG" ], "Chevrolet": [ "NNP", "NN" ], "poolside": [ "NN" ], "swab": [ "VB" ], "meekest": [ "JJS" ], "W.Va": [ "NNP" ], "sprawl": [ "NN", "VBP", "VB" ], "Pay-Per-View": [ "NNP" ], "total": [ "JJ", "NN", "VB", "VBP" ], "tracked": [ "VBN", "VBD", "JJ" ], "undisturbed": [ "JJ" ], "Nobody": [ "NN", "NNP" ], "oleophobic": [ "JJ" ], "Soucy": [ "NNP" ], "councilor": [ "NN" ], "flounder": [ "VB" ], "beget": [ "VB", "VBP" ], "Souci": [ "NNP" ], "backhoe": [ "NN" ], "Dunne": [ "NNP" ], "pupates": [ "VBZ" ], "unwholesome": [ "JJ" ], "jester": [ "NN" ], "managament": [ "NN" ], "divining": [ "VBG" ], "Rodeo": [ "NNP", "NN" ], "land-idling": [ "JJ" ], "far-ranging": [ "JJ" ], "astir": [ "JJ" ], "denuded": [ "VBN" ], "DECstation": [ "NNP" ], "Motorcars": [ "NNPS" ], "Cheat": [ "NNP" ], "Innesfree": [ "NNP" ], "metrical": [ "JJ" ], "Cheap": [ "JJ" ], "Austria": [ "NNP" ], "office-products": [ "NNS" ], "craftsman": [ "NN" ], "azure": [ "JJ" ], "islands": [ "NNS", "VBZ" ], "Deity": [ "NN" ], "boors": [ "NNS" ], "long-canceled": [ "JJ" ], "nerve": [ "NN" ], "gloss": [ "VB", "NN", "VBP" ], "castanets": [ "NNS" ], "SUN": [ "NNP" ], "tract": [ "NN" ], "odd-looking": [ "JJ" ], "rearview": [ "NN" ], "Gruberova": [ "NNP" ], "containable": [ "JJ" ], "Draft": [ "NNP" ], "Guigal": [ "NNP" ], "supremely": [ "RB" ], "rant": [ "VBP" ], "soft-shoe": [ "JJ" ], "unseal": [ "VB" ], "Feng-hsiung": [ "NNP" ], "host-specific": [ "JJ" ], "Paschi": [ "NNP" ], "not-too-distant": [ "JJ" ], "Bebey": [ "NNP" ], "Brockman": [ "NNP" ], "Fortman": [ "NNP" ], "unseat": [ "VB" ], "fork": [ "NN", "VB" ], "Rte.": [ "NNP" ], "dogmatism": [ "NN" ], "form": [ "NN", "VBP", "JJ", "VB" ], "Assume": [ "VB" ], "sweatsuit": [ "NN" ], "year-long": [ "JJ" ], "Eighty-seventh": [ "NNP" ], "Carmack": [ "NNP" ], "fore": [ "NN", "RB" ], "penned": [ "VBN", "VBD" ], "syndicate": [ "NN", "VB" ], "Biochemical": [ "NNP" ], "Felec": [ "NNP" ], "Chatha": [ "NNP" ], "Joon": [ "NNP" ], "fort": [ "NN", "VB" ], "Maguires": [ "NNPS" ], "pavilion": [ "NN" ], "tempeh": [ "NN" ], "dollops": [ "NNS" ], "occupancies": [ "NNS" ], "cosmos": [ "NN" ], "DeGroot": [ "NNP" ], "temper": [ "NN", "VB" ], "delete": [ "VB" ], "shin": [ "NN" ], "Publishing": [ "NNP", "NN" ], "exerting": [ "VBG" ], "shim": [ "VB" ], "Kell": [ "NNP" ], "Romanian": [ "JJ" ], "Walbridge": [ "NNP" ], "Forebearing": [ "NNP" ], "revitalize": [ "VB" ], "ship": [ "NN", "VBP", "VB" ], "pernicious": [ "JJ" ], "shit": [ "NN" ], "Tipasa": [ "NNP" ], "Starch": [ "NNP", "NN" ], "far-away": [ "JJ" ], "butadiene-emulsions": [ "NNS" ], "venison": [ "NN" ], "Stennis": [ "NNP" ], "digital": [ "JJ" ], "Paget": [ "NNP" ], "hangin": [ "VBG" ], "Pages": [ "NNPS", "NNP" ], "exporter": [ "NN" ], "alleviates": [ "VBZ" ], "Chemex": [ "NNP" ], "Vous": [ "FW" ], "coning": [ "NN" ], "felt": [ "VBD", "VBN" ], "ammonium": [ "NN" ], "fell": [ "VBD", "JJ", "NN", "VBN" ], "paraoxon": [ "NN" ], "exported": [ "VBN", "VBD" ], "authorities": [ "NNS" ], "Hund": [ "FW" ], "Moravcsik": [ "NNP" ], "Eastchester": [ "NNP" ], "blushing": [ "VBG" ], "Devitt": [ "NNP" ], "Second": [ "JJ", "LS", "RB", "NNP" ], "month-to-month": [ "JJ" ], "Throat": [ "NNP" ], "Black-and-white": [ "JJ" ], "gay-bashing": [ "JJ" ], "aftertax": [ "JJ", "NN" ], "woodwork": [ "NN" ], "precipices": [ "NNS" ], "primed": [ "VBN", "JJ", "VBD" ], "Minwax": [ "NNP" ], "Torrio-Capone": [ "JJ" ], "Susumu": [ "NNP" ], "primes": [ "NNS" ], "medium-haul": [ "JJ" ], "targeted": [ "VBN", "VBD", "JJ" ], "Nederlanden": [ "NNP" ], "Hitler": [ "NNP", "NN", "JJR" ], "misread": [ "VBD" ], "U.LLO": [ "NNP" ], "Horsehead": [ "NNP" ], "Mechanisms": [ "NNPS" ], "editors": [ "NNS" ], "Ridley": [ "NNP" ], "unruffled": [ "JJ" ], "marks": [ "NNS", "VBZ" ], "Cardoso": [ "NNP" ], "smoke-choked": [ "JJ" ], "Atlanta": [ "NNP" ], "Easton": [ "NNP" ], "Chieftains": [ "NNP" ], "ballooning": [ "NN", "VBG" ], "PipeLines": [ "NNP", "NNPS" ], "scarcest": [ "JJS" ], "one-dumbbell": [ "JJ" ], "yeast": [ "NN" ], "penniless": [ "JJ" ], "billionaire": [ "NN" ], "bed-hopped": [ "VBD" ], "pathologist": [ "NN" ], "silver-blue": [ "JJ" ], "Plus": [ "NNP", "CC" ], "Athabascan": [ "NNP" ], "three-day": [ "JJ" ], "rebelling": [ "VBG" ], "Medecine": [ "NNP" ], "travels": [ "VBZ", "NNS" ], "Tabit": [ "NNP" ], "brownish": [ "JJ" ], "rectitude": [ "NN" ], "Unsuccessful": [ "JJ" ], "Collier": [ "NNP" ], "putains": [ "FW" ], "Bankshares": [ "NNPS" ], "Viruscan": [ "NNP" ], "shave": [ "VB", "VBP", "NN" ], "oscillation": [ "NN" ], "stock-watch": [ "JJ" ], "PLASTIC": [ "NN" ], "draping": [ "VBG" ], "Detroit-based": [ "JJ" ], "vehicle-suspension": [ "NN" ], "commercial-industrial": [ "JJ" ], "soured": [ "VBD", "VBN", "JJ" ], "Tuxapoka": [ "NNP" ], "Beverages": [ "NNP", "NNS", "NNPS" ], "Spenser": [ "NNP" ], "landslides": [ "NNS" ], "Trofeo": [ "NNP" ], "Ferrer": [ "NNP" ], "waggled": [ "VBD" ], "template": [ "NN" ], "hand-to-hand": [ "JJ", "NN" ], "Tess": [ "NNP" ], "Rodney-The": [ "NNP" ], "growls": [ "VBZ" ], "Colonus": [ "NNP" ], "carbon-halogen": [ "NN" ], "briquette": [ "NN" ], "lash-up": [ "JJ" ], "handmaiden": [ "NN" ], "detest": [ "VBP", "VB" ], "vestibules": [ "NNS" ], "hummed": [ "VBD", "VBN" ], "Chateau": [ "NNP" ], "account-churning": [ "NN" ], "environs": [ "NNS" ], "Sleeping": [ "NNP", "VBG", "NN" ], "forages": [ "NNS" ], "Stockholder": [ "NN" ], "contingency-fee": [ "JJ" ], "rediscover": [ "VB" ], "SKIRTS": [ "NNP" ], "genuinely": [ "RB" ], "Makoto": [ "NNP" ], "rheumatic": [ "JJ" ], "DISASTER": [ "NN" ], "colloquial": [ "JJ" ], "councilors": [ "NNS" ], "enticements": [ "NNS" ], "regeneration": [ "NN" ], "testily": [ "RB" ], "modus": [ "FW" ], "Bolar": [ "NNP" ], "Reichmanns": [ "NNPS", "NNP" ], "Frawley": [ "NNP" ], "Lanes": [ "NNS" ], "troops": [ "NNS" ], "Freiburghouse": [ "NNP" ], "Hacche": [ "NNP" ], "Plexiglas": [ "NN" ], "insides": [ "NNS" ], "insider": [ "NN", "JJ" ], "Allowing": [ "VBG" ], "tachycardia": [ "NN" ], "thru": [ "NN", "IN" ], "Finerman": [ "NNP" ], "effectinge": [ "VBG" ], "outweighs": [ "VBZ" ], "PRIMERICA": [ "NNP" ], "Ben": [ "NNP" ], "dissembling": [ "VBG" ], "Bel": [ "NNP", "NN" ], "Fromstein": [ "NNP" ], "Bea": [ "NNP" ], "Orlando": [ "NNP" ], "Bed": [ "NN" ], "Bee": [ "NNP" ], "Bey": [ "NNP" ], "rigid": [ "JJ" ], "Processed": [ "NNP", "VBN" ], "savior": [ "NN" ], "calorimeter": [ "NN" ], "effort": [ "NN" ], "Bew": [ "NNP" ], "capturing": [ "VBG" ], "eight-member": [ "JJ" ], "walled": [ "JJ", "VBN" ], "pageant": [ "NN" ], "transferral": [ "JJ" ], "inertial": [ "JJ" ], "new-house": [ "JJ" ], "hubris": [ "NN" ], "wallet": [ "NN" ], "incarcerated": [ "VBN" ], "Prosecutorial": [ "JJ" ], "grained": [ "JJ" ], "crazy": [ "JJ" ], "monoclinic": [ "JJ" ], "egg-sized": [ "JJ" ], "Sandusky": [ "NNP" ], "Democratic-sponsored": [ "JJ" ], "overzealous": [ "JJ" ], "remanded": [ "VBD", "VBN" ], "birdbath": [ "NN" ], "justness": [ "NN" ], "HAL": [ "NNP" ], "Sweepstakes": [ "NNP" ], "cause-and-effect": [ "JJ" ], "craze": [ "NN" ], "inflows": [ "NNS" ], "Apocalyptic": [ "NNP", "JJ" ], "wheezing": [ "VBG", "JJ" ], "inundated": [ "VBN", "JJ" ], "range": [ "NN", "JJ", "VB", "VBP", "VBZ" ], "agonizing": [ "JJ" ], "scornfully": [ "RB" ], "sword": [ "NN" ], "swore": [ "VBD" ], "sworn": [ "VBN", "JJ" ], "pathway": [ "NN" ], "grok": [ "VB", "VBP" ], "Eichler": [ "NNP" ], "Bodenseewerk": [ "NNP" ], "HAD": [ "VBD" ], "misrepresented": [ "VBD", "VBN" ], "Trifari": [ "NNP" ], "praiseworthy": [ "JJ" ], "perfidy": [ "NN" ], "gelatin": [ "NN" ], "COMPUTER": [ "NN", "NNP" ], "Apaches": [ "NNPS" ], "half-acceptance": [ "NN" ], "relinquish": [ "VB", "VBP" ], "aimless": [ "JJ" ], "outline": [ "NN", "VB", "VBP" ], "facile": [ "JJ" ], "chef": [ "NN" ], "Brinkman": [ "NNP" ], "public-accommodation": [ "NN" ], "ionized": [ "VBN", "JJ" ], "jail": [ "NN", "VB" ], "sitcoms": [ "NNS" ], "Hama": [ "NNP" ], "biplane": [ "NN" ], "Hamm": [ "NNP" ], "trichloroacetic": [ "JJ" ], "walkie-talkies": [ "NNS" ], "recrimination": [ "NN" ], "rabbi": [ "NN", "NNS" ], "pointed": [ "VBD", "VBN", "JJ" ], "Hills-Hollywood": [ "JJ" ], "terrace": [ "NN" ], "arabesque": [ "NN" ], "marshmallows": [ "NNS" ], "consolidating": [ "VBG", "JJ" ], "pointer": [ "NN" ], "Administration-insured": [ "JJ" ], "Resting": [ "VBG" ], "conjunction": [ "NN" ], "Applebaum": [ "NNP" ], "oil-production": [ "NN" ], "encompasses": [ "VBZ" ], "Weckel": [ "NNP" ], "encompassed": [ "VBN", "VBD" ], "folkish": [ "JJ" ], "Galligan": [ "NNP" ], "Purchase": [ "NNP", "NN" ], "mismatches": [ "NNS" ], "Urbana": [ "NNP" ], "industry-financed": [ "JJ" ], "Shu": [ "NNP" ], "Boston-area": [ "JJ" ], "Shy": [ "JJ", "NNP" ], "Spengler": [ "NNP" ], "heedless": [ "JJ" ], "hostler": [ "NN" ], "Bowsher": [ "NNP" ], "mismatched": [ "VBN" ], "Shh": [ "UH" ], "bullshit": [ "NN", "VB" ], "Floridian": [ "NN" ], "Mittag": [ "NNP" ], "Rotonda": [ "NNP" ], "Weekend": [ "NNP", "NN" ], "Rotondo": [ "NNP" ], "peered": [ "VBD", "VBN" ], "Woong": [ "NNP" ], "Hesiometer": [ "NN" ], "brokerage-house": [ "NN" ], "disproving": [ "VBG" ], "Resignedly": [ "RB" ], "speculative-grade": [ "JJ" ], "fever": [ "NN" ], "Split": [ "VBN" ], "preaching": [ "NN", "VBG", "VBG|JJ" ], "Biondi": [ "NNP" ], "helmeted": [ "JJ" ], "rosettes": [ "NNS" ], "Laredo": [ "NNP" ], "torrents": [ "NNS" ], "d-NAV": [ "NNP" ], "inventories": [ "NNS" ], "nonogenarian": [ "NN" ], "Medicus": [ "NNP" ], "interference": [ "NN" ], "intermarket": [ "JJ", "NN" ], "Schweicker": [ "NNP" ], "imperative": [ "JJ", "NN" ], "Omsk": [ "NNP" ], "objectivity": [ "NN" ], "unifying": [ "VBG", "JJ" ], "Hambrecht": [ "NNP" ], "Judi": [ "NNP" ], "Cicero": [ "NNP" ], "monster": [ "NN" ], "Newmont": [ "NNP" ], "hefty": [ "JJ" ], "mechanisms": [ "NNS" ], "Jude": [ "NNP" ], "walnuts": [ "NNS" ], "Tumor": [ "NNP" ], "Judy": [ "NNP" ], "finishing": [ "VBG", "JJ", "NN" ], "Stony": [ "NNP" ], "private-detective": [ "NN" ], "jakes": [ "NN" ], "grist": [ "NN" ], "nufs": [ "NNS" ], "App": [ "NNP" ], "Apt": [ "JJ" ], "Elder": [ "NNP" ], "Hapgood": [ "NNP" ], "Enersen": [ "NNP" ], "Ape": [ "NNP" ], "Eric": [ "NNP" ], "dwelling": [ "NN", "VBG" ], "question": [ "NN", "VB", "VBP" ], "W/NNP.A.": [ "NN" ], "weekly-average": [ "JJ", "NN" ], "ICBMs": [ "NNPS" ], "Stardel": [ "NNP" ], "Pankowski": [ "NNP" ], "D.N.": [ "NNP" ], "Masaryk": [ "NNP" ], "carry": [ "VB", "NN", "VBP" ], "cloture": [ "NN" ], "unpublished": [ "JJ" ], "oohs": [ "UH", "NNS" ], "Stackup": [ "NNP" ], "evermounting": [ "VBG" ], "Posh": [ "JJ" ], "unduly": [ "RB" ], "autocrat": [ "NN" ], "psychotic": [ "JJ" ], "childishness": [ "NN" ], "entertainers": [ "NNS" ], "Polytechnic": [ "NNP" ], "Stiritz": [ "NNP" ], "Post": [ "NNP", "NN" ], "continuous": [ "JJ" ], "buy-now": [ "JJ" ], "Petitioner": [ "NN" ], "salarymen": [ "NNS" ], "Urethane": [ "NN" ], "cavity-fighting": [ "JJ" ], "Floradora": [ "NNP" ], "Berkely": [ "NNP" ], "once-cozy": [ "JJ" ], "infiltrate": [ "VB" ], "Tele1st": [ "NNP" ], "Ridiculing": [ "VBG" ], "Pascataqua": [ "NNP" ], "cross-connect": [ "JJ" ], "browning": [ "VBG" ], "Tenderloin": [ "NNP" ], "full-fledged": [ "JJ" ], "knives": [ "NNS" ], "gigantic": [ "JJ" ], "lowest-priced": [ "JJ" ], "tractor": [ "NN" ], "coconut": [ "NN" ], "camouflaged": [ "VBN", "JJ" ], "kingmaker": [ "NN" ], "Rankings": [ "NNS" ], "briefs": [ "NNS" ], "reaccelerate": [ "VB" ], "conspiracy": [ "NN" ], "pulping": [ "VBG" ], "Celebes": [ "NNPS" ], "Minerals": [ "NNPS", "NNP", "NNS" ], "abdomens": [ "NNS" ], "Rulers": [ "NNPS" ], "metalized": [ "VBN" ], "rupturing": [ "VBG" ], "rehearsals": [ "NNS" ], "firehoops": [ "NNS" ], "case-hardened": [ "JJ" ], "creatively": [ "RB" ], "Turbulence": [ "NN" ], "glassware": [ "NN" ], "Inventors": [ "NNS" ], "Wickliffe": [ "NNP" ], "radiosterilization": [ "NN" ], "solidity": [ "NN" ], "pain": [ "NN" ], "Name": [ "NN", "NNP", "VB" ], "pail": [ "NN" ], "tallies": [ "NNS" ], "semi-professional": [ "JJ" ], "wood-and-brass": [ "NN" ], "paid": [ "VBN", "VBD", "VBN|JJ", "JJ" ], "paie": [ "VB" ], "ordinates": [ "NNS" ], "rigidly": [ "RB" ], "corporate-entertainment": [ "JJ" ], "pair": [ "NN", "FW", "VB" ], "Toscanini": [ "NNP" ], "mettle": [ "NN" ], "NBC-owned": [ "JJ" ], "weapons-systems": [ "NNS" ], "Pagliuca": [ "NNP" ], "Domina": [ "NNP", "FW" ], "staff-cutting": [ "VBG" ], "Domino": [ "NNP" ], "napkin": [ "NN" ], "kick-off": [ "NN" ], "Windmere": [ "NNP" ], "Marmon": [ "NNP" ], "Franklin": [ "NNP", "NNPS" ], "BART": [ "NNP" ], "sandy-haired": [ "JJ" ], "Basie": [ "NNP" ], "salon": [ "NN" ], "veranda": [ "NN" ], "legalization": [ "NN" ], "Peapack": [ "NNP" ], "curled": [ "VBD", "VBN" ], "Woollcott": [ "NNP" ], "cultural-reform": [ "NN" ], "worker-owned": [ "JJ" ], "country-development": [ "NN" ], "Ephron": [ "NNP" ], "re-create": [ "VB" ], "black": [ "JJ", "NN", "VB" ], "fundamantalist": [ "NN" ], "defenders": [ "NNS" ], "Fisher": [ "NNP" ], "Epicurus": [ "NNP" ], "Walinsky-Rubinstein": [ "NNP" ], "pro-life": [ "JJ" ], "PG&E": [ "NNP" ], "West-Point": [ "NNP" ], "BNP": [ "NNP" ], "tamper-resistant": [ "JJ" ], "slyness": [ "NN" ], "procreation": [ "NN" ], "BNL": [ "NNP" ], "unethical": [ "JJ" ], "Tateishi": [ "NNP" ], "corticotropin": [ "NN" ], "Jewelers": [ "NNPS", "NNP" ], "doubloon": [ "NN" ], "encroached": [ "VBD" ], "Tougher": [ "JJR" ], "Jewelery": [ "NNP" ], "Ullman": [ "NNP" ], "summary": [ "NN" ], "Folsom": [ "NNP" ], "Eicher": [ "NNP" ], "Toccata": [ "NNP" ], "Druggan-Lake": [ "NNP" ], "communicated": [ "VBN", "VBD" ], "Killebrew": [ "NNP" ], "Cavalry": [ "NNP", "NN" ], "Heitschmidt": [ "NNP" ], "Beechnut": [ "NNP" ], "Credibility": [ "NN", "NNP" ], "Weltanschauung": [ "NN" ], "eighteenth": [ "JJ" ], "blurred": [ "VBN", "JJ", "VBD" ], "doings": [ "NNS" ], "Cloudcroft": [ "NNP" ], "Taney": [ "NNP" ], "Screwed": [ "JJ" ], "Lysle": [ "NNP" ], "whooosh": [ "JJ" ], "Perfumes": [ "NNPS" ], "Messner": [ "NNP" ], "patronized": [ "VBN", "VBD" ], "Pray": [ "NNP" ], "machetes": [ "NNS" ], "pump": [ "VB", "VBP", "NN" ], "chews": [ "NNS" ], "Bernet": [ "NNP" ], "Navajo": [ "NNP" ], "Berner": [ "NNP" ], "Basic": [ "NNP", "NN", "JJ" ], "HEAVY": [ "JJ" ], "loped": [ "VBD" ], "foreword": [ "NN" ], "Oats": [ "NNPS", "NNP", "NN" ], "scanning": [ "NN", "VBG" ], "couplets": [ "NNS" ], "Impersonal": [ "JJ" ], "handbooks": [ "NNS" ], "reconnaissanace": [ "NN" ], "Calabrese": [ "NNP" ], "lopes": [ "VBZ" ], "je": [ "FW" ], "tub": [ "NN" ], "Pechora": [ "NNP" ], "tug": [ "NN", "VB" ], "dates": [ "NNS", "VBZ" ], "parentheses": [ "NNS" ], "Pritzkers": [ "NNPS", "NNP", "NNS" ], "Melodious": [ "JJ" ], "Cho-Liang": [ "NNP" ], "bald-faced": [ "JJ" ], "multicolor": [ "JJ" ], "dated": [ "VBN", "JJ", "VBD" ], "stone-blind": [ "JJ" ], "dwellers": [ "NNS" ], "Employment": [ "NNP", "NN" ], "rehabilitated": [ "VBN" ], "Burgeoning": [ "VBG" ], "cancer": [ "NN" ], "yearall": [ "NN" ], "extendibles": [ "NNS" ], "team-mate": [ "NN" ], "Mistsubishi": [ "NNP" ], "Spontaneity": [ "NN" ], "scherzo": [ "NN" ], "Dominus": [ "NNP" ], "cancel": [ "VB", "NN" ], "Wasserstein": [ "NNP" ], "Basin": [ "NNP" ], "mortification": [ "NN" ], "tiniest": [ "JJS" ], "CASE": [ "NNP", "NN" ], "Urge": [ "VB" ], "cervical": [ "JJ" ], "Prevot": [ "NNP" ], "analogies": [ "NNS" ], "certify": [ "VB" ], "Escudome": [ "NNP" ], "unconsolidated": [ "JJ", "VBD", "VBN" ], "tone-generating": [ "JJ" ], "Reporters": [ "NNS", "NNPS" ], "rancher": [ "NN" ], "ranches": [ "NNS" ], "borders": [ "NNS", "VBZ" ], "Waterman": [ "NNP" ], "corduroys": [ "NNS" ], "hodgepodge": [ "NN" ], "Saxons": [ "NNP", "NNS" ], "offered": [ "VBN", "JJ", "VBD", "VBN|JJ" ], "Gottfried": [ "NNP" ], "self-respecting": [ "JJ" ], "acupuncture": [ "NN" ], "Condominium": [ "NNP" ], "Sprouted": [ "VBN" ], "vents": [ "NNS" ], "Sansome": [ "NNP" ], "Braintree": [ "NNP" ], "captivity": [ "NN" ], "Week-e": [ "NN" ], "fountain-head": [ "NN" ], "Campeau-owned": [ "JJ" ], "Marshall": [ "NNP" ], "yearling": [ "JJ" ], "compile": [ "VB" ], "terrestial": [ "JJ" ], "Sloane": [ "NNP" ], "antipathies": [ "NNS" ], "Week-r": [ "NN" ], "paper-and-crayon": [ "JJ" ], "margin": [ "NN", "JJ" ], "Leser": [ "NNP" ], "McCutchen": [ "NNP" ], "Gutermann": [ "NNP" ], "wish-lists": [ "NNS" ], "Petery": [ "NNP" ], "Amounts": [ "NNS" ], "Carrington": [ "NNP" ], "sincere": [ "JJ" ], "expensive-to-produce": [ "JJ" ], "Caskey": [ "NNP" ], "Peters": [ "NNP" ], "Petronas": [ "NNP" ], "baths": [ "NNS", "VBZ" ], "Valencia": [ "NNP" ], "single-minded": [ "JJ" ], "receptacle": [ "NN" ], "Plant": [ "NNP", "NN" ], "Gliedman": [ "NNP" ], "vagaries": [ "NNS" ], "Plans": [ "NNS", "NNP", "NNPS", "VBZ" ], "Lakshmipura": [ "NNP" ], "ultra-right": [ "JJ" ], "Napolitan": [ "NNP" ], "Tonka": [ "NNP" ], "authentication": [ "NN" ], "Plane": [ "NNP", "NN" ], "flageolet": [ "NN" ], "afflicts": [ "VBZ" ], "Plano": [ "NNP" ], "Hewitt": [ "NNP" ], "Plank": [ "VB" ], "buy-outs": [ "NNS" ], "SciMed": [ "NNP", "VBD", "VBN" ], "Salvador": [ "NNP" ], "independents": [ "NNS" ], "Humanism": [ "NNP" ], "Drawers": [ "NNS" ], "Humanist": [ "NNP" ], "stop-overs": [ "NNS" ], "Patil": [ "NNP" ], "Maritain": [ "NNP" ], "drain": [ "NN", "VBP", "VB" ], "Rene": [ "NNP" ], "Coats": [ "NNP", "NNS", "NNPS" ], "pressure-formed": [ "JJ" ], "Renk": [ "NNP" ], "Reno": [ "NNP" ], "Waggoner": [ "NNP" ], "Misubishi": [ "NNP" ], "Rent": [ "NNP", "NN" ], "Britto": [ "NNP" ], "Britta": [ "NNP" ], "Burkette": [ "NNP" ], "amazed": [ "VBN", "VBD", "JJ" ], "breakfasts": [ "NNS" ], "lumbered": [ "VBD" ], "wheat-growing": [ "JJ" ], "Eliot-or-Martin": [ "NNP|CC|NP" ], "laudably": [ "RB" ], "buzz-buzz-buzz": [ "NN" ], "Gabelli": [ "NNP" ], "Gambling": [ "NN" ], "abstractors": [ "NNS" ], "asthma": [ "NN" ], "comradeship": [ "NN" ], "property-price": [ "JJ" ], "Ingham": [ "NNP" ], "trespasses": [ "NNS" ], "out-reaching": [ "JJ" ], "Although": [ "IN" ], "eviscerate": [ "VB" ], "self-energizing": [ "JJ" ], "Glow": [ "NNP" ], "epsiode": [ "NN" ], "newsmen": [ "NNS" ], "price-determination": [ "JJ" ], "dissected": [ "VBD", "VBN" ], "Faulknerian": [ "JJ" ], "inhibition": [ "NN" ], "venues": [ "NNS" ], "Jeanene": [ "NNP" ], "Ups": [ "VBZ" ], "Henney": [ "NNP" ], "bulletin-board": [ "NN" ], "terrorize": [ "VB" ], "Kayabashi-san": [ "NNP" ], "Uncomfortably": [ "RB" ], "Collagen": [ "NNP" ], "macrocrystals": [ "NNS" ], "Curiae": [ "FW" ], "thighs": [ "NNS" ], "drainage": [ "NN" ], "in-groups": [ "NN" ], "dictating": [ "VBG", "NN" ], "doll": [ "NN" ], "civil-liberties": [ "NNS" ], "Stinky": [ "NNP" ], "dole": [ "VB", "NN", "VBP" ], "slavery": [ "NN" ], "Kravitz": [ "NNP" ], "a-coming": [ "VBG" ], "Schutz": [ "NNP" ], "booming": [ "JJ", "VBG" ], "Kenton": [ "NNP" ], "gapped": [ "VBD" ], "Rake": [ "NN", "NNP" ], "Medea": [ "NNP" ], "MD-80s": [ "NNS" ], "tailor-made": [ "JJ" ], "unitized": [ "VBN" ], "lunar": [ "JJ" ], "charge-a-plate": [ "NN" ], "low-lifes": [ "NNS" ], "earnings-limit": [ "JJ" ], "USDA": [ "NNP" ], "seconds": [ "NNS" ], "IOUs": [ "NNS" ], "snivelings": [ "NNS" ], "Bashing": [ "VBG" ], "government-imposed": [ "JJ" ], "drums": [ "NNS" ], "Horner": [ "NNP" ], "Termination": [ "NN" ], "Dionysus": [ "NNP" ], "refers": [ "VBZ" ], "Sci-Med": [ "NNP" ], "Hornet": [ "NNP" ], "giggle": [ "NN" ], "stations": [ "NNS" ], "island": [ "NN" ], "Jee-sus": [ "UH" ], "soulmates": [ "NNS" ], "meaning": [ "NN", "VBG" ], "smattering": [ "NN" ], "Trade": [ "NNP", "NN" ], "COCOA": [ "NN" ], "Suspecting": [ "VBG" ], "metaphors": [ "NNS" ], "shunts": [ "NNS" ], "base-wage": [ "JJ" ], "decimated": [ "VBN", "VBD" ], "Capacity": [ "NN" ], "sinners\\/Who": [ "NN" ], "Poachers": [ "NNS" ], "scholar-businessman": [ "NN" ], "W-2": [ "NN" ], "point-blank": [ "JJ" ], "Getrudis": [ "NNP" ], "Tenders": [ "NNS" ], "Wetzel": [ "NNP" ], "fertilizer": [ "NN" ], "pharmaceutical": [ "JJ", "NN" ], "wrinkle": [ "NN" ], "Second-tier": [ "JJ" ], "higher-grade": [ "JJ" ], "handcuffed": [ "VBN" ], "Masius": [ "NNP" ], "iambic": [ "JJ" ], "passports": [ "NNS" ], "non-political": [ "JJ" ], "sorrel": [ "JJ", "NN" ], "lunchroom": [ "NN" ], "Hovis": [ "NNP" ], "fast-track": [ "JJ" ], "buggy": [ "NN" ], "bookstore": [ "NN" ], "announcement": [ "NN" ], "Duty": [ "NNP", "NN" ], "take-out": [ "NN" ], "Sistemas": [ "NNP" ], "drills": [ "NNS", "VBZ" ], "passenger-loading": [ "JJ" ], "Frazzano": [ "NNP" ], "Outraged": [ "JJ" ], "Attitude": [ "NN" ], "non-Jews": [ "NNS" ], "netting": [ "VBG" ], "organize": [ "VB", "VBP" ], "pathlogy": [ "NN" ], "Alamos": [ "NNP" ], "diffusers": [ "NNS" ], "wildness": [ "NN" ], "Stenexport": [ "NNP" ], "Milan-based": [ "JJ" ], "force-level": [ "JJ" ], "Valen": [ "NNP" ], "garrulous": [ "JJ" ], "importing": [ "VBG", "NN" ], "Prescription": [ "NNP" ], "neurotransmitters": [ "NNS" ], "Djakarta": [ "NNP" ], "Springfield": [ "NNP" ], "Benet": [ "NNP" ], "Daggs": [ "NNP" ], "Benes": [ "NNP" ], "Vale\\": [ "IN" ], "Wrangling": [ "VBG" ], "Montreal-based": [ "JJ" ], "hybrid": [ "JJ", "NN" ], "creditcard": [ "NN" ], "Blue-chips": [ "NNS" ], "Dienbienphu": [ "NNP" ], "raucously": [ "RB" ], "Petrocorp": [ "NNP" ], "self-reliance": [ "NN" ], "privatized": [ "VBN", "VBD", "JJ" ], "lapel": [ "NN" ], "shelter": [ "NN", "VB" ], "durations": [ "NNS" ], "colicky": [ "JJ" ], "brandy": [ "NN", "VB" ], "Biosciences": [ "NNP" ], "democratize": [ "VB" ], "brands": [ "NNS", "VBZ" ], "RECEIVED": [ "VBD", "VBN" ], "Major": [ "NNP", "JJ", "NN" ], "local-government": [ "JJ" ], "disabilities": [ "NNS" ], "Culligan": [ "NNP" ], "Geologists": [ "NNS" ], "roams": [ "VBZ" ], "gangway": [ "NN" ], "Nagorno-Karabakh": [ "NNP" ], "looped": [ "VBD" ], "pheasant": [ "NN" ], "long-haul": [ "JJ", "NN" ], "fly-by-night": [ "JJ" ], "invariable": [ "JJ" ], "Bears-Cleveland": [ "NNP" ], "bravest": [ "JJS" ], "talky": [ "JJ" ], "anti-Communist": [ "JJ" ], "invariably": [ "RB" ], "talks": [ "NNS", "VBZ" ], "Deducting": [ "VBG" ], "Kellar": [ "NNP" ], "BONDS": [ "NNS" ], "Adios-Direct": [ "NNP" ], "field-flattening": [ "JJ" ], "tranquillity": [ "NN" ], "on-ramps": [ "NNS" ], "chucking": [ "VBG" ], "Leuzzi": [ "NNP" ], "Westchester": [ "NNP" ], "heterogeneity": [ "NN" ], "Indecon": [ "NNP" ], "Glick": [ "NNP" ], "subsidiarity": [ "NN" ], "Yellowknife": [ "NNP" ], "carefree": [ "JJ" ], "Standards": [ "NNPS", "NNP" ], "fall": [ "NN", "VBP", "VB" ], "Recherches": [ "FW" ], "Adella": [ "NNP" ], "Yamatane": [ "NNP" ], "Araby": [ "NNP" ], "alien": [ "JJ", "NN" ], "neurological": [ "JJ" ], "dispel": [ "VB" ], "grand-jury": [ "NN", "JJ" ], "Arabs": [ "NNPS", "NNS" ], "Sowell": [ "NNP" ], "windy": [ "JJ" ], "retargeting": [ "VBG" ], "brewing-assets": [ "NNS" ], "controlled-circulation": [ "JJ" ], "romping": [ "VBG" ], "economically": [ "RB" ], "infatuation": [ "NN" ], "species-dependent": [ "JJ" ], "Shotguns": [ "NNS" ], "Only": [ "RB", "JJ" ], "congressional-item": [ "JJ" ], "misrepresent": [ "VB" ], "Malpede": [ "NNP" ], "stood": [ "VBD", "VBN" ], "stool": [ "NN" ], "Awarding": [ "VBG" ], "stoop": [ "VB", "NN", "VBP" ], "traineeships": [ "NNS" ], "outgoing": [ "JJ", "VBG" ], "cross-striations": [ "NNS" ], "anchoritism": [ "NN" ], "ingratiate": [ "VB" ], "Patti": [ "NNP" ], "inconsiderable": [ "JJ" ], "operating": [ "VBG", "JJ", "NN" ], "fifth-generation": [ "JJ" ], "auto-assembly": [ "NN" ], "prosoma": [ "NN" ], "Patty": [ "NNP" ], "prosecutors": [ "NNS" ], "Chicago-style": [ "JJ" ], "Bromwich": [ "NNP" ], "airport": [ "NN" ], "milky": [ "JJ" ], "jingle": [ "NN" ], "Colleen": [ "NNP" ], "narrow": [ "JJ", "VB" ], "milks": [ "VBZ", "NNS" ], "nose-to-nose": [ "JJ" ], "Y-Teen": [ "NNP" ], "Lighthouse": [ "NNP" ], "self-imposed": [ "JJ" ], "Sandlund": [ "NNP" ], "extinction": [ "NN" ], "armed": [ "VBN", "JJ" ], "Tariffs": [ "NNPS", "NNP" ], "bountyhunters": [ "NNS" ], "suspensions": [ "NNS" ], "doll-sized": [ "JJ" ], "arctic": [ "JJ" ], "ex-truck": [ "JJ" ], "Alumina": [ "NNP" ], "aperture": [ "NN" ], "dirt-catcher": [ "NN" ], "quashing": [ "VBG" ], "Fraumeni": [ "NNP" ], "much-needed": [ "JJ" ], "formality": [ "NN" ], "Vienot": [ "NNP" ], "patrolmen": [ "NNS" ], "FMR": [ "NNP" ], "Nimitz": [ "NNP" ], "admissions": [ "NNS" ], "Lizhi": [ "NNP" ], "controlling": [ "VBG", "JJ", "NN" ], "FMI": [ "NNP" ], "Rudkoebing": [ "NNP" ], "projective": [ "JJ" ], "Harcourt": [ "NNP" ], "FMC": [ "NNP" ], "town": [ "NN" ], "dey": [ "PRP" ], "Shrontz": [ "NNP" ], "der": [ "NNP", "JJR", "FW", "NN" ], "des": [ "NNP", "FW" ], "solenoid": [ "NN" ], "Byron": [ "NNP" ], "dew": [ "NN" ], "dei": [ "NNP", "FW" ], "del": [ "NNP", "DT", "FW" ], "head-in-the-clouds": [ "JJ" ], "den": [ "NN", "NNP" ], "ProCyte": [ "NNP" ], "strategies": [ "NNS" ], "aspirant": [ "NN" ], "tows": [ "NNS" ], "def": [ "JJ", "NN" ], "wails": [ "NNS" ], "purchaser": [ "NN" ], "purchases": [ "NNS", "VBZ" ], "dandy": [ "JJ" ], "Rilke": [ "NNP" ], "sound-alike": [ "JJ" ], "galleries": [ "NNS" ], "Aldo": [ "NNP" ], "Schwarzwaldklinik": [ "NNP" ], "purchased": [ "VBN", "JJ", "VBD" ], "KCRA": [ "NNP" ], "Injury": [ "NNP", "NN" ], "Alda": [ "NNP" ], "Kerkorian-owned": [ "JJ" ], "maturing": [ "VBG" ], "EC-made": [ "JJ" ], "drained": [ "VBN", "VBD" ], "sec.": [ "NN", "NNS" ], "showmanship": [ "NN" ], "automatic": [ "JJ", "NN" ], "self-control": [ "NN" ], "unclothed": [ "JJ" ], "Vinegar": [ "NNP" ], "big-risk": [ "JJ" ], "Subdivision": [ "NNP" ], "Hip-pocket": [ "JJ" ], "soutane": [ "NN" ], "revolutionizing": [ "VBG" ], "blacker": [ "JJR" ], "surfactants": [ "NNS" ], "Eurobonds": [ "NNS", "NNPS" ], "disquieting": [ "JJ" ], "red-cheeked": [ "JJ" ], "Collecting": [ "NNP" ], "Protectionist": [ "JJ" ], "Dillon": [ "NNP" ], "Shivering": [ "VBG" ], "Rhythmic": [ "JJ" ], "mass-merchandise": [ "NN" ], "IBC\\/Donoghue": [ "NN" ], "Dillow": [ "NNP" ], "nonshifters": [ "NNS" ], "foretell": [ "VB" ], "Candice": [ "NNP" ], "H.W.": [ "NNP" ], "methadone": [ "NN" ], "pay": [ "VB", "VBD", "VBP", "NN" ], "pleasure": [ "NN", "JJ", "VB" ], "four-wheel-drive": [ "NN", "JJ" ], "Jazz": [ "NNP", "NN" ], "stains": [ "NNS", "VBZ" ], "co-chairperson": [ "NN" ], "carousing": [ "NN" ], "remade": [ "VBN", "NN", "VB" ], "Richmond-Watson": [ "NNP" ], "Bisque": [ "NN" ], "Demoiselles": [ "NNP" ], "lats": [ "NNS" ], "iodinated": [ "VBN" ], "FLYING": [ "VBG" ], "Covitz": [ "NNP" ], "handheld": [ "JJ" ], "late": [ "JJ", "RB" ], "Quest": [ "NNP" ], "PABA": [ "NN" ], "compilation": [ "NN" ], "jostled": [ "VBD" ], "lath": [ "NN" ], "dolls": [ "NNS" ], "seeking": [ "VBG" ], "Barbarians": [ "NNP" ], "Reagan-like": [ "JJ" ], "Vatican": [ "NNP", "JJ" ], "unauthentic": [ "JJ" ], "Cruzan": [ "NNP" ], "Oil-tool": [ "NN" ], "crispness": [ "NN" ], "too-large": [ "JJ" ], "right-hand": [ "JJ" ], "Siedenburg": [ "NNP" ], "boisterous": [ "JJ" ], "monsoon": [ "NN" ], "harboring": [ "VBG" ], "Edmonton": [ "NNP" ], "Hmmm": [ "UH" ], "Skase": [ "NNP" ], "dumbbells": [ "NNS" ], "Strictly": [ "RB" ], "foxes": [ "NNS" ], "deployable": [ "JJ" ], "Waiting": [ "VBG", "NNP" ], "Plaumann": [ "NNP" ], "antibody-making": [ "JJ" ], "dignitaries": [ "NNS" ], "peltry": [ "NN" ], "Wires": [ "NNS" ], "funding": [ "NN", "VBG", "NN|JJ" ], "trade-preparatory": [ "NN" ], "Victrola": [ "NN" ], "Rathbone": [ "NNP" ], "pigeon": [ "NN" ], "projected": [ "VBN", "JJ", "VBD" ], "Sweathouse": [ "NN" ], "hundred-odd": [ "JJ" ], "sub-Saharan": [ "JJ", "NNP" ], "KC-135s": [ "NNS" ], "Bushell": [ "NNP" ], "stewards": [ "NNS" ], "arclike": [ "JJ" ], "pathetic": [ "JJ" ], "propfans": [ "NNS" ], "pleasant": [ "JJ" ], "melodies": [ "NNS" ], "contrivance": [ "NN" ], "Arkabutla": [ "NNP" ], "Tax-exempt": [ "JJ" ], "Rumack": [ "NNP" ], "dribbled": [ "VBD" ], "MVestment": [ "NNP" ], "co-operated": [ "VBD" ], "six-months": [ "NNS" ], "lotions": [ "NNS" ], "Over-50": [ "JJ" ], "disclaimer": [ "NN" ], "drawing-room": [ "NN" ], "co-operates": [ "VBZ" ], "Rover": [ "NNP" ], "FH-77B": [ "NNP" ], "Syndrome": [ "NNP" ], "netted": [ "VBD", "VBN" ], "waged": [ "VBN", "VBD" ], "non-volatile": [ "JJ" ], "Participants": [ "NNS" ], "Lithe": [ "JJ" ], "Ethan": [ "NNP" ], "campground": [ "NN" ], "gripping": [ "VBG", "JJ" ], "wages": [ "NNS" ], "wager": [ "NN", "VB" ], "modish": [ "JJ" ], "joint-venture": [ "JJ", "NN" ], "near-at-hand": [ "JJ" ], "Algeria": [ "NNP" ], "SAATCHI": [ "NNP" ], "Anti-dumping": [ "JJ" ], "construct": [ "VB", "VBP" ], "obligatory": [ "JJ" ], "paint": [ "NN", "VB", "VBP" ], "Pyxis": [ "NNP" ], "mama": [ "NN" ], "almost-industry": [ "NN" ], "Durkheim": [ "NNP" ], "STERLING": [ "NNP" ], "Modifications": [ "NNS" ], "darkroom": [ "NN" ], "Deltec": [ "NNP" ], "needle": [ "NN", "VB" ], "defused": [ "VBN" ], "glycerin": [ "NN" ], "jaggedly": [ "RB" ], "bunter": [ "NN" ], "anti-China": [ "JJ" ], "gruesome": [ "JJ" ], "stirs": [ "VBZ" ], "Microphones": [ "NNS" ], "Thiebaud": [ "NNP" ], "b": [ "NN", "LS" ], "Berland": [ "NNP" ], "three-day-old": [ "JJ" ], "Commercializing": [ "VBG" ], "spirited": [ "JJ", "VBN" ], "tensionless": [ "JJ" ], "bohemian": [ "JJ" ], "Accounting-profession": [ "NN" ], "polishing": [ "VBG", "NN", "VBG|NN" ], "Tabernacle": [ "NNP" ], "U.S.-dominated": [ "JJ" ], "Ito": [ "NNP" ], "Henrietta": [ "NNP" ], "disunion": [ "NN" ], "concludes": [ "VBZ" ], "confirms": [ "VBZ" ], "paths": [ "NNS" ], "providers": [ "NNS" ], "escapades": [ "NNS" ], "trip": [ "NN", "VB" ], "assails": [ "VBZ" ], "aniseikonic": [ "JJ" ], "Derwin": [ "NNP" ], "Mayoral": [ "JJ" ], "iself": [ "NN" ], "Constantinople": [ "NNP" ], "Aventino": [ "NNP" ], "bull-sessions": [ "NNS" ], "townhouses": [ "NNS" ], "Amityville": [ "NNP" ], "Greenmoss": [ "NNP" ], "Revolutionary": [ "NNP" ], "N-acetylcysteine": [ "NNP" ], "bottle": [ "NN", "VB" ], "most-strident": [ "JJ" ], "uncommunicative": [ "JJ" ], "Eriskay": [ "NNP" ], "Governor": [ "NNP", "NN" ], "inexact": [ "JJ" ], "single-premium": [ "JJ" ], "significant": [ "JJ" ], "farces": [ "NNS" ], "kiddies": [ "NNS" ], "unavailable": [ "JJ" ], "First-round": [ "JJ" ], "Egypt": [ "NNP" ], "Consistent": [ "JJ" ], "charitably": [ "RB" ], "Levitt": [ "NNP" ], "charitable": [ "JJ" ], "cramped": [ "JJ" ], "V-6-equipped": [ "JJ" ], "Robinson": [ "NNP" ], "founds": [ "VBZ" ], "FLORIDA": [ "NNP" ], "health-care-product": [ "NN" ], "carefully": [ "RB" ], "Francois": [ "NNP" ], "Aleksei": [ "NNP" ], "one-yen": [ "JJ" ], "Furlaud": [ "NNP" ], "rebuttals": [ "NNS" ], "worthy": [ "JJ" ], "up-and-coming": [ "JJ" ], "Granges": [ "NNP", "NNS" ], "Granger": [ "NNP" ], "suspensor": [ "NN" ], "Zbigniew": [ "NNP" ], "Coldwater": [ "NNP" ], "gun-shot": [ "NN" ], "Maggetto": [ "NNP" ], "batted": [ "VBD", "VBN" ], "batten": [ "NN" ], "sepulchred": [ "VBN" ], "high-handed": [ "JJ" ], "courage": [ "NN" ], "hereabout": [ "JJ" ], "Janice": [ "NNP" ], "restart": [ "VB" ], "Laenderbank": [ "NNP" ], "Saying": [ "VBG" ], "Rightly": [ "RB" ], "Campbell-Mithun-Esty": [ "NNP" ], "Lifting": [ "VBG" ], "Floridabanc": [ "NNP" ], "crabmeat": [ "NN" ], "six-month": [ "JJ" ], "Marion": [ "NNP" ], "supercede": [ "VBP" ], "child-parent": [ "JJ" ], "improvisatory": [ "JJ" ], "animized": [ "VBN" ], "Create": [ "VB" ], "double-crosser": [ "JJ" ], "Linter": [ "NNP" ], "Chaos": [ "NNP" ], "arouse": [ "VB", "VBP" ], "large-capitalization": [ "JJ", "NN" ], "Hinton": [ "NNP" ], "Lolly": [ "NNP" ], "feared": [ "VBD", "VBN", "JJ" ], "Witkin": [ "NNP" ], "sleep-deprived": [ "JJ" ], "Requiem": [ "NNP" ], "LONGS": [ "NNP" ], "Indexing": [ "NN", "VBG" ], "Osborne": [ "NNP" ], "CTAs": [ "NNS" ], "Accepting": [ "VBG" ], "ultra-fast": [ "JJ" ], "alimony": [ "NN" ], "slow-growth": [ "NN" ], "Monopoly": [ "NN", "NNP" ], "rubbin": [ "VBG" ], "Programming": [ "NNP", "NN" ], "Malinovsky": [ "NNP" ], "Unprovable": [ "JJ" ], "pagoda": [ "NN" ], "fripperies": [ "NNS" ], "Kolakowski": [ "NNP" ], "endows": [ "VBZ" ], "Costello": [ "NNP" ], "dualism": [ "NN" ], "Unexpected": [ "JJ" ], "journeyed": [ "VBD" ], "Buckman": [ "NNP" ], "LaBow": [ "NNP" ], "tightens": [ "VBZ" ], "share...": [ ":" ], "Telford-made": [ "JJ" ], "conversion-by-renovation": [ "JJ" ], "McGehee": [ "NNP" ], "Inventories": [ "NNS" ], "telegraphing": [ "VBG" ], "best-laid": [ "JJ" ], "Temperature": [ "NN", "NNP" ], "dwindle": [ "VB" ], "recycling": [ "NN", "VBG|NN", "VBG" ], "smother": [ "VB" ], "newborn": [ "JJ" ], "shutdown": [ "NN" ], "Taber": [ "NNP" ], "esophagus": [ "NN" ], "Disney": [ "NNP" ], "Thyroglobulin": [ "NN" ], "platinum": [ "NN" ], "Laicos": [ "NNP" ], "Gilley": [ "NNP" ], "dovetail": [ "VBP", "VB" ], "Gardiner": [ "NNP" ], "life-of-contract": [ "JJ" ], "Edmunston": [ "NNP" ], "Gilles": [ "NNP" ], "Etablissements": [ "NNP" ], "Sssshoo": [ "NN" ], "secret": [ "JJ", "NN" ], "navigate": [ "VB" ], "Bancorp": [ "NNP" ], "NEEDS": [ "NNS" ], "Rashid": [ "NNP" ], "Bally": [ "NNP" ], "cruelty": [ "NN" ], "priced": [ "VBN", "JJ", "VBD" ], "Kupcinet": [ "NNP" ], "Connaught": [ "NNP", "NN" ], "AMR-Delta": [ "NNP" ], "motion-picture": [ "NN", "JJ" ], "neckties": [ "NNS" ], "HEI": [ "NNP" ], "Feed": [ "VB", "NN" ], "Kelseyville": [ "NNP" ], "thermoelectric": [ "JJ" ], "classifications": [ "NNS" ], "Charls": [ "NNP" ], "crutch": [ "NN" ], "Image-processing": [ "NN" ], "sexuality": [ "NN" ], "careers": [ "NNS" ], "Fees": [ "NNS", "NNPS" ], "fun": [ "NN", "JJ" ], "Clapp": [ "NNP" ], "irised": [ "VBN" ], "guarantor": [ "NN" ], "pertinence": [ "NN" ], "larger": [ "JJR", "RBR" ], "Khan": [ "NNP" ], "Price-Fleming": [ "NNP" ], "shapeless": [ "JJ" ], "Bismarck": [ "NNP", "NN" ], "Clandestine": [ "JJ" ], "encountered": [ "VBN", "VBD" ], "seven-volume": [ "JJ" ], "November\\": [ "JJ" ], "ICBM": [ "NNP" ], "at-bats": [ "NNS" ], "defined-contribution": [ "NN" ], "facetiously": [ "RB" ], "anaesthesia": [ "NN" ], "Bleaching": [ "VBG" ], "low-slung": [ "JJ" ], "emphasize": [ "VB", "VBP" ], "nosebag": [ "NN" ], "Follows": [ "NNP" ], "Jerritts": [ "NNP" ], "Filmakers": [ "NNPS" ], "sapiens": [ "JJ" ], "belfry": [ "NN" ], "assignment": [ "NN" ], "bed-liner": [ "NN" ], "countersued": [ "VBD", "VBN" ], "heliports": [ "NNS" ], "newscasts": [ "NNS" ], "Adjust": [ "VB" ], "Marinas": [ "NNS" ], "exerts": [ "VBZ" ], "aggregate": [ "JJ", "NN" ], "Flight": [ "NNP", "NN" ], "considerately": [ "RB" ], "Reding": [ "NN" ], "Cutlass": [ "NNP" ], "shaded": [ "VBN", "VBD", "JJ" ], "rearm": [ "VB" ], "halve": [ "VB" ], "Toole": [ "NNP" ], "spent": [ "VBD", "JJ", "VBN" ], "unannounced": [ "JJ" ], "howe": [ "WRB" ], "rears": [ "VBZ" ], "sulking": [ "VBG" ], "Tools": [ "NNPS" ], "spend": [ "VB", "VBP" ], "Kumble": [ "NNP" ], "singlehandedly": [ "RB" ], "resistive": [ "JJ" ], "Farnell": [ "NNP" ], "untrammeled": [ "VBN", "JJ" ], "Cabana": [ "NNP" ], "soft-headed": [ "JJ" ], "atomic": [ "JJ" ], "diaphragmic": [ "JJ" ], "mob": [ "NN" ], "Include": [ "VB" ], "injuries": [ "NNS" ], "punted": [ "VBD" ], "GREW": [ "VBD" ], "Lavity": [ "NNP" ], "Jungho": [ "NNP" ], "GREY": [ "NNP" ], "Sheraton-Dallas": [ "NNP" ], "regimented": [ "VBN", "JJ" ], "impoverished": [ "JJ", "VBN" ], "animosities": [ "NNS" ], "hates": [ "VBZ", "NNS" ], "luxury": [ "NN", "JJ" ], "adversaries": [ "NNS" ], "Loews": [ "NNP" ], "Jiffy-Couch-a-Bed": [ "NNP" ], "rebound": [ "NN", "VBP", "VB" ], "jerked": [ "VBD", "VBN" ], "Loewy": [ "NNP" ], "Loewe": [ "NNP" ], "expecially": [ "RB" ], "Euroconsumer": [ "NN" ], "messengers": [ "NNS" ], "Brierley": [ "NNP" ], "Classy": [ "NNP" ], "goldstock": [ "NN" ], "Dali-esque": [ "JJ" ], "Loewi": [ "NNP" ], "Laudably": [ "RB" ], "darling": [ "NN", "JJ" ], "besiegers": [ "NNS" ], "coarsened": [ "VBN" ], "indication": [ "NN" ], "moccasins": [ "NNS" ], "Guber-Peter": [ "NNP" ], "Java": [ "NNP" ], "Athearn": [ "NNP" ], "MinisPort": [ "NNP" ], "inching": [ "VBG" ], "back": [ "RB", "IN", "JJ", "NN", "RP", "VB", "VBP" ], "baci": [ "NNS" ], "Kerosene": [ "NN" ], "samplings": [ "NNS" ], "De-Kooning": [ "NNP" ], "sneakers": [ "NNS" ], "bogus": [ "JJ" ], "monthsit": [ "NN" ], "Unificationists": [ "NNS" ], "segregating": [ "VBG" ], "invade": [ "VB", "VBP" ], "resolutely": [ "RB" ], "Bausch": [ "NNP" ], "viscosity": [ "NN" ], "lasted": [ "VBD", "VBN" ], "mettlesome": [ "JJ" ], "Syndication": [ "NNP" ], "effusive": [ "JJ" ], "most-admired": [ "JJ" ], "racetracks": [ "NNS" ], "newsprints": [ "NNS" ], "Motivated": [ "VBN" ], "crone": [ "NN" ], "Strippers": [ "NNS" ], "Buckles": [ "NNP" ], "Alvin": [ "NNP" ], "Voters": [ "NNS", "NNP", "NNPS" ], "Forbidden": [ "NNP" ], "stockholdings": [ "NNS" ], "offshoot": [ "NN" ], "telegraphers": [ "NNS" ], "Waste-management": [ "NN" ], "bore\\": [ "VBP" ], "Photofinishing": [ "NNP" ], "Shares": [ "NNS", "NNP", "NNPS" ], "Sharer": [ "NNP" ], "Work-outs": [ "NNS" ], "Drybred": [ "NNP" ], "ministrations": [ "NNS" ], "Hydra-matic": [ "JJ" ], "Buckley": [ "NNP" ], "Mehta": [ "NNP" ], "jockey": [ "NN", "VBP" ], "conduits": [ "NNS" ], "bores": [ "NNS", "VBZ" ], "borer": [ "NN" ], "junk-yard": [ "NN" ], "pared": [ "VBN", "VBD" ], "Unification": [ "NNP" ], "re-introduction": [ "NN" ], "Payback": [ "NN" ], "bored": [ "VBN", "JJ", "VBD" ], "Come": [ "VB", "VBN", "VBP", "NNP" ], "Tatian": [ "NNP" ], "Aqua-Ban": [ "NNP" ], "anti-lobbyist": [ "NN" ], "Slavery": [ "NN", "NNP" ], "timetable": [ "NN" ], "Mudge": [ "NNP" ], "Psalm": [ "NNP", "NN", "VB" ], "Bostitch": [ "NNP" ], "Risques": [ "NNP" ], "nutshell": [ "NN" ], "excision": [ "NN" ], "Norville": [ "NNP" ], "rejection": [ "NN" ], "divans": [ "NNS" ], "Streets": [ "NNP", "NNPS" ], "Knudson": [ "NNP" ], "HAWLEY": [ "NNP" ], "skittish": [ "JJ" ], "nepotism": [ "NN" ], "Mon-Goddess": [ "NNP" ], "possessor": [ "NN" ], "engineering": [ "NN", "VBG" ], "secretions": [ "NNS" ], "free-burning": [ "JJ" ], "organdy": [ "NN" ], "denying": [ "VBG", "NN" ], "hydrous": [ "JJ" ], "commonest": [ "JJS" ], "dimmed": [ "VBN", "VBD" ], "Crafton-Preyer": [ "NNP" ], "Shelters": [ "NNPS" ], "dimmer": [ "RB", "JJR" ], "Solvay": [ "NNP" ], "toy-making": [ "JJ" ], "cartoonists": [ "NNS" ], "gulag": [ "NN" ], "SITE": [ "NN" ], "LeBaron": [ "NNP" ], "stockmarket": [ "NN" ], "Cindy": [ "NNP" ], "Rupert": [ "NNP" ], "Comanche": [ "NNP" ], "Gus": [ "NNP", "NN" ], "theopylline": [ "NN" ], "voting": [ "NN", "JJ", "VBG" ], "Gur": [ "NNP" ], "strolled": [ "VBD", "VBN" ], "admiring": [ "VBG" ], "parrots": [ "NNS" ], "Roots": [ "NNPS" ], "minors": [ "NNS" ], "Surprises": [ "NNS" ], "satellite-TV": [ "JJ" ], "golfed": [ "VBN" ], "overly": [ "RB" ], "turnarounds": [ "NNS" ], "Corp.:8.30": [ "NNP" ], "golfer": [ "NN" ], "disintegration": [ "NN" ], "FortressEurope": [ "NN" ], "Surprised": [ "VBN" ], "company-wide": [ "JJ" ], "graves": [ "NNS" ], "graver": [ "JJR", "RBR" ], "Business": [ "NNP", "NN" ], "Directionality": [ "NN" ], "peanut": [ "NN", "JJ" ], "Lucky": [ "NNP", "JJ" ], "Kartalia": [ "NNP" ], "Siemens": [ "NNP" ], "chaps": [ "NNS" ], "Exchanges": [ "NNS" ], "graven": [ "JJ" ], "gravel": [ "NN" ], "low-boiling": [ "JJ" ], "ISTAT": [ "NNP" ], "Erdmann": [ "NN" ], "Hoses": [ "NNS" ], "assay": [ "NN" ], "WRC": [ "NNP" ], "product-inspection": [ "JJ" ], "Ptachia": [ "NNP" ], "furloughed": [ "VBN" ], "Hosea": [ "NNP" ], "assai": [ "FW" ], "reverberate": [ "VB" ], "dial-tone": [ "NN" ], "string-of-pearls": [ "JJ" ], "severely": [ "RB" ], "Margaretville": [ "NN" ], "staffs": [ "NNS", "VBZ" ], "respectful": [ "JJ" ], "chap.": [ "NN" ], "Azucena": [ "NNP" ], "midterm": [ "JJ" ], "anachronistic": [ "JJ" ], "mottled": [ "VBN", "JJ" ], "disbursements": [ "NNS" ], "choppy": [ "JJ" ], "optics": [ "NNS" ], "dimes": [ "NNS" ], "HANOVER": [ "NNP" ], "first-degree": [ "JJ", "NN" ], "quakes": [ "NNS" ], "Maryinsky": [ "NN" ], "HANDICAPPED": [ "VBN" ], "cash-squeeze": [ "NN" ], "egocentric": [ "JJ" ], "Ghadiali": [ "NNP" ], "nests": [ "NNS" ], "Anne": [ "NNP", "VB" ], "suzerainty": [ "NN" ], "skeet": [ "NN" ], "doctrines": [ "NNS" ], "unshelled": [ "VBN" ], "good-faith": [ "NN", "JJ" ], "giving": [ "VBG", "NN" ], "worshipping": [ "VBG" ], "Warner-Lambart": [ "NNP" ], "Third-Quarter": [ "JJ", "NN" ], "rescheduling": [ "VBG", "NN" ], "eatings": [ "NNS" ], "secant": [ "NN" ], "Herford": [ "NNP" ], "group-identities": [ "NNS" ], "Suggested": [ "VBN", "JJ" ], "baring": [ "VBG" ], "Housewares": [ "NNPS" ], "corporate-image": [ "JJ" ], "C.J.B.": [ "NNP" ], "Hussein": [ "NNP" ], "Midmorning": [ "NN" ], "remark": [ "NN", "VB" ], "Grammophon": [ "NNP" ], "stalks": [ "NNS", "VBZ" ], "biographies": [ "NNS" ], "McKibben": [ "NNP" ], "aromas": [ "NNS" ], "transpiring": [ "VBG" ], "Open-adoption": [ "NN" ], "rueful": [ "JJ" ], "birthed": [ "VBN" ], "non-disabled": [ "JJ", "NN" ], "named": [ "VBN", "VBD", "JJ" ], "Oases": [ "NNS" ], "Specific-Time": [ "NNP" ], "Aerospace-Thomson": [ "NNP" ], "liqueur": [ "NN" ], "trachea": [ "NN" ], "private": [ "JJ", "NN", "RB" ], "factory-like": [ "JJ" ], "shoulder-to-shoulder": [ "JJ" ], "names": [ "NNS", "VBZ" ], "Covell": [ "NNP" ], "staple": [ "NN", "JJ" ], "McKeever": [ "NNP" ], "Stancs": [ "NNP" ], "highrises": [ "NNS" ], "Martians": [ "NNP" ], "seamless": [ "JJ" ], "Analyzer": [ "NNP" ], "manufactures": [ "VBZ", "NNS" ], "oils": [ "NNS" ], "themselves": [ "PRP" ], "Lockheed": [ "NNP", "VBN" ], "oily": [ "JJ" ], "assailed": [ "VBN", "VBD" ], "Sampson": [ "NNP" ], "WHICH": [ "WDT" ], "pre-Han": [ "NNP" ], "evacuant": [ "NN" ], "Agriculture-ministry": [ "NN" ], "Relief": [ "NNP", "NN" ], "Espanol": [ "NNP" ], "arranging": [ "VBG" ], "Australian-Chinese": [ "JJ" ], "harvest": [ "NN", "VB", "VBP" ], "pathos": [ "NN" ], "free-enterprise": [ "NN" ], "extrapolated": [ "VBN" ], "Lordstown": [ "NNP" ], "Calif.-based": [ "JJ" ], "Managers": [ "NNS", "NNP", "NNPS" ], "Nationalist": [ "JJ", "NNP" ], "crocked": [ "JJ" ], "high-class": [ "JJ" ], "instantaneously": [ "RB" ], "unreal": [ "JJ" ], "Nicolo": [ "NNP" ], "praise": [ "NN", "VBP", "VB" ], "suttee": [ "NN" ], "unread": [ "JJ" ], "Nationalism": [ "NN" ], "Nicole": [ "NNP" ], "prohibiting": [ "VBG" ], "proportions": [ "NNS" ], "reconstructed": [ "JJ", "VBD", "VBN" ], "Dogtown": [ "NNP" ], "PINDLING": [ "NNP" ], "justifications": [ "NNS" ], "Kerouac": [ "NNP" ], "Moline": [ "NNP" ], "maturities": [ "NNS" ], "daring": [ "JJ", "NN", "VBG" ], "maitres": [ "FW" ], "Clemenceau": [ "NNP" ], "says.": [ "VBZ" ], "high-art": [ "JJ" ], "Proves": [ "VBZ" ], "Dayan": [ "NNP" ], "airline": [ "NN" ], "buildings": [ "NNS" ], "El-Sadr": [ "NNP" ], "specifications": [ "NNS" ], "Videotron": [ "NNP" ], "philosophy": [ "NN" ], "bothered": [ "VBN", "VBD" ], "nullify": [ "VB", "VBP" ], "Cynwyd": [ "NNP" ], "frau": [ "FW" ], "unmasks": [ "VBZ" ], "Macrodantin": [ "NNP" ], "Orwell": [ "NNP" ], "Amca": [ "NNP" ], "syndrome": [ "NN" ], "scurvy": [ "NN" ], "Deployment": [ "NNP" ], "Maanen": [ "NNP" ], "one-acter": [ "JJ" ], "vehicle-marketing": [ "JJ" ], "Huffman": [ "NNP" ], "ignite": [ "VB" ], "resurgent": [ "JJ" ], "Molly": [ "NNP" ], "Collor": [ "NNP" ], "non-dividend-bearing": [ "JJ" ], "telephoning": [ "VBG", "NN" ], "Haruo": [ "NNP" ], "ALLIANCE": [ "NNP" ], "Buddha": [ "NNP" ], "Delco": [ "NNP" ], "roughness": [ "NN" ], "bunch": [ "NN" ], "industries": [ "NNS" ], "revived": [ "VBN", "VBD" ], "le": [ "FW", "DT" ], "lb": [ "NN", "NNS" ], "unstained": [ "JJ" ], "la": [ "FW", "NNP", "DT", "NN" ], "closely-packed": [ "JJ" ], "lo": [ "UH" ], "Cove": [ "NNP" ], "poeple": [ "NN" ], "Gripped": [ "VBN" ], "Cutbush": [ "NNP" ], "Unfriendly": [ "JJ" ], "revives": [ "VBZ" ], "extinguishers": [ "NNS" ], "criminal": [ "JJ", "NN" ], "spreading": [ "VBG" ], "Guinness": [ "NNP" ], "Porto": [ "NNP" ], "PepsiCola": [ "NNP" ], "Colton": [ "NNP" ], "questions": [ "NNS", "VBZ" ], "budget-strapped": [ "JJ" ], "swordfish": [ "NN" ], "muddle": [ "NN", "VB" ], "Porta": [ "NNP" ], "Filling": [ "VBG", "NNP" ], "LPL": [ "NNP" ], "Kooten": [ "NNP" ], "mandate": [ "NN", "VB" ], "Dynascan": [ "NNP" ], "Ports": [ "NNP", "NNS" ], "strive": [ "VB", "VBP" ], "commmercial": [ "JJ" ], "snowdrift": [ "NN" ], "Stonestown": [ "NNP" ], "turn-out": [ "JJ" ], "Laurentian": [ "NNP" ], "l.": [ "DT", "NN" ], "Popularism": [ "NN" ], "handiest": [ "JJS" ], "Honfed": [ "NNP" ], "lingerie": [ "NN" ], "Slickers": [ "NNPS" ], "Weber-controlled": [ "JJ" ], "typewriter": [ "NN" ], "Spaghetti": [ "NNP" ], "fairy-land": [ "NN" ], "Gorky": [ "NNP" ], "clay-like": [ "JJ" ], "Balloon": [ "NNP", "NN" ], "restructured": [ "VBN", "VBD", "JJ" ], "shriveled": [ "VBN", "VBD", "JJ" ], "standardizing": [ "VBG" ], "FDA-defined": [ "JJ" ], "attend": [ "VB", "VBP" ], "Polyurethane": [ "NN" ], "announcer": [ "NN" ], "announces": [ "VBZ" ], "Boardwalk": [ "NNP" ], "wholly": [ "RB" ], "hr.": [ "NN" ], "insolvent": [ "JJ", "NN" ], "Avondale": [ "NNP" ], "fondly": [ "RB" ], "marvelled": [ "VBD" ], "Sholom": [ "NNP" ], "hedged": [ "VBN", "VBD" ], "Reimbursement": [ "NN" ], "paramagnet": [ "NN" ], "a-drinking": [ "NN" ], "Kangas": [ "NNP" ], "Greener": [ "JJR" ], "payroll": [ "NN" ], "Minnery": [ "NNP" ], "salami": [ "NNS", "NN" ], "confirmations": [ "NNS" ], "Kinsley": [ "NNP" ], "Amoco-led": [ "JJ" ], "Iberian": [ "NNP", "JJ" ], "direct-marketing": [ "NN" ], "bleed": [ "VB", "VBP" ], "Krzysztof": [ "NNP" ], "Kaixi": [ "NNP" ], "deprived": [ "VBN", "VBN|JJ", "VBD" ], "poorer-quality": [ "JJR" ], "Ochs": [ "NNP" ], "overweening": [ "JJ" ], "volens": [ "FW" ], "noncorrosive": [ "JJ" ], "Hanging": [ "VBG" ], "retain": [ "VB", "VBP" ], "retail": [ "JJ", "NN", "VB", "VBP" ], "trapeze": [ "NN" ], "deprives": [ "VBZ" ], "Nettleton": [ "NNP" ], "rudely": [ "RB" ], "finest": [ "JJS" ], "fancy-free": [ "JJ" ], "unnaturally": [ "RB" ], "Modrow": [ "NNP" ], "notes": [ "NNS", "VBZ" ], "Administration": [ "NNP", "NN" ], "Carisbrook": [ "NNP" ], "Yeats": [ "NNP" ], "Unionized": [ "VBN" ], "alleys": [ "NNS" ], "barn-burner": [ "NN" ], "foreclosures": [ "NNS" ], "Careers": [ "NNS" ], "miserably": [ "RB" ], "monkey": [ "NN" ], "air-tickets": [ "NNS" ], "CDBG": [ "NNP" ], "Wives": [ "NNPS", "NNP", "NNS" ], "Lippincott": [ "NNP" ], "Street-inspired": [ "JJ" ], "messing": [ "VBG" ], "Farmland": [ "NNP" ], "galvanize": [ "VB" ], "Stevenson": [ "NNP" ], "wildest": [ "JJS" ], "Stoic-patristic": [ "JJ" ], "DeVille": [ "NNP" ], "highlands": [ "NNS" ], "AZT-resistant": [ "JJ" ], "Knox-like": [ "JJ" ], "Vogelstein": [ "NNP" ], "Universal": [ "NNP", "JJ" ], "co-production": [ "NN", "JJ" ], "Grevile": [ "NNP" ], "Burton": [ "NNP" ], "Bayne": [ "NNP" ], "T-1000": [ "NNP" ], "Lovingly": [ "RB" ], "teaspoonfuls": [ "NNS" ], "wakes": [ "VBZ" ], "jinks": [ "NNS" ], "bisexual": [ "JJ" ], "tidy": [ "JJ" ], "allotments": [ "NNS" ], "comfortable": [ "JJ", "NN" ], "tide": [ "NN", "VB" ], "Filming": [ "NN" ], "comfortably": [ "RB" ], "miserable": [ "JJ" ], "countryman": [ "NN" ], "keener": [ "JJR" ], "Grammys": [ "NNS" ], "regenerates": [ "VBZ" ], "microeconomy": [ "NN" ], "Activities": [ "NNP", "NNPS" ], "Uptick": [ "NN" ], "tire-maker": [ "NN" ], "saponins": [ "NNS" ], "Thousand": [ "NNP" ], "billiards": [ "NN", "NNS" ], "Disagreement": [ "NN" ], "gravity": [ "NN" ], "provokes": [ "VBZ" ], "referenda": [ "NN" ], "corporate-coverage": [ "JJ" ], "unsettled": [ "JJ", "VBD", "VBN" ], "provoked": [ "VBD", "JJ", "VBN" ], "underlings": [ "NNS" ], "reciting": [ "VBG" ], "Sheridan": [ "NNP" ], "less-toxic": [ "JJ" ], "tenure": [ "NN" ], "Without": [ "IN", "NNP" ], "once-dry": [ "JJ" ], "handbag": [ "NN" ], "Becker": [ "NNP" ], "LOSES": [ "VBZ" ], "Becket": [ "NNP" ], "third-ranked": [ "JJ" ], "Jensen": [ "NNP" ], "Unified": [ "NNP" ], "Estuary": [ "NNP" ], "enthusiastic": [ "JJ" ], "Landesbank": [ "NNP" ], "Shoals": [ "NNP", "NNS" ], "Landrum-Griffin": [ "NNP" ], "callers": [ "NNS" ], "Gargantuan": [ "JJ" ], "Honolulu": [ "NNP" ], "improprieties": [ "NNS" ], "verso": [ "NN" ], "supported": [ "VBN", "JJ", "VBD" ], "cruzado": [ "NN" ], "postdoctoral": [ "JJ" ], "chairwoman": [ "NN" ], "misclassified": [ "VBN" ], "Mengitsu": [ "NNP" ], "supporter": [ "NN" ], "Divergent": [ "JJ" ], "reeling": [ "VBG" ], "Reviglio": [ "NNP" ], "ossify": [ "VB" ], "loafers": [ "NNS" ], "computer-maker": [ "NN" ], "VNR": [ "NNP" ], "ambiguity": [ "NN" ], "WENT": [ "VBD" ], "Dieux": [ "NNP" ], "pharmacology": [ "NN" ], "demonstators": [ "NNS" ], "MC68030": [ "NNP" ], "A.M.A": [ "NNP" ], "aforementioned": [ "JJ", "VBN" ], "Combatting": [ "VBG" ], "Organizers": [ "NNS" ], "manhours": [ "NNS" ], "bedsprings": [ "NNS" ], "Bringing": [ "NNP", "VBG" ], "Verey": [ "NNP" ], "Zones": [ "NNS" ], "motherhood": [ "NN" ], "Thaddeus": [ "NNP" ], "cachet": [ "NN" ], "roll-out": [ "NN" ], "pertains": [ "VBZ" ], "caches": [ "NNS" ], "hydrocarbons": [ "NNS" ], "conform": [ "VB", "VBP" ], "Area": [ "NNP", "NN" ], "puddle": [ "NN" ], "Hurray": [ "NNP" ], "RATE": [ "NN", "NNP" ], "Siad": [ "NNP" ], "Ares": [ "NNP" ], "Justices": [ "NNPS", "NNP" ], "tax-understatement": [ "JJ" ], "Siam": [ "NNP" ], "Hurrah": [ "UH", "NNP" ], "pedigree": [ "NN" ], "Hawaiian": [ "NNP", "JJ", "NNPS" ], "Commander-in-Chief...": [ ":" ], "literate": [ "JJ" ], "DeWitt": [ "NNP" ], "Wenberg": [ "NNP" ], "discounts": [ "NNS", "VBZ" ], "gemstone": [ "NN" ], "overestimates": [ "VBZ" ], "half-closed": [ "JJ" ], "glen": [ "NN" ], "Kenner": [ "NNP" ], "superior": [ "JJ", "NN" ], "junkies": [ "NNS" ], "A.L.": [ "NNP" ], "implementing": [ "VBG" ], "UNIX": [ "NNP" ], "benefit-seeking": [ "NN" ], "Cities\\/ABC": [ "NNP" ], "Krakow": [ "NNP" ], "buster": [ "NN" ], "non-objects": [ "NNS" ], "morphologic": [ "JJ" ], "fulfilled": [ "VBN", "VBD" ], "assure": [ "VB", "VBP" ], "insidious": [ "JJ" ], "busted": [ "JJ", "VBD", "VBN" ], "Delicious": [ "NNP" ], "longhaired": [ "JJ" ], "overstaff": [ "VB" ], "Tacoma": [ "NNP" ], "Sverdlovsk": [ "NNP" ], "Conscience": [ "NN", "NNP" ], "nonsuccessful": [ "JJ" ], "equal-opportunity": [ "NN" ], "overcoat": [ "NN" ], "teasing": [ "JJ", "NN", "VBG" ], "Refcorp": [ "NNP", "NN" ], "deckhands": [ "NNS" ], "line-centered": [ "NN" ], "Holiday": [ "NNP" ], "freeholders": [ "NNS" ], "Temple": [ "NNP", "NN" ], "pratfalls": [ "NNS" ], "pouring": [ "VBG" ], "Berlioz": [ "NNP" ], "Rewards": [ "NNS" ], "muddy": [ "JJ" ], "unstrung": [ "JJ" ], "rocket-like": [ "JJ" ], "paratroops": [ "NNS" ], "chauffeurs": [ "NNS" ], "Acceptance": [ "NNP", "NN" ], "Center": [ "NNP", "JJ", "NN" ], "neck-and-neck": [ "JJ" ], "GERMAN": [ "JJ" ], "Marlon": [ "NNP" ], "airplanes": [ "NNS", "VBZ" ], "capital-spending": [ "JJ", "NN" ], "Korneyev": [ "NNP" ], "Marlow": [ "NNP" ], "axle": [ "NN" ], "Centel": [ "NNP" ], "splits": [ "NNS", "VBZ" ], "SELF-DESTROYED": [ "VBN" ], "drapers": [ "NNS" ], "Elderly": [ "JJ" ], "Ferrell": [ "NNP" ], "instigated": [ "VBD", "VBN" ], "pneumocystis": [ "NN" ], "Levamisole": [ "NN" ], "CHIPPING": [ "VBG" ], "backslapping": [ "VBG" ], "Farnham": [ "NNP" ], "permeate": [ "VB" ], "Confidence": [ "NN", "NNP" ], "Tannhaeuser": [ "NNP" ], "audiocassettes": [ "NNS" ], "Shrum": [ "NNP" ], "Uniform": [ "JJ" ], "respected": [ "VBN", "JJ", "VBD" ], "Coroner": [ "NN" ], "Volstead": [ "JJ", "NNP" ], "arabic": [ "JJ" ], "fusiform": [ "JJ" ], "InfoCorp.": [ "NNP" ], "Astin": [ "NNP" ], "Eloise": [ "NNP" ], "brightener": [ "NN" ], "navy-blue": [ "JJ" ], "Hunter": [ "NNP", "NNPS", "NN" ], "defiant": [ "JJ" ], "Excelsior": [ "NNP" ], "brightened": [ "VBD", "VBN" ], "McCabe": [ "NNP" ], "matinals": [ "FW" ], "tumbling": [ "VBG", "NN" ], "Rhythm-Wily": [ "NNP" ], "DOE-site": [ "NN" ], "reshuffled": [ "VBD" ], "Bearings": [ "NNP" ], "ground-handling": [ "NNS", "NN" ], "Convex": [ "NNP" ], "visa-free": [ "JJ" ], "man-hours": [ "NNS", "NN" ], "exceeds": [ "VBZ" ], "hearest": [ "VBP" ], "Biotechnology": [ "NNP", "NN" ], "buttonholes": [ "NNS" ], "Caspi": [ "NNP" ], "retard": [ "VB", "VBP" ], "Halva-Neubauer": [ "NNP" ], "Palmatier": [ "NNP" ], "musuem": [ "NN" ], "procurement": [ "NN", "JJ" ], "nondemocratic": [ "JJ" ], "creators": [ "NNS" ], "Porres": [ "NNP" ], "fetal": [ "JJ" ], "coaster": [ "NN" ], "tripods": [ "NNS" ], "CW-capable": [ "JJ" ], "business-promotion": [ "NN" ], "Hyundai": [ "NNP", "NNS" ], "coasted": [ "VBD", "VBN" ], "underlying": [ "VBG", "JJ", "VBG|JJ" ], "Averell": [ "NNP" ], "credit-backing": [ "NN" ], "Makinac": [ "NNP" ], "Gamble": [ "NNP" ], "Brigade": [ "NNP" ], "Inquisition": [ "NNP", "NN" ], "republican": [ "JJ" ], "Rabies": [ "NN" ], "Montle": [ "NNP" ], "dilutive": [ "JJ" ], "Friday": [ "NNP" ], "nastier": [ "JJR" ], "Groggins": [ "NNP" ], "underscored": [ "VBD", "VBN" ], "franking": [ "NN", "VBG" ], "evidence...": [ ":" ], "Dearborn": [ "NNP" ], "successor": [ "NN" ], "out-of-the-way": [ "JJ" ], "incarnations": [ "NNS" ], "petrochemical": [ "NN", "JJ" ], "barbed-wire": [ "JJ", "NN" ], "judiciary": [ "NN", "JJ" ], "HUD-subsidized": [ "JJ" ], "arbitration.": [ "NN" ], "corporeality": [ "NN" ], "impugned": [ "VBN" ], "INTERNATIONAL": [ "NNP" ], "Fallen": [ "NNP", "JJ" ], "Searby": [ "NNP" ], "subjectivist": [ "NN" ], "phrasemaking": [ "NN" ], "Mauch": [ "NNP" ], "two-seat": [ "JJ" ], "Nagrin": [ "NNP" ], "downplaying": [ "VBG" ], "Gossip": [ "NN" ], "profoundity": [ "NN" ], "decease": [ "NN" ], "Scale": [ "NNP" ], "Scala": [ "NNP" ], "interludes": [ "NNS" ], "holies": [ "NNS" ], "Pirandello": [ "NNP" ], "Scali": [ "NNP" ], "paternalistic": [ "JJ" ], "corroborate": [ "VB", "VBP" ], "infiltrated": [ "VBN", "VBD" ], "Copley": [ "NNP" ], "interment": [ "NN" ], "Sheehan": [ "NNP" ], "paddock": [ "NN" ], "supportive": [ "JJ" ], "frenetic": [ "JJ" ], "attactive": [ "JJ" ], "Lompoc": [ "NNP" ], "Maurine": [ "NNP" ], "Avions": [ "NNP" ], "wittingly": [ "RB" ], "ritiuality": [ "NN" ], "Gaslight": [ "NN" ], "Xylogics": [ "NNP" ], "microcassette": [ "NN" ], "discorporate": [ "JJ", "VB" ], "Hearings": [ "NNS" ], "noteholder": [ "NN" ], "enviably": [ "RB" ], "slight": [ "JJ", "VBP", "NN" ], "puppeteers": [ "NNS" ], "Robot": [ "NN" ], "hospitable": [ "JJ" ], "periodically": [ "RB" ], "simples": [ "NNS" ], "simpler": [ "JJR", "RBR" ], "retribution": [ "NN" ], "rationing": [ "NN" ], "Tilted": [ "NNP" ], "Weight": [ "NN", "NNP" ], "schmoozing": [ "NN", "VBG" ], "follies": [ "NNS" ], "thuds": [ "NNS" ], "Cheer": [ "NNP", "VB" ], "keelson": [ "NN" ], "Gale": [ "NNP" ], "flaky": [ "JJ" ], "unidirectional": [ "JJ" ], "Gala": [ "NNP" ], "reincarcerated": [ "VBN" ], "conducted...": [ ":" ], "whisky-on-the-rocks": [ "NN" ], "now-Rep": [ "JJ" ], "pro-business": [ "JJ" ], "Pirrie": [ "NNP" ], "submits": [ "VBZ" ], "demonstrable": [ "JJ" ], "demonstrably": [ "RB" ], "Free-trade": [ "JJ" ], "oughta": [ "MD", "NN" ], "Foamed": [ "NNP" ], "Freshwater": [ "NNP" ], "Atra": [ "NNP" ], "Steinman": [ "NNP" ], "Evolving": [ "VBG" ], "Cellars": [ "NNP" ], "legends": [ "NNS" ], "Bailit": [ "NNP" ], "flustered": [ "VBN" ], "firefighter": [ "NN" ], "Uphoff": [ "NNP" ], "Chile": [ "NNP" ], "Child": [ "NNP", "NN" ], "Chili": [ "NNP", "NN" ], "Gutzon": [ "NNP" ], "GAMBLE": [ "NNP" ], "Chill": [ "NN", "NNP" ], "two-by-fours": [ "NNS" ], "Ukranians": [ "NNPS" ], "crutches": [ "NNS" ], "solicitors": [ "NNS" ], "auction-fee": [ "JJ" ], "bookshelf": [ "NN" ], "backstop": [ "NN", "VB" ], "partially": [ "RB" ], "Refund": [ "NN" ], "wise": [ "JJ" ], "Wall": [ "NNP", "NN", "NNS" ], "wish": [ "VBP", "NN", "VB" ], "variations": [ "NNS" ], "Walk": [ "VB", "VBP", "NN" ], "Walt": [ "NNP" ], "wisp": [ "NN" ], "Asher\\/Gould": [ "NNP" ], "whenever": [ "WRB" ], "Insurance": [ "NNP", "NN" ], "Desiring": [ "VBG" ], "penetrating": [ "JJ", "VBG" ], "rabbits": [ "NNS" ], "veiling": [ "NN" ], "brochures": [ "NNS" ], "Pulova": [ "NNP" ], "enlists": [ "VBZ" ], "Instrument": [ "NNP" ], "unpicturesque": [ "JJ" ], "finite-dimensional": [ "JJ" ], "Carruthers": [ "NNP" ], "mysteriously": [ "RB" ], "Colombian": [ "JJ", "NNP" ], "redder": [ "JJR", "RBR" ], "Whipsawed": [ "JJ" ], "Turning": [ "VBG", "NNP" ], "Storehouse": [ "NNP" ], "postmen": [ "NNS" ], "sleepwalking": [ "VBG", "NN" ], "Leigh-Pemberton": [ "NNP" ], "case-history": [ "NN" ], "assesment": [ "NN" ], "non-God": [ "NN" ], "industrial-property": [ "NN" ], "puzzlement": [ "NN" ], "traumatic": [ "JJ" ], "draught": [ "NN" ], "detractors": [ "NNS" ], "Farmaco": [ "NNP" ], "bundle": [ "NN", "VB" ], "spreader": [ "NN" ], "shrank": [ "VBD" ], "thumping": [ "VBG", "NN" ], "inboard": [ "JJ", "RB" ], "seismic": [ "JJ" ], "mediocrities": [ "NNS" ], "Senate-House": [ "NNP", "JJ" ], "hiked": [ "VBD", "VBN" ], "Begelman": [ "NNP" ], "dispersants": [ "NNS" ], "baker": [ "NN" ], "Greekfest": [ "NNP" ], "Hoenemeyer": [ "NNP" ], "hiker": [ "NN" ], "hikes": [ "NNS" ], "wryly": [ "RB" ], "Myerson": [ "NNP" ], "baked": [ "JJ", "VBD", "VBN" ], "fess": [ "NN" ], "Seattlite": [ "NNP" ], "bagpipe": [ "NN" ], "sufficed": [ "VBD" ], "Louis-based": [ "JJ" ], "hats": [ "NNS" ], "anti-foreigner": [ "NN" ], "Christophers": [ "NNPS" ], "Continental": [ "NNP", "JJ" ], "Dining": [ "NNP", "VBG", "NN" ], "interprovincial": [ "JJ" ], "slogs": [ "VBZ" ], "thrice-monthly": [ "JJ" ], "hate": [ "VBP", "NN", "VB" ], "apparel-maker": [ "NN" ], "trolley": [ "NN" ], "home-shopping": [ "NN" ], "Isetan": [ "NNP" ], "thinnest": [ "JJS" ], "thinness": [ "NN" ], "informality": [ "NN" ], "Tallchief": [ "NNP" ], "warred": [ "VBD" ], "Truffaut": [ "NNP" ], "Ledoux": [ "NNP" ], "Bandit": [ "NN" ], "fishbowl": [ "NN" ], "efficaciously": [ "RB" ], "iliac": [ "JJ" ], "honorable": [ "JJ", "NN" ], "Esmarch": [ "NNP" ], "missionary": [ "JJ", "NN" ], "Restaurants": [ "NNP", "NNPS", "NNS" ], "end-zone": [ "NN" ], "Tunica": [ "NNP" ], "Templeton": [ "NNP" ], "vitriolic": [ "JJ" ], "Conway": [ "NNP" ], "Smerdyakov": [ "NNP" ], "Guarini": [ "NNP" ], "relict": [ "NN" ], "clime": [ "NN" ], "Bigger": [ "JJR" ], "pagodas": [ "NNS" ], "Director": [ "NNP", "NN" ], "AMCA": [ "NNP" ], "degeneracy": [ "NN" ], "enjoy": [ "VB", "VBP" ], "high-technological": [ "JJ" ], "strivings": [ "NNS" ], "news-division": [ "NN" ], "Rapport": [ "NNP" ], "guardedly": [ "RB" ], "scribbled": [ "VBD", "VBN" ], "resin-saturated": [ "JJ" ], "pseudo-capitalism": [ "NN" ], "RESIGNATIONS": [ "NNS" ], "emptiness": [ "NN" ], "perestrokia": [ "NN" ], "flat-topped": [ "JJ" ], "ransack": [ "VB" ], "shining": [ "VBG", "JJ" ], "behooves": [ "VBZ" ], "filibusters": [ "NNS" ], "Train": [ "NNP", "NN" ], "beaten": [ "VBN", "JJ" ], "unreality": [ "NN" ], "abides": [ "VBZ" ], "Castleman": [ "NNP" ], "inter-American": [ "JJ" ], "chambre": [ "FW" ], "Chaplain": [ "NNP" ], "A.L/NNP.S/NNP.A.C.": [ "NNP" ], "Made": [ "VBN", "NNP", "VB" ], "limited-partner": [ "JJ" ], "forint": [ "NN" ], "Sutpen": [ "NNP" ], "Filene": [ "NNP" ], "corralled": [ "VBN" ], "ad-lib": [ "NN" ], "beauty-care": [ "JJ" ], "asymmetry": [ "NN" ], "studio": [ "NN" ], "Willett": [ "NNP" ], "morosely": [ "RB" ], "shortness": [ "NN" ], "SHEARSON": [ "NNP" ], "masseurs": [ "NNS" ], "electrolysis": [ "NN" ], "Beatrice": [ "NNP", "NN" ], "Marksmanship": [ "NN" ], "Remic-related": [ "JJ" ], "Furnishes": [ "VBZ" ], "WON": [ "VBP" ], "abolition": [ "NN" ], "chateau": [ "NN" ], "mantic": [ "JJ" ], "Koh": [ "NNP" ], "Kok": [ "NNP" ], "ridiculed": [ "VBN" ], "resurrected": [ "VBN", "VBD" ], "Kon": [ "NNP" ], "Koa": [ "NNP" ], "M-1": [ "NNP", "NN" ], "Nicodemus": [ "NNP" ], "Technodyne": [ "NNP" ], "feelings": [ "NNS" ], "sorrows": [ "NNS" ], "viscera": [ "NNS" ], "Hakim": [ "NNP" ], "gallonage": [ "NN" ], "wars": [ "NNS" ], "cholesterol-rich": [ "JJ" ], "Kos": [ "NNP" ], "water-submersion": [ "JJ" ], "quasi-tax": [ "JJ" ], "Circular": [ "NNP", "JJ" ], "spread-eagled": [ "VBN" ], "yellows": [ "NNS" ], "B.S.": [ "NNP" ], "Australia-wide": [ "JJ" ], "Thermedics": [ "NNP", "NNS" ], "lessening": [ "NN", "VBG" ], "Instruments": [ "NNPS", "NNP", "NNS" ], "sobered": [ "VBN", "VBD" ], "raids": [ "NNS", "VBZ" ], "bragged": [ "VBD" ], "horseshoers": [ "NNS" ], "boomed": [ "VBD", "VBN" ], "Ibias": [ "NNP" ], "Blume": [ "NNP" ], "non-pipeline": [ "NN" ], "Incidents": [ "NNS" ], "Gaspee": [ "NNP" ], "breaths": [ "NNS" ], "real-time": [ "JJ" ], "robbing": [ "VBG" ], "Hacking": [ "VBG" ], "outdated": [ "JJ", "VBN" ], "Salomon": [ "NNP", "NN" ], "Crazy": [ "NNP" ], "money-manager": [ "NN" ], "join": [ "VB", "VBP" ], "pre-cooked": [ "JJ" ], "self-regulating": [ "JJ" ], "clubby": [ "JJ" ], "entertained": [ "VBN", "VBD" ], "joie": [ "FW" ], "warn": [ "VB", "VBP" ], "McManus": [ "NNP" ], "house-cleaning": [ "NN" ], "OIF": [ "NNP" ], "entertainer": [ "NN" ], "dither": [ "NN" ], "shook": [ "VBD", "NN", "VBN" ], "loosen": [ "VB" ], "Paschal": [ "NNP" ], "generically": [ "RB" ], "Musial": [ "NNP" ], "Lori": [ "NNP" ], "Lord": [ "NNP", "NN", "VB", "UH" ], "Lora": [ "NNP" ], "looser": [ "JJR" ], "collude": [ "VB" ], "Sidhpur": [ "NNP" ], "trill": [ "NN" ], "rhinoceros": [ "NN" ], "traditionalists": [ "NNS" ], "Karlsruhe": [ "NNP" ], "High-Tech": [ "JJ" ], "bobby-sox": [ "NN" ], "ancestor": [ "NN" ], "Preparation-Inquirers": [ "NNP" ], "Paying": [ "VBG" ], "Grist": [ "NNP" ], "Caucasians": [ "NNS" ], "claptrap": [ "NN" ], "mess": [ "NN", "VBP", "VB" ], "Chesapeake": [ "NNP" ], "Disregarding": [ "VBG" ], "Chapman": [ "NNP", "NN" ], "demanding": [ "VBG", "JJ" ], "mesh": [ "NN", "VBP", "VB" ], "Mamma": [ "NNP" ], "Unreported": [ "JJ" ], "biting": [ "VBG", "JJ" ], "sparkles": [ "VBZ" ], "mortgages": [ "NNS", "VBZ" ], "Sewage": [ "NNP" ], "risible": [ "JJ" ], "Etudes": [ "NNP" ], "gentlemanly": [ "JJ" ], "Avena": [ "NNP" ], "Varalli": [ "NNP" ], "spout": [ "NN", "VBP" ], "criss-crossed": [ "JJ", "VBN" ], "mucking": [ "VBG" ], "Greetings": [ "NNP", "NNS" ], "record-tying": [ "JJ" ], "Yorkshire-based": [ "JJ" ], "unglued": [ "JJ" ], "flippers": [ "NNS" ], "drachma": [ "NN" ], "monde": [ "FW" ], "Shifte": [ "NNP" ], "Weiss": [ "NNP" ], "Kodyke": [ "NNP" ], "thesis": [ "NN" ], "Hichens": [ "NNP" ], "transferor": [ "NN" ], "comandancia": [ "FW" ], "Urban": [ "NNP" ], "conflict-ridden": [ "JJ" ], "Hero": [ "NNP", "NN" ], "Willkie": [ "NNP" ], "alveoli": [ "NNS" ], "theologian": [ "NN" ], "Herb": [ "NNP" ], "Kelsey": [ "NNP" ], "exhibits": [ "NNS", "VBZ" ], "comprehend": [ "VB" ], "smaller-than-expected": [ "JJ" ], "Emerald": [ "NNP" ], "Hers": [ "JJ", "PRP" ], "Hillerich": [ "NNP" ], "Continued": [ "VBN", "JJ" ], "BIRDS": [ "NNS" ], "absolutism": [ "NN" ], "Branches": [ "NNS" ], "Anti-Wrinkle": [ "NNP" ], "revelations": [ "NNS" ], "new-issues": [ "JJ", "NNS" ], "Haughton": [ "NNP" ], "paralanguage": [ "NN" ], "persuaders": [ "NNS" ], "notified": [ "VBN", "VBD" ], "vacillated": [ "VBD" ], "imperiously": [ "RB" ], "Pankki": [ "NNP" ], "dollar-denominated": [ "JJ" ], "loan-production": [ "NN" ], "demand-supply": [ "JJ" ], "unlinked": [ "JJ" ], "hawk-hunting": [ "JJ" ], "notifies": [ "VBZ" ], "lacerations": [ "NNS" ], "geldings": [ "NNS" ], "Humor": [ "NN" ], "W&D": [ "NNP" ], "Lippman": [ "NNP", "NN" ], "decedent": [ "NN" ], "winsome": [ "JJ" ], "share-buying": [ "NN" ], "combining": [ "VBG" ], "damped": [ "VBN", "VBD", "VBP" ], "lebensraum": [ "NN" ], "Drafted": [ "VBN" ], "Pillsbury": [ "NNP" ], "overcame": [ "VBD" ], "Holz": [ "NNP" ], "Holy": [ "NNP", "JJ" ], "fevers": [ "NNS" ], "stringed": [ "JJ" ], "Holt": [ "NNP", "NN" ], "washed": [ "VBN", "VBD", "JJ" ], "Agua": [ "NNP" ], "Institute": [ "NNP", "NN" ], "Ryusenji": [ "NNP" ], "unspectacular": [ "JJ" ], "Ginnie": [ "NNP" ], "Hole": [ "NNP", "NN" ], "Hold": [ "VB", "VBP" ], "underwrite": [ "VB", "VBP" ], "Holderbank": [ "NNP" ], "merchandising": [ "NN", "VBG" ], "slivered": [ "VBN" ], "addiction-treatment": [ "JJ", "NN" ], "streamline": [ "VB" ], "Absenteeism": [ "NN" ], "biological": [ "JJ", "NN" ], "Idje": [ "NNP" ], "Aragon": [ "NNP" ], "acrobat": [ "NN" ], "alarmingly": [ "RB" ], "jubilant": [ "JJ" ], "Esselte": [ "NNP" ], "soft-rock": [ "JJ" ], "Carre": [ "NNP" ], "blackmailing": [ "VBG" ], "suburbia": [ "NN" ], "syndication": [ "NN" ], "wheelbase": [ "NN" ], "TIME": [ "NN", "NNP" ], "Carry": [ "NNP" ], "Murderers": [ "NNS" ], "Darnell": [ "NNP" ], "Gennaro": [ "NNP" ], "trilled": [ "VBD" ], "Marcoses": [ "NNPS" ], "coding": [ "NN" ], "Kehl": [ "NNP" ], "anchorages": [ "NNS" ], "priority": [ "NN", "JJ" ], "Bruges": [ "NNP" ], "AREA": [ "NN" ], "Academy": [ "NNP" ], "Lindskog": [ "NNP" ], "Racie": [ "NNP" ], "teacher-cadet": [ "JJ" ], "Racin": [ "NNP" ], "Afghan": [ "JJ", "NN", "NNP" ], "Rebecca": [ "NNP" ], "beat-up": [ "JJ" ], "glucose": [ "NN" ], "ceiling": [ "NN" ], "Condensation": [ "NN" ], "Splendid": [ "JJ" ], "brushes": [ "NNS" ], "compressor": [ "NN" ], "Ethocyn": [ "NNP" ], "Actually": [ "RB" ], "Indulgers": [ "NNS" ], "ClothesTime": [ "NNP" ], "Diego-based": [ "JJ", "NNP" ], "Ash-Can": [ "NNP" ], "Drye": [ "NNP" ], "singleness": [ "NN" ], "Koji": [ "NNP" ], "Unix": [ "NNP" ], "expo": [ "NN" ], "LaWare": [ "NNP" ], "genders": [ "NNS" ], "Unit": [ "NN", "NNP" ], "lbs": [ "NNS" ], "acetylene": [ "NN" ], "Mitsuoka": [ "NNP" ], "staphylococcal": [ "JJ" ], "New-Waver": [ "NNP" ], "torque": [ "NN" ], "Offutt": [ "NNP" ], "Estimating": [ "VBG" ], "McEachern": [ "NNP" ], "BIOTECHNOLOGY": [ "NN" ], "regulate": [ "VB", "VBP" ], "leafy": [ "JJ" ], "NBC": [ "NNP" ], "spade": [ "NN", "JJ", "VBP" ], "unceasing": [ "JJ" ], "Pressler": [ "NNP" ], "teakettle": [ "NN" ], "steamboat": [ "NN" ], "-": [ ":" ], "oriented": [ "VBN", "VBD", "JJ" ], "Yeager": [ "NNP" ], "retinoblastoma": [ "NN", "FW" ], "once-rich": [ "JJ" ], "cleft": [ "NN", "VBN" ], "Carbide": [ "NNP", "NN" ], "Omega": [ "NNP" ], "harped": [ "VBD" ], "low-tax": [ "NN" ], "Davidowitz.": [ "NNP" ], "Rizzello": [ "NNP" ], "one-thirty": [ "RB" ], "cilia": [ "NNS" ], "carcinoma": [ "NN" ], "mannerisms": [ "NNS" ], "Dairy": [ "NNP", "NN" ], "interjects": [ "VBZ" ], "coin": [ "NN", "VB" ], "unorthodox": [ "JJ" ], "lb.": [ "NN", "NNS" ], "soupy": [ "JJ" ], "treats": [ "VBZ", "NNS" ], "bullied": [ "VBD", "VBN" ], "soups": [ "NNS" ], "Rubenstein": [ "NNP" ], "flow": [ "NN", "VBP", "VB" ], "treaty": [ "NN" ], "Goodison": [ "NNP" ], "orderly": [ "JJ", "NN", "RB" ], "reemerged": [ "VBD" ], "non-person": [ "NN" ], "floc": [ "NN" ], "flog": [ "VB" ], "untapped": [ "JJ" ], "Howley": [ "NNP" ], "cortico-fugal": [ "JJ", "NN" ], "Koenig": [ "NNP" ], "Addiss": [ "NNP" ], "Neff": [ "NNP" ], "inspire": [ "VB", "VBP" ], "Scanlon": [ "NNP" ], "random": [ "JJ", "NN" ], "Ndola": [ "NNP" ], "Joseph-Daniel": [ "NNP" ], "tacitly": [ "RB" ], "substituting": [ "VBG" ], "Espana": [ "NNP" ], "Extremadura": [ "NNP" ], "Gollust": [ "NNP" ], "Simultaneously": [ "RB" ], "Palcy": [ "NNP" ], "peasants": [ "NNS" ], "soft-hearted": [ "JJ" ], "fore-play": [ "NN" ], "stock-in-trade": [ "NN" ], "anti-intellectualism": [ "JJ", "NN" ], "Michelin\\": [ "NNP" ], "gods": [ "NNS" ], "Tribou": [ "NNP" ], "Netherlands": [ "NNP", "NNPS" ], "sunglasses": [ "NN", "NNS" ], "unassisted": [ "JJ" ], "Larger": [ "JJR" ], "Shades": [ "NNP" ], "systems-integration": [ "NN" ], "goons": [ "NNS" ], "shutting": [ "VBG" ], "tuberculosis": [ "NN" ], "Shizue": [ "NNP" ], "interrogated": [ "VBN" ], "Quarter": [ "NN", "NNP" ], "Downham": [ "NNP" ], "spinoffs": [ "NNS" ], "oil-based": [ "JJ" ], "Hildegard": [ "NNP" ], "Sancken": [ "NNP" ], "authorizations": [ "NNS" ], "twice": [ "RB", "JJ" ], "shots": [ "NNS" ], "pacifist": [ "NN" ], "death-benefit": [ "JJ" ], "cufflinks": [ "NNS" ], "adapters": [ "NNS" ], "farther": [ "RB", "RBR" ], "duck": [ "NN", "VB" ], "Caribbean": [ "NNP", "JJ" ], "nux": [ "NN" ], "Pet": [ "NNP" ], "liquor": [ "NN" ], "Pew": [ "NNP" ], "Per": [ "IN" ], "cheekbone": [ "NN" ], "resist": [ "VB", "VBP" ], "Pen": [ "NNP", "NN" ], "Pei": [ "NNP" ], "alkalis": [ "NNS" ], "Taurog": [ "NNP" ], "Pee": [ "NNP" ], "Optic-Electronic": [ "NNP" ], "rain-slick": [ "JJ" ], "Macedon": [ "NNP" ], "double-glaze": [ "VB" ], "micro-liquidity": [ "NN" ], "McDermott": [ "NNP" ], "Philippines-backed": [ "JJ" ], "Nagelvoort": [ "NNP" ], "slotted": [ "VBN" ], "joyride": [ "NN" ], "propulsion": [ "NN" ], "round-tipped": [ "JJ" ], "McVay": [ "NNP" ], "Shearman": [ "NNP" ], "deceptively": [ "RB" ], "bashes": [ "NNS" ], "one-parent": [ "JJ" ], "handwritten": [ "JJ" ], "gravestone": [ "NN" ], "BAHAMIAN": [ "JJ" ], "million-ton": [ "JJ" ], "husky-voiced": [ "JJ" ], "confusion": [ "NN" ], "fired...": [ ":" ], "boss": [ "NN" ], "Buick-Oldsmobile-Cadillac": [ "NNP" ], "phoning": [ "VBG" ], "Icelandic-speaking": [ "JJ" ], "aristocrats": [ "NNS" ], "censorship": [ "NN" ], "nonfat": [ "JJ" ], "Revenues": [ "NNS", "NNP" ], "rabbit-test": [ "JJ" ], "blasted": [ "VBD", "VBN" ], "lineman": [ "NN" ], "indistinct": [ "JJ" ], "sanitation": [ "NN" ], "Whig": [ "NN", "NNP" ], "biologically": [ "RB" ], "inter-governmental": [ "JJ" ], "Arens": [ "NNP" ], "precipitous": [ "JJ" ], "two-billion-Australian-dollar": [ "JJ" ], "participating": [ "VBG", "JJ" ], "merging": [ "VBG", "NN" ], "debt-to-equity": [ "JJ", "NN" ], "Whiz": [ "NNP" ], "encore": [ "NN" ], "rhetoricians": [ "NNS" ], "Whit": [ "NNP" ], "compilations": [ "NNS" ], "Makers": [ "NNPS", "NNP", "NNS" ], "Whip": [ "NNP" ], "Gro-Lites": [ "NNPS" ], "Celgar": [ "NNP" ], "J/NNP.A.C.": [ "NNP" ], "elfin": [ "JJ" ], "kwh": [ "NNS" ], "Bozicevich": [ "NNP" ], "epidemic": [ "NN", "JJ" ], "student-physicists": [ "NNS" ], "herbaceous": [ "JJ" ], "intimal": [ "JJ" ], "viruses": [ "NNS" ], "maudlin": [ "JJ" ], "Putt": [ "NNP" ], "Katims": [ "NNP" ], "coalesced": [ "VBN" ], "beef": [ "NN", "VB", "VBP" ], "open-mouthed": [ "JJ" ], "bikinis": [ "NNS" ], "Ebbutt": [ "NNP" ], "ropes": [ "NNS" ], "tilt-top": [ "JJ" ], "Southern": [ "NNP", "JJ", "NN" ], "been": [ "VBN", "VBP" ], "beep": [ "NN" ], "Bertie": [ "NNP" ], "beer": [ "NN" ], "bees": [ "NNS" ], "beet": [ "NN" ], "miraculously": [ "RB" ], "Bertin": [ "NNP" ], "roped": [ "VBD" ], "dia.": [ "NN", "JJ" ], "Canestrani": [ "NNP" ], "Herold": [ "NNP" ], "publisher": [ "NN" ], "davits": [ "NNS" ], "anthropological-religious": [ "JJ" ], "Dingell": [ "NNP" ], "Carrion": [ "NNP" ], "sweet-throated": [ "JJ" ], "Cain": [ "NNP" ], "USED-CAR": [ "NN" ], "Countach": [ "NNP" ], "Elie": [ "NNP" ], "berms": [ "NNS" ], "Wiesenthal": [ "NNP" ], "Educators": [ "NNP", "NNS" ], "fallow": [ "JJ" ], "unchristian": [ "JJ" ], "Upped": [ "VBN" ], "PUBLIC": [ "JJ" ], "decanted": [ "VBN" ], "Beghin-Say": [ "NNP" ], "push-button": [ "JJ" ], "coupes": [ "NNS" ], "Wolder": [ "NNP" ], "Driskill": [ "NNP" ], "Eckart": [ "NNP" ], "Bush": [ "NNP" ], "half-transparent": [ "JJ" ], "bull-headed": [ "JJ" ], "ramifications": [ "NNS" ], "unservile": [ "JJ" ], "Quirinal": [ "NNP" ], "Jacqueline": [ "NNP" ], "dull-gray": [ "JJ" ], "Camaret": [ "NNP" ], "self-mastery": [ "NN" ], "Zimmerman": [ "NNP" ], "inventory": [ "NN" ], "Eligio": [ "NNP" ], "inventors": [ "NNS" ], "unbearable": [ "JJ" ], "troika": [ "NN" ], "non-biodegradable": [ "JJ" ], "A320": [ "NN" ], "riffs": [ "NNS" ], "deadwood": [ "NN" ], "rose-pink": [ "JJ" ], "Morning": [ "NNP", "UH", "NN" ], "BCED": [ "NNP" ], "Kearton": [ "NNP" ], "junior-philosophical": [ "JJ" ], "embarrassments": [ "NNS" ], "forceful": [ "JJ" ], "recalculations": [ "NNS" ], "werewolves": [ "NNS" ], "boxer": [ "NN" ], "greatest": [ "JJS" ], "business-to-business": [ "JJ", "NN" ], "shadowed": [ "VBN", "JJ" ], "Sarah": [ "NNP" ], "PARKER": [ "NNP" ], "stenography": [ "NN" ], "Saran": [ "NNP" ], "Sinton": [ "NN" ], "Gouge": [ "VB" ], "subsidization": [ "NN" ], "Arabian": [ "NNP", "JJ" ], "Pawleys": [ "NNP" ], "playtime": [ "NN" ], "Constitution": [ "NNP", "NN" ], "higher-margin": [ "JJR", "JJ" ], "U.S.-Japan": [ "JJ", "NNP" ], "transgressed": [ "VBD" ], "Krakatoa": [ "NNP" ], "Astoria": [ "NNP" ], "Deriving": [ "VBG" ], "Figgie": [ "NNP" ], "retreat": [ "NN", "VB" ], "technological": [ "JJ" ], "Crossair": [ "NNP" ], "anticoagulants": [ "NNS" ], "lower-level": [ "JJ", "NN" ], "turquoise": [ "JJ", "NN" ], "Notre-Dame": [ "NNP" ], "Pincus": [ "NNP" ], "Asimov": [ "NNP" ], "Teagarden": [ "NNP" ], "James": [ "NNP" ], "Taking": [ "VBG", "NNP" ], "Diabetic": [ "NNP" ], "non-financial": [ "JJ" ], "Owls": [ "NNS" ], "Hollander": [ "NNP" ], "Titles": [ "NNPS" ], "racketeers": [ "NNS" ], "Vadies": [ "NNP" ], "sanitary": [ "JJ" ], "antiredeposition": [ "NN" ], "amok": [ "RB" ], "forefinger": [ "NN" ], "disinclination": [ "NN" ], "Contrarily": [ "RB" ], "Assyriology": [ "NN" ], "mystically": [ "RB" ], "specific": [ "JJ", "NN" ], "sticky-fingered": [ "JJ" ], "Hackett": [ "NNP" ], "mosquito": [ "NN" ], "amor": [ "FW" ], "Pasternack": [ "NNP" ], "biomedical-products": [ "NNS" ], "Species": [ "NNP", "NNPS" ], "rustling": [ "NN", "VBG" ], "clubs": [ "NNS" ], "clawed": [ "VBN" ], "displeasure": [ "NN" ], "escape": [ "VB", "NN", "VBP" ], "Shays": [ "NNP" ], "post-nuptial": [ "JJ" ], "Motherwell": [ "NNP" ], "research-and-development": [ "NN", "JJ" ], "prechlorination": [ "NN" ], "Island-based": [ "JJ" ], "self-consciousness": [ "NN" ], "Insiders": [ "NNS" ], "collaboration": [ "NN" ], "Metronic": [ "NNP" ], "cord": [ "NN" ], "core": [ "NN", "JJ" ], "Subdued": [ "JJ" ], "Divorced": [ "NNP" ], "McCaffrey": [ "NNP" ], "Glasswork": [ "NNP" ], "Yacht": [ "NNP" ], "Lucius": [ "NNP" ], "Bambi": [ "NNP" ], "watchings": [ "NNS" ], "cancer-related": [ "JJ" ], "Emperor": [ "NNP", "NN" ], "Vitro": [ "NNP" ], "surround": [ "VBP", "VB" ], "misleading": [ "JJ", "VBG" ], "genocide": [ "NN" ], "logistical": [ "JJ" ], "Machines": [ "NNPS", "NNP", "NNS" ], "knight-errant": [ "NN" ], "discharging": [ "VBG" ], "Pupils": [ "NNS" ], "low-cost": [ "JJ", "NN" ], "JAMES": [ "NNP" ], "Bartlett": [ "NNP" ], "accommodate": [ "VB", "VBP" ], "Noschese": [ "NNP" ], "computer-power-supply": [ "NN" ], "Twentieth-Century": [ "NNP" ], "Martha": [ "NNP", "NN" ], "emigrate": [ "VB", "VBP" ], "tranquilizers": [ "NNS" ], "Marthe": [ "NNP" ], "rely": [ "VB", "VBP" ], "Selling": [ "VBG", "NNP", "NN" ], "unaware": [ "JJ", "RB" ], "Cloth": [ "NNP" ], "scamper": [ "VBP" ], "nonthreatening": [ "VBG" ], "drowsed": [ "VBN" ], "Competing": [ "VBG" ], "Burghley": [ "NNP" ], "Olsson": [ "NNP" ], "Ambrose": [ "NNP" ], "high-vitamin": [ "JJ" ], "Tune": [ "NNP" ], "IranU.S": [ "NNP" ], "atom-smashing": [ "NN" ], "realer": [ "JJR" ], "steam-generating": [ "NN" ], "Neuharth": [ "NNP" ], "furor": [ "NN" ], "High-tech": [ "JJ", "NN" ], "Amusements": [ "NNPS", "NNP" ], "backbeat": [ "NN" ], "Interpretation": [ "NNP", "NN" ], "ROGERS": [ "NNP" ], "slo-mo": [ "JJ" ], "Meaden": [ "NNP" ], "rankled": [ "VBN" ], "Domestic": [ "JJ", "NNP" ], "Cotten": [ "NNP" ], "Bonnet": [ "NNP" ], "Cotter": [ "NNP" ], "Shippers": [ "NNS", "NNP" ], "Bonner": [ "NNP" ], "Diff": [ "NN" ], "bide": [ "VB" ], "Pro-forma": [ "JJ" ], "brightly": [ "RB" ], "F.L.": [ "NNP" ], "atypical": [ "JJ" ], "tool-kit": [ "NN" ], "second-most-conservative": [ "JJ" ], "prisoners.": [ "NNS" ], "Carson": [ "NNP" ], "diamond": [ "NN" ], "voluntary-control": [ "JJ" ], "Lumpe": [ "NNP" ], "Begin": [ "VB" ], "boobify": [ "VB" ], "outstretched": [ "VBN" ], "no": [ "DT", "JJ", "NN", "RB", "UH" ], "na": [ "TO", "VBG" ], "commercials": [ "NNS" ], "nd": [ "CC" ], "ne": [ "FW" ], "junta": [ "NN" ], "Scarlatti": [ "NNP" ], "Patagonia": [ "NNP" ], "criminalized": [ "JJ" ], "market-allocation": [ "JJ" ], "quite-literal": [ "JJ" ], "pseudonym": [ "NN" ], "evergreen": [ "NN" ], "Costa": [ "NNP", "JJ", "NN", "NNS" ], "reconsider": [ "VB", "VBP" ], "insure...": [ ":" ], "impounded": [ "VBN" ], "geneticist": [ "NN" ], "trailers": [ "NNS" ], "Odakyu": [ "NNP" ], "Costs": [ "NNS" ], "corporations": [ "NNS" ], "ribbing": [ "NN" ], "dappled": [ "JJ" ], "parities": [ "NNS" ], "Geza": [ "NNP" ], "a-wing": [ "NN" ], "saxophonist": [ "NN" ], "BANKAMERICA": [ "NNP" ], "to-day": [ "NN", "JJ", "RB" ], "swarming": [ "VBG" ], "Zellers": [ "NNP" ], "plastically": [ "RB" ], "anxiety-free": [ "JJ" ], "Clothestime": [ "NNP" ], "hydroxymethyl": [ "NN" ], "Franco-Irishman": [ "NNP" ], "Title": [ "NN", "NNP" ], "varying": [ "VBG", "JJ" ], "unregulated": [ "JJ" ], "livelihood": [ "NN" ], "ACCOUNTS": [ "NNS", "NNPS" ], "ventilator": [ "NN" ], "PrudentialBache": [ "NNP" ], "reaccelerating": [ "VBG" ], "cathodes": [ "NNS" ], "telemarketing": [ "NN" ], "Conflict": [ "NN" ], "recharge": [ "NN" ], "Columbia": [ "NNP" ], "operina": [ "NN" ], "geo-political": [ "JJ" ], "scrawny": [ "JJ" ], "reassemble": [ "VB" ], "flanged": [ "VBN" ], "Infocorp.": [ "NNP" ], "Anything": [ "NN", "NNP" ], "Centralia": [ "NNP" ], "Itoh": [ "NNP" ], "decreeing": [ "VBG" ], "sloppy": [ "JJ" ], "sowered": [ "VBD" ], "d-Percentage": [ "NN" ], "Viceroy": [ "NNP" ], "carting": [ "VBG" ], "Reels": [ "NNPS" ], "slow-baked": [ "JJ" ], "sighed": [ "VBD" ], "REVIEW": [ "NNP" ], "sorting-out": [ "NN" ], "Vilaplana": [ "NNP" ], "inauspicious": [ "JJ" ], "intangibles": [ "NNS" ], "Market-research": [ "NN" ], "accumulation": [ "NN" ], "Rex": [ "NNP" ], "Rey": [ "NNP" ], "Schone": [ "NNP" ], "Tomkin": [ "NNP" ], "Rep": [ "NNP" ], "Rev": [ "NNP" ], "Ret": [ "NNP" ], "Culbertson": [ "NNP" ], "bid-asked": [ "JJ" ], "Northwest": [ "NNP", "JJ", "NN", "RB" ], "Hard-Line": [ "JJ" ], "Reb": [ "NN" ], "supertankers": [ "NNS" ], "Reg": [ "NNP" ], "Red": [ "NNP", "JJ|NP", "JJ", "NN" ], "Lupton": [ "NNP" ], "distaste": [ "NN" ], "Newsom": [ "NNP" ], "rerouting": [ "VBG" ], "Bruck": [ "NNP" ], "Bruce": [ "NNP" ], "Oedipus": [ "NNP" ], "noncontroversial": [ "JJ" ], "agrees": [ "VBZ" ], "tarmac": [ "NN" ], "Hartwell": [ "NNP" ], "hairy": [ "JJ" ], "replays": [ "NNS" ], "Hopkins": [ "NNP" ], "higher-than-expected": [ "JJ" ], "Laptev": [ "NNP" ], "accountable": [ "JJ" ], "piezoelectricity": [ "NN" ], "twentieth": [ "JJ" ], "Amorim": [ "NNP" ], "Coldwell": [ "NNP" ], "houseboats": [ "NNS" ], "Sees": [ "VBZ", "NNP" ], "decadelong": [ "JJ" ], "united": [ "VBN", "VBD", "VBN|JJ", "JJ" ], "machine-vision": [ "NN" ], "ENTERPRISES": [ "NNP" ], "sharpening": [ "VBG", "NN" ], "Seed": [ "NN" ], "descended": [ "VBD", "VBN" ], "editorialists": [ "NNS" ], "Seen": [ "VBN" ], "weird": [ "JJ", "NN" ], "Caruso": [ "NNP" ], "Seek": [ "NNP", "VBP" ], "Crutcher": [ "NNP" ], "washes": [ "NNS", "VBZ" ], "shelled": [ "VBD", "VBN", "JJ" ], "sevenfold": [ "RB" ], "threes": [ "NNS" ], "Etzioni": [ "NNP" ], "smallish": [ "JJ" ], "self-definition": [ "NN" ], "concoct": [ "VB" ], "Hostage": [ "NNP" ], "Differences": [ "NNS" ], "Florican-My": [ "NNP" ], "Automation": [ "NNP" ], "wrongs": [ "NNS" ], "Foggs": [ "NNP" ], "name-dropper": [ "NN" ], "two-timing": [ "JJ" ], "Foggy": [ "NNP" ], "Slackened": [ "VBN" ], "Elizabethans": [ "NNS" ], "barkeep": [ "NN" ], "Tims": [ "NNP" ], "signboards": [ "NNS" ], "riot": [ "NN" ], "neared": [ "VBD", "VBN" ], "demonized": [ "VBN" ], "Calling": [ "VBG" ], "progressivism": [ "NN" ], "Calabasas": [ "NNP" ], "Time": [ "NNP", "NN" ], "prefectural": [ "JJ" ], "Weidman": [ "NNP" ], "Pascutto": [ "NNP" ], "inhabit": [ "VBP" ], "Fredonia": [ "NNP" ], "Scania": [ "NNP" ], "German": [ "JJ", "NN", "NNP" ], "humly": [ "RB" ], "Teatro": [ "NNP" ], "Gorillas": [ "NNP", "NNS" ], "fauna": [ "NNS", "NN" ], "Areas": [ "NNS" ], "laughter": [ "NN" ], "coral": [ "JJ" ], "Polyanka": [ "NNP" ], "performer": [ "NN", "JJ" ], "now-repentant": [ "JJ" ], "Skubal": [ "NNP" ], "McCarthyite": [ "JJ" ], "Uniqueness": [ "NNP" ], "theistic": [ "JJ" ], "slugging": [ "VBG" ], "performed": [ "VBN", "VBD" ], "viewless": [ "JJ" ], "serendipity": [ "NN" ], "government-operated": [ "JJ" ], "Moluccas": [ "NNP" ], "Scambio": [ "NNP" ], "harmed": [ "VBN", "VBD" ], "FROG-7B": [ "NN" ], "infringements": [ "NNS" ], "monopolization": [ "NN" ], "used-equipment": [ "NN" ], "Hormel": [ "NNP" ], "flavored": [ "JJ", "VBN" ], "unutterably": [ "RB" ], "epigrammatic": [ "JJ" ], "Prospects": [ "NNS" ], "Natalie": [ "NNP" ], "Natalia": [ "NNP" ], "granddaughter": [ "NN" ], "unawares": [ "RB" ], "Chinchon": [ "NNP" ], "peacemakers": [ "NNS" ], "over-produce": [ "VB" ], "WD-40": [ "NNP" ], "Fortress": [ "NNP" ], "Machida": [ "NNP" ], "Fantastico": [ "NNP" ], "Guaranty": [ "NNP" ], "lemmas": [ "NNS" ], "overreached": [ "VBD" ], "infidels": [ "NNS" ], "Wyly": [ "NNP" ], "Batten": [ "NNP" ], "Unusual": [ "JJ", "NNP" ], "third-inning": [ "NN" ], "pressed-paper": [ "JJ" ], "vinyl-products": [ "NNS" ], "burglary": [ "NN" ], "Journal\\": [ "NNP" ], "stock-index": [ "NN", "JJ", "NNS" ], "Ghana": [ "NNP", "NN" ], "self-portrait": [ "NN" ], "abusers": [ "NNS" ], "courthouse": [ "NN" ], "apex": [ "NN" ], "cheerleaders": [ "NNS" ], "company-arranged": [ "JJ" ], "varicolored": [ "JJ" ], "Burgher": [ "NNP" ], "Jianying": [ "NNP" ], "Journals": [ "NNPS" ], "washload": [ "NN" ], "TPA": [ "NNP" ], "Riefenstahl": [ "NNP" ], "Yamatake-Honeywell": [ "NNP" ], "Parisien": [ "NNP" ], "Maher": [ "NNP" ], "countrywide": [ "JJ" ], "TPS": [ "NNP" ], "Broughton": [ "NNP" ], "producing": [ "VBG", "JJ", "NN" ], "car-parts": [ "JJ" ], "acetone": [ "NN" ], "equality": [ "NN" ], "Stephens": [ "NNP" ], "Cal-Neva": [ "NNP" ], "Watches": [ "NNS" ], "possibilities": [ "NNS" ], "Scotia-McLeod": [ "NNP" ], "nodding": [ "VBG", "JJ" ], "Concordes": [ "NNP" ], "association...": [ ":" ], "dabs": [ "VBZ" ], "Worry": [ "NN", "VB" ], "a-Totals": [ "NNS", "LS|NNS" ], "Move": [ "VB", "NN", "NNP", "VBP" ], "unproductive": [ "JJ" ], "Easily": [ "RB" ], "convention-goers": [ "NNS" ], "markups": [ "NNS" ], "approximates": [ "VBZ" ], "gaps": [ "NNS" ], "gapt": [ "NN" ], "begun": [ "VBN" ], "Leppard": [ "NNP" ], "approximated": [ "VBN", "JJ", "VBD" ], "save-the-earth": [ "JJ" ], "adequately": [ "RB" ], "splashy": [ "JJ" ], "Spielberg": [ "NNP" ], "costliest": [ "JJS" ], "Feyer": [ "NNP" ], "reasearch": [ "NN" ], "infuriated": [ "VBD", "VBN" ], "profit": [ "NN", "VBP", "VB" ], "privatizations": [ "NNS" ], "Fike": [ "NNP" ], "dehydrated": [ "JJ", "VBN" ], "attracted": [ "VBN", "VBD" ], "phase-in": [ "NN" ], "delight": [ "NN", "VB", "VBP" ], "bugging": [ "NN" ], "juror": [ "NN" ], "theory": [ "NN" ], "booby": [ "JJ", "NN" ], "bicarbonate": [ "NN" ], "commonwealths": [ "NNS" ], "high-gain": [ "JJ" ], "technocrats": [ "NNS" ], "counterforce": [ "NN" ], "subzero": [ "JJ" ], "marries": [ "VBZ" ], "disillusionment": [ "NN" ], "impose": [ "VB", "VBP" ], "high-tax": [ "JJ" ], "deep-set": [ "JJ" ], "Moscow-based": [ "JJ" ], "deliberated": [ "VBD" ], "five-foot-wide": [ "JJ" ], "deep-sea": [ "JJ" ], "unborn": [ "JJ", "NN" ], "mungus": [ "NN" ], "Sinopoli": [ "NNP" ], "origin": [ "NN" ], "buzzer": [ "NN" ], "simplifies": [ "VBZ" ], "buzzes": [ "NNS", "VBZ" ], "green-bugs": [ "NN" ], "pencil-and-sepia": [ "JJ" ], "incongruous": [ "JJ" ], "Sochi": [ "NNP" ], "satellite-transmission": [ "NN" ], "Crozier": [ "NNP" ], "simplified": [ "JJ", "VBN" ], "alike": [ "RB", "JJ" ], "nursing-home": [ "NN" ], "Onstage": [ "RB" ], "SEi": [ "NNP" ], "SET": [ "VBD" ], "Juarez-area": [ "NN" ], "Electrolux": [ "NNP" ], "Fed-bashing": [ "NN" ], "stimulation": [ "NN" ], "SEE": [ "VBP" ], "SEC": [ "NNP" ], "chastity": [ "NN" ], "Such": [ "JJ", "DT", "NNP", "PDT" ], "SEM": [ "NNP" ], "anesthetized": [ "JJ", "VBN" ], "SEI": [ "NNP" ], "unfaltering": [ "VBG" ], "wax": [ "NN", "VB" ], "anti-ulcer": [ "JJ" ], "Rent-A-Car": [ "NNP" ], "bounty-hunting": [ "NN" ], "taketh": [ "VB" ], "intrinsically": [ "RB" ], "Clothes": [ "NNS", "NNPS" ], "Carney": [ "NNP" ], "Pantera": [ "NNP" ], "Sousa": [ "NNP" ], "require": [ "VB", "VBP" ], "Drunk": [ "JJ", "NNP" ], "Drovers": [ "NNS" ], "CONCORDE": [ "NNP" ], "blood-clotting": [ "JJ" ], "Roederer": [ "NNP" ], "all-inclusive": [ "JJ" ], "Atlanta-based": [ "JJ", "NNP" ], "J.NTT": [ "NNP" ], "thyrotrophic": [ "JJ" ], "and": [ "CC", "VBP", "JJ", "RB", "NNP" ], "mated": [ "VBN" ], "Clint": [ "NNP" ], "blitzing": [ "VBG" ], "pro": [ "FW", "IN", "JJ", "NN" ], "ani": [ "JJ" ], "prostitution": [ "NN" ], "ant": [ "NN" ], "slick-headed": [ "JJ" ], "mater": [ "NN" ], "Aylesbury": [ "NNP" ], "Cline": [ "NNP" ], "commissioning": [ "NN", "VBG" ], "pry": [ "VB" ], "Gildas": [ "NNP" ], "foundered": [ "VBD" ], "calisthenics": [ "NNS" ], "Uh-huh": [ "UH" ], "Lipstein": [ "NNP" ], "Famous": [ "NNP", "JJ" ], "Goldang": [ "UH" ], "Precinct": [ "NNP" ], "Kang": [ "NNP" ], "Fudomae": [ "NNP" ], "invasions": [ "NNS" ], "Customized": [ "JJ" ], "clatter": [ "NN", "VB" ], "Hardis": [ "NNP" ], "Zachrisson": [ "NNP" ], "computer-servicing": [ "JJ", "NN" ], "drug-bill": [ "NN" ], "yelped": [ "VBD" ], "unwisely": [ "RB" ], "peptides": [ "NNS" ], "brushfire": [ "NN" ], "seafarers": [ "NNS" ], "Cafeteria": [ "NNP" ], "perpetrated": [ "VBN", "VBD" ], "position-building": [ "NN" ], "non-building": [ "JJ" ], "Renewal": [ "NNP" ], "ginseng": [ "NN" ], "applauding": [ "VBG" ], "recipe": [ "NN" ], "Sakura": [ "NNP" ], "Cavallinis": [ "NNS" ], "fish-processing": [ "JJ" ], "Raffaello": [ "NNP" ], "protrusion": [ "NN" ], "BUSY": [ "JJ" ], "toxicologists": [ "NNS" ], "Locker-room": [ "NN" ], "piranha": [ "NN", "NNS" ], "overage": [ "JJ" ], "BUSH": [ "NNP" ], "explicitly": [ "RB" ], "close-mouthed": [ "JJ" ], "Plea": [ "NN" ], "identification": [ "NN" ], "centrally": [ "RB" ], "Shoichiro": [ "NNP" ], "chillier": [ "NN" ], "outguess": [ "VB" ], "begging": [ "VBG", "NN" ], "crude": [ "NN", "JJ" ], "microchannel": [ "JJ" ], "high-quality": [ "JJ", "NN" ], "Theo-Dur": [ "NNP" ], "Adalbert": [ "NNP" ], "closure": [ "NN" ], "Buchenwald": [ "NNP" ], "regarding": [ "VBG" ], "floods": [ "NNS" ], "preliminarily": [ "RB" ], "cumin": [ "NN" ], "Rhineland": [ "NN" ], "Bailly": [ "NNP", "RB" ], "CELTICS": [ "NNPS" ], "Cognex": [ "NNP", "NN" ], "adventure-based": [ "JJ" ], "reveals": [ "VBZ" ], "pummeled": [ "VBD", "VBN" ], "picnic": [ "NN" ], "Colonel": [ "NNP", "NN" ], "labors": [ "NNS", "VBZ" ], "innards": [ "NNS", "NN" ], "Mosher": [ "NNP" ], "sorest": [ "JJS" ], "Geva": [ "NNP" ], "college-bowl": [ "NN" ], "catapulting": [ "VBG" ], "underpaid": [ "JJ", "VBD", "VBN" ], "B.A.T": [ "NNP", "NN" ], "insuring": [ "VBG" ], "Jesuit": [ "NNP" ], "detect": [ "VB", "VBP" ], "commutation": [ "NN" ], "gastronomes": [ "NNS" ], "Gagliardini": [ "NNP" ], "flop": [ "NN", "VBP", "VB" ], "belittled": [ "JJ" ], "materials-handling": [ "JJ" ], "invokes": [ "VBZ" ], "Texas": [ "NNP", "JJ" ], "BLOCKBUSTER": [ "NNP" ], "Gilsbar": [ "NNP" ], "caucus": [ "NN", "VB" ], "Lilian": [ "NNP" ], "good-looking": [ "JJ" ], "painters": [ "NNS" ], "Webster\\/Eagle": [ "NNP" ], "thyratron": [ "NN" ], "grieved": [ "VBN" ], "TODAY": [ "NNP" ], "Messa": [ "FW", "NNP" ], "bite-sized": [ "JJ" ], "Sterile": [ "NNP" ], "Parkshore": [ "NNP" ], "Filmworks": [ "NNP" ], "stupidest": [ "JJS" ], "non-crisis": [ "JJ" ], "Macwhyte": [ "NNP" ], "Rosencrants": [ "NNP" ], "Saracens": [ "NNPS" ], "takeover": [ "NN" ], "senator": [ "NN" ], "Investment": [ "NNP", "NN" ], "deported": [ "VBN", "VBD" ], "cutlass": [ "NN" ], "Nott": [ "NNP" ], "checkbooks": [ "NNS" ], "frequency-independent": [ "JJ" ], "kalega": [ "NN" ], "loose-leaf": [ "JJ" ], "resentment": [ "NN" ], "Note": [ "VB", "NN" ], "Wisman": [ "NNP" ], "Dupps": [ "NNP" ], "blasphemers": [ "NNS" ], "Lundeen": [ "NNP" ], "Crumlish": [ "NNP" ], "mezzo": [ "NN", "JJ" ], "Buy": [ "VB", "JJ", "NNP" ], "Carlzon": [ "NNP" ], "Bus": [ "NN", "NNP" ], "computing": [ "VBG", "NN" ], "But": [ "CC", "NNP", "IN" ], "Slated": [ "VBN" ], "votive": [ "JJ" ], "four-story": [ "JJ" ], "Bun": [ "NN" ], "market-system": [ "NN" ], "Slater": [ "NNP" ], "archrival": [ "JJ", "NN" ], "Bud": [ "NNP" ], "schoolboy": [ "NN" ], "non-alcohol": [ "JJ" ], "Grappely": [ "NNP" ], "robbed": [ "VBN", "VBD" ], "black-on-black": [ "JJ" ], "Farra": [ "NNP" ], "diamond-studded": [ "NN" ], "Communist-designed": [ "JJ" ], "Anacomp": [ "NNP" ], "robber": [ "NN" ], "Cursing": [ "VBG" ], "shaft": [ "NN" ], "Divide": [ "VB" ], "Indentical": [ "JJ" ], "Cents": [ "NNP", "NNS" ], "Churning": [ "NN" ], "embodying": [ "VBG" ], "nothingness": [ "NN" ], "Bradsher": [ "NNP" ], "lifeboat": [ "NN" ], "Crusade": [ "NNP", "NN" ], "Interleaf": [ "NNP" ], "still-punishing": [ "JJ" ], "prescriptive": [ "JJ" ], "puncher": [ "NN" ], "Slow": [ "JJ", "VB" ], "crusades": [ "NNS" ], "crusader": [ "NN" ], "clerk-turned": [ "JJ" ], "yachtsmen": [ "NNS" ], "ice-chest": [ "NN" ], "hurting": [ "VBG" ], "CRAF-Cassini": [ "NNP" ], "crusaded": [ "VBN" ], "converts": [ "NNS", "VBZ" ], "whimpering": [ "VBG" ], "Hidden": [ "VBN", "JJ" ], "pruning": [ "VBG", "NN" ], "Bonnell": [ "NNP" ], "perhaps": [ "RB" ], "Protesters": [ "NNS" ], "farmhands": [ "NNS" ], "Excuse": [ "VB" ], "Heinhold": [ "NNP" ], "takeover-related": [ "JJ" ], "agitated": [ "VBD", "VBN" ], "resuspension": [ "NN" ], "events": [ "NNS" ], "TRIMMING": [ "VBG" ], "applaud": [ "VBP", "VB" ], "Signal": [ "NNP" ], "retrograde": [ "JJ" ], "W.M.": [ "NNP" ], "devoid": [ "JJ" ], "prospered": [ "VBN", "VBD" ], "smatterings": [ "NNS" ], "arose": [ "VBD" ], "changing": [ "VBG", "JJ", "NN" ], "high-paying": [ "JJ" ], "Langner": [ "NNP" ], "implements": [ "NNS", "VBZ" ], "vantage": [ "NN" ], "gibes": [ "NNS" ], "modes": [ "NNS" ], "Bedminster": [ "NNP" ], "purposeful": [ "JJ" ], "recital": [ "NN" ], "Sonates": [ "NNPS" ], "melodramatic": [ "JJ" ], "Bucking": [ "VBG" ], "termination": [ "NN" ], "model": [ "NN", "JJ", "VB", "NNP" ], "modem": [ "NN" ], "clod": [ "NN" ], "United": [ "NNP", "VBN", "JJ" ], "softwood": [ "JJ" ], "Nawbo": [ "NNP" ], "Unitel": [ "NNP" ], "stiffnecked": [ "JJ" ], "clot": [ "NN", "VB" ], "entrusting": [ "VBG" ], "manse": [ "NN" ], "laminating": [ "VBG" ], "perilous": [ "JJ" ], "Lombard": [ "NNP" ], "Bam": [ "UH" ], "Jobs": [ "NNP", "NNS", "NNPS" ], "MacPherson": [ "NNP" ], "anchorwoman": [ "NN" ], "Zurek": [ "NNP" ], "poises": [ "NNS" ], "EC-1": [ "NN" ], "textile-trade": [ "JJ" ], "pallet": [ "NN" ], "decompression": [ "NN" ], "prettily": [ "RB" ], "engulfed": [ "VBN", "VBD" ], "poised": [ "VBN", "VBD", "JJ" ], "a-Ex-dividend": [ "NN" ], "CONFRONTATIONS": [ "NNS" ], "kingdom": [ "NN" ], "Amendment": [ "NNP", "NN" ], "lyricist": [ "NN" ], "Rosenblatt": [ "NNP" ], "Sophomore": [ "NN" ], "Virginian": [ "NNP" ], "Lili": [ "NNP" ], "Terrible": [ "NNP" ], "mini-cars": [ "NNS" ], "predetermined": [ "VBN" ], "Runkel": [ "NNP" ], "Alito": [ "NNP" ], "glitches": [ "NNS" ], "Hingorani": [ "NNP" ], "Nikolai": [ "NNP" ], "standstill": [ "JJ", "NN" ], "Kellwood": [ "NNP" ], "lyricism": [ "NN" ], "ill-timed": [ "JJ" ], "Subjects": [ "NNS" ], "national-policy": [ "NN" ], "Grimaldi": [ "NNP" ], "Gunmen": [ "NNS" ], "upside": [ "RB", "JJ", "NN" ], "meaninglessness": [ "NN" ], "oilman-rancher": [ "NN" ], "Lister": [ "NNP" ], "Symms": [ "NNP" ], "Million-dollar": [ "JJ" ], "Tizard": [ "NNP" ], "Tatsuhara": [ "NNP" ], "pacific": [ "JJ" ], "unhocked": [ "VBN" ], "Afrikaaner": [ "NNP" ], "Listed": [ "VBN", "JJ" ], "bylaws": [ "NNS" ], "Pechman": [ "NNP" ], "Terror": [ "NN" ], "canteen": [ "NN" ], "Safeguards": [ "NNS" ], "Listen": [ "VB", "NNP" ], "Sully": [ "NNP" ], "Danish": [ "JJ", "NNP" ], "colloidal": [ "JJ" ], "Invite": [ "NNP", "VB" ], "prolific": [ "JJ" ], "non-energy": [ "JJ" ], "shirtless": [ "JJ" ], "Appian": [ "NNP" ], "legal": [ "JJ" ], "Blowers": [ "NNS" ], "above-water": [ "JJ" ], "provides": [ "VBZ" ], "provider": [ "NN" ], "chapel-like": [ "JJ" ], "extra-musical": [ "JJ" ], "Jute": [ "NN" ], "terrifies": [ "VBZ" ], "broom": [ "NN" ], "Zama": [ "NNP" ], "white-collar": [ "JJ" ], "Hakuhodo": [ "NNP" ], "multi-column": [ "JJ" ], "weirdest": [ "JJS" ], "ethanol-powered": [ "JJ" ], "LaGow": [ "NNP" ], "fit-looking": [ "JJ" ], "tintype": [ "NN" ], "rearranging": [ "VBG" ], "Korda": [ "NNP" ], "zealous": [ "JJ" ], "paralysis": [ "NN" ], "good-til-canceled": [ "JJ" ], "medicare": [ "NN" ], "waded": [ "VBD", "VBN" ], "vicar": [ "NN" ], "grindstone": [ "NN" ], "Costley": [ "NNP" ], "Small-lot": [ "JJ" ], "wasteful": [ "JJ" ], "top-tier": [ "JJ" ], "speculates": [ "VBZ" ], "Lovington": [ "NNP" ], "Inject": [ "VB" ], "Saxon": [ "NNP", "JJ" ], "speculated": [ "VBD", "VBN" ], "sloshing": [ "VBG" ], "refinements": [ "NNS" ], "Red-prone": [ "JJ" ], "Luxor": [ "NNP" ], "Assam": [ "NNP" ], "Bachelor": [ "NNP" ], "Mifepristone": [ "NNP" ], "outward-looking": [ "JJ" ], "Letter": [ "NNP", "NN" ], "desirability": [ "NN" ], "Conservative-Communist": [ "JJ" ], "unpolished": [ "JJ" ], "Princeton\\": [ "NNP", "JJ" ], "UEP": [ "NNP" ], "Assab": [ "NNP" ], "Comfort": [ "NNP", "NN" ], "illuminated": [ "VBN", "JJ", "VBD" ], "Cowboy": [ "NN", "NNP" ], "A.A.U.": [ "NNP" ], "illuminates": [ "VBZ" ], "swathed": [ "VBN" ], "Heidenstam": [ "NNP" ], "Assign": [ "VB" ], "L.P.V": [ "NNP" ], "Boal": [ "NNP" ], "mortals": [ "NNS" ], "multiplicity": [ "NN" ], "Okuma": [ "NNP" ], "turbines": [ "NNS" ], "Boaz": [ "NNP" ], "preside": [ "VB" ], "WEST": [ "NNP" ], "g-p": [ "NN" ], "zinc-consuming": [ "JJ" ], "Boat": [ "NNP", "NN" ], "remedies": [ "NNS" ], "Vasotec": [ "NNP" ], "tubercular": [ "JJ" ], "Pharmacia": [ "NNP" ], "headwaters": [ "NNS" ], "MINISTER": [ "NN" ], "Homeland": [ "NN" ], "clamshells": [ "NNS" ], "pudding-faced": [ "JJ" ], "Finnsburg": [ "NNP" ], "gram": [ "NN" ], "amours": [ "FW" ], "stumbled": [ "VBD", "VBN" ], "Criminal": [ "NNP", "JJ" ], "miscarriages": [ "NNS" ], "idiot": [ "JJ", "NN" ], "post-split": [ "JJ" ], "diarrhea": [ "NN" ], "McQueen": [ "NNP" ], "Armentieres": [ "NNP" ], "idiom": [ "NN" ], "regents": [ "NNS" ], "kerchiefed": [ "JJ" ], "stumbles": [ "VBZ", "NNS" ], "Cleaver": [ "NNP" ], "Viroqua": [ "NNP" ], "infighting": [ "NN" ], "tax-aided": [ "JJ" ], "Tougas": [ "NNP" ], "includes": [ "VBZ" ], "Tyrannosaurus": [ "NNP" ], "Miro": [ "NNP" ], "bounded": [ "VBN", "VBD", "JJ" ], "included": [ "VBD", "VBN", "JJ" ], "includee": [ "VBP" ], "spouse": [ "NN" ], "applicators": [ "NNS" ], "Bagneaux": [ "NNP" ], "Rosman": [ "NNP" ], "based.": [ "VBN" ], "bilateral": [ "JJ" ], "invest": [ "VB", "VBP" ], "uglier": [ "JJR" ], "wayward-looking": [ "JJ" ], "curve": [ "NN" ], "curvy": [ "JJ" ], "Tancred": [ "NNP" ], "ensuring": [ "VBG" ], "Lauritz": [ "NNP" ], "Rowell": [ "NNP" ], "Juneau": [ "NNP" ], "Analog": [ "NNP" ], "confers": [ "VBZ" ], "Lumina": [ "NNP" ], "Wigglesworth": [ "NNP" ], "Noon": [ "NNP" ], "remedied": [ "VBN" ], "scattered": [ "VBN", "VBD", "JJ" ], "seals": [ "NNS", "VBZ" ], "Parents": [ "NNS", "NNP", "NNPS" ], "Mareham": [ "NNP" ], "Minot": [ "NNP" ], "co-editor": [ "NN" ], "settlement": [ "NN" ], "voids": [ "VBZ" ], "Minor": [ "NNP" ], "polarity": [ "NN" ], "Eluard": [ "NNP" ], "Nederland": [ "NNP" ], "H&Q": [ "NNP" ], "Lind-Waldock": [ "NNP" ], "subjected": [ "VBN" ], "H&R": [ "NNP" ], "safeties": [ "NNS" ], "prostaglandin": [ "NN" ], "burger-heavy": [ "JJ" ], "Construction": [ "NN", "NNP" ], "Soren": [ "NNP" ], "self-esteem": [ "NN" ], "belonging": [ "VBG", "NN" ], "Nogales": [ "NNP" ], "Airedales": [ "NNPS" ], "vassal": [ "NN" ], "bubbled": [ "VBN", "VBD" ], "cadaver": [ "NN" ], "Pomicino": [ "NNP" ], "Dillingham": [ "NNP" ], "Southon": [ "NNP" ], "worst": [ "JJS", "RBS", "JJ" ], "hatching": [ "NN", "VBG" ], "jacketed": [ "JJ", "VBN" ], "bubbles": [ "NNS", "VBZ" ], "wilting": [ "VBG" ], "learners": [ "NNS" ], "Joshua": [ "NNP" ], "Enthusiasts": [ "NNS" ], "Momentarily": [ "RB" ], "Melamed": [ "NNP" ], "Fixit": [ "NNP" ], "Germain": [ "NNP" ], "Nonperforming": [ "JJ", "VBG" ], "undone": [ "VBN", "JJ" ], "saxophone": [ "NN" ], "MasterCard": [ "NNP" ], "epicurean": [ "NN" ], "Rackmil": [ "NNP" ], "exit-load": [ "JJ" ], "Filmed": [ "VBN" ], "grateful": [ "JJ" ], "tea": [ "NN" ], "built-in": [ "JJ", "NN" ], "tee": [ "NN", "VBP" ], "Rashomon": [ "NNP" ], "Oversized": [ "JJ" ], "Seminario": [ "NNP" ], "Well-stretched": [ "JJ" ], "I.C.H": [ "NNP" ], "offsets": [ "VBZ", "NNS" ], "paralegal": [ "NN" ], "ovarian": [ "JJ" ], "stramonium": [ "NN" ], "Mick": [ "NNP" ], "Camarillo": [ "NNP" ], "Mich": [ "NNP" ], "Mice": [ "NNS" ], "Helion": [ "NNP" ], "Folgers": [ "NNP" ], "midrange": [ "JJ", "NN" ], "Australians": [ "NNS", "NNPS" ], "communicable": [ "JJ" ], "eventuate": [ "VBP" ], "underwiters": [ "NNS" ], "foreshortened": [ "VBN" ], "absurdist": [ "JJ", "NN" ], "EC": [ "NNP" ], "law-unto-itself": [ "JJ" ], "directions": [ "NNS" ], "epitome": [ "NN" ], "bulls": [ "NNS" ], "increments": [ "NNS" ], "diming": [ "VBG", "NN" ], "barrier-free": [ "JJ" ], "deities": [ "NNS" ], "transponder": [ "NN" ], "sophisticate": [ "NN" ], "Importance": [ "NN" ], "gray-blue": [ "JJ" ], "Cranston-Mitchell": [ "NNP" ], "Congolese": [ "NNP", "JJ" ], "mini-mafia": [ "NN" ], "options": [ "NNS" ], "Style": [ "NNP", "NN" ], "Avrett": [ "NNP" ], "Videoway": [ "NNP" ], "tablecloths": [ "NNS" ], "snug": [ "JJ" ], "snub": [ "VB" ], "interior-construction": [ "NN" ], "Nigeria": [ "NNP" ], "Open-end": [ "JJ" ], "USACafes": [ "NNP", "NNPS" ], "Chiggers": [ "NNS" ], "Montedison": [ "NNP", "NN" ], "socialization": [ "NN" ], "watchmen": [ "NNS" ], "Baseball": [ "NN", "NNP" ], "MUST-SIGN": [ "JJ" ], "market-jarring": [ "JJ" ], "Melling": [ "NNP" ], "Sicilians": [ "NNS" ], "Manville": [ "NNP" ], "El": [ "NNP" ], "thus": [ "RB" ], "tusk": [ "NN" ], "Mines": [ "NNPS", "NNP", "NNS" ], "taragon": [ "NN" ], "pectorals": [ "NNS" ], "Fleet": [ "NNP", "NN" ], "Steeves": [ "NNP" ], "Ek": [ "NNP" ], "ability...": [ ":" ], "sentry": [ "NN" ], "Westerns": [ "NNS" ], "trauma": [ "NN" ], "Mideast": [ "NNP", "JJ", "NN" ], "smoggiest": [ "JJS" ], "Darlin": [ "NNP" ], "precociously": [ "RB" ], "refractive": [ "JJ" ], "protestors": [ "NNS" ], "vaguer": [ "JJR" ], "Tomorrow": [ "NN", "NNP", "RB" ], "enfant": [ "FW" ], "epics": [ "NNS" ], "Uranium": [ "NNP", "NN" ], "Microwave": [ "NNP" ], "coerce": [ "VB" ], "UDAG": [ "NNP" ], "hourlong": [ "JJ" ], "airplane": [ "NN" ], "extinguisher": [ "NN" ], "thud": [ "NN", "VB" ], "Higgins": [ "NNP" ], "breaking": [ "VBG", "JJ", "NN" ], "satellite-launching": [ "JJ", "NN" ], "Docherty": [ "NNP" ], "extinguished": [ "VBN" ], "floor-length": [ "JJ" ], "SOVIET": [ "JJ", "NNP" ], "hundred-and-fifty": [ "JJ" ], "tonnages": [ "NNS" ], "Broberg": [ "NNP" ], "pertained": [ "VBP" ], "Scandia": [ "NNP" ], "preoccupy": [ "VBP" ], "hoisting": [ "NN" ], "fungus": [ "NN" ], "panoramic": [ "JJ" ], "absentmindedly": [ "RB" ], "numb": [ "JJ" ], "CACI": [ "NNP" ], "Ake": [ "NNP" ], "non-literary": [ "JJ" ], "INSURERS": [ "NNS" ], "Tegner": [ "NNP" ], "cooperatives": [ "NNS" ], "Lieberthal": [ "NNP" ], "Marvelous": [ "JJ" ], "barbs": [ "NNS" ], "bridge-lending": [ "JJ" ], "Eccles": [ "NNP" ], "dollar-yen": [ "JJ" ], "mission": [ "NN" ], "proverbial": [ "JJ" ], "thought-out": [ "JJ" ], "koinonia": [ "NN" ], "interpersonal": [ "JJ" ], "Alternating": [ "VBG" ], "flounce": [ "VBP" ], "airworthiness": [ "NN" ], "unleashing": [ "VBG", "NN" ], "Stein": [ "NNP" ], "pusillanimity": [ "NN" ], "susceptible": [ "JJ", "NN" ], "Dental": [ "NNP" ], "co-ordinate": [ "VB" ], "acoustical": [ "JJ" ], "dross": [ "NN" ], "Heyman": [ "NNP" ], "might": [ "MD", "NN" ], "alter": [ "VB", "VBP", "JJ" ], "Veslefrikk": [ "NNP" ], "easy-going": [ "JJ" ], "asbestosis": [ "NN" ], "incompleteness": [ "NN" ], "Badlands": [ "NNS" ], "intensive-care": [ "JJ", "NN" ], "predator": [ "NN" ], "barrel-chested": [ "JJ" ], "FOILED": [ "VBD" ], "Metallgesellschaft": [ "NNP", "NN" ], "three-year-old": [ "JJ", "NN" ], "smoothness": [ "NN" ], "Westheimer": [ "NNP" ], "unreasoning": [ "JJ" ], "Cohodes": [ "NNP" ], "nephews": [ "NNS" ], "Anybody": [ "NN" ], "Gauntlett": [ "NNP" ], "Phoenicians": [ "NNS" ], "inequality": [ "NN" ], "ODDITIES": [ "NNS" ], "athletics": [ "NNS" ], "hammering": [ "VBG", "NN" ], "Tiphook": [ "NNP" ], "then-City": [ "JJ" ], "formulate": [ "VB" ], "incumbency": [ "NN" ], "recapitulate": [ "VB" ], "Sporto": [ "NNP" ], "Pile": [ "NNP" ], "age-bias": [ "JJ" ], "sliver-like": [ "JJ" ], "braided": [ "JJ", "VBN" ], "chiefdom": [ "NN" ], "Funston": [ "NNP" ], "consonance": [ "NN" ], "discrete": [ "JJ" ], "Tigers": [ "NNP", "NNPS" ], "Practice": [ "NNP", "NN" ], "Tigert": [ "NNP" ], "imploring": [ "VBG" ], "eyeteeth": [ "NNS" ], "health": [ "NN" ], "solvent": [ "JJ", "NN" ], "ersatz": [ "JJ" ], "blaring": [ "VBG" ], "mountainously": [ "RB" ], "alleviating": [ "VBG" ], "Littlefield": [ "NNP" ], "Webster\\": [ "NNP" ], "generate": [ "VB", "VBP" ], "Kirgizia": [ "NNP" ], "thrown": [ "VBN" ], "down-home": [ "JJ" ], "scratchy": [ "JJ" ], "Dietary": [ "JJ" ], "low*/JJ-tech": [ "NN" ], "circuit": [ "NN" ], "NEWSPAPERS": [ "NNS", "NNPS" ], "throws": [ "VBZ" ], "Paulah": [ "NNP" ], "Embarcaderothe": [ "NNP" ], "flood": [ "NN", "VB", "VBP" ], "linking": [ "VBG", "NN" ], "Longtime": [ "JJ", "NN" ], "blank": [ "JJ", "NN", "RB", "VB" ], "bland": [ "JJ" ], "Playhouses": [ "NNP" ], "Mondschein": [ "NNP" ], "corporal": [ "NN" ], "pensioner": [ "NN" ], "temperature": [ "NN" ], "Cavaliers": [ "NNS" ], "swart": [ "JJ" ], "HOTEL": [ "NNP" ], "AIMO": [ "NNP" ], "Cavaliere": [ "NNP" ], "Yaohan": [ "NNP" ], "on-site": [ "JJ" ], "Packages": [ "NNS" ], "three-story": [ "JJ" ], "attendants": [ "NNS" ], "highly-touted": [ "JJ" ], "Heisbourg": [ "NNP" ], "Whiteboard": [ "NNP" ], "imprinted": [ "VBN" ], "Malin": [ "NNP" ], "air-traffic-control": [ "NN" ], "Malik": [ "NNP" ], "Malia": [ "NNP" ], "uncut": [ "JJ" ], "rigidities": [ "NNS" ], "wonderfulness": [ "NN" ], "instruction": [ "NN" ], "dispensed": [ "VBN", "VBD" ], "impersonally": [ "RB" ], "Talbot": [ "NNP" ], "skylarking": [ "VBG" ], "dispenser": [ "NN" ], "dispenses": [ "VBZ" ], "munificence": [ "NN" ], "uniforms": [ "NNS" ], "non-priority": [ "JJ" ], "inappropriateness": [ "NN" ], "strengthen": [ "VB", "VBP" ], "narcokleptocrat": [ "NN" ], "Newkirk": [ "NNP" ], "Jovi": [ "NNP" ], "Ebury": [ "NNP" ], "Nagasaki": [ "NNP" ], "rugs": [ "NNS" ], "heightening": [ "VBG", "NN" ], "anti-drug-law": [ "NN" ], "Hilboldt": [ "NNP" ], "freight-hauling": [ "JJ" ], "febrile": [ "JJ" ], "middlemen": [ "NNS" ], "comportment": [ "NN" ], "Anglophobia": [ "NN" ], "operating-room": [ "NN" ], "Ordnance": [ "NNP" ], "added": [ "VBD", "JJ", "VBN" ], "beribboned": [ "JJ" ], "Nachmany": [ "NNP" ], "Assyrian": [ "NNP" ], "odd-sounding": [ "JJ" ], "shareholder": [ "NN" ], "Kuvin": [ "NNP" ], "enduring": [ "VBG", "JJ" ], "well-chronicled": [ "JJ" ], "Zeiger": [ "NNP" ], "Drinker": [ "NN" ], "value": [ "NN", "VBP", "VB" ], "mineral": [ "NN", "JJ" ], "visrhanik": [ "FW" ], "Bourassa": [ "NNP" ], "devalue": [ "VB" ], "retardants": [ "NNS" ], "pay-and-benefit": [ "JJ" ], "Chevrolets": [ "NNPS" ], "Interpublic": [ "NNP" ], "Reynolds": [ "NNP" ], "institutions": [ "NNS", "," ], "stones": [ "NNS" ], "memorandum": [ "NN" ], "white-topped": [ "JJ" ], "felon": [ "NN" ], "Dartmouth": [ "NNP" ], "Keating": [ "NNP" ], "awakens": [ "VBZ" ], "post-game": [ "JJ" ], "deserts": [ "NNS", "VBZ" ], "securing": [ "VBG" ], "heavily": [ "RB" ], "Waymire": [ "NNP" ], "abiding": [ "JJ" ], "Galindez": [ "NNP" ], "transcendental": [ "JJ" ], "Chong-sik": [ "NNP" ], "D.S.": [ "NNP" ], "root-canal": [ "NN" ], "clarifying": [ "VBG" ], "Brig.": [ "NNP" ], "tariff-free": [ "JJ" ], "Stiff": [ "JJ" ], "bambino": [ "NN" ], "Value": [ "NNP", "NN" ], "Alone": [ "RB", "NNP" ], "Miullo": [ "NNP" ], "Incorporated": [ "NNP", "VBN" ], "industrywide": [ "JJ", "RB" ], "beards": [ "NNS" ], "Carausius": [ "NNP" ], "environmentalist-developer": [ "JJ" ], "Olympia": [ "NNP" ], "Olympic": [ "NNP", "JJ", "NNPS" ], "Bern": [ "NNP" ], "Phillippe-Francois": [ "NNP" ], "Riccardo": [ "NNP" ], "macropathological": [ "JJ" ], "western-style": [ "JJ" ], "statism": [ "NN" ], "marinas": [ "NNS" ], "Digges": [ "NNP" ], "seminarian": [ "NN" ], "treeless": [ "JJ" ], "Also...": [ ":" ], "horse-trading": [ "NN" ], "sustainable": [ "JJ" ], "blood-filled": [ "JJ" ], "thrift-institution": [ "NN" ], "Networks": [ "NNP", "NNPS", "NNS" ], "seven-day": [ "JJ" ], "life-long": [ "JJ" ], "Aromatiques": [ "NNP" ], "Plays": [ "NNP", "NNS", "VBZ" ], "power-surge": [ "NN" ], "injecting": [ "VBG" ], "reverberations": [ "NNS" ], "Playa": [ "NNP" ], "fine-drawn": [ "JJ" ], "Rooseveltian": [ "JJ" ], "jettisoning": [ "VBG" ], "crunching": [ "VBG" ], "youth": [ "NN" ], "druggists": [ "NNS" ], "Faustus": [ "NNP" ], "supressor": [ "NN" ], "Zorro": [ "NNP" ], "engine-assembly": [ "NN" ], "Magurno": [ "NNP" ], "fat-soluble": [ "JJ" ], "spectrophotometer": [ "NN" ], "corruption": [ "NN" ], "sharkskin": [ "NN" ], "Mitsotakis": [ "NNP" ], "recently": [ "RB" ], "more-established": [ "JJR" ], "one-penny": [ "JJ" ], "Hammack": [ "NNP" ], "go-ahead": [ "NN" ], "rarer": [ "JJR" ], "stereos": [ "NNS" ], "Horry": [ "NNP" ], "condo": [ "NN" ], "lyrical": [ "JJ" ], "bronze": [ "NN", "JJ" ], "AND": [ "CC", "NNP" ], "ANF": [ "NNP" ], "ANB": [ "NNP" ], "ANC": [ "NNP" ], "ANN": [ "NNP" ], "breakin": [ "VBG" ], "Harco": [ "NNP" ], "mimimum": [ "NN" ], "ritualized": [ "VBN" ], "Farms": [ "NNP", "NNPS" ], "Volpe": [ "NNP" ], "ANP": [ "NNP" ], "chairman-elect": [ "NN" ], "company-managed": [ "JJ" ], "ANZ": [ "NNP" ], "flies": [ "VBZ", "NNS" ], "flier": [ "NN" ], "Fabricius": [ "NNP" ], "ranchers": [ "NNS" ], "reasons": [ "NNS", "VBZ" ], "Quintana": [ "NNP" ], "Willis": [ "NNP" ], "flied": [ "VBD" ], "McHenry": [ "NNP" ], "pH": [ "NNP", "NN" ], "Willie": [ "NNP" ], "pr": [ "NN" ], "complication": [ "NN" ], "roaring": [ "VBG", "JJ", "NN" ], "Stomach": [ "NNP", "NN" ], "dun": [ "NN" ], "duo": [ "NN" ], "dud": [ "NN" ], "blue-uniformed": [ "JJ" ], "dug": [ "VBD", "VBN" ], "Computerized": [ "JJ" ], "ecologists": [ "NNS" ], "pa": [ "NN" ], "Pincian": [ "NNP" ], "Massenet": [ "NNP" ], "bureauracy": [ "NN" ], "convertible-bond": [ "JJ" ], "dropout": [ "NN" ], "togs": [ "NNS" ], "maneuverings": [ "NNS" ], "Operationally": [ "RB" ], "temperament": [ "NN" ], "condoms": [ "NNS" ], "apocalyptics": [ "NNS" ], "toga": [ "NN" ], "anticult": [ "NN" ], "coerced": [ "VBN", "VBD", "JJ" ], "batch": [ "NN" ], "Gastronomie": [ "NNP" ], "bachelors": [ "NNS" ], "writeoffs": [ "NNS" ], "intercepts": [ "NNS" ], "p.": [ "NN" ], "Bigfoot": [ "NNP" ], "anti-Moscow": [ "JJ" ], "drunkenly": [ "RB" ], "Rafi": [ "NNP" ], "enriching": [ "VBG" ], "trumped-up": [ "JJ" ], "Sinatra": [ "NNP" ], "Bacharach": [ "NNP" ], "cross-subsidies": [ "NNS" ], "SHUN": [ "VBP" ], "Raft": [ "NN", "NNP" ], "INS": [ "NNP" ], "Co.": [ "NNP", "NN", "NNPS" ], "chauffeur": [ "NN", "VB" ], "one-restaurant": [ "NN" ], "aged": [ "VBN", "JJ", "NNS", "VBD" ], "coerces": [ "VBZ" ], "Intra-European": [ "JJ" ], "arch-rival": [ "JJ", "NN" ], "intrinsic": [ "JJ" ], "fellowfeeling": [ "NN" ], "reasserts": [ "VBZ" ], "Allied-Signal": [ "NNP" ], "Cop": [ "NNP" ], "Cross-margining": [ "NN" ], "dairyland": [ "NN" ], "Operating-profit": [ "NN" ], "Cow": [ "NNP", "NN" ], "Cox": [ "NNP" ], "nonism": [ "NN" ], "unspoken": [ "JJ" ], "usually": [ "RB" ], "Coe": [ "NNP" ], "Sokol": [ "NNP" ], "brocade": [ "NN" ], "knack": [ "NN" ], "Com": [ "NNP" ], "Con": [ "NNP", "JJ", "NN" ], "earmark": [ "VB" ], "Jelenic": [ "NNP" ], "Lintas:New": [ "NNP" ], "dancing": [ "NN", "VBG" ], "Brittany": [ "NNP" ], "INA": [ "NNP" ], "Wartburgs": [ "NNPS" ], "Reinforcements": [ "NNS" ], "Examples": [ "NNS" ], "riffle": [ "VB" ], "steeled": [ "VBN" ], "space-science": [ "NN" ], "abilities": [ "NNS" ], "catkin": [ "NN" ], "Helmuth": [ "NNP" ], "altruistic": [ "JJ" ], "Shtern": [ "NNP" ], "Permanent": [ "JJ" ], "Bernhard": [ "NNP" ], "ORDER": [ "NNP" ], "Mynheer": [ "NNP" ], "gems": [ "NNS" ], "loading": [ "NN", "VBG" ], "salt-fractionation": [ "NN" ], "plateau": [ "NN" ], "Front": [ "NNP", "JJ", "NN" ], "build": [ "VB", "VBN", "VBP", "NN" ], "Alto": [ "NNP" ], "shoot-down": [ "NN" ], "deadened": [ "VBN" ], "supply-side": [ "JJ", "NN" ], "condemnation": [ "NN" ], "hoste": [ "NN" ], "Alta": [ "NNP" ], "lovin": [ "JJ" ], "toothpastes": [ "NNS" ], "anthems": [ "NNS" ], "integer": [ "NN" ], "Pakistan": [ "NNP" ], "Wharf": [ "NNP" ], "falconry": [ "NN" ], "Weitzel": [ "NNP" ], "Colony": [ "NNP", "NN" ], "ASK": [ "NNP" ], "safest": [ "JJS" ], "jelled": [ "VBD" ], "Mondays": [ "NNPS", "NNP", "NNS" ], "Macmillan\\/McGraw-Hill": [ "NNP" ], "Within": [ "IN" ], "Galleria": [ "NNP" ], "understood": [ "VBN", "VBD" ], "Avowed": [ "JJ" ], "Deaver": [ "NNP" ], "uppercut": [ "NN" ], "Typing": [ "NN" ], "EDI": [ "NNP" ], "tumor-suppressing": [ "JJ" ], "unreimbursed": [ "VBN" ], "gradually": [ "RB" ], "Vermont-Slauson": [ "NNP" ], "roundly": [ "RB" ], "tends": [ "VBZ" ], "university-trained": [ "JJ" ], "fragments": [ "NNS", "VBZ" ], "Staring": [ "VBG" ], "sagebrush": [ "NN" ], "Bogacheva": [ "NNP" ], "bookshelves": [ "NNS" ], "misanthrope": [ "NN" ], "Epp": [ "NNP" ], "straw-man": [ "NN" ], "tinker": [ "VB" ], "Eph": [ "NNP" ], "Proponents": [ "NNS", "NNP" ], "unhusked": [ "VBN" ], "Rumasa": [ "NNP" ], "NYSE": [ "NNP" ], "Beddall": [ "NNP" ], "Prospective": [ "JJ" ], "mingled": [ "VBD", "VBN", "JJ" ], "deathwatch": [ "NN" ], "Senate-passed": [ "JJ" ], "stricken": [ "VBN", "JJ" ], "mingles": [ "VBZ" ], "Keough": [ "NNP" ], "minibars": [ "NNS" ], "doltish": [ "JJ" ], "gospel": [ "NN" ], "clubhouse": [ "NN" ], "Simon": [ "NNP" ], "Feversham": [ "NNP" ], "Midland": [ "NNP" ], "exhaustively": [ "RB" ], "charge-card": [ "JJ" ], "elasticity": [ "NN" ], "OPEC": [ "NNP" ], "he-goes-or-I-go": [ "JJ" ], "OPEN": [ "JJ" ], "Sub": [ "NNP" ], "Murilo": [ "NNP" ], "sonny": [ "NN" ], "voice-response": [ "NN" ], "conceivably": [ "RB" ], "aborigine": [ "NN" ], "Nobuyuki": [ "NNP" ], "Farren": [ "NNP" ], "Haagen-Dazs": [ "NNP" ], "bottled-water": [ "JJ", "NN" ], "inter-plant": [ "JJ" ], "fast": [ "RB", "JJ", "NN", "RP" ], "ward-personnel": [ "NNS" ], "vendors": [ "NNS" ], "Brownings": [ "NNP" ], "conceivable": [ "JJ" ], "Barfield": [ "NNP" ], "melodic": [ "JJ" ], "Bryan": [ "NNP" ], "nnuolapertar-it-vuh-karti-birifw": [ "FW" ], "Corolla": [ "NNP" ], "Malaysian": [ "JJ" ], "panelization": [ "NN" ], "applicable": [ "JJ" ], "forbidding": [ "VBG", "JJ" ], "Twenty-second": [ "NNP", "JJ" ], "Contribution": [ "NNP" ], "Suh": [ "NNP" ], "beadsman": [ "NN" ], "groupings": [ "NNS" ], "gravitating": [ "VBG" ], "fries": [ "NNS" ], "interventionist": [ "JJ" ], "Brumley": [ "NNP" ], "fried": [ "JJ", "VBN" ], "Equitec": [ "NNP", "NN" ], "Psychologists": [ "NNS" ], "Filmdom": [ "NNP" ], "quantification": [ "NN" ], "freight-rate": [ "JJ" ], "Donohue": [ "NNP" ], "bicep": [ "NN" ], "Lecture": [ "NNP" ], "Establishment": [ "NNP", "NN" ], "sandalwood": [ "NN" ], "stand-ins": [ "NNS" ], "scrutinized": [ "VBN", "VBD" ], "overseeing": [ "VBG" ], "scrutinizes": [ "VBZ" ], "Airless": [ "JJ" ], "non-deductible": [ "JJ" ], "Mises": [ "NNP" ], "Miser": [ "NNP" ], "perusal": [ "NN" ], "vaulting": [ "JJ", "NN", "VBG" ], "Green-labeled": [ "JJ" ], "Freebies": [ "NNS" ], "Windle": [ "NNP" ], "Pitt": [ "NNP" ], "time-shares": [ "NNS" ], "frozen-foods": [ "NNS" ], "low-grossing": [ "JJ" ], "suffers": [ "VBZ" ], "Hooks": [ "NNP" ], "OPA-LOCKA": [ "NNP" ], "Amram": [ "NNP" ], "sufferd": [ "VBN" ], "Peeking": [ "VBG" ], "war-ridden": [ "JJ" ], "BROADCASTING": [ "NNP" ], "severable": [ "JJ" ], "Adcock": [ "NNP" ], "issued": [ "VBN", "VBD", "JJ" ], "Darby": [ "NNP" ], "besetting": [ "VBG" ], "acquiesence": [ "NN" ], "rooftree": [ "NN" ], "newissue": [ "NN" ], "Hitting": [ "VBG", "NN" ], "Pita": [ "NNP" ], "PC-magazine": [ "JJ" ], "Chavanne-Ketin": [ "NNP" ], "tumours": [ "NNS" ], "top-to-bottom": [ "JJ" ], "issues": [ "NNS", "VBZ" ], "issuer": [ "NN" ], "nationalization": [ "NN" ], "Marvin": [ "NNP" ], "peering": [ "VBG" ], "dissidents": [ "NNS" ], "Catalog": [ "NNP", "NN" ], "Noxell": [ "NNP" ], "Joint": [ "NNP" ], "Marvis": [ "NNP" ], "concomitantly": [ "RB" ], "CASES": [ "NNS" ], "waiters": [ "NNS" ], "Crisp": [ "NNP" ], "misinterpretation": [ "NN" ], "graphic": [ "JJ" ], "gins": [ "NNS" ], "product-related": [ "JJ" ], "Gorney": [ "NNP" ], "Enjoy": [ "VB" ], "Dubnow": [ "NNP" ], "Emerging": [ "VBG", "JJ", "NNP" ], "Loveless": [ "NNP" ], "Competition": [ "NN", "NNP" ], "Anti-abortion": [ "JJ" ], "Cofide": [ "NNP" ], "Y-regions": [ "NNS" ], "Barsacs": [ "NNPS" ], "moulding": [ "NN" ], "FFA": [ "NNP" ], "Hill": [ "NNP" ], "Weisner": [ "NNP" ], "politicking": [ "NN" ], "folds": [ "NNS", "VBZ" ], "R.C.": [ "NNP" ], "flaunts": [ "VBZ" ], "amnesty.": [ "NN" ], "WYSE": [ "NNP" ], "protrude": [ "VB" ], "Mme": [ "NNP" ], "growers": [ "NNS" ], "Bermuda-registered": [ "JJ" ], "Zion": [ "NNP" ], "Tucked": [ "VBN" ], "RCA\\/Ariola": [ "NNP" ], "RICHMOND": [ "NNP" ], "Cornell-Dubilier": [ "NNP" ], "Licenses": [ "NNP" ], "cubbyhole": [ "NN" ], "Soviet-supplied": [ "JJ" ], "refilled": [ "VBN" ], "counterarguments": [ "NNS" ], "Knopf": [ "NNP" ], "MORGAN": [ "NNP" ], "desires": [ "NNS", "VBZ" ], "Cuddles": [ "NNP" ], "Missoula": [ "NNP" ], "desired": [ "VBN", "VBD", "JJ" ], "H.H.": [ "NNP" ], "sforzando": [ "NN" ], "separation": [ "NN" ], "bugeyed": [ "JJ" ], "sexy": [ "JJ" ], "ghilianii": [ "FW" ], "Ind.-based": [ "JJ" ], "Confederation": [ "NNP" ], "Lorna": [ "NNP" ], "Yasutomi": [ "NNP" ], "Lorne": [ "NNP" ], "CBI": [ "NNP" ], "CBO": [ "NNP" ], "CBS": [ "NNP" ], "Shrubs": [ "NNS" ], "olive-flushed": [ "JJ" ], "locutions": [ "NNS" ], "celebrants": [ "NNS" ], "High-level": [ "JJ" ], "continuities": [ "NNS" ], "chaste": [ "JJ" ], "disposals": [ "NNS" ], "more-entrenched": [ "JJ" ], "corn-seed": [ "NN" ], "digestibility": [ "NN" ], "leguminous": [ "JJ" ], "upper-middle-class": [ "JJ" ], "lodging": [ "NN", "VBG" ], "summation": [ "NN" ], "boasts": [ "VBZ" ], "Hue": [ "NN" ], "fed": [ "VBN", "JJ", "NN", "VBD" ], "Indianapolis": [ "NNP", "NNS" ], "Females": [ "NNPS" ], "Hua": [ "NNP" ], "Hub": [ "NNP" ], "&": [ "CC", "NNP", "SYM" ], "storekeepers": [ "NNS" ], "Hun": [ "NNP" ], "Rotelli": [ "NNP" ], "germ": [ "NN" ], "Hut": [ "NNP" ], "few": [ "JJ", "NN", "RB", "NNS" ], "depicted": [ "VBN", "VBD" ], "fer": [ "IN" ], "swaggered": [ "VBD", "VBN" ], "bitterly": [ "RB" ], "Hux": [ "NNP" ], "Huy": [ "NNP" ], "commiserating": [ "VBG" ], "sort": [ "NN", "RB", "VB", "VBP" ], "parliament": [ "NN" ], "journalists": [ "NNS" ], "musician": [ "NN" ], "heir": [ "NN" ], "infection": [ "NN" ], "Feud": [ "NN" ], "sore": [ "JJ", "NN" ], "lidless": [ "JJ" ], "Keerist": [ "UH" ], "hand-knit": [ "JJ" ], "topic": [ "NN" ], "nixed": [ "VBD" ], "augment": [ "VB", "VBP" ], "foppish": [ "JJ" ], "terroristic": [ "JJ" ], "misfits": [ "NNS" ], "Hartselle": [ "NNP" ], "Rifenburgh": [ "NNP" ], "Replogle": [ "NNP" ], "lower-class": [ "JJ" ], "abstinence": [ "NN" ], "Hattiesburg": [ "NNP" ], "payroll-tax": [ "NN" ], "impedes": [ "VBZ" ], "distractions": [ "NNS" ], "proprietary": [ "JJ", "NN" ], "Kathleen": [ "NNP" ], "Non-Proliferation": [ "NNP" ], "dripping": [ "VBG" ], "Pinned": [ "VBN" ], "pragmatists": [ "NNS" ], "Matchbox": [ "NNP" ], "televangelism": [ "NN" ], "Details": [ "NNS", "NNP" ], "IRAN": [ "NNP" ], "scrounging": [ "VBG" ], "Hackman": [ "NNP" ], "galls": [ "NNS" ], "Williamson": [ "NNP" ], "Lexington-based": [ "JJ" ], "memorize": [ "VB", "VBP" ], "SKILLED": [ "JJ" ], "carries": [ "VBZ", "NNS" ], "age-specific": [ "JJ" ], "Grande-Bretagne": [ "FW", "NNP" ], "dismissing": [ "VBG" ], "Americans": [ "NNPS", "NNP", "NNS", "VBP" ], "grudgingly": [ "RB" ], "ever-present": [ "JJ" ], "Mohammad": [ "NNP" ], "LaBonte": [ "NNP" ], "puppets": [ "NNS" ], "lesion": [ "NN" ], "Virology": [ "NNP" ], "unforgivable": [ "JJ" ], "barricades": [ "NNS" ], "redundancy": [ "NN" ], "grovelike": [ "JJ" ], "desecrates": [ "VBZ" ], "PAUL": [ "NNP" ], "gluts": [ "NNS" ], "place-kicker": [ "NN" ], "Letters": [ "NNS", "NNP", "NNPS" ], "fuming": [ "VBG" ], "sillier": [ "JJR" ], "heroics": [ "NNS" ], "SIGNAL": [ "NN", "VB" ], "swearinge": [ "VBG" ], "Sun-3\\/50": [ "NNP" ], "Selassie": [ "NNP" ], "gardenias": [ "NNS" ], "nit-picky": [ "JJ" ], "flapper": [ "NN" ], "dirtiest": [ "JJS" ], "Disapproval": [ "NN" ], "reponsibility": [ "NN" ], "looks": [ "VBZ", "NNS", "NN" ], "flapped": [ "VBD" ], "indignantly": [ "RB" ], "Braddock-against-the-Indians": [ "NNP" ], "boosts": [ "NNS", "VBZ" ], "intra-company": [ "JJ" ], "linguistics": [ "NNS" ], "strangeness": [ "NN" ], "Longshoremen": [ "NNS", "NNPS" ], "double-deck": [ "JJ", "VB" ], "Kershbaum": [ "NNP" ], "ships": [ "NNS", "VBZ" ], "septation": [ "NN" ], "Callable": [ "JJ" ], "primordial": [ "JJ" ], "Hypothesis": [ "NN" ], "turban": [ "NN" ], "AmBrit": [ "NNP" ], "kick-starting": [ "VBG" ], "indispensable...": [ ":" ], "Hugoton": [ "NNP" ], "orthodox": [ "JJ", "NN" ], "Cooperatives": [ "NNP" ], "indexing": [ "NN", "VBG", "VBG|NN" ], "movie-quality": [ "JJ" ], "Aztec": [ "JJ" ], "Berlack": [ "NNP" ], "negligent": [ "JJ" ], "tiptoeing": [ "VBG" ], "emerald": [ "JJ", "NN" ], "nurturing": [ "VBG" ], "Steffens": [ "NNP" ], "insurance-reform": [ "JJ", "NN" ], "Nabokov": [ "NNP" ], "unwarrantable": [ "JJ" ], "bewilderment": [ "NN" ], "sternum": [ "NN" ], "Llosa": [ "NNP" ], "capacity-controlled": [ "JJ" ], "all-over": [ "IN" ], "unpredictable": [ "JJ" ], "tire-industry": [ "NN" ], "Michio": [ "NNP" ], "Darien": [ "NNP" ], "Weekly": [ "NNP", "JJ" ], "market-weighted": [ "JJ" ], "Consumers": [ "NNS", "NNPS", "NNP" ], "Bonaparte": [ "NNP" ], "most-sold": [ "JJ" ], "bogey": [ "NN" ], "Geddes": [ "NNP", "NNPS" ], "Rumanian": [ "JJ" ], "Playmates": [ "NNPS" ], "Rinat": [ "NNP" ], "Donahue": [ "NNP" ], "WNYC": [ "NNP" ], "urban-development": [ "NN" ], "Torts": [ "NNP" ], "tabloid": [ "NN", "JJ" ], "loquacious": [ "JJ" ], "integrates": [ "VBZ" ], "disarray": [ "NN" ], "transcript": [ "NN" ], "Brechtian": [ "JJ" ], "redefined": [ "VBD" ], "thrifty": [ "JJ" ], "performs": [ "VBZ" ], "shortsightedness": [ "NN" ], "induction": [ "NN" ], "integrated": [ "VBN", "JJ" ], "despairing": [ "JJ", "VBG" ], "thrifts": [ "NNS" ], "rewrote": [ "VBD" ], "Megarians": [ "NNPS" ], "This": [ "DT", "NNP" ], "Poong": [ "NNP" ], "recession-free": [ "JJ" ], "Shippey": [ "NNP" ], "Vogtle": [ "NNP" ], "Thin": [ "JJ", "NNP" ], "IRAs": [ "NNS", "NNPS", "NNP", "NN" ], "overtake": [ "VB", "VBP" ], "gray-flannel": [ "JJ", "NN" ], "musculature": [ "NN" ], "DRI\\/McGraw-Hill": [ "NNP" ], "navies": [ "NNS" ], "crystallization": [ "NN" ], "uproot": [ "VB" ], "phrased": [ "VBN", "VBD" ], "commercial-jetliner": [ "JJ" ], "bouquet": [ "NN" ], "Decanting": [ "VBG" ], "Sashimi": [ "FW" ], "codifying": [ "VBG" ], "nasaled": [ "VBD" ], "Financo": [ "NNP", "NN" ], "salutary": [ "JJ" ], "Increased": [ "VBN", "JJ" ], "retreats": [ "NNS" ], "Increases": [ "NNS", "VBZ" ], "Coates": [ "NNP" ], "Edwardes": [ "NNP" ], "chemotherapy": [ "NN" ], "Palermo": [ "NNP" ], "Limitation": [ "NNP" ], "Refinancing": [ "NN" ], "medium-term": [ "JJ" ], "blind-folded": [ "JJ" ], "academy": [ "NN" ], "transistor": [ "NN" ], "slides": [ "NNS", "VBZ" ], "Vaseretic": [ "NNP" ], "regards": [ "VBZ", "NNS" ], "academe": [ "NN" ], "Taliesin": [ "NNP" ], "intonation": [ "NN" ], "Unitika": [ "NNP" ], "roadbed": [ "NN" ], "Italiana": [ "NNP" ], "beamed": [ "VBN" ], "cash-flush": [ "JJ" ], "kelly\\": [ "NNP" ], "Edition": [ "NNP" ], "patients": [ "NNS" ], "Italians": [ "NNPS", "NNS" ], "grander": [ "JJR", "RBR" ], "Capping": [ "VBG" ], "Bergen": [ "NNP" ], "Thrifty": [ "NNP", "JJ" ], "unaccountable": [ "JJ" ], "Sirota": [ "NNP" ], "PaineWebber-involved": [ "JJ" ], "provdied": [ "VBD" ], "low-heeled": [ "JJ" ], "Revolving": [ "VBG" ], "unremittingly": [ "RB" ], "levelled": [ "VBN" ], "unaccountably": [ "RB" ], "fourthquarter": [ "NN" ], "Relieved": [ "JJ" ], "etes": [ "FW" ], "olfactory": [ "JJ" ], "admittance": [ "NN" ], "Duane": [ "NNP" ], "lope": [ "NN" ], "towboats": [ "NNS" ], "contrary-to-reality": [ "JJ" ], "Thrifts": [ "NNS" ], "Appendixes": [ "NNS" ], "combat": [ "NN", "FW", "VB" ], "plague-sized": [ "JJ" ], "Shepperd": [ "NNP" ], "Delchamps": [ "NNP" ], "spacesuit": [ "NN" ], "Moshe": [ "NNP" ], "Proximate": [ "JJ" ], "realtor": [ "NN" ], "volume": [ "NN" ], "discourage": [ "VB", "VBP" ], "refreshing": [ "JJ", "VBG" ], "night-watchman": [ "NN" ], "Spycket": [ "NNP" ], "handhold": [ "NN" ], "Prague": [ "NNP" ], "visiting": [ "VBG", "JJ" ], "looked": [ "VBD", "VBN" ], "two-engine": [ "JJ" ], "undimmed": [ "VBN" ], "Salyer": [ "NNP" ], "Zigarlick": [ "NNP" ], "Ore.-based": [ "JJ" ], "insulators": [ "NNS" ], "Melinda": [ "NNP" ], "automated": [ "VBN", "VBN|JJ", "JJ", "VBD" ], "Centaur": [ "NNP" ], "pseudo-sophistication": [ "NN" ], "brutalized": [ "VBN", "JJ" ], "Coordinated": [ "VBN" ], "spindle": [ "NN" ], "Document": [ "NNP" ], "Invercon": [ "NNP" ], "spurring": [ "VBG" ], "Shut": [ "VB", "NNP" ], "anti-personality": [ "JJ" ], "mugs": [ "NNS" ], "McCartin": [ "NNP" ], "Shuz": [ "NNP" ], "Gatoil": [ "NNP" ], "Failure": [ "NN" ], "tribulation": [ "NN" ], "Shun": [ "NNP" ], "undermining": [ "VBG" ], "Shui": [ "NNP" ], "spun": [ "VBN", "VBD" ], "prosecute": [ "VB" ], "Loraine": [ "NNP" ], "Willings": [ "NNP" ], "well-springs": [ "JJ" ], "B-As": [ "IN", "NNP" ], "Regulative": [ "JJ" ], "inheres": [ "VBZ" ], "sub-chiefs": [ "NN" ], "spur": [ "VB", "NN", "VBP" ], "father-and-son": [ "JJ" ], "less-than-diffident": [ "JJ" ], "CONELRAD": [ "NNP" ], "deep-tendon": [ "NN" ], "Nissho-Iwai": [ "NNP" ], "counterguarantee": [ "NN" ], "futuristic": [ "JJ" ], "Ratings": [ "NNS", "NNPS" ], "shedding": [ "VBG", "NN" ], "ServiceMaster": [ "NNP" ], "dreariness": [ "NN" ], "fossilized": [ "JJ" ], "Shensi": [ "NNP" ], "admonition": [ "NN" ], "Kal": [ "NNP" ], "Cabrera": [ "NNP" ], "Merc": [ "NNP", "NN" ], "invulnerable": [ "JJ" ], "M.L.": [ "NNP" ], "Cleveland-based": [ "JJ" ], "Govern": [ "VB" ], "cousin-wife": [ "NN" ], "torpedo": [ "VB", "NN" ], "reactor": [ "NN" ], "environmentalists": [ "NNS" ], "culmination": [ "NN" ], "hypothesis": [ "NN" ], "thoroughfares": [ "NNS" ], "hobo": [ "NN" ], "bronc": [ "NN" ], "Korea-basher": [ "NN" ], "vanishing": [ "VBG" ], "Camrys": [ "NNPS" ], "Cairns": [ "NNP" ], "Toufexis": [ "NNP" ], "Marskmen": [ "NNP" ], "disenfranchised": [ "VBN" ], "Fredericton": [ "NNP" ], "ploys": [ "NNS" ], "high-echelon": [ "JJ" ], "subscribe": [ "VB", "VBP" ], "due-diligence": [ "JJ" ], "physician-owned": [ "JJ" ], "coddle": [ "VBP" ], "Posner": [ "NNP" ], "Officially": [ "RB", "NNP" ], "Regrets": [ "VBZ" ], "hypermarkets": [ "NNS" ], "amigo": [ "FW" ], "provinces": [ "NNS" ], "Pacta": [ "FW" ], "Perrin": [ "NNP" ], "intimidating": [ "VBG", "JJ" ], "tutor": [ "NN", "VB" ], "outflow": [ "NN" ], "shims": [ "NNS" ], "Cennini": [ "NNP" ], "capital-equipment": [ "NN" ], "proudest": [ "JJS" ], "Cennino": [ "NNP" ], "alkaloids": [ "NNS" ], "Islamabad": [ "NNP" ], "cypress": [ "NN" ], "meritorious": [ "JJ" ], "Trim-your-own-franks": [ "VB" ], "Imre": [ "NNP" ], "overproducers": [ "NNS" ], "Richardson": [ "NNP" ], "Saloon": [ "NNP" ], "Flory": [ "NNP" ], "pool-equipped": [ "JJ" ], "eyelashes": [ "NNS" ], "Force": [ "NNP", "FW", "NN" ], "corset": [ "NN" ], "Deaths": [ "NNP", "NNS" ], "A.I.D.": [ "NN" ], "persevered": [ "VBD" ], "Takashima": [ "NNP" ], "carelessness": [ "NN" ], "Wait": [ "VB", "NN", "NNP" ], "primacy": [ "NN" ], "sobriquet": [ "NN" ], "capital-gains-tax": [ "JJ" ], "Skolkau": [ "NNP" ], "Barstow": [ "NNP" ], "baldish": [ "JJ" ], "maladaptive": [ "JJ" ], "imprudently": [ "RB" ], "brandished": [ "VBD" ], "kneaded": [ "VBN" ], "units-Texas": [ "NNP" ], "Ladgham": [ "NNP" ], "Huntsville": [ "NNP" ], "Taxation": [ "NNP", "NN" ], "clinked": [ "VBD" ], "radiation": [ "NN" ], "cross": [ "VB", "JJ", "NN", "RB", "VBP" ], "brandishes": [ "VBZ" ], "Delinquency": [ "NNP", "NN" ], "residing": [ "VBG" ], "ball-bearing": [ "NN" ], "Vue": [ "NNP" ], "reinterpretation": [ "NN" ], "ultra-low-tar": [ "JJ" ], "cinematographer": [ "NN" ], "anti-war": [ "JJ" ], "Computer-guided": [ "JJ" ], "screenland": [ "NN" ], "Fascio-Communist": [ "JJ" ], "incredible": [ "JJ" ], "Pierre": [ "NNP" ], "fighting": [ "VBG", "VBG|NN", "JJ", "NN" ], "SPORTS": [ "NNS" ], "Oxidation": [ "NN" ], "Moral": [ "NNP", "JJ" ], "Moran": [ "NNP" ], "inter-office": [ "JJ" ], "unbridled": [ "JJ" ], "cried": [ "VBD", "VBN" ], "dressings": [ "NNS" ], "Kingstown": [ "NNP" ], "high-rise": [ "JJ", "NN" ], "home-care": [ "JJ", "NN" ], "Insilco": [ "NNP" ], "replenish": [ "VB" ], "fibrin": [ "NN" ], "cries": [ "NNS", "VBZ" ], "leveraged-buy-out": [ "JJ", "NN" ], "Argentina": [ "NNP", "NN" ], "methylglyoxal": [ "NN" ], "Argentine": [ "JJ", "NNP" ], "penchant": [ "NN" ], "Tracers": [ "NNP", "NNPS" ], "BALLOT": [ "NN" ], "clock-stopped": [ "VBN" ], "Overweight": [ "JJ" ], "capabilities": [ "NNS" ], "son-of-exchange": [ "JJ" ], "lymphocytes": [ "NNS" ], "stop-motion": [ "JJ", "NN" ], "Appert": [ "NNP" ], "Nujoma": [ "NNP" ], "HUNTING": [ "NN", "VBG" ], "Populares": [ "NNP" ], "T": [ "NN", "NNP" ], "presume": [ "VB", "VBP" ], "raincoats": [ "NNS" ], "Marylanders": [ "NNPS" ], "underwrote": [ "VBD", "NN", "VBP" ], "black-tie": [ "JJ" ], "Elephants": [ "NNS" ], "Mersa": [ "NNP" ], "raffish": [ "JJ" ], "rituals": [ "NNS" ], "Co-operative": [ "NNP" ], "Kirghiz": [ "NNP" ], "virginity": [ "NN" ], "nondiscrimination": [ "NN" ], "Rottger": [ "NNP" ], "Section": [ "NN", "NNP" ], "unsuccessful": [ "JJ" ], "Barrington": [ "NNP" ], "Affirmative": [ "JJ" ], "cutters": [ "NNS" ], "Bellows": [ "NNP" ], "STODGY": [ "JJ" ], "bossed": [ "VBN" ], "manipulations": [ "NNS" ], "courtyards": [ "NNS" ], "bosses": [ "NNS" ], "Moriarty": [ "NNP" ], "Nosebleed": [ "NN" ], "on-level": [ "NN" ], "Matchbook-sized": [ "JJ" ], "inking": [ "NN" ], "conveyed": [ "VBD", "VBN" ], "fray": [ "NN", "VB" ], "gentians": [ "NNS" ], "Changyong": [ "NNP" ], "Generalizations": [ "NNS" ], "furtive": [ "JJ" ], "perspectives": [ "NNS" ], "Kendall": [ "NNP" ], "smaller-capital": [ "JJ" ], "takover": [ "NN" ], "Autodesk": [ "NNP" ], "column": [ "NN" ], "urged": [ "VBD", "VBN" ], "Boggs": [ "NNP" ], "perks": [ "NNS" ], "vocationally": [ "RB" ], "low-back": [ "JJ" ], "perky": [ "JJ" ], "urges": [ "VBZ", "NNS" ], "emperor": [ "NN" ], "Yippies": [ "NNPS" ], "PLAN": [ "NN" ], "kinda": [ "RB" ], "Palamara": [ "NNP" ], "besmirched": [ "VBD" ], "Takoma": [ "NNP" ], "champ": [ "NN" ], "negate": [ "VB" ], "Employee-owned": [ "JJ" ], "desertification": [ "NN" ], "Upon": [ "IN", "NNP" ], "groomed": [ "VBN" ], "continental": [ "JJ" ], "preapproved": [ "VBN" ], "Ramsey": [ "NNP" ], "commercial-products": [ "JJ" ], "shredder": [ "NN" ], "Condition": [ "NN", "NNP" ], "Ginning": [ "NNP" ], "Chrysler-Plymouth": [ "NNP" ], "triggered": [ "VBN", "VBD", "JJ" ], "Seahorse": [ "NNP" ], "tinged": [ "VBN" ], "thievin": [ "VBG" ], "Yuppies": [ "NNS" ], "whole-milk": [ "NN" ], "Kanaday": [ "NNP" ], "Stops": [ "NNP" ], "Miscellany": [ "NNP" ], "Sills": [ "NNP" ], "ComputerWorld": [ "NNP" ], "WIC": [ "NNP" ], "altitude-azimuth-mounted": [ "JJ" ], "Panam": [ "NNP" ], "mispronunciation": [ "NN" ], "infants": [ "NNS" ], "Chromium": [ "NN" ], "Oceanography": [ "NNP" ], "humbling": [ "JJ" ], "stuck-up": [ "JJ" ], "sexpot": [ "NN" ], "Site": [ "NNP" ], "resumption": [ "NN" ], "Kimba": [ "NNP" ], "Physicists": [ "NNS" ], "Berrigan": [ "NNP" ], "sympathizers": [ "NNS" ], "Wiedemann": [ "NNP" ], "budget-reconciliation": [ "JJ", "NN" ], "downtalking": [ "JJ" ], "guitarist": [ "NN" ], "Potowomut": [ "NNP" ], "Fuji": [ "NNP", "NNS" ], "Islamic": [ "NNP", "JJ" ], "other": [ "JJ", "NN" ], "Desk": [ "NNP" ], "ventilating": [ "NN", "VBG" ], "Dese": [ "NNP" ], "Fontainbleau": [ "NNP" ], "Rothamsted": [ "NNP" ], "CenTrust": [ "NNP" ], "contacting": [ "VBG" ], "sloping": [ "VBG", "JJ" ], "album": [ "NN" ], "inherently": [ "RB" ], "non-military": [ "JJ" ], "Komatsu": [ "NNP" ], "earthly": [ "JJ" ], "Messerschmitt-Boelkow-Blohm": [ "NNP" ], "Smaller-stock": [ "JJR" ], "Draconian": [ "JJ" ], "upwards": [ "RB", "NNS" ], "Abingdon": [ "NNP" ], "Ditch": [ "NNP", "NN" ], "all-nighters": [ "NNS" ], "resublimed": [ "VBN" ], "Roswell": [ "NNP" ], "well-oriented": [ "JJ" ], "necrosis": [ "NN" ], "Dorenzo": [ "NNP" ], "Livery": [ "JJ" ], "gynecologist": [ "NN" ], "pods": [ "NNS" ], "Kensetsu": [ "NNP" ], "PARS-Datas": [ "NNP" ], "white-walled": [ "JJ" ], "Artkino": [ "NNP" ], "Does": [ "VBZ", "NNP" ], "Olympics": [ "NNPS", "NNP", "NNS" ], "DEMAND": [ "NN" ], "ringlets": [ "NNS" ], "vassals": [ "NNS" ], "blot-appearance": [ "NN" ], "Spectators": [ "NNS" ], "Rayle": [ "NNP" ], "salesgirl": [ "NN" ], "Sewell": [ "NNP" ], "sputter": [ "VB", "VBP" ], "immature": [ "JJ" ], "meadows": [ "NNS" ], "Beantown": [ "NNP" ], "oceans": [ "NNS" ], "Eberly": [ "NNP" ], "Charitable": [ "JJ" ], "sideline-business": [ "JJ" ], "leisurely": [ "JJ", "RB" ], "stabbed": [ "VBD", "VBN" ], "interlocking": [ "VBG", "JJ" ], "JNR": [ "NNP" ], "disturb": [ "VB", "VBP" ], "Palache": [ "NNP" ], "down-payment": [ "NN" ], "Bacon": [ "NNP" ], "new-issue": [ "JJ", "NN" ], "persisted": [ "VBD", "VBN" ], "wavered": [ "VBD" ], "Paul": [ "NNP" ], "Convair": [ "NNP" ], "Rachel": [ "NNP", "JJ", "NN" ], "specially": [ "RB" ], "Off-Track": [ "NNP" ], "eclipsed": [ "VBD", "VBN" ], "sailed": [ "VBD", "VBN" ], "loathing": [ "NN", "VBG" ], "McQuillan": [ "NNP" ], "photofinishing": [ "NN" ], "enroute": [ "RB" ], "jocular": [ "JJ" ], "Boise": [ "NNP" ], "sales.": [ "NNS" ], "Olivares": [ "NNP" ], "truck-building": [ "JJ", "NN" ], "fossil": [ "JJ", "NN" ], "resilient": [ "JJ" ], "payoff": [ "NN" ], "cull": [ "VB", "VBP" ], "mid-watch": [ "JJ" ], "Lovering": [ "NNP" ], "GRP": [ "NNP" ], "Gadsden": [ "NNP" ], "Munoz": [ "NNP" ], "GRX": [ "NNP" ], "atoms": [ "NNS" ], "GRE": [ "NNP" ], "cart": [ "NN", "VBP", "VB" ], "cult": [ "NN" ], "ACCOUNTING": [ "NN", "NNP" ], "Stephanie": [ "NNP" ], "eclipses": [ "NNS" ], "Nurseries": [ "NNPS" ], "cyclical": [ "JJ" ], "Crossland": [ "NNP" ], "Propriety": [ "NN" ], "elaborate": [ "VB", "JJ" ], "gene-copying": [ "JJ" ], "Hydrogen": [ "NN" ], "criticism": [ "NN" ], "roadrunner": [ "NN" ], "Rul.": [ "NNP" ], "birthright": [ "NN" ], "anti-Semitic": [ "JJ" ], "Kee-reist": [ "UH" ], "replace": [ "VB", "VBP" ], "smolders": [ "VBZ" ], "beneficiaries": [ "NNS" ], "IFAR": [ "NNP" ], "unanswered": [ "JJ" ], "anions": [ "NNS" ], "PROMOTION": [ "NNP" ], "Gabele": [ "NNP" ], "USF&G": [ "NNP" ], "apportionment": [ "NN" ], "Porch": [ "NNP", "NN" ], "Diprivan": [ "NNP" ], "pompons": [ "NNS" ], "coordinators": [ "NNS" ], "symphony": [ "NN" ], "strike": [ "NN", "VB", "VBP" ], "marchers": [ "NNS" ], "Recent": [ "JJ" ], "cutbacks": [ "NNS" ], "Hart-Scott": [ "NNP" ], "paperwork": [ "NN" ], "hereby": [ "RB" ], "sortie": [ "NN" ], "Rule": [ "NNP", "NN" ], "EXPENSES": [ "NNS" ], "focused-factory": [ "JJ" ], "reversible": [ "JJ" ], "Cathryn": [ "NNP" ], "Doskocil": [ "NNP" ], "Chinook": [ "NNP" ], "already-sizable": [ "JJ" ], "Widow": [ "NN", "NNP" ], "Selman": [ "NNP" ], "flicking": [ "VBG" ], "Synbiotics": [ "NNP" ], "Imports": [ "NNS", "NNP", "NNPS" ], "contract-steering": [ "JJ" ], "rulings": [ "NNS" ], "Professors": [ "NNP" ], "Beebe": [ "NNP" ], "imperialism": [ "NN" ], "shelve": [ "VB" ], "WNYW-TV": [ "NNP" ], "food-industry": [ "NN" ], "brand-name": [ "JJ", "NNP", "NN" ], "omelets": [ "NNS" ], "conservatorship": [ "NN" ], "Socialist-led": [ "JJ" ], "leotards": [ "NNS" ], "Quant": [ "NN" ], "Franny": [ "NNP" ], "Easier": [ "JJR", "RBR" ], "truckdriver": [ "NN" ], "Dreisers": [ "NNPS" ], "groaned": [ "VBD" ], "dignifies": [ "VBZ" ], "feature": [ "NN", "VBP", "JJ", "VB" ], "Maritime": [ "NNP" ], "dignified": [ "VBN", "JJ" ], "primping": [ "VBG" ], "abstraction": [ "NN" ], "Hydroxides": [ "NNS" ], "minimized": [ "VBN", "VBD" ], "adoptions": [ "NNS" ], "vocalization": [ "NN" ], "rock-strewn": [ "NN" ], "reassess": [ "VB", "NN" ], "Bailard": [ "NNP" ], "LIFETIME": [ "NNP" ], "minimizes": [ "VBZ" ], "unselfish": [ "JJ" ], "first-strike": [ "JJ" ], "Bananas": [ "NNS" ], "glow-in-the-dark": [ "JJ" ], "would-be": [ "JJ", "NN" ], "nympho": [ "NN" ], "fictional": [ "JJ" ], "nymphs": [ "NNS" ], "orally": [ "RB" ], "infertile": [ "JJ" ], "overhauls": [ "NNS", "VBZ" ], "stockpiled": [ "VBN" ], "semiconductor-coating": [ "NN" ], "Bryner": [ "NNP" ], "loss-expense": [ "JJ" ], "foodstuff": [ "NN" ], "Ludwin": [ "NNP" ], "stockpiles": [ "NNS", "VBZ" ], "Ludwig": [ "NNP" ], "Commies": [ "NNPS", "NNS" ], "Told": [ "VBN", "VBD" ], "exit-poll": [ "JJ", "NN" ], "Guofeng": [ "NNP" ], "VLSI": [ "NNP" ], "fairest": [ "JJS" ], "heretofore": [ "RB" ], "charmers": [ "NNS" ], "fanciest": [ "JJS" ], "Barber": [ "NNP", "NN" ], "Rowse": [ "NNP" ], "Palsy": [ "NNP" ], "YALE": [ "NNP" ], "put-upon": [ "JJ" ], "Beresford": [ "NNP" ], "doghouse": [ "NN" ], "better-safe-than": [ "JJ" ], "mispriced": [ "VBD" ], "AutoWorld": [ "NNP" ], "RULERS": [ "NNS" ], "Danforth": [ "NNP" ], "interrupt": [ "VB", "VBP" ], "man-made": [ "JJ" ], "mimicking": [ "VBG" ], "PROPERTIES": [ "NNPS" ], "Habitat": [ "NNP" ], "Siedlungs": [ "NNP" ], "Yank-oriented": [ "JJ" ], "yachting": [ "NN" ], "Gustavus": [ "NNP" ], "Hackney": [ "NNP" ], "shrewder": [ "JJR" ], "two-bit": [ "JJ" ], "volcano": [ "NN" ], "one-hour": [ "JJ" ], "Millions": [ "NNS" ], "powerlessness": [ "NN" ], "pre-``": [ "``" ], "reputedly": [ "RB" ], "archetypes": [ "NNS" ], "Superstation": [ "NNP" ], "Winner": [ "NNP" ], "long-running": [ "JJ" ], "Schroer": [ "NNP" ], "unlawfully": [ "RB" ], "raw-materials": [ "NNS", "JJ" ], "tragicomic": [ "JJ", "NN" ], "McCovey": [ "NNP" ], "AGIP": [ "NNP" ], "Foreseeing": [ "VBG" ], "PROFIT": [ "NN" ], "Huber": [ "NNP" ], "Burnison": [ "NNP" ], "re": [ "NN" ], "rf": [ "NN" ], "transmission-product": [ "NN" ], "for-profit": [ "JJ" ], "Hubel": [ "NNP" ], "Stuttgart-based": [ "JJ" ], "differentiates": [ "VBZ" ], "Josiah": [ "NNP" ], "Prebon": [ "NNP" ], "Word": [ "NNP", "NN" ], "Amcast": [ "NNP" ], "Extension": [ "NNP", "NN" ], "Sifco": [ "NNP" ], "rateable": [ "JJ" ], "Work": [ "NN", "NNP", "VB", "VBP" ], "threatened": [ "VBN", "VBD", "JJ" ], "Worn": [ "VBN" ], "attributions": [ "NNS" ], "sunbonnets": [ "NNS" ], "tinkled": [ "VBD" ], "crowned": [ "VBN" ], "estrogen-replacement": [ "NN" ], "obstructing": [ "VBG" ], "incentive-buoyed": [ "JJ" ], "enormous": [ "JJ" ], "birdie": [ "NN" ], "eared": [ "JJ" ], "scrupulosity": [ "NN" ], "Separate": [ "JJ" ], "tempting": [ "JJ" ], "Gianni": [ "NNP", "FW" ], "government-orchestrated": [ "JJ" ], "symbolize": [ "VB", "VBP" ], "appreciable": [ "JJ" ], "CSC": [ "NNP" ], "Chihuahua": [ "NNP" ], "athlete-s": [ "NN" ], "hearsay": [ "NN" ], "steroids": [ "NNS" ], "Tasurinchi": [ "NNP" ], "Harbert": [ "NNP" ], "vitro": [ "FW", "NN" ], "procreate": [ "VB" ], "glassy": [ "JJ" ], "infringed": [ "VBD", "VBN" ], "Hama-style": [ "JJ" ], "open-market": [ "JJ", "NN" ], "promise...": [ ":" ], "lawsuits": [ "NNS" ], "think-tanks": [ "JJ" ], "Effect": [ "NN" ], "perturbations": [ "NNS" ], "clot-reducing": [ "JJ" ], "rectifier": [ "NN" ], "earthquake-ravaged": [ "JJ" ], "counter-offensive": [ "NN" ], "unplowed": [ "JJ" ], "Backbends": [ "NNS" ], "REPORTED": [ "VBN" ], "rectified": [ "VBN" ], "supertitles": [ "NNS" ], "defaulted": [ "VBD", "VBN", "JJ" ], "legatee": [ "NN" ], "wod": [ "MD" ], "Adm.": [ "NNP" ], "requesters": [ "NNS" ], "icicle": [ "NN" ], "illiquidity": [ "NN" ], "hibachi": [ "NN" ], "durin": [ "NN", "IN" ], "krautheads": [ "NNS" ], "Abramson": [ "NNP" ], "Mohandas": [ "NNP" ], "skimmed": [ "VBD", "VBN" ], "Volgograd": [ "NNP" ], "issuable": [ "JJ" ], "Weigle": [ "NNP" ], "Automobili": [ "NNP" ], "willingness": [ "NN" ], "hop-skipped": [ "VBN" ], "shyly": [ "RB" ], "Mullenax": [ "NNP" ], "motets": [ "NNS" ], "constricted": [ "JJ", "VBD", "VBN" ], "benighted": [ "JJ" ], "unmelodic": [ "JJ" ], "gift-giving": [ "NN", "JJ" ], "push-ups": [ "NNS" ], "Lincolnshire": [ "NNP" ], "bleachers": [ "NNS" ], "soaked": [ "VBN", "JJ", "VBD" ], "self-flagellation": [ "NN" ], "promenades": [ "NNS" ], "instructs": [ "VBZ" ], "amusing": [ "JJ" ], "Hornaday": [ "NNP" ], "Drastic": [ "JJ" ], "second-leading": [ "JJ" ], "imprudent": [ "JJ" ], "floorshow": [ "NN" ], "Stertz": [ "NNP" ], "thrilled": [ "VBN", "JJ", "VBD" ], "twin-blade": [ "JJ" ], "unmindful": [ "JJ" ], "automaker": [ "NN" ], "VCR": [ "NNP", "NN", "NNS" ], "addict": [ "NN" ], "vaccinia": [ "NN" ], "organization": [ "NN" ], "demonstrativeness": [ "NN" ], "thriller": [ "NN" ], "Galveston": [ "NNP" ], "dummy": [ "JJ", "NN" ], "Jerusalem": [ "NNP", "UH" ], "no-goal": [ "NN" ], "snooping": [ "VBG" ], "Nonsexist": [ "NNP" ], "Chardon": [ "NNP", "NN" ], "Poxon": [ "NNP" ], "Deactivation": [ "NN" ], "detriment": [ "NN" ], "Worthington": [ "NNP" ], "catastrophic-health": [ "JJ", "NN" ], "incorporate": [ "VB", "VBP", "JJ" ], "MONITORED": [ "VBD" ], "HANNIFIN": [ "NNP" ], "insects": [ "NNS" ], "meetings": [ "NNS" ], "people-oriented": [ "JJ" ], "Nyiregyhaza": [ "NNP" ], "PLC.": [ "NNP" ], "Twain": [ "NNP" ], "third-shift": [ "JJ" ], "lethal": [ "JJ" ], "abreast": [ "RB" ], "Timon": [ "NNP" ], "Beech-Nut": [ "NNP" ], "Strips": [ "NNS" ], "itinerant": [ "JJ" ], "Shahrokh": [ "NNP" ], "Microwaves": [ "NNS" ], "crossways": [ "RB" ], "figgered": [ "VBD" ], "maturation": [ "NN" ], "Non-actors": [ "NNS" ], "non-monetary": [ "JJ" ], "Timor": [ "NNP" ], "salespeople": [ "NN", "NNS" ], "enemy-Jew": [ "NN" ], "rosebuds": [ "NNS" ], "Barberis": [ "NNP" ], "Permits": [ "NNS" ], "Nevertheless": [ "RB" ], "remarry": [ "VB" ], "inoperative": [ "JJ" ], "pocket": [ "NN", "VB" ], "Wastrel": [ "NN" ], "Gitano": [ "NNP" ], "relish": [ "NN", "VB" ], "societies": [ "NNS" ], "Bens": [ "NNP" ], "sub-assemblies": [ "NNS" ], "spilling": [ "VBG", "NN" ], "Squats": [ "NNS" ], "Prayers": [ "NNS" ], "stunningly": [ "RB" ], "Siva": [ "NNP" ], "adherence": [ "NN" ], "Pasture": [ "NNP" ], "hasten": [ "VB", "VBP" ], "defense-oriented": [ "JJ" ], "trade-school": [ "NN" ], "Taxpayer": [ "NN", "NNP" ], "festival-oriented": [ "JJ" ], "peripheral": [ "JJ" ], "insinuation": [ "NN" ], "flaxen": [ "JJ" ], "Brevard": [ "NNP" ], "radius": [ "NN" ], "Szelenyi": [ "NNP" ], "to-the-death": [ "NN" ], "well-educated": [ "JJ" ], "seventh-consecutive": [ "JJ" ], "avert": [ "VB" ], "dimethylglyoxime": [ "NN" ], "Comedy": [ "NNP", "NN" ], "Eprex": [ "NNP" ], "Ginandjar": [ "NNP" ], "card-holder": [ "NN" ], "cosmologies": [ "NNS" ], "SABH": [ "NNP" ], "humankind": [ "NN" ], "pro-selected": [ "JJ" ], "propagated": [ "VBN" ], "magnesium": [ "NN" ], "Schottenstein": [ "NNP" ], "smelled": [ "VBD", "VBN" ], "authorizing": [ "VBG" ], "self-congratulatory": [ "JJ" ], "Carothers": [ "NNP" ], "nonregulated": [ "JJ" ], "well-lighted": [ "JJ" ], "heavy-hitter": [ "NN" ], "GSD&M": [ "NNP" ], "chirped": [ "VBD" ], "fallacious": [ "JJ" ], "RECRUITING": [ "NN" ], "decompose": [ "VB" ], "logic": [ "NN" ], "meting": [ "VBG" ], "Stover": [ "NNP" ], "argue": [ "VBP", "VB" ], "absent-mindedly": [ "RB" ], "Chatterton": [ "NNP" ], "applause-happy": [ "JJ" ], "EGA-VGA": [ "JJ" ], "Millard": [ "NNP" ], "Korman": [ "NNP" ], "nitrogen-based": [ "JJ" ], "pregnancy": [ "NN" ], "Bernstein": [ "NNP" ], "Rotie": [ "NNP" ], "jog": [ "VB" ], "Movement": [ "NNP", "NN" ], "Perception": [ "NN", "NNP" ], "Mais": [ "FW" ], "adverb": [ "NN" ], "particle-board": [ "NN" ], "well-rehearsed": [ "JJ" ], "monosodium": [ "NN" ], "subside": [ "VB", "VBP" ], "subsidy": [ "NN" ], "stadium": [ "NN" ], "Insofar": [ "RB" ], "song-writing": [ "NN" ], "phyla": [ "NN" ], "superhuman": [ "JJ" ], "adroitly": [ "RB" ], "Moneyed": [ "NNP" ], "graphical": [ "JJ" ], "technologically-improved": [ "JJ" ], "Tokyo": [ "NNP" ], "Compulsive": [ "JJ" ], "onyx": [ "NN" ], "light-weight": [ "JJ" ], "Bougainville": [ "NNP" ], "Rachael": [ "NNP" ], "evasions": [ "NNS" ], "Fayetteville": [ "NNP" ], "haters": [ "NNS" ], "excorciate": [ "VB" ], "semi-statist": [ "JJ" ], "Miantonomi": [ "NNP" ], "Cessna": [ "NNP" ], "NMR": [ "NNP" ], "NMS": [ "NNP" ], "contemplated": [ "VBN", "JJ", "VBD" ], "Maid": [ "NNP" ], "flood-insurance": [ "NN" ], "Kezziah": [ "NNP" ], "Pancrazio": [ "NNP" ], "contemplates": [ "VBZ" ], "NME": [ "NNP" ], "NMB": [ "NNP" ], "Harrison": [ "NNP" ], "vascular-lesion": [ "NN" ], "Goddard": [ "NNP" ], "bin": [ "NN" ], "Dim": [ "VBP" ], "Lackluster": [ "JJ" ], "Neisse": [ "NNP" ], "Thermometer": [ "NNP" ], "Tossing": [ "VBG" ], "elicit": [ "VB" ], "Sitter": [ "NNP" ], "anticipating": [ "VBG" ], "Mail": [ "NNP", "NN" ], "Puerto": [ "NNP", "NNS", "JJ" ], "smoothest": [ "JJS" ], "F100-PW-200": [ "NNP" ], "Python": [ "NNP" ], "per-year": [ "JJ" ], "yellow": [ "JJ", "NN", "VB" ], "Intecom": [ "NNP" ], "Fatimata": [ "NNP" ], "clucking": [ "VBG" ], "gateways": [ "NNS" ], "Die": [ "NNP", "FW", "VBP", "VB" ], "text-lookup": [ "NN" ], "pre-school": [ "JJ" ], "Sloanaker": [ "NNP" ], "latter-day": [ "JJ" ], "rent-control": [ "NN" ], "EFFECT": [ "NN" ], "photographers": [ "NNS" ], "sobbing": [ "VBG" ], "Apples": [ "NNS", "NNPS" ], "military": [ "JJ", "NN" ], "Gays": [ "NNS" ], "Weigel": [ "NNP" ], "Tijuana": [ "NNP" ], "maximizing": [ "VBG" ], "reoffering": [ "VBG", "NN" ], "holdups": [ "NNS" ], "detracted": [ "VBN" ], "raindrops": [ "NNS" ], "backhanded": [ "JJ" ], "scissoring": [ "VBG" ], "capitol": [ "NN" ], "sleeps": [ "VBZ" ], "misconstruction": [ "NN" ], "MOVE": [ "NN" ], "sleepy": [ "JJ" ], "rotates": [ "VBZ" ], "divination": [ "NN" ], "amusingly": [ "RB" ], "town-house": [ "JJ", "NN" ], "U.S.-about": [ "IN" ], "Beit": [ "NNP" ], "spectacles": [ "NNS" ], "craning": [ "VBG" ], "olefins": [ "NNS" ], "computer-accessory": [ "JJ", "NN" ], "Preferred-dividend": [ "JJ" ], "Leonard": [ "NNP", "NN" ], "disparity": [ "NN" ], "Berson": [ "NNP" ], "obedient": [ "JJ" ], "Spiegel": [ "NNP" ], "semi-annually": [ "RB" ], "Doerflinger": [ "NNP" ], "weeklies": [ "NNS" ], "elevation": [ "NN" ], "Fontainebleau": [ "NNP" ], "perking": [ "VBG" ], "precincts": [ "NNS" ], "Reisert": [ "NNP" ], "Shucks": [ "UH" ], "desire": [ "NN", "VBP", "VB" ], "Ryukichi": [ "NNP" ], "Aristotle": [ "NNP" ], "floppy-disk": [ "NN" ], "marinating": [ "VBG" ], "withing": [ "IN" ], "grotesquely": [ "RB" ], "continuation": [ "NN" ], "creek": [ "NN" ], "Idiot": [ "NN" ], "creed": [ "NN" ], "metabolic": [ "JJ" ], "Neo-Paganism": [ "NNP" ], "pre-existence": [ "JJ" ], "trombone": [ "NN" ], "prick": [ "NN" ], "harassment": [ "NN" ], "Haydn": [ "NNP" ], "creep": [ "VB", "VBP", "JJ", "NN" ], "Abbe": [ "NNP" ], "Abba": [ "NNP" ], "Upsala": [ "NNP" ], "Harrow": [ "NNP" ], "Abby": [ "NNP" ], "palatable": [ "JJ" ], "Weici": [ "NNP" ], "Origins": [ "NNP" ], "MPl": [ "NNP" ], "Showrooms": [ "NNS" ], "Tigre": [ "NNP" ], "unfrozen": [ "JJ" ], "chin-up": [ "IN", "VB" ], "substituted": [ "VBN", "JJ", "VBD" ], "yoke": [ "NN" ], "MPs": [ "NNS" ], "OUTRAGE": [ "NN" ], "memorable": [ "JJ" ], "unhealthily": [ "RB" ], "MPD": [ "NNP" ], "Caneli": [ "NNP" ], "Sasser": [ "NNP" ], "globetrotter": [ "NN" ], "MPH": [ "NNP" ], "MPI": [ "NNP" ], "sightseers": [ "NNS" ], "costive": [ "JJ" ], "brain-wracking": [ "JJ" ], "iguanas": [ "NNS" ], "Boulevard": [ "NNP" ], "Knowledge": [ "NN" ], "Hybrid": [ "NNP" ], "well-suited": [ "JJ" ], "respectable": [ "JJ" ], "magazines": [ "NNS" ], "furnishing": [ "NN", "VBG" ], "hospice": [ "NN" ], "octogenarians": [ "NNS" ], "Kroller-Muller": [ "NNP" ], "novo": [ "FW" ], "abjectly": [ "RB" ], "Mentz": [ "NNP" ], "Belief": [ "NN" ], "Shawomet": [ "NNP" ], "abstractions": [ "NNS" ], "Belier": [ "NNP" ], "resulted": [ "VBD", "VBN" ], "on-line": [ "JJ", "NN" ], "launching": [ "VBG", "NN" ], "Homestead": [ "NNP" ], "slow-selling": [ "JJ" ], "magnificent": [ "JJ" ], "Karpa": [ "NNP" ], "beech": [ "NN" ], "seven-tenths": [ "NNS" ], "sprinting": [ "VBG" ], "underdeveloped": [ "JJ" ], "handily": [ "RB" ], "Hagura": [ "NNP" ], "Ozagenians": [ "NNS" ], "alone...": [ ":" ], "Schubert": [ "NNP" ], "c.i.f": [ "JJ" ], "insincere": [ "JJ" ], "productivity-based": [ "JJ" ], "Biotechnical": [ "NNP" ], "Weinshienk": [ "NNP" ], "megakaryocytic": [ "JJ" ], "hurley": [ "NN" ], "Develop": [ "VB" ], "Ranzer": [ "NNP" ], "senilis": [ "NNS" ], "Calvet": [ "NNP" ], "Salvadorans": [ "NNS", "NNPS" ], "splotch": [ "NN" ], "sprouts": [ "NNS" ], "whites": [ "NNS" ], "Maya": [ "FW" ], "glacier": [ "NN" ], "Mayo": [ "NNP" ], "Zambrano": [ "NNP" ], "Possible": [ "JJ" ], "Possibly": [ "RB" ], "chauvinists": [ "NNS" ], "anti-nausea": [ "JJ" ], "Mays": [ "NNP" ], "E.B.": [ "NNP" ], "productivity-share": [ "NN" ], "reggae": [ "NN" ], "computer-science": [ "NN" ], "teats": [ "NNS" ], "postmarks": [ "NNS" ], "cleaved": [ "VBN" ], "reruns": [ "NNS" ], "cleaver": [ "NN" ], "entrust": [ "VB", "VBP" ], "hygienic": [ "JJ" ], "withstands": [ "VBZ" ], "clattery": [ "JJ" ], "fastened": [ "VBN", "VBD" ], "highness": [ "NN" ], "rockers": [ "NNS" ], "Gupta": [ "NNP" ], "Colzani": [ "NNP" ], "Reduce": [ "VB" ], "fastener": [ "NN" ], "ironfist": [ "NN" ], "cautioning": [ "VBG" ], "Fossan": [ "NNP" ], "treatises": [ "NNS" ], "breadth": [ "NN" ], "Confectionery": [ "JJ", "NNP" ], "Castor": [ "JJ" ], "finger-pointing": [ "NN", "JJ" ], "incurred": [ "VBN", "VBD" ], "Buffett": [ "NNP" ], "activated": [ "VBN", "JJ" ], "theaters": [ "NNS", "VBD" ], "burgomaster": [ "NN" ], "skiing": [ "NN", "VBG" ], "Films": [ "NNS" ], "Radio-transmitter": [ "NN" ], "Mafia-tainted": [ "JJ" ], "retrofit": [ "VB" ], "Warranties": [ "NNS" ], "non-enzymatic": [ "JJ" ], "Bahr": [ "NNP" ], "uneven": [ "JJ" ], "methodically": [ "RB" ], "prolonging": [ "VBG" ], "Rosenmueller": [ "NNP" ], "Bahi": [ "NNP" ], "Believe": [ "VB" ], "agnomen": [ "NN" ], "not-less-deadly": [ "JJ" ], "Federalist": [ "NNP", "JJ" ], "Goncharov": [ "NNP" ], "spate": [ "NN" ], "cataclysmic": [ "JJ" ], "spats": [ "NNS" ], "Heel-Miracle": [ "NNP" ], "Windheim": [ "NNP" ], "Rents": [ "NNS", "NNP" ], "Recognize": [ "VB" ], "bilges": [ "NNS" ], "leave": [ "VB", "NN", "VBP" ], "engrossing": [ "JJ" ], "Xyvision": [ "NNP" ], "eosinophilic": [ "JJ" ], "Renta": [ "NNP" ], "abstrusenesses": [ "NNS" ], "loads": [ "NNS" ], "Suzanne": [ "NNP" ], "spiritual": [ "JJ", "NN" ], "Loveways": [ "NNP" ], "lounged": [ "VBD" ], "Quotas": [ "NNS" ], "Governmental": [ "NNP" ], "Unspeakable": [ "JJ" ], "Monarch": [ "NNP", "NN" ], "Sigman": [ "NNP" ], "behaviorally": [ "RB" ], "thyroglobulin": [ "NN" ], "Francie": [ "NNP" ], "melt": [ "VB", "VBP", "NN" ], "Cruz": [ "NNP" ], "lazily": [ "RB" ], "toxic-waste": [ "NN" ], "Francis": [ "NNP" ], "S.O.B.s": [ "NNS" ], "Neusteter": [ "NNP" ], "meld": [ "VB" ], "less-than-dazzling": [ "JJ" ], "jury": [ "NN" ], "Crosson": [ "NNP" ], "virtues": [ "NNS" ], "magnetism": [ "NN" ], "Bargerter": [ "NNP" ], "Veeck": [ "NNP" ], "jure": [ "FW" ], "drug-treatment": [ "NN", "JJ" ], "momentous": [ "JJ" ], "systemwide": [ "JJ" ], "passengers": [ "NNS" ], "hurtling": [ "VBG" ], "redemption": [ "NN" ], "fomented": [ "VBD" ], "brilliant": [ "JJ" ], "Thierry": [ "NNP" ], "lighter-than-normal": [ "JJ" ], "absenteeism": [ "NN" ], "Scratching": [ "VBG" ], "Pickman": [ "NNP" ], "misfortunes": [ "NNS" ], "D-marks": [ "NNS" ], "tasks": [ "NNS" ], "WDB": [ "NN", "NNP" ], "Hagner": [ "NNP" ], "curtailing": [ "VBG" ], "oak-log": [ "NN" ], "Asteria": [ "NNP" ], "overarching": [ "VBG", "JJ" ], "raking": [ "VBG" ], "logically": [ "RB" ], "Kroc": [ "NNP" ], "Nennius": [ "NNP" ], "unshirted": [ "JJ" ], "Egon": [ "NNP" ], "Ecuador": [ "NNP" ], "Fractions": [ "NNS" ], "NAEBM": [ "NNP" ], "hoosegow": [ "NN" ], "Billionaire": [ "NN" ], "Unconstitutional": [ "JJ" ], "scops": [ "NNS" ], "papal": [ "JJ" ], "Respectability": [ "NN" ], "Gleeson": [ "NNP" ], "citywide": [ "JJ" ], "scope": [ "NN" ], "Machineries": [ "NNP", "NNS" ], "theoretical": [ "JJ" ], "prosecutor": [ "NN" ], "Yuri": [ "NNP" ], "Iwai": [ "NNP" ], "artillery": [ "NN" ], "wallcoverings": [ "NNS" ], "everywhere": [ "RB" ], "Bechhofer": [ "NNP" ], "Achaeans": [ "NNPS", "NNP" ], "Yedisan": [ "NNP" ], "power-sharing": [ "JJ" ], "mascot": [ "NN" ], "Seelbinder": [ "NNP" ], "incited": [ "VBN", "VBD" ], "caseload": [ "NN" ], "uninsurable": [ "JJ" ], "facilitating": [ "VBG" ], "Stovall": [ "NNP" ], "Lois": [ "NNP" ], "Wizards": [ "NNPS" ], "oversupplied": [ "JJ", "VBN" ], "stock-options": [ "NNS" ], "stature": [ "NN" ], "self-censorship": [ "NN" ], "detached": [ "VBN", "JJ", "VBD" ], "gunfire": [ "NN" ], "remitted": [ "VBN" ], "parishes": [ "NNS" ], "Holding": [ "NNP", "VBG" ], "highway-safety": [ "NN" ], "Tentative": [ "JJ" ], "capital-assets": [ "NNS" ], "re-establish": [ "VB", "NN" ], "unanticipated": [ "JJ" ], "Aegon": [ "NNP" ], "gimmickry": [ "NN" ], "DPL": [ "NNP" ], "monitoring": [ "NN", "VBG|NN", "VBG" ], "grousing": [ "VBG" ], "aide-de-camp": [ "NN" ], "Reuther": [ "NNP" ], "optimal": [ "JJ" ], "GP": [ "NNP" ], "Darwinism": [ "NNP" ], "intergenerational": [ "JJ" ], "Acura": [ "NNP" ], "chaplains": [ "NNS" ], "Buchner": [ "NNP" ], "convoluted": [ "JJ", "VBN" ], "Discussed": [ "VBN" ], "high-energy": [ "JJ" ], "Sensitive": [ "JJ" ], "unclaimed": [ "JJ" ], "jet-engine": [ "NN" ], "improving": [ "VBG", "NN" ], "spouted": [ "VBD", "JJ" ], "lids": [ "NNS" ], "equilibriums": [ "NNS" ], "natural": [ "JJ", "NN" ], "correlate": [ "VB", "VBP" ], "nakedly": [ "RB" ], "biographical": [ "JJ" ], "Connors": [ "NNP" ], "Narver": [ "NNP" ], "basting": [ "NN" ], "Inland": [ "NNP", "RB" ], "media-related": [ "JJ" ], "handguns": [ "NNS" ], "Samuelson": [ "NNP" ], "Islam": [ "NNP" ], "air-defense": [ "JJ" ], "innocuous": [ "JJ" ], "non-bearing": [ "JJ" ], "footstep": [ "NN" ], "Wyoming": [ "NNP", "VBG" ], "Kulongoski": [ "NNP" ], "pavement-performance": [ "NN" ], "years...": [ ":" ], "tendency": [ "NN" ], "middle-management": [ "JJ" ], "splurge": [ "NN" ], "overhaul": [ "NN", "VB" ], "muses": [ "VBZ", "NNS" ], "nearsighted": [ "JJ" ], "disconcertingly": [ "RB" ], "collegians": [ "NNS" ], "Zhok": [ "NNP" ], "swastika": [ "NN" ], "Marcmann": [ "NNP" ], "renaming": [ "VBG" ], "Buck": [ "NNP" ], "Sister": [ "NN", "NNP" ], "thereby": [ "RB" ], "Gute": [ "FW" ], "nation": [ "NN" ], "amulet": [ "NN" ], "Bucs": [ "NNP" ], "fumed-oak": [ "JJ", "NN" ], "MH-60K": [ "NN" ], "twilight": [ "NN" ], "Argyll": [ "NNP" ], "Erfurt": [ "NNP" ], "establishing": [ "VBG" ], "legume": [ "NN" ], "Pruett": [ "NNP" ], "mass-murderer": [ "NN" ], "game-show": [ "JJ", "NN" ], "Stanley": [ "NNP" ], "amnesty": [ "NN" ], "roleplayed": [ "VBN" ], "J.L.": [ "NNP" ], "more-selective": [ "JJR", "JJ" ], "stalling": [ "VBG" ], "coneheads": [ "NNS" ], "sit-ins": [ "NNS", "NN" ], "gaming": [ "NN" ], "variability": [ "NN" ], "crushing": [ "VBG", "JJ", "NN" ], "freight-bums": [ "NNS" ], "owing": [ "JJ", "VBG" ], "COLH": [ "NNP" ], "beetle": [ "NN" ], "propitiate": [ "VB" ], "neighbourhood": [ "NN" ], "craftsmanship": [ "NN" ], "Added": [ "VBD", "NNP", "VBN" ], "barometric": [ "JJ" ], "biochemicals": [ "NNS" ], "Plessey": [ "NNP" ], "commissar": [ "NN" ], "astray": [ "RB" ], "Furnaces": [ "NNP" ], "fourth-largest": [ "JJ" ], "astral": [ "JJ" ], "Holloway": [ "NNP" ], "Barnevik": [ "NNP" ], "siege": [ "NN" ], "secessionists": [ "NNS" ], "instrumentalists": [ "NNS" ], "facsimiles": [ "NNS" ], "disrespect": [ "NN" ], "Arcata": [ "NNP" ], "matchless": [ "JJ" ], "pimps": [ "NNS" ], "backside": [ "NN" ], "undesirably": [ "RB" ], "wanderers": [ "NNS" ], "Brantford": [ "NNP" ], "war-rationed": [ "JJ" ], "Lehmann": [ "NNP" ], "Brazil": [ "NNP" ], "uncommitted": [ "JJ" ], "Ontario": [ "NNP" ], "distal": [ "JJ" ], "Poorest": [ "JJS" ], "Royal": [ "NNP", "JJ" ], "recusant": [ "NN" ], "Chekhovian": [ "JJ" ], "loss-plagued": [ "JJ" ], "disbelieving": [ "VBG" ], "Gilbraltar": [ "NNP" ], "intermediaries": [ "NNS" ], "Salembier": [ "NNP" ], "Nattily": [ "RB" ], "operable": [ "JJ" ], "Divi": [ "NNP" ], "Patrolman": [ "NNP" ], "restorability": [ "NN" ], "bite": [ "VB", "VBP", "NN" ], "Mencken": [ "NNP" ], "DieHard": [ "JJ" ], "stuffed": [ "VBN", "JJ", "VBD" ], "cito": [ "FW" ], "Anglo\\": [ "JJ" ], "bits": [ "NNS" ], "cite": [ "VBP", "VB" ], "slashes": [ "NNS", "VBZ" ], "slasher": [ "NN" ], "sentinels": [ "NNS" ], "Megat": [ "NNP" ], "gratuities": [ "NNS" ], "southbound": [ "JJ" ], "reclaims": [ "VBZ" ], "antic": [ "JJ" ], "slashed": [ "VBD", "VBN" ], "Kalamazoo": [ "NNP", "NN" ], "Runcie": [ "NNP" ], "impractical": [ "JJ" ], "bank-debt": [ "NN" ], "depressed": [ "JJ", "VBD", "VBN" ], "yelping": [ "VBG" ], "FAXM": [ "NNP" ], "corruptible": [ "JJ" ], "meat-hungry": [ "JJ" ], "liftoffs": [ "NNS" ], "Businesses": [ "NNS" ], "insurance-industry": [ "NN" ], "counselor": [ "NN" ], "drywall": [ "NN", "VBP" ], "damned": [ "JJ", "VBN", "RB" ], "depresses": [ "VBZ" ], "dutifully": [ "RB" ], "consumer-price-index": [ "JJ" ], "wheeler-dealers": [ "NNS" ], "alley": [ "NN" ], "Environmentalism": [ "NNP", "NN" ], "buried": [ "VBN", "JJ", "VBD" ], "pornography": [ "NN" ], "Spycatcher": [ "NN" ], "Aguiar": [ "NNP" ], "dewars": [ "NNS" ], "peacekeeping": [ "JJ" ], "masse": [ "FW", "NN", "RB" ], "rumination": [ "NN" ], "beeping": [ "VBG", "NN" ], "Comstock": [ "NNP" ], "Wagons": [ "NNS" ], "Leemans": [ "NNP" ], "Impressionism": [ "NN", "NNP" ], "Getting": [ "VBG" ], "syllable": [ "NN" ], "two-run": [ "JJ" ], "compress": [ "VB" ], "rosins": [ "NNS" ], "Boone": [ "NNP" ], "Impressionist": [ "JJ" ], "pro-investment": [ "JJ" ], "inserted": [ "VBN", "VBD" ], "Totalitarianism": [ "NNP" ], "adaptability": [ "NN" ], "byway": [ "NN" ], "pageantry": [ "NN" ], "drive": [ "NN", "VBP", "VB" ], "Weston": [ "NNP" ], "self-unloading": [ "JJ" ], "Intelsat": [ "NNP" ], "Moonie": [ "NN" ], "liquidity": [ "NN" ], "Dietisa": [ "NNP" ], "honeymooned": [ "VBD", "VBN" ], "marshalled": [ "VBD" ], "lotus": [ "NN" ], "cross-investing": [ "JJ", "NN" ], "peaches": [ "NNS" ], "swathings": [ "NNS" ], "bright": [ "JJ", "RB" ], "north-flowing": [ "JJ" ], "Matsushita-owned": [ "JJ" ], "Deloitte": [ "NNP" ], "scarce": [ "JJ" ], "self-assertive": [ "JJ" ], "kisha-club": [ "JJ" ], "punchy": [ "JJ" ], "journalese": [ "NN" ], "liberation": [ "NN" ], "more-active": [ "JJ" ], "takeoff-warning": [ "JJ" ], "Applied": [ "NNP", "VBN" ], "misdemeanor": [ "NN" ], "holdovers": [ "NNS" ], "clang": [ "NN" ], "battalions": [ "NNS" ], "submerge": [ "VB" ], "Fauntleroy": [ "NNP" ], "Menell": [ "NNP" ], "Having": [ "VBG", "NNP" ], "burnt-orange": [ "JJ" ], "Churchilliana": [ "NNPS" ], "middle-class": [ "JJ", "NN" ], "workweek": [ "NN" ], "fenders": [ "NNS" ], "success-oriented": [ "JJ" ], "resins": [ "NNS" ], "McCauliffe": [ "NNP" ], "anti-Stalinist": [ "JJ" ], "uncover": [ "VB" ], "Trichieri": [ "NNP" ], "snapback": [ "NN" ], "resiny": [ "JJ" ], "Cecconi": [ "NNP" ], "tibialis": [ "NNS" ], "temperance": [ "NN" ], "softies": [ "NNS" ], "arouses": [ "VBZ" ], "Bocas": [ "NNP" ], "Fraction": [ "NNP", "NN" ], "overflowed": [ "VBD" ], "Anti-American": [ "JJ" ], "aroused": [ "VBN", "VBD" ], "N.Y.U.": [ "NNP" ], "Gluck": [ "NNP" ], "appellate-court": [ "NN" ], "mutton": [ "NN" ], "inequalities": [ "NNS" ], "basileis": [ "NNS" ], "compounds": [ "NNS", "VBZ" ], "TRUE": [ "JJ" ], "less-developed-country": [ "JJ" ], "representatives": [ "NNS" ], "Allstate": [ "NNP" ], "sable": [ "NN" ], "Instructor": [ "NNP" ], "dark-brown": [ "JJ" ], "pitiless": [ "JJ" ], "screed": [ "NN" ], "screen": [ "NN", "VB", "VBP" ], "half-turned": [ "JJ" ], "steroid": [ "JJ" ], "matures": [ "VBZ" ], "Xiang": [ "NNP" ], "Southmark-sponsored": [ "JJ" ], "small-boat": [ "NN" ], "coolheaded": [ "JJ" ], "puerile": [ "JJ" ], "Spangled": [ "NNP" ], "parapet": [ "NN" ], "Spider": [ "NNP" ], "best-managed": [ "JJ" ], "Ortegas": [ "NNPS" ], "Orleans-based": [ "JJ" ], "riddle": [ "NN" ], "politico-plaintiffs": [ "NNS" ], "pastimes": [ "NNS" ], "extravagantly": [ "RB" ], "Maroc": [ "NNP" ], "Maroy": [ "NNP" ], "amateurishness": [ "NN" ], "Hagoshrim": [ "NNP" ], "Riverside": [ "NNP" ], "considers": [ "VBZ" ], "panics": [ "NNS" ], "RECENT": [ "JJ" ], "cramps": [ "NNS" ], "Humberto": [ "NNP" ], "commission-driven": [ "JJ" ], "go-go-go": [ "NN" ], "Allumettes": [ "NNP" ], "Sherblom": [ "NNP" ], "fiveyear": [ "JJ" ], "receded": [ "VBD", "VBN" ], "braving": [ "VBG" ], "DANIEL": [ "NNP" ], "mutilating": [ "VBG" ], "needlelike": [ "JJ" ], "Thirty-fourth": [ "NNP" ], "Dai-ichi": [ "NNP" ], "luxury-suite": [ "NN" ], "curbing": [ "VBG" ], "Districts": [ "NNS", "NNPS" ], "communique": [ "NN" ], "Wailbri": [ "NNP" ], "psychotherapy": [ "NN" ], "calligraphy": [ "NN" ], "dropouts": [ "NNS" ], "Round": [ "NNP", "JJ", "NN" ], "Walther": [ "NNP" ], "wherewithal": [ "NN", "JJ" ], "RUN": [ "NNP" ], "Goodrich": [ "NNP" ], "MORTGAGE": [ "NNP", "NN" ], "consultant": [ "NN" ], "pettiness": [ "NN" ], "Ziff-Davis": [ "NNP" ], "vis-a-vis": [ "FW", "IN", "NN" ], "endures": [ "VBZ" ], "conveyance": [ "NN" ], "policies": [ "NNS" ], "mono": [ "JJ", "NN" ], "endured": [ "VBD", "VBN" ], "seepage": [ "NN" ], "cartelized": [ "VBN" ], "croaked": [ "VBD" ], "gay-student": [ "JJ" ], "purse": [ "NN" ], "croaker": [ "NN" ], "Calculations": [ "NNS" ], "S.C.-based": [ "JJ" ], "spooked": [ "VBN", "VBD" ], "cost-sharing": [ "NN", "JJ" ], "Hanley": [ "NNP" ], "research-based": [ "JJ" ], "PageAmerica": [ "NNP" ], "Pocklington": [ "NNP" ], "perpetually": [ "RB" ], "essayed": [ "VBD", "VBN" ], "day-even": [ "NN" ], "enrich": [ "VB", "VBP" ], "stoneware": [ "NN" ], "nonminority": [ "NN" ], "homophobia": [ "NN" ], "homophobic": [ "JJ" ], "sterling": [ "NN", "JJ" ], "Arsenio": [ "NNP" ], "Geraldine": [ "NNP" ], "structurally": [ "RB" ], "Dockweiler": [ "NNP" ], "organization-position": [ "JJ" ], "around...": [ ":" ], "Public-spirited": [ "JJ" ], "%": [ "NN", "JJ", "VB", "SYM" ], "Eichof": [ "NNP" ], "Vroman": [ "NNP" ], "Physics": [ "NNP", "NN" ], "Owl": [ "NN" ], "Own": [ "JJ", "NNP" ], "Superintendent": [ "NNP" ], "volcanoes": [ "NNS" ], "Raynal": [ "NNP" ], "idiotically": [ "RB" ], "Countrymen": [ "NNPS" ], "Markovitz": [ "NNP" ], "Slims": [ "NNPS", "NNP" ], "automotive-industry": [ "NN" ], "big-ticket": [ "JJ" ], "Ostentatious": [ "JJ" ], "rest": [ "NN", "VBP", "VB|NN", "RB", "VB" ], "Zhongshan": [ "NNP" ], "Jingoism": [ "NN" ], "city-owned": [ "JJ" ], "BUELL": [ "NNP" ], "Jacksonian": [ "NNP", "JJ" ], "Rolled": [ "VBN" ], "Advice": [ "NNP", "NN" ], "Dame-Michigan": [ "NNP" ], "Mulberry": [ "NNP" ], "silver": [ "NN", "JJ", "JJR" ], "contesting": [ "VBG" ], "dryly": [ "RB" ], "usurious": [ "JJ" ], "stopwatch": [ "NN" ], "potash": [ "NN" ], "ebullient": [ "JJ" ], "Roller": [ "NNP" ], "transmuted": [ "VBN" ], "tunelessly": [ "RB" ], "crusty": [ "JJ" ], "counteracting": [ "VBG" ], "Aung": [ "NNP" ], "bobby-soxer": [ "NN" ], "crusts": [ "NNS" ], "dart": [ "NN", "VBP" ], "dark": [ "JJ", "NN", "RB" ], "Verstandig": [ "NNP" ], "Aunt": [ "NNP", "NN" ], "darn": [ "JJ", "VB" ], "vacuum": [ "NN", "JJ", "VB", "VBP" ], "snare": [ "VB", "NN" ], "dare": [ "VB", "VBP", "MD", "NN" ], "Shari": [ "NNP" ], "parent-child": [ "JJ" ], "agents-in-training": [ "NNS" ], "malignancy": [ "NN" ], "Share": [ "NN", "NNP", "VB" ], "Contemporary": [ "NNP", "JJ" ], "Ruckdeschel": [ "NNP" ], "Zicklin": [ "NNP" ], "Riese": [ "NNP" ], "expository": [ "JJ" ], "Sharp": [ "NNP", "JJ" ], "intestinal": [ "JJ" ], "Ter.": [ "NN" ], "landowner": [ "NN" ], "crabbed": [ "JJ" ], "Oafid": [ "NNP" ], "pickled": [ "JJ" ], "Controls": [ "NNP", "NNPS" ], "supplementary": [ "JJ", "NN" ], "Geoffrey": [ "NNP" ], "malposed": [ "JJ" ], "Troeltsch": [ "NNP" ], "pickles": [ "NNS" ], "Apar": [ "NNP" ], "scholarships": [ "NNS" ], "Bully": [ "VB" ], "symbiotic": [ "JJ" ], "Answers": [ "VBZ", "NNS" ], "Bulls": [ "NNS", "NNPS" ], "premium-priced": [ "JJ" ], "full-page": [ "JJ" ], "lockout": [ "NN" ], "Refugee": [ "NNP" ], "refer": [ "VB", "VBP" ], "Mochida": [ "NNP" ], "biased": [ "VBN" ], "Moccasin": [ "NNP" ], "industrialized": [ "VBN", "JJ" ], "Gimpy": [ "NNP" ], "acquisition...": [ ":" ], "biases": [ "NNS" ], "marchin": [ "NN" ], "throwback": [ "NN" ], "punishments": [ "NNS" ], "slatted": [ "JJ" ], "Hazell": [ "NNP" ], "Fighter": [ "NNP" ], "package": [ "NN", "VB" ], "Stena-Tiphook": [ "NNP" ], "person-to-person": [ "JJ" ], "Dorrance": [ "NNP" ], "fraying": [ "VBG" ], "Regretfully": [ "RB" ], "Stalker": [ "NNP" ], "Xerox": [ "NNP" ], "Meharry": [ "NNP" ], "hard-liners": [ "NNS" ], "Matchett": [ "NNP" ], "Duplicate": [ "NN" ], "extramarital": [ "JJ" ], "apologize": [ "VB" ], "portrayal": [ "NN" ], "incanted": [ "VBD" ], "Flaxseed": [ "NN" ], "married-couple": [ "JJ", "NN" ], "bond-rating": [ "JJ" ], "Ogallala": [ "NNP" ], "X-rays": [ "NNS" ], "Malraux": [ "NNP" ], "flash-cubes": [ "NNS" ], "betrays": [ "VBZ" ], "lapsing": [ "VBG" ], "garment": [ "NN" ], "espousal": [ "NN" ], "slopes": [ "NNS", "VBZ" ], "tireless": [ "JJ" ], "masquerades": [ "VBZ" ], "survives": [ "VBZ" ], "death-backed": [ "JJ" ], "Stevie": [ "NNP" ], "Breweries": [ "NNP", "NNPS", "NNS" ], "Eastwick": [ "NNP" ], "beginners": [ "NNS" ], "follicular": [ "JJ" ], "Microamerica": [ "NNP" ], "survived": [ "VBD", "VBN" ], "Breasted": [ "NNP" ], "French-English": [ "NNP" ], "housewives": [ "NNS" ], "Greensboro": [ "NNP" ], "amplify": [ "VB" ], "anti-infective": [ "JJ" ], "robustness": [ "NN" ], "Cabria": [ "NNP" ], "impute": [ "VBP" ], "hydrochlorothiazide": [ "NN" ], "in-kind": [ "JJ" ], "blinks": [ "VBZ" ], "Klauer": [ "NNP" ], "citizenship": [ "NN" ], "fright": [ "NN" ], "pinpointed": [ "VBN", "JJ", "VBD" ], "turf-care": [ "JJ", "NN" ], "Hatters": [ "NNP" ], "straightens": [ "VBZ" ], "Camille": [ "NNP" ], "catchup": [ "JJ", "NN" ], "Camilla": [ "NNP" ], "Accept": [ "VB" ], "Rahill": [ "NNP" ], "Camillo": [ "NNP" ], "Camilli": [ "NNP" ], "angelica": [ "NN" ], "Eurocom": [ "NNP" ], "Atlantis": [ "NNP", "NNS" ], "long-tenured": [ "JJ" ], "Readily": [ "RB" ], "sanguine": [ "JJ", "NN" ], "aromatic": [ "JJ" ], "tight": [ "JJ", "RB" ], "Watson": [ "NNP" ], "Atlantic": [ "NNP", "JJ" ], "incomprehensible": [ "JJ", "NN" ], "engineering-design": [ "JJ" ], "Wainaina": [ "NNP" ], "Walcott": [ "NNP" ], "narco": [ "NN" ], "Welko": [ "NNP" ], "remounting": [ "VBG" ], "terra": [ "FW", "NN" ], "Certus": [ "NNP" ], "Luehrs": [ "NNP" ], "terry": [ "NN" ], "unanimous": [ "JJ" ], "KSI": [ "NNP" ], "eight-time": [ "JJ" ], "partitioned": [ "VBN" ], "waived": [ "VBN", "VBD" ], "Degas": [ "NNP" ], "Direct": [ "JJ", "NNP" ], "Diasonics": [ "NNP" ], "sawing": [ "NN" ], "sensibility": [ "NN" ], "waiver": [ "NN" ], "waives": [ "VBZ" ], "retch": [ "NN", "VB" ], "gingham": [ "NN" ], "large-volume": [ "JJ" ], "eight-page": [ "JJ" ], "vertical-restraint": [ "JJ" ], "debris": [ "NN" ], "Villard": [ "NNP" ], "restated": [ "VBN", "VBD", "JJ" ], "directorship": [ "NN" ], "policeman-murderer": [ "NN" ], "two-record": [ "JJ" ], "stored-up": [ "JJ" ], "tinsel": [ "NN" ], "squeal": [ "VB", "NN" ], "tv": [ "NN" ], "Kuparuk": [ "NNP" ], "borderlands": [ "NNS" ], "Non-bank": [ "JJ" ], "to": [ "TO", "RB" ], "tail": [ "NN", "JJ", "VB" ], "th": [ "DT", "NN" ], "shipload": [ "NN" ], "Arturo": [ "NNP" ], "Garvey": [ "NNP" ], "Morikawa": [ "NNP" ], "zapping": [ "VBG", "NN" ], "hitting": [ "VBG", "NN" ], "Beebes": [ "NNPS" ], "blockade": [ "NN" ], "corollary": [ "NN" ], "FAA": [ "NNP" ], "Sohn": [ "NNP" ], "Soho": [ "NNP" ], "Belge": [ "NNP" ], "falsifying": [ "VBG" ], "Frequent": [ "JJ" ], "Cogen": [ "NNP" ], "Copper": [ "NN", "NNP" ], "parliaments": [ "NNS" ], "hooking": [ "VBG" ], "cable": [ "NN", "VBP", "JJ" ], "rusting": [ "JJ" ], "heist": [ "NN" ], "rosy-fingered": [ "JJ" ], "joined": [ "VBD", "VBN" ], "art-historian": [ "NN" ], "millimeters": [ "NNS" ], "drahve": [ "VB" ], "fifty-odd": [ "JJ" ], "methodical": [ "JJ" ], "Reagan": [ "NNP", "JJ" ], "Inamori": [ "NNP" ], "Flatiron": [ "NN" ], "supression": [ "NN" ], "Lawrenson": [ "NNP" ], "crystallography": [ "NN" ], "half-understood": [ "JJ" ], "Drury": [ "NNP" ], "assured": [ "VBN", "VBD", "JJ", "NN" ], "Crockett": [ "NNP" ], "trend-setters": [ "NNS" ], "Euronotes": [ "NNS" ], "Commission.": [ "NNP" ], "Ferguson": [ "NNP" ], "scientists": [ "NNS" ], "Jodi": [ "NNP" ], "frequency,``": [ "``" ], "Chans": [ "NNS" ], "Broyd": [ "NNP" ], "attractant": [ "NN" ], "Tartuffe": [ "NNP" ], "midpoint": [ "NN" ], "implantable": [ "JJ" ], "Finland": [ "NNP", "NN" ], "lobbyist": [ "NN" ], "corniest": [ "JJS" ], "legend": [ "NN" ], "Silence": [ "NN", "NNP" ], "world-view": [ "NN" ], "bulged": [ "VBD" ], "trailblazing": [ "VBG" ], "Commissions": [ "NNS", "NNPS" ], "Gruss": [ "NNP" ], "travails": [ "NNS" ], "emulator": [ "NN" ], "Seeley": [ "NNP" ], "murdering": [ "VBG", "JJ" ], "rummaging": [ "JJ" ], "Nemeth": [ "NNP" ], "funds-management": [ "NN" ], "all-victorious": [ "JJ" ], "triple-tank": [ "JJ" ], "directionlessness": [ "NN" ], "numerology": [ "NN" ], "sherbet": [ "NN" ], "Placing": [ "VBG" ], "Canton": [ "NNP" ], "Cantor": [ "NNP" ], "compact-car": [ "NN" ], "gosh": [ "UH" ], "Willmott": [ "NNP" ], "Shiite": [ "NNP", "JJ" ], "Willoughby": [ "NNP" ], "casket": [ "NN" ], "hassles": [ "NNS" ], "Parisina": [ "NNP" ], "Director-General": [ "NNP" ], "moon-drenched": [ "JJ" ], "Hoe-Down": [ "NNP" ], "pears": [ "NNS" ], "pearl": [ "NN" ], "zappers": [ "NNS" ], "breaches": [ "NNS" ], "quickstep": [ "NN", "VBP" ], "gorgeous": [ "JJ" ], "whalesized": [ "JJ" ], "multi-lingual": [ "JJ" ], "befitting": [ "VBG", "JJ" ], "portrayals": [ "NNS" ], "batsman": [ "NN" ], "Congregationalists": [ "NNS" ], "big-name": [ "JJ" ], "spoon-fed": [ "JJ" ], "Timbuktu": [ "NNP" ], "Aghanistan": [ "NNP" ], "CRIME": [ "NN" ], "eatable": [ "JJ" ], "Integra": [ "NNP" ], "sizing": [ "NN" ], "fleece": [ "NN" ], "enlightenment": [ "NN" ], "caliche-topped": [ "JJ" ], "Cathedral": [ "NNP", "NN" ], "ingredient": [ "NN" ], "Your": [ "PRP$", "NNP" ], "seismological": [ "JJ" ], "eardrums": [ "NNS" ], "antagonists": [ "NNS" ], "scan": [ "NN", "VBP", "VB" ], "Mouchet": [ "NNP" ], "scab": [ "NN" ], "suggestions": [ "NNS" ], "unbiased": [ "JJ" ], "fiercely": [ "RB" ], "Dylan-influenced": [ "JJ" ], "birch-paneled": [ "JJ" ], "commanded": [ "VBD", "VBN" ], "schoolgirl": [ "NN" ], "bided": [ "VBN" ], "Paisley": [ "NNP" ], "scoundrels": [ "NNS" ], "imminent": [ "JJ" ], "deal-making": [ "NN" ], "conventioners": [ "NNS" ], "cajole": [ "VB" ], "All-Union": [ "NNP" ], "AIB": [ "NNP" ], "docudramas": [ "NNS" ], "secularist": [ "NN" ], "Orondo": [ "NNP" ], "Isis": [ "NNP" ], "treatments": [ "NNS" ], "unsound": [ "JJ" ], "Gilchrist": [ "NNP" ], "authentic": [ "JJ" ], "Orso": [ "NNP" ], "knockoffs": [ "NNS" ], "scoreboards": [ "NNS" ], "register": [ "VB", "NN", "VBP" ], "volleyball": [ "NN" ], "open-checkbook": [ "NN" ], "blacklisting": [ "NN" ], "fundamental": [ "JJ" ], "saccharin": [ "NN" ], "anti-Negro": [ "JJ" ], "adorned": [ "VBN", "VBD" ], "Creek-Turn": [ "JJ" ], "Purple": [ "NNP" ], "staginess": [ "NN" ], "Appalachia": [ "NNP" ], "Aeschbacher": [ "NNP" ], "brim": [ "NN" ], "levamisole": [ "NN" ], "turbine": [ "NN", "JJ" ], "brig": [ "NN" ], "brie": [ "NN" ], "Egils": [ "NNP" ], "Transatlantic": [ "NNP" ], "get-tough": [ "JJ" ], "nifty": [ "JJ" ], "scribes": [ "NNS" ], "Sound": [ "NNP", "JJ", "NN", "VB", "VBZ" ], "Resolve": [ "NNP" ], "Pawtuxet": [ "NNP" ], "subtitled": [ "VBN" ], "Fifield": [ "NNP" ], "high-strung": [ "JJ" ], "subtitles": [ "NNS" ], "cash-interest": [ "JJ" ], "Elliot": [ "NNP" ], "nugget": [ "NN" ], "ocean-thermal": [ "JJ" ], "assemblies": [ "NNS" ], "Katow": [ "NNP" ], "vitriol": [ "NN" ], "Prodigall": [ "NNP" ], "Silverstein": [ "NNP" ], "aggrieved": [ "VBN", "JJ" ], "impersonation": [ "NN" ], "flaxseed": [ "NN" ], "energetically": [ "RB" ], "Osaka": [ "NNP" ], "investigators": [ "NNS" ], "Amperex": [ "NNP" ], "upstairs": [ "NN", "RB", "JJ" ], "noble": [ "JJ", "FW" ], "slowdown": [ "NN" ], "composer-in-residence": [ "NN" ], "hemispheric": [ "JJ" ], "lease-rental": [ "JJ" ], "measurement": [ "NN" ], "megaquestions": [ "NNS" ], "ATS\\": [ "NNP" ], "Crossman": [ "NNP" ], "morale-damaging": [ "JJ" ], "candlelight": [ "NN" ], "revisionists": [ "NNS" ], "Sunbury": [ "NNP" ], "sociological": [ "JJ" ], "finned": [ "VBN" ], "punches": [ "NNS" ], "tensional": [ "JJ" ], "plotting": [ "VBG", "NN" ], "patent-sharing": [ "JJ" ], "Manion": [ "NNP" ], "Bandler": [ "NNP" ], "SHV": [ "NNP" ], "calumniated": [ "VBN" ], "Thirty-month": [ "NNP" ], "eighty-year-old": [ "JJ" ], "no-no": [ "NN" ], "Beseler": [ "NNP" ], "Historical": [ "NNP", "JJ" ], "rises": [ "VBZ", "NNS" ], "Strings": [ "NNPS", "NNP", "NNS" ], "surface-to-air": [ "JJ" ], "Stingers": [ "NNPS" ], "albatross": [ "NN" ], "Dai-Ichi": [ "NNP" ], "paper-clip": [ "NN" ], "sicker": [ "JJR" ], "Bozell": [ "NNP" ], "elective": [ "JJ" ], "macrocrystalline": [ "NN" ], "advertiser-bankrolled": [ "JJ" ], "engagement": [ "NN" ], "willies": [ "NNS" ], "Panny": [ "NNP" ], "unusable": [ "JJ" ], "feeder": [ "NN" ], "equity-like": [ "JJ" ], "spiritually": [ "RB" ], "housewares": [ "NNS" ], "anonymity": [ "NN" ], "glitter": [ "NN" ], "Consisting": [ "VBG" ], "treament": [ "NN" ], "inapplicable": [ "JJ" ], "Alun-Jones": [ "NNP" ], "telecines": [ "NNS" ], "introduction": [ "NN" ], "Plaude": [ "NNP" ], "Vladilen": [ "NNP" ], "Cabernet": [ "NNP" ], "uncomfortably": [ "RB" ], "elaboration": [ "NN" ], "gnash": [ "VB" ], "oil-service": [ "NN" ], "broad-brimmed": [ "JJ" ], "Heilman": [ "NNP" ], "Gallitzin": [ "NNP" ], "Hijet": [ "NNP" ], "Ansley": [ "NNP" ], "reverential": [ "JJ" ], "Often": [ "RB", "NNP" ], "pre-registered": [ "VBN", "JJ" ], "spavined": [ "JJ" ], "Lyford": [ "NNP" ], "derailing": [ "VBG" ], "fishermen": [ "NNS" ], "Brunello": [ "NNP" ], "seamlessly": [ "RB" ], "heat-using": [ "JJ" ], "Alcohol": [ "NN", "NNP" ], "bimolecular": [ "JJ" ], "millenarianism": [ "NN" ], "defect": [ "NN", "VB" ], "hard-come-by": [ "JJ" ], "caress": [ "VB" ], "Liro": [ "NNP" ], "Hazelwood": [ "NNP" ], "Aide": [ "NNP" ], "computer-industry": [ "NN", "JJ" ], "half-measure": [ "NN" ], "cement-makers": [ "NNS" ], "scrawled": [ "VBD", "JJ", "VBN" ], "jeopardize": [ "VB", "VBP" ], "commotion": [ "NN" ], "Druid": [ "NN" ], "reliance": [ "NN" ], "internal": [ "JJ" ], "generalized": [ "JJ", "VBN" ], "frail": [ "JJ" ], "BANCORP": [ "NNP" ], "picture-taking": [ "NN" ], "Logically": [ "RB" ], "frowned": [ "VBD", "VBN" ], "Hardwicke": [ "NNP" ], "M": [ "NNP", "NN" ], "Utopians": [ "NNPS" ], "Annicchino": [ "NNP" ], "wedded": [ "VBN", "JJ" ], "Aftereffects": [ "NNS" ], "accepting": [ "VBG", "JJ" ], "chancery": [ "NN" ], "Petroleos": [ "NNP" ], "Famcorp": [ "NNP" ], "mystical": [ "JJ" ], "Attopeu": [ "NNP" ], "Arenberg": [ "NNP" ], "WHEC-TV": [ "NNP" ], "five-gallon": [ "JJ" ], "Balzac": [ "NNP" ], "anthem": [ "NN" ], "tete-a-tete": [ "NN" ], "high-profitability": [ "NN" ], "Cloud": [ "NNP" ], "golf": [ "NN" ], "Traxler": [ "NNP" ], "gold": [ "NN", "JJ" ], "Lawn-Boy": [ "NNP" ], "Pharmacuetica": [ "NNP" ], "Lillo": [ "NNP" ], "Amiga": [ "NNP" ], "evaporation": [ "NN" ], "Meidinger": [ "NNP" ], "export-oriented": [ "JJ" ], "Simpkins": [ "NNP" ], "Agius": [ "NNP" ], "degraded": [ "JJ" ], "dog-pin": [ "JJ" ], "Kyushu": [ "NNP" ], "standeth": [ "VBP" ], "Creswell": [ "NNP" ], "ho-hum": [ "JJ" ], "detaining": [ "VBG" ], "mailmen": [ "NNS" ], "blood-in-the-streets": [ "NNS" ], "REFUSED": [ "VBD" ], "Aquitaine": [ "NNP" ], "surcease": [ "NN" ], "poodles": [ "NNS" ], "Carolinians": [ "NNPS" ], "factor": [ "NN", "VB", "VBP" ], "Olivia": [ "NNP" ], "ordained": [ "VBN" ], "cost-plus": [ "JJ" ], "Lakers": [ "NNP" ], "Bangkok-based": [ "JJ" ], "accretions": [ "NNS" ], "charmingly": [ "RB" ], "Massicotte": [ "NNP" ], "Tigris": [ "NNP" ], "progressive": [ "JJ", "NN" ], "cry": [ "NN", "VB", "VBP" ], "Westlake": [ "NNP" ], "Vicon": [ "NNP" ], "banking": [ "NN", "VBG|NN", "JJ", "VBG" ], "dismounted": [ "VBD", "VBN" ], "Dignitaries": [ "NNS" ], "Piersee": [ "NNP" ], "Telemedia": [ "NNP" ], "bulky": [ "JJ" ], "Komsomolskaya": [ "NNP" ], "JenMar": [ "NNP" ], "debt-relief": [ "NN" ], "Advisers": [ "NNPS", "NNP", "NNS" ], "jade": [ "NN" ], "India-Pakistan": [ "NNP" ], "TVSM": [ "NNP" ], "Southerners": [ "NNPS", "NNP", "NNS" ], "Denko": [ "NNP" ], "European-branch": [ "JJ" ], "cement-making": [ "JJ" ], "unmeshed": [ "JJ" ], "resonantly": [ "RB" ], "Towers": [ "NNP", "NNPS" ], "Kader": [ "NNP" ], "Hadhazy": [ "NNP" ], "pickup": [ "NN", "JJ" ], "Slosberg": [ "NNP" ], "Dresylon": [ "NNP" ], "Prussin": [ "NNP" ], "monsters": [ "NNS" ], "compliment": [ "NN", "VBP", "VB" ], "available": [ "JJ" ], "Globaliztion": [ "NN" ], "premises": [ "NNS", "NN" ], "Ceecee": [ "NNP" ], "one-in-a-million": [ "JJ" ], "mailboat": [ "NN" ], "three-party": [ "JJ" ], "incident": [ "NN", "JJ" ], "rudderless": [ "JJ" ], "tramp": [ "JJ", "NN" ], "Annie": [ "NNP" ], "Keynes": [ "NNP" ], "dividend": [ "NN" ], "Cosmology": [ "NNP" ], "legislature": [ "NN" ], "unapologetic": [ "JJ" ], "cryptic": [ "JJ" ], "earnings-forecast": [ "JJ" ], "Intercable": [ "NNP" ], "thou": [ "PRP" ], "teen-ager": [ "NN" ], "Chip": [ "NNP", "NN" ], "Donning": [ "VBG" ], "Strategic": [ "NNP", "JJ" ], "Chin": [ "NNP", "NN" ], "Chim": [ "NNP" ], "tangibly": [ "RB" ], "accomodations": [ "NNS" ], "visionaries": [ "NNS" ], "Jour": [ "NNP" ], "composting": [ "NN" ], "allegiance": [ "NN" ], "dimensional": [ "JJ" ], "dissuade": [ "VB" ], "acclaim": [ "NN", "VB" ], "adjoining": [ "VBG", "JJ" ], "church": [ "NN", "NNP" ], "third-highest": [ "JJ", "JJS" ], "quake-shocked": [ "JJ" ], "moldboard": [ "NN" ], "SCHMIDT": [ "NNP" ], "Mariana": [ "NNP" ], "Mariano": [ "NNP" ], "Quesadas": [ "NNPS" ], "Ramey": [ "NNP" ], "traipsing": [ "VBG" ], "ITT": [ "NNP" ], "rocket-bomb": [ "NN" ], "contentedly": [ "RB" ], "toughing": [ "VBG" ], "tax-collection": [ "JJ", "NN" ], "veneer": [ "NN" ], "Hockney": [ "NNP" ], "resting": [ "VBG" ], "Gracias": [ "FW" ], "squirrel": [ "NN" ], "basketball-playing": [ "NN" ], "Matheson": [ "NNP" ], "Telenet": [ "NNP" ], "stockholding": [ "VBG" ], "reticence": [ "NN" ], "bottlers": [ "NNS" ], "Bewitched": [ "NNP" ], "deport": [ "VB" ], "Fairfax": [ "NNP", "NN" ], "Myra": [ "NNP" ], "inclement": [ "JJ" ], "Eliades": [ "NNP" ], "Ducky": [ "NNP" ], "hostess": [ "NN" ], "stupefyingly": [ "RB" ], "straight": [ "JJ", "RB" ], "Misa": [ "NNP" ], "reliably": [ "RB" ], "error": [ "NN" ], "Mist": [ "NNP", "NN" ], "Miss": [ "NNP", "NN" ], "Petrarchan": [ "JJ" ], "Corazon": [ "NNP" ], "comport": [ "VB" ], "Biosource": [ "NNP" ], "Towing": [ "NNP" ], "Viola": [ "NNP" ], "McFadden": [ "NNP" ], "Stock": [ "NNP", "NN" ], "welts": [ "NNS" ], "Associate": [ "NNP", "JJ", "NN" ], "fetching": [ "VBG", "JJ" ], "Satanic": [ "JJ", "NNP" ], "medical-assistance": [ "NN" ], "Nunn-McCurdy": [ "NNP" ], "Address": [ "NNP" ], "Waukesha": [ "NNP" ], "Blodgett": [ "NNP" ], "co-star": [ "NN" ], "tower": [ "NN", "VB" ], "Chardonnay": [ "NNP" ], "comprehensive": [ "JJ" ], "videotape": [ "NN", "VB" ], "Lucisano": [ "NNP" ], "rabid": [ "JJ" ], "necessity": [ "NN" ], "Lukuklu": [ "NNP" ], "Reston": [ "NNP" ], "expend": [ "VB", "VBP" ], "front-runners": [ "NNS" ], "surrogate": [ "JJ", "NN" ], "Nobels": [ "NNPS" ], "Sol": [ "NNP" ], "Soo": [ "NNP" ], "Son": [ "NNP", "NN" ], "hatchery": [ "NN" ], "person": [ "NN" ], "Congo": [ "NNP", "NN" ], "inflations": [ "NNS" ], "Sox": [ "NNP", "NNPS" ], "FDA-NIH-industry": [ "JJ" ], "cabins": [ "NNS" ], "Tones": [ "NNPS" ], "Riserva": [ "NNP" ], "floating-rate": [ "JJ", "NN" ], "Labow": [ "NNP" ], "Oilwell": [ "NNP" ], "abbreviation": [ "NN" ], "J.P": [ "NNP" ], "ousting": [ "VBG" ], "eagerly": [ "RB" ], "Papers": [ "NNP", "NNS", "NNPS" ], "Euro-factories": [ "NNS" ], "FT": [ "NNP" ], "Everglades": [ "NNP", "NNS" ], "readers": [ "NNS" ], "below-average": [ "JJ" ], "advertisements": [ "NNS" ], "eager": [ "JJ" ], "post-Civil": [ "NNP" ], "Washoe": [ "NNP" ], "semimonthly": [ "JJ", "RB|JJ" ], "hysteron-proteron": [ "NN" ], "wrongdoer": [ "NN" ], "Mulroney": [ "NNP" ], "ruled": [ "VBD", "VBN" ], "herculean": [ "JJ" ], "Keatingland": [ "NNP" ], "Both": [ "DT", "CC", "PDT" ], "Tracking": [ "NNP", "VBG" ], "Faster": [ "JJR" ], "Mega": [ "JJ" ], "five-session": [ "JJ", "NN" ], "responsibly": [ "RB" ], "hitters": [ "NNS" ], "cuteness": [ "NN" ], "shading": [ "NN", "VBG" ], "buyout": [ "NN" ], "formal": [ "JJ" ], "Mallory": [ "NNP" ], "sorting": [ "VBG", "NN" ], "anthers": [ "NNS" ], "Nick": [ "NNP" ], "ambuscade": [ "NN" ], "facets": [ "NNS" ], "MacDonald": [ "NNP" ], "paintbrush": [ "NN" ], "scape": [ "VB" ], "Dakota": [ "NNP" ], "Bergamaschi": [ "NNP" ], "limo": [ "NN" ], "disdainfully": [ "RB" ], "clipping": [ "NN" ], "Koskotas": [ "NNP" ], "plant-wide": [ "JJ" ], "pals": [ "NNS" ], "mighta": [ "MD|VB" ], "beckon": [ "VBP", "VB" ], "felonious": [ "JJ" ], "mighty": [ "JJ", "RB" ], "pall": [ "NN", "VB" ], "Napa": [ "NNP" ], "hard-line": [ "JJ", "NN" ], "Cleburne": [ "NNP" ], "pale": [ "JJ", "VBP", "NN" ], "Friend": [ "NNP", "NN" ], "Kashing": [ "NNP" ], "stirrup": [ "NN" ], "Mostly": [ "RB" ], "Rutan": [ "NNP" ], "margins...": [ ":" ], "D.K.": [ "NNP" ], "rehabilitating": [ "VBG" ], "wood-oil": [ "NN" ], "masculinity": [ "NN" ], "re-legalization": [ "VB" ], "Wish": [ "VB", "VBP", "NNP" ], "phosphine": [ "NN" ], "dating": [ "VBG", "NN" ], "night-sight": [ "NN" ], "shooters": [ "NNS" ], "tinkers": [ "NNS", "VBZ" ], "bureacracy": [ "NN" ], "eclectically": [ "RB" ], "redoing": [ "VBG" ], "FNMA": [ "NNP" ], "impotency": [ "NN" ], "carob": [ "NN" ], "anhemolyticus": [ "NN" ], "UPS": [ "NNP" ], "wood-burning": [ "JJ" ], "Attica": [ "NNP" ], "city-dweller": [ "NN" ], "Pony": [ "NNP", "NN" ], "Ajinomoto": [ "NNP" ], "Pont": [ "NNP", "NN" ], "Splenomegaly": [ "NN" ], "Pons": [ "NNP" ], "Halting": [ "VBG" ], "unintentional": [ "JJ" ], "Baffin": [ "NNP" ], "non-U.S.": [ "JJ", "NNP" ], "Pond": [ "NNP", "NN" ], "Pong": [ "NNP" ], "benefactors": [ "NNS" ], "anterior": [ "JJ" ], "cheap-to-make": [ "JJ" ], "beefed": [ "VBN", "VBD" ], "muddleheaded": [ "JJ" ], "hometown": [ "NN", "JJ" ], "Grosvenor": [ "NNP" ], "Goldline": [ "NNP" ], "Indochina": [ "NNP" ], "awaited": [ "VBD", "JJ", "VBN" ], "heat-denatured": [ "JJ" ], "dairy-oh": [ "NN" ], "poaching": [ "VBG" ], "Esher": [ "NNP" ], "gleans": [ "VBZ" ], "Typical": [ "JJ" ], "Basically": [ "RB" ], "perplex": [ "VBP", "VB" ], "poster": [ "NN" ], "Holocaust": [ "NNP", "NN" ], "Gucci": [ "NNP" ], "campmate": [ "NN" ], "pretty-much": [ "JJ" ], "swarm": [ "NN", "VB" ], "Takasago": [ "NNP" ], "anteriors": [ "NNS" ], "Marv": [ "NNP" ], "differentiable": [ "JJ" ], "CREDITS": [ "NNS" ], "perfectability": [ "NN" ], "spectroscopy": [ "NN" ], "payola": [ "NN" ], "Giaour": [ "NN" ], "genial": [ "JJ" ], "Jobson": [ "NNP" ], "un-Westernizable": [ "JJ" ], "once-stately": [ "JJ" ], "Blackman": [ "NNP" ], "presided": [ "VBD", "VBN" ], "kimpap": [ "FW" ], "McAlister": [ "NNP" ], "nautical": [ "JJ" ], "presides": [ "VBZ" ], "full-size": [ "JJ" ], "declaimed": [ "VBD" ], "Obernauer": [ "NNP" ], "rekindling": [ "VBG", "NN" ], "stiffly": [ "RB", "NN" ], "Haines": [ "NNP" ], "paradox": [ "NN" ], "Portfolios": [ "NNPS", "NNS" ], "realest": [ "JJS" ], "hot-cold": [ "JJ" ], "Mary": [ "NNP" ], "Grandma": [ "NNP", "NN" ], "freighter": [ "NN" ], "desynchronizing": [ "VBG" ], "Cuoco": [ "NNP" ], "footfall": [ "NN" ], "scapegoat": [ "NN" ], "besiege": [ "VB" ], "hemophiliacs": [ "NNS" ], "Shakarchi": [ "NNP" ], "Maoists": [ "NNPS" ], "badge-toter": [ "NN" ], "Bromley": [ "NNP" ], "pedestrians": [ "NNS" ], "diffraction": [ "NN" ], "Golovanov": [ "NNP" ], "Voroshilov": [ "NNP" ], "Sawalisch": [ "NN" ], "menace": [ "NN" ], "magnanimous": [ "JJ" ], "advisory": [ "JJ", "NN" ], "scratch": [ "NN", "VB", "VBP" ], "Kleiber": [ "NNP" ], "astronauts": [ "NNS" ], "enjoyable": [ "JJ" ], "Ambiguity": [ "NN" ], "limousine": [ "NN" ], "Progress": [ "NN", "NNP" ], "householders": [ "NNS" ], "luxuries": [ "NNS" ], "Skidmore": [ "NNP" ], "non-merger": [ "JJ" ], "E.H.": [ "NNP" ], "young": [ "JJ", "NN", "NNS" ], "noncallable": [ "JJ" ], "lustrious": [ "JJ" ], "slave-laborers": [ "NNS" ], "Rhythm": [ "NN", "NNP" ], "TREASURY": [ "NNP", "NN" ], "Salaam": [ "FW" ], "double-header": [ "NN" ], "Shipley": [ "NNP" ], "factory-modernization": [ "NN" ], "Tories": [ "NNPS", "NNP", "NNS" ], "Hanukkah": [ "NNP" ], "cerebrated": [ "VBN" ], "high-beta": [ "JJ" ], "larger-than-anticipated": [ "JJ" ], "reopened": [ "VBD", "VBN", "VB" ], "Candy": [ "NN", "NNP" ], "Vnet": [ "NNP" ], "nominated": [ "VBN", "VBD" ], "mixing": [ "VBG", "NN" ], "precinct": [ "NN" ], "Sweaty": [ "JJ" ], "goggle-eyed": [ "JJ" ], "Foglio": [ "NNP" ], "northwestern": [ "JJ" ], "magic": [ "NN", "JJ" ], "stodgy": [ "JJ" ], "Offering": [ "NN", "NNP", "VBG" ], "eva": [ "NN" ], "hard-bitten": [ "JJ" ], "Surface": [ "NN", "JJ" ], "anxious": [ "JJ" ], "whittling": [ "VBG" ], "poster-sized": [ "JJ" ], "insolence": [ "NN" ], "Gilman": [ "NNP" ], "Hinckley": [ "NNP" ], "sickish": [ "JJ" ], "Turks": [ "NNPS", "NNP", "NNS" ], "ex-manager": [ "NN" ], "seventies": [ "NNS" ], "Woronoff": [ "NNP" ], "Farmer": [ "NNP", "NN" ], "Ruttenbur": [ "NNP" ], "wheat": [ "NN", "JJ" ], "Nickle": [ "NNP" ], "foals": [ "NNS" ], "ungallant": [ "JJ" ], "desegregation-from-court-order": [ "NN" ], "Rees": [ "NNPS", "NNP" ], "sauerkraut": [ "NN" ], "drugstores": [ "NNS" ], "hunky-dory": [ "JJ" ], "epsom": [ "NN" ], "health-products": [ "NNS" ], "expressed": [ "VBN", "VBD", "JJ" ], "Reed": [ "NNP" ], "oration": [ "NN" ], "Reef": [ "NNP" ], "expresses": [ "VBZ" ], "delving": [ "VBG", "NN" ], "Udvar-Hazy": [ "NNP" ], "Tibetan": [ "JJ", "NNP" ], "Mar.": [ "NNP" ], "caper": [ "NN" ], "scepticism": [ "NN" ], "Combining": [ "VBG" ], "punch": [ "NN", "VBP", "VB" ], "puckish": [ "JJ" ], "poverty": [ "NN" ], "invented": [ "VBN", "VBD" ], "Magnetics": [ "NNPS", "NNP" ], "Aquino": [ "NNP" ], "computer-literate": [ "JJ" ], "AEI": [ "NNP" ], "Charities": [ "NNS", "NNPS" ], "Elisha": [ "NNP" ], "F.": [ "NNP", "NN" ], "contaminants": [ "NNS" ], "{": [ "(" ], "altho": [ "IN", "NN" ], "mid-April": [ "NN" ], "Rilling": [ "NNP" ], "Leading": [ "VBG", "JJ", "NNP" ], "Thakhek": [ "NNP" ], "sienna": [ "JJ" ], "cupid": [ "NN" ], "Rhine-Main": [ "NNP" ], "Explains": [ "VBZ" ], "runabout": [ "NN" ], "slug-kebab": [ "NN" ], "asymptotic": [ "JJ" ], "chocolates": [ "NNS" ], "SEAGATE": [ "NNP" ], "bleacher-type": [ "JJ" ], "instrumentation": [ "NN" ], "Eskimo": [ "NNP" ], "Commack": [ "NNP" ], "Heretic": [ "NN" ], "low-polluting": [ "JJ" ], "Plain": [ "NNP", "JJ" ], "disarming": [ "VBG", "JJ" ], "ADMAN": [ "NN" ], "submarine-ball": [ "NN" ], "federally": [ "RB" ], "lowliest": [ "JJS" ], "shoelaces": [ "NNS" ], "Pilots": [ "NNS", "NNPS", "NNP" ], "bobbins": [ "NNS" ], "Berlusconi": [ "NNP" ], "Albion": [ "NNP" ], "codfish": [ "NN" ], "practicing": [ "VBG", "NN" ], "bankholding": [ "VBG" ], "challenge": [ "NN", "VB", "VBP" ], "Dequindre": [ "NNP" ], "Written": [ "VBN" ], "Berthelier": [ "NNP" ], "hydrolysis": [ "NN" ], "governmentset": [ "VBN" ], "publications": [ "NNS" ], "fomenting": [ "VBG" ], "enlivening": [ "VBG" ], "ethane": [ "NN" ], "Seligman": [ "NNP" ], "Police": [ "NNP", "NNS", "NN", "NNPS" ], "stress-provoking": [ "JJ" ], "Greisler": [ "NNP" ], "USAA": [ "NNP" ], "USAF": [ "NNP" ], "Steinkerque": [ "NNP" ], "Ethiopians": [ "NNPS", "NNS" ], "Policy": [ "NNP", "NN" ], "Borner": [ "NNP" ], "paws": [ "NNS" ], "Boursin": [ "NNP" ], "clogs": [ "VBZ" ], "shuffled": [ "VBD" ], "c-Domestic": [ "JJ", "LS|JJ" ], "mumbled": [ "VBD", "VBN" ], "Selavo": [ "NNP" ], "occipital": [ "JJ" ], "motivating": [ "VBG", "JJ" ], "wolf": [ "NN" ], "mumbles": [ "VBZ" ], "mop-up": [ "NN" ], "Kemps": [ "NNP" ], "non-recurring": [ "JJ" ], "Kempe": [ "NNP" ], "Nisshinbo": [ "NNP" ], "Badrawi": [ "NNP" ], "redeeming": [ "VBG", "JJ" ], "misappropriation": [ "NN" ], "Walkman-style": [ "JJ" ], "Presidio": [ "NNP", "NN" ], "sprue": [ "NN" ], "counter": [ "NN", "IN", "JJ", "RB", "VB", "IN|RB", "VBP" ], "reminders": [ "NNS" ], "element": [ "NN" ], "Breuners": [ "NNP", "NNPS" ], "re-supplied": [ "VBN" ], "Blackpool": [ "NNP" ], "massages": [ "NNS" ], "writ": [ "NN", "VBN" ], "asserts": [ "VBZ" ], "classy": [ "JJ" ], "well-managed": [ "JJ" ], "counted": [ "VBN", "VBD" ], "Schramm": [ "NNP" ], "HIV-infected": [ "JJ", "VBN" ], "stratagem": [ "NN" ], "interlocutor": [ "NN" ], "Washed": [ "VBN" ], "emissaries": [ "NNS" ], "Polychemicals": [ "NNP" ], "artichoke": [ "NN" ], "cheek-by-jowl": [ "JJ" ], "Weaving": [ "VBG" ], "warren": [ "NN" ], "Himself": [ "PRP" ], "decay": [ "NN", "VB" ], "compulsions": [ "NNS" ], "dispose": [ "VB" ], "imperfection": [ "NN" ], "fiscal-year": [ "JJ", "NN" ], "decal": [ "NN" ], "degrees": [ "NNS" ], "misapprehension": [ "NN" ], "Sappho": [ "NNP" ], "laggards": [ "NNS" ], "therefor": [ "RB" ], "Haven": [ "NNP" ], "Havel": [ "NNP" ], "stop-loss": [ "NN", "JJ" ], "Toussie": [ "NNP" ], "Attorneys": [ "NNS", "NNP", "NNPS" ], "SHEA": [ "NNP" ], "Herbert": [ "NNP" ], "dock": [ "NN", "VB" ], "heavy-handed": [ "JJ" ], "sandpaper": [ "NN" ], "rotation": [ "NN" ], "Aluminium": [ "NNP" ], "Q45": [ "NNP" ], "Swelling": [ "JJ", "VBG" ], "sniffing": [ "VBG" ], "wrangled": [ "VBD", "VBN" ], "Rourke": [ "NNP", "NN" ], "onlookers": [ "NNS" ], "well-stated": [ "JJ", "VBN" ], "tents": [ "NNS" ], "Kiyoi": [ "NNP" ], "UNIFIRST": [ "NNP" ], "sportsman": [ "NN" ], "Overriding": [ "NN" ], "co-major": [ "NN" ], "irritation": [ "NN" ], "jagged": [ "JJ", "VBN" ], "Cassite": [ "NNP" ], "tenth": [ "JJ", "NN" ], "Dropouts": [ "NNS" ], "borderline": [ "JJ", "NN", "RB" ], "gyro-stabilized": [ "JJ" ], "Material": [ "NNP", "JJ" ], "much-larger": [ "JJ" ], "mediated": [ "VBN" ], "superbly": [ "RB" ], "Trying": [ "VBG", "NNP" ], "waters": [ "NNS" ], "MRI-type": [ "JJ" ], "realigning": [ "VBG" ], "classification": [ "NN" ], "Once-only": [ "JJ" ], "wall-stabilized": [ "JJ" ], "DIGS": [ "NNS" ], "internal-external": [ "JJ" ], "regulators": [ "NNS", "VBZ" ], "Ffortescue": [ "NNP" ], "sanatorium": [ "NN" ], "regulatory": [ "JJ" ], "jowl": [ "NN" ], "rowdiness": [ "NN" ], "minstrel": [ "NN" ], "Extricating": [ "VBG" ], "Debenture": [ "NN", "NNP" ], "dubbed": [ "VBN", "VBD" ], "junk-fund": [ "NN" ], "Celebrities": [ "NNS" ], "telephone-access": [ "JJ" ], "serenity": [ "NN" ], "Berteros": [ "NNPS" ], "Cummins": [ "NNP" ], "respond": [ "VB", "NN", "VBP" ], "retching": [ "VBG", "NN" ], "rescinding": [ "VBG" ], "collagen": [ "NN" ], "metering": [ "VBG" ], "feasts": [ "NNS" ], "Program": [ "NN", "NNP" ], "occurrences": [ "NNS" ], "collages": [ "NNS" ], "hand-carried": [ "VBN" ], "car-industry": [ "NN" ], "opportune": [ "JJ" ], "Dyerear": [ "NNP" ], "Volker": [ "NNP" ], "Happily": [ "RB" ], "lengthily": [ "RB" ], "Spokespersons": [ "NNS" ], "vaginal": [ "JJ" ], "accretion": [ "NN" ], "nosediving": [ "VBG" ], "large-computer": [ "NN" ], "tie-ups": [ "NNS" ], "Indo-China": [ "NNP" ], "Kersley": [ "NNP" ], "evacuated": [ "VBN" ], "gummy": [ "JJ" ], "Qing": [ "NNP" ], "aerate": [ "VB" ], "shorts": [ "NNS" ], "Complicating": [ "VBG" ], "Chalmers": [ "NNP", "NNPS" ], "Casanova": [ "NNP" ], "depressing": [ "JJ", "VBG" ], "crosswise": [ "RB" ], "bombers": [ "NNS" ], "accompaniment": [ "NN" ], "unexpended": [ "VBN", "JJ" ], "Democratic": [ "JJ", "NN", "NNP" ], "InterMarket": [ "NNP" ], "original-instrument": [ "JJ" ], "unamused": [ "VBN" ], "top-loaders": [ "NNS" ], "unblushing": [ "JJ" ], "Whirpool": [ "NNP" ], "splayed": [ "VBD" ], "philologists": [ "NNS" ], "listeners": [ "NNS" ], "reproduction": [ "NN" ], "dissensions": [ "NNS" ], "Zaire": [ "NNP" ], "pre-arranged": [ "JJ" ], "downpayments": [ "NNS" ], "highest-quality": [ "JJ", "JJS", "NN" ], "accusing": [ "VBG", "JJ" ], "AAA": [ "NNP" ], "unbelieving": [ "JJ" ], "pull-backs": [ "NNS" ], "freshened": [ "VBN" ], "Patsy": [ "NNP" ], "correspond": [ "VB", "VBP" ], "Messerschmitt-Bolkow": [ "NNP" ], "HonFed": [ "NNP" ], "Smithtown": [ "NNP" ], "intertwining": [ "VBG", "JJ" ], "accenting": [ "NN" ], "epicenter": [ "NN" ], "amphibious": [ "JJ" ], "hypothalamic": [ "JJ" ], "babel": [ "NN" ], "therewith": [ "RB" ], "mills": [ "NNS" ], "Loyalty": [ "NN", "NNP" ], "Dak.": [ "NNP" ], "mesenteric": [ "JJ" ], "Funny": [ "JJ", "RB", "NNP" ], "Quarterback": [ "NNP" ], "babes": [ "NNS" ], "gray-bearded": [ "JJ" ], "souled": [ "JJ" ], "Decatur": [ "NNP" ], "walkover": [ "NN" ], "Weinstein": [ "NNP" ], "HEADED": [ "VBD" ], "Stals": [ "NNP" ], "courtesy": [ "NN" ], "Volga": [ "NNP" ], "segment": [ "NN", "VBP" ], "hypocrite": [ "NN" ], "lined": [ "VBN", "VBD", "JJ" ], "WXRK-FM": [ "NNP" ], "media-linked": [ "JJ" ], "Neanderthals": [ "NNS" ], "socialistic": [ "JJ" ], "Suliman": [ "NNP" ], "face": [ "NN", "VBP", "JJ", "RB", "VB" ], "screechy": [ "JJ" ], "colonnade": [ "NN" ], "Jackets": [ "NNS" ], "Ruger": [ "NNP" ], "Technically": [ "RB", "NNP" ], "Kitaro": [ "NNP" ], "Paris": [ "NNP" ], "Claiming": [ "VBG" ], "disbanded": [ "VBN", "VBD", "JJ" ], "MIG-1\\": [ "JJ" ], "inflammations": [ "NNS" ], "WANT": [ "VBP" ], "water-pollution": [ "NN" ], "ripoff": [ "NN" ], "attributes": [ "NNS", "VBZ" ], "Grandeur": [ "NN" ], "redirect": [ "VB" ], "Meanwhile": [ "RB" ], "conciliate": [ "VB" ], "lethargies": [ "NNS" ], "scurrilous": [ "JJ" ], "Dutch-based": [ "JJ" ], "Strong": [ "JJ", "NNP" ], "One-Cancels-The-Other": [ "NNP" ], "handle": [ "VB", "NN", "VBP" ], "listened": [ "VBD", "VBN" ], "muttering": [ "VBG", "NN|VBG" ], "reconvention": [ "NN" ], "listener": [ "NN" ], "scorn": [ "NN", "VB", "VBP" ], "Evarsito": [ "NNP" ], "Coelho": [ "NNP" ], "postured": [ "VBD" ], "defenseless": [ "JJ" ], "generalist": [ "NN" ], "Once": [ "RB", "NNP", "IN" ], "smash": [ "NN", "VB", "VBP" ], "M.B.A.": [ "NNP", "NN" ], "fieldwork": [ "NN" ], "Connally": [ "NNP" ], "summon": [ "VB" ], "allegation": [ "NN" ], "basking": [ "VBG" ], "Ryland": [ "NNP" ], "Anglian": [ "JJ" ], "receptive": [ "JJ" ], "superstars": [ "NNS" ], "CRS": [ "NNP" ], "CRT": [ "NNP" ], "Uppsala": [ "NNP" ], "CRX": [ "NNP" ], "Atonio": [ "NNP" ], "Palmtops": [ "NNS" ], "paperbacks": [ "NNS" ], "Tamiris-Daniel": [ "NNP" ], "CRI": [ "NNP" ], "Angkor": [ "NNP" ], "CRs": [ "NNS" ], "Kohrs": [ "NNP" ], "yardwork": [ "NN" ], "migrations": [ "NNS" ], "distressingly": [ "RB" ], "Kerson": [ "NNP" ], "Gallup": [ "NNP", "NN" ], "nominees": [ "NNS" ], "disgruntled": [ "JJ", "VBN" ], "ABM.": [ "NNP" ], "Optima": [ "NNP" ], "pseudo-willing": [ "NN" ], "Frucher": [ "NNP" ], "Coronets": [ "NNPS" ], "strides": [ "NNS", "VBZ" ], "grow": [ "VB", "VBP" ], "configuration": [ "NN" ], "absented": [ "VBD" ], "absentee": [ "JJ", "NN" ], "sausage-meat": [ "NN" ], "memory-images": [ "NNS" ], "Alsing": [ "NNP" ], "baubles": [ "NNS" ], "Hadassah": [ "NNP" ], "challengeable": [ "JJ" ], "dissident-shareholder": [ "NN" ], "seven-course": [ "JJ" ], "streams": [ "NNS" ], "Dillmann": [ "NNP" ], "cinder": [ "NN" ], "R.S.": [ "NNP" ], "Kimbark": [ "NNP" ], "nonmetallic": [ "JJ" ], "Smitty": [ "NNP" ], "wrestlers": [ "NNS" ], "R.,Iowa": [ "NNP" ], "rockbound": [ "JJ" ], "Her": [ "PRP$", "PRP", "PRP$R" ], "Announcement": [ "NN" ], "under-the-table": [ "JJ" ], "countertenor": [ "NN" ], "Hey": [ "UH", "NNP" ], "snowfall": [ "NN" ], "Eskridge": [ "NNP" ], "Hee": [ "UH", "NNP" ], "Yankeefication": [ "NNP" ], "heavy-machine": [ "JJ" ], "Hen": [ "NN" ], "winning": [ "VBG", "JJ", "NN", "VBG|JJ" ], "Glemp": [ "NNP" ], "Alco": [ "NNP" ], "outsider": [ "NN" ], "adjective": [ "NN" ], "Seattle-Northwest": [ "NNP" ], "Capoten": [ "NNP" ], "Samuels": [ "NNP" ], "Kinda": [ "RB" ], "compensating": [ "VBG" ], "utilizing": [ "VBG" ], "negotiates": [ "VBZ" ], "melamine": [ "NN" ], "Stations": [ "NNS", "NNPS" ], "acclamation": [ "NN" ], "Whence": [ "WRB" ], "tobacco-ad": [ "JJ" ], "Diman": [ "NNP" ], "Irrigation": [ "NN" ], "coals": [ "NNS" ], "runway": [ "NN" ], "less-advanced": [ "JJ|JJR" ], "sentimentalize": [ "VB" ], "bombproof": [ "NN", "JJ" ], "unself-conscious": [ "JJ" ], "Waldron": [ "NNP" ], "bathtub": [ "NN" ], "unpaired": [ "VBN" ], "Prieta": [ "NNP" ], "Gorgeous": [ "NNP" ], "retarding": [ "VBG" ], "hardware": [ "NN" ], "enoxacin": [ "NN" ], "vs": [ "NNP", "IN" ], "overleveraged": [ "JJ" ], "vu": [ "NN" ], "adultery": [ "NN" ], "tenor": [ "NN" ], "sits": [ "VBZ", "NNS" ], "waivers": [ "NNS" ], "situ": [ "FW" ], "descriptive": [ "JJ" ], "Burle": [ "NNP" ], "self-declared": [ "JJ" ], "fashioning": [ "VBG" ], "consortium-ownership": [ "NN" ], "showerhead": [ "NN" ], "Antinomians": [ "NNS" ], "Stepanian": [ "NNP" ], "wafer": [ "NN" ], "Burly": [ "JJ" ], "Danny": [ "NNP" ], "infinity": [ "NN" ], "tri-jet": [ "NN" ], "emotionally": [ "RB" ], "Amcore": [ "NNP" ], "birthcontrol": [ "NN" ], "v.": [ "CC", "IN", "NN" ], "architectures": [ "NNS" ], "infinite": [ "JJ", "NN" ], "Kristen": [ "NNP" ], "C.M.": [ "NNP" ], "Garland": [ "NNP" ], "reinforced-fiberglass": [ "JJ" ], "enrage": [ "NN" ], "Burts": [ "NNPS" ], "fail": [ "VB", "VBP", "NN" ], "drawing": [ "VBG", "JJ", "NN" ], "enunciation": [ "NN" ], "restructure": [ "VB", "VBP", "NN" ], "flesh": [ "NN", "VB" ], "Retiring": [ "VBG" ], "shirt-pocket": [ "NN" ], "footbridge": [ "NN" ], "rooms": [ "NNS" ], "insisting": [ "VBG" ], "Carneigie": [ "NNP" ], "roomy": [ "JJ" ], "extempore": [ "RB" ], "bibliography": [ "NN" ], "Babylonians": [ "NNPS" ], "Company": [ "NNP", "NN" ], "live-haulers": [ "NNS" ], "Darius": [ "NNP" ], "Vegans": [ "NNPS" ], "Plunge": [ "NN" ], "Bridgeville": [ "NNP" ], "securities-turnover": [ "JJ" ], "grand-slam": [ "JJ" ], "big-company": [ "JJ" ], "amputations": [ "NNS" ], "Second-quarter": [ "NNP", "JJ", "NN" ], "Amadeus": [ "NN", "NNP" ], "Hardiman": [ "NNP" ], "rednecks": [ "NNS" ], "snitched": [ "VBN" ], "government": [ "NN" ], "unbalance": [ "NN" ], "one-digit": [ "JJ" ], "pre-quake": [ "JJ" ], "Sallie": [ "NNP" ], "blockages": [ "NNS" ], "Engineers": [ "NNPS", "NNP", "NNS" ], "di-iodotyrosine": [ "NN" ], "Creek": [ "NNP" ], "Schwartz": [ "NNP" ], "chairs": [ "NNS", "VBZ" ], "Creed": [ "NNP" ], "Gornto": [ "NNP" ], "consumer-advocacy": [ "JJ" ], "erasable": [ "JJ" ], "suffocation": [ "NN" ], "imprison": [ "VB" ], "sell-offs": [ "NNS" ], "Valdiserri": [ "NNP" ], "pretest": [ "NN" ], "therapeutic": [ "JJ", "NN" ], "amendment": [ "NN" ], "Low-interest-rate": [ "JJ" ], "repartee": [ "NN" ], "misperceives": [ "VBZ" ], "bargain-hunt": [ "VB" ], "darlin": [ "NN" ], "daylight": [ "NN" ], "beach-house": [ "NN" ], "fantasist": [ "NN" ], "open-ended": [ "JJ" ], "pork-barreling": [ "NN" ], "Trupin-related": [ "JJ" ], "fontanel": [ "NN" ], "sketching": [ "VBG", "NN" ], "stores.": [ "NN" ], "demonstrators": [ "NNS" ], "anguished": [ "JJ" ], "Montana": [ "NNP" ], "therapists": [ "NNS" ], "Bronner": [ "NNP" ], "Eurokitsch": [ "NN" ], "SQUIBB": [ "NNP" ], "voluptuous": [ "JJ" ], "drift": [ "NN", "VBP", "VB" ], "tidewater": [ "NN" ], "asbestos-disease": [ "NN" ], "Bathurst": [ "NNP" ], "adversary": [ "NN", "JJ" ], "counties": [ "NNS" ], "Optical-storage": [ "JJ" ], "PanAm": [ "NNP" ], "p-aminobenzoic": [ "JJ" ], "Plymouth": [ "NNP", "NN" ], "merited": [ "VBD" ], "Pampel": [ "NNP" ], "third-leading": [ "JJ" ], "spoilables": [ "NNS" ], "Rotarians": [ "NNPS" ], "intermediates": [ "NNS" ], "Leninist": [ "NNP" ], "pussy": [ "NN" ], "screamed": [ "VBD", "VBN" ], "activate": [ "VBP", "VB" ], "lung": [ "NN" ], "Calgary": [ "NNP" ], "From": [ "IN", "NNP" ], "Creole": [ "NNP" ], "Summerland": [ "NNP" ], "interest-deferred": [ "JJ" ], "MGM-UA": [ "NNP" ], "Dangling": [ "VBG" ], "Deardorff": [ "NNP" ], "kooky": [ "JJ" ], "restricts": [ "VBZ" ], "Listening": [ "NN", "VBG" ], "kooks": [ "NNS" ], "Epitaph": [ "NNP" ], "stop-payment": [ "NN" ], "Groth": [ "NNP" ], "disengaged": [ "VBN" ], "HEALTHDYNE": [ "NNP" ], "More-detailed": [ "JJR" ], "fly-fishing": [ "NN" ], "Grote": [ "NNP" ], "vine-embowered": [ "JJ" ], "CF680C2": [ "NNP" ], "past-fantasy": [ "JJ" ], "proverbs": [ "NNS" ], "agro-chemicals": [ "NNS" ], "interwar": [ "JJ" ], "Hussman": [ "NNP" ], "government-subsidized": [ "JJ" ], "Diane": [ "NNP" ], "triumphant": [ "JJ" ], "counterattack": [ "NN", "VB" ], "convince": [ "VB", "VBP" ], "leashes": [ "NNS" ], "distribution": [ "NN" ], "baptism": [ "NN" ], "AnaMor": [ "NNP" ], "rightly": [ "RB" ], "morning-glory": [ "NN" ], "rubble": [ "NN" ], "three-ton": [ "JJ" ], "CIM": [ "NNP" ], "CIR": [ "NNP" ], "inn": [ "NN" ], "Statehouse": [ "NN" ], "ink": [ "NN" ], "Sunburst": [ "NNP" ], "Rustin": [ "NNP" ], "againt": [ "NN" ], "in\\": [ "JJ" ], "renowned": [ "JJ", "VBN" ], "low-voltage": [ "JJ" ], "compressive": [ "JJ" ], "agreed-upon": [ "IN", "JJ" ], "hobbling": [ "VBG" ], "trials": [ "NNS" ], "power-switching": [ "JJ" ], "Confectioner": [ "NNP" ], "lookup": [ "NN" ], "Luechtefeld": [ "NNP" ], "incorrigible": [ "JJ" ], "oviform": [ "JJ" ], "semblance": [ "NN" ], "neuroblastoma": [ "NN" ], "dealer-manager": [ "NN" ], "Prager": [ "NNP" ], "MACY": [ "NNP" ], "Polyvinyl": [ "NN" ], "Maturity": [ "NN" ], "in.": [ "NN" ], "Kasiva": [ "NNP" ], "Congressman": [ "NNP", "NN" ], "capers": [ "NNS" ], "faculty-hiring": [ "JJ" ], "coloration": [ "NN" ], "ghost": [ "NN" ], "Gargle": [ "NNP" ], "Boland": [ "NNP" ], "non-scientific": [ "JJ" ], "Attractions": [ "NNPS" ], "R.H.": [ "NNP" ], "tinkling": [ "VBG" ], "corporate-related": [ "JJ" ], "garbage-out": [ "JJ" ], "confinement": [ "NN" ], "Waugh": [ "NNP" ], "shipping-rate": [ "JJ" ], "unspeakable": [ "JJ" ], "frolics": [ "NNS" ], "small-to-medium-sized": [ "JJ" ], "nonstrategic": [ "JJ" ], "reactants": [ "NNS" ], "blisters": [ "NNS" ], "extrapolates": [ "VBZ" ], "mansion": [ "NN" ], "DataTimes": [ "NNP" ], "ebbed": [ "VBD", "VBN" ], "Rabia": [ "NNP" ], "codification": [ "NN" ], "Payouts": [ "NNS" ], "spew": [ "VBP" ], "excoriate": [ "VB" ], "four-game": [ "JJ" ], "Langford": [ "NNP" ], "aftereffects": [ "NNS" ], "invaders": [ "NNS" ], "fiberoptic": [ "JJ" ], "regal": [ "JJ" ], "OVERSEAS": [ "JJ" ], "McKennon": [ "NNP" ], "whack": [ "VB", "NN" ], "Salvesen": [ "NNP" ], "Castlegar": [ "NNP" ], "disease-fighting": [ "JJ" ], "LYONs": [ "NNS" ], "Wierton": [ "NNP" ], "business-venture": [ "JJ" ], "yanking": [ "VBG" ], "waterlogged": [ "JJ" ], "undergarment": [ "NN" ], "Entrenched": [ "VBN" ], "porpoises": [ "NNS" ], "Ejaculated": [ "VBD" ], "pinch": [ "NN", "VB" ], "inter-relationships": [ "NNS" ], "Gauer": [ "NNP" ], "nigger": [ "NN" ], "Glayre": [ "NNP" ], "reinvent": [ "VB" ], "Sermon": [ "NN", "NNP" ], "chew": [ "VB", "VBP" ], "speck": [ "NN" ], "preached": [ "VBD", "VBN" ], "Hundreds": [ "NNS", "NNP" ], "blasphemy": [ "NN" ], "two-time": [ "JJ" ], "surmounting": [ "VBG" ], "horn": [ "NN", "VB" ], "preacher": [ "NN" ], "preaches": [ "VBZ" ], "hors": [ "FW" ], "dogtrot": [ "NN" ], "unsurpassed": [ "JJ" ], "specs": [ "NNS" ], "decadence": [ "NN" ], "Pindling": [ "NNP" ], "Partly": [ "RB" ], "deliberate": [ "JJ", "VB" ], "Mayne": [ "NNP" ], "consequent": [ "JJ" ], "Amazon": [ "NNP" ], "glaciers": [ "NNS" ], "zoomed": [ "VBD", "VBN" ], "officially": [ "RB" ], "Faced": [ "VBN", "VBD" ], "crunch": [ "NN", "VB" ], "Kandemir": [ "NNP" ], "fall-outs": [ "NNS" ], "Shaw-Walker": [ "NNP" ], "Cricket": [ "NNP" ], "leitmotif": [ "NN" ], "thrombosed": [ "VBN" ], "Accustomed": [ "JJ" ], "Nourishing": [ "JJ" ], "Faces": [ "NNPS", "NNP" ], "underrepresented": [ "VBN" ], "leitmotiv": [ "FW" ], "Schabowski": [ "NNP" ], "Shea": [ "NNP" ], "items": [ "NNS", "VBZ" ], "Queen": [ "NNP", "NN" ], "Blanchard": [ "NNP" ], "BLUES": [ "NNPS" ], "reappraise": [ "VB", "VBP" ], "Shep": [ "NNP" ], "cross-pollination": [ "NN" ], "calculators": [ "NNS" ], "anarchist": [ "NN" ], "Floridians": [ "NNP" ], "doleful": [ "JJ" ], "glittering": [ "VBG" ], "Orleans": [ "NNP" ], "Jew": [ "NNP", "NN" ], "Jet": [ "NNP", "NN" ], "Abderahmane": [ "NNP" ], "graders": [ "NNS" ], "highly": [ "RB" ], "Jeb": [ "NNP", "NN" ], "encountering": [ "VBG" ], "Jed": [ "NNP" ], "Inferno": [ "NN", "NNP" ], "cholla": [ "NN" ], "Jen": [ "NNP" ], "Zarett": [ "NNP" ], "Helsinki": [ "NNP" ], "Cresson": [ "NNP" ], "retaking": [ "VBG" ], "rank-and-file": [ "JJ", "NN" ], "Maywood": [ "NNP" ], "hunkered": [ "VBN", "VBD" ], "plows": [ "NNS", "VBZ" ], "anti-debt": [ "JJ" ], "plagiarize": [ "VB" ], "Chemcat": [ "NNP" ], "Forst": [ "NNP" ], "Vanden": [ "NNP" ], "pre-drilled": [ "JJ" ], "Vander": [ "NNP" ], "zeroed": [ "VBN" ], "ineptness": [ "NN" ], "wellplaced": [ "JJ" ], "Cosmetic": [ "NNP" ], "tecum": [ "FW" ], "Groopman": [ "NNP" ], "Chambre": [ "NNP" ], "Developed": [ "VBN" ], "daises": [ "NNS" ], "Street-style": [ "JJ" ], "unshackled": [ "JJ" ], "overvaulting": [ "JJ" ], "circuit-board": [ "NN" ], "Jimbo": [ "NNP" ], "nozzle": [ "NN" ], "Lehar": [ "NNP" ], "growth-stock": [ "JJ", "NN" ], "Super-Set": [ "NNP" ], "lobscouse": [ "NN" ], "antislavery": [ "JJ" ], "Balfour": [ "NNP" ], "white-minority": [ "JJ" ], "unsubordinated": [ "JJ" ], "tornadoes": [ "NNS" ], "farce": [ "NN" ], "Arequipa": [ "NNP" ], "specter": [ "NN" ], "methanol": [ "NN" ], "Bankruptcy-court": [ "NN" ], "foulest": [ "JJS" ], "automobile-manufacturing": [ "JJ" ], "operatic": [ "JJ" ], "gamble": [ "NN", "VB" ], "pizza": [ "NN" ], "Tyranny": [ "NNP" ], "ASARCO": [ "NNP" ], "coined": [ "VBN", "VBD" ], "Petrofina": [ "NNP" ], "movable": [ "JJ", "NN" ], "fat-free": [ "JJ" ], "Thamnophis": [ "NNS" ], "austere": [ "JJ" ], "stick-and-carrot": [ "NN" ], "interlining": [ "NN" ], "Erma": [ "NNP" ], "less-than-truckload": [ "JJ" ], "AutoPacific": [ "NNP" ], "thrift-bailout": [ "JJ", "NN" ], "encompassing": [ "VBG" ], "aboveground": [ "JJ" ], "hummable": [ "JJ" ], "Year-earlier": [ "JJ" ], "anti-outsider": [ "NN" ], "L.P.": [ "NNP", "NN" ], "Space-net": [ "NNP" ], "Glasow": [ "NNP" ], "tiffs": [ "NNS" ], "specially-designed": [ "JJ" ], "Strassner": [ "NNP" ], "large-enough": [ "JJ" ], "nets": [ "NNS", "VBZ" ], "cost-data": [ "JJ" ], "befallen": [ "VBN" ], "Salu": [ "NNP" ], "savors": [ "NNS" ], "feuding": [ "VBG", "NN" ], "Squint": [ "NN" ], "PAPERS": [ "NNS" ], "discomfited": [ "JJ" ], "Orcutt": [ "NNP" ], "carton": [ "NN" ], "Tsvetkov": [ "NNP" ], "Thermogravimetric": [ "JJ" ], "noncash": [ "JJ", "NN" ], "Mercy": [ "NNP" ], "bans": [ "NNS", "VBZ" ], "Manpower": [ "NNP" ], "Analysis": [ "NNP", "NN" ], "bane": [ "NN" ], "band": [ "NN", "VB" ], "bang": [ "NN", "VB", "UH", "VBP" ], "Merck": [ "NNP", "NN" ], "Homemaster": [ "JJ" ], "payback": [ "NN" ], "Merce": [ "NNP" ], "bank": [ "NN", "VBP", "VB" ], "MBIA": [ "NNP" ], "Medvedev": [ "NNP" ], "demotion": [ "NN" ], "Bar-H": [ "NNP" ], "reguli": [ "NNS" ], "automobile": [ "NN" ], "once-troubled": [ "JJ" ], "Occasionally": [ "RB" ], "Toot-toot": [ "UH" ], "pied-a-terre": [ "FW" ], "profusely": [ "RB" ], "Frankfurter": [ "NNP", "NN" ], "tax-and-budget": [ "JJ" ], "ologies": [ "NNS" ], "summarily": [ "RB" ], "corpsman": [ "NN" ], "back-of-the-envelope": [ "JJ" ], "logs": [ "NNS", "VBZ" ], "mangled": [ "JJ", "VBN" ], "REFLECTIONS": [ "NNP" ], "logo": [ "NN" ], "Goldsmith": [ "NNP" ], "loaders": [ "NNS" ], "company-operated": [ "JJ" ], "whining": [ "VBG" ], "burlap": [ "NN" ], "hooked": [ "VBN", "JJ", "VBD" ], "Newbury": [ "NNP" ], "remorse": [ "NN" ], "Complementing": [ "VBG" ], "medicine": [ "NN" ], "hooker": [ "NN" ], "imperialists": [ "NNS" ], "Nasional": [ "NNP" ], "too-shiny": [ "JJ" ], "standard": [ "JJ", "NN" ], "ecliptic": [ "NN", "JJ" ], "Cautiously": [ "RB" ], "horn-rim": [ "JJ" ], "morass": [ "NN" ], "Angeles": [ "NNP" ], "Saklad": [ "NNP" ], "watercolorist": [ "NN" ], "under-represented": [ "JJ" ], "spoonbills": [ "NNS" ], "Flexicokers": [ "NNS" ], "Audits": [ "NNPS" ], "Pervanas": [ "NNP" ], "meshed": [ "VBN" ], "lexicostatistic": [ "JJ" ], "saddling": [ "VBG" ], "delicious": [ "JJ" ], "Quod": [ "FW" ], "thoughtfully": [ "RB" ], "navigator": [ "NN" ], "Committeemen": [ "NNS" ], "Cormack": [ "NNP" ], "centrifuge": [ "NN" ], "Barris": [ "NNP", "NNS" ], "omnipresence": [ "NN" ], "low-life": [ "JJ" ], "mergers-and-acquisitions": [ "NNS", "JJ" ], "sedans": [ "NNS" ], "crunches": [ "NNS" ], "Unease": [ "NN" ], "Barrie": [ "NNP" ], "Medicaid": [ "NNP" ], "farming": [ "NN", "VBG" ], "crunched": [ "VBD" ], "Barrio": [ "NNP" ], "Bushels": [ "NNS" ], "Masonic": [ "NNP" ], "decentralize": [ "VB" ], "refraining": [ "VBG" ], "grandchildren": [ "NNS" ], "pro-labor": [ "JJ" ], "Quoting": [ "VBG" ], "diversified": [ "JJ", "VBD", "VBN" ], "Vanderbilts": [ "NNS" ], "sale-purchase": [ "NN" ], "maxim": [ "NN" ], "five-month-old": [ "JJ" ], "Escalante": [ "NNP" ], "hazelnut": [ "NN" ], "corresponded": [ "VBD" ], "dependent-care": [ "JJ" ], "air-traffic": [ "NN" ], "intrusion": [ "NN" ], "unblinking": [ "JJ" ], "computer-store": [ "NN" ], "seated": [ "VBN", "VBD", "JJ" ], "FriedrichsInc.": [ "NNP" ], "badmen": [ "NNS" ], "rationalization": [ "NN" ], "Name-dropping": [ "NN" ], "checkout-stand": [ "NN" ], "M.W.": [ "NNP" ], "SIGNALED": [ "VBN" ], "stalls": [ "NNS", "VBZ" ], "Depot": [ "NNP" ], "Multimate": [ "NNP" ], "vocational-advancement": [ "JJ" ], "Cosmopolitan": [ "NNP" ], "second-time": [ "JJ" ], "widen": [ "VB", "VBP" ], "property-claim": [ "NN" ], "latter": [ "NN", "JJ" ], "crinkles": [ "NNS" ], "Ridder": [ "NNP" ], "unhook": [ "VB" ], "coldness": [ "NN" ], "frictionless": [ "JJ" ], "anti-bike": [ "JJ" ], "curfew": [ "NN" ], "insulated": [ "VBN", ".", "JJ" ], "Year-End": [ "JJ" ], "maiden": [ "NN", "JJ" ], "timidity": [ "NN" ], "boxcar": [ "NN" ], "injection-molded": [ "JJ" ], "involving": [ "VBG" ], "negro": [ "NNP" ], "autopsy": [ "NN", "VB" ], "Lifland": [ "NNP" ], "demoralizes": [ "VBZ" ], "intergroup": [ "JJ", "NN" ], "herpetological": [ "JJ" ], "Hosni": [ "NNP" ], "calculated": [ "VBN", "VBD", "JJ" ], "Schlumberger": [ "NNP" ], "Dynamic": [ "NNP" ], "scavenging": [ "VBG" ], "Emperors": [ "NNS" ], "leaflet": [ "NN" ], "judgmental": [ "JJ" ], "demoralized": [ "VBN", "JJ" ], "Frostbite": [ "NN" ], "responded": [ "VBD", "VBN" ], "nonporous": [ "JJ" ], "Missiles": [ "NNP", "NNS" ], "Morison": [ "NNP" ], "religions": [ "NNS" ], "Riad": [ "NNP" ], "word-for-word": [ "JJ" ], "unattached": [ "JJ", "VBN" ], "enjoyed": [ "VBD", "VBN" ], "SanAntonio": [ "NNP" ], "Dec.": [ "NNP", "NN", "VB" ], "foraging": [ "NN", "VBG" ], "painfully": [ "RB" ], "Mixte": [ "NNP" ], "thin-slab": [ "JJ" ], "implementation": [ "NN" ], "layman": [ "NN" ], "Solicitor": [ "NNP" ], "Paev": [ "NNP" ], "adequate": [ "JJ" ], "Irec": [ "NNP" ], "Marseillaise": [ "NNP" ], "Omnicare": [ "NNP" ], "masons": [ "NNS" ], "day-by-day": [ "JJ" ], "backed-up": [ "JJ" ], "vowels": [ "NNS" ], "Ladies": [ "NNP", "NNS", "NNPS" ], "Taxes": [ "NNS" ], "pierced": [ "VBN", "VBD" ], "Fagershein": [ "NNP" ], "nasty": [ "JJ" ], "headlong": [ "RB" ], "furnishings": [ "NNS" ], "billion-a": [ "JJ" ], "gunslinging": [ "VBG" ], "Deck": [ "NNP" ], "Unfilled": [ "JJ" ], "unmet": [ "JJ" ], "Strangelove": [ "NNP" ], "Frankfurt-based": [ "JJ" ], "unshakeable": [ "JJ" ], "reviewed\\/designed": [ "VBN" ], "Ad-Unit": [ "NN" ], "de-stocking": [ "NN" ], "complimenting": [ "VBG" ], "Kezar": [ "NNP" ], "Astonishingly": [ "RB" ], "scours": [ "NNS", "NN" ], "GBL": [ "NNP" ], "initialed": [ "VBD", "VBN" ], "Thief": [ "NN" ], "projections": [ "NNS" ], "damnation": [ "NN" ], "Cesare": [ "NNP" ], "Tension": [ "NN" ], "appellate-litigation": [ "NN|JJ" ], "tongue-twister": [ "NN" ], "afloat": [ "RB" ], "Wiegers": [ "NNP" ], "unable": [ "JJ" ], "Quindlen": [ "NNP" ], "contraband": [ "JJ", "NN" ], "Moderating": [ "VBG" ], "Sinkula": [ "NNP" ], "Huxley": [ "NNP" ], "Kohnstamm": [ "NNP" ], "Duck": [ "NNP", "NN" ], "Reavey": [ "NNP" ], "uncataloged": [ "VBN" ], "lurching": [ "VBG" ], "megabillion": [ "NN" ], "Bouvardier": [ "NNP" ], "Judson": [ "NNP" ], "linkage": [ "NN" ], "homo-hatred": [ "NN" ], "hatchings": [ "NNS" ], "reduced-instruction-set-computer": [ "JJ" ], "Aggregate": [ "JJ" ], "Heavily": [ "RB" ], "Credit-Card": [ "NN" ], "Amhowitz": [ "NNP" ], "gasped": [ "VBD" ], "Doug": [ "NNP" ], "germinated": [ "JJ" ], "homesickness": [ "NN" ], "Conversely": [ "RB", "NNP" ], "Sistine": [ "NNP" ], "pulleys": [ "NNS" ], "freakish": [ "JJ" ], "seizure": [ "NN" ], "arms-kickback": [ "NN" ], "Colmans": [ "NNPS" ], "refile": [ "VB" ], "Genscher": [ "NNP" ], "interrelations": [ "NNS" ], "constructively": [ "RB" ], "oblivious": [ "JJ" ], "refill": [ "NN", "VB" ], "zigzagging": [ "VBG" ], "Treasury-Fed": [ "NNP" ], "highpoint": [ "NN" ], "Erhart": [ "NNP" ], "high-visibility": [ "JJ", "NN" ], "unhappily": [ "RB" ], "Paw": [ "NN" ], "selloff": [ "NN" ], "drafting": [ "VBG", "NN", "NN|VBG" ], "accentuate": [ "VB" ], "Beers": [ "NNP" ], "ransacking": [ "VBG" ], "Smoot-Hawley": [ "NNP" ], "thoughtprovoking": [ "JJ" ], "warmth": [ "NN" ], "duties": [ "NNS" ], "poring": [ "JJ", "VBG" ], "cosmetology": [ "NN" ], "Teodorani": [ "NNP" ], "Coronado": [ "NNP" ], "Unincorporated": [ "NNP" ], "pejorative": [ "JJ" ], "high-yields": [ "NNS" ], "skinheads": [ "NNS" ], "applied": [ "VBN", "VBD", "VBD|VBN", "JJ" ], "chicanery": [ "NN" ], "harms": [ "VBZ", "NNS" ], "publicly": [ "RB" ], "Tenn.": [ "NNP" ], "Sicily": [ "NNP" ], "blue-green": [ "JJ" ], "unavailability": [ "NN" ], "Messengers": [ "NNPS" ], "Mechanicsburg": [ "NNP" ], "applies": [ "VBZ" ], "Wattenberg": [ "NNP" ], "hard-fought": [ "JJ" ], "soon-to-expire": [ "JJ" ], "Grinevsky": [ "NNP" ], "H.M.S.": [ "NNP" ], "Folmar": [ "NNP" ], "skipping": [ "VBG" ], "Virtually": [ "RB" ], "unproved": [ "JJ" ], "Ronkonkoma": [ "NNP" ], "grandiose": [ "JJ" ], "off-flavors": [ "NNS" ], "perform": [ "VB", "VBP" ], "trashing": [ "NN", "VBG" ], "above-noted": [ "JJ" ], "Revenge": [ "NN" ], "Harrisburg": [ "NNP", "NN" ], "Leming": [ "NNP" ], "sheltered": [ "VBN", "JJ" ], "Ike": [ "NNP", "NN" ], "incorrectly": [ "RB" ], "anti-Turkish": [ "JJ" ], "bunny": [ "NN" ], "crevices": [ "NNS" ], "Distance": [ "NNP" ], "Instituto": [ "NNP" ], "springing": [ "VBG" ], "Tichenor": [ "NNP" ], "non-poetry": [ "NN" ], "confiding": [ "VBG", "JJ" ], "Network-access": [ "JJ" ], "Prism": [ "NNP" ], "higher-than-anticipated": [ "JJ" ], "knockoff": [ "NN" ], "possibly": [ "RB" ], "burbles": [ "VBZ" ], "DeGeurin": [ "NNP" ], "FRANCHISE": [ "NN" ], "self-deceptions": [ "NNS" ], "unified": [ "JJ", "VBD", "VBN" ], "macaque": [ "JJ" ], "stringent": [ "JJ" ], "enslaving": [ "NN" ], "invalidate": [ "VB" ], "athletic": [ "JJ" ], "interrogatives": [ "NNS" ], "Missouri": [ "NNP" ], "ozonedepletion": [ "NN" ], "short-cut": [ "JJ" ], "Consistently": [ "RB" ], "quintessential": [ "JJ" ], "unifies": [ "VBZ" ], "Spike": [ "NNP" ], "crookery": [ "NN" ], "Nicos": [ "NNP" ], "Wanniski": [ "NNP" ], "Philippe": [ "NNP" ], "unique": [ "JJ", "NN" ], "Istanbul": [ "NNP" ], "Bismarckian": [ "JJ" ], "Philippi": [ "NNP" ], "exalt": [ "VBP", "VB" ], "multi-crystal": [ "JJ" ], "Bartoli": [ "NNP" ], "Castrol": [ "NNP" ], "Nail": [ "NNP" ], "Biologicals": [ "NNP" ], "Cima": [ "NNP" ], "editorials": [ "NNS" ], "boxed": [ "VBN" ], "sloganeering": [ "VBG" ], "Tampering": [ "VBG" ], "Britannica": [ "NNP" ], "boxes": [ "NNS" ], "ginnin": [ "VBG" ], "bastards": [ "NNS" ], "lymphoma": [ "NN" ], "Liverpudlians": [ "NNPS" ], "Trump": [ "NNP" ], "LeVecke": [ "NNP" ], "non-Catholic": [ "NNP", "JJ" ], "summer\\": [ "JJ" ], "proofreading": [ "VBG" ], "individual-investor": [ "NN", "JJ" ], "aimed": [ "VBN", "VBD" ], "Sybil": [ "NNP" ], "Caldwell": [ "NNP" ], "Ayer": [ "NNP" ], "Datsuns": [ "NNPS" ], "affied": [ "VBD" ], "Banque": [ "NNP" ], "criminology": [ "NN" ], "denies": [ "VBZ" ], "do-it-yourself": [ "JJ" ], "conservationists": [ "NNS" ], "Ex-Premier": [ "NNP" ], "Palmero": [ "NNP" ], "filming": [ "VBG" ], "indoctrination": [ "NN" ], "Tragically": [ "RB" ], "denied": [ "VBN", "VBD" ], "wineries": [ "NNS" ], "Mitsuru": [ "NNP" ], "sign-off": [ "NN" ], "Cross": [ "NNP", "NN" ], "sensationalism": [ "NN" ], "posh": [ "JJ" ], "copiously": [ "RB" ], "pose": [ "VB", "VBP", "NN" ], "confer": [ "VB", "VBP" ], "illustration": [ "NN" ], "Methuselah": [ "NNP", "VB" ], "sporting-goods": [ "NNS", "JJ" ], "post": [ "NN", "FW", "IN", "JJ", "VB", "VBD", "VBP" ], "Poyner": [ "NNP" ], "chafe": [ "VBP", "VB" ], "rearrange": [ "VB" ], "environmentalist-actor": [ "NN" ], "chaff": [ "NN" ], "rallying": [ "VBG", "JJ", "NN" ], "Einar": [ "NNP" ], "integrated-technologies": [ "NNS" ], "Malmros": [ "NNP" ], "months": [ "NNS" ], "accepts": [ "VBZ" ], "sizzling": [ "JJ", "VBG" ], "Cheetham": [ "NNP" ], "incur": [ "VB", "VBP" ], "octopus": [ "NN" ], "extrusions": [ "NNS" ], "soldiering": [ "NN" ], "military-service": [ "JJ" ], "non-books": [ "NNS" ], "ruefulness": [ "NN" ], "float": [ "VB", "NN", "VBP" ], "gearing": [ "VBG" ], "PUNITIVE": [ "JJ" ], "Bidard": [ "NNP" ], "zero-coupon": [ "JJ", "NN" ], "retrenching": [ "NN", "VBG" ], "Taos": [ "NNP" ], "strangely": [ "RB" ], "wan": [ "JJ" ], "Postels": [ "NNPS" ], "Specifications": [ "NNS", "NNP" ], "Grubman": [ "NNP" ], "truncated": [ "VBN", "JJ" ], "Africaine": [ "NNP" ], "Pa.": [ "NNP" ], "way": [ "NN", "RB" ], "fulminations": [ "NNS" ], "Elena": [ "NNP" ], "innovators": [ "NNS" ], "was": [ "VBD", ":" ], "Landowners": [ "NNS" ], "risk-benefited": [ "NN" ], "top-grade": [ "JJ" ], "broad-nibbed": [ "JJ" ], "pirouette": [ "NN" ], "Nalbone": [ "NNP" ], "becoming": [ "VBG", "NN" ], "sundry": [ "JJ" ], "forgetful": [ "JJ" ], "ring-around-the-rosie": [ "NN" ], "mysterious": [ "JJ" ], "Belleville": [ "NNP" ], "frost-bitten": [ "JJ" ], "secretary-treasurer": [ "NN" ], "comprehending": [ "VBG" ], "bypassing": [ "VBG" ], "plenitude": [ "NN" ], "Reykjavik": [ "NNP" ], "anti-hypertensive": [ "JJ" ], "invincible": [ "JJ" ], "Witherspoon": [ "NNP" ], "flirtatious": [ "JJ" ], "Seisakusho": [ "NNP" ], "attuned": [ "VBN", "JJ" ], "gulley": [ "NN" ], "winery": [ "NN" ], "Lautner": [ "NNP" ], "emit": [ "VB", "VBP" ], "renaturation": [ "NN" ], "promises": [ "VBZ", "NNS" ], "Mfg.": [ "NNP" ], "nudity": [ "NN" ], "Rona": [ "NNP" ], "Rong": [ "NNP" ], "muscular": [ "JJ" ], "assassinations": [ "NNS" ], "moors": [ "NNS" ], "promised": [ "VBD", "JJ", "VBN" ], "Milacron": [ "NNP" ], "Bendix\\/King": [ "NNP" ], "Fledgling": [ "NN" ], "incursion": [ "NN" ], "non-economists": [ "NNS" ], "loan-defaulters": [ "NNS" ], "Donald": [ "NNP" ], "corporate-settlement": [ "NN" ], "horse-chestnut": [ "NN" ], "fair-sized": [ "JJ" ], "hero-worship": [ "NN" ], "autonomic": [ "JJ" ], "brothers": [ "NNS" ], "multiple-choice": [ "JJ" ], "juices": [ "NNS" ], "Hillsdale": [ "NNP" ], "remarrying": [ "NN" ], "Pre-trial": [ "JJ" ], "reflexes": [ "NNS" ], "Morishita": [ "NNP" ], "red-tailed": [ "JJ" ], "Dalian": [ "NNP" ], "pacer": [ "NN" ], "paces": [ "NNS" ], "necessitates": [ "VBZ" ], "Rachwalski": [ "NNP" ], "classmate": [ "NN" ], "pacem": [ "FW" ], "necessitated": [ "VBN", "VBD" ], "longshoreman": [ "NN" ], "precedent": [ "NN", "JJ" ], "paced": [ "VBD", "VBN" ], "Goldome": [ "NNP" ], "anti-state": [ "JJ" ], "Gotham": [ "VB" ], "Gevergeyev": [ "NNP" ], "thrift-fraud": [ "JJ", "NN" ], "Disclosed": [ "VBN" ], "reigniting": [ "VBG" ], "small-diameter": [ "JJ" ], "A.W.": [ "NNP" ], "Cadiz": [ "NNP" ], "certainly": [ "RB" ], "factories": [ "NNS" ], "mail-processing": [ "JJ" ], "kennings": [ "NNS" ], "Solna": [ "NNP" ], "seven-shot": [ "JJ" ], "compensate": [ "VB", "VBP" ], "unhappiest": [ "JJS" ], "gelatin-like": [ "JJ" ], "text": [ "NN" ], "southwest": [ "RB", "JJ", "NN", "JJS" ], "division": [ "NN" ], "Segundo": [ "NNP" ], "Arbitraging": [ "VBG" ], "diddling": [ "VBG" ], "high-water": [ "JJ" ], "ferociously": [ "RB" ], "videocassettes": [ "NNS" ], "kitten": [ "NN" ], "hotly": [ "RB" ], "stolid-looking": [ "JJ" ], "Jersey": [ "NNP" ], "Rak": [ "NNP" ], "pinhead": [ "NN" ], "consorted": [ "VBD" ], "respiratory": [ "JJ" ], "Leningrad": [ "NNP", "VB" ], "presented": [ "VBN", "VBD" ], "respirators": [ "NNS" ], "offender": [ "NN" ], "Nakajima": [ "NNP" ], "Duchess": [ "NNP" ], "presenter": [ "NN" ], "insider-selling": [ "NN" ], "Lobbyists": [ "NNS" ], "full-grown": [ "JJ" ], "Trempler": [ "NNP" ], "car-care": [ "JJ" ], "affiliation": [ "NN" ], "self-insure": [ "VBP" ], "Croissier": [ "NNP" ], "Finding": [ "VBG", "NNP" ], "helpless": [ "JJ" ], "perusing": [ "VBG" ], "Teito": [ "NNP" ], "enticing": [ "VBG", "JJ" ], "LEADERS": [ "NNS" ], "three-page": [ "JJ" ], "COMPANY": [ "NN", "NNP" ], "Wherefore": [ "NN", "IN" ], "uniform": [ "NN", "JJ" ], "Fahd": [ "NNP" ], "Prizes": [ "NNPS", "NNP" ], "Demonstrating": [ "VBG" ], "illustrations": [ "NNS" ], "time-consuming": [ "JJ" ], "Along": [ "IN", "RB" ], "dental": [ "JJ", "NN" ], "Minorco": [ "NNP" ], "Molten": [ "JJ" ], "frothing": [ "VBG", "NN" ], "Summa": [ "NNP" ], "Experiencing": [ "VBG" ], "mellifluous": [ "JJ" ], "Yucatan": [ "NNP" ], "Harch": [ "NNP" ], "Raw": [ "JJ" ], "re-examine": [ "VB" ], "Slope": [ "NNP" ], "Alix": [ "NNP" ], "exemption": [ "NN" ], "concurred": [ "VBD", "VBN" ], "flames": [ "NNS" ], "sold-out": [ "JJ" ], "Rivers": [ "NNPS", "NNP", "NNS" ], "flamed": [ "VBD", "VBN" ], "single-crystal": [ "NN" ], "Blackboard": [ "NNP" ], "IND": [ "NNP" ], "Rivera": [ "NNP" ], "INB": [ "NNP" ], "INC": [ "NNP" ], "snatching": [ "VBG" ], "fundamentalist": [ "JJ", "NN" ], "bar-staged": [ "JJ" ], "die-dead": [ "NN" ], "paragon": [ "NN" ], "Tic-Tac-Toe": [ "NNP" ], "sufferers": [ "NNS" ], "capacious": [ "JJ" ], "plastic-products": [ "NNS" ], "Orchestre": [ "NNP" ], "Maung": [ "NNP" ], "bluffing": [ "VBG" ], "Tokio": [ "NNP" ], "ripening": [ "VBG", "JJ" ], "Belorussian": [ "NNP" ], "balking": [ "VBG" ], "selects": [ "VBZ" ], "auto-sales": [ "NNS" ], "dramatizing": [ "VBG" ], "F": [ "NN", "LS", "NNP" ], "Orchestra": [ "NNP", "NN" ], "Inspired": [ "VBN" ], "Hachiya": [ "NNP" ], "throbbed": [ "VBD" ], "mass-production": [ "NN" ], "CAT": [ "NNP", "NN" ], "SARK": [ "NNP" ], "PIPELINE": [ "NNP" ], "migrants": [ "NNS" ], "Prix": [ "NNP" ], "Moe": [ "NNP" ], "pink-cheeked": [ "JJ" ], "heart": [ "NN", "RB", "VB" ], "hears": [ "VBZ" ], "attribute": [ "VBP", "NN", "VB" ], "stoutly": [ "RB" ], "heare": [ "VBP", "VB" ], "heard": [ "VBN", "VBD" ], "Stephane": [ "NNP" ], "Sasea": [ "NNP" ], "wardroom": [ "NN" ], "restitution": [ "NN" ], "Multinational": [ "JJ", "NNP" ], "war-time": [ "JJ" ], "scrimmaged": [ "VBD" ], "White-collar": [ "JJ" ], "dispositions": [ "NNS" ], "SONG": [ "NNP", "NN" ], "unwritten": [ "JJ" ], "Lillian": [ "NNP" ], "flank": [ "NN" ], "Gain": [ "NN", "VB", "NNP" ], "Radio-television": [ "NN", "NNP" ], "Gail": [ "NNP" ], "upper-management": [ "NN" ], "over-magazined": [ "VBN" ], "dominance": [ "NN" ], "nonstop": [ "JJ", "NN", "RB" ], "post-fray": [ "RB" ], "whacked": [ "VBD", "VBN" ], "shooter": [ "NN" ], "Always": [ "RB", "NNP" ], "bi-polar": [ "JJ" ], "residues": [ "NNS" ], "whacker": [ "NN" ], "pasting": [ "VBG", "NN" ], "Robles": [ "NNP" ], "betel-stained": [ "JJ" ], "Viet": [ "NNP" ], "non-toxic": [ "JJ" ], "View": [ "NNP", "NN" ], "High-Grade": [ "NNP" ], "affronting": [ "VBG" ], "accelerates": [ "VBZ" ], "beam": [ "NN", "VB" ], "Toss": [ "VB" ], "trumpets": [ "NNS", "VBZ" ], "MultiMedia": [ "NNP" ], "accelerated": [ "VBN", "JJ", "VBD" ], "reaffirmed": [ "VBD", "VBN" ], "LeSourd": [ "NNP" ], "worsens": [ "VBZ" ], "Tose": [ "NNP" ], "Impressed": [ "VBN" ], "Recovery": [ "NNP", "NN" ], "misapplication": [ "NN" ], "non-subsidized": [ "JJ" ], "Texoma": [ "NNP" ], "displayed": [ "VBN", "VBD" ], "Acushnet": [ "NNP" ], "bewitching": [ "VBG" ], "playful": [ "JJ" ], "cotter": [ "NN" ], "Genetic": [ "NNP", "JJ" ], "gauze": [ "NN" ], "statistical": [ "JJ" ], "Combses": [ "NNPS" ], "vocation": [ "NN" ], "forma": [ "FW" ], "DEBT": [ "NN" ], "Wain": [ "NNP" ], "willow": [ "NN" ], "homogenization": [ "NN" ], "hewed": [ "VBD", "VBN" ], "forms": [ "NNS", "VBZ" ], "exacerbates": [ "VBZ" ], "gaging": [ "NN" ], "unlovely": [ "JJ" ], "Yizi": [ "NNP" ], "explains.": [ "VBZ" ], "newspaper-industry": [ "JJ" ], "chattering": [ "VBG", "NN" ], "pruned": [ "VBN", "VBD" ], "risk-fraught": [ "JJ" ], "Vasquez": [ "NNP" ], "rake": [ "NN", "VB", "VBP" ], "fuzzy": [ "JJ" ], "brutes": [ "NNS" ], "transmissions": [ "NNS" ], "prunes": [ "NNS" ], "unimpressive": [ "JJ" ], "slippage": [ "NN" ], "ex-gambler": [ "NN" ], "Pacwest": [ "NNP" ], "raku": [ "NN" ], "balance-of-payments": [ "NNS", "JJ" ], "enacted": [ "VBN", "VBD" ], "done-unto": [ "JJ" ], "Musicale": [ "NNP" ], "ENGLAND": [ "NNP" ], "Uhles": [ "NNP" ], "now-infamous": [ "JJ" ], "bursts": [ "NNS", "VBZ" ], "Robby": [ "NNP" ], "price-valuation": [ "NN" ], "INTERPUBLIC": [ "NNP" ], "anti-morning-sickness": [ "JJ" ], "flood-ravaged": [ "JJ" ], "License": [ "NN" ], "Victoire": [ "NNP" ], "carryovers": [ "NNS" ], "brown-black": [ "JJ" ], "Abra": [ "NNP" ], "pills": [ "NNS" ], "Sedona": [ "NNP" ], "hand-held": [ "JJ" ], "higher-caffeine": [ "JJ" ], "defendants": [ "NNS" ], "Masque": [ "NNP" ], "whitewalled": [ "JJ" ], "looking": [ "VBG", "JJ", "NN" ], "navigating": [ "VBG" ], "Corbehem": [ "NNP" ], "Mo.": [ "NNP" ], "dreamin": [ "NN" ], "Spitler": [ "NNP" ], "thong": [ "NN" ], "VAXstation": [ "NNP" ], "Alcoa": [ "NNP" ], "Menahem": [ "NNP" ], "Chinese-American-Canadian": [ "JJ" ], "Boxwood": [ "NNP" ], "Broadway": [ "NNP", "NN" ], "repurchase": [ "NN", "VBD", "VBN", "JJ", "VB" ], "obligation": [ "NN" ], "plodded": [ "VBD", "VBN" ], "zig-zag": [ "VBP" ], "Calloused": [ "JJ" ], "Hillhaven": [ "NNP" ], "PIPELINES": [ "NNPS" ], "snakestrike": [ "NN" ], "selections": [ "NNS" ], "trade-clearing": [ "JJ" ], "deprivation": [ "NN" ], "Herbig": [ "NNP" ], "double-edged": [ "JJ" ], "Likins": [ "NNP" ], "Detailed": [ "VBN" ], "rum-tum-tum": [ "JJ" ], "Hungary": [ "NNP", "JJ" ], "profess": [ "VBP", "VB" ], "warning": [ "NN", "VBG" ], "Tregnums": [ "NNPS" ], "sarcastically": [ "RB" ], "Lojack": [ "NNP" ], "under-secretary": [ "NN" ], "KLM-controlled": [ "JJ" ], "wage-earning": [ "JJ" ], "enjoining": [ "VBG" ], "Dares": [ "NNP" ], "directly": [ "RB" ], "Bentleys": [ "NNPS" ], "deadlocked": [ "VBN", "JJ" ], "weds": [ "VBZ" ], "slaked": [ "VBN", "JJ" ], "avail": [ "NN", "VB" ], "Millipore": [ "NNP" ], "Investigations": [ "NNS", "NNPS", "NNP" ], "cortically": [ "RB" ], "collimated": [ "VBN" ], "Prepared": [ "JJ" ], "solstice": [ "NN" ], "Hachette": [ "NNP" ], "tragic": [ "JJ", "NN" ], "yip": [ "NN" ], "expounding": [ "VBG" ], "taxation": [ "NN" ], "workstation": [ "NN" ], "prescribers": [ "NNS" ], "Shutter": [ "NNP" ], "Osterman": [ "NNP" ], "patriarch": [ "NN" ], "stratospheric": [ "JJ" ], "Coors": [ "NNP", "NNS" ], "Euphoria": [ "NNP" ], "indisputable": [ "JJ" ], "tokenish": [ "JJ" ], "Mears": [ "NNP" ], "index-related": [ "JJ" ], "Toyko": [ "NNP" ], "Wambui": [ "NNP" ], "Commissary": [ "NNP" ], "Perot": [ "NNP" ], "Ginghams": [ "NNS" ], "punched-card": [ "JJ" ], "movingly": [ "RB" ], "Kingsville": [ "NNP" ], "Therapeutics": [ "NNPS", "NNP" ], "surfeited": [ "VBN" ], "Purdy": [ "NNP" ], "investors": [ "NNS", "NNPS" ], "aspersion": [ "NN" ], "slaw": [ "NN" ], "slat": [ "NN" ], "Philadelphia": [ "NNP" ], "slap": [ "VB", "NN" ], "Perella": [ "NNP" ], "TRIAL": [ "NN" ], "ideologists": [ "NNS" ], "slam": [ "NN", "VBP", "VB" ], "slag": [ "NN" ], "Main": [ "NNP", "JJ" ], "slab": [ "NN", "JJ" ], "Naples": [ "NNP" ], "SEEKING": [ "VBG" ], "LOSSES": [ "NNS" ], "overcoming": [ "VBG" ], "wassail": [ "NN" ], "fiber-reinforced": [ "JJ" ], "hide-out": [ "JJ", "NN" ], "tigers": [ "NNS" ], "Garpian": [ "JJ" ], "Wappinger": [ "NNP" ], "plaster": [ "NN" ], "Pachyderms": [ "NNPS" ], "Mackinack": [ "NNP" ], "common-sensical": [ "JJ" ], "Constantine": [ "NNP" ], "three-times": [ "JJ" ], "underemployed": [ "JJ" ], "Constantino": [ "NNP" ], "hurler": [ "NN" ], "Truman": [ "NNP", "NN" ], "Steamed": [ "VBN" ], "renal": [ "JJ" ], "appraisals": [ "NNS" ], "sidekick": [ "NN" ], "polyvinyl": [ "NN", "JJ" ], "Vader": [ "NNP" ], "stop-shipment": [ "JJ" ], "Goldberg": [ "NNP" ], "hurled": [ "VBD", "VBN" ], "Preface": [ "NNP" ], "typically": [ "RB" ], "jewelers": [ "NNS" ], "jewelery": [ "NN" ], "resurrecting": [ "VBG" ], "nuclear-bomb": [ "NN" ], "earthworm": [ "NN" ], "molars": [ "NNS" ], "Femmes": [ "NNP" ], "Pascal": [ "NNP" ], "fifth": [ "JJ", "NN", "RB" ], "upgrade": [ "VB", "JJ", "NN" ], "scatterbrained": [ "JJ" ], "stained": [ "VBN", "JJ", "VBD" ], "jolt": [ "NN", "VB" ], "overruns": [ "NNS" ], "Majdanek": [ "NNP" ], "only": [ "RB", "IN", "JJ" ], "Inuit": [ "NNP" ], "blockading": [ "VBG" ], "Fuhrmann": [ "NNP" ], "malcontent": [ "NN" ], "phased": [ "VBN", "VBD" ], "televisions": [ "NNS" ], "Camp": [ "NNP", "NN" ], "recuperation": [ "NN" ], "Evident": [ "JJ" ], "cannon": [ "NN", "NNS" ], "rehear": [ "VB" ], "Pauson": [ "NNP" ], "truly": [ "RB" ], "loath": [ "JJ" ], "cannot": [ "MD" ], "symmetrically": [ "RB" ], "unfastened": [ "VBD" ], "manuscripts": [ "NNS" ], "celebrate": [ "VB", "VBP" ], "disentangling": [ "VBG" ], "Fehr": [ "NNP" ], "morphophonemics": [ "NNS" ], "Kanter": [ "NNP" ], "imbecile": [ "NN" ], "preempt": [ "VB" ], "Encouragement": [ "NNP", "NN" ], "keyed": [ "VBN", "JJ" ], "overworked": [ "VBN", "JJ" ], "losers": [ "NNS" ], "pre-cast": [ "JJ" ], "Clarinet": [ "NN" ], "S.A.F.E.": [ "NNP" ], "Arbor": [ "NNP" ], "Hauer": [ "NNP" ], "WPPSS": [ "NNP" ], "Crew": [ "NN", "NNP" ], "elected": [ "VBN", "JJ", "VBD" ], "Naiman": [ "NNP" ], "afoul": [ "RB" ], "hell": [ "NN", "UH" ], "culpable": [ "JJ" ], "Veilleux": [ "NNP" ], "sport": [ "NN", "JJ", "VBP" ], "Cree": [ "NNP" ], "loudspeaker": [ "NN" ], "symbolists": [ "NNS" ], "palette": [ "NN" ], "swankier": [ "JJR" ], "disppointed": [ "JJ" ], "vanguard": [ "NN" ], "momentoes": [ "NNS" ], "Mikhail": [ "NNP" ], "Minero": [ "NNP" ], "between": [ "IN", "RB" ], "snuffboxes": [ "NNS" ], "H.E.": [ "NNP" ], "Minera": [ "NNP" ], "government-insured": [ "JJ" ], "import-restricting": [ "JJ" ], "Target": [ "NNP", "NN" ], "Roulet": [ "NNP" ], "queerest": [ "JJS" ], "Burmese": [ "JJ", "NNP", "NNS" ], "re-educate": [ "VB" ], "comeback": [ "NN" ], "perceptions": [ "NNS" ], "installation": [ "NN" ], "taxpayer": [ "NN" ], "crisper": [ "NN" ], "reinterpreted": [ "VBN" ], "hypoglycemic": [ "JJ" ], "hypoglycemia": [ "NN" ], "monk": [ "NN" ], "enabling": [ "VBG" ], "trichloroethylene": [ "NN" ], "Okasan": [ "NNP" ], "buy-back": [ "NN", "NN|JJ", "JJ", "VB" ], "home-produced": [ "JJ" ], "underwritings": [ "NNS" ], "Viale": [ "NNP" ], "Englishman": [ "NNP", "NN" ], "overview": [ "NN" ], "Viall": [ "NNP" ], "Eager": [ "JJ", "NNP" ], "mini-flap": [ "NN" ], "Journalist": [ "NNP" ], "Midwest": [ "NNP", "JJS", "JJ", "NN" ], "Anatol": [ "NNP" ], "reliables": [ "NNS" ], "Depending": [ "VBG" ], "informed": [ "VBN", "VBD", "JJ" ], "markedly": [ "RB" ], "maladroit": [ "JJ" ], "Melanie": [ "NNP" ], "Schools": [ "NNP", "NNPS", "NNS" ], "informer": [ "JJ" ], "Gortari": [ "NNP" ], "patriarchal": [ "JJ" ], "Berth": [ "NNP" ], "Berto": [ "NNP" ], "Posts": [ "VBZ", "NNP" ], "coccidiosis": [ "NN" ], "budget-hotel": [ "NN" ], "Berte": [ "NNP" ], "abridging": [ "VBG" ], "pilot-dominated": [ "JJ" ], "realities": [ "NNS" ], "Arterial": [ "JJ" ], "Arbitrary": [ "NNP" ], "prehistoric": [ "JJ" ], "LEHMAN": [ "NNP" ], "these": [ "DT" ], "wealthiest": [ "JJS" ], "accommodating": [ "VBG" ], "trick": [ "NN", "VB" ], "Scorecard": [ "NNP" ], "notoriety": [ "NN" ], "crumbly": [ "JJ" ], "jaywalkers": [ "NNS" ], "Bussey": [ "NNP" ], "chain-reaction": [ "NN" ], "orientation": [ "NN" ], "erned": [ "VBD" ], "Middleman": [ "NN" ], "MKI": [ "NNP" ], "Heigh-ho": [ "UH" ], "canceled": [ "VBN", "VBD", "VBN|JJ", "JJ" ], "Nissho": [ "NNP" ], "eras": [ "NNS" ], "Gyula": [ "NNP" ], "Flugel": [ "NNP" ], "thrills": [ "NNS", "VBZ" ], "short-sell": [ "VB" ], "remote-control": [ "JJ" ], "unshakable": [ "JJ" ], "Muni": [ "JJ" ], "Whiteleaf": [ "NNP" ], "Munk": [ "NNP" ], "dead-eyed": [ "JJ" ], "intelligently": [ "RB" ], "figuring": [ "VBG" ], "Caron": [ "NNP" ], "Carol": [ "NNP" ], "Meriwether": [ "NNP" ], "extravaganza": [ "NN" ], "numerals": [ "NNS" ], "ominously": [ "RB" ], "closest": [ "JJS" ], "salmon-colored": [ "JJ" ], "universe-shaking": [ "JJ" ], "ELECTIONS": [ "NNS" ], "favorites": [ "NNS" ], "Dasibi": [ "NNP" ], "Enoch": [ "NNP" ], "racketeering": [ "NN", "VBG" ], "mistrials": [ "NNS" ], "vertical-restraints": [ "NNS" ], "nobly": [ "RB" ], "complained": [ "VBD", "VBN" ], "Makro": [ "NNP" ], "AVOIDED": [ "VBD" ], "cockier": [ "JJR" ], "alfresco": [ "JJ", "NN", "RB" ], "bondage": [ "NN" ], "Aida": [ "NNP" ], "recurrently": [ "RB" ], "Tektronix": [ "NNP" ], "severe": [ "JJ" ], "take-or-pay": [ "JJ" ], "miscellany": [ "NN" ], "peripherals": [ "NNS" ], "Aids": [ "NNS", "VBZ" ], "yellow-gray": [ "JJ" ], "Premner": [ "NNP" ], "schoolers": [ "NNS" ], "household-type": [ "JJ" ], "entertainments": [ "NNS" ], "Nassau-Suffolk": [ "NNP" ], "transmitting": [ "VBG", "NN" ], "shouts": [ "VBZ", "NNS" ], "Reuven": [ "NNP" ], "Examination": [ "NN", "NNP" ], "imparting": [ "VBG" ], "Liang": [ "NNP" ], "ounces": [ "NNS", "NN" ], "crimsoning": [ "VBG" ], "crime-ridden": [ "JJ" ], "Asilone": [ "NNP" ], "Davidow": [ "NNP" ], "domicile": [ "NN" ], "mirrored": [ "VBN", "VBD" ], "Adriatic": [ "NNP" ], "Technik": [ "NNP" ], "Koor": [ "NNP" ], "Spielvogel": [ "NNP" ], "Koop": [ "NNP" ], "Abruptly": [ "RB" ], "Knuettel": [ "NNP" ], "spectacular": [ "JJ" ], "dollar-priced": [ "JJ" ], "repetitions": [ "NNS" ], "Headquarters": [ "NNP", "NNS", "NN" ], "stools": [ "NNS" ], "Project": [ "NNP", "NN" ], "Bakery": [ "NNP" ], "overlooks": [ "VBZ" ], "SHOWY": [ "JJ" ], "coolants": [ "NNS" ], "capital-formation": [ "NN" ], "recipient": [ "JJ", "NN" ], "Creditors": [ "NNS" ], "Photek": [ "NNP" ], "Lubell": [ "NNP" ], "proponent": [ "NN" ], "Smaller": [ "JJR" ], "Southhampton": [ "NNP" ], "utterances": [ "NNS" ], "Forecaster": [ "NNP" ], "collective": [ "JJ", "NN" ], "Langeland": [ "NNP" ], "miracle": [ "NN" ], "Agro": [ "NNP" ], "t": [ "NN" ], "Agri": [ "NNP" ], "crooner": [ "NN" ], "parental-leave": [ "JJ" ], "Mare": [ "NNP", "NN" ], "Schmotter": [ "NNP" ], "Mara": [ "NNP" ], "circumscribing": [ "VBG" ], "Marc": [ "NNP" ], "Sokolsky": [ "NNP" ], "Mark": [ "NNP", "NN", "VB" ], "Mart": [ "NNP" ], "floating-load": [ "JJ" ], "Comdisco": [ "NNP" ], "Kleissas": [ "NNP" ], "Marr": [ "NNP" ], "Mars": [ "NNP" ], "Marx": [ "NNP" ], "enacting": [ "VBG" ], "DHAWK": [ "NNP" ], "government-approved": [ "JJ" ], "passions": [ "NNS" ], "Fiber": [ "NNP", "NN" ], "Khrush": [ "NNP" ], "Lilliputian": [ "JJ" ], "Yakima": [ "NNP" ], "rubfests": [ "NNS" ], "On-Target": [ "NNP" ], "business-telephone": [ "JJ" ], "Ranks": [ "NNP" ], "reverberating": [ "VBG" ], "Smart": [ "NNP", "JJ" ], "Pincavage": [ "NNP" ], "ethos": [ "NN" ], "Ricci": [ "NNP" ], "unplumbed": [ "JJ" ], "Spokane": [ "NNP" ], "Stranger": [ "JJR" ], "equivalent": [ "NN", "JJ" ], "Ponchielli": [ "NNP" ], "balked": [ "VBD", "VBN" ], "Lateiner": [ "NNP" ], "leftover": [ "JJ" ], "habe": [ "FW" ], "electric-utility": [ "JJ", "NN" ], "confederations": [ "NNS" ], "Marcellus": [ "NNP" ], "NBC-TV": [ "NNP" ], "sabers-along": [ "IN" ], "tremendous": [ "JJ" ], "escalating": [ "VBG" ], "Spogli": [ "NNP" ], "Salesman": [ "NN" ], "Rushforth": [ "NNP" ], "Bags": [ "NNS" ], "inclusion": [ "NN" ], "sedulously": [ "RB" ], "Ferrofluidics": [ "NNP" ], "Bagh": [ "NNP" ], "lob": [ "VB" ], "supervising": [ "VBG" ], "log": [ "NN", "VB", "VBP" ], "ChemPlus": [ "NNP" ], "GOVERNMENT": [ "NN" ], "by-laws": [ "NNS" ], "Soyuzgoscirk": [ "NNP" ], "Philosophies": [ "NNP" ], "lop": [ "JJ" ], "Cookie": [ "NNP" ], "NUMBERS": [ "NNS" ], "lot": [ "NN", "RB", "JJ" ], "Shribman": [ "NNP" ], "focus-group": [ "JJ" ], "Tsarism": [ "NNP" ], "seismographic": [ "JJ" ], "axioms": [ "NNS" ], "groan": [ "NN" ], "drains": [ "NNS", "VBZ" ], "Slovenian": [ "JJ" ], "Booz-Allen": [ "NNP" ], "Tillich": [ "NNP" ], "Deposits-a": [ "NNP", "NNS", "NNPS", "NNS|LS" ], "Ragged": [ "JJ" ], "Rence": [ "NNP" ], "Stall": [ "NN" ], "Stalk": [ "NNP" ], "proclivities": [ "NNS" ], "Stale": [ "JJ" ], "Renck": [ "NNP" ], "Kornick": [ "NNP" ], "bellows": [ "VBZ", "NN" ], "Coal": [ "NNP", "NN" ], "Century": [ "NNP", "NN" ], "interiors": [ "NNS" ], "Airlie": [ "NNP" ], "Pogue": [ "NNP" ], "McCarthy": [ "NNP" ], "second-consecutive": [ "JJ" ], "Boarts": [ "NNP" ], "Confuted": [ "NNP" ], "Williamsesque": [ "JJ" ], "beliefs": [ "NNS" ], "mioxidil": [ "NN" ], "RU-486": [ "NNP", "NN" ], "illnesses": [ "NNS" ], "Judges": [ "NNS", "NNPS", "NNP" ], "Asks": [ "VBZ" ], "statesmanlike": [ "JJ" ], "alternative...": [ ":" ], "Seaborg": [ "NNP" ], "Ponkob": [ "NNP" ], "Junor": [ "NNP" ], "Aska": [ "NNP", "NN" ], "trickled": [ "VBN" ], "inclusiveness": [ "NN" ], "N.E.": [ "NNP" ], "home-city": [ "NN" ], "corporatewide": [ "JJ" ], "Adonis": [ "NNP" ], "masers": [ "NNS" ], "Nazi-minded": [ "JJ" ], "milking": [ "VBG" ], "woeful": [ "JJ" ], "Intense": [ "JJ" ], "Tegretol": [ "NNP" ], "COPPER": [ "NN", "NNP" ], "non-direct": [ "JJ" ], "Country": [ "NNP", "NN" ], "pear": [ "NN" ], "peas": [ "NNS" ], "Hyena": [ "NN" ], "peal": [ "NN" ], "preconditions": [ "NNS" ], "peak": [ "NN", "VBP", "JJ", "VB" ], "turnaround\\/takeover": [ "JJR" ], "single-B-plus": [ "JJ" ], "Pharmacies": [ "NNS" ], "tendencies": [ "NNS" ], "fiscal": [ "JJ", "IN", "NN" ], "assert": [ "VB", "VBP" ], "inevitability": [ "NN" ], "Tropics": [ "NNPS" ], "bystander": [ "NN" ], "requisition": [ "NN", "VB" ], "Jimenez": [ "NNP" ], "chauffeur-driven": [ "JJ" ], "Tugaru": [ "NN" ], "Gorshek": [ "NNP" ], "detonating": [ "VBG" ], "side-crash": [ "JJ" ], "precondition": [ "NN" ], "November-December": [ "NNP" ], "Damage": [ "NN" ], "quake-related": [ "JJ" ], "publish": [ "VB", "VBP" ], "copyrighted": [ "VBN" ], "rectlinearly": [ "RB" ], "Renton": [ "NNP" ], "Potpourri": [ "NNS" ], "victoriously": [ "RB" ], "missile-type": [ "JJ" ], "fizzles": [ "VBZ" ], "glitzy": [ "JJ", "NN" ], "backpedaling": [ "VBG" ], "Marie-Louise": [ "NNP" ], "Nowacki": [ "NNP" ], "pretreatment": [ "NN|JJ" ], "Ella": [ "NNP" ], "Elle": [ "NNP" ], "foster": [ "VB", "JJ" ], "erects": [ "VBZ" ], "fizzled": [ "VBD", "VBN" ], "fervor": [ "NN" ], "Costar": [ "NNP" ], "dominated": [ "VBN", "VBD" ], "Passavant": [ "NNP" ], "viaduct": [ "NN" ], "Alligood": [ "NNP" ], "sub-surface": [ "NN" ], "supercomputer": [ "NN" ], "screwdriver": [ "NN" ], "Appealing": [ "VBG" ], "Posix": [ "NNP" ], "Bowling": [ "NNP" ], "rehearing": [ "NN" ], "crocodile": [ "NN" ], "deficient": [ "JJ" ], "Barnett": [ "NNP" ], "Waltana": [ "NNP" ], "Oakes": [ "NNP" ], "father-brother": [ "NN" ], "Reyes-Requena": [ "NNP" ], "gardener": [ "NN" ], "libeled": [ "VBN" ], "relenting": [ "VBG" ], "neoprene": [ "NN" ], "trumpeting": [ "VBG" ], "vulpine": [ "JJ" ], "cookies": [ "NNS" ], "code-named": [ "VBN", "NNP", "JJ" ], "palazzos": [ "NNS" ], "somberly": [ "RB" ], "WHOOPS": [ "NNP" ], "unheard": [ "JJ" ], "microsurgery": [ "NN" ], "decriminalized": [ "VBN", "JJ" ], "above-normal": [ "JJ" ], "promotes": [ "VBZ" ], "MARKET": [ "NNP", "NN" ], "rator": [ "NN" ], "gether": [ "VB" ], "insomniacs": [ "NNS" ], "Totally": [ "RB" ], "acknowledgments": [ "NNS" ], "Cambrian": [ "NNP" ], "dolledup": [ "JJ" ], "vet": [ "NN" ], "tholins": [ "NNS" ], "determinism": [ "NN" ], "white-knight": [ "NN" ], "Rowman": [ "NNP" ], "handwriting": [ "NN" ], "round-table": [ "JJ" ], "invitational": [ "JJ" ], "Cane": [ "NNP", "NN" ], "Jews": [ "NNPS", "NNP", "NNS" ], "Cano": [ "NNP" ], "vegetarian": [ "JJ" ], "Podgers": [ "NNS" ], "whine": [ "NN", "VB" ], "Tucson": [ "NNP" ], "pro-Gorbachev": [ "JJ" ], "threemonth": [ "JJ" ], "Milledgeville": [ "NNP" ], "Nelms": [ "NNP" ], "Madding": [ "NNP" ], "Gantry": [ "NNP" ], "family": [ "NN" ], "mini-slip": [ "NN" ], "courtier": [ "NN" ], "fatuous": [ "JJ" ], "REN": [ "NNP" ], "lurked": [ "VBD" ], "Animal": [ "NN", "NNP" ], "gunmen": [ "NNS" ], "Studebaker": [ "NNP" ], "taker": [ "NN" ], "takes": [ "VBZ" ], "relegated": [ "VBN", "VBD" ], "one-day": [ "JJ" ], "gunflint": [ "NN" ], "slants": [ "VBZ", "NNS" ], "abstaining": [ "VBG" ], "shotguns": [ "NNS" ], "non-objective": [ "JJ" ], "oil-producing": [ "JJ", "NN" ], "Ozark": [ "NNP" ], "Shahon": [ "NNP" ], "taken": [ "VBN", "VBG" ], "Korando": [ "NNP" ], "theatregoer": [ "NN" ], "chestnut": [ "NN" ], "holier-than-thou": [ "JJ" ], "overbuilt": [ "JJ", "NN" ], "excuse": [ "NN", "VBP", "VB" ], "Castings": [ "NNP" ], "J.A.": [ "NNP" ], "slouchy": [ "JJ" ], "RFM": [ "NNP" ], "gauche": [ "JJ" ], "Australian-American": [ "JJ" ], "Diocese": [ "NNP" ], "gaucho": [ "NN" ], "latching": [ "VBG" ], "dromozoa": [ "NNS" ], "Privatization": [ "NN", "NNP" ], "Comfortably": [ "RB" ], "geologically": [ "RB" ], "Pentecostal": [ "NNP" ], "Hoexum": [ "NNP" ], "visage": [ "NN" ], "anti-pollution": [ "JJ" ], "Munger": [ "NNP" ], "stinging": [ "JJ", "NN", "VBG" ], "brazenly": [ "RB" ], "Liberated": [ "VBN", "NNP" ], "three-sectioned": [ "JJ" ], "ectoplasmic": [ "JJ" ], "cows": [ "NNS" ], "magenta": [ "JJ", "NN" ], "species": [ "NN", "NNS" ], "gaffes": [ "NNS" ], "Federation": [ "NNP", "NN" ], "grammar-school": [ "NN" ], "Polaris": [ "NNP", "NN", "JJ" ], "exponentially": [ "RB" ], "Dismay": [ "NN" ], "finality": [ "NN" ], "Daisy": [ "NNP" ], "remediation": [ "NN" ], "non-religious": [ "JJ" ], "Staunton": [ "NNP" ], "informants": [ "NNS" ], "Hanfsaengl": [ "NNP" ], "racetrack": [ "NN" ], "coated-magnetic": [ "JJ" ], "beardless": [ "JJ" ], "dread": [ "NN", "JJ" ], "microseconds": [ "NNS" ], "banks": [ "NNS", "VBZ" ], "dispersing": [ "VBG" ], "redcoat": [ "NN" ], "dream": [ "NN", "VB", "VBP" ], "Dian": [ "NNP" ], "Dial": [ "NNP" ], "woomera": [ "NN" ], "materialistic": [ "JJ" ], "Cartagena": [ "NNP" ], "bich": [ "NN" ], "urine": [ "NN" ], "skinning": [ "NN" ], "out-of-state": [ "JJ" ], "ascetics": [ "NNS" ], "Diaz": [ "NNP" ], "lasers": [ "NNS" ], "Century-Fox": [ "NNP" ], "Advise": [ "NNP" ], "flimsies": [ "NNS" ], "O.P.": [ "NNP" ], "Werkstell": [ "NNP" ], "Copyright": [ "NNP", "NN" ], "carpeted": [ "VBN", "VBD" ], "Dunkin": [ "NNP" ], "flirted": [ "VBD", "VBN" ], "LOBSTERS": [ "NNS" ], "undedicated": [ "VBN" ], "averts": [ "VBZ" ], "Jeffersons": [ "NNPS" ], "Italian-based": [ "JJ" ], "Giacomo": [ "NNP" ], "deformation": [ "NN" ], "Pilot": [ "NN" ], "groping": [ "VBG", "NN" ], "Desolation": [ "NNP" ], "HERITAGE": [ "NNP" ], "PG-13": [ "NN" ], "geopolitical": [ "JJ" ], "Grants-in-aid": [ "NNS" ], "Thygerson": [ "NNP" ], "Senior": [ "JJ", "NNP" ], "profit-motivated": [ "JJ" ], "cadenza": [ "NN" ], "three-man": [ "JJ" ], "finite": [ "JJ", "NN" ], "Thomajan": [ "NNP" ], "rots": [ "VBZ" ], "imprisoned": [ "VBN", "VBD", "JJ" ], "camping-out": [ "JJ" ], "occasions": [ "NNS", "VBZ" ], "Swenson": [ "NNP" ], "intervene": [ "VB" ], "Astronauts": [ "NNS" ], "teas": [ "NNS" ], "Foreclosures": [ "NNS" ], "nonbinding": [ "JJ" ], "de-worse-ification": [ "NN" ], "sketches": [ "NNS", "VBZ" ], "Aspe": [ "NNP" ], "Towson": [ "NNP" ], "outguessing": [ "VBG" ], "Peasants": [ "NNPS", "NNP", "NNS" ], "undetectable": [ "JJ" ], "historicized": [ "VBN" ], "fetal-tissue": [ "JJ", "NN" ], "sketched": [ "VBN", "VBD" ], "handless": [ "JJ" ], "Martek": [ "NNP" ], "Clabir": [ "NNP" ], "unnatural": [ "JJ" ], "preserve": [ "VB", "VBP", "NN" ], "Chenevix-Trench": [ "NNP" ], "Packing": [ "NNP", "VBG" ], "Martex": [ "NNP" ], "outrun": [ "VB", "VBN" ], "Zeon": [ "NNP" ], "Auxiliary": [ "NNP" ], "ciphers": [ "NNS" ], "Cleveland-Cliffs": [ "NNP" ], "algae": [ "NNS" ], "curtailed": [ "VBN", "VBD" ], "charcoal-broiled": [ "JJ" ], "perceptible": [ "JJ" ], "Batavia": [ "NNP" ], "concessionaires": [ "NNS" ], "whitetail": [ "NN" ], "maht": [ "MD" ], "wiretaps": [ "NNS" ], "heartiest": [ "JJS", "RBS" ], "blush": [ "NN", "VB" ], "assign": [ "VB", "VBP" ], "Apollinaire": [ "NNP" ], "IIGS": [ "NNP" ], "buffaloes": [ "NNS" ], "heritages": [ "NNS" ], "Leish": [ "NNP" ], "knocking": [ "VBG", "NN" ], "arsenal": [ "NN" ], "IDEC": [ "NNP" ], "Judaism": [ "NNP" ], "full-power": [ "JJ" ], "buffing": [ "VBG" ], "Reply": [ "NN", "NNP" ], "Centrally": [ "RB" ], "Felons": [ "NNS" ], "Chilmark": [ "NNP" ], "guaranteeing": [ "VBG", "NN" ], "Europhoria": [ "NN" ], "LOS": [ "NNP" ], "under-researched": [ "JJ" ], "airlock": [ "NN" ], "Goddammit": [ "UH" ], "Transparent": [ "JJ" ], "selling": [ "VBG", "NN", "JJ" ], "Lummus": [ "NNP" ], "Marques": [ "NNP" ], "abdominis": [ "NN" ], "less-ambitious": [ "JJR" ], "Marquet": [ "NNP" ], "authors": [ "NNS" ], "Marquez": [ "NNP" ], "Algol": [ "NNP" ], "most-livable": [ "JJS" ], "Brannigan": [ "NNP" ], "transistor-radio-sized": [ "JJ" ], "oyabun": [ "NN" ], "anticipate": [ "VB", "VBP" ], "Ricoh": [ "NNP" ], "oystchers": [ "NNS" ], "Tendered": [ "JJ" ], "Skittish": [ "JJ" ], "obfuscate": [ "VB" ], "anti-Kennedy": [ "JJ" ], "Defendants": [ "NNS" ], "udders": [ "NNS" ], "Haney": [ "NNP" ], "Regains": [ "VBZ" ], "Hanes": [ "NNP" ], "coolant": [ "NN" ], "urgently": [ "RB" ], "back-yard": [ "JJ", "NN" ], "towardes": [ "IN" ], "Catch-22": [ "NN" ], "Transcendentalists": [ "NNPS" ], "fluting": [ "NN" ], "trading-a": [ "NN" ], "cumbersome": [ "JJ" ], "unfocussed": [ "VBN" ], "Rushmore": [ "NNP" ], "constructions": [ "NNS" ], "Pamphili": [ "NNP" ], "Milbankes": [ "NNPS" ], "N.L.": [ "NNP", "NN" ], "Allons": [ "FW" ], "expansionist": [ "JJ" ], "camouflage": [ "NN", "VB" ], "Venusians": [ "NNPS" ], "expansionism": [ "NN" ], "Saison": [ "NNP" ], "LLerena": [ "NNP" ], "hell-bent": [ "JJ" ], "Developments": [ "NNPS", "NNP", "NNS" ], "Klineberg": [ "NNP" ], "flotation-type": [ "JJ" ], "promiscuous": [ "JJ" ], "unifications": [ "NNS" ], "double-billing": [ "VBG" ], "plunder": [ "NN", "VB" ], "bridle": [ "NN" ], "Evaluating": [ "VBG" ], "Concepts": [ "NNP", "NNS", "NNPS" ], "hands-on": [ "JJ" ], "Barnhill": [ "NNP" ], "Bridge": [ "NNP", "NN" ], "puddings": [ "NNS" ], "self-tilth": [ "NN" ], "Schreibman": [ "NNP" ], "Institutional": [ "JJ", "NNP" ], "exempts": [ "VBZ" ], "carry-forward": [ "NN" ], "Sheik": [ "NNP" ], "contradictorily": [ "RB" ], "prettier": [ "JJR" ], "reground": [ "JJ" ], "Springs": [ "NNP", "NNS", "NNPS" ], "Fredrick": [ "NNP" ], "Fredrico": [ "NNP" ], "cross-ownership": [ "NN" ], "Blondes": [ "NNP", "NNS", "NNPS" ], "humid": [ "JJ" ], "gnomon": [ "NN" ], "Gignoux": [ "NNP" ], "first-period": [ "JJ" ], "test-market": [ "NN" ], "registers": [ "NNS", "VBZ" ], "renegotiate": [ "VB" ], "pocketed": [ "VBD", "VBN" ], "self-funding": [ "NN" ], "Postbank": [ "NNP" ], "MIG-2\\": [ "NN" ], "Algom": [ "NNP" ], "Surcliffe": [ "NNP" ], "northern": [ "JJ" ], "scrimped": [ "VBD" ], "scooter": [ "NN" ], "tack-solder": [ "VB" ], "Caravans": [ "NNPS" ], "grandiloquent": [ "JJ" ], "log-house": [ "NN" ], "Lyonnais": [ "NNP" ], "resourcefulness": [ "NN" ], "scooted": [ "VBD" ], "hardbake": [ "NN" ], "policing": [ "VBG", "NN" ], "dominant": [ "JJ" ], "Notes": [ "NNS", "NNP", "NNPS" ], "brink": [ "NN" ], "imparted": [ "VBN", "VBD" ], "speckled": [ "JJ" ], "consecration": [ "NN" ], "reneged": [ "VBD" ], "conflict-of-interest": [ "NN", "JJ" ], "speckles": [ "NNS" ], "G.J.": [ "NNP" ], "Noted": [ "JJ" ], "chimney": [ "NN" ], "Abdallah": [ "NNP" ], "catches": [ "VBZ", "NNS" ], "catcher": [ "NN" ], "Matra": [ "NNP" ], "toothbrushes": [ "NNS" ], "Arnault": [ "NNP" ], "nightshirt": [ "NN" ], "alteration": [ "NN" ], "palatability": [ "NN" ], "key-punched": [ "JJ" ], "catchee": [ "VB" ], "recommendations": [ "NNS" ], "Noteware": [ "NNP" ], "overtaxed": [ "JJ", "VBN" ], "Limerick": [ "NNP" ], "slavishly": [ "RB" ], "cavorted": [ "VBD" ], "irredeemably": [ "RB" ], "Rosen": [ "NNP" ], "schizophrenic": [ "JJ", "NN" ], "Roses": [ "NNPS" ], "schizophrenia": [ "NN" ], "Mutinies": [ "NNS" ], "Cheyenne": [ "NNP" ], "plummeted": [ "VBD", "VBN" ], "precursors": [ "NNS" ], "lynched": [ "VBN" ], "embarking": [ "VBG" ], "McSorley": [ "NNP" ], "introject": [ "NN" ], "Papa-san": [ "NNP" ], "plush": [ "JJ", "NN" ], "assertive": [ "JJ" ], "Lisbeth": [ "NNP" ], "TeleCable": [ "NNP" ], "conditions": [ "NNS" ], "Aristech": [ "NNP" ], "Golfers": [ "NNP" ], "statistically": [ "RB" ], "unconscious": [ "JJ", "NN" ], "high-mindedness": [ "NN" ], "eluates": [ "NNS" ], "endogamous": [ "JJ" ], "F-A-18": [ "NN" ], "Althaus": [ "NNP" ], "LIMB": [ "NN" ], "dally": [ "VB" ], "Muench": [ "NNP" ], "hardline": [ "JJ", "NN" ], "LDCs": [ "NNPS" ], "Mardi": [ "NNP" ], "AMVISC": [ "NNP" ], "prepubescent": [ "JJ" ], "Fireside": [ "NNP" ], "Program-Trading": [ "JJ" ], "Fogle": [ "NNP" ], "Sherlock": [ "NNP" ], "undigested": [ "JJ" ], "PlanEcon": [ "NNP" ], "puritan": [ "JJ" ], "format": [ "NN" ], "longerterm": [ "JJ" ], "cavalrymen": [ "NNS" ], "Consortium": [ "NNP", "NN" ], "religiousness": [ "NN" ], "Diggers\\/Noise": [ "NNP" ], "Riesman": [ "NNP" ], "customer-inventory": [ "JJ" ], "TML": [ "NNP" ], "persecuted": [ "VBN" ], "Moulins": [ "NNP" ], "stamp": [ "NN", "VB" ], "dams": [ "NNS" ], "damp": [ "VB", "VBP", "JJ", "NN" ], "Henrik": [ "NNP" ], "Ajax": [ "NNP" ], "damn": [ "JJ", "NN", "RB", "VB", "UH" ], "Royale": [ "NNP" ], "Warner": [ "NNP" ], "Takashi": [ "NNP" ], "TALK": [ "NNP", "NN" ], "dame": [ "NN" ], "generating": [ "VBG", "NN" ], "Koninklijke": [ "NNP" ], "regroup": [ "VB", "VBP" ], "co-sponsoring": [ "JJ" ], "squabbled": [ "VBD", "VBN" ], "storylines": [ "NNS" ], "heute": [ "FW" ], "squabbles": [ "NNS" ], "assigning": [ "VBG" ], "dialing": [ "VBG", "NN" ], "Yunian": [ "NNP" ], "wrongness": [ "NN" ], "Taste": [ "NN", "VB", "NNP" ], "socialist": [ "JJ", "NN" ], "megawatts": [ "NNS" ], "rope": [ "NN", "VB" ], "bikini": [ "NN" ], "socialism": [ "NN" ], "Alfonso": [ "NNP" ], "equityholders": [ "NNS" ], "biking": [ "NN" ], "Planck": [ "NNP" ], "Alfonse": [ "NNP" ], "Celestino": [ "NNP" ], "wherever": [ "WRB" ], "Frog-marched": [ "JJ" ], "requisitioned": [ "VBD", "VBN" ], "Hamlin": [ "NNP" ], "commonly": [ "RB" ], "Esquire": [ "NNP" ], "highest-paid": [ "JJ" ], "Cosby": [ "NNP" ], "Teen": [ "NNPS", "NNP" ], "double-coupon": [ "NN" ], "K.J.P.": [ "NNP" ], "flatcars": [ "NNS" ], "predominated": [ "VBD" ], "hocking": [ "VBG" ], "solarheated": [ "JJ" ], "Philharmonique": [ "NNP" ], "conflict": [ "NN", "VB", "VBP" ], "Treating": [ "VBG" ], "covetous": [ "JJ" ], "Polimotor": [ "NNP" ], "censure": [ "NN" ], "jackbooted": [ "JJ" ], "Indication": [ "NN" ], "Glendale": [ "NNP", "NN" ], "C-141": [ "NNP" ], "idling": [ "VBG", "NN" ], "herewith": [ "RB" ], "older": [ "JJR", "RBR", "JJ" ], "docked": [ "VBN" ], "tooth-straightening": [ "NN" ], "royalty": [ "NN" ], "reclaim": [ "VB", "VBP" ], "trance": [ "NN" ], "secession": [ "NN" ], "olden": [ "JJ" ], "docket": [ "NN" ], "half-smile": [ "NN" ], "weakest": [ "JJS" ], "returns": [ "NNS", "VBZ" ], "bondholders": [ "NNS" ], "Pedigree": [ "NNP" ], "Reeve": [ "NNP" ], "Groused": [ "VBD" ], "SYDNEY-Qintex": [ "NNP" ], "marque": [ "NN" ], "fertilizing": [ "VBG" ], "cocky": [ "JJ" ], "Deputies": [ "NNPS", "NNP", "NNS" ], "Prenatal": [ "JJ" ], "uselessly": [ "RB" ], "Citadel": [ "NNP" ], "Hosokawa": [ "NNP" ], "retirement": [ "NN" ], "red-brick": [ "JJ" ], "drug-law": [ "NN" ], "ASKS": [ "VBZ" ], "swallowing": [ "VBG" ], "Hoelzer": [ "NNP" ], "middle-ground": [ "JJ" ], "exercising": [ "VBG", "NN" ], "lobstermen": [ "NNS" ], "Large-screen": [ "JJ" ], "Treasures": [ "NNS" ], "Bancshares": [ "NNPS", "NNP" ], "ballots": [ "NNS" ], "remaining": [ "VBG", "JJ" ], "Meritor": [ "NNP" ], "tax-revenue": [ "NN" ], "Boehringer": [ "NNP" ], "Coplandesque": [ "JJ" ], "lacking": [ "VBG", "JJ" ], "Apostolakis": [ "NNP" ], "over-subscribed": [ "JJ" ], "reptilian": [ "JJ" ], "Stretching": [ "VBG" ], "Suisse": [ "NNP" ], "Copernican": [ "JJ", "NNP" ], "game": [ "NN" ], "K.G.": [ "NNP" ], "wiser": [ "JJR", "RBR" ], "Hulings": [ "NNP" ], "wings": [ "NNS" ], "Kelsey-Hayes": [ "NNP" ], "industrial-equipment": [ "NN" ], "marvelous": [ "JJ" ], "stimulatory": [ "JJ" ], "day-care": [ "NN", "JJ" ], "Rodent": [ "NN" ], "Sportsmen": [ "NNS" ], "Finn": [ "NNP" ], "Fina": [ "NNP" ], "higher-priced": [ "JJ", "JJR" ], "Fine": [ "NNP", "JJ", "NNPS" ], "Find": [ "VB", "VBP" ], "Fing": [ "NNP" ], "Harkess": [ "NNP" ], "dizzily": [ "RB" ], "scriptwriter": [ "NN" ], "skimpy": [ "JJ" ], "software-development": [ "NN", "JJ" ], "markka": [ "FW", "NNS", "NN" ], "Suominen": [ "NNP" ], "BLOCK": [ "NNP" ], "distributable": [ "JJ" ], "providence": [ "NN" ], "garroting": [ "VBG" ], "funnels": [ "NNS" ], "Winters": [ "NNP" ], "Lynchburg": [ "NNP" ], "Kupelian": [ "NNP" ], "Eminase": [ "NNP" ], "Performers": [ "NNS" ], "Neill": [ "NNP" ], "infra": [ "FW" ], "interpretative": [ "JJ" ], "Northerner": [ "NN", "NNP" ], "Neils": [ "NNP" ], "taboo": [ "JJ", "NN", "VB" ], "sometimes-aggressive": [ "JJ" ], "uppon": [ "IN", "NN" ], "letup": [ "NN" ], "birch": [ "NN" ], "misspent": [ "VBN" ], "bourses": [ "NNS" ], "Amusement": [ "NN" ], "whittled": [ "VBN" ], "congressman": [ "NN" ], "Macfadden": [ "NNP" ], "one-term": [ "JJ" ], "on-the-scene": [ "JJ", "NN" ], "miracles": [ "NNS" ], "DiLuzio": [ "NNP" ], "water-use": [ "NN" ], "dangle": [ "VB" ], "misbehavior": [ "NN" ], "panders": [ "NNS" ], "within": [ "IN", "RB" ], "smelly": [ "JJ" ], "brow-beating": [ "NN" ], "convulsion": [ "NN" ], "smells": [ "VBZ", "NNS" ], "behaving": [ "VBG" ], "one-horse": [ "JJ" ], "renewal": [ "NN" ], "Keys": [ "NNP" ], "liniments": [ "NNS" ], "deodorant": [ "NN", "JJ" ], "Trovatore": [ "NNP" ], "Pennsauken": [ "NNP" ], "Gigot": [ "NNP" ], "motors.": [ "NNS" ], "Katharine": [ "NNP" ], "Katharina": [ "NNP" ], "Hudbay": [ "NNP" ], "Stepanova": [ "NNP" ], "rummage": [ "VB" ], "branchline": [ "JJ" ], "duly": [ "RB" ], "collapsed": [ "VBD", "JJ", "VBN" ], "Napkin": [ "NN" ], "hairyknuckled": [ "JJ" ], "Tommy": [ "NNP" ], "ginkgo": [ "NN" ], "properly": [ "RB" ], "photo-offset": [ "JJ" ], "segregation": [ "NN" ], "Switzerland": [ "NNP", "NN" ], "Quixote": [ "NNP" ], "Schott": [ "NNP" ], "Hartford-based": [ "JJ" ], "Imreg": [ "NNP" ], "low-quality": [ "JJ" ], "Haigler": [ "NNP" ], "foreign-sounding": [ "JJ" ], "crack-user": [ "NN" ], "coast-to-coast": [ "JJ" ], "tube-nosed": [ "JJ" ], "responsively": [ "RB" ], "Florence": [ "NNP" ], "Siano": [ "NNP" ], "reveille": [ "NN" ], "intermodal": [ "JJ" ], "Nickel-iron": [ "JJ" ], "Viennese": [ "JJ" ], "Nuovo": [ "NNP" ], "Daralee": [ "NNP" ], "higher-ranking": [ "JJ" ], "proteges": [ "NNS" ], "national-priority": [ "JJ" ], "unwise": [ "JJ" ], "kidney": [ "NN" ], "upended": [ "JJ" ], "Spartan": [ "NNP", "JJ", "NN" ], "dynodes": [ "NNS" ], "spokesmen": [ "NNS" ], "resistances": [ "NNS" ], "nabbed": [ "VBN" ], "Yehuda": [ "NNP" ], "Pottery": [ "NNP" ], "hoopla": [ "NN" ], "Snapped": [ "VBD" ], "Yehudi": [ "NNP" ], "jesting": [ "VBG" ], "gay\\/bisexual": [ "JJ" ], "current-delivery": [ "NN" ], "Underperform": [ "NNP" ], "Italics": [ "NNS" ], "lawn-mower": [ "NN" ], "Peterman": [ "NNP" ], "potentialities": [ "NNS" ], "constitutions": [ "NNS" ], "no-fault": [ "JJ" ], "ruthlessly": [ "RB" ], "reservation": [ "NN" ], "chameleon": [ "NN" ], "Automatically": [ "RB" ], "independently": [ "RB" ], "Statues": [ "NNS" ], "Makepeace": [ "NNP" ], "horseplay": [ "NN" ], "sedative": [ "NN" ], "face-off": [ "NN" ], "Wissahickon": [ "NNP" ], "Gabrielle": [ "NNP" ], "banishing": [ "VBG" ], "Village": [ "NNP", "NN" ], "payables": [ "NNS" ], "dermatological": [ "JJ" ], "Sunkist": [ "NNP" ], "F-108": [ "NN" ], "hyaline": [ "JJ" ], "fixed-rate": [ "JJ", "NN" ], "underbrush": [ "NN" ], "Gerraughty": [ "NNP" ], "Dortch": [ "NNP" ], "Molinaro": [ "NNP" ], "McEnany": [ "NNP" ], "Conforming": [ "NN" ], "desserts": [ "NNS" ], "Crandall": [ "NNP" ], "Houston-based": [ "JJ", "NNP" ], "IMREG": [ "NNP" ], "excludes": [ "VBZ" ], "Kraemer": [ "NN" ], "aerator": [ "NN" ], "stave": [ "VB" ], "President-elect": [ "NNP" ], "shack": [ "NN" ], "Plazek": [ "NNP" ], "Registry": [ "NNP" ], "excluded": [ "VBN", "VBD" ], "Rifle": [ "NNP", "NN" ], "cluttered": [ "VBN", "JJ" ], "Herridge": [ "NNP" ], "Euroconvertible": [ "JJ" ], "Irvin": [ "NNP" ], "flicker": [ "NN", "VB" ], "Reorganization": [ "NNP" ], "murderous": [ "JJ" ], "jinxed": [ "VBN" ], "Histories": [ "NNP" ], "valued": [ "VBN", "JJ", "VBD" ], "muzzled": [ "VBN" ], "now-vacant": [ "JJ" ], "polyphosphate": [ "NN" ], "Argumenty": [ "NNP" ], "Peony": [ "NNP" ], "mercurial": [ "JJ" ], "Blitz": [ "NNP", "NN" ], "laundries": [ "NNS" ], "assignments": [ "NNS" ], "writer-turned-painter": [ "NN" ], "Rosburg": [ "NNP" ], "Amcap": [ "NNP" ], "picker": [ "NN" ], "booty": [ "NN" ], "Babies": [ "NNS", "NNP" ], "picket": [ "NN" ], "oz.": [ "NN" ], "regummed": [ "VBD" ], "Hoylake\\": [ "JJ" ], "boots": [ "NNS" ], "waking": [ "VBG", "JJ" ], "Steinbrenner": [ "NNP" ], "VOLUNTARISM": [ "NN" ], "booth": [ "NN" ], "picked": [ "VBD", "VB", "VBN" ], "zu": [ "FW" ], "Solesmes": [ "NNP" ], "zq": [ "NN" ], "brokered": [ "JJ", "VBD", "VBN" ], "Davila": [ "NNP" ], "Fueloil": [ "NNP" ], "paintings": [ "NNS" ], "Cordoba": [ "NNP" ], "Ligachev": [ "NNP" ], "flicked": [ "VBD" ], "Nishima": [ "NNP" ], "Goldfein": [ "NNP" ], "graybeard": [ "NN" ], "Saudi-American": [ "NNP" ], "Nishimo": [ "NNP" ], "levelheadedness": [ "NN" ], "pediatrics": [ "NN" ], "slowness": [ "NN" ], "knobby-knuckled": [ "JJ" ], "Consonantal": [ "JJ" ], "defector": [ "NN" ], "Armani": [ "NNP" ], "Our": [ "PRP$", "NNP" ], "Margin": [ "NN" ], "Bateman": [ "NNP" ], "redrawn": [ "JJ" ], "Armand": [ "NNP" ], "thermocouples": [ "NNS" ], "lorries": [ "NNS" ], "indivisible": [ "JJ" ], "Likewise": [ "RB" ], "haunts": [ "NNS", "VBZ" ], "McCartney": [ "NNP" ], "buckwheat": [ "NN" ], "nameless": [ "JJ" ], "Out": [ "IN", "RB", "RP", "NNP" ], "Planned": [ "NNP" ], "deterrents": [ "NNS" ], "felled": [ "VBN", "VBD" ], "Exclusion": [ "NN" ], "terrorizing": [ "VBG" ], "collaborating": [ "VBG" ], "paranoia": [ "NN" ], "oil-lease": [ "JJ" ], "countermove": [ "NN" ], "Consulate-General": [ "NNP" ], "surpluses": [ "NNS" ], "feller": [ "NN" ], "Henning": [ "NNP" ], "truckloads": [ "NNS" ], "hitwoman": [ "NN" ], "announced": [ "VBD", "VBN", "JJ" ], "unpleasantly": [ "RB" ], "Cash-strapped": [ "JJ" ], "Breathing": [ "NN" ], "Leng": [ "NNP" ], "agreeably": [ "RB" ], "Lend": [ "VB", "NNP" ], "Autozam": [ "NNP" ], "all-expenses-paid": [ "JJ" ], "muscle-shaping": [ "JJ" ], "Leno": [ "NNP" ], "Sonntag": [ "FW" ], "Lens": [ "NNP" ], "frogs": [ "NNS" ], "Membership": [ "NNP", "NN" ], "cheeky": [ "JJ" ], "ASPR": [ "NNP" ], "Lent": [ "NNP", "VBN" ], "agreeable": [ "JJ" ], "Leny": [ "NNP" ], "cheeks": [ "NNS" ], "Lubar": [ "NNP" ], "Chill.``": [ "``" ], "quality-improvement": [ "NN" ], "Semple-Lisle": [ "NNP" ], "Legs": [ "NNS" ], "stylemark": [ "NN" ], "aerosal": [ "NN" ], "disabling": [ "VBG" ], "rear-seat": [ "NN" ], "Princeton\\/Newport": [ "NNP", "NN" ], "northers": [ "NNS" ], "well-intended": [ "JJ" ], "Wilmer": [ "NNP" ], "semi-precious": [ "JJ" ], "Free-Will": [ "NNP" ], "gross-profit": [ "NN" ], "m.p.h": [ "NN", "RB" ], "Valrico": [ "NNP" ], "painkiller": [ "NN" ], "TURNS": [ "VBZ" ], "Trizec": [ "NNP" ], "Grazie": [ "NNP" ], "antithetical": [ "JJ" ], "still-dark": [ "JJ" ], "Kropp": [ "NNP" ], "Godfather": [ "NNP" ], "Astros": [ "NNPS", "NNP" ], "arrangement": [ "NN" ], "titre": [ "FW" ], "Moises": [ "NNP" ], "reestablish": [ "VB" ], "circular": [ "JJ", "NN" ], "Widuri": [ "NNP" ], "anti-organization": [ "JJ" ], "Joel": [ "NNP" ], "yogurts": [ "NNS" ], "real-estate-asset": [ "JJ" ], "Joes": [ "NNS" ], "heat-resistant": [ "JJ" ], "Gosplan": [ "NNP" ], "Eckersley": [ "NNP" ], "Isola": [ "NNP" ], "day-today": [ "JJ" ], "fixed-income": [ "NN", "JJ" ], "briskness": [ "NN" ], "xenophobia": [ "NN" ], "While": [ "IN" ], "lordly": [ "JJ" ], "contraceptives": [ "NNS" ], "Politics": [ "NNP", "NNPS", "NN", "NNS" ], "Who": [ "WP", "NNP", "PRP" ], "fracases": [ "NNS" ], "epidemiologist": [ "NN" ], "Aerobacter": [ "NN" ], "anticoagulant": [ "NN" ], "Ceylon": [ "NNP" ], "slickers": [ "NNS" ], "Crewmembers": [ "NNP" ], "tax-compliance": [ "NN" ], "Final": [ "JJ", "NNP" ], "Lewelleyn": [ "NNP" ], "Finan": [ "NNP" ], "Body": [ "NNP", "NN" ], "leprae": [ "NNS" ], "outer": [ "JJ" ], "Saatchi": [ "NNP", "NNS" ], "guerrilla": [ "NN", "JJ" ], "downgrading": [ "NN", "VBG" ], "Conroe": [ "NNP" ], "Quintus": [ "NNP" ], "Freshman": [ "NN" ], "write-offs": [ "NNS", "NN" ], "yeterday": [ "NN" ], "Bode": [ "NNP" ], "video-cassette": [ "JJ", "NN" ], "hande": [ "NN" ], "Celtic": [ "JJ", "NNP" ], "belatedly": [ "RB" ], "Primate": [ "NNP" ], "enshrouds": [ "VBZ" ], "Dissect": [ "VB" ], "loose-jointed": [ "JJ" ], "back-lighted": [ "JJ" ], "MiG-29s": [ "NNS" ], "index-fund": [ "JJ", "NN" ], "Tupper": [ "NNP" ], "hands": [ "NNS", "VBZ" ], "documented": [ "VBN", "VBD" ], "AC-130U": [ "NN" ], "handy": [ "JJ" ], "Tiernan": [ "NNP" ], "Marginal": [ "JJ" ], "Accessories": [ "NNS", "NNP" ], "write-down": [ "NN", "VB" ], "Plantago": [ "NN" ], "crossing": [ "VBG", "NN" ], "uncaring": [ "JJ" ], "noneconomic": [ "JJ" ], "illuminate": [ "VB" ], "voyageurs": [ "NNS" ], "Lewellen": [ "NNP" ], "Representatives": [ "NNPS", "NNP", "NNS" ], "Liberty": [ "NNP", "NN" ], "Marijuana": [ "NN" ], "Santacruz": [ "NNP" ], "Matlowsky": [ "NNP" ], "margins": [ "NNS" ], "steadier": [ "JJR" ], "offsetting": [ "VBG", "JJ" ], "Gubers": [ "NNP" ], "Whitford": [ "NNP" ], "Straszheim": [ "NNP" ], "Adolph": [ "NNP" ], "Corzine": [ "NNP" ], "remiss": [ "JJ" ], "wondrous": [ "JJ" ], "Jameses": [ "NNP" ], "Umberto": [ "NNP" ], "L.S.U.": [ "NNP" ], "chitchat": [ "NN" ], "liquidity-enhancing": [ "JJ" ], "humiliating": [ "JJ" ], "brainpower": [ "NN" ], "Museums": [ "NNS", "NNPS" ], "Lobularity": [ "NN" ], "Carmelites": [ "NNPS", "NNS" ], "unliterary": [ "JJ" ], "banking-related": [ "JJ" ], "Summerdale": [ "NN", "NNP" ], "farmland": [ "NN" ], "hostile": [ "JJ", "NN" ], "PLAYER": [ "NNP" ], "Euro-watches": [ "NNS" ], "counterpart": [ "NN", "JJ" ], "intoxicated": [ "JJ" ], "Finanziario": [ "NNP" ], "Finanziaria": [ "NNP" ], "Reider": [ "NNP" ], "Maize": [ "NNP" ], "swapped": [ "VBN", "VBD" ], "disembodied": [ "JJ" ], "manure-scented": [ "JJ" ], "stultifying": [ "JJ" ], "Chewing": [ "VBG" ], "eminence": [ "NN" ], "Parfums": [ "NNP" ], "Hines": [ "NNP" ], "Eurodollar": [ "NN", "JJ", "NNP" ], "practitioners": [ "NNS" ], "paves": [ "VBZ" ], "Inauguration": [ "NNP", "NN" ], "Nichol": [ "NNP" ], "Tomilson": [ "NNP" ], "emergency.": [ "NN" ], "futurist\\/director": [ "NN" ], "Spelling": [ "NNP" ], "perfectly": [ "RB" ], "Fitzsimmons": [ "NNP" ], "paved": [ "JJ", "VBD", "VBN" ], "Lundberg": [ "NNP" ], "Profit-taking": [ "NN" ], "a-crowing": [ "VBG" ], "Panama-based": [ "JJ" ], "approachable": [ "JJ" ], "Hydroxazine": [ "NN" ], "jauntily": [ "RB" ], "manipulation": [ "NN" ], "reunification": [ "NN" ], "comported": [ "VBD" ], "acceptable": [ "JJ" ], "precursory": [ "JJ" ], "Mishkin": [ "NNP" ], "Piscopo": [ "NNP" ], "cash*/NN-flow": [ "JJ" ], "cartoonist": [ "NN" ], "Guzman": [ "NNP" ], "soviets": [ "NNS" ], "Mattausch": [ "NNP" ], "baby-boomers": [ "NNS" ], "Reviewing": [ "VBG" ], "Casper": [ "NNP" ], "Lima": [ "NNP" ], "Joban": [ "NNP" ], "Franciscans": [ "NNP", "NNS", "NNPS" ], "Lime": [ "NNP", "JJ" ], "Libyans": [ "NNPS" ], "Kahiltna": [ "NNP" ], "Drummer": [ "NN" ], "BAII": [ "NNP" ], "emptying": [ "VBG" ], "Lance": [ "NNP" ], "saintly": [ "JJ" ], "real-analytic": [ "JJ" ], "arrogate": [ "VB" ], "ephemeral": [ "JJ" ], "lung-cancer": [ "NN" ], "Billie": [ "NNP" ], "Jaworski": [ "NNP" ], "clodhoppers": [ "NNS" ], "legislatively": [ "RB" ], "Provident": [ "NNP" ], "Granny": [ "NNP" ], "Decorating": [ "VBG" ], "lecturer": [ "NN" ], "lectures": [ "NNS", "VBZ" ], "mileage": [ "NN" ], "Mindy": [ "NNP" ], "spine-chilling": [ "JJ" ], "Minds": [ "NNPS" ], "intentions": [ "NNS" ], "moths": [ "NNS" ], "rigor": [ "NN" ], "lectured": [ "VBD", "VBN" ], "Enter": [ "VB" ], "Jenrette": [ "NNP" ], "memory-picture": [ "NN" ], "Hypotheses": [ "NNPS" ], "Bugle": [ "NNP" ], "Pummeled": [ "VBN" ], "isotopic": [ "JJ" ], "Boatmen": [ "NNPS", "NNP", "NNS" ], "Bruxelles": [ "NNP" ], "Nantucket": [ "NNP" ], "Punitive": [ "JJ", "NNP" ], "Larimer": [ "NNP" ], "wealthier": [ "JJR" ], "transportation-where": [ "NN|WRB" ], "violation": [ "NN" ], "Acts": [ "NNPS" ], "crate": [ "NN" ], "brewers": [ "NNS" ], "excursus": [ "NN" ], "halfbacks": [ "NNS" ], "requsting": [ "VBG" ], "partners": [ "NNS" ], "Evershed": [ "NNP" ], "dramatize": [ "VB", "VBP" ], "chromatics": [ "NNS" ], "hopeful": [ "JJ", "NN" ], "debt-ridden": [ "JJ" ], "quadrennial": [ "JJ" ], "craving": [ "NN", "VBG" ], "dreamers": [ "NNS" ], "Checkrobot": [ "NNP" ], "infernal": [ "JJ" ], "billion-pound": [ "JJ" ], "Insinuations": [ "NNS" ], "eulogizers": [ "NNS" ], "Midi": [ "NNP" ], "sprouting": [ "VBG", "NN" ], "Burckhardt": [ "NNP" ], "Broil": [ "VB" ], "Brodbeck": [ "NNP" ], "parlance": [ "NN" ], "Narrow": [ "JJ", "NNP" ], "Italo-American": [ "NNP" ], "circumvents": [ "VBZ" ], "endless": [ "JJ" ], "gray": [ "JJ", "NN" ], "processes": [ "NNS", "VBZ" ], "Eurocommercial": [ "JJ" ], "wart-hog": [ "NN" ], "Jiri": [ "NNP" ], "wheel-making": [ "JJ" ], "quarantine": [ "VB" ], "single-home": [ "JJ" ], "Margenau": [ "NNP" ], "evaders": [ "NNS" ], "nutmeg": [ "NN" ], "overflowing": [ "VBG" ], "Impossible": [ "JJ" ], "grab": [ "VB", "JJ", "NN", "VBP" ], "grad": [ "NN" ], "urinary-tract": [ "NN" ], "Gnu-Emacs": [ "NNP" ], "pen-and-pencil": [ "JJ" ], "sensuality": [ "NN" ], "trilateral": [ "JJ" ], "terrain": [ "NN" ], "Banning": [ "VBG" ], "humane": [ "JJ" ], "Interior": [ "NNP", "NN", "JJ" ], "Seconds": [ "NNS" ], "pre-Vatican": [ "NNP" ], "Magnetism": [ "NNP" ], "allotted": [ "VBN", "VBD" ], "Technician": [ "NNP", "NN" ], "Isthmus": [ "NN" ], "Monogram": [ "NNP" ], "three-sevenths": [ "NNS" ], "buckets": [ "NNS" ], "Sri": [ "NNP" ], "Spethmann": [ "NNP" ], "recessions": [ "NNS" ], "Ring": [ "NNP", "NN" ], "Stygian": [ "JJ" ], "surrogacy": [ "NN" ], "Flock": [ "NNP" ], "psychotherapeutic": [ "JJ" ], "Isaacs": [ "NNP" ], "above-average": [ "JJ" ], "Strolling": [ "VBG" ], "presentations": [ "NNS" ], "admit": [ "VB", "VBP" ], "Egerton": [ "NNP" ], "skindiving": [ "VBG" ], "Foncier": [ "NNP" ], "Woody": [ "NNP" ], "surface-declaring": [ "JJ" ], "vielleicht": [ "FW" ], "spewed": [ "VBD", "VBN" ], "re-instated": [ "VBN" ], "Pap-pap-pap-hey": [ "UH" ], "distinguish": [ "VB", "VBP" ], "Acquirers": [ "NNS" ], "unselfishly": [ "RB" ], "quit": [ "VB", "VBD", "VBN", "VBP", "NN" ], "quip": [ "NN" ], "attraction": [ "NN" ], "speakin": [ "VBG" ], "preregistration": [ "NN" ], "Legittino": [ "NNP" ], "overthrowing": [ "VBG" ], "quiz": [ "NN", "VB" ], "quid": [ "FW", "NN" ], "dwarfs": [ "VBZ", "NNS" ], "Quesada": [ "NNP" ], "corresponding": [ "JJ", "VBG" ], "negligently": [ "RB" ], "schoolgirls": [ "NNS" ], "pie": [ "NN", "RP" ], "spaniel": [ "NN" ], "gouged": [ "VBD" ], "And": [ "CC", "NNP" ], "encircles": [ "VBZ" ], "DRAMs": [ "NNS", "NNPS" ], "uncertified": [ "JJ" ], "Ana": [ "NNP" ], "Brasstown": [ "NNP" ], "intimidate": [ "VB" ], "Fonda": [ "NNP" ], "Ann": [ "NNP" ], "Schiffs": [ "NNPS" ], "Ant": [ "NN" ], "two-career": [ "JJ" ], "Delmed": [ "NNP" ], "encircled": [ "VBD", "JJ" ], "service-sector": [ "JJ" ], "Fonds": [ "NNP" ], "Any": [ "DT" ], "coddled": [ "VBN" ], "Beyer": [ "NNP" ], "demo": [ "NN" ], "D.D.": [ "NNP" ], "unsheathing": [ "VBG" ], "second-largest": [ "JJ", "JJS" ], "Europe-based": [ "JJ" ], "sarcoma": [ "NN" ], "specialty-cheese": [ "JJ" ], "capture": [ "VB", "VBP", "NN" ], "Hoenlein": [ "NNP" ], "Husbandry": [ "NN" ], "Autocamiones": [ "NNP" ], "Beat": [ "NNP", "NN", "VB" ], "Beau": [ "NNP" ], "Sukarno": [ "NNP" ], "Bear": [ "NNP", "JJ", "NN" ], "sex-change": [ "JJ" ], "Beal": [ "NNP" ], "infant-mortality": [ "JJ", "NN" ], "Bean": [ "NNP" ], "widowhood": [ "NN" ], "Bead": [ "NN" ], "pushover": [ "NN" ], "unit-price": [ "NN" ], "Attila": [ "NNP" ], "experimented": [ "VBD", "VBN" ], "eccentric": [ "JJ", "NN" ], "Coral": [ "NNP" ], "retail-volume": [ "NN" ], "Pour": [ "NNP" ], "Poul": [ "NNP" ], "privations": [ "NNS" ], "Unckle": [ "NNP" ], "Menlo": [ "NNP" ], "suborbital": [ "JJ" ], "frequently": [ "RB" ], "spree": [ "NN" ], "endearing": [ "JJ" ], "Nyheter": [ "NNP" ], "progess": [ "NN" ], "stretchers": [ "NNS" ], "nebulous": [ "JJ" ], "Windy": [ "NNP" ], "drone": [ "NN", "JJ" ], "mixers": [ "NNS" ], "trust..": [ "NN" ], "Stern": [ "NNP", "JJ" ], "Winds": [ "NNP" ], "risk-free": [ "JJ" ], "information-cell": [ "NN" ], "housepaint": [ "NN" ], "quavered": [ "VBD" ], "Patiently": [ "RB" ], "enormously": [ "RB" ], "Innuendos": [ "NNS" ], "insurability": [ "NN" ], "HEALTH-CARE": [ "NN" ], "Erskine": [ "NNP" ], "mistaken": [ "VBN", "JJ" ], "dose": [ "NN" ], "steprelationship": [ "NN" ], "Dalles": [ "NNP" ], "non-resident": [ "JJ" ], "B-70": [ "NNP", "NN" ], "foxholes": [ "NNS" ], "dost": [ "VBP" ], "high-grade": [ "JJ" ], "Jacopo": [ "NNP" ], "Budgetary": [ "NNP" ], "Eggs": [ "NNP", "NNPS", "NNS" ], "Turkish": [ "JJ", "NNP" ], "Turbyfill": [ "NNP" ], "Pigs": [ "NNPS", "NNP" ], "Hombre": [ "NNP" ], "Aoun": [ "NNP" ], "clouded": [ "VBN", "JJ", "VBD" ], "Diego-area": [ "JJ" ], "woodsmoke": [ "NN" ], "livin": [ "NN" ], "criticality": [ "NN" ], "Programs": [ "NNS", "NNP" ], "all-female": [ "JJ" ], "Buckingham": [ "NNP" ], "Chipello": [ "NNP" ], "livid": [ "JJ" ], "Lithograph": [ "NNP" ], "formulaic": [ "JJ" ], "scale-down": [ "JJ" ], "immediately": [ "RB" ], "baptisms": [ "NNS" ], "sublimate": [ "NN", "VB" ], "Evensen": [ "NNP" ], "pared-down": [ "JJ" ], "Hyatt": [ "NNP" ], "politely": [ "RB" ], "fingerprints": [ "NNS" ], "clown": [ "NN" ], "Nagy": [ "NNP" ], "right-angling": [ "NN" ], "starre": [ "NN" ], "Naga": [ "NNPS" ], "Polish": [ "JJ", "VB", "NNP" ], "district-by-district": [ "RB" ], "refugees": [ "NNS" ], "page": [ "NN", "VB" ], "ART\\/artifact": [ "NN" ], "Takimura": [ "NNP" ], "uttermost": [ "JJ" ], "Californians": [ "NNS", "NNPS" ], "arbitrage": [ "NN" ], "ground-level": [ "NN" ], "pie-in-the-sky": [ "JJ", "NN" ], "explicit.": [ "JJ" ], "scuffle": [ "NN" ], "URGED": [ "VBD", "VBN" ], "Rebellion": [ "NN" ], "Helicopter": [ "NNP" ], "peter": [ "VB" ], "assisting": [ "VBG" ], "helplessness": [ "NN" ], "competitor": [ "NN" ], "airspeed": [ "NN" ], "Colvin": [ "NNP" ], "weeknights": [ "NNS" ], "?": [ "." ], "hinder": [ "VB" ], "Angers": [ "NNP" ], "coated": [ "VBN", "JJ" ], "BDO": [ "NNP" ], "centaur": [ "NN" ], "Pfaff": [ "NNP" ], "grant-in-aid": [ "NN" ], "Revitalized": [ "VBN" ], "Thackeray": [ "NNP" ], "Tarboro": [ "NNP" ], "sheriffs": [ "NNS" ], "explicity": [ "NN" ], "Clubhouse": [ "NNP" ], "repaired": [ "VBN", "VBD" ], "Akiva": [ "NNP" ], "Presupposed": [ "VBN" ], "Pawley": [ "NNP" ], "well-grooved": [ "JJ" ], "Drabble": [ "NNP" ], "Scarcity": [ "NN" ], "U-Save": [ "NNP" ], "simplicitude": [ "NN" ], "eloquently": [ "RB" ], "Flavio": [ "NNP" ], "LITORIGIN": [ "NN" ], "equally": [ "RB" ], "adopters": [ "NNS" ], "Pencil": [ "NNP", "NN", "VB" ], "E.C.": [ "NNP" ], "autonomous": [ "JJ" ], "articulate": [ "JJ", "VB" ], "withholds": [ "VBZ" ], "globalized": [ "JJ" ], "Keystone": [ "NNP", "NN" ], "finalizing": [ "VBG" ], "managing": [ "VBG", "JJ", "NN" ], "Approach": [ "NNP" ], "Skiway": [ "NNP" ], "serfs": [ "NNS" ], "Enviropact": [ "NNP" ], "Toagosei": [ "NNP" ], "delusions": [ "NNS" ], "Hoffmann-LaRoche": [ "NNP" ], "incompetents": [ "NNS" ], "California": [ "NNP", "JJ" ], "hoofs": [ "NNS" ], "perfect-attendance": [ "NN" ], "Bradford": [ "NNP" ], "panhandler": [ "NN" ], "revised": [ "VBN", "VBD", "JJ" ], "Rejection": [ "NN" ], "invent": [ "VB", "VBP" ], "chinning": [ "NN" ], "Clozapine": [ "NNP" ], "collected": [ "VBN", "VBD" ], "Rutgers": [ "NNP" ], "Magnier": [ "NNP" ], "Larish": [ "NNP" ], "courts": [ "NNS", "VBZ" ], "ear": [ "NN" ], "Larisa": [ "NNP" ], "eat": [ "VB", "VBP" ], "Re-Birth": [ "NNP" ], "upwardly": [ "RB" ], "Mylanta": [ "NNP" ], "Coughlin": [ "NNP" ], "Knesset": [ "NNP" ], "brown-tobacco": [ "JJ" ], "tetrachloride": [ "NN" ], "Sharfman": [ "NNP" ], "pansy": [ "NN" ], "Kristine": [ "NNP" ], "Barrymores": [ "NNPS" ], "dibenzofurans": [ "NNS" ], "heiress": [ "NN" ], "Euro-playing": [ "JJ" ], "Women": [ "NNP", "NNS", "NNPS" ], "strengthens": [ "VBZ" ], "flecked": [ "VBN" ], "Spirits": [ "NNP", "NNPS", "NNS" ], "Hymen": [ "NN" ], "Missett": [ "NNP" ], "tissues": [ "NNS" ], "upsets": [ "NNS", "VBZ" ], "utensils": [ "NNS" ], "piker": [ "NN" ], "Spirito": [ "NNP", "FW" ], "Non-steel": [ "JJ" ], "BethForge": [ "NNP" ], "Orchestral": [ "NNP" ], "class-action": [ "JJ", "NN" ], "RAVAGES": [ "NNS" ], "three-to-five-year-olds": [ "NNS" ], "Gynecologists": [ "NNS" ], "little-feared": [ "JJ" ], "onwards": [ "RB" ], "Shales": [ "NNP" ], "Chevrolet-Pontiac-GM": [ "NNP" ], "Fingered": [ "NNP" ], "stonework": [ "NN" ], "acrylic": [ "NN" ], "Cheeseheads": [ "NNS" ], "talkin": [ "VBG", "NN" ], "prepaying": [ "VBG" ], "wouldbe": [ "JJ" ], "Neurosciences": [ "NNP" ], "astounding": [ "JJ" ], "whisperings": [ "NNS" ], "Toonker": [ "NNP" ], "dragoon": [ "VBP" ], "dew-sodden": [ "JJ" ], "Thorne": [ "NNP" ], "tissue.": [ "NN" ], "Bribe": [ "NN" ], "undelivered": [ "JJ" ], "friends": [ "NNS" ], "yell": [ "NN", "VB" ], "grunted": [ "VBD" ], "anacondas": [ "NNS", "VBZ" ], "Bockius": [ "NNP" ], "Rayburn": [ "NNP" ], "travelogues": [ "NNS" ], "rounding": [ "VBG", "NN" ], "inset": [ "NN" ], "Suchard": [ "NNP" ], "theretofore": [ "RB" ], "diagnosis": [ "NN" ], "Leftovers": [ "NNP" ], "validation": [ "NN" ], "Weingarten": [ "NNP" ], "commencement": [ "NN" ], "disruptive": [ "JJ" ], "Corbin": [ "NN" ], "powdery": [ "JJ" ], "incantation": [ "NN" ], "dissolution": [ "NN" ], "four-year": [ "JJ" ], "chelicerates": [ "NNS" ], "powders": [ "NNS" ], "alders": [ "NNS" ], "transversally": [ "RB" ], "knight-errantry": [ "NN" ], "battleground": [ "NN" ], "Plate": [ "NNP", "NN" ], "gamut": [ "NN" ], "Alesio": [ "NNP" ], "Plato": [ "NNP", "NN" ], "Plath": [ "NNP" ], "Job": [ "NNP", "NN" ], "Platt": [ "NNP" ], "fine-grained": [ "JJ" ], "teaspoon": [ "NN" ], "Apache": [ "NNP", "NNPS" ], "Software": [ "NNP", "NN" ], "comparatively": [ "RB" ], "Anaheim-Santa": [ "NNP" ], "aparently": [ "RB" ], "Montrose": [ "NNP" ], "vasa": [ "NN" ], "Patch": [ "NNP", "NN" ], "smack": [ "RB", "VB", "UH", "VBP" ], "govern": [ "VB", "VBP" ], "Outsiders": [ "NNS" ], "Discovision": [ "NNP" ], "RTC-appointed": [ "JJ" ], "school-district": [ "JJ", "NN" ], "vast": [ "JJ" ], "Ignatius": [ "NNP" ], "baking": [ "NN", "VBG" ], "strayed": [ "VBD", "VBN" ], "Maggot": [ "NNP" ], "Mascotte": [ "NNP" ], "Thomae": [ "NNP" ], "panelized": [ "VBN" ], "epigraph": [ "NN" ], "Branson": [ "NNP" ], "martinis": [ "NNS" ], "Established": [ "VBN" ], "Caygill": [ "NNP" ], "Excellency": [ "NNP" ], "Galles": [ "NNP" ], "Saffer": [ "NNP" ], "implementer": [ "NN" ], "Roehm": [ "NNP" ], "Newbridge": [ "NNP" ], "Ragalyi": [ "NNP" ], "implemented": [ "VBN", "VBD" ], "Cinemax": [ "NNP" ], "Eventually": [ "RB" ], "gawky": [ "JJ" ], "Mannington": [ "NNP" ], "inordinately": [ "RB" ], "tirelessly": [ "RB" ], "orchestra": [ "NN" ], "Minuteman": [ "NNP" ], "Wempner": [ "NNP" ], "Binghamton": [ "NNP" ], "Treybig": [ "NNP" ], "Pachinko": [ "NN" ], "Ave.": [ "NNP" ], "Greens": [ "NNPS", "NNP", "NNS" ], "fueling": [ "VBG", "NN" ], "Greene": [ "NNP" ], "Bhirud": [ "NNP" ], "outer-space": [ "NN" ], "metaphosphate": [ "NN" ], "rods": [ "NNS" ], "brackish": [ "JJ" ], "dry": [ "JJ", "RB", "VB", "VBP" ], "intra-administration": [ "JJ" ], "Yooee": [ "UH" ], "stiffing": [ "VBG" ], "suitably": [ "RB" ], "taxis": [ "NNS", "VBZ" ], "ignoring": [ "VBG" ], "hokey": [ "JJ" ], "harass": [ "VB", "VBP" ], "Xtra": [ "NNP", "NN" ], "diagrammed": [ "VBN" ], "adopting": [ "VBG" ], "suitable": [ "JJ" ], "processional": [ "NN" ], "Tillinghast": [ "NNP" ], "reckoned": [ "VBN", "VBD" ], "Wire": [ "NNP", "NN" ], "constrictions": [ "NNS" ], "flurried": [ "VBD" ], "Relations": [ "NNPS", "NNP", "NNS" ], "Also": [ "RB" ], "grade-constructed": [ "JJ" ], "Microscopic": [ "JJ" ], "soybean": [ "NN" ], "JUMBO": [ "JJ" ], "gorillas": [ "NNS" ], "Wiry": [ "JJ" ], "Journalists": [ "NNS", "NNPS" ], "multipronged": [ "VBN" ], "Crested": [ "NNP" ], "Downs": [ "NNP" ], "watering": [ "VBG", "NN" ], "mass-audience": [ "JJ" ], "moored": [ "VBN" ], "social-affairs": [ "NNS" ], "negativism": [ "NN" ], "Bronfman": [ "NNP" ], "Chekhov": [ "NNP" ], "breeders": [ "NNS" ], "wary": [ "JJ" ], "Outing": [ "NNP" ], "well-heeled": [ "JJ" ], "Tiananmen": [ "NNP" ], "warp": [ "NN" ], "lunge": [ "VB" ], "quibbling": [ "VBG" ], "Ramo": [ "NNP" ], "G.": [ "NNP" ], "flotilla": [ "NN" ], "ward": [ "NN", "VB" ], "three-power": [ "JJ" ], "Kurosaki": [ "NNP" ], "fabricators": [ "NNS" ], "candies": [ "NNS" ], "kraut": [ "NN" ], "Fellowships": [ "NNS", "NNP" ], "setup": [ "NN" ], "barrister": [ "NN" ], "guise": [ "NN" ], "home-trading": [ "NN" ], "Alcatraz": [ "NNP" ], "Antwerp": [ "NNP" ], "full-length": [ "JJ", "NN" ], "ready": [ "JJ", "RB", "VB" ], "Homosexuals": [ "NNS" ], "ostrich": [ "JJ", "NN" ], "people...": [ ":" ], "unforgettable": [ "JJ" ], "SLORC": [ "NNP" ], "aging": [ "VBG", "JJ", "NN" ], "GQ": [ "NNP" ], "Truell": [ "NNP" ], "Nykvist": [ "NNP" ], "belying": [ "VBG" ], "fielders": [ "NNS" ], "faults": [ "NNS", "VBZ" ], "faulty": [ "JJ" ], "prefectures": [ "NNS" ], "needle-nosed": [ "JJ" ], "Greenock": [ "NNP" ], "replacing": [ "VBG" ], "postal-business": [ "JJ" ], "indignity": [ "NN" ], "Richer": [ "NNP", "JJR" ], "predominates": [ "VBZ" ], "natch": [ "UH" ], "plant-science": [ "NN" ], "THACHER": [ "NNP" ], "attempt": [ "NN", "VBP", "VB" ], "NORIEGA": [ "NNP" ], "vegetables": [ "NNS" ], "owls": [ "NNS" ], "fraudulently": [ "RB" ], "Monroe": [ "NNP" ], "Clendenin": [ "NNP" ], "Ancient": [ "NNP", "JJ" ], "Ptolemy": [ "NNP" ], "Javert": [ "NNP" ], "retirement-savings": [ "JJ" ], "Lethcoe": [ "NNP" ], "Surveillance": [ "NN" ], "Florican-Inverness": [ "NNP" ], "befall": [ "VB", "VBP" ], "eavesdropping": [ "NN" ], "scorers": [ "NNS" ], "underenforces": [ "VBZ" ], "GM": [ "NNP" ], "Karlheinz": [ "NNP" ], "experientially": [ "RB" ], "frisky": [ "JJ" ], "policy-oriented": [ "JJ" ], "Conversations": [ "NNS" ], "unexercised": [ "JJ" ], "credit-quality": [ "JJ" ], "low-profit": [ "JJ", "NN" ], "plantation": [ "NN" ], "symptomless": [ "JJ" ], "persist": [ "VB", "VBP" ], "weeks": [ "NNS" ], "petulant": [ "JJ" ], "vivre": [ "FW" ], "Pfizer": [ "NNP" ], "duodenal": [ "JJ" ], "unstylish": [ "JJ" ], "tentacle": [ "NN" ], "bronchial": [ "JJ" ], "color-glutted": [ "JJ" ], "foot-dragging": [ "NN" ], "niches": [ "NNS" ], "Indio": [ "NNP" ], "cloth-of-gold": [ "NN" ], "prophetically": [ "RB" ], "sleepless": [ "JJ" ], "India": [ "NNP" ], "pre-crash": [ "JJ" ], "Claeson": [ "NNP" ], "crosswalk": [ "NN" ], "mounts": [ "NNS", "VBZ" ], "Curious": [ "JJ" ], "bootleggers": [ "NNS" ], "operatives": [ "NNS" ], "messianic": [ "JJ" ], "objectors": [ "NNS" ], "EISA": [ "NNP" ], "bouanahsha": [ "FW" ], "marital": [ "JJ" ], "worker-safety": [ "NN" ], "glinting": [ "VBG" ], "stealing": [ "VBG", "JJ", "NN" ], "happenstance": [ "NN" ], "shirking": [ "VBG" ], "first-class": [ "JJ", "NN" ], "Saundra": [ "NNP" ], "Marvellee": [ "NNP" ], "typology": [ "NN" ], "velvet": [ "NN" ], "typecast": [ "VB" ], "non-scheduled": [ "JJ" ], "gradient": [ "NN", "JJ" ], "tales": [ "NNS" ], "secretary-general": [ "NN", "JJ" ], "Phedre": [ "NNP" ], "reader": [ "NN" ], "Jenkinson": [ "NNP" ], "revolving": [ "VBG", "JJ", "VBG|JJ" ], "DLC": [ "NNP" ], "Comstron": [ "NNP" ], "guiding": [ "VBG", "JJ" ], "cutest": [ "JJS" ], "Halkett": [ "NNP" ], "DLJ": [ "NNP" ], "enclosing": [ "VBG" ], "Izquierda": [ "NNP" ], "aboriginal": [ "JJ" ], "Repeat": [ "NN", "VB" ], "Bache": [ "NNP" ], "struggle": [ "NN", "VBP", "VB" ], "earth-tone": [ "NN" ], "inadequately": [ "RB" ], "DLX": [ "NNP" ], "unconditioned": [ "JJ" ], "Curt": [ "NNP" ], "cookbooks": [ "NNS" ], "Clinton": [ "NNP" ], "Beaulieu": [ "NNP" ], "science-watchers": [ "NNS" ], "scrounge": [ "VBP", "VB" ], "Cury": [ "NNP" ], "fleck": [ "NN" ], "half-blood": [ "JJ" ], "Curl": [ "NNP" ], "Homicide": [ "NNP", "NN" ], "Gems": [ "NNS" ], "naughty": [ "JJ" ], "decency": [ "NN" ], "reassure": [ "VB" ], "unlit": [ "NN" ], "Sobibor": [ "NNP" ], "Christmas-season": [ "NN" ], "MATERIALS": [ "NNP" ], "radiate": [ "VB", "VBP" ], "Hoare": [ "NNP" ], "ditch": [ "NN" ], "runways": [ "NNS" ], "peggin": [ "NN" ], "neuromuscular": [ "JJ" ], "Pirko": [ "NNP" ], "dumbfounded": [ "JJ", "VBN" ], "Liability": [ "NN", "NNP" ], "Nuttall": [ "NNP" ], "halted": [ "VBN", "NN", "VBD" ], "Press": [ "NNP", "NN", "VB" ], "dwell": [ "VBP", "VB" ], "Producing": [ "NNP", "NN", "VBG" ], "invalids": [ "NNS" ], "outputting": [ "VBG" ], "ruthenium": [ "NN" ], "bouncing": [ "VBG", "NN" ], "gym": [ "NN" ], "gambled": [ "VBN" ], "soul-searching": [ "NN" ], "gambles": [ "NNS" ], "gambler": [ "NN" ], "boarding": [ "VBG", "NN" ], "affront": [ "NN" ], "ex-Tory": [ "NN" ], "exorcist": [ "NN" ], "Eddy": [ "NNP" ], "imputation": [ "NN" ], "exorcism": [ "NN" ], "Heredity": [ "NN" ], "Thoughts": [ "NNP", "NNPS" ], "laypersons": [ "NNS" ], "exorcise": [ "VB" ], "Movements": [ "NNS" ], "sees": [ "VBZ" ], "seer": [ "NN" ], "seep": [ "VB", "VBP" ], "quench": [ "VB" ], "rechristens": [ "VBZ" ], "Billiards": [ "NNP", "NN" ], "longer-term": [ "JJ", "JJR" ], "pantheon": [ "NN" ], "seed": [ "NN", "VBN" ], "ergonomics": [ "NNS" ], "seen": [ "VBN", "VBD", "JJ" ], "seem": [ "VB", "VBP" ], "exchange-rate": [ "NN", "JJ" ], "seek": [ "VB", "VBP" ], "ACQUISITION": [ "NN", "NNP" ], "rangy": [ "JJ" ], "bogies": [ "NNS" ], "Lorex": [ "NNP" ], "Dunlap": [ "NNP" ], "floppy": [ "JJ" ], "Jaguars": [ "NNPS" ], "Nationalists": [ "NNPS" ], "re-scheduled": [ "VBN" ], "Wozzek": [ "NNP" ], "transnational": [ "JJ" ], "Shrugs": [ "NNP" ], "Treadway": [ "NNP" ], "Ark.-based": [ "JJ" ], "Loren": [ "NNP" ], "Studds-Miller": [ "NNP" ], "Scheetz": [ "NNP" ], "clonazepam": [ "NN" ], "Journalism": [ "NN", "NNP" ], "mashed": [ "VBN" ], "Incidentally": [ "RB" ], "Roommates": [ "NNS" ], "mid-August": [ "NNP", "NN" ], "Brusca": [ "NNP" ], "Reached": [ "VBN" ], "crescendo": [ "NN" ], "Optics": [ "NNP" ], "treasonous": [ "JJ" ], "Attorney": [ "NNP" ], "doi": [ "FW" ], "don": [ "VB", "NN", "VBP" ], "doo": [ "NN", "VB" ], "doc": [ "NN" ], "alarm": [ "NN", "VB" ], "m": [ "NN" ], "dog": [ "NN", "VBP" ], "doe": [ "NN" ], "orthophosphates": [ "NNS" ], "Erskin": [ "NNP" ], "dot": [ "NN", "VBP", "VB" ], "Orrick": [ "NNP" ], "planetary": [ "JJ" ], "amending": [ "VBG" ], "hunger": [ "NN" ], "sows": [ "VBZ", "NNS" ], "jurisdiction": [ "NN" ], "Colbert": [ "NNP" ], "speedup": [ "NN" ], "syntax": [ "NN" ], "recollectivization": [ "NN" ], "sown": [ "VBN" ], "sneaking": [ "VBG" ], "Macho": [ "FW" ], "clannish": [ "JJ" ], "long-considered": [ "JJ" ], "representing": [ "VBG" ], "ingloriously": [ "RB" ], "Deductions": [ "NNS" ], "variable-rate": [ "JJ" ], "folks": [ "NNS" ], "Eurotempo": [ "NNP" ], "Duvalier": [ "NNP" ], "disconnecting": [ "VBG" ], "hollers": [ "VBZ" ], "Mainland": [ "NNP", "JJ" ], "Carnival": [ "NNP", "NN" ], "rejoicing": [ "VBG", "NN" ], "overflows": [ "NNS" ], "convulsed": [ "VBD" ], "coast": [ "NN" ], "Umberson": [ "NNP" ], "nearly-30": [ "JJ" ], "tiled": [ "JJ", "VBN" ], "slanderous": [ "JJ" ], "Nilson": [ "NNP" ], "Voting": [ "NNP", "VBG", "NN" ], "scudding": [ "VBG" ], "Torbjoern": [ "NNP" ], "leveraged-takeover": [ "NN" ], "H.M.": [ "NNP" ], "Over": [ "IN", "NNP" ], "internationalized": [ "VBN" ], "reawakening": [ "VBG" ], "far-right": [ "JJ" ], "Egg-industry": [ "NN" ], "LeBow": [ "NNP" ], "rival": [ "JJ", "NN", "VB", "VBP" ], "BancNewEngland": [ "NNP" ], "Inspects": [ "VBZ" ], "Bovin": [ "NNP" ], "Warnock": [ "NNP" ], "universalization": [ "NN" ], "podiatrist": [ "NN" ], "Hospital": [ "NNP", "NN" ], "Burch": [ "NNP" ], "exhibitors": [ "NNS" ], "Playwrights": [ "NNP" ], "civilizing": [ "VBG" ], "Putnam": [ "NNP" ], "underarm": [ "NN" ], "Monier": [ "NNP" ], "drawn-back": [ "NN" ], "Hewlitt": [ "NNP" ], "Baraclough": [ "NNP" ], "embroidery": [ "NN" ], "simplest": [ "JJS" ], "stoking": [ "VBG" ], "baboon": [ "NN" ], "Bourke": [ "NNP" ], "pectoral-ribcage": [ "NN" ], "crayons": [ "NNS" ], "Central": [ "NNP", "JJ", "NN", "NNS" ], "tooth-paste": [ "NN" ], "Ex-Oriole": [ "NNP" ], "Luftwaffe": [ "NNP" ], "Arpino": [ "NNP" ], "scaled-back": [ "JJ" ], "once-a-day": [ "JJ" ], "worksheets": [ "NNS" ], "laze": [ "VB" ], "maneuvers": [ "NNS", "VBZ" ], "swoops": [ "NN", "VBZ" ], "Supported": [ "VBN" ], "und": [ "FW", "NN" ], "une": [ "FW" ], "once-popular": [ "JJ" ], "Syrian": [ "JJ" ], "Carlisle": [ "NNP" ], "Compact": [ "NNP" ], "Corelli": [ "NNP" ], "Indicted": [ "VBN" ], "ethanol": [ "NN" ], "otherworldliness": [ "NN" ], "non-mega": [ "JJ" ], "fluorescein": [ "NN" ], "humility": [ "NN" ], "COMMERCIAL": [ "JJ", "NNP", "NN" ], "height": [ "NN" ], "offerings": [ "NNS" ], "Though": [ "IN", "NNP", "RB" ], "nilly": [ "RB" ], "Confabulation": [ "NN" ], "Monster": [ "NN", "NNP" ], "paralyze": [ "VB" ], "Treasurer": [ "NNP" ], "Acreage": [ "NN" ], "Woolsey": [ "NNP" ], "replicate": [ "VB" ], "Schweiz": [ "NNP" ], "weightlessness": [ "NN" ], "Interbank": [ "NNP" ], "S.K.": [ "NNP" ], "chug": [ "VBP" ], "arbitrage-related": [ "JJ" ], "lightning-quick": [ "JJ" ], "efficacy": [ "NN" ], "chum": [ "NN" ], "Espinosa": [ "NNP" ], "L.P": [ "NNP" ], "spherules": [ "NNS" ], "block-grant": [ "JJ", "NN" ], "personally": [ "RB" ], "NCNB": [ "NNP" ], "majuh": [ "NN" ], "ASKO": [ "NNP" ], "homeequity": [ "NN" ], "Advertiser": [ "NNP" ], "sanctum": [ "FW" ], "Sushi": [ "NN" ], "styrenes": [ "NNS" ], "Isodine": [ "NNP" ], "bloomed": [ "VBD" ], "Tearle": [ "NNP" ], "singsonged": [ "VBD" ], "long-overdue": [ "JJ" ], "Rickards": [ "NNP" ], "ritorno": [ "FW" ], "Ilyushin": [ "NN" ], "diaphragm": [ "NN" ], "small-incision": [ "NN" ], "lever-action": [ "JJ" ], "Jeffrey": [ "NNP" ], "Paxson": [ "NNP" ], "Ruthann": [ "NNP" ], "Hodgepodge": [ "NN" ], "make": [ "VB", "NN", "VBP" ], "Voorhees": [ "NNP" ], "Shorting": [ "NN", "VBG" ], "Puente": [ "NNP" ], "showmen": [ "NNS" ], "unfortunate": [ "JJ", "NN" ], "get-out-of-my-way": [ "JJ" ], "Cibula": [ "NNP" ], "filtered": [ "VBN", "JJ" ], "maku": [ "FW" ], "Dappertutto": [ "NNP" ], "sodden": [ "JJ" ], "sanitationists": [ "NNS" ], "harbored": [ "VBN", "VBD" ], "human-rights": [ "JJ", "NN", "NNS" ], "managment": [ "NN" ], "Domaine": [ "NNP" ], "Englund": [ "NNP" ], "amicus": [ "NN" ], "vibrated": [ "VBD" ], "OVERHAUL": [ "NN" ], "bequest": [ "NN" ], "butter": [ "NN" ], "shot-up": [ "JJ" ], "waggishly": [ "RB" ], "not-for-profit": [ "JJ" ], "glimmers": [ "NNS" ], "trouble-shooting": [ "NN" ], "materials": [ "NNS" ], "butted": [ "VBN" ], "ballgowns": [ "NNS" ], "unglamorous": [ "JJ" ], "clothesbrush": [ "NN" ], "Hypothalamic": [ "JJ" ], "Hedges": [ "NNP" ], "plasm": [ "NN" ], "Pastor": [ "NNP" ], "Immune": [ "NNP" ], "Skywave": [ "NNP" ], "Fininvest": [ "NNP" ], "transforms": [ "VBZ" ], "fullness": [ "NN" ], "Corinthians": [ "NNPS", "NNP" ], "tattooed": [ "VBN" ], "Exponents": [ "NNS" ], "impending": [ "JJ", "VBG" ], "buyers": [ "NNS" ], "legion": [ "JJ", "NN" ], "tagline": [ "NN" ], "assassination": [ "NN" ], "Judiciary": [ "NNP" ], "far-from-conciliatory": [ "JJ" ], "magistrates": [ "NNS" ], "Condliffe": [ "NNP" ], "Foxboro": [ "NNP" ], "Jersey-Salem": [ "NNP" ], "Langstaff": [ "NNP" ], "leading-edge": [ "JJ" ], "Panet-Raymond": [ "NNP" ], "Calvinist": [ "NNP" ], "Support": [ "NNP", "NN" ], "stimulators": [ "NNS" ], "Roberta": [ "NNP" ], "reuse": [ "VB" ], "unreeling": [ "VBG" ], "knock-off": [ "NN" ], "Roberti": [ "NNP" ], "Roberto": [ "NNP" ], "Governed": [ "JJ" ], "Oppenheimer": [ "NNP", "NN" ], "perfunctory": [ "JJ" ], "gyrating": [ "VBG" ], "dreamy": [ "JJ" ], "diapiace": [ "FW" ], "other-directed": [ "JJ" ], "Governer": [ "NNP" ], "dreamt": [ "VBD", "VBN" ], "dreams": [ "NNS", "VBZ" ], "shoulder": [ "NN", "VBP", "RB", "VB" ], "dignity": [ "NN" ], "Metallurgical": [ "NNP" ], "Helibor": [ "NN" ], "high-technology": [ "NN", "JJ" ], "Capitalists": [ "NNPS" ], "Throneberry": [ "NNP" ], "arrivals": [ "NNS" ], "Welland": [ "NNP" ], "intermittently": [ "RB" ], "aluminum-hulled": [ "JJ" ], "Eljer": [ "NNP" ], "Non-executive": [ "JJ" ], "entertainment-law": [ "NN" ], "out-of-staters": [ "NNS" ], "On-Broadway": [ "NNP" ], "compulsivity": [ "NN" ], "coziness": [ "NN" ], "Catfish": [ "NNP" ], "short-term": [ "JJ", "NN", "RB", "NNP" ], "Saintsbury": [ "NNP" ], "participations": [ "NNS" ], "grading": [ "VBG", "NN" ], "Fink": [ "NNP" ], "Sanka": [ "NNP" ], "Kilpatrick": [ "NNP" ], "Surmanek": [ "NNP" ], "trunks": [ "NNS" ], "Toying": [ "VBG" ], "levitation": [ "NN" ], "Konheim": [ "NNP" ], "Youngish": [ "JJ" ], "videoconferencing": [ "NN" ], "meanings": [ "NNS" ], "capabilities.": [ "NN" ], "dowdy-looking": [ "JJ" ], "Participating": [ "VBG" ], "Leibler": [ "NNP" ], "nightgown-clad": [ "JJ" ], "one-of-a-kind": [ "JJ" ], "Cunin": [ "NNP" ], "Scollard": [ "NNP" ], "M-Whatever": [ "NNP", "NN" ], "ungratified": [ "JJ" ], "conceal": [ "VB" ], "lathered": [ "VBN", "VBD" ], "gallium": [ "NN" ], "fasciculations": [ "NNS" ], "Lynne": [ "NNP" ], "crucifix": [ "NN" ], "idyll": [ "NN" ], "Anchorite": [ "NN" ], "restate": [ "VB" ], "monetary-damage": [ "NN|JJ" ], "Asada": [ "NNP" ], "fatalists": [ "NNS" ], "Handguns": [ "NNS" ], "shippers": [ "NNS" ], "diabetics": [ "NNS" ], "oilman": [ "NN" ], "washboard": [ "NN" ], "Barbariccia": [ "NNP" ], "Extended": [ "NNP", "VBN" ], "Eckhard": [ "NNP" ], "illustrious": [ "JJ" ], "catalysts": [ "NNS" ], "inspected": [ "VBN", "VBD" ], "lampoon": [ "VB" ], "roof-crush": [ "JJ" ], "counterproductive": [ "JJ" ], "educationalist": [ "NN" ], "communication-service": [ "JJ" ], "Tidewatch": [ "NNP" ], "teletype": [ "NN" ], "asset-forfeiture": [ "NN" ], "immorality": [ "NN" ], "disarmingly": [ "RB" ], "Nagano": [ "NNP" ], "Brascade": [ "NNP" ], "Theology": [ "NNP" ], "cutlets": [ "NNS" ], "readmit": [ "VB" ], "lows": [ "NNS" ], "surrender": [ "NN", "VBP", "VB" ], "Interactive": [ "NNP", "JJ" ], "Golden": [ "NNP", "JJ" ], "benchmarks": [ "NNS" ], "Suffer": [ "VB" ], "propaganda": [ "NN" ], "originating": [ "VBG" ], "morphogenetic": [ "JJ" ], "Bullish": [ "JJ", "NNP" ], "infections": [ "NNS" ], "lingers": [ "VBZ" ], "bloodstained": [ "JJ" ], "Stratagene": [ "NNP" ], "claimants": [ "NNS" ], "Mayer": [ "NNP" ], "hot-air": [ "JJ" ], "Jolas": [ "NNP" ], "discriminate": [ "VB", "VBP", "JJ" ], "clingy": [ "JJ" ], "offputting": [ "JJ" ], "EAC": [ "NNP" ], "preconditioned": [ "VBD", "VBN" ], "clings": [ "VBZ" ], "eco-evangelists": [ "NNS" ], "golden-parachute": [ "JJ" ], "Colo.": [ "NNP" ], "matriarchal": [ "JJ" ], "Township": [ "NNP" ], "voltaic": [ "JJ" ], "Samaritans": [ "NNS" ], "refining": [ "NN", "VBG" ], "insolvency": [ "NN" ], "delivered": [ "VBN", "VBD" ], "axe": [ "NN" ], "aurally": [ "RB" ], "outback": [ "NN" ], "Rensselaer": [ "NNP" ], "Glossy": [ "JJ" ], "coat...": [ ":" ], "investment-tax": [ "JJ" ], "Yoshiro": [ "NNP" ], "describing": [ "VBG" ], "grapevines": [ "NNS" ], "Paprika": [ "NN" ], "slayings": [ "NNS" ], "diathesis": [ "NN" ], "Fairmount": [ "NNP" ], "outskirts": [ "NNS" ], "boondoggles": [ "NNS" ], "non-credit": [ "JJ" ], "Color": [ "NNP", "JJ", "NN" ], "Win": [ "NNP", "VBP" ], "gorilla": [ "NN" ], "amniotic": [ "JJ" ], "Trotsky": [ "NNP" ], "Halfway": [ "RB" ], "ABIOMED": [ "NNP" ], "unimpressed": [ "JJ" ], "auspiciously": [ "RB" ], "managed": [ "VBD", "VBN", "JJ" ], "Empire-Berol": [ "NNP" ], "Maddox": [ "NNP" ], "eldest": [ "JJS" ], "manager": [ "NN" ], "manages": [ "VBZ" ], "claret": [ "NN", "JJ" ], "micrometeorites": [ "NNS" ], "quasi-federal": [ "JJ" ], "Readings": [ "NNS" ], "Nutritious": [ "JJ" ], "Oberman": [ "NNP" ], "retroactivity": [ "NN" ], "depend": [ "VB", "VBP" ], "unassailable": [ "JJ" ], "Painting": [ "VBG", "NNP", "NN" ], "micrometers": [ "NNS" ], "Imperials": [ "NNPS" ], "countdown": [ "NN" ], "mackintosh": [ "NN" ], "Insureres": [ "NNS" ], "Fly": [ "VB" ], "management-trained": [ "JJ" ], "Courtis": [ "NNP" ], "full-range": [ "JJ" ], "Massachusetts": [ "NNP" ], "Lieutenant-Governor": [ "NNP" ], "Weingarten-Siegel": [ "NNP" ], "Adventures": [ "NNS", "NNP", "NNPS" ], "Candlestick": [ "NNP" ], "tacos": [ "NNS" ], "soapy": [ "JJ" ], "Oneupmanship": [ "NN" ], "forked": [ "JJ", "VBD", "VBN" ], "far-reaching": [ "JJ" ], "jettison": [ "VB" ], "freemarket": [ "JJ", "NN" ], "acquisition-proof": [ "JJ" ], "Clause": [ "NN" ], "luxuriance": [ "NN" ], "democrat": [ "NN" ], "Walk-in": [ "JJ" ], "Nevah": [ "NNP" ], "third-largest": [ "JJ" ], "Gassee": [ "NNP" ], "whiz-bang": [ "UH" ], "attracting": [ "VBG" ], "ill-conceived": [ "JJ" ], "Shiites": [ "NNPS" ], "carpal": [ "NN" ], "Nusbaum": [ "NNP" ], "Heritage": [ "NNP" ], "Gro": [ "NNP" ], "Percentage": [ "NN" ], "I.M.": [ "NNP" ], "drought-inspired": [ "JJ" ], "sacral": [ "JJ" ], "Orthodox": [ "NNP", "JJ" ], "phonographs": [ "NNS" ], "Brewing": [ "NNP" ], "near-mutiny": [ "NN" ], "reunite": [ "VB" ], "externalization": [ "NN" ], "sixfold": [ "RB", "JJ" ], "Traveling": [ "VBG", "NNP" ], "scampering": [ "VBG" ], "promissory": [ "JJ" ], "work-space": [ "NN" ], "unobserved": [ "JJ" ], "Buckra": [ "NNP" ], "transferee": [ "NN" ], "FLAG": [ "NN" ], "Pulliam": [ "NNP" ], "Magnascreen": [ "NNP" ], "schooldays": [ "NNS" ], "superconductor": [ "NN" ], "first-ever": [ "JJ" ], "grade-equivalents": [ "NNS" ], "cuckoo": [ "NN" ], "NMTBA": [ "NNP" ], "shift": [ "NN", "VB", "VBP" ], "Dantchik": [ "NNP" ], "sniggeringly": [ "RB" ], "Aimed": [ "VBN" ], "Sacramento": [ "NNP", "NN" ], "Jno": [ "NNP" ], "Clipper": [ "NNP" ], "ALAMCO": [ "NNP" ], "adjustable": [ "JJ" ], "absorbers": [ "NNS" ], "Alphonsus": [ "NNP" ], "Feltes": [ "NNP" ], "hardier": [ "JJR" ], "meal-to-meal": [ "JJ" ], "Felten": [ "NNP" ], "moraine": [ "NN" ], "Joshual": [ "NNP" ], "Wallop": [ "NNP" ], "Wetherill": [ "NNP" ], "Tiempo": [ "NNP" ], "salting": [ "VBG", "NN" ], "million-plus": [ "JJ", "NNS", "NN" ], "CHRISTMAS": [ "NNP" ], "connector": [ "NN" ], "pelts": [ "NNS" ], "photomicrography": [ "NN" ], "compactly": [ "RB" ], "lessened": [ "VBN", "JJ", "VBD" ], "Sultan": [ "NNP" ], "Peronist": [ "NNP" ], "equipped": [ "VBN", "JJ", "VBD" ], "plantations": [ "NNS" ], "multitudinous": [ "JJ" ], "archaeologists": [ "NNS" ], "orator": [ "NN" ], "non-mining": [ "JJ" ], "Montreal": [ "NNP", "JJ" ], "Latest": [ "JJS" ], "Samovar": [ "NNP" ], "harder-line": [ "JJ" ], "melodrama": [ "NN" ], "out-of-date": [ "JJ" ], "Earthquake": [ "NN", "NNP" ], "reappear": [ "VBP", "VB" ], "hard-riding": [ "JJ" ], "IBM-based": [ "JJ" ], "Rolls-Royces": [ "NNPS" ], "Sharon": [ "NNP" ], "classrooms": [ "NNS" ], "Bogle": [ "NNP" ], "concocted": [ "VBN", "VBD" ], "Soviet-Korean": [ "JJ" ], "Forbes": [ "NNP" ], "battered": [ "VBN", "VBD", "JJ" ], "Brewers": [ "NNS" ], "BEAVER": [ "NNP" ], "spanning": [ "VBG" ], "Niciporuk": [ "NNP" ], "McCombs": [ "NNP" ], "parental-consent": [ "JJ" ], "free-choice": [ "JJ" ], "penny-brokerage": [ "JJ" ], "traipse": [ "VB" ], "Kalman": [ "NNP" ], "Maeda": [ "NNP" ], "Coke": [ "NNP", "NN" ], "Ginsburg": [ "NNP" ], "Akzo": [ "NNP" ], "Banana": [ "NNP" ], "propagandistic": [ "JJ" ], "Ludwick": [ "NNP" ], "periscopes": [ "NNS" ], "tatters": [ "NNS" ], "adamant": [ "JJ" ], "drapery": [ "NN" ], "Thurber": [ "NNP" ], "McFarlan": [ "NNP" ], "Trojan": [ "NNP", "JJ" ], "Schmitt": [ "NNP" ], "long-deferred": [ "JJ" ], "L-P": [ "NNP" ], "ee-faket": [ "NN" ], "sustainability": [ "NN" ], "Graceful": [ "JJ" ], "BALLOTS": [ "NNS" ], "destructive": [ "JJ" ], "Adolescents": [ "NNS" ], "Trim": [ "VB", "NN", "NNP", "VBP" ], "Viphakone": [ "NNP" ], "Trio": [ "NNP" ], "neck": [ "NN", "RB", "VB" ], "pulsations": [ "NNS" ], "Trig": [ "NNP" ], "Trib": [ "NNP" ], "rarified": [ "JJ" ], "Hackstaff": [ "NNP" ], "dry-dock": [ "NN" ], "Speedy": [ "NNP" ], "Tris": [ "NNP", "NNS" ], "esters": [ "NNS" ], "Moeller": [ "NNP" ], "shield": [ "NN", "VB" ], "Microsystems": [ "NNPS", "NNP" ], "availing": [ "VBG" ], "antifundamentalist": [ "JJ" ], "Dell": [ "NNP" ], "Savin": [ "NNP" ], "Believing": [ "VBG" ], "lucidity": [ "NN" ], "Covered": [ "JJ" ], "tax-driven": [ "JJ" ], "fiction-writer": [ "NN" ], "moderate-rehabilitation": [ "NN" ], "Shtromas": [ "NNP" ], "WTV": [ "NNP" ], "gold-card-carrying": [ "JJ" ], "recession-proof": [ "JJ" ], "imbedded": [ "VBN", "VBD" ], "clearest": [ "JJS" ], "WTD": [ "NNP" ], "Worthy": [ "NNP" ], "WTI": [ "NNP" ], "sensitized": [ "VBN" ], "thump-thump": [ "NN" ], "Gascony": [ "NNP" ], "accusations": [ "NNS" ], "undisclosed": [ "JJ" ], "rent-controlled": [ "JJ" ], "safari": [ "NN" ], "gate": [ "NN" ], "Lonesome": [ "JJ" ], "widespread": [ "JJ" ], "Investigators": [ "NNS", "NNP" ], "Authorities": [ "NNS", "NNP" ], "intertitles": [ "NNS" ], "Armored": [ "NNP" ], "Giancarlo": [ "NNP" ], "misgivings": [ "NNS" ], "five-home": [ "JJ" ], "apprehensions": [ "NNS" ], "LAWSON": [ "NNP" ], "Asian-Americans": [ "NNPS" ], "sing-song": [ "NN" ], "noncombatant": [ "JJ" ], "Announces": [ "VBZ" ], "Barilla": [ "NNP" ], "Common-law": [ "JJ" ], "thousand-fold": [ "JJ" ], "unlock": [ "VB", "VBP" ], "high-set": [ "JJ" ], "befell": [ "VBD" ], "tempore": [ "NN" ], "HiPro": [ "NNP" ], "Mayors": [ "NNS" ], "Announced": [ "JJ" ], "thoroughness": [ "NN" ], "emerges": [ "VBZ" ], "foodservice": [ "NN" ], "car-leasing": [ "NN" ], "Abrahamson": [ "NNP" ], "midfield": [ "NN" ], "drunk-driving": [ "JJ" ], "Overreach": [ "NNP" ], "Everest": [ "NNP" ], "militarily": [ "RB" ], "emerged": [ "VBD", "VBN" ], "narrow-casting": [ "NN" ], "wider-than-expected": [ "JJ" ], "telegraphy": [ "NN" ], "smudge": [ "NN" ], "Tokuyama": [ "NNP" ], "Fiering": [ "NNP" ], "trademarks": [ "NNS" ], "Bamboo": [ "JJ" ], "Licht": [ "NNP" ], "Solarz": [ "NNP" ], "whittle": [ "VBP" ], "Traverse": [ "NNP" ], "Being": [ "VBG", "NNP", "NN" ], "Parris": [ "NNP" ], "headphones": [ "NNS" ], "rapid-transit": [ "JJ" ], "Fairlawn": [ "NNP" ], "production-ceiling": [ "NN" ], "Orwellian": [ "JJ", "NNP" ], "suspender": [ "NN" ], "Referring": [ "VBG" ], "likelier": [ "JJR" ], "Allstates-Zenith": [ "NNP" ], "commercialize": [ "VB" ], "whippings": [ "NNS" ], "Grantor": [ "NNP" ], "Lyondell": [ "NNP" ], "shipyard": [ "NN" ], "Yan": [ "NNP" ], "Yak": [ "NNP" ], "magnetic-tape-coating": [ "JJ" ], "brynge": [ "VBP" ], "singling": [ "VBG" ], "tailor-make": [ "VB" ], "employee-incentive": [ "NN" ], "mouthpieces": [ "NNS" ], "participates": [ "VBZ" ], "Bundle": [ "NN" ], "modernism": [ "NN" ], "anyone": [ "NN" ], "cable-television-equipped": [ "JJ" ], "modernist": [ "JJ", "NN" ], "JKD": [ "NNP" ], "Poldowski": [ "NNP" ], "participated": [ "VBD", "VBN" ], "sharecropper": [ "NN" ], "Councilwoman": [ "NNP" ], "COLOGNE": [ "NNP" ], "broadcast": [ "NN", "JJ", "VB", "VBD", "VBN" ], "senioritatis": [ "FW" ], "ambulatory": [ "JJ" ], "HMSS": [ "NNP" ], "satirically": [ "RB" ], "Dirty": [ "JJ" ], "court-length": [ "JJ" ], "butt": [ "NN", "CC", "VBP", "VB" ], "ceramics": [ "NNS" ], "vacating": [ "VBG" ], "Backing": [ "VBG" ], "efficient-in": [ "JJ|IN" ], "Teresa": [ "NNP" ], "around-the-world": [ "JJ" ], "encomiums": [ "NNS" ], "booted": [ "VBN", "VBD", "JJ" ], "Ayub": [ "NNP" ], "Ekonomicheskaya": [ "NNP" ], "Protectorate": [ "NNP" ], "predicator": [ "NN" ], "overenforced": [ "VBN" ], "gathering": [ "NN", "VBG" ], "topics": [ "NNS" ], "seventh-largest": [ "JJ" ], "nuisances": [ "NNS" ], "Meissner": [ "NNP" ], "earth-orbiting": [ "JJ" ], "parts-engineering": [ "JJ" ], "castor": [ "NN" ], "efficient": [ "JJ" ], "bawhs": [ "NNS" ], "Sugarman-led": [ "JJ" ], "isolate": [ "VB", "VBP" ], "endangered": [ "VBN", "VBD", "JJ" ], "potential": [ "JJ", "NN" ], "Perfection": [ "NNP", "NN" ], "Investor": [ "NNP", "NN" ], "frolicked": [ "VBN" ], "egg-hatching": [ "JJ" ], "poly-unsaturated": [ "JJ" ], "gloomier": [ "JJR", "RBR" ], "Jungian": [ "NNP" ], "Thorn": [ "NNP", "NN" ], "correlation": [ "NN" ], "highrisk": [ "NN" ], "vitiate": [ "VB" ], "Thorp": [ "NNP" ], "psychoactive": [ "JJ" ], "nonmythological": [ "JJ" ], "befouled": [ "VBN" ], "Hispanoil": [ "NNP" ], "Kolman": [ "NNP" ], "Amityvilles": [ "NNPS" ], "Elmira": [ "NNP" ], "Statehood": [ "NNP", "NN" ], "Enclosed": [ "VBN" ], "stockings": [ "NNS" ], "Resuming": [ "VBG" ], "Mendelssohn": [ "NNP" ], "Herring": [ "NNP" ], "Parkhaji": [ "NNP" ], "dissecting": [ "VBG" ], "investment-holding": [ "JJ" ], "navigated": [ "VBN" ], "Lespinasse": [ "NNP" ], "untold": [ "JJ" ], "rate-mortgages": [ "NNS", "NN" ], "Hills": [ "NNP", "NNPS" ], "deportation": [ "NN" ], "long-known": [ "JJ" ], "safekeeping": [ "NN" ], "Souths": [ "NNPS" ], "dice": [ "NNS", "NN" ], "hares": [ "NNS" ], "SIBV-MS": [ "NNP" ], "Splinting": [ "NNP" ], "Kiwanis": [ "NNP" ], "Studio": [ "NNP", "NN" ], "Campbelll": [ "NNP" ], "K.L.": [ "NNP" ], "Services": [ "NNPS", "NNP", "NNS" ], "hand-squeeze": [ "JJ" ], "patient-physician": [ "JJ" ], "ComFed": [ "NNP" ], "steel-edged": [ "JJ" ], "white-dominated": [ "JJ" ], "longest-standing": [ "JJS" ], "exaggeration": [ "NN" ], "bevel": [ "VB" ], "Alusik": [ "NNP" ], "Amid": [ "IN", "NNP" ], "out-of-pocket": [ "JJ" ], "Irish": [ "JJ", "NNPS", "NNP" ], "Fighting": [ "NNP", "JJ", "NN", "VBG" ], "employers": [ "NNS" ], "Voronezh": [ "NNP" ], "chillingly": [ "RB" ], "Rodney": [ "NNP" ], "gibbet": [ "NN" ], "straggled": [ "VBD" ], "Executives": [ "NNS", "NNP", "NNPS" ], "Kanto": [ "NNP" ], "harbinger": [ "NN" ], "intuitive": [ "JJ" ], "frolicking": [ "VBG" ], "Cornel": [ "NNP" ], "businesswoman": [ "NN" ], "Dookiyoon": [ "NNP" ], "Mundo": [ "NNP" ], "Corney": [ "NNP" ], "limited-production": [ "JJ" ], "Mundt": [ "NNP" ], "Corner": [ "NNP", "NN" ], "Lesson": [ "NN" ], "well-dressed": [ "JJ" ], "silently": [ "RB" ], "verities": [ "NNS" ], "Utsumi": [ "NNP" ], "re-emerge": [ "VB" ], "cantaloupe": [ "NN" ], "sifting": [ "NN" ], "single-B-3": [ "NNP", "JJ", "NN" ], "Ohkuma": [ "NNP" ], "Stanislas": [ "NNP" ], "Stanislav": [ "NNP" ], "Stanislaw": [ "NNP" ], "Jovanovich": [ "NNP" ], "ornament": [ "NN" ], "klieg": [ "NN" ], "chimpanzees": [ "NNS" ], "Heber": [ "NNP" ], "policyholder": [ "NN" ], "ruptured": [ "VBN", "JJ", "VBD" ], "affordable": [ "JJ" ], "LJH": [ "NNP" ], "co-signers": [ "NN" ], "Montesano": [ "NNP" ], "Mabellini": [ "NNP" ], "Symbolist": [ "NNP" ], "legitimacy": [ "NN" ], "loonies": [ "NNS" ], "Quartermaster": [ "NNP" ], "Civilian": [ "NNP" ], "Karipo": [ "NNP" ], "Skolman": [ "NNP" ], "Graduate-student": [ "NN" ], "Abortion-rights": [ "NNS", "JJ" ], "bedraggled": [ "JJ" ], "SAN": [ "NNP" ], "motivations": [ "NNS" ], "Carolyn": [ "NNP" ], "tuck": [ "VBP", "VB" ], "brinksmanship": [ "NN" ], "employee-bonus": [ "JJ", "NN" ], "home-office": [ "JJ" ], "food-color": [ "NN" ], "thrift-overhaul": [ "NN" ], "Felice": [ "NNP" ], "instant-credit": [ "NN" ], "slow-startup": [ "JJ" ], "all-day": [ "JJ" ], "Borak": [ "NNP" ], "Silva": [ "NNP", "NN" ], "catbird": [ "JJ" ], "Paddle": [ "VB" ], "accusation": [ "NN" ], "jets": [ "NNS" ], "dereliction": [ "NN" ], "Crombie": [ "NNP" ], "unassuming": [ "JJ" ], "technicalities": [ "NNS" ], "half-reached": [ "VBD" ], "abruptness": [ "NN" ], "slenderer": [ "JJR" ], "Ciba": [ "NNP" ], "Pavarotti": [ "NNP" ], "jaunty": [ "JJ" ], "athletic-shoe": [ "JJ", "NN" ], "Luckily": [ "RB" ], "elbowing": [ "VBG" ], "Newsday": [ "NNP" ], "shakers": [ "NNS" ], "Catheter": [ "NNP" ], "Leary": [ "NNP" ], "Gholamreza": [ "NNP" ], "educated": [ "VBN", "JJ" ], "Siecle": [ "NNP" ], "Angolan": [ "JJ" ], "SAS": [ "NNP" ], "Ice": [ "NNP", "NN" ], "Learn": [ "VB", "NNP" ], "Kieran": [ "NNP" ], "Thiokol": [ "NNP" ], "Hydrochlorothiazides": [ "NNS" ], "brockle": [ "NN" ], "Undergraduates": [ "NNS" ], "TAKEOVER": [ "NN" ], "eave": [ "NN" ], "huckster": [ "NN", "VB" ], "Flashlight": [ "NN" ], "love-making": [ "NN" ], "sales...": [ ":" ], "drug-dealing": [ "JJ", "NN" ], "Woos": [ "VBZ" ], "conferences": [ "NNS" ], "ethically": [ "RB" ], "winding-clothes": [ "NNS" ], "relying": [ "VBG" ], "pressing": [ "VBG", "JJ" ], "Palomino": [ "NNP" ], "Yurek": [ "NNP" ], "incubate": [ "VB" ], "Ferembal": [ "NNP" ], "deduction": [ "NN" ], "Toch": [ "NNP" ], "POLICE": [ "NN" ], "Acustar": [ "NNP" ], "government-dominated": [ "JJ" ], "cabana": [ "NN" ], "Nellies": [ "NNPS" ], "twenty-eighth": [ "JJ" ], "ashare": [ "NN" ], "Chernobyl-type": [ "JJ" ], "straitjacket": [ "NN" ], "dishonorable": [ "JJ" ], "N-W": [ "NNP" ], "finagled": [ "VBN" ], "non-English": [ "NN" ], "foundling": [ "NN" ], "Dunkelberg": [ "NNP" ], "McCrady": [ "NNP" ], "JAS": [ "NNP" ], "diversion": [ "NN" ], "Softly": [ "RB" ], "graduate-student": [ "NN" ], "Lumbera": [ "NNP" ], "Richmond-San": [ "NNP" ], "consumer-protection": [ "NN" ], "rivalled": [ "VBD" ], "Dedham": [ "NNP" ], "Naren": [ "NNP" ], "Workplaces": [ "NNS" ], "substantive": [ "JJ", "NN" ], "solve": [ "VB", "VBP" ], "Pliny": [ "NN" ], "intima": [ "NN" ], "Kogan": [ "NNP" ], "Ways": [ "NNPS", "NNP", "NNS" ], "Pohlad": [ "NNP" ], "racehorse": [ "NN" ], "proximal": [ "JJ" ], "half-reluctant": [ "JJ" ], "Sandwich": [ "NNP", "NN" ], "barnyard": [ "NN" ], "transformer": [ "NN" ], "outranks": [ "VBZ" ], "property-claims-service": [ "NN" ], "pile": [ "NN", "VBP", "VB" ], "FELA": [ "NNP" ], "Newcastle": [ "NNP" ], "Silverman": [ "NNP" ], "fifteenfold": [ "RB" ], "heavies": [ "NNS" ], "heavier": [ "JJR", "RBR" ], "pill": [ "NN" ], "homelands": [ "NNS" ], "Givaudan": [ "NNP" ], "princpal": [ "NN" ], "gloom": [ "NN" ], "Napoleonic": [ "JJ" ], "Wherever": [ "WRB" ], "ire": [ "NN" ], "acid-fast": [ "JJ" ], "well-to-do": [ "JJ", "NN" ], "Schemes": [ "NNS" ], "Lyrics": [ "NNS" ], "Characteristics": [ "NNS" ], "twin": [ "JJ", "NN" ], "serves": [ "VBZ" ], "server": [ "NN" ], "indisputably": [ "RB" ], "Henze": [ "NNP" ], "either": [ "DT", "CC", "IN", "RB", "RBR" ], "Thesis": [ "NN" ], "served": [ "VBN", "VBD" ], "tooke": [ "VBD" ], "in-person": [ "JJ" ], "sneaker": [ "NN" ], "Citizen\\/Labor": [ "NNP" ], "Fisons": [ "NNP" ], "BRIEFS": [ "NNS", "NNPS" ], "sentinel": [ "NN" ], "erase": [ "VB" ], "sneaked": [ "VBD", "VBN" ], "Telefunken": [ "NN", "NNP" ], "lackeys": [ "NNS" ], "pasture": [ "NN", "JJ", "VB" ], "matching": [ "VBG", "JJ", "NN" ], "choir": [ "NN" ], "half-faced": [ "JJ" ], "confirm": [ "VB", "VBP" ], "allegiances": [ "NNS" ], "mousetrap": [ "NN" ], "infallibility": [ "NN" ], "decomposition": [ "NN" ], "Grusin": [ "NNP" ], "atheromatous": [ "JJ" ], "impurity-doped": [ "JJ" ], "apocalyptic": [ "JJ" ], "apprentice": [ "NN" ], "Sakharov": [ "NNP" ], "manservant": [ "NN" ], "Neo-Popularism": [ "NNP" ], "out-of-kilter": [ "JJ" ], "pretended": [ "VBD", "VBN" ], "VISUALIZING": [ "VBG" ], "Payola": [ "NN" ], "untamed": [ "JJ" ], "crafting": [ "VBG" ], "toymakers": [ "NNS" ], "Zenith": [ "NNP" ], "smear": [ "NN" ], "mixer": [ "NN" ], "mixes": [ "NNS", "VBZ" ], "Pickett": [ "NNP" ], "freespender": [ "NN" ], "Yvette": [ "NNP" ], "toothpaste": [ "NN" ], "mixed": [ "VBN", "VBD", "JJ" ], "vincit": [ "FW" ], "Mousie": [ "NNP" ], "provisional": [ "JJ" ], "eight-bit": [ "JJ" ], "Branigan": [ "NNP" ], "RAND": [ "NNP" ], "Navajos": [ "NNPS" ], "franchising": [ "NN", "VBG" ], "Meinung": [ "FW" ], "short-run": [ "JJ", "NN" ], "Isotechnologies": [ "NNPS" ], "U.S.-produced": [ "JJ" ], "Kokusai": [ "NNP" ], "coal-miners": [ "NNS" ], "shells": [ "NNS" ], "anise": [ "NN" ], "prescriber": [ "NN" ], "Sagan": [ "NNP" ], "Malaysian-based": [ "JJ" ], "Schweizer": [ "NNP" ], "Simpson": [ "NNP", "NN" ], "Arco": [ "NNP" ], "Arch": [ "NNP", "VB" ], "pretends": [ "VBZ" ], "purgatory": [ "NN" ], "Artesia": [ "NNP" ], "Airport": [ "NNP" ], "dampers": [ "NNS" ], "storytellers": [ "NNS" ], "international-money-markets": [ "NN" ], "Treaty": [ "NNP" ], "hiccup": [ "NN" ], "Evanston": [ "NNP" ], "maskers": [ "NNS" ], "form-dictionary": [ "NN" ], "A.B.": [ "NNP", "NN" ], "Kirkendall": [ "NNP" ], "pitting": [ "VBG" ], "Societa": [ "NNP" ], "Soviet-accredited": [ "JJ" ], "plant-vaccine": [ "JJ" ], "Societe": [ "NNP" ], "Curteis": [ "NNP" ], "Society": [ "NNP", "NN" ], "uninhabitable": [ "JJ" ], "parisology": [ "NN" ], "Pollak": [ "NNP" ], "palate": [ "NN" ], "hated": [ "VBD", "JJ", "VBN" ], "Hint": [ "NN" ], "conundrum": [ "NN" ], "race-car": [ "NN" ], "surimi": [ "FW" ], "acetate": [ "NN" ], "Bragg": [ "NNP" ], "mimesis": [ "NN" ], "planets": [ "NNS" ], "ever-vigilant": [ "JJ" ], "metier": [ "NN" ], "film": [ "NN", "VB" ], "fill": [ "VB", "VBP", "NN" ], "tedious": [ "JJ" ], "wieners": [ "NNS" ], "amendments": [ "NNS" ], "Metruh": [ "NNP" ], "keynote": [ "VBP", "NN", "VB" ], "personnel": [ "NNS", "JJ", "NN" ], "Toyotas": [ "NNS" ], "repent": [ "VB", "VBP" ], "sogo-shosha": [ "NN" ], "supplementing": [ "VBG" ], "Resolves": [ "NNPS" ], "Landesco": [ "NNP" ], "Riders": [ "NNPS", "NNP" ], "color-TV": [ "NN" ], "computer-generated": [ "JJ" ], "hemorrhages": [ "NNS" ], "Townes": [ "NNP" ], "cloudburst": [ "NN" ], "forbidding-looking": [ "JJ" ], "Nordstrom": [ "NNP" ], "important": [ "JJ" ], "Brudzinski": [ "NNP" ], "Marwick": [ "NNP" ], "Rehabilitation": [ "NNP" ], "barometers": [ "NNS" ], "hemorrhaged": [ "VBN" ], "Newsletter": [ "NNP" ], "Crusades": [ "NNPS" ], "Crusader": [ "NNP" ], "international-defense": [ "NN" ], "human-resources": [ "NNS", "JJ" ], "a-Average": [ "JJ", "LS|JJ" ], "wets": [ "NNS" ], "recklessness": [ "NN" ], "landfill": [ "NN" ], "Thermal": [ "JJ", "NNP" ], "husks": [ "NNS" ], "incubating": [ "VBG" ], "Davies": [ "NNP" ], "Tache": [ "NNP" ], "mischarged": [ "VBD" ], "Ziyang": [ "NNP" ], "Yewaisis": [ "NNP" ], "Satterfield": [ "NNP" ], "suns": [ "NNS" ], "forbidden": [ "VBN", "JJ" ], "quinolone": [ "NN" ], "dollar": [ "NN" ], "fixtured": [ "VBD" ], "sunt": [ "FW" ], "postponing": [ "VBG" ], "slung": [ "VBD", "VBN" ], "Azem": [ "NNP" ], "zinc": [ "NN" ], "Secretion": [ "NN" ], "fixtures": [ "NNS" ], "sung": [ "VBN" ], "milliamperes": [ "NNS" ], "toniest": [ "JJS" ], "Tartar": [ "JJ", "NNP" ], "pinioned": [ "VBN" ], "prefixes": [ "NNS" ], "shredding": [ "VBG" ], "destroyers": [ "NNS" ], "Tartan": [ "NNP" ], "overdoing": [ "VBG" ], "nibblers": [ "NNS" ], "Burdens": [ "NNS" ], "Physician": [ "NN", "NNP" ], "returning": [ "VBG" ], "counterproposal": [ "NN" ], "Molinari": [ "NNP" ], "Goizueta": [ "NNP" ], "interglacial": [ "JJ" ], "ad-supported": [ "JJ" ], "Huitotoes": [ "NNS" ], "difference": [ "NN" ], "Airedale": [ "NNP" ], "cheerful": [ "JJ" ], "photographic-paper": [ "NN" ], "Weizsacker": [ "NNP" ], "Goodfriend": [ "NNP" ], "fiber-optics": [ "NN" ], "Prandtl": [ "NNP" ], "nonwhite": [ "JJ" ], "intricately": [ "RB" ], "juxtaposition": [ "NN" ], "Kill": [ "VB", "NNP" ], "Luzon": [ "NNP" ], "thermocouple": [ "NN" ], "becometh": [ "VBZ" ], "Dax-Pontonx": [ "NNP" ], "Zvi": [ "NNP" ], "airliners": [ "NNS" ], "CLASHED": [ "VBD" ], "grabs": [ "NNS", "VBZ" ], "Denver": [ "NNP" ], "embodies": [ "VBZ" ], "white-bearded": [ "JJ" ], "Disney\\/MGM": [ "NNP" ], "appreciating": [ "VBG", "NN" ], "cigars": [ "NNS" ], "Giants": [ "NNP", "NNS", "NNPS" ], "ruminate": [ "VB" ], "mobilizing": [ "VBG", "NN" ], "diffusing": [ "VBG" ], "astonishment": [ "NN" ], "Websterville": [ "NNP" ], "exasperation": [ "NN" ], "ambled": [ "VBD" ], "public": [ "JJ", "NN", "RB" ], "Bleak": [ "NNP" ], "bloodbath": [ "NN" ], "Hersant": [ "NNP" ], "NFC": [ "NNP" ], "NFA": [ "NNP" ], "mini-studio": [ "NN" ], "scanty": [ "JJ" ], "NFL": [ "NNP" ], "dabbled": [ "VBD" ], "Elector": [ "NNP", "NN" ], "Archer": [ "NNP" ], "free": [ "JJ", ",", "JJ|RB", "RB", "VB", "VBP" ], "eutectic": [ "NN" ], "I-880": [ "NN", "NNP" ], "Archey": [ "NNP" ], "Reichstag": [ "NNP" ], "Canandaigua": [ "NNP" ], "oleomargarine": [ "NN" ], "bakeries": [ "NNS" ], "A40-AjK": [ "NN" ], "Berliner": [ "NNP" ], "Bush-Salinas": [ "NNP" ], "Liquor": [ "NNP", "NN" ], "Yuba": [ "NNP" ], "Resorts": [ "NNPS", "NNP" ], "non-success": [ "NN" ], "lubricants": [ "NNS" ], "Naomi": [ "NNP" ], "franchisers": [ "NNS" ], "Mannerhouse": [ "NNP" ], "Britisher": [ "NNP" ], "proscription": [ "NN" ], "cowardly": [ "JJ" ], "abortionist": [ "NN" ], "usurpation": [ "NN" ], "unapproved": [ "JJ" ], "Grahams": [ "NNPS", "NNP" ], "arrogance": [ "NN" ], "deeming": [ "VBG" ], "Europe": [ "NNP" ], "LEBANESE": [ "JJ" ], "Geren": [ "NNP" ], "annunciated": [ "VBN" ], "Europa": [ "NNP", "NN" ], "culinary": [ "JJ" ], "wiped": [ "VBD", "VBN" ], "paraphrases": [ "NNS", "VBZ" ], "Zemin": [ "NNP" ], "minus\\": [ "JJ" ], "Tobias": [ "NNP" ], "abroade": [ "RB" ], "Forsythe": [ "NNP" ], "non-economical": [ "JJ" ], "raft": [ "NN" ], "Apprentice": [ "NNP" ], "hegemony": [ "NN" ], "Adagio": [ "NNP" ], "awards": [ "NNS", "VBZ" ], "Brasil": [ "JJ" ], "FLARE": [ "VBP" ], "corporate-raider": [ "JJ" ], "strife-free": [ "JJ" ], "lemons": [ "NNS" ], "Vif": [ "NNP" ], "unnumbered": [ "JJ" ], "Abstracts": [ "NNP" ], "phase-out": [ "NN", "JJ" ], "Disclosure": [ "NN" ], "Ribas": [ "NNP" ], "overhand": [ "JJ", "NN" ], "Receivables": [ "NNPS", "NNP" ], "Trager": [ "NNP" ], "Skrunda": [ "NNP" ], "management-pilot": [ "JJ", "NN" ], "lefthander": [ "NN" ], "subterfuge": [ "NN" ], "mediums": [ "NNS" ], "Hessian": [ "JJ" ], "Featherbed": [ "NN" ], "sleuth": [ "NN" ], "muzzles": [ "NNS", "VBZ" ], "seventeen-year-old": [ "JJ" ], "sphere": [ "NN" ], "Kume": [ "NNP" ], "neo-Nazis": [ "NNPS" ], "Compromise": [ "NNP", "NN" ], "airline-landing": [ "JJ" ], "Djangology": [ "NNP" ], "Victor-brand": [ "JJ" ], "Teens": [ "NNS" ], "Hearst": [ "NNP" ], "reliving": [ "NN", "VBG" ], "fillip": [ "NN" ], "Raymond": [ "NNP" ], "awkward": [ "JJ" ], "fullback": [ "NN" ], "Dragnet": [ "NNP" ], "Meaning": [ "NN", "NNP" ], "thout": [ "VBD" ], "profiting": [ "VBG" ], "acts...": [ ":" ], "options-trading": [ "JJ" ], "Attu": [ "NNP" ], "CABLE": [ "NN" ], "advice": [ "NN" ], "intones": [ "VBZ" ], "C.K.": [ "NNP" ], "Nebraska": [ "NNP", "NN" ], "BMWs": [ "NNS", "NNPS" ], "Atta": [ "NN", "UH" ], "Tasti-Freeze": [ "NNP" ], "intoned": [ "VBD", "VBN" ], "Hamakua": [ "NN" ], "Finkelsteins": [ "NNPS" ], "bloating": [ "NN" ], "Lipps": [ "NNP" ], "narcissistically": [ "RB" ], "Stanwick": [ "NNP" ], "rooting": [ "VBG", "NN" ], "crippling": [ "JJ", "VBG" ], "blunder": [ "NN", "VB" ], "deserted": [ "VBN", "VBD", "JJ" ], "responsibility": [ "NN" ], "agenda-setter": [ "NN" ], "Odean": [ "NNP" ], "redirecting": [ "VBG" ], "Menomonee": [ "NNP" ], "Altron": [ "NNP" ], "graunt": [ "VB" ], "Heel-Beryl": [ "NNP" ], "picture-tube": [ "JJ" ], "Renewed": [ "VBN" ], "Ozon": [ "NN" ], "Cashiering": [ "VBG" ], "lashings": [ "NNS" ], "controllable": [ "JJ" ], "WORKING": [ "VBG" ], "calluses": [ "NNS" ], "Philosophy": [ "NN", "NNP" ], "thirty-year": [ "JJ" ], "oxalate": [ "NN" ], "heartstopping": [ "JJ" ], "jejunum": [ "NN" ], "arias": [ "NNS" ], "wharves": [ "NNS" ], "Installation": [ "NN", "NNP" ], "Mortals": [ "NNS" ], "Ondaatje": [ "NNP" ], "two-evening": [ "JJ" ], "limped": [ "VBD", "VBN" ], "obeyed": [ "VBD", "VBN" ], "Youngblood": [ "NNP" ], "capriciousness": [ "NN" ], "Tebuthiuron": [ "NN" ], "inception": [ "NN" ], "formulating": [ "VBG" ], "Allied-Lyons": [ "NNP" ], "association": [ "NN" ], "life-cycle": [ "JJ" ], "deteriorates": [ "VBZ" ], "Saving": [ "VBG", "NNP" ], "excruciating": [ "JJ" ], "over-populated": [ "JJ" ], "Holbrook": [ "NNP" ], "Lack": [ "NN", "NNP" ], "ashen": [ "JJ" ], "Benigno": [ "NNP" ], "rigueur": [ "FW" ], "ashes": [ "NNS" ], "Boveri": [ "NNP" ], "deteriorated": [ "VBN", "JJ", "VBD" ], "writing-like": [ "JJ" ], "Lacy": [ "NNP" ], "Abel": [ "NNP" ], "forthright": [ "JJ" ], "harm": [ "NN", "VB", "VBP" ], "hark": [ "VBP" ], "Built": [ "VBN", "NNP" ], "ornately": [ "RB" ], "hare": [ "NN" ], "hard": [ "JJ", "RB" ], "Tredegar": [ "NNP" ], "nine-cent": [ "JJ" ], "Meyle": [ "NNP" ], "Presse": [ "NNP" ], "Build": [ "VB" ], "fist": [ "NN", "RB" ], "belt-driven": [ "JJ" ], "schoolmate": [ "NN" ], "Panisse": [ "NNP" ], "bascially": [ "RB" ], "harp": [ "NN", "VB" ], "mustered": [ "VBD", "VBN" ], "Collision": [ "NNP" ], "fermentations": [ "NNS" ], "Coesfeld": [ "NNP" ], "childish": [ "JJ" ], "discouraging": [ "VBG", "JJ" ], "seaport": [ "NN" ], "firstround": [ "JJ" ], "Ridgefield": [ "NNP" ], "non-working": [ "JJ" ], "pension-tax": [ "NN", "JJ" ], "trusteth": [ "VBP", "NN" ], "overindulged": [ "VBD" ], "electronic-communications": [ "NNS" ], "unidentifiable": [ "JJ" ], "computer\\": [ "JJ" ], "crouched": [ "VBD", "VBN" ], "Estella": [ "NNP" ], "foreign-currency": [ "NN", "JJ" ], "crouches": [ "VBZ" ], "Architecture": [ "NNP" ], "Reception": [ "NN", "NNP" ], "Ruined": [ "VBN" ], "allocation": [ "NN" ], "Zodiacal": [ "JJ" ], "Lescaut": [ "NNP" ], "overbuilding": [ "NN" ], "reinforces": [ "VBZ" ], "computers": [ "NNS" ], "ended...": [ ":" ], "misunderstanders": [ "NNS" ], "UCSF": [ "NNP" ], "Bandon": [ "NNP" ], "reinforced": [ "VBN", "VBD", "JJ" ], "said:``": [ "``" ], "copper": [ "NN" ], "Cyril": [ "NNP" ], "lemon-meringue": [ "NN" ], "long-yardage": [ "JJ" ], "plow": [ "NN", "VBP", "VB" ], "service-connected": [ "JJ" ], "inhibits": [ "VBZ" ], "neglects": [ "VBZ" ], "Goes": [ "VBZ", "NNP" ], "Dangers": [ "NNS" ], "disown": [ "VB" ], "management-union": [ "JJ", "NN" ], "air-to-surface": [ "JJ" ], "watchmaker": [ "NN" ], "purposive": [ "JJ" ], "Precision": [ "NNP", "NN" ], "least": [ "JJS", "RBS", "JJ" ], "leash": [ "NN" ], "Parrott": [ "NNP" ], "Belgium": [ "NNP", "NN" ], "Rumpelstiltskin": [ "NNP" ], "lease": [ "NN", "VBP", "VB" ], "zg": [ "NN" ], "travail": [ "NN" ], "Boards": [ "NNPS", "NNP" ], "Meyerson": [ "NNP" ], "leaderless": [ "JJ" ], "doctors": [ "NNS" ], "believe": [ "VBP", "VB" ], "Haiti": [ "NNP" ], "four-room": [ "JJ" ], "supposes": [ "VBZ" ], "Willowbridge": [ "NNP" ], "preconscious": [ "JJ" ], "Dispersals": [ "NNS" ], "referred": [ "VBN", "VBD" ], "ungodly": [ "JJ" ], "Wilhelm": [ "NNP" ], "supposed": [ "VBN", "JJ", "VBD" ], "sedate": [ "JJ" ], "Reunion": [ "NNP" ], "Tisch": [ "NNP" ], "low-price": [ "JJ" ], "semi-obscure": [ "JJ" ], "ordere": [ "VBN" ], "intravenously": [ "RB" ], "creases": [ "NNS" ], "denims": [ "NNS" ], "Empirically": [ "RB" ], "categorized": [ "VBN" ], "creased": [ "VBN" ], "self-sacrificing": [ "JJ" ], "orders": [ "NNS", "VBZ" ], "rollbacks": [ "NNS" ], "Kiz": [ "NNP" ], "Diseases": [ "NNPS" ], "flared": [ "VBD", "VBN", "JJ" ], "Kis": [ "NNP" ], "Confusion": [ "NN" ], "Kip": [ "NNP" ], "Clearer": [ "JJR" ], "fiscal-third": [ "JJ" ], "honors": [ "NNS", "VBZ", "JJ" ], "flares": [ "NNS", "VBZ" ], "costs": [ "NNS", "VBZ" ], "Goulding": [ "NNP" ], "Kim": [ "NNP" ], "deepening": [ "VBG" ], "Alpha": [ "NNP" ], "big-chested": [ "JJ" ], "Kid": [ "NNP", "NN" ], "small-arms": [ "JJ", "NNS" ], "fundamantal": [ "JJ" ], "state-of-the-art": [ "JJ" ], "Common": [ "NNP", "JJ" ], "moss": [ "NN" ], "ileum": [ "NN" ], "Ainsworth": [ "NNP" ], "Oceanside": [ "NNP" ], "corrupts": [ "VBZ" ], "goodwill": [ "NN" ], "Rapture": [ "NN" ], "pressure-cooker": [ "NN" ], "whetted": [ "VBN" ], "money-supply": [ "JJ", "NN" ], "Muncie-Peru": [ "NNP" ], "colonel": [ "NN" ], "Blandings": [ "NNPS", "NNP", "NNS" ], "standoff": [ "NN" ], "Lola": [ "NNP" ], "saxophonists": [ "NNS" ], "Catastrophe": [ "NN", "NNP" ], "Patent": [ "NNP", "NN" ], "Stature": [ "NN" ], "athlete-payoff": [ "JJ" ], "blue-ribbon": [ "JJ" ], "minimizing": [ "VBG" ], "poor-quality": [ "JJ" ], "co-operative": [ "JJ", "NN" ], "contorted": [ "JJ" ], "perfuses": [ "VBZ" ], "Chye": [ "NNP" ], "networks": [ "NNS", "VBZ" ], "NURSING": [ "NN" ], "distributed": [ "VBN", "VBD", "JJ" ], "roughshod": [ "JJ" ], "fiend": [ "NN" ], "override": [ "VB", "NN" ], "distributer": [ "NN" ], "distributes": [ "VBZ" ], "Crucible": [ "NNP" ], "Snoozing": [ "VBG" ], "Brethen": [ "NNP" ], "revolts": [ "NNS" ], "Dublin": [ "NNP" ], "Thanksgiving": [ "NNP" ], "Anania": [ "NNP" ], "infuse": [ "VB" ], "Rescues": [ "NNS" ], "Aniskovich": [ "NNP" ], "Responsibility": [ "NNP" ], "theft": [ "NN" ], "Monaco": [ "NNP" ], "Switzerland-based": [ "JJ" ], "direct-selling": [ "JJ" ], "urinary": [ "JJ" ], "two-floor": [ "JJ" ], "remove": [ "VB", "VBP" ], "Rifkind": [ "NNP" ], "laches": [ "NN" ], "unfettered": [ "JJ", "VBN" ], "outdoor-maintenance": [ "NN" ], "thermometry": [ "NN" ], "Pennzoil\\/Texaco": [ "NNP" ], "still-undeveloped": [ "JJ" ], "potentiality": [ "NN" ], "cynical": [ "JJ" ], "Knoxville": [ "NNP" ], "Mough": [ "NN" ], "lion": [ "NN" ], "denunciations": [ "NNS" ], "Scorpios": [ "NNPS" ], "Majesties": [ "NNPS" ], "Toepfer": [ "NNP" ], "forthcoming": [ "JJ", "VBG" ], "materially": [ "RB" ], "drought-induced": [ "JJ" ], "MFA": [ "NNP" ], "Staircase": [ "NN" ], "Judith": [ "NNP" ], "launch-vehicle": [ "NN" ], "political-corruption": [ "NN" ], "powerhouse": [ "NN" ], "MFS": [ "NNP" ], "Printed": [ "JJ", "NNP" ], "de-iodinate": [ "VB" ], "wave-length": [ "NN" ], "Krist": [ "UH" ], "burned": [ "VBN", "JJ", "VBD" ], "Postal": [ "NNP", "JJ" ], "transfered": [ "VBN" ], "RANDELL": [ "NNP" ], "Kriss": [ "NNP" ], "windswept": [ "JJ" ], "seeded": [ "VBN" ], "queers": [ "NNS" ], "egotist": [ "NN" ], "alarmist": [ "JJ" ], "dividends": [ "NNS" ], "complement": [ "NN", "VBP", "VB" ], "sheepe": [ "NNS" ], "barrack": [ "NN" ], "weaker-than-expected": [ "JJ" ], "bank-owned": [ "JJ" ], "Maker": [ "NN" ], "prams": [ "NNS" ], "folding": [ "VBG", "JJ", "NN" ], "reverse": [ "VB", "JJ", "NN", "RB", "VBP" ], "state-law": [ "NN" ], "clamps": [ "NNS" ], "tapered": [ "JJ", "VBN" ], "bonzes": [ "NNS" ], "transportation-services": [ "JJ" ], "Grass-roots": [ "JJ" ], "Bloedel": [ "NNP" ], "Taras-Tchaikovsky": [ "NNP" ], "J.J.G.M.": [ "NNP" ], "spume": [ "NN" ], "lesser-developed": [ "JJ", "JJR" ], "bongo": [ "NN" ], "shrines": [ "NNS" ], "seven-week": [ "JJ" ], "simple": [ "JJ", "NN" ], "Two-Head": [ "NNP" ], "Margie": [ "NNP" ], "Killow": [ "NNP" ], "simply": [ "RB", "JJ" ], "busters": [ "NNS" ], "consuming": [ "VBG", "NN" ], "Heiwa": [ "NNP" ], "longsuffering": [ "JJ" ], "Hoff": [ "NNP" ], "Revere": [ "NNP" ], "taxfree": [ "JJ" ], "toe-tips": [ "NNS" ], "HealthVest": [ "NNP", "JJS" ], "slips": [ "NNS", "VBZ" ], "blurting": [ "VBG" ], "Artificer": [ "NN" ], "presale": [ "JJ", "NN" ], "Offensive": [ "NNP", "NN" ], "Double-digit": [ "JJ" ], "Craven": [ "NNP" ], "Isquith": [ "NNP" ], "Bayer": [ "NNP", "NN" ], "Academicianship": [ "NN" ], "smoking-related": [ "JJ" ], "Sitwell": [ "NNP" ], "unnecessarily": [ "RB" ], "misunderstands": [ "VBZ" ], "history-reenactment": [ "NN" ], "Ferris": [ "NNP" ], "capsicum": [ "NN" ], "Lowery": [ "NNP" ], "rat": [ "NN", "VB" ], "joyful": [ "JJ" ], "Niagara": [ "NNP" ], "exachanges": [ "NNS" ], "lingo": [ "NN" ], "Caspita-brand": [ "JJ" ], "Divinity": [ "NNP" ], "pegging": [ "VBG" ], "heroically": [ "RB" ], "vulcanized": [ "VBN" ], "Cheney": [ "NNP" ], "bedstraw": [ "NN" ], "transom": [ "NN" ], "stubbornly": [ "RB" ], "facade": [ "NN" ], "ARCO": [ "NNP" ], "unaffected": [ "JJ" ], "OWI": [ "NNP" ], "prognosticator": [ "NN" ], "more-realistic": [ "JJ" ], "dishonor": [ "NN", "VB" ], "butcher": [ "NN" ], "Servanda": [ "FW" ], "relatively": [ "RB" ], "non-trade": [ "JJ" ], "passwords": [ "NNS" ], "neuroses": [ "NNS" ], "paddleball": [ "NN" ], "Asia-Pacific": [ "NNP", "JJ" ], "Grinned": [ "VBD" ], "expressiveness": [ "NN" ], "timid": [ "JJ" ], "predecessors": [ "NNS" ], "chieftains": [ "NNS" ], "nolo": [ "FW" ], "Ratican": [ "NNP" ], "noli": [ "NNS" ], "peppered": [ "VBD", "VBN", "JJ" ], "energy-efficient": [ "JJ" ], "vilifying": [ "VBG" ], "nineteenth-century": [ "JJ" ], "Yokohama": [ "NNP" ], "Harpoon": [ "NNP" ], "covets": [ "VBZ" ], "amps": [ "NNS" ], "signalled": [ "VBD" ], "DiVall": [ "NNP" ], "musicologists": [ "NNS" ], "junk-bond": [ "NN", "NNS", "JJ" ], "Mitchells": [ "NNP" ], "population...": [ ":" ], "Burgundy": [ "NNP" ], "distracting": [ "VBG", "JJ" ], "Takakura": [ "NNP" ], "openly": [ "RB" ], "re-used": [ "VBN" ], "stirrin": [ "VBG" ], "double-crossing": [ "NN" ], "letting": [ "VBG", "NN" ], "law-enforcement": [ "NN", "JJ" ], "dynastic": [ "JJ" ], "Theory": [ "NNP" ], "newsies": [ "NNS" ], "Staar": [ "NNP" ], "thyronine": [ "NN" ], "deliberately": [ "RB" ], "Snake": [ "NNP", "NN" ], "homier": [ "JJR" ], "voltmeter": [ "NN" ], "squawk": [ "VB" ], "Sommers": [ "NNP" ], "microcomputers": [ "NNS" ], "Atalanta\\/Sosnoff": [ "NNP" ], "Married": [ "VBN", "JJ", "NNP" ], "judgement": [ "NN" ], "foreigners": [ "NNS" ], "salutes": [ "NNS" ], "precompetitive": [ "JJ" ], "trail-blazing": [ "JJ" ], "tonalities": [ "NNS" ], "degenerated": [ "VBD", "VBN" ], "heftier": [ "JJR" ], "M.D.C.": [ "NNP", "NN" ], "cogs": [ "NNS" ], "Cohen": [ "NNP" ], "disks": [ "NNS" ], "demographiques": [ "FW" ], "shareholder\\/management": [ "NN" ], "Whatever": [ "WDT" ], "reharmonization": [ "NN" ], "Thankful": [ "JJ" ], "Einsteinian": [ "JJ" ], "depositary": [ "NN", "JJ", "NN|JJ" ], "neatest": [ "JJS" ], "composites": [ "NNS" ], "jibes": [ "NNS" ], "humorous": [ "JJ" ], "Tevye": [ "NNP" ], "martial": [ "JJ" ], "doorkeeper": [ "NN" ], "ornaments": [ "NNS", "VBZ" ], "Whoa": [ "UH" ], "Gotshal": [ "NNP" ], "Cinegrill": [ "NNP" ], "jewelry": [ "NN" ], "Psychologically": [ "RB" ], "pre-planning": [ "NN" ], "Nehf": [ "NNP" ], "pudding": [ "NN" ], "Macheski": [ "NNP" ], "Fault": [ "NNP" ], "nondestructive": [ "JJ" ], "aflame": [ "JJ" ], "dismally": [ "RB" ], "cameraman": [ "NN" ], "patient": [ "NN", "JJ" ], "integrals": [ "NNS" ], "taxing": [ "VBG", "JJ", "NN" ], "P-5-39": [ "NNP" ], "Lena": [ "NNP" ], "subconscious": [ "JJ", "NN" ], "Praisegod": [ "NNP", "JJ" ], "crap": [ "NN", "UH" ], "uptrend": [ "NN" ], "Polsky": [ "NNP" ], "constrains": [ "VBZ" ], "megaton": [ "NN" ], "goods": [ "NNS" ], "Bart": [ "NNP" ], "juste": [ "FW" ], "constraint": [ "NN" ], "goody": [ "UH" ], "oatmeal": [ "NN" ], "Linking": [ "VBG" ], "Bare": [ "JJ" ], "Beauclerk": [ "NNP" ], "Bari": [ "NNP" ], "Leni": [ "NNP" ], "Barn": [ "NNP" ], "Merksamer": [ "NNP" ], "Cantwell": [ "NNP" ], "Meltnomah": [ "NNP" ], "commanding": [ "VBG", "JJ", "NN" ], "nonperformers": [ "NNS" ], "Lattimer": [ "NNP" ], "Millennium": [ "NN" ], "buffetting": [ "NN" ], "remembrance": [ "NN" ], "adequacy": [ "NN" ], "pathologic": [ "JJ" ], "Hermitage": [ "NNP" ], "pharmaceuticals": [ "NNS" ], "Departures": [ "NNP" ], "HOPES": [ "NNS", "VBZ" ], "glow": [ "NN", "VB" ], "Sens.": [ "NNP", "NNS", "NNPS" ], "opponent": [ "NN" ], "groomsmen": [ "NNS" ], "V-22": [ "NNP" ], "frenzied": [ "JJ" ], "pounded": [ "VBD", "VBN" ], "Watergate": [ "NNP" ], "anti-dumping": [ "JJ" ], "impure": [ "JJ" ], "Shock": [ "NN" ], "gauss": [ "NN" ], "Collegiate": [ "NNP" ], "crumminess": [ "NN" ], "boys": [ "NNS" ], "sideshow": [ "NN" ], "cram": [ "JJ" ], "Terrell": [ "NNP" ], "cathedra": [ "FW" ], "saddlebags": [ "NNS" ], "Mattathias": [ "NNP" ], "billion-peso": [ "JJ" ], "Kurabo": [ "NNP" ], "Toyobo": [ "NNP" ], "cookie-and-cracker": [ "JJ" ], "Theaters": [ "NNS" ], "Books": [ "NNS", "NNP", "NNPS" ], "exploration": [ "NN" ], "aversion": [ "NN" ], "jumbo": [ "JJ", "NN" ], "drinking-water": [ "NN" ], "precipitated": [ "VBD", "VBN" ], "Colgate": [ "NNP" ], "widowers": [ "NNS" ], "geese": [ "NNS" ], "prevented": [ "VBN", "VBD" ], "mealynosed": [ "JJ" ], "singly": [ "RB" ], "Terminal": [ "NNP", "JJ" ], "single": [ "JJ", "VBP", "NN", "RB", "VB" ], "Sprinkled": [ "VBN" ], "necks": [ "NNS" ], "well-house": [ "JJ" ], "triglycerides": [ "NNS" ], "chance": [ "NN", "JJ", "VB", "VBP" ], "gametes": [ "NNS" ], "Mar": [ "NNP" ], "Manor": [ "NNP" ], "Manos": [ "NNP" ], "Berton": [ "NNP" ], "Max": [ "NNP", "NN" ], "cohesive": [ "JJ" ], "Oh-Hyun": [ "NNP" ], "excuses": [ "NNS", "VBZ" ], "mobcaps": [ "NNS" ], "Mae": [ "NNP" ], "Mad": [ "NNP", "JJ" ], "Mag": [ "NNP" ], "Mai": [ "NNP" ], "assassinate": [ "VB" ], "Reinstatement": [ "NN" ], "Mal": [ "NNP" ], "Achievement": [ "NNP" ], "Man": [ "NN", "UH", "NNP" ], "brushing": [ "VBG", "NN" ], "Rube": [ "NNP" ], "ultra-modern": [ "JJ" ], "importunities": [ "NNS" ], "Casa": [ "NNP" ], "Carried": [ "VBN" ], "Asia\\": [ "JJ" ], "advanced-materials": [ "JJ" ], "Gaieties": [ "NNPS" ], "Cash": [ "NNP", "NN" ], "Cask": [ "NNP" ], "prepared": [ "VBN", "VBD", "JJ" ], "miscarried": [ "VBD", "VBN" ], "Cast": [ "VBN", "VBP" ], "Nigger": [ "NN" ], "Carrier": [ "NNP", "NN" ], "Cass": [ "NNP" ], "prepares": [ "VBZ" ], "stoppages": [ "NNS" ], "freeways": [ "NNS" ], "rallied": [ "VBD", "VBN" ], "cross-party": [ "JJ" ], "policewoman": [ "NN" ], "Kotman": [ "NNP" ], "Elkin": [ "NNP" ], "m.p.h.": [ "NN" ], "Tunisia": [ "NNP" ], "horizontal-restraints": [ "NNS" ], "speculations": [ "NNS" ], "Its": [ "PRP$", "NNP" ], "dispassionate": [ "JJ" ], "competitveness": [ "NN" ], "Leica": [ "NNP" ], "bergs": [ "NNS" ], "Asian": [ "JJ", "NNP" ], "rallies": [ "NNS", "VBZ" ], "enrichment": [ "NN" ], "initiating": [ "VBG" ], "potboiler": [ "NN" ], "competition-enhancers": [ "NNS" ], "arkylbenzene": [ "NN" ], "Sterlings": [ "NNPS" ], "commoner": [ "JJR" ], "Y.M.C.A.": [ "NNP" ], "fecund": [ "JJ" ], "ozone-forming": [ "JJ" ], "Delegations": [ "NNS" ], "unfaithful": [ "JJ" ], "Yvon": [ "NNP" ], "Drifting": [ "VBG" ], "Generales": [ "NNP" ], "monolithically": [ "RB" ], "Camaros": [ "NNS" ], "helps": [ "VBZ", "VBP", "NNS" ], "Aborted": [ "JJ" ], "pianistic": [ "JJ" ], "anti-shoplifting": [ "JJ" ], "Seduction": [ "NN", "NNP" ], "economic-policy": [ "NN" ], "Region": [ "NNP", "NN" ], "rhyme": [ "NN" ], "agitating": [ "VBG" ], "huddled": [ "VBD", "VBN", "JJ" ], "PrimeTime": [ "NNP" ], "micelles": [ "NNS" ], "huddles": [ "NNS" ], "Mussolinis": [ "NNPS" ], "slave-owners": [ "NNS" ], "Folcroft": [ "NNP" ], "non-Jew": [ "NN" ], "aromatick": [ "JJ" ], "second-by-second": [ "JJ" ], "False": [ "NNP", "JJ" ], "tubs": [ "NNS" ], "prototypes": [ "NNS" ], "married": [ "VBN", "VBD", "JJ" ], "prototyped": [ "VBN" ], "investor-owned": [ "JJ" ], "Griffith": [ "NNP" ], "sewage": [ "NN" ], "sun-drenched": [ "JJ" ], "Vehicle": [ "NNP", "NN" ], "sulfide": [ "NN" ], "synergism": [ "NN" ], "Dauphin": [ "NNP" ], "giblet": [ "NN" ], "Alemagna": [ "NNP" ], "under-developed": [ "JJ" ], "restates": [ "VBZ" ], "clean-cut": [ "JJ" ], "Sanga": [ "NNP" ], "Ory": [ "NNP" ], "discount-brokerage": [ "NN" ], "anti-virus": [ "JJ" ], "Orr": [ "NNP" ], "Admarketing": [ "NNP" ], "J.V.": [ "NNP" ], "crossed": [ "VBD", "VBN" ], "Ord": [ "NNP" ], "Ore": [ "NNP" ], "exercise": [ "NN", "VBP", "VB" ], "Marty": [ "NNP" ], "misdeeds": [ "NNS" ], "personification": [ "NN" ], "exchange": [ "NN", "VB", "VBP" ], "leveraging": [ "VBG", "NN" ], "pomaded": [ "VBN" ], "nimbly": [ "RB" ], "jointly": [ "RB" ], "outlying": [ "JJ" ], "nimble": [ "JJ" ], "objects": [ "NNS", "VBZ" ], "HOUSTON-CALGARY": [ "NNP" ], "begonia": [ "NN" ], "implicit": [ "JJ" ], "Boyer": [ "NNP" ], "design": [ "NN", "VB", "VBP" ], "Chinese": [ "JJ", "NNPS", "NNP", "NNS", "NN" ], "numbness": [ "NN" ], "many-faced": [ "JJ" ], "paperboard": [ "NN" ], "Gantos": [ "NNP" ], "next-door": [ "JJ" ], "non-college": [ "JJ" ], "Ishtar": [ "NNP" ], "weekday": [ "NN", "JJ" ], "existent": [ "JJ", "NN" ], "courting": [ "VBG", "NN" ], "O.G.": [ "NNP" ], "lummox": [ "NN" ], "formulated": [ "VBN", "VBD" ], "Passive": [ "NNP" ], "State-capitol": [ "NN" ], "reassignments": [ "NNS" ], "findings.": [ "NNS" ], "formulates": [ "VBZ" ], "privately": [ "RB" ], "resales": [ "NNS" ], "sewers": [ "NNS" ], "festivals": [ "NNS" ], "Ferdinando": [ "NNP" ], "gateway": [ "NN" ], "Y.S.": [ "NNP" ], "menarches": [ "NNS" ], "Bynoe": [ "NNP" ], "bested": [ "VBN", "VBD" ], "nauseated": [ "VBN", "JJ" ], "than...": [ ":" ], "Forty-seven": [ "JJ" ], "wind-driven": [ "JJ" ], "Rabinowitz": [ "NNP" ], "bestes": [ "NNS" ], "Iran\\": [ "NNP" ], "Seven-Eleven": [ "NNP" ], "upcoming": [ "JJ" ], "endurable": [ "JJ" ], "dupes": [ "VBZ" ], "capitalizing": [ "VBG" ], "apprenticed": [ "VBN" ], "enviously": [ "RB" ], "unforgiving": [ "JJ" ], "duped": [ "VBN" ], "Lambda": [ "NNP" ], "atone": [ "VB" ], "Kazuo": [ "NNP" ], "foreign-exchange-rate": [ "JJ", "NN" ], "ace": [ "NN" ], "f": [ "NN" ], "scripture": [ "NN" ], "Frame": [ "NN" ], "misfired": [ "VBN" ], "Nadeau": [ "NNP" ], "Comtes": [ "NNP" ], "Icterus": [ "FW" ], "soon-to-be": [ "JJ" ], "state-court": [ "NN" ], "reserved": [ "VBN", "VBD", "JJ" ], "Mobilization": [ "NNP" ], "Fenwick": [ "NNP" ], "Regent": [ "NNP" ], "P.I.": [ "NN" ], "exclaims": [ "VBZ" ], "prize-fight": [ "JJ" ], "MITI": [ "NNP" ], "built-detergent": [ "JJ" ], "Phonemes": [ "NNS" ], "magnificently": [ "RB" ], "isopleths": [ "NNS" ], "curving": [ "VBG" ], "Pfohl": [ "NNP" ], "democracy": [ "NN" ], "awkwardness": [ "NN" ], "timetables": [ "NNS" ], "boxing": [ "NN" ], "grimaces": [ "NNS" ], "sketchiest": [ "JJS" ], "First-section": [ "JJ" ], "Devesa": [ "NNP" ], "revs": [ "VBZ" ], "PacifiCare": [ "NNP" ], "Tutu": [ "NNP" ], "Chiefly": [ "RB" ], "masterpieces": [ "NNS" ], "pre-1917": [ "JJ" ], "twelve-year": [ "JJ" ], "Knightes": [ "NNP" ], "legality": [ "NN" ], "bluff": [ "NN", "JJ" ], "terrier": [ "NN" ], "trifling": [ "JJ" ], "ambiguous": [ "JJ" ], "counterbalanced": [ "VBN" ], "Dili": [ "NNP" ], "confiscatory": [ "JJ" ], "bind": [ "NN", "VB", "VBP" ], "bond-financed": [ "JJ" ], "Highlander": [ "NNP" ], "Oshinsky": [ "NNP" ], "test-drive": [ "VB", "VBP" ], "poaches": [ "VBZ" ], "re-open": [ "VB" ], "oil-finding": [ "JJ" ], "bins": [ "NNS" ], "Capable": [ "JJ" ], "institutional": [ "JJ" ], "Millis": [ "NNP" ], "widowed": [ "VBN", "JJ" ], "Cecelia": [ "NNP" ], "kidney-stone": [ "NN" ], "death-penalty": [ "NN", "JJ" ], "agricultural": [ "JJ" ], "Millie": [ "NNP" ], "delineating": [ "VBG" ], "Swiss-based": [ "JJ" ], "McLoughlin": [ "NNP" ], "decorum": [ "NN" ], "Benefactor": [ "NNP" ], "Negro": [ "NNP", "JJ" ], "Bolovens": [ "NNP" ], "Pressure": [ "NN", "NNP" ], "GALAXY": [ "NN" ], "cardholder": [ "NN" ], "machinations": [ "NNS" ], "extradition": [ "NN" ], "Bardell": [ "NNP" ], "outbid": [ "VB", "VBD", "VBN", "VBP" ], "impervious": [ "JJ" ], "Huggies": [ "NNPS" ], "Bulge": [ "NNP" ], "frontiers": [ "NNS" ], "self-satisfaction": [ "NN" ], "landau": [ "NN" ], "seven-iron": [ "NN" ], "Zwelakhe": [ "NNP" ], "Vancouver-based": [ "JJ" ], "fast-selling": [ "JJ" ], "Seagull": [ "NNP" ], "pre-bankruptcy": [ "NN" ], "Daybreak": [ "NNP" ], "thrill": [ "NN", "VB" ], "Wuer": [ "NNP" ], "Aureomycin": [ "NN", "NNP" ], "blazing": [ "VBG", "JJ" ], "SUNDSTRAND": [ "NNP" ], "Viper": [ "NNP" ], "ROSS": [ "NNP" ], "Fonz": [ "NNP", "NN" ], "interlayer": [ "NN" ], "Tewksbury": [ "NNP" ], "junkie": [ "NN" ], "casuistry": [ "NN" ], "Chaffey": [ "NNP" ], "salesman": [ "NN" ], "unoriginal": [ "JJ" ], "Scotia": [ "NNP" ], "Molvar": [ "NNP" ], "relinquishing": [ "VBG", "NN" ], "Chestman": [ "NNP" ], "milk-chocolate": [ "JJ" ], "Hallwood": [ "NNP" ], "Hirzy": [ "NNP" ], "deras": [ "FW" ], "smog": [ "NN" ], "technically": [ "RB" ], "Vallfart": [ "NNP" ], "Douce": [ "NNP" ], "roughened": [ "VBN" ], "Judicial": [ "NNP", "JJ" ], "Ashcroft": [ "NNP" ], "ill-prepared": [ "JJ" ], "pony-tailed": [ "JJ" ], "Senator": [ "NNP" ], "semi-independent": [ "JJ" ], "afterward": [ "RB" ], "Reefs": [ "NNS" ], "interaction": [ "NN" ], "Morrell": [ "NNP" ], "Nikkei": [ "NNP" ], "orations": [ "NNS" ], "Outokumpu": [ "NNP" ], "Pleasantville": [ "NNP" ], "Welton": [ "NNP" ], "Coincident": [ "JJ" ], "Hermione": [ "NNP" ], "scalding": [ "VBG" ], "fast-spreading": [ "JJ" ], "sprawled": [ "VBN", "VBD", "JJ" ], "tributes": [ "NNS" ], "strategic": [ "JJ" ], "microscopes": [ "NNS" ], "Winfield": [ "NNP" ], "Solar-powered": [ "JJ" ], "ESTABLISHMENT": [ "NN" ], "sockets": [ "NNS" ], "out-group": [ "NN" ], "multilayered": [ "JJ" ], "ancient": [ "JJ", "NN" ], "Excalibur": [ "NNP" ], "spurting": [ "VBG" ], "Stoppard": [ "NNP" ], "anti-Christian": [ "JJ" ], "pedigreed": [ "VBN" ], "unspecified": [ "JJ" ], "Coast": [ "NNP", "JJ", "NN" ], "Wackenhut": [ "NNP" ], "Joey": [ "NNP", "NN" ], "Vargas": [ "NNP" ], "cabin": [ "NN" ], "plantings": [ "NNS" ], "free-thinkers": [ "NNS" ], "Javier": [ "NNP" ], "MIServer": [ "NNP" ], "Rapunzel": [ "NNP" ], "Harmon": [ "NNP" ], "Legg": [ "NNP" ], "MacGyver": [ "NNP" ], "bindle": [ "NN" ], "sub-underwriting": [ "VBG" ], "bullet-riddled": [ "JJ" ], "home-computer": [ "NN" ], "flashed": [ "VBD", "VBN" ], "humped": [ "NN" ], "McAuliffe": [ "NNP" ], "mid-conversation": [ "NN" ], "xenophobic": [ "JJ" ], "flasher": [ "NN" ], "flashes": [ "NNS", "VBZ" ], "abolished": [ "VBN", "VBD" ], "athleticism": [ "NN" ], "imaginative": [ "JJ" ], "neutralize": [ "VB" ], "underpricing": [ "VBG" ], "Mintel": [ "NNP" ], "Nonperformers": [ "NNS" ], "Machine": [ "NNP", "NN" ], "Goodman": [ "NNP" ], "Minter": [ "NNP" ], "habitable": [ "JJ" ], "Gladden": [ "NNP" ], "Sphinx": [ "NNP" ], "apparently": [ "RB" ], "acceleration": [ "NN" ], "Oil": [ "NNP", "NN" ], "newfangled": [ "JJ" ], "mio": [ "FW" ], "min": [ "NN" ], "skillful": [ "JJ" ], "auctioning": [ "NN" ], "mid": [ "JJ" ], "royalty-free": [ "JJ" ], "mix": [ "NN", "VBP", "VB" ], "Stidger": [ "NNP" ], "shipyards": [ "NNS" ], "Knapp": [ "NNP" ], "autocratic": [ "JJ" ], "Siberia": [ "NNP" ], "Hanoi-backed": [ "JJ" ], "Robbie": [ "NNP" ], "computer-dependent": [ "JJ" ], "disappointments": [ "NNS" ], "oilseed": [ "NN" ], "Pharmacal": [ "NNP" ], "Printing": [ "NNP" ], "propagate": [ "VB" ], "Musically": [ "RB" ], "Moertel": [ "NNP" ], "sedan": [ "NN" ], "sally": [ "VB" ], "Kiyotaka": [ "NNP" ], "Trustco": [ "NNP" ], "Dukakis": [ "NNP" ], "request": [ "NN", "VB", "VBP" ], "crediting": [ "NN", "VBG" ], "graphs": [ "NNS" ], "Comrades": [ "NNPS" ], "artificially": [ "RB" ], "rendezvous": [ "NN" ], "near-market": [ "JJ" ], "skinny": [ "JJ" ], "INTEL": [ "NNP" ], "Masssachusetts": [ "NNP" ], "Invitation": [ "NNP" ], "Cordell": [ "NNP" ], "homeowner": [ "NN", "JJR" ], "cutting-and-pasting": [ "NN" ], "new-product": [ "NN", "JJ" ], "sidetrack": [ "VB" ], "interpeople": [ "JJ" ], "paternal": [ "JJ" ], "gasping": [ "VBG" ], "Worth": [ "NNP", "JJ" ], "staff": [ "NN", "VBP", "VB" ], "Hengeler": [ "NNP" ], "grabbed": [ "VBD", "VBN" ], "Pipgras": [ "NNP" ], "controls": [ "NNS", "VBZ" ], "coloreds": [ "NNS" ], "Rushall": [ "NNP" ], "York": [ "NNP" ], "fumbled": [ "VBD" ], "regional": [ "JJ" ], "fire-engine": [ "JJ" ], "Freshbake": [ "NNP" ], "inferior": [ "JJ" ], "re-assumed": [ "VBN" ], "Homes": [ "NNP", "NNS", "NNPS" ], "unsustainable": [ "JJ" ], "polyurethane": [ "NN" ], "Marubeni": [ "NNP" ], "weaker-performing": [ "JJ" ], "byproducts": [ "NNS" ], "swiftest": [ "JJS" ], "Malpass": [ "NNP" ], "Sterbas": [ "NNPS" ], "kilts": [ "NNS" ], "Laurents": [ "NNP" ], "command-and-control": [ "JJ" ], "Peebles": [ "NNP" ], "Geocryology": [ "NNP" ], "filleted": [ "VBN" ], "Christer": [ "NNP" ], "monochromatic": [ "JJ" ], "enhances": [ "VBZ" ], "constructing": [ "VBG" ], "condominiums": [ "NNS" ], "embezzle": [ "VB" ], "Petro": [ "NNP" ], "enhanced": [ "VBN", "VBD", "JJ" ], "psychical": [ "JJ" ], "inward-looking": [ "JJ" ], "awaits": [ "VBZ" ], "airline-interior": [ "JJ" ], "uncollectable": [ "JJ" ], "takeover-defense": [ "JJ" ], "school-age": [ "JJ" ], "Nakoma": [ "NNP" ], "rapers": [ "NNS" ], "Olaf": [ "NNP" ], "Yates": [ "NNP" ], "Daffynition": [ "NN", "NNP" ], "consentual": [ "JJ" ], "Lamarche": [ "NNP" ], "Olav": [ "NNP" ], "firmness": [ "NN" ], "Charlemagne": [ "NNP" ], "aeromedical": [ "JJ" ], "Islands": [ "NNPS", "NNP" ], "Olay": [ "NNP" ], "health-conscious": [ "JJ" ], "toothbrush": [ "NN" ], "exclaim": [ "VB" ], "joint-implants": [ "NNS" ], "Synchronized": [ "VBN" ], "Procurement": [ "NN" ], "TechDesign": [ "NNP" ], "taking": [ "VBG", "NN" ], "Woodwell": [ "NNP" ], "Conroy": [ "NNP" ], "devour": [ "VB", "VBP" ], "afraid": [ "JJ" ], "R/NNP.I.": [ "NN" ], "inflammatory": [ "JJ" ], "Marinvest": [ "NNP" ], "basins": [ "NNS" ], "backers": [ "NNS" ], "Maersk": [ "NNP" ], "keine": [ "FW" ], "basing": [ "VBG" ], "Rifkin": [ "NNP" ], "technocratic": [ "JJ" ], "Dunde": [ "NNP" ], "three-inch-wide": [ "JJ" ], "Hoelterhoff": [ "NNP" ], "restless": [ "JJ" ], "non-Manpower": [ "JJ" ], "highball": [ "NN", "VB" ], "elects": [ "VBZ" ], "Bulgarians": [ "NNPS" ], "spellbound": [ "VBN" ], "Periodically": [ "RB" ], "divvied": [ "VBN" ], "Blackjack": [ "NNP" ], "adapting": [ "VBG", "NN" ], "finisher": [ "NN" ], "self-locking": [ "JJ" ], "stationed": [ "VBN" ], "right-angle": [ "NN" ], "Magee": [ "NNP" ], "Maged": [ "NNP" ], "Betrayed": [ "NNP" ], "finished": [ "VBD", "JJ", "VB", "VBN" ], "Ethane": [ "NN" ], "sausages": [ "NNS" ], "DIRECTORY": [ "NN" ], "Mager": [ "NNP" ], "an": [ "DT", "CC", "JJ", "NNP", "," ], "Low-paying": [ "JJ" ], "multi": [ "NNS" ], "LBJ": [ "NNP" ], "well-administered": [ "JJ" ], "wellknown": [ "JJ", "NN" ], "Jurisdiction": [ "NNP" ], "smokeless": [ "JJ" ], "liquid-fuel": [ "NN" ], "deloused": [ "VBN" ], "energy-producing": [ "JJ" ], "Melton": [ "NNP" ], "hampering": [ "VBG" ], "deadness": [ "NN" ], "kinfolk": [ "NNS" ], "aw": [ "UH" ], "manually": [ "RB" ], "almost": [ "RB", "JJ" ], "dissent": [ "NN", "VBP", "VB" ], "micrometer": [ "NN" ], "Imperial": [ "NNP", "JJ", "NN" ], "pluck": [ "VB", "NN" ], "Yamanouchi": [ "NNP" ], "regression": [ "NN" ], "Bebop": [ "NNP" ], "incautiously": [ "RB" ], "drug-related": [ "JJ" ], "Stilts": [ "NNP" ], "SOS": [ "NNP" ], "Piggybacking": [ "VBG" ], "Heatwole": [ "NNP" ], "Glycerinated": [ "JJ" ], "Flatley": [ "NNP" ], "infer": [ "VB" ], "guises": [ "NNS" ], "Transitional": [ "JJ" ], "reporting": [ "VBG", "NN" ], "Sacco": [ "NNP" ], "Malloy": [ "NNP" ], "grandstand": [ "NN" ], "Reflections": [ "NNP" ], "takers": [ "NNS" ], "sunburn": [ "NN", "VB" ], "Reichhart": [ "NNP" ], "dickered": [ "VBD" ], "numbered": [ "VBN", "VBD" ], "bluesy": [ "JJ" ], "Beregevoy": [ "NNP" ], "Cowper": [ "NNP" ], "pickpocket": [ "NN" ], "bluest": [ "JJS" ], "Sequester": [ "NN" ], "McGlynn": [ "NNP" ], "Hornbeck": [ "NNP" ], "Washburn": [ "NNP" ], "muscle": [ "NN", "VB" ], "soviet": [ "JJ" ], "Montaigne": [ "NNP" ], "LICENSE": [ "NN" ], "ratify": [ "VB", "VBP" ], "rebuffing": [ "VBG" ], "consumer-price": [ "JJ", "NN" ], "breezier": [ "JJR" ], "restively": [ "RB" ], "miasmal": [ "JJ" ], "givebacks": [ "NNS" ], "dissuaded": [ "VBD", "VBN" ], "Solaia": [ "NNP" ], "Gill": [ "NNP" ], "more-personal": [ "JJ" ], "ads": [ "NNS" ], "desperadoes": [ "NNS" ], "Danilo": [ "NNP" ], "mathematically": [ "RB" ], "add": [ "VB", "VBP" ], "spirals": [ "NNS" ], "short-skirted": [ "JJ" ], "propositions": [ "NNS" ], "Smoldering": [ "VBG" ], "ado": [ "NN" ], "forays": [ "NNS", "VBZ" ], "match": [ "VB", "VBP", "NN" ], "unicorns": [ "NNS" ], "dimers": [ "NNS" ], "knee-length": [ "JJ" ], "molding": [ "NN", "VBG" ], "thoughtlessly": [ "RB" ], "Offices": [ "NNS", "NNPS", "NNP" ], "Officer": [ "NNP" ], "Benazir": [ "NNP" ], "more-than-average": [ "RB" ], "Throws": [ "VBZ" ], "four-part": [ "JJ" ], "GENERIC-DRUG": [ "NN" ], "ozone": [ "NN" ], "Scarlet": [ "NNP" ], "honeycombed": [ "JJ" ], "positionsthat": [ "NN" ], "Gotlieb": [ "NNP" ], "accessible": [ "JJ" ], "Oceanic": [ "NNP" ], "Oceania": [ "NNP" ], "propel": [ "VB", "VBP" ], "horselike": [ "JJ" ], "perfectionism": [ "NN" ], "proper": [ "JJ" ], "imagnation": [ "NN" ], "Givens": [ "NNP" ], "Coulomb": [ "NNP" ], "Lafontant": [ "NNP" ], "rattlesnake": [ "NN" ], "Gerdes": [ "NNP" ], "masked": [ "VBN", "VBD", "JJ" ], "bustling": [ "JJ", "VBG" ], "direct-sum": [ "NN" ], "ripped": [ "VBD", "VBN" ], "six-county": [ "JJ" ], "unprocurable": [ "JJ" ], "parentis": [ "FW" ], "pepper": [ "NN", "VB" ], "Prepulsid": [ "NN" ], "Yarrow": [ "NNP" ], "lessens": [ "VBZ" ], "Futures": [ "NNS", "NNP", "NNPS" ], "stellar": [ "JJ" ], "unevenly": [ "RB" ], "Investment-Grade": [ "NNP" ], "Fakty": [ "NNP" ], "ground-launched": [ "JJ" ], "book-entry": [ "JJ" ], "Gunthrop-Warren": [ "NNP" ], "about": [ "IN", "JJ", "RB", "RP", "RBR", "IN|RB" ], "brooded": [ "VBD" ], "mastiff": [ "NN" ], "Bouquet": [ "NNP" ], "nationals": [ "NNS" ], "boy-manager": [ "NN" ], "Domtar": [ "NNP" ], "coachman": [ "NN" ], "VICTORIES": [ "NNS" ], "fleshy": [ "JJ" ], "unreleased": [ "JJ" ], "Salinger": [ "NNP" ], "Comedie": [ "NNP" ], "unwind": [ "VB" ], "Zhong": [ "NNP" ], "Nomia": [ "NNP" ], "functional": [ "JJ", "NN" ], "unquestioningly": [ "RB" ], "Paternelle": [ "NNP" ], "boringly": [ "RB" ], "Vichy": [ "NNP" ], "gleaned": [ "VBN" ], "annee": [ "FW" ], "Sawhill": [ "NNP" ], "dizzying": [ "JJ", "VBG" ], "Yoon": [ "NNP" ], "stairwells": [ "NNS" ], "stainless": [ "JJ" ], "Single-color": [ "JJ" ], "contracts": [ "NNS", "NN", "VBZ" ], "damn-the-torpedoes": [ "JJ" ], "Vecchio": [ "NNP" ], "Adirondack": [ "NNP" ], "slang": [ "NN" ], "Ferron": [ "NNP" ], "Haying": [ "NN" ], "anti-androgens": [ "NNS" ], "rococo": [ "JJ", "NN" ], "dieters": [ "NNS" ], "repeater": [ "NN" ], "chatting": [ "VBG" ], "Arabians": [ "NNPS" ], "Legislating": [ "VBG" ], "tilled": [ "JJ" ], "steadied": [ "VBD", "VBN" ], "Unpaid": [ "JJ" ], "besmirching": [ "VBG" ], "vaguely-imagined": [ "JJ" ], "tiller": [ "NN" ], "multicolored": [ "JJ" ], "stratagems": [ "NNS" ], "Leasing": [ "NNP", "NN", "VBG" ], "non-management": [ "JJ", "NN" ], "Prisca": [ "NNP" ], "Kirin": [ "NNP" ], "hardware-store": [ "NN" ], "alliteration": [ "NN" ], "Mulrooney": [ "NNP" ], "Newbiggin": [ "NNP" ], "Harmony": [ "NNP", "NN" ], "skating": [ "VBG" ], "Caspita": [ "NNP" ], "RESIDENTIAL": [ "NNP" ], "topless": [ "JJ" ], "Bauhaus": [ "NNP" ], "Vegas-based": [ "JJ" ], "Witold": [ "NNP" ], "Mintz": [ "NNP" ], "DiFilippo": [ "NNP" ], "autism": [ "NN" ], "Mints": [ "NNS" ], "Conn.": [ "NNP" ], "commander-in-chief": [ "NN" ], "oaf": [ "NN" ], "Chai": [ "NNP" ], "oak": [ "NN" ], "Violent": [ "JJ" ], "oat": [ "NN" ], "overpopulation": [ "NN" ], "satirist": [ "NN" ], "Cronin": [ "NNP" ], "Xanadu": [ "NNP" ], "electrocardiograph": [ "NN" ], "Sainsbury": [ "NNP" ], "wallow": [ "VB" ], "Collingwood": [ "NNP" ], "wallop": [ "NN" ], "gloriously": [ "RB" ], "Diversify": [ "VB" ], "enterprises": [ "NNS" ], "goin": [ "VBG", "NN", "VB" ], "ear-piercing": [ "JJ" ], "Wander": [ "VB" ], "entreat": [ "VB" ], "al-Assad": [ "NNP" ], "lorded": [ "VBD" ], "Cattlemen": [ "NNPS" ], "parole": [ "NN", "JJ" ], "Techniques": [ "NNPS" ], "Leaf": [ "NN", "NNP" ], "Lead": [ "JJ", "NN", "VB" ], "Vaudois": [ "NNP" ], "traumas": [ "NNS" ], "Lean": [ "NNP", "VB" ], "suspenseful": [ "JJ" ], "hitch": [ "NN" ], "Lear": [ "NNP", "JJ" ], "facilities": [ "NNS" ], "Leap": [ "NNP" ], "heelsthe": [ "DT" ], "Burgess": [ "NNP" ], "Ceartaine": [ "JJ" ], "zombie": [ "NN" ], "Hoover": [ "NNP" ], "cracker-box": [ "JJ" ], "violate": [ "VB", "VBP", "JJ" ], "Beltway": [ "NNP", "NN" ], "crises": [ "NNS" ], "surfaceness": [ "NN" ], "snack-food": [ "NN" ], "agitator": [ "NN" ], "Knock": [ "VB" ], "under": [ "IN", "JJ", "RB", "RP" ], "honorific": [ "NN" ], "rightist": [ "JJ" ], "Mite": [ "NNP" ], "MAILINGS": [ "NNS" ], "Popeye": [ "NNP" ], "Mita": [ "NNP" ], "conjecture": [ "NN" ], "legislators": [ "NNS" ], "B-movie": [ "NN" ], "tampons": [ "NNS" ], "Krupp": [ "NNP" ], "Ollari": [ "NNP" ], "Chilly": [ "JJ" ], "jack": [ "VB", "NN" ], "Krupa": [ "NNP" ], "freethinkers": [ "NNS" ], "monkeys": [ "NNS" ], "Stones": [ "NNP", "NNPS" ], "Stoner": [ "NNP" ], "Reupke": [ "NNP" ], "gas-pipeline": [ "JJ" ], "Gotaas-Larsen": [ "NNP" ], "remoteness": [ "NN" ], "W.G.": [ "NNP" ], "Europeans": [ "NNPS", "NNP", "NNS" ], "Chiharu": [ "NNP" ], "bicycle": [ "NN" ], "faintest": [ "JJS" ], "Creamery": [ "NNP" ], "consistent": [ "JJ" ], "almond": [ "NN" ], "frosted": [ "VBD" ], "landmark": [ "NN", "JJ" ], "single-payment": [ "JJ" ], "Drawn": [ "VBN" ], "Delano": [ "NNP" ], "union-company": [ "JJ" ], "Gossage": [ "NNP" ], "pro-Western": [ "JJ", "NNP" ], "solemn": [ "JJ" ], "web-printing": [ "JJ" ], "griped": [ "VBD" ], "question...": [ ":" ], "parched": [ "VBN", "VBD", "JJ" ], "PROPOSAL": [ "NN" ], "most-recommended": [ "JJ" ], "busload": [ "NN" ], "Ethicist": [ "NN" ], "suable": [ "JJ" ], "undressing": [ "VBG", "NN" ], "Scarsdale": [ "NNP" ], "Encylopedia": [ "NN" ], "Ernest": [ "NNP" ], "aural": [ "JJ" ], "ventures": [ "NNS", "VBZ" ], "federal-right": [ "JJ" ], "Elisabeth": [ "NNP" ], "Andre": [ "NNP" ], "Malmud": [ "NNP" ], "well-bred": [ "JJ" ], "Katcher": [ "NNP" ], "Lefevre": [ "NNP" ], "punishment": [ "NN" ], "ventured": [ "VBD", "VBN" ], "Pensupreme": [ "NNP" ], "Ciceronian": [ "JJ" ], "Booz": [ "NNP" ], "Nemesis": [ "NNP" ], "stray": [ "JJ", "NN", "VB", "VBP" ], "straw": [ "NN", "JJ" ], "non-supervisory": [ "JJ" ], "Boot": [ "NNP", "NN" ], "Liston": [ "NNP" ], "strap": [ "VB", "JJ" ], "unofficially": [ "RB" ], "Wake-Up": [ "NNP" ], "Book": [ "NNP", "NN" ], "tolylene": [ "NN" ], "slicker": [ "NN" ], "Boon": [ "NNP" ], "mares": [ "NNS" ], "asset-trading": [ "NN" ], "power-transmission": [ "JJ" ], "swings": [ "NNS", "VBZ" ], "cawing": [ "VBG" ], "swingy": [ "JJ" ], "Physiologist": [ "NNP" ], "June": [ "NNP" ], "Jung": [ "NNP" ], "Ment": [ "NNP" ], "Diners": [ "NNP" ], "love-hate": [ "JJ" ], "Cowessett": [ "NNP" ], "Plutarch": [ "NNP" ], "billowing": [ "VBG" ], "grief": [ "NN" ], "Crowley": [ "NNP" ], "ardently": [ "RB" ], "Newsote": [ "NNP" ], "Fonta": [ "NNP" ], "four-year-old": [ "JJ" ], "Kirsch": [ "NNP" ], "hutch": [ "NN" ], "Financial": [ "NNP", "JJ" ], "Self-expression": [ "NN" ], "brandishing": [ "VBG" ], "tremendously": [ "RB" ], "overgeneralization": [ "NN" ], "boldest": [ "JJS" ], "Euro-consumers": [ "NNPS" ], "install": [ "VB", "VBP" ], "Warring": [ "NNP" ], "smoking-cessation": [ "NN" ], "finger-held": [ "JJ" ], "machinist": [ "NN" ], "addictive": [ "JJ" ], "earth-touching": [ "JJ" ], "whizzes": [ "NNS" ], "chainlike": [ "JJ" ], "Whippet": [ "NNP" ], "Polymerization": [ "NN" ], "mayhem": [ "NN" ], "U.S.-U.S.S.R.": [ "NNP" ], "camellias": [ "NNS" ], "jetliner": [ "NN" ], "Poet": [ "NNP", "NN" ], "mortages": [ "NNS" ], "slower-than-expected": [ "JJ" ], "undisciplined": [ "JJ" ], "CF66": [ "NN" ], "vagrant": [ "JJ" ], "help-wanted": [ "JJ" ], "Felicity": [ "NNP" ], "Hartford": [ "NNP" ], "low": [ "JJ", "NN", "RB", "RP" ], "Gretchen": [ "NNP" ], "aconte": [ "NN" ], "mimetically": [ "RB" ], "eyeballs": [ "NNS" ], "Spoilage": [ "NN" ], "badly": [ "RB" ], "kilowatt": [ "NN" ], "Diamandis": [ "NNP" ], "Vinogradoff": [ "NNP" ], "unwrinkled": [ "JJ" ], "jumping": [ "VBG", "NN" ], "benediction": [ "NN" ], "Lithuanians": [ "NNPS" ], "Etc.": [ "NNP" ], "puzzles": [ "NNS", "VBZ" ], "criminalization": [ "NN" ], "intermeshed": [ "VBN" ], "optioned": [ "VBN" ], "poppyseed": [ "NN" ], "trillions": [ "NNS" ], "Lloyd": [ "NNP", "NN" ], "Sibyls": [ "NNPS" ], "roused": [ "VBD" ], "Wolf": [ "NNP", "NN" ], "vapor": [ "NN" ], "D.T.": [ "NNP" ], "shadier": [ "JJR" ], "interpreting": [ "VBG" ], "constatation": [ "NN" ], "alternation": [ "NN" ], "biomedical": [ "JJ" ], "underside": [ "NN" ], "MACPOST": [ "NNP" ], "synonyms": [ "NNS" ], "synonymy": [ "NN" ], "Flow-Mole": [ "NNP" ], "replicating": [ "VBG" ], "video": [ "NN", "JJ" ], "fittings": [ "NNS" ], "Devlin": [ "NNP" ], "Tinker": [ "NNP" ], "condition": [ "NN", "VBP", "VB" ], "Syndicate": [ "NNP", "NN" ], "wholesale-price": [ "JJ" ], "tourist": [ "NN" ], "sport-utility": [ "JJ" ], "Schueler": [ "NNP" ], "eye-beamings": [ "NNS" ], "wobbling": [ "VBG" ], "Maintain": [ "VBP" ], "disreputable": [ "JJ" ], "bitterest": [ "JJS" ], "shadows": [ "NNS" ], "interrelationship": [ "NN" ], "superintendents": [ "NNS" ], "Giardini\\/Russell": [ "NNP" ], "erotically": [ "RB" ], "shadowy": [ "JJ" ], "most-jingoistic": [ "JJ" ], "Dizzy": [ "NNP" ], "Tropez": [ "NNP" ], "York-Pennsylvania": [ "NNP" ], "Khasi": [ "NNP" ], "beta-thalassemia": [ "NN" ], "Mastro": [ "NNP" ], "waffle": [ "NN", "VB" ], "Damascus": [ "NNP" ], "global-funds": [ "JJ" ], "practising": [ "VBG" ], "weather-related": [ "JJ" ], "Single-cell": [ "JJ" ], "depress": [ "VB", "VBP" ], "islanders": [ "NNS" ], "collaborates": [ "VBZ" ], "motel": [ "NN" ], "tonsil": [ "NN" ], "collaborated": [ "VBD", "VBN" ], "motet": [ "NN" ], "choreographic": [ "JJ" ], "reappraisals": [ "NNS" ], "heavenly": [ "JJ" ], "Robinson-Humphrey": [ "NNP" ], "creole": [ "NN" ], "dusky": [ "JJ" ], "calmest": [ "JJS" ], "bitingly": [ "RB" ], "Bardall": [ "NNP" ], "pre-fund": [ "VB" ], "Metal": [ "NNP", "NN" ], "east-to-west": [ "RB" ], "ever": [ "RB", "RBR", "RP" ], "polarize": [ "VB" ], "accidental-war": [ "NN" ], "Wheatfield": [ "NNP" ], "trances": [ "NNS" ], "speechwriting": [ "NN" ], "Studies": [ "NNS", "NNPS", "NNP" ], "BTU": [ "NNP" ], "pulpits": [ "NNS" ], "silicate": [ "NN" ], "companies...": [ ":" ], "BTR": [ "NNP" ], "Broughten": [ "NNP" ], "correctness": [ "NN" ], "Rittenhouse": [ "NNP" ], "pence": [ "NN", "NNS" ], "Creditbanken": [ "NNP" ], "hopeless": [ "JJ" ], "BTL": [ "NNP" ], "shootin": [ "VBG" ], "highways": [ "NNS", "JJ" ], "Tensions": [ "NNPS" ], "Two-Way": [ "NNP" ], "loose-loaded": [ "JJ" ], "accidentally": [ "RB" ], "restrict": [ "VB", "VBP" ], "awoke": [ "VBD" ], "manumission": [ "NN" ], "Ammunition": [ "NNP" ], "dysfunction": [ "NN" ], "typists": [ "NNS" ], "Garrison": [ "NNP" ], "Heintze": [ "NNP" ], "lecturing": [ "VBG", "NN" ], "porno-inspired": [ "JJ" ], "tos": [ "NNS" ], "top": [ "JJ", "NN", "VBP", "RB", "VB" ], "Beman": [ "NNP" ], "tow": [ "NN", "RB" ], "tot": [ "NN" ], "Devario": [ "NNP" ], "ton": [ "NN" ], "too": [ "RB" ], "flippant": [ "JJ" ], "family-business": [ "NN" ], "inconvenient": [ "JJ" ], "leach": [ "VB" ], "toe": [ "NN", "VB" ], "curtains": [ "NNS" ], "murder": [ "NN", "VB" ], "indiscreet": [ "JJ" ], "outdistancing": [ "VBG" ], "not-so-trivial": [ "JJ" ], "hammerlock": [ "NN" ], "Joneses": [ "NNPS" ], "pondering": [ "VBG" ], "solicitor": [ "NN" ], "flimflam": [ "NN" ], "Forerunner": [ "NNP" ], "nudging": [ "VBG" ], "various-sized": [ "JJ" ], "garlanded": [ "VBD" ], "cogently": [ "RB" ], "pyramidal": [ "JJ" ], "separatist": [ "JJ" ], "bulletins": [ "NNS", "VBZ" ], "roles": [ "NNS" ], "wide-body": [ "JJ" ], "Monahan": [ "NNP" ], "precocious": [ "JJ" ], "TRADING": [ "NN" ], "Solis-Cohen": [ "NNP" ], "prone": [ "JJ", "RB" ], "rear-guard": [ "JJ" ], "Zinser": [ "NNP" ], "Sausage": [ "NNP", "NN" ], "bards": [ "NNS" ], "Shires": [ "NNP" ], "Homerun": [ "NN" ], "far-left": [ "JJ", "NN" ], "overstrained": [ "VBN" ], "careening": [ "VBG" ], "Chases": [ "NNPS" ], "Syb": [ "NNP" ], "scriptures": [ "NNS" ], "homesteaders": [ "NNS" ], "snow": [ "NN", "VB" ], "Appendix": [ "NN" ], "Haementeria": [ "FW" ], "snob": [ "NN" ], "DePauw": [ "NNP" ], "inured": [ "VBN" ], "Bermudez": [ "NNP" ], "mammary": [ "JJ" ], "capitalization": [ "NN" ], "though": [ "IN", "RB", "VBD" ], "direct-seller": [ "NN" ], "outscoring": [ "VBG" ], "excelling": [ "VBG" ], "preset": [ "JJ" ], "plenty": [ "NN", "JJ", "RB" ], "Beallsville": [ "NNP" ], "disarmed": [ "JJ", "VBN" ], "Hargrove": [ "NNP" ], "late-night": [ "JJ" ], "interject": [ "VBP" ], "prevails": [ "VBZ" ], "devastating": [ "JJ", "VBG" ], "uncomplainingly": [ "RB" ], "Garfield": [ "NNP" ], "reputation": [ "NN" ], "Laval": [ "NNP" ], "rupees": [ "NNS" ], "attorney-disciplinary": [ "JJ" ], "prevaile": [ "VB" ], "section": [ "NN", ",", "NNP" ], "capital-markets": [ "JJ" ], "v.d": [ "NNP" ], "uncompetitive": [ "JJ" ], "intelligence-briefing": [ "NN" ], "radii": [ "NNS" ], "radio": [ "NN", "VB" ], "Hartman": [ "NNP" ], "Saltonstall": [ "NNP" ], "sunsets": [ "NNS" ], "carbine": [ "NN" ], "symphonic": [ "JJ" ], "Alphametrics": [ "NNP" ], "Gilmartin": [ "NNP" ], "Records": [ "NNPS", "NNP", "NNS" ], "ozone-damaging": [ "JJ" ], "printouts": [ "NNS" ], "lodge": [ "NN", "VB" ], "announce": [ "VB", "VBP" ], "fourth-down": [ "NN" ], "cast-proof": [ "JJ" ], "continuity": [ "NN" ], "Crosser": [ "NNP" ], "Aaa": [ "JJ" ], "Pepsi": [ "NNP", "NNS" ], "Turns": [ "VBZ" ], "hostility": [ "NN" ], "watch": [ "VB", "JJ", "NN", "VBP" ], "Aah": [ "UH" ], "intereference": [ "NN" ], "frying": [ "VBG", "NN" ], "Kirnan": [ "NNP" ], "reinstall": [ "VB" ], "Saturdays": [ "NNPS", "NNP", "NNS" ], "overbearing": [ "JJ" ], "unlatch": [ "VB" ], "Hastening": [ "VBG" ], "nawth": [ "NN" ], "erupt": [ "VB", "VBP" ], "cozier": [ "JJR" ], "Glen": [ "NNP" ], "Revco": [ "NNP", "NN" ], "above-mentioned": [ "JJ" ], "car-crash": [ "JJ" ], "inhabitation": [ "NN" ], "Glee": [ "NN" ], "Heenan": [ "NNP" ], "Abide": [ "NNP" ], "share-purchase": [ "NN" ], "McCarver": [ "NNP" ], "wood-grained": [ "JJ" ], "antifreeze": [ "NN" ], "recoverable": [ "JJ" ], "cartoonish": [ "JJ" ], "gentility": [ "NN" ], "Joiners": [ "NNPS" ], "unalienable": [ "JJ" ], "catalogue": [ "NN" ], "bellowing": [ "VBG" ], "approach": [ "NN", "VB", "VBP" ], "pee-wee": [ "JJ" ], "Batibot": [ "NNP" ], "Wanders": [ "NNP" ], "indecision": [ "NN" ], "southeast": [ "RB", "JJ", "NN" ], "Manila-based": [ "JJ" ], "orange-and-blue": [ "JJ" ], "vomiting": [ "VBG", "NN" ], "predates": [ "VBZ" ], "fragrance": [ "NN" ], "irregular": [ "JJ", "NN" ], "Chances": [ "NNS", "NNP" ], "credit-card": [ "NN", "JJ" ], "Thomson": [ "NNP", "NN" ], "Computer": [ "NNP", "NN" ], "games": [ "NNS" ], "variance": [ "NN" ], "evenutally": [ "RB" ], "Sankyo": [ "NNP" ], "oleophilic": [ "JJ" ], "Barrick": [ "NNP" ], "Rhinoceros": [ "NNP" ], "semi-liquefied": [ "JJ" ], "litigant": [ "NN" ], "round-trip": [ "JJ", "NN" ], "casters": [ "NNS" ], "Publicity": [ "NN" ], "Udayan": [ "NNP" ], "re-examined": [ "VBD" ], "Theon": [ "NNP" ], "transparencies": [ "NNS" ], "Sandman": [ "NNP" ], "Hazard": [ "NNP" ], "quickly": [ "RB" ], "universals": [ "NNS" ], "communion": [ "NN" ], "expected": [ "VBN", "VBD", "JJ", "VB" ], "Relating": [ "VBG" ], "over-land": [ "JJ" ], "sloppiness": [ "NN" ], "shrewdest": [ "JJS" ], "Kartasasmita": [ "NNP" ], "Kasai": [ "NNP" ], "Cru": [ "NNP" ], "drugs": [ "NNS" ], "steamroller": [ "NN" ], "per-subscriber": [ "NN" ], "nomenklatura": [ "FW" ], "Anaheim": [ "NNP" ], "Scituate": [ "NNP" ], "Trans": [ "NNP" ], "Conklin": [ "NNP" ], "deeps": [ "NNS" ], "extruded": [ "VBN", "JJ" ], "safety-seat": [ "NN" ], "Anti-Christ": [ "NNP" ], "home-video": [ "JJ", "NN" ], "Saturday-night": [ "JJ" ], "stopping": [ "VBG", "NN" ], "Souper": [ "NNP" ], "air-to-ground": [ "JJ" ], "extruder": [ "NN" ], "subnormal": [ "JJ" ], "Giulietta": [ "NNP" ], "pre-transfer": [ "JJ" ], "pyocanea": [ "NN" ], "five-a-week": [ "JJ" ], "expenses": [ "NNS" ], "Principle": [ "NN", "NNP" ], "exterior": [ "JJ", "NN" ], "bumper-sticker": [ "NN" ], "drug-industry": [ "NN" ], "Golan": [ "NNP" ], "leaches": [ "NNS" ], "anti-oil": [ "JJ" ], "Dracula": [ "NNP" ], "labor-backed": [ "JJ" ], "repudiating": [ "VBG" ], "blood-alcohol": [ "NN" ], "bifocals": [ "NNS" ], "grocery-products": [ "NNS" ], "Inventor": [ "NNP" ], "Schweitzers": [ "NNPS" ], "Lebanese": [ "JJ", "NNPS", "NNP" ], "Skanska": [ "NNP" ], "macaroni-and-cheese": [ "NN" ], "Thunderbird": [ "NNP" ], "springtime": [ "NN" ], "Steffes": [ "NNP" ], "non-Hungarians": [ "NNPS" ], "Bristol": [ "NNP" ], "town-watching": [ "JJ" ], "McConnell": [ "NNP" ], "mustiness": [ "NN" ], "Upholds": [ "VBZ" ], "mother": [ "NN", "VB" ], "alarms": [ "NNS", "VBZ" ], "seasonal": [ "JJ" ], "six-shooter": [ "NN" ], "Fifty-three": [ "JJ" ], "Consolo": [ "NNP" ], "steel-flanged": [ "JJ" ], "Aerojet": [ "NNP" ], "thumbs": [ "NNS", "VBZ" ], "rhythmically": [ "RB" ], "periphrastic": [ "JJ" ], "elk": [ "NNS", "NN" ], "Koussevitzky": [ "NNP" ], "collars": [ "NNS" ], "ell": [ "NN" ], "elm": [ "NN" ], "niggers": [ "NNS" ], "educrats": [ "NNS" ], "Microlog": [ "NNP" ], "issuing": [ "VBG" ], "strolling": [ "VBG" ], "pivotal": [ "JJ" ], "Uhlmann": [ "NNP" ], "xylophones": [ "NNS" ], "bewhiskered": [ "JJ" ], "mounds": [ "NNS" ], "Reduces": [ "VBZ" ], "addicts": [ "NNS" ], "full-point": [ "JJ" ], "cultural": [ "JJ" ], "quicksand": [ "NN" ], "judge": [ "NN", "VB", "VBP" ], "Brownstein": [ "NNP" ], "roach": [ "NN" ], "Rembrandt": [ "NNP", "NN" ], "Reduced": [ "NNP", "JJ", "VBN" ], "sycophantishness": [ "NN" ], "Mazza": [ "NNP" ], "personal-income-tax": [ "JJ" ], "dishonest": [ "JJ" ], "comparability": [ "NN" ], "Hedda": [ "NNP" ], "arbitrary": [ "JJ" ], "trail-setters": [ "NNS" ], "non-firm": [ "JJ" ], "Robotics": [ "NNP" ], "Enhancements": [ "NNP" ], "frustrations": [ "NNS" ], "reinsured": [ "VBN" ], "successfully": [ "RB" ], "Kelly\\": [ "NNP" ], "PostScript": [ "NNP" ], "encumbrances": [ "NNS" ], "Francoise": [ "NNP" ], "roamed": [ "VBD" ], "Meurer": [ "NNP" ], "reinsurer": [ "JJR" ], "doorstep": [ "NN" ], "Cube": [ "NNP" ], "proceeding": [ "NN", "VBG" ], "Cuba": [ "NNP" ], "bargain-buying": [ "JJ" ], "Davy": [ "NNP" ], "Lasco": [ "NNP" ], "everything": [ "NN" ], "Dave": [ "NNP", "JJ" ], "Cubs": [ "NNPS", "NNP", "NNS" ], "Chris": [ "NNP" ], "buildin": [ "VBG" ], "sewing": [ "NN", "VBG" ], "T.V.": [ "NNP" ], "enunciate": [ "VB" ], "blooper": [ "NN" ], "pens": [ "NNS" ], "discount": [ "NN", "VBP", "JJ", "VB" ], "areaways": [ "NNS" ], "motor-industry": [ "NN" ], "NBC-Sears": [ "NNP" ], "permitted": [ "VBN", "JJ", "VBD" ], "mechanized": [ "JJ", "VBN" ], "chapter": [ "NN" ], "Knitwear": [ "NNP" ], "Madison": [ "NNP" ], "Niccolo": [ "NNP" ], "Grassy": [ "NNP" ], "Episcopalians": [ "NNPS" ], "cowboy": [ "NN" ], "trustworthy": [ "JJ" ], "non-itemized": [ "JJ" ], "Grasso": [ "NNP" ], "liquidity-short-selling": [ "NN" ], "Still": [ "RB", "NNP", "JJ" ], "rotations": [ "NNS" ], "Faberge": [ "NNP" ], "civic": [ "JJ" ], "Zajick": [ "NNP" ], "obtaining": [ "VBG" ], "naturalized": [ "VBN", "JJ" ], "inclusive": [ "JJ" ], "Venit": [ "NNP" ], "Hodel": [ "NNP" ], "Chains": [ "NNS" ], "classiest": [ "JJS" ], "Trastevere": [ "NNP", "NN" ], "git": [ "VB", "VBP" ], "Palicka": [ "NNP" ], "bootlegging": [ "NN" ], "counter-revolutionary": [ "JJ", "NN" ], "kryptonite": [ "NN" ], "Traditionalist": [ "NN" ], "transform": [ "VB", "VBP" ], "Epinal": [ "NNP" ], "gig": [ "NN" ], "virgin": [ "JJ", "NN" ], "Traditionalism": [ "NN" ], "seeker": [ "NN" ], "Kudlow": [ "NNP" ], "naught": [ "NN" ], "gim": [ "VB" ], "archives": [ "NNS" ], "ADV": [ "NNP" ], "intolerance": [ "NN" ], "ADT": [ "NNP" ], "steers": [ "VBZ", "NNS" ], "Norwood": [ "NNP" ], "Underclass": [ "JJ", "NNS" ], "attempted": [ "VBD", "JJ", "VBN" ], "AD\\": [ "NNP" ], "refashioning": [ "VBG" ], "illuminating": [ "JJ", "VBG" ], "ADB": [ "NNP" ], "ADC": [ "NNP" ], "ADN": [ "NNP" ], "Emotional": [ "JJ" ], "attesting": [ "VBG" ], "disharmony": [ "NN" ], "nesters": [ "NNS" ], "Ouellette": [ "NNP" ], "spleen": [ "NN" ], "ruined": [ "VBN", "JJ", "VBD" ], "most-polluted": [ "JJS" ], "quicksilver": [ "JJ", "NN" ], "simplifying": [ "VBG" ], "decorate": [ "VBP", "VB" ], "submitting": [ "VBG", "NN" ], "Horta": [ "NNP" ], "Surgery": [ "NNP" ], "JUNK": [ "NN" ], "shopping-center": [ "NN", "JJ" ], "fury": [ "NN" ], "Viator": [ "NNP" ], "Cambridgeport": [ "NNP" ], "Ashikaga": [ "NNP" ], "one-person": [ "NN" ], "sq.": [ "JJ" ], "acclaimed": [ "VBN", "VBD", "JJ" ], "shines": [ "VBZ" ], "petition": [ "NN", "VB" ], "Acuvue": [ "NNP" ], "Gladdy": [ "NNP" ], "faithful": [ "JJ", "NN" ], "Fragment": [ "NN" ], "Lorinda": [ "NNP" ], "whereas": [ "IN" ], "nemeses": [ "NNS" ], "loosening": [ "VBG", "NN" ], "HG": [ "NNP" ], "tablemodel": [ "NN" ], "Cadnetix": [ "NNP" ], "Barbra": [ "NNP" ], "housing-related": [ "JJ" ], "bunkmate": [ "NN" ], "formalize": [ "VB" ], "Export": [ "NNP", "NN" ], "ACCEPTANCES": [ "NNS", "NNPS" ], "subsidize": [ "VB", "VBP" ], "writedowns": [ "NNS" ], "toad": [ "NN" ], "Francisco-Oakland": [ "NNP" ], "Life": [ "NNP", "NN" ], "Privy": [ "NNP" ], "Liaison": [ "NNP" ], "Chariots": [ "NNS" ], "longrun": [ "JJ" ], "PROSPECTORS": [ "NNS" ], "patterned": [ "VBN", "JJ" ], "old-style": [ "JJ" ], "Adens": [ "NNP" ], "BRISTOL-MYERS": [ "NNP" ], "vehicle-loan": [ "JJ" ], "palladium": [ "NN" ], "Nights": [ "NNP", "NNPS" ], "melodically": [ "RB" ], "Vyas": [ "NNP" ], "sympathetic": [ "JJ" ], "sound-truck": [ "JJ" ], "Pegler": [ "NNP" ], "price-jarring": [ "JJ" ], "discern": [ "VB", "VBP" ], "HYATT": [ "NNP" ], "click": [ "NN" ], "glittered": [ "VBD", "VBN" ], "Lift": [ "VB" ], "promoting": [ "VBG" ], "Leisurely": [ "RB" ], "weakening": [ "VBG", "JJ", "NN" ], "outmoded": [ "JJ", "VBN" ], "Semegran": [ "NNP" ], "large-ticket": [ "JJ" ], "Wanda": [ "NNP" ], "Cif": [ "NNP" ], "Cie": [ "NNP", "NN" ], "Maquet": [ "NNP" ], "shibboleths": [ "NNS" ], "coosie": [ "NN" ], "Cir": [ "NNP" ], "junkbond": [ "NN" ], "nesting": [ "VBG", "JJ", "NN" ], "N.Y.-based": [ "JJ" ], "Nightwatch": [ "NNP" ], "Spotted": [ "VBN" ], "methodsm": [ "NN" ], "beseiged": [ "VBN" ], "couches": [ "NNS" ], "year-to-year": [ "JJ" ], "Diller": [ "NNP" ], "couched": [ "VBN", "VBD" ], "nisf-i-jahan": [ "NNP" ], "Allowed": [ "VBN", "NNP" ], "Hereford": [ "NNP" ], "Grabe": [ "NNP" ], "propellant": [ "NN" ], "guzzling": [ "NN" ], "data-capture": [ "JJ" ], "invader": [ "NN" ], "invades": [ "VBZ" ], "consent-decree": [ "JJ" ], "Brigham": [ "NNP" ], "unmaterialized": [ "VBN" ], "Guth": [ "NNP" ], "invaded": [ "VBD", "VBN" ], "voucher": [ "NN" ], "bacteria": [ "NNS" ], "government-appointed": [ "JJ" ], "slumbered": [ "VBD" ], "endangering": [ "VBG" ], "life...": [ ":" ], "Hurrican": [ "NNP" ], "Birney": [ "NNP" ], "looted": [ "VBN", "VBD" ], "Beardens": [ "NNPS" ], "Hurts": [ "VBZ" ], "Nanofilm": [ "NNP" ], "High-speed": [ "JJ" ], "Duel": [ "NNP" ], "Titian": [ "NNP" ], "pathless": [ "JJ" ], "channeled": [ "VBN", "VBD" ], "Borten": [ "NNP" ], "Bortel": [ "NNP" ], "Theories": [ "NNPS", "NNS" ], "Tawana": [ "NNP" ], "awe-inspiring": [ "JJ" ], "Richter-Haaser": [ "NNP" ], "noticeable": [ "JJ" ], "Armas": [ "NNP" ], "overrides": [ "VBZ" ], "scooping": [ "VBG" ], "guilty": [ "JJ", "RB" ], "stomachs": [ "NNS" ], "pediatric": [ "JJ" ], "hospitality": [ "NN" ], "noticeably": [ "RB" ], "vicissitudes": [ "NNS" ], "paralyzes": [ "VBZ" ], "Said": [ "VBD", "VBN", "NNP" ], "somersaults": [ "NNS" ], "Adios": [ "NNP", "FW" ], "soybeans": [ "NNS" ], "erudite": [ "JJ" ], "dioxin": [ "NN" ], "connivance": [ "NN" ], "Goodchild": [ "NNP" ], "Baines": [ "NNP" ], "paralyzed": [ "VBN", "JJ" ], "ballets": [ "NNS" ], "red-visored": [ "JJ" ], "sanitizing": [ "NN" ], "Forty-nine": [ "JJ" ], "Greenery": [ "NNP" ], "sporty": [ "JJ" ], "noncombat": [ "JJ", "NN" ], "Jemima": [ "NNP" ], "baser": [ "JJR" ], "sports": [ "NNS", "VBZ" ], "tinplated": [ "VBN" ], "Attwood": [ "NNP" ], "intra-uterine": [ "JJ" ], "Pestle": [ "NNP" ], "MEDICINE": [ "NNP" ], "law-governed": [ "JJ" ], "crocidolite": [ "NN" ], "reorganizing": [ "VBG" ], "bombastic": [ "JJ" ], "neglected": [ "VBN", "JJ", "VBD" ], "Eve": [ "NNP" ], "offing": [ "NN" ], "academician": [ "NN" ], "one-two-three": [ "NN" ], "flapping": [ "VBG", "JJ" ], "co-educational": [ "JJ" ], "prophecy": [ "NN" ], "misdemeanants": [ "NNS" ], "Spaull": [ "NNP" ], "Procedure": [ "NN", "NNP" ], "haole": [ "FW", "NN" ], "states": [ "NNS", "VBZ" ], "Family": [ "NNP", "NN" ], "Burst": [ "VBD" ], "unruly": [ "JJ" ], "moonlit": [ "JJ" ], "impracticality": [ "NN" ], "overpass": [ "NN" ], "Danbury": [ "NNP" ], "iodine": [ "NN" ], "photojournalism": [ "NN" ], "nexus": [ "NN" ], "NavforJapan": [ "NNP" ], "emblematic": [ "JJ" ], "high-crime": [ "JJ" ], "ex-prize": [ "JJ" ], "unarmed": [ "JJ" ], "Spitalnick": [ "NNP" ], "prize-winning": [ "JJ" ], "provoke": [ "VB", "VBP" ], "Simes": [ "NNP" ], "lipoproteins": [ "NNS" ], "disliked": [ "VBD", "JJ", "VBN" ], "improvisers": [ "NNS" ], "sweetish": [ "JJ" ], "Persian": [ "NNP", "JJ" ], "Underwood": [ "NNP" ], "chrysotile": [ "NN" ], "micro-microcurie": [ "NN" ], "Frowning": [ "VBG" ], "Flocks": [ "NNS" ], "tapestry": [ "NN" ], "coiled": [ "VBD" ], "subsidiaries": [ "NNS" ], "Chanel": [ "NNP" ], "paide": [ "VBN" ], "invitees": [ "NNS" ], "micrometeorite": [ "NN" ], "paramount": [ "JJ" ], "clattered": [ "VBD" ], "impartial": [ "JJ" ], "Average": [ "NNP", "JJ", "NN" ], "distastefully": [ "RB" ], "Fail": [ "NNP" ], "Lawson": [ "NNP" ], "DIGITAL": [ "NNP" ], "receptivity": [ "NN" ], "curing": [ "VBG", "NN" ], "Luette": [ "NNP" ], "dynamical": [ "JJ" ], "commodity": [ "NN" ], "purportedly": [ "RB" ], "cosmology": [ "NN" ], "homebuilders": [ "NNS" ], "Nursery": [ "NNP" ], "computer-services": [ "NNS" ], "Trinitarians": [ "NNP" ], "Parties": [ "NNS" ], "Morton": [ "NNP" ], "once-profitable": [ "JJ" ], "company-paid": [ "JJ" ], "computerize": [ "VB" ], "Microchannel": [ "NNP" ], "mecum": [ "FW" ], "Kursk": [ "NNP" ], "Smoak": [ "NNP" ], "Views": [ "NNS" ], "procedures": [ "NNS", "VBZ" ], "Kangaroo": [ "NN", "NNP" ], "gabbling": [ "VBG" ], "Huston": [ "NNP" ], "Oasis": [ "NNP" ], "Laptops": [ "NNS" ], "Zarnowitz": [ "NNP" ], "offers": [ "VBZ", "NNS", "NN" ], "rim-fire": [ "JJ", "NN" ], "rationality": [ "NN" ], "happened": [ "VBD", "VBN" ], "Kuehler": [ "NNP" ], "FAMILY": [ "NN" ], "Next-Most-Remarkable": [ "JJ" ], "Stinger": [ "NNP" ], "boozing": [ "VBG" ], "Glasser": [ "NNP" ], "non-code": [ "JJ" ], "superlatives": [ "NNS" ], "execute": [ "VB", "VBP" ], "clannishness": [ "NN" ], "arteriolar": [ "JJ" ], "plain-out": [ "RB" ], "clutch": [ "NN", "VBP", "VB" ], "aquam": [ "FW" ], "TOPIC": [ "NN" ], "receivership": [ "NN" ], "picnics": [ "NNS" ], "accomplishments": [ "NNS" ], "ters": [ "NNS" ], "Bataan": [ "NNP" ], "gold-mining-company": [ "JJ" ], "individually": [ "RB" ], "unburdened": [ "JJ" ], "Dervish": [ "NN" ], "ailment": [ "NN" ], "asbestos-related": [ "JJ" ], "Fredericksburg": [ "NNP" ], "third-grade": [ "NN" ], "apothecary": [ "NN" ], "MADD": [ "NNP" ], "seven-yen": [ "JJ" ], "Prop.": [ "NNP" ], "depersonalized": [ "VBN" ], "inadequacy": [ "NN" ], "cancels": [ "VBZ" ], "equines": [ "NNS" ], "tilt-rotor": [ "JJ" ], "walkway": [ "NN" ], "valeur": [ "FW" ], "scapegoating": [ "NN" ], "kidnaped": [ "VBN" ], "processed": [ "VBN", "VBD", "JJ" ], "simile": [ "NN" ], "lawmaker": [ "NN" ], "Yeutter": [ "NNP" ], "mapping": [ "NN", "VBG" ], "Mariel": [ "NNP" ], "oasis": [ "NN" ], "flyer": [ "NN" ], "bumblebees": [ "NNS" ], "Southlake": [ "NNP" ], "non-wage": [ "JJ" ], "limps": [ "VBZ" ], "uniformed": [ "JJ" ], "Houdaille": [ "NNP" ], "best-known": [ "JJ", "JJS" ], "Comedian": [ "NN" ], "broached": [ "VBN" ], "HealthCare": [ "NNP" ], "Hospice": [ "NNP" ], "win-win": [ "NN", "JJ" ], "Bowden": [ "NNP" ], "Schapiro": [ "NNP" ], "knoweth": [ "VBP" ], "engineering-services": [ "NNS" ], "parkish": [ "JJ" ], "Bigness": [ "NN" ], "Bowder": [ "NNP" ], "Ilminster": [ "NNP" ], "Privileged": [ "NNP", "JJ" ], "petered": [ "VBN" ], "engineer": [ "NN", "VB" ], "tingling": [ "VBG", "NN" ], "clanking": [ "VBG" ], "given": [ "VBN", "VBN|JJ", "JJ" ], "necessarily": [ "RB" ], "district": [ "NN", "JJ" ], "Bernoulli": [ "NNP" ], "provenance": [ "NN" ], "Fiorello": [ "NNP" ], "cooling": [ "NN", "VBG" ], "renter": [ "NN" ], "welfare": [ "NN" ], "legally": [ "RB" ], "independant": [ "JJ" ], "giver": [ "NN" ], "gives": [ "VBZ" ], "acquisitions": [ "NNS" ], "we-Japanese": [ "JJ" ], "Circulation": [ "NN", "NNP" ], "CLK": [ "NNP" ], "Sr.": [ "NNP" ], "Reavis": [ "NNP" ], "Siddo": [ "NNP" ], "cheerleading": [ "NN" ], "battery-driven": [ "JJ" ], "lockhold": [ "NN" ], "imagery": [ "NN" ], "girded": [ "VBD" ], "CITIC": [ "NNP" ], "portend": [ "VBP", "VB" ], "population": [ "NN" ], "Concord": [ "NNP" ], "return.": [ "NN" ], "Coleridge": [ "NNP" ], "Dooleys": [ "NNPS" ], "sera": [ "NNS" ], "Nicaragua": [ "NNP" ], "Litigation": [ "NNP", "NN" ], "searchers": [ "NNS" ], "courteously": [ "RB" ], "Radha": [ "NNP" ], "froth": [ "NN", "VB" ], "Prussia": [ "NNP" ], "insinuendo": [ "NN" ], "generalization": [ "NN" ], "straddles": [ "VBZ", "NNS" ], "syndications": [ "NNS" ], "scorecard": [ "NN" ], "noteholders": [ "NNS" ], "straddled": [ "VBD", "VBN" ], "sells": [ "VBZ" ], "Brennan": [ "NNP" ], "Venezuela": [ "NNP" ], "hard-drinking": [ "JJ" ], "nonflammable": [ "JJ" ], "Oceans": [ "NNS" ], "Government-blessed": [ "JJ" ], "Helsinki-based": [ "JJ" ], "Operating": [ "NN", "NNP", "VBG" ], "sorority": [ "NN" ], "resifted": [ "VBN" ], "portent": [ "NN" ], "Liggett": [ "NNP" ], "announced.": [ "VBN" ], "nonevent": [ "NN" ], "Littman": [ "NNP" ], "probed": [ "VBD" ], "clearer": [ "JJR", "RBR" ], "Supervision": [ "NNP" ], "rematch": [ "NN" ], "rock-scored": [ "JJ" ], "Wyo": [ "NNP" ], "Wyn": [ "NNP" ], "Magnusson": [ "NNP" ], "cleared": [ "VBN", "VBD" ], "saunter": [ "NN" ], "probes": [ "NNS" ], "Shakshuki": [ "NNP" ], "Littau": [ "NNP" ], "prepaid-tuition": [ "JJ" ], "Gontran": [ "NNP" ], "cross-investment": [ "JJ", "NN" ], "adopt": [ "VB", "VBP" ], "hungry": [ "JJ" ], "one-newspaper": [ "JJ" ], "Pattisson": [ "NNP" ], "bawling": [ "VBG" ], "casebook": [ "NN" ], "EXTEND": [ "VB" ], "motor-drive": [ "JJ" ], "misted": [ "VBD" ], "workshops": [ "NNS" ], "Putzi": [ "NNP" ], "Comments": [ "NNS", "NNPS", "NNP" ], "now-deceased": [ "JJ" ], "trespass": [ "NN", "VBP" ], "dealerships": [ "NNS" ], "insider-trading": [ "NN", "JJ" ], "Seven-Up": [ "NNP" ], "mister": [ "NN" ], "Gorboduc": [ "NNP" ], "line-fragments": [ "NN" ], "performance-capacity": [ "NN" ], "Bagnoli": [ "NNP" ], "contract-negotiation": [ "NN" ], "rebalanced": [ "VBN" ], "Pegasus": [ "NNP" ], "Drunkenness": [ "NN" ], "Stenholm": [ "NNP" ], "partake": [ "VB", "VBP" ], "harelips": [ "NNS" ], "Fujita": [ "NNP" ], "slimly": [ "RB" ], "icebox": [ "NN" ], "unsaddling": [ "VBG" ], "quirking": [ "VBG" ], "diamond-polishing": [ "NN" ], "debt...": [ ":" ], "hedge": [ "VB", "JJ", "NN", "VBP" ], "needle-sharp": [ "JJ" ], "Arkla": [ "NNP", "NN" ], "sabotage": [ "NN", "VB" ], "dramas": [ "NN" ], "obliterate": [ "VB" ], "doctor-originated": [ "JJ" ], "BAKKER": [ "NNP" ], "full-sisters": [ "NNS" ], "discussing": [ "VBG" ], "Ornette": [ "NNP" ], "microphones": [ "NNS" ], "imposing": [ "VBG", "JJ" ], "self-multilation": [ "NN" ], "bunko-forgery": [ "NN" ], "closures": [ "NNS" ], "baseball-loving": [ "JJ" ], "connections": [ "NNS" ], "turntable": [ "NN" ], "disarranged": [ "VBN" ], "stepson": [ "NN" ], "farmers": [ "NNS" ], "Ouedraogo": [ "NNP" ], "subsequent": [ "JJ" ], "Unoccupied": [ "JJ" ], "circulating": [ "VBG" ], "outside": [ "IN", "JJ", "NN", "RB" ], "Virtue": [ "NNP" ], "hiss": [ "NNS" ], "topgrade": [ "JJ" ], "near-hysteria": [ "NN" ], "synthetics": [ "NNS" ], "Natural": [ "NNP", "JJ", "NN" ], "Naturam": [ "FW" ], "daggerman": [ "NN" ], "Thaler": [ "NNP" ], "Bradstreet": [ "NNP" ], "anti-discriminatory": [ "JJ" ], "Pautsch": [ "NNP" ], "Bank-America": [ "NNP" ], "densely": [ "RB" ], "three-button": [ "JJ" ], "rumor-driven": [ "JJ" ], "Willman": [ "NNP" ], "co-edits": [ "VBZ" ], "Buckeridge": [ "NNP" ], "Kokoschka": [ "NNP" ], "priests": [ "NNS" ], "blinked": [ "VBD" ], "Kwik": [ "NNP" ], "pronto": [ "RB" ], "Individual": [ "JJ", "NN", "NNP" ], "Abernathy": [ "NNP" ], "wittily": [ "RB" ], "CLEARS": [ "VBZ" ], "Barbecued": [ "JJ" ], "Smokers": [ "NNS" ], "Guess": [ "NNP", "VBP", "NN", "VB" ], "afterwards": [ "RB" ], "Nehru": [ "NNP", "NN" ], "bricks": [ "NNS" ], "Jahr": [ "FW" ], "novices": [ "NNS" ], "colony": [ "NN" ], "teen-age": [ "JJ" ], "satisfaction": [ "NN" ], "atrociously": [ "RB" ], "jammed": [ "VBN", "VBD", "JJ" ], "Jahn": [ "NNP" ], "glutaric": [ "JJ" ], "discrepency": [ "NN" ], "proverty": [ "NN" ], "currency-options": [ "NNS" ], "Amschel": [ "NNP" ], "Rossoff": [ "NNP" ], "Worldwatch": [ "NNP" ], "helicopter": [ "NN" ], "psychics": [ "NNS" ], "Padres": [ "NNPS", "NNP" ], "Riordan": [ "NNP" ], "Killington": [ "NNP" ], "Hellenic": [ "NNP", "JJ" ], "traffic-systems": [ "NNS" ], "Phil": [ "NNP" ], "Together": [ "RB", "NNP" ], "L.M.": [ "NNP" ], "Elysees": [ "NNP" ], "Byers": [ "NNP" ], "travelling": [ "VBG" ], "Ruderman": [ "NNP" ], "myself": [ "PRP" ], "macromolecules": [ "NNS" ], "subconferences": [ "NNS" ], "neon-lit": [ "JJ" ], "DMB&B\\/New": [ "NNP" ], "Balances": [ "NNP" ], "Ciudad": [ "NNP" ], "Potential": [ "JJ" ], "slippery": [ "JJ" ], "Balanced": [ "VBN" ], "plug-in": [ "JJ" ], "hunts": [ "VBZ", "NNS" ], "Kroening": [ "NNP" ], "slippers": [ "NNS" ], "Kurile": [ "NNP" ], "discrepancy": [ "NN" ], "pre-try": [ "VB" ], "recounted": [ "VBD", "VBN" ], "skipped": [ "VBD", "VBN" ], "Linguistic": [ "JJ" ], "straw-and-mud": [ "JJ" ], "Factions": [ "NNS" ], "unhelpfully": [ "RB" ], "shelf-stable": [ "JJ" ], "quarreling": [ "VBG" ], "moratorium": [ "NN" ], "Amarillo": [ "NNP" ], "drug...": [ ":" ], "hevin": [ "VBG" ], "free-blown": [ "JJ" ], "Tannenbaum": [ "NNP" ], "insurers": [ "NNS" ], "Aggressively": [ "RB" ], "Goods": [ "NNP", "NNS", "NNPS" ], "Schubert-Beethoven-Mozart": [ "JJ" ], "Halsted": [ "NNP" ], "Goody": [ "UH" ], "nest": [ "NN", "VBP" ], "refusal": [ "NN" ], "green-lipped": [ "JJ" ], "Rockefeller": [ "NNP" ], "excavated": [ "VBN" ], "lute": [ "NN" ], "Goode": [ "NNP" ], "Detrex": [ "NNP" ], "Zainuddin": [ "NNP" ], "footprint": [ "NN" ], "collective-bargaining": [ "JJ", "NN" ], "vowed": [ "VBD", "VBN" ], "overzealousness": [ "NN" ], "antibodies": [ "NNS" ], "renters": [ "NNS" ], "magical": [ "JJ" ], "sculptors": [ "NNS" ], "reward": [ "NN", "VB", "VBP" ], "flinging": [ "VBG" ], "burglarproof": [ "JJ" ], "Richland": [ "NNP" ], "ya": [ "NN", "PRP" ], "Oslo": [ "NNP", "NN" ], "actions": [ "NNS" ], "cockles": [ "NNS" ], "Haight": [ "NNP" ], "fineness": [ "NN" ], "incurring": [ "VBG" ], "fastness": [ "NN" ], "action\\": [ "JJ" ], "alphabetical": [ "JJ" ], "widest": [ "JJS" ], "seems": [ "VBZ" ], "empiricism": [ "NN" ], "yachtel": [ "NN" ], "thimble": [ "NN" ], "dully": [ "RB" ], "bloops": [ "NNS" ], "re-creating": [ "NN" ], "hotdogs": [ "NNS" ], "Navcom": [ "NNP" ], "dulls": [ "VBZ" ], "impound": [ "VB" ], "buyouts": [ "NNS" ], "anchovy": [ "NN" ], "wellhead": [ "NN" ], "blowout": [ "NN" ], "watercolorists": [ "NNS" ], "inflation": [ "NN" ], "Grace-Sierra": [ "NNP" ], "painteresque": [ "JJ" ], "accepted": [ "VBN", "VBN|JJ", "VBD", "JJ" ], "wainscoted": [ "JJ" ], "furniture": [ "NN" ], "warmup": [ "NN" ], "cranelike": [ "JJ" ], "Harassed": [ "JJ" ], "bracelet": [ "NN" ], "OCCIDENTAL": [ "NNP" ], "Sylvania": [ "NNP" ], "Congresses": [ "NNS" ], "subcommittees": [ "NNS" ], "cone": [ "NN", "VB" ], "call-backs": [ "NNS" ], "shoe-string": [ "NN" ], "Argentines": [ "NNPS", "NNS" ], "Remaking": [ "VBG" ], "joking": [ "VBG" ], "steamier": [ "JJR" ], "straight-backed": [ "JJ" ], "Lou": [ "NNP" ], "overheated": [ "VBN" ], "pre-cooled": [ "JJ" ], "Jolly": [ "JJ", "NNP" ], "restricted-entry": [ "JJ" ], "shortcoming": [ "NN" ], "Agreeable": [ "NNP", "JJ" ], "Ours": [ "PRP" ], "oftener": [ "RBR" ], "swimsuit": [ "NN" ], "portables": [ "NNS" ], "Luxemburg": [ "NNP" ], "olive": [ "JJ", "NN" ], "Loy": [ "NNP" ], "sharp-leafed": [ "JJ" ], "Add": [ "VB" ], "Nazer": [ "NNP" ], "Nazem": [ "NNP" ], "Europeanized": [ "VBN" ], "Discouraged": [ "VBN" ], "aloes": [ "NN" ], "undreamt": [ "VBN" ], "bodacious": [ "JJ" ], "attests": [ "VBZ" ], "Protesting": [ "VBG" ], "nails": [ "NNS" ], "optimo": [ "FW" ], "Interspersed": [ "VBN" ], "home-for-the-night": [ "NN" ], "anatomicals": [ "NNS" ], "M.J.": [ "NNP" ], "Pikeville": [ "NNP" ], "E.G.T.": [ "NNP" ], "KLERK": [ "NNP" ], "jeep": [ "NN" ], "disorganized": [ "JJ", "VBN" ], "Foreign-exchange": [ "JJ", "NN" ], "water-tank": [ "NN" ], "obeys": [ "VBZ" ], "determinable": [ "JJ" ], "Prayer": [ "NNP", "NN" ], "Guangdong": [ "NNP" ], "computer-maintenance": [ "NN", "JJ" ], "warningly": [ "RB" ], "annoyances": [ "NNS" ], "cosmopolitanism": [ "NN" ], "engorgement": [ "NN" ], "skippers": [ "NNS" ], "gravel-chewing": [ "JJ" ], "breakwater": [ "NN" ], "overinclusion": [ "NN" ], "low-power": [ "JJ" ], "Identification": [ "NNP" ], "empathetic": [ "JJ" ], "buds": [ "NNS" ], "adjustables": [ "NNS" ], "Bultmann": [ "NNP" ], "stickler": [ "NN" ], "Feick": [ "NNP" ], "light-activated": [ "JJ" ], "overstaffed": [ "JJ" ], "dislocated": [ "JJ" ], "cadet": [ "NN" ], "potpourri": [ "NN" ], "forbade": [ "VBD" ], "conciseness": [ "NN" ], "marketeers": [ "NNS" ], "kittens": [ "NNS" ], "shamelessly": [ "RB" ], "lapidary": [ "JJ", "NN" ], "edified": [ "VBD" ], "international\\": [ "JJ" ], "burrs": [ "NNS" ], "quadrupeds": [ "NNS" ], "Namibia": [ "NNP" ], "Hadera": [ "NNP" ], "Sub-Saharan": [ "NNP" ], "promote": [ "VB", "VBP" ], "sensationalizing": [ "VBG" ], "Heavy": [ "NNP", "JJ", "NN" ], "semi-special": [ "JJ" ], "Chadwick": [ "NNP" ], "plastics-industry": [ "NN" ], "self-interested": [ "JJ" ], "ennui": [ "NN" ], "Heave": [ "VB" ], "Amundsen": [ "NNP" ], "ruffian": [ "NN" ], "bleakly": [ "RB" ], "Reacting": [ "VBG" ], "Consultation": [ "NN" ], "accusingly": [ "RB" ], "aces": [ "NNS", "VBZ" ], "Haagen": [ "NNP" ], "Ciavarella": [ "NNP" ], "protruded": [ "VBD" ], "biochemistry": [ "NN" ], "Bradbury": [ "NNP" ], "compel": [ "VB" ], "Helping": [ "VBG" ], "Symons": [ "NNP" ], "starkly": [ "RB" ], "sun-tan": [ "JJ" ], "brash": [ "JJ" ], "briefly": [ "NN", "RB" ], "winking": [ "VBG" ], "conspiracies": [ "NNS" ], "Picture": [ "NNP", "NN" ], "kickers": [ "NNS" ], "Gator": [ "JJ" ], "Andersen-Price": [ "NNP" ], "de-emphasis": [ "NN" ], "Testimony": [ "NN" ], "brass": [ "NN", "JJ" ], "post-World": [ "NNP", "JJ" ], "psychology": [ "NN" ], "thematic": [ "JJ" ], "proboscis": [ "NN" ], "Agamemnon": [ "NNP" ], "Chajet": [ "NNP" ], "lynch-mob": [ "JJ" ], "variegated": [ "JJ" ], "Magazines": [ "NNS", "NNP" ], "r.p.m.": [ "NN" ], "apparel": [ "NN", "VB" ], "stephanotis": [ "NN" ], "Equipped": [ "VBN" ], "neighbors": [ "NNS" ], "swirls": [ "NNS" ], "high-stakes": [ "JJ" ], "stained-glass": [ "NN" ], "eschewed": [ "VBN" ], "earners": [ "NNS" ], "spacecraft": [ "NN" ], "disc": [ "NN" ], "Sabinas": [ "FW" ], "dish": [ "NN", "VB" ], "call-ups": [ "NNS" ], "nursing-homes\\/retirement-living": [ "JJ" ], "Alameda": [ "NNP" ], "Ensemble": [ "NNP" ], "wakened": [ "VBN" ], "Ritschl": [ "NNP" ], "Hospitalization": [ "NN" ], "homage": [ "NN" ], "pickier": [ "JJR" ], "agro-industry": [ "JJ" ], "Chiat\\/Day": [ "NNP", "NN" ], "Rexroth": [ "NNP" ], "Boily": [ "NNP" ], "Ariz.-based": [ "JJ" ], "Boils": [ "NNS" ], "Lvov": [ "NNP" ], "Vs.": [ "FW" ], "activities": [ "NNS" ], "liter": [ "NN" ], "GIS": [ "NNP" ], "ministerial": [ "JJ" ], "Missouri-Illinois": [ "NNP" ], "Calculated": [ "VBN" ], "Wakako": [ "NNP" ], "Erwin": [ "NNP" ], "clonic": [ "JJ" ], "overturning": [ "VBG" ], "unlined": [ "JJ" ], "lower-middle-class": [ "JJ" ], "dispute-settlement": [ "JJ", "NN" ], "becase": [ "IN" ], "defensiveness": [ "NN" ], "Neglected": [ "NNP" ], "S.S.": [ "NNP" ], "highway": [ "NN" ], "Nitrogen": [ "NN" ], "Backstitching": [ "VBG" ], "Lethal": [ "NNP" ], "most-contentious": [ "RBS|JJ" ], "Ngoc": [ "NNP" ], "BVIslanders": [ "NNS" ], "wage-rate": [ "JJ" ], "Lehner": [ "NNP" ], "Third-quarter": [ "JJ", "NN" ], "Cannibal": [ "NNP" ], "Tolls": [ "NNS", "VBZ" ], "Moonachie": [ "NNP" ], "short-time": [ "JJ" ], "runner-up": [ "NN" ], "Curdling": [ "NNP" ], "enthalpy": [ "NN" ], "extremities": [ "NNS" ], "cheeses": [ "NNS" ], "what": [ "WP", "WDT", "WP|IN" ], "snow-covered": [ "JJ" ], "magnolia": [ "NN", "NNS" ], "ticks": [ "NNS", "VBZ" ], "overload": [ "NN", "VBP", "VB" ], "Hibernia": [ "NNP" ], "flag-wavers": [ "NNS" ], "Conservatives": [ "NNS", "NNPS" ], "racing": [ "VBG", "JJ", "NN" ], "wood-treating": [ "JJ" ], "cash-only": [ "JJ" ], "Rusk": [ "NNP" ], "Rush": [ "NNP", "NN" ], "sparked": [ "VBN", "VBD" ], "more-mundane": [ "JJ" ], "much-watched": [ "JJ" ], "Baylor": [ "NNP" ], "borates": [ "NNS" ], "Russ": [ "NNP" ], "steamships": [ "NNS" ], "Pulp": [ "NNP", "NN" ], "Braves": [ "NNP", "NNPS" ], "mythology": [ "NN" ], "identifiable": [ "JJ" ], "boded": [ "VBD" ], "pulverizing": [ "VBG" ], "fiber-photocathode": [ "NN" ], "infringe": [ "VB", "VBP" ], "extremes": [ "NNS" ], "discontinuation": [ "NN" ], "Mildner": [ "NNP" ], "pulmonary": [ "JJ" ], "Medtronics": [ "NNP" ], "bridge-loan": [ "JJ" ], "elongated": [ "VBN", "JJ" ], "imaging": [ "NN", "JJ" ], "Delamuraz": [ "NNP" ], "fernery": [ "NN" ], "counterrevolutionaries": [ "NNS" ], "choring": [ "NN|VBG" ], "Noyon-la-Sainte": [ "NNP" ], "semester": [ "NN" ], "refitting": [ "VBG" ], "Poulin": [ "NNP" ], "coatings": [ "NNS" ], "potboilers": [ "NNS" ], "proceed": [ "VB", "VBP" ], "warship": [ "NN" ], "Tesoro": [ "NNP" ], "faint": [ "JJ", "NN", "VB" ], "irritate": [ "VB" ], "Sipping": [ "VBG" ], "widens": [ "VBZ" ], "underprivileged": [ "JJ" ], "knows": [ "VBZ" ], "fun-filled": [ "JJ" ], "Quarterly": [ "JJ", "NNP" ], "Braidwood": [ "NNP" ], "Newspapers": [ "NNPS", "NNP", "NNS" ], "taming": [ "VBG" ], "Sonar": [ "NN" ], "mellow": [ "JJ" ], "Cir.": [ "NNP" ], "glad": [ "JJ" ], "parable": [ "NN" ], "Inx": [ "NNP" ], "Messerschmitt": [ "NN", "NNP" ], "irritations": [ "NNS" ], "tamper-proof": [ "JJ" ], "Inn": [ "NNP" ], "Oneita": [ "NNP" ], "wrestler": [ "NN" ], "wrestles": [ "VBZ", "NNS" ], "Ind": [ "NNP" ], "co-host": [ "VBP", "VB" ], "Ing": [ "NNP" ], "tabernacles": [ "NNS" ], "Inc": [ "NNP", "NNPS" ], "pony": [ "NN" ], "chromium-substituted": [ "JJ" ], "Jeancourt-Galignani": [ "NNP" ], "three-inch-long": [ "JJ" ], "pond": [ "NN" ], "Coleman": [ "NNP" ], "swung": [ "VBD", "VBN" ], "allege": [ "VBP", "VB" ], "Caucasian": [ "NNP" ], "Parliament": [ "NNP" ], "acrimony": [ "NN" ], "obverse": [ "NN" ], "bridgehead": [ "NN" ], "nonexecutive": [ "JJ" ], "Holty": [ "NNP" ], "Holtz": [ "NNP" ], "explains": [ "VBZ" ], "acknowledging": [ "VBG" ], "Elusive": [ "NNP" ], "headrest": [ "NN" ], "STUDY": [ "NN" ], "expedient": [ "JJ", "NN" ], "Shiseido": [ "NNP", "NN" ], "Mattel": [ "NNP" ], "Mattes": [ "NNP" ], "Matter": [ "NN", "NNP" ], "catalog": [ "NN" ], "Tropidoclonion": [ "NNP" ], "Incapable": [ "JJ" ], "WCI": [ "NNP" ], "chiefly": [ "RB" ], "queenside": [ "NN" ], "artful": [ "JJ" ], "generic": [ "JJ" ], "Friedreich": [ "NNP" ], "Lopatnikoff": [ "NNP" ], "twenty-mile": [ "JJ" ], "escritoire": [ "NN" ], "romancers": [ "NNS" ], "Relationships": [ "NNPS", "NNS" ], "earlier-the": [ "IN" ], "Viking\\/Penguin": [ "NN" ], "ever-greater": [ "JJ" ], "developed": [ "VBN", "JJ", "VBD" ], "Intar": [ "NNP" ], "doorknob": [ "NN" ], "reversing": [ "VBG" ], "Per-share": [ "JJ" ], "Dingwall": [ "NNP" ], "bartering": [ "NN" ], "Recessions": [ "NNS" ], "Gen": [ "NNP" ], "underplayed": [ "VBN" ], "scholar-in-residence": [ "NN" ], "developer": [ "NN" ], "Full": [ "JJ", "NNP" ], "slipped": [ "VBD", "VBN" ], "Beam": [ "NNP" ], "misspelled": [ "VBN" ], "social-economic": [ "JJ" ], "Fuld": [ "NNP" ], "Deyo": [ "NNP" ], "abbey": [ "NN" ], "jailing": [ "VBG" ], "resort": [ "NN", "VBP", "VB" ], "interleukin-2": [ "NN" ], "interleukin-3": [ "NN" ], "interleukin-4": [ "NN" ], "corner-posts": [ "NNS" ], "Losing": [ "VBG", "NNP" ], "accompli": [ "NN" ], "no-drinking": [ "JJ" ], "dispatchers": [ "NNS" ], "market-basket": [ "JJ" ], "immobility": [ "NN" ], "underground": [ "JJ", "NN", "RB" ], "Trudeau": [ "NNP" ], "Tiveden": [ "NNP" ], "communities": [ "NNS" ], "Obesity": [ "NN" ], "asbestos-containing": [ "JJ" ], "ruthlessness": [ "NN" ], "overused": [ "VBN", "JJ" ], "Hutchins": [ "NNP" ], "characterizes": [ "VBZ" ], "gazer": [ "NN" ], "debacle": [ "NN" ], "air-freight": [ "NN", "JJ" ], "characterized": [ "VBN", "VBD", "JJ" ], "wrong": [ "JJ", "NN", "RB", "RB|JJ" ], "say-because": [ "IN" ], "colder": [ "JJR", "RBR" ], "Distracted": [ "VBN" ], "short-to-medium-range": [ "JJ" ], "brother": [ "NN" ], "coolnesses": [ "NNS" ], "stagflation": [ "NN" ], "rhinotracheitis": [ "NN" ], "organised": [ "VBD" ], "scot-free": [ "JJ" ], "Were": [ "VBD", "VB" ], "Door": [ "NNP", "NN" ], "X-region": [ "NN" ], "Weathers": [ "NNPS" ], "lionesses": [ "NNS" ], "sure-fire": [ "JJ" ], "all-purpose": [ "JJ" ], "Culturally": [ "RB" ], "appearances": [ "NNS" ], "relisting": [ "NN" ], "reinman": [ "NN" ], "Perennian": [ "NNP", "JJ" ], "monotone": [ "JJ", "NN" ], "Howser": [ "NNP" ], "seizin": [ "VBG" ], "Papua": [ "NNP" ], "cookie": [ "NN" ], "monotony": [ "NN" ], "reconfigure": [ "NN" ], "job-rating": [ "JJ" ], "Systems": [ "NNPS", "NNP", "NNS" ], "Malone": [ "NNP" ], "Mutant": [ "NNP" ], "Flemish": [ "NNP", "JJ" ], "outstripping": [ "VBG" ], "Paso": [ "NNP" ], "Broadbeach": [ "NNP" ], "Past": [ "JJ", "IN", "NN", "RB", "NNP" ], "task-force": [ "NN" ], "Expect": [ "VB" ], "disincentive": [ "NN" ], "experimenter": [ "NN" ], "Zelig": [ "NNP" ], "``...": [ ":" ], "Redondo": [ "NNP" ], "well-known": [ "JJ", "NN" ], "knick-knacks": [ "NNS" ], "notify": [ "VB", "VBP" ], "Microprocessor": [ "NNP" ], "says": [ "VBZ", "NNS" ], "pleasin": [ "VBG" ], "air-interdiction": [ "NN" ], "over-achievers": [ "NNS" ], "conventionalized": [ "VBN" ], "diagonally": [ "RB" ], "recombinant-DNA": [ "NN" ], "flimsy": [ "JJ" ], "end-of-the-season": [ "JJ" ], "orthopedics": [ "NNS" ], "Schwarzman": [ "NNP" ], "MD-80-series": [ "NN" ], "Evangelism": [ "NNP", "NN" ], "aristocracy": [ "NN" ], "disqualification": [ "NN" ], "VTC": [ "NNP" ], "electrochemicals": [ "NNS" ], "GTG": [ "NNP" ], "more-affordable": [ "JJ" ], "trade-group": [ "NN" ], "Gravity": [ "NN", "NNP" ], "calf": [ "NN" ], "A.R.": [ "NNP" ], "VTX": [ "NNP" ], "inaugurated": [ "VBN", "VBD" ], "Road": [ "NNP", "NN" ], "nagging": [ "JJ", "NN", "VBG" ], "professeur": [ "NN" ], "over-committed": [ "JJ" ], "exponents": [ "NNS" ], "harping": [ "VBG", "NN" ], "cuff": [ "NN", "VB" ], "MEATS": [ "NNPS", "NNS" ], "outdoors": [ "RB", "NN" ], "book-buying": [ "JJ" ], "restful": [ "JJ" ], "breakeven": [ "JJ", "NN" ], "Mecaniques": [ "NNP" ], "liabilities": [ "NNS", "." ], "comforting": [ "VBG", "JJ" ], "Chopin": [ "NNP" ], "Giveaways": [ "NNS" ], "engulf": [ "VB" ], "long-format": [ "JJ" ], "Athenaeum": [ "NNP" ], "Kasparov": [ "NNP" ], "Odessa": [ "NNP" ], "brokerage-by-brokerage": [ "JJ" ], "securitization": [ "NN" ], "Jagan": [ "NNP" ], "Prostitutes": [ "NNS" ], "rhapsodic": [ "JJ" ], "displacing": [ "NN", "VBG" ], "Allendale": [ "NNP" ], "fender-benders": [ "NNS" ], "punchers": [ "NNS" ], "finding": [ "VBG", "NN" ], "donor": [ "NN" ], "Decorated": [ "VBN" ], "stigmatizes": [ "VBZ" ], "Germans": [ "NNPS", "NNP", "NNS", "VBP" ], "seedless": [ "JJ" ], "unremarkable": [ "JJ" ], "instigator": [ "NN" ], "Humulin": [ "NNP" ], "biggest-ever": [ "JJ" ], "Priviet": [ "NNP" ], "Attacks": [ "VBZ", "NNS" ], "screenings": [ "NNS" ], "me": [ "PRP", "FW" ], "Braunreuther": [ "NNP" ], "Vega": [ "NNP" ], "half-dressed": [ "JJ" ], "nothing": [ "NN" ], "chuck-a-luck": [ "NN" ], "Liquidity": [ "NN" ], "convoy": [ "NN" ], "strikebreakers": [ "NNS" ], "Speer": [ "NNP" ], "behynde": [ "IN" ], "Aero-Space": [ "NNP" ], "Interpersonal": [ "JJ" ], "deans": [ "NNS" ], "Peterbroeck": [ "NNP" ], "saloon": [ "NN" ], "Speed": [ "NN", "VB", "NNP" ], "Sikh": [ "NNP", "JJ" ], "Backseat": [ "NN" ], "Yankee-hatred": [ "NN" ], "pennies": [ "NNS" ], "Lung-cancer": [ "NN" ], "readjustment": [ "NN" ], "you": [ "PRP", "VBP", "RP" ], "Garret": [ "NNP" ], "Rational": [ "NNP", "JJ" ], "oil-price": [ "NN", "JJ" ], "cholesterol-fearing": [ "JJ" ], "dilation": [ "NN" ], "outrigger": [ "NN" ], "podium": [ "NN" ], "gilded": [ "JJ" ], "delinquent": [ "JJ", "NN" ], "rampant": [ "JJ", "RB" ], "God-forsaken": [ "JJ" ], "inflection": [ "NN" ], "mosey": [ "VB" ], "congestive": [ "JJ" ], "shepherd": [ "NN", "VB" ], "boardings": [ "NNS" ], "deader": [ "JJR" ], "strongholds": [ "NNS" ], "outdoorsman\\": [ "NN" ], "meditations": [ "NNS" ], "sligthly": [ "RB" ], "multimillionaire": [ "NN" ], "frumpy": [ "JJ" ], "morphophonemic": [ "JJ" ], "Recommendations": [ "NNS" ], "determines": [ "VBZ" ], "unaddressed": [ "JJ" ], "Fiske": [ "NNP" ], "medicines": [ "NNS" ], "business-machines": [ "NNS" ], "already-reluctant": [ "JJ" ], "investigate": [ "VB", "VBP" ], "mistakes": [ "NNS", "VBZ" ], "Itasca": [ "NNP" ], "antihero": [ "NN" ], "heaping": [ "VBG" ], "Paint": [ "NN" ], "s-values": [ "NNS" ], "Chairman": [ "NNP", "NN" ], "place-name": [ "JJ" ], "SEPT.": [ "NNP" ], "choreographer": [ "NN" ], "achieved": [ "VBN", "VBD", "JJ" ], "achieves": [ "VBZ" ], "lump-sum": [ "JJ", "NN" ], "non-Ford": [ "JJ" ], "sportswear": [ "NN" ], "Vahid": [ "NNP" ], "Buildings": [ "NNS" ], "mechanically": [ "RB" ], "merry-go-round": [ "NN" ], "BEING": [ "VBG" ], "Veniamin": [ "NNP" ], "Zamya": [ "NNP" ], "degrading": [ "JJ", "VBG" ], "wrinkling": [ "VBG" ], "playmates": [ "NNS" ], "downturn": [ "NN" ], "atolls": [ "NNS" ], "artery-clogging": [ "NN" ], "Mahayana": [ "NNP" ], "profiling": [ "VBG" ], "creating": [ "VBG" ], "Dolora": [ "NNP" ], "pinch-hit": [ "VB" ], "Kitcat": [ "NNP" ], "nonionic": [ "JJ" ], "arteriosclerosis": [ "NN" ], "printable": [ "JJ" ], "competent": [ "JJ" ], "tumbledown": [ "JJ" ], "Accumulation": [ "NNP" ], "WESLEY": [ "NNP" ], "Heifetz": [ "NNP" ], "Reinhard": [ "NNP" ], "distinctively": [ "RB" ], "bludgeoned": [ "VBN" ], "cleanly": [ "RB" ], "Callers": [ "NNS" ], "pre-college": [ "JJ" ], "context": [ "NN" ], "nine-year-old": [ "JJ" ], "rollers": [ "NNS" ], "blissfully": [ "RB" ], "Happiness": [ "NN", "NNP" ], "suability": [ "NN" ], "professorial": [ "JJ" ], "chaperon": [ "NN" ], "share-price": [ "JJ" ], "Tateisi": [ "NNP" ], "Updike": [ "NNP" ], "rave": [ "VBP", "JJ", "VB" ], "Testament-style": [ "JJ" ], "decline": [ "NN", "VB", "VBP" ], "deprecatory": [ "JJ" ], "political": [ "JJ" ], "middle-brow": [ "JJ" ], "Sasha": [ "NNP" ], "small-investor": [ "NN" ], "checkbook": [ "NN" ], "make-up": [ "NN" ], "Robec": [ "NNP" ], "Galt": [ "NNP" ], "low-frequency": [ "JJ" ], "out-trade": [ "VB" ], "fatiegued": [ "JJ" ], "siting": [ "NN" ], "Lohman": [ "NNP" ], "orchestral": [ "JJ" ], "Despite": [ "IN" ], "mitre": [ "NN" ], "brokers": [ "NNS" ], "orchestras": [ "NNS" ], "escapees": [ "NNS" ], "KRC": [ "NNP" ], "rocking": [ "NN", "JJ", "VBG" ], "unflattering": [ "JJ" ], "Andreassen": [ "NNP" ], "Allegiance": [ "NNP" ], "nameplates": [ "NNS" ], "stumbling-block": [ "NN" ], "water-line": [ "NN" ], "ENTERTAINMENT": [ "NNP" ], "orthography": [ "NN" ], "epicycle": [ "NN" ], "Chiba": [ "NNP" ], "awakening": [ "VBG", "NN" ], "headway": [ "NN" ], "alliances": [ "NNS" ], "school-board": [ "NN" ], "producer-price": [ "JJ", "NN" ], "santos": [ "FW" ], "longer-range": [ "JJR", "JJ" ], "rosy": [ "JJ" ], "Nation": [ "NN", "NNP" ], "Frederic": [ "NNP" ], "kimono": [ "FW" ], "nonconformists": [ "NNS" ], "firearms": [ "NNS" ], "deletion": [ "NN" ], "peoples": [ "NNS" ], "esteemed": [ "VBD", "VBN" ], "advise": [ "VB", "VBP", "NN" ], "YOM": [ "NNP" ], "literature": [ "NN" ], "selle": [ "VB" ], "Taui": [ "NNP" ], "flows": [ "NNS", "VBZ" ], "Traditional": [ "JJ", "NNP" ], "flown": [ "VBN" ], "then-Socialist": [ "JJ" ], "unrestrained": [ "JJ" ], "YOU": [ "PRP" ], "Ex-Im": [ "NNP" ], "Samar": [ "NNP" ], "Newspapermen": [ "NNS" ], "stateless": [ "JJ" ], "congregated": [ "VBD" ], "Carter": [ "NNP" ], "Trevelyan": [ "NNP" ], "chickens": [ "NNS" ], "underreported": [ "VBN" ], "Cartel": [ "NNP" ], "motorscooters": [ "NNS" ], "bureaucracies": [ "NNS" ], "pollen": [ "NN" ], "gorgeously": [ "RB" ], "Planter": [ "NNP" ], "sex-discrimination": [ "NN" ], "polled": [ "VBN", "VBD" ], "Drying": [ "NN" ], "pre-margin": [ "JJ" ], "Bonso": [ "NNP" ], "pre-World": [ "NNP" ], "Soconoco": [ "NNP" ], "bestubbled": [ "JJ" ], "Bourbon": [ "NNP", "JJ", "NN" ], "Clue": [ "NNP" ], "tables": [ "NNS" ], "tablet": [ "NN" ], "workers": [ "NNS" ], "Diversified": [ "NNP", "VBN", "JJ" ], "drooped": [ "VBD" ], "be-that": [ "VB" ], "national-security": [ "NN", "JJ" ], "Glocester": [ "NNP" ], "tabled": [ "VBN" ], "Teaneck": [ "NNP" ], "associations": [ "NNS" ], "customers": [ "NNS" ], "Lass": [ "NNP" ], "crude-steel": [ "NN" ], "amended": [ "VBN", "VBD" ], "Jamaica": [ "NNP" ], "Secondary": [ "JJ" ], "spires": [ "NNS" ], "DataComm": [ "NNP" ], "moods": [ "NNS" ], "awaken": [ "VB", "VBP" ], "Opax": [ "NNP" ], "Marmee": [ "NNP" ], "plundering": [ "NN" ], "Filmstar": [ "NNP" ], "Tomlin": [ "NNP" ], "Links": [ "NNP" ], "shaped": [ "VBN", "VBD", "JJ" ], "Tacitus": [ "NNP" ], "nearsightedly": [ "RB" ], "commanders": [ "NNS" ], "digitalized": [ "JJ" ], "shapes": [ "NNS", "VBZ" ], "Stains": [ "NNS" ], "distrust": [ "NN", "VBP", "VB" ], "entice": [ "VB", "VBP" ], "hand-hewn": [ "JJ" ], "essential": [ "JJ", "NN" ], "grocery-store": [ "JJ" ], "Butch": [ "NNP" ], "hallmark": [ "NN" ], "front-runner": [ "NN" ], "Simplification": [ "NN" ], "billets": [ "NNS" ], "sages": [ "NNS" ], "Siena": [ "NNP" ], "sprightly": [ "JJ" ], "accomplishment": [ "NN" ], "you-know": [ "NN" ], "aptitudes": [ "NNS" ], "SmithKline": [ "NNP" ], "String": [ "NNP", "VB" ], "Tully": [ "NNP" ], "Tulln": [ "NNP" ], "Hemisphere": [ "NNP" ], "orthodontists": [ "NNS" ], "Cloquet": [ "NNP" ], "deadbeats": [ "NNS" ], "Sheeran": [ "NNP" ], "mutts": [ "NNS" ], "McToxics": [ "NNP" ], "Timex": [ "NNP" ], "senior-level": [ "JJ" ], "Walkman": [ "NNP", "NN" ], "understanded": [ "VBN" ], "raided": [ "VBN", "VBD" ], "Times": [ "NNP", "NNPS", "NNS" ], "UTLs": [ "NNS" ], "aloft": [ "RB" ], "Timen": [ "NNP" ], "PLEA": [ "NN" ], "divest": [ "VB", "VBP" ], "informatics": [ "NNS" ], "raider": [ "NN" ], "Damned": [ "JJ", "RB", "UH" ], "dormant": [ "JJ" ], "Square": [ "NNP", "JJ", "NN", "VB" ], "firing": [ "VBG", "JJ", "NN", "NN|VBG" ], "full-strength": [ "JJ" ], "frightful": [ "JJ" ], "militia": [ "NN" ], "adversity": [ "NN" ], "purists": [ "NNS" ], "Wolcott": [ "NNP" ], "One-time": [ "JJ" ], "near-doubling": [ "NN" ], "greenfield": [ "NN" ], "plethora": [ "NN" ], "wive": [ "NNS" ], "nerveless": [ "JJ" ], "Earth-weeks": [ "NNS" ], "Joaquin": [ "NNP" ], "Grigoli": [ "NNP" ], "diameters": [ "NNS" ], "Geico": [ "NNP" ], "SALE": [ "NN" ], "baggy": [ "JJ" ], "capacitance": [ "NN" ], "disinflation": [ "NN" ], "Smorgon": [ "NNP" ], "second-floor": [ "JJ", "NN" ], "fast-closing": [ "JJ" ], "oilseeds": [ "NNS" ], "austerely": [ "RB" ], "files": [ "NNS", "VBZ" ], "forlornly": [ "RB" ], "Poelker": [ "NNP" ], "filet": [ "NN" ], "beriberi": [ "NN" ], "High-yield": [ "JJ" ], "Stems": [ "NNS" ], "Deals": [ "NNS" ], "fisheries": [ "NNS" ], "usurp": [ "VB" ], "delta": [ "NN", "JJ" ], "Helane": [ "NNP" ], "junior": [ "JJ", "NN" ], "raising": [ "VBG", "NN", "RP" ], "hush": [ "JJ", "NN", "UH" ], "property-casualty": [ "JJ", "NN" ], "pliable": [ "JJ" ], "businessmen-authors": [ "NN" ], "Mumford": [ "NNP" ], "apricot": [ "NN" ], "Preston": [ "NNP" ], "elide": [ "VBP" ], "railbikers": [ "NNS" ], "Cruise": [ "NNP", "NN" ], "freshly-ground": [ "JJ" ], "strands": [ "NNS" ], "circuses": [ "NNS" ], "unwarranted": [ "JJ" ], "individuality": [ "NN" ], "Hubbard": [ "NNP" ], "freak": [ "NN", "VBP" ], "export-applications": [ "NNS" ], "allayed": [ "VBN" ], "Adirondacks": [ "NNPS" ], "enduringly": [ "RB" ], "mid-season": [ "NN" ], "non-Indonesian": [ "JJ" ], "puttering": [ "VBG" ], "ringings": [ "NNS" ], "Blazer": [ "NNP" ], "Anglo-Saxons": [ "NNS" ], "Gerby": [ "NNP" ], "rainy": [ "JJ" ], "Curtis": [ "NNP" ], "rains": [ "NNS", "VBZ" ], "endurance": [ "NN" ], "Annuities": [ "NNS" ], "democratically": [ "RB" ], "B.M.": [ "NNP" ], "altar": [ "NN" ], "Curtin": [ "NNP" ], "Macmillan\\/McGraw": [ "NNP", "NN" ], "mock": [ "JJ", "VBP", "VB" ], "profit-sharing": [ "NN", "JJ", "NNS" ], "muddled": [ "VBN", "VBD" ], "Baking": [ "NNP" ], "generates": [ "VBZ" ], "trade-deficit": [ "NN" ], "return-printing": [ "JJ" ], "hideouts": [ "NNS" ], "shrouding": [ "VBG" ], "generated": [ "VBN", "VBD", "VBG" ], "Functionalism": [ "NN" ], "vigil": [ "NN" ], "Union.": [ "NNP" ], "counterpointing": [ "VBG" ], "Buries": [ "VBZ" ], "dead-weight": [ "JJ" ], "Birdpark": [ "NNP" ], "NKF": [ "NNP" ], "vice": [ "NN", "FW", "JJ", "RB" ], "initiation": [ "NN" ], "Malcolm": [ "NNP", "NN" ], "prayer-requests": [ "NN" ], "onct": [ "IN", "JJ" ], "attacking": [ "VBG", "NN" ], "NOTE": [ "NN", "VB" ], "Espy": [ "NNP" ], "Buried": [ "VBN" ], "Fund-Raisers": [ "NNS" ], "beers": [ "NNS" ], "Screvane": [ "NNP" ], "once": [ "RB", "IN" ], "Pontiac": [ "NNP" ], "epitomizes": [ "VBZ" ], "Midwesterners": [ "NNS" ], "Baskin-Robbins": [ "NNP" ], "sluggishness": [ "NN" ], "alleyways": [ "NNS" ], "Goldston": [ "NNP" ], "resistance": [ "NN", "FW" ], "B-58": [ "NN" ], "eyesore": [ "NN" ], "Boating": [ "NNP", "NN", "VBG" ], "Draftula": [ "NNP" ], "epitomized": [ "VBN", "VBD" ], "Yasushige": [ "NNP" ], "acclimatized": [ "VBN" ], "worrisome": [ "JJ" ], "rigidity": [ "NN" ], "middle-school": [ "JJ", "NN" ], "Ky.": [ "NNP" ], "liquor-crazed": [ "JJ" ], "Object": [ "NN" ], "Texas-based": [ "JJ" ], "Canon": [ "NNP" ], "KuwAm": [ "NNP" ], "micoprocessors": [ "NNS" ], "Familia": [ "NNP" ], "Grien": [ "NNP" ], "breathing": [ "NN", "VBG" ], "seized": [ "VBN", "VBN|JJ", "VBD" ], "Whitman": [ "NNP", "NN" ], "aftershock-resistant": [ "JJ" ], "photocopying": [ "VBG", "NN" ], "egotistic": [ "JJ" ], "spoon": [ "NN" ], "seizes": [ "VBZ" ], "un-English": [ "NNP" ], "high-voltage": [ "JJ" ], "spook": [ "VBP" ], "artery": [ "NN" ], "spoof": [ "NN", "VB" ], "Irishman": [ "NN" ], "Kyi": [ "NNP" ], "Kyo": [ "NNP" ], "well-placed": [ "JJ" ], "Kosovo": [ "NNP" ], "gullible": [ "JJ" ], "warranties": [ "NNS" ], "polling": [ "NN", "JJ", "VBG" ], "Clinique": [ "NNP" ], "right-wingers": [ "NNS" ], "snails": [ "NNS" ], "Kyu": [ "NNP" ], "relives": [ "VBZ" ], "summiteers": [ "NNS" ], "someday": [ "RB" ], "Hashers": [ "NNS" ], "Gustavo": [ "NNP" ], "goodies": [ "NNS" ], "Discrimination": [ "NNP" ], "Vegetables": [ "NNS" ], "A.M.E.": [ "NNP" ], "lightest": [ "JJS" ], "Gustave": [ "NNP" ], "traveling": [ "VBG", "NN" ], "Krick": [ "NNP" ], "Staffing": [ "NNP" ], "inaccurate": [ "JJ" ], "Gleason": [ "NNP" ], "highly-regarded": [ "JJ" ], "gainers": [ "NNS" ], "appeased": [ "VBN", "VBD" ], "familiarization": [ "NN" ], "sables": [ "NNS" ], "capital": [ "NN", "JJ" ], "Atco": [ "NNP" ], "Clan": [ "NNP" ], "Clad": [ "VBN" ], "canary-colored": [ "JJ" ], "sideboard": [ "NN" ], "myosin": [ "NN" ], "Leonato": [ "NNP" ], "Hawaiian-Americans": [ "NNPS" ], "Clay": [ "NNP", "NN" ], "Rummaging": [ "VBG" ], "Seikosha": [ "NNP" ], "Moments": [ "NNS", "NNPS" ], "incriminating": [ "VBG", "JJ" ], "poignant": [ "JJ" ], "chevaux": [ "FW" ], "Novosti": [ "NNP" ], "bookstores": [ "NNS" ], "unsuitability": [ "NN" ], "boyars": [ "NNS" ], "fox-hounds": [ "NNS" ], "funn-ih": [ "JJ" ], "Readers": [ "NNS" ], "Boardrooms": [ "NNS" ], "Schnitzer": [ "NNP" ], "deciphered": [ "VBD" ], "Safety": [ "NNP", "NN" ], "once-lucrative": [ "JJ" ], "wil": [ "MD" ], "copybooks": [ "NNS" ], "combustion": [ "NN" ], "Labs": [ "NNPS", "NNP" ], "Sukle": [ "NNP" ], "hippie": [ "NN" ], "consumption": [ "NN" ], "Calgary-based": [ "JJ" ], "Manlove": [ "NNP" ], "Amador": [ "NNP" ], "bottomless": [ "JJ" ], "Trans-Alaska": [ "NNP" ], "WOMEN": [ "NNS" ], "possession": [ "NN" ], "Lane": [ "NNP", "NN" ], "Land": [ "NNP", "VBP", "NN" ], "cobalt-60": [ "NN" ], "Lana": [ "NNP" ], "Monilia": [ "NN" ], "Francisco-based": [ "JJ" ], "red-clay": [ "NN" ], "Opa-Locka": [ "NNP" ], "posturing": [ "NN", "VBG" ], "MVL": [ "NNP" ], "stabilized": [ "VBN", "VBD" ], "panted": [ "VBD" ], "impressionistically": [ "RB" ], "Pappas": [ "NNP" ], "undecorated": [ "JJ" ], "gyros": [ "NNS" ], "anywhere": [ "RB" ], "stabilizes": [ "VBZ" ], "stabilizer": [ "NN" ], "freedom": [ "NN" ], "Muki": [ "NNP" ], "Penguin": [ "NNP" ], "Prime": [ "NNP", "JJ" ], "confidante": [ "NN" ], "patrol": [ "NN", "VBP", "VB" ], "patron": [ "NN" ], "Hammer.``": [ "``" ], "Groben": [ "NNP" ], "Europe-wide": [ "JJ", "RB" ], "Pioneer": [ "NNP" ], "confidants": [ "NNS" ], "publishable": [ "JJ" ], "Ct.": [ "NNP" ], "counterfeit": [ "JJ" ], "Marciano": [ "NNP" ], "compatible": [ "JJ" ], "long-banned": [ "JJ" ], "authorship": [ "NN" ], "Polysar": [ "NNP" ], "tamper": [ "VB" ], "dandelion": [ "NN" ], "unquestionable": [ "JJ" ], "Lynden": [ "NNP" ], "child-protection": [ "NN" ], "unquestionably": [ "RB" ], "slamming": [ "VBG" ], "instead": [ "RB" ], "WKRP": [ "NNP" ], "betwen": [ "NN" ], "dominion": [ "NN" ], "blustery": [ "JJ" ], "demonstrates": [ "VBZ" ], "abuse": [ "NN", "VB", "VBP" ], "Lescaze": [ "NNP" ], "Newquist": [ "NNP" ], "improviser": [ "NN" ], "improvises": [ "VBZ" ], "Ratified": [ "VBN" ], "Seeming": [ "VBG" ], "NORTHERN": [ "NNP" ], "light": [ "NN", "JJ", "RB", "VB", "VBP" ], "Missing": [ "JJ" ], "Herald-Post": [ "NNP" ], "honestly": [ "RB" ], "improvised": [ "VBD", "VBN" ], "necklace": [ "NN" ], "pastries": [ "NNS" ], "Hammer": [ "NNP" ], "preparing": [ "VBG" ], "stamped": [ "VBN", "VBD" ], "Susquehanna": [ "NNP" ], "coolly": [ "RB" ], "tropics": [ "NNS" ], "Chris-Craft": [ "NNP" ], "damsel": [ "NN" ], "Orpheus": [ "NNP" ], "travel-leisure": [ "JJ" ], "quake": [ "NN" ], "Kchessinska": [ "NNP" ], "Beirut": [ "NNP" ], "self-discipline": [ "NN", "JJ" ], "badges": [ "NNS" ], "depcreciation": [ "NN" ], "horizontally": [ "RB" ], "longitudinal": [ "JJ" ], "Mukachevo": [ "NNP" ], "Noxzema": [ "NNP" ], "less-polluting": [ "JJ" ], "restrain": [ "VB" ], "underpin": [ "VB" ], "redhead": [ "NN" ], "troubleshooter": [ "NN" ], "Chilver": [ "NNP" ], "Testifies": [ "VBZ" ], "belted": [ "VBD" ], "originator": [ "NN" ], "flex": [ "NN", "JJ", "VB" ], "CalFed": [ "NNP" ], "Padgett": [ "NNP" ], "re-enter": [ "VB", "VBP", "NN" ], "Pollack": [ "NNP" ], "Suppliers": [ "NNS" ], "ozone-exposed": [ "JJ" ], "leisure": [ "NN" ], "oranges": [ "NNS" ], "topsoil": [ "NN" ], "Island": [ "NNP", "NN" ], "Lavato": [ "NNP" ], "flea": [ "NN" ], "Mawr": [ "NNP" ], "hot-blooded": [ "JJ" ], "flee": [ "VB" ], "fled": [ "VBD", "VBN" ], "Bick": [ "NNP" ], "Datas": [ "NNP" ], "feast": [ "NN", "VB" ], "haec": [ "FW" ], "Rubens": [ "NNP" ], "rockets": [ "NNS" ], "photofloodlights": [ "NNS" ], "bills": [ "NNS", "VBZ" ], "Chicagoan": [ "NNP" ], "extended-body": [ "JJ" ], "related": [ "VBN", "JJ", "VBD", "JJ|VBN" ], "Next": [ "JJ", "RB", "NNP", "IN" ], "depositor": [ "NN" ], "HIRING": [ "NN", "VBG" ], "eye-machine": [ "NN" ], "interplay": [ "NN" ], "relates": [ "VBZ" ], "irritability": [ "NN" ], "Junction": [ "NNP" ], "Trapp": [ "FW" ], "Lueger": [ "NNP" ], "refugee-assistance": [ "NN" ], "whooped": [ "VBD" ], "breadbox": [ "NN" ], "Jastrow": [ "NNP" ], "not-ace": [ "NN" ], "Baby": [ "NNP", "NN" ], "whooper": [ "NN" ], "attentively": [ "RB" ], "Linwick": [ "NNP" ], "Advent": [ "NNP" ], "to...": [ ":" ], "maintains": [ "VBZ" ], "Rubendall": [ "NNP" ], "scandal-tossed": [ "JJ" ], "couriers": [ "NNS" ], "faulting": [ "VBG" ], "Sawnders": [ "NNP" ], "repairing": [ "VBG", "NN" ], "Gone": [ "VBN" ], "Gong": [ "NNP" ], "Ugly": [ "JJ" ], "via": [ "IN" ], "bluebush": [ "NN" ], "old-world": [ "JJ" ], "self-prescribed": [ "JJ" ], "shutout": [ "NN" ], "homelessness": [ "NN" ], "Sonni": [ "NNP" ], "non-telephone": [ "JJ" ], "surrealists": [ "NNS" ], "tacked": [ "VBD", "VBN" ], "co-founded": [ "VBD", "JJ" ], "scattershot": [ "JJ" ], "wakening": [ "VBG" ], "baby-faced": [ "JJ" ], "felicitous": [ "JJ" ], "intuitively": [ "RB" ], "set": [ "VBN", "VBD", "VBP", "VBD|VBN", "JJ", "NN", "VB" ], "Scypher": [ "NNP" ], "protectors": [ "NNS" ], "co-founder": [ "NN" ], "outfits": [ "NN", "NNS" ], "bois": [ "FW" ], "For": [ "IN", "CC", "NNP" ], "LeClair": [ "NNP" ], "Eduardo": [ "NNP" ], "their": [ "PRP$", "PRP" ], "Bindal": [ "NNP" ], "boil": [ "VB", "NN" ], "fumpered": [ "VBD" ], "shell": [ "NN", "JJ", "VB" ], "Grapes": [ "NNP", "NNS" ], "sexology": [ "NN" ], "reversed": [ "VBD", "JJ", "VBN" ], "instituted": [ "VBN", "VBD" ], "Departmentstore": [ "NNP" ], "baptized": [ "VBN" ], "districting": [ "NN" ], "Nuys": [ "NNP" ], "reverses": [ "VBZ", "NNS" ], "congenital": [ "JJ" ], "pro-mark": [ "JJ" ], "Explonaft": [ "NNP" ], "non-seamen": [ "NNS" ], "limiting": [ "VBG" ], "back-door": [ "JJ" ], "squealing": [ "VBG", "NN" ], "elongate": [ "VB" ], "Deterrent": [ "NN" ], "success...": [ ":" ], "ex-brother-in-law": [ "NN" ], "laughingstock": [ "NN" ], "Slough": [ "NNP" ], "violets": [ "NNS" ], "DESIGNATING": [ "VBG" ], "alerted": [ "VBD", "VBN" ], "Kinnard": [ "NNP" ], "Agone": [ "NNP" ], "Berrellez": [ "NNP" ], "Cipriano": [ "NNP" ], "have...": [ ":" ], "Elliman": [ "NNP" ], "Cipriani": [ "NNP" ], "diazepam": [ "NN" ], "re-emphasis": [ "NN" ], "Sources": [ "NNS", "NNP" ], "After": [ "IN", "NNP", "RB", "IN|JJ" ], "outward": [ "RB", "JJ" ], "which": [ "WDT", "WP" ], "Fluorescent": [ "JJ" ], "leisure-services": [ "JJ" ], "exegesis": [ "NN" ], "sign-carrying": [ "JJ" ], "Todt": [ "NNP" ], "Watling": [ "NNP" ], "first-quarter": [ "JJ", "NN" ], "gorged": [ "VBD" ], "clash": [ "NN", "VBP", "VB" ], "Gamel": [ "NNP" ], "Family-owned": [ "JJ" ], "Joined": [ "VBN" ], "Coalition": [ "NNP" ], "Supermatic": [ "JJ" ], "Games": [ "NNPS", "NNP", "NNS" ], "cracking": [ "VBG", "JJ", "NN" ], "hydroxyl-rich": [ "JJ" ], "class": [ "NN" ], "statute": [ "NN" ], "evergreens": [ "NNS" ], "Costly": [ "JJ" ], "jubilation": [ "NN" ], "slop-bucket": [ "NN" ], "Pot": [ "NNP", "NN" ], "Jarrett": [ "NNP" ], "mishaps": [ "NNS" ], "Loco": [ "NNP" ], "Pop": [ "NN", "NNP" ], "neatness": [ "NN" ], "Pol": [ "NNP" ], "vernacular": [ "NN", "JJ" ], "Elco": [ "NNP" ], "OFFICES": [ "NNS" ], "Pod": [ "NNP" ], "Poe": [ "NNP" ], "rejections": [ "NNS" ], "OFFICER": [ "NN" ], "inspirations": [ "NNS" ], "exclusive": [ "JJ", "NN" ], "chances": [ "NNS" ], "Dumpty": [ "NNP" ], "Lessening": [ "VBG" ], "Figuring": [ "VBG" ], "Territorial": [ "NNP", "JJ" ], "parliamentary": [ "JJ" ], "chancel": [ "NN" ], "Sorbus": [ "NNP" ], "chanced": [ "VBD", "VBN" ], "old-timers": [ "NNS", "JJ" ], "Nguyen": [ "NNP" ], "EniChem": [ "NNP" ], "naturalistic": [ "JJ" ], "exacerbating": [ "VBG" ], "gouging": [ "VBG", "NN" ], "Schloss": [ "NNP" ], "surroundings": [ "NNS" ], "politicized": [ "VBN", "JJ" ], "Org": [ "NNP" ], "artemisia": [ "NN" ], "Denenchofu": [ "NNP" ], "piano": [ "NN" ], "Legend": [ "NNP", "NN" ], "Eurydice": [ "NNP" ], "enthrones": [ "VBZ" ], "plaintiff": [ "NN" ], "mainly": [ "RB" ], "voided": [ "VBD", "VBN" ], "checkpoints": [ "NNS" ], "theatricals": [ "NNS" ], "Abandon": [ "VB" ], "Gobain": [ "NNP" ], "chips": [ "NNS" ], "Magnavox": [ "NNP" ], "clothbound": [ "JJ" ], "queried": [ "VBN", "VBD" ], "Newswire": [ "NNP" ], "AIRCOA": [ "NNP" ], "affluent": [ "JJ", "NN" ], "Hester": [ "NNP" ], "queries": [ "NNS", "VBZ" ], "infesting": [ "VBG" ], "Spooked": [ "VBN" ], "saucers": [ "NNS" ], "inventive": [ "JJ" ], "Aladdin": [ "NNP" ], "acquired": [ "VBN", "JJ", "VBD" ], "arborists": [ "NNS" ], "artsy": [ "JJ" ], "doormen": [ "NNS" ], "Shearon": [ "NNP" ], "Pitted": [ "VBN" ], "acquirer": [ "NN" ], "acquires": [ "VBZ" ], "Huntingtons": [ "NNPS" ], "Garstung": [ "NNP" ], "Demanding": [ "VBG" ], "broach": [ "VB" ], "radar-controlled": [ "JJ" ], "pure-voiced": [ "JJ" ], "Fleece": [ "NNP" ], "exam": [ "NN" ], "amen": [ "UH" ], "a.m": [ "RB", "NN" ], "agencies": [ "NNS" ], "Zabel": [ "NNP" ], "stropped": [ "VBD" ], "launderings": [ "NNS" ], "refurnished": [ "VBN" ], "Volkswagens": [ "NNPS" ], "swift": [ "JJ", "NN", "RB" ], "more-discriminating": [ "JJ" ], "Gospels": [ "NNP", "NNPS", "NNS" ], "undrinkable": [ "JJ" ], "Oana": [ "NNP" ], "epidemics": [ "NNS" ], "RNA": [ "NNP" ], "Bums": [ "NNS" ], "highbrows": [ "NNS" ], "dismemberment": [ "NN" ], "diehard": [ "JJ" ], "efficient-market": [ "NN" ], "Enasa": [ "NNP" ], "metal-cleaning": [ "JJ" ], "Jascha": [ "NNP" ], "poems-in-drawing-and-type": [ "JJ" ], "open-meeting": [ "JJ" ], "Legionnaire": [ "NNP" ], "unlamented": [ "JJ" ], "pottage": [ "NN" ], "Bravo": [ "NNP", "UH" ], "submarine-based": [ "JJ" ], "CommerceBancorp": [ "NNP" ], "Preserve": [ "NNP" ], "well-fitted": [ "JJ" ], "Kirkpatrick": [ "NNP" ], "charts": [ "NNS", "VBZ" ], "Active": [ "JJ", "NNP" ], "bewildering": [ "VBG", "JJ" ], "counterchallenge": [ "VB" ], "off-Broadway": [ "JJ", "NNP", "NN" ], "Merry-Go-Round": [ "NNP" ], "strong-jawed": [ "JJ" ], "twinge": [ "NN" ], "DEFECTOR": [ "NN", "NNP" ], "Vouillemont": [ "NNP" ], "BizMart": [ "NNP" ], "vanity": [ "NN" ], "present": [ "JJ", "VBP", "RB|JJ", "NN", "RB", "VB" ], "inconspicuous": [ "JJ" ], "voter-registration": [ "JJ" ], "abandoned": [ "VBN", "VBD", "JJ" ], "Pengally": [ "NNP" ], "Sintel": [ "NNP" ], "GM-10": [ "NN", "NNP" ], "Periods": [ "NNS" ], "Kynikos": [ "NNP" ], "Distributive": [ "NNP" ], "whirlpool": [ "NN" ], "decongestant": [ "NN" ], "rename": [ "VB" ], "journalistically": [ "RB" ], "apprehend": [ "VB" ], "disapprove": [ "VBP", "VB" ], "encouragement": [ "NN" ], "pews": [ "NNS" ], "Rymer": [ "NNP" ], "no.": [ "NN" ], "Blauberman": [ "NNP" ], "audiences": [ "NNS" ], "SWAPO": [ "NNP" ], "conceptuality": [ "NN" ], "Stooges": [ "NNPS", "NNP" ], "church-supported": [ "JJ" ], "disapprovingly": [ "RB" ], "Violetta": [ "NNP" ], "Kornreich": [ "NNP" ], "enumeration": [ "NN" ], "electro-magnetic": [ "JJ" ], "besting": [ "VBG" ], "unity": [ "NN" ], "Schwarzen": [ "FW" ], "Suppression": [ "NN" ], "inch": [ "NN", "RB", "VB" ], "chlorofluorocarbons": [ "NNS" ], "cinq": [ "FW" ], "Ridpath": [ "NNP" ], "coached": [ "VBN" ], "Violet": [ "NNP" ], "convocation": [ "NN" ], "outcast": [ "NN" ], "automation": [ "NN" ], "goverment": [ "NN" ], "APPELLATE": [ "NN" ], "Maluf": [ "NNP" ], "student": [ "NN" ], "lopsided": [ "JJ" ], "Gansevoort": [ "NNP" ], "supersafe": [ "NN" ], "lobby": [ "NN", "VB" ], "antsy": [ "JJ", "RB" ], "plowed": [ "VBN", "VBD", "JJ" ], "whole": [ "JJ", "NN", "RP" ], "banded": [ "VBN" ], "YEARS": [ "NNS" ], "Dutchess": [ "NNP" ], "poetry-and-jazz": [ "NN", "JJ" ], "Ringers": [ "NNS", "NNP" ], "Kleinwort": [ "NNP" ], "well-stocked": [ "JJ" ], "inc.": [ "NNP", "NN" ], "Takako": [ "NNP" ], "Gables": [ "NNP", "NNPS" ], "Gabler": [ "NNP" ], "RICHARD": [ "NNP" ], "PARENTAL": [ "JJ" ], "tendering": [ "VBG", "NN" ], "fancying": [ "VBG" ], "school-financing": [ "JJ" ], "biologist": [ "NN" ], "console": [ "VB", "VBP" ], "superstrong": [ "JJ" ], "Datatech": [ "NNP" ], "hastening": [ "VBG" ], "Forstmann": [ "NNP" ], "Emlyn": [ "NNP" ], "cruisers": [ "NNS" ], "sparking": [ "VBG" ], "earnestly": [ "RB" ], "back-office": [ "NN", "JJ" ], "MINING": [ "NNP" ], "Besides": [ "IN", "RB" ], "putative": [ "JJ" ], "Goodkind": [ "NNP" ], "Soviet-Chinese": [ "NNP" ], "Bonacquist": [ "NNP" ], "Deluxe": [ "NNP", "JJ" ], "racists": [ "NNS" ], "Fearing": [ "VBG" ], "counteroffer": [ "NN" ], "tax-exempts": [ "NNS" ], "mother-in-law": [ "NN" ], "Anarcho-Syndicalists": [ "NNPS" ], "Inspector": [ "NNP" ], "Pillay": [ "NNP" ], "lady-bugs": [ "NNS" ], "scared": [ "VBN", "JJ", "RB", "VBD" ], "Mandy": [ "NNP" ], "socialists": [ "NNS" ], "demeanor": [ "NN" ], "Rwanda": [ "NNP" ], "twirling": [ "VBG", "NN" ], "racking": [ "VBG" ], "ablaze": [ "JJ", "RB" ], "Mando": [ "NNP" ], "scares": [ "NNS", "VBZ" ], "Pt.": [ "NN" ], "cheap-money": [ "NN" ], "Statutes": [ "NNS" ], "computer-based": [ "JJ" ], "Schwab": [ "NNP" ], "Taubman": [ "NNP" ], "sickly-tolerant": [ "JJ" ], "detergent": [ "NN" ], "campfire": [ "NN" ], "noose": [ "NN" ], "Sheri": [ "NNP" ], "mailed-fist-in-velvet-glove": [ "JJ" ], "curtseyed": [ "VBD" ], "apostolic": [ "JJ" ], "dangling": [ "VBG", "JJ" ], "dollar-related": [ "JJ" ], "Aero": [ "NNP" ], "five-volume": [ "JJ" ], "Leila": [ "NNP" ], "proprieter": [ "NN" ], "Heller\\": [ "NNP" ], "professedly": [ "RB" ], "testosterone": [ "NN" ], "Pte": [ "NNP" ], "AIRLINES": [ "NNPS" ], "U.S.-owned": [ "JJ" ], "swear": [ "VB", "VBP" ], "sweat": [ "NN", "VBD", "VBP", "VB" ], "Fable": [ "NNP" ], "pratakku": [ "FW" ], "Take-up": [ "JJ" ], "hot-formed": [ "JJ" ], "air-injection": [ "NN" ], "Sasaki": [ "NNP" ], "DWG": [ "NNP" ], "tailgate": [ "NN" ], "loner": [ "NN" ], "hotline": [ "NN" ], "estimators": [ "NNS" ], "Toughest": [ "NNP" ], "Brunei": [ "NNP" ], "Lillehammer": [ "NNP" ], "sabre": [ "NN" ], "unpatriotic": [ "JJ" ], "artifacts": [ "NNS" ], "*": [ "SYM", ",", ":" ], "omnia": [ "FW" ], "slant-wise": [ "JJ" ], "citations": [ "NNS" ], "dynamite": [ "NN", "JJ" ], "Bruner": [ "NNP" ], "lost-profits": [ "JJ" ], "stymied": [ "VBN", "JJ" ], "baffling": [ "JJ" ], "mutter": [ "VB" ], "unfalteringly": [ "RB" ], "NASDAQ": [ "NNP" ], "mailed": [ "VBN", "VBD", "JJ" ], "state-mandated": [ "JJ" ], "teaming": [ "VBG" ], "Med-Chemical": [ "NNP" ], "Neblett": [ "NNP" ], "MEMOS": [ "NNS", "NNPS" ], "non-GM": [ "JJ" ], "market-watchers": [ "NNS" ], "unpolarizing": [ "VBG" ], "Pemberton": [ "NNP" ], "below": [ "IN", "RB" ], "ruling": [ "NN", "VBG", "JJ" ], "Engages": [ "NNS" ], "fulllength": [ "JJ" ], "stirring": [ "VBG", "JJ", "NN" ], "Dennehy": [ "NNP" ], "Sibylla": [ "NNP" ], "eagerness": [ "NN" ], "authenticity": [ "NN" ], "fertilizers": [ "NNS" ], "Fortunate": [ "JJ" ], "mud-beplastered": [ "JJ" ], "myn": [ "PRP$" ], "Sakellariadis": [ "NNP" ], "narrator": [ "NN" ], "trailing": [ "VBG" ], "Transmation": [ "NNP" ], "Lodley": [ "NNP" ], "editorial-page": [ "NN", "JJ" ], "Yum-Yum": [ "NNP" ], "pickings": [ "NNS", "NN" ], "Maris": [ "NNP" ], "overdeveloped": [ "JJ", "NN" ], "Sheinberg": [ "NNP" ], "Textbooks": [ "NNS" ], "extras": [ "NNS" ], "U.S.-South": [ "JJ", "NNP" ], "heartless": [ "JJ" ], "threetranche": [ "JJ" ], "Marie": [ "NNP" ], "clicks": [ "NNS", "VBZ" ], "pantomime": [ "NN", "VBP" ], "exclamation": [ "NN" ], "wood-processing": [ "JJ" ], "union-industry": [ "NN" ], "Route": [ "NNP", "IN", "NN" ], "Spanish": [ "JJ", "NNP", "NNPS" ], "frustrate": [ "VB" ], "risked": [ "VBD", "VBN" ], "Market-based": [ "JJ" ], "earth-moving": [ "JJ" ], "Marble": [ "NNP" ], "XRELEASE": [ "NN" ], "alienated": [ "VBN", "VBD" ], "Coach": [ "NNP", "NN", "VB" ], "devlopments": [ "NNS" ], "ranks": [ "NNS", "VBZ" ], "securities-industry": [ "NN", "JJ" ], "Cambodian": [ "JJ" ], "firestorm": [ "NN" ], "alienates": [ "VBZ" ], "Shooting": [ "NN", "NNP" ], "sopping": [ "JJ", "VBG" ], "voluble": [ "JJ" ], "Andreas": [ "NNP" ], "Yokum": [ "NNP" ], "sunbonnet": [ "NN" ], "business-development": [ "NN" ], "woo": [ "VB", "VBP" ], "Dockray": [ "NNP" ], "narcotic": [ "JJ" ], "Survivability": [ "NN" ], "OmegaSource": [ "NNP" ], "jihad": [ "NN" ], "spearheaded": [ "VBD", "VBN" ], "fruit-concentrate": [ "JJ" ], "self-pity": [ "NN" ], "pardon": [ "VB", "NN" ], "divan-like": [ "JJ" ], "eligible": [ "JJ", "NN" ], "snowing": [ "VBG" ], "pre-eminence": [ "NN" ], "Dallas-Barcelona": [ "NNP" ], "wheeled": [ "VBD", "JJ", "VBN" ], "superficially": [ "RB" ], "IBM-compatible": [ "JJ" ], "herbicide": [ "NN" ], "general-interest": [ "JJ" ], "ostinato": [ "NN" ], "Wallach": [ "NNP", "NN" ], "rearguard": [ "NN" ], "Torrington": [ "NNP" ], "Reprimand": [ "NN" ], "microbe": [ "NN" ], "experimentally": [ "RB" ], "Unsolved": [ "NNP" ], "O.J.": [ "NNP" ], "Mossberg": [ "JJ", "NNP" ], "scholar": [ "NN" ], "clientele": [ "NN", "NNS" ], "jarringly": [ "RB" ], "piling": [ "VBG", "NN" ], "lime": [ "NN" ], "Nasdaq": [ "NNP", "NN" ], "NATO-Warsaw": [ "NNP" ], "this....": [ ":" ], "jacking": [ "VBG" ], "Bavaria": [ "NNP" ], "Middleness": [ "NN" ], "aeterna": [ "FW" ], "cow-man": [ "NN" ], "contretemps": [ "NN" ], "transmogrified": [ "VBD", "VBN" ], "ANACOMP": [ "NNP" ], "haughtily": [ "RB" ], "agro-industrial": [ "JJ" ], "Potts": [ "NNP" ], "Kennedyesque": [ "JJ" ], "Lucille": [ "NNP" ], "Mehrens": [ "NNP" ], "Alcoholics": [ "NNPS" ], "Arboretum": [ "NNP" ], "single-B": [ "JJ", "NN", "NNP" ], "single-A": [ "JJ", "NNP", "NN" ], "sittings": [ "NNS" ], "single-D": [ "JJ" ], "interrupting": [ "VBG" ], "platitudinous": [ "JJ" ], "Scientific-Atlanta": [ "NNP" ], "Yankelovich": [ "NNP" ], "chassis": [ "NN", "NNS" ], "auctioned": [ "VBN", "VBD" ], "dollar-convertible": [ "JJ" ], "previews": [ "NNS" ], "shriek": [ "NN", "VB" ], "Descriptive": [ "JJ" ], "Precise": [ "JJ" ], "Raheem": [ "NNP" ], "culling": [ "VBG" ], "chlorides": [ "NNS" ], "pretensions": [ "NNS" ], "reactivated": [ "VBN", "VBD" ], "reports": [ "NNS", "VBZ" ], "P.R.": [ "JJ", "NN" ], "deal-blocker": [ "NN" ], "Buy-Back": [ "NNP" ], "catalyzed": [ "VBN" ], "cancellation": [ "NN" ], "Audi": [ "NNP" ], "recession-inspired": [ "JJ" ], "secluded": [ "VBN", "JJ" ], "ground": [ "NN", "JJ", "VB", "VBD", "VBN" ], "best-of-seven": [ "JJ" ], "bauble": [ "NN" ], "a-GM": [ "NNP" ], "nicotine-choked": [ "JJ" ], "psychological": [ "JJ" ], "N.J.-based": [ "JJ", "NNP" ], "well-braced": [ "JJ" ], "Geraetetechnik": [ "NNP" ], "Wales": [ "NNP" ], "disaster-prone": [ "JJ" ], "buckskin": [ "NN" ], "Richebourg": [ "NNP" ], "cherishing": [ "VBG" ], "marketers": [ "NNS" ], "Shioya": [ "NNP" ], "racial-minority": [ "JJ" ], "exhort": [ "VB" ], "Supervisors": [ "NNPS", "NNP" ], "Admitting": [ "VBG" ], "occupying": [ "VBG", "JJ" ], "Lynch-led": [ "JJ" ], "panoply": [ "NN" ], "Tex.": [ "NNP" ], "untie": [ "VB" ], "passport": [ "NN" ], "Blvd.": [ "NNP" ], "until": [ "IN" ], "icebound": [ "JJ" ], "suffocated": [ "VBN" ], "Tudor": [ "NNP", "JJ" ], "Christina": [ "NNP" ], "playboy": [ "NN" ], "Necessary": [ "JJ" ], "Christine": [ "NNP" ], "downward": [ "JJ", "RB" ], "brings": [ "VBZ" ], "canonized": [ "VBN", "JJ" ], "glass": [ "NN" ], "Redeemable": [ "NNP" ], "Boykins": [ "NNP" ], "midst": [ "NN" ], "flubbed": [ "VBD" ], "Reagan-Bush": [ "JJ", "NNP" ], "Praxis": [ "NNP" ], "editorship": [ "NN" ], "self-styled": [ "JJ" ], "sweeten": [ "VB" ], "ruckus": [ "NN" ], "SHIPPING": [ "NNP" ], "Ending": [ "VBG" ], "aloofness": [ "NN" ], "pinholes": [ "NNS" ], "nationalizing": [ "VBG" ], "sweeter": [ "JJR" ], "concepts": [ "NNS" ], "denyin": [ "VBG" ], "FERC": [ "NNP" ], "business...": [ ":" ], "Zoellick": [ "NNP" ], "Shidler": [ "NNP" ], "drop-block": [ "NN" ], "promulgated": [ "VBN", "VBD" ], "reviewing": [ "VBG", "NN" ], "vitiated": [ "VBN" ], "gargantuan": [ "JJ" ], "Meets": [ "NNP" ], "Venerable": [ "NNP" ], "Bush-supported": [ "JJ" ], "syntactic": [ "JJ" ], "leaguers": [ "NNS" ], "revisit": [ "VB", "NN" ], "retooled": [ "VBN", "VBD" ], "Forman": [ "NNP" ], "credential": [ "NN" ], "LeCarre": [ "NNP" ], "outlawed": [ "VBN", "JJ", "VBD" ], "Reese": [ "NNP" ], "fourteen-team": [ "JJ" ], "vase": [ "NN" ], "pearl-handled": [ "JJ" ], "extortion": [ "NN" ], "Mailson": [ "NNP" ], "K.B.": [ "NNP" ], "youths": [ "NNS" ], "revolt": [ "NN" ], "scoffs": [ "VBZ" ], "Earning": [ "NN" ], "alias": [ "NN" ], "wild-sounding": [ "JJ" ], "Reuss": [ "NNP" ], "maids": [ "NNS" ], "aping": [ "VBG" ], "Quina": [ "NNP" ], "rewards": [ "NNS", "VBZ" ], "artistas": [ "NNS" ], "senators": [ "NNS" ], "Resistol": [ "NNP" ], "tranquilizing": [ "JJ" ], "feedback": [ "NN" ], "Half-year": [ "JJ" ], "telecom": [ "NN" ], "hallelujahs": [ "NNS" ], "kickoff": [ "NN" ], "Smolensk": [ "NNP" ], "Hogue": [ "NNP" ], "conned": [ "VBN" ], "self-appointed": [ "JJ", "VBN" ], "backpack": [ "NN" ], "welling": [ "VBG" ], "nonpublic": [ "JJ" ], "mouth-up": [ "JJ" ], "gymnasium-sized": [ "JJ" ], "in...": [ ":" ], "county-wide": [ "JJ" ], "undercut": [ "VB", "NN", "VBD", "VBN", "VBP", "JJ" ], "Cosgrove-Meurer": [ "NNP" ], "programed": [ "VBN" ], "IBM\\": [ "NNP" ], "McClements": [ "NNP" ], "Seth": [ "NNP" ], "Thomas": [ "NNP", "NNPS" ], "SeaFest\\/JAC": [ "NNP" ], "educating": [ "VBG", "NN" ], "Sets": [ "NNS" ], "braised": [ "VBN" ], "headboard": [ "NN" ], "haphazardly": [ "RB" ], "clumsy": [ "JJ" ], "blushes": [ "NNS" ], "debut": [ "NN", "VB", "VBP" ], "flamboyantly": [ "RB" ], "addicted": [ "VBN", "JJ" ], "Siewert": [ "NNP" ], "gung-ho": [ "JJ" ], "blushed": [ "VBD", "VBN" ], "obdurate": [ "JJ" ], "Plot": [ "NN" ], "Plow": [ "NNP" ], "snakes": [ "NNS", "VBZ" ], "Mid-Century": [ "NNP" ], "concord": [ "NN" ], "chinoiserie": [ "NN" ], "spider": [ "NN" ], "Mongolia": [ "NNP" ], "snaked": [ "VBD" ], "cathedral": [ "NN" ], "misfortune": [ "NN" ], "no-waste": [ "JJ" ], "Dominant": [ "JJ", "NNP" ], "cattle-car": [ "NN" ], "rubberstamp": [ "NN" ], "excepting": [ "VBG" ], "inplace": [ "NN" ], "copolymers": [ "NNS" ], "Hercules": [ "NNP", "NNS" ], "no-growth": [ "JJ", "NN" ], "hangouts": [ "NNS" ], "Vanity": [ "NNP" ], "air-service": [ "NN" ], "money-center": [ "JJ" ], "J&J": [ "NNP" ], "epithet": [ "NN" ], "Loneliness": [ "NNP", "NN" ], "mah-jongg": [ "FW" ], "department\\/office": [ "NN" ], "Olestra": [ "NN", "NNP" ], "Volokhs": [ "NNPS" ], "grapes": [ "NNS" ], "muscling": [ "VBG" ], "Soft": [ "JJ", "NNP" ], "ate": [ "VBD" ], "market-sharing": [ "JJ" ], "shelves": [ "NNS" ], "atm": [ "NN" ], "no-o": [ "UH" ], "shelved": [ "VBD", "JJ", "VBN" ], "now-troubled": [ "JJ" ], "Weksel": [ "NNP" ], "Mighty": [ "NNP" ], "grassers": [ "NNS" ], "dosage": [ "NN" ], "air-conditioning": [ "NN", "JJ" ], "Hemorrhage": [ "NNP" ], "earthy": [ "JJ" ], "angelic": [ "JJ" ], "Arianist": [ "NNP" ], "NATIONWIDE": [ "NNP" ], "Courter": [ "NNP" ], "unfilled": [ "JJ" ], "playfully": [ "RB" ], "Blish": [ "NNP" ], "semifinished": [ "VBN" ], "Koizumi": [ "NNP" ], "customization": [ "NN" ], "Arianism": [ "NNP" ], "renderings": [ "NNS" ], "OKing": [ "NNP" ], "salary-pool": [ "NN" ], "reportorial": [ "JJ" ], "similarly": [ "RB" ], "vaccine-related": [ "JJ" ], "defaulting": [ "VBG" ], "tango": [ "NN" ], "Motion-picture": [ "JJ" ], "tangy": [ "JJ" ], "Invasion": [ "NNP", "NN" ], "old-timer": [ "NN" ], "ranging": [ "VBG" ], "Vesoft": [ "NNP" ], "librettists": [ "NNS" ], "scaled-down": [ "JJ" ], "Francois-Poncet": [ "NNP" ], "n-trial": [ "NN" ], "strike-outs": [ "NNS" ], "Urmstom": [ "NNP" ], "Prevent": [ "VB" ], "loan-restructuring": [ "JJ" ], "unifier": [ "NN" ], "unguided": [ "JJ" ], "small-office": [ "JJ" ], "Chequers": [ "NNP" ], "Rats": [ "NNP" ], "Wyss": [ "NNP" ], "Moldavia": [ "NNP" ], "Data": [ "NNP", "NNS", "NNP|NPS", "NNPS", "NN" ], "coward": [ "NN" ], "Schein": [ "NNP" ], "walloped": [ "VBD" ], "most-owned": [ "JJ" ], "Compson": [ "NNP" ], "uninjectable": [ "JJ" ], "readjusted": [ "VBN" ], "Wyse": [ "NNP" ], "zounds": [ "UH" ], "seven-month": [ "JJ" ], "unintended": [ "JJ" ], "gulped": [ "VBD" ], "Sulfaquinoxaline": [ "NN" ], "spacious": [ "JJ" ], "loathsome": [ "JJ" ], "selflessness": [ "NN" ], "Japanese-managed": [ "JJ" ], "local-content": [ "JJ", "NN" ], "relaunched": [ "VBN" ], "kayo": [ "VB" ], "Canter": [ "NNP" ], "absorber": [ "NN" ], "Duesseldorf": [ "NNP" ], "ex-officers": [ "NNS" ], "Unicorp": [ "NNP" ], "hastily-summoned": [ "JJ" ], "unperformed": [ "JJ" ], "Placido": [ "NNP" ], "absorbed": [ "VBN", "JJ", "VBD" ], "divan": [ "NN" ], "MYERSON": [ "NNP" ], "layoffs": [ "NNS" ], "Mathis": [ "NNP" ], "Lynn": [ "NNP" ], "blackmailer": [ "NN" ], "matriarch": [ "NN" ], "shall": [ "MD" ], "misdirectors": [ "NNS" ], "figger": [ "VBP" ], "Birgitta": [ "NNP" ], "Talcott": [ "NNP" ], "Chablis": [ "NNPS" ], "Unsuspecting": [ "JJ" ], "blackmailed": [ "VBN" ], "Lynx": [ "NNP" ], "non-Canadian": [ "JJ", "NN" ], "Kikiyus": [ "NNPS" ], "shalt": [ "VB" ], "trigonal": [ "JJ" ], "Texans": [ "NNPS", "NNP" ], "Quality": [ "NN", "NNP", "JJ" ], "Lending": [ "NN", "VBG" ], "bodybuilder": [ "NN" ], "drunks": [ "NNS" ], "comprise": [ "VBP", "VB" ], "Mansion": [ "NNP" ], "nineteenth": [ "JJ" ], "TARP": [ "NNP" ], "signatures": [ "NNS" ], "prim": [ "JJ" ], "Union": [ "NNP", "JJ", "NN" ], "droppings": [ "NNS" ], "sexist": [ "JJ" ], "Vitamin": [ "NN" ], "undue": [ "JJ" ], "plutocratic": [ "JJ" ], "Softletter": [ "NNP" ], "judgeship": [ "NN" ], "Paradise": [ "NNP", "NN" ], "Private-property": [ "NN" ], "rough-and-tumble": [ "JJ" ], "pastoral": [ "JJ" ], "die-hard": [ "JJ" ], "parodies": [ "NNS" ], "non-smokers": [ "NNS" ], "third-place": [ "JJ" ], "Fixx": [ "NNP" ], "Moller": [ "NNP" ], "overgrazing": [ "NN" ], "pragmatism": [ "NN" ], "gweilos": [ "FW" ], "parodied": [ "VBD" ], "heartily": [ "RB" ], "niche-itis,``": [ "``" ], "Turbinen-Union": [ "NNP" ], "Account": [ "NNP", "NN" ], "cartwheels": [ "NNS" ], "tramped": [ "VBD" ], "stammered": [ "VBD" ], "nonobservant": [ "JJ" ], "Inderbinen": [ "NNP" ], "sales-incentive": [ "JJ" ], "tungsten": [ "NN" ], "X": [ "NN", "NNP" ], "Yell": [ "NNP" ], "publicity-conscious": [ "JJ" ], "volatility": [ "NN" ], "Alternate": [ "JJ" ], "Savageau": [ "NNP" ], "Arleigh": [ "NNP" ], "greens": [ "NNS" ], "BLIP": [ "NNP" ], "textbooks": [ "NNS" ], "Petit": [ "NNP" ], "Insurance-related": [ "JJ" ], "Oakland-Berkeley": [ "NNP" ], "thirtysomething": [ "NN", "NNP", "JJ" ], "sassing": [ "NN" ], "sanctioning": [ "VBG" ], "plagued": [ "VBN", "VBD" ], "expediency": [ "NN" ], "annual-income": [ "NN" ], "Erjun": [ "NNP" ], "nolle": [ "FW" ], "unexpectedly": [ "RB" ], "goodnight": [ "NN" ], "largely-silent": [ "JJ" ], "four-man": [ "JJ" ], "press-ganged": [ "JJ" ], "John": [ "NNP", "NNPS" ], "skulls": [ "NNS" ], "Veatch": [ "NNP" ], "Heydrich": [ "NNP" ], "truth-packed": [ "NN" ], "credit-worthy": [ "JJ" ], "campaigners": [ "NNS" ], "W.W.": [ "NNP" ], "thees": [ "DT" ], "stamps": [ "NNS" ], "example": [ "NN" ], "Dewar": [ "NNP" ], "pilloried": [ "VBN", "VBD" ], "corn-farmers": [ "NNS" ], "Bowers": [ "NNP" ], "rolled": [ "VBD", "VBN", "JJ" ], "Rebaja": [ "NNP" ], "world-scale": [ "JJ" ], "personalize": [ "VB" ], "Kelts": [ "NNP" ], "symbolizes": [ "VBZ" ], "possum-hunting": [ "NN" ], "undependable": [ "JJ" ], "Peterson": [ "NNP" ], "roller": [ "NN" ], "knot-tying": [ "JJ" ], "Phenix-Transmission": [ "NNP" ], "sacrificing": [ "VBG" ], "triggers": [ "NNS", "VBZ" ], "Covert": [ "NNP" ], "Vacancy": [ "NN", "NNP" ], "plutonium-handling": [ "NN" ], "linguist-anthropologist": [ "NN" ], "reconfirmation": [ "NN" ], "Masaaki": [ "NNP" ], "installments": [ "NNS" ], "genus": [ "NN" ], "comparable-store": [ "JJ" ], "post-surgical": [ "JJ" ], "Closes": [ "VBZ" ], "Ukiah": [ "NNP" ], "Mehitabel": [ "NNP" ], "Locally": [ "RB" ], "Afghanistan\\/Southwest": [ "NNP" ], "non-utility": [ "JJ" ], "matte": [ "NN" ], "Willing": [ "JJ" ], "Closed": [ "VBN", "NNP", "JJ" ], "trucked": [ "VBN" ], "Nostradamus": [ "NNP" ], "Closen": [ "NNP" ], "Method": [ "NN" ], "sponged": [ "VBD", "VBN" ], "self-confidence": [ "NN" ], "roofer": [ "NN" ], "billing": [ "NN", "VBG" ], "holdings": [ "NNS" ], "sauterne": [ "JJ" ], "high-interest": [ "JJ" ], "perchlorate": [ "NN" ], "roofed": [ "VBN" ], "chucked": [ "VBD", "VBN" ], "sponges": [ "NNS" ], "jackass": [ "NN" ], "Shuman": [ "NNP" ], "Enormous": [ "JJ" ], "homeland": [ "NN" ], "eastern": [ "JJ" ], "Drago": [ "NNP" ], "Niels": [ "NNP" ], "tumor-suppressor": [ "JJ" ], "Platoons": [ "NNS" ], "Safeway": [ "NNP" ], "Gloriana": [ "NNP" ], "Hygene": [ "NNP" ], "commerce": [ "NN" ], "Schaeffer": [ "NNP" ], "Tyson-Spinks": [ "JJ" ], "Kaufman": [ "NNP" ], "calcium": [ "NN" ], "symbolically": [ "RB" ], "opulence": [ "NN" ], "flooding": [ "VBG", "NN" ], "vows": [ "VBZ", "NNS" ], "Maccabeus": [ "NNP" ], "remembering": [ "VBG", "NN" ], "swindlers": [ "NNS" ], "Kornevey": [ "NNP" ], "manipulators": [ "NNS" ], "anti-polio": [ "JJ" ], "short-selling": [ "NN", "JJ" ], "outfitted": [ "VBD", "VBN" ], "Lebow": [ "NNP" ], "Eishi": [ "NNP" ], "campaigning": [ "VBG", "NN" ], "blood-and-guts": [ "JJ" ], "Morever": [ "RB" ], "Diefenbach": [ "NNP" ], "confesses": [ "VBZ" ], "shipwrecked": [ "JJ" ], "rebellion": [ "NN" ], "harmony": [ "NN" ], "Wholesaler-Distributors": [ "NNP", "NNS" ], "Amelia": [ "NNP" ], "Orban": [ "NNP" ], "exertion": [ "NN" ], "kitchen-table": [ "JJ" ], "middle-aged": [ "JJ" ], "Caltrans": [ "NNP", "NNS" ], "Presiding": [ "NNP" ], "hectares": [ "NNS" ], "Meps": [ "NNP" ], "ownership": [ "NN" ], "personifying": [ "VBG" ], "subgroups": [ "NNS" ], "Villanueva": [ "NNP" ], "off-the-shelf": [ "JJ" ], "high-ranking": [ "JJ" ], "Terree": [ "NNP" ], "Vellante": [ "NNP" ], "disseminated": [ "VBN" ], "maxims": [ "NNS" ], "wavy-haired": [ "JJ" ], "chafing": [ "VBG", "JJ" ], "leg-split": [ "JJ" ], "disseminates": [ "VBZ" ], "honky-tonk": [ "NN" ], "luminously": [ "RB" ], "PHYSICIANS": [ "NNS" ], "distribute": [ "VB", "VBP" ], "overemphasis": [ "NN" ], "beset": [ "VBN", "JJ", "VBD" ], "false-fronted": [ "JJ" ], "Rigoletto": [ "NNP" ], "eleventh-floor": [ "JJ" ], "exclaiming": [ "VBG" ], "long-dated": [ "JJ" ], "rushing": [ "VBG", "NN" ], "succeeding": [ "VBG", "JJ", "NN" ], "collectibles": [ "NNS" ], "keeled": [ "VBD" ], "remedial": [ "JJ" ], "butchering": [ "NN" ], "deters": [ "VBZ" ], "girding": [ "VBG" ], "prison": [ "NN", "VB" ], "shoemaker": [ "NN" ], "liberal-led": [ "JJ" ], "nutritionists": [ "NNS" ], "grandstander": [ "NN" ], "Dubbed": [ "VBN" ], "Johns-Manville": [ "NNP" ], "PENALTY": [ "NNP", "NN" ], "Hindus": [ "NNP" ], "merger-acquisition": [ "JJ" ], "pothos": [ "NN" ], "return-preparer": [ "NN" ], "datadex": [ "NN" ], "tolerable": [ "JJ" ], "primaries": [ "NNS" ], "Midshipman": [ "NNP" ], "unimpassioned": [ "JJ" ], "remind": [ "VB", "VBP" ], "misled": [ "VBD", "VBN" ], "cavin": [ "VBG" ], "groundwater": [ "NN" ], "malnutrition": [ "NN" ], "tomblike": [ "JJ" ], "Further": [ "RB", "JJ", "JJR", "NNP", "RBR" ], "Ithaca": [ "NNP", "NN" ], "Warren": [ "NNP" ], "battlefield": [ "NN" ], "right": [ "NN", "RB", "VB", "IN", "JJ" ], "old": [ "JJ" ], "ole": [ "JJ", "NN" ], "PREDAWN": [ "NN" ], "landfall": [ "NN" ], "Soros": [ "NNP" ], "System": [ "NNP", "NN" ], "NS-X": [ "NNP" ], "Application": [ "NNP", "NN" ], "Conservation": [ "NNP", "NN" ], "Noel": [ "NNP" ], "rate...": [ ":" ], "Mossman": [ "NNP" ], "animate": [ "JJ" ], "knifelike": [ "JJ" ], "NutraSweet": [ "NNP" ], "dog-powered": [ "JJ" ], "ruffled": [ "VBN", "JJ", "VBD" ], "whitens": [ "VBZ" ], "sowed": [ "VBD" ], "Naguib": [ "NNP" ], "prefund": [ "VB" ], "ruffles": [ "VBZ" ], "summoned": [ "VBN", "VBD" ], "Sharrock": [ "NNP" ], "stints": [ "NNS", "VBZ" ], "stepgrandmother": [ "NN" ], "Bregman": [ "NNP" ], "Valentin": [ "NNP" ], "Nicholson": [ "NNP" ], "Purdie": [ "NNP" ], "bowing": [ "VBG" ], "PENTAGON": [ "NNP" ], "emits": [ "VBZ" ], "hardliners": [ "NNS" ], "First": [ "NNP", "NNPS", "JJ", "LS", "RB" ], "Duquesne": [ "NNP" ], "instructed": [ "VBN", "VBD" ], "predisposition": [ "NN" ], "sun-parched": [ "JJ" ], "recollect": [ "VBP" ], "Chafin": [ "NNP" ], "Upjohn": [ "NNP" ], "case-law": [ "NN" ], "Chafic": [ "NNP" ], "Devastation": [ "NN" ], "acquisition-hungry": [ "JJ" ], "statements": [ "NNS" ], "Ainu": [ "NNP" ], "Betancourt": [ "NNP" ], "Scotland": [ "NNP" ], "mid-July": [ "NN" ], "premium-brand": [ "JJ" ], "Korean": [ "JJ", "NNP" ], "Hank": [ "NNP" ], "Overhanging": [ "VBG" ], "Hani": [ "NNP" ], "un-Christian": [ "JJ" ], "frazzled": [ "VBN" ], "Hann": [ "NNP" ], "Hang": [ "NNP", "VB" ], "Neuharths": [ "NNPS" ], "beach-head": [ "NN" ], "Hand": [ "NN", "VB", "NNP" ], "Submarines": [ "NNS" ], "gyration": [ "NN" ], "triplets": [ "NNS" ], "Hans": [ "NNP" ], "kerosene": [ "NN" ], "Bodhisattva": [ "NNP" ], "unfree": [ "JJ" ], "regenerating": [ "VBG" ], "Invest": [ "VB", "NNP", "VBP" ], "followthrough": [ "JJ" ], "JAPANESE": [ "JJ" ], "Superstate": [ "NNP" ], "stone-age": [ "JJ" ], "peppermints": [ "NNS" ], "toy-market": [ "NN" ], "onlooker": [ "NN" ], "upgrades": [ "NNS", "VBZ" ], "sighs": [ "VBZ", "NNS" ], "prosecutions": [ "NNS" ], "socially-oriented": [ "JJ" ], "Guests": [ "NNS" ], "drive-yourself": [ "JJ" ], "bateau": [ "JJ", "NN" ], "Sis": [ "NNP" ], "Sir": [ "NNP", "NN", "UH" ], "developing": [ "VBG", "JJ", "NN" ], "Sit": [ "VB", "NNP" ], "homogenous": [ "JJ" ], "bigger-than-expected": [ "JJ" ], "Josh": [ "NNP" ], "restorative": [ "JJ" ], "Sic": [ "FW" ], "Squad": [ "NN", "NNP" ], "Sie": [ "FW" ], "Sid": [ "NNP" ], "Sik": [ "NNP" ], "York-based": [ "JJ", "NNP" ], "black-market": [ "JJ", "NN" ], "acacia": [ "NN" ], "Sin": [ "NNP" ], "Sim": [ "NNP" ], "brown-coal": [ "NN" ], "battalion": [ "NN" ], "Handle": [ "VB" ], "lungs": [ "NNS" ], "Gradmann": [ "NNP" ], "Czechs": [ "NNPS" ], "Ramon": [ "NNP" ], "Ramos": [ "NNP" ], "tax-preparation": [ "NN" ], "momentary": [ "JJ" ], "wart": [ "NN", "NNS" ], "steamship": [ "NN" ], "Situations": [ "NNS" ], "Tiptonville": [ "NNP" ], "get-together": [ "NN" ], "CFM56": [ "NN" ], "round-the-world": [ "JJ" ], "Nymagic": [ "NNP" ], "malnourishment": [ "NN" ], "barrel-a-day": [ "JJ" ], "Voutila": [ "NNP" ], "Morrow": [ "NNP" ], "madrigaling": [ "NN" ], "BOEING": [ "NNP" ], "cottonseed": [ "NN" ], "twinkle": [ "NN" ], "ASPIS": [ "FW" ], "good-natured": [ "JJ" ], "Cristini": [ "NNP" ], "Creusot": [ "NNP" ], "push": [ "VB", "VBP", "NN" ], "combat-inflicted": [ "JJ" ], "Wallstreet": [ "NNP" ], "equalizer": [ "NN" ], "automated-quotation": [ "NN" ], "front-loads": [ "VBZ" ], "inter-bank": [ "JJ" ], "shimmy": [ "VB", "VBP" ], "Headrests": [ "NNS" ], "Juet": [ "NNP" ], "Metropolis": [ "NNP" ], "Backward": [ "NNP" ], "Peel": [ "NNP" ], "serloin": [ "NN" ], "Rama": [ "NNP" ], "before-and-after": [ "JJ" ], "efficiencies": [ "NNS" ], "carpenters": [ "NNS" ], "Peer": [ "NNP" ], "Peep": [ "NNP" ], "thick-walled": [ "JJ" ], "accelerometers": [ "NNS" ], "Henson": [ "NNP" ], "fatigues": [ "NNS" ], "Redgrave": [ "NNP" ], "shepherds": [ "NNS" ], "navigable": [ "JJ" ], "smalltime": [ "JJ" ], "consolidation": [ "NN" ], "Solihull": [ "NNP" ], "Darryl": [ "NNP" ], "alcoholics": [ "NNS" ], "REIGNS": [ "VBZ" ], "fatigued": [ "VBN", "JJ" ], "fault-tolerant": [ "JJ" ], "launchers": [ "NNS" ], "whole-house": [ "JJ" ], "Champion": [ "NNP", "NN" ], "uncourageous": [ "JJ" ], "Overpriced": [ "NNP" ], "hemetin": [ "NN" ], "somersault": [ "NN" ], "liabilty": [ "NN" ], "Most-Remarkable": [ "JJS" ], "depository": [ "NN", "JJ" ], "LePatner": [ "NNP" ], "world-shaking": [ "JJ" ], "Kevin": [ "NNP" ], "social-climbing": [ "JJ" ], "bulldozer": [ "NN" ], "thinkers": [ "NNS" ], "findings": [ "NNS" ], "insignificant": [ "JJ" ], "prediction": [ "NN" ], "milligram": [ "NN" ], "bulldozed": [ "VBN" ], "crescent": [ "NN" ], "frankfurter": [ "NN" ], "nuclear-plant": [ "JJ" ], "credit-softening": [ "NN" ], "repeaters": [ "NNS" ], "Boyden": [ "NNP" ], "random-walk": [ "JJ" ], "coppery": [ "JJ", "NN" ], "work-satisfaction": [ "NN" ], "post-merger": [ "JJ" ], "Irenaeus": [ "NNP" ], "Formosa": [ "NNP" ], "crooks": [ "NNS" ], "falling": [ "VBG", "JJ", "NN" ], "badge": [ "NN" ], "often-fatal": [ "JJ" ], "totalling": [ "VBG" ], "ramming": [ "VBG" ], "by-products": [ "NNS" ], "bi": [ "IN" ], "shortened": [ "VBN", "JJ" ], "contemplate": [ "VB", "VBP" ], "Kid-Isoletta": [ "NNP" ], "island-hopping": [ "JJ" ], "D.A.": [ "NNP", "NN" ], "back-pain": [ "NN" ], "Associated": [ "NNP", "VBN", "JJ" ], "counter-claims": [ "NNS" ], "Preservation": [ "NNP" ], "fourfold": [ "RB", "JJ" ], "de-linkage": [ "NN" ], "Travis": [ "NNP" ], "big-stock": [ "JJ" ], "Associates": [ "NNPS", "NNP", "NNS" ], "Bork": [ "NNP" ], "Slugger": [ "NNP" ], "IRNA": [ "NNP" ], "Malson": [ "NNP" ], "internationalizing": [ "VBG" ], "confidentiality": [ "NN" ], "Dauntless": [ "NNP" ], "Naji": [ "NNP" ], "Abbey": [ "NNP" ], "leopard-trimmed": [ "JJ" ], "Lisle": [ "NNP" ], "Stealth": [ "NNP" ], "Hyon-hui": [ "NNP" ], "ironical": [ "JJ" ], "McNeill": [ "NNP" ], "shipmates": [ "NNS" ], "single-parent": [ "JJ" ], "Altar": [ "NNP" ], "distancing": [ "VBG", "NN" ], "anatomical": [ "JJ", "NN" ], "Danaher": [ "NNP" ], "Ultraviolet": [ "NN" ], "Gilgore": [ "NNP" ], "ORANGE": [ "NN" ], "anti-shock": [ "JJ" ], "electrolytic": [ "JJ" ], "resuscitation": [ "NN" ], "loving": [ "JJ", "VBG" ], "high-speed": [ "JJ" ], "one-two": [ "JJ" ], "Elegies": [ "NNP" ], "leeches": [ "NNS" ], "refrain": [ "VB", "NN" ], "militated": [ "VBN" ], "Senate": [ "NNP", "JJ" ], "earnigs": [ "NNS" ], "less-junky": [ "JJR" ], "low-loss": [ "JJ", "NN" ], "Constraints": [ "NNS" ], "Top-of-the-Line": [ "JJ" ], "Pope": [ "NNP" ], "Locke": [ "NNP" ], "jewel-bright": [ "RB" ], "time-proven": [ "JJ" ], "privy": [ "JJ", "NN" ], "Pops": [ "NNP" ], "impasse": [ "NN" ], "printing": [ "NN", "VBG|NN", "VBG" ], "multi-family": [ "JJ" ], "Anglo-Americans": [ "NNPS" ], "Glue": [ "NN" ], "Yinger": [ "NNP" ], "nosebleed": [ "NN" ], "sheeting": [ "NN" ], "Bremsstrahlung": [ "NN" ], "good-humoredly": [ "RB" ], "Scrap": [ "NN" ], "romanticism": [ "NN" ], "greatcoat": [ "NN" ], "unequalled": [ "JJ" ], "uncomforted": [ "JJ" ], "hard-to-please": [ "JJ" ], "offense": [ "NN" ], "BAM": [ "NNP" ], "rhythm-and-blues": [ "NN", "NNS" ], "recentralizing": [ "VBG" ], "coyotes": [ "NNS" ], "divided": [ "VBN", "VBD", "JJ" ], "Alagoas": [ "NNP" ], "bad-fitting": [ "JJ" ], "immune": [ "JJ", "NN" ], "BAe": [ "NNP" ], "advancing": [ "VBG", "JJ" ], "divider": [ "NN" ], "revolted": [ "VBD" ], "lilacs": [ "NNS" ], "bottom-dwelling": [ "JJ" ], "salicylates": [ "NNS" ], "Mesnil": [ "NNP" ], "rigors": [ "NNS" ], "Beckman": [ "NNP" ], "Burgundian": [ "JJ" ], "Griffin-Byrd": [ "NNP" ], "cardiac": [ "JJ" ], "dove": [ "NN", "VBD" ], "stress": [ "NN", "VBP", "VB" ], "Lura": [ "NNP" ], "Constructeurs": [ "NNP" ], "castings": [ "NNS" ], "Waigel": [ "NNP" ], "pre-suspension": [ "JJ" ], "bush": [ "NN" ], "lighter": [ "JJR", "RBR", "NN" ], "insurgency": [ "NN" ], "monocrotophos": [ "NNS" ], "Edwina": [ "NNP" ], "Barnet": [ "NNP" ], "Kan": [ "NNP" ], "public-limit": [ "JJ" ], "incapacity": [ "NN" ], "shuddery": [ "NN" ], "Teagan": [ "NNP" ], "stampeded": [ "VBN", "VBD" ], "Oaks": [ "NNP", "NNPS" ], "insurgence": [ "NN" ], "Lesutis": [ "NNP" ], "shudders": [ "NNS" ], "Lecturer": [ "NNP" ], "Lectures": [ "NNPS", "NNS" ], "derive": [ "VBP", "VB" ], "Nymphomaniacs": [ "NNS" ], "haughty": [ "JJ" ], "babbino": [ "FW" ], "upper-crust": [ "JJ" ], "Argyros": [ "NNP" ], "paraded": [ "VBN", "VBD" ], "decreases": [ "NNS", "VBP", "VBZ" ], "Nando": [ "NNP" ], "Tojos": [ "NNPS" ], "Vroom": [ "NNP" ], "lethality": [ "NN" ], "decreased": [ "VBD", "VBN" ], "bipartisan": [ "JJ" ], "parades": [ "NNS", "VBZ" ], "Greek-Danish": [ "NNP" ], "instantly": [ "RB" ], "pleasance": [ "NN" ], "Halis": [ "NNP" ], "retails": [ "VBZ", "NNS" ], "E.F.": [ "NNP" ], "smarter": [ "RBR", "JJR", "RB" ], "outgained": [ "VBD" ], "withdrawal": [ "NN" ], "BASF": [ "NNP" ], "compelled": [ "VBN", "VBD", "JJ" ], "subscribers": [ "NNS" ], "Bissett": [ "NNP" ], "ketchup": [ "NN", "VB|IN" ], "smarted": [ "VBD" ], "Baluchis": [ "NNPS" ], "withdrew": [ "VBD" ], "Open-flame": [ "JJ" ], "internationalists": [ "NNS" ], "Grants": [ "NNPS", "NNP" ], "suspends": [ "VBZ" ], "veins": [ "NNS" ], "hexametaphosphate": [ "NN" ], "school-bus": [ "NN" ], "facsiport": [ "NN" ], "concertina": [ "NN" ], "expectedly": [ "RB" ], "fluted": [ "VBN" ], "mother-introject": [ "NN" ], "topnotch": [ "JJ" ], "Mandel": [ "NNP" ], "paling": [ "VBG" ], "Landerbank": [ "NNP" ], "Bigg": [ "NNP" ], "flutes": [ "NNS" ], "Roper": [ "NNP" ], "Satellite": [ "NNP" ], "Ryskamp": [ "NNP" ], "novice": [ "NN", "JJ" ], "post-operative": [ "JJ" ], "gyro-platform-servo": [ "JJ" ], "boundless": [ "JJ" ], "exploding": [ "VBG" ], "Tolubeyev": [ "NNP" ], "bison": [ "NN" ], "OBE": [ "NNP" ], "reexamination": [ "NN" ], "complimented": [ "VBN" ], "English-born": [ "JJ" ], "Valerie": [ "NNP" ], "worthiness": [ "NN" ], "prostitutes": [ "NNS" ], "fellow-creatures": [ "NN" ], "poltergeists": [ "NNS" ], "quite": [ "RB", "PDT" ], "Ostroff": [ "NNP" ], "vegetarians": [ "NNS" ], "quits": [ "VBZ", "NNS" ], "sin-ned": [ "VB" ], "remainder": [ "NN" ], "SPRINGFIELD": [ "NNP" ], "training": [ "NN", "VBG", "JJ" ], "late-summer": [ "JJ" ], "potting": [ "VBG", "NN" ], "unlicensed": [ "JJ" ], "punk": [ "NN", "JJ" ], "squibs": [ "NNS" ], "Sheraton-Pan": [ "NNP" ], "Layton": [ "NNP" ], "punt": [ "NN" ], "puns": [ "NNS" ], "massive": [ "JJ" ], "Triple": [ "NNP" ], "Bargain-hunting": [ "NN", "VBG" ], "Brodie": [ "NNP" ], "hooch": [ "NN" ], "globe-girdling": [ "JJ" ], "puny": [ "JJ" ], "Acheson": [ "NNP" ], "U.S.-Canada": [ "NNP" ], "architecturally": [ "RB" ], "clause": [ "NN" ], "ATM": [ "NN", "NNP" ], "Isolated": [ "JJ" ], "CBS\\": [ "NNP", "NNPS" ], "ATI": [ "NNP" ], "reopen": [ "VB", "VBP" ], "fund-raiser": [ "NN" ], "specifically": [ "RB" ], "Miriani": [ "NNP" ], "Alvero-Cruz": [ "NNP" ], "A.M.A.": [ "NNP" ], "quasi-parliamentary\\/judicial": [ "JJ" ], "excursions": [ "NNS" ], "BellSouth\\": [ "JJ" ], "structured": [ "VBN", "JJ", "VBD" ], "Salesmanship": [ "NN" ], "Observers": [ "NNS" ], "self-extinguishing": [ "JJ" ], "draft": [ "NN", "JJ", "VB", "VBP" ], "Laing": [ "NNP" ], "shoppers": [ "NNS" ], "T.F.": [ "NNP" ], "structures": [ "NNS", "VBZ" ], "Socola": [ "NNP" ], "plies": [ "VBZ" ], "Mozart": [ "NNP" ], "artifact": [ "NN" ], "uneconomical": [ "JJ" ], "veers": [ "VBZ" ], "simulators": [ "NNS" ], "anti-diarrheal": [ "JJ" ], "suit-and-tie": [ "JJ" ], "Approval": [ "NN", "NNP" ], "Durk": [ "NNP" ], "Bruegel": [ "NNP" ], "pheasants": [ "NNS" ], "inventor": [ "NN" ], "price-value": [ "JJ", "NN" ], "fledglings": [ "NNS" ], "AT*": [ "NNP" ], "feler": [ "NN" ], "Deliveries": [ "NNS" ], "estancias": [ "NNS" ], "siding": [ "NN", "VBG" ], "rainbow-hued": [ "JJ" ], "glossy": [ "JJ" ], "Fraternal": [ "NNP" ], "companionable": [ "JJ" ], "thousandths": [ "NNS" ], "fern-like": [ "JJ" ], "sac": [ "NN" ], "Regarded": [ "VBN" ], "N/NNP.Y.C.": [ "NNP" ], "sag": [ "VB", "NN", "VBP" ], "afternoons": [ "NNS", "RB" ], "sad": [ "JJ" ], "prestigious": [ "JJ" ], "stratosphere": [ "NN" ], "sax": [ "NN" ], "flatness": [ "NN" ], "inhibiting": [ "VBG", "JJ" ], "bewilderingly": [ "RB" ], "sap": [ "VB", "NN" ], "saw": [ "VBD", "NN" ], "window-washing": [ "NN" ], "sat": [ "VBD", "VBN" ], "toughest-guy-in-the-old-days": [ "JJ" ], "dollars-and-cents": [ "NNS" ], "Murakami": [ "NNP" ], "aside": [ "RB", "RP" ], "Touche": [ "NNP" ], "Important": [ "JJ", "NNP" ], "transcribed": [ "VBN", "JJ" ], "property-loan": [ "JJ" ], "surfacing": [ "VBG" ], "roadside": [ "NN", "JJ" ], "destroy": [ "VB", "VBP" ], "Third-period": [ "JJ", "NN" ], "time-honored": [ "JJ" ], "Steady": [ "JJ" ], "knew": [ "VBD" ], "pastor": [ "NN" ], "Tanqueray": [ "NNP" ], "verifiers": [ "NNS" ], "knee": [ "NN" ], "pager": [ "NN" ], "pages": [ "NNS" ], "non-service": [ "JJ" ], "MILEAGE": [ "NN" ], "Schaaf": [ "NNP" ], "defeating": [ "VBG" ], "sodas": [ "NNS" ], "Antarctica": [ "NNP" ], "butchered": [ "VBN" ], "Indignantly": [ "RB" ], "accented": [ "VBN", "JJ" ], "flaunted": [ "VBD" ], "cobra": [ "NN" ], "oncogenes": [ "NNS" ], "homespun": [ "JJ" ], "Outbreaks": [ "NNS" ], "hustings": [ "NN" ], "commissary": [ "NN" ], "urgings": [ "NNS" ], "Wants": [ "VBZ" ], "Cyr": [ "NNP" ], "gourd": [ "NN" ], "relaxer": [ "NN" ], "cloak": [ "NN", "VBP" ], "foward": [ "JJ" ], "Batterymarch": [ "NNP" ], "Unconsciously": [ "RB" ], "home-comings": [ "NNS" ], "Cyd": [ "NNP" ], "uppermost": [ "JJS", "JJ", "RB" ], "blinds": [ "NNS", "VBZ" ], "congressional": [ "JJ" ], "dispute": [ "NN", "VBP", "VB" ], "Korean-Americans": [ "NNPS" ], "sheltering": [ "VBG" ], "Guns": [ "NNS", "NNP" ], "dissimilar": [ "JJ" ], "genera": [ "NN" ], "incubation": [ "NN" ], "Aprotinine": [ "NNP" ], "sidestepping": [ "VBG" ], "outlet": [ "NN" ], "supergiants": [ "NNS" ], "MEA": [ "NNP" ], "prime": [ "JJ", "NN" ], "red-carpet": [ "JJ" ], "shallow-water": [ "NN" ], "prima": [ "NN" ], "Housings": [ "NNS" ], "Scrupulous": [ "JJ" ], "snowsuit": [ "NN" ], "Yamamoto": [ "NNP" ], "sick-building": [ "JJ" ], "ghastly": [ "JJ" ], "Bronston": [ "NNP" ], "Olson": [ "NNP" ], "subversives": [ "NNS" ], "Farooquee": [ "NNP" ], "revitalizing": [ "VBG" ], "price-stability": [ "NN" ], "appropriating": [ "VBG", "NN" ], "top-level": [ "JJ" ], "groundball": [ "NN" ], "corsage": [ "NN" ], "Sternbach": [ "NNP" ], "once-strong": [ "JJ" ], "plummet": [ "VB", "NN", "VBP" ], "Procter": [ "NNP" ], "sixth-sense": [ "NN" ], "jumped": [ "VBD", "VBN" ], "Sportscreme": [ "NNP" ], "Sweeney": [ "NNP" ], "dormitory": [ "NN" ], "second-place": [ "JJ" ], "bureau": [ "NN" ], "churchgoing": [ "JJ", "NN" ], "fearless": [ "JJ" ], "Paree": [ "NNP" ], "Hotham": [ "NNP" ], "forsake": [ "VB" ], "decks": [ "NNS" ], "domi": [ "FW" ], "Beaujolais": [ "NNP", "NNPS" ], "lettin": [ "VBG" ], "Facilitatory": [ "JJ" ], "nightmarish": [ "JJ" ], "dome": [ "NN" ], "wash-outs": [ "NNS" ], "Buchheister": [ "NNP" ], "losses...": [ ":" ], "new-country": [ "JJ" ], "half-light": [ "NN" ], "precipitin": [ "NN" ], "congregations": [ "NNS" ], "Religione": [ "NNP" ], "adept": [ "JJ" ], "ineptly": [ "RB" ], "thickly": [ "RB" ], "designees": [ "NNS" ], "madcap": [ "JJ" ], "Medstone": [ "NNP" ], "Greatly": [ "RB" ], "Advocates": [ "NNS", "NNPS" ], "governmentally": [ "RB" ], "receipts": [ "NNS" ], "setters": [ "NNS" ], "NDN": [ "NNP" ], "Schumann": [ "NNP" ], "Strohman": [ "NNP" ], "girl-san": [ "NN" ], "furthered": [ "VBD", "VBN" ], "fly-boy": [ "NN" ], "pharmacy": [ "NN" ], "frizzling": [ "VBG" ], "cities": [ "NNS" ], "Desir": [ "NNP" ], "companionship": [ "NN" ], "testimonial": [ "JJ", "NN" ], "airliner": [ "NN" ], "airlines": [ "NNS" ], "overland": [ "RB" ], "reflective": [ "JJ" ], "originates": [ "VBZ" ], "Princess": [ "NNP", "NN" ], "column-shaped": [ "JJ" ], "Marcilio": [ "NNP" ], "lanes": [ "NNS" ], "enlisted": [ "VBD", "JJ", "VBN" ], "rekindles": [ "VBZ" ], "Tishman": [ "NNP" ], "coughing": [ "VBG", "NN" ], "Catalysts": [ "NNS" ], "Sucks": [ "NNS" ], "rekindled": [ "VBN" ], "observe": [ "VB", "VBP" ], "Dominion": [ "NNP" ], "N.M.-based": [ "JJ" ], "spillover": [ "NN" ], "reissue": [ "NN" ], "Mussett": [ "NNP" ], "Formerly": [ "RB" ], "Rydell": [ "NNP" ], "spanking": [ "JJ", "NN" ], "corporatism": [ "NN" ], "intimately": [ "RB" ], "invoking": [ "VBG" ], "canoes": [ "NNS" ], "coextrude": [ "VBP" ], "corporatist": [ "NN" ], "monkey-gland": [ "NN" ], "chamois": [ "NN" ], "twisty": [ "JJ" ], "maximal": [ "JJ" ], "Rennie": [ "NNP" ], "canoe": [ "NN", "VBP" ], "creamier": [ "JJR" ], "DIG": [ "NNP" ], "canon": [ "NN" ], "advanced-technology": [ "JJ", "NN" ], "Eddyman": [ "NNP" ], "Looking": [ "VBG", "NNP" ], "regularity": [ "NN" ], "hand-level": [ "JJ" ], "joint-return": [ "JJ" ], "redeemin": [ "VBG" ], "casings": [ "NNS" ], "fame": [ "NN", "VB" ], "plastic-covered": [ "JJ" ], "Leubert": [ "NNP" ], "Merchandising": [ "NNP" ], "nationalism": [ "NN" ], "thinkin": [ "VBG", "NN" ], "helpfully": [ "RB" ], "mobster": [ "NN" ], "vandalism": [ "NN" ], "Nedelman": [ "NNP" ], "design-conscious": [ "JJ" ], "high-salaried": [ "JJ" ], "codes": [ "NNS" ], "Johnson-era": [ "NN" ], "entanglement": [ "NN" ], "squeamishness": [ "NN" ], "renewable": [ "JJ" ], "Conant": [ "NNP" ], "colorblind": [ "JJ" ], "Skilled": [ "JJ" ], "Zaita": [ "NNP" ], "Neapolitan": [ "NNP", "JJ" ], "Roasters": [ "NNS" ], "pewter": [ "NN" ], "scholarship": [ "NN" ], "summer": [ "NN" ], "manifold": [ "NN", "JJ" ], "Sleepwalking": [ "NN" ], "Missa": [ "NNP" ], "west-to-east": [ "RB" ], "Mich.-based": [ "JJ" ], "Missy": [ "NNP" ], "disperse": [ "VB" ], "Trockenbeerenauslesen": [ "NNP" ], "semiquantitative": [ "JJ" ], "Rummel": [ "NNP" ], "Sung-il": [ "NNP" ], "trimmings": [ "NNS" ], "vice-chancellor": [ "NN" ], "preventing": [ "VBG" ], "deceiving": [ "VBG" ], "interstitial": [ "JJ" ], "retinue": [ "NN" ], "straight-A": [ "JJ" ], "Sary-Shagan": [ "NNP" ], "civil": [ "JJ" ], "instrument": [ "NN" ], "nymphomaniac": [ "NN", "JJ" ], "Rigid": [ "JJ" ], "LUXURY": [ "NN" ], "Anonymous": [ "NNP" ], "ghostly": [ "JJ" ], "Olive": [ "NNP" ], "coded": [ "VBN", "JJ" ], "Approved": [ "VBN", "VBD" ], "defection": [ "NN" ], "Miss.": [ "NNP" ], "Washing": [ "NN", "NNP" ], "SHIELD": [ "NNP" ], "Radiant": [ "JJ" ], "in-patient": [ "JJ" ], "petulance": [ "NN" ], "Micro": [ "NNP" ], "Shoichi": [ "NNP" ], "structuring": [ "VBG", "NN" ], "bandage": [ "NN" ], "open-interest": [ "JJ" ], "Walloons": [ "NNPS" ], "warped": [ "VBN", "JJ" ], "forecaster": [ "NN" ], "broken-backed": [ "JJ" ], "stranger": [ "NN", "JJR" ], "wide-door": [ "JJ" ], "Belmont": [ "NNP" ], "Boeskys": [ "NNP" ], "white-haired": [ "JJ" ], "Indeed": [ "RB", "UH" ], "stationary": [ "JJ" ], "Abatuno": [ "NNP" ], "landscaping": [ "NN", "VBG" ], "Perry": [ "NNP" ], "combat-trained": [ "JJ" ], "pushy": [ "JJ" ], "gaggle": [ "NN" ], "Myung": [ "NNP" ], "Novametrix": [ "NNP" ], "Perro": [ "NNP" ], "FLN": [ "NNP" ], "Vienne": [ "NNP" ], "bizarre": [ "JJ" ], "reigning": [ "VBG" ], "Vienna": [ "NNP", "JJ", "NN" ], "scandals": [ "NNS" ], "dialectical": [ "JJ" ], "tote": [ "VB", "NNP" ], "toto": [ "FW" ], "Merton": [ "NNP" ], "pathogenesis": [ "NN" ], "Brawley": [ "NNP" ], "Samakow": [ "NNP" ], "Equus": [ "NNP" ], "roast": [ "NN", "VB", "VBN" ], "pellagra": [ "NN" ], "exultantly": [ "RB" ], "forgetfulness": [ "NN" ], "run-from-above": [ "JJ" ], "senora": [ "NN" ], "momentwhen": [ "NN|WRB" ], "stone": [ "NN", "RB", "VB" ], "cobblestone": [ "NN" ], "side": [ "NN", "VBP", "JJ", "RB", "VB" ], "tumor": [ "NN" ], "Jordanian": [ "JJ" ], "amusedly": [ "RB" ], "neighbor": [ "NN" ], "Macquarie": [ "NNP" ], "bond": [ "NN", "JJ" ], "stony": [ "JJ" ], "marshmallow": [ "NN" ], "Latter": [ "NN", "NNP" ], "Polaroid": [ "NNP", "NN" ], "wads": [ "NNS" ], "sneering": [ "VBG" ], "Jetta": [ "NNP" ], "Accords": [ "NNPS", "NNP", "NNS" ], "wade": [ "VB" ], "fluorine": [ "NN" ], "old-maid": [ "NN" ], "burglar": [ "NN" ], "Maiden": [ "NNP" ], "Japanese-style": [ "JJ" ], "Alain": [ "NNP" ], "Collection": [ "NNP", "NN" ], "seesawing": [ "VBG" ], "myths": [ "NNS" ], "secretion": [ "NN" ], "Tadashi": [ "NNP" ], "typecasting": [ "VBG" ], "mourns": [ "VBZ" ], "Sandburg": [ "NNP" ], "gliding": [ "VBG" ], "natural-gas-pricing": [ "JJ" ], "anti-ballistic-missile": [ "JJ" ], "Smale": [ "NNP" ], "Reshaping": [ "VBG" ], "keepsakes": [ "NNS" ], "Small": [ "JJ", "NNP" ], "technologies": [ "NNS" ], "plucky": [ "JJ" ], "regimen": [ "NN" ], "Hurry": [ "VB" ], "Court-awarded": [ "JJ" ], "expressionless": [ "JJ" ], "unveils": [ "VBZ" ], "flirt": [ "VBP" ], "U.S.S.R.": [ "NNP" ], "office-equipment": [ "NN" ], "dispensing": [ "VBG", "NN" ], "mopping": [ "VBG" ], "inferable": [ "JJ" ], "dependents": [ "NNS" ], "rescued": [ "VBN", "VBD" ], "regimes": [ "NNS" ], "Hof": [ "NNP" ], "Hog": [ "NN" ], "deferent": [ "NN" ], "escaping": [ "VBG" ], "Hoc": [ "NNP" ], "Hoa": [ "NNP" ], "Hon": [ "NNP" ], "galleys": [ "NNS" ], "Layman": [ "NNP" ], "laminated": [ "VBN", "JJ" ], "adventure-loving": [ "JJ" ], "How": [ "WRB", "NNP", "RB" ], "Hot": [ "NNP", "JJ" ], "walked": [ "VBD", "VBN" ], "interchangable": [ "JJ" ], "unhesitatingly": [ "RB" ], "Farmer-in-the-Dell": [ "NNP" ], "Hoy": [ "NNP" ], "Swim": [ "NNP" ], "collie": [ "NN" ], "Beltway-itis": [ "NN" ], "tasteless": [ "JJ" ], "graduate": [ "NN", "JJ", "VB", "VBP" ], "Scottish-born": [ "JJ" ], "Northgate": [ "NNP" ], "H.V.": [ "NNP" ], "decimating": [ "VBG" ], "Osprey": [ "NNP" ], "disgraceful": [ "JJ" ], "bloodroot": [ "NN" ], "perspired": [ "VBD" ], "Alex": [ "NNP", "NN" ], "Wrangham": [ "NNP" ], "Kentucky": [ "NNP", "NN" ], "realismo": [ "FW" ], "dented": [ "VBD", "VBN" ], "gifts": [ "NNS" ], "Sandalphon": [ "NNP" ], "Laboring": [ "VBG" ], "imminently": [ "RB" ], "Alec": [ "NNP" ], "misleadingly": [ "RB" ], "noninflationary": [ "JJ" ], "Callum": [ "NNP" ], "minefields": [ "NNS" ], "Riflery": [ "NN" ], "preppy": [ "JJ" ], "rescues": [ "NNS", "VBZ" ], "Hafer": [ "NNP" ], "Street": [ "NNP", "NN" ], "Streep": [ "NNP" ], "Hafez": [ "NNP" ], "cross-state": [ "JJ" ], "full-commission": [ "JJ" ], "Setsuo": [ "NNP" ], "warm-weather": [ "JJ" ], "Creon": [ "NNP" ], "Unable": [ "JJ" ], "Mogavero": [ "NNP" ], "Eurostat": [ "NNP" ], "Romeo": [ "NNP" ], "Mae-backed": [ "JJ" ], "strips": [ "NNS", "VBZ" ], "Boesel": [ "NNP" ], "hunting": [ "NN", "NN|VBG", "VBG|NN", "VBG" ], "NCAA": [ "NNP" ], "overlying": [ "JJ" ], "prophets": [ "NNS" ], "bilked": [ "VBN", "VBD" ], "company-run": [ "JJ" ], "rate-making": [ "JJ" ], "CPB": [ "NNP" ], "mufti": [ "NN" ], "Cossiga": [ "NNP" ], "Kutzke": [ "NNP" ], "generics": [ "NNS" ], "PACs": [ "NNPS", "NNS" ], "Pageants": [ "NNS" ], "swallows": [ "NNS", "VBZ" ], "friers": [ "NNS" ], "seedbed": [ "NN" ], "salesperson": [ "NN" ], "Kretchmer": [ "NNP" ], "long-simmering": [ "JJ" ], "mammas": [ "NN" ], "Wilmouth": [ "NNP" ], "lawnmower": [ "NN" ], "natural-gas-pipeline": [ "JJ" ], "instigate": [ "VB" ], "unabatingly": [ "RB" ], "mammal": [ "NN" ], "Rainwater": [ "NNP" ], "ninetieth": [ "JJ" ], "poise": [ "NN" ], "waste-treatment": [ "NN" ], "quaintly": [ "RB" ], "carriages": [ "NNS" ], "Howmet": [ "NNP" ], "Bumiputra": [ "NNP" ], "theatergoers": [ "NNS" ], "hick": [ "NN" ], "Feldberg": [ "NNP" ], "shrugged": [ "VBD" ], "McNamee": [ "NNP" ], "Patrician": [ "NN" ], "forestall": [ "VB" ], "imperceptible": [ "JJ" ], "whiff": [ "NN" ], "fucks": [ "NNS" ], "Wolohan": [ "NNP" ], "Conestoga": [ "NNP" ], "Abuse": [ "NNP" ], "Unloading": [ "VBG" ], "Pan-Alberta": [ "NNP" ], "sarcasm": [ "NN" ], "Mega-hits": [ "NNS" ], "accessions": [ "NNS" ], "horse-packing": [ "JJ" ], "Prettyman": [ "NNP" ], "murkier": [ "JJR" ], "multifigure": [ "NN" ], "cost-shifting": [ "NN" ], "timberlands": [ "NNS" ], "Bankrolled": [ "VBN" ], "archdiocese": [ "NN" ], "buzzing": [ "VBG", "JJ" ], "Gap": [ "NNP", "NN" ], "discolors": [ "VBZ" ], "electroluminescence": [ "NN" ], "introductory": [ "JJ" ], "brutal": [ "JJ" ], "defectors": [ "NNS" ], "bank-looting": [ "JJ" ], "much-maligned": [ "JJ" ], "vacuum-packed": [ "JJ" ], "shorthand": [ "NN" ], "sugar-cane": [ "JJ", "NN" ], "unsatisfactory": [ "JJ" ], "resort-casino": [ "NN" ], "integrator": [ "NN" ], "enactment": [ "NN" ], "no-bunkum": [ "JJ" ], "half-intensity": [ "JJ" ], "purveyors": [ "NNS" ], "SP-44007": [ "LS" ], "Corp.\\/Europe": [ "NNP" ], "whammo": [ "UH" ], "letterhead": [ "NN" ], "estate-tax": [ "JJ", "NN" ], "select": [ "VB", "VBP", "JJ" ], "Additional": [ "JJ" ], "triple-witching": [ "JJ" ], "Lecheria": [ "NNP" ], "hothouses": [ "NNS" ], "O.S.K.": [ "NNP" ], "passenger-transportation": [ "JJ" ], "one-month-old": [ "JJ" ], "citing": [ "VBG" ], "Belgique": [ "NNP" ], "wavering": [ "VBG", "NN" ], "impoundments": [ "NNS" ], "Russian": [ "NNP", "JJ" ], "toll-tele-phone": [ "JJ" ], "refueling": [ "NN", "VBG" ], "teen": [ "JJ", "NN" ], "cyclicals": [ "NNS" ], "U.S.-Canadian": [ "JJ", "NNP" ], "signpost": [ "NN" ], "teed": [ "VBD", "VBN" ], "foregone": [ "JJ", "VBN" ], "worn-faced": [ "JJ" ], "drug-enforcement": [ "JJ" ], "Lang": [ "NNP", "JJ" ], "pursuers": [ "NNS" ], "Takeshi": [ "NNP" ], "rudeness": [ "NN" ], "objections": [ "NNS" ], "Caffrey": [ "NNP" ], "blemishes": [ "NNS" ], "Greenfield": [ "NNP" ], "Guzewich": [ "NNP" ], "diGenova": [ "NNP" ], "over-rewarding": [ "JJ" ], "malt": [ "NN" ], "bromides": [ "NNS" ], "Austro-Hungarian": [ "JJ" ], "mall": [ "NN" ], "chairing": [ "NN" ], "blarney": [ "NN" ], "supercilious": [ "JJ" ], "Debevoise": [ "NNP" ], "Unanalyzed": [ "JJ" ], "price-adjusted": [ "JJ" ], "Katsive": [ "NNP" ], "Stockholders": [ "NNS", "NNP" ], "shirt-sleeved": [ "JJ" ], "obliquely": [ "RB" ], "Banxquote": [ "NNP" ], "nonintervention": [ "NN" ], "Shemiatenkov": [ "NNP" ], "Jacobsen": [ "NNP" ], "relationship-building": [ "NN" ], "garden": [ "NN", "VB" ], "outfitting": [ "VBG" ], "Chandler": [ "NNP" ], "Jekyll": [ "NNP" ], "earworm": [ "NN" ], "freshly": [ "RB" ], "Bouton": [ "NNP" ], "Gelly": [ "NNP" ], "strong-made": [ "JJ" ], "stock-for-debt": [ "JJ" ], "two-track": [ "JJ" ], "Tarrytown": [ "NNP" ], "plant": [ "NN", "VBP", "VB" ], "Stockbrokers": [ "NNS", "NNP" ], "Division": [ "NNP", "NN" ], "Sleepers": [ "NNP" ], "pleader": [ "NN" ], "soundtrack": [ "NN" ], "D.O.A.": [ "JJ" ], "plane": [ "NN", "VB" ], "conveniences": [ "NNS" ], "Atzez": [ "NNP" ], "pleaded": [ "VBD", "VBN" ], "Adaptec": [ "NNP" ], "Adapted": [ "VBN" ], "plank": [ "NN" ], "executions": [ "NNS" ], "Churchill": [ "NNP" ], "rowdy": [ "JJ", "NN" ], "denude": [ "VB" ], "hot-ticket": [ "JJ" ], "Voroba": [ "NNP" ], "broadcasting": [ "NN", "VBG", "VBG|NN" ], "tentacles": [ "NNS" ], "eversteadier": [ "JJ" ], "helplessly": [ "RB" ], "patio": [ "NN" ], "greats": [ "NNS" ], "more-hazardous": [ "JJ" ], "meek-mannered": [ "JJ" ], "passages": [ "NNS" ], "clarifications": [ "NNS" ], "reminded": [ "VBD", "VBN" ], "Ruston": [ "NNP" ], "Tortorello": [ "NNP" ], "SA-12": [ "NN" ], "trade": [ "NN", "VBP", "VB" ], "he-man": [ "NN" ], "embassy": [ "NN" ], "questioningly": [ "RB" ], "greate": [ "NN" ], "ity": [ "NN" ], "intensifiers": [ "NNS" ], "Androgyny": [ "NN" ], "its": [ "PRP$" ], "Bund": [ "NN" ], "imaginings": [ "NNS" ], "licks": [ "VBZ" ], "CTBS": [ "NNP" ], "DGAULT": [ "NNP" ], "epileptic": [ "JJ" ], "blurring": [ "VBG", "NN" ], "Ingalls": [ "NNP" ], "Dorney": [ "NNP" ], "bobbles": [ "NNS" ], "ally": [ "NN", "VB" ], "rapier": [ "NN" ], "pre-signed": [ "VBN" ], "motley": [ "JJ" ], "pathologically": [ "RB" ], "I.": [ "NNP", "FW", "JJ", "NN" ], "imperil": [ "VB" ], "thereof": [ "RB" ], "ever-more": [ "JJ" ], "Correlatively": [ "RB" ], "Waggin": [ "NNP" ], "Dassault-Breguet": [ "NNP" ], "designation": [ "NN" ], "Savannah": [ "NNP", "NN" ], "loosely": [ "RB" ], "featured": [ "VBN", "VBD", "JJ" ], "production-cost": [ "NN" ], "rough-housing": [ "NN" ], "ATTACK": [ "NN" ], "revenge-seeking": [ "JJ" ], "Busch": [ "NNP" ], "lantern": [ "NN" ], "Zone": [ "NNP", "NN" ], "contiguous": [ "JJ" ], "six-bottle": [ "JJ" ], "critters": [ "NNS" ], "reappointed": [ "VBN" ], "girlish": [ "JJ" ], "eviscerating": [ "VBG" ], "ruminated": [ "VBD", "VBN" ], "Patmore": [ "NNP" ], "vocalism": [ "NN" ], "HDM": [ "NNP" ], "HDI": [ "NNP" ], "vis": [ "FW" ], "by-passing": [ "VBG" ], "Allianz": [ "NNP" ], "Auction": [ "NN", "NNP" ], "armaments": [ "NNS" ], "indexation": [ "NN" ], "flyaway": [ "JJ" ], "hangers": [ "NNS" ], "Yugoslav": [ "NNP", "JJ" ], "Class": [ "NNP", "NN" ], "bloody-minded": [ "JJ" ], "dwelt": [ "VBD" ], "Chant": [ "NNP", "NN" ], "Penniman": [ "NNP" ], "Yorba": [ "NNP" ], "Imasco": [ "NNP" ], "murmur": [ "NN", "VB" ], "Chane": [ "NNP" ], "Chang": [ "NNP" ], "Guttmacher": [ "NNP" ], "disadvantaged": [ "JJ" ], "Rosenbaum": [ "NNP" ], "bargen": [ "VBP" ], "Heffernan": [ "NNP" ], "big-city": [ "JJ", "NN" ], "Chairman-Elect": [ "NNP" ], "anecdote": [ "NN" ], "truck-fleet": [ "JJ" ], "ft.": [ "NN", "NNS" ], "sidewinder": [ "NN" ], "thespian": [ "JJ" ], "Mueslix": [ "NNP" ], "forwards": [ "RB" ], "Marvelon": [ "NNP" ], "contender": [ "NN" ], "Repression": [ "NN" ], "florist": [ "NN" ], "fluxes": [ "NNS" ], "contended": [ "VBD", "VBN" ], "complaint-resolution": [ "NN" ], "economizing": [ "VBG" ], "ripoffs": [ "NNS" ], "sidle": [ "VB" ], "differ": [ "VBP", "VB" ], "brick-and-mortar": [ "JJ" ], "RMC": [ "NNP" ], "tar-soaked": [ "JJ" ], "Sunny": [ "NNP" ], "Regulators": [ "NNS" ], "zealot": [ "NN" ], "name-brand": [ "JJ" ], "Regulatory": [ "NNP", "JJ" ], "syllables": [ "NNS" ], "molecular": [ "JJ" ], "Sunni": [ "NNP", "JJ" ], "gassings": [ "NNS" ], "Ingrassia": [ "NNP" ], "Top-20": [ "JJ" ], "Rival": [ "NNP", "JJ" ], "wire-fraud": [ "NN" ], "breakdowns": [ "NNS" ], "dwindling-sales": [ "JJ" ], "Geech": [ "NNP" ], "spacings": [ "NNS" ], "stairs": [ "NNS" ], "secretarial": [ "JJ" ], "inhalation": [ "NN" ], "Port-au-Prince": [ "NNP" ], "frock": [ "NN" ], "parenthetically": [ "RB" ], "Catskill": [ "NNP", "JJ" ], "swiveling": [ "VBG" ], "vocal": [ "JJ", "NN" ], "minimize": [ "VB" ], "ultra-efficient": [ "JJ" ], "assume": [ "VB", "VBP" ], "beneficial": [ "JJ" ], "Mottice": [ "NNP" ], "metal-products": [ "NNS" ], "Is": [ "VBZ", "NNP" ], "fur-production": [ "JJ" ], "Jeep-like": [ "JJ" ], "multipurpose": [ "JJ" ], "electrodynamics": [ "NNS" ], "Pecks": [ "NNPS" ], "Cyanocitta": [ "FW" ], "Tercel": [ "NNP" ], "disenchanted": [ "VBN", "JJ" ], "bad-debt": [ "JJ" ], "status-conscious": [ "JJ" ], "NORTH": [ "NNP" ], "Hannah": [ "NNP" ], "prima-facie": [ "FW", "JJ" ], "synchronizers": [ "NNS" ], "Hannam": [ "NNP" ], "partings": [ "NNS" ], "auditions": [ "NNS" ], "Overturf": [ "NNP" ], "severly": [ "RB" ], "ancillary": [ "JJ" ], "KEISHI": [ "NNP" ], "brace": [ "NN", "VB", "VBP" ], "Reproductive": [ "NNP" ], "big-town": [ "JJ" ], "index": [ "NN", "VB" ], "Zeal": [ "NNP" ], "blackboard": [ "NN" ], "retablos": [ "FW" ], "nasal": [ "JJ" ], "paleontologically": [ "RB" ], "confluence": [ "NN" ], "pulled": [ "VBD", "VBN" ], "oyster": [ "NN" ], "FROM": [ "IN" ], "pre-Fair": [ "JJ" ], "three-month": [ "JJ" ], "Deacons": [ "NNS" ], "fashions": [ "NNS", "VBZ" ], "If": [ "IN" ], "totemic": [ "JJ" ], "systems-strategies": [ "NNS" ], "desklegs": [ "NNS" ], "despise": [ "VBP", "VB" ], "shivers": [ "NNS" ], "walk-up": [ "NN" ], "Luxembourg-registered": [ "JJ" ], "defended": [ "VBD", "VBN" ], "Eggum": [ "NNP" ], "decentralizing": [ "VBG" ], "Stumpf": [ "NNP" ], "parochial": [ "JJ" ], "Palestine": [ "NNP" ], "defender": [ "NN" ], "dockets": [ "NNS" ], "Semra": [ "NNP" ], "Skepticism": [ "NN" ], "stepwise": [ "RB", "JJ" ], "fade-in": [ "JJ" ], "keychain": [ "NN" ], "sayin": [ "NN", "VBG" ], "Gyi": [ "NNP" ], "sacrilege": [ "NN" ], "unjustly": [ "RB" ], "Balkans": [ "NNPS", "NNS" ], "equity": [ "NN" ], "Alurralde": [ "NNP" ], "giants": [ "NNS" ], "Close-up": [ "NNP" ], "addresss": [ "NNS" ], "scuff": [ "VB" ], "dependent": [ "JJ", "NN" ], "Gribin": [ "NNP" ], "understudied": [ "VBD" ], "resent": [ "VBP", "VB" ], "out-dated": [ "JJ" ], "breast-cancer": [ "NN" ], "Smithson": [ "NNP" ], "belled": [ "JJ" ], "debt-equity": [ "JJ", "NN" ], "roughest": [ "JJS" ], "belles": [ "NNS" ], "surrendering": [ "VBG" ], "Dalton": [ "NNP" ], "kill": [ "VB", "VBP", "NN" ], "approaching": [ "VBG" ], "manger": [ "NN" ], "balance-wise": [ "JJ" ], "Sleepinal": [ "NNP" ], "building-products": [ "NNS" ], "Liberman": [ "NNP" ], "pro-Noriega": [ "JJ" ], "Glaser": [ "NNP" ], "hoarsely": [ "RB" ], "Tippett": [ "NNP" ], "Stolichnaya": [ "NNP" ], "Pitman": [ "NNP" ], "knees": [ "NNS" ], "#": [ "#" ], "movie": [ "NN" ], "Fuhrer": [ "NNP" ], "worth-while": [ "JJ" ], "diluted": [ "VBN", "JJ", "VBN|JJ", "VBD" ], "sweetheart-secretary": [ "NN" ], "rejecting": [ "VBG" ], "heading": [ "VBG", "NN" ], "Pettit": [ "NNP" ], "Arithmetic": [ "NNP" ], "Confiding": [ "VBG" ], "Pettis": [ "NNP" ], "Bangemann": [ "NNP" ], "Discouragement": [ "NN" ], "dilutes": [ "VBZ" ], "kneel": [ "VB" ], "performance-related": [ "JJ" ], "milder": [ "JJR" ], "mildew": [ "NN" ], "hardship": [ "NN" ], "sections": [ "NNS" ], "brewing": [ "NN", "VBG" ], "Intecknings": [ "NNP" ], "disallow": [ "VB" ], "three-week": [ "JJ" ], "smoldering": [ "VBG" ], "chenille": [ "NN" ], "Packers": [ "NNP", "NNPS" ], "body-and-assembly": [ "JJ" ], "adagio": [ "NN", "RB" ], "enables": [ "VBZ" ], "improved": [ "VBN", "JJ", "VBD" ], "tobacco-growing": [ "JJ" ], "Jaws": [ "NNPS", "NNP", "NNS" ], "barely": [ "RB" ], "harpy": [ "JJ" ], "timorous": [ "JJ" ], "Southern-Republican": [ "NNP" ], "fuel-storage": [ "NN" ], "turrets": [ "NNS" ], "Trinidad": [ "NNP" ], "Junius": [ "NNP" ], "load": [ "NN", "VB", "VBP" ], "loaf": [ "NN" ], "markdown": [ "NN", "JJ" ], "pendulum": [ "NN" ], "indefinity": [ "NN" ], "Heavy-coated": [ "JJ" ], "loan": [ "NN", "VB" ], "northeastern": [ "JJ" ], "coincidence": [ "NN" ], "second-rate": [ "JJ" ], "hollyhock": [ "NN" ], "jowls": [ "NNS" ], "upper-income": [ "JJ", "NN" ], "indefinite": [ "JJ", "NN" ], "jowly": [ "JJ" ], "big-stage": [ "JJ" ], "stop-gap": [ "JJ" ], "Persians": [ "NNPS" ], "Students": [ "NNS", "NNPS", "NNP" ], "anti-aircraft": [ "JJ" ], "intricacies": [ "NNS" ], "Col.": [ "NNP" ], "unraveling": [ "NN", "VBG" ], "involuntary-control": [ "JJ" ], "Attanasio": [ "NNP" ], "Jansky": [ "NNP" ], "modern": [ "JJ", "NN" ], "CARTER": [ "NNP" ], "Boslego": [ "NNP" ], "upstart": [ "NN", "JJ" ], "hind": [ "JJ" ], "mine": [ "NN", "PRP$", "JJ", "VB", "PRP", "VBP" ], "clergymen": [ "NNS" ], "high-mounted": [ "JJ" ], "Steinberg": [ "NNP" ], "yachts": [ "NNS" ], "Urdis": [ "NNP" ], "Starting": [ "VBG" ], "Fetch": [ "VB" ], "Ministry": [ "NNP" ], "mid-to-late": [ "JJ" ], "Vinnin": [ "NNP" ], "Colt": [ "NNP", "NN" ], "Carrots": [ "NNPS" ], "Cols": [ "NNP" ], "forgetting": [ "VBG" ], "optimization": [ "NN" ], "Change": [ "NNP", "NN", "VB" ], "evaluating": [ "VBG" ], "communal": [ "JJ" ], "industrialist": [ "NN" ], "Samnick": [ "NNP" ], "outskirt": [ "NN" ], "Rukeyser": [ "NNP" ], "sizeable": [ "JJ" ], "arching": [ "VBG" ], "backing": [ "VBG", "NN" ], "chirping": [ "VBG", "NN" ], "calculator": [ "NN" ], "WSJ": [ "NNP" ], "picocassette": [ "NN" ], "E-mail": [ "NN" ], "Rochelle": [ "NNP" ], "chasm": [ "NN" ], "WSY": [ "NNP" ], "Reagan-Republican": [ "JJ" ], "Charlayne": [ "NNP" ], "Yamashita": [ "NNP" ], "chase": [ "NN", "JJ", "VB", "VBP" ], "price-support": [ "JJ", "NN" ], "sounding": [ "VBG", "JJ", "NN" ], "Emmaus": [ "NNP" ], "severest": [ "JJS" ], "results-oriented": [ "JJ" ], "Favorites": [ "NNPS", "JJ" ], "Fully": [ "RB" ], "Beise": [ "NNP" ], "Lillard": [ "NNP" ], "displeased": [ "VBN", "JJ" ], "unlabeled": [ "JJ" ], "Charges": [ "NNS" ], "LIN-BellSouth": [ "JJ", "NNP" ], "henchmen": [ "NNS" ], "Rammin": [ "VBG" ], "viewing": [ "VBG", "NN" ], "displeases": [ "VBZ" ], "grappling": [ "VBG", "NN" ], "picky": [ "JJ" ], "infertility": [ "NN" ], "commoners": [ "NNS" ], "Cami": [ "NNP" ], "Norwitz": [ "NNP" ], "picks": [ "VBZ", "NNS" ], "Aerospatiale": [ "NNP" ], "strobe": [ "NN" ], "Talks": [ "NNS", "NNPS" ], "Staff": [ "NNP", "NN" ], "oft-repeated": [ "JJ" ], "customer-cost": [ "NN" ], "Roanoke": [ "NNP" ], "lower-growth": [ "JJ" ], "behind": [ "IN", "NN", "RB", "RP" ], "unto": [ "IN", "RP" ], "Lieutenant-Colonel": [ "NNP" ], "Hollandale": [ "NNP" ], "Emigration": [ "NN" ], "fingerlings": [ "NNS" ], "sputnik": [ "NN" ], "crying": [ "VBG", "NN" ], "Topps": [ "NNP" ], "disulfide": [ "NN" ], "commodity-swap": [ "NN" ], "out-and-out": [ "JJ" ], "reverted": [ "VBD", "VBN" ], "massuh": [ "NN" ], "intra-mural": [ "JJ" ], "Shawmut": [ "NNP" ], "quest": [ "NN" ], "stock-option": [ "NN", "JJ" ], "Requests": [ "NNS" ], "Atlantica": [ "NNP" ], "Flair": [ "NNP" ], "form-letter": [ "JJ", "NN" ], "imposed": [ "VBN", "VBD", "JJ" ], "McCullers": [ "NNP" ], "pigeonhole": [ "NN" ], "Columnists": [ "NNS" ], "Race-drivers": [ "NNS" ], "disorder": [ "NN", "VB" ], "interbreeding": [ "VBG" ], "sahibs": [ "NNS" ], "expansionary": [ "JJ" ], "Va.": [ "NNP" ], "pertaining": [ "VBG" ], "gargle": [ "NN" ], "consomme": [ "NN" ], "third-consecutive": [ "JJ" ], "morocco-bound": [ "JJ" ], "Townsend": [ "NNP" ], "FIGHT": [ "NNP" ], "Customer-access": [ "NN" ], "goutte": [ "FW" ], "eclat": [ "NN" ], "Gibault": [ "NNP" ], "Brodsly": [ "NNP" ], "seisho": [ "FW" ], "CREDIT": [ "NNP" ], "mummy": [ "NN" ], "veterinary": [ "JJ" ], "Hindenburg": [ "NNP" ], "Whittle": [ "NNP", "NN" ], "religion": [ "NN" ], "Furman": [ "NNP" ], "Tuttle": [ "NNP" ], "bearings": [ "NNS" ], "MB-339": [ "NNP" ], "Pact": [ "NNP" ], "smithy": [ "NN" ], "idealistic": [ "JJ" ], "Benton": [ "NNP" ], "dictates": [ "NNS", "VBZ" ], "fish...": [ ":" ], "Pace": [ "NNP" ], "Ciera": [ "NNP" ], "Slender": [ "JJ" ], "Walgreen": [ "NNP" ], "chole": [ "NN" ], "Inoue": [ "NNP" ], "dictated": [ "VBN", "VBD" ], "Pack": [ "VB", "NNP" ], "thirty-fourth": [ "JJ" ], "Loring": [ "NNP" ], "Lessner": [ "NNP" ], "modernity": [ "NN" ], "Crisanti": [ "NNP" ], "snowballed": [ "VBD" ], "Caffedrine": [ "NNP" ], "biennial": [ "JJ" ], "progressions": [ "NNS" ], "irked": [ "VBN", "VBD" ], "third-year": [ "JJ" ], "belfries": [ "NNS" ], "vocalize": [ "VB" ], "encumbrance": [ "NN" ], "Overreacting": [ "VBG" ], "servers": [ "NNS" ], "appropriate": [ "JJ", "VBP", "VB" ], "deduct": [ "VB", "VBP" ], "Exposition": [ "NNP" ], "selected": [ "VBN", "JJ", "VBD" ], "traduce": [ "VB" ], "herringbone": [ "NN" ], "Metamorphose": [ "NNP" ], "lithe": [ "JJ" ], "bosons": [ "NNS" ], "immunological": [ "JJ" ], "royalties": [ "NNS" ], "insensitivity": [ "NN" ], "Disabilities": [ "NNP", "NNPS" ], "Hurley": [ "NNP" ], "instalments": [ "NNS" ], "Yale-Army": [ "NNP" ], "microfilm": [ "NN" ], "legation": [ "NN" ], "first-nine-month": [ "JJ" ], "GDP": [ "NNP" ], "GDR": [ "NNP" ], "Dixie": [ "NNP" ], "Office": [ "NNP", "NN" ], "coal-fire": [ "JJ" ], "lodgment": [ "NN" ], "Kwame": [ "NNP" ], "coal-seam-gas": [ "JJ" ], "Half-man": [ "JJ" ], "Scratch": [ "NN" ], "GDL": [ "NNP" ], "consumed": [ "VBN", "VBD" ], "Orbital": [ "NNP" ], "Supposedly": [ "RB", "NNP" ], "boomers": [ "NNS" ], "reconcile": [ "VB" ], "oddity": [ "NN" ], "raging": [ "VBG", "JJ" ], "likewise": [ "RB" ], "ibuprofen": [ "NN" ], "surpassing": [ "VBG", "RB" ], "skimming": [ "VBG", "NN" ], "nondiscriminatory": [ "JJ" ], "Rolfe": [ "NNP" ], "overconfident": [ "JJ" ], "self-destruction": [ "NN" ], "Ramone": [ "NNP" ], "Ramona": [ "NNP" ], "frambesia": [ "NN" ], "scrape": [ "NN", "VB", "VBP" ], "Ruff": [ "NNP" ], "stepchild": [ "NN" ], "parakeet": [ "NN" ], "Background": [ "NN" ], "scraps": [ "NNS", "VBZ" ], "reimburses": [ "VBZ" ], "degenerative": [ "JJ" ], "hustling": [ "VBG" ], "principle": [ "NN" ], "tedium": [ "NN" ], "potion": [ "NN" ], "energetic": [ "JJ" ], "Sethness": [ "NNP" ], "lashing": [ "VBG", "NN|VBG" ], "balkiness": [ "NN" ], "STANDARDS": [ "NNPS" ], "Concetta": [ "NNP" ], "rise": [ "NN", "VBP", "VB" ], "Canonie": [ "NNP" ], "Consequence": [ "NN" ], "Greensville": [ "NNP" ], "Rosenau": [ "NNP" ], "DEVELOPMENT": [ "NNP" ], "destinies": [ "NNS" ], "discounter": [ "NN" ], "Yarnell": [ "NNP" ], "napping": [ "VBG" ], "Alamein": [ "NNP" ], "prestidigitator": [ "NN" ], "half-clad": [ "JJ" ], "fair-looking": [ "JJ" ], "labelled": [ "VBN", "VBD" ], "emblem": [ "NN" ], "Lonnie": [ "NNP" ], "illustrates": [ "VBZ" ], "scooped": [ "VBD" ], "Austrian-Argentine": [ "JJ" ], "Blaydon": [ "NNP" ], "Ecumenical": [ "NNP", "JJ" ], "existing": [ "VBG", "JJ" ], "Andalusians": [ "NNPS" ], "grazers": [ "NNS" ], "exorcisms": [ "NNS" ], "unmatched": [ "JJ" ], "Califano": [ "NNP" ], "lambasting": [ "VBG" ], "centers": [ "NNS", "VBZ" ], "Supporting": [ "VBG" ], "McLaughlin": [ "NNP" ], "Japanese-owned": [ "JJ" ], "Tippet": [ "NNP" ], "Bessemer": [ "NNP" ], "concerned": [ "VBN", "JJ", "VB", "VBD" ], "Becoming": [ "VBG" ], "student-loan": [ "JJ", "NN" ], "Glass": [ "NNP", "NN" ], "subcontracting": [ "NN", "JJ", "VBG" ], "battle-ax": [ "NN" ], "Superconductor": [ "NNP" ], "manipulates": [ "VBZ" ], "Holland": [ "NNP" ], "Bordens": [ "NNPS" ], "Railbikes": [ "NNS" ], "one-woman": [ "JJ" ], "Gather": [ "VB" ], "fence-line": [ "JJ" ], "public-employee": [ "NN" ], "Harve": [ "NNP" ], "discombobulation": [ "NN" ], "jettisoned": [ "VBN" ], "pledge": [ "NN", "VB" ], "Morals": [ "NNS" ], "Schnabel-Pro": [ "NNP" ], "gettin": [ "VBG" ], "pullback": [ "NN" ], "Ehrlich": [ "NNP" ], "encloses": [ "VBZ" ], "Assessors": [ "NNS" ], "debt-burdened": [ "JJ" ], "thirty-eighth": [ "JJ" ], "Mainly": [ "RB" ], "overshadows": [ "VBZ" ], "Currently": [ "RB", "NNP" ], "apparency": [ "NN" ], "revocable": [ "JJ" ], "recruitment": [ "NN" ], "fables": [ "NNS" ], "Paley": [ "NNP" ], "enclosed": [ "VBN", "VBD" ], "hutment": [ "NN" ], "university-educated": [ "JJ" ], "Sirinjani": [ "NNP" ], "apparatus": [ "NN" ], "kibbutzim": [ "NNS", "FW" ], "Walls": [ "NNS" ], "re-injecting": [ "JJ" ], "decolletage": [ "NN" ], "Easthampton": [ "NNP" ], "Falin": [ "NNP" ], "Grudges": [ "NNS" ], "Goldschmidt": [ "NNP" ], "protein-bound": [ "JJ" ], "profit-staggering": [ "JJ" ], "scenery": [ "NN" ], "a-tall": [ "JJ" ], "Vance": [ "NNP" ], "Jersey-based": [ "JJ" ], "single-spaced": [ "JJ" ], "deduces": [ "VBZ" ], "allying": [ "VBG" ], "Cargill": [ "NNP" ], "Internationale": [ "NNP", "FW" ], "consideration": [ "NN" ], "subgross": [ "JJ" ], "deduced": [ "VBN", "VBD" ], "Drabinsky": [ "NNP" ], "Collett": [ "NNP" ], "involved": [ "VBN", "VBD", "JJ", "VB", "VBN|JJ" ], "polystyrene": [ "NN" ], "Remus": [ "NNP" ], "Landesbank-Girozentrale": [ "NNP" ], "time-delay": [ "JJ" ], "Winger": [ "NNP" ], "grandchild": [ "NN" ], "way-out": [ "JJ" ], "Organizing": [ "NNP" ], "involves": [ "VBZ" ], "Davidowitz": [ "NNP" ], "consciousness-raising": [ "NN" ], "anti-militarists": [ "NNS" ], "counsels": [ "VBZ" ], "Jean-Jacques": [ "NNP" ], "dollies": [ "NNS" ], "sugar": [ "NN", "VB" ], "tools": [ "NNS", "VBZ" ], "inconveniently": [ "RB" ], "Cate": [ "NNP" ], "Dashiell": [ "NNP" ], "affording": [ "VBG" ], "zip": [ "NN", "VBP", "VB" ], "anticoagulation": [ "NN" ], "illegal": [ "JJ" ], "capriciously": [ "RB" ], "afforded": [ "VBN", "VBD" ], "toy": [ "NN", "JJ" ], "doubling": [ "VBG", "NN" ], "zim": [ "UH" ], "infamy": [ "NN" ], "Tribe": [ "NNP", "NN" ], "gigue-like": [ "JJ" ], "Nernst": [ "NNP" ], "indpendent": [ "JJ" ], "finery": [ "NN" ], "opposing": [ "VBG", "JJ" ], "Zollinger-Ellison": [ "NNP" ], "Halfback": [ "NNP" ], "public-owned": [ "JJ" ], "unawareness": [ "NN" ], "high": [ "JJ", "NN", "RB", "RP" ], "balls": [ "NNS" ], "portability": [ "NN" ], "retreated": [ "VBD", "VBN" ], "pout": [ "NN" ], "dynasties": [ "NNS" ], "athlete": [ "NN" ], "Nucor-like": [ "JJ" ], "pour": [ "VB", "FW", "IN", "VBP" ], "rubberized": [ "VBN" ], "Barclays": [ "NNP", "NNPS" ], "worksheet": [ "NN" ], "fulfill": [ "VB", "VBP" ], "VISystems": [ "NNPS" ], "voice-activated": [ "JJ" ], "intimidations": [ "NNS" ], "streamer": [ "NN" ], "Dietz": [ "NNP" ], "Diety": [ "NNP" ], "Diets": [ "NNS" ], "tiles": [ "NNS" ], "signers": [ "NNS" ], "pieces": [ "NNS" ], "Dodson": [ "NNP" ], "Excluded": [ "VBN" ], "pieced": [ "VBN" ], "purposed": [ "VBN" ], "Christmas": [ "NNP" ], "Auto-parts": [ "JJ" ], "pretexts": [ "NNS" ], "swished": [ "VBD", "VBN" ], "destroying": [ "VBG" ], "Sooner": [ "RB", "RBR" ], "Wave": [ "NNP", "NN" ], "bodegas": [ "NNS" ], "Wavy": [ "JJ" ], "Emeritus": [ "NNP" ], "Taek": [ "NNP" ], "establishment": [ "NN" ], "puckered": [ "VBN", "JJ" ], "market-timing": [ "JJ" ], "contraption": [ "NN" ], "abrasive": [ "JJ", "NN" ], "Godown": [ "NNP" ], "pump-action": [ "JJ", "NN" ], "overridden": [ "VBN" ], "Ryan": [ "NNP" ], "Q": [ "NN", "NNP" ], "Kloves": [ "NNP" ], "hitched": [ "VBN", "VBD" ], "ontological": [ "JJ" ], "tier": [ "NN" ], "ties": [ "NNS", "VBZ" ], "atune": [ "NN" ], "racks": [ "NNS" ], "autograph": [ "NN", "VB" ], "air-waybill": [ "JJ" ], "Annenberg": [ "NNP" ], "Uncertain": [ "NNP" ], "microbial": [ "JJ" ], "redundant": [ "JJ" ], "Risking": [ "NNP" ], "John-Henry": [ "NNP" ], "Tortola": [ "NNP" ], "Defects": [ "NNPS", "NNP" ], "pyramids": [ "NNS" ], "racehorses": [ "NNS" ], "Financials": [ "NNPS", "NNP" ], "Millkens": [ "NNP" ], "erasing": [ "VBG" ], "Reconciliation": [ "NNP", "NN" ], "infelicitous": [ "JJ" ], "Jeopardy": [ "NNP", "NN" ], "Computer-peripherals": [ "NNS" ], "negation": [ "NN" ], "Chesly": [ "NNP" ], "Evangeline": [ "NNP" ], "flopped": [ "VBD", "VBN" ], "Nuclepore": [ "NNP" ], "then-GOP": [ "NNP" ], "crabby": [ "JJ" ], "reinstated": [ "VBD", "VBN" ], "mistletoe": [ "NN" ], "surgeons": [ "NNS" ], "Blaggs": [ "NNP" ], "remorseless": [ "JJ" ], "Ganessa": [ "NNP" ], "anti-growth": [ "JJ" ], "Doyle": [ "NNP" ], "derelict": [ "NN", "JJ" ], "archival": [ "JJ" ], "cusp": [ "NN" ], "Dubai": [ "NNP" ], "animal": [ "NN", "JJ" ], "peseta": [ "NN" ], "separators": [ "NNS" ], "chronological": [ "JJ" ], "transparent": [ "JJ", "NN" ], "Sarkees": [ "NNP" ], "coriander": [ "NN" ], "going": [ "VBG", "JJ", "NN" ], "shantung-like": [ "JJ" ], "VII": [ "NNP" ], "Baskin": [ "NNP" ], "VIP": [ "NNP", "NN" ], "kroner": [ "NN" ], "Kluckhohn": [ "NNP" ], "importunately": [ "RB" ], "Garnett": [ "NNP" ], "Woolen": [ "NNP" ], "STAR": [ "NN" ], "minehunter": [ "NN" ], "DeMontez": [ "NNP" ], "Gregorius": [ "NNP" ], "Wolverine": [ "NNP" ], "society": [ "NN" ], "idiosyncrasies": [ "NNS" ], "food-poisoning": [ "NN", "JJ" ], "Very": [ "RB", "NNP", "JJ" ], "valve": [ "NN" ], "Miscellaneous": [ "JJ" ], "Vera": [ "NNP" ], "perversions": [ "NNS" ], "Bloody": [ "NNP" ], "A.M.": [ "NNP", "NN", "RB" ], "father-son": [ "NN" ], "low-tension": [ "JJ" ], "tiredly": [ "RB" ], "Vero": [ "NNP" ], "theater-going": [ "NN" ], "Francesville": [ "NNP" ], "self-examination": [ "NN" ], "non-Swedish": [ "JJ" ], "recoverability": [ "NN" ], "Byer-Rolnick": [ "NNP" ], "Mytton": [ "NNP" ], "thrust": [ "NN", "VBD", "VBN", "VB" ], "Spend": [ "VB" ], "geographer": [ "NN" ], "Brenner": [ "NNP" ], "compulsive": [ "JJ" ], "Dugan\\/Farley": [ "NNP" ], "hindering": [ "VBG", "JJ" ], "distinctions": [ "NNS" ], "nationalisms": [ "NNS" ], "troublemakers": [ "NNS" ], "Figger": [ "VB" ], "coming-out": [ "JJ" ], "Kian": [ "NNP" ], "Kiam": [ "NNP" ], "Jamie": [ "NNP" ], "anti-democratic": [ "JJ" ], "Ornament": [ "NN" ], "Inquisitors": [ "NNS" ], "takeover-driven": [ "JJ" ], "Prop": [ "NN" ], "gatherings": [ "NNS" ], "Prof": [ "NNP" ], "Fare": [ "VBP", "NN" ], "Gimbel": [ "NNP" ], "brimful": [ "JJ" ], "fascinating": [ "JJ" ], "ODI": [ "NNP" ], "Farm": [ "NNP", "NN" ], "behaves": [ "VBZ" ], "detailing": [ "VBG" ], "courted": [ "VBN", "VBD" ], "Adult": [ "NN" ], "price-increase": [ "NN" ], "Farr": [ "NNP" ], "prevision": [ "NN" ], "behaved": [ "VBD", "VBN" ], "fluffy": [ "JJ" ], "closed-door": [ "JJ", "NN" ], "sloppily": [ "RB" ], "thermopile": [ "NN" ], "argot": [ "NN" ], "unoccupied": [ "JJ" ], "Tempos": [ "NNS" ], "argon": [ "NN" ], "over-40": [ "JJ" ], "Connectables": [ "NNP" ], "Auctions": [ "NNS", "NNPS" ], "Jaycee": [ "NNP" ], "elite": [ "NN", "NNS", "JJ" ], "Siddeley": [ "NNP" ], "bodyweight": [ "NN" ], "carboxy-labeled": [ "JJ" ], "Burma-Shave": [ "NNP" ], "ITO": [ "NNP" ], "bowl-shaped": [ "JJ" ], "ITG": [ "NNP" ], "ITC": [ "NNP" ], "extraordinarily": [ "RB" ], "appealing": [ "JJ", "VBG" ], "psalm": [ "NN" ], "stricter": [ "JJR" ], "amble": [ "VB" ], "ITS": [ "PRP$" ], "ingenious": [ "JJ" ], "chromic": [ "JJ" ], "Pursuing": [ "VBG" ], "abomination": [ "NN" ], "RDW": [ "NN" ], "Asides": [ "NNP" ], "MiG-23": [ "NNP" ], "Ahold": [ "NNP" ], "MiG-26": [ "NNP" ], "Electra": [ "NNP" ], "Inventions": [ "NNS" ], "Electro": [ "NNP" ], "ski-industry": [ "NN" ], "Coupling": [ "VBG" ], "persistency": [ "NN" ], "Maksoud": [ "NNP" ], "leather-bound": [ "JJ" ], "Tokoi": [ "NNP" ], "sand-mining": [ "NN" ], "Reflex": [ "NN" ], "reloaded": [ "VBD", "VBN" ], "infractions": [ "NNS" ], "Fujitsu": [ "NNP" ], "Particular": [ "JJ" ], "subject": [ "NN", "JJ", "VB", "NN|JJ" ], "persistence": [ "NN", "JJ" ], "tyrannical": [ "JJ" ], "Hughes": [ "NNP" ], "biplanes": [ "NNS" ], "Hughey": [ "NNP" ], "congregational": [ "JJ" ], "Horace": [ "NNP", "NN" ], "vise": [ "NN" ], "cabinet": [ "NN", "JJ" ], "fervent": [ "JJ" ], "unerringly": [ "RB" ], "TELEVISION": [ "NN" ], "amortize": [ "VB" ], "more-distinctive": [ "JJR" ], "leafiest": [ "JJS" ], "Prisoners": [ "NNP", "NNS" ], "metaphysical": [ "JJ" ], "Leaseway": [ "NNP" ], "Time-servers": [ "NNS" ], "Hexen": [ "FW" ], "Masahiro": [ "NNP" ], "Adelos": [ "NNP" ], "ex-husband": [ "NN" ], "penning": [ "VBG" ], "growing-waiting": [ "NN" ], "perversion": [ "NN" ], "Moorish": [ "JJ" ], "standin": [ "NN" ], "vacancy": [ "NN" ], "touching": [ "VBG", "JJ", "NN" ], "acid-rain": [ "NN", "JJ" ], "connective": [ "JJ" ], "inviolability": [ "NN" ], "rouge": [ "FW", "NN" ], "Trouble-free": [ "JJ" ], "rough": [ "JJ", "RB" ], "trivial": [ "JJ", "NN" ], "B.A.T...": [ ":" ], "pause": [ "NN", "VBP", "VB" ], "Booths": [ "NNS" ], "foreknowledge": [ "NN" ], "Husker": [ "NNP" ], "entry-limit": [ "JJ" ], "spiffy": [ "JJ" ], "Campion": [ "NNP" ], "Pischinger": [ "NNP" ], "pay-later": [ "JJ" ], "cranks": [ "NNS" ], "lucks": [ "NNS" ], "cigar-chomping": [ "JJ" ], "familiar": [ "JJ", "NN" ], "light-mindedness": [ "JJ" ], "hypnotically": [ "RB" ], "lucky": [ "JJ" ], "autos": [ "NNS" ], "Zsa": [ "NNP" ], "familial": [ "JJ" ], "thiouracil": [ "NN" ], "steepness": [ "NN" ], "Corp.-USA": [ "NNP" ], "hoses": [ "NNS", "VBZ" ], "Sinclair": [ "NNP" ], "Barings": [ "NNPS" ], "Maidenform": [ "NNP" ], "U.S.-Soviet": [ "JJ", "NNP" ], "Szabad": [ "NNP" ], "skylight": [ "NN" ], "extremists": [ "NNS" ], "Werner": [ "NNP" ], "Gilmore": [ "NNP" ], "KIM": [ "NNP" ], "Registration": [ "NN" ], "KID": [ "NNP" ], "intervening": [ "VBG" ], "summits": [ "NNS" ], "Chiusano": [ "NNP" ], "warrior": [ "NN" ], "Guidance": [ "NN", "NNP" ], "lazy": [ "JJ" ], "Paulo": [ "NNP" ], "Source": [ "NN", "NNP" ], "aerogenes": [ "NNS" ], "Teen-age": [ "JJ" ], "Oilgram": [ "NNP" ], "triples": [ "NNS", "VBZ" ], "ROUND": [ "NN" ], "Paula": [ "NNP" ], "coils": [ "NNS" ], "wire": [ "NN", "VB" ], "dispensable": [ "JJ" ], "mass-building": [ "JJ" ], "coily": [ "RB" ], "perpetration": [ "NN" ], "quickest": [ "JJS" ], "Rickshaw": [ "NNP" ], "crack-ridden": [ "JJ" ], "Sanderoff": [ "NNP" ], "Tribal": [ "NNP", "JJ" ], "wiry": [ "JJ" ], "Rockford": [ "NNP" ], "Berko": [ "NNP" ], "scrolls": [ "NNS" ], "scolds": [ "NNS" ], "large-package": [ "JJ" ], "specious": [ "JJ" ], "blitzes": [ "NNS" ], "Scams": [ "NNS" ], "Berks": [ "NNP" ], "interchangeable": [ "JJ" ], "FBI": [ "NNP" ], "Feruzzi": [ "NNP" ], "Fielding": [ "NN" ], "phonetic": [ "JJ" ], "Preserving": [ "VBG" ], "computer-making": [ "JJ" ], "deficits": [ "NNS" ], "dollar-mark": [ "NN" ], "innocently": [ "RB" ], "tripled": [ "VBN", "VBD" ], "boot-stomping": [ "JJ" ], "Vagabonds": [ "NNPS", "NNP" ], "Chriss": [ "NNP" ], "light-industrial": [ "JJ" ], "author": [ "NN" ], "Transvaal": [ "NNP", "JJ" ], "Forgoing": [ "VBG" ], "Louisa": [ "NNP" ], "staved": [ "VBN" ], "coercive": [ "JJ" ], "Stapf": [ "NNP" ], "glowered": [ "VBD", "VBN" ], "SRELEASE": [ "NN" ], "Diligence": [ "NNP" ], "Industriels": [ "NNPS" ], "quaver": [ "NN" ], "Soyuz": [ "NNP" ], "waste": [ "NN", "VBP", "JJ", "VB" ], "Durer": [ "NNP" ], "Interfaith": [ "JJ" ], "homosexual": [ "JJ", "NN" ], "Sayers": [ "NNP" ], "revoltingly": [ "RB" ], "slumping": [ "VBG", "JJ" ], "arrearage": [ "NN" ], "Airborne": [ "NNP", "JJ" ], "pro-active": [ "JJ" ], "graphics": [ "NNS", "NN" ], "lumbar": [ "JJ" ], "Slightly": [ "RB" ], "Honduras": [ "NNP", "NNS" ], "Mistake": [ "NNP" ], "intradepartmental": [ "JJ" ], "wearied": [ "VBD" ], "Afrikaners": [ "NNPS" ], "loathed": [ "VBD", "VBN" ], "history-making": [ "JJ" ], "pretentious": [ "JJ" ], "Interpoint": [ "NNP" ], "Adios-Trustful": [ "NNP" ], "Chion": [ "NNP" ], "loathes": [ "VBZ" ], "portwatchers": [ "NNS" ], "rollovers": [ "NNS" ], "notebook-sized": [ "JJ" ], "G.m.b": [ "NNP" ], "diversification": [ "NN" ], "bourbons": [ "NNS" ], "AGENCIES": [ "NNS" ], "Strict": [ "JJ" ], "excessively": [ "RB" ], "Inflow": [ "NN" ], "inquest": [ "NN" ], "prefabricated": [ "VBN" ], "justiciable": [ "JJ" ], "eventshahleh": [ "RB" ], "python": [ "NN" ], "overcoats": [ "NNS" ], "Good-bye": [ "UH", "NN" ], "Kopp": [ "NNP" ], "glaring": [ "JJ", "VBG" ], "joyously": [ "RB" ], "covenant": [ "NN" ], "conflicting": [ "VBG", "JJ" ], "Porum": [ "NNP" ], "pumas": [ "NNS" ], "abyss": [ "NN" ], "golden-crusted": [ "JJ" ], "billion-share": [ "JJ" ], "interconnections": [ "NNS" ], "cutsie": [ "JJ" ], "adherents": [ "NNS" ], "broccoli": [ "NNS" ], "expand": [ "VB", "VBP" ], "extradited": [ "VBN" ], "retardant": [ "NN" ], "acknowledgement": [ "NN" ], "overcast": [ "NN", "JJ" ], "McGee": [ "NNP" ], "Challenges": [ "NNPS", "NNS", "VBZ" ], "Challenger": [ "NNP" ], "Meats": [ "NNS", "NNPS", "NNP" ], "fiscal-agent": [ "NN" ], "prospering": [ "VBG" ], "Matching": [ "VBG", "JJ" ], "Gannett": [ "NNP" ], "Thyroid": [ "NN" ], "Seventy-seven": [ "JJ" ], "kiss": [ "NN", "VB", "VBP" ], "softening": [ "VBG", "JJ", "NN" ], "less": [ "JJR", "JJS", "CC", "RB", "RBR", "RBS", "RBR|JJR" ], "Gourmet": [ "NNP" ], "Atreus": [ "NNP" ], "XR4Ti": [ "NNP" ], "off-line": [ "JJ" ], "Quota": [ "NNP" ], "Access": [ "NN", "NNP" ], "Howda": [ "WRB" ], "predicts": [ "VBZ" ], "hauled": [ "VBD", "VBN" ], "commandeered": [ "VBN" ], "Remaining": [ "VBG", "JJ" ], "Milford": [ "NNP" ], "Post-Dispatch": [ "NNP" ], "Puddingstone": [ "NNP" ], "Broken": [ "NNP", "VBN", "JJ" ], "off-limits": [ "JJ" ], "combine": [ "VB", "NN", "VBP" ], "cosmetics": [ "NNS" ], "combing": [ "VBG", "JJ" ], "Gleacher": [ "NNP" ], "mannered": [ "JJ" ], "predict\\": [ "VBP" ], "rectilinear": [ "JJ" ], "scoundrel": [ "NN" ], "beryllium": [ "NN" ], "Hits": [ "NNS" ], "Katy": [ "NNP" ], "single-dose": [ "JJ" ], "ultramarine": [ "NN" ], "Ferlenghetti": [ "NNP" ], "criminalize": [ "VB" ], "dark-gray": [ "JJ" ], "Kunste": [ "NNP" ], "Tartikoff": [ "NNP" ], "goings": [ "NNS" ], "Snopes": [ "NNP" ], "overdosed": [ "VBN" ], "Metaphysics": [ "NNS" ], "Roebuck": [ "NNP" ], "epiphyseal-diaphyseal": [ "JJ" ], "molting": [ "VBG" ], "resin": [ "NN" ], "alkali": [ "NNS", "NN" ], "Warning": [ "NNP" ], "Pawlowski": [ "NNP" ], "Windhoek": [ "NNP" ], "Lasers": [ "NNS" ], "thinners": [ "NNS" ], "handspikes": [ "NNS" ], "carcinogens": [ "NNS" ], "go-between": [ "NN", "IN" ], "liquidation": [ "NN" ], "persecuting": [ "VBG" ], "CNW": [ "NNP" ], "portly": [ "JJ" ], "Bankrupty": [ "NNP" ], "Blenheim": [ "NNP" ], "Lavoro": [ "NNP", "NN" ], "front-loaders": [ "NNS" ], "devaluations": [ "NNS" ], "Newly": [ "RB" ], "wisecrack": [ "NN" ], "long-dormant": [ "JJ" ], "Chronicle": [ "NNP" ], "Fundidora": [ "NNP" ], "shone": [ "VBD", "VBN" ], "legato": [ "JJ" ], "keystone": [ "NN" ], "reimbursements": [ "NNS" ], "crack-addicted": [ "JJ" ], "schedule": [ "NN", "VB", "VBP" ], "peep": [ "NN" ], "whiskers": [ "NNS" ], "sweet-sounding": [ "JJ" ], "SKr205": [ "NNS" ], "maven": [ "NN" ], "briefly-illumed": [ "VBN" ], "abdominal": [ "JJ" ], "surname": [ "NN" ], "loans": [ "NNS", "VBZ" ], "financial-market": [ "JJ", "NN" ], "bromphenol": [ "NN" ], "hiding": [ "VBG", "NN" ], "dirtier-running": [ "JJ" ], "mammoths": [ "NNS" ], "drumming": [ "VBG" ], "alginates": [ "NNS" ], "Corsia": [ "NNP" ], "character-recognition": [ "NN" ], "Gibbon": [ "NNP" ], "Wallace": [ "NNP" ], "debutante": [ "NN" ], "privatizing": [ "VBG" ], "Anadarko": [ "NNP" ], "Mil-Spec": [ "NNP" ], "hard-to-fill": [ "JJ" ], "Ordinaries": [ "NNPS", "NNP" ], "gallstone": [ "NN" ], "anti-NATO": [ "JJ" ], "Filtered": [ "VBN" ], "Megane": [ "NNP" ], "afoot": [ "RB", "JJ" ], "mere": [ "JJ" ], "beginner": [ "NN" ], "alreadeh": [ "RB" ], "Bashaw": [ "NNP" ], "Nuit": [ "NNP" ], "spots": [ "NNS", "VBZ" ], "mid-80s": [ "NNS" ], "misguided": [ "JJ", "VBN" ], "frustration": [ "NN" ], "tractor-semitrailer": [ "NN" ], "Societies": [ "NNS" ], "Talent": [ "NN", "NNP" ], "Bacchus": [ "NNP" ], "suits": [ "NNS", "VBZ" ], "frise": [ "FW" ], "Infrequently": [ "RB" ], "grate": [ "NN" ], "clinically": [ "RB" ], "de-leverage": [ "VB" ], "lithographs": [ "NNS" ], "championship-team": [ "JJ" ], "detestable": [ "JJ" ], "Castel": [ "NNP" ], "chained": [ "VBD", "VBN", "JJ" ], "soreness": [ "NN" ], "telesystems": [ "NNS" ], "whole-wheat": [ "JJ" ], "corpses": [ "NNS" ], "Tom-and-Jerry": [ "NNP" ], "frequency": [ "NN" ], "monument": [ "NN" ], "harrassment": [ "NN" ], "informational": [ "JJ" ], "profusion": [ "NN" ], "cordial": [ "JJ", "NN" ], "Definition": [ "NN" ], "Synthelabo": [ "NNP" ], "slowing": [ "VBG", "NN" ], "all-terrain": [ "JJ" ], "proposed...": [ ":" ], "father-in-law": [ "NN" ], "lithography": [ "NN" ], "Shycon": [ "NNP" ], "planting": [ "VBG", "NN" ], "radiomen": [ "NNS" ], "torch": [ "NN" ], "agriculture": [ "NN" ], "Buckets": [ "NNS" ], "Elsa": [ "NNP" ], "forests": [ "NNS" ], "Else": [ "RB" ], "Yugoslavia": [ "NNP", "NN" ], "specimentalia": [ "NN" ], "bond-equivalent": [ "JJ", "NN" ], "Prelude": [ "NNP" ], "Loss": [ "NN", "NNP" ], "Ikegai-Goss": [ "NNP" ], "Lost": [ "JJ", "VBD" ], "tides": [ "NNS" ], "elitists": [ "NNS" ], "dismantle": [ "VB" ], "bunched": [ "VBN", "VBD" ], "Grecian": [ "JJ", "NNP" ], "titanate": [ "NN" ], "Superposed": [ "VBD" ], "best-preserved": [ "JJ" ], "metal-benders": [ "NNS" ], "ambidextrous": [ "JJ" ], "inspiration": [ "NN" ], "reprovingly": [ "RB" ], "Weissman": [ "NNP" ], "preoccupations": [ "NNS" ], "mercenary": [ "JJ" ], "Hygiene": [ "NNP" ], "Pyongyang": [ "NNP" ], "stomach-belly": [ "NN" ], "high-value": [ "JJ" ], "A.T.B.": [ "NNP" ], "inning": [ "NN" ], "wetlands": [ "NNS" ], "suicidal": [ "JJ" ], "Residential": [ "NNP", "JJ" ], "encouragingly": [ "RB" ], "Touting": [ "VBG" ], "Organic": [ "NNP" ], "Foont": [ "NNP" ], "smooth-speaking": [ "JJ" ], "Buenos": [ "NNP" ], "multimillion-pound-per-year": [ "JJ" ], "commandos": [ "NNS" ], "admixed": [ "VBN" ], "syndicating": [ "VBG" ], "Freeholder": [ "NNP" ], "etymology": [ "NN" ], "bludgeon": [ "VB", "NN" ], "Enforce": [ "VB" ], "Bangkok-Rangoon": [ "NNP" ], "clones": [ "NNS" ], "health-care-services": [ "JJ" ], "McMillen": [ "NNP" ], "raillery": [ "NN" ], "no-hitters": [ "NNS" ], "regalia": [ "NNS" ], "Streetspeak": [ "NNP", "VB" ], "Beads": [ "NNPS" ], "kick-up": [ "NN" ], "capital-improvement": [ "NN" ], "Beady": [ "JJ" ], "Intangibles": [ "NNS" ], "closeup": [ "JJ" ], "Mudd": [ "NNP" ], "Infants": [ "NNS" ], "viral": [ "JJ" ], "Duffield": [ "NNP" ], "Parametric": [ "NNP" ], "low-concept": [ "JJ" ], "pachinko": [ "NN" ], "MAT": [ "NNP" ], "Spaeth": [ "NNP" ], "MAY": [ "MD", "NNP" ], "sonorities": [ "NNS" ], "P.GA": [ "NNP" ], "handout": [ "NN" ], "optical-fiber": [ "JJ", "NN" ], "MAC": [ "NNP" ], "carry-in": [ "JJ" ], "demage": [ "NN" ], "MAI": [ "NNP" ], "poppy": [ "NN" ], "Hess": [ "NNP" ], "Genova": [ "NNP" ], "Zairean": [ "JJ" ], "Sunrise": [ "NNP" ], "MAN": [ "NNP", "NN" ], "paperback": [ "NN", "JJ" ], "travel-service": [ "NN" ], "Paintings": [ "NNS" ], "prolong": [ "VB" ], "Sighing": [ "VBG" ], "Daytime": [ "NNP" ], "rigorous": [ "JJ" ], "Metrically": [ "RB" ], "planters": [ "NNS" ], "colonialism": [ "NN" ], "irrevocably": [ "RB" ], "S.S.R.": [ "NNP" ], "Southwide": [ "NNP" ], "irrevocable": [ "JJ" ], "garden...": [ ":" ], "colonialist": [ "NN" ], "Dumbo": [ "NNP" ], "consisting": [ "VBG" ], "Kayton": [ "NNP" ], "Proverbs": [ "NNS" ], "minority-owned": [ "JJ" ], "waddlers": [ "NNS" ], "KC-10": [ "NNP", "NN" ], "interns": [ "NNS" ], "chowders": [ "NNS" ], "Jamaican": [ "JJ", "NN", "NNP" ], "SYSTEMS": [ "NNP", "NNPS" ], "UNDER": [ "IN" ], "Belway": [ "NNP" ], "primary-election": [ "NN" ], "interne": [ "FW", "NN" ], "inhaling": [ "VBG" ], "Safeco": [ "NNP" ], "Solomonic": [ "JJ" ], "envoy": [ "NN" ], "foolishness": [ "NN" ], "up-jutting": [ "JJ" ], "pinning": [ "VBG", "NN" ], "pooling": [ "VBG", "NN" ], "Homo": [ "NN", "NNP" ], "far-off": [ "JJ" ], "Subtitled": [ "VBN" ], "surely": [ "RB" ], "chlorine-carbon": [ "NN" ], "Sameness": [ "NN" ], "Schwerin": [ "NNP" ], "spooks": [ "NNS" ], "in-migrants": [ "NNS" ], "discontinuous": [ "JJ" ], "spooky": [ "JJ" ], "loophole...": [ ":" ], "neutrons": [ "NNS" ], "sparkling": [ "JJ", "RB", "VBG" ], "achievable": [ "JJ" ], "concomitant": [ "JJ", "NN" ], "fixable": [ "JJ" ], "Lighted": [ "VBN", "JJ" ], "Star": [ "NNP", "JJ", "NN" ], "liftoff": [ "NN" ], "Mailings": [ "NNS" ], "insult": [ "NN", "VB" ], "Stag": [ "NNP" ], "Lighter": [ "JJR" ], "Stan": [ "NNP" ], "beeswax": [ "NN" ], "blueberry": [ "NN" ], "flng": [ "VB" ], "tolerated": [ "VBN", "VBD" ], "bilge": [ "NN" ], "hereditary": [ "JJ" ], "slightly-smoking": [ "JJ" ], "faker": [ "NN" ], "tolerates": [ "VBZ" ], "fakes": [ "NNS" ], "striving": [ "VBG", "NN" ], "Torquato": [ "NNP" ], "overrun": [ "VBN", "JJ", "NN" ], "spill": [ "NN", "VB", "VBP" ], "ORGANIZED": [ "VBN" ], "refusing": [ "VBG", "NN" ], "residential-real-estate": [ "JJ" ], "blooming": [ "VBG", "NN" ], "crackers": [ "NNS" ], "Mussolini": [ "NNP" ], "Aiden": [ "NNP" ], "Standing": [ "VBG", "NNP" ], "radiance": [ "NN" ], "zoot": [ "NN" ], "FARM": [ "NN" ], "Blechman": [ "NNP" ], "mingling": [ "VBG" ], "Bays": [ "NNP" ], "fanciful": [ "JJ" ], "overheard": [ "VBN", "VBD" ], "Lengthening": [ "VBG" ], "betide": [ "VB" ], "present-day": [ "JJ" ], "cites": [ "VBZ" ], "as-it-were": [ "RB" ], "Wittenberg": [ "NNP", "NN" ], "gaped": [ "VBD", "VBN" ], "Allwaste": [ "NNP" ], "song": [ "NN" ], "Peake": [ "NNP" ], "toehold": [ "NN" ], "eye-blink": [ "NN" ], "p.m.-conclusion": [ "NN" ], "Renee": [ "NNP" ], "Kashpirovsky": [ "NNP" ], "subpenaed": [ "VBN" ], "abscess": [ "NN" ], "Television-Electronics": [ "NNP" ], "Covia": [ "NNP" ], "Mustain": [ "NNP" ], "lab": [ "NN" ], "Ocean": [ "NNP" ], "lax": [ "JJ" ], "lay": [ "VBD", "VBP", "JJ", "VB" ], "outbursts": [ "NNS" ], "Weiner": [ "NNP" ], "law": [ "NN" ], "clean-bank": [ "JJ" ], "revved": [ "VBD", "VBN" ], "egged": [ "VBN" ], "coursing": [ "VBG" ], "stimulate": [ "VB", "VBP" ], "counseled": [ "VBN", "VBD" ], "open-work": [ "JJ" ], "boatswain": [ "NN" ], "baying": [ "NN", "VBG" ], "triggering": [ "VBG" ], "Exteriors": [ "NNS" ], "Regional": [ "NNP", "JJ" ], "freights": [ "NNS" ], "satisfied": [ "VBN", "VBD", "VBN|JJ", "JJ" ], "wrathful": [ "JJ" ], "deducted": [ "VBN", "VBD" ], "pension-industry": [ "JJ", "NN" ], "satisfies": [ "VBZ", "NNS" ], "dapper": [ "JJ" ], "adolescence": [ "NN" ], "Broke": [ "NNP" ], "money-broking": [ "JJ" ], "sheaf": [ "NN" ], "BRUT": [ "NNP" ], "clearances": [ "NNS" ], "Evan": [ "NNP" ], "insolently": [ "RB" ], "strafe": [ "FW", "VB" ], "Asea": [ "NNP" ], "unacknowledged": [ "JJ" ], "shear": [ "NN", "VB" ], "eventually": [ "RB" ], "Hackensack": [ "NNP" ], "Calmat": [ "NNP" ], "satellite-launch": [ "JJ" ], "Midge": [ "NNP" ], "liras": [ "NNS" ], "Ignoring": [ "VBG" ], "break": [ "VB", "NN", "VBP" ], "repulsive": [ "JJ" ], "pastdue": [ "JJ" ], "Arrow": [ "NNP" ], "President": [ "NNP", "NN" ], "divesting": [ "VBG" ], "pegs": [ "NNS", "VBZ" ], "Control": [ "NNP", "NN" ], "Calpers": [ "NNP" ], "Feldemuehle": [ "NNP" ], "alternately": [ "RB" ], "non-interference": [ "NN" ], "class-based": [ "JJ" ], "class-warrior": [ "NN" ], "end-to-end": [ "JJ" ], "entitled": [ "VBN", "VBD" ], "Agriculture": [ "NNP", "NN" ], "overpopulated": [ "VBN" ], "Sparky": [ "NNP" ], "observance": [ "NN" ], "Candlelight": [ "NNP", "NN" ], "Sparks": [ "NNP", "VBZ" ], "Mythological": [ "JJ" ], "GASB": [ "NNP" ], "Aside": [ "RB", "NNP", "IN" ], "Churchillian": [ "JJ" ], "Bonnie": [ "NNP" ], "War-related": [ "JJ" ], "Manufacture": [ "NN" ], "Cahn": [ "NNP" ], "all-Spanish": [ "JJ" ], "spicing": [ "VBG" ], "network": [ "NN", "VB" ], "Juice": [ "NN" ], "gridded": [ "JJ" ], "beefing": [ "VBG" ], "diesel": [ "NN", "JJ" ], "fellows": [ "NNS" ], "buoyed": [ "VBN", "VBD" ], "unkempt": [ "JJ" ], "Oeschger": [ "NNP" ], "hyper-competitive": [ "JJ" ], "Jeanne": [ "NNP" ], "seventh-most-admired": [ "JJ" ], "Committees": [ "NNS", "NNP" ], "Originally": [ "RB", "NNP" ], "Transcat": [ "NNP" ], "coldhearted": [ "JJ" ], "commercially": [ "RB" ], "smacking": [ "VBG" ], "fervid": [ "NN" ], "Medi-Mail": [ "NNP" ], "N.Y.": [ "NNP", "NN" ], "amazement": [ "NN" ], "delver": [ "NN" ], "delves": [ "VBZ" ], "writhing": [ "VBG", "JJ", "NN" ], "National": [ "NNP", "NNPS", "JJ" ], "dispersal": [ "NN" ], "Titanium": [ "NNP" ], "licked": [ "VBD", "VBN" ], "processed-meats": [ "NNS" ], "delved": [ "VBN" ], "guesswork": [ "NN" ], "alcohol-producing": [ "JJ" ], "Depression": [ "NNP", "NN" ], "NORDSTROM": [ "NNP" ], "world-currency": [ "NN" ], "cockatoo": [ "NN" ], "Cherokee": [ "NNP" ], "Y-gyro": [ "NN" ], "SECTION": [ "NN" ], "Butter": [ "NN" ], "radionic": [ "JJ" ], "wallflower": [ "NN" ], "Kushnick": [ "NNP" ], "Guatemalan": [ "JJ", "NNP" ], "pan-European": [ "JJ" ], "tangle": [ "NN", "VBP", "VB" ], "Secretaries": [ "NNPS", "NNS" ], "Whirlpool": [ "NNP" ], "irredeemable": [ "JJ" ], "street...": [ ":" ], "rated": [ "VBN", "JJ", "VBD" ], "president-marketing": [ "JJ" ], "reimbursed": [ "VBN", "VBD" ], "armata": [ "NNP" ], "opportunity": [ "NN" ], "Sorrow": [ "NNP" ], "coccidioidomycosis": [ "NN" ], "vibrate": [ "VB" ], "interrelationships": [ "NNS" ], "immodest": [ "JJ" ], "rates": [ "NNS", "VBZ" ], "Federal-Mogul": [ "NNP" ], "purposefully": [ "RB" ], "aberrantly": [ "RB" ], "Moulinex": [ "NNP" ], "indigation": [ "NN" ], "insurance-holding": [ "JJ" ], "oil-consuming": [ "JJ" ], "Boesky": [ "NNP" ], "rebuff": [ "NN" ], "self-governing": [ "JJ" ], "Da-da-da-dum": [ "JJ" ], "tabloid-style": [ "JJ" ], "target": [ "NN", "VBP", "VB" ], "unexplainable": [ "JJ" ], "Dornan": [ "NNP" ], "turbo-charged": [ "JJ" ], "Allah": [ "NNP" ], "Allan": [ "NNP" ], "tackles": [ "VBZ", "NNS" ], "iota": [ "NN" ], "twin-rotor": [ "JJ" ], "unmistakably": [ "RB" ], "iron": [ "NN", "VB" ], "Browder": [ "NNP" ], "tackled": [ "VBN" ], "Allay": [ "NN" ], "contrasted": [ "VBN", "VBD" ], "tipping": [ "VBG", "NN" ], "Setter": [ "NN" ], "Ghiberti": [ "NNP" ], "malady": [ "NN" ], "self-confident": [ "JJ" ], "EXBT": [ "NNP" ], "horribles": [ "NNS" ], "longitudes": [ "NNS" ], "paving-equipment": [ "NN" ], "Sorrentino": [ "NNP" ], "Reaganomics": [ "NNP" ], "numenous": [ "JJ" ], "touch-screen": [ "JJ" ], "overlays": [ "VBZ" ], "Compania": [ "NNP" ], "Sorrentine": [ "NNP" ], "Bjerre": [ "NNP" ], "forced": [ "VBN", "JJ", "VBD" ], "self-served": [ "VBD" ], "bedspread": [ "NN" ], "pleural": [ "JJ" ], "rate-of-return": [ "JJ" ], "Declaring": [ "VBG" ], "self-defense": [ "NN", "JJ" ], "indexer": [ "NN" ], "indexes": [ "NNS" ], "elation": [ "NN" ], "facet-plane": [ "NN" ], "confabulated": [ "VBN" ], "F.H.": [ "NNP" ], "forces": [ "NNS", "VBZ" ], "indexed": [ "VBN", "JJ" ], "swims": [ "VBZ" ], "isotonic": [ "JJ" ], "KEEPING": [ "VBG" ], "extending": [ "VBG" ], "anti-Rh": [ "NNP" ], "Cobra": [ "NNP" ], "Colavito": [ "NNP" ], "gray-market": [ "JJ" ], "inferred": [ "VBD", "VBN" ], "revenue-producing": [ "JJ" ], "Lewin": [ "NNP" ], "Battered": [ "VBN" ], "Thayer": [ "NNP" ], "dioceses": [ "NNS" ], "fitted": [ "VBN", "VBD", "JJ" ], "Bhabani": [ "NNP" ], "precarious": [ "JJ" ], "debt-portfolio": [ "NN" ], "HERS": [ "NNP" ], "respectfully": [ "RB" ], "protocol": [ "NN" ], "Armistice": [ "NNP" ], "toast": [ "NN", "VB" ], "Prairie": [ "NNP", "NN" ], "crewel": [ "NN" ], "Soupy": [ "JJ" ], "versed": [ "VBN" ], "booing": [ "VBG" ], "gas-glass": [ "NN" ], "blighted": [ "VBN", "VBD", "JJ" ], "squirmed": [ "VBD", "VBN" ], "protein-making": [ "JJ" ], "geologist": [ "NN" ], "screening": [ "NN", "VBG" ], "columbines": [ "NNS" ], "herded": [ "VBN", "VBD" ], "explorations": [ "NNS" ], "Pilipino": [ "NN" ], "Rolodex": [ "NNP" ], "OMB": [ "NNP" ], "ardor": [ "NN" ], "Wakefield": [ "NNP" ], "CHIEF": [ "JJ" ], "Muzyka": [ "NNP" ], "minarets": [ "NNS" ], "conservator": [ "NN" ], "congealed": [ "VBD", "VBN" ], "happiest": [ "JJS" ], "Crime": [ "NN", "NNP" ], "industrial-production": [ "JJ" ], "rebirth": [ "NN" ], "OIL": [ "NNP", "NN" ], "OME": [ "NNP" ], "sealants": [ "NNS" ], "half-chapter": [ "NN" ], "quietness": [ "NN" ], "implication": [ "NN" ], "explanations": [ "NNS" ], "de-Americanization": [ "NN" ], "non-Catholics": [ "NNPS" ], "liberalizations": [ "NNS" ], "inns": [ "NNS" ], "human": [ "JJ", "NN" ], "rocket-propelled": [ "JJ" ], "work-success": [ "NN" ], "reproductions": [ "NNS" ], "once-closed": [ "JJ" ], "Incumbent": [ "NNP" ], "terrine": [ "NN" ], "Assiniboine": [ "NNP" ], "invoicing": [ "NN" ], "obsoleted": [ "VBN" ], "MEXICAN": [ "JJ" ], "Auto": [ "NN", "NNP" ], "INTER-TEL": [ "NNP" ], "caved": [ "VBD", "VBN" ], "Sardi": [ "NNP" ], "plummeting": [ "VBG" ], "bien": [ "FW" ], "Digi": [ "NNP" ], "a-reflects": [ "VBZ" ], "Takuro": [ "NNP" ], "caves": [ "NNS" ], "Amylin": [ "NNP" ], "Leamington": [ "NNP" ], "Inglewood": [ "NNP" ], "Simonelli": [ "NNP" ], "husky": [ "JJ" ], "Dousman": [ "NNP" ], "Shiu-Lok": [ "NNP" ], "clues": [ "NNS" ], "intelligent": [ "JJ" ], "matrimony": [ "NN" ], "scrutin": [ "FW" ], "Speedway": [ "NNP" ], "Waking": [ "VBG" ], "economic-crime": [ "JJ" ], "forty-year": [ "JJ" ], "searchings": [ "NNS" ], "Milkens": [ "NNPS" ], "Harrell": [ "NNP" ], "highwayman": [ "NN" ], "private-management": [ "NN" ], "tough": [ "JJ", "RB", "VB" ], "best-tempered": [ "JJ" ], "bestows": [ "VBZ" ], "dimwitted": [ "JJ" ], "turbine-engine": [ "JJ" ], "Wuon": [ "NNP" ], "Galantuomo": [ "NNP" ], "Shout": [ "VB" ], "Bulba": [ "NNP" ], "Shoup": [ "NNP" ], "headdress": [ "NN" ], "Alfons": [ "NNP" ], "wakefulness": [ "NN" ], "Hernandez": [ "NNP" ], "knowns": [ "NNS" ], "Herrman": [ "NNP" ], "untarnished": [ "JJ" ], "Womack": [ "NNP" ], "refurbished": [ "VBN" ], "Issuance": [ "NN" ], "intriguingly": [ "RB" ], "index-arbitrage-related": [ "JJ" ], "thrice": [ "RB" ], "repelled": [ "VBN", "VBD" ], "relaxing": [ "VBG", "JJ" ], "millionth": [ "JJ" ], "hoist": [ "VB" ], "spelled": [ "VBN", "VBD" ], "VanSant": [ "NNP" ], "two-stroke": [ "JJ" ], "McIver": [ "NNP" ], "inhibit": [ "VB", "VBP" ], "stomped": [ "VBD", "VBN" ], "thenceforth": [ "CC" ], "Trend": [ "NNP" ], "Groat": [ "NNP" ], "super-rich": [ "JJ" ], "pungent": [ "JJ" ], "B.V": [ "NNP" ], "Billions": [ "NNS" ], "entertains": [ "VBZ" ], "mega-deal": [ "NN" ], "Guggenheim": [ "NNP" ], "Hopedale": [ "NNP" ], "weakens": [ "VBZ" ], "pinochle": [ "NN" ], "tax-deductions": [ "NNS" ], "crowning": [ "JJ", "VBG" ], "sticker": [ "NN" ], "straits": [ "NNS" ], "exile": [ "NN", "VB" ], "import-export": [ "JJ" ], "Underberg": [ "NNP" ], "post-quake": [ "JJ" ], "outclassed": [ "VBN" ], "Christmas-tree": [ "JJ" ], "non-Castilians": [ "NNPS" ], "grapple": [ "VB" ], "accumulating": [ "VBG", "JJ" ], "course-correction": [ "NN" ], "unlaundered": [ "VBN" ], "convictions": [ "NNS" ], "Perskys": [ "NNPS" ], "necessities": [ "NNS" ], "nil": [ "JJ" ], "inheritor": [ "NN" ], "exuded": [ "VBD" ], "swell": [ "VB", "VBP", "JJ", "NN" ], "Svenskarna": [ "FW" ], "heft": [ "NN" ], "devalued": [ "VBD", "VBN" ], "hyperbolically": [ "RB" ], "outmaneuvered": [ "VBN" ], "catheter": [ "NN" ], "curd": [ "NN" ], "Roberts": [ "NNP" ], "wispy": [ "JJ" ], "Emotionally": [ "RB" ], "hopping": [ "VBG" ], "figural": [ "JJ" ], "Skulls": [ "NNS" ], "huddling": [ "VBG" ], "ragged": [ "JJ" ], "goals": [ "NNS" ], "studying": [ "VBG", "NN" ], "securities-firm": [ "NN", "JJ" ], "Emmons": [ "NNP" ], "Randolph": [ "NNP" ], "Memorial": [ "NNP" ], "mingle": [ "VB", "VBP" ], "quoted": [ "VBN", "VBN|JJ", "VBD" ], "shell-shocked": [ "JJ" ], "Passage": [ "NN" ], "quotes": [ "NNS", "VBZ" ], "victim": [ "NN" ], "SLIPPAGE": [ "NN" ], "late-in-the-day": [ "JJ" ], "tightness": [ "NN" ], "curb": [ "VB", "NN" ], "one-minute": [ "JJ" ], "clamped": [ "VBD", "VBN" ], "Rumanians": [ "NNPS" ], "Certificate": [ "NN", "NNP" ], "Reifenrath": [ "NNP" ], "Vivian": [ "NNP" ], "party-giving": [ "NN" ], "Cluggish": [ "NNP" ], "evidences": [ "NNS" ], "Pendleton": [ "NNP" ], "pre-dawn": [ "JJ" ], "chides": [ "VBZ" ], "yesteday": [ "NN" ], "LaMore": [ "NNP" ], "demolished": [ "VBN", "VBD" ], "Bougie": [ "NNP" ], "Alice": [ "NNP", "NN" ], "hate-mongering": [ "NN" ], "schematically": [ "RB" ], "WATKINS-JOHNSON": [ "NNP" ], "high-pressure": [ "JJ" ], "realm": [ "NN" ], "reusable": [ "JJ" ], "Scotts": [ "NNP" ], "Scotty": [ "NNP", "NN" ], "competence": [ "NN" ], "McKee": [ "NNP" ], "consumer-warning": [ "NN" ], "slouches": [ "VBZ" ], "Scotto": [ "NNP" ], "soar": [ "VB", "VBP" ], "Flumenbaum": [ "NNP" ], "Heretofore": [ "RB" ], "Brandenburg": [ "NNP" ], "Tiny": [ "NNP", "JJ" ], "Ting": [ "NNP" ], "rile": [ "VBP", "VB" ], "fulminating": [ "VBG" ], "Tina": [ "NNP" ], "pl.": [ "NNP" ], "Cartwright": [ "NNP" ], "unrivaled": [ "JJ" ], "cede": [ "VB" ], "humor": [ "NN", "VB" ], "sinking-fund": [ "JJ", "NN" ], "reflexively": [ "RB" ], "unavoidable": [ "JJ" ], "Guilford": [ "NNP", "NN" ], "leered": [ "VBD" ], "Gifts": [ "NNS" ], "Restructuring": [ "NN" ], "disillusioned": [ "VBN", "JJ" ], "honoured": [ "VBN" ], "enticingly": [ "RB" ], "unavoidably": [ "RB" ], "singed": [ "VBD" ], "School": [ "NNP", "NN" ], "Obstacles": [ "NNS" ], "Tandler": [ "NNP" ], "marketing": [ "NN", "VBG", "JJ", "VBG|NN" ], "conformation": [ "NN" ], "ply": [ "VBP", "VB" ], "Geodetic": [ "NNP" ], "Seeds": [ "NNS" ], "Evegeni": [ "NNP" ], "Holders": [ "NNS", "NNP" ], "descendent": [ "NN" ], "properties": [ "NNS" ], "Ostrovsky": [ "NNP" ], "trophy": [ "NN" ], "aerosols": [ "NNS" ], "W.S.": [ "NNP" ], "Griffith-Joyner": [ "NNP" ], "newspapers": [ "NNS" ], "Packs": [ "NNPS" ], "Ladislav": [ "NNP" ], "Conrades": [ "NNP" ], "Prince": [ "NNP", "NN" ], "G.D.": [ "NNP" ], "tropho": [ "JJ" ], "Eighteenth-century": [ "JJ" ], "Essen": [ "NNP" ], "treble": [ "JJ", "NN", "VB" ], "considerations": [ "NNS" ], "Donaldsonville": [ "NNP" ], "indecency": [ "NN" ], "Qintex-MGM\\/UA": [ "NNP" ], "weaponsmaking": [ "NN" ], "car-owners": [ "NNS" ], "prisoners": [ "NNS" ], "overbilling": [ "VBG" ], "FORGN": [ "NNP" ], "Bros.": [ "NNP", "NNPS" ], "Sault": [ "NNP" ], "dry-ice": [ "JJ" ], "Rosow": [ "NNP" ], "Vol.": [ "NNP" ], "character-education": [ "NN" ], "derision": [ "NN" ], "quirks": [ "NNS" ], "Barsky": [ "NNP" ], "accords": [ "NNS", "VBZ" ], "Non-performing": [ "JJ" ], "Finkbiner": [ "NNP" ], "lowest": [ "JJS", "JJ" ], "emulated": [ "VBN" ], "COMMITTEE": [ "NNP" ], "backrooms": [ "NNS" ], "snowy": [ "JJ" ], "Stubblefields": [ "NNPS" ], "navigational": [ "JJ" ], "snows": [ "NNS", "VBZ" ], "peninsula": [ "NN" ], "McClave": [ "NNP" ], "NEWHALL": [ "NNP" ], "astonished": [ "VBN", "VBD" ], "pre-set": [ "JJ" ], "overrules": [ "VBZ" ], "Torch": [ "NNP" ], "detribalize": [ "VB" ], "braved": [ "VBD", "VBN" ], "overruled": [ "VBD", "VBN" ], "Greenspan": [ "NNP", "NN" ], "perpetuity": [ "NN" ], "economic-restructuring": [ "JJ" ], "emotional": [ "JJ" ], "Odd": [ "NNP" ], "Volz": [ "NNP" ], "ocean-pollution": [ "NN" ], "female-headed": [ "JJ" ], "Olds": [ "NNP" ], "TWA": [ "NNP" ], "Californication": [ "NN" ], "conserves": [ "VBZ" ], "scandalous": [ "JJ" ], "abstract": [ "JJ", "NN", "VBP" ], "opportunistic": [ "JJ" ], "born-again": [ "JJ" ], "howling": [ "VBG" ], "conserved": [ "VBN" ], "apoplectic": [ "JJ" ], "medical-instrument": [ "JJ" ], "TWX": [ "NNP" ], "wintry": [ "JJ" ], "poark": [ "NN" ], "bioherbicide": [ "NN" ], "well-advised": [ "JJ" ], "newsstands": [ "NNS" ], "Piedmont": [ "NNP" ], "castorbean": [ "NN" ], "stake": [ "NN", "VB", "VBP" ], "parklike": [ "JJ" ], "shrine": [ "NN" ], "bill-introduced": [ "NN" ], "holding": [ "VBG", "JJ", "NN" ], "animal-protection": [ "NN" ], "shrink": [ "VB", "NN" ], "heyday": [ "NN" ], "scored": [ "VBD", "JJ", "VBN", "JJ|VBN" ], "rent-free": [ "JJ" ], "PROFESSOR": [ "NN" ], "pressman": [ "NN" ], "illogic": [ "NN" ], "spectrally": [ "RB" ], "non-operating": [ "JJ" ], "scorer": [ "NN" ], "scores": [ "NNS", "VBZ" ], "scedule": [ "NN" ], "coup-proof": [ "JJ" ], "inkstand": [ "NN" ], "Hirohito": [ "NNP" ], "Branchville": [ "NNP" ], "maddeningly": [ "RB" ], "bestowed": [ "VBN", "VBD" ], "telescopic": [ "JJ" ], "Printout": [ "NNP" ], "Oopsie": [ "NNP" ], "McMeel": [ "NNP" ], "Andrena": [ "NNP" ], "gyrate": [ "VB" ], "functionalism": [ "NN" ], "Cheerios": [ "NNPS" ], "Weisel": [ "NNP" ], "Arbitration": [ "NN" ], "Ore.": [ "NNP" ], "MD-11": [ "NNP" ], "wrested": [ "VBD", "VBN" ], "Nakagawa": [ "NNP" ], "patina": [ "NN" ], "Cosmair": [ "NNP" ], "%...": [ ":" ], "switches": [ "NNS", "VBZ" ], "good-till-canceled": [ "JJ" ], "recluse": [ "NN" ], "superpower": [ "NN" ], "devoted": [ "VBN", "VBD", "JJ" ], "devotee": [ "NN" ], "hovers": [ "VBZ" ], "disapproves": [ "VBZ" ], "Eromonga": [ "NNP", "JJ", "NN", "NNPS" ], "released": [ "VBN", "VBD" ], "SANTA": [ "NNP" ], "devotes": [ "VBZ" ], "disapproved": [ "VBD", "VBN" ], "memorialization": [ "NN" ], "donned": [ "VBD" ], "Orel": [ "NNP" ], "Brouwer": [ "NNP" ], "tradition-minded": [ "JJ" ], "Policeman": [ "NNP" ], "NEATNESS": [ "NN" ], "bilinear": [ "JJ" ], "seemingly": [ "RB" ], "Joker": [ "NNP" ], "Jokes": [ "NNS" ], "unblemished": [ "JJ" ], "Proler": [ "NNP" ], "Teck": [ "NNP" ], "unbundled": [ "VBN" ], "T-45": [ "NNP" ], "movie-distribution": [ "NN" ], "Erlenborn": [ "NNP" ], "capitalist-democratic": [ "JJ" ], "steeply": [ "RB" ], "smooching": [ "VBG" ], "biker": [ "NN" ], "Contracting": [ "VBG", "NN" ], "Armitage": [ "NNP" ], "guitars": [ "NNS" ], "Innovative": [ "JJ" ], "hypophysectomised": [ "VBN" ], "sidewalk": [ "NN" ], "disqualify": [ "VB" ], "Hartley": [ "NNP" ], "diarrhoea": [ "NN" ], "upper": [ "JJ", "JJR", "RB" ], "tempts": [ "VBZ" ], "temples": [ "NNS" ], "Wilton": [ "NNP" ], "Okura": [ "NNP" ], "discover": [ "VB", "VBP" ], "federal-local": [ "JJ" ], "upped": [ "VBD", "VBN" ], "Orange": [ "NNP", "JJ", "NN" ], "ASEA": [ "NNP" ], "penetrated": [ "VBN", "VBD" ], "Nickles": [ "NNP" ], "sleepwalker": [ "NN" ], "blotches": [ "NNS" ], "rollup": [ "NN" ], "cryptographers": [ "NNS" ], "Charming": [ "JJ", "NNP" ], "Delight": [ "NNP" ], "nonequivalence": [ "NN" ], "saluting": [ "VBG" ], "mincemeat": [ "NN" ], "cocao": [ "NN" ], "Weisbrod": [ "NNP" ], "sleepwalked": [ "VBD" ], "Jericho": [ "NNP" ], "jocularly": [ "RB" ], "Soups": [ "NNP" ], "genes": [ "NNS" ], "Treitel": [ "NNP" ], "Quiet": [ "JJ", "NNP" ], "non-meat": [ "NN" ], "rodeos": [ "NNS" ], "Marlo": [ "NNP" ], "Underserved": [ "NNP" ], "leisure-related": [ "JJ" ], "gorge": [ "NN" ], "Wis": [ "NNP" ], "merriment": [ "NN" ], "theorize": [ "VBP", "VB" ], "satellite-delivered": [ "JJ" ], "petitioner": [ "NN" ], "hydrostatic": [ "JJ" ], "hops": [ "VBZ", "NNS" ], "patriotic": [ "JJ", "NN" ], "petitioned": [ "VBD", "VBN" ], "tippling": [ "JJ" ], "portfolio...": [ ":" ], "homeward": [ "RB" ], "capital-gains-cut": [ "JJ" ], "Seung": [ "NNP" ], "Neitzbohr": [ "NNP" ], "Different": [ "JJ", "NNP" ], "marked": [ "VBN", "JJ", "VBD", "VBP" ], "immunized": [ "VBN" ], "sincerely": [ "RB" ], "seaports": [ "NNS" ], "marker": [ "NN" ], "Greenspon": [ "NNP" ], "market": [ "NN", "VBP", "VB", "NN|VB" ], "Bonita": [ "NNP" ], "flavors": [ "NNS" ], "super-status": [ "JJ" ], "Paris-based": [ "JJ" ], "Thuggee": [ "NNP" ], "Retrace": [ "VB" ], "Cities": [ "NNPS", "NNS" ], "angels": [ "NNS" ], "uncountered": [ "JJ" ], "menstrual": [ "JJ" ], "acquisitions.s": [ "NNS" ], "molecules": [ "NNS" ], "philodendron": [ "NN" ], "half-share": [ "NN" ], "club": [ "NN" ], "Lorelei": [ "NNPS" ], "Required": [ "VBN" ], "envelope": [ "NN" ], "Twinsburg": [ "NNP" ], "clue": [ "NN" ], "breathed": [ "VBD", "VBN" ], "year-over-year": [ "JJ" ], "Unmanned": [ "JJ" ], "beluga": [ "NN" ], "intrapulmonary": [ "JJ" ], "midsession": [ "NN" ], "Spady": [ "NNP" ], "catechism": [ "NN" ], "Subs": [ "NNP" ], "Halle": [ "NNP" ], "mayors": [ "NNS" ], "foci": [ "NNS" ], "SBA": [ "NNP" ], "hope": [ "NN", "VB", "VBD", "VBP" ], "OBERMAIER": [ "NNP" ], "toccata": [ "NN" ], "Spada": [ "NNP" ], "miscalculations": [ "NNS" ], "stimulating": [ "VBG", "JJ" ], "metallurgical": [ "JJ" ], "relaying": [ "VBG" ], "Angier": [ "NNP" ], "nomenclatural": [ "JJ" ], "Resort": [ "NNP" ], "bluebook": [ "NN" ], "posing": [ "VBG" ], "instant-replay": [ "NN" ], "Britons": [ "NNPS", "NNS" ], "Effie": [ "NNP" ], "matinees": [ "NNS" ], "Keck": [ "NNP" ], "infantile": [ "JJ" ], "writs": [ "NNS" ], "DATA": [ "NNP" ], "home-service": [ "JJ" ], "buttoned-up": [ "JJ" ], "flourishes": [ "NNS", "VBZ" ], "amputated": [ "VBN" ], "Spic": [ "NNP" ], "Addabbo": [ "NNP" ], "Kieffer": [ "NNP" ], "Spin": [ "NNP" ], "gobbling": [ "VBG" ], "Powder": [ "NNP", "NN" ], "applicability": [ "NN" ], "teahouses": [ "NNS" ], "staffers": [ "NNS" ], "kitchen-sink": [ "JJ" ], "soil-removal": [ "JJ" ], "Bargain": [ "NN" ], "Krysalis": [ "NNP" ], "Malenkov": [ "NNP" ], "ADVERTISERS": [ "NNS" ], "heroes": [ "NNS" ], "Shagan": [ "NNP" ], "Wilhite": [ "NNP" ], "center-vented": [ "JJ" ], "bid-rigging": [ "NN" ], "emotionality": [ "NN" ], "futures": [ "NNS" ], "voce": [ "NN" ], "Chayefsky": [ "NNP" ], "big-tube": [ "JJ" ], "Hamburgers": [ "NNP", "NNS" ], "fortuitously": [ "RB" ], "STRUCK": [ "VBD", "VBN" ], "Exporting": [ "NNP" ], "space-time": [ "JJ" ], "Phnom": [ "NNP" ], "risk-takers": [ "NNS" ], "curiosities": [ "NNS" ], "F-4": [ "NNP" ], "Amcor": [ "NNP" ], "aiding": [ "VBG" ], "working-capital": [ "JJ", "NN" ], "fund-raising": [ "NN", "JJ" ], "bartered": [ "VBN" ], "Hindes": [ "NNP" ], "tending": [ "VBG", "NN" ], "Pravo": [ "NNP" ], "Mesta": [ "NNP" ], "curly": [ "JJ" ], "confessor": [ "NN" ], "birthdays": [ "NNS" ], "curls": [ "NNS", "VBZ" ], "unuttered": [ "JJ" ], "student-athlete": [ "NN" ], "portraiture": [ "NN" ], "distortable": [ "JJ" ], "basis-point": [ "NN" ], "analeptic": [ "JJ" ], "mid-shimmy": [ "NN" ], "incumbencies": [ "NNS" ], "inefficiency": [ "NN" ], "expansiveness": [ "NN" ], "Grubb": [ "NNP" ], "Norfolk": [ "NNP" ], "disparate": [ "JJ" ], "lumbering": [ "JJ", "NN" ], "Dynoriders": [ "NNP" ], "Salinity": [ "NN" ], "gouverne": [ "FW" ], "thin-tired": [ "JJ" ], "streamliner": [ "NN" ], "Kenosha": [ "NNP" ], "age-discrimination": [ "JJ", "NN" ], "go-around": [ "NN" ], "shoplifters": [ "NNS" ], "Ludwigshafen": [ "NNP" ], "discuss": [ "VB", "VBP" ], "expedite": [ "VB" ], "calipers": [ "NNS" ], "commercialized": [ "VBN" ], "Mountaineering": [ "NNP" ], "prospers": [ "VBZ" ], "Regulations": [ "NNS", "NNPS" ], "cliffs": [ "NNS" ], "bas-reliefs": [ "NNS" ], "uncoiling": [ "VBG" ], "Swaps": [ "NNS" ], "woolens": [ "NNS" ], "oppposes": [ "VBZ" ], "Barkin": [ "NNP" ], "coil": [ "NN" ], "supplant": [ "VB" ], "Tumazos": [ "NNP" ], "appointee": [ "NN" ], "Swapo": [ "NNP" ], "counteract": [ "VB" ], "avoided": [ "VBN", "JJ", "VBD" ], "Verloop": [ "NNP" ], "prepayment": [ "NN" ], "Krohley": [ "NNP" ], "Oskar": [ "NNP" ], "accomplish": [ "VB", "VBP" ], "Substances": [ "NNS" ], "Vermouth": [ "NNP" ], "per-day": [ "JJ" ], "snidely": [ "RB" ], "tunefulness": [ "NN" ], "showroom": [ "NN" ], "rebuilding": [ "VBG", "NN" ], "cross-cultural": [ "JJ", "NN" ], "Uncertainty": [ "NN" ], "Pierson": [ "NNP" ], "most-prestigious": [ "JJ" ], "offhandedly": [ "RB" ], "riskier": [ "JJR", "RBR", "NN" ], "Blind": [ "JJ", "NNP" ], "white-columned": [ "JJ" ], "Shelbyville": [ "NNP" ], "Tournament": [ "NNP", "NN" ], "kingdoms": [ "NNS" ], "discount-store": [ "NN", "JJ" ], "Shawn": [ "NNP" ], "blue-black": [ "JJ" ], "Swiss-German": [ "JJ" ], "travel-related": [ "JJ" ], "inevitabilities": [ "NNS" ], "Tsunozaki": [ "NNP" ], "Almanac": [ "NNP" ], "hurricane-ravaged": [ "JJ" ], "TED": [ "NNP" ], "Landry": [ "NNP" ], "mountainside": [ "NN" ], "yourself": [ "PRP" ], "pornographer": [ "NN" ], "intelligence-sharing": [ "NN" ], "Hollywood": [ "NNP" ], "monopolizing": [ "VBG" ], "Briksa": [ "NNP" ], "Sparta": [ "NNP" ], "dawns": [ "VBZ" ], "foreign-movie": [ "NN" ], "victorious": [ "JJ" ], "Schorr": [ "NNP" ], "grimness": [ "NN" ], "artless": [ "JJ" ], "thar": [ "RB" ], "thaw": [ "NN", "VB" ], "Standardization": [ "NN" ], "that": [ "IN", "DT", "NN", "RB", "RP", "UH", "WP", "VBP", "WDT" ], "inmates": [ "NNS" ], "flowers": [ "NNS" ], "than": [ "IN", "RB", "IN|RB", "RBR" ], "Conferences": [ "NNPS", "NNP", "NNS" ], "REVISED": [ "VBN" ], "reconvened": [ "VBN" ], "Fogelman": [ "NNP" ], "not-quite-mainstream": [ "JJ" ], "DeMunn": [ "NNP" ], "gobble": [ "NN", "VB" ], "reconvenes": [ "VBZ" ], "non-traditional": [ "JJ" ], "Veronique": [ "NNP" ], "Vallee": [ "NNP" ], "Leverkusen": [ "NNP" ], "Cherry": [ "NNP" ], "W.J.": [ "NNP" ], "FXTV": [ "NNP" ], "crossover": [ "NN" ], "Dynapert": [ "NNP" ], "less-sweeping": [ "JJ" ], "just-completed": [ "JJ" ], "Valley": [ "NNP" ], "Playes": [ "NNP" ], "lumpy": [ "JJ" ], "nervy": [ "JJ" ], "lumps": [ "NNS", "VBZ" ], "technicality": [ "NN" ], "terrific": [ "JJ" ], "Hoyle": [ "NNP" ], "nuances": [ "NNS" ], "siesta": [ "NN" ], "similiar": [ "JJ" ], "swelled": [ "VBD", "VBN", "JJ" ], "Sean": [ "NNP" ], "Dingell-Waxman": [ "NNP" ], "Kimmelman": [ "NNP" ], "heaters": [ "NNS" ], "winless": [ "JJ" ], "Sleep-disorder": [ "JJ" ], "Bahre": [ "NNP" ], "man-bites-dog": [ "JJ" ], "expertly": [ "RB" ], "analytically": [ "RB" ], "Wound-tumor": [ "NN" ], "hot-shot": [ "JJ", "NN" ], "interacting": [ "VBG", "NN" ], "storm-damaged": [ "JJ" ], "bicycle-auto": [ "JJ" ], "Bursting": [ "VBG" ], "failure": [ "NN" ], "Akademie": [ "NNP" ], "McArthur": [ "NNP" ], "aerosol": [ "NN" ], "Gidwani": [ "NNP" ], "growth-oriented": [ "JJ" ], "see-through": [ "JJ" ], "well-stuffed": [ "JJ" ], "erred": [ "VBN", "VBD" ], "overregulation": [ "NN" ], "Ghazel": [ "NNP" ], "concurs": [ "VBZ" ], "work-release": [ "NN" ], "excerpts": [ "NNS" ], "battens": [ "NNS" ], "nemesis": [ "NN" ], "title": [ "NN" ], "proclamation": [ "NN" ], "Maoist-style": [ "JJ" ], "Proskauer": [ "NNP" ], "geochemistry": [ "NN" ], "watching": [ "VBG", "NN" ], "MSX-run": [ "JJ" ], "alcoholism": [ "NN" ], "pastrami": [ "NNS" ], "MARCUS": [ "NNP" ], "trenchant": [ "JJ" ], "beatnik": [ "NN" ], "antithyroid": [ "JJ" ], "Northfield": [ "NNP" ], "moxie": [ "NN" ], "clearnace": [ "NN" ], "roadster": [ "NN" ], "Okla": [ "NNP" ], "leather": [ "NN", "JJ" ], "Felix": [ "NNP" ], "Buker": [ "NNP" ], "reorganized": [ "VBN", "JJ", "VBD" ], "long-opposed": [ "JJ" ], "Pro-Iranian": [ "NNP" ], "Invariably": [ "RB" ], "reorganizes": [ "VBZ" ], "Jock": [ "NNP" ], "Yugolsavia": [ "NNP" ], "tax-advantaged": [ "JJ" ], "derogatory": [ "JJ" ], "examinin": [ "VBG" ], "Mandarin": [ "NNP", "JJ" ], "Finks": [ "NNP" ], "flatly": [ "RB" ], "hypodermic": [ "JJ" ], "mom-and-pop": [ "JJ" ], "Bobo": [ "NNP" ], "feuds": [ "NNS", "VBZ" ], "Varitronic": [ "NNP" ], "skyscraper": [ "NN" ], "non-consumer": [ "NN" ], "airline-deregulation": [ "NN" ], "Maneuvers": [ "NNS" ], "garde": [ "FW" ], "analyzer": [ "NN" ], "analyzes": [ "VBZ" ], "Matritech": [ "NNP" ], "Marco": [ "NNP" ], "analyzed": [ "VBN", "VBD" ], "Squadron": [ "NNP" ], "vrai": [ "FW" ], "stipends": [ "NNS" ], "revellings": [ "NNS" ], "Mayor-nominate": [ "NNP" ], "Cinema": [ "NNP" ], "tutors": [ "NNS" ], "Primary": [ "JJ", "NNP" ], "electronic-warfare": [ "NN" ], "Moraine": [ "NNP" ], "segmental": [ "JJ" ], "assaulting": [ "VBG" ], "reluctantly": [ "RB" ], "wheels": [ "NNS" ], "Sulka": [ "NNP" ], "nearby": [ "JJ", "RB" ], "Feenberg": [ "NNP" ], "monochromes": [ "NNS" ], "fungicides": [ "NNS" ], "KLM-Northwest": [ "NNP" ], "SHORTAGE": [ "NN" ], "Bourguiba": [ "NNP" ], "Holzfaster": [ "NNP" ], "no-smoking": [ "JJ" ], "no-load": [ "JJ" ], "pulverized": [ "VBN" ], "Bets": [ "NNS" ], "olives": [ "NNS" ], "cycling": [ "NN", "VBG" ], "Frohock": [ "NNP" ], "cares": [ "VBZ", "NNS" ], "low-class": [ "JJ" ], "invert": [ "VB" ], "package-sorting": [ "NN" ], "Six-Day": [ "NNP" ], "cared": [ "VBD", "VBN" ], "Beta": [ "NNP", "JJ", "NN" ], "credit-financed": [ "JJ" ], "wolde": [ "MD" ], "two-mark": [ "JJ" ], "outweighed": [ "VBD", "VBN" ], "Beth": [ "NNP" ], "Assn.": [ "NNP" ], "Marcy": [ "NNP" ], "avian": [ "JJ" ], "magnetics": [ "NNS" ], "Kozintsev": [ "NNP" ], "favoritism": [ "NN" ], "Yokuts": [ "NNP" ], "homely": [ "JJ" ], "quartzite-quarrying": [ "NN" ], "file": [ "VB", "NN", "VBP" ], "foggy": [ "JJ" ], "cost-prohibitive": [ "JJ" ], "electric-generating": [ "NN" ], "Flick": [ "NN", "NNP" ], "ex-furniture": [ "JJ" ], "Yamada": [ "NNP" ], "rustlin": [ "NN" ], "UFO": [ "NNP" ], "Northington": [ "NNP" ], "grevouselye": [ "RB" ], "shirtfront": [ "NN" ], "OWNER": [ "NNP" ], "Alaska-based": [ "JJ" ], "care.": [ "NN" ], "trade-up": [ "JJ" ], "oligopoly": [ "NN" ], "legislation-delaying": [ "JJ" ], "political-reform": [ "JJ" ], "two-fisted": [ "JJ" ], "pileup": [ "NN" ], "Flexible": [ "JJ", "NNP" ], "Hitch": [ "NNP" ], "co-managers": [ "NNS" ], "worry": [ "VB", "NN", "VBP" ], "Gritten": [ "NNP" ], "widows": [ "NNS" ], "Complete": [ "JJ", "NNP", "VB" ], "Sixth": [ "NNP", "JJ" ], "Moira": [ "NNP" ], "hartes": [ "NNS" ], "Lannon": [ "NNP" ], "poetic": [ "JJ" ], "cc.": [ "NN", "NNS" ], "NSPA": [ "NNP" ], "figures": [ "NNS", "VBZ" ], "outmaneuver": [ "VB" ], "centuries": [ "NNS" ], "enjoyment": [ "NN" ], "BIO-RAD": [ "NNP" ], "nestled": [ "VBN", "VBD" ], "Rafter": [ "NNP" ], "radio-cassette": [ "NN" ], "truck-bed": [ "NN" ], "Lightning": [ "NN" ], "framework": [ "NN" ], "patchwork": [ "NN", "JJ" ], "immeasurably": [ "RB" ], "Outboard": [ "NNP", "JJ" ], "agreeing": [ "VBG" ], "poplar": [ "NN" ], "immeasurable": [ "JJ" ], "Andres": [ "NNP" ], "coordinate": [ "VB", "JJ", "NN", "VBP" ], "defers": [ "VBZ" ], "Nazi": [ "NNP", "JJ" ], "charged": [ "VBN", "VBD", "JJ" ], "rail-mobile": [ "JJ" ], "Jimmie": [ "NNP" ], "Biagi": [ "NNP" ], "Kool-Aid": [ "NNP" ], "Zen-like": [ "JJ" ], "Poseidon": [ "NNP" ], "dancers": [ "NNS" ], "beveling": [ "VBG" ], "Minn.": [ "NNP" ], "spots...": [ ":" ], "wrecks": [ "NNS" ], "Maruzen": [ "NNP" ], "Loudspeakers": [ "NNS" ], "Swissair": [ "NNP" ], "Nueva": [ "NNP" ], "thinking": [ "VBG", "VBG|NN", "JJ", "NN" ], "Tailin": [ "NN" ], "conveyor": [ "NN" ], "ketches": [ "NNS" ], "improvement": [ "NN" ], "Winchell": [ "NNP" ], "Kolpakova": [ "NNP" ], "market-revision": [ "NN" ], "congeal": [ "VB" ], "seams": [ "NNS" ], "conferees": [ "NNS" ], "Minna": [ "NNP" ], "Grands": [ "NNP" ], "seamy": [ "JJ" ], "typographic": [ "JJ" ], "allocates": [ "VBZ" ], "Occidental": [ "NNP" ], "warehouse": [ "NN", "VB" ], "Grande": [ "NNP", "FW" ], "Fishermen": [ "NNS" ], "Minny": [ "NNP" ], "Andrea": [ "NNP" ], "dumpy": [ "JJ" ], "burrowing": [ "VBG" ], "outcrops": [ "NNS" ], "streamers": [ "NNS" ], "Effectively": [ "RB" ], "Raskolnikov": [ "NNP" ], "adjuster": [ "NN" ], "Aroused": [ "VBN" ], "apologists": [ "NNS" ], "counter-cyclical": [ "JJ" ], "orgiastic": [ "JJ" ], "ghostlike": [ "JJ" ], "Telephone": [ "NNP", "NN" ], "privatization": [ "NN" ], "Howzit": [ "NN" ], "questionnaire": [ "NN" ], "USSR": [ "NNP" ], "Squat-style": [ "JJ" ], "garland": [ "NN" ], "Scrimgeour": [ "NNP" ], "Hoa-whup": [ "UH" ], "Asbestos": [ "NNP", "NN" ], "squire": [ "NN" ], "Woodrow": [ "NNP" ], "Cressidas": [ "NNPS" ], "on-set": [ "JJ" ], "Luger": [ "NNP" ], "copings": [ "NNS" ], "hustle": [ "VB", "NN" ], "Rimanelli": [ "NNP" ], "uncorrected": [ "JJ" ], "chefs": [ "NNS" ], "flinched": [ "VBD" ], "still-ticking": [ "JJ" ], "business-credit": [ "NN" ], "sniffs": [ "VBZ" ], "Trans-Mediterranean": [ "NNP" ], "seat-back": [ "JJ" ], "sniffy": [ "JJ" ], "comparison": [ "NN" ], "vacillate": [ "VB" ], "hampers": [ "VBZ" ], "just-announced": [ "JJ" ], "HOT": [ "JJ", "NNP" ], "stake-holding": [ "JJ" ], "testimony": [ "NN" ], "Ventures": [ "NNP", "NNPS" ], "Galecke": [ "NNP" ], "processor": [ "NN" ], "D.,Texas": [ "NNS" ], "Story": [ "NNP", "NN" ], "less-than-carload": [ "JJ" ], "teamwork": [ "NN" ], "unbounded": [ "JJ" ], "russe": [ "NN" ], "color-coded": [ "VBN" ], "Stork": [ "NNP" ], "organics": [ "NNS" ], "Ade": [ "NNP" ], "involvement": [ "NN" ], "bedtime": [ "NN" ], "Storm": [ "NN", "NNP" ], "Ada": [ "NNP" ], "elementary": [ "JJ" ], "Ado": [ "NNP" ], "garrisoned": [ "VBN" ], "nowadays": [ "RB" ], "Store": [ "NNP" ], "Adi": [ "NNP" ], "Tactically": [ "RB" ], "grates": [ "NNS" ], "Chiappa": [ "NNP" ], "forwarded": [ "VBN" ], "orange-and-white": [ "JJ" ], "exonerated": [ "VBN", "VBD" ], "Gendron": [ "NNP" ], "technolology": [ "NN" ], "mellowed": [ "VBN" ], "premix": [ "NN" ], "cats": [ "NNS" ], "reintegrated": [ "VBN" ], "anti-Japanese": [ "JJ" ], "computer-assisted": [ "JJ" ], "burnings": [ "NNS" ], "tabulations": [ "NNS" ], "marimba": [ "NN" ], "Mushkat": [ "NNP" ], "Mollusks": [ "NNS" ], "Richey": [ "NNP" ], "mud-logger": [ "NN" ], "J": [ "NNP", "LS", "NN" ], "gunners": [ "NNS" ], "posterior": [ "JJ" ], "multitasking": [ "VBG", "NN" ], "attainable": [ "JJ" ], "Ruskin": [ "NNP" ], "on-sure": [ "JJ" ], "whirring": [ "VBG" ], "middle-sized": [ "JJ" ], "communitarians": [ "NNS" ], "Geo": [ "NNP" ], "U.S.-backed": [ "JJ" ], "potato": [ "NN" ], "lawfully": [ "RB" ], "disbanding": [ "VBG", "NN" ], "doweling": [ "NN" ], "farrowings": [ "NNS" ], "Respecting": [ "VBG" ], "overpay": [ "VB" ], "Shochiku": [ "NNP" ], "tones": [ "NNS" ], "sallying": [ "VBG" ], "gibberish": [ "NN" ], "cowbirds": [ "NNS" ], "Satoh": [ "NNP" ], "Biomet": [ "NNP" ], "Labans": [ "NNP" ], "falseness": [ "NN" ], "remembrances": [ "NNS" ], "Yonkers": [ "NNP" ], "equity-to-asset": [ "NN" ], "Coasts": [ "NNPS", "NNP" ], "Duque": [ "NNP" ], "restores": [ "VBZ" ], "midweek": [ "JJ", "NN" ], "godamit": [ "VB" ], "gradients": [ "NNS" ], "Monica": [ "NNP" ], "tariff-cutting": [ "NN" ], "elemental": [ "JJ", "NN" ], "million-dollar-a-year": [ "JJ" ], "afflicting": [ "VBG" ], "semiarid": [ "JJ" ], "Colon": [ "NN", "NNP" ], "Malvern": [ "NNP" ], "Baldrige": [ "NNP" ], "authoritarian": [ "JJ" ], "perils": [ "NNS" ], "Roscoe": [ "NNP" ], "teeth": [ "NNS", "RP" ], "carpenter": [ "NN" ], "NewVector": [ "NNP" ], "unattractive": [ "JJ" ], "Mexican": [ "JJ", "NNP" ], "Modern": [ "NNP", "JJ", "NN" ], "homered": [ "VBD" ], "merchant-banking": [ "JJ", "NN" ], "repay": [ "VB", "VBP" ], "M.G.": [ "NNP" ], "Soybean": [ "NN" ], "embracing": [ "VBG" ], "optical-products": [ "NNS" ], "Prideaux": [ "NNP" ], "home-market": [ "JJ" ], "PANHANDLER": [ "NN" ], "Tilly": [ "NNP" ], "alleviation": [ "NN" ], "infestations": [ "NNS" ], "twigged": [ "VBD" ], "upholds": [ "VBZ" ], "renege": [ "VB" ], "messy": [ "JJ" ], "revoke": [ "VB" ], "duty-free": [ "JJ" ], "brunettes": [ "NNS" ], "Abreaction": [ "NN" ], "carpet": [ "NN" ], "dreadful": [ "JJ", "NN" ], "mating": [ "NN", "JJ", "VBG" ], "Lipsky": [ "NNP" ], "icons": [ "NNS" ], "gymnast": [ "NN" ], "phenothiazine": [ "NN" ], "eventfully": [ "RB" ], "deep-rooted": [ "JJ" ], "Pilate": [ "NNP" ], "azaleas": [ "NNS" ], "lifters": [ "NNS" ], "single-job": [ "JJ" ], "transducers": [ "NNS" ], "agglomeration": [ "NN" ], "voicing": [ "VBG" ], "Ashkhabad": [ "NNP" ], "coups": [ "NNS" ], "Prechter": [ "NNP" ], "alternative-fuels": [ "JJ", "NNS" ], "nuclear-powered": [ "JJ" ], "single-A-plus": [ "JJ", "NNP", "NN" ], "Undertaken": [ "VBN" ], "securely": [ "RB" ], "common-share": [ "JJ" ], "heaven": [ "NN" ], "Bentley": [ "NNP" ], "heaved": [ "VBD", "VBN" ], "kolkhoz": [ "NN" ], "knott": [ "NN" ], "Price-earnings": [ "JJ" ], "steakhouse": [ "NN" ], "En-lai": [ "NNP" ], "inversions": [ "NNS" ], "heaves": [ "NN", "VBD" ], "defense-related": [ "JJ" ], "Schlesinger": [ "NNP" ], "cost-cutting": [ "JJ", "NN" ], "three-spoked": [ "JJ" ], "Goliaths": [ "NNPS", "NNS" ], "rigger": [ "NN" ], "excitements": [ "NNS" ], "attributable": [ "JJ" ], "Egan": [ "NNP" ], "forward-rate": [ "JJ" ], "Egad": [ "UH" ], "Bratislava": [ "NNP" ], "Lumiere": [ "NNP" ], "belching": [ "NN", "VBG" ], "Takayama": [ "NNP" ], "amatory": [ "JJ" ], "certificates": [ "NNS" ], "highest-volume": [ "JJ" ], "bit-like": [ "JJ" ], "peptidases": [ "NNS" ], "rutabagas": [ "NNS" ], "expiration": [ "NN" ], "edited": [ "VBN", "VBD" ], "Stokely": [ "NNP" ], "postage-stamp": [ "NN" ], "Rabbi": [ "NNP" ], "modular": [ "JJ" ], "B-1B": [ "NNP", "JJ", "NN" ], "grudges": [ "NNS" ], "Hatchett": [ "NNP" ], "Jerald": [ "NNP" ], "Azara": [ "NNP" ], "ommission": [ "NN" ], "multipartisan": [ "JJ" ], "B-1s": [ "NNPS" ], "Northampton": [ "NNP", "NN" ], "exceptionally": [ "RB" ], "Pothitos": [ "NNP" ], "creepy": [ "JJ" ], "SIDE": [ "NNP" ], "Zappa": [ "NNP" ], "amount": [ "NN", "VB", "VBP" ], "fancier": [ "JJR" ], "refined-petroleum-products": [ "JJ" ], "Sharp-witted": [ "JJ" ], "trainer": [ "NN" ], "shuffle": [ "NN", "VB", "VBP" ], "mediator": [ "NN" ], "word-of-mouth": [ "NN" ], "Plateadas": [ "NNP" ], "Sparkling": [ "NNP" ], "Boake": [ "NNP" ], "locates": [ "VBZ" ], "analyzing": [ "VBG", "NN" ], "trained": [ "VBN", "VBD", "JJ" ], "pulverize": [ "VB" ], "Dinkins": [ "NNP" ], "ripe": [ "JJ" ], "Asarco": [ "NNP" ], "drought-ravaged": [ "JJ" ], "watersheds": [ "NNS" ], "bilking": [ "VBG" ], "whole-word": [ "JJ" ], "autographs": [ "NNS" ], "linden": [ "NN" ], "swiped": [ "VBD", "VBN" ], "Maximizing": [ "VBG" ], "ejected": [ "VBN", "VBD" ], "regrettable": [ "JJ" ], "tri-state": [ "JJ" ], "Australian-based": [ "JJ" ], "Fastenal": [ "NNP" ], "commenced": [ "VBD", "VBN" ], "moistened": [ "JJ", "VBD" ], "regrettably": [ "RB" ], "Blackhawk": [ "NNP" ], "Justinian": [ "NNP" ], "alderman": [ "NN" ], "weathering": [ "NN", "VBG" ], "jackhammers": [ "NNS" ], "take-off": [ "NN" ], "synthetical": [ "JJ" ], "Steppan": [ "NNP" ], "Calverley": [ "NNP" ], "polysiloxanes": [ "NNS" ], "Globex": [ "NNP" ], "hairdos": [ "NNS" ], "playable": [ "JJ" ], "fancied": [ "VBD" ], "velociter": [ "FW" ], "pre-consumption": [ "NN" ], "biographers": [ "NNS" ], "Buyers": [ "NNS" ], "thermostatics": [ "NNS" ], "Legion": [ "NNP" ], "Sync": [ "NN" ], "COHERENT": [ "NNP" ], "fillies": [ "NNS" ], "no-mistakes": [ "JJ" ], "oratory": [ "NN" ], "diffrunce": [ "NN" ], "orators": [ "NNS" ], "Tanii": [ "NNP" ], "ledges": [ "NNS" ], "ledger": [ "NN" ], "biographer\\": [ "NN" ], "one-ship": [ "JJ" ], "woodsy": [ "JJ" ], "extended-payment": [ "NN" ], "Barrett": [ "NNP" ], "Kaminski": [ "NNP" ], "board-level": [ "JJ" ], "three-boiler": [ "JJ" ], "Birgit": [ "NNP" ], "Japan-U.S.": [ "JJ" ], "Lestoil": [ "NNP" ], "headquartered": [ "VBN" ], "Recruit": [ "NNP", "NN" ], "beyond-normal": [ "JJ" ], "Kaminsky": [ "NNP" ], "malnourished": [ "JJ" ], "UNVEILED": [ "VBD" ], "Matisse": [ "NNP" ], "hooliganism": [ "NN" ], "contrived": [ "VBN", "JJ" ], "Researching": [ "VBG" ], "index-arbitrage": [ "NN", "JJ" ], "snazzier": [ "JJR" ], "microinjection": [ "NN" ], "wingbeat": [ "NN" ], "ego": [ "NN" ], "McKENZIE": [ "NNP" ], "Existence": [ "NN" ], "methanol-gasoline": [ "JJ" ], "egg": [ "NN" ], "Domenici": [ "NNP" ], "T.S.": [ "NNP" ], "reservoir": [ "NN" ], "mucosa": [ "NN" ], "Illinois": [ "NNP" ], "brown-edged": [ "JJ" ], "Horst": [ "NNP" ], "unfertilized": [ "VBN", "JJ" ], "estancieros": [ "NNS" ], "Dresbach": [ "NNP" ], "reminiscences": [ "NNS" ], "dummies": [ "NNS" ], "benefits-for-all": [ "JJ" ], "romance": [ "NN" ], "Vizas": [ "NNP" ], "AON": [ "NNP" ], "lateral": [ "JJ" ], "solving": [ "VBG" ], "interloping": [ "VBG" ], "Ahlerich": [ "NNP" ], "followeth": [ "VBZ" ], "relate": [ "VBP", "VB" ], "peanuts": [ "NNS" ], "Surgeon": [ "NNP" ], "Zayed": [ "NNP" ], "Macari": [ "NNP" ], "temperatures": [ "NNS" ], "roomful": [ "NN" ], "repatriating": [ "VBG" ], "BROAD": [ "NNP" ], "demographics": [ "NNS" ], "Bulow": [ "NNP" ], "Macare": [ "NNP" ], "motivates": [ "VBZ" ], "moaning": [ "VBG" ], "ADVERTISING": [ "NNP" ], "training-wage": [ "JJ" ], "belt-tightening": [ "NNS" ], "towering": [ "JJ", "VBG" ], "Dominic": [ "NNP" ], "Sturch": [ "NNP" ], "Allemands": [ "NNP" ], "payer": [ "NN" ], "dulled": [ "VBN" ], "boiler-burner": [ "NN" ], "attacks": [ "NNS", "VBZ" ], "out-of-synch": [ "JJ" ], "cleaners": [ "NNS" ], "duller": [ "JJR", "RBR" ], "stickman": [ "NN" ], "yearningly": [ "RB" ], "middle-priced": [ "JJ" ], "base-metal": [ "NN" ], "Threadgill": [ "NNP" ], "Exhibition": [ "NNP", "NN" ], "tode": [ "VBN" ], "quantum": [ "NN" ], "inspections": [ "NNS" ], "event": [ "NN" ], "steered": [ "VBD", "VBN" ], "Pagong": [ "NNP" ], "viability": [ "NN" ], "Mangino": [ "NNP" ], "cave-like": [ "JJ" ], "cigaret": [ "NN" ], "bale": [ "NN", "VBP" ], "grimace": [ "NN", "VB" ], "meteoric": [ "JJ" ], "Locate": [ "VB" ], "expansive": [ "JJ" ], "bald": [ "JJ" ], "wine-making": [ "NN", "JJ" ], "Plaza": [ "NNP" ], "According": [ "VBG", "NNP" ], "MediVision": [ "NNP" ], "vigorous": [ "JJ" ], "touchstones": [ "NNS" ], "resettle": [ "VB" ], "earliest": [ "JJS", "RBS" ], "Researchers": [ "NNS", "NNP" ], "poultry-loving": [ "JJ" ], "revolutionary": [ "JJ", "NN" ], "Front-line": [ "JJ", "NN" ], "Pater": [ "NNP" ], "incipiency": [ "NN" ], "liaison": [ "NN", "JJ" ], "incipience": [ "NN" ], "Patel": [ "NNP" ], "Euro-ashtrays": [ "NNS" ], "corrupting": [ "VBG", "JJ", "NN" ], "financed": [ "VBN", "JJ", "VBD" ], "cut-and-dried": [ "JJ" ], "cetera": [ "NN", "FW" ], "booboos": [ "NNS" ], "Manson": [ "NNP" ], "Durable": [ "JJ" ], "whirling": [ "VBG", "JJ", "NN" ], "industrially": [ "RB" ], "Detroit-area": [ "JJ" ], "loadings": [ "NNS" ], "Callender": [ "NNP" ], "Waksman": [ "NNP" ], "wingman": [ "NN" ], "perturbation": [ "NN" ], "harmlessly": [ "RB" ], "SHAREDATA": [ "NNP" ], "generalities": [ "NNS" ], "video-store": [ "NN" ], "line-hand-wired": [ "JJ" ], "Feels": [ "VBZ" ], "LaCroix": [ "NNP" ], "Threaded": [ "VBN" ], "antibacterial": [ "JJ" ], "biochemists": [ "NNS" ], "blindly": [ "RB" ], "taxable": [ "JJ" ], "Prosser": [ "NNP" ], "Parkway": [ "NNP", "NN" ], "Athalie": [ "NNP" ], "Gravelle": [ "NNP" ], "debt-happy": [ "JJ" ], "lament": [ "NN", "VB" ], "Winn-Dixie": [ "NNP" ], "McKellar": [ "NNP" ], "trudge": [ "NN" ], "derriere": [ "NN" ], "Stiling": [ "NNP" ], "Turchin": [ "NNP" ], "Officials": [ "NNS", "NNPS", "NNP" ], "Mimesis": [ "NN", "NNP" ], "Guillermo": [ "NNP" ], "wonderment": [ "NN" ], "quacked": [ "VBD" ], "sentenced": [ "VBN", "VBD" ], "forensics": [ "NNS" ], "Selkin": [ "NNP" ], "Regions": [ "NNS", "NNPS" ], "Kimberly": [ "NNP" ], "political-action": [ "JJ" ], "Kasper": [ "NNP" ], "policymakers": [ "NNS" ], "sentences": [ "NNS" ], "congresssional": [ "JJ" ], "Kaman": [ "NNP" ], "concentration": [ "NN" ], "Kamal": [ "NNP" ], "Corporate\\/investor": [ "NN" ], "soubriquet": [ "FW" ], "Witt": [ "NNP" ], "curbside": [ "NN", "JJ" ], "anti-U.S.": [ "JJ" ], "suddenness": [ "NN" ], "Stram": [ "NNP" ], "Galilee": [ "NNP" ], "Drogerias": [ "NNP" ], "comprehended": [ "VBD", "VBN" ], "showcases": [ "NNS" ], "Galileo": [ "NNP", "NN" ], "Forked": [ "NNP" ], "industralization": [ "NN" ], "With": [ "IN", "NNP" ], "Spirit": [ "NNP", "NN" ], "natural-law": [ "NN" ], "Obligingly": [ "RB" ], "Celtona": [ "NNP" ], "Zalubice": [ "NNP" ], "Rage": [ "NN" ], "Permanente": [ "NNP" ], "approves": [ "VBZ" ], "Optimism": [ "NN" ], "mega-stadium": [ "NN" ], "silver-conspiracy": [ "NN" ], "Chagall": [ "NNP" ], "Ragu": [ "NNP" ], "watt": [ "NN" ], "Economically": [ "RB" ], "mobile": [ "JJ" ], "performances": [ "NNS" ], "Brachfeld": [ "NNP" ], "snapping": [ "VBG", "NN" ], "Melodramatic": [ "JJ" ], "Seagle": [ "NNP" ], "outhouse": [ "NN" ], "triphenylphosphine": [ "NN" ], "hints": [ "NNS", "VBZ" ], "succor": [ "NN" ], "gunman": [ "NN" ], "nonspecific": [ "JJ" ], "lordship": [ "NN" ], "Colgate-Palmolive": [ "NNP" ], "Etsuko": [ "NNP" ], "Zuckerman": [ "NNP" ], "stunned": [ "VBD", "VBN", "JJ" ], "vindication": [ "NN" ], "celebrities": [ "NNS" ], "tenet": [ "NN" ], "plastic-body": [ "JJ" ], "impressively": [ "RB" ], "multilateral": [ "JJ" ], "octaves": [ "NNS" ], "dimension": [ "NN", "VB" ], "Dandy": [ "NNP" ], "grafted": [ "JJ", "VBN" ], "Populaires": [ "NNP" ], "parameters": [ "NNS" ], "Braathens": [ "NNP" ], "working-girl": [ "NN" ], "Transports": [ "NNS" ], "pooling-of-interests": [ "JJ" ], "SENATE": [ "NNP" ], "flights": [ "NNS" ], "prior-notice": [ "JJ" ], "beauteous": [ "JJ" ], "inadvisable": [ "JJ" ], "flighty": [ "JJ" ], "Guys": [ "NNS" ], "frogmen": [ "NNS" ], "Hypotheekkas": [ "NNP" ], "quibusdam": [ "FW" ], "once-sleepy": [ "JJ" ], "albeit": [ "IN", "RB" ], "blood-flow": [ "NNS" ], "dealings": [ "NNS" ], "capsule": [ "NN" ], "Pesticide": [ "NNP" ], "Jefferies": [ "NNP", "NNS" ], "Eq.": [ "NN", "NNP" ], "blutwurst": [ "NN" ], "Bottorff": [ "NNP" ], "intensify": [ "VB", "VBP" ], "representives": [ "NNS" ], "Brecht": [ "NNP" ], "gels": [ "VBZ" ], "transgenic": [ "JJ" ], "vanquish": [ "VB" ], "hobbles": [ "VBZ" ], "Ying-shek": [ "NNP" ], "Lorentz": [ "NNP" ], "double": [ "JJ", "VBP", "NN", "RB", "VB" ], "hobbled": [ "VBN" ], "Huron": [ "NNP" ], "Hurok": [ "NNP" ], "Wustman": [ "NNP" ], "throwing": [ "VBG", "NN" ], "plausibly": [ "RB" ], "plausible": [ "JJ", "NN" ], "accelerators": [ "NNS" ], "baldness": [ "NN" ], "auction-house": [ "NN" ], "gravitation": [ "NN" ], "probable": [ "JJ" ], "JEDEC": [ "NN" ], "Brains": [ "NNS" ], "Minato-Mirai": [ "NNP" ], "Wirth": [ "NNP" ], "news-release": [ "NN" ], "Blain": [ "NNP" ], "probably": [ "RB" ], "cautions": [ "VBZ", "NNS" ], "tax-software": [ "NN" ], "Wirtz": [ "NNP" ], "bigots": [ "NNS" ], "Sant": [ "NNP" ], "less-binding": [ "JJ" ], "unserious": [ "JJ" ], "Prandini": [ "NNP" ], "subnational": [ "JJ" ], "civilian-aircraft": [ "NN" ], "Constable": [ "NNP" ], "generous": [ "JJ" ], "Conceding": [ "VBG" ], "Sang": [ "NNP", "VBD" ], "Sand": [ "NNP", "NN" ], "Sane": [ "NNP" ], "Chemfix": [ "NNP" ], "Sann": [ "NNP" ], "pinstripe-suited": [ "JJ" ], "JUDGES": [ "NNS" ], "delimit": [ "VB" ], "Pte.": [ "NNP" ], "fiance": [ "NN" ], "polyrhythms": [ "NNS" ], "Playboy-at-Night": [ "NNP" ], "truck-rental": [ "JJ" ], "vaster": [ "JJR" ], "Keegan": [ "NNP" ], "Wooten": [ "NNP" ], "super-condamine": [ "NN" ], "breakneck": [ "JJ" ], "parakeets": [ "NNS" ], "whatever": [ "WDT", "RB", "WP" ], "steely": [ "JJ" ], "monumentality": [ "NN" ], "homogeneously": [ "RB" ], "Love": [ "NNP", "VBP", "NN", "VB" ], "steels": [ "NNS" ], "mumble": [ "NN" ], "Hanover-Justitia": [ "NNP" ], "horticulture": [ "NN" ], "Shaker": [ "NNP" ], "primetime": [ "NN" ], "Khartoum": [ "NNP" ], "hirelings": [ "NNS" ], "Shaken": [ "VBN", "JJ" ], "collectible": [ "JJ" ], "art-acquisition": [ "JJ" ], "Metronome": [ "NNP" ], "ruble": [ "NN", "FW" ], "investigative-reporting": [ "NN" ], "deter": [ "VB", "VBP" ], "logjam": [ "NN" ], "end-run": [ "NN" ], "Universal-Rundle": [ "NNP" ], "folklore": [ "NN" ], "VaxSyn": [ "NNP" ], "tactual": [ "JJ" ], "Todays": [ "NNP" ], "drugstore": [ "NN" ], "battling": [ "VBG", "NN" ], "animates": [ "VBZ" ], "vagabondage": [ "NN" ], "Cursed": [ "VBN" ], "shop-by-catalog": [ "JJ" ], "fleas": [ "NNS" ], "product-testing": [ "NN" ], "fleet": [ "NN", "JJ" ], "animated": [ "JJ", "VBD", "VBN" ], "debt-restructuring": [ "JJ" ], "flees": [ "VBZ" ], "gala": [ "JJ", "NN" ], "clobbers": [ "VBZ" ], "topof-the-line": [ "JJ" ], "Bauernfeind": [ "NNP" ], "copiers": [ "NNS" ], "bellowed": [ "VBD", "VBN" ], "steel-recycling": [ "JJ" ], "loosened": [ "VBN", "VBD" ], "simian": [ "JJ" ], "Mysteries": [ "NNP", "NNPS" ], "barrier-island": [ "NN" ], "faires": [ "NNS" ], "fairer": [ "JJR" ], "riotous": [ "JJ" ], "Industriel": [ "FW" ], "autopsied": [ "VBN" ], "FAX": [ "NNP" ], "counterclaims": [ "NNS" ], "seismographs": [ "NNS" ], "FAR": [ "RB" ], "Understanding": [ "VBG", "NN" ], "subliminal": [ "JJ" ], "unpromising": [ "JJ" ], "FAI": [ "NNP" ], "FAN": [ "NN" ], "autopsies": [ "NNS" ], "mid-November": [ "NNP", "NN" ], "FAC": [ "NNP" ], "Schimberg": [ "NNP" ], "distrubition": [ "NN" ], "lawyers": [ "NNS" ], "Testaments": [ "NNP" ], "fulfilment": [ "NN" ], "robustly": [ "RB" ], "cleaning": [ "NN", "VBG" ], "ENFIELD": [ "NNP" ], "tiering": [ "NN" ], "bull-market": [ "NN" ], "Payco": [ "NNP" ], "Standardized": [ "JJ" ], "indefinable": [ "JJ" ], "Distances": [ "NNS" ], "comas": [ "NNS" ], "Kurtz": [ "NNP" ], "database": [ "NN" ], "bank-embezzlement": [ "JJ" ], "shoe-horned": [ "VBN" ], "headlining": [ "VBG" ], "Savimbi": [ "NNP" ], "Kurth": [ "NNP" ], "savvy": [ "JJ", "VB", "NN" ], "Interama": [ "NNP" ], "ambassador": [ "NN" ], "abstain": [ "VB", "VBP" ], "Exchequer": [ "NNP", "NN" ], "judgments": [ "NNS" ], "derring": [ "NN" ], "CCT": [ "NNP" ], "game-shows": [ "NNS" ], "Bernard": [ "NNP" ], "CCK": [ "NNP" ], "CCD": [ "NNP" ], "CCC": [ "NNP" ], "Middle-South": [ "NNP", "JJ" ], "cast-iron": [ "NN", "JJ" ], "over-the-counter": [ "JJ", "NN", "RB" ], "fiancee": [ "NN" ], "Gratt": [ "NNP" ], "Proving": [ "NNP" ], "Pimen": [ "NNP" ], "buckboards": [ "NNS" ], "Rafael": [ "NNP" ], "schoolwork": [ "NN" ], "heavy-faced": [ "JJ" ], "Cerinvest": [ "NNP" ], "fabulously": [ "RB" ], "stein": [ "NN" ], "defies": [ "VBZ" ], "Shimson": [ "NNP" ], "Arkoma": [ "NNP" ], "LASHED": [ "VBD" ], "Messrs.": [ "NNPS", "NN", "NNP", "NNS" ], "overthrown": [ "VBN" ], "defied": [ "VBD", "VBN" ], "Cincinnati": [ "NNP", "NNS" ], "outselling": [ "VBG" ], "roughneck": [ "NN" ], "manifest": [ "JJ", "VB", "VBP" ], "Surgical": [ "NNP" ], "R.B.": [ "NNP" ], "Celimene": [ "NNP" ], "ingratiating": [ "JJ" ], "Britain-dominated": [ "JJ" ], "mouth-to-mouth": [ "JJ" ], "G-24": [ "NNP" ], "refracted": [ "VBD" ], "saddled": [ "VBN", "VBD", "JJ" ], "centralize": [ "VB" ], "Little": [ "NNP", "JJ", "RB" ], "economic-development": [ "NN" ], "parade": [ "NN", "VBP" ], "soma": [ "NN" ], "fathers": [ "NNS" ], "some": [ "DT", "NN", "RB" ], "undress": [ "NN" ], "wohaws": [ "NNS" ], "one-way": [ "JJ" ], "saddles": [ "NNS" ], "Boddington": [ "NNP" ], "lifelike": [ "JJ" ], "Momentum": [ "NN" ], "Donors": [ "NNS" ], "Ultracentrifugation": [ "NN" ], "Moscow": [ "NNP" ], "stagger": [ "VB" ], "Moscom": [ "NNP" ], "sophomores": [ "NNS" ], "Bonasorte": [ "NNP" ], "Arriving": [ "VBG" ], "slapstick": [ "NN", "JJ" ], "boy-furiendo": [ "NN" ], "dehydrate": [ "VB" ], "Cygnus": [ "NNP" ], "Schelling": [ "NNP" ], "fibrocalcific": [ "JJ" ], "raspberry": [ "JJ", "NN" ], "neutrophils": [ "NNS" ], "lower-house": [ "NN" ], "react": [ "VB", "VBP" ], "good-humored": [ "JJ" ], "gnome": [ "NN" ], "concretely": [ "RB" ], "tracing": [ "VBG", "JJ", "NN" ], "re-emergence": [ "NN" ], "in-depth": [ "JJ" ], "Dyncorp.": [ "NNP" ], "Sandor": [ "NNP" ], "Committee": [ "NNP", "NN" ], "Committed": [ "VBN" ], "Sandoz": [ "NNP" ], "Trans-illuminated": [ "JJ" ], "Silone": [ "NNP" ], "diisocyanate": [ "NN" ], "wall-switch": [ "NN" ], "Eli": [ "NNP" ], "Elm": [ "NNP" ], "Rascal": [ "NN" ], "encircling": [ "VBG" ], "Turgut": [ "NNP" ], "supra-personal": [ "JJ" ], "Ely": [ "NNP" ], "half-swamped": [ "JJ" ], "Marlboros": [ "NNPS" ], "pentagon": [ "NN" ], "Kamieniec": [ "NNP" ], "revealing": [ "VBG", "JJ" ], "Designs": [ "NNS", "VBZ" ], "statistics": [ "NNS" ], "innate": [ "JJ" ], "pavian": [ "FW" ], "Gathered": [ "VBN" ], "sub-chiefdom": [ "NN" ], "bantering": [ "VBG" ], "bear-like": [ "JJ" ], "Gatherer": [ "NNP" ], "newsworthy": [ "JJ" ], "Needham": [ "NNP" ], "Sutton": [ "NNP" ], "three-member": [ "JJ" ], "Pathet": [ "NNP" ], "approvingly": [ "RB" ], "Peacocks": [ "NNS" ], "frost": [ "NN" ], "Klinico": [ "NNP" ], "reiterated": [ "VBD", "VBN" ], "Microbiological": [ "NNP" ], "get-rich-quick": [ "JJ" ], "women-trodden": [ "JJ" ], "reiterates": [ "VBZ" ], "Tampa.": [ "NNP" ], "Lewiston": [ "NNP" ], "facilites": [ "NNS" ], "duds": [ "NNS" ], "swagger": [ "NN" ], "microorganisms": [ "NNS" ], "restarted": [ "VBN", "VBD" ], "stumbling": [ "VBG", "JJ", "NN" ], "Packards": [ "NNPS" ], "Helena": [ "NNP" ], "cautiously": [ "RB" ], "Helene": [ "NNP" ], "Straub": [ "NNP" ], "Cremonie": [ "NNP" ], "GOLF": [ "NN" ], "GOLD": [ "NN" ], "Personnel": [ "NNP", "NNS", "NNPS" ], "Elrick": [ "NNP" ], "overweighted": [ "VBN" ], "metals": [ "NNS" ], "estrangement": [ "NN" ], "Mahatma": [ "NNP" ], "non-horticultural": [ "JJ" ], "A$": [ "$" ], "objection": [ "NN" ], "deconstructed": [ "JJ" ], "prerogative": [ "NN" ], "Promenade": [ "NNP" ], "federation": [ "NN" ], "contenting": [ "VBG" ], "preflight": [ "NN", "JJ" ], "pronouns": [ "NNS" ], "Oncotech": [ "NNP" ], "indecipherable": [ "JJ" ], "Siebel": [ "NNP" ], "Weapon": [ "NNP" ], "order-matching": [ "NNS" ], "AA": [ "JJ", "NN", "NNP" ], "draw": [ "VB", "VBP", "NN" ], "Lutte": [ "NNP" ], "Reverse": [ "VB", "VBP" ], "Putas": [ "NNP" ], "crouching": [ "VBG" ], "NCTA": [ "NNP" ], "AM": [ "NNP", "VBP", "NN" ], "AL": [ "NNP" ], "AN": [ "DT" ], "william": [ "NN" ], "Ziffren": [ "NNP" ], "drag": [ "NN", "VBP", "VB" ], "AT": [ "IN", "NNP" ], "drab": [ "JJ" ], "dram": [ "NN" ], "henchman": [ "NN" ], "Coronation": [ "NNP" ], "Silvercrest": [ "NNP" ], "structure": [ "NN", "VB" ], "sun-warmed": [ "JJ" ], "Ad": [ "NN", "NNP" ], "Taunton": [ "NNP" ], "Ah": [ "UH", "PRP" ], "outing": [ "NN" ], "Am": [ "NNP", "VBP" ], "Al": [ "NNP" ], "An": [ "DT", "NNP", "CC" ], "pamphlets": [ "NNS" ], "As": [ "IN", "RB" ], "tandem": [ "NN", "JJ" ], "Au": [ "FW", "NNP" ], "genetic-engineering": [ "JJ" ], "Aw": [ "UH", "RB" ], "Av": [ "NNP" ], "Crete": [ "NNP" ], "Ax": [ "NNP" ], "bogging": [ "VBG" ], "Establish": [ "VB" ], "co-author": [ "NN" ], "BRAINTRUSTERS": [ "NNS" ], "Gie": [ "NNP" ], "proposition": [ "NN" ], "newsworthiness": [ "NN" ], "Gin": [ "NNP" ], "Gil": [ "NNP" ], "ammonia": [ "NN" ], "Revision": [ "NNP" ], "hemosiderin": [ "NN" ], "Anti-union": [ "JJ" ], "obedience-trained": [ "JJ" ], "Benchmark": [ "JJ" ], "attackers": [ "NNS" ], "geranium": [ "NN" ], "Garine": [ "NNP" ], "small-town": [ "JJ" ], "wayside": [ "NN" ], "bedrock": [ "NN" ], "moribund": [ "JJ" ], "Kaysersberg": [ "NNP" ], "liberality": [ "NN" ], "drab-haired": [ "JJ" ], "Xavier": [ "NNP" ], "Strieber": [ "NNP" ], "Feeling": [ "VBG" ], "slopped": [ "VBD" ], "Decoma": [ "NNP" ], "Wallachs": [ "NNP" ], "Christiania": [ "NNP" ], "homicidal": [ "JJ" ], "stiff": [ "JJ", "NN", "VB" ], "Brisbane": [ "NNP" ], "gender": [ "NN", "VB" ], "button": [ "NN", "VB" ], "hive": [ "NN" ], "Bizet": [ "NNP" ], "catastrophes": [ "NNS" ], "shish": [ "NN" ], "Scotch-Irish-Scandinavian": [ "NNP" ], "comforts": [ "NNS" ], "drag-down": [ "JJ" ], "pater": [ "NN" ], "Euro-Communist": [ "NNP" ], "Marist": [ "NNP" ], "anti-development": [ "JJ" ], "FOREIGN": [ "JJ", "NNP" ], "naggings": [ "NNS" ], "carted": [ "VBD", "VBN" ], "imbecility": [ "NN" ], "cartel": [ "NN" ], "plays": [ "VBZ", "NNS", "VBP" ], "Celebrating": [ "NNP" ], "ribald": [ "JJ" ], "Bronislaw": [ "NNP" ], "SLOGANS": [ "NNS" ], "Properly": [ "RB" ], "poles": [ "NNS" ], "pristine": [ "JJ" ], "more-mainstream": [ "JJ" ], "Jagt": [ "NNP" ], "Volatility": [ "NN" ], "Tipoff": [ "NNP" ], "Sealtest": [ "NNP" ], "shoreline": [ "NN" ], "filings": [ "NNS" ], "playwriting": [ "NN" ], "ventilates": [ "VBZ" ], "adulterate": [ "VB" ], "then-chairman": [ "NN" ], "Egger": [ "NNP" ], "L.F.": [ "NNP" ], "news-oriented": [ "JJ" ], "Verde": [ "NNP" ], "Psyllium": [ "NN" ], "withdrawing": [ "VBG", "NN" ], "art-world": [ "NN" ], "bookkeeper": [ "NN" ], "non-defense": [ "JJ" ], "maneuverability": [ "NN" ], "Utter": [ "NNP" ], "commendable": [ "JJ" ], "daybreak": [ "NN" ], "stabilization": [ "NN" ], "addresses": [ "NNS", "VBZ" ], "lords": [ "NNS" ], "C&D": [ "NNP" ], "Kurigalzu": [ "NNP" ], "iced-tea": [ "NN" ], "Avantor": [ "NNP" ], "Genius": [ "NN" ], "addressed": [ "VBN", "JJ", "VBD" ], "addressee": [ "NN" ], "drugtrafficking": [ "NN" ], "C&W": [ "NNP" ], "gimmick": [ "NN" ], "News-American": [ "NNP" ], "C&P": [ "NNP" ], "inhumanities": [ "NNS" ], "metaphor": [ "NN" ], "one-point": [ "JJ" ], "recused": [ "VBN" ], "SALARIES": [ "NNS" ], "distinctiveness": [ "NN" ], "experimental-theater": [ "JJ" ], "housing-construction": [ "NN" ], "popped": [ "VBD", "VBN" ], "Disorderly": [ "JJ" ], "dentists": [ "NNS" ], "Junk-Bond": [ "NN" ], "carvings": [ "NNS" ], "testified": [ "VBD", "VBN" ], "Wednesday": [ "NNP" ], "Priorities": [ "NNPS" ], "paraquat": [ "NN" ], "whisks": [ "VBZ" ], "cackly": [ "RB" ], "testifies": [ "VBZ" ], "Sanaa": [ "NNP" ], "Mahwah": [ "NNP" ], "whisky": [ "NN" ], "corpuscular-radiation": [ "NN" ], "Panicked": [ "JJ" ], "inflation\\/deflation": [ "NN" ], "life-contracts": [ "JJ" ], "dipotassium": [ "NN" ], "fiction-writing": [ "NN" ], "Cited": [ "VBN" ], "MARK": [ "NNP" ], "junkless": [ "JJ" ], "retried": [ "VBN" ], "Nevada": [ "NNP" ], "conformity": [ "NN" ], "Cites": [ "VBZ" ], "control": [ "NN", "JJ", "VB", "VBP" ], "wharf": [ "NN" ], "speciality": [ "NN" ], "business-oriented": [ "JJ" ], "Kenya": [ "NNP" ], "rejoining": [ "VBG" ], "thermally": [ "RB" ], "Yost": [ "NNP" ], "dictation": [ "NN" ], "hit": [ "VBD", "JJ", "NN", "VB", "VBN", "VBP" ], "Sesshu": [ "NNP" ], "fearsome": [ "JJ" ], "stemmed": [ "VBD", "VBN" ], "HIS": [ "NNP", "JJ", "PRP$" ], "falls": [ "VBZ", "NNS" ], "Jell-O": [ "NNP" ], "Tidewater": [ "NNP", "NN" ], "HIB": [ "NNP" ], "allrightniks": [ "NNS" ], "FICO": [ "NNP" ], "Rarer": [ "JJR" ], "re-use": [ "VB" ], "immoral": [ "JJ" ], "hafta": [ "VB", "VBP" ], "hypocellularity": [ "NN" ], "Jeyes": [ "NNP" ], "Nationalistic": [ "JJ" ], "Alaskan": [ "JJ", "NNP" ], "aureus": [ "NN" ], "Campania": [ "NNP" ], "canker": [ "NN" ], "afterburners": [ "NNS" ], "Thorpe": [ "NNP" ], "Figures": [ "NNS", "NNPS" ], "Perdue": [ "NNP" ], "determinability": [ "NN" ], "laudanum": [ "NN" ], "Disaster": [ "NN" ], "whistle": [ "NN", "VB", "VBP" ], "Suez-Hungary": [ "NNP" ], "gulps": [ "NNS" ], "cutlery": [ "NN" ], "Marcel": [ "NNP" ], "tendentious": [ "JJ" ], "hid": [ "VBD", "VBN" ], "uni-directional": [ "JJ" ], "Wilson": [ "NNP" ], "soggy": [ "JJ" ], "Phillipe": [ "NNP" ], "mass-distribution": [ "JJ", "NN" ], "Scannell": [ "NNP" ], "Phillips": [ "NNP", "NNS" ], "Holleran": [ "NNP" ], "death-trap": [ "NN" ], "drug-seeking": [ "JJ" ], "cruise": [ "NN", "VBP" ], "tiptoed": [ "VBD", "VBN" ], "EGA": [ "NNP" ], "Developers": [ "NNS", "NNP" ], "WITH": [ "IN" ], "hock": [ "NN", "VB" ], "batmobile": [ "NN" ], "brood": [ "NN", "JJ", "VB" ], "Stanton": [ "NNP" ], "pyramid-shaped": [ "JJ" ], "Exchange": [ "NNP", "NN" ], "masses": [ "NNS" ], "notebooks": [ "NNS" ], "brook": [ "NN" ], "back-offices": [ "NNS" ], "gash": [ "NN" ], "coachwork": [ "NN" ], "paperclip": [ "NN" ], "insulator": [ "NN" ], "pensioners": [ "NNS" ], "Bullets": [ "NNS" ], "judge-made": [ "JJ" ], "massed": [ "VBD", "VBN" ], "demoralize": [ "VB", "VBP" ], "surrounds": [ "VBZ" ], "Dresbachs": [ "NNPS" ], "Cowrtiers": [ "NNS" ], "commitment": [ "NN" ], "maestro": [ "NN" ], "nibs": [ "NNS" ], "front": [ "NN", "JJ", "RB" ], "announcers": [ "NNS" ], "refuel": [ "VB" ], "Guber-Peters": [ "NNP", "NNS", "JJ" ], "impresario": [ "NN" ], "entitling": [ "VBG" ], "Linage": [ "NN" ], "testings": [ "NNS" ], "muff": [ "NN", "VB" ], "Alpharetta": [ "NNP" ], "seniors": [ "NNS" ], "showering": [ "VBG" ], "TRANSPORTATION": [ "NNP" ], "partner-notification": [ "NN" ], "despots": [ "NNS" ], "flunked": [ "VBD", "VBN" ], "Madden": [ "NNP" ], "crest": [ "NN", "VB" ], "local-control": [ "JJ" ], "Floss": [ "NNP" ], "ill-disposed": [ "JJ" ], "corticosteroids": [ "NNS" ], "stimulants": [ "NNS" ], "Decimalists": [ "NNPS" ], "shambled": [ "VBD" ], "swimmers": [ "NNS" ], "Vyquest": [ "NNP" ], "maw": [ "NN" ], "edentulous": [ "JJ" ], "Castile": [ "NNP" ], "Selecting": [ "VBG" ], "may": [ "MD", "NNP" ], "shambles": [ "NN" ], "Fords": [ "NNS", "NNP", "NNPS" ], "depreciating": [ "VBG" ], "peace-loving": [ "JJ" ], "Philistines": [ "NNPS" ], "Housewives": [ "NNS" ], "VisionQuest": [ "NNP" ], "Diron": [ "NNP" ], "Iberia": [ "NNP" ], "JOINS": [ "VBZ" ], "discontinuity": [ "NN" ], "undo": [ "VB" ], "Outrageous": [ "NNP" ], "investment-advisory": [ "NN" ], "care-free": [ "JJ" ], "twenty-five-dollar": [ "JJ" ], "princess": [ "NN" ], "Traxel": [ "NNP" ], "corrosion": [ "NN" ], "lanced": [ "VBN" ], "tailpipe-emission": [ "JJ", "NN" ], "Gilberto": [ "NNP" ], "avenue": [ "NN" ], "chivalry": [ "NN" ], "globulins": [ "NNS" ], "strapping": [ "JJ", "VBG", "NN" ], "Strindberg": [ "NNP" ], "mankind": [ "NN" ], "prospective": [ "JJ" ], "Murjani": [ "NNP" ], "Mor-ee-air-teeeee": [ "NNP" ], "pitied": [ "VBD", "VBN" ], "poignancy": [ "NN" ], "I.S.": [ "NNP" ], "drinker": [ "NN" ], "art": [ "NN", "VBP" ], "quality": [ "NN", "JJ", "JJ|NN" ], "horseman": [ "NN" ], "Thalbergs": [ "NNPS" ], "overestimate": [ "VB" ], "privacy": [ "NN" ], "Burroughs-Wellcome": [ "NNP" ], "journals": [ "NNS" ], "unequivocal": [ "JJ" ], "occupancy": [ "NN" ], "Employers": [ "NNS", "NNP", "NNPS" ], "forgery": [ "NN" ], "non-network": [ "JJ" ], "pro-ALPA": [ "JJ" ], "turbogenerator": [ "NN" ], "certin": [ "NN" ], "thriftiness": [ "NN" ], "man": [ "NN", "JJ", "VB", "UH" ], "net-profits": [ "JJ" ], "fine-tuning": [ "NN", "VBG", "VB" ], "nine-chambered": [ "JJ" ], "punish": [ "VB", "VBP" ], "Pharmacopoeia": [ "NN" ], "close-up": [ "NN" ], "Vt.": [ "NNP" ], "Lacroix": [ "NNP" ], "Leaning": [ "VBG", "NNP" ], "Argive": [ "NNP" ], "morbidity": [ "NN" ], "Sauter\\/Piller\\/Percelay": [ "NNP" ], "extended-wear": [ "JJ" ], "Dormitory": [ "NNP" ], "amide": [ "NN" ], "specimens": [ "NNS" ], "aspiration": [ "NN" ], "shill": [ "NN" ], "Waddell": [ "NNP" ], "protester": [ "NN" ], "function": [ "NN", "VB", "VBP" ], "elections-an": [ "JJ" ], "Tenda": [ "NNP" ], "Richard": [ "NNP", "NNPS" ], "pampas": [ "NNS" ], "small...": [ ":" ], "\\*\\*\\*": [ "SYM" ], "handyman-carpenter": [ "NN" ], "recessed": [ "VBN" ], "Pugo": [ "NNP" ], "Pugh": [ "UH", "NNP" ], "need": [ "NN", "VBP", "MD", "VB" ], "cosmopolitan": [ "JJ" ], "Caves": [ "NNP" ], "assurances": [ "NNS" ], "rotor": [ "NN" ], "microphone": [ "NN" ], "pursued": [ "VBN", "JJ", "VBD" ], "Vowels": [ "NNS" ], "aftermarket": [ "JJ", "NN" ], "purchasing": [ "VBG", "VBG|NN", "JJ", "NN" ], "Shirl": [ "NNP" ], "Rabble-rousing": [ "JJ" ], "Merry": [ "NNP", "JJ" ], "sufficiency": [ "NN" ], "Carboloy": [ "NNP" ], "combat-tested": [ "JJ" ], "Steinhager": [ "NNP" ], "silicates": [ "NNS" ], "pursuer": [ "NN" ], "goddamned": [ "JJ" ], "refocusing": [ "NN", "VBG" ], "Amro": [ "NNP" ], "Builds": [ "VBZ" ], "on-campus": [ "JJ" ], "Amra": [ "NN" ], "isocyanate": [ "NN" ], "parenting": [ "NN" ], "connected": [ "VBN", "JJ", "VBD" ], "Mississippian": [ "NNP" ], "misjudgment": [ "NN" ], "unfrocking": [ "NN" ], "co-chairman": [ "NN" ], "stereo": [ "NN", "JJ" ], "topographic": [ "JJ" ], "scrambles": [ "NNS" ], "radiating": [ "VBG" ], "undeniable": [ "JJ" ], "military-electronics": [ "NNS" ], "upset": [ "VBN", "NN", "VB", "VBD", "VBP", "JJ" ], "Richardson-Merrell": [ "NNP" ], "scrambled": [ "VBD", "JJ", "VBN" ], "construction": [ "NN" ], "officialdom": [ "NN" ], "Kurtwood": [ "NNP" ], "Yujobo": [ "NNP" ], "impression": [ "NN" ], "Sonny": [ "NNP" ], "Ian": [ "NNP" ], "unmethodical": [ "JJ" ], "SERVE": [ "VBP" ], "retouching": [ "NN" ], "Shakespearean": [ "JJ", "NNP" ], "soldiery": [ "NN" ], "well-being": [ "NN", "JJ" ], "C-20": [ "NNP" ], "Stallone": [ "NNP" ], "soldiers": [ "NNS" ], "low-sudsing": [ "JJ" ], "Public": [ "NNP", "JJ", "NN" ], "self-absorbed": [ "JJ" ], "creamed": [ "VBN" ], "CHARIOT": [ "NNP" ], "cavort": [ "VBP", "VB" ], "Underwriters": [ "NNS", "NNPS", "NNP" ], "outflank": [ "VB" ], "Aouelloul": [ "NNP" ], "expensive": [ "JJ", "RB" ], "creamer": [ "NN" ], "thunderous": [ "JJ" ], "Elimination": [ "NN" ], "Specialists": [ "NNS" ], "vice-chairman": [ "NN" ], "thresholds": [ "NNS" ], "post-electoral": [ "JJ" ], "gratify": [ "VB" ], "righteousness": [ "NN" ], "Finney": [ "NNP" ], "improvident": [ "JJ" ], "Packard": [ "NNP" ], "all-student": [ "JJ" ], "Coat": [ "NNP" ], "non-New": [ "JJ" ], "Haber": [ "NNP" ], "manholes": [ "NNS" ], "joint": [ "JJ", "NN" ], "Coan": [ "NNP" ], "legitimate": [ "JJ" ], "joins": [ "VBZ" ], "Rangoon-Bangkok": [ "NNP" ], "sassy": [ "JJ" ], "conservatory": [ "NN" ], "Matthias": [ "NNP" ], "Zimbalist": [ "NNP" ], "conservators": [ "NNS" ], "incubi": [ "NNS" ], "Aramis": [ "NNP" ], "trammel": [ "VB" ], "lyric": [ "JJ", "NN" ], "Cleland": [ "NNP" ], "computed": [ "VBN", "JJ" ], "Wolfes": [ "NNPS" ], "Zinman": [ "NNP" ], "pension-fund": [ "NN", "JJ" ], "three-to-five-page": [ "JJ" ], "Mysterious": [ "JJ", "NNP" ], "Marunouchi": [ "NNP" ], "health-expenditure": [ "JJ" ], "tabacs": [ "NNS" ], "Western-Mobile": [ "NNP" ], "catecholamines": [ "NNS" ], "French-language": [ "JJ" ], "Ticonderoga": [ "NNP" ], "Saitoti": [ "NNP" ], "realign": [ "VB" ], "Harvard": [ "NNP", "NN" ], "masking": [ "VBG", "NN" ], "malocclusion": [ "NN" ], "juggle": [ "VB" ], "SWIFT": [ "NNP" ], "Transgenic": [ "NNP" ], "castoff": [ "JJ" ], "importance": [ "NN" ], "Mitsu": [ "NNP" ], "simple-minded": [ "JJ" ], "Manganese": [ "NNP" ], "efficiency": [ "NN" ], "Thereafter": [ "RB" ], "Land-O-Sun": [ "NNP" ], "Kennel": [ "NNP" ], "eulogize": [ "VB" ], "paraphrasing": [ "VBG" ], "American-China": [ "NNP" ], "histrionics": [ "NNS" ], "BEEN": [ "VBN" ], "middles": [ "NNS" ], "BEER": [ "NN" ], "a.m.": [ "NN", "FW", "RB" ], "publicized": [ "VBN", "JJ" ], "undermined": [ "VBN", "VBD", "JJ" ], "misquotation": [ "NN" ], "bearing": [ "VBG", "JJ", "NN" ], "Matthew": [ "NNP", "NN" ], "Leeward": [ "NNP" ], "preparedness": [ "NN" ], "maximize": [ "VB", "VBP" ], "MAKERS": [ "NNS" ], "Goodson": [ "NNP" ], "poem": [ "NN" ], "non-Tagalog": [ "JJ" ], "industrials": [ "NNS", "VBZ" ], "Malesherbes": [ "NNP" ], "Mired": [ "NNP" ], "Nourbakhsh": [ "NNP" ], "Rockfork": [ "NNP" ], "Develops": [ "NNPS" ], "Ursuline": [ "NNP" ], "offshore-rig": [ "NN" ], "poet": [ "NN" ], "Schmidl-Seeberg": [ "NNP" ], "Pre-refunded": [ "JJ" ], "diversity": [ "NN" ], "Invercalt": [ "NNP" ], "listing": [ "NN", "VBG" ], "subspace": [ "NN" ], "c": [ "NN", "LS", "NNP", "NNS" ], "Livingston": [ "NNP" ], "A12": [ "NN" ], "Pasztor": [ "NNP" ], "corks": [ "NNS" ], "Aviacion": [ "NNP" ], "infestation": [ "NN" ], "Masonry": [ "NNP" ], "shameless": [ "JJ" ], "Cartons": [ "NNS" ], "riddles": [ "NNS" ], "undermines": [ "VBZ" ], "bumper-to-bumper": [ "JJ" ], "harder": [ "JJR", "RBR", "JJ", "RB" ], "three-fold": [ "JJ" ], "much-thumbed": [ "JJ" ], "harden": [ "VB" ], "negotiations...": [ ":" ], "Resrve": [ "NNP" ], "Second-highest": [ "JJ" ], "Yom": [ "NNP" ], "Stickler": [ "NN" ], "Granted": [ "VBN" ], "Shanghai": [ "NNP" ], "management...": [ ":" ], "law-breaking": [ "JJ", "NN" ], "Rottosei": [ "NNP" ], "You": [ "PRP", "NN", "NNP" ], "Ringenbach": [ "NNP" ], "Upping": [ "VBG" ], "Hackettstown": [ "NNP" ], "Viking": [ "NNP" ], "Freund": [ "NNP" ], "hard-cover": [ "NN" ], "midpriced": [ "JJ" ], "riddled": [ "VBN", "JJ" ], "Palacio": [ "NNP" ], "embodiments": [ "NNS" ], "Ironside": [ "NNP" ], "EDMOV": [ "NN" ], "KARL": [ "NNP" ], "schematic": [ "JJ" ], "habitats": [ "NNS" ], "prophesies": [ "VBZ" ], "Raymont": [ "NNP" ], "classification-angle": [ "JJ" ], "fireman": [ "NN" ], "prodigiously": [ "RB" ], "forgings": [ "NNS" ], "market-share": [ "JJ", "NN" ], "sagged": [ "VBD", "VBN" ], "super-high": [ "JJ" ], "prophesied": [ "VBD", "VBN" ], "pipedreams": [ "NNS" ], "homecomings": [ "NNS" ], "scourges": [ "NNS" ], "Mitchell": [ "NNP" ], "Kimco": [ "NNP" ], "compendium": [ "NN" ], "Alabama-Coushatta": [ "JJ" ], "obstacles": [ "NNS" ], "Idea": [ "FW", "NN" ], "position...": [ ":" ], "Idec": [ "NNP" ], "Idex": [ "NNP" ], "Entering": [ "NNP" ], "prodded": [ "VBN", "VBD" ], "Tullio": [ "NNP" ], "glowed": [ "VBD" ], "Saucer": [ "NNP" ], "GSP": [ "NNP" ], "Normandy": [ "NNP" ], "evenhanded": [ "JJ" ], "GSX": [ "NNP" ], "Sargent": [ "NNP" ], "GSA": [ "NNP" ], "sources": [ "NNS" ], "GSI": [ "NNP" ], "Bloomington": [ "NNP" ], "skill": [ "NN" ], "coordination": [ "NN" ], "clashing": [ "VBG" ], "lures": [ "VBZ", "NNS" ], "brothels": [ "NNS" ], "eclairs": [ "NNS" ], "apple-industry": [ "NN" ], "barefooted": [ "JJ" ], "Chlorothiazide": [ "NN" ], "lured": [ "VBN", "VBD" ], "curdling": [ "VBG" ], "impassable": [ "JJ" ], "pooh-poohed": [ "VB" ], "Dobi": [ "NNP" ], "crushed": [ "VBN", "JJ", "VBD" ], "breach-of-contract": [ "JJ" ], "conquete": [ "FW" ], "tarnish": [ "VB" ], "contingents": [ "NNS" ], "Doordarshan": [ "NNP" ], "progandist": [ "NN" ], "Milling-Stanley": [ "NNP" ], "HUSBANDS": [ "NNS" ], "Poupin": [ "NNP" ], "doorways": [ "NNS" ], "Smetek": [ "NNP" ], "chain-smoking": [ "NN", "VBG" ], "Alcinous": [ "JJ" ], "taping": [ "NN", "VBG" ], "Cheung": [ "NNP" ], "underestimation": [ "NN" ], "memory-chip": [ "NN" ], "Beckett": [ "NNP" ], "Gouvernement": [ "NNP" ], "warmed": [ "VBD", "VBN" ], "carreer": [ "NN" ], "Thatcherite": [ "JJ" ], "warmer": [ "JJR", "RBR" ], "archenemy": [ "NN" ], "Transcendental": [ "JJ" ], "CHAMBERS": [ "NNP" ], "Horrigan": [ "NNP" ], "Clever": [ "JJ", "NNP" ], "Roseland": [ "NNP" ], "solicits": [ "VBZ" ], "boggled": [ "VBD" ], "Attending": [ "VBG" ], "rewarding": [ "JJ", "VBG" ], "coloratura": [ "NN" ], "Connie": [ "NNP" ], "allegory": [ "NN" ], "weighs": [ "VBZ" ], "filers": [ "NNS" ], "intersections": [ "NNS" ], "test-marketing": [ "VBG", "JJ", "NN" ], "A.L.A.M.": [ "NNP" ], "Maitres": [ "NNP" ], "questioners": [ "NNS" ], "Zipser": [ "NNP" ], "shrilled": [ "VBD" ], "Rochdale": [ "NNP" ], "narrowness": [ "NN" ], "sugar-growing": [ "JJ", "NN" ], "offset": [ "VB", "JJ", "VBD", "VBN", "VBP" ], "instinct": [ "NN" ], "Seminary": [ "NNP", "NN" ], "multiversity": [ "NN" ], "shakily": [ "RB" ], "Microsoft": [ "NNP" ], "Characterizing": [ "VBG" ], "enhancements": [ "NNS" ], "Junk-bond": [ "JJ", "NN" ], "Johnny": [ "NNP" ], "light-transmitting": [ "JJ" ], "cleans": [ "VBZ" ], "Longevity": [ "NN" ], "rodeo": [ "NN" ], "early-retirement": [ "NN", "JJ" ], "jawboning": [ "NN" ], "persuaded": [ "VBN", "VBD" ], "overlook": [ "VB", "VBP" ], "Waslic": [ "NNP" ], "IDS": [ "NNP" ], "legitimizes": [ "VBZ" ], "drug-funding": [ "NN" ], "artists": [ "NNS" ], "legitimized": [ "VBN" ], "IDD": [ "NNP" ], "Industrikredit": [ "NNP" ], "IDB": [ "NNP" ], "late-comers": [ "NNS" ], "doubtless": [ "RB" ], "second-guess": [ "VB", "JJ" ], "tidied": [ "VBD" ], "mufflers": [ "NNS" ], "Assistant": [ "NNP", "NN" ], "recruiter": [ "NN" ], "IDs": [ "NNS" ], "Kansas-Nebraska": [ "NNP" ], "compartments": [ "NNS" ], "business-partners": [ "NNS" ], "recruited": [ "VBN", "VBD" ], "Sakata": [ "NNP" ], "Picassos": [ "NNPS" ], "Boisbriant": [ "NNP" ], "gluten": [ "NN" ], "Ekco": [ "NNP" ], "inroad": [ "NN" ], "hazardous": [ "JJ" ], "Trucking": [ "NNP", "NN" ], "Recession": [ "NN" ], "Bosphorus": [ "NNP" ], "tapers": [ "VBZ", "NNS" ], "Maslyukov": [ "NNP" ], "green-tinted": [ "JJ" ], "trade-liberalizing": [ "JJ" ], "Examiner": [ "NNP" ], "Veba": [ "NNP" ], "one-in-four": [ "JJ" ], "converter": [ "NN" ], "head-and-shoulders": [ "NN" ], "air-launched": [ "JJ" ], "businesspeople": [ "NN" ], "signed": [ "VBD", "JJ", "VBN" ], "Fitzroy": [ "NNP" ], "converted": [ "VBN", "JJ", "VBD" ], "leathers": [ "NNS" ], "pumped": [ "VBN", "VBD" ], "signer": [ "NN" ], "U.S.-Mexico": [ "JJ", "NNP" ], "piece": [ "NN", "FW", "VB" ], "leathery": [ "JJ" ], "chip": [ "NN" ], "Chestnuts": [ "NNS" ], "Birinyi": [ "NNP" ], "enquetes": [ "FW" ], "kanji": [ "FW" ], "Seacomb": [ "NNP" ], "full-year": [ "JJ" ], "NEWS": [ "NN", "NNP", "NNS" ], "media-conscious": [ "JJ" ], "Defining": [ "VBG" ], "second-highest": [ "JJ", "JJS" ], "NEWT": [ "NN" ], "Measuring": [ "VBG", "NN" ], "cavalry": [ "NN" ], "contest": [ "NN", "VB" ], "NLRDA": [ "NNP" ], "free-agent": [ "NN" ], "offensive": [ "JJ", "NN" ], "chocks": [ "NNS" ], "Gilels": [ "NNP" ], "athletically": [ "RB" ], "Boron": [ "NNP" ], "suspiciously": [ "RB" ], "Parapsychology": [ "NNP" ], "hp.": [ "NN" ], "fodder": [ "NN" ], "Infertility": [ "NNP" ], "Suarez": [ "NNP" ], "Schindler": [ "NNP" ], "Tracinda": [ "NNP" ], "Dingman": [ "NNP" ], "changes...": [ ":" ], "animosity": [ "NN" ], "cut-off": [ "JJ" ], "non-European": [ "JJ" ], "Melville": [ "NNP" ], "paraxial": [ "JJ" ], "portion": [ "NN" ], "Yearbook": [ "NNP" ], "flightiness": [ "NN" ], "Pauletta": [ "NNP" ], "Vitamins": [ "NNS" ], "similarity": [ "NN" ], "Bordel": [ "NNP" ], "Burnet": [ "NNP" ], "Burnes": [ "NNP" ], "Oshry": [ "NNP" ], "obstruction": [ "NN" ], "Otaiba": [ "NNP" ], "post-minimalist": [ "JJ" ], "bright-looking": [ "JJ" ], "rampart": [ "NN" ], "apparatchiks": [ "FW" ], "Burned": [ "VBN" ], "characterless": [ "JJ" ], "AirMalta": [ "NNP", "NN" ], "expatriates": [ "NNS" ], "lower-rated": [ "JJ" ], "segments": [ "NNS" ], "blacking": [ "NN" ], "unroll": [ "VBP" ], "extenuate": [ "VB" ], "ad-rate": [ "NN" ], "teaching": [ "NN", "NN|VBG", "VBG" ], "blitzkrieg": [ "NN" ], "updated": [ "VBN", "JJ" ], "Toms": [ "NNP" ], "misunderstanding": [ "NN" ], "Brea": [ "NNP" ], "country-club": [ "NN" ], "updates": [ "NNS", "VBZ" ], "betters": [ "NNS" ], "Tenure": [ "NN" ], "overcomes": [ "VBZ" ], "higher-income": [ "JJ" ], "accentual": [ "JJ" ], "soulfully": [ "RB" ], "skills": [ "NNS" ], "decorators": [ "NNS" ], "MIG-1": [ "JJ" ], "yellow-brown": [ "JJ" ], "commons": [ "NN" ], "pardons": [ "NNS" ], "Matisses": [ "NNPS" ], "hard-charging": [ "JJ", "NNP", "NN" ], "franchisees": [ "NNS" ], "Taps": [ "VBZ" ], "Honan": [ "NNP" ], "force": [ "NN", "FW", "VB", "NNP", "VBP" ], "Waco": [ "NNP" ], "pleura": [ "NNS", "NN" ], "Demon": [ "NNP", "NN" ], "semi-processed": [ "JJ" ], "Version": [ "NNP" ], "Tape": [ "NN", "NNP" ], "MBOs": [ "NNPS" ], "Lamar": [ "NNP" ], "self-determination": [ "NN" ], "prisons": [ "NNS" ], "wrinkle-fighting": [ "JJ" ], "Merkel": [ "NNP" ], "Moscow-Shannon": [ "JJ" ], "palm-tree": [ "NN" ], "lights": [ "NNS", "VBZ" ], "yellow-bellied": [ "JJ" ], "sunder": [ "VB" ], "Caribe": [ "NNP" ], "Chyron": [ "NNP" ], "tips": [ "NNS", "VBZ" ], "Gregorio": [ "NNP" ], "deemed": [ "VBN", "VBD" ], "barometer": [ "NN" ], "ramrod-stiff": [ "JJ" ], "ten-year": [ "JJ" ], "pancakes": [ "NNS" ], "military-spending": [ "NN" ], "cadres": [ "NNS" ], "inner-city": [ "JJ", "NN" ], "active": [ "JJ", "NN" ], "demandingly": [ "RB" ], "Ziggy": [ "NNP" ], "SWUNG": [ "VBD" ], "POWER": [ "NNP", "NN" ], "tapes": [ "NNS" ], "taper": [ "VB", "NN" ], "large-typeface": [ "NN" ], "taped": [ "VBN", "JJ", "VBD" ], "felonies": [ "NNS" ], "truck-refrigeration": [ "NN" ], "Advancing": [ "VBG" ], "appliance-controls": [ "NN" ], "Continent": [ "NN", "NNP" ], "Bottineau": [ "NNP" ], "eyebrows": [ "NNS" ], "chaperoned": [ "JJ" ], "fragrances": [ "NNS" ], "Tiger-turned-Federal": [ "JJ" ], "COLLATERAL": [ "NN" ], "silk-stocking": [ "JJ" ], "Joerg": [ "NNP" ], "moral": [ "JJ", "NN" ], "suburbanites": [ "NNS" ], "bargelike": [ "JJ" ], "value-judgments": [ "NNS" ], "Cattleguard": [ "NNP" ], "receivable": [ "JJ", "NN" ], "ore": [ "NN" ], "Accidental": [ "JJ" ], "army": [ "NN" ], "Alcee": [ "NNP" ], "PACIFIC": [ "NNP" ], "tabulated": [ "VBN", "JJ", "VBD" ], "DIALING": [ "VBG", "NNP" ], "feed-lot": [ "JJ" ], "Greenberg": [ "NNP" ], "peeping": [ "VBG" ], "transversus": [ "NN" ], "decencies": [ "NNS" ], "Spumoni": [ "NNS" ], "Norcross": [ "NNP" ], "Franciso": [ "NNP" ], "pecan": [ "NN" ], "inter-species": [ "JJ" ], "burglaries": [ "NNS" ], "eternally": [ "RB" ], "Crupi": [ "NNP" ], "pacts": [ "NNS" ], "arms-export": [ "JJ" ], "blindfold": [ "NN" ], "flora": [ "NNS", "NN" ], "pivoting": [ "VBG" ], "Breslin": [ "NNP" ], "Tim": [ "NNP" ], "Blinder": [ "NNP" ], "superstructure": [ "NN" ], "Traverso": [ "NNP" ], "bungalow": [ "NN" ], "Ramsperger": [ "NNP" ], "Borough": [ "NNP" ], "mountainsides": [ "NNS" ], "Pre-shaped": [ "JJ" ], "defer": [ "VB" ], "vodka": [ "NN" ], "baseball-watching": [ "JJ" ], "Keebler": [ "NNP" ], "Lil": [ "NNP" ], "Lim": [ "NNP" ], "Lin": [ "NNP" ], "Benedick": [ "NNP" ], "Visher": [ "NNP" ], "Liu": [ "NNP" ], "blistering": [ "VBG", "JJ" ], "Chauncey": [ "NNP" ], "degenerate": [ "JJ", "VB" ], "Tie": [ "VB", "NNP" ], "Neurotron": [ "NNP" ], "cursory": [ "JJ" ], "three-to-five": [ "JJ" ], "mail-room": [ "NN" ], "sideline": [ "NN" ], "Greif": [ "NNP" ], "Josef": [ "NNP" ], "Siegler": [ "NNP" ], "currents": [ "NNS" ], "Hargett": [ "NNP" ], "heat-and-eat": [ "JJ" ], "answer": [ "NN", "VB", "VBP" ], "prohibits": [ "VBZ" ], "personal-income": [ "JJ" ], "crowding": [ "VBG" ], "undergoing": [ "VBG" ], "Stehelin": [ "NNP" ], "Bonne": [ "NNP" ], "word-weary": [ "JJ" ], "Hattie": [ "NNP" ], "trader": [ "NN" ], "hospitalizations": [ "NNS" ], "inactivity": [ "NN" ], "guerilla": [ "NN" ], "toilsome": [ "JJ" ], "tri-motor": [ "NN" ], "manic": [ "JJ" ], "labor-funded": [ "JJ" ], "capitalism": [ "NN" ], "maintain": [ "VB", "VBP" ], "capitalist": [ "JJ", "NN" ], "Festivals": [ "NNS" ], "Blue": [ "NNP", "JJ" ], "Faye": [ "NNP" ], "cession": [ "NN" ], "fetus": [ "NN" ], "imbruing": [ "VBG" ], "cheese": [ "NN" ], "Blum": [ "NNP" ], "CROSS-BRED": [ "VBD" ], "pre-strike": [ "JJ" ], "coco": [ "NN" ], "fiber-producing": [ "JJ" ], "sycophantically": [ "RB" ], "neutered": [ "VBN" ], "ECONOMY": [ "NN" ], "scoring": [ "VBG", "NN" ], "Campeau-unit": [ "JJ" ], "RENAISSANCE": [ "NNP" ], "non-dealer": [ "JJ" ], "better": [ "JJR", "JJR|RBR", "RBR|JJR", "JJ", "RB", "VB", "RBR" ], "differently": [ "RB" ], "accusatory": [ "JJ" ], "Ahoy": [ "NNP" ], "Homart": [ "NNP" ], "inhibitor": [ "NN" ], "overcome": [ "VB", "VBN", "VBP" ], "pleasurable": [ "JJ" ], "regrouped": [ "VBD", "VBN" ], "S&Ls": [ "NNS", "NNP", "NNPS" ], "fixation": [ "NN" ], "weakness": [ "NN" ], "workout": [ "NN" ], "Ditmar": [ "NNP" ], "intimidation": [ "NN" ], "chicken-wire": [ "JJ", "NN" ], "dejeuner": [ "FW" ], "DeConcini": [ "NNP" ], "singularity": [ "NN" ], "ISSUE": [ "NN" ], "Spahr": [ "NNP" ], "mamalian": [ "JJ" ], "unregistered": [ "JJ" ], "AMRO": [ "NNP" ], "grammar": [ "NN" ], "Graeme": [ "NNP" ], "Cairo": [ "NNP", "NN" ], "Agreed": [ "VBD", "VBN" ], "Harkins": [ "NNP" ], "Timna": [ "NNP" ], "placards": [ "NNS" ], "fringes": [ "NNS" ], "Trabold": [ "NNP" ], "went": [ "VBD", "VBN" ], "sulphured": [ "VBN" ], "OUSTED": [ "VBN", "VBD" ], "Agrees": [ "VBZ" ], "successively": [ "RB" ], "suspended": [ "VBN", "JJ", "VBD" ], "Research-and-development": [ "NN" ], "Hulks": [ "NNS" ], "upstaged": [ "VBN", "VBD" ], "subjectivists": [ "NNS" ], "best-gaited": [ "JJ" ], "principles": [ "NNS" ], "relentlessly": [ "RB" ], "downplayed": [ "VBD" ], "hoteliers": [ "NNS" ], "projectiles": [ "NNS" ], "mandated": [ "VBN", "VBD" ], "contend": [ "VBP", "VB" ], "TRS-80": [ "NNP" ], "Lafarge": [ "NNP" ], "Karnsund": [ "NNP" ], "government-funded": [ "JJ" ], "particles": [ "NNS" ], "Rhone": [ "NNP" ], "Snaresbrook": [ "NNP" ], "NLD": [ "NNP" ], "locatin": [ "NN" ], "Ill": [ "NNP", "JJ" ], "NLO": [ "NNP" ], "post-Hugo": [ "JJ" ], "B.B.": [ "NNP" ], "linear": [ "JJ" ], "PENNEY": [ "NNP" ], "Denshi": [ "NNP" ], "aborting": [ "VBG" ], "subtended": [ "JJ" ], "lineal": [ "JJ" ], "warmhearted": [ "JJ" ], "NL.": [ "NNP" ], "five-home-run": [ "JJ" ], "lacerated": [ "VBN" ], "Berthold": [ "NNP" ], "microchips": [ "NNS" ], "Diametric": [ "JJ" ], "signature": [ "NN" ], "swiping": [ "VBG" ], "Kivu": [ "NNP" ], "R/NNP.A.": [ "NN" ], "Kofcoh": [ "NNP" ], "Baldry": [ "NNP" ], "chronologically": [ "RB" ], "knitwear": [ "NN" ], "gas-saving": [ "JJ" ], "pre-Civil": [ "NNP" ], "deplete": [ "VB" ], "Commentary": [ "NNP" ], "myelogenous": [ "JJ" ], "take-it-or-leave": [ "JJ" ], "MIGHT": [ "MD" ], "masterfully": [ "RB" ], "grads": [ "NNS" ], "Ketelsen": [ "NNP" ], "Fortenbaugh": [ "NNP" ], "historian": [ "NN" ], "Levi": [ "NNP" ], "oriented-polypropylene": [ "JJ" ], "bleat": [ "NN", "VBP" ], "witnessing": [ "VBG" ], "clattering": [ "VBG" ], "pier-table": [ "NN" ], "Mariotta": [ "NNP" ], "somewhat": [ "RB" ], "WORLD": [ "NN" ], "Crain": [ "NNP" ], "spoiler": [ "NN" ], "Cybex": [ "NNP" ], "cold-bloodedly": [ "RB" ], "prongs": [ "NNS" ], "Grizzlies": [ "NNS" ], "frog-eating": [ "JJ" ], "mythic": [ "JJ" ], "thousand-legged": [ "JJ" ], "Almost": [ "RB", "NNP", "IN" ], "silly": [ "JJ", "NN", "RB" ], "deserving": [ "JJ", "NN" ], "spoiled": [ "VBN", "JJ", "VBD" ], "Disasters": [ "NNS" ], "usages": [ "NNS" ], "Houlian": [ "NNP" ], "demand...": [ ":" ], "video-viewing": [ "JJ" ], "Dingy-looking": [ "JJ" ], "elevating": [ "VBG" ], "Pickering": [ "NNP" ], "Odeon": [ "NNP" ], "emphasizing": [ "VBG" ], "Mineworkers": [ "NNPS" ], "THROUGHOUT": [ "IN" ], "Government-mandated": [ "JJ" ], "closeted": [ "JJ", "VBD", "VBN" ], "Byronism": [ "NN" ], "GRAINS": [ "NNS", "NNPS" ], "Berardi": [ "NNP" ], "POW": [ "NN", "NNP" ], "private-school": [ "JJ", "NN" ], "POP": [ "NNP", "NN" ], "desist": [ "VB", "VBP" ], "Grossner": [ "NNP" ], "payloads": [ "NNS" ], "panties": [ "NNS" ], "TWO-A-DAY": [ "JJ" ], "one-industry": [ "JJ" ], "Western-Central": [ "JJ" ], "Confederates": [ "NNS" ], "phonograph": [ "NN" ], "Gim-": [ "NNP" ], "Emshwiller": [ "NNP" ], "Vanguard": [ "NNP" ], "Lint": [ "NNP" ], "Alabama": [ "NNP" ], "Zeller": [ "NNP" ], "buts": [ "NNS" ], "Meson": [ "NNP" ], "Crow": [ "NNP" ], "nighttime": [ "JJ", "NN" ], "Meltzer": [ "NNP" ], "Single": [ "NNP" ], "definitely": [ "RB" ], "iodination": [ "NN" ], "Steelmakers": [ "NNS" ], "LSO": [ "NNP" ], "Copenhagen": [ "NNP" ], "Harnick": [ "NNP" ], "mailing": [ "NN", "VBG" ], "urgency": [ "NN" ], "Carew": [ "NNP" ], "oft-quoted": [ "JJ" ], "secondbiggest": [ "JJS" ], "lyrics": [ "NNS" ], "Taussig": [ "NNP" ], "Weill": [ "NNP" ], "Carey": [ "NNP" ], "ballfields": [ "NNS" ], "ending": [ "VBG", "JJ", "NN", "VBN" ], "attempts": [ "NNS", "VBZ" ], "chartered": [ "JJ", "JJ|VBN", "VBD", "VBN" ], "Nite": [ "NNP" ], "Huhmun": [ "NNP" ], "Tamar": [ "NNP" ], "alcohols": [ "NNS" ], "hodge-podge": [ "NN" ], "acquit": [ "VB" ], "Teikoku": [ "NNP" ], "Jackson-Cross": [ "NNP" ], "coefficients": [ "NNS" ], "above-target": [ "JJ" ], "scrubbing": [ "NN", "VBG" ], "Taconic": [ "NNP" ], "exports": [ "NNS", "VBZ" ], "Porsche": [ "NNP" ], "Crumb": [ "NNP" ], "establishes": [ "VBZ" ], "compounded": [ "VBN", "JJ", "VBD" ], "Realist": [ "NNP" ], "retaliating": [ "VBG" ], "Albanian": [ "NNP" ], "perceive": [ "VB", "VBP" ], "Oneida": [ "NNP" ], "Sydney-based": [ "JJ" ], "Heck": [ "NNP" ], "equity-purchase": [ "JJ", "NN" ], "Stober": [ "NNP" ], "Crump": [ "NNP" ], "thoroughbreds": [ "NNS" ], "FARMING": [ "NNP" ], "Realism": [ "NNP" ], "Disaffiliation": [ "NN" ], "Whitey": [ "NNP" ], "McMahon": [ "NNP" ], "cleanups": [ "NNS" ], "sallow": [ "JJ" ], "microscopy": [ "NN" ], "agglutinating": [ "VBG" ], "microscope": [ "NN" ], "softly": [ "RB" ], "Hippodrome": [ "NNP" ], "brotherism": [ "NN" ], "fresh-fruit": [ "JJ", "NN" ], "THYSELF": [ "PRP" ], "flagged": [ "VBD" ], "Al-Chalabi": [ "NNP" ], "Underwater": [ "NNP" ], "Ozal": [ "NNP" ], "District": [ "NNP", "NN" ], "serratus": [ "NN" ], "Neurological": [ "NNP" ], "Christianity": [ "NNP", "NN" ], "vigilant": [ "JJ" ], "Huang-ti": [ "NNP" ], "half-an-hour": [ "NN" ], "notions": [ "NNS" ], "said": [ "VBD", "VBN", "JJ", "VB" ], "shaven": [ "JJ" ], "rightfield": [ "NN" ], "Hideous": [ "NNP" ], "Registered": [ "VBN", "NNP" ], "sail": [ "VB", "VBP", "NN" ], "shaved": [ "VBN", "VBD" ], "reassigned": [ "VBN", "VBD" ], "Ngo": [ "NNP" ], "Negro-appeal": [ "JJ" ], "omeprazole": [ "NN" ], "ex-officio": [ "JJ", "NN" ], "shaves": [ "VBZ" ], "shaver": [ "NN" ], "tolerance": [ "NN" ], "sea-blessed": [ "JJ" ], "credo": [ "NN" ], "unsettlement": [ "NN" ], "HALT": [ "NNP" ], "Asset-Backed": [ "JJ", "NNP" ], "restricting": [ "VBG", "JJ" ], "Tenneco": [ "NNP" ], "split-bamboo": [ "JJ" ], "fifth-biggest": [ "JJ" ], "old-time": [ "JJ" ], "HALE": [ "NNP" ], "orthodontist": [ "NN" ], "ethnography": [ "NN" ], "gentry": [ "NN" ], "Lindbergh": [ "NN" ], "chemicals-industry": [ "NN" ], "Chipping": [ "VBG" ], "solid-fueled": [ "JJ" ], "Brazen": [ "NNP" ], "disinfected": [ "VBN" ], "cartilage": [ "NN" ], "Donating": [ "VBG" ], "power-grid": [ "NN" ], "Worship": [ "NNP" ], "pursuit": [ "NN" ], "archetypical": [ "JJ" ], "Trecker": [ "NNP" ], "repertory": [ "NN" ], "peyote": [ "NN" ], "hardworking": [ "JJ" ], "ACCO": [ "NNP" ], "lowly": [ "JJ", "RB" ], "CHECKOFF": [ "NN", "NNP" ], "fine-chiseled": [ "JJ" ], "line-item": [ "JJ" ], "fur-making": [ "JJ" ], "recut": [ "JJ" ], "Chavez": [ "NNP" ], "targeting": [ "VBG", "VBG|NN", "NN" ], "C.": [ "NNP", "FW", "LS", "NN" ], "recur": [ "VB", "VBP" ], "mythological": [ "JJ" ], "low-sulphur": [ "JJ" ], "C$": [ "$" ], "cash-flow": [ "JJ", "NN" ], "Telemetries": [ "NNPS" ], "Coxon": [ "NNP" ], "C1": [ "NNP" ], "half-educated": [ "JJ" ], "hearer": [ "NN" ], "CO": [ "NNP" ], "prosperous": [ "JJ" ], "boardroom": [ "NN" ], "CB": [ "NNP" ], "inattention": [ "NN" ], "CG": [ "NNP" ], "Ruding": [ "NNP" ], "CD": [ "NNP", "NN", "JJ" ], "tapping": [ "VBG", "NN" ], "CS": [ "NNP" ], "Claims": [ "NNPS", "NNP", "NNS" ], "CP": [ "NNP" ], "CW": [ "NNP" ], "calcified": [ "VBD" ], "half-swimming": [ "JJ" ], "CT": [ "NN", "NNP" ], "distorts": [ "VBZ" ], "Trupin": [ "NNP" ], "Ch": [ "NNP" ], "Co": [ "NNP", "NN" ], "reddish": [ "JJ" ], "wrondgoing": [ "NN" ], "Ca": [ "MD", "NNP", "JJ" ], "economies": [ "NNS" ], "Cy": [ "NNP" ], "itinerary": [ "NN" ], "Agoglia": [ "NNP" ], "Cr": [ "NNP" ], "employees": [ "NNS", "VBZ" ], "Ct": [ "NNP" ], "spawn": [ "VB", "VBP" ], "second-grader": [ "NN" ], "Nae": [ "UH" ], "Nan": [ "NNP" ], "Ideas": [ "NNS" ], "Nam": [ "NNP" ], "Ideal": [ "NNP", "JJ", "NN" ], "aku": [ "FW" ], "Nat": [ "NNP" ], "McAbee": [ "NNP" ], "grown": [ "VBN", "VBD", "JJ" ], "growl": [ "NN" ], "unfamiliarity": [ "NN" ], "tucking": [ "VBG" ], "Connectors": [ "NNP", "NNPS" ], "speculating": [ "VBG" ], "Zimbabwe": [ "NNP" ], "Wattie": [ "NNP" ], "vegetable": [ "NN" ], "Britton": [ "NNP" ], "confronting": [ "VBG" ], "Puccio": [ "NNP" ], "Umschlagplatz": [ "NNP" ], "then-biggest": [ "JJ" ], "waste-to-energy": [ "JJ", "NN" ], "Raytheon": [ "NNP" ], "Morris": [ "NNP" ], "declarative": [ "JJ", "NN" ], "sacraments": [ "NNS" ], "Gasch": [ "NNP" ], "Schoeneman": [ "NNP" ], "overt": [ "JJ" ], "thoughts": [ "NNS" ], "purple-black": [ "JJ" ], "yongst": [ "JJS" ], "Multi-Income": [ "NNP" ], "Fulcrum": [ "NNP" ], "Caning": [ "NNP" ], "drubbing": [ "NN" ], "paradigm": [ "NN" ], "Vandiver": [ "NNP" ], "left": [ "VBN", "JJ", "NN", "RB", "VBD" ], "Offsetting": [ "VBG" ], "just": [ "RB", "JJ", "RP" ], "Fixing": [ "VBG" ], "abstained": [ "VBD" ], "Nutt": [ "NNP" ], "longish": [ "JJ" ], "sequestration": [ "NN" ], "habitues": [ "NNS" ], "alludes": [ "VBZ" ], "propionate": [ "NN" ], "Sedgwick": [ "NNP" ], "trestles": [ "NNS" ], "Lupo": [ "NNP" ], "Yemen": [ "NNP" ], "six-man": [ "JJ" ], "construction-industry": [ "NN" ], "Lupe": [ "NNP" ], "devaluation": [ "NN" ], "jeweler": [ "NN" ], "clampdowns": [ "NNS" ], "wretch": [ "NN" ], "affinity": [ "NN" ], "News": [ "NNP", "NN", "NNS", "NNPS" ], "spasms": [ "NNS" ], "Newt": [ "NNP" ], "Westhampton": [ "NNP" ], "Building": [ "NNP", "VBG", "NN" ], "chives": [ "NNS" ], "Empedocles": [ "NNP" ], "hard-surface": [ "NN", "JJ" ], "relating": [ "VBG" ], "toxin": [ "NN" ], "Carraway": [ "NNP" ], "flatulence": [ "NN" ], "background": [ "NN", "JJ" ], "gastrocnemius": [ "NN" ], "farms": [ "NNS", "VBZ" ], "downtrodden": [ "JJ" ], "afire": [ "RB", "JJ" ], "Bait": [ "NNP" ], "Vogel": [ "NNP" ], "uncivil": [ "JJ" ], "Armour": [ "NNP" ], "Colonsville": [ "NNP" ], "intercollegiate": [ "JJ" ], "notorious": [ "JJ" ], "prepping": [ "VBG" ], "Bain": [ "NNP" ], "repudiate": [ "VB" ], "Beloved": [ "NNP" ], "atrium": [ "NN" ], "Moynihan": [ "NNP" ], "now-evident": [ "JJ" ], "district-court": [ "NN" ], "statistic": [ "NN" ], "amiable": [ "JJ" ], "repelling": [ "VBG" ], "PTL": [ "NNP" ], "Rolaids": [ "NNP" ], "sticker-shock": [ "NN" ], "PTC": [ "NNP" ], "PTA": [ "NNP" ], "Moneyletter": [ "NNP" ], "container-ship": [ "NN" ], "maitre": [ "NNP", "FW" ], "SCRAMBLE": [ "VBP" ], "ironworks": [ "NN" ], "bold": [ "JJ" ], "ballerinas": [ "NNS" ], "statistician": [ "NN" ], "Paramount-MCA": [ "JJ", "NNP" ], "boll": [ "NN" ], "bolo": [ "NN" ], "blue-chips": [ "NNS" ], "animal-human": [ "NN" ], "Slippery": [ "NNP" ], "bolt": [ "NN", "VB" ], "tartan": [ "NN" ], "insanity": [ "NN" ], "Noyes": [ "NNP" ], "Milties": [ "NNP" ], "richly": [ "RB" ], "Lolotte": [ "NNP" ], "Currie": [ "NNP" ], "status.": [ "NN" ], "C.D.s": [ "NNS", "NNPS" ], "rhyming": [ "VBG" ], "lied": [ "VBD" ], "Nike": [ "NNP" ], "Vickie": [ "NNP" ], "lien": [ "NN" ], "commuters": [ "NNS" ], "lies": [ "VBZ", "NNS" ], "mega-stardom": [ "NN" ], "lieu": [ "NN", "FW", "IN" ], "errs": [ "VBZ" ], "Louisianan": [ "NN" ], "Euro-housewife": [ "NN" ], "Arnold-Foster": [ "NNP" ], "Laphroaig": [ "NNP" ], "well-intentioned": [ "JJ" ], "dealer-community": [ "JJ" ], "approximate": [ "JJ", "VBP", "NN", "VB" ], "influencing": [ "VBG" ], "remained": [ "VBD", "VBN" ], "Swearingen": [ "NNP" ], "impassioned": [ "JJ" ], "Chekovian": [ "JJ" ], "multiscreen": [ "JJ" ], "Passengers": [ "NNS", "NNP" ], "battery": [ "NN" ], "secondhand": [ "JJ" ], "ownership...": [ ":" ], "possemen": [ "NNS" ], "Gemayel": [ "NNP" ], "overburden": [ "VB" ], "Jean": [ "NNP" ], "FFr27.68": [ "NN" ], "Melisande": [ "NNP" ], "continuance": [ "NN" ], "Cinerama": [ "NN" ], "Southfield": [ "NNP", "JJ" ], "mega-welfare": [ "JJ" ], "attached": [ "VBN", "JJ", "VBD" ], "Stoneman": [ "NNP" ], "boomerang": [ "NN", "VB" ], "Marxist-dominated": [ "JJ" ], "Aiwa": [ "NNP" ], "Cyanamid": [ "NNP" ], "Three-fourths": [ "NNS" ], "hypertrophied": [ "VBN" ], "covert": [ "JJ" ], "covers": [ "VBZ", "NNS" ], "vacate": [ "VB" ], "epiphysis": [ "NN" ], "purchase-and-lease": [ "JJ" ], "unholy": [ "JJ" ], "vista": [ "NN" ], "Worcestershire": [ "JJ" ], "Description": [ "NNP" ], "Balmer": [ "NNP" ], "interst": [ "NN" ], "Ruffo": [ "NNP" ], "excel": [ "VBP", "VB" ], "ex-Yankee": [ "NN" ], "get-along": [ "JJ" ], "adjourning": [ "NN", "VBG" ], "misinterpreted": [ "VBN", "VBD" ], "Cobbs": [ "NNS" ], "Firm": [ "NN", "JJ", "NNP" ], "fork-lift": [ "NN" ], "sling": [ "NN" ], "Eben": [ "NNP" ], "Ebel": [ "NNP" ], "Eber": [ "NNP" ], "Accounting": [ "NNP", "VBG", "NN" ], "Falwell-like": [ "JJ" ], "unlocking": [ "VBG" ], "Skolovsky": [ "NNP" ], "Gatwick": [ "NNP" ], "militias": [ "NNS" ], "Line-item": [ "JJ" ], "Exabyte": [ "NNP" ], "Departing": [ "VBG" ], "microcosm": [ "NN" ], "daily": [ "JJ", "NN", "RB" ], "Fire": [ "NNP", "NN" ], "premiums": [ "NNS" ], "Invest\\": [ "NNP" ], "Pilevsky": [ "NNP" ], "nonreactivity": [ "NN" ], "pellets": [ "NNS" ], "G.S.": [ "NNP" ], "overdue": [ "JJ" ], "Fibre": [ "NNP" ], "pan-nationalism": [ "NN" ], "Imposition": [ "NN" ], "Shelby": [ "NNP" ], "deputized": [ "VBN" ], "peruse": [ "VB", "VBP" ], "souls": [ "NNS" ], "three-stage": [ "JJ" ], "mile": [ "NN" ], "Scriptural": [ "JJ" ], "mafia": [ "NN" ], "mill": [ "NN" ], "bomber": [ "NN" ], "Linsert": [ "NNP" ], "milk": [ "NN", "VB" ], "microprocessor": [ "NN" ], "Enviro-Gro": [ "NNP" ], "agleam": [ "JJ" ], "Zantac": [ "NNP" ], "single-most-needed": [ "JJ" ], "disgusting": [ "JJ" ], "blood-stained": [ "JJ" ], "Apple-Microsoft": [ "NNP" ], "amaze": [ "VB", "VBP" ], "Boeings": [ "NNPS" ], "unpleasant": [ "JJ" ], "harnessing": [ "VBG" ], "overproduce": [ "VB" ], "J.K.": [ "NNP" ], "misstatements": [ "NNS" ], "encircle": [ "VB" ], "record-keeping": [ "NN", "JJ" ], "inciting": [ "VBG" ], "permissive": [ "JJ" ], "Annamorena": [ "NNP" ], "defense-authorization": [ "NN" ], "nationalize": [ "VB" ], "Sinemet": [ "NNP" ], "acetylene-fueled": [ "JJ" ], "case-by-case": [ "JJ" ], "Trumka": [ "NNP" ], "Rejoins": [ "VBZ" ], "mil.": [ "NN" ], "Recalls": [ "VBZ" ], "pious": [ "JJ" ], "Evian": [ "NNP" ], "governments": [ "NNS" ], "materialize": [ "VB", "VBP" ], "Protocol": [ "NNP" ], "apartheid": [ "NN" ], "economize": [ "VB" ], "involution": [ "NN" ], "Belanger": [ "NNP" ], "semi-major": [ "JJ" ], "shod": [ "JJ" ], "overlaid": [ "VBN" ], "drawings": [ "NNS" ], "system": [ "NN" ], "Faustian": [ "JJ" ], "Epidemiological": [ "JJ", "NNP" ], "fearing": [ "VBG" ], "seasoning": [ "NN" ], "business-automation": [ "NN" ], "hobbyist": [ "NN" ], "Slovakia": [ "NNP" ], "threshed": [ "VBD" ], "outpouring": [ "NN" ], "resurgence": [ "NN" ], "buncha": [ "NN" ], "casks": [ "NNS" ], "dishonored": [ "VBN" ], "Toxicology": [ "NNP" ], "Bartok": [ "NNP" ], "price-skirmishing": [ "JJ" ], "deerskins": [ "NNS" ], "Colquitt": [ "NNP" ], "wage-price": [ "JJ" ], "MYSTERY": [ "NNP" ], "mechanic": [ "NN" ], "Raesz": [ "NNP" ], "bloke": [ "NN" ], "guardian": [ "NN" ], "clerk": [ "NN" ], "unsmilingly": [ "RB" ], "stallion": [ "NN" ], "french": [ "JJ", "NN", "NNS" ], "Eurodebt": [ "NNP" ], "Signed": [ "VBN" ], "brownouts": [ "NNS" ], "enjoinder": [ "NN" ], "Changes": [ "NNS", "NNP", "VBZ" ], "elegantly": [ "RB" ], "trenchermen": [ "NNS" ], "vintner": [ "NN" ], "Harkin": [ "NNP" ], "dual-career": [ "JJ" ], "Hull": [ "NNP" ], "high-tech": [ "JJ", "NN" ], "biopsies": [ "NNS" ], "Baldwin": [ "NNP" ], "non-recourse": [ "JJ" ], "massage": [ "NN", "VB" ], "validate": [ "VB" ], "breathtaking": [ "JJ" ], "spatially": [ "RB" ], "Whee": [ "NNP" ], "one-night": [ "JJ" ], "Admission": [ "NN", "NNP" ], "Villalobos": [ "NNP" ], "When": [ "WRB", "NNP" ], "Stopping": [ "VBG" ], "stiletto": [ "NN" ], "Holabird": [ "NNP" ], "Fountain": [ "NNP" ], "licensing": [ "NN", "VBG", "JJ" ], "ailing": [ "VBG", "JJ" ], "Toyoda": [ "NNP" ], "sported": [ "VBD" ], "Specialist": [ "NNP" ], "Australia": [ "NNP" ], "serpent": [ "NN" ], "weeklong": [ "JJ", "NN" ], "intensively": [ "RB" ], "perk": [ "JJ", "VB" ], "Giselle": [ "NNP" ], "franca": [ "FW" ], "Kleber": [ "NNP" ], "creamy": [ "JJ" ], "Conchita": [ "NNP" ], "pert": [ "JJ" ], "francs": [ "NNS" ], "mushroom-processing": [ "JJ" ], "creams": [ "NNS" ], "checkout": [ "NN" ], "Turtle": [ "NNP", "NN" ], "MicroBilt": [ "NNP" ], "drinkable": [ "JJ" ], "cremate": [ "VB" ], "hurlers": [ "NNS" ], "fine-tuned": [ "JJ" ], "obelisk": [ "NN" ], "beholder": [ "NN" ], "Lusignan": [ "NNP" ], "mouthing": [ "VBG" ], "superhighways": [ "NNS" ], "Dependency": [ "NNP" ], "beholden": [ "JJ" ], "realty": [ "NN" ], "ex-liberals": [ "NNS" ], "Pyramid": [ "NNP", "NN" ], "recites": [ "VBZ" ], "gassy": [ "JJ" ], "armpits": [ "NNS" ], "deformed": [ "JJ", "VBN" ], "bitee": [ "NN" ], "Bath": [ "NNP" ], "quivers": [ "NNS" ], "farmer-type": [ "JJ" ], "armhole": [ "NN" ], "supportable": [ "JJ" ], "Basing": [ "VBG" ], "biter": [ "NN" ], "claim": [ "NN", "VBP", "VB" ], "Voluntary": [ "NNP", "JJ" ], "Jurisprudence": [ "NN" ], "Headline": [ "NNP" ], "photofinishers": [ "NNS" ], "agent": [ "NN" ], "Commenting": [ "VBG" ], "page-composition": [ "NN" ], "Ohio-chartered": [ "JJ" ], "Dilzem": [ "NNP" ], "arsenide": [ "NN" ], "Alger": [ "NNP" ], "recited": [ "VBD" ], "Everhart": [ "NNP" ], "Sa-Duk": [ "NNP" ], "Prometheus": [ "NNP" ], "Whiteman": [ "NNP" ], "marbleized": [ "VBN" ], "mandatory-retirement": [ "JJ" ], "Pye": [ "NNP" ], "employee-owned": [ "JJ" ], "staying": [ "VBG", "JJ", "NN" ], "budget-wise": [ "JJ" ], "accessory": [ "NN", "JJ" ], "Versicherungs": [ "NNP" ], "epileptics": [ "NNS" ], "aisles": [ "NNS" ], "REMICs": [ "NNS" ], "omen": [ "NN" ], "Junsheng": [ "NNP" ], "holdouts": [ "NNS" ], "Ribozymes": [ "NNS" ], "instills": [ "VBZ" ], "switch": [ "NN", "VB", "VBP" ], "downsized": [ "VBN" ], "longhand": [ "JJ", "NN" ], "Commentators": [ "NNS" ], "granary": [ "NN" ], "Masket": [ "NNP" ], "technophiliac": [ "JJ" ], "Fella": [ "UH" ], "frittered": [ "VBN" ], "seizing": [ "VBG" ], "Suburbs": [ "NNP", "NNS" ], "Covington": [ "NNP" ], "Coconuts": [ "NNPS", "NNS" ], "sculpts": [ "VBZ" ], "spinoff": [ "NN", "JJ" ], "irresolute": [ "JJ" ], "Elsewhere": [ "RB", "NNP" ], "process-server": [ "NN" ], "Hokuriku": [ "NNP" ], "Nintendos": [ "NNPS" ], "Psychiatric": [ "NNP" ], "Lugosi": [ "NNP" ], "Snacking": [ "NN" ], "credit-enhancement": [ "NN" ], "Amis": [ "NNP" ], "ours": [ "PRP", "JJ", "PRP$" ], "secondary": [ "JJ" ], "multi-billion-dollar": [ "JJ" ], "re-export": [ "NN" ], "Scenario": [ "NN", "NNP" ], "Manas": [ "NNP" ], "bein": [ "VBG", "FW" ], "drowsing": [ "VBG" ], "sarcastic": [ "JJ" ], "cross-shareholdings": [ "NNS" ], "Mussorgsky": [ "NNP" ], "Retailers": [ "NNS", "NNP" ], "no-muss": [ "JJ" ], "Manac": [ "NNP" ], "Tyson": [ "NNP" ], "developments": [ "NNS" ], "Everything": [ "NN", "NNP" ], "chockfull": [ "JJ" ], "unvisited": [ "VBN" ], "Monteverdi": [ "NNP" ], "Francaises": [ "NNP" ], "discourages": [ "VBZ" ], "post-Black": [ "JJ" ], "Affliction": [ "NNP", "NN" ], "Dowguard": [ "NNP" ], "Event": [ "NN", "NNP" ], "liberating": [ "VBG", "JJ" ], "Zealand": [ "NNP" ], "non-institutionalized": [ "JJ" ], "pre-merger": [ "JJ", "NN" ], "slaughters": [ "VBZ" ], "shack-up": [ "JJ" ], "dainty-legged": [ "JJ" ], "judicial-bypass": [ "JJ" ], "Unitas": [ "NNP" ], "Badder": [ "NNP" ], "electro-optics": [ "NNS" ], "Rieslings": [ "NNPS" ], "McGuigan": [ "NNP" ], "many-fold": [ "RB" ], "self-deceiving": [ "JJ" ], "Strangler": [ "NNP" ], "Riverfront": [ "NNP" ], "RTS": [ "NNP" ], "blubber": [ "NN" ], "dominate": [ "VB", "VBP" ], "stock-fund": [ "JJ", "NN" ], "ethicists": [ "NNS" ], "Yves": [ "NNP" ], "Responding": [ "VBG" ], "Malizia": [ "NNP" ], "bootlegged": [ "VBN" ], "therefores": [ "NNS" ], "Channel-type": [ "NN" ], "mortared": [ "VBN" ], "musing": [ "VBG" ], "home-sharing": [ "NN" ], "bootlegger": [ "NN" ], "forbids": [ "VBZ" ], "Misdemeanors": [ "NNS" ], "Remics": [ "NNS", "NNPS" ], "Walking": [ "VBG" ], "Kimpton": [ "NNP" ], "ministry": [ "NN" ], "standby": [ "JJ", "NN" ], "exhaustingly": [ "RB" ], "Yogi": [ "NNP" ], "trans-political": [ "JJ" ], "Dubinin": [ "NNP" ], "physicals": [ "NNS" ], "Brock": [ "NNP" ], "remuneration": [ "NN" ], "mid-air": [ "NN" ], "oafs": [ "NNS" ], "philosophized": [ "VBD" ], "Helix": [ "NNP" ], "extrovert": [ "NN" ], "Gestapo": [ "NNP" ], "HealthAmerica": [ "NNP" ], "Hefner": [ "NNP" ], "personalities": [ "NNS" ], "Huaqiong": [ "NNP" ], "trisodium": [ "NN" ], "J.P.": [ "NNP" ], "Terra": [ "NNP" ], "inflight": [ "JJ" ], "mare-COOR": [ "NNP" ], "masquers": [ "NNS" ], "amphetamines": [ "NNS" ], "mining": [ "NN", "VBG" ], "Marni": [ "NNP" ], "Talton": [ "NNP" ], "Bioanalytical": [ "NNP" ], "loneliest": [ "JJS" ], "Doak": [ "NNP" ], "sequels": [ "NNS" ], "Trumps": [ "NNPS", "NNP" ], "Santamaria": [ "NNP" ], "Toffenetti": [ "NNP" ], "Martens": [ "NNP" ], "Replacement": [ "NN" ], "relative": [ "JJ", "NN" ], "exclusionary": [ "JJ" ], "Horicon": [ "NNP" ], "WordStar": [ "NNP" ], "Maloney": [ "NNP" ], "bulk-mail": [ "NN" ], "mutilation": [ "NN" ], "CHINA": [ "NNP" ], "scaffoldings": [ "NNS" ], "LISA": [ "NNP" ], "Rampell": [ "NNP" ], "Crashing": [ "VBG" ], "Kuehn": [ "NNP" ], "Tunisian": [ "NNP" ], "Court": [ "NNP", "NN" ], "Wrecking": [ "NN" ], "state-local": [ "JJ" ], "occupies": [ "VBZ" ], "dash": [ "NN", "VB" ], "Respiratory": [ "NNP", "JJ" ], "greet": [ "VB", "VBP" ], "spectacle": [ "NN" ], "Animals": [ "NNS", "NNPS", "NNP" ], "occupied": [ "VBN", "JJ", "VBD" ], "TGS": [ "NNP" ], "clung": [ "VBD", "VBN" ], "stopgap": [ "NN", "JJ" ], "Zambia": [ "NNP" ], "upgrading": [ "VBG", "NN" ], "Clothiers": [ "NNP", "NNPS" ], "Corvus": [ "NNP" ], "attitudinizing": [ "NN" ], "Pilferage": [ "NN" ], "Wish-List": [ "NN" ], "strengtened": [ "VBN" ], "cooing": [ "VBG" ], "theatre": [ "NN", "FW" ], "normal": [ "JJ", "RB" ], "blackest": [ "JJS" ], "McColl": [ "NNP" ], "McColm": [ "NNP" ], "halvah": [ "NN" ], "Tredding": [ "NNP" ], "hardships": [ "NNS" ], "atrocity": [ "NN" ], "Courtney": [ "NNP" ], "especially": [ "RB" ], "hand-picked": [ "JJ", "VBN" ], "three-snake": [ "JJ" ], "Double-Figure": [ "NNP" ], "gimmick-ridden": [ "JJ" ], "Amsterdam": [ "NNP", "NN" ], "withdrawals": [ "NNS" ], "precise": [ "JJ" ], "Germeten": [ "NNP" ], "medalist": [ "NN" ], "redactor": [ "NN" ], "Tese": [ "NNP" ], "Demographie": [ "NNP" ], "Assassination": [ "NNP" ], "moderator": [ "NN" ], "Mazzoni": [ "NNP" ], "habeas-corpus": [ "JJ" ], "therapist": [ "NN" ], "Wondering": [ "VBG" ], "Test": [ "NNP", "NN", "VB" ], "Chamberlain": [ "NNP" ], "K-9": [ "NNP" ], "climber": [ "NN" ], "objector": [ "NN" ], "re-emerged": [ "VBD" ], "committee...": [ ":" ], "soliciting": [ "VBG" ], "Overbuilt": [ "JJ" ], "lauded": [ "VBD", "VBN" ], "Unresolved": [ "JJ" ], "montgolfing": [ "NN" ], "empty-handed": [ "JJ" ], "RISE": [ "NN" ], "reps": [ "NNS" ], "RISC": [ "NNP" ], "milkshakes": [ "NNS" ], "Turn": [ "VB", "NN", "NNP" ], "killers": [ "NNS" ], "Turk": [ "NNP" ], "Turf": [ "NNP" ], "marooned": [ "VBD" ], "astounds": [ "VBZ" ], "conceived...": [ ":" ], "timepiece": [ "NN" ], "Alliance": [ "NNP" ], "order-delivery": [ "JJ" ], "K-H": [ "NNP" ], "Fiala": [ "NNP" ], "subtype": [ "NN" ], "panjandrums": [ "NNS" ], "photographically": [ "RB" ], "Murata": [ "NNP" ], "Educational": [ "NNP", "JJ" ], "declarations": [ "NNS" ], "milling": [ "NN", "VBG" ], "heavier-than-normal": [ "JJ" ], "Hotel": [ "NNP", "NN" ], "Goddess": [ "NNP" ], "workweeks": [ "NNS" ], "cologne": [ "NN" ], "seven-point": [ "JJ" ], "salutation": [ "NN" ], "pebble": [ "NN" ], "sameness": [ "NN" ], "envisioning": [ "VBG" ], "gantlet": [ "NN" ], "chronically": [ "RB" ], "AHEAD": [ "RB" ], "gags": [ "NNS" ], "price-gouging": [ "NN" ], "get-out-the-vote": [ "JJ" ], "LJN": [ "NNP" ], "gage": [ "NN", "VB" ], "calfskin": [ "NN" ], "enumerated": [ "VBN", "JJ" ], "SCIENTISTS": [ "NNS" ], "moaned": [ "VBD" ], "brokenly": [ "RB" ], "whispered": [ "VBD", "VBN", "JJ" ], "Ballinger": [ "NNP" ], "parent": [ "NN", "JJ" ], "Visually": [ "RB" ], "FOOD": [ "NNP", "NN" ], "preferred-dividend": [ "JJ" ], "pained": [ "JJ", "VBD", "VBN" ], "Overnight": [ "RB" ], "Merryman": [ "NNP" ], "countenance": [ "NN", "VB" ], "unanalyzed": [ "JJ" ], "harpsichordist": [ "NN" ], "singers": [ "NNS" ], "wounds": [ "NNS" ], "childbirth": [ "NN" ], "under-performing": [ "JJ" ], "ringleader": [ "NN" ], "Corrective": [ "JJ" ], "lbs.": [ "NNS" ], "Brockway": [ "NNP" ], "trades": [ "NNS", "VBZ" ], "typify": [ "VBP", "VB" ], "dedicate": [ "VB" ], "patrons": [ "NNS" ], "orchestration": [ "NN" ], "traded": [ "VBN", "VBD", "VBN|VBD", "JJ" ], "Kan.-based": [ "JJ" ], "arcaded": [ "JJ" ], "Good-faith": [ "NN" ], "terse": [ "JJ" ], "flim-flam": [ "NN" ], "Fulmar": [ "NNP" ], "Ouray": [ "NNP" ], "maintained": [ "VBN", "VBD" ], "grants": [ "NNS", "VBZ" ], "arcades": [ "NNS" ], "disciplinary": [ "JJ" ], "Poconos": [ "NNPS" ], "unopened": [ "JJ" ], "Sure": [ "RB", "NNP", "NNS", "JJ", "UH" ], "Comission": [ "NNP" ], "undertake": [ "VB" ], "employee-contributed": [ "JJ" ], "Schiele": [ "NNP" ], "Bohrer": [ "NNP" ], "employments": [ "NNS" ], "easement": [ "NN" ], "Expressions": [ "NNS" ], "devilish": [ "JJ" ], "base-rate": [ "JJ" ], "gander": [ "NN" ], "gripped": [ "VBD", "VBN" ], "referrin": [ "VBG" ], "optimality": [ "NN" ], "upper-middle-income": [ "JJ", "NN" ], "fear-filled": [ "JJ" ], "Provato": [ "NNP" ], "wasteful-racist-savagery": [ "NN" ], "Scotch": [ "NNP", "JJ", "NN" ], "stacked": [ "VBN", "VBD" ], "turtles": [ "NNS" ], "outspends": [ "VBZ" ], "Caused": [ "VBN" ], "sobbed": [ "VBD", "VBN" ], "Ruark": [ "NNP" ], "stacker": [ "NN" ], "steel-exporting": [ "JJ" ], "Hessan": [ "NNP" ], "Causes": [ "NNP" ], "Muzzling": [ "JJ" ], "U.S.-Israel-Egyptian": [ "JJ" ], "bathrooms": [ "NNS" ], "tirades": [ "NNS" ], "characteristics": [ "NNS" ], "Honjo": [ "NNP" ], "them": [ "PRP", "DT" ], "reignited": [ "VBD", "VBN" ], "sprained": [ "VBN" ], "cluster": [ "NN", "VBP" ], "defense-equipment": [ "JJ" ], "dangerously": [ "RB" ], "Alasdair": [ "NNP" ], "underweighted": [ "VBN" ], "traffickers": [ "NNS" ], "obnoxious": [ "JJ" ], "everyday": [ "JJ" ], "overshoes": [ "NNS" ], "pap": [ "NN" ], "uneconomic": [ "JJ" ], "par": [ "NN", "FW", "IN", "JJ" ], "pas": [ "FW" ], "pat": [ "JJ", "NN", "VB" ], "paw": [ "NN", "VB" ], "cotton-ginning": [ "JJ" ], "Notre": [ "NNP" ], "steppes": [ "NNS" ], "heirs": [ "NNS" ], "Bucaramanga": [ "NNP" ], "thinning": [ "VBG" ], "pad": [ "NN", "VB" ], "Muskegon": [ "NNP" ], "stepped": [ "VBD", "VBN" ], "Fretting": [ "VBG" ], "pal": [ "NN", "JJ" ], "thee": [ "PRP" ], "pan": [ "NN", "VB" ], "telephone-company": [ "NN" ], "McDermid": [ "NNP" ], "claps": [ "NNS", "VBZ" ], "Commanders": [ "NNPS" ], "seagulls": [ "NNS" ], "sub-headlines": [ "NNS" ], "one-paragraph": [ "JJ" ], "Divestiture": [ "NN" ], "running": [ "VBG", "NN|VBG", "JJ", "NN", "RB" ], "Ill.-based": [ "JJ", "NNP" ], "goal-values": [ "NNS" ], "beer-belly": [ "NN" ], "mortgaged": [ "VBN" ], "haint": [ "VBZ" ], "markup": [ "NN" ], "Knight-Ridder": [ "NNP" ], "twin-jets": [ "NN", "NNS" ], "spoonful": [ "NN" ], "four-page": [ "JJ" ], "gates": [ "NNS", "VBZ" ], "they": [ "PRP" ], "Meyers": [ "NNP" ], "Paramedics": [ "NNS" ], "OVER": [ "IN" ], "SETSW": [ "NN" ], "dehydration": [ "NN" ], "Scopo": [ "NNP" ], "aspect": [ "NN" ], "mutual-assured": [ "JJ" ], "Pershing": [ "NNP", "VBG" ], "Hadrian": [ "NNP" ], "shying": [ "VBG" ], "doctoral": [ "JJ" ], "Inefficient": [ "JJ" ], "Criticality": [ "NN" ], "Symbolizing": [ "VBG" ], "Wolpe": [ "NNP" ], "recopied": [ "VBN" ], "extensive": [ "JJ" ], "Inflation-adjusted": [ "JJ", "VBN" ], "garden-variety": [ "NN" ], "safeguarded": [ "VBN" ], "McCarran": [ "NNP" ], "defected": [ "VBD", "VBN" ], "off-level": [ "JJ" ], "Schicchi": [ "FW", "NNP" ], "Georges": [ "NNP" ], "mos": [ "NNS" ], "mor": [ "JJR" ], "Paxus": [ "NNP", "NN" ], "mop": [ "VB", "NN" ], "mow": [ "VB" ], "mot": [ "FW" ], "moi": [ "FW" ], "mon": [ "FW" ], "mom": [ "NN" ], "Bleacher": [ "NN" ], "intracompany": [ "JJ" ], "underwriting": [ "NN", "VBG" ], "aiming": [ "VBG" ], "disappointed": [ "VBN", "JJ", "VBD" ], "scrounged": [ "VBD" ], "Stabat": [ "NNP" ], "self-observation": [ "NN" ], "gossipy": [ "JJ" ], "Kampen": [ "NNP" ], "gossips": [ "NNS", "VBZ" ], "acidly": [ "RB" ], "English-speakers": [ "NNS" ], "Satisfaction": [ "NN" ], "Thynnes": [ "NNPS" ], "Borax": [ "NNP" ], "miraculous": [ "JJ" ], "laughing": [ "VBG", "JJ", "NN" ], "mulatto": [ "NN" ], "undifferentiated": [ "JJ" ], "interstage": [ "NN" ], "Somalis": [ "NNPS" ], "Texaco": [ "NNP" ], "payroll-reduction": [ "NN" ], "Somalia": [ "NNP", "NN" ], "Convict": [ "NNP" ], "organizing": [ "VBG", "NN" ], "Bubba": [ "NNP" ], "jobs-tears": [ "NNS" ], "Stearns": [ "NNP", "NNPS" ], "Receave": [ "VBP" ], "relished": [ "VBD" ], "Geer": [ "NNP" ], "listener-supported": [ "JJ" ], "fluids": [ "NNS" ], "Kissak": [ "NNP" ], "Bridgeview": [ "NNP" ], "expressing": [ "VBG" ], "larger-capitalization": [ "JJ" ], "Sonora": [ "NN", "NNP" ], "oil-transport": [ "JJ" ], "dimensionally": [ "RB" ], "Ferber": [ "NNP" ], "Seattle-First": [ "NNP" ], "manufactured": [ "VBN", "VBD", "JJ" ], "notable": [ "JJ" ], "vinyl-laminated": [ "JJ" ], "notably": [ "RB" ], "plastisols": [ "NNS" ], "Klondike": [ "NNP" ], "Berkley": [ "NNP" ], "pinnings": [ "NNS" ], "manufacturer": [ "NN" ], "preoccupied": [ "VBN", "JJ" ], "unissued": [ "JJ" ], "contagion": [ "NN" ], "roar": [ "NN", "VB" ], "classifies": [ "VBZ" ], "Kumagai": [ "NNP" ], "unclassified": [ "JJ" ], "preoccupies": [ "VBZ" ], "Commissioners": [ "NNPS", "NNP", "NNS" ], "solidify": [ "VB", "VBP" ], "roam": [ "VB", "VBP" ], "sadistic": [ "JJ" ], "wittiness": [ "NN" ], "Underhill": [ "NNP" ], "nonessential": [ "JJ" ], "road": [ "NN" ], "detente": [ "NN" ], "Hooghli": [ "NNP" ], "quietly": [ "RB" ], "conceptualization": [ "NN" ], "erythropoietin": [ "NN" ], "shoplifting": [ "NN" ], "Hermanovski": [ "NNP" ], "industrial-gases": [ "JJ" ], "amasses": [ "VBZ" ], "Dist.": [ "NN" ], "uptown": [ "NN", "JJ" ], "amassed": [ "VBN", "VBD" ], "Week": [ "NNP", "NN" ], "Islandia": [ "NN" ], "stock-ownership": [ "JJ" ], "downed": [ "VBD", "VBN" ], "styling": [ "NN", "VBG" ], "compliant": [ "JJ" ], "workshop": [ "NN" ], "lions": [ "NNS" ], "Plenty": [ "NN", "NNP", "RB" ], "suject": [ "JJ" ], "decisive": [ "JJ" ], "Weep": [ "VB", "NNP" ], "hysterical": [ "JJ" ], "downer": [ "NN" ], "agricole": [ "FW" ], "granules": [ "NNS" ], "BOAST": [ "VB" ], "gory": [ "JJ" ], "improvising": [ "NN" ], "Bashers": [ "NNP" ], "tripod": [ "NN" ], "four-stock": [ "JJ" ], "quarter-million-dollar": [ "JJ" ], "gore": [ "VB" ], "Chartwell": [ "NNP" ], "DeSio": [ "NNP" ], "porches": [ "NNS" ], "Trailer": [ "NNP" ], "offering-price": [ "JJ" ], "flamboyant": [ "JJ" ], "v.B.": [ "NNP" ], "proceeds": [ "NNS", "VBZ" ], "Kajar": [ "NNP" ], "grudging": [ "JJ" ], "midsized-car": [ "JJ", "NN" ], "Cirino": [ "NNP" ], "CRRES": [ "NNP" ], "minimum-capital": [ "JJ" ], "emissions": [ "NNS" ], "Thistle": [ "NNP" ], "subskill": [ "NN" ], "half-expressed": [ "JJ" ], "affection": [ "NN" ], "celestial": [ "JJ" ], "Farmers": [ "NNP", "NNS", "NNPS" ], "cabled": [ "VBD" ], "Stanza": [ "NNP" ], "fellow": [ "NN", "JJ" ], "Percussive": [ "NNP" ], "allocating": [ "VBG", "NN" ], "Moto": [ "NNP" ], "less-than-expected": [ "JJ" ], "flock": [ "NN", "VB", "VBP" ], "fee-producing": [ "JJ", "NN" ], "WHEN": [ "WRB" ], "job-seekers": [ "NNS" ], "KLUC": [ "NNP" ], "Najarian": [ "NNP" ], "cleanup": [ "NN" ], "steel-import": [ "JJ" ], "outfield": [ "NN" ], "unturned": [ "JJ" ], "profet": [ "NN" ], "textile-exporting": [ "JJ" ], "PERKS": [ "NNS" ], "princesse": [ "JJ", "NN" ], "financial-aid": [ "NN" ], "dunked": [ "VBD" ], "Cheez": [ "NNP" ], "prudent": [ "JJ" ], "resource-intensive": [ "JJ" ], "low-growth": [ "JJ" ], "Baeyenses": [ "NNP" ], "demonstratively": [ "RB" ], "consternation": [ "NN" ], "casts": [ "VBZ", "NNS" ], "forts": [ "NNS" ], "Rica": [ "NNP" ], "Yeah": [ "UH", "NNP", "RB" ], "ingestion": [ "NN" ], "Year": [ "NN", "NNP" ], "craftsmen": [ "NNS" ], "corporeal": [ "JJ" ], "Klinsky": [ "NNP" ], "caste": [ "NN" ], "forges": [ "VBZ" ], "forger": [ "NN" ], "forget": [ "VB", "VBP" ], "Moog": [ "NNP" ], "disassembled": [ "VBD" ], "Moon": [ "NNP", "NN" ], "SIA": [ "NNP" ], "goofy": [ "JJ" ], "Amenities": [ "NNS" ], "forged": [ "VBN", "JJ", "VBD" ], "nonreactors": [ "NNS" ], "huggings": [ "NNS" ], "M-4": [ "NNP" ], "Gizenga": [ "NNP" ], "Tertre": [ "NNP" ], "servings": [ "NNS" ], "Skipper": [ "NNP" ], "Vernava": [ "NNP" ], "test-coaching": [ "JJ" ], "medical-support": [ "JJ" ], "INRA": [ "NNP" ], "parcel": [ "NN", "VBP", "JJ", "VB" ], "predicament": [ "NN" ], "translations": [ "NNS" ], "varityping": [ "NN" ], "M-K": [ "NNP" ], "Mannheim": [ "NNP" ], "Ware": [ "NNP" ], "celebrity": [ "NN" ], "worded": [ "VBN", "JJ", "VBD" ], "invigorate": [ "VB" ], "Owing": [ "RB" ], "disused": [ "JJ" ], "exemptions": [ "NNS" ], "hoped": [ "VBD", "VBN" ], "neighborhood": [ "NN" ], "short-haul": [ "JJ" ], "Riunitie": [ "NNP" ], "Autumnal": [ "JJ" ], "grand-prize": [ "NN" ], "preordained": [ "VBN" ], "Valuable": [ "NNP", "JJ" ], "Brevetti": [ "NNP" ], "further": [ "JJ", "RB|RBR", "JJR", "RBR", "RB", "VB" ], "Salhany": [ "NNP" ], "adjustment": [ "NN" ], "short-lived": [ "JJ" ], "decoction": [ "NN" ], "overshot": [ "VBD" ], "magnifying": [ "VBG", "NN" ], "face-to-wall": [ "RB" ], "coroner": [ "NN" ], "faded": [ "VBN", "VBD", "JJ" ], "judicious": [ "JJ" ], "House-passed": [ "JJ" ], "tribute": [ "NN" ], "Pagan": [ "NNP" ], "doting": [ "VBG", "JJ" ], "Arena": [ "NNP" ], "entry-level": [ "JJ" ], "Ruthlessness": [ "NN" ], "Gift": [ "NNP", "NN" ], "image-building": [ "JJ" ], "wrangling": [ "VBG", "NN" ], "Sylvester": [ "NNP" ], "puddles": [ "NNS" ], "long-successful": [ "JJ" ], "cylindrical": [ "JJ" ], "one-upsmanship": [ "NN" ], "Nazarene": [ "NNP" ], "minber": [ "NN" ], "Greases": [ "NNS" ], "speeches": [ "NNS" ], "free-world": [ "JJ" ], "leveling": [ "NN", "VBG" ], "Kawecki": [ "NNP" ], "fee-forfeiture": [ "NN" ], "storefront": [ "NN" ], "Grayhound": [ "NNP" ], "chipper": [ "JJ" ], "Radiosterilization": [ "NN" ], "copycats": [ "NNS" ], "chieftain": [ "NN" ], "toxicity": [ "NN" ], "Nyckeln": [ "NNP" ], "Kirov": [ "NNP" ], "fifth-grade": [ "NN" ], "sentence-structure": [ "JJ" ], "wine-buying": [ "JJ" ], "Jameson": [ "NNP" ], "inadvertence": [ "NN" ], "Gough": [ "NNP" ], "Macaroni": [ "NNP" ], "aptitude": [ "NN" ], "rollover": [ "NN" ], "helmsman": [ "NN" ], "non-nonsense": [ "NN" ], "score": [ "NN", "VB", "VBP" ], "nothings": [ "NNS" ], "distinct": [ "JJ" ], "Towne": [ "NNP" ], "dispatching": [ "VBG" ], "Picasso": [ "NNP", "NN" ], "Towns": [ "NNP", "NNS" ], "wood-grain": [ "JJ" ], "Promazine": [ "JJ" ], "staggering": [ "JJ", "VBG" ], "reeked": [ "VBD" ], "Yamata": [ "NNP" ], "particular": [ "JJ", "NN", "RB" ], "Haile": [ "NNP" ], "UAE": [ "NNP" ], "post-Oct": [ "NNP" ], "Tonight": [ "NNP", "NN", "RB" ], "unindicted": [ "JJ" ], "categorizing": [ "VBG" ], "Wood": [ "NNP", "NN" ], "taut": [ "JJ", "RB" ], "appendages": [ "NNS" ], "Trans-Pacific": [ "NNP" ], "flight-control": [ "NN" ], "shark": [ "NN" ], "Tessler": [ "NNP" ], "hamburger": [ "NN" ], "unrevealing": [ "VBG" ], "Kossuth": [ "NNP" ], "stacking": [ "VBG" ], "expeditiously": [ "RB" ], "prods": [ "VBZ", "NNS" ], "share": [ "NN", "VBP", "JJ", "VB" ], "best-financed": [ "JJ" ], "Sable": [ "NNP" ], "sharp": [ "JJ" ], "Valdemar": [ "NNP" ], "siren": [ "JJ", "NN" ], "Paramount": [ "NNP", "NN" ], "sired": [ "VBN" ], "Furlett": [ "NNP" ], "turnpikes": [ "NNS" ], "rye": [ "NN" ], "Outlays": [ "NNS" ], "newsgathering": [ "NN" ], "D*/NNP&B": [ "NN" ], "dramatists": [ "NNS" ], "Liss": [ "NNP" ], "List": [ "NNP", "NN", "VB" ], "Lish": [ "NNP" ], "Petaluma": [ "NNP" ], "uninspired": [ "JJ" ], "Blier": [ "NNP" ], "Lisa": [ "NNP" ], "Ozzie": [ "NNP" ], "hedgehogs": [ "NNS" ], "uncongenial": [ "JJ" ], "orchard": [ "NN" ], "Stevens": [ "NNP" ], "sunshield": [ "NN" ], "bathed": [ "VBN", "VBD" ], "blandness": [ "NN" ], "federal-state-local": [ "JJ" ], "porticoes": [ "NNS" ], "turnpike": [ "NN" ], "morning-frightened": [ "JJ" ], "retrieval": [ "NN" ], "chopped": [ "JJ", "VBD", "VBN" ], "Texan": [ "NNP", "JJ", "NN" ], "Ba2": [ "JJ" ], "Ba3": [ "JJ", "NN" ], "puttered": [ "VBD" ], "eye-deceiving": [ "NN" ], "hyaluronic": [ "JJ" ], "minincomputer": [ "JJR" ], "Warnaco": [ "NNP" ], "deterring": [ "VBG" ], "Roxanne": [ "NNP" ], "Income": [ "NNP", "NN" ], "Cooper": [ "NNP" ], "arrogant": [ "JJ" ], "pro-consumption": [ "NN" ], "Vilgrain": [ "NNP" ], "arteries": [ "NNS" ], "surtout": [ "NN" ], "possessions": [ "NNS" ], "forthwith": [ "RB" ], "Wechsler": [ "NNP" ], "Lanin": [ "NNP" ], "speech": [ "NN" ], "crawls": [ "NNS", "VBZ" ], "triumphantly": [ "RB" ], "lookout": [ "NN" ], "oks": [ "VBZ" ], "good": [ "JJ", "NN", "RB" ], "Bar": [ "NNP", "NN", "VB" ], "Bas": [ "NNP" ], "Interiors": [ "NNS" ], "Baz": [ "NNP" ], "detour": [ "NN" ], "pinafores": [ "NNS" ], "Bay": [ "NNP", "NN" ], "Bag": [ "NN" ], "Bad": [ "JJ", "NNP" ], "DePaul": [ "NNP" ], "nonwhites": [ "NNS" ], "Lautenbach": [ "NNP" ], "declamatory": [ "JJ" ], "Bal": [ "NNP" ], "nine-point": [ "JJ" ], "conspires": [ "VBZ" ], "Bah": [ "UH" ], "easily": [ "RB" ], "three-hundred-foot": [ "JJ" ], "celerity": [ "NN" ], "side-arm": [ "NN" ], "pregnant": [ "JJ" ], "Potter": [ "NNP" ], "FINANCES": [ "NNS" ], "CRASHED": [ "VBD" ], "turbofan": [ "NN" ], "ports": [ "NNS" ], "obtaine": [ "VB" ], "sun-suit": [ "NN" ], "rule-making": [ "JJ", "NN" ], "budget-reduction": [ "JJ" ], "mistreatment": [ "NN" ], "anti-Phnom": [ "NNP" ], "monks": [ "NNS" ], "recreational": [ "JJ" ], "wiggling": [ "VBG" ], "deluged": [ "VBN", "VBD" ], "Mauve-colored": [ "JJ" ], "samovars": [ "NNS" ], "Flat": [ "JJ", "NNP" ], "lovers": [ "NNS" ], "creditor": [ "NN" ], "effete": [ "JJ" ], "Poyne": [ "NNP" ], "trundling": [ "VBG" ], "Mira": [ "NNP" ], "byinge": [ "VBG" ], "Flag": [ "NN" ], "roughnecks": [ "NNS" ], "rankest": [ "JJS" ], "stage-plays": [ "NNS" ], "E5": [ "NNP" ], "three-quarter": [ "JJ" ], "pre-natal": [ "JJ" ], "Erickson": [ "NNP", "NN" ], "bully": [ "NN", "VBP", "VB" ], "EK": [ "NNP" ], "decision-makers": [ "NNS" ], "Junkins": [ "NNP" ], "Lenaghan": [ "NNP" ], "hosted": [ "VBN", "JJ", "VBD" ], "V-2500": [ "NN" ], "recoveries": [ "NNS" ], "wanting": [ "VBG" ], "Windfall": [ "NN" ], "terminals": [ "NNS" ], "EX": [ "NNP" ], "EZ": [ "NNP" ], "ET": [ "NNP" ], "Propaganda": [ "NNP", "NN" ], "ES": [ "NNP" ], "launderers": [ "NNS" ], "Belding": [ "NNP" ], "En": [ "NNP", "IN" ], "Eh": [ "UH", "NNP" ], "Evans": [ "NNP" ], "Gunlocke": [ "NNP" ], "Ed": [ "NNP" ], "W.A.": [ "NNP" ], "Haan": [ "NNP" ], "Bickel": [ "NNP" ], "Fla.": [ "NNP" ], "Hornets": [ "NNPS" ], "Haag": [ "NNP" ], "Contempt": [ "NN" ], "Stengel": [ "NNP" ], "meat-wagon": [ "NN" ], "Prattville": [ "NNP" ], "James-the-Less": [ "NNP" ], "disregarded": [ "VBD", "VBN" ], "Vandervoort": [ "NNP" ], "slithers": [ "VBZ" ], "Melbourne-based": [ "JJ" ], "canneries": [ "NNS" ], "precariously": [ "RB" ], "curtly": [ "RB" ], "Okay": [ "UH", "JJ" ], "Murderous": [ "JJ" ], "divorce": [ "NN", "VB", "VBP" ], "Lapointe": [ "NNP" ], "Airplanes": [ "NNS", "NNP", "NNPS" ], "Incentives": [ "NNS" ], "Sven": [ "NNP" ], "Shangkun": [ "NNP" ], "statement": [ "NN" ], "weave": [ "VB", "NN" ], "VISTA": [ "NNP" ], "muscles": [ "NNS" ], "voyeurism": [ "NN" ], "free-fall": [ "JJ", "NN" ], "muscled": [ "VBD", "VBN" ], "drunkenness": [ "NN" ], "Problem": [ "NNP" ], "tacking": [ "VBG" ], "Lenin": [ "NNP" ], "horizons": [ "NNS" ], "gotten": [ "VBN" ], "cross-pollinated": [ "VBN" ], "Caulfield": [ "NNP" ], "damaging": [ "JJ", "VBG" ], "sole": [ "JJ", "NN" ], "falsification": [ "NN" ], "Coatings": [ "NNP" ], "Boun": [ "NNP" ], "totter": [ "VB" ], "outta": [ "IN" ], "Kuniji": [ "NNP" ], "non-polygynous": [ "JJ" ], "ages": [ "NNS", "VBZ" ], "Washington-Oregon": [ "NNP" ], "roughly": [ "RB" ], "trend-setting": [ "JJ" ], "D/NNP.A.": [ "NN" ], "headings": [ "NNS" ], "manipulating": [ "VBG" ], "meltdown": [ "NN", "JJ" ], "dismember": [ "VB" ], "Gollich": [ "NNP" ], "mountain": [ "NN" ], "folk-tale": [ "NN" ], "Menenendez": [ "NNP" ], "Pausing": [ "VBG" ], "reconciliations": [ "NNS" ], "appellate": [ "JJ", "NN" ], "keypads": [ "NNS" ], "Sider": [ "NNP" ], "Sides": [ "NNP" ], "Teller": [ "NNP", "NN" ], "Ate": [ "VBD" ], "vibration": [ "NN" ], "style-cramper": [ "NN" ], "short-barrel": [ "NN" ], "Tracy-Locke": [ "NNP" ], "soldierly": [ "RB" ], "engagements": [ "NNS" ], "fluctuate": [ "VBP", "VB" ], "Martini": [ "NN", "NNP" ], "Linz": [ "NNP" ], "esterases": [ "NNS" ], "Shlenker": [ "NNP" ], "organist": [ "NN" ], "Jonni": [ "NNP" ], "Poach": [ "VB" ], "consanguinity": [ "NN" ], "a-stoopin": [ "VBG" ], "Sample": [ "NN", "NNP" ], "Anti-recession": [ "NN" ], "Canteloube": [ "NNP" ], "directness": [ "NN" ], "organism": [ "NN" ], "nobility": [ "NN" ], "dodging": [ "VBG" ], "SNIA": [ "NNP" ], "deep-eyed": [ "JJ" ], "Canadian-owned": [ "JJ" ], "FORMERLY": [ "RB" ], "wailing": [ "VBG", "NN" ], "hopper": [ "NN" ], "toxics": [ "NNS" ], "carne": [ "FW" ], "socalled": [ "JJ", "VBN" ], "relation": [ "NN" ], "Hedquist": [ "NNP" ], "perched": [ "VBN", "VBD" ], "hopped": [ "VBD" ], "cellular-telephone": [ "JJ", "NN" ], "multichannel": [ "JJ" ], "giant": [ "NN", "JJ" ], "depended": [ "VBD", "VBN" ], "dividing": [ "VBG", "VBG|NN|JJ" ], "soldier-masters": [ "NNS" ], "Victor-Butler": [ "NNP" ], "center-right": [ "JJ" ], "garment-industry": [ "NN" ], "money": [ "NN" ], "Pooh": [ "NNP" ], "WCVB": [ "NNP" ], "Pool": [ "NNP", "NN" ], "Cyriac": [ "NNP" ], "adjustments": [ "NNS" ], "hand-in-glove": [ "JJ" ], "Omani": [ "JJ" ], "pre-determined": [ "JJ" ], "non-durable": [ "JJ" ], "jailhouse": [ "NN" ], "relocate": [ "VB", "NN", "VBP" ], "elapse": [ "VB" ], "Lind": [ "NNP" ], "Renville": [ "NNP" ], "paydirt": [ "NN" ], "ovata": [ "NN" ], "Bouillaire": [ "NNP" ], "Seimei": [ "NNP" ], "Harmonia": [ "NNP" ], "brooken": [ "VBN" ], "Solder": [ "VB" ], "Assessment": [ "NNP", "NN" ], "crude-oil": [ "NN", "JJ" ], "Tempest": [ "NNP" ], "semiannually": [ "RB" ], "wrongfully": [ "RB" ], "pneumatic": [ "JJ" ], "devils": [ "NNS", "VBZ" ], "oil-bearing": [ "JJ" ], "printout": [ "NN" ], "Sez": [ "NNP" ], "glottal": [ "JJ" ], "Berniece": [ "NNP" ], "surrendered": [ "VBD", "VBN" ], "Bewkes": [ "NNP" ], "IGS": [ "NNP" ], "Firms": [ "NNS", "NNPS", "NNP" ], "noninstitutionalized": [ "JJ" ], "much-awaited": [ "JJ" ], "tunneled": [ "VBD" ], "glorifies": [ "VBZ" ], "See": [ "VB", "UH", "NNP" ], "per-pupil": [ "JJ" ], "Ohbayashi": [ "NNP", "NNS" ], "multiples": [ "NNS" ], "Terry": [ "NNP" ], "feasted": [ "VBN" ], "donate": [ "VB", "VBP" ], "consonants": [ "NNS" ], "financial-industrial": [ "JJ" ], "Azabu": [ "NNP" ], "Weede": [ "NNP" ], "declaratory": [ "JJ" ], "Limiting": [ "VBG" ], "renews": [ "VBZ" ], "Calamity": [ "NNP" ], "tuitions": [ "NNS" ], "quiet-spoken": [ "JJ" ], "lightness": [ "NN" ], "alters": [ "VBZ" ], "cubes": [ "NNS" ], "health-benefits": [ "JJ" ], "peel-off": [ "JJ" ], "annual": [ "JJ", "NN" ], "mistrusted": [ "VBD", "VBN", "JJ" ], "cubed": [ "VBN" ], "spiritless": [ "JJ" ], "fin-syn": [ "JJ" ], "fail-safe": [ "JJ" ], "recyclability": [ "NN" ], "octane": [ "NN" ], "consume": [ "VBP", "VB" ], "Phillipines": [ "NNS" ], "cayenne": [ "NN" ], "Tahse": [ "NNP" ], "unremitting": [ "JJ" ], "jerks": [ "NNS" ], "alumnus": [ "NN" ], "U.S.-European": [ "JJ" ], "volunteered": [ "VBD", "VBN" ], "computer-integrated-manufacturing": [ "JJ" ], "GHKM": [ "NNP" ], "headaches": [ "NNS" ], "Belatedly": [ "RB" ], "Esteli": [ "NNP" ], "Cicognani": [ "NNP" ], "Angelenos": [ "NNP" ], "devouring": [ "VBG" ], "trilogy": [ "NN" ], "non-state": [ "JJ" ], "abortifacient": [ "NN" ], "collaborator": [ "NN" ], "Ripper": [ "NNP" ], "meeting": [ "NN", "VBG" ], "subfigures": [ "NNS" ], "machinery-trading": [ "JJ" ], "MacNeil\\/Lehrer": [ "NNP" ], "acolyte": [ "NN" ], "nihilistic": [ "JJ" ], "fending": [ "VBG" ], "rupture": [ "NN" ], "Studios": [ "NNP", "NNPS", "NNS" ], "Nu-Med": [ "NNP" ], "Logica": [ "NNP" ], "foreshadowed": [ "VBN" ], "warehousing": [ "NN" ], "schmumpered": [ "VBD" ], "soloist": [ "NN" ], "interposing": [ "VBG" ], "Hating": [ "VBG" ], "tape-recorded": [ "VBD", "JJ" ], "Walters": [ "NNP" ], "thrift-related": [ "JJ" ], "adjusts": [ "VBZ" ], "elucidation": [ "NN" ], "pre-packed": [ "JJ" ], "Uhhu": [ "UH" ], "embarks": [ "VBZ" ], "moralistic": [ "JJ" ], "imperialist": [ "NN" ], "drawbacks": [ "NNS" ], "itself": [ "PRP" ], "ruts": [ "NNS" ], "monsoon-shrouded": [ "JJ" ], "parroting": [ "VBG" ], "Inspect": [ "VB" ], "sit-in": [ "NN", "JJ" ], "unregisterd": [ "JJ" ], "Candid": [ "JJ", "NNP" ], "cost-accounting": [ "JJ" ], "Beatitudes": [ "NNPS" ], "Ludmilla": [ "NNP" ], "definitional": [ "JJ" ], "last-named": [ "JJ" ], "Embry": [ "NNP" ], "Ago": [ "RB" ], "yesterday": [ "NN", "RB" ], "Connick": [ "NNP" ], "solicited": [ "VBD", "JJ", "VBN" ], "retrenchment": [ "NN" ], "flurry": [ "NN", "VBP" ], "Nancy": [ "NNP" ], "NAACP": [ "NNP" ], "CUTTY": [ "NNP" ], "Teheran": [ "NNP" ], "Vetere": [ "NNP" ], "finesse": [ "NN" ], "entre": [ "NN" ], "axiomatic": [ "JJ" ], "plinking": [ "JJ" ], "Veteri": [ "NNP" ], "Spitzenburg": [ "NNP" ], "orthopedic": [ "JJ" ], "Farneses": [ "NNPS" ], "entry": [ "NN" ], "Racial": [ "JJ" ], "One-Step": [ "NNP" ], "parametric": [ "JJ" ], "Gruber": [ "NNP" ], "one-year": [ "JJ", "NN" ], "mind": [ "NN", "RB", "VB" ], "lottery": [ "NN" ], "Darrow": [ "NNP" ], "Klux": [ "NNP" ], "patent-infringement": [ "NN" ], "fundamentalists": [ "NNS" ], "LaBerge": [ "NNP" ], "earth-colored": [ "JJ" ], "itty-bitty": [ "JJ" ], "anti-assignment": [ "JJ" ], "Wilmette": [ "NNP" ], "Bibb": [ "NNP" ], "snag": [ "NN", "VB" ], "makers": [ "NNS" ], "snap": [ "VB", "VBP", "JJ", "NN" ], "shoring": [ "VBG" ], "ridiculously": [ "RB" ], "bio": [ "NN", "JJ" ], "confession": [ "NN" ], "Did": [ "VBD" ], "big": [ "JJ", "RB|JJ" ], "bid": [ "NN", "VBD", "VBN", "VBP", "VB" ], "Dig": [ "VB" ], "bib": [ "NN" ], "redeem": [ "VB", "VBP" ], "Ekaterinoslav": [ "NNP" ], "biz": [ "NN" ], "tiremaker": [ "NN" ], "bit": [ "NN", "VBD", "VBN", "JJ", "RB", "VB" ], "Lesko": [ "NNP" ], "Dip": [ "VB" ], "pollinate": [ "VB", "VBP" ], "Kyowa": [ "NNP" ], "blemish": [ "NN" ], "subsidence": [ "NN" ], "run-of-the-mill": [ "JJ" ], "freeze-drying": [ "NN" ], "Gonzaga": [ "NNP" ], "conducive": [ "JJ" ], "Keeeerist": [ "UH" ], "often": [ "RB" ], "Falconer": [ "NNP" ], "passage": [ "NN" ], "pay-as-you-go": [ "JJ" ], "Commercials": [ "NNS" ], "Istituto": [ "NNP" ], "abundantly": [ "RB" ], "extremist": [ "JJ", "NN" ], "Friesen": [ "NNP" ], "Origen": [ "NNP" ], "accelerate": [ "VB", "VBP" ], "Nagle": [ "NNP" ], "Muncie": [ "NNP" ], "Commerciale": [ "NNP" ], "ourselves": [ "PRP" ], "fought-for": [ "JJ" ], "brown-paper": [ "JJ" ], "social-welfare": [ "JJ" ], "scald": [ "VB" ], "scale": [ "NN", "VB" ], "Merritt": [ "NNP" ], "jitterbug": [ "NN" ], "defamation": [ "NN" ], "resonances": [ "NNS" ], "Reitman": [ "NNP" ], "eliminate": [ "VB", "VBP" ], "scalp": [ "NN" ], "Nothing": [ "NN", "NNP" ], "defined-benefit": [ "JJ" ], "seventy-eight": [ "JJ" ], "depressions": [ "NNS" ], "squalls": [ "NNS" ], "Tempesst": [ "NNP" ], "continuing": [ "VBG", "JJ" ], "costumes": [ "NNS" ], "Hisaya": [ "NNP" ], "blockbusters": [ "NNS" ], "alternative-energy": [ "JJ" ], "lounges": [ "NNS", "VBZ" ], "PERFORMANCE": [ "NN" ], "costumed": [ "VBN" ], "carbide": [ "NN" ], "Stendler": [ "NNP" ], "gynecologic": [ "JJ" ], "Pauling": [ "NNP" ], "seriousness": [ "NN" ], "Rebs": [ "NNS", "NNPS" ], "fairgoers": [ "NNS" ], "deductibles": [ "NNS" ], "drama": [ "NN" ], "belting": [ "NN", "VBG" ], "Bueky": [ "NNP" ], "Flyer-Castle": [ "NNP" ], "Stadtisches": [ "NNP" ], "daisies": [ "NNS" ], "Mead": [ "NNP", "NN" ], "Hunters": [ "NNPS", "NNS" ], "auto\\/homeowners": [ "NNS" ], "Literal": [ "JJ" ], "Sanderson": [ "NNP" ], "subversion": [ "NN" ], "Paulus": [ "NNP" ], "proportional": [ "JJ", "NN" ], "Deidre": [ "NNP" ], "downhill": [ "RB", "JJ" ], "Rabkin": [ "NNP" ], "after-duty": [ "JJ" ], "Conrad": [ "NNP" ], "multilayer": [ "JJ" ], "Bong": [ "UH" ], "solar-cell": [ "JJ" ], "Auckland": [ "NNP" ], "Caporale": [ "NNP" ], "misappropriating": [ "VBG" ], "overpower": [ "VB" ], "pronunciation": [ "NN" ], "garbage-disposal": [ "NN", "JJ" ], "handbook": [ "NN" ], "grillwork": [ "NN" ], "Wanted": [ "VBN", "NNP" ], "Pavlova": [ "NNP" ], "Painter": [ "NNP", "NN" ], "Steel": [ "NNP", "NN" ], "Steen": [ "NNP" ], "newsman": [ "NN" ], "PharmaKinetics": [ "NNP" ], "Itagaki": [ "NNP" ], "investment-bank": [ "JJ" ], "tree-lined": [ "JJ" ], "quiescent": [ "JJ" ], "unstimulated": [ "JJ" ], "Alusuisse": [ "NNP" ], "Fla": [ "NNP" ], "migrating": [ "VBG" ], "Steep": [ "NNP" ], "calico": [ "JJ", "NN" ], "Steer": [ "VB" ], "presentments": [ "NNS" ], "Untold": [ "JJ", "NNP" ], "originals": [ "NNS" ], "mavericks": [ "NNS" ], "clips": [ "NNS" ], "tax-sheltered": [ "JJ" ], "Kringle": [ "NNP" ], "information-system": [ "JJ" ], "Dreman": [ "NNP" ], "McCaskey": [ "NNP" ], "mid-sized": [ "JJ" ], "Huo-Shan": [ "NNP" ], "female": [ "JJ", "NN" ], "Overhead": [ "NN", "RB" ], "cabs": [ "NNS" ], "dragging": [ "VBG", "NN" ], "fluency": [ "NN" ], "Ragnar": [ "NNP" ], "Rowland-Molina": [ "NNP" ], "streamlining": [ "VBG", "NN" ], "Barrier": [ "NNP" ], "humanities": [ "NNS" ], "Mormon": [ "NNP" ], "tactlessness": [ "NN" ], "post-earthquake": [ "JJ" ], "sterilize": [ "VB" ], "at-large": [ "JJ" ], "log-rolled": [ "VBD" ], "pesticides": [ "NNS" ], "Rises": [ "NNP", "VBZ" ], "Medal": [ "NNP" ], "Relying": [ "VBG" ], "Rawl": [ "NNP" ], "announcing": [ "VBG" ], "IMELDA": [ "NNP" ], "wood-chip": [ "NN" ], "likeliest": [ "JJS" ], "ORGAN-TRANSPLANT": [ "JJ" ], "flowerpot": [ "NN" ], "Pierpont": [ "NNP" ], "tradeoff": [ "NN" ], "regionals": [ "NNS" ], "Gallon": [ "NNP" ], "Boutwell": [ "NNP" ], "rinse": [ "NN", "VB" ], "provincialism": [ "NN" ], "thirty-sixth": [ "JJ" ], "treaty-negotiating": [ "JJ" ], "crofters": [ "NNS" ], "angriest": [ "JJS" ], "high-rise-project": [ "JJ" ], "pulsing": [ "VBG" ], "Sumatra": [ "NNP" ], "Sentiments": [ "NNS" ], "intricate": [ "JJ" ], "FHA-insured": [ "JJ" ], "fact-finder": [ "NN" ], "breached": [ "VBD", "VBN" ], "Mosnier": [ "NN" ], "mower": [ "NN" ], "intensive": [ "JJ", "NN" ], "Barbee": [ "NNP" ], "CRITICAL": [ "NNP" ], "blaze": [ "NN", "VB", "VBP" ], "quarterly": [ "JJ", "NN", "RB" ], "mowed": [ "VBN" ], "staffing": [ "VBG", "JJ", "NN" ], "brigade": [ "NN" ], "UBS-Phillips": [ "NNP" ], "annoy": [ "VB", "VBP" ], "discount-borrowing": [ "NN" ], "short-sale": [ "JJ" ], "Gar-Dene": [ "NNP" ], "Obedience": [ "NN" ], "Tenite": [ "NNP" ], "right-hander": [ "NN" ], "tire-patching": [ "JJ" ], "Chaplin": [ "NNP" ], "understandings": [ "NNS" ], "gaming-industry": [ "NN" ], "profligacy": [ "NN" ], "uncovering": [ "VBG" ], "Dumping": [ "NN" ], "populist": [ "JJ", "NN" ], "Crumble": [ "NNP" ], "fragmentations": [ "NNS" ], "state-funded": [ "JJ" ], "populism": [ "NN" ], "and...": [ ":" ], "Pride-Starlette": [ "NNP" ], "thruway": [ "NN" ], "Chapter": [ "NN", "NNP" ], "low-profitmargin": [ "NN" ], "other.": [ "NN" ], "grooved": [ "VBN" ], "NTT": [ "NNP" ], "post-bellum": [ "FW" ], "uncomfortable": [ "JJ" ], "replicated": [ "VBN" ], "grooves": [ "NNS" ], "lower-priced": [ "JJ" ], "depression": [ "NN" ], "reconciliation": [ "NN" ], "formats": [ "NNS" ], "transplanted": [ "VBN", "JJ" ], "advertised": [ "VBN", "JJ", "VBD" ], "falcons": [ "NNS" ], "Hammond": [ "NNP" ], "condominium": [ "NN" ], "Hammons": [ "NNP" ], "Barnhardt": [ "NNP" ], "chasers": [ "NNS" ], "material-formal": [ "JJ" ], "mega-lawyer": [ "NN" ], "casualty-insurance": [ "NN", "JJ" ], "Cassius": [ "NNP" ], "sins": [ "NNS" ], "Brandywine": [ "NNP" ], "Norge": [ "NNP" ], "sink": [ "VB", "VBP", "NN" ], "miasma": [ "NN" ], "others": [ "NNS" ], "non-Socialist": [ "JJ" ], "sing": [ "VB", "VBP" ], "sind": [ "FW" ], "sine": [ "FW", "NN" ], "irritating": [ "JJ" ], "widening": [ "VBG", "NN" ], "PIERCE": [ "NNP" ], "employee-benefits": [ "JJ", "NNS" ], "dispensers": [ "NNS" ], "contradiction": [ "NN" ], "ground-truck": [ "NN" ], "triskaidekaphobia": [ "NN" ], "guidance": [ "NN" ], "tat": [ "VB" ], "appended": [ "VBN" ], "J.V": [ "NNP" ], "presidents": [ "NNS" ], "Doberman": [ "NN" ], "diagonalizable": [ "JJ" ], "silkily": [ "RB" ], "grade-A": [ "JJ" ], "J.J": [ "NNP" ], "clockwise": [ "RB" ], "Weber": [ "NNP", "NN" ], "Dale": [ "NNP", "NN" ], "taxiing": [ "VBG" ], "Jackstadt": [ "NNP" ], "clocking": [ "NN" ], "glasnost": [ "FW", "NN" ], "breakup": [ "NN" ], "Brisk": [ "JJ" ], "determining": [ "VBG", "JJ", "NN" ], "Dali": [ "NNP" ], "Daly": [ "NNP" ], "matinee": [ "JJ" ], "impotence": [ "NN" ], "Laser": [ "NNP" ], "airlifted": [ "VBN" ], "Credit-card": [ "NN" ], "billet": [ "NN" ], "S&P": [ "NNP", "NN" ], "emigration": [ "NN" ], "S&L": [ "NNP", "NN" ], "Flanders": [ "NNP" ], "hailstorm": [ "NN" ], "Lieppe": [ "NNP" ], "strategic-planning": [ "JJ" ], "high-inflation": [ "JJ" ], "debtors": [ "NNS" ], "Tharp": [ "NNP" ], "Reward": [ "VB" ], "DFC": [ "NNP" ], "Weems": [ "NNP" ], "Marketplace": [ "NNP" ], "inclinations": [ "NNS" ], "MacLellan": [ "NNP" ], "tunnel": [ "NN", "VBP" ], "thiocyanate-perchlorate-fluoro": [ "NN" ], "exhilaration": [ "NN" ], "crickets": [ "NNS" ], "parquet": [ "NN" ], "industrial": [ "JJ" ], "Chadbourne": [ "NNP" ], "unpacking": [ "VBG" ], "drug-financed": [ "JJ" ], "Seizin": [ "VBG" ], "e.g.": [ "FW", "NN" ], "higher-technology": [ "JJR" ], "Grosset": [ "NNP" ], "Indira": [ "NNP" ], "Halsmuseum": [ "NNP" ], "sanding": [ "NN", "VBG" ], "Artificial": [ "JJ" ], "recklessly": [ "RB" ], "expandable": [ "JJ" ], "patisseries": [ "NNS" ], "serial": [ "JJ", "NN" ], "SynOptics": [ "NNPS" ], "dinners": [ "NNS" ], "trazadone": [ "NN" ], "thrall": [ "NN" ], "Krause": [ "NNP" ], "Paper": [ "NNP", "NN" ], "Ohls": [ "NNP" ], "Krauss": [ "NNP" ], "Alarmed": [ "JJ", "VBN" ], "meditated": [ "VBD" ], "stock": [ "NN", "VBP", "JJ", "VB" ], "Adenauer": [ "NNP" ], "ABB": [ "NNP" ], "railings": [ "NNS" ], "Dionigi": [ "NNP" ], "car-market": [ "JJ", "NN" ], "Index-related": [ "JJ" ], "cardamom": [ "NN" ], "Outperform": [ "NNP" ], "ABM": [ "NN", "NNP" ], "ABO": [ "NNP" ], "ABS": [ "NNP" ], "Sparkman": [ "NNP" ], "Depositary": [ "NNP", "JJ" ], "multiplication": [ "NN" ], "yielded": [ "VBD", "VBN" ], "Reye": [ "NNP" ], "drape": [ "NN", "VB" ], "Carews": [ "NNPS" ], "Principia": [ "NNP" ], "separations": [ "NNS" ], "Salisbury": [ "NNP" ], "Horns": [ "NNS" ], "demi-monde": [ "FW" ], "anionic": [ "JJ" ], "Yonehara": [ "NNP" ], "Ruettgers": [ "NNP" ], "languorous": [ "JJ" ], "credit-data": [ "NN|NNS" ], "Dudley": [ "NNP" ], "razor-thin": [ "JJ" ], "preclinical": [ "JJ" ], "repentant": [ "JJ" ], "split-fingered": [ "JJ" ], "Prielipp": [ "NNP" ], "shreds": [ "NNS" ], "subpoenaed": [ "VBN", "VBD" ], "Gospelers": [ "NNS" ], "fortunate": [ "JJ" ], "envisage": [ "VB" ], "followership": [ "NN" ], "bridges": [ "NNS", "VBZ" ], "negotiated": [ "VBN", "JJ", "VBD" ], "whereon": [ "NN" ], "relativity": [ "NN" ], "Disposable": [ "JJ" ], "whereof": [ "RB", "WRB" ], "mill-wheel": [ "NN" ], "labor": [ "NN", "VBP", "VB" ], "squatting": [ "VBG" ], "junior-senior": [ "JJ" ], "NCAAs": [ "NNS" ], "<": [ "SYM" ], "dad": [ "NN" ], "junction": [ "NN" ], "lunatic": [ "JJ" ], "infrequent": [ "JJ" ], "dam": [ "NN", "JJ", "UH" ], "Repnin": [ "NNP" ], "gauging": [ "VBG" ], "COMPANIES": [ "NNS", "NNP" ], "Concorde": [ "NNP", "NN" ], "wiggier": [ "JJR" ], "rebel": [ "NN", "VBP", "JJ", "VB" ], "w-i-d-e": [ "NN" ], "Heitman": [ "NNP" ], "sonata": [ "NN" ], "das": [ "NNS" ], "day": [ "NN" ], "serpentine": [ "JJ" ], "Crampton": [ "NNP" ], "slacken": [ "VB" ], "Poor": [ "NNP", "JJ" ], "verifying": [ "VBG" ], "warned": [ "VBD", "VBN" ], "radiant": [ "JJ" ], "incineration": [ "NN" ], "Oerlikon-Buehrle": [ "NNP" ], "constraints": [ "NNS" ], "beween": [ "NN" ], "federalists": [ "NNS" ], "Injuns": [ "NNPS" ], "Armor": [ "NNP" ], "strip": [ "NN", "VB", "VBP" ], "four-star": [ "JJ" ], "Roaring": [ "NNP" ], "Bonuses": [ "NNS" ], "exodus": [ "NN" ], "Africanist": [ "NNP" ], "wolfishly": [ "RB" ], "slumped": [ "VBD", "VBN" ], "Comissioner": [ "NNP" ], "unstuck": [ "JJ" ], "thermoplastic": [ "JJ" ], "byplay": [ "NN" ], "R.R.": [ "NNP" ], "labile": [ "JJ" ], "Delbridge": [ "NNP" ], "Stalag": [ "NNP" ], "bullfighter": [ "NN" ], "postpone": [ "VB", "VBP" ], "Bidermann": [ "NNP" ], "fringed-wrapped": [ "JJ" ], "affirming": [ "VBG" ], "centrifuging": [ "VBG" ], "CSO": [ "NNP" ], "CSI": [ "NNP" ], "CSK": [ "NNP" ], "CSF": [ "NNP" ], "majority-held": [ "JJ" ], "CSX": [ "NNP" ], "CST": [ "NNP" ], "CSV": [ "NNP" ], "Vries": [ "NNP" ], "CSS": [ "NNP" ], "CSR": [ "NNP" ], "acre": [ "NN" ], "turbans": [ "NNS" ], "wagged": [ "VBD" ], "Grade": [ "NNP" ], "pervasiveness": [ "NN" ], "discomfort": [ "NN" ], "Tex-Mex": [ "NNP" ], "Fold": [ "VB" ], "Grady": [ "NNP" ], "Flatness": [ "NN" ], "sorrowful": [ "JJ" ], "Folk": [ "NNP", "NN" ], "Developer": [ "NNP" ], "jigsaw": [ "NN" ], "Whinney": [ "NNP" ], "microprocessor-based": [ "JJ" ], "bleeps": [ "NNS" ], "improvements": [ "NNS" ], "puppet": [ "NN" ], "Bethesda": [ "NNP" ], "beer-related": [ "JJ" ], "pauper": [ "NN" ], "Exercise": [ "NN" ], "commendations": [ "NNS" ], "expressionistic": [ "JJ" ], "covenants": [ "NNS", "VBZ" ], "sadly": [ "RB" ], "laps": [ "NNS", "VBZ" ], "chased": [ "VBN", "VBD" ], "Tbond": [ "JJ" ], "establishments": [ "NNS" ], "blow-up": [ "NN" ], "non-encapsulating": [ "JJ" ], "time": [ "NN", "VB" ], "ferocity": [ "NN" ], "natty": [ "JJ" ], "Spegititgninino": [ "NNP" ], "INTEREST-RATE": [ "NN" ], "Canned": [ "JJ" ], "gear": [ "NN", "VB", "VBP" ], "unscrupulous": [ "JJ" ], "Huppert": [ "NNP" ], "retrench": [ "VBP" ], "chemical-and-resource": [ "JJ" ], "forethought": [ "NN" ], "unending": [ "JJ" ], "Cannes": [ "NNP" ], "Canner": [ "NNP" ], "min.": [ "NN" ], "stumping": [ "NN" ], "loved": [ "VBD", "VBN", "JJ" ], "glamorous": [ "JJ" ], "Alakshak": [ "NNP" ], "BellSouth": [ "NNP" ], "Vacaville": [ "NNP" ], "spookiest": [ "JJS" ], "compensation": [ "NN" ], "halcyon": [ "JJ" ], "railroad-holding": [ "JJ" ], "propagandize": [ "VB" ], "loves": [ "VBZ", "NNS" ], "lover": [ "NN" ], "Bolker": [ "NNP" ], "seventy-fifth": [ "JJ" ], "tax-writers": [ "NNS" ], "Perrier": [ "NNP" ], "export-related": [ "JJ" ], "Blatz": [ "NNP" ], "cytoplasm": [ "NN" ], "sublunary": [ "JJ" ], "connectors": [ "NNS" ], "fifty-ninth": [ "JJ" ], "ethnically": [ "RB" ], "mass-faxing": [ "JJ" ], "dementia": [ "NN" ], "demonstration": [ "NN" ], "sayings": [ "NNS" ], "Credo": [ "NN" ], "papiers": [ "FW" ], "minimally": [ "RB" ], "Dostoevsky": [ "NNP" ], "Enthusiastically": [ "RB" ], "builtin": [ "JJ" ], "replanted": [ "VBN" ], "chaise": [ "NN" ], "rediscovered": [ "VBN" ], "scimitars": [ "NNS" ], "literalness": [ "NN" ], "prednisone": [ "NN" ], "trundles": [ "VBZ" ], "DOLLAR": [ "NN" ], "trundled": [ "VBD", "VBN" ], "Baggage": [ "NN" ], "Priest": [ "NNP" ], "Ernst": [ "NNP" ], "reveling": [ "VBG" ], "profoundest": [ "JJS" ], "YEEECH": [ "UH" ], "Burma": [ "NNP" ], "gullet": [ "NN" ], "allegorical": [ "JJ" ], "Co-Renitec": [ "NNP" ], "hostesses": [ "NNS" ], "gather": [ "VB", "VBP" ], "Movietime\\/Alfalfa": [ "NNP" ], "capita": [ "NNS", "FW", "NN" ], "gulled": [ "VBN" ], "Ashok": [ "NNP" ], "Government-Sponsored": [ "NNP" ], "selection": [ "NN" ], "kite": [ "NN" ], "gentleman": [ "NN" ], "physique": [ "NN" ], "humanizing": [ "VBG" ], "kits": [ "NNS" ], "Jerr-Dan": [ "NNP" ], "portfolio": [ "NN" ], "Banvel": [ "NNP" ], "shrugs": [ "VBZ", "NNS" ], "camping": [ "NN", "VBG" ], "circumpolar": [ "JJ" ], "dealer-to-dealer": [ "JJ", "NN" ], "NEC-compatible": [ "JJ" ], "Chanos": [ "NNP" ], "scuttling": [ "VBG" ], "resubmit": [ "VB" ], "Bogartian": [ "JJ" ], "iodide": [ "NN" ], "Kaul": [ "NNP" ], "computer-printer": [ "NN" ], "spirit-gum": [ "NN" ], "exceptional": [ "JJ" ], "Brezhnevite": [ "NNP" ], "photography": [ "NN" ], "Kishimoto": [ "NNP" ], "stripes": [ "NNS" ], "enunciating": [ "VBG" ], "accrue": [ "VB" ], "occupant": [ "NN" ], "deputies": [ "NNS" ], "humanely": [ "RB" ], "striped": [ "JJ" ], "Stockton": [ "NNP" ], "Provincetown": [ "NNP" ], "Cleaner": [ "NNP" ], "substrate": [ "NN" ], "densities": [ "NNS" ], "defoliation": [ "NN" ], "Buchanan": [ "NNP" ], "Transpiration": [ "NN" ], "plumpness": [ "NN" ], "calling": [ "VBG", "NN" ], "serviettes": [ "NNS" ], "overexploitation": [ "NN" ], "Cleaned": [ "VBN" ], "ballplayers": [ "NNS" ], "execuitive": [ "NN" ], "yard-line": [ "NN" ], "outfielder": [ "NN" ], "Traders": [ "NNS", "NNP", "NNPS" ], "dislodge": [ "VB" ], "Constar": [ "NNP" ], "co-director": [ "NN" ], "Parrillo": [ "NNP" ], "front-seat": [ "NN" ], "Grows": [ "VBZ" ], "Chemists": [ "NNS" ], "phases": [ "NNS", "VBZ" ], "Mellon": [ "NNP" ], "current-year": [ "JJ" ], "clearing": [ "VBG", "JJ", "NN" ], "Aurora": [ "NNP" ], "nebula": [ "NN" ], "peripherally": [ "RB" ], "routing": [ "VBG", "NN" ], "derisively": [ "RB" ], "routine": [ "JJ", "NN" ], "Mellow": [ "JJ" ], "Mellor": [ "NNP" ], "alveolar": [ "NN", "JJ" ], "nudged": [ "VBD" ], "Canadian-U.S.": [ "JJ" ], "Kittler": [ "NNP" ], "packaged": [ "VBN", "JJ" ], "Smoky": [ "NNP" ], "manometer": [ "NN" ], "Silicon": [ "NNP" ], "Edgar": [ "NNP" ], "Smoke": [ "NNP" ], "Ave": [ "NNP" ], "health-club": [ "JJ", "NN" ], "sou": [ "FW" ], "straights": [ "NNS" ], "Bontempo": [ "NNP" ], "corroborees": [ "NNS" ], "Concurrently": [ "RB", "NNP" ], "Ethel": [ "NNP" ], "Ambrosiano": [ "NNP" ], "Louvre": [ "NNP" ], "wiederum": [ "FW" ], "credit-easing": [ "JJ", "NN" ], "electronic-systems": [ "NNS" ], "embryos": [ "NNS" ], "sexes": [ "NNS" ], "vantage-points": [ "NNS" ], "highland": [ "NN" ], "otherwise": [ "RB", "JJ" ], "fester": [ "VB" ], "make-overs": [ "NNS" ], "invasive": [ "JJ" ], "fostering": [ "VBG", "NN" ], "Hashidate": [ "NNP" ], "ASEAN": [ "NNP" ], "Blot": [ "NNP" ], "Segovia": [ "NNP" ], "monstrosity": [ "NN" ], "technologist": [ "NN" ], "glassless": [ "JJ" ], "Tocqueville": [ "NNP" ], "tryst": [ "NN" ], "Muramatsu": [ "NNP" ], "LOTUS": [ "NNP" ], "crassest": [ "JJS" ], "Oranges": [ "NNPS", "NNS" ], "USO": [ "NNP" ], "Radiation": [ "NN", "NNP" ], "most-indebted": [ "JJS" ], "Goldinger": [ "NNP" ], "upbeat": [ "JJ", "NN" ], "Hoskyns": [ "NNP" ], "Germantown": [ "NNP", "NN" ], "define": [ "VB", "VBP" ], "Taito": [ "NNP" ], "Marico": [ "NNP" ], "citation": [ "NN" ], "Winkler": [ "NNP" ], "Barell": [ "NNP" ], "Lynde": [ "NNP" ], "rock-carved": [ "JJ" ], "USI": [ "NNP" ], "general": [ "JJ", "NN" ], "cot": [ "NN" ], "plaid": [ "JJ", "NN" ], "Glumly": [ "RB" ], "cow": [ "NN", "VB" ], "plain": [ "JJ", "NN", "RB" ], "promoter": [ "NN" ], "rectangular": [ "JJ" ], "Uzbekistan": [ "NNP" ], "high-ticket": [ "JJ" ], "deem": [ "VBP", "VB" ], "promoted": [ "VBN", "VBD" ], "Bloc": [ "NNP" ], "revisited": [ "VBD", "VBN" ], "Somerville": [ "NNP" ], "late-afternoon": [ "JJ" ], "Tash": [ "NNP" ], "cereals": [ "NNS" ], "Hine": [ "NNP" ], "helper": [ "NN" ], "Rudolph": [ "NNP" ], "helped": [ "VBD", "VBN", "VBP" ], "preconference": [ "JJ" ], "landfills": [ "NNS" ], "tampered": [ "VBD" ], "aggressiveness": [ "NN" ], "claimed": [ "VBD", "VBN" ], "Kerlone": [ "NNP" ], "inspector": [ "NN" ], "exogamous": [ "JJ" ], "watchful": [ "JJ" ], "Winking": [ "VBG" ], "Kongsberg": [ "NNP" ], "absinthe": [ "NN" ], "Hino": [ "NNP" ], "Lenobel": [ "NNP" ], "administration": [ "NN" ], "cabinetmakers": [ "NNS" ], "BetaWest": [ "NNP" ], "Persianesque": [ "JJ" ], "sweet-faced": [ "JJ" ], "blooms": [ "NNS", "VBZ" ], "injured": [ "VBN", "VBD", "JJ" ], "Resolved": [ "VBN" ], "tighten": [ "VB", "VBP" ], "taverns": [ "NNS" ], "sensed": [ "VBD", "VBN" ], "extra-caffeine": [ "JJ" ], "genres": [ "NNS" ], "ion": [ "NN" ], "Doppler": [ "NNP" ], "Teachers": [ "NNPS", "NNP", "NNS" ], "injures": [ "VBZ" ], "judgment": [ "NN" ], "tighter": [ "JJR", "RBR" ], "Bashir": [ "NNP" ], "raping": [ "VBG", "NN" ], "Eurobond": [ "NNP", "NN" ], "com": [ "NN" ], "Start-up": [ "JJ" ], "Nonconformist": [ "NNP" ], "alky": [ "NN" ], "Kihei": [ "NNP" ], "sets": [ "NNS", "VBZ" ], "Chimanbhai": [ "NNP" ], "position": [ "NN", "VBP", "VB" ], "arming": [ "NN" ], "intransigence": [ "NN" ], "Serbantian": [ "NNP" ], "Rattzhenfuut": [ "NNP" ], "gas-fired": [ "JJ" ], "proximity": [ "NN" ], "executive": [ "NN", "JJ" ], "hoped-for": [ "JJ" ], "clinic": [ "NN" ], "Tabak": [ "NNP" ], "voltage": [ "NN" ], "Furuta": [ "NNP" ], "DePugh": [ "NNP" ], "topping": [ "VBG", "NN" ], "Instrumental": [ "NNP" ], "Teflon": [ "NNP" ], "Tass": [ "NNP" ], "absorption": [ "NN" ], "terrorized": [ "VBN", "VBD" ], "lake": [ "NN" ], "Amvest": [ "NNP" ], "Crus": [ "NNP" ], "Kraft": [ "NNP" ], "sex-education": [ "NN" ], "Itzhak": [ "NNP" ], "Coles": [ "NNP" ], "newsstand": [ "NN" ], "easel": [ "NN" ], "roofers": [ "NNS" ], "audibly": [ "RB" ], "diehards": [ "NNS" ], "drugless": [ "JJ" ], "inviting": [ "VBG", "JJ" ], "sofa": [ "NN" ], "qualitative": [ "JJ" ], "Lintas": [ "NNP" ], "heed": [ "VB", "VBP", "NN" ], "Fear": [ "NN", "NNP" ], "soft": [ "JJ", "NNS", "RB" ], "audible": [ "JJ" ], "heel": [ "NN" ], "Castillo": [ "NNP" ], "Gargery": [ "NNP" ], "cellists": [ "NNS" ], "Villamiel": [ "NNP" ], "Excel": [ "NNP" ], "Irina": [ "NNP" ], "swimsuits": [ "NNS" ], "Forte": [ "NNP" ], "Darvon": [ "NNP" ], "abolitionist": [ "NN" ], "Zayadi": [ "NNP" ], "Oedipal": [ "JJ" ], "stuffy": [ "JJ" ], "debate...": [ ":" ], "highlighting": [ "VBG" ], "treacheries": [ "NNS" ], "parallel-computing": [ "JJ" ], "Euro-cigarette": [ "NN" ], "corpse": [ "NN" ], "then-pending": [ "JJ" ], "Putty": [ "NN" ], "countersuit": [ "NN" ], "technology-based": [ "JJ" ], "chains": [ "NNS" ], "great-grandfather": [ "NN" ], "regain": [ "VB", "VBP" ], "plumped": [ "VBD" ], "hose": [ "NN", "VB" ], "lower-tech": [ "JJ" ], "EWC": [ "NN" ], "Lokey": [ "NNP" ], "unflaggingly": [ "RB" ], "Maronite": [ "JJ" ], "host": [ "NN", "VB" ], "expire": [ "VB", "VBP" ], "hoss": [ "NN", "NNS" ], "Deterioration": [ "NN" ], "whacky": [ "JJ" ], "christened": [ "VBD", "VBN" ], "beaker": [ "NN" ], "KinderCare": [ "NNP" ], "Igor": [ "NNP" ], "tray": [ "NN" ], "greedier": [ "JJR" ], "preemployment": [ "NN" ], "blessings": [ "NNS" ], "lower-than-forecast": [ "JJ" ], "foldability": [ "NN" ], "Mayor": [ "NNP", "NN" ], "Giggey": [ "NNP" ], "triple-A\\": [ "JJ" ], "cha-chas": [ "NNS" ], "over-arranged": [ "JJ" ], "chronic": [ "JJ", "NN" ], "lobbies": [ "NNS" ], "vampirism": [ "NN" ], "non-callable": [ "JJ" ], "styrene": [ "NN" ], "buckle": [ "VB", "NN" ], "adversarial": [ "JJ" ], "awarded": [ "VBN", "VBD" ], "Gaon": [ "NNP" ], "utopian": [ "JJ", "NN" ], "line-pairs": [ "NN" ], "maze": [ "NN" ], "GRAB": [ "NNP" ], "conclusive": [ "JJ" ], "relishing": [ "VBG" ], "Queried": [ "VBN" ], "ivory": [ "NN", "JJ" ], "Duro-Test": [ "NNP" ], "enchantment": [ "NN" ], "brand": [ "NN", "VBP", "JJ", "RB" ], "amity": [ "NN" ], "Cavin-Morris": [ "NNP" ], "reminds": [ "VBZ" ], "Cmdr.": [ "NNP" ], "money-fund": [ "JJ", "NN" ], "flexible": [ "JJ" ], "editing": [ "NN", "VBG" ], "Aquifers": [ "NNS" ], "Krepon": [ "NNP" ], "Compare": [ "VB", "VBP" ], "dozens": [ "NNS" ], "dangerous": [ "JJ" ], "j": [ "NN" ], "annoying": [ "JJ", "NN" ], "backfires": [ "VBZ" ], "contadini": [ "NNS" ], "superieure": [ "NN" ], "avaliable": [ "JJ" ], "judiciaries": [ "NNS" ], "Gazeta": [ "NNP" ], "chouise": [ "NN" ], "Arcadian": [ "NNP" ], "Arte": [ "NNP" ], "backfired": [ "VBD", "VBN" ], "plutonium": [ "NN" ], "cooperative-care": [ "JJ" ], "coverall": [ "NN" ], "rhenium": [ "NN" ], "deaths": [ "NNS" ], "boyish-looking": [ "JJ" ], "handset": [ "NN" ], "Ihmsen": [ "NNP" ], "crusade": [ "NN" ], "barnyards": [ "NNS" ], "Jars": [ "NNS" ], "shooting": [ "NN", "VBG", "VBG|NN" ], "glutamate": [ "NN" ], "tarpaulins": [ "NNS" ], "misstated": [ "VBN", "VBD" ], "unintelligible": [ "JJ" ], "Hawes": [ "NNP" ], "Vice": [ "NNP", "NN" ], "individuate": [ "VB" ], "patsy": [ "NN" ], "surreal": [ "JJ" ], "poor-performing": [ "JJ" ], "misstates": [ "VBZ" ], "Posterity": [ "NN" ], "Honeysuckle": [ "NNP" ], "Varo": [ "NNP" ], "handcrafted": [ "VBN" ], "category": [ "NN" ], "insupportable": [ "JJ" ], "Yankees-Mets": [ "JJ" ], "eight-mile-long": [ "JJ" ], "regular-season": [ "JJ" ], "flange": [ "NN" ], "nozzles": [ "NNS" ], "enlargement": [ "NN" ], "zero-gravity": [ "JJ" ], "Rooney": [ "NNP" ], "misgauged": [ "VBN" ], "Shatilov": [ "NNP" ], "astronomy": [ "NN" ], "Softer-than-expected": [ "JJ" ], "prevalent": [ "JJ", "NN" ], "bulwark": [ "NN" ], "oral": [ "JJ" ], "Thus": [ "RB" ], "Acting-President": [ "NNP" ], "Thun": [ "NNP" ], "Munchen": [ "NNP" ], "meteoritic": [ "JJ" ], "Marinaro": [ "NNP" ], "Zero-coupon": [ "JJ", "NN" ], "thunderstorms": [ "NNS" ], "sweetening": [ "NN" ], "Packwood": [ "NNP" ], "legacies": [ "NNS" ], "levers": [ "NNS" ], "Coincidentally": [ "RB" ], "Mandina": [ "NNP" ], "assembles": [ "VBZ" ], "all-cash": [ "JJ" ], "yenta": [ "NN" ], "sleek": [ "JJ" ], "sleet": [ "NN" ], "sleep": [ "VB", "NN", "VBP" ], "winningest": [ "JJS" ], "assembled": [ "VBN", "VBD", "JJ" ], "G7": [ "NNP" ], "feeding": [ "VBG", "NN" ], "vile": [ "JJ" ], "expedients": [ "NNS" ], "Connoisseurs": [ "NNS" ], "Heimbold": [ "NNP" ], "Vernier": [ "NNP" ], "C-V": [ "NNP" ], "C-S": [ "NNP" ], "juice-storage": [ "JJ" ], "ordnance": [ "NN" ], "lure": [ "VB", "NN" ], "GT": [ "NNP" ], "GS": [ "NNP" ], "Fremantle": [ "NNP" ], "incurs": [ "VBZ" ], "physician": [ "NN" ], "lurk": [ "VB", "VBP" ], "amorphous": [ "JJ" ], "Withhold": [ "VB" ], "GF": [ "NNP" ], "GE": [ "NNP" ], "GD": [ "NNP" ], "Willamette": [ "NNP", "NN" ], "GA": [ "NNP" ], "GO": [ "VB" ], "Scrooge-like": [ "JJ" ], "GL": [ "NNP" ], "fireplace": [ "NN" ], "GI": [ "NNP", "NN" ], "get-togethers": [ "NNS" ], "program-bashing": [ "JJ" ], "Campaign": [ "NNP", "NN" ], "sunk": [ "VBN", "VBD" ], "water-proof": [ "JJ" ], "venue": [ "NN" ], "zing": [ "NNP" ], "admissible": [ "JJ" ], "Station": [ "NNP" ], "boy-name": [ "NN" ], "mid-March": [ "NNP" ], "Go": [ "VB", "NNP" ], "smoky": [ "JJ" ], "Allegheny": [ "NNP" ], "Tenth": [ "NNP", "JJ" ], "Windsor": [ "NNP" ], "methane": [ "NN" ], "osmotic": [ "JJ" ], "in-and-outer": [ "NN" ], "Mitch": [ "NNP" ], "infancy": [ "NN" ], "razed": [ "VBN" ], "Taffner": [ "NNP" ], "Skypak": [ "NNP" ], "scrutinize": [ "VB", "VBP" ], "borrowings": [ "NNS" ], "Claude-Eric": [ "NNP" ], "voluminous": [ "JJ" ], "Harrington": [ "NNP" ], "profitability": [ "NN" ], "sulphurous": [ "JJ" ], "steriles": [ "NNS" ], "Barenholtz": [ "NNP" ], "tile-roofed": [ "JJ" ], "frizzled": [ "JJ" ], "seeks": [ "VBZ" ], "Marche": [ "NNP" ], "Barbanell": [ "NNP" ], "six-gallon": [ "JJ" ], "digits": [ "NNS" ], "Wortham": [ "NNP" ], "davenport": [ "NN" ], "changed": [ "VBN", "VBD", "JJ" ], "nut-house": [ "NN" ], "Rendering": [ "VBG" ], "donning": [ "VBG" ], "gastro-intestinal": [ "JJ" ], "card-member": [ "JJ", "NN" ], "changes": [ "NNS", "VBZ" ], "Peeter": [ "NNP" ], "glinted": [ "VBD" ], "blowtorch": [ "NN" ], "yukked": [ "VBD" ], "iconoclasm": [ "NN" ], "Boxes": [ "NNP", "NNPS" ], "Decrying": [ "VBG" ], "iconoclast": [ "NN" ], "Baily": [ "NNP" ], "joint-research": [ "JJ" ], "punching": [ "VBG", "NN" ], "Cole": [ "NNP" ], "forums": [ "NNS" ], "anyhow": [ "RB" ], "ebony": [ "NN", "JJ" ], "mini-doll": [ "NN" ], "L-5-vinyl-2-thio-oxazolidone": [ "NN" ], "fire-fighting": [ "JJ", "NN" ], "omits": [ "VBZ" ], "scaffolding": [ "NN" ], "oil-poor": [ "JJ" ], "wordplay": [ "NN" ], "phenomenological": [ "JJ" ], "asses": [ "NNS" ], "racketeer": [ "NN" ], "asset": [ "NN" ], "slaughtered": [ "VBN", "VBD" ], "musk": [ "NN" ], "mush": [ "NN" ], "ensnared": [ "VBN" ], "naive": [ "JJ", "NN" ], "M.P.": [ "NNP" ], "Askington": [ "NNP" ], "muse": [ "NN", "VB" ], "brushy": [ "JJ" ], "committeewoman": [ "NN" ], "Pasatieri": [ "NNP" ], "pinching": [ "VBG", "NN" ], "arms": [ "NNS" ], "Fernandes": [ "NNP" ], "adjourn": [ "VB" ], "pouch": [ "NN" ], "Fernandez": [ "NNP" ], "must": [ "MD", "JJ", "NN" ], "Claim": [ "VB", "NN" ], "Oakbrook": [ "NNP" ], "ratifiers": [ "NNS" ], "cancellations": [ "NNS" ], "Cichan": [ "NNP" ], "counterflow": [ "NN" ], "Muhammad": [ "NNP" ], "Baptists": [ "NNS", "NNP" ], "hypermarket": [ "NN" ], "pavements": [ "NNS" ], "appraisal": [ "NN" ], "Clair": [ "NNP" ], "tugged": [ "VBD", "VBN" ], "turnips": [ "NNS" ], "Liberty-and-Union": [ "NN", "NNP" ], "scheduling": [ "NN", "VBG" ], "Huey": [ "NNP" ], "quick-fired": [ "VBN" ], "unmeasurable": [ "JJ" ], "thoriated": [ "VBN" ], "Deli": [ "NNP" ], "bunk": [ "NN" ], "intruders": [ "NNS" ], "gentian": [ "NN" ], "grammatically": [ "RB" ], "bunt": [ "NN", "VB" ], "adjacent": [ "JJ" ], "iconoclastic": [ "JJ" ], "swiftness": [ "NN" ], "nonsingular": [ "JJ" ], "pre-approved": [ "JJ", "VBN" ], "predicated": [ "VBN" ], "Oooo": [ "UH" ], "Yorker": [ "NNP" ], "predicates": [ "NNS" ], "spectrometer": [ "NN" ], "burly": [ "JJ" ], "rummy": [ "NN" ], "mourned": [ "VBD" ], "self-ordained": [ "JJ" ], "Gradco": [ "NNP" ], "transcultural": [ "JJ" ], "hypnotic": [ "JJ" ], "Del.": [ "NNP" ], "hypotheses": [ "NNS" ], "spun-off": [ "JJ" ], "narcos": [ "NNS" ], "Podell": [ "NNP" ], "air-frame": [ "NN" ], "Sterilized": [ "JJ" ], "Irene": [ "NNP" ], "post-census": [ "NN" ], "heart-warming": [ "JJ" ], "Zapata": [ "NNP" ], "bricklaying": [ "NN" ], "bleach": [ "NN" ], "tapdance": [ "NN" ], "expects": [ "VBZ" ], "Montgomery": [ "NNP", "NN" ], "reorient": [ "VB" ], "Publicis": [ "NNP" ], "SharesBase": [ "NNP" ], "frightfully": [ "RB" ], "carnal": [ "JJ" ], "caster": [ "NN" ], "talkative": [ "JJ" ], "digest": [ "VB", "NN" ], "Addison": [ "NNP" ], "Simplesse": [ "NNP" ], "Dorr": [ "NNP" ], "fairway": [ "NN" ], "writing": [ "VBG", "NN" ], "replay": [ "NN" ], "edits": [ "VBZ" ], "Dora": [ "NNP" ], "internal-security": [ "NN" ], "stifling": [ "VBG", "JJ" ], "Institutional-type": [ "JJ" ], "tantalized": [ "VBN" ], "appoint": [ "VB" ], "Reveals": [ "VBZ" ], "ten-day": [ "JJ" ], "Strasser": [ "NNP" ], "Reserves": [ "NNS", "NNPS", "NNP" ], "JAL": [ "NNP" ], "publicizing": [ "VBG" ], "plates": [ "NNS" ], "Carballo": [ "NNP" ], "flight-attendant": [ "NN" ], "JAC": [ "NNP" ], "Winsett": [ "NNP" ], "obligingly": [ "RB" ], "indictment": [ "NN" ], "indeed": [ "RB", "UH" ], "privileging": [ "VBG" ], "Radnor": [ "NNP" ], "explode": [ "VB", "VBP" ], "holdin": [ "VBG" ], "Adjustment": [ "NNP", "NN" ], "Transport": [ "NNP", "NN", "VB" ], "factory-automation": [ "NN" ], "USDA-sponsored": [ "JJ" ], "constipation": [ "NN" ], "Duncan": [ "NNP" ], "Advil": [ "NNP" ], "unscrew": [ "VB" ], "production-rate": [ "JJ" ], "Anyone": [ "NN" ], "celebrating": [ "VBG" ], "Copying": [ "NNP", "VBG" ], "Hatch": [ "NNP" ], "Duchenne": [ "NNP" ], "COCA-COLA": [ "NNP" ], "hand-painted": [ "NN" ], "reused": [ "VBN" ], "Netherland": [ "NNP" ], "iodothyronines": [ "NNS" ], "driving": [ "VBG", "JJ", "NN" ], "Marguerite": [ "NNP" ], "emphysema": [ "NN" ], "bonnets": [ "NNS" ], "horsehair": [ "NN" ], "knock-offs": [ "NNS", "JJ" ], "abortion-related": [ "JJ" ], "Toasting": [ "VBG" ], "Junior": [ "JJ", "NNP", "NNS", "NN" ], "perception": [ "NN" ], "hemorrhaging": [ "VBG", "JJ", "NN" ], "rail": [ "NN", "VB" ], "Carreon": [ "NNP" ], "Gothicism": [ "NNP" ], "Roth": [ "NNP" ], "untruth": [ "NN" ], "whereupon": [ "IN" ], "non-airline": [ "JJ", "NN" ], "weeked": [ "NN" ], "superimpose": [ "VB", "VBP" ], "Carleton": [ "NNP" ], "fret": [ "VBP", "NN", "VB" ], "Mickey": [ "NNP" ], "Vic": [ "NNP" ], "Via": [ "NNP" ], "anthropomorphic": [ "JJ" ], "equine": [ "NN" ], "non-color": [ "NN" ], "Vie": [ "NNP" ], "imperfectability": [ "NN" ], "mega-hit": [ "JJ", "NN" ], "Centre": [ "NNP" ], "foibles": [ "NNS" ], "Hotline": [ "NNP" ], "stabilizing-conserving": [ "JJ" ], "corrections": [ "NNS" ], "out-of-repair": [ "NN" ], "inspectors": [ "NNS", "VBZ" ], "narratives": [ "NNS" ], "tetrasodium": [ "NN" ], "gazelle": [ "NN" ], "Rheinholdt": [ "NNP" ], "Borghese": [ "NNP" ], "Outreach": [ "NNP" ], "philosophical": [ "JJ" ], "decorticated": [ "VBN" ], "Delon": [ "NNP" ], "Haworth": [ "NNP" ], "scissors": [ "NNS" ], "Poorer": [ "JJR" ], "blunts": [ "VBZ" ], "withheld": [ "VBN", "VBD" ], "minaces": [ "NNS" ], "revival": [ "NN" ], "Pitcher": [ "NN", "NNP" ], "greedily": [ "RB" ], "staminate": [ "JJ" ], "kinder": [ "JJR" ], "meanders": [ "VBZ" ], "militancy": [ "NN" ], "duress": [ "NN" ], "consented": [ "VBD", "VBN" ], "montmorillonites": [ "NNS" ], "centered": [ "VBN", "VBD" ], "conspicuously": [ "RB" ], "cross-fertilized": [ "VBN" ], "baroreceptor": [ "NN" ], "injected": [ "VBN", "VBD" ], "kept": [ "VBD", "VBN" ], "Georg": [ "NNP" ], "mercifully": [ "RB" ], "expressionists": [ "NNS" ], "Minn": [ "NNP" ], "Previewing": [ "VBG" ], "nonperforming": [ "JJ", "VBG", "NN" ], "nominate": [ "VB", "VBP" ], "Confession": [ "NN", "NNP" ], "reconstructing": [ "VBG" ], "preceeding": [ "VBG" ], "diuretic": [ "NN", "JJ" ], "screenplay": [ "NN" ], "peace-treaty": [ "NN" ], "Pierluigi": [ "NNP" ], "skinless": [ "JJ" ], "taint": [ "NN", "VBP" ], "interest-rate-type": [ "JJ" ], "laugher": [ "NN" ], "catastrophic-illness": [ "NN", "JJ" ], "Asians": [ "NNPS", "NNS" ], "relayed": [ "VBD", "VBN" ], "reminding": [ "VBG" ], "isolated": [ "VBN", "JJ", "VBD" ], "Self-criticism": [ "NN" ], "cotillion": [ "NN" ], "laughed": [ "VBD", "VBN" ], "isolates": [ "VBZ" ], "Gave": [ "VBD" ], "rides": [ "NNS", "VBZ" ], "rider": [ "NN" ], "go-to-war": [ "JJ" ], "married-put": [ "JJ" ], "Burling": [ "NNP" ], "Reports": [ "NNS", "VBZ", "NNPS", "NNP" ], "Prototypes": [ "NNS" ], "Ashley": [ "NNP" ], "absentee-ballot": [ "NN" ], "delousing": [ "VBG" ], "glop": [ "NN" ], "genital": [ "JJ" ], "inexcusable": [ "JJ" ], "illogical": [ "JJ" ], "radical-moderate": [ "JJ" ], "crazing": [ "VBG" ], "Gerstner": [ "NNP" ], "WFAA-TV": [ "NNP" ], "stale-cigarette": [ "NN" ], "tool-and-die": [ "JJ" ], "Cleary": [ "NNP" ], "freeway": [ "NN" ], "Rooms": [ "NNS" ], "after-tax": [ "JJ", "NN" ], "Aeritalia": [ "NNP" ], "Dyke": [ "NNP" ], "Ku": [ "NNP" ], "pope": [ "NN" ], "seven-fold": [ "JJ" ], "aromatics": [ "NNS" ], "mishandling": [ "VBG" ], "queen": [ "NN" ], "pops": [ "VBZ" ], "little-understood": [ "JJ" ], "worthiest": [ "JJS" ], "queer": [ "JJ" ], "Saxton": [ "NNP" ], "earth": [ "NN" ], "circumvent...": [ ":" ], "Flushing-Main": [ "NNP" ], "curricular": [ "JJ" ], "square": [ "NN", "JJ", "RB", "VB", "VBP" ], "commence": [ "VB", "VBP" ], "commandment": [ "NN" ], "carbon-monoxide": [ "NN" ], "Piepsam": [ "NNP" ], "enslave": [ "VBP", "VB" ], "Knit": [ "VB" ], "E-Z": [ "JJ" ], "squeaking": [ "NN", "VBG" ], "Chiodo": [ "NNP" ], "Molson": [ "NNP" ], "Wendler": [ "NNP" ], "Kiefferm": [ "NNP" ], "amusement\\/theme": [ "NN" ], "Grauer": [ "NNP" ], "uhhu": [ "UH" ], "hobbing": [ "VBG" ], "dumpsters": [ "NNS" ], "CalMat": [ "NNP", "NN" ], "Hochiminh": [ "NNP" ], "rowing": [ "NN" ], "collusion": [ "NN" ], "licking": [ "VBG" ], "Duarte": [ "NNP" ], "CLAIMANTS": [ "NNS" ], "DeShano": [ "NNP" ], "large-scale": [ "JJ" ], "Merkur": [ "NNP" ], "Hanaspur": [ "NNP" ], "SS-20s": [ "NNPS" ], "Hammett": [ "NNP" ], "two-family": [ "JJ" ], "Duracell": [ "NNP" ], "Esquivel": [ "NNP" ], "sectionalized": [ "JJ" ], "richer": [ "JJR" ], "gigolo": [ "NN" ], "sporadic": [ "JJ" ], "performing-arts": [ "NNS" ], "temptation": [ "NN" ], "Radarange": [ "NN" ], "tongue-thrusting": [ "NN" ], "Lotteries": [ "NNS" ], "machinists": [ "NNS" ], "price-weakening": [ "NN" ], "startle": [ "VB" ], "Fallon": [ "NNP" ], "ground-support": [ "JJ" ], "abstractionists": [ "NNS" ], "cajun": [ "JJ" ], "Pinnacle": [ "NNP" ], "bargains": [ "NNS", "VBZ" ], "oxidation": [ "NN" ], "Seaquarium": [ "NNP" ], "pegboards": [ "NNS" ], "brooked": [ "VBD" ], "dedication": [ "NN" ], "Weidenfeld": [ "NNP" ], "yearago": [ "JJ" ], "faced": [ "VBN", "VBD" ], "alter-parents": [ "NNS" ], "abasement": [ "NN" ], "Workstations": [ "NNS" ], "rightward": [ "JJ" ], "Contribute": [ "VB" ], "jelly": [ "NN" ], "facet": [ "NN" ], "players": [ "NNS" ], "Contact": [ "NN", "NNP", "VB" ], "straw-hat": [ "JJ" ], "faces": [ "VBZ", "NNS" ], "hypocrites": [ "NNS" ], "indoctrinating": [ "NN" ], "nook": [ "NN" ], "Freeport-McMoRan": [ "NNP" ], "pay-for-performance": [ "JJ" ], "luncheon-table": [ "JJ" ], "confide": [ "VB", "VBP" ], "betting": [ "VBG", "NN" ], "governmental-affairs": [ "NNS", "JJ" ], "dabbles": [ "VBZ" ], "cholelithiasis": [ "NN" ], "Samples": [ "NNS" ], "dabbler": [ "NN" ], "Geatish": [ "JJ" ], "redistributive": [ "JJ" ], "comical": [ "JJ" ], "bathroom": [ "NN" ], "Jack-an-Apes": [ "NN" ], "jobless": [ "JJ" ], "Predicting": [ "VBG" ], "Renfrew": [ "NNP" ], "John-and-Linda": [ "NNP" ], "confident": [ "JJ" ], "spread": [ "NN", "VBD", "VBN", "VBP", "JJ", "VB" ], "hillbilly": [ "NN" ], "Minneapolis-based": [ "JJ" ], "Shegog": [ "NNP" ], "Glenbrook": [ "NNP" ], "Nationale": [ "NNP" ], "affixed": [ "VBN", "JJ" ], "bible": [ "JJ", "NN" ], "Cowen": [ "NNP" ], "catch": [ "VB", "VBP", "NN" ], "Johanson": [ "NNP" ], "Cross-border": [ "JJ" ], "Klaus": [ "NNP" ], "greeters": [ "NNS" ], "Deland": [ "NNP" ], "bingo-like": [ "JJ" ], "yellin": [ "NN" ], "cracker": [ "NN" ], "inviolable": [ "JJ" ], "Schoeppner": [ "NNP" ], "strangest": [ "JJS" ], "Wash": [ "NNP" ], "subjugate": [ "VB" ], "cracked": [ "VBD", "VBN", "JJ" ], "transfering": [ "VBG" ], "precede": [ "VB", "VBP" ], "horse-meat": [ "NN" ], "Aril": [ "NNP" ], "Edelstein": [ "NNP" ], "Outplacement": [ "NN", "NNP" ], "Ariz": [ "NNP" ], "lasciviously": [ "RB" ], "Chipmunks": [ "NNPS" ], "Historically": [ "RB", "NNP" ], "Schultz": [ "NNP" ], "balletomane": [ "NN" ], "profiteers": [ "NNS" ], "Obermaier": [ "NNP" ], "Har-Lev": [ "NNP" ], "outface": [ "VB" ], "Snoopy": [ "NNP" ], "intercom": [ "NN" ], "forefeet": [ "NN" ], "heeded": [ "VBD", "VBN" ], "Vacancies": [ "NNS" ], "Schulte": [ "NNP" ], "Sweet-scented": [ "JJ" ], "Room": [ "NNP", "NN" ], "A.H.": [ "NNP" ], "purposely": [ "RB" ], "Petrossian": [ "NNP" ], "Casca": [ "NN" ], "Roof": [ "NNP" ], "Latvia": [ "NNP" ], "Audubon": [ "NNP" ], "Roos": [ "NNP" ], "Root": [ "NN", "NNP" ], "cycle": [ "NN", "VB" ], "censures": [ "NNS" ], "Gates": [ "NNP" ], "hearth": [ "NN" ], "Patrol": [ "NNP", "NN" ], "incredulity": [ "NN" ], "neurologists": [ "NNS" ], "Apartments": [ "NNP" ], "Alton": [ "NNP", "NN" ], "frankest": [ "JJS" ], "Lockian": [ "JJ" ], "hearty": [ "JJ" ], "detained": [ "VBN", "VBD" ], "censured": [ "VBD", "VBN" ], "hearts": [ "NNS" ], "Mobil": [ "NNP" ], "guitar-strumming": [ "VBG" ], "outnumbered": [ "VBD", "VBN" ], "whimsical": [ "JJ" ], "Angleterre": [ "FW" ], "beggar-thy-neighbor": [ "JJ" ], "motherless": [ "JJ" ], "stand-by": [ "JJ" ], "non-Federal": [ "JJ" ], "pyknotic": [ "JJ" ], "Janus-faced": [ "JJ" ], "pseudo-Kennedyism": [ "NN" ], "tattle-tale": [ "NN" ], "Spec.": [ "NN" ], "bagel": [ "NN" ], "Kryuchkov": [ "NNP" ], "IOU": [ "NNP" ], "Krug": [ "NNP", "NN" ], "IOS": [ "NNP" ], "exempting": [ "VBG" ], "guidepost": [ "NN" ], "NICHOLS": [ "NNP" ], "conjur": [ "NN" ], "pitiful": [ "JJ" ], "reversal": [ "NN" ], "EXPENSIVE": [ "JJ" ], "Krishna": [ "NNP" ], "submissive": [ "JJ" ], "blood-lust": [ "NN" ], "casting": [ "VBG", "NN" ], "accede": [ "VB" ], "Handstands": [ "NNS" ], "advancer": [ "NN" ], "advances": [ "NNS", "VBZ" ], "right-wing": [ "JJ", "NN" ], "bungling": [ "VBG" ], "wrong-o": [ "NN" ], "toadying": [ "JJ" ], "slanders": [ "NNS" ], "defense-suppression": [ "NN" ], "convalescing": [ "VBG" ], "spawns": [ "VBZ" ], "advanced": [ "VBD", "VBN", "JJ", "VBN|VBD" ], "executive-office": [ "NN" ], "when-issued": [ "JJ", "VBN" ], "Garrick-Aug": [ "NNP" ], "Wilberforce": [ "NNP" ], "Lys": [ "NNP" ], "Kenmore": [ "NNP" ], "gifted": [ "JJ", "VBN" ], "near-equivalents": [ "NNS" ], "unsuspecting": [ "JJ" ], "informative": [ "JJ" ], "liquid-nitrogen": [ "NN" ], "Shemona": [ "NNP" ], "diaphanous": [ "JJ" ], "Cascades": [ "NNP" ], "Lyn": [ "NNP" ], "nuclear-arms": [ "NNS" ], "Badges": [ "NNS" ], "Horsely": [ "NNP" ], "rodding": [ "NN" ], "deWindt": [ "NNP" ], "headlinese": [ "NN" ], "Casassa": [ "NNP" ], "Euro-caps": [ "NNS" ], "intellect": [ "NN" ], "op-ed": [ "JJ" ], "Malignant": [ "NN" ], "tristate": [ "JJ" ], "exhausts": [ "NNS", "VBZ" ], "FIRST-TIME": [ "JJ" ], "centre": [ "NN" ], "skinnin": [ "NN" ], "Namibian-independence": [ "NN" ], "jalopy": [ "NN" ], "precedent-based": [ "JJ" ], "polyisobutylene": [ "NN" ], "Somay": [ "NNP" ], "convict": [ "NN", "VB" ], "baklava": [ "NN" ], "Astec": [ "NNP" ], "Scull": [ "NNP" ], "Syracuse": [ "NNP" ], "Yiren": [ "NNP" ], "arbitrated": [ "VBN" ], "feted": [ "VBD", "JJ", "VBN" ], "jejune": [ "JJ" ], "dropped": [ "VBD", "VBN" ], "Greenstein": [ "NNP" ], "Titanic": [ "NNP" ], "Monieson": [ "NNP" ], "reassign": [ "VB" ], "Revell": [ "NNP" ], "fetes": [ "NNS" ], "arbitrates": [ "VBZ" ], "mooncursers": [ "NNS" ], "endorsing": [ "VBG", "NN" ], "playroom": [ "NN" ], "Fair": [ "NNP", "JJ", "NN" ], "Castro-held": [ "JJ" ], "Seats": [ "NNS" ], "calculating": [ "VBG", "JJ", "NN" ], "Fain": [ "NNP" ], "Birds": [ "NNP", "NNPS", "NNS" ], "respondent": [ "NN" ], "puzzle": [ "NN", "VB" ], "Messaggero": [ "NNP" ], "uncontrolled": [ "JJ" ], "entrepreneur": [ "NN" ], "finely": [ "RB" ], "Meriden": [ "NNP" ], "fuselage": [ "NN" ], "Profitt": [ "NNP" ], "impartiality": [ "NN" ], "rounds": [ "NNS", "VBZ" ], "EWDB": [ "NNP" ], "Abraham": [ "NNP" ], "Karpov": [ "NNP" ], "Jew-baiter": [ "NN" ], "Puttnam": [ "NNP" ], "forbad": [ "VBD" ], "Herberet": [ "NNP" ], "Horne": [ "NNP" ], "prayerbooks": [ "NNS" ], "dank": [ "JJ" ], "Todman": [ "NNP" ], "of...": [ ":" ], "Maryville": [ "NNP" ], "visitation": [ "NN" ], "Pauley": [ "NNP" ], "underperformance": [ "NN" ], "triple-B-plus": [ "JJ", "NNP", "NN" ], "underreacting": [ "VBG" ], "solar": [ "JJ" ], "boogieman": [ "NN" ], "widgets": [ "NNS" ], "plumps": [ "VBZ" ], "Salted": [ "JJ" ], "viva": [ "FW", "NN" ], "admiration": [ "NN" ], "Negligence": [ "NN" ], "Interlink": [ "NNP" ], "Gosset": [ "NNP" ], "vivo": [ "NN", "FW" ], "wipes": [ "VBZ" ], "prematurely": [ "RB" ], "latch": [ "NN", "VB", "VBP" ], "over-capacity": [ "NN" ], "Indonesians": [ "NNPS" ], "Shriver": [ "NNP" ], "impropriety": [ "NN" ], "front-line": [ "JJ", "NN" ], "Introduction": [ "NN", "NNP" ], "Caught": [ "VBN" ], "cop": [ "NN" ], "Furukawa": [ "NNP" ], "pawing": [ "VBG" ], "per-capita": [ "JJ", "NNS" ], "despotism": [ "NN" ], "Micron": [ "NNP" ], "Melissa": [ "NNP" ], "Berne": [ "NNP" ], "blatantly": [ "RB" ], "radioed": [ "JJ", "VBD" ], "radically": [ "RB" ], "upheaval": [ "NN" ], "Tatras": [ "NNS" ], "right-angled": [ "JJ" ], "vanishes": [ "VBZ" ], "signal-to-noise": [ "JJ", "NN" ], "luscious": [ "JJ" ], "Thalmann": [ "NNP" ], "Colorado-Ute": [ "NNP" ], "vanished": [ "VBD", "VBN" ], "depot": [ "NN" ], "hand-filed": [ "JJ" ], "anti-extortion": [ "NN" ], "eternity": [ "NN" ], "permitting": [ "VBG" ], "nuance": [ "NN" ], "KLA": [ "NNP" ], "Scandanavian": [ "JJ" ], "Double": [ "NNP", "JJ", "RB", "VB" ], "gallants": [ "NNS" ], "propelling": [ "VBG" ], "cookie-cutter": [ "NN" ], "endorsers": [ "NNS" ], "stinkin": [ "JJ" ], "Permian": [ "NNP" ], "younger": [ "JJR" ], "apologizing": [ "VBG" ], "ineluctable": [ "JJ" ], "twotiming": [ "VBG" ], "serious": [ "JJ" ], "stacks": [ "NNS" ], "remarkable": [ "JJ" ], "Edge": [ "NNP", "NN" ], "alternatives": [ "NNS" ], "obviate": [ "VB" ], "PRO-CHOICE": [ "JJ" ], "Zagros": [ "NNP" ], "comments": [ "NNS", "VBZ" ], "remarkably": [ "RB" ], "Pride": [ "NNP" ], "violinist": [ "NN" ], "prescription-drug": [ "NN", "JJ" ], "lisping": [ "VBG" ], "Reuschel": [ "NNP" ], "PepsiCo": [ "NNP" ], "price-based": [ "JJ" ], "mistook": [ "VBD" ], "Mourning": [ "VBG" ], "abhorrent": [ "JJ" ], "Gevergeyeva": [ "NNP" ], "desk-legs": [ "NN" ], "Jiotto": [ "NNP" ], "melon": [ "NN" ], "Seebohm": [ "NNP" ], "overwrought": [ "JJ" ], "frequency-modulation": [ "NN" ], "more-general": [ "JJ" ], "Intan": [ "NNP" ], "Eleanor": [ "NNP" ], "ex-trucking": [ "JJ" ], "leathered": [ "JJ" ], "artwork": [ "NN" ], "Athletics": [ "NNP", "NNPS", "NNS" ], "Tractor": [ "NNP", "NN" ], "tortillas": [ "NNS" ], "Mycenae": [ "NNP" ], "policeman": [ "NN" ], "unlaced": [ "VBD", "VBN" ], "kingpins": [ "NNS" ], "Wycliffe": [ "NNP" ], "Unofficial": [ "JJ" ], "brothel": [ "NN" ], "red-faced": [ "JJ" ], "svelte": [ "JJ" ], "GLITTER": [ "NN" ], "tree-farming": [ "JJ" ], "slower": [ "JJR", "RBR" ], "Coosa": [ "NNP" ], "Baptiste": [ "NNP" ], "common-position": [ "JJ" ], "less-than-exacting": [ "JJ" ], "steppingstone": [ "NN" ], "slowed": [ "VBD", "VBN" ], "f-Includes": [ "VBZ" ], "Midgetman": [ "NNP" ], "shulde": [ "MD" ], "Schering-Plough": [ "NNP" ], "spin-off": [ "NN", "JJ" ], "heavy-framed": [ "JJ" ], "hymn": [ "NN" ], "Cocktails": [ "NNS" ], "orthodontics": [ "NNS" ], "stressful": [ "JJ" ], "postman": [ "NN" ], "Finmeccanica": [ "NNP" ], "Automotive": [ "NNP", "JJ" ], "tax-paying": [ "JJ" ], "Schulof": [ "NNP" ], "Streeters": [ "NNP", "NNS" ], "Manzanec": [ "NNP" ], "one-page": [ "JJ" ], "amounting": [ "VBG" ], "smokehouse": [ "NN" ], "fortune-cookie": [ "NN" ], "multi-valued": [ "NNS", "JJ" ], "Glennon": [ "NNP" ], "SUSPENDED": [ "VBD" ], "Translant": [ "NNP" ], "push-offs": [ "NNS" ], "cost-recovery": [ "JJ" ], "KLM": [ "NNP" ], "crippled": [ "VBN", "JJ", "VBD" ], "hoarse": [ "JJ" ], "tallying": [ "VBG" ], "Helmsley": [ "NNP" ], "Postipankki": [ "NNP" ], "Hart-Scott-Rodino": [ "NNP", "JJ" ], "snubbed": [ "VBN", "VBD" ], "Crimes": [ "NNP", "NNS" ], "law-abiding": [ "JJ" ], "resonance": [ "NN" ], "automaton": [ "NN" ], "navigation": [ "NN" ], "Pumblechook": [ "NNP" ], "mutters": [ "NNS", "VBZ" ], "rededicate": [ "VB" ], "ribcage": [ "NN" ], "socio-structural": [ "JJ" ], "sawed-off": [ "JJ" ], "Ariel": [ "NNP" ], "chaired": [ "VBN", "JJ", "VBD" ], "pro-shareholder": [ "NN" ], "modifying": [ "VBG" ], "pax-ordo": [ "NN" ], "graduated": [ "VBN", "VBD", "JJ" ], "light-colored": [ "JJ" ], "maelstrom": [ "NN" ], "Bengals": [ "NNPS" ], "not-so-favorite": [ "JJ" ], "dervishes": [ "NNS" ], "XFI": [ "NNP" ], "post-midnight": [ "JJ" ], "dolphins": [ "NNS" ], "Gallet": [ "NN" ], "confounded": [ "VBD", "VBN" ], "middle-age": [ "JJ", "NN" ], "Owasso": [ "NNP" ], "Ninety-Two": [ "NNP" ], "hawkish": [ "JJ" ], "Bengali": [ "JJ", "NNP" ], "dismay": [ "NN" ], "vaguest": [ "JJS" ], "Benefits": [ "NNS" ], "Ramble": [ "NNP" ], "two-tail": [ "JJ" ], "ex-convicts": [ "NNS" ], "steel-hungry": [ "JJ" ], "election-law": [ "NN" ], "Summary": [ "NNP", "NN" ], "Stride": [ "NNP" ], "dismal": [ "JJ" ], "shafts": [ "NNS" ], "Apocalypse": [ "NNP" ], "Sarney": [ "NNP" ], "all-too-brief": [ "JJ" ], "contradicts": [ "VBZ" ], "butterfat": [ "NN" ], "third-rate": [ "JJ" ], "modified": [ "VBN", "JJ", "VBD" ], "longitude": [ "NN" ], "resembles": [ "VBZ" ], "ferry": [ "NN", "VB" ], "modifies": [ "VBZ" ], "modifier": [ "NN" ], "semi-automatic": [ "JJ" ], "vigor": [ "NN" ], "multiple-column": [ "JJ" ], "trump": [ "NN", "VB" ], "railbike": [ "NN" ], "distillation": [ "NN" ], "intimating": [ "VBG" ], "tinted": [ "VBN", "JJ" ], "debt-free": [ "JJ" ], "Buxton": [ "NNP" ], "Farvel-Topsy": [ "NNP" ], "inclosed": [ "VBN" ], "multiplexer": [ "NN" ], "recuperating": [ "VBG" ], "endorsement": [ "NN" ], "bleary": [ "JJ" ], "non-annualized": [ "JJ" ], "procurer": [ "NN" ], "critcism": [ "NN" ], "levy": [ "NN", "VBP", "VB" ], "Soviet-made": [ "JJ" ], "Mahe": [ "NNP" ], "bonfires": [ "NNS" ], "filmstrips": [ "NNS" ], "heartbreaking": [ "JJ" ], "typewritten": [ "JJ", "VBN" ], "doggone": [ "JJ", "UH" ], "Mid": [ "NNP" ], "classroom": [ "NN" ], "COMPARE": [ "VB" ], "branches": [ "NNS" ], "stupidly": [ "RB" ], "warehouse-type": [ "NN" ], "branched": [ "VBN", "JJ", "VBD" ], "lagoon": [ "NN" ], "public-fund": [ "JJ" ], "imagining": [ "VBG" ], "snorkle": [ "NN" ], "scammers": [ "NNS" ], "taut-nerved": [ "JJ" ], "constituents": [ "NNS" ], "preening": [ "VBG" ], "motions": [ "NNS", "VBZ" ], "Zia": [ "NNP" ], "Wardwell": [ "NNP" ], "Folkerts": [ "NNP" ], "tetanus": [ "NN" ], "Glickman": [ "NNP" ], "Rinsing": [ "VBG" ], "LUTHER": [ "NNP" ], "paradoxically": [ "RB" ], "redheaded": [ "JJ" ], "duplex": [ "NN", "JJ" ], "ICL-GE": [ "NNP" ], "redheader": [ "NN" ], "Effects": [ "NNPS" ], "millon": [ "NN" ], "Barristers": [ "NNS" ], "decametrina": [ "NN" ], "ex-Cubs": [ "NNS" ], "hotel-motel": [ "NN" ], "Voyles": [ "NNP" ], "work-study": [ "JJ", "NN" ], "formidably": [ "RB" ], "devastated": [ "VBN", "VBD", "JJ" ], "Odetics": [ "NNP" ], "LINTAS": [ "NNP" ], "Vogue": [ "NNP" ], "Tokuo": [ "NNP" ], "Platonic": [ "JJ", "NNP" ], "Beutel": [ "NNP" ], "frequency-control": [ "JJ" ], "open-end": [ "JJ" ], "advent": [ "NN" ], "realistic": [ "JJ" ], "rangers": [ "NNS" ], "Heels": [ "NNS" ], "Brokaw": [ "NNP" ], "friendlily": [ "RB" ], "oratorio": [ "NN" ], "reconnaissance": [ "NN" ], "rethinking": [ "VBG" ], "wearisome": [ "JJ" ], "most-recent": [ "JJ", "JJS" ], "footing": [ "NN", "VBG" ], "Exploratory": [ "JJ" ], "Abstractions": [ "NNS" ], "Miraculously": [ "RB" ], "distributor": [ "NN" ], "self-government": [ "NN" ], "sunrise": [ "NN" ], "flaccid": [ "JJ" ], "Rosenwald": [ "NNP" ], "export-subsidy": [ "NN" ], "keno": [ "JJ" ], "pollen-inhibiting": [ "JJ" ], "securites": [ "NNS" ], "opportunists": [ "NNS" ], "Cominco": [ "NNP" ], "Experts": [ "NNS" ], "drib-drool": [ "NN" ], "Currys": [ "NNP" ], "money-lending": [ "JJ" ], "pound-deutsche": [ "JJ" ], "hula": [ "NN" ], "hull": [ "NN" ], "Nude": [ "NNP" ], "electrified": [ "VBN" ], "hulk": [ "NN" ], "cleavage": [ "NN" ], "unfriendly": [ "JJ" ], "Musicians": [ "NNS", "NNPS" ], "Ruling": [ "NN", "NNP", "VBG" ], "Cattolica": [ "NNP" ], "accommodation": [ "NN" ], "delude": [ "VB", "VBP" ], "fair-use": [ "JJ" ], "Worriers": [ "NNS" ], "roosters": [ "NNS" ], "flare": [ "NN", "VB", "VBP" ], "peppering": [ "VBG" ], "econometric": [ "JJ" ], "motion": [ "NN" ], "hypnosis": [ "NN" ], "Folkston": [ "NNP" ], "Welfare": [ "NNP", "NN" ], "Touch": [ "NNP" ], "Griselda": [ "NNP" ], "view": [ "NN", "VBP", "VB" ], "weakling": [ "NN" ], "discontinued": [ "VBN", "JJ", "VBD" ], "programing": [ "NN", "VBG" ], "Muskoka": [ "NNP" ], "Giant": [ "NNP", "JJ", "NN" ], "surviving": [ "VBG" ], "Dietrich": [ "NNP" ], "symbolic": [ "JJ" ], "exhaustible": [ "JJ" ], "retainers": [ "NNS" ], "co-head": [ "NN" ], "Citizen": [ "NNP", "NN" ], "W/NNP.R.G.": [ "NNP" ], "non-packaging": [ "JJ" ], "Sonuvabitch": [ "UH" ], "lootings": [ "NNS" ], "statuary": [ "NN" ], "anti-men": [ "JJ" ], "Saperstein": [ "NNP" ], "Capcom": [ "NNP" ], "Stegemeier": [ "NNP" ], "persuasions": [ "NNS" ], "fifteen-sixteenths": [ "NNS" ], "EARNINGS": [ "NNS" ], "lobbyists": [ "NNS" ], "socialites": [ "NNS" ], "white": [ "JJ", "NN" ], "question-and-answer": [ "JJ" ], "accounting-rules": [ "JJ" ], "appointees": [ "NNS" ], "reverie": [ "NN" ], "PDT": [ "NNP" ], "anti-vivisectionists": [ "NNS" ], "PDN": [ "NNP" ], "down-and-out": [ "JJ" ], "deceleration": [ "NN" ], "PDI": [ "NNP" ], "Indelicato": [ "NNP" ], "Disclosures": [ "NNS" ], "wide": [ "JJ", "RB" ], "DiGiorgio": [ "NNP" ], "survivals": [ "NNS" ], "crowded": [ "VBN", "VBD", "JJ" ], "spokeswoman": [ "NN" ], "poisoning": [ "NN", "VBG|NN", "VBG" ], "recreational-vehicle": [ "NN", "JJ" ], "cross-buying": [ "NN" ], "Caucasus": [ "NN" ], "Victimization": [ "NN" ], "Thorstein": [ "NNP" ], "pompousness": [ "NN" ], "confessed": [ "VBD", "VBN" ], "pre-Gorbachev": [ "JJ" ], "Lavin": [ "NNP" ], "tanning": [ "NN" ], "downdraft": [ "NN" ], "dryness": [ "NN" ], "prosperity": [ "NN" ], "Consumer-electronics": [ "NNS" ], "Cartridge": [ "NNP" ], "balance-sheet": [ "NN", "JJ" ], "Yankton": [ "NNP" ], "fondest": [ "JJS" ], "product-monoclonal": [ "JJ" ], "keynotes": [ "NNS" ], "strengths": [ "NNS" ], "dynamited": [ "VBN" ], "hyperfine": [ "JJ" ], "Vuitton": [ "NNP" ], "multiple": [ "JJ", "NN" ], "MLD": [ "NNP" ], "tornado": [ "NN" ], "MLR": [ "NNP" ], "boiling": [ "VBG", "NN" ], "Nissin": [ "NNP" ], "moldy": [ "JJ" ], "preferrance": [ "NN" ], "multiply": [ "VB", "VBP" ], "MLX": [ "NNP" ], "encoder": [ "NN" ], "dried-up": [ "JJ" ], "Maize-Products": [ "NNPS" ], "nonaddictive": [ "JJ" ], "thigh-bone": [ "NN" ], "Verbal": [ "JJ", "NNP" ], "Salads": [ "NNS" ], "seafood": [ "NN" ], "Corabi": [ "NNP" ], "playing": [ "VBG", "JJ", "NN" ], "mountainous": [ "JJ" ], "hairtonic": [ "NN" ], "Beadles": [ "NNP" ], "readjust": [ "VB" ], "cuddled": [ "VBD" ], "quantity": [ "NN" ], "slope": [ "NN" ], "Lukman": [ "NNP" ], "Sorenson": [ "NNP" ], "idealisms": [ "NNS" ], "hack": [ "NN", "VB" ], "pre-emptive": [ "JJ" ], "blue-eyed": [ "JJ" ], "polyisocyanate": [ "NN" ], "multiplexers": [ "NNS" ], "crimped": [ "JJ", "VBN" ], "Lyndon": [ "NNP" ], "well-wishers": [ "NNS" ], "Concurrent": [ "JJ" ], "fickle": [ "JJ" ], "Jordan\\/Zalaznick": [ "NNP" ], "Gallen": [ "NNP" ], "blue-eyes": [ "NNS" ], "Telling": [ "VBG" ], "cautioned": [ "VBD", "VBN" ], "subjugated": [ "JJ" ], "welled": [ "VBD" ], "lighted": [ "VBN", "VBD", "JJ" ], "mistrial": [ "NN" ], "viewpoint": [ "NN" ], "Loewenson": [ "NNP" ], "lighten": [ "VB" ], "Violence": [ "NNP", "NN" ], "Athenian": [ "JJ" ], "Sieux": [ "NNP" ], "Gwendolyn": [ "NNP" ], "radiations": [ "NNS" ], "clerks": [ "NNS" ], "Eleazar": [ "NNP" ], "Similar": [ "JJ" ], "veiled": [ "VBN", "JJ" ], "aluminum": [ "NN", "JJ" ], "Sankai": [ "NNP" ], "Kona": [ "NNP" ], "impolite": [ "JJ" ], "Kong": [ "NNP" ], "naked": [ "JJ" ], "Minute": [ "NNP" ], "Cycle": [ "NNP" ], "Collector": [ "NNP", "NN" ], "ignored": [ "VBN", "VBD" ], "head-butting": [ "JJ" ], "music-entertainment": [ "NN" ], "encourages": [ "VBZ" ], "professes": [ "VBZ" ], "emote": [ "VB" ], "Westford": [ "NNP" ], "downfall...": [ ":" ], "Ettore": [ "NNP" ], "ignores": [ "VBZ" ], "state-federal": [ "JJ" ], "bluntness": [ "NN" ], "professed": [ "VBD", "VBN", "JJ" ], "encouraged": [ "VBN", "VBD", "JJ" ], "non-systematic": [ "JJ" ], "visceral": [ "JJ" ], "pemmican": [ "NN" ], "addled": [ "JJ", "VBN" ], "truck-manufacturing": [ "JJ" ], "spoons": [ "NNS" ], "husband-wife": [ "JJ" ], "Quennell": [ "NNP" ], "unappealing": [ "VBG", "JJ" ], "arrival": [ "NN" ], "Differential": [ "JJ" ], "Frampton": [ "NNP" ], "thunderstruck": [ "JJ" ], "originated": [ "VBD", "JJ", "VBN", "VBP" ], "scavengers": [ "NNS" ], "George-Barden": [ "NNP" ], "Renchard": [ "NNP" ], "fiddling": [ "NN", "JJ", "VBG" ], "overcharge": [ "NN" ], "nuclear-industry": [ "NN" ], "Reasonable": [ "JJ" ], "uncircumcision": [ "NN" ], "coma": [ "NN" ], "comb": [ "NN", "VB" ], "come": [ "VB", "VBD", "VBN", "VBP", "VBZ", "JJ" ], "interdicting": [ "VBG" ], "Muffin": [ "NNP" ], "reaction": [ "NN" ], "Freedman": [ "NNP" ], "reappraisal": [ "NN" ], "superstar": [ "NN" ], "Winterthur-based": [ "JJ" ], "columnist": [ "NN" ], "reverberation": [ "NN" ], "non-oil": [ "JJ" ], "power-generation": [ "NN", "JJ" ], "mid-1970": [ "NN" ], "provocation": [ "NN" ], "swaggering": [ "VBG" ], "mid-1979": [ "NN" ], "sale\\/leaseback": [ "NN" ], "single-season": [ "JJ" ], "dispatch": [ "NN", "VB" ], "Futotsu": [ "FW" ], "Retails": [ "NNS" ], "ZBB": [ "NNP" ], "Morcott": [ "NNP" ], "Teodulo": [ "NNP" ], "desktop-computer": [ "NN" ], "Bicycling": [ "NNP" ], "immunodeficiency": [ "NN" ], "TRUSTS": [ "NNS" ], "finger-tips": [ "NNS" ], "deposited": [ "VBN", "VBD" ], "declining": [ "VBG", "JJ", "NN" ], "Herscu": [ "NNP" ], "Excess": [ "JJ" ], "enraptured": [ "VBD", "VBN" ], "co-existence": [ "NN" ], "Peale": [ "NNP" ], "religiously": [ "RB" ], "Neb.": [ "NNP" ], "taffeta": [ "NN" ], "Rosemont": [ "NNP" ], "Deanna": [ "NNP" ], "Mass.-based": [ "JJ", "NNP" ], "Inouye": [ "NNP" ], "Yukio": [ "NNP" ], "twigs": [ "NNS" ], "assessories": [ "NNS" ], "WEIRTON": [ "NNP" ], "allnight": [ "JJ" ], "Al-Faqih": [ "NNP" ], "movie-production": [ "NN", "JJ" ], "shops": [ "NNS", "VBZ" ], "war-damaged": [ "JJ" ], "Alexander": [ "NNP" ], "Brosterman": [ "NNP" ], "bunters": [ "NNS" ], "Zendo": [ "NNP" ], "systemization": [ "NN" ], "pull-out": [ "NN" ], "capping": [ "VBG", "NN" ], "Jacinto": [ "NNP" ], "Followin": [ "VBG" ], "whirred": [ "VBD" ], "about-faced": [ "VBD" ], "employment-tax": [ "JJ" ], "mold": [ "NN", "VB", "VBP" ], "locking": [ "JJ", "VBG" ], "confidant": [ "NN" ], "attributing": [ "VBG" ], "bows": [ "NNS", "VBZ" ], "less-experienced": [ "JJ" ], "Hazards": [ "NNS" ], "soggier": [ "NN" ], "physical": [ "JJ", "NN" ], "cost-to-benefit": [ "JJ" ], "circulatory": [ "JJ" ], "high-production": [ "JJ" ], "I\\": [ "NNP" ], "mockery": [ "NN" ], "passenger-reservation": [ "NN" ], "IS": [ "VBZ" ], "barges": [ "NNS", "VBZ" ], "IT": [ "PRP" ], "muffled": [ "JJ", "VBD", "VBN" ], "IV": [ "NNP" ], "octahedron": [ "NN" ], "macroeconomic": [ "JJ" ], "canister": [ "NN" ], "IN": [ "IN", "RB", "RP" ], "muffler": [ "NN" ], "IC": [ "NNP" ], "barged": [ "VBN", "VBD" ], "Dynamics": [ "NNP", "NNPS" ], "IG": [ "NNP" ], "IF": [ "IN" ], "longing": [ "NN", "VBG" ], "gerrymandering": [ "NN" ], "sed": [ "VBD" ], "perennial": [ "JJ" ], "swatches": [ "NNS" ], "caressing": [ "VBG", "NN" ], "It": [ "PRP", "NNP" ], "flexicoker": [ "NN" ], "Yakovlevich": [ "NNP" ], "Il": [ "FW", "NNP" ], "Io": [ "NNP" ], "In": [ "IN", "RBR", "JJ", "RB", "NNP" ], "foyer": [ "NN" ], "Id": [ "NN" ], "Philmont": [ "NNP" ], "tweedy": [ "JJ" ], "desolate": [ "JJ" ], "tweeds": [ "NNS" ], "captures": [ "VBZ", "NNS" ], "drafters": [ "NNS" ], "Woodland": [ "NNP" ], "violent": [ "JJ" ], "Farnworth": [ "NNP" ], "cable-TV": [ "NN", "NNP" ], "kneeling": [ "VBG" ], "captured": [ "VBN", "VBN|JJ", "VBD" ], "gentleness": [ "NN" ], "Broadly": [ "RB" ], "Lanham": [ "NNP" ], "tourist-advertising": [ "NN" ], "MacLean": [ "NNP" ], "worthier": [ "JJR" ], "Jets": [ "NNP", "NNS" ], "scrapbook": [ "NN" ], "styles": [ "NNS" ], "carpeting": [ "NN" ], "mugged": [ "VBN" ], "Terminaling": [ "NNP" ], "fridge": [ "NN" ], "Solomon": [ "NNP" ], "styled": [ "VBN", "VBD", "JJ" ], "Aber": [ "FW" ], "correcting": [ "VBG", "NN" ], "unwilling": [ "JJ" ], "Came": [ "VBD" ], "romanticizing": [ "NN" ], "championing": [ "VBG" ], "N.V.": [ "NNP" ], "Thermopylae": [ "NNP" ], "Pin": [ "VB" ], "Pia": [ "NNP" ], "Pic": [ "NNP" ], "Turbulent": [ "JJ" ], "Pie": [ "NNP" ], "clays": [ "NNS" ], "Spoken": [ "NNP" ], "Hafner": [ "NNP" ], "most-likely-successor": [ "JJ" ], "Pip": [ "NNP" ], "Pit": [ "NN" ], "costume-jewelry": [ "NN" ], "shunned": [ "VBD", "VBN" ], "Chapin": [ "NNP" ], "Since": [ "IN", "RB" ], "divestment": [ "NN" ], "hell-kitten": [ "NN" ], "perspiration": [ "NN" ], "value-added": [ "JJ" ], "Abex": [ "NNP" ], "multimillion-dollar": [ "JJ", "NN" ], "Destroy": [ "NNP" ], "Three-part": [ "JJ" ], "pre-Hugo": [ "JJ" ], "slice": [ "NN", "VB", "VBP" ], "Dulaney": [ "NNP" ], "slick": [ "JJ", "NN" ], "Visibility": [ "NN" ], "Creditanstalt": [ "NNP" ], "Right-to-Die": [ "JJ" ], "Perennial": [ "JJ", "NNP" ], "Castellanos": [ "NNP" ], "self-chosen": [ "JJ" ], "Raether": [ "NNP" ], "foreign-loan": [ "JJ" ], "sensitive-area": [ "NN" ], "itching": [ "VBG", "NN" ], "inspect": [ "VB", "VBP" ], "loudest": [ "JJS", "RBS" ], "voracious": [ "JJ" ], "seven-year": [ "JJ" ], "fabled": [ "JJ" ], "VOTED": [ "VBD" ], "videocam": [ "NN" ], "healthiest": [ "JJS" ], "insurance-rate": [ "JJ" ], "earlier": [ "RBR", "JJR", "JJ", "NN", "RB" ], "baffled": [ "VBN", "JJ", "VBD" ], "Cubist": [ "NN" ], "Snakes": [ "NNS" ], "knite": [ "NN" ], "non-productive": [ "JJ" ], "self-fulfilling": [ "JJ" ], "Bufton": [ "NNP" ], "scornful": [ "JJ" ], "chive": [ "NN" ], "Datacrime": [ "NNP" ], "Cubism": [ "NN", "NNP" ], "Eddington": [ "NNP" ], "Dairl": [ "NNP" ], "modernists": [ "NNS" ], "industry-funded": [ "JJ" ], "revolutionaries": [ "NNS" ], "scoffed": [ "VBD", "VBN" ], "Coykendall": [ "NNP" ], "determing": [ "VBG" ], "determine": [ "VB", "VBP" ], "inadvertent": [ "JJ" ], "Stoyer": [ "NNP" ], "backwater": [ "NN", "JJ" ], "calamities": [ "NNS" ], "funerals": [ "NNS" ], "hoarding": [ "NN", "VBG" ], "Dutch-elm-disease": [ "NN" ], "disposed": [ "VBN", "JJ", "VBD" ], "dispersion": [ "NN" ], "ferris": [ "JJ" ], "Hanover-Chalidale": [ "NNP" ], "expatriate": [ "JJ" ], "disposes": [ "VBZ" ], "valley": [ "NN" ], "energy": [ "NN" ], "municipalities": [ "NNS" ], "rainless": [ "JJ" ], "vested": [ "VBN", "JJ" ], "fundamentals": [ "NNS" ], "tranquility": [ "NN" ], "first-phase": [ "JJ" ], "docks": [ "NNS" ], "RDF": [ "NNP" ], "OOH": [ "NNP" ], "fabricate": [ "VB", "VBP" ], "temperaments": [ "NNS" ], "Brinker": [ "NNP" ], "Wacky": [ "NNP" ], "tiptoe": [ "VB" ], "Koepf": [ "NNP" ], "sure-enough": [ "JJ" ], "life-insurance": [ "NN", "JJ" ], "POWERS": [ "NNS" ], "Special": [ "JJ", "NNP" ], "toilet": [ "NN" ], "personal-injury": [ "JJ", "NN" ], "surly": [ "JJ" ], "contributors": [ "NNS" ], "cinema": [ "NN" ], "modules": [ "NNS" ], "Herry": [ "NNP" ], "contributory": [ "JJ" ], "Merrimack": [ "NNP" ], "Mission": [ "NNP", "NN" ], "high-spirited": [ "JJ" ], "toiled": [ "VBD", "VBN" ], "trundle": [ "NN", "VBP" ], "together": [ "RB", "IN", "RP" ], "ingeniously": [ "RB" ], "Shimizu": [ "NNP" ], "spends": [ "VBZ" ], "tracings": [ "NNS" ], "Golomb": [ "NNP" ], "area-code": [ "JJ" ], "swords": [ "NNS" ], "Avalon": [ "NNP" ], "tax-deferred": [ "JJ" ], "sworde": [ "NN" ], "Motoren-und": [ "NNP" ], "championship": [ "NN" ], "Plessis": [ "NNP", "NN" ], "Naval": [ "NNP", "JJ" ], "whiskery": [ "JJ" ], "anylabel": [ "NN" ], "symbol": [ "NN" ], "midair": [ "NN" ], "cove": [ "NN" ], "Ghormley": [ "NNP" ], "Poduska": [ "NNP" ], "staunchly": [ "RB" ], "Refiners": [ "NNS" ], "hawk-hatching": [ "JJ" ], "Additives": [ "NNPS" ], "booked": [ "VBN", "VBD" ], "calls": [ "VBZ", "NNS", "NN" ], "synergies": [ "NNS" ], "associatively": [ "RB" ], "thirty-caliber": [ "JJ" ], "exhausting": [ "VBG", "JJ" ], "arm-elevation": [ "NN" ], "booker": [ "NN" ], "Republican-controlled": [ "JJ" ], "endangered-species": [ "NNS" ], "Gateway": [ "NNP" ], "death-wish": [ "NN" ], "nurseries": [ "NNS" ], "small-car": [ "NN" ], "Tube": [ "NNP" ], "small-cap": [ "JJ" ], "outpacing": [ "VBG" ], "Pharmical": [ "NNP" ], "lower-court": [ "JJ", "NN" ], "Evansville": [ "NNP" ], "propagandizes": [ "VBZ" ], "long-deprived": [ "JJ" ], "sh-ts": [ "NN" ], "Jutting": [ "VBG" ], "Major-League": [ "NNP" ], "Baytos": [ "NNP" ], "desktop-presentation": [ "JJ" ], "high-security": [ "JJ" ], "Japanese-supplied": [ "JJ" ], "Trees": [ "NNP", "NNS" ], "infirmary": [ "NN" ], "longtime": [ "JJ", "NN" ], "St.-Pol": [ "NNP" ], "urea": [ "NN" ], "Iowa-based": [ "JJ" ], "grinds": [ "VBZ", "NNS" ], "Choong": [ "NNP" ], "howlers": [ "NNS" ], "ultraviolet": [ "JJ", "NN" ], "reordering": [ "NN", "VBG" ], "Distiller": [ "NN" ], "salmonella": [ "NN" ], "Bawer": [ "NNP" ], "prolonged": [ "VBN", "VBD", "JJ" ], "Trimble": [ "NNP" ], "RICO": [ "NNP" ], "cement-mixing": [ "JJ" ], "quipped": [ "VBD", "NN" ], "Rarely": [ "RB" ], "Lathouris": [ "NNP" ], "vanilla": [ "NN" ], "Hellfire": [ "NNP" ], "dexterity": [ "NN" ], "Rancho": [ "NNP" ], "Bridgestone": [ "NNP" ], "professing": [ "VBG" ], "Corp.-Toyota": [ "JJ" ], "busing": [ "VBG" ], "Shopping": [ "NNP", "VBG", "NN" ], "Hilliard": [ "NNP" ], "disobedience": [ "NN" ], "resettled": [ "VBN" ], "aptly": [ "RB" ], "Theological": [ "NNP" ], "Subsidiaries": [ "NNS" ], "well-prepared": [ "JJ" ], "Gilborn": [ "NNP" ], "oncoming": [ "JJ" ], "Brigadoon": [ "NNP" ], "anniversary": [ "NN" ], "disburses": [ "VBZ" ], "Neo-Ecclesiasticism": [ "NNP" ], "disbursed": [ "VBN", "VBD" ], "frightens": [ "VBZ" ], "Zermatt": [ "NNP" ], "Pauline": [ "NNP" ], "Short": [ "JJ", "RB", "NNP" ], "lacquer": [ "NN" ], "prognoses": [ "NNS" ], "Helpern": [ "NNP" ], "overstatement": [ "NN" ], "supposedly": [ "RB" ], "wild": [ "JJ", "RB" ], "Shore": [ "NNP", "NN" ], "hopelessness": [ "NN" ], "relaxation": [ "NN" ], "Ankeny": [ "NNP" ], "Shorn": [ "VBN" ], "somewheres": [ "RB" ], "skidded": [ "VBD", "VBN" ], "observing": [ "VBG" ], "thrift": [ "NN" ], "handlers": [ "NNS" ], "Richardson-Vicks": [ "NNP" ], "allows": [ "VBZ" ], "Halleck": [ "NNP" ], "Sponge": [ "NNP" ], "TEAMSTERS": [ "NNPS" ], "graph": [ "NN" ], "MORE": [ "JJR", "RBR", "RB" ], "stand-in": [ "NN" ], "hump": [ "NN" ], "Sheriff": [ "NNP", "NN" ], "suddenly": [ "RB" ], "semiconductors": [ "NNS", "VBZ" ], "vertebral": [ "JJ" ], "genealogies": [ "NNS" ], "fearfully": [ "RB" ], "Gant": [ "NNP" ], "much-revised": [ "JJ" ], "vertebrae": [ "NNS" ], "Evaluation": [ "NN", "NNP" ], "acumen": [ "NN" ], "Columbus": [ "NNP", "NN" ], "Comerica": [ "NNP" ], "wield": [ "VB", "VBP" ], "T-shirt": [ "NN", "NNS" ], "Sovietologist": [ "NN" ], "demeaned": [ "VBN" ], "permanently": [ "RB" ], "pausing": [ "VBG" ], "Tobacco": [ "NNP", "NN" ], "Bandow": [ "NNP" ], "re-elected": [ "VBN", "JJ", "VBD" ], "Ten-year-old": [ "NNP", "JJ" ], "Shropshire": [ "NNP" ], "outlawry": [ "NN" ], "stethoscope": [ "NN" ], "Francisco-area": [ "JJ", "NNP" ], "Barriers": [ "NNS" ], "MobiTel": [ "NNP" ], "three-masted": [ "JJ" ], "soloists": [ "NNS" ], "Approaching": [ "VBG" ], "undreamed": [ "VBN", "JJ" ], "Kabul": [ "NNP" ], "berth": [ "NN" ], "Toulouse": [ "NNP" ], "trappings": [ "NNS" ], "location-minded": [ "JJ" ], "instrumental-reward": [ "JJ" ], "shielded": [ "VBN", "VBD" ], "infests": [ "VBZ" ], "mainframe-manufacturing": [ "NN" ], "Goldwater": [ "NNP" ], "tapioca": [ "NN" ], "oat-based": [ "JJ" ], "cross-react": [ "VBP" ], "Sows": [ "NNS" ], "CARE": [ "NNP" ], "palest": [ "JJS" ], "Brahmsian": [ "JJ" ], "prompting": [ "VBG", "NN" ], "joints": [ "NNS" ], "Cresswell": [ "NNP" ], "super-strict": [ "JJ" ], "Lyphomed": [ "NNP" ], "trading-house": [ "JJ" ], "Speaker": [ "NNP", "NN" ], "urinals": [ "NNS" ], "Paterson": [ "NNP" ], "drug-consuming": [ "JJ" ], "more-efficient": [ "JJ" ], "chores": [ "NNS" ], "Dresden": [ "NNP", "JJ", "NN" ], "benzodiazepines": [ "NNS" ], "Electron": [ "NNP", "NN" ], "stemming": [ "VBG" ], "whore": [ "NN" ], "toxicologist": [ "NN" ], "buzzword": [ "NN" ], "hoaxes": [ "NNS" ], "Improve": [ "VB" ], "mould": [ "VB" ], "simplicity": [ "NN" ], "tollgate": [ "NN" ], "three-lawyer": [ "JJ" ], "Lowell": [ "NNP" ], "Metzenbaums": [ "NNPS" ], "Hanft": [ "NNP" ], "reflect": [ "VB", "VBP" ], "Etch-a-Sketch": [ "NNP" ], "cowpony": [ "NN" ], "Mackinac": [ "NNP" ], "ballads": [ "NNS" ], "equivalent-choice": [ "JJ" ], "replete": [ "JJ" ], "shortcomings": [ "NNS" ], "Fairbrothers": [ "NNP" ], "Seas": [ "NNP", "NNPS" ], "Sear": [ "VB" ], "counter-intelligence": [ "JJ" ], "departure": [ "NN" ], "Seat": [ "NN" ], "groundless": [ "JJ" ], "funeral-accessories": [ "NNS" ], "cross-legged": [ "JJ" ], "Seal": [ "NNP" ], "Psithyrus": [ "NNP" ], "Witman": [ "NNP" ], "Describing": [ "VBG" ], "magnanimity": [ "NN" ], "best-case": [ "JJ" ], "Oce": [ "NNP" ], "Weizsaecker": [ "NNP" ], "dissolving": [ "VBG", "JJ" ], "quarrels": [ "NNS", "VBZ" ], "unusually": [ "RB" ], "Shillong": [ "NNP" ], "Asian-American": [ "JJ" ], "Brunswick": [ "NNP" ], "forgiving": [ "VBG", "JJ" ], "Polyakova": [ "NNP" ], "March": [ "NNP" ], "reference-points": [ "NNS" ], "bridged-T": [ "NNP" ], "inward": [ "RB", "JJ" ], "appeals.": [ "NNS" ], "prodigy": [ "NN" ], "harmless": [ "JJ" ], "verifiably": [ "RB" ], "HOCKEY": [ "NN" ], "Opposition": [ "NN" ], "self-willed": [ "JJ" ], "Bowing": [ "VBG" ], "Shaiken": [ "NNP" ], "public...": [ ":" ], "cantons": [ "NNS" ], "MGM\\/UA": [ "NNP", "JJ", "NN" ], "return": [ "NN", "VBP", "JJ", "VB" ], "racoons": [ "NNS" ], "Downbeat": [ "NNP" ], "Mephistopheles": [ "NNP" ], "arbitrageur": [ "NN" ], "state-of-the-market": [ "JJ" ], "Complexity": [ "NN" ], "cigarettes": [ "NNS" ], "corpocrat": [ "NN" ], "milestone": [ "NN" ], "Rotenberg": [ "NNP" ], "dividend-related": [ "JJ" ], "SURGED": [ "VBD" ], "ginning": [ "NN" ], "Rag": [ "NNP" ], "Rae": [ "NNP" ], "Ran": [ "VBD" ], "penalty-lending": [ "JJ" ], "Ram": [ "NNP" ], "Raj": [ "NNP" ], "reservists": [ "NNS" ], "Eight-foot-tall": [ "JJ" ], "cobblestones": [ "NNS" ], "Rat": [ "NNP" ], "streamside": [ "NN" ], "Rap": [ "NN" ], "self-acceptance": [ "NN" ], "Sport": [ "NNP", "NN" ], "McNeil": [ "NNP" ], "Rax": [ "NNP" ], "Ray": [ "NNP", "NNPS", "NN" ], "pirates": [ "NNS" ], "assemblage": [ "NN" ], "needless": [ "JJ" ], "generation": [ "NN" ], "Fichte": [ "NNP" ], "Foothills": [ "NNP", "NNS" ], "Burke-Rostagno": [ "NNP" ], "pirated": [ "VBN" ], "Complex": [ "NNP", "JJ" ], "are...": [ ":" ], "Warehouse": [ "NNP", "NN" ], "Vappenfabrikk": [ "NNP" ], "wangled": [ "VBD" ], "platform-controller": [ "NN" ], "theologians": [ "NNS" ], "Fiap": [ "NNP" ], "Cinemactor": [ "NNP" ], "Lakes": [ "NNPS", "NNP" ], "sea-turtle-saving": [ "JJ" ], "Pullover": [ "NNP" ], "Prophet": [ "NNP" ], "mildewy": [ "JJ" ], "paleoexplosion": [ "NN" ], "kilns": [ "NNS" ], "Univest": [ "NNP" ], "fiber": [ "NN" ], "gimbaled": [ "JJ" ], "causally": [ "RB" ], "Camerino": [ "NNP" ], "enveloping": [ "VBG" ], "big-deposit": [ "JJ" ], "Tambo": [ "NNP" ], "pullbacks": [ "NNS" ], "MTU": [ "NNP" ], "stage-managing": [ "NN" ], "Playworld": [ "NNP" ], "Wingback": [ "NNP" ], "thread": [ "NN" ], "success": [ "NN" ], "Breakthrough": [ "NNP" ], "Dorian": [ "NNP" ], "Scherer": [ "NNP" ], "threat": [ "NN" ], "WGBH": [ "NNP" ], "Praises": [ "VBZ" ], "wide-scale": [ "JJ" ], "radical": [ "JJ", "NN" ], "churning": [ "VBG", "NN" ], "cloddishness": [ "NN" ], "Westdeutsche": [ "NNP" ], "unredeemed": [ "JJ" ], "desegregation": [ "NN" ], "Jacky": [ "NNP" ], "abrogated": [ "VBN" ], "output-axis": [ "NN" ], "semi-minor": [ "JJ" ], "Olof": [ "NNP" ], "script": [ "NN" ], "interact": [ "VBP", "VB" ], "coasts": [ "NNS" ], "Clancy": [ "NNP" ], "doomsday": [ "NN" ], "Aircraft": [ "NNP", "NNS" ], "ever-so-Oxonian": [ "JJ" ], "Rubbish": [ "NN" ], "pitted": [ "VBN", "VBD" ], "financer": [ "NN" ], "finances": [ "NNS", "VBZ" ], "imperfect": [ "JJ" ], "Rollie": [ "NNP" ], "boilerplate": [ "NN" ], "gagwriters": [ "NNS" ], "dethroned": [ "VBN" ], "exploded": [ "VBD", "VBN" ], "litigated": [ "VBN" ], "convinces": [ "VBZ" ], "Boston-based": [ "JJ" ], "Rollin": [ "NNP" ], "intergrated-steel": [ "NN" ], "indecisively": [ "RB" ], "non-competitive": [ "JJ" ], "Unifil": [ "NNP" ], "convinced": [ "VBN", "VBN|JJ", "VBD", "JJ" ], "explodes": [ "VBZ" ], "time-servers": [ "NNS" ], "throttle": [ "NN" ], "dans": [ "FW" ], "stall": [ "NN", "VB" ], "stalk": [ "VBP" ], "consumer-finance": [ "JJ" ], "cradle-to-grave": [ "JJ" ], "dang": [ "JJ" ], "Winthrop-University": [ "NNP" ], "stale": [ "JJ" ], "MD-82s": [ "NNPS" ], "cleaner": [ "JJR", "NN" ], "depletes": [ "VBZ" ], "IIcx": [ "NNP" ], "gals": [ "NNS" ], "globulin": [ "NN" ], "imports": [ "NNS", "VBZ" ], "Reilly": [ "NNP" ], "decadent": [ "JJ" ], "needs": [ "VBZ", "NNS", "VBP", "VB" ], "gale": [ "NN" ], "IIci": [ "NNP" ], "oaken": [ "JJ" ], "depleted": [ "VBN", "VBD" ], "cleaned": [ "VBN", "VBD" ], "gall": [ "NN", "VB" ], "Steinkuehler": [ "NNP" ], "federal-state": [ "JJ", "NN" ], "Perkins": [ "NNP" ], "Agoeng": [ "NNP" ], "seven-story": [ "JJ" ], "Bullet": [ "NNP" ], "thiamin": [ "NN" ], "cropped": [ "VBD", "VBN" ], "sherry": [ "NN" ], "gains": [ "NNS", "NN", "VBZ" ], "unperturbed": [ "JJ" ], "re-sharpening": [ "NN" ], "broadcastings": [ "NNS" ], "ARF": [ "NNP" ], "headstones": [ "NNS" ], "park": [ "NN", "VB" ], "Klopfenstein": [ "NNP" ], "fresco": [ "NN" ], "Benzes": [ "NNP" ], "Meltex": [ "NNP" ], "little-girl": [ "JJ" ], "coastal": [ "JJ" ], "Melted": [ "VBN" ], "Gotschall": [ "NNP" ], "Tabarro": [ "FW" ], "explicable": [ "JJ" ], "seasons": [ "NNS" ], "machete": [ "NN" ], "infrastructures": [ "NNS" ], "polyethylene": [ "NN" ], "Volta": [ "NNP" ], "doggie": [ "JJ" ], "Creation": [ "NN" ], "lowest-paying": [ "JJ" ], "Straus": [ "NNP" ], "unheralded": [ "JJ" ], "Gracie": [ "NNP" ], "pizzazz": [ "NN" ], "spiralis": [ "NNS" ], "pottery": [ "NN" ], "wree": [ "NN" ], "health-coverage": [ "NN" ], "fond": [ "JJ", "NN", "VB" ], "changed...": [ ":" ], "antilock": [ "JJ" ], "Suor": [ "FW" ], "font": [ "NN" ], "feedstock": [ "NN" ], "endocrinologists": [ "NNS" ], "Launder": [ "NNP" ], "Reaganauts": [ "NNS" ], "technologically": [ "RB" ], "ground-based": [ "JJ" ], "Masato": [ "NNP" ], "reconnoiter": [ "VBP" ], "Highest": [ "JJS" ], "arrowheads": [ "NNS" ], "sacking": [ "VBG" ], "mudwagon": [ "NN" ], "Antinori": [ "NNP" ], "Haijac": [ "NNP" ], "better-off": [ "JJR", "JJ" ], "citybred": [ "JJ" ], "Russian-language": [ "JJ" ], "bug-free": [ "JJ" ], "concededly": [ "RB" ], "relational": [ "JJ" ], "instinctive": [ "JJ" ], "Yorkshire": [ "NNP" ], "Institutions": [ "NNS", "NNP", "NNPS" ], "Passenger": [ "NN", "NNP" ], "Bible-loving": [ "JJ" ], "crucifying": [ "VBG" ], "Marchers": [ "NNPS" ], "noncustomer": [ "NN" ], "Chamorro": [ "NNP" ], "sacrificium": [ "FW" ], "cartoons": [ "NNS" ], "Litvack": [ "NNP" ], "baroque": [ "JJ", "NN" ], "Jellison": [ "NNP" ], "tourney": [ "NN" ], "rainout": [ "NN" ], "stump": [ "NN", "VB" ], "pvt": [ "NN" ], "dump": [ "VB", "VBP", "NN" ], "CITIZEN": [ "NNP" ], "boulders": [ "NNS" ], "Negotiators": [ "NNS" ], "arb": [ "NN" ], "arc": [ "NN", "VB" ], "dumb": [ "JJ" ], "are": [ "VBP", "NNP" ], "facings": [ "NNS" ], "cleverly": [ "RB" ], "unsure": [ "JJ" ], "arm": [ "NN", "VB" ], "Mineral": [ "NNP" ], "Pavlov": [ "NNP" ], "book-publishing": [ "NN", "JJ" ], "EP-3E": [ "NNP" ], "roundhead": [ "NN", "JJ" ], "freshmen": [ "NNS" ], "unpaved": [ "JJ" ], "drooping": [ "VBG" ], "Dongen": [ "NNP" ], "unions": [ "NNS" ], "plywood": [ "NN" ], "banalities": [ "NNS" ], "file-those": [ "NN" ], "Finders": [ "NNP" ], "Commerzbank": [ "NNP" ], "conqueror": [ "NN" ], "Streisand": [ "NNP" ], "ulcerative": [ "JJ" ], "Fax": [ "NNP", "NN" ], "dandily": [ "RB" ], "Fay": [ "NNP" ], "importers": [ "NNS" ], "opposition": [ "NN" ], "fetchingly": [ "RB" ], "Zara": [ "NNP" ], "Hardee": [ "NNP" ], "clods": [ "NNS" ], "MINOR": [ "JJ", "NNP" ], "orphanage": [ "NN" ], "movers": [ "NNS" ], "fascicles": [ "NNS" ], "textile-producing": [ "JJ" ], "no-fat": [ "JJ" ], "Appropriate": [ "JJ" ], "Cornfield": [ "NNP" ], "trouble-shooter": [ "NN" ], "fraternity": [ "NN" ], "axiological": [ "JJ" ], "reassessed": [ "VBD" ], "enchained": [ "VBN" ], "finds": [ "VBZ", "NNS" ], "Hallowell": [ "NNP" ], "Birch": [ "NNP" ], "unsigned": [ "JJ" ], "renationalize": [ "VB" ], "incandescent": [ "JJ" ], "untracked": [ "JJ" ], "pursue": [ "VB", "VBP" ], "semipublic": [ "JJ" ], "acrid": [ "JJ" ], "eyewitness": [ "NN", "JJ" ], "sever": [ "VB", "VBP" ], "suspenders": [ "NNS" ], "thermodynamics": [ "NNS" ], "AT&T-sponsored": [ "JJ" ], "Indocin": [ "NNP" ], "Kompakt": [ "NNP" ], "watchword": [ "NN" ], "Plan": [ "NNP", "NN" ], "per-sale": [ "JJ" ], "Fan": [ "NNP", "VB" ], "waypoint": [ "NN" ], "debasing": [ "VBG" ], "super-secret": [ "JJ" ], "AP600": [ "NN" ], "loan-by-phone": [ "JJ" ], "ten-hour": [ "JJ" ], "misbehaving": [ "VBG" ], "heighten": [ "VB" ], "Mindscape": [ "NNP" ], "Motsoaledi": [ "NNP" ], "civility": [ "NN" ], "churchly": [ "JJ" ], "pitchfork": [ "NN" ], "behavior": [ "NN" ], "long-hoped-for": [ "JJ" ], "moustache": [ "NN" ], "Examiners": [ "NNP", "NNS" ], "all-black": [ "JJ" ], "Jaguar-GM": [ "NNP", "JJ" ], "Colonia": [ "NNP" ], "Affaire": [ "NNP" ], "Tip": [ "NNP" ], "micromanagement": [ "NN" ], "rip": [ "VB", "NN" ], "shamrock": [ "NN" ], "ecstasy": [ "NN" ], "Tin": [ "NNP" ], "rim": [ "NN", "VBP" ], "TRACY-LOCKE": [ "NNP" ], "rig": [ "NN", "VBP", "VB" ], "rid": [ "JJ", "VBN|JJ", "VBD", "VBN", "RB", "VB" ], "earnings-related": [ "JJ" ], "rib": [ "NN" ], "ethnicity": [ "NN" ], "Interest-rate": [ "JJ" ], "lengthy": [ "JJ" ], "Bipartisan": [ "JJ" ], "minin": [ "VBG" ], "U.S.-based": [ "JJ" ], "lengths": [ "NNS" ], "debt-riddled": [ "JJ" ], "ideologies": [ "NNS" ], "propping": [ "VBG" ], "Jiffy": [ "NNP", "JJ" ], "farm-state": [ "NNP", "JJ" ], "theologian-philosophers": [ "NN" ], "time-&-motion": [ "JJ" ], "Schroders": [ "NNP" ], "prosodies": [ "NNS" ], "radicalism": [ "NN" ], "fastens": [ "VBZ" ], "Blyth": [ "NNP" ], "one-gee": [ "JJ" ], "brooding": [ "VBG", "JJ", "NN" ], "Kipling": [ "NNP", "VBG" ], "moving": [ "VBG", "JJ", "NN" ], "Drug": [ "NNP", "NN" ], "uneasily": [ "RB" ], "deluding": [ "VBG" ], "Duzan": [ "NNP" ], "Lilien": [ "NNP" ], "castigates": [ "VBZ" ], "solemnity": [ "NN" ], "junk-market": [ "JJ", "NN" ], "Harbor\\/Save": [ "NNP" ], "metis": [ "NNS" ], "Smyrna": [ "NNP" ], "analysis": [ "NN" ], "thermostated": [ "VBN" ], "two-edged": [ "JJ" ], "solids": [ "NNS" ], "castigated": [ "VBN", "VBD" ], "broods": [ "NNS" ], "Myrdal": [ "NNP" ], "starved": [ "VBN" ], "information-products": [ "NNS" ], "two-step": [ "JJ" ], "Takes": [ "VBZ" ], "Measurements": [ "NNS", "NNP" ], "Kochola": [ "NNP" ], "reincarnated": [ "VBD", "VBN" ], "Everly": [ "NNP" ], "Taken": [ "VBN" ], "retired": [ "VBN", "JJ", "VBD" ], "cabaret": [ "NN" ], "Nope": [ "UH" ], "retiree": [ "NN" ], "Triomphe": [ "NNP" ], "old-name": [ "JJ" ], "Adventurers": [ "NNS" ], "Sundance-based": [ "JJ" ], "crack-cocaine": [ "NN" ], "violations": [ "NNS" ], "incomes": [ "NNS" ], "non-algebraically": [ "JJ" ], "joyless": [ "JJ" ], "Desprez": [ "NNP" ], "aggregation": [ "NN" ], "Arapacis": [ "NNP" ], "Continential": [ "NNP" ], "bullock": [ "NN" ], "off-network": [ "JJ" ], "Kia": [ "NNP" ], "glittery": [ "NN" ], "Jehovah": [ "NNP" ], "pithy": [ "JJ" ], "recond": [ "VBD" ], "Brealey": [ "NNP" ], "incidental": [ "JJ" ], "Manthey": [ "NNP" ], "breeder": [ "NN" ], "chin-ups": [ "NNS" ], "hawk-faced": [ "JJ" ], "jumpsuits": [ "NN" ], "PATOIS": [ "NNP" ], "resourcefully": [ "RB" ], "descent": [ "NN" ], "anti-heroes": [ "NNS" ], "eluding": [ "VBG" ], "traits": [ "NNS" ], "marmalade": [ "NN" ], "Libor": [ "NNP" ], "yachtsman": [ "NN" ], "Channel": [ "NNP", "NN" ], "Milgrim": [ "NNP" ], "Discovered": [ "VBN" ], "Fledermaus": [ "NNP" ], "prow": [ "NN" ], "compressors": [ "NNS" ], "nosing": [ "VBG" ], "pros": [ "NNS" ], "Albuquerque": [ "NNP" ], "prop": [ "VB", "VBP", "NN" ], "prom": [ "NN" ], "Reflecting": [ "VBG" ], "Comiskey": [ "NNP" ], "Adelman": [ "NNP" ], "prof": [ "NN" ], "business....": [ ":" ], "prod": [ "VB", "NN" ], "red-handed": [ "JJ" ], "apathetic": [ "JJ" ], "Aspilia": [ "NN" ], "Substance": [ "NN", "NNP" ], "ecumenicists": [ "NNS" ], "scalawags": [ "NNS" ], "horse-radish": [ "NN" ], "firebombed": [ "VBN" ], "denationalizations": [ "NNS" ], "Dreiser": [ "NNP" ], "Lackland": [ "NNP" ], "price-level": [ "JJ" ], "Translated": [ "VBN" ], "corn": [ "NN" ], "Edley": [ "NNP" ], "intense": [ "JJ" ], "Signet": [ "NNP" ], "Catastrophic-health": [ "NN" ], "Malamud": [ "NNP" ], "Lanyi": [ "NNP" ], "bleeders": [ "NNS" ], "seeped": [ "VBD", "VBN" ], "most": [ "RBS", "JJ", "NN", "RB", "RBS|JJS", "JJS" ], "tortuous": [ "JJ" ], "Liqueur": [ "NNP" ], "Trachea": [ "NN" ], "Petco": [ "NNP" ], "subvert": [ "VB", "VBP" ], "greets": [ "VBZ" ], "Azalea": [ "NNP" ], "modal": [ "JJ" ], "Dittamore": [ "NNP" ], "Wood-products": [ "NNS" ], "credible": [ "JJ" ], "cutoff": [ "NN", "JJ" ], "Hawkins": [ "NNP" ], "Robards": [ "NNP" ], "hoodle": [ "UH" ], "incoherence": [ "NN" ], "free-marketer": [ "NN" ], "resigns": [ "VBZ" ], "Approximately": [ "RB" ], "piteous": [ "JJ" ], "non-interest-bearing": [ "JJ" ], "Hawking": [ "NNP" ], "paradigmatic": [ "JJ" ], "pleasure-seeking": [ "NN" ], "credibly": [ "RB" ], "Speidel": [ "NNP" ], "MACHINES": [ "NNP" ], "Shulman": [ "NNP" ], "securities-trading": [ "JJ", "NN" ], "unstructured": [ "JJ" ], "osseous": [ "JJ" ], "computer-trading": [ "NN" ], "pallid": [ "JJ" ], "signifies": [ "VBZ" ], "unadorned": [ "JJ" ], "oxidizer": [ "NN" ], "signified": [ "VBD", "VBN" ], "Thermoforming": [ "VBG" ], "Povich": [ "NNP" ], "Shape": [ "NNP", "NN" ], "cash-value": [ "JJ" ], "perplexing": [ "JJ" ], "Compeyson": [ "NNP" ], "Backstitch": [ "VB" ], "girlfriends": [ "NNS" ], "tasting": [ "VBG", "NN" ], "crank": [ "VB", "NN" ], "Chesaning": [ "NNP" ], "in-accord-with-nature": [ "JJ" ], "crane": [ "NN", "VB" ], "billed": [ "VBN", "JJ", "VBD" ], "Roto-Rooter": [ "NNP" ], "then-senior": [ "JJ" ], "REIT": [ "NNP" ], "gallantry": [ "NN" ], "preposition": [ "NN" ], "caller": [ "NN" ], "Partlow": [ "NNP" ], "good-cop": [ "JJ" ], "Leon": [ "NNP" ], "Thatcher": [ "NNP" ], "torpedoing": [ "VBG" ], "Mirabella": [ "NNP" ], "Rabb": [ "NNP" ], "interestrate": [ "NN" ], "Mirabello": [ "NNP" ], "called": [ "VBN", "VBD", "VB" ], "single-domain": [ "JJ" ], "Cooperation": [ "NNP" ], "soars": [ "NNS" ], "bluechip": [ "JJ" ], "long-established": [ "JJ" ], "ether": [ "NN", "CC" ], "Pagni": [ "NNP" ], "Faxes": [ "NNS" ], "empire": [ "NN" ], "tentative": [ "JJ", "NN" ], "ulcerations": [ "NNS" ], "Nyers": [ "NNP" ], "towers": [ "NNS", "VBZ" ], "Mount": [ "NNP", "NN", "VB" ], "Saylor": [ "NNP" ], "Junkerdom": [ "NNP" ], "WITHHELD": [ "VBN" ], "Bahamian": [ "JJ" ], "Skills": [ "NNS" ], "six-cent": [ "JJ" ], "cannister": [ "NN" ], "auto-safety": [ "JJ" ], "inflame": [ "VB" ], "Arbeitskommando": [ "NNP" ], "Meekison": [ "NNP" ], "subindustry": [ "NN" ], "Discussing": [ "VBG" ], "Nautilus": [ "NNP", "JJ" ], "delineation": [ "NN" ], "Kanab": [ "NNP" ], "we": [ "PRP", "VBP" ], "Kanan": [ "NNP" ], "Sevigny": [ "NNP" ], "Piccadilly": [ "NNP", "JJ" ], "Rawson": [ "NNP" ], "reproaches": [ "VBZ" ], "extruding": [ "VBG" ], "Mott": [ "NNP" ], "Rugeroni": [ "NNP" ], "farm-equipment": [ "NN", "JJ" ], "pur-poises": [ "NNS" ], "Casualty": [ "NNP" ], "sale-lease-back": [ "JJ" ], "politico-sociological": [ "JJ" ], "Monthly": [ "NNP", "JJ" ], "Wagnerian": [ "JJ" ], "locating": [ "VBG" ], "Asses": [ "NNS" ], "Asser": [ "NNP" ], "Bureau": [ "NNP" ], "Asset": [ "NNP", "NN" ], "contributions": [ "NNS" ], "Mound": [ "NNP" ], "cupboards": [ "NNS" ], "Howry": [ "NNP" ], "pax": [ "FW" ], "Leber": [ "NNP" ], "sniped": [ "VBD", "NN" ], "fenced": [ "JJ", "VBN" ], "McQuown": [ "NNP" ], "UAW": [ "NNP" ], "mEq": [ "NNP" ], "UAL": [ "NNP" ], "sowbelly": [ "NN" ], "bullet-proof": [ "JJ" ], "fences": [ "NNS" ], "snipes": [ "VBZ" ], "sniper": [ "NN" ], "abode": [ "NN" ], "wished": [ "VBD", "VBN" ], "lynch": [ "VB" ], "ague": [ "NN" ], "bedrooms": [ "NNS" ], "melding": [ "VBG", "NN" ], "wisher": [ "NN" ], "wishes": [ "VBZ", "NNS" ], "Masterpieces": [ "NNPS" ], "traveler": [ "NN" ], "Giraldi": [ "NNP" ], "Flattau": [ "NNP" ], "Oliveira": [ "NNP" ], "fast-paced": [ "JJ" ], "descend": [ "VB", "VBP" ], "quintuple": [ "RB", "VB" ], "Retailer": [ "NN" ], "BCE": [ "NNP" ], "electronic-publishing": [ "JJ" ], "CFC-12": [ "NN", "NNP" ], "outdo": [ "VB", "VBP" ], "CFC-11": [ "NN" ], "noted": [ "VBD", "JJ", "VBN" ], "Gevurtz": [ "NNP" ], "Teletypes": [ "NNS" ], "Pyle": [ "NNP" ], "malignant": [ "JJ" ], "REALLY": [ "NNP" ], "procession": [ "NN" ], "Upper": [ "NNP", "JJ" ], "pro-Republican": [ "JJ" ], "sciatica": [ "NN" ], "fermenting": [ "VBG" ], "Sections": [ "NNS" ], "reclassification": [ "NN" ], "Morgenzon": [ "NNP" ], "Responses": [ "NNS" ], "astounded": [ "VBN", "JJ" ], "discontinuance": [ "NN" ], "food-preservation": [ "NN" ], "Antwerpsche": [ "NNP" ], "waiting": [ "VBG", "NN", "JJ" ], "personal-property": [ "NN" ], "Link": [ "NNP", "VBP", "NN" ], "Linh": [ "NNP" ], "half-seriously": [ "RB" ], "Line": [ "NNP", "NN" ], "ammunition": [ "NN" ], "fastenings": [ "NNS" ], "Moxley": [ "NNP" ], "cf.": [ "NN", "FW" ], "Affaires": [ "NNP" ], "Wiess": [ "NNP" ], "Dotson": [ "NNP" ], "Reebok": [ "NNP" ], "anti-homosexual": [ "JJ" ], "Dictionaries": [ "NNS" ], "rosaries": [ "NNS" ], "elimination": [ "NN" ], "far-afield": [ "JJ" ], "tarred": [ "VBN", "VBD" ], "non-public": [ "JJ" ], "insouciance": [ "NN" ], "debtor-nation": [ "NN" ], "non-conformists": [ "NNS" ], "Walinsky": [ "NNP" ], "MMG": [ "NNP" ], "cyclist": [ "NN" ], "Bathing": [ "NN", "VBG" ], "horse-breeding": [ "NN" ], "jeweled": [ "JJ" ], "metro": [ "NN" ], "skyrocketed": [ "VBD", "VBN" ], "Almond": [ "NN" ], "spiced": [ "JJ" ], "e-Ames": [ "NNP" ], "evading": [ "VBG" ], "territoire": [ "FW" ], "Nowak": [ "NNP" ], "simpleton": [ "NN" ], "spices": [ "NNS" ], "initials": [ "NNS" ], "Copeland": [ "NNP" ], "Beneficiaries": [ "NNS" ], "Minks": [ "NNP" ], "apple": [ "NN" ], "miscreant": [ "JJ", "NN" ], "Robert": [ "NNP" ], "endotoxins": [ "NNS" ], "self-crimination": [ "NN" ], "offends": [ "VBZ" ], "Soria": [ "NNP" ], "Pyszkiewicz": [ "NNP" ], "Survanta": [ "NNP" ], "unhappy": [ "JJ" ], "motor": [ "NN", "JJ", "VB" ], "apply": [ "VB", "VBP" ], "cross-purposes": [ "NNS" ], "Accounts-a": [ "NNP", "NNPS" ], "bucking-up": [ "NN" ], "discerns": [ "VBZ" ], "Chemistry": [ "NNP" ], "carcinogenic": [ "JJ" ], "iced": [ "JJ" ], "Maxell": [ "NNP" ], "Guiftes": [ "NNS" ], "Curiously": [ "RB", "NNP" ], "weeping": [ "VBG", "NN" ], "Secrecy": [ "NN", "NNP" ], "Rocco": [ "NNP" ], "Willem": [ "NNP" ], "Feis": [ "NNP" ], "porch": [ "NN" ], "credulous": [ "JJ" ], "Wilcke": [ "NNP" ], "cooperate": [ "VB", "VBP" ], "Choir": [ "NN", "NNP" ], "archangels": [ "NNS" ], "faultless": [ "JJ" ], "Scouts": [ "NNPS" ], "benignant": [ "JJ" ], "Creighton": [ "NNP" ], "Whirlwind": [ "NNP" ], "paralleled": [ "VBN" ], "wtih": [ "NN" ], "do-gooders": [ "NNS" ], "thwack": [ "NN" ], "slaps": [ "VBZ", "NNS" ], "Fonseca": [ "NNP", "NN" ], "Balaguer": [ "NNP" ], "instrumentalities": [ "NNS" ], "founder-conductor": [ "NN" ], "splinters": [ "NNS" ], "Bis": [ "NNP" ], "splintery": [ "NN" ], "Northeners": [ "NNP" ], "Dishonesty": [ "NN" ], "biscuit": [ "NN" ], "tour": [ "NN", "FW", "VB" ], "proof": [ "NN", "JJ" ], "brightening": [ "VBG" ], "Nielson": [ "NNP" ], "tap": [ "VB", "NN", "VBP" ], "tar": [ "NN" ], "earnestness": [ "NN" ], "immediacies": [ "NNS" ], "Photoprotective": [ "NNP" ], "Czerny": [ "NNP" ], "tax": [ "NN", "VB", "VBP" ], "tad": [ "NN", "RB" ], "tae": [ "FW" ], "tag": [ "NN", "VB" ], "tab": [ "NN" ], "tam": [ "FW" ], "tan": [ "JJ", "NN" ], "onions": [ "NNS" ], "commonness": [ "NN" ], "hyacinths": [ "NNS" ], "Sixty-eighth": [ "NNP" ], "decorating": [ "NN", "VBG" ], "Middle-aged": [ "JJ" ], "inaugural": [ "JJ", "NN" ], "serum": [ "NN" ], "actualities": [ "NNS" ], "Jist": [ "RB" ], "end-product": [ "NN" ], "Second-half": [ "JJ" ], "base-metals": [ "NNS" ], "panic": [ "NN", "VB", "VBP" ], "trusses": [ "NNS" ], "E.Y.": [ "NNP" ], "Ringwood": [ "NNP" ], "Fossey": [ "NNP" ], "perjury": [ "NN" ], "general-management": [ "NN" ], "Groot": [ "NNP" ], "footpath": [ "NN" ], "BANK": [ "NNP", "NN" ], "Cadet": [ "NNP" ], "Tallahassee": [ "NNP" ], "wt": [ "NN" ], "semi-conscious": [ "JJ" ], "Repertory": [ "NNP" ], "drought-stunted": [ "JJ" ], "Texts": [ "NNS" ], "bunco": [ "NN" ], "crawling": [ "VBG" ], "pharamaceuticals": [ "NNS" ], "sweetens": [ "VBZ" ], "Wrightson": [ "NNP" ], "demonstrations": [ "NNS" ], "Birr": [ "NNP" ], "unjustified": [ "JJ" ], "Walpole": [ "NNP" ], "Birk": [ "NNP" ], "accompanist": [ "NN" ], "Ursa": [ "NNP" ], "Santovenia": [ "NNP" ], "Bird": [ "NNP", "NN" ], "underwater": [ "JJ", "NN", "RB" ], "gunslinger": [ "NN" ], "voiceless": [ "JJ" ], "terriers": [ "NNS" ], "Grandsire": [ "NNP" ], "unpaintable": [ "JJ" ], "merchandise": [ "NN" ], "Dyk": [ "NNP" ], "Margler": [ "NNP" ], "Salary": [ "NN" ], "violating": [ "VBG" ], "crash": [ "NN", "VBP", "JJ", "VB" ], "multibillion-dollar": [ "JJ" ], "Ilotycin": [ "NNP" ], "flotillas": [ "NNS" ], "two-inch-square": [ "JJ" ], "practice": [ "NN", "VB", "VBP" ], "socio-archaeological": [ "JJ" ], "commended": [ "VBN", "VBD" ], "CRSS": [ "NNP" ], "emanations": [ "NNS" ], "draft-resistance": [ "NN" ], "Successors": [ "NNS" ], "sinners": [ "NNS" ], "Summer": [ "NNP", "NN", "NNPS" ], "transmitter": [ "NN" ], "entrench": [ "VB" ], "recorded-music": [ "JJ" ], "auto": [ "NN" ], "Arbitragers": [ "NNS" ], "tallied": [ "VBN", "VBD" ], "Accurate": [ "JJ" ], "eased": [ "VBD", "VBN" ], "Unloved": [ "NNP" ], "building-related": [ "JJ" ], "paleocortical": [ "JJ" ], "flag-burning": [ "NN" ], "trap": [ "NN", "VB" ], "tax-reduction": [ "NN" ], "eases": [ "VBZ" ], "upheavals": [ "NNS" ], "Bobbie": [ "NNP" ], "Edson": [ "NNP" ], "eloquent": [ "JJ" ], "Auditors": [ "NNS" ], "Sidra": [ "NNP" ], "Narcotics": [ "NNPS", "NNP" ], "jollying": [ "VBG" ], "Owings": [ "NNP" ], "Partisanship": [ "NN" ], "semi-isolated": [ "JJ" ], "Lamborghini": [ "NNP" ], "semen": [ "NN" ], "RUSH": [ "NN", "VB" ], "Festiva": [ "NNP" ], "Frantisek": [ "NNP" ], "contradictions": [ "NNS" ], "Aon": [ "NNP" ], "WAVE": [ "NNP" ], "Stowe": [ "NNP" ], "janglers": [ "NNS" ], "outings": [ "NNS" ], "apple-pie": [ "NN" ], "Nearly": [ "RB" ], "grits": [ "NNS" ], "brilliantly": [ "RB" ], "Vice-president": [ "NN" ], "four-foot-high": [ "JJ" ], "adhesives": [ "NNS" ], "once-staid": [ "JJ" ], "unenunciated": [ "JJ" ], "dictionary": [ "NN" ], "Older": [ "JJR", "NNP", "JJ" ], "dusts": [ "NNS" ], "pleas": [ "NNS" ], "Hyatt-Clark": [ "NNP" ], "Entree": [ "NNP" ], "K-resin": [ "NN" ], "obliteration": [ "NN" ], "bedazzled": [ "VBN" ], "tyrannis": [ "FW" ], "dormitories": [ "NNS" ], "flotations": [ "NNS" ], "segregated": [ "VBN", "VBD", "JJ" ], "barns": [ "NNS" ], "substantiate": [ "VB" ], "Americanized": [ "VBD" ], "Currency": [ "NN", "NNP" ], "German-language": [ "JJ" ], "cain": [ "MD" ], "ionic": [ "JJ" ], "precepts": [ "NNS" ], "timbers": [ "NNS" ], "Prussian": [ "NNP" ], "money-granting": [ "NN" ], "McNally": [ "NNP", "RB" ], "K.": [ "NNP" ], "hitherto": [ "RB" ], "lace": [ "NN" ], "Cradle": [ "NNP" ], "gratuitously": [ "RB" ], "harmlessness": [ "NN" ], "probation": [ "NN" ], "homers": [ "NNS" ], "Local": [ "JJ", "NNP" ], "destinations": [ "NNS" ], "Wised": [ "NNP" ], "individualizing": [ "VBG" ], "droop": [ "VBP", "NN" ], "top-ranking": [ "JJ" ], "meningioma": [ "NN" ], "nomination": [ "NN" ], "accent": [ "NN", "VB" ], "Rankin": [ "NNP" ], "Exhibited": [ "VBN" ], "triumvirate": [ "NN" ], "chamberpot": [ "NN" ], "Illingworth": [ "NNP" ], "long-dollar": [ "JJ" ], "Wings": [ "NNPS", "NNS" ], "Ke": [ "NNP" ], "Ko": [ "NNP" ], "Swiveling": [ "VBG" ], "resurrects": [ "VBZ" ], "skip-a-month": [ "JJ" ], "sherbet-colored": [ "JJ" ], "low-ability": [ "JJ" ], "constituent": [ "NN", "JJ" ], "Ky": [ "NNP" ], "KC": [ "NNP" ], "KB": [ "NNP" ], "Maxine": [ "NNP" ], "Outstanding": [ "JJ", "NNP" ], "KK": [ "NNP" ], "KN": [ "NNP" ], "Boxy": [ "JJ" ], "Strekel": [ "NNP" ], "sculpture": [ "NN" ], "bodice": [ "NN" ], "long-shanked": [ "JJ" ], "Italianate": [ "JJ" ], "Harrold": [ "NNP" ], "outsmarted": [ "VBD", "VBN" ], "U.Cal-Davis": [ "NNP" ], "woebegone": [ "JJ" ], "Veteran": [ "JJ", "NNP" ], "U.S.concerns": [ "NNS" ], "outstrip": [ "VB" ], "Terex": [ "NNP" ], "Soccer": [ "NNP" ], "clove": [ "NN" ], "excusable": [ "JJ" ], "non-defense-related": [ "JJ" ], "florid": [ "JJ" ], "allergies": [ "NNS" ], "oozing": [ "VBG" ], "agency": [ "NN" ], "Southmark\\/Envicon": [ "NNP", "NN" ], "bankrupty-law": [ "NN" ], "co-ordinator": [ "NN" ], "divert": [ "VB", "VBP" ], "divers": [ "NNS", "JJ" ], "standup": [ "JJ", "NN" ], "McGuire": [ "NNP" ], "repairs": [ "NNS", "VBZ" ], "Bedfellows": [ "NNS" ], "McGuirk": [ "NNP" ], "Solution": [ "NNP", "NN" ], "offend": [ "VB" ], "Zilligen": [ "NNP" ], "specialty-metals": [ "NNS" ], "Lappenburg-Kemble": [ "NNP" ], "Whimsey": [ "NNP" ], "deny": [ "VB", "VBP" ], "Customary": [ "NNP" ], "Bent": [ "NNP" ], "neoconservative": [ "JJ" ], "dens": [ "NNS" ], "Hazeltine": [ "NNP" ], "Benz": [ "NNP" ], "B-47": [ "NN" ], "dent": [ "NN", "VB" ], "Bend": [ "NNP", "VB" ], "Beng": [ "NNP" ], "Earth": [ "NNP", "NN" ], "Benj": [ "NNP" ], "inane": [ "JJ" ], "Carlyle": [ "NNP" ], "illuminations": [ "NNS" ], "burner": [ "NN" ], "bratwurst": [ "NN" ], "upright": [ "RB", "JJ" ], "BGS": [ "NNP" ], "pell-mell": [ "NN" ], "Stoddard": [ "NNP" ], "Anastasio": [ "NNP" ], "narcotraficantes": [ "FW" ], "wry": [ "JJ" ], "holistic": [ "JJ" ], "Fibreboard": [ "NNP" ], "ex-mayor": [ "NN" ], "Inaugurates": [ "VBZ" ], "snick": [ "NN" ], "humanitarian": [ "JJ", "NN" ], "Karl-Birger": [ "NNP" ], "candidates": [ "NNS" ], "procreative": [ "JJ" ], "kapok-filled": [ "JJ" ], "Catch": [ "NN" ], "Textron": [ "NNP" ], "hurricane-related": [ "JJ" ], "horns": [ "NNS" ], "Baringer": [ "NNP" ], "workin": [ "VBG" ], "Folklore": [ "NN", "NNP" ], "dope": [ "NN" ], "diagnosing": [ "VBG", "NN" ], "fronting": [ "VBG", "NN" ], "Parodi": [ "NNP" ], "Whiskey": [ "NNP", "NN" ], "Paragraph": [ "NNP", "NN" ], "Gladius": [ "NNP", "FW" ], "words": [ "NNS" ], "merchandised": [ "VBN" ], "self-evident": [ "JJ" ], "penetrate": [ "VB", "VBP" ], "wordy": [ "JJ" ], "ghetto": [ "NN" ], "Humboldt": [ "NNP" ], "Nikita": [ "NNP" ], "Derchin": [ "NNP" ], "Lieber": [ "NNP" ], "waterfalls": [ "NNS" ], "prepolymer": [ "NN" ], "generations": [ "NNS" ], "Wiggins": [ "NNP" ], "investment-area": [ "JJ" ], "nitrogen": [ "NN" ], "ebb": [ "NN", "VB" ], "Thinking": [ "VBG", "NN", "NNP" ], "Irvine": [ "NNP" ], "Nanook": [ "NNP" ], "violet": [ "NN" ], "gutters": [ "NNS" ], "scoured": [ "VBN", "JJ", "VBD" ], "recanted": [ "VBD", "VBN" ], "closer": [ "JJR", "JJ", "RB", "RBR" ], "closes": [ "VBZ", "NNS", "NN" ], "Olissa": [ "NNP" ], "Ravitch": [ "NNP" ], "gliders": [ "NNS" ], "closet": [ "NN" ], "congressionally": [ "RB" ], "complementary": [ "JJ" ], "proteases": [ "NNS" ], "genius": [ "NN" ], "Slavs": [ "NNPS" ], "rumblings": [ "NNS" ], "closed": [ "VBD", "VBN|VBD", "VBN", "JJ", "NN", "VB", "VBN|JJ" ], "cinders": [ "NNS" ], "linebacker": [ "NN" ], "masterful": [ "JJ" ], "pants": [ "NNS", "NN" ], "energy-cogeneration": [ "NN" ], "ethic": [ "NN" ], "high-society": [ "NN" ], "audiovisual": [ "JJ" ], "ribonucleic": [ "JJ" ], "beverages": [ "NNS" ], "Minnie": [ "NNP" ], "snap-in": [ "JJ" ], "Facing": [ "VBG" ], "once-over-lightly": [ "NN" ], "memento": [ "NN" ], "shashlik": [ "NN" ], "tiers": [ "NNS" ], "soapbox": [ "NN" ], "Self-designated": [ "JJ" ], "profanity": [ "NN" ], "beautifully-built": [ "JJ" ], "broadside": [ "JJ", "NN", "RB" ], "Modesto": [ "NNP" ], "Sprecher": [ "NNP" ], "blackbirds": [ "NNS" ], "canopy": [ "NN" ], "safely": [ "RB" ], "withdraws": [ "VBZ" ], "Schockler": [ "NNP" ], "Satisfying": [ "VBG" ], "Podufaly": [ "NNP" ], "shoving": [ "VBG" ], "CD-ROM": [ "NNP", "NN" ], "VA-backed": [ "JJ" ], "RICOed": [ "JJ", "VBD" ], "Earlham": [ "NNP" ], "Brice": [ "NNP" ], "Zapotec": [ "JJ" ], "Brick": [ "NNP", "NN" ], "neighborliness": [ "NN" ], "withdrawn": [ "VBN" ], "bumble-bee": [ "NN" ], "three-fourths": [ "JJ", "NNS" ], "freedmen": [ "NNS" ], "unable-to-locate": [ "JJ" ], "BiiN": [ "NNP", "NN" ], "Makes": [ "VBZ" ], "thumbed": [ "VBD", "VBN" ], "broadcasts": [ "NNS", "VBZ" ], "swabbed": [ "VBD" ], "corporate-securities": [ "JJ" ], "validating": [ "VBG" ], "Heflin": [ "NNP" ], "agreements": [ "NNS" ], "monoclonal": [ "JJ" ], "butchers": [ "NNS", "VBZ" ], "property-and-casualty": [ "JJ" ], "yff": [ "IN" ], "merrily": [ "RB" ], "Masada": [ "NNP" ], "butchery": [ "NN" ], "Gerrard": [ "NNP" ], "time-sensitive": [ "JJ" ], "saner": [ "JJR" ], "Mortgage-Backed": [ "JJ", "NNP" ], "Wreckage": [ "NN" ], "Castles": [ "NNS" ], "Motif": [ "NN" ], "readied": [ "VBN", "VBD" ], "Fogler": [ "NNP" ], "Halloween": [ "NNP" ], "Nonsense": [ "NN" ], "irate": [ "JJ" ], "Sanchez": [ "NNP" ], "Shylockian": [ "JJ" ], "Greenberger": [ "NNP" ], "Targets": [ "VBZ" ], "Quieter": [ "JJR" ], "Gypsum": [ "NNP" ], "Arnott": [ "NNP" ], "smashed-out": [ "JJ" ], "chanter": [ "FW" ], "Yokosuka": [ "NNP" ], "Gaveston": [ "NNP" ], "Lingo": [ "NN" ], "Anti-apartheid": [ "JJ" ], "fourth-fifths": [ "NNS" ], "Stock-Index": [ "NN" ], "gassing": [ "NN" ], "capitalist-exploiters-greedy-American-consumers-global": [ "JJ" ], "Bellomo-McGee": [ "NNP" ], "Briton": [ "NNP", "NN" ], "credit-services": [ "NNS" ], "stadiums": [ "NNS" ], "vintage": [ "JJ", "NN" ], "English-speaking": [ "JJ" ], "fusillades": [ "NNS" ], "adverse": [ "JJ" ], "Ponchartrain": [ "NNP" ], "down-the-line": [ "JJ" ], "merciful": [ "JJ" ], "panning": [ "VBG" ], "Olick": [ "NNP" ], "last-ditch": [ "JJ" ], "sweetened": [ "VBN", "VBD", "JJ" ], "Resource": [ "NNP" ], "tactful": [ "JJ" ], "Reis": [ "NNP" ], "Entex": [ "NNP" ], "Terrours": [ "NNS" ], "coalfields": [ "NNS" ], "issuance": [ "NN" ], "Rein": [ "NNP" ], "soldout": [ "NN" ], "Euroyen": [ "NNP" ], "Reik": [ "NNP" ], "appropriated": [ "VBN", "VBD" ], "Adults": [ "NNS" ], "contendere": [ "FW" ], "superconcentrates": [ "NNS" ], "light-blue": [ "JJ" ], "ARA": [ "NNP" ], "fourteen-year-old": [ "JJ" ], "appropriates": [ "VBZ" ], "ARE": [ "VBP" ], "Ancinec": [ "NNP" ], "Piraeus": [ "NNP" ], "flint": [ "NN" ], "outgrow": [ "VB" ], "breaker": [ "NN" ], "superconcentrated": [ "JJ" ], "ARM": [ "NNP", "NN" ], "contenders": [ "NNS" ], "rocker": [ "NN" ], "Eaux": [ "NNP" ], "boos": [ "NNS" ], "rocket": [ "NN" ], "boot": [ "NN", "VB" ], "cloaks": [ "NNS" ], "me/PRP": [ "NNP" ], "hard-to-get": [ "JJ" ], "Aruba": [ "NNP" ], "rocked": [ "VBD", "VBN" ], "danced": [ "VBD", "VBN" ], "every-day": [ "JJ" ], "pro-consumer": [ "JJ", "NN" ], "disturbance": [ "NN" ], "InfoCorp": [ "NNP" ], "Far": [ "NNP", "JJ", "RB" ], "sky": [ "NN" ], "overspending": [ "NN", "VBG" ], "Fat": [ "NNP", "JJ", "NN" ], "sweetener": [ "NN" ], "Stalins": [ "NNPS" ], "adoption": [ "NN" ], "Fab": [ "NNP" ], "Mokhiber": [ "NNP" ], "ski": [ "NN", "JJ", "VB", "VBP" ], "knob": [ "NN" ], "Joynt": [ "NNP" ], "saturation": [ "NN" ], "branch": [ "NN", "VB" ], "knoe": [ "VB" ], "monetarists": [ "NNS" ], "tawny": [ "JJ" ], "jocund": [ "JJ" ], "protesters": [ "NNS" ], "Grundfest": [ "NNP" ], "Recording": [ "NNP", "NN" ], "KerrMcGee": [ "NNP" ], "know": [ "VB", "NN", "VBP" ], "knot": [ "NN", "VB" ], "food-aid": [ "JJ" ], "Newspaper": [ "NNP", "NN" ], "Hesperus": [ "NNP" ], "variants": [ "NNS" ], "anti-terrorism": [ "JJ" ], "LIMITED": [ "JJ", "NNP" ], "Compromising": [ "VBG" ], "bedfellows": [ "NNS" ], "Reuveni": [ "NNP" ], "taxpayers": [ "NNS" ], "most-desired": [ "JJ" ], "mid-December": [ "NNP", "NN" ], "Stephan": [ "NNP" ], "starred": [ "VBD", "VBN" ], "majesterial": [ "JJ" ], "Gibraltar": [ "NNP" ], "JONES": [ "NNP" ], "traitors": [ "NNS" ], "because": [ "IN", "RB" ], "shabby": [ "JJ" ], "sequence": [ "NN" ], "dispossession": [ "NN" ], "birthmark": [ "NN" ], "mosquitoes": [ "NNS" ], "Boucheron": [ "NNP" ], "libretto": [ "NN" ], "shorter-term": [ "JJ", "JJR" ], "Wishart": [ "NNP" ], "holler": [ "VB" ], "price-to-book": [ "JJ" ], "leaden": [ "JJ" ], "first-six": [ "JJ" ], "Singapore": [ "NNP" ], "Manaifatturiera": [ "NNP" ], "leaded": [ "JJ" ], "Pickfair": [ "NNP" ], "Glazes": [ "NNS" ], "Glazer": [ "NNP" ], "outrageously": [ "RB" ], "scalpels": [ "NNS" ], "Mosettig": [ "NNP" ], "Glazed": [ "VBN" ], "Stairs": [ "NNP" ], "leader": [ "NN" ], "rip-off": [ "NN" ], "Population": [ "NNP", "NN" ], "STANLEY": [ "NNP" ], "poets": [ "NNS" ], "miniskirts": [ "NNS" ], "codetermines": [ "VBZ" ], "idlers": [ "NNS" ], "thoroughfare": [ "NN" ], "kernels": [ "NNS" ], "Ptolemaic": [ "JJ", "NNP" ], "Mediation": [ "NNP" ], "Rothschild": [ "NNP" ], "leased": [ "VBN", "VBD", "JJ" ], "guffaws": [ "NNS" ], "Large-deposit": [ "JJ" ], "nationalities": [ "NNS" ], "Acoustic": [ "NNP" ], "Canning": [ "NNP" ], "after": [ "IN", "RB", "RP" ], "throne": [ "NN" ], "throng": [ "NN", "VBP" ], "squealed": [ "VBD", "VBN" ], "getting": [ "VBG" ], "high-end": [ "JJ" ], "let-the-locals-decide": [ "JJ" ], "dependence": [ "NN" ], "dependency": [ "NN" ], "epiphany": [ "NN" ], "owl-shaped": [ "JJ" ], "bugle": [ "NN" ], "Outer": [ "NNP", "NNPS", "JJ" ], "Suffice": [ "VB" ], "Gelder": [ "NNP" ], "corralling": [ "VBG" ], "Wildwater": [ "NNP" ], "registration": [ "NN" ], "computer-integrated": [ "JJ" ], "flower-bordered": [ "JJ" ], "dispossessed": [ "VBN", "JJ" ], "knife-men": [ "NNS" ], "Weaver": [ "NNP" ], "fired": [ "VBN", "VBD" ], "centurions": [ "NNS" ], "dagers": [ "NNS" ], "best-educated": [ "JJ" ], "noxious": [ "JJ" ], "Duse": [ "NNP" ], "indictments": [ "NNS" ], "preferment": [ "NN" ], "Flavus": [ "NNP" ], "Dust": [ "NNP", "NN" ], "CLOSE": [ "NN" ], "uncontrollable": [ "JJ" ], "Alps": [ "NNP", "NNPS" ], "Lezovich": [ "NNP" ], "footwork": [ "NN" ], "concision": [ "NN" ], "sweatband": [ "NN" ], "Skybolt": [ "NN" ], "clampdown": [ "NN" ], "piously": [ "RB" ], "contradictory": [ "JJ", "NN" ], "percentage-point": [ "JJ" ], "policy-setting": [ "JJ" ], "Hans-Dietrich": [ "NNP" ], "Alpo": [ "NNP" ], "hearing-impaired": [ "VBN" ], "goose": [ "NN" ], "Topography": [ "NN" ], "instructive": [ "JJ" ], "Ruysch": [ "NNP" ], "windfall": [ "NN" ], "Dowie": [ "NNP" ], "lubricated": [ "VBN" ], "McMoRan": [ "NNP" ], "non-existent": [ "JJ" ], "heralding": [ "VBG" ], "no-driving": [ "JJ" ], "Kankakee": [ "NNP" ], "meaningless": [ "JJ" ], "gnawing": [ "NN" ], "Bailout": [ "NNP" ], "dives": [ "NNS", "VBZ" ], "Josephson": [ "NNP" ], "Sessions": [ "NNP", "NNS" ], "cut-to-a-familiar-pattern": [ "JJ" ], "scandal-tripped": [ "JJ" ], "percent": [ "NN" ], "immobilized": [ "VBN" ], "Kalikow": [ "NNP", "NN" ], "roars": [ "VBZ" ], "sick": [ "JJ" ], "Improving": [ "VBG", "NN" ], "long-time": [ "JJ" ], "Manufacturing": [ "NNP", "NN" ], "Milburn": [ "NNP" ], "Literacy": [ "NN" ], "lance": [ "NN" ], "peanut-butter": [ "NN" ], "Applebee": [ "NNP" ], "Sandifer": [ "NNP" ], "Attlee": [ "NNP" ], "shown": [ "VBN", "VBD" ], "contends": [ "VBZ" ], "near-disaster": [ "NN" ], "interventionists": [ "NNS" ], "supple": [ "JJ" ], "geysers": [ "NNS" ], "SELL": [ "VB" ], "Riyadh": [ "NNP" ], "pigen": [ "NN" ], "mosaics": [ "NNS" ], "outslugged": [ "VBN" ], "problematics": [ "NNS" ], "expands": [ "VBZ" ], "footloose": [ "JJ" ], "jawbone": [ "NN" ] } ================================================ FILE: lib/natural/brill_pos_tagger/data/English/tr_from_brill_paper.json ================================================ { "rules": [ "TO IN NEXT-TAG AT", "VBN VBD PREV-WORD-IS-CAP YES", "VBD VBN PREV-1-OR-2-OR-3-TAG HVD", "VB NN PREV-1-OR-2-TAG AT", "NN VB PREV-TAG TO", "TO IN NEXT-WORD-IS-CAP YES", "NN VB PREV-TAG MD", "PPS PPO NEXT-TAG .", "VBN VBD PREV-TAG PPS", "NP NN CURRENT-WORD-IS-CAP NO" ] } ================================================ FILE: lib/natural/brill_pos_tagger/data/English/tr_from_brill_paper.txt ================================================ TO IN NEXT-TAG AT VBN VBD PREV-WORD-IS-CAP YES VBD VBN PREV-1-OR-2-OR-3-TAG HVD VB NN PREV-1-OR-2-TAG AT NN VB PREV-TAG TO TO IN NEXT-WORD-IS-CAP YES NN VB PREV-TAG MD PPS PPO NEXT-TAG . VBN VBD PREV-TAG PPS NP NN CURRENT-WORD-IS-CAP NO ================================================ FILE: lib/natural/brill_pos_tagger/data/English/tr_from_posjs.json ================================================ { "rules": [ "VBD NN PREV-TAG DT", "VBP NN PREV-TAG DT", "VB NN PREV-TAG DT", "NN CD CURRENT-WORD-IS-NUMBER YES", "NNP CD CURRENT-WORD-IS-NUMBER YES", "NNS CD CURRENT-WORD-IS-NUMBER YES", "NNPS CD CURRENT-WORD-IS-NUMBER YES", "NN URL CURRENT-WORD-IS-URL YES", "NNS URL CURRENT-WORD-IS-URL YES", "NNP URL CURRENT-WORD-IS-URL YES", "NNPS URL CURRENT-WORD-IS-URL YES", "NN VBN CURRENT-WORD-ENDS-WITH ed", "* RB CURRENT-WORD-ENDS-WITH ly", "NN JJ CURRENT-WORD-ENDS-WITH al", "NNS JJ CURRENT-WORD-ENDS-WITH al", "NN VB PREV-WORD-IS would", "NN NNS CURRENT-WORD-ENDS-WITH s", "NN VBG CURRENT-WORD-ENDS-WITH ing" ] } ================================================ FILE: lib/natural/brill_pos_tagger/data/English/tr_from_posjs.txt ================================================ VBD NN PREV-TAG DT VBP NN PREV-TAG DT VB NN PREV-TAG DT NN CD CURRENT-WORD-IS-NUMBER YES NNP CD CURRENT-WORD-IS-NUMBER YES NNS CD CURRENT-WORD-IS-NUMBER YES NNPS CD CURRENT-WORD-IS-NUMBER YES NN URL CURRENT-WORD-IS-URL YES NNS URL CURRENT-WORD-IS-URL YES NNP URL CURRENT-WORD-IS-URL YES NNPS URL CURRENT-WORD-IS-URL YES NN VBN CURRENT-WORD-ENDS-WITH ed * RB CURRENT-WORD-ENDS-WITH ly NN JJ CURRENT-WORD-ENDS-WITH al NNS JJ CURRENT-WORD-ENDS-WITH al NN VB PREV-WORD-IS would NN NNS CURRENT-WORD-ENDS-WITH s NN VBG CURRENT-WORD-ENDS-WITH ing ================================================ FILE: lib/natural/brill_pos_tagger/index.d.ts ================================================ /* Copyright (c) 2022, Dylan R. E. Moonfire , Emily Marigold Klassen , Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import type { Feature } from '../classifiers' declare interface RuleTemplatesItem { function: (sentence: Sentence, i: number, parameter1?: string, parameter2?: string) => boolean window: number[] nrParameters: number parameter1Values?: (sentence: Sentence, i: number) => string[] parameter2Values?: (sentence: Sentence, i: number) => string[] } export type RuleTemplates = Record export let ruleTemplates: RuleTemplates export class RuleTemplate { constructor (templateName: string, metadata: RuleTemplatesItem) windowFitsSite (sentence: Sentence, i: number): void } declare class Predicate { constructor (name: string, parameter1: string, parameter2?: string) name: string parameter1: string parameter2: string | undefined meta: RuleTemplatesItem evaluate (sentence: Sentence, position: number): boolean } declare class TransformationRule { constructor (c1: string, c2: string, predicate: string, parameter1: string, parameter2?: string) literal: string[] predicate: Predicate old_category: string new_category: string neutral: number positive: number negative: number hasBeenSelectedAsHighRuleBefore: boolean key (): string apply (sentence: Sentence, position: number): void isApplicableAt (sentence: Sentence, taggedSentence: Sentence, i: number): boolean prettyPrint (): string applyAt (sentence: Sentence, position: number): void score (): number } export class RuleSet { constructor (language: string) rules: TransformationRule[] addRule (rule: TransformationRule): boolean removeRule (rule: TransformationRule): void getRules (): TransformationRule[] nrRules (): number hasRule (rule: TransformationRule): boolean prettyPrint (): string } export class Lexicon { constructor (language: string, defaultCategory: string, defaultCategoryCapitalised?: string) lexicon: Record defaultCategory: string defaultCategoryCapitalised: string | undefined parseLexicon (data: string): void tagWordWithDefaults (word: string): string tagWord (word: string): string[] addWord (word: string, categories: string[]): void prettyPrint (): string nrEntries (): number size (): number setDefaultCategories (category: string, categoryCapitalised: string): void } declare class Corpus { constructor (data: string | TaggedCorpus, typeOfCorpus: number, SentenceClass: typeof Sentence) private readonly wordCount: number private readonly sentences: Sentence[] private readonly tagFrequencies: Record | undefined> private readonly posTags: Record parseBrownCorpus (data: string, SentenceClass: typeof Sentence): void getTags (): string[] splitInTrainAndTest (percentageTrain: number): [Corpus, Corpus] analyse (): void buildLexicon (): Lexicon tag (lexicon: Lexicon): void nrSentences (): number nrWords (): number private generateFeatures (): Feature[] // Incomplete method: // prettyPrint } declare interface BrillPOSTaggedWord { token: string tag: string } declare interface BrillPOSTaggedSentence { taggedWords: BrillPOSTaggedWord[] } declare interface TaggedCorpus { wordCount: number sentences: BrillPOSTaggedSentence[] } export class Sentence { constructor (data?: string[]) taggedWords: BrillPOSTaggedWord[] addTaggedWord (token: string, tag: string): void clone (): Sentence } export class BrillPOSTagger { constructor (lexicon: Lexicon, ruleSet: RuleSet) private readonly lexicon: Lexicon private readonly ruleSet: RuleSet tag (sentence: string[]): Sentence tagWithLexicon (sentence: string[]): Sentence applyRules (sentence: Sentence): Sentence } export class BrillPOSTester { test (corpus: Corpus, tagger: BrillPOSTagger): [number, number] } export class BrillPOSTrainer { constructor (ruleScoreThreshold: number) private readonly ruleScoreThreshold: number private readonly corpus: Corpus private readonly templates: RuleTemplates private readonly positiveRules: RuleSet private readonly mapRuleToSites: Record | undefined> | undefined> private readonly mapSiteToRules: Record | undefined> | undefined> private selectHighRule (): TransformationRule private mapRuleToSite (rule: TransformationRule, i: number, j: number): void private mapSiteToRule (i: number, j: number, rule: TransformationRule): void private associateSiteWithRule (i: number, j: number, rule: TransformationRule): void private siteIsAssociatedWithRule (i: number, j: number, rule: TransformationRule): boolean private getSites (rule: TransformationRule): Array<[number, number]> private getRules (i: number, j: number): TransformationRule[] private disconnectSiteFromRule (i: number, j: number, rule: TransformationRule): void private scoreRule (rule: TransformationRule, i: number, j: number): void private generatePositiveRules (i: number, j: number): RuleSet private scanForPositiveRules (): void private scanForSites (): void private neighbourhood (i: number, j: number): Array<[number, number]> train (corpus: Corpus, templates: RuleTemplate[], lexicon: Lexicon): RuleSet printRulesWithScores (): string } export interface TagResults { results: string[][][] } ================================================ FILE: lib/natural/brill_pos_tagger/index.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' exports.BrillPOSTagger = require('./lib/Brill_POS_Tagger') exports.BrillPOSTrainer = require('./lib/Brill_POS_Trainer') exports.BrillPOSTester = require('./lib/Brill_POS_Tester') exports.Lexicon = require('./lib/Lexicon') exports.RuleSet = require('./lib/RuleSet') exports.ruleTemplates = require('./lib/RuleTemplates') exports.RuleTemplate = require('./lib/RuleTemplate') exports.Corpus = require('./lib/Corpus') exports.Sentence = require('./lib/Sentence') ================================================ FILE: lib/natural/brill_pos_tagger/lib/Brill_POS_Tagger.js ================================================ /* Brill's POS Tagger Copyright (C) 2019 Hugo W.L. ter Doest 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 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ 'use strict' const Sentence = require('./Sentence') const DEBUG = false class BrillPOSTagger { constructor (lexicon, ruleSet) { this.lexicon = lexicon this.ruleSet = ruleSet } // Tags a sentence, sentence is an array of words // Returns an array of tagged words; a tagged words is an array consisting of // the word itself followed by its lexical category tag (sentence) { const taggedSentence = this.tagWithLexicon(sentence) DEBUG && console.log(taggedSentence) return this.applyRules(taggedSentence) } tagWithLexicon (sentence) { const taggedSentence = new Sentence() const that = this sentence.forEach(function (word, index) { const categories = that.lexicon.tagWord(word) taggedSentence.addTaggedWord(word, categories[0]) }) return (taggedSentence) } // Applies the transformation rules to an initially tagged sentence. // taggedSentence is an array of tagged words. // A tagged word is an array consisting of the word itself followed by its lexical category. // Returns an array of tagged words as well applyRules (sentence) { for (let i = 0, size = sentence.taggedWords.length; i < size; i++) { this.ruleSet.getRules().forEach(function (rule) { rule.apply(sentence, i) }) } return sentence } } module.exports = BrillPOSTagger ================================================ FILE: lib/natural/brill_pos_tagger/lib/Brill_POS_Tester.js ================================================ /* Brill's POS Testing class Copyright (C) 2017 Hugo W.L. ter Doest 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 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ 'use strict' class BrillPOSTester { test (corpus, tagger) { let totalWords = 0 let correctTagsLexicon = 0 let correctTagsAfterRules = 0 // Tag the corpus using the tagger corpus.sentences.forEach(function (sentence) { const s = sentence.taggedWords.map(function (token) { return token.token }) // Use the lexicon to tag the sentence const taggedSentence = tagger.tagWithLexicon(s) // Count the right tags sentence.taggedWords.forEach(function (token, i) { totalWords++ if (token.tag === taggedSentence.taggedWords[i].tag) { correctTagsLexicon++ } }) // Use the rule set to tag the sentence const taggedSentenceAfterRules = tagger.applyRules(taggedSentence) // Count the right tags sentence.taggedWords.forEach(function (token, i) { if (token.tag === taggedSentenceAfterRules.taggedWords[i].tag) { correctTagsAfterRules++ } }) }) // Return percentage right return [100 * correctTagsLexicon / totalWords, 100 * correctTagsAfterRules / totalWords] } } module.exports = BrillPOSTester ================================================ FILE: lib/natural/brill_pos_tagger/lib/Brill_POS_Trainer.js ================================================ /* Brill POS Trainer class Copyright (C) 2017 Hugo W.L. ter Doest 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 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ // Algorithm is based on: // Exploring the Statistical Derivation of Transformational Rule Sequences // for Part-of-Speech Tagging, Lance A. Ramshaw and Mitchell P. Marcus // http://acl-arc.comp.nus.edu.sg/archives/acl-arc-090501d4/data/pdf/anthology-PDF/W/W94/W94-0111.pdf 'use strict' const TransformationRule = require('./TransformationRule') const RuleSet = require('./RuleSet') const Sentence = require('./Sentence') // Training continues as long as there are rules with a positive score // that have not been selected before const minScore = 0 // After training rules with a score below scoreThreshold are pruned class BrillPOSTrainer { constructor (ruleScoreThreshold) { if (ruleScoreThreshold) { this.ruleScoreThreshold = ruleScoreThreshold } else { this.ruleScoreThreshold = 1 } } // Return the highest scoring rule from the rule set selectHighRule () { let highestRule = null // Walk through the map and find the rule with highest score this.positiveRules.getRules().forEach(function (rule) { if (highestRule === null) { if (!rule.hasBeenSelectedAsHighRuleBefore) { highestRule = rule } } else { if ((rule.score() > highestRule.score()) && !rule.hasBeenSelectedAsHighRuleBefore) { highestRule = rule } } }) if (highestRule !== null) { highestRule.hasBeenSelectedAsHighRuleBefore = true } // Return the rule with the highest score return highestRule } mapRuleToSite (rule, i, j) { if (!this.mapRuleToSites[rule.key()]) { this.mapRuleToSites[rule.key()] = {} } if (!this.mapRuleToSites[rule.key()][i]) { this.mapRuleToSites[rule.key()][i] = {} } this.mapRuleToSites[rule.key()][i][j] = true } mapSiteToRule (i, j, rule) { if (!this.mapSiteToRules[i]) { this.mapSiteToRules[i] = {} } if (!this.mapSiteToRules[i][j]) { this.mapSiteToRules[i][j] = {} } this.mapSiteToRules[i][j][rule.key()] = rule } associateSiteWithRule (i, j, rule) { this.mapRuleToSite(rule, i, j) this.mapSiteToRule(i, j, rule) } siteIsAssociatedWithRule (i, j, rule) { if (this.mapSiteToRules[i]) { if (this.mapSiteToRules[i][j]) { if (this.mapSiteToRules[i][j][rule.key()]) { return true } } } return false } // Returns an array of all sites associated with rule getSites (rule) { const that = this const result = [] Object.keys(this.mapRuleToSites[rule.key()]).forEach(function (i) { Object.keys(that.mapRuleToSites[rule.key()][i]).forEach(function (j) { // Unary plus the convert hash keys i and j to integer result.push([+i, +j]) }) }) // logger.debug("BrillPOSTrainer.prototype.getSites: sites " + JSON.stringify(result)); return (result) } // Returns an array of all rules associated with the site getRules (i, j) { let result = [] const that = this if (this.mapSiteToRules[i]) { if (this.mapSiteToRules[i][j]) { result = Object.keys(this.mapSiteToRules[i][j]).map(function (key) { return that.mapSiteToRules[i][j][key] }) } } return result } disconnectSiteFromRule (i, j, rule) { // mapRuleToSites if (this.mapRuleToSites[rule.key()]) { if (this.mapRuleToSites[rule.key()][i]) { if (this.mapRuleToSites[rule.key()][i][j]) { delete this.mapRuleToSites[rule.key()][i][j] } } } // mapSiteToRules if (this.mapSiteToRules[i]) { if (this.mapSiteToRules[i][j]) { if (this.mapSiteToRules[i][j][rule.key()]) { delete this.mapSiteToRules[i][j][rule.key()] } } } } // Adjusts the score of the rule at position i, j of the corpus scoreRule (rule, i, j) { // logger.debug("BrillPOSTrainer.prototype.scoreRule: entry"); const token = this.corpus.sentences[i].taggedWords[j] const rightTag = token.tag const oldTag = token.testTag const newTag = token.newTag if (rightTag !== oldTag) { // Old tag is wrong if (newTag === rightTag) { // New tag is right rule.positive++ // If the score changes, it may be selected again as highest scoring rule rule.hasBeenSelectedAsHighRuleBefore = false // logger.debug("BrillPOSTrainer.prototype.scoreRule: positive: " + rule.key() + "\t score: " + rule.positive); } else { // New tag is wrong as well --> neutral rule.neutral++ // logger.debug("BrillPOSTrainer.prototype.scoreRule: neutral: " + rule.key() + "\t score: " + rule.neutral); } } else { // Old tag is right if (newTag === rightTag) { // New tag is right --> neutral rule.neutral++ // logger.debug("BrillPOSTrainer.prototype.scoreRule: neutral: " + rule.key() + "\t score: " + rule.neutral); } else { // New tag is false rule.negative++ // If the score changes, it may be selected again as highest scoring rule rule.hasBeenSelectedAsHighRuleBefore = false // logger.debug("BrillPOSTrainer.prototype.scoreRule: negative: " + rule.key() + "\t score: " + rule.negative); } } // logger.debug("BrillPOSTrainer.prototype.scoreRule: exit"); } // Generate positive rules for this given site using templates generatePositiveRules (i, j) { const sentence = this.corpus.sentences[i] const token = sentence.taggedWords[j] // A positive rule should trigger on the currently assigned testTag const oldTag = token.testTag // logger.debug("BrillPOSTrainer.prototype.generatePositiveRules: oldTag " + oldTag); // It should assign the right tag as given by the corpus const newTag = token.tag // logger.debug("BrillPOSTrainer.prototype.generatePositiveRules: newTag " + newTag); const newRules = new RuleSet() // Exit if testTag already is the right tag --> will not result in positive rules if (oldTag === newTag) { return newRules } this.templates.forEach(function (template) { if (template.windowFitsSite(sentence, j)) { if (template.meta.nrParameters === 1) { template.meta.parameter1Values(sentence, j).forEach(function (value) { newRules.addRule(new TransformationRule(oldTag, newTag, template.predicateName, value)) }) } else { if (template.meta.nrParameters === 2) { template.meta.parameter1Values(sentence, j).forEach(function (value1) { template.meta.parameter2Values(sentence, j).forEach(function (value2) { newRules.addRule(new TransformationRule(oldTag, newTag, template.predicateName, value1, value2)) }) }) } else { // 0 paramaters newRules.addRule(new TransformationRule(oldTag, newTag, template.predicateName)) } } } }) return newRules } // Finds all rules that are applicable at some site scanForPositiveRules () { // logger.debug("BrillPOSTrainer.prototype.scanForPositiveRules: entry"); const that = this this.corpus.sentences.forEach(function (sentence, i) { sentence.taggedWords.forEach(function (token, j) { // logger.debug("BrillPOSTrainer.prototype.scanForPositiveRules: sentence no " + i); const newRules = that.generatePositiveRules(i, j) newRules.getRules().forEach(function (rule) { that.positiveRules.addRule(rule) // logger.debug("BrillPOSTrainer.prototype.scanForPositiveRules: nrRules " + that.positiveRules.nrRules()); }) }) }) // logger.debug("BrillPOSTrainer.prototype.scanForPositiveRules: exit, number of rules: " + this.positiveRules.nrRules()); } // Find all sites where the rules can be applied, register these sites and // update the scores scanForSites () { // logger.debug("BrillPOSTrainer.prototype.scanForSites: entry"); const that = this // Scan the corpus this.corpus.sentences.forEach(function (sentence, i) { if (i % 100 === 0) { // logger.info("BrillPOSTrainer.prototype.scanForSites: sentence " + i); } const taggedSentence = new Sentence() sentence.taggedWords.forEach(function (wordObject) { taggedSentence.addTaggedWord(wordObject.token, wordObject.testTag) }) sentence.taggedWords.forEach(function (token, j) { that.positiveRules.getRules().forEach(function (rule) { if (rule.isApplicableAt(sentence, taggedSentence, j)) { that.associateSiteWithRule(i, j, rule) that.scoreRule(rule, i, j) // logger.debug("BrillPOSTrainer.prototype.scanForSites: (sentence, token, rule): (" + i + ", " + j + ", " + rule.prettyPrint() + ")"); } }) }) }) // logger.debug("BrillPOSTrainer.prototype.scanForSites: exit"); } // Returns a list of sites that may have been touched by a changing tag neighbourhood (i, j) { const sentenceLength = this.corpus.sentences[i].length const list = [] if (this.index > 2) { list.push([i, j - 3]) } if (this.index > 1) { list.push([i, j - 2]) } if (this.index > 0) { list.push([i, j - 1]) } if (this.index < sentenceLength - 1) { list.push([i, j + 1]) } if (this.index < sentenceLength - 2) { list.push([i, j + 2]) } if (this.index > sentenceLength - 3) { list.push([i, j + 3]) } return list } // corpus: an array of token arrays // templates: an array of rule templates // lexicon: lexicon that provides method tagWord(word) train (corpus, templates, lexicon) { this.corpus = corpus this.templates = templates this.positiveRules = new RuleSet() this.mapRuleToSites = {} this.mapSiteToRules = {} // logger.debug("BrillPOSTrainer.prototype.train: entry"); this.corpus.tag(lexicon) this.scanForPositiveRules() // logger.info("BrillPOSTrainer.prototype.train: initial number of rules: " + this.positiveRules.nrRules()); this.scanForSites() let highRule = this.selectHighRule() let iterationNumber = 0 const that = this while ((highRule !== null) && (highRule.score() > minScore)) { if ((iterationNumber % 5) === 0) { // logger.info("BrillPOSTrainer.prototype.train: training iteration: " + iterationNumber); } // logger.debug("BrillPOSTrainer.prototype.train: highRule selected: " + highRule.key()); // logger.debug("BrillPOSTrainer.prototype.train: number of rules: " + this.positiveRules.nrRules()); // logger.debug("BrillPOSTrainer.prototype.train: score of highRule: " + highRule.score()); // Apply the high rule to each change site on its site list this.getSites(highRule).forEach(function (site) { // logger.debug("BrillPOSTrainer.prototype.train: apply highRule to: " + site); // logger.debug("BrillPOSTrainer.prototype.train: sentence length: " + that.corpus.sentences[site[0]].length); highRule.applyAt(that.corpus.sentences[site[0]], site[1]) }) const unseenRules = new RuleSet() this.getSites(highRule).forEach(function (site) { that.neighbourhood(site[0], site[1]).forEach(function (testSite) { // Generate positive rules for testSite const newRules = that.generatePositiveRules(testSite[0], testSite[1]) // Disconnect test site from its rules // because highrule has been applied that.getRules(testSite[0], testSite[1]).forEach(function (rule) { if (!newRules.hasRule(rule)) { that.disconnectSiteFromRule(testSite[0], testSite[1], rule) } }) // Connect new rules not already connected to the test site newRules.getRules().forEach(function (rule) { if (!that.siteIsAssociatedWithRule(testSite[0].testSite[1], rule)) { if (that.positiveRules.hasRule(rule)) { that.associateSiteWithRule(testSite[0], testSite[1], rule) } else { unseenRules.addRule(rule) } } }) // Process unseen rules if (unseenRules.nrRules() > 0) { unseenRules.getRules().forEach(function (rule) { that.positiveRules.addRule(rule) }) that.corpus.sentences.forEach(function (sentence, i) { const taggedSentence = sentence.map(function (token) { return [token.token, token.testTag] }) sentence.forEach(function (token, j) { unseenRules.getRules().forEach(function (rule) { if (rule.isApplicableAt(sentence, taggedSentence, j)) { that.associateSiteWithRule(i, j, rule) that.scoreRule(rule, i, j) } }) }) }) } }) }) // Select next highest scoring rule highRule = this.selectHighRule() iterationNumber++ } // logger.info("BrillPOSTrainer.prototype.train: number of iterations: " + iterationNumber); // logger.info("BrillPOSTrainer.prototype.train: number of rules: " + this.positiveRules.nrRules()); // Remove rules having a non-positive score this.positiveRules.getRules().forEach(function (rule) { if (rule.score() < that.ruleScoreThreshold) { that.positiveRules.removeRule(rule) } }) // logger.info("BrillPOSTrainer.prototype.train: number of rules after pruning: " + this.positiveRules.nrRules()); // logger.debug("BrillPOSTrainer.prototype.train: exit"); return this.positiveRules } printRulesWithScores () { let result = '' function compareRules (a, b) { if (a.score() > b.score()) { return -1 } else { if (a.score() < b.score()) { return 1 } else { return 0 } } } const rules = this.positiveRules.getRules() const sortedRules = rules.sort(compareRules) sortedRules.forEach(function (rule) { // if (rule.score() > 0) { result += rule.score() + '\t' + rule.positive + '\t' + rule.negative + '\t' + rule.neutral + '\t' + rule.prettyPrint() + '\n' // } }) return result } } module.exports = BrillPOSTrainer ================================================ FILE: lib/natural/brill_pos_tagger/lib/Corpus.js ================================================ /* Corpus class for parsing and analysing corpora Copyright (C) 2019 Hugo W.L. ter Doest 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 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ 'use strict' const Lexicon = require('./Lexicon') const BROWN = 1 const JSON = 2 // sentences: an array of annotated sentences // A sentence is an array of annotated tokens // A token is an object with (token, tag, testTag, ruleList) class Corpus { constructor (data, typeOfCorpus, SentenceClass) { this.wordCount = 0 this.sentences = [] const that = this if (data) { // For other types of corpora add a case here and supply a parsing method switch (typeOfCorpus) { case BROWN: this.parseBrownCorpus(data, SentenceClass) break case JSON: // Assume it is a JSON object of a corpus data.sentences.forEach(function (s) { const taggedSentence = new SentenceClass(s.taggedWords) that.sentences.push(taggedSentence) that.wordCount += s.taggedWords.length }) break } } } // data is raw text // A corpus parsing method should split the corpus in sentences each of which // consist of an array of tokens. parseBrownCorpus (data, SentenceClass) { const that = this const lines = data.split('\n') lines.forEach(function (line) { const trimmedLine = line.trim() // Only parse lines that contain characters if (trimmedLine !== '') { const taggedSentence = new SentenceClass() const tokens = line.trim().split(/\s+/) tokens.forEach(function (token) { that.wordCount++ // Create a tagged sentences consisting of tokens const wordPlusTag = token.split('_') taggedSentence.addTaggedWord(wordPlusTag[0], wordPlusTag[1]) }) // Add the sentence to the corpus that.sentences.push(taggedSentence) } }) } // Returns an array of all POS tags used in the corpus getTags () { return Object.keys(this.posTags) } // Splits the corpus in a training and testing set. // percentageTrain is the size of the training corpus in percent // Returns an array with two elements: training corpus, testing corpus splitInTrainAndTest (percentageTrain) { const corpusTrain = new Corpus() const corpusTest = new Corpus() const p = percentageTrain / 100 this.sentences.forEach(function (sentence, i) { if (Math.random() < p) { corpusTrain.sentences.push(sentence) } else { corpusTest.sentences.push(sentence) } }) return [corpusTrain, corpusTest] } // Analyses the corpus: // - registers used POS tags // - records the frequency of POS tag for each word analyse () { this.tagFrequencies = {} this.posTags = {} this.wordCount = 0 const that = this this.sentences.forEach(function (sentence) { sentence.taggedWords.forEach(function (token) { that.wordCount++ // Register the tags used in the corpus that.posTags[token.tag] = true // Register the frequency of the tag if (!that.tagFrequencies[token.token]) { that.tagFrequencies[token.token] = {} } if (!that.tagFrequencies[token.token][token.tag]) { that.tagFrequencies[token.token][token.tag] = 0 } that.tagFrequencies[token.token][token.tag]++ }) }) } // Creates a lexicon by taking the most frequently occurring tag of a word // as the right tag buildLexicon () { const lexicon = new Lexicon() const that = this this.analyse() Object.keys(this.tagFrequencies).forEach(function (token) { const catToFreq = that.tagFrequencies[token] const categories = Object.keys(catToFreq) function compareByFrequency (a, b) { if (catToFreq[a] > catToFreq[b]) { return -1 } else { if (catToFreq[a] < catToFreq[b]) { return 1 } else { return 0 } } } const sortedCategories = categories.sort(compareByFrequency) lexicon.addWord(token, sortedCategories) }) return lexicon } tag (lexicon) { this.sentences.forEach(function (sentence) { sentence.taggedWords.forEach(function (token) { // tagWord returns a list of categories, take the first category token.testTag = lexicon.tagWord(token.token)[0] }) }) } nrSentences () { return this.sentences.length } nrWords () { return this.wordCount } generateFeatures () { let features = [] this.sentences.forEach(function (sentence) { features = sentence.generateFeatures(features) }) // console.log(JSON.stringify(features)); return features } prettyPrint () { this.sentences.forEach(function (sentence, index) { // logger.debug("sentence no " + index + "\n" + // JSON.stringify(sentence, null, 2)); }) } } module.exports = Corpus ================================================ FILE: lib/natural/brill_pos_tagger/lib/Lexicon.js ================================================ /* Lexicon class Copyright (C) 2019 Hugo W.L. ter Doest 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 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ 'use strict' const englishLexicon = require('../data/English/lexicon_from_posjs.json') const dutchLexicon = require('../data/Dutch/brill_Lexicon.json') const DEBUG = false class Lexicon { // Constructor creates a Lexicon for language constructor (language, defaultCategory, defaultCategoryCapitalised, extendedLexicon) { const lexicon = (() => { switch (language) { case 'EN': return englishLexicon case 'DU': return dutchLexicon default: return dutchLexicon } })() this.lexicon = Object.assign(lexicon, extendedLexicon || {}) if (defaultCategory) { this.defaultCategory = defaultCategory if (defaultCategoryCapitalised) { this.defaultCategoryCapitalised = defaultCategoryCapitalised } } } // Parses a lexicon in text format: word cat1 cat2 ... catn parseLexicon (data) { // Split into an array of non-empty lines const arrayOfLines = data.match(/[^\r\n]+/g) this.lexicon = {} // Object.create(null); const that = this arrayOfLines.forEach(function (line) { // Split line by whitespace const elements = line.trim().split(/\s+/) if (elements.length > 0) { that.lexicon[elements[0]] = elements.slice(1) } }) } tagWordWithDefaults (word) { if (/[A-Z]/.test(word[0]) && this.defaultCategoryCapitalised) { // Capitalised return this.defaultCategoryCapitalised } else { // If not found assign default_category return this.defaultCategory } } // Returns a list of categories for word tagWord (word) { let categories = this.lexicon[word] DEBUG && console.log(categories) if (!categories || (typeof categories === 'function')) { categories = this.lexicon[word.toLowerCase()] } if (!categories || (typeof categories === 'function')) { categories = [this.tagWordWithDefaults(word)] } return (categories) } // Adds a word to the lexicon. NB simply replaces the entry addWord (word, categories) { this.lexicon[word] = categories } prettyPrint () { let result = '' const that = this Object.keys(this.lexicon).forEach(function (token) { result += token + '\t' that.lexicon[token].forEach(function (cat) { result += cat + '\t' }) result += '\n' }) return result } nrEntries () { return Object.keys(this.lexicon).length } size () { return this.nrEntries() } setDefaultCategories (category, categoryCapitalised) { this.defaultCategory = category if (categoryCapitalised) { this.defaultCategoryCapitalised = categoryCapitalised } } } module.exports = Lexicon ================================================ FILE: lib/natural/brill_pos_tagger/lib/Predicate.js ================================================ /* Predicates for the Brill tagger Copyright (C) 2019 Hugo W.L. ter Doest 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 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ 'use strict' const DEBUG = false const predicates = require('./RuleTemplates') DEBUG && console.log('RuleSet loaded predicates: ' + predicates) class Predicate { constructor (name, parameter1, parameter2) { this.name = name this.meta = predicates[name] if (!this.meta) { this.meta = predicates.DEFAULT } // if (this.meta.nrParameters > 0) { this.parameter1 = parameter1 // } // if (this.meta.nrParameters > 1) { this.parameter2 = parameter2 // } DEBUG && console.log('Predicate\n' + JSON.toString(this.meta, null, 2)) } evaluate (sentence, position) { DEBUG && console.log('Predicate.evalute: ' + this.name) const predicate = this.meta.function return (predicate(sentence, position, this.parameter1, this.parameter2)) } } module.exports = Predicate ================================================ FILE: lib/natural/brill_pos_tagger/lib/RuleSet.js ================================================ /* Set of transformation rules Copyright (C) 2019 Hugo W.L. ter Doest 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 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ 'use strict ' const TFParser = require('./TF_Parser') const dutchRuleSet = require('../data/Dutch/brill_CONTEXTRULES.json') const englishRuleSet = require('../data/English/tr_from_posjs.json') const DEBUG = false class RuleSet { // Constructor takes a language abbreviation and loads the right rule set constructor (language) { let data = englishRuleSet DEBUG && console.log(data) switch (language) { case 'EN': data = englishRuleSet break case 'DU': data = dutchRuleSet break } if (data.rules) { this.rules = {} const that = this data.rules.forEach(function (ruleString) { that.addRule(TFParser.parse(ruleString)) }) } DEBUG && console.log(this.rules) DEBUG && console.log('Brill_POS_Tagger.read_transformation_rules: number of transformation rules read: ' + Object.keys(this.rules).length) } addRule (rule) { // this.rules.push(rule); if (!this.rules[rule.key()]) { this.rules[rule.key()] = rule return true } else { return false } } removeRule (rule) { if (this.rules[rule.key()]) { delete this.rules[rule.key()] } } getRules () { const that = this return Object.keys(this.rules).map(function (key) { return that.rules[key] }) } nrRules () { return Object.keys(this.rules).length } hasRule (rule) { if (this.rules[rule.key()]) { return true } else { return false } } prettyPrint () { let result = '' const that = this Object.keys(this.rules).forEach(function (key) { const rule = that.rules[key] result += rule.prettyPrint() + '\n' }) return result } } module.exports = RuleSet ================================================ FILE: lib/natural/brill_pos_tagger/lib/RuleTemplate.js ================================================ /* Rule Template class for deriving transformation rules. Copyright (C) 2017 Hugo W.L. ter Doest 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 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ class RuleTemplate { constructor (templateName, metadata) { this.predicateName = templateName this.meta = metadata } windowFitsSite (sentence, i) { return ((i + this.meta.window[0] >= 0) && (i + this.meta.window[0] < sentence.taggedWords.length) && (i + this.meta.window[1] >= 0) && (i + this.meta.window[1] < sentence.taggedWords.length)) } } module.exports = RuleTemplate ================================================ FILE: lib/natural/brill_pos_tagger/lib/RuleTemplates.js ================================================ /* Rule templates that provide metadata for generating transformation rules Copyright (C) 2017 Hugo W.L. ter Doest 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 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ 'use strict' const ruleTemplates = { // Predicates as used in the English rules in data/English/tr_from_posjs.txt 'NEXT-TAG': { // maps to the predicate function function: nextTagIs, // Minimum required space before or after current position to be a relevant predicate window: [0, 1], // The number of parameters the predicate takes nrParameters: 1, // Function that returns relevant values for parameter 1 parameter1Values: nextTagParameterValues }, 'NEXT-WORD-IS-CAP': { function: nextWordIsCap, window: [0, 1], nrParameters: 0 }, 'PREV-1-OR-2-OR-3-TAG': { function: prev1Or2Or3Tag, window: [-1, 0], nrParameters: 1, parameter1Values: prev1Or2Or3TagParameterValues }, 'PREV-1-OR-2-TAG': { function: prev1Or2Tag, window: [-1, 0], nrParameters: 1, parameter1Values: prev1Or2TagParameterValues }, 'NEXT-WORD-IS-TAG': { function: nextTagIs, window: [0, 1], nrParameters: 1, parameter1Values: nextTagParameterValues }, 'PREV-TAG': { function: prevTagIs, window: [-1, 0], nrParameters: 1, parameter1Values: prevTagParameterValues }, /* "CURRENT-WORD-IS-TAG": { "function": current_word_is_tag, "window": [0], "nrParameter": 1, "parameter1Values": currentTagParameterValues }, */ 'PREV-WORD-IS-CAP': { function: prevWordIsCap, window: [-1, 0], nrParameters: 0 }, 'CURRENT-WORD-IS-CAP': { function: currentWordIsCap, window: [0, 0], nrParameters: 0 }, 'CURRENT-WORD-IS-NUMBER': { function: currentWordIsNumber, window: [0, 0], nrParameters: 0 }, 'CURRENT-WORD-IS-URL': { function: currentWordIsURL, window: [0, 0], nrParameters: 0 }, 'CURRENT-WORD-ENDS-WITH': { function: currentWordEndsWith, window: [0, 0], nrParameters: 1, parameter1Values: currentWordEndsWithParameterValues }, 'PREV-WORD-IS': { function: prevWordIs, window: [-1, 0], nrParameters: 1, parameter1Values: prevWordParameterValues }, // Predicates as used in the Dutch rules in data/Dutch/brill_CONTEXTRULES.jg PREVTAG: { function: prevTagIs, window: [-1, 0], nrParameters: 1, parameter1Values: prevTagParameterValues }, NEXT1OR2TAG: { function: next1Or2TagIs, window: [0, 1], nrParameters: 1, parameter1Values: next1Or2TagIsParameterValues }, NEXTTAG: { function: nextTagIs, window: [0, 1], nrParameters: 1, parameter1Values: nextTagParameterValues }, PREV1OR2TAG: { function: prev1Or2Tag, window: [-1, 0], nrParameters: 1, parameter1Values: prev1Or2TagParameterValues }, WDAND2TAGAFT: { function: currentWordAnd2TagAfterAre, window: [0, 2], nrParameters: 2, parameter1Values: currentWordParameterValues, parameter2Values: twoTagAfterParameterValues }, NEXT1OR2OR3TAG: { function: next1Or2Or3Tag, // Minimum required window to apply this template is one tag to the right window: [0, 1], nrParameters: 1, parameter1Values: next1Or2Or3TagParameterValues }, CURWD: { function: currentWordIs, window: [0, 0], nrParameters: 1, parameter1Values: currentWordParameterValues }, SURROUNDTAG: { function: surroundedByTags, window: [-1, 1], nrParameters: 2, parameter1Values: prevTagParameterValues, parameter2Values: nextTagParameterValues }, PREV1OR2OR3TAG: { function: prev1Or2Or3Tag, // Minimum required window to apply this template is one tag to the left window: [-1, 0], nrParameters: 1, parameter1Values: prev1Or2Or3TagParameterValues }, WDNEXTTAG: { function: currentWordAndNextTagAre, window: [0, 1], nrParameters: 2, parameter1Values: currentWordParameterValues, parameter2Values: nextTagParameterValues }, PREV1OR2WD: { function: prev1Or2WordIs, window: [-1, 0], nrParameters: 1, parameter1Values: prev1Or2WordParameterValues }, NEXTWD: { function: nextWordIs, window: [0, 1], nrParameters: 1, parameter1Values: nextWordParameterValues }, PREVWD: { function: prevWordIs, window: [-1, 0], nrParameters: 1, parameter1Values: prevWordParameterValues }, NEXT2TAG: { function: next2TagIs, window: [0, 2], nrParameters: 1, parameter1Values: next2TagParameterValues }, WDAND2TAGBFR: { function: currentWordAnd2TagBeforeAre, window: [-2, 0], nrParameters: 2, parameter1Values: currentWordParameterValues, parameter2Values: twoTagBeforeParameterValues }, WDAND2AFT: { function: currentWordAnd2AfterAre, window: [0, 2], nrParameters: 2, parameter1Values: currentWordParameterValues, parameter2Values: twoTagAfterParameterValues }, WDPREVTAG: { function: currentWordAndPrevTagAre, window: [-1, 0], nrParameters: 2, parameter1Values: currentWordParameterValues, parameter2Values: prevTagParameterValues }, RBIGRAM: { function: rightBigramIs, window: [0, 1], nrParameters: 2, parameter1Values: currentWordParameterValues, parameter2Values: nextWordParameterValues }, LBIGRAM: { function: leftBigramIs, window: [-1, 0], nrParameters: 2, parameter1Values: prevWordParameterValues, parameter2Values: currentWordParameterValues }, NEXTBIGRAM: { function: nextBigramIs, window: [0, 2], nrParameters: 2, parameter1Values: nextWordParameterValues, parameter2Values: twoWordAfterParameterValues }, PREVBIGRAM: { function: prevBigramIs, window: [-2, 0], nrParameters: 2, parameter1Values: twoWordBeforeParameterValues, parameter2Values: prevWordParameterValues }, PREV2TAG: { function: prev2TagIs, window: [-2, 0], nrParameters: 2, parameter1Values: twoTagBeforeParameterValues, parameter2Values: prevTagParameterValues }, NEXT1OR2WD: { function: next1Or2WordIs, window: [0, 1], nrParameters: 1, parameter1Values: next1Or2WordParameterValues }, DEFAULT: { function: defaultPredicate, window: [0, 0], nrParameters: 0 } } // ================================== // Predicates that start with words // ================================== function nextWordIsCap (sentence, i, parameter) { if (i < sentence.taggedWords.length - 1) { const nextWord = sentence.taggedWords[i + 1].token return (nextWord[0] === nextWord[0].toUpperCase()) } return (false) } function nextWordIs (sentence, i, parameter) { if (i < sentence.taggedWords.length - 1) { return (sentence.taggedWords[i + 1].token === parameter) } } function nextWordParameterValues (sentence, i) { if (i < sentence.taggedWords.length - 1) { return [sentence.taggedWords[i + 1].token] } else { return [] } } function prevWordIsCap (sentence, i, parameter) { let prevWord = null if (i > 0) { prevWord = sentence.taggedWords[i - 1].token return (prevWord[0] === prevWord[0].toUpperCase()) } return (false) } function currentWordIsCap (sentence, i, parameter) { const currentWord = sentence.taggedWords[i].token return (currentWord[0] === currentWord[0].toUpperCase()) } function currentWordParameterValues (sentence, i) { return [sentence[i].token] } function currentWordIs (sentence, i, parameter) { return (sentence.taggedWords[i].token === parameter) } function isNumeric (num) { return (!isNaN(num)) } function currentWordIsNumber (sentence, i, parameter) { let isNumber = isNumeric(sentence.taggedWords[i].token) // Attempt to parse it as a float if (!isNumber) { isNumber = parseFloat(sentence.taggedWords[i].token) } return ((parameter === 'YES') ? isNumber : !isNumber) } // Checks if the current word is a url // Adapted from the original Javascript Brill tagger function currentWordIsURL (sentence, i, parameter) { let isURL = false if (sentence.taggedWords[i].token.indexOf('.') > -1) { // url if there are two contiguous alpha characters if (/[a-zA-Z]{2}/.test(sentence.taggedWords[i].token)) { isURL = true } } return ((parameter === 'YES') ? isURL : !isURL) } function currentWordAnd2TagAfterAre (sentence, i, parameter1, parameter2) { if (i < sentence.taggedWords.length - 2) { if (sentence.taggedWords[i + 2][1] === parameter2) { return (sentence.taggedWords[i].token === parameter1) } else { return (false) } } else { return (false) } } function twoTagAfterParameterValues (sentence, i) { if (i < sentence.taggedWords.length - 2) { return [sentence.taggedWords[i + 2].tag] } else { return [] } } function currentWordAndNextTagAre (sentence, i, parameter1, parameter2) { let nextTag = false // check current word const currentWord = (sentence.taggedWords[i].token === parameter1) // check next tag if (i < sentence.taggedWords.length - 1) { nextTag = (sentence.taggedWords[i + 1].tag === parameter2) } return (currentWord && nextTag) } function currentWordAndPrevTagAre (sentence, i, parameter1, parameter2) { let prevTag = false // check current word const currentWord = (sentence.taggedWords[i].token === parameter2) // check prev tag if (i > 0) { prevTag = (sentence.taggedWords[i - 1].tag === parameter1) } return (currentWord && prevTag) } function currentWordAnd2TagBeforeAre (sentence, i, parameter1, parameter2) { let twoTagsBefore = false // check current word const currentWord = (sentence.taggedWords[i].token === parameter2) if (i > 1) { // check two tags before twoTagsBefore = (sentence.taggedWords[i - 2].tag === parameter1) } return (currentWord && twoTagsBefore) } function twoTagBeforeParameterValues (sentence, i) { if (i > 1) { return [sentence.taggedWords[i - 2].tag] } else { return [] } } function currentWordAnd2AfterAre (sentence, i, parameter1, parameter2) { let twoWordsAfter = false // check current word const currentWord = (sentence.taggedWords[i].token === parameter1) if (i < sentence.taggedWords.length - 2) { twoWordsAfter = (sentence.taggedWords[i + 2].token === parameter2) } return (currentWord && twoWordsAfter) } function prevWordIs (sentence, i, parameter) { if (i > 0) { return (sentence.taggedWords[i - 1].token.toLowerCase() === parameter.toLowerCase()) } else { return (false) } } // Returns the right value for parameter 1 of prevWordIs function prevWordParameterValues (sentence, i) { if (i > 0) { return [sentence.taggedWords[i - 1].token] } else { return [] } } function prev1Or2WordIs (sentence, i, parameter) { let prev1 = false let prev2 = false if (i > 0) { prev1 = (sentence.taggedWords[i - 1].token.toLowerCase() === parameter.toLowerCase()) } if (i > 1) { prev2 = (sentence.taggedWords[i - 2].token.toLowerCase() === parameter.toLowerCase()) } return (prev1 || prev2) } function prev1Or2WordParameterValues (sentence, i) { const values = [] if (i > 0) { values.push(sentence[i - 1].token) } if (i > 1) { values.push(sentence[i - 2].token) } return values } // Indicates whether or not this string ends with the specified string. // Adapted from the original Javascript Brill tagger function currentWordEndsWith (sentence, i, parameter) { const word = sentence.taggedWords[i].token if (!parameter || (parameter.length > word.length)) { return false } return (word.indexOf(parameter) === (word.length - parameter.length)) } // sentence is an array of token records function currentWordEndsWithParameterValues (sentence, i) { const values = ['ing'] return values } function rightBigramIs (sentence, i, parameter1, parameter2) { const word1 = (sentence.taggedWords[i].token === parameter1) let word2 = false if (i < sentence.taggedWords.length - 1) { word2 = (sentence.taggedWords[i + 1].token === parameter2) } return (word1 && word2) } function leftBigramIs (sentence, i, parameter1, parameter2) { let word1 = false const word2 = (sentence.taggedWords[i].token === parameter2) if (i > 0) { word1 = (sentence.taggedWords[i - 1].token === parameter1) } return (word1 && word2) } function nextBigramIs (sentence, i, parameter1, parameter2) { let word1 = false let word2 = false if (i < sentence.taggedWords.length - 1) { word1 = (sentence.taggedWords[i + 1].token === parameter1) } if (i < sentence.taggedWords.length - 2) { word2 = (sentence.taggedWords[i + 2].token === parameter2) } return (word1 && word2) } function twoWordAfterParameterValues (sentence, i) { if (i < sentence.taggedWords.length - 2) { return [sentence.taggedWords[i + 2].token] } else { return [] } } function prevBigramIs (sentence, i, parameter1, parameter2) { let word1 = false let word2 = false if (i > 1) { word1 = (sentence.taggedWords[i - 2].token === parameter1) } if (i > 0) { word2 = (sentence.taggedWords[i - 1].token === parameter2) } return (word1 && word2) } function twoWordBeforeParameterValues (sentence, i) { if (i > 1) { return [sentence.taggedWords[i - 2].token] } else { return [] } } function next1Or2WordIs (sentence, i, parameter1, parameter2) { let next1 = false let next2 = false if (i < sentence.taggedWords.length - 1) { next1 = (sentence.taggedWords[i + 1].token === parameter1) } if (i < sentence.taggedWords.length - 2) { next2 = (sentence.taggedWords[i + 2].token === parameter2) } return (next1 || next2) } function next1Or2WordParameterValues (sentence, i) { const values = [] if (i < sentence.taggedWords.length - 1) { values.push(sentence.taggedWords[i + 1].token) } if (i < sentence.taggedWords.length - 2) { values.push(sentence.taggedWords[i + 2].token) } return values } // ================================== // Predicates about tags // ================================== function nextTagIs (sentence, i, parameter) { if (i < sentence.taggedWords.length - 1) { return (sentence.taggedWords[i + 1].tag === parameter) } else { return (false) } } function nextTagParameterValues (sentence, i) { if (i < sentence.taggedWords.length - 1) { return [sentence.taggedWords[i + 1].tag] } else { return [] } } function next2TagIs (sentence, i, parameter) { if (i < sentence.taggedWords.length - 2) { return (sentence.taggedWords[i + 2].tag === parameter) } else { return (false) } } function next2TagParameterValues (sentence, i) { if (i < sentence.taggedWords.length - 2) { return [sentence.taggedWords[i + 2].tag] } else { return [] } } function next1Or2TagIs (sentence, i, parameter) { let next1 = false let next2 = false if (i < sentence.taggedWords.length - 1) { next1 = (sentence.taggedWords[i + 1].tag === parameter) } if (i < sentence.taggedWords.length - 2) { next2 = (sentence.taggedWords[i + 2].tag === parameter) } return (next1 || next2) } function next1Or2TagIsParameterValues (sentence, i) { const values = [] if (i < sentence.taggedWords.length - 1) { values.push(sentence.taggedWords[i + 1].tag) } if (i < sentence.taggedWords.length - 2) { values.push(sentence.taggedWords[i + 2].tag) } return values } function next1Or2Or3Tag (sentence, i, parameter) { let next3 = false if (i < sentence.taggedWords.length - 3) { next3 = (sentence.taggedWords[i + 3].tag === parameter) } return (next1Or2TagIs(sentence, i, parameter) || next3) } function next1Or2Or3TagParameterValues (sentence, i) { const values = next1Or2TagIsParameterValues(sentence, i) if (i < sentence.taggedWords.length - 3) { values.push(sentence.taggedWords[i + 3].tag) } return values } function surroundedByTags (sentence, i, parameter1, parameter2) { if (i < sentence.taggedWords.length - 1) { // check next tag if (sentence.taggedWords[i + 1].tag === parameter2) { // check previous tag if (i > 0) { return (sentence.taggedWords[i - 1].tag === parameter1) } else { return (false) } } else { return (false) } } else { return (false) } } function prev1Or2Or3Tag (sentence, i, parameter) { let prev3 = null if (i > 2) { prev3 = sentence.taggedWords[i - 3].tag } return (prev1Or2Tag(sentence, i, parameter) || (prev3 === parameter)) } function prev1Or2Or3TagParameterValues (sentence, i) { const values = prev1Or2TagParameterValues(sentence, i) if (i > 2) { values.push(sentence.taggedWords[i - 3].tag) } return values } function prev1Or2Tag (sentence, i, parameter) { let prev1 = null if (i > 0) { prev1 = sentence.taggedWords[i - 1].tag } let prev2 = null if (i > 1) { prev2 = sentence.taggedWords[i - 2].tag } return ((prev1 === parameter) || (prev2 === parameter)) } function prev1Or2TagParameterValues (sentence, i) { const values = [] if (i > 0) { values.push(sentence.taggedWords[i - 1].tag) } if (i > 1) { values.push(sentence.taggedWords[i - 2].tag) } return values } function prevTagIs (sentence, i, parameter) { let prev = false if (i > 0) { prev = (sentence.taggedWords[i - 1].tag === parameter) } return (prev) } function prevTagParameterValues (sentence, i) { if (i > 0) { return [sentence.taggedWords[i - 1].tag] } else { return [] } } // Looks like a useless predicate because transformation already take the // current tag into account /* function currentWordIsTag (sentence, i, parameter) { return (sentence.taggedWords[i].tag === parameter) } */ function prev2TagIs (sentence, i, parameter) { let prev2 = false if (i > 1) { prev2 = (sentence.taggedWords[i - 2].tag === parameter) } return (prev2) } function defaultPredicate (sentence, i, parameter) { return (false) } module.exports = ruleTemplates ================================================ FILE: lib/natural/brill_pos_tagger/lib/Sentence.js ================================================ /* Sentence class that generates sample elements from sentences Copyright (C) 2018 Hugo W.L. ter Doest 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 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ 'use strict' class Sentence { constructor (data) { this.taggedWords = [] if (data) { this.taggedWords = data } } addTaggedWord (token, tag) { this.taggedWords.push({ token: token, tag: tag }) } clone () { const s = new Sentence() this.taggedWords.forEach(function (wordObject) { s.addTaggedWord(wordObject.token, wordObject.tag) }) return s } } module.exports = Sentence ================================================ FILE: lib/natural/brill_pos_tagger/lib/TF_Parser.js ================================================ /* jscpd:ignore-start */ /* * Generated by PEG.js 0.10.0. * * http://pegjs.org/ */ 'use strict' function peg$subclass (child, parent) { function ctor () { this.constructor = child } ctor.prototype = parent.prototype child.prototype = new ctor() } function peg$SyntaxError (message, expected, found, location) { this.message = message this.expected = expected this.found = found this.location = location this.name = 'SyntaxError' if (typeof Error.captureStackTrace === 'function') { Error.captureStackTrace(this, peg$SyntaxError) } } peg$subclass(peg$SyntaxError, Error) peg$SyntaxError.buildMessage = function (expected, found) { const DESCRIBE_EXPECTATION_FNS = { literal: function (expectation) { return '"' + literalEscape(expectation.text) + '"' }, class: function (expectation) { let escapedParts = '' let i for (i = 0; i < expectation.parts.length; i++) { escapedParts += expectation.parts[i] instanceof Array ? classEscape(expectation.parts[i][0]) + '-' + classEscape(expectation.parts[i][1]) : classEscape(expectation.parts[i]) } return '[' + (expectation.inverted ? '^' : '') + escapedParts + ']' }, any: function (expectation) { return 'any character' }, end: function (expectation) { return 'end of input' }, other: function (expectation) { return expectation.description } } function hex (ch) { return ch.charCodeAt(0).toString(16).toUpperCase() } function literalEscape (s) { return s .replace(/\\/g, '\\\\') .replace(/"/g, '\\"') .replace(/\0/g, '\\0') .replace(/\t/g, '\\t') .replace(/\n/g, '\\n') .replace(/\r/g, '\\r') .replace(/[\x00-\x0F]/g, function (ch) { return '\\x0' + hex(ch) }) .replace(/[\x10-\x1F\x7F-\x9F]/g, function (ch) { return '\\x' + hex(ch) }) } function classEscape (s) { return s .replace(/\\/g, '\\\\') .replace(/\]/g, '\\]') .replace(/\^/g, '\\^') .replace(/-/g, '\\-') .replace(/\0/g, '\\0') .replace(/\t/g, '\\t') .replace(/\n/g, '\\n') .replace(/\r/g, '\\r') .replace(/[\x00-\x0F]/g, function (ch) { return '\\x0' + hex(ch) }) .replace(/[\x10-\x1F\x7F-\x9F]/g, function (ch) { return '\\x' + hex(ch) }) } function describeExpectation (expectation) { return DESCRIBE_EXPECTATION_FNS[expectation.type](expectation) } function describeExpected (expected) { const descriptions = new Array(expected.length) let i; let j for (i = 0; i < expected.length; i++) { descriptions[i] = describeExpectation(expected[i]) } descriptions.sort() if (descriptions.length > 0) { for (i = 1, j = 1; i < descriptions.length; i++) { if (descriptions[i - 1] !== descriptions[i]) { descriptions[j] = descriptions[i] j++ } } descriptions.length = j } switch (descriptions.length) { case 1: return descriptions[0] case 2: return descriptions[0] + ' or ' + descriptions[1] default: return descriptions.slice(0, -1).join(', ') + ', or ' + descriptions[descriptions.length - 1] } } function describeFound (found) { return found ? '"' + literalEscape(found) + '"' : 'end of input' } return 'Expected ' + describeExpected(expected) + ' but ' + describeFound(found) + ' found.' } function peg$parse (input, options) { options = options !== void 0 ? options : {} const peg$FAILED = {} const peg$startRuleFunctions = { transformation_rule: peg$parsetransformation_rule } let peg$startRuleFunction = peg$parsetransformation_rule const peg$c0 = function (c1, c2, pred, pars) { let result = null // Construct rule if (pars.length === 1) { result = new TransformationRule(c1, c2, pred, pars[0]) } else { if (pars.length === 2) { result = new TransformationRule(c1, c2, pred, pars[0], pars[1]) } else { result = new TransformationRule(c1, c2, pred) } } return (result) } const peg$c1 = /^[!-~\xA1-\xFF]/ const peg$c2 = peg$classExpectation([['!', '~'], ['\xA1', '\xFF']], false, false) const peg$c3 = function (characters) { let s = '' for (let i = 0; i < characters.length; i++) { s += characters[i] } return (s) } const peg$c4 = '*' const peg$c5 = peg$literalExpectation('*', false) const peg$c6 = function (wc) { return (wc) } const peg$c7 = '\r\n' const peg$c8 = peg$literalExpectation('\r\n', false) const peg$c9 = '\n' const peg$c10 = peg$literalExpectation('\n', false) const peg$c11 = '\r' const peg$c12 = peg$literalExpectation('\r', false) const peg$c13 = '//' const peg$c14 = peg$literalExpectation('//', false) const peg$c15 = peg$anyExpectation() const peg$c16 = ' ' const peg$c17 = peg$literalExpectation(' ', false) const peg$c18 = '\t' const peg$c19 = peg$literalExpectation('\t', false) let peg$currPos = 0 let peg$savedPos = 0 const peg$posDetailsCache = [{ line: 1, column: 1 }] let peg$maxFailPos = 0 let peg$maxFailExpected = [] let peg$silentFails = 0 let peg$result if ('startRule' in options) { if (!(options.startRule in peg$startRuleFunctions)) { throw new Error("Can't start parsing from rule \"" + options.startRule + '".') } peg$startRuleFunction = peg$startRuleFunctions[options.startRule] } function text () { return input.substring(peg$savedPos, peg$currPos) } function location () { return peg$computeLocation(peg$savedPos, peg$currPos) } function expected (description, location) { location = location !== void 0 ? location : peg$computeLocation(peg$savedPos, peg$currPos) throw peg$buildStructuredError( [peg$otherExpectation(description)], input.substring(peg$savedPos, peg$currPos), location ) } function error (message, location) { location = location !== void 0 ? location : peg$computeLocation(peg$savedPos, peg$currPos) throw peg$buildSimpleError(message, location) } function peg$literalExpectation (text, ignoreCase) { return { type: 'literal', text: text, ignoreCase: ignoreCase } } function peg$classExpectation (parts, inverted, ignoreCase) { return { type: 'class', parts: parts, inverted: inverted, ignoreCase: ignoreCase } } function peg$anyExpectation () { return { type: 'any' } } function peg$endExpectation () { return { type: 'end' } } function peg$otherExpectation (description) { return { type: 'other', description: description } } function peg$computePosDetails (pos) { let details = peg$posDetailsCache[pos]; let p if (details) { return details } else { p = pos - 1 while (!peg$posDetailsCache[p]) { p-- } details = peg$posDetailsCache[p] details = { line: details.line, column: details.column } while (p < pos) { if (input.charCodeAt(p) === 10) { details.line++ details.column = 1 } else { details.column++ } p++ } peg$posDetailsCache[pos] = details return details } } function peg$computeLocation (startPos, endPos) { const startPosDetails = peg$computePosDetails(startPos) const endPosDetails = peg$computePosDetails(endPos) return { start: { offset: startPos, line: startPosDetails.line, column: startPosDetails.column }, end: { offset: endPos, line: endPosDetails.line, column: endPosDetails.column } } } function peg$fail (expected) { if (peg$currPos < peg$maxFailPos) { return } if (peg$currPos > peg$maxFailPos) { peg$maxFailPos = peg$currPos peg$maxFailExpected = [] } peg$maxFailExpected.push(expected) } function peg$buildSimpleError (message, location) { return new peg$SyntaxError(message, null, null, location) } function peg$buildStructuredError (expected, found, location) { return new peg$SyntaxError( peg$SyntaxError.buildMessage(expected, found), expected, found, location ) } function peg$parsetransformation_rule () { let s0, s1, s2, s3, s4, s5 s0 = peg$currPos s1 = peg$parsecategory1() if (s1 !== peg$FAILED) { s2 = peg$parseidentifier() if (s2 !== peg$FAILED) { s3 = peg$parseidentifier() if (s3 !== peg$FAILED) { s4 = [] s5 = peg$parseidentifier() while (s5 !== peg$FAILED) { s4.push(s5) s5 = peg$parseidentifier() } if (s4 !== peg$FAILED) { peg$savedPos = s0 s1 = peg$c0(s1, s2, s3, s4) s0 = s1 } else { peg$currPos = s0 s0 = peg$FAILED } } else { peg$currPos = s0 s0 = peg$FAILED } } else { peg$currPos = s0 s0 = peg$FAILED } } else { peg$currPos = s0 s0 = peg$FAILED } return s0 } function peg$parsecategory1 () { let s0 s0 = peg$parsewild_card() if (s0 === peg$FAILED) { s0 = peg$parseidentifier() } return s0 } function peg$parseidentifier () { let s0, s1, s2 s0 = peg$currPos s1 = [] if (peg$c1.test(input.charAt(peg$currPos))) { s2 = input.charAt(peg$currPos) peg$currPos++ } else { s2 = peg$FAILED if (peg$silentFails === 0) { peg$fail(peg$c2) } } if (s2 !== peg$FAILED) { while (s2 !== peg$FAILED) { s1.push(s2) if (peg$c1.test(input.charAt(peg$currPos))) { s2 = input.charAt(peg$currPos) peg$currPos++ } else { s2 = peg$FAILED if (peg$silentFails === 0) { peg$fail(peg$c2) } } } } else { s1 = peg$FAILED } if (s1 !== peg$FAILED) { s2 = peg$parseS_no_eol() if (s2 !== peg$FAILED) { peg$savedPos = s0 s1 = peg$c3(s1) s0 = s1 } else { peg$currPos = s0 s0 = peg$FAILED } } else { peg$currPos = s0 s0 = peg$FAILED } return s0 } function peg$parsewild_card () { let s0, s1, s2 s0 = peg$currPos if (input.charCodeAt(peg$currPos) === 42) { s1 = peg$c4 peg$currPos++ } else { s1 = peg$FAILED if (peg$silentFails === 0) { peg$fail(peg$c5) } } if (s1 !== peg$FAILED) { s2 = peg$parseS_no_eol() if (s2 !== peg$FAILED) { peg$savedPos = s0 s1 = peg$c6(s1) s0 = s1 } else { peg$currPos = s0 s0 = peg$FAILED } } else { peg$currPos = s0 s0 = peg$FAILED } return s0 } function peg$parseEOL () { let s0 if (input.substr(peg$currPos, 2) === peg$c7) { s0 = peg$c7 peg$currPos += 2 } else { s0 = peg$FAILED if (peg$silentFails === 0) { peg$fail(peg$c8) } } if (s0 === peg$FAILED) { if (input.charCodeAt(peg$currPos) === 10) { s0 = peg$c9 peg$currPos++ } else { s0 = peg$FAILED if (peg$silentFails === 0) { peg$fail(peg$c10) } } if (s0 === peg$FAILED) { if (input.charCodeAt(peg$currPos) === 13) { s0 = peg$c11 peg$currPos++ } else { s0 = peg$FAILED if (peg$silentFails === 0) { peg$fail(peg$c12) } } } } return s0 } function peg$parseComment () { let s0, s1, s2, s3, s4, s5 s0 = peg$currPos if (input.substr(peg$currPos, 2) === peg$c13) { s1 = peg$c13 peg$currPos += 2 } else { s1 = peg$FAILED if (peg$silentFails === 0) { peg$fail(peg$c14) } } if (s1 !== peg$FAILED) { s2 = [] s3 = peg$currPos s4 = peg$currPos peg$silentFails++ s5 = peg$parseEOL() peg$silentFails-- if (s5 === peg$FAILED) { s4 = void 0 } else { peg$currPos = s4 s4 = peg$FAILED } if (s4 !== peg$FAILED) { if (input.length > peg$currPos) { s5 = input.charAt(peg$currPos) peg$currPos++ } else { s5 = peg$FAILED if (peg$silentFails === 0) { peg$fail(peg$c15) } } if (s5 !== peg$FAILED) { s4 = [s4, s5] s3 = s4 } else { peg$currPos = s3 s3 = peg$FAILED } } else { peg$currPos = s3 s3 = peg$FAILED } while (s3 !== peg$FAILED) { s2.push(s3) s3 = peg$currPos s4 = peg$currPos peg$silentFails++ s5 = peg$parseEOL() peg$silentFails-- if (s5 === peg$FAILED) { s4 = void 0 } else { peg$currPos = s4 s4 = peg$FAILED } if (s4 !== peg$FAILED) { if (input.length > peg$currPos) { s5 = input.charAt(peg$currPos) peg$currPos++ } else { s5 = peg$FAILED if (peg$silentFails === 0) { peg$fail(peg$c15) } } if (s5 !== peg$FAILED) { s4 = [s4, s5] s3 = s4 } else { peg$currPos = s3 s3 = peg$FAILED } } else { peg$currPos = s3 s3 = peg$FAILED } } if (s2 !== peg$FAILED) { s3 = peg$parseEOL() if (s3 === peg$FAILED) { s3 = peg$parseEOI() } if (s3 !== peg$FAILED) { s1 = [s1, s2, s3] s0 = s1 } else { peg$currPos = s0 s0 = peg$FAILED } } else { peg$currPos = s0 s0 = peg$FAILED } } else { peg$currPos = s0 s0 = peg$FAILED } return s0 } function peg$parseS () { let s0, s1 s0 = [] if (input.charCodeAt(peg$currPos) === 32) { s1 = peg$c16 peg$currPos++ } else { s1 = peg$FAILED if (peg$silentFails === 0) { peg$fail(peg$c17) } } if (s1 === peg$FAILED) { if (input.charCodeAt(peg$currPos) === 9) { s1 = peg$c18 peg$currPos++ } else { s1 = peg$FAILED if (peg$silentFails === 0) { peg$fail(peg$c19) } } if (s1 === peg$FAILED) { s1 = peg$parseEOL() if (s1 === peg$FAILED) { s1 = peg$parseComment() } } } while (s1 !== peg$FAILED) { s0.push(s1) if (input.charCodeAt(peg$currPos) === 32) { s1 = peg$c16 peg$currPos++ } else { s1 = peg$FAILED if (peg$silentFails === 0) { peg$fail(peg$c17) } } if (s1 === peg$FAILED) { if (input.charCodeAt(peg$currPos) === 9) { s1 = peg$c18 peg$currPos++ } else { s1 = peg$FAILED if (peg$silentFails === 0) { peg$fail(peg$c19) } } if (s1 === peg$FAILED) { s1 = peg$parseEOL() if (s1 === peg$FAILED) { s1 = peg$parseComment() } } } } return s0 } function peg$parseS_no_eol () { let s0, s1 s0 = [] if (input.charCodeAt(peg$currPos) === 32) { s1 = peg$c16 peg$currPos++ } else { s1 = peg$FAILED if (peg$silentFails === 0) { peg$fail(peg$c17) } } if (s1 === peg$FAILED) { if (input.charCodeAt(peg$currPos) === 9) { s1 = peg$c18 peg$currPos++ } else { s1 = peg$FAILED if (peg$silentFails === 0) { peg$fail(peg$c19) } } if (s1 === peg$FAILED) { s1 = peg$parseComment() } } while (s1 !== peg$FAILED) { s0.push(s1) if (input.charCodeAt(peg$currPos) === 32) { s1 = peg$c16 peg$currPos++ } else { s1 = peg$FAILED if (peg$silentFails === 0) { peg$fail(peg$c17) } } if (s1 === peg$FAILED) { if (input.charCodeAt(peg$currPos) === 9) { s1 = peg$c18 peg$currPos++ } else { s1 = peg$FAILED if (peg$silentFails === 0) { peg$fail(peg$c19) } } if (s1 === peg$FAILED) { s1 = peg$parseComment() } } } return s0 } function peg$parseEOI () { let s0, s1 s0 = peg$currPos peg$silentFails++ if (input.length > peg$currPos) { s1 = input.charAt(peg$currPos) peg$currPos++ } else { s1 = peg$FAILED if (peg$silentFails === 0) { peg$fail(peg$c15) } } peg$silentFails-- if (s1 === peg$FAILED) { s0 = void 0 } else { peg$currPos = s0 s0 = peg$FAILED } return s0 } var TransformationRule = require('./TransformationRule') peg$result = peg$startRuleFunction() if (peg$result !== peg$FAILED && peg$currPos === input.length) { return peg$result } else { if (peg$result !== peg$FAILED && peg$currPos < input.length) { peg$fail(peg$endExpectation()) } throw peg$buildStructuredError( peg$maxFailExpected, peg$maxFailPos < input.length ? input.charAt(peg$maxFailPos) : null, peg$maxFailPos < input.length ? peg$computeLocation(peg$maxFailPos, peg$maxFailPos + 1) : peg$computeLocation(peg$maxFailPos, peg$maxFailPos) ) } } module.exports = { SyntaxError: peg$SyntaxError, parse: peg$parse } /* jscpd:ignore-end */ ================================================ FILE: lib/natural/brill_pos_tagger/lib/TF_Parser.pegjs ================================================ { var TransformationRule = require("./TransformationRule"); } transformation_rule = c1: category1 c2: category2 pred: predicate pars: parameter * { var result = null; // Construct rule if (pars.length === 1) { result = new TransformationRule(c1, c2, pred, pars[0]); } else { if (pars.length === 2) { result = new TransformationRule(c1, c2, pred, pars[0], pars[1]); } else { result = new TransformationRule(c1, c2, pred); } } return(result); } category1 = wild_card / identifier category2 = identifier predicate = identifier parameter = identifier identifier = // characters: [a-zA-Z_0-9_\-\.,()]+ S_no_eol // https://en.wikipedia.org/wiki/List_of_Unicode_characters // Ranges supported: U+0021 - U+007E plus U+00A1 - U+00FF characters: [!-~¡-ÿ]+ S_no_eol { var s = ""; for (var i = 0; i < characters.length; i++) { s += characters[i]; } return(s); } wild_card = wc: "*" S_no_eol { return(wc) } // Blanks EOL = '\r\n' / '\n' / '\r' Comment = "\/\/" (!EOL .)* (EOL/EOI) S = (' ' / '\t' / EOL / Comment)* S_no_eol = (' ' / '\t' / Comment)* EOI= !. ================================================ FILE: lib/natural/brill_pos_tagger/lib/TransformationRule.js ================================================ /* Transformation rules for the Brill tagger Copyright (C) 2017 Hugo W.L. ter Doest 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 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ 'use strict' const Predicate = require('./Predicate') const categoryWildCard = '*' class TransformationRule { constructor (c1, c2, predicate, parameter1, parameter2) { this.literal = [c1, c2, predicate, parameter1, parameter2] this.predicate = new Predicate(predicate, parameter1, parameter2) this.oldCategory = c1 this.newCategory = c2 // These members are for the learning algorithm this.neutral = 0 this.negative = 0 this.positive = 0 this.hasBeenSelectedAsHighRuleBefore = false } key () { return (this.literal.toString()) } apply (sentence, position) { if ((sentence.taggedWords[position].tag === this.oldCategory) || (this.oldCategory === categoryWildCard)) { if (this.predicate.evaluate(sentence, position)) { sentence.taggedWords[position].tag = this.newCategory } } } // // Methods for processing sentences from a corpus that consist of an array of tokens // // Returns true if the rule applies at site. As a side effect it assigns the new // category to newTag isApplicableAt (sentence, taggedSentence, i) { const applies = (taggedSentence.taggedWords[i].tag === this.oldCategory) && this.predicate.evaluate(taggedSentence, i) // Set newTag to let the trainer know what the new tag would become if (applies) { sentence.taggedWords[i].newTag = this.newCategory } return (applies) } prettyPrint () { let result = '' // Old category and new category result += this.oldCategory + ' ' + this.newCategory // Predicate name result += ' ' + this.predicate.name // Parameter 1 and 2 if (this.predicate.parameter1) { result += ' ' + this.predicate.parameter1 if (this.predicate.parameter2) { result += ' ' + this.predicate.parameter2 } } return result } // Applies the rule the given location (if it applies) applyAt (sentence, i) { const taggedSentence = sentence.clone() this.apply(sentence, i) // Assign the new tag to the corpus site sentence.taggedWords[i].testTag = taggedSentence.taggedWords[i].tag } // Calculate the net score of this rule score () { return (this.positive - this.negative) } } module.exports = TransformationRule ================================================ FILE: lib/natural/classifiers/bayes_classifier.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Classifier = require('./classifier') const ApparatusBayesClassifier = require('apparatus').BayesClassifier class BayesClassifier extends Classifier { constructor (stemmer, smoothing) { let abc = new ApparatusBayesClassifier() if (smoothing && isFinite(smoothing)) { abc = new ApparatusBayesClassifier(smoothing) } super(abc, stemmer) } static restore (classifier, stemmer) { classifier = Classifier.restore(classifier, stemmer) // __proto__ is deprecated // classifier.__proto__ = BayesClassifier.prototype Object.setPrototypeOf(classifier, BayesClassifier.prototype) classifier.classifier = ApparatusBayesClassifier.restore(classifier.classifier) return classifier } static load (filename, stemmer, callback) { Classifier.load(filename, stemmer, function (err, classifier) { if (err) { return callback(err) } else { callback(err, BayesClassifier.restore(classifier, stemmer)) } }) } static async loadFrom (key, stemmer, storageBackend) { const classifier = await Classifier.loadFrom(key, storageBackend) return BayesClassifier.restore(classifier, stemmer) } } module.exports = BayesClassifier ================================================ FILE: lib/natural/classifiers/classifier.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const fs = require('fs') const EventEmitter = require('events') const PorterStemmer = require('../stemmers/porter_stemmer') const parallelTrainer = require('./classifier_train_parallel') class Classifier extends EventEmitter { constructor (classifier, stemmer) { super() this.classifier = classifier this.docs = [] this.features = {} this.stemmer = stemmer || PorterStemmer this.lastAdded = 0 // Add methods for parallel training this.Threads = parallelTrainer.Threads this.trainParallel = parallelTrainer.trainParallel this.retrainParallel = parallelTrainer.retrainParallel this.trainParallelBatches = parallelTrainer.trainParallelBatches } addDocument (text, classification) { // Ignore further processing if classification is undefined if (typeof classification === 'undefined') return // If classification is type of string then make sure it's dosen't have blank space at both end if (typeof classification === 'string') { classification = classification.trim() } if (typeof text === 'string') { text = this.stemmer.tokenizeAndStem(text, this.keepStops) } if (text.length === 0) { // ignore empty documents return } this.docs.push({ label: classification, text }) for (let i = 0; i < text.length; i++) { const token = text[i] this.features[token] = (this.features[token] || 0) + 1 } } removeDocument (text, classification) { const docs = this.docs let doc let pos if (typeof text === 'string') { text = this.stemmer.tokenizeAndStem(text, this.keepStops) } for (let i = 0, ii = docs.length; i < ii; i++) { doc = docs[i] if (doc.text.join(' ') === text.join(' ') && doc.label === classification) { pos = i } } // Remove if there's a match if (!isNaN(pos)) { this.docs.splice(pos, 1) for (let i = 0, ii = text.length; i < ii; i++) { delete this.features[text[i]] } } } textToFeatures (observation) { const features = [] if (typeof observation === 'string') { observation = this.stemmer.tokenizeAndStem(observation, this.keepStops) } for (const feature in this.features) { if (observation.indexOf(feature) > -1) { features.push(1) } else { features.push(0) } } return features } train () { const totalDocs = this.docs.length for (let i = this.lastAdded; i < totalDocs; i++) { const features = this.textToFeatures(this.docs[i].text) this.classifier.addExample(features, this.docs[i].label) this.emit('trainedWithDocument', { index: i, total: totalDocs, doc: this.docs[i] }) this.lastAdded++ } this.classifier.train() this.emit('doneTraining', true) } retrain () { this.classifier = new (this.classifier.constructor)() this.lastAdded = 0 this.train() } getClassifications (observation) { return this.classifier.getClassifications(this.textToFeatures(observation)) } classify (observation) { return this.classifier.classify(this.textToFeatures(observation)) } static restore (classifier, stemmer) { classifier.stemmer = stemmer || PorterStemmer return classifier } save (filename, callback) { const data = JSON.stringify(this) const classifier = this fs.writeFile(filename, data, 'utf8', function (err) { if (callback) { callback(err, err ? null : classifier) } }) } static load (filename, stemmer, callback) { if (!callback) { return } fs.readFile(filename, 'utf8', function (err, data) { if (err) { callback(err, null) } else { const classifier = JSON.parse(data) callback(err, Classifier.restore(classifier, stemmer)) } }) } async saveTo (storageBackend) { return await storageBackend.store(this) } static async loadFrom (key, storageBackend) { const obj = await storageBackend.retrieve(key) Object.setPrototypeOf(obj, Classifier.prototype) return obj } setOptions (options) { this.keepStops = !!(options.keepStops) } } module.exports = Classifier ================================================ FILE: lib/natural/classifiers/classifier_train_parallel.js ================================================ const os = require('os') let Threads = null try { Threads = require('webworker-threads') } catch (e) { // Silently set Threads to null Threads = null } function checkThreadSupport () { if (typeof Threads === 'undefined') { throw new Error('parallel classification requires the optional dependency webworker-threads') } } function docsToFeatures (docs) { const parsedDocs = [] for (let i = 0; i < docs.length; i++) { const features = [] for (const feature in FEATURES) { // eslint-disable-line if (docs[i].observation.indexOf(feature) > -1) { features.push(1) } else { features.push(0) } } parsedDocs.push({ index: docs[i].index, features }) } return JSON.stringify(parsedDocs) } // Convert docs to observation objects function docsToObs (docs, lastAdded, stemmer, keepStops) { const obsDocs = [] for (let i = lastAdded; i < docs.length; i++) { let observation = this.docs[i].text if (typeof observation === 'string') { observation = stemmer.tokenizeAndStem(observation, keepStops) } obsDocs.push({ index: i, observation }) } return obsDocs } function emitEvents (self, docFeatures, totalDocs) { for (let j = self.lastAdded; j < totalDocs; j++) { self.classifier.addExample(docFeatures[j], self.docs[j].label) self.events.emit('trainedWithDocument', { index: j, total: totalDocs, doc: self.docs[j] }) self.lastAdded++ } } function trainParallel (numThreads, callback) { checkThreadSupport() if (!callback) { callback = numThreads numThreads = undefined } if (isNaN(numThreads)) { numThreads = os.cpus().length } const totalDocs = this.docs.length const threadPool = Threads.createPool(numThreads) const docFeatures = {} let finished = 0 const self = this // Init pool; send the features array and the parsing function threadPool.all.eval('var FEATURES = ' + JSON.stringify(this.features)) threadPool.all.eval(docsToFeatures) const obsDocs = docsToObs(this.docs, this.lastAdded, this.stemmer, this.keepStops) // Called when a batch completes processing const onFeaturesResult = function (docs) { setTimeout(function () { self.events.emit('processedBatch', { size: docs.length, docs: totalDocs, batches: numThreads, index: finished }) }) for (let j = 0; j < docs.length; j++) { docFeatures[docs[j].index] = docs[j].features } } // Called when all batches finish processing const onFinished = function (err) { if (err) { threadPool.destroy() return callback(err) } emitEvents(self, docFeatures, totalDocs) self.events.emit('doneTraining', true) self.classifier.train() threadPool.destroy() callback(null) } // Split the docs and start processing const batchSize = Math.ceil(obsDocs.length / numThreads) let lastError for (let i = 0; i < numThreads; i++) { const batchDocs = obsDocs.slice(i * batchSize, (i + 1) * batchSize) const batchJson = JSON.stringify(batchDocs) threadPool.any.eval('docsToFeatures(' + batchJson + ')', function (err, docs) { lastError = err || lastError finished++ if (docs) { docs = JSON.parse(docs) onFeaturesResult(docs) } if (finished >= numThreads) { onFinished(lastError) } }) } } function trainParallelBatches (options) { checkThreadSupport() let numThreads = options && options.numThreads let batchSize = options && options.batchSize if (isNaN(numThreads)) { numThreads = os.cpus().length } if (isNaN(batchSize)) { batchSize = 2500 } const totalDocs = this.docs.length const threadPool = Threads.createPool(numThreads) const docFeatures = {} let finished = 0 const self = this let abort = false const onError = function (err) { if (!err || abort) return abort = true threadPool.destroy(true) self.events.emit('doneTrainingError', err) } // Init pool; send the features array and the parsing function const str = JSON.stringify(this.features) threadPool.all.eval('var FEATURES = ' + str + ';', onError) threadPool.all.eval(docsToFeatures, onError) // Convert docs to observation objects let obsDocs = [] for (let i = this.lastAdded; i < totalDocs; i++) { let observation = this.docs[i].text if (typeof observation === 'string') { observation = this.stemmer.tokenizeAndStem(observation, this.keepStops) } obsDocs.push({ index: i, observation }) } // Split the docs in batches const obsBatches = [] let i = 0 while (true) { const batch = obsDocs.slice(i * batchSize, (i + 1) * batchSize) if (!batch || !batch.length) break obsBatches.push(batch) i++ } obsDocs = null self.events.emit('startedTraining', { docs: totalDocs, batches: obsBatches.length }) // Called when a batch completes processing const onFeaturesResult = function (docs) { self.events.emit('processedBatch', { size: docs.length, docs: totalDocs, batches: obsBatches.length, index: finished }) for (let j = 0; j < docs.length; j++) { docFeatures[docs[j].index] = docs[j].features } } // Called when all batches finish processing const onFinished = function () { threadPool.destroy(true) abort = true emitEvents(self, docFeatures, totalDocs) self.events.emit('doneTraining', true) self.classifier.train() } // Called to send the next batch to be processed let batchIndex = 0 const sendNext = function () { if (abort) return if (batchIndex >= obsBatches.length) { return } sendBatch(JSON.stringify(obsBatches[batchIndex])) batchIndex++ } // Called to send a batch of docs to the threads const sendBatch = function (batchJson) { if (abort) return threadPool.any.eval('docsToFeatures(' + batchJson + ');', function (err, docs) { if (err) { return onError(err) } finished++ if (docs) { docs = JSON.parse(docs) setTimeout(onFeaturesResult.bind(null, docs)) } if (finished >= obsBatches.length) { setTimeout(onFinished) } setTimeout(sendNext) }) } // Start processing for (let i = 0; i < numThreads; i++) { sendNext() } } function retrainParallel (numThreads, callback) { checkThreadSupport() this.classifier = new (this.classifier.constructor)() this.lastAdded = 0 this.trainParallel(numThreads, callback) } module.exports = { Threads, trainParallel, trainParallelBatches, retrainParallel } ================================================ FILE: lib/natural/classifiers/index.d.ts ================================================ import events from 'events' import type { Corpus, Sentence } from '../brill_pos_tagger' import type { Stemmer } from '../stemmers' import type { StorageBackend } from '../util' // Start apparatus declarations // TODO: Once TS declarations are available in NaturalNode/apparatus, // replace local definitions with imports: // import { // BayesClassifier as ApparatusBayesClassifier, // Classification as ApparatusClassification, // Classifier as ApparatusClassifier, // LogisticRegressionClassifier as ApparatusLogisticRegressionClassifier, // Observation as ApparatusObservation, // } from 'apparatus' declare interface ApparatusClassification { label: string value: number } // Observations are either array of numbers or a sparse vector in the form of a map declare type ApparatusObservation = number[] | Record declare class ApparatusClassifier { addExample (observation: ApparatusObservation, label: string): void classify (observation: ApparatusObservation): string train (): void static restore (classifier: string | ApparatusClassifier): ApparatusClassifier } // TODO: Not needed for natural repository, but could be moved to // aparatus repository. Temporarily leaving here for copypasta. declare class ApparatusBayesClassifier extends ApparatusClassifier { classFeatures: Record> classTotals: Record totalExamples: number smoothing: number constructor (smoothing?: number) getClassifications (observation: ApparatusObservation): ApparatusClassification[] probabilityOfClass (observation: ApparatusObservation, label: string): number static restore (classifier: string | ApparatusBayesClassifier): ApparatusBayesClassifier } // TODO: Not needed for natural repository, but could be moved to // aparatus repository. Temporarily leaving here for copypasta. declare class ApparatusLogisticRegressionClassifier extends ApparatusClassifier { examples: Record // TODO: These appear unused // features: any[] // featurePositions: { [key: string]: any | undefined } maxFeaturePosition: number classifications: string[] exampleCount: number createClassifications (): number[][] addExample (data: number[], classification: string): void getClassifications (observation: number[]): ApparatusClassification[] static restore (classifier: string | ApparatusLogisticRegressionClassifier): ApparatusLogisticRegressionClassifier } // End apparatus declarations declare interface ClassifierDoc { label: string text: string } declare interface ClassifierOptions { keepStops?: boolean } declare type ClassifierCallback = (err: NodeJS.ErrnoException | null, classifier?: ClassifierBase) => void declare type ParallelTrainerCallback = (err: NodeJS.ErrnoException | null) => void declare class ClassifierBase extends events.EventEmitter { classifier: ApparatusClassifier docs: ClassifierDoc[] features: Record stemmer: Stemmer lastAdded: number constructor (classifier: ApparatusClassifier, stemmer?: Stemmer) addDocument (text: string | string[], classification: string): void removeDocument (text: string | string[], classification: string): void textToFeatures (observation: string | string[]): number[] train (): void retrain (): void getClassifications (observation: string | string[]): ApparatusClassification[] classify (observation: string | string[]): string setOptions (options: ClassifierOptions): void save (filename: string, callback?: ClassifierCallback): void static load (filename: string, stemmer: Stemmer | null | undefined, callback: ClassifierCallback): void saveTo (storage: StorageBackend): string static loadFrom (storage: StorageBackend): ClassifierBase Threads: any trainParallel (numThreads: number, callback: ParallelTrainerCallback): void trainParallelBatches (options: { numThreads: number, batchSize: number }): void retrainParallel (numThreads: number, callback: ParallelTrainerCallback): void } declare type BayesClassifierCallback = (err: NodeJS.ErrnoException | null, classifier?: BayesClassifier) => void export class BayesClassifier extends ClassifierBase { classifier: ApparatusBayesClassifier constructor (stemmer?: Stemmer, smoothing?: number) static load (filename: string, stemmer: Stemmer | null | undefined, callback: BayesClassifierCallback): void static restore (classifier: Record, stemmer?: Stemmer): BayesClassifier saveTo (storage: StorageBackend): string static loadFrom (storage: StorageBackend): ClassifierBase } declare type LogisticRegressionClassifierCallback = (err: NodeJS.ErrnoException | null, classifier?: LogisticRegressionClassifier) => void export class LogisticRegressionClassifier extends ClassifierBase { constructor (stemmer?: Stemmer) static load (filename: string, stemmer: Stemmer | null | undefined, callback: LogisticRegressionClassifierCallback): void static restore (classifier: Record, stemmer?: Stemmer): LogisticRegressionClassifier saveTo (storage: StorageBackend): string static loadFrom (storage: StorageBackend): ClassifierBase } declare type MaxEntClassifierCallback = (err: NodeJS.ErrnoException | null, classifier?: MaxEntClassifier) => void export class MaxEntClassifier { sample: Sample features: FeatureSet scaler: GISScaler constructor (features: FeatureSet, sample: Sample) addElement (x: Element): void addDocument (context: Context, classification: string, elementClass: Element): void train (maxIterations: number, minImprovement: number): void getClassifications (b: Context): ApparatusClassification[] classify (b: Context): string // These are not static like in other Classifier classes save (filename: string, callback: MaxEntClassifierCallback): void load (filename: string, elementClass: Element, callback: MaxEntClassifierCallback): void } declare class Distribution { alpha: number[] featureSet: FeatureSet sample: Sample constructor (alpha: number[], featureSet: FeatureSet, sample: Sample) toString (): string weight (x: Element): number calculateAPriori (x: Element): number prepareWeights (): void calculateAPosteriori (x: Element): number aPosterioriNormalisation (b: Context): number prepareAPosterioris (): void prepare (): void KullbackLieblerDistance (): number logLikelihood (): number entropy (): number checkSum (): number } declare type FeatureFunction = (x: Element) => number export class Feature { evaluate: FeatureFunction name: string parameters: string[] constructor (f: FeatureFunction, name: string, parameters: string[]) apply (x: Element): number expectationApprox (p: Distribution, sample: Sample): number expectation (p: Distribution, A: string[], B: Context[]): number observedExpectation (sample: Sample): number } export class FeatureSet { features: Feature[] map: Record addFeature (feature: Feature): boolean featureExists (feature: Feature): boolean getFeatures (): Feature[] size (): number prettyPrint (): string } declare type SampleCallback = (err: NodeJS.ErrnoException | null, sample?: Sample | null) => void export class Sample { frequencyOfContext: Record frequency: Record classes: string[] constructor (elements?: Element[]) analyse (): void addElement (x: Element): void observedProbabilityOfContext (context: Context): number observedProbability (x: Element): number size (): number getClasses (): string[] generateFeatures (featureSet: FeatureSet): void save (filename: string, callback: SampleCallback): void load (filename: string, elementClass: typeof Element, callback: SampleCallback): void } export class Context { key: string | undefined constructor (data: any) toString (): string } export class Element { a: string b: Context key: string | undefined constructor (a: string, b: Context) toString (): string } export class SEElement extends Element { constructor (a: string, b: Context) generateFeatures (featureSet: FeatureSet): void } export class POSElement extends Element { constructor (a: string, b: Context) generateFeatures (featureSet: FeatureSet): void } export class GISScaler { iteration: number improvement: number constructor (featureSet: FeatureSet, sample: Sample) calculateMaxSumOfFeatures (): boolean addCorrectionFeature (): void run (maxIterations: number, minImprovement: number): Distribution } export class MESentence { constructor (data?: string[]) generateSampleElements (sample: Sample): void } export class MECorpus { constructor (data: string | Corpus, BROWN: number, SentenceClass: typeof Sentence) generateSample (): Sample splitInTrainAndTest (percentageTrain: number): [MECorpus, MECorpus] } ================================================ FILE: lib/natural/classifiers/index.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' exports.BayesClassifier = require('./bayes_classifier') exports.LogisticRegressionClassifier = require('./logistic_regression_classifier') exports.MaxEntClassifier = require('./maxent/Classifier') exports.Context = require('./maxent/Context') exports.Feature = require('./maxent/Feature') exports.FeatureSet = require('./maxent/FeatureSet') exports.Sample = require('./maxent/Sample') exports.Element = require('./maxent/Element') exports.SEElement = require('./maxent/SimpleExample/SE_Element') exports.GISScaler = require('./maxent/GISScaler') exports.POSElement = require('./maxent/POS/POS_Element') exports.MESentence = require('./maxent/POS/ME_Sentence') exports.MECorpus = require('./maxent/POS/ME_Corpus') ================================================ FILE: lib/natural/classifiers/logistic_regression_classifier.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Classifier = require('./classifier') const ApparatusLogisticRegressionClassifier = require('apparatus').LogisticRegressionClassifier class LogisticRegressionClassifier extends Classifier { constructor (stemmer) { const abc = new ApparatusLogisticRegressionClassifier() super(abc, stemmer) } static restore (classifier, stemmer) { classifier = Classifier.restore(classifier, stemmer) // Using ___proto__ is deprecated // classifier.__proto__ = LogisticRegressionClassifier.prototype Object.setPrototypeOf(classifier, LogisticRegressionClassifier.prototype) classifier.classifier = ApparatusLogisticRegressionClassifier.restore(classifier.classifier) return classifier } static load (filename, stemmer, callback) { Classifier.load(filename, stemmer, (err, classifier) => { if (err) { callback(err) } else { callback(err, LogisticRegressionClassifier.restore(classifier, stemmer)) } }) } static async loadFrom (key, stemmer, storageBackend) { const classifier = await Classifier.loadFrom(key, storageBackend) return LogisticRegressionClassifier.restore(classifier, stemmer) } train () { // we need to reset the training state because logistic regression // needs its matricies to have their widths synced, etc. this.lastAdded = 0 this.classifier = new ApparatusLogisticRegressionClassifier() super.train() } } module.exports = LogisticRegressionClassifier ================================================ FILE: lib/natural/classifiers/maxent/Classifier.js ================================================ /* Classifier class that provides functionality for training and classification Copyright (C) 2017, 2023 Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const fs = require('fs') const Context = require('./Context') const Element = require('./Element') const Sample = require('./Sample') const Scaler = require('./GISScaler') const FeatureSet = require('./FeatureSet') const DEBUG = false class Classifier { constructor (features, sample) { if (features) { this.features = features } else { this.features = new FeatureSet() } this.features = features if (sample) { this.sample = sample } else { this.sample = new Sample() } } // Loads a classifier from file. // Caveat: feature functions are generated from the sample elements. You need // to create your own specialisation of the Element class that can generate // your own specific feature functions load (filename, ElementClass, callback) { fs.readFile(filename, 'utf8', function (err, data) { if (!err) { const classifierData = JSON.parse(data) const sample = new Sample() classifierData.sample.elements.forEach(function (elementData) { const elt = new ElementClass(elementData.a, new Context(elementData.b.data)) sample.addElement(elt) }) const featureSet = new FeatureSet() sample.generateFeatures(featureSet) const classifier = new Classifier(featureSet, sample) callback(err, classifier) } else { if (callback) { callback(err) } } }) } save (filename, callback) { const data = JSON.stringify(this, null, 2) const classifier = this fs.writeFile(filename, data, 'utf8', function (err) { if (callback) { DEBUG && console.log('Saved classifier to ' + filename) callback(err, err ? null : classifier) } }) } addElement (x) { this.sample.addElement(x) } addDocument (context, classification, ElementClass) { Classifier.prototype.addElement(new ElementClass(classification, context)) } train (maxIterations, minImprovement) { this.scaler = new Scaler(this.features, this.sample) this.p = this.scaler.run(maxIterations, minImprovement) } getClassifications (b) { const scores = [] const that = this this.sample.getClasses().forEach(function (a) { const x = new Element(a, b) scores.push({ label: a, value: that.p.calculateAPriori(x) }) }) return scores } classify (b) { const scores = this.getClassifications(b) // Sort the scores in an array scores.sort(function (a, b) { return b.value - a.value }) // Check if the classifier discriminates const min = scores[scores.length - 1].value const max = scores[0].value if (min === max) { return '' } else { // Return the highest scoring classes return scores[0].label } } } module.exports = Classifier ================================================ FILE: lib/natural/classifiers/maxent/Context.js ================================================ /* Context class Copyright (C) 2017, 2023 Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const stringify = require('safe-stable-stringify') class Context { constructor (data) { this.data = data } // Create a predictable key string for looking up in a hash toString () { if (!this.key) { this.key = stringify(this.data) } return this.key } } module.exports = Context ================================================ FILE: lib/natural/classifiers/maxent/Distribution.js ================================================ /* Distribution class for probability distributions Copyright (C) 2017, 2023 Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Element = require('./Element') class Distribution { constructor (alpha, featureSet, sample) { this.alpha = alpha this.featureSet = featureSet this.sample = sample } // Returns the distribution as a string that can be stored for later usage toString () { } weight (x) { let product = 1 const that = this this.alpha.forEach(function (alphaj, j) { product *= Math.pow(alphaj, that.featureSet.getFeatures()[j].apply(x)) }) return product } calculateAPriori (x) { if (!this.aPriorisBeforeNormalisation[x.toString()]) { this.aPriorisBeforeNormalisation[x.toString()] = this.weight(x) } return this.aPriorisBeforeNormalisation[x.toString()]// / this.aPrioriNormalisationConstant; } // Memoize a priori probabilities of sample elements prepareWeights () { this.aPriorisBeforeNormalisation = {} this.aPrioriNormalisationConstant = 0 let sum = 0 const that = this this.sample.elements.forEach(function (x) { that.aPriorisBeforeNormalisation[x.toString()] = that.weight(x) sum += that.aPriorisBeforeNormalisation[x.toString()] }) this.aPrioriNormalisationConstant = sum } calculateAPosteriori (x) { if (!this.aPriorisBeforeNormalisation[x.toString()]) { this.aPriorisBeforeNormalisation[x.toString()] = this.weight(x) } if (!this.aPosterioriNormalisationConstants[x.b.toString()]) { this.aPosterioriNormalisationConstants[x.b.toString()] = this.aPosterioriNormalisation(x.b) } return this.aPriorisBeforeNormalisation[x] / this.aPosterioriNormalisationConstants[x.b.toString()] } aPosterioriNormalisation (b) { let sum = 0 const that = this this.sample.getClasses().forEach(function (a) { sum += that.weight(new Element(a, b)) }) return (sum) } // Memoize a posteriori probabilities of sample elements prepareAPosterioris () { this.aPosterioriNormalisationConstants = {} const contextSeen = {} const that = this this.sample.elements.forEach(function (sampleElement) { const context = sampleElement.b if (!contextSeen[context]) { contextSeen[context] = true that.aPosterioriNormalisationConstants[context] = that.aPosterioriNormalisation(context) } }) } // Memoize all probabilities of sample elements prepare () { this.prepareWeights() // console.log("Weights prepared"); this.prepareAPosterioris() } // Relative entropy between observered distribution and derived distribution KullbackLieblerDistance () { let sum = 0 const that = this this.sample.elements.forEach(function (x) { sum += that.sample.observedProbability(x) * Math.log(that.sample.observedProbability(x) / that.calculateAPriori(x)) }) return sum } logLikelihood () { let sum = 0 const that = this this.sample.elements.forEach(function (x) { sum += that.sample.observedProbability(x) * Math.log(that.calculateAPriori(x)) }) return sum } entropy () { let sum = 0 const that = this this.sample.elements.forEach(function (x) { const p = that.calculateAPriori(x) sum += p * Math.log(p) }) return sum } checkSum () { let sum = 0 const that = this this.sample.elements.forEach(function (x) { sum += that.calculateAPriori(x) }) // console.log("Distribution.checkSum is " + sum); return sum } } module.exports = Distribution ================================================ FILE: lib/natural/classifiers/maxent/Element.js ================================================ /* Element class for elements in the event space Copyright (C) 2017, 2023 Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' class Element { // a is class and b is context constructor (a, b) { this.a = a this.b = b } toString () { if (!this.key) { this.key = this.a + this.b.toString() } return this.key } } module.exports = Element ================================================ FILE: lib/natural/classifiers/maxent/Feature.js ================================================ /* Feature class for features that fire (or don't) on combinations of context and class Copyright (C) 2017, 2023 Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Element = require('./Element') class Feature { constructor (f, name, parameters) { this.evaluate = f this.name = name this.parameters = parameters let tmp = '' parameters.forEach(function (par) { tmp += par + '|' }) this.parametersKey = tmp.substr(0, tmp.length - 1) } apply (x) { return this.evaluate(x) } expectationApprox (p, sample) { const that = this let sum = 0 const seen = {} const A = sample.getClasses() sample.elements.forEach(function (sampleElement) { const bi = sampleElement.b if (!seen[bi.toString()]) { seen[bi.toString()] = true A.forEach(function (a) { const x = new Element(a, bi) sum += sample.observedProbabilityOfContext(bi) * p.calculateAPosteriori(x) * that.apply(x) }) } }) return sum } // Direct calculation of expected value of this feature according to distribution p // In real-life applications with a lot of features this is not tractable expectation (p, A, B) { let sum = 0 const that = this A.forEach(function (a) { B.forEach(function (b) { const x = new Element(a, b) sum += (p.calculateAPriori(x) * that.apply(x)) }) }) return sum } // Observed expectation of this feature in the sample observedExpectation (sample) { if (this.observedExpect) { return this.observedExpect } const N = sample.size() let sum = 0 const that = this sample.elements.forEach(function (x) { sum += that.apply(x) }) this.observedExpect = sum / N return this.observedExpect } } module.exports = Feature ================================================ FILE: lib/natural/classifiers/maxent/FeatureSet.js ================================================ /* Feature set class for administrating a set of unique features Copyright (C) 2017, 2023 Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' class FeatureSet { constructor () { this.features = [] this.map = {} } // Returns true if the feature did not exist and was added addFeature (feature) { if (!this.featureExists(feature)) { this.map[feature.name + ' | ' + feature.parametersKey] = true this.features.push(feature) // console.log("FeatureSet.addFeature: feature added: " + feature.name + " - " + feature.parametersKey); return true } else { return false } } featureExists (feature) { if (this.map[feature.name + ' | ' + feature.parametersKey]) { // console.log("FeatureSet.featureExists: feature already exists: " + // feature.name + " - " + feature.parameters); return true } else { return false } } // Returns an array of features // If the available array this.features is up to date it is returned immediately getFeatures () { return this.features } size () { return this.features.length } prettyPrint () { let s = '' Object.keys(this.map).forEach(function (key) { s += key + '\n' }) return s } } module.exports = FeatureSet ================================================ FILE: lib/natural/classifiers/maxent/GISScaler.js ================================================ /* GISScaler class that finds parameters of features Copyright (C) 2017, 2023 Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Feature = require('./Feature') const Distribution = require('./Distribution') class GISScaler { // features is an array of feature functions constructor (featureSet, sample) { this.featureSet = featureSet this.sample = sample } // Returns true if a correction feature is necessary calculateMaxSumOfFeatures () { const that = this this.C = 0 this.featureSums = {} const listOfSumValues = [] // Since feature functions are derived from the sample // we can use the sample to calculate the max sum // We look at each sample element only once this.sample.elements.forEach(function (x) { if (!that.featureSums[x.toString()]) { let sum = 0 that.featureSet.getFeatures().forEach(function (f) { sum += f.apply(x) }) if (sum > that.C) { that.C = sum } that.featureSums[x.toString()] = sum listOfSumValues.push(sum) } }) // console.log("GISScaler:calculateMaxSumOfFeatures:maxSum is " + this.C); // Check if a correction feature is necessary listOfSumValues.sort(function (a, b) { return a - b }) return (listOfSumValues[0] !== listOfSumValues[listOfSumValues.length - 1]) } addCorrectionFeature () { if (this.calculateMaxSumOfFeatures()) { // console.log("GISScaler:addCorrectionFeature:C is " + this.C); const that = this function f (x) { if (that.featureSums[x.toString()] !== undefined) { return that.C - that.featureSums[x.toString()] } return 0 } const correctionFeature = new Feature(f, 'Correction feature', []) // console.log("GISScaler:addCorrectionFeature:correctionFeature " + JSON.stringify(correctionFeature)); this.featureSet.addFeature(correctionFeature) } else { // console.log("Correction feature not needed"); } } // This is the Generalised Iterative Scaling algorithm // It ends if the improvement in likelihood of the distribution does not // improve more than minImprovement or if the maximum number of iterations is // reached. run (maxIterations, minImprovement) { this.iteration = 0 this.improvement = 0 this.addCorrectionFeature() // Build up the distribution p const alpha = new Array(this.featureSet.size()) for (let i = 0; i < alpha.length; i++) { alpha[i] = 1 } const p = new Distribution(alpha, this.featureSet, this.sample) // console.log("Distribution created"); p.prepare() // console.log("Distribution prepared"); let KLDistance = p.KullbackLieblerDistance() const newAlpha = new Array(this.featureSet.size()) let observedExpectation = 0 let expectationApprox = 0 do { // console.log("Iteration " + this.iteration + " - Log likelihood of sample: " + likelihood + " - Entropy: " + p.entropy()); for (let i = 0; i < this.featureSet.size(); i++) { observedExpectation = this.featureSet.getFeatures()[i].observedExpectation(this.sample) expectationApprox = this.featureSet.getFeatures()[i].expectationApprox(p, this.sample) // console.log("Iteration " + this.iteration + " - Feature " + i); newAlpha[i] = p.alpha[i] * Math.pow(observedExpectation / expectationApprox, 1 / this.C) // console.log("GISScaler.run: old alpha[" + i + "]: " + p.alpha[i]); // console.log("GISScaler.run: new alpha[" + i + "]: " + newAlpha[i]); } // Make the newly calculated parameters current parameters newAlpha.forEach(function (newAlphaj, j) { p.alpha[j] = newAlphaj }) // Recalculate a priori and a posteriori probabilities p.prepare() this.iteration++ const newKLDistance = p.KullbackLieblerDistance() this.improvement = KLDistance - newKLDistance // console.log("Iteration " + this.iteration + " - Old likelihood: " + likelihood + " - New likelihood: " + newLikelihood); // console.log("Iteration " + this.iteration + " - Old KL: " + KLDistance + " - New KL: " + newKLDistance); KLDistance = newKLDistance } while ((this.iteration < maxIterations) && (this.improvement > minImprovement)) // } while (iteration < maxIterations); /* var that = this; this.featureSet.getFeatures().forEach(function(f, j) { console.log("Observed expectation of feature " + j + ": " + f.observedExpectation(that.sample) + " - Expectation of feature according to p: " + f.expectationApprox(p, that.sample)); }); */ return p } } module.exports = GISScaler ================================================ FILE: lib/natural/classifiers/maxent/POS/ME_Corpus.js ================================================ /* Corpus class specific for MaxEnt modeling Copyright (C) 2018 Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Sample = require('../Sample') const Corpus = require('../../../brill_pos_tagger/lib/Corpus') class MECorpus extends Corpus { generateSample () { const sample = new Sample([]) this.sentences.forEach(function (sentence) { sentence.generateSampleElements(sample) }) return sample } // Splits the corpus in a training and testing set. // percentageTrain is the size of the training corpus in percent // Returns an array with two elements: training corpus, testing corpus splitInTrainAndTest (percentageTrain) { const corpusTrain = new MECorpus() const corpusTest = new MECorpus() const p = percentageTrain / 100 this.sentences.forEach(function (sentence, i) { if (Math.random() < p) { corpusTrain.sentences.push(sentence) } else { corpusTest.sentences.push(sentence) } }) return [corpusTrain, corpusTest] } } module.exports = MECorpus ================================================ FILE: lib/natural/classifiers/maxent/POS/ME_Sentence.js ================================================ /* Sentence class specific for MaxEnt modeling Copyright (C) 2019 Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Context = require('../Context') const Sentence = require('../../../brill_pos_tagger/lib/Sentence') const Element = require('./POS_Element') class MESentence extends Sentence { generateSampleElements (sample) { const sentence = this.taggedWords sentence.forEach(function (token, index) { const x = new Element( token.tag, new Context({ wordWindow: {}, tagWindow: {} }) ) // Current word and tag x.b.data.wordWindow['0'] = token.token x.b.data.tagWindow['0'] = sentence[index].tag // Previous bigram if (index > 1) { x.b.data.tagWindow['-2'] = sentence[index - 2].tag x.b.data.wordWindow['-2'] = sentence[index - 2].token } // Left bigram if (index > 0) { x.b.data.tagWindow['-1'] = sentence[index - 1].tag x.b.data.wordWindow['-1'] = sentence[index - 1].token } // Right bigram if (index < sentence.length - 1) { x.b.data.tagWindow['1'] = sentence[index + 1].tag x.b.data.wordWindow['1'] = sentence[index + 1].token } // Next bigram if (index < sentence.length - 2) { x.b.data.tagWindow['2'] = sentence[index + 2].tag x.b.data.wordWindow['2'] = sentence[index + 2].token } sample.addElement(x) }) } } module.exports = MESentence ================================================ FILE: lib/natural/classifiers/maxent/POS/POS_Element.js ================================================ /* Element class for POS tagging Copyright (C) 2018 Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Element = require('../Element') const Feature = require('../Feature') class POSElement extends Element { generateFeatures (featureSet) { const context = this.b.data const tag = this.a const token = context.wordWindow['0'] // Feature for the current word function currentWord (x) { if ((x.b.data.wordWindow['0'] === token) && (x.a === tag)) { return 1 } return 0 } featureSet.addFeature(new Feature(currentWord, 'wordFeature', ['0', token, '0', tag])) // Feature for previous bigram (previous two tags), positions -2, -1 if (context.tagWindow['-2']) { const prevPrevTag = context.tagWindow['-2'] const prevTag = context.tagWindow['-1'] function prevBigram (x) { if ((x.a === tag) && (x.b.data.tagWindow['-2'] === prevPrevTag) && (x.b.data.tagWindow['-1'] === prevTag)) { return 1 } return 0 } featureSet.addFeature(new Feature(prevBigram, 'prevBigram', ['0', tag, '-2', prevPrevTag, '-1', prevTag])) } /* // Feature for left bigram, positions -1, 0 if (context.tagWindow["-1"]) { var prevTag = context.tagWindow["-1"]; function leftBigram(x) { if ((x.b.data.tagWindow["-1"] === prevTag) && (x.a === tag)) { return 1; } return 0; } featureSet.addFeature(new Feature(leftBigram, "leftBigram", ["0", tag, "-1", prevTag])); } */ /* // Feature for right bigram, positions 0, 1 if (context.tagWindow["1"]) { var nextTag = context.tagWindow["1"]; function rightBigram(x) { if ((x.a === tag) && (x.b.data.tagWindow["1"] === nextTag)) { return 1; } return 0; } featureSet.addFeature(new Feature(rightBigram, "rightBigram", ["0", tag, "1", nextTag])); } */ /* // Feature for next bigram (next two tags), positions 1 and 2 if (context.tagWindow["2"]) { var nextTag = context.tagWindow["1"]; var nextNextTag = context.tagWindow["2"]; function nextBigram(x) { if ((x.a === tag) && (x.b.data.tagWindow["1"] === nextTag) && (x.b.data.tagWindow["2"] === nextNextTag)) { return 1; } return 0; } featureSet.addFeature(new Feature(nextBigram, "nextBigram", ["0", tag, "1", nextTag, "2", nextNextTag])); } // Feature that looks at the left bigram words if (context.wordWindow["-1"]) { var prevWord = context.wordWindow["-1"]; function leftBigramWords(x) { if ((x.a === tag) && (x.b.data.wordWindow["0"] === token) && (x.b.data.wordWindow["-1"] === prevWord)) { return 1; } return 0; } featureSet.addFeature(new Feature(leftBigramWords, "leftBigramWords", ["0", tag, "0", token, "-1", prevWord])); } // Feature that looks at the right bigram words if (context.wordWindow["1"]) { var nextWord = context.wordWindow["1"]; function rightBigramWords(x) { if ((x.a === tag) && (x.b.data.wordWindow["0"] === token) && (x.b.data.wordWindow["1"] === nextWord)) { return 1; } return 0; } featureSet.addFeature(new Feature(rightBigramWords, "rightBigramWords", ["0", tag, "0", token, "1", nextWord])); } */ // Feature that looks at the previous word and its category if (context.wordWindow['-1']) { const prevWord = context.wordWindow['-1'] const prevTag = context.tagWindow['-1'] function prevWordAndCat (x) { if ((x.a === tag) && (x.b.data.wordWindow['-1'] === prevWord) && (x.b.data.tagWindow['-1'] === prevTag)) { return 1 } return 0 } featureSet.addFeature(new Feature(prevWordAndCat, 'prevWordAndCat', ['0', tag, '-1', prevWord, '-1', prevTag])) } /* // Feature that looks at the next word and its category if (context.wordWindow["1"]) { var nextWord = context.wordWindow["1"]; var nextTag = context.tagWindow["1"]; function nextWordAndCat(x) { if ((x.a === tag) && (x.b.data.wordWindow["1"] === nextWord) && (x.b.data.tagWindow["1"] === nextTag)) { return 1; } return 0; } featureSet.addFeature(new Feature(nextWordAndCat, "nextWordAndCat", ["0", tag, "1", nextWord, "1", nextTag])); } */ } } module.exports = POSElement ================================================ FILE: lib/natural/classifiers/maxent/Sample.js ================================================ /* Sample space of observed events Copyright (C) 2018 Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Context = require('./Context') const fs = require('fs') class Sample { constructor (elements) { this.frequencyOfContext = {} this.frequency = {} this.classes = [] if (elements) { this.elements = elements this.analyse() } else { this.elements = [] } } // Extracts classes and frequencies analyse () { const that = this this.elements.forEach(function (x) { if (this.classes.indexOf(x.a) === -1) { this.classes.push(x.a) } if (!that.frequencyOfContext[x.b.toString()]) { that.frequencyOfContext[x.b.toString()] = 0 } that.frequencyOfContext[x.b.toString()]++ if (!that.frequency[x.toString()]) { that.frequency[x.toString()] = 0 } that.frequency[x.toString()]++ }) } addElement (x) { this.elements.push(x) // Update frequencies if (!this.frequencyOfContext[x.b.toString()]) { this.frequencyOfContext[x.b.toString()] = 0 } this.frequencyOfContext[x.b.toString()]++ if (!this.frequency[x.toString()]) { this.frequency[x.toString()] = 0 } this.frequency[x.toString()]++ // Update classes if (this.classes.indexOf(x.a) === -1) { this.classes.push(x.a) } } observedProbabilityOfContext (context) { if (this.frequencyOfContext[context.toString()]) { return this.frequencyOfContext[context.toString()] / this.elements.length } else { return 0 } } observedProbability (x) { if (this.frequency[x.toString()]) { return this.frequency[x.toString()] / this.elements.length } else { return 0 } } size () { return this.elements.length } getClasses () { return this.classes } generateFeatures (featureSet) { this.elements.forEach(function (x) { x.generateFeatures(featureSet) }) } save (filename, callback) { const sample = this const data = JSON.stringify(this, null, 2) fs.writeFile(filename, data, 'utf8', function (err) { // console.log('Sample written') if (callback) { callback(err, err ? null : sample) } }) } // Loads a sample from file and revives the right classes, i.e. Sample and // Element classes. load (filename, ElementClass, callback) { fs.readFile(filename, 'utf8', function (err, data) { if (!err) { const sampleData = JSON.parse(data) const sample = new Sample() sampleData.elements.forEach(function (elementData) { const elt = new ElementClass(elementData.a, new Context(elementData.b.data)) sample.addElement(elt) }) if (!sample.frequency || !sample.frequencyOfContext) { sample.analyse() } if (callback) { callback(err, sample) } } else { if (callback) { callback(err) } } }) } } module.exports = Sample ================================================ FILE: lib/natural/classifiers/maxent/SimpleExample/SE_Element.js ================================================ /* Simple Example Element class Copyright (C) 2018 Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Element = require('../Element') const Feature = require('../Feature') class SEElement extends Element { generateFeatures (featureSet) { function isZero (x) { if ((x.a === 'x') && (x.b.data === '0')) { return 1 } return 0 } featureSet.addFeature(new Feature(isZero, 'isZero', ['0'])) function isOne (x) { if ((x.a === 'y') && (x.b.data === '1')) { return 1 } return 0 } featureSet.addFeature(new Feature(isOne, 'isOne', ['1'])) } } module.exports = SEElement ================================================ FILE: lib/natural/distance/dice_coefficient.js ================================================ /* Copyright (c) 2021, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' function getBigrams (str) { let str1 = str // pad with a space if str consists of one character if (str.length === 1) { str1 = str + ' ' } const bigrams = new Set() const length = str1.length for (let i = 0; i < length - 1; i++) { const bigram = str1.slice(i, i + 2) bigrams.add(bigram) } return bigrams } function intersect (set1, set2) { const intersection = new Set() set1.forEach(value => { if (set2.has(value)) { intersection.add(value) } }) return intersection } // Perform some sanitization steps function sanitize (str) { // Turn characters to lower string, remove space at the beginning and end, // replace multiple spaces in the middle by single spaces return str.toLowerCase().replace(/\s+/g, ' ').replace(/^\s+|\s+$/g, '') } function diceCoefficient (str1, str2) { const sanitizedStr1 = sanitize(str1) const sanitizedStr2 = sanitize(str2) const bigrams1 = getBigrams(sanitizedStr1) const bigrams2 = getBigrams(sanitizedStr2) return (2 * intersect(bigrams1, bigrams2).size) / (bigrams1.size + bigrams2.size) } module.exports = diceCoefficient ================================================ FILE: lib/natural/distance/hamming_distance.js ================================================ /* Copyright (c) 2018, Shane Caldwell, Hugo ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' // Computes the Hamming distance between two string -- intrepreted from: // https://en.wikipedia.org/wiki/Hamming_distance // s1 is the first string to compare // s2 is the second string to compare // Strings should have equal length function HammingDistance (s1, s2, ignoreCase) { // Return -1 if one of the parameters is not a string if (typeof (s1) !== 'string' || typeof (s2) !== 'string') { return -1 } // Return -1 the lengths of the strings differ if (s1.length !== s2.length) { return -1 } if (ignoreCase) { s1 = s1.toLowerCase() s2 = s2.toLowerCase() } let diffs = 0 for (let i = 0; i < s1.length; i++) { if (s1[i] !== s2[i]) { diffs++ } } return diffs } module.exports = HammingDistance ================================================ FILE: lib/natural/distance/index.d.ts ================================================ /* Copyright (c) 2023, Dylan R. E. Moonfire , Emily Marigold Klassen , Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ declare interface JaroWinklerOptions { dj?: number /** @default false */ ignoreCase?: boolean } export function JaroWinklerDistance (s1: string, s2: string, options?: JaroWinklerOptions): number declare interface DamerauLevenshteinDistanceOptions { /** @default 1 */ insertion_cost?: number /** @default 1 */ deletion_cost?: number /** @default 1 */ substitution_cost?: number /** @default 1 */ transposition_cost?: number /** @default false */ restricted?: boolean } declare interface SubstringDistanceResult { substring: string distance: number offset: number } export function LevenshteinDistance ( source: string, target: string, options?: DamerauLevenshteinDistanceOptions ): number /** * Returns the Damerau-Levenshtein distance between strings. Counts the distance * between two strings by returning the number of edit operations required to * convert `source` into `target`. * * Valid edit operations are: * - transposition, insertion, deletion, and substitution */ export function LevenshteinDistanceSearch ( source: string, target: string, options?: DamerauLevenshteinDistanceOptions ): SubstringDistanceResult export function DamerauLevenshteinDistance ( source: string, target: string, options?: DamerauLevenshteinDistanceOptions ): number export function DamerauLevenshteinDistanceSearch ( source: string, target: string, options?: DamerauLevenshteinDistanceOptions ): SubstringDistanceResult export function DiceCoefficient (str1: string, str2: string): number export function HammingDistance (str1: string, str2: string, ignoreCase: boolean): number ================================================ FILE: lib/natural/distance/index.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' exports.JaroWinklerDistance = require('./jaro-winkler_distance') exports.LevenshteinDistance = require('./levenshtein_distance').LevenshteinDistance exports.DamerauLevenshteinDistance = require('./levenshtein_distance').DamerauLevenshteinDistance exports.LevenshteinDistanceSearch = require('./levenshtein_distance').LevenshteinDistanceSearch exports.DamerauLevenshteinDistanceSearch = require('./levenshtein_distance').DamerauLevenshteinDistanceSearch exports.DiceCoefficient = require('./dice_coefficient') exports.HammingDistance = require('./hamming_distance') ================================================ FILE: lib/natural/distance/jaro-winkler_distance.js ================================================ /* Copyright (c) 2012, Adam Phillabaum, Chris Umbel 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. Unless otherwise stated by a specific section of code THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' // Computes the Jaro distance between two string -- intrepreted from: // http://en.wikipedia.org/wiki/Jaro%E2%80%93Winkler_distance // s1 is the first string to compare // s2 is the second string to compare function distance (s1, s2) { if (typeof (s1) !== 'string' || typeof (s2) !== 'string') { return 0 } if (s1.length === 0 || s2.length === 0) { return 0 } const matchWindow = (Math.floor(Math.max(s1.length, s2.length) / 2.0)) - 1 const matches1 = new Array(s1.length) const matches2 = new Array(s2.length) let m = 0 // number of matches let t = 0 // number of transpositions let i = 0 // index for string 1 let k = 0 // index for string 2 // debug helpers // console.log("s1: " + s1 + "; s2: " + s2); // console.log(" - matchWindow: " + matchWindow); for (i = 0; i < s1.length; i++) { // loop to find matched characters const start = Math.max(0, (i - matchWindow)) // use the higher of the window diff const end = Math.min((i + matchWindow + 1), s2.length) // use the min of the window and string 2 length for (k = start; k < end; k++) { // iterate second string index if (matches2[k]) { // if second string character already matched continue } if (s1[i] !== s2[k]) { // characters don't match continue } // assume match if the above 2 checks don't continue matches1[i] = true matches2[k] = true m++ break } } // nothing matched if (m === 0) { return 0.0 } k = 0 // reset string 2 index for (i = 0; i < s1.length; i++) { // loop to find transpositions if (!matches1[i]) { // non-matching character continue } while (!matches2[k]) { // move k index to the next match k++ } if (s1[i] !== s2[k]) { // if the characters don't match, increase transposition // HtD: t is always less than the number of matches m, because transpositions are a subset of matches t++ } k++ // iterate k index normally } // transpositions divided by 2 t = t / 2.0 return ((m / s1.length) + (m / s2.length) + ((m - t) / m)) / 3.0 // HtD: therefore, m - t > 0, and m - t < m // HtD: => return value is between 0 and 1 } // Computes the Winkler distance between two string -- intrepreted from: // http://en.wikipedia.org/wiki/Jaro%E2%80%93Winkler_distance // s1 is the first string to compare // s2 is the second string to compare // dj is the Jaro Distance (if you've already computed it), leave blank and the method handles it // ignoreCase: if true strings are first converted to lower case before comparison function JaroWinklerDistance (s1, s2, options = {}) { if (s1 === s2) { return 1 } else { if (options.ignoreCase) { s1 = s1.toLowerCase() s2 = s2.toLowerCase() } // Use the Jaro distance provided by the client if present const jaro = (options.dj === undefined) ? distance(s1, s2) : options.dj const p = 0.1 // default scaling factor let l = 0 // length of the matching prefix while (s1[l] === s2[l] && l < 4) { l++ } // HtD: 1 - jaro >= 0 return jaro + l * p * (1 - jaro) } } module.exports = JaroWinklerDistance ================================================ FILE: lib/natural/distance/levenshtein_distance.js ================================================ /* Copyright (c) 2012, Sid Nallu, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' /* * contribution by sidred123 */ /* * Compute the Levenshtein distance between two strings. * Algorithm based from Speech and Language Processing - Daniel Jurafsky and James H. Martin. */ const _ = require('underscore') // Walk the path back from the matchEnd to the beginning of the match. // Do this by traversing the distanceMatrix as you would a linked list, // following going from cell child to parent until reach row 0. function _getMatchStart (distanceMatrix, matchEnd, sourceLength) { let row = sourceLength let column = matchEnd let tmpRow let tmpColumn // match will be empty string if (matchEnd === 0) { return 0 } while (row > 1 && column > 1) { tmpRow = row tmpColumn = column row = distanceMatrix[tmpRow][tmpColumn].parentCell.row column = distanceMatrix[tmpRow][tmpColumn].parentCell.column } return column - 1 } function getMinCostSubstring (distanceMatrix, source, target) { const sourceLength = source.length const targetLength = target.length let minDistance = sourceLength + targetLength let matchEnd = targetLength // Find minimum value in last row of the cost matrix. This cell marks the // end of the match string. for (let column = 0; column <= targetLength; column++) { if (minDistance > distanceMatrix[sourceLength][column].cost) { minDistance = distanceMatrix[sourceLength][column].cost matchEnd = column } } const matchStart = _getMatchStart(distanceMatrix, matchEnd, sourceLength) return { substring: target.slice(matchStart, matchEnd), distance: minDistance, offset: matchStart } } /* * Returns the Damerau-Levenshtein distance between strings. Counts the distance * between two strings by returning the number of edit operations required to * convert `source` into `target`. * * Valid edit operations are: * - transposition, insertion, deletion, and substitution * * Options: * insertion_cost: (default: 1) * deletion_cost: number (default: 1) * substitution_cost: number (default: 1) * transposition_cost: number (default: 1) * search: boolean (default: false) * restricted: boolean (default: false) * damerau: boolean (depends on the function called) */ function DamerauLevenshteinDistance (source, target, options) { const damLevOptions = _.extend( { transposition_cost: 1, restricted: false }, options || {}, { damerau: true, search: false } ) return levenshteinDistance(source, target, damLevOptions) } function DamerauLevenshteinDistanceSearch (source, target, options) { const damLevOptions = _.extend( { transposition_cost: 1, restricted: false }, options || {}, { damerau: true, search: true } ) return levenshteinDistance(source, target, damLevOptions) } function LevenshteinDistanceSearch (source, target, options) { const levOptions = _.extend({}, options || {}, { damerau: false, search: true }) return levenshteinDistance(source, target, levOptions) } function LevenshteinDistance (source, target, options) { const levOptions = _.extend({}, options || {}, { damerau: false, search: false }) return levenshteinDistance(source, target, levOptions) } function levenshteinDistance (source, target, options) { if (isNaN(options.insertion_cost)) options.insertion_cost = 1 if (isNaN(options.deletion_cost)) options.deletion_cost = 1 if (isNaN(options.substitution_cost)) options.substitution_cost = 1 if (typeof options.search !== 'boolean') options.search = false const isUnrestrictedDamerau = options.damerau && !options.restricted const isRestrictedDamerau = options.damerau && options.restricted let lastRowMap = null if (isUnrestrictedDamerau) { lastRowMap = {} } const sourceLength = source.length const targetLength = target.length const distanceMatrix = [[{ cost: 0 }]] // the root, has no parent cell for (let row = 1; row <= sourceLength; row++) { distanceMatrix[row] = [] distanceMatrix[row][0] = { cost: distanceMatrix[row - 1][0].cost + options.deletion_cost, parentCell: { row: row - 1, column: 0 } } } for (let column = 1; column <= targetLength; column++) { if (options.search) { distanceMatrix[0][column] = { cost: 0 } } else { distanceMatrix[0][column] = { cost: distanceMatrix[0][column - 1].cost + options.insertion_cost, parentCell: { row: 0, column: column - 1 } } } } let lastColMatch = null for (let row = 1; row <= sourceLength; row++) { if (isUnrestrictedDamerau) { lastColMatch = null } for (let column = 1; column <= targetLength; column++) { const costToInsert = distanceMatrix[row][column - 1].cost + options.insertion_cost const costToDelete = distanceMatrix[row - 1][column].cost + options.deletion_cost const sourceElement = source[row - 1] const targetElement = target[column - 1] let costToSubstitute = distanceMatrix[row - 1][column - 1].cost if (sourceElement !== targetElement) { costToSubstitute = costToSubstitute + options.substitution_cost } const possibleParents = [ { cost: costToInsert, coordinates: { row: row, column: column - 1 } }, { cost: costToDelete, coordinates: { row: row - 1, column: column } }, { cost: costToSubstitute, coordinates: { row: row - 1, column: column - 1 } } ] // We can add damerau to the possibleParents if the current // target-letter has been encountered in our lastRowMap, // and if there exists a previous column in this row where the // row & column letters matched const canDamerau = isUnrestrictedDamerau && row > 1 && column > 1 && lastColMatch && targetElement in lastRowMap let costBeforeTransposition = null if (canDamerau) { const lastRowMatch = lastRowMap[targetElement] costBeforeTransposition = distanceMatrix[lastRowMatch - 1][lastColMatch - 1].cost const costToTranspose = costBeforeTransposition + ((row - lastRowMatch - 1) * options.deletion_cost) + ((column - lastColMatch - 1) * options.insertion_cost) + options.transposition_cost possibleParents.push({ cost: costToTranspose, coordinates: { row: lastRowMatch - 1, column: lastColMatch - 1 } }) } // Source and target chars are 1-indexed in the distanceMatrix so previous // source/target element is (col/row - 2) const canDoRestrictedDamerau = isRestrictedDamerau && row > 1 && column > 1 && sourceElement === target[column - 2] && source[row - 2] === targetElement if (canDoRestrictedDamerau) { costBeforeTransposition = distanceMatrix[row - 2][column - 2].cost possibleParents.push({ cost: costBeforeTransposition + options.transposition_cost, coordinates: { row: row - 2, column: column - 2 } }) } const minCostParent = _.min(possibleParents, function (p) { return p.cost }) distanceMatrix[row][column] = { cost: minCostParent.cost, parentCell: minCostParent.coordinates } if (isUnrestrictedDamerau) { lastRowMap[sourceElement] = row if (sourceElement === targetElement) { lastColMatch = column } } } } if (!options.search) { return distanceMatrix[sourceLength][targetLength].cost } return getMinCostSubstring(distanceMatrix, source, target) } module.exports = { LevenshteinDistance: LevenshteinDistance, LevenshteinDistanceSearch: LevenshteinDistanceSearch, DamerauLevenshteinDistance: DamerauLevenshteinDistance, DamerauLevenshteinDistanceSearch: DamerauLevenshteinDistanceSearch } ================================================ FILE: lib/natural/index.d.ts ================================================ /* Copyright (c) 2022, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ export * from './analyzers' export * from './brill_pos_tagger' export * from './classifiers' export * from './distance' export * from './inflectors' export * from './ngrams' export * from './normalizers' export * from './phonetics' export * from './sentiment' export * from './spellcheck' export * from './stemmers' export * from './tfidf' export * from './tokenizers' export * from './transliterators' export * from './trie' export * from './util' export * from './wordnet' ================================================ FILE: lib/natural/index.js ================================================ /* Copyright (c) 2021, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' function buildExportMap (modules) { const result = {} modules.forEach(module => { Object.keys(module).forEach(key => { result[key] = module[key] }) }) return result } module.exports = buildExportMap([ require('./brill_pos_tagger'), require('./classifiers'), require('./distance'), require('./inflectors'), require('./ngrams'), require('./normalizers'), require('./phonetics'), require('./analyzers'), require('./sentiment'), require('./spellcheck'), require('./stemmers'), require('./tfidf'), require('./tokenizers'), require('./transliterators'), require('./trie'), require('./util'), require('./wordnet') ]) ================================================ FILE: lib/natural/inflectors/count_inflector.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' class CountInflector { nthForm (i) { const teenth = (i % 100) if (teenth > 10 && teenth < 14) { return 'th' } else { switch (i % 10) { case 1: return 'st' case 2: return 'nd' case 3: return 'rd' default: return 'th' } } } nth (i) { return i.toString() + this.nthForm(i) } } module.exports = CountInflector ================================================ FILE: lib/natural/inflectors/form_set.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const FormSet = function () { this.regularForms = [] this.irregularForms = Object.create(null) } module.exports = FormSet ================================================ FILE: lib/natural/inflectors/fr/count_inflector.js ================================================ /* Copyright (c) 2012, Guillaume Marty Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' /** * Numeral inflector for French. * @see http://fr.wikipedia.org/wiki/Ier_si%C3%A8cle * * Also handles roman numerals as a bonus. The rules are the same as for their * arabic numerals equivalent. * * \@todo Add inflector for gender and number. Ex: * * CountInflector(1, MASCULINE, SINGULAR); // "1er" (Default) * * CountInflector(1, MASCULINE, PLURAL); // "1ers" * * CountInflector(1, FEMINIE, SINGULAR); // "1re" * * CountInflector(1, FEMINIE, PLURAL); // "1res" * \@todo add alternative form for 2. Ex: * * CountInflector(2, undefined, undefined, ALTERNATIVE); // "2nd" */ class CountInflectorFr { /** * @param {number|string} i * @return {string} */ nth (i) { return i.toString() + this.nthForm(i) } /** * @param {number|string} i * @return {string} */ nthForm (i) { if (i === 1 || i === 'I') { return 'er' } return 'e' } } module.exports = CountInflectorFr ================================================ FILE: lib/natural/inflectors/fr/noun_inflector.js ================================================ /* Copyright (c) 2012, Guillaume Marty Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /** * A noun inflector for French. * Compiled from: * \@see http://fr.wiktionary.org/wiki/Annexe:Pluriels_irr%C3%A9guliers_en_fran%C3%A7ais * \@see http://fr.wikipedia.org/wiki/Pluriels_irr%C3%A9guliers_en_fran%C3%A7ais * * \@todo Take compounded noun into account (eaux-fortes, pique-nique...). * \@todo General note: French also requires AdjectiveInflector (femininize...). */ const SingularPluralInflector = require('../singular_plural_inflector') const FormSet = require('../form_set') class NounInflector extends SingularPluralInflector { constructor () { super() // Ambiguous a.k.a. invariant. // \@todo Expand this list to be as comprehensive as possible. this.ambiguous = [ // Nouns ending by -s 'à-peu-près', 'à-propos', 'abattis', 'abcès', 'abois', 'abribus', 'abus', 'accès', 'acquis', 'adénovirus', 'adonis', 'ados', 'agrès', 'aguets', 'ailleurs', 'ais', 'albatros', 'albinos', 'alias', 'aloès', 'amaryllis', 'amas', 'ampélopsis', 'ananas', 'anchois', 'angélus', 'anis', 'anticorps', 'antihéros', 'antirides', 'anus', 'appas', 'appentis', 'appui-bras', 'appuie-bras', 'arcanes', 'argus', 'arrérages', 'arrière-pays', 'as', 'ascaris', 'asparagus', 'atlas', 'atours', 'aurochs', 'autobus', 'autofocus', 'avant-bras', 'avant-corps', 'avant-propos', 'avers', 'avis', 'axis', 'barbouillis', 'bas', 'beaujolais', 'beaux-arts', 'biais', 'bibliobus', 'biceps', 'bicross', 'bien-fonds', 'bloc-notes', 'blockhaus', 'blocus', 'blues', 'bois', 'bonus', 'bout-dehors', 'bouts-rimés', 'branle-bas', 'bras', 'brebis', 'bris', 'brise-lames', 'brise-mottes', 'brûlis', 'buis', 'burnous', 'bus', 'business', 'cabas', 'cacatoès', 'cacatois', 'cactus', 'cadenas', 'cafouillis', 'caillebotis', 'calvados', 'cambouis', 'campus', 'canevas', 'cannabis', 'carquois', 'cas', 'casse-noisettes', 'casse-pieds', 'cassis', 'caucus', 'cens', 'cervelas', 'chablis', 'chamois', 'chaos', 'chas', 'chasselas', 'châssis', 'chatouillis', 'chauffe-assiettes', 'chauve-souris', 'chorus', 'choucas', 'circoncis', 'cirrus', 'clafoutis', 'clapotis', 'cliquetis', 'clos', 'cochylis', 'colis', 'coloris', 'commis', 'compas', 'compromis', 'compte-chèques', 'compte-gouttes', 'compte-tours', 'concours', 'confins', 'congrès', 'consensus', 'contrepoids', 'contresens', 'contretemps', 'corn flakes', 'corps', 'corps-à-corps', 'corpus', 'cosinus', 'cosmos', 'coulis', 'coupe-ongles', 'cours', 'court-jus', 'couscous', 'coutelas', 'crocus', 'croquis', 'cross', 'cubitus', 'cumulus', 'cure-dents', 'cure-ongles', 'cure-pipes', 'cursus', 'cyclo-cross', 'cyprès', 'dais', 'damas', 'débarras', 'débours', 'débris', 'décès', 'dedans', 'dehors', 'delirium tremens', 'demi-gros', 'dépens', 'dessous', 'dessus', 'détritus', 'deux-mâts', 'deux-pièces', 'deux-points', 'deux-roues', 'deux-temps', 'dévers', 'devis', 'diplodocus', 'discours', 'dos', 'ébats', 'éboulis', 'échalas', 'edelweiss', 'élaeis', 'éleis', 'éléphantiasis', 'embarras', 'empois', 'en-cas', 'encens', 'enclos', 'endos', 'engrais', 'entrelacs', 'entremets', 'envers', 'épluche-légumes', 'ers', 'espace-temps', 'essuie-mains', 'eucalyptus', 'ex-libris', 'excès', 'express', 'extrados', 'faciès', 'fait-divers', 'fatras', 'faux-sens', 'favoris', 'ficus', 'fier-à-bras', 'finnois', 'florès', 'focus', 'fœtus', 'fois', 'forceps', 'fouillis', 'fracas', 'frais', 'français', 'franglais', 'frimas', 'friselis', 'frisottis', 'froncis', 'frottis', 'fucus', 'gâchis', 'galetas', 'galimatias', 'garde-à-vous', 'garde-corps', 'gargouillis', 'gars', 'gâte-bois', 'gazouillis', 'génois', 'gibus', 'glacis', 'glas', 'gneiss', 'gobe-mouches', 'grès', 'gribouillis', 'guet-apens', 'habeas corpus', 'hachis', 'haras', 'hardes', 'harnais', 'haut-le-corps', 'hautbois', 'herbe-aux-chats', 'héros', 'herpès', 'hiatus', 'hibiscus', 'hors-concours', 'hors-pistes', 'hourdis', 'huis-clos', 'humérus', 'humus', 'ibis', 'iléus', 'indique-fuites', 'infarctus', 'inlandsis', 'insuccès', 'intercours', 'intrados', 'intrus', 'iris', 'isatis', 'jais', 'jars', 'jeans', 'jeuconcours', 'judas', 'juliénas', 'jus', 'justaucorps', 'kakatoès', 'kermès', 'kriss', 'lacis', 'laïus', 'lambris', 'lapis', 'laps', 'lapsus', 'laquais', 'las', 'lattis', 'lave-mains', 'lavis', 'lèche-bottes', 'lèche-vitrines', 'legs', 'lias', 'liégeois', 'lilas', 'lis', 'lœss', 'logis', 'loris', 'lotus', 'louis', 'lupus', 'lys', 'mâchicoulis', 'madras', 'maïs', 'malappris', 'malus', 'mânes', 'maquis', 'marais', 'maroilles', 'marquis', 'mas', 'mass-médias', 'matelas', 'matois', 'médius', 'mépris', 'mérinos', 'mess', 'mets', 'mi-bas', 'micro-ondes', 'mille-pattes', 'millepertuis', 'minibus', 'minois', 'minus', 'mirabilis', 'mois', 'monocorps', 'monte-plats', 'mors', 'motocross', 'mots-croisés', 'motus', 'mouchetis', 'mucus', 'myosotis', 'nævus', 'négus', 'niais', 'nimbo-stratus', 'nimbus', 'norois', 'nounours', 'nu-pieds', 'oasis', 'obus', 'olibrius', 'omnibus', 'opus', 'os', 'ours', 'ouvre-boîtes', 'ouvre-bouteilles', 'palais', 'palis', 'palmarès', 'palus', 'panais', 'panaris', 'pancréas', 'papyrus', 'par-dehors', 'paradis', 'parcours', 'pardessus', 'pare-balles', 'pare-chocs', 'parvis', 'pas', 'passe-temps', 'pataquès', 'pathos', 'patois', 'pavois', 'pays', 'permis', 'petit-bourgeois', 'petit-gris', 'petit-pois', 'phallus', 'phimosis', 'pickles', 'pilotis', 'pique-fleurs', 'pis', 'pithiviers', 'pityriasis', 'plateau-repas', 'plâtras', 'plein-temps', 'plexiglas', 'plexus', 'plus', 'poids', 'pois', 'pont-levis', 'porte-avions', 'porte-bagages', 'porte-billets', 'porte-bouteilles', 'porte-clés', 'porte-hélicoptères', 'porte-jarretelles', 'porte-revues', 'pouls', 'préavis', 'presse-fruits', 'presse-papiers', 'princeps', 'printemps', 'procès', 'processus', 'progrès', 'propos', 'prospectus', 'protège-dents', 'psoriasis', 'pubis', 'puits', 'pus', 'putois', 'quatre-épices', 'quatre-feuilles', 'quatre-heures', 'quatre-mâts', 'quatre-quarts', 'quatre-temps', 'quitus', 'rabais', 'rachis', 'radis', 'radius', 'raïs', 'ramassis', 'rébus', 'reclus', 'recours', 'refus', 'relais', 'remords', 'remous', 'remue-méninges', 'rendez-vous', 'repas', 'répons', 'repos', 'repris', 'reps', 'rétrovirus', 'revers', 'rhinocéros', 'rictus', 'rince-doigts', 'ris', 'rollmops', 'rosé-des-prés', 'roulis', 'rubis', 'salmigondis', 'salsifis', 'sans-logis', 'sas', 'sassafras', 'sauternes', 'schnaps', 'schuss', 'secours', 'semis', 'sens', 'serre-fils', 'serre-livres', 'sévices', 'sinus', 'skunks', 'souris', 'sournois', 'sous-bois', 'stradivarius', 'stras', 'strass', 'strato-cumulus', 'stratus', 'stress', 'succès', 'surdos', 'surplus', 'surpoids', 'sursis', 'suspens', 'synopsis', 'syphilis', 'taffetas', 'taillis', 'talus', 'tamaris', 'tamis', 'tapis', 'tas', 'taudis', 'temps', 'tennis', 'terminus', 'terre-neuvas', 'tétanos', 'tétras', 'thalamus', 'thermos', 'thesaurus', 'thésaurus', 'thymus', 'tire-fesses', 'tonus', 'torchis', 'torticolis', 'tournedos', 'tournevis', 'tournis', 'tracas', 'traîne-savates', 'travers', 'tréfonds', 'treillis', 'trépas', 'trias', 'triceps', 'trichomonas', 'trois-étoiles', 'trois-mâts', 'trois-quarts', 'trolleybus', 'tumulus', 'typhus', 'univers', 'us', 'utérus', 'vasistas', 'vélocross', 'velours', 'verglas', 'verjus', 'vernis', 'vers', 'vert-de-gris', 'vide-ordures', 'vide-poches', 'villageois', 'virus', 'vis-à-vis', 'volubilis', 'vulgum pecus', 'waters', 'williams', 'xérès', // Nouns ending by -x 'abat-voix', 'afflux', 'alpax', 'anthrax', 'apex', 'aptéryx', 'archéoptéryx', 'arrière-faix', 'bombyx', 'borax', 'bordeaux', 'bouseux', 'box', 'carex', 'casse-noix', 'cedex', 'céphalothorax', 'cérambyx', 'chaux', 'choix', 'coccyx', 'codex', 'contumax', 'coqueleux', 'cortex', 'courroux', 'croix', 'crucifix', 'culex', 'demodex', 'duplex', 'entre-deux', 'époux', 'équivaux', 'eux', 'ex', 'faix', 'faucheux', 'faux', 'fax', 'ferreux', 'flux', 'fox', 'freux', 'furax', 'hapax', 'harengueux', 'hélix', 'horse-pox', 'houx', 'index', 'influx', 'inox', 'juke-box', 'kleenex', 'lagothrix', 'larynx', 'lastex', 'latex', 'lux', 'lynx', 'macareux', 'max', 'mésothorax', 'mi-voix', 'mirepoix', 'motteux', 'multiplex', 'murex', 'narthex', 'noix', 'onyx', 'opopanax', 'oropharynx', 'paix', 'panax', 'perdrix', 'pharynx', 'phénix', 'phlox', 'phoenix', 'pneumothorax', 'poix', 'portefaix', 'pousse-cailloux', 'preux', 'prix', 'prothorax', 'pucheux', 'pyrex', 'pyroligneux', 'quadruplex', 'queux', 'redoux', 'reflex', 'reflux', 'relax', 'rhinopharynx', 'rose-croix', 'rouvieux', 'roux', 'rumex', 'saindoux', 'sardonyx', 'scolex', 'sèche-cheveux', 'silex', 'simplex', 'sioux', 'sirex', 'smilax', 'solex', 'songe-creux', 'spalax', 'sphex', 'sphinx', 'storax', 'strix', 'styrax', 'surfaix', 'surtaux', 'syrinx', 'tamarix', 'taux', 'télex', 'thorax', 'tord-boyaux', 'toux', 'trionyx', 'tripoux', 'tubifex', 'vertex', 'vidéotex', 'vielleux', 'vieux', 'violoneux', 'voix', 'volvox', 'vortex', // Nouns ending by -z 'allume-gaz', 'assez', 'biogaz', 'cache-nez', 'camping-gaz', 'chez', 'chintz', 'ersatz', 'fez', 'free-jazz', 'fritz', 'gaz', 'gin-fizz', 'hertz', 'jazz', 'jerez', 'kibboutz', 'kilohertz', 'kolkhoz', 'kronprinz', 'lapiaz', 'lez', 'mégahertz', 'merguez', 'nez', 'pince-nez', 'quartz', 'quiz', 'ranz', 'raz', 'recez', 'rémiz', 'rez', 'riz', 'ruolz', 'seltz', 'serre-nez' ] this.customPluralForms = [] this.customSingularForms = [] this.singularForms = new FormSet() this.pluralForms = new FormSet() // this.attach = attach this.addIrregular('ail', 'aulx') this.addIrregular('bétail', 'bestiaux') this.addIrregular('bonhomme', 'bonshommes') this.addIrregular('ciel', 'cieux') this.addIrregular('monsieur', 'messieurs') this.addIrregular('mafioso', 'mafiosi') this.addIrregular('œil', 'yeux') this.addIrregular('putto', 'putti') this.addIrregular('targui', 'touareg') // touareg -> touaregs is also OK. // Pluralize this.pluralForms.regularForms.push([/^(av|b|c|carnav|cérémoni|chac|corr|emment|emmenth|festiv|fut|gavi|gra|narv|p|récit|rég|rit|rorqu|st)al$/i, '$1als']) this.pluralForms.regularForms.push([/^(aspir|b|cor|ém|ferm|gemm|soupir|trav|vant|vent|vitr)ail$/i, '$1aux']) this.pluralForms.regularForms.push([/^(bij|caill|ch|gen|hib|jouj|p|rip|chouch)ou$/i, '$1oux']) this.pluralForms.regularForms.push([/^(gr|berimb|don|karb|land|pil|rest|sarr|un)au$/i, '$1aus']) this.pluralForms.regularForms.push([/^(bl|ém|enf|pn)eu$/i, '$1eus']) this.pluralForms.regularForms.push([/(au|eau|eu|œu)$/i, '$1x']) this.pluralForms.regularForms.push([/al$/i, 'aux']) this.pluralForms.regularForms.push([/(s|x)$/i, '$1']) this.pluralForms.regularForms.push([/(.*)$/i, '$1s']) // Singularize this.singularForms.regularForms.push([/^(aspir|b|cor|ém|ferm|gemm|soupir|trav|vant|vent|vitr)aux$/i, '$1ail']) this.singularForms.regularForms.push([/^(aloy|b|bouc|boy|burg|conoy|coy|cr|esquim|ét|fabli|flé|flûti|glu|gr|gru|hoy|joy|kérab|matéri|nobli|noy|pré|sen|sén|t|touch|tuss|tuy|v|ypré)aux$/i, '$1au']) this.singularForms.regularForms.push([/^(bij|caill|ch|gen|hib|jouj|p|rip|chouch)oux$/i, '$1ou']) this.singularForms.regularForms.push([/^(bis)?aïeux$/i, '$1aïeul']) this.singularForms.regularForms.push([/^apparaux$/i, 'appareil']) // One way transform, don't put on irregular list. this.singularForms.regularForms.push([/^ciels$/i, 'ciel']) this.singularForms.regularForms.push([/^œils$/i, 'œil']) this.singularForms.regularForms.push([/(eau|eu|œu)x$/i, '$1']) this.singularForms.regularForms.push([/aux$/i, 'al']) this.singularForms.regularForms.push([/(.*)s$/i, '$1']) this.pluralize = function (token) { return this.ize(token, this.pluralForms, this.customPluralForms) } this.singularize = function (token) { return this.ize(token, this.singularForms, this.customSingularForms) } } } module.exports = NounInflector ================================================ FILE: lib/natural/inflectors/index.d.ts ================================================ /* Copyright (c) 2022, Dylan R. E. Moonfire , Emily Marigold Klassen , Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ export class SingularPluralInflector { singularize (token: string): string pluralize (token: string): string addSingular (pattern: RegExp, replacement: string): void addPlural (pattern: RegExp, replacement: string): void } export class NounInflector extends SingularPluralInflector { pluralize (token: string): string singularize (token: string): string } export class NounInflectorFr extends NounInflector {} export class NounInflectorJa extends NounInflector {} export class CountInflector { nth: (i: number | string) => string } export class CountInflectorFr extends CountInflector {} export class PresentVerbInflector { pluralize (token: string): string singularize (token: string): string } ================================================ FILE: lib/natural/inflectors/index.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' exports.NounInflector = require('./noun_inflector') exports.NounInflectorFr = require('./fr/noun_inflector') exports.NounInflectorJa = require('./ja/noun_inflector') exports.PresentVerbInflector = require('./present_verb_inflector') exports.CountInflector = require('./count_inflector') exports.CountInflectorFr = require('./fr/count_inflector') ================================================ FILE: lib/natural/inflectors/ja/noun_inflector.js ================================================ /* Copyright (c) 2012, Guillaume Marty Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /** * A noun inflector for Japanese. * Compiled from several sources including: * \@see http://answers.yahoo.com/question/index?qid=20080528201740AASBWy6 * \@see http://www.excite.co.jp/dictionary/english_japanese/ * * This script assumes input is normalized using normalizer_ja(). * Pluralizing Japanese has a very limited interest. * Japanese don't usually distinct plural from singular, so even a word looking * like a singular might actually be a plural. * * Singularization of nouns ending by -tachi or -ra is achieved using a * comprehensive black list, while nouns ending by -domo or -gata use a white * list because there are too many exceptions. * * \@todo Singularize nouns ending by -ら, but there are too many exceptions. * \@todo Expand the list of common plurals ending by -domo and -gata. */ const SingularPluralInflector = require('../singular_plural_inflector') const FormSet = require('../form_set') class NounInflector extends SingularPluralInflector { constructor () { super() // Ambiguous a.k.a. invariant. this.ambiguous = [ 'ともだち', '友だち', '友達', '遊び友達', '飲み友達', '酒飲み友達', '茶飲み友達', '学校友達', '女友達', '男友達', '幼友達' ] this.customPluralForms = [] this.customSingularForms = [] this.singularForms = new FormSet() this.pluralForms = new FormSet() // this.attach = attach this.addIrregular('神', '神神') this.addIrregular('人', '人人') this.addIrregular('年', '年年') this.addIrregular('月', '月月') this.addIrregular('日', '日日') this.addIrregular('星', '星星') this.addIrregular('島', '島島') this.addIrregular('我', '我我') this.addIrregular('山', '山山') this.addIrregular('国', '国国') this.addIrregular('所', '所所') this.addIrregular('隅', '隅隅') /** * Notes: * -たち exceptions: いたち, おいたち, ついたち, かたち, かおかたち, なりかたち, いでたち, はたち, からたち, なりたち * -達 exceptions: 伊達, 男伊達, 栄達, 上意下達, 熟達, 上達, 下意上達, 先達, 送達, 速達, 即日速達, 書留速達, 調達, 通達, 伝達, 到達, 配達, 牛乳配達, 新聞配達, 無料配達, 四通八達, 発達, 未発達, 御用達, 宮内庁御用達, 練達, 闊達 * -等 exceptions: 一等, 下等, 何等, 均等, 勲等, 高等, 三等, 初等, 上等, 親等, 二親等, 数等, 対等, 中等, 同等, 特等, 二等, 品等, 不等, 平等, 悪平等, 男女平等, 不平等, 優等, 劣等 */ // Pluralize this.pluralForms.regularForms.push([/^(.+)$/i, '$1たち']) // Singularize this.singularForms.regularForms.push([/^(.+)たち$/i, function (a, mask) { if (['い', 'おい', 'つい', 'か', 'かおか', 'なりか', 'いで', 'は', 'から', 'なり'].indexOf(mask) >= 0) { return mask + 'たち' } return mask }]) this.singularForms.regularForms.push([/^(.+)達$/i, function (a, mask) { if (['伊', '伊', '栄', '上意下', '熟', '上', '下意上', '先', '送', '速', '即日速', '書留速', '調', '通', '伝', '到', '配', '牛乳配', '新聞配', '無料配', '四通八', '発', '未発', '御用', '宮内庁御用', '練', '闊'].indexOf(mask) >= 0) { return mask + '達' } return mask }]) // Singularize nouns ending by -等, but not exceptions. this.singularForms.regularForms.push([/^(.+)等$/i, function (a, mask) { if (['一', '下', '何', '均', '勲', '高', '三', '初', '親', '二親', '数', '対', '中', '同', '特', '二', '品', '不', '平', '悪平', '男女平', '不平', '優', '劣'].indexOf(mask) >= 0) { return mask + '等' } return mask }]) this.singularForms.regularForms.push([/^(人間|わたくし|私|てまえ|手前|野郎|やろう|勇者|がき|ガキ|餓鬼|あくとう|悪党|猫|家来)(共|ども)$/i, '$1']) this.singularForms.regularForms.push([/^(神様|先生|あなた|大名|女中|奥様)(方|がた)$/i, '$1']) this.pluralize = function (token) { return this.ize(token, this.pluralForms, this.customPluralForms) } this.singularize = function (token) { return this.ize(token, this.singularForms, this.customSingularForms) } } } module.exports = NounInflector ================================================ FILE: lib/natural/inflectors/noun_inflector.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const SingularPluralInflector = require('./singular_plural_inflector') const FormSet = require('./form_set') class NounInflector extends SingularPluralInflector { constructor () { super() this.ambiguous = [ 'bison', 'bream', 'carp', 'chassis', 'christmas', 'cod', 'corps', 'debris', 'deer', 'diabetes', 'equipment', 'elk', 'fish', 'flounder', 'gallows', 'graffiti', 'headquarters', 'herpes', 'highjinks', 'homework', 'information', 'mackerel', 'mews', 'money', 'news', 'rice', 'rabies', 'salmon', 'series', 'sheep', 'shrimp', 'species', 'swine', 'tennis', 'trout', 'tuna', 'whiting', 'wildebeest' ] this.customPluralForms = [] this.customSingularForms = [] this.singularForms = new FormSet() this.pluralForms = new FormSet() // this.attach = attach this.addIrregular('child', 'children') this.addIrregular('man', 'men') this.addIrregular('person', 'people') this.addIrregular('sex', 'sexes') this.addIrregular('mouse', 'mice') this.addIrregular('ox', 'oxen') this.addIrregular('foot', 'feet') this.addIrregular('tooth', 'teeth') this.addIrregular('goose', 'geese') this.addIrregular('ephemeris', 'ephemerides') this.addIrregular('cloth', 'clothes') this.addIrregular('hero', 'heroes') this.addIrregular('torso', 'torsi') // see if it is possible to unify the creation of both the singular and // plural regexes or maybe even just have one list. with a complete list // of rules it may only be possible for some regular forms, but worth a shot this.pluralForms.regularForms.push([/([aeiou]y)$/i, '$1s']) this.pluralForms.regularForms.push([/y$/i, 'ies']) this.pluralForms.regularForms.push([/ife$/i, 'ives']) this.pluralForms.regularForms.push([/(antenn|formul|nebul|vertebr|vit)a$/i, '$1ae']) this.pluralForms.regularForms.push([/(octop|vir|radi|nucle|fung|cact|stimul|alumn|calcul|hippopotam|macrofung|phoet|syllab|troph)us$/i, '$1i']) this.pluralForms.regularForms.push([/(buffal|tomat|tornad)o$/i, '$1oes']) this.pluralForms.regularForms.push([/(sis)$/i, 'ses']) this.pluralForms.regularForms.push([/(matr|vert|ind|cort)(ix|ex)$/i, '$1ices']) this.pluralForms.regularForms.push([/sses$/i, 'sses']) this.pluralForms.regularForms.push([/(x|ch|ss|sh|s|z)$/i, '$1es']) this.pluralForms.regularForms.push([/^(?!talis|.*hu)(.*)man$/i, '$1men']) this.pluralForms.regularForms.push([/(.*)/i, '$1s']) // Words ending in -ff or -ffe you just add s to make the plural. // Sheriffs | Giraffes // this.pluralForms.regularForms.push([/(.+ffe?)$/i, '$1s']) // words ending in f that just add s: // roof - roofs // chief - chiefs // oaf -oafs // this.pluralForms.regularForms.push([/([^f]+f)$/i, '$1s']) // Example of words using the -f / -fe to -ves rule // leaf - leaves // wolf - wolves // calf - calves // half - halves // knife - knives // loaf - loaves // life - lives // wife - wives // shelf - shelves // thief - thieves // yourself - yourselves this.addIrregular('leaf', 'leaves') this.addIrregular('wolf', 'wolves') this.addIrregular('calf', 'calves') this.addIrregular('half', 'halves') this.addIrregular('knife', 'knives') this.addIrregular('loaf', 'loaves') this.addIrregular('life', 'lives') this.addIrregular('wife', 'wives') this.addIrregular('shelf', 'shelves') this.addIrregular('thief', 'thieves') this.addIrregular('yourself', 'yourselves') // Some words have multiple valid plural forms endings with -ves or -s: // scarf - scarfs/scarves // dwarf - dwarfs / dwarves // wharf - wharfs / wharves // handkerchief - handkerchiefs / handkerchieves // this.pluralForms.regularForms.push([/(.*r)f/i, '$1ves']) // Singular inflections // Some words have multiple valid plural forms endings with -ves or -s: // scarf - scarfs/scarves // dwarf - dwarfs / dwarves // wharf - wharfs / wharves // handkerchief - handkerchiefs / handkerchieves this.singularForms.regularForms.push([/(.*)ves$/i, '$1f']) // expenses - expense // defenses - defense this.singularForms.regularForms.push([/(.*)nses$/i, '$1nse']) this.singularForms.regularForms.push([/([^v])ies$/i, '$1y']) this.singularForms.regularForms.push([/ives$/i, 'ife']) this.singularForms.regularForms.push([/(antenn|formul|nebul|vertebr|vit)ae$/i, '$1a']) this.singularForms.regularForms.push([/(octop|vir|radi|nucle|fung|cact|stimul|alumn|calcul|hippopotam|macrofung|phoet|syllab|troph)(i)$/i, '$1us']) this.singularForms.regularForms.push([/(buffal|tomat|tornad)(oes)$/i, '$1o']) this.singularForms.regularForms.push([/(analy|naly|synop|parenthe|diagno|the)ses$/i, '$1sis']) this.singularForms.regularForms.push([/(vert|ind|cort)(ices)$/i, '$1ex']) // our pluralizer won''t cause this form of appendix (appendicies) // but we should handle it this.singularForms.regularForms.push([/(matr|append)(ices)$/i, '$1ix']) this.singularForms.regularForms.push([/(x|ch|ss|sh|s|z)es$/i, '$1']) this.singularForms.regularForms.push([/men$/i, 'man']) this.singularForms.regularForms.push([/ss$/i, 'ss']) this.singularForms.regularForms.push([/s$/i, '']) this.pluralize = function (token) { return this.ize(token, this.pluralForms, this.customPluralForms) } this.singularize = function (token) { return this.ize(token, this.singularForms, this.customSingularForms) } } } module.exports = NounInflector ================================================ FILE: lib/natural/inflectors/present_verb_inflector.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ const SingularPluralInflector = require('./singular_plural_inflector') const FormSet = require('./form_set') class VerbInflector extends SingularPluralInflector { constructor () { super() this.ambiguous = [ 'will' ] // this.attach = attach this.customPluralForms = [] this.customSingularForms = [] this.singularForms = new FormSet() this.pluralForms = new FormSet() this.addIrregular('am', 'are') this.addIrregular('is', 'are') this.addIrregular('was', 'were') this.addIrregular('has', 'have') this.singularForms.regularForms.push([/ed$/i, 'ed']) this.singularForms.regularForms.push([/ss$/i, 'sses']) this.singularForms.regularForms.push([/x$/i, 'xes']) this.singularForms.regularForms.push([/(h|z|o)$/i, '$1es']) this.singularForms.regularForms.push([/$zz/i, 'zzes']) this.singularForms.regularForms.push([/([^a|e|i|o|u])y$/i, '$1ies']) this.singularForms.regularForms.push([/$/i, 's']) this.pluralForms.regularForms.push([/sses$/i, 'ss']) this.pluralForms.regularForms.push([/xes$/i, 'x']) this.pluralForms.regularForms.push([/([cs])hes$/i, '$1h']) this.pluralForms.regularForms.push([/zzes$/i, 'zz']) this.pluralForms.regularForms.push([/([^h|z|o|i])es$/i, '$1e']) this.pluralForms.regularForms.push([/ies$/i, 'y'])// flies->fly this.pluralForms.regularForms.push([/e?s$/i, '']) } } module.exports = VerbInflector ================================================ FILE: lib/natural/inflectors/singular_plural_inflector.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ const uppercaseify = (token) => { return token.toUpperCase() } const capitalize = (token) => { return token[0].toUpperCase() + token.slice(1) } const lowercaseify = (token) => { return token.toLowerCase() } class TenseInflector { addSingular (pattern, replacement) { this.customSingularForms.push([pattern, replacement]) } addPlural (pattern, replacement) { this.customPluralForms.push([pattern, replacement]) } ize (token, formSet, customForms) { const restoreCase = this.restoreCase(token) return restoreCase(this.izeRegExps(token, customForms) || this.izeAbiguous(token) || this.izeRegulars(token, formSet) || this.izeRegExps(token, formSet.regularForms) || token) } izeAbiguous (token) { if (this.ambiguous.indexOf(token.toLowerCase()) > -1) { return token.toLowerCase() } return false } pluralize (token) { return this.ize(token, this.pluralForms, this.customPluralForms) } singularize (token) { return this.ize(token, this.singularForms, this.customSingularForms) } restoreCase (token) { if (token[0] === token[0].toUpperCase()) { if (token[1] && token[1] === token[1].toLowerCase()) { return capitalize } else { return uppercaseify } } else { return lowercaseify } } izeRegulars (token, formSet) { token = token.toLowerCase() // if (formSet.irregularForms.hasOwnProperty(token) && formSet.irregularForms[token]) { if (formSet.irregularForms[token]) { return formSet.irregularForms[token] } return false } addForm (singularTable, pluralTable, singular, plural) { singular = singular.toLowerCase() plural = plural.toLowerCase() pluralTable[singular] = plural singularTable[plural] = singular } addIrregular (singular, plural) { this.addForm(this.singularForms.irregularForms, this.pluralForms.irregularForms, singular, plural) } izeRegExps (token, forms) { let i, form for (i = 0; i < forms.length; i++) { form = forms[i] if (token.match(form[0])) { return token.replace(form[0], form[1]) } } return false } } module.exports = TenseInflector ================================================ FILE: lib/natural/ngrams/index.d.ts ================================================ /* Copyright (c) 2022, Dylan R. E. Moonfire , Emily Marigold Klassen , Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import type { Tokenizer } from '../tokenizers' declare interface NGramsStats { ngrams: string[][] frequencies: Record Nr: Record numberOfNgrams: number } declare interface NGramsFunctions { // To support function overloads where the return type can differ depending on a parameter // value, method signatures are necessary. Key collisions occur with property signatures. /* eslint-disable @typescript-eslint/method-signature-style */ setTokenizer (t: Tokenizer): void ngrams (sequence: string | string[], n: number, startSymbol: string | undefined | null, endSymbol: string | undefined | null, stats: true): NGramsStats ngrams (sequence: string | string[], n: number, startSymbol?: string | undefined | null, endSymbol?: string, stats?: boolean): string[][] bigrams (sequence: string | string[], startSymbol: string | undefined, endSymbol: string | undefined, stats: true): NGramsStats bigrams (sequence: string | string[], startSymbol?: string, endSymbol?: string, stats?: boolean): string[][] trigrams (sequence: string | string[], startSymbol: string | undefined, endSymbol: string | undefined, stats: true): NGramsStats trigrams (sequence: string | string[], startSymbol?: string, endSymbol?: string, stats?: boolean): string[][] multrigrams (sequence: string | string[], n: number, startSymbol: string | undefined, endSymbol: string | undefined, stats: true): NGramsStats multrigrams (sequence: string | string[], n: number, startSymbol?: string, endSymbol?: string, stats?: boolean): string[][] /* eslint-enable @typescript-eslint/method-signature-style */ } export let NGrams: NGramsFunctions export let NGramsZH: NGramsFunctions ================================================ FILE: lib/natural/ngrams/index.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' exports.NGrams = require('./ngrams') exports.NGramsZH = require('./ngrams_zh') ================================================ FILE: lib/natural/ngrams/ngrams.js ================================================ /* Copyright (c) 2011, 2018 Rob Ellis, Chris Umbel, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const _ = require('underscore') const Tokenizer = require('../tokenizers/regexp_tokenizer').WordTokenizer let tokenizer = new Tokenizer() let frequencies = {} let nrOfNgrams = 0 exports.setTokenizer = function (t) { if (!_.isFunction(t.tokenize)) { throw new Error('Expected a valid Tokenizer') } tokenizer = t } exports.ngrams = function (sequence, n, startSymbol, endSymbol, stats) { return ngrams(sequence, n, startSymbol, endSymbol, stats) } exports.bigrams = function (sequence, startSymbol, endSymbol, stats) { return ngrams(sequence, 2, startSymbol, endSymbol, stats) } exports.trigrams = function (sequence, startSymbol, endSymbol, stats) { return ngrams(sequence, 3, startSymbol, endSymbol, stats) } exports.multrigrams = function (sequence, n, startSymbol, endSymbol, stats) { return ngrams(sequence, n, startSymbol, endSymbol, stats) } // Calculates a key (string) that can be used for a map function arrayToKey (arr) { let result = '(' arr.forEach(function (x) { result += x + ', ' }) result = result.substr(0, result.length - 2) + ')' return result }; // Updates the statistics for the new ngram function countNgrams (ngram) { nrOfNgrams++ const key = arrayToKey(ngram) if (!frequencies[key]) { frequencies[key] = 0 } frequencies[key]++ } // If stats is true, statistics will be returned const ngrams = function (sequence, n, startSymbol, endSymbol, stats) { const result = [] frequencies = {} nrOfNgrams = 0 if (!_.isArray(sequence)) { sequence = tokenizer.tokenize(sequence) } const count = _.max([0, sequence.length - n + 1]) // Check for left padding if (typeof startSymbol !== 'undefined' && startSymbol !== null) { // Create an array of (n) start symbols const blanks = [] for (let i = 0; i < n; i++) { blanks.push(startSymbol) } // Create the left padding for (let p = n - 1; p > 0; p--) { // Create a tuple of (p) start symbols and (n - p) words const ngram = blanks.slice(0, p).concat(sequence.slice(0, n - p)) result.push(ngram) if (stats) { countNgrams(ngram) } } } // Build the complete ngrams for (let i = 0; i < count; i++) { const ngram = sequence.slice(i, i + n) result.push(ngram) if (stats) { countNgrams(ngram) } } // Check for right padding if (typeof endSymbol !== 'undefined' && endSymbol !== null) { // Create an array of (n) end symbols const blanks = [] for (let i = 0; i < n; i++) { blanks.push(endSymbol) } // create the right padding for (let p = n - 1; p > 0; p--) { // Create a tuple of (p) start symbols and (n - p) words const ngram = sequence.slice(sequence.length - p, sequence.length).concat(blanks.slice(0, n - p)) result.push(ngram) if (stats) { countNgrams(ngram) } } } if (stats) { // Count frequencies const Nr = {} Object.keys(frequencies).forEach(function (key) { if (!Nr[frequencies[key]]) { Nr[frequencies[key]] = 0 } Nr[frequencies[key]]++ }) // Return the ngrams AND statistics return { ngrams: result, frequencies: frequencies, Nr: Nr, numberOfNgrams: nrOfNgrams } } else { // Do not break existing API of this module return result } } ================================================ FILE: lib/natural/ngrams/ngrams_zh.js ================================================ /* Copyright (c) 2014, Lee Wenzhu Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ const _ = require('underscore') exports.ngrams = function (sequence, n, startSymbol, endSymbol) { return ngrams(sequence, n, startSymbol, endSymbol) } exports.bigrams = function (sequence, startSymbol, endSymbol) { return ngrams(sequence, 2, startSymbol, endSymbol) } exports.trigrams = function (sequence, startSymbol, endSymbol) { return ngrams(sequence, 3, startSymbol, endSymbol) } const ngrams = function (sequence, n, startSymbol, endSymbol) { const result = [] if (!_.isArray(sequence)) { sequence = sequence.split('') } const count = _.max([0, sequence.length - n + 1]) // Check for left padding if (typeof startSymbol !== 'undefined' && startSymbol !== null) { // Create an array of (n) start symbols const blanks = [] for (let i = 0; i < n; i++) { blanks.push(startSymbol) } // Create the left padding for (let p = n - 1; p > 0; p--) { // Create a tuple of (p) start symbols and (n - p) words result.push(blanks.slice(0, p).concat(sequence.slice(0, n - p))) } } // Build the complete ngrams for (let i = 0; i < count; i++) { result.push(sequence.slice(i, i + n)) } // Check for right padding if (typeof endSymbol !== 'undefined' && endSymbol !== null) { // Create an array of (n) end symbols const blanks = [] for (let i = 0; i < n; i++) { blanks.push(endSymbol) } // create the right padding for (let p = n - 1; p > 0; p--) { // Create a tuple of (p) start symbols and (n - p) words result.push(sequence.slice(sequence.length - p, sequence.length).concat(blanks.slice(0, n - p))) } } return result } ================================================ FILE: lib/natural/normalizers/index.d.ts ================================================ /* Copyright (c) 2022, Dylan R. E. Moonfire , Emily Marigold Klassen , Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ export function normalize (tokens: string | string[]): string[] // eslint-disable-next-line @typescript-eslint/naming-convention export function normalizeJa (str: string): string export function normalizeNo (str: string): string export function normalizeSv (str: string): string export function removeDiacritics (str: string): string export class Converters { alphabetFH: (str: string) => string alphabetHF: (str: string) => string numbersFH: (str: string) => string numbersHF: (str: string) => string punctuationFH: (str: string) => string punctuationHF: (str: string) => string symbolFH: (str: string) => string symbolHF: (str: string) => string purePunctuationFH: (str: string) => string purePunctuationHF: (str: string) => string katakanaFH: (str: string) => string katakanaHF: (str: string) => string static fixFullwidthKana: (str: string) => string static normalize: (str: string) => string hiraganaToKatakana (str: string): string katakanaToHiragana (str: string): string } type FixCompositeSymbolsTable = Record ================================================ FILE: lib/natural/normalizers/index.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' exports.normalize = require('./normalizer').normalizeTokens exports.normalizeJa = require('./normalizer_ja').normalizeJa exports.normalizeNo = require('./normalizer_no').removeDiacritics exports.normalizeSv = require('./normalizer_sv') exports.Converters = require('./normalizer_ja').Converters exports.removeDiacritics = require('./remove_diacritics') ================================================ FILE: lib/natural/normalizers/normalizer.js ================================================ /* Copyright (c) 2013, Kenneth Koch Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' /** * The english normalizer will create a string in which all contractions are expanded to their * full meaning (i.e. "we'll" becomes "we will"). * * It currently works off a conversion table and falls back to a set of rules. * Since it is applied first, the conversion table provides an "override" for the rules. **/ // const replacer = require('../util/utils').replacer const conversionTable = { "can't": 'can not', "won't": 'will not', "couldn't've": 'could not have', "i'm": 'I am', "how'd": 'how did' } const rules = [ { regex: /([azAZ]*)n'[tT]/g, output: '$1 not' }, { regex: /([azAZ]*)'[sS]/g, output: '$1 is' }, { regex: /([azAZ]*)'[lL][lL]/g, output: '$1 will' }, { regex: /([azAZ]*)'[rR][eE]/g, output: '$1 are' }, { regex: /([azAZ]*)'[vV][eE]/g, output: '$1 have' }, { regex: /([azAZ]*)'[dD]/g, output: '$1 would' } ] // Accepts a list of tokens to expand. const normalizeTokens = function (tokens) { if (typeof tokens === 'string') { tokens = [tokens] } let results = [] const ruleCount = rules.length const numTokens = tokens.length let i, token, r, rule for (i = 0; i < numTokens; i++) { token = tokens[i] // Check the conversion table if (conversionTable[token.toLowerCase()]) { results = results.concat(conversionTable[token.toLowerCase()].split(/\W+/)) } else { // Apply the rules let matched = false for (r = 0; r < ruleCount; r++) { rule = rules[r] if (token.match(rule.regex)) { results = results.concat(token.replace(rule.regex, rule.output).split(/\W+/)) matched = true break } } if (!matched) { results.push(token) } } } return results } // export the relevant stuff. exports.normalizeTokens = normalizeTokens ================================================ FILE: lib/natural/normalizers/normalizer_ja.js ================================================ /* Copyright (c) 2012, Guillaume Marty Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' /** * Normalize Japanese inputs and expose function to perform several conversions. * * Note: The space character is treated like a roman character as it usually * has the same width as them in Japanese texts. * * \@todo Replace characters range from ㈠ to ㉃, ㊀ to ㊰ and ㇰ to ㇿ. * \@todo Lazy initializations of conversionTables and converters. * \@todo Would fixHalfwidthKana be useful? * * Descriptions of functions exposed: * normalizeJapanese 「全角」英字・数字を「半角」、「半角」記・カタカナを「全角」に変換 * converters.fullwidthToHalfwidth.alphabet 「全角」英字を「半角」に変換 * converters.halfwidthToFullwidth.alphabet 「半角」英字を「全角」に変換 * converters.fullwidthToHalfwidth.numbers 「全角」数字を「半角」に変換 * converters.halfwidthToFullwidth.numbers 「半角」数字を「全角」に変換 「全角」スペースを「半角」 * converters.fullwidthToHalfwidth.punctuation 「全角」記号を「半角」に変換 「半角」スペースを「全角」 * converters.halfwidthToFullwidth.punctuation 「半角」記号を「全角」に変換 * converters.fullwidthToHalfwidth.katakana 「全角カタカナ」を「半角カタカナ」に変換 * converters.halfwidthToFullwidth.katakana 「半角カタカナ」を「全角カタカナ」に変換 * converters.hiraganaToKatakana 「カタカナ」を「ひらがな」に変換 * converters.katakanaToHiragana 「ひらがな」を「カタカナ」に変換 */ const flip = require('../util/utils.js').flip const merge = require('../util/utils.js').merge const replacer = require('../util/utils.js').replacer // From http://fernweh.jp/b/mb_convert_kana_js/ const conversionTables = { fullwidthToHalfwidth: { alphabet: { a: 'a', b: 'b', c: 'c', d: 'd', e: 'e', f: 'f', g: 'g', h: 'h', i: 'i', j: 'j', k: 'k', l: 'l', m: 'm', n: 'n', o: 'o', p: 'p', q: 'q', r: 'r', s: 's', t: 't', u: 'u', v: 'v', w: 'w', x: 'x', y: 'y', z: 'z', A: 'A', B: 'B', C: 'C', D: 'D', E: 'E', F: 'F', G: 'G', H: 'H', I: 'I', J: 'J', K: 'K', L: 'L', M: 'M', N: 'N', O: 'O', P: 'P', Q: 'Q', R: 'R', S: 'S', T: 'T', U: 'U', V: 'V', W: 'W', X: 'X', Y: 'Y', Z: 'Z', ' ': ' ' // Fullwidth space }, numbers: { '0': '0', '1': '1', '2': '2', '3': '3', '4': '4', '5': '5', '6': '6', '7': '7', '8': '8', '9': '9' }, symbol: { '_': '_', '-': '-', ',': ',', ';': ';', ':': ':', '!': '!', '?': '?', '.': '.', '(': '(', ')': ')', '[': '[', ']': ']', '{': '{', '}': '}', '@': '@', '*': '*', '\': '\\', '/': '/', '&': '&', '#': '#', '%': '%', '`': '`', '^': '^', '+': '+', '<': '<', '=': '=', '>': '>', '|': '|', // Never converted: '~': '~', '≪': '«', '≫': '»', '─': '-', '$': '$', '"': '"' }, purePunctuation: { '、': '、', '。': '。', '・': '・', '「': '「', '」': '」' }, punctuation: {}, katakana: { ゛: '゙', ゜: '゚', ー: 'ー', ヴ: 'ヴ', ガ: 'ガ', ギ: 'ギ', グ: 'グ', ゲ: 'ゲ', ゴ: 'ゴ', ザ: 'ザ', ジ: 'ジ', ズ: 'ズ', ゼ: 'ゼ', ゾ: 'ゾ', ダ: 'ダ', ヂ: 'ヂ', ヅ: 'ヅ', デ: 'デ', ド: 'ド', バ: 'バ', パ: 'パ', ビ: 'ビ', ピ: 'ピ', ブ: 'ブ', プ: 'プ', ベ: 'ベ', ペ: 'ペ', ボ: 'ボ', ポ: 'ポ', ァ: 'ァ', ア: 'ア', ィ: 'ィ', イ: 'イ', ゥ: 'ゥ', ウ: 'ウ', ェ: 'ェ', エ: 'エ', ォ: 'ォ', オ: 'オ', カ: 'カ', キ: 'キ', ク: 'ク', ケ: 'ケ', コ: 'コ', サ: 'サ', シ: 'シ', ス: 'ス', セ: 'セ', ソ: 'ソ', タ: 'タ', チ: 'チ', ッ: 'ッ', ツ: 'ツ', テ: 'テ', ト: 'ト', ナ: 'ナ', ニ: 'ニ', ヌ: 'ヌ', ネ: 'ネ', ノ: 'ノ', ハ: 'ハ', ヒ: 'ヒ', フ: 'フ', ヘ: 'ヘ', ホ: 'ホ', マ: 'マ', ミ: 'ミ', ム: 'ム', メ: 'メ', モ: 'モ', ャ: 'ャ', ヤ: 'ヤ', ュ: 'ュ', ユ: 'ユ', ョ: 'ョ', ヨ: 'ヨ', ラ: 'ラ', リ: 'リ', ル: 'ル', レ: 'レ', ロ: 'ロ', ワ: 'ワ', ヲ: 'ヲ', ン: 'ン' } }, halfwidthToFullwidth: {} } const fixFullwidthKana = { ゝ゛: 'ゞ', ヽ゛: 'ヾ', う゛: 'ゔ', か゛: 'が', き゛: 'ぎ', く゛: 'ぐ', け゛: 'げ', こ゛: 'ご', さ゛: 'ざ', し゛: 'じ', す゛: 'ず', せ゛: 'ぜ', そ゛: 'ぞ', た゛: 'だ', ち゛: 'ぢ', つ゛: 'づ', て゛: 'で', と゛: 'ど', は゛: 'ば', は゜: 'ぱ', ひ゛: 'び', ひ゜: 'ぴ', ふ゛: 'ぶ', ふ゜: 'ぷ', へ゛: 'べ', へ゜: 'ぺ', ほ゛: 'ぼ', ほ゜: 'ぽ', っな: 'んな', っに: 'んに', っぬ: 'んぬ', っね: 'んね', っの: 'んの', ウ゛: 'ヴ', カ゛: 'ガ', キ゛: 'ギ', ク゛: 'グ', ケ゛: 'ゲ', コ゛: 'ゴ', サ゛: 'ザ', シ゛: 'ジ', ス゛: 'ズ', セ゛: 'ゼ', ソ゛: 'ゾ', タ゛: 'ダ', チ゛: 'ヂ', ツ゛: 'ヅ', テ゛: 'デ', ト゛: 'ド', ハ゛: 'バ', ハ゜: 'パ', ヒ゛: 'ビ', ヒ゜: 'ピ', フ゛: 'ブ', フ゜: 'プ', ヘ゛: 'ベ', ヘ゜: 'ペ', ホ゛: 'ボ', ホ゜: 'ポ', ッナ: 'ンナ', ッニ: 'ンニ', ッヌ: 'ンヌ', ッネ: 'ンネ', ッノ: 'ンノ' } const fixCompositeSymbolsTable = { '㋀': '1月', '㋁': '2月', '㋂': '3月', '㋃': '4月', '㋄': '5月', '㋅': '6月', '㋆': '7月', '㋇': '8月', '㋈': '9月', '㋉': '10月', '㋊': '11月', '㋋': '12月', '㏠': '1日', '㏡': '2日', '㏢': '3日', '㏣': '4日', '㏤': '5日', '㏥': '6日', '㏦': '7日', '㏧': '8日', '㏨': '9日', '㏩': '10日', '㏪': '11日', '㏫': '12日', '㏬': '13日', '㏭': '14日', '㏮': '15日', '㏯': '16日', '㏰': '17日', '㏱': '18日', '㏲': '19日', '㏳': '20日', '㏴': '21日', '㏵': '22日', '㏶': '23日', '㏷': '24日', '㏸': '25日', '㏹': '26日', '㏺': '27日', '㏻': '28日', '㏼': '29日', '㏽': '30日', '㏾': '31日', '㍘': '0点', '㍙': '1点', '㍚': '2点', '㍛': '3点', '㍜': '4点', '㍝': '5点', '㍞': '6点', '㍟': '7点', '㍠': '8点', '㍡': '9点', '㍢': '10点', '㍣': '11点', '㍤': '12点', '㍥': '13点', '㍦': '14点', '㍧': '15点', '㍨': '16点', '㍩': '17点', '㍪': '18点', '㍫': '19点', '㍬': '20点', '㍭': '21点', '㍮': '22点', '㍯': '23点', '㍰': '24点', '㍻': '平成', '㍼': '昭和', '㍽': '大正', '㍾': '明治', '㍿': '株式会社', '㌀': 'アパート', '㌁': 'アルファ', '㌂': 'アンペア', '㌃': 'アール', '㌄': 'イニング', '㌅': 'インチ', '㌆': 'ウオン', '㌇': 'エスクード', '㌈': 'エーカー', '㌉': 'オンス', '㌊': 'オーム', '㌋': 'カイリ', // 海里 '㌌': 'カラット', '㌍': 'カロリー', '㌎': 'ガロン', '㌏': 'ガンマ', '㌐': 'ギガ', '㌑': 'ギニー', '㌒': 'キュリー', '㌓': 'ギルダー', '㌔': 'キロ', '㌕': 'キログラム', '㌖': 'キロメートル', '㌗': 'キロワット', '㌘': 'グラム', '㌙': 'グラムトン', '㌚': 'クルゼイロ', '㌛': 'クローネ', '㌜': 'ケース', '㌝': 'コルナ', '㌞': 'コーポ', '㌟': 'サイクル', '㌠': 'サンチーム', '㌡': 'シリング', '㌢': 'センチ', '㌣': 'セント', '㌤': 'ダース', '㌥': 'デシ', '㌦': 'ドル', '㌧': 'トン', '㌨': 'ナノ', '㌩': 'ノット', '㌪': 'ハイツ', '㌫': 'パーセント', '㌬': 'パーツ', '㌭': 'バーレル', '㌮': 'ピアストル', '㌯': 'ピクル', '㌰': 'ピコ', '㌱': 'ビル', '㌲': 'ファラッド', '㌳': 'フィート', '㌴': 'ブッシェル', '㌵': 'フラン', '㌶': 'ヘクタール', '㌷': 'ペソ', '㌸': 'ペニヒ', '㌹': 'ヘルツ', '㌺': 'ペンス', '㌻': 'ページ', '㌼': 'ベータ', '㌽': 'ポイント', '㌾': 'ボルト', '㌿': 'ホン', '㍀': 'ポンド', '㍁': 'ホール', '㍂': 'ホーン', '㍃': 'マイクロ', '㍄': 'マイル', '㍅': 'マッハ', '㍆': 'マルク', '㍇': 'マンション', '㍈': 'ミクロン', '㍉': 'ミリ', '㍊': 'ミリバール', '㍋': 'メガ', '㍌': 'メガトン', '㍍': 'メートル', '㍎': 'ヤード', '㍏': 'ヤール', '㍐': 'ユアン', '㍑': 'リットル', '㍒': 'リラ', '㍓': 'ルピー', '㍔': 'ルーブル', '㍕': 'レム', '㍖': 'レントゲン', '㍗': 'ワット' } // punctuation is pure_punctuation conversionTables.fullwidthToHalfwidth.punctuation = merge( conversionTables.fullwidthToHalfwidth.symbol, conversionTables.fullwidthToHalfwidth.purePunctuation ) // Fill in the conversion tables with the flipped tables. conversionTables.halfwidthToFullwidth.alphabet = flip(conversionTables.fullwidthToHalfwidth.alphabet) conversionTables.halfwidthToFullwidth.numbers = flip(conversionTables.fullwidthToHalfwidth.numbers) conversionTables.halfwidthToFullwidth.symbol = flip(conversionTables.fullwidthToHalfwidth.symbol) conversionTables.halfwidthToFullwidth.purePunctuation = flip(conversionTables.fullwidthToHalfwidth.purePunctuation) conversionTables.halfwidthToFullwidth.punctuation = flip(conversionTables.fullwidthToHalfwidth.punctuation) conversionTables.halfwidthToFullwidth.katakana = flip(conversionTables.fullwidthToHalfwidth.katakana) // Build the normalization table. conversionTables.normalize = merge( conversionTables.fullwidthToHalfwidth.alphabet, conversionTables.fullwidthToHalfwidth.numbers, conversionTables.fullwidthToHalfwidth.symbol, conversionTables.halfwidthToFullwidth.purePunctuation, conversionTables.halfwidthToFullwidth.katakana ) class Converters { alphabetFH (str) { return replacer(conversionTables.fullwidthToHalfwidth.alphabet)(str) } numbersFH (str) { return replacer(conversionTables.fullwidthToHalfwidth.numbers)(str) } symbolFH (str) { return replacer(conversionTables.fullwidthToHalfwidth.symbol)(str) } purePunctuationFH (str) { return replacer(conversionTables.fullwidthToHalfwidth.purePunctuation)(str) } punctuationFH (str) { return replacer(conversionTables.fullwidthToHalfwidth.punctuation)(str) } katakanaFH (str) { return replacer(conversionTables.fullwidthToHalfwidth.katakana)(str) } static fixFullwidthKana (str) { return replacer(fixFullwidthKana)(str) } static normalize (str) { return replacer(conversionTables.normalize)(str) } alphabetHF (str) { return replacer(conversionTables.halfwidthToFullwidth.alphabet)(str) } numbersHF (str) { return replacer(conversionTables.halfwidthToFullwidth.numbers)(str) } symbolHF (str) { return replacer(conversionTables.halfwidthToFullwidth.symbol)(str) } purePunctuationHF (str) { return replacer(conversionTables.halfwidthToFullwidth.purePunctuation)(str) } punctuationHF (str) { return replacer(conversionTables.halfwidthToFullwidth.punctuation)(str) } katakanaHF (str) { return replacer(conversionTables.halfwidthToFullwidth.katakana)(str) } static fixCompositeSymbols (str) { return replacer(fixCompositeSymbolsTable)(str) } /** * Convert hiragana to fullwidth katakana. * According to http://jsperf.com/converting-japanese, these implementations are * faster than using lookup tables. * * @param {string} str A string. * @return {string} A string not containing hiragana. */ hiraganaToKatakana (str) { str = this.katakanaHF(str) str = Converters.fixFullwidthKana(str) str = str.replace(/ゝ/g, 'ヽ') str = str.replace(/ゞ/g, 'ヾ') // str = str.replace(/?/g, '𛀀'); // Letter archaic E str = str.replace(/[ぁ-ゖ]/g, function (str) { return String.fromCharCode(str.charCodeAt(0) + 96) }) return str } /** * Convert katakana to hiragana. * * @param {string} str A string. * @return {string} A string not containing katakana. */ katakanaToHiragana (str) { str = this.katakanaHF(str) str = Converters.fixFullwidthKana(str) str = str.replace(/ヽ/g, 'ゝ') str = str.replace(/ヾ/g, 'ゞ') // str = str.replace(/?/g, '𛀁'); // Letter archaic E str = str.replace(/[ァ-ヶ]/g, function (str) { return String.fromCharCode(str.charCodeAt(0) - 96) }) return str } } /** * Fix kana and apply the following processes; * * Replace repeat characters * * Alphabet to halfwidth * * Numbers to halfwidth * * Punctuation to fullwidth * * Katakana to fullwidth * * Fix fullwidth kana * * Replace composite symbols * * @param {string} str * @return {string} */ const normalizeJa = function (str) { // Replace repeat characters. str = str .replace(/(..)々々/g, '$1$1') .replace(/(.)々/g, '$1$1') str = Converters.normalize(str) str = Converters.fixFullwidthKana(str) // Replace composite symbols. str = Converters.fixCompositeSymbols(str) return str } exports.normalizeJa = normalizeJa exports.Converters = Converters ================================================ FILE: lib/natural/normalizers/normalizer_no.js ================================================ /* Copyright (c) 2014, Kristoffer Brabrand Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' /** * Remove commonly used diacritic marks from a string as these * are not used in a consistent manner. Leave only ä, ö, ü. */ const removeDiacritics = function (text) { text = text.replace('à', 'a') text = text.replace('À', 'A') text = text.replace('á', 'a') text = text.replace('Á', 'A') text = text.replace('â', 'a') text = text.replace('Â', 'A') text = text.replace('ç', 'c') text = text.replace('Ç', 'C') text = text.replace('è', 'e') text = text.replace('È', 'E') text = text.replace('é', 'e') text = text.replace('É', 'E') text = text.replace('ê', 'e') text = text.replace('Ê', 'E') text = text.replace('î', 'i') text = text.replace('Î', 'I') text = text.replace('ñ', 'n') text = text.replace('Ñ', 'N') text = text.replace('ó', 'o') text = text.replace('Ó', 'O') text = text.replace('ô', 'o') text = text.replace('Ô', 'O') text = text.replace('û', 'u') text = text.replace('Û', 'U') text = text.replace('š', 's') text = text.replace('Š', 'S') return text } // export the relevant stuff. exports.removeDiacritics = removeDiacritics ================================================ FILE: lib/natural/normalizers/normalizer_sv.js ================================================ /* Copyright (c) 2017, Dogan Yazar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' /** * Remove commonly used diacritic marks from a string as these * are not used in a consistent manner. Leave only ä, ö, å. */ const removeDiacritics = function (text) { text = text.replace('à', 'a') text = text.replace('À', 'A') text = text.replace('á', 'a') text = text.replace('Á', 'A') text = text.replace('è', 'e') text = text.replace('È', 'E') text = text.replace('é', 'e') text = text.replace('É', 'E') return text } // export the relevant stuff. exports.removeDiacritics = removeDiacritics ================================================ FILE: lib/natural/normalizers/remove_diacritics.js ================================================ /* Copyright (c) 2012, Alexy Maslennikov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' /** * Script to remove diacritics. Original source was taken from * http://lehelk.com/2011/05/06/script-to-remove-diacritics/ */ const diacriticsRemovalMap = [ { base: 'A', letters: /[\u0041\u24B6\uFF21\u00C0\u00C1\u00C2\u1EA6\u1EA4\u1EAA\u1EA8\u00C3\u0100\u0102\u1EB0\u1EAE\u1EB4\u1EB2\u0226\u01E0\u00C4\u01DE\u1EA2\u00C5\u01FA\u01CD\u0200\u0202\u1EA0\u1EAC\u1EB6\u1E00\u0104\u023A\u2C6F]/g }, { base: 'AA', letters: /[\uA732]/g }, { base: 'AE', letters: /[\u00C6\u01FC\u01E2]/g }, { base: 'AO', letters: /[\uA734]/g }, { base: 'AU', letters: /[\uA736]/g }, { base: 'AV', letters: /[\uA738\uA73A]/g }, { base: 'AY', letters: /[\uA73C]/g }, { base: 'B', letters: /[\u0042\u24B7\uFF22\u1E02\u1E04\u1E06\u0243\u0182\u0181]/g }, { base: 'C', letters: /[\u0043\u24B8\uFF23\u0106\u0108\u010A\u010C\u00C7\u1E08\u0187\u023B\uA73E]/g }, { base: 'D', letters: /[\u0044\u24B9\uFF24\u1E0A\u010E\u1E0C\u1E10\u1E12\u1E0E\u0110\u018B\u018A\u0189\uA779]/g }, { base: 'DZ', letters: /[\u01F1\u01C4]/g }, { base: 'Dz', letters: /[\u01F2\u01C5]/g }, { base: 'E', letters: /[\u0045\u24BA\uFF25\u00C8\u00C9\u00CA\u1EC0\u1EBE\u1EC4\u1EC2\u1EBC\u0112\u1E14\u1E16\u0114\u0116\u00CB\u1EBA\u011A\u0204\u0206\u1EB8\u1EC6\u0228\u1E1C\u0118\u1E18\u1E1A\u0190\u018E]/g }, { base: 'F', letters: /[\u0046\u24BB\uFF26\u1E1E\u0191\uA77B]/g }, { base: 'G', letters: /[\u0047\u24BC\uFF27\u01F4\u011C\u1E20\u011E\u0120\u01E6\u0122\u01E4\u0193\uA7A0\uA77D\uA77E]/g }, { base: 'H', letters: /[\u0048\u24BD\uFF28\u0124\u1E22\u1E26\u021E\u1E24\u1E28\u1E2A\u0126\u2C67\u2C75\uA78D]/g }, { base: 'I', letters: /[\u0049\u24BE\uFF29\u00CC\u00CD\u00CE\u0128\u012A\u012C\u0130\u00CF\u1E2E\u1EC8\u01CF\u0208\u020A\u1ECA\u012E\u1E2C\u0197]/g }, { base: 'J', letters: /[\u004A\u24BF\uFF2A\u0134\u0248]/g }, { base: 'K', letters: /[\u004B\u24C0\uFF2B\u1E30\u01E8\u1E32\u0136\u1E34\u0198\u2C69\uA740\uA742\uA744\uA7A2]/g }, { base: 'L', letters: /[\u004C\u24C1\uFF2C\u013F\u0139\u013D\u1E36\u1E38\u013B\u1E3C\u1E3A\u0141\u023D\u2C62\u2C60\uA748\uA746\uA780]/g }, { base: 'LJ', letters: /[\u01C7]/g }, { base: 'Lj', letters: /[\u01C8]/g }, { base: 'M', letters: /[\u004D\u24C2\uFF2D\u1E3E\u1E40\u1E42\u2C6E\u019C]/g }, { base: 'N', letters: /[\u004E\u24C3\uFF2E\u01F8\u0143\u00D1\u1E44\u0147\u1E46\u0145\u1E4A\u1E48\u0220\u019D\uA790\uA7A4]/g }, { base: 'NJ', letters: /[\u01CA]/g }, { base: 'Nj', letters: /[\u01CB]/g }, { base: 'O', letters: /[\u004F\u24C4\uFF2F\u00D2\u00D3\u00D4\u1ED2\u1ED0\u1ED6\u1ED4\u00D5\u1E4C\u022C\u1E4E\u014C\u1E50\u1E52\u014E\u022E\u0230\u00D6\u022A\u1ECE\u0150\u01D1\u020C\u020E\u01A0\u1EDC\u1EDA\u1EE0\u1EDE\u1EE2\u1ECC\u1ED8\u01EA\u01EC\u00D8\u01FE\u0186\u019F\uA74A\uA74C]/g }, { base: 'OE', letters: /[\u0152]/g }, { base: 'OI', letters: /[\u01A2]/g }, { base: 'OO', letters: /[\uA74E]/g }, { base: 'OU', letters: /[\u0222]/g }, { base: 'P', letters: /[\u0050\u24C5\uFF30\u1E54\u1E56\u01A4\u2C63\uA750\uA752\uA754]/g }, { base: 'Q', letters: /[\u0051\u24C6\uFF31\uA756\uA758\u024A]/g }, { base: 'R', letters: /[\u0052\u24C7\uFF32\u0154\u1E58\u0158\u0210\u0212\u1E5A\u1E5C\u0156\u1E5E\u024C\u2C64\uA75A\uA7A6\uA782]/g }, { base: 'S', letters: /[\u0053\u24C8\uFF33\u1E9E\u015A\u1E64\u015C\u1E60\u0160\u1E66\u1E62\u1E68\u0218\u015E\u2C7E\uA7A8\uA784]/g }, { base: 'T', letters: /[\u0054\u24C9\uFF34\u1E6A\u0164\u1E6C\u021A\u0162\u1E70\u1E6E\u0166\u01AC\u01AE\u023E\uA786]/g }, { base: 'TZ', letters: /[\uA728]/g }, { base: 'U', letters: /[\u0055\u24CA\uFF35\u00D9\u00DA\u00DB\u0168\u1E78\u016A\u1E7A\u016C\u00DC\u01DB\u01D7\u01D5\u01D9\u1EE6\u016E\u0170\u01D3\u0214\u0216\u01AF\u1EEA\u1EE8\u1EEE\u1EEC\u1EF0\u1EE4\u1E72\u0172\u1E76\u1E74\u0244]/g }, { base: 'V', letters: /[\u0056\u24CB\uFF36\u1E7C\u1E7E\u01B2\uA75E\u0245]/g }, { base: 'VY', letters: /[\uA760]/g }, { base: 'W', letters: /[\u0057\u24CC\uFF37\u1E80\u1E82\u0174\u1E86\u1E84\u1E88\u2C72]/g }, { base: 'X', letters: /[\u0058\u24CD\uFF38\u1E8A\u1E8C]/g }, { base: 'Y', letters: /[\u0059\u24CE\uFF39\u1EF2\u00DD\u0176\u1EF8\u0232\u1E8E\u0178\u1EF6\u1EF4\u01B3\u024E\u1EFE]/g }, { base: 'Z', letters: /[\u005A\u24CF\uFF3A\u0179\u1E90\u017B\u017D\u1E92\u1E94\u01B5\u0224\u2C7F\u2C6B\uA762]/g }, { base: 'a', letters: /[\u0061\u24D0\uFF41\u1E9A\u00E0\u00E1\u00E2\u1EA7\u1EA5\u1EAB\u1EA9\u00E3\u0101\u0103\u1EB1\u1EAF\u1EB5\u1EB3\u0227\u01E1\u00E4\u01DF\u1EA3\u00E5\u01FB\u01CE\u0201\u0203\u1EA1\u1EAD\u1EB7\u1E01\u0105\u2C65\u0250]/g }, { base: 'aa', letters: /[\uA733]/g }, { base: 'ae', letters: /[\u00E6\u01FD\u01E3]/g }, { base: 'ao', letters: /[\uA735]/g }, { base: 'au', letters: /[\uA737]/g }, { base: 'av', letters: /[\uA739\uA73B]/g }, { base: 'ay', letters: /[\uA73D]/g }, { base: 'b', letters: /[\u0062\u24D1\uFF42\u1E03\u1E05\u1E07\u0180\u0183\u0253]/g }, { base: 'c', letters: /[\u0063\u24D2\uFF43\u0107\u0109\u010B\u010D\u00E7\u1E09\u0188\u023C\uA73F\u2184]/g }, { base: 'd', letters: /[\u0064\u24D3\uFF44\u1E0B\u010F\u1E0D\u1E11\u1E13\u1E0F\u0111\u018C\u0256\u0257\uA77A]/g }, { base: 'dz', letters: /[\u01F3\u01C6]/g }, { base: 'e', letters: /[\u0065\u24D4\uFF45\u00E8\u00E9\u00EA\u1EC1\u1EBF\u1EC5\u1EC3\u1EBD\u0113\u1E15\u1E17\u0115\u0117\u00EB\u1EBB\u011B\u0205\u0207\u1EB9\u1EC7\u0229\u1E1D\u0119\u1E19\u1E1B\u0247\u025B\u01DD]/g }, { base: 'f', letters: /[\u0066\u24D5\uFF46\u1E1F\u0192\uA77C]/g }, { base: 'g', letters: /[\u0067\u24D6\uFF47\u01F5\u011D\u1E21\u011F\u0121\u01E7\u0123\u01E5\u0260\uA7A1\u1D79\uA77F]/g }, { base: 'h', letters: /[\u0068\u24D7\uFF48\u0125\u1E23\u1E27\u021F\u1E25\u1E29\u1E2B\u1E96\u0127\u2C68\u2C76\u0265]/g }, { base: 'hv', letters: /[\u0195]/g }, { base: 'i', letters: /[\u0069\u24D8\uFF49\u00EC\u00ED\u00EE\u0129\u012B\u012D\u00EF\u1E2F\u1EC9\u01D0\u0209\u020B\u1ECB\u012F\u1E2D\u0268\u0131]/g }, { base: 'j', letters: /[\u006A\u24D9\uFF4A\u0135\u01F0\u0249]/g }, { base: 'k', letters: /[\u006B\u24DA\uFF4B\u1E31\u01E9\u1E33\u0137\u1E35\u0199\u2C6A\uA741\uA743\uA745\uA7A3]/g }, { base: 'l', letters: /[\u006C\u24DB\uFF4C\u0140\u013A\u013E\u1E37\u1E39\u013C\u1E3D\u1E3B\u017F\u0142\u019A\u026B\u2C61\uA749\uA781\uA747]/g }, { base: 'lj', letters: /[\u01C9]/g }, { base: 'm', letters: /[\u006D\u24DC\uFF4D\u1E3F\u1E41\u1E43\u0271\u026F]/g }, { base: 'n', letters: /[\u006E\u24DD\uFF4E\u01F9\u0144\u00F1\u1E45\u0148\u1E47\u0146\u1E4B\u1E49\u019E\u0272\u0149\uA791\uA7A5]/g }, { base: 'nj', letters: /[\u01CC]/g }, { base: 'o', letters: /[\u006F\u24DE\uFF4F\u00F2\u00F3\u00F4\u1ED3\u1ED1\u1ED7\u1ED5\u00F5\u1E4D\u022D\u1E4F\u014D\u1E51\u1E53\u014F\u022F\u0231\u00F6\u022B\u1ECF\u0151\u01D2\u020D\u020F\u01A1\u1EDD\u1EDB\u1EE1\u1EDF\u1EE3\u1ECD\u1ED9\u01EB\u01ED\u00F8\u01FF\u0254\uA74B\uA74D\u0275]/g }, { base: 'oe', letters: /[\u0153]/g }, { base: 'oi', letters: /[\u01A3]/g }, { base: 'ou', letters: /[\u0223]/g }, { base: 'oo', letters: /[\uA74F]/g }, { base: 'p', letters: /[\u0070\u24DF\uFF50\u1E55\u1E57\u01A5\u1D7D\uA751\uA753\uA755]/g }, { base: 'q', letters: /[\u0071\u24E0\uFF51\u024B\uA757\uA759]/g }, { base: 'r', letters: /[\u0072\u24E1\uFF52\u0155\u1E59\u0159\u0211\u0213\u1E5B\u1E5D\u0157\u1E5F\u024D\u027D\uA75B\uA7A7\uA783]/g }, { base: 's', letters: /[\u0073\u24E2\uFF53\u00DF\u015B\u1E65\u015D\u1E61\u0161\u1E67\u1E63\u1E69\u0219\u015F\u023F\uA7A9\uA785\u1E9B]/g }, { base: 't', letters: /[\u0074\u24E3\uFF54\u1E6B\u1E97\u0165\u1E6D\u021B\u0163\u1E71\u1E6F\u0167\u01AD\u0288\u2C66\uA787]/g }, { base: 'tz', letters: /[\uA729]/g }, { base: 'u', letters: /[\u0075\u24E4\uFF55\u00F9\u00FA\u00FB\u0169\u1E79\u016B\u1E7B\u016D\u00FC\u01DC\u01D8\u01D6\u01DA\u1EE7\u016F\u0171\u01D4\u0215\u0217\u01B0\u1EEB\u1EE9\u1EEF\u1EED\u1EF1\u1EE5\u1E73\u0173\u1E77\u1E75\u0289]/g }, { base: 'v', letters: /[\u0076\u24E5\uFF56\u1E7D\u1E7F\u028B\uA75F\u028C]/g }, { base: 'vy', letters: /[\uA761]/g }, { base: 'w', letters: /[\u0077\u24E6\uFF57\u1E81\u1E83\u0175\u1E87\u1E85\u1E98\u1E89\u2C73]/g }, { base: 'x', letters: /[\u0078\u24E7\uFF58\u1E8B\u1E8D]/g }, { base: 'y', letters: /[\u0079\u24E8\uFF59\u1EF3\u00FD\u0177\u1EF9\u0233\u1E8F\u00FF\u1EF7\u1E99\u1EF5\u01B4\u024F\u1EFF]/g }, { base: 'z', letters: /[\u007A\u24E9\uFF5A\u017A\u1E91\u017C\u017E\u1E93\u1E95\u01B6\u0225\u0240\u2C6C\uA763]/g } ] module.exports = function (str) { const rules = diacriticsRemovalMap for (let i = 0; i < rules.length; i++) { str = str.replace(rules[i].letters, rules[i].base) } return str } ================================================ FILE: lib/natural/phonetics/dm_soundex.js ================================================ /* Copyright (c) 2012, Alexy Maslenninkov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Phonetic = require('./phonetic') /* * Daitch-Mokotoff Soundex Coding * * The Daitch-Mokotoff Soundex System was created by Randy Daitch and Gary * Mokotoff of the Jewish Genealogical Society because they concluded the system * developed by Robert Russell in 1918, and in use today by the U.S. National * Archives and Records Administration (NARA) does not apply well to many Slavic * and Yiddish surnames. It also includes refinements that are independent of * ethnic considerations. * * The rules for converting surnames into D-M Code numbers are listed below. * They are followed by the coding chart. * * 1. Names are coded to six digits, each digit representing a sound listed in * the coding chart (below). * * 2. When a name lacks enough coded sounds for six digits, use zeros to fill to * six digits. GOLDEN which has only four coded sounds [G-L-D-N] is coded as * 583600. * * 3. The letters A, E, I, O, U, J, and Y are always coded at the beginning of a * name as in Alpert 087930. In any other situation, they are ignored except * when two of them form a pair and the pair comes before a vowel, as in Breuer * 791900 but not Freud. * * 4. The letter H is coded at the beginning of a name, as in Haber 579000, or * preceding a vowel, as in Manheim 665600, otherwise it is not coded. * * 5. When adjacent sounds can combine to form a larger sound, they are given * the code number of the larger sound. Mintz which is not coded MIN-T-Z but * MIN-TZ 664000. * * 6. When adjacent letters have the same code number, they are coded as one * sound, as in TOPF, which is not coded TO-P-F 377000 but TO-PF 370000. * Exceptions to this rule are the letter combinations MN and NM, whose letters * are coded separately, as in Kleinman, which is coded 586660 not 586600. * * 7. When a surname consists or more than one word, it is coded as if one word, * such as Ben Aron which is treated as Benaron. * * 8. Several letter and letter combinations pose the problem that they may * sound in one of two ways. The letter and letter combinations CH, CK, C, J, * and RS are assigned two possible code numbers. * * For more info, see http://www.jewishgen.org/InfoFiles/soundex.html */ /** * D-M transformation table in the form of finite-state machine. * Every element of the table having member with zero index represents * legal FSM state; every non-zero key is the transition rule. * * Every legal state comprises tree values chosen according to the position * of the letter combination in the word: * 0: start of a word; * 1: before a vowel; * 2: any other situation. */ /* jscpd:ignore-start */ const codes = { A: { 0: [0, -1, -1], I: [[0, 1, -1]], J: [[0, 1, -1]], Y: [[0, 1, -1]], U: [[0, 7, -1]] }, B: [[7, 7, 7]], C: { 0: [5, 5, 5], Z: { 0: [4, 4, 4], S: [[4, 4, 4]] }, S: { 0: [4, 4, 4], Z: [[4, 4, 4]] }, K: [[5, 5, 5], [45, 45, 45]], H: { 0: [5, 5, 5], S: [[5, 54, 54]] } }, D: { 0: [3, 3, 3], T: [[3, 3, 3]], Z: { 0: [4, 4, 4], H: [[4, 4, 4]], S: [[4, 4, 4]] }, S: { 0: [4, 4, 4], H: [[4, 4, 4]], Z: [[4, 4, 4]] }, R: { S: [[4, 4, 4]], Z: [[4, 4, 4]] } }, E: { 0: [0, -1, -1], I: [[0, 1, -1]], J: [[0, 1, -1]], Y: [[0, 1, -1]], U: [[1, 1, -1]], W: [[1, 1, -1]] }, F: { 0: [7, 7, 7], B: [[7, 7, 7]] }, G: [[5, 5, 5]], H: [[5, 5, -1]], I: { 0: [0, -1, -1], A: [[1, -1, -1]], E: [[1, -1, -1]], O: [[1, -1, -1]], U: [[1, -1, -1]] }, J: [[4, 4, 4]], K: { 0: [5, 5, 5], H: [[5, 5, 5]], S: [[5, 54, 54]] }, L: [[8, 8, 8]], M: { 0: [6, 6, 6], N: [[66, 66, 66]] }, N: { 0: [6, 6, 6], M: [[66, 66, 66]] }, O: { 0: [0, -1, -1], I: [[0, 1, -1]], J: [[0, 1, -1]], Y: [[0, 1, -1]] }, P: { 0: [7, 7, 7], F: [[7, 7, 7]], H: [[7, 7, 7]] }, Q: [[5, 5, 5]], R: { 0: [9, 9, 9], Z: [[94, 94, 94], [94, 94, 94]], S: [[94, 94, 94], [94, 94, 94]] }, S: { 0: [4, 4, 4], Z: { 0: [4, 4, 4], T: [[2, 43, 43]], C: { Z: [[2, 4, 4]], S: [[2, 4, 4]] }, D: [[2, 43, 43]] }, D: [[2, 43, 43]], T: { 0: [2, 43, 43], R: { Z: [[2, 4, 4]], S: [[2, 4, 4]] }, C: { H: [[2, 4, 4]] }, S: { H: [[2, 4, 4]], C: { H: [[2, 4, 4]] } } }, C: { 0: [2, 4, 4], H: { 0: [4, 4, 4], T: { 0: [2, 43, 43], S: { C: { H: [[2, 4, 4]] }, H: [[2, 4, 4]] }, C: { H: [[2, 4, 4]] } }, D: [[2, 43, 43]] } }, H: { 0: [4, 4, 4], T: { 0: [2, 43, 43], C: { H: [[2, 4, 4]] }, S: { H: [[2, 4, 4]] } }, C: { H: [[2, 4, 4]] }, D: [[2, 43, 43]] } }, T: { 0: [3, 3, 3], C: { 0: [4, 4, 4], H: [[4, 4, 4]] }, Z: { 0: [4, 4, 4], S: [[4, 4, 4]] }, S: { 0: [4, 4, 4], Z: [[4, 4, 4]], H: [[4, 4, 4]], C: { H: [[4, 4, 4]] } }, T: { S: { 0: [4, 4, 4], Z: [[4, 4, 4]], C: { H: [[4, 4, 4]] } }, C: { H: [[4, 4, 4]] }, Z: [[4, 4, 4]] }, H: [[3, 3, 3]], R: { Z: [[4, 4, 4]], S: [[4, 4, 4]] } }, U: { 0: [0, -1, -1], E: [[0, -1, -1]], I: [[0, 1, -1]], J: [[0, 1, -1]], Y: [[0, 1, -1]] }, V: [[7, 7, 7]], W: [[7, 7, 7]], X: [[5, 54, 54]], Y: [[1, -1, -1]], Z: { 0: [4, 4, 4], D: { 0: [2, 43, 43], Z: { 0: [2, 4, 4], H: [[2, 4, 4]] } }, H: { 0: [4, 4, 4], D: { 0: [2, 43, 43], Z: { H: [[2, 4, 4]] } } }, S: { 0: [4, 4, 4], H: [[4, 4, 4]], C: { H: [[4, 4, 4]] } } } } /* jscpd:ignore-end */ class SoundExDM extends Phonetic { process (word, codeLength) { codeLength = codeLength || 6 word = word.toUpperCase() let output = '' let pos = 0; let lastCode = -1 while (pos < word.length) { const substr = word.slice(pos) const rules = this.findRules(substr) let code if (pos === 0) { // at the beginning of the word code = rules.mapping[0] } else if (substr[rules.length] && this.findRules(substr[rules.length]).mapping[0] === 0) { // before a vowel code = rules.mapping[1] } else { // any other situation code = rules.mapping[2] } if ((code !== -1) && (code !== lastCode)) output += code lastCode = code pos += rules.length } return this.normalizeLength(output, codeLength) } findRules (str) { let state = codes[str[0]] let legalState = state || [[-1, -1, -1]] let charsInvolved = 1 for (let offs = 1; offs < str.length; offs++) { if (!state || !state[str[offs]]) break state = state[str[offs]] if (state[0]) { legalState = state charsInvolved = offs + 1 } } return { length: charsInvolved, mapping: legalState[0] } } /** * Pad right with zeroes or cut excess symbols to fit length */ normalizeLength (token, length) { length = length || 6 if (token.length < length) { token += (new Array(length - token.length + 1)).join('0') } return token.slice(0, length) } } module.exports = SoundExDM ================================================ FILE: lib/natural/phonetics/double_metaphone.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Phonetic = require('./phonetic') class DoubleMetaphone extends Phonetic { isVowel (c) { return c && c.match(/[aeiouy]/i) } process (token, maxLength) { // For the functions that live here in the process method const self = this token = token.toUpperCase() let primary = ''; let secondary = '' let pos = 0 maxLength = maxLength || 32 const san = (token.substring(0, 3) === 'SAN') const startsWithVowel = this.isVowel(token[0]) const slavoGermanic = token.match(/(W|K|CZ|WITZ)/) if (subMatch(0, 2, ['GN', 'KN', 'PN', 'WR', 'PS'])) { pos++ } while (pos < token.length) { switch (token[pos]) { case 'A': case 'E': case 'I': case 'O': case 'U': case 'Y': case 'Ê': case 'É': case 'À': if (pos === 0) { add('A') } break case 'B': addCompressedDouble('B', 'P') break case 'C': handleC() break case 'Ç': add('S') break case 'D': handleD() break case 'F': case 'K': case 'N': addCompressedDouble(token[pos]) break case 'G': handleG() break case 'H': handleH() break case 'J': handleJ() break case 'L': handleL() break case 'M': handleM() break case 'Ñ': add('N') break case 'P': handleP() break case 'Q': addCompressedDouble('Q', 'K') break case 'R': handleR() break case 'S': handleS() break case 'T': handleT() break case 'V': addCompressedDouble('V', 'F') break case 'W': handleW() break case 'X': handleX() break case 'Z': handleZ() break } if (primary.length >= maxLength && secondary.length >= maxLength) { break } pos++ } return [truncate(primary, maxLength), truncate(secondary, maxLength)] function subMatch (startOffset, stopOffset, terms) { return subMatchAbsolute(pos + startOffset, pos + stopOffset, terms) } function subMatchAbsolute (startOffset, stopOffset, terms) { return terms.indexOf(token.substring(startOffset, stopOffset)) > -1 } function truncate (string, length) { if (string.length >= length) { string = string.substring(0, length) } return string } function addSecondary (primaryAppendage, secondaryAppendage) { primary += primaryAppendage secondary += secondaryAppendage } function add (primaryAppendage) { addSecondary(primaryAppendage, primaryAppendage) } function addCompressedDouble (c, encoded) { if (token[pos + 1] === c) { pos++ } add(encoded || c) } function handleC () { if ((pos >= 1 && !self.isVowel(token[pos - 2]) && token[pos - 1] === 'A' && token[pos + 1] === 'H' && token[pos + 2] !== 'I') || subMatch(-2, 4, ['BACHER', 'MACHER'])) { add('K') pos++ } else if (pos === 0 && token.substring(1, 6) === 'EASAR') { add('S') add('S') add('R') pos += 6 } else if (token.substring(pos + 1, pos + 4) === 'HIA') { add('K') pos++ } else if (token[pos + 1] === 'H') { if (pos > 0 && token.substring(pos + 2, pos + 4) === 'AE') { addSecondary('K', 'X') pos++ } else if (pos === 0 && (subMatch(1, 6, ['HARAC', 'HARIS']) || subMatch(1, 4, ['HOR', 'HUM', 'HIA', 'HEM'])) && token.substring(pos + 1, pos + 5) !== 'HORE') { add('K') pos++ } else { if ((subMatchAbsolute(0, 3, ['VAN', 'VON']) || token.substring(0, 3) === 'SCH') || subMatch(-2, 4, ['ORCHES', 'ARCHIT', 'ORCHID']) || subMatch(2, 3, ['T', 'S']) || ((subMatch(-1, 0, ['A', 'O', 'U', 'E']) || pos === 0) && subMatch(2, 3, ['B', 'F', 'H', 'L', 'M', 'N', 'R', 'V', 'W']))) { add('K') } else if (pos > 0) { if (token.substring(0, 2) === 'MC') { add('K') } else { addSecondary('X', 'K') } } else { add('X') } pos++ } } else if (token.substring(pos, pos + 2) === 'CZ' && token.substring(pos - 2, pos + 1) !== 'WICZ') { addSecondary('S', 'X') pos++ } else if (token.substring(pos, pos + 3) === 'CIA') { add('X') pos += 2 } else if (token[pos + 1] === 'C' && pos !== 1 && token[0] !== 'M') { if (['I', 'E', 'H'].indexOf(token[pos + 2]) > -1 && token.substring(pos + 2, pos + 4) !== 'HU') { if ((pos === 1 && token[pos - 1] === 'A') || subMatch(-1, 4, ['UCCEE', 'UCCES'])) { add('KS') } else { add('X') } pos += 2 } else { add('K') pos++ } } else if (['K', 'G', 'Q'].indexOf(token[pos + 1]) > -1) { add('K') pos++ } else if (['E', 'I', 'Y'].indexOf(token[pos + 1]) > -1) { if (subMatch(1, 3, ['IA', 'IE', 'IO'])) { addSecondary('S', 'X') } else { add('S') } pos++ } else { add('K') if (token[pos + 1] === ' ' && ['C', 'Q', 'G'].indexOf(token[pos + 2])) { pos += 2 } else if (['C', 'K', 'Q'].indexOf(token[pos + 1]) > -1 && !subMatch(1, 3, ['CE', 'CI'])) { pos++ } } } function handleD () { if (token[pos + 1] === 'G') { if (['I', 'E', 'Y'].indexOf(token[pos + 2]) > -1) { add('J') pos += 2 } else { add('TK') pos++ } } else if (token[pos + 1] === 'T') { add('T') pos++ } else { addCompressedDouble('D', 'T') } } function handleG () { if (token[pos + 1] === 'H') { if (pos > 0 && !self.isVowel(token[pos - 1])) { add('K') pos++ } else if (pos === 0) { if (token[pos + 2] === 'I') { add('J') } else { add('K') } pos++ } else if (pos > 1 && (['B', 'H', 'D'].indexOf(token[pos - 2]) > -1 || ['B', 'H', 'D'].indexOf(token[pos - 3]) > -1 || ['B', 'H'].indexOf(token[pos - 4]) > -1)) { pos++ } else { if (pos > 2 && token[pos - 1] === 'U' && ['C', 'G', 'L', 'R', 'T'].indexOf(token[pos - 3]) > -1) { add('F') } else if (token[pos - 1] !== 'I') { add('K') } pos++ } } else if (token[pos + 1] === 'N') { if (pos === 1 && startsWithVowel && !slavoGermanic) { addSecondary('KN', 'N') } else { if (token.substring(pos + 2, pos + 4) !== 'EY' && (token[pos + 1] !== 'Y' && !slavoGermanic)) { addSecondary('N', 'KN') } else { add('KN') } } pos++ } else if (token.substring(pos + 1, pos + 3) === 'LI' && !slavoGermanic) { addSecondary('KL', 'L') pos++ } else if (pos === 0 && (token[pos + 1] === 'Y' || subMatch(1, 3, ['ES', 'EP', 'EB', 'EL', 'EY', 'IB', 'IL', 'IN', 'IE', 'EI', 'ER']))) { addSecondary('K', 'J') } else { addCompressedDouble('G', 'K') } } function handleH () { // keep if starts a word or is surrounded by vowels if ((pos === 0 || self.isVowel(token[pos - 1])) && self.isVowel(token[pos + 1])) { add('H') pos++ } } function handleJ () { const jose = (token.substring(pos + 1, pos + 4) === 'OSE') if (san || jose) { if ((pos === 0 && token[pos + 4] === ' ') || san) { add('H') } else { add('J', 'H') } } else { if (pos === 0/* && !jose */) { addSecondary('J', 'A') } else if (self.isVowel(token[pos - 1]) && !slavoGermanic && (token[pos + 1] === 'A' || token[pos + 1] === 'O')) { addSecondary('J', 'H') } else if (pos === token.length - 1) { addSecondary('J', ' ') } else { addCompressedDouble('J') } } } function handleL () { if (token[pos + 1] === 'L') { if (pos === token.length - 3 && ( subMatch(-1, 3, ['ILLO', 'ILLA', 'ALLE']) || ( token.substring(pos - 1, pos + 3) === 'ALLE' && (subMatch(-2, -1, ['AS', 'OS']) > -1 || ['A', 'O'].indexOf(token[token.length - 1]) > -1)))) { addSecondary('L', '') pos++ return } pos++ } add('L') } function handleM () { addCompressedDouble('M') if (token[pos - 1] === 'U' && token[pos + 1] === 'B' && ((pos === token.length - 2 || token.substring(pos + 2, pos + 4) === 'ER'))) { pos++ } } function handleP () { if (token[pos + 1] === 'H') { add('F') pos++ } else { addCompressedDouble('P') if (token[pos + 1] === 'B') { pos++ } } } function handleR () { if (pos === token.length - 1 && !slavoGermanic && token.substring(pos - 2, pos) === 'IE' && !subMatch(-4, -3, ['ME', 'MA'])) { addSecondary('', 'R') } else { addCompressedDouble('R') } } function handleS () { if (pos === 0 && token.substring(0, 5) === 'SUGAR') { addSecondary('X', 'S') } else if (token[pos + 1] === 'H') { if (subMatch(2, 5, ['EIM', 'OEK', 'OLM', 'OLZ'])) { add('S') } else { add('X') } pos++ } else if (subMatch(1, 3, ['IO', 'IA'])) { if (slavoGermanic) { add('S') } else { addSecondary('S', 'X') } pos++ } else if ((pos === 0 && ['M', 'N', 'L', 'W'].indexOf(token[pos + 1]) > -1) || token[pos + 1] === 'Z') { addSecondary('S', 'X') if (token[pos + 1] === 'Z') { pos++ } } else if (token.substring(pos, pos + 2) === 'SC') { if (token[pos + 2] === 'H') { if (subMatch(3, 5, ['ER', 'EN'])) { addSecondary('X', 'SK') } else if (subMatch(3, 5, ['OO', 'UY', 'ED', 'EM'])) { add('SK') } else if (pos === 0 && !self.isVowel(token[3]) && token[3] !== 'W') { addSecondary('X', 'S') } else { add('X') } } else if (['I', 'E', 'Y'].indexOf(token[pos + 2]) > -1) { add('S') } else { add('SK') } pos += 2 } else if (pos === token.length - 1 && subMatch(-2, 0, ['AI', 'OI'])) { addSecondary('', 'S') } else if (token[pos + 1] !== 'L' && ( token[pos - 1] !== 'A' && token[pos - 1] !== 'I')) { addCompressedDouble('S') if (token[pos + 1] === 'Z') { pos++ } } } function handleT () { if (token.substring(pos + 1, pos + 4) === 'ION') { add('XN') pos += 3 } else if (subMatch(1, 3, ['IA', 'CH'])) { add('X') pos += 2 } else if (token[pos + 1] === 'H' || token.substring(1, 2) === 'TH') { if (subMatch(2, 4, ['OM', 'AM']) || ['VAN ', 'VON '].indexOf(token.substring(0, 4)) > -1 || token.substring(0, 3) === 'SCH') { add('T') } else { addSecondary('0', 'T') } pos++ } else { addCompressedDouble('T') if (token[pos + 1] === 'D') { pos++ } } } function handleX () { if (pos === 0) { add('S') } else if (!(pos === token.length - 1 && (['IAU', 'EAU', 'IEU'].indexOf(token.substring(pos - 3, pos)) > -1 || ['AU', 'OU'].indexOf(token.substring(pos - 2, pos)) > -1))) { add('KS') } } function handleW () { if (pos === 0) { if (token[1] === 'H') { add('A') } else if (self.isVowel(token[1])) { addSecondary('A', 'F') } } else if (subMatch(-1, 4, ['EWSKI', 'EWSKY', 'OWSKI', 'OWSKY']) || token.substring(0, 3) === 'SCH' || (pos === token.length - 1 && self.isVowel(token[pos - 1]))) { addSecondary('', 'F') pos++ } else if (['ICZ', 'ITZ'].indexOf(token.substring(pos + 1, pos + 4)) > -1) { addSecondary('TS', 'FX') pos += 3 } } function handleZ () { if (token[pos + 1] === 'H') { add('J') pos++ } else if (subMatch(1, 3, ['ZO', 'ZI', 'ZA']) || (slavoGermanic && pos > 0 && token[pos - 1] !== 'T')) { addSecondary('S', 'TS') pos++ } else { addCompressedDouble('Z', 'S') } } } compare (stringA, stringB) { const encodingsA = this.process(stringA) const encodingsB = this.process(stringB) return encodingsA[0] === encodingsB[0] || encodingsA[1] === encodingsB[1] } } module.exports = DoubleMetaphone ================================================ FILE: lib/natural/phonetics/index.d.ts ================================================ /* Copyright (c) 2022, Dylan R. E. Moonfire , Emily Marigold Klassen , Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ export class Phonetic { compare (stringA: string, stringB: string): boolean tokenizeAndPhoneticize (str: string, phoneticsProcessor: Phonetic, keepStops: boolean): T } export class Metaphone extends Phonetic { dedup (token: string): string dropInitialLetters (token: string): string dropBafterMAtEnd (token: string): string cTransform (token: string): string dTransform (token: string): string dropG (token: string): string transformG (token: string): string dropH (token: string): string transformCK (token: string): string transformPH (token: string): string transformQ (token: string): string transformS (token: string): string transformT (token: string): string dropT (token: string): string transformV (token: string): string transformWH (token: string): string dropW (token: string): string transformX (token: string): string dropY (token: string): string transformZ (token: string): string dropVowels (token: string): string process (token: string, maxLength?: number): string } export class SoundEx extends Phonetic { process (token: string, maxLength?: number): string transformLipps (token: string): string transformThroats (token: string): string transformToungue (token: string): string transformL (token: string): string transformHum (token: string): string transformR (token: string): string condense (token: string): string padRight0 (token: string): string transform (token: string): string } export class DoubleMetaphone extends Phonetic { process (token: string, maxLength?: number): string[] isVowel (c: string): string | RegExpMatchArray | null } export class SoundExDM extends Phonetic { process (word: string, codeLength?: number): string } ================================================ FILE: lib/natural/phonetics/index.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' exports.SoundEx = require('./soundex') exports.Metaphone = require('./metaphone') exports.DoubleMetaphone = require('./double_metaphone') exports.SoundExDM = require('./dm_soundex') ================================================ FILE: lib/natural/phonetics/metaphone.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Phonetic = require('./phonetic') class Metaphone extends Phonetic { dedup (token) { return token.replace(/([^c])\1/g, '$1') } dropInitialLetters (token) { if (token.match(/^(kn|gn|pn|ae|wr)/)) { return token.substr(1, token.length - 1) } return token } dropBafterMAtEnd (token) { return token.replace(/mb$/, 'm') } cTransform (token) { token = token.replace(/([^s]|^)(c)(h)/g, '$1x$3').trim() token = token.replace(/cia/g, 'xia') token = token.replace(/c(i|e|y)/g, 's$1') token = token.replace(/c/g, 'k') return token } dTransform (token) { token = token.replace(/d(ge|gy|gi)/g, 'j$1') token = token.replace(/d/g, 't') return token } dropG (token) { token = token.replace(/gh(^$|[^aeiou])/g, 'h$1') token = token.replace(/g(n|ned)$/g, '$1') return token } transformG (token) { token = token.replace(/gh/g, 'f') token = token.replace(/([^g]|^)(g)(i|e|y)/g, '$1j$3') token = token.replace(/gg/g, 'g') token = token.replace(/g/g, 'k') return token } dropH (token) { return token.replace(/([aeiou])h([^aeiou]|$)/g, '$1$2') } transformCK (token) { return token.replace(/ck/g, 'k') } transformPH (token) { return token.replace(/ph/g, 'f') } transformQ (token) { return token.replace(/q/g, 'k') } transformS (token) { return token.replace(/s(h|io|ia)/g, 'x$1') } transformT (token) { token = token.replace(/t(ia|io)/g, 'x$1') token = token.replace(/th/, '0') return token } dropT (token) { return token.replace(/tch/g, 'ch') } transformV (token) { return token.replace(/v/g, 'f') } transformWH (token) { return token.replace(/^wh/, 'w') } dropW (token) { return token.replace(/w([^aeiou]|$)/g, '$1') } transformX (token) { token = token.replace(/^x/, 's') token = token.replace(/x/g, 'ks') return token } dropY (token) { return token.replace(/y([^aeiou]|$)/g, '$1') } transformZ (token) { return token.replace(/z/, 's') } dropVowels (token) { return token.charAt(0) + token.substr(1, token.length).replace(/[aeiou]/g, '') } process (token, maxLength) { const maxLengthNew = maxLength || 32 token = token.toLowerCase() token = this.dedup(token) token = this.dropInitialLetters(token) token = this.dropBafterMAtEnd(token) token = this.transformCK(token) token = this.cTransform(token) token = this.dTransform(token) token = this.dropG(token) token = this.transformG(token) token = this.dropH(token) token = this.transformPH(token) token = this.transformQ(token) token = this.transformS(token) token = this.transformX(token) token = this.transformT(token) token = this.dropT(token) token = this.transformV(token) token = this.transformWH(token) token = this.dropW(token) token = this.dropY(token) token = this.transformZ(token) token = this.dropVowels(token) token.toUpperCase() if (token.length >= maxLengthNew) { token = token.substring(0, maxLengthNew) } return token.toUpperCase() } } module.exports = Metaphone ================================================ FILE: lib/natural/phonetics/phonetic.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const stopwords = require('../util/stopwords') const Tokenizer = require('../tokenizers/aggressive_tokenizer') const tokenizer = new Tokenizer() class Phonetic { compare (stringA, stringB) { return this.process(stringA) === this.process(stringB) } tokenizeAndPhoneticize (str, phoneticsProcessor, keepStops) { const phoneticizedTokens = [] tokenizer.tokenize(str).forEach(function (token) { if (keepStops || stopwords.words.indexOf(token) < 0) { phoneticizedTokens.push(phoneticsProcessor.process(token)) } }) return phoneticizedTokens } } module.exports = Phonetic ================================================ FILE: lib/natural/phonetics/soundex.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Phonetic = require('./phonetic') class SoundEx extends Phonetic { process (token, maxLength) { token = token.toLowerCase() let transformed = this.condense(this.transform(token.substr(1, token.length - 1))) // anything that isn't a digit goes // deal with duplicate INITIAL consonant SOUNDS transformed = transformed.replace(new RegExp('^' + this.transform(token.charAt(0))), '') return token.charAt(0).toUpperCase() + this.padRight0(transformed.replace(/\D/g, '')).substr(0, (maxLength && maxLength - 1) || 3) } transformLipps (token) { return token.replace(/[bfpv]/g, '1') } transformThroats (token) { return token.replace(/[cgjkqsxz]/g, '2') } transformToungue (token) { return token.replace(/[dt]/g, '3') } transformL (token) { return token.replace(/l/g, '4') } transformHum (token) { return token.replace(/[mn]/g, '5') } transformR (token) { return token.replace(/r/g, '6') } condense (token) { return token.replace(/(\d)?\1+/g, '$1') } padRight0 (token) { if (token.length < 4) { return token + Array(4 - token.length).join('0') } else { return token } } transform (token) { return this.transformLipps(this.transformThroats( this.transformToungue(this.transformL(this.transformHum(this.transformR(token)))))) } } module.exports = SoundEx ================================================ FILE: lib/natural/sentiment/Basque/senticon_eu.json ================================================ { "adeitasun": { "pos": "n", "pol": "0.447", "std": "0.216" }, "adorea eman": { "pos": "v", "pol": "0.55", "std": "0.24" }, "adoretu": { "pos": "v", "pol": "0.325", "std": "0.24" }, "alaitasun": { "pos": "n", "pol": "0.5", "std": "0.236" }, "alaitu": { "pos": "v", "pol": "0.575", "std": "0.257" }, "alegeratu": { "pos": "v", "pol": "0.725", "std": "0.224" }, "arindu": { "pos": "v", "pol": "0.338", "std": "0.334" }, "ase": { "pos": "v", "pol": "0.25", "std": "0.357" }, "asebete": { "pos": "v", "pol": "0.25", "std": "0.357" }, "atsegin": { "pos": "n", "pol": "0.4", "std": "0.222" }, "atsegintasun": { "pos": "n", "pol": "0.708", "std": "0.243" }, "baikortasun": { "pos": "n", "pol": "0.375", "std": "0.177" }, "begirune": { "pos": "n", "pol": "0.431", "std": "0.203" }, "berotasun": { "pos": "n", "pol": "0.313", "std": "0.32" }, "bihotz eman": { "pos": "v", "pol": "0.438", "std": "0.161" }, "borondate on": { "pos": "n", "pol": "0.438", "std": "0.217" }, "bozkariatu": { "pos": "v", "pol": "0.75", "std": "0.354" }, "bozkario": { "pos": "n", "pol": "0.75", "std": "0.088" }, "bozkariotu": { "pos": "v", "pol": "0.875", "std": "0.177" }, "ederretsi": { "pos": "v", "pol": "0.675", "std": "0.259" }, "erosotasun": { "pos": "n", "pol": "0.35", "std": "0.112" }, "estimu": { "pos": "n", "pol": "0.344", "std": "0.157" }, "gogobete": { "pos": "v", "pol": "0.75", "std": "0.265" }, "gozamen": { "pos": "n", "pol": "0.469", "std": "0.211" }, "gozatu": { "pos": "v", "pol": "0.336", "std": "0.344" }, "grazia": { "pos": "n", "pol": "0.35", "std": "0.143" }, "gurtza": { "pos": "n", "pol": "0.25", "std": "0.185" }, "konfiantza": { "pos": "n", "pol": "0.429", "std": "0.257" }, "lilura": { "pos": "n", "pol": "0.25", "std": "0.134" }, "maitasun": { "pos": "n", "pol": "0.4", "std": "0.177" }, "maitatu": { "pos": "v", "pol": "0.625", "std": "0.442" }, "maite izan": { "pos": "v", "pol": "0.469", "std": "0.298" }, "maite ukan": { "pos": "v", "pol": "0.625", "std": "0.442" }, "mira": { "pos": "n", "pol": "0.313", "std": "0.27" }, "mirespen": { "pos": "n", "pol": "0.325", "std": "0.24" }, "miretsi": { "pos": "v", "pol": "0.375", "std": "0.344" }, "on": { "pos": "n", "pol": "0.375", "std": "0.42" }, "onura": { "pos": "n", "pol": "0.4", "std": "0.381" }, "oparotasun": { "pos": "n", "pol": "0.521", "std": "0.371" }, "optimismo": { "pos": "n", "pol": "0.375", "std": "0.177" }, "pagutu": { "pos": "v", "pol": "0.813", "std": "0.239" }, "poz": { "pos": "n", "pol": "0.438", "std": "0.228" }, "poz eman": { "pos": "v", "pol": "0.5", "std": "0.331" }, "poz hartu": { "pos": "v", "pol": "0.8", "std": "0.274" }, "poztasun": { "pos": "n", "pol": "0.425", "std": "0.237" }, "poztu": { "pos": "v", "pol": "0.641", "std": "0.267" }, "segurantza": { "pos": "n", "pol": "0.344", "std": "0.315" }, "txalotu": { "pos": "v", "pol": "0.396", "std": "0.2" }, "ugaritasun": { "pos": "n", "pol": "0.337", "std": "0.342" }, "zaletasun": { "pos": "n", "pol": "0.396", "std": "0.348" }, "zorion": { "pos": "n", "pol": "0.525", "std": "0.259" }, "agresibitate": { "pos": "n", "pol": "-0.281", "std": "0.072" }, "aiher izan": { "pos": "v", "pol": "-0.625", "std": "0.088" }, "akitu": { "pos": "v", "pol": "-0.475", "std": "0.112" }, "amorratu": { "pos": "v", "pol": "-0.425", "std": "0.068" }, "ankerkeria": { "pos": "n", "pol": "-0.304", "std": "0.112" }, "arbuiatu": { "pos": "v", "pol": "-0.365", "std": "0.129" }, "artegatu": { "pos": "v", "pol": "-0.275", "std": "0.105" }, "asaldatu": { "pos": "v", "pol": "-0.26", "std": "0.084" }, "atsekabe": { "pos": "n", "pol": "-0.5", "std": "0.125" }, "atsekabetu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aurkakotasun": { "pos": "n", "pol": "-0.25", "std": "0.102" }, "ausiki": { "pos": "n", "pol": "-0.325", "std": "0.105" }, "aztoramen": { "pos": "n", "pol": "-0.271", "std": "0.172" }, "beldur": { "pos": "n", "pol": "-0.325", "std": "0.177" }, "bihozgabekeria": { "pos": "n", "pol": "-0.297", "std": "0.134" }, "bihozmin": { "pos": "n", "pol": "-0.562", "std": "0.102" }, "damu": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "damutasun": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "depresio": { "pos": "n", "pol": "-0.3", "std": "0.088" }, "destaina egin": { "pos": "v", "pol": "-0.35", "std": "0.163" }, "eraso": { "pos": "n", "pol": "-0.295", "std": "0.088" }, "erdeinatu": { "pos": "v", "pol": "-0.425", "std": "0.168" }, "ernegatu": { "pos": "v", "pol": "-0.281", "std": "0.088" }, "erresumin": { "pos": "n", "pol": "-0.406", "std": "0.125" }, "erru": { "pos": "n", "pol": "-0.65", "std": "0.068" }, "erruki izan": { "pos": "v", "pol": "-0.687", "std": "0.0" }, "errukitu": { "pos": "v", "pol": "-0.687", "std": "0.0" }, "etsaitasun": { "pos": "n", "pol": "-0.3", "std": "0.105" }, "etsiarazi": { "pos": "v", "pol": "-0.437", "std": "0.354" }, "ezinikusi": { "pos": "n", "pol": "-0.375", "std": "0.063" }, "gaitzetsi": { "pos": "v", "pol": "-0.361", "std": "0.116" }, "gogait egin": { "pos": "v", "pol": "-0.562", "std": "0.072" }, "gogait eragin": { "pos": "v", "pol": "-0.406", "std": "0.161" }, "gogaitu": { "pos": "v", "pol": "-0.306", "std": "0.167" }, "goibeldu": { "pos": "v", "pol": "-0.594", "std": "0.12" }, "goibeltasun": { "pos": "n", "pol": "-0.357", "std": "0.202" }, "gorrotatu": { "pos": "v", "pol": "-0.667", "std": "0.072" }, "gorroto": { "pos": "n", "pol": "-0.5", "std": "0.112" }, "gorroto izan": { "pos": "v", "pol": "-0.625", "std": "0.088" }, "gupida": { "pos": "n", "pol": "-0.333", "std": "0.102" }, "gupidatu": { "pos": "v", "pol": "-0.687", "std": "0.0" }, "gutxietsi": { "pos": "v", "pol": "-0.604", "std": "0.153" }, "haserrealdi": { "pos": "n", "pol": "-0.312", "std": "0.079" }, "haserretu": { "pos": "v", "pol": "-0.375", "std": "0.099" }, "higuin": { "pos": "n", "pol": "-0.344", "std": "0.072" }, "higuin izan": { "pos": "v", "pol": "-0.625", "std": "0.088" }, "hoztasun": { "pos": "n", "pol": "-0.292", "std": "0.137" }, "iraindu": { "pos": "v", "pol": "-0.321", "std": "0.144" }, "kezkatu": { "pos": "v", "pol": "-0.25", "std": "0.099" }, "kikildu": { "pos": "v", "pol": "-0.5", "std": "0.125" }, "koldarkeria": { "pos": "n", "pol": "-0.475", "std": "0.19" }, "krudelkeria": { "pos": "n", "pol": "-0.531", "std": "0.063" }, "laidoztatu": { "pos": "v", "pol": "-0.425", "std": "0.112" }, "larritasun": { "pos": "n", "pol": "-0.25", "std": "0.138" }, "lotsarazi": { "pos": "v", "pol": "-0.25", "std": "0.144" }, "mespretxu": { "pos": "n", "pol": "-0.406", "std": "0.12" }, "mesprezatu": { "pos": "v", "pol": "-0.719", "std": "0.0" }, "mesprezu": { "pos": "n", "pol": "-0.333", "std": "0.2" }, "min": { "pos": "n", "pol": "-0.473", "std": "0.104" }, "mindu": { "pos": "v", "pol": "-0.357", "std": "0.197" }, "molestatu": { "pos": "v", "pol": "-0.5", "std": "0.144" }, "nahigabe": { "pos": "n", "pol": "-0.452", "std": "0.116" }, "nahigabetu": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "narda": { "pos": "n", "pol": "-0.344", "std": "0.072" }, "nardatu": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "nazka": { "pos": "n", "pol": "-0.275", "std": "0.105" }, "nazka eman": { "pos": "v", "pol": "-0.469", "std": "0.063" }, "nazkatu": { "pos": "v", "pol": "-0.333", "std": "0.123" }, "nekatu": { "pos": "v", "pol": "-0.35", "std": "0.105" }, "neke": { "pos": "n", "pol": "-0.321", "std": "0.125" }, "pena": { "pos": "n", "pol": "-0.518", "std": "0.112" }, "samin": { "pos": "n", "pol": "-0.5", "std": "0.063" }, "samindu": { "pos": "v", "pol": "-0.536", "std": "0.191" }, "samindura": { "pos": "n", "pol": "-0.719", "std": "0.12" }, "sufrimendu": { "pos": "n", "pol": "-0.562", "std": "0.102" }, "sumin": { "pos": "n", "pol": "-0.339", "std": "0.139" }, "sumindu": { "pos": "v", "pol": "-0.384", "std": "0.094" }, "sumindura": { "pos": "n", "pol": "-0.297", "std": "0.116" }, "traba egin": { "pos": "v", "pol": "-0.437", "std": "0.125" }, "tristura": { "pos": "n", "pol": "-0.437", "std": "0.277" }, "umore txar": { "pos": "n", "pol": "-0.469", "std": "0.12" }, "urduritu": { "pos": "v", "pol": "-0.45", "std": "0.088" }, "urrikaldu": { "pos": "v", "pol": "-0.687", "std": "0.0" }, "urrikitu": { "pos": "v", "pol": "-0.687", "std": "0.0" }, "zauri": { "pos": "n", "pol": "-0.406", "std": "0.063" }, "zorigaitz": { "pos": "n", "pol": "-0.275", "std": "0.056" }, "zoritxar": { "pos": "n", "pol": "-0.312", "std": "0.065" }, "adorazio": { "pos": "n", "pol": "0.5", "std": "0.0" }, "amodio": { "pos": "n", "pol": "0.292", "std": "0.315" }, "arnasa eman": { "pos": "v", "pol": "0.542", "std": "0.125" }, "atsegin egin": { "pos": "v", "pol": "0.5", "std": "0.0" }, "atsegin eman": { "pos": "v", "pol": "0.625", "std": "0.088" }, "atsegin izan": { "pos": "v", "pol": "0.5", "std": "0.0" }, "barregarritasun": { "pos": "n", "pol": "0.5", "std": "0.0" }, "barrez lehertu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "begikotasun": { "pos": "n", "pol": "0.438", "std": "0.442" }, "benefizentzia": { "pos": "n", "pol": "0.5", "std": "0.439" }, "bihotzean ukitu": { "pos": "v", "pol": "0.25", "std": "0.144" }, "bozkariatze": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bozkarioz jauzi egin": { "pos": "v", "pol": "0.25", "std": "0.0" }, "burua berotu": { "pos": "v", "pol": "0.625", "std": "0.0" }, "erasan": { "pos": "v", "pol": "0.25", "std": "0.144" }, "errealizazio": { "pos": "n", "pol": "0.25", "std": "0.088" }, "esker on": { "pos": "n", "pol": "0.292", "std": "0.375" }, "eskuzartak jo": { "pos": "v", "pol": "0.25", "std": "0.0" }, "euforia": { "pos": "n", "pol": "0.458", "std": "0.125" }, "gogo bizi": { "pos": "n", "pol": "0.688", "std": "0.442" }, "gogoa berotu": { "pos": "v", "pol": "0.583", "std": "0.315" }, "gogobetetasun": { "pos": "n", "pol": "0.375", "std": "0.265" }, "gogoko izan": { "pos": "v", "pol": "0.5", "std": "0.0" }, "gustuko izan": { "pos": "v", "pol": "0.5", "std": "0.0" }, "irrikortasun": { "pos": "n", "pol": "0.5", "std": "0.0" }, "joritasun": { "pos": "n", "pol": "0.958", "std": "0.072" }, "kemendu": { "pos": "v", "pol": "1.0", "std": "0.0" }, "laguntasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "laket izan": { "pos": "v", "pol": "0.5", "std": "0.0" }, "ongi": { "pos": "n", "pol": "0.938", "std": "0.088" }, "onginahi": { "pos": "n", "pol": "0.563", "std": "0.354" }, "ongintza": { "pos": "n", "pol": "0.5", "std": "0.439" }, "ongura": { "pos": "n", "pol": "0.563", "std": "0.354" }, "ontasun": { "pos": "n", "pol": "0.625", "std": "0.442" }, "poz handi": { "pos": "n", "pol": "1.0", "std": "0.0" }, "printze": { "pos": "n", "pol": "0.25", "std": "0.354" }, "txaloak jo": { "pos": "v", "pol": "0.333", "std": "0.144" }, "zoratze": { "pos": "n", "pol": "0.375", "std": "0.0" }, "zoriontasun": { "pos": "n", "pol": "0.625", "std": "0.26" }, "adore falta": { "pos": "n", "pol": "-0.562", "std": "0.177" }, "adoregabetu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "ahalke izan": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "ahalketu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "aiherkunde": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aintzat ez hartu": { "pos": "v", "pol": "-0.5", "std": "0.265" }, "ala": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "aldaratu": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "alertatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "alhadura": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "antipatia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "areriotasun": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "aztoratu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "babesgabetasun": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "beligerantzia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bihozgabetu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "burtzoratu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "buruan eduki": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "buruan erabili": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "buruan ibili": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "damu izan": { "pos": "v", "pol": "-0.562", "std": "0.0" }, "damutu": { "pos": "v", "pol": "-0.562", "std": "0.0" }, "dolutu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "durduzatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "enbarazu egin": { "pos": "v", "pol": "-0.812", "std": "0.0" }, "erne jarri": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "erruduntasun": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "eskatima": { "pos": "n", "pol": "-0.437", "std": "0.177" }, "esker gaizto": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "esker txar": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "eskergabekeria": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "espantu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "estiratu": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "etsimen": { "pos": "n", "pol": "-0.292", "std": "0.26" }, "ezin ikusi": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "frustrazio": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "gaizkinahi": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "gizagabetasun": { "pos": "n", "pol": "-0.333", "std": "0.144" }, "gogo falta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gogoa kendu": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "gogogabetu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "goragalea izan": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "goralarria izan": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "harri eta zur utzi": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "haserrekortasun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "higuina eman": { "pos": "v", "pol": "-0.375", "std": "0.072" }, "higuindu": { "pos": "v", "pol": "-0.375", "std": "0.072" }, "higuingarri gertatu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "histeria": { "pos": "n", "pol": "-0.375", "std": "0.125" }, "iaurri txar": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "izu": { "pos": "n", "pol": "-0.292", "std": "0.217" }, "izu-ikara": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "izualdi": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "jasanezin": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "jelosia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jeloskortasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kasketaldi": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "kontrizio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "laidotu": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "laztura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lotsa izan": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "lotsatu": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "lur jotze": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "maite-damu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malenkonia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "melankolia": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "misantropia": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "misoginia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "muturtu": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "narda eman": { "pos": "v", "pol": "-0.375", "std": "0.072" }, "negarraldi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nor bere onetik irten": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "odolberotasun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "oinaze": { "pos": "n", "pol": "-0.5", "std": "0.072" }, "oldarkortasun": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "onezko damu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oztopo egin": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "pazientziarik ez": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "penatu": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pesimismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "segurtasun-gabezi": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "segurtasun-gabezia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "segurtasunik ez": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "sukar": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "suminaldi": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "suminkortasun": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "susto": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "toleatu": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "tormentatu": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "tormentu": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "tristatu": { "pos": "v", "pol": "-0.562", "std": "0.088" }, "tristezia": { "pos": "n", "pol": "-0.417", "std": "0.331" }, "unatu": { "pos": "v", "pol": "-0.333", "std": "0.125" }, "uxatu": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "uzkurkeria": { "pos": "n", "pol": "-0.625", "std": "0.265" }, "ziurtasun-gabezi": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "ziurtasun-gabezia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ziurtasunik ez": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "zorabiatu": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "zur eta lur utzi": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "zurbiltasun": { "pos": "n", "pol": "-0.25", "std": "0.144" }, "agurgarritasun": { "pos": "n", "pol": "0.875", "std": "0.0" }, "aldarte on": { "pos": "n", "pol": "1.0", "std": "0.0" }, "animatze": { "pos": "n", "pol": "0.875", "std": "0.0" }, "errespetagarritasun": { "pos": "n", "pol": "0.875", "std": "0.0" }, "errugabetu": { "pos": "v", "pol": "0.875", "std": "0.0" }, "gauza miragarri": { "pos": "n", "pol": "1.0", "std": "0.0" }, "interesatu": { "pos": "v", "pol": "1.0", "std": "0.0" }, "maula-egile": { "pos": "n", "pol": "1.0", "std": "0.0" }, "ondra": { "pos": "n", "pol": "0.875", "std": "0.177" }, "abaildu": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "alegia egin": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "alegiak egin": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "arbindu": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "argalgune": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "argalune": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "arretarik ez": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "atmosferiko": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "atrofia": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "atzeratasun": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "atzipetu": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "bekozko": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "beltzuri": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "dolumin": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "egoismo": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "elastikotasun ez": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "enerbazio": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "eraginik ez": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "eraile": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "errekerimendu": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "erreskatatu": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "gehiegizko erabilera": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "gogogabezia": { "pos": "n", "pol": "-0.812", "std": "0.088" }, "infernu": { "pos": "n", "pol": "-0.85", "std": "0.0" }, "inkario": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "inkonformismo": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "istripu": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "itxura egite": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "itxurak egin": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "jarraitasunik ez": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "jota egon": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "kontrabandista": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "malkoak isuri": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "narrio": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "negar egin": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "nerbio-krisi": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "parasito atmosferiko": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "plantak egin": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "plantak egite": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "putakeria": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "tronpatu": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "ziria sartu": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "barre egin": { "pos": "v", "pol": "0.75", "std": "0.0" }, "begira": { "pos": "n", "pol": "0.75", "std": "0.0" }, "burlatu": { "pos": "v", "pol": "0.75", "std": "0.0" }, "desilusionatu": { "pos": "v", "pol": "0.75", "std": "0.0" }, "etekina atera": { "pos": "v", "pol": "0.75", "std": "0.0" }, "etekina lortu": { "pos": "v", "pol": "0.75", "std": "0.0" }, "gorteiatze": { "pos": "n", "pol": "0.75", "std": "0.0" }, "gozarazi": { "pos": "v", "pol": "0.75", "std": "0.0" }, "iludioa galdu": { "pos": "v", "pol": "0.75", "std": "0.0" }, "ilusioa galarazi": { "pos": "v", "pol": "0.75", "std": "0.0" }, "konformismo": { "pos": "n", "pol": "0.75", "std": "0.0" }, "kongruentzia": { "pos": "n", "pol": "0.75", "std": "0.0" }, "meritu": { "pos": "n", "pol": "0.75", "std": "0.191" }, "oparoaldi": { "pos": "n", "pol": "0.75", "std": "0.354" }, "pekamen": { "pos": "n", "pol": "0.75", "std": "0.0" }, "plastikotasun": { "pos": "n", "pol": "0.75", "std": "0.0" }, "trufatu": { "pos": "v", "pol": "0.75", "std": "0.0" }, "utopia": { "pos": "n", "pol": "0.75", "std": "0.0" }, "abortatu": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "amorrua eman": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "astakeria": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "bakuntasun": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "baldarkeria": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "basatasun": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "baxua egin": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "bereak eta asto beltzarenak esan": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "biziki nahi izan": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "bortizki eraso": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "desondratu": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "desoreka": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "duineztasun": { "pos": "n", "pol": "-0.75", "std": "0.088" }, "duintasunik ez": { "pos": "n", "pol": "-0.75", "std": "0.088" }, "eri egon": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "eri izan": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "eskizofreniko": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "etorkizun-sen gabe": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "ez eduki": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "ez ukan": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "falta ukan": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "fedegabetasun": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "gaixo egon": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "gaixo izan": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "gaixorik egon": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "gaixorik izan": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "gogor eraso": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "gogorkeria": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "gogorki eraso": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "gogorkiro eraso": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "haurra galdu": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "heldugabe": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "hilaurtu": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "hipokondria": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "hondagarritasun": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "itsutasun": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "kaudimen-gabezia": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "kaudimenik ez": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "lehor": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "moldakaiztasun": { "pos": "n", "pol": "-0.75", "std": "0.177" }, "munstrokeria": { "pos": "n", "pol": "-0.75", "std": "0.088" }, "ohorea kendu": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "onarpen ez": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "ondoezik egon": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "ondoezik izan": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "ondugabe": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "ospe-galtze": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "pasibotasun": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "punitu": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "suntsigarritasun": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "tamaldu": { "pos": "v", "pol": "-0.75", "std": "0.072" }, "tentelkeria": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "tolerantziarik ez": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "toxikotasun": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "umatu gabe": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "umildu": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "zuriak eta beltzak esan": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "abegitsua izate": { "pos": "n", "pol": "0.625", "std": "0.0" }, "abilezia": { "pos": "n", "pol": "0.594", "std": "0.213" }, "adikortasun": { "pos": "n", "pol": "0.625", "std": "0.0" }, "baikor": { "pos": "n", "pol": "0.625", "std": "0.0" }, "begiramen": { "pos": "n", "pol": "0.525", "std": "0.259" }, "begirati": { "pos": "v", "pol": "0.625", "std": "0.0" }, "betegingarritasun": { "pos": "n", "pol": "0.625", "std": "0.0" }, "disoziatu": { "pos": "v", "pol": "0.625", "std": "0.0" }, "egiatasun": { "pos": "n", "pol": "0.625", "std": "0.088" }, "egokitasun": { "pos": "n", "pol": "0.525", "std": "0.124" }, "erremedio": { "pos": "n", "pol": "0.625", "std": "0.0" }, "errepresentatu": { "pos": "v", "pol": "0.625", "std": "0.0" }, "famatu": { "pos": "v", "pol": "0.625", "std": "0.331" }, "gai izan": { "pos": "v", "pol": "0.625", "std": "0.0" }, "gainditze": { "pos": "n", "pol": "0.625", "std": "0.0" }, "gaitu": { "pos": "v", "pol": "0.563", "std": "0.088" }, "garaipen": { "pos": "n", "pol": "0.625", "std": "0.0" }, "garaitza": { "pos": "n", "pol": "0.625", "std": "0.0" }, "goraipatu": { "pos": "v", "pol": "0.594", "std": "0.277" }, "gorteiatu": { "pos": "v", "pol": "0.625", "std": "0.0" }, "hobegarritasun": { "pos": "n", "pol": "0.625", "std": "0.0" }, "hobetze": { "pos": "n", "pol": "0.625", "std": "0.0" }, "inportantzia": { "pos": "n", "pol": "0.625", "std": "0.0" }, "laketasuna": { "pos": "n", "pol": "0.625", "std": "0.0" }, "merezimendu": { "pos": "n", "pol": "0.625", "std": "0.313" }, "mira egin": { "pos": "v", "pol": "0.625", "std": "0.0" }, "miragarritasun": { "pos": "n", "pol": "0.625", "std": "0.0" }, "optimista": { "pos": "n", "pol": "0.625", "std": "0.0" }, "osasun": { "pos": "n", "pol": "0.625", "std": "0.0" }, "pertsona on": { "pos": "n", "pol": "0.625", "std": "0.0" }, "probetxu": { "pos": "n", "pol": "0.625", "std": "0.177" }, "sormen": { "pos": "n", "pol": "0.625", "std": "0.0" }, "trebezia": { "pos": "n", "pol": "0.594", "std": "0.289" }, "txartatu": { "pos": "v", "pol": "0.542", "std": "0.382" }, "txiste": { "pos": "n", "pol": "0.625", "std": "0.0" }, "zori on": { "pos": "n", "pol": "0.625", "std": "0.0" }, "adiakatu": { "pos": "v", "pol": "-0.6", "std": "0.068" }, "agira egin": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "agirakatu": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "agonia": { "pos": "n", "pol": "-0.583", "std": "0.072" }, "ahidura": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "aho zabalik utzi": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "aleatoriotasun": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "amarrukeria": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "apaldu": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "apatia": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "asimetria": { "pos": "n", "pol": "-0.687", "std": "0.0" }, "atelekatu": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "atonia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "atrofiatu": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "atzera egin": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "atzeraka egin": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "auhendatu": { "pos": "v", "pol": "-0.687", "std": "0.072" }, "axolagabetasun": { "pos": "n", "pol": "-0.583", "std": "0.144" }, "azpigarapen": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "baliogabetu": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "bazter-nahasle": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "beheititu": { "pos": "v", "pol": "-0.583", "std": "0.144" }, "beligerante": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "beteezintasun": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "bihozgabetasun": { "pos": "n", "pol": "-0.625", "std": "0.088" }, "deboilatu": { "pos": "v", "pol": "-0.542", "std": "0.051" }, "deitoratu": { "pos": "v", "pol": "-0.575", "std": "0.163" }, "demanda egin": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "dialektismo": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "dismenorrea": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "dolu": { "pos": "n", "pol": "-0.625", "std": "0.144" }, "egonkortasunik ez": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "ekaitz": { "pos": "n", "pol": "-0.542", "std": "0.072" }, "elegia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "enboskada": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "endredatzaile": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "erremin": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "eskandalizatu": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "estuasun": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "ez-ezagutza": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "ezatsegintasun": { "pos": "n", "pol": "-0.625", "std": "0.177" }, "ezegokitasun": { "pos": "n", "pol": "-0.708", "std": "0.072" }, "ezjakintasun": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "gaitasuna galdu": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "galbide": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "galtzagorri": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "garaikar": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "gatazkati": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "gauzaez": { "pos": "n", "pol": "-0.562", "std": "0.0" }, "gerra hotz": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "gogogabe": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "gosete": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "gris ilun": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "haluzinazio": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "harrapagailu": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "hiltzaile": { "pos": "n", "pol": "-0.625", "std": "0.072" }, "histerismo": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "ilegaltzat jo": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "indarrik ez": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "inki-manka": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "inperfekzio": { "pos": "n", "pol": "-0.562", "std": "0.265" }, "ipurtats": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "iskanbila-sortzaile": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "istilu-sortzaile": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "itsumen": { "pos": "n", "pol": "-0.542", "std": "0.072" }, "jalkin erradioaktibo": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "jasankortasun": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "kabroi": { "pos": "n", "pol": "-0.625", "std": "0.072" }, "kirats": { "pos": "n", "pol": "-0.667", "std": "0.0" }, "kolpe batez itxi": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "konorte-gabezia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "kriminal": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "lapurreta egin": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "legez kanpo utzi": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "legez kanpokotzat jo": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "leporatze": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "lur jo": { "pos": "v", "pol": "-0.583", "std": "0.0" }, "mikaztasun": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "min emaile": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "min hartu": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "muzin": { "pos": "n", "pol": "-0.625", "std": "0.088" }, "nagitasun": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "narraskeria": { "pos": "n", "pol": "-0.667", "std": "0.0" }, "ondoezik jarri": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "pairamendu": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "paraplegia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "purrustada": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "sasikume": { "pos": "n", "pol": "-0.542", "std": "0.072" }, "sentikortasunik ez": { "pos": "n", "pol": "-0.562", "std": "0.177" }, "sufritu": { "pos": "v", "pol": "-0.583", "std": "0.0" }, "tiranizidio": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "trauskilkeria": { "pos": "n", "pol": "-0.625", "std": "0.088" }, "txistuka hasi": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "zailtasun": { "pos": "n", "pol": "-0.604", "std": "0.151" }, "zailtasunez adierazi": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "zailtasunez erran": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "zailtasunez esan": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "zirrimarra": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "abegi": { "pos": "n", "pol": "0.5", "std": "0.0" }, "adimen-osasun": { "pos": "n", "pol": "0.5", "std": "0.0" }, "adimendu": { "pos": "n", "pol": "0.5", "std": "0.0" }, "adiskidetze": { "pos": "n", "pol": "0.5", "std": "0.354" }, "aprobetxatu": { "pos": "v", "pol": "0.5", "std": "0.0" }, "araupetu": { "pos": "v", "pol": "0.5", "std": "0.0" }, "atsegin hartu": { "pos": "v", "pol": "0.5", "std": "0.191" }, "balioa handitu": { "pos": "v", "pol": "0.5", "std": "0.0" }, "balioa igoarazi": { "pos": "v", "pol": "0.5", "std": "0.0" }, "barneko gaixo": { "pos": "n", "pol": "0.5", "std": "0.0" }, "barneko paziente": { "pos": "n", "pol": "0.5", "std": "0.0" }, "bedeinkatu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bere burua eskaini": { "pos": "v", "pol": "0.5", "std": "0.0" }, "bizi": { "pos": "v", "pol": "0.5", "std": "0.0" }, "dohaintza egin": { "pos": "v", "pol": "0.5", "std": "0.0" }, "edertasun": { "pos": "n", "pol": "0.5", "std": "0.0" }, "erregularizatu": { "pos": "v", "pol": "0.5", "std": "0.0" }, "esgrima": { "pos": "n", "pol": "0.5", "std": "0.0" }, "espezializazio": { "pos": "n", "pol": "0.5", "std": "0.0" }, "espiritualtasun": { "pos": "n", "pol": "0.5", "std": "0.0" }, "etekin": { "pos": "n", "pol": "0.5", "std": "0.354" }, "eufonia": { "pos": "n", "pol": "0.5", "std": "0.0" }, "eugenesia": { "pos": "n", "pol": "0.5", "std": "0.0" }, "fama eman": { "pos": "v", "pol": "0.5", "std": "0.0" }, "fede eman": { "pos": "v", "pol": "0.5", "std": "0.0" }, "garrantzi": { "pos": "n", "pol": "0.5", "std": "0.0" }, "gehiagotu": { "pos": "v", "pol": "0.5", "std": "0.0" }, "gogatze": { "pos": "n", "pol": "0.5", "std": "0.0" }, "gorakari": { "pos": "n", "pol": "0.5", "std": "0.0" }, "goranzko espekulatzaile": { "pos": "n", "pol": "0.5", "std": "0.0" }, "goreneko puntu": { "pos": "n", "pol": "0.5", "std": "0.0" }, "goresle": { "pos": "n", "pol": "0.5", "std": "0.0" }, "goretsi": { "pos": "v", "pol": "0.5", "std": "0.286" }, "grapaz lotu": { "pos": "v", "pol": "0.5", "std": "0.0" }, "herri-": { "pos": "a", "pol": "0.5", "std": "0.0" }, "hezte": { "pos": "n", "pol": "0.5", "std": "0.0" }, "homeopatia": { "pos": "n", "pol": "0.5", "std": "0.0" }, "integratze": { "pos": "n", "pol": "0.5", "std": "0.0" }, "integrazio": { "pos": "n", "pol": "0.5", "std": "0.0" }, "interesa izan": { "pos": "v", "pol": "0.5", "std": "0.619" }, "interesgarri": { "pos": "n", "pol": "0.5", "std": "0.0" }, "interesgarri izan": { "pos": "v", "pol": "0.5", "std": "0.619" }, "izenemaile": { "pos": "n", "pol": "0.5", "std": "0.0" }, "jakin-min": { "pos": "n", "pol": "0.5", "std": "0.0" }, "jakin-nahi": { "pos": "n", "pol": "0.5", "std": "0.0" }, "jakingura": { "pos": "n", "pol": "0.5", "std": "0.0" }, "kalitate": { "pos": "n", "pol": "0.5", "std": "0.0" }, "komedia": { "pos": "n", "pol": "0.5", "std": "0.0" }, "komenentzia": { "pos": "n", "pol": "0.5", "std": "0.0" }, "konplimendu": { "pos": "n", "pol": "0.5", "std": "0.0" }, "kontsakratu": { "pos": "v", "pol": "0.5", "std": "0.0" }, "koordinazio": { "pos": "n", "pol": "0.5", "std": "0.53" }, "kreditatu": { "pos": "v", "pol": "0.5", "std": "0.0" }, "krisketaz lotu": { "pos": "v", "pol": "0.5", "std": "0.0" }, "laudatzaile": { "pos": "n", "pol": "0.5", "std": "0.0" }, "legeztatu": { "pos": "v", "pol": "0.5", "std": "0.0" }, "libertario": { "pos": "n", "pol": "0.5", "std": "0.0" }, "limurtze": { "pos": "n", "pol": "0.5", "std": "0.0" }, "liserigarritasun": { "pos": "n", "pol": "0.5", "std": "0.0" }, "maileguz eman": { "pos": "v", "pol": "0.5", "std": "0.0" }, "mantenimendu": { "pos": "n", "pol": "0.5", "std": "0.0" }, "miopia": { "pos": "n", "pol": "0.5", "std": "0.0" }, "moldagarritasun": { "pos": "n", "pol": "0.5", "std": "0.0" }, "nartzisismo": { "pos": "n", "pol": "0.5", "std": "0.0" }, "nautika": { "pos": "n", "pol": "0.5", "std": "0.0" }, "normaltasun": { "pos": "n", "pol": "0.5", "std": "0.0" }, "onaldi": { "pos": "n", "pol": "0.5", "std": "0.0" }, "onestasun": { "pos": "n", "pol": "0.5", "std": "0.0" }, "ongizate": { "pos": "n", "pol": "0.5", "std": "0.27" }, "osasun mental": { "pos": "n", "pol": "0.5", "std": "0.0" }, "osasungarritasun": { "pos": "n", "pol": "0.5", "std": "0.144" }, "ospea eman": { "pos": "v", "pol": "0.5", "std": "0.0" }, "probetxu atera": { "pos": "v", "pol": "0.5", "std": "0.0" }, "produktibitate": { "pos": "n", "pol": "0.5", "std": "0.0" }, "sagaratu": { "pos": "v", "pol": "0.5", "std": "0.0" }, "seriotasun": { "pos": "n", "pol": "0.5", "std": "0.259" }, "sinestarazi": { "pos": "v", "pol": "0.5", "std": "0.0" }, "sinetsi": { "pos": "v", "pol": "0.5", "std": "0.0" }, "talotu": { "pos": "v", "pol": "0.5", "std": "0.0" }, "tinkotasun": { "pos": "n", "pol": "0.5", "std": "0.265" }, "tonizitate": { "pos": "n", "pol": "0.5", "std": "0.0" }, "ustekabeko irabazi": { "pos": "n", "pol": "0.5", "std": "0.0" }, "ustelkortasun": { "pos": "n", "pol": "0.5", "std": "0.0" }, "utilitarismo": { "pos": "n", "pol": "0.5", "std": "0.0" }, "xarmantasun": { "pos": "n", "pol": "0.5", "std": "0.0" }, "xelebrekeria": { "pos": "n", "pol": "0.5", "std": "0.177" }, "zaharberritze": { "pos": "n", "pol": "0.5", "std": "0.0" }, "zaharberrizte": { "pos": "n", "pol": "0.5", "std": "0.0" }, "abata": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "afonia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ahitu": { "pos": "v", "pol": "-0.5", "std": "0.088" }, "ahots zakar": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ahozabalik egon": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "aipua belztu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "aipua kendu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "aipua zikindu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "akusatuen aulki": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "alarmismo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "albo-ondorio": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "aldarri": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "alderdi errekurtsogile": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "aldi baterako polizia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "alprojeria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "amodio propio": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "amuzki": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "analfabetismo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "anarkia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "anatematizatu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "anestesia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ankilosi": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "apelatzaile": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "arautegi-greba": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ardi galdu": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "arretazko greba": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "arriskua egon": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "artralgia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "asasinatu": { "pos": "v", "pol": "-0.5", "std": "0.177" }, "astakaiku": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "astenosfera": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "aurpegira bota": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "aurpegira eman": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "aurretik juzgatu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "aurrez juzgatu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "autokrata": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "auzitegi nagusi": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "azpimundu": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bake-eza": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "basapizti": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bataila": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "behartu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "beltz-beltz": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "beluritu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "beriberi": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bermut gozo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "betiko lo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bihotzerre": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bihozgabe": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bihurritu": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bluff": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "borgoina-kolore": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "boy": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "buruzaletasun": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "derrigortu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "desorientazio": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "despota": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "diatriba": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "disonantzia": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "distiragabetasun": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "doluzko besoko": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "doluzko jantzi": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "dorretzar": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "enbolo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "entzungor": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "entzutea belztu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "entzutea kendu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "entzutea zikindu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "epelkeria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "eragozpenak jarri": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "erail": { "pos": "v", "pol": "-0.5", "std": "0.177" }, "erosta": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "errakitismo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "errespetu falta": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "errugabetze": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "errukigabekeria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "esatekoak izan": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "eskarmenturik ez": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "esklerosi anitz": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "esklerosi anizkoitz": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "eskumikatu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "espasmo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "esperientziarik ez": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "estratu": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "etze": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "exekuzio-ordena": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ez-emankortasun": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ez abegitsu izate": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ezaxolakeria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ezjakite": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fida izan": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "fidantza izan": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "fio izan": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "gaitasunik ez": { "pos": "n", "pol": "-0.5", "std": "0.25" }, "gaizki eratze": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gaizki itzultze": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gaizkile gazte": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "galdua": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "garbitasun ez": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gerra-kalte": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gerrako kalte": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gerrillari": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "giltzatu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "gizabide ez": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gizalege ez": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gizon jator": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gizon leial": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gizon zintzo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gogaikarri izan": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "gogatu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "gor": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gorreri": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "gortasun": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "graffiti": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "grina izan": { "pos": "v", "pol": "-0.5", "std": "0.177" }, "guanako": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gupidagabekeria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "haize egin": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "hanpa": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "harmoniarik ez": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "harroaldi": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hatsa jariatu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "hazpizar": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hazteri": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hebaindu": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "heiagoera egin": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "heriotza-zigor": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "herren": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "heterogeneotasun": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hildakoaren adiskide": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hildakoaren ahaide": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hiletari": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hiltzeko agindu": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hipermetropia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hipogluzemia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hodei beltz": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hondamendi": { "pos": "n", "pol": "-0.5", "std": "0.134" }, "ikonoklasia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ilaundu": { "pos": "v", "pol": "-0.5", "std": "0.088" }, "ilun": { "pos": "n", "pol": "-0.5", "std": "0.072" }, "indarrez sartze": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inguruko mendi": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inmolatu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "irregulartasun geometriko": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "irritsa izan": { "pos": "v", "pol": "-0.5", "std": "0.177" }, "isekari": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "itsas urdin": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "itsukeria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "itzulpen oker": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "izena belztu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "izena kendu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "izena zikindu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "jakatxo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "juramento": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "kakofonia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "kalanbre": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "kalte egin": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "kaltetu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "karie": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "karrak egin": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "karrakatze": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "karranpa": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "kleptomano": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "konfesatu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "konkordun": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "kontsolagarri": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "krudel": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "kupera": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "kuxkuxean ibiltze": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "lagunkoitasun ez": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "larderiatu": { "pos": "v", "pol": "-0.5", "std": "0.068" }, "larri": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "lohitasun": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "lotu-jantzi": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "lutu-besoko": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "maingu": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "men ez egite": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mendi-adar": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mesprezusko irribiarrea egin": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mihiztatu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "milikeria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "min eragile": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mizkeria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mokorreria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mukitsu": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "muturrekoa eman": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "nahasia egote": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "nahastua egote": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "narritu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "niktalopia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ninbo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ninfomano": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "odolgabetasun": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "oftalmia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "oies": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "oihumin": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "oosfera": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "opaldu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "oparia erskaini": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "osagabetasun": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "oso txar": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ospea belztu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "ospea kendu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "ospea zikindu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "osteoporosi": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "oztopoak jarri": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "paralogismo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "piromania": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pirosi": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "polizia-indar": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "poltergeist": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "presioa egin": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "putakume": { "pos": "n", "pol": "-0.5", "std": "0.072" }, "putz egin": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "sabotaje": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sakrilegio": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "samurtu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "sheriffen talde": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sikario": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sineskeria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sinfisi": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sona belztu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "sona kendu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "sona zikindu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "sor": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "soraiotasun": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sorgortasun": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sosik gabeko": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "suntsidura": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "suntsiezintasun": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "superstizio": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "terrakota": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "terrorismo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "tirano": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "trauskiltasun": { "pos": "n", "pol": "-0.5", "std": "0.177" }, "trebetasunik ez": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "txantxar": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "txapeldunorde": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "txilio egin": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "txukuntasun ez": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ubeldu": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "udizioko hagin": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ukabilkada eman": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "umiliatu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "urka-bilur": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ustea izan": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "zainbihurtu": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "zaintiratu": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "zaporerik ez": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "zarpailkeria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "zigorgabetasun": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "zirtzilkeria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "zorian egon": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "zorian izan": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "zuhurragin": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "zuhurtzia falta": { "pos": "n", "pol": "-0.5", "std": "0.125" }, "zurbildu": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "zurdunpa": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "zuzenbide penal": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "zuzentasun ez": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "abade": { "pos": "n", "pol": "0.375", "std": "0.0" }, "abadesa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "abegi ona egin": { "pos": "v", "pol": "0.313", "std": "0.088" }, "aberastasun": { "pos": "n", "pol": "0.275", "std": "0.302" }, "abil": { "pos": "n", "pol": "0.375", "std": "0.0" }, "adei": { "pos": "n", "pol": "0.406", "std": "0.12" }, "adigai": { "pos": "n", "pol": "0.375", "std": "0.0" }, "adiskidetsu agurtu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "adore emate": { "pos": "n", "pol": "0.417", "std": "0.331" }, "ados egon": { "pos": "v", "pol": "0.375", "std": "0.088" }, "ados jartze": { "pos": "n", "pol": "0.438", "std": "0.088" }, "adostasun": { "pos": "n", "pol": "0.313", "std": "0.12" }, "ahalbidetu": { "pos": "v", "pol": "0.313", "std": "0.088" }, "ahalmen": { "pos": "n", "pol": "0.292", "std": "0.191" }, "aholku-emaile": { "pos": "n", "pol": "0.375", "std": "0.0" }, "aintzat hartu": { "pos": "v", "pol": "0.438", "std": "0.277" }, "aintzatetsi": { "pos": "v", "pol": "0.375", "std": "0.0" }, "akustika": { "pos": "n", "pol": "0.375", "std": "0.0" }, "alabatu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "alarma jo": { "pos": "v", "pol": "0.375", "std": "0.0" }, "aldebakarreko kontratu": { "pos": "n", "pol": "0.375", "std": "0.0" }, "alimaleko": { "pos": "n", "pol": "0.375", "std": "0.0" }, "allegro": { "pos": "n", "pol": "0.375", "std": "0.0" }, "altruista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ama gehiena": { "pos": "n", "pol": "0.375", "std": "0.0" }, "amarrutsu": { "pos": "n", "pol": "0.375", "std": "0.0" }, "anakoreta": { "pos": "n", "pol": "0.375", "std": "0.0" }, "anbibalentzia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "animazio": { "pos": "n", "pol": "0.275", "std": "0.259" }, "antropofagia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "antzerki-izaera": { "pos": "n", "pol": "0.375", "std": "0.0" }, "apain-apain jarri": { "pos": "v", "pol": "0.375", "std": "0.0" }, "aparteko": { "pos": "n", "pol": "0.333", "std": "0.0" }, "arauzko denbora": { "pos": "n", "pol": "0.375", "std": "0.0" }, "arintasun": { "pos": "n", "pol": "0.313", "std": "0.433" }, "aristotelismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "arrakasta": { "pos": "n", "pol": "0.417", "std": "0.125" }, "arrandiartu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "arrazionalista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "arrazionaltasun": { "pos": "n", "pol": "0.417", "std": "0.072" }, "arte-kreazio": { "pos": "n", "pol": "0.375", "std": "0.0" }, "artefaktu": { "pos": "n", "pol": "0.375", "std": "0.0" }, "artegintza": { "pos": "n", "pol": "0.375", "std": "0.0" }, "arteztu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "asistentzia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "aske": { "pos": "n", "pol": "0.375", "std": "0.0" }, "askitasun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "asti": { "pos": "n", "pol": "0.281", "std": "0.12" }, "aurrerakuntza": { "pos": "n", "pol": "0.458", "std": "0.433" }, "autobus-txartel": { "pos": "n", "pol": "0.375", "std": "0.0" }, "azidotu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "azken hitz": { "pos": "n", "pol": "0.375", "std": "0.0" }, "azpijale": { "pos": "n", "pol": "0.375", "std": "0.0" }, "azpimarratze": { "pos": "n", "pol": "0.375", "std": "0.0" }, "baiezkotasun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "baimena eman": { "pos": "v", "pol": "0.325", "std": "0.271" }, "baimendu": { "pos": "v", "pol": "0.325", "std": "0.271" }, "baketu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "baketze": { "pos": "n", "pol": "0.375", "std": "0.0" }, "balakatu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "balentria": { "pos": "n", "pol": "0.313", "std": "0.0" }, "baliogarritasun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "baliokidetasun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "baloia pasatze": { "pos": "n", "pol": "0.375", "std": "0.0" }, "balore": { "pos": "n", "pol": "0.375", "std": "0.4" }, "bat etorri": { "pos": "v", "pol": "0.297", "std": "0.283" }, "bateragarritasun": { "pos": "n", "pol": "0.313", "std": "0.177" }, "batzartu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "bazkaleku": { "pos": "n", "pol": "0.375", "std": "0.0" }, "begiko": { "pos": "n", "pol": "0.313", "std": "0.088" }, "beharrezko guztia hartu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "benerazio": { "pos": "n", "pol": "0.375", "std": "0.0" }, "berealdiko": { "pos": "n", "pol": "0.375", "std": "0.0" }, "berretsi": { "pos": "v", "pol": "0.375", "std": "0.125" }, "besta": { "pos": "n", "pol": "0.281", "std": "0.188" }, "besteren lepotik bizi": { "pos": "v", "pol": "0.375", "std": "0.0" }, "besteren lepotik edan": { "pos": "v", "pol": "0.375", "std": "0.088" }, "besteren lepotik jan": { "pos": "v", "pol": "0.375", "std": "0.0" }, "bideragarritasun": { "pos": "n", "pol": "0.292", "std": "0.125" }, "bidezkotasun": { "pos": "n", "pol": "0.292", "std": "0.0" }, "biltzar ebangelista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bilurtu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "biokimikari": { "pos": "n", "pol": "0.375", "std": "0.0" }, "birtuosismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bizitasun": { "pos": "n", "pol": "0.327", "std": "0.231" }, "blokeoa kendu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "boleibol": { "pos": "n", "pol": "0.375", "std": "0.0" }, "boluntario": { "pos": "n", "pol": "0.375", "std": "0.177" }, "bularra eman": { "pos": "v", "pol": "0.375", "std": "0.0" }, "burlesko": { "pos": "n", "pol": "0.375", "std": "0.0" }, "buruan sartu": { "pos": "v", "pol": "0.333", "std": "0.125" }, "burujabetasun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "burujabetu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "burujabetza": { "pos": "n", "pol": "0.375", "std": "0.0" }, "degeneratu": { "pos": "n", "pol": "0.375", "std": "0.0" }, "demagogo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "demonio": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "desblokeatu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "desizoztu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "dialisi": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dibertsio": { "pos": "n", "pol": "0.292", "std": "0.125" }, "doitasun": { "pos": "n", "pol": "0.292", "std": "0.171" }, "done": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dorukoi": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dotoretasun": { "pos": "n", "pol": "0.344", "std": "0.313" }, "dotrina": { "pos": "n", "pol": "0.313", "std": "0.088" }, "duelu": { "pos": "n", "pol": "0.375", "std": "0.0" }, "duintasun": { "pos": "n", "pol": "0.313", "std": "0.26" }, "durundi": { "pos": "n", "pol": "0.375", "std": "0.0" }, "edateko ur": { "pos": "n", "pol": "0.375", "std": "0.0" }, "edateko ur on": { "pos": "n", "pol": "0.375", "std": "0.0" }, "edoskiarazi": { "pos": "v", "pol": "0.375", "std": "0.0" }, "egia": { "pos": "n", "pol": "0.458", "std": "0.26" }, "egiazkotasun": { "pos": "n", "pol": "0.45", "std": "0.24" }, "egiaztatu": { "pos": "v", "pol": "0.304", "std": "0.139" }, "egibide": { "pos": "n", "pol": "0.375", "std": "0.0" }, "egiztapen": { "pos": "n", "pol": "0.375", "std": "0.0" }, "egokiera": { "pos": "n", "pol": "0.375", "std": "0.0" }, "egonkortasun": { "pos": "n", "pol": "0.417", "std": "0.072" }, "egun-argi": { "pos": "n", "pol": "0.313", "std": "0.265" }, "egundoko": { "pos": "n", "pol": "0.375", "std": "0.0" }, "eguraldi on": { "pos": "n", "pol": "0.438", "std": "0.088" }, "ekitate": { "pos": "n", "pol": "0.375", "std": "0.0" }, "elitista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "elizkizun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "elkarganatu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "elkarrengana bildu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "elkarte ongile": { "pos": "n", "pol": "0.375", "std": "0.177" }, "emankortasun": { "pos": "n", "pol": "0.4", "std": "0.227" }, "emantzipatu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "enbalditu": { "pos": "n", "pol": "0.375", "std": "0.0" }, "endekatu": { "pos": "n", "pol": "0.375", "std": "0.0" }, "energia": { "pos": "n", "pol": "0.292", "std": "0.267" }, "engaiatu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "enpatia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "entretenitu": { "pos": "v", "pol": "0.375", "std": "0.125" }, "entzunarazi": { "pos": "v", "pol": "0.375", "std": "0.0" }, "entzungarritasun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "entzute": { "pos": "n", "pol": "0.438", "std": "0.0" }, "entzute handiko": { "pos": "n", "pol": "0.375", "std": "0.0" }, "epelaldi": { "pos": "n", "pol": "0.375", "std": "0.0" }, "epikurear": { "pos": "n", "pol": "0.375", "std": "0.0" }, "erabilgarritasun": { "pos": "n", "pol": "0.313", "std": "0.094" }, "erabilkortasun": { "pos": "n", "pol": "0.438", "std": "0.088" }, "eradoski": { "pos": "v", "pol": "0.375", "std": "0.0" }, "eraginkortasun": { "pos": "n", "pol": "0.281", "std": "0.4" }, "erakargarritasun": { "pos": "n", "pol": "0.275", "std": "0.19" }, "erdibokal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "erlaxatu": { "pos": "v", "pol": "0.438", "std": "0.0" }, "erlazionatuta egon": { "pos": "v", "pol": "0.375", "std": "0.0" }, "erraz": { "pos": "a", "pol": "0.375", "std": "0.0" }, "erreferendum": { "pos": "n", "pol": "0.375", "std": "0.0" }, "erregulartasun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "erregutze": { "pos": "n", "pol": "0.375", "std": "0.0" }, "errekisa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "erreklamatzaile": { "pos": "n", "pol": "0.375", "std": "0.0" }, "errespetu": { "pos": "n", "pol": "0.446", "std": "0.21" }, "erritolari": { "pos": "n", "pol": "0.375", "std": "0.0" }, "erritu": { "pos": "n", "pol": "0.292", "std": "0.072" }, "eskas hartu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "eskertu": { "pos": "v", "pol": "0.375", "std": "0.144" }, "eskuburdinak ipini": { "pos": "v", "pol": "0.375", "std": "0.0" }, "eskueste": { "pos": "n", "pol": "0.375", "std": "0.0" }, "espezialitate": { "pos": "n", "pol": "0.344", "std": "0.373" }, "esprint": { "pos": "n", "pol": "0.375", "std": "0.0" }, "esterilizazio": { "pos": "n", "pol": "0.313", "std": "0.0" }, "estimatu": { "pos": "v", "pol": "0.417", "std": "0.144" }, "estrabertitu": { "pos": "n", "pol": "0.375", "std": "0.0" }, "eta abar": { "pos": "n", "pol": "0.375", "std": "0.0" }, "etxeratze": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ezaguera": { "pos": "n", "pol": "0.281", "std": "0.188" }, "ezagumendu praktiko": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ezagutu": { "pos": "v", "pol": "0.333", "std": "0.331" }, "ezagutza": { "pos": "n", "pol": "0.281", "std": "0.289" }, "ezagutza-arlo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ezeri garrantzia emate": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ezezko": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ezkon-hitza eman": { "pos": "v", "pol": "0.375", "std": "0.0" }, "ezkontzeko hitza eman": { "pos": "v", "pol": "0.375", "std": "0.0" }, "ezkutuko bidaiari": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ezkutuko bidazti": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ezpatazorro": { "pos": "n", "pol": "0.375", "std": "0.0" }, "eztabaida-leku": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fartsa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fenomeno": { "pos": "n", "pol": "0.313", "std": "0.177" }, "fidagarritasun": { "pos": "n", "pol": "0.375", "std": "0.402" }, "fideikomisodun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "filantropo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "filosofia": { "pos": "n", "pol": "0.313", "std": "0.088" }, "finkotasun": { "pos": "n", "pol": "0.406", "std": "0.329" }, "fintasun": { "pos": "n", "pol": "0.339", "std": "0.286" }, "fintze": { "pos": "n", "pol": "0.375", "std": "0.0" }, "freskatu": { "pos": "v", "pol": "0.333", "std": "0.25" }, "funtzionatu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "gabon-kanta": { "pos": "n", "pol": "0.313", "std": "0.0" }, "gailendu": { "pos": "v", "pol": "0.375", "std": "0.177" }, "gaita-soinu": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gaitaren soinu": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gaitasun": { "pos": "n", "pol": "0.438", "std": "0.26" }, "gaitzeko": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gandutsua egin": { "pos": "v", "pol": "0.375", "std": "0.0" }, "gardentasun": { "pos": "n", "pol": "0.275", "std": "0.137" }, "garrantzi handiko aurkikuntza": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gastronomo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "genealogista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gizabide": { "pos": "n", "pol": "0.292", "std": "0.2" }, "gizalege": { "pos": "n", "pol": "0.3", "std": "0.224" }, "gizatiar": { "pos": "n", "pol": "0.375", "std": "0.0" }, "glide": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gogoeta": { "pos": "n", "pol": "0.292", "std": "0.072" }, "gogokoen": { "pos": "n", "pol": "0.375", "std": "0.0" }, "goi-fidelitate": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gol": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gomendatze": { "pos": "n", "pol": "0.313", "std": "0.088" }, "gomendio": { "pos": "n", "pol": "0.313", "std": "0.088" }, "goraipamen": { "pos": "n", "pol": "0.333", "std": "0.125" }, "goratu": { "pos": "v", "pol": "0.417", "std": "0.325" }, "goratzaile": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gorazarre egin": { "pos": "v", "pol": "0.438", "std": "0.228" }, "gorespen": { "pos": "n", "pol": "0.313", "std": "0.129" }, "gourmet": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gustukoen": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gutun-lagun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "guztien adostasun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "handiespen": { "pos": "n", "pol": "0.375", "std": "0.0" }, "handietsi": { "pos": "v", "pol": "0.375", "std": "0.0" }, "hapax": { "pos": "n", "pol": "0.375", "std": "0.0" }, "harmonia": { "pos": "n", "pol": "0.375", "std": "0.329" }, "harpide": { "pos": "n", "pol": "0.375", "std": "0.0" }, "harpidedun": { "pos": "n", "pol": "0.313", "std": "0.265" }, "harpidetza": { "pos": "n", "pol": "0.313", "std": "0.088" }, "harrera ona egin": { "pos": "v", "pol": "0.313", "std": "0.088" }, "haur harrigarri": { "pos": "n", "pol": "0.375", "std": "0.0" }, "haur prodijio": { "pos": "n", "pol": "0.313", "std": "0.088" }, "haurtzaintza": { "pos": "n", "pol": "0.313", "std": "0.088" }, "hazi": { "pos": "v", "pol": "0.288", "std": "0.282" }, "hegaztizale": { "pos": "n", "pol": "0.375", "std": "0.0" }, "heldutasun": { "pos": "n", "pol": "0.313", "std": "0.0" }, "hezi": { "pos": "v", "pol": "0.281", "std": "0.157" }, "heziketa-programa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hi-fi": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hipika": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hitzeman": { "pos": "v", "pol": "0.375", "std": "0.0" }, "hobby": { "pos": "n", "pol": "0.375", "std": "0.619" }, "hobekuntza": { "pos": "n", "pol": "0.339", "std": "0.312" }, "hoberena dena": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hobetu": { "pos": "v", "pol": "0.438", "std": "0.088" }, "hondatzaile": { "pos": "n", "pol": "0.375", "std": "0.0" }, "humanitate": { "pos": "n", "pol": "0.375", "std": "0.0" }, "iaiotasun": { "pos": "n", "pol": "0.425", "std": "0.24" }, "ikasnahai": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ikastegi": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ikusgarri": { "pos": "n", "pol": "0.375", "std": "0.0" }, "iltzeztatu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "ilustrazio": { "pos": "n", "pol": "0.292", "std": "0.125" }, "inauteri": { "pos": "n", "pol": "0.313", "std": "0.0" }, "indar moral": { "pos": "n", "pol": "0.375", "std": "0.0" }, "indarrik gabe utzi": { "pos": "v", "pol": "0.375", "std": "0.0" }, "independentzia": { "pos": "n", "pol": "0.313", "std": "0.088" }, "industriari": { "pos": "n", "pol": "0.375", "std": "0.0" }, "influentzia": { "pos": "n", "pol": "0.375", "std": "0.177" }, "inoren lepotik bizi": { "pos": "v", "pol": "0.375", "std": "0.0" }, "inoren lepotik jan": { "pos": "v", "pol": "0.375", "std": "0.0" }, "inpartzialtasun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "interes bakun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "irakaskuntza-erakunde": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ireki": { "pos": "n", "pol": "0.375", "std": "0.0" }, "irekiera": { "pos": "n", "pol": "0.375", "std": "0.0" }, "irribarre": { "pos": "n", "pol": "0.375", "std": "0.0" }, "isileko bidazti": { "pos": "n", "pol": "0.375", "std": "0.0" }, "isurpen": { "pos": "n", "pol": "0.375", "std": "0.265" }, "izatasun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "izate": { "pos": "n", "pol": "0.438", "std": "0.088" }, "izorratzaile": { "pos": "n", "pol": "0.375", "std": "0.0" }, "izpiritualizazio": { "pos": "n", "pol": "0.375", "std": "0.0" }, "izugarrizko": { "pos": "n", "pol": "0.375", "std": "0.0" }, "jaialdi": { "pos": "n", "pol": "0.281", "std": "0.188" }, "jainkojale": { "pos": "n", "pol": "0.313", "std": "0.088" }, "jakak egiteko ehuna": { "pos": "n", "pol": "0.375", "std": "0.0" }, "jakin": { "pos": "v", "pol": "0.375", "std": "0.442" }, "jakin-nahia eragin": { "pos": "v", "pol": "0.375", "std": "0.0" }, "jakinmina eragin": { "pos": "v", "pol": "0.375", "std": "0.0" }, "jakintza-arlo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "jale": { "pos": "n", "pol": "0.313", "std": "0.265" }, "janaria egin": { "pos": "v", "pol": "0.375", "std": "0.0" }, "janaria preztatu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "janzki": { "pos": "n", "pol": "0.375", "std": "0.0" }, "jarduera": { "pos": "n", "pol": "0.375", "std": "0.072" }, "jendetasun": { "pos": "n", "pol": "0.475", "std": "0.271" }, "jolasaldi": { "pos": "n", "pol": "0.35", "std": "0.056" }, "jostatu": { "pos": "v", "pol": "0.375", "std": "0.177" }, "jubileu": { "pos": "n", "pol": "0.375", "std": "0.0" }, "kakara": { "pos": "n", "pol": "0.313", "std": "0.088" }, "kaligrafia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "kamioi": { "pos": "n", "pol": "0.375", "std": "0.0" }, "kanibalkeria": { "pos": "n", "pol": "0.375", "std": "0.0" }, "kanporakoi": { "pos": "n", "pol": "0.375", "std": "0.0" }, "karisma": { "pos": "n", "pol": "0.375", "std": "0.0" }, "karitate": { "pos": "n", "pol": "0.3", "std": "0.143" }, "kasuistika": { "pos": "n", "pol": "0.375", "std": "0.0" }, "kateaz lotu": { "pos": "v", "pol": "0.313", "std": "0.088" }, "katekesi": { "pos": "n", "pol": "0.313", "std": "0.088" }, "kaudimen": { "pos": "n", "pol": "0.375", "std": "0.354" }, "kitatu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "klasiko": { "pos": "n", "pol": "0.313", "std": "0.265" }, "koherentzia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "kojinete": { "pos": "n", "pol": "0.375", "std": "0.0" }, "komenientzia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "konbentzitu": { "pos": "v", "pol": "0.375", "std": "0.088" }, "konbentzitze": { "pos": "n", "pol": "0.281", "std": "0.12" }, "konformista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "konpromisoa hartu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "kontsumitu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "kontzeptu": { "pos": "n", "pol": "0.375", "std": "0.0" }, "korner": { "pos": "n", "pol": "0.375", "std": "0.0" }, "kortesia": { "pos": "n", "pol": "0.393", "std": "0.122" }, "kriskitin egin": { "pos": "v", "pol": "0.313", "std": "0.088" }, "kristau-ikasbide": { "pos": "n", "pol": "0.375", "std": "0.0" }, "kulturista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "laburrago egin": { "pos": "v", "pol": "0.375", "std": "0.0" }, "lakrez itxi": { "pos": "v", "pol": "0.375", "std": "0.0" }, "lantzen duen lurraren jabe dena": { "pos": "n", "pol": "0.375", "std": "0.0" }, "larru bizirik": { "pos": "a", "pol": "0.375", "std": "0.0" }, "larrugorrian": { "pos": "a", "pol": "0.375", "std": "0.0" }, "lasterraldi azkar": { "pos": "n", "pol": "0.375", "std": "0.0" }, "laudagarritasun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "laudatu": { "pos": "v", "pol": "0.375", "std": "0.217" }, "laudorio": { "pos": "n", "pol": "0.396", "std": "0.146" }, "lausengatu": { "pos": "v", "pol": "0.375", "std": "0.177" }, "legezko kuota": { "pos": "n", "pol": "0.375", "std": "0.0" }, "legezkotasun": { "pos": "n", "pol": "0.438", "std": "0.0" }, "lehen-sendabide": { "pos": "n", "pol": "0.375", "std": "0.0" }, "leundu": { "pos": "v", "pol": "0.344", "std": "0.359" }, "likidatu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "limurtu": { "pos": "v", "pol": "0.313", "std": "0.442" }, "lirain": { "pos": "a", "pol": "0.375", "std": "0.0" }, "lizentziatura": { "pos": "n", "pol": "0.375", "std": "0.0" }, "logika": { "pos": "n", "pol": "0.325", "std": "0.293" }, "loria": { "pos": "n", "pol": "0.375", "std": "0.0" }, "losentxatu": { "pos": "v", "pol": "0.375", "std": "0.177" }, "lotuta egon": { "pos": "v", "pol": "0.375", "std": "0.0" }, "lsaitu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "lukurreria": { "pos": "n", "pol": "0.375", "std": "0.0" }, "madarikatu": { "pos": "a", "pol": "0.375", "std": "0.0" }, "magina": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mailan izan": { "pos": "v", "pol": "0.375", "std": "0.0" }, "maiteminduen egun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "malapartatu": { "pos": "a", "pol": "0.375", "std": "0.0" }, "malgutasun": { "pos": "n", "pol": "0.344", "std": "0.298" }, "manikura": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mantenu-pentsio": { "pos": "n", "pol": "0.375", "std": "0.0" }, "manu": { "pos": "n", "pol": "0.292", "std": "0.072" }, "mardultasun": { "pos": "n", "pol": "0.292", "std": "0.072" }, "marraka": { "pos": "n", "pol": "0.313", "std": "0.088" }, "mau": { "pos": "n", "pol": "0.313", "std": "0.088" }, "mediku-ardura": { "pos": "n", "pol": "0.375", "std": "0.0" }, "medikuntza": { "pos": "n", "pol": "0.292", "std": "0.072" }, "megalomania": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mendebaldeko ohiturak hartu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "merezi": { "pos": "n", "pol": "0.406", "std": "0.375" }, "metodismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mezako ardo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "miau": { "pos": "n", "pol": "0.313", "std": "0.088" }, "milurteko": { "pos": "n", "pol": "0.313", "std": "0.265" }, "mirari": { "pos": "n", "pol": "0.375", "std": "0.389" }, "miraz egon": { "pos": "v", "pol": "0.313", "std": "0.265" }, "moderazio": { "pos": "n", "pol": "0.375", "std": "0.0" }, "morroiloz itxi": { "pos": "v", "pol": "0.375", "std": "0.0" }, "mortasatu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "munta": { "pos": "n", "pol": "0.375", "std": "0.0" }, "musika klasiko": { "pos": "n", "pol": "0.375", "std": "0.0" }, "nagusitu": { "pos": "v", "pol": "0.375", "std": "0.177" }, "nahimen libre": { "pos": "n", "pol": "0.375", "std": "0.0" }, "naretu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "natural": { "pos": "a", "pol": "0.275", "std": "0.264" }, "naturalizazio": { "pos": "n", "pol": "0.313", "std": "0.088" }, "nazkagarri": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "nazkante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "neurri hartze": { "pos": "n", "pol": "0.375", "std": "0.0" }, "obedientzia": { "pos": "n", "pol": "0.333", "std": "0.144" }, "objektibotasun": { "pos": "n", "pol": "0.375", "std": "0.177" }, "ofizio": { "pos": "n", "pol": "0.417", "std": "0.191" }, "oharrarazle": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ohoratu": { "pos": "v", "pol": "0.458", "std": "0.191" }, "ohore": { "pos": "n", "pol": "0.469", "std": "0.332" }, "oihartzuna izan": { "pos": "v", "pol": "0.375", "std": "0.0" }, "olgatu": { "pos": "v", "pol": "0.375", "std": "0.177" }, "olgeta": { "pos": "n", "pol": "0.438", "std": "0.088" }, "omen": { "pos": "n", "pol": "0.333", "std": "0.204" }, "on egite": { "pos": "n", "pol": "0.313", "std": "0.088" }, "onargarritasun": { "pos": "n", "pol": "0.438", "std": "0.088" }, "onarpen": { "pos": "n", "pol": "0.327", "std": "0.231" }, "ondasun-administratzaile": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ondo erantzun": { "pos": "v", "pol": "0.375", "std": "0.0" }, "ondo ihardetsi": { "pos": "v", "pol": "0.375", "std": "0.0" }, "ondratu": { "pos": "v", "pol": "0.458", "std": "0.191" }, "onena": { "pos": "n", "pol": "0.375", "std": "0.0" }, "onera egin": { "pos": "v", "pol": "0.438", "std": "0.088" }, "onespen": { "pos": "n", "pol": "0.301", "std": "0.22" }, "ongi erantzun": { "pos": "v", "pol": "0.375", "std": "0.0" }, "ongi ihardetsi": { "pos": "v", "pol": "0.375", "std": "0.0" }, "ongi pasatu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "oniritzi": { "pos": "n", "pol": "0.422", "std": "0.163" }, "onomatopeia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "opor": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ordenaketa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "originaltasun": { "pos": "n", "pol": "0.313", "std": "0.177" }, "ospakizun": { "pos": "n", "pol": "0.406", "std": "0.12" }, "ospe": { "pos": "n", "pol": "0.344", "std": "0.219" }, "ozentasun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pagu": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pailazokeria": { "pos": "n", "pol": "0.375", "std": "0.0" }, "panegirista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "panoplia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "parada": { "pos": "n", "pol": "0.375", "std": "0.0" }, "paregabe": { "pos": "n", "pol": "0.375", "std": "0.0" }, "partxis": { "pos": "n", "pol": "0.375", "std": "0.0" }, "paternalismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pentsaketa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "perbertitu": { "pos": "n", "pol": "0.375", "std": "0.0" }, "perfekzio": { "pos": "n", "pol": "0.333", "std": "0.144" }, "perigeo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pigmentazio": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pinpirindu": { "pos": "v", "pol": "0.313", "std": "0.088" }, "pitxartxar": { "pos": "n", "pol": "0.313", "std": "0.088" }, "playboy": { "pos": "n", "pol": "0.375", "std": "0.0" }, "plazer": { "pos": "n", "pol": "0.313", "std": "0.088" }, "pluralismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "plus": { "pos": "n", "pol": "0.375", "std": "0.0" }, "polizoi": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pop": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pop musika": { "pos": "n", "pol": "0.375", "std": "0.0" }, "positibismo": { "pos": "n", "pol": "0.375", "std": "0.265" }, "positibista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pragmatismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "prebentzio": { "pos": "n", "pol": "0.438", "std": "0.265" }, "prestigio": { "pos": "n", "pol": "0.375", "std": "0.0" }, "preziatu": { "pos": "v", "pol": "0.417", "std": "0.144" }, "probabilitate": { "pos": "n", "pol": "0.375", "std": "0.0" }, "prodijio": { "pos": "n", "pol": "0.375", "std": "0.0" }, "profesio": { "pos": "n", "pol": "0.375", "std": "0.0" }, "promes egin": { "pos": "v", "pol": "0.375", "std": "0.0" }, "promestu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "prometatu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "protokolo": { "pos": "n", "pol": "0.333", "std": "0.191" }, "puntazorroztasun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "puntuak irabazte": { "pos": "n", "pol": "0.375", "std": "0.0" }, "puritano": { "pos": "n", "pol": "0.313", "std": "0.0" }, "roastbeef": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sagar-makatz": { "pos": "n", "pol": "0.375", "std": "0.0" }, "saindu": { "pos": "n", "pol": "0.375", "std": "0.0" }, "saindu egin": { "pos": "v", "pol": "0.375", "std": "0.0" }, "salbamen": { "pos": "n", "pol": "0.438", "std": "0.619" }, "salbamendu": { "pos": "n", "pol": "0.438", "std": "0.619" }, "salmenta": { "pos": "n", "pol": "0.313", "std": "0.088" }, "santa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "santu": { "pos": "n", "pol": "0.313", "std": "0.088" }, "santutu": { "pos": "v", "pol": "0.438", "std": "0.088" }, "santutze": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sarrera garbi": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sen on": { "pos": "n", "pol": "0.313", "std": "0.088" }, "sendakuntza": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sendatu": { "pos": "v", "pol": "0.375", "std": "0.26" }, "serendipia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sexu-atsegin": { "pos": "n", "pol": "0.375", "std": "0.0" }, "simetria": { "pos": "n", "pol": "0.375", "std": "0.177" }, "sinalefa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sirena jo": { "pos": "v", "pol": "0.375", "std": "0.0" }, "sonstengatu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "tamainan izan": { "pos": "v", "pol": "0.375", "std": "0.0" }, "taoismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "teatro-izaera": { "pos": "n", "pol": "0.375", "std": "0.0" }, "teknikari": { "pos": "n", "pol": "0.313", "std": "0.265" }, "tekniko": { "pos": "n", "pol": "0.313", "std": "0.265" }, "tentatu": { "pos": "v", "pol": "0.438", "std": "0.088" }, "terapia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tiki-taka": { "pos": "n", "pol": "0.375", "std": "0.0" }, "titia eman": { "pos": "v", "pol": "0.375", "std": "0.0" }, "toccata": { "pos": "n", "pol": "0.375", "std": "0.0" }, "trankildu": { "pos": "v", "pol": "0.333", "std": "0.072" }, "tratamendua eman": { "pos": "v", "pol": "0.438", "std": "0.088" }, "tratamendua jarri": { "pos": "v", "pol": "0.438", "std": "0.088" }, "tratatu": { "pos": "v", "pol": "0.281", "std": "0.217" }, "trebetasun": { "pos": "n", "pol": "0.433", "std": "0.233" }, "tren-txartel": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tropismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "trukagarritasun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "turista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "turuta jo": { "pos": "v", "pol": "0.375", "std": "0.0" }, "txalo": { "pos": "n", "pol": "0.344", "std": "0.12" }, "txaloaldi": { "pos": "n", "pol": "0.344", "std": "0.12" }, "txangolari": { "pos": "n", "pol": "0.375", "std": "0.0" }, "txiki": { "pos": "a", "pol": "0.375", "std": "0.0" }, "txinpartaka aritu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "txintxin egin": { "pos": "v", "pol": "0.375", "std": "0.0" }, "txistu-hots": { "pos": "n", "pol": "0.375", "std": "0.0" }, "txistukari": { "pos": "n", "pol": "0.375", "std": "0.0" }, "txukuntasun": { "pos": "n", "pol": "0.35", "std": "0.137" }, "udatiar": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ugalkortasun": { "pos": "n", "pol": "0.375", "std": "0.258" }, "ulergarritasun": { "pos": "n", "pol": "0.313", "std": "0.088" }, "urgatzi": { "pos": "v", "pol": "0.375", "std": "0.0" }, "urguritasun": { "pos": "n", "pol": "0.313", "std": "0.088" }, "urri eman": { "pos": "v", "pol": "0.375", "std": "0.0" }, "xehe": { "pos": "a", "pol": "0.3", "std": "0.24" }, "xelebretasun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "xerretan moztu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "zalbide": { "pos": "n", "pol": "0.375", "std": "0.0" }, "zalutasun": { "pos": "n", "pol": "0.292", "std": "0.217" }, "zapuztaile": { "pos": "n", "pol": "0.375", "std": "0.0" }, "zarrasta": { "pos": "n", "pol": "0.375", "std": "0.0" }, "zarrasta-hots": { "pos": "n", "pol": "0.375", "std": "0.0" }, "zentzu": { "pos": "n", "pol": "0.313", "std": "0.283" }, "zentzutasun": { "pos": "n", "pol": "0.347", "std": "0.273" }, "zerbitzu": { "pos": "n", "pol": "0.3", "std": "0.112" }, "zigiluz itxi": { "pos": "v", "pol": "0.375", "std": "0.0" }, "zilegitasun": { "pos": "n", "pol": "0.333", "std": "0.0" }, "zin egin": { "pos": "v", "pol": "0.375", "std": "0.177" }, "zintzotasun": { "pos": "n", "pol": "0.304", "std": "0.193" }, "zirriborrotsua egin": { "pos": "v", "pol": "0.375", "std": "0.0" }, "zirtakatu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "zirto": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ziurtagiri": { "pos": "n", "pol": "0.281", "std": "0.12" }, "zizpuru": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ziztu bizian mugitu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "zonalde": { "pos": "n", "pol": "0.375", "std": "0.0" }, "zorionak eman": { "pos": "v", "pol": "0.458", "std": "0.144" }, "zoriondu": { "pos": "v", "pol": "0.458", "std": "0.144" }, "zorte on": { "pos": "n", "pol": "0.438", "std": "0.265" }, "zuhurtzia": { "pos": "n", "pol": "0.292", "std": "0.342" }, "zurikatu": { "pos": "v", "pol": "0.375", "std": "0.0" }, "zurrukutun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "zuzen erantzun": { "pos": "v", "pol": "0.375", "std": "0.0" }, "zuzen ihardetsi": { "pos": "v", "pol": "0.375", "std": "0.0" }, "zuzenatsi": { "pos": "v", "pol": "0.375", "std": "0.0" }, "zuzentasun": { "pos": "n", "pol": "0.354", "std": "0.277" }, "abandonatu": { "pos": "v", "pol": "-0.312", "std": "0.051" }, "abentura": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "abisatu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "abusatzen duena": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "adeigabetasun": { "pos": "n", "pol": "-0.312", "std": "0.265" }, "adia": { "pos": "n", "pol": "-0.417", "std": "0.0" }, "adia egin": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "adipositate": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "adore ez": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "agiraka": { "pos": "n", "pol": "-0.45", "std": "0.112" }, "ahalkegabekeria": { "pos": "n", "pol": "-0.375", "std": "0.144" }, "ahalkeizun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ahanztura": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ahazkortasun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ahazmen": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ahazte": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aho-korapilo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ahuleria": { "pos": "n", "pol": "-0.479", "std": "0.123" }, "aiene": { "pos": "n", "pol": "-0.469", "std": "0.063" }, "aintzat ez hartze": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aipu txar": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aire-eraso": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aita hiltze": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aje": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "akats": { "pos": "n", "pol": "-0.437", "std": "0.146" }, "akromegalia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "alborengo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aldagoi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aldarapen": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aldaratze": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aldarri egin": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "alexia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "alferkerian ibili": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "aliatuak": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ama hiltze": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "amorerik ez emate": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "amorrazioa eragin": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "analgesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anestesiko": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anosmia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "antiprotoi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "antrazita": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "apaingarritxo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "apelazioko auzitegi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "apoplexia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arazo": { "pos": "n", "pol": "-0.393", "std": "0.112" }, "arbuio": { "pos": "n", "pol": "-0.325", "std": "0.112" }, "ardo-kolore": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arduragabekeria": { "pos": "n", "pol": "-0.287", "std": "0.145" }, "arinkeria": { "pos": "n", "pol": "-0.259", "std": "0.142" }, "arnasestuka jarri": { "pos": "v", "pol": "-0.292", "std": "0.0" }, "arnegari": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "arrailatu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "arrakalatu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "arrangura": { "pos": "n", "pol": "-0.406", "std": "0.12" }, "arranguratsu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arrastatu": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "arriskugarritasun": { "pos": "n", "pol": "-0.312", "std": "0.125" }, "arritmia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arroka": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "artaldekeria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "artifizio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "artobero": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "asbestosi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "asmazio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "astakirten": { "pos": "n", "pol": "-0.344", "std": "0.072" }, "astenia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "asun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ataxia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "atorra hertsagarri": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "atsogizon": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "atxikipen": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "atzaparkadaka aritu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "atzera pauso": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "audiofono": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "auhen": { "pos": "n", "pol": "-0.458", "std": "0.072" }, "aurpegi eman": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "aurre eman": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "autopsia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "azabatxe": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "azalgorri": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "azaluts": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "azken une": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "azkura": { "pos": "n", "pol": "-0.417", "std": "0.0" }, "azpiko jantzi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "babatu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "babo": { "pos": "n", "pol": "-0.281", "std": "0.177" }, "bakteriolisi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bakteriologia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "balata": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "baldar": { "pos": "n", "pol": "-0.333", "std": "0.065" }, "baldintzapeko askatasun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "baldreskeria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "barneko motz": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "barnerakoitasun": { "pos": "n", "pol": "-0.375", "std": "0.265" }, "barrabas": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "barregarri utzi": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "barruko arropa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "barruko jantzi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "basabide": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "basakeria": { "pos": "n", "pol": "-0.406", "std": "0.12" }, "basalore": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "basati": { "pos": "n", "pol": "-0.333", "std": "0.0" }, "basatikeria": { "pos": "n", "pol": "-0.406", "std": "0.12" }, "baztanga": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "begi eman": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "behar izan": { "pos": "v", "pol": "-0.333", "std": "0.144" }, "behatz-puntetan ibili": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "behazun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "behe": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "behe-glumela": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "behe-presio": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "behea jo": { "pos": "v", "pol": "-0.469", "std": "0.0" }, "beherakari": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "beheranzko espekulatzaile": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "beheratu": { "pos": "v", "pol": "-0.393", "std": "0.098" }, "bekatu": { "pos": "n", "pol": "-0.458", "std": "0.072" }, "beltzaran": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "beluritasun": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "bemol": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bendaje": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "berreskuratzaile": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "besoko": { "pos": "n", "pol": "-0.35", "std": "0.056" }, "bestondo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bidar": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "biharamun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bihotz-gutxiegitasun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bihurri": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "bihurrikada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "biktima": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "bila": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "biolentzia": { "pos": "n", "pol": "-0.312", "std": "0.063" }, "birika-enfisema": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "biriketako": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "birrindu": { "pos": "v", "pol": "-0.265", "std": "0.064" }, "bizirik atera dena": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "bizirik dirauena": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "bizirik irten dena": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "blastakoa eman": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "bonbardatu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "borrokan egin": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "borrokatu": { "pos": "v", "pol": "-0.344", "std": "0.063" }, "bortizkeria": { "pos": "n", "pol": "-0.312", "std": "0.063" }, "bortxa-atorra": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "botaka egin": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "burgesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "burla": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "burla egin": { "pos": "v", "pol": "-0.292", "std": "0.072" }, "buru-hezur": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "buruiritzi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "buruko blokeo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "buruko min": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "danba egin": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "dasta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "deabru": { "pos": "n", "pol": "-0.458", "std": "0.072" }, "deabrutxo": { "pos": "n", "pol": "-0.333", "std": "0.0" }, "deiadarkari": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "deitore": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dekolorazio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "delitu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "denborale": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desadostasun": { "pos": "n", "pol": "-0.354", "std": "0.065" }, "desagertu": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "desakordio": { "pos": "n", "pol": "-0.344", "std": "0.072" }, "desbideraketa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desegokitasun": { "pos": "n", "pol": "-0.263", "std": "0.132" }, "desgobernu": { "pos": "n", "pol": "-0.437", "std": "0.177" }, "deskalifikazio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "deskortesia": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "desmen-egite": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desmineralizazio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desohore": { "pos": "n", "pol": "-0.425", "std": "0.168" }, "diabetiko": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dibagazio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "difamazio": { "pos": "n", "pol": "-0.375", "std": "0.056" }, "difteria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "diru xahutze": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disidentzia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "doilorkeria": { "pos": "n", "pol": "-0.292", "std": "0.125" }, "doitasunik ez": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "doministiku egin": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "donari": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "drogazale": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "drogen menpeko": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ebano": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "edema": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "egia erdia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "egoera natural": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "egur-ikatz": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "egurra eman": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "ekaitzaldi": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "ekimen": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "elikagai min": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "elkarren aurka egon": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "elkartasun ez": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "emagizon": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enfisema": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "engainu": { "pos": "n", "pol": "-0.344", "std": "0.188" }, "entzefalitis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enuresi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "epelak eman": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "epidemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "epilepsia": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "eraginkortasunik ez": { "pos": "n", "pol": "-0.375", "std": "0.354" }, "erantzuki": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "erantzuki egin": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "erasoaldi": { "pos": "n", "pol": "-0.357", "std": "0.094" }, "erauntsi": { "pos": "n", "pol": "-0.344", "std": "0.063" }, "erdipurdiko idazle": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ergel": { "pos": "n", "pol": "-0.287", "std": "0.119" }, "ergelkeria": { "pos": "n", "pol": "-0.292", "std": "0.11" }, "erlakizten": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ernalmin": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ero": { "pos": "n", "pol": "-0.333", "std": "0.065" }, "errauste": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "errebelatu eskas": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "errebelatu txar": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "erredura": { "pos": "n", "pol": "-0.292", "std": "0.0" }, "erremuskada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "errepresio": { "pos": "n", "pol": "-0.275", "std": "0.056" }, "erreskatea ordaindu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "erresumindu": { "pos": "v", "pol": "-0.458", "std": "0.0" }, "erretxin": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "erreuma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "erreumadun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "erreumatiko": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "errieta": { "pos": "n", "pol": "-0.403", "std": "0.108" }, "errieta egin": { "pos": "v", "pol": "-0.45", "std": "0.056" }, "errua bota": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "esfortzurik gabe mugitu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "eskerrak emate": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "eskirol": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "esklabotasun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "esku-sartze": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "eskumuturreko": { "pos": "n", "pol": "-0.333", "std": "0.0" }, "eskuturreko": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "estalkia jarri": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "esterilitate": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "esternoi": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "estira": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "estrabismo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "estualdi": { "pos": "n", "pol": "-0.278", "std": "0.116" }, "estutasun": { "pos": "n", "pol": "-0.312", "std": "0.144" }, "etsai": { "pos": "n", "pol": "-0.281", "std": "0.188" }, "etxeko lapurreta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "eunuko": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ez-betetze": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ez agertze": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ez gustatu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "ezbehar": { "pos": "n", "pol": "-0.3", "std": "0.056" }, "ezdeus": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "ezegonkortasun": { "pos": "n", "pol": "-0.389", "std": "0.185" }, "ezegonkortu": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "ezgaitasun": { "pos": "n", "pol": "-0.406", "std": "0.239" }, "ezilkortasun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ezkor": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "ezkutuko": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "eztabaida gogor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "eztabaidagai": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "eztanda eginarazi": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "faltsutasun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fenomeno natural": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fosgeno": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "franbesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fratrizidio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gaitz": { "pos": "n", "pol": "-0.275", "std": "0.105" }, "gaitzeste": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gaitzuste": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gaizki": { "pos": "n", "pol": "-0.35", "std": "0.105" }, "gaizki saldu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "galdekatzaile": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ganberro": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "garagardo beltz": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gardingadura": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "garezur": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "garratz": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "garraztasun": { "pos": "n", "pol": "-0.281", "std": "0.065" }, "gazta parmesano": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gehiegizko gastu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gelaska zikin": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gelaska ziztrin": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "geldo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "geldotasun": { "pos": "n", "pol": "-0.375", "std": "0.144" }, "gerla": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gernu-ihes": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gernu-inkontinentzia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gerra-lege": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gerrari": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gerrate": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gertakari natural": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gezurkeria": { "pos": "n", "pol": "-0.292", "std": "0.125" }, "gezurti": { "pos": "n", "pol": "-0.344", "std": "0.063" }, "gibelatu": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "gizahilketa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gizatxar": { "pos": "n", "pol": "-0.304", "std": "0.061" }, "gizatzxar": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gizon-antzeko": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "glaukoma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gogogabetasun": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "gogor": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "gogor kritikatu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "gogorki kritikatu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "gogorkiro kritikatu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "goitika": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "goitika egin": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "goitikin": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "golardo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gonbito": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gor-mututasun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gora jotzeko auzitegi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "goraka egin": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "gorde": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "gorputegi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gorputz-babes": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gorrotatzaile": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gozakaizkeria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "grabitate": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "grabitazio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "greaseball": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "greba-hausle": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "guda": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gudamutil": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gudu": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "gudukatu": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "gurutzefikapen": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "gurutziltzaketa": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "gustura ez dagoena": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gutxieneko": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gutxitu": { "pos": "v", "pol": "-0.312", "std": "0.12" }, "habia": { "pos": "n", "pol": "-0.292", "std": "0.144" }, "haizete": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "handikeria": { "pos": "n", "pol": "-0.321", "std": "0.134" }, "hanka-puntetan ibili": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "hanka-sartze": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hantuste": { "pos": "n", "pol": "-0.333", "std": "0.105" }, "haratustel": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "harro": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "haserrekor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hatsanditu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "hatsantu": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "hebain": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "hemorroide": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "herbal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "herdoil-onddo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "heriotza-epaile": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "herren egin": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "herrenka ibili": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "hezueri": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hezueria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "higuintzaile": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hil": { "pos": "v", "pol": "-0.26", "std": "0.111" }, "hilezintasun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hilezkortasun": { "pos": "n", "pol": "-0.312", "std": "0.265" }, "hilketa-arazoetarako epaile": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hipertrofia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hipokondriako": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hipokrisia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hiponimia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "histasun": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "histu": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "hizpide": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hoben": { "pos": "n", "pol": "-0.375", "std": "0.125" }, "hondamen": { "pos": "n", "pol": "-0.358", "std": "0.114" }, "hondar une": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hondatu": { "pos": "v", "pol": "-0.304", "std": "0.145" }, "hotz": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "hozmintze": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hurretasun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ilaurtze": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ilundu": { "pos": "v", "pol": "-0.312", "std": "0.093" }, "ilunpe": { "pos": "n", "pol": "-0.458", "std": "0.072" }, "iluntasun": { "pos": "n", "pol": "-0.354", "std": "0.062" }, "ilusio faltsu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "impromptu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inbaditzaile": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inertzia": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "inki-minki": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inkongruentzia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inkubazio-aldi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inmolazio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inozokeria": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "interdiktu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "intolerantzia": { "pos": "n", "pol": "-0.375", "std": "0.26" }, "intoxikazio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inuzente": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "ipurterre": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "irain": { "pos": "n", "pol": "-0.422", "std": "0.141" }, "irakasle lagun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "iratxo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "iraulaldi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "iraulkatze": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "irelu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "irendu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "irrigarri utzi": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "irrika izan": { "pos": "v", "pol": "-0.333", "std": "0.144" }, "iruzurkeria": { "pos": "n", "pol": "-0.3", "std": "0.112" }, "iruzurtu": { "pos": "v", "pol": "-0.417", "std": "0.0" }, "iseka": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "isileko": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "isileko jakituria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "iskanbilari": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "isun": { "pos": "n", "pol": "-0.333", "std": "0.0" }, "itsas-ekaitz": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "itsu": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "itsualdi": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "itsuskeria": { "pos": "n", "pol": "-0.469", "std": "0.072" }, "itsustasun": { "pos": "n", "pol": "-0.333", "std": "0.26" }, "itxura egin": { "pos": "v", "pol": "-0.437", "std": "0.265" }, "itxura izan": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "itxurati": { "pos": "n", "pol": "-0.292", "std": "0.0" }, "izen txar": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "izorratu": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "izumen": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "janari-zuntz": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "jaraunspen": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "jarki": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "jasan": { "pos": "v", "pol": "-0.354", "std": "0.166" }, "jende pila": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "jipoitu": { "pos": "v", "pol": "-0.292", "std": "0.0" }, "joputasun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "juanikote": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "junkie": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kaka zahar": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kaltedun": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "kalumnia": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "karrakagailu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kaskarro": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kasuista": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kasulari": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "katalepsia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "katalintzar": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kazkabar-erauntsi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kexa": { "pos": "n", "pol": "-0.35", "std": "0.112" }, "kexatu": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "kikilkeria": { "pos": "n", "pol": "-0.375", "std": "0.265" }, "kiratsa jario": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "kitsch": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "klitozibe": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "koarentena": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "kokots": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kolaborazionista": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kolekta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kondenatu": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "kongestio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kongruentziarik ez": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "konmozio": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "konmutazio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "konorte-galera": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "konplexutasun": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "kontenplatu": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "kontentagaitz": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kontraeraso": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "kontrakotasun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kopatu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "krimen": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kritikatu": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "kritikatzaile": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kulero": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "kulpa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kurbi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kurrinka": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "kutsatzaile": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lahar": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "laino-adar": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "lakartu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "langilezain": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lapurtu": { "pos": "v", "pol": "-0.264", "std": "0.055" }, "lardats": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "larrua egite": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "larrudura": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "larrutze": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "latz": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "lauso": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "laztasun": { "pos": "n", "pol": "-0.337", "std": "0.053" }, "laztu": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "lege-hauste": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "legenar": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lera izan": { "pos": "v", "pol": "-0.333", "std": "0.144" }, "lesio": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "libelo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "libre utzi": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "linimentu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lintxamendu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lisis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "liskarrean ari izan": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "liskartu": { "pos": "v", "pol": "-0.344", "std": "0.0" }, "lizuntasun": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "lohikeria": { "pos": "n", "pol": "-0.292", "std": "0.131" }, "lotsabide": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lotsagabe": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lotsagabekeria": { "pos": "n", "pol": "-0.273", "std": "0.128" }, "lurralde ezezagun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lurrustel": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "madarikazio": { "pos": "n", "pol": "-0.344", "std": "0.063" }, "makaltze": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "makula": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "malezia": { "pos": "n", "pol": "-0.4", "std": "0.105" }, "malformazio": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "maniako": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mari-gizon": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mari-mutiko": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "maritxu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "marmario": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "marmarrean ari izan": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "martirio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "martirizatu": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "mastagain": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "masterdi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "megalomano": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mehatxu": { "pos": "n", "pol": "-0.344", "std": "0.12" }, "menderaezintasun": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "menderakaitz": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mendi-bide": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "merkatu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "merkeegi saldu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "meza-otoitz": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "migraina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mildiu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "min-sastada": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "min-ziztada": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "min eman": { "pos": "v", "pol": "-0.281", "std": "0.161" }, "mintzagai": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "minusbalio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "miseria": { "pos": "n", "pol": "-0.417", "std": "0.125" }, "moldakaitz": { "pos": "n", "pol": "-0.458", "std": "0.072" }, "mufloi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "multa": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "mutiri": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "muturka": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nafarreri": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nagikerian ibili": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "nahasmen": { "pos": "n", "pol": "-0.275", "std": "0.153" }, "nahastuta egote": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "narras": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "naturaleza": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "naturaz gaindiko": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nazkagarrikeria": { "pos": "n", "pol": "-0.475", "std": "0.105" }, "neuralgia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neurasteniko": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neuritis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neurosi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neurotiko": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neutraltasun": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "ninfomania": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "norberekeria": { "pos": "n", "pol": "-0.437", "std": "0.354" }, "odol-piko": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ogro": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "oihuak": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "oihuka eraso": { "pos": "v", "pol": "-0.375", "std": "0.072" }, "oihukari": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "oihukatu": { "pos": "v", "pol": "-0.344", "std": "0.072" }, "oihukatze": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "oihulari": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "oin puntetan ibili": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "oinarrizko ezagutza": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "oka": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "okaztatu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "oker": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "oldartu": { "pos": "v", "pol": "-0.292", "std": "0.191" }, "onartezintasun": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "onddo pozoitsu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ordain sari": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ordara": { "pos": "n", "pol": "-0.333", "std": "0.217" }, "orroka egin": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "osasun-arazo": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "osmio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ospe txar": { "pos": "n", "pol": "-0.292", "std": "0.125" }, "osteomalazia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ozar": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ozarkeria": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "pairamen": { "pos": "n", "pol": "-0.375", "std": "0.19" }, "pairatu": { "pos": "v", "pol": "-0.45", "std": "0.168" }, "paparo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "papila": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "papismo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "paralitiko": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "paranoiko": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "paresia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "paroxismo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pello": { "pos": "n", "pol": "-0.458", "std": "0.072" }, "pesimista": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pijama": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pikante": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "piraña": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pitzatu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "plater-jaurtigailu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pleonasmo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pleurako min": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pleurodinia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pneumonia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "polemika": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "polizia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "polizia sekretu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "poluitzaile": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pozik ez dagoena": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pozoi": { "pos": "n", "pol": "-0.333", "std": "0.0" }, "presionatu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "primitibismo": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "problema": { "pos": "n", "pol": "-0.4", "std": "0.105" }, "prodromo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "psikopata": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "psikosi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "psikotiko": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "punk": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "purrust egin": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "purrustaka ari izan": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "purrustaka egon": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "putzontzi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sagutegi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sakailatzaile": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sakrifikatu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "sarramuska": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sarraski": { "pos": "n", "pol": "-0.375", "std": "0.063" }, "sarraskitzaile": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "sarrats": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sasiko": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "sastako": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "satan": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "scullery": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "senide-hilketa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "serologia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sesio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "setiatzaile": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sikomoro pikondo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "silikosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sinesbera": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "sineskor": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "sinkope": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "so egon": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "soberna": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sofisma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sofista": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sufrimen": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sukaldeondo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "suminkor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sumundu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "suntsipen": { "pos": "n", "pol": "-0.344", "std": "0.0" }, "suntsitu": { "pos": "v", "pol": "-0.287", "std": "0.062" }, "suntsitzaile": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "tabarda": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "talka egin": { "pos": "v", "pol": "-0.357", "std": "0.0" }, "talkatu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "taupadak egin": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "teilatu-hegal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tenkatasun": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "tentu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tinko ibiltze": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tira": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "tiroz hil": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "toke egin": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "toleskeria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tontokeria": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "tortikoli": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tortura": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "torturatzaile": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "toteltasun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "toxikomano": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tragedia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "traizio": { "pos": "n", "pol": "-0.275", "std": "0.125" }, "trakestasun": { "pos": "n", "pol": "-0.35", "std": "0.125" }, "trakets": { "pos": "n", "pol": "-0.275", "std": "0.068" }, "transmigrazio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "trantze": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "trauma": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "trauskil": { "pos": "n", "pol": "-0.375", "std": "0.063" }, "triki-traka": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "triskantza": { "pos": "n", "pol": "-0.406", "std": "0.072" }, "tumor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tupust egin": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "txapin": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "txerren": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "txikitu": { "pos": "v", "pol": "-0.281", "std": "0.064" }, "txikizio": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "txistualdi": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "txoke": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "txondor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "txoriburu": { "pos": "n", "pol": "-0.281", "std": "0.102" }, "txotxolo": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "ubeldura": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "ukabilkada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ukabilkada-saio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "umore txarreko": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "urakan": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "uredinale": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "urkamendu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "urkatze": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "urrako": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "usain txarra izan": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "usin egin": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "ustekabetasun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ustelezintasun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "usteljale": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ustelkeria": { "pos": "n", "pol": "-0.268", "std": "0.119" }, "usteltasun": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "usteltze": { "pos": "n", "pol": "-0.312", "std": "0.063" }, "utzikeria": { "pos": "n", "pol": "-0.312", "std": "0.072" }, "xake-mate": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "xaxatu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "zabar": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "zakarkeria": { "pos": "n", "pol": "-0.33", "std": "0.113" }, "zakartu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "zanpatzaile": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zapalkuntza": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "zapaltzaile": { "pos": "n", "pol": "-0.292", "std": "0.125" }, "zapore": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "zaratatsu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zartakoa eman": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "zartatu": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "zazpiki": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zehatu": { "pos": "v", "pol": "-0.312", "std": "0.051" }, "zehaztugabetasun": { "pos": "n", "pol": "-0.275", "std": "0.143" }, "zekenkeria": { "pos": "n", "pol": "-0.437", "std": "0.12" }, "zentsura": { "pos": "n", "pol": "-0.281", "std": "0.072" }, "zerri": { "pos": "n", "pol": "-0.312", "std": "0.051" }, "zezidio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zigortu": { "pos": "v", "pol": "-0.406", "std": "0.044" }, "zikin": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "zikinkeria": { "pos": "n", "pol": "-0.328", "std": "0.16" }, "zikintasun": { "pos": "n", "pol": "-0.396", "std": "0.194" }, "zikintze": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zikiratu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ziklotimia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zikoizkeria": { "pos": "n", "pol": "-0.4", "std": "0.137" }, "zilizio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zipristin": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zipristin-hots": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zirikaldi": { "pos": "n", "pol": "-0.375", "std": "0.125" }, "zital": { "pos": "n", "pol": "-0.26", "std": "0.129" }, "zitazio": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "zonbi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zorigaizto": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zoro": { "pos": "n", "pol": "-0.333", "std": "0.065" }, "zorrotz": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "zoster herpes": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zuhurkeria": { "pos": "n", "pol": "-0.437", "std": "0.12" }, "zuhurtziarik ez": { "pos": "n", "pol": "-0.417", "std": "0.144" }, "zurdatz": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zurmindura": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zurruntasun": { "pos": "n", "pol": "-0.475", "std": "0.163" }, "ñabardura": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "abantaila": { "pos": "n", "pol": "0.25", "std": "0.354" }, "aberrazio optiko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abertzaletasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abeze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abioi-txartel": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abonu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abrakadabra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "absortzio-faktore": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adierazi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adierazte": { "pos": "n", "pol": "0.25", "std": "0.0" }, "administrazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adoleszente": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adoratzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ados jarri": { "pos": "v", "pol": "0.25", "std": "0.0" }, "adoste": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adrenalina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aerobio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "afektu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "afiliatze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "agape": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ageri izan": { "pos": "v", "pol": "0.25", "std": "0.0" }, "agerian utzi": { "pos": "v", "pol": "0.25", "std": "0.0" }, "agortze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aguardient": { "pos": "n", "pol": "0.25", "std": "0.0" }, "agurgarri": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ahal izan": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ahalbide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ahogozo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aholkulari": { "pos": "n", "pol": "0.25", "std": "0.072" }, "ailegatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "aingerutxo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aintzat hatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "aitzur luze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "akademia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "akordio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "akreditazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "akziodunen batzar nagusi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "akziodunen batzar orokor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alanbre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alara": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alartze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aldagarri": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aldapan gora": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alde izan": { "pos": "v", "pol": "0.25", "std": "0.0" }, "aldez aurretik pentsatze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aldi berean egon": { "pos": "v", "pol": "0.25", "std": "0.0" }, "aldi bereko izan": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ale berezi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alegazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "algoritmo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aliatu": { "pos": "n", "pol": "0.25", "std": "0.177" }, "almaiz-kirten": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amarratu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "amharera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anabaptismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anabolismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anatomista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anbizio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antigoalekoen merkatari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antigoalekoen saltzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antikuario": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antilope": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antolatze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antzeko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antzekotasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antzerki grekoko korua": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antzezlan": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antzinako": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antzinakoen merkatari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antzinakoen saltzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apaingarritasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apezpikutza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apo-hontz": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apogeo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apokope": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apologia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aproposa izan": { "pos": "v", "pol": "0.25", "std": "0.0" }, "araknido": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ararteko": { "pos": "n", "pol": "0.25", "std": "0.177" }, "arduratasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "argi-indarra eta ura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "argitasun": { "pos": "n", "pol": "0.25", "std": "0.175" }, "argudio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ariete": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ariketa": { "pos": "n", "pol": "0.25", "std": "0.088" }, "aritmetika": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arkulari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aro historiko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arrailari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arrakasta handia den": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arratoi-katu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arraun luze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arrautza-suspilo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arrazionalizazio": { "pos": "n", "pol": "0.25", "std": "0.177" }, "arrazista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arrimatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "arropa egin": { "pos": "v", "pol": "0.25", "std": "0.0" }, "artasun": { "pos": "n", "pol": "0.25", "std": "0.177" }, "arteko": { "pos": "n", "pol": "0.25", "std": "0.177" }, "artisau-lan": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aseguru": { "pos": "n", "pol": "0.25", "std": "0.125" }, "asepsia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "askatzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aspaldiko": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aspaldiko egia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aterpea eman": { "pos": "v", "pol": "0.25", "std": "0.0" }, "atletismo-lehiaketa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "atoiontzi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "atrio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "atsotitz": { "pos": "n", "pol": "0.25", "std": "0.0" }, "atzazaletako eskuila": { "pos": "n", "pol": "0.25", "std": "0.0" }, "atzea eman": { "pos": "n", "pol": "0.25", "std": "0.0" }, "atzerakoi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "atzetik emandako golpe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aukera eman": { "pos": "v", "pol": "0.25", "std": "0.0" }, "aukeratze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aurkeztu dena": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aurpegialde": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aurpegian jo": { "pos": "v", "pol": "0.25", "std": "0.0" }, "aurrea hartze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aurreproiektu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aurrerakoitasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aurrerapauso": { "pos": "n", "pol": "0.25", "std": "0.072" }, "aurresuposatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "aurretiko joera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aurrez ezagutze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aurrezagutza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aurrezki-kutxa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aurrezki-libreta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "auto-bidaiari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "auzi-gela": { "pos": "n", "pol": "0.25", "std": "0.0" }, "axiologia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "axola": { "pos": "n", "pol": "0.25", "std": "0.0" }, "azeleratze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "azkar igaro": { "pos": "v", "pol": "0.25", "std": "0.0" }, "azkar pasa": { "pos": "v", "pol": "0.25", "std": "0.0" }, "azkartasun ": { "pos": "n", "pol": "0.25", "std": "0.0" }, "azken judizioko egun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "azken kontuetako egun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "azpijoko": { "pos": "n", "pol": "0.25", "std": "0.125" }, "azpikontinente": { "pos": "n", "pol": "0.25", "std": "0.0" }, "babesa eman": { "pos": "v", "pol": "0.25", "std": "0.0" }, "bahi-denda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bahitze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "baiespen": { "pos": "n", "pol": "0.25", "std": "0.143" }, "baliagarri izan": { "pos": "v", "pol": "0.25", "std": "0.0" }, "baliagarritasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "baliogutxitze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "balore-merkatu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "balore bihurgarri": { "pos": "n", "pol": "0.25", "std": "0.0" }, "baloreen merkatu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "banakako mahai-tresneria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "banakotasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "banatzaile automatiko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "baregarri": { "pos": "n", "pol": "0.25", "std": "0.0" }, "barietate": { "pos": "n", "pol": "0.25", "std": "0.354" }, "barizentro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "barneko mediku": { "pos": "n", "pol": "0.25", "std": "0.0" }, "barneragarritasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "barnerakoi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "barre": { "pos": "n", "pol": "0.25", "std": "0.072" }, "basailu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "baso-soiltze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bat-etortze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bateatze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "batera existitu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "beatifikazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "begi-estalki": { "pos": "n", "pol": "0.25", "std": "0.0" }, "begi-globo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "begi-keinu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "begi keinu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "begiespen": { "pos": "n", "pol": "0.25", "std": "0.0" }, "begirada": { "pos": "n", "pol": "0.25", "std": "0.177" }, "begiraldi": { "pos": "n", "pol": "0.25", "std": "0.177" }, "begiratu": { "pos": "n", "pol": "0.25", "std": "0.177" }, "behar egin": { "pos": "v", "pol": "0.25", "std": "0.0" }, "beheko su": { "pos": "n", "pol": "0.25", "std": "0.0" }, "behera bota": { "pos": "v", "pol": "0.25", "std": "0.0" }, "behin-behineko neurri": { "pos": "n", "pol": "0.25", "std": "0.0" }, "behin-betikotasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "beilari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bel": { "pos": "n", "pol": "0.25", "std": "0.0" }, "belar puska": { "pos": "n", "pol": "0.25", "std": "0.0" }, "belaxkatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "belus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "beneratu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "berberetxo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "berdatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "berdintasun": { "pos": "n", "pol": "0.25", "std": "0.177" }, "berehala igaro": { "pos": "v", "pol": "0.25", "std": "0.0" }, "bereizkeria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bermatzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "berme-emaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "berokuntza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "berregin": { "pos": "v", "pol": "0.25", "std": "0.0" }, "berreskuragailu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "berrespen": { "pos": "n", "pol": "0.25", "std": "0.177" }, "berrikatan ari izan": { "pos": "v", "pol": "0.25", "std": "0.0" }, "berriro argudiatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "berriro arrazoitu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "berriro sinatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "berriro zabaldu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "berriz ireki": { "pos": "v", "pol": "0.25", "std": "0.0" }, "besaulki": { "pos": "n", "pol": "0.25", "std": "0.0" }, "besaulki-barla": { "pos": "n", "pol": "0.25", "std": "0.0" }, "besaulki-patio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "besaurre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "beste erlijio bat hartu duena": { "pos": "n", "pol": "0.25", "std": "0.0" }, "betazal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "betearazte": { "pos": "n", "pol": "0.25", "std": "0.0" }, "betetasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "biba": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bibliotekonomia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bidali": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bihotz-handitasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bihotz-zabaltasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bihurgarritasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "biltoki": { "pos": "n", "pol": "0.25", "std": "0.0" }, "biosaiakuntza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "biraogile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "biraolari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "biribildu": { "pos": "v", "pol": "0.25", "std": "0.391" }, "birsortu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "bisa ipini": { "pos": "v", "pol": "0.25", "std": "0.0" }, "bisa jarri": { "pos": "v", "pol": "0.25", "std": "0.0" }, "bitalista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bizialdi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bizigai": { "pos": "n", "pol": "0.25", "std": "0.0" }, "biziraun": { "pos": "v", "pol": "0.25", "std": "0.177" }, "bizirik iraun": { "pos": "v", "pol": "0.25", "std": "0.177" }, "bizitza-luzera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bizkar-makur": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bizkar eman ": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bizkortasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bokalizazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bonba su-eragile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "boom": { "pos": "n", "pol": "0.25", "std": "0.0" }, "botari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "botila-berde": { "pos": "n", "pol": "0.25", "std": "0.0" }, "boto-eskubide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bozina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brahmanismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brinbel": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brozel-kamioi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bulartsu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "burdin hari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "burtsa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "burtsa-merkatu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "buru-irudikapen": { "pos": "n", "pol": "0.25", "std": "0.0" }, "burura etorri": { "pos": "v", "pol": "0.25", "std": "0.0" }, "burusi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "burutik ezin kendu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "buztingintza": { "pos": "n", "pol": "0.25", "std": "0.177" }, "cephalopoda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cicerone": { "pos": "n", "pol": "0.25", "std": "0.0" }, "croquet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cross-country": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dadaismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "definitu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "defizit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "deforestazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "delineante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "denboraldi": { "pos": "n", "pol": "0.25", "std": "0.177" }, "despenalizazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "despentsari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "determinatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "diakritiko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dialektikari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dialektiko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dibertimendu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dibortziatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "dibortzio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "difusore": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diminuendo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diploma": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diptongo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diru-etorri": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diru-laguntza eman": { "pos": "v", "pol": "0.25", "std": "0.0" }, "disekzionatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "diskriminazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "distiratze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "disziplinario": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dohatsu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "doktrina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dorretxo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dosifikatzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dotoretze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "drama musikal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "e": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ebaketa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ebaketa-puntu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ebanjelizazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ebazpide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "edari": { "pos": "n", "pol": "0.25", "std": "0.177" }, "edateko": { "pos": "n", "pol": "0.25", "std": "0.177" }, "edertasun-produktu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "editore": { "pos": "n", "pol": "0.25", "std": "0.0" }, "edukazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "edulkoratu": { "pos": "v", "pol": "0.25", "std": "0.088" }, "egiaztagiri": { "pos": "n", "pol": "0.25", "std": "0.125" }, "eginkizun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "egitate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "egiteko": { "pos": "n", "pol": "0.25", "std": "0.088" }, "egokia izan": { "pos": "v", "pol": "0.25", "std": "0.0" }, "egokigailu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "egonkortu": { "pos": "v", "pol": "0.25", "std": "0.26" }, "egonkortzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "egozketa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eguberri-kanta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "egutegi gregoriotar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ekidite": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eklektiko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eklektizismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ekonomilari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ekonomista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ekosistema": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ekumenismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "elektrifikazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "elektroforesi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "elikatu": { "pos": "v", "pol": "0.25", "std": "0.161" }, "elite": { "pos": "n", "pol": "0.25", "std": "0.0" }, "elitismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eliz-dei": { "pos": "n", "pol": "0.25", "std": "0.0" }, "elizain": { "pos": "n", "pol": "0.25", "std": "0.0" }, "elizkizuna egin": { "pos": "v", "pol": "0.25", "std": "0.0" }, "elkar aditze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "elkar hartze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "elkar ulertze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "elkargokide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "elkarri egin": { "pos": "v", "pol": "0.25", "std": "0.0" }, "elkarte erlijioso": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eltzeitsu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "emir": { "pos": "n", "pol": "0.25", "std": "0.0" }, "endogamia": { "pos": "n", "pol": "0.25", "std": "0.177" }, "endosatzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "endosu-emaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enpirismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enpresa erasotzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "entretenimendu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "entziklopedia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "entziklopedista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "entzumen": { "pos": "n", "pol": "0.25", "std": "0.191" }, "epaiketa-gela": { "pos": "n", "pol": "0.25", "std": "0.0" }, "epaitza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "epigrama": { "pos": "n", "pol": "0.25", "std": "0.0" }, "epinefrina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "epistemologia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erabilgarri izan": { "pos": "v", "pol": "0.25", "std": "0.0" }, "erabiltze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eragina izan": { "pos": "v", "pol": "0.25", "std": "0.0" }, "eragozpenak gainditu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "erakarle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erakusbide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erantzunbehar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eratze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erietxe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eritegi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erlastar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erlijioso-elkarte": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erlijioz aldatu dena": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erlijiozko musika": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erlikitegi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erlojugintza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ernagarri": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ernetasun": { "pos": "n", "pol": "0.25", "std": "0.177" }, "erosi": { "pos": "v", "pol": "0.25", "std": "0.0" }, "erostetxe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erratz-makila": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erreakzionario": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erreberberazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "errebindikazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "errebisionismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erreformatorio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erreformatzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erreformista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "errefrau": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erregalatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "errege-sagar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erregulatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "errentadun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "errepaso": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erreskate": { "pos": "n", "pol": "0.25", "std": "0.449" }, "erretore": { "pos": "n", "pol": "0.25", "std": "0.0" }, "errezelak jarri": { "pos": "v", "pol": "0.25", "std": "0.0" }, "errinoplastia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erritmo sinkopatu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "errokari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "errotzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ertzeko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esaera zahar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esanezina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esgrimalari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eskailera-maila": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eskaintza egiten duena": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eskarmentu": { "pos": "n", "pol": "0.25", "std": "0.177" }, "eskas eman": { "pos": "v", "pol": "0.25", "std": "0.0" }, "eskoba-makila": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eskora": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eskubaloi-pilota": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eskuburdinak jarri": { "pos": "v", "pol": "0.25", "std": "0.0" }, "eskuduntza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eskupekoa eman": { "pos": "v", "pol": "0.25", "std": "0.072" }, "eskuzabal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eskuzabaltasun": { "pos": "n", "pol": "0.25", "std": "0.15" }, "esleitu": { "pos": "v", "pol": "0.25", "std": "0.072" }, "espazio-ontzi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "espazio topologiko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "espektrofotometro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "espiga": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esplikatu": { "pos": "v", "pol": "0.25", "std": "0.088" }, "esposatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "espresio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estalpea eman": { "pos": "v", "pol": "0.25", "std": "0.0" }, "estepa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estilo libre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estiloa eman": { "pos": "v", "pol": "0.25", "std": "0.0" }, "estimazio": { "pos": "n", "pol": "0.25", "std": "0.177" }, "estimulatzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estimulu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estra": { "pos": "n", "pol": "0.25", "std": "0.217" }, "etnologia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "etnozentrismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "etortze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "etxe-abere": { "pos": "n", "pol": "0.25", "std": "0.0" }, "etxe handi eta dotorea": { "pos": "n", "pol": "0.25", "std": "0.0" }, "etxejabe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "etxejaun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "etxekotze": { "pos": "n", "pol": "0.25", "std": "0.191" }, "etxetresna elektriko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "euskarri egitura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "euskarri izan": { "pos": "v", "pol": "0.25", "std": "0.0" }, "euste-puntu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "exigitu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "existentzialismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ezagun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ezagutze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ezatsegin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ezetza eman": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ezin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ezizena eman": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ezizena jarri": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ezkila": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ezkon-hitz": { "pos": "n", "pol": "0.25", "std": "0.177" }, "ezkon-neba": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ezkonanaia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ezkondei": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ezkondu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ezkontza-ahaidetasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ezkontza hautsi": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ezkontzeko mandatu egin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ezkutuko begirada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ezpata-buru": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ezpatari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eztanda txiki": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eztialdi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "faetoi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fama": { "pos": "n", "pol": "0.25", "std": "0.311" }, "fede-aldaketa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fededun": { "pos": "n", "pol": "0.25", "std": "0.072" }, "fededun berri": { "pos": "n", "pol": "0.25", "std": "0.0" }, "festa egin": { "pos": "v", "pol": "0.25", "std": "0.0" }, "fetitxe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fetix": { "pos": "n", "pol": "0.25", "std": "0.0" }, "feudalismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fidelitate": { "pos": "n", "pol": "0.25", "std": "0.177" }, "fideltasun": { "pos": "n", "pol": "0.25", "std": "0.177" }, "finketa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fluoreszente": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fonologia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "forma-aldaketa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "forma eman": { "pos": "v", "pol": "0.25", "std": "0.0" }, "formalitate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fortuna": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fotokimika": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fotometro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "franela": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fraseologia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "froga-harri": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fular": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gag": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gailentasun": { "pos": "n", "pol": "0.25", "std": "0.088" }, "gainbeheratze": { "pos": "n", "pol": "0.25", "std": "0.088" }, "gaineakatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "gainezkatze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gaizkile-talde": { "pos": "n", "pol": "0.25", "std": "0.0" }, "galde-perpaus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "galdekatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "galderazko perpaus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "galeper": { "pos": "n", "pol": "0.25", "std": "0.177" }, "galtzak egiteko ehun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gapirio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "garbikuntza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gargara": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gargara-hots": { "pos": "n", "pol": "0.25", "std": "0.0" }, "garranga": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gasolina-zerbitzugune": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gasolindegi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gatzari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gauza bitxi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gauza ziur": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gaztetasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gehiegizko esposizio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gehiengo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "geografo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "geopolitika": { "pos": "n", "pol": "0.25", "std": "0.0" }, "germanismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gerra-egoera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gertaera gogoangarri": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gezal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gibelkari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gihar-indar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "giltzaz zabaldu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "gimnasta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "giristino": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gizabanako": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gizajo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gizon-emakume": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gizon-puska": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gizonkote": { "pos": "n", "pol": "0.25", "std": "0.0" }, "glamour": { "pos": "n", "pol": "0.25", "std": "0.0" }, "go-joko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gogo handi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "goi-klase": { "pos": "n", "pol": "0.25", "std": "0.354" }, "goi-mailako irakaskuntza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "goiko klase": { "pos": "n", "pol": "0.25", "std": "0.354" }, "goitasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "golardatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "golardoa eman": { "pos": "v", "pol": "0.25", "std": "0.0" }, "golegile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "golf": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gora": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gora joan": { "pos": "v", "pol": "0.25", "std": "0.0" }, "gordetzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gortinak jarri": { "pos": "v", "pol": "0.25", "std": "0.0" }, "gotzaintza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gradu-beherapen": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gradu-kentze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gramofono": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gurtzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gurutz-ontzi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "haborokin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "haikatu": { "pos": "v", "pol": "0.25", "std": "0.354" }, "haizutasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "handipuzkeria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "handizaletasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "handizkako denda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "haraindikotasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "harlandu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "harlauza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "harlax": { "pos": "n", "pol": "0.25", "std": "0.0" }, "harmonizatu": { "pos": "v", "pol": "0.25", "std": "0.153" }, "harrera": { "pos": "n", "pol": "0.25", "std": "0.354" }, "harri zabal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "haur eder": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hautagarritasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hautakortasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hautatze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hautemanarazi": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hautespen": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hazibide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hazitoki": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hazkurri": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hedatzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hegazkin-txartel": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hegazti-abeslari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hegazti-kantari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hein": { "pos": "n", "pol": "0.25", "std": "0.0" }, "heuristika": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hezibide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "heziera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hezkuntza berezi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hezur eta azal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hezur eta larru": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hezur huts": { "pos": "n", "pol": "0.25", "std": "0.0" }, "higidura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "higikortasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hil-kapera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hinduismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hipergluzemia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hipnotizatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hiruhortz": { "pos": "n", "pol": "0.25", "std": "0.0" }, "histrionismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hitzarmen": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hitzartu": { "pos": "v", "pol": "0.25", "std": "0.354" }, "hitzartze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hobea dena": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hockey": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hodi fluoreszente": { "pos": "n", "pol": "0.25", "std": "0.0" }, "homogeneotasun": { "pos": "n", "pol": "0.25", "std": "0.265" }, "homosexualitate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hondeaitzur": { "pos": "n", "pol": "0.25", "std": "0.0" }, "horda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hortz-eskuila": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hortz-sustrai": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hortzetako eskuila": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hozte-sistema": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hunkiberatasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hurbileko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hustutasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hustutze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "huts egin": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hutsezintasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "idealista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "iguriki": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ihes egite": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ikaraio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ikasketa": { "pos": "n", "pol": "0.25", "std": "0.088" }, "ikaskuntza": { "pos": "n", "pol": "0.25", "std": "0.177" }, "ikastaldi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ikastaro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ikusbide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ikusmen zoli": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ikuzi": { "pos": "v", "pol": "0.25", "std": "0.191" }, "inboluzionista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "indarrak neurtu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "inflazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "informatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ingeniari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inguruko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inhibitzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "injineru": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inkubatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "inkubazio": { "pos": "n", "pol": "0.25", "std": "0.177" }, "inmobilista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inpaktu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inposaketa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inpresionismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "intuizionismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "intzestu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ionosfera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ipurtondo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "irabazi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "irabazkin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "iragazgaiztasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "irakasbide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "iraulki-kamioi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "iris": { "pos": "n", "pol": "0.25", "std": "0.0" }, "iritsi": { "pos": "v", "pol": "0.25", "std": "0.0" }, "irizpide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "irri-eragile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "irrintzi egin": { "pos": "v", "pol": "0.25", "std": "0.0" }, "irteera-marra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "irteerako marra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "irudikapen-prozesu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "irudikapen mental": { "pos": "n", "pol": "0.25", "std": "0.0" }, "irudikatze": { "pos": "n", "pol": "0.25", "std": "0.177" }, "irudizko leku": { "pos": "n", "pol": "0.25", "std": "0.0" }, "irudizko mundu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "isildu": { "pos": "v", "pol": "0.25", "std": "0.088" }, "isilik egon": { "pos": "v", "pol": "0.25", "std": "0.088" }, "isilmandatu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "itsulapiko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "itun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "itxaro izan": { "pos": "v", "pol": "0.25", "std": "0.0" }, "itxi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "itxuratu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "itzulgarritasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "izadi-zaintza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "izengoitia eman": { "pos": "v", "pol": "0.25", "std": "0.0" }, "izengoitia jarri": { "pos": "v", "pol": "0.25", "std": "0.0" }, "izenpetu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "izenpetzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "izotz-hausteko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jai aldakor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jai egin": { "pos": "v", "pol": "0.25", "std": "0.0" }, "jai erlijioso": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jaidura": { "pos": "n", "pol": "0.25", "std": "0.072" }, "jaikigarri": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jaki-zatitzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jakinduria": { "pos": "n", "pol": "0.25", "std": "0.144" }, "jakitate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jakituria": { "pos": "n", "pol": "0.25", "std": "0.144" }, "jan-edan": { "pos": "n", "pol": "0.25", "std": "0.0" }, "janari-hornitzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "janari-prestatzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jangarri": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jankide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jantzi-erantzi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jantziak egin": { "pos": "v", "pol": "0.25", "std": "0.0" }, "jarduera ez": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jardute": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jauresle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jaurtigairik gabeko kartutxo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jazena": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jendarteratze": { "pos": "n", "pol": "0.25", "std": "0.177" }, "jesarleku": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jokatze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jolas egin": { "pos": "v", "pol": "0.25", "std": "0.0" }, "jolaste": { "pos": "n", "pol": "0.25", "std": "0.088" }, "jolastu": { "pos": "v", "pol": "0.25", "std": "0.345" }, "jostailu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kafesne": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kalamina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kale-agerraldi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kale egin": { "pos": "v", "pol": "0.25", "std": "0.0" }, "kaligrafo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kalistenia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kamera-plataforma": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kanon": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kanonista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kanonizazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kanpai-hots": { "pos": "n", "pol": "0.25", "std": "0.144" }, "kanpo utzi": { "pos": "v", "pol": "0.25", "std": "0.177" }, "kantadera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kantata": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kantitu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "kapitulazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "karabina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "karamelu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "karikatura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "karitatezko erakunde": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kastitate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "katastro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "katedra-askatasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kea jario": { "pos": "v", "pol": "0.25", "std": "0.0" }, "kementsu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "keratoplastia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kerubin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kidekotasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kirika": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kizkurtasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "koadernaketa-lantegi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "koadernatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "kohesio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "koinat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "koinatu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "koka": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kokaina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kolka": { "pos": "n", "pol": "0.25", "std": "0.0" }, "komediante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "komentsal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "komeria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "komiko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "komite": { "pos": "n", "pol": "0.25", "std": "0.0" }, "konbentzionalismo": { "pos": "n", "pol": "0.25", "std": "0.072" }, "konbertitu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "konduktu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "konfidentzia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "konkistatze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "konklabe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "konpainia bateratu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "konpainiako animalia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kontabilitateko egoera-orri": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kontrol-baldintza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kontseilari": { "pos": "n", "pol": "0.25", "std": "0.072" }, "kontserbadore": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kontsumitzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kontulari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "koordinakunde": { "pos": "n", "pol": "0.25", "std": "0.0" }, "korta-mutil": { "pos": "n", "pol": "0.25", "std": "0.0" }, "koskak berdindu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "kosmetiko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kriket": { "pos": "n", "pol": "0.25", "std": "0.0" }, "krisketa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kristalino": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kristau": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kristau-jakinbide": { "pos": "n", "pol": "0.25", "std": "0.177" }, "kros": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kualitate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kudeaketa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kuku-erloju": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kulata": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kultua eman": { "pos": "v", "pol": "0.25", "std": "0.0" }, "kurruka": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kurtsore": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lagunarteko festa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "laia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "laikotasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "laikotza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "laizismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lan-harreman": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lanabes": { "pos": "n", "pol": "0.25", "std": "0.0" }, "landare-sare": { "pos": "n", "pol": "0.25", "std": "0.0" }, "langile-mugimendua": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lanordu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lanpostu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lasaiera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lasaitzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lateralitate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "legalizazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "legea atera": { "pos": "v", "pol": "0.25", "std": "0.0" }, "legea egin": { "pos": "v", "pol": "0.25", "std": "0.0" }, "legeak atera": { "pos": "v", "pol": "0.25", "std": "0.0" }, "legeak egin": { "pos": "v", "pol": "0.25", "std": "0.0" }, "legeztapen": { "pos": "n", "pol": "0.25", "std": "0.0" }, "leheneratu": { "pos": "v", "pol": "0.25", "std": "0.125" }, "lehengoratu": { "pos": "v", "pol": "0.25", "std": "0.125" }, "lehian ari izan": { "pos": "v", "pol": "0.25", "std": "0.0" }, "leku ezagun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lekukotasuna egin": { "pos": "v", "pol": "0.25", "std": "0.0" }, "lekukotasuna eman": { "pos": "v", "pol": "0.25", "std": "0.0" }, "leunketa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "leuntzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "libazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "liberalismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "liberaltasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "libratzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "libreganbio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "liburu-euskarri": { "pos": "n", "pol": "0.25", "std": "0.0" }, "liburu-sitsa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "liburuei eusteko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "likantropia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "limnologia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "literatur genero": { "pos": "n", "pol": "0.25", "std": "0.0" }, "literatura-konposizio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lizentzia": { "pos": "n", "pol": "0.25", "std": "0.088" }, "loezin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "logale": { "pos": "n", "pol": "0.25", "std": "0.0" }, "logura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "loka": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lorbide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "losentxari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lurrera bota": { "pos": "v", "pol": "0.25", "std": "0.0" }, "luzaketa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "luzaroan iraun": { "pos": "v", "pol": "0.25", "std": "0.0" }, "luzatze-ariketa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "luze iraun": { "pos": "v", "pol": "0.25", "std": "0.0" }, "madarikatzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mahai-tenis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mahainguru": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mahaizain": { "pos": "n", "pol": "0.25", "std": "0.0" }, "maila goren": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mailegari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mailegatzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mailegu-emaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mailegu-hartzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "maitatzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "maitemindu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "maitre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "makina sinple": { "pos": "n", "pol": "0.25", "std": "0.0" }, "maldan gora": { "pos": "n", "pol": "0.25", "std": "0.0" }, "maneiakaiztasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "manifestazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "manipulatze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "manipulazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "manta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "maraztasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "markagailu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "markagailuaren arduradun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "markazain": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marralari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marrazo muturluze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "maskulinitate": { "pos": "n", "pol": "0.25", "std": "0.177" }, "maskulinotasun": { "pos": "n", "pol": "0.25", "std": "0.177" }, "masokista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "materialtasun": { "pos": "n", "pol": "0.25", "std": "0.088" }, "mediana": { "pos": "n", "pol": "0.25", "std": "0.0" }, "men egite": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mendi-lepo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mendi-tontor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mentura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "merenge": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metafisika": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metakarpo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metronomo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mezadun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mezako": { "pos": "n", "pol": "0.25", "std": "0.0" }, "militarizazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mintz tinpaniko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mintzamolde": { "pos": "n", "pol": "0.25", "std": "0.0" }, "miresle": { "pos": "n", "pol": "0.25", "std": "0.072" }, "misio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "misiolaritza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mistiko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mitologo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "modaren industria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mokolodi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "moldagailu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "moneta-aldaketa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "monoteismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "monsinore": { "pos": "n", "pol": "0.25", "std": "0.0" }, "monumentu": { "pos": "n", "pol": "0.25", "std": "0.177" }, "moraltasun": { "pos": "n", "pol": "0.25", "std": "0.265" }, "motibazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "motrizitate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mozkin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mugikortasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mugimendu ekumeniko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "musika erlijioso": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mutil-puska": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mutil katxarro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mututu": { "pos": "v", "pol": "0.25", "std": "0.088" }, "nabari izan": { "pos": "v", "pol": "0.25", "std": "0.0" }, "nabariarazi": { "pos": "v", "pol": "0.25", "std": "0.0" }, "nabarituarazi": { "pos": "v", "pol": "0.25", "std": "0.0" }, "naturaren kontserbazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nazionalismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "negu-muga": { "pos": "n", "pol": "0.25", "std": "0.0" }, "neguburu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "neoklasizismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nerabe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "neurririk ez": { "pos": "n", "pol": "0.25", "std": "0.0" }, "niki": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nomada-talde": { "pos": "n", "pol": "0.25", "std": "0.0" }, "norgehiagoka ari izan": { "pos": "v", "pol": "0.25", "std": "0.0" }, "nork bere buruari galdetu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "notazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "offset": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ofrenda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ogi-opil": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ohar-taula": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oharmen": { "pos": "n", "pol": "0.25", "std": "0.088" }, "ohe estalki": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ohorezko aipamen": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oin sendagintza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oinarrizko ezagutza-prozesu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oinezkoentzako zubi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oliatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "omenaldi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ondo egoki": { "pos": "v", "pol": "0.25", "std": "0.0" }, "oneratze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "onetsi": { "pos": "v", "pol": "0.25", "std": "0.167" }, "ontzi izotz-hausle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "opari egin": { "pos": "v", "pol": "0.25", "std": "0.0" }, "oratorio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ordaintzaile berankor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "orgasmo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "orojakintza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "orojakite": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oso gozo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oso zahar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ospetsu": { "pos": "n", "pol": "0.25", "std": "0.088" }, "ospitale": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ospitalizazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ostatatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ostatu eman": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ostatu emate": { "pos": "n", "pol": "0.25", "std": "0.177" }, "ostatu hartze": { "pos": "n", "pol": "0.25", "std": "0.177" }, "osteopatia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ostertz": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ostia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "otargin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "otarregile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "otarregintza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "otoitz-orduen liburu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "otoiztegi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "otzaragile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ozen berba egin": { "pos": "v", "pol": "0.25", "std": "0.0" }, "pagoda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "parada eman": { "pos": "v", "pol": "0.25", "std": "0.0" }, "paradisu": { "pos": "n", "pol": "0.25", "std": "0.088" }, "paraje": { "pos": "n", "pol": "0.25", "std": "0.0" }, "partitzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pase sakon": { "pos": "n", "pol": "0.25", "std": "0.0" }, "patronal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "patruilatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "patruilatze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pediatra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pelegrino": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pellokeria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pentsio-plan": { "pos": "n", "pol": "0.25", "std": "0.0" }, "perihelio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "perkusio-instrumentu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "perkusiozko instrumentu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pertsonal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "petrolio-zurrusta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pilote": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ping-pong": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pisu baliokide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "piztien etxe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "planifikatze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "plankton": { "pos": "n", "pol": "0.25", "std": "0.0" }, "plast egin": { "pos": "v", "pol": "0.25", "std": "0.0" }, "plataforma birakari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "platuxa latz": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pluralista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "podologo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "poema sinfoniko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "polaroid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "polisindeton": { "pos": "n", "pol": "0.25", "std": "0.0" }, "populismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "portzelana": { "pos": "n", "pol": "0.25", "std": "0.125" }, "positibismo logiko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "posta elektronikoz igorri": { "pos": "v", "pol": "0.25", "std": "0.0" }, "postmodernismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prediku": { "pos": "n", "pol": "0.25", "std": "0.088" }, "preso politiko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "probokazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "produktu-lerro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "profesa": { "pos": "n", "pol": "0.25", "std": "0.088" }, "profesionalismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "programa berezi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "programazio logiko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prostituzio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prototipo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "publiko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "publizitate-agentzia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "punta-puntakoa den": { "pos": "n", "pol": "0.25", "std": "0.0" }, "punteatze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "puntu geografiko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "puntua egin duena": { "pos": "n", "pol": "0.25", "std": "0.0" }, "purutasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pusla": { "pos": "n", "pol": "0.25", "std": "0.0" }, "puzzle": { "pos": "n", "pol": "0.25", "std": "0.125" }, "quark": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rapport": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rep": { "pos": "n", "pol": "0.25", "std": "0.0" }, "saiheste": { "pos": "n", "pol": "0.25", "std": "0.0" }, "saindutasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sakalari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sakatzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sakea-ateratzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sakoneko pase": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sakristau": { "pos": "n", "pol": "0.25", "std": "0.0" }, "salakeria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "salketarako abilezia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "saltegi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "saltoki": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sanskrito": { "pos": "n", "pol": "0.25", "std": "0.0" }, "santutasun": { "pos": "n", "pol": "0.25", "std": "0.125" }, "sariketa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "saritu": { "pos": "v", "pol": "0.25", "std": "0.072" }, "saskigile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "saskiratzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "segida ekologiko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "segurtasun-sistema": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sekretismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sekta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "self-service": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sendategi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "serbomekanismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sesto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "setter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sex-appeal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sexista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sexu-jarduera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "silarri": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sinatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "sinatzaile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sinesbide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sineste": { "pos": "n", "pol": "0.25", "std": "0.265" }, "sinistarazi": { "pos": "v", "pol": "0.25", "std": "0.0" }, "sinkronia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sinkronismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sintonizatze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sintonizazio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sofistikazio": { "pos": "n", "pol": "0.25", "std": "0.265" }, "soineko": { "pos": "n", "pol": "0.25", "std": "0.217" }, "soinua sortu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "solasean ari izan": { "pos": "v", "pol": "0.25", "std": "0.0" }, "solastu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "soldatu": { "pos": "v", "pol": "0.25", "std": "0.177" }, "sorospen-postu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sozialki nabarmena dena": { "pos": "n", "pol": "0.25", "std": "0.0" }, "subjektibismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "subjektibotasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "subkultura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sufragio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sulfamida": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sulfonamida": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sumatuarazi": { "pos": "v", "pol": "0.25", "std": "0.0" }, "swing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "takimetro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "talde-lan": { "pos": "n", "pol": "0.25", "std": "0.0" }, "talentu": { "pos": "n", "pol": "0.25", "std": "0.144" }, "tapaki": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tapoi-hots": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tarrotu": { "pos": "v", "pol": "0.25", "std": "0.088" }, "taxutze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "te-etxe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "teknologo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "telefono-etxe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tenis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tentaldi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "teosofia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tesina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "test psikometriko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "testigantza eman": { "pos": "v", "pol": "0.25", "std": "0.0" }, "testigutza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tiket": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tinpano": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tintin egin": { "pos": "v", "pol": "0.25", "std": "0.177" }, "tiuta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tokoferol": { "pos": "n", "pol": "0.25", "std": "0.0" }, "topa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "topaleku": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trabatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "tradizio": { "pos": "n", "pol": "0.25", "std": "0.177" }, "tragikomedia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trailu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "traktu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "transfer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "transistore": { "pos": "n", "pol": "0.25", "std": "0.0" }, "transzendentzia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "triforio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tripode": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trufagailu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "turuta-dei": { "pos": "n", "pol": "0.25", "std": "0.0" }, "txabalina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "txalo jo": { "pos": "v", "pol": "0.25", "std": "0.0" }, "txilin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "txinta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "txistu egiten duena": { "pos": "n", "pol": "0.25", "std": "0.0" }, "txistua jotzen duena": { "pos": "n", "pol": "0.25", "std": "0.0" }, "txistuka ari dena": { "pos": "n", "pol": "0.25", "std": "0.0" }, "txonta arrunt": { "pos": "n", "pol": "0.25", "std": "0.0" }, "txori": { "pos": "n", "pol": "0.25", "std": "0.0" }, "txotxolokeria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "uda-muga": { "pos": "n", "pol": "0.25", "std": "0.0" }, "udaburu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "uhara": { "pos": "n", "pol": "0.25", "std": "0.0" }, "uhindura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ulermen": { "pos": "n", "pol": "0.25", "std": "0.177" }, "ultra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ultraeskuindar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "umegaltze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "umore-sen": { "pos": "n", "pol": "0.25", "std": "0.0" }, "une garrantzitsu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "urpean gelditu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "urri hartu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "urruma egin": { "pos": "v", "pol": "0.25", "std": "0.088" }, "usaimen": { "pos": "n", "pol": "0.25", "std": "0.0" }, "usain gozo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "usta izan": { "pos": "v", "pol": "0.25", "std": "0.0" }, "utrikulu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "veld": { "pos": "n", "pol": "0.25", "std": "0.0" }, "xake mate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "xarmakeria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "xerografia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "xixel": { "pos": "n", "pol": "0.25", "std": "0.0" }, "yeti": { "pos": "n", "pol": "0.25", "std": "0.0" }, "yoga": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zabaldi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zaharkitu": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "zahartu": { "pos": "v", "pol": "0.25", "std": "0.354" }, "zain egon": { "pos": "v", "pol": "0.25", "std": "0.0" }, "zapatila": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zapla jo": { "pos": "v", "pol": "0.25", "std": "0.0" }, "zaplastakoa eman": { "pos": "v", "pol": "0.25", "std": "0.0" }, "zefalopodo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zehaztasun": { "pos": "n", "pol": "0.25", "std": "0.197" }, "zelaidi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zenbaki erromatar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zenbakia jarri": { "pos": "v", "pol": "0.25", "std": "0.0" }, "zenbakitu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "zenbaterainoko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zenotafio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zerbitzu-sari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zerbitzuak": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zeregin": { "pos": "n", "pol": "0.25", "std": "0.088" }, "zeremonia": { "pos": "n", "pol": "0.25", "std": "0.072" }, "zerrenda-buru": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zerrenda beltz": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zeru": { "pos": "n", "pol": "0.25", "std": "0.26" }, "zeru-urdin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zerumuga": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zientifiko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zientzialari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zilegitu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ziniko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zinpeko aitorpen": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zintzarri": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zipriztin-hots": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zirikada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zirkunflexu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ziurtapen": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ziurtatu": { "pos": "v", "pol": "0.25", "std": "0.171" }, "zolitasun": { "pos": "n", "pol": "0.25", "std": "0.098" }, "zooide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zor izan": { "pos": "v", "pol": "0.25", "std": "0.0" }, "zorretan izan": { "pos": "v", "pol": "0.25", "std": "0.0" }, "zorrozkailu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zorrozteko makina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zubi-pilare": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zuhaitzak bota": { "pos": "v", "pol": "0.25", "std": "0.0" }, "zuhaitzak ebaki": { "pos": "v", "pol": "0.25", "std": "0.0" }, "zuhaitzak moztu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "zuhaitzak pikatu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "zuhaitzak zatitu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "zulo beltz": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zurgagailuarekin garbitu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "zuritasun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zurkaitz": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zutiko": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zuzpertze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aberaspide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "abitaminosi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "absentismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "absolutista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "adarra jotzen ibili": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "adierazgarri izan": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "adimen-elbarritasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "agar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aglomeratu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aguazil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ahaldun": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "ahapaldi egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ahapeka esan": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ahate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aho-burdin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ahopetik esan": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ahotik ahora ibili": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ahoz aho ibili": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ahozapi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ahuendatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ahulezia": { "pos": "n", "pol": "-0.25", "std": "0.094" }, "ainguratu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "aipagabetasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aireko armada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "akabatze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alaba zaharren": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alargun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alba": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "albinismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aldarriak": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aldarrikatzaile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alde batetara utzi": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "alderdi politiko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aldez aurreko baldintza": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aldigaizto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alditxar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alferkeria": { "pos": "n", "pol": "-0.25", "std": "0.094" }, "alkandora": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alkoholismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "almez": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "almiranteorde": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alopezia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alproja": { "pos": "n", "pol": "-0.25", "std": "0.056" }, "altxaprima": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "amaurosi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "amiralorde": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "amnesia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "amorrazio": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "analgesiko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "andrezale": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "angina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anglofobo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anioi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anorexia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anoxemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anoxia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antipiretiko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antisemitismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antitermiko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antrax": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antxeta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anuria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "apartamentu-etxe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "apentzaile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "apurketa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "apustu": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "arazo tekniko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arbitratu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "arcitro-lanak egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ardatz-bertute": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ardatzeko bertute": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arduragabe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ariotar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arkakarats": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arma-fabrikatzailea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arma arin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arma eramangarri": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "armarekiko lapurreta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "armazko lapurreta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arrandia": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "arrantzan egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "arrantzatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "arrastaka eraman": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "arraza beltzeko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arriskatze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arropa-sits": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arrotz gertatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "artezilari": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "artritis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asaldu mental": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asaldura mental": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aseguru flotatzaile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aspergarritasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "astakilo": { "pos": "n", "pol": "-0.25", "std": "0.063" }, "astakume": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "astanafarreri": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "astapotro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atabal-hots": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atabal joaldi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atzeraezintasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aurka egin": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "aurora": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aurpegi-babes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aurre egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "aurretik jakin ezin den": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ausarkeria": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "autismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "auto-aseguru": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "autu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "autu-mautu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "auzitaratu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "auzizale": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "axolagabekeria": { "pos": "n", "pol": "-0.25", "std": "0.163" }, "azalkeria": { "pos": "n", "pol": "-0.25", "std": "0.144" }, "azalpen luze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "azeri": { "pos": "n", "pol": "-0.25", "std": "0.144" }, "azoka txiki": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "azpijokoa egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "azpikeria": { "pos": "n", "pol": "-0.25", "std": "0.116" }, "azpiko gona": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "azpikotasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "azpilana egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "azpimarra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aztergai": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bahitu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bai": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bainu-bata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bainu-txabusina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bainu-txano": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bainujantzi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bakun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "baldartasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "balioztapen": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bandalismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barbaro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barizela": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "basa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "basabaratxuri": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "basabazter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "basahate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "basaka": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "basalto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "basasto asiar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bat batean ireki": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bata bestearen aurka egon": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bateaz jo": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "baxutasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bazterrera eraman": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bazterrera utzi": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "begirunerik ez": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "behatxulo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "behaztopa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "beherako": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "beheramendu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bekaizkeria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bekokiko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "belaunpe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bele": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "beneditar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bentrilokia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "berilio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "berna-babes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "berrautaketa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "berrautatze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "berrerorle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "berset": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bertute kardinal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "berunki": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "betaurreko babesle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "betiko bizitza": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "betile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bidagabe eralki": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bike": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "billete": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "birao": { "pos": "n", "pol": "-0.25", "std": "0.086" }, "bitan adarkatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bitan banatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bitsadera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bitter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bitter alkoholdun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "biziraupen sena": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bizitasuna galdu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "blokeatze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blue-jeans": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boli": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bolo-bolo ibili": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "borondate ez": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "borroka izan": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "borrokaldi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "borrokan ibili": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bortxakeria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boska": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bota": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "botulismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boxeo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boxeo-eskularru": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brisa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brometan aritu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bufanda": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bularraldeko angina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bularreko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bularreko angina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bulkada": { "pos": "n", "pol": "-0.25", "std": "0.068" }, "bulkanita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bumeran": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "burdin hesi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "burdinaga": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "buru-estalki": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "buru-nahaste": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "buru eman": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "burubero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "buruhauste": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "buztan-motz": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "buztin erre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cheviot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chinaman": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "croup aizun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deformazio": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "demeritu": { "pos": "n", "pol": "-0.25", "std": "0.265" }, "dendrita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desertu": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "desfalkatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "desilusio": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "desinfekzio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desodorante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desoreka mental": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "detritu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deuseztu": { "pos": "v", "pol": "-0.25", "std": "0.063" }, "difamatzaile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "difrakzio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "digestio-etendura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "din-dan ari izan": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "dingo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dipsomania": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "diputatu": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "diru-xahuketa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disenteria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dispepsia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "distira kendu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ditiranbo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "domingotar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "doministiku": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "droga-saltzaile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ebakuatu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ebakuazio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ebatsi": { "pos": "v", "pol": "-0.25", "std": "0.093" }, "ebonita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "edankuia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eguraldi-gizon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eguraldiaren berriemaile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eguzkitako perretxiko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ehiza": { "pos": "n", "pol": "-0.25", "std": "0.056" }, "ehiza-hegazkin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ehorzketa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ekaitz gogor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ekologista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ele-mele": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "elektrokuzio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "elkar-jotze": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "emagarri": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "emakumezale": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "emazurtz": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "endemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "endokarpo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "endredatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "energia erradiatzaile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "enpatxu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "epidemiologia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "epileptiko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eramandako": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "erasoa jo": { "pos": "v", "pol": "-0.25", "std": "0.177" }, "erbesteko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "erbinude": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ereinotz-koroa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eremu elektriko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eremu magnetiko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "erlats": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "erloju-kate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ernegu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "erosio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eroska": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "errabino": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "erraitsi": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "erramu-koroa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "erran-merran": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "erraz estutzen dena": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "erraz larritzen dena": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "erreberentzia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "erreflexu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "errege-hilketa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "erreginorde": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "erreologia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "erreprimitze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "erretasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "erretolika": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "erroseta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "errubeola": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eskalar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eskandaloso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eskapulario": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eskatologia": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "eskuadroi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eskuraezintasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esmeril": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esne pasteurizatu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esnobismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esparatrapu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espazio-jantzi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esperientzia sentsorial": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espiritismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espiritista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espoliazio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estafilokoko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estatu-kolpe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estrabe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estremismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estropezu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "etorkin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "etsigarri": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "etsikor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "euri-erauntsi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eutanasia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "exekutatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "exodo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "exortzismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ez betetze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ez fio izan": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ez gainditze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ez obeditze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ezartze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ezaugarri izan": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ezezkotasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ezeztatu": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "ezinegon": { "pos": "n", "pol": "-0.25", "std": "0.26" }, "ezmoraltasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ezpain-zapi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eztanda egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "eztenkada": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "eztenkatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "eztul": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eztul egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "faila": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fakzio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "faltsutu": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "febrifugo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fenilamina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fidagaiztasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fidagaiztu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "figura erretoriko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fistula": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fitopatologia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "flora": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "flotagarritasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "folklore": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fox-trot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frantziskotar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frogaketa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frotis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gai zerrenda": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gainbehera etorri": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "gaingona": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gainkargatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "gaitasun ez": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gaitzerran": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "gaixotasun kardiobaskular": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gaizpide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "galbeko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "galio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "galtzari-eusteko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "galzori": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gammaglobulina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gangrena": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gangster": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "garaiezintasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "garrasiak": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "garrotez erail": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "gas-garbigailu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gasaren aurkako maskara": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gasaren kontrako maskara": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gastritis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gehiegi kargatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "gerezi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gerra": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "gerra-toki": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gerrako krimen": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gerraontzi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "giza baliabide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gizadi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gizatxarkeria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gizen": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gizotso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gladiadore": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gliptika": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gogaitze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "goldatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "goldelari": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gonazale": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gonazpiko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gonokozia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "goraki berba egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "gorpu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gorrina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gorrotagarri": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gostua izan": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "grabitazio-eremu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "graduz jaiste": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "greba": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "grebalari": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guduska izan": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "gur": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gurutziltzatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "gutuntxo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gutxiegitasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "haize-babes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "haize-bolada": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "haize-parrasta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "haize-pirrinta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "haize gozo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "haize leun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "haizekada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "haratusteljale": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "harmen": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "harpajole": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "harria landu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "harzuri": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hastandu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hatz egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "haur-hilketa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "haustutze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hazizurri": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hazkura egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hebefrenia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hegazkin-pista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hekatonbe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "helburu jakinik gabe hitz egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hematuria": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "heresia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "heroina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "herpes": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "herrestan eraman": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "herrestatu": { "pos": "v", "pol": "-0.25", "std": "0.063" }, "herri-musika": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hertsapen": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "heziera txarreko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hezigabe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hezigaiztasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "higitzaile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "higuingarri": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hileta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hileta-elizkizun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hilgarritasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hilkortasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hilotz": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hiltze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hiperoi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hitzaldi luze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hitzez hitz hartutako": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hiztunkeria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hobiratze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hodeitasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hodeitu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hondakindegi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hondarpe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hotz-hotz": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hurbilgaiztasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ibilgetze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "idoro": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "idorreri": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "igeritako": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ihes-indar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "iheskortasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ikaragaitz": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ikatz-paper": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ikusgaitz bihurtu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ikuskari": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ikustezin bihurtu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ikustezintasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ilinti": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "imitatze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indar-eremu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indar kanporakoi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indarrak bildu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "indarrez banandu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "indarrez banatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "indarrez bereizi": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "indarrez ebaste": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indigestio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inguraketa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inguratze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inhalagailu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inkoherentzia": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "inmigrante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inmigratzaile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inpresio sentsorial": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "interprete": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "intriga": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "intsektizida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "intxaur": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "intxaur muskatu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "intziri": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "iparrekialdeko haize": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ipurkoloka ibiltze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "irabazte": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "iragazkaizteko gai": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "iraintzaile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "irentsi nahi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "irrati-faro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "irrazionaltasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "iruzur": { "pos": "n", "pol": "-0.25", "std": "0.17" }, "iruzur fiskal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "iskanbilatsu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "isometria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "istilu": { "pos": "n", "pol": "-0.25", "std": "0.152" }, "itsas-bataila": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "itsas zuzenbide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "itsasneska": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "itxuragabetze": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "itzalgaiztu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "itzalpe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "itzulezintasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "itzultze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "izotzaldi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "izozketa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "izoztu": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "izter-babes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "izterreko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "iztezain": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jainko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jantzi-sits": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jazarle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jazarpen": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "jeans": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jelatu": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "jipoialdi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jodilin-dalan ari izan": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "kabala": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kafeina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kaftan": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kaio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kaio beltz": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kaka": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "kalkulatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "kalumniatzaile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kamisoi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kapital-ihes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "karbono-beltz": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "karmelita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kart": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kartzelari": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kaskarin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kasula": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "katramilatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "katu siamdar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kazka egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "keinu egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "keskatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "kexu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kimono": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kinina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kinka": { "pos": "n", "pol": "-0.25", "std": "0.125" }, "kirimikatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "kitzikari": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kixotismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "klaustrofobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kleenex": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kleptomania": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kobalto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "koentzima": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "koherentziarik ez": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "kokospeko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kokoteko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "koliko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kolonizatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "kolonizazio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kolore marroi-gorri": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "komenigarritasunik ez": { "pos": "n", "pol": "-0.25", "std": "0.125" }, "konjurio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "konplementuaren finkapen": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "konplizitate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "konponketa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "konspiratu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "konstituzio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kontakizun luze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kontralmirante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kontrario": { "pos": "n", "pol": "-0.25", "std": "0.157" }, "kontserbazio": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "kontsolazio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kontzertina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kopeteko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "korindoi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kretinismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kriogenia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kriptograma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kuartzita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kukutxeztul": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kuluxka bat egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "kurrunka": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kutsapen": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kutsatze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "laido egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "lainotu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "lan bortxatuen esparru": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "landare basatitu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "landatzeko tresna": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lanuzte": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lapurreta armatu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lardekitu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "larrantzi": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "larrua kendu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "laterita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lauzkitu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "lazeria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lege-urratzaile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "legen": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lehen alaba": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lehen seme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lehergailu-teknikari": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "leherrarazi": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "leiar elektroniko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lekatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "lelokeria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lente elektroniko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lepiota": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "leuzemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lexington-bataila": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "librea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ligero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "liskarra izan": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "liskartsu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "litxar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lizuntze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "llama": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lo egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "lodi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "loeri": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "longitude": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lotsagabetasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lotsagarrikeria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lotuuztartu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "lugorri": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lupulu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lur emate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lurpeko babestoki": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lurreratzeko pista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "magenta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "magia beltz": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mainak egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "makur": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "malaria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maldizio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malenkoniatsu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malgutasunik ez": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malnutrizio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "manganeso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "margo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "marikoi": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "marka egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "marruma egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "marsala": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "martir": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "martiri": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maskarada": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "mehatsatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "melanismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "melankoliko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "melanosi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "melenga": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mendate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mendekatzaile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "menderatze": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "mendizain": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "meningitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "meridiano": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mesfidatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "metano": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "metanol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "meza-jantzi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "milika": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "militantzia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "minatze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "minbizi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mindulinkeria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "minkentzaile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "miserable": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "misogino": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mixomatosi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "momifikazio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "monarkia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mongolismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moralitaterik ez": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moraltasunik ez": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mordoilotu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "moteltze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "muin luzanga": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "muki-jariaketa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nagusikeria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nahasle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nahi-gabeko gizahilketa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nanismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nardagarri": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "narkotrafikatzaile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "narkotrafiko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "narras eraman": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "negal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "negar-ontzi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "negar egile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "negartsu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "negatibismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nekealdia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nekrofilia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nekromantzia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nekrosi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "neurastenia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "neurrigabekeria": { "pos": "n", "pol": "-0.25", "std": "0.129" }, "neutral": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nirvana": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nitrifikazio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nosologia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "obedientzia ukatze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "objekzio": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "obsesio": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "obskurantista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oda": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "odol ahulezia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "odol hotz": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "odolkoi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "odolzale": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ofentsiba": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ogen": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ogi beltz": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ohatila": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ohe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ohe-txano": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ohondikatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "oihal bustigaitz": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oihuka hitz egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "oilo-ipurdi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oin-aulki": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oinarrizko partikula": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "okada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "okerrera egite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oktopodo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "onartzaile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "onddo-kapela": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ondoez": { "pos": "n", "pol": "-0.25", "std": "0.153" }, "onetik atera": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "onkogene": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "operazio-base": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ordainbide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ordezkarien ganbera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "orientatzeko sen": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "orrolari": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "osmosi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ospitale-laguntzaile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ostikatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ostu": { "pos": "v", "pol": "-0.25", "std": "0.093" }, "otoruntza egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "otu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ozen hitz egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "paddy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "palpitatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "paludismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paperezko zapi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paranoia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "partidu politiko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pastel txiki bete": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pasteurizazio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pelagra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pelbis-gerriko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pertsekuzio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pestizida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "petrifikazio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "petrikilokeria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pikaro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pikorta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pikortsutasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pila-galbaniko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pilpiratu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "piper egite": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "piraterian aritu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "pizar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "piztien parkea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "planimetro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "plutokrata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pobretze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "polarizatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "polizi agente": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "polizia-agente": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pospolo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "postilioi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "postulazio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "potolo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pozgarri": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pozoidura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pozoitze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "premu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prentsa idatzia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "presozain": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prestuez": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "probokatzaile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "produktu akastun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "propultsio-sistema": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prusiera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "psikoterapeuta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rabbi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "requiem": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "sagarmin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sakondu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "salaketa-egile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "salakot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "samintasun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sarekada egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "sarkoma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sarong": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sarraila hautsi": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "sarraskijale": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sartu-atera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sasiarte": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sasieskola egite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sasipintore": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sastatze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "segmentutan banatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "segurtasun-uhal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "seinale izan": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "selenio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "seme zaharren": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "septizemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "setatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "sinoti": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sinple": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sinposium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "soildu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "soinu zuri": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "solidotze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sorbalda-babes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sorgin-baratxuri": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sorgortze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sotana": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "su-emate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "su arriskurako aseguru": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "su artifizial": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "su eman": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "suber": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sudur-babes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "suge-belar pikart": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "suizidio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sukar tifoide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sukarkontrako": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "suntsiketa": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "surrealismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sutan egon": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "sutan jarri": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "taberna-zulo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "taloi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tarantula": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tarratatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tatuatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tematu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tente jarri": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tentel": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "teratologia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "testu mekanografiatu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tie-break": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tifoide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tintausain argi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tira egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tirabira": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "tiradera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tirita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tiroketa": { "pos": "n", "pol": "-0.25", "std": "0.063" }, "titanio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tolesgabe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tontakeria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tpustean ireki": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "trafikatzaile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tripako": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "triunbiratu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tropo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trufa egin": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "tunante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "turbulentzia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tutu-hots": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "txabusina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "txaleko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "txankro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "txanoa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "txanpongile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "txantxetan aritu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "txaradi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "txarratel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "txatal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "txeke": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "txikarra egite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "txilaba": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tximatsu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "txinel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "txingor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "txirotze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "txonta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "txorakeria": { "pos": "n", "pol": "-0.25", "std": "0.12" }, "txorimalo": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "txoro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "txungo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "txurroz jo": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "udaltzain": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ui": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ukondoko babes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ulertezintasun": { "pos": "n", "pol": "-0.25", "std": "0.158" }, "umezurtz": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "uniformetasun": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "unilateralismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ur-zikin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "urdindu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "urkatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "uroilanda": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "urpean igeri egiteko jantzi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "usain-kengarri": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "usain-kentzaile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "usin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "usurpatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "uxatze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "uzkur": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "uzkurdura": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "xehe-xehe egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "xenofobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zaflada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zakartegi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zaldiketari": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zango-bizkarreko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zantar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zapalketa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zaplastako": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zaporea izan": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "zarrastatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "zarratatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "zatai": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zauritu ezin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zehaztasunik gabe hitz egin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "zelata": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "zepategi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zerena": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zikloi": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "zimeldura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zinematika": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zinkurin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zirkunstante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ziro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zirrosi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zirtzil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zokolu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zoo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zoofobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zoologiko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zorigabe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zornadura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zorrikeria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zorrotz begiratu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "zozo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zubi-buru": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zuhaixka": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zuhamuxka": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zukutu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "zurdaki": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zurru eta purru jan": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "zurrul": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zurrungatu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "zurrutari eman": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "zurtz": { "pos": "n", "pol": "-0.25", "std": "0.0" } } ================================================ FILE: lib/natural/sentiment/Catalan/senticon_ca.json ================================================ { "acontentar-se": { "pos": "v", "pol": "0.5", "std": "0.0" }, "admiració": { "pos": "n", "pol": "0.45", "std": "0.331" }, "admirar": { "pos": "v", "pol": "0.458", "std": "0.382" }, "adorar": { "pos": "v", "pol": "0.4", "std": "0.293" }, "afavorir": { "pos": "v", "pol": "0.313", "std": "0.258" }, "afecte": { "pos": "n", "pol": "0.304", "std": "0.139" }, "afectuositat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "afectuós": { "pos": "a", "pol": "0.594", "std": "0.157" }, "afició": { "pos": "n", "pol": "0.708", "std": "0.289" }, "afortunat": { "pos": "a", "pol": "0.75", "std": "0.088" }, "agradar": { "pos": "v", "pol": "0.661", "std": "0.269" }, "alegrar": { "pos": "v", "pol": "0.458", "std": "0.271" }, "alegrar-se": { "pos": "v", "pol": "0.5", "std": "0.37" }, "alegre": { "pos": "a", "pol": "0.688", "std": "0.214" }, "alegria": { "pos": "n", "pol": "0.25", "std": "0.292" }, "alleugerir": { "pos": "v", "pol": "0.411", "std": "0.405" }, "amar": { "pos": "v", "pol": "0.625", "std": "0.442" }, "amor": { "pos": "n", "pol": "0.297", "std": "0.174" }, "amorós": { "pos": "a", "pol": "0.625", "std": "0.0" }, "anhel": { "pos": "n", "pol": "0.25", "std": "0.125" }, "animar": { "pos": "v", "pol": "0.375", "std": "0.282" }, "animat": { "pos": "a", "pol": "0.531", "std": "0.282" }, "apassionat": { "pos": "a", "pol": "0.469", "std": "0.12" }, "apreci": { "pos": "n", "pol": "0.625", "std": "0.0" }, "aprovat": { "pos": "n", "pol": "0.625", "std": "0.0" }, "aprovatori": { "pos": "a", "pol": "1.0", "std": "0.0" }, "ardent": { "pos": "a", "pol": "0.333", "std": "0.25" }, "assossegat": { "pos": "a", "pol": "0.25", "std": "0.177" }, "autosatisfacció": { "pos": "n", "pol": "0.625", "std": "0.0" }, "avidesa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "benefactor": { "pos": "a", "pol": "0.938", "std": "0.088" }, "benefici": { "pos": "n", "pol": "0.339", "std": "0.339" }, "beneficiós": { "pos": "a", "pol": "0.875", "std": "0.088" }, "beneficència": { "pos": "n", "pol": "0.417", "std": "0.439" }, "benevolència": { "pos": "n", "pol": "0.563", "std": "0.354" }, "benèfic": { "pos": "a", "pol": "0.625", "std": "0.354" }, "bo": { "pos": "a", "pol": "0.857", "std": "0.152" }, "bondat": { "pos": "n", "pol": "0.344", "std": "0.298" }, "bonic": { "pos": "a", "pol": "0.75", "std": "0.19" }, "bé": { "pos": "a", "pol": "0.875", "std": "0.177" }, "calmat": { "pos": "a", "pol": "0.563", "std": "0.0" }, "captivador": { "pos": "a", "pol": "0.594", "std": "0.438" }, "complaença": { "pos": "n", "pol": "0.688", "std": "0.177" }, "complagut": { "pos": "a", "pol": "0.625", "std": "0.0" }, "confiança": { "pos": "n", "pol": "0.417", "std": "0.272" }, "confortar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "consolar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "content": { "pos": "a", "pol": "0.75", "std": "0.088" }, "contentació": { "pos": "n", "pol": "0.5", "std": "0.0" }, "convençut": { "pos": "a", "pol": "0.25", "std": "0.177" }, "correcte": { "pos": "a", "pol": "0.821", "std": "0.094" }, "càlid": { "pos": "a", "pol": "0.625", "std": "0.25" }, "delectar": { "pos": "v", "pol": "0.5", "std": "0.144" }, "destre": { "pos": "a", "pol": "0.844", "std": "0.12" }, "divertir": { "pos": "v", "pol": "0.375", "std": "0.177" }, "dolç": { "pos": "a", "pol": "0.55", "std": "0.447" }, "embriagar": { "pos": "v", "pol": "0.5", "std": "0.619" }, "emoció": { "pos": "n", "pol": "0.458", "std": "0.402" }, "enamorament": { "pos": "n", "pol": "0.25", "std": "0.0" }, "encertat": { "pos": "a", "pol": "0.708", "std": "0.149" }, "encisador": { "pos": "a", "pol": "0.65", "std": "0.391" }, "encoratjar": { "pos": "v", "pol": "0.469", "std": "0.544" }, "engatar": { "pos": "v", "pol": "1.0", "std": "0.0" }, "enginyós": { "pos": "a", "pol": "0.65", "std": "0.19" }, "engrescar": { "pos": "v", "pol": "1.0", "std": "0.0" }, "ensopiment": { "pos": "n", "pol": "0.25", "std": "0.088" }, "entusiasme": { "pos": "n", "pol": "0.604", "std": "0.292" }, "entusiasta": { "pos": "a", "pol": "0.75", "std": "0.088" }, "envalentir": { "pos": "v", "pol": "0.5", "std": "0.707" }, "eròtic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "estima": { "pos": "n", "pol": "0.55", "std": "0.163" }, "estimació": { "pos": "n", "pol": "0.275", "std": "0.19" }, "estimar": { "pos": "v", "pol": "0.33", "std": "0.326" }, "estimulador": { "pos": "a", "pol": "0.75", "std": "0.0" }, "estimulant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eufòria": { "pos": "n", "pol": "0.531", "std": "0.161" }, "eufòric": { "pos": "a", "pol": "0.375", "std": "0.442" }, "excel·lent": { "pos": "a", "pol": "0.75", "std": "0.088" }, "excitació": { "pos": "n", "pol": "1.0", "std": "0.0" }, "exhuberància": { "pos": "n", "pol": "0.875", "std": "0.0" }, "expert": { "pos": "n", "pol": "0.25", "std": "0.0" }, "extasiar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "exultació": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fascinant": { "pos": "a", "pol": "0.5", "std": "0.413" }, "favorable": { "pos": "a", "pol": "0.844", "std": "0.188" }, "felicitat": { "pos": "n", "pol": "0.813", "std": "0.088" }, "feliç": { "pos": "a", "pol": "0.625", "std": "0.177" }, "fervent": { "pos": "a", "pol": "0.5", "std": "0.12" }, "fervorós": { "pos": "a", "pol": "0.75", "std": "0.0" }, "fratern": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fraternal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fruir": { "pos": "v", "pol": "0.438", "std": "0.088" }, "gaubança": { "pos": "n", "pol": "0.625", "std": "0.354" }, "gaudir": { "pos": "v", "pol": "0.417", "std": "0.072" }, "grat": { "pos": "a", "pol": "0.813", "std": "0.088" }, "gratitud": { "pos": "n", "pol": "0.417", "std": "0.375" }, "hilarant": { "pos": "a", "pol": "0.625", "std": "0.0" }, "hilaritat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "honorar": { "pos": "v", "pol": "0.563", "std": "0.088" }, "honrar": { "pos": "v", "pol": "0.563", "std": "0.088" }, "honrat": { "pos": "a", "pol": "0.679", "std": "0.197" }, "hàbil": { "pos": "a", "pol": "0.844", "std": "0.12" }, "ideal": { "pos": "a", "pol": "0.563", "std": "0.306" }, "idoni": { "pos": "a", "pol": "0.705", "std": "0.146" }, "interès": { "pos": "n", "pol": "0.458", "std": "0.439" }, "intoxicar": { "pos": "v", "pol": "0.5", "std": "0.619" }, "jocunditat": { "pos": "n", "pol": "0.5", "std": "0.0" }, "jocós": { "pos": "a", "pol": "0.375", "std": "0.125" }, "joia": { "pos": "n", "pol": "0.607", "std": "0.2" }, "jovial": { "pos": "a", "pol": "0.75", "std": "0.177" }, "jovialitat": { "pos": "n", "pol": "0.583", "std": "0.25" }, "just": { "pos": "a", "pol": "0.675", "std": "0.163" }, "languiment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "llangor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lleialtat": { "pos": "n", "pol": "0.313", "std": "0.088" }, "magnífic": { "pos": "a", "pol": "0.804", "std": "0.159" }, "manyós": { "pos": "a", "pol": "0.844", "std": "0.12" }, "optimista": { "pos": "n", "pol": "0.625", "std": "0.0" }, "optimístic": { "pos": "a", "pol": "0.875", "std": "0.0" }, "plaure": { "pos": "v", "pol": "0.65", "std": "0.244" }, "plàcid": { "pos": "a", "pol": "0.25", "std": "0.177" }, "positiu": { "pos": "a", "pol": "0.667", "std": "0.26" }, "preferència": { "pos": "n", "pol": "0.281", "std": "0.063" }, "prometedor": { "pos": "a", "pol": "0.875", "std": "0.177" }, "proper": { "pos": "a", "pol": "0.281", "std": "0.211" }, "reanimar-se": { "pos": "v", "pol": "0.35", "std": "0.505" }, "recte": { "pos": "a", "pol": "0.469", "std": "0.297" }, "rialler": { "pos": "a", "pol": "0.5", "std": "0.0" }, "satisfer": { "pos": "v", "pol": "0.813", "std": "0.265" }, "satisfet": { "pos": "a", "pol": "0.625", "std": "0.0" }, "satisfet de si mateix": { "pos": "a", "pol": "0.875", "std": "0.0" }, "seductor": { "pos": "a", "pol": "0.75", "std": "0.177" }, "seduir": { "pos": "v", "pol": "0.25", "std": "0.137" }, "serè": { "pos": "a", "pol": "0.525", "std": "0.068" }, "simpatia": { "pos": "n", "pol": "0.354", "std": "0.292" }, "solaçar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "somrient": { "pos": "a", "pol": "1.0", "std": "0.0" }, "superior": { "pos": "n", "pol": "0.375", "std": "0.177" }, "tendre": { "pos": "a", "pol": "0.417", "std": "0.315" }, "tendresa": { "pos": "n", "pol": "0.375", "std": "0.125" }, "tranquil": { "pos": "a", "pol": "0.281", "std": "0.12" }, "tranquil·litzador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tranquil·litzar": { "pos": "v", "pol": "0.292", "std": "0.191" }, "tranquil·litzat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "traçut": { "pos": "a", "pol": "0.833", "std": "0.144" }, "triomfador": { "pos": "a", "pol": "0.625", "std": "0.0" }, "triomfant": { "pos": "a", "pol": "0.625", "std": "0.0" }, "tònic": { "pos": "a", "pol": "0.75", "std": "0.0" }, "ufanós": { "pos": "a", "pol": "0.438", "std": "0.265" }, "utilitat": { "pos": "n", "pol": "0.344", "std": "0.331" }, "victoriós": { "pos": "a", "pol": "0.625", "std": "0.0" }, "vigoritzador": { "pos": "a", "pol": "0.75", "std": "0.0" }, "vigoritzant": { "pos": "a", "pol": "0.688", "std": "0.088" }, "àvid": { "pos": "a", "pol": "0.375", "std": "0.177" }, "íntim": { "pos": "a", "pol": "0.417", "std": "0.072" }, "útil": { "pos": "a", "pol": "0.55", "std": "0.143" }, "abatiment": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "abatre": { "pos": "v", "pol": "-0.437", "std": "0.12" }, "abatut": { "pos": "a", "pol": "-0.344", "std": "0.072" }, "abominar": { "pos": "v", "pol": "-0.583", "std": "0.072" }, "aflicció": { "pos": "n", "pol": "-0.534", "std": "0.113" }, "aflictiu": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "afligidor": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "afligiment": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "afligir": { "pos": "v", "pol": "-0.708", "std": "0.0" }, "afligir-se": { "pos": "v", "pol": "-0.45", "std": "0.105" }, "afligit": { "pos": "a", "pol": "-0.5", "std": "0.079" }, "agravi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "agressivitat": { "pos": "n", "pol": "-0.312", "std": "0.072" }, "agreujat": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "alacaigut": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "alarma": { "pos": "n", "pol": "-0.25", "std": "0.125" }, "alarmar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "alarmat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "alertar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "alinear-se amb": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "alterat": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "amargor": { "pos": "n", "pol": "-0.292", "std": "0.144" }, "amoïnar": { "pos": "v", "pol": "-0.375", "std": "0.109" }, "amoïnar-se": { "pos": "v", "pol": "-0.437", "std": "0.094" }, "angoixa": { "pos": "n", "pol": "-0.5", "std": "0.125" }, "angoixar-se": { "pos": "v", "pol": "-0.687", "std": "0.088" }, "angoixat": { "pos": "a", "pol": "-0.625", "std": "0.125" }, "animadversió": { "pos": "n", "pol": "-0.375", "std": "0.051" }, "ansietat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "antipatia": { "pos": "n", "pol": "-0.531", "std": "0.102" }, "apenar": { "pos": "v", "pol": "-0.292", "std": "0.144" }, "apesarat": { "pos": "a", "pol": "-0.562", "std": "0.063" }, "apocament": { "pos": "n", "pol": "-0.5", "std": "0.217" }, "apocar": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "aprensiu": { "pos": "a", "pol": "-0.417", "std": "0.072" }, "aprensió": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "apurar-se": { "pos": "v", "pol": "-0.417", "std": "0.0" }, "atabalar": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "atabuixar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "atac de pànic": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "aterridor": { "pos": "a", "pol": "-0.562", "std": "0.0" }, "aterrit": { "pos": "a", "pol": "-0.437", "std": "0.12" }, "atroç": { "pos": "a", "pol": "-0.675", "std": "0.163" }, "autocompassió": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "avar": { "pos": "a", "pol": "-0.583", "std": "0.217" }, "avariciós": { "pos": "a", "pol": "-0.583", "std": "0.217" }, "avergonyiment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "avergonyir": { "pos": "v", "pol": "-0.375", "std": "0.12" }, "avergonyir-se": { "pos": "v", "pol": "-0.5", "std": "0.088" }, "avergonyit": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "aversió": { "pos": "n", "pol": "-0.359", "std": "0.08" }, "avorrir": { "pos": "v", "pol": "-0.375", "std": "0.157" }, "aïrament": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aïrar-se": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "aïrat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "basarda": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bel·ligerància": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "calamitós": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "capbaix": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "capmoix": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "colèric": { "pos": "a", "pol": "-0.625", "std": "0.072" }, "commiseració": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "compadir": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "compadir-se": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "compassió": { "pos": "n", "pol": "-0.312", "std": "0.161" }, "compassió de si mateix": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "compunció": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "consternació": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "contrarietat": { "pos": "n", "pol": "-0.656", "std": "0.188" }, "contrició": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cremor d'estòmac": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "cruel": { "pos": "a", "pol": "-0.417", "std": "0.072" }, "crueltat": { "pos": "n", "pol": "-0.469", "std": "0.0" }, "culpabilitat": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "cínic": { "pos": "n", "pol": "0.313", "std": "0.0" }, "decaigut": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "defalliment": { "pos": "n", "pol": "-0.5", "std": "0.177" }, "defraudat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "demolidor": { "pos": "a", "pol": "-0.583", "std": "0.072" }, "denigrant": { "pos": "a", "pol": "-0.5", "std": "0.354" }, "deplorar": { "pos": "v", "pol": "-0.406", "std": "0.177" }, "depre": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "depriment": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "deprimir": { "pos": "v", "pol": "-0.687", "std": "0.0" }, "deprimit": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "desacreditat": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "desagradable": { "pos": "n", "pol": "0.25", "std": "0.0" }, "desagradar": { "pos": "v", "pol": "-0.583", "std": "0.072" }, "desagraïment": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "desanimar": { "pos": "v", "pol": "-0.6", "std": "0.056" }, "desanimat": { "pos": "a", "pol": "-0.375", "std": "0.072" }, "desaprovar": { "pos": "v", "pol": "-0.5", "std": "0.191" }, "desassossec": { "pos": "n", "pol": "-0.344", "std": "0.12" }, "desassossegat": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "desconfortar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "desconsol": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "desconsolació": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "desconsolat": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "descontentar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "descoratjador": { "pos": "a", "pol": "-0.5", "std": "0.354" }, "descoratjament": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "descoratjar": { "pos": "v", "pol": "-0.583", "std": "0.105" }, "desdeny": { "pos": "n", "pol": "-0.354", "std": "0.102" }, "desdenyar": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "desemparament": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desemparança": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desesperançat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "desgrat": { "pos": "n", "pol": "-0.667", "std": "0.125" }, "desgràcia": { "pos": "n", "pol": "-0.5", "std": "0.083" }, "deshonorant": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "deshonrat": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "desil·lusionat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "desitjar": { "pos": "v", "pol": "-0.3", "std": "0.137" }, "desmoralitzar": { "pos": "v", "pol": "-0.792", "std": "0.0" }, "desmoralitzat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "despietat": { "pos": "a", "pol": "-0.25", "std": "0.063" }, "despit": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "desplaure": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "destructiu": { "pos": "a", "pol": "-0.583", "std": "0.072" }, "desànim": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "detestar": { "pos": "v", "pol": "-0.667", "std": "0.072" }, "dificultós": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "difícil": { "pos": "a", "pol": "-0.667", "std": "0.125" }, "disgust": { "pos": "n", "pol": "-0.312", "std": "0.12" }, "disgustar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "disgustat": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "dissort": { "pos": "n", "pol": "-0.6", "std": "0.056" }, "dissuadir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "doldre's": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "dolgut": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "dolor": { "pos": "n", "pol": "-0.488", "std": "0.102" }, "dolorit": { "pos": "a", "pol": "-0.687", "std": "0.0" }, "dolorós": { "pos": "a", "pol": "-0.625", "std": "0.131" }, "emmurriament": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "empaitar": { "pos": "v", "pol": "-0.25", "std": "0.055" }, "empegueïment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "empipador": { "pos": "a", "pol": "-0.875", "std": "0.088" }, "empipament": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "empipat": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "emprenyador": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "emprenyat": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "encalçament": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "encolerir": { "pos": "v", "pol": "-0.375", "std": "0.072" }, "encolerir-se": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "encongiment": { "pos": "n", "pol": "-0.281", "std": "0.102" }, "enfadar-se": { "pos": "v", "pol": "-0.5", "std": "0.088" }, "enfadat": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "enfadós": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "enfellonir": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "enfredorir": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "enfuriament": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "enfuriment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "enfurir": { "pos": "v", "pol": "-0.344", "std": "0.072" }, "enfurir-se": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "enrabiada": { "pos": "n", "pol": "-0.625", "std": "0.088" }, "enrabiat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "entristir": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "entristir-se": { "pos": "v", "pol": "-0.708", "std": "0.072" }, "entristit": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "enutjar": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "enutjar-se": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "enutjat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "enutjós": { "pos": "a", "pol": "-0.875", "std": "0.088" }, "esborronant": { "pos": "a", "pol": "-0.525", "std": "0.19" }, "escàs": { "pos": "a", "pol": "-0.312", "std": "0.133" }, "esfereïdor": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "esgarrifós": { "pos": "a", "pol": "-0.5", "std": "0.19" }, "esglaiat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "espantat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "espantós": { "pos": "a", "pol": "-0.583", "std": "0.151" }, "esparverador": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "esquira": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estremidor": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "exacerbació": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "exasperació": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "exasperant": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "exasperar": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "execració": { "pos": "n", "pol": "-0.417", "std": "0.051" }, "execrar": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "fart": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fastidiar": { "pos": "v", "pol": "-0.357", "std": "0.098" }, "fastiguejar": { "pos": "v", "pol": "-0.347", "std": "0.083" }, "fastiguejat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fastigós": { "pos": "a", "pol": "-0.5", "std": "0.125" }, "fatal": { "pos": "a", "pol": "-0.406", "std": "0.12" }, "fatigar": { "pos": "v", "pol": "-0.375", "std": "0.112" }, "fellonia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fer fàstic": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "forassenyat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "frustració": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "furibund": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "furiós": { "pos": "a", "pol": "-0.5", "std": "0.125" }, "fàstic": { "pos": "n", "pol": "-0.396", "std": "0.079" }, "fúria": { "pos": "n", "pol": "-0.406", "std": "0.12" }, "geniüt": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "histèria": { "pos": "n", "pol": "-0.437", "std": "0.12" }, "horrible": { "pos": "a", "pol": "-0.55", "std": "0.168" }, "horripilant": { "pos": "a", "pol": "-0.437", "std": "0.184" }, "horror": { "pos": "n", "pol": "-0.354", "std": "0.151" }, "horroritzar": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "horroritzat": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "horrorós": { "pos": "a", "pol": "-0.604", "std": "0.129" }, "hostilitat": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "humiliar": { "pos": "v", "pol": "-0.687", "std": "0.0" }, "hòrrid": { "pos": "a", "pol": "-0.583", "std": "0.191" }, "ignominiós": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inclement": { "pos": "a", "pol": "-0.25", "std": "0.289" }, "incomodar": { "pos": "v", "pol": "-0.5", "std": "0.063" }, "indignant": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "indignat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "infelicitat": { "pos": "n", "pol": "-0.75", "std": "0.088" }, "ingratitud": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "inhumanitat": { "pos": "n", "pol": "-0.333", "std": "0.144" }, "inoportú": { "pos": "a", "pol": "-0.312", "std": "0.188" }, "inquiet": { "pos": "a", "pol": "-0.375", "std": "0.161" }, "inquietar-se": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "inquietud": { "pos": "n", "pol": "-0.25", "std": "0.126" }, "insatisfet": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "insegur": { "pos": "a", "pol": "-0.304", "std": "0.072" }, "inseguretat": { "pos": "n", "pol": "-0.437", "std": "0.188" }, "inspirar aversió": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "insuficient": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "insídia": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "intimidat": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "intolerable": { "pos": "a", "pol": "-0.25", "std": "0.144" }, "intranquil": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "intranquil·litat": { "pos": "n", "pol": "-0.281", "std": "0.12" }, "iracúndia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "irascibilitat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "irascible": { "pos": "a", "pol": "-0.583", "std": "0.072" }, "irat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "irritació": { "pos": "n", "pol": "-0.42", "std": "0.081" }, "irritant": { "pos": "a", "pol": "-0.5", "std": "0.185" }, "irritar": { "pos": "v", "pol": "-0.391", "std": "0.093" }, "irritat": { "pos": "a", "pol": "-0.667", "std": "0.072" }, "lamentable": { "pos": "a", "pol": "-0.625", "std": "0.191" }, "llòbrec": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "lúgubre": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "macabre": { "pos": "a", "pol": "-0.75", "std": "0.088" }, "mal caràcter": { "pos": "n", "pol": "-0.687", "std": "0.088" }, "mal humor": { "pos": "n", "pol": "-0.583", "std": "0.125" }, "mala llet": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "maleficència": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "malenconia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malenconiós": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maliciós": { "pos": "a", "pol": "-0.325", "std": "0.185" }, "maligne": { "pos": "a", "pol": "-0.469", "std": "0.161" }, "malignitat": { "pos": "n", "pol": "-0.812", "std": "0.088" }, "malvat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malvolença": { "pos": "n", "pol": "-0.562", "std": "0.0" }, "malèfic": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "malèvol": { "pos": "a", "pol": "-0.775", "std": "0.137" }, "malícia": { "pos": "n", "pol": "-0.417", "std": "0.125" }, "melancòlic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "menyspreança": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "menysprear": { "pos": "v", "pol": "-0.425", "std": "0.168" }, "menyspreu": { "pos": "n", "pol": "-0.417", "std": "0.108" }, "misantropia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "misantròpic": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "miserable": { "pos": "a", "pol": "-0.323", "std": "0.152" }, "misogínia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "misologia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "misoneisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moix": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "molest": { "pos": "a", "pol": "-0.7", "std": "0.137" }, "molestar": { "pos": "v", "pol": "-0.443", "std": "0.084" }, "monstruós": { "pos": "a", "pol": "-0.458", "std": "0.191" }, "monòton": { "pos": "a", "pol": "-0.375", "std": "0.217" }, "mortificar": { "pos": "v", "pol": "-0.562", "std": "0.063" }, "mortificat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "mosquejat": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "míser": { "pos": "a", "pol": "-0.375", "std": "0.191" }, "múrria": { "pos": "n", "pol": "-0.25", "std": "0.144" }, "nauseabund": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "negre": { "pos": "a", "pol": "-0.391", "std": "0.17" }, "neguit": { "pos": "n", "pol": "-0.344", "std": "0.102" }, "nerviós": { "pos": "a", "pol": "-0.292", "std": "0.191" }, "obscur": { "pos": "a", "pol": "-0.484", "std": "0.164" }, "odi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "odiar": { "pos": "v", "pol": "-0.625", "std": "0.088" }, "ofendre": { "pos": "v", "pol": "-0.594", "std": "0.125" }, "ofenós": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "opressió": { "pos": "n", "pol": "-0.292", "std": "0.191" }, "oprobiós": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "paorós": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "pena": { "pos": "n", "pol": "-0.404", "std": "0.104" }, "penediment": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "penedit": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "penós": { "pos": "a", "pol": "-0.475", "std": "0.163" }, "perjudicial": { "pos": "a", "pol": "-0.425", "std": "0.224" }, "pertorbar": { "pos": "v", "pol": "-0.406", "std": "0.093" }, "pesar": { "pos": "n", "pol": "-0.583", "std": "0.112" }, "pesarós": { "pos": "a", "pol": "-0.583", "std": "0.072" }, "pesat": { "pos": "a", "pol": "-0.406", "std": "0.188" }, "pessimisme": { "pos": "n", "pol": "-0.333", "std": "0.144" }, "pessimista": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "petrificat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "plorós": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "poruc": { "pos": "a", "pol": "-0.275", "std": "0.056" }, "preocupat": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "pressentiment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "provocat": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "pudor": { "pos": "n", "pol": "-0.5", "std": "0.177" }, "pànic": { "pos": "n", "pol": "-0.292", "std": "0.217" }, "rabiós": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "rancor": { "pos": "n", "pol": "-0.5", "std": "0.086" }, "rancúnia": { "pos": "n", "pol": "-0.446", "std": "0.072" }, "rebequeria": { "pos": "n", "pol": "-0.625", "std": "0.088" }, "recança": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "reguard": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "remordiment": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "repel·lir": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "repugnant": { "pos": "a", "pol": "-0.531", "std": "0.157" }, "repugnar": { "pos": "v", "pol": "-0.375", "std": "0.072" }, "repugnància": { "pos": "n", "pol": "-0.422", "std": "0.08" }, "repulsiu": { "pos": "a", "pol": "-0.375", "std": "0.12" }, "repulsió": { "pos": "n", "pol": "-0.375", "std": "0.063" }, "repulsori": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "resignació": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ressentiment": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "ressignat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "ràbia": { "pos": "n", "pol": "-0.286", "std": "0.112" }, "sentiment de classe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sentiment de culpa": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "simpatitzar": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "simpatitzar amb": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "sortir de polleguera": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "sufocat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "temença": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "temerós": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "temible": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "temor": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "temorós": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "tenir ganes de": { "pos": "v", "pol": "-0.417", "std": "0.144" }, "terrible": { "pos": "a", "pol": "-0.5", "std": "0.137" }, "terrorífic": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "terrífic": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "tribulació": { "pos": "n", "pol": "-0.281", "std": "0.12" }, "trist": { "pos": "a", "pol": "-0.625", "std": "0.155" }, "tristesa": { "pos": "n", "pol": "-0.344", "std": "0.258" }, "tristor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "turment": { "pos": "n", "pol": "-0.45", "std": "0.056" }, "turmentar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "témer": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "tírria": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "ultratjant": { "pos": "a", "pol": "-0.5", "std": "0.354" }, "vergonya": { "pos": "n", "pol": "-0.375", "std": "0.102" }, "vergonyós": { "pos": "a", "pol": "-0.357", "std": "0.21" }, "vexació": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "vexador": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "vexant": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "vexar": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "vexatori": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "vilipendi": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "vomitiu": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "altruista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "apacible": { "pos": "a", "pol": "0.75", "std": "0.0" }, "benèvol": { "pos": "a", "pol": "0.625", "std": "0.0" }, "complaure": { "pos": "v", "pol": "0.708", "std": "0.25" }, "delectar-se": { "pos": "v", "pol": "0.313", "std": "0.0" }, "esperançador": { "pos": "a", "pol": "1.0", "std": "0.0" }, "maco": { "pos": "a", "pol": "1.0", "std": "0.0" }, "sa": { "pos": "a", "pol": "0.938", "std": "0.088" }, "satisfactori": { "pos": "a", "pol": "0.75", "std": "0.0" }, "sortós": { "pos": "a", "pol": "0.75", "std": "0.0" }, "asquerós": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "culpable": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "desolador": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "devastedor": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "equívoc": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "impropi": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "tenir por": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "acollidor": { "pos": "a", "pol": "0.875", "std": "0.177" }, "afable": { "pos": "a", "pol": "1.0", "std": "0.0" }, "agradós": { "pos": "a", "pol": "1.0", "std": "0.0" }, "amenitat": { "pos": "n", "pol": "1.0", "std": "0.0" }, "animós": { "pos": "a", "pol": "0.875", "std": "0.0" }, "atractiu": { "pos": "n", "pol": "0.438", "std": "0.12" }, "avantatjós": { "pos": "a", "pol": "1.0", "std": "0.0" }, "bell": { "pos": "a", "pol": "0.875", "std": "0.0" }, "benigne": { "pos": "a", "pol": "1.0", "std": "0.0" }, "bon estat físic": { "pos": "n", "pol": "0.875", "std": "0.0" }, "bona forma física": { "pos": "n", "pol": "0.875", "std": "0.0" }, "clamorós": { "pos": "a", "pol": "1.0", "std": "0.0" }, "clavat": { "pos": "a", "pol": "0.875", "std": "0.0" }, "cèlebre": { "pos": "a", "pol": "1.0", "std": "0.0" }, "delectable": { "pos": "a", "pol": "0.875", "std": "0.0" }, "delitable": { "pos": "a", "pol": "0.875", "std": "0.0" }, "delitós": { "pos": "a", "pol": "0.875", "std": "0.0" }, "destacable": { "pos": "a", "pol": "1.0", "std": "0.0" }, "dispost": { "pos": "a", "pol": "0.875", "std": "0.0" }, "en forma": { "pos": "a", "pol": "0.875", "std": "0.0" }, "encantador": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "encomiar": { "pos": "v", "pol": "1.0", "std": "0.0" }, "esbargir-se": { "pos": "v", "pol": "1.0", "std": "0.0" }, "espaterrant": { "pos": "a", "pol": "1.0", "std": "0.0" }, "esplendorós": { "pos": "a", "pol": "1.0", "std": "0.0" }, "esplèndid": { "pos": "a", "pol": "0.771", "std": "0.205" }, "estupend": { "pos": "a", "pol": "0.938", "std": "0.088" }, "estètic": { "pos": "a", "pol": "0.813", "std": "0.177" }, "exculpar": { "pos": "v", "pol": "0.875", "std": "0.0" }, "famós": { "pos": "a", "pol": "1.0", "std": "0.0" }, "fenomenal": { "pos": "a", "pol": "0.792", "std": "0.361" }, "filàntrop": { "pos": "a", "pol": "1.0", "std": "0.0" }, "finíssim": { "pos": "a", "pol": "0.875", "std": "0.0" }, "forma física": { "pos": "n", "pol": "0.875", "std": "0.0" }, "formós": { "pos": "a", "pol": "0.917", "std": "0.072" }, "genial": { "pos": "a", "pol": "0.781", "std": "0.295" }, "gloriós": { "pos": "a", "pol": "1.0", "std": "0.0" }, "goig": { "pos": "n", "pol": "0.875", "std": "0.0" }, "harmoniós": { "pos": "a", "pol": "0.875", "std": "0.0" }, "heroisme": { "pos": "n", "pol": "1.0", "std": "0.0" }, "honorabilitat": { "pos": "n", "pol": "0.813", "std": "0.265" }, "incitament": { "pos": "n", "pol": "0.875", "std": "0.0" }, "magneficència": { "pos": "n", "pol": "1.0", "std": "0.0" }, "meravellós": { "pos": "a", "pol": "0.958", "std": "0.072" }, "millor": { "pos": "n", "pol": "0.375", "std": "0.0" }, "modèlic": { "pos": "a", "pol": "0.875", "std": "0.0" }, "notable": { "pos": "a", "pol": "0.875", "std": "0.177" }, "pacífic": { "pos": "a", "pol": "0.875", "std": "0.0" }, "partidari": { "pos": "a", "pol": "1.0", "std": "0.0" }, "passatemps": { "pos": "n", "pol": "0.875", "std": "0.0" }, "preciós": { "pos": "a", "pol": "0.781", "std": "0.157" }, "preferencial": { "pos": "a", "pol": "0.875", "std": "0.0" }, "preferent": { "pos": "a", "pol": "0.875", "std": "0.0" }, "prosperar": { "pos": "v", "pol": "0.813", "std": "0.265" }, "prosperitat": { "pos": "n", "pol": "1.0", "std": "0.0" }, "respectabilitat": { "pos": "n", "pol": "0.875", "std": "0.0" }, "respectable": { "pos": "a", "pol": "1.0", "std": "0.0" }, "rubicund": { "pos": "a", "pol": "0.875", "std": "0.0" }, "salubre": { "pos": "a", "pol": "0.875", "std": "0.0" }, "saludable": { "pos": "a", "pol": "0.875", "std": "0.0" }, "salvament": { "pos": "n", "pol": "1.0", "std": "0.0" }, "sancionar": { "pos": "v", "pol": "0.875", "std": "0.0" }, "seràfic": { "pos": "a", "pol": "1.0", "std": "0.0" }, "òptim": { "pos": "a", "pol": "1.0", "std": "0.0" }, "adolorir": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "adulterí": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "adustesa": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "agarrat": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "anguniejar": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "aparençar": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "assassí": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "atròfia": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "avern": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "bastard": { "pos": "n", "pol": "-0.719", "std": "0.063" }, "bord": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "brutor": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "bàratre": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "calumniador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "calumniós": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "carregar-se": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "castigar": { "pos": "v", "pol": "-0.792", "std": "0.0" }, "censurable": { "pos": "a", "pol": "-0.917", "std": "0.0" }, "condemnable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "condol": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "contrabandista": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "cretí": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "crisi nerviosa": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "declarar culpable": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "deixar-la anar": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "denigrador": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "denigratori": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "desacreditador": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "desaparegut": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "desconèixer": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "desemparar": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "desesperançar": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "desfavorable": { "pos": "a", "pol": "-0.812", "std": "0.088" }, "desgana": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "desharmonia": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "deshonra": { "pos": "n", "pol": "-0.875", "std": "0.088" }, "desprestigiador": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "deteriorable": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "difamador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "difamatori": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "disconformitat": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "eixut": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "enfosquir-se": { "pos": "v", "pol": "-0.812", "std": "0.088" }, "esfumat": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "espuri": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "expenses": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "faltar al respecte": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "fer rabiar": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "fill il·legítim": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "fill natural": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "fingir": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "fracassar": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "fètid": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "garrepa": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "gasiu": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "homicida": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "idiota": { "pos": "a", "pol": "-0.792", "std": "0.144" }, "imbècil": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "immoderat": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "inadmissible": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "incompetència": { "pos": "n", "pol": "-0.833", "std": "0.0" }, "incriminable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "inelasticitat": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "infern": { "pos": "n", "pol": "-0.812", "std": "0.0" }, "infidel": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "inhabilitat": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "injunció": { "pos": "n", "pol": "-0.812", "std": "0.0" }, "injuriós": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "inobservació": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "inobservança": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "insultant": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "irrespectuós": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "llibertar": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "mal ús": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "mala disposició": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "malifeta": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "manca de tacte": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "mentider": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no qualificat": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "oblidat": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "obscurir-se": { "pos": "v", "pol": "-0.812", "std": "0.088" }, "orc": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "pestilent": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "pispar": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "pudent": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "punir": { "pos": "v", "pol": "-0.792", "std": "0.0" }, "punt dèbil": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "putada": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "puteria": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "putrescible": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "rata": { "pos": "n", "pol": "-0.312", "std": "0.072" }, "recriminable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "reialme de les tenebres": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "reprensible": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "reprotxable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "reprovable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "retard mental": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "sense amor": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "sinistre": { "pos": "a", "pol": "-0.875", "std": "0.088" }, "tacany": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "tanoca": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "tenebrós": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "treure de'n mig": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "veleïtós": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "acceptable": { "pos": "a", "pol": "0.75", "std": "0.088" }, "adoptable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "alabar": { "pos": "v", "pol": "0.75", "std": "0.354" }, "alcista": { "pos": "n", "pol": "0.5", "std": "0.0" }, "amable": { "pos": "a", "pol": "0.75", "std": "0.144" }, "amè": { "pos": "a", "pol": "0.75", "std": "0.0" }, "aprofitar-se": { "pos": "v", "pol": "0.75", "std": "0.0" }, "aprofitat": { "pos": "a", "pol": "0.75", "std": "0.0" }, "ben fet": { "pos": "a", "pol": "0.75", "std": "0.0" }, "benaurança": { "pos": "n", "pol": "0.75", "std": "0.0" }, "benaventurança": { "pos": "n", "pol": "0.75", "std": "0.0" }, "beneficiar-se": { "pos": "v", "pol": "0.75", "std": "0.0" }, "benvingut": { "pos": "a", "pol": "0.75", "std": "0.0" }, "bona voluntat": { "pos": "n", "pol": "0.75", "std": "0.0" }, "bufonejar": { "pos": "v", "pol": "0.75", "std": "0.0" }, "carismàtic": { "pos": "a", "pol": "0.75", "std": "0.0" }, "complaent": { "pos": "a", "pol": "0.75", "std": "0.125" }, "conformisme": { "pos": "n", "pol": "0.75", "std": "0.0" }, "congruència": { "pos": "n", "pol": "0.75", "std": "0.0" }, "constructiu": { "pos": "a", "pol": "0.75", "std": "0.0" }, "consumat": { "pos": "a", "pol": "0.75", "std": "0.0" }, "covenient": { "pos": "a", "pol": "0.75", "std": "0.0" }, "curatiu": { "pos": "a", "pol": "0.75", "std": "0.0" }, "decor": { "pos": "n", "pol": "0.75", "std": "0.0" }, "decòrum": { "pos": "n", "pol": "0.75", "std": "0.0" }, "desil·lusionar": { "pos": "v", "pol": "0.75", "std": "0.0" }, "diví": { "pos": "a", "pol": "0.75", "std": "0.0" }, "encert": { "pos": "n", "pol": "0.75", "std": "0.0" }, "escrupolositat": { "pos": "n", "pol": "0.75", "std": "0.0" }, "esponerós": { "pos": "a", "pol": "0.75", "std": "0.0" }, "exalçar": { "pos": "v", "pol": "0.75", "std": "0.354" }, "experimentat": { "pos": "a", "pol": "0.75", "std": "0.0" }, "falaguer": { "pos": "a", "pol": "0.75", "std": "0.0" }, "fastuós": { "pos": "a", "pol": "0.75", "std": "0.354" }, "festeig": { "pos": "n", "pol": "0.75", "std": "0.0" }, "fidedigne": { "pos": "a", "pol": "0.75", "std": "0.0" }, "flòrid": { "pos": "a", "pol": "0.75", "std": "0.0" }, "fotogènic": { "pos": "a", "pol": "0.75", "std": "0.0" }, "galanteig": { "pos": "n", "pol": "0.75", "std": "0.0" }, "gallard": { "pos": "a", "pol": "0.75", "std": "0.0" }, "ganes": { "pos": "n", "pol": "0.75", "std": "0.0" }, "gratificant": { "pos": "a", "pol": "0.75", "std": "0.0" }, "guaridor": { "pos": "a", "pol": "0.75", "std": "0.0" }, "honor": { "pos": "n", "pol": "0.75", "std": "0.25" }, "idoneïtat": { "pos": "n", "pol": "0.75", "std": "0.0" }, "informat": { "pos": "a", "pol": "0.75", "std": "0.0" }, "judiciós": { "pos": "a", "pol": "0.75", "std": "0.265" }, "lloar": { "pos": "v", "pol": "0.75", "std": "0.354" }, "mal·leabilitat": { "pos": "n", "pol": "0.75", "std": "0.0" }, "manipulador": { "pos": "a", "pol": "0.75", "std": "0.0" }, "mesurat": { "pos": "a", "pol": "0.75", "std": "0.0" }, "nutritiu": { "pos": "a", "pol": "0.75", "std": "0.0" }, "oportunista": { "pos": "a", "pol": "0.75", "std": "0.0" }, "panoràmic": { "pos": "a", "pol": "0.75", "std": "0.0" }, "plaent": { "pos": "a", "pol": "0.75", "std": "0.0" }, "plasticitat": { "pos": "n", "pol": "0.75", "std": "0.0" }, "plaïble": { "pos": "a", "pol": "0.75", "std": "0.0" }, "polifacètic": { "pos": "a", "pol": "0.75", "std": "0.0" }, "prosperós": { "pos": "a", "pol": "0.75", "std": "0.0" }, "puixant": { "pos": "a", "pol": "0.75", "std": "0.0" }, "pèrit": { "pos": "a", "pol": "0.75", "std": "0.0" }, "reconstructor": { "pos": "a", "pol": "0.75", "std": "0.0" }, "rectitud": { "pos": "n", "pol": "0.75", "std": "0.0" }, "sanatiu": { "pos": "a", "pol": "0.75", "std": "0.0" }, "sublim": { "pos": "a", "pol": "0.75", "std": "0.0" }, "substanciós": { "pos": "a", "pol": "0.75", "std": "0.0" }, "tractable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "venturós": { "pos": "a", "pol": "0.75", "std": "0.0" }, "veterà": { "pos": "a", "pol": "0.75", "std": "0.0" }, "abaixar el to": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "algofòbic": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "ampul·lositat": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "ampulós": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "anar en vaixell de vapor": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "antiestètic": { "pos": "a", "pol": "-0.75", "std": "0.177" }, "antipatriòtic": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "aparatositat": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "apurar": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "autoinculpació": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "barroeria": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "brau": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "bravada": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "burlaner": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "butzinaire": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "ceguesa": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "condemnar": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "cruesa": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "culpa": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "deficiència profunda": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "desaconsellable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "desagradós": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "desagraït": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "desequilibri": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "deshonrar": { "pos": "v", "pol": "-0.75", "std": "0.088" }, "deshonrar-se": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "despreciat": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "destructivitat": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "detestat": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "dispèptic": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "enfosquit": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "enganyós": { "pos": "a", "pol": "-0.75", "std": "0.072" }, "envilanir": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "envilir": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "esquizofrènic": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "estar malalt": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "fer greu": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "ferum": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "fetor": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "fictici": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "fortor": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "fraudulent": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "grosseria": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "hipocondria": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "immatur": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "imperdonable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "impetuós": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "impopularitat": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "imprevisió": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "incumpliment": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "indigerible": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "indigestible": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "ineficàcia": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "inexacte": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "inextricable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "ingrat": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "inobservància": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "intransferible": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "linxar": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "mala olor": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "malhumorat": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "malhumorós": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "manca d'amabilitat": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "misofòbic": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "odiat": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "passivitat": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "pestilència": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "ploricó": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "pompositat": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "rabiar": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "rabiüt": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "renyar": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "retreure": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "rondinador": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "rondinaire": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "sacrificar-se": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "somicó": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "sordesa": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "tenir un col·lapse nerviós": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "tenir una pèrdua": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "tita molla": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "tonteria": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "tosquedat": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "trampós": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "trastornat": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "traumatitzar": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "trifulga": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "tuf": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "venjatiu": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "vilania": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "volàtil": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "xenòfob": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "absort": { "pos": "a", "pol": "0.625", "std": "0.0" }, "abundant": { "pos": "a", "pol": "0.583", "std": "0.129" }, "abundós": { "pos": "a", "pol": "0.563", "std": "0.088" }, "acceptabilitat": { "pos": "n", "pol": "0.625", "std": "0.0" }, "accessible": { "pos": "a", "pol": "0.609", "std": "0.104" }, "aconsellable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "adequació": { "pos": "n", "pol": "0.625", "std": "0.0" }, "adequat": { "pos": "a", "pol": "0.656", "std": "0.149" }, "adient": { "pos": "a", "pol": "0.653", "std": "0.141" }, "admirable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "adornat": { "pos": "a", "pol": "0.625", "std": "0.0" }, "afirmatiu": { "pos": "n", "pol": "0.5", "std": "0.0" }, "agradable": { "pos": "a", "pol": "0.688", "std": "0.181" }, "ajogassat": { "pos": "a", "pol": "0.625", "std": "0.0" }, "angelical": { "pos": "a", "pol": "0.583", "std": "0.545" }, "angèlic": { "pos": "a", "pol": "0.583", "std": "0.545" }, "apaivagament": { "pos": "n", "pol": "0.708", "std": "0.072" }, "apropiat": { "pos": "a", "pol": "0.667", "std": "0.125" }, "aprovar": { "pos": "v", "pol": "0.542", "std": "0.315" }, "apte": { "pos": "a", "pol": "0.588", "std": "0.257" }, "artístic": { "pos": "a", "pol": "0.688", "std": "0.265" }, "assequible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "atraient": { "pos": "a", "pol": "0.688", "std": "0.213" }, "auxiliar": { "pos": "a", "pol": "0.542", "std": "0.217" }, "beneficiar": { "pos": "v", "pol": "0.688", "std": "0.088" }, "bergant": { "pos": "n", "pol": "-0.292", "std": "0.125" }, "bona persona": { "pos": "n", "pol": "0.625", "std": "0.0" }, "bona salut": { "pos": "n", "pol": "0.625", "std": "0.0" }, "bona sort": { "pos": "n", "pol": "0.625", "std": "0.0" }, "bufó": { "pos": "a", "pol": "0.688", "std": "0.157" }, "campió": { "pos": "a", "pol": "0.625", "std": "0.0" }, "capaç": { "pos": "a", "pol": "0.606", "std": "0.249" }, "caràcter agradable": { "pos": "n", "pol": "0.625", "std": "0.0" }, "cast": { "pos": "a", "pol": "0.625", "std": "0.0" }, "caut": { "pos": "a", "pol": "0.525", "std": "0.105" }, "cautelós": { "pos": "a", "pol": "0.536", "std": "0.086" }, "cavaller": { "pos": "a", "pol": "0.625", "std": "0.0" }, "cavallerós": { "pos": "a", "pol": "0.625", "std": "0.0" }, "circumspecte": { "pos": "a", "pol": "0.625", "std": "0.0" }, "comestible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "conciliador": { "pos": "a", "pol": "0.625", "std": "0.0" }, "conegut": { "pos": "n", "pol": "0.25", "std": "0.0" }, "confortable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "conspirador": { "pos": "a", "pol": "0.625", "std": "0.0" }, "continuitat": { "pos": "n", "pol": "0.625", "std": "0.0" }, "convenient": { "pos": "a", "pol": "0.667", "std": "0.141" }, "copiós": { "pos": "a", "pol": "0.583", "std": "0.072" }, "correctiu": { "pos": "a", "pol": "0.625", "std": "0.0" }, "cortejar": { "pos": "v", "pol": "0.625", "std": "0.0" }, "creatiu": { "pos": "a", "pol": "0.625", "std": "0.0" }, "creativitat": { "pos": "n", "pol": "0.625", "std": "0.0" }, "cristià": { "pos": "n", "pol": "0.25", "std": "0.0" }, "càndid": { "pos": "a", "pol": "0.563", "std": "0.354" }, "decorat": { "pos": "a", "pol": "0.625", "std": "0.0" }, "defendre": { "pos": "v", "pol": "0.625", "std": "0.0" }, "deliciós": { "pos": "a", "pol": "0.563", "std": "0.265" }, "delitar-se": { "pos": "v", "pol": "0.563", "std": "0.177" }, "desenterrat": { "pos": "a", "pol": "0.625", "std": "0.0" }, "destresa": { "pos": "n", "pol": "0.531", "std": "0.277" }, "detallat": { "pos": "a", "pol": "0.625", "std": "0.0" }, "digne": { "pos": "a", "pol": "0.708", "std": "0.217" }, "dissociar": { "pos": "v", "pol": "0.625", "std": "0.0" }, "distingit": { "pos": "a", "pol": "0.531", "std": "0.144" }, "divertir-se": { "pos": "v", "pol": "0.688", "std": "0.442" }, "divertit": { "pos": "a", "pol": "0.625", "std": "0.12" }, "docte": { "pos": "a", "pol": "0.563", "std": "0.088" }, "educable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "educat": { "pos": "a", "pol": "0.525", "std": "0.163" }, "eficiència": { "pos": "n", "pol": "0.625", "std": "0.0" }, "elaborat": { "pos": "a", "pol": "0.625", "std": "0.0" }, "elegant": { "pos": "a", "pol": "0.583", "std": "0.072" }, "elogiar": { "pos": "v", "pol": "0.625", "std": "0.331" }, "embadalit": { "pos": "a", "pol": "0.625", "std": "0.0" }, "enjogassat": { "pos": "a", "pol": "0.625", "std": "0.0" }, "entreteniment": { "pos": "n", "pol": "0.625", "std": "0.354" }, "entretingut": { "pos": "a", "pol": "0.688", "std": "0.088" }, "entusiasmat": { "pos": "a", "pol": "0.625", "std": "0.0" }, "epicuri": { "pos": "n", "pol": "0.375", "std": "0.0" }, "erudit": { "pos": "a", "pol": "0.563", "std": "0.088" }, "escaient": { "pos": "a", "pol": "0.656", "std": "0.149" }, "especialitzat": { "pos": "a", "pol": "0.625", "std": "0.177" }, "específic": { "pos": "a", "pol": "0.625", "std": "0.0" }, "estalvi": { "pos": "a", "pol": "0.625", "std": "0.0" }, "estimat": { "pos": "a", "pol": "0.688", "std": "0.177" }, "eufònic": { "pos": "a", "pol": "0.625", "std": "0.0" }, "evident": { "pos": "a", "pol": "0.563", "std": "0.102" }, "exacte": { "pos": "a", "pol": "0.688", "std": "0.125" }, "exemplar": { "pos": "a", "pol": "0.625", "std": "0.354" }, "explícit": { "pos": "a", "pol": "0.625", "std": "0.0" }, "extrafí": { "pos": "a", "pol": "0.625", "std": "0.0" }, "factible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "fascinació": { "pos": "n", "pol": "0.563", "std": "0.53" }, "fecund": { "pos": "a", "pol": "0.625", "std": "0.0" }, "fer la cort": { "pos": "v", "pol": "0.625", "std": "0.0" }, "festejar": { "pos": "v", "pol": "0.625", "std": "0.0" }, "fiable": { "pos": "a", "pol": "0.688", "std": "0.088" }, "fidel": { "pos": "n", "pol": "0.25", "std": "0.088" }, "formatiu": { "pos": "a", "pol": "0.625", "std": "0.0" }, "fortitud": { "pos": "n", "pol": "0.625", "std": "0.0" }, "fèrtil": { "pos": "a", "pol": "0.583", "std": "0.072" }, "galant": { "pos": "a", "pol": "0.625", "std": "0.0" }, "galantejar": { "pos": "v", "pol": "0.625", "std": "0.0" }, "generós": { "pos": "a", "pol": "0.563", "std": "0.0" }, "graciós": { "pos": "a", "pol": "0.625", "std": "0.0" }, "grotesc": { "pos": "a", "pol": "0.625", "std": "0.0" }, "guai": { "pos": "a", "pol": "0.688", "std": "0.442" }, "guanyador": { "pos": "a", "pol": "0.625", "std": "0.0" }, "guapo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "hospitalitat": { "pos": "n", "pol": "0.563", "std": "0.088" }, "identificable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "il·luminar-se": { "pos": "v", "pol": "0.625", "std": "0.0" }, "il·lustrat": { "pos": "a", "pol": "0.542", "std": "0.072" }, "il·lès": { "pos": "a", "pol": "0.625", "std": "0.0" }, "imaginatiu": { "pos": "a", "pol": "0.625", "std": "0.0" }, "imponent": { "pos": "a", "pol": "0.625", "std": "0.0" }, "incitació": { "pos": "n", "pol": "0.563", "std": "0.442" }, "indemne": { "pos": "a", "pol": "0.563", "std": "0.0" }, "indicat": { "pos": "a", "pol": "0.656", "std": "0.149" }, "inferible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "ingeniós": { "pos": "a", "pol": "0.625", "std": "0.0" }, "instruït": { "pos": "a", "pol": "0.563", "std": "0.088" }, "intel·lectual": { "pos": "a", "pol": "0.708", "std": "0.191" }, "intel·ligent": { "pos": "a", "pol": "0.65", "std": "0.143" }, "intencionat": { "pos": "a", "pol": "0.563", "std": "0.088" }, "interessant": { "pos": "a", "pol": "0.563", "std": "0.088" }, "interessar-se": { "pos": "v", "pol": "0.563", "std": "0.442" }, "inventiu": { "pos": "a", "pol": "0.625", "std": "0.0" }, "irreprotxable": { "pos": "a", "pol": "0.542", "std": "0.125" }, "jogasser": { "pos": "a", "pol": "0.625", "std": "0.0" }, "juganer": { "pos": "a", "pol": "0.625", "std": "0.0" }, "liberal": { "pos": "a", "pol": "0.563", "std": "0.0" }, "lleial": { "pos": "a", "pol": "0.688", "std": "0.0" }, "lletrat": { "pos": "a", "pol": "0.563", "std": "0.088" }, "llorejar": { "pos": "v", "pol": "0.563", "std": "0.088" }, "lògic": { "pos": "a", "pol": "0.625", "std": "0.177" }, "majestuós": { "pos": "a", "pol": "0.625", "std": "0.315" }, "maquinador": { "pos": "a", "pol": "0.625", "std": "0.0" }, "meravella": { "pos": "n", "pol": "0.563", "std": "0.306" }, "mereixedor": { "pos": "a", "pol": "0.625", "std": "0.0" }, "meritori": { "pos": "n", "pol": "0.25", "std": "0.0" }, "modificat": { "pos": "a", "pol": "0.625", "std": "0.0" }, "màxim": { "pos": "a", "pol": "0.625", "std": "0.0" }, "noble": { "pos": "a", "pol": "0.542", "std": "0.303" }, "observable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "observança": { "pos": "n", "pol": "0.625", "std": "0.0" }, "ocurrent": { "pos": "a", "pol": "0.625", "std": "0.0" }, "oportú": { "pos": "a", "pol": "0.7", "std": "0.105" }, "ostensible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "parlant": { "pos": "a", "pol": "0.625", "std": "0.0" }, "perfecte": { "pos": "a", "pol": "0.625", "std": "0.143" }, "perseverant": { "pos": "a", "pol": "0.563", "std": "0.088" }, "pertinent": { "pos": "a", "pol": "0.625", "std": "0.0" }, "petitó": { "pos": "a", "pol": "0.625", "std": "0.0" }, "pintoresc": { "pos": "a", "pol": "0.563", "std": "0.265" }, "pletòric": { "pos": "a", "pol": "0.625", "std": "0.0" }, "poliment": { "pos": "n", "pol": "0.625", "std": "0.53" }, "popularitat": { "pos": "n", "pol": "0.625", "std": "0.0" }, "posar bé": { "pos": "v", "pol": "0.625", "std": "0.0" }, "potable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "practicable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "precaució": { "pos": "n", "pol": "0.583", "std": "0.072" }, "precís": { "pos": "a", "pol": "0.625", "std": "0.139" }, "preeminent": { "pos": "a", "pol": "0.625", "std": "0.0" }, "preferible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "preponderant": { "pos": "a", "pol": "0.625", "std": "0.0" }, "productor": { "pos": "a", "pol": "0.625", "std": "0.0" }, "progressar": { "pos": "v", "pol": "0.688", "std": "0.354" }, "prolífer": { "pos": "a", "pol": "0.563", "std": "0.088" }, "prolífic": { "pos": "a", "pol": "0.563", "std": "0.088" }, "propici": { "pos": "a", "pol": "0.563", "std": "0.213" }, "propiciació": { "pos": "n", "pol": "0.708", "std": "0.072" }, "prudent": { "pos": "a", "pol": "0.542", "std": "0.146" }, "pròsper": { "pos": "a", "pol": "0.688", "std": "0.125" }, "purificat": { "pos": "a", "pol": "0.625", "std": "0.0" }, "qualitat superior": { "pos": "n", "pol": "0.625", "std": "0.0" }, "raonat": { "pos": "a", "pol": "0.625", "std": "0.0" }, "realitzable": { "pos": "a", "pol": "0.563", "std": "0.088" }, "reanimat": { "pos": "a", "pol": "0.625", "std": "0.0" }, "recognoscible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "reconciliador": { "pos": "a", "pol": "0.625", "std": "0.0" }, "reconegut": { "pos": "a", "pol": "0.594", "std": "0.237" }, "reconeixedor": { "pos": "a", "pol": "0.625", "std": "0.0" }, "refinar": { "pos": "v", "pol": "0.583", "std": "0.382" }, "refrescant": { "pos": "a", "pol": "0.563", "std": "0.088" }, "rehabilitador": { "pos": "a", "pol": "0.688", "std": "0.088" }, "remei": { "pos": "n", "pol": "0.625", "std": "0.0" }, "remirat": { "pos": "a", "pol": "0.625", "std": "0.0" }, "rentable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "respectar": { "pos": "v", "pol": "0.625", "std": "0.177" }, "respecte": { "pos": "n", "pol": "0.542", "std": "0.26" }, "reverend": { "pos": "n", "pol": "0.25", "std": "0.0" }, "revivificar": { "pos": "v", "pol": "0.688", "std": "0.442" }, "sagaç": { "pos": "a", "pol": "0.583", "std": "0.072" }, "sant": { "pos": "n", "pol": "0.25", "std": "0.125" }, "savi": { "pos": "a", "pol": "0.563", "std": "0.088" }, "selecte": { "pos": "a", "pol": "0.625", "std": "0.177" }, "sensacional": { "pos": "a", "pol": "0.688", "std": "0.354" }, "sensat": { "pos": "a", "pol": "0.725", "std": "0.163" }, "sensual": { "pos": "a", "pol": "0.542", "std": "0.144" }, "senyorial": { "pos": "a", "pol": "0.625", "std": "0.0" }, "seriositat": { "pos": "n", "pol": "0.667", "std": "0.072" }, "servicial": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sibarític": { "pos": "a", "pol": "0.625", "std": "0.0" }, "significant": { "pos": "a", "pol": "0.625", "std": "0.088" }, "simpàtic": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sobreabundant": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sorneguer": { "pos": "a", "pol": "0.625", "std": "0.0" }, "suficient": { "pos": "a", "pol": "0.563", "std": "0.088" }, "superabundant": { "pos": "a", "pol": "0.625", "std": "0.0" }, "susceptible": { "pos": "a", "pol": "0.542", "std": "0.072" }, "sà": { "pos": "a", "pol": "0.625", "std": "0.0" }, "súper": { "pos": "a", "pol": "0.688", "std": "0.442" }, "tatxonat": { "pos": "a", "pol": "0.625", "std": "0.0" }, "temptador": { "pos": "a", "pol": "0.625", "std": "0.0" }, "venerat": { "pos": "a", "pol": "0.625", "std": "0.0" }, "viable": { "pos": "a", "pol": "0.563", "std": "0.088" }, "victòria": { "pos": "n", "pol": "0.625", "std": "0.0" }, "vitalitzant": { "pos": "a", "pol": "0.625", "std": "0.0" }, "voluptuós": { "pos": "a", "pol": "0.625", "std": "0.0" }, "acabat": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "advers": { "pos": "a", "pol": "-0.562", "std": "0.265" }, "advertència": { "pos": "n", "pol": "-0.542", "std": "0.0" }, "afusellar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "agonia": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "agreujament": { "pos": "n", "pol": "-0.625", "std": "0.088" }, "aleatorietat": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "amenaçador": { "pos": "a", "pol": "-0.687", "std": "0.177" }, "anguniós": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "anèmia": { "pos": "n", "pol": "-0.562", "std": "0.0" }, "assassinar": { "pos": "v", "pol": "-0.625", "std": "0.112" }, "assassinat": { "pos": "n", "pol": "-0.708", "std": "0.0" }, "assolador": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "atrofiar-se": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "aturament": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "badomeries": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "badomies": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "bast": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "batallar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "beneit": { "pos": "a", "pol": "-0.562", "std": "0.217" }, "busca-bregues": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "camperol": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "campestre": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "cansament": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "cerca-bregues": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "citació a dia cert": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "colpir": { "pos": "v", "pol": "-0.667", "std": "0.0" }, "combatre": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "conflicte": { "pos": "n", "pol": "-0.656", "std": "0.063" }, "consumptiu": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "contrasentit": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "contreure's": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "coïssor": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "cremor": { "pos": "n", "pol": "-0.562", "std": "0.0" }, "criminal desesperat": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "crisi d'identitat": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "defallença": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "defecte": { "pos": "n", "pol": "-0.7", "std": "0.056" }, "deficiència": { "pos": "n", "pol": "-0.65", "std": "0.068" }, "degradar-se": { "pos": "v", "pol": "-0.562", "std": "0.0" }, "descabdellat": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "descaradura": { "pos": "n", "pol": "-0.562", "std": "0.0" }, "descortés": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "desenredar-se": { "pos": "v", "pol": "-0.687", "std": "0.0" }, "desesperat": { "pos": "a", "pol": "-0.667", "std": "0.144" }, "desgavellat": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "deshonor": { "pos": "n", "pol": "-0.708", "std": "0.072" }, "desobeir": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "desolat": { "pos": "a", "pol": "-0.562", "std": "0.265" }, "desproporcionat": { "pos": "a", "pol": "-0.687", "std": "0.0" }, "destret": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "destructor": { "pos": "a", "pol": "-0.687", "std": "0.0" }, "detriment": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "devastador": { "pos": "a", "pol": "-0.542", "std": "0.072" }, "discòrdia": { "pos": "n", "pol": "-0.542", "std": "0.072" }, "dismenorrea": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "doldre": { "pos": "v", "pol": "-0.562", "std": "0.188" }, "elegia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "embosca": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "emboscada": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "enfadar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "enfrontament": { "pos": "n", "pol": "-0.583", "std": "0.072" }, "enganyar": { "pos": "v", "pol": "-0.625", "std": "0.144" }, "ensulsir-se": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "enterrat": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "epilèpsia generalitzada": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "escandalitzar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "escurat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esllavissar-se": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "esmorteir-se": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "esquerp": { "pos": "a", "pol": "-0.687", "std": "0.123" }, "esquiu": { "pos": "a", "pol": "-0.625", "std": "0.144" }, "estàtica": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "estúpid": { "pos": "a", "pol": "-0.609", "std": "0.188" }, "evasiu": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "fallada": { "pos": "n", "pol": "-0.531", "std": "0.072" }, "fal·làcia": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "farfolla": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "fatigació": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "fer mal": { "pos": "v", "pol": "-0.625", "std": "0.088" }, "fer miques": { "pos": "v", "pol": "-0.562", "std": "0.0" }, "fill de puta": { "pos": "n", "pol": "-0.625", "std": "0.072" }, "fosc": { "pos": "a", "pol": "-0.729", "std": "0.051" }, "fràgil": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "furó": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "gamarús": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "garbuix": { "pos": "n", "pol": "-0.562", "std": "0.0" }, "gargot": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "gilipollas": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "gilipolles": { "pos": "n", "pol": "-0.625", "std": "0.072" }, "grosser": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "guixada": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "hipotiroïdisme": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "immodificable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "immutabilitat": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "impensable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "imperfecció": { "pos": "n", "pol": "-0.625", "std": "0.151" }, "impersuasible": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "imprecació": { "pos": "n", "pol": "-0.625", "std": "0.088" }, "improperi": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "impropietat": { "pos": "n", "pol": "-0.625", "std": "0.12" }, "inacceptable": { "pos": "a", "pol": "-0.542", "std": "0.217" }, "inalienable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "inanició": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "inanimat": { "pos": "a", "pol": "-0.708", "std": "0.0" }, "inconcebible": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "inconscient": { "pos": "a", "pol": "-0.687", "std": "0.072" }, "increpació": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "incriminació": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "inculpació": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "indigest": { "pos": "a", "pol": "-0.687", "std": "0.0" }, "intransigent": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "invectiva": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "iracund": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "lata": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "lleig": { "pos": "a", "pol": "-0.625", "std": "0.125" }, "maledicció": { "pos": "n", "pol": "-0.562", "std": "0.094" }, "maleducat": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "malparit": { "pos": "n", "pol": "-0.625", "std": "0.072" }, "mancança": { "pos": "n", "pol": "-0.625", "std": "0.088" }, "mancat": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "matança": { "pos": "n", "pol": "-0.562", "std": "0.0" }, "menyspreable": { "pos": "a", "pol": "-0.531", "std": "0.144" }, "màcula": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "nyap": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "ordinariesa": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "pallús": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "paraplegia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "paraulota": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "penalitzar": { "pos": "v", "pol": "-0.542", "std": "0.0" }, "perduda": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "perdulària": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "plorar": { "pos": "v", "pol": "-0.625", "std": "0.072" }, "pluja radioactiva": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "pocavergonya": { "pos": "a", "pol": "0.5", "std": "0.0" }, "precarietat": { "pos": "n", "pol": "-0.562", "std": "0.063" }, "principiant": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "problema de salut": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "pusil·lanimitat": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "ranci": { "pos": "a", "pol": "-0.562", "std": "0.125" }, "recular": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "renec": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "reprensió": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "reprotxe": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "ressentir-se": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "ronyós": { "pos": "a", "pol": "-0.719", "std": "0.125" }, "roí": { "pos": "a", "pol": "-0.562", "std": "0.265" }, "rude": { "pos": "a", "pol": "-0.625", "std": "0.072" }, "sofisma": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "sofriment": { "pos": "n", "pol": "-0.578", "std": "0.093" }, "sollevar": { "pos": "v", "pol": "-0.687", "std": "0.0" }, "superficialitat": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "tara": { "pos": "n", "pol": "-0.625", "std": "0.063" }, "tempesta": { "pos": "n", "pol": "-0.583", "std": "0.072" }, "tipus estrany": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "tiranicidi": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "tocat del bolet": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "torturador": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "tosc": { "pos": "a", "pol": "-0.625", "std": "0.072" }, "traficant": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "tísic": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "vil": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "vituperi": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "volubilitat": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "voluble": { "pos": "a", "pol": "-0.562", "std": "0.265" }, "acabalat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "aclamació": { "pos": "n", "pol": "0.5", "std": "0.0" }, "acomodat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "aconsellat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "acreditat": { "pos": "a", "pol": "0.5", "std": "0.177" }, "activat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "actualitzat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "adinerat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "adreçat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "afabilitat": { "pos": "n", "pol": "0.5", "std": "0.265" }, "afalagar": { "pos": "v", "pol": "0.5", "std": "0.125" }, "aglomerat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "agraït": { "pos": "a", "pol": "0.5", "std": "0.0" }, "al dia": { "pos": "a", "pol": "0.5", "std": "0.0" }, "amat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "amonedat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "antisèptic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "anunciar-se": { "pos": "v", "pol": "0.5", "std": "0.0" }, "aplaudiment": { "pos": "n", "pol": "0.5", "std": "0.0" }, "aplicat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "après": { "pos": "a", "pol": "0.5", "std": "0.0" }, "arable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "arbitrari": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ascendible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "assenyat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "associable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "asèptic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "bajà": { "pos": "n", "pol": "0.5", "std": "0.0" }, "bastant": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ben definits": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ben educat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "benestant": { "pos": "a", "pol": "0.5", "std": "0.0" }, "benestar": { "pos": "n", "pol": "0.5", "std": "0.315" }, "benparlant": { "pos": "a", "pol": "0.5", "std": "0.0" }, "benvolença": { "pos": "n", "pol": "0.5", "std": "0.0" }, "bestial": { "pos": "a", "pol": "0.5", "std": "0.331" }, "bon gust": { "pos": "n", "pol": "0.5", "std": "0.0" }, "bon temps": { "pos": "n", "pol": "0.5", "std": "0.0" }, "calibre": { "pos": "n", "pol": "0.5", "std": "0.0" }, "cansat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "canviat": { "pos": "a", "pol": "0.5", "std": "0.177" }, "característic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "caritatiu": { "pos": "a", "pol": "0.5", "std": "0.265" }, "casador": { "pos": "a", "pol": "0.5", "std": "0.0" }, "casat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "causant": { "pos": "a", "pol": "0.5", "std": "0.0" }, "centellejant": { "pos": "a", "pol": "0.5", "std": "0.0" }, "centralitzador": { "pos": "a", "pol": "0.5", "std": "0.0" }, "civilitat": { "pos": "n", "pol": "0.5", "std": "0.177" }, "combustible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "comparable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "compassiu": { "pos": "a", "pol": "0.5", "std": "0.0" }, "compatibilitat": { "pos": "n", "pol": "0.5", "std": "0.0" }, "competència": { "pos": "n", "pol": "0.5", "std": "0.25" }, "complir": { "pos": "v", "pol": "0.5", "std": "0.0" }, "compromès": { "pos": "a", "pol": "0.5", "std": "0.0" }, "comèdia": { "pos": "n", "pol": "0.5", "std": "0.0" }, "condicionat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "conforme": { "pos": "a", "pol": "0.5", "std": "0.191" }, "congratulació": { "pos": "n", "pol": "0.5", "std": "0.0" }, "connivència": { "pos": "n", "pol": "0.5", "std": "0.0" }, "conrador": { "pos": "a", "pol": "0.5", "std": "0.0" }, "conradís": { "pos": "a", "pol": "0.5", "std": "0.0" }, "consentiment tàcit": { "pos": "n", "pol": "0.5", "std": "0.0" }, "constitucional": { "pos": "a", "pol": "0.5", "std": "0.0" }, "constructivitat": { "pos": "n", "pol": "0.5", "std": "0.0" }, "contestar": { "pos": "v", "pol": "0.5", "std": "0.0" }, "controvertit": { "pos": "a", "pol": "0.5", "std": "0.088" }, "convincent": { "pos": "a", "pol": "0.5", "std": "0.0" }, "coordinat": { "pos": "a", "pol": "0.5", "std": "0.265" }, "corporal": { "pos": "a", "pol": "0.5", "std": "0.0" }, "corregible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "corregit": { "pos": "a", "pol": "0.5", "std": "0.0" }, "cultivable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "cultivat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "curós": { "pos": "a", "pol": "0.5", "std": "0.0" }, "còmode": { "pos": "a", "pol": "0.5", "std": "0.26" }, "decidit": { "pos": "a", "pol": "0.5", "std": "0.088" }, "declarable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "declarat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "dedicar": { "pos": "v", "pol": "0.5", "std": "0.177" }, "dedicat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "definitiu": { "pos": "a", "pol": "0.5", "std": "0.354" }, "democràtic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "desafectat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "desencantar": { "pos": "v", "pol": "0.5", "std": "0.354" }, "desmuntable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "dirigit": { "pos": "a", "pol": "0.5", "std": "0.0" }, "discernible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "discrecional": { "pos": "a", "pol": "0.5", "std": "0.0" }, "disert": { "pos": "a", "pol": "0.5", "std": "0.0" }, "disposat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "distingible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "documentat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "dúctil": { "pos": "a", "pol": "0.5", "std": "0.0" }, "economitzar": { "pos": "v", "pol": "0.5", "std": "0.0" }, "efectivitat": { "pos": "n", "pol": "0.5", "std": "0.0" }, "eloqüent": { "pos": "a", "pol": "0.5", "std": "0.0" }, "embergadura": { "pos": "n", "pol": "0.5", "std": "0.0" }, "emocionat": { "pos": "a", "pol": "0.5", "std": "0.177" }, "encadenat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "enhorabona": { "pos": "n", "pol": "0.5", "std": "0.0" }, "enjoiat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "entapissat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "entenimentat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "entretenir-se": { "pos": "v", "pol": "0.5", "std": "0.707" }, "entès": { "pos": "n", "pol": "0.375", "std": "0.0" }, "envellir-se": { "pos": "v", "pol": "0.5", "std": "0.0" }, "equilibri mental": { "pos": "n", "pol": "0.5", "std": "0.0" }, "esclatant": { "pos": "a", "pol": "0.5", "std": "0.0" }, "esmaltat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "esmenable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "especialització": { "pos": "n", "pol": "0.5", "std": "0.0" }, "espiritualitat": { "pos": "n", "pol": "0.5", "std": "0.0" }, "esquerra": { "pos": "a", "pol": "0.5", "std": "0.0" }, "estabilitat": { "pos": "n", "pol": "0.5", "std": "0.088" }, "estipular": { "pos": "v", "pol": "0.5", "std": "0.0" }, "estratègic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "estudiós": { "pos": "a", "pol": "0.5", "std": "0.0" }, "eufonia": { "pos": "n", "pol": "0.5", "std": "0.0" }, "eugenèsia": { "pos": "n", "pol": "0.5", "std": "0.0" }, "evitable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "exaltar": { "pos": "v", "pol": "0.5", "std": "0.0" }, "excitant": { "pos": "a", "pol": "0.5", "std": "0.0" }, "exhaust": { "pos": "a", "pol": "0.5", "std": "0.0" }, "exhaustiu": { "pos": "a", "pol": "0.5", "std": "0.0" }, "existencial": { "pos": "a", "pol": "0.5", "std": "0.0" }, "existent": { "pos": "a", "pol": "0.5", "std": "0.0" }, "expeditiu": { "pos": "a", "pol": "0.5", "std": "0.0" }, "explicitació": { "pos": "n", "pol": "0.5", "std": "0.0" }, "extensíssim": { "pos": "a", "pol": "0.5", "std": "0.0" }, "extenuat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "facècia": { "pos": "n", "pol": "0.5", "std": "0.177" }, "fama": { "pos": "n", "pol": "0.5", "std": "0.0" }, "fascinador": { "pos": "a", "pol": "0.5", "std": "0.0" }, "fatigat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "fer apropiat": { "pos": "v", "pol": "0.5", "std": "0.0" }, "fer donació de": { "pos": "v", "pol": "0.5", "std": "0.0" }, "fertilitat": { "pos": "n", "pol": "0.5", "std": "0.26" }, "fiabilitat": { "pos": "n", "pol": "0.5", "std": "0.177" }, "finor": { "pos": "n", "pol": "0.5", "std": "0.0" }, "fogositat": { "pos": "n", "pol": "0.5", "std": "0.0" }, "graciositat": { "pos": "n", "pol": "0.5", "std": "0.177" }, "grandiositat": { "pos": "n", "pol": "0.5", "std": "0.402" }, "grapar": { "pos": "v", "pol": "0.5", "std": "0.0" }, "gruixut": { "pos": "a", "pol": "0.5", "std": "0.0" }, "habilitat social": { "pos": "n", "pol": "0.5", "std": "0.0" }, "homeopatia": { "pos": "n", "pol": "0.5", "std": "0.0" }, "honestedat": { "pos": "n", "pol": "0.5", "std": "0.0" }, "immodest": { "pos": "a", "pol": "0.5", "std": "0.0" }, "inapreciable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "incorrupció": { "pos": "n", "pol": "0.5", "std": "0.0" }, "increïble": { "pos": "a", "pol": "0.5", "std": "0.265" }, "incrustat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "individualitzat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "influenciable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "intencional": { "pos": "a", "pol": "0.5", "std": "0.0" }, "intensiu": { "pos": "a", "pol": "0.5", "std": "0.0" }, "intercanviable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "invaluable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "joc de saló": { "pos": "n", "pol": "0.5", "std": "0.0" }, "jovenívol": { "pos": "a", "pol": "0.5", "std": "0.0" }, "jurar": { "pos": "v", "pol": "0.5", "std": "0.0" }, "lavorable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "legalitat": { "pos": "n", "pol": "0.5", "std": "0.0" }, "llauradís": { "pos": "a", "pol": "0.5", "std": "0.0" }, "meditat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "miopia": { "pos": "n", "pol": "0.5", "std": "0.0" }, "misericordiós": { "pos": "a", "pol": "0.5", "std": "0.0" }, "niellat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "nítid": { "pos": "a", "pol": "0.5", "std": "0.072" }, "núbil": { "pos": "a", "pol": "0.5", "std": "0.0" }, "objectiu": { "pos": "a", "pol": "0.5", "std": "0.0" }, "obligació sense garantía": { "pos": "n", "pol": "0.5", "std": "0.0" }, "obligació simple": { "pos": "n", "pol": "0.5", "std": "0.0" }, "obtenible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "obvi": { "pos": "a", "pol": "0.5", "std": "0.102" }, "ocupar-se de": { "pos": "v", "pol": "0.5", "std": "0.0" }, "ocurrència oportuna": { "pos": "n", "pol": "0.5", "std": "0.0" }, "opcional": { "pos": "a", "pol": "0.5", "std": "0.0" }, "optimisme": { "pos": "n", "pol": "0.5", "std": "0.0" }, "opulent": { "pos": "a", "pol": "0.5", "std": "0.0" }, "pacient intern": { "pos": "n", "pol": "0.5", "std": "0.0" }, "paper de regal": { "pos": "n", "pol": "0.5", "std": "0.0" }, "parlat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "passable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "permissivitat": { "pos": "n", "pol": "0.5", "std": "0.0" }, "permutable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "persuasiu": { "pos": "a", "pol": "0.5", "std": "0.0" }, "persuasió": { "pos": "n", "pol": "0.5", "std": "0.0" }, "petulant": { "pos": "a", "pol": "0.5", "std": "0.0" }, "plegable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "preparat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "prest": { "pos": "a", "pol": "0.5", "std": "0.088" }, "previngut": { "pos": "a", "pol": "0.5", "std": "0.0" }, "probable": { "pos": "a", "pol": "0.5", "std": "0.125" }, "procedència": { "pos": "n", "pol": "0.5", "std": "0.707" }, "profús": { "pos": "a", "pol": "0.5", "std": "0.0" }, "programa de rehabilitació": { "pos": "n", "pol": "0.5", "std": "0.0" }, "prompte": { "pos": "a", "pol": "0.5", "std": "0.088" }, "promès": { "pos": "a", "pol": "0.5", "std": "0.0" }, "propiciatorietat": { "pos": "n", "pol": "0.5", "std": "0.0" }, "protagonisme": { "pos": "n", "pol": "0.5", "std": "0.0" }, "pròdig": { "pos": "a", "pol": "0.5", "std": "0.0" }, "quadern d'escriptura": { "pos": "n", "pol": "0.5", "std": "0.0" }, "ratificar": { "pos": "v", "pol": "0.5", "std": "0.0" }, "realçament": { "pos": "n", "pol": "0.5", "std": "0.0" }, "rectificable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "reemplaçable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "regulable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rendibilitat": { "pos": "n", "pol": "0.5", "std": "0.0" }, "resolt": { "pos": "a", "pol": "0.5", "std": "0.088" }, "revelador": { "pos": "a", "pol": "0.5", "std": "0.0" }, "revellir": { "pos": "v", "pol": "0.5", "std": "0.0" }, "revellir-se": { "pos": "v", "pol": "0.5", "std": "0.0" }, "reversible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ribetejat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rivalitat": { "pos": "n", "pol": "0.5", "std": "0.0" }, "rosaci": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rosadenc": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rumbós": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rumiat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "saber fer": { "pos": "n", "pol": "0.5", "std": "0.0" }, "salut mental": { "pos": "n", "pol": "0.5", "std": "0.0" }, "sensualisme": { "pos": "n", "pol": "0.5", "std": "0.0" }, "sentit comú": { "pos": "n", "pol": "0.5", "std": "0.0" }, "septicèmic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ser apropiat": { "pos": "v", "pol": "0.5", "std": "0.354" }, "ser igual a": { "pos": "v", "pol": "0.5", "std": "0.0" }, "significatiu": { "pos": "a", "pol": "0.5", "std": "0.088" }, "somàtic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "subjectable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sublimació": { "pos": "n", "pol": "0.5", "std": "0.0" }, "submergible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "subsistir": { "pos": "v", "pol": "0.5", "std": "0.0" }, "substancialitat": { "pos": "n", "pol": "0.5", "std": "0.0" }, "summe": { "pos": "a", "pol": "0.5", "std": "0.0" }, "tenir cura de": { "pos": "v", "pol": "0.5", "std": "0.0" }, "tonicitat": { "pos": "n", "pol": "0.5", "std": "0.0" }, "torrencial": { "pos": "a", "pol": "0.5", "std": "0.0" }, "tracta": { "pos": "v", "pol": "0.5", "std": "0.0" }, "tècnic": { "pos": "n", "pol": "0.313", "std": "0.265" }, "usabilitat": { "pos": "n", "pol": "0.5", "std": "0.0" }, "usual": { "pos": "a", "pol": "0.5", "std": "0.0" }, "utilitarisme": { "pos": "n", "pol": "0.5", "std": "0.0" }, "validar": { "pos": "v", "pol": "0.5", "std": "0.088" }, "validat": { "pos": "a", "pol": "0.5", "std": "0.0" }, "verisme": { "pos": "n", "pol": "0.5", "std": "0.0" }, "víctor": { "pos": "n", "pol": "0.5", "std": "0.0" }, "abrasador": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "absolta": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "abús": { "pos": "n", "pol": "-0.5", "std": "0.177" }, "acidesa d'estómac": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "acrimonia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "acromàtic": { "pos": "a", "pol": "-0.5", "std": "0.088" }, "acràcia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "afanar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "afeblit": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "agents": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "albuminúria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "algòmetre": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "altercació": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "amnèsia retrògrada": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "analfabetisme": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "anarquia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "anatematitzar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "anestèsia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "angoixós": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "anihilació": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "aniquilació": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "anodí": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anorreament": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ansiolític": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "antihigiènic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "antineoplàstic": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "aparat": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "apel·lant": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "apocalipsi": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "apoquir": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "apàtic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "ardència": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "arrufar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "arterós": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "artràlgia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "as de pics": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "assolar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "astenosfera": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "astut": { "pos": "a", "pol": "0.325", "std": "0.259" }, "astuta": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "atac sobtat": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "avarícia": { "pos": "n", "pol": "-0.5", "std": "0.177" }, "avitaminosi B1": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "baríton": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "batussa": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "beri-beri": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bibos": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "blau fosc": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "blau marí": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bluf": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bragues": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "branta": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "braçal de dol": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "brivall": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bronquític": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "bru": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "burleta": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cacofonia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cacofònic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "cadaverina": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cagaferro": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cagar-la": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "calces": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "calcetes": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "canotier": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cant fúnebre": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "capficar-se": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "capgirament": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "carnisseria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "casa de boigs": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "casa de bojos": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cataclísmic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "cavall roig": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "caòtic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "cec": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ceguetat diürna": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "clamor": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cleptòman": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "coent": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "colló": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "commoció cerebral": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "complicar": { "pos": "v", "pol": "-0.5", "std": "0.177" }, "condemnació": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "confessar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "contrafaïment": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "coragre": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "coragror": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "corcadura": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "corrossiu": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "cosa indispensable": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "crepuscular": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "creu pontifical": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "crèdul": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "crítica dura": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "crítica feridora": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "deixament": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "deleteri": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "derrotat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "desacreditar": { "pos": "v", "pol": "-0.5", "std": "0.072" }, "desaprensió": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "desatenció": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "descamisat": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "descoloriment": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "desconcertant": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "descortès": { "pos": "a", "pol": "-0.5", "std": "0.088" }, "descurar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "desdenyable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "desembullat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "desendreçament": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "desequilibri emocional": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "desfavorir": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "deslluïment": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "desmaiar-se": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "desmesura": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "desmillorar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "desnutrit": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "desorganitzat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "despersonalització": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "despoliment": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "desprestigiar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "destrossar": { "pos": "v", "pol": "-0.5", "std": "0.058" }, "devastar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "diabètic": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "diputada": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "diputat": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "discordància": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "dissonància": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "disúria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "dolor agut": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "eixalabrat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "embull": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "empal·lidir": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "enderiat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "enemic mortal": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "enlletgir": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "enverinat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "enviliment": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "eritema": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "esblaimar-se": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "esbojarrat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "esbronc": { "pos": "n", "pol": "-0.5", "std": "0.072" }, "esclerosi múltiple": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "esfereït": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "esguerrat": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "espasme": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "especiositat": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "espifiar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "esporàdic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "esquívol": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "estratus": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "estressant": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "estridor": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "estridència": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "estrèpid": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "exasperat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "excrescència": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "extremat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "extremista": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "fador": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "falsar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "falsejar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "falsificar": { "pos": "v", "pol": "-0.5", "std": "0.072" }, "fantasiador": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fantasiaire": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fatalitat": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fer barroerament": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "fer podor": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "fiasco": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fingiment": { "pos": "n", "pol": "-0.5", "std": "0.12" }, "forces de l'ordre": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "forces de l'ordre públic": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "forces policials": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "formigueig": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fracturar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "gangrenós": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "garneu": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "garrular": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "gemegor": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "genus bibos": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "genus branta": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "genus sivapithecus": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "geperut": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gori-gori": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gosat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "grafitti": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "graneua": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "granític": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "groller": { "pos": "a", "pol": "-0.469", "std": "0.157" }, "grolleria": { "pos": "n", "pol": "-0.5", "std": "0.072" }, "guanac": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "guerriller": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "guillat": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gàbia de boigs": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hampa": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hemopatia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hemosiderosi": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "heterogeneïtat": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hipermetropia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hipoglucèmia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "horrífic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "iconoclàsia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ignorant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ignorància": { "pos": "n", "pol": "-0.5", "std": "0.072" }, "imbecil·litat": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "immolar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "immortal": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "immunitzat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "immunodeficiència": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "impaciència": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "imperatiu": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "impertinència": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "impietat": { "pos": "n", "pol": "-0.5", "std": "0.177" }, "implacable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inaplicabilitat": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inatenció": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "incompleció": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inconstitucional": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "indecorós": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "indegut": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "indeterminable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "indigne": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "indignitat": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "inelegància": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inexcusable": { "pos": "a", "pol": "-0.5", "std": "0.088" }, "inexperiència": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "inexplicació": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "informal": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "infrangible": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "innoble": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inquebrantable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inquietar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "insensat": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "insensibilitzat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "insustancialitat": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "intimidatori": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "intrincat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "investigació judicial": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inviolable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "irreflexiu": { "pos": "a", "pol": "-0.5", "std": "0.265" }, "ixòdids": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "jeremiada": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "licopè": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "llanguir": { "pos": "v", "pol": "-0.5", "std": "0.088" }, "mala fe": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "malaltia de la sang": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "malastrugança": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "maledicència": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "malendreç": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "malmesclar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "mamarratxo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "maníacodepressiu": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mascarada": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "maximalista": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "menester": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "merder": { "pos": "n", "pol": "-0.5", "std": "0.072" }, "microsporidis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mirar bocabadat": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "mixosporidis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mofador": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mofaire": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mofeta": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "moléstia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mordaç": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "moreno": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "morè": { "pos": "a", "pol": "-0.375", "std": "0.061" }, "mujahidí": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mutilat": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "món del crim": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "narcotisme": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "neguitejar-se": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "neutre": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "nictalopia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "nimbus": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "nimfòmana": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "nuvolot": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "obsessionat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "obsessiu": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "obsés": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "odiositat": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "oftalmia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "oosfera": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ordre d'execució": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "osteoporosi": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "part inferior": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "patetisme": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "patètic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "pejoratiu": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "pena capital": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pena de mort": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "perible": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "perillositat": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "perillós": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "pertorbador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pessigada": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "petaner": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "petit burgès": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "picardiosa": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "picardiós": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "piromania": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "plany": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "plomís": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "poeta elegíac": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "poltergeist": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "polvorització": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "posar en perill": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "prevariació": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "producció insuficient": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "professor agregat": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "propens": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "puntimirat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "punyada": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "punyeter": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "pàlid": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "queixal del seny": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "quixotesc": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "rampinyar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "rancorós": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "rebaixinc": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "recurrent": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "regust": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "remor sorda": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "repel·lent": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "repeló": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "reprimenda": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "reprotxar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "requeriment": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "roba de dol": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "romàntic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "ronya": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ruboritzat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "rutinari": { "pos": "a", "pol": "-0.5", "std": "0.265" }, "sabotatge": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "saltar-se": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "scratch": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sembrar la zitzània": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "simbòlic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "simple": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sonat": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sonsada": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sonsesa": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sonso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sord": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sorrut": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "subalimentat": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "subcampió": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sufocador": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "superstició": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sòrdid": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "taciturn": { "pos": "a", "pol": "-0.5", "std": "0.088" }, "tallarol de casquet": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "taral·lirot": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "taverna clandestina": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "tensar-se": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "tentineig": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "tentines": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "terrorisme": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "tesar-se": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "tibar-se": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "tocat de l'ala": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "torbador": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "torera": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "torrapipes": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "toxicitat": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "tractament inhumà": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "traumàtic": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "tribunal superior": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "tràngol": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "turmentar-se": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "turtledove": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "vacunat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vençut": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "vermut dolç": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "vermut negre": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "vilesa": { "pos": "n", "pol": "-0.5", "std": "0.144" }, "voluntarietat": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "víctima mortal": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "xerrotejar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "zona perillosa": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "abadessa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "abanderar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "abastir": { "pos": "v", "pol": "0.375", "std": "0.0" }, "abat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "abatible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "abillat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "abonar": { "pos": "v", "pol": "0.313", "std": "0.177" }, "absorbible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "absurd": { "pos": "a", "pol": "0.313", "std": "0.088" }, "acadèmia": { "pos": "n", "pol": "0.292", "std": "0.072" }, "acceptació": { "pos": "n", "pol": "0.292", "std": "0.184" }, "acceptat": { "pos": "a", "pol": "0.333", "std": "0.072" }, "accessibilitat": { "pos": "n", "pol": "0.417", "std": "0.191" }, "acidificant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "acollir": { "pos": "v", "pol": "0.292", "std": "0.144" }, "acolorit": { "pos": "a", "pol": "0.313", "std": "0.177" }, "acomodació": { "pos": "n", "pol": "0.375", "std": "0.177" }, "acomodar": { "pos": "v", "pol": "0.469", "std": "0.157" }, "acord escrit": { "pos": "n", "pol": "0.375", "std": "0.0" }, "acordat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "acostumat": { "pos": "a", "pol": "0.333", "std": "0.072" }, "acreditar": { "pos": "v", "pol": "0.292", "std": "0.191" }, "activació": { "pos": "n", "pol": "0.375", "std": "0.0" }, "activista": { "pos": "a", "pol": "0.375", "std": "0.0" }, "activitat": { "pos": "n", "pol": "0.281", "std": "0.237" }, "acumulatiu": { "pos": "a", "pol": "0.375", "std": "0.088" }, "acídic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "acústica": { "pos": "n", "pol": "0.375", "std": "0.0" }, "adaptabilitat": { "pos": "n", "pol": "0.313", "std": "0.265" }, "adaptar": { "pos": "v", "pol": "0.313", "std": "0.344" }, "adherent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "adhesió": { "pos": "n", "pol": "0.292", "std": "0.191" }, "admetre": { "pos": "v", "pol": "0.292", "std": "0.155" }, "admirador": { "pos": "n", "pol": "0.313", "std": "0.088" }, "admès": { "pos": "a", "pol": "0.313", "std": "0.088" }, "adorable": { "pos": "a", "pol": "0.375", "std": "0.177" }, "adquirible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "adular": { "pos": "v", "pol": "0.458", "std": "0.144" }, "adult": { "pos": "a", "pol": "0.375", "std": "0.0" }, "aeròbic": { "pos": "a", "pol": "0.313", "std": "0.0" }, "afalac": { "pos": "n", "pol": "0.313", "std": "0.088" }, "afegible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "afilat": { "pos": "a", "pol": "0.375", "std": "0.125" }, "afinar": { "pos": "v", "pol": "0.333", "std": "0.368" }, "afluixar-se": { "pos": "v", "pol": "0.438", "std": "0.707" }, "afuat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "agosarat": { "pos": "a", "pol": "0.417", "std": "0.125" }, "agregat": { "pos": "a", "pol": "0.406", "std": "0.239" }, "aigua potable": { "pos": "n", "pol": "0.375", "std": "0.0" }, "airositat": { "pos": "n", "pol": "0.458", "std": "0.144" }, "ajuntat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ajustar": { "pos": "v", "pol": "0.286", "std": "0.277" }, "ajut financer": { "pos": "n", "pol": "0.375", "std": "0.0" }, "alfabetitzacio": { "pos": "n", "pol": "0.375", "std": "0.0" }, "alletar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "alt": { "pos": "a", "pol": "0.292", "std": "0.102" }, "alta fidelitat": { "pos": "n", "pol": "0.313", "std": "0.088" }, "al·licient": { "pos": "n", "pol": "0.438", "std": "0.0" }, "amabilitat": { "pos": "n", "pol": "0.417", "std": "0.22" }, "amagat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ambidextre": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ambivalència": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ametista": { "pos": "a", "pol": "0.375", "std": "0.0" }, "amfipròstil": { "pos": "a", "pol": "0.375", "std": "0.0" }, "amfípode": { "pos": "n", "pol": "0.375", "std": "0.0" }, "amfòter": { "pos": "a", "pol": "0.375", "std": "0.0" }, "amor fraternal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "amorosir": { "pos": "v", "pol": "0.313", "std": "0.177" }, "amplada": { "pos": "n", "pol": "0.292", "std": "0.191" }, "ampli": { "pos": "a", "pol": "0.375", "std": "0.139" }, "anacoreta": { "pos": "n", "pol": "0.375", "std": "0.0" }, "anaeròbic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "anfipròtic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "annex": { "pos": "a", "pol": "0.344", "std": "0.237" }, "annexat": { "pos": "a", "pol": "0.438", "std": "0.354" }, "anomenada": { "pos": "n", "pol": "0.375", "std": "0.0" }, "antheraea": { "pos": "n", "pol": "0.375", "std": "0.0" }, "antiaeri": { "pos": "n", "pol": "0.375", "std": "0.0" }, "antiàcid": { "pos": "a", "pol": "0.375", "std": "0.0" }, "antropofàgia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "anunciat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "anàleg": { "pos": "a", "pol": "0.292", "std": "0.125" }, "apaivagar-se": { "pos": "v", "pol": "0.375", "std": "0.0" }, "apassionant": { "pos": "a", "pol": "0.438", "std": "0.0" }, "apegalós": { "pos": "a", "pol": "0.313", "std": "0.0" }, "apetitós": { "pos": "a", "pol": "0.344", "std": "0.072" }, "aplaudir": { "pos": "v", "pol": "0.375", "std": "0.177" }, "aplicabilitat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "apocàrpic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "apologia": { "pos": "n", "pol": "0.333", "std": "0.072" }, "aprofitable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "aprovació": { "pos": "n", "pol": "0.438", "std": "0.157" }, "aptitud": { "pos": "n", "pol": "0.438", "std": "0.177" }, "arbitrable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "arcà": { "pos": "n", "pol": "0.375", "std": "0.0" }, "argentat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "aristotelisme": { "pos": "n", "pol": "0.375", "std": "0.0" }, "armat": { "pos": "a", "pol": "0.313", "std": "0.088" }, "arreglar-se": { "pos": "v", "pol": "0.344", "std": "0.125" }, "arrodonir": { "pos": "v", "pol": "0.3", "std": "0.364" }, "artefacte": { "pos": "n", "pol": "0.375", "std": "0.0" }, "artesanal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "artesania": { "pos": "n", "pol": "0.417", "std": "0.191" }, "arts": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ascendent": { "pos": "a", "pol": "0.375", "std": "0.177" }, "asimptomàtic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "assaciar-se": { "pos": "v", "pol": "0.375", "std": "0.0" }, "assessor": { "pos": "a", "pol": "0.25", "std": "0.0" }, "assessora": { "pos": "n", "pol": "0.375", "std": "0.0" }, "assimilatiu": { "pos": "a", "pol": "0.375", "std": "0.177" }, "assimilatori": { "pos": "a", "pol": "0.375", "std": "0.177" }, "associat": { "pos": "a", "pol": "0.313", "std": "0.088" }, "associatiu": { "pos": "a", "pol": "0.375", "std": "0.0" }, "assolellat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "assuaujar": { "pos": "v", "pol": "0.333", "std": "0.125" }, "assuavir": { "pos": "v", "pol": "0.333", "std": "0.144" }, "astronòmic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ataronjat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ataràctic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "atent": { "pos": "a", "pol": "0.328", "std": "0.149" }, "atipar-se": { "pos": "v", "pol": "0.375", "std": "0.0" }, "atractivitat": { "pos": "n", "pol": "0.438", "std": "0.177" }, "atreure": { "pos": "v", "pol": "0.292", "std": "0.545" }, "atribuïble": { "pos": "a", "pol": "0.375", "std": "0.0" }, "audibilitat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "auge": { "pos": "n", "pol": "0.375", "std": "0.0" }, "auri": { "pos": "a", "pol": "0.375", "std": "0.0" }, "auspici": { "pos": "n", "pol": "0.375", "std": "0.0" }, "autoadhesiu": { "pos": "a", "pol": "0.375", "std": "0.0" }, "automatitzat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "autoritari": { "pos": "a", "pol": "0.313", "std": "0.0" }, "autoritzat": { "pos": "a", "pol": "0.437", "std": "0.129" }, "avantatge": { "pos": "n", "pol": "0.357", "std": "0.202" }, "avançar": { "pos": "v", "pol": "0.35", "std": "0.389" }, "avançat": { "pos": "a", "pol": "0.278", "std": "0.235" }, "bactericida": { "pos": "a", "pol": "0.375", "std": "0.0" }, "basificar": { "pos": "a", "pol": "0.375", "std": "0.0" }, "beatificat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "begut": { "pos": "a", "pol": "0.375", "std": "0.0" }, "beguí": { "pos": "a", "pol": "0.375", "std": "0.0" }, "beneficis": { "pos": "n", "pol": "0.375", "std": "0.0" }, "beneir": { "pos": "v", "pol": "0.375", "std": "0.0" }, "benignitat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "benintencionat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "benparlat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bescanviabilitat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bhakti": { "pos": "n", "pol": "0.375", "std": "0.0" }, "biologisme": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bioquímic": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bipolar": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bitllet d'autobús": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bitllet de tren": { "pos": "n", "pol": "0.375", "std": "0.0" }, "blasonat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "blindat": { "pos": "a", "pol": "0.313", "std": "0.0" }, "bocabadat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "boirós": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bonança": { "pos": "n", "pol": "0.375", "std": "0.088" }, "bones notícies": { "pos": "n", "pol": "0.375", "std": "0.0" }, "borlat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "borni": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bravo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "brillant": { "pos": "a", "pol": "0.417", "std": "0.099" }, "brillantor": { "pos": "n", "pol": "0.333", "std": "0.52" }, "brocat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bromós": { "pos": "a", "pol": "0.375", "std": "0.0" }, "brutal": { "pos": "a", "pol": "0.375", "std": "0.32" }, "burlesque": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cabalístic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "calculat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "caldejar-se": { "pos": "v", "pol": "0.313", "std": "0.0" }, "calent": { "pos": "a", "pol": "0.417", "std": "0.191" }, "cal·ligrafia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cal”ligrafia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "camí de bast": { "pos": "n", "pol": "0.375", "std": "0.0" }, "camí de ferradura": { "pos": "n", "pol": "0.375", "std": "0.0" }, "canibalisme": { "pos": "n", "pol": "0.375", "std": "0.0" }, "canonitzat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "canviant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cançó religiosa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "capacitar": { "pos": "v", "pol": "0.438", "std": "0.12" }, "capacitat": { "pos": "n", "pol": "0.325", "std": "0.242" }, "capital": { "pos": "a", "pol": "0.281", "std": "0.277" }, "cara-rodó": { "pos": "a", "pol": "0.375", "std": "0.0" }, "carambola": { "pos": "n", "pol": "0.375", "std": "0.0" }, "carisma": { "pos": "n", "pol": "0.375", "std": "0.0" }, "caritat": { "pos": "n", "pol": "0.313", "std": "0.088" }, "carmesí": { "pos": "a", "pol": "0.375", "std": "0.0" }, "carmí": { "pos": "a", "pol": "0.375", "std": "0.0" }, "casolà": { "pos": "a", "pol": "0.438", "std": "0.177" }, "casuística": { "pos": "n", "pol": "0.375", "std": "0.0" }, "catequesi": { "pos": "n", "pol": "0.313", "std": "0.088" }, "cautela": { "pos": "n", "pol": "0.333", "std": "0.26" }, "cavallerositat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "celebració": { "pos": "n", "pol": "0.458", "std": "0.072" }, "celebritat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "centralitzar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "centrípet": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cerimònia religiosa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cicatritzat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "circumstancial": { "pos": "a", "pol": "0.313", "std": "0.088" }, "cirera": { "pos": "a", "pol": "0.375", "std": "0.0" }, "civil": { "pos": "a", "pol": "0.275", "std": "0.112" }, "clandestí": { "pos": "a", "pol": "0.375", "std": "0.0" }, "clar": { "pos": "a", "pol": "0.347", "std": "0.188" }, "claredat": { "pos": "n", "pol": "0.275", "std": "0.185" }, "classista": { "pos": "a", "pol": "0.375", "std": "0.0" }, "clavetejar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "clement": { "pos": "a", "pol": "0.438", "std": "0.177" }, "clàssic": { "pos": "n", "pol": "0.313", "std": "0.265" }, "coactiu": { "pos": "a", "pol": "0.375", "std": "0.0" }, "coercitiu": { "pos": "a", "pol": "0.375", "std": "0.0" }, "coextensiu": { "pos": "a", "pol": "0.375", "std": "0.0" }, "coherent": { "pos": "a", "pol": "0.406", "std": "0.144" }, "coherència": { "pos": "n", "pol": "0.313", "std": "0.088" }, "coixinet": { "pos": "n", "pol": "0.375", "std": "0.0" }, "colltort": { "pos": "a", "pol": "0.375", "std": "0.0" }, "colorat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "colossal": { "pos": "a", "pol": "0.375", "std": "0.072" }, "columnat": { "pos": "a", "pol": "0.292", "std": "0.072" }, "col·lectiu": { "pos": "a", "pol": "0.292", "std": "0.26" }, "combinable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "combinador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "combinat": { "pos": "a", "pol": "0.313", "std": "0.0" }, "combinatori": { "pos": "a", "pol": "0.375", "std": "0.0" }, "comburent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "començar a treballar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "commemoració": { "pos": "n", "pol": "0.375", "std": "0.0" }, "commensurable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "comoditat": { "pos": "n", "pol": "0.417", "std": "0.331" }, "compensació": { "pos": "n", "pol": "0.375", "std": "0.0" }, "competent": { "pos": "a", "pol": "0.375", "std": "0.53" }, "complet": { "pos": "a", "pol": "0.484", "std": "0.17" }, "complimentar": { "pos": "v", "pol": "0.313", "std": "0.088" }, "comprensibilitat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "comprensible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "comprensió": { "pos": "n", "pol": "0.333", "std": "0.191" }, "comprometre's": { "pos": "v", "pol": "0.375", "std": "0.0" }, "comunicatiu": { "pos": "a", "pol": "0.458", "std": "0.125" }, "concepte": { "pos": "n", "pol": "0.375", "std": "0.0" }, "concert benèfic": { "pos": "n", "pol": "0.375", "std": "0.0" }, "concertació": { "pos": "n", "pol": "0.375", "std": "0.0" }, "concomitant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "concordança": { "pos": "n", "pol": "0.375", "std": "0.0" }, "concís": { "pos": "a", "pol": "0.375", "std": "0.0" }, "condecorar": { "pos": "v", "pol": "0.375", "std": "0.177" }, "coneixedor": { "pos": "n", "pol": "0.375", "std": "0.0" }, "coneixement": { "pos": "n", "pol": "0.281", "std": "0.306" }, "coneixement pràctic": { "pos": "n", "pol": "0.375", "std": "0.0" }, "confiabilitat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "confiat": { "pos": "a", "pol": "0.313", "std": "0.177" }, "confidencial": { "pos": "a", "pol": "0.313", "std": "0.243" }, "confirmar": { "pos": "v", "pol": "0.458", "std": "0.072" }, "confluent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "conformista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "confort": { "pos": "n", "pol": "0.375", "std": "0.0" }, "confucionisme": { "pos": "n", "pol": "0.375", "std": "0.0" }, "congeniar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "conjunt": { "pos": "a", "pol": "0.313", "std": "0.063" }, "connectat": { "pos": "a", "pol": "0.292", "std": "0.0" }, "consagrar": { "pos": "v", "pol": "0.438", "std": "0.265" }, "consagrar-se": { "pos": "v", "pol": "0.313", "std": "0.442" }, "conscienciós": { "pos": "a", "pol": "0.375", "std": "0.0" }, "conscient": { "pos": "a", "pol": "0.375", "std": "0.088" }, "consciència": { "pos": "n", "pol": "0.375", "std": "0.188" }, "conseqüent": { "pos": "a", "pol": "0.458", "std": "0.315" }, "consideració": { "pos": "n", "pol": "0.304", "std": "0.247" }, "considerat": { "pos": "a", "pol": "0.406", "std": "0.102" }, "considereació": { "pos": "n", "pol": "0.375", "std": "0.0" }, "consolidador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "consonant sibilant": { "pos": "n", "pol": "0.375", "std": "0.0" }, "constant": { "pos": "a", "pol": "0.35", "std": "0.319" }, "constatar": { "pos": "v", "pol": "0.375", "std": "0.177" }, "constitutiu": { "pos": "a", "pol": "0.375", "std": "0.0" }, "consultor": { "pos": "n", "pol": "0.375", "std": "0.0" }, "consultora": { "pos": "n", "pol": "0.375", "std": "0.0" }, "consumar": { "pos": "v", "pol": "0.375", "std": "0.088" }, "contagiós": { "pos": "a", "pol": "0.375", "std": "0.0" }, "contemporitzador": { "pos": "n", "pol": "0.375", "std": "0.0" }, "contigu": { "pos": "a", "pol": "0.292", "std": "0.072" }, "contracte unilateral": { "pos": "n", "pol": "0.375", "std": "0.0" }, "control de qualitat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "convencionalisme": { "pos": "n", "pol": "0.313", "std": "0.088" }, "conveniència": { "pos": "n", "pol": "0.313", "std": "0.0" }, "convent de monges": { "pos": "n", "pol": "0.375", "std": "0.0" }, "convertible": { "pos": "a", "pol": "0.313", "std": "0.088" }, "convingut": { "pos": "a", "pol": "0.375", "std": "0.0" }, "convèncer": { "pos": "v", "pol": "0.281", "std": "0.102" }, "coordinació": { "pos": "n", "pol": "0.333", "std": "0.473" }, "cop d'efecte": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cornut": { "pos": "a", "pol": "0.313", "std": "0.088" }, "correcció": { "pos": "n", "pol": "0.297", "std": "0.337" }, "corredís": { "pos": "a", "pol": "0.375", "std": "0.0" }, "corregir": { "pos": "v", "pol": "0.396", "std": "0.323" }, "corresponent": { "pos": "a", "pol": "0.292", "std": "0.171" }, "cortesia": { "pos": "n", "pol": "0.275", "std": "0.153" }, "cortès": { "pos": "a", "pol": "0.458", "std": "0.144" }, "cosmètic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "creació artística": { "pos": "n", "pol": "0.375", "std": "0.0" }, "credibilitat": { "pos": "n", "pol": "0.313", "std": "0.088" }, "crestat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "criticaire": { "pos": "n", "pol": "0.313", "std": "0.0" }, "crònic": { "pos": "a", "pol": "0.333", "std": "0.072" }, "cuidar-se": { "pos": "v", "pol": "0.375", "std": "0.0" }, "cuidat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cuirassat": { "pos": "a", "pol": "0.313", "std": "0.0" }, "culte": { "pos": "a", "pol": "0.469", "std": "0.063" }, "culturista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "curabilitat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "curar": { "pos": "v", "pol": "0.417", "std": "0.191" }, "curiositat": { "pos": "n", "pol": "0.375", "std": "0.177" }, "cànon": { "pos": "n", "pol": "0.281", "std": "0.063" }, "cíclic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cívic": { "pos": "a", "pol": "0.313", "std": "0.53" }, "còmic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "córner": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dansa ceremonial": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dansa ritual": { "pos": "n", "pol": "0.375", "std": "0.0" }, "daurat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "decent": { "pos": "a", "pol": "0.417", "std": "0.191" }, "declamatori": { "pos": "a", "pol": "0.375", "std": "0.0" }, "decreixent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "decència": { "pos": "n", "pol": "0.438", "std": "0.265" }, "dedicar-se": { "pos": "v", "pol": "0.333", "std": "0.315" }, "definit": { "pos": "a", "pol": "0.438", "std": "0.177" }, "degenerat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "deixar parat": { "pos": "v", "pol": "0.375", "std": "0.0" }, "deliberat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "delirant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "delit": { "pos": "n", "pol": "0.375", "std": "0.088" }, "demagog": { "pos": "n", "pol": "0.375", "std": "0.0" }, "depassar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "depravat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "derivat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "desblocar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "desbordar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "descendent": { "pos": "n", "pol": "0.25", "std": "0.177" }, "descentralitzador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "descompressió": { "pos": "n", "pol": "0.313", "std": "0.088" }, "desconnectar": { "pos": "v", "pol": "0.438", "std": "0.177" }, "descontrolat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "desembors": { "pos": "n", "pol": "0.375", "std": "0.0" }, "desemborsament": { "pos": "n", "pol": "0.313", "std": "0.088" }, "desentelar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "desglaçar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "deshumanització": { "pos": "n", "pol": "0.375", "std": "0.0" }, "desinfectant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "desitjabilitat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "despenalitzar": { "pos": "v", "pol": "0.292", "std": "0.125" }, "despert": { "pos": "a", "pol": "0.375", "std": "0.088" }, "desprès": { "pos": "a", "pol": "0.375", "std": "0.088" }, "desvetllat": { "pos": "a", "pol": "0.313", "std": "0.088" }, "desvitalització": { "pos": "n", "pol": "0.375", "std": "0.0" }, "determinant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "determinisme": { "pos": "n", "pol": "0.375", "std": "0.0" }, "devessall": { "pos": "n", "pol": "0.438", "std": "0.619" }, "dia dels enamorats": { "pos": "n", "pol": "0.375", "std": "0.0" }, "diari": { "pos": "a", "pol": "0.313", "std": "0.088" }, "dicinodont": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dieta equilibrada": { "pos": "n", "pol": "0.375", "std": "0.0" }, "diligent": { "pos": "a", "pol": "0.313", "std": "0.072" }, "dinàmic": { "pos": "a", "pol": "0.313", "std": "0.063" }, "diplomàtic": { "pos": "a", "pol": "0.458", "std": "0.505" }, "directe": { "pos": "a", "pol": "0.278", "std": "0.182" }, "dirigent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "discreció": { "pos": "n", "pol": "0.275", "std": "0.068" }, "discriminador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "discriminatori": { "pos": "a", "pol": "0.313", "std": "0.354" }, "disminuït": { "pos": "n", "pol": "0.375", "std": "0.0" }, "disponible": { "pos": "a", "pol": "0.3", "std": "0.112" }, "disposar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "disputador": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dissertar": { "pos": "v", "pol": "0.375", "std": "0.144" }, "distret": { "pos": "a", "pol": "0.292", "std": "0.191" }, "divinació": { "pos": "n", "pol": "0.313", "std": "0.177" }, "divulgat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "divulgatiu": { "pos": "a", "pol": "0.375", "std": "0.0" }, "diàlisi": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dolçàs": { "pos": "a", "pol": "0.375", "std": "0.0" }, "domesticació": { "pos": "n", "pol": "0.375", "std": "0.177" }, "domesticar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "domesticat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "domèstic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dona de pes": { "pos": "n", "pol": "0.375", "std": "0.0" }, "donar fruits": { "pos": "v", "pol": "0.375", "std": "0.0" }, "donar hostalatge": { "pos": "v", "pol": "0.375", "std": "0.0" }, "donar suport": { "pos": "v", "pol": "0.325", "std": "0.163" }, "doula": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dramàtic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dreçar": { "pos": "v", "pol": "0.333", "std": "0.072" }, "dringadera": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dringadissa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ebri": { "pos": "a", "pol": "0.375", "std": "0.0" }, "econòmic": { "pos": "a", "pol": "0.3", "std": "0.335" }, "edèn": { "pos": "n", "pol": "0.375", "std": "0.0" }, "eficient": { "pos": "a", "pol": "0.375", "std": "0.088" }, "eficàcia": { "pos": "n", "pol": "0.375", "std": "0.354" }, "efusiu": { "pos": "a", "pol": "0.375", "std": "0.0" }, "eixerit": { "pos": "a", "pol": "0.313", "std": "0.0" }, "elasticitat": { "pos": "n", "pol": "0.313", "std": "0.265" }, "electritzant": { "pos": "a", "pol": "0.313", "std": "0.177" }, "elegància": { "pos": "n", "pol": "0.325", "std": "0.259" }, "elevat": { "pos": "a", "pol": "0.375", "std": "0.258" }, "elisió": { "pos": "n", "pol": "0.375", "std": "0.0" }, "elitista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "elogi": { "pos": "n", "pol": "0.375", "std": "0.0" }, "elogiador": { "pos": "n", "pol": "0.375", "std": "0.0" }, "elàstic": { "pos": "a", "pol": "0.469", "std": "0.063" }, "emblemàtic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "embriac": { "pos": "a", "pol": "0.375", "std": "0.0" }, "embrollaire": { "pos": "n", "pol": "0.375", "std": "0.0" }, "emfàtic": { "pos": "a", "pol": "0.333", "std": "0.0" }, "eminent": { "pos": "a", "pol": "0.417", "std": "0.0" }, "emmanillar": { "pos": "v", "pol": "0.313", "std": "0.088" }, "emmoquetat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "emocionant": { "pos": "a", "pol": "0.438", "std": "0.0" }, "empatia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "empedreït": { "pos": "a", "pol": "0.375", "std": "0.0" }, "emplomallat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "empolainar-se": { "pos": "v", "pol": "0.264", "std": "0.165" }, "enaltir": { "pos": "v", "pol": "0.396", "std": "0.31" }, "encaixat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "encant": { "pos": "n", "pol": "0.375", "std": "0.072" }, "encobert": { "pos": "a", "pol": "0.375", "std": "0.088" }, "encoixinat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "encomanda": { "pos": "n", "pol": "0.375", "std": "0.0" }, "encomi": { "pos": "n", "pol": "0.375", "std": "0.0" }, "encriptat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "encís": { "pos": "n", "pol": "0.333", "std": "0.072" }, "endevinació": { "pos": "n", "pol": "0.313", "std": "0.177" }, "endreçat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "energia": { "pos": "n", "pol": "0.275", "std": "0.202" }, "engrillonat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "engrossir": { "pos": "v", "pol": "0.375", "std": "0.0" }, "enllaçable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "enllaçat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "enorme": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ensinistrar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "ensinistrat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "entremaliat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "entrenat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "entreteniment educatiu": { "pos": "n", "pol": "0.375", "std": "0.0" }, "envermellit": { "pos": "a", "pol": "0.375", "std": "0.0" }, "envoltant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "enèrgic": { "pos": "a", "pol": "0.266", "std": "0.124" }, "equanimitat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "equilibrat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "equipar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "equitat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "equivalent": { "pos": "a", "pol": "0.292", "std": "0.25" }, "equivalència": { "pos": "n", "pol": "0.292", "std": "0.125" }, "esbargiment": { "pos": "n", "pol": "0.375", "std": "0.0" }, "escalfar-se": { "pos": "v", "pol": "0.313", "std": "0.0" }, "escarlata": { "pos": "a", "pol": "0.375", "std": "0.0" }, "escatimar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "escola parroquial": { "pos": "n", "pol": "0.313", "std": "0.088" }, "escola religiosa": { "pos": "n", "pol": "0.313", "std": "0.088" }, "escollit": { "pos": "n", "pol": "0.375", "std": "0.0" }, "escórrer-se": { "pos": "v", "pol": "0.375", "std": "0.0" }, "esgarriacries": { "pos": "n", "pol": "0.375", "std": "0.0" }, "espaiós": { "pos": "a", "pol": "0.344", "std": "0.12" }, "espaterrat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "espavilat": { "pos": "a", "pol": "0.361", "std": "0.121" }, "especial": { "pos": "a", "pol": "0.475", "std": "0.274" }, "especialitzar-se": { "pos": "v", "pol": "0.375", "std": "0.0" }, "espectacular": { "pos": "a", "pol": "0.375", "std": "0.0" }, "espiritualització": { "pos": "n", "pol": "0.375", "std": "0.0" }, "esplendor": { "pos": "n", "pol": "0.375", "std": "0.433" }, "espollar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "esponera": { "pos": "n", "pol": "0.375", "std": "0.0" }, "esprint": { "pos": "n", "pol": "0.375", "std": "0.0" }, "esquerrà": { "pos": "n", "pol": "0.292", "std": "0.191" }, "estabilitzar-se": { "pos": "v", "pol": "0.281", "std": "0.188" }, "estable": { "pos": "a", "pol": "0.3", "std": "0.19" }, "estar d'acord": { "pos": "v", "pol": "0.375", "std": "0.088" }, "esteorofònic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "estiuejador": { "pos": "n", "pol": "0.375", "std": "0.0" }, "estiuejant": { "pos": "n", "pol": "0.375", "std": "0.0" }, "estudis": { "pos": "n", "pol": "0.375", "std": "0.0" }, "estèreo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "esvelt": { "pos": "a", "pol": "0.313", "std": "0.0" }, "evocador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "evocatiu": { "pos": "a", "pol": "0.375", "std": "0.0" }, "exactitud": { "pos": "n", "pol": "0.292", "std": "0.0" }, "exactitut": { "pos": "n", "pol": "0.375", "std": "0.0" }, "excel·lir": { "pos": "v", "pol": "0.292", "std": "0.26" }, "excepcional": { "pos": "a", "pol": "0.271", "std": "0.32" }, "excitat": { "pos": "a", "pol": "0.313", "std": "0.0" }, "expectar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "experiència": { "pos": "n", "pol": "0.333", "std": "0.125" }, "expressiu": { "pos": "a", "pol": "0.438", "std": "0.088" }, "exquisit": { "pos": "a", "pol": "0.438", "std": "0.177" }, "extens": { "pos": "a", "pol": "0.357", "std": "0.152" }, "extraordinari": { "pos": "a", "pol": "0.393", "std": "0.269" }, "extrovertit": { "pos": "n", "pol": "0.375", "std": "0.0" }, "exuberant": { "pos": "a", "pol": "0.333", "std": "0.331" }, "exuberància": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fantàstic": { "pos": "a", "pol": "0.375", "std": "0.402" }, "farcit": { "pos": "a", "pol": "0.375", "std": "0.0" }, "farisaic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fariseu": { "pos": "a", "pol": "0.375", "std": "0.0" }, "favor": { "pos": "n", "pol": "0.333", "std": "0.125" }, "favorit": { "pos": "a", "pol": "0.438", "std": "0.0" }, "fecundar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "felicitació": { "pos": "n", "pol": "0.417", "std": "0.144" }, "felicitar": { "pos": "v", "pol": "0.458", "std": "0.144" }, "fenomen": { "pos": "n", "pol": "0.313", "std": "0.177" }, "fer mutis": { "pos": "v", "pol": "0.375", "std": "0.0" }, "fer sonar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "ferm": { "pos": "a", "pol": "0.313", "std": "0.263" }, "feta": { "pos": "n", "pol": "0.313", "std": "0.0" }, "fi": { "pos": "a", "pol": "0.375", "std": "0.306" }, "filantrop": { "pos": "n", "pol": "0.375", "std": "0.0" }, "filosofia": { "pos": "n", "pol": "0.313", "std": "0.088" }, "finesa": { "pos": "n", "pol": "0.313", "std": "0.088" }, "fingit": { "pos": "a", "pol": "0.375", "std": "0.0" }, "flexible": { "pos": "a", "pol": "0.375", "std": "0.217" }, "florent": { "pos": "a", "pol": "0.438", "std": "0.442" }, "florescent": { "pos": "a", "pol": "0.438", "std": "0.442" }, "fluent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fluid": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fluorescent": { "pos": "a", "pol": "0.281", "std": "0.072" }, "folgança": { "pos": "n", "pol": "0.292", "std": "0.304" }, "foment": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fondo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "forense": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "formal": { "pos": "a", "pol": "0.375", "std": "0.063" }, "formalitat": { "pos": "n", "pol": "0.35", "std": "0.168" }, "formalitats": { "pos": "n", "pol": "0.375", "std": "0.0" }, "formidable": { "pos": "a", "pol": "0.375", "std": "0.442" }, "fornit": { "pos": "a", "pol": "0.281", "std": "0.12" }, "fort": { "pos": "a", "pol": "0.264", "std": "0.174" }, "fortalesa": { "pos": "n", "pol": "0.313", "std": "0.354" }, "forçut": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fosforescent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "franc": { "pos": "a", "pol": "0.375", "std": "0.088" }, "franquesa": { "pos": "n", "pol": "0.286", "std": "0.202" }, "fructífer": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fruïció": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fumat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "furgoneta de repartiment": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fàcil": { "pos": "a", "pol": "0.375", "std": "0.177" }, "galanxó": { "pos": "a", "pol": "0.375", "std": "0.0" }, "galàctic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "garratibat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "gasela persa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gastrònom": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gaudi": { "pos": "n", "pol": "0.375", "std": "0.088" }, "genealogista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "generositat": { "pos": "n", "pol": "0.375", "std": "0.088" }, "gentilesa": { "pos": "n", "pol": "0.375", "std": "0.277" }, "genus antheraea": { "pos": "n", "pol": "0.375", "std": "0.0" }, "genus gobio": { "pos": "n", "pol": "0.375", "std": "0.0" }, "germicida": { "pos": "a", "pol": "0.375", "std": "0.0" }, "glamourós": { "pos": "a", "pol": "0.375", "std": "0.0" }, "glide": { "pos": "n", "pol": "0.375", "std": "0.0" }, "global": { "pos": "a", "pol": "0.321", "std": "0.213" }, "gloc-gloc": { "pos": "n", "pol": "0.375", "std": "0.0" }, "glorificat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "glutinós": { "pos": "a", "pol": "0.313", "std": "0.0" }, "glòria": { "pos": "n", "pol": "0.313", "std": "0.063" }, "gobio": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gomós": { "pos": "a", "pol": "0.313", "std": "0.0" }, "gorrejar": { "pos": "v", "pol": "0.375", "std": "0.088" }, "gourmet": { "pos": "n", "pol": "0.375", "std": "0.0" }, "governant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "gran": { "pos": "a", "pol": "0.285", "std": "0.206" }, "grana": { "pos": "a", "pol": "0.375", "std": "0.0" }, "gregari": { "pos": "a", "pol": "0.333", "std": "0.125" }, "groc": { "pos": "a", "pol": "0.292", "std": "0.144" }, "gràcia": { "pos": "n", "pol": "0.264", "std": "0.192" }, "gràcil": { "pos": "a", "pol": "0.438", "std": "0.088" }, "gràfic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "guanys": { "pos": "n", "pol": "0.375", "std": "0.0" }, "guariment": { "pos": "n", "pol": "0.375", "std": "0.0" }, "guarir": { "pos": "v", "pol": "0.344", "std": "0.213" }, "guarir-se": { "pos": "v", "pol": "0.375", "std": "0.0" }, "guiar-se": { "pos": "v", "pol": "0.375", "std": "0.0" }, "gustós": { "pos": "a", "pol": "0.438", "std": "0.0" }, "habilitar": { "pos": "v", "pol": "0.333", "std": "0.315" }, "habilitat": { "pos": "n", "pol": "0.406", "std": "0.221" }, "habitual": { "pos": "a", "pol": "0.286", "std": "0.144" }, "habituat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hedonisme": { "pos": "n", "pol": "0.313", "std": "0.088" }, "hermètic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "heterosi": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hidròfob": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hifi": { "pos": "n", "pol": "0.375", "std": "0.0" }, "higiènic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hiperactiu": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hipertiroïdisme": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hipnotitzador": { "pos": "a", "pol": "0.313", "std": "0.619" }, "home de pes": { "pos": "n", "pol": "0.375", "std": "0.0" }, "homogeneitzat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "homogeni": { "pos": "a", "pol": "0.375", "std": "0.0" }, "honradesa": { "pos": "n", "pol": "0.313", "std": "0.265" }, "hosanna": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hostatge": { "pos": "n", "pol": "0.375", "std": "0.0" }, "humanitari": { "pos": "a", "pol": "0.375", "std": "0.0" }, "humanitats": { "pos": "n", "pol": "0.375", "std": "0.0" }, "humorada": { "pos": "n", "pol": "0.375", "std": "0.0" }, "illustracio grafica": { "pos": "n", "pol": "0.375", "std": "0.0" }, "imbricat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "immaculat": { "pos": "a", "pol": "0.406", "std": "0.063" }, "immanent": { "pos": "a", "pol": "0.438", "std": "0.177" }, "immeculat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "imparcialitat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "impecable": { "pos": "a", "pol": "0.469", "std": "0.161" }, "impertorable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "impol·lut": { "pos": "a", "pol": "0.438", "std": "0.088" }, "important": { "pos": "a", "pol": "0.393", "std": "0.125" }, "importància": { "pos": "n", "pol": "0.354", "std": "0.166" }, "impregnar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "impressionant": { "pos": "a", "pol": "0.458", "std": "0.144" }, "impressionar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "impressionat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "impune": { "pos": "a", "pol": "0.375", "std": "0.0" }, "incandescent": { "pos": "a", "pol": "0.281", "std": "0.063" }, "incansable": { "pos": "a", "pol": "0.313", "std": "0.088" }, "inconfusible": { "pos": "a", "pol": "0.313", "std": "0.177" }, "incontrolat": { "pos": "a", "pol": "0.375", "std": "0.088" }, "independent": { "pos": "a", "pol": "0.271", "std": "0.166" }, "indicatiu": { "pos": "a", "pol": "0.438", "std": "0.088" }, "individual": { "pos": "a", "pol": "0.281", "std": "0.188" }, "individualista": { "pos": "a", "pol": "0.375", "std": "0.0" }, "indreïble": { "pos": "a", "pol": "0.375", "std": "0.0" }, "indubtable": { "pos": "a", "pol": "0.313", "std": "0.265" }, "inductiu": { "pos": "a", "pol": "0.375", "std": "0.088" }, "indulgent": { "pos": "a", "pol": "0.438", "std": "0.088" }, "inequívoc": { "pos": "a", "pol": "0.375", "std": "0.072" }, "inestimable": { "pos": "a", "pol": "0.375", "std": "0.177" }, "infatigable": { "pos": "a", "pol": "0.313", "std": "0.088" }, "infectat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "infecte": { "pos": "a", "pol": "0.375", "std": "0.0" }, "inflamable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "influenciar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "informatiu": { "pos": "a", "pol": "0.375", "std": "0.0" }, "infrasònic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ingeni": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ingerir": { "pos": "v", "pol": "0.375", "std": "0.0" }, "inigualat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "innocent": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "innovador": { "pos": "a", "pol": "0.425", "std": "0.168" }, "institució docent": { "pos": "n", "pol": "0.375", "std": "0.0" }, "integrador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "integritat": { "pos": "n", "pol": "0.313", "std": "0.088" }, "intercanviabilitat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "interessar": { "pos": "v", "pol": "0.333", "std": "0.545" }, "intermig": { "pos": "a", "pol": "0.375", "std": "0.0" }, "intern": { "pos": "a", "pol": "0.375", "std": "0.185" }, "internar-se": { "pos": "v", "pol": "0.375", "std": "0.53" }, "interpretació literal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "interès personal": { "pos": "n", "pol": "0.313", "std": "0.088" }, "intrigar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "intrínsec": { "pos": "a", "pol": "0.375", "std": "0.0" }, "invent": { "pos": "n", "pol": "0.375", "std": "0.0" }, "inversemblant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ioga": { "pos": "n", "pol": "0.313", "std": "0.088" }, "irrebatible": { "pos": "a", "pol": "0.313", "std": "0.265" }, "irrompible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "isòtrop": { "pos": "a", "pol": "0.375", "std": "0.0" }, "jardí terrenal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "jesuític": { "pos": "a", "pol": "0.375", "std": "0.0" }, "jesuïta": { "pos": "a", "pol": "0.375", "std": "0.0" }, "jubileu": { "pos": "n", "pol": "0.375", "std": "0.0" }, "junt": { "pos": "a", "pol": "0.375", "std": "0.0" }, "jurament hipocràtic": { "pos": "n", "pol": "0.375", "std": "0.0" }, "juvenil": { "pos": "a", "pol": "0.344", "std": "0.072" }, "lacrar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "lacònic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "latitud": { "pos": "n", "pol": "0.375", "std": "0.0" }, "legalitzar": { "pos": "v", "pol": "0.292", "std": "0.125" }, "legitimar": { "pos": "v", "pol": "0.292", "std": "0.125" }, "legítim": { "pos": "a", "pol": "0.313", "std": "0.088" }, "lent anastigmàtica": { "pos": "n", "pol": "0.375", "std": "0.0" }, "lila": { "pos": "a", "pol": "0.375", "std": "0.0" }, "liliaci": { "pos": "a", "pol": "0.375", "std": "0.0" }, "liquidador": { "pos": "n", "pol": "0.375", "std": "0.0" }, "lladruc": { "pos": "n", "pol": "0.375", "std": "0.0" }, "llagotejar": { "pos": "v", "pol": "0.458", "std": "0.144" }, "llarg": { "pos": "a", "pol": "0.281", "std": "0.157" }, "llaç blau": { "pos": "n", "pol": "0.375", "std": "0.0" }, "llest": { "pos": "a", "pol": "0.321", "std": "0.144" }, "llevat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "llibertari": { "pos": "n", "pol": "0.313", "std": "0.354" }, "llicenciar-se": { "pos": "v", "pol": "0.375", "std": "0.0" }, "lliscant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "lliurement": { "pos": "n", "pol": "0.375", "std": "0.0" }, "lloc d'interès turístic": { "pos": "n", "pol": "0.375", "std": "0.0" }, "lloctinent": { "pos": "n", "pol": "0.375", "std": "0.0" }, "lluent": { "pos": "a", "pol": "0.4", "std": "0.056" }, "lluir": { "pos": "v", "pol": "0.375", "std": "0.0" }, "lluminositat": { "pos": "n", "pol": "0.313", "std": "0.0" }, "lluminós": { "pos": "a", "pol": "0.344", "std": "0.0" }, "llunyà": { "pos": "a", "pol": "0.292", "std": "0.105" }, "llustrós": { "pos": "a", "pol": "0.458", "std": "0.072" }, "longanimitat": { "pos": "n", "pol": "0.313", "std": "0.177" }, "lucratiu": { "pos": "a", "pol": "0.438", "std": "0.177" }, "luminescent": { "pos": "a", "pol": "0.292", "std": "0.072" }, "luxós": { "pos": "a", "pol": "0.292", "std": "0.361" }, "lívid": { "pos": "a", "pol": "0.375", "std": "0.0" }, "lògica": { "pos": "n", "pol": "0.292", "std": "0.281" }, "lúcid": { "pos": "a", "pol": "0.438", "std": "0.177" }, "madur": { "pos": "a", "pol": "0.4", "std": "0.112" }, "magenta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "magnànim": { "pos": "a", "pol": "0.438", "std": "0.088" }, "malva": { "pos": "a", "pol": "0.375", "std": "0.0" }, "manejabilitat": { "pos": "n", "pol": "0.333", "std": "0.072" }, "manicura": { "pos": "n", "pol": "0.375", "std": "0.0" }, "manifest": { "pos": "a", "pol": "0.458", "std": "0.072" }, "manualitat": { "pos": "n", "pol": "0.313", "std": "0.088" }, "manumetre": { "pos": "v", "pol": "0.375", "std": "0.0" }, "manya": { "pos": "n", "pol": "0.417", "std": "0.191" }, "mare superiora": { "pos": "n", "pol": "0.375", "std": "0.0" }, "marginat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "marrameu": { "pos": "n", "pol": "0.375", "std": "0.0" }, "marronós": { "pos": "a", "pol": "0.375", "std": "0.0" }, "marró": { "pos": "a", "pol": "0.375", "std": "0.0" }, "massís": { "pos": "a", "pol": "0.313", "std": "0.395" }, "maximitzar": { "pos": "v", "pol": "0.313", "std": "0.177" }, "megalomania": { "pos": "n", "pol": "0.375", "std": "0.0" }, "meitat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "melindrós": { "pos": "n", "pol": "0.375", "std": "0.0" }, "melodiós": { "pos": "a", "pol": "0.375", "std": "0.0" }, "menut": { "pos": "a", "pol": "0.292", "std": "0.072" }, "menystenir": { "pos": "v", "pol": "0.375", "std": "0.0" }, "meritocràcia": { "pos": "n", "pol": "0.313", "std": "0.088" }, "merèixer": { "pos": "v", "pol": "0.438", "std": "0.088" }, "mestria": { "pos": "n", "pol": "0.313", "std": "0.177" }, "mesures": { "pos": "n", "pol": "0.375", "std": "0.0" }, "meticulós": { "pos": "a", "pol": "0.344", "std": "0.373" }, "metodisme": { "pos": "n", "pol": "0.375", "std": "0.0" }, "metàl·lic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "millorar": { "pos": "v", "pol": "0.268", "std": "0.173" }, "minuciós": { "pos": "a", "pol": "0.325", "std": "0.28" }, "minvant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "miol": { "pos": "n", "pol": "0.375", "std": "0.0" }, "miracle": { "pos": "n", "pol": "0.375", "std": "0.389" }, "mitjà": { "pos": "a", "pol": "0.375", "std": "0.0" }, "modern": { "pos": "a", "pol": "0.321", "std": "0.189" }, "moderno": { "pos": "a", "pol": "0.375", "std": "0.0" }, "modificable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "modèstia": { "pos": "n", "pol": "0.313", "std": "0.0" }, "momentani": { "pos": "a", "pol": "0.375", "std": "0.0" }, "monosèmic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "moral": { "pos": "a", "pol": "0.438", "std": "0.265" }, "moralitzar": { "pos": "v", "pol": "0.375", "std": "0.144" }, "motivador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mucilaginós": { "pos": "a", "pol": "0.313", "std": "0.0" }, "mugit": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mundial": { "pos": "a", "pol": "0.275", "std": "0.209" }, "muntat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "musculat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "musculós": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mutabilitat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mèrit": { "pos": "n", "pol": "0.417", "std": "0.217" }, "mòbil": { "pos": "a", "pol": "0.313", "std": "0.265" }, "música clàssica": { "pos": "n", "pol": "0.375", "std": "0.0" }, "música pop": { "pos": "n", "pol": "0.375", "std": "0.0" }, "nadala": { "pos": "n", "pol": "0.313", "std": "0.0" }, "natural": { "pos": "a", "pol": "0.271", "std": "0.263" }, "nebulós": { "pos": "a", "pol": "0.375", "std": "0.0" }, "neoclàssic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "net": { "pos": "n", "pol": "0.375", "std": "0.0" }, "netedat": { "pos": "n", "pol": "0.313", "std": "0.088" }, "no": { "pos": "n", "pol": "0.375", "std": "0.0" }, "normal": { "pos": "a", "pol": "0.325", "std": "0.137" }, "normalitat": { "pos": "n", "pol": "0.292", "std": "0.144" }, "objectivitat": { "pos": "n", "pol": "0.375", "std": "0.177" }, "observador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "occidentalitzar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "oci": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ociós": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ocre": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ocult": { "pos": "a", "pol": "0.375", "std": "0.0" }, "oferir-se": { "pos": "v", "pol": "0.35", "std": "0.227" }, "ofertori": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ofici": { "pos": "n", "pol": "0.281", "std": "0.12" }, "oficina d'ocupació": { "pos": "n", "pol": "0.375", "std": "0.0" }, "olivaci": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ometre": { "pos": "v", "pol": "0.313", "std": "0.265" }, "onomatopeia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "operatori": { "pos": "a", "pol": "0.375", "std": "0.0" }, "or": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ordenat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "orgànic": { "pos": "a", "pol": "0.292", "std": "0.282" }, "orientació religiosa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "orientador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "originalitat": { "pos": "n", "pol": "0.313", "std": "0.177" }, "ornament arquitectònic": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ortodòxia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ovació": { "pos": "n", "pol": "0.292", "std": "0.125" }, "oxidable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pacient": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pacificació": { "pos": "n", "pol": "0.375", "std": "0.0" }, "paciència": { "pos": "n", "pol": "0.313", "std": "0.177" }, "pacte": { "pos": "n", "pol": "0.281", "std": "0.072" }, "pacte de cavallers": { "pos": "n", "pol": "0.375", "std": "0.0" }, "palès": { "pos": "a", "pol": "0.438", "std": "0.088" }, "pampa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "panegirista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "panegíric": { "pos": "n", "pol": "0.375", "std": "0.0" }, "panxut": { "pos": "a", "pol": "0.292", "std": "0.072" }, "paper ceba": { "pos": "n", "pol": "0.375", "std": "0.0" }, "parar atanció": { "pos": "v", "pol": "0.375", "std": "0.0" }, "parcial": { "pos": "a", "pol": "0.438", "std": "0.339" }, "participar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "participar d'una qualitat": { "pos": "v", "pol": "0.375", "std": "0.0" }, "particular": { "pos": "n", "pol": "0.25", "std": "0.0" }, "partit": { "pos": "n", "pol": "0.292", "std": "0.52" }, "parxís": { "pos": "n", "pol": "0.375", "std": "0.0" }, "passar el forrellat": { "pos": "v", "pol": "0.375", "std": "0.0" }, "passiu": { "pos": "a", "pol": "0.313", "std": "0.354" }, "passiva": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pastiu": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pastós": { "pos": "a", "pol": "0.313", "std": "0.0" }, "patent": { "pos": "a", "pol": "0.438", "std": "0.088" }, "paternalisme": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pensar a": { "pos": "v", "pol": "0.375", "std": "0.0" }, "pentecostalisme": { "pos": "n", "pol": "0.375", "std": "0.0" }, "percepció del so": { "pos": "n", "pol": "0.375", "std": "0.0" }, "perceptible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "perfeccionament": { "pos": "n", "pol": "0.375", "std": "0.0" }, "perfeccionar": { "pos": "v", "pol": "0.375", "std": "0.072" }, "perigeu": { "pos": "n", "pol": "0.375", "std": "0.0" }, "perit": { "pos": "n", "pol": "0.375", "std": "0.0" }, "periòdic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "permís": { "pos": "n", "pol": "0.313", "std": "0.213" }, "perpicaç": { "pos": "a", "pol": "0.375", "std": "0.0" }, "persona a càrrec": { "pos": "n", "pol": "0.375", "std": "0.0" }, "perspicaç": { "pos": "a", "pol": "0.375", "std": "0.177" }, "perspicu": { "pos": "a", "pol": "0.375", "std": "0.0" }, "perspicüitat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pervertit": { "pos": "n", "pol": "0.375", "std": "0.0" }, "perícia": { "pos": "n", "pol": "0.325", "std": "0.088" }, "piano de mitja cua": { "pos": "n", "pol": "0.375", "std": "0.0" }, "picant": { "pos": "a", "pol": "0.375", "std": "0.072" }, "ping": { "pos": "n", "pol": "0.375", "std": "0.0" }, "plaer": { "pos": "n", "pol": "0.313", "std": "0.063" }, "planúria": { "pos": "n", "pol": "0.375", "std": "0.0" }, "plausibilitat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "playboy": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ple": { "pos": "a", "pol": "0.333", "std": "0.137" }, "plus": { "pos": "n", "pol": "0.375", "std": "0.0" }, "polemista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "polir": { "pos": "v", "pol": "0.411", "std": "0.42" }, "polit": { "pos": "a", "pol": "0.333", "std": "0.072" }, "pols (partícules)": { "pos": "n", "pol": "0.375", "std": "0.0" }, "poma borda": { "pos": "n", "pol": "0.375", "std": "0.0" }, "popular": { "pos": "a", "pol": "0.417", "std": "0.29" }, "popularitzar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "posar a punt": { "pos": "v", "pol": "0.375", "std": "0.0" }, "positivista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "possible": { "pos": "a", "pol": "0.292", "std": "0.125" }, "postada": { "pos": "n", "pol": "0.375", "std": "0.0" }, "posturer": { "pos": "n", "pol": "0.375", "std": "0.0" }, "potència": { "pos": "n", "pol": "0.333", "std": "0.191" }, "pragmatisme": { "pos": "n", "pol": "0.375", "std": "0.0" }, "precipitat": { "pos": "a", "pol": "0.333", "std": "0.144" }, "precisió": { "pos": "n", "pol": "0.458", "std": "0.125" }, "predilecció": { "pos": "n", "pol": "0.375", "std": "0.0" }, "predilecte": { "pos": "n", "pol": "0.375", "std": "0.0" }, "predisposat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "predominant": { "pos": "a", "pol": "0.375", "std": "0.177" }, "preeminència": { "pos": "n", "pol": "0.438", "std": "0.088" }, "preferit": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pregon": { "pos": "a", "pol": "0.375", "std": "0.0" }, "preliterari": { "pos": "a", "pol": "0.375", "std": "0.0" }, "premeditat": { "pos": "a", "pol": "0.438", "std": "0.088" }, "prescrit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prevaler": { "pos": "v", "pol": "0.333", "std": "0.144" }, "prevenció": { "pos": "n", "pol": "0.438", "std": "0.265" }, "previsible": { "pos": "a", "pol": "0.438", "std": "0.088" }, "primera qualitat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "primers auxilis": { "pos": "n", "pol": "0.375", "std": "0.0" }, "principal": { "pos": "a", "pol": "0.375", "std": "0.123" }, "principi del plaer": { "pos": "n", "pol": "0.375", "std": "0.0" }, "priora": { "pos": "n", "pol": "0.375", "std": "0.0" }, "prismàtic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "privat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "probitat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "producció artística": { "pos": "n", "pol": "0.375", "std": "0.0" }, "productiu": { "pos": "a", "pol": "0.469", "std": "0.072" }, "profecia": { "pos": "n", "pol": "0.313", "std": "0.177" }, "professió": { "pos": "n", "pol": "0.275", "std": "0.112" }, "profusió": { "pos": "n", "pol": "0.438", "std": "0.619" }, "programa d'educació": { "pos": "n", "pol": "0.375", "std": "0.0" }, "programació orientada a objectes": { "pos": "n", "pol": "0.375", "std": "0.0" }, "progresista": { "pos": "a", "pol": "0.375", "std": "0.0" }, "progressista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "proliferació": { "pos": "n", "pol": "0.281", "std": "0.415" }, "prolongat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "prometre": { "pos": "v", "pol": "0.375", "std": "0.0" }, "prometre's": { "pos": "v", "pol": "0.375", "std": "0.0" }, "pronom personal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "proveir": { "pos": "v", "pol": "0.375", "std": "0.0" }, "proverbial": { "pos": "a", "pol": "0.375", "std": "0.0" }, "proves indirectes": { "pos": "n", "pol": "0.375", "std": "0.0" }, "prudència": { "pos": "n", "pol": "0.275", "std": "0.227" }, "pràctic": { "pos": "a", "pol": "0.417", "std": "0.191" }, "pròstil": { "pos": "a", "pol": "0.375", "std": "0.0" }, "puericultura": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pulcre": { "pos": "a", "pol": "0.313", "std": "0.088" }, "pulcritut": { "pos": "n", "pol": "0.375", "std": "0.0" }, "puntualitat": { "pos": "n", "pol": "0.375", "std": "0.088" }, "pur": { "pos": "a", "pol": "0.429", "std": "0.086" }, "purulent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "públic": { "pos": "a", "pol": "0.438", "std": "0.072" }, "qi": { "pos": "n", "pol": "0.375", "std": "0.0" }, "quirúrgic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "qüestionable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "racional": { "pos": "a", "pol": "0.375", "std": "0.0" }, "racionalista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "racionalitat": { "pos": "n", "pol": "0.438", "std": "0.088" }, "racista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "radiant": { "pos": "a", "pol": "0.375", "std": "0.204" }, "raonable": { "pos": "a", "pol": "0.438", "std": "0.354" }, "ratificació": { "pos": "n", "pol": "0.313", "std": "0.088" }, "real": { "pos": "a", "pol": "0.275", "std": "0.105" }, "reanimar": { "pos": "v", "pol": "0.325", "std": "0.385" }, "recelós": { "pos": "a", "pol": "0.375", "std": "0.0" }, "recolzar": { "pos": "v", "pol": "0.268", "std": "0.187" }, "recomanació": { "pos": "n", "pol": "0.281", "std": "0.063" }, "recomanar": { "pos": "v", "pol": "0.375", "std": "0.177" }, "recompensar": { "pos": "v", "pol": "0.292", "std": "0.072" }, "reconciliar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "recordar-se de": { "pos": "v", "pol": "0.375", "std": "0.0" }, "rector": { "pos": "a", "pol": "0.375", "std": "0.0" }, "redreçar": { "pos": "v", "pol": "0.333", "std": "0.125" }, "redreçar-se": { "pos": "v", "pol": "0.375", "std": "0.0" }, "reductor": { "pos": "a", "pol": "0.375", "std": "0.0" }, "referèndum": { "pos": "n", "pol": "0.375", "std": "0.0" }, "refet": { "pos": "a", "pol": "0.375", "std": "0.0" }, "refinament": { "pos": "n", "pol": "0.333", "std": "0.326" }, "reforma": { "pos": "n", "pol": "0.375", "std": "0.0" }, "reformista": { "pos": "a", "pol": "0.375", "std": "0.0" }, "refrescar": { "pos": "v", "pol": "0.344", "std": "0.204" }, "refulgent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "regi": { "pos": "a", "pol": "0.438", "std": "0.177" }, "reglar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "regnant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "regularitzar": { "pos": "v", "pol": "0.375", "std": "0.088" }, "reincident": { "pos": "n", "pol": "0.375", "std": "0.0" }, "relacionat": { "pos": "a", "pol": "0.313", "std": "0.063" }, "relaxant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rellevant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rellevar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "rellevància": { "pos": "n", "pol": "0.375", "std": "0.0" }, "rememorar": { "pos": "v", "pol": "0.281", "std": "0.161" }, "reminiscent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "repentí": { "pos": "a", "pol": "0.375", "std": "0.0" }, "repic": { "pos": "n", "pol": "0.375", "std": "0.0" }, "repujat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "requerit": { "pos": "a", "pol": "0.375", "std": "0.0" }, "requisa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "requisició": { "pos": "n", "pol": "0.375", "std": "0.0" }, "rescalfar": { "pos": "v", "pol": "0.313", "std": "0.0" }, "rescalfar-se": { "pos": "v", "pol": "0.313", "std": "0.0" }, "reservat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "resolut": { "pos": "a", "pol": "0.438", "std": "0.088" }, "respectes": { "pos": "n", "pol": "0.375", "std": "0.0" }, "respectuós": { "pos": "a", "pol": "0.375", "std": "0.0" }, "restablert": { "pos": "a", "pol": "0.375", "std": "0.0" }, "retrotreure": { "pos": "v", "pol": "0.375", "std": "0.0" }, "retrunyiment": { "pos": "n", "pol": "0.375", "std": "0.0" }, "reunir en un centre": { "pos": "v", "pol": "0.375", "std": "0.0" }, "revoltós": { "pos": "a", "pol": "0.375", "std": "0.0" }, "revolucionari": { "pos": "a", "pol": "0.313", "std": "0.088" }, "ric": { "pos": "a", "pol": "0.469", "std": "0.072" }, "ritu religiós": { "pos": "n", "pol": "0.313", "std": "0.088" }, "robust": { "pos": "a", "pol": "0.3", "std": "0.105" }, "rogenc": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rosa": { "pos": "a", "pol": "0.292", "std": "0.125" }, "rosat": { "pos": "a", "pol": "0.292", "std": "0.072" }, "rosbif": { "pos": "n", "pol": "0.375", "std": "0.0" }, "rosegaaltars": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ràpid": { "pos": "a", "pol": "0.469", "std": "0.102" }, "saborós": { "pos": "a", "pol": "0.325", "std": "0.068" }, "sagrat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "saltiró": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sanar": { "pos": "v", "pol": "0.35", "std": "0.198" }, "sanitat": { "pos": "n", "pol": "0.375", "std": "0.177" }, "santificació": { "pos": "n", "pol": "0.375", "std": "0.0" }, "santificar": { "pos": "v", "pol": "0.313", "std": "0.0" }, "satinat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "saturat": { "pos": "a", "pol": "0.313", "std": "0.0" }, "saturnals": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sedant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sedós": { "pos": "a", "pol": "0.375", "std": "0.0" }, "segellar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "segur": { "pos": "a", "pol": "0.35", "std": "0.23" }, "selecció natural": { "pos": "n", "pol": "0.375", "std": "0.0" }, "semblant": { "pos": "a", "pol": "0.344", "std": "0.063" }, "semiautomàtic": { "pos": "a", "pol": "0.313", "std": "0.088" }, "semidespullat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "semivocal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sencer": { "pos": "a", "pol": "0.325", "std": "0.244" }, "senil": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sensatesa": { "pos": "n", "pol": "0.35", "std": "0.105" }, "sensitiu": { "pos": "a", "pol": "0.313", "std": "0.0" }, "sentit del bé i del mal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "seny": { "pos": "n", "pol": "0.396", "std": "0.171" }, "separable": { "pos": "a", "pol": "0.313", "std": "0.088" }, "ser digne de": { "pos": "v", "pol": "0.438", "std": "0.088" }, "serietat": { "pos": "n", "pol": "0.275", "std": "0.424" }, "sibilant": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sibil·lí": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sibil·lític": { "pos": "a", "pol": "0.375", "std": "0.0" }, "significació": { "pos": "n", "pol": "0.313", "std": "0.265" }, "simetria": { "pos": "n", "pol": "0.292", "std": "0.144" }, "similar": { "pos": "a", "pol": "0.375", "std": "0.072" }, "simulat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sinalefa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sincer": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sinceritat": { "pos": "n", "pol": "0.375", "std": "0.227" }, "sistema de gravació": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sistema del gas": { "pos": "n", "pol": "0.375", "std": "0.0" }, "so vocàlic": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sobrecarregat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sobreexplotació": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sociable": { "pos": "a", "pol": "0.438", "std": "0.157" }, "social": { "pos": "a", "pol": "0.438", "std": "0.0" }, "socialitzat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "solemne": { "pos": "a", "pol": "0.313", "std": "0.0" }, "solemnitat": { "pos": "n", "pol": "0.292", "std": "0.289" }, "solemnització": { "pos": "n", "pol": "0.375", "std": "0.0" }, "solvència": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sol·licitud": { "pos": "n", "pol": "0.344", "std": "0.26" }, "sol·lícit": { "pos": "a", "pol": "0.438", "std": "0.088" }, "somnolent": { "pos": "a", "pol": "0.313", "std": "0.0" }, "somriure": { "pos": "n", "pol": "0.375", "std": "0.0" }, "somrís": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sonar l'alarma": { "pos": "v", "pol": "0.375", "std": "0.0" }, "sonor": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sonora": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sorollós": { "pos": "a", "pol": "0.333", "std": "0.125" }, "sostractiu": { "pos": "a", "pol": "0.375", "std": "0.0" }, "subjectiu": { "pos": "a", "pol": "0.417", "std": "0.144" }, "subsònic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "subtractiu": { "pos": "a", "pol": "0.375", "std": "0.0" }, "succint": { "pos": "a", "pol": "0.375", "std": "0.0" }, "suculent": { "pos": "a", "pol": "0.313", "std": "0.088" }, "suggestionable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "suggestiu": { "pos": "a", "pol": "0.375", "std": "0.0" }, "superb": { "pos": "a", "pol": "0.438", "std": "0.265" }, "superioritat": { "pos": "n", "pol": "0.429", "std": "0.2" }, "supositiu": { "pos": "a", "pol": "0.375", "std": "0.0" }, "suprem": { "pos": "a", "pol": "0.313", "std": "0.177" }, "suprimit": { "pos": "a", "pol": "0.375", "std": "0.0" }, "suspicaç": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sustància": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sòlid": { "pos": "a", "pol": "0.337", "std": "0.346" }, "sònic": { "pos": "a", "pol": "0.375", "std": "0.088" }, "tal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "talent": { "pos": "n", "pol": "0.458", "std": "0.451" }, "tallar a filets": { "pos": "v", "pol": "0.375", "std": "0.0" }, "tallar el vent": { "pos": "v", "pol": "0.375", "std": "0.0" }, "tangible": { "pos": "a", "pol": "0.375", "std": "0.088" }, "tapa d'objectiu": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tapadura": { "pos": "n", "pol": "0.375", "std": "0.0" }, "taronja": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tast": { "pos": "n", "pol": "0.375", "std": "0.0" }, "telescòpic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "temperar-se": { "pos": "v", "pol": "0.313", "std": "0.0" }, "temporada": { "pos": "n", "pol": "0.375", "std": "0.0" }, "temprar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "temps reglamentari": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tenir fe": { "pos": "v", "pol": "0.375", "std": "0.0" }, "tenir present": { "pos": "v", "pol": "0.375", "std": "0.0" }, "tenir trets d'una qualitat": { "pos": "v", "pol": "0.375", "std": "0.0" }, "terapèutic": { "pos": "a", "pol": "0.313", "std": "0.53" }, "terminable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "terra promesa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "terrós": { "pos": "a", "pol": "0.333", "std": "0.072" }, "tipicitat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "titulat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tocata": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tolerància": { "pos": "n", "pol": "0.325", "std": "0.177" }, "torrat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "trafica": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tranquil·litzant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tranquil·litzar-se": { "pos": "v", "pol": "0.375", "std": "0.0" }, "transcendent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "transcendental": { "pos": "a", "pol": "0.375", "std": "0.0" }, "transcendència": { "pos": "n", "pol": "0.333", "std": "0.191" }, "transformable": { "pos": "a", "pol": "0.313", "std": "0.088" }, "transformat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "transmutable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "transparència": { "pos": "n", "pol": "0.281", "std": "0.277" }, "tremend": { "pos": "a", "pol": "0.375", "std": "0.361" }, "trepig": { "pos": "n", "pol": "0.375", "std": "0.0" }, "trisecar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "tritlleig": { "pos": "n", "pol": "0.375", "std": "0.0" }, "triunfar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "tropisme": { "pos": "n", "pol": "0.375", "std": "0.0" }, "turista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "típic": { "pos": "a", "pol": "0.375", "std": "0.213" }, "ultrasònic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unanimitat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "unit": { "pos": "a", "pol": "0.344", "std": "0.0" }, "universal": { "pos": "a", "pol": "0.275", "std": "0.209" }, "unió duanera": { "pos": "n", "pol": "0.375", "std": "0.0" }, "urbanitat": { "pos": "n", "pol": "0.438", "std": "0.12" }, "usdefruit": { "pos": "n", "pol": "0.375", "std": "0.0" }, "usura": { "pos": "n", "pol": "0.375", "std": "0.0" }, "utopia": { "pos": "n", "pol": "0.313", "std": "0.237" }, "vacances": { "pos": "n", "pol": "0.375", "std": "0.0" }, "validació": { "pos": "n", "pol": "0.375", "std": "0.0" }, "validesa": { "pos": "n", "pol": "0.333", "std": "0.402" }, "vast": { "pos": "a", "pol": "0.375", "std": "0.0" }, "vaticini": { "pos": "n", "pol": "0.313", "std": "0.177" }, "veloç": { "pos": "a", "pol": "0.375", "std": "0.0" }, "vendible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "venerable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "veneració": { "pos": "n", "pol": "0.313", "std": "0.0" }, "verdader": { "pos": "a", "pol": "0.375", "std": "0.0" }, "verdós": { "pos": "a", "pol": "0.375", "std": "0.0" }, "verge": { "pos": "a", "pol": "0.375", "std": "0.265" }, "veritable": { "pos": "a", "pol": "0.438", "std": "0.063" }, "veritat": { "pos": "n", "pol": "0.333", "std": "0.274" }, "vermellenc": { "pos": "a", "pol": "0.375", "std": "0.0" }, "vermellós": { "pos": "a", "pol": "0.375", "std": "0.0" }, "vescós": { "pos": "a", "pol": "0.313", "std": "0.0" }, "vestit de campanya": { "pos": "n", "pol": "0.375", "std": "0.0" }, "vi de missa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "viabilitat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "vigorós": { "pos": "a", "pol": "0.292", "std": "0.315" }, "vinculat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "virginal": { "pos": "a", "pol": "0.438", "std": "0.0" }, "virtual": { "pos": "a", "pol": "0.313", "std": "0.088" }, "visar": { "pos": "v", "pol": "0.375", "std": "0.177" }, "viscós": { "pos": "a", "pol": "0.333", "std": "0.0" }, "visible": { "pos": "a", "pol": "0.458", "std": "0.125" }, "vist i plau": { "pos": "n", "pol": "0.375", "std": "0.0" }, "vistós": { "pos": "a", "pol": "0.375", "std": "0.177" }, "vital": { "pos": "a", "pol": "0.425", "std": "0.137" }, "vitalitat": { "pos": "n", "pol": "0.292", "std": "0.402" }, "vitalitzar": { "pos": "v", "pol": "0.438", "std": "0.265" }, "viu": { "pos": "a", "pol": "0.288", "std": "0.189" }, "vivacitat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "vivaç": { "pos": "a", "pol": "0.375", "std": "0.144" }, "vivent": { "pos": "a", "pol": "0.438", "std": "0.088" }, "vivificar": { "pos": "v", "pol": "0.438", "std": "0.265" }, "vivor": { "pos": "n", "pol": "0.313", "std": "0.088" }, "voleibol": { "pos": "n", "pol": "0.375", "std": "0.0" }, "voluminós": { "pos": "a", "pol": "0.375", "std": "0.0" }, "voluntari": { "pos": "n", "pol": "0.375", "std": "0.177" }, "vàlid": { "pos": "a", "pol": "0.438", "std": "0.0" }, "víctors": { "pos": "n", "pol": "0.375", "std": "0.0" }, "warfarina": { "pos": "n", "pol": "0.375", "std": "0.0" }, "workflow": { "pos": "n", "pol": "0.375", "std": "0.0" }, "xarlotada": { "pos": "n", "pol": "0.375", "std": "0.0" }, "xerracar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "àgil": { "pos": "a", "pol": "0.438", "std": "0.0" }, "àngel custodi": { "pos": "n", "pol": "0.375", "std": "0.0" }, "àngel de la guarda": { "pos": "n", "pol": "0.375", "std": "0.0" }, "àrea de coneixement": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ègida": { "pos": "n", "pol": "0.375", "std": "0.0" }, "èxit": { "pos": "n", "pol": "0.3", "std": "0.143" }, "índex de preus": { "pos": "n", "pol": "0.375", "std": "0.0" }, "únic": { "pos": "a", "pol": "0.313", "std": "0.177" }, "abaixar": { "pos": "v", "pol": "-0.271", "std": "0.105" }, "abandonat": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "abaratir": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "abominable": { "pos": "a", "pol": "-0.375", "std": "0.354" }, "abusador": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "abusar": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "acaballes": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acatarrar-se": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "accident": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "accident vascular cerebral": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acer damasquinat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acer damasquí": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acerbitat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acherontia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acondroplàsia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acromegàlia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "adust": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "adversitat": { "pos": "n", "pol": "-0.325", "std": "0.143" }, "advertiment": { "pos": "n", "pol": "-0.344", "std": "0.125" }, "advocar per": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "afartar": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "afòtic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "agalla (botànica)": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "agre": { "pos": "a", "pol": "-0.417", "std": "0.125" }, "agressió": { "pos": "n", "pol": "-0.292", "std": "0.125" }, "agreujar": { "pos": "v", "pol": "-0.312", "std": "0.177" }, "agulla de pit": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "agutzil": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aiguat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "alarmant": { "pos": "a", "pol": "-0.333", "std": "0.191" }, "aldarull": { "pos": "n", "pol": "-0.312", "std": "0.116" }, "alfil": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "algutzir": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "alienació": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "alliberar-se": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "altercat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "altisonància": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "al·lucinació": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "alèxia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ambliopia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "amenaça": { "pos": "n", "pol": "-0.437", "std": "0.102" }, "amenaçar": { "pos": "v", "pol": "-0.312", "std": "0.12" }, "amiloïdosi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "amortallar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "amotinar-se": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "andanada": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "andesita": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anestèsic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "angines": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anormalitat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anticipador": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "antilop negre": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "antiprotó": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "antipàtic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antracita": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "antracosi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anèmia maligna": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "apatia": { "pos": "n", "pol": "-0.469", "std": "0.12" }, "apocat": { "pos": "a", "pol": "-0.292", "std": "0.125" }, "apunyegar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "arduïtat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arguments especiosos": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arrecerar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "arrogant": { "pos": "a", "pol": "0.25", "std": "0.177" }, "arruïnar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "arsenat de plom": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arsina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "artèria alveolar inferior": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "artèria labial inferior": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "asarum": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "asbestosi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aspergil·losi": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "aspre": { "pos": "a", "pol": "-0.411", "std": "0.157" }, "aspror": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "assassí a sou": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "assertivitat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "assetjador": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "assetjar": { "pos": "v", "pol": "-0.35", "std": "0.068" }, "astilar": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "atac aeri": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "atac de cor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aterrossar-se": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "atordiment": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "atorrollar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "atrocitat": { "pos": "n", "pol": "-0.286", "std": "0.112" }, "atzabeja": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "atàxia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "atípic": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "audaç": { "pos": "a", "pol": "-0.333", "std": "0.144" }, "autoflagel·lació": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "autòpsia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "avalot": { "pos": "n", "pol": "-0.375", "std": "0.102" }, "avís": { "pos": "n", "pol": "-0.406", "std": "0.063" }, "babutxa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bacanal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bacteriologia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bacteriòlisi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bafarada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "baixes pressions": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "baixesa": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "baixista": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "balata": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "baldat": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "bandit": { "pos": "n", "pol": "-0.292", "std": "0.0" }, "banshee": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "banteng": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "banyeta": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "banús": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "baralla": { "pos": "n", "pol": "-0.312", "std": "0.063" }, "barbaritat": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "barbeta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "barbàrie": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "barbó": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "barroer": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bastardia": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "batalla campal": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "batibull": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "batusser": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "bavera": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "betegar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "bo porqueria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "boig": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "bombar-se": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "borrascós": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "braquidactil": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "bravesa": { "pos": "n", "pol": "-0.292", "std": "0.26" }, "bravura": { "pos": "n", "pol": "-0.292", "std": "0.26" }, "braçalet": { "pos": "n", "pol": "-0.406", "std": "0.0" }, "braçalet de turmell": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "brega": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "breguista": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "bronzejar-se": { "pos": "v", "pol": "-0.281", "std": "0.0" }, "brot": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "brufolar": { "pos": "v", "pol": "-0.312", "std": "0.063" }, "brutalitat": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "brutícia": { "pos": "n", "pol": "-0.35", "std": "0.19" }, "brètol": { "pos": "n", "pol": "-0.458", "std": "0.125" }, "budisme": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bullanga": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "burgesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "burlar": { "pos": "v", "pol": "-0.3", "std": "0.105" }, "burro": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "bàrbar": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "bòfia": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "búnker": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "búnquer": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cabró": { "pos": "n", "pol": "-0.446", "std": "0.061" }, "cacera": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "cagat": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "calamarsada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "calamitat": { "pos": "n", "pol": "-0.429", "std": "0.112" }, "calavera": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "calcitonina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "calfred": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "calumnia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "calvari": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "calúmnia": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "caminar de puntetes": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "canalla": { "pos": "n", "pol": "-0.375", "std": "0.056" }, "candelilla": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "canellera": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "canós": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "capatàs": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "capell": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "capgirar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "capital de les Vanuatu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "caponat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carbonat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carbur de ferro": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carbó vegetal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cardiomegàlia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cariat": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "carnús": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "caràcter de mentider": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cassiterita": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cataclisme": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "catastròfic": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "catàstrofe": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "caçar": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "cefalea": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cefalàlgia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cementita": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cendrosenc": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "cendrós": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "censurar": { "pos": "v", "pol": "-0.344", "std": "0.072" }, "cercabregues": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "cervesa negra": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chen": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chupa-chups": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ciberpunk": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cicló": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "cifosi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cilici": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "citolisi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "clam": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "classificar": { "pos": "v", "pol": "-0.292", "std": "0.0" }, "clatellot": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "clinopodium": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "coadjuvar": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "columbiforme": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "col·laboracionista": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "col·laborar": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "complexe": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "complexitat": { "pos": "n", "pol": "-0.292", "std": "0.144" }, "complicat": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "condemnat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "coneixement superficial": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "confrontació": { "pos": "n", "pol": "-0.45", "std": "0.056" }, "congestió": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "consolva": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "constipar-se": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "consumir-se": { "pos": "v", "pol": "-0.344", "std": "0.188" }, "contaminant": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "contesa": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "contraatac": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "contratemps": { "pos": "n", "pol": "-0.3", "std": "0.19" }, "contusió": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "convicte": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cooperar": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "cop de gràcia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "copejar fort": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "cops de puny": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "corn anglès": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "covard": { "pos": "a", "pol": "-0.3", "std": "0.143" }, "crema agra": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "crema agrejada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cremació": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "creu de Lorena": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "creuat": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "criminal de guerra": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "crit": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "crucifixió": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "cuon": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cyon": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "càries": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "càstig": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "càstig corporal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "daltabaix": { "pos": "n", "pol": "-0.344", "std": "0.12" }, "dama-joana": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dansa de la mort": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "danyar": { "pos": "v", "pol": "-0.312", "std": "0.112" }, "darreria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "decaure": { "pos": "v", "pol": "-0.344", "std": "0.177" }, "deficient": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "degenerar-se": { "pos": "v", "pol": "-0.292", "std": "0.289" }, "degradar": { "pos": "v", "pol": "-0.375", "std": "0.112" }, "deixadesa": { "pos": "n", "pol": "-0.292", "std": "0.144" }, "deixar aclaparat": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "deixat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "delació": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "delicte": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "delinqüència juvenil": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dement": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "denigració": { "pos": "n", "pol": "-0.333", "std": "0.144" }, "depressiu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desaconsellar": { "pos": "v", "pol": "-0.375", "std": "0.177" }, "desaconsellat": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "desacostumat": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "desafiament": { "pos": "n", "pol": "-0.375", "std": "0.144" }, "desarranjar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "desastre": { "pos": "n", "pol": "-0.333", "std": "0.094" }, "desatès": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "desbaratar": { "pos": "v", "pol": "-0.281", "std": "0.0" }, "descarament": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "descendir": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "descoloració": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "descompondre": { "pos": "v", "pol": "-0.325", "std": "0.056" }, "desconsideració": { "pos": "n", "pol": "-0.375", "std": "0.265" }, "descontaminar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "descortesia": { "pos": "n", "pol": "-0.469", "std": "0.12" }, "descreure": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "descuit": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "desembrollar": { "pos": "v", "pol": "-0.375", "std": "0.217" }, "desembullar": { "pos": "v", "pol": "-0.375", "std": "0.217" }, "desencertat": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "desenredar": { "pos": "v", "pol": "-0.375", "std": "0.217" }, "desertar": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "desesperança": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desestabilitzar": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "desestabilitzar-se": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "deshonestedat": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "desigualtat": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "desinformació": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desllustrar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "desmanyotat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desmentir": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "desnivell": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desobligar": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "desolació": { "pos": "n", "pol": "-0.4", "std": "0.153" }, "desordenar": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "desordenat": { "pos": "a", "pol": "-0.45", "std": "0.125" }, "despectiu": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "despreciable": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "desprevingut": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "destrossar-se": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "destruir": { "pos": "v", "pol": "-0.375", "std": "0.068" }, "desventura": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "desvergonyiment": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "desviament": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "deterioració": { "pos": "n", "pol": "-0.375", "std": "0.065" }, "deteriorar-se": { "pos": "v", "pol": "-0.312", "std": "0.2" }, "detritus": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "devastació": { "pos": "n", "pol": "-0.446", "std": "0.142" }, "diabló": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "difamació": { "pos": "n", "pol": "-0.375", "std": "0.144" }, "dificultat": { "pos": "n", "pol": "-0.469", "std": "0.123" }, "diftèria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "digressió": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dilema": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "dipòsit de cadàvers": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disbauxat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disc dur": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disc dur extraïble": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disfressa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disfàgia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dispendi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disputa": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "dissensió": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "dissentiment": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dissidència": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disturbi": { "pos": "n", "pol": "-0.312", "std": "0.102" }, "dolença": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dolor de pit": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dolors del part": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "donar cops de puny": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "donar urpadas": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "dosi letal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "droga de disseny": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "drogoaddicte": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "drogodependent": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "duplicitat": { "pos": "n", "pol": "-0.292", "std": "0.125" }, "duresa": { "pos": "n", "pol": "-0.312", "std": "0.072" }, "dèficit": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "edema": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "el més dolent": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "el·lèbor marxívol": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "embaladir": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "embalsamar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "embenat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "embrocació": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "embruix": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "embrutiment": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "emfisema pulmonar": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "empestar": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "empetitir": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "empetrum": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "empipar": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "empudegar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "enagos": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "encalçar": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "encarbonar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "encarbonar-se": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "encarregar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "encefalitis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "encefalopatia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "endarreriment": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "enderrocs": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "endevinalla": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "endometriosi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enemic": { "pos": "n", "pol": "-0.333", "std": "0.144" }, "enfarfec": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enfebrat": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "engany": { "pos": "n", "pol": "-0.321", "std": "0.134" }, "engrevir": { "pos": "v", "pol": "-0.312", "std": "0.177" }, "ennegrir-se": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "enrenou": { "pos": "n", "pol": "-0.275", "std": "0.125" }, "enrevessat": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "ensorrar-se": { "pos": "v", "pol": "-0.275", "std": "0.056" }, "ensorrat": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "ensulsiar-se": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "entrebanc": { "pos": "n", "pol": "-0.292", "std": "0.0" }, "entumiment": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enxiquir": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "epidèmia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "epilèpsia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "epilèpsia jacksoniana": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "equivocar-se": { "pos": "v", "pol": "-0.375", "std": "0.072" }, "ergotisme": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "eriçar-se": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "error": { "pos": "n", "pol": "-0.277", "std": "0.072" }, "erwínia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "esborronador": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "escacat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "escaquejat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "escarnidor": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "escarniment": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "escassesa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "escassetat": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "esclatada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "escoliosi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "escrofulós": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "escàndol públic": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "esfondrar-se": { "pos": "v", "pol": "-0.292", "std": "0.072" }, "esfumar-se": { "pos": "v", "pol": "-0.417", "std": "0.072" }, "esguerrar": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "esnob": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "espatllar": { "pos": "v", "pol": "-0.321", "std": "0.183" }, "esperit maligne": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "esplenomegàlia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "espoliació": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "espàstic": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "esquer": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "estaquirot": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "estat natural": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "estat salvatge": { "pos": "n", "pol": "-0.417", "std": "0.0" }, "estavellar": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "estavellar-se": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "esteatopígia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "esternudar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "estira i arronsa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "estrabisme": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "esvair-se": { "pos": "v", "pol": "-0.375", "std": "0.067" }, "esvalotador": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "eunuc": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "exculpació": { "pos": "n", "pol": "-0.333", "std": "0.125" }, "excusar-se": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "exoneració": { "pos": "n", "pol": "-0.333", "std": "0.125" }, "expòsit": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "exterminador": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fada": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "falta": { "pos": "n", "pol": "-0.375", "std": "0.063" }, "fam": { "pos": "n", "pol": "-0.312", "std": "0.12" }, "fanguera": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "fanguissar": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "feble": { "pos": "a", "pol": "-0.333", "std": "0.112" }, "febre reumàtica": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "feinada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fenomen natural": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fer cas omís": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "fer espetegar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "fer la guitza": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "fer pudor": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "ferida accidental": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ferit": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "ferotge": { "pos": "a", "pol": "-0.333", "std": "0.191" }, "feroç": { "pos": "a", "pol": "-0.333", "std": "0.191" }, "filariosi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "finta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "flacciditat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "flor salvatge": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "flor silvestre": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fluix": { "pos": "a", "pol": "-0.286", "std": "0.112" }, "foll": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "follet": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "fonofòbia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "formaldehid": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "formatge ratllat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "forçar": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "fosca": { "pos": "n", "pol": "-0.312", "std": "0.063" }, "foscor": { "pos": "n", "pol": "-0.359", "std": "0.058" }, "fosgen": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fotofòbia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fotre": { "pos": "v", "pol": "-0.375", "std": "0.072" }, "fragor": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "frambèsia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fred": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "fredor": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "fretura": { "pos": "n", "pol": "-0.312", "std": "0.12" }, "frevolesa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fulminació": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "funest": { "pos": "a", "pol": "-0.333", "std": "0.191" }, "fura": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "furtar": { "pos": "v", "pol": "-0.458", "std": "0.072" }, "furóncol": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fàbula": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "galindó": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gallina": { "pos": "n", "pol": "0.25", "std": "0.177" }, "gallofejar": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "garrafa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gastat": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "gavatx": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gemec": { "pos": "n", "pol": "-0.437", "std": "0.072" }, "genus acherontia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus asarum": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus clinopodium": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus cuon": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus cyon": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus irvingia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus neurospora": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus solenopsis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus zizania": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "glaucoma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "glumel·la": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gosadia": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "grandiloqüència": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "granellut": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "gratuït": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "gravetat": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "gregarisme": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gris": { "pos": "a", "pol": "-0.325", "std": "0.153" }, "gris cendra": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "guerra freda": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "halitosi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hemorroide": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "herpes genital": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "herpes zòster": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hidrobàtids": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hidrofòbia": { "pos": "n", "pol": "-0.281", "std": "0.125" }, "hidropesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hipercolesterolèmia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hiperplàsia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hipertròfia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hipocondríac": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hipotensió arterial": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hipòcrita": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "histerisme": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "huracà": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "idèntic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "ignomínia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ignorar": { "pos": "v", "pol": "-0.375", "std": "0.188" }, "illetrat": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "il·legalitzar": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "immadur": { "pos": "a", "pol": "-0.333", "std": "0.191" }, "imminència": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "immolació": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "immortalitat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "imperceptiu": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "imperfecte": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "impertorbable": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "impostura": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "impotent": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "imprecisió": { "pos": "n", "pol": "-0.375", "std": "0.125" }, "imprecís": { "pos": "a", "pol": "-0.437", "std": "0.161" }, "imprevisible": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "improcedència": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "impromptu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "imprudent": { "pos": "a", "pol": "-0.312", "std": "0.151" }, "impulsiu": { "pos": "a", "pol": "-0.375", "std": "0.354" }, "impuresa": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "inabastable": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "inacceptabilitat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inacostumat": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inadequació": { "pos": "n", "pol": "-0.312", "std": "0.265" }, "inadoptable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "incapacitat": { "pos": "n", "pol": "-0.464", "std": "0.191" }, "incapaç": { "pos": "a", "pol": "-0.321", "std": "0.112" }, "incomoditat": { "pos": "n", "pol": "-0.281", "std": "0.102" }, "incompliment de contracte": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "incongruència": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inconnex": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inconsciència": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inconsistència": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "inconstant": { "pos": "a", "pol": "-0.458", "std": "0.217" }, "inconstància": { "pos": "n", "pol": "-0.437", "std": "0.177" }, "inconvenient": { "pos": "n", "pol": "-0.375", "std": "0.191" }, "inconvertible": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "incorruptibilitat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inculte": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "incursió": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "indecència": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "indefens": { "pos": "a", "pol": "-0.292", "std": "0.072" }, "indefinible": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "indelicadesa": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "indescriptible": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "indicible": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "indiferència": { "pos": "n", "pol": "-0.45", "std": "0.125" }, "indiscreció": { "pos": "n", "pol": "-0.458", "std": "0.125" }, "indistingible": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "indolència": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inefable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "ineficaç": { "pos": "a", "pol": "-0.284", "std": "0.123" }, "inenarrable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inepte": { "pos": "a", "pol": "-0.284", "std": "0.131" }, "inexorable": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "inexpert": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inexplorat": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inexpressable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inexprimible": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "infal·lible": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "infernal": { "pos": "a", "pol": "-0.375", "std": "0.125" }, "infertilitat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inflexibilitat": { "pos": "n", "pol": "-0.437", "std": "0.161" }, "inflexible": { "pos": "a", "pol": "-0.312", "std": "0.354" }, "informar-se": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "infortuni": { "pos": "n", "pol": "-0.458", "std": "0.072" }, "infàmia": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "ingenu": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "inhabitual": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inidentificat": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "innecessari": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "inoportunitat": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "insatisfacció": { "pos": "n", "pol": "-0.312", "std": "0.265" }, "insidiós": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "insignificància": { "pos": "n", "pol": "-0.312", "std": "0.354" }, "insocial": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "insolent": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "insolència": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "insospitat": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "instintiu": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "insuficiència": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "insuficiència cardíaca": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "insuficiència coronària": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "insult": { "pos": "n", "pol": "-0.417", "std": "0.144" }, "insuportable": { "pos": "a", "pol": "-0.333", "std": "0.125" }, "insígnia de grau": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "insígnia de rang": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "insòlit": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "intransigència": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "intricat": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inutilitat": { "pos": "n", "pol": "-0.292", "std": "0.26" }, "invasor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "invisible": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inútil": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "irresistible": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "irreverència": { "pos": "n", "pol": "-0.312", "std": "0.265" }, "irritable": { "pos": "a", "pol": "-0.333", "std": "0.125" }, "irvingia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "jaqueta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "jitter": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "joc brut": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "joies de la corona": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "judici (dret)": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kitsch": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "knockout": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "l'altra vida": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lactoflavina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lament": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "lamentar-se": { "pos": "v", "pol": "-0.417", "std": "0.065" }, "lassitud": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "lemma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lepra": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lesió": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "letal": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "letargia": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "letífer": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "liniment": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "linxament": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "llagostera": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "llei de Dalton": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "llei marcial": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "llibertí": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lloriguera": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lluitar": { "pos": "v", "pol": "-0.271", "std": "0.051" }, "llunàtic": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "línia de batalla": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mal": { "pos": "n", "pol": "-0.359", "std": "0.088" }, "mal de cap": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mala memòria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "malabsorció": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "malaltia": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "malaltia de la pell": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "malaltia genètica": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "malbaratament de diners": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "maldecap": { "pos": "n", "pol": "-0.333", "std": "0.125" }, "malevolència": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "malvendre": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "marejat": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "marica": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "martiri": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "massa inercial": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mastegot": { "pos": "n", "pol": "-0.333", "std": "0.0" }, "matiné": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "matricidi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "matusser": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mecanisme de defensa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "megalòman": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mentida": { "pos": "n", "pol": "-0.333", "std": "0.102" }, "mentó": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mesquí": { "pos": "a", "pol": "-0.469", "std": "0.188" }, "mestís": { "pos": "n", "pol": "-0.281", "std": "0.063" }, "metzina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mildiu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "minso": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "miocardiopatia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mirada desafiant": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mirada fulminant": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "missió impossible": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "misèria": { "pos": "n", "pol": "-0.292", "std": "0.125" }, "mitja veritat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mocós": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "modus vivendi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "monstruositat": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "monya": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "monzón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "moribund": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "mormoleig": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mort cerebral": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mort vivent": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mortal": { "pos": "a", "pol": "-0.3", "std": "0.068" }, "mortífer": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "mostela": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "mudable": { "pos": "a", "pol": "-0.375", "std": "0.265" }, "mufló": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "multa": { "pos": "n", "pol": "-0.281", "std": "0.125" }, "mà d'obra": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "món de la fantasia": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "nafrar": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "nata tallada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "necròpsia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "negat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "negligència": { "pos": "n", "pol": "-0.4", "std": "0.105" }, "negre carbó": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "negret": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nen emmarat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neurastènic": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neuritis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neurosi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neurospora": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neuràlgia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neuròtic": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "niu de rates": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "no identificat": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "no important": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "no letal": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "nocions": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nyicris": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "número atòmic 76": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "obac": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "objecció": { "pos": "n", "pol": "-0.275", "std": "0.112" }, "objectar": { "pos": "v", "pol": "-0.375", "std": "0.144" }, "obligació moral": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "oblit": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "obscuritat": { "pos": "n", "pol": "-0.422", "std": "0.08" }, "obscè": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "obsidiana": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "obstinació": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "oca grisa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ocultisme": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ofendre's": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "oli d'absenta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "oli de bacallà": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ombriu": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "ombrívol": { "pos": "a", "pol": "-0.344", "std": "0.157" }, "ominós": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "opressor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "orat": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "organitzador": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ortiga": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "osmi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "otosclerosi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pap": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "papil·la": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "paralític": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "paranoic": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "parkinson": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "parlar tallant": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "parmesà": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "parsimònia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "paràsit": { "pos": "n", "pol": "-0.396", "std": "0.068" }, "parèsia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pasteuritzar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "patir": { "pos": "v", "pol": "-0.339", "std": "0.067" }, "pecador": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "pecaminós": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "pedregada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pedregós": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "pellar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "penalización": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "penúria": { "pos": "n", "pol": "-0.344", "std": "0.072" }, "perbocar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "perdició": { "pos": "n", "pol": "-0.281", "std": "0.177" }, "perjudici": { "pos": "n", "pol": "-0.275", "std": "0.137" }, "perniciós": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "perpertu": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "període d'incubació": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pescar": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "pesta": { "pos": "n", "pol": "-0.297", "std": "0.067" }, "picada": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "piga postissa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pijama": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pira": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pira funeral": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "piranya": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "piruleta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pirulí": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pit": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pit de bou": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pit de vedella": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pleonasme": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pleurodínia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "plexe aòrtic": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "plor": { "pos": "n", "pol": "-0.281", "std": "0.063" }, "ploriqueig": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "pneumoconiosi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "policia": { "pos": "n", "pol": "-0.292", "std": "0.0" }, "policia secreta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "polimiositis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "poliúria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "polsera": { "pos": "n", "pol": "-0.281", "std": "0.063" }, "polvorització catòdica": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "porc": { "pos": "a", "pol": "0.25", "std": "0.0" }, "porfíria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "posada en pràctica": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "posar aspre": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "potinejar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "potiner": { "pos": "a", "pol": "0.25", "std": "0.0" }, "presumptuós": { "pos": "a", "pol": "-0.25", "std": "0.375" }, "pretensió": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "priapisme": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "primitivisme": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "problema": { "pos": "n", "pol": "-0.406", "std": "0.188" }, "procacitat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "professor adjunt": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "professor associat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "promiscu": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "pronúncia anòmala": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "proscriure": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "príncep de les tenebres": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "pròdrom": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "psicosi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "psicòpata": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "psicòtic": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "psoriasi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pudir": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "pujar a": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "punxada": { "pos": "n", "pol": "-0.275", "std": "0.068" }, "pusil·lànime": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "putrefacció": { "pos": "n", "pol": "-0.275", "std": "0.068" }, "pífia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "quarantena": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "queixar-se": { "pos": "v", "pol": "-0.4", "std": "0.056" }, "quequeig": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "queratitis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "raig-x": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ranciesa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ranquejar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "raquitis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "raquitisme": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "raspós": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "ratera": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rebentar-se": { "pos": "v", "pol": "-0.312", "std": "0.072" }, "recaure": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "reclam": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "reclamar": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "recriminació": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "recusant": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "redoblant": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "regany": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "regateig": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "regeneració": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "relació de malalts": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "remor": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "renegat": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "reny": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "renyina": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "reprovació": { "pos": "n", "pol": "-0.417", "std": "0.125" }, "reprovar": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "repulsa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "requisit": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "reracuina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rescatar": { "pos": "v", "pol": "-0.458", "std": "0.072" }, "reticència": { "pos": "n", "pol": "-0.375", "std": "0.125" }, "retirar del servei": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "retret": { "pos": "n", "pol": "-0.312", "std": "0.102" }, "retrocedir": { "pos": "v", "pol": "-0.3", "std": "0.0" }, "reuma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "reumatisme": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "reumatisme articular": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "reumàtic": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "revocació": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "revolt": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "riboflavina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ridiculitzar": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "rocós": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "rodòfits": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "romeguera": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rompre´s": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "rondinejar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "ruc": { "pos": "n", "pol": "-0.281", "std": "0.063" }, "rudesa": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "rufià": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "rugós": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "ruinós": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "runam": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ràfec": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ràtzia": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "sabatilla": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "saber greu": { "pos": "v", "pol": "-0.375", "std": "0.265" }, "sabotejar": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "sacrificar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "sacrifici": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "salvador": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "salvatgeria": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "salvatjada": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "sanglot": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "sangtraït": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sapròfag": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sarcoptes": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sarna": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "sempitern": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sempreviva": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sense importància": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sentència condemnatòria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sepulcre": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "serologia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sever": { "pos": "a", "pol": "-0.278", "std": "0.088" }, "severitat": { "pos": "n", "pol": "-0.375", "std": "0.163" }, "sicari": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "silicosi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "simulació": { "pos": "n", "pol": "-0.275", "std": "0.143" }, "simular": { "pos": "v", "pol": "-0.437", "std": "0.265" }, "sistema sensorial": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sobrenatural": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sobtar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "socors": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sofística": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "solenopsis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sollament": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sortilegi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "subdesenvolupat": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "subexposició": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "subgenus chen": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "subjugació": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "subjugar": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "subvertir": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "supervivent": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "suplici": { "pos": "n", "pol": "-0.375", "std": "0.056" }, "supèrbia": { "pos": "n", "pol": "-0.292", "std": "0.191" }, "síndromes": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sòmines": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tabard": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tacat": { "pos": "a", "pol": "-0.3", "std": "0.125" }, "tafanera": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "tanatori": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tarantisme": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tartamudeig": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "temerari": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "temeritat": { "pos": "n", "pol": "-0.292", "std": "0.0" }, "tempesta de pluja": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tempestuós": { "pos": "a", "pol": "-0.469", "std": "0.188" }, "tempestívol": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "tempestós": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "temporal": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "tenir basques": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "terra verge": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "terregall": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "terregam": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tifus exantemàtic": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tiroteig": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "toix": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "tomentós": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "tonto": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "topar": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "tortura": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "tossar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "tossuderia": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "tova volcanica": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "toxicòman": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "toxina antitoxina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tragèdia": { "pos": "n", "pol": "-0.312", "std": "0.063" }, "trapella": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "trasbalsar": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "trasto": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "trastorn nerviós": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "trastorn neurològic": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "traumatisme": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "trencable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "trencadís": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "trontollós": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "trossejar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "trèmul": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "tumor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tumultuós": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "turbulència": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tèrbol": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "túixec": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ultratge": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "ultratge ": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "uretritis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "va": { "pos": "a", "pol": "-0.284", "std": "0.131" }, "vacil·lació": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "ventejat": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "ventoler": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "ventós": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "verd botella": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "veritat a mitges": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "verola": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "versar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "verí": { "pos": "n", "pol": "-0.333", "std": "0.0" }, "vidre": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "violació de domicili": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "violar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "virulent": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "virulència": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "visó americà": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vitamina B2": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "volada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "volcànic": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "vomitar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "vulgarisme": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vulgaritat": { "pos": "n", "pol": "-0.475", "std": "0.068" }, "vulneració": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vulnerar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "víctima": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "xafardera": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "ximple": { "pos": "a", "pol": "-0.437", "std": "0.072" }, "ximplet": { "pos": "a", "pol": "-0.417", "std": "0.217" }, "xinel·la": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "xocar": { "pos": "v", "pol": "-0.298", "std": "0.047" }, "xurriaques": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "yakuza": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zizania": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zombi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zona pantanosa": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "àcar de la sarna": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "àcid butíric": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "àcid carbàmic": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "àcid hidrazoic": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ànec collverd": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ànec de bosc": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "àntrax": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "òxid nítric": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "abarrotat": { "pos": "a", "pol": "0.25", "std": "0.177" }, "abastador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abdominal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abismal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "abissal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ablamar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "abnegat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "abracadabra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "absorbefaent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "abstenció": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acaparador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "accedir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "accionador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "acidular": { "pos": "v", "pol": "0.25", "std": "0.0" }, "acondicionament": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acreditació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acrobàtic": { "pos": "a", "pol": "0.25", "std": "0.265" }, "acrídids": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acròmion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "actiu": { "pos": "a", "pol": "0.25", "std": "0.148" }, "activa": { "pos": "a", "pol": "0.25", "std": "0.0" }, "activador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "activitat social": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acudir-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "acudit visual": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ad hoc": { "pos": "a", "pol": "0.25", "std": "0.0" }, "adagi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adaptable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "adaptador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "additiu": { "pos": "a", "pol": "0.25", "std": "0.0" }, "adequar": { "pos": "v", "pol": "0.25", "std": "0.177" }, "adhesiu": { "pos": "a", "pol": "0.25", "std": "0.0" }, "adjacent": { "pos": "a", "pol": "0.25", "std": "0.088" }, "admissibilitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adolescent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adonar-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "adonar-se de": { "pos": "v", "pol": "0.25", "std": "0.0" }, "adopció": { "pos": "n", "pol": "0.25", "std": "0.191" }, "adorador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adrenalina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adscrit": { "pos": "a", "pol": "0.25", "std": "0.0" }, "adsorbat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adsorbible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "adúlter": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aerobi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "afartar-se": { "pos": "v", "pol": "0.25", "std": "0.177" }, "afeccionat": { "pos": "n", "pol": "0.25", "std": "0.072" }, "afermar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "afiliat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "afinació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "africada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "agent de l'FBI": { "pos": "n", "pol": "0.25", "std": "0.0" }, "agilitat": { "pos": "n", "pol": "0.25", "std": "0.088" }, "aguantallibres": { "pos": "n", "pol": "0.25", "std": "0.0" }, "agudesa visual": { "pos": "n", "pol": "0.25", "std": "0.0" }, "agulla de cap": { "pos": "n", "pol": "0.25", "std": "0.0" }, "agència de publicitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aigua de foc": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aixecat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ajudar": { "pos": "v", "pol": "0.25", "std": "0.144" }, "albada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "albirament": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alcalescent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alcoholitzat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alcohòlic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alimentar-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "alineat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alliberador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alterable": { "pos": "a", "pol": "0.25", "std": "0.088" }, "altern": { "pos": "a", "pol": "0.25", "std": "0.0" }, "altiu": { "pos": "a", "pol": "0.25", "std": "0.177" }, "altivitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "al·lucinat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "al·lucinogen": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ambiciós": { "pos": "a", "pol": "0.25", "std": "0.088" }, "amistositat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amniocentesi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amo de la casa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amonestacions": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amotinat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "anabaptisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anabolisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anabòlic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "analgèsic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "analitzador diferencial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "analitzat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "anamorfisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anatomista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anderson luis de souza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "animado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "animal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "animal domèstic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "animal en captivitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anticipació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anticipar-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "antiguitat (objecte)": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antimalarina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antiquari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antroposofia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antílop": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antípoda": { "pos": "a", "pol": "0.25", "std": "0.0" }, "antítesi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anual": { "pos": "a", "pol": "0.25", "std": "0.125" }, "anul·lat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "anvers": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anàclisi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anàlisi metodològica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anàlisi volumètrica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apadrinament": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apel·lable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aplegar-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "aplicar-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "apreciable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "apreciació crítica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aprenentatge": { "pos": "n", "pol": "0.25", "std": "0.177" }, "apàtrida": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apòcope": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aquarterar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "arcat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aridesa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aritmètica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arquitectura paisatgística": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arrapament": { "pos": "n", "pol": "0.25", "std": "0.0" }, "artèria comunicant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "artèria intestinal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aràcnid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ascendir": { "pos": "v", "pol": "0.25", "std": "0.285" }, "aspirant": { "pos": "a", "pol": "0.25", "std": "0.442" }, "assessor en la direcció d'empreses": { "pos": "n", "pol": "0.25", "std": "0.0" }, "assessorament": { "pos": "n", "pol": "0.25", "std": "0.0" }, "assistent social": { "pos": "n", "pol": "0.25", "std": "0.0" }, "assolidor": { "pos": "a", "pol": "0.25", "std": "0.0" }, "astronau": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ataràxia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "atebrina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "atiar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "atles lingüístic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "atlètic": { "pos": "a", "pol": "0.25", "std": "0.265" }, "atorgar la llicència": { "pos": "v", "pol": "0.25", "std": "0.0" }, "atrassat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "atuït": { "pos": "a", "pol": "0.25", "std": "0.0" }, "atès": { "pos": "a", "pol": "0.25", "std": "0.0" }, "au": { "pos": "n", "pol": "0.25", "std": "0.0" }, "autoadulació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "autobombo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "autocinema": { "pos": "n", "pol": "0.25", "std": "0.0" }, "autodeterminació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "autodidacte": { "pos": "n", "pol": "0.25", "std": "0.0" }, "autoengany": { "pos": "n", "pol": "0.25", "std": "0.0" }, "autotròfica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "avantatge fiscal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "avantbraç": { "pos": "n", "pol": "0.25", "std": "0.0" }, "avenir-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "avenç": { "pos": "n", "pol": "0.25", "std": "0.068" }, "avesar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "avinença": { "pos": "n", "pol": "0.25", "std": "0.088" }, "avituallador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "avortiu": { "pos": "a", "pol": "0.25", "std": "0.0" }, "avuncular": { "pos": "a", "pol": "0.25", "std": "0.0" }, "axiologia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aïnar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "bacanals": { "pos": "n", "pol": "0.25", "std": "0.0" }, "balneari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bamba": { "pos": "n", "pol": "0.25", "std": "0.0" }, "banyera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "barrera lingüística": { "pos": "n", "pol": "0.25", "std": "0.0" }, "barrinar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "bastó": { "pos": "n", "pol": "0.25", "std": "0.0" }, "beatificació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "beca": { "pos": "n", "pol": "0.25", "std": "0.0" }, "beix": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bella": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bentos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "benzinera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bescanvi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bestialitzar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "beutat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "biblioteconomia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bifurcat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bilateral": { "pos": "a", "pol": "0.25", "std": "0.354" }, "bilocació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bimensual": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bioassaig": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bioscopi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bitllet d'avió": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bizantinisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "blasfem": { "pos": "n", "pol": "0.25", "std": "0.0" }, "blasfemador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "blau": { "pos": "a", "pol": "0.25", "std": "0.072" }, "blau cel": { "pos": "n", "pol": "0.25", "std": "0.0" }, "blavenc": { "pos": "a", "pol": "0.25", "std": "0.072" }, "blavís": { "pos": "a", "pol": "0.25", "std": "0.072" }, "blavós": { "pos": "a", "pol": "0.25", "std": "0.072" }, "boda civil": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bodhisatwa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "borsa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bossa de colofònia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bot de regates": { "pos": "n", "pol": "0.25", "std": "0.0" }, "botzina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bramanisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "breu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "breviari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brindis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brioix": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bronzí": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bràmids": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bufa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bufet d'advocats": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bufetejar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "bufona": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bufònids": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bugonar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "burí": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bífid": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cadastre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cadira": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cadira de braços": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cafè amb llet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "caixa alta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "caixa de jubilacions": { "pos": "n", "pol": "0.25", "std": "0.0" }, "caixa de pensions": { "pos": "n", "pol": "0.25", "std": "0.0" }, "calculador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "calefacció": { "pos": "n", "pol": "0.25", "std": "0.0" }, "calentar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "calidoscòpic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "callista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "calmant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "calorífer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cal·lígraf": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cambra d'hospital": { "pos": "n", "pol": "0.25", "std": "0.0" }, "camforar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "camforat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "camió": { "pos": "n", "pol": "0.25", "std": "0.177" }, "camió de trabuc": { "pos": "n", "pol": "0.25", "std": "0.0" }, "camió de tres eixos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "camp d'estudi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "camp visual": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cancel·lat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "candent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "canonista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "canonització": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cant espiritual": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cant espiritual negre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cantata": { "pos": "n", "pol": "0.25", "std": "0.0" }, "canviable": { "pos": "a", "pol": "0.25", "std": "0.088" }, "canyella": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cançó espiritual negra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cançó nadalenca": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cap de sèrie": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cap nuclear": { "pos": "n", "pol": "0.25", "std": "0.0" }, "capacitància": { "pos": "n", "pol": "0.25", "std": "0.0" }, "capella ardent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "capgirada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "capital d'Espanya": { "pos": "n", "pol": "0.25", "std": "0.0" }, "capítols matrimonials": { "pos": "n", "pol": "0.25", "std": "0.0" }, "carallarg": { "pos": "a", "pol": "0.25", "std": "0.0" }, "carals": { "pos": "n", "pol": "0.25", "std": "0.0" }, "caricatura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "carnal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "carnaval": { "pos": "n", "pol": "0.25", "std": "0.0" }, "carnestoltes": { "pos": "n", "pol": "0.25", "std": "0.0" }, "carnós": { "pos": "a", "pol": "0.25", "std": "0.0" }, "carrabina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cartel (economia)": { "pos": "n", "pol": "0.25", "std": "0.0" }, "casa flotant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "casar-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "castany": { "pos": "a", "pol": "0.25", "std": "0.0" }, "castany vermellós": { "pos": "a", "pol": "0.25", "std": "0.0" }, "catamita": { "pos": "n", "pol": "0.25", "std": "0.0" }, "catedral": { "pos": "n", "pol": "0.25", "std": "0.0" }, "causatiu": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cavallet": { "pos": "n", "pol": "0.25", "std": "0.072" }, "cefalòpode": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cenotafi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "censurat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "centre comercial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "centre docent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "centrífug": { "pos": "a", "pol": "0.25", "std": "0.088" }, "ceremoniós": { "pos": "a", "pol": "0.25", "std": "0.088" }, "cerimonial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cerimoniositat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "certificat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cessión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "científic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cimal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cimalada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ciment armat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cinta d'àudio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "circumflex": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cisteller": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ciutat pròspera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "civilitzat": { "pos": "a", "pol": "0.25", "std": "0.088" }, "ciència-ficció": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ciència aplicada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ciència biomèdica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ciència mèdica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "classe alta": { "pos": "n", "pol": "0.25", "std": "0.354" }, "clásico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "clímax sexual": { "pos": "n", "pol": "0.25", "std": "0.0" }, "codi secret": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coetani": { "pos": "a", "pol": "0.25", "std": "0.0" }, "coexistir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "cohesió": { "pos": "n", "pol": "0.25", "std": "0.0" }, "collada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "color crema": { "pos": "a", "pol": "0.25", "std": "0.0" }, "col·locat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "comanda": { "pos": "n", "pol": "0.25", "std": "0.177" }, "comercialitzat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "comerciant de pornografia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comerç d'armes": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comitè ètic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "commovedor": { "pos": "a", "pol": "0.25", "std": "0.0" }, "compacte": { "pos": "a", "pol": "0.25", "std": "0.088" }, "company de l'ànima": { "pos": "n", "pol": "0.25", "std": "0.0" }, "companyonia": { "pos": "n", "pol": "0.25", "std": "0.191" }, "compareixença": { "pos": "n", "pol": "0.25", "std": "0.0" }, "compartimentat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "compenetració": { "pos": "n", "pol": "0.25", "std": "0.0" }, "competició": { "pos": "n", "pol": "0.25", "std": "0.265" }, "competició atlètica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "competir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "complement agent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "complement indirecte": { "pos": "n", "pol": "0.25", "std": "0.0" }, "complementari": { "pos": "a", "pol": "0.25", "std": "0.0" }, "complidor": { "pos": "a", "pol": "0.25", "std": "0.0" }, "composició literària": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comprar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "compte d'estalvis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "compte inactiu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comunitari": { "pos": "a", "pol": "0.25", "std": "0.125" }, "comunitat escolar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comunitat religiosa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comèdia de situació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "conat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "concebible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "concentrat": { "pos": "a", "pol": "0.25", "std": "0.088" }, "concurs atlètic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "concèntric": { "pos": "a", "pol": "0.25", "std": "0.0" }, "condensat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "condicional": { "pos": "a", "pol": "0.25", "std": "0.0" }, "condícia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coneguda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coneixement científic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coneixença": { "pos": "n", "pol": "0.25", "std": "0.0" }, "confabular-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "conferir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "confessat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "confidència": { "pos": "n", "pol": "0.25", "std": "0.0" }, "confirmació": { "pos": "n", "pol": "0.25", "std": "0.094" }, "confitar": { "pos": "v", "pol": "0.25", "std": "0.088" }, "confós": { "pos": "a", "pol": "0.25", "std": "0.177" }, "conseller": { "pos": "n", "pol": "0.25", "std": "0.177" }, "consellera": { "pos": "n", "pol": "0.25", "std": "0.177" }, "consens": { "pos": "n", "pol": "0.25", "std": "0.0" }, "conservatori": { "pos": "n", "pol": "0.25", "std": "0.177" }, "considerable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "consolador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "consolda major": { "pos": "n", "pol": "0.25", "std": "0.0" }, "consonant africada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "consultiu": { "pos": "a", "pol": "0.25", "std": "0.0" }, "consumidor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "conte popular": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contemplació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contendir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "contendre": { "pos": "v", "pol": "0.25", "std": "0.0" }, "continu": { "pos": "a", "pol": "0.25", "std": "0.285" }, "contorn": { "pos": "n", "pol": "0.25", "std": "0.177" }, "contracte aleatori": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contracte bilateral": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contracte condicional": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contracte d'adhesió": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contracte matrimonial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contracte prematrimonial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contraexemple": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contramesura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contramesures": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contrarestar": { "pos": "v", "pol": "0.25", "std": "0.265" }, "contrasubversió": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contreure matrimoni": { "pos": "v", "pol": "0.25", "std": "0.0" }, "contribuir a": { "pos": "v", "pol": "0.25", "std": "0.0" }, "conveni": { "pos": "n", "pol": "0.25", "std": "0.088" }, "convenir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "convers": { "pos": "n", "pol": "0.25", "std": "0.0" }, "conversador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "convertibilitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "convertiment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "convit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coordinant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "coper": { "pos": "n", "pol": "0.25", "std": "0.0" }, "copinya": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coqueteig": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cor (música)": { "pos": "n", "pol": "0.25", "std": "0.0" }, "corb": { "pos": "a", "pol": "0.25", "std": "0.0" }, "corbat": { "pos": "a", "pol": "0.25", "std": "0.088" }, "corporatiu": { "pos": "a", "pol": "0.25", "std": "0.26" }, "corporativisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "correccional": { "pos": "n", "pol": "0.25", "std": "0.0" }, "corriola": { "pos": "n", "pol": "0.25", "std": "0.0" }, "corroborar": { "pos": "v", "pol": "0.25", "std": "0.191" }, "corà": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cosmetòleg": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cosmonau": { "pos": "n", "pol": "0.25", "std": "0.0" }, "creença": { "pos": "n", "pol": "0.25", "std": "0.191" }, "creient practicant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "creixen bord": { "pos": "n", "pol": "0.25", "std": "0.0" }, "crescuda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "criptogràfic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "criptòfit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cristal·lí": { "pos": "n", "pol": "0.25", "std": "0.0" }, "crocodilians": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cronògraf": { "pos": "n", "pol": "0.25", "std": "0.0" }, "croquet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cuca": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cuca de llum": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cunqueria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cunyat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "curar-se": { "pos": "v", "pol": "0.25", "std": "0.265" }, "curat": { "pos": "a", "pol": "0.25", "std": "0.354" }, "curculiònids": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cursa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cursa de fons": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cursa de gossos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cursiva": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cursor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "custodi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "càmera polaroid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "càpsula espacial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cíclops": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cúspide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dadaisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dalt": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dansa de la pluja": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dansa del sol": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dansa interpretativa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "decadent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "decantació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "decisiu": { "pos": "a", "pol": "0.25", "std": "0.088" }, "deco": { "pos": "n", "pol": "0.25", "std": "0.0" }, "decoratiu": { "pos": "a", "pol": "0.25", "std": "0.0" }, "deductiu": { "pos": "a", "pol": "0.25", "std": "0.0" }, "deduir-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "defensiu": { "pos": "a", "pol": "0.25", "std": "0.0" }, "defensor": { "pos": "a", "pol": "0.25", "std": "0.0" }, "deferència": { "pos": "n", "pol": "0.25", "std": "0.072" }, "defugiment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "delimitat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "deliqui": { "pos": "n", "pol": "0.25", "std": "0.0" }, "deliqüescent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "delmes de Sant Pere": { "pos": "n", "pol": "0.25", "std": "0.0" }, "denominador comú": { "pos": "n", "pol": "0.25", "std": "0.0" }, "densimetria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "departament de serveis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "depilat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "derivacional": { "pos": "a", "pol": "0.25", "std": "0.0" }, "desbordat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "descarregar-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "descodificar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "descolonitzar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "descomprimir": { "pos": "v", "pol": "0.25", "std": "0.265" }, "descontentament": { "pos": "n", "pol": "0.25", "std": "0.0" }, "descordar": { "pos": "v", "pol": "0.25", "std": "0.354" }, "desembruixar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "desendollar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "desenganxat": { "pos": "a", "pol": "0.25", "std": "0.442" }, "desentortolligar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "desesper": { "pos": "n", "pol": "0.25", "std": "0.0" }, "desforestació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "desglossar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "desheretar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "deshidratat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "desinfectar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "deslluir-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "desmobilització": { "pos": "n", "pol": "0.25", "std": "0.0" }, "despeses": { "pos": "n", "pol": "0.25", "std": "0.0" }, "desplaçar-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "destinat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "destroçat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "destruït": { "pos": "a", "pol": "0.25", "std": "0.0" }, "desviar-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "desvincular": { "pos": "v", "pol": "0.25", "std": "0.0" }, "detallar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "detergent de rentadora": { "pos": "n", "pol": "0.25", "std": "0.0" }, "detergent per al rentaplats": { "pos": "n", "pol": "0.25", "std": "0.0" }, "determinat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "deure": { "pos": "v", "pol": "0.25", "std": "0.0" }, "deure noble": { "pos": "n", "pol": "0.25", "std": "0.0" }, "devesa": { "pos": "n", "pol": "0.25", "std": "0.177" }, "dia solar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diacrític": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diagnòstic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dialèctic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diapir": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diccionari electrònic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dictamen": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dietista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diftong": { "pos": "n", "pol": "0.25", "std": "0.0" }, "difusor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dinamitzar": { "pos": "v", "pol": "0.25", "std": "0.088" }, "diploma": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dispersor": { "pos": "a", "pol": "0.25", "std": "0.0" }, "disposar-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "disseccionar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "disseny assistit per ordinador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dissertació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "distint": { "pos": "a", "pol": "0.25", "std": "0.0" }, "distribuïdor": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dita": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diversió": { "pos": "n", "pol": "0.25", "std": "0.072" }, "divinitat hindú": { "pos": "n", "pol": "0.25", "std": "0.0" }, "divorci": { "pos": "n", "pol": "0.25", "std": "0.0" }, "doble negació": { "pos": "n", "pol": "0.25", "std": "0.088" }, "doctrina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "doctrina religiosa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "doctrina teològica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "documentació": { "pos": "n", "pol": "0.25", "std": "0.177" }, "domini absolut": { "pos": "n", "pol": "0.25", "std": "0.0" }, "donar empenta": { "pos": "v", "pol": "0.25", "std": "0.0" }, "donar estil": { "pos": "v", "pol": "0.25", "std": "0.0" }, "donar gust": { "pos": "v", "pol": "0.25", "std": "0.0" }, "doo-wop": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dotació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "doxologia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dracunculoïdeus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "drama musical": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dret": { "pos": "a", "pol": "0.25", "std": "0.0" }, "drets": { "pos": "n", "pol": "0.25", "std": "0.0" }, "drets civils": { "pos": "n", "pol": "0.25", "std": "0.0" }, "drets de propietat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dretà": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dreçat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "droga dura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "duc": { "pos": "n", "pol": "0.25", "std": "0.0" }, "durbec": { "pos": "n", "pol": "0.25", "std": "0.0" }, "déu del Mar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dòcil": { "pos": "a", "pol": "0.25", "std": "0.177" }, "eclecticisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eclesiàstic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eclèctic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ecosistema": { "pos": "n", "pol": "0.25", "std": "0.0" }, "educació": { "pos": "n", "pol": "0.25", "std": "0.123" }, "edulcorar": { "pos": "v", "pol": "0.25", "std": "0.088" }, "eferent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "eguinar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "eixamplador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eixordar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "elació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "electrodomèstic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "electroforesi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eligibilitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "elitisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "elucidar": { "pos": "v", "pol": "0.25", "std": "0.088" }, "emancipar": { "pos": "v", "pol": "0.25", "std": "0.177" }, "embatuament": { "pos": "n", "pol": "0.25", "std": "0.0" }, "embullar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "emir": { "pos": "n", "pol": "0.25", "std": "0.0" }, "emocional": { "pos": "a", "pol": "0.25", "std": "0.0" }, "emotiu": { "pos": "a", "pol": "0.25", "std": "0.072" }, "emotivitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "empantanar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "empantanegar-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "emparrat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "empatitzar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "empenyorament": { "pos": "n", "pol": "0.25", "std": "0.0" }, "empetitit": { "pos": "a", "pol": "0.25", "std": "0.0" }, "empresa de contabilitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "empresa de subhastes": { "pos": "n", "pol": "0.25", "std": "0.0" }, "empíric": { "pos": "a", "pol": "0.25", "std": "0.0" }, "encanyar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "encegador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "enciclopedista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enciclopèdia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enciser": { "pos": "n", "pol": "0.25", "std": "0.0" }, "encomanar": { "pos": "v", "pol": "0.25", "std": "0.191" }, "encoratjament": { "pos": "n", "pol": "0.25", "std": "0.0" }, "encorbat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "endogàmia": { "pos": "n", "pol": "0.25", "std": "0.177" }, "endossant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "endret": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enfaristolament": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enfortiment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enginyer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enginyera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "engualdrapat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "enlluernador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ennuvolat": { "pos": "a", "pol": "0.25", "std": "0.177" }, "enquadernar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "enraonament": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enredada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enrigidir-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "enriquir": { "pos": "v", "pol": "0.25", "std": "0.217" }, "enrollat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ensenya": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ensenyament": { "pos": "n", "pol": "0.25", "std": "0.125" }, "ensenyança": { "pos": "n", "pol": "0.25", "std": "0.177" }, "enteresa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "entitat física": { "pos": "n", "pol": "0.25", "std": "0.0" }, "entrenador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "entrenadora": { "pos": "n", "pol": "0.25", "std": "0.0" }, "entrevia estàndard": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enverdir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "enverdir-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "enviar per correu electrònic": { "pos": "v", "pol": "0.25", "std": "0.0" }, "enyor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enyorança": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eosinòfil": { "pos": "n", "pol": "0.25", "std": "0.0" }, "epigrama": { "pos": "n", "pol": "0.25", "std": "0.0" }, "epinefrina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "epistemologia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "equip de radioteràpia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "equipat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ergotropisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erinacèids": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erogació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "error de hardware": { "pos": "n", "pol": "0.25", "std": "0.0" }, "escampat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "escanvi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esclarir": { "pos": "v", "pol": "0.25", "std": "0.088" }, "escola de ball": { "pos": "n", "pol": "0.25", "std": "0.0" }, "escola de música": { "pos": "n", "pol": "0.25", "std": "0.0" }, "escola de pensament": { "pos": "n", "pol": "0.25", "std": "0.0" }, "escola pública": { "pos": "n", "pol": "0.25", "std": "0.0" }, "escopinya": { "pos": "n", "pol": "0.25", "std": "0.0" }, "escopinya de gallet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "escorpins": { "pos": "n", "pol": "0.25", "std": "0.0" }, "escot imperi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "escriptura fiduciària": { "pos": "n", "pol": "0.25", "std": "0.0" }, "escrivà": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esculpit": { "pos": "a", "pol": "0.25", "std": "0.088" }, "escuraflascons": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esdeveniment social": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esgraonar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "espadatxí": { "pos": "n", "pol": "0.25", "std": "0.0" }, "espavilar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "especialista": { "pos": "n", "pol": "0.25", "std": "0.125" }, "especialitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "especialitzar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "esperit afí": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esperit d'equip": { "pos": "n", "pol": "0.25", "std": "0.0" }, "espetec": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esponjós": { "pos": "a", "pol": "0.25", "std": "0.072" }, "esport de pista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esquella": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esquellot": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esquerdat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "esquerres": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esquifit": { "pos": "a", "pol": "0.25", "std": "0.0" }, "estabilitzat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "estamordit": { "pos": "a", "pol": "0.25", "std": "0.0" }, "estar-se'n": { "pos": "v", "pol": "0.25", "std": "0.0" }, "estar promès": { "pos": "v", "pol": "0.25", "std": "0.258" }, "estat de guerra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estel guia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estendard": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estepa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esterilitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estil lliure": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estilitzar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "estilitzat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "estimació crítica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estimador estadístic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estipendi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estomatòpode": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estrella supergegant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estrep (os)": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estructurar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "estudis literaris": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estuf": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estàndard": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eteri": { "pos": "a", "pol": "0.25", "std": "0.0" }, "etnocentrisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "etnologia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "evidenciar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "evitació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "excitable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "exclamatiu": { "pos": "a", "pol": "0.25", "std": "0.0" }, "exclusivitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "excomunicació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "exhalar baf": { "pos": "v", "pol": "0.25", "std": "0.0" }, "existencialisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "existir": { "pos": "v", "pol": "0.25", "std": "0.198" }, "exlamatori": { "pos": "a", "pol": "0.25", "std": "0.0" }, "experimentalisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "exposímetre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "expressionisme abstracte": { "pos": "n", "pol": "0.25", "std": "0.0" }, "expurgat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "exquisidesa": { "pos": "n", "pol": "0.25", "std": "0.125" }, "exquisitat": { "pos": "n", "pol": "0.25", "std": "0.125" }, "externalitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "extramatrimonial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "faceta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "factibilitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "factura del telèfon": { "pos": "n", "pol": "0.25", "std": "0.0" }, "facultatiu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "facultats": { "pos": "n", "pol": "0.25", "std": "0.0" }, "faetó": { "pos": "n", "pol": "0.25", "std": "0.0" }, "falsificar les eleccions": { "pos": "v", "pol": "0.25", "std": "0.0" }, "falçó": { "pos": "n", "pol": "0.25", "std": "0.0" }, "familiarització": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fanga": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fantasiós": { "pos": "a", "pol": "0.25", "std": "0.0" }, "farmacocinètica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fastiguejar-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "fasuositat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fatuïtat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fedelline": { "pos": "n", "pol": "0.25", "std": "0.0" }, "felicitat absoluta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "feligresos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fer autostop": { "pos": "v", "pol": "0.25", "std": "0.0" }, "fer de": { "pos": "v", "pol": "0.25", "std": "0.0" }, "fer descarrilar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "fer efectiu": { "pos": "v", "pol": "0.25", "std": "0.0" }, "fer percebre": { "pos": "v", "pol": "0.25", "std": "0.0" }, "fer prospeccions": { "pos": "v", "pol": "0.25", "std": "0.0" }, "fer recordar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "fer un tour": { "pos": "v", "pol": "0.25", "std": "0.0" }, "fer una gira": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ferment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "festa religiosa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "festivitat cristiana": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fetiller": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fetitxisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "feudalisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "figuració": { "pos": "n", "pol": "0.25", "std": "0.177" }, "finançar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "finestreta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "finitut": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fixesa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "flassada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "flexional": { "pos": "a", "pol": "0.25", "std": "0.0" }, "flipat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "flirteig": { "pos": "n", "pol": "0.25", "std": "0.0" }, "flonjo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fonologia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fons de retirs": { "pos": "n", "pol": "0.25", "std": "0.0" }, "forat negre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "forces de seguretat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "formigó armat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "força motriu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "forçós": { "pos": "a", "pol": "0.25", "std": "0.088" }, "fotoquímica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fotosfera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fotòmetre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "foxterrier": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fragant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "franquícia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fraseologia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fraternitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fraternització": { "pos": "n", "pol": "0.25", "std": "0.0" }, "freqüent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "frifrit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fronterís": { "pos": "a", "pol": "0.25", "std": "0.0" }, "funcionari públic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fundamental": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gafet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gafeta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gag": { "pos": "n", "pol": "0.25", "std": "0.0" }, "galeta de panses i nous": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ganivet automàtic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ganoïdeus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "garant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gasolinera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gegantí": { "pos": "a", "pol": "0.25", "std": "0.0" }, "generador de números aleatoris": { "pos": "n", "pol": "0.25", "std": "0.0" }, "generalitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "generar": { "pos": "v", "pol": "0.25", "std": "0.177" }, "generatiu": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gentil": { "pos": "a", "pol": "0.25", "std": "0.0" }, "genus bacillus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genus hyphantria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genus ipomoea": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genus nomia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genus pezophaps": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genus phthirius": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genus phthirus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genus rattus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "geometria no euclidiana": { "pos": "n", "pol": "0.25", "std": "0.0" }, "geopolítica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "germanisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gestió": { "pos": "n", "pol": "0.25", "std": "0.0" }, "geògraf": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gimcana": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gimnasta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gimnàstic": { "pos": "a", "pol": "0.25", "std": "0.265" }, "glamour": { "pos": "n", "pol": "0.25", "std": "0.0" }, "globulós": { "pos": "a", "pol": "0.25", "std": "0.0" }, "globus de l'ull": { "pos": "n", "pol": "0.25", "std": "0.0" }, "globós": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gnosi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "golejador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gorgolar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "gradual": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gramòfon": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gravat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gremi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "grimpar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "groguenc": { "pos": "a", "pol": "0.25", "std": "0.177" }, "gronxador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "grunyit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "grupal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "guant de golf": { "pos": "n", "pol": "0.25", "std": "0.0" }, "guany": { "pos": "n", "pol": "0.25", "std": "0.298" }, "guardia de seguretat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "guardó": { "pos": "n", "pol": "0.25", "std": "0.265" }, "guarició": { "pos": "n", "pol": "0.25", "std": "0.265" }, "guerxo": { "pos": "a", "pol": "0.25", "std": "0.265" }, "guiatge": { "pos": "n", "pol": "0.25", "std": "0.0" }, "guitarra elèctrica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gunats de cabritilla": { "pos": "n", "pol": "0.25", "std": "0.0" }, "harmonitzar": { "pos": "v", "pol": "0.25", "std": "0.191" }, "hebreu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hemostàtic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "herculi": { "pos": "a", "pol": "0.25", "std": "0.0" }, "herrerasaure": { "pos": "n", "pol": "0.25", "std": "0.0" }, "heterosexisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "heterotròfia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hialí": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hidrogenar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hidròfil": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hinduisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hiosciamina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hiperglucèmia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hipopnea": { "pos": "n", "pol": "0.25", "std": "0.0" }, "històric": { "pos": "a", "pol": "0.25", "std": "0.0" }, "home de neandertal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "homilia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "homo sapiens": { "pos": "n", "pol": "0.25", "std": "0.0" }, "homocèntric": { "pos": "a", "pol": "0.25", "std": "0.0" }, "homogeneïtat": { "pos": "n", "pol": "0.25", "std": "0.265" }, "homosexualitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "homòleg": { "pos": "a", "pol": "0.25", "std": "0.177" }, "honorari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "horitzó sensible": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hospital": { "pos": "n", "pol": "0.25", "std": "0.0" }, "humanitarisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "humidificar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hyphantria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hípica": { "pos": "n", "pol": "0.25", "std": "0.177" }, "iconoscopi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "idea original": { "pos": "n", "pol": "0.25", "std": "0.0" }, "idealista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "idealització": { "pos": "n", "pol": "0.25", "std": "0.0" }, "identificat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "idioma": { "pos": "n", "pol": "0.25", "std": "0.0" }, "il·lusionisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "imitat": { "pos": "a", "pol": "0.25", "std": "0.177" }, "imitatiu": { "pos": "a", "pol": "0.25", "std": "0.0" }, "immens": { "pos": "a", "pol": "0.25", "std": "0.0" }, "immesurable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "immovilista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "imparcial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "imperial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "impermeabilitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "impermeabilitzant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "imploració": { "pos": "n", "pol": "0.25", "std": "0.0" }, "impost": { "pos": "n", "pol": "0.25", "std": "0.0" }, "impressionisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "impressora d'injecció de bombolla": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inadaptador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inadaptat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inapel·labilitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "incest": { "pos": "n", "pol": "0.25", "std": "0.0" }, "incomplert": { "pos": "a", "pol": "0.25", "std": "0.0" }, "incompliment del deure": { "pos": "n", "pol": "0.25", "std": "0.0" }, "incomptable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inconformista": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inculcació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "indagació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "indret": { "pos": "n", "pol": "0.25", "std": "0.0" }, "induït": { "pos": "a", "pol": "0.25", "std": "0.0" }, "indústria de la moda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ineducable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ineluctable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inesgotable": { "pos": "a", "pol": "0.25", "std": "0.354" }, "inexpressiu": { "pos": "a", "pol": "0.25", "std": "0.0" }, "infantil": { "pos": "a", "pol": "0.25", "std": "0.0" }, "influenciat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "influent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "infraroig": { "pos": "a", "pol": "0.25", "std": "0.0" }, "infructuositat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inhibidor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "iniciador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inigualable": { "pos": "a", "pol": "0.25", "std": "0.088" }, "inmencionable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "innombrable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "innumerable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inquantificable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "insignificànça": { "pos": "n", "pol": "0.25", "std": "0.0" }, "instal·lacions recreatives": { "pos": "n", "pol": "0.25", "std": "0.0" }, "instal·lació esportiva": { "pos": "n", "pol": "0.25", "std": "0.0" }, "instrument de percussió": { "pos": "n", "pol": "0.25", "std": "0.0" }, "instrument òptic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "insumís": { "pos": "a", "pol": "0.25", "std": "0.0" }, "insurrecte": { "pos": "a", "pol": "0.25", "std": "0.0" }, "intacte": { "pos": "a", "pol": "0.25", "std": "0.177" }, "integració": { "pos": "n", "pol": "0.25", "std": "0.217" }, "intelectual": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inteligibilitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "intercalar": { "pos": "a", "pol": "0.25", "std": "0.0" }, "intercanvi de favors": { "pos": "n", "pol": "0.25", "std": "0.0" }, "intermediari": { "pos": "n", "pol": "0.25", "std": "0.177" }, "interrelacionar-se": { "pos": "v", "pol": "0.25", "std": "0.177" }, "interrogació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "intersecar-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "intocable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "introvertit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "intuir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "intuïcionisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inundar-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "inundat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "iodar": { "pos": "v", "pol": "0.25", "std": "0.088" }, "ionosfera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ipomoea": { "pos": "n", "pol": "0.25", "std": "0.0" }, "irrefutable": { "pos": "a", "pol": "0.25", "std": "0.265" }, "irremeiable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "irremissible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "islamisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jaç": { "pos": "n", "pol": "0.25", "std": "0.0" }, "joc de taula": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jornada": { "pos": "n", "pol": "0.25", "std": "0.354" }, "jornades": { "pos": "n", "pol": "0.25", "std": "0.0" }, "judaisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "judicial": { "pos": "a", "pol": "0.25", "std": "0.191" }, "jueu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "juntar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "justificador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "justificant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "juxtaposat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "karaoke": { "pos": "n", "pol": "0.25", "std": "0.0" }, "l'abominable home de les neus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lanceolat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lanuginós": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lapse": { "pos": "n", "pol": "0.25", "std": "0.0" }, "laïcisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lectura pública": { "pos": "n", "pol": "0.25", "std": "0.0" }, "legalització": { "pos": "n", "pol": "0.25", "std": "0.0" }, "legendari": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lent convexa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lesbiana": { "pos": "a", "pol": "0.25", "std": "0.0" }, "liberalisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "licantropia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "licitador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "licitud": { "pos": "n", "pol": "0.25", "std": "0.0" }, "licència": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lil·liputenc": { "pos": "a", "pol": "0.25", "std": "0.0" }, "limnologia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "limítrof": { "pos": "a", "pol": "0.25", "std": "0.0" }, "llampurnar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "llanut": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "llegible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "llei del tot o res": { "pos": "n", "pol": "0.25", "std": "0.0" }, "llengua natural": { "pos": "n", "pol": "0.25", "std": "0.0" }, "llengua sànscrita": { "pos": "n", "pol": "0.25", "std": "0.0" }, "llenguatge burocràtic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "llenguatge natural": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lleno": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lleonat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lletra cursiva": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lletra majúscula": { "pos": "n", "pol": "0.25", "std": "0.0" }, "llevapedres": { "pos": "n", "pol": "0.25", "std": "0.0" }, "llibre de coneixement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "llista negra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lliurador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lloc avantatjós": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lloc de primers auxilis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lloc de socors": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lloc estratègic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lloc imaginari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lloca": { "pos": "n", "pol": "0.25", "std": "0.0" }, "llostra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "llostre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "llum d'Aladí": { "pos": "n", "pol": "0.25", "std": "0.0" }, "localitzat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "longitud (geografia)": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lucidesa": { "pos": "n", "pol": "0.25", "std": "0.265" }, "làbil": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lèsbic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lícit": { "pos": "a", "pol": "0.25", "std": "0.0" }, "límpid": { "pos": "a", "pol": "0.25", "std": "0.0" }, "línia de sortida": { "pos": "n", "pol": "0.25", "std": "0.0" }, "machmetre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "macroscòpic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "macró": { "pos": "n", "pol": "0.25", "std": "0.0" }, "magarrufes": { "pos": "n", "pol": "0.25", "std": "0.0" }, "magia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "magnanimitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "magnètic": { "pos": "a", "pol": "0.25", "std": "0.26" }, "maitre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "major": { "pos": "a", "pol": "0.25", "std": "0.177" }, "major d'edat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "majoria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "majúscula": { "pos": "n", "pol": "0.25", "std": "0.0" }, "malencolia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mandarina": { "pos": "a", "pol": "0.25", "std": "0.0" }, "maneguí": { "pos": "n", "pol": "0.25", "std": "0.0" }, "manipulabilitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "manipulació": { "pos": "n", "pol": "0.25", "std": "0.088" }, "mansió": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mansuetud": { "pos": "n", "pol": "0.25", "std": "0.0" }, "maqueta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marca distintiva": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marqueting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marrà": { "pos": "a", "pol": "0.25", "std": "0.0" }, "marxa militar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "masclista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "masculinitat": { "pos": "n", "pol": "0.25", "std": "0.125" }, "masoquista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "masturbació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "matinada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "maximització": { "pos": "n", "pol": "0.25", "std": "0.177" }, "medicar": { "pos": "v", "pol": "0.25", "std": "0.177" }, "melangia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "memòria volàtil": { "pos": "n", "pol": "0.25", "std": "0.0" }, "menció honorífica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mental": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mercadeig": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mercantil": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mercat borsari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mereixement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "merenga": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mestratge": { "pos": "n", "pol": "0.25", "std": "0.354" }, "mesura": { "pos": "n", "pol": "0.25", "std": "0.26" }, "metacarp": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metafísica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metge": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metode dalcroze": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metodologia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metrònom": { "pos": "n", "pol": "0.25", "std": "0.0" }, "miasmàtic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "microfotòmetre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mig relleu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "militarització": { "pos": "n", "pol": "0.25", "std": "0.0" }, "millorat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mimetitzar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "mimètic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mina d'or": { "pos": "n", "pol": "0.25", "std": "0.354" }, "ministeri d'assumptes estrangers": { "pos": "n", "pol": "0.25", "std": "0.0" }, "miofibril·la": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mirallet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "missió religiosa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "misticisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mitologista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mitòleg": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mnemotècnia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mobilitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "model a escala": { "pos": "n", "pol": "0.25", "std": "0.0" }, "moderació": { "pos": "n", "pol": "0.25", "std": "0.163" }, "moderantisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "moderança": { "pos": "n", "pol": "0.25", "std": "0.088" }, "molsós": { "pos": "a", "pol": "0.25", "std": "0.0" }, "monoteisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "monsenyor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "monument commemoratiu": { "pos": "n", "pol": "0.25", "std": "0.177" }, "monument nacional": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mordacitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "morritort d'aigua": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mosca": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mosso-d'establa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mosso de quadra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mostreig": { "pos": "n", "pol": "0.25", "std": "0.177" }, "motet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "motivar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "motricitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "moviment ecumènic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "moviment gay": { "pos": "n", "pol": "0.25", "std": "0.0" }, "moviment juvenil": { "pos": "n", "pol": "0.25", "std": "0.0" }, "moviment llibertari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "moviment obrer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "moviment religiós": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mundà": { "pos": "n", "pol": "0.25", "std": "0.0" }, "munificent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "munífic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "museu científic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mutable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "màquina de diàlisi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "màquina de raigs X": { "pos": "n", "pol": "0.25", "std": "0.0" }, "màrqueting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mínim": { "pos": "n", "pol": "0.25", "std": "0.177" }, "míssil balístic intercontinental": { "pos": "n", "pol": "0.25", "std": "0.0" }, "míster": { "pos": "n", "pol": "0.25", "std": "0.0" }, "místic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "música religiosa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "naixent": { "pos": "a", "pol": "0.25", "std": "0.191" }, "nan": { "pos": "a", "pol": "0.25", "std": "0.0" }, "naturalització": { "pos": "n", "pol": "0.25", "std": "0.0" }, "naturista": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nau espacial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "navalla automàtica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "navegabilitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "neandertal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "negament": { "pos": "n", "pol": "0.25", "std": "0.0" }, "negociació comercial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "negroide": { "pos": "a", "pol": "0.25", "std": "0.0" }, "neoclassicisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "neurolèptic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nihilista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nit de sant joan": { "pos": "n", "pol": "0.25", "std": "0.0" }, "no catòlic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nodrir-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "nodós": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nomia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nominar": { "pos": "v", "pol": "0.25", "std": "0.102" }, "nostàlgia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nota musical": { "pos": "n", "pol": "0.25", "std": "0.0" }, "notació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "noves": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nucli amigdaloide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nudista": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nutricionista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nuós": { "pos": "a", "pol": "0.25", "std": "0.0" }, "obagós": { "pos": "a", "pol": "0.25", "std": "0.0" }, "obediència": { "pos": "n", "pol": "0.25", "std": "0.144" }, "objecte indirecte": { "pos": "n", "pol": "0.25", "std": "0.0" }, "objector de consciència": { "pos": "n", "pol": "0.25", "std": "0.0" }, "obligació noble": { "pos": "n", "pol": "0.25", "std": "0.0" }, "obra de consulta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "obrir el pany": { "pos": "v", "pol": "0.25", "std": "0.0" }, "obstaculitzar": { "pos": "v", "pol": "0.25", "std": "0.177" }, "obstructiu": { "pos": "a", "pol": "0.25", "std": "0.0" }, "obtenidor": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ocell": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ocell cantaire": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ocell pelàgic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oferta de matrimoni": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oferta publica d'adquisicio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oficiar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "oficinista": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ofrena": { "pos": "n", "pol": "0.25", "std": "0.0" }, "olorós": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ombrat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ombrejat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "omnisciència": { "pos": "n", "pol": "0.25", "std": "0.0" }, "opalí": { "pos": "a", "pol": "0.25", "std": "0.0" }, "oportunitat": { "pos": "n", "pol": "0.25", "std": "0.215" }, "opulència": { "pos": "n", "pol": "0.25", "std": "0.0" }, "opuscle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oració interrogativa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oratori": { "pos": "n", "pol": "0.25", "std": "0.0" }, "orbicular": { "pos": "a", "pol": "0.25", "std": "0.0" }, "organitzat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "orgasme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ornamentador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ornamental": { "pos": "a", "pol": "0.25", "std": "0.0" }, "oscil·latori": { "pos": "a", "pol": "0.25", "std": "0.0" }, "osteopatia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ostracoderms": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pa d'àngel": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pa eucarístic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pagoda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pal d'escombra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "palanca": { "pos": "n", "pol": "0.25", "std": "0.177" }, "paleoantropologia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pal·lidesa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "panet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "panxarrut": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pany de combinació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paratge": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paraula d'honor": { "pos": "n", "pol": "0.25", "std": "0.177" }, "parlada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paroleria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "parpella": { "pos": "n", "pol": "0.25", "std": "0.0" }, "participar en": { "pos": "v", "pol": "0.25", "std": "0.0" }, "participi passat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "partidària": { "pos": "n", "pol": "0.25", "std": "0.0" }, "parts iguals": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paròdia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pas de ball": { "pos": "n", "pol": "0.25", "std": "0.0" }, "passar l'estona": { "pos": "v", "pol": "0.25", "std": "0.0" }, "passar l´aspiradora": { "pos": "v", "pol": "0.25", "std": "0.0" }, "passarel”la": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pasturatge": { "pos": "n", "pol": "0.25", "std": "0.177" }, "patrioter": { "pos": "a", "pol": "0.25", "std": "0.0" }, "patrullar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "paulatí": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pavimentar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "país dels somnis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pebrot verd": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pedac ocular": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pedant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pedestal": { "pos": "n", "pol": "0.25", "std": "0.072" }, "pediatre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pedicur": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pedicura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pedra de toc": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pelegrinatge": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pel·lícula amateur": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pensament sintètic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "penyorar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "perceptiu": { "pos": "a", "pol": "0.25", "std": "0.0" }, "perciformes": { "pos": "n", "pol": "0.25", "std": "0.0" }, "perfecció": { "pos": "n", "pol": "0.25", "std": "0.25" }, "periheli": { "pos": "n", "pol": "0.25", "std": "0.0" }, "persona grata": { "pos": "n", "pol": "0.25", "std": "0.0" }, "persona religiosa": { "pos": "n", "pol": "0.25", "std": "0.088" }, "personalitzar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "perspicacitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "perspicàcia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "persuadir": { "pos": "v", "pol": "0.25", "std": "0.072" }, "persuasibilitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "persuasible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "període històric": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pes equivalent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pescahereus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pescapubilles": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pessebre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "petició de mà": { "pos": "n", "pol": "0.25", "std": "0.0" }, "petitet": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pezophaps": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phthirius": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phthirus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "picar de mans": { "pos": "v", "pol": "0.25", "std": "0.0" }, "pilota de ping-pong": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pilota de platja": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pilota de tennis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pilota medicinal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ping-pong": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pinsà": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pipa de la pau": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pirotècnia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pistola de joguina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "planaria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "planer": { "pos": "a", "pol": "0.25", "std": "0.0" }, "planor": { "pos": "n", "pol": "0.25", "std": "0.088" }, "plantofejar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "plataforma giratòria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "platea": { "pos": "n", "pol": "0.25", "std": "0.0" }, "plaça pública": { "pos": "n", "pol": "0.25", "std": "0.0" }, "plebeu": { "pos": "a", "pol": "0.25", "std": "0.0" }, "plexe cardíac": { "pos": "n", "pol": "0.25", "std": "0.0" }, "plàncton": { "pos": "n", "pol": "0.25", "std": "0.0" }, "poc": { "pos": "a", "pol": "0.25", "std": "0.0" }, "poder-se comparar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "poder de resolució": { "pos": "n", "pol": "0.25", "std": "0.0" }, "podòleg": { "pos": "n", "pol": "0.25", "std": "0.0" }, "poema simfònic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "polaroid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "polisíndeton": { "pos": "n", "pol": "0.25", "std": "0.0" }, "politja": { "pos": "n", "pol": "0.25", "std": "0.0" }, "poltrona": { "pos": "n", "pol": "0.25", "std": "0.0" }, "político": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pom": { "pos": "n", "pol": "0.25", "std": "0.0" }, "poma camosa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "poma camosina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "poma reineta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pont de vianants": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pontó": { "pos": "n", "pol": "0.25", "std": "0.0" }, "populisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "porcellar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "portent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "posar-se d'acord": { "pos": "v", "pol": "0.25", "std": "0.0" }, "posar en marxa": { "pos": "v", "pol": "0.25", "std": "0.0" }, "posició militar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "postmodernisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "postular": { "pos": "v", "pol": "0.25", "std": "0.0" }, "practicitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prec": { "pos": "n", "pol": "0.25", "std": "0.0" }, "precinte": { "pos": "n", "pol": "0.25", "std": "0.0" }, "precipitant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "precognició": { "pos": "n", "pol": "0.25", "std": "0.0" }, "precoç": { "pos": "a", "pol": "0.25", "std": "0.265" }, "predestinat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "predeterminat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "predicaciò": { "pos": "n", "pol": "0.25", "std": "0.0" }, "predicible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "predominar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "preguerra": { "pos": "a", "pol": "0.25", "std": "0.0" }, "premiar": { "pos": "v", "pol": "0.25", "std": "0.191" }, "prendre part en": { "pos": "v", "pol": "0.25", "std": "0.0" }, "pres polític": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prescindir de": { "pos": "v", "pol": "0.25", "std": "0.0" }, "presciència": { "pos": "n", "pol": "0.25", "std": "0.0" }, "present": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pressió osmòtica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prestar": { "pos": "v", "pol": "0.25", "std": "0.354" }, "prestatge": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prestidigitació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prevenible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "primari": { "pos": "a", "pol": "0.25", "std": "0.0" }, "primmirat": { "pos": "a", "pol": "0.25", "std": "0.288" }, "principiar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "principis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "probabilitat": { "pos": "n", "pol": "0.25", "std": "0.088" }, "probiòtic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "procreació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "procés geològic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prodigi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "producte de bellesa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "producte farmacèutic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "productivitat": { "pos": "n", "pol": "0.25", "std": "0.354" }, "professionalisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "profit": { "pos": "n", "pol": "0.25", "std": "0.274" }, "profund": { "pos": "a", "pol": "0.25", "std": "0.125" }, "programa d'instrucció": { "pos": "n", "pol": "0.25", "std": "0.0" }, "programa de lectura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "programa vocacional": { "pos": "n", "pol": "0.25", "std": "0.0" }, "progressisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "progressivitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "progrés": { "pos": "n", "pol": "0.25", "std": "0.072" }, "prolix": { "pos": "a", "pol": "0.25", "std": "0.0" }, "promulgat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pronació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pronunciat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "propi": { "pos": "a", "pol": "0.25", "std": "0.228" }, "proporcionable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "proposar-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "prorrateig": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prostitució": { "pos": "n", "pol": "0.25", "std": "0.0" }, "protanòpsia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "protector": { "pos": "a", "pol": "0.25", "std": "0.0" }, "protèrvia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "proveir de personal": { "pos": "v", "pol": "0.25", "std": "0.088" }, "proverbi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "proveïdor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "provisor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pruna": { "pos": "n", "pol": "0.25", "std": "0.177" }, "prènsil": { "pos": "a", "pol": "0.25", "std": "0.0" }, "préstec a baix interès": { "pos": "n", "pol": "0.25", "std": "0.0" }, "psicologia aplicada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "psicologia industrial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pulcritud": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pulverulent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "punt celeste": { "pos": "n", "pol": "0.25", "std": "0.0" }, "punt d'intersecció": { "pos": "n", "pol": "0.25", "std": "0.0" }, "punt destacat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "punt final": { "pos": "n", "pol": "0.25", "std": "0.0" }, "punt geogràfic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "punt prominent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "punta de l'agulla": { "pos": "n", "pol": "0.25", "std": "0.0" }, "punxent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "puzle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "púrpura": { "pos": "a", "pol": "0.25", "std": "0.0" }, "qualitat maternal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "qualitat paternal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "quark": { "pos": "n", "pol": "0.25", "std": "0.0" }, "querubí": { "pos": "n", "pol": "0.25", "std": "0.0" }, "quid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "quimèric": { "pos": "a", "pol": "0.25", "std": "0.0" }, "quinacrina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "radioactiu": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ramificat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ramut": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ramós": { "pos": "a", "pol": "0.25", "std": "0.0" }, "randa aplicada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ranura d'expansió": { "pos": "n", "pol": "0.25", "std": "0.0" }, "raonament": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rascle davanter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "raspall de dents": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rastafarianisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rata de biblioteca": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ratificat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rattus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "raucar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "reaccionari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "readmissió": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reafirmar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "reajustar-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "realism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "realpolitik": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rebaixa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "recautxutar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "recerca empírica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "recluit": { "pos": "a", "pol": "0.25", "std": "0.0" }, "reconciliació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reconfortant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "recordança": { "pos": "n", "pol": "0.25", "std": "0.177" }, "records": { "pos": "n", "pol": "0.25", "std": "0.0" }, "recursos minerals": { "pos": "n", "pol": "0.25", "std": "0.0" }, "recórrer món": { "pos": "v", "pol": "0.25", "std": "0.0" }, "reduplicació (lingüística)": { "pos": "n", "pol": "0.25", "std": "0.0" }, "refecció": { "pos": "n", "pol": "0.25", "std": "0.0" }, "referendar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "refinat": { "pos": "a", "pol": "0.25", "std": "0.157" }, "reformatori": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reformisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "refrany": { "pos": "n", "pol": "0.25", "std": "0.0" }, "refrescament": { "pos": "n", "pol": "0.25", "std": "0.0" }, "regularitat": { "pos": "n", "pol": "0.25", "std": "0.265" }, "regularitzar-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "rehabilitar": { "pos": "v", "pol": "0.25", "std": "0.177" }, "relacions sexuals": { "pos": "n", "pol": "0.25", "std": "0.0" }, "relatar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "reliquiari": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reliquier": { "pos": "n", "pol": "0.25", "std": "0.0" }, "relliscós": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rellisquent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rellotge de cucut": { "pos": "n", "pol": "0.25", "std": "0.0" }, "relluent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "remolcador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "remunerar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "renaixement espiritual": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rendista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "renillar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "reobrir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "repartició": { "pos": "n", "pol": "0.25", "std": "0.0" }, "repartidor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "repensar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "replantejar-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "reputació": { "pos": "n", "pol": "0.25", "std": "0.354" }, "requisit acadèmic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "residència religiosa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "resplendent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "respondre de": { "pos": "v", "pol": "0.25", "std": "0.0" }, "retocar": { "pos": "v", "pol": "0.25", "std": "0.177" }, "retrassat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "reverdir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "reversibilitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "revinguda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "revisat": { "pos": "a", "pol": "0.25", "std": "0.177" }, "revisionisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "riada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rinoplàstia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ritu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ritualisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ritus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "riuada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "roba de carrer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "roca volcànica vítria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "romeria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rumb": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rutilar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "rutina recursiva": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rècord mundial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ròssa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "saber": { "pos": "v", "pol": "0.25", "std": "0.233" }, "saber diví": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sacsejada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "safata del te": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sal": { "pos": "n", "pol": "0.25", "std": "0.306" }, "salsir-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "saló de te": { "pos": "n", "pol": "0.25", "std": "0.0" }, "samba": { "pos": "n", "pol": "0.25", "std": "0.177" }, "sancionat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sangonent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sangonós": { "pos": "a", "pol": "0.25", "std": "0.0" }, "santedat": { "pos": "n", "pol": "0.25", "std": "0.177" }, "santoral": { "pos": "n", "pol": "0.25", "std": "0.177" }, "sapastre": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sapiència": { "pos": "n", "pol": "0.25", "std": "0.0" }, "saures": { "pos": "n", "pol": "0.25", "std": "0.0" }, "secret": { "pos": "a", "pol": "0.25", "std": "0.157" }, "secta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sector d'ocupació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sector ocupacional": { "pos": "n", "pol": "0.25", "std": "0.0" }, "secundar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "secà": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sedar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "sega del fenc": { "pos": "n", "pol": "0.25", "std": "0.0" }, "semicircular": { "pos": "a", "pol": "0.25", "std": "0.0" }, "semitransparent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sentir-se": { "pos": "v", "pol": "0.25", "std": "0.088" }, "sentir empatia": { "pos": "v", "pol": "0.25", "std": "0.0" }, "sentit de l'humor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "seqüencial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ser aplicable": { "pos": "v", "pol": "0.25", "std": "0.0" }, "serpentí": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sertralina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "servei de paquets postals": { "pos": "n", "pol": "0.25", "std": "0.0" }, "servei públic": { "pos": "n", "pol": "0.25", "std": "0.354" }, "servo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "servomecanisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "setter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sex-appeal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sexista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "signant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "significat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "simultaneïtat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "simultani": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sinclinal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sincronia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sincronisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sincronitzar": { "pos": "v", "pol": "0.25", "std": "0.354" }, "sintonització": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sinuós": { "pos": "a", "pol": "0.25", "std": "0.088" }, "sistema de refrigeració": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sistema de ventilació": { "pos": "n", "pol": "0.25", "std": "0.177" }, "sistema de vigilància": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sistemàtic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "so consonant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "so consonàntic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sobre": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sobreexposició": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sobrehumà": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sobrevalorar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "sobtat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "soldar": { "pos": "v", "pol": "0.25", "std": "0.177" }, "solèid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "somiador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "somnolència": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sopa de lletres": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sorteig": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spa (salut)": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sprechgesang": { "pos": "n", "pol": "0.25", "std": "0.0" }, "starets": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suavitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "subcontinent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "subcultura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "subjectivitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sublimitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "subordinar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "subscripció": { "pos": "n", "pol": "0.25", "std": "0.177" }, "substancial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "substitut": { "pos": "a", "pol": "0.25", "std": "0.0" }, "subtil": { "pos": "a", "pol": "0.25", "std": "0.088" }, "subtracció": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suc digestiu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "successió ecològica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sufragi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sulfamida": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suma total": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sumatori": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sumptuós": { "pos": "a", "pol": "0.25", "std": "0.442" }, "superabundància": { "pos": "n", "pol": "0.25", "std": "0.0" }, "superdotada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "superdotat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suplementari": { "pos": "a", "pol": "0.25", "std": "0.088" }, "suplent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "suport logístic integrat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suport logístic internacional": { "pos": "n", "pol": "0.25", "std": "0.0" }, "supremacia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "susceptibilitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sustentar": { "pos": "v", "pol": "0.25", "std": "0.157" }, "sustentar-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "swing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sàfic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sànscrit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sèpids": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sèptic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "síncron": { "pos": "a", "pol": "0.25", "std": "0.0" }, "taller d'enquadernació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tangibilitat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "taoisme": { "pos": "n", "pol": "0.25", "std": "0.088" }, "tapar sots": { "pos": "v", "pol": "0.25", "std": "0.0" }, "tecnòleg": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tecnòloga": { "pos": "n", "pol": "0.25", "std": "0.0" }, "teixit de punt": { "pos": "n", "pol": "0.25", "std": "0.0" }, "telecomèdia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "telefonada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "temperar": { "pos": "v", "pol": "0.25", "std": "0.119" }, "temperatura ambient": { "pos": "n", "pol": "0.25", "std": "0.0" }, "temps d'oci": { "pos": "n", "pol": "0.25", "std": "0.177" }, "temps sincopat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "temàtic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tendenciositat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tenir a veure": { "pos": "v", "pol": "0.25", "std": "0.177" }, "tenir en compte": { "pos": "v", "pol": "0.25", "std": "0.0" }, "tenir en consideració": { "pos": "v", "pol": "0.25", "std": "0.0" }, "tenir la intenció": { "pos": "v", "pol": "0.25", "std": "0.0" }, "tenir un deute": { "pos": "v", "pol": "0.25", "std": "0.0" }, "tennis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tennis de taula": { "pos": "n", "pol": "0.25", "std": "0.0" }, "teoria de conjunts": { "pos": "n", "pol": "0.25", "std": "0.0" }, "teosofia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tertúlia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "teràpia": { "pos": "n", "pol": "0.25", "std": "0.088" }, "teràpia ocupacional": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tes": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tesina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "testimoniatge": { "pos": "n", "pol": "0.25", "std": "0.0" }, "timpà": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tinença d'accions": { "pos": "n", "pol": "0.25", "std": "0.0" }, "titànic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tocar i parar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tocoferol": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tonificar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "tonsurat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tortuga babaua": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tortuós": { "pos": "a", "pol": "0.25", "std": "0.0" }, "torçat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tractat": { "pos": "n", "pol": "0.25", "std": "0.177" }, "tractat de pau": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tractat equitatiu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tracte equitatiu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tragicomèdia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tramitació": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tranquilitzar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "transcendir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "transistor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "transitivitzar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "traucar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "treball en equip": { "pos": "n", "pol": "0.25", "std": "0.0" }, "treballador qualificat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "treballadora qualificada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trencaglaç": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tribunal de justícia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tribut": { "pos": "n", "pol": "0.25", "std": "0.088" }, "tricot": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trident": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trifori": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trilobit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trineu de vela": { "pos": "n", "pol": "0.25", "std": "0.0" }, "triomfar": { "pos": "v", "pol": "0.25", "std": "0.442" }, "trobada multitudinària": { "pos": "n", "pol": "0.25", "std": "0.0" }, "troc": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trossa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "truc de màgia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trucada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trucada telefònica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tràfic d'armes": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tràveling": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trípode": { "pos": "n", "pol": "0.25", "std": "0.0" }, "títol convertible": { "pos": "n", "pol": "0.25", "std": "0.0" }, "títol cupó zero": { "pos": "n", "pol": "0.25", "std": "0.0" }, "títol hipotecàri": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ulls": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ultraconservador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ultradretà": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ultravioleta": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unció": { "pos": "n", "pol": "0.25", "std": "0.0" }, "unificador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unitat de conductància": { "pos": "n", "pol": "0.25", "std": "0.0" }, "urc": { "pos": "n", "pol": "0.25", "std": "0.0" }, "urilitzable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "utilitzable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "utricle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "utòpic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "vaivé": { "pos": "n", "pol": "0.25", "std": "0.0" }, "valent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "valor no cotitzat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "valoració crítica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vegada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vellut": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ventrut": { "pos": "a", "pol": "0.25", "std": "0.0" }, "verbós": { "pos": "a", "pol": "0.25", "std": "0.0" }, "verdejar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "verificar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "vespertiliònids": { "pos": "n", "pol": "0.25", "std": "0.0" }, "veí": { "pos": "a", "pol": "0.25", "std": "0.0" }, "via ampla": { "pos": "n", "pol": "0.25", "std": "0.0" }, "via estreta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vida real": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vidre de Murano": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vidriós": { "pos": "a", "pol": "0.25", "std": "0.0" }, "vinculant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "virtut": { "pos": "n", "pol": "0.25", "std": "0.19" }, "visca": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vitalista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vitamina E": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vitamina e": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vivesa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vocalització": { "pos": "n", "pol": "0.25", "std": "0.0" }, "volea": { "pos": "n", "pol": "0.25", "std": "0.177" }, "voltants": { "pos": "n", "pol": "0.25", "std": "0.0" }, "voltar món": { "pos": "v", "pol": "0.25", "std": "0.0" }, "voltímetre electrònic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "voluminositat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "voyeurisme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vulnerable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "vàgil": { "pos": "a", "pol": "0.25", "std": "0.0" }, "vòltmetre electrònic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "xerografia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "xic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "xifra romana": { "pos": "n", "pol": "0.25", "std": "0.0" }, "xifrat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "xip de memòria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "xou": { "pos": "n", "pol": "0.25", "std": "0.0" }, "xovinista": { "pos": "a", "pol": "0.25", "std": "0.0" }, "zoeci": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zooide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "àcid gàstric": { "pos": "n", "pol": "0.25", "std": "0.0" }, "àrea temàtica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "àudio-visual": { "pos": "n", "pol": "0.25", "std": "0.0" }, "èlit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ésser consignat/-ada": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ídol": { "pos": "n", "pol": "0.25", "std": "0.072" }, "ínfules": { "pos": "n", "pol": "0.25", "std": "0.0" }, "òpera bufa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "òpera còmica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ócorrer-se": { "pos": "v", "pol": "0.25", "std": "0.0" }, "abaixar-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "aberrant": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "abjecció": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "abjecte": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "absentisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "absolutista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "abstrusitat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acadèmia de l'aire": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acalorar-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "accident fatal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acció reflexa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acer de tungstè": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acer de volfram": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acetat de plom": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acidesa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aciditat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acovardit": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "acre": { "pos": "a", "pol": "-0.25", "std": "0.12" }, "acrofòbia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acrofòbic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "acte de compareixença": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acte de terrorisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acte reflex": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acudit de mal gust": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acudit groller": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acusació": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "acusador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "addicció a la cafeïna": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "adoloriment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "advocat del diable": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aelurofòbia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aethusa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "afaneta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aferent": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "affenpinscher": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "afront": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "agenciar-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "agent de policia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aglomerat de fusta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "agorafòbia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "agorafòbic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "agàric": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aiguardent de poma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aigües residuals": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ajuda pròpia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ajusticiar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "albinisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alcoholisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alfabetització": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alfac": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alienació mental": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alleugerir-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "allitar-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "alta traïció": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alteritat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "amargat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "amnèsia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "amorf": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "amsinckia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anacantins": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anaplàsia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anar en iot": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "anastomus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ancorar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "andròmina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anell de prometatge": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anella del nas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anestèsic total": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "angioplàstia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anglòfob": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anhímid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "animalisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "animals": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anió": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anorèxia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antagònic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "anthonomus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antilope": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antipapa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antiparàsit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antipirètic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antisemitisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antitètic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "antull": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anur": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "anus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anòmal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "anúria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "apallissar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "apoptosi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "apostatar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "arbust": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arginina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arma de foc portàtil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arma nuclear": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arma portàtil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arna": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arriana": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arriar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "arriscar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "arrià": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arrogància": { "pos": "n", "pol": "-0.25", "std": "0.265" }, "art minimalista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arteria": { "pos": "n", "pol": "-0.25", "std": "0.354" }, "artritis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arxiu mestre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asafétida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asclar": { "pos": "v", "pol": "-0.25", "std": "0.063" }, "ase africà": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asexualitat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asfixiant": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "asma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "assafètida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "assalt a mà armada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "assaltador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "assaltament": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "assaltament a mà armada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "assaltant": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "assassina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "assassí en sèrie": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "assegurança d'incendis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "assegurança del cotxe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "assentar-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "assetjament": { "pos": "n", "pol": "-0.25", "std": "0.144" }, "assotar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "atac per terra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atacant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aterrament": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "atracament a mà armada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atrapar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "atreviment": { "pos": "n", "pol": "-0.25", "std": "0.105" }, "autisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "autoconservació": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "autodescobriment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "autopreservació": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "autotomia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "autòcrata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "avalotador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aventurisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "avitaminosi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "azidotimidina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "azot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "babel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "babirussa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "badomeria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bagatel·la": { "pos": "n", "pol": "-0.25", "std": "0.125" }, "bagel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "baixà": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bajanades": { "pos": "n", "pol": "-0.25", "std": "0.144" }, "bala de mosquet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bala dumdum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "banc de sorra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "banya de sègol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "banyador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barallar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "barbacana": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barbada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barnús": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barret d'ala ampla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barret de cowboy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barret fort": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barri baix": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barrina elèctrica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barrina mecànica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "basalt": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "base d'operacions": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bastoneig": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "batalla de Marató": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "batí": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bauhinia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bec de tisora": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "becaina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bel·licorós": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bel·licositat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bel·líger": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "benet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "beril·li": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bessó": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bifurcar-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bioremediació": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "biotita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bitllet de banc": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bitter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blanc de plom": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blau de Prússia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bloc de notes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boca de l'estómac": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boca del cor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "body": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bogeria": { "pos": "n", "pol": "-0.25", "std": "0.125" }, "boja": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bola de foc": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bomba centrífuga": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bombardeig": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "borm": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "borrasca": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "borrós": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boscam": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boscatge": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "botes camperes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "botulisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boxa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brachystegia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bradicàrdia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brandir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "braquiürs": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "braçal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "breny": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brisa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brogit": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "bromur de metil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brostejar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bruixeria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brusa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brusar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "brut": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bruxisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "buidesa": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "bulb raquidi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bumerang": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "burca": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "busca-raons": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bàlsam del Perú": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bàmbol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cabotada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cadena de rellotge": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cafetera exprés": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cafeïna": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caftà": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "calaix": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "calar-se foc": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "calbot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caldera volcanica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "calor de condensació": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "calorós": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "cambra de tortura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "camisa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "camisa de dormir": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "camisola": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "camp de batalla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "camp elèctric": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "camp gravitacional": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "camp magnètic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "camperes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "canyellera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "capcinada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "capció": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "capell d'ala ampla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "capell de teula": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "capell fort": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "capfluix": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "capital del Tíbet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cara de pòquer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carcerari": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cardamine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "careta antigàs": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carmelita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carmelità": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carraca": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carronyaire": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carronyer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cartilaginós": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "caràcter desagradable": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carència": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "casa de ranxo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "casanova": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "casc de batedor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "casc de punta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cassiope": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "casulla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cavall de batalla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caça bombarder": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caçadots": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caçatorpediner": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cement": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "censor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "censura": { "pos": "n", "pol": "-0.25", "std": "0.068" }, "cep": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "cera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cerapteryx": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cercosporella": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cerussa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chesterfield": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cinemàtica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cinturó salvavides": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cintó": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "circumstant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cirera cruixalenca": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cirrosi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cirrosi hepàtica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cistercenc": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "citació de compareixença": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "classe baixa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "classificar-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "clatellada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "claustrofòbia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "claustrofòbic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "cleptomania": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "clivellar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cobalt": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cocculus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cocodril del Nil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "coenzim": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "colonització": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "color acromàtic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "color de puça": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "col·lisionar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "combustió": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "common arrowhead": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "competidor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "competidora": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "complements de la casa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "complicitat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "compondre-se-les": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "computar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "concernir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "concertina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "condemnada a cadena perpètua": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "condemnat a cadena perpètua": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "confutació": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "conquerir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "conspiració": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "consternat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "contar enrere": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "contraalmirall": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "contrabalançar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "contrabandista de licors": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "contraintel·ligència": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "contrapesar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "contraproductiu": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "contrincant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "controlar-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "controvèrsia": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "conèixer-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cookie": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cop de colze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "copiat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "coptis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "coquinesa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "corbata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "corindó": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cornella": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "corona de llorer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "corroir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cotxe esport": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cotxe esportiu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "covardia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crassitud": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crescentia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cridadissa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crim de guerra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "criminal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "criminalitat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "criogènia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "criptograma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crisi": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "criticar": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "crom": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cromoestèsia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crucialitat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crucificar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "crítica textual": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cua tallada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cuixal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cuixera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "culi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cullerada sopera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "curt de gambals": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "custodiar": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "càrrega negativa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cèl·lula adiposa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cèl·lula de Golgi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "còlic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "davallar": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "debilitat": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "decés": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dedicatòria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deformat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "deforme": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "defunció": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "degradació": { "pos": "n", "pol": "-0.25", "std": "0.063" }, "degustar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "deixar estupefacte": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "delicte informàtic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "delinqüent": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "delinqüent habitual": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "demanaire": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "demandar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "demèrit": { "pos": "n", "pol": "-0.25", "std": "0.191" }, "dendrita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dendroctonus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dental": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "dentari": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "denunciador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "denunciant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "departament de química": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "depreciar": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "derrota": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "derruir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "derruir-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "desacatament": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desafecte": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desafiant": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desafiar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "desafinar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "desaplicat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desaprofitament de material": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desastrós": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desbocat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desbotonat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desbridat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "descabellat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desconeixement": { "pos": "n", "pol": "-0.25", "std": "0.265" }, "desconfiar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "desconnectat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "descontent": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "descurança": { "pos": "n", "pol": "-0.25", "std": "0.188" }, "desdenyós": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desemparat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desenredat": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "desequilibri mental": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desert": { "pos": "a", "pol": "-0.25", "std": "0.161" }, "desescalada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desfer-se": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desferra": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "desfeta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desfigurat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desgastar-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "desgavell": { "pos": "n", "pol": "-0.25", "std": "0.12" }, "desgraciat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desinfecció": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desistir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "desmillorament": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desmèrit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desnutrició": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desodorant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desordre gastrointestinal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desori": { "pos": "n", "pol": "-0.25", "std": "0.123" }, "despanyar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "despatxar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "despentinar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "despentinat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desprestigi": { "pos": "n", "pol": "-0.25", "std": "0.217" }, "desproporció": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "despullament": { "pos": "n", "pol": "-0.25", "std": "0.144" }, "desqualificar": { "pos": "v", "pol": "-0.25", "std": "0.265" }, "dessaborit": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "dessagnar-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "destraler": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "destrer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "destruit": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desventurat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desvitalitzar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "deteriorament": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "detonar": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "devantera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "devolució": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "diableria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "diarrea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dicranals": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "difracció": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "difús": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "dimoni necròfag": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dinamitar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "dingo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dipsnea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dipsosaurus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dir verbalment": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "disconforme": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "disenteria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disfemisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disparar un canó": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "displàsia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dispèpsia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dissipar-se": { "pos": "v", "pol": "-0.25", "std": "0.063" }, "distanciació": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "distopia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "distorsionat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "distès": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "distímia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "divagar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "diòxid de nitrogen": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dogal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "domador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dongle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dormir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "dret marítim": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dubitatiu": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "durar": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "ebonita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ecologista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "edentats": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "efectisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ejecció": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "el pitjor": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "electrocutar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "emancipador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "embargament de nòmina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "embargar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "emboirar-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "embolic": { "pos": "n", "pol": "-0.25", "std": "0.137" }, "embravit": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "embrollat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "embrunir-se": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "empatx": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "empelt cutani": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "empitjorament": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "empitjorar": { "pos": "v", "pol": "-0.25", "std": "0.129" }, "encanudir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "encastament": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "encefalitis letàrgica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "encrostar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "encruiximent": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "endergues": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "endiablat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "endimoniat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "endocarpi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "endreçar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "energia cinètica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "energia eòlica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "energia radiant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "enfrontar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "engalipada": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "engalipador": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "engrunar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "enjudiciar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "enormitat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "enrojolat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ensarronador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ensibornador": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "ensopir-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "entabanada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "entabanador": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "enterbolir-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "entoloma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "entossudit": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "entrecot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "entremetedor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "envalentit": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "envanit": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "enverinament": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "enyorar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "epidemiologia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "epilèpsia postraumàtica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "epilèptic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "epònim": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eradicació": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "erosiu": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "error informàtic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "erupció volcànica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esbirro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esbucar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "escabellat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "escabrositat": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "escafandre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escapisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escapulari": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escarabat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escaramussa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escaramussar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "escassedat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escatologia": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "escorxar-se": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "escridadissa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escuat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "escudar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "escura pisos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escòria": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "esferocarpals": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esfondrament": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "esgarrapada": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "esgarrifament": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esgarrinxada": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "esgrunar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "esmeril": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esmollar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "esmorteïment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esnobisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espanyar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "esparadrap": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espatllàs": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esperitat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "espiell": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espiera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espiritisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espiritista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espiritualisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espontaneïtat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espècie humana": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esquadró": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esqueix": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esqueixar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "esquirol de terra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esquirolatge": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esquivesa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estacionari": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "estafilococ": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estannita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estar amagat": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "estar atent": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "esternut": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estola": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estomacar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "estrenyecaps": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estrident": { "pos": "a", "pol": "-0.25", "std": "0.205" }, "estrucioniformes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estructura defensiva": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esventar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "eurilaimid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eutanàsia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eutrofització": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "excedir-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "excentricitat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "excesiu": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "exorcisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "experiència sensorial": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "extrema pobresa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "extremisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "facilidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "facoquer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "factor decisiu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "factor determinant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "falcó sagrat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "faldellí": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fals": { "pos": "a", "pol": "-0.25", "std": "0.197" }, "fanfarroneria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fantotxe": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "farrigo-farrago": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "farsaire": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "farsant": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fatu": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "febre paratifoide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "febre tifoide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "febril": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "febrífug": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "feina monòtona": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fer-se borrós": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "fer-se malbé": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "fer abaixar el preu": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "fer atenció": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "fer befa": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "fer cruixir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "fer escarni": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "fer una reverència": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ferida de guerra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ferro número cinc": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fetilleria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fible": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fibló": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "figura retòrica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fimosi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "final de copa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fintar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "fisicoterapeuta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "flagel·lar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "flora": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "florit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "foc antiaeri": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "foc preparat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "focs artificials": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "focs d'artifici": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "foia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "folgat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "folklore": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "folla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "follia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fora": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "formatge suís": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "força centrífuga": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "foscam": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "foscúria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fotut": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "foxtrot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "franciscà": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frenesia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frenesí": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frigorífic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fringíl·lid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fruir de": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "frívol": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "fuetejar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "fulla trifoliada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "funeral": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "furtador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fusta d'auró": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fusta de sicòmor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fímic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fúcsia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "galeta per gossos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "galifardeu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "galteres": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gambuix": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gammaglobulina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gandul": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "gangrena": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "gangsterisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "garantia de bon fi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "garantia de compliment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "garreperia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "garrotar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "garrotejar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "gasiveria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gastritis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gastritis crònica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gat del desert": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gat maltès": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gat siamès": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gatamoixeria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gaudir de": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "gavina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gavinot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gavià": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gel·laba": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gemegar": { "pos": "v", "pol": "-0.25", "std": "0.068" }, "gemir": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "genollera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus aethusa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus amsinckia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus anastomus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus anchusa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus anthonomus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus antilope": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus bauhinia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus bos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus brachystegia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus cardamine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus cassiope": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus cerapteryx": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus cercosporella": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus cocculus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus coptis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus crescentia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus dendroctonus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus dipsosaurus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus empetrum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus entoloma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus latrodectus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus lepiota": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus limenitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus monarda": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus ozonium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus physostigma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus phytophthora": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus pythium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus reticulitermes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus rosellinia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus scleroderma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus serrasalmus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus streptopelia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus syringa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus tussilago": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus veratrum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gilbert": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gipó": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gitar-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "gladiador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "glera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "glàndula submaxil·lar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "golem": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gonorrea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gorgera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gorra de dutxa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gorra de mariner": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gorrer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gorrista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "govern titella": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "grampilló": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "granuloma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gratis": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "greix poliinsaturat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "greu": { "pos": "a", "pol": "-0.25", "std": "0.213" }, "grisejar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "grisenc": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "grisós": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "guant de boxa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guardabraç": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guardafrens": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guillada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guilladura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guinder": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gàlban": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gàngster": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gènere humà": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "haiku": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "harpía": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hebefrènia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hecatombe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hematúria": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "hemiplegia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hemoptisi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "heretgia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hereu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hidrocefàlia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hidrofòbic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hijab": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hiperó": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hipoclorit de sodi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hipocàpnia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hipopotassèmia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "historiador de l'art": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "història de misteri": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "home del temps": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "home llop": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "homicidi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hores": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "idiòcia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ignífug": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "illegible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "il·legal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "il·legibilitat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "imatges predissenyades": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "imbecil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "immigrant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "immigrat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "immund": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "immundícia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "impenetrabilitat": { "pos": "n", "pol": "-0.25", "std": "0.265" }, "imperceptible": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "impracticabilitat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "impracticable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "impredictible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "impresentable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "impressió sensorial": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "imprevist": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "improductivitat": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "improperis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "imprudència": { "pos": "n", "pol": "-0.25", "std": "0.112" }, "inaccessibilitat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inadmissibilitat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inaguantable": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "incaut": { "pos": "a", "pol": "-0.25", "std": "0.26" }, "incendi forestal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "incendi intencionat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "incoherència": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "incolor": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "incompetent": { "pos": "a", "pol": "-0.25", "std": "0.144" }, "incompliment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "incumbir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "indecent": { "pos": "a", "pol": "-0.25", "std": "0.265" }, "indecís": { "pos": "a", "pol": "-0.25", "std": "0.072" }, "indefensable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "indefinició": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indesxifrable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "indigestió": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indiscret": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inelegibilitat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inerme": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inestabilitat": { "pos": "n", "pol": "-0.25", "std": "0.21" }, "infactible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "infamador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "infanticidi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "infeliç": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "infiltrat": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "inflamació": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "inflamar-se": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "inhalador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inhumació": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inhumà": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "injuriar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "innocu": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inoculació": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "inositol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inquietant": { "pos": "a", "pol": "-0.25", "std": "0.125" }, "inquisició": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insalubritat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insecticida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insensibilitat": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "insipidesa": { "pos": "n", "pol": "-0.25", "std": "0.125" }, "insofrible": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "insonoritzar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "inspector general": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "instrument de tortura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insuficiència renal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insuls": { "pos": "a", "pol": "-0.25", "std": "0.072" }, "insurreción": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insània": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insígnia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insígnies": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insípid": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "interdicció": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "interí": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "intimidar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "intoxicació": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "intractable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "intranquil·litzar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "intrepidesa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "intromissió": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "invalidesa": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "inverosimilitud": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inviable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "invisibilitat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inèdit": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "irracionalitat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "irrealitzable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "irreversibilitat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "irrupció": { "pos": "n", "pol": "-0.25", "std": "0.068" }, "ivori": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "janot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jarret": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jeans": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kart": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kaó": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kiang": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kleenex": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lamentar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "lapidació": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lapidar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "larvicida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "laterita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "latitud lunar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "latrodectus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "laurèola": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "legionella": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lenitiu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lent d'electrons": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lent de gran angular": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "leptospira": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lesa majestat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "letalitat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "leucèmia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "libre": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "licàntrop": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "limenitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "limfoma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lisi": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "listeriosi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "llaca": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lladre de pisos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lladregot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "llaga": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "llama": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "llardós": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "lledó": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "llei islàmica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "llençar la tovallola": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "llet pasteuritzada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "llicenciós": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "lligon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "llim": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lliurea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lliça": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lluita lliure": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "llum de neó": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "llumí": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "llàstima": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "macar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "macassar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maculació": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "magistratura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mala administració": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mala fama": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mala sort": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malalt": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malalt crònic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malalt incurable": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malapropisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malbaratament d'energia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maldient": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maldiença": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "males maneres": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malesa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malfaent": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malfiar-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "malformat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "malguany": { "pos": "n", "pol": "-0.25", "std": "0.125" }, "malintencionat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "malversar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "malware": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malària": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "manca": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "manca d'educació": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "manca de forma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mandrós": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "manefla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "manganès": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mangui": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mantellina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mantó": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maníac": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "maquinar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "marcir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "marró vermellenc": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "marsala": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mascara": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "masclet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "masmorra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "massacre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "material bèl·lic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "materialisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "matoll": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "matollar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mediocre": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "medul·la oblonga": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "melanisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "melanosi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "memòria no volàtil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "meningitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "merla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "metalepsi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "metanol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "metge de capçalera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "metilfenidat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "metxa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "metzinós": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "metà": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "metàstasi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "micronutrient": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "microona": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "migranya": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "militància": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "milà negre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mineral de plom": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mineria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "minúcia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "miscel·lània": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "misto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mitjà de comunicació escrit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mixomatosi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mocador de cap": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mocador de coll": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mocador de paper": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mod": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mofar-se": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "monarquia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mongolisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "monoaural": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "monoplegia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "monòxid de carboni": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "morbositat": { "pos": "n", "pol": "-0.25", "std": "0.144" }, "mossegar-se": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "motada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "motí": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "moviment reflex": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mucositat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mucus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mullena": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "munt d'escòria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "muntanyós": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "murmuri": { "pos": "n", "pol": "-0.25", "std": "0.068" }, "musclera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mustiar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "mustiar-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "mustigar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "màgia negra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "màmiga raglan": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "màmpara": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "màrtir": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nacrat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nanisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "narcolèpsia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "narcotraficant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "narcotràfic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "naufragi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "necrofília": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "necrosi": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "necròtic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "negació": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "negrós": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nerita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "neurastènia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "neutral": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nevera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nigromància": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nirvana": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nitrobenzè": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nivi": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no-metall": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "no metàlic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "noble vitalici": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "noguer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nosologia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "noticiari cinematogràfic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "novaparla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "novel·la curta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nul": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "número atòmic 22": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "número atòmic 24": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "número atòmic 25": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "número atòmic 27": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "número atòmic 34": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "número atòmic 4": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "número atòmic 73": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "objector": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "obliqüitat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oboè d'amor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "obscurantista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "obsequiositat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "obstruir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "obtús": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "obès": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ocell de presa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ocell rapaç": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ocell rapinyaire": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "octòpode": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oda": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ofensiva": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oficial de la llei": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oli": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "onagre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oncogen": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "opac": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "operació d'intel·ligència": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oportunidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oposar-se": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "oprobi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oratge": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order phallales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ordir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ordre d'animals": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ordre de detenció": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ordre del dia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oreig": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "orella interna": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "orsar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ortopnea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "osmosi inversa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ostentós": { "pos": "a", "pol": "-0.25", "std": "0.26" }, "ovella negra": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "oxímoron": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ozonium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pa negre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pacificador": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "paixà": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "palatòsquisi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paleopatologia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paludisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pal·liació": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pal·liatiu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pancreatitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pansir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "pantalons de muntar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pantalons texans": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "panxada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paper carbó": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paper de cartes": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "paracetamol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paral·lel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paranoia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paravent": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "parc zoològic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "parotiditis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "parpallejar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "parrac": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "parricidi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "partit polític": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "partícula beta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "partícula elemental": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paràlisi cerebral": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "parèsic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pasma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "passamà": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "passatger": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pasteurel·losi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pasteurització": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pastisset farcit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "patellida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "patologia vegetal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pega": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pelacanyes": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "pell de gallina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pel·lagra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "penalització": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pensió de mala mort": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "penumbra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "peple": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "percaç": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "perdre força": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "peridotita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "periodontitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "perlí": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "permanganat de potassa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "perpetració": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "perplexitat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "persitent": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "persona de color": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pertorbació mental": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pervers": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pesta septicèmica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pestanya": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pesticida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "peu forcat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "peça d'escacs": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "peça de vestir": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "phallales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "physostigma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "phytophthora": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "picardies": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "picor": { "pos": "n", "pol": "-0.25", "std": "0.265" }, "pidolaire": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pillastre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pillet": { "pos": "n", "pol": "-0.25", "std": "0.102" }, "pilota de golf": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pintor de pa sucat amb oli": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pintora de pa sucat amb oli": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pinça de corbata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pirata informàtic": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "piridina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pirotècnica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pitjora": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pitjoria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "plantador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "planxada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "planímetre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "plasenteria": { "pos": "n", "pol": "-0.25", "std": "0.125" }, "ploracossos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ploramorts": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ploranera": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "ploriquejar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "plutòcrata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "poca-pena": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "poca-vergonya": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "polemitzar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "poli": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "policia montada de Canadà": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "polsar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "polèmica": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "pompó": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "porqueria": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "port de muntanya": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "portar mala sort": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "posar atenció": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "posar barricades": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "posseït": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "possés": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "postilló": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "postulació": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "poti-poti": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "potollar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "pre-eclàmpsia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pre-requisit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pregunta difícil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "preocupant": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "presbícia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "presumpte": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pretenciós": { "pos": "a", "pol": "-0.25", "std": "0.354" }, "previsió": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "primogènit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "problema difícil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "problemes de visió": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "problemàtic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "procurar-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "producte perible": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "proferir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "professar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "progressió geomètrica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prolixitat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prostatitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "protector del coll": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "protestació": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prova de foc": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prova decisiva": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pruna de Damasc": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pseudofloema": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "psicologia clínica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "psicoterapeuta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "psiquiatria": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "psitacosi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "psocòpters": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pteridosperma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pteridospermòpsid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pugilisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pujol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "punt mort": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "putrescina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "putrescència": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pòlissa flotant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pòlissa oberta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "quarsita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "quedar-se en blanc": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "queratocon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "querella": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "quimono": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "quinina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "quixotisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ramipril": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "raons": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "rapinyaire": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "raptar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ras": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "rauc": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "raça humana": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reaparèixer": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "rebeldia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rebentada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "recelar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "reconeixement d'empremtes dactilars": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reconsideració": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reconvenció": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "recursos humans": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "recursos laborals": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "recés": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "redeterminació": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reelecció": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "referir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "referència anatòmica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reflex": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "reflex instintiu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "regent": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "regicidi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reglamentar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "relat d'aventures": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "remugar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "rendir-se": { "pos": "v", "pol": "-0.25", "std": "0.177" }, "renglera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "renoc": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "renocat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "reologia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reposapeus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "repàs": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "requisit previ": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "requisitòria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "res adjudicata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "residu tòxic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ressentit": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ressonar com metall": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ressonància nuclear": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ressorgir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ressucitar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "restrenyiment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "retall": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reticulitermes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "revolta": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "rigatoni": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rigidesa": { "pos": "n", "pol": "-0.25", "std": "0.144" }, "rinoceront negre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rival": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "roba de feina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "roba interior": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "robador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rogallós": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ronc": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "rondador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rondaire": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rosellinia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rotenona": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rovellar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "rubials": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rubèola": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rudimentari": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "rufianeria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ràfega": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "règim titella": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rèquiem": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "salacot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "salicilat de fenil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "salicilat de metil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "salol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "saltamarges": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sanció pragmàtica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "saprobi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sapròfit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "saquejador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sarcoma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sarong malai": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "saturnisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scleroderma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "seca": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "secobarbital": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "segona llei de la termodinàmica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "segrestar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "seleni": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "semblança mútua": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sement": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "semença": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sensació de pressió": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sentir enyorança de": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "sentit de l'orientació": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sentit del deure": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "senzillesa": { "pos": "n", "pol": "-0.25", "std": "0.191" }, "sepeli": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "septicèmia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sepulcral": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sepultura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "serracaps": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "serrasalmus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "servei militar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "setge": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shorts": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "siamès": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sicofant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "similor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "simposi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sincretitzar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "sirena de boira": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sirte": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sistema auditiu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sistema de pesos i mesures": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sistema de propulsió": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sobrenaturalitat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "soc": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "socarrar-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "soga": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "solcar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "solidificació": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "soltura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sordidesa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sorn": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sospitós": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sospitós d'assesinat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sotana": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sotragar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "status asmaticus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stout": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "streptopelia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "streptopelia turtur": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "subordinat": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "subproletariat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "succionar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "suor freda": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "superar en estratègia": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "suposat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "surrealisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sutge": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "syringa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sègol banyut": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sèpsia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sèu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sí": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "síndrome": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "síndrome de down": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "taca d'oli": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "taca de fang": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "taca de llot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "taca de naixement": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "taca de naixença": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "taca de rovell": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tacada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tacar-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "talidomida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "taquineria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tarpan": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tarquim": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "taràntula": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tatuar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "taujà": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "teatralitat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "temperatura baixa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tenebrositat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tensar": { "pos": "v", "pol": "-0.25", "std": "0.144" }, "teratologia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "terra erma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "teròpodes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "testarut": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "texans": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thriller": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tie-break": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tinyeta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tinyós": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "titani": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "toca": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tombac": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tortuositat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tos ferina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tossir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tovalló": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "toxèmia gravídica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tractant en cavalls": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tractar-se": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "traficant d'armas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trampa per a rates": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trastorn mental": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trastornar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "traïció": { "pos": "n", "pol": "-0.25", "std": "0.102" }, "treball feixuc": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tricloroetilè": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tricomonosi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "triscadecafòbia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "triumvir": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trobat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "trop": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trànsit religiós": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tsunami": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tuberculós": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "tularèmia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tumescent": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "tumor benigne": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "turmentador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tussilago": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tàntal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tàrtar emètic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "túmid": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "udolament": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ulleres": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ulleres protectores": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ullerós": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "uniformitat": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "unilateralisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "untuositat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "usurpar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "vacil·lant": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "vacuna": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "vacunació": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "vaga": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vaixell de guerra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vandalisme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "variabilitat": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "varicel·la": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vell arrosinat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vell xaruc": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "venjador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vent": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ventada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ventalla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ventar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ventejar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ventijol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ventolina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ventrellada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "veratrum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "verinós": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "vernís": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "versicle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vestidura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vestigial": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "vestit de bany": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vestit de feina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vestit de vol d'una sola peça": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vestit espacial": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vestits de platja": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vesània": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "veto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "via de servei": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "via morta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "via secundària": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vicealmirall": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vidu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vilipendiar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "viltat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "viuda": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "viudo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vividor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vori": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vulcanita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vulgar": { "pos": "a", "pol": "-0.25", "std": "0.123" }, "vídua": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xacó": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xancle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xapatge": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xara": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xaria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xec": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xenofòbia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xeviot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xiu-xiueig": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xoc anafilàctic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xoriçada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xulo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "zidovudina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ziti": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zona humida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zoo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zoofòbia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zoològic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zoonosi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "àcid bròmic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "àcid cròmic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "àcid fumàric": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "àcid hipoclorós": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "àcid maleic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "àcid nitrós": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "àcid permangànic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ésser mític": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "òbit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "òpal negre": { "pos": "n", "pol": "-0.25", "std": "0.0" } } ================================================ FILE: lib/natural/sentiment/Dutch/negations_du.json ================================================ { "words": ["niet", "nooit", "niemand", "niets", "nee", "neen"] } ================================================ FILE: lib/natural/sentiment/Dutch/pattern-sentiment-nl.json ================================================ { "Amsterdams": { "form": "Amsterdams", "cornetto_id": "r_a-16677", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van Amsterdam", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "Angelsaksisch": { "form": "Angelsaksisch", "cornetto_id": "r_a-8929", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "Engels", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "Arabisch": { "form": "Arabisch", "cornetto_id": "r_a-16693", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van Arabië", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "Ardens": { "form": "Ardens", "cornetto_id": "r_a-17252", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van de Ardennen", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "Arnhems": { "form": "Arnhems", "cornetto_id": "r_a-16698", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van Arnhem", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "Assens": { "form": "Assens", "cornetto_id": "r_a-16700", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van Assen", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "Boedapests": { "form": "Boedapests", "cornetto_id": "r_a-16745", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van Boedapest", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "Bourgondisch": { "form": "Bourgondisch", "cornetto_id": "r_a-17258", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "uitbundig", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "Brussels": { "form": "Brussels", "cornetto_id": "r_a-17261", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van Brussel", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "Byzantijns": { "form": "Byzantijns", "cornetto_id": "r_a-9514", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "uit Byzantium", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "Eindhovens": { "form": "Eindhovens", "cornetto_id": "r_a-16807", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van Eindhoven", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "Emmens": { "form": "Emmens", "cornetto_id": "r_a-16810", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van Emmen", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "Enschedees": { "form": "Enschedees", "cornetto_id": "r_a-16811", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van Enschede", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "Flevolands": { "form": "Flevolands", "cornetto_id": "r_a-16825", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van Flevoland", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "Gronings": { "form": "Gronings", "cornetto_id": "r_a-16844", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van Groningen", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "Hollands": { "form": "Hollands", "cornetto_id": "r_a-17274", "cornetto_synset_id": "n_a-500463", "wordnet_id": "", "pos": "JJ", "sense": "van Holland", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "IJslands": { "form": "IJslands", "cornetto_id": "r_a-16869", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van IJsland", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "Jakartaans": { "form": "Jakartaans", "cornetto_id": "r_a-16881", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van Jakarta", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "Lelystads": { "form": "Lelystads", "cornetto_id": "r_a-16945", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van Lelystad", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "Londens": { "form": "Londens", "cornetto_id": "r_a-16963", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van Londen", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "Macaus": { "form": "Macaus", "cornetto_id": "r_a-16972", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van Macau", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "Moskous": { "form": "Moskous", "cornetto_id": "r_a-17018", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van Moskou", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "Nederlandstalig": { "form": "Nederlandstalig", "cornetto_id": "r_a-13099", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "Nederlands als moeder- of voertaal", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "Neurenbergs": { "form": "Neurenbergs", "cornetto_id": "r_a-17036", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van Neurenberg", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "Oost-Europees": { "form": "Oost-Europees", "cornetto_id": "r_a-17063", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van Oost-Europa", "polarity": "-0.2", "subjectivity": "0.5", "intensity": "1.4", "confidence": "0.7" }, "Romaans": { "form": "Romaans", "cornetto_id": "r_a-14618", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "aan het Latijn verwant", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "Romeins": { "form": "Romeins", "cornetto_id": "r_a-17285", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van Rome", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "Sanmarinees": { "form": "Sanmarinees", "cornetto_id": "r_a-17121", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van San Marino", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "Siciliaans": { "form": "Siciliaans", "cornetto_id": "r_a-17138", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van Sicilië", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "Transsylvanisch": { "form": "Transsylvanisch", "cornetto_id": "r_a-17186", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van Transsylvanië", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "Trojaans": { "form": "Trojaans", "cornetto_id": "r_a-15517", "cornetto_synset_id": "n_a-501018", "wordnet_id": "a-03126638", "pos": "JJ", "sense": "van Troje", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "Utrechts": { "form": "Utrechts", "cornetto_id": "r_a-17204", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van Utrecht", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "Victoriaans": { "form": "Victoriaans", "cornetto_id": "r_a-16293", "cornetto_synset_id": "n_a-532975", "wordnet_id": "a-03027793", "pos": "JJ", "sense": "mbt. 19de-eeuwse Engeland", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "aanbevelenswaardig": { "form": "aanbevelenswaardig", "cornetto_id": "r_a-8843", "cornetto_synset_id": "n_a-524889", "wordnet_id": "a-00067038", "pos": "JJ", "sense": "aanbeveling verdienend", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "aanbiddelijk": { "form": "aanbiddelijk", "cornetto_id": "r_a-8959", "cornetto_synset_id": "n_a-521695", "wordnet_id": "a-00166753", "pos": "JJ", "sense": "erg bekoorlijk", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "aandachtig": { "form": "aandachtig", "cornetto_id": "r_a-8844", "cornetto_synset_id": "n_a-501199", "wordnet_id": "a-00164308", "pos": "JJ", "sense": "oplettend", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "aandoenlijk": { "form": "aandoenlijk", "cornetto_id": "r_a-8651", "cornetto_synset_id": "n_a-512118", "wordnet_id": "a-00166753", "pos": "JJ", "sense": "vertederend", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "aangebrand": { "form": "aangebrand", "cornetto_id": "r_a-8961", "cornetto_synset_id": "c_59", "wordnet_id": "", "pos": "JJ", "sense": "aan de pan vastgebrand", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "aangelegd": { "form": "aangelegd", "cornetto_id": "r_a-9028", "cornetto_synset_id": "d_a-9174", "wordnet_id": "a-01119192", "pos": "JJ", "sense": "aanleg hebbend", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "aangenaam": { "form": "aangenaam", "cornetto_id": "r_a-8654", "cornetto_synset_id": "c_644", "wordnet_id": "a-01586342", "pos": "JJ", "sense": "prettig", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "aangeschoten": { "form": "aangeschoten", "cornetto_id": "r_a-8655", "cornetto_synset_id": "n_a-501224", "wordnet_id": "a-00798103", "pos": "JJ", "sense": "een beetje dronken", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "aangeslagen": { "form": "aangeslagen", "cornetto_id": "r_a-8656", "cornetto_synset_id": "d_v-1231", "wordnet_id": "", "pos": "JJ", "sense": "uit evenwicht gebracht", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "aangrijpend": { "form": "aangrijpend", "cornetto_id": "r_a-8660", "cornetto_synset_id": "n_a-501243", "wordnet_id": "a-01344171", "pos": "JJ", "sense": "erg ontroerend", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.4", "confidence": "1.0" }, "aanhoudend": { "form": "aanhoudend", "cornetto_id": "r_a-8664", "cornetto_synset_id": "n_a-533706", "wordnet_id": "", "pos": "JJ", "sense": "voortdurend", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.2", "confidence": "0.7" }, "aanlokkelijk": { "form": "aanlokkelijk", "cornetto_id": "r_a-8853", "cornetto_synset_id": "n_a-501309", "wordnet_id": "a-00166146", "pos": "JJ", "sense": "aantrekkelijk", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "aanmatigend": { "form": "aanmatigend", "cornetto_id": "r_a-8668", "cornetto_synset_id": "n_a-502571", "wordnet_id": "a-00205696", "pos": "JJ", "sense": "arrogant", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "aanmerkelijk": { "form": "aanmerkelijk", "cornetto_id": "r_a-8669", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "aanzienlijk", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.1", "confidence": "0.7" }, "aannemelijk": { "form": "aannemelijk", "cornetto_id": "r_a-8670", "cornetto_synset_id": "d_a-9295", "wordnet_id": "a-00644839", "pos": "JJ", "sense": "plausibel", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "aanraden": { "form": "aanraden", "cornetto_id": "r_v-184", "cornetto_synset_id": "d_v-145", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "0.2", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "aanrader": { "form": "aanrader", "cornetto_id": "r_n-2294", "cornetto_synset_id": "d_n-37964", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "0.6", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.9" }, "aanschouwelijk": { "form": "aanschouwelijk", "cornetto_id": "r_a-8672", "cornetto_synset_id": "n_a-501282", "wordnet_id": "a-00428404", "pos": "JJ", "sense": "zo dat je het voor je ziet", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "aansprakelijk": { "form": "aansprakelijk", "cornetto_id": "r_a-8854", "cornetto_synset_id": "n_a-532262", "wordnet_id": "a-00324878", "pos": "JJ", "sense": "verantwoordelijk", "polarity": "-0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "aanstekelijk": { "form": "aanstekelijk", "cornetto_id": "r_a-8675", "cornetto_synset_id": "n_a-501301", "wordnet_id": "a-01303042", "pos": "JJ", "sense": "navolging opwekkend", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.3", "confidence": "1.0" }, "aanstellerig": { "form": "aanstellerig", "cornetto_id": "r_a-16566", "cornetto_synset_id": "n_a-501302", "wordnet_id": "a-00073048", "pos": "JJ", "sense": "geneigd tot aanstellen", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "aantoonbaar": { "form": "aantoonbaar", "cornetto_id": "r_a-8857", "cornetto_synset_id": "n_a-501335", "wordnet_id": "a-00093556", "pos": "JJ", "sense": "aan te tonen", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.6", "confidence": "0.7" }, "aantrekkelijk": { "form": "aantrekkelijk", "cornetto_id": "r_a-8677", "cornetto_synset_id": "n_a-501309", "wordnet_id": "a-00166146", "pos": "JJ", "sense": "attractief", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "aanvaardbaar": { "form": "aanvaardbaar", "cornetto_id": "r_a-8858", "cornetto_synset_id": "n_a-501312", "wordnet_id": "a-01761871", "pos": "JJ", "sense": "acceptabel", "polarity": "0.1", "subjectivity": "0.8", "intensity": "0.9", "confidence": "0.7" }, "aanvallig": { "form": "aanvallig", "cornetto_id": "r_a-8967", "cornetto_synset_id": "n_a-505496", "wordnet_id": "a-00166146", "pos": "JJ", "sense": "bekoorlijk", "polarity": "0.3", "subjectivity": "0.7", "intensity": "0.8", "confidence": "0.7" }, "aanvankelijk": { "form": "aanvankelijk", "cornetto_id": "r_a-8678", "cornetto_synset_id": "n_a-501322", "wordnet_id": "a-01009865", "pos": "JJ", "sense": "bij aanvang", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "aanvechtbaar": { "form": "aanvechtbaar", "cornetto_id": "r_a-8679", "cornetto_synset_id": "n_a-531602", "wordnet_id": "a-00590390", "pos": "JJ", "sense": "betwistbaar", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "aanverwant": { "form": "aanverwant", "cornetto_id": "r_a-8680", "cornetto_synset_id": "n_a-501232", "wordnet_id": "", "pos": "JJ", "sense": "soortgelijk", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "aanwezig": { "form": "aanwezig", "cornetto_id": "r_a-8683", "cornetto_synset_id": "n_a-533683", "wordnet_id": "a-00184543", "pos": "JJ", "sense": "voorhanden", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "aanwijsbaar": { "form": "aanwijsbaar", "cornetto_id": "r_a-8860", "cornetto_synset_id": "n_a-501335", "wordnet_id": "a-00093556", "pos": "JJ", "sense": "aantoonbaar", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "aanzienlijk": { "form": "aanzienlijk", "cornetto_id": "r_a-9034", "cornetto_synset_id": "n_a-533659", "wordnet_id": "a-01590484", "pos": "JJ", "sense": "met veel aanzien", "polarity": "0.4", "subjectivity": "0.9", "intensity": "0.9", "confidence": "0.7" }, "aardig": { "form": "aardig", "cornetto_id": "r_a-9035", "cornetto_synset_id": "c_175", "wordnet_id": "a-01372049", "pos": "JJ", "sense": "sympathiek", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "aardrijkskundig": { "form": "aardrijkskundig", "cornetto_id": "r_a-8862", "cornetto_synset_id": "n_a-501399", "wordnet_id": "a-01470496", "pos": "JJ", "sense": "geografisch", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "aards": { "form": "aards", "cornetto_id": "r_a-8689", "cornetto_synset_id": "n_a-501400", "wordnet_id": "a-00124918", "pos": "JJ", "sense": "aan de aarde gebonden", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "aartslui": { "form": "aartslui", "cornetto_id": "r_a-8969", "cornetto_synset_id": "n_a-501421", "wordnet_id": "", "pos": "JJ", "sense": "heel lui", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "abnormaal": { "form": "abnormaal", "cornetto_id": "r_a-8867", "cornetto_synset_id": "n_a-521201", "wordnet_id": "a-00287275", "pos": "JJ", "sense": "afwijkend", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "abominabel": { "form": "abominabel", "cornetto_id": "r_a-8690", "cornetto_synset_id": "n_a-534085", "wordnet_id": "a-00193367", "pos": "JJ", "sense": "afschuwelijk", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "abrupt": { "form": "abrupt", "cornetto_id": "r_a-8868", "cornetto_synset_id": "n_a-521635", "wordnet_id": "", "pos": "JJ", "sense": "plotseling", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "absolutistisch": { "form": "absolutistisch", "cornetto_id": "r_a-8970", "cornetto_synset_id": "n_a-501458", "wordnet_id": "a-03139045", "pos": "JJ", "sense": "als van een absolutist", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "absoluut": { "form": "absoluut", "cornetto_id": "r_a-8691", "cornetto_synset_id": "n_a-501460", "wordnet_id": "", "pos": "JJ", "sense": "volstrekt", "polarity": "0.1", "subjectivity": "0.7", "intensity": "1.7", "confidence": "1.0" }, "abstract": { "form": "abstract", "cornetto_id": "r_a-9038", "cornetto_synset_id": "n_a-501465", "wordnet_id": "a-00005205", "pos": "JJ", "sense": "bepaalde kunstvorm", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "absurd": { "form": "absurd", "cornetto_id": "r_a-8693", "cornetto_synset_id": "n_a-501466", "wordnet_id": "a-02074929", "pos": "JJ", "sense": "onzinnig", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "absurdistisch": { "form": "absurdistisch", "cornetto_id": "r_a-8870", "cornetto_synset_id": "n_a-501468", "wordnet_id": "", "pos": "JJ", "sense": "als in het absurdisme", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "acceptabel": { "form": "acceptabel", "cornetto_id": "r_a-8697", "cornetto_synset_id": "n_a-501312", "wordnet_id": "a-01761871", "pos": "JJ", "sense": "aanvaardbaar", "polarity": "0.1", "subjectivity": "0.7", "intensity": "0.9", "confidence": "0.7" }, "accuraat": { "form": "accuraat", "cornetto_id": "r_a-9045", "cornetto_synset_id": "n_a-534096", "wordnet_id": "a-02460502", "pos": "JJ", "sense": "juist", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.9" }, "achteloos": { "form": "achteloos", "cornetto_id": "r_a-9043", "cornetto_synset_id": "n_a-520762", "wordnet_id": "a-00545746", "pos": "JJ", "sense": "onbekommerd", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "achterbaks": { "form": "achterbaks", "cornetto_id": "r_a-8700", "cornetto_synset_id": "n_a-529326", "wordnet_id": "", "pos": "JJ", "sense": "geniepig", "polarity": "-0.3", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "achterdochtig": { "form": "achterdochtig", "cornetto_id": "r_a-8701", "cornetto_synset_id": "n_a-534218", "wordnet_id": "a-00325619", "pos": "JJ", "sense": "wantrouwig", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "achterhaald": { "form": "achterhaald", "cornetto_id": "r_a-8702", "cornetto_synset_id": "n_a-501544", "wordnet_id": "a-00669138", "pos": "JJ", "sense": "verouderd", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "actueel": { "form": "actueel", "cornetto_id": "r_a-9050", "cornetto_synset_id": "n_a-513031", "wordnet_id": "a-00666058", "pos": "JJ", "sense": "huidig", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "acuut": { "form": "acuut", "cornetto_id": "r_a-8709", "cornetto_synset_id": "n_a-501630", "wordnet_id": "a-00650900", "pos": "JJ", "sense": "plotseling en hevig", "polarity": "-0.1", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "additioneel": { "form": "additioneel", "cornetto_id": "r_a-8878", "cornetto_synset_id": "d_a-9187", "wordnet_id": "", "pos": "JJ", "sense": "toegevoegd", "polarity": "0.0", "subjectivity": "0.1", "intensity": "0.9", "confidence": "0.7" }, "adembenemend": { "form": "adembenemend", "cornetto_id": "r_a-8711", "cornetto_synset_id": "n_a-524142", "wordnet_id": "a-00217728", "pos": "JJ", "sense": "erg spannend of mooi", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.9", "confidence": "1.0" }, "ademloos": { "form": "ademloos", "cornetto_id": "r_a-8712", "cornetto_synset_id": "n_a-509723", "wordnet_id": "a-00163948", "pos": "JJ", "sense": "met ingehouden adem", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "adequaat": { "form": "adequaat", "cornetto_id": "r_a-8713", "cornetto_synset_id": "d_a-9306", "wordnet_id": "a-01020885", "pos": "JJ", "sense": "passend", "polarity": "0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "administratiefrechtelijk": { "form": "administratiefrechtelijk", "cornetto_id": "r_a-8880", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "bestuursrechtelijk", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "afbreekbaar": { "form": "afbreekbaar", "cornetto_id": "r_a-8975", "cornetto_synset_id": "n_a-501723", "wordnet_id": "a-01753652", "pos": "JJ", "sense": "mogelijk om af te breken", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "affectief": { "form": "affectief", "cornetto_id": "r_a-8881", "cornetto_synset_id": "n_a-508279", "wordnet_id": "a-00853776", "pos": "JJ", "sense": "verband houdend met het gevoel", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "afgedraaid": { "form": "afgedraaid", "cornetto_id": "r_a-8718", "cornetto_synset_id": "n_a-531701", "wordnet_id": "a-02433451", "pos": "JJ", "sense": "zeer moe", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "afgeladen": { "form": "afgeladen", "cornetto_id": "r_a-8719", "cornetto_synset_id": "n_a-529021", "wordnet_id": "a-00560100", "pos": "JJ", "sense": "helemaal vol mensen", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.9" }, "afgeleefd": { "form": "afgeleefd", "cornetto_id": "r_a-8976", "cornetto_synset_id": "n_a-501747", "wordnet_id": "a-02040233", "pos": "JJ", "sense": "(sterk) verzwakt door ouderdom", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "afgepast": { "form": "afgepast", "cornetto_id": "r_a-8978", "cornetto_synset_id": "c_66", "wordnet_id": "", "pos": "JJ", "sense": "juist afgemeten", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "afgetrapt": { "form": "afgetrapt", "cornetto_id": "r_a-8980", "cornetto_synset_id": "n_a-501774", "wordnet_id": "a-02582873", "pos": "JJ", "sense": "versleten", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "afgezaagd": { "form": "afgezaagd", "cornetto_id": "r_a-8723", "cornetto_synset_id": "n_a-501778", "wordnet_id": "a-01688757", "pos": "JJ", "sense": "overbekend en saai", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "afgrijselijk": { "form": "afgrijselijk", "cornetto_id": "r_a-8724", "cornetto_synset_id": "n_a-532685", "wordnet_id": "a-00193799", "pos": "JJ", "sense": "afschuwelijk", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "afgunstig": { "form": "afgunstig", "cornetto_id": "r_a-8726", "cornetto_synset_id": "d_a-9356", "wordnet_id": "a-01113636", "pos": "JJ", "sense": "jaloers", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "afhankelijk": { "form": "afhankelijk", "cornetto_id": "r_a-8729", "cornetto_synset_id": "n_a-501791", "wordnet_id": "a-00725772", "pos": "JJ", "sense": "niet zelfstandig", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "0.9", "confidence": "0.7" }, "afkerig": { "form": "afkerig", "cornetto_id": "r_a-8730", "cornetto_synset_id": "n_a-502064", "wordnet_id": "a-02360944", "pos": "JJ", "sense": "een afkeer hebbend", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "afknapper": { "form": "afknapper", "cornetto_id": "r_n-2890", "cornetto_synset_id": "d_n-24193", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.9" }, "afkomstig": { "form": "afkomstig", "cornetto_id": "r_a-9063", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "komend van", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "afschaffen": { "form": "afschaffen", "cornetto_id": "r_v-689", "cornetto_synset_id": "d_v-617", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "afschepen": { "form": "afschepen", "cornetto_id": "r_v-697", "cornetto_synset_id": "d_v-624", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "afschrikwekkend": { "form": "afschrikwekkend", "cornetto_id": "r_a-8889", "cornetto_synset_id": "n_a-502271", "wordnet_id": "a-00079485", "pos": "JJ", "sense": "afkeer inboezemend", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "afschuwelijk": { "form": "afschuwelijk", "cornetto_id": "c_545491", "cornetto_synset_id": "n_a-532685", "wordnet_id": "a-00193799", "pos": "JJ", "sense": "heel lelijk of heel vervelend", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.7", "confidence": "1.0" }, "afschuwwekkend": { "form": "afschuwwekkend", "cornetto_id": "r_a-8985", "cornetto_synset_id": "n_a-534469", "wordnet_id": "a-00007990", "pos": "JJ", "sense": "afschuw verwekkend", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "afstandelijk": { "form": "afstandelijk", "cornetto_id": "r_a-8734", "cornetto_synset_id": "n_a-515500", "wordnet_id": "a-01257612", "pos": "JJ", "sense": "koel", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "afstotelijk": { "form": "afstotelijk", "cornetto_id": "r_a-8987", "cornetto_synset_id": "n_a-534469", "wordnet_id": "a-00007990", "pos": "JJ", "sense": "afkeer inboezemend", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "aftands": { "form": "aftands", "cornetto_id": "r_a-8890", "cornetto_synset_id": "n_a-501876", "wordnet_id": "a-00679717", "pos": "JJ", "sense": "versleten", "polarity": "-0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "afzienbaar": { "form": "afzienbaar", "cornetto_id": "r_a-8740", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "te overzien", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "afzonderlijk": { "form": "afzonderlijk", "cornetto_id": "r_a-8741", "cornetto_synset_id": "n_a-502386", "wordnet_id": "a-00160768", "pos": "JJ", "sense": "apart", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "agressief": { "form": "agressief", "cornetto_id": "r_a-8744", "cornetto_synset_id": "n_a-504134", "wordnet_id": "a-00587376", "pos": "JJ", "sense": "bijtend (van stoffen)", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "akelig": { "form": "akelig", "cornetto_id": "r_a-8746", "cornetto_synset_id": "n_a-519014", "wordnet_id": "a-02545689", "pos": "JJ", "sense": "een beetje ziek", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "alfabetisch": { "form": "alfabetisch", "cornetto_id": "r_a-8750", "cornetto_synset_id": "n_a-502008", "wordnet_id": "a-00100634", "pos": "JJ", "sense": "op alfabet", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "algebraïsch": { "form": "algebraïsch", "cornetto_id": "r_a-8989", "cornetto_synset_id": "n_a-502015", "wordnet_id": "a-02854350", "pos": "JJ", "sense": "van de algebra", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "algeheel": { "form": "algeheel", "cornetto_id": "r_a-8752", "cornetto_synset_id": "n_a-533538", "wordnet_id": "a-00520214", "pos": "JJ", "sense": "totaal", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.7", "confidence": "0.7" }, "algemeen": { "form": "algemeen", "cornetto_id": "r_a-9074", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "vaag", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "alledaags": { "form": "alledaags", "cornetto_id": "r_a-8755", "cornetto_synset_id": "n_a-506314", "wordnet_id": "a-01674242", "pos": "JJ", "sense": "van elke dag", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "0.9", "confidence": "1.0" }, "allegorisch": { "form": "allegorisch", "cornetto_id": "r_a-8898", "cornetto_synset_id": "n_a-530072", "wordnet_id": "a-01496592", "pos": "JJ", "sense": "als een allegorie", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.1", "confidence": "0.7" }, "alleraardigst": { "form": "alleraardigst", "cornetto_id": "r_a-8992", "cornetto_synset_id": "n_a-508335", "wordnet_id": "a-00167278", "pos": "JJ", "sense": "heel leuk", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "allerbelangrijkst": { "form": "allerbelangrijkst", "cornetto_id": "r_a-8899", "cornetto_synset_id": "n_a-536072", "wordnet_id": "a-00792641", "pos": "JJ", "sense": "erg belangrijk", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "allerbest": { "form": "allerbest", "cornetto_id": "r_a-8900", "cornetto_synset_id": "d_a-9557", "wordnet_id": "", "pos": "JJ", "sense": "heel erg goed", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "allereerst": { "form": "allereerst", "cornetto_id": "r_a-8901", "cornetto_synset_id": "n_a-502062", "wordnet_id": "", "pos": "JJ", "sense": "aan al het andere voorafgaand", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "allerergst": { "form": "allerergst", "cornetto_id": "r_a-8902", "cornetto_synset_id": "n_a-502063", "wordnet_id": "", "pos": "JJ", "sense": "erger dan erg", "polarity": "-0.3", "subjectivity": "0.9", "intensity": "1.5", "confidence": "0.7" }, "allerhoogst": { "form": "allerhoogst", "cornetto_id": "r_a-8905", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "het hoogst", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "allerlaatst": { "form": "allerlaatst", "cornetto_id": "r_a-8993", "cornetto_synset_id": "n_a-516555", "wordnet_id": "a-00004296", "pos": "JJ", "sense": "het laatst van alles", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "allerlei": { "form": "allerlei", "cornetto_id": "d_a-9974", "cornetto_synset_id": "n_a-502070", "wordnet_id": "a-02506922", "pos": "JJ", "sense": "", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "allerleukst": { "form": "allerleukst", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "allerminst": { "form": "allerminst", "cornetto_id": "r_a-8909", "cornetto_synset_id": "n_a-502073", "wordnet_id": "", "pos": "JJ", "sense": "geringst", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "0.8", "confidence": "1.0" }, "allermooist": { "form": "allermooist", "cornetto_id": "r_a-8910", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "het mooist", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "allesoverheersend": { "form": "allesoverheersend", "cornetto_id": "r_a-8915", "cornetto_synset_id": "n_a-502084", "wordnet_id": "a-01989446", "pos": "JJ", "sense": "zeer sterk overheersend", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "alomvattend": { "form": "alomvattend", "cornetto_id": "r_a-8918", "cornetto_synset_id": "n_a-502114", "wordnet_id": "a-00526062", "pos": "JJ", "sense": "alles omvattend", "polarity": "0.3", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "aloud": { "form": "aloud", "cornetto_id": "r_a-8919", "cornetto_synset_id": "n_a-508062", "wordnet_id": "a-00353431", "pos": "JJ", "sense": "van jaren her", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "altruïstisch": { "form": "altruïstisch", "cornetto_id": "r_a-8761", "cornetto_synset_id": "d_a-9432", "wordnet_id": "a-00101609", "pos": "JJ", "sense": "onbaatzuchtig", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "amateuristisch": { "form": "amateuristisch", "cornetto_id": "r_a-9079", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "klungelig", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "ambitieus": { "form": "ambitieus", "cornetto_id": "r_a-8765", "cornetto_synset_id": "n_a-502179", "wordnet_id": "a-00104051", "pos": "JJ", "sense": "eerzuchtig", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "amicaal": { "form": "amicaal", "cornetto_id": "r_a-8770", "cornetto_synset_id": "n_a-533861", "wordnet_id": "a-00452114", "pos": "JJ", "sense": "vriendschappelijk", "polarity": "0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "amoureus": { "form": "amoureus", "cornetto_id": "r_a-8771", "cornetto_synset_id": "n_a-502212", "wordnet_id": "a-01465214", "pos": "JJ", "sense": "verband houdend met liefde", "polarity": "0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "amusant": { "form": "amusant", "cornetto_id": "r_a-8773", "cornetto_synset_id": "n_a-511389", "wordnet_id": "", "pos": "JJ", "sense": "vermakelijk", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "anaal": { "form": "anaal", "cornetto_id": "r_a-8774", "cornetto_synset_id": "n_a-502227", "wordnet_id": "a-00109966", "pos": "JJ", "sense": "van of via de anus", "polarity": "-0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "anachronistisch": { "form": "anachronistisch", "cornetto_id": "r_a-8998", "cornetto_synset_id": "n_a-502229", "wordnet_id": "a-02379925", "pos": "JJ", "sense": "misplaatst in de tijd", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "analoog": { "form": "analoog", "cornetto_id": "r_a-9082", "cornetto_synset_id": "n_a-502234", "wordnet_id": "a-00110497", "pos": "JJ", "sense": "niet digitaal", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "anarchistisch": { "form": "anarchistisch", "cornetto_id": "r_a-8923", "cornetto_synset_id": "n_a-502239", "wordnet_id": "a-00600192", "pos": "JJ", "sense": "het anarchisme betreffend", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "anatomisch": { "form": "anatomisch", "cornetto_id": "r_a-8924", "cornetto_synset_id": "n_a-502243", "wordnet_id": "a-02897524", "pos": "JJ", "sense": "ontleedkundig", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "ander": { "form": "ander", "cornetto_id": "r_a-9084", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "verschillend", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "anderhalf": { "form": "anderhalf", "cornetto_id": "r_a-8925", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "een en een half", "polarity": "0.0", "subjectivity": "0.0", "intensity": "0.9", "confidence": "1.0" }, "anders": { "form": "anders", "cornetto_id": "r_a-8778", "cornetto_synset_id": "d_a-9573", "wordnet_id": "", "pos": "JJ", "sense": "afwijkend", "polarity": "0.0", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "anekdotisch": { "form": "anekdotisch", "cornetto_id": "r_a-8928", "cornetto_synset_id": "n_a-502257", "wordnet_id": "a-00495916", "pos": "JJ", "sense": "als (in) een anekdote", "polarity": "-0.1", "subjectivity": "0.7", "intensity": "1.3", "confidence": "0.7" }, "anglicaans": { "form": "anglicaans", "cornetto_id": "r_a-8780", "cornetto_synset_id": "n_a-502264", "wordnet_id": "a-02954459", "pos": "JJ", "sense": "gerelateerd aan de anglicaanse kerk", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "angstaanjagend": { "form": "angstaanjagend", "cornetto_id": "r_a-8930", "cornetto_synset_id": "n_a-502271", "wordnet_id": "a-00079485", "pos": "JJ", "sense": "erg eng", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "angstig": { "form": "angstig", "cornetto_id": "r_a-9087", "cornetto_synset_id": "n_a-502271", "wordnet_id": "a-00079485", "pos": "JJ", "sense": "gerelateerd aan angst", "polarity": "-0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "angstwekkend": { "form": "angstwekkend", "cornetto_id": "r_a-8931", "cornetto_synset_id": "n_a-502271", "wordnet_id": "a-00079485", "pos": "JJ", "sense": "angst verwekkend", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.2", "confidence": "0.7" }, "anticommunistisch": { "form": "anticommunistisch", "cornetto_id": "r_a-9006", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "tegen het communisme", "polarity": "-0.3", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "antifascistisch": { "form": "antifascistisch", "cornetto_id": "r_a-8934", "cornetto_synset_id": "n_a-502336", "wordnet_id": "", "pos": "JJ", "sense": "tegen het fascisme", "polarity": "0.3", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "antiquarisch": { "form": "antiquarisch", "cornetto_id": "r_a-8937", "cornetto_synset_id": "n_a-502353", "wordnet_id": "a-01638962", "pos": "JJ", "sense": "verband houdend met antiek", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "antiracistisch": { "form": "antiracistisch", "cornetto_id": "r_a-9009", "cornetto_synset_id": "n_a-502356", "wordnet_id": "", "pos": "JJ", "sense": "tegen racisme", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.4", "confidence": "0.7" }, "antisemitisch": { "form": "antisemitisch", "cornetto_id": "r_a-8786", "cornetto_synset_id": "n_a-502362", "wordnet_id": "a-00285905", "pos": "JJ", "sense": "anti-joods", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "antropologisch": { "form": "antropologisch", "cornetto_id": "r_a-9011", "cornetto_synset_id": "n_a-502376", "wordnet_id": "a-02907175", "pos": "JJ", "sense": "gerelateerd aan de antropologie", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "apart": { "form": "apart", "cornetto_id": "r_a-8789", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "bijzonder", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "apathisch": { "form": "apathisch", "cornetto_id": "r_a-8790", "cornetto_synset_id": "d_a-9392", "wordnet_id": "", "pos": "JJ", "sense": "lusteloos", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "apert": { "form": "apert", "cornetto_id": "r_a-8791", "cornetto_synset_id": "n_a-502390", "wordnet_id": "a-01618376", "pos": "JJ", "sense": "duidelijk", "polarity": "0.3", "subjectivity": "0.7", "intensity": "1.2", "confidence": "0.7" }, "apetrots": { "form": "apetrots", "cornetto_id": "r_a-8941", "cornetto_synset_id": "n_a-502391", "wordnet_id": "", "pos": "JJ", "sense": "erg trots", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "apocalyptisch": { "form": "apocalyptisch", "cornetto_id": "r_a-9013", "cornetto_synset_id": "n_a-520118", "wordnet_id": "a-00586183", "pos": "JJ", "sense": "catastrofaal", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.2", "confidence": "0.7" }, "apodictisch": { "form": "apodictisch", "cornetto_id": "r_a-8942", "cornetto_synset_id": "n_a-521692", "wordnet_id": "a-00591406", "pos": "JJ", "sense": "erg stellig", "polarity": "0.0", "subjectivity": "0.1", "intensity": "0.9", "confidence": "0.7" }, "apostolisch": { "form": "apostolisch", "cornetto_id": "r_a-9102", "cornetto_synset_id": "n_a-522923", "wordnet_id": "a-01849960", "pos": "JJ", "sense": "van de paus", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "arbeidsintensief": { "form": "arbeidsintensief", "cornetto_id": "r_a-8794", "cornetto_synset_id": "n_a-502472", "wordnet_id": "", "pos": "JJ", "sense": "veel arbeid vergend", "polarity": "-0.2", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "arbeidsongeschikt": { "form": "arbeidsongeschikt", "cornetto_id": "r_a-8795", "cornetto_synset_id": "n_a-502476", "wordnet_id": "a-01019283", "pos": "JJ", "sense": "niet in staat om te werken", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "arbeidzaam": { "form": "arbeidzaam", "cornetto_id": "r_a-8796", "cornetto_synset_id": "n_a-513345", "wordnet_id": "a-00031974", "pos": "JJ", "sense": "vlijtig", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "arbitrair": { "form": "arbitrair", "cornetto_id": "r_a-8797", "cornetto_synset_id": "n_a-526851", "wordnet_id": "a-02637730", "pos": "JJ", "sense": "willekeurig", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "archaïsch": { "form": "archaïsch", "cornetto_id": "r_a-8944", "cornetto_synset_id": "n_a-502501", "wordnet_id": "a-01639230", "pos": "JJ", "sense": "behorend tot een oud tijdperk", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "archeologisch": { "form": "archeologisch", "cornetto_id": "r_a-8945", "cornetto_synset_id": "n_a-502503", "wordnet_id": "a-02638392", "pos": "JJ", "sense": "oudheidkundig", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "architectonisch": { "form": "architectonisch", "cornetto_id": "r_a-8798", "cornetto_synset_id": "n_a-504800", "wordnet_id": "a-02897957", "pos": "JJ", "sense": "bouwkundig", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "argeloos": { "form": "argeloos", "cornetto_id": "r_a-8800", "cornetto_synset_id": "n_a-519502", "wordnet_id": "a-02271544", "pos": "JJ", "sense": "nietsvermoedend", "polarity": "-0.2", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "arglistig": { "form": "arglistig", "cornetto_id": "r_a-8801", "cornetto_synset_id": "d_a-9523", "wordnet_id": "a-00148078", "pos": "JJ", "sense": "boosaardig", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "argwanend": { "form": "argwanend", "cornetto_id": "r_a-8802", "cornetto_synset_id": "n_a-534218", "wordnet_id": "a-00325619", "pos": "JJ", "sense": "achterdochtig", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "arm": { "form": "arm", "cornetto_id": "r_a-9106", "cornetto_synset_id": "n_a-502540", "wordnet_id": "a-00052012", "pos": "JJ", "sense": "iets niet hebbend", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "armetierig": { "form": "armetierig", "cornetto_id": "r_a-9108", "cornetto_synset_id": "n_a-502555", "wordnet_id": "a-00106456", "pos": "JJ", "sense": "armoedig", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "armoedig": { "form": "armoedig", "cornetto_id": "r_a-9111", "cornetto_synset_id": "n_a-502561", "wordnet_id": "a-00106456", "pos": "JJ", "sense": "niet veel voorstellend", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "armzalig": { "form": "armzalig", "cornetto_id": "r_a-8810", "cornetto_synset_id": "n_a-502555", "wordnet_id": "a-00106456", "pos": "JJ", "sense": "erg pover", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "arrogant": { "form": "arrogant", "cornetto_id": "r_a-8811", "cornetto_synset_id": "n_a-502571", "wordnet_id": "a-00205696", "pos": "JJ", "sense": "hooghartig", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "artistiek": { "form": "artistiek", "cornetto_id": "r_a-8813", "cornetto_synset_id": "n_a-516366", "wordnet_id": "a-02991122", "pos": "JJ", "sense": "kunstzinnig", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "asblond": { "form": "asblond", "cornetto_id": "r_a-9019", "cornetto_synset_id": "n_a-502606", "wordnet_id": "", "pos": "JJ", "sense": "licht blond", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "ascetisch": { "form": "ascetisch", "cornetto_id": "r_a-8814", "cornetto_synset_id": "d_a-9163", "wordnet_id": "a-00009618", "pos": "JJ", "sense": "als een asceet", "polarity": "0.2", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "asgrauw": { "form": "asgrauw", "cornetto_id": "r_a-8815", "cornetto_synset_id": "d_a-9320", "wordnet_id": "a-00387593", "pos": "JJ", "sense": "erg grijs", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "asociaal": { "form": "asociaal", "cornetto_id": "r_a-8816", "cornetto_synset_id": "n_a-502630", "wordnet_id": "a-00351420", "pos": "JJ", "sense": "niet sociaal", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "associatief": { "form": "associatief", "cornetto_id": "r_a-8818", "cornetto_synset_id": "n_a-502651", "wordnet_id": "a-00157389", "pos": "JJ", "sense": "op associatie berustend", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "astmatisch": { "form": "astmatisch", "cornetto_id": "r_a-9113", "cornetto_synset_id": "n_a-502662", "wordnet_id": "a-01174048", "pos": "JJ", "sense": "zoals astma", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "astraal": { "form": "astraal", "cornetto_id": "r_a-9114", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "niet materieel", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "astronomisch": { "form": "astronomisch", "cornetto_id": "r_a-8821", "cornetto_synset_id": "n_a-502679", "wordnet_id": "a-01383582", "pos": "JJ", "sense": "gigantisch", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.4", "confidence": "0.8" }, "atheïstisch": { "form": "atheïstisch", "cornetto_id": "r_a-8823", "cornetto_synset_id": "n_a-521215", "wordnet_id": "a-01305929", "pos": "JJ", "sense": "het atheïsme betreffend", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "atonaal": { "form": "atonaal", "cornetto_id": "r_a-9024", "cornetto_synset_id": "n_a-502705", "wordnet_id": "a-02438188", "pos": "JJ", "sense": "niet tonaal", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "atoomvrij": { "form": "atoomvrij", "cornetto_id": "r_a-9025", "cornetto_synset_id": "n_a-502719", "wordnet_id": "", "pos": "JJ", "sense": "zonder kerncentrales en kernwapens", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "attent": { "form": "attent", "cornetto_id": "r_a-8826", "cornetto_synset_id": "n_a-501199", "wordnet_id": "a-00164308", "pos": "JJ", "sense": "oplettend", "polarity": "0.2", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "attractief": { "form": "attractief", "cornetto_id": "r_a-8828", "cornetto_synset_id": "n_a-501309", "wordnet_id": "a-00166146", "pos": "JJ", "sense": "aantrekkelijk", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.9" }, "autarkisch": { "form": "autarkisch", "cornetto_id": "r_a-8832", "cornetto_synset_id": "n_a-527536", "wordnet_id": "a-00728103", "pos": "JJ", "sense": "zelfvoorzienend", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "auteursrechtelijk": { "form": "auteursrechtelijk", "cornetto_id": "r_a-8950", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "het auteursrecht betreffend", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "authentiek": { "form": "authentiek", "cornetto_id": "r_a-9120", "cornetto_synset_id": "n_a-522169", "wordnet_id": "", "pos": "JJ", "sense": "origineel", "polarity": "0.4", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "autistisch": { "form": "autistisch", "cornetto_id": "r_a-8834", "cornetto_synset_id": "n_a-502750", "wordnet_id": "a-02542878", "pos": "JJ", "sense": "lijdend aan autisme", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "1.0" }, "autobiografisch": { "form": "autobiografisch", "cornetto_id": "r_a-8951", "cornetto_synset_id": "n_a-502755", "wordnet_id": "a-02651244", "pos": "JJ", "sense": "het leven van de schrijver betreffend", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "autoloos": { "form": "autoloos", "cornetto_id": "r_a-8953", "cornetto_synset_id": "n_a-502807", "wordnet_id": "a-01346343", "pos": "JJ", "sense": "zonder auto's", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "automatisch": { "form": "automatisch", "cornetto_id": "r_a-9123", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "vanzelf, zonder erbij na te denken", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "avant-gardistisch": { "form": "avant-gardistisch", "cornetto_id": "r_a-8956", "cornetto_synset_id": "n_a-502811", "wordnet_id": "", "pos": "JJ", "sense": "als in de avant-garde", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "averechts": { "form": "averechts", "cornetto_id": "r_a-8840", "cornetto_synset_id": "n_a-530430", "wordnet_id": "a-00564504", "pos": "JJ", "sense": "tegenovergesteld", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "avontuurlijk": { "form": "avontuurlijk", "cornetto_id": "r_a-8842", "cornetto_synset_id": "n_a-502846", "wordnet_id": "a-00065791", "pos": "JJ", "sense": "belust op avontuur", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "baanbrekend": { "form": "baanbrekend", "cornetto_id": "r_a-9127", "cornetto_synset_id": "n_a-532616", "wordnet_id": "a-02091300", "pos": "JJ", "sense": "revolutionair", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "baarlijk": { "form": "baarlijk", "cornetto_id": "r_a-9129", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "klinkklaar", "polarity": "0.3", "subjectivity": "0.6", "intensity": "1.5", "confidence": "0.7" }, "babbelziek": { "form": "babbelziek", "cornetto_id": "r_a-9515", "cornetto_synset_id": "n_a-515218", "wordnet_id": "a-00496422", "pos": "JJ", "sense": "ziekelijke neiging tot kletsen", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.3", "confidence": "0.7" }, "badinerend": { "form": "badinerend", "cornetto_id": "r_a-9131", "cornetto_synset_id": "n_a-526943", "wordnet_id": "a-01267076", "pos": "JJ", "sense": "gekscherend", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "baldadig": { "form": "baldadig", "cornetto_id": "r_a-9132", "cornetto_synset_id": "d_a-9167", "wordnet_id": "a-00361837", "pos": "JJ", "sense": "brooddronken", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "balorig": { "form": "balorig", "cornetto_id": "r_a-9133", "cornetto_synset_id": "n_a-534464", "wordnet_id": "a-00021592", "pos": "JJ", "sense": "weerspannig", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "banaal": { "form": "banaal", "cornetto_id": "r_a-9134", "cornetto_synset_id": "n_a-523583", "wordnet_id": "a-00683531", "pos": "JJ", "sense": "plat", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "bancair": { "form": "bancair", "cornetto_id": "r_a-9417", "cornetto_synset_id": "n_a-503029", "wordnet_id": "", "pos": "JJ", "sense": "van een bank", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "bang": { "form": "bang", "cornetto_id": "r_a-9591", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "beangstigend", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "bangelijk": { "form": "bangelijk", "cornetto_id": "r_a-9137", "cornetto_synset_id": "d_a-9169", "wordnet_id": "a-00079485", "pos": "JJ", "sense": "gauw bang", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "bangig": { "form": "bangig", "cornetto_id": "r_a-9519", "cornetto_synset_id": "d_a-9169", "wordnet_id": "a-00079485", "pos": "JJ", "sense": "nogal bang", "polarity": "-0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "bar": { "form": "bar", "cornetto_id": "r_a-9592", "cornetto_synset_id": "n_a-521234", "wordnet_id": "a-01243102", "pos": "JJ", "sense": "kaal", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.1", "confidence": "1.0" }, "barbaars": { "form": "barbaars", "cornetto_id": "r_a-9140", "cornetto_synset_id": "d_a-9619", "wordnet_id": "a-00412788", "pos": "JJ", "sense": "wreed", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "barok": { "form": "barok", "cornetto_id": "r_a-9142", "cornetto_synset_id": "n_a-503126", "wordnet_id": "a-01794995", "pos": "JJ", "sense": "grillig als in de barok", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "bars": { "form": "bars", "cornetto_id": "r_a-9143", "cornetto_synset_id": "n_a-520179", "wordnet_id": "a-01139067", "pos": "JJ", "sense": "nors", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "barstensvol": { "form": "barstensvol", "cornetto_id": "r_a-9419", "cornetto_synset_id": "n_a-529021", "wordnet_id": "a-00560100", "pos": "JJ", "sense": "propvol", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.9" }, "basaal": { "form": "basaal", "cornetto_id": "d_a-21946", "cornetto_synset_id": "n_a-509441", "wordnet_id": "a-00095094", "pos": "JJ", "sense": "", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.1", "confidence": "0.7" }, "bazig": { "form": "bazig", "cornetto_id": "r_a-9146", "cornetto_synset_id": "n_a-502794", "wordnet_id": "a-00104051", "pos": "JJ", "sense": "bedillerig", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.3", "confidence": "0.7" }, "bedaagd": { "form": "bedaagd", "cornetto_id": "r_a-9147", "cornetto_synset_id": "d_a-9481", "wordnet_id": "a-01644225", "pos": "JJ", "sense": "van rijpe leeftijd", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "bedaard": { "form": "bedaard", "cornetto_id": "r_a-9148", "cornetto_synset_id": "d_a-9360", "wordnet_id": "", "pos": "JJ", "sense": "rustig", "polarity": "0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "bedachtzaam": { "form": "bedachtzaam", "cornetto_id": "r_a-9150", "cornetto_synset_id": "n_a-503220", "wordnet_id": "a-00067966", "pos": "JJ", "sense": "met aandacht en verstand", "polarity": "0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "bedenkelijk": { "form": "bedenkelijk", "cornetto_id": "r_a-9153", "cornetto_synset_id": "n_a-535949", "wordnet_id": "a-00193015", "pos": "JJ", "sense": "zorgelijk", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "bedlegerig": { "form": "bedlegerig", "cornetto_id": "r_a-9156", "cornetto_synset_id": "n_a-503249", "wordnet_id": "a-02543034", "pos": "JJ", "sense": "door ziekte in bed", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "bedompt": { "form": "bedompt", "cornetto_id": "r_a-9157", "cornetto_synset_id": "n_a-503252", "wordnet_id": "a-01070088", "pos": "JJ", "sense": "benauwd", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "bedroefd": { "form": "bedroefd", "cornetto_id": "r_a-9163", "cornetto_synset_id": "n_a-532342", "wordnet_id": "a-01361863", "pos": "JJ", "sense": "verdrietig", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "beduidend": { "form": "beduidend", "cornetto_id": "r_a-9167", "cornetto_synset_id": "c_645", "wordnet_id": "a-00624026", "pos": "JJ", "sense": "aanzienlijk", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.4", "confidence": "1.0" }, "beeldend": { "form": "beeldend", "cornetto_id": "r_a-9170", "cornetto_synset_id": "n_a-503317", "wordnet_id": "a-00402419", "pos": "JJ", "sense": "in beelden", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "1.0" }, "beeldrijk": { "form": "beeldrijk", "cornetto_id": "r_a-9527", "cornetto_synset_id": "n_a-503317", "wordnet_id": "a-00402419", "pos": "JJ", "sense": "rijk aan beeldspraak", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "beeldschoon": { "form": "beeldschoon", "cornetto_id": "r_a-9172", "cornetto_synset_id": "n_a-503339", "wordnet_id": "a-00218837", "pos": "JJ", "sense": "heel mooi", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "beestachtig": { "form": "beestachtig", "cornetto_id": "r_a-9173", "cornetto_synset_id": "n_a-518612", "wordnet_id": "a-01263445", "pos": "JJ", "sense": "gruwelijk", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "befaamd": { "form": "befaamd", "cornetto_id": "r_a-9174", "cornetto_synset_id": "n_a-503694", "wordnet_id": "a-01375831", "pos": "JJ", "sense": "vermaard", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "begaafd": { "form": "begaafd", "cornetto_id": "r_a-9175", "cornetto_synset_id": "d_a-9174", "wordnet_id": "a-01119192", "pos": "JJ", "sense": "met veel aanleg", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "begaanbaar": { "form": "begaanbaar", "cornetto_id": "r_a-9177", "cornetto_synset_id": "n_a-503378", "wordnet_id": "a-00093556", "pos": "JJ", "sense": "bewandelbaar", "polarity": "0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "begeerlijk": { "form": "begeerlijk", "cornetto_id": "r_a-9179", "cornetto_synset_id": "n_a-501309", "wordnet_id": "a-00166146", "pos": "JJ", "sense": "door iedereen begeerd", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "begeesterd": { "form": "begeesterd", "cornetto_id": "d_a-23972", "cornetto_synset_id": "d_a-9262", "wordnet_id": "a-00885695", "pos": "JJ", "sense": "", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "begenadigd": { "form": "begenadigd", "cornetto_id": "r_a-9180", "cornetto_synset_id": "d_a-9174", "wordnet_id": "a-01119192", "pos": "JJ", "sense": "getalenteerd", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "beginselvast": { "form": "beginselvast", "cornetto_id": "r_a-9529", "cornetto_synset_id": "n_a-524375", "wordnet_id": "a-00464513", "pos": "JJ", "sense": "principieel", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "begrijpbaar": { "form": "begrijpbaar", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "begrijpelijk": { "form": "begrijpelijk", "cornetto_id": "r_a-9183", "cornetto_synset_id": "n_a-503401", "wordnet_id": "a-00532892", "pos": "JJ", "sense": "verklaarbaar", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "behaaglijk": { "form": "behaaglijk", "cornetto_id": "r_a-9185", "cornetto_synset_id": "n_a-503417", "wordnet_id": "a-00477284", "pos": "JJ", "sense": "aangenaam", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "beheersbaar": { "form": "beheersbaar", "cornetto_id": "r_a-9425", "cornetto_synset_id": "n_a-503424", "wordnet_id": "a-01474942", "pos": "JJ", "sense": "onder controle te houden", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "behendig": { "form": "behendig", "cornetto_id": "r_a-9190", "cornetto_synset_id": "d_a-9172", "wordnet_id": "a-02226162", "pos": "JJ", "sense": "handig", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "behoeftig": { "form": "behoeftig", "cornetto_id": "r_a-9193", "cornetto_synset_id": "d_a-9161", "wordnet_id": "a-02022953", "pos": "JJ", "sense": "arm", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.3", "confidence": "0.7" }, "behoorlijk": { "form": "behoorlijk", "cornetto_id": "r_a-9605", "cornetto_synset_id": "c_645", "wordnet_id": "a-00624026", "pos": "JJ", "sense": "flink", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "bejaard": { "form": "bejaard", "cornetto_id": "r_a-9200", "cornetto_synset_id": "c_154", "wordnet_id": "", "pos": "JJ", "sense": "op leeftijd", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "bekakt": { "form": "bekakt", "cornetto_id": "r_a-9666", "cornetto_synset_id": "n_a-503448", "wordnet_id": "a-00975778", "pos": "JJ", "sense": "geaffecteerd", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "bekeken": { "form": "bekeken", "cornetto_id": "r_a-9606", "cornetto_synset_id": "n_a-527945", "wordnet_id": "a-00092136", "pos": "JJ", "sense": "afgehandeld", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "bekend": { "form": "bekend", "cornetto_id": "r_a-9668", "cornetto_synset_id": "n_a-503455", "wordnet_id": "a-01375831", "pos": "JJ", "sense": "beroemd", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "beklagenswaardig": { "form": "beklagenswaardig", "cornetto_id": "r_a-9427", "cornetto_synset_id": "n_a-508241", "wordnet_id": "", "pos": "JJ", "sense": "te beklagen", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "beklemmend": { "form": "beklemmend", "cornetto_id": "r_a-9671", "cornetto_synset_id": "n_a-503573", "wordnet_id": "a-00194924", "pos": "JJ", "sense": "benauwend", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "beklonken": { "form": "beklonken", "cornetto_id": "r_a-9672", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "geregeld", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "bekneld": { "form": "bekneld", "cornetto_id": "r_a-9673", "cornetto_synset_id": "n_a-503472", "wordnet_id": "a-00502809", "pos": "JJ", "sense": "in de knel", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "beknopt": { "form": "beknopt", "cornetto_id": "r_a-9674", "cornetto_synset_id": "d_a-9176", "wordnet_id": "a-00004413", "pos": "JJ", "sense": "bondig", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "bekocht": { "form": "bekocht", "cornetto_id": "r_a-9675", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "afgezet", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "bekrompen": { "form": "bekrompen", "cornetto_id": "r_a-9678", "cornetto_synset_id": "c_125", "wordnet_id": "a-00287640", "pos": "JJ", "sense": "kortzichtig", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "bekwaam": { "form": "bekwaam", "cornetto_id": "r_a-9679", "cornetto_synset_id": "d_a-9373", "wordnet_id": "a-00178811", "pos": "JJ", "sense": "kundig", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "belabberd": { "form": "belabberd", "cornetto_id": "r_a-9680", "cornetto_synset_id": "n_a-508241", "wordnet_id": "", "pos": "JJ", "sense": "ellendig", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "belachelijk": { "form": "belachelijk", "cornetto_id": "r_a-9681", "cornetto_synset_id": "n_a-503484", "wordnet_id": "a-00221627", "pos": "JJ", "sense": "ridicuul", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.7", "confidence": "1.0" }, "belangeloos": { "form": "belangeloos", "cornetto_id": "r_a-9683", "cornetto_synset_id": "n_a-503487", "wordnet_id": "a-00101609", "pos": "JJ", "sense": "onbaatzuchtig", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "belanghebbend": { "form": "belanghebbend", "cornetto_id": "r_a-9429", "cornetto_synset_id": "d_a-9177", "wordnet_id": "a-00762355", "pos": "JJ", "sense": "geïnteresseerd", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "belangrijk": { "form": "belangrijk", "cornetto_id": "r_a-9684", "cornetto_synset_id": "c_645", "wordnet_id": "a-00624026", "pos": "JJ", "sense": "van groot belang", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "belangwekkend": { "form": "belangwekkend", "cornetto_id": "r_a-9687", "cornetto_synset_id": "n_a-513883", "wordnet_id": "a-00166753", "pos": "JJ", "sense": "interessant", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "belastend": { "form": "belastend", "cornetto_id": "r_a-9532", "cornetto_synset_id": "n_a-504036", "wordnet_id": "a-00924952", "pos": "JJ", "sense": "ten nadele", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "belazerd": { "form": "belazerd", "cornetto_id": "r_a-9610", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "beroerd", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "beleefd": { "form": "beleefd", "cornetto_id": "r_a-9689", "cornetto_synset_id": "n_a-503527", "wordnet_id": "a-00641343", "pos": "JJ", "sense": "met goede manieren", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "belerend": { "form": "belerend", "cornetto_id": "r_a-9436", "cornetto_synset_id": "n_a-503950", "wordnet_id": "a-01324131", "pos": "JJ", "sense": "schoolmeesterachtig", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "belezen": { "form": "belezen", "cornetto_id": "r_a-9692", "cornetto_synset_id": "n_a-503545", "wordnet_id": "a-00830051", "pos": "JJ", "sense": "veel gelezen hebbend", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "beloftevol": { "form": "beloftevol", "cornetto_id": "r_a-9437", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "vol belofte", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "belust": { "form": "belust", "cornetto_id": "r_a-9201", "cornetto_synset_id": "d_a-9175", "wordnet_id": "a-00010726", "pos": "JJ", "sense": "met veel zin", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "bemiddeld": { "form": "bemiddeld", "cornetto_id": "r_a-9202", "cornetto_synset_id": "d_a-9505", "wordnet_id": "a-01049352", "pos": "JJ", "sense": "met veel geld", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.9" }, "bemoeiziek": { "form": "bemoeiziek", "cornetto_id": "r_a-9533", "cornetto_synset_id": "n_a-503566", "wordnet_id": "a-01352561", "pos": "JJ", "sense": "met neiging tot bemoeien", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "bemost": { "form": "bemost", "cornetto_id": "r_a-16571", "cornetto_synset_id": "n_a-503567", "wordnet_id": "", "pos": "JJ", "sense": "met mos begroeid", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "benard": { "form": "benard", "cornetto_id": "r_a-9204", "cornetto_synset_id": "n_a-511757", "wordnet_id": "a-00746994", "pos": "JJ", "sense": "netelig", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "benauwd": { "form": "benauwd", "cornetto_id": "r_a-9207", "cornetto_synset_id": "d_a-9168", "wordnet_id": "a-00077645", "pos": "JJ", "sense": "bang", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "benieuwd": { "form": "benieuwd", "cornetto_id": "r_a-9209", "cornetto_synset_id": "d_a-9277", "wordnet_id": "a-00163592", "pos": "JJ", "sense": "nieuwsgierig", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "benig": { "form": "benig", "cornetto_id": "r_a-9210", "cornetto_synset_id": "n_a-503592", "wordnet_id": "a-03138224", "pos": "JJ", "sense": "knokig", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "benodigd": { "form": "benodigd", "cornetto_id": "r_a-9211", "cornetto_synset_id": "c_666", "wordnet_id": "", "pos": "JJ", "sense": "nodig", "polarity": "0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "bepaald": { "form": "bepaald", "cornetto_id": "r_a-9617", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "beslist", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.1", "confidence": "1.0" }, "beperkt": { "form": "beperkt", "cornetto_id": "r_a-9213", "cornetto_synset_id": "n_a-503624", "wordnet_id": "a-00881735", "pos": "JJ", "sense": "niet volledig", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "bereid": { "form": "bereid", "cornetto_id": "r_a-9619", "cornetto_synset_id": "d_v-1185", "wordnet_id": "", "pos": "JJ", "sense": "klaar", "polarity": "0.3", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "bereikbaar": { "form": "bereikbaar", "cornetto_id": "r_a-9218", "cornetto_synset_id": "n_a-503639", "wordnet_id": "a-00019349", "pos": "JJ", "sense": "te bereiken", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "berekend": { "form": "berekend", "cornetto_id": "r_a-9220", "cornetto_synset_id": "n_a-503643", "wordnet_id": "a-00051373", "pos": "JJ", "sense": "geschikt", "polarity": "0.2", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "berijdbaar": { "form": "berijdbaar", "cornetto_id": "r_a-9539", "cornetto_synset_id": "n_a-503378", "wordnet_id": "a-00093556", "pos": "JJ", "sense": "voor rijden geschikt", "polarity": "0.3", "subjectivity": "0.5", "intensity": "1.1", "confidence": "0.7" }, "beroemd": { "form": "beroemd", "cornetto_id": "r_a-9222", "cornetto_synset_id": "n_a-503694", "wordnet_id": "a-01375831", "pos": "JJ", "sense": "vermaard", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "beroerd": { "form": "beroerd", "cornetto_id": "r_a-9700", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "lui", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "berooid": { "form": "berooid", "cornetto_id": "r_a-9225", "cornetto_synset_id": "n_a-503724", "wordnet_id": "a-02023287", "pos": "JJ", "sense": "arm", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "berouwvol": { "form": "berouwvol", "cornetto_id": "r_a-9540", "cornetto_synset_id": "n_a-527382", "wordnet_id": "a-00079262", "pos": "JJ", "sense": "vol berouw", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "berucht": { "form": "berucht", "cornetto_id": "r_a-9226", "cornetto_synset_id": "n_a-503727", "wordnet_id": "a-01983797", "pos": "JJ", "sense": "ve zin", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "beschaafd": { "form": "beschaafd", "cornetto_id": "r_a-9228", "cornetto_synset_id": "n_a-521523", "wordnet_id": "a-00741867", "pos": "JJ", "sense": "niet primitief", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "beschamend": { "form": "beschamend", "cornetto_id": "r_a-9230", "cornetto_synset_id": "n_a-509478", "wordnet_id": "a-00063277", "pos": "JJ", "sense": "om je over te schamen", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "bescheiden": { "form": "bescheiden", "cornetto_id": "r_a-9232", "cornetto_synset_id": "n_a-503737", "wordnet_id": "a-02340458", "pos": "JJ", "sense": "klein", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "bescheten": { "form": "bescheten", "cornetto_id": "r_a-9623", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "schijterig", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "beschikbaar": { "form": "beschikbaar", "cornetto_id": "r_a-9233", "cornetto_synset_id": "d_a-9181", "wordnet_id": "a-00183053", "pos": "JJ", "sense": "waarover men kan beschikken", "polarity": "0.4", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "beschonken": { "form": "beschonken", "cornetto_id": "r_a-9235", "cornetto_synset_id": "d_a-9244", "wordnet_id": "", "pos": "JJ", "sense": "dronken", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "beslist": { "form": "beslist", "cornetto_id": "r_a-9240", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "pertinent", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.1", "confidence": "1.0" }, "besmet": { "form": "besmet", "cornetto_id": "r_a-9449", "cornetto_synset_id": "n_a-503766", "wordnet_id": "a-02114296", "pos": "JJ", "sense": "aangestoken", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "besmettelijk": { "form": "besmettelijk", "cornetto_id": "r_a-9245", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "gauw vuil", "polarity": "-0.6", "subjectivity": "0.6", "intensity": "1.3", "confidence": "0.7" }, "besmuikt": { "form": "besmuikt", "cornetto_id": "r_a-9450", "cornetto_synset_id": "n_a-529135", "wordnet_id": "a-02088974", "pos": "JJ", "sense": "stiekem", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "besodemieterd": { "form": "besodemieterd", "cornetto_id": "d_a-27456", "cornetto_synset_id": "n_a-508241", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "bespottelijk": { "form": "bespottelijk", "cornetto_id": "r_a-9246", "cornetto_synset_id": "n_a-503782", "wordnet_id": "a-01840880", "pos": "JJ", "sense": "belachelijk", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.7", "confidence": "0.9" }, "best": { "form": "best", "cornetto_id": "r_a-9631", "cornetto_synset_id": "c_178", "wordnet_id": "", "pos": "JJ", "sense": "goed", "polarity": "0.6", "subjectivity": "1.0", "intensity": "0.9", "confidence": "1.0" }, "bestuurlijk": { "form": "bestuurlijk", "cornetto_id": "r_a-9454", "cornetto_synset_id": "n_a-503828", "wordnet_id": "a-02904075", "pos": "JJ", "sense": "administratief", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "bestuursrechtelijk": { "form": "bestuursrechtelijk", "cornetto_id": "r_a-9456", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "mbt. bestuursrecht", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "betaalbaar": { "form": "betaalbaar", "cornetto_id": "r_a-9251", "cornetto_synset_id": "n_a-503839", "wordnet_id": "a-00935103", "pos": "JJ", "sense": "niet te duur", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "betekenisloos": { "form": "betekenisloos", "cornetto_id": "r_a-9457", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "zonder betekenis", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "betekenisvol": { "form": "betekenisvol", "cornetto_id": "r_a-9458", "cornetto_synset_id": "n_a-508691", "wordnet_id": "a-00497148", "pos": "JJ", "sense": "veelbetekenend", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "beteuterd": { "form": "beteuterd", "cornetto_id": "r_a-9254", "cornetto_synset_id": "n_a-503260", "wordnet_id": "a-00252130", "pos": "JJ", "sense": "onthutst", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "betonnen": { "form": "betonnen", "cornetto_id": "r_a-9459", "cornetto_synset_id": "n_a-503859", "wordnet_id": "a-00013160", "pos": "JJ", "sense": "van beton", "polarity": "0.0", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "betraand": { "form": "betraand", "cornetto_id": "r_a-9548", "cornetto_synset_id": "n_a-503871", "wordnet_id": "a-00781644", "pos": "JJ", "sense": "vol tranen", "polarity": "-0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "betrekkelijk": { "form": "betrekkelijk", "cornetto_id": "r_a-9257", "cornetto_synset_id": "n_a-503873", "wordnet_id": "", "pos": "JJ", "sense": "relatief", "polarity": "0.0", "subjectivity": "0.5", "intensity": "0.9", "confidence": "1.0" }, "betrokken": { "form": "betrokken", "cornetto_id": "r_a-9259", "cornetto_synset_id": "d_a-9184", "wordnet_id": "a-00543603", "pos": "JJ", "sense": "over wie het gaat", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "betrouwbaar": { "form": "betrouwbaar", "cornetto_id": "r_a-9260", "cornetto_synset_id": "n_a-503878", "wordnet_id": "a-01982646", "pos": "JJ", "sense": "te vertrouwen", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "betwistbaar": { "form": "betwistbaar", "cornetto_id": "r_a-9549", "cornetto_synset_id": "n_a-531602", "wordnet_id": "a-00590390", "pos": "JJ", "sense": "aanvechtbaar", "polarity": "-0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "beurs": { "form": "beurs", "cornetto_id": "r_a-9262", "cornetto_synset_id": "n_a-522389", "wordnet_id": "a-00189017", "pos": "JJ", "sense": "overrijp", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "bevallig": { "form": "bevallig", "cornetto_id": "r_a-9263", "cornetto_synset_id": "n_a-501310", "wordnet_id": "", "pos": "JJ", "sense": "gracieus", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "bevindelijk": { "form": "bevindelijk", "cornetto_id": "r_a-9463", "cornetto_synset_id": "n_a-503934", "wordnet_id": "", "pos": "JJ", "sense": "vanuit godsdienstige beleving", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "bevredigend": { "form": "bevredigend", "cornetto_id": "d_a-401528", "cornetto_synset_id": "n_a-503957", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "bevreesd": { "form": "bevreesd", "cornetto_id": "r_a-9267", "cornetto_synset_id": "d_a-9168", "wordnet_id": "a-00077645", "pos": "JJ", "sense": "bang", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "beweegbaar": { "form": "beweegbaar", "cornetto_id": "r_a-9466", "cornetto_synset_id": "n_a-503974", "wordnet_id": "a-01523724", "pos": "JJ", "sense": "te bewegen", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "beweeglijk": { "form": "beweeglijk", "cornetto_id": "r_a-9634", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "flexibel", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "bewolkt": { "form": "bewolkt", "cornetto_id": "r_a-9273", "cornetto_synset_id": "d_a-9185", "wordnet_id": "a-00461971", "pos": "JJ", "sense": "met wolken bedekt", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "bewonderenswaardig": { "form": "bewonderenswaardig", "cornetto_id": "r_a-9469", "cornetto_synset_id": "n_a-524336", "wordnet_id": "a-02585545", "pos": "JJ", "sense": "respectabel", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "bewust": { "form": "bewust", "cornetto_id": "r_a-9276", "cornetto_synset_id": "n_a-503872", "wordnet_id": "a-00494409", "pos": "JJ", "sense": "desbetreffend", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.1", "confidence": "1.0" }, "bezeten": { "form": "bezeten", "cornetto_id": "r_a-9639", "cornetto_synset_id": "n_a-509996", "wordnet_id": "a-01464433", "pos": "JJ", "sense": "zeer vol zijn van", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "bezienswaardig": { "form": "bezienswaardig", "cornetto_id": "r_a-9470", "cornetto_synset_id": "n_a-504014", "wordnet_id": "", "pos": "JJ", "sense": "het bekijken waard", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "bezig": { "form": "bezig", "cornetto_id": "r_a-9283", "cornetto_synset_id": "d_a-9144", "wordnet_id": "a-00292937", "pos": "JJ", "sense": "in de weer", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "bezorgd": { "form": "bezorgd", "cornetto_id": "r_a-9288", "cornetto_synset_id": "n_a-535950", "wordnet_id": "a-00164681", "pos": "JJ", "sense": "vol zorg", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "bezweet": { "form": "bezweet", "cornetto_id": "r_a-9292", "cornetto_synset_id": "n_a-504037", "wordnet_id": "", "pos": "JJ", "sense": "met zweet", "polarity": "-0.2", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "bijbehorend": { "form": "bijbehorend", "cornetto_id": "r_a-9293", "cornetto_synset_id": "n_a-504086", "wordnet_id": "a-00122844", "pos": "JJ", "sense": "bijpassend", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "bijbels": { "form": "bijbels", "cornetto_id": "r_a-9294", "cornetto_synset_id": "n_a-504091", "wordnet_id": "a-01783158", "pos": "JJ", "sense": "mbt. de bijbel", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "bijbelvast": { "form": "bijbelvast", "cornetto_id": "r_a-9295", "cornetto_synset_id": "n_a-504095", "wordnet_id": "", "pos": "JJ", "sense": "goed thuis in de bijbel", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "bijgelovig": { "form": "bijgelovig", "cornetto_id": "r_a-9298", "cornetto_synset_id": "n_a-504108", "wordnet_id": "a-01927061", "pos": "JJ", "sense": "vol bijgeloof", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "bijgenaamd": { "form": "bijgenaamd", "cornetto_id": "r_a-9472", "cornetto_synset_id": "n_a-504109", "wordnet_id": "", "pos": "JJ", "sense": "met de bijnaam", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "0.9", "confidence": "0.7" }, "bijster": { "form": "bijster", "cornetto_id": "r_a-9301", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "kwijt", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.1", "confidence": "1.0" }, "bijtend": { "form": "bijtend", "cornetto_id": "r_a-9474", "cornetto_synset_id": "n_a-504134", "wordnet_id": "a-00587376", "pos": "JJ", "sense": "scherp", "polarity": "-0.4", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "bijvoeglijk": { "form": "bijvoeglijk", "cornetto_id": "r_a-9302", "cornetto_synset_id": "n_a-504141", "wordnet_id": "a-02936020", "pos": "JJ", "sense": "attributief", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "bijzonder": { "form": "bijzonder", "cornetto_id": "r_a-9305", "cornetto_synset_id": "n_a-504151", "wordnet_id": "a-01768724", "pos": "JJ", "sense": "speciaal", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.4", "confidence": "1.0" }, "bikkelhard": { "form": "bikkelhard", "cornetto_id": "r_a-9306", "cornetto_synset_id": "n_a-518422", "wordnet_id": "a-01507402", "pos": "JJ", "sense": "keihard", "polarity": "-0.1", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "bilateraal": { "form": "bilateraal", "cornetto_id": "r_a-9307", "cornetto_synset_id": "n_a-531600", "wordnet_id": "a-00102786", "pos": "JJ", "sense": "tweezijdig", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "billijk": { "form": "billijk", "cornetto_id": "r_a-9308", "cornetto_synset_id": "n_a-525316", "wordnet_id": "a-00218440", "pos": "JJ", "sense": "redelijk", "polarity": "0.3", "subjectivity": "0.9", "intensity": "0.9", "confidence": "1.0" }, "binnenlands": { "form": "binnenlands", "cornetto_id": "r_a-9310", "cornetto_synset_id": "n_a-519668", "wordnet_id": "a-00463784", "pos": "JJ", "sense": "niet buitenlands", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "biografisch": { "form": "biografisch", "cornetto_id": "r_a-9477", "cornetto_synset_id": "n_a-504218", "wordnet_id": "a-03048680", "pos": "JJ", "sense": "de levensloop betreffend", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "biologisch": { "form": "biologisch", "cornetto_id": "r_a-9312", "cornetto_synset_id": "n_a-519697", "wordnet_id": "a-01941383", "pos": "JJ", "sense": "natuurlijk", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "bitter": { "form": "bitter", "cornetto_id": "r_a-9318", "cornetto_synset_id": "d_a-9567", "wordnet_id": "a-00116940", "pos": "JJ", "sense": "verbitterd", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "bitterzoet": { "form": "bitterzoet", "cornetto_id": "r_a-9564", "cornetto_synset_id": "n_a-504257", "wordnet_id": "a-01362273", "pos": "JJ", "sense": "bitter en zoet", "polarity": "0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "bizar": { "form": "bizar", "cornetto_id": "r_a-9319", "cornetto_synset_id": "n_a-535905", "wordnet_id": "a-00221627", "pos": "JJ", "sense": "heel vreemd", "polarity": "-0.1", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "blabla": { "form": "blabla", "cornetto_id": "r_n-7479", "cornetto_synset_id": "n_n-504269", "wordnet_id": "n-06609503", "pos": "NN", "sense": "", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "bladstil": { "form": "bladstil", "cornetto_id": "r_a-9320", "cornetto_synset_id": "n_a-534928", "wordnet_id": "a-00303579", "pos": "JJ", "sense": "zeer windstil", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "blanco": { "form": "blanco", "cornetto_id": "r_a-9321", "cornetto_synset_id": "n_a-521250", "wordnet_id": "a-00500889", "pos": "JJ", "sense": "oningevuld", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "blank": { "form": "blank", "cornetto_id": "r_a-9323", "cornetto_synset_id": "c_388", "wordnet_id": "a-00243180", "pos": "JJ", "sense": "met een witte huidskleur", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "blasfemisch": { "form": "blasfemisch", "cornetto_id": "r_a-9481", "cornetto_synset_id": "n_a-511163", "wordnet_id": "a-02012748", "pos": "JJ", "sense": "spottend", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.3", "confidence": "0.7" }, "blauw": { "form": "blauw", "cornetto_id": "r_a-9324", "cornetto_synset_id": "d_a-9193", "wordnet_id": "a-00370869", "pos": "JJ", "sense": "met de kleur blauw", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "blij": { "form": "blij", "cornetto_id": "r_a-9650", "cornetto_synset_id": "n_a-532410", "wordnet_id": "a-01800349", "pos": "JJ", "sense": "verheugend", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "blijkbaar": { "form": "blijkbaar", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "blijmoedig": { "form": "blijmoedig", "cornetto_id": "r_a-9332", "cornetto_synset_id": "c_339", "wordnet_id": "a-00271022", "pos": "JJ", "sense": "opgewekt", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "bliksems": { "form": "bliksems", "cornetto_id": "r_a-9334", "cornetto_synset_id": "n_a-529550", "wordnet_id": "a-01128406", "pos": "JJ", "sense": "donders", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "bliksemsnel": { "form": "bliksemsnel", "cornetto_id": "r_a-9485", "cornetto_synset_id": "n_a-504345", "wordnet_id": "", "pos": "JJ", "sense": "zeer snel", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.6", "confidence": "0.7" }, "blind": { "form": "blind", "cornetto_id": "r_a-9336", "cornetto_synset_id": "d_a-9473", "wordnet_id": "a-01748318", "pos": "JJ", "sense": "niet te zien", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "1.0" }, "blits": { "form": "blits", "cornetto_id": "r_a-9338", "cornetto_synset_id": "n_a-504364", "wordnet_id": "a-00609564", "pos": "JJ", "sense": "opvallend modern", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "bloeddoorlopen": { "form": "bloeddoorlopen", "cornetto_id": "r_a-9567", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "(van ogen) rood", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "bloederig": { "form": "bloederig", "cornetto_id": "r_a-9342", "cornetto_synset_id": "n_a-504377", "wordnet_id": "a-00247993", "pos": "JJ", "sense": "met veel bloed", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "bloedheet": { "form": "bloedheet", "cornetto_id": "r_a-9486", "cornetto_synset_id": "n_a-528097", "wordnet_id": "a-00268383", "pos": "JJ", "sense": "snikheet", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "bloedig": { "form": "bloedig", "cornetto_id": "r_a-9343", "cornetto_synset_id": "n_a-504380", "wordnet_id": "a-00247439", "pos": "JJ", "sense": "waarbij bloed vloeit", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "bloedmooi": { "form": "bloedmooi", "cornetto_id": "r_a-9568", "cornetto_synset_id": "n_a-503339", "wordnet_id": "a-00218837", "pos": "JJ", "sense": "beeldschoon", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "bloedserieus": { "form": "bloedserieus", "cornetto_id": "d_a-32945", "cornetto_synset_id": "n_a-504393", "wordnet_id": "a-01042491", "pos": "JJ", "sense": "", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "bloedstollend": { "form": "bloedstollend", "cornetto_id": "r_a-9488", "cornetto_synset_id": "n_a-507232", "wordnet_id": "", "pos": "JJ", "sense": "spannend", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.4", "confidence": "1.0" }, "bloemrijk": { "form": "bloemrijk", "cornetto_id": "r_a-9652", "cornetto_synset_id": "n_a-504427", "wordnet_id": "a-02017141", "pos": "JJ", "sense": "beeldrijk", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "blokkade": { "form": "blokkade", "cornetto_id": "r_n-7668", "cornetto_synset_id": "d_n-21626", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "blokkades": { "form": "blokkades", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NNS", "sense": "", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "blokkeren": { "form": "blokkeren", "cornetto_id": "r_v-1767", "cornetto_synset_id": "d_v-1574", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "blond": { "form": "blond", "cornetto_id": "r_a-9345", "cornetto_synset_id": "d_a-9196", "wordnet_id": "a-00177547", "pos": "JJ", "sense": "lichtgeel (vooral van haar)", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "bloot": { "form": "bloot", "cornetto_id": "r_a-9346", "cornetto_synset_id": "d_a-9414", "wordnet_id": "a-00457998", "pos": "JJ", "sense": "naakt", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "blut": { "form": "blut", "cornetto_id": "r_a-9347", "cornetto_synset_id": "n_a-504469", "wordnet_id": "a-02023287", "pos": "JJ", "sense": "platzak", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "bochtig": { "form": "bochtig", "cornetto_id": "r_a-9489", "cornetto_synset_id": "n_a-504474", "wordnet_id": "a-01563713", "pos": "JJ", "sense": "met veel bochten", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "bodemloos": { "form": "bodemloos", "cornetto_id": "r_a-9348", "cornetto_synset_id": "n_a-504481", "wordnet_id": "a-00690892", "pos": "JJ", "sense": "zonder bodem", "polarity": "0.3", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "boeiend": { "form": "boeiend", "cornetto_id": "r_a-9349", "cornetto_synset_id": "n_a-513883", "wordnet_id": "a-00166753", "pos": "JJ", "sense": "fascinerend", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "boekhoudkundig": { "form": "boekhoudkundig", "cornetto_id": "r_a-9491", "cornetto_synset_id": "n_a-504526", "wordnet_id": "", "pos": "JJ", "sense": "mbt. het boekhouden", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "boers": { "form": "boers", "cornetto_id": "r_a-9350", "cornetto_synset_id": "n_a-517506", "wordnet_id": "a-00642725", "pos": "JJ", "sense": "lomp", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "bol": { "form": "bol", "cornetto_id": "r_a-9355", "cornetto_synset_id": "d_a-9198", "wordnet_id": "a-00536416", "pos": "JJ", "sense": "bolvormig", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "bombastisch": { "form": "bombastisch", "cornetto_id": "r_a-9356", "cornetto_synset_id": "n_a-504613", "wordnet_id": "a-00073465", "pos": "JJ", "sense": "hoogdravend", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "bomvol": { "form": "bomvol", "cornetto_id": "r_a-9493", "cornetto_synset_id": "n_a-529021", "wordnet_id": "a-00560100", "pos": "JJ", "sense": "stampvol", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "bondig": { "form": "bondig", "cornetto_id": "r_a-9358", "cornetto_synset_id": "d_a-9176", "wordnet_id": "a-00004413", "pos": "JJ", "sense": "kernachtig", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "boordevol": { "form": "boordevol", "cornetto_id": "r_a-9495", "cornetto_synset_id": "n_a-524566", "wordnet_id": "a-00537339", "pos": "JJ", "sense": "helemaal vol", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.1", "confidence": "1.0" }, "boos": { "form": "boos", "cornetto_id": "r_a-9362", "cornetto_synset_id": "c_254", "wordnet_id": "a-00225564", "pos": "JJ", "sense": "boosaardig", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "borstelig": { "form": "borstelig", "cornetto_id": "r_a-9496", "cornetto_synset_id": "n_a-526430", "wordnet_id": "a-00145083", "pos": "JJ", "sense": "als een borstel", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "bot": { "form": "bot", "cornetto_id": "r_a-9365", "cornetto_synset_id": "n_a-504754", "wordnet_id": "a-00036998", "pos": "JJ", "sense": "lomp", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "bovenaards": { "form": "bovenaards", "cornetto_id": "r_a-9654", "cornetto_synset_id": "n_a-504843", "wordnet_id": "a-01574446", "pos": "JJ", "sense": "hemels", "polarity": "0.1", "subjectivity": "0.7", "intensity": "1.3", "confidence": "0.9" }, "bovengenoemd": { "form": "bovengenoemd", "cornetto_id": "r_a-9370", "cornetto_synset_id": "n_a-504850", "wordnet_id": "a-00125993", "pos": "JJ", "sense": "eerder genoemd (in een tekst)", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.9" }, "bovenmenselijk": { "form": "bovenmenselijk", "cornetto_id": "r_a-9372", "cornetto_synset_id": "n_a-504842", "wordnet_id": "a-01260873", "pos": "JJ", "sense": "meer dan menselijk", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "bovennatuurlijk": { "form": "bovennatuurlijk", "cornetto_id": "r_a-9373", "cornetto_synset_id": "n_a-504843", "wordnet_id": "a-01574446", "pos": "JJ", "sense": "boven het natuurlijke", "polarity": "0.1", "subjectivity": "0.7", "intensity": "1.3", "confidence": "1.0" }, "bovenst": { "form": "bovenst", "cornetto_id": "r_a-9502", "cornetto_synset_id": "n_a-504849", "wordnet_id": "a-02440461", "pos": "JJ", "sense": "hoogst", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.3", "confidence": "0.7" }, "bovenstaand": { "form": "bovenstaand", "cornetto_id": "r_a-9374", "cornetto_synset_id": "n_a-504850", "wordnet_id": "a-00125993", "pos": "JJ", "sense": "hierboven", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "bovenvermeld": { "form": "bovenvermeld", "cornetto_id": "r_a-9503", "cornetto_synset_id": "n_a-504850", "wordnet_id": "a-00125993", "pos": "JJ", "sense": "bovengenoemd", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.9" }, "boycot": { "form": "boycot", "cornetto_id": "r_n-8341", "cornetto_synset_id": "d_n-27338", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "boycotten": { "form": "boycotten", "cornetto_id": "r_v-1850", "cornetto_synset_id": "d_v-1644", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "braaf": { "form": "braaf", "cornetto_id": "r_a-9375", "cornetto_synset_id": "n_a-511204", "wordnet_id": "a-01372049", "pos": "JJ", "sense": "zoet", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "braak": { "form": "braak", "cornetto_id": "r_a-9376", "cornetto_synset_id": "d_n-39843", "wordnet_id": "", "pos": "JJ", "sense": "onbebouwd", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "brak": { "form": "brak", "cornetto_id": "r_a-9377", "cornetto_synset_id": "n_a-504882", "wordnet_id": "a-01074062", "pos": "JJ", "sense": "zilt", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "brandend": { "form": "brandend", "cornetto_id": "r_a-9506", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "heet", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "branderig": { "form": "branderig", "cornetto_id": "r_a-9378", "cornetto_synset_id": "n_a-504886", "wordnet_id": "a-00059028", "pos": "JJ", "sense": "naar prikkelend", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.4", "confidence": "0.7" }, "breed": { "form": "breed", "cornetto_id": "r_a-9380", "cornetto_synset_id": "c_291", "wordnet_id": "a-02560548", "pos": "JJ", "sense": "niet smal", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "breedgebouwd": { "form": "breedgebouwd", "cornetto_id": "r_a-9574", "cornetto_synset_id": "d_a-9272", "wordnet_id": "a-02038126", "pos": "JJ", "sense": "fors", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.3", "confidence": "0.7" }, "breedgeschouderd": { "form": "breedgeschouderd", "cornetto_id": "r_a-9575", "cornetto_synset_id": "n_a-504942", "wordnet_id": "a-02038126", "pos": "JJ", "sense": "met brede schouders", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "briljant": { "form": "briljant", "cornetto_id": "r_a-9384", "cornetto_synset_id": "n_a-510334", "wordnet_id": "a-00402855", "pos": "JJ", "sense": "geniaal", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "broederlijk": { "form": "broederlijk", "cornetto_id": "r_a-9386", "cornetto_synset_id": "n_a-505001", "wordnet_id": "a-00291471", "pos": "JJ", "sense": "zoals broeders doen", "polarity": "0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "broeierig": { "form": "broeierig", "cornetto_id": "r_a-9507", "cornetto_synset_id": "n_a-505007", "wordnet_id": "a-01250393", "pos": "JJ", "sense": "drukkend warm", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "bronzen": { "form": "bronzen", "cornetto_id": "r_a-9509", "cornetto_synset_id": "n_a-505033", "wordnet_id": "a-00371945", "pos": "JJ", "sense": "van brons", "polarity": "0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "broodmager": { "form": "broodmager", "cornetto_id": "r_a-9577", "cornetto_synset_id": "n_a-505041", "wordnet_id": "a-00990192", "pos": "JJ", "sense": "heel mager", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "broodnuchter": { "form": "broodnuchter", "cornetto_id": "r_a-9578", "cornetto_synset_id": "n_a-505044", "wordnet_id": "", "pos": "JJ", "sense": "geheel nuchter", "polarity": "0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "broos": { "form": "broos", "cornetto_id": "r_a-9391", "cornetto_synset_id": "n_a-504946", "wordnet_id": "a-00708017", "pos": "JJ", "sense": "zeer breekbaar", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "bruin": { "form": "bruin", "cornetto_id": "r_a-9394", "cornetto_synset_id": "n_a-505079", "wordnet_id": "a-00369504", "pos": "JJ", "sense": "bruingekleurd", "polarity": "-0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "brutaal": { "form": "brutaal", "cornetto_id": "r_a-9395", "cornetto_synset_id": "d_a-9207", "wordnet_id": "a-00155720", "pos": "JJ", "sense": "vrijpostig", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "bruusk": { "form": "bruusk", "cornetto_id": "r_a-9399", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "abrupt", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "bruut": { "form": "bruut", "cornetto_id": "r_a-9400", "cornetto_synset_id": "n_a-510816", "wordnet_id": "a-00248251", "pos": "JJ", "sense": "ruw", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "buiig": { "form": "buiig", "cornetto_id": "r_a-9402", "cornetto_synset_id": "n_a-505116", "wordnet_id": "a-00304670", "pos": "JJ", "sense": "regenachtig", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "buikig": { "form": "buikig", "cornetto_id": "r_a-9403", "cornetto_synset_id": "d_a-9231", "wordnet_id": "a-00987180", "pos": "JJ", "sense": "corpulent", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "buitenaards": { "form": "buitenaards", "cornetto_id": "r_a-9404", "cornetto_synset_id": "n_a-505133", "wordnet_id": "a-02780355", "pos": "JJ", "sense": "van buiten de aarde", "polarity": "0.1", "subjectivity": "0.7", "intensity": "1.3", "confidence": "0.7" }, "buitenechtelijk": { "form": "buitenechtelijk", "cornetto_id": "r_a-9405", "cornetto_synset_id": "n_a-505145", "wordnet_id": "a-01403760", "pos": "JJ", "sense": "buiten het huwelijk", "polarity": "-0.2", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "buitengewoon": { "form": "buitengewoon", "cornetto_id": "r_a-9407", "cornetto_synset_id": "d_a-9188", "wordnet_id": "a-00966477", "pos": "JJ", "sense": "bijzonder", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.9", "confidence": "1.0" }, "buitenissig": { "form": "buitenissig", "cornetto_id": "r_a-9408", "cornetto_synset_id": "n_a-535905", "wordnet_id": "a-00221627", "pos": "JJ", "sense": "excentriek", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "buitenlands": { "form": "buitenlands", "cornetto_id": "r_a-9410", "cornetto_synset_id": "n_a-533835", "wordnet_id": "a-00966753", "pos": "JJ", "sense": "mbt. het buitenland", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "buitenmatig": { "form": "buitenmatig", "cornetto_id": "d_a-39296", "cornetto_synset_id": "c_681", "wordnet_id": "a-01385255", "pos": "JJ", "sense": "", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.7", "confidence": "0.7" }, "buitensporig": { "form": "buitensporig", "cornetto_id": "r_a-9412", "cornetto_synset_id": "n_a-522385", "wordnet_id": "a-00880586", "pos": "JJ", "sense": "excessief", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.2", "confidence": "0.7" }, "calvinistisch": { "form": "calvinistisch", "cornetto_id": "r_a-9713", "cornetto_synset_id": "n_a-505318", "wordnet_id": "a-02952975", "pos": "JJ", "sense": "streng en serieus", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "capabel": { "form": "capabel", "cornetto_id": "r_a-9714", "cornetto_synset_id": "d_a-9373", "wordnet_id": "a-00178811", "pos": "JJ", "sense": "bekwaam", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "catastrofaal": { "form": "catastrofaal", "cornetto_id": "r_a-9716", "cornetto_synset_id": "n_a-520118", "wordnet_id": "a-00586183", "pos": "JJ", "sense": "rampzalig", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.1", "confidence": "1.0" }, "categoriaal": { "form": "categoriaal", "cornetto_id": "r_a-9806", "cornetto_synset_id": "n_a-505409", "wordnet_id": "a-02683869", "pos": "JJ", "sense": "naar categorie ingedeeld", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "categorisch": { "form": "categorisch", "cornetto_id": "r_a-9717", "cornetto_synset_id": "n_a-529191", "wordnet_id": "", "pos": "JJ", "sense": "zonder twijfel", "polarity": "-0.1", "subjectivity": "0.9", "intensity": "1.7", "confidence": "0.7" }, "causaal": { "form": "causaal", "cornetto_id": "r_a-9718", "cornetto_synset_id": "n_a-521831", "wordnet_id": "a-00322457", "pos": "JJ", "sense": "oorzakelijk", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "centraal": { "form": "centraal", "cornetto_id": "r_a-9721", "cornetto_synset_id": "n_a-505452", "wordnet_id": "a-00330728", "pos": "JJ", "sense": "in of uit het centrum", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "chagrijnig": { "form": "chagrijnig", "cornetto_id": "r_a-9723", "cornetto_synset_id": "d_a-9521", "wordnet_id": "a-00703615", "pos": "JJ", "sense": "uit zijn humeur", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "chaotisch": { "form": "chaotisch", "cornetto_id": "r_a-9724", "cornetto_synset_id": "d_a-9578", "wordnet_id": "a-00436115", "pos": "JJ", "sense": "ordeloos", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "charismatisch": { "form": "charismatisch", "cornetto_id": "r_a-9812", "cornetto_synset_id": "n_a-505493", "wordnet_id": "a-00167077", "pos": "JJ", "sense": "met bijzondere uitstraling", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "charitatief": { "form": "charitatief", "cornetto_id": "r_a-9725", "cornetto_synset_id": "n_a-517266", "wordnet_id": "a-00223802", "pos": "JJ", "sense": "liefdadig", "polarity": "0.5", "subjectivity": "0.6", "intensity": "1.2", "confidence": "0.7" }, "charlatan": { "form": "charlatan", "cornetto_id": "r_n-9275", "cornetto_synset_id": "d_n-27465", "wordnet_id": "n-10334782", "pos": "NN", "sense": "", "polarity": "-0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "charlatanisme": { "form": "charlatanisme", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "charmant": { "form": "charmant", "cornetto_id": "r_a-9726", "cornetto_synset_id": "n_a-505496", "wordnet_id": "a-00166146", "pos": "JJ", "sense": "bekoorlijk", "polarity": "0.2", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "chassidisch": { "form": "chassidisch", "cornetto_id": "r_a-9847", "cornetto_synset_id": "n_a-505505", "wordnet_id": "", "pos": "JJ", "sense": "volgens Joodse mystieke stroming", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "chauvinistisch": { "form": "chauvinistisch", "cornetto_id": "r_a-9727", "cornetto_synset_id": "n_a-519670", "wordnet_id": "a-01568092", "pos": "JJ", "sense": "volgens chauvinisme", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "chic": { "form": "chic", "cornetto_id": "r_a-9729", "cornetto_synset_id": "n_a-505528", "wordnet_id": "a-00971506", "pos": "JJ", "sense": "elegant", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "chloorhoudend": { "form": "chloorhoudend", "cornetto_id": "r_a-9848", "cornetto_synset_id": "n_a-505538", "wordnet_id": "", "pos": "JJ", "sense": "met chloor erin", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "cholerisch": { "form": "cholerisch", "cornetto_id": "r_a-9731", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "driftig", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "choreografisch": { "form": "choreografisch", "cornetto_id": "r_a-9851", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "mbt. choreografie", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "christelijk": { "form": "christelijk", "cornetto_id": "r_a-9732", "cornetto_synset_id": "n_a-505556", "wordnet_id": "a-02710825", "pos": "JJ", "sense": "te maken hebbend met het christendom", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "christen-democratisch": { "form": "christen-democratisch", "cornetto_id": "r_a-9813", "cornetto_synset_id": "n_a-505560", "wordnet_id": "", "pos": "JJ", "sense": "democratisch op christelijke grondslag", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "chronisch": { "form": "chronisch", "cornetto_id": "r_a-9733", "cornetto_synset_id": "n_a-505577", "wordnet_id": "", "pos": "JJ", "sense": "voortdurend", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "chronologisch": { "form": "chronologisch", "cornetto_id": "r_a-9734", "cornetto_synset_id": "n_a-505581", "wordnet_id": "a-02956880", "pos": "JJ", "sense": "volgens chronologie", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "cinematografisch": { "form": "cinematografisch", "cornetto_id": "r_a-9815", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "mbt. de filmkunst", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "civiel": { "form": "civiel", "cornetto_id": "r_a-9735", "cornetto_synset_id": "n_a-505230", "wordnet_id": "a-01517921", "pos": "JJ", "sense": "niet-militair en niet-kerkelijk", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "civielrechtelijk": { "form": "civielrechtelijk", "cornetto_id": "r_a-9817", "cornetto_synset_id": "n_a-505646", "wordnet_id": "a-00642379", "pos": "JJ", "sense": "volgens het burgerlijk recht", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "clandestien": { "form": "clandestien", "cornetto_id": "r_a-9736", "cornetto_synset_id": "n_a-513378", "wordnet_id": "a-00028984", "pos": "JJ", "sense": "illegaal", "polarity": "-0.3", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "classicistisch": { "form": "classicistisch", "cornetto_id": "r_a-9818", "cornetto_synset_id": "n_a-505655", "wordnet_id": "a-02919986", "pos": "JJ", "sense": "volgens het classicisme", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "clash": { "form": "clash", "cornetto_id": "d_n-48552", "cornetto_synset_id": "n_n-505653", "wordnet_id": "n-00959376", "pos": "FW", "sense": "", "polarity": "-0.2", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "claustrofobisch": { "form": "claustrofobisch", "cornetto_id": "r_a-9857", "cornetto_synset_id": "n_a-505659", "wordnet_id": "a-00079356", "pos": "JJ", "sense": "met claustrofobie", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "clever": { "form": "clever", "cornetto_id": "d_a-48685", "cornetto_synset_id": "n_a-527945", "wordnet_id": "a-00092136", "pos": "JJ", "sense": "", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "cliché": { "form": "cliché", "cornetto_id": "r_n-9442", "cornetto_synset_id": "d_n-11303", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "clichématig": { "form": "clichématig", "cornetto_id": "r_a-9819", "cornetto_synset_id": "n_a-501778", "wordnet_id": "a-01688757", "pos": "JJ", "sense": "afgezaagd", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "clinch": { "form": "clinch", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.2", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "close": { "form": "close", "cornetto_id": "r_a-9740", "cornetto_synset_id": "d_a-9353", "wordnet_id": "a-00477284", "pos": "JJ", "sense": "dichtbij", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.3", "confidence": "0.7" }, "coherent": { "form": "coherent", "cornetto_id": "r_a-9743", "cornetto_synset_id": "n_a-526545", "wordnet_id": "a-00053384", "pos": "JJ", "sense": "samenhangend", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "collectief": { "form": "collectief", "cornetto_id": "r_a-9744", "cornetto_synset_id": "n_a-510254", "wordnet_id": "a-00492677", "pos": "JJ", "sense": "met z'n allen", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "collegiaal": { "form": "collegiaal", "cornetto_id": "r_a-9745", "cornetto_synset_id": "n_a-505746", "wordnet_id": "a-00291471", "pos": "JJ", "sense": "zoals collega's doen", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "comfortabel": { "form": "comfortabel", "cornetto_id": "r_a-9879", "cornetto_synset_id": "n_a-505776", "wordnet_id": "a-00476819", "pos": "JJ", "sense": "ruim", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "commercieel": { "form": "commercieel", "cornetto_id": "r_a-9747", "cornetto_synset_id": "d_a-9621", "wordnet_id": "a-00483146", "pos": "JJ", "sense": "mbt. de handel", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "communicatief": { "form": "communicatief", "cornetto_id": "r_a-9880", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "mededeelzaam", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "communistisch": { "form": "communistisch", "cornetto_id": "r_a-9749", "cornetto_synset_id": "n_a-505804", "wordnet_id": "a-02874876", "pos": "JJ", "sense": "volgens het communisme", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "competent": { "form": "competent", "cornetto_id": "r_a-9751", "cornetto_synset_id": "d_a-9373", "wordnet_id": "a-00178811", "pos": "JJ", "sense": "bekwaam", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "compleet": { "form": "compleet", "cornetto_id": "r_a-9752", "cornetto_synset_id": "n_a-505819", "wordnet_id": "a-00005107", "pos": "JJ", "sense": "volledig", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.4", "confidence": "1.0" }, "complex": { "form": "complex", "cornetto_id": "r_a-9754", "cornetto_synset_id": "d_a-9348", "wordnet_id": "a-02176178", "pos": "JJ", "sense": "samengesteld, ingewikkeld", "polarity": "-0.1", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "compositorisch": { "form": "compositorisch", "cornetto_id": "r_a-9824", "cornetto_synset_id": "d_a-9216", "wordnet_id": "a-01331459", "pos": "JJ", "sense": "de compositie betreffend", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "computergestuurd": { "form": "computergestuurd", "cornetto_id": "r_a-9827", "cornetto_synset_id": "n_a-505843", "wordnet_id": "", "pos": "JJ", "sense": "door een computer gecontroleerd", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "conceptueel": { "form": "conceptueel", "cornetto_id": "r_a-9881", "cornetto_synset_id": "n_a-501464", "wordnet_id": "a-00012362", "pos": "JJ", "sense": "het begrip betreffende", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "concreet": { "form": "concreet", "cornetto_id": "r_a-9758", "cornetto_synset_id": "n_a-505886", "wordnet_id": "a-01618376", "pos": "JJ", "sense": "duidelijk", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "concurrerend": { "form": "concurrerend", "cornetto_id": "r_a-9828", "cornetto_synset_id": "n_a-505892", "wordnet_id": "a-00083003", "pos": "JJ", "sense": "scherp", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "confessioneel": { "form": "confessioneel", "cornetto_id": "r_a-9759", "cornetto_synset_id": "n_a-505911", "wordnet_id": "a-01689880", "pos": "JJ", "sense": "christelijk", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "confronterend": { "form": "confronterend", "cornetto_id": "r_a-9862", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "iets tegenover iets stellend", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "congruent": { "form": "congruent", "cornetto_id": "r_a-9940", "cornetto_synset_id": "d_a-9293", "wordnet_id": "a-01546222", "pos": "JJ", "sense": "overeenkomend", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "conjunctureel": { "form": "conjunctureel", "cornetto_id": "r_a-9830", "cornetto_synset_id": "n_a-505936", "wordnet_id": "a-00675701", "pos": "JJ", "sense": "de conjunctuur betreffend", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "consciëntieus": { "form": "consciëntieus", "cornetto_id": "r_a-9763", "cornetto_synset_id": "n_a-519716", "wordnet_id": "a-00021766", "pos": "JJ", "sense": "zorgvuldig", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "consequent": { "form": "consequent", "cornetto_id": "r_a-9941", "cornetto_synset_id": "n_a-505948", "wordnet_id": "a-00464513", "pos": "JJ", "sense": "zichzelf gelijk blijvend", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "conservatief": { "form": "conservatief", "cornetto_id": "r_a-9765", "cornetto_synset_id": "d_a-9217", "wordnet_id": "a-00574422", "pos": "JJ", "sense": "behoudend", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "consistent": { "form": "consistent", "cornetto_id": "r_a-9766", "cornetto_synset_id": "n_a-505953", "wordnet_id": "a-00434597", "pos": "JJ", "sense": "zonder innerlijke tegenspraak", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "constant": { "form": "constant", "cornetto_id": "r_a-9767", "cornetto_synset_id": "n_a-521559", "wordnet_id": "a-00347400", "pos": "JJ", "sense": "onveranderlijk", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "constructief": { "form": "constructief", "cornetto_id": "r_a-9769", "cornetto_synset_id": "n_a-521861", "wordnet_id": "a-01817500", "pos": "JJ", "sense": "opbouwend", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "contemporain": { "form": "contemporain", "cornetto_id": "r_a-9833", "cornetto_synset_id": "n_a-512180", "wordnet_id": "a-00666058", "pos": "JJ", "sense": "eigentijds", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "content": { "form": "content", "cornetto_id": "r_a-9772", "cornetto_synset_id": "d_a-9546", "wordnet_id": "a-00362467", "pos": "JJ", "sense": "tevreden", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "contingent": { "form": "contingent", "cornetto_id": "d_a-51652", "cornetto_synset_id": "n_a-530945", "wordnet_id": "", "pos": "JJ", "sense": "toevallig", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "continu": { "form": "continu", "cornetto_id": "r_a-9774", "cornetto_synset_id": "n_a-520586", "wordnet_id": "a-00291338", "pos": "JJ", "sense": "ononderbroken", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "controversieel": { "form": "controversieel", "cornetto_id": "r_a-9776", "cornetto_synset_id": "n_a-520545", "wordnet_id": "a-00601783", "pos": "JJ", "sense": "omstreden", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "conventioneel": { "form": "conventioneel", "cornetto_id": "r_a-9884", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "onorigineel", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "cool": { "form": "cool", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "copieus": { "form": "copieus", "cornetto_id": "r_a-9781", "cornetto_synset_id": "n_a-506072", "wordnet_id": "a-00013887", "pos": "JJ", "sense": "overvloedig", "polarity": "0.6", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "corduroy": { "form": "corduroy", "cornetto_id": "r_a-9872", "cornetto_synset_id": "n_a-506079", "wordnet_id": "a-02240275", "pos": "JJ", "sense": "van ribfluweel gemaakt", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "corpulent": { "form": "corpulent", "cornetto_id": "r_a-9782", "cornetto_synset_id": "d_a-9231", "wordnet_id": "a-00987180", "pos": "JJ", "sense": "gezet", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "correct": { "form": "correct", "cornetto_id": "r_a-9784", "cornetto_synset_id": "n_a-510405", "wordnet_id": "a-01878870", "pos": "JJ", "sense": "zoals het hoort", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "cosmetisch": { "form": "cosmetisch", "cornetto_id": "r_a-9873", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "de cosmetica betreffende", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "coulant": { "form": "coulant", "cornetto_id": "r_a-9787", "cornetto_synset_id": "d_a-9350", "wordnet_id": "a-00437539", "pos": "JJ", "sense": "soepel", "polarity": "0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "courant": { "form": "courant", "cornetto_id": "r_a-9788", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "gangbaar", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "coöperatief": { "form": "coöperatief", "cornetto_id": "r_a-9780", "cornetto_synset_id": "n_a-505706", "wordnet_id": "a-00513388", "pos": "JJ", "sense": "op samenwerking gebaseerd", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "crazy": { "form": "crazy", "cornetto_id": "r_a-9790", "cornetto_synset_id": "n_a-509995", "wordnet_id": "a-01836766", "pos": "JJ", "sense": "gek", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "creatief": { "form": "creatief", "cornetto_id": "r_a-9791", "cornetto_synset_id": "n_a-506150", "wordnet_id": "a-00643863", "pos": "JJ", "sense": "scheppend", "polarity": "0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "crimineel": { "form": "crimineel", "cornetto_id": "r_a-9945", "cornetto_synset_id": "n_a-529626", "wordnet_id": "a-01402763", "pos": "JJ", "sense": "strafrechtelijk", "polarity": "-0.2", "subjectivity": "0.3", "intensity": "1.3", "confidence": "1.0" }, "criminologisch": { "form": "criminologisch", "cornetto_id": "r_a-9874", "cornetto_synset_id": "n_a-506168", "wordnet_id": "a-02919863", "pos": "JJ", "sense": "van de criminologie", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "cru": { "form": "cru", "cornetto_id": "r_a-9793", "cornetto_synset_id": "n_a-525114", "wordnet_id": "a-00619808", "pos": "JJ", "sense": "bot", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "cruciaal": { "form": "cruciaal", "cornetto_id": "r_a-9794", "cornetto_synset_id": "n_a-503757", "wordnet_id": "a-00656507", "pos": "JJ", "sense": "beslissend", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "cryptisch": { "form": "cryptisch", "cornetto_id": "r_a-9795", "cornetto_synset_id": "d_a-9495", "wordnet_id": "a-00102930", "pos": "JJ", "sense": "duister", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "culinair": { "form": "culinair", "cornetto_id": "r_a-9796", "cornetto_synset_id": "n_a-506204", "wordnet_id": "a-02707659", "pos": "JJ", "sense": "mbt. de kookkunst", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "cultureel": { "form": "cultureel", "cornetto_id": "r_a-9797", "cornetto_synset_id": "n_a-506208", "wordnet_id": "a-02248693", "pos": "JJ", "sense": "mbt. cultuur", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "cultuurhistorisch": { "form": "cultuurhistorisch", "cornetto_id": "r_a-9838", "cornetto_synset_id": "n_a-506216", "wordnet_id": "", "pos": "JJ", "sense": "mbt. Cultuurgeschiedenis", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "cumulatief": { "form": "cumulatief", "cornetto_id": "r_a-9798", "cornetto_synset_id": "n_a-521873", "wordnet_id": "a-00029769", "pos": "JJ", "sense": "steeds bij het totaal opgeteld", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "curatief": { "form": "curatief", "cornetto_id": "r_a-9840", "cornetto_synset_id": "n_a-510333", "wordnet_id": "a-01165943", "pos": "JJ", "sense": "genezend", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "curieus": { "form": "curieus", "cornetto_id": "r_a-9799", "cornetto_synset_id": "n_a-533834", "wordnet_id": "a-00488857", "pos": "JJ", "sense": "opmerkelijk", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.4", "confidence": "1.0" }, "cursief": { "form": "cursief", "cornetto_id": "r_a-9801", "cornetto_synset_id": "n_a-506240", "wordnet_id": "a-02285035", "pos": "JJ", "sense": "schuin gedrukt", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "cynisch": { "form": "cynisch", "cornetto_id": "r_a-9803", "cornetto_synset_id": "d_a-9220", "wordnet_id": "a-02463582", "pos": "JJ", "sense": "bitter", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "cyrillisch": { "form": "cyrillisch", "cornetto_id": "r_a-9841", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "mbt. soort schrift", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "daadwerkelijk": { "form": "daadwerkelijk", "cornetto_id": "r_a-9990", "cornetto_synset_id": "n_a-506270", "wordnet_id": "a-00031974", "pos": "JJ", "sense": "metterdaad", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.4", "confidence": "1.0" }, "daaropvolgend": { "form": "daaropvolgend", "cornetto_id": "r_a-10167", "cornetto_synset_id": "n_a-506288", "wordnet_id": "a-00122626", "pos": "JJ", "sense": "wat volgt op", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "dagelijks": { "form": "dagelijks", "cornetto_id": "r_a-9994", "cornetto_synset_id": "n_a-506314", "wordnet_id": "a-01674242", "pos": "JJ", "sense": "(alle)daags", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "dagenlang": { "form": "dagenlang", "cornetto_id": "r_a-10168", "cornetto_synset_id": "n_a-506315", "wordnet_id": "", "pos": "JJ", "sense": "dagen durend", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "dagvers": { "form": "dagvers", "cornetto_id": "r_a-10242", "cornetto_synset_id": "n_a-506344", "wordnet_id": "", "pos": "JJ", "sense": "heel vers", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "dakloos": { "form": "dakloos", "cornetto_id": "r_a-9995", "cornetto_synset_id": "n_a-506356", "wordnet_id": "a-01050603", "pos": "JJ", "sense": "zonder onderdak", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "danig": { "form": "danig", "cornetto_id": "r_a-10169", "cornetto_synset_id": "n_r-509139", "wordnet_id": "a-00624026", "pos": "RB", "sense": "duchtig", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.4", "confidence": "1.0" }, "dankbaar": { "form": "dankbaar", "cornetto_id": "r_a-9997", "cornetto_synset_id": "n_a-506397", "wordnet_id": "a-01586866", "pos": "JJ", "sense": "voldoening gevend", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "dapper": { "form": "dapper", "cornetto_id": "r_a-9998", "cornetto_synset_id": "n_a-519123", "wordnet_id": "a-00262792", "pos": "JJ", "sense": "moedig", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "daverend": { "form": "daverend", "cornetto_id": "r_a-10000", "cornetto_synset_id": "n_a-506439", "wordnet_id": "a-00178464", "pos": "JJ", "sense": "heel groot,mooi,veel", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.3", "confidence": "0.8" }, "decadent": { "form": "decadent", "cornetto_id": "r_a-10316", "cornetto_synset_id": "n_a-528192", "wordnet_id": "a-01332907", "pos": "JJ", "sense": "overdreven luxueus", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "decoratief": { "form": "decoratief", "cornetto_id": "r_a-10006", "cornetto_synset_id": "n_a-506477", "wordnet_id": "a-01091234", "pos": "JJ", "sense": "versierend", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "deductief": { "form": "deductief", "cornetto_id": "r_a-10244", "cornetto_synset_id": "n_a-506489", "wordnet_id": "a-02710294", "pos": "JJ", "sense": "met deductie", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "deels": { "form": "deels", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "", "sense": "", "polarity": "0.0", "subjectivity": "0.4", "intensity": "0.9", "confidence": "1.0" }, "deemoedig": { "form": "deemoedig", "cornetto_id": "r_a-10173", "cornetto_synset_id": "n_a-519741", "wordnet_id": "a-01532912", "pos": "JJ", "sense": "met deemoed", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "deerlijk": { "form": "deerlijk", "cornetto_id": "d_a-57320", "cornetto_synset_id": "n_a-508241", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "deerniswekkend": { "form": "deerniswekkend", "cornetto_id": "r_a-10008", "cornetto_synset_id": "n_a-535670", "wordnet_id": "a-01050890", "pos": "JJ", "sense": "meelijwekkend", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "defaitistisch": { "form": "defaitistisch", "cornetto_id": "r_a-10246", "cornetto_synset_id": "d_a-9411", "wordnet_id": "a-00078576", "pos": "JJ", "sense": "moedeloos", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "definitief": { "form": "definitief", "cornetto_id": "r_a-10011", "cornetto_synset_id": "n_a-506530", "wordnet_id": "a-01618895", "pos": "JJ", "sense": "vaststaand", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "deftig": { "form": "deftig", "cornetto_id": "r_a-10012", "cornetto_synset_id": "n_a-529095", "wordnet_id": "a-01993140", "pos": "JJ", "sense": "statig", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "degelijk": { "form": "degelijk", "cornetto_id": "r_a-10014", "cornetto_synset_id": "n_a-503878", "wordnet_id": "a-01982646", "pos": "JJ", "sense": "solide", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "deksels": { "form": "deksels", "cornetto_id": "r_a-10015", "cornetto_synset_id": "n_a-516807", "wordnet_id": "a-00669942", "pos": "JJ", "sense": "drommels", "polarity": "0.0", "subjectivity": "0.7", "intensity": "1.4", "confidence": "0.7" }, "demagogisch": { "form": "demagogisch", "cornetto_id": "r_a-10174", "cornetto_synset_id": "n_a-506603", "wordnet_id": "a-01897378", "pos": "JJ", "sense": "de massa bespelend", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "dement": { "form": "dement", "cornetto_id": "r_a-10018", "cornetto_synset_id": "n_a-506607", "wordnet_id": "a-02075321", "pos": "JJ", "sense": "kinds", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "demissionair": { "form": "demissionair", "cornetto_id": "r_a-10019", "cornetto_synset_id": "n_a-506612", "wordnet_id": "a-01295443", "pos": "JJ", "sense": "bezig af te treden", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "demografisch": { "form": "demografisch", "cornetto_id": "r_a-10175", "cornetto_synset_id": "n_a-506613", "wordnet_id": "a-02906351", "pos": "JJ", "sense": "de demografie betreffend", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "demonisch": { "form": "demonisch", "cornetto_id": "r_a-10247", "cornetto_synset_id": "n_a-507785", "wordnet_id": "a-02074673", "pos": "JJ", "sense": "duivels", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "demonstratief": { "form": "demonstratief", "cornetto_id": "r_a-10021", "cornetto_synset_id": "n_a-506615", "wordnet_id": "a-02182302", "pos": "JJ", "sense": "om de aandacht te trekken", "polarity": "-0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "denderend": { "form": "denderend", "cornetto_id": "r_a-10023", "cornetto_synset_id": "n_a-510820", "wordnet_id": "a-01576071", "pos": "JJ", "sense": "daverend", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.3", "confidence": "1.0" }, "denkbaar": { "form": "denkbaar", "cornetto_id": "r_a-10024", "cornetto_synset_id": "n_a-519143", "wordnet_id": "a-02418249", "pos": "JJ", "sense": "mogelijk", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "departementaal": { "form": "departementaal", "cornetto_id": "r_a-10179", "cornetto_synset_id": "n_a-506659", "wordnet_id": "a-03059966", "pos": "JJ", "sense": "van een departement", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "deplorabel": { "form": "deplorabel", "cornetto_id": "r_a-10180", "cornetto_synset_id": "n_a-508241", "wordnet_id": "", "pos": "JJ", "sense": "erbarmelijk", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "depressief": { "form": "depressief", "cornetto_id": "r_a-10026", "cornetto_synset_id": "d_a-9527", "wordnet_id": "", "pos": "JJ", "sense": "neerslachtig", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "derdegraads": { "form": "derdegraads", "cornetto_id": "r_a-10027", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "v.d. derde graad", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "derderangs": { "form": "derderangs", "cornetto_id": "r_a-10028", "cornetto_synset_id": "n_a-518934", "wordnet_id": "a-01673061", "pos": "JJ", "sense": "van slechte kwaliteit", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "dergelijk": { "form": "dergelijk", "cornetto_id": "r_a-16573", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "zulk", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "desastreus": { "form": "desastreus", "cornetto_id": "r_a-10029", "cornetto_synset_id": "n_a-525026", "wordnet_id": "a-01050088", "pos": "JJ", "sense": "rampzalig", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "descriptief": { "form": "descriptief", "cornetto_id": "r_a-10031", "cornetto_synset_id": "n_a-503750", "wordnet_id": "a-00732318", "pos": "JJ", "sense": "beschrijvend", "polarity": "0.2", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "desolaat": { "form": "desolaat", "cornetto_id": "r_a-10183", "cornetto_synset_id": "n_a-531362", "wordnet_id": "a-00107384", "pos": "JJ", "sense": "troosteloos", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "destructief": { "form": "destructief", "cornetto_id": "r_a-10033", "cornetto_synset_id": "n_a-532611", "wordnet_id": "a-00248837", "pos": "JJ", "sense": "afbrekend", "polarity": "-0.8", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "deugdelijk": { "form": "deugdelijk", "cornetto_id": "r_a-10034", "cornetto_synset_id": "n_a-506736", "wordnet_id": "a-00583581", "pos": "JJ", "sense": "degelijk", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "deugdzaam": { "form": "deugdzaam", "cornetto_id": "r_a-10035", "cornetto_synset_id": "n_a-506738", "wordnet_id": "a-00247013", "pos": "JJ", "sense": "braaf", "polarity": "-0.1", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "devoot": { "form": "devoot", "cornetto_id": "r_a-10036", "cornetto_synset_id": "n_a-533937", "wordnet_id": "a-01130261", "pos": "JJ", "sense": "vroom", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "dezelfde": { "form": "dezelfde", "cornetto_id": "d_a-404142", "cornetto_synset_id": "d_a-9291", "wordnet_id": "a-01839317", "pos": "JJ", "sense": "", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "diabolisch": { "form": "diabolisch", "cornetto_id": "r_a-10254", "cornetto_synset_id": "n_a-507785", "wordnet_id": "a-02074673", "pos": "JJ", "sense": "satanisch", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "dicht": { "form": "dicht", "cornetto_id": "r_a-10040", "cornetto_synset_id": "d_a-9215", "wordnet_id": "a-00539009", "pos": "JJ", "sense": "nauw aaneengesloten", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "dichtbij": { "form": "dichtbij", "cornetto_id": "d_a-521765", "cornetto_synset_id": "d_a-9415", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "dichterbij": { "form": "dichterbij", "cornetto_id": "d_r-70845", "cornetto_synset_id": "d_a-9227", "wordnet_id": "a-01573762", "pos": "JJ", "sense": "", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "dichterlijk": { "form": "dichterlijk", "cornetto_id": "r_a-10041", "cornetto_synset_id": "n_a-504427", "wordnet_id": "a-02017141", "pos": "JJ", "sense": "poëtisch", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "dictatoriale": { "form": "dictatoriale", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.3", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "didactisch": { "form": "didactisch", "cornetto_id": "r_a-10189", "cornetto_synset_id": "n_a-506825", "wordnet_id": "a-01324131", "pos": "JJ", "sense": "onderwijskundig", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "dienstverlenend": { "form": "dienstverlenend", "cornetto_id": "r_a-10191", "cornetto_synset_id": "n_a-506855", "wordnet_id": "", "pos": "JJ", "sense": "diensten verlenend", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "diep": { "form": "diep", "cornetto_id": "r_a-10049", "cornetto_synset_id": "n_a-513857", "wordnet_id": "a-01839317", "pos": "JJ", "sense": "intens", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "diepblauw": { "form": "diepblauw", "cornetto_id": "r_a-10192", "cornetto_synset_id": "n_a-506864", "wordnet_id": "", "pos": "JJ", "sense": "blauw", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "diepgaand": { "form": "diepgaand", "cornetto_id": "r_a-10050", "cornetto_synset_id": "n_a-511592", "wordnet_id": "", "pos": "JJ", "sense": "grondig", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.1", "confidence": "1.0" }, "diepgeworteld": { "form": "diepgeworteld", "cornetto_id": "r_a-10193", "cornetto_synset_id": "n_a-506871", "wordnet_id": "a-00941940", "pos": "JJ", "sense": "diep zittend", "polarity": "-0.1", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "diepgravend": { "form": "diepgravend", "cornetto_id": "r_a-10194", "cornetto_synset_id": "n_a-511592", "wordnet_id": "", "pos": "JJ", "sense": "diepgaand", "polarity": "0.5", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "diepliggend": { "form": "diepliggend", "cornetto_id": "r_a-10258", "cornetto_synset_id": "n_a-506875", "wordnet_id": "a-02264521", "pos": "JJ", "sense": "verzonken", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "dieptepunt": { "form": "dieptepunt", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.3", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "diepzinnig": { "form": "diepzinnig", "cornetto_id": "r_a-10051", "cornetto_synset_id": "n_a-506895", "wordnet_id": "a-01744515", "pos": "JJ", "sense": "getuigend van diep nadenken", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "dierbaar": { "form": "dierbaar", "cornetto_id": "r_a-10052", "cornetto_synset_id": "n_a-506898", "wordnet_id": "a-01461822", "pos": "JJ", "sense": "geliefd", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "diffuus": { "form": "diffuus", "cornetto_id": "r_a-10054", "cornetto_synset_id": "n_a-506926", "wordnet_id": "a-00540487", "pos": "JJ", "sense": "verspreid", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "digitaal": { "form": "digitaal", "cornetto_id": "r_a-10055", "cornetto_synset_id": "n_a-506928", "wordnet_id": "a-02713096", "pos": "JJ", "sense": "niet analoog", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "dik": { "form": "dik", "cornetto_id": "r_a-10328", "cornetto_synset_id": "c_398", "wordnet_id": "a-02410393", "pos": "JJ", "sense": "van aanzienlijke omvang", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.3", "confidence": "1.0" }, "dilettanterig": { "form": "dilettanterig", "cornetto_id": "d_a-60757", "cornetto_synset_id": "d_a-9454", "wordnet_id": "a-01140896", "pos": "JJ", "sense": "", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "diplomatiek": { "form": "diplomatiek", "cornetto_id": "r_a-10060", "cornetto_synset_id": "n_a-506997", "wordnet_id": "a-02713715", "pos": "JJ", "sense": "horend bij de diplomatie", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "direct": { "form": "direct", "cornetto_id": "r_a-10061", "cornetto_synset_id": "n_a-525240", "wordnet_id": "", "pos": "JJ", "sense": "zonder omwegen, m.b.t. afstand", "polarity": "0.4", "subjectivity": "0.4", "intensity": "1.1", "confidence": "1.0" }, "discutabel": { "form": "discutabel", "cornetto_id": "r_a-10064", "cornetto_synset_id": "n_a-531602", "wordnet_id": "a-00590390", "pos": "JJ", "sense": "aanvechtbaar", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "disproportioneel": { "form": "disproportioneel", "cornetto_id": "r_a-10196", "cornetto_synset_id": "n_a-507055", "wordnet_id": "a-00483048", "pos": "JJ", "sense": "niet in verhouding", "polarity": "-0.1", "subjectivity": "0.7", "intensity": "1.4", "confidence": "0.7" }, "disputabel": { "form": "disputabel", "cornetto_id": "d_a-404196", "cornetto_synset_id": "n_a-531602", "wordnet_id": "a-00590390", "pos": "JJ", "sense": "", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "dissonant": { "form": "dissonant", "cornetto_id": "r_a-10266", "cornetto_synset_id": "n_a-532033", "wordnet_id": "a-01164250", "pos": "JJ", "sense": "vals", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "divers": { "form": "divers", "cornetto_id": "r_a-10068", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "verscheidene", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "dodelijk": { "form": "dodelijk", "cornetto_id": "r_a-10070", "cornetto_synset_id": "n_a-520118", "wordnet_id": "a-00586183", "pos": "JJ", "sense": "tot de dood leidend", "polarity": "-0.6", "subjectivity": "0.6", "intensity": "1.3", "confidence": "1.0" }, "doelbewust": { "form": "doelbewust", "cornetto_id": "r_a-10071", "cornetto_synset_id": "n_a-522090", "wordnet_id": "", "pos": "JJ", "sense": "vastberaden", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.2", "confidence": "0.7" }, "doelgericht": { "form": "doelgericht", "cornetto_id": "r_a-10199", "cornetto_synset_id": "n_a-508079", "wordnet_id": "a-00050641", "pos": "JJ", "sense": "op het doel af", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "doelloos": { "form": "doelloos", "cornetto_id": "r_a-10072", "cornetto_synset_id": "n_a-535779", "wordnet_id": "a-01082535", "pos": "JJ", "sense": "zonder doel", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "doeltreffend": { "form": "doeltreffend", "cornetto_id": "r_a-10074", "cornetto_synset_id": "n_a-507125", "wordnet_id": "a-00834198", "pos": "JJ", "sense": "effectief", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.3", "confidence": "1.0" }, "doenlijk": { "form": "doenlijk", "cornetto_id": "r_a-10075", "cornetto_synset_id": "n_a-511721", "wordnet_id": "a-01821690", "pos": "JJ", "sense": "uitvoerbaar", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.1", "confidence": "0.7" }, "dof": { "form": "dof", "cornetto_id": "r_a-10200", "cornetto_synset_id": "d_a-9232", "wordnet_id": "a-00283972", "pos": "JJ", "sense": "mat, gedempt", "polarity": "0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "dogmatisch": { "form": "dogmatisch", "cornetto_id": "r_a-10076", "cornetto_synset_id": "n_a-507135", "wordnet_id": "a-00288070", "pos": "JJ", "sense": "volgens dogma", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "dol": { "form": "dol", "cornetto_id": "r_a-10332", "cornetto_synset_id": "d_a-9233", "wordnet_id": "a-02235994", "pos": "JJ", "sense": "(v.e. schroef) doordraaiend", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "dolblij": { "form": "dolblij", "cornetto_id": "r_a-10201", "cornetto_synset_id": "n_a-507156", "wordnet_id": "a-00280463", "pos": "JJ", "sense": "ontzettend blij", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "doldriest": { "form": "doldriest", "cornetto_id": "r_a-10270", "cornetto_synset_id": "n_a-507154", "wordnet_id": "a-00203614", "pos": "JJ", "sense": "heel overmoedig", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "dolenthousiast": { "form": "dolenthousiast", "cornetto_id": "r_a-10271", "cornetto_synset_id": "n_a-517863", "wordnet_id": "a-00856011", "pos": "JJ", "sense": "zeer enthousiast", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "dolgelukkig": { "form": "dolgelukkig", "cornetto_id": "r_a-10202", "cornetto_synset_id": "n_a-507163", "wordnet_id": "a-01367008", "pos": "JJ", "sense": "ontzettend gelukkig", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "dom": { "form": "dom", "cornetto_id": "r_a-10080", "cornetto_synset_id": "c_578", "wordnet_id": "a-01336587", "pos": "JJ", "sense": "niet intelligent", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "donker": { "form": "donker", "cornetto_id": "r_a-10338", "cornetto_synset_id": "n_a-528326", "wordnet_id": "a-00364479", "pos": "JJ", "sense": "somber, ongunstig", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "donkerblauw": { "form": "donkerblauw", "cornetto_id": "r_a-10205", "cornetto_synset_id": "n_a-507210", "wordnet_id": "", "pos": "JJ", "sense": "niet lichtblauw", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "donkerblond": { "form": "donkerblond", "cornetto_id": "r_a-10274", "cornetto_synset_id": "n_a-507211", "wordnet_id": "", "pos": "JJ", "sense": "niet lichtblond", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "donkergrijs": { "form": "donkergrijs", "cornetto_id": "r_a-10208", "cornetto_synset_id": "n_a-507214", "wordnet_id": "", "pos": "JJ", "sense": "niet lichtgrijs", "polarity": "-0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "donkerrood": { "form": "donkerrood", "cornetto_id": "r_a-10210", "cornetto_synset_id": "n_a-507216", "wordnet_id": "", "pos": "JJ", "sense": "niet lichtrood", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "dood": { "form": "dood", "cornetto_id": "r_a-10085", "cornetto_synset_id": "d_a-9236", "wordnet_id": "a-00095280", "pos": "JJ", "sense": "niet levend", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "doodeenvoudig": { "form": "doodeenvoudig", "cornetto_id": "r_a-10211", "cornetto_synset_id": "n_a-507230", "wordnet_id": "", "pos": "JJ", "sense": "doodsimpel", "polarity": "0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "doodgeboren": { "form": "doodgeboren", "cornetto_id": "r_a-10213", "cornetto_synset_id": "n_a-507235", "wordnet_id": "a-00098307", "pos": "JJ", "sense": "levenloos geboren", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "doodgewoon": { "form": "doodgewoon", "cornetto_id": "r_a-10214", "cornetto_synset_id": "n_a-507238", "wordnet_id": "a-00060605", "pos": "JJ", "sense": "heel gewoon", "polarity": "-0.1", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "doodkalm": { "form": "doodkalm", "cornetto_id": "r_a-10279", "cornetto_synset_id": "n_a-507237", "wordnet_id": "", "pos": "JJ", "sense": "uiterst kalm", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "doodmoe": { "form": "doodmoe", "cornetto_id": "r_a-10215", "cornetto_synset_id": "n_a-531701", "wordnet_id": "a-02433451", "pos": "JJ", "sense": "heel moe", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "doodnormaal": { "form": "doodnormaal", "cornetto_id": "r_a-10280", "cornetto_synset_id": "n_a-507238", "wordnet_id": "a-00060605", "pos": "JJ", "sense": "heel gewoon", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "doods": { "form": "doods", "cornetto_id": "r_a-10088", "cornetto_synset_id": "n_a-507250", "wordnet_id": "a-01992996", "pos": "JJ", "sense": "dood lijkend", "polarity": "-0.1", "subjectivity": "0.7", "intensity": "1.3", "confidence": "0.7" }, "doodsbleek": { "form": "doodsbleek", "cornetto_id": "r_a-10283", "cornetto_synset_id": "n_a-517312", "wordnet_id": "a-00272172", "pos": "JJ", "sense": "lijkbleek", "polarity": "-0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "doodsimpel": { "form": "doodsimpel", "cornetto_id": "r_a-10285", "cornetto_synset_id": "n_a-507230", "wordnet_id": "", "pos": "JJ", "sense": "doodeenvoudig", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "doodziek": { "form": "doodziek", "cornetto_id": "r_a-10219", "cornetto_synset_id": "n_a-507269", "wordnet_id": "", "pos": "JJ", "sense": "zwaar ziek", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "doopsgezind": { "form": "doopsgezind", "cornetto_id": "r_a-10220", "cornetto_synset_id": "n_a-507287", "wordnet_id": "a-02954633", "pos": "JJ", "sense": "baptistisch", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "doordacht": { "form": "doordacht", "cornetto_id": "r_a-10091", "cornetto_synset_id": "n_a-507294", "wordnet_id": "a-00067966", "pos": "JJ", "sense": "weloverwogen", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "doordeweeks": { "form": "doordeweeks", "cornetto_id": "r_a-10289", "cornetto_synset_id": "n_a-502040", "wordnet_id": "a-01674242", "pos": "JJ", "sense": "niet zondags", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "doorgaand": { "form": "doorgaand", "cornetto_id": "r_a-10093", "cornetto_synset_id": "n_a-507303", "wordnet_id": "a-00762168", "pos": "JJ", "sense": "niet stoppend", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "doorgewinterd": { "form": "doorgewinterd", "cornetto_id": "r_a-10094", "cornetto_synset_id": "n_a-508489", "wordnet_id": "a-00935500", "pos": "JJ", "sense": "zeer bedreven en ervaren", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "doorslaand": { "form": "doorslaand", "cornetto_id": "r_a-10099", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "overtuigend", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.3", "confidence": "0.7" }, "doorslaggevend": { "form": "doorslaggevend", "cornetto_id": "r_a-10100", "cornetto_synset_id": "n_a-503757", "wordnet_id": "a-00656507", "pos": "JJ", "sense": "beslissend", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "doorsnee": { "form": "doorsnee", "cornetto_id": "d_n-404268", "cornetto_synset_id": "d_n-27755", "wordnet_id": "n-06021761", "pos": "JJ", "sense": "", "polarity": "-0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "doortimmerd": { "form": "doortimmerd", "cornetto_id": "r_a-10102", "cornetto_synset_id": "n_a-507344", "wordnet_id": "a-01151740", "pos": "JJ", "sense": "degelijk", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "doorwrocht": { "form": "doorwrocht", "cornetto_id": "r_a-10107", "cornetto_synset_id": "n_a-507344", "wordnet_id": "a-01151740", "pos": "JJ", "sense": "doortimmerd", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "doorzichtig": { "form": "doorzichtig", "cornetto_id": "r_a-10110", "cornetto_synset_id": "n_a-503401", "wordnet_id": "a-00532892", "pos": "JJ", "sense": "helder", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "dorstig": { "form": "dorstig", "cornetto_id": "r_a-10114", "cornetto_synset_id": "n_a-507391", "wordnet_id": "a-00010726", "pos": "JJ", "sense": "met dorst", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "draagbaar": { "form": "draagbaar", "cornetto_id": "r_a-10223", "cornetto_synset_id": "d_a-9239", "wordnet_id": "a-01291589", "pos": "JJ", "sense": "dragend te vervoeren", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "draagkrachtig": { "form": "draagkrachtig", "cornetto_id": "r_a-10224", "cornetto_synset_id": "d_a-9505", "wordnet_id": "a-01049352", "pos": "JJ", "sense": "lasten kunnende dragen", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.9" }, "draaibaar": { "form": "draaibaar", "cornetto_id": "r_a-10225", "cornetto_synset_id": "n_a-507438", "wordnet_id": "a-02020011", "pos": "JJ", "sense": "te draaien", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "drabbig": { "form": "drabbig", "cornetto_id": "r_a-10294", "cornetto_synset_id": "n_a-507457", "wordnet_id": "a-00421513", "pos": "JJ", "sense": "modderig", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "draconisch": { "form": "draconisch", "cornetto_id": "r_a-10226", "cornetto_synset_id": "n_a-507460", "wordnet_id": "a-03031102", "pos": "JJ", "sense": "streng", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "drakerig": { "form": "drakerig", "cornetto_id": "r_a-10296", "cornetto_synset_id": "n_a-518570", "wordnet_id": "a-00795078", "pos": "JJ", "sense": "draakachtig", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "dramatisch": { "form": "dramatisch", "cornetto_id": "r_a-10336", "cornetto_synset_id": "n_a-507468", "wordnet_id": "a-02714800", "pos": "JJ", "sense": "mbt. Toneel", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.1", "confidence": "1.0" }, "drammerig": { "form": "drammerig", "cornetto_id": "r_a-10297", "cornetto_synset_id": "n_a-507469", "wordnet_id": "a-01345307", "pos": "JJ", "sense": "belerend en betweterig", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "drastisch": { "form": "drastisch", "cornetto_id": "r_a-10121", "cornetto_synset_id": "n_a-513689", "wordnet_id": "a-00526062", "pos": "JJ", "sense": "ingrijpend", "polarity": "-0.1", "subjectivity": "0.9", "intensity": "1.3", "confidence": "0.9" }, "dreigend": { "form": "dreigend", "cornetto_id": "r_a-10228", "cornetto_synset_id": "n_a-507482", "wordnet_id": "a-00113818", "pos": "JJ", "sense": "vol dreiging", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "driedimensionaal": { "form": "driedimensionaal", "cornetto_id": "r_a-10122", "cornetto_synset_id": "d_a-9242", "wordnet_id": "a-00660809", "pos": "JJ", "sense": "met drie dimensies", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.4", "confidence": "0.7" }, "driedubbel": { "form": "driedubbel", "cornetto_id": "r_a-10231", "cornetto_synset_id": "n_a-507565", "wordnet_id": "a-00520892", "pos": "JJ", "sense": "drievoudig", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "driejaarlijks": { "form": "driejaarlijks", "cornetto_id": "r_a-10233", "cornetto_synset_id": "n_a-507517", "wordnet_id": "a-01969606", "pos": "JJ", "sense": "(van) om de drie jaar", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "driekwart": { "form": "driekwart", "cornetto_id": "r_a-10123", "cornetto_synset_id": "n_a-507526", "wordnet_id": "", "pos": "JJ", "sense": "drievierde", "polarity": "0.0", "subjectivity": "0.0", "intensity": "0.9", "confidence": "1.0" }, "driest": { "form": "driest", "cornetto_id": "r_a-10124", "cornetto_synset_id": "n_a-522386", "wordnet_id": "a-00205696", "pos": "JJ", "sense": "overmoedig", "polarity": "-0.7", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "drinkbaar": { "form": "drinkbaar", "cornetto_id": "r_a-10306", "cornetto_synset_id": "d_a-9243", "wordnet_id": "a-00797113", "pos": "JJ", "sense": "te drinken", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "droef": { "form": "droef", "cornetto_id": "r_a-10237", "cornetto_synset_id": "n_a-532342", "wordnet_id": "a-01361863", "pos": "JJ", "sense": "treurig", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "droevig": { "form": "droevig", "cornetto_id": "r_a-10130", "cornetto_synset_id": "n_a-527873", "wordnet_id": "", "pos": "JJ", "sense": "treurig", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "dromerig": { "form": "dromerig", "cornetto_id": "r_a-10131", "cornetto_synset_id": "n_a-507609", "wordnet_id": "a-02009166", "pos": "JJ", "sense": "als iemand die droomt", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "dronken": { "form": "dronken", "cornetto_id": "r_a-10132", "cornetto_synset_id": "d_a-9244", "wordnet_id": "", "pos": "JJ", "sense": "beschonken", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "droog": { "form": "droog", "cornetto_id": "r_a-10340", "cornetto_synset_id": "n_a-507619", "wordnet_id": "a-02368247", "pos": "JJ", "sense": "van drank: niet zoet", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "druilerig": { "form": "druilerig", "cornetto_id": "r_a-10135", "cornetto_synset_id": "n_a-507665", "wordnet_id": "a-00461971", "pos": "JJ", "sense": "regenachtig", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "druk": { "form": "druk", "cornetto_id": "r_a-10341", "cornetto_synset_id": "c_384", "wordnet_id": "a-00119006", "pos": "JJ", "sense": "van karakter", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "dubbel": { "form": "dubbel", "cornetto_id": "r_a-10140", "cornetto_synset_id": "n_a-507710", "wordnet_id": "", "pos": "JJ", "sense": "tweevoudig", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "dubbelhartig": { "form": "dubbelhartig", "cornetto_id": "r_a-10141", "cornetto_synset_id": "n_a-532034", "wordnet_id": "a-00225564", "pos": "JJ", "sense": "vals", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "dubieus": { "form": "dubieus", "cornetto_id": "r_a-10144", "cornetto_synset_id": "n_a-531602", "wordnet_id": "a-00590390", "pos": "JJ", "sense": "twijfelachtig", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "duidelijk": { "form": "duidelijk", "cornetto_id": "r_a-10149", "cornetto_synset_id": "d_a-9248", "wordnet_id": "a-00431447", "pos": "JJ", "sense": "goed waarneembaar", "polarity": "0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "duister": { "form": "duister", "cornetto_id": "r_a-10150", "cornetto_synset_id": "d_a-9235", "wordnet_id": "a-00273082", "pos": "JJ", "sense": "donker", "polarity": "-0.2", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "duivels": { "form": "duivels", "cornetto_id": "r_a-10151", "cornetto_synset_id": "n_a-507785", "wordnet_id": "a-02074673", "pos": "JJ", "sense": "satanisch", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.2", "confidence": "0.7" }, "duizelig": { "form": "duizelig", "cornetto_id": "r_a-10153", "cornetto_synset_id": "n_a-507792", "wordnet_id": "a-00437223", "pos": "JJ", "sense": "draaierig", "polarity": "-0.1", "subjectivity": "1.0", "intensity": "1.7", "confidence": "0.7" }, "duizelingwekkend": { "form": "duizelingwekkend", "cornetto_id": "r_a-10154", "cornetto_synset_id": "n_a-507793", "wordnet_id": "a-02120828", "pos": "JJ", "sense": "enorm", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.9", "confidence": "1.0" }, "duizendjarig": { "form": "duizendjarig", "cornetto_id": "r_a-10342", "cornetto_synset_id": "n_a-507795", "wordnet_id": "a-02864699", "pos": "JJ", "sense": "van duizend jaar", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.2", "confidence": "0.7" }, "dun": { "form": "dun", "cornetto_id": "r_a-10329", "cornetto_synset_id": "n_a-507803", "wordnet_id": "", "pos": "JJ", "sense": "plat", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "dusdanig": { "form": "dusdanig", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.3", "confidence": "1.0" }, "duur": { "form": "duur", "cornetto_id": "r_a-10159", "cornetto_synset_id": "c_345", "wordnet_id": "a-00975778", "pos": "JJ", "sense": "deftig, gewichtig", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "duurzaam": { "form": "duurzaam", "cornetto_id": "r_a-10160", "cornetto_synset_id": "n_a-507829", "wordnet_id": "a-01439496", "pos": "JJ", "sense": "bestendig", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "dwangmatig": { "form": "dwangmatig", "cornetto_id": "r_a-10162", "cornetto_synset_id": "n_a-507840", "wordnet_id": "a-00104699", "pos": "JJ", "sense": "obsessief", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.2", "confidence": "0.7" }, "dwars": { "form": "dwars", "cornetto_id": "r_a-10163", "cornetto_synset_id": "n_a-507846", "wordnet_id": "a-01445917", "pos": "JJ", "sense": "orthogonaal", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "dwarsbomen": { "form": "dwarsbomen", "cornetto_id": "r_v-2609", "cornetto_synset_id": "d_v-6959", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "dweperig": { "form": "dweperig", "cornetto_id": "r_a-10311", "cornetto_synset_id": "n_a-507870", "wordnet_id": "a-00054109", "pos": "JJ", "sense": "geneigd tot dwepen", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "dynamisch": { "form": "dynamisch", "cornetto_id": "r_a-10343", "cornetto_synset_id": "n_a-507878", "wordnet_id": "a-00808191", "pos": "JJ", "sense": "mbt. de dynamica", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "dyslectisch": { "form": "dyslectisch", "cornetto_id": "r_a-10313", "cornetto_synset_id": "n_a-535137", "wordnet_id": "a-01275195", "pos": "JJ", "sense": "woordblind", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "echt": { "form": "echt", "cornetto_id": "r_a-10615", "cornetto_synset_id": "d_a-9251", "wordnet_id": "a-00633581", "pos": "JJ", "sense": "bij uitnemendheid", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.6", "confidence": "1.0" }, "eclatant": { "form": "eclatant", "cornetto_id": "r_a-10576", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "sensationeel", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.8" }, "edel": { "form": "edel", "cornetto_id": "r_a-10353", "cornetto_synset_id": "n_a-507937", "wordnet_id": "a-01588172", "pos": "JJ", "sense": "hoogstaand van karakter", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "eeltig": { "form": "eeltig", "cornetto_id": "r_a-10536", "cornetto_synset_id": "d_a-9253", "wordnet_id": "a-02107162", "pos": "JJ", "sense": "vol eelt", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "eendimensionaal": { "form": "eendimensionaal", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "eendrachtig": { "form": "eendrachtig", "cornetto_id": "r_a-10479", "cornetto_synset_id": "n_a-507997", "wordnet_id": "a-00553478", "pos": "JJ", "sense": "eensgezind", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "eenduidig": { "form": "eenduidig", "cornetto_id": "r_a-10359", "cornetto_synset_id": "n_a-520956", "wordnet_id": "a-00103696", "pos": "JJ", "sense": "ondubbelzinnig", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "eenheidsworst": { "form": "eenheidsworst", "cornetto_id": "r_n-11999", "cornetto_synset_id": "d_n-22231", "wordnet_id": "n-04740326", "pos": "NN", "sense": "", "polarity": "-0.3", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "eenhoevig": { "form": "eenhoevig", "cornetto_id": "r_a-10538", "cornetto_synset_id": "n_a-507968", "wordnet_id": "", "pos": "JJ", "sense": "met enkelvoudige hoeven", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "eenmalig": { "form": "eenmalig", "cornetto_id": "r_a-10362", "cornetto_synset_id": "n_a-507976", "wordnet_id": "a-01482751", "pos": "JJ", "sense": "één keer voorkomend", "polarity": "0.0", "subjectivity": "0.1", "intensity": "0.9", "confidence": "1.0" }, "eenparig": { "form": "eenparig", "cornetto_id": "r_a-10542", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "met overeenstemming", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "eens": { "form": "eens", "cornetto_id": "r_a-10363", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van dezelfde mening", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "eensluidend": { "form": "eensluidend", "cornetto_id": "r_a-10365", "cornetto_synset_id": "n_a-510159", "wordnet_id": "a-02378496", "pos": "JJ", "sense": "met gelijke inhoud", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "eentonig": { "form": "eentonig", "cornetto_id": "r_a-10592", "cornetto_synset_id": "n_a-519240", "wordnet_id": "a-01541828", "pos": "JJ", "sense": "met maar één toon", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "1.0" }, "eenvoudig": { "form": "eenvoudig", "cornetto_id": "r_a-10595", "cornetto_synset_id": "n_a-503737", "wordnet_id": "a-02340458", "pos": "JJ", "sense": "bescheiden", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "eenzaam": { "form": "eenzaam", "cornetto_id": "r_a-10370", "cornetto_synset_id": "n_a-531714", "wordnet_id": "", "pos": "JJ", "sense": "afgelegen of verlaten", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "eenzelvig": { "form": "eenzelvig", "cornetto_id": "r_a-10371", "cornetto_synset_id": "n_a-508015", "wordnet_id": "a-01313649", "pos": "JJ", "sense": "teruggetrokken", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "eenzijdig": { "form": "eenzijdig", "cornetto_id": "r_a-10616", "cornetto_synset_id": "n_a-508018", "wordnet_id": "a-00236989", "pos": "JJ", "sense": "beperkt", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "0.9", "confidence": "1.0" }, "eerbiedig": { "form": "eerbiedig", "cornetto_id": "r_a-10374", "cornetto_synset_id": "n_a-508023", "wordnet_id": "a-01993940", "pos": "JJ", "sense": "respectvol", "polarity": "0.1", "subjectivity": "0.4", "intensity": "0.9", "confidence": "0.7" }, "eerder": { "form": "eerder", "cornetto_id": "r_a-10482", "cornetto_synset_id": "d_a-9599", "wordnet_id": "", "pos": "JJ", "sense": "vroeger", "polarity": "0.0", "subjectivity": "0.2", "intensity": "0.8", "confidence": "1.0" }, "eerlijk": { "form": "eerlijk", "cornetto_id": "r_a-10376", "cornetto_synset_id": "n_a-508027", "wordnet_id": "a-01225643", "pos": "JJ", "sense": "oprecht", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "eerloos": { "form": "eerloos", "cornetto_id": "r_a-10545", "cornetto_synset_id": "n_a-526001", "wordnet_id": "a-01122411", "pos": "JJ", "sense": "zonder eer", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "eersteklas": { "form": "eersteklas", "cornetto_id": "r_a-10379", "cornetto_synset_id": "d_n-28881", "wordnet_id": "", "pos": "JJ", "sense": "uitstekend", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.3", "confidence": "0.7" }, "eersterangs": { "form": "eersterangs", "cornetto_id": "r_a-10547", "cornetto_synset_id": "d_a-9557", "wordnet_id": "", "pos": "JJ", "sense": "tot de besten behorend", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "eerstgenoemd": { "form": "eerstgenoemd", "cornetto_id": "r_a-10485", "cornetto_synset_id": "n_a-508044", "wordnet_id": "a-01047301", "pos": "JJ", "sense": "als eerste genoemd", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "eerstkomend": { "form": "eerstkomend", "cornetto_id": "r_a-10486", "cornetto_synset_id": "n_a-508045", "wordnet_id": "a-00123485", "pos": "JJ", "sense": "aanstaand", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "eerzaam": { "form": "eerzaam", "cornetto_id": "r_a-10549", "cornetto_synset_id": "n_a-506738", "wordnet_id": "a-00247013", "pos": "JJ", "sense": "respectabel", "polarity": "0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "eerzuchtig": { "form": "eerzuchtig", "cornetto_id": "r_a-10382", "cornetto_synset_id": "n_a-502180", "wordnet_id": "a-00104051", "pos": "JJ", "sense": "ambitieus", "polarity": "-0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "eeuwenlang": { "form": "eeuwenlang", "cornetto_id": "r_a-10488", "cornetto_synset_id": "n_a-508061", "wordnet_id": "a-02057226", "pos": "JJ", "sense": "gedurende honderden jaren", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "eeuwenoud": { "form": "eeuwenoud", "cornetto_id": "r_a-10489", "cornetto_synset_id": "n_a-508062", "wordnet_id": "a-00353431", "pos": "JJ", "sense": "honderden jaren oud", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "eeuwig": { "form": "eeuwig", "cornetto_id": "r_a-10384", "cornetto_synset_id": "n_a-508064", "wordnet_id": "a-00595299", "pos": "JJ", "sense": "altijddurend", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.4", "confidence": "1.0" }, "effectief": { "form": "effectief", "cornetto_id": "r_a-10597", "cornetto_synset_id": "d_a-9613", "wordnet_id": "a-01932973", "pos": "JJ", "sense": "werkelijk", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.4", "confidence": "1.0" }, "efficiënt": { "form": "efficiënt", "cornetto_id": "r_a-10389", "cornetto_synset_id": "n_a-508079", "wordnet_id": "a-00050641", "pos": "JJ", "sense": "doelmatig", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "egocentrisch": { "form": "egocentrisch", "cornetto_id": "r_a-10392", "cornetto_synset_id": "n_a-508087", "wordnet_id": "a-00101800", "pos": "JJ", "sense": "op zichzelf gericht", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "egoïstisch": { "form": "egoïstisch", "cornetto_id": "r_a-10393", "cornetto_synset_id": "d_a-9625", "wordnet_id": "a-00101800", "pos": "JJ", "sense": "zelfzuchtig", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "eigen": { "form": "eigen", "cornetto_id": "r_a-10395", "cornetto_synset_id": "n_a-508105", "wordnet_id": "a-00356926", "pos": "JJ", "sense": "kenmerkend", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "eigenaardig": { "form": "eigenaardig", "cornetto_id": "r_a-10396", "cornetto_synset_id": "n_a-533834", "wordnet_id": "a-00488857", "pos": "JJ", "sense": "merkwaardig, vreemd", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "eigenlijk": { "form": "eigenlijk", "cornetto_id": "r_a-10399", "cornetto_synset_id": "d_a-9613", "wordnet_id": "a-01932973", "pos": "JJ", "sense": "feitelijk", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.1", "confidence": "1.0" }, "eigentijds": { "form": "eigentijds", "cornetto_id": "r_a-10401", "cornetto_synset_id": "n_a-512180", "wordnet_id": "a-00666058", "pos": "JJ", "sense": "passend bij deze tijd", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "eigenwijs": { "form": "eigenwijs", "cornetto_id": "r_a-10403", "cornetto_synset_id": "n_a-508126", "wordnet_id": "a-00204779", "pos": "JJ", "sense": "parmantig", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "eigenzinnig": { "form": "eigenzinnig", "cornetto_id": "r_a-10404", "cornetto_synset_id": "n_a-508125", "wordnet_id": "a-00156440", "pos": "JJ", "sense": "koppig", "polarity": "-0.1", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "eindeloos": { "form": "eindeloos", "cornetto_id": "r_a-10407", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "heerlijk", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.6", "confidence": "1.0" }, "eivol": { "form": "eivol", "cornetto_id": "r_a-10554", "cornetto_synset_id": "n_a-524566", "wordnet_id": "a-00537339", "pos": "JJ", "sense": "helemaal vol", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "elastieken": { "form": "elastieken", "cornetto_id": "r_a-10408", "cornetto_synset_id": "n_a-508191", "wordnet_id": "a-00843146", "pos": "JJ", "sense": "van elastiek", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "electoraal": { "form": "electoraal", "cornetto_id": "r_a-10493", "cornetto_synset_id": "n_a-508194", "wordnet_id": "a-00846219", "pos": "JJ", "sense": "mbt. verkiezingen", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "elegant": { "form": "elegant", "cornetto_id": "r_a-10410", "cornetto_synset_id": "n_a-527670", "wordnet_id": "a-00218440", "pos": "JJ", "sense": "bevallig", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "elektronisch": { "form": "elektronisch", "cornetto_id": "r_a-10412", "cornetto_synset_id": "n_a-508219", "wordnet_id": "a-02718497", "pos": "JJ", "sense": "met elektrische apparaten", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "elementair": { "form": "elementair", "cornetto_id": "r_a-10414", "cornetto_synset_id": "n_a-509441", "wordnet_id": "a-00095094", "pos": "JJ", "sense": "fundamenteel", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.1", "confidence": "0.7" }, "ellendig": { "form": "ellendig", "cornetto_id": "r_a-10417", "cornetto_synset_id": "d_a-9577", "wordnet_id": "a-00247439", "pos": "JJ", "sense": "wat ellende veroorzaakt", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.1", "confidence": "1.0" }, "ellenlang": { "form": "ellenlang", "cornetto_id": "r_a-10418", "cornetto_synset_id": "n_a-508243", "wordnet_id": "a-00549236", "pos": "JJ", "sense": "heel erg lang", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "embryonaal": { "form": "embryonaal", "cornetto_id": "r_a-10499", "cornetto_synset_id": "n_a-508264", "wordnet_id": "a-00818581", "pos": "JJ", "sense": "als embryo", "polarity": "0.0", "subjectivity": "0.3", "intensity": "0.9", "confidence": "0.7" }, "emotieloos": { "form": "emotieloos", "cornetto_id": "r_a-10559", "cornetto_synset_id": "n_a-521187", "wordnet_id": "a-00857560", "pos": "JJ", "sense": "zonder emotie", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "emotioneel": { "form": "emotioneel", "cornetto_id": "r_a-10619", "cornetto_synset_id": "n_a-508280", "wordnet_id": "a-00853776", "pos": "JJ", "sense": "mbt. emoties", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "empirisch": { "form": "empirisch", "cornetto_id": "r_a-10421", "cornetto_synset_id": "n_a-524456", "wordnet_id": "a-00858917", "pos": "JJ", "sense": "proefondervindelijk", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "encyclopedisch": { "form": "encyclopedisch", "cornetto_id": "r_a-10500", "cornetto_synset_id": "n_a-508292", "wordnet_id": "a-00527744", "pos": "JJ", "sense": "als (in, van) een encyclopedie", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "energiek": { "form": "energiek", "cornetto_id": "r_a-10422", "cornetto_synset_id": "n_a-508310", "wordnet_id": "a-00804371", "pos": "JJ", "sense": "krachtig", "polarity": "0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "energiezuinig": { "form": "energiezuinig", "cornetto_id": "r_a-10502", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "weinig energie gebruikend", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "enerverend": { "form": "enerverend", "cornetto_id": "r_a-10423", "cornetto_synset_id": "n_a-522082", "wordnet_id": "a-02132080", "pos": "JJ", "sense": "spannend en vermoeiend", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "eng": { "form": "eng", "cornetto_id": "r_a-10425", "cornetto_synset_id": "d_a-9417", "wordnet_id": "a-02561888", "pos": "JJ", "sense": "nauw", "polarity": "-0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "enig": { "form": "enig", "cornetto_id": "r_a-10428", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "heel erg leuk", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "enigst": { "form": "enigst", "cornetto_id": "r_a-10429", "cornetto_synset_id": "d_a-9559", "wordnet_id": "a-00504592", "pos": "JJ", "sense": "uniek", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "enkel": { "form": "enkel", "cornetto_id": "r_a-10430", "cornetto_synset_id": "n_a-508343", "wordnet_id": "a-01313649", "pos": "JJ", "sense": "niet dubbel", "polarity": "0.0", "subjectivity": "0.2", "intensity": "0.9", "confidence": "0.7" }, "enorm": { "form": "enorm", "cornetto_id": "r_a-10505", "cornetto_synset_id": "c_681", "wordnet_id": "a-01385255", "pos": "JJ", "sense": "geweldig", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.9", "confidence": "1.0" }, "enthousiast": { "form": "enthousiast", "cornetto_id": "r_a-10431", "cornetto_synset_id": "d_a-9262", "wordnet_id": "a-00885695", "pos": "JJ", "sense": "geestdriftig", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "epidemisch": { "form": "epidemisch", "cornetto_id": "r_a-10566", "cornetto_synset_id": "n_a-508392", "wordnet_id": "a-01426375", "pos": "JJ", "sense": "als een epidemie", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.5", "confidence": "0.7" }, "episch": { "form": "episch", "cornetto_id": "r_a-10506", "cornetto_synset_id": "n_a-508404", "wordnet_id": "a-03015589", "pos": "JJ", "sense": "mbt. verhalende poëzie", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.3", "confidence": "1.0" }, "equivalent": { "form": "equivalent", "cornetto_id": "r_a-10507", "cornetto_synset_id": "d_a-9294", "wordnet_id": "a-00051373", "pos": "JJ", "sense": "gelijkwaardig", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.1", "confidence": "0.7" }, "erbarmelijk": { "form": "erbarmelijk", "cornetto_id": "r_a-10432", "cornetto_synset_id": "n_a-508417", "wordnet_id": "a-00107384", "pos": "JJ", "sense": "ellendig, meelijwekkend", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.3", "confidence": "1.0" }, "erg": { "form": "erg", "cornetto_id": "r_a-10435", "cornetto_synset_id": "n_a-512478", "wordnet_id": "a-01509527", "pos": "JJ", "sense": "ontzettend", "polarity": "-0.1", "subjectivity": "1.0", "intensity": "1.9", "confidence": "1.0" }, "ergerlijk": { "form": "ergerlijk", "cornetto_id": "r_a-10436", "cornetto_synset_id": "n_a-508461", "wordnet_id": "a-00089550", "pos": "JJ", "sense": "irritant", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "ergerniswekkend": { "form": "ergerniswekkend", "cornetto_id": "r_a-10509", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "irritant", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.2", "confidence": "0.7" }, "ergonomisch": { "form": "ergonomisch", "cornetto_id": "r_a-10510", "cornetto_synset_id": "n_a-508465", "wordnet_id": "a-02721877", "pos": "JJ", "sense": "mbt. de ergonomie", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "erkend": { "form": "erkend", "cornetto_id": "r_a-10437", "cornetto_synset_id": "n_a-521322", "wordnet_id": "a-00602721", "pos": "JJ", "sense": "officieel bevoegd", "polarity": "0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "ernstig": { "form": "ernstig", "cornetto_id": "r_a-10441", "cornetto_synset_id": "n_a-512478", "wordnet_id": "a-01509527", "pos": "JJ", "sense": "ingrijpend", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.1", "confidence": "1.0" }, "erotisch": { "form": "erotisch", "cornetto_id": "r_a-10442", "cornetto_synset_id": "d_a-9264", "wordnet_id": "a-02132080", "pos": "JJ", "sense": "seksueel prikkelend", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "erudiet": { "form": "erudiet", "cornetto_id": "r_a-10443", "cornetto_synset_id": "n_a-510118", "wordnet_id": "a-02084358", "pos": "JJ", "sense": "ontwikkeld", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "ervaren": { "form": "ervaren", "cornetto_id": "r_a-10444", "cornetto_synset_id": "n_a-508489", "wordnet_id": "a-00935500", "pos": "JJ", "sense": "geroutineerd", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "escaleren": { "form": "escaleren", "cornetto_id": "r_v-2658", "cornetto_synset_id": "d_v-2471", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "essentieel": { "form": "essentieel", "cornetto_id": "r_a-10445", "cornetto_synset_id": "n_a-509441", "wordnet_id": "a-00095094", "pos": "JJ", "sense": "de essentie vormend", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.1", "confidence": "1.0" }, "esthetisch": { "form": "esthetisch", "cornetto_id": "r_a-10446", "cornetto_synset_id": "n_a-508512", "wordnet_id": "a-00069531", "pos": "JJ", "sense": "mbt. schoonheid", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "ethisch": { "form": "ethisch", "cornetto_id": "r_a-10447", "cornetto_synset_id": "n_a-535368", "wordnet_id": "a-00905386", "pos": "JJ", "sense": "moreel", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "etnisch": { "form": "etnisch", "cornetto_id": "r_a-10448", "cornetto_synset_id": "n_a-525084", "wordnet_id": "a-03064883", "pos": "JJ", "sense": "volkenkundig", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "etymologisch": { "form": "etymologisch", "cornetto_id": "r_a-10512", "cornetto_synset_id": "n_a-508550", "wordnet_id": "a-03022003", "pos": "JJ", "sense": "mbt. de woordafleiding", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "evangelisch": { "form": "evangelisch", "cornetto_id": "r_a-10608", "cornetto_synset_id": "n_a-508575", "wordnet_id": "a-00886681", "pos": "JJ", "sense": "mbt. tot richting in Hervormde Kerk", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "eventueel": { "form": "eventueel", "cornetto_id": "r_a-10452", "cornetto_synset_id": "n_a-508594", "wordnet_id": "a-00341933", "pos": "JJ", "sense": "mogelijk", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "evenwichtig": { "form": "evenwichtig", "cornetto_id": "r_a-10453", "cornetto_synset_id": "n_a-510161", "wordnet_id": "a-01134486", "pos": "JJ", "sense": "stabiel", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "evenwijdig": { "form": "evenwijdig", "cornetto_id": "r_a-10454", "cornetto_synset_id": "d_a-9265", "wordnet_id": "a-01718158", "pos": "JJ", "sense": "parallel", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "evident": { "form": "evident", "cornetto_id": "r_a-10455", "cornetto_synset_id": "n_a-522312", "wordnet_id": "a-01287808", "pos": "JJ", "sense": "volkomen duidelijk", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "evolutionair": { "form": "evolutionair", "cornetto_id": "r_a-10516", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "mbt. evolutie", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "exact": { "form": "exact", "cornetto_id": "r_a-10456", "cornetto_synset_id": "n_a-524178", "wordnet_id": "a-00540236", "pos": "JJ", "sense": "nauwkeurig", "polarity": "0.3", "subjectivity": "0.6", "intensity": "1.1", "confidence": "1.0" }, "exceptioneel": { "form": "exceptioneel", "cornetto_id": "r_a-10459", "cornetto_synset_id": "n_a-531811", "wordnet_id": "a-00487653", "pos": "JJ", "sense": "uitzonderlijk", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.6", "confidence": "0.7" }, "excessief": { "form": "excessief", "cornetto_id": "r_a-10519", "cornetto_synset_id": "n_a-522385", "wordnet_id": "a-00880586", "pos": "JJ", "sense": "buitensporig", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "exemplarisch": { "form": "exemplarisch", "cornetto_id": "r_a-10462", "cornetto_synset_id": "n_a-508641", "wordnet_id": "a-02585545", "pos": "JJ", "sense": "typisch", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.9" }, "exhibitionistisch": { "form": "exhibitionistisch", "cornetto_id": "r_a-10574", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "(als) van een exhibitionist", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "existentieel": { "form": "existentieel", "cornetto_id": "r_a-10520", "cornetto_synset_id": "n_a-508645", "wordnet_id": "a-00859632", "pos": "JJ", "sense": "mbt. existentie", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "exorbitant": { "form": "exorbitant", "cornetto_id": "r_a-10463", "cornetto_synset_id": "n_a-522385", "wordnet_id": "a-00880586", "pos": "JJ", "sense": "buitensporig", "polarity": "0.0", "subjectivity": "0.8", "intensity": "1.4", "confidence": "0.7" }, "exotisch": { "form": "exotisch", "cornetto_id": "r_a-10464", "cornetto_synset_id": "n_a-531732", "wordnet_id": "a-00608791", "pos": "JJ", "sense": "(als) uit verre, vreemde landen", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "experimenteel": { "form": "experimenteel", "cornetto_id": "r_a-10465", "cornetto_synset_id": "n_a-524456", "wordnet_id": "a-00858917", "pos": "JJ", "sense": "mbt. experimenten", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "expliciet": { "form": "expliciet", "cornetto_id": "r_a-10466", "cornetto_synset_id": "n_a-519610", "wordnet_id": "", "pos": "JJ", "sense": "met zoveel woorden", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "1.0" }, "explosief": { "form": "explosief", "cornetto_id": "r_a-10467", "cornetto_synset_id": "d_a-9461", "wordnet_id": "a-01144009", "pos": "JJ", "sense": "ontplofbaar", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.3", "confidence": "0.7" }, "expressief": { "form": "expressief", "cornetto_id": "r_a-10468", "cornetto_synset_id": "n_a-508691", "wordnet_id": "a-00497148", "pos": "JJ", "sense": "met veel expressie", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "expressionistisch": { "form": "expressionistisch", "cornetto_id": "r_a-10523", "cornetto_synset_id": "n_a-508694", "wordnet_id": "a-02835145", "pos": "JJ", "sense": "mbt. het expressionisme", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.1", "confidence": "0.7" }, "exquis": { "form": "exquis", "cornetto_id": "r_a-10469", "cornetto_synset_id": "n_a-531698", "wordnet_id": "a-02123579", "pos": "JJ", "sense": "voortreffelijk", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "extatisch": { "form": "extatisch", "cornetto_id": "r_a-10524", "cornetto_synset_id": "n_a-508699", "wordnet_id": "a-00908929", "pos": "JJ", "sense": "(als) in extase", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "extra": { "form": "extra", "cornetto_id": "r_a-10471", "cornetto_synset_id": "d_a-9187", "wordnet_id": "", "pos": "JJ", "sense": "meer dan normaal", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.3", "confidence": "1.0" }, "extreem": { "form": "extreem", "cornetto_id": "r_a-10474", "cornetto_synset_id": "n_a-508718", "wordnet_id": "a-00442361", "pos": "JJ", "sense": "uitzonderlijk", "polarity": "0.1", "subjectivity": "1.0", "intensity": "2.0", "confidence": "1.0" }, "extreem-links": { "form": "extreem-links", "cornetto_id": "r_a-10527", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "uiterst links", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.4", "confidence": "0.7" }, "extreem-nationalistisch": { "form": "extreem-nationalistisch", "cornetto_id": "r_a-10528", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "uiterst nationalistisch", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "extreem-rechts": { "form": "extreem-rechts", "cornetto_id": "r_a-10529", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "uiterst rechts", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "extremistisch": { "form": "extremistisch", "cornetto_id": "r_a-10530", "cornetto_synset_id": "n_a-508719", "wordnet_id": "a-01535270", "pos": "JJ", "sense": "neigend naar extremisme", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.3", "confidence": "0.7" }, "exuberant": { "form": "exuberant", "cornetto_id": "r_a-10531", "cornetto_synset_id": "n_a-522302", "wordnet_id": "a-00015247", "pos": "JJ", "sense": "overdadig", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "fabelachtig": { "form": "fabelachtig", "cornetto_id": "r_a-10771", "cornetto_synset_id": "n_a-510820", "wordnet_id": "a-01576071", "pos": "JJ", "sense": "als in fabels", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.7", "confidence": "0.9" }, "fabuleus": { "form": "fabuleus", "cornetto_id": "r_a-10623", "cornetto_synset_id": "n_a-521086", "wordnet_id": "a-00645493", "pos": "JJ", "sense": "onwaarschijnlijk veel, mooi etc.", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.3", "confidence": "0.7" }, "fail": { "form": "fail", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "FW", "sense": "", "polarity": "-0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "failliet": { "form": "failliet", "cornetto_id": "r_a-10626", "cornetto_synset_id": "d_a-9266", "wordnet_id": "a-02023287", "pos": "JJ", "sense": "bankroet", "polarity": "-0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "fair": { "form": "fair", "cornetto_id": "r_a-10627", "cornetto_synset_id": "n_a-508775", "wordnet_id": "a-00956131", "pos": "JJ", "sense": "eerlijk", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "faliekant": { "form": "faliekant", "cornetto_id": "r_a-10773", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "helemaal verkeerd", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "fameus": { "form": "fameus", "cornetto_id": "r_a-10629", "cornetto_synset_id": "n_a-503694", "wordnet_id": "a-01375831", "pos": "JJ", "sense": "vermaard", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "familiaal": { "form": "familiaal", "cornetto_id": "r_a-10630", "cornetto_synset_id": "n_a-508789", "wordnet_id": "a-01314537", "pos": "JJ", "sense": "mbt. het gezin", "polarity": "0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "fanatiek": { "form": "fanatiek", "cornetto_id": "r_a-10634", "cornetto_synset_id": "n_a-508813", "wordnet_id": "a-01725712", "pos": "JJ", "sense": "bezeten", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "fantasierijk": { "form": "fantasierijk", "cornetto_id": "r_a-10636", "cornetto_synset_id": "n_a-506150", "wordnet_id": "a-00643863", "pos": "JJ", "sense": "met veel fantasie", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "fantasievol": { "form": "fantasievol", "cornetto_id": "d_a-406725", "cornetto_synset_id": "n_a-506150", "wordnet_id": "a-00643863", "pos": "JJ", "sense": "", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "fantastisch": { "form": "fantastisch", "cornetto_id": "r_a-10638", "cornetto_synset_id": "n_a-532913", "wordnet_id": "a-00012071", "pos": "JJ", "sense": "verzonnen", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "fascinerend": { "form": "fascinerend", "cornetto_id": "r_a-10640", "cornetto_synset_id": "n_a-508834", "wordnet_id": "", "pos": "JJ", "sense": "boeiend", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "fascistisch": { "form": "fascistisch", "cornetto_id": "r_a-10641", "cornetto_synset_id": "n_a-508835", "wordnet_id": "a-02920769", "pos": "JJ", "sense": "mbt. het fascisme", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "fataal": { "form": "fataal", "cornetto_id": "r_a-10643", "cornetto_synset_id": "n_a-520118", "wordnet_id": "a-00586183", "pos": "JJ", "sense": "noodlottig", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.1", "confidence": "1.0" }, "fatsoenlijk": { "form": "fatsoenlijk", "cornetto_id": "r_a-10646", "cornetto_synset_id": "n_a-525317", "wordnet_id": "a-01123879", "pos": "JJ", "sense": "behoorlijk, redelijk", "polarity": "0.4", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "fatterig": { "form": "fatterig", "cornetto_id": "r_a-10647", "cornetto_synset_id": "n_a-508846", "wordnet_id": "a-00849912", "pos": "JJ", "sense": "dandy-achtig", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "favoriet": { "form": "favoriet", "cornetto_id": "r_a-10784", "cornetto_synset_id": "n_a-508852", "wordnet_id": "a-01935935", "pos": "JJ", "sense": "als winnaar getipt", "polarity": "0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "feest": { "form": "feest", "cornetto_id": "r_n-13097", "cornetto_synset_id": "d_n-27968", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "0.5", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.9" }, "feestelijk": { "form": "feestelijk", "cornetto_id": "r_a-10652", "cornetto_synset_id": "d_a-9269", "wordnet_id": "a-01367431", "pos": "JJ", "sense": "mbt. een feest", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "feeëriek": { "form": "feeëriek", "cornetto_id": "r_a-10651", "cornetto_synset_id": "n_a-528807", "wordnet_id": "a-00166753", "pos": "JJ", "sense": "sprookjesachtig", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "feilloos": { "form": "feilloos", "cornetto_id": "r_a-10653", "cornetto_synset_id": "n_a-509317", "wordnet_id": "a-00247247", "pos": "JJ", "sense": "zonder een enkele fout", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.2", "confidence": "0.7" }, "feitelijk": { "form": "feitelijk", "cornetto_id": "r_a-10654", "cornetto_synset_id": "d_a-9613", "wordnet_id": "a-01932973", "pos": "JJ", "sense": "eigenlijk", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "fel": { "form": "fel", "cornetto_id": "r_a-10657", "cornetto_synset_id": "n_a-508890", "wordnet_id": "a-01803792", "pos": "JJ", "sense": "hel", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "felbegeerd": { "form": "felbegeerd", "cornetto_id": "r_a-10658", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "vurig begeerd", "polarity": "0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "fenomenaal": { "form": "fenomenaal", "cornetto_id": "r_a-10662", "cornetto_synset_id": "n_a-510820", "wordnet_id": "a-01576071", "pos": "JJ", "sense": "buitengewoon", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.7", "confidence": "1.0" }, "ferm": { "form": "ferm", "cornetto_id": "r_a-10664", "cornetto_synset_id": "n_a-516007", "wordnet_id": "a-00262792", "pos": "JJ", "sense": "flink", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "fervent": { "form": "fervent", "cornetto_id": "r_a-10665", "cornetto_synset_id": "n_a-522411", "wordnet_id": "a-00347571", "pos": "JJ", "sense": "vurig", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "fiasco": { "form": "fiasco", "cornetto_id": "r_n-13160", "cornetto_synset_id": "d_n-40754", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "fictief": { "form": "fictief", "cornetto_id": "r_a-10666", "cornetto_synset_id": "n_a-532913", "wordnet_id": "a-00012071", "pos": "JJ", "sense": "verzonnen, niet echt", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "fictioneel": { "form": "fictioneel", "cornetto_id": "d_a-80087", "cornetto_synset_id": "n_a-532913", "wordnet_id": "a-00012071", "pos": "JJ", "sense": "", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "figuratief": { "form": "figuratief", "cornetto_id": "r_a-10669", "cornetto_synset_id": "n_a-503317", "wordnet_id": "a-00402419", "pos": "JJ", "sense": "niet abstract", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.9" }, "figuurlijk": { "form": "figuurlijk", "cornetto_id": "r_a-10670", "cornetto_synset_id": "n_a-508972", "wordnet_id": "a-01419784", "pos": "JJ", "sense": "niet letterlijk", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "1.0" }, "fijn": { "form": "fijn", "cornetto_id": "r_a-10672", "cornetto_synset_id": "c_567", "wordnet_id": "", "pos": "JJ", "sense": "niet grof", "polarity": "0.2", "subjectivity": "0.6", "intensity": "0.9", "confidence": "1.0" }, "fijnbesnaard": { "form": "fijnbesnaard", "cornetto_id": "r_a-10674", "cornetto_synset_id": "n_a-508997", "wordnet_id": "", "pos": "JJ", "sense": "fijngevoelig", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "fijnzinnig": { "form": "fijnzinnig", "cornetto_id": "r_a-10678", "cornetto_synset_id": "n_a-508997", "wordnet_id": "", "pos": "JJ", "sense": "subtiel", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "fiks": { "form": "fiks", "cornetto_id": "r_a-10679", "cornetto_synset_id": "n_r-509139", "wordnet_id": "a-00624026", "pos": "JJ", "sense": "flink", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.3", "confidence": "0.7" }, "filantropisch": { "form": "filantropisch", "cornetto_id": "r_a-10680", "cornetto_synset_id": "n_a-517266", "wordnet_id": "a-00223802", "pos": "JJ", "sense": "menslievend", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.4", "confidence": "0.7" }, "filmisch": { "form": "filmisch", "cornetto_id": "r_a-10682", "cornetto_synset_id": "n_a-509028", "wordnet_id": "a-02696795", "pos": "JJ", "sense": "(als) in de film", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "1.0" }, "filosofisch": { "form": "filosofisch", "cornetto_id": "r_a-10684", "cornetto_synset_id": "n_a-534873", "wordnet_id": "a-02858231", "pos": "JJ", "sense": "wijsgerig", "polarity": "0.2", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "finaal": { "form": "finaal", "cornetto_id": "r_a-10685", "cornetto_synset_id": "n_a-531661", "wordnet_id": "", "pos": "JJ", "sense": "uiteindelijk", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "financieel": { "form": "financieel", "cornetto_id": "r_a-10686", "cornetto_synset_id": "n_a-509056", "wordnet_id": "a-02775934", "pos": "JJ", "sense": "met betrekking tot geld", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "fit": { "form": "fit", "cornetto_id": "r_a-10688", "cornetto_synset_id": "c_709", "wordnet_id": "a-01017161", "pos": "JJ", "sense": "in goede conditie", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "flagrant": { "form": "flagrant", "cornetto_id": "r_a-10689", "cornetto_synset_id": "n_a-522312", "wordnet_id": "a-01287808", "pos": "JJ", "sense": "overduidelijk", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.5", "confidence": "0.7" }, "flamboyant": { "form": "flamboyant", "cornetto_id": "r_a-10788", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "zwierig", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "flauw": { "form": "flauw", "cornetto_id": "r_a-10695", "cornetto_synset_id": "c_534", "wordnet_id": "", "pos": "JJ", "sense": "niet grappig", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "fleurig": { "form": "fleurig", "cornetto_id": "r_a-10699", "cornetto_synset_id": "n_a-509078", "wordnet_id": "", "pos": "JJ", "sense": "vrolijk", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "flink": { "form": "flink", "cornetto_id": "r_a-10702", "cornetto_synset_id": "n_a-516007", "wordnet_id": "a-00262792", "pos": "JJ", "sense": "moedig", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "flinkgebouwd": { "form": "flinkgebouwd", "cornetto_id": "r_a-10703", "cornetto_synset_id": "d_a-9272", "wordnet_id": "a-02038126", "pos": "JJ", "sense": "forsgebouwd", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.3", "confidence": "0.7" }, "flinterdun": { "form": "flinterdun", "cornetto_id": "r_a-10704", "cornetto_synset_id": "n_a-509141", "wordnet_id": "a-02413390", "pos": "JJ", "sense": "heel dun", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "flitsend": { "form": "flitsend", "cornetto_id": "r_a-16577", "cornetto_synset_id": "n_a-534732", "wordnet_id": "a-00921369", "pos": "JJ", "sense": "snel", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "flop": { "form": "flop", "cornetto_id": "r_n-13393", "cornetto_synset_id": "d_n-40754", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.9" }, "florissant": { "form": "florissant", "cornetto_id": "r_a-10706", "cornetto_synset_id": "n_a-504403", "wordnet_id": "a-00177547", "pos": "JJ", "sense": "bloeiend", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "fluks": { "form": "fluks", "cornetto_id": "d_a-406758", "cornetto_synset_id": "n_a-528140", "wordnet_id": "a-00976508", "pos": "JJ", "sense": "", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "flut": { "form": "flut", "cornetto_id": "r_a-10708", "cornetto_synset_id": "n_a-534085", "wordnet_id": "a-00193367", "pos": "JJ", "sense": "waardeloos", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "fnuikend": { "form": "fnuikend", "cornetto_id": "r_a-10711", "cornetto_synset_id": "n_a-520118", "wordnet_id": "a-00586183", "pos": "JJ", "sense": "funest", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "forfaitair": { "form": "forfaitair", "cornetto_id": "r_a-10717", "cornetto_synset_id": "n_a-509244", "wordnet_id": "a-02476338", "pos": "JJ", "sense": "vooraf vastgesteld", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.1", "confidence": "0.7" }, "formeel": { "form": "formeel", "cornetto_id": "r_a-10789", "cornetto_synset_id": "n_a-509253", "wordnet_id": "a-01042491", "pos": "JJ", "sense": "officieel", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "formidabel": { "form": "formidabel", "cornetto_id": "r_a-10721", "cornetto_synset_id": "n_a-510820", "wordnet_id": "a-01576071", "pos": "JJ", "sense": "geweldig", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "fors": { "form": "fors", "cornetto_id": "r_a-10722", "cornetto_synset_id": "d_a-9321", "wordnet_id": "a-00624026", "pos": "JJ", "sense": "flink", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "forsgebouwd": { "form": "forsgebouwd", "cornetto_id": "r_a-10723", "cornetto_synset_id": "d_a-9272", "wordnet_id": "a-02038126", "pos": "JJ", "sense": "flinkgebouwd", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.3", "confidence": "0.7" }, "fortuinlijk": { "form": "fortuinlijk", "cornetto_id": "r_a-10724", "cornetto_synset_id": "d_a-9296", "wordnet_id": "a-01048406", "pos": "JJ", "sense": "voorspoedig", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.3", "confidence": "0.7" }, "fout": { "form": "fout", "cornetto_id": "r_a-10730", "cornetto_synset_id": "n_a-509314", "wordnet_id": "a-00632949", "pos": "JJ", "sense": "onjuist", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "foutief": { "form": "foutief", "cornetto_id": "r_a-10731", "cornetto_synset_id": "n_a-509314", "wordnet_id": "a-00632949", "pos": "JJ", "sense": "verkeerd", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "fraai": { "form": "fraai", "cornetto_id": "r_a-10733", "cornetto_synset_id": "c_178", "wordnet_id": "", "pos": "JJ", "sense": "mooi", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "fragmentarisch": { "form": "fragmentarisch", "cornetto_id": "r_a-10735", "cornetto_synset_id": "n_a-509329", "wordnet_id": "a-02481012", "pos": "JJ", "sense": "uit brokstukken bestaand", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.1", "confidence": "0.7" }, "frank": { "form": "frank", "cornetto_id": "r_a-10741", "cornetto_synset_id": "d_a-9207", "wordnet_id": "a-00155720", "pos": "JJ", "sense": "vrijpostig", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "frappant": { "form": "frappant", "cornetto_id": "r_a-10745", "cornetto_synset_id": "n_a-522067", "wordnet_id": "a-00579498", "pos": "JJ", "sense": "treffend", "polarity": "0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "frauduleus": { "form": "frauduleus", "cornetto_id": "r_a-10746", "cornetto_synset_id": "n_a-509359", "wordnet_id": "a-01223941", "pos": "JJ", "sense": "bedrieglijk", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "frequent": { "form": "frequent", "cornetto_id": "r_a-10750", "cornetto_synset_id": "n_r-531906", "wordnet_id": "", "pos": "JJ", "sense": "veelvuldig", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.1", "confidence": "1.0" }, "fris": { "form": "fris", "cornetto_id": "r_a-10755", "cornetto_synset_id": "d_a-9518", "wordnet_id": "a-00417413", "pos": "JJ", "sense": "schoon", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "fruitig": { "form": "fruitig", "cornetto_id": "r_a-10758", "cornetto_synset_id": "n_a-509411", "wordnet_id": "a-02074929", "pos": "JJ", "sense": "met een fruitsmaak", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "frustratie": { "form": "frustratie", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "functioneel": { "form": "functioneel", "cornetto_id": "r_a-10792", "cornetto_synset_id": "n_a-509439", "wordnet_id": "a-01090308", "pos": "JJ", "sense": "mbt. de functie(s)", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "fundamentalistisch": { "form": "fundamentalistisch", "cornetto_id": "r_a-10761", "cornetto_synset_id": "n_a-509440", "wordnet_id": "a-02953235", "pos": "JJ", "sense": "mbt. fundamentalisme", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "fundamenteel": { "form": "fundamenteel", "cornetto_id": "r_a-10762", "cornetto_synset_id": "n_a-509441", "wordnet_id": "a-00095094", "pos": "JJ", "sense": "essentieel", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "funest": { "form": "funest", "cornetto_id": "r_a-10763", "cornetto_synset_id": "n_a-520118", "wordnet_id": "a-00586183", "pos": "JJ", "sense": "met fatale gevolgen", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.1", "confidence": "1.0" }, "furieus": { "form": "furieus", "cornetto_id": "r_a-10764", "cornetto_synset_id": "d_a-9618", "wordnet_id": "a-00114454", "pos": "JJ", "sense": "woedend", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "futiel": { "form": "futiel", "cornetto_id": "r_a-10765", "cornetto_synset_id": "c_373", "wordnet_id": "a-00107384", "pos": "JJ", "sense": "onbelangrijk", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "0.9", "confidence": "0.8" }, "futloos": { "form": "futloos", "cornetto_id": "r_a-10766", "cornetto_synset_id": "d_a-9392", "wordnet_id": "", "pos": "JJ", "sense": "slap", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "futuristisch": { "form": "futuristisch", "cornetto_id": "r_a-10767", "cornetto_synset_id": "n_a-509452", "wordnet_id": "a-02993094", "pos": "JJ", "sense": "als uit de toekomst afkomstig", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "fysiek": { "form": "fysiek", "cornetto_id": "r_a-10768", "cornetto_synset_id": "d_a-9613", "wordnet_id": "a-01932973", "pos": "JJ", "sense": "lichamelijk", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "fysiologisch": { "form": "fysiologisch", "cornetto_id": "r_a-10769", "cornetto_synset_id": "n_a-509465", "wordnet_id": "a-01779558", "pos": "JJ", "sense": "mbt. de fysiologie", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "gaaf": { "form": "gaaf", "cornetto_id": "r_a-10794", "cornetto_synset_id": "c_294", "wordnet_id": "", "pos": "JJ", "sense": "erg goed", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "gaar": { "form": "gaar", "cornetto_id": "r_a-11497", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "uitgeput", "polarity": "0.0", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "gallisch": { "form": "gallisch", "cornetto_id": "r_a-10798", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "kwaad", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "gans": { "form": "gans", "cornetto_id": "r_a-10803", "cornetto_synset_id": "n_a-533538", "wordnet_id": "a-00520214", "pos": "JJ", "sense": "geheel", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.7", "confidence": "1.0" }, "gastvrij": { "form": "gastvrij", "cornetto_id": "r_a-10804", "cornetto_synset_id": "n_a-509628", "wordnet_id": "a-01244106", "pos": "JJ", "sense": "hartelijk voor gasten", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "gay": { "form": "gay", "cornetto_id": "r_a-11209", "cornetto_synset_id": "n_a-509638", "wordnet_id": "", "pos": "JJ", "sense": "homoseksueel", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "geacht": { "form": "geacht", "cornetto_id": "r_a-10805", "cornetto_synset_id": "n_a-509670", "wordnet_id": "a-01983432", "pos": "JJ", "sense": "beleefde aanspreekvorm", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "geavanceerd": { "form": "geavanceerd", "cornetto_id": "r_a-10809", "cornetto_synset_id": "n_a-509686", "wordnet_id": "a-01208571", "pos": "JJ", "sense": "vooruitstrevend", "polarity": "0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "gebeten": { "form": "gebeten", "cornetto_id": "r_a-10814", "cornetto_synset_id": "n_a-509702", "wordnet_id": "", "pos": "JJ", "sense": "verbitterd", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "geboren": { "form": "geboren", "cornetto_id": "r_a-10817", "cornetto_synset_id": "d_a-9280", "wordnet_id": "a-00074346", "pos": "JJ", "sense": "ter wereld gebracht of ontstaan", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "geborgen": { "form": "geborgen", "cornetto_id": "r_a-10818", "cornetto_synset_id": "d_a-9281", "wordnet_id": "a-00066933", "pos": "JJ", "sense": "veilig", "polarity": "0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "gebronsd": { "form": "gebronsd", "cornetto_id": "r_a-11392", "cornetto_synset_id": "n_a-509767", "wordnet_id": "a-00244958", "pos": "JJ", "sense": "bronskleurig", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "gebruikelijk": { "form": "gebruikelijk", "cornetto_id": "r_a-10824", "cornetto_synset_id": "n_a-510863", "wordnet_id": "a-00666058", "pos": "JJ", "sense": "gangbaar", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "gebruikersvriendelijk": { "form": "gebruikersvriendelijk", "cornetto_id": "r_a-11393", "cornetto_synset_id": "n_a-509764", "wordnet_id": "a-00019731", "pos": "JJ", "sense": "tegemoetkomend aan gebruiker", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "gecharmeerd": { "form": "gecharmeerd", "cornetto_id": "r_a-10826", "cornetto_synset_id": "d_a-9546", "wordnet_id": "a-00362467", "pos": "JJ", "sense": "ingenomen met iets of iemand", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "gecompliceerd": { "form": "gecompliceerd", "cornetto_id": "r_a-10828", "cornetto_synset_id": "d_a-9348", "wordnet_id": "a-02176178", "pos": "JJ", "sense": "ingewikkeld", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "gedachteloos": { "form": "gedachteloos", "cornetto_id": "r_a-10832", "cornetto_synset_id": "n_a-509789", "wordnet_id": "a-00312234", "pos": "JJ", "sense": "onnadenkend", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "gedateerd": { "form": "gedateerd", "cornetto_id": "r_a-11394", "cornetto_synset_id": "n_a-532629", "wordnet_id": "a-00669138", "pos": "JJ", "sense": "verouderd", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "gedeeltelijk": { "form": "gedeeltelijk", "cornetto_id": "r_a-10835", "cornetto_synset_id": "n_r-509803", "wordnet_id": "a-00524693", "pos": "JJ", "sense": "niet volledig", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "0.8", "confidence": "1.0" }, "gedegen": { "form": "gedegen", "cornetto_id": "r_a-10836", "cornetto_synset_id": "n_a-511592", "wordnet_id": "", "pos": "JJ", "sense": "goed doordacht", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "gedenkwaardig": { "form": "gedenkwaardig", "cornetto_id": "r_a-10841", "cornetto_synset_id": "n_a-509822", "wordnet_id": "a-01040752", "pos": "JJ", "sense": "de moeite waard zijnde", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "gedesillusioneerd": { "form": "gedesillusioneerd", "cornetto_id": "r_a-10842", "cornetto_synset_id": "n_a-521435", "wordnet_id": "a-00866392", "pos": "JJ", "sense": "ontgoocheld", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "gedetailleerd": { "form": "gedetailleerd", "cornetto_id": "r_a-10844", "cornetto_synset_id": "n_a-509831", "wordnet_id": "a-00310433", "pos": "JJ", "sense": "tot in de details", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "gedoemd": { "form": "gedoemd", "cornetto_id": "r_a-10851", "cornetto_synset_id": "n_a-521606", "wordnet_id": "a-00343360", "pos": "JJ", "sense": "voorbeschikt voor iets slechts", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.3", "confidence": "0.7" }, "geducht": { "form": "geducht", "cornetto_id": "r_a-10857", "cornetto_synset_id": "n_a-510794", "wordnet_id": "a-00193799", "pos": "JJ", "sense": "vrees of ontzag inboezemend", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "gedupeerd": { "form": "gedupeerd", "cornetto_id": "r_a-11235", "cornetto_synset_id": "d_v-1153", "wordnet_id": "", "pos": "JJ", "sense": "benadeeld zijnde", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "geel": { "form": "geel", "cornetto_id": "r_a-10864", "cornetto_synset_id": "n_a-509864", "wordnet_id": "a-00385756", "pos": "JJ", "sense": "kleur hebbend van een eidooier", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "geestdodend": { "form": "geestdodend", "cornetto_id": "r_a-10868", "cornetto_synset_id": "n_a-509873", "wordnet_id": "a-00800248", "pos": "JJ", "sense": "afstompend", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "geestdriftig": { "form": "geestdriftig", "cornetto_id": "r_a-10869", "cornetto_synset_id": "d_a-9262", "wordnet_id": "a-00885695", "pos": "JJ", "sense": "vol geestdrift", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "geestelijk": { "form": "geestelijk", "cornetto_id": "r_a-10871", "cornetto_synset_id": "d_a-9319", "wordnet_id": "a-01781478", "pos": "JJ", "sense": "betrekking hebbend op godsdienst", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "geestig": { "form": "geestig", "cornetto_id": "r_a-10872", "cornetto_synset_id": "d_a-9285", "wordnet_id": "a-00804371", "pos": "JJ", "sense": "humoristisch", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "geestverruimend": { "form": "geestverruimend", "cornetto_id": "r_a-10874", "cornetto_synset_id": "n_a-503993", "wordnet_id": "a-00086801", "pos": "JJ", "sense": "de geest ruimer makend", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "geeuw": { "form": "geeuw", "cornetto_id": "r_n-14263", "cornetto_synset_id": "d_n-22502", "wordnet_id": "", "pos": "UH", "sense": "", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.9" }, "gefingeerd": { "form": "gefingeerd", "cornetto_id": "r_a-10876", "cornetto_synset_id": "n_a-532913", "wordnet_id": "a-00012071", "pos": "JJ", "sense": "verzonnen", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "geforceerd": { "form": "geforceerd", "cornetto_id": "r_a-10878", "cornetto_synset_id": "n_a-521304", "wordnet_id": "a-00073048", "pos": "JJ", "sense": "niet van harte gaand", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "gefundeerd": { "form": "gefundeerd", "cornetto_id": "r_a-10881", "cornetto_synset_id": "n_a-509929", "wordnet_id": "", "pos": "JJ", "sense": "gegrond", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "gegoed": { "form": "gegoed", "cornetto_id": "r_a-10883", "cornetto_synset_id": "d_a-9505", "wordnet_id": "a-01049352", "pos": "JJ", "sense": "met veel bezittingen en geld", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.9" }, "gegrond": { "form": "gegrond", "cornetto_id": "r_a-10886", "cornetto_synset_id": "n_a-509929", "wordnet_id": "", "pos": "JJ", "sense": "gefundeerd", "polarity": "0.2", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "gehaaid": { "form": "gehaaid", "cornetto_id": "r_a-10889", "cornetto_synset_id": "n_a-510849", "wordnet_id": "a-00148078", "pos": "JJ", "sense": "gewiekst", "polarity": "-0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "gehaast": { "form": "gehaast", "cornetto_id": "r_a-10890", "cornetto_synset_id": "n_a-511750", "wordnet_id": "a-00086210", "pos": "JJ", "sense": "haastig", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.9" }, "gehandicapt": { "form": "gehandicapt", "cornetto_id": "r_a-11516", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "in een minder gunstige positie", "polarity": "-0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "geheel": { "form": "geheel", "cornetto_id": "r_a-10894", "cornetto_synset_id": "n_a-533538", "wordnet_id": "a-00520214", "pos": "JJ", "sense": "compleet", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.6", "confidence": "1.0" }, "geheim": { "form": "geheim", "cornetto_id": "r_a-10895", "cornetto_synset_id": "d_a-9288", "wordnet_id": "a-00028984", "pos": "JJ", "sense": "verborgen", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "geheimzinnig": { "form": "geheimzinnig", "cornetto_id": "r_a-10896", "cornetto_synset_id": "d_a-9495", "wordnet_id": "a-00102930", "pos": "JJ", "sense": "niet te verklaren", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "gehoorzaam": { "form": "gehoorzaam", "cornetto_id": "r_a-10897", "cornetto_synset_id": "d_a-9289", "wordnet_id": "a-02564986", "pos": "JJ", "sense": "doend wat iemand zegt", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "gehuwd": { "form": "gehuwd", "cornetto_id": "r_a-11244", "cornetto_synset_id": "n_a-510710", "wordnet_id": "a-01482140", "pos": "JJ", "sense": "getrouwd", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "geinig": { "form": "geinig", "cornetto_id": "r_a-10902", "cornetto_synset_id": "n_a-511389", "wordnet_id": "", "pos": "JJ", "sense": "grappig", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "gek": { "form": "gek", "cornetto_id": "r_a-10961", "cornetto_synset_id": "n_a-509996", "wordnet_id": "a-01464433", "pos": "JJ", "sense": "zeer gesteld op", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "gekmakend": { "form": "gekmakend", "cornetto_id": "r_a-11254", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "waar je gek van wordt", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "geknipt": { "form": "geknipt", "cornetto_id": "r_a-11256", "cornetto_synset_id": "n_a-510023", "wordnet_id": "", "pos": "JJ", "sense": "geschikt", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "gekrenkt": { "form": "gekrenkt", "cornetto_id": "r_a-11257", "cornetto_synset_id": "n_a-503525", "wordnet_id": "a-00116529", "pos": "JJ", "sense": "gekwetst", "polarity": "-0.8", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "gekunsteld": { "form": "gekunsteld", "cornetto_id": "r_a-10967", "cornetto_synset_id": "n_a-510232", "wordnet_id": "a-00073048", "pos": "JJ", "sense": "gemaakt", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "gekwetst": { "form": "gekwetst", "cornetto_id": "r_a-11521", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "boos of beledigd", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "gelaten": { "form": "gelaten", "cornetto_id": "r_a-10969", "cornetto_synset_id": "n_a-510073", "wordnet_id": "a-00039592", "pos": "JJ", "sense": "lijdzaam", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "gelauwerd": { "form": "gelauwerd", "cornetto_id": "r_a-11269", "cornetto_synset_id": "d_v-3907", "wordnet_id": "", "pos": "JJ", "sense": "met overwinningskrans", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "geldig": { "form": "geldig", "cornetto_id": "r_a-10971", "cornetto_synset_id": "n_a-510088", "wordnet_id": "a-00666058", "pos": "JJ", "sense": "bruikbaar", "polarity": "0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "geldverslindend": { "form": "geldverslindend", "cornetto_id": "r_a-11271", "cornetto_synset_id": "n_a-510105", "wordnet_id": "a-00933154", "pos": "JJ", "sense": "zeer of onevenredig veel geld eisend", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "geldverspilling": { "form": "geldverspilling", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "geleidelijk": { "form": "geleidelijk", "cornetto_id": "r_a-10976", "cornetto_synset_id": "n_a-510133", "wordnet_id": "", "pos": "JJ", "sense": "in geordende, kalme opeenvolging", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "geletterd": { "form": "geletterd", "cornetto_id": "r_a-10977", "cornetto_synset_id": "n_a-503545", "wordnet_id": "a-00830051", "pos": "JJ", "sense": "belezen", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "gelezen": { "form": "gelezen", "cornetto_id": "r_a-11272", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "veel lezers tellend", "polarity": "0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "geliefd": { "form": "geliefd", "cornetto_id": "r_a-10978", "cornetto_synset_id": "n_a-510141", "wordnet_id": "a-01462324", "pos": "JJ", "sense": "dierbaar of favoriet", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "geliefde": { "form": "geliefde", "cornetto_id": "r_n-14469", "cornetto_synset_id": "d_n-33758", "wordnet_id": "n-09849598", "pos": "NN", "sense": "", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "gelig": { "form": "gelig", "cornetto_id": "r_a-11274", "cornetto_synset_id": "n_a-510144", "wordnet_id": "a-00385756", "pos": "JJ", "sense": "enigszins vergeeld", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "gelijk": { "form": "gelijk", "cornetto_id": "r_a-11527", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "effen", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "gelijkgestemd": { "form": "gelijkgestemd", "cornetto_id": "r_a-11275", "cornetto_synset_id": "n_a-507997", "wordnet_id": "a-00553478", "pos": "JJ", "sense": "met gelijke zienswijze", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "gelijkgezind": { "form": "gelijkgezind", "cornetto_id": "r_a-11276", "cornetto_synset_id": "n_a-507997", "wordnet_id": "a-00553478", "pos": "JJ", "sense": "dezelfde denkwijze toegedaan", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "gelijkluidend": { "form": "gelijkluidend", "cornetto_id": "r_a-10981", "cornetto_synset_id": "n_a-510158", "wordnet_id": "a-01543937", "pos": "JJ", "sense": "gelijk van klank of inhoud", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "gelijkmatig": { "form": "gelijkmatig", "cornetto_id": "r_a-10982", "cornetto_synset_id": "n_a-510160", "wordnet_id": "", "pos": "JJ", "sense": "steeds gelijk", "polarity": "0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "gelijknamig": { "form": "gelijknamig", "cornetto_id": "r_a-11277", "cornetto_synset_id": "n_a-510166", "wordnet_id": "a-01409581", "pos": "JJ", "sense": "dezelfde naam dragend", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "gelijksoortig": { "form": "gelijksoortig", "cornetto_id": "r_a-11278", "cornetto_synset_id": "d_a-9292", "wordnet_id": "a-01199751", "pos": "JJ", "sense": "geheel van dezelfde hoedanigheid", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "gelikt": { "form": "gelikt", "cornetto_id": "r_a-11528", "cornetto_synset_id": "n_a-510182", "wordnet_id": "a-00694773", "pos": "JJ", "sense": "gladjanusachtig", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "geloofwaardig": { "form": "geloofwaardig", "cornetto_id": "r_a-11280", "cornetto_synset_id": "d_a-9295", "wordnet_id": "a-00644839", "pos": "JJ", "sense": "aannemelijk", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.1", "confidence": "1.0" }, "gelovig": { "form": "gelovig", "cornetto_id": "r_a-10933", "cornetto_synset_id": "d_a-9319", "wordnet_id": "a-01781478", "pos": "JJ", "sense": "godsdienstig", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "geluidloos": { "form": "geluidloos", "cornetto_id": "r_a-11282", "cornetto_synset_id": "n_a-529361", "wordnet_id": "a-01919428", "pos": "JJ", "sense": "zonder geluid voort te brengen", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "geluidsoverlast": { "form": "geluidsoverlast", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.2", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "gelukkig": { "form": "gelukkig", "cornetto_id": "r_a-10907", "cornetto_synset_id": "d_a-9296", "wordnet_id": "a-01048406", "pos": "JJ", "sense": "geluk brengend", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "gelukzalig": { "form": "gelukzalig", "cornetto_id": "r_a-10908", "cornetto_synset_id": "n_a-510229", "wordnet_id": "a-00670741", "pos": "JJ", "sense": "uiterst gelukkig", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "gemaakt": { "form": "gemaakt", "cornetto_id": "r_a-10909", "cornetto_synset_id": "n_a-510232", "wordnet_id": "a-00073048", "pos": "JJ", "sense": "onecht", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "gemakkelijk": { "form": "gemakkelijk", "cornetto_id": "r_a-11531", "cornetto_synset_id": "c_392", "wordnet_id": "a-00711831", "pos": "JJ", "sense": "flexibel", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "gemakzuchtig": { "form": "gemakzuchtig", "cornetto_id": "r_a-10912", "cornetto_synset_id": "n_a-517771", "wordnet_id": "", "pos": "JJ", "sense": "inspanning schromend", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "gemaskerd": { "form": "gemaskerd", "cornetto_id": "r_a-10913", "cornetto_synset_id": "n_a-510242", "wordnet_id": "a-01707230", "pos": "JJ", "sense": "met een masker op", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "gemeen": { "form": "gemeen", "cornetto_id": "r_a-11532", "cornetto_synset_id": "n_a-521886", "wordnet_id": "a-01861205", "pos": "JJ", "sense": "openbaar", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.1", "confidence": "1.0" }, "gemeenschappelijk": { "form": "gemeenschappelijk", "cornetto_id": "r_a-10918", "cornetto_synset_id": "n_a-510254", "wordnet_id": "a-00492677", "pos": "JJ", "sense": "gezamenlijk", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.9" }, "gemeentelijk": { "form": "gemeentelijk", "cornetto_id": "r_a-10919", "cornetto_synset_id": "n_a-510269", "wordnet_id": "a-02696920", "pos": "JJ", "sense": "met een gemeente te maken hebbend", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "gemiddeld": { "form": "gemiddeld", "cornetto_id": "r_a-10925", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "de gemiddelde waarde hebbend", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "gemotiveerd": { "form": "gemotiveerd", "cornetto_id": "r_a-11284", "cornetto_synset_id": "n_a-510294", "wordnet_id": "a-01558385", "pos": "JJ", "sense": "motivatie bezittend", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "genaamd": { "form": "genaamd", "cornetto_id": "r_a-10954", "cornetto_synset_id": "n_a-510301", "wordnet_id": "", "pos": "JJ", "sense": "de genoemde naam dragend", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "0.9", "confidence": "0.7" }, "genadeloos": { "form": "genadeloos", "cornetto_id": "r_a-10955", "cornetto_synset_id": "n_a-518422", "wordnet_id": "a-01507402", "pos": "JJ", "sense": "meedogenloos of onverbiddelijk", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "genealogisch": { "form": "genealogisch", "cornetto_id": "r_a-11285", "cornetto_synset_id": "n_a-510309", "wordnet_id": "a-03067329", "pos": "JJ", "sense": "geslachtkundig", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "geneeskundig": { "form": "geneeskundig", "cornetto_id": "r_a-10934", "cornetto_synset_id": "n_a-510314", "wordnet_id": "a-01166656", "pos": "JJ", "sense": "medisch", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "generaal": { "form": "generaal", "cornetto_id": "r_a-10938", "cornetto_synset_id": "d_a-9152", "wordnet_id": "a-00783840", "pos": "JJ", "sense": "algemeen", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "geniaal": { "form": "geniaal", "cornetto_id": "r_a-11535", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "blijk gevend van genie", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "geniepig": { "form": "geniepig", "cornetto_id": "r_a-10942", "cornetto_synset_id": "n_a-510339", "wordnet_id": "a-00148078", "pos": "JJ", "sense": "stiekem en een beetje gemeen", "polarity": "0.1", "subjectivity": "0.9", "intensity": "0.9", "confidence": "0.7" }, "genitaal": { "form": "genitaal", "cornetto_id": "r_a-11427", "cornetto_synset_id": "n_a-510343", "wordnet_id": "a-02881567", "pos": "JJ", "sense": "betrekking hebbend op geslachtsdelen", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "genoeglijk": { "form": "genoeglijk", "cornetto_id": "r_a-10943", "cornetto_synset_id": "n_a-510897", "wordnet_id": "a-00166146", "pos": "JJ", "sense": "plezierig", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "genoegzaam": { "form": "genoegzaam", "cornetto_id": "r_a-10944", "cornetto_synset_id": "n_a-510344", "wordnet_id": "", "pos": "JJ", "sense": "voldoende", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.2", "confidence": "0.7" }, "genot": { "form": "genot", "cornetto_id": "r_n-14686", "cornetto_synset_id": "d_n-24522", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "0.5", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.9" }, "genoten": { "form": "genoten", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "0.4", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.9" }, "genuanceerd": { "form": "genuanceerd", "cornetto_id": "r_a-10945", "cornetto_synset_id": "n_a-510358", "wordnet_id": "a-02507324", "pos": "JJ", "sense": "met onderscheid", "polarity": "0.0", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "geologisch": { "form": "geologisch", "cornetto_id": "r_a-11289", "cornetto_synset_id": "n_a-510371", "wordnet_id": "a-02905591", "pos": "JJ", "sense": "aardkunde betreffend", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "gepantserd": { "form": "gepantserd", "cornetto_id": "r_a-11294", "cornetto_synset_id": "n_a-534450", "wordnet_id": "a-01017439", "pos": "JJ", "sense": "van een pantser voorzien", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "gepassioneerd": { "form": "gepassioneerd", "cornetto_id": "r_a-11295", "cornetto_synset_id": "n_a-512115", "wordnet_id": "a-02278939", "pos": "JJ", "sense": "hartstochtelijk", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "geprononceerd": { "form": "geprononceerd", "cornetto_id": "r_a-10992", "cornetto_synset_id": "n_a-522312", "wordnet_id": "a-01287808", "pos": "JJ", "sense": "uitgesproken", "polarity": "0.0", "subjectivity": "0.1", "intensity": "0.9", "confidence": "0.7" }, "geraffineerd": { "form": "geraffineerd", "cornetto_id": "r_a-11539", "cornetto_synset_id": "d_a-9523", "wordnet_id": "a-00148078", "pos": "JJ", "sense": "doortrapt", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "gerechtelijk": { "form": "gerechtelijk", "cornetto_id": "r_a-10998", "cornetto_synset_id": "n_a-510462", "wordnet_id": "a-01400562", "pos": "JJ", "sense": "justitieel", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "gerechtigd": { "form": "gerechtigd", "cornetto_id": "r_a-10999", "cornetto_synset_id": "n_a-503941", "wordnet_id": "a-00178575", "pos": "JJ", "sense": "het recht hebbend iets te doen", "polarity": "0.6", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "gereformeerd": { "form": "gereformeerd", "cornetto_id": "r_a-11540", "cornetto_synset_id": "n_a-505317", "wordnet_id": "a-02952975", "pos": "JJ", "sense": "volgens de leer van Calvijn", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "geregeld": { "form": "geregeld", "cornetto_id": "r_a-11004", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "regelmatig terugkerend", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "geremd": { "form": "geremd", "cornetto_id": "r_a-11005", "cornetto_synset_id": "c_751", "wordnet_id": "a-00339941", "pos": "JJ", "sense": "niet vrij zijn in uitingen en reacties", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "gerenommeerd": { "form": "gerenommeerd", "cornetto_id": "r_a-11006", "cornetto_synset_id": "n_a-503694", "wordnet_id": "a-01375831", "pos": "JJ", "sense": "vermaard", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "gereputeerd": { "form": "gereputeerd", "cornetto_id": "d_a-90882", "cornetto_synset_id": "n_a-503694", "wordnet_id": "a-01375831", "pos": "JJ", "sense": "", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "gerespecteerd": { "form": "gerespecteerd", "cornetto_id": "r_a-11436", "cornetto_synset_id": "n_a-509670", "wordnet_id": "a-01983432", "pos": "JJ", "sense": "achtenswaardig", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "geriatrisch": { "form": "geriatrisch", "cornetto_id": "r_a-11437", "cornetto_synset_id": "n_a-510484", "wordnet_id": "a-02916539", "pos": "JJ", "sense": "de geriatrie betreffend", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "gerimpeld": { "form": "gerimpeld", "cornetto_id": "r_a-11440", "cornetto_synset_id": "n_a-510496", "wordnet_id": "a-00088157", "pos": "JJ", "sense": "rimpels of groeven hebbend", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "gering": { "form": "gering", "cornetto_id": "r_a-11011", "cornetto_synset_id": "n_a-520627", "wordnet_id": "a-00107384", "pos": "JJ", "sense": "met weinig betekenis", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "geringschattend": { "form": "geringschattend", "cornetto_id": "r_a-11012", "cornetto_synset_id": "n_a-518925", "wordnet_id": "a-00906655", "pos": "JJ", "sense": "blijk gevend van geringe dunk", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "geroutineerd": { "form": "geroutineerd", "cornetto_id": "r_a-11014", "cornetto_synset_id": "n_a-508489", "wordnet_id": "a-00935500", "pos": "JJ", "sense": "kundig en ervaren", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.9" }, "geruchtmakend": { "form": "geruchtmakend", "cornetto_id": "r_a-11015", "cornetto_synset_id": "n_a-522093", "wordnet_id": "a-00601783", "pos": "JJ", "sense": "opzienbarend", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "geruim": { "form": "geruim", "cornetto_id": "r_a-11016", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "vrij lang", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "geruisloos": { "form": "geruisloos", "cornetto_id": "r_a-11545", "cornetto_synset_id": "n_a-521336", "wordnet_id": "a-01608264", "pos": "JJ", "sense": "zonder veel opzien te wekken", "polarity": "0.2", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "gerust": { "form": "gerust", "cornetto_id": "r_a-11018", "cornetto_synset_id": "n_a-510537", "wordnet_id": "a-00015097", "pos": "JJ", "sense": "kalm", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "geschiedkundig": { "form": "geschiedkundig", "cornetto_id": "r_a-11020", "cornetto_synset_id": "n_a-510560", "wordnet_id": "a-01730060", "pos": "JJ", "sense": "historisch", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "geschikt": { "form": "geschikt", "cornetto_id": "r_a-11022", "cornetto_synset_id": "d_a-9306", "wordnet_id": "a-01020885", "pos": "JJ", "sense": "met juiste eigenschappen", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.1", "confidence": "1.0" }, "gesetteld": { "form": "gesetteld", "cornetto_id": "r_a-11026", "cornetto_synset_id": "d_a-9308", "wordnet_id": "a-00260695", "pos": "JJ", "sense": "sociaal op zijn plaats", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "geslaagd": { "form": "geslaagd", "cornetto_id": "r_a-11030", "cornetto_synset_id": "n_a-510582", "wordnet_id": "a-02331262", "pos": "JJ", "sense": "succesvol", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "geslachtsrijp": { "form": "geslachtsrijp", "cornetto_id": "r_a-11032", "cornetto_synset_id": "n_a-510591", "wordnet_id": "", "pos": "JJ", "sense": "klaar voor voortplanting", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "gespannen": { "form": "gespannen", "cornetto_id": "r_a-11038", "cornetto_synset_id": "n_a-535556", "wordnet_id": "a-02406370", "pos": "JJ", "sense": "nerveus", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "gespecialiseerd": { "form": "gespecialiseerd", "cornetto_id": "r_a-11315", "cornetto_synset_id": "d_a-9373", "wordnet_id": "a-00178811", "pos": "JJ", "sense": "toegespitst op iets specifieks", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "gestaag": { "form": "gestaag", "cornetto_id": "r_a-11318", "cornetto_synset_id": "n_a-510632", "wordnet_id": "", "pos": "JJ", "sense": "in gelijkblijvend tempo", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "gestoord": { "form": "gestoord", "cornetto_id": "r_a-11044", "cornetto_synset_id": "n_a-516037", "wordnet_id": "a-02075321", "pos": "JJ", "sense": "gek", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "gestreept": { "form": "gestreept", "cornetto_id": "r_a-11321", "cornetto_synset_id": "n_a-510658", "wordnet_id": "a-00222969", "pos": "JJ", "sense": "met strepen bedekt", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "gestrekt": { "form": "gestrekt", "cornetto_id": "r_a-11322", "cornetto_synset_id": "n_a-510659", "wordnet_id": "a-01432070", "pos": "JJ", "sense": "uitgestrekt", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "gestructureerd": { "form": "gestructureerd", "cornetto_id": "r_a-11323", "cornetto_synset_id": "n_a-510662", "wordnet_id": "a-01679744", "pos": "JJ", "sense": "een samenhangende structuur hebbend", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "getalenteerd": { "form": "getalenteerd", "cornetto_id": "r_a-11325", "cornetto_synset_id": "d_a-9174", "wordnet_id": "a-01119192", "pos": "JJ", "sense": "talent hebbend", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "getapt": { "form": "getapt", "cornetto_id": "r_a-11048", "cornetto_synset_id": "n_a-523989", "wordnet_id": "a-00414518", "pos": "JJ", "sense": "populair", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "getiteld": { "form": "getiteld", "cornetto_id": "r_a-11564", "cornetto_synset_id": "n_a-510691", "wordnet_id": "a-01591227", "pos": "JJ", "sense": "een adellijke titel voerend", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "0.9", "confidence": "0.7" }, "getogen": { "form": "getogen", "cornetto_id": "r_a-11054", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "opgegroeid", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "getrouw": { "form": "getrouw", "cornetto_id": "r_a-11566", "cornetto_synset_id": "n_a-503878", "wordnet_id": "a-01982646", "pos": "JJ", "sense": "zijn woord nakomend", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "geurig": { "form": "geurig", "cornetto_id": "r_a-11057", "cornetto_synset_id": "n_a-510721", "wordnet_id": "a-01586342", "pos": "JJ", "sense": "aangenaam geurend", "polarity": "-0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "gevaarlijk": { "form": "gevaarlijk", "cornetto_id": "r_a-11567", "cornetto_synset_id": "c_292", "wordnet_id": "a-00651039", "pos": "JJ", "sense": "gevaar opleverend", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "gevarieerd": { "form": "gevarieerd", "cornetto_id": "r_a-11332", "cornetto_synset_id": "n_a-510738", "wordnet_id": "a-00783129", "pos": "JJ", "sense": "afwisselend", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "gevat": { "form": "gevat", "cornetto_id": "r_a-11060", "cornetto_synset_id": "n_a-510739", "wordnet_id": "a-00032733", "pos": "JJ", "sense": "ad rem", "polarity": "0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "gevecht": { "form": "gevecht", "cornetto_id": "r_n-14923", "cornetto_synset_id": "d_n-33809", "wordnet_id": "n-00953559", "pos": "NN", "sense": "", "polarity": "-0.2", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "gevoelig": { "form": "gevoelig", "cornetto_id": "r_a-11070", "cornetto_synset_id": "c_645", "wordnet_id": "a-00624026", "pos": "JJ", "sense": "ingrijpend", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "gevoelsarm": { "form": "gevoelsarm", "cornetto_id": "r_a-11458", "cornetto_synset_id": "n_a-521187", "wordnet_id": "a-00857560", "pos": "JJ", "sense": "met weinig gevoelens", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "gevoelsmatig": { "form": "gevoelsmatig", "cornetto_id": "r_a-11072", "cornetto_synset_id": "n_a-510779", "wordnet_id": "a-01431471", "pos": "JJ", "sense": "intuïtief", "polarity": "0.0", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "gevorkt": { "form": "gevorkt", "cornetto_id": "r_a-11461", "cornetto_synset_id": "n_a-509496", "wordnet_id": "a-02479602", "pos": "JJ", "sense": "met de vorm van een vork", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "gewapend": { "form": "gewapend", "cornetto_id": "r_a-11077", "cornetto_synset_id": "n_a-510800", "wordnet_id": "a-00142407", "pos": "JJ", "sense": "met wapens", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "0.9", "confidence": "0.7" }, "geweldadig": { "form": "geweldadig", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "gewelddadig": { "form": "gewelddadig", "cornetto_id": "r_a-11080", "cornetto_synset_id": "n_a-510816", "wordnet_id": "a-00248251", "pos": "JJ", "sense": "met geweld", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.1", "confidence": "1.0" }, "geweldig": { "form": "geweldig", "cornetto_id": "r_a-11081", "cornetto_synset_id": "c_269", "wordnet_id": "", "pos": "JJ", "sense": "heel leuk", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "geweldloos": { "form": "geweldloos", "cornetto_id": "r_a-11082", "cornetto_synset_id": "n_a-510824", "wordnet_id": "a-00249576", "pos": "JJ", "sense": "zonder geweld", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "gewend": { "form": "gewend", "cornetto_id": "r_a-11084", "cornetto_synset_id": "n_a-510831", "wordnet_id": "a-00024619", "pos": "JJ", "sense": "gewoon", "polarity": "-0.1", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "gewerveld": { "form": "gewerveld", "cornetto_id": "r_a-11342", "cornetto_synset_id": "n_a-510835", "wordnet_id": "a-02510062", "pos": "JJ", "sense": "voorzien van een wervelkolom", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "gewetenloos": { "form": "gewetenloos", "cornetto_id": "r_a-11085", "cornetto_synset_id": "d_a-9455", "wordnet_id": "a-01262611", "pos": "JJ", "sense": "eerloos", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "gewichtig": { "form": "gewichtig", "cornetto_id": "r_a-11088", "cornetto_synset_id": "n_a-510846", "wordnet_id": "a-00625055", "pos": "JJ", "sense": "belangrijk", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "gewis": { "form": "gewis", "cornetto_id": "r_a-11093", "cornetto_synset_id": "n_a-510858", "wordnet_id": "a-01918660", "pos": "JJ", "sense": "zeker", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "gewonnen": { "form": "gewonnen", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "VBG", "sense": "", "polarity": "0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "gewoon": { "form": "gewoon", "cornetto_id": "r_a-11097", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "gewend", "polarity": "0.1", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "gewraakt": { "form": "gewraakt", "cornetto_id": "r_a-11098", "cornetto_synset_id": "n_a-510872", "wordnet_id": "a-00602474", "pos": "JJ", "sense": "in ongunstig zin genoemd", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "gezaag": { "form": "gezaag", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "gezagsgetrouw": { "form": "gezagsgetrouw", "cornetto_id": "r_a-11346", "cornetto_synset_id": "n_a-510881", "wordnet_id": "a-01395821", "pos": "JJ", "sense": "trouw aan gestelde gezag", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "gezamenlijk": { "form": "gezamenlijk", "cornetto_id": "r_a-11101", "cornetto_synset_id": "n_a-510885", "wordnet_id": "a-00005107", "pos": "JJ", "sense": "samen", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "gezapig": { "form": "gezapig", "cornetto_id": "r_a-11102", "cornetto_synset_id": "n_a-510889", "wordnet_id": "a-00034322", "pos": "JJ", "sense": "sloom, rustig en saai", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "gezellig": { "form": "gezellig", "cornetto_id": "r_a-11106", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "prettig", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "gezind": { "form": "gezind", "cornetto_id": "r_a-11110", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "in bepaalde stemming", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "gezond": { "form": "gezond", "cornetto_id": "r_a-11113", "cornetto_synset_id": "n_a-510925", "wordnet_id": "a-01166413", "pos": "JJ", "sense": "heilzaam", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "gezouten": { "form": "gezouten", "cornetto_id": "r_a-11464", "cornetto_synset_id": "d_a-9315", "wordnet_id": "", "pos": "JJ", "sense": "gespierd of kras", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "gezwind": { "form": "gezwind", "cornetto_id": "r_a-11114", "cornetto_synset_id": "n_a-528140", "wordnet_id": "a-00976508", "pos": "JJ", "sense": "snel", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "geëmancipeerd": { "form": "geëmancipeerd", "cornetto_id": "r_a-10865", "cornetto_synset_id": "n_a-509646", "wordnet_id": "a-01058650", "pos": "JJ", "sense": "zelfbewust", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "geïsoleerd": { "form": "geïsoleerd", "cornetto_id": "r_a-11251", "cornetto_synset_id": "n_a-508013", "wordnet_id": "a-00704360", "pos": "JJ", "sense": "afgezonderd", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "0.9", "confidence": "0.7" }, "giechelig": { "form": "giechelig", "cornetto_id": "r_a-11465", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "lacherig", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "giftig": { "form": "giftig", "cornetto_id": "r_a-11120", "cornetto_synset_id": "d_a-9618", "wordnet_id": "a-00114454", "pos": "JJ", "sense": "erg kwaad", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "gigantisch": { "form": "gigantisch", "cornetto_id": "r_a-11121", "cornetto_synset_id": "c_681", "wordnet_id": "a-01385255", "pos": "JJ", "sense": "reusachtig", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.4", "confidence": "1.0" }, "gijzelen": { "form": "gijzelen", "cornetto_id": "r_v-2967", "cornetto_synset_id": "d_v-2718", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "-0.2", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "gis": { "form": "gis", "cornetto_id": "r_a-11124", "cornetto_synset_id": "n_a-527945", "wordnet_id": "a-00092136", "pos": "JJ", "sense": "slim", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "gitzwart": { "form": "gitzwart", "cornetto_id": "r_a-11352", "cornetto_synset_id": "n_a-523373", "wordnet_id": "a-00054364", "pos": "JJ", "sense": "zeer zwart", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "glansloos": { "form": "glansloos", "cornetto_id": "r_a-11472", "cornetto_synset_id": "d_a-9232", "wordnet_id": "a-00283972", "pos": "JJ", "sense": "mat", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "glansrijk": { "form": "glansrijk", "cornetto_id": "r_a-11127", "cornetto_synset_id": "n_a-511105", "wordnet_id": "a-01285376", "pos": "JJ", "sense": "schitterend", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "glasachtig": { "form": "glasachtig", "cornetto_id": "r_a-11474", "cornetto_synset_id": "n_a-511070", "wordnet_id": "a-01119661", "pos": "JJ", "sense": "als glas", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "glashelder": { "form": "glashelder", "cornetto_id": "r_a-11353", "cornetto_synset_id": "n_a-511051", "wordnet_id": "a-00429355", "pos": "JJ", "sense": "heel helder", "polarity": "0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "glazig": { "form": "glazig", "cornetto_id": "r_a-11130", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "suf", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "glibberig": { "form": "glibberig", "cornetto_id": "r_a-11131", "cornetto_synset_id": "n_a-511080", "wordnet_id": "a-02234781", "pos": "JJ", "sense": "glad en nat", "polarity": "-0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "globaal": { "form": "globaal", "cornetto_id": "r_a-11132", "cornetto_synset_id": "n_a-511092", "wordnet_id": "a-00915976", "pos": "JJ", "sense": "ongeveer", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "0.9", "confidence": "0.7" }, "gloednieuw": { "form": "gloednieuw", "cornetto_id": "r_a-11357", "cornetto_synset_id": "n_a-511095", "wordnet_id": "a-01641460", "pos": "JJ", "sense": "volstrekt nieuw", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "glorierijk": { "form": "glorierijk", "cornetto_id": "r_a-11476", "cornetto_synset_id": "n_a-511105", "wordnet_id": "a-01285376", "pos": "JJ", "sense": "roemrijk", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "glorieus": { "form": "glorieus", "cornetto_id": "r_a-11136", "cornetto_synset_id": "n_a-511105", "wordnet_id": "a-01285376", "pos": "JJ", "sense": "roemrijk", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "goddelijk": { "form": "goddelijk", "cornetto_id": "r_a-11139", "cornetto_synset_id": "n_a-512199", "wordnet_id": "a-00219705", "pos": "JJ", "sense": "hemels", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.3", "confidence": "1.0" }, "godgans": { "form": "godgans", "cornetto_id": "r_a-11477", "cornetto_synset_id": "n_a-533538", "wordnet_id": "a-00520214", "pos": "JJ", "sense": "geheel", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.7", "confidence": "1.0" }, "godsdienstig": { "form": "godsdienstig", "cornetto_id": "r_a-11359", "cornetto_synset_id": "d_a-9319", "wordnet_id": "a-01781478", "pos": "JJ", "sense": "religieus", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "godsgruwelijk": { "form": "godsgruwelijk", "cornetto_id": "r_a-11481", "cornetto_synset_id": "n_a-513857", "wordnet_id": "a-01839317", "pos": "JJ", "sense": "enorm", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "godsjammerlijk": { "form": "godsjammerlijk", "cornetto_id": "d_a-94797", "cornetto_synset_id": "n_a-508241", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "godslasterlijk": { "form": "godslasterlijk", "cornetto_id": "r_a-11482", "cornetto_synset_id": "n_a-511163", "wordnet_id": "a-02012748", "pos": "JJ", "sense": "blasfemisch", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "godsonmogelijk": { "form": "godsonmogelijk", "cornetto_id": "r_a-11584", "cornetto_synset_id": "n_a-511166", "wordnet_id": "a-02418692", "pos": "JJ", "sense": "totaal onmogelijk", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.2", "confidence": "0.7" }, "godverdoms": { "form": "godverdoms", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "UH", "sense": "", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.3", "confidence": "1.0" }, "godverlaten": { "form": "godverlaten", "cornetto_id": "r_a-11360", "cornetto_synset_id": "n_a-508241", "wordnet_id": "", "pos": "JJ", "sense": "eenzaam", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "godvruchtig": { "form": "godvruchtig", "cornetto_id": "r_a-11142", "cornetto_synset_id": "n_a-533937", "wordnet_id": "a-01130261", "pos": "JJ", "sense": "vroom", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "goed": { "form": "goed", "cornetto_id": "r_a-11144", "cornetto_synset_id": "c_680", "wordnet_id": "", "pos": "JJ", "sense": "correct", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "goedbedoelend": { "form": "goedbedoelend", "cornetto_id": "r_a-11362", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "met goede bedoelingen", "polarity": "0.2", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "goede": { "form": "goede", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "", "sense": "JJ", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "goedgeefs": { "form": "goedgeefs", "cornetto_id": "r_a-11148", "cornetto_synset_id": "n_a-511674", "wordnet_id": "a-01111016", "pos": "JJ", "sense": "gul", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "goedgelovig": { "form": "goedgelovig", "cornetto_id": "r_a-11149", "cornetto_synset_id": "n_a-511197", "wordnet_id": "a-00163315", "pos": "JJ", "sense": "naïef", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "goedkeurend": { "form": "goedkeurend", "cornetto_id": "r_a-11153", "cornetto_synset_id": "n_a-503932", "wordnet_id": "a-00075135", "pos": "JJ", "sense": "instemmend", "polarity": "0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "goedkoop": { "form": "goedkoop", "cornetto_id": "r_a-11155", "cornetto_synset_id": "n_a-522137", "wordnet_id": "a-01593079", "pos": "JJ", "sense": "ordinair", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "goedlopend": { "form": "goedlopend", "cornetto_id": "r_a-11364", "cornetto_synset_id": "n_a-511211", "wordnet_id": "a-02331262", "pos": "JJ", "sense": "succesvol", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "goedmoedig": { "form": "goedmoedig", "cornetto_id": "r_a-11365", "cornetto_synset_id": "n_a-511204", "wordnet_id": "a-01372049", "pos": "JJ", "sense": "onschuldig", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "goedwillend": { "form": "goedwillend", "cornetto_id": "r_a-11366", "cornetto_synset_id": "n_a-534604", "wordnet_id": "a-00019131", "pos": "JJ", "sense": "met goede bedoelingen", "polarity": "0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "goeie": { "form": "goeie", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "golvend": { "form": "golvend", "cornetto_id": "r_a-11486", "cornetto_synset_id": "n_a-512474", "wordnet_id": "a-01234747", "pos": "JJ", "sense": "op- en neergaand als golven", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "goor": { "form": "goor", "cornetto_id": "r_a-11159", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "plat", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "gortdroog": { "form": "gortdroog", "cornetto_id": "r_a-11160", "cornetto_synset_id": "n_a-511263", "wordnet_id": "", "pos": "JJ", "sense": "erg droog en saai", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "gortig": { "form": "gortig", "cornetto_id": "r_a-11367", "cornetto_synset_id": "n_a-511264", "wordnet_id": "a-00107384", "pos": "JJ", "sense": "grof", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.6", "confidence": "0.7" }, "gotisch": { "form": "gotisch", "cornetto_id": "r_a-11368", "cornetto_synset_id": "n_a-511274", "wordnet_id": "a-03069542", "pos": "JJ", "sense": "van de gotiek", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "gouden": { "form": "gouden", "cornetto_id": "r_a-11587", "cornetto_synset_id": "n_a-533067", "wordnet_id": "a-02208145", "pos": "JJ", "sense": "vijftigjarig", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "gracieus": { "form": "gracieus", "cornetto_id": "r_a-11163", "cornetto_synset_id": "n_a-527670", "wordnet_id": "a-00218440", "pos": "JJ", "sense": "sierlijk", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "gradueel": { "form": "gradueel", "cornetto_id": "r_a-11164", "cornetto_synset_id": "n_a-531203", "wordnet_id": "a-01143006", "pos": "JJ", "sense": "trapsgewijs", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "grandioos": { "form": "grandioos", "cornetto_id": "r_a-11169", "cornetto_synset_id": "c_269", "wordnet_id": "", "pos": "JJ", "sense": "geweldig", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "grappig": { "form": "grappig", "cornetto_id": "r_a-11170", "cornetto_synset_id": "n_a-517089", "wordnet_id": "", "pos": "JJ", "sense": "leuk", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "gratis": { "form": "gratis", "cornetto_id": "r_a-11171", "cornetto_synset_id": "n_a-511409", "wordnet_id": "a-01710260", "pos": "JJ", "sense": "voor niets", "polarity": "0.4", "subjectivity": "0.5", "intensity": "0.9", "confidence": "1.0" }, "gratuit": { "form": "gratuit", "cornetto_id": "r_a-11172", "cornetto_synset_id": "n_a-521047", "wordnet_id": "a-00179486", "pos": "JJ", "sense": "vrijblijvend", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "grauw": { "form": "grauw", "cornetto_id": "r_a-11174", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "kleurloos, somber", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "gregoriaans": { "form": "gregoriaans", "cornetto_id": "r_a-11175", "cornetto_synset_id": "n_a-511428", "wordnet_id": "a-03070352", "pos": "JJ", "sense": "(van kerkgezang) eenstemmig", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.1", "confidence": "0.7" }, "grenzeloos": { "form": "grenzeloos", "cornetto_id": "r_a-11176", "cornetto_synset_id": "d_a-9258", "wordnet_id": "a-00943999", "pos": "JJ", "sense": "eindeloos", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.4", "confidence": "1.0" }, "gretig": { "form": "gretig", "cornetto_id": "r_a-11177", "cornetto_synset_id": "d_a-9175", "wordnet_id": "a-00010726", "pos": "JJ", "sense": "begerig", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "grieperig": { "form": "grieperig", "cornetto_id": "r_a-11490", "cornetto_synset_id": "n_a-511462", "wordnet_id": "", "pos": "JJ", "sense": "met een beetje griep", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "griezelig": { "form": "griezelig", "cornetto_id": "r_a-11178", "cornetto_synset_id": "n_a-511467", "wordnet_id": "a-00193799", "pos": "JJ", "sense": "eng", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "grif": { "form": "grif", "cornetto_id": "r_a-11375", "cornetto_synset_id": "n_a-511469", "wordnet_id": "a-02226162", "pos": "JJ", "sense": "gretig en vlug", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "grijpgraag": { "form": "grijpgraag", "cornetto_id": "r_a-11377", "cornetto_synset_id": "n_a-511476", "wordnet_id": "a-00029933", "pos": "JJ", "sense": "belust om te grijpen", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "grijs": { "form": "grijs", "cornetto_id": "r_a-11181", "cornetto_synset_id": "n_a-511480", "wordnet_id": "a-00389310", "pos": "JJ", "sense": "kleur van lood", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "grijsblauw": { "form": "grijsblauw", "cornetto_id": "r_a-11491", "cornetto_synset_id": "n_a-511482", "wordnet_id": "a-00434097", "pos": "JJ", "sense": "grijsachtig blauw", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "grillig": { "form": "grillig", "cornetto_id": "r_a-11180", "cornetto_synset_id": "n_a-511491", "wordnet_id": "a-00608791", "pos": "JJ", "sense": "wispelturig", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "grimmig": { "form": "grimmig", "cornetto_id": "r_a-11182", "cornetto_synset_id": "n_a-507483", "wordnet_id": "a-00114454", "pos": "JJ", "sense": "kwaadaardig", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "groen": { "form": "groen", "cornetto_id": "r_a-11184", "cornetto_synset_id": "n_a-518890", "wordnet_id": "a-02906778", "pos": "JJ", "sense": "milieuvriendelijk", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "grof": { "form": "grof", "cornetto_id": "r_a-11188", "cornetto_synset_id": "n_a-511570", "wordnet_id": "a-00580039", "pos": "JJ", "sense": "in ernstige mate", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.1", "confidence": "1.0" }, "grofgebouwd": { "form": "grofgebouwd", "cornetto_id": "r_a-11494", "cornetto_synset_id": "d_a-9272", "wordnet_id": "a-02038126", "pos": "JJ", "sense": "met grove lichaamsbouw", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.3", "confidence": "0.7" }, "groggy": { "form": "groggy", "cornetto_id": "r_a-11189", "cornetto_synset_id": "n_a-507792", "wordnet_id": "a-00437223", "pos": "JJ", "sense": "slingerend", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "grondig": { "form": "grondig", "cornetto_id": "r_a-11191", "cornetto_synset_id": "n_a-511592", "wordnet_id": "", "pos": "JJ", "sense": "degelijk", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "groot": { "form": "groot", "cornetto_id": "r_a-11194", "cornetto_synset_id": "d_a-9178", "wordnet_id": "a-01830403", "pos": "JJ", "sense": "voornaam", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "grootmoedig": { "form": "grootmoedig", "cornetto_id": "r_a-11195", "cornetto_synset_id": "d_a-9432", "wordnet_id": "a-00101609", "pos": "JJ", "sense": "onbaatzuchtig", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "groots": { "form": "groots", "cornetto_id": "r_a-11196", "cornetto_synset_id": "n_a-511641", "wordnet_id": "a-01285376", "pos": "JJ", "sense": "fantastisch", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "grootschalig": { "form": "grootschalig", "cornetto_id": "r_a-11197", "cornetto_synset_id": "n_a-511642", "wordnet_id": "a-00104051", "pos": "JJ", "sense": "op grote schaal", "polarity": "0.3", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "grootscheeps": { "form": "grootscheeps", "cornetto_id": "r_a-11198", "cornetto_synset_id": "n_a-511643", "wordnet_id": "a-00521811", "pos": "JJ", "sense": "groots opgezet", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "grootstedelijk": { "form": "grootstedelijk", "cornetto_id": "r_a-11380", "cornetto_synset_id": "n_a-511647", "wordnet_id": "a-02865172", "pos": "JJ", "sense": "typisch voor grote stad", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "grotendeels": { "form": "grotendeels", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "", "sense": "", "polarity": "0.0", "subjectivity": "0.4", "intensity": "0.8", "confidence": "1.0" }, "grotesk": { "form": "grotesk", "cornetto_id": "r_a-11199", "cornetto_synset_id": "n_a-503484", "wordnet_id": "a-00221627", "pos": "JJ", "sense": "wonderlijk en buitensporig", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.6", "confidence": "0.7" }, "gruwel": { "form": "gruwel", "cornetto_id": "r_n-15971", "cornetto_synset_id": "d_n-28317", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.6", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.9" }, "gruwelijk": { "form": "gruwelijk", "cornetto_id": "r_a-11200", "cornetto_synset_id": "n_a-532685", "wordnet_id": "a-00193799", "pos": "JJ", "sense": "afgrijselijk", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "gruwzaam": { "form": "gruwzaam", "cornetto_id": "d_a-98316", "cornetto_synset_id": "d_a-9619", "wordnet_id": "a-00007990", "pos": "JJ", "sense": "", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.3", "confidence": "0.7" }, "guitig": { "form": "guitig", "cornetto_id": "r_a-11201", "cornetto_synset_id": "n_a-520935", "wordnet_id": "a-00148078", "pos": "JJ", "sense": "ondeugend en grappig", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "gul": { "form": "gul", "cornetto_id": "r_a-11202", "cornetto_synset_id": "d_a-9326", "wordnet_id": "a-01111016", "pos": "JJ", "sense": "vrijgevig", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "gunstig": { "form": "gunstig", "cornetto_id": "r_a-11204", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "voordelig", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "guur": { "form": "guur", "cornetto_id": "r_a-11205", "cornetto_synset_id": "n_a-511688", "wordnet_id": "", "pos": "JJ", "sense": "koud en winderig", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "gynaecologisch": { "form": "gynaecologisch", "cornetto_id": "r_a-11382", "cornetto_synset_id": "n_a-511696", "wordnet_id": "a-02916969", "pos": "JJ", "sense": "mbt. gynaecologie", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "gênant": { "form": "gênant", "cornetto_id": "r_a-10957", "cornetto_synset_id": "n_a-509478", "wordnet_id": "a-00063277", "pos": "JJ", "sense": "beschamend", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "haarscherp": { "form": "haarscherp", "cornetto_id": "r_a-11592", "cornetto_synset_id": "n_a-511737", "wordnet_id": "a-00229227", "pos": "JJ", "sense": "heel scherp of duidelijk", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "haastig": { "form": "haastig", "cornetto_id": "r_a-11593", "cornetto_synset_id": "n_a-511750", "wordnet_id": "a-00086210", "pos": "JJ", "sense": "in haast", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "hachelijk": { "form": "hachelijk", "cornetto_id": "r_a-11595", "cornetto_synset_id": "n_a-511757", "wordnet_id": "a-00746994", "pos": "JJ", "sense": "gevaarlijk", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "half": { "form": "half", "cornetto_id": "r_a-11596", "cornetto_synset_id": "n_a-511782", "wordnet_id": "a-00330506", "pos": "JJ", "sense": "voor de helft", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "0.9", "confidence": "1.0" }, "halfautomatisch": { "form": "halfautomatisch", "cornetto_id": "r_a-11713", "cornetto_synset_id": "n_a-527541", "wordnet_id": "", "pos": "JJ", "sense": "semi-automatisch", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "halfbakken": { "form": "halfbakken", "cornetto_id": "r_a-11597", "cornetto_synset_id": "n_a-520658", "wordnet_id": "a-00619601", "pos": "JJ", "sense": "gebrekkig", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "halfdood": { "form": "halfdood", "cornetto_id": "r_a-11765", "cornetto_synset_id": "n_a-512726", "wordnet_id": "", "pos": "JJ", "sense": "zowat dood", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "halfhartig": { "form": "halfhartig", "cornetto_id": "r_a-11714", "cornetto_synset_id": "n_a-534522", "wordnet_id": "a-00162386", "pos": "JJ", "sense": "niet van harte", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "halfleeg": { "form": "halfleeg", "cornetto_id": "r_a-11770", "cornetto_synset_id": "n_a-511826", "wordnet_id": "", "pos": "JJ", "sense": "voor de helft leeg", "polarity": "-0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "halfnaakt": { "form": "halfnaakt", "cornetto_id": "r_a-11773", "cornetto_synset_id": "n_a-511812", "wordnet_id": "a-00459881", "pos": "JJ", "sense": "halfbloot", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "hallucinant": { "form": "hallucinant", "cornetto_id": "r_a-17355", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "schokkend", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "halsstarrig": { "form": "halsstarrig", "cornetto_id": "r_a-11602", "cornetto_synset_id": "n_a-515826", "wordnet_id": "a-00583581", "pos": "JJ", "sense": "koppig", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "halve": { "form": "halve", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "0.0", "subjectivity": "0.1", "intensity": "0.9", "confidence": "1.0" }, "handig": { "form": "handig", "cornetto_id": "r_a-11605", "cornetto_synset_id": "n_a-511955", "wordnet_id": "a-01123879", "pos": "JJ", "sense": "handzaam", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "handtastelijk": { "form": "handtastelijk", "cornetto_id": "r_a-11606", "cornetto_synset_id": "n_a-511976", "wordnet_id": "a-00916199", "pos": "JJ", "sense": "anderen ongewenst aanrakend", "polarity": "-0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "handzaam": { "form": "handzaam", "cornetto_id": "r_a-11718", "cornetto_synset_id": "n_a-511955", "wordnet_id": "a-01123879", "pos": "JJ", "sense": "makkelijk in het gebruik", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "hanig": { "form": "hanig", "cornetto_id": "r_a-11607", "cornetto_synset_id": "n_a-518017", "wordnet_id": "a-00156440", "pos": "JJ", "sense": "als (van) een haantje", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "happig": { "form": "happig", "cornetto_id": "r_a-11608", "cornetto_synset_id": "d_a-9175", "wordnet_id": "a-00010726", "pos": "JJ", "sense": "tuk", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "hard": { "form": "hard", "cornetto_id": "r_a-11615", "cornetto_synset_id": "n_a-508890", "wordnet_id": "a-01803792", "pos": "JJ", "sense": "van kleur", "polarity": "-0.2", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "hardhandig": { "form": "hardhandig", "cornetto_id": "r_a-11617", "cornetto_synset_id": "c_697", "wordnet_id": "a-01803583", "pos": "JJ", "sense": "ruw", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "hardleers": { "form": "hardleers", "cornetto_id": "r_a-11619", "cornetto_synset_id": "n_a-512048", "wordnet_id": "a-02452562", "pos": "JJ", "sense": "volhardend in dezelfde fout", "polarity": "-0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "hardnekkig": { "form": "hardnekkig", "cornetto_id": "r_a-11620", "cornetto_synset_id": "n_a-515826", "wordnet_id": "a-00583581", "pos": "JJ", "sense": "koppig", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "hardvochtig": { "form": "hardvochtig", "cornetto_id": "r_a-11621", "cornetto_synset_id": "c_182", "wordnet_id": "a-01507402", "pos": "JJ", "sense": "wreed", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "hardwerkend": { "form": "hardwerkend", "cornetto_id": "r_a-11720", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "ijverig", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "harkerig": { "form": "harkerig", "cornetto_id": "r_a-11622", "cornetto_synset_id": "n_a-529331", "wordnet_id": "a-00063277", "pos": "JJ", "sense": "houterig", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "harmonieus": { "form": "harmonieus", "cornetto_id": "r_a-11623", "cornetto_synset_id": "n_a-512072", "wordnet_id": "a-00508036", "pos": "JJ", "sense": "goed passend, in harmonie", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "harmonisch": { "form": "harmonisch", "cornetto_id": "r_a-11624", "cornetto_synset_id": "n_a-512072", "wordnet_id": "a-00508036", "pos": "JJ", "sense": "harmonieus", "polarity": "0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "hartelijk": { "form": "hartelijk", "cornetto_id": "r_a-11625", "cornetto_synset_id": "d_a-9326", "wordnet_id": "a-01075178", "pos": "JJ", "sense": "vriendelijk", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "hartig": { "form": "hartig", "cornetto_id": "r_a-11791", "cornetto_synset_id": "n_a-523434", "wordnet_id": "a-00033077", "pos": "JJ", "sense": "pittig", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "hartstochtelijk": { "form": "hartstochtelijk", "cornetto_id": "r_a-11628", "cornetto_synset_id": "n_a-512114", "wordnet_id": "a-00853776", "pos": "JJ", "sense": "vurig", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.8" }, "hartveroverend": { "form": "hartveroverend", "cornetto_id": "r_a-11629", "cornetto_synset_id": "n_a-512118", "wordnet_id": "a-00166753", "pos": "JJ", "sense": "allerliefst", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "hartverscheurend": { "form": "hartverscheurend", "cornetto_id": "r_a-11630", "cornetto_synset_id": "n_a-512119", "wordnet_id": "a-01374004", "pos": "JJ", "sense": "hartbrekend", "polarity": "-0.2", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "hartverwarmend": { "form": "hartverwarmend", "cornetto_id": "r_a-11631", "cornetto_synset_id": "n_a-521480", "wordnet_id": "a-01365544", "pos": "JJ", "sense": "weldadig", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "hartvormig": { "form": "hartvormig", "cornetto_id": "r_a-11793", "cornetto_synset_id": "n_a-512124", "wordnet_id": "a-02167628", "pos": "JJ", "sense": "met de vorm van een hart", "polarity": "0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "hatelijk": { "form": "hatelijk", "cornetto_id": "r_a-11834", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "verfoeilijk", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "hautain": { "form": "hautain", "cornetto_id": "r_a-11633", "cornetto_synset_id": "n_a-502571", "wordnet_id": "a-00205696", "pos": "JJ", "sense": "hooghartig", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "haveloos": { "form": "haveloos", "cornetto_id": "r_a-11634", "cornetto_synset_id": "n_a-512137", "wordnet_id": "a-02583271", "pos": "JJ", "sense": "sjofel", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "hebberig": { "form": "hebberig", "cornetto_id": "r_a-11635", "cornetto_synset_id": "n_a-512165", "wordnet_id": "a-00010726", "pos": "JJ", "sense": "hebzuchtig", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "hecht": { "form": "hecht", "cornetto_id": "r_a-11637", "cornetto_synset_id": "n_a-506736", "wordnet_id": "a-00583581", "pos": "JJ", "sense": "solide, onverbrekelijk", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "hectisch": { "form": "hectisch", "cornetto_id": "r_a-11638", "cornetto_synset_id": "n_a-512174", "wordnet_id": "a-00086210", "pos": "JJ", "sense": "druk", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.9" }, "hedendaags": { "form": "hedendaags", "cornetto_id": "r_a-11639", "cornetto_synset_id": "n_a-512180", "wordnet_id": "a-00666058", "pos": "JJ", "sense": "modern", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "hedonistisch": { "form": "hedonistisch", "cornetto_id": "r_a-11794", "cornetto_synset_id": "n_a-510355", "wordnet_id": "a-01257145", "pos": "JJ", "sense": "genotzuchtig", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "heel": { "form": "heel", "cornetto_id": "r_a-11833", "cornetto_synset_id": "c_645", "wordnet_id": "a-00624026", "pos": "JJ", "sense": "aanzienlijk", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.7", "confidence": "1.0" }, "heerlijk": { "form": "heerlijk", "cornetto_id": "r_a-11835", "cornetto_synset_id": "c_472", "wordnet_id": "a-03084397", "pos": "JJ", "sense": "v.d. heer", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "hees": { "form": "hees", "cornetto_id": "r_a-11724", "cornetto_synset_id": "n_a-512205", "wordnet_id": "a-01667110", "pos": "JJ", "sense": "schor", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.9" }, "heet": { "form": "heet", "cornetto_id": "r_a-16589", "cornetto_synset_id": "n_a-509978", "wordnet_id": "a-02131668", "pos": "JJ", "sense": "van mensen", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "heetgebakerd": { "form": "heetgebakerd", "cornetto_id": "r_a-16591", "cornetto_synset_id": "n_a-507579", "wordnet_id": "a-01256865", "pos": "JJ", "sense": "ongeduldig", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "heftig": { "form": "heftig", "cornetto_id": "r_a-16593", "cornetto_synset_id": "n_a-512478", "wordnet_id": "a-01509527", "pos": "JJ", "sense": "hevig, erg", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.6", "confidence": "1.0" }, "heilig": { "form": "heilig", "cornetto_id": "r_a-16599", "cornetto_synset_id": "n_a-520576", "wordnet_id": "a-02055900", "pos": "JJ", "sense": "fig.: onaantastbaar", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "heilloos": { "form": "heilloos", "cornetto_id": "d_a-107367", "cornetto_synset_id": "n_a-520118", "wordnet_id": "a-00586183", "pos": "JJ", "sense": "", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "heimelijk": { "form": "heimelijk", "cornetto_id": "r_a-16602", "cornetto_synset_id": "n_a-512251", "wordnet_id": "a-02090069", "pos": "JJ", "sense": "stiekem", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "helblauw": { "form": "helblauw", "cornetto_id": "r_a-11796", "cornetto_synset_id": "n_a-515369", "wordnet_id": "a-00370267", "pos": "JJ", "sense": "felblauw", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "helder": { "form": "helder", "cornetto_id": "r_a-16607", "cornetto_synset_id": "n_a-503401", "wordnet_id": "a-00532892", "pos": "JJ", "sense": "van ideeën, formulering", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "heldhaftig": { "form": "heldhaftig", "cornetto_id": "r_a-16608", "cornetto_synset_id": "d_a-9330", "wordnet_id": "a-00251134", "pos": "JJ", "sense": "heroïsch", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "hels": { "form": "hels", "cornetto_id": "r_a-16609", "cornetto_synset_id": "n_a-532685", "wordnet_id": "a-00193799", "pos": "JJ", "sense": "als in de hel", "polarity": "0.0", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "helwit": { "form": "helwit", "cornetto_id": "r_a-11801", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "hagelwit", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "hemels": { "form": "hemels", "cornetto_id": "r_a-16612", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "schitterend", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "hemelsbreed": { "form": "hemelsbreed", "cornetto_id": "r_a-16613", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "zeer groot", "polarity": "0.2", "subjectivity": "0.7", "intensity": "1.3", "confidence": "0.7" }, "hemeltergend": { "form": "hemeltergend", "cornetto_id": "r_a-11804", "cornetto_synset_id": "n_a-512311", "wordnet_id": "a-00193367", "pos": "JJ", "sense": "hoogst ergerlijk", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "herfstig": { "form": "herfstig", "cornetto_id": "r_a-11807", "cornetto_synset_id": "n_a-512361", "wordnet_id": "a-01255296", "pos": "JJ", "sense": "herfstachtig", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "herhaald": { "form": "herhaald", "cornetto_id": "r_a-11725", "cornetto_synset_id": "n_a-512370", "wordnet_id": "a-00592880", "pos": "JJ", "sense": "meerdere", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "herkenbaar": { "form": "herkenbaar", "cornetto_id": "r_a-11726", "cornetto_synset_id": "n_a-512378", "wordnet_id": "a-01272397", "pos": "JJ", "sense": "te herkennen", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "hermetisch": { "form": "hermetisch", "cornetto_id": "r_a-16616", "cornetto_synset_id": "n_a-512384", "wordnet_id": "a-01398772", "pos": "JJ", "sense": "luchtdicht", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "hersenloos": { "form": "hersenloos", "cornetto_id": "r_a-11808", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "dom", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "heteroseksueel": { "form": "heteroseksueel", "cornetto_id": "r_a-11645", "cornetto_synset_id": "n_a-512447", "wordnet_id": "a-01201100", "pos": "JJ", "sense": "gericht op het andere geslacht", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "hetzelfde": { "form": "hetzelfde", "cornetto_id": "d_a-409027", "cornetto_synset_id": "d_a-9291", "wordnet_id": "a-01839317", "pos": "JJ", "sense": "", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "heuristisch": { "form": "heuristisch", "cornetto_id": "r_a-11730", "cornetto_synset_id": "n_a-512471", "wordnet_id": "a-00092933", "pos": "JJ", "sense": "volgens de heuristiek", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "heus": { "form": "heus", "cornetto_id": "r_a-11648", "cornetto_synset_id": "d_a-9251", "wordnet_id": "a-02180277", "pos": "JJ", "sense": "echt", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.1", "confidence": "1.0" }, "heuvelachtig": { "form": "heuvelachtig", "cornetto_id": "r_a-11731", "cornetto_synset_id": "n_a-512474", "wordnet_id": "a-01234747", "pos": "JJ", "sense": "vol heuvels", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "heuvelig": { "form": "heuvelig", "cornetto_id": "r_a-11812", "cornetto_synset_id": "n_a-512474", "wordnet_id": "a-01234747", "pos": "JJ", "sense": "vol heuvels", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "hevig": { "form": "hevig", "cornetto_id": "r_a-11649", "cornetto_synset_id": "n_a-512478", "wordnet_id": "a-01509527", "pos": "JJ", "sense": "sterk", "polarity": "0.2", "subjectivity": "0.7", "intensity": "1.3", "confidence": "1.0" }, "high": { "form": "high", "cornetto_id": "r_a-11732", "cornetto_synset_id": "n_a-512496", "wordnet_id": "a-00799401", "pos": "JJ", "sense": "onder invloed van drugs", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "hightech": { "form": "hightech", "cornetto_id": "r_a-11651", "cornetto_synset_id": "n_a-512505", "wordnet_id": "", "pos": "JJ", "sense": "technologisch hoogontwikkeld", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "hilarisch": { "form": "hilarisch", "cornetto_id": "d_a-109727", "cornetto_synset_id": "n_a-517089", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "hinderlijk": { "form": "hinderlijk", "cornetto_id": "r_a-11652", "cornetto_synset_id": "n_a-516807", "wordnet_id": "a-00669942", "pos": "JJ", "sense": "lastig", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "hip": { "form": "hip", "cornetto_id": "r_a-11653", "cornetto_synset_id": "n_a-504364", "wordnet_id": "a-00609564", "pos": "JJ", "sense": "modern", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "historisch": { "form": "historisch", "cornetto_id": "r_a-11655", "cornetto_synset_id": "n_a-512540", "wordnet_id": "a-01279028", "pos": "JJ", "sense": "geschiedkundig", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "hobbelig": { "form": "hobbelig", "cornetto_id": "r_a-11657", "cornetto_synset_id": "n_a-504473", "wordnet_id": "a-02141735", "pos": "JJ", "sense": "met veel hobbels", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "hologig": { "form": "hologig", "cornetto_id": "r_a-11816", "cornetto_synset_id": "n_a-512666", "wordnet_id": "a-00988988", "pos": "JJ", "sense": "met diepliggende ogen", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "homoseksueel": { "form": "homoseksueel", "cornetto_id": "r_a-11666", "cornetto_synset_id": "d_a-9336", "wordnet_id": "a-01201422", "pos": "JJ", "sense": "seksueel gericht op zelfde geslacht", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "honderdjarig": { "form": "honderdjarig", "cornetto_id": "r_a-11736", "cornetto_synset_id": "n_a-512718", "wordnet_id": "a-01645048", "pos": "JJ", "sense": "van honderd jaar", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "honds": { "form": "honds", "cornetto_id": "r_a-11667", "cornetto_synset_id": "n_a-512725", "wordnet_id": "a-01549964", "pos": "JJ", "sense": "onbeschoft", "polarity": "-0.8", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "hondsdol": { "form": "hondsdol", "cornetto_id": "r_a-11737", "cornetto_synset_id": "n_a-512728", "wordnet_id": "a-01726859", "pos": "JJ", "sense": "lijdend aan hondsdolheid", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "hongerig": { "form": "hongerig", "cornetto_id": "r_a-11668", "cornetto_synset_id": "n_a-512737", "wordnet_id": "a-01136541", "pos": "JJ", "sense": "honger hebbend", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "hoofdstedelijk": { "form": "hoofdstedelijk", "cornetto_id": "r_a-11738", "cornetto_synset_id": "n_a-512821", "wordnet_id": "a-02865172", "pos": "JJ", "sense": "van de hoofdstad", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "hoofs": { "form": "hoofs", "cornetto_id": "r_a-11673", "cornetto_synset_id": "d_a-9334", "wordnet_id": "a-00021110", "pos": "JJ", "sense": "hoffelijk", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "hoog": { "form": "hoog", "cornetto_id": "r_a-11678", "cornetto_synset_id": "n_a-512844", "wordnet_id": "a-00705498", "pos": "JJ", "sense": "ver in rang", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "hoogbegaafd": { "form": "hoogbegaafd", "cornetto_id": "r_a-11739", "cornetto_synset_id": "n_a-510334", "wordnet_id": "a-00402855", "pos": "JJ", "sense": "buitengewoon begaafd", "polarity": "0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "hoogbejaard": { "form": "hoogbejaard", "cornetto_id": "r_a-11740", "cornetto_synset_id": "n_a-512849", "wordnet_id": "a-01071794", "pos": "JJ", "sense": "heel bejaard", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "hoogblond": { "form": "hoogblond", "cornetto_id": "r_a-11679", "cornetto_synset_id": "n_a-512850", "wordnet_id": "a-00177547", "pos": "JJ", "sense": "lichtblond", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "hoogdravend": { "form": "hoogdravend", "cornetto_id": "r_a-11680", "cornetto_synset_id": "n_a-504613", "wordnet_id": "a-00073465", "pos": "JJ", "sense": "bombastisch", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "hooggeplaatst": { "form": "hooggeplaatst", "cornetto_id": "r_a-11744", "cornetto_synset_id": "n_a-512863", "wordnet_id": "", "pos": "JJ", "sense": "voornaam", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.4", "confidence": "0.7" }, "hooggespannen": { "form": "hooggespannen", "cornetto_id": "r_a-11682", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "hooghartig": { "form": "hooghartig", "cornetto_id": "r_a-11683", "cornetto_synset_id": "n_a-502571", "wordnet_id": "a-00205696", "pos": "JJ", "sense": "arrogant", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "hoogmoedig": { "form": "hoogmoedig", "cornetto_id": "r_a-11685", "cornetto_synset_id": "n_a-502571", "wordnet_id": "a-00205696", "pos": "JJ", "sense": "verwaand", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "hoognodig": { "form": "hoognodig", "cornetto_id": "r_a-11746", "cornetto_synset_id": "n_a-512875", "wordnet_id": "", "pos": "JJ", "sense": "dringend nodig", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "hoogstaand": { "form": "hoogstaand", "cornetto_id": "r_a-11686", "cornetto_synset_id": "n_a-507937", "wordnet_id": "a-01588172", "pos": "JJ", "sense": "verheven, goed", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "hoogstwaarschijnlijk": { "form": "hoogstwaarschijnlijk", "cornetto_id": "r_a-11749", "cornetto_synset_id": "n_a-512887", "wordnet_id": "", "pos": "JJ", "sense": "zeer waarschijnlijk", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "hoogwaardig": { "form": "hoogwaardig", "cornetto_id": "r_a-11839", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "eerbiedwaardig", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "hoogzwanger": { "form": "hoogzwanger", "cornetto_id": "r_a-11821", "cornetto_synset_id": "n_a-512897", "wordnet_id": "", "pos": "JJ", "sense": "vergevorderd zwanger", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "hoopgevend": { "form": "hoopgevend", "cornetto_id": "r_a-11688", "cornetto_synset_id": "n_a-503563", "wordnet_id": "a-00176387", "pos": "JJ", "sense": "hoopvol stemmend", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "hoopvol": { "form": "hoopvol", "cornetto_id": "r_a-11842", "cornetto_synset_id": "n_a-503563", "wordnet_id": "a-00176387", "pos": "JJ", "sense": "veelbelovend", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "hoorbaar": { "form": "hoorbaar", "cornetto_id": "r_a-11751", "cornetto_synset_id": "d_a-9339", "wordnet_id": "a-00173764", "pos": "JJ", "sense": "te horen", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "hopeloos": { "form": "hopeloos", "cornetto_id": "r_a-11690", "cornetto_synset_id": "d_a-9340", "wordnet_id": "a-00263463", "pos": "JJ", "sense": "uitzichtloos", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "horizontaal": { "form": "horizontaal", "cornetto_id": "r_a-11692", "cornetto_synset_id": "n_a-512945", "wordnet_id": "a-00652692", "pos": "JJ", "sense": "evenwijdig aan de horizon", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "houterig": { "form": "houterig", "cornetto_id": "r_a-11696", "cornetto_synset_id": "n_a-529331", "wordnet_id": "a-00063277", "pos": "JJ", "sense": "stijf, niet vloeiend", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "hovaardig": { "form": "hovaardig", "cornetto_id": "r_a-11824", "cornetto_synset_id": "n_a-502571", "wordnet_id": "a-00205696", "pos": "JJ", "sense": "hoogmoedig", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "huidig": { "form": "huidig", "cornetto_id": "r_a-11753", "cornetto_synset_id": "n_a-513031", "wordnet_id": "a-00666058", "pos": "JJ", "sense": "van nu", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "huiselijk": { "form": "huiselijk", "cornetto_id": "r_a-11846", "cornetto_synset_id": "n_a-513054", "wordnet_id": "a-01036754", "pos": "JJ", "sense": "mbt. gezin, huishouden", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "huishoudelijk": { "form": "huishoudelijk", "cornetto_id": "r_a-11848", "cornetto_synset_id": "n_a-513060", "wordnet_id": "a-01038102", "pos": "JJ", "sense": "mbt. dagelijkse aangelegenheden", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "huiverig": { "form": "huiverig", "cornetto_id": "r_a-11698", "cornetto_synset_id": "n_a-534522", "wordnet_id": "a-00162386", "pos": "JJ", "sense": "terugdeinzend", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "huiveringwekkend": { "form": "huiveringwekkend", "cornetto_id": "r_a-11755", "cornetto_synset_id": "n_a-513370", "wordnet_id": "a-00193367", "pos": "JJ", "sense": "ijzingwekkend", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.6", "confidence": "1.0" }, "hulpeloos": { "form": "hulpeloos", "cornetto_id": "r_a-11700", "cornetto_synset_id": "n_a-513099", "wordnet_id": "a-01827535", "pos": "JJ", "sense": "machteloos", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "humaan": { "form": "humaan", "cornetto_id": "r_a-11702", "cornetto_synset_id": "d_a-9401", "wordnet_id": "a-01258617", "pos": "JJ", "sense": "menselijk", "polarity": "0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "humanistisch": { "form": "humanistisch", "cornetto_id": "r_a-11703", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "van het humanisme", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "humeurig": { "form": "humeurig", "cornetto_id": "r_a-11704", "cornetto_synset_id": "d_a-9521", "wordnet_id": "a-00703615", "pos": "JJ", "sense": "(gauw) uit zijn humeur", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "humoristisch": { "form": "humoristisch", "cornetto_id": "r_a-11705", "cornetto_synset_id": "d_a-9285", "wordnet_id": "a-00804371", "pos": "JJ", "sense": "geestig", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "humorvol": { "form": "humorvol", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "hups": { "form": "hups", "cornetto_id": "r_a-11759", "cornetto_synset_id": "c_338", "wordnet_id": "a-00804371", "pos": "JJ", "sense": "aardig", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "huwbaar": { "form": "huwbaar", "cornetto_id": "r_a-11827", "cornetto_synset_id": "n_a-513161", "wordnet_id": "a-01489325", "pos": "JJ", "sense": "leeftijd hebbend om te trouwen", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "hyperactief": { "form": "hyperactief", "cornetto_id": "r_a-11828", "cornetto_synset_id": "n_a-513213", "wordnet_id": "a-00033206", "pos": "JJ", "sense": "overactief", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "hypermodern": { "form": "hypermodern", "cornetto_id": "r_a-11762", "cornetto_synset_id": "n_a-513228", "wordnet_id": "a-01536641", "pos": "JJ", "sense": "supermodern", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "hypnotisch": { "form": "hypnotisch", "cornetto_id": "r_a-11708", "cornetto_synset_id": "n_a-513236", "wordnet_id": "a-00168188", "pos": "JJ", "sense": "mbt. hypnose", "polarity": "0.1", "subjectivity": "0.7", "intensity": "1.3", "confidence": "0.7" }, "hypocriet": { "form": "hypocriet", "cornetto_id": "r_a-11709", "cornetto_synset_id": "n_a-513027", "wordnet_id": "a-00073048", "pos": "JJ", "sense": "huichelachtig", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "hypothetisch": { "form": "hypothetisch", "cornetto_id": "r_a-11710", "cornetto_synset_id": "n_a-513252", "wordnet_id": "a-00028471", "pos": "JJ", "sense": "speculatief", "polarity": "-0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "ideaal": { "form": "ideaal", "cornetto_id": "r_a-11853", "cornetto_synset_id": "n_a-513278", "wordnet_id": "a-00012689", "pos": "JJ", "sense": "perfect", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "idealistisch": { "form": "idealistisch", "cornetto_id": "r_a-11854", "cornetto_synset_id": "n_a-513280", "wordnet_id": "a-01588619", "pos": "JJ", "sense": "vol idealen", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "ideëel": { "form": "ideëel", "cornetto_id": "r_a-11856", "cornetto_synset_id": "n_a-513277", "wordnet_id": "a-00484333", "pos": "JJ", "sense": "uit idealisme", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.4", "confidence": "0.7" }, "idioot": { "form": "idioot", "cornetto_id": "r_a-11859", "cornetto_synset_id": "n_a-503782", "wordnet_id": "a-01840880", "pos": "JJ", "sense": "belachelijk", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.3", "confidence": "0.9" }, "idioten": { "form": "idioten", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NNS", "sense": "", "polarity": "-0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "idolaat": { "form": "idolaat", "cornetto_id": "r_a-11860", "cornetto_synset_id": "n_a-507870", "wordnet_id": "a-00054109", "pos": "JJ", "sense": "gek van iemand of iets", "polarity": "0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "ijl": { "form": "ijl", "cornetto_id": "r_a-11867", "cornetto_synset_id": "n_a-513320", "wordnet_id": "a-00017024", "pos": "JJ", "sense": "dun", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "ijselijk": { "form": "ijselijk", "cornetto_id": "r_a-11868", "cornetto_synset_id": "n_a-532685", "wordnet_id": "a-00193799", "pos": "JJ", "sense": "verschrikkelijk", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.3", "confidence": "0.7" }, "ijskoud": { "form": "ijskoud", "cornetto_id": "r_a-12046", "cornetto_synset_id": "n_a-513368", "wordnet_id": "a-01258264", "pos": "JJ", "sense": "ongevoelig", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "ijsvrij": { "form": "ijsvrij", "cornetto_id": "r_a-11968", "cornetto_synset_id": "n_a-513342", "wordnet_id": "a-01079857", "pos": "JJ", "sense": "vrij van ijs", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "ijzersterk": { "form": "ijzersterk", "cornetto_id": "r_a-11873", "cornetto_synset_id": "d_a-9557", "wordnet_id": "", "pos": "JJ", "sense": "erg goed", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.4", "confidence": "1.0" }, "ijzig": { "form": "ijzig", "cornetto_id": "r_a-12049", "cornetto_synset_id": "c_127", "wordnet_id": "a-01079240", "pos": "JJ", "sense": "bedekt met ijs", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "ijzingwekkend": { "form": "ijzingwekkend", "cornetto_id": "r_a-11876", "cornetto_synset_id": "n_a-513370", "wordnet_id": "a-00193367", "pos": "JJ", "sense": "griezelig", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.2", "confidence": "0.7" }, "illegaal": { "form": "illegaal", "cornetto_id": "r_a-11877", "cornetto_synset_id": "n_a-513378", "wordnet_id": "a-01402580", "pos": "JJ", "sense": "onwettig", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "illusoir": { "form": "illusoir", "cornetto_id": "r_a-11969", "cornetto_synset_id": "n_a-506637", "wordnet_id": "a-00011757", "pos": "JJ", "sense": "denkbeeldig", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "illuster": { "form": "illuster", "cornetto_id": "r_a-11878", "cornetto_synset_id": "n_a-503694", "wordnet_id": "a-01375831", "pos": "JJ", "sense": "beroemd", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.6", "confidence": "0.7" }, "illustratief": { "form": "illustratief", "cornetto_id": "r_a-11879", "cornetto_synset_id": "n_a-532347", "wordnet_id": "", "pos": "JJ", "sense": "verduidelijkend", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "immens": { "form": "immens", "cornetto_id": "r_a-11883", "cornetto_synset_id": "c_681", "wordnet_id": "a-01385255", "pos": "JJ", "sense": "enorm", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.7", "confidence": "1.0" }, "immoreel": { "form": "immoreel", "cornetto_id": "r_a-11884", "cornetto_synset_id": "d_a-9342", "wordnet_id": "", "pos": "JJ", "sense": "in strijd met morele principes", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "immunologisch": { "form": "immunologisch", "cornetto_id": "r_a-11971", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "de immunologie betreffend", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "imperialistisch": { "form": "imperialistisch", "cornetto_id": "r_a-11886", "cornetto_synset_id": "n_a-513420", "wordnet_id": "a-03074368", "pos": "JJ", "sense": "het imperialisme betreffend", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "impertinent": { "form": "impertinent", "cornetto_id": "r_a-11887", "cornetto_synset_id": "d_a-9207", "wordnet_id": "a-00155720", "pos": "JJ", "sense": "brutaal", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "impliciet": { "form": "impliciet", "cornetto_id": "r_a-11888", "cornetto_synset_id": "n_a-513423", "wordnet_id": "a-00942163", "pos": "JJ", "sense": "niet expliciet", "polarity": "0.1", "subjectivity": "0.7", "intensity": "1.3", "confidence": "0.7" }, "impopulair": { "form": "impopulair", "cornetto_id": "r_a-11972", "cornetto_synset_id": "n_a-520667", "wordnet_id": "a-01463137", "pos": "JJ", "sense": "niet populair", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "imposant": { "form": "imposant", "cornetto_id": "r_a-11889", "cornetto_synset_id": "n_a-513568", "wordnet_id": "a-00624026", "pos": "JJ", "sense": "indrukwekkend", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.6", "confidence": "1.0" }, "impressief": { "form": "impressief", "cornetto_id": "d_a-119631", "cornetto_synset_id": "n_a-513568", "wordnet_id": "a-00624026", "pos": "JJ", "sense": "", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.6", "confidence": "0.7" }, "impressionistisch": { "form": "impressionistisch", "cornetto_id": "r_a-11973", "cornetto_synset_id": "n_a-513432", "wordnet_id": "a-02747466", "pos": "JJ", "sense": "zoals bij het impressionisme", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.1", "confidence": "0.7" }, "improductief": { "form": "improductief", "cornetto_id": "r_a-11974", "cornetto_synset_id": "n_a-521386", "wordnet_id": "a-01866535", "pos": "JJ", "sense": "niet productief", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "impulsief": { "form": "impulsief", "cornetto_id": "r_a-11891", "cornetto_synset_id": "n_a-528657", "wordnet_id": "a-00074594", "pos": "JJ", "sense": "geneigd impulsen te volgen", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "incidenteel": { "form": "incidenteel", "cornetto_id": "r_a-11894", "cornetto_synset_id": "d_a-9458", "wordnet_id": "", "pos": "JJ", "sense": "niet frequent", "polarity": "0.1", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "inclusief": { "form": "inclusief", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "1.0" }, "incoherent": { "form": "incoherent", "cornetto_id": "r_a-11975", "cornetto_synset_id": "n_a-521393", "wordnet_id": "a-00436115", "pos": "JJ", "sense": "onsamenhangend", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.9" }, "inconsequent": { "form": "inconsequent", "cornetto_id": "r_a-11978", "cornetto_synset_id": "n_a-513519", "wordnet_id": "a-01280349", "pos": "JJ", "sense": "niet consequent", "polarity": "-0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "incorrect": { "form": "incorrect", "cornetto_id": "r_a-12058", "cornetto_synset_id": "n_a-521127", "wordnet_id": "a-00136081", "pos": "JJ", "sense": "ongepast", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "indirect": { "form": "indirect", "cornetto_id": "r_a-11896", "cornetto_synset_id": "n_a-513551", "wordnet_id": "", "pos": "JJ", "sense": "niet direct", "polarity": "0.0", "subjectivity": "0.1", "intensity": "0.9", "confidence": "1.0" }, "indiscreet": { "form": "indiscreet", "cornetto_id": "r_a-12022", "cornetto_synset_id": "n_a-521258", "wordnet_id": "a-00773109", "pos": "JJ", "sense": "onbescheiden, onkies", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "indringend": { "form": "indringend", "cornetto_id": "r_a-11900", "cornetto_synset_id": "n_a-513565", "wordnet_id": "a-00842324", "pos": "JJ", "sense": "een diepe indruk achterlatend", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "indrukwekkend": { "form": "indrukwekkend", "cornetto_id": "r_a-11901", "cornetto_synset_id": "n_a-513568", "wordnet_id": "a-00624026", "pos": "JJ", "sense": "imponerend", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.6", "confidence": "1.0" }, "industrieel": { "form": "industrieel", "cornetto_id": "r_a-11902", "cornetto_synset_id": "d_a-9344", "wordnet_id": "a-01188648", "pos": "JJ", "sense": "industrie betreffend", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "ineffectief": { "form": "ineffectief", "cornetto_id": "r_a-11980", "cornetto_synset_id": "n_a-520941", "wordnet_id": "a-00839411", "pos": "JJ", "sense": "niet effectief", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "infantiel": { "form": "infantiel", "cornetto_id": "r_a-11905", "cornetto_synset_id": "n_a-514998", "wordnet_id": "a-01493016", "pos": "JJ", "sense": "erg kinderachtig", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "inferieur": { "form": "inferieur", "cornetto_id": "r_a-11906", "cornetto_synset_id": "n_a-518934", "wordnet_id": "a-01673061", "pos": "JJ", "sense": "minderwaardig", "polarity": "-0.8", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "inflatoir": { "form": "inflatoir", "cornetto_id": "r_a-11982", "cornetto_synset_id": "n_a-513611", "wordnet_id": "a-02538626", "pos": "JJ", "sense": "leidend tot inflatie", "polarity": "-0.2", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "informatief": { "form": "informatief", "cornetto_id": "r_a-11907", "cornetto_synset_id": "n_a-516919", "wordnet_id": "a-01325777", "pos": "JJ", "sense": "informatie bevattend", "polarity": "0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "infrastructureel": { "form": "infrastructureel", "cornetto_id": "r_a-11983", "cornetto_synset_id": "n_a-513636", "wordnet_id": "", "pos": "JJ", "sense": "de infrastructuur betreffend", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "ingeboren": { "form": "ingeboren", "cornetto_id": "r_a-12025", "cornetto_synset_id": "n_a-513683", "wordnet_id": "a-00489768", "pos": "JJ", "sense": "aangeboren", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "ingenieus": { "form": "ingenieus", "cornetto_id": "r_a-11916", "cornetto_synset_id": "n_a-533083", "wordnet_id": "a-00307182", "pos": "JJ", "sense": "vernuftig", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "ingetogen": { "form": "ingetogen", "cornetto_id": "r_a-11920", "cornetto_synset_id": "n_a-513680", "wordnet_id": "a-01532912", "pos": "JJ", "sense": "niet uitbundig", "polarity": "0.1", "subjectivity": "0.9", "intensity": "0.9", "confidence": "1.0" }, "ingevroren": { "form": "ingevroren", "cornetto_id": "r_a-12030", "cornetto_synset_id": "n_a-513682", "wordnet_id": "", "pos": "JJ", "sense": "bevroren ter conservering", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "ingewikkeld": { "form": "ingewikkeld", "cornetto_id": "r_a-11922", "cornetto_synset_id": "d_a-9348", "wordnet_id": "a-02176178", "pos": "JJ", "sense": "niet eenvoudig", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "ingrijpend": { "form": "ingrijpend", "cornetto_id": "r_a-11923", "cornetto_synset_id": "n_a-513689", "wordnet_id": "a-00526062", "pos": "JJ", "sense": "van grote invloed", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.3", "confidence": "1.0" }, "inhoudelijk": { "form": "inhoudelijk", "cornetto_id": "r_a-11927", "cornetto_synset_id": "n_a-513698", "wordnet_id": "", "pos": "JJ", "sense": "de inhoud betreffend", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "inktzwart": { "form": "inktzwart", "cornetto_id": "r_a-11990", "cornetto_synset_id": "n_a-523373", "wordnet_id": "a-00054364", "pos": "JJ", "sense": "heel zwart", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "innerlijk": { "form": "innerlijk", "cornetto_id": "r_a-11931", "cornetto_synset_id": "d_a-9349", "wordnet_id": "a-00900616", "pos": "JJ", "sense": "van binnen", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "innig": { "form": "innig", "cornetto_id": "r_a-11933", "cornetto_synset_id": "n_a-513758", "wordnet_id": "", "pos": "JJ", "sense": "warm", "polarity": "0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "insolvent": { "form": "insolvent", "cornetto_id": "r_a-12035", "cornetto_synset_id": "n_a-513801", "wordnet_id": "a-02026442", "pos": "JJ", "sense": "onvoldoende geld bezittend", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "inspannend": { "form": "inspannend", "cornetto_id": "r_a-12036", "cornetto_synset_id": "n_a-513802", "wordnet_id": "a-00836544", "pos": "JJ", "sense": "erg vermoeiend", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "inspirerend": { "form": "inspirerend", "cornetto_id": "r_a-12037", "cornetto_synset_id": "n_a-513804", "wordnet_id": "a-01323096", "pos": "JJ", "sense": "inspiratie gevend", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "instemmend": { "form": "instemmend", "cornetto_id": "r_a-11994", "cornetto_synset_id": "n_a-503932", "wordnet_id": "a-00075135", "pos": "JJ", "sense": "van instemming getuigend", "polarity": "0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "instinctief": { "form": "instinctief", "cornetto_id": "r_a-11935", "cornetto_synset_id": "n_a-513820", "wordnet_id": "a-02282985", "pos": "JJ", "sense": "gevoelsmatig", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.2", "confidence": "0.7" }, "instinctmatig": { "form": "instinctmatig", "cornetto_id": "r_a-12039", "cornetto_synset_id": "n_a-513820", "wordnet_id": "a-02282985", "pos": "JJ", "sense": "instinctief", "polarity": "0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "instructief": { "form": "instructief", "cornetto_id": "r_a-11936", "cornetto_synset_id": "n_a-516919", "wordnet_id": "a-01325777", "pos": "JJ", "sense": "leerzaam", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.9" }, "instrumentaal": { "form": "instrumentaal", "cornetto_id": "r_a-12071", "cornetto_synset_id": "n_a-513831", "wordnet_id": "a-02825770", "pos": "JJ", "sense": "met muziekinstrumenten", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "instrumenteel": { "form": "instrumenteel", "cornetto_id": "r_a-11996", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "als instrument dienend", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "integer": { "form": "integer", "cornetto_id": "r_a-11938", "cornetto_synset_id": "n_a-513844", "wordnet_id": "a-00622935", "pos": "JJ", "sense": "onkreukbaar", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "intellectueel": { "form": "intellectueel", "cornetto_id": "r_a-11940", "cornetto_synset_id": "n_a-532721", "wordnet_id": "a-01332386", "pos": "JJ", "sense": "verstandelijk", "polarity": "0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "intelligent": { "form": "intelligent", "cornetto_id": "r_a-11941", "cornetto_synset_id": "c_239", "wordnet_id": "a-01334398", "pos": "JJ", "sense": "schrander", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "intens": { "form": "intens", "cornetto_id": "r_a-11942", "cornetto_synset_id": "n_a-513857", "wordnet_id": "a-01839317", "pos": "JJ", "sense": "hevig", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.6", "confidence": "1.0" }, "interessant": { "form": "interessant", "cornetto_id": "r_a-12075", "cornetto_synset_id": "n_a-513884", "wordnet_id": "a-00177547", "pos": "JJ", "sense": "financieel aantrekkelijk", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "intergemeentelijk": { "form": "intergemeentelijk", "cornetto_id": "r_a-12000", "cornetto_synset_id": "n_a-513891", "wordnet_id": "", "pos": "JJ", "sense": "tussen gemeenten", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "internationaal": { "form": "internationaal", "cornetto_id": "r_a-11949", "cornetto_synset_id": "d_a-9351", "wordnet_id": "a-01037885", "pos": "JJ", "sense": "verschillende landen betreffend", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.1", "confidence": "1.0" }, "intiem": { "form": "intiem", "cornetto_id": "r_a-12079", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "seksualiteit betreffend", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "intolerant": { "form": "intolerant", "cornetto_id": "r_a-11952", "cornetto_synset_id": "n_a-521576", "wordnet_id": "a-02436794", "pos": "JJ", "sense": "onverdraagzaam", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "intrigerend": { "form": "intrigerend", "cornetto_id": "d_a-412260", "cornetto_synset_id": "n_a-508834", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "intrinsiek": { "form": "intrinsiek", "cornetto_id": "r_a-12008", "cornetto_synset_id": "d_a-9349", "wordnet_id": "a-00900616", "pos": "JJ", "sense": "eigen aan iets", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "invalide": { "form": "invalide", "cornetto_id": "r_a-11956", "cornetto_synset_id": "d_a-9355", "wordnet_id": "a-01019283", "pos": "JJ", "sense": "gehandicapt", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "inventief": { "form": "inventief", "cornetto_id": "r_a-11957", "cornetto_synset_id": "n_a-533083", "wordnet_id": "a-00307182", "pos": "JJ", "sense": "vindingrijk", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "invloedrijk": { "form": "invloedrijk", "cornetto_id": "r_a-11958", "cornetto_synset_id": "n_a-518022", "wordnet_id": "a-01826575", "pos": "JJ", "sense": "invloed hebbend", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "inzichtelijk": { "form": "inzichtelijk", "cornetto_id": "r_a-11961", "cornetto_synset_id": "n_a-503401", "wordnet_id": "a-00532892", "pos": "JJ", "sense": "helder", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "ironisch": { "form": "ironisch", "cornetto_id": "r_a-11962", "cornetto_synset_id": "n_a-528735", "wordnet_id": "a-00563288", "pos": "JJ", "sense": "met ironie", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "irrationeel": { "form": "irrationeel", "cornetto_id": "r_a-12011", "cornetto_synset_id": "n_a-520679", "wordnet_id": "a-01926376", "pos": "JJ", "sense": "niet rationeel", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "irrelevant": { "form": "irrelevant", "cornetto_id": "r_a-12013", "cornetto_synset_id": "n_a-514034", "wordnet_id": "a-01972596", "pos": "JJ", "sense": "niet relevant", "polarity": "-0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "irreëel": { "form": "irreëel", "cornetto_id": "r_a-12083", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "onrealistisch", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.8" }, "irritant": { "form": "irritant", "cornetto_id": "r_a-11963", "cornetto_synset_id": "n_a-514040", "wordnet_id": "a-00089550", "pos": "JJ", "sense": "ergerlijk", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "irritatie": { "form": "irritatie", "cornetto_id": "r_n-18289", "cornetto_synset_id": "d_n-33526", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.4", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.9" }, "jachtig": { "form": "jachtig", "cornetto_id": "r_a-12085", "cornetto_synset_id": "n_a-511750", "wordnet_id": "a-00086210", "pos": "JJ", "sense": "gejaagd", "polarity": "0.2", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "jaloers": { "form": "jaloers", "cornetto_id": "r_a-12086", "cornetto_synset_id": "d_a-9356", "wordnet_id": "a-01113636", "pos": "JJ", "sense": "afgunstig", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "jammer": { "form": "jammer", "cornetto_id": "r_a-12087", "cornetto_synset_id": "n_a-503876", "wordnet_id": "a-00176838", "pos": "JJ", "sense": "spijtig", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "jammerlijk": { "form": "jammerlijk", "cornetto_id": "r_a-12088", "cornetto_synset_id": "n_a-508241", "wordnet_id": "", "pos": "JJ", "sense": "spijtig", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "jarenlang": { "form": "jarenlang", "cornetto_id": "r_a-12278", "cornetto_synset_id": "n_a-514126", "wordnet_id": "", "pos": "JJ", "sense": "gedurende zeer lange tijd", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "jarig": { "form": "jarig", "cornetto_id": "r_a-12089", "cornetto_synset_id": "n_a-514127", "wordnet_id": "", "pos": "JJ", "sense": "gezegd van iemand op geboortedag", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "1.0" }, "jazzy": { "form": "jazzy", "cornetto_id": "r_a-12343", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "op jazz lijkend", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "jemig": { "form": "jemig", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "UH", "sense": "", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "jeugdig": { "form": "jeugdig", "cornetto_id": "r_a-12090", "cornetto_synset_id": "n_a-514159", "wordnet_id": "a-01649651", "pos": "JJ", "sense": "jong of jong lijkend", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "jolig": { "form": "jolig", "cornetto_id": "r_a-12092", "cornetto_synset_id": "n_a-531696", "wordnet_id": "a-00705498", "pos": "JJ", "sense": "uitgelaten", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "jong": { "form": "jong", "cornetto_id": "r_a-12094", "cornetto_synset_id": "n_a-525158", "wordnet_id": "a-01687167", "pos": "JJ", "sense": "kort bestaand", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "jonggestorven": { "form": "jonggestorven", "cornetto_id": "r_a-12346", "cornetto_synset_id": "n_a-514218", "wordnet_id": "", "pos": "JJ", "sense": "vroeg gestorven", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "journalistiek": { "form": "journalistiek", "cornetto_id": "r_a-12281", "cornetto_synset_id": "n_a-514226", "wordnet_id": "a-03077419", "pos": "JJ", "sense": "betreffende het werk van journalisten", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "juist": { "form": "juist", "cornetto_id": "r_a-12098", "cornetto_synset_id": "d_a-9306", "wordnet_id": "a-01020885", "pos": "JJ", "sense": "meest geschikt", "polarity": "0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "juridisch": { "form": "juridisch", "cornetto_id": "r_a-12100", "cornetto_synset_id": "n_a-514272", "wordnet_id": "a-01395617", "pos": "JJ", "sense": "rechtskundig", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "justitieel": { "form": "justitieel", "cornetto_id": "r_a-12101", "cornetto_synset_id": "n_a-510462", "wordnet_id": "a-01400562", "pos": "JJ", "sense": "gerechtelijk", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "juweeltje": { "form": "juweeltje", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.9" }, "kaarsrecht": { "form": "kaarsrecht", "cornetto_id": "r_a-12558", "cornetto_synset_id": "n_a-514314", "wordnet_id": "", "pos": "JJ", "sense": "helemaal recht", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "kaduuk": { "form": "kaduuk", "cornetto_id": "r_a-12392", "cornetto_synset_id": "d_a-9361", "wordnet_id": "a-00289082", "pos": "JJ", "sense": "stuk", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "kakelvers": { "form": "kakelvers", "cornetto_id": "r_a-12613", "cornetto_synset_id": "n_a-514369", "wordnet_id": "", "pos": "JJ", "sense": "kersvers", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "kalm": { "form": "kalm", "cornetto_id": "r_a-12394", "cornetto_synset_id": "d_a-9360", "wordnet_id": "", "pos": "JJ", "sense": "rustig", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.9" }, "kankerverwekkend": { "form": "kankerverwekkend", "cornetto_id": "r_a-12561", "cornetto_synset_id": "n_a-514469", "wordnet_id": "a-02679858", "pos": "JJ", "sense": "carcinogeen", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "kansarm": { "form": "kansarm", "cornetto_id": "r_a-12396", "cornetto_synset_id": "n_a-514474", "wordnet_id": "a-01864471", "pos": "JJ", "sense": "met weinig kansen om vooruit te komen", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "kansloos": { "form": "kansloos", "cornetto_id": "r_a-12562", "cornetto_synset_id": "n_a-514476", "wordnet_id": "a-02492383", "pos": "JJ", "sense": "zonder kans", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "kansrijk": { "form": "kansrijk", "cornetto_id": "r_a-12563", "cornetto_synset_id": "n_a-532117", "wordnet_id": "a-00382173", "pos": "JJ", "sense": "met veel kans van slagen", "polarity": "0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "kant-en-klaar": { "form": "kant-en-klaar", "cornetto_id": "r_a-12397", "cornetto_synset_id": "n_a-514481", "wordnet_id": "a-00672932", "pos": "JJ", "sense": "klaar voor gebruik", "polarity": "0.6", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "kapot": { "form": "kapot", "cornetto_id": "r_a-12402", "cornetto_synset_id": "c_527", "wordnet_id": "", "pos": "JJ", "sense": "erg onder de indruk", "polarity": "-0.3", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "kardinaal": { "form": "kardinaal", "cornetto_id": "r_a-12404", "cornetto_synset_id": "n_a-509441", "wordnet_id": "a-00095094", "pos": "JJ", "sense": "belangrijkste", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.1", "confidence": "0.7" }, "karig": { "form": "karig", "cornetto_id": "r_a-12405", "cornetto_synset_id": "d_a-9632", "wordnet_id": "a-00106456", "pos": "JJ", "sense": "niet royaal", "polarity": "-0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "karikaturaal": { "form": "karikaturaal", "cornetto_id": "r_a-12617", "cornetto_synset_id": "n_a-514584", "wordnet_id": "", "pos": "JJ", "sense": "als (van) een karikatuur", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "katholiek": { "form": "katholiek", "cornetto_id": "r_a-12686", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "goed", "polarity": "0.2", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "katoenen": { "form": "katoenen", "cornetto_id": "r_a-12566", "cornetto_synset_id": "n_a-514673", "wordnet_id": "", "pos": "JJ", "sense": "van katoen", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "katterig": { "form": "katterig", "cornetto_id": "r_a-12407", "cornetto_synset_id": "n_a-509539", "wordnet_id": "a-00876204", "pos": "JJ", "sense": "niet lekker", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "keigoed": { "form": "keigoed", "cornetto_id": "r_a-12619", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "steengoed", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.8" }, "keihard": { "form": "keihard", "cornetto_id": "r_a-12567", "cornetto_synset_id": "n_a-514712", "wordnet_id": "a-01024812", "pos": "JJ", "sense": "heel hard", "polarity": "0.1", "subjectivity": "0.7", "intensity": "1.3", "confidence": "1.0" }, "keiig": { "form": "keiig", "cornetto_id": "d_a-132455", "cornetto_synset_id": "d_a-9174", "wordnet_id": "a-01119192", "pos": "JJ", "sense": "", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "kenmerkend": { "form": "kenmerkend", "cornetto_id": "r_a-12413", "cornetto_synset_id": "n_a-514566", "wordnet_id": "a-00356926", "pos": "JJ", "sense": "typerend", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "kennelijk": { "form": "kennelijk", "cornetto_id": "r_a-12568", "cornetto_synset_id": "c_261", "wordnet_id": "a-00431447", "pos": "JJ", "sense": "klaarblijkelijk", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.1", "confidence": "1.0" }, "kerks": { "form": "kerks", "cornetto_id": "r_a-12416", "cornetto_synset_id": "n_a-514779", "wordnet_id": "a-01781478", "pos": "JJ", "sense": "vaak naar de kerk gaand", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "kerngezond": { "form": "kerngezond", "cornetto_id": "r_a-12570", "cornetto_synset_id": "n_a-514800", "wordnet_id": "", "pos": "JJ", "sense": "helemaal gezond", "polarity": "0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "kernwapenvrij": { "form": "kernwapenvrij", "cornetto_id": "r_a-12571", "cornetto_synset_id": "n_a-514817", "wordnet_id": "", "pos": "JJ", "sense": "vrij van kernwapens", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "ketters": { "form": "ketters", "cornetto_id": "r_a-12573", "cornetto_synset_id": "d_a-9363", "wordnet_id": "a-01691474", "pos": "JJ", "sense": "(als) van een ketter", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "keurig": { "form": "keurig", "cornetto_id": "r_a-12418", "cornetto_synset_id": "n_a-503731", "wordnet_id": "a-01947741", "pos": "JJ", "sense": "netjes", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "kien": { "form": "kien", "cornetto_id": "d_a-133980", "cornetto_synset_id": "n_a-527945", "wordnet_id": "a-00092136", "pos": "JJ", "sense": "", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "kies": { "form": "kies", "cornetto_id": "r_a-12420", "cornetto_synset_id": "n_a-514922", "wordnet_id": "", "pos": "JJ", "sense": "tactvol", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "kiesgerechtigd": { "form": "kiesgerechtigd", "cornetto_id": "r_a-12622", "cornetto_synset_id": "n_a-514924", "wordnet_id": "a-00876609", "pos": "JJ", "sense": "kiesrecht hebbend", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "kil": { "form": "kil", "cornetto_id": "r_a-12423", "cornetto_synset_id": "n_a-515500", "wordnet_id": "a-01257612", "pos": "JJ", "sense": "niet hartelijk", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "kilometerslang": { "form": "kilometerslang", "cornetto_id": "r_a-12574", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "heel lang", "polarity": "-0.1", "subjectivity": "0.5", "intensity": "1.2", "confidence": "0.7" }, "kinderachtig": { "form": "kinderachtig", "cornetto_id": "r_a-12425", "cornetto_synset_id": "n_a-514975", "wordnet_id": "a-00265314", "pos": "JJ", "sense": "kleinzielig", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "kinderlijk": { "form": "kinderlijk", "cornetto_id": "r_a-12426", "cornetto_synset_id": "n_a-514998", "wordnet_id": "a-01493016", "pos": "JJ", "sense": "als, van een kind", "polarity": "-0.2", "subjectivity": "0.8", "intensity": "1.1", "confidence": "1.0" }, "kinderloos": { "form": "kinderloos", "cornetto_id": "r_a-12575", "cornetto_synset_id": "n_a-515001", "wordnet_id": "a-01082998", "pos": "JJ", "sense": "zonder kinderen", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "kinds": { "form": "kinds", "cornetto_id": "r_a-12427", "cornetto_synset_id": "n_a-515033", "wordnet_id": "a-01464433", "pos": "JJ", "sense": "dement", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "kiplekker": { "form": "kiplekker", "cornetto_id": "r_a-12428", "cornetto_synset_id": "n_a-509078", "wordnet_id": "", "pos": "JJ", "sense": "fit", "polarity": "0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "klaaglijk": { "form": "klaaglijk", "cornetto_id": "r_a-12432", "cornetto_synset_id": "n_a-515063", "wordnet_id": "a-01050890", "pos": "JJ", "sense": "klagend", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "klaar": { "form": "klaar", "cornetto_id": "r_a-12435", "cornetto_synset_id": "n_a-512275", "wordnet_id": "a-00431447", "pos": "JJ", "sense": "helder", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "klaarblijkelijk": { "form": "klaarblijkelijk", "cornetto_id": "r_a-12436", "cornetto_synset_id": "d_a-9248", "wordnet_id": "a-00431447", "pos": "JJ", "sense": "evident", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.1", "confidence": "1.0" }, "klaarlicht": { "form": "klaarlicht", "cornetto_id": "r_a-12437", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "geheel licht", "polarity": "0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "klagen": { "form": "klagen", "cornetto_id": "c_545792", "cornetto_synset_id": "d_v-4305", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "-0.3", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "klagerig": { "form": "klagerig", "cornetto_id": "r_a-12691", "cornetto_synset_id": "n_a-515063", "wordnet_id": "a-01050890", "pos": "JJ", "sense": "veel klagend", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "klam": { "form": "klam", "cornetto_id": "r_a-12440", "cornetto_synset_id": "n_a-515087", "wordnet_id": "a-02548619", "pos": "JJ", "sense": "vochtig aanvoelend", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "klassiek": { "form": "klassiek", "cornetto_id": "r_a-12442", "cornetto_synset_id": "n_a-531136", "wordnet_id": "a-00607977", "pos": "JJ", "sense": "traditioneel", "polarity": "-0.1", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "klef": { "form": "klef", "cornetto_id": "r_a-12445", "cornetto_synset_id": "d_a-9587", "wordnet_id": "a-02548619", "pos": "JJ", "sense": "kleverig en vochtig", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "klein": { "form": "klein", "cornetto_id": "r_a-12447", "cornetto_synset_id": "d_a-9357", "wordnet_id": "a-01646941", "pos": "JJ", "sense": "jong", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "kleinburgerlijk": { "form": "kleinburgerlijk", "cornetto_id": "r_a-12448", "cornetto_synset_id": "d_a-9211", "wordnet_id": "a-00288498", "pos": "JJ", "sense": "bekrompen", "polarity": "-0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "kleinzerig": { "form": "kleinzerig", "cornetto_id": "r_a-12452", "cornetto_synset_id": "n_a-515194", "wordnet_id": "a-02106509", "pos": "JJ", "sense": "al bang voor een beetje pijn", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "kleinzielig": { "form": "kleinzielig", "cornetto_id": "r_a-12453", "cornetto_synset_id": "n_a-514975", "wordnet_id": "a-00265314", "pos": "JJ", "sense": "kinderachtig", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.9" }, "klemmend": { "form": "klemmend", "cornetto_id": "r_a-12455", "cornetto_synset_id": "n_a-513565", "wordnet_id": "a-00842324", "pos": "JJ", "sense": "dringend", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "kleurig": { "form": "kleurig", "cornetto_id": "r_a-12458", "cornetto_synset_id": "n_a-504646", "wordnet_id": "a-00398978", "pos": "JJ", "sense": "bont", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "kleurloos": { "form": "kleurloos", "cornetto_id": "r_a-12459", "cornetto_synset_id": "d_a-9367", "wordnet_id": "a-00394331", "pos": "JJ", "sense": "zonder kleur, saai", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "kleurrijk": { "form": "kleurrijk", "cornetto_id": "r_a-12580", "cornetto_synset_id": "n_a-504646", "wordnet_id": "a-00398978", "pos": "JJ", "sense": "bont", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "kleverig": { "form": "kleverig", "cornetto_id": "r_a-12460", "cornetto_synset_id": "n_a-523499", "wordnet_id": "a-00053691", "pos": "JJ", "sense": "plakkerig", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "klierig": { "form": "klierig", "cornetto_id": "r_a-12631", "cornetto_synset_id": "c_179", "wordnet_id": "a-00089550", "pos": "JJ", "sense": "vervelend", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "klimatologisch": { "form": "klimatologisch", "cornetto_id": "r_a-12581", "cornetto_synset_id": "n_a-515290", "wordnet_id": "a-03055374", "pos": "JJ", "sense": "mbt. het klimaat", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.7", "confidence": "0.7" }, "klinisch": { "form": "klinisch", "cornetto_id": "r_a-12674", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "mbt. ziekteverschijnselen", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "klinkklaar": { "form": "klinkklaar", "cornetto_id": "r_a-12462", "cornetto_synset_id": "n_a-515305", "wordnet_id": "a-00765666", "pos": "JJ", "sense": "puur", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.8" }, "kloek": { "form": "kloek", "cornetto_id": "r_a-12464", "cornetto_synset_id": "n_a-517354", "wordnet_id": "a-01384438", "pos": "JJ", "sense": "fors", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.1", "confidence": "0.7" }, "kloosterlijk": { "form": "kloosterlijk", "cornetto_id": "r_a-12633", "cornetto_synset_id": "n_a-515342", "wordnet_id": "a-01300961", "pos": "JJ", "sense": "klooster-, kloosterachtig", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "kloot": { "form": "kloot", "cornetto_id": "r_n-19887", "cornetto_synset_id": "d_n-40847", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "klote": { "form": "klote", "cornetto_id": "r_a-12634", "cornetto_synset_id": "d_a-9577", "wordnet_id": "a-00247439", "pos": "JJ", "sense": "rot", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "kloten": { "form": "kloten", "cornetto_id": "r_v-3969", "cornetto_synset_id": "d_v-3653", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "klucht": { "form": "klucht", "cornetto_id": "r_n-19899", "cornetto_synset_id": "d_n-17687", "wordnet_id": "n-06780309", "pos": "NN", "sense": "", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "kluchtig": { "form": "kluchtig", "cornetto_id": "r_a-12465", "cornetto_synset_id": "n_a-515356", "wordnet_id": "a-00221627", "pos": "JJ", "sense": "potsierlijk", "polarity": "0.3", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "klungelig": { "form": "klungelig", "cornetto_id": "r_a-12635", "cornetto_synset_id": "c_82", "wordnet_id": "a-01140896", "pos": "JJ", "sense": "onhandig", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "knap": { "form": "knap", "cornetto_id": "r_a-12696", "cornetto_synset_id": "c_528", "wordnet_id": "", "pos": "JJ", "sense": "goed, mooi", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "knapperig": { "form": "knapperig", "cornetto_id": "r_a-12468", "cornetto_synset_id": "n_a-515384", "wordnet_id": "a-00708738", "pos": "JJ", "sense": "krokant", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "knobbelig": { "form": "knobbelig", "cornetto_id": "r_a-12583", "cornetto_synset_id": "n_a-515439", "wordnet_id": "a-02141735", "pos": "JJ", "sense": "vol knobbels", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "knoeierig": { "form": "knoeierig", "cornetto_id": "d_a-138213", "cornetto_synset_id": "d_a-9454", "wordnet_id": "a-01140896", "pos": "JJ", "sense": "", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "knokig": { "form": "knokig", "cornetto_id": "r_a-12473", "cornetto_synset_id": "n_a-503592", "wordnet_id": "a-03138224", "pos": "JJ", "sense": "benig", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "knullig": { "form": "knullig", "cornetto_id": "r_a-12474", "cornetto_synset_id": "d_a-9454", "wordnet_id": "a-01140896", "pos": "JJ", "sense": "onbeholpen", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "knus": { "form": "knus", "cornetto_id": "r_a-12475", "cornetto_synset_id": "n_a-510897", "wordnet_id": "a-00166146", "pos": "JJ", "sense": "gezellig", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "koddig": { "form": "koddig", "cornetto_id": "r_a-12476", "cornetto_synset_id": "n_a-515488", "wordnet_id": "a-01265308", "pos": "JJ", "sense": "grappig", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "koel": { "form": "koel", "cornetto_id": "r_a-12699", "cornetto_synset_id": "n_a-520216", "wordnet_id": "a-01943406", "pos": "JJ", "sense": "koelbloedig", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "koeltjes": { "form": "koeltjes", "cornetto_id": "d_a-138856", "cornetto_synset_id": "n_a-515500", "wordnet_id": "a-01257612", "pos": "JJ", "sense": "", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "kogelrond": { "form": "kogelrond", "cornetto_id": "r_a-12481", "cornetto_synset_id": "n_a-515594", "wordnet_id": "a-02041229", "pos": "JJ", "sense": "heel rond", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.1", "confidence": "0.7" }, "kogelvrij": { "form": "kogelvrij", "cornetto_id": "r_a-12482", "cornetto_synset_id": "n_a-515598", "wordnet_id": "a-00144102", "pos": "JJ", "sense": "bestand tegen kogels", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "kokendheet": { "form": "kokendheet", "cornetto_id": "r_a-12642", "cornetto_synset_id": "n_a-515605", "wordnet_id": "a-00270496", "pos": "JJ", "sense": "gloeiend heet", "polarity": "0.0", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "koket": { "form": "koket", "cornetto_id": "r_a-12676", "cornetto_synset_id": "n_a-515609", "wordnet_id": "a-00205295", "pos": "JJ", "sense": "elegant", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "kolderiek": { "form": "kolderiek", "cornetto_id": "r_a-12484", "cornetto_synset_id": "n_a-509995", "wordnet_id": "a-01836766", "pos": "JJ", "sense": "dwaas", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.3", "confidence": "0.9" }, "koloniaal": { "form": "koloniaal", "cornetto_id": "r_a-12586", "cornetto_synset_id": "n_a-515655", "wordnet_id": "a-02177397", "pos": "JJ", "sense": "mbt. kolonie(s)", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "0.9", "confidence": "0.7" }, "kolossaal": { "form": "kolossaal", "cornetto_id": "r_a-12485", "cornetto_synset_id": "c_681", "wordnet_id": "a-01385255", "pos": "JJ", "sense": "enorm", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.7", "confidence": "1.0" }, "komend": { "form": "komend", "cornetto_id": "r_a-12587", "cornetto_synset_id": "n_a-508045", "wordnet_id": "a-00123485", "pos": "JJ", "sense": "toekomstig", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "komisch": { "form": "komisch", "cornetto_id": "r_a-12487", "cornetto_synset_id": "n_a-517089", "wordnet_id": "", "pos": "JJ", "sense": "grappig", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "kommerlijk": { "form": "kommerlijk", "cornetto_id": "d_a-140000", "cornetto_synset_id": "n_a-508241", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "kommervol": { "form": "kommervol", "cornetto_id": "d_a-140008", "cornetto_synset_id": "n_a-508241", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "kooplustig": { "form": "kooplustig", "cornetto_id": "r_a-12649", "cornetto_synset_id": "n_a-515741", "wordnet_id": "a-00029343", "pos": "JJ", "sense": "koopgraag", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "koortsachtig": { "form": "koortsachtig", "cornetto_id": "r_a-12491", "cornetto_synset_id": "n_a-515773", "wordnet_id": "a-00086341", "pos": "JJ", "sense": "gejaagd", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "koortsig": { "form": "koortsig", "cornetto_id": "r_a-12492", "cornetto_synset_id": "n_a-515775", "wordnet_id": "a-02542256", "pos": "JJ", "sense": "mbt. koorts", "polarity": "-0.2", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "kopen": { "form": "kopen", "cornetto_id": "r_v-4101", "cornetto_synset_id": "d_v-3757", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "0.1", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "kort": { "form": "kort", "cornetto_id": "r_a-12498", "cornetto_synset_id": "n_a-515879", "wordnet_id": "a-01442186", "pos": "JJ", "sense": "lengte en afstand", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "kortaangebonden": { "form": "kortaangebonden", "cornetto_id": "r_a-12653", "cornetto_synset_id": "n_a-515884", "wordnet_id": "a-00313217", "pos": "JJ", "sense": "kortaf", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "kortdurend": { "form": "kortdurend", "cornetto_id": "r_a-12591", "cornetto_synset_id": "n_a-515880", "wordnet_id": "a-01436003", "pos": "JJ", "sense": "kortstondig", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "kortzichtig": { "form": "kortzichtig", "cornetto_id": "r_a-12501", "cornetto_synset_id": "n_a-515908", "wordnet_id": "", "pos": "JJ", "sense": "niet vooruitziend, niet ruimdenkend", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "kostbaar": { "form": "kostbaar", "cornetto_id": "r_a-12505", "cornetto_synset_id": "d_a-9606", "wordnet_id": "a-00933154", "pos": "JJ", "sense": "waardevol", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "kostelijk": { "form": "kostelijk", "cornetto_id": "r_a-12506", "cornetto_synset_id": "d_a-9557", "wordnet_id": "", "pos": "JJ", "sense": "uitstekend", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "kostenbesparend": { "form": "kostenbesparend", "cornetto_id": "r_a-12595", "cornetto_synset_id": "n_a-515920", "wordnet_id": "", "pos": "JJ", "sense": "wat kosten bespaart", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "koud": { "form": "koud", "cornetto_id": "r_a-12508", "cornetto_synset_id": "n_a-515500", "wordnet_id": "a-01257612", "pos": "JJ", "sense": "afstandelijk", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "kouwelijk": { "form": "kouwelijk", "cornetto_id": "r_a-12678", "cornetto_synset_id": "n_a-515947", "wordnet_id": "a-02532898", "pos": "JJ", "sense": "gevoelig voor kou", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "kraakhelder": { "form": "kraakhelder", "cornetto_id": "r_a-12597", "cornetto_synset_id": "n_a-504904", "wordnet_id": "a-00247013", "pos": "JJ", "sense": "heel helder", "polarity": "0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "krachtdadig": { "form": "krachtdadig", "cornetto_id": "r_a-12511", "cornetto_synset_id": "n_a-516002", "wordnet_id": "a-00156101", "pos": "JJ", "sense": "energiek", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.3", "confidence": "0.7" }, "krachtig": { "form": "krachtig", "cornetto_id": "r_a-12512", "cornetto_synset_id": "d_a-9536", "wordnet_id": "a-02321009", "pos": "JJ", "sense": "fysiek sterk", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "krakkemikkig": { "form": "krakkemikkig", "cornetto_id": "r_a-12513", "cornetto_synset_id": "n_a-509538", "wordnet_id": "a-00263994", "pos": "JJ", "sense": "gammel", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "krampachtig": { "form": "krampachtig", "cornetto_id": "r_a-12679", "cornetto_synset_id": "n_a-516031", "wordnet_id": "a-00086341", "pos": "JJ", "sense": "met grote inspanning", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.3", "confidence": "0.7" }, "krankjorum": { "form": "krankjorum", "cornetto_id": "r_a-12516", "cornetto_synset_id": "n_a-509995", "wordnet_id": "a-01836766", "pos": "JJ", "sense": "krankzinnig", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.7", "confidence": "0.7" }, "krankzinnig": { "form": "krankzinnig", "cornetto_id": "r_a-12518", "cornetto_synset_id": "n_a-509995", "wordnet_id": "a-01836766", "pos": "JJ", "sense": "idioot", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "krap": { "form": "krap", "cornetto_id": "r_a-12701", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "zonder speelruimte", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.4", "confidence": "0.7" }, "kras": { "form": "kras", "cornetto_id": "r_a-12522", "cornetto_synset_id": "n_a-535103", "wordnet_id": "a-00645493", "pos": "JJ", "sense": "moeilijk te geloven", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.2", "confidence": "0.7" }, "kregelig": { "form": "kregelig", "cornetto_id": "r_a-12524", "cornetto_synset_id": "n_a-509660", "wordnet_id": "a-00116529", "pos": "JJ", "sense": "kregel", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "krengerig": { "form": "krengerig", "cornetto_id": "r_a-12660", "cornetto_synset_id": "n_a-510247", "wordnet_id": "a-00225564", "pos": "JJ", "sense": "gemeen", "polarity": "-0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "kreupel": { "form": "kreupel", "cornetto_id": "r_a-12680", "cornetto_synset_id": "n_a-509754", "wordnet_id": "a-00151105", "pos": "JJ", "sense": "gebrekkig", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "kribbig": { "form": "kribbig", "cornetto_id": "r_a-12527", "cornetto_synset_id": "n_a-509660", "wordnet_id": "a-00116529", "pos": "JJ", "sense": "geïrriteerd", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "kriebelig": { "form": "kriebelig", "cornetto_id": "r_a-12681", "cornetto_synset_id": "n_a-516106", "wordnet_id": "a-00310433", "pos": "JJ", "sense": "klein geschreven", "polarity": "-0.1", "subjectivity": "1.0", "intensity": "1.7", "confidence": "0.7" }, "krijgshaftig": { "form": "krijgshaftig", "cornetto_id": "r_a-12529", "cornetto_synset_id": "n_a-516117", "wordnet_id": "a-01517526", "pos": "JJ", "sense": "moedig", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "kristalhelder": { "form": "kristalhelder", "cornetto_id": "r_a-12600", "cornetto_synset_id": "n_a-511051", "wordnet_id": "a-00429355", "pos": "JJ", "sense": "heel helder", "polarity": "0.5", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "kritisch": { "form": "kritisch", "cornetto_id": "r_a-12532", "cornetto_synset_id": "n_a-516167", "wordnet_id": "a-00649586", "pos": "JJ", "sense": "grondig onderzoekend", "polarity": "0.2", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "krokant": { "form": "krokant", "cornetto_id": "r_a-12533", "cornetto_synset_id": "n_a-515384", "wordnet_id": "a-00708738", "pos": "JJ", "sense": "knapperig", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "krom": { "form": "krom", "cornetto_id": "r_a-12702", "cornetto_synset_id": "c_577", "wordnet_id": "a-01881478", "pos": "JJ", "sense": "verkeerd", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "kronkelig": { "form": "kronkelig", "cornetto_id": "r_a-12604", "cornetto_synset_id": "n_a-504474", "wordnet_id": "a-01563713", "pos": "JJ", "sense": "vol kronkels", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "kroostrijk": { "form": "kroostrijk", "cornetto_id": "r_a-12667", "cornetto_synset_id": "n_a-515015", "wordnet_id": "", "pos": "JJ", "sense": "met veel kinderen", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "krukkig": { "form": "krukkig", "cornetto_id": "r_a-12541", "cornetto_synset_id": "d_a-9454", "wordnet_id": "a-01140896", "pos": "JJ", "sense": "onhandig", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "kubistisch": { "form": "kubistisch", "cornetto_id": "r_a-12606", "cornetto_synset_id": "n_a-516302", "wordnet_id": "a-03021194", "pos": "JJ", "sense": "mbt. kubisme", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.1", "confidence": "0.7" }, "kunsthistorisch": { "form": "kunsthistorisch", "cornetto_id": "r_a-12607", "cornetto_synset_id": "n_a-516333", "wordnet_id": "", "pos": "JJ", "sense": "mbt. de kunstgeschiedenis", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "kunstig": { "form": "kunstig", "cornetto_id": "r_a-12545", "cornetto_synset_id": "n_a-516334", "wordnet_id": "a-01334958", "pos": "JJ", "sense": "ingenieus", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "kunstminnend": { "form": "kunstminnend", "cornetto_id": "r_a-12670", "cornetto_synset_id": "n_a-516346", "wordnet_id": "", "pos": "JJ", "sense": "kunstlievend", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "kurkdroog": { "form": "kurkdroog", "cornetto_id": "r_a-12608", "cornetto_synset_id": "n_a-516368", "wordnet_id": "a-02552646", "pos": "JJ", "sense": "heel droog", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "kwaad": { "form": "kwaad", "cornetto_id": "r_a-12703", "cornetto_synset_id": "c_254", "wordnet_id": "a-00225564", "pos": "JJ", "sense": "boosaardig", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "kwaadaardig": { "form": "kwaadaardig", "cornetto_id": "r_a-12549", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "gemeen", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "kwalijk": { "form": "kwalijk", "cornetto_id": "r_a-12552", "cornetto_synset_id": "n_r-519714", "wordnet_id": "", "pos": "JJ", "sense": "ongunstig", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "kwalitatief": { "form": "kwalitatief", "cornetto_id": "r_a-12553", "cornetto_synset_id": "n_a-516427", "wordnet_id": "a-01914521", "pos": "JJ", "sense": "mbt. de kwaliteit", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "kwestieus": { "form": "kwestieus", "cornetto_id": "d_a-145817", "cornetto_synset_id": "n_a-531602", "wordnet_id": "a-00590390", "pos": "JJ", "sense": "", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "kwetsbaar": { "form": "kwetsbaar", "cornetto_id": "r_a-12555", "cornetto_synset_id": "c_565", "wordnet_id": "a-00709215", "pos": "JJ", "sense": "teer", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "0.9", "confidence": "1.0" }, "kwiek": { "form": "kwiek", "cornetto_id": "r_a-12556", "cornetto_synset_id": "d_a-9583", "wordnet_id": "a-00119006", "pos": "JJ", "sense": "levendig", "polarity": "0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "kwijt": { "form": "kwijt", "cornetto_id": "r_a-12557", "cornetto_synset_id": "n_a-516488", "wordnet_id": "", "pos": "JJ", "sense": "weg", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "kwistig": { "form": "kwistig", "cornetto_id": "r_a-16624", "cornetto_synset_id": "n_a-516498", "wordnet_id": "a-00015247", "pos": "JJ", "sense": "niet zuinig", "polarity": "-0.1", "subjectivity": "0.5", "intensity": "1.1", "confidence": "0.7" }, "laag": { "form": "laag", "cornetto_id": "r_a-12106", "cornetto_synset_id": "c_540", "wordnet_id": "a-01589650", "pos": "JJ", "sense": "gemeen", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "laag-bij-de-gronds": { "form": "laag-bij-de-gronds", "cornetto_id": "r_a-12107", "cornetto_synset_id": "n_a-523583", "wordnet_id": "a-00683531", "pos": "JJ", "sense": "platvloers", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "laaghartig": { "form": "laaghartig", "cornetto_id": "r_a-12108", "cornetto_synset_id": "n_a-510247", "wordnet_id": "a-00225564", "pos": "JJ", "sense": "gemeen", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "laaiend": { "form": "laaiend", "cornetto_id": "r_a-12109", "cornetto_synset_id": "d_a-9618", "wordnet_id": "a-00114454", "pos": "JJ", "sense": "hoog opschietend", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.4", "confidence": "1.0" }, "laakbaar": { "form": "laakbaar", "cornetto_id": "r_a-12110", "cornetto_synset_id": "n_a-527874", "wordnet_id": "a-01321529", "pos": "JJ", "sense": "afkeurenswaardig", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "laat": { "form": "laat", "cornetto_id": "c_545369", "cornetto_synset_id": "n_a-516548", "wordnet_id": "a-00816481", "pos": "JJ", "sense": "verder in de tijd", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "laatdunkend": { "form": "laatdunkend", "cornetto_id": "r_a-12112", "cornetto_synset_id": "n_a-518925", "wordnet_id": "a-00906655", "pos": "JJ", "sense": "minachtend", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "laatst": { "form": "laatst", "cornetto_id": "r_a-12114", "cornetto_synset_id": "n_a-525158", "wordnet_id": "a-01687167", "pos": "JJ", "sense": "kortst geleden", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "1.0" }, "labiel": { "form": "labiel", "cornetto_id": "r_a-12116", "cornetto_synset_id": "n_a-520983", "wordnet_id": "a-00345189", "pos": "JJ", "sense": "wankel", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "lachwekkend": { "form": "lachwekkend", "cornetto_id": "r_a-12289", "cornetto_synset_id": "n_a-511389", "wordnet_id": "", "pos": "JJ", "sense": "de lachlust opwekkend", "polarity": "0.2", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "laconiek": { "form": "laconiek", "cornetto_id": "r_a-12117", "cornetto_synset_id": "n_a-516585", "wordnet_id": "a-00547641", "pos": "JJ", "sense": "doodkalm", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "ladderzat": { "form": "ladderzat", "cornetto_id": "r_a-12349", "cornetto_synset_id": "n_a-529441", "wordnet_id": "a-00798103", "pos": "JJ", "sense": "stomdronken", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "laf": { "form": "laf", "cornetto_id": "r_a-12119", "cornetto_synset_id": "n_a-509105", "wordnet_id": "a-02399595", "pos": "JJ", "sense": "zonder moed", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "lafhartig": { "form": "lafhartig", "cornetto_id": "r_a-12123", "cornetto_synset_id": "d_a-9375", "wordnet_id": "a-00264776", "pos": "JJ", "sense": "laf", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "laks": { "form": "laks", "cornetto_id": "r_a-12124", "cornetto_synset_id": "n_a-516623", "wordnet_id": "a-01763159", "pos": "JJ", "sense": "gemakzuchtig", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "lam": { "form": "lam", "cornetto_id": "r_a-12125", "cornetto_synset_id": "d_a-9571", "wordnet_id": "a-02545989", "pos": "JJ", "sense": "verlamd", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "lamentabel": { "form": "lamentabel", "cornetto_id": "r_a-12291", "cornetto_synset_id": "n_a-508241", "wordnet_id": "", "pos": "JJ", "sense": "erbarmelijk", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "landbouwkundig": { "form": "landbouwkundig", "cornetto_id": "r_a-12292", "cornetto_synset_id": "n_a-516671", "wordnet_id": "a-02608902", "pos": "JJ", "sense": "agronomisch", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "lang": { "form": "lang", "cornetto_id": "r_a-12132", "cornetto_synset_id": "n_a-516735", "wordnet_id": "a-01437963", "pos": "JJ", "sense": "een hele tijd durend", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "langdradig": { "form": "langdradig", "cornetto_id": "r_a-12133", "cornetto_synset_id": "n_a-516733", "wordnet_id": "a-00548781", "pos": "JJ", "sense": "wijdlopig", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "langdurig": { "form": "langdurig", "cornetto_id": "r_a-12134", "cornetto_synset_id": "n_a-516735", "wordnet_id": "a-01437963", "pos": "JJ", "sense": "een hele tijd durend", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "langer": { "form": "langer", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "langlevend": { "form": "langlevend", "cornetto_id": "r_a-12295", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "met een lang leven", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "langlopend": { "form": "langlopend", "cornetto_id": "r_a-12296", "cornetto_synset_id": "n_a-516735", "wordnet_id": "a-01437963", "pos": "JJ", "sense": "lange tijd durend", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "langzaam": { "form": "langzaam", "cornetto_id": "r_a-12138", "cornetto_synset_id": "n_a-516764", "wordnet_id": "a-00980527", "pos": "JJ", "sense": "traag", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "lankmoedig": { "form": "lankmoedig", "cornetto_id": "r_a-12139", "cornetto_synset_id": "n_a-532336", "wordnet_id": "a-01736384", "pos": "JJ", "sense": "tolerant", "polarity": "0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "larmoyant": { "form": "larmoyant", "cornetto_id": "r_a-12140", "cornetto_synset_id": "n_a-513041", "wordnet_id": "", "pos": "JJ", "sense": "huilerig", "polarity": "-0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "last": { "form": "last", "cornetto_id": "r_n-21468", "cornetto_synset_id": "d_n-22848", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "lasterlijk": { "form": "lasterlijk", "cornetto_id": "r_a-12351", "cornetto_synset_id": "n_a-516804", "wordnet_id": "a-01161233", "pos": "JJ", "sense": "beschuldigend zonder bewijs", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "lastig": { "form": "lastig", "cornetto_id": "r_a-12142", "cornetto_synset_id": "n_a-516807", "wordnet_id": "a-00669942", "pos": "JJ", "sense": "moeilijk", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "latent": { "form": "latent", "cornetto_id": "r_a-12143", "cornetto_synset_id": "n_a-516813", "wordnet_id": "a-00034032", "pos": "JJ", "sense": "verborgen blijvend", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "later": { "form": "later", "cornetto_id": "r_a-12299", "cornetto_synset_id": "n_a-516814", "wordnet_id": "a-00122626", "pos": "JJ", "sense": "volgend op iets in tijd", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "lauw": { "form": "lauw", "cornetto_id": "r_a-12146", "cornetto_synset_id": "n_a-516827", "wordnet_id": "a-00887062", "pos": "JJ", "sense": "niet erg enthousiast", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "laveloos": { "form": "laveloos", "cornetto_id": "r_a-12147", "cornetto_synset_id": "n_a-529441", "wordnet_id": "a-00798103", "pos": "JJ", "sense": "stomdronken", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "leed": { "form": "leed", "cornetto_id": "r_a-12302", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "spijtig", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "leefbaar": { "form": "leefbaar", "cornetto_id": "r_a-12150", "cornetto_synset_id": "n_a-516868", "wordnet_id": "a-01423676", "pos": "JJ", "sense": "geschikt om te leven", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "leeg": { "form": "leeg", "cornetto_id": "r_a-12152", "cornetto_synset_id": "d_a-9379", "wordnet_id": "a-01086545", "pos": "JJ", "sense": "zonder inhoud", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "leerplichtig": { "form": "leerplichtig", "cornetto_id": "r_a-12156", "cornetto_synset_id": "n_a-516911", "wordnet_id": "", "pos": "JJ", "sense": "verplicht om naar school te gaan", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "leerzaam": { "form": "leerzaam", "cornetto_id": "r_a-12157", "cornetto_synset_id": "n_a-516919", "wordnet_id": "a-01325777", "pos": "JJ", "sense": "instructief", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "leesbaar": { "form": "leesbaar", "cornetto_id": "r_a-12158", "cornetto_synset_id": "n_a-516920", "wordnet_id": "a-01404702", "pos": "JJ", "sense": "goed of duidelijk te lezen", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "legendarisch": { "form": "legendarisch", "cornetto_id": "r_a-12161", "cornetto_synset_id": "n_a-516946", "wordnet_id": "a-01935744", "pos": "JJ", "sense": "als in legende", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.6", "confidence": "1.0" }, "legio": { "form": "legio", "cornetto_id": "r_a-12162", "cornetto_synset_id": "n_a-530266", "wordnet_id": "a-00301777", "pos": "JJ", "sense": "talrijk", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "legitiem": { "form": "legitiem", "cornetto_id": "r_a-12163", "cornetto_synset_id": "n_a-534776", "wordnet_id": "", "pos": "JJ", "sense": "gebaseerd op wet", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "leidinggevend": { "form": "leidinggevend", "cornetto_id": "r_a-12303", "cornetto_synset_id": "n_a-516979", "wordnet_id": "a-02904223", "pos": "JJ", "sense": "belast met leiding", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "leien": { "form": "leien", "cornetto_id": "r_a-12304", "cornetto_synset_id": "n_a-516981", "wordnet_id": "", "pos": "JJ", "sense": "van lei", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "lekker": { "form": "lekker", "cornetto_id": "r_a-12167", "cornetto_synset_id": "n_a-510721", "wordnet_id": "a-01586342", "pos": "JJ", "sense": "van geur", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "lelijk": { "form": "lelijk", "cornetto_id": "r_a-12171", "cornetto_synset_id": "c_529", "wordnet_id": "a-00225564", "pos": "JJ", "sense": "gemeen", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "letterlijk": { "form": "letterlijk", "cornetto_id": "r_a-12174", "cornetto_synset_id": "n_a-517075", "wordnet_id": "a-00914808", "pos": "JJ", "sense": "exact", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "leugenaar": { "form": "leugenaar", "cornetto_id": "r_n-21907", "cornetto_synset_id": "d_n-40443", "wordnet_id": "n-10256537", "pos": "NN", "sense": "", "polarity": "-0.4", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "leugenaars": { "form": "leugenaars", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NNS", "sense": "", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "leugenachtig": { "form": "leugenachtig", "cornetto_id": "r_a-12310", "cornetto_synset_id": "n_a-517086", "wordnet_id": "a-00584403", "pos": "JJ", "sense": "gelogen of onbetrouwbaar", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "leuk": { "form": "leuk", "cornetto_id": "r_a-12381", "cornetto_synset_id": "n_a-515377", "wordnet_id": "a-00218950", "pos": "JJ", "sense": "van uiterlijk", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "levendig": { "form": "levendig", "cornetto_id": "r_a-12176", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "duidelijk", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "levenloos": { "form": "levenloos", "cornetto_id": "r_a-12382", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "saai", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "levensecht": { "form": "levensecht", "cornetto_id": "r_a-12177", "cornetto_synset_id": "n_a-517106", "wordnet_id": "a-00074594", "pos": "JJ", "sense": "lijkend op werkelijkheid", "polarity": "0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "levensgevaarlijk": { "form": "levensgevaarlijk", "cornetto_id": "r_a-12178", "cornetto_synset_id": "n_a-517109", "wordnet_id": "a-00250483", "pos": "JJ", "sense": "bijzonder gevaarlijk", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "levensgroot": { "form": "levensgroot", "cornetto_id": "r_a-12315", "cornetto_synset_id": "n_a-517112", "wordnet_id": "a-01388655", "pos": "JJ", "sense": "zo groot als in het echt", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "levenslang": { "form": "levenslang", "cornetto_id": "r_a-12179", "cornetto_synset_id": "n_a-517115", "wordnet_id": "a-01440159", "pos": "JJ", "sense": "heel lang", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "levenslustig": { "form": "levenslustig", "cornetto_id": "r_a-12180", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "opgewekt", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "leverbaar": { "form": "leverbaar", "cornetto_id": "r_a-12316", "cornetto_synset_id": "n_a-517133", "wordnet_id": "a-00183053", "pos": "JJ", "sense": "geschikt of beschikbaar voor levering", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "lexicografisch": { "form": "lexicografisch", "cornetto_id": "r_a-12318", "cornetto_synset_id": "n_a-517146", "wordnet_id": "a-02909808", "pos": "JJ", "sense": "met betrekking tot lexicografie", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "lezenswaardig": { "form": "lezenswaardig", "cornetto_id": "r_a-12319", "cornetto_synset_id": "n_a-517151", "wordnet_id": "", "pos": "JJ", "sense": "de moeite om te lezen", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "liberaal": { "form": "liberaal", "cornetto_id": "r_a-12184", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "met bep. politieke ideeën", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "lichamelijk": { "form": "lichamelijk", "cornetto_id": "r_a-12185", "cornetto_synset_id": "n_a-517174", "wordnet_id": "a-00630329", "pos": "JJ", "sense": "fysiek", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "licht": { "form": "licht", "cornetto_id": "r_a-12190", "cornetto_synset_id": "n_a-510235", "wordnet_id": "a-00749230", "pos": "JJ", "sense": "gemakkelijk", "polarity": "0.4", "subjectivity": "0.9", "intensity": "0.9", "confidence": "1.0" }, "lichtblauw": { "form": "lichtblauw", "cornetto_id": "r_a-12321", "cornetto_synset_id": "n_a-517183", "wordnet_id": "", "pos": "JJ", "sense": "helder blauw", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "lichtblond": { "form": "lichtblond", "cornetto_id": "r_a-12356", "cornetto_synset_id": "n_a-517184", "wordnet_id": "a-00218440", "pos": "JJ", "sense": "een lichte nuance van blond", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "lichtelijk": { "form": "lichtelijk", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "0.0", "subjectivity": "0.5", "intensity": "0.6", "confidence": "1.0" }, "lichtend": { "form": "lichtend", "cornetto_id": "r_a-12191", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "lichtgevend", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "lichtgeel": { "form": "lichtgeel", "cornetto_id": "r_a-12358", "cornetto_synset_id": "n_a-517197", "wordnet_id": "", "pos": "JJ", "sense": "geel in lichte tint", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "lichtgeraakt": { "form": "lichtgeraakt", "cornetto_id": "r_a-12193", "cornetto_synset_id": "n_a-517200", "wordnet_id": "a-01135914", "pos": "JJ", "sense": "snel boos of beledigd", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "lichtgevend": { "form": "lichtgevend", "cornetto_id": "r_a-12323", "cornetto_synset_id": "n_a-517201", "wordnet_id": "a-00168820", "pos": "JJ", "sense": "wat licht geeft", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "lichtgrijs": { "form": "lichtgrijs", "cornetto_id": "r_a-12359", "cornetto_synset_id": "n_a-517207", "wordnet_id": "", "pos": "JJ", "sense": "grijs in lichte tint", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "lichtvoetig": { "form": "lichtvoetig", "cornetto_id": "r_a-12195", "cornetto_synset_id": "n_a-517706", "wordnet_id": "a-02121290", "pos": "JJ", "sense": "speels", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "lichtzinnig": { "form": "lichtzinnig", "cornetto_id": "r_a-12196", "cornetto_synset_id": "n_a-517250", "wordnet_id": "a-00363938", "pos": "JJ", "sense": "zonder goed na te denken", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "lief": { "form": "lief", "cornetto_id": "r_a-12200", "cornetto_synset_id": "n_a-510141", "wordnet_id": "a-01462324", "pos": "JJ", "sense": "dierbaar", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "liefdadig": { "form": "liefdadig", "cornetto_id": "r_a-12201", "cornetto_synset_id": "n_a-517266", "wordnet_id": "a-00223802", "pos": "JJ", "sense": "charitatief", "polarity": "0.5", "subjectivity": "0.6", "intensity": "1.2", "confidence": "0.7" }, "liefdeloos": { "form": "liefdeloos", "cornetto_id": "r_a-12202", "cornetto_synset_id": "n_a-521187", "wordnet_id": "a-00857560", "pos": "JJ", "sense": "zonder liefde", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "liefdevol": { "form": "liefdevol", "cornetto_id": "r_a-12204", "cornetto_synset_id": "n_a-530384", "wordnet_id": "a-01463965", "pos": "JJ", "sense": "vol liefde", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "lieflijk": { "form": "lieflijk", "cornetto_id": "r_a-12206", "cornetto_synset_id": "d_a-9388", "wordnet_id": "a-00219809", "pos": "JJ", "sense": "", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "liefst": { "form": "liefst", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "", "sense": "JJ", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "liegen": { "form": "liegen", "cornetto_id": "c_545908", "cornetto_synset_id": "d_v-3979", "wordnet_id": "", "pos": "", "sense": "VB", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "lijfelijk": { "form": "lijfelijk", "cornetto_id": "r_a-12212", "cornetto_synset_id": "n_a-517174", "wordnet_id": "a-00630329", "pos": "JJ", "sense": "lichamelijk", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "lijvig": { "form": "lijvig", "cornetto_id": "r_a-12215", "cornetto_synset_id": "d_a-9231", "wordnet_id": "a-00987180", "pos": "JJ", "sense": "dik", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "lila": { "form": "lila", "cornetto_id": "r_a-12217", "cornetto_synset_id": "n_a-517363", "wordnet_id": "a-00376917", "pos": "JJ", "sense": "lichtpaars", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "link": { "form": "link", "cornetto_id": "r_a-12219", "cornetto_synset_id": "d_a-9523", "wordnet_id": "a-00148078", "pos": "JJ", "sense": "gevaarlijk", "polarity": "-0.1", "subjectivity": "0.9", "intensity": "1.3", "confidence": "0.7" }, "links": { "form": "links", "cornetto_id": "r_a-12224", "cornetto_synset_id": "d_a-9454", "wordnet_id": "a-01140896", "pos": "JJ", "sense": "onhandig", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "links-radicaal": { "form": "links-radicaal", "cornetto_id": "r_a-12330", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "extreem links", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.4", "confidence": "0.7" }, "linnen": { "form": "linnen", "cornetto_id": "r_a-12332", "cornetto_synset_id": "n_a-517400", "wordnet_id": "", "pos": "JJ", "sense": "van linnen", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "listig": { "form": "listig", "cornetto_id": "r_a-12226", "cornetto_synset_id": "d_a-9523", "wordnet_id": "a-00148078", "pos": "JJ", "sense": "sluw", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "literair": { "form": "literair", "cornetto_id": "r_a-12227", "cornetto_synset_id": "n_a-517073", "wordnet_id": "a-02830501", "pos": "JJ", "sense": "met literatuur te maken hebbend", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "lodderig": { "form": "lodderig", "cornetto_id": "r_a-12230", "cornetto_synset_id": "n_a-517458", "wordnet_id": "a-00189017", "pos": "JJ", "sense": "slaperig", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "loeihard": { "form": "loeihard", "cornetto_id": "r_a-12368", "cornetto_synset_id": "n_a-514714", "wordnet_id": "a-01453187", "pos": "JJ", "sense": "zeer hard", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "logisch": { "form": "logisch", "cornetto_id": "r_a-12234", "cornetto_synset_id": "n_a-517483", "wordnet_id": "a-00022962", "pos": "JJ", "sense": "juist beredeneerd", "polarity": "0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "logistiek": { "form": "logistiek", "cornetto_id": "r_a-12335", "cornetto_synset_id": "n_a-517486", "wordnet_id": "a-02986218", "pos": "JJ", "sense": "logistiek betreffend", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "lokaal": { "form": "lokaal", "cornetto_id": "r_a-12235", "cornetto_synset_id": "n_a-523453", "wordnet_id": "a-00668053", "pos": "JJ", "sense": "plaatselijk", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "lollig": { "form": "lollig", "cornetto_id": "r_a-12236", "cornetto_synset_id": "n_a-515488", "wordnet_id": "a-01265308", "pos": "JJ", "sense": "lollig", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "lomp": { "form": "lomp", "cornetto_id": "r_a-12239", "cornetto_synset_id": "n_a-517506", "wordnet_id": "a-00642725", "pos": "JJ", "sense": "onbeschaafd", "polarity": "-0.9", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "loodgrijs": { "form": "loodgrijs", "cornetto_id": "r_a-12240", "cornetto_synset_id": "n_a-517535", "wordnet_id": "a-00462249", "pos": "JJ", "sense": "blauwig grijs", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "loodrecht": { "form": "loodrecht", "cornetto_id": "r_a-12241", "cornetto_synset_id": "n_a-517541", "wordnet_id": "a-01233851", "pos": "JJ", "sense": "in een hoek van negentig graden", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "loodzwaar": { "form": "loodzwaar", "cornetto_id": "r_a-12338", "cornetto_synset_id": "n_a-517554", "wordnet_id": "a-00173391", "pos": "JJ", "sense": "heel zwaar", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "loom": { "form": "loom", "cornetto_id": "r_a-12242", "cornetto_synset_id": "n_a-517562", "wordnet_id": "a-00876204", "pos": "JJ", "sense": "een beetje moe en traag", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "loos": { "form": "loos", "cornetto_id": "r_a-12245", "cornetto_synset_id": "n_a-529550", "wordnet_id": "a-01128406", "pos": "JJ", "sense": "ondeugend", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.4", "confidence": "0.7" }, "los": { "form": "los", "cornetto_id": "r_a-12248", "cornetto_synset_id": "n_a-533914", "wordnet_id": "a-00287498", "pos": "JJ", "sense": "niet stijf, strak of gespannen", "polarity": "0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "losers": { "form": "losers", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NNS", "sense": "", "polarity": "-0.7", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "losliggend": { "form": "losliggend", "cornetto_id": "r_a-12372", "cornetto_synset_id": "n_a-517646", "wordnet_id": "a-00916199", "pos": "JJ", "sense": "los", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "louter": { "form": "louter", "cornetto_id": "r_a-12340", "cornetto_synset_id": "n_r-502043", "wordnet_id": "", "pos": "JJ", "sense": "enkel en alleen", "polarity": "0.0", "subjectivity": "0.2", "intensity": "0.9", "confidence": "1.0" }, "loyaal": { "form": "loyaal", "cornetto_id": "r_a-12253", "cornetto_synset_id": "n_a-531379", "wordnet_id": "a-00022219", "pos": "JJ", "sense": "trouw", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "luchtdicht": { "form": "luchtdicht", "cornetto_id": "r_a-12254", "cornetto_synset_id": "n_a-517686", "wordnet_id": "a-01398772", "pos": "JJ", "sense": "hermetisch", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "luchthartig": { "form": "luchthartig", "cornetto_id": "r_a-12255", "cornetto_synset_id": "n_a-535941", "wordnet_id": "a-00032733", "pos": "JJ", "sense": "zorgeloos", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.9" }, "luchtig": { "form": "luchtig", "cornetto_id": "r_a-12258", "cornetto_synset_id": "n_a-517706", "wordnet_id": "a-02121290", "pos": "JJ", "sense": "luchthartig", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "lucratief": { "form": "lucratief", "cornetto_id": "r_a-12261", "cornetto_synset_id": "d_a-9502", "wordnet_id": "a-02332604", "pos": "JJ", "sense": "winstgevend", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "ludiek": { "form": "ludiek", "cornetto_id": "r_a-12262", "cornetto_synset_id": "n_a-517766", "wordnet_id": "a-02120458", "pos": "JJ", "sense": "vrolijk en speels", "polarity": "0.2", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "luguber": { "form": "luguber", "cornetto_id": "r_a-12263", "cornetto_synset_id": "n_a-511467", "wordnet_id": "a-00193799", "pos": "JJ", "sense": "huiveringwekkend", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "lui": { "form": "lui", "cornetto_id": "r_a-12264", "cornetto_synset_id": "n_a-517771", "wordnet_id": "", "pos": "JJ", "sense": "initiatiefloos", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "luid": { "form": "luid", "cornetto_id": "r_a-12265", "cornetto_synset_id": "n_a-512029", "wordnet_id": "a-01452593", "pos": "JJ", "sense": "hard en helder", "polarity": "0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "lullig": { "form": "lullig", "cornetto_id": "r_a-12268", "cornetto_synset_id": "d_a-9577", "wordnet_id": "a-00247439", "pos": "JJ", "sense": "vervelend", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "lumineus": { "form": "lumineus", "cornetto_id": "r_a-12269", "cornetto_synset_id": "n_a-517817", "wordnet_id": "a-00219389", "pos": "JJ", "sense": "geniaal", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.9" }, "luthers": { "form": "luthers", "cornetto_id": "r_a-12272", "cornetto_synset_id": "n_a-517836", "wordnet_id": "a-02955358", "pos": "JJ", "sense": "behorend tot de kerk van Luther", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "luttel": { "form": "luttel", "cornetto_id": "r_a-12273", "cornetto_synset_id": "n_a-510497", "wordnet_id": "a-02340458", "pos": "JJ", "sense": "weinig", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.6", "confidence": "0.7" }, "lux": { "form": "lux", "cornetto_id": "d_a-538325", "cornetto_synset_id": "d_a-9393", "wordnet_id": "a-00850053", "pos": "JJ", "sense": "", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "luxe": { "form": "luxe", "cornetto_id": "r_a-12274", "cornetto_synset_id": "d_a-9393", "wordnet_id": "a-00850053", "pos": "JJ", "sense": "weelderig", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "luxueus": { "form": "luxueus", "cornetto_id": "r_a-12275", "cornetto_synset_id": "d_a-9393", "wordnet_id": "a-00850053", "pos": "JJ", "sense": "weelderig", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "lyrisch": { "form": "lyrisch", "cornetto_id": "r_a-12277", "cornetto_synset_id": "n_a-517863", "wordnet_id": "a-00856011", "pos": "JJ", "sense": "uitbundig", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "maandenlang": { "form": "maandenlang", "cornetto_id": "r_a-12708", "cornetto_synset_id": "n_a-517922", "wordnet_id": "", "pos": "JJ", "sense": "gedurende vele maanden", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "maatschappelijk": { "form": "maatschappelijk", "cornetto_id": "r_a-12988", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "mbt. sociale problemen", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "maatschappijkritisch": { "form": "maatschappijkritisch", "cornetto_id": "r_a-12712", "cornetto_synset_id": "n_a-517989", "wordnet_id": "", "pos": "JJ", "sense": "met sociale kritiek", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "macaber": { "form": "macaber", "cornetto_id": "r_a-12713", "cornetto_synset_id": "n_a-518002", "wordnet_id": "a-00195684", "pos": "JJ", "sense": "luguber", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "machiavellistisch": { "form": "machiavellistisch", "cornetto_id": "r_a-12714", "cornetto_synset_id": "n_a-518004", "wordnet_id": "a-03082394", "pos": "JJ", "sense": "mbt. het machiavellisme", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "macho": { "form": "macho", "cornetto_id": "r_a-12716", "cornetto_synset_id": "n_a-518017", "wordnet_id": "a-00156440", "pos": "JJ", "sense": "stoer", "polarity": "-0.2", "subjectivity": "0.7", "intensity": "1.4", "confidence": "0.7" }, "machteloos": { "form": "machteloos", "cornetto_id": "r_a-12717", "cornetto_synset_id": "n_a-513099", "wordnet_id": "a-01827535", "pos": "JJ", "sense": "onmachtig", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "machtig": { "form": "machtig", "cornetto_id": "r_a-12720", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "geweldig", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "macrobiotisch": { "form": "macrobiotisch", "cornetto_id": "r_a-12722", "cornetto_synset_id": "n_a-518045", "wordnet_id": "a-02983739", "pos": "JJ", "sense": "mbt. macrobiotiek", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "maf": { "form": "maf", "cornetto_id": "r_a-12723", "cornetto_synset_id": "n_a-509995", "wordnet_id": "a-01836766", "pos": "JJ", "sense": "gek", "polarity": "0.1", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "mager": { "form": "mager", "cornetto_id": "r_a-12992", "cornetto_synset_id": "n_a-502563", "wordnet_id": "a-00106456", "pos": "JJ", "sense": "weinig", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "magisch": { "form": "magisch", "cornetto_id": "r_a-12725", "cornetto_synset_id": "n_a-518064", "wordnet_id": "a-01574446", "pos": "JJ", "sense": "bovennatuurlijk", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "magistraal": { "form": "magistraal", "cornetto_id": "r_a-12726", "cornetto_synset_id": "n_a-518477", "wordnet_id": "a-02226979", "pos": "JJ", "sense": "meesterlijk", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "magnifiek": { "form": "magnifiek", "cornetto_id": "r_a-12728", "cornetto_synset_id": "n_a-524142", "wordnet_id": "a-00217728", "pos": "JJ", "sense": "schitterend", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "makkelijk": { "form": "makkelijk", "cornetto_id": "r_a-12733", "cornetto_synset_id": "n_a-510492", "wordnet_id": "a-00476819", "pos": "JJ", "sense": "comfortabel", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "mal": { "form": "mal", "cornetto_id": "r_a-12734", "cornetto_synset_id": "n_a-509995", "wordnet_id": "a-01836766", "pos": "JJ", "sense": "dwaas", "polarity": "-0.2", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "malafide": { "form": "malafide", "cornetto_id": "r_a-12735", "cornetto_synset_id": "n_a-518117", "wordnet_id": "", "pos": "JJ", "sense": "niet bonafide", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "manhaftig": { "form": "manhaftig", "cornetto_id": "r_a-12738", "cornetto_synset_id": "n_a-518171", "wordnet_id": "a-00249721", "pos": "JJ", "sense": "koen", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "manisch-depressief": { "form": "manisch-depressief", "cornetto_id": "r_a-12742", "cornetto_synset_id": "d_a-9397", "wordnet_id": "a-02076557", "pos": "JJ", "sense": "psychotisch", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "mank": { "form": "mank", "cornetto_id": "r_a-12743", "cornetto_synset_id": "n_a-518167", "wordnet_id": "a-00263994", "pos": "JJ", "sense": "kreupel", "polarity": "-0.4", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "manmoedig": { "form": "manmoedig", "cornetto_id": "r_a-12745", "cornetto_synset_id": "n_a-518171", "wordnet_id": "a-00249721", "pos": "JJ", "sense": "koen", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "mannelijk": { "form": "mannelijk", "cornetto_id": "r_a-12748", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "mbt. Woordgeslacht", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "margi's": { "form": "margi's", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NNS", "sense": "", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "marginaal": { "form": "marginaal", "cornetto_id": "r_a-12756", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "mbt. bestaansmiddelen", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "0.9", "confidence": "0.7" }, "markant": { "form": "markant", "cornetto_id": "r_a-12759", "cornetto_synset_id": "n_a-518231", "wordnet_id": "a-00579498", "pos": "JJ", "sense": "opmerkelijk", "polarity": "0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "masochistisch": { "form": "masochistisch", "cornetto_id": "r_a-12764", "cornetto_synset_id": "n_a-518278", "wordnet_id": "a-02057681", "pos": "JJ", "sense": "mbt. masochisme", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.3", "confidence": "0.7" }, "massaal": { "form": "massaal", "cornetto_id": "r_a-12995", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "ongedeeld", "polarity": "0.2", "subjectivity": "0.7", "intensity": "1.3", "confidence": "0.7" }, "mat": { "form": "mat", "cornetto_id": "r_a-12769", "cornetto_synset_id": "n_a-516003", "wordnet_id": "a-00806512", "pos": "JJ", "sense": "slap, ongeïnspireerd", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "mateloos": { "form": "mateloos", "cornetto_id": "r_a-12771", "cornetto_synset_id": "d_a-9258", "wordnet_id": "a-00943999", "pos": "JJ", "sense": "bovenmatig", "polarity": "-0.1", "subjectivity": "0.9", "intensity": "1.7", "confidence": "1.0" }, "matig": { "form": "matig", "cornetto_id": "r_a-12997", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "niet veel, niet goed etc.", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "0.9", "confidence": "1.0" }, "maximaal": { "form": "maximaal", "cornetto_id": "r_a-12780", "cornetto_synset_id": "n_a-518356", "wordnet_id": "a-01495725", "pos": "JJ", "sense": "uiterst", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.3", "confidence": "0.7" }, "mechanisch": { "form": "mechanisch", "cornetto_id": "r_a-12998", "cornetto_synset_id": "n_a-518006", "wordnet_id": "a-01500555", "pos": "JJ", "sense": "als een machine", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "mededeelzaam": { "form": "mededeelzaam", "cornetto_id": "r_a-12785", "cornetto_synset_id": "c_184", "wordnet_id": "a-01310273", "pos": "JJ", "sense": "openhartig", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.9" }, "medeplichtig": { "form": "medeplichtig", "cornetto_id": "r_a-12787", "cornetto_synset_id": "n_a-518389", "wordnet_id": "a-01516346", "pos": "JJ", "sense": "mbt. handlangers", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "medeschuldig": { "form": "medeschuldig", "cornetto_id": "r_a-12788", "cornetto_synset_id": "n_a-518389", "wordnet_id": "a-01516346", "pos": "JJ", "sense": "mee schuldig", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "medisch": { "form": "medisch", "cornetto_id": "r_a-12792", "cornetto_synset_id": "n_a-510314", "wordnet_id": "a-01166656", "pos": "JJ", "sense": "geneeskundig", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "meedogenloos": { "form": "meedogenloos", "cornetto_id": "r_a-12795", "cornetto_synset_id": "n_a-518422", "wordnet_id": "a-01507402", "pos": "JJ", "sense": "onbarmhartig", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "meegaand": { "form": "meegaand", "cornetto_id": "r_a-12796", "cornetto_synset_id": "c_392", "wordnet_id": "a-00711831", "pos": "JJ", "sense": "flexibel", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "meelijwekkend": { "form": "meelijwekkend", "cornetto_id": "r_a-12797", "cornetto_synset_id": "n_a-535670", "wordnet_id": "a-01050890", "pos": "JJ", "sense": "zielig", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "meerderjarig": { "form": "meerderjarig", "cornetto_id": "r_a-12799", "cornetto_synset_id": "n_a-518438", "wordnet_id": "a-01644541", "pos": "JJ", "sense": "volwassen", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "meerduidig": { "form": "meerduidig", "cornetto_id": "r_a-12800", "cornetto_synset_id": "n_a-518441", "wordnet_id": "a-00102201", "pos": "JJ", "sense": "ambigu", "polarity": "-0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "meerstemmig": { "form": "meerstemmig", "cornetto_id": "r_a-12804", "cornetto_synset_id": "n_a-518460", "wordnet_id": "a-01544169", "pos": "JJ", "sense": "polyfoon", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "meeslepend": { "form": "meeslepend", "cornetto_id": "r_a-12807", "cornetto_synset_id": "n_a-518469", "wordnet_id": "a-01826477", "pos": "JJ", "sense": "boeiend", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "meesterlijk": { "form": "meesterlijk", "cornetto_id": "r_a-12809", "cornetto_synset_id": "n_a-518477", "wordnet_id": "a-02226979", "pos": "JJ", "sense": "uitstekend", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.4", "confidence": "1.0" }, "meesterwerk": { "form": "meesterwerk", "cornetto_id": "r_n-23492", "cornetto_synset_id": "d_n-35048", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.9" }, "meetbaar": { "form": "meetbaar", "cornetto_id": "r_a-12810", "cornetto_synset_id": "n_a-518482", "wordnet_id": "a-01498769", "pos": "JJ", "sense": "kwantitatief bepaalbaar", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.1", "confidence": "0.7" }, "mega": { "form": "mega", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "", "sense": "JJ", "polarity": "0.4", "subjectivity": "0.9", "intensity": "2.0", "confidence": "1.0" }, "melancholiek": { "form": "melancholiek", "cornetto_id": "r_a-12816", "cornetto_synset_id": "n_a-536067", "wordnet_id": "a-00274068", "pos": "JJ", "sense": "", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "melancholisch": { "form": "melancholisch", "cornetto_id": "r_a-12817", "cornetto_synset_id": "n_a-536067", "wordnet_id": "a-00274068", "pos": "JJ", "sense": "zwaarmoedig", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "melig": { "form": "melig", "cornetto_id": "r_a-12819", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "mbt. smaak en consistentie", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "melkachtig": { "form": "melkachtig", "cornetto_id": "r_a-12820", "cornetto_synset_id": "n_a-518534", "wordnet_id": "a-00434384", "pos": "JJ", "sense": "zoals melk", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "melodieus": { "form": "melodieus", "cornetto_id": "r_a-12822", "cornetto_synset_id": "n_a-534575", "wordnet_id": "a-01502195", "pos": "JJ", "sense": "welluidend", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "melodramatisch": { "form": "melodramatisch", "cornetto_id": "r_a-12824", "cornetto_synset_id": "n_a-518570", "wordnet_id": "a-00795078", "pos": "JJ", "sense": "als een melodrama", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "memorabel": { "form": "memorabel", "cornetto_id": "r_a-12825", "cornetto_synset_id": "n_a-509822", "wordnet_id": "a-01040752", "pos": "JJ", "sense": "gedenkwaardig", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "meneerke": { "form": "meneerke", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "menselijk": { "form": "menselijk", "cornetto_id": "r_a-12827", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "humaan", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "mensonterend": { "form": "mensonterend", "cornetto_id": "r_a-12830", "cornetto_synset_id": "n_a-518612", "wordnet_id": "a-01263445", "pos": "JJ", "sense": "beestachtig", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.2", "confidence": "0.7" }, "mensonwaardig": { "form": "mensonwaardig", "cornetto_id": "r_a-12831", "cornetto_synset_id": "n_a-518612", "wordnet_id": "a-01263445", "pos": "JJ", "sense": "niet menswaardig", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.2", "confidence": "0.7" }, "menswaardig": { "form": "menswaardig", "cornetto_id": "r_a-12832", "cornetto_synset_id": "d_a-9402", "wordnet_id": "a-01538583", "pos": "JJ", "sense": "conform menselijke waardigheid", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "mentaal": { "form": "mentaal", "cornetto_id": "r_a-12833", "cornetto_synset_id": "d_a-9284", "wordnet_id": "a-00631193", "pos": "JJ", "sense": "geestelijk", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "merkbaar": { "form": "merkbaar", "cornetto_id": "r_a-12834", "cornetto_synset_id": "n_a-518634", "wordnet_id": "a-00013662", "pos": "JJ", "sense": "te merken", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "merkwaardig": { "form": "merkwaardig", "cornetto_id": "r_a-13006", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "raar", "polarity": "-0.2", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "messcherp": { "form": "messcherp", "cornetto_id": "r_a-12838", "cornetto_synset_id": "n_a-511737", "wordnet_id": "a-00229227", "pos": "JJ", "sense": "zeer scherp", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "metaforisch": { "form": "metaforisch", "cornetto_id": "r_a-12840", "cornetto_synset_id": "n_a-508972", "wordnet_id": "a-01419784", "pos": "JJ", "sense": "overdrachtelijk", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.9" }, "metalen": { "form": "metalen", "cornetto_id": "r_a-13008", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "metaalachtig", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "meteorologisch": { "form": "meteorologisch", "cornetto_id": "r_a-12844", "cornetto_synset_id": "n_a-518713", "wordnet_id": "a-02865479", "pos": "JJ", "sense": "weerkundig", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.7", "confidence": "0.7" }, "micro-economisch": { "form": "micro-economisch", "cornetto_id": "r_a-12851", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "mbt. micro-economie", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "microscopisch": { "form": "microscopisch", "cornetto_id": "r_a-13012", "cornetto_synset_id": "n_a-518776", "wordnet_id": "a-01393483", "pos": "JJ", "sense": "mbt. een microscoop", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "middelbaar": { "form": "middelbaar", "cornetto_id": "r_a-12853", "cornetto_synset_id": "n_a-518792", "wordnet_id": "a-00486290", "pos": "JJ", "sense": "tussen twee grootheden in", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "middeleeuws": { "form": "middeleeuws", "cornetto_id": "r_a-12855", "cornetto_synset_id": "n_a-522237", "wordnet_id": "a-00669138", "pos": "JJ", "sense": "zeer ouderwets, achterlijk", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "middelmatig": { "form": "middelmatig", "cornetto_id": "r_a-13014", "cornetto_synset_id": "n_a-518806", "wordnet_id": "", "pos": "JJ", "sense": "gemiddeld", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "0.9", "confidence": "1.0" }, "mierzoet": { "form": "mierzoet", "cornetto_id": "r_a-12862", "cornetto_synset_id": "n_a-518840", "wordnet_id": "a-02368566", "pos": "JJ", "sense": "bovenmatig zoet", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "mieters": { "form": "mieters", "cornetto_id": "r_a-12863", "cornetto_synset_id": "n_a-510820", "wordnet_id": "a-01576071", "pos": "JJ", "sense": "geweldig", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "miezerig": { "form": "miezerig", "cornetto_id": "r_a-13015", "cornetto_synset_id": "n_a-502563", "wordnet_id": "a-00106456", "pos": "JJ", "sense": "schraal", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "milieubewust": { "form": "milieubewust", "cornetto_id": "r_a-12868", "cornetto_synset_id": "n_a-518879", "wordnet_id": "a-02906478", "pos": "JJ", "sense": "ecologisch", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "milieuvriendelijk": { "form": "milieuvriendelijk", "cornetto_id": "r_a-12870", "cornetto_synset_id": "n_a-518890", "wordnet_id": "a-02906778", "pos": "JJ", "sense": "niet milieuonvriendelijk", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "militair": { "form": "militair", "cornetto_id": "r_a-12871", "cornetto_synset_id": "n_a-518892", "wordnet_id": "a-02764251", "pos": "JJ", "sense": "mbt. het leger", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "militant": { "form": "militant", "cornetto_id": "r_a-12872", "cornetto_synset_id": "n_a-529708", "wordnet_id": "a-01017439", "pos": "JJ", "sense": "strijdbaar", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.4", "confidence": "0.7" }, "min": { "form": "min", "cornetto_id": "r_a-12875", "cornetto_synset_id": "n_a-532253", "wordnet_id": "a-00752392", "pos": "JJ", "sense": "laaghartig", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "minachtend": { "form": "minachtend", "cornetto_id": "r_a-12876", "cornetto_synset_id": "n_a-518925", "wordnet_id": "a-00906655", "pos": "JJ", "sense": "met minachting", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "minderwaardig": { "form": "minderwaardig", "cornetto_id": "r_a-12880", "cornetto_synset_id": "n_a-518934", "wordnet_id": "a-01673061", "pos": "JJ", "sense": "slecht", "polarity": "-0.2", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "mineraal": { "form": "mineraal", "cornetto_id": "r_a-12881", "cornetto_synset_id": "n_a-518936", "wordnet_id": "a-03086974", "pos": "JJ", "sense": "uit de bodem", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "miniem": { "form": "miniem", "cornetto_id": "r_a-12882", "cornetto_synset_id": "n_a-523296", "wordnet_id": "a-00516539", "pos": "JJ", "sense": "gering", "polarity": "0.0", "subjectivity": "0.5", "intensity": "0.9", "confidence": "0.7" }, "minimaal": { "form": "minimaal", "cornetto_id": "r_a-12883", "cornetto_synset_id": "n_a-518946", "wordnet_id": "a-01496021", "pos": "JJ", "sense": "uiterst klein", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "0.9", "confidence": "1.0" }, "minutieus": { "form": "minutieus", "cornetto_id": "r_a-12890", "cornetto_synset_id": "n_a-518975", "wordnet_id": "a-00310433", "pos": "JJ", "sense": "nauwgezet", "polarity": "0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "minzaam": { "form": "minzaam", "cornetto_id": "r_a-13019", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "een beetje hooghartig", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "miraculeus": { "form": "miraculeus", "cornetto_id": "r_a-12892", "cornetto_synset_id": "n_a-535103", "wordnet_id": "a-00645493", "pos": "JJ", "sense": "wonderlijk", "polarity": "0.9", "subjectivity": "0.9", "intensity": "1.4", "confidence": "1.0" }, "mis": { "form": "mis", "cornetto_id": "r_a-12894", "cornetto_synset_id": "n_a-509314", "wordnet_id": "a-00632949", "pos": "JJ", "sense": "fout", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "misdeeld": { "form": "misdeeld", "cornetto_id": "r_a-12897", "cornetto_synset_id": "n_a-518992", "wordnet_id": "a-01050603", "pos": "JJ", "sense": "behoeftig", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "miserabel": { "form": "miserabel", "cornetto_id": "r_a-12898", "cornetto_synset_id": "n_a-508241", "wordnet_id": "", "pos": "JJ", "sense": "beroerd", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "miskleun": { "form": "miskleun", "cornetto_id": "r_n-23997", "cornetto_synset_id": "d_n-27244", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.4", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.9" }, "mislukking": { "form": "mislukking", "cornetto_id": "r_n-24001", "cornetto_synset_id": "d_n-40754", "wordnet_id": "n-00066636", "pos": "NN", "sense": "", "polarity": "-0.2", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "mislukkeling": { "form": "mislukkeling", "cornetto_id": "d_n-173304", "cornetto_synset_id": "d_n-35144", "wordnet_id": "n-10273064", "pos": "NN", "sense": "", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "mismaakt": { "form": "mismaakt", "cornetto_id": "r_a-12899", "cornetto_synset_id": "n_a-519025", "wordnet_id": "a-00193480", "pos": "JJ", "sense": "misvormd", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "mismoedig": { "form": "mismoedig", "cornetto_id": "r_a-12900", "cornetto_synset_id": "d_a-9411", "wordnet_id": "a-00078576", "pos": "JJ", "sense": "mistroostig", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "misplaatst": { "form": "misplaatst", "cornetto_id": "r_a-12902", "cornetto_synset_id": "n_a-519011", "wordnet_id": "a-00138782", "pos": "JJ", "sense": "ongepast", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "misprijzend": { "form": "misprijzend", "cornetto_id": "r_a-12903", "cornetto_synset_id": "n_a-519012", "wordnet_id": "a-00906655", "pos": "JJ", "sense": "afkeurend", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "misselijk": { "form": "misselijk", "cornetto_id": "r_a-12905", "cornetto_synset_id": "d_a-9577", "wordnet_id": "a-00247439", "pos": "JJ", "sense": "heel naar, ergerlijk", "polarity": "-0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "misser": { "form": "misser", "cornetto_id": "r_n-24012", "cornetto_synset_id": "d_n-27244", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.2", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.9" }, "mistig": { "form": "mistig", "cornetto_id": "r_a-12908", "cornetto_synset_id": "n_a-519021", "wordnet_id": "a-02548619", "pos": "JJ", "sense": "weinig zicht door mist", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "mistroostig": { "form": "mistroostig", "cornetto_id": "r_a-12909", "cornetto_synset_id": "d_a-9411", "wordnet_id": "a-00078576", "pos": "JJ", "sense": "troosteloos", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "misvormd": { "form": "misvormd", "cornetto_id": "r_a-12910", "cornetto_synset_id": "n_a-519025", "wordnet_id": "a-00193480", "pos": "JJ", "sense": "mismaakt", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "modaal": { "form": "modaal", "cornetto_id": "r_a-12913", "cornetto_synset_id": "n_a-518805", "wordnet_id": "a-00486290", "pos": "JJ", "sense": "doorsnee", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "modderig": { "form": "modderig", "cornetto_id": "r_a-12914", "cornetto_synset_id": "n_a-519047", "wordnet_id": "a-00503780", "pos": "JJ", "sense": "modderachtig", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "modebewust": { "form": "modebewust", "cornetto_id": "r_a-12915", "cornetto_synset_id": "n_a-519053", "wordnet_id": "", "pos": "JJ", "sense": "met oog voor trends", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "modern": { "form": "modern", "cornetto_id": "r_a-12918", "cornetto_synset_id": "d_a-9408", "wordnet_id": "a-00972902", "pos": "JJ", "sense": "van deze tijd", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "modernistisch": { "form": "modernistisch", "cornetto_id": "r_a-12919", "cornetto_synset_id": "n_a-519077", "wordnet_id": "", "pos": "JJ", "sense": "mbt. het modernisme", "polarity": "0.2", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "modieus": { "form": "modieus", "cornetto_id": "r_a-12920", "cornetto_synset_id": "d_a-9409", "wordnet_id": "a-00971506", "pos": "JJ", "sense": "volgens de mode", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "moe": { "form": "moe", "cornetto_id": "r_a-13021", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "er genoeg van hebben", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "moedeloos": { "form": "moedeloos", "cornetto_id": "r_a-12923", "cornetto_synset_id": "d_a-9411", "wordnet_id": "a-00078576", "pos": "JJ", "sense": "mismoedig", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "moedig": { "form": "moedig", "cornetto_id": "r_a-12925", "cornetto_synset_id": "n_a-519123", "wordnet_id": "a-00262792", "pos": "JJ", "sense": "dapper", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "moeilijk": { "form": "moeilijk", "cornetto_id": "r_a-12928", "cornetto_synset_id": "c_391", "wordnet_id": "", "pos": "JJ", "sense": "niet gemakkelijk", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "moeiteloos": { "form": "moeiteloos", "cornetto_id": "r_a-12929", "cornetto_synset_id": "n_a-510235", "wordnet_id": "a-00749230", "pos": "JJ", "sense": "zonder moeite", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "moeizaam": { "form": "moeizaam", "cornetto_id": "r_a-12930", "cornetto_synset_id": "n_a-519134", "wordnet_id": "", "pos": "JJ", "sense": "stroef", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "0.9", "confidence": "1.0" }, "mogelijk": { "form": "mogelijk", "cornetto_id": "r_a-12932", "cornetto_synset_id": "n_a-519143", "wordnet_id": "a-02418249", "pos": "JJ", "sense": "niet onmogelijk", "polarity": "0.1", "subjectivity": "0.6", "intensity": "0.9", "confidence": "1.0" }, "momentaan": { "form": "momentaan", "cornetto_id": "r_a-12936", "cornetto_synset_id": "n_a-513031", "wordnet_id": "a-00666058", "pos": "JJ", "sense": "momenteel", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "mondain": { "form": "mondain", "cornetto_id": "r_a-12937", "cornetto_synset_id": "n_a-519193", "wordnet_id": "a-01333609", "pos": "JJ", "sense": "werelds", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "monddood": { "form": "monddood", "cornetto_id": "r_a-12938", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "verplicht te zwijgen", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "mondiaal": { "form": "mondiaal", "cornetto_id": "r_a-12940", "cornetto_synset_id": "n_a-534652", "wordnet_id": "a-00527188", "pos": "JJ", "sense": "wereldwijd", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.1", "confidence": "1.0" }, "mondig": { "form": "mondig", "cornetto_id": "r_a-13025", "cornetto_synset_id": "n_a-518438", "wordnet_id": "a-01644541", "pos": "JJ", "sense": "geëmancipeerd", "polarity": "0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "mongoloïde": { "form": "mongoloïde", "cornetto_id": "r_a-12942", "cornetto_synset_id": "n_a-519206", "wordnet_id": "a-03087909", "pos": "JJ", "sense": "(als) van een Mongool", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "monogaam": { "form": "monogaam", "cornetto_id": "r_a-12945", "cornetto_synset_id": "n_a-519223", "wordnet_id": "a-01544347", "pos": "JJ", "sense": "niet polygaam", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "monsterachtig": { "form": "monsterachtig", "cornetto_id": "r_a-12948", "cornetto_synset_id": "n_a-519243", "wordnet_id": "a-00193480", "pos": "JJ", "sense": "monsterlijk", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "monter": { "form": "monter", "cornetto_id": "r_a-12951", "cornetto_synset_id": "c_339", "wordnet_id": "a-00271022", "pos": "JJ", "sense": "opgewekt", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "monumentaal": { "form": "monumentaal", "cornetto_id": "r_a-12952", "cornetto_synset_id": "n_a-519268", "wordnet_id": "a-01389170", "pos": "JJ", "sense": "groots", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "mooi": { "form": "mooi", "cornetto_id": "r_a-12954", "cornetto_synset_id": "c_178", "wordnet_id": "", "pos": "JJ", "sense": "goed", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "moppig": { "form": "moppig", "cornetto_id": "r_a-12957", "cornetto_synset_id": "n_a-515488", "wordnet_id": "a-01265308", "pos": "JJ", "sense": "leuk", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.6", "confidence": "0.7" }, "morbide": { "form": "morbide", "cornetto_id": "r_a-12959", "cornetto_synset_id": "n_a-519305", "wordnet_id": "a-01626440", "pos": "JJ", "sense": "ziekelijk", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "moreel": { "form": "moreel", "cornetto_id": "r_a-12960", "cornetto_synset_id": "n_a-535368", "wordnet_id": "a-00905386", "pos": "JJ", "sense": "ethisch", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "motorisch": { "form": "motorisch", "cornetto_id": "r_a-13029", "cornetto_synset_id": "n_a-519348", "wordnet_id": "a-00324481", "pos": "JJ", "sense": "de motor betreffend", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "muf": { "form": "muf", "cornetto_id": "r_a-12968", "cornetto_synset_id": "n_a-503252", "wordnet_id": "a-01070088", "pos": "JJ", "sense": "niet fris", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "muffig": { "form": "muffig", "cornetto_id": "r_a-12969", "cornetto_synset_id": "n_a-503252", "wordnet_id": "a-01070088", "pos": "JJ", "sense": "een beetje muf", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "muisgrijs": { "form": "muisgrijs", "cornetto_id": "r_a-12970", "cornetto_synset_id": "n_a-519394", "wordnet_id": "a-00252826", "pos": "JJ", "sense": "grijs", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "mul": { "form": "mul", "cornetto_id": "r_a-12972", "cornetto_synset_id": "n_a-519402", "wordnet_id": "a-00142040", "pos": "JJ", "sense": "los", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.9" }, "multifunctioneel": { "form": "multifunctioneel", "cornetto_id": "r_a-12975", "cornetto_synset_id": "n_a-519407", "wordnet_id": "a-00527188", "pos": "JJ", "sense": "met vele functies", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "multilateraal": { "form": "multilateraal", "cornetto_id": "r_a-12976", "cornetto_synset_id": "n_a-518468", "wordnet_id": "a-00237240", "pos": "JJ", "sense": "veelzijdig", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.1", "confidence": "0.7" }, "multinationaal": { "form": "multinationaal", "cornetto_id": "r_a-12977", "cornetto_synset_id": "n_a-519411", "wordnet_id": "a-01569166", "pos": "JJ", "sense": "internationaal verspreid", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "murw": { "form": "murw", "cornetto_id": "r_a-12979", "cornetto_synset_id": "n_a-519438", "wordnet_id": "a-02576918", "pos": "JJ", "sense": "week", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "must": { "form": "must", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "FW", "sense": "", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "muurvast": { "form": "muurvast", "cornetto_id": "r_a-12980", "cornetto_synset_id": "n_a-519468", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.3", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "muzikaal": { "form": "muzikaal", "cornetto_id": "r_a-13032", "cornetto_synset_id": "n_a-519488", "wordnet_id": "a-01504625", "pos": "JJ", "sense": "behorend tot de muziek", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "mwah": { "form": "mwah", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "UH", "sense": "", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "mysterieus": { "form": "mysterieus", "cornetto_id": "r_a-12983", "cornetto_synset_id": "d_a-9495", "wordnet_id": "a-00102930", "pos": "JJ", "sense": "raadselachtig", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "mystiek": { "form": "mystiek", "cornetto_id": "r_a-12985", "cornetto_synset_id": "n_a-504843", "wordnet_id": "a-01574446", "pos": "JJ", "sense": "betreffende de mystiek", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "mythisch": { "form": "mythisch", "cornetto_id": "r_a-12986", "cornetto_synset_id": "n_a-516947", "wordnet_id": "a-01936184", "pos": "JJ", "sense": "fabelachtig", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "mythologisch": { "form": "mythologisch", "cornetto_id": "r_a-12987", "cornetto_synset_id": "n_a-519495", "wordnet_id": "a-01936184", "pos": "JJ", "sense": "mbt. de mythologie", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "naadloos": { "form": "naadloos", "cornetto_id": "r_a-13038", "cornetto_synset_id": "n_a-519505", "wordnet_id": "a-00464845", "pos": "JJ", "sense": "zonder naad", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "naakt": { "form": "naakt", "cornetto_id": "r_a-13040", "cornetto_synset_id": "n_a-520639", "wordnet_id": "a-00106821", "pos": "JJ", "sense": "onbegroeid en onbedekt", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "naar": { "form": "naar", "cornetto_id": "r_a-13044", "cornetto_synset_id": "n_a-519014", "wordnet_id": "a-02545689", "pos": "JJ", "sense": "misselijk", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "naargeestig": { "form": "naargeestig", "cornetto_id": "r_a-13045", "cornetto_synset_id": "n_a-528326", "wordnet_id": "a-00364479", "pos": "JJ", "sense": "akelig", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "naarstig": { "form": "naarstig", "cornetto_id": "r_a-13046", "cornetto_synset_id": "n_a-513345", "wordnet_id": "a-00031974", "pos": "JJ", "sense": "ijverig", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.2", "confidence": "0.7" }, "naast": { "form": "naast", "cornetto_id": "r_a-13197", "cornetto_synset_id": "n_a-519548", "wordnet_id": "", "pos": "JJ", "sense": "meest vertrouwd", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "nabij": { "form": "nabij", "cornetto_id": "r_a-13048", "cornetto_synset_id": "d_a-9415", "wordnet_id": "", "pos": "JJ", "sense": "dichtbij", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "1.0" }, "nadelig": { "form": "nadelig", "cornetto_id": "r_a-13052", "cornetto_synset_id": "n_a-526699", "wordnet_id": "a-00065488", "pos": "JJ", "sense": "schadelijk", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "nader": { "form": "nader", "cornetto_id": "r_a-13056", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "meer of uitgebreider", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "nalatig": { "form": "nalatig", "cornetto_id": "r_a-13060", "cornetto_synset_id": "n_a-519631", "wordnet_id": "a-00755220", "pos": "JJ", "sense": "niet gedaan wat had gemoeten", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "naoorlogs": { "form": "naoorlogs", "cornetto_id": "r_a-13062", "cornetto_synset_id": "n_a-519636", "wordnet_id": "a-00130017", "pos": "JJ", "sense": "van na de oorlog", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "napoleontisch": { "form": "napoleontisch", "cornetto_id": "r_a-13063", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "(als) van Napoleon", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "narcistisch": { "form": "narcistisch", "cornetto_id": "r_a-13064", "cornetto_synset_id": "n_a-519645", "wordnet_id": "a-02098694", "pos": "JJ", "sense": "ijdel en zelfingenomen", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.2", "confidence": "0.7" }, "narrig": { "form": "narrig", "cornetto_id": "r_a-13065", "cornetto_synset_id": "d_a-9521", "wordnet_id": "a-00703615", "pos": "JJ", "sense": "chagrijnig", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "nat": { "form": "nat", "cornetto_id": "r_a-13067", "cornetto_synset_id": "d_a-9416", "wordnet_id": "a-02547317", "pos": "JJ", "sense": "niet droog", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "nationaal": { "form": "nationaal", "cornetto_id": "r_a-13068", "cornetto_synset_id": "n_a-519668", "wordnet_id": "a-00463784", "pos": "JJ", "sense": "een natie betreffend", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "nationalistisch": { "form": "nationalistisch", "cornetto_id": "r_a-13070", "cornetto_synset_id": "n_a-519670", "wordnet_id": "a-01568092", "pos": "JJ", "sense": "(te) nationaal gezind", "polarity": "-0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "natuurlijk": { "form": "natuurlijk", "cornetto_id": "r_a-13079", "cornetto_synset_id": "n_a-517484", "wordnet_id": "a-01593649", "pos": "JJ", "sense": "begrijpelijk", "polarity": "0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "natuurwetenschappelijk": { "form": "natuurwetenschappelijk", "cornetto_id": "r_a-13081", "cornetto_synset_id": "n_a-519708", "wordnet_id": "a-02084804", "pos": "JJ", "sense": "de natuurwetenschappen betreffend", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "nauw": { "form": "nauw", "cornetto_id": "r_a-13084", "cornetto_synset_id": "n_a-512169", "wordnet_id": "a-00444519", "pos": "JJ", "sense": "dicht bij elkaar", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "nauwgezet": { "form": "nauwgezet", "cornetto_id": "r_a-13086", "cornetto_synset_id": "n_a-519716", "wordnet_id": "a-00021766", "pos": "JJ", "sense": "nauwkeurig", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "nauwkeurig": { "form": "nauwkeurig", "cornetto_id": "r_a-13088", "cornetto_synset_id": "n_a-526930", "wordnet_id": "a-00631798", "pos": "JJ", "sense": "precies", "polarity": "0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "nauwsluitend": { "form": "nauwsluitend", "cornetto_id": "r_a-13199", "cornetto_synset_id": "n_a-519719", "wordnet_id": "a-00017186", "pos": "JJ", "sense": "juist op of in elkaar passend", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "navoelbaar": { "form": "navoelbaar", "cornetto_id": "r_a-13092", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "na te voelen", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.2", "confidence": "0.7" }, "navolgend": { "form": "navolgend", "cornetto_id": "r_a-13093", "cornetto_synset_id": "n_a-519728", "wordnet_id": "a-00127815", "pos": "JJ", "sense": "hierna vermeld", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "navrant": { "form": "navrant", "cornetto_id": "r_a-13094", "cornetto_synset_id": "n_a-512119", "wordnet_id": "a-01374004", "pos": "JJ", "sense": "schrijnend", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.9" }, "naïef": { "form": "naïef", "cornetto_id": "r_a-13059", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "onnozel", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "neergeknuppeld": { "form": "neergeknuppeld", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "VBN", "sense": "", "polarity": "-0.2", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "nefast": { "form": "nefast", "cornetto_id": "r_a-13103", "cornetto_synset_id": "n_a-532319", "wordnet_id": "a-00089550", "pos": "JJ", "sense": "noodlottig", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "negatief": { "form": "negatief", "cornetto_id": "r_a-13106", "cornetto_synset_id": "n_a-519760", "wordnet_id": "a-00065667", "pos": "JJ", "sense": "kleiner dan nul", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "neofascistisch": { "form": "neofascistisch", "cornetto_id": "r_a-13108", "cornetto_synset_id": "n_a-519807", "wordnet_id": "", "pos": "JJ", "sense": "het neofascisme betreffend", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "neonazistisch": { "form": "neonazistisch", "cornetto_id": "r_a-13111", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "het neonazisme betreffend", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.4", "confidence": "0.7" }, "nerveus": { "form": "nerveus", "cornetto_id": "r_a-13112", "cornetto_synset_id": "n_a-535556", "wordnet_id": "a-02406370", "pos": "JJ", "sense": "zenuwachtig", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "net": { "form": "net", "cornetto_id": "r_a-13203", "cornetto_synset_id": "n_a-508843", "wordnet_id": "a-01878870", "pos": "JJ", "sense": "fatsoenlijk", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "netelig": { "form": "netelig", "cornetto_id": "r_a-13114", "cornetto_synset_id": "n_a-511757", "wordnet_id": "a-00746994", "pos": "JJ", "sense": "moeilijk", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "netjes": { "form": "netjes", "cornetto_id": "r_a-13116", "cornetto_synset_id": "n_a-508843", "wordnet_id": "a-01878870", "pos": "JJ", "sense": "zoals het hoort", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "neurologisch": { "form": "neurologisch", "cornetto_id": "r_a-13119", "cornetto_synset_id": "n_a-519903", "wordnet_id": "a-02917893", "pos": "JJ", "sense": "de neurologie betreffend", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "neurotisch": { "form": "neurotisch", "cornetto_id": "r_a-13120", "cornetto_synset_id": "d_a-9419", "wordnet_id": "a-02075847", "pos": "JJ", "sense": "met neurose te maken hebbend", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "neutraal": { "form": "neutraal", "cornetto_id": "r_a-13202", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "niet positief of negatief", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "nevelachtig": { "form": "nevelachtig", "cornetto_id": "r_a-13123", "cornetto_synset_id": "n_a-519935", "wordnet_id": "a-00462741", "pos": "JJ", "sense": "een beetje mistig", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "nevengeschikt": { "form": "nevengeschikt", "cornetto_id": "r_a-13125", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "nevenschikkend verbonden", "polarity": "-0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "nichterig": { "form": "nichterig", "cornetto_id": "r_a-13128", "cornetto_synset_id": "n_a-519957", "wordnet_id": "", "pos": "JJ", "sense": "als (van) een homoseksueel", "polarity": "-0.1", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "niet-bindend": { "form": "niet-bindend", "cornetto_id": "r_a-13134", "cornetto_synset_id": "n_a-519981", "wordnet_id": "", "pos": "JJ", "sense": "waar je niet aan vast zit", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.3", "confidence": "0.7" }, "niet-commercieel": { "form": "niet-commercieel", "cornetto_id": "r_a-13135", "cornetto_synset_id": "n_a-513277", "wordnet_id": "a-00484333", "pos": "JJ", "sense": "zonder commercieel doel", "polarity": "0.3", "subjectivity": "0.4", "intensity": "1.2", "confidence": "0.7" }, "niet-westers": { "form": "niet-westers", "cornetto_id": "r_a-13138", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "niet westers", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "nietsvermoedend": { "form": "nietsvermoedend", "cornetto_id": "r_a-13142", "cornetto_synset_id": "n_a-520000", "wordnet_id": "a-00192523", "pos": "JJ", "sense": "zonder iets te vermoeden", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "nietszeggend": { "form": "nietszeggend", "cornetto_id": "r_a-13143", "cornetto_synset_id": "n_a-516876", "wordnet_id": "a-00501313", "pos": "JJ", "sense": "zonder inhoud", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "nieuw": { "form": "nieuw", "cornetto_id": "r_a-13145", "cornetto_synset_id": "c_158", "wordnet_id": "", "pos": "JJ", "sense": "van dit jaar", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "nieuwbakken": { "form": "nieuwbakken", "cornetto_id": "r_a-13146", "cornetto_synset_id": "d_a-9422", "wordnet_id": "a-00128733", "pos": "JJ", "sense": "nieuw in een functie", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "nieuwsgierig": { "form": "nieuwsgierig", "cornetto_id": "r_a-13149", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "graag iets willen weten", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "nihilistisch": { "form": "nihilistisch", "cornetto_id": "r_a-13150", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "het nihilisme betreffend", "polarity": "0.0", "subjectivity": "0.7", "intensity": "0.9", "confidence": "0.7" }, "nijpend": { "form": "nijpend", "cornetto_id": "r_a-13152", "cornetto_synset_id": "n_a-523336", "wordnet_id": "a-00605406", "pos": "JJ", "sense": "kwellend", "polarity": "-0.2", "subjectivity": "0.5", "intensity": "1.1", "confidence": "0.7" }, "nipt": { "form": "nipt", "cornetto_id": "r_a-13155", "cornetto_synset_id": "n_a-520051", "wordnet_id": "a-00287640", "pos": "JJ", "sense": "maar net", "polarity": "-0.1", "subjectivity": "0.7", "intensity": "1.7", "confidence": "0.7" }, "nobel": { "form": "nobel", "cornetto_id": "r_a-13156", "cornetto_synset_id": "n_a-507937", "wordnet_id": "a-01588172", "pos": "JJ", "sense": "edelmoedig", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "nodeloos": { "form": "nodeloos", "cornetto_id": "r_a-13157", "cornetto_synset_id": "n_a-521309", "wordnet_id": "a-01581115", "pos": "JJ", "sense": "onnodig", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "nodig": { "form": "nodig", "cornetto_id": "r_a-13159", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "gebruikelijk", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "noemenswaardig": { "form": "noemenswaardig", "cornetto_id": "r_a-13160", "cornetto_synset_id": "n_a-520070", "wordnet_id": "a-00624026", "pos": "JJ", "sense": "van belang", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.4", "confidence": "0.7" }, "noest": { "form": "noest", "cornetto_id": "r_a-13161", "cornetto_synset_id": "n_a-513345", "wordnet_id": "a-00031974", "pos": "JJ", "sense": "nijver", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "non-profit": { "form": "non-profit", "cornetto_id": "r_a-13166", "cornetto_synset_id": "n_a-520102", "wordnet_id": "", "pos": "JJ", "sense": "zonder winstoogmerk", "polarity": "0.3", "subjectivity": "0.4", "intensity": "1.2", "confidence": "0.7" }, "non-stop": { "form": "non-stop", "cornetto_id": "r_a-13167", "cornetto_synset_id": "n_a-520586", "wordnet_id": "a-00291338", "pos": "JJ", "sense": "onafgebroken", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "nonchalant": { "form": "nonchalant", "cornetto_id": "r_a-13168", "cornetto_synset_id": "n_a-520108", "wordnet_id": "a-00311663", "pos": "JJ", "sense": "achteloos", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "noodgedwongen": { "form": "noodgedwongen", "cornetto_id": "r_a-13169", "cornetto_synset_id": "n_a-509863", "wordnet_id": "a-00073048", "pos": "JJ", "sense": "door nood gedwongen", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.1", "confidence": "1.0" }, "noodlottig": { "form": "noodlottig", "cornetto_id": "r_a-13171", "cornetto_synset_id": "n_a-520118", "wordnet_id": "a-00586183", "pos": "JJ", "sense": "fataal", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.1", "confidence": "1.0" }, "noodzakelijk": { "form": "noodzakelijk", "cornetto_id": "r_a-13173", "cornetto_synset_id": "n_a-521606", "wordnet_id": "a-00343360", "pos": "JJ", "sense": "onvermijdelijk", "polarity": "-0.1", "subjectivity": "0.7", "intensity": "1.1", "confidence": "1.0" }, "normaal": { "form": "normaal", "cornetto_id": "r_a-13180", "cornetto_synset_id": "c_80", "wordnet_id": "a-01593649", "pos": "JJ", "sense": "gewoon", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "nors": { "form": "nors", "cornetto_id": "r_a-13182", "cornetto_synset_id": "n_a-520179", "wordnet_id": "a-01139067", "pos": "JJ", "sense": "bars", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "nostalgisch": { "form": "nostalgisch", "cornetto_id": "r_a-13183", "cornetto_synset_id": "d_a-9425", "wordnet_id": "a-00889098", "pos": "JJ", "sense": "vol nostalgie", "polarity": "-0.1", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "nuchter": { "form": "nuchter", "cornetto_id": "r_a-13210", "cornetto_synset_id": "n_a-520215", "wordnet_id": "a-01269319", "pos": "JJ", "sense": "niet dronken", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "nukkig": { "form": "nukkig", "cornetto_id": "r_a-13191", "cornetto_synset_id": "n_a-511490", "wordnet_id": "a-00301777", "pos": "JJ", "sense": "vol nukken en onberekenbaar", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "nurks": { "form": "nurks", "cornetto_id": "r_a-13194", "cornetto_synset_id": "n_a-520179", "wordnet_id": "a-01139067", "pos": "JJ", "sense": "knorrig", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "nutteloos": { "form": "nutteloos", "cornetto_id": "r_a-13195", "cornetto_synset_id": "n_a-535779", "wordnet_id": "a-01082535", "pos": "JJ", "sense": "zinloos", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "nuttig": { "form": "nuttig", "cornetto_id": "r_a-13196", "cornetto_synset_id": "n_a-520249", "wordnet_id": "a-00019731", "pos": "JJ", "sense": "bruikbaar of zinvol", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "objectief": { "form": "objectief", "cornetto_id": "r_a-13211", "cornetto_synset_id": "d_a-9427", "wordnet_id": "a-00013442", "pos": "JJ", "sense": "niet subjectief", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "obligaat": { "form": "obligaat", "cornetto_id": "r_a-13212", "cornetto_synset_id": "n_a-520274", "wordnet_id": "a-00848466", "pos": "JJ", "sense": "verplicht", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "obscuur": { "form": "obscuur", "cornetto_id": "r_a-14015", "cornetto_synset_id": "n_a-532303", "wordnet_id": "a-01917594", "pos": "JJ", "sense": "onbekend", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "obsessief": { "form": "obsessief", "cornetto_id": "r_a-13215", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "als een obsessie", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "obstinaat": { "form": "obstinaat", "cornetto_id": "r_a-13216", "cornetto_synset_id": "n_a-515826", "wordnet_id": "a-00583581", "pos": "JJ", "sense": "koppig", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "0.8", "confidence": "0.7" }, "occult": { "form": "occult", "cornetto_id": "r_a-13218", "cornetto_synset_id": "n_a-508500", "wordnet_id": "a-00898963", "pos": "JJ", "sense": "duister", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "ocharme": { "form": "ocharme", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "UH", "sense": "", "polarity": "-0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "oecumenisch": { "form": "oecumenisch", "cornetto_id": "r_a-13221", "cornetto_synset_id": "n_a-520341", "wordnet_id": "a-02092460", "pos": "JJ", "sense": "de oecumene betreffend", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "oenig": { "form": "oenig", "cornetto_id": "d_a-188914", "cornetto_synset_id": "c_579", "wordnet_id": "a-01841390", "pos": "JJ", "sense": "dom", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "oersaai": { "form": "oersaai", "cornetto_id": "d_a-207819", "cornetto_synset_id": "n_a-520370", "wordnet_id": "a-01345307", "pos": "JJ", "sense": "", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "oersterk": { "form": "oersterk", "cornetto_id": "r_a-13226", "cornetto_synset_id": "n_a-503648", "wordnet_id": "", "pos": "JJ", "sense": "erg sterk", "polarity": "0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "oeverloos": { "form": "oeverloos", "cornetto_id": "r_a-13229", "cornetto_synset_id": "n_a-520379", "wordnet_id": "a-01007657", "pos": "JJ", "sense": "eindeloos", "polarity": "-0.2", "subjectivity": "0.7", "intensity": "1.3", "confidence": "1.0" }, "offensief": { "form": "offensief", "cornetto_id": "r_a-13230", "cornetto_synset_id": "n_a-501314", "wordnet_id": "a-01629349", "pos": "JJ", "sense": "aanvallend", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "officieel": { "form": "officieel", "cornetto_id": "r_a-14020", "cornetto_synset_id": "n_a-509253", "wordnet_id": "a-01042491", "pos": "JJ", "sense": "naar vormelijke verplichtingen", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "officieus": { "form": "officieus", "cornetto_id": "r_a-13232", "cornetto_synset_id": "n_a-520405", "wordnet_id": "a-01044240", "pos": "JJ", "sense": "niet officieel", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "ogenblikkelijk": { "form": "ogenblikkelijk", "cornetto_id": "r_a-13233", "cornetto_synset_id": "c_744", "wordnet_id": "", "pos": "JJ", "sense": "nu al aanwezig", "polarity": "0.4", "subjectivity": "0.4", "intensity": "1.1", "confidence": "0.7" }, "ogenschijnlijk": { "form": "ogenschijnlijk", "cornetto_id": "r_a-13234", "cornetto_synset_id": "n_a-526993", "wordnet_id": "a-00028471", "pos": "JJ", "sense": "schijnbaar", "polarity": "0.0", "subjectivity": "0.4", "intensity": "0.9", "confidence": "1.0" }, "oliedom": { "form": "oliedom", "cornetto_id": "r_a-13238", "cornetto_synset_id": "n_a-529438", "wordnet_id": "a-00015480", "pos": "JJ", "sense": "erg dom", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "olympisch": { "form": "olympisch", "cornetto_id": "r_a-13243", "cornetto_synset_id": "n_a-520482", "wordnet_id": "a-03093076", "pos": "JJ", "sense": "de Olympische Spelen betreffend", "polarity": "0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "omineus": { "form": "omineus", "cornetto_id": "r_a-13247", "cornetto_synset_id": "n_a-521232", "wordnet_id": "a-00176838", "pos": "JJ", "sense": "onheilspellend", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "omslachtig": { "form": "omslachtig", "cornetto_id": "r_a-13251", "cornetto_synset_id": "n_a-520533", "wordnet_id": "a-00549236", "pos": "JJ", "sense": "omstandig", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "omzichtig": { "form": "omzichtig", "cornetto_id": "r_a-13255", "cornetto_synset_id": "n_a-520558", "wordnet_id": "a-01898490", "pos": "JJ", "sense": "behoedzaam", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "onaangenaam": { "form": "onaangenaam", "cornetto_id": "r_a-13260", "cornetto_synset_id": "d_a-9431", "wordnet_id": "a-00193480", "pos": "JJ", "sense": "naar", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "onaangepast": { "form": "onaangepast", "cornetto_id": "r_a-13261", "cornetto_synset_id": "n_a-502630", "wordnet_id": "a-00351420", "pos": "JJ", "sense": "niet aangepast", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "onaangevochten": { "form": "onaangevochten", "cornetto_id": "d_a-191535", "cornetto_synset_id": "n_a-521322", "wordnet_id": "a-00602721", "pos": "JJ", "sense": "", "polarity": "0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "onaantastbaar": { "form": "onaantastbaar", "cornetto_id": "r_a-13264", "cornetto_synset_id": "n_a-521322", "wordnet_id": "a-00602721", "pos": "JJ", "sense": "niet aan te tasten", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.3", "confidence": "0.7" }, "onaantrekkelijk": { "form": "onaantrekkelijk", "cornetto_id": "r_a-13265", "cornetto_synset_id": "d_a-9381", "wordnet_id": "a-00220956", "pos": "JJ", "sense": "niet aantrekkelijk", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "onaanzienlijk": { "form": "onaanzienlijk", "cornetto_id": "r_a-14024", "cornetto_synset_id": "n_a-520627", "wordnet_id": "a-00107384", "pos": "JJ", "sense": "zonder aanzien", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onaardig": { "form": "onaardig", "cornetto_id": "r_a-13268", "cornetto_synset_id": "n_a-521675", "wordnet_id": "a-00640283", "pos": "JJ", "sense": "onsympathiek", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "onacceptabel": { "form": "onacceptabel", "cornetto_id": "r_a-13269", "cornetto_synset_id": "n_a-520577", "wordnet_id": "a-00590564", "pos": "JJ", "sense": "niet acceptabel", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.9", "confidence": "0.7" }, "onachtzaam": { "form": "onachtzaam", "cornetto_id": "r_a-13270", "cornetto_synset_id": "n_a-520108", "wordnet_id": "a-00311663", "pos": "JJ", "sense": "nonchalant", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "onaf": { "form": "onaf", "cornetto_id": "r_a-13271", "cornetto_synset_id": "n_a-521663", "wordnet_id": "a-00525315", "pos": "JJ", "sense": "onvoltooid", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "onafgebroken": { "form": "onafgebroken", "cornetto_id": "r_a-13272", "cornetto_synset_id": "n_a-520586", "wordnet_id": "a-00291338", "pos": "JJ", "sense": "doorlopend", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "onafhankelijk": { "form": "onafhankelijk", "cornetto_id": "r_a-14025", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "niet van iets anders afhangend", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "onafwendbaar": { "form": "onafwendbaar", "cornetto_id": "r_a-13276", "cornetto_synset_id": "n_a-521606", "wordnet_id": "a-00343360", "pos": "JJ", "sense": "onvermijdelijk", "polarity": "-0.2", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "onafzienbaar": { "form": "onafzienbaar", "cornetto_id": "r_a-13277", "cornetto_synset_id": "n_a-520607", "wordnet_id": "a-01387319", "pos": "JJ", "sense": "niet te overzien", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.3", "confidence": "0.7" }, "onalledaags": { "form": "onalledaags", "cornetto_id": "r_a-13278", "cornetto_synset_id": "d_a-9188", "wordnet_id": "a-00966477", "pos": "JJ", "sense": "bijzonder", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.2", "confidence": "0.7" }, "onbaatzuchtig": { "form": "onbaatzuchtig", "cornetto_id": "r_a-13280", "cornetto_synset_id": "d_a-9432", "wordnet_id": "a-00101609", "pos": "JJ", "sense": "belangeloos", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.2", "confidence": "0.7" }, "onbarmhartig": { "form": "onbarmhartig", "cornetto_id": "r_a-13281", "cornetto_synset_id": "n_a-518422", "wordnet_id": "a-01507402", "pos": "JJ", "sense": "ongenadig", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.9" }, "onbeantwoord": { "form": "onbeantwoord", "cornetto_id": "r_a-13282", "cornetto_synset_id": "n_a-520614", "wordnet_id": "a-01947127", "pos": "JJ", "sense": "niet beantwoord", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "1.0" }, "onbedachtzaam": { "form": "onbedachtzaam", "cornetto_id": "r_a-13284", "cornetto_synset_id": "n_a-521299", "wordnet_id": "a-00250483", "pos": "JJ", "sense": "onnadenkend", "polarity": "-0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "onbedoeld": { "form": "onbedoeld", "cornetto_id": "r_a-13285", "cornetto_synset_id": "n_a-520622", "wordnet_id": "a-00192523", "pos": "JJ", "sense": "onopzettelijk", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "onbedreigd": { "form": "onbedreigd", "cornetto_id": "r_a-13287", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "niet bedreigd", "polarity": "0.1", "subjectivity": "0.7", "intensity": "1.7", "confidence": "0.7" }, "onbeduidend": { "form": "onbeduidend", "cornetto_id": "r_a-13288", "cornetto_synset_id": "c_373", "wordnet_id": "a-00107384", "pos": "JJ", "sense": "niet belangrijk", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "onbedwingbaar": { "form": "onbedwingbaar", "cornetto_id": "r_a-13289", "cornetto_synset_id": "n_a-520642", "wordnet_id": "a-00570099", "pos": "JJ", "sense": "niet bedwingbaar", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.9" }, "onbegaanbaar": { "form": "onbegaanbaar", "cornetto_id": "r_a-13290", "cornetto_synset_id": "n_a-520630", "wordnet_id": "a-00020241", "pos": "JJ", "sense": "niet begaanbaar", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "onbegrensd": { "form": "onbegrensd", "cornetto_id": "r_a-13292", "cornetto_synset_id": "n_a-520673", "wordnet_id": "a-00595299", "pos": "JJ", "sense": "grenzeloos", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.4", "confidence": "0.9" }, "onbegrepen": { "form": "onbegrepen", "cornetto_id": "r_a-13293", "cornetto_synset_id": "n_a-519003", "wordnet_id": "a-01379251", "pos": "JJ", "sense": "niet begrepen", "polarity": "-0.6", "subjectivity": "0.6", "intensity": "1.3", "confidence": "0.7" }, "onbegrijpelijk": { "form": "onbegrijpelijk", "cornetto_id": "r_a-13294", "cornetto_synset_id": "n_a-520635", "wordnet_id": "a-00939105", "pos": "JJ", "sense": "niet te begrijpen", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "onbehaaglijk": { "form": "onbehaaglijk", "cornetto_id": "r_a-13295", "cornetto_synset_id": "d_a-9433", "wordnet_id": "a-00089550", "pos": "JJ", "sense": "niet aangenaam", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "onbeheersbaar": { "form": "onbeheersbaar", "cornetto_id": "r_a-13297", "cornetto_synset_id": "n_a-520642", "wordnet_id": "a-00570099", "pos": "JJ", "sense": "niet beheersbaar", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "onbeheerst": { "form": "onbeheerst", "cornetto_id": "r_a-13298", "cornetto_synset_id": "n_a-520643", "wordnet_id": "a-01514141", "pos": "JJ", "sense": "niet beheerst", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onbeholpen": { "form": "onbeholpen", "cornetto_id": "r_a-13299", "cornetto_synset_id": "d_a-9454", "wordnet_id": "a-01140896", "pos": "JJ", "sense": "onhandig", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "onbehoorlijk": { "form": "onbehoorlijk", "cornetto_id": "r_a-13300", "cornetto_synset_id": "d_a-9447", "wordnet_id": "a-00411481", "pos": "JJ", "sense": "niet behoorlijk", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onbekend": { "form": "onbekend", "cornetto_id": "r_a-14027", "cornetto_synset_id": "n_a-521710", "wordnet_id": "a-00831696", "pos": "JJ", "sense": "niet beroemd", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "onbelangrijk": { "form": "onbelangrijk", "cornetto_id": "r_a-13305", "cornetto_synset_id": "n_a-520661", "wordnet_id": "a-01279978", "pos": "JJ", "sense": "onbeduidend", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "0.9", "confidence": "1.0" }, "onbeleefd": { "form": "onbeleefd", "cornetto_id": "r_a-13307", "cornetto_synset_id": "n_a-520665", "wordnet_id": "a-00641640", "pos": "JJ", "sense": "niet beleefd", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onbelemmerd": { "form": "onbelemmerd", "cornetto_id": "r_a-13308", "cornetto_synset_id": "d_a-9598", "wordnet_id": "a-02001984", "pos": "JJ", "sense": "ongehinderd", "polarity": "0.4", "subjectivity": "0.5", "intensity": "0.9", "confidence": "0.7" }, "onbenullig": { "form": "onbenullig", "cornetto_id": "r_a-13313", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "onbelangrijk", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onbenut": { "form": "onbenut", "cornetto_id": "r_a-13314", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "niet benut", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onbepaald": { "form": "onbepaald", "cornetto_id": "r_a-13315", "cornetto_synset_id": "n_a-520670", "wordnet_id": "a-00697389", "pos": "JJ", "sense": "taalkundige term", "polarity": "0.2", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "onbeperkt": { "form": "onbeperkt", "cornetto_id": "r_a-13316", "cornetto_synset_id": "n_a-521166", "wordnet_id": "", "pos": "JJ", "sense": "niet beperkt", "polarity": "0.2", "subjectivity": "0.5", "intensity": "0.9", "confidence": "0.7" }, "onberekenbaar": { "form": "onberekenbaar", "cornetto_id": "r_a-14033", "cornetto_synset_id": "n_a-511490", "wordnet_id": "a-00301777", "pos": "JJ", "sense": "niet te berekenen", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "onberoerd": { "form": "onberoerd", "cornetto_id": "r_a-14034", "cornetto_synset_id": "n_a-520570", "wordnet_id": "a-00088899", "pos": "JJ", "sense": "onaangedaan", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "onbeschermd": { "form": "onbeschermd", "cornetto_id": "r_a-13326", "cornetto_synset_id": "n_a-520695", "wordnet_id": "a-00036254", "pos": "JJ", "sense": "niet beschermd", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "onbeschoft": { "form": "onbeschoft", "cornetto_id": "r_a-13327", "cornetto_synset_id": "n_a-520696", "wordnet_id": "a-00641944", "pos": "JJ", "sense": "met slechte manieren", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onbeschrijfelijk": { "form": "onbeschrijfelijk", "cornetto_id": "r_a-13329", "cornetto_synset_id": "d_a-9258", "wordnet_id": "a-00943999", "pos": "JJ", "sense": "niet te beschrijven", "polarity": "0.1", "subjectivity": "1.0", "intensity": "1.7", "confidence": "1.0" }, "onbestaand": { "form": "onbestaand", "cornetto_id": "r_a-13338", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "denkbeeldig", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "onbestemd": { "form": "onbestemd", "cornetto_id": "r_a-13339", "cornetto_synset_id": "n_a-531905", "wordnet_id": "a-00120784", "pos": "JJ", "sense": "vaag", "polarity": "-0.1", "subjectivity": "1.0", "intensity": "1.7", "confidence": "0.7" }, "onbestreden": { "form": "onbestreden", "cornetto_id": "d_a-208029", "cornetto_synset_id": "n_a-521322", "wordnet_id": "a-00602721", "pos": "JJ", "sense": "", "polarity": "0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "onbesuisd": { "form": "onbesuisd", "cornetto_id": "r_a-13343", "cornetto_synset_id": "n_a-507154", "wordnet_id": "a-00203614", "pos": "JJ", "sense": "onstuimig", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "onbetamelijk": { "form": "onbetamelijk", "cornetto_id": "r_a-13346", "cornetto_synset_id": "d_a-9447", "wordnet_id": "a-00136081", "pos": "JJ", "sense": "onwelvoeglijk", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.9" }, "onbetreden": { "form": "onbetreden", "cornetto_id": "r_a-13348", "cornetto_synset_id": "n_a-520727", "wordnet_id": "a-00020241", "pos": "JJ", "sense": "niet betreden", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "onbetrouwbaar": { "form": "onbetrouwbaar", "cornetto_id": "r_a-13349", "cornetto_synset_id": "d_a-9434", "wordnet_id": "a-00338013", "pos": "JJ", "sense": "niet betrouwbaar", "polarity": "-0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "onbetwist": { "form": "onbetwist", "cornetto_id": "r_a-13351", "cornetto_synset_id": "n_a-521322", "wordnet_id": "a-00602721", "pos": "JJ", "sense": "onomstreden", "polarity": "0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "onbetwistbaar": { "form": "onbetwistbaar", "cornetto_id": "r_a-13352", "cornetto_synset_id": "n_a-521692", "wordnet_id": "a-00591406", "pos": "JJ", "sense": "niet te betwisten", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.2", "confidence": "0.7" }, "onbevangen": { "form": "onbevangen", "cornetto_id": "r_a-13354", "cornetto_synset_id": "n_a-533914", "wordnet_id": "a-00287498", "pos": "JJ", "sense": "niet geremd", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "onbevattelijk": { "form": "onbevattelijk", "cornetto_id": "d_a-192060", "cornetto_synset_id": "n_a-520635", "wordnet_id": "a-00939105", "pos": "JJ", "sense": "", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "onbevredigd": { "form": "onbevredigd", "cornetto_id": "r_a-13357", "cornetto_synset_id": "d_a-9459", "wordnet_id": "a-00589624", "pos": "JJ", "sense": "niet tevredengesteld", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "onbevredigend": { "form": "onbevredigend", "cornetto_id": "r_a-13358", "cornetto_synset_id": "n_a-520738", "wordnet_id": "a-02082611", "pos": "JJ", "sense": "niet bevredigend", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "0.9", "confidence": "1.0" }, "onbewogen": { "form": "onbewogen", "cornetto_id": "r_a-13363", "cornetto_synset_id": "n_a-520565", "wordnet_id": "a-00074346", "pos": "JJ", "sense": "niet geroerd", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onbewolkt": { "form": "onbewolkt", "cornetto_id": "r_a-13364", "cornetto_synset_id": "d_a-9329", "wordnet_id": "a-00460946", "pos": "JJ", "sense": "niet bewolkt", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "onbewust": { "form": "onbewust", "cornetto_id": "r_a-14042", "cornetto_synset_id": "n_a-520754", "wordnet_id": "a-00573093", "pos": "JJ", "sense": "niet wetend", "polarity": "-0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "onbezonnen": { "form": "onbezonnen", "cornetto_id": "r_a-13369", "cornetto_synset_id": "n_a-520943", "wordnet_id": "a-00250483", "pos": "JJ", "sense": "onnadenkend", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onbezorgd": { "form": "onbezorgd", "cornetto_id": "r_a-13370", "cornetto_synset_id": "n_a-520762", "wordnet_id": "a-00545746", "pos": "JJ", "sense": "zorgeloos", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "onbillijk": { "form": "onbillijk", "cornetto_id": "r_a-13371", "cornetto_synset_id": "n_a-521381", "wordnet_id": "a-00958712", "pos": "JJ", "sense": "onredelijk", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "onbreekbaar": { "form": "onbreekbaar", "cornetto_id": "r_a-13373", "cornetto_synset_id": "n_a-520769", "wordnet_id": "a-00709744", "pos": "JJ", "sense": "niet breekbaar", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "onbuigzaam": { "form": "onbuigzaam", "cornetto_id": "r_a-14044", "cornetto_synset_id": "n_a-515826", "wordnet_id": "a-00583581", "pos": "JJ", "sense": "koppig", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "onchristelijk": { "form": "onchristelijk", "cornetto_id": "r_a-13376", "cornetto_synset_id": "n_a-520776", "wordnet_id": "a-00411481", "pos": "JJ", "sense": "niet christelijk", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "oncomfortabel": { "form": "oncomfortabel", "cornetto_id": "r_a-13377", "cornetto_synset_id": "n_a-521143", "wordnet_id": "a-00605128", "pos": "JJ", "sense": "ongemakkelijk", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "oncontroleerbaar": { "form": "oncontroleerbaar", "cornetto_id": "r_a-13378", "cornetto_synset_id": "n_a-520780", "wordnet_id": "a-01616350", "pos": "JJ", "sense": "niet controleerbaar", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "onconventioneel": { "form": "onconventioneel", "cornetto_id": "r_a-13379", "cornetto_synset_id": "n_a-520781", "wordnet_id": "a-00362269", "pos": "JJ", "sense": "ongewoon", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "ondankbaar": { "form": "ondankbaar", "cornetto_id": "r_a-14049", "cornetto_synset_id": "n_a-520783", "wordnet_id": "a-01147044", "pos": "JJ", "sense": "de moeite niet lonend", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.3", "confidence": "0.7" }, "ondemocratisch": { "form": "ondemocratisch", "cornetto_id": "r_a-13383", "cornetto_synset_id": "n_a-520786", "wordnet_id": "a-00717417", "pos": "JJ", "sense": "niet democratisch", "polarity": "-0.2", "subjectivity": "0.5", "intensity": "1.1", "confidence": "0.7" }, "ondenkbaar": { "form": "ondenkbaar", "cornetto_id": "r_a-13384", "cornetto_synset_id": "n_a-521670", "wordnet_id": "a-02418538", "pos": "JJ", "sense": "niet voorstelbaar", "polarity": "-0.2", "subjectivity": "0.8", "intensity": "1.1", "confidence": "1.0" }, "ondergeschikt": { "form": "ondergeschikt", "cornetto_id": "r_a-13391", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "niet zo belangrijk", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "onderhoudend": { "form": "onderhoudend", "cornetto_id": "r_a-13398", "cornetto_synset_id": "n_a-520837", "wordnet_id": "a-00641460", "pos": "JJ", "sense": "boeiend", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "onderhuids": { "form": "onderhuids", "cornetto_id": "r_a-14057", "cornetto_synset_id": "n_a-520851", "wordnet_id": "a-00461971", "pos": "JJ", "sense": "onder de oppervlakte", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "onderliggend": { "form": "onderliggend", "cornetto_id": "r_a-14059", "cornetto_synset_id": "n_a-520863", "wordnet_id": "a-00941940", "pos": "JJ", "sense": "niet onmiddellijk zichtbaar", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "onderling": { "form": "onderling", "cornetto_id": "r_a-13402", "cornetto_synset_id": "n_a-520865", "wordnet_id": "a-01586194", "pos": "JJ", "sense": "onder elkaar", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "ondermaats": { "form": "ondermaats", "cornetto_id": "r_a-13404", "cornetto_synset_id": "n_a-520867", "wordnet_id": "a-01394558", "pos": "JJ", "sense": "onvoldoende", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onderontwikkeld": { "form": "onderontwikkeld", "cornetto_id": "r_a-13406", "cornetto_synset_id": "n_a-520876", "wordnet_id": "a-00201354", "pos": "JJ", "sense": "achtergebleven", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "onderst": { "form": "onderst", "cornetto_id": "r_a-13410", "cornetto_synset_id": "d_a-9440", "wordnet_id": "a-01207546", "pos": "JJ", "sense": "laagst gelegen", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.3", "confidence": "0.7" }, "onderstaand": { "form": "onderstaand", "cornetto_id": "d_a-193098", "cornetto_synset_id": "n_a-520887", "wordnet_id": "a-00127948", "pos": "JJ", "sense": "", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "ondervoed": { "form": "ondervoed", "cornetto_id": "r_a-13412", "cornetto_synset_id": "n_a-520906", "wordnet_id": "a-02301180", "pos": "JJ", "sense": "lijdend aan ondervoeding", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "ondeskundig": { "form": "ondeskundig", "cornetto_id": "r_a-13414", "cornetto_synset_id": "d_a-9441", "wordnet_id": "a-01870636", "pos": "JJ", "sense": "niet deskundig", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "ondeugdelijk": { "form": "ondeugdelijk", "cornetto_id": "r_a-13415", "cornetto_synset_id": "d_a-9442", "wordnet_id": "a-00023854", "pos": "JJ", "sense": "niet goed", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "ondeugend": { "form": "ondeugend", "cornetto_id": "r_a-14064", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "pikant", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "ondoelmatig": { "form": "ondoelmatig", "cornetto_id": "r_a-13418", "cornetto_synset_id": "n_a-513586", "wordnet_id": "a-00046792", "pos": "JJ", "sense": "niet doelmatig", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "ondoenlijk": { "form": "ondoenlijk", "cornetto_id": "r_a-13419", "cornetto_synset_id": "d_a-9456", "wordnet_id": "a-00955405", "pos": "JJ", "sense": "onuitvoerbaar", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.3", "confidence": "0.9" }, "ondoordacht": { "form": "ondoordacht", "cornetto_id": "r_a-13420", "cornetto_synset_id": "n_a-520943", "wordnet_id": "a-00250483", "pos": "JJ", "sense": "niet doordacht", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "ondoordringbaar": { "form": "ondoordringbaar", "cornetto_id": "r_a-13421", "cornetto_synset_id": "n_a-520944", "wordnet_id": "a-00939444", "pos": "JJ", "sense": "niet doordringbaar", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "ondoorgrondelijk": { "form": "ondoorgrondelijk", "cornetto_id": "r_a-13422", "cornetto_synset_id": "n_a-520635", "wordnet_id": "a-00939105", "pos": "JJ", "sense": "niet te doorgronden", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "ondoorzichtig": { "form": "ondoorzichtig", "cornetto_id": "r_a-14065", "cornetto_synset_id": "n_a-520635", "wordnet_id": "a-00939105", "pos": "JJ", "sense": "moeilijk te begrijpen", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "ondrinkbaar": { "form": "ondrinkbaar", "cornetto_id": "r_a-13425", "cornetto_synset_id": "d_a-9444", "wordnet_id": "a-00797218", "pos": "JJ", "sense": "niet drinkbaar", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "ondubbelzinnig": { "form": "ondubbelzinnig", "cornetto_id": "r_a-13426", "cornetto_synset_id": "n_a-520956", "wordnet_id": "a-00103696", "pos": "JJ", "sense": "volstrekt duidelijk", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "onduidelijk": { "form": "onduidelijk", "cornetto_id": "r_a-13427", "cornetto_synset_id": "n_a-520958", "wordnet_id": "a-00436115", "pos": "JJ", "sense": "niet duidelijk", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "oneens": { "form": "oneens", "cornetto_id": "r_a-13432", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "niet eens", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "oneerbaar": { "form": "oneerbaar", "cornetto_id": "r_a-13433", "cornetto_synset_id": "c_532", "wordnet_id": "a-00361509", "pos": "JJ", "sense": "niet eerbaar", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "oneerbiedig": { "form": "oneerbiedig", "cornetto_id": "r_a-13434", "cornetto_synset_id": "n_a-520967", "wordnet_id": "a-01994602", "pos": "JJ", "sense": "niet eerbiedig", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "oneerlijk": { "form": "oneerlijk", "cornetto_id": "r_a-13435", "cornetto_synset_id": "n_a-520969", "wordnet_id": "a-00621207", "pos": "JJ", "sense": "niet eerlijk", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "oneetbaar": { "form": "oneetbaar", "cornetto_id": "r_a-13437", "cornetto_synset_id": "d_a-9445", "wordnet_id": "a-00829496", "pos": "JJ", "sense": "niet te eten", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "oneffen": { "form": "oneffen", "cornetto_id": "r_a-13438", "cornetto_synset_id": "d_a-9446", "wordnet_id": "a-02240006", "pos": "JJ", "sense": "niet effen", "polarity": "-0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "oneindig": { "form": "oneindig", "cornetto_id": "r_a-13440", "cornetto_synset_id": "d_a-9258", "wordnet_id": "a-00943999", "pos": "JJ", "sense": "eindeloos", "polarity": "-0.1", "subjectivity": "0.5", "intensity": "1.3", "confidence": "1.0" }, "onervaren": { "form": "onervaren", "cornetto_id": "r_a-13441", "cornetto_synset_id": "n_a-520979", "wordnet_id": "a-00936740", "pos": "JJ", "sense": "niet ervaren", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onevenaarbaar": { "form": "onevenaarbaar", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "0.9", "subjectivity": "0.9", "intensity": "1.7", "confidence": "1.0" }, "onevenwichtig": { "form": "onevenwichtig", "cornetto_id": "r_a-13444", "cornetto_synset_id": "n_a-520983", "wordnet_id": "a-00345189", "pos": "JJ", "sense": "niet evenwichtig", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onfatsoenlijk": { "form": "onfatsoenlijk", "cornetto_id": "r_a-13445", "cornetto_synset_id": "d_a-9447", "wordnet_id": "a-00411481", "pos": "JJ", "sense": "niet fatsoenlijk", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onfeilbaar": { "form": "onfeilbaar", "cornetto_id": "r_a-13446", "cornetto_synset_id": "n_a-520986", "wordnet_id": "a-00964906", "pos": "JJ", "sense": "nooit falend", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onfris": { "form": "onfris", "cornetto_id": "r_a-14068", "cornetto_synset_id": "n_a-527874", "wordnet_id": "a-01321529", "pos": "JJ", "sense": "bedenkelijk", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "ongeboren": { "form": "ongeboren", "cornetto_id": "r_a-13453", "cornetto_synset_id": "n_a-521013", "wordnet_id": "a-00003553", "pos": "JJ", "sense": "niet geboren", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "ongebreideld": { "form": "ongebreideld", "cornetto_id": "r_a-13455", "cornetto_synset_id": "n_a-521014", "wordnet_id": "a-02001596", "pos": "JJ", "sense": "onbeteugeld", "polarity": "0.3", "subjectivity": "0.7", "intensity": "1.3", "confidence": "0.7" }, "ongebruikelijk": { "form": "ongebruikelijk", "cornetto_id": "r_a-13457", "cornetto_synset_id": "n_a-521017", "wordnet_id": "a-00487653", "pos": "JJ", "sense": "niet gebruikelijk", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "ongecompliceerd": { "form": "ongecompliceerd", "cornetto_id": "r_a-13460", "cornetto_synset_id": "d_a-9254", "wordnet_id": "a-00750296", "pos": "JJ", "sense": "niet ingewikkeld", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "ongecontroleerd": { "form": "ongecontroleerd", "cornetto_id": "r_a-14074", "cornetto_synset_id": "n_a-520643", "wordnet_id": "a-01514141", "pos": "JJ", "sense": "onbeheerst", "polarity": "-0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "ongecoördineerd": { "form": "ongecoördineerd", "cornetto_id": "r_a-13459", "cornetto_synset_id": "n_a-534209", "wordnet_id": "a-01204443", "pos": "JJ", "sense": "niet gecoördineerd", "polarity": "0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "ongedisciplineerd": { "form": "ongedisciplineerd", "cornetto_id": "r_a-13468", "cornetto_synset_id": "n_a-521034", "wordnet_id": "a-00601499", "pos": "JJ", "sense": "niet gedisciplineerd", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "ongeduldig": { "form": "ongeduldig", "cornetto_id": "r_a-13469", "cornetto_synset_id": "n_a-521037", "wordnet_id": "a-00811536", "pos": "JJ", "sense": "niet geduldig", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "ongefundeerd": { "form": "ongefundeerd", "cornetto_id": "r_a-13474", "cornetto_synset_id": "n_a-521047", "wordnet_id": "a-00179486", "pos": "JJ", "sense": "ongegrond", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.9" }, "ongehinderd": { "form": "ongehinderd", "cornetto_id": "r_a-13477", "cornetto_synset_id": "n_a-521166", "wordnet_id": "", "pos": "JJ", "sense": "niet gehinderd", "polarity": "0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "ongehoord": { "form": "ongehoord", "cornetto_id": "r_a-13478", "cornetto_synset_id": "n_a-521051", "wordnet_id": "a-00128572", "pos": "JJ", "sense": "schandelijk", "polarity": "-0.3", "subjectivity": "0.9", "intensity": "1.5", "confidence": "0.7" }, "ongekend": { "form": "ongekend", "cornetto_id": "r_a-13483", "cornetto_synset_id": "n_a-521055", "wordnet_id": "a-00128572", "pos": "JJ", "sense": "uniek", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.3", "confidence": "1.0" }, "ongekroond": { "form": "ongekroond", "cornetto_id": "r_a-13484", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "niet gekroond", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "ongekunsteld": { "form": "ongekunsteld", "cornetto_id": "r_a-13486", "cornetto_synset_id": "n_a-533914", "wordnet_id": "a-00287498", "pos": "JJ", "sense": "natuurlijk", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "ongeldig": { "form": "ongeldig", "cornetto_id": "r_a-13487", "cornetto_synset_id": "n_a-521063", "wordnet_id": "a-02500497", "pos": "JJ", "sense": "niet geldig", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "ongelegen": { "form": "ongelegen", "cornetto_id": "r_a-13489", "cornetto_synset_id": "n_a-521065", "wordnet_id": "a-00714320", "pos": "JJ", "sense": "niet gelegen", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "ongelezen": { "form": "ongelezen", "cornetto_id": "r_a-13491", "cornetto_synset_id": "n_a-521066", "wordnet_id": "a-01309835", "pos": "JJ", "sense": "niet gelezen", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "ongelijk": { "form": "ongelijk", "cornetto_id": "r_a-14081", "cornetto_synset_id": "d_a-9446", "wordnet_id": "a-02240006", "pos": "JJ", "sense": "oneffen", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "ongelimiteerd": { "form": "ongelimiteerd", "cornetto_id": "r_a-13495", "cornetto_synset_id": "n_a-520673", "wordnet_id": "a-00595299", "pos": "JJ", "sense": "onbeperkt", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.1", "confidence": "0.7" }, "ongelofelijk": { "form": "ongelofelijk", "cornetto_id": "r_a-13496", "cornetto_synset_id": "n_a-535103", "wordnet_id": "a-00645493", "pos": "JJ", "sense": "niet te geloven", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.9", "confidence": "1.0" }, "ongelofeloos": { "form": "ongelofeloos", "cornetto_id": "d_a-415116", "cornetto_synset_id": "n_a-535103", "wordnet_id": "a-00645493", "pos": "JJ", "sense": "", "polarity": "0.9", "subjectivity": "0.9", "intensity": "1.4", "confidence": "0.7" }, "ongelooflijk": { "form": "ongelooflijk", "cornetto_id": "d_a-539755", "cornetto_synset_id": "c_681", "wordnet_id": "a-01385255", "pos": "JJ", "sense": "", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.7", "confidence": "0.7" }, "ongeloofwaardig": { "form": "ongeloofwaardig", "cornetto_id": "r_a-13498", "cornetto_synset_id": "n_a-521086", "wordnet_id": "a-00645493", "pos": "JJ", "sense": "niet geloofwaardig", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "ongelovig": { "form": "ongelovig", "cornetto_id": "r_a-14082", "cornetto_synset_id": "n_a-521215", "wordnet_id": "a-01305929", "pos": "JJ", "sense": "ongodsdienstig", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "ongelukkig": { "form": "ongelukkig", "cornetto_id": "r_a-13502", "cornetto_synset_id": "n_a-509936", "wordnet_id": "a-01019283", "pos": "JJ", "sense": "gehandicapt", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "ongemakkelijk": { "form": "ongemakkelijk", "cornetto_id": "r_a-14089", "cornetto_synset_id": "n_a-521143", "wordnet_id": "a-00605128", "pos": "JJ", "sense": "niet op je gemak", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "ongemerkt": { "form": "ongemerkt", "cornetto_id": "r_a-14176", "cornetto_synset_id": "n_a-521336", "wordnet_id": "a-01608264", "pos": "JJ", "sense": "onopvallend", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "0.9", "confidence": "1.0" }, "ongenadig": { "form": "ongenadig", "cornetto_id": "r_a-13509", "cornetto_synset_id": "n_a-518422", "wordnet_id": "a-01507402", "pos": "JJ", "sense": "genadeloos", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "ongeneeslijk": { "form": "ongeneeslijk", "cornetto_id": "r_a-13510", "cornetto_synset_id": "n_a-521115", "wordnet_id": "a-00349759", "pos": "JJ", "sense": "niet te genezen", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.1", "confidence": "1.0" }, "ongenuanceerd": { "form": "ongenuanceerd", "cornetto_id": "r_a-13513", "cornetto_synset_id": "n_a-521119", "wordnet_id": "a-00394331", "pos": "JJ", "sense": "niet genuanceerd", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "ongepast": { "form": "ongepast", "cornetto_id": "r_a-13517", "cornetto_synset_id": "n_a-521127", "wordnet_id": "a-00136081", "pos": "JJ", "sense": "onbetamelijk", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "ongepeld": { "form": "ongepeld", "cornetto_id": "r_a-13518", "cornetto_synset_id": "n_a-521130", "wordnet_id": "a-00372111", "pos": "JJ", "sense": "niet gepeld", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "ongeremd": { "form": "ongeremd", "cornetto_id": "r_a-14093", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "zonder matiging", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.3", "confidence": "0.7" }, "ongerept": { "form": "ongerept", "cornetto_id": "r_a-13522", "cornetto_synset_id": "n_a-520570", "wordnet_id": "a-00088899", "pos": "JJ", "sense": "puur en ongeschonden", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "ongerijmd": { "form": "ongerijmd", "cornetto_id": "r_a-13523", "cornetto_synset_id": "n_a-501466", "wordnet_id": "a-02074929", "pos": "JJ", "sense": "absurd", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "ongerust": { "form": "ongerust", "cornetto_id": "r_a-13524", "cornetto_synset_id": "n_a-504029", "wordnet_id": "a-00078851", "pos": "JJ", "sense": "bezorgd", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "ongeschikt": { "form": "ongeschikt", "cornetto_id": "r_a-13525", "cornetto_synset_id": "n_a-521149", "wordnet_id": "a-01017738", "pos": "JJ", "sense": "niet geschikt", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "ongesteld": { "form": "ongesteld", "cornetto_id": "r_a-13531", "cornetto_synset_id": "n_a-521162", "wordnet_id": "a-01293542", "pos": "JJ", "sense": "menstruerend", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "ongestoord": { "form": "ongestoord", "cornetto_id": "r_a-13533", "cornetto_synset_id": "n_a-521166", "wordnet_id": "", "pos": "JJ", "sense": "niet gestoord", "polarity": "0.4", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "ongevaarlijk": { "form": "ongevaarlijk", "cornetto_id": "r_a-13536", "cornetto_synset_id": "n_a-521177", "wordnet_id": "a-00066933", "pos": "JJ", "sense": "niet gevaarlijk", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "ongewapend": { "form": "ongewapend", "cornetto_id": "r_a-13540", "cornetto_synset_id": "n_a-521191", "wordnet_id": "a-00142917", "pos": "JJ", "sense": "niet gewapend", "polarity": "0.2", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "ongewassen": { "form": "ongewassen", "cornetto_id": "r_a-13541", "cornetto_synset_id": "n_a-521192", "wordnet_id": "a-00423874", "pos": "JJ", "sense": "niet gewassen", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "ongewoon": { "form": "ongewoon", "cornetto_id": "r_a-13546", "cornetto_synset_id": "n_a-521201", "wordnet_id": "a-00287275", "pos": "JJ", "sense": "niet gewoon", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.3", "confidence": "1.0" }, "ongezeglijk": { "form": "ongezeglijk", "cornetto_id": "r_a-13547", "cornetto_synset_id": "d_a-9448", "wordnet_id": "a-00696207", "pos": "JJ", "sense": "weerbarstig", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "ongezond": { "form": "ongezond", "cornetto_id": "r_a-13550", "cornetto_synset_id": "d_a-9453", "wordnet_id": "a-01172889", "pos": "JJ", "sense": "ziekelijk van lichaam of geest", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "ongezouten": { "form": "ongezouten", "cornetto_id": "r_a-13551", "cornetto_synset_id": "n_a-521211", "wordnet_id": "a-02400125", "pos": "JJ", "sense": "openhartig", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "ongeëvenaard": { "form": "ongeëvenaard", "cornetto_id": "r_a-13472", "cornetto_synset_id": "n_a-534455", "wordnet_id": "a-00229371", "pos": "JJ", "sense": "niet geëvenaard", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.5", "confidence": "0.7" }, "ongeïnspireerd": { "form": "ongeïnspireerd", "cornetto_id": "r_a-13481", "cornetto_synset_id": "n_a-521001", "wordnet_id": "a-00074346", "pos": "JJ", "sense": "niet geïnspireerd", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "ongrijpbaar": { "form": "ongrijpbaar", "cornetto_id": "r_a-13553", "cornetto_synset_id": "n_a-531905", "wordnet_id": "a-00120784", "pos": "JJ", "sense": "niet te grijpen", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "ongunstig": { "form": "ongunstig", "cornetto_id": "r_a-13555", "cornetto_synset_id": "n_a-521220", "wordnet_id": "a-00177963", "pos": "JJ", "sense": "nadelig", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "onguur": { "form": "onguur", "cornetto_id": "r_a-13556", "cornetto_synset_id": "n_a-511467", "wordnet_id": "a-00193799", "pos": "JJ", "sense": "onbetrouwbaar en griezelig", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "onhandig": { "form": "onhandig", "cornetto_id": "r_a-14103", "cornetto_synset_id": "n_a-521227", "wordnet_id": "a-00063277", "pos": "JJ", "sense": "moeilijk te hanteren", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "onhebbelijk": { "form": "onhebbelijk", "cornetto_id": "r_a-13560", "cornetto_synset_id": "n_a-521230", "wordnet_id": "a-00641944", "pos": "JJ", "sense": "onvriendelijk", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "onheilspellend": { "form": "onheilspellend", "cornetto_id": "r_a-13561", "cornetto_synset_id": "n_a-521232", "wordnet_id": "a-00176838", "pos": "JJ", "sense": "heel dreigend", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.6", "confidence": "0.7" }, "onherbergzaam": { "form": "onherbergzaam", "cornetto_id": "r_a-13562", "cornetto_synset_id": "n_a-521234", "wordnet_id": "a-01243102", "pos": "JJ", "sense": "woest en ontoegankelijk", "polarity": "-0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "onherkenbaar": { "form": "onherkenbaar", "cornetto_id": "r_a-13563", "cornetto_synset_id": "n_a-521235", "wordnet_id": "a-01273773", "pos": "JJ", "sense": "niet herkenbaar", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "onherroepelijk": { "form": "onherroepelijk", "cornetto_id": "r_a-13564", "cornetto_synset_id": "n_a-506530", "wordnet_id": "a-01618895", "pos": "JJ", "sense": "definitief", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "onheuglijk": { "form": "onheuglijk", "cornetto_id": "r_a-13566", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "heel erg lang geleden", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "onhoudbaar": { "form": "onhoudbaar", "cornetto_id": "r_a-13569", "cornetto_synset_id": "n_a-521570", "wordnet_id": "a-01722367", "pos": "JJ", "sense": "niet te verdedigen", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "onhygiënisch": { "form": "onhygiënisch", "cornetto_id": "r_a-13570", "cornetto_synset_id": "n_a-521248", "wordnet_id": "a-00420650", "pos": "JJ", "sense": "niet hygiënisch", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "oninteressant": { "form": "oninteressant", "cornetto_id": "r_a-13571", "cornetto_synset_id": "c_573", "wordnet_id": "a-02307729", "pos": "JJ", "sense": "niet interessant", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "onjuist": { "form": "onjuist", "cornetto_id": "r_a-13572", "cornetto_synset_id": "n_a-521254", "wordnet_id": "a-02461723", "pos": "JJ", "sense": "niet juist", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "onkerkelijk": { "form": "onkerkelijk", "cornetto_id": "r_a-13573", "cornetto_synset_id": "n_a-521256", "wordnet_id": "a-01784602", "pos": "JJ", "sense": "niet kerkelijk", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "onkuis": { "form": "onkuis", "cornetto_id": "r_a-13577", "cornetto_synset_id": "d_a-9471", "wordnet_id": "a-00361509", "pos": "JJ", "sense": "onzedig", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "onkwetsbaar": { "form": "onkwetsbaar", "cornetto_id": "r_a-13579", "cornetto_synset_id": "n_a-521266", "wordnet_id": "a-02525206", "pos": "JJ", "sense": "niet kwetsbaar", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.2", "confidence": "0.7" }, "onleefbaar": { "form": "onleefbaar", "cornetto_id": "r_a-13581", "cornetto_synset_id": "n_a-521268", "wordnet_id": "a-01423998", "pos": "JJ", "sense": "niet leefbaar", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "onleesbaar": { "form": "onleesbaar", "cornetto_id": "r_a-14107", "cornetto_synset_id": "n_a-521270", "wordnet_id": "a-01405523", "pos": "JJ", "sense": "erg slecht geschreven", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "onlogisch": { "form": "onlogisch", "cornetto_id": "r_a-13583", "cornetto_synset_id": "n_a-521272", "wordnet_id": "a-00465221", "pos": "JJ", "sense": "niet logisch", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "onlosmakelijk": { "form": "onlosmakelijk", "cornetto_id": "r_a-13585", "cornetto_synset_id": "n_a-521567", "wordnet_id": "a-00786173", "pos": "JJ", "sense": "onverbrekelijk", "polarity": "0.2", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "onmachtig": { "form": "onmachtig", "cornetto_id": "r_a-13586", "cornetto_synset_id": "n_a-513099", "wordnet_id": "a-01827535", "pos": "JJ", "sense": "machteloos", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "onmenselijk": { "form": "onmenselijk", "cornetto_id": "r_a-13588", "cornetto_synset_id": "d_a-9455", "wordnet_id": "a-01262611", "pos": "JJ", "sense": "barbaars", "polarity": "-0.9", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "onmetelijk": { "form": "onmetelijk", "cornetto_id": "r_a-13589", "cornetto_synset_id": "d_a-9258", "wordnet_id": "a-00943999", "pos": "JJ", "sense": "onbegrensd", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.7", "confidence": "0.7" }, "onmiddellijk": { "form": "onmiddellijk", "cornetto_id": "r_a-13591", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "waar niets tussen zit", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "1.0" }, "onmisbaar": { "form": "onmisbaar", "cornetto_id": "r_a-13592", "cornetto_synset_id": "n_a-520130", "wordnet_id": "a-00849108", "pos": "JJ", "sense": "onontbeerlijk", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "onmiskenbaar": { "form": "onmiskenbaar", "cornetto_id": "r_a-13593", "cornetto_synset_id": "n_a-522312", "wordnet_id": "a-01287808", "pos": "JJ", "sense": "apert", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.6", "confidence": "1.0" }, "onmogelijk": { "form": "onmogelijk", "cornetto_id": "r_a-14108", "cornetto_synset_id": "n_a-503484", "wordnet_id": "a-00221627", "pos": "JJ", "sense": "belachelijk", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.3", "confidence": "1.0" }, "onmondig": { "form": "onmondig", "cornetto_id": "r_a-13596", "cornetto_synset_id": "n_a-518931", "wordnet_id": "a-00727481", "pos": "JJ", "sense": "niet mondig", "polarity": "0.0", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "onnadrukkelijk": { "form": "onnadrukkelijk", "cornetto_id": "r_a-13598", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "onopvallend", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "onnaspeurbaar": { "form": "onnaspeurbaar", "cornetto_id": "d_a-194728", "cornetto_synset_id": "n_a-520635", "wordnet_id": "a-00939105", "pos": "JJ", "sense": "", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "onnaspeurlijk": { "form": "onnaspeurlijk", "cornetto_id": "d_a-194729", "cornetto_synset_id": "n_a-520635", "wordnet_id": "a-00939105", "pos": "JJ", "sense": "", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "onnatuurlijk": { "form": "onnatuurlijk", "cornetto_id": "r_a-14109", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "gekunsteld", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "onnavolgbaar": { "form": "onnavolgbaar", "cornetto_id": "r_a-13601", "cornetto_synset_id": "n_a-534455", "wordnet_id": "a-00229371", "pos": "JJ", "sense": "niet na te doen", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.3", "confidence": "1.0" }, "onneembaar": { "form": "onneembaar", "cornetto_id": "r_a-13603", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "niet te veroveren", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "onnodig": { "form": "onnodig", "cornetto_id": "r_a-13604", "cornetto_synset_id": "n_a-521309", "wordnet_id": "a-01581115", "pos": "JJ", "sense": "niet nodig", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "onnozel": { "form": "onnozel", "cornetto_id": "r_a-13607", "cornetto_synset_id": "n_a-520661", "wordnet_id": "a-01279978", "pos": "JJ", "sense": "onbelangrijk", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "onofficieel": { "form": "onofficieel", "cornetto_id": "r_a-13609", "cornetto_synset_id": "n_a-520405", "wordnet_id": "a-01044240", "pos": "JJ", "sense": "niet officieel", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "onomstotelijk": { "form": "onomstotelijk", "cornetto_id": "r_a-13611", "cornetto_synset_id": "n_a-521692", "wordnet_id": "a-00591406", "pos": "JJ", "sense": "onweerlegbaar", "polarity": "0.1", "subjectivity": "0.8", "intensity": "1.3", "confidence": "0.7" }, "onomstreden": { "form": "onomstreden", "cornetto_id": "r_a-13612", "cornetto_synset_id": "n_a-521322", "wordnet_id": "a-00602721", "pos": "JJ", "sense": "onbetwist", "polarity": "0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "onomwonden": { "form": "onomwonden", "cornetto_id": "r_a-13613", "cornetto_synset_id": "c_761", "wordnet_id": "a-00761734", "pos": "JJ", "sense": "onverbloemd", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "ononderbroken": { "form": "ononderbroken", "cornetto_id": "r_a-13614", "cornetto_synset_id": "n_a-520586", "wordnet_id": "a-00291338", "pos": "JJ", "sense": "niet onderbroken", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "onontbeerlijk": { "form": "onontbeerlijk", "cornetto_id": "r_a-13615", "cornetto_synset_id": "n_a-520130", "wordnet_id": "a-00849108", "pos": "JJ", "sense": "onmisbaar", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "onontkoombaar": { "form": "onontkoombaar", "cornetto_id": "r_a-13616", "cornetto_synset_id": "n_a-521606", "wordnet_id": "a-00343360", "pos": "JJ", "sense": "onvermijdelijk", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.1", "confidence": "1.0" }, "onooglijk": { "form": "onooglijk", "cornetto_id": "r_a-14112", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "onbeduidend", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "onopgehelderd": { "form": "onopgehelderd", "cornetto_id": "r_a-13621", "cornetto_synset_id": "n_a-521334", "wordnet_id": "a-01507008", "pos": "JJ", "sense": "niet opgehelderd", "polarity": "-0.1", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onopgelost": { "form": "onopgelost", "cornetto_id": "r_a-13622", "cornetto_synset_id": "n_a-521334", "wordnet_id": "a-01507008", "pos": "JJ", "sense": "niet opgelost", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "onopgevoed": { "form": "onopgevoed", "cornetto_id": "r_a-13625", "cornetto_synset_id": "n_a-520693", "wordnet_id": "a-00074741", "pos": "JJ", "sense": "slecht opgevoed", "polarity": "-0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onophoudelijk": { "form": "onophoudelijk", "cornetto_id": "r_a-13626", "cornetto_synset_id": "n_a-533706", "wordnet_id": "", "pos": "JJ", "sense": "aanhoudend", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "onoplosbaar": { "form": "onoplosbaar", "cornetto_id": "r_a-13627", "cornetto_synset_id": "n_a-521341", "wordnet_id": "a-01230728", "pos": "JJ", "sense": "niet oplosbaar", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "onopvallend": { "form": "onopvallend", "cornetto_id": "r_a-13628", "cornetto_synset_id": "n_a-521345", "wordnet_id": "a-00702444", "pos": "JJ", "sense": "niet opvallend", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "onoverbrugbaar": { "form": "onoverbrugbaar", "cornetto_id": "r_a-13631", "cornetto_synset_id": "n_a-521350", "wordnet_id": "a-00278418", "pos": "JJ", "sense": "niet te overbruggen", "polarity": "-0.6", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "onoverkomelijk": { "form": "onoverkomelijk", "cornetto_id": "r_a-13634", "cornetto_synset_id": "n_a-521355", "wordnet_id": "a-00570225", "pos": "JJ", "sense": "niet te overkomen", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.3", "confidence": "0.7" }, "onovertroffen": { "form": "onovertroffen", "cornetto_id": "r_a-13635", "cornetto_synset_id": "n_a-534455", "wordnet_id": "a-00229371", "pos": "JJ", "sense": "uitmuntend", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "onoverwinnelijk": { "form": "onoverwinnelijk", "cornetto_id": "r_a-13636", "cornetto_synset_id": "n_a-521360", "wordnet_id": "a-00569568", "pos": "JJ", "sense": "niet overwinnelijk", "polarity": "0.7", "subjectivity": "1.0", "intensity": "0.9", "confidence": "0.7" }, "onoverzichtelijk": { "form": "onoverzichtelijk", "cornetto_id": "r_a-13637", "cornetto_synset_id": "n_a-521362", "wordnet_id": "a-02176178", "pos": "JJ", "sense": "niet overzichtelijk", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "onpeilbaar": { "form": "onpeilbaar", "cornetto_id": "d_a-194933", "cornetto_synset_id": "n_a-520635", "wordnet_id": "a-00939105", "pos": "JJ", "sense": "", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "onpersoonlijk": { "form": "onpersoonlijk", "cornetto_id": "r_a-13641", "cornetto_synset_id": "n_a-529332", "wordnet_id": "a-01633153", "pos": "JJ", "sense": "zonder eigen karakter", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onplezierig": { "form": "onplezierig", "cornetto_id": "r_a-13642", "cornetto_synset_id": "d_a-9431", "wordnet_id": "a-00193480", "pos": "JJ", "sense": "onaangenaam", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "onprettig": { "form": "onprettig", "cornetto_id": "r_a-13644", "cornetto_synset_id": "d_a-9431", "wordnet_id": "a-00193480", "pos": "JJ", "sense": "niet prettig", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "onproductief": { "form": "onproductief", "cornetto_id": "r_a-13645", "cornetto_synset_id": "n_a-521386", "wordnet_id": "a-01866535", "pos": "JJ", "sense": "niet productief", "polarity": "-0.3", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "onrealistisch": { "form": "onrealistisch", "cornetto_id": "r_a-13646", "cornetto_synset_id": "n_a-521709", "wordnet_id": "a-00626136", "pos": "JJ", "sense": "niet realistisch", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.1", "confidence": "1.0" }, "onrechtvaardig": { "form": "onrechtvaardig", "cornetto_id": "r_a-13649", "cornetto_synset_id": "n_a-521380", "wordnet_id": "a-00958712", "pos": "JJ", "sense": "niet rechtvaardig", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "onredelijk": { "form": "onredelijk", "cornetto_id": "r_a-13650", "cornetto_synset_id": "n_a-521381", "wordnet_id": "a-00958712", "pos": "JJ", "sense": "onbillijk", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "onrendabel": { "form": "onrendabel", "cornetto_id": "r_a-13653", "cornetto_synset_id": "n_a-521386", "wordnet_id": "a-01866535", "pos": "JJ", "sense": "niet rendabel", "polarity": "-0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onrijp": { "form": "onrijp", "cornetto_id": "r_a-13654", "cornetto_synset_id": "n_a-521387", "wordnet_id": "a-01489722", "pos": "JJ", "sense": "niet rijp", "polarity": "-0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "onrustbarend": { "form": "onrustbarend", "cornetto_id": "r_a-13656", "cornetto_synset_id": "n_a-535949", "wordnet_id": "a-00193015", "pos": "JJ", "sense": "onrust wekkend", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.2", "confidence": "0.7" }, "onrustig": { "form": "onrustig", "cornetto_id": "r_a-14121", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "steeds in beweging", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "onsamenhangend": { "form": "onsamenhangend", "cornetto_id": "r_a-13658", "cornetto_synset_id": "n_a-521393", "wordnet_id": "a-00436115", "pos": "JJ", "sense": "niet samenhangend", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "onschadelijk": { "form": "onschadelijk", "cornetto_id": "r_a-13659", "cornetto_synset_id": "n_a-521394", "wordnet_id": "a-01159655", "pos": "JJ", "sense": "niet schadelijk", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "onschatbaar": { "form": "onschatbaar", "cornetto_id": "r_a-13660", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "niet te schatten", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.4", "confidence": "1.0" }, "onscherp": { "form": "onscherp", "cornetto_id": "r_a-13663", "cornetto_synset_id": "d_a-9560", "wordnet_id": "a-00782957", "pos": "JJ", "sense": "vaag", "polarity": "-0.2", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "onschuldig": { "form": "onschuldig", "cornetto_id": "r_a-14123", "cornetto_synset_id": "n_a-506738", "wordnet_id": "a-00247013", "pos": "JJ", "sense": "argeloos", "polarity": "0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "onsmakelijk": { "form": "onsmakelijk", "cornetto_id": "r_a-14124", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "walgelijk", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "onsportief": { "form": "onsportief", "cornetto_id": "r_a-14125", "cornetto_synset_id": "n_a-529331", "wordnet_id": "a-00063277", "pos": "JJ", "sense": "niet sportief", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "onsterfelijk": { "form": "onsterfelijk", "cornetto_id": "r_a-14127", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "heel erg beroemd", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.6", "confidence": "0.7" }, "onstuimig": { "form": "onstuimig", "cornetto_id": "r_a-13670", "cornetto_synset_id": "n_a-521412", "wordnet_id": "a-01725712", "pos": "JJ", "sense": "moeilijk te bedwingen", "polarity": "0.3", "subjectivity": "0.7", "intensity": "1.3", "confidence": "0.7" }, "onstuitbaar": { "form": "onstuitbaar", "cornetto_id": "r_a-13671", "cornetto_synset_id": "n_a-520642", "wordnet_id": "a-00570099", "pos": "JJ", "sense": "niet te stuiten", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.2", "confidence": "0.7" }, "onsympathiek": { "form": "onsympathiek", "cornetto_id": "r_a-13672", "cornetto_synset_id": "c_340", "wordnet_id": "a-00640283", "pos": "JJ", "sense": "niet sympathiek", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "ontelbaar": { "form": "ontelbaar", "cornetto_id": "r_a-13678", "cornetto_synset_id": "n_a-530266", "wordnet_id": "a-00301777", "pos": "JJ", "sense": "niet te tellen", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "ontembaar": { "form": "ontembaar", "cornetto_id": "r_a-13679", "cornetto_synset_id": "n_a-520642", "wordnet_id": "a-00570099", "pos": "JJ", "sense": "onbedwingbaar", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "onterecht": { "form": "onterecht", "cornetto_id": "r_a-13680", "cornetto_synset_id": "n_a-521254", "wordnet_id": "a-02461723", "pos": "JJ", "sense": "niet terecht", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "ontevreden": { "form": "ontevreden", "cornetto_id": "r_a-13681", "cornetto_synset_id": "d_a-9459", "wordnet_id": "a-00589624", "pos": "JJ", "sense": "misnoegd", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "ontgoocheld": { "form": "ontgoocheld", "cornetto_id": "r_a-13682", "cornetto_synset_id": "n_a-521435", "wordnet_id": "a-00866392", "pos": "JJ", "sense": "teleurgesteld", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "0.9", "confidence": "0.7" }, "onthand": { "form": "onthand", "cornetto_id": "r_a-13683", "cornetto_synset_id": "d_a-9423", "wordnet_id": "", "pos": "JJ", "sense": "ontriefd", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onthutst": { "form": "onthutst", "cornetto_id": "r_a-13685", "cornetto_synset_id": "n_a-521440", "wordnet_id": "a-00073048", "pos": "JJ", "sense": "ontsteld", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "ontluisterend": { "form": "ontluisterend", "cornetto_id": "r_a-13687", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "dramatisch slecht of schokkend", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "ontoegankelijk": { "form": "ontoegankelijk", "cornetto_id": "r_a-13688", "cornetto_synset_id": "d_a-9460", "wordnet_id": "a-01773665", "pos": "JJ", "sense": "niet toegankelijk", "polarity": "-0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "ontoerekeningsvatbaar": { "form": "ontoerekeningsvatbaar", "cornetto_id": "r_a-13691", "cornetto_synset_id": "n_a-521470", "wordnet_id": "a-01997910", "pos": "JJ", "sense": "niet toerekeningsvatbaar", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "ontploffen": { "form": "ontploffen", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "-0.3", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "ontroerend": { "form": "ontroerend", "cornetto_id": "r_a-13695", "cornetto_synset_id": "n_a-521480", "wordnet_id": "a-01365544", "pos": "JJ", "sense": "wat ontroert", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "ontspannen": { "form": "ontspannen", "cornetto_id": "r_a-13698", "cornetto_synset_id": "d_a-9464", "wordnet_id": "a-00971660", "pos": "JJ", "sense": "relaxed", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "ontspannend": { "form": "ontspannend", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "0.9", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "ontvlambaar": { "form": "ontvlambaar", "cornetto_id": "r_a-13705", "cornetto_synset_id": "n_a-521512", "wordnet_id": "a-00473243", "pos": "JJ", "sense": "gauw vlam vattend", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "ontzaglijk": { "form": "ontzaglijk", "cornetto_id": "r_a-13710", "cornetto_synset_id": "n_a-508356", "wordnet_id": "a-01387319", "pos": "JJ", "sense": "geweldig", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.7", "confidence": "0.7" }, "ontzagwekkend": { "form": "ontzagwekkend", "cornetto_id": "r_a-13711", "cornetto_synset_id": "n_a-513568", "wordnet_id": "a-00624026", "pos": "JJ", "sense": "ontzag inboezemend", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.6", "confidence": "0.7" }, "ontzet": { "form": "ontzet", "cornetto_id": "r_a-13712", "cornetto_synset_id": "n_a-521440", "wordnet_id": "a-00073048", "pos": "JJ", "sense": "ontsteld", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "ontzettend": { "form": "ontzettend", "cornetto_id": "r_a-13714", "cornetto_synset_id": "c_267", "wordnet_id": "a-01385255", "pos": "JJ", "sense": "ontzaglijk", "polarity": "0.2", "subjectivity": "1.0", "intensity": "1.9", "confidence": "1.0" }, "ontzettende": { "form": "ontzettende", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "1.6", "confidence": "1.0" }, "ontzield": { "form": "ontzield", "cornetto_id": "r_a-13715", "cornetto_synset_id": "d_a-9236", "wordnet_id": "a-00095280", "pos": "JJ", "sense": "dood", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "onuitputtelijk": { "form": "onuitputtelijk", "cornetto_id": "r_a-13717", "cornetto_synset_id": "n_a-520673", "wordnet_id": "a-00595299", "pos": "JJ", "sense": "niet uit te putten", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "onuitroeibaar": { "form": "onuitroeibaar", "cornetto_id": "r_a-13718", "cornetto_synset_id": "n_a-512051", "wordnet_id": "a-00898289", "pos": "JJ", "sense": "niet uit te roeien", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.2", "confidence": "0.7" }, "onuitsprekelijk": { "form": "onuitsprekelijk", "cornetto_id": "r_a-13719", "cornetto_synset_id": "d_a-9258", "wordnet_id": "a-00943999", "pos": "JJ", "sense": "enorm", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "2.0", "confidence": "0.7" }, "onuitstaanbaar": { "form": "onuitstaanbaar", "cornetto_id": "r_a-13720", "cornetto_synset_id": "n_a-521551", "wordnet_id": "a-00421590", "pos": "JJ", "sense": "onverdraaglijk", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "onuitvoerbaar": { "form": "onuitvoerbaar", "cornetto_id": "r_a-13721", "cornetto_synset_id": "d_a-9456", "wordnet_id": "a-00955405", "pos": "JJ", "sense": "niet uitvoerbaar", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.3", "confidence": "0.9" }, "onuitwisbaar": { "form": "onuitwisbaar", "cornetto_id": "r_a-13722", "cornetto_synset_id": "n_a-521552", "wordnet_id": "a-00898289", "pos": "JJ", "sense": "niet uit te wissen", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "onveilig": { "form": "onveilig", "cornetto_id": "r_a-13723", "cornetto_synset_id": "n_a-510726", "wordnet_id": "a-02058794", "pos": "JJ", "sense": "niet veilig", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "onverantwoord": { "form": "onverantwoord", "cornetto_id": "r_a-14137", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "zonder rekenschap", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "onverantwoordelijk": { "form": "onverantwoordelijk", "cornetto_id": "r_a-13727", "cornetto_synset_id": "n_a-525999", "wordnet_id": "a-00250483", "pos": "JJ", "sense": "niet verantwoordelijk", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "onverbloemd": { "form": "onverbloemd", "cornetto_id": "r_a-13730", "cornetto_synset_id": "n_a-521323", "wordnet_id": "a-00765666", "pos": "JJ", "sense": "onverholen", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "onverbrekelijk": { "form": "onverbrekelijk", "cornetto_id": "r_a-13731", "cornetto_synset_id": "n_a-521567", "wordnet_id": "a-00786173", "pos": "JJ", "sense": "niet te verbreken", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "onverdacht": { "form": "onverdacht", "cornetto_id": "r_a-13732", "cornetto_synset_id": "n_a-521569", "wordnet_id": "a-00418364", "pos": "JJ", "sense": "waarop geen verdenking rust", "polarity": "0.1", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "onverdeeld": { "form": "onverdeeld", "cornetto_id": "r_a-14139", "cornetto_synset_id": "n_a-533538", "wordnet_id": "a-00520214", "pos": "JJ", "sense": "niet gedeeld", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.7", "confidence": "0.7" }, "onverdroten": { "form": "onverdroten", "cornetto_id": "r_a-13738", "cornetto_synset_id": "n_a-533496", "wordnet_id": "a-00250119", "pos": "JJ", "sense": "ijverig en volhardend", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.3", "confidence": "0.7" }, "onverenigbaar": { "form": "onverenigbaar", "cornetto_id": "r_a-13739", "cornetto_synset_id": "n_a-521579", "wordnet_id": "a-01625063", "pos": "JJ", "sense": "niet verenigbaar", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "onvergankelijk": { "form": "onvergankelijk", "cornetto_id": "r_a-13740", "cornetto_synset_id": "n_a-521580", "wordnet_id": "a-00622935", "pos": "JJ", "sense": "niet vergankelijk", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "onvergeeflijk": { "form": "onvergeeflijk", "cornetto_id": "r_a-13741", "cornetto_synset_id": "n_a-521582", "wordnet_id": "a-01721530", "pos": "JJ", "sense": "heel kwalijk", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "onvergetelijk": { "form": "onvergetelijk", "cornetto_id": "r_a-13744", "cornetto_synset_id": "n_a-521585", "wordnet_id": "a-01040410", "pos": "JJ", "sense": "wat je niet zal vergeten", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "onverhard": { "form": "onverhard", "cornetto_id": "r_a-13745", "cornetto_synset_id": "n_a-521588", "wordnet_id": "a-01739987", "pos": "JJ", "sense": "niet verhard", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "onverhoeds": { "form": "onverhoeds", "cornetto_id": "r_a-13746", "cornetto_synset_id": "n_a-521635", "wordnet_id": "", "pos": "JJ", "sense": "onverwachts", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "onverklaarbaar": { "form": "onverklaarbaar", "cornetto_id": "r_a-13750", "cornetto_synset_id": "n_a-520637", "wordnet_id": "a-00939105", "pos": "JJ", "sense": "niet verklaarbaar", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.1", "confidence": "1.0" }, "onverkwikkelijk": { "form": "onverkwikkelijk", "cornetto_id": "r_a-13752", "cornetto_synset_id": "n_a-521601", "wordnet_id": "a-01716491", "pos": "JJ", "sense": "naar", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "onvermijdelijk": { "form": "onvermijdelijk", "cornetto_id": "r_a-13756", "cornetto_synset_id": "n_a-521606", "wordnet_id": "a-00343360", "pos": "JJ", "sense": "niet te vermijden", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.1", "confidence": "1.0" }, "onverstaanbaar": { "form": "onverstaanbaar", "cornetto_id": "r_a-13765", "cornetto_synset_id": "n_a-521621", "wordnet_id": "a-00151105", "pos": "JJ", "sense": "niet verstaanbaar", "polarity": "-0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "onverstandig": { "form": "onverstandig", "cornetto_id": "r_a-13766", "cornetto_synset_id": "n_a-521622", "wordnet_id": "a-01814252", "pos": "JJ", "sense": "niet verstandig", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "onvertogen": { "form": "onvertogen", "cornetto_id": "r_a-13770", "cornetto_synset_id": "n_a-521628", "wordnet_id": "a-01880918", "pos": "JJ", "sense": "ongepast", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "onverwacht": { "form": "onverwacht", "cornetto_id": "r_a-13775", "cornetto_synset_id": "n_a-521635", "wordnet_id": "", "pos": "JJ", "sense": "plotseling", "polarity": "0.1", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "onverwachts": { "form": "onverwachts", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "onverzettelijk": { "form": "onverzettelijk", "cornetto_id": "r_a-13782", "cornetto_synset_id": "n_a-515826", "wordnet_id": "a-00583581", "pos": "JJ", "sense": "onbuigzaam", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "onvoldoende": { "form": "onvoldoende", "cornetto_id": "r_a-13786", "cornetto_synset_id": "n_a-521653", "wordnet_id": "a-02297409", "pos": "JJ", "sense": "niet voldoende", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "onvolledig": { "form": "onvolledig", "cornetto_id": "r_a-13787", "cornetto_synset_id": "n_a-521658", "wordnet_id": "a-01752553", "pos": "JJ", "sense": "niet volledig", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.3", "confidence": "0.7" }, "onvolmaakt": { "form": "onvolmaakt", "cornetto_id": "r_a-13788", "cornetto_synset_id": "n_a-521660", "wordnet_id": "a-01752553", "pos": "JJ", "sense": "niet volmaakt", "polarity": "-0.4", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "onvolprezen": { "form": "onvolprezen", "cornetto_id": "r_a-13789", "cornetto_synset_id": "n_a-534455", "wordnet_id": "a-00229371", "pos": "JJ", "sense": "niet genoeg te prijzen", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onvolwassen": { "form": "onvolwassen", "cornetto_id": "r_a-13792", "cornetto_synset_id": "n_a-521665", "wordnet_id": "a-00936998", "pos": "JJ", "sense": "niet volwassen", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onvoorspelbaar": { "form": "onvoorspelbaar", "cornetto_id": "r_a-13795", "cornetto_synset_id": "n_a-521669", "wordnet_id": "a-01387319", "pos": "JJ", "sense": "niet te voorspellen", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "onvoorstelbaar": { "form": "onvoorstelbaar", "cornetto_id": "r_a-13796", "cornetto_synset_id": "n_a-521670", "wordnet_id": "a-02418538", "pos": "JJ", "sense": "niet voor te stellen", "polarity": "0.1", "subjectivity": "0.8", "intensity": "1.9", "confidence": "1.0" }, "onvoorwaardelijk": { "form": "onvoorwaardelijk", "cornetto_id": "r_a-13797", "cornetto_synset_id": "n_a-521672", "wordnet_id": "a-00685924", "pos": "JJ", "sense": "niet voorwaardelijk", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.3", "confidence": "1.0" }, "onvoorzichtig": { "form": "onvoorzichtig", "cornetto_id": "r_a-13798", "cornetto_synset_id": "d_a-9466", "wordnet_id": "a-00163480", "pos": "JJ", "sense": "niet voorzichtig", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onvoorzien": { "form": "onvoorzien", "cornetto_id": "r_a-13799", "cornetto_synset_id": "n_a-521635", "wordnet_id": "", "pos": "JJ", "sense": "niet voorzien", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.2", "confidence": "0.7" }, "onvriendelijk": { "form": "onvriendelijk", "cornetto_id": "r_a-13800", "cornetto_synset_id": "n_a-521675", "wordnet_id": "a-00640283", "pos": "JJ", "sense": "niet vriendelijk", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onvrijwillig": { "form": "onvrijwillig", "cornetto_id": "r_a-13802", "cornetto_synset_id": "n_a-509863", "wordnet_id": "a-00073048", "pos": "JJ", "sense": "gedwongen", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "onwaarschijnlijk": { "form": "onwaarschijnlijk", "cornetto_id": "r_a-14143", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "onaannemelijk", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.3", "confidence": "1.0" }, "onwankelbaar": { "form": "onwankelbaar", "cornetto_id": "r_a-13808", "cornetto_synset_id": "n_a-521690", "wordnet_id": "a-00335895", "pos": "JJ", "sense": "onwrikbaar", "polarity": "0.0", "subjectivity": "0.1", "intensity": "0.9", "confidence": "0.7" }, "onweerlegbaar": { "form": "onweerlegbaar", "cornetto_id": "r_a-13810", "cornetto_synset_id": "n_a-521692", "wordnet_id": "a-00591406", "pos": "JJ", "sense": "niet te weerleggen", "polarity": "0.2", "subjectivity": "0.7", "intensity": "1.3", "confidence": "0.7" }, "onweerstaanbaar": { "form": "onweerstaanbaar", "cornetto_id": "r_a-13811", "cornetto_synset_id": "n_a-521695", "wordnet_id": "a-00166753", "pos": "JJ", "sense": "niet te weerstaan", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.6", "confidence": "1.0" }, "onwelkom": { "form": "onwelkom", "cornetto_id": "r_a-13814", "cornetto_synset_id": "n_a-521699", "wordnet_id": "a-02527734", "pos": "JJ", "sense": "niet welkom", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onwennig": { "form": "onwennig", "cornetto_id": "r_a-13816", "cornetto_synset_id": "n_a-521706", "wordnet_id": "a-00480439", "pos": "JJ", "sense": "nog niet gewend", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "onwenselijk": { "form": "onwenselijk", "cornetto_id": "r_a-13817", "cornetto_synset_id": "n_a-521193", "wordnet_id": "a-01142666", "pos": "JJ", "sense": "ongewenst", "polarity": "-0.3", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "onwerkbaar": { "form": "onwerkbaar", "cornetto_id": "r_a-13818", "cornetto_synset_id": "n_a-521708", "wordnet_id": "a-01823574", "pos": "JJ", "sense": "niet werkbaar", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "onwerkelijk": { "form": "onwerkelijk", "cornetto_id": "r_a-13819", "cornetto_synset_id": "n_a-521709", "wordnet_id": "a-00626136", "pos": "JJ", "sense": "werkelijkheid missend", "polarity": "-0.1", "subjectivity": "0.7", "intensity": "1.3", "confidence": "1.0" }, "onwetend": { "form": "onwetend", "cornetto_id": "r_a-14146", "cornetto_synset_id": "n_a-521347", "wordnet_id": "", "pos": "JJ", "sense": "niet op de hoogte", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "onwezenlijk": { "form": "onwezenlijk", "cornetto_id": "r_a-13824", "cornetto_synset_id": "n_a-521709", "wordnet_id": "a-00626136", "pos": "JJ", "sense": "onwerkelijk", "polarity": "-0.1", "subjectivity": "0.7", "intensity": "1.3", "confidence": "0.9" }, "onwijs": { "form": "onwijs", "cornetto_id": "r_a-17352", "cornetto_synset_id": "n_a-510820", "wordnet_id": "a-01576071", "pos": "JJ", "sense": "te gek", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.4", "confidence": "1.0" }, "onwillekeurig": { "form": "onwillekeurig", "cornetto_id": "r_a-13826", "cornetto_synset_id": "n_a-521720", "wordnet_id": "a-00573093", "pos": "JJ", "sense": "niet opzettelijk", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "onwrikbaar": { "form": "onwrikbaar", "cornetto_id": "r_a-13828", "cornetto_synset_id": "n_a-521690", "wordnet_id": "a-00335895", "pos": "JJ", "sense": "onwankelbaar", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "onzacht": { "form": "onzacht", "cornetto_id": "r_a-13829", "cornetto_synset_id": "d_a-9325", "wordnet_id": "a-01150915", "pos": "JJ", "sense": "hard", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "onzalig": { "form": "onzalig", "cornetto_id": "r_a-13830", "cornetto_synset_id": "n_a-525026", "wordnet_id": "a-01050088", "pos": "JJ", "sense": "erg ellendig", "polarity": "-0.6", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "onzedelijk": { "form": "onzedelijk", "cornetto_id": "r_a-13831", "cornetto_synset_id": "d_a-9342", "wordnet_id": "", "pos": "JJ", "sense": "niet netjes", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "onzeker": { "form": "onzeker", "cornetto_id": "r_a-13835", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "onvast", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "onzichtbaar": { "form": "onzichtbaar", "cornetto_id": "r_a-13837", "cornetto_synset_id": "d_a-9473", "wordnet_id": "a-01748318", "pos": "JJ", "sense": "niet zichtbaar", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "onzindelijk": { "form": "onzindelijk", "cornetto_id": "r_a-13839", "cornetto_synset_id": "n_a-521248", "wordnet_id": "a-00420650", "pos": "JJ", "sense": "vies", "polarity": "-0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "onzinnig": { "form": "onzinnig", "cornetto_id": "r_a-13840", "cornetto_synset_id": "n_a-521742", "wordnet_id": "a-01001180", "pos": "JJ", "sense": "dwaas", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "onzuiver": { "form": "onzuiver", "cornetto_id": "r_a-14149", "cornetto_synset_id": "n_a-509314", "wordnet_id": "a-00632949", "pos": "JJ", "sense": "niet helemaal goed", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "oordeelkundig": { "form": "oordeelkundig", "cornetto_id": "r_a-13844", "cornetto_synset_id": "d_a-9223", "wordnet_id": "a-00936427", "pos": "JJ", "sense": "verstandig", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "oorlogszuchtig": { "form": "oorlogszuchtig", "cornetto_id": "r_a-13845", "cornetto_synset_id": "n_a-521818", "wordnet_id": "a-00082766", "pos": "JJ", "sense": "verlangend naar oorlog", "polarity": "-0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "oorlogvoerend": { "form": "oorlogvoerend", "cornetto_id": "r_a-13846", "cornetto_synset_id": "n_a-521819", "wordnet_id": "a-01742537", "pos": "JJ", "sense": "in oorlog", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "oorspronkelijk": { "form": "oorspronkelijk", "cornetto_id": "r_a-14152", "cornetto_synset_id": "n_a-522170", "wordnet_id": "a-01687167", "pos": "JJ", "sense": "origineel", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "oorverdovend": { "form": "oorverdovend", "cornetto_id": "r_a-13848", "cornetto_synset_id": "n_a-521829", "wordnet_id": "a-01453467", "pos": "JJ", "sense": "ontzettend hard", "polarity": "0.0", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "oorzakelijk": { "form": "oorzakelijk", "cornetto_id": "r_a-13849", "cornetto_synset_id": "n_a-521831", "wordnet_id": "a-00322457", "pos": "JJ", "sense": "de oorzaak betreffend", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "oosters": { "form": "oosters", "cornetto_id": "r_a-13851", "cornetto_synset_id": "n_a-521835", "wordnet_id": "a-00823350", "pos": "JJ", "sense": "uit een land ten oosten van Europa", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "opbouwend": { "form": "opbouwend", "cornetto_id": "r_a-13856", "cornetto_synset_id": "n_a-521861", "wordnet_id": "a-01817500", "pos": "JJ", "sense": "constructief", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "opdringerig": { "form": "opdringerig", "cornetto_id": "r_a-13857", "cornetto_synset_id": "n_a-521869", "wordnet_id": "a-00104318", "pos": "JJ", "sense": "zich aan anderen opdringend", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "open": { "form": "open", "cornetto_id": "r_a-13861", "cornetto_synset_id": "c_184", "wordnet_id": "a-01310273", "pos": "JJ", "sense": "openhartig", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "openbaar": { "form": "openbaar", "cornetto_id": "r_a-13863", "cornetto_synset_id": "n_a-521886", "wordnet_id": "a-01861205", "pos": "JJ", "sense": "algemeen bekend", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "1.0" }, "openhartig": { "form": "openhartig", "cornetto_id": "r_a-13864", "cornetto_synset_id": "c_184", "wordnet_id": "a-01310273", "pos": "JJ", "sense": "rondborstig", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "openlijk": { "form": "openlijk", "cornetto_id": "r_a-13865", "cornetto_synset_id": "n_a-521901", "wordnet_id": "", "pos": "JJ", "sense": "niet verborgen", "polarity": "0.4", "subjectivity": "0.4", "intensity": "1.1", "confidence": "1.0" }, "opgeklopt": { "form": "opgeklopt", "cornetto_id": "r_a-13872", "cornetto_synset_id": "n_a-521930", "wordnet_id": "a-00881030", "pos": "JJ", "sense": "zwaar overdreven", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "opgelaten": { "form": "opgelaten", "cornetto_id": "r_a-13873", "cornetto_synset_id": "n_a-521933", "wordnet_id": "a-00480439", "pos": "JJ", "sense": "zich ongemakkelijk voelend", "polarity": "-0.1", "subjectivity": "0.7", "intensity": "1.3", "confidence": "0.7" }, "opgelucht": { "form": "opgelucht", "cornetto_id": "r_a-13874", "cornetto_synset_id": "n_a-521937", "wordnet_id": "a-01519465", "pos": "JJ", "sense": "verlicht", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "opgezet": { "form": "opgezet", "cornetto_id": "r_a-14156", "cornetto_synset_id": "n_a-521951", "wordnet_id": "a-01891773", "pos": "JJ", "sense": "gezegd van opgevulde dieren", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "oplosbaar": { "form": "oplosbaar", "cornetto_id": "r_a-13893", "cornetto_synset_id": "n_a-521977", "wordnet_id": "a-02265386", "pos": "JJ", "sense": "op te lossen", "polarity": "0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "opmerkelijk": { "form": "opmerkelijk", "cornetto_id": "r_a-13894", "cornetto_synset_id": "n_a-522067", "wordnet_id": "a-00579498", "pos": "JJ", "sense": "opvallend", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.6", "confidence": "1.0" }, "oppervlakkig": { "form": "oppervlakkig", "cornetto_id": "r_a-13900", "cornetto_synset_id": "n_a-522012", "wordnet_id": "a-00312234", "pos": "JJ", "sense": "niet diepgaand", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "opportunistisch": { "form": "opportunistisch", "cornetto_id": "r_a-13901", "cornetto_synset_id": "n_a-522019", "wordnet_id": "a-00931974", "pos": "JJ", "sense": "als (van) een opportunist", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "oprecht": { "form": "oprecht", "cornetto_id": "r_a-13903", "cornetto_synset_id": "n_a-508027", "wordnet_id": "a-01225643", "pos": "JJ", "sense": "welgemeend", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "opruiend": { "form": "opruiend", "cornetto_id": "r_a-13904", "cornetto_synset_id": "d_v-5279", "wordnet_id": "", "pos": "JJ", "sense": "ophitsend", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "opstopping": { "form": "opstopping", "cornetto_id": "r_n-26766", "cornetto_synset_id": "n_n-522055", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "optimaal": { "form": "optimaal", "cornetto_id": "r_a-13908", "cornetto_synset_id": "n_a-522061", "wordnet_id": "a-00228645", "pos": "JJ", "sense": "best", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.3", "confidence": "1.0" }, "optimistisch": { "form": "optimistisch", "cornetto_id": "r_a-13909", "cornetto_synset_id": "n_a-522062", "wordnet_id": "a-01817908", "pos": "JJ", "sense": "niet pessimistisch", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "opvallend": { "form": "opvallend", "cornetto_id": "r_a-13912", "cornetto_synset_id": "n_a-522067", "wordnet_id": "", "pos": "JJ", "sense": "treffend", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.7", "confidence": "1.0" }, "opvliegend": { "form": "opvliegend", "cornetto_id": "r_a-13913", "cornetto_synset_id": "n_a-507579", "wordnet_id": "a-01256865", "pos": "JJ", "sense": "driftig", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.2", "confidence": "0.7" }, "opvoedbaar": { "form": "opvoedbaar", "cornetto_id": "r_a-13914", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "op te voeden", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "opvoedkundig": { "form": "opvoedkundig", "cornetto_id": "r_a-13915", "cornetto_synset_id": "n_a-522073", "wordnet_id": "a-01324424", "pos": "JJ", "sense": "pedagogisch", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "opwaarts": { "form": "opwaarts", "cornetto_id": "r_a-13917", "cornetto_synset_id": "d_a-9429", "wordnet_id": "", "pos": "JJ", "sense": "omhoog", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "opwekkend": { "form": "opwekkend", "cornetto_id": "r_a-14158", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "stimulerend", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "opwindend": { "form": "opwindend", "cornetto_id": "r_a-13919", "cornetto_synset_id": "n_a-522082", "wordnet_id": "a-02132080", "pos": "JJ", "sense": "opwinding teweegbrengend", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "opzettelijk": { "form": "opzettelijk", "cornetto_id": "r_a-13920", "cornetto_synset_id": "n_a-522090", "wordnet_id": "", "pos": "JJ", "sense": "expres", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "opzichtig": { "form": "opzichtig", "cornetto_id": "r_a-13921", "cornetto_synset_id": "n_a-522091", "wordnet_id": "a-02393791", "pos": "JJ", "sense": "te opvallend", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "opzienbarend": { "form": "opzienbarend", "cornetto_id": "r_a-13923", "cornetto_synset_id": "n_a-522093", "wordnet_id": "a-00601783", "pos": "JJ", "sense": "verbazingwekkend", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.7", "confidence": "0.8" }, "ordelijk": { "form": "ordelijk", "cornetto_id": "r_a-13926", "cornetto_synset_id": "n_a-522125", "wordnet_id": "a-00417978", "pos": "JJ", "sense": "waarin orde is", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "ordinair": { "form": "ordinair", "cornetto_id": "r_a-13928", "cornetto_synset_id": "n_a-522137", "wordnet_id": "a-01593079", "pos": "JJ", "sense": "vulgair", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "organisatorisch": { "form": "organisatorisch", "cornetto_id": "r_a-13929", "cornetto_synset_id": "n_a-522146", "wordnet_id": "a-02898276", "pos": "JJ", "sense": "organisatie betreffend", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "origineel": { "form": "origineel", "cornetto_id": "r_a-13934", "cornetto_synset_id": "n_a-522170", "wordnet_id": "a-01687167", "pos": "JJ", "sense": "oorspronkelijk", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "1.0" }, "orthodox": { "form": "orthodox", "cornetto_id": "r_a-13937", "cornetto_synset_id": "n_a-522187", "wordnet_id": "a-01689880", "pos": "JJ", "sense": "rechtzinnig", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "ostentatief": { "form": "ostentatief", "cornetto_id": "r_a-13939", "cornetto_synset_id": "n_a-506615", "wordnet_id": "a-02182302", "pos": "JJ", "sense": "demonstratief", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.1", "confidence": "0.7" }, "oubollig": { "form": "oubollig", "cornetto_id": "r_a-13940", "cornetto_synset_id": "n_a-522207", "wordnet_id": "a-01265938", "pos": "JJ", "sense": "flauw en melig", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "oud": { "form": "oud", "cornetto_id": "r_a-14166", "cornetto_synset_id": "n_a-522211", "wordnet_id": "a-01729566", "pos": "JJ", "sense": "voormalig, van vroeger", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "1.0" }, "oudbakken": { "form": "oudbakken", "cornetto_id": "r_a-13944", "cornetto_synset_id": "n_a-522216", "wordnet_id": "a-01688757", "pos": "JJ", "sense": "niet vers", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "oude": { "form": "oude", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "", "sense": "JJ", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "ouderloos": { "form": "ouderloos", "cornetto_id": "r_a-16633", "cornetto_synset_id": "n_a-522233", "wordnet_id": "a-01733982", "pos": "JJ", "sense": "zonder ouders", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "ouderwets": { "form": "ouderwets", "cornetto_id": "r_a-14167", "cornetto_synset_id": "n_r-509139", "wordnet_id": "a-00624026", "pos": "JJ", "sense": "net als vroeger", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "oudheidkundig": { "form": "oudheidkundig", "cornetto_id": "r_a-13947", "cornetto_synset_id": "n_a-522240", "wordnet_id": "a-02638392", "pos": "JJ", "sense": "de oudheidkunde betreffend", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "ovationeel": { "form": "ovationeel", "cornetto_id": "r_a-13949", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "als een ovatie", "polarity": "0.3", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "ovenvers": { "form": "ovenvers", "cornetto_id": "r_a-13951", "cornetto_synset_id": "n_a-522270", "wordnet_id": "", "pos": "JJ", "sense": "heel vers", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "overbekend": { "form": "overbekend", "cornetto_id": "r_a-13953", "cornetto_synset_id": "n_a-522276", "wordnet_id": "a-01984411", "pos": "JJ", "sense": "heel bekend", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "overbodig": { "form": "overbodig", "cornetto_id": "r_a-13958", "cornetto_synset_id": "d_a-9483", "wordnet_id": "a-00549826", "pos": "JJ", "sense": "onnodig", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "overdadig": { "form": "overdadig", "cornetto_id": "r_a-13961", "cornetto_synset_id": "n_a-522302", "wordnet_id": "a-00015247", "pos": "JJ", "sense": "met overdaad", "polarity": "-0.3", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "overdrachtelijk": { "form": "overdrachtelijk", "cornetto_id": "r_a-13964", "cornetto_synset_id": "n_a-508972", "wordnet_id": "a-01419784", "pos": "JJ", "sense": "figuurlijk", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.9" }, "overdreven": { "form": "overdreven", "cornetto_id": "r_a-13965", "cornetto_synset_id": "n_a-522310", "wordnet_id": "a-00920422", "pos": "JJ", "sense": "buitensporig", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.6", "confidence": "1.0" }, "overduidelijk": { "form": "overduidelijk", "cornetto_id": "r_a-13966", "cornetto_synset_id": "n_a-522312", "wordnet_id": "a-01287808", "pos": "JJ", "sense": "volstrekt duidelijk", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "overgelukkig": { "form": "overgelukkig", "cornetto_id": "r_a-13972", "cornetto_synset_id": "n_a-507163", "wordnet_id": "a-01367008", "pos": "JJ", "sense": "erg gelukkig", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "overgroot": { "form": "overgroot", "cornetto_id": "r_a-13974", "cornetto_synset_id": "n_a-510819", "wordnet_id": "a-01384730", "pos": "JJ", "sense": "erg groot", "polarity": "0.1", "subjectivity": "0.7", "intensity": "1.7", "confidence": "0.7" }, "overhaast": { "form": "overhaast", "cornetto_id": "r_a-13975", "cornetto_synset_id": "n_a-522345", "wordnet_id": "a-00203614", "pos": "JJ", "sense": "overijld", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "overheerlijk": { "form": "overheerlijk", "cornetto_id": "r_a-13976", "cornetto_synset_id": "n_a-532666", "wordnet_id": "a-00166753", "pos": "JJ", "sense": "zalig", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "overig": { "form": "overig", "cornetto_id": "r_a-13980", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "ander", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "overijld": { "form": "overijld", "cornetto_id": "r_a-13981", "cornetto_synset_id": "n_a-522345", "wordnet_id": "a-00203614", "pos": "JJ", "sense": "overhaast", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "overijverig": { "form": "overijverig", "cornetto_id": "r_a-13982", "cornetto_synset_id": "n_a-522366", "wordnet_id": "a-01726859", "pos": "JJ", "sense": "al te ijverig", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "overkoepelend": { "form": "overkoepelend", "cornetto_id": "r_a-13984", "cornetto_synset_id": "d_v-5451", "wordnet_id": "", "pos": "JJ", "sense": "andere dingen verenigend", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "overmatig": { "form": "overmatig", "cornetto_id": "r_a-13988", "cornetto_synset_id": "n_a-522385", "wordnet_id": "a-00880586", "pos": "JJ", "sense": "buitensporig", "polarity": "-0.3", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "overmoedig": { "form": "overmoedig", "cornetto_id": "r_a-13989", "cornetto_synset_id": "n_a-522386", "wordnet_id": "a-00205696", "pos": "JJ", "sense": "vol overmoed", "polarity": "-0.2", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "overrijp": { "form": "overrijp", "cornetto_id": "r_a-13990", "cornetto_synset_id": "n_a-522389", "wordnet_id": "a-00189017", "pos": "JJ", "sense": "meer dan rijp", "polarity": "-0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "overspannen": { "form": "overspannen", "cornetto_id": "r_a-14174", "cornetto_synset_id": "d_a-9484", "wordnet_id": "a-02432154", "pos": "JJ", "sense": "overprikkeld", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "overtollig": { "form": "overtollig", "cornetto_id": "r_a-13996", "cornetto_synset_id": "d_a-9485", "wordnet_id": "a-00015589", "pos": "JJ", "sense": "overcompleet", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "overtuigend": { "form": "overtuigend", "cornetto_id": "r_a-14175", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "indrukwekkend", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.4", "confidence": "1.0" }, "oververhit": { "form": "oververhit", "cornetto_id": "r_a-14000", "cornetto_synset_id": "n_a-522414", "wordnet_id": "a-00869690", "pos": "JJ", "sense": "te heet", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "overvol": { "form": "overvol", "cornetto_id": "r_a-14005", "cornetto_synset_id": "n_a-524566", "wordnet_id": "a-00537339", "pos": "JJ", "sense": "bomvol", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "overweldigend": { "form": "overweldigend", "cornetto_id": "r_a-14008", "cornetto_synset_id": "n_a-522429", "wordnet_id": "a-00587697", "pos": "JJ", "sense": "ontzaglijk", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.4", "confidence": "1.0" }, "overwinning": { "form": "overwinning", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "overzichtelijk": { "form": "overzichtelijk", "cornetto_id": "r_a-14011", "cornetto_synset_id": "n_a-522439", "wordnet_id": "a-00464513", "pos": "JJ", "sense": "makkelijk te overzien", "polarity": "0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "pacifistisch": { "form": "pacifistisch", "cornetto_id": "r_a-14243", "cornetto_synset_id": "n_a-533830", "wordnet_id": "a-01741408", "pos": "JJ", "sense": "volgens het pacifisme", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "pafferig": { "form": "pafferig", "cornetto_id": "r_a-14244", "cornetto_synset_id": "n_a-522525", "wordnet_id": "a-01154229", "pos": "JJ", "sense": "opgeblazen", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "pakkende": { "form": "pakkende", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "paniekerig": { "form": "paniekerig", "cornetto_id": "r_a-14178", "cornetto_synset_id": "n_a-522611", "wordnet_id": "a-00080357", "pos": "JJ", "sense": "schrikachtig", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "panklaar": { "form": "panklaar", "cornetto_id": "r_a-14179", "cornetto_synset_id": "n_a-522619", "wordnet_id": "a-00672621", "pos": "JJ", "sense": "gebruiksklaar", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "paradijselijk": { "form": "paradijselijk", "cornetto_id": "r_a-14182", "cornetto_synset_id": "n_a-512199", "wordnet_id": "a-00219705", "pos": "JJ", "sense": "als in paradijs", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "paradoxaal": { "form": "paradoxaal", "cornetto_id": "r_a-14248", "cornetto_synset_id": "n_a-522687", "wordnet_id": "a-00939895", "pos": "JJ", "sense": "tegenstrijdig lijkend", "polarity": "-0.2", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "parallel": { "form": "parallel", "cornetto_id": "r_a-14249", "cornetto_synset_id": "d_a-9265", "wordnet_id": "a-01718158", "pos": "JJ", "sense": "evenwijdig", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "paramedisch": { "form": "paramedisch", "cornetto_id": "r_a-14250", "cornetto_synset_id": "n_a-522704", "wordnet_id": "", "pos": "JJ", "sense": "met geneeskunde samenhangend", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "paranormaal": { "form": "paranormaal", "cornetto_id": "r_a-14252", "cornetto_synset_id": "n_a-505190", "wordnet_id": "a-01577086", "pos": "JJ", "sense": "buitenzintuiglijk", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.1", "confidence": "0.7" }, "paranoïde": { "form": "paranoïde", "cornetto_id": "r_a-14251", "cornetto_synset_id": "n_a-522708", "wordnet_id": "a-02077157", "pos": "JJ", "sense": "extreem achterdochtig", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.2", "confidence": "0.7" }, "particulier": { "form": "particulier", "cornetto_id": "r_a-14256", "cornetto_synset_id": "n_a-522804", "wordnet_id": "a-01616157", "pos": "JJ", "sense": "persoonlijk", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "partieel": { "form": "partieel", "cornetto_id": "r_a-14258", "cornetto_synset_id": "n_a-509804", "wordnet_id": "a-00285148", "pos": "JJ", "sense": "gedeeltelijk", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "0.8", "confidence": "0.9" }, "partijloos": { "form": "partijloos", "cornetto_id": "r_a-14185", "cornetto_synset_id": "n_a-522823", "wordnet_id": "a-00727564", "pos": "JJ", "sense": "zonder politieke partij", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "pasgeboren": { "form": "pasgeboren", "cornetto_id": "r_a-14187", "cornetto_synset_id": "d_a-9486", "wordnet_id": "a-01649184", "pos": "JJ", "sense": "net op aarde", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "pasklaar": { "form": "pasklaar", "cornetto_id": "r_a-14261", "cornetto_synset_id": "n_a-522846", "wordnet_id": "a-00672621", "pos": "JJ", "sense": "passend", "polarity": "0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "passé": { "form": "passé", "cornetto_id": "r_a-14262", "cornetto_synset_id": "n_a-531638", "wordnet_id": "a-00669138", "pos": "JJ", "sense": "voorbij", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "paternalistisch": { "form": "paternalistisch", "cornetto_id": "r_a-14268", "cornetto_synset_id": "n_a-503950", "wordnet_id": "a-01324131", "pos": "JJ", "sense": "autoritair", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "pathetisch": { "form": "pathetisch", "cornetto_id": "r_a-14269", "cornetto_synset_id": "n_a-522888", "wordnet_id": "a-00794825", "pos": "JJ", "sense": "overdreven", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "pathologisch": { "form": "pathologisch", "cornetto_id": "r_a-14270", "cornetto_synset_id": "n_a-522895", "wordnet_id": "a-01176246", "pos": "JJ", "sense": "SJF med", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "patriottisch": { "form": "patriottisch", "cornetto_id": "r_a-14188", "cornetto_synset_id": "n_a-531957", "wordnet_id": "a-01740207", "pos": "JJ", "sense": "vaderlandslievend", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "pauselijk": { "form": "pauselijk", "cornetto_id": "r_a-14190", "cornetto_synset_id": "n_a-522923", "wordnet_id": "a-01849960", "pos": "JJ", "sense": "van paus", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "peilloos": { "form": "peilloos", "cornetto_id": "r_a-14275", "cornetto_synset_id": "d_a-9258", "wordnet_id": "a-00943999", "pos": "JJ", "sense": "niet te peilen", "polarity": "0.3", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "pejoratief": { "form": "pejoratief", "cornetto_id": "r_a-14451", "cornetto_synset_id": "n_a-518925", "wordnet_id": "a-00906655", "pos": "JJ", "sense": "met negatieve bijklank", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "penetrant": { "form": "penetrant", "cornetto_id": "r_a-14276", "cornetto_synset_id": "n_a-507298", "wordnet_id": "a-01214430", "pos": "JJ", "sense": "doordringend", "polarity": "0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "penibel": { "form": "penibel", "cornetto_id": "r_a-14277", "cornetto_synset_id": "n_a-511757", "wordnet_id": "a-00746994", "pos": "JJ", "sense": "moeilijk, lastig", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "pensioengerechtigd": { "form": "pensioengerechtigd", "cornetto_id": "r_a-14192", "cornetto_synset_id": "n_a-523023", "wordnet_id": "a-00852875", "pos": "JJ", "sense": "met recht op pensioen", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "peperduur": { "form": "peperduur", "cornetto_id": "r_a-14193", "cornetto_synset_id": "n_a-523042", "wordnet_id": "a-00933599", "pos": "JJ", "sense": "heel duur", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "perfect": { "form": "perfect", "cornetto_id": "r_a-14278", "cornetto_synset_id": "n_a-533543", "wordnet_id": "a-01750847", "pos": "JJ", "sense": "volmaakt", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "perkamentachtig": { "form": "perkamentachtig", "cornetto_id": "r_a-14455", "cornetto_synset_id": "n_a-523102", "wordnet_id": "", "pos": "JJ", "sense": "lijkend op perkament", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "permanent": { "form": "permanent", "cornetto_id": "r_a-14282", "cornetto_synset_id": "n_a-533706", "wordnet_id": "", "pos": "JJ", "sense": "blijvend", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "perplex": { "form": "perplex", "cornetto_id": "r_a-14194", "cornetto_synset_id": "n_a-529451", "wordnet_id": "a-01765643", "pos": "JJ", "sense": "verbijsterd", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.9" }, "persistent": { "form": "persistent", "cornetto_id": "r_a-14195", "cornetto_synset_id": "c_548", "wordnet_id": "a-00250119", "pos": "JJ", "sense": "blijvend", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.1", "confidence": "0.7" }, "persoonlijk": { "form": "persoonlijk", "cornetto_id": "r_a-14286", "cornetto_synset_id": "d_a-9343", "wordnet_id": "a-02153174", "pos": "JJ", "sense": "zelf", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "pertinent": { "form": "pertinent", "cornetto_id": "r_a-14287", "cornetto_synset_id": "n_r-503760", "wordnet_id": "", "pos": "JJ", "sense": "onbetwistbaar", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.6", "confidence": "0.7" }, "pervers": { "form": "pervers", "cornetto_id": "r_a-14288", "cornetto_synset_id": "n_a-523199", "wordnet_id": "a-01549568", "pos": "JJ", "sense": "tegennatuurlijk", "polarity": "-0.8", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "pessimistisch": { "form": "pessimistisch", "cornetto_id": "r_a-14289", "cornetto_synset_id": "n_a-536067", "wordnet_id": "a-00274068", "pos": "JJ", "sense": "somber, negatief", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "petieterig": { "form": "petieterig", "cornetto_id": "r_a-14291", "cornetto_synset_id": "n_a-523296", "wordnet_id": "a-00516539", "pos": "JJ", "sense": "nietig", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "piekfijn": { "form": "piekfijn", "cornetto_id": "r_a-14294", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "keurig, in orde", "polarity": "0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "pienter": { "form": "pienter", "cornetto_id": "r_a-14295", "cornetto_synset_id": "n_a-527945", "wordnet_id": "a-00092136", "pos": "JJ", "sense": "schrander", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "piepjong": { "form": "piepjong", "cornetto_id": "r_a-14197", "cornetto_synset_id": "n_a-523295", "wordnet_id": "", "pos": "JJ", "sense": "jong", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "piepklein": { "form": "piepklein", "cornetto_id": "r_a-14198", "cornetto_synset_id": "n_a-523296", "wordnet_id": "a-00516539", "pos": "JJ", "sense": "klein", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "pijlsnel": { "form": "pijlsnel", "cornetto_id": "r_a-14199", "cornetto_synset_id": "n_a-504345", "wordnet_id": "", "pos": "JJ", "sense": "zeer snel", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "pijnlijk": { "form": "pijnlijk", "cornetto_id": "r_a-14299", "cornetto_synset_id": "n_a-523336", "wordnet_id": "a-00605406", "pos": "JJ", "sense": "moeilijk, lastig", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "pijnloos": { "form": "pijnloos", "cornetto_id": "r_a-14200", "cornetto_synset_id": "n_a-523339", "wordnet_id": "a-00038260", "pos": "JJ", "sense": "zonder pijn", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "pikant": { "form": "pikant", "cornetto_id": "r_a-14301", "cornetto_synset_id": "n_a-523357", "wordnet_id": "a-00167671", "pos": "JJ", "sense": "prikkelend", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "pissig": { "form": "pissig", "cornetto_id": "r_a-14304", "cornetto_synset_id": "d_a-9618", "wordnet_id": "a-00114454", "pos": "JJ", "sense": "giftig", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "pittig": { "form": "pittig", "cornetto_id": "r_a-14307", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "behoorlijk moeilijk", "polarity": "-0.3", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "pittoresk": { "form": "pittoresk", "cornetto_id": "r_a-14308", "cornetto_synset_id": "n_a-527020", "wordnet_id": "a-00219924", "pos": "JJ", "sense": "schilderachtig", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "plaatselijk": { "form": "plaatselijk", "cornetto_id": "r_a-14309", "cornetto_synset_id": "n_a-523452", "wordnet_id": "a-00668053", "pos": "JJ", "sense": "op of van een plaats", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "plaatsvervangend": { "form": "plaatsvervangend", "cornetto_id": "r_a-14202", "cornetto_synset_id": "n_a-523468", "wordnet_id": "a-01406418", "pos": "JJ", "sense": "waarnemend", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "plagerig": { "form": "plagerig", "cornetto_id": "r_a-14460", "cornetto_synset_id": "n_a-523486", "wordnet_id": "a-00089550", "pos": "JJ", "sense": "geneigd te plagen", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "plakkerig": { "form": "plakkerig", "cornetto_id": "r_a-14310", "cornetto_synset_id": "n_a-523499", "wordnet_id": "a-00053691", "pos": "JJ", "sense": "kleverig", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "plastisch": { "form": "plastisch", "cornetto_id": "r_a-14313", "cornetto_synset_id": "n_a-503317", "wordnet_id": "a-00402419", "pos": "JJ", "sense": "beeldend", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "plat": { "form": "plat", "cornetto_id": "r_a-14317", "cornetto_synset_id": "n_a-523583", "wordnet_id": "a-00683531", "pos": "JJ", "sense": "ordinair", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "platvloers": { "form": "platvloers", "cornetto_id": "r_a-14319", "cornetto_synset_id": "n_a-523583", "wordnet_id": "a-00683531", "pos": "JJ", "sense": "onbeschaafd", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.9" }, "plausibel": { "form": "plausibel", "cornetto_id": "r_a-14321", "cornetto_synset_id": "d_a-9295", "wordnet_id": "a-00644839", "pos": "JJ", "sense": "geloofwaardig", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.9" }, "plechtig": { "form": "plechtig", "cornetto_id": "r_a-14322", "cornetto_synset_id": "n_a-523636", "wordnet_id": "a-01042703", "pos": "JJ", "sense": "officieel en ernstig", "polarity": "0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "plechtstatig": { "form": "plechtstatig", "cornetto_id": "r_a-14323", "cornetto_synset_id": "n_a-523639", "wordnet_id": "a-01042491", "pos": "JJ", "sense": "plechtig en statig", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "plenair": { "form": "plenair", "cornetto_id": "r_a-14324", "cornetto_synset_id": "n_a-523661", "wordnet_id": "a-00528167", "pos": "JJ", "sense": "voltallig", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "plezant": { "form": "plezant", "cornetto_id": "r_a-14325", "cornetto_synset_id": "c_644", "wordnet_id": "a-01586342", "pos": "JJ", "sense": "plezierig", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "plezierig": { "form": "plezierig", "cornetto_id": "r_a-14326", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "leuk", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "plichtmatig": { "form": "plichtmatig", "cornetto_id": "r_a-14327", "cornetto_synset_id": "n_a-523674", "wordnet_id": "a-01613047", "pos": "JJ", "sense": "uit plichtsbesef", "polarity": "0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "plichtsgetrouw": { "form": "plichtsgetrouw", "cornetto_id": "r_a-14328", "cornetto_synset_id": "n_a-523677", "wordnet_id": "a-00310138", "pos": "JJ", "sense": "nauwgezet", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "plots": { "form": "plots", "cornetto_id": "r_a-14205", "cornetto_synset_id": "n_a-521635", "wordnet_id": "", "pos": "JJ", "sense": "plotseling", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "plotseling": { "form": "plotseling", "cornetto_id": "r_a-14206", "cornetto_synset_id": "n_a-521635", "wordnet_id": "", "pos": "JJ", "sense": "onverwacht", "polarity": "0.0", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "poeslief": { "form": "poeslief", "cornetto_id": "r_a-14335", "cornetto_synset_id": "n_a-523797", "wordnet_id": "a-00750926", "pos": "JJ", "sense": "overdreven lief", "polarity": "-0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "poliklinisch": { "form": "poliklinisch", "cornetto_id": "r_a-14340", "cornetto_synset_id": "n_a-523843", "wordnet_id": "", "pos": "JJ", "sense": "te maken hebbend met polikliniek", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "politiek": { "form": "politiek", "cornetto_id": "r_a-14496", "cornetto_synset_id": "n_a-530216", "wordnet_id": "a-00167278", "pos": "JJ", "sense": "tactisch", "polarity": "0.0", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "politioneel": { "form": "politioneel", "cornetto_id": "r_a-14342", "cornetto_synset_id": "n_a-523876", "wordnet_id": "", "pos": "JJ", "sense": "van of door politie", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "pompeus": { "form": "pompeus", "cornetto_id": "r_a-14346", "cornetto_synset_id": "n_a-522302", "wordnet_id": "a-00015247", "pos": "JJ", "sense": "overdreven", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "populair": { "form": "populair", "cornetto_id": "r_a-14350", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "eenvoudig en begrijpelijk", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "populistisch": { "form": "populistisch", "cornetto_id": "r_a-14209", "cornetto_synset_id": "n_a-523993", "wordnet_id": "", "pos": "JJ", "sense": "te maken hebbend met populisme", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "positief": { "form": "positief", "cornetto_id": "r_a-14354", "cornetto_synset_id": "c_390", "wordnet_id": "", "pos": "JJ", "sense": "groter dan nul", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "postjes": { "form": "postjes", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NNS", "sense": "", "polarity": "-0.2", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "postmodern": { "form": "postmodern", "cornetto_id": "r_a-14213", "cornetto_synset_id": "n_a-524066", "wordnet_id": "", "pos": "JJ", "sense": "behorend tot postmodernisme", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "potent": { "form": "potent", "cornetto_id": "r_a-14360", "cornetto_synset_id": "n_a-524100", "wordnet_id": "a-02324005", "pos": "JJ", "sense": "in staat tot geslachtsgemeenschap", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "potentieel": { "form": "potentieel", "cornetto_id": "r_a-14361", "cornetto_synset_id": "n_a-519143", "wordnet_id": "a-02418249", "pos": "JJ", "sense": "mogelijk", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "potig": { "form": "potig", "cornetto_id": "r_a-14362", "cornetto_synset_id": "d_a-9272", "wordnet_id": "a-02038126", "pos": "JJ", "sense": "grof gebouwd", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "potsierlijk": { "form": "potsierlijk", "cornetto_id": "r_a-14363", "cornetto_synset_id": "n_a-515356", "wordnet_id": "a-00221627", "pos": "JJ", "sense": "lachwekkend", "polarity": "-0.2", "subjectivity": "1.0", "intensity": "1.3", "confidence": "0.8" }, "pover": { "form": "pover", "cornetto_id": "r_a-14364", "cornetto_synset_id": "n_a-502555", "wordnet_id": "a-00106456", "pos": "JJ", "sense": "armoedig", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "0.9", "confidence": "0.7" }, "poëtisch": { "form": "poëtisch", "cornetto_id": "r_a-14336", "cornetto_synset_id": "n_a-526106", "wordnet_id": "a-01837182", "pos": "JJ", "sense": "dichterlijk", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "praalziek": { "form": "praalziek", "cornetto_id": "r_a-14471", "cornetto_synset_id": "n_a-522041", "wordnet_id": "a-00304670", "pos": "JJ", "sense": "ijdel", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "praatziek": { "form": "praatziek", "cornetto_id": "r_a-14215", "cornetto_synset_id": "n_a-515218", "wordnet_id": "a-00496422", "pos": "JJ", "sense": "erg veel pratend", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "prachtig": { "form": "prachtig", "cornetto_id": "r_a-14365", "cornetto_synset_id": "n_a-524142", "wordnet_id": "a-00217728", "pos": "JJ", "sense": "heel mooi", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "praktisch": { "form": "praktisch", "cornetto_id": "r_a-14368", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "handig", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "precair": { "form": "precair", "cornetto_id": "r_a-14370", "cornetto_synset_id": "n_a-511757", "wordnet_id": "a-00746994", "pos": "JJ", "sense": "onzeker", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "precies": { "form": "precies", "cornetto_id": "r_a-14372", "cornetto_synset_id": "n_a-519716", "wordnet_id": "a-00021766", "pos": "JJ", "sense": "zorgvuldig", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "prematuur": { "form": "prematuur", "cornetto_id": "r_a-14379", "cornetto_synset_id": "n_a-533587", "wordnet_id": "a-01494740", "pos": "JJ", "sense": "voorbarig", "polarity": "0.1", "subjectivity": "0.3", "intensity": "0.9", "confidence": "0.7" }, "prenataal": { "form": "prenataal", "cornetto_id": "r_a-14380", "cornetto_synset_id": "n_a-524240", "wordnet_id": "a-00129103", "pos": "JJ", "sense": "voor de geboorte", "polarity": "0.0", "subjectivity": "0.2", "intensity": "0.8", "confidence": "0.7" }, "presbyteriaans": { "form": "presbyteriaans", "cornetto_id": "r_a-14474", "cornetto_synset_id": "n_a-524254", "wordnet_id": "", "pos": "JJ", "sense": "SJF rel", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "pretentieus": { "form": "pretentieus", "cornetto_id": "r_a-14383", "cornetto_synset_id": "n_a-524282", "wordnet_id": "a-01849960", "pos": "JJ", "sense": "aanmatigend", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "prettig": { "form": "prettig", "cornetto_id": "r_a-14384", "cornetto_synset_id": "c_644", "wordnet_id": "a-01586342", "pos": "JJ", "sense": "aangenaam, plezierig", "polarity": "0.7", "subjectivity": "1.0", "intensity": "0.9", "confidence": "1.0" }, "prijsbewust": { "form": "prijsbewust", "cornetto_id": "r_a-14479", "cornetto_synset_id": "n_a-524310", "wordnet_id": "", "pos": "JJ", "sense": "bewust van prijzen", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "prijzig": { "form": "prijzig", "cornetto_id": "r_a-14388", "cornetto_synset_id": "n_a-507824", "wordnet_id": "a-00933154", "pos": "JJ", "sense": "duur", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "pril": { "form": "pril", "cornetto_id": "r_a-14390", "cornetto_synset_id": "n_a-524350", "wordnet_id": "a-00205295", "pos": "JJ", "sense": "pas ontstaan", "polarity": "0.0", "subjectivity": "0.2", "intensity": "0.9", "confidence": "0.7" }, "prima": { "form": "prima", "cornetto_id": "r_a-14391", "cornetto_synset_id": "c_178", "wordnet_id": "", "pos": "JJ", "sense": "uitstekend", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "primordiaal": { "form": "primordiaal", "cornetto_id": "d_a-224965", "cornetto_synset_id": "n_a-509441", "wordnet_id": "a-00095094", "pos": "JJ", "sense": "", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.1", "confidence": "0.7" }, "principaal": { "form": "principaal", "cornetto_id": "d_a-224985", "cornetto_synset_id": "n_a-509441", "wordnet_id": "a-00095094", "pos": "JJ", "sense": "", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.1", "confidence": "0.7" }, "principieel": { "form": "principieel", "cornetto_id": "r_a-14395", "cornetto_synset_id": "n_a-509441", "wordnet_id": "a-00095094", "pos": "JJ", "sense": "uit principe", "polarity": "0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "privaat": { "form": "privaat", "cornetto_id": "r_a-14221", "cornetto_synset_id": "n_a-522804", "wordnet_id": "a-01616157", "pos": "JJ", "sense": "particulier", "polarity": "-0.2", "subjectivity": "0.5", "intensity": "1.1", "confidence": "0.7" }, "privaatrechtelijk": { "form": "privaatrechtelijk", "cornetto_id": "r_a-14222", "cornetto_synset_id": "n_a-524399", "wordnet_id": "", "pos": "JJ", "sense": "volgens het privaatrecht", "polarity": "-0.2", "subjectivity": "0.3", "intensity": "1.3", "confidence": "0.7" }, "privé": { "form": "privé", "cornetto_id": "r_a-14397", "cornetto_synset_id": "n_a-523170", "wordnet_id": "a-01767329", "pos": "JJ", "sense": "persoonlijk", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "probaat": { "form": "probaat", "cornetto_id": "r_a-14398", "cornetto_synset_id": "n_a-524410", "wordnet_id": "a-00724596", "pos": "JJ", "sense": "beproefd", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.3", "confidence": "0.7" }, "problemen": { "form": "problemen", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NNS", "sense": "", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "proefondervindelijk": { "form": "proefondervindelijk", "cornetto_id": "r_a-14403", "cornetto_synset_id": "n_a-524456", "wordnet_id": "a-00858917", "pos": "JJ", "sense": "door experiment", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "professioneel": { "form": "professioneel", "cornetto_id": "r_a-14407", "cornetto_synset_id": "n_a-532002", "wordnet_id": "a-00511037", "pos": "JJ", "sense": "vakkundig", "polarity": "0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "profetisch": { "form": "profetisch", "cornetto_id": "r_a-14408", "cornetto_synset_id": "n_a-524480", "wordnet_id": "a-01881696", "pos": "JJ", "sense": "met voorspellende kracht", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.6", "confidence": "0.7" }, "profijtelijk": { "form": "profijtelijk", "cornetto_id": "r_a-14224", "cornetto_synset_id": "d_a-9502", "wordnet_id": "a-02332604", "pos": "JJ", "sense": "voordelig", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "progressief": { "form": "progressief", "cornetto_id": "r_a-14412", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "voortschrijdend", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "proletarisch": { "form": "proletarisch", "cornetto_id": "r_a-14413", "cornetto_synset_id": "n_a-524521", "wordnet_id": "a-00259957", "pos": "JJ", "sense": "te maken hebbend met proletariaat", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "prominent": { "form": "prominent", "cornetto_id": "r_a-14414", "cornetto_synset_id": "n_a-510878", "wordnet_id": "a-01830134", "pos": "JJ", "sense": "vooraanstaand", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "prompt": { "form": "prompt", "cornetto_id": "r_a-14416", "cornetto_synset_id": "n_a-519716", "wordnet_id": "a-00021766", "pos": "JJ", "sense": "stipt", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.3", "confidence": "0.7" }, "propagandistisch": { "form": "propagandistisch", "cornetto_id": "r_a-14225", "cornetto_synset_id": "n_a-524560", "wordnet_id": "a-03022739", "pos": "JJ", "sense": "bestemd of geschikt voor propaganda", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "proportioneel": { "form": "proportioneel", "cornetto_id": "r_a-14226", "cornetto_synset_id": "n_a-508588", "wordnet_id": "a-00481222", "pos": "JJ", "sense": "evenredig", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "propvol": { "form": "propvol", "cornetto_id": "r_a-14227", "cornetto_synset_id": "n_a-524566", "wordnet_id": "a-00537339", "pos": "JJ", "sense": "erg vol", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "protectionistisch": { "form": "protectionistisch", "cornetto_id": "r_a-14228", "cornetto_synset_id": "n_a-524577", "wordnet_id": "", "pos": "JJ", "sense": "van protectionisme", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "protest": { "form": "protest", "cornetto_id": "r_n-29959", "cornetto_synset_id": "d_n-26020", "wordnet_id": "", "pos": "NNS", "sense": "", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "protestant": { "form": "protestant", "cornetto_id": "r_a-14419", "cornetto_synset_id": "n_a-524579", "wordnet_id": "a-02952622", "pos": "JJ", "sense": "met het protestantisme te maken hebbend", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "protestants": { "form": "protestants", "cornetto_id": "r_a-14420", "cornetto_synset_id": "n_a-524579", "wordnet_id": "a-02952622", "pos": "JJ", "sense": "", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "protocollair": { "form": "protocollair", "cornetto_id": "r_a-14229", "cornetto_synset_id": "n_a-524594", "wordnet_id": "a-01042491", "pos": "JJ", "sense": "volgens protocol", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "protserig": { "form": "protserig", "cornetto_id": "r_a-14421", "cornetto_synset_id": "n_a-524600", "wordnet_id": "a-00279618", "pos": "JJ", "sense": "pronkerig", "polarity": "-0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "provinciaal": { "form": "provinciaal", "cornetto_id": "r_a-14422", "cornetto_synset_id": "n_a-524604", "wordnet_id": "", "pos": "JJ", "sense": "te maken hebbend met provincie", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "provocateurs": { "form": "provocateurs", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NNS", "sense": "", "polarity": "-0.2", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "provoceren": { "form": "provoceren", "cornetto_id": "r_v-6491", "cornetto_synset_id": "d_v-5859", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "prozaïsch": { "form": "prozaïsch", "cornetto_id": "r_a-14424", "cornetto_synset_id": "n_a-520216", "wordnet_id": "a-01943406", "pos": "JJ", "sense": "alledaags", "polarity": "-0.1", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "psychisch": { "form": "psychisch", "cornetto_id": "r_a-14426", "cornetto_synset_id": "d_a-9284", "wordnet_id": "a-00631193", "pos": "JJ", "sense": "geestelijk", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "psychologisch": { "form": "psychologisch", "cornetto_id": "r_a-14427", "cornetto_synset_id": "n_a-524671", "wordnet_id": "a-02905794", "pos": "JJ", "sense": "betrekking hebbend op psychologie", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "psychopathisch": { "form": "psychopathisch", "cornetto_id": "r_a-14484", "cornetto_synset_id": "n_a-524676", "wordnet_id": "a-02077253", "pos": "JJ", "sense": "als van psychopaat", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "0.9", "confidence": "0.7" }, "psychosociaal": { "form": "psychosociaal", "cornetto_id": "r_a-14234", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "SJF psych", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "psychosomatisch": { "form": "psychosomatisch", "cornetto_id": "r_a-14428", "cornetto_synset_id": "n_a-524679", "wordnet_id": "a-01585781", "pos": "JJ", "sense": "mbt. samenhang van lichaam en geest", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "puberaal": { "form": "puberaal", "cornetto_id": "r_a-14429", "cornetto_synset_id": "n_a-524685", "wordnet_id": "a-01490061", "pos": "JJ", "sense": "als van puber", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "publiek": { "form": "publiek", "cornetto_id": "r_a-14431", "cornetto_synset_id": "n_a-521887", "wordnet_id": "a-01861205", "pos": "JJ", "sense": "van of voor iedereen", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "publieksvriendelijk": { "form": "publieksvriendelijk", "cornetto_id": "r_a-14237", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "toegankelijk voor publiek", "polarity": "0.3", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "puik": { "form": "puik", "cornetto_id": "r_a-14432", "cornetto_synset_id": "c_178", "wordnet_id": "", "pos": "JJ", "sense": "uitstekend", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "punctueel": { "form": "punctueel", "cornetto_id": "r_a-14433", "cornetto_synset_id": "n_a-519716", "wordnet_id": "a-00021766", "pos": "JJ", "sense": "stipt, nauwgezet", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "puntig": { "form": "puntig", "cornetto_id": "r_a-14434", "cornetto_synset_id": "n_a-528597", "wordnet_id": "a-01214255", "pos": "JJ", "sense": "spits", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "puur": { "form": "puur", "cornetto_id": "r_a-14438", "cornetto_synset_id": "d_a-9633", "wordnet_id": "a-01907481", "pos": "JJ", "sense": "zuiver", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.1", "confidence": "1.0" }, "raadselachtig": { "form": "raadselachtig", "cornetto_id": "r_a-14499", "cornetto_synset_id": "d_a-9495", "wordnet_id": "a-00102930", "pos": "JJ", "sense": "geheimzinnig", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "raak": { "form": "raak", "cornetto_id": "r_a-14502", "cornetto_synset_id": "n_a-531221", "wordnet_id": "a-00138314", "pos": "JJ", "sense": "treffend", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "raar": { "form": "raar", "cornetto_id": "r_a-14503", "cornetto_synset_id": "n_a-533834", "wordnet_id": "a-00488857", "pos": "JJ", "sense": "vreemd", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "raciaal": { "form": "raciaal", "cornetto_id": "r_a-14664", "cornetto_synset_id": "n_a-524931", "wordnet_id": "a-01927654", "pos": "JJ", "sense": "mbt. ras", "polarity": "-0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "racist": { "form": "racist", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "racistisch": { "form": "racistisch", "cornetto_id": "r_a-14504", "cornetto_synset_id": "n_a-524932", "wordnet_id": "a-00285905", "pos": "JJ", "sense": "getuigend van racisme", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "rad": { "form": "rad", "cornetto_id": "r_a-14505", "cornetto_synset_id": "n_a-528140", "wordnet_id": "a-00976508", "pos": "JJ", "sense": "rap", "polarity": "0.0", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "ragfijn": { "form": "ragfijn", "cornetto_id": "r_a-14667", "cornetto_synset_id": "n_a-525002", "wordnet_id": "a-00706455", "pos": "JJ", "sense": "heel fijn", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "raisonnabel": { "form": "raisonnabel", "cornetto_id": "d_a-233520", "cornetto_synset_id": "n_a-525316", "wordnet_id": "a-00218440", "pos": "JJ", "sense": "", "polarity": "0.3", "subjectivity": "0.9", "intensity": "0.9", "confidence": "0.7" }, "ramp": { "form": "ramp", "cornetto_id": "r_n-30452", "cornetto_synset_id": "d_n-19123", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.4", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.9" }, "rampspoedig": { "form": "rampspoedig", "cornetto_id": "r_a-14712", "cornetto_synset_id": "n_a-508241", "wordnet_id": "", "pos": "JJ", "sense": "rampzalig", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "rampzalig": { "form": "rampzalig", "cornetto_id": "r_a-14511", "cornetto_synset_id": "n_a-508241", "wordnet_id": "", "pos": "JJ", "sense": "desastreus", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.2", "confidence": "0.7" }, "rancuneus": { "form": "rancuneus", "cornetto_id": "r_a-14512", "cornetto_synset_id": "n_a-511753", "wordnet_id": "a-00116529", "pos": "JJ", "sense": "wrokkig", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "ranzig": { "form": "ranzig", "cornetto_id": "r_a-14514", "cornetto_synset_id": "n_a-525065", "wordnet_id": "a-01002256", "pos": "JJ", "sense": "slechte of bedorven vet en olie", "polarity": "-0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "rap": { "form": "rap", "cornetto_id": "r_a-14515", "cornetto_synset_id": "n_a-528140", "wordnet_id": "a-00976508", "pos": "JJ", "sense": "vlug", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "ras": { "form": "ras", "cornetto_id": "r_a-14516", "cornetto_synset_id": "n_a-528140", "wordnet_id": "a-00976508", "pos": "JJ", "sense": "vlug", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "rasperig": { "form": "rasperig", "cornetto_id": "r_a-14714", "cornetto_synset_id": "d_a-9510", "wordnet_id": "a-02238462", "pos": "JJ", "sense": "raspig", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "rationalistisch": { "form": "rationalistisch", "cornetto_id": "r_a-14715", "cornetto_synset_id": "n_a-525105", "wordnet_id": "a-01333118", "pos": "JJ", "sense": "verstandelijk, cerebraal", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "rationeel": { "form": "rationeel", "cornetto_id": "r_a-14748", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "SJF wisk", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "rauw": { "form": "rauw", "cornetto_id": "r_a-14750", "cornetto_synset_id": "c_583", "wordnet_id": "", "pos": "JJ", "sense": "zonder franje", "polarity": "0.0", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "razend": { "form": "razend", "cornetto_id": "r_a-14522", "cornetto_synset_id": "n_a-508356", "wordnet_id": "a-01387319", "pos": "JJ", "sense": "geweldig", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.9", "confidence": "1.0" }, "razendsnel": { "form": "razendsnel", "cornetto_id": "r_a-14669", "cornetto_synset_id": "n_a-504345", "wordnet_id": "", "pos": "JJ", "sense": "supersnel", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "reactionair": { "form": "reactionair", "cornetto_id": "r_a-14523", "cornetto_synset_id": "d_a-9499", "wordnet_id": "a-00260780", "pos": "JJ", "sense": "conservatief", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "realiseerbaar": { "form": "realiseerbaar", "cornetto_id": "r_a-14670", "cornetto_synset_id": "n_a-511721", "wordnet_id": "a-01821690", "pos": "JJ", "sense": "uitvoerbaar", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "realistisch": { "form": "realistisch", "cornetto_id": "r_a-14524", "cornetto_synset_id": "n_a-534096", "wordnet_id": "a-02460502", "pos": "JJ", "sense": "reëel", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "recalcitrant": { "form": "recalcitrant", "cornetto_id": "r_a-14526", "cornetto_synset_id": "n_a-534464", "wordnet_id": "a-00021592", "pos": "JJ", "sense": "onwillig", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "recent": { "form": "recent", "cornetto_id": "r_a-14527", "cornetto_synset_id": "n_a-525158", "wordnet_id": "a-01687167", "pos": "JJ", "sense": "van kort geleden", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "recht": { "form": "recht", "cornetto_id": "r_a-14752", "cornetto_synset_id": "c_680", "wordnet_id": "", "pos": "JJ", "sense": "juist", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "rechtgeaard": { "form": "rechtgeaard", "cornetto_id": "r_a-14533", "cornetto_synset_id": "n_a-507910", "wordnet_id": "a-00633581", "pos": "JJ", "sense": "echt", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "rechtlijnig": { "form": "rechtlijnig", "cornetto_id": "r_a-14534", "cornetto_synset_id": "d_a-9530", "wordnet_id": "a-01029151", "pos": "JJ", "sense": "volgens een rechte lijn", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "rechts": { "form": "rechts", "cornetto_id": "r_a-14538", "cornetto_synset_id": "n_a-525199", "wordnet_id": "a-02030793", "pos": "JJ", "sense": "politiek conservatief", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "rechts-radicaal": { "form": "rechts-radicaal", "cornetto_id": "r_a-14674", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "rechts-extremistisch", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "rechtschapen": { "form": "rechtschapen", "cornetto_id": "r_a-14539", "cornetto_synset_id": "n_a-513844", "wordnet_id": "a-00622935", "pos": "JJ", "sense": "deugdzaam", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "rechtstreeks": { "form": "rechtstreeks", "cornetto_id": "r_a-14541", "cornetto_synset_id": "n_a-525240", "wordnet_id": "", "pos": "JJ", "sense": "direct", "polarity": "0.4", "subjectivity": "0.4", "intensity": "1.1", "confidence": "1.0" }, "rechtvaardig": { "form": "rechtvaardig", "cornetto_id": "r_a-14542", "cornetto_synset_id": "n_a-525249", "wordnet_id": "a-00956131", "pos": "JJ", "sense": "billijk", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "reddeloos": { "form": "reddeloos", "cornetto_id": "r_a-14547", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "zonder redding", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "redekundig": { "form": "redekundig", "cornetto_id": "r_a-14548", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "redelijk": { "form": "redelijk", "cornetto_id": "r_a-14551", "cornetto_synset_id": "n_a-532721", "wordnet_id": "a-01332386", "pos": "JJ", "sense": "rationeel", "polarity": "0.1", "subjectivity": "0.4", "intensity": "0.9", "confidence": "1.0" }, "redeloos": { "form": "redeloos", "cornetto_id": "r_a-14552", "cornetto_synset_id": "n_a-532722", "wordnet_id": "a-01334277", "pos": "JJ", "sense": "onredelijk", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.2", "confidence": "0.7" }, "regelbaar": { "form": "regelbaar", "cornetto_id": "r_a-14676", "cornetto_synset_id": "n_a-525376", "wordnet_id": "a-01027263", "pos": "JJ", "sense": "verstelbaar", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "regelmatig": { "form": "regelmatig", "cornetto_id": "r_a-14558", "cornetto_synset_id": "n_a-525383", "wordnet_id": "a-00486990", "pos": "JJ", "sense": "gelijkmatig", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "regelrecht": { "form": "regelrecht", "cornetto_id": "r_a-14677", "cornetto_synset_id": "n_a-525388", "wordnet_id": "a-00047653", "pos": "JJ", "sense": "rechtstreeks", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.1", "confidence": "1.0" }, "regenachtig": { "form": "regenachtig", "cornetto_id": "r_a-14559", "cornetto_synset_id": "n_a-525393", "wordnet_id": "a-02550333", "pos": "JJ", "sense": "met (veel) regen", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.1", "confidence": "1.0" }, "reikhalzend": { "form": "reikhalzend", "cornetto_id": "r_a-14563", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "verlangend", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "rein": { "form": "rein", "cornetto_id": "r_a-14564", "cornetto_synset_id": "d_a-9518", "wordnet_id": "a-00417413", "pos": "JJ", "sense": "zuiver", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "rekbaar": { "form": "rekbaar", "cornetto_id": "r_a-14566", "cornetto_synset_id": "d_a-9644", "wordnet_id": "a-00843595", "pos": "JJ", "sense": "elastisch", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "0.9", "confidence": "0.7" }, "rekenkundig": { "form": "rekenkundig", "cornetto_id": "r_a-14567", "cornetto_synset_id": "n_a-525502", "wordnet_id": "a-03044869", "pos": "JJ", "sense": "volgens de rekenkunde", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "relatief": { "form": "relatief", "cornetto_id": "r_a-14568", "cornetto_synset_id": "n_a-503873", "wordnet_id": "", "pos": "JJ", "sense": "verhoudingsgewijs", "polarity": "0.0", "subjectivity": "0.5", "intensity": "0.9", "confidence": "1.0" }, "relationeel": { "form": "relationeel", "cornetto_id": "r_a-14679", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "mbt. relatie(s)", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "relaxed": { "form": "relaxed", "cornetto_id": "r_a-14569", "cornetto_synset_id": "d_a-9464", "wordnet_id": "a-00971660", "pos": "JJ", "sense": "op z'n gemak", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "relevant": { "form": "relevant", "cornetto_id": "r_a-14570", "cornetto_synset_id": "n_a-525520", "wordnet_id": "a-01975138", "pos": "JJ", "sense": "van belang", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "religieus": { "form": "religieus", "cornetto_id": "r_a-14571", "cornetto_synset_id": "d_a-9319", "wordnet_id": "a-01781478", "pos": "JJ", "sense": "godsdienstig", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "remonstrants": { "form": "remonstrants", "cornetto_id": "r_a-14572", "cornetto_synset_id": "n_a-525550", "wordnet_id": "", "pos": "JJ", "sense": "mbt. de Remonstrantse Broederschap", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "renaissancistisch": { "form": "renaissancistisch", "cornetto_id": "r_a-14727", "cornetto_synset_id": "n_a-525560", "wordnet_id": "", "pos": "JJ", "sense": "mbt. de Renaissance", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "repressief": { "form": "repressief", "cornetto_id": "r_a-14577", "cornetto_synset_id": "n_a-520809", "wordnet_id": "a-02004176", "pos": "JJ", "sense": "onderdrukkend", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "republikeins": { "form": "republikeins", "cornetto_id": "r_a-14758", "cornetto_synset_id": "n_a-525622", "wordnet_id": "a-02788378", "pos": "JJ", "sense": "van de republikeinen", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "resistent": { "form": "resistent", "cornetto_id": "r_a-14578", "cornetto_synset_id": "n_a-513410", "wordnet_id": "a-00007990", "pos": "JJ", "sense": "immuun", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "respectabel": { "form": "respectabel", "cornetto_id": "r_a-14580", "cornetto_synset_id": "d_a-9255", "wordnet_id": "a-01982646", "pos": "JJ", "sense": "respect verdienend", "polarity": "0.3", "subjectivity": "0.5", "intensity": "0.9", "confidence": "0.7" }, "respectievelijk": { "form": "respectievelijk", "cornetto_id": "r_a-14582", "cornetto_synset_id": "n_a-525653", "wordnet_id": "a-00494409", "pos": "JJ", "sense": "respectief", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "0.9", "confidence": "0.7" }, "respectloos": { "form": "respectloos", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "respectvol": { "form": "respectvol", "cornetto_id": "r_a-14729", "cornetto_synset_id": "n_a-508023", "wordnet_id": "a-01993940", "pos": "JJ", "sense": "met respect", "polarity": "0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "restrictief": { "form": "restrictief", "cornetto_id": "r_a-14684", "cornetto_synset_id": "n_a-525672", "wordnet_id": "a-01888941", "pos": "JJ", "sense": "inperkend", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "retorisch": { "form": "retorisch", "cornetto_id": "r_a-14767", "cornetto_synset_id": "n_a-504613", "wordnet_id": "a-00073465", "pos": "JJ", "sense": "bombastisch", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "retrospectief": { "form": "retrospectief", "cornetto_id": "r_a-14584", "cornetto_synset_id": "n_a-525712", "wordnet_id": "a-01884539", "pos": "JJ", "sense": "terugkijkend", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "reumatisch": { "form": "reumatisch", "cornetto_id": "r_a-14768", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "met reumatiek", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "reusachtig": { "form": "reusachtig", "cornetto_id": "r_a-14585", "cornetto_synset_id": "n_a-508356", "wordnet_id": "a-01387319", "pos": "JJ", "sense": "gigantisch", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.4", "confidence": "0.9" }, "reuze": { "form": "reuze", "cornetto_id": "r_a-14586", "cornetto_synset_id": "n_a-510820", "wordnet_id": "a-01576071", "pos": "JJ", "sense": "reusachtig", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "reëel": { "form": "reëel", "cornetto_id": "r_a-14555", "cornetto_synset_id": "n_a-520216", "wordnet_id": "a-01943406", "pos": "JJ", "sense": "realistisch", "polarity": "0.1", "subjectivity": "0.5", "intensity": "0.9", "confidence": "0.7" }, "riant": { "form": "riant", "cornetto_id": "r_a-14769", "cornetto_synset_id": "n_a-525762", "wordnet_id": "a-00177547", "pos": "JJ", "sense": "aantrekkelijk", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "ridicuul": { "form": "ridicuul", "cornetto_id": "r_a-14591", "cornetto_synset_id": "n_a-503484", "wordnet_id": "a-00221627", "pos": "JJ", "sense": "bespottelijk", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.7", "confidence": "1.0" }, "rigide": { "form": "rigide", "cornetto_id": "r_a-14592", "cornetto_synset_id": "n_a-529698", "wordnet_id": "a-01043924", "pos": "JJ", "sense": "star", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "rigoureus": { "form": "rigoureus", "cornetto_id": "r_a-14593", "cornetto_synset_id": "n_a-524954", "wordnet_id": "a-00841934", "pos": "JJ", "sense": "drastisch", "polarity": "-0.2", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "rijk": { "form": "rijk", "cornetto_id": "r_a-14770", "cornetto_synset_id": "n_a-525828", "wordnet_id": "a-00013887", "pos": "JJ", "sense": "ruim voorzien van iets", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "rijp": { "form": "rijp", "cornetto_id": "r_a-14771", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "weloverwogen", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "rimpelig": { "form": "rimpelig", "cornetto_id": "r_a-14600", "cornetto_synset_id": "n_a-510496", "wordnet_id": "a-00088157", "pos": "JJ", "sense": "met rimpels", "polarity": "-0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "riskant": { "form": "riskant", "cornetto_id": "r_a-14602", "cornetto_synset_id": "n_a-525938", "wordnet_id": "a-00065791", "pos": "JJ", "sense": "gevaarlijk", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "robuust": { "form": "robuust", "cornetto_id": "r_a-14605", "cornetto_synset_id": "d_a-9272", "wordnet_id": "a-02038126", "pos": "JJ", "sense": "fors", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.3", "confidence": "1.0" }, "roekeloos": { "form": "roekeloos", "cornetto_id": "r_a-14606", "cornetto_synset_id": "n_a-525999", "wordnet_id": "a-00250483", "pos": "JJ", "sense": "heel onbezonnen", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "roemloos": { "form": "roemloos", "cornetto_id": "r_a-14693", "cornetto_synset_id": "n_a-526001", "wordnet_id": "a-01122411", "pos": "JJ", "sense": "oneervol", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "roemrijk": { "form": "roemrijk", "cornetto_id": "r_a-14607", "cornetto_synset_id": "n_a-511105", "wordnet_id": "a-01285376", "pos": "JJ", "sense": "glorieus", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "roemrucht": { "form": "roemrucht", "cornetto_id": "r_a-14608", "cornetto_synset_id": "n_a-503694", "wordnet_id": "a-01375831", "pos": "JJ", "sense": "vermaard", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "roemruchtig": { "form": "roemruchtig", "cornetto_id": "d_a-416294", "cornetto_synset_id": "n_a-503694", "wordnet_id": "a-01375831", "pos": "JJ", "sense": "", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "roemvol": { "form": "roemvol", "cornetto_id": "r_a-14734", "cornetto_synset_id": "n_a-511105", "wordnet_id": "a-01285376", "pos": "JJ", "sense": "glorieus", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "roerend": { "form": "roerend", "cornetto_id": "r_a-14774", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "vervoerbaar", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.1", "confidence": "0.7" }, "roerig": { "form": "roerig", "cornetto_id": "r_a-14610", "cornetto_synset_id": "c_384", "wordnet_id": "a-00031974", "pos": "JJ", "sense": "druk", "polarity": "-0.2", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "roerloos": { "form": "roerloos", "cornetto_id": "r_a-14775", "cornetto_synset_id": "n_a-526013", "wordnet_id": "a-01910652", "pos": "JJ", "sense": "stuurloos", "polarity": "-0.2", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "roestkleurig": { "form": "roestkleurig", "cornetto_id": "r_a-14736", "cornetto_synset_id": "n_a-526029", "wordnet_id": "a-00382874", "pos": "JJ", "sense": "roestbruin", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "roetzwart": { "form": "roetzwart", "cornetto_id": "r_a-14614", "cornetto_synset_id": "n_a-523373", "wordnet_id": "a-00054364", "pos": "JJ", "sense": "pikzwart", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "rokerig": { "form": "rokerig", "cornetto_id": "r_a-14696", "cornetto_synset_id": "n_a-526046", "wordnet_id": "a-02233927", "pos": "JJ", "sense": "vol rook", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "romantisch": { "form": "romantisch", "cornetto_id": "r_a-14778", "cornetto_synset_id": "n_a-526107", "wordnet_id": "a-01465214", "pos": "JJ", "sense": "van de romantiek", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "rommelig": { "form": "rommelig", "cornetto_id": "r_a-14623", "cornetto_synset_id": "n_a-534209", "wordnet_id": "a-01204443", "pos": "JJ", "sense": "wanordelijk", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "rood": { "form": "rood", "cornetto_id": "r_a-14629", "cornetto_synset_id": "n_a-517389", "wordnet_id": "a-02031335", "pos": "JJ", "sense": "links", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "roodbruin": { "form": "roodbruin", "cornetto_id": "r_a-14698", "cornetto_synset_id": "n_a-526151", "wordnet_id": "a-00382792", "pos": "JJ", "sense": "roodachtig bruin", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "rooms": { "form": "rooms", "cornetto_id": "r_a-14632", "cornetto_synset_id": "n_a-526193", "wordnet_id": "a-02921753", "pos": "JJ", "sense": "", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.9" }, "rooms-katholiek": { "form": "rooms-katholiek", "cornetto_id": "r_a-14633", "cornetto_synset_id": "n_a-526193", "wordnet_id": "a-02921753", "pos": "JJ", "sense": "katholiek", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.9" }, "rooskleurig": { "form": "rooskleurig", "cornetto_id": "r_a-14634", "cornetto_synset_id": "n_a-532117", "wordnet_id": "a-00382173", "pos": "JJ", "sense": "veelbelovend", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "rossig": { "form": "rossig", "cornetto_id": "r_a-14636", "cornetto_synset_id": "n_a-526211", "wordnet_id": "a-00381097", "pos": "JJ", "sense": "roodachtig van haar", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "rot": { "form": "rot", "cornetto_id": "r_a-14638", "cornetto_synset_id": "d_a-9577", "wordnet_id": "a-00247439", "pos": "JJ", "sense": "ellendig", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "rotsvast": { "form": "rotsvast", "cornetto_id": "r_a-14702", "cornetto_synset_id": "n_a-521690", "wordnet_id": "a-00335895", "pos": "JJ", "sense": "onwrikbaar", "polarity": "0.0", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "routinematig": { "form": "routinematig", "cornetto_id": "r_a-14703", "cornetto_synset_id": "n_a-509789", "wordnet_id": "a-00312234", "pos": "JJ", "sense": "als een automatisme", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "routineus": { "form": "routineus", "cornetto_id": "r_a-14704", "cornetto_synset_id": "d_a-9172", "wordnet_id": "a-02226162", "pos": "JJ", "sense": "geroutineerd", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "royaal": { "form": "royaal", "cornetto_id": "r_a-14642", "cornetto_synset_id": "n_a-511626", "wordnet_id": "a-00014490", "pos": "JJ", "sense": "ruim", "polarity": "0.1", "subjectivity": "0.7", "intensity": "1.7", "confidence": "0.7" }, "roze": { "form": "roze", "cornetto_id": "r_a-14643", "cornetto_synset_id": "n_a-526273", "wordnet_id": "a-00379595", "pos": "JJ", "sense": "bleekrood", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "rudimentair": { "form": "rudimentair", "cornetto_id": "r_a-14647", "cornetto_synset_id": "n_a-526297", "wordnet_id": "a-00742714", "pos": "JJ", "sense": "als rudiment", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "ruim": { "form": "ruim", "cornetto_id": "c_545617", "cornetto_synset_id": "n_a-526330", "wordnet_id": "a-00286578", "pos": "JJ", "sense": "van karakter", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "ruimdenkend": { "form": "ruimdenkend", "cornetto_id": "r_a-14651", "cornetto_synset_id": "n_a-526330", "wordnet_id": "a-00286578", "pos": "JJ", "sense": "onbekrompen", "polarity": "0.2", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "ruimhartig": { "form": "ruimhartig", "cornetto_id": "r_a-14706", "cornetto_synset_id": "d_a-9326", "wordnet_id": "a-01075178", "pos": "JJ", "sense": "mild", "polarity": "0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "ruimschoots": { "form": "ruimschoots", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "", "sense": "", "polarity": "0.1", "subjectivity": "0.7", "intensity": "1.7", "confidence": "1.0" }, "rul": { "form": "rul", "cornetto_id": "r_a-14654", "cornetto_synset_id": "n_a-519402", "wordnet_id": "a-00142040", "pos": "JJ", "sense": "mul", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "rusteloos": { "form": "rusteloos", "cornetto_id": "r_a-14656", "cornetto_synset_id": "c_384", "wordnet_id": "a-00031974", "pos": "JJ", "sense": "ongedurig", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "rustiek": { "form": "rustiek", "cornetto_id": "r_a-14657", "cornetto_synset_id": "n_a-516683", "wordnet_id": "a-02790726", "pos": "JJ", "sense": "landelijk", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "rustig": { "form": "rustig", "cornetto_id": "r_a-14658", "cornetto_synset_id": "n_a-526409", "wordnet_id": "a-00529657", "pos": "JJ", "sense": "kalm", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "ruw": { "form": "ruw", "cornetto_id": "r_a-14663", "cornetto_synset_id": "c_581", "wordnet_id": "a-00642725", "pos": "JJ", "sense": "van karakter", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "rücksichtslos": { "form": "rücksichtslos", "cornetto_id": "r_a-14710", "cornetto_synset_id": "d_a-9455", "wordnet_id": "a-01262611", "pos": "JJ", "sense": "nietsontziend", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "ruzie": { "form": "ruzie", "cornetto_id": "r_n-32330", "cornetto_synset_id": "d_n-30590", "wordnet_id": "n-07184149", "pos": "NN", "sense": "", "polarity": "-0.2", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "ruziën": { "form": "ruziën", "cornetto_id": "r_v-6893", "cornetto_synset_id": "d_v-6192", "wordnet_id": "v-00775156", "pos": "VB", "sense": "", "polarity": "-0.2", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "ruziemaken": { "form": "ruziemaken", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "-0.2", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "saai": { "form": "saai", "cornetto_id": "r_a-14781", "cornetto_synset_id": "c_573", "wordnet_id": "a-02307729", "pos": "JJ", "sense": "om je bij te vervelen", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "sadistisch": { "form": "sadistisch", "cornetto_id": "r_a-14784", "cornetto_synset_id": "n_a-526478", "wordnet_id": "a-02057535", "pos": "JJ", "sense": "getuigend van sadisme", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.2", "confidence": "0.7" }, "safe": { "form": "safe", "cornetto_id": "r_a-14785", "cornetto_synset_id": "d_a-9565", "wordnet_id": "a-02093888", "pos": "JJ", "sense": "veilig", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "saillant": { "form": "saillant", "cornetto_id": "r_a-14786", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "opvallend", "polarity": "0.3", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "samenhangend": { "form": "samenhangend", "cornetto_id": "r_a-15121", "cornetto_synset_id": "n_a-526545", "wordnet_id": "a-00053384", "pos": "JJ", "sense": "coherent", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "sappig": { "form": "sappig", "cornetto_id": "r_a-14791", "cornetto_synset_id": "n_a-528088", "wordnet_id": "a-00133417", "pos": "JJ", "sense": "smeuïg", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "sarcastisch": { "form": "sarcastisch", "cornetto_id": "r_a-14792", "cornetto_synset_id": "n_a-526596", "wordnet_id": "a-02079029", "pos": "JJ", "sense": "vol sarcasme", "polarity": "0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "sardonisch": { "form": "sardonisch", "cornetto_id": "r_a-14793", "cornetto_synset_id": "n_a-507785", "wordnet_id": "a-02074673", "pos": "JJ", "sense": "met boosaardige spot", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "satanisch": { "form": "satanisch", "cornetto_id": "r_a-14794", "cornetto_synset_id": "n_a-507785", "wordnet_id": "a-02074673", "pos": "JJ", "sense": "duivels", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.3", "confidence": "0.7" }, "scandaleus": { "form": "scandaleus", "cornetto_id": "r_a-14797", "cornetto_synset_id": "d_a-9514", "wordnet_id": "", "pos": "JJ", "sense": "schandelijk", "polarity": "-0.2", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "sceptisch": { "form": "sceptisch", "cornetto_id": "r_a-14798", "cornetto_synset_id": "n_a-526640", "wordnet_id": "a-00647247", "pos": "JJ", "sense": "vol scepsis", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "schaamteloos": { "form": "schaamteloos", "cornetto_id": "r_a-14801", "cornetto_synset_id": "n_a-521042", "wordnet_id": "a-00154965", "pos": "JJ", "sense": "ongegeneerd", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "schaapachtig": { "form": "schaapachtig", "cornetto_id": "r_a-14802", "cornetto_synset_id": "c_579", "wordnet_id": "a-01841390", "pos": "JJ", "sense": "onnozel", "polarity": "-0.2", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "schaars": { "form": "schaars", "cornetto_id": "r_a-14803", "cornetto_synset_id": "n_a-526676", "wordnet_id": "a-00106821", "pos": "JJ", "sense": "karig", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "schadelijk": { "form": "schadelijk", "cornetto_id": "r_a-14804", "cornetto_synset_id": "n_a-526699", "wordnet_id": "a-00065488", "pos": "JJ", "sense": "nadelig", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "schadevrij": { "form": "schadevrij", "cornetto_id": "r_a-15124", "cornetto_synset_id": "n_a-526708", "wordnet_id": "", "pos": "JJ", "sense": "zonder schade", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "schalks": { "form": "schalks", "cornetto_id": "r_a-14805", "cornetto_synset_id": "n_a-520935", "wordnet_id": "a-00148078", "pos": "JJ", "sense": "guitig", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "schamel": { "form": "schamel", "cornetto_id": "r_a-15357", "cornetto_synset_id": "n_a-510497", "wordnet_id": "a-02340458", "pos": "JJ", "sense": "pover", "polarity": "-0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "schamper": { "form": "schamper", "cornetto_id": "r_a-14807", "cornetto_synset_id": "n_a-518925", "wordnet_id": "a-00906655", "pos": "JJ", "sense": "geringschattend", "polarity": "-0.2", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "schandalig": { "form": "schandalig", "cornetto_id": "r_a-14808", "cornetto_synset_id": "d_a-9514", "wordnet_id": "", "pos": "JJ", "sense": "zeer afkeurenswaardig", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.9", "confidence": "0.7" }, "schande": { "form": "schande", "cornetto_id": "r_n-32740", "cornetto_synset_id": "d_n-36251", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.4", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "schandelijk": { "form": "schandelijk", "cornetto_id": "r_a-14809", "cornetto_synset_id": "d_a-9514", "wordnet_id": "", "pos": "JJ", "sense": "zeer afkeurenswaardig", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "schappelijk": { "form": "schappelijk", "cornetto_id": "r_a-14810", "cornetto_synset_id": "n_a-525316", "wordnet_id": "a-00218440", "pos": "JJ", "sense": "redelijk", "polarity": "0.3", "subjectivity": "0.9", "intensity": "0.9", "confidence": "0.9" }, "schatrijk": { "form": "schatrijk", "cornetto_id": "r_a-15203", "cornetto_synset_id": "n_a-526762", "wordnet_id": "a-02022167", "pos": "JJ", "sense": "zeer rijk", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "scheef": { "form": "scheef", "cornetto_id": "r_a-14815", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "verkeerd", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "scheel": { "form": "scheel", "cornetto_id": "r_a-14816", "cornetto_synset_id": "n_a-526784", "wordnet_id": "a-00653514", "pos": "JJ", "sense": "loens", "polarity": "-0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "scheidsrechterlijk": { "form": "scheidsrechterlijk", "cornetto_id": "r_a-15358", "cornetto_synset_id": "n_a-526852", "wordnet_id": "a-02637730", "pos": "JJ", "sense": "van scheidsrechter", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "schelden": { "form": "schelden", "cornetto_id": "r_v-6986", "cornetto_synset_id": "d_v-6289", "wordnet_id": "v-00824767", "pos": "VB", "sense": "", "polarity": "-0.2", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "schemerachtig": { "form": "schemerachtig", "cornetto_id": "r_a-15206", "cornetto_synset_id": "n_a-526887", "wordnet_id": "a-00274551", "pos": "JJ", "sense": "schemerig", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "scherp": { "form": "scherp", "cornetto_id": "r_a-15310", "cornetto_synset_id": "n_a-507125", "wordnet_id": "a-00834198", "pos": "JJ", "sense": "goed, effectief", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "scherpzinnig": { "form": "scherpzinnig", "cornetto_id": "r_a-14827", "cornetto_synset_id": "c_235", "wordnet_id": "a-00438909", "pos": "JJ", "sense": "schrander", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "schichtig": { "form": "schichtig", "cornetto_id": "r_a-14830", "cornetto_synset_id": "n_a-527420", "wordnet_id": "a-00162863", "pos": "JJ", "sense": "schuw", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "schietklaar": { "form": "schietklaar", "cornetto_id": "r_a-15210", "cornetto_synset_id": "n_a-526976", "wordnet_id": "", "pos": "JJ", "sense": "klaar om te schieten", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "schijnbaar": { "form": "schijnbaar", "cornetto_id": "r_a-14831", "cornetto_synset_id": "n_a-526993", "wordnet_id": "a-00028471", "pos": "JJ", "sense": "ogenschijnlijk", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "0.9", "confidence": "1.0" }, "schilderachtig": { "form": "schilderachtig", "cornetto_id": "r_a-14835", "cornetto_synset_id": "n_a-527020", "wordnet_id": "a-00219924", "pos": "JJ", "sense": "pittoresk", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "schilferig": { "form": "schilferig", "cornetto_id": "r_a-15311", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "schilferachtig", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "schimmelig": { "form": "schimmelig", "cornetto_id": "r_a-15312", "cornetto_synset_id": "n_a-527058", "wordnet_id": "", "pos": "JJ", "sense": "schimmelachtig", "polarity": "-0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "schimmig": { "form": "schimmig", "cornetto_id": "r_a-14840", "cornetto_synset_id": "d_a-9495", "wordnet_id": "a-00102930", "pos": "JJ", "sense": "vaag", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "schitterend": { "form": "schitterend", "cornetto_id": "r_a-15313", "cornetto_synset_id": "d_v-6333", "wordnet_id": "", "pos": "JJ", "sense": "glinsterend", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "schizofreen": { "form": "schizofreen", "cornetto_id": "r_a-14839", "cornetto_synset_id": "n_a-527080", "wordnet_id": "a-03115277", "pos": "JJ", "sense": "met gespleten persoonlijkheid", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "schlemielig": { "form": "schlemielig", "cornetto_id": "r_a-15214", "cornetto_synset_id": "d_a-9454", "wordnet_id": "a-01140896", "pos": "JJ", "sense": "als (van) een schlemiel", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "schokkend": { "form": "schokkend", "cornetto_id": "r_a-15128", "cornetto_synset_id": "n_a-527099", "wordnet_id": "a-00193015", "pos": "JJ", "sense": "een schok teweegbrengend", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.3", "confidence": "1.0" }, "schonkig": { "form": "schonkig", "cornetto_id": "r_a-14841", "cornetto_synset_id": "n_a-527114", "wordnet_id": "a-00912288", "pos": "JJ", "sense": "(p)lomp", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "schoolmeesterachtig": { "form": "schoolmeesterachtig", "cornetto_id": "r_a-15130", "cornetto_synset_id": "n_a-527151", "wordnet_id": "a-01324131", "pos": "JJ", "sense": "pedant", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "schoon": { "form": "schoon", "cornetto_id": "r_a-14846", "cornetto_synset_id": "n_a-519884", "wordnet_id": "a-01582461", "pos": "JJ", "sense": "netto", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "schor": { "form": "schor", "cornetto_id": "r_a-14848", "cornetto_synset_id": "n_a-512205", "wordnet_id": "a-01667110", "pos": "JJ", "sense": "hees", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "schrander": { "form": "schrander", "cornetto_id": "r_a-14853", "cornetto_synset_id": "c_235", "wordnet_id": "a-00438909", "pos": "JJ", "sense": "pienter", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "schriel": { "form": "schriel", "cornetto_id": "r_a-14855", "cornetto_synset_id": "n_a-527266", "wordnet_id": "a-00106456", "pos": "JJ", "sense": "mager", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "schrijnend": { "form": "schrijnend", "cornetto_id": "r_a-14857", "cornetto_synset_id": "n_a-512119", "wordnet_id": "a-01374004", "pos": "JJ", "sense": "navrant", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "schrikbarend": { "form": "schrikbarend", "cornetto_id": "r_a-14858", "cornetto_synset_id": "n_a-532685", "wordnet_id": "a-00193799", "pos": "JJ", "sense": "verschrikkelijk", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.6", "confidence": "0.7" }, "schril": { "form": "schril", "cornetto_id": "r_a-14859", "cornetto_synset_id": "n_a-527309", "wordnet_id": "a-01214430", "pos": "JJ", "sense": "onaangenaam fel", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "schuchter": { "form": "schuchter", "cornetto_id": "r_a-14861", "cornetto_synset_id": "n_a-532538", "wordnet_id": "a-00339941", "pos": "JJ", "sense": "bedeesd", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "schuin": { "form": "schuin", "cornetto_id": "r_a-14863", "cornetto_synset_id": "n_a-527375", "wordnet_id": "a-00425313", "pos": "JJ", "sense": "schunnig", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "schuins": { "form": "schuins", "cornetto_id": "r_a-14864", "cornetto_synset_id": "n_a-527374", "wordnet_id": "a-00762721", "pos": "JJ", "sense": "schuin", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "schuldig": { "form": "schuldig", "cornetto_id": "r_a-14867", "cornetto_synset_id": "n_a-527387", "wordnet_id": "a-01321429", "pos": "JJ", "sense": "verschuldigd", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "schunnig": { "form": "schunnig", "cornetto_id": "r_a-14868", "cornetto_synset_id": "c_532", "wordnet_id": "a-00361509", "pos": "JJ", "sense": "obsceen", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "schurftig": { "form": "schurftig", "cornetto_id": "r_a-15317", "cornetto_synset_id": "n_a-527402", "wordnet_id": "a-02406166", "pos": "JJ", "sense": "schurftachtig", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "schuw": { "form": "schuw", "cornetto_id": "r_a-14870", "cornetto_synset_id": "n_a-527420", "wordnet_id": "a-00162863", "pos": "JJ", "sense": "schichtig", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "scrupuleus": { "form": "scrupuleus", "cornetto_id": "r_a-14871", "cornetto_synset_id": "n_a-519716", "wordnet_id": "a-00021766", "pos": "JJ", "sense": "nauwkeurig", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "secuur": { "form": "secuur", "cornetto_id": "r_a-14875", "cornetto_synset_id": "n_a-519716", "wordnet_id": "a-00021766", "pos": "JJ", "sense": "nauwgezet", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "sefardisch": { "form": "sefardisch", "cornetto_id": "r_a-15133", "cornetto_synset_id": "n_a-527476", "wordnet_id": "", "pos": "JJ", "sense": "mbt. de sefarden", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "seismisch": { "form": "seismisch", "cornetto_id": "r_a-15134", "cornetto_synset_id": "n_a-527487", "wordnet_id": "a-02293230", "pos": "JJ", "sense": "mbt. aardbevingen", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "seksistisch": { "form": "seksistisch", "cornetto_id": "r_a-14876", "cornetto_synset_id": "n_a-527503", "wordnet_id": "a-00286063", "pos": "JJ", "sense": "waaruit seksisme blijkt", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "seksueel": { "form": "seksueel", "cornetto_id": "r_a-14877", "cornetto_synset_id": "n_a-527516", "wordnet_id": "a-02132735", "pos": "JJ", "sense": "mbt. seksualiteit", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "sektarisch": { "form": "sektarisch", "cornetto_id": "r_a-14878", "cornetto_synset_id": "n_a-527519", "wordnet_id": "a-02091574", "pos": "JJ", "sense": "mbt. een sekte", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "selfmade": { "form": "selfmade", "cornetto_id": "r_a-14881", "cornetto_synset_id": "n_a-527535", "wordnet_id": "", "pos": "JJ", "sense": "zelf gedaan", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "senior": { "form": "senior", "cornetto_id": "r_a-15324", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "met meer ervaring", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "sensatiebelust": { "form": "sensatiebelust", "cornetto_id": "r_a-15231", "cornetto_synset_id": "n_a-527556", "wordnet_id": "", "pos": "JJ", "sense": "belust op sensatie", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "sensationeel": { "form": "sensationeel", "cornetto_id": "r_a-14884", "cornetto_synset_id": "n_a-527561", "wordnet_id": "a-00795246", "pos": "JJ", "sense": "opzienbarend", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "sensibel": { "form": "sensibel", "cornetto_id": "r_a-14885", "cornetto_synset_id": "d_a-9311", "wordnet_id": "a-01745946", "pos": "JJ", "sense": "gevoelig", "polarity": "0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "sentimenteel": { "form": "sentimenteel", "cornetto_id": "r_a-14888", "cornetto_synset_id": "n_a-527573", "wordnet_id": "a-00618752", "pos": "JJ", "sense": "week", "polarity": "-0.1", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "separaat": { "form": "separaat", "cornetto_id": "r_a-15136", "cornetto_synset_id": "n_a-502386", "wordnet_id": "a-00160768", "pos": "JJ", "sense": "gescheiden", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.1", "confidence": "0.7" }, "sereen": { "form": "sereen", "cornetto_id": "r_a-14889", "cornetto_synset_id": "n_a-527595", "wordnet_id": "a-00858053", "pos": "JJ", "sense": "kalm en vredig", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.1", "confidence": "0.7" }, "serieus": { "form": "serieus", "cornetto_id": "r_a-14890", "cornetto_synset_id": "d_a-9263", "wordnet_id": "", "pos": "JJ", "sense": "gemeend", "polarity": "0.3", "subjectivity": "0.6", "intensity": "1.1", "confidence": "1.0" }, "sexy": { "form": "sexy", "cornetto_id": "r_a-14892", "cornetto_synset_id": "n_a-527631", "wordnet_id": "", "pos": "JJ", "sense": "opwindend", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "sfeerloos": { "form": "sfeerloos", "cornetto_id": "r_a-15234", "cornetto_synset_id": "n_a-521205", "wordnet_id": "a-00364479", "pos": "JJ", "sense": "zonder sfeer", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "sfeervol": { "form": "sfeervol", "cornetto_id": "r_a-14893", "cornetto_synset_id": "n_a-510897", "wordnet_id": "a-00166146", "pos": "JJ", "sense": "met sfeer", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "shabby": { "form": "shabby", "cornetto_id": "r_a-14894", "cornetto_synset_id": "n_a-527752", "wordnet_id": "a-02503656", "pos": "JJ", "sense": "sjofel", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "significant": { "form": "significant", "cornetto_id": "r_a-14897", "cornetto_synset_id": "d_a-9178", "wordnet_id": "a-01830403", "pos": "JJ", "sense": "veelbetekenend", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.1", "confidence": "0.7" }, "simpel": { "form": "simpel", "cornetto_id": "r_a-14900", "cornetto_synset_id": "c_579", "wordnet_id": "a-01841390", "pos": "JJ", "sense": "onnozel", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "simplistisch": { "form": "simplistisch", "cornetto_id": "r_a-14901", "cornetto_synset_id": "n_a-527706", "wordnet_id": "a-01116118", "pos": "JJ", "sense": "al te simpel", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "simultaan": { "form": "simultaan", "cornetto_id": "r_a-14902", "cornetto_synset_id": "d_a-9640", "wordnet_id": "", "pos": "JJ", "sense": "tegelijk", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "sinister": { "form": "sinister", "cornetto_id": "r_a-14904", "cornetto_synset_id": "n_a-521232", "wordnet_id": "a-00176838", "pos": "JJ", "sense": "onheilspellend", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "sip": { "form": "sip", "cornetto_id": "r_a-14905", "cornetto_synset_id": "n_a-503260", "wordnet_id": "a-00252130", "pos": "JJ", "sense": "beteuterd", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "sjofel": { "form": "sjofel", "cornetto_id": "r_a-14906", "cornetto_synset_id": "n_a-527752", "wordnet_id": "a-02503656", "pos": "JJ", "sense": "shabby", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "slaafs": { "form": "slaafs", "cornetto_id": "r_a-14907", "cornetto_synset_id": "n_a-527772", "wordnet_id": "a-00040058", "pos": "JJ", "sense": "serviel", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "slaapverwekkend": { "form": "slaapverwekkend", "cornetto_id": "r_a-15139", "cornetto_synset_id": "c_573", "wordnet_id": "a-02307729", "pos": "JJ", "sense": "heel saai", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "slap": { "form": "slap", "cornetto_id": "r_a-15327", "cornetto_synset_id": "n_a-527854", "wordnet_id": "a-00302951", "pos": "JJ", "sense": "niet druk", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "slapeloos": { "form": "slapeloos", "cornetto_id": "r_a-14914", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "zonder slapen", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "slecht": { "form": "slecht", "cornetto_id": "r_a-14916", "cornetto_synset_id": "c_174", "wordnet_id": "a-01125429", "pos": "JJ", "sense": "niet goed", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "slijmerig": { "form": "slijmerig", "cornetto_id": "r_a-14922", "cornetto_synset_id": "n_a-516246", "wordnet_id": "a-00789871", "pos": "JJ", "sense": "kruiperig", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "slim": { "form": "slim", "cornetto_id": "r_a-14923", "cornetto_synset_id": "n_a-527945", "wordnet_id": "a-00092136", "pos": "JJ", "sense": "pienter", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "slinks": { "form": "slinks", "cornetto_id": "r_a-14924", "cornetto_synset_id": "d_a-9523", "wordnet_id": "a-00148078", "pos": "JJ", "sense": "sluw", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "sloom": { "form": "sloom", "cornetto_id": "r_a-14926", "cornetto_synset_id": "n_a-527962", "wordnet_id": "a-00477284", "pos": "JJ", "sense": "futloos", "polarity": "-0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "slopend": { "form": "slopend", "cornetto_id": "r_a-14927", "cornetto_synset_id": "n_a-527968", "wordnet_id": "a-00045888", "pos": "JJ", "sense": "afmattend", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "slordig": { "form": "slordig", "cornetto_id": "r_a-14929", "cornetto_synset_id": "n_a-527970", "wordnet_id": "a-00308593", "pos": "JJ", "sense": "om en nabij", "polarity": "-0.2", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "smaakloos": { "form": "smaakloos", "cornetto_id": "r_a-15245", "cornetto_synset_id": "n_a-528048", "wordnet_id": "a-02393401", "pos": "JJ", "sense": "zonder smaak", "polarity": "0.2", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "smaakvol": { "form": "smaakvol", "cornetto_id": "r_a-14932", "cornetto_synset_id": "n_a-528044", "wordnet_id": "a-00689215", "pos": "JJ", "sense": "met veel smaak", "polarity": "0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "smachtend": { "form": "smachtend", "cornetto_id": "r_a-15142", "cornetto_synset_id": "d_a-9175", "wordnet_id": "a-00010726", "pos": "JJ", "sense": "hevig verlangend", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "smadelijk": { "form": "smadelijk", "cornetto_id": "r_a-14933", "cornetto_synset_id": "n_a-532606", "wordnet_id": "a-01160031", "pos": "JJ", "sense": "vernederend", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "smakelijk": { "form": "smakelijk", "cornetto_id": "r_a-14935", "cornetto_synset_id": "n_a-528047", "wordnet_id": "a-00804371", "pos": "JJ", "sense": "smeuïg", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "smakeloos": { "form": "smakeloos", "cornetto_id": "r_a-14936", "cornetto_synset_id": "c_720", "wordnet_id": "a-00220956", "pos": "JJ", "sense": "niet bijzonder mooi", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "smal": { "form": "smal", "cornetto_id": "r_a-14937", "cornetto_synset_id": "d_a-9417", "wordnet_id": "a-02561888", "pos": "JJ", "sense": "niet breed", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "smartelijk": { "form": "smartelijk", "cornetto_id": "r_a-14938", "cornetto_synset_id": "n_a-531138", "wordnet_id": "a-01126291", "pos": "JJ", "sense": "tragisch", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "smerig": { "form": "smerig", "cornetto_id": "r_a-14939", "cornetto_synset_id": "d_a-9604", "wordnet_id": "a-00419289", "pos": "JJ", "sense": "vuil", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "smetteloos": { "form": "smetteloos", "cornetto_id": "r_a-14940", "cornetto_synset_id": "n_a-504904", "wordnet_id": "a-00247013", "pos": "JJ", "sense": "vlekkeloos", "polarity": "0.4", "subjectivity": "0.5", "intensity": "1.1", "confidence": "0.7" }, "smeuïg": { "form": "smeuïg", "cornetto_id": "r_a-14942", "cornetto_synset_id": "n_a-528088", "wordnet_id": "a-00133417", "pos": "JJ", "sense": "smakelijk", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "smoorverliefd": { "form": "smoorverliefd", "cornetto_id": "r_a-15250", "cornetto_synset_id": "n_a-528098", "wordnet_id": "a-00798103", "pos": "JJ", "sense": "dolverliefd", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "snedig": { "form": "snedig", "cornetto_id": "r_a-14945", "cornetto_synset_id": "n_a-528108", "wordnet_id": "a-00032733", "pos": "JJ", "sense": "ad rem", "polarity": "-0.2", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "snel": { "form": "snel", "cornetto_id": "r_a-14948", "cornetto_synset_id": "n_a-528141", "wordnet_id": "a-00973677", "pos": "JJ", "sense": "modieus", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "snelgroeiend": { "form": "snelgroeiend", "cornetto_id": "r_a-15144", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "snel groeiend", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "snibbig": { "form": "snibbig", "cornetto_id": "r_a-14950", "cornetto_synset_id": "d_a-9191", "wordnet_id": "a-00225912", "pos": "JJ", "sense": "kattig", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "snijdend": { "form": "snijdend", "cornetto_id": "r_a-15330", "cornetto_synset_id": "n_a-528174", "wordnet_id": "a-00092136", "pos": "JJ", "sense": "kruisend", "polarity": "0.2", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "snikheet": { "form": "snikheet", "cornetto_id": "r_a-15146", "cornetto_synset_id": "n_a-528097", "wordnet_id": "a-00268383", "pos": "JJ", "sense": "erg heet", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "snipverkouden": { "form": "snipverkouden", "cornetto_id": "r_a-15254", "cornetto_synset_id": "n_a-528189", "wordnet_id": "", "pos": "JJ", "sense": "snotverkouden", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "snood": { "form": "snood", "cornetto_id": "r_a-14954", "cornetto_synset_id": "n_a-510247", "wordnet_id": "a-00225564", "pos": "JJ", "sense": "slecht", "polarity": "-0.7", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "snugger": { "form": "snugger", "cornetto_id": "r_a-14955", "cornetto_synset_id": "n_a-527945", "wordnet_id": "a-00092136", "pos": "JJ", "sense": "slim", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "sober": { "form": "sober", "cornetto_id": "r_a-14956", "cornetto_synset_id": "d_a-9525", "wordnet_id": "a-02421364", "pos": "JJ", "sense": "zonder overdaad", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "sociaal": { "form": "sociaal", "cornetto_id": "r_a-14959", "cornetto_synset_id": "n_a-528221", "wordnet_id": "a-02798370", "pos": "JJ", "sense": "in groepen levend", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "sociaal-cultureel": { "form": "sociaal-cultureel", "cornetto_id": "r_a-15147", "cornetto_synset_id": "n_a-528224", "wordnet_id": "", "pos": "JJ", "sense": "cultureel-maatschappelijk", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "sociaal-democratisch": { "form": "sociaal-democratisch", "cornetto_id": "r_a-15148", "cornetto_synset_id": "n_a-528225", "wordnet_id": "", "pos": "JJ", "sense": "v.d. sociaal-democratie", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "socialistisch": { "form": "socialistisch", "cornetto_id": "r_a-14960", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "v.h. socialisme", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "sociologisch": { "form": "sociologisch", "cornetto_id": "r_a-15150", "cornetto_synset_id": "n_a-528242", "wordnet_id": "a-02906206", "pos": "JJ", "sense": "mbt. de sociologie", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "soepel": { "form": "soepel", "cornetto_id": "r_a-14962", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "gemakkelijk", "polarity": "0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "solide": { "form": "solide", "cornetto_id": "r_a-14966", "cornetto_synset_id": "c_342", "wordnet_id": "a-02275209", "pos": "JJ", "sense": "degelijk", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.3", "confidence": "1.0" }, "sollen": { "form": "sollen", "cornetto_id": "r_v-7320", "cornetto_synset_id": "d_v-6588", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "-0.2", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "somber": { "form": "somber", "cornetto_id": "r_a-14970", "cornetto_synset_id": "n_a-528326", "wordnet_id": "a-00364479", "pos": "JJ", "sense": "treurigmakend donker", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "somptueus": { "form": "somptueus", "cornetto_id": "d_a-264718", "cornetto_synset_id": "d_a-9393", "wordnet_id": "a-00850053", "pos": "JJ", "sense": "", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "soortgelijk": { "form": "soortgelijk", "cornetto_id": "r_a-15152", "cornetto_synset_id": "d_a-9643", "wordnet_id": "", "pos": "JJ", "sense": "overeenkomstig", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "1.0" }, "spannend": { "form": "spannend", "cornetto_id": "r_a-14975", "cornetto_synset_id": "n_a-528399", "wordnet_id": "a-00921014", "pos": "JJ", "sense": "strak", "polarity": "0.1", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "speciaal": { "form": "speciaal", "cornetto_id": "r_a-14978", "cornetto_synset_id": "d_a-9188", "wordnet_id": "a-00966477", "pos": "JJ", "sense": "bijzonder", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "specifiek": { "form": "specifiek", "cornetto_id": "r_a-14980", "cornetto_synset_id": "n_a-514566", "wordnet_id": "a-00356926", "pos": "JJ", "sense": "niet algemeen", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "1.0" }, "spectaculair": { "form": "spectaculair", "cornetto_id": "r_a-14981", "cornetto_synset_id": "n_a-522093", "wordnet_id": "a-00601783", "pos": "JJ", "sense": "opzienbarend", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "speels": { "form": "speels", "cornetto_id": "r_a-14983", "cornetto_synset_id": "n_a-528450", "wordnet_id": "a-00269989", "pos": "JJ", "sense": "luchtig", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "speltechnisch": { "form": "speltechnisch", "cornetto_id": "r_a-15259", "cornetto_synset_id": "n_a-528497", "wordnet_id": "a-00484070", "pos": "JJ", "sense": "mbt. speltechniek", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "spichtig": { "form": "spichtig", "cornetto_id": "r_a-14984", "cornetto_synset_id": "n_a-528509", "wordnet_id": "a-00989544", "pos": "JJ", "sense": "mager", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "spiernaakt": { "form": "spiernaakt", "cornetto_id": "r_a-15260", "cornetto_synset_id": "n_a-528539", "wordnet_id": "a-00458266", "pos": "JJ", "sense": "helemaal naakt", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "spierwit": { "form": "spierwit", "cornetto_id": "r_a-15156", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "lijkbleek", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "spijkerhard": { "form": "spijkerhard", "cornetto_id": "r_a-15261", "cornetto_synset_id": "n_a-518422", "wordnet_id": "a-01507402", "pos": "JJ", "sense": "bikkelhard", "polarity": "0.1", "subjectivity": "0.7", "intensity": "1.3", "confidence": "0.7" }, "spijtig": { "form": "spijtig", "cornetto_id": "r_a-14985", "cornetto_synset_id": "n_a-503876", "wordnet_id": "a-00176838", "pos": "JJ", "sense": "jammer", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "spiksplinternieuw": { "form": "spiksplinternieuw", "cornetto_id": "r_a-15157", "cornetto_synset_id": "n_a-511095", "wordnet_id": "a-01641460", "pos": "JJ", "sense": "gloednieuw", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "spiritueel": { "form": "spiritueel", "cornetto_id": "r_a-15335", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "geestig", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "spits": { "form": "spits", "cornetto_id": "r_a-14989", "cornetto_synset_id": "c_235", "wordnet_id": "a-00438909", "pos": "JJ", "sense": "snel van geest", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.4", "confidence": "0.7" }, "spitsvondig": { "form": "spitsvondig", "cornetto_id": "r_a-14990", "cornetto_synset_id": "c_235", "wordnet_id": "a-00438909", "pos": "JJ", "sense": "snedig", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "splinternieuw": { "form": "splinternieuw", "cornetto_id": "r_a-15161", "cornetto_synset_id": "n_a-511095", "wordnet_id": "a-01641460", "pos": "JJ", "sense": "gloednieuw", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "spoedig": { "form": "spoedig", "cornetto_id": "r_a-15162", "cornetto_synset_id": "n_a-528631", "wordnet_id": "", "pos": "JJ", "sense": "snel", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "spontaan": { "form": "spontaan", "cornetto_id": "r_a-14991", "cornetto_synset_id": "c_746", "wordnet_id": "a-02282376", "pos": "JJ", "sense": "(als) vanzelf", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "spookachtig": { "form": "spookachtig", "cornetto_id": "r_a-15163", "cornetto_synset_id": "n_a-511467", "wordnet_id": "a-00193799", "pos": "JJ", "sense": "huiveringwekkend", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.4", "confidence": "0.7" }, "spoorloos": { "form": "spoorloos", "cornetto_id": "r_a-15164", "cornetto_synset_id": "d_a-9529", "wordnet_id": "a-02453492", "pos": "JJ", "sense": "onvindbaar", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "sporadisch": { "form": "sporadisch", "cornetto_id": "r_a-15165", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "zelden voorkomend", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "spotziek": { "form": "spotziek", "cornetto_id": "r_a-15264", "cornetto_synset_id": "n_a-528737", "wordnet_id": "a-01995596", "pos": "JJ", "sense": "spotlustig", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "spraakmakend": { "form": "spraakmakend", "cornetto_id": "r_a-15166", "cornetto_synset_id": "n_a-522093", "wordnet_id": "a-00601783", "pos": "JJ", "sense": "geruchtmakend", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "sprakeloos": { "form": "sprakeloos", "cornetto_id": "r_a-14997", "cornetto_synset_id": "n_a-529451", "wordnet_id": "a-01765643", "pos": "JJ", "sense": "met stomheid geslagen", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "spreekwoordelijk": { "form": "spreekwoordelijk", "cornetto_id": "r_a-15167", "cornetto_synset_id": "n_a-528754", "wordnet_id": "a-02990304", "pos": "JJ", "sense": "overbekend en typerend", "polarity": "0.0", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "sprekend": { "form": "sprekend", "cornetto_id": "r_a-14998", "cornetto_synset_id": "n_a-528760", "wordnet_id": "", "pos": "JJ", "sense": "opvallend", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "sprookjesachtig": { "form": "sprookjesachtig", "cornetto_id": "r_a-15168", "cornetto_synset_id": "n_a-528807", "wordnet_id": "a-00166753", "pos": "JJ", "sense": "feeëriek", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "staalblauw": { "form": "staalblauw", "cornetto_id": "r_a-15268", "cornetto_synset_id": "n_a-528836", "wordnet_id": "", "pos": "JJ", "sense": "blauw als staal", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "staatsgevaarlijk": { "form": "staatsgevaarlijk", "cornetto_id": "r_a-15270", "cornetto_synset_id": "n_a-528892", "wordnet_id": "a-00963283", "pos": "JJ", "sense": "gevaarlijk voor de staat", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.4", "confidence": "0.7" }, "stampvol": { "form": "stampvol", "cornetto_id": "r_a-15174", "cornetto_synset_id": "n_a-529021", "wordnet_id": "a-00560100", "pos": "JJ", "sense": "propvol", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.9" }, "standaard": { "form": "standaard", "cornetto_id": "d_a-270622", "cornetto_synset_id": "n_a-510863", "wordnet_id": "a-00666058", "pos": "JJ", "sense": "waaraan men gewend is", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "standvastig": { "form": "standvastig", "cornetto_id": "r_a-15004", "cornetto_synset_id": "n_a-533496", "wordnet_id": "a-00250119", "pos": "JJ", "sense": "onwrikbaar", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "statistisch": { "form": "statistisch", "cornetto_id": "r_a-15011", "cornetto_synset_id": "n_a-529106", "wordnet_id": "a-02911627", "pos": "JJ", "sense": "v.d. statistiek", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "statutair": { "form": "statutair", "cornetto_id": "r_a-15175", "cornetto_synset_id": "n_a-529108", "wordnet_id": "a-01401532", "pos": "JJ", "sense": "volgens de statuten", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "steekhoudend": { "form": "steekhoudend", "cornetto_id": "r_a-15013", "cornetto_synset_id": "n_a-529122", "wordnet_id": "a-00291181", "pos": "JJ", "sense": "gegrond", "polarity": "0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "steels": { "form": "steels", "cornetto_id": "r_a-15014", "cornetto_synset_id": "n_a-529135", "wordnet_id": "a-02088974", "pos": "JJ", "sense": "tersluiks", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "steengoed": { "form": "steengoed", "cornetto_id": "r_a-15015", "cornetto_synset_id": "d_a-9557", "wordnet_id": "", "pos": "JJ", "sense": "heel goed", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "steenhard": { "form": "steenhard", "cornetto_id": "r_a-15275", "cornetto_synset_id": "n_a-514712", "wordnet_id": "a-01024812", "pos": "JJ", "sense": "keihard", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "steenkoud": { "form": "steenkoud", "cornetto_id": "r_a-15276", "cornetto_synset_id": "n_a-513334", "wordnet_id": "a-01078673", "pos": "JJ", "sense": "ijskoud", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "steenrijk": { "form": "steenrijk", "cornetto_id": "r_a-15177", "cornetto_synset_id": "n_a-526762", "wordnet_id": "a-02022167", "pos": "JJ", "sense": "schatrijk", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "steil": { "form": "steil", "cornetto_id": "r_a-15017", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "recht", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.9" }, "stekend": { "form": "stekend", "cornetto_id": "r_a-15277", "cornetto_synset_id": "n_a-529183", "wordnet_id": "a-00650900", "pos": "JJ", "sense": "scherp, priemend", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "stemhebbend": { "form": "stemhebbend", "cornetto_id": "r_a-15178", "cornetto_synset_id": "n_a-529207", "wordnet_id": "a-02286083", "pos": "JJ", "sense": "niet stemloos", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "stemmig": { "form": "stemmig", "cornetto_id": "r_a-15023", "cornetto_synset_id": "n_a-523637", "wordnet_id": "a-00275290", "pos": "JJ", "sense": "ingetogen", "polarity": "0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "stereotiep": { "form": "stereotiep", "cornetto_id": "r_a-15026", "cornetto_synset_id": "n_a-531136", "wordnet_id": "a-00607977", "pos": "JJ", "sense": "onveranderlijk", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "sterfelijk": { "form": "sterfelijk", "cornetto_id": "r_a-15027", "cornetto_synset_id": "n_a-529268", "wordnet_id": "a-00993667", "pos": "JJ", "sense": "zullende sterven", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "sterk": { "form": "sterk", "cornetto_id": "r_a-15342", "cornetto_synset_id": "n_a-512478", "wordnet_id": "a-01509527", "pos": "JJ", "sense": "aanzienlijk, hevig", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.7", "confidence": "1.0" }, "stevig": { "form": "stevig", "cornetto_id": "r_a-15036", "cornetto_synset_id": "d_a-9272", "wordnet_id": "a-02038126", "pos": "JJ", "sense": "fors", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.3", "confidence": "1.0" }, "stiefmoederlijk": { "form": "stiefmoederlijk", "cornetto_id": "r_a-15038", "cornetto_synset_id": "n_a-529324", "wordnet_id": "", "pos": "JJ", "sense": "slecht", "polarity": "-0.7", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "stiekem": { "form": "stiekem", "cornetto_id": "r_a-15039", "cornetto_synset_id": "n_a-529326", "wordnet_id": "", "pos": "JJ", "sense": "niet openlijk", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "0.9", "confidence": "1.0" }, "stijf": { "form": "stijf", "cornetto_id": "r_a-15040", "cornetto_synset_id": "n_a-520774", "wordnet_id": "a-01990653", "pos": "JJ", "sense": "niet soepel", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "stijlloos": { "form": "stijlloos", "cornetto_id": "r_a-15042", "cornetto_synset_id": "n_a-521127", "wordnet_id": "a-00136081", "pos": "JJ", "sense": "onfatsoenlijk", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "stijlvol": { "form": "stijlvol", "cornetto_id": "r_a-15043", "cornetto_synset_id": "n_a-528044", "wordnet_id": "a-00689215", "pos": "JJ", "sense": "smaakvol", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "stil": { "form": "stil", "cornetto_id": "r_a-15343", "cornetto_synset_id": "n_a-512251", "wordnet_id": "a-02090069", "pos": "JJ", "sense": "heimelijk", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "stilistisch": { "form": "stilistisch", "cornetto_id": "r_a-15046", "cornetto_synset_id": "n_a-529365", "wordnet_id": "a-02018296", "pos": "JJ", "sense": "mbt. stijl", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "stilzwijgend": { "form": "stilzwijgend", "cornetto_id": "r_a-15047", "cornetto_synset_id": "n_a-529369", "wordnet_id": "a-00500569", "pos": "JJ", "sense": "impliciet", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "stipt": { "form": "stipt", "cornetto_id": "r_a-15048", "cornetto_synset_id": "n_a-519716", "wordnet_id": "a-00021766", "pos": "JJ", "sense": "punctueel", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "stoer": { "form": "stoer", "cornetto_id": "r_a-15049", "cornetto_synset_id": "n_a-529394", "wordnet_id": "a-02038126", "pos": "JJ", "sense": "flink", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "stoethaspelig": { "form": "stoethaspelig", "cornetto_id": "d_a-273599", "cornetto_synset_id": "d_a-9454", "wordnet_id": "a-01140896", "pos": "JJ", "sense": "", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "stoffig": { "form": "stoffig", "cornetto_id": "r_a-15051", "cornetto_synset_id": "n_a-529401", "wordnet_id": "a-01696346", "pos": "JJ", "sense": "vol stof", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "stokoud": { "form": "stokoud", "cornetto_id": "r_a-15184", "cornetto_synset_id": "n_a-529426", "wordnet_id": "", "pos": "JJ", "sense": "heel oud", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "stom": { "form": "stom", "cornetto_id": "r_a-15056", "cornetto_synset_id": "c_573", "wordnet_id": "a-02307729", "pos": "JJ", "sense": "vervelend", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "stomdronken": { "form": "stomdronken", "cornetto_id": "r_a-15185", "cornetto_synset_id": "n_a-529441", "wordnet_id": "a-00798103", "pos": "JJ", "sense": "erg dronken", "polarity": "-0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "stompzinnig": { "form": "stompzinnig", "cornetto_id": "r_a-15058", "cornetto_synset_id": "n_a-529438", "wordnet_id": "a-00015480", "pos": "JJ", "sense": "stupide", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "stomverbaasd": { "form": "stomverbaasd", "cornetto_id": "r_a-15059", "cornetto_synset_id": "n_a-529451", "wordnet_id": "a-01765643", "pos": "JJ", "sense": "stomverwonderd", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.9" }, "storend": { "form": "storend", "cornetto_id": "r_a-15061", "cornetto_synset_id": "n_a-516807", "wordnet_id": "a-00669942", "pos": "JJ", "sense": "hinderlijk", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "0.9", "confidence": "1.0" }, "stormachtig": { "form": "stormachtig", "cornetto_id": "r_a-15062", "cornetto_synset_id": "n_a-529519", "wordnet_id": "a-00303727", "pos": "JJ", "sense": "heftig", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.2", "confidence": "0.7" }, "stout": { "form": "stout", "cornetto_id": "r_a-15344", "cornetto_synset_id": "n_a-519123", "wordnet_id": "a-00262792", "pos": "JJ", "sense": "stoutmoedig", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "stoutmoedig": { "form": "stoutmoedig", "cornetto_id": "r_a-15064", "cornetto_synset_id": "n_a-529554", "wordnet_id": "a-00081671", "pos": "JJ", "sense": "vermetel", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "straatarm": { "form": "straatarm", "cornetto_id": "r_a-15187", "cornetto_synset_id": "n_a-529565", "wordnet_id": "a-02023430", "pos": "JJ", "sense": "heel arm", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "straf": { "form": "straf", "cornetto_id": "r_a-15345", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "sterk", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.2", "confidence": "0.7" }, "strafrechtelijk": { "form": "strafrechtelijk", "cornetto_id": "r_a-15189", "cornetto_synset_id": "n_a-529626", "wordnet_id": "a-01402763", "pos": "JJ", "sense": "volgens strafrecht", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "straight": { "form": "straight", "cornetto_id": "r_a-15067", "cornetto_synset_id": "n_a-508027", "wordnet_id": "a-01225643", "pos": "JJ", "sense": "eerlijk", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "strak": { "form": "strak", "cornetto_id": "r_a-15348", "cornetto_synset_id": "n_a-525902", "wordnet_id": "a-02236842", "pos": "JJ", "sense": "zonder oneffenheden", "polarity": "0.4", "subjectivity": "0.5", "intensity": "1.1", "confidence": "1.0" }, "strakblauw": { "form": "strakblauw", "cornetto_id": "r_a-15284", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "wolkeloos blauw", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "stralend": { "form": "stralend", "cornetto_id": "r_a-15359", "cornetto_synset_id": "n_a-529646", "wordnet_id": "a-00219389", "pos": "JJ", "sense": "blakend", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "strategisch": { "form": "strategisch", "cornetto_id": "r_a-15073", "cornetto_synset_id": "n_a-529667", "wordnet_id": "a-01279735", "pos": "JJ", "sense": "mbt. strategie", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "streng": { "form": "streng", "cornetto_id": "r_a-15075", "cornetto_synset_id": "n_a-529697", "wordnet_id": "a-00009618", "pos": "JJ", "sense": "hard", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "strijdig": { "form": "strijdig", "cornetto_id": "r_a-15078", "cornetto_synset_id": "n_a-529709", "wordnet_id": "a-00562803", "pos": "JJ", "sense": "onverenigbaar", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "strijdvaardig": { "form": "strijdvaardig", "cornetto_id": "r_a-15079", "cornetto_synset_id": "n_a-529708", "wordnet_id": "a-01017439", "pos": "JJ", "sense": "paraat", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "strikt": { "form": "strikt", "cornetto_id": "r_a-15080", "cornetto_synset_id": "n_a-529728", "wordnet_id": "a-00631798", "pos": "JJ", "sense": "nauwkeurig", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "stringent": { "form": "stringent", "cornetto_id": "r_a-15081", "cornetto_synset_id": "n_a-507874", "wordnet_id": "a-00017186", "pos": "JJ", "sense": "dwingend", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "stroef": { "form": "stroef", "cornetto_id": "r_a-15083", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "hortend", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "0.9", "confidence": "0.8" }, "strontvervelend": { "form": "strontvervelend", "cornetto_id": "r_a-15288", "cornetto_synset_id": "n_a-521551", "wordnet_id": "a-00421590", "pos": "JJ", "sense": "stomvervelend", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.3", "confidence": "0.7" }, "stroperig": { "form": "stroperig", "cornetto_id": "r_a-15360", "cornetto_synset_id": "n_a-535309", "wordnet_id": "a-00750926", "pos": "JJ", "sense": "slijmerig", "polarity": "-0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "structureel": { "form": "structureel", "cornetto_id": "r_a-15087", "cornetto_synset_id": "n_a-509441", "wordnet_id": "a-00095094", "pos": "JJ", "sense": "niet incidenteel", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "stumperig": { "form": "stumperig", "cornetto_id": "d_a-277278", "cornetto_synset_id": "d_a-9454", "wordnet_id": "a-01140896", "pos": "JJ", "sense": "", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "stuntelig": { "form": "stuntelig", "cornetto_id": "r_a-15290", "cornetto_synset_id": "d_a-9454", "wordnet_id": "a-01140896", "pos": "JJ", "sense": "klunzig", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "stupide": { "form": "stupide", "cornetto_id": "r_a-15095", "cornetto_synset_id": "n_a-529438", "wordnet_id": "a-00015480", "pos": "JJ", "sense": "stompzinnig", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "stuurloos": { "form": "stuurloos", "cornetto_id": "r_a-15096", "cornetto_synset_id": "n_a-520718", "wordnet_id": "a-01475526", "pos": "JJ", "sense": "niet bestuurbaar", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "stuurs": { "form": "stuurs", "cornetto_id": "r_a-15097", "cornetto_synset_id": "n_a-520179", "wordnet_id": "a-01139067", "pos": "JJ", "sense": "nors", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "subjectief": { "form": "subjectief", "cornetto_id": "r_a-15098", "cornetto_synset_id": "n_a-529917", "wordnet_id": "a-01273910", "pos": "JJ", "sense": "niet objectief", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "subliem": { "form": "subliem", "cornetto_id": "r_a-15099", "cornetto_synset_id": "n_a-510820", "wordnet_id": "a-01576071", "pos": "JJ", "sense": "schitterend", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "subsidiair": { "form": "subsidiair", "cornetto_id": "r_a-15292", "cornetto_synset_id": "n_a-523468", "wordnet_id": "a-01406418", "pos": "JJ", "sense": "vervangend", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "substantieel": { "form": "substantieel", "cornetto_id": "r_a-15100", "cornetto_synset_id": "n_a-529938", "wordnet_id": "a-02557719", "pos": "JJ", "sense": "aanzienlijk", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "subtiel": { "form": "subtiel", "cornetto_id": "r_a-15101", "cornetto_synset_id": "n_a-529944", "wordnet_id": "", "pos": "JJ", "sense": "fijn", "polarity": "0.4", "subjectivity": "0.7", "intensity": "0.9", "confidence": "1.0" }, "subtropisch": { "form": "subtropisch", "cornetto_id": "r_a-15102", "cornetto_synset_id": "n_a-529947", "wordnet_id": "a-02929216", "pos": "JJ", "sense": "mbt. klimaat", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "succesrijk": { "form": "succesrijk", "cornetto_id": "r_a-15194", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "succesvol", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.9" }, "succesvol": { "form": "succesvol", "cornetto_id": "r_a-15195", "cornetto_synset_id": "n_a-510582", "wordnet_id": "a-02331262", "pos": "JJ", "sense": "succesrijk", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "suf": { "form": "suf", "cornetto_id": "r_a-15104", "cornetto_synset_id": "d_a-9540", "wordnet_id": "a-00080698", "pos": "JJ", "sense": "wezenloos", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "suffig": { "form": "suffig", "cornetto_id": "r_a-15293", "cornetto_synset_id": "d_a-9540", "wordnet_id": "a-00080698", "pos": "JJ", "sense": "sufferig", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "suggestief": { "form": "suggestief", "cornetto_id": "r_a-15105", "cornetto_synset_id": "n_a-529964", "wordnet_id": "a-00625055", "pos": "JJ", "sense": "beelden oproepend", "polarity": "0.2", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "sukkelig": { "form": "sukkelig", "cornetto_id": "d_a-278149", "cornetto_synset_id": "d_a-9454", "wordnet_id": "a-01140896", "pos": "JJ", "sense": "", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "sullig": { "form": "sullig", "cornetto_id": "r_a-15297", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "suffig", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "summier": { "form": "summier", "cornetto_id": "r_a-15352", "cornetto_synset_id": "n_a-510497", "wordnet_id": "a-02340458", "pos": "JJ", "sense": "miniem", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "super": { "form": "super", "cornetto_id": "r_a-15108", "cornetto_synset_id": "n_a-510820", "wordnet_id": "a-01576071", "pos": "JJ", "sense": "fantastisch", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.7", "confidence": "1.0" }, "supergoed": { "form": "supergoed", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "superieur": { "form": "superieur", "cornetto_id": "r_a-15109", "cornetto_synset_id": "d_a-9183", "wordnet_id": "a-02341266", "pos": "JJ", "sense": "beter", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.6", "confidence": "1.0" }, "superleuk": { "form": "superleuk", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "supermooi": { "form": "supermooi", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "supersnel": { "form": "supersnel", "cornetto_id": "r_a-15197", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "pijlsnel", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "superspannend": { "form": "superspannend", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "", "sense": "", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "superspannende": { "form": "superspannende", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "surrealistisch": { "form": "surrealistisch", "cornetto_id": "r_a-15112", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "onwerkelijk", "polarity": "-0.2", "subjectivity": "0.7", "intensity": "1.3", "confidence": "1.0" }, "suïcidaal": { "form": "suïcidaal", "cornetto_id": "r_a-15291", "cornetto_synset_id": "n_a-529903", "wordnet_id": "a-02060912", "pos": "JJ", "sense": "met zelfmoordneigingen", "polarity": "-0.7", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "symbolisch": { "form": "symbolisch", "cornetto_id": "r_a-15113", "cornetto_synset_id": "n_a-530072", "wordnet_id": "a-01496592", "pos": "JJ", "sense": "als symbool", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "symfonisch": { "form": "symfonisch", "cornetto_id": "r_a-15198", "cornetto_synset_id": "n_a-530073", "wordnet_id": "a-01163941", "pos": "JJ", "sense": "SJF muziek", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.1", "confidence": "0.7" }, "sympathiek": { "form": "sympathiek", "cornetto_id": "r_a-15115", "cornetto_synset_id": "c_175", "wordnet_id": "a-01372049", "pos": "JJ", "sense": "aardig", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "symptomatisch": { "form": "symptomatisch", "cornetto_id": "r_a-15116", "cornetto_synset_id": "n_a-530078", "wordnet_id": "a-00357254", "pos": "JJ", "sense": "tekenend", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "systematisch": { "form": "systematisch", "cornetto_id": "r_a-15120", "cornetto_synset_id": "n_a-530113", "wordnet_id": "a-01668567", "pos": "JJ", "sense": "stelselmatig", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "taai": { "form": "taai", "cornetto_id": "r_a-15564", "cornetto_synset_id": "n_a-530130", "wordnet_id": "a-01345307", "pos": "JJ", "sense": "vervelend", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "taalkundig": { "form": "taalkundig", "cornetto_id": "r_a-15478", "cornetto_synset_id": "n_a-530161", "wordnet_id": "a-02842445", "pos": "JJ", "sense": "linguïstisch", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "taboe": { "form": "taboe", "cornetto_id": "r_a-15365", "cornetto_synset_id": "n_a-530199", "wordnet_id": "a-01761375", "pos": "JJ", "sense": "verboden", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "tactisch": { "form": "tactisch", "cornetto_id": "r_a-15366", "cornetto_synset_id": "n_a-507294", "wordnet_id": "a-00067966", "pos": "JJ", "sense": "met goede tactiek", "polarity": "-0.1", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "tactvol": { "form": "tactvol", "cornetto_id": "r_a-15368", "cornetto_synset_id": "n_a-514922", "wordnet_id": "", "pos": "JJ", "sense": "delicaat", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "talentvol": { "form": "talentvol", "cornetto_id": "r_a-15480", "cornetto_synset_id": "d_a-9174", "wordnet_id": "a-01119192", "pos": "JJ", "sense": "begaafd", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "talloos": { "form": "talloos", "cornetto_id": "r_a-15369", "cornetto_synset_id": "n_a-530266", "wordnet_id": "a-00301777", "pos": "JJ", "sense": "ontelbaar", "polarity": "0.0", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "talrijk": { "form": "talrijk", "cornetto_id": "r_a-15370", "cornetto_synset_id": "n_a-532114", "wordnet_id": "", "pos": "JJ", "sense": "talloos", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "tam": { "form": "tam", "cornetto_id": "r_a-15372", "cornetto_synset_id": "n_a-516003", "wordnet_id": "a-00806512", "pos": "JJ", "sense": "slapjes", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "tamelijk": { "form": "tamelijk", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "0.0", "subjectivity": "0.8", "intensity": "0.6", "confidence": "1.0" }, "tandheelkundig": { "form": "tandheelkundig", "cornetto_id": "r_a-15483", "cornetto_synset_id": "n_a-530286", "wordnet_id": "a-02711098", "pos": "JJ", "sense": "mbt. de tandheelkunde", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "tastbaar": { "form": "tastbaar", "cornetto_id": "r_a-15567", "cornetto_synset_id": "n_a-505886", "wordnet_id": "a-01618376", "pos": "JJ", "sense": "manifest", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "technisch": { "form": "technisch", "cornetto_id": "r_a-15377", "cornetto_synset_id": "n_a-530379", "wordnet_id": "a-02809692", "pos": "JJ", "sense": "mbt. techniek", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "technologisch": { "form": "technologisch", "cornetto_id": "r_a-15485", "cornetto_synset_id": "n_a-530382", "wordnet_id": "a-02809692", "pos": "JJ", "sense": "mbt. technologie", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "teder": { "form": "teder", "cornetto_id": "r_a-15378", "cornetto_synset_id": "n_a-530384", "wordnet_id": "a-01463965", "pos": "JJ", "sense": "innig", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "tegendraads": { "form": "tegendraads", "cornetto_id": "r_a-15381", "cornetto_synset_id": "n_a-534464", "wordnet_id": "a-00021592", "pos": "JJ", "sense": "weerspannig", "polarity": "-0.3", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "tegengesteld": { "form": "tegengesteld", "cornetto_id": "r_a-15382", "cornetto_synset_id": "n_a-530430", "wordnet_id": "a-00564504", "pos": "JJ", "sense": "tegenovergesteld", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.9" }, "tegenovergesteld": { "form": "tegenovergesteld", "cornetto_id": "r_a-15383", "cornetto_synset_id": "n_a-530430", "wordnet_id": "a-00564504", "pos": "JJ", "sense": "tegengesteld", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "tegenoverliggend": { "form": "tegenoverliggend", "cornetto_id": "r_a-15486", "cornetto_synset_id": "n_a-530429", "wordnet_id": "", "pos": "JJ", "sense": "gelegen tegenover", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "tegenstrijdig": { "form": "tegenstrijdig", "cornetto_id": "r_a-15384", "cornetto_synset_id": "d_a-9543", "wordnet_id": "a-00554098", "pos": "JJ", "sense": "contradictorisch", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "tegenvallen": { "form": "tegenvallen", "cornetto_id": "r_v-7740", "cornetto_synset_id": "d_v-6958", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "-0.4", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.9" }, "tegenvaller": { "form": "tegenvaller", "cornetto_id": "r_n-37164", "cornetto_synset_id": "d_n-29626", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.4", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.9" }, "tegenwoordig": { "form": "tegenwoordig", "cornetto_id": "r_a-15386", "cornetto_synset_id": "n_a-513031", "wordnet_id": "a-00666058", "pos": "JJ", "sense": "present", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "teleurgesteld": { "form": "teleurgesteld", "cornetto_id": "r_a-16641", "cornetto_synset_id": "n_a-530514", "wordnet_id": "", "pos": "JJ", "sense": "sip", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "teleurstellend": { "form": "teleurstellend", "cornetto_id": "r_a-15488", "cornetto_synset_id": "n_a-530515", "wordnet_id": "a-00107384", "pos": "JJ", "sense": "sneu", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "teleurstelling": { "form": "teleurstelling", "cornetto_id": "r_n-37272", "cornetto_synset_id": "d_n-31255", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "temerig": { "form": "temerig", "cornetto_id": "r_a-15537", "cornetto_synset_id": "n_a-516246", "wordnet_id": "a-00789871", "pos": "JJ", "sense": "zeurderig", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "temperamentvol": { "form": "temperamentvol", "cornetto_id": "r_a-15538", "cornetto_synset_id": "n_a-530555", "wordnet_id": "a-00263994", "pos": "JJ", "sense": "heftig", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "tendentieus": { "form": "tendentieus", "cornetto_id": "r_a-15391", "cornetto_synset_id": "n_a-530567", "wordnet_id": "a-00402419", "pos": "JJ", "sense": "gekleurd", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "tenger": { "form": "tenger", "cornetto_id": "r_a-15392", "cornetto_synset_id": "n_a-530571", "wordnet_id": "a-00990855", "pos": "JJ", "sense": "slank", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "terecht": { "form": "terecht", "cornetto_id": "r_a-15393", "cornetto_synset_id": "n_a-510466", "wordnet_id": "a-00910750", "pos": "JJ", "sense": "gerechtvaardigd", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "tergend": { "form": "tergend", "cornetto_id": "r_a-15490", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "sarrend", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "terloops": { "form": "terloops", "cornetto_id": "r_a-15394", "cornetto_synset_id": "n_a-530595", "wordnet_id": "", "pos": "JJ", "sense": "tussendoor", "polarity": "0.0", "subjectivity": "0.1", "intensity": "0.9", "confidence": "1.0" }, "terminaal": { "form": "terminaal", "cornetto_id": "r_a-15395", "cornetto_synset_id": "n_a-530605", "wordnet_id": "a-02812147", "pos": "JJ", "sense": "mbt. het levenseinde", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "terroristisch": { "form": "terroristisch", "cornetto_id": "r_a-15491", "cornetto_synset_id": "n_a-530631", "wordnet_id": "", "pos": "JJ", "sense": "van terroristen", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.4", "confidence": "0.7" }, "tersluiks": { "form": "tersluiks", "cornetto_id": "r_a-15398", "cornetto_synset_id": "n_a-512251", "wordnet_id": "a-02090069", "pos": "JJ", "sense": "stiekem", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "terugkrabbelen": { "form": "terugkrabbelen", "cornetto_id": "r_v-7830", "cornetto_synset_id": "d_v-7033", "wordnet_id": "v-02380980", "pos": "VB", "sense": "", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "tevergeefs": { "form": "tevergeefs", "cornetto_id": "r_a-15403", "cornetto_synset_id": "n_a-535779", "wordnet_id": "a-01082535", "pos": "JJ", "sense": "vruchteloos", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.3", "confidence": "0.7" }, "tevreden": { "form": "tevreden", "cornetto_id": "r_a-15404", "cornetto_synset_id": "d_a-9546", "wordnet_id": "a-00362467", "pos": "JJ", "sense": "content", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "theatraal": { "form": "theatraal", "cornetto_id": "r_a-15577", "cornetto_synset_id": "n_a-530687", "wordnet_id": "a-02714800", "pos": "JJ", "sense": "van het theater", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "theoretisch": { "form": "theoretisch", "cornetto_id": "r_a-15408", "cornetto_synset_id": "n_a-530704", "wordnet_id": "a-00860611", "pos": "JJ", "sense": "in theorie", "polarity": "0.0", "subjectivity": "0.1", "intensity": "0.9", "confidence": "1.0" }, "thermisch": { "form": "thermisch", "cornetto_id": "r_a-15584", "cornetto_synset_id": "n_a-530713", "wordnet_id": "a-01250565", "pos": "JJ", "sense": "via warmte", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "tiens": { "form": "tiens", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "UH", "sense": "", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "tijdelijk": { "form": "tijdelijk", "cornetto_id": "r_a-15586", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "mbt. tijd", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "tijdig": { "form": "tijdig", "cornetto_id": "r_a-16642", "cornetto_synset_id": "n_a-530795", "wordnet_id": "", "pos": "JJ", "sense": "op tijd", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "tijdloos": { "form": "tijdloos", "cornetto_id": "r_a-15410", "cornetto_synset_id": "n_a-530796", "wordnet_id": "", "pos": "JJ", "sense": "niet tijdsgebonden", "polarity": "0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "tijdrovend": { "form": "tijdrovend", "cornetto_id": "r_a-15411", "cornetto_synset_id": "n_a-530804", "wordnet_id": "", "pos": "JJ", "sense": "tijdverslindend", "polarity": "-0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "tijdsgebonden": { "form": "tijdsgebonden", "cornetto_id": "r_a-15498", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "niet tijdloos", "polarity": "-0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "timide": { "form": "timide", "cornetto_id": "r_a-15412", "cornetto_synset_id": "n_a-532538", "wordnet_id": "a-00339941", "pos": "JJ", "sense": "verlegen", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "tiranniek": { "form": "tiranniek", "cornetto_id": "r_a-15415", "cornetto_synset_id": "n_a-530845", "wordnet_id": "a-00788032", "pos": "JJ", "sense": "als (van) een tiran", "polarity": "-0.3", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "tjeef": { "form": "tjeef", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "tjeven": { "form": "tjeven", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NNS", "sense": "", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "tjevenstreken": { "form": "tjevenstreken", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NNS", "sense": "", "polarity": "-0.7", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "tjokvol": { "form": "tjokvol", "cornetto_id": "r_a-15542", "cornetto_synset_id": "n_a-529021", "wordnet_id": "a-00560100", "pos": "JJ", "sense": "stampvol", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.9" }, "tochtig": { "form": "tochtig", "cornetto_id": "r_a-15416", "cornetto_synset_id": "n_a-530878", "wordnet_id": "a-00305225", "pos": "JJ", "sense": "loops", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "toegankelijk": { "form": "toegankelijk", "cornetto_id": "r_a-15590", "cornetto_synset_id": "c_767", "wordnet_id": "", "pos": "JJ", "sense": "openstaand voor", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "toegedaan": { "form": "toegedaan", "cornetto_id": "r_a-15418", "cornetto_synset_id": "n_a-530895", "wordnet_id": "a-00754393", "pos": "JJ", "sense": "genegen", "polarity": "0.3", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "toegewijd": { "form": "toegewijd", "cornetto_id": "r_a-15422", "cornetto_synset_id": "n_a-530895", "wordnet_id": "a-00754393", "pos": "JJ", "sense": "vol inzet", "polarity": "0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "toekomend": { "form": "toekomend", "cornetto_id": "r_a-15592", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "de toekomst aangevend", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "toekomstig": { "form": "toekomstig", "cornetto_id": "r_a-15593", "cornetto_synset_id": "n_a-530897", "wordnet_id": "a-00742620", "pos": "JJ", "sense": "mbt. iemands hoedanigheid", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "1.0" }, "toenmalig": { "form": "toenmalig", "cornetto_id": "r_a-15424", "cornetto_synset_id": "n_a-530914", "wordnet_id": "a-01731108", "pos": "JJ", "sense": "van die tijd", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "toepasbaar": { "form": "toepasbaar", "cornetto_id": "r_a-15506", "cornetto_synset_id": "n_a-530916", "wordnet_id": "a-01474806", "pos": "JJ", "sense": "toe te passen", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "toepasselijk": { "form": "toepasselijk", "cornetto_id": "r_a-15594", "cornetto_synset_id": "n_a-530918", "wordnet_id": "a-01834812", "pos": "JJ", "sense": "toepasbaar", "polarity": "0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "toereikend": { "form": "toereikend", "cornetto_id": "r_a-15426", "cornetto_synset_id": "n_a-510344", "wordnet_id": "", "pos": "JJ", "sense": "genoeg", "polarity": "0.4", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "toevallig": { "form": "toevallig", "cornetto_id": "r_a-15430", "cornetto_synset_id": "n_a-530945", "wordnet_id": "", "pos": "JJ", "sense": "accidenteel", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "tof": { "form": "tof", "cornetto_id": "r_a-15431", "cornetto_synset_id": "c_294", "wordnet_id": "", "pos": "JJ", "sense": "leuk", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "tomeloos": { "form": "tomeloos", "cornetto_id": "r_a-15433", "cornetto_synset_id": "n_a-521014", "wordnet_id": "a-02001596", "pos": "JJ", "sense": "bandeloos", "polarity": "-0.1", "subjectivity": "0.9", "intensity": "1.7", "confidence": "0.7" }, "toonaangevend": { "form": "toonaangevend", "cornetto_id": "r_a-15434", "cornetto_synset_id": "n_a-531014", "wordnet_id": "a-00579622", "pos": "JJ", "sense": "leidend", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "toonloos": { "form": "toonloos", "cornetto_id": "r_a-15509", "cornetto_synset_id": "n_a-531021", "wordnet_id": "a-02430238", "pos": "JJ", "sense": "zonder nuancering", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "toornig": { "form": "toornig", "cornetto_id": "r_a-15436", "cornetto_synset_id": "d_a-9199", "wordnet_id": "a-00114454", "pos": "JJ", "sense": "woedend", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "top": { "form": "top", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "", "sense": "JJ", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "totaal": { "form": "totaal", "cornetto_id": "r_a-15439", "cornetto_synset_id": "n_a-533538", "wordnet_id": "a-00520214", "pos": "JJ", "sense": "volledig", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.4", "confidence": "1.0" }, "toverachtig": { "form": "toverachtig", "cornetto_id": "r_a-15547", "cornetto_synset_id": "n_a-528807", "wordnet_id": "a-00166753", "pos": "JJ", "sense": "als getoverd", "polarity": "0.3", "subjectivity": "0.5", "intensity": "1.1", "confidence": "0.7" }, "toxisch": { "form": "toxisch", "cornetto_id": "r_a-15597", "cornetto_synset_id": "n_a-531120", "wordnet_id": "a-02449430", "pos": "JJ", "sense": "mbt. gif", "polarity": "-0.3", "subjectivity": "0.5", "intensity": "1.1", "confidence": "0.7" }, "traag": { "form": "traag", "cornetto_id": "r_a-15442", "cornetto_synset_id": "n_a-516764", "wordnet_id": "a-00980527", "pos": "JJ", "sense": "niet snel", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "traangas": { "form": "traangas", "cornetto_id": "'r_n-38211", "cornetto_synset_id": "d_n-14515", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "tragikomisch": { "form": "tragikomisch", "cornetto_id": "r_a-15514", "cornetto_synset_id": "n_a-531137", "wordnet_id": "a-01267762", "pos": "JJ", "sense": "treurig en grappig", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "tragisch": { "form": "tragisch", "cornetto_id": "r_a-15444", "cornetto_synset_id": "n_a-531138", "wordnet_id": "a-01126291", "pos": "JJ", "sense": "droevig", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "transcendent": { "form": "transcendent", "cornetto_id": "r_a-15445", "cornetto_synset_id": "n_a-505190", "wordnet_id": "a-01577086", "pos": "JJ", "sense": "niet waarneembaar", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "traumatisch": { "form": "traumatisch", "cornetto_id": "r_a-15448", "cornetto_synset_id": "n_a-531207", "wordnet_id": "a-01162901", "pos": "JJ", "sense": "mbt. een trauma", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "treffend": { "form": "treffend", "cornetto_id": "r_a-15599", "cornetto_synset_id": "n_a-521480", "wordnet_id": "a-01365544", "pos": "JJ", "sense": "aandoenlijk", "polarity": "0.2", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "trefzeker": { "form": "trefzeker", "cornetto_id": "r_a-15450", "cornetto_synset_id": "n_a-531225", "wordnet_id": "a-00021766", "pos": "JJ", "sense": "accuraat", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "trendy": { "form": "trendy", "cornetto_id": "r_a-15451", "cornetto_synset_id": "d_a-9409", "wordnet_id": "a-00971506", "pos": "JJ", "sense": "modieus", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "treurig": { "form": "treurig", "cornetto_id": "r_a-15601", "cornetto_synset_id": "n_a-527873", "wordnet_id": "", "pos": "JJ", "sense": "onaangenaam", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "triest": { "form": "triest", "cornetto_id": "r_a-15453", "cornetto_synset_id": "n_a-532342", "wordnet_id": "a-01361863", "pos": "JJ", "sense": "droevig", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "triomfantelijk": { "form": "triomfantelijk", "cornetto_id": "r_a-15454", "cornetto_synset_id": "n_a-531313", "wordnet_id": "a-00704898", "pos": "JJ", "sense": "zegevierend", "polarity": "0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "triviaal": { "form": "triviaal", "cornetto_id": "r_a-15456", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "banaal", "polarity": "-0.2", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "troebel": { "form": "troebel", "cornetto_id": "r_a-15457", "cornetto_synset_id": "n_a-531332", "wordnet_id": "a-00433529", "pos": "JJ", "sense": "niet helder", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "troosteloos": { "form": "troosteloos", "cornetto_id": "r_a-15458", "cornetto_synset_id": "n_a-531362", "wordnet_id": "a-00107384", "pos": "JJ", "sense": "neerdrukkend", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "trots": { "form": "trots", "cornetto_id": "r_a-15461", "cornetto_synset_id": "n_a-502571", "wordnet_id": "a-00205696", "pos": "JJ", "sense": "hooghartig", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "trouw": { "form": "trouw", "cornetto_id": "r_a-15462", "cornetto_synset_id": "n_a-531379", "wordnet_id": "a-00022219", "pos": "JJ", "sense": "loyaal", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "trouweloos": { "form": "trouweloos", "cornetto_id": "r_a-15553", "cornetto_synset_id": "n_a-521482", "wordnet_id": "a-00024139", "pos": "JJ", "sense": "infideel", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "trouwhartig": { "form": "trouwhartig", "cornetto_id": "r_a-15463", "cornetto_synset_id": "n_a-511204", "wordnet_id": "a-01372049", "pos": "JJ", "sense": "oprecht", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "truttig": { "form": "truttig", "cornetto_id": "r_a-15464", "cornetto_synset_id": "n_a-531402", "wordnet_id": "a-00974519", "pos": "JJ", "sense": "als (van) een trut", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.9" }, "tsjeef": { "form": "tsjeef", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "tsjeven": { "form": "tsjeven", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NNS", "sense": "", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "tumultueus": { "form": "tumultueus", "cornetto_id": "r_a-15519", "cornetto_synset_id": "n_a-526012", "wordnet_id": "a-00031974", "pos": "JJ", "sense": "rumoerig", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "turbulent": { "form": "turbulent", "cornetto_id": "r_a-15466", "cornetto_synset_id": "n_a-526012", "wordnet_id": "a-00031974", "pos": "JJ", "sense": "woelig", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "tussenliggend": { "form": "tussenliggend", "cornetto_id": "r_a-15520", "cornetto_synset_id": "n_a-531475", "wordnet_id": "a-01014953", "pos": "JJ", "sense": "intermediair", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "0.9", "confidence": "0.7" }, "tussentijds": { "form": "tussentijds", "cornetto_id": "r_a-15468", "cornetto_synset_id": "n_a-531483", "wordnet_id": "a-00816160", "pos": "JJ", "sense": "tussendoor gebeurend", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "tuttig": { "form": "tuttig", "cornetto_id": "r_a-15469", "cornetto_synset_id": "n_a-531402", "wordnet_id": "a-00974519", "pos": "JJ", "sense": "als van een tut", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "tweedehands": { "form": "tweedehands", "cornetto_id": "r_a-15470", "cornetto_synset_id": "n_a-531522", "wordnet_id": "a-01640482", "pos": "JJ", "sense": "gebruikt", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "tweederangs": { "form": "tweederangs", "cornetto_id": "r_a-15471", "cornetto_synset_id": "n_a-518934", "wordnet_id": "a-01673061", "pos": "JJ", "sense": "niet erg goed", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "tweederangskandidaat": { "form": "tweederangskandidaat", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "tweeledig": { "form": "tweeledig", "cornetto_id": "r_a-15609", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "ambigu", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "tweestemmig": { "form": "tweestemmig", "cornetto_id": "r_a-15562", "cornetto_synset_id": "n_a-531575", "wordnet_id": "", "pos": "JJ", "sense": "met of voor twee stemmen", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "twijfelachtig": { "form": "twijfelachtig", "cornetto_id": "r_a-15474", "cornetto_synset_id": "n_a-531602", "wordnet_id": "a-00590390", "pos": "JJ", "sense": "te betwijfelen", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "twistziek": { "form": "twistziek", "cornetto_id": "r_a-15563", "cornetto_synset_id": "n_a-531616", "wordnet_id": "a-00603367", "pos": "JJ", "sense": "twistachtig", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "typerend": { "form": "typerend", "cornetto_id": "r_a-15530", "cornetto_synset_id": "n_a-514566", "wordnet_id": "a-00356926", "pos": "JJ", "sense": "kenmerkend", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "typisch": { "form": "typisch", "cornetto_id": "r_a-15477", "cornetto_synset_id": "n_a-533834", "wordnet_id": "a-00488857", "pos": "JJ", "sense": "karakteristiek", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "typografisch": { "form": "typografisch", "cornetto_id": "r_a-15531", "cornetto_synset_id": "n_a-531628", "wordnet_id": "a-02910248", "pos": "JJ", "sense": "mbt. de typografie", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "uitbundig": { "form": "uitbundig", "cornetto_id": "r_a-15875", "cornetto_synset_id": "n_a-531696", "wordnet_id": "a-00705498", "pos": "JJ", "sense": "overvloedig", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.3", "confidence": "1.0" }, "uiteindelijk": { "form": "uiteindelijk", "cornetto_id": "r_a-15617", "cornetto_synset_id": "n_a-531661", "wordnet_id": "", "pos": "JJ", "sense": "definitief", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "uiterlijk": { "form": "uiterlijk", "cornetto_id": "r_a-15618", "cornetto_synset_id": "n_a-531666", "wordnet_id": "", "pos": "JJ", "sense": "aan de buitenkant", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "uiterst": { "form": "uiterst", "cornetto_id": "r_a-15619", "cornetto_synset_id": "n_a-531671", "wordnet_id": "a-00443618", "pos": "JJ", "sense": "het meest extreem", "polarity": "0.0", "subjectivity": "0.8", "intensity": "1.7", "confidence": "1.0" }, "uitgebreid": { "form": "uitgebreid", "cornetto_id": "r_a-15620", "cornetto_synset_id": "n_a-531690", "wordnet_id": "a-01387319", "pos": "JJ", "sense": "uitvoerig", "polarity": "0.1", "subjectivity": "0.8", "intensity": "1.1", "confidence": "1.0" }, "uitgekookt": { "form": "uitgekookt", "cornetto_id": "r_a-15623", "cornetto_synset_id": "n_a-531695", "wordnet_id": "a-01155603", "pos": "JJ", "sense": "gewiekst", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "uitgelezen": { "form": "uitgelezen", "cornetto_id": "r_a-15625", "cornetto_synset_id": "n_a-531698", "wordnet_id": "a-02123579", "pos": "JJ", "sense": "voortreffelijk", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.3", "confidence": "1.0" }, "uitgemergeld": { "form": "uitgemergeld", "cornetto_id": "r_a-15626", "cornetto_synset_id": "n_a-531699", "wordnet_id": "a-00988988", "pos": "JJ", "sense": "sterk vermagerd", "polarity": "-0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "uitgestrekt": { "form": "uitgestrekt", "cornetto_id": "r_a-15631", "cornetto_synset_id": "d_a-9556", "wordnet_id": "a-01387319", "pos": "JJ", "sense": "groot", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "uitgevallen": { "form": "uitgevallen", "cornetto_id": "r_a-15633", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "die aard hebbend", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "uitgewerkt": { "form": "uitgewerkt", "cornetto_id": "r_a-15792", "cornetto_synset_id": "d_v-7675", "wordnet_id": "", "pos": "JJ", "sense": "geheel bewerkt", "polarity": "0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "uitheems": { "form": "uitheems", "cornetto_id": "r_a-15635", "cornetto_synset_id": "n_a-531732", "wordnet_id": "a-00608791", "pos": "JJ", "sense": "exotisch", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "uitlaatgassen": { "form": "uitlaatgassen", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NNS", "sense": "", "polarity": "-0.2", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "uitmuntend": { "form": "uitmuntend", "cornetto_id": "r_a-15637", "cornetto_synset_id": "d_a-9557", "wordnet_id": "", "pos": "JJ", "sense": "uitstekend", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "uitnemend": { "form": "uitnemend", "cornetto_id": "r_a-15638", "cornetto_synset_id": "d_a-9557", "wordnet_id": "", "pos": "JJ", "sense": "uitstekend", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "uitstekend": { "form": "uitstekend", "cornetto_id": "r_a-15639", "cornetto_synset_id": "d_a-9557", "wordnet_id": "", "pos": "JJ", "sense": "voortreffelijk", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "uitverkocht": { "form": "uitverkocht", "cornetto_id": "r_a-15640", "cornetto_synset_id": "n_a-531783", "wordnet_id": "a-00185921", "pos": "JJ", "sense": "niet meer verkrijgbaar", "polarity": "0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "uitvoerbaar": { "form": "uitvoerbaar", "cornetto_id": "r_a-15796", "cornetto_synset_id": "n_a-531788", "wordnet_id": "a-01822563", "pos": "JJ", "sense": "doenlijk", "polarity": "0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "uitvoerig": { "form": "uitvoerig", "cornetto_id": "r_a-15642", "cornetto_synset_id": "d_a-9558", "wordnet_id": "a-00310433", "pos": "JJ", "sense": "alles vermeldend", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.3", "confidence": "1.0" }, "uitzichtloos": { "form": "uitzichtloos", "cornetto_id": "r_a-15644", "cornetto_synset_id": "d_a-9340", "wordnet_id": "a-00263463", "pos": "JJ", "sense": "zonder perspectief", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "uitzinnig": { "form": "uitzinnig", "cornetto_id": "r_a-15645", "cornetto_synset_id": "n_a-531807", "wordnet_id": "a-00086341", "pos": "JJ", "sense": "buiten zinnen", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "uitzonderlijk": { "form": "uitzonderlijk", "cornetto_id": "r_a-15646", "cornetto_synset_id": "n_a-531811", "wordnet_id": "a-00487653", "pos": "JJ", "sense": "exceptioneel", "polarity": "0.8", "subjectivity": "1.0", "intensity": "2.0", "confidence": "1.0" }, "ultiem": { "form": "ultiem", "cornetto_id": "r_a-15647", "cornetto_synset_id": "n_a-531661", "wordnet_id": "", "pos": "JJ", "sense": "uiterst", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.9", "confidence": "1.0" }, "unaniem": { "form": "unaniem", "cornetto_id": "r_a-15648", "cornetto_synset_id": "n_a-531831", "wordnet_id": "a-00553732", "pos": "JJ", "sense": "eenstemmig", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "uniek": { "form": "uniek", "cornetto_id": "r_a-15650", "cornetto_synset_id": "d_a-9559", "wordnet_id": "a-00504592", "pos": "JJ", "sense": "enig in zijn soort", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "unilateraal": { "form": "unilateraal", "cornetto_id": "r_a-15800", "cornetto_synset_id": "n_a-508016", "wordnet_id": "a-02312450", "pos": "JJ", "sense": "eenzijdig", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "universeel": { "form": "universeel", "cornetto_id": "r_a-15652", "cornetto_synset_id": "d_a-9152", "wordnet_id": "a-00783840", "pos": "JJ", "sense": "algemeen (toepasbaar)", "polarity": "0.4", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "up-to-date": { "form": "up-to-date", "cornetto_id": "r_a-15801", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "actueel", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "urenlang": { "form": "urenlang", "cornetto_id": "r_a-15802", "cornetto_synset_id": "n_a-531862", "wordnet_id": "a-00596211", "pos": "JJ", "sense": "uren durend", "polarity": "-0.2", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "urgent": { "form": "urgent", "cornetto_id": "r_a-15654", "cornetto_synset_id": "n_a-507592", "wordnet_id": "a-00713558", "pos": "JJ", "sense": "dringend", "polarity": "-0.2", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "utopisch": { "form": "utopisch", "cornetto_id": "r_a-15803", "cornetto_synset_id": "n_a-521709", "wordnet_id": "a-00626136", "pos": "JJ", "sense": "als (van) een utopie", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "vaag": { "form": "vaag", "cornetto_id": "r_a-15892", "cornetto_synset_id": "d_a-9560", "wordnet_id": "a-00782957", "pos": "JJ", "sense": "niet duidelijk", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "0.9", "confidence": "1.0" }, "vaardig": { "form": "vaardig", "cornetto_id": "r_a-15894", "cornetto_synset_id": "d_a-9172", "wordnet_id": "a-02226162", "pos": "JJ", "sense": "bedreven", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "vakbekwaam": { "form": "vakbekwaam", "cornetto_id": "r_a-16190", "cornetto_synset_id": "n_a-532002", "wordnet_id": "a-00511037", "pos": "JJ", "sense": "competent", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "vakkundig": { "form": "vakkundig", "cornetto_id": "r_a-15900", "cornetto_synset_id": "n_a-532002", "wordnet_id": "a-00511037", "pos": "JJ", "sense": "met veel vakkennis", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "valide": { "form": "valide", "cornetto_id": "r_a-16332", "cornetto_synset_id": "n_a-510088", "wordnet_id": "a-00666058", "pos": "JJ", "sense": "gezond", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "vals": { "form": "vals", "cornetto_id": "r_a-15904", "cornetto_synset_id": "d_a-9561", "wordnet_id": "a-01117226", "pos": "JJ", "sense": "nagemaakt", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "vanzelfsprekend": { "form": "vanzelfsprekend", "cornetto_id": "r_a-15905", "cornetto_synset_id": "n_a-517484", "wordnet_id": "a-01593649", "pos": "JJ", "sense": "natuurlijk", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.3", "confidence": "1.0" }, "variabel": { "form": "variabel", "cornetto_id": "r_a-15906", "cornetto_synset_id": "d_a-9566", "wordnet_id": "a-01028163", "pos": "JJ", "sense": "veranderlijk", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.1", "confidence": "0.7" }, "vast": { "form": "vast", "cornetto_id": "r_a-15909", "cornetto_synset_id": "c_344", "wordnet_id": "a-00347400", "pos": "JJ", "sense": "onveranderlijk", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.1", "confidence": "1.0" }, "vastbesloten": { "form": "vastbesloten", "cornetto_id": "r_a-16191", "cornetto_synset_id": "n_a-532085", "wordnet_id": "a-00082034", "pos": "JJ", "sense": "gedecideerd", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "vatbaar": { "form": "vatbaar", "cornetto_id": "r_a-16334", "cornetto_synset_id": "n_a-532098", "wordnet_id": "a-00051373", "pos": "JJ", "sense": "snel ziek wordend", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "veelbelovend": { "form": "veelbelovend", "cornetto_id": "r_a-15915", "cornetto_synset_id": "n_a-532117", "wordnet_id": "a-00382173", "pos": "JJ", "sense": "hoopvol", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "veelbewogen": { "form": "veelbewogen", "cornetto_id": "r_a-15916", "cornetto_synset_id": "n_a-503982", "wordnet_id": "a-00035868", "pos": "JJ", "sense": "turbulent", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "veelgelezen": { "form": "veelgelezen", "cornetto_id": "r_a-16199", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "vaak gelezen", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.1", "confidence": "0.7" }, "veelgeprezen": { "form": "veelgeprezen", "cornetto_id": "r_a-16201", "cornetto_synset_id": "n_a-512859", "wordnet_id": "a-01375831", "pos": "JJ", "sense": "vaak geprezen", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "veelomvattend": { "form": "veelomvattend", "cornetto_id": "r_a-16204", "cornetto_synset_id": "d_a-9558", "wordnet_id": "a-00310433", "pos": "JJ", "sense": "uitgebreid", "polarity": "-0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "veelsoortig": { "form": "veelsoortig", "cornetto_id": "r_a-16205", "cornetto_synset_id": "n_a-532136", "wordnet_id": "a-02215977", "pos": "JJ", "sense": "mbt. veel soorten", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "veelvuldig": { "form": "veelvuldig", "cornetto_id": "r_a-15917", "cornetto_synset_id": "n_r-531906", "wordnet_id": "", "pos": "JJ", "sense": "frequent", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.1", "confidence": "1.0" }, "veelzeggend": { "form": "veelzeggend", "cornetto_id": "r_a-15918", "cornetto_synset_id": "n_a-532119", "wordnet_id": "a-01496976", "pos": "JJ", "sense": "veelbetekenend", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.4", "confidence": "0.7" }, "veelzijdig": { "form": "veelzijdig", "cornetto_id": "r_a-15919", "cornetto_synset_id": "n_a-532152", "wordnet_id": "a-00526541", "pos": "JJ", "sense": "met veel zijden", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "veilig": { "form": "veilig", "cornetto_id": "r_a-15924", "cornetto_synset_id": "n_a-532179", "wordnet_id": "a-02058529", "pos": "JJ", "sense": "zonder risico", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "venijnig": { "form": "venijnig", "cornetto_id": "r_a-15926", "cornetto_synset_id": "n_a-528174", "wordnet_id": "a-00092136", "pos": "JJ", "sense": "gemeen", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "ver": { "form": "ver", "cornetto_id": "r_a-16209", "cornetto_synset_id": "n_a-532245", "wordnet_id": "a-00442917", "pos": "JJ", "sense": "op grote afstand", "polarity": "-0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "verantwoordelijk": { "form": "verantwoordelijk", "cornetto_id": "r_a-15931", "cornetto_synset_id": "n_a-532263", "wordnet_id": "a-01996377", "pos": "JJ", "sense": "belangrijk", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "verbaal": { "form": "verbaal", "cornetto_id": "r_a-15932", "cornetto_synset_id": "n_a-532264", "wordnet_id": "a-00549675", "pos": "JJ", "sense": "mbt. het spreken", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "verbaasd": { "form": "verbaasd", "cornetto_id": "r_a-15933", "cornetto_synset_id": "n_a-532266", "wordnet_id": "a-02357479", "pos": "JJ", "sense": "verwonderd", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "verbazingwekkend": { "form": "verbazingwekkend", "cornetto_id": "r_a-16211", "cornetto_synset_id": "n_a-532272", "wordnet_id": "a-01285938", "pos": "JJ", "sense": "verwonderlijk", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.7", "confidence": "1.0" }, "verblindend": { "form": "verblindend", "cornetto_id": "r_a-15938", "cornetto_synset_id": "n_a-524142", "wordnet_id": "a-00217728", "pos": "JJ", "sense": "heel mooi", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "verbluffend": { "form": "verbluffend", "cornetto_id": "r_a-15939", "cornetto_synset_id": "n_a-532288", "wordnet_id": "a-00645856", "pos": "JJ", "sense": "verbazend", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.9", "confidence": "1.0" }, "verbolgen": { "form": "verbolgen", "cornetto_id": "r_a-15941", "cornetto_synset_id": "d_a-9199", "wordnet_id": "a-00114454", "pos": "JJ", "sense": "gebelgd", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "verborgen": { "form": "verborgen", "cornetto_id": "r_a-16341", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "geheim", "polarity": "-0.1", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "verdedigbaar": { "form": "verdedigbaar", "cornetto_id": "r_a-16216", "cornetto_synset_id": "n_a-525316", "wordnet_id": "a-00218440", "pos": "JJ", "sense": "te verdedigen", "polarity": "0.3", "subjectivity": "0.9", "intensity": "0.9", "confidence": "0.7" }, "verdekt": { "form": "verdekt", "cornetto_id": "r_a-15946", "cornetto_synset_id": "n_a-532294", "wordnet_id": "a-02088974", "pos": "JJ", "sense": "niet zichtbaar", "polarity": "-0.3", "subjectivity": "0.9", "intensity": "0.9", "confidence": "0.7" }, "verder": { "form": "verder", "cornetto_id": "r_a-15947", "cornetto_synset_id": "n_a-522362", "wordnet_id": "a-00122626", "pos": "JJ", "sense": "overig", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "verderfelijk": { "form": "verderfelijk", "cornetto_id": "r_a-15948", "cornetto_synset_id": "n_a-532319", "wordnet_id": "a-00089550", "pos": "JJ", "sense": "slecht", "polarity": "-0.8", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "verdicht": { "form": "verdicht", "cornetto_id": "d_a-328161", "cornetto_synset_id": "n_a-532913", "wordnet_id": "a-00012071", "pos": "JJ", "sense": "", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "verdienstelijk": { "form": "verdienstelijk", "cornetto_id": "r_a-15949", "cornetto_synset_id": "n_a-524336", "wordnet_id": "a-02585545", "pos": "JJ", "sense": "lofwaardig", "polarity": "0.3", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "verdoofd": { "form": "verdoofd", "cornetto_id": "r_a-16220", "cornetto_synset_id": "d_a-9540", "wordnet_id": "a-00080698", "pos": "JJ", "sense": "gevoelloos", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "verdraagzaam": { "form": "verdraagzaam", "cornetto_id": "r_a-15952", "cornetto_synset_id": "n_a-532336", "wordnet_id": "a-01736384", "pos": "JJ", "sense": "tolerant", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "verdrietig": { "form": "verdrietig", "cornetto_id": "r_a-15954", "cornetto_synset_id": "n_a-507607", "wordnet_id": "a-01126841", "pos": "JJ", "sense": "treurig", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "vereist": { "form": "vereist", "cornetto_id": "d_a-418590", "cornetto_synset_id": "n_a-520130", "wordnet_id": "a-00849108", "pos": "JJ", "sense": "", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "verfrissend": { "form": "verfrissend", "cornetto_id": "r_a-16372", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "plezierig", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "vergaand": { "form": "vergaand", "cornetto_id": "r_a-15956", "cornetto_synset_id": "n_a-532653", "wordnet_id": "a-00311505", "pos": "JJ", "sense": "met grote gevolgen", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "vergeefs": { "form": "vergeefs", "cornetto_id": "r_a-15958", "cornetto_synset_id": "n_a-535779", "wordnet_id": "a-01082535", "pos": "JJ", "sense": "zonder resultaat", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.2", "confidence": "0.7" }, "vergelijkbaar": { "form": "vergelijkbaar", "cornetto_id": "r_a-16230", "cornetto_synset_id": "d_a-9643", "wordnet_id": "", "pos": "JJ", "sense": "vergeleken kunnende worden", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "vergenoegd": { "form": "vergenoegd", "cornetto_id": "r_a-15959", "cornetto_synset_id": "d_a-9546", "wordnet_id": "a-00362467", "pos": "JJ", "sense": "tevreden", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "vergevorderd": { "form": "vergevorderd", "cornetto_id": "r_a-16232", "cornetto_synset_id": "d_a-9172", "wordnet_id": "a-02226162", "pos": "JJ", "sense": "ver gekomen", "polarity": "0.0", "subjectivity": "0.1", "intensity": "0.9", "confidence": "0.7" }, "vergezocht": { "form": "vergezocht", "cornetto_id": "d_a-309192", "cornetto_synset_id": "n_a-532388", "wordnet_id": "a-01935935", "pos": "JJ", "sense": "", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "verhandelbaar": { "form": "verhandelbaar", "cornetto_id": "r_a-16235", "cornetto_synset_id": "n_a-532510", "wordnet_id": "a-00877119", "pos": "JJ", "sense": "verkoopbaar", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "verheugd": { "form": "verheugd", "cornetto_id": "r_a-15965", "cornetto_synset_id": "d_a-9195", "wordnet_id": "a-00363938", "pos": "JJ", "sense": "blij", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "verheven": { "form": "verheven", "cornetto_id": "r_a-15966", "cornetto_synset_id": "d_a-9569", "wordnet_id": "a-00125993", "pos": "JJ", "sense": "boven het gewone", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.4", "confidence": "0.7" }, "verhit": { "form": "verhit", "cornetto_id": "r_a-16346", "cornetto_synset_id": "d_v-7979", "wordnet_id": "", "pos": "JJ", "sense": "gloeiend", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "verkeerd": { "form": "verkeerd", "cornetto_id": "r_a-15970", "cornetto_synset_id": "n_a-509314", "wordnet_id": "a-00632949", "pos": "JJ", "sense": "fout", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "verkeersellende": { "form": "verkeersellende", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "verkeersinfarct": { "form": "verkeersinfarct", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "verkeken": { "form": "verkeken", "cornetto_id": "r_a-15971", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "ongebruikt voorbij laten gaan", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "verklaarbaar": { "form": "verklaarbaar", "cornetto_id": "r_a-16240", "cornetto_synset_id": "n_a-532494", "wordnet_id": "a-00938801", "pos": "JJ", "sense": "begrijpelijk", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.9" }, "verklarend": { "form": "verklarend", "cornetto_id": "r_a-16241", "cornetto_synset_id": "d_v-8014", "wordnet_id": "", "pos": "JJ", "sense": "wat uitlegt", "polarity": "0.2", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "verkloten": { "form": "verkloten", "cornetto_id": "d_v-310311", "cornetto_synset_id": "d_v-8148", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "verknipt": { "form": "verknipt", "cornetto_id": "r_a-15974", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "raar", "polarity": "-0.4", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "verkrijgbaar": { "form": "verkrijgbaar", "cornetto_id": "r_a-16242", "cornetto_synset_id": "n_a-532527", "wordnet_id": "a-00184363", "pos": "JJ", "sense": "te koop", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "verleden": { "form": "verleden", "cornetto_id": "r_a-15977", "cornetto_synset_id": "n_a-532537", "wordnet_id": "a-00004296", "pos": "JJ", "sense": "vorig", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "verlegen": { "form": "verlegen", "cornetto_id": "r_a-15980", "cornetto_synset_id": "d_a-9423", "wordnet_id": "", "pos": "JJ", "sense": "behoefte hebbend aan", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "verlekkerd": { "form": "verlekkerd", "cornetto_id": "r_a-16245", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "belust", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "verlicht": { "form": "verlicht", "cornetto_id": "r_a-15982", "cornetto_synset_id": "n_a-526330", "wordnet_id": "a-00286578", "pos": "JJ", "sense": "met moderne ideeën", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "verliefd": { "form": "verliefd", "cornetto_id": "r_a-15983", "cornetto_synset_id": "n_a-532549", "wordnet_id": "a-00750054", "pos": "JJ", "sense": "stapel", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "verliesgevend": { "form": "verliesgevend", "cornetto_id": "r_a-16246", "cornetto_synset_id": "n_a-532551", "wordnet_id": "", "pos": "JJ", "sense": "niet rendabel", "polarity": "-0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "verliezer": { "form": "verliezer", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "0.5", "subjectivity": "-0.6", "intensity": "1.0", "confidence": "0.8" }, "verlokkelijk": { "form": "verlokkelijk", "cornetto_id": "r_a-16645", "cornetto_synset_id": "c_478", "wordnet_id": "a-00166146", "pos": "JJ", "sense": "verleidelijk", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "verloren": { "form": "verloren", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.2", "subjectivity": "-0.3", "intensity": "1.0", "confidence": "0.8" }, "vermaard": { "form": "vermaard", "cornetto_id": "r_a-15987", "cornetto_synset_id": "n_a-503694", "wordnet_id": "a-01375831", "pos": "JJ", "sense": "beroemd", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "vermakelijk": { "form": "vermakelijk", "cornetto_id": "r_a-15988", "cornetto_synset_id": "n_a-511389", "wordnet_id": "", "pos": "JJ", "sense": "amusant", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "vermaledijd": { "form": "vermaledijd", "cornetto_id": "r_a-16249", "cornetto_synset_id": "d_a-9577", "wordnet_id": "a-00247439", "pos": "JJ", "sense": "vervloekt", "polarity": "-0.2", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "vermeend": { "form": "vermeend", "cornetto_id": "r_a-15989", "cornetto_synset_id": "n_a-532582", "wordnet_id": "a-00028471", "pos": "JJ", "sense": "verondersteld", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "0.9", "confidence": "1.0" }, "vermetel": { "form": "vermetel", "cornetto_id": "r_a-15990", "cornetto_synset_id": "n_a-529554", "wordnet_id": "a-00081671", "pos": "JJ", "sense": "dapper", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "vermoedelijk": { "form": "vermoedelijk", "cornetto_id": "r_a-15991", "cornetto_synset_id": "d_a-9607", "wordnet_id": "", "pos": "JJ", "sense": "zoals verondersteld", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.9" }, "vermoeid": { "form": "vermoeid", "cornetto_id": "r_a-16647", "cornetto_synset_id": "d_a-9410", "wordnet_id": "a-02432428", "pos": "JJ", "sense": "moe", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "vermoeiend": { "form": "vermoeiend", "cornetto_id": "r_a-16251", "cornetto_synset_id": "n_a-532593", "wordnet_id": "a-00836544", "pos": "JJ", "sense": "afmattend", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "vermogend": { "form": "vermogend", "cornetto_id": "r_a-15992", "cornetto_synset_id": "d_a-9505", "wordnet_id": "a-01049352", "pos": "JJ", "sense": "rijk", "polarity": "0.3", "subjectivity": "0.7", "intensity": "0.8", "confidence": "0.7" }, "vernederend": { "form": "vernederend", "cornetto_id": "r_a-16252", "cornetto_synset_id": "n_a-532606", "wordnet_id": "a-01160031", "pos": "JJ", "sense": "minachtend", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "vernieuwing": { "form": "vernieuwing", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "0.2", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "vernuftig": { "form": "vernuftig", "cornetto_id": "r_a-15995", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "ingenieus", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.9" }, "verontwaardigd": { "form": "verontwaardigd", "cornetto_id": "r_a-15998", "cornetto_synset_id": "n_a-532627", "wordnet_id": "a-00115494", "pos": "JJ", "sense": "gekrenkt", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "verpleegkundig": { "form": "verpleegkundig", "cornetto_id": "r_a-16254", "cornetto_synset_id": "n_a-532635", "wordnet_id": "a-02760116", "pos": "JJ", "sense": "mbt. de verpleegkunde", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "verpletterend": { "form": "verpletterend", "cornetto_id": "r_a-16000", "cornetto_synset_id": "n_a-522429", "wordnet_id": "a-00587697", "pos": "JJ", "sense": "verbijsterend", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "verplichtend": { "form": "verplichtend", "cornetto_id": "r_a-16255", "cornetto_synset_id": "d_v-8158", "wordnet_id": "", "pos": "JJ", "sense": "wat verplichtingen schept", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "verrassend": { "form": "verrassend", "cornetto_id": "r_a-16005", "cornetto_synset_id": "n_a-521635", "wordnet_id": "", "pos": "JJ", "sense": "onverwacht", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.2", "confidence": "1.0" }, "verrast": { "form": "verrast", "cornetto_id": "r_a-16256", "cornetto_synset_id": "n_a-532650", "wordnet_id": "a-00091764", "pos": "JJ", "sense": "verbaasd", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "verregaand": { "form": "verregaand", "cornetto_id": "r_a-16257", "cornetto_synset_id": "n_a-532653", "wordnet_id": "a-00311505", "pos": "JJ", "sense": "buitensporig", "polarity": "-0.2", "subjectivity": "0.5", "intensity": "1.1", "confidence": "0.7" }, "verrukkelijk": { "form": "verrukkelijk", "cornetto_id": "r_a-16006", "cornetto_synset_id": "n_a-532666", "wordnet_id": "a-00166753", "pos": "JJ", "sense": "zalig", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "vers": { "form": "vers", "cornetto_id": "d_a-312391", "cornetto_synset_id": "n_a-532670", "wordnet_id": "a-01687167", "pos": "JJ", "sense": "ververst", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "verschillend": { "form": "verschillend", "cornetto_id": "r_a-16009", "cornetto_synset_id": "n_a-501908", "wordnet_id": "a-02469928", "pos": "JJ", "sense": "anders", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "1.0" }, "verschrikkelijk": { "form": "verschrikkelijk", "cornetto_id": "r_a-16012", "cornetto_synset_id": "c_268", "wordnet_id": "a-00193367", "pos": "JJ", "sense": "heel (veel) ADVERB", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "2.0", "confidence": "1.0" }, "verschuldigd": { "form": "verschuldigd", "cornetto_id": "r_a-16013", "cornetto_synset_id": "n_a-527386", "wordnet_id": "a-00136884", "pos": "JJ", "sense": "wat men schuldig is", "polarity": "-0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "verslaafd": { "form": "verslaafd", "cornetto_id": "r_a-16014", "cornetto_synset_id": "d_a-9575", "wordnet_id": "a-00047029", "pos": "JJ", "sense": "niet zonder kunnend", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "verslavend": { "form": "verslavend", "cornetto_id": "r_a-16016", "cornetto_synset_id": "n_a-532698", "wordnet_id": "a-00047786", "pos": "JJ", "sense": "waaraan je verslaafd raakt", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "verslechtert": { "form": "verslechtert", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "-0.2", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "verstaanbaar": { "form": "verstaanbaar", "cornetto_id": "r_a-16263", "cornetto_synset_id": "n_a-532720", "wordnet_id": "a-00173764", "pos": "JJ", "sense": "hoorbaar", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "verstandig": { "form": "verstandig", "cornetto_id": "r_a-16019", "cornetto_synset_id": "c_667", "wordnet_id": "a-02569130", "pos": "JJ", "sense": "intelligent", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "versteld": { "form": "versteld", "cornetto_id": "r_a-16020", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "verbaasd", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "verstokt": { "form": "verstokt", "cornetto_id": "r_a-16022", "cornetto_synset_id": "n_a-532741", "wordnet_id": "a-00489768", "pos": "JJ", "sense": "ontoegankelijk voor verandering", "polarity": "-0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "verstoord": { "form": "verstoord", "cornetto_id": "r_a-16024", "cornetto_synset_id": "n_a-509660", "wordnet_id": "a-00116529", "pos": "JJ", "sense": "boos", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.6", "confidence": "0.7" }, "verstrekkend": { "form": "verstrekkend", "cornetto_id": "r_a-16026", "cornetto_synset_id": "n_a-532749", "wordnet_id": "a-00526062", "pos": "JJ", "sense": "verreikend", "polarity": "-0.1", "subjectivity": "0.5", "intensity": "1.1", "confidence": "0.7" }, "verstrooid": { "form": "verstrooid", "cornetto_id": "r_a-16028", "cornetto_synset_id": "d_a-9150", "wordnet_id": "a-00165171", "pos": "JJ", "sense": "verward", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "versuft": { "form": "versuft", "cornetto_id": "r_a-16029", "cornetto_synset_id": "d_a-9540", "wordnet_id": "a-00080698", "pos": "JJ", "sense": "dof", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "verteerbaar": { "form": "verteerbaar", "cornetto_id": "r_a-16268", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "wat verteerd kan worden", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "1.0" }, "vertrouwd": { "form": "vertrouwd", "cornetto_id": "r_a-16033", "cornetto_synset_id": "n_a-532775", "wordnet_id": "a-00965894", "pos": "JJ", "sense": "goed bekend", "polarity": "0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "vertrouwenwekkend": { "form": "vertrouwenwekkend", "cornetto_id": "r_a-16270", "cornetto_synset_id": "n_a-503878", "wordnet_id": "a-01982646", "pos": "JJ", "sense": "vertrouwen inboezemend", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "vervangbaar": { "form": "vervangbaar", "cornetto_id": "r_a-16271", "cornetto_synset_id": "n_a-532795", "wordnet_id": "a-01978395", "pos": "JJ", "sense": "wat vervangen kan worden", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "verveeld": { "form": "verveeld", "cornetto_id": "r_a-16272", "cornetto_synset_id": "d_a-9392", "wordnet_id": "", "pos": "JJ", "sense": "blasé", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "vervelend": { "form": "vervelend", "cornetto_id": "r_a-16041", "cornetto_synset_id": "c_573", "wordnet_id": "a-02307729", "pos": "JJ", "sense": "saai", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "vervelens": { "form": "vervelens", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.4", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.9" }, "vervloekt": { "form": "vervloekt", "cornetto_id": "r_a-16273", "cornetto_synset_id": "d_a-9577", "wordnet_id": "a-00247439", "pos": "JJ", "sense": "ellendig", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "verwaarloosbaar": { "form": "verwaarloosbaar", "cornetto_id": "r_a-16275", "cornetto_synset_id": "n_a-520661", "wordnet_id": "a-01279978", "pos": "JJ", "sense": "onbelangrijk", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "verwachtingsvol": { "form": "verwachtingsvol", "cornetto_id": "r_a-16276", "cornetto_synset_id": "n_a-532833", "wordnet_id": "a-00176676", "pos": "JJ", "sense": "vol verwachting", "polarity": "0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "verwant": { "form": "verwant", "cornetto_id": "r_a-16043", "cornetto_synset_id": "n_a-532834", "wordnet_id": "a-01972820", "pos": "JJ", "sense": "nauw verbonden", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "verwarren": { "form": "verwarren", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "-0.2", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "verwarrend": { "form": "verwarrend", "cornetto_id": "r_a-16277", "cornetto_synset_id": "n_a-532842", "wordnet_id": "", "pos": "JJ", "sense": "wat verwart", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "verwend": { "form": "verwend", "cornetto_id": "r_a-16278", "cornetto_synset_id": "n_a-532850", "wordnet_id": "a-01138902", "pos": "JJ", "sense": "bedorven", "polarity": "-0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "verwerpelijk": { "form": "verwerpelijk", "cornetto_id": "r_a-16047", "cornetto_synset_id": "n_a-527874", "wordnet_id": "a-01321529", "pos": "JJ", "sense": "onaanvaardbaar slecht", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "verwijfd": { "form": "verwijfd", "cornetto_id": "r_a-16049", "cornetto_synset_id": "n_a-532857", "wordnet_id": "a-00266420", "pos": "JJ", "sense": "onmannelijk", "polarity": "-0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "verwoed": { "form": "verwoed", "cornetto_id": "r_a-16050", "cornetto_synset_id": "n_a-508813", "wordnet_id": "a-01725712", "pos": "JJ", "sense": "fel", "polarity": "0.1", "subjectivity": "0.8", "intensity": "1.1", "confidence": "1.0" }, "verwoestend": { "form": "verwoestend", "cornetto_id": "r_a-16282", "cornetto_synset_id": "n_a-532611", "wordnet_id": "a-00248837", "pos": "JJ", "sense": "vernietigend", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "verwondingen": { "form": "verwondingen", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NNS", "sense": "", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "verzachtend": { "form": "verzachtend", "cornetto_id": "r_a-16285", "cornetto_synset_id": "n_a-532867", "wordnet_id": "a-00908483", "pos": "JJ", "sense": "zachter of lichter makend", "polarity": "0.1", "subjectivity": "0.7", "intensity": "1.2", "confidence": "0.7" }, "verzengend": { "form": "verzengend", "cornetto_id": "r_a-16052", "cornetto_synset_id": "d_v-8208", "wordnet_id": "", "pos": "JJ", "sense": "wegschroeiend", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.3", "confidence": "0.7" }, "verziend": { "form": "verziend", "cornetto_id": "r_a-16053", "cornetto_synset_id": "n_a-532902", "wordnet_id": "a-02159969", "pos": "JJ", "sense": "hypermetroop", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "vet": { "form": "vet", "cornetto_id": "r_a-16055", "cornetto_synset_id": "n_a-532927", "wordnet_id": "a-00991838", "pos": "JJ", "sense": "met veel vet of oliën", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.3", "confidence": "1.0" }, "vettig": { "form": "vettig", "cornetto_id": "r_a-16292", "cornetto_synset_id": "d_a-9581", "wordnet_id": "a-00987703", "pos": "JJ", "sense": "met vet", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "vierkant": { "form": "vierkant", "cornetto_id": "r_a-16358", "cornetto_synset_id": "d_a-9272", "wordnet_id": "a-02038126", "pos": "JJ", "sense": "massief", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.3", "confidence": "0.7" }, "vies": { "form": "vies", "cornetto_id": "r_a-16065", "cornetto_synset_id": "c_532", "wordnet_id": "a-00361509", "pos": "JJ", "sense": "onfatsoenlijk", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "vijandelijk": { "form": "vijandelijk", "cornetto_id": "r_a-16067", "cornetto_synset_id": "n_a-533045", "wordnet_id": "a-00083478", "pos": "JJ", "sense": "mbt. een vijand", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "vindingrijk": { "form": "vindingrijk", "cornetto_id": "r_a-16069", "cornetto_synset_id": "n_a-533083", "wordnet_id": "a-00307182", "pos": "JJ", "sense": "inventief", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "vinnig": { "form": "vinnig", "cornetto_id": "r_a-16071", "cornetto_synset_id": "n_a-508891", "wordnet_id": "a-00618377", "pos": "JJ", "sense": "bijdehand", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.4", "confidence": "0.7" }, "violet": { "form": "violet", "cornetto_id": "r_a-16294", "cornetto_synset_id": "n_a-533105", "wordnet_id": "a-00380312", "pos": "JJ", "sense": "blauwpaars", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "virtueel": { "form": "virtueel", "cornetto_id": "r_a-16296", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "slechts schijnbaar bestaand", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "virtuoos": { "form": "virtuoos", "cornetto_id": "r_a-16073", "cornetto_synset_id": "n_a-533118", "wordnet_id": "a-02226979", "pos": "JJ", "sense": "briljant", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "visrijk": { "form": "visrijk", "cornetto_id": "r_a-16297", "cornetto_synset_id": "n_a-533142", "wordnet_id": "", "pos": "JJ", "sense": "rijk aan vis", "polarity": "0.5", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "visueel": { "form": "visueel", "cornetto_id": "r_a-16075", "cornetto_synset_id": "n_a-501282", "wordnet_id": "a-00428404", "pos": "JJ", "sense": "mbt. het zien", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "vitaal": { "form": "vitaal", "cornetto_id": "r_a-16076", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "vol energie", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "vlak": { "form": "vlak", "cornetto_id": "r_a-16079", "cornetto_synset_id": "n_a-531021", "wordnet_id": "a-02430238", "pos": "JJ", "sense": "zonder contrasten", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.1", "confidence": "1.0" }, "vlekkeloos": { "form": "vlekkeloos", "cornetto_id": "r_a-16081", "cornetto_synset_id": "n_a-509317", "wordnet_id": "a-00247247", "pos": "JJ", "sense": "foutloos", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.3", "confidence": "0.7" }, "vleselijk": { "form": "vleselijk", "cornetto_id": "r_a-16653", "cornetto_synset_id": "n_a-535782", "wordnet_id": "a-00070427", "pos": "JJ", "sense": "zinnelijk", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.4", "confidence": "0.7" }, "vliegensvlug": { "form": "vliegensvlug", "cornetto_id": "r_a-16654", "cornetto_synset_id": "n_a-504345", "wordnet_id": "", "pos": "JJ", "sense": "zeer snel", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "vlijmscherp": { "form": "vlijmscherp", "cornetto_id": "r_a-16083", "cornetto_synset_id": "n_a-533284", "wordnet_id": "a-00781061", "pos": "JJ", "sense": "heel scherp", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "vloeiend": { "form": "vloeiend", "cornetto_id": "r_a-16086", "cornetto_synset_id": "n_a-533297", "wordnet_id": "a-00098933", "pos": "JJ", "sense": "vlot", "polarity": "0.9", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "vlot": { "form": "vlot", "cornetto_id": "r_a-16362", "cornetto_synset_id": "n_a-533320", "wordnet_id": "a-00076921", "pos": "JJ", "sense": "drijvend (adverb)", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "vluchtig": { "form": "vluchtig", "cornetto_id": "r_a-16091", "cornetto_synset_id": "n_a-533334", "wordnet_id": "a-02263491", "pos": "JJ", "sense": "mbt. (vloei)stoffen", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "vlug": { "form": "vlug", "cornetto_id": "r_a-16092", "cornetto_synset_id": "n_a-528140", "wordnet_id": "a-00976508", "pos": "JJ", "sense": "snel", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "vocaal": { "form": "vocaal", "cornetto_id": "r_a-16093", "cornetto_synset_id": "n_a-533352", "wordnet_id": "a-01454494", "pos": "JJ", "sense": "mbt. de stem", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "vochtig": { "form": "vochtig", "cornetto_id": "r_a-16094", "cornetto_synset_id": "d_a-9416", "wordnet_id": "a-02547317", "pos": "JJ", "sense": "nattig", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "voedselarm": { "form": "voedselarm", "cornetto_id": "r_a-16302", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "arm aan voeding(swaarde)", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "voedzaam": { "form": "voedzaam", "cornetto_id": "r_a-16095", "cornetto_synset_id": "n_a-518021", "wordnet_id": "a-02397234", "pos": "JJ", "sense": "goed voedend", "polarity": "0.6", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "voelbaar": { "form": "voelbaar", "cornetto_id": "r_a-16303", "cornetto_synset_id": "n_a-533395", "wordnet_id": "a-00013160", "pos": "JJ", "sense": "merkbaar", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "vogelvrij": { "form": "vogelvrij", "cornetto_id": "r_a-16096", "cornetto_synset_id": "n_a-533461", "wordnet_id": "a-01403760", "pos": "JJ", "sense": "rechteloos", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "vol": { "form": "vol", "cornetto_id": "r_a-16099", "cornetto_synset_id": "n_a-533538", "wordnet_id": "a-00520214", "pos": "JJ", "sense": "compleet", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "volautomatisch": { "form": "volautomatisch", "cornetto_id": "r_a-16304", "cornetto_synset_id": "n_a-533471", "wordnet_id": "", "pos": "JJ", "sense": "geheel automatisch", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "voldaan": { "form": "voldaan", "cornetto_id": "r_a-16100", "cornetto_synset_id": "d_a-9546", "wordnet_id": "a-00362467", "pos": "JJ", "sense": "tevreden", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "voldoende": { "form": "voldoende", "cornetto_id": "r_a-16305", "cornetto_synset_id": "n_a-510344", "wordnet_id": "", "pos": "JJ", "sense": "toereikend", "polarity": "0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "volgeboekt": { "form": "volgeboekt", "cornetto_id": "r_a-16655", "cornetto_synset_id": "n_a-533484", "wordnet_id": "", "pos": "JJ", "sense": "volledig geboekt", "polarity": "-0.1", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "volgend": { "form": "volgend", "cornetto_id": "r_a-16306", "cornetto_synset_id": "n_a-533485", "wordnet_id": "a-00122626", "pos": "JJ", "sense": "wat volgt", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "volkenrechtelijk": { "form": "volkenrechtelijk", "cornetto_id": "r_a-16308", "cornetto_synset_id": "n_a-533499", "wordnet_id": "", "pos": "JJ", "sense": "mbt. het volkenrecht", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "volkomen": { "form": "volkomen", "cornetto_id": "r_a-16309", "cornetto_synset_id": "n_a-533538", "wordnet_id": "a-00520214", "pos": "JJ", "sense": "helemaal", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.9", "confidence": "1.0" }, "volks": { "form": "volks", "cornetto_id": "r_a-16103", "cornetto_synset_id": "n_a-533505", "wordnet_id": "a-00414518", "pos": "JJ", "sense": "horend bij het gewone volk", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "volledig": { "form": "volledig", "cornetto_id": "r_a-16104", "cornetto_synset_id": "n_a-533538", "wordnet_id": "a-00520214", "pos": "JJ", "sense": "totaal", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.4", "confidence": "1.0" }, "volleerd": { "form": "volleerd", "cornetto_id": "r_a-16105", "cornetto_synset_id": "n_a-533540", "wordnet_id": "a-00521329", "pos": "JJ", "sense": "perfect", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "volmaakt": { "form": "volmaakt", "cornetto_id": "r_a-16106", "cornetto_synset_id": "n_a-533543", "wordnet_id": "a-01750847", "pos": "JJ", "sense": "perfect", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.6", "confidence": "1.0" }, "volmondig": { "form": "volmondig", "cornetto_id": "r_a-16107", "cornetto_synset_id": "n_a-521672", "wordnet_id": "a-00685924", "pos": "JJ", "sense": "ronduit", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "0.9", "confidence": "0.7" }, "volslagen": { "form": "volslagen", "cornetto_id": "r_a-16108", "cornetto_synset_id": "n_a-533547", "wordnet_id": "a-00005107", "pos": "JJ", "sense": "compleet", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.3", "confidence": "1.0" }, "volstrekt": { "form": "volstrekt", "cornetto_id": "r_a-16657", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "absoluut", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.9", "confidence": "1.0" }, "volwaardig": { "form": "volwaardig", "cornetto_id": "r_a-16111", "cornetto_synset_id": "n_a-533565", "wordnet_id": "a-00935792", "pos": "JJ", "sense": "zonder gebreken", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "volwassen": { "form": "volwassen", "cornetto_id": "r_a-16112", "cornetto_synset_id": "d_a-9590", "wordnet_id": "a-01488616", "pos": "JJ", "sense": "volgroeid", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "vooraanstaand": { "form": "vooraanstaand", "cornetto_id": "r_a-16114", "cornetto_synset_id": "n_a-510878", "wordnet_id": "a-01830134", "pos": "JJ", "sense": "belangrijk", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "voorbarig": { "form": "voorbarig", "cornetto_id": "r_a-16115", "cornetto_synset_id": "n_a-533587", "wordnet_id": "a-01494740", "pos": "JJ", "sense": "te vroeg", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "voorbij": { "form": "voorbij", "cornetto_id": "r_a-16117", "cornetto_synset_id": "n_a-533598", "wordnet_id": "", "pos": "JJ", "sense": "afgelopen", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "1.0" }, "voorgaand": { "form": "voorgaand", "cornetto_id": "r_a-16314", "cornetto_synset_id": "n_a-533615", "wordnet_id": "a-00004296", "pos": "JJ", "sense": "vorig", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.9" }, "voorlaatst": { "form": "voorlaatst", "cornetto_id": "r_a-16123", "cornetto_synset_id": "n_a-533646", "wordnet_id": "a-01015392", "pos": "JJ", "sense": "op een na de laatste", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.1", "confidence": "0.7" }, "voorlopig": { "form": "voorlopig", "cornetto_id": "r_a-16124", "cornetto_synset_id": "n_a-533653", "wordnet_id": "", "pos": "JJ", "sense": "nog niet definitief", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "voormalig": { "form": "voormalig", "cornetto_id": "r_a-16125", "cornetto_synset_id": "n_a-533656", "wordnet_id": "a-00669138", "pos": "JJ", "sense": "vorig", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "voornaam": { "form": "voornaam", "cornetto_id": "r_a-16126", "cornetto_synset_id": "n_a-533659", "wordnet_id": "a-01590484", "pos": "JJ", "sense": "belangrijk", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.9" }, "voornamelijk": { "form": "voornamelijk", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "voorspelbaar": { "form": "voorspelbaar", "cornetto_id": "r_a-16318", "cornetto_synset_id": "n_a-533699", "wordnet_id": "a-00301187", "pos": "JJ", "sense": "te voorspellen", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "0.9", "confidence": "1.0" }, "voorspellend": { "form": "voorspellend", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "voorspoedig": { "form": "voorspoedig", "cornetto_id": "r_a-16129", "cornetto_synset_id": "n_a-533700", "wordnet_id": "a-02331262", "pos": "JJ", "sense": "met voorspoed", "polarity": "0.5", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "voorstelbaar": { "form": "voorstelbaar", "cornetto_id": "r_a-16320", "cornetto_synset_id": "n_a-519143", "wordnet_id": "a-02418249", "pos": "JJ", "sense": "voor te stellen", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "voortdurend": { "form": "voortdurend", "cornetto_id": "r_a-16130", "cornetto_synset_id": "n_a-533706", "wordnet_id": "", "pos": "JJ", "sense": "onophoudelijk", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "voortijdig": { "form": "voortijdig", "cornetto_id": "r_a-16131", "cornetto_synset_id": "n_a-533707", "wordnet_id": "a-00815000", "pos": "JJ", "sense": "vroegtijdig", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "voortreffelijk": { "form": "voortreffelijk", "cornetto_id": "r_a-16132", "cornetto_synset_id": "d_a-9557", "wordnet_id": "", "pos": "JJ", "sense": "uitnemend", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "voortvarend": { "form": "voortvarend", "cornetto_id": "r_a-16133", "cornetto_synset_id": "n_a-507342", "wordnet_id": "a-00249721", "pos": "JJ", "sense": "doortastend", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "voortvluchtig": { "form": "voortvluchtig", "cornetto_id": "r_a-16134", "cornetto_synset_id": "n_a-533714", "wordnet_id": "a-01443097", "pos": "JJ", "sense": "op de vlucht", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "vooruitstrevend": { "form": "vooruitstrevend", "cornetto_id": "r_a-16135", "cornetto_synset_id": "n_a-524506", "wordnet_id": "a-00575230", "pos": "JJ", "sense": "progressief", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "voorwaardelijk": { "form": "voorwaardelijk", "cornetto_id": "r_a-16136", "cornetto_synset_id": "n_a-533725", "wordnet_id": "a-00556318", "pos": "JJ", "sense": "conditioneel", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.3", "confidence": "0.7" }, "voorzichtig": { "form": "voorzichtig", "cornetto_id": "r_a-16138", "cornetto_synset_id": "n_a-533736", "wordnet_id": "a-00326202", "pos": "JJ", "sense": "zorgvuldig", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "vorig": { "form": "vorig", "cornetto_id": "r_a-16142", "cornetto_synset_id": "d_a-9599", "wordnet_id": "", "pos": "JJ", "sense": "eerder", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "vraatzuchtig": { "form": "vraatzuchtig", "cornetto_id": "r_a-16145", "cornetto_synset_id": "n_a-527340", "wordnet_id": "a-00009978", "pos": "JJ", "sense": "gulzig", "polarity": "-0.2", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "vredig": { "form": "vredig", "cornetto_id": "r_a-16147", "cornetto_synset_id": "n_a-533829", "wordnet_id": "a-01922227", "pos": "JJ", "sense": "in vrede", "polarity": "0.1", "subjectivity": "0.7", "intensity": "1.3", "confidence": "0.7" }, "vreemd": { "form": "vreemd", "cornetto_id": "r_a-16150", "cornetto_synset_id": "n_a-533834", "wordnet_id": "a-00488857", "pos": "JJ", "sense": "raar", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "vrekkig": { "form": "vrekkig", "cornetto_id": "r_a-16658", "cornetto_synset_id": "n_a-510944", "wordnet_id": "a-00017186", "pos": "JJ", "sense": "gierig", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "vreselijk": { "form": "vreselijk", "cornetto_id": "r_a-16153", "cornetto_synset_id": "n_a-532685", "wordnet_id": "a-00193799", "pos": "JJ", "sense": "angstaanjagend", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "vreugdeloos": { "form": "vreugdeloos", "cornetto_id": "r_a-16324", "cornetto_synset_id": "n_a-507607", "wordnet_id": "a-01126841", "pos": "JJ", "sense": "treurig", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "vriendelijk": { "form": "vriendelijk", "cornetto_id": "r_a-16154", "cornetto_synset_id": "c_175", "wordnet_id": "a-01372049", "pos": "JJ", "sense": "aardig", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "vrij": { "form": "vrij", "cornetto_id": "r_a-16160", "cornetto_synset_id": "n_a-533914", "wordnet_id": "a-00287498", "pos": "JJ", "sense": "vrijmoedig", "polarity": "0.6", "subjectivity": "0.9", "intensity": "0.9", "confidence": "1.0" }, "vrijblijvend": { "form": "vrijblijvend", "cornetto_id": "r_a-16162", "cornetto_synset_id": "n_a-533876", "wordnet_id": "a-00702444", "pos": "JJ", "sense": "zonder verbintenis", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "vrijgevochten": { "form": "vrijgevochten", "cornetto_id": "r_a-16164", "cornetto_synset_id": "n_a-520781", "wordnet_id": "a-00362269", "pos": "JJ", "sense": "geëmancipeerd", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "vrijpostig": { "form": "vrijpostig", "cornetto_id": "r_a-16166", "cornetto_synset_id": "d_a-9207", "wordnet_id": "a-00155720", "pos": "JJ", "sense": "brutaal", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "vrijwillig": { "form": "vrijwillig", "cornetto_id": "r_a-16167", "cornetto_synset_id": "n_a-533923", "wordnet_id": "a-02521183", "pos": "JJ", "sense": "uit vrije wil", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "1.0" }, "vrijzinnig": { "form": "vrijzinnig", "cornetto_id": "r_a-16168", "cornetto_synset_id": "n_a-533926", "wordnet_id": "a-00287275", "pos": "JJ", "sense": "liberaal", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "vroed": { "form": "vroed", "cornetto_id": "r_a-16169", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "wijs", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "vroeg": { "form": "vroeg", "cornetto_id": "r_a-16170", "cornetto_synset_id": "n_a-533928", "wordnet_id": "a-00812952", "pos": "JJ", "sense": "niet laat", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "vroeger": { "form": "vroeger", "cornetto_id": "r_a-16171", "cornetto_synset_id": "n_a-522211", "wordnet_id": "a-01729566", "pos": "JJ", "sense": "vorig", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "vroegrijp": { "form": "vroegrijp", "cornetto_id": "r_a-16660", "cornetto_synset_id": "n_a-533934", "wordnet_id": "a-00203237", "pos": "JJ", "sense": "vroeg volwassen", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "vroegtijdig": { "form": "vroegtijdig", "cornetto_id": "r_a-16172", "cornetto_synset_id": "n_a-530795", "wordnet_id": "", "pos": "JJ", "sense": "vroeg", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.9" }, "vrolijk": { "form": "vrolijk", "cornetto_id": "r_a-16173", "cornetto_synset_id": "d_a-9195", "wordnet_id": "a-00363938", "pos": "JJ", "sense": "blij", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "vrouwelijk": { "form": "vrouwelijk", "cornetto_id": "r_a-16177", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "mbt. Woordgeslacht", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "vruchteloos": { "form": "vruchteloos", "cornetto_id": "r_a-16180", "cornetto_synset_id": "n_a-535779", "wordnet_id": "a-01082535", "pos": "JJ", "sense": "vergeefs", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.3", "confidence": "0.7" }, "vuil": { "form": "vuil", "cornetto_id": "r_a-16184", "cornetto_synset_id": "n_a-505096", "wordnet_id": "a-01582821", "pos": "JJ", "sense": "bruto", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "vuistdik": { "form": "vuistdik", "cornetto_id": "r_a-16327", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "zo dik als een vuist", "polarity": "-0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "vulgair": { "form": "vulgair", "cornetto_id": "r_a-16185", "cornetto_synset_id": "n_a-534008", "wordnet_id": "a-00425313", "pos": "JJ", "sense": "ordinair", "polarity": "-0.9", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "vurig": { "form": "vurig", "cornetto_id": "r_a-16366", "cornetto_synset_id": "n_a-534028", "wordnet_id": "", "pos": "JJ", "sense": "mbt. vuur", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "vuurgevaarlijk": { "form": "vuurgevaarlijk", "cornetto_id": "r_a-16330", "cornetto_synset_id": "n_a-534040", "wordnet_id": "", "pos": "JJ", "sense": "geneigd te schieten", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "waanwijs": { "form": "waanwijs", "cornetto_id": "r_a-15657", "cornetto_synset_id": "n_a-532829", "wordnet_id": "a-00156101", "pos": "JJ", "sense": "pedant", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "waanzinnig": { "form": "waanzinnig", "cornetto_id": "r_a-15658", "cornetto_synset_id": "n_a-516037", "wordnet_id": "a-02075321", "pos": "JJ", "sense": "krankzinnig", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.4", "confidence": "1.0" }, "waar": { "form": "waar", "cornetto_id": "c_545608", "cornetto_synset_id": "d_a-9251", "wordnet_id": "a-02180277", "pos": "JJ", "sense": "authentiek", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "waard": { "form": "waard", "cornetto_id": "r_a-15661", "cornetto_synset_id": "n_a-534079", "wordnet_id": "a-02502016", "pos": "JJ", "sense": "als waarde hebbend", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "waardeloos": { "form": "waardeloos", "cornetto_id": "r_a-15662", "cornetto_synset_id": "d_a-9605", "wordnet_id": "a-02502163", "pos": "JJ", "sense": "niets waard", "polarity": "-0.8", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "waardevol": { "form": "waardevol", "cornetto_id": "r_a-15663", "cornetto_synset_id": "d_a-9606", "wordnet_id": "a-00933154", "pos": "JJ", "sense": "veel waard", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "waardevrij": { "form": "waardevrij", "cornetto_id": "r_a-15805", "cornetto_synset_id": "n_a-534091", "wordnet_id": "", "pos": "JJ", "sense": "vrij van waardeoordelen", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "waardig": { "form": "waardig", "cornetto_id": "r_a-15665", "cornetto_synset_id": "n_a-534093", "wordnet_id": "a-02586206", "pos": "JJ", "sense": "passend", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "waargebeurd": { "form": "waargebeurd", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "", "sense": "", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "waarheidsgetrouw": { "form": "waarheidsgetrouw", "cornetto_id": "r_a-15806", "cornetto_synset_id": "n_a-534096", "wordnet_id": "a-02460502", "pos": "JJ", "sense": "werkelijkheidsgetrouw", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "waarneembaar": { "form": "waarneembaar", "cornetto_id": "r_a-15807", "cornetto_synset_id": "n_a-534100", "wordnet_id": "a-01287486", "pos": "JJ", "sense": "waar te nemen", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.2", "confidence": "0.7" }, "waarschijnlijk": { "form": "waarschijnlijk", "cornetto_id": "r_a-15666", "cornetto_synset_id": "d_a-9607", "wordnet_id": "", "pos": "JJ", "sense": "vermoedelijk waar", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "wakker": { "form": "wakker", "cornetto_id": "r_a-15882", "cornetto_synset_id": "n_a-534143", "wordnet_id": "a-00032733", "pos": "JJ", "sense": "uitgeslapen", "polarity": "0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "walgelijk": { "form": "walgelijk", "cornetto_id": "r_a-15668", "cornetto_synset_id": "n_a-534469", "wordnet_id": "a-00007990", "pos": "JJ", "sense": "weerzinwekkend", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "wanhopig": { "form": "wanhopig", "cornetto_id": "r_a-15670", "cornetto_synset_id": "n_a-534204", "wordnet_id": "a-00085870", "pos": "JJ", "sense": "vertwijfeld", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "wankel": { "form": "wankel", "cornetto_id": "r_a-15671", "cornetto_synset_id": "n_a-534205", "wordnet_id": "a-00875962", "pos": "JJ", "sense": "labiel", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "wantrouwend": { "form": "wantrouwend", "cornetto_id": "r_a-15809", "cornetto_synset_id": "n_a-534218", "wordnet_id": "a-00325619", "pos": "JJ", "sense": "argwanend", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "wantrouwig": { "form": "wantrouwig", "cornetto_id": "r_a-15674", "cornetto_synset_id": "n_a-534218", "wordnet_id": "a-00325619", "pos": "JJ", "sense": "achterdochtig", "polarity": "-0.3", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "warm": { "form": "warm", "cornetto_id": "r_a-15676", "cornetto_synset_id": "d_a-9326", "wordnet_id": "a-01075178", "pos": "JJ", "sense": "hartelijk", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "warmbloedig": { "form": "warmbloedig", "cornetto_id": "r_a-15677", "cornetto_synset_id": "n_a-534243", "wordnet_id": "a-02532508", "pos": "JJ", "sense": "temperamentvol", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "warrig": { "form": "warrig", "cornetto_id": "r_a-15678", "cornetto_synset_id": "n_a-534209", "wordnet_id": "a-01204443", "pos": "JJ", "sense": "verward", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "waterdicht": { "form": "waterdicht", "cornetto_id": "r_a-15680", "cornetto_synset_id": "n_a-534310", "wordnet_id": "a-01398941", "pos": "JJ", "sense": "waterproof", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "waterig": { "form": "waterig", "cornetto_id": "r_a-15681", "cornetto_synset_id": "d_a-9610", "wordnet_id": "a-00252826", "pos": "JJ", "sense": "waterachtig", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "waterrijk": { "form": "waterrijk", "cornetto_id": "r_a-15811", "cornetto_synset_id": "n_a-534352", "wordnet_id": "a-00756459", "pos": "JJ", "sense": "rijk aan water", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "wauw": { "form": "wauw", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "UH", "sense": "", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "wazig": { "form": "wazig", "cornetto_id": "r_a-15683", "cornetto_synset_id": "d_a-9560", "wordnet_id": "a-00782957", "pos": "JJ", "sense": "vaag", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "wederzijds": { "form": "wederzijds", "cornetto_id": "r_a-15687", "cornetto_synset_id": "n_a-534406", "wordnet_id": "", "pos": "JJ", "sense": "wederkerig", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "wee": { "form": "wee", "cornetto_id": "r_a-15688", "cornetto_synset_id": "n_a-534414", "wordnet_id": "a-02325097", "pos": "JJ", "sense": "misselijk (makend)", "polarity": "0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "weelderig": { "form": "weelderig", "cornetto_id": "d_a-332344", "cornetto_synset_id": "d_a-9393", "wordnet_id": "a-00850053", "pos": "JJ", "sense": "", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "weemoedig": { "form": "weemoedig", "cornetto_id": "r_a-15692", "cornetto_synset_id": "n_a-534446", "wordnet_id": "a-01126841", "pos": "JJ", "sense": "licht melancholiek", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "weerbarstig": { "form": "weerbarstig", "cornetto_id": "r_a-15695", "cornetto_synset_id": "n_a-520774", "wordnet_id": "a-01990653", "pos": "JJ", "sense": "stug", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "weergaloos": { "form": "weergaloos", "cornetto_id": "r_a-15696", "cornetto_synset_id": "n_a-534455", "wordnet_id": "a-00229371", "pos": "JJ", "sense": "ongeëvenaard", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.4", "confidence": "1.0" }, "weerlegbaar": { "form": "weerlegbaar", "cornetto_id": "r_a-15856", "cornetto_synset_id": "n_a-531602", "wordnet_id": "a-00590390", "pos": "JJ", "sense": "te weerleggen", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "weerloos": { "form": "weerloos", "cornetto_id": "r_a-15697", "cornetto_synset_id": "n_a-534459", "wordnet_id": "a-00143376", "pos": "JJ", "sense": "machteloos", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "weerzinwekkend": { "form": "weerzinwekkend", "cornetto_id": "r_a-15699", "cornetto_synset_id": "n_a-534469", "wordnet_id": "a-00007990", "pos": "JJ", "sense": "walgelijk", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "weetgierig": { "form": "weetgierig", "cornetto_id": "r_a-15700", "cornetto_synset_id": "n_a-516904", "wordnet_id": "a-00878829", "pos": "JJ", "sense": "leergierig", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "weigerachtig": { "form": "weigerachtig", "cornetto_id": "r_a-15858", "cornetto_synset_id": "n_a-534464", "wordnet_id": "a-00021592", "pos": "JJ", "sense": "onwillig", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "wekenlang": { "form": "wekenlang", "cornetto_id": "r_a-15815", "cornetto_synset_id": "n_a-534535", "wordnet_id": "", "pos": "JJ", "sense": "weken durend", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "welbekend": { "form": "welbekend", "cornetto_id": "r_a-15817", "cornetto_synset_id": "n_a-503455", "wordnet_id": "a-01375831", "pos": "JJ", "sense": "goed bekend", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "welbewust": { "form": "welbewust", "cornetto_id": "r_a-15818", "cornetto_synset_id": "n_a-503989", "wordnet_id": "a-00067966", "pos": "JJ", "sense": "heel bewust", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.9" }, "weldenkend": { "form": "weldenkend", "cornetto_id": "r_a-15819", "cornetto_synset_id": "n_a-532723", "wordnet_id": "a-00032733", "pos": "JJ", "sense": "redelijk", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "weldoordacht": { "form": "weldoordacht", "cornetto_id": "r_a-15860", "cornetto_synset_id": "n_a-507294", "wordnet_id": "a-00067966", "pos": "JJ", "sense": "goed overdacht", "polarity": "0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "weledelzeergeleerd": { "form": "weledelzeergeleerd", "cornetto_id": "r_a-15710", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "---", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "welgemeend": { "form": "welgemeend", "cornetto_id": "r_a-15820", "cornetto_synset_id": "n_a-522023", "wordnet_id": "", "pos": "JJ", "sense": "oprecht gemeend", "polarity": "0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "welgeschapen": { "form": "welgeschapen", "cornetto_id": "r_a-15713", "cornetto_synset_id": "n_a-534565", "wordnet_id": "a-01146012", "pos": "JJ", "sense": "gezond van lijf en leden", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "welgesteld": { "form": "welgesteld", "cornetto_id": "r_a-15714", "cornetto_synset_id": "d_a-9505", "wordnet_id": "a-01049352", "pos": "JJ", "sense": "bemiddeld", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "welkom": { "form": "welkom", "cornetto_id": "r_a-15716", "cornetto_synset_id": "n_a-534571", "wordnet_id": "a-02539968", "pos": "JJ", "sense": "blij ontvangen", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "welletjes": { "form": "welletjes", "cornetto_id": "r_a-15863", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "genoeg", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "wellevend": { "form": "wellevend", "cornetto_id": "r_a-15717", "cornetto_synset_id": "n_a-503527", "wordnet_id": "a-00641343", "pos": "JJ", "sense": "beschaafd", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "weloverwogen": { "form": "weloverwogen", "cornetto_id": "r_a-15824", "cornetto_synset_id": "n_a-507294", "wordnet_id": "a-00067966", "pos": "JJ", "sense": "weldoordacht", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.9" }, "welriekend": { "form": "welriekend", "cornetto_id": "r_a-15825", "cornetto_synset_id": "n_a-510721", "wordnet_id": "a-01586342", "pos": "JJ", "sense": "lekker ruikend", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "welsprekend": { "form": "welsprekend", "cornetto_id": "r_a-17362", "cornetto_synset_id": "n_a-534588", "wordnet_id": "a-00150505", "pos": "JJ", "sense": "welbespraakt", "polarity": "0.1", "subjectivity": "0.7", "intensity": "1.3", "confidence": "0.7" }, "welvarend": { "form": "welvarend", "cornetto_id": "r_a-15719", "cornetto_synset_id": "n_a-534597", "wordnet_id": "a-02022167", "pos": "JJ", "sense": "bloeiend", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "welvoeglijk": { "form": "welvoeglijk", "cornetto_id": "r_a-15720", "cornetto_synset_id": "n_a-510405", "wordnet_id": "a-01878870", "pos": "JJ", "sense": "fatsoenlijk", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "wenselijk": { "form": "wenselijk", "cornetto_id": "r_a-15722", "cornetto_synset_id": "n_a-524889", "wordnet_id": "a-00067038", "pos": "JJ", "sense": "gewenst", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "wereldberoemd": { "form": "wereldberoemd", "cornetto_id": "r_a-15827", "cornetto_synset_id": "n_a-534616", "wordnet_id": "", "pos": "JJ", "sense": "wereldvermaard", "polarity": "0.5", "subjectivity": "0.7", "intensity": "1.1", "confidence": "1.0" }, "wereldomvattend": { "form": "wereldomvattend", "cornetto_id": "r_a-15828", "cornetto_synset_id": "n_a-534652", "wordnet_id": "a-00527188", "pos": "JJ", "sense": "wereldwijd", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.1", "confidence": "0.7" }, "werelds": { "form": "werelds", "cornetto_id": "r_a-15725", "cornetto_synset_id": "n_a-501400", "wordnet_id": "a-00124918", "pos": "JJ", "sense": "aards", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "wereldschokkend": { "form": "wereldschokkend", "cornetto_id": "r_a-15866", "cornetto_synset_id": "n_a-534644", "wordnet_id": "a-02162458", "pos": "JJ", "sense": "wereldwijd beroering veroorzakend", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.3", "confidence": "0.7" }, "wereldvermaard": { "form": "wereldvermaard", "cornetto_id": "r_a-15829", "cornetto_synset_id": "n_a-534616", "wordnet_id": "", "pos": "JJ", "sense": "wereldberoemd", "polarity": "0.5", "subjectivity": "0.7", "intensity": "1.1", "confidence": "1.0" }, "wereldwijd": { "form": "wereldwijd", "cornetto_id": "r_a-15830", "cornetto_synset_id": "n_a-534652", "wordnet_id": "a-00527188", "pos": "JJ", "sense": "mondiaal", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.1", "confidence": "1.0" }, "werkbaar": { "form": "werkbaar", "cornetto_id": "r_a-15831", "cornetto_synset_id": "d_a-9205", "wordnet_id": "a-01822563", "pos": "JJ", "sense": "bruikbaar", "polarity": "0.1", "subjectivity": "0.7", "intensity": "1.7", "confidence": "0.7" }, "werkelijk": { "form": "werkelijk", "cornetto_id": "r_a-15727", "cornetto_synset_id": "d_a-9613", "wordnet_id": "a-01932973", "pos": "JJ", "sense": "echt", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.7", "confidence": "1.0" }, "werkloos": { "form": "werkloos", "cornetto_id": "r_a-15729", "cornetto_synset_id": "n_a-534691", "wordnet_id": "a-00864693", "pos": "JJ", "sense": "", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "werkzaam": { "form": "werkzaam", "cornetto_id": "r_a-15733", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "werkend", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "wervelend": { "form": "wervelend", "cornetto_id": "r_a-15834", "cornetto_synset_id": "n_a-534732", "wordnet_id": "a-00921369", "pos": "JJ", "sense": "bruisend", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.2", "confidence": "0.7" }, "westers": { "form": "westers", "cornetto_id": "r_a-15735", "cornetto_synset_id": "d_a-9615", "wordnet_id": "a-00825089", "pos": "JJ", "sense": "(als) v.d. eerste wereld", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.7" }, "wetenschappelijk": { "form": "wetenschappelijk", "cornetto_id": "r_a-15736", "cornetto_synset_id": "n_a-531845", "wordnet_id": "a-02599939", "pos": "JJ", "sense": "mbt. wetenschap", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "wezenlijk": { "form": "wezenlijk", "cornetto_id": "r_a-15739", "cornetto_synset_id": "n_a-509441", "wordnet_id": "a-00095094", "pos": "JJ", "sense": "essentieel", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.1", "confidence": "1.0" }, "wezenloos": { "form": "wezenloos", "cornetto_id": "r_a-15740", "cornetto_synset_id": "n_a-532351", "wordnet_id": "a-00165171", "pos": "JJ", "sense": "suf", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "wijd": { "form": "wijd", "cornetto_id": "r_a-15741", "cornetto_synset_id": "c_291", "wordnet_id": "a-02560548", "pos": "JJ", "sense": "breed", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "wijlen": { "form": "wijlen", "cornetto_id": "r_a-15744", "cornetto_synset_id": "d_a-9236", "wordnet_id": "a-00095280", "pos": "JJ", "sense": "overleden", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "wijs": { "form": "wijs", "cornetto_id": "r_a-15746", "cornetto_synset_id": "n_a-510820", "wordnet_id": "a-01576071", "pos": "JJ", "sense": "gaaf", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "wijsgerig": { "form": "wijsgerig", "cornetto_id": "r_a-15747", "cornetto_synset_id": "n_a-534873", "wordnet_id": "a-02858231", "pos": "JJ", "sense": "filosofisch", "polarity": "0.2", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "wild": { "form": "wild", "cornetto_id": "r_a-15752", "cornetto_synset_id": "n_a-509996", "wordnet_id": "a-01464433", "pos": "JJ", "sense": "gek (op)", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "willekeurig": { "form": "willekeurig", "cornetto_id": "r_a-15753", "cornetto_synset_id": "n_a-534901", "wordnet_id": "a-00718924", "pos": "JJ", "sense": "toevallig", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "willoos": { "form": "willoos", "cornetto_id": "r_a-15756", "cornetto_synset_id": "n_a-527772", "wordnet_id": "a-00040058", "pos": "JJ", "sense": "zonder wil", "polarity": "-0.6", "subjectivity": "0.6", "intensity": "1.3", "confidence": "0.7" }, "wilskrachtig": { "form": "wilskrachtig", "cornetto_id": "r_a-15870", "cornetto_synset_id": "n_a-534907", "wordnet_id": "a-01736122", "pos": "JJ", "sense": "met een krachtige wil", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "winderig": { "form": "winderig", "cornetto_id": "r_a-15842", "cornetto_synset_id": "n_a-534914", "wordnet_id": "a-00305225", "pos": "JJ", "sense": "waaierig", "polarity": "-0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "windstil": { "form": "windstil", "cornetto_id": "r_a-15757", "cornetto_synset_id": "n_a-534928", "wordnet_id": "a-00303579", "pos": "JJ", "sense": "zonder wind", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "winnaar": { "form": "winnaar", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "winstgevend": { "form": "winstgevend", "cornetto_id": "r_a-15843", "cornetto_synset_id": "d_a-9502", "wordnet_id": "a-02332604", "pos": "JJ", "sense": "lucratief", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "wis": { "form": "wis", "cornetto_id": "r_a-15760", "cornetto_synset_id": "d_a-9623", "wordnet_id": "a-01918660", "pos": "JJ", "sense": "gewis", "polarity": "0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "wiskundig": { "form": "wiskundig", "cornetto_id": "r_a-15761", "cornetto_synset_id": "n_a-535010", "wordnet_id": "a-00915141", "pos": "JJ", "sense": "mathematisch", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "1.0" }, "wispelturig": { "form": "wispelturig", "cornetto_id": "r_a-15762", "cornetto_synset_id": "n_a-511490", "wordnet_id": "a-00301777", "pos": "JJ", "sense": "grillig", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "wisselvallig": { "form": "wisselvallig", "cornetto_id": "r_a-15763", "cornetto_synset_id": "n_a-535033", "wordnet_id": "a-00583990", "pos": "JJ", "sense": "veranderlijk", "polarity": "-0.1", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "wit": { "form": "wit", "cornetto_id": "r_a-15766", "cornetto_synset_id": "n_a-535042", "wordnet_id": "a-02499148", "pos": "JJ", "sense": "legaal", "polarity": "0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "1.0" }, "woedend": { "form": "woedend", "cornetto_id": "r_a-15768", "cornetto_synset_id": "d_a-9618", "wordnet_id": "a-00114454", "pos": "JJ", "sense": "razend", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "woelig": { "form": "woelig", "cornetto_id": "r_a-15769", "cornetto_synset_id": "n_a-526012", "wordnet_id": "a-00031974", "pos": "JJ", "sense": "onrustig", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.9" }, "wolkeloos": { "form": "wolkeloos", "cornetto_id": "r_a-15889", "cornetto_synset_id": "n_a-535088", "wordnet_id": "a-00460946", "pos": "JJ", "sense": "", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "wolkenloos": { "form": "wolkenloos", "cornetto_id": "r_a-15873", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "onbewolkt", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "wollig": { "form": "wollig", "cornetto_id": "r_a-15890", "cornetto_synset_id": "n_a-503224", "wordnet_id": "a-00461971", "pos": "JJ", "sense": "verhullend", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "wonder": { "form": "wonder", "cornetto_id": "r_a-15773", "cornetto_synset_id": "n_a-535103", "wordnet_id": "a-00645493", "pos": "JJ", "sense": "vreemd", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "wonderbaar": { "form": "wonderbaar", "cornetto_id": "d_a-337995", "cornetto_synset_id": "n_a-535103", "wordnet_id": "a-00645493", "pos": "JJ", "sense": "", "polarity": "0.9", "subjectivity": "0.9", "intensity": "1.4", "confidence": "0.7" }, "wonderbaarlijk": { "form": "wonderbaarlijk", "cornetto_id": "r_a-15774", "cornetto_synset_id": "n_a-535103", "wordnet_id": "a-00645493", "pos": "JJ", "sense": "verbazend", "polarity": "0.9", "subjectivity": "0.9", "intensity": "1.4", "confidence": "1.0" }, "wonderlijk": { "form": "wonderlijk", "cornetto_id": "r_a-15775", "cornetto_synset_id": "n_a-535103", "wordnet_id": "a-00645493", "pos": "JJ", "sense": "merkwaardig", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "wonderschoon": { "form": "wonderschoon", "cornetto_id": "r_a-15847", "cornetto_synset_id": "n_a-524142", "wordnet_id": "a-00217728", "pos": "JJ", "sense": "prachtig mooi", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.3", "confidence": "0.9" }, "woonachtig": { "form": "woonachtig", "cornetto_id": "r_a-15776", "cornetto_synset_id": "n_a-535124", "wordnet_id": "a-00806243", "pos": "JJ", "sense": "wonend", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "woordblind": { "form": "woordblind", "cornetto_id": "r_a-15777", "cornetto_synset_id": "n_a-535137", "wordnet_id": "a-01275195", "pos": "JJ", "sense": "dyslectisch", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "wormstekig": { "form": "wormstekig", "cornetto_id": "r_a-15779", "cornetto_synset_id": "n_a-535158", "wordnet_id": "a-01069823", "pos": "JJ", "sense": "door wormen aangevreten", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.1", "confidence": "0.7" }, "would-be": { "form": "would-be", "cornetto_id": "r_a-15780", "cornetto_synset_id": "n_a-535848", "wordnet_id": "", "pos": "JJ", "sense": "zogenaamd", "polarity": "-0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "wraakzuchtig": { "form": "wraakzuchtig", "cornetto_id": "r_a-15848", "cornetto_synset_id": "n_a-535178", "wordnet_id": "a-00923790", "pos": "JJ", "sense": "rancuneus", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "wrang": { "form": "wrang", "cornetto_id": "r_a-15782", "cornetto_synset_id": "n_a-535182", "wordnet_id": "a-00298767", "pos": "JJ", "sense": "zuur", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "wreed": { "form": "wreed", "cornetto_id": "r_a-15783", "cornetto_synset_id": "d_a-9619", "wordnet_id": "a-00412788", "pos": "JJ", "sense": "hardvochtig", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.3", "confidence": "1.0" }, "wreedaardig": { "form": "wreedaardig", "cornetto_id": "r_a-15874", "cornetto_synset_id": "d_a-9619", "wordnet_id": "a-00412788", "pos": "JJ", "sense": "wreed", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.3", "confidence": "0.7" }, "wulps": { "form": "wulps", "cornetto_id": "r_a-15787", "cornetto_synset_id": "n_a-534577", "wordnet_id": "a-00033077", "pos": "JJ", "sense": "wellustig", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "zacht": { "form": "zacht", "cornetto_id": "r_a-16381", "cornetto_synset_id": "n_a-535265", "wordnet_id": "a-01509066", "pos": "JJ", "sense": "(mbt. aard) vriendelijk", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "zachtaardig": { "form": "zachtaardig", "cornetto_id": "r_a-16382", "cornetto_synset_id": "n_a-535265", "wordnet_id": "a-01509066", "pos": "JJ", "sense": "vriendelijk", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "zakelijk": { "form": "zakelijk", "cornetto_id": "r_a-16386", "cornetto_synset_id": "n_a-520216", "wordnet_id": "a-01943406", "pos": "JJ", "sense": "nuchter en praktisch", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "zalig": { "form": "zalig", "cornetto_id": "r_a-16388", "cornetto_synset_id": "c_570", "wordnet_id": "", "pos": "JJ", "sense": "(mbt. geloof) gered/heilig", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.1", "confidence": "1.0" }, "zanderig": { "form": "zanderig", "cornetto_id": "r_a-16487", "cornetto_synset_id": "n_a-535317", "wordnet_id": "a-00142040", "pos": "JJ", "sense": "zandachtig", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "zat": { "form": "zat", "cornetto_id": "r_a-16392", "cornetto_synset_id": "d_a-9244", "wordnet_id": "", "pos": "JJ", "sense": "dronken", "polarity": "-0.2", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "zedelijk": { "form": "zedelijk", "cornetto_id": "r_a-16393", "cornetto_synset_id": "n_a-535368", "wordnet_id": "a-00905386", "pos": "JJ", "sense": "fatsoenlijk", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.9" }, "zedenkundig": { "form": "zedenkundig", "cornetto_id": "d_a-342716", "cornetto_synset_id": "n_a-535368", "wordnet_id": "a-00905386", "pos": "JJ", "sense": "", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "zeer": { "form": "zeer", "cornetto_id": "r_a-16396", "cornetto_synset_id": "n_a-523334", "wordnet_id": "a-01711071", "pos": "JJ", "sense": "pijnlijk", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "zeeziek": { "form": "zeeziek", "cornetto_id": "r_a-16398", "cornetto_synset_id": "n_a-535448", "wordnet_id": "a-02542675", "pos": "JJ", "sense": "misselijk door schommelen", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "zeker": { "form": "zeker", "cornetto_id": "r_a-16399", "cornetto_synset_id": "d_a-9623", "wordnet_id": "a-01918660", "pos": "JJ", "sense": "gewis", "polarity": "0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "zeldzaam": { "form": "zeldzaam", "cornetto_id": "r_a-16400", "cornetto_synset_id": "d_a-9624", "wordnet_id": "a-00017024", "pos": "JJ", "sense": "wat niet veel voorkomt", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.1", "confidence": "1.0" }, "zelfbewust": { "form": "zelfbewust", "cornetto_id": "r_a-16401", "cornetto_synset_id": "n_a-535536", "wordnet_id": "a-00339742", "pos": "JJ", "sense": "je eigenwaarde beseffend", "polarity": "0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "zelfgebakken": { "form": "zelfgebakken", "cornetto_id": "r_a-16492", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "wat je zelf gebakken hebt", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "zelfgekozen": { "form": "zelfgekozen", "cornetto_id": "r_a-16493", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "waarvoor je zelf gekozen hebt", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "zelfgemaakt": { "form": "zelfgemaakt", "cornetto_id": "r_a-16494", "cornetto_synset_id": "n_a-535500", "wordnet_id": "", "pos": "JJ", "sense": "wat je zelf gemaakt hebt", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "zelfstandig": { "form": "zelfstandig", "cornetto_id": "r_a-16403", "cornetto_synset_id": "n_a-535528", "wordnet_id": "a-00728225", "pos": "JJ", "sense": "onafhankelijk", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "1.0" }, "zelfverzekerd": { "form": "zelfverzekerd", "cornetto_id": "r_a-16404", "cornetto_synset_id": "n_a-535536", "wordnet_id": "a-00339742", "pos": "JJ", "sense": "vol zelfvertrouwen", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "zelfvoldaan": { "form": "zelfvoldaan", "cornetto_id": "r_a-16540", "cornetto_synset_id": "n_a-532829", "wordnet_id": "a-00156101", "pos": "JJ", "sense": "zelfingenomen", "polarity": "-0.2", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "zenuwachtig": { "form": "zenuwachtig", "cornetto_id": "r_a-16406", "cornetto_synset_id": "n_a-535556", "wordnet_id": "a-02406370", "pos": "JJ", "sense": "nerveus", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "zenuwslopend": { "form": "zenuwslopend", "cornetto_id": "r_a-16407", "cornetto_synset_id": "n_a-535561", "wordnet_id": "a-00090408", "pos": "JJ", "sense": "slecht voor de zenuwen", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "zenuwziek": { "form": "zenuwziek", "cornetto_id": "r_a-16408", "cornetto_synset_id": "n_a-509878", "wordnet_id": "a-01177899", "pos": "JJ", "sense": "heel zenuwachtig", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" }, "zeurderig": { "form": "zeurderig", "cornetto_id": "r_a-16497", "cornetto_synset_id": "n_a-535615", "wordnet_id": "", "pos": "JJ", "sense": "erg vervelend", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "zever": { "form": "zever", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "zeveren": { "form": "zeveren", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "zichtbaar": { "form": "zichtbaar", "cornetto_id": "r_a-16409", "cornetto_synset_id": "d_a-9626", "wordnet_id": "a-01618376", "pos": "JJ", "sense": "waarneembaar", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "1.0" }, "ziek": { "form": "ziek", "cornetto_id": "r_a-17353", "cornetto_synset_id": "d_a-9342", "wordnet_id": "", "pos": "JJ", "sense": "amoreel", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "ziekelijk": { "form": "ziekelijk", "cornetto_id": "r_a-17354", "cornetto_synset_id": "n_a-535644", "wordnet_id": "a-01176246", "pos": "JJ", "sense": "ongezond van geest", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.3", "confidence": "1.0" }, "zielig": { "form": "zielig", "cornetto_id": "r_a-16413", "cornetto_synset_id": "n_a-535670", "wordnet_id": "a-01050890", "pos": "JJ", "sense": "medelijden opwekkend", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.1", "confidence": "1.0" }, "zielloos": { "form": "zielloos", "cornetto_id": "r_a-16499", "cornetto_synset_id": "d_a-9236", "wordnet_id": "a-00095280", "pos": "JJ", "sense": "zonder ziel", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "zijden": { "form": "zijden", "cornetto_id": "r_a-16500", "cornetto_synset_id": "n_a-535700", "wordnet_id": "a-00282675", "pos": "JJ", "sense": "(als) van zijde", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "zilt": { "form": "zilt", "cornetto_id": "r_a-16418", "cornetto_synset_id": "d_a-9631", "wordnet_id": "a-01073311", "pos": "JJ", "sense": "(mbt. zeewater) zout", "polarity": "0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "zilveren": { "form": "zilveren", "cornetto_id": "r_a-16417", "cornetto_synset_id": "n_a-535741", "wordnet_id": "a-00301032", "pos": "JJ", "sense": "van zilver", "polarity": "0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.7" }, "zinloos": { "form": "zinloos", "cornetto_id": "r_a-16421", "cornetto_synset_id": "n_a-535779", "wordnet_id": "a-01082535", "pos": "JJ", "sense": "nutteloos", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "0.9", "confidence": "1.0" }, "zinnelijk": { "form": "zinnelijk", "cornetto_id": "r_a-16550", "cornetto_synset_id": "n_a-535782", "wordnet_id": "a-00070427", "pos": "JJ", "sense": "mbt. de zinnen", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.2", "confidence": "0.7" }, "zinnig": { "form": "zinnig", "cornetto_id": "r_a-16422", "cornetto_synset_id": "c_667", "wordnet_id": "a-00032733", "pos": "JJ", "sense": "verstandig", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "zinvol": { "form": "zinvol", "cornetto_id": "r_a-16424", "cornetto_synset_id": "n_a-535798", "wordnet_id": "a-00067038", "pos": "JJ", "sense": "nuttig", "polarity": "0.6", "subjectivity": "0.9", "intensity": "0.9", "confidence": "0.7" }, "zionistisch": { "form": "zionistisch", "cornetto_id": "r_a-16502", "cornetto_synset_id": "n_a-535799", "wordnet_id": "", "pos": "JJ", "sense": "mbt. het zionisme", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "zoel": { "form": "zoel", "cornetto_id": "r_a-16552", "cornetto_synset_id": "n_a-535263", "wordnet_id": "a-00438332", "pos": "JJ", "sense": "aangenaam warm", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.7" }, "zoet": { "form": "zoet", "cornetto_id": "r_a-16427", "cornetto_synset_id": "n_a-510893", "wordnet_id": "a-01612053", "pos": "JJ", "sense": "braaf", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "zoetgevooisd": { "form": "zoetgevooisd", "cornetto_id": "r_a-16554", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "met een lieflijke stem", "polarity": "-0.2", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "zoetsappig": { "form": "zoetsappig", "cornetto_id": "r_a-16428", "cornetto_synset_id": "n_a-535834", "wordnet_id": "a-01130614", "pos": "JJ", "sense": "te zacht en vriendelijk", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "zoetzuur": { "form": "zoetzuur", "cornetto_id": "r_a-16431", "cornetto_synset_id": "n_a-535845", "wordnet_id": "a-01073094", "pos": "JJ", "sense": "in azijn en suiker", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "zogeheten": { "form": "zogeheten", "cornetto_id": "r_a-16504", "cornetto_synset_id": "n_a-535847", "wordnet_id": "a-01916555", "pos": "JJ", "sense": "die naam dragend", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "0.9", "confidence": "0.9" }, "zogenaamd": { "form": "zogenaamd", "cornetto_id": "r_a-16433", "cornetto_synset_id": "n_a-535848", "wordnet_id": "", "pos": "JJ", "sense": "quasi", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "0.8", "confidence": "1.0" }, "zogenoemd": { "form": "zogenoemd", "cornetto_id": "r_a-16505", "cornetto_synset_id": "n_a-535848", "wordnet_id": "", "pos": "JJ", "sense": "zogenaamd", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "0.9", "confidence": "0.9" }, "zomers": { "form": "zomers", "cornetto_id": "r_a-16434", "cornetto_synset_id": "n_a-535874", "wordnet_id": "a-01254784", "pos": "JJ", "sense": "horend bij de zomer", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "zonaal": { "form": "zonaal", "cornetto_id": "r_a-16435", "cornetto_synset_id": "n_a-535882", "wordnet_id": "a-02589913", "pos": "JJ", "sense": "mbt. een zone", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.7" }, "zondags": { "form": "zondags", "cornetto_id": "r_a-16436", "cornetto_synset_id": "n_a-535890", "wordnet_id": "a-00228485", "pos": "JJ", "sense": "op zondag", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "zonderling": { "form": "zonderling", "cornetto_id": "r_a-16507", "cornetto_synset_id": "n_a-535905", "wordnet_id": "a-00221627", "pos": "JJ", "sense": "vreemd", "polarity": "-0.1", "subjectivity": "1.0", "intensity": "1.1", "confidence": "0.7" }, "zondig": { "form": "zondig", "cornetto_id": "r_a-16438", "cornetto_synset_id": "n_a-535907", "wordnet_id": "a-00361509", "pos": "JJ", "sense": "mbt. zonden", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.7" }, "zonneklaar": { "form": "zonneklaar", "cornetto_id": "r_a-16439", "cornetto_synset_id": "n_a-522312", "wordnet_id": "a-01287808", "pos": "JJ", "sense": "overduidelijk", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.4", "confidence": "0.7" }, "zonneslag": { "form": "zonneslag", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.2", "subjectivity": "-0.1", "intensity": "1.0", "confidence": "0.8" }, "zonnig": { "form": "zonnig", "cornetto_id": "r_a-16440", "cornetto_synset_id": "n_a-535928", "wordnet_id": "a-01812237", "pos": "JJ", "sense": "met veel zon", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "zorgelijk": { "form": "zorgelijk", "cornetto_id": "r_a-16441", "cornetto_synset_id": "n_a-535949", "wordnet_id": "a-00193015", "pos": "JJ", "sense": "zorgwekkend", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "zorgeloos": { "form": "zorgeloos", "cornetto_id": "r_a-16444", "cornetto_synset_id": "n_a-535941", "wordnet_id": "a-00032733", "pos": "JJ", "sense": "zonder zorgen", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "zorgvuldig": { "form": "zorgvuldig", "cornetto_id": "r_a-16445", "cornetto_synset_id": "n_a-535946", "wordnet_id": "a-00021766", "pos": "JJ", "sense": "met veel aandacht", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "1.0" }, "zorgwekkend": { "form": "zorgwekkend", "cornetto_id": "r_a-16446", "cornetto_synset_id": "n_a-535949", "wordnet_id": "a-00193015", "pos": "JJ", "sense": "zorgelijk", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "zorgzaam": { "form": "zorgzaam", "cornetto_id": "r_a-16447", "cornetto_synset_id": "n_a-535950", "wordnet_id": "a-00164681", "pos": "JJ", "sense": "vol zorg", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "zout": { "form": "zout", "cornetto_id": "r_a-16448", "cornetto_synset_id": "d_a-9631", "wordnet_id": "a-01073311", "pos": "JJ", "sense": "met zout erin of erop", "polarity": "0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.7" }, "zouteloos": { "form": "zouteloos", "cornetto_id": "r_a-16450", "cornetto_synset_id": "n_a-509107", "wordnet_id": "a-01268937", "pos": "JJ", "sense": "flauw", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "zoutloos": { "form": "zoutloos", "cornetto_id": "r_a-16451", "cornetto_synset_id": "n_a-521211", "wordnet_id": "a-02400125", "pos": "JJ", "sense": "zonder zout", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "zootje": { "form": "zootje", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "zoölogisch": { "form": "zoölogisch", "cornetto_id": "r_a-16555", "cornetto_synset_id": "n_a-535821", "wordnet_id": "a-02891444", "pos": "JJ", "sense": "dierkundig", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.7" }, "zuiver": { "form": "zuiver", "cornetto_id": "r_a-16525", "cornetto_synset_id": "n_a-506738", "wordnet_id": "a-00247013", "pos": "JJ", "sense": "zedelijk rein", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "1.0" }, "zurig": { "form": "zurig", "cornetto_id": "r_a-16557", "cornetto_synset_id": "n_a-525923", "wordnet_id": "a-02369179", "pos": "JJ", "sense": "wrang", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "zusterlijk": { "form": "zusterlijk", "cornetto_id": "r_a-16558", "cornetto_synset_id": "n_a-536034", "wordnet_id": "a-00291665", "pos": "JJ", "sense": "als (van) een zuster", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.1", "confidence": "0.7" }, "zuur": { "form": "zuur", "cornetto_id": "r_a-16456", "cornetto_synset_id": "d_n-38215", "wordnet_id": "", "pos": "JJ", "sense": "niet zoet", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "zuurstofarm": { "form": "zuurstofarm", "cornetto_id": "r_a-16513", "cornetto_synset_id": "n_a-536045", "wordnet_id": "", "pos": "JJ", "sense": "met weinig zuurstof", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.1", "confidence": "0.7" }, "zuurverdiend": { "form": "zuurverdiend", "cornetto_id": "r_a-16458", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "met hard werken verdiend", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.3", "confidence": "0.7" }, "zwaar": { "form": "zwaar", "cornetto_id": "r_a-16467", "cornetto_synset_id": "n_a-536057", "wordnet_id": "a-01215935", "pos": "JJ", "sense": "laag en diep", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "zwaargebouwd": { "form": "zwaargebouwd", "cornetto_id": "r_a-16561", "cornetto_synset_id": "d_a-9272", "wordnet_id": "a-02038126", "pos": "JJ", "sense": "sterk, zwaar uitgevoerd", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.3", "confidence": "0.7" }, "zwaargewond": { "form": "zwaargewond", "cornetto_id": "r_a-16516", "cornetto_synset_id": "d_a-9637", "wordnet_id": "", "pos": "JJ", "sense": "serieus gewond", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "zwaarmoedig": { "form": "zwaarmoedig", "cornetto_id": "r_a-16468", "cornetto_synset_id": "n_a-536067", "wordnet_id": "a-00274068", "pos": "JJ", "sense": "somber", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "zwaarwichtig": { "form": "zwaarwichtig", "cornetto_id": "r_a-16469", "cornetto_synset_id": "n_a-536072", "wordnet_id": "a-00792641", "pos": "JJ", "sense": "van groot gewicht", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "zwak": { "form": "zwak", "cornetto_id": "c_545823", "cornetto_synset_id": "n_a-527852", "wordnet_id": "a-01827766", "pos": "JJ", "sense": "van karakter", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "1.0" }, "zwakbegaafd": { "form": "zwakbegaafd", "cornetto_id": "r_a-16563", "cornetto_synset_id": "n_a-536080", "wordnet_id": "a-01597702", "pos": "JJ", "sense": "weinig intelligent", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "zwanger": { "form": "zwanger", "cornetto_id": "r_a-16474", "cornetto_synset_id": "", "wordnet_id": "", "pos": "JJ", "sense": "vervuld zijn van", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "1.0" }, "zwart": { "form": "zwart", "cornetto_id": "r_a-16478", "cornetto_synset_id": "c_387", "wordnet_id": "a-00241952", "pos": "JJ", "sense": "met een donkere huidskleur", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "1.0" }, "zwart-wit": { "form": "zwart-wit", "cornetto_id": "r_a-16518", "cornetto_synset_id": "n_a-521119", "wordnet_id": "a-00394331", "pos": "JJ", "sense": "ongenuanceerd", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.7" }, "zwartgallig": { "form": "zwartgallig", "cornetto_id": "r_a-16479", "cornetto_synset_id": "n_a-536067", "wordnet_id": "a-00274068", "pos": "JJ", "sense": "zwaarmoedig", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.7" }, "zweterig": { "form": "zweterig", "cornetto_id": "r_a-16565", "cornetto_synset_id": "n_a-504037", "wordnet_id": "", "pos": "JJ", "sense": "vochtig van zweet", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.7" }, "zweverig": { "form": "zweverig", "cornetto_id": "r_a-16481", "cornetto_synset_id": "n_a-531905", "wordnet_id": "a-00120784", "pos": "JJ", "sense": "vaag", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "1.0" }, "zwoel": { "form": "zwoel", "cornetto_id": "r_a-16485", "cornetto_synset_id": "n_a-535783", "wordnet_id": "a-01257145", "pos": "JJ", "sense": "sensueel", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.7" } } ================================================ FILE: lib/natural/sentiment/English/negations_en.json ================================================ { "words": ["not", "no", "never", "neither"] } ================================================ FILE: lib/natural/sentiment/English/pattern-sentiment-en.json ================================================ { "13th": { "form": "13th", "wordnet_id": "a-02203763", "pos": "JJ", "sense": "coming next after the twelfth in position", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "20th": { "form": "20th", "cornetto_synset_id": "n_a-531612", "wordnet_id": "a-02204716", "pos": "JJ", "sense": "coming next after the nineteenth in position", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "21st": { "form": "21st", "wordnet_id": "a-02204823", "pos": "JJ", "sense": "coming next after the twentieth in position", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "2nd": { "form": "2nd", "wordnet_id": "a-02202146", "pos": "JJ", "sense": "coming next after the first in position in space or time or degree or magnitude", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "3rd": { "form": "3rd", "cornetto_synset_id": "n_a-530634", "wordnet_id": "a-02202307", "pos": "JJ", "sense": "coming next after the second and just before the fourth in position", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "abhorrent": { "form": "abhorrent", "wordnet_id": "a-1625063", "pos": "JJ", "sense": "offensive to the mind", "polarity": "-0.7", "subjectivity": "0.8", "intensity": "1.0", "reliability": "0.9" }, "able": { "form": "able", "wordnet_id": "a-00510348", "pos": "JJ", "sense": "have the skills and qualifications to do things well", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "above": { "form": "above", "cornetto_synset_id": "n_a-504850", "wordnet_id": "a-00125993", "pos": "JJ", "sense": "appearing earlier in the same text", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "abridged": { "form": "abridged", "cornetto_synset_id": "d_a-9176", "wordnet_id": "a-00004413", "pos": "JJ", "sense": "(used of texts) shortened by condensing or rewriting", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "abrupt": { "form": "abrupt", "wordnet_id": "a-02294122", "pos": "JJ", "sense": "marked by sudden changes in subject and sharp transitions", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "absence": { "form": "absence", "wordnet_id": "n-15270862", "pos": "NN", "sense": "the time interval during which something or somebody is away", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "absolute": { "form": "absolute", "wordnet_id": "a-00897015", "pos": "JJ", "sense": "expressing finality with no implication of possible change", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "absorbed": { "form": "absorbed", "cornetto_synset_id": "n_a-507609", "wordnet_id": "a-02009166", "pos": "JJ", "sense": "retained without reflection", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "absorbing": { "form": "absorbing", "cornetto_synset_id": "n_a-528398", "wordnet_id": "a-01344171", "pos": "JJ", "sense": "capable of arousing and holding the attention", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "absurd": { "form": "absurd", "wordnet_id": "a-02570643", "pos": "JJ", "sense": "incongruous", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "abundant": { "form": "abundant", "cornetto_synset_id": "n_a-525828", "wordnet_id": "a-00013887", "pos": "JJ", "sense": "present in great quantity", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "academic": { "form": "academic", "cornetto_synset_id": "n_a-531845", "wordnet_id": "a-02599939", "pos": "JJ", "sense": "associated with academia or an academy", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "accessible": { "form": "accessible", "wordnet_id": "a-00533221", "pos": "JJ", "sense": "capable of being read with comprehension", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "accomplished": { "form": "accomplished", "cornetto_synset_id": "d_a-9365", "wordnet_id": "a-00521329", "pos": "JJ", "sense": "successfully completed or brought to an end", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "accurate": { "form": "accurate", "cornetto_synset_id": "n_a-535946", "wordnet_id": "a-00021766", "pos": "JJ", "sense": "conforming exactly or almost exactly to fact or to a standard or performing with total accuracy", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "acquainted": { "form": "acquainted", "cornetto_synset_id": "n_a-532775", "wordnet_id": "a-00965894", "pos": "JJ", "sense": "having fair knowledge of", "polarity": "0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "across-the-board": { "form": "across-the-board", "cornetto_synset_id": "n_a-513689", "wordnet_id": "a-00526062", "pos": "JJ", "sense": "broad in scope or content", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "acting": { "form": "acting", "wordnet_id": "a-01756166", "pos": "JJ", "sense": "serving temporarily especially as a substitute", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "action": { "form": "action", "wordnet_id": "n-576451", "pos": "NN", "sense": "the most important or interesting work or activity in a specific area or field", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.9" }, "active": { "form": "active", "cornetto_synset_id": "n_a-526012", "wordnet_id": "a-00031974", "pos": "JJ", "sense": "characterized by energetic activity", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "actual": { "form": "actual", "wordnet_id": "a-02460964", "pos": "JJ", "sense": "being or reflecting the essential or genuine character of something", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "acuate": { "form": "acuate", "cornetto_synset_id": "n_a-526924", "wordnet_id": "a-01810189", "pos": "JJ", "sense": "ending in a sharp point", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "acute": { "form": "acute", "cornetto_synset_id": "n_a-506895", "wordnet_id": "a-01744515", "pos": "JJ", "sense": "having or demonstrating ability to recognize or draw fine distinctions", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "adamant": { "form": "adamant", "cornetto_synset_id": "n_a-514712", "wordnet_id": "a-01024812", "pos": "JJ", "sense": "impervious to pleas, persuasion, requests, reason", "polarity": "0.1", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "addicted": { "form": "addicted", "cornetto_synset_id": "d_a-9575", "wordnet_id": "a-00047029", "pos": "JJ", "sense": "compulsively or physiologically dependent on something habit-forming", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "addictive": { "form": "addictive", "cornetto_synset_id": "n_a-532698", "wordnet_id": "a-00047786", "pos": "JJ", "sense": "causing or characterized by addiction", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "addled": { "form": "addled", "cornetto_synset_id": "n_a-521393", "wordnet_id": "a-00436115", "pos": "JJ", "sense": "confused and vague", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "adept": { "form": "adept", "cornetto_synset_id": "d_a-9172", "wordnet_id": "a-02226162", "pos": "JJ", "sense": "having or showing knowledge and skill and aptitude", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "adequate to": { "form": "adequate to", "cornetto_synset_id": "n_a-532098", "wordnet_id": "a-00051373", "pos": "JJ", "sense": "having the requisite qualities for", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "adequate": { "form": "adequate", "wordnet_id": "a-02336109", "pos": "JJ", "sense": "sufficient for the purpose", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "adjectival": { "form": "adjectival", "cornetto_synset_id": "n_a-504141", "wordnet_id": "a-02936020", "pos": "JJ", "sense": "of or relating to or functioning as an adjective", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "administrable": { "form": "administrable", "cornetto_synset_id": "n_a-530916", "wordnet_id": "a-01474806", "pos": "JJ", "sense": "capable of being administered or managed", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "adorable": { "form": "adorable", "wordnet_id": "a-01459755", "pos": "JJ", "sense": "lovable especially in a childlike or naive way", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "adoring": { "form": "adoring", "cornetto_synset_id": "n_a-509996", "wordnet_id": "a-01464433", "pos": "JJ", "sense": "extravagantly or foolishly loving and indulgent", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "adult": { "form": "adult", "cornetto_synset_id": "d_a-9590", "wordnet_id": "a-01488616", "pos": "JJ", "sense": "(of animals) fully developed", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "advanced": { "form": "advanced", "cornetto_synset_id": "n_a-510789", "wordnet_id": "a-01840121", "pos": "JJ", "sense": "farther along in physical or mental development", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "adventurous": { "form": "adventurous", "cornetto_synset_id": "n_a-502846", "wordnet_id": "a-00065791", "pos": "JJ", "sense": "willing to undertake or seeking out new and daring enterprises", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "adversative": { "form": "adversative", "cornetto_synset_id": "n_a-530430", "wordnet_id": "a-00564504", "pos": "JJ", "sense": "expressing antithesis or opposition", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "advertent": { "form": "advertent", "cornetto_synset_id": "n_a-501199", "wordnet_id": "a-00164308", "pos": "JJ", "sense": "giving attention", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "aeriform": { "form": "aeriform", "cornetto_synset_id": "n_a-521709", "wordnet_id": "a-00626136", "pos": "JJ", "sense": "characterized by lightness and insubstantiality", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "affable": { "form": "affable", "cornetto_synset_id": "d_a-9326", "wordnet_id": "a-01075178", "pos": "JJ", "sense": "diffusing warmth and friendliness", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "affirmative": { "form": "affirmative", "cornetto_synset_id": "n_a-522062", "wordnet_id": "a-01817908", "pos": "JJ", "sense": "expecting the best", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "affluent": { "form": "affluent", "cornetto_synset_id": "n_a-534597", "wordnet_id": "a-02022167", "pos": "JJ", "sense": "having an abundant supply of money or possessions of value", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "afloat": { "form": "afloat", "cornetto_synset_id": "n_a-533320", "wordnet_id": "a-00076921", "pos": "JJ", "sense": "borne on the water", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "aforementioned": { "form": "aforementioned", "wordnet_id": "a-02068730", "pos": "JJ", "sense": "being the one previously mentioned or spoken of", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "afraid": { "form": "afraid", "cornetto_synset_id": "d_a-9168", "wordnet_id": "a-00077645", "pos": "JJ", "sense": "filled with fear or apprehension", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "african": { "form": "african", "cornetto_synset_id": "n_a-500177", "wordnet_id": "a-02941790", "pos": "JJ", "sense": "of or relating to the nations of Africa or their peoples", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "aged": { "form": "aged", "cornetto_synset_id": "d_a-9481", "wordnet_id": "a-01644225", "pos": "JJ", "sense": "advanced in years", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "aghast": { "form": "aghast", "cornetto_synset_id": "d_a-9411", "wordnet_id": "a-00078576", "pos": "JJ", "sense": "struck with fear, dread, or consternation", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "agile": { "form": "agile", "cornetto_synset_id": "n_a-534143", "wordnet_id": "a-00032733", "pos": "JJ", "sense": "moving quickly and lightly", "polarity": "0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "agitative": { "form": "agitative", "cornetto_synset_id": "c_179", "wordnet_id": "a-01896925", "pos": "JJ", "sense": "causing or tending to cause anger or resentment", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "aglow": { "form": "aglow", "cornetto_synset_id": "n_a-507358", "wordnet_id": "a-00279332", "pos": "JJ", "sense": "softly bright or radiant", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "aired": { "form": "aired", "cornetto_synset_id": "c_597", "wordnet_id": "a-02508917", "pos": "JJ", "sense": "open to or abounding in fresh air", "polarity": "0.1", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "airheaded": { "form": "airheaded", "cornetto_synset_id": "n_a-507793", "wordnet_id": "a-02120828", "pos": "JJ", "sense": "lacking seriousness", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "alarming": { "form": "alarming", "cornetto_synset_id": "n_a-527099", "wordnet_id": "a-00193015", "pos": "JJ", "sense": "frightening because of an awareness of danger", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "alas": { "form": "alas", "wordnet_id": "", "pos": "UH", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "alcoholic": { "form": "alcoholic", "wordnet_id": "a-01158596", "pos": "JJ", "sense": "characteristic of or containing alcohol", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "algid": { "form": "algid", "cornetto_synset_id": "d_a-9370", "wordnet_id": "a-01251958", "pos": "JJ", "sense": "chilly", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "alien": { "form": "alien", "wordnet_id": "a-01349927", "pos": "JJ", "sense": "not contained in or deriving from the essential nature of something", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "alienating": { "form": "alienating", "wordnet_id": "a-760783", "pos": "JJ", "sense": "causing hostility or loss of friendliness", "polarity": "-0.3", "subjectivity": "0.3", "intensity": "1.0", "reliability": "0.9" }, "alive": { "form": "alive", "cornetto_synset_id": "d_a-9145", "wordnet_id": "a-00805115", "pos": "JJ", "sense": "(often followed by 'with') full of life and spirit", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "all-around": { "form": "all-around", "cornetto_synset_id": "n_a-532152", "wordnet_id": "a-00526541", "pos": "JJ", "sense": "many-sided", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "alleged": { "form": "alleged", "cornetto_synset_id": "n_a-535847", "wordnet_id": "a-01916555", "pos": "JJ", "sense": "doubtful or suspect", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "alleviated": { "form": "alleviated", "cornetto_synset_id": "n_a-521937", "wordnet_id": "a-01519465", "pos": "JJ", "sense": "(of pain or sorrow) made easier to bear", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "allusions": { "form": "allusions", "wordnet_id": "", "pos": "NNS", "sense": "", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "reliability": "0.9" }, "alternate": { "form": "alternate", "wordnet_id": "a-01853934", "pos": "JJ", "sense": "serving or used in place of another", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "amateur": { "form": "amateur", "cornetto_synset_id": "n_a-525291", "wordnet_id": "a-01869634", "pos": "JJ", "sense": "engaged in as a pastime", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "amateurish": { "form": "amateurish", "cornetto_synset_id": "n_a-502167", "wordnet_id": "a-01870636", "pos": "JJ", "sense": "lacking professional skill or expertise", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "amatory": { "form": "amatory", "cornetto_synset_id": "n_a-526107", "wordnet_id": "a-01465214", "pos": "JJ", "sense": "expressive of or exciting sexual love or romance", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "amazing": { "form": "amazing", "wordnet_id": "a-02359789", "pos": "JJ", "sense": "surprising greatly", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.9" }, "ambitious": { "form": "ambitious", "wordnet_id": "a-00745642", "pos": "JJ", "sense": "requiring full use of your abilities or resources", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "amenable": { "form": "amenable", "cornetto_synset_id": "n_a-503633", "wordnet_id": "a-00696828", "pos": "JJ", "sense": "disposed or willing to comply", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "american": { "form": "american", "wordnet_id": "a-02927512", "pos": "JJ", "sense": "of or relating to the United States of America or its people or language or culture", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "amusing": { "form": "amusing", "wordnet_id": "a-01344485", "pos": "JJ", "sense": "providing enjoyment", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "anger": { "form": "anger", "wordnet_id": "v-1787106", "pos": "VB", "sense": "become angry", "polarity": "-0.7", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.9" }, "angered": { "form": "angered", "cornetto_synset_id": "d_a-9618", "wordnet_id": "a-00114454", "pos": "JJ", "sense": "marked by extreme anger", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "angry": { "form": "angry", "wordnet_id": "a-01173697", "pos": "JJ", "sense": "severely inflamed and painful", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "annoyed": { "form": "annoyed", "wordnet_id": "a-2455845", "pos": "JJ", "sense": "troubled persistently especially with petty annoyances", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.9" }, "annoying": { "form": "annoying", "cornetto_synset_id": "n_a-514040", "wordnet_id": "a-00089550", "pos": "JJ", "sense": "causing irritation or annoyance", "polarity": "-0.8", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.9" }, "anxious": { "form": "anxious", "wordnet_id": "a-02456157", "pos": "JJ", "sense": "causing or fraught with or showing anxiety", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "aphonic": { "form": "aphonic", "cornetto_synset_id": "n_a-529437", "wordnet_id": "a-00151661", "pos": "JJ", "sense": "being without sound through injury or illness and thus incapable of all but whispered speech", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "appalled": { "form": "appalled", "wordnet_id": "", "pos": "JJ", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "appalling": { "form": "appalling", "cornetto_synset_id": "n_a-513370", "wordnet_id": "a-00193367", "pos": "JJ", "sense": "causing consternation", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "apparent": { "form": "apparent", "cornetto_synset_id": "n_a-505886", "wordnet_id": "a-01618376", "pos": "JJ", "sense": "clearly revealed to the mind or the senses or judgment", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "appealing": { "form": "appealing", "wordnet_id": "a-02376277", "pos": "JJ", "sense": "(of characters in literature or drama) evoking empathic or sympathetic feelings", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "appetizing": { "form": "appetizing", "cornetto_synset_id": "n_a-528088", "wordnet_id": "a-00133417", "pos": "JJ", "sense": "appealing to or stimulating the appetite especially in appearance or aroma", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "applaudable": { "form": "applaudable", "cornetto_synset_id": "n_a-524336", "wordnet_id": "a-02585545", "pos": "JJ", "sense": "worthy of high praise", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "applicative": { "form": "applicative", "cornetto_synset_id": "n_a-530918", "wordnet_id": "a-01834812", "pos": "JJ", "sense": "readily applicable or practical", "polarity": "0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "apportioned": { "form": "apportioned", "cornetto_synset_id": "n_a-524178", "wordnet_id": "a-00540236", "pos": "JJ", "sense": "given out in portions", "polarity": "0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "apposite": { "form": "apposite", "cornetto_synset_id": "n_a-531221", "wordnet_id": "a-00138314", "pos": "JJ", "sense": "being of striking appropriateness and pertinence", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "appreciated": { "form": "appreciated", "wordnet_id": "a-1378429", "pos": "JJ", "sense": "fully understood or grasped", "polarity": "0.2", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.9" }, "appreciative": { "form": "appreciative", "cornetto_synset_id": "n_a-506396", "wordnet_id": "a-00774676", "pos": "JJ", "sense": "having or showing appreciation or a favorable critical judgment or opinion", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "approaching": { "form": "approaching", "cornetto_synset_id": "n_a-501802", "wordnet_id": "a-01732601", "pos": "JJ", "sense": "of the relatively near future", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "appropriate": { "form": "appropriate", "cornetto_synset_id": "n_a-510404", "wordnet_id": "a-00134701", "pos": "JJ", "sense": "suitable for a particular person or place or condition etc", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "approximate": { "form": "approximate", "cornetto_synset_id": "n_a-511092", "wordnet_id": "a-00915976", "pos": "JJ", "sense": "not quite exact or correct", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "apt": { "form": "apt", "cornetto_synset_id": "n_a-516334", "wordnet_id": "a-01334958", "pos": "JJ", "sense": "mentally quick and resourceful", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "arbitrary": { "form": "arbitrary", "cornetto_synset_id": "n_a-534901", "wordnet_id": "a-00718924", "pos": "JJ", "sense": "based on or subject to individual discretion or preference or sometimes impulse or caprice", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "archaeological": { "form": "archaeological", "cornetto_synset_id": "n_a-502503", "wordnet_id": "a-02638392", "pos": "JJ", "sense": "related to or dealing with or devoted to archaeology", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "arduous": { "form": "arduous", "cornetto_synset_id": "n_a-532593", "wordnet_id": "a-00836544", "pos": "JJ", "sense": "characterized by effort to the point of exhaustion", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "aroused": { "form": "aroused", "cornetto_synset_id": "n_a-509978", "wordnet_id": "a-02131668", "pos": "JJ", "sense": "feeling great sexual desire", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "arrest": { "form": "arrest", "wordnet_id": "n-14010927", "pos": "NN", "sense": "the state of inactivity following an interruption", "polarity": "-0.05", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "artesian": { "form": "artesian", "cornetto_synset_id": "n_a-533297", "wordnet_id": "a-00098933", "pos": "JJ", "sense": "(of water) rising to the surface under internal hydrostatic pressure", "polarity": "0.9", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "artificial": { "form": "artificial", "cornetto_synset_id": "n_a-504613", "wordnet_id": "a-00073465", "pos": "JJ", "sense": "artificially formal", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "artistic": { "form": "artistic", "wordnet_id": "a-02393086", "pos": "JJ", "sense": "aesthetically pleasing", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "ascetic": { "form": "ascetic", "cornetto_synset_id": "n_a-529697", "wordnet_id": "a-00009618", "pos": "JJ", "sense": "practicing great self-denial", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "ashen": { "form": "ashen", "cornetto_synset_id": "d_a-9194", "wordnet_id": "a-00404568", "pos": "JJ", "sense": "anemic looking from illness or emotion", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "asian": { "form": "asian", "wordnet_id": "a-02968525", "pos": "JJ", "sense": "of or relating to or characteristic of Asia or the peoples of Asia or their languages or culture", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "askew": { "form": "askew", "cornetto_synset_id": "n_a-508016", "wordnet_id": "a-02312450", "pos": "JJ", "sense": "turned or twisted toward one side", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "assumptive": { "form": "assumptive", "cornetto_synset_id": "n_a-502571", "wordnet_id": "a-00205696", "pos": "JJ", "sense": "excessively forward", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "astonishing": { "form": "astonishing", "wordnet_id": "a-02359789", "pos": "JJ", "sense": "surprising greatly", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "astounding": { "form": "astounding", "cornetto_synset_id": "n_a-532288", "wordnet_id": "a-00645856", "pos": "JJ", "sense": "bewildering or striking dumb with wonder", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "astute": { "form": "astute", "cornetto_synset_id": "c_235", "wordnet_id": "a-00438909", "pos": "JJ", "sense": "marked by practical hardheaded intelligence", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "atmospheric": { "form": "atmospheric", "cornetto_synset_id": "n_a-502696", "wordnet_id": "a-02831736", "pos": "JJ", "sense": "relating to or located in the atmosphere", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "atrocious": { "form": "atrocious", "cornetto_synset_id": "n_a-531138", "wordnet_id": "a-01126291", "pos": "JJ", "sense": "exceptionally bad or displeasing", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "attendant": { "form": "attendant", "cornetto_synset_id": "n_a-504086", "wordnet_id": "a-00122844", "pos": "JJ", "sense": "following or accompanying as a consequence", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "attention-getting": { "form": "attention-getting", "cornetto_synset_id": "n_a-522067", "wordnet_id": "a-00579498", "pos": "JJ", "sense": "seizing the attention", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "attentive": { "form": "attentive", "cornetto_synset_id": "d_a-9277", "wordnet_id": "a-00163592", "pos": "JJ", "sense": "(often followed by 'to') giving care or attention", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "attractive": { "form": "attractive", "cornetto_synset_id": "n_a-510897", "wordnet_id": "a-00166146", "pos": "JJ", "sense": "pleasing to the eye or mind especially through beauty or charm", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "atypical": { "form": "atypical", "cornetto_synset_id": "n_a-501908", "wordnet_id": "a-02469928", "pos": "JJ", "sense": "not representative of a group, class, or type", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "aureate": { "form": "aureate", "cornetto_synset_id": "n_a-511289", "wordnet_id": "a-00369941", "pos": "JJ", "sense": "having the deep slightly brownish color of gold", "polarity": "0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "australian": { "form": "australian", "wordnet_id": "a-03045750", "pos": "JJ", "sense": "of or relating to or characteristic of Australia or its inhabitants or its languages", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "authentic": { "form": "authentic", "wordnet_id": "a-02465115", "pos": "JJ", "sense": "conforming to fact and therefore worthy of belief", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "authoritative": { "form": "authoritative", "cornetto_synset_id": "d_a-9178", "wordnet_id": "a-01830403", "pos": "JJ", "sense": "having authority or ascendancy or influence", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "autistic": { "form": "autistic", "cornetto_synset_id": "n_a-502750", "wordnet_id": "a-02542878", "pos": "JJ", "sense": "characteristic of or affected with autism", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "autobiographical": { "form": "autobiographical", "cornetto_synset_id": "n_a-502755", "wordnet_id": "a-02651244", "pos": "JJ", "sense": "relating to or in the style of an autobiography", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "autonomous": { "form": "autonomous", "cornetto_synset_id": "n_a-535528", "wordnet_id": "a-00728225", "pos": "JJ", "sense": "(of persons) free from external control and constraint in e.g. action and judgment", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "available": { "form": "available", "cornetto_synset_id": "d_a-9181", "wordnet_id": "a-00183053", "pos": "JJ", "sense": "obtainable or accessible and ready for use or service", "polarity": "0.4", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "average": { "form": "average", "cornetto_synset_id": "n_a-518805", "wordnet_id": "a-00486290", "pos": "JJ", "sense": "lacking special distinction, rank, or status", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "avid": { "form": "avid", "wordnet_id": "a-00888477", "pos": "JJ", "sense": "(often followed by 'for') ardently or excessively desirous", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "aware": { "form": "aware", "cornetto_synset_id": "n_a-509796", "wordnet_id": "a-01977155", "pos": "JJ", "sense": "bearing in mind", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "aweary": { "form": "aweary", "cornetto_synset_id": "d_a-9410", "wordnet_id": "a-02432428", "pos": "JJ", "sense": "physically and mentally fatigued", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "awesome": { "form": "awesome", "wordnet_id": "a-01282510", "pos": "JJ", "sense": "inspiring awe or admiration or wonder", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "awful": { "form": "awful", "cornetto_synset_id": "n_a-511467", "wordnet_id": "a-00193799", "pos": "JJ", "sense": "causing fear or dread or terror", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "awkward": { "form": "awkward", "cornetto_synset_id": "n_a-523336", "wordnet_id": "a-00605406", "pos": "JJ", "sense": "causing inconvenience", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "ahw": { "form": "ahw", "wordnet_id": "", "pos": "UH", "sense": "", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "aww": { "form": "aww", "wordnet_id": "", "pos": "UH", "sense": "", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "awww": { "form": "awww", "wordnet_id": "", "pos": "UH", "sense": "", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "awwww": { "form": "awwww", "wordnet_id": "", "pos": "UH", "sense": "", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "axiomatic": { "form": "axiomatic", "cornetto_synset_id": "n_a-506530", "wordnet_id": "a-01618895", "pos": "JJ", "sense": "evident without proof or argument", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "back": { "form": "back", "wordnet_id": "a-00668816", "pos": "JJ", "sense": "of an earlier date", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "bad": { "form": "bad", "cornetto_synset_id": "d_a-9561", "wordnet_id": "a-01117226", "pos": "JJ", "sense": "reproduced fraudulently", "polarity": "-0.7", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "badness": { "form": "badness", "wordnet_id": "n-5036715", "pos": "NN", "sense": "used of the degree of something undesirable e.g. pain or weather", "polarity": "-0.3", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "balmy": { "form": "balmy", "cornetto_synset_id": "n_a-535263", "wordnet_id": "a-00438332", "pos": "JJ", "sense": "mild and pleasant", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "banal": { "form": "banal", "wordnet_id": "a-1688757", "pos": "JJ", "sense": "repeated too often", "polarity": "-0.3", "subjectivity": "0.5", "intensity": "1.0", "reliability": "0.9" }, "banded": { "form": "banded", "cornetto_synset_id": "n_a-510658", "wordnet_id": "a-00222969", "pos": "JJ", "sense": "identified with a band especially around a leg", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "bang-up": { "form": "bang-up", "cornetto_synset_id": "n_a-511955", "wordnet_id": "a-01123879", "pos": "JJ", "sense": "very good", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "barbarian": { "form": "barbarian", "cornetto_synset_id": "d_a-9619", "wordnet_id": "a-00412788", "pos": "JJ", "sense": "without civilizing influences", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "barbarous": { "form": "barbarous", "cornetto_synset_id": "c_182", "wordnet_id": "a-01263013", "pos": "JJ", "sense": "(of persons or their actions) able or disposed to inflict pain or suffering", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "bare": { "form": "bare", "cornetto_synset_id": "n_a-520639", "wordnet_id": "a-00106821", "pos": "JJ", "sense": "lacking in amplitude or quantity", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "base": { "form": "base", "cornetto_synset_id": "c_540", "wordnet_id": "a-01589650", "pos": "JJ", "sense": "having or showing an ignoble lack of honor or morality", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "basic": { "form": "basic", "wordnet_id": "a-02295298", "pos": "JJ", "sense": "reduced to the simplest and most significant form possible without loss of generality", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "bass": { "form": "bass", "cornetto_synset_id": "n_a-536057", "wordnet_id": "a-01215935", "pos": "JJ", "sense": "having or denoting a low vocal or instrumental range", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "battleful": { "form": "battleful", "cornetto_synset_id": "n_a-501941", "wordnet_id": "a-00082766", "pos": "JJ", "sense": "having or showing a ready disposition to fight", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "beautiful": { "form": "beautiful", "cornetto_synset_id": "n_a-524142", "wordnet_id": "a-00217728", "pos": "JJ", "sense": "delighting the senses or exciting intellectual or emotional admiration", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "becoming": { "form": "becoming", "cornetto_synset_id": "n_a-510405", "wordnet_id": "a-01878870", "pos": "JJ", "sense": "according with custom or propriety", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "beefy": { "form": "beefy", "cornetto_synset_id": "n_a-529394", "wordnet_id": "a-02038126", "pos": "JJ", "sense": "muscular and heavily built", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "behind": { "form": "behind", "cornetto_synset_id": "n_a-514476", "wordnet_id": "a-02492383", "pos": "JJ", "sense": "having the lower score or lagging position in a contest", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "believable": { "form": "believable", "cornetto_synset_id": "n_a-502749", "wordnet_id": "a-00644839", "pos": "JJ", "sense": "capable of being believed", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "beloved": { "form": "beloved", "cornetto_synset_id": "n_a-510141", "wordnet_id": "a-01462324", "pos": "JJ", "sense": "dearly loved", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "best": { "form": "best", "wordnet_id": "a-00227507", "pos": "JJ", "sense": "(superlative of 'good') having the most positive qualities", "polarity": "1.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.9" }, "better": { "form": "better", "wordnet_id": "a-00231761", "pos": "JJ", "sense": "(comparative of 'good') changed for the better in health or fitness", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "bewitching": { "form": "bewitching", "cornetto_synset_id": "n_a-532666", "wordnet_id": "a-00166753", "pos": "JJ", "sense": "capturing interest as if by a spell", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "big": { "form": "big", "cornetto_synset_id": "d_a-9639", "wordnet_id": "a-00173391", "pos": "JJ", "sense": "in an advanced stage of pregnancy", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "bigger": { "form": "bigger", "wordnet_id": "a-01383756", "pos": "JJ", "sense": "large or big relative to something else", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "biographic": { "form": "biographic", "cornetto_synset_id": "n_a-504218", "wordnet_id": "a-03048680", "pos": "JJ", "sense": "of or relating to or being biography", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "bitter": { "form": "bitter", "cornetto_synset_id": "d_a-9192", "wordnet_id": "a-02396098", "pos": "JJ", "sense": "causing a sharp and acrid taste experience", "polarity": "-0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "bizarre": { "form": "bizarre", "cornetto_synset_id": "n_a-531732", "wordnet_id": "a-00608791", "pos": "JJ", "sense": "conspicuously or grossly unconventional or unusual", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "black": { "form": "black", "cornetto_synset_id": "n_a-536093", "wordnet_id": "a-00392812", "pos": "JJ", "sense": "being of the achromatic color of maximum darkness", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "bland": { "form": "bland", "wordnet_id": "a-02307563", "pos": "JJ", "sense": "lacking stimulating characteristics", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "blank": { "form": "blank", "cornetto_synset_id": "n_a-521250", "wordnet_id": "a-00500889", "pos": "JJ", "sense": "void of expression", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "blasted": { "form": "blasted", "cornetto_synset_id": "n_a-516807", "wordnet_id": "a-00669942", "pos": "JJ", "sense": "expletives used informally as intensifiers", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "blatant": { "form": "blatant", "wordnet_id": "a-02090567", "pos": "JJ", "sense": "without any attempt at concealment", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "bleak": { "form": "bleak", "wordnet_id": "a-01252399", "pos": "JJ", "sense": "unpleasantly cold and damp", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "blech": { "form": "blech", "wordnet_id": "", "pos": "UH", "sense": "", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "blind": { "form": "blind", "wordnet_id": "a-01926654", "pos": "JJ", "sense": "not based on reason or evidence", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "blonde": { "form": "blonde", "wordnet_id": "a-00243606", "pos": "JJ", "sense": "being or having light colored skin and hair and usually blue or grey eyes", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "bloodstained": { "form": "bloodstained", "cornetto_synset_id": "n_a-504377", "wordnet_id": "a-00247993", "pos": "JJ", "sense": "covered with blood", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "bloodthirsty": { "form": "bloodthirsty", "cornetto_synset_id": "n_a-510816", "wordnet_id": "a-00248251", "pos": "JJ", "sense": "marked by eagerness to resort to violence and bloodshed", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "bloody": { "form": "bloody", "cornetto_synset_id": "d_a-9577", "wordnet_id": "a-00247439", "pos": "JJ", "sense": "having or covered with or accompanied by blood", "polarity": "-0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "blue": { "form": "blue", "cornetto_synset_id": "d_a-9193", "wordnet_id": "a-00370869", "pos": "JJ", "sense": "of the color intermediate between green and violet", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "bodily": { "form": "bodily", "cornetto_synset_id": "n_a-517174", "wordnet_id": "a-00630329", "pos": "JJ", "sense": "having or relating to a physical material body", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "bogged": { "form": "bogged", "wordnet_id": "", "pos": "VBN", "sense": "", "polarity": "-0.2", "subjectivity": "0.1", "intensity": "1.0", "reliability": "0.9" }, "boilerplate": { "form": "boilerplate", "wordnet_id": "n-7075006", "pos": "NN", "sense": "standard formulations uniformly found in certain types of legal documents or news stories", "polarity": "-0.2", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "bold": { "form": "bold", "wordnet_id": "a-01145422", "pos": "JJ", "sense": "very steep", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "bonny": { "form": "bonny", "cornetto_synset_id": "n_a-525316", "wordnet_id": "a-00218440", "pos": "JJ", "sense": "very pleasing to the eye", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "bootleg": { "form": "bootleg", "cornetto_synset_id": "n_a-536095", "wordnet_id": "a-01402580", "pos": "JJ", "sense": "distributed or sold illicitly", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "bored": { "form": "bored", "wordnet_id": "a-01343200", "pos": "JJ", "sense": "uninterested because of frequent exposure or indulgence", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "boring": { "form": "boring", "cornetto_synset_id": "n_a-520370", "wordnet_id": "a-01345307", "pos": "JJ", "sense": "so lacking in interest as to cause mental weariness", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "boundless": { "form": "boundless", "cornetto_synset_id": "n_a-520379", "wordnet_id": "a-01007657", "pos": "JJ", "sense": "seemingly boundless in amount, number, degree, or especially extent", "polarity": "-0.2", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "brainsick": { "form": "brainsick", "cornetto_synset_id": "n_a-516037", "wordnet_id": "a-02075321", "pos": "JJ", "sense": "affected with madness or insanity", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "brash": { "form": "brash", "cornetto_synset_id": "n_a-508126", "wordnet_id": "a-00204779", "pos": "JJ", "sense": "offensively bold", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "bravado": { "form": "bravado", "wordnet_id": "n-6889591", "pos": "NN", "sense": "a swaggering show of courage", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "reliability": "0.9" }, "brave": { "form": "brave", "cornetto_synset_id": "n_a-519123", "wordnet_id": "a-00262792", "pos": "JJ", "sense": "possessing or displaying courage", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "breathtaking": { "form": "breathtaking", "cornetto_synset_id": "n_a-534732", "wordnet_id": "a-00921369", "pos": "JJ", "sense": "tending to cause suspension of regular breathing", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "brief": { "form": "brief", "wordnet_id": "a-01442826", "pos": "JJ", "sense": "of short duration or distance", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "bright": { "form": "bright", "cornetto_synset_id": "n_a-535928", "wordnet_id": "a-01812237", "pos": "JJ", "sense": "made smooth and bright by or as if by rubbing", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "brilliant": { "form": "brilliant", "cornetto_synset_id": "n_a-511641", "wordnet_id": "a-01285376", "pos": "JJ", "sense": "characterized by grandeur", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "british": { "form": "british", "wordnet_id": "a-03022177", "pos": "JJ", "sense": "of or relating to or characteristic of Great Britain or its people or culture", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "broad": { "form": "broad", "wordnet_id": "a-01384212", "pos": "JJ", "sense": "very large in expanse or scope", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "broad-minded": { "form": "broad-minded", "cornetto_synset_id": "n_a-526330", "wordnet_id": "a-00286578", "pos": "JJ", "sense": "inclined to respect views and beliefs that differ from your own", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "broken": { "form": "broken", "cornetto_synset_id": "d_a-9361", "wordnet_id": "a-00289082", "pos": "JJ", "sense": "physically and forcibly separated into pieces or cracked or split", "polarity": "-0.4", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "brushed": { "form": "brushed", "cornetto_synset_id": "n_a-535097", "wordnet_id": "a-01153141", "pos": "JJ", "sense": "(of fabrics) having soft nap produced by brushing", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "brutal": { "form": "brutal", "wordnet_id": "a-01510798", "pos": "JJ", "sense": "harsh", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "budding": { "form": "budding", "cornetto_synset_id": "n_a-530897", "wordnet_id": "a-00742620", "pos": "JJ", "sense": "beginning to develop", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "busy": { "form": "busy", "cornetto_synset_id": "d_a-9144", "wordnet_id": "a-00292937", "pos": "JJ", "sense": "actively or fully engaged or occupied", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "cacophonous": { "form": "cacophonous", "cornetto_synset_id": "n_a-535182", "wordnet_id": "a-00298767", "pos": "JJ", "sense": "having an unpleasant sound", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "calculable": { "form": "calculable", "cornetto_synset_id": "n_a-533699", "wordnet_id": "a-00301187", "pos": "JJ", "sense": "capable of being calculated or estimated", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "calm": { "form": "calm", "cornetto_synset_id": "n_a-526409", "wordnet_id": "a-00529657", "pos": "JJ", "sense": "not agitated", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "can't": { "form": "can't", "wordnet_id": "", "pos": "VB", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.9" }, "candid": { "form": "candid", "cornetto_synset_id": "c_184", "wordnet_id": "a-01310273", "pos": "JJ", "sense": "openly straightforward and direct without reserve or secretiveness", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "capable": { "form": "capable", "wordnet_id": "a-02361540", "pos": "JJ", "sense": "possibly accepting or permitting", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "captivating": { "form": "captivating", "cornetto_synset_id": "n_a-521695", "wordnet_id": "a-00166753", "pos": "JJ", "sense": "capturing interest as if by a spell", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "captive": { "form": "captive", "cornetto_synset_id": "n_a-509723", "wordnet_id": "a-00163948", "pos": "JJ", "sense": "giving or marked by complete attention to", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "cardiac": { "form": "cardiac", "wordnet_id": "a-2843717", "pos": "JJ", "sense": "of or relating to the heart", "polarity": "-0.05", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "careful": { "form": "careful", "wordnet_id": "a-02456698", "pos": "JJ", "sense": "full of cares or anxiety", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "careless": { "form": "careless", "cornetto_synset_id": "n_a-520108", "wordnet_id": "a-00311663", "pos": "JJ", "sense": "marked by lack of attention or consideration or forethought or thoroughness", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "cast-iron": { "form": "cast-iron", "cornetto_synset_id": "n_a-513363", "wordnet_id": "a-02038891", "pos": "JJ", "sense": "extremely robust", "polarity": "0.9", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "casual": { "form": "casual", "cornetto_synset_id": "n_a-533333", "wordnet_id": "a-00312234", "pos": "JJ", "sense": "hasty and without attention to detail", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "catching": { "form": "catching", "cornetto_synset_id": "n_a-501301", "wordnet_id": "a-01303042", "pos": "JJ", "sense": "(of disease) capable of being transmitted by infection", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "catholic": { "form": "catholic", "cornetto_synset_id": "n_a-514668", "wordnet_id": "a-00287128", "pos": "JJ", "sense": "free from provincial prejudices or attachments", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "caustic": { "form": "caustic", "cornetto_synset_id": "n_a-504134", "wordnet_id": "a-00587376", "pos": "JJ", "sense": "of a substance, especially a strong acid", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "ceaseless": { "form": "ceaseless", "cornetto_synset_id": "n_a-508064", "wordnet_id": "a-00595299", "pos": "JJ", "sense": "uninterrupted in time and indefinitely long continuing", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "celebrated": { "form": "celebrated", "cornetto_synset_id": "n_a-503694", "wordnet_id": "a-01375831", "pos": "JJ", "sense": "widely known and esteemed", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "center": { "form": "center", "cornetto_synset_id": "n_a-511782", "wordnet_id": "a-00330506", "pos": "JJ", "sense": "equally distant from the extremes", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "central": { "form": "central", "wordnet_id": "a-01277097", "pos": "JJ", "sense": "serving as an essential component", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "centric": { "form": "centric", "cornetto_synset_id": "n_a-505452", "wordnet_id": "a-00330728", "pos": "JJ", "sense": "having or situated at or near a center", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "ceremonial": { "form": "ceremonial", "cornetto_synset_id": "n_a-509253", "wordnet_id": "a-01042491", "pos": "JJ", "sense": "marked by pomp or ceremony or formality", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "certain": { "form": "certain", "wordnet_id": "a-02087342", "pos": "JJ", "sense": "established irrevocably", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "challenging": { "form": "challenging", "wordnet_id": "a-02306598", "pos": "JJ", "sense": "stimulating interest or thought", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "changeless": { "form": "changeless", "cornetto_synset_id": "n_a-521559", "wordnet_id": "a-00347400", "pos": "JJ", "sense": "remaining the same for indefinitely long times", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "characteristic": { "form": "characteristic", "cornetto_synset_id": "n_a-514566", "wordnet_id": "a-00356926", "pos": "JJ", "sense": "typical or distinctive", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "charismatic": { "form": "charismatic", "cornetto_synset_id": "n_a-505493", "wordnet_id": "a-00167077", "pos": "JJ", "sense": "possessing an extraordinary ability to attract", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "charitable": { "form": "charitable", "cornetto_synset_id": "n_a-528223", "wordnet_id": "a-01372948", "pos": "JJ", "sense": "showing or motivated by sympathy and understanding and generosity", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "charming": { "form": "charming", "cornetto_synset_id": "n_a-510820", "wordnet_id": "a-01576071", "pos": "JJ", "sense": "possessing or using or characteristic of or appropriate to supernatural powers", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "cheap": { "form": "cheap", "cornetto_synset_id": "n_a-511207", "wordnet_id": "a-00934199", "pos": "JJ", "sense": "relatively low in price or charging low prices", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "cheerful": { "form": "cheerful", "cornetto_synset_id": "d_a-9546", "wordnet_id": "a-00362467", "pos": "JJ", "sense": "being full of or promoting cheer", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "cheery": { "form": "cheery", "cornetto_synset_id": "d_a-9195", "wordnet_id": "a-00363938", "pos": "JJ", "sense": "bright and pleasant", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "cheesiest": { "form": "cheesiest", "wordnet_id": "", "pos": "JJS", "sense": "", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "reliability": "0.9" }, "cheesy": { "form": "cheesy", "cornetto_synset_id": "n_a-524740", "wordnet_id": "a-02346013", "pos": "JJ", "sense": "of very poor quality", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "chicken": { "form": "chicken", "cornetto_synset_id": "n_a-514975", "wordnet_id": "a-00265314", "pos": "JJ", "sense": "easily frightened", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "childish": { "form": "childish", "cornetto_synset_id": "n_a-514998", "wordnet_id": "a-01493016", "pos": "JJ", "sense": "indicating a lack of maturity", "polarity": "-0.2", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "chilling": { "form": "chilling", "cornetto_synset_id": "n_a-503573", "wordnet_id": "a-00194924", "pos": "JJ", "sense": "provoking fear terror", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "chilly": { "form": "chilly", "cornetto_synset_id": "n_a-514962", "wordnet_id": "a-00857206", "pos": "JJ", "sense": "not characterized by emotion", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "chinese": { "form": "chinese", "wordnet_id": "a-03122400", "pos": "JJ", "sense": "of or relating to or characteristic of the island republic on Taiwan or its residents or their language", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "chitchat": { "form": "chitchat", "wordnet_id": "n-7135080", "pos": "NN", "sense": "light informal conversation for social occasions", "polarity": "-0.2", "subjectivity": "0.3", "intensity": "1.0", "reliability": "0.9" }, "choppy": { "form": "choppy", "wordnet_id": "a-1143750", "pos": "JJ", "sense": "marked by abrupt transitions", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "christian": { "form": "christian", "wordnet_id": "a-02952275", "pos": "JJ", "sense": "relating to or characteristic of Christianity", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "chronological": { "form": "chronological", "cornetto_synset_id": "n_a-505581", "wordnet_id": "a-02956880", "pos": "JJ", "sense": "relating to or arranged according to temporal order", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "churning": { "form": "churning", "cornetto_synset_id": "n_a-521391", "wordnet_id": "a-00087597", "pos": "JJ", "sense": "(of a liquid) agitated vigorously", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "cinematic": { "form": "cinematic", "cornetto_synset_id": "n_a-509028", "wordnet_id": "a-02696795", "pos": "JJ", "sense": "of or pertaining to or characteristic of the cinema", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "civilized": { "form": "civilized", "cornetto_synset_id": "n_a-503731", "wordnet_id": "a-01947741", "pos": "JJ", "sense": "marked by refinement in taste and manners", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "classic": { "form": "classic", "wordnet_id": "a-02295098", "pos": "JJ", "sense": "of recognized authority or excellence", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "classical": { "form": "classical", "cornetto_synset_id": "n_a-502332", "wordnet_id": "a-00413622", "pos": "JJ", "sense": "of or relating to the most highly developed stage of an earlier civilisation and its culture", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "classy": { "form": "classy", "cornetto_synset_id": "c_345", "wordnet_id": "a-00975778", "pos": "JJ", "sense": "elegant and fashionable", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "claustrophobic": { "form": "claustrophobic", "wordnet_id": "a-00558612", "pos": "JJ", "sense": "uncomfortably closed or hemmed in", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "clean": { "form": "clean", "cornetto_synset_id": "n_a-525388", "wordnet_id": "a-00047653", "pos": "JJ", "sense": "free of drugs", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "cleanly": { "form": "cleanly", "cornetto_synset_id": "n_a-522125", "wordnet_id": "a-00417978", "pos": "JJ", "sense": "habitually clean", "polarity": "0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "clear": { "form": "clear", "cornetto_synset_id": "n_a-516921", "wordnet_id": "a-01405047", "pos": "JJ", "sense": "easily deciphered", "polarity": "0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "clever": { "form": "clever", "wordnet_id": "a-00439252", "pos": "JJ", "sense": "showing self-interest and shrewdness in dealing with others", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "closed": { "form": "closed", "cornetto_synset_id": "d_a-9226", "wordnet_id": "a-01653538", "pos": "JJ", "sense": "not open or affording passage or access", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "cloud-covered": { "form": "cloud-covered", "cornetto_synset_id": "n_a-503224", "wordnet_id": "a-00461971", "pos": "JJ", "sense": "filled or abounding with clouds", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "cloudless": { "form": "cloudless", "cornetto_synset_id": "d_a-9329", "wordnet_id": "a-00460946", "pos": "JJ", "sense": "free from clouds", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "cluelessness": { "form": "cluelessness", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "clumsy": { "form": "clumsy", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.3", "subjectivity": "0.4", "intensity": "1.0", "reliability": "0.9" }, "coarse": { "form": "coarse", "cornetto_synset_id": "c_473", "wordnet_id": "a-02230990", "pos": "JJ", "sense": "of textures that are rough to the touch or substances consisting of relatively large particles", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "cocky": { "form": "cocky", "cornetto_synset_id": "n_a-508125", "wordnet_id": "a-00156440", "pos": "JJ", "sense": "overly self-confident or self-assertive", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "coherent": { "form": "coherent", "cornetto_synset_id": "n_a-522439", "wordnet_id": "a-00464513", "pos": "JJ", "sense": "marked by an orderly, logical, and aesthetically consistent relation of parts", "polarity": "0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "cold": { "form": "cold", "cornetto_synset_id": "n_a-515500", "wordnet_id": "a-01257612", "pos": "JJ", "sense": "extended meanings", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "collectible": { "form": "collectible", "cornetto_synset_id": "n_a-527386", "wordnet_id": "a-00136884", "pos": "JJ", "sense": "subject to or requiring payment especially as specified", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "colorful": { "form": "colorful", "cornetto_synset_id": "n_a-503317", "wordnet_id": "a-00402419", "pos": "JJ", "sense": "having striking color", "polarity": "0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "colossal": { "form": "colossal", "cornetto_synset_id": "n_a-510819", "wordnet_id": "a-01384730", "pos": "JJ", "sense": "so great in size or force or extent as to elicit awe", "polarity": "0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "coma": { "form": "coma", "wordnet_id": "n-5680193", "pos": "NN", "sense": "a state of deep and often prolonged unconsciousness", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "come-at-able": { "form": "come-at-able", "cornetto_synset_id": "d_a-9549", "wordnet_id": "a-00019505", "pos": "JJ", "sense": "capable of being reached or attained", "polarity": "0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "comfortable": { "form": "comfortable", "cornetto_synset_id": "n_a-510492", "wordnet_id": "a-00476819", "pos": "JJ", "sense": "providing or experiencing physical well-being or relief ('comfy' is informal)", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "comic": { "form": "comic", "wordnet_id": "a-02973392", "pos": "JJ", "sense": "of or relating to or characteristic of comedy", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "comical": { "form": "comical", "cornetto_synset_id": "n_a-515488", "wordnet_id": "a-01265308", "pos": "JJ", "sense": "arousing or provoking laughter", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "commercial": { "form": "commercial", "cornetto_synset_id": "d_a-9621", "wordnet_id": "a-00483146", "pos": "JJ", "sense": "connected with or engaged in or sponsored by or used in commerce or commercial enterprises", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "commercialism": { "form": "commercialism", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "common": { "form": "common", "cornetto_synset_id": "n_a-522137", "wordnet_id": "a-01593079", "pos": "JJ", "sense": "of or associated with the great masses of people", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "compelling": { "form": "compelling", "cornetto_synset_id": "n_a-518469", "wordnet_id": "a-01826477", "pos": "JJ", "sense": "driving or forcing", "polarity": "0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.9" }, "competent": { "form": "competent", "wordnet_id": "a-00512130", "pos": "JJ", "sense": "legally qualified or sufficient", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "complained": { "form": "complained", "wordnet_id": "", "pos": "VB", "polarity": "-0.3", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.9" }, "complaint": { "form": "complaint", "wordnet_id": "n-7208708", "pos": "NN", "sense": "an expression of grievance or resentment", "polarity": "-0.3", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.9" }, "complete": { "form": "complete", "cornetto_synset_id": "n_a-533538", "wordnet_id": "a-00520214", "pos": "JJ", "sense": "having every necessary or normal part or component or step", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "complex": { "form": "complex", "cornetto_synset_id": "d_a-9348", "wordnet_id": "a-02176178", "pos": "JJ", "sense": "complicated in structure", "polarity": "-0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "complicated": { "form": "complicated", "wordnet_id": "a-02177584", "pos": "JJ", "sense": "difficult to analyze or understand", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "complimentary": { "form": "complimentary", "cornetto_synset_id": "n_a-511409", "wordnet_id": "a-01710260", "pos": "JJ", "sense": "costing nothing", "polarity": "0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "comprehensible": { "form": "comprehensible", "cornetto_synset_id": "n_a-503401", "wordnet_id": "a-00532892", "pos": "JJ", "sense": "capable of being comprehended or understood", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "concavo-convex": { "form": "concavo-convex", "cornetto_synset_id": "d_a-9198", "wordnet_id": "a-00536416", "pos": "JJ", "sense": "concave on one side and convex on the other with the concavity being greater than the convexity", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "conceivable": { "form": "conceivable", "cornetto_synset_id": "n_a-519143", "wordnet_id": "a-02418249", "pos": "JJ", "sense": "capable of being imagined", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "conceptional": { "form": "conceptional", "cornetto_synset_id": "n_a-532913", "wordnet_id": "a-00012071", "pos": "JJ", "sense": "being of the nature of a notion or concept", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "concise": { "form": "concise", "cornetto_synset_id": "n_a-526554", "wordnet_id": "a-00546646", "pos": "JJ", "sense": "expressing much in few words", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "concrete": { "form": "concrete", "cornetto_synset_id": "n_a-533395", "wordnet_id": "a-00013160", "pos": "JJ", "sense": "capable of being perceived by the senses", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "confident": { "form": "confident", "wordnet_id": "a-00338817", "pos": "JJ", "sense": "having or marked by confidence or assurance", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "confirmed": { "form": "confirmed", "cornetto_synset_id": "n_a-522411", "wordnet_id": "a-00347571", "pos": "JJ", "sense": "of persons", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "confused": { "form": "confused", "cornetto_synset_id": "n_a-521272", "wordnet_id": "a-00465221", "pos": "JJ", "sense": "lacking orderly continuity", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "confusing": { "form": "confusing", "wordnet_id": "a-01685706", "pos": "JJ", "sense": "causing confusion or disorientation", "polarity": "-0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.9" }, "conscious": { "form": "conscious", "cornetto_synset_id": "n_a-503988", "wordnet_id": "a-00570590", "pos": "JJ", "sense": "knowing and perceiving", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "consecrated": { "form": "consecrated", "cornetto_synset_id": "d_a-9328", "wordnet_id": "a-02054310", "pos": "JJ", "sense": "made or declared or believed to be holy", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "considerable": { "form": "considerable", "cornetto_synset_id": "d_a-9321", "wordnet_id": "a-00624026", "pos": "JJ", "sense": "large or relatively large in number or amount or extent or degree", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "consistent": { "form": "consistent", "wordnet_id": "a-01867996", "pos": "JJ", "sense": "capable of being reproduced", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "constant": { "form": "constant", "wordnet_id": "a-02506029", "pos": "JJ", "sense": "unvarying in nature", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "consummate": { "form": "consummate", "cornetto_synset_id": "n_a-533118", "wordnet_id": "a-02226979", "pos": "JJ", "sense": "having or revealing supreme mastery or skill", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "contemporary": { "form": "contemporary", "wordnet_id": "a-02378872", "pos": "JJ", "sense": "occurring in the same period of time", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "contestable": { "form": "contestable", "cornetto_synset_id": "n_a-531602", "wordnet_id": "a-00590390", "pos": "JJ", "sense": "capable of being contested", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "contingent": { "form": "contingent", "cornetto_synset_id": "n_a-508594", "wordnet_id": "a-00341933", "pos": "JJ", "sense": "uncertain because of uncontrollable circumstances", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "contrived": { "form": "contrived", "wordnet_id": "a-01797394", "pos": "JJ", "sense": "showing effects of planning or manipulation", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "controversial": { "form": "controversial", "cornetto_synset_id": "n_a-522093", "wordnet_id": "a-00601783", "pos": "JJ", "sense": "marked by or capable of arousing controversy", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "conventional": { "form": "conventional", "wordnet_id": "a-01980796", "pos": "JJ", "sense": "represented in simplified or symbolic form", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "convex": { "form": "convex", "cornetto_synset_id": "n_a-524566", "wordnet_id": "a-00537339", "pos": "JJ", "sense": "curving or bulging outward", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "convincing": { "form": "convincing", "wordnet_id": "a-00614990", "pos": "JJ", "sense": "causing one to believe the truth of something", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "cool": { "form": "cool", "cornetto_synset_id": "n_a-515498", "wordnet_id": "a-02529945", "pos": "JJ", "sense": "neither warm nor very cold", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "coriaceous": { "form": "coriaceous", "cornetto_synset_id": "n_a-530127", "wordnet_id": "a-02446070", "pos": "JJ", "sense": "resembling or made to resemble leather", "polarity": "-0.3", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "corporate": { "form": "corporate", "wordnet_id": "a-02112701", "pos": "JJ", "sense": "done by or characteristic of individuals acting together", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "corpulent": { "form": "corpulent", "cornetto_synset_id": "d_a-9231", "wordnet_id": "a-00987180", "pos": "JJ", "sense": "excessively fat", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "corrupt": { "form": "corrupt", "wordnet_id": "a-02319129", "pos": "JJ", "sense": "not straight", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "corruptible": { "form": "corruptible", "cornetto_synset_id": "n_a-520969", "wordnet_id": "a-00621207", "pos": "JJ", "sense": "capable of being corrupted", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "cosmopolitan": { "form": "cosmopolitan", "cornetto_synset_id": "n_a-534652", "wordnet_id": "a-00527188", "pos": "JJ", "sense": "of worldwide scope or applicability", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "countless": { "form": "countless", "cornetto_synset_id": "n_a-521120", "wordnet_id": "a-00301951", "pos": "JJ", "sense": "too numerous to be counted", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "courteous": { "form": "courteous", "cornetto_synset_id": "n_a-520837", "wordnet_id": "a-00641460", "pos": "JJ", "sense": "exhibiting courtesy and politeness", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "cow": { "form": "cow", "wordnet_id": "n-9972587", "pos": "NN", "sense": "a large unpleasant woman", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "reliability": "0.9" }, "cozy": { "form": "cozy", "cornetto_synset_id": "n_a-527962", "wordnet_id": "a-00477284", "pos": "JJ", "sense": "enjoying or affording comforting warmth and shelter especially in a small space", "polarity": "-0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "crafty": { "form": "crafty", "cornetto_synset_id": "n_a-520935", "wordnet_id": "a-00148078", "pos": "JJ", "sense": "marked by skill in deception", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "crap": { "form": "crap", "wordnet_id": "n-14854581", "pos": "NN", "sense": "obscene terms for feces", "polarity": "-0.8", "subjectivity": "0.8", "intensity": "1.0", "label": "profanity", "confidence": "0.9" }, "crazy": { "form": "crazy", "cornetto_synset_id": "n_a-509995", "wordnet_id": "a-01836766", "pos": "JJ", "sense": "foolish", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "creative": { "form": "creative", "wordnet_id": "a-00643250", "pos": "JJ", "sense": "having the ability or power to create", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "credible": { "form": "credible", "cornetto_synset_id": "d_a-9295", "wordnet_id": "a-00644839", "pos": "JJ", "sense": "capable of being believed", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "creepy": { "form": "creepy", "wordnet_id": "a-01625760", "pos": "JJ", "sense": "annoying and unpleasant", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "criminal": { "form": "criminal", "cornetto_synset_id": "n_a-529626", "wordnet_id": "a-01402763", "pos": "JJ", "sense": "involving or being or having the nature of a crime", "polarity": "-0.2", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "crisp": { "form": "crisp", "wordnet_id": "a-02446931", "pos": "JJ", "sense": "tender and brittle", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "critical": { "form": "critical", "cornetto_synset_id": "n_a-516169", "wordnet_id": "a-00647542", "pos": "JJ", "sense": "marked by a tendency to find and call attention to errors and flaws", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "crooked": { "form": "crooked", "cornetto_synset_id": "n_a-516188", "wordnet_id": "a-02311544", "pos": "JJ", "sense": "having or marked by bends or angles", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "cross": { "form": "cross", "cornetto_synset_id": "n_a-507846", "wordnet_id": "a-01445917", "pos": "JJ", "sense": "extending or lying across", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "crucial": { "form": "crucial", "wordnet_id": "a-01487943", "pos": "JJ", "sense": "having crucial relevance", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "cruddy": { "form": "cruddy", "cornetto_synset_id": "n_a-534008", "wordnet_id": "a-00425313", "pos": "JJ", "sense": "characterized by obscenity", "polarity": "-0.9", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "crude": { "form": "crude", "cornetto_synset_id": "n_a-523583", "wordnet_id": "a-00683531", "pos": "JJ", "sense": "conspicuously and tastelessly indecent", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "cruel": { "form": "cruel", "cornetto_synset_id": "c_182", "wordnet_id": "a-01263013", "pos": "JJ", "sense": "(of persons or their actions) able or disposed to inflict pain or suffering", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "crushed": { "form": "crushed", "wordnet_id": "a-2240668", "pos": "JJ", "sense": "treated so as to have a permanently wrinkled appearance", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.9" }, "crushing": { "form": "crushing", "cornetto_synset_id": "n_a-522429", "wordnet_id": "a-00587697", "pos": "JJ", "sense": "physically or spiritually devastating", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "crying": { "form": "crying", "cornetto_synset_id": "n_a-511570", "wordnet_id": "a-00580039", "pos": "JJ", "sense": "conspicuously and outrageously bad or reprehensible", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "culinary": { "form": "culinary", "cornetto_synset_id": "n_a-506204", "wordnet_id": "a-02707659", "pos": "JJ", "sense": "of or relating to or used in cooking", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "cultural": { "form": "cultural", "cornetto_synset_id": "n_a-506208", "wordnet_id": "a-02248693", "pos": "JJ", "sense": "denoting or deriving from or distinctive of the ways of living built up by a group of people", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "cunning": { "form": "cunning", "cornetto_synset_id": "n_a-530216", "wordnet_id": "a-00167278", "pos": "JJ", "sense": "attractive especially by means of smallness or prettiness or quaintness", "polarity": "0.0", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "curious": { "form": "curious", "cornetto_synset_id": "n_a-520024", "wordnet_id": "a-00664449", "pos": "JJ", "sense": "eager to investigate and learn or learn more (sometimes about others' concerns)", "polarity": "-0.1", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "current": { "form": "current", "cornetto_synset_id": "n_a-510863", "wordnet_id": "a-00666058", "pos": "JJ", "sense": "occurring in or belonging to the present time", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "cursive": { "form": "cursive", "cornetto_synset_id": "n_a-506240", "wordnet_id": "a-02285035", "pos": "JJ", "sense": "having successive letter joined together", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "cushy": { "form": "cushy", "cornetto_synset_id": "n_a-532549", "wordnet_id": "a-00750054", "pos": "JJ", "sense": "not burdensome or demanding", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "cute": { "form": "cute", "wordnet_id": "a-00148642", "pos": "JJ", "sense": "obviously contrived to charm", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "cutting": { "form": "cutting", "cornetto_synset_id": "n_a-512119", "wordnet_id": "a-01374004", "pos": "JJ", "sense": "(of speech) harsh or hurtful in tone or character", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "cynical": { "form": "cynical", "cornetto_synset_id": "d_a-9220", "wordnet_id": "a-02463582", "pos": "JJ", "sense": "believing the worst of human nature and motives", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "daily": { "form": "daily", "wordnet_id": "a-01968165", "pos": "JJ", "sense": "of or belonging to or occurring every day", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "dainty": { "form": "dainty", "cornetto_synset_id": "n_a-512200", "wordnet_id": "a-02396578", "pos": "JJ", "sense": "especially pleasing to the taste", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "dangerous": { "form": "dangerous", "cornetto_synset_id": "n_a-510726", "wordnet_id": "a-02058794", "pos": "JJ", "sense": "involving or causing danger or risk", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "dark": { "form": "dark", "cornetto_synset_id": "n_a-507208", "wordnet_id": "a-00409440", "pos": "JJ", "sense": "(used of color) having a dark hue", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "dazed": { "form": "dazed", "cornetto_synset_id": "n_a-534205", "wordnet_id": "a-00875962", "pos": "JJ", "sense": "stunned or confused and slow to react (as from blows or drunkenness or exhaustion)", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "dazzling": { "form": "dazzling", "wordnet_id": "a-01283787", "pos": "JJ", "sense": "amazingly impressive", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "dead": { "form": "dead", "cornetto_synset_id": "d_a-9236", "wordnet_id": "a-00095280", "pos": "JJ", "sense": "no longer having or seeming to have or expecting to have life", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "deadly": { "form": "deadly", "wordnet_id": "a-02449952", "pos": "JJ", "sense": "extremely poisonous or injurious", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "deadpan": { "form": "deadpan", "cornetto_synset_id": "n_a-516876", "wordnet_id": "a-00501313", "pos": "JJ", "sense": "deliberately impassive in manner", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "debauched": { "form": "debauched", "cornetto_synset_id": "n_a-523199", "wordnet_id": "a-01549568", "pos": "JJ", "sense": "unrestrained by convention or morality", "polarity": "-0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "decent": { "form": "decent", "wordnet_id": "a-02336109", "pos": "JJ", "sense": "sufficient for the purpose", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "decreased": { "form": "decreased", "cornetto_synset_id": "n_a-503624", "wordnet_id": "a-00881735", "pos": "JJ", "sense": "made less in size or amount or degree", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "deep": { "form": "deep", "cornetto_synset_id": "n_a-506859", "wordnet_id": "a-02561391", "pos": "JJ", "sense": "extending relatively far inward", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "defecates": { "form": "defecates", "wordnet_id": "", "pos": "VBZ", "sense": "", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "defenseless": { "form": "defenseless", "cornetto_synset_id": "n_a-534459", "wordnet_id": "a-00143376", "pos": "JJ", "sense": "lacking weapons for self-defense", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "deficient": { "form": "deficient", "cornetto_synset_id": "n_a-521653", "wordnet_id": "a-02297409", "pos": "JJ", "sense": "falling short of some prescribed norm", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "definite": { "form": "definite", "wordnet_id": "a-00700451", "pos": "JJ", "sense": "precise", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "definitely": { "form": "definitely", "wordnet_id": "r-00036935", "pos": "RB", "sense": "without question and beyond doubt", "polarity": "0.0", "subjectivity": "1.0", "intensity": "2.0", "confidence": "0.9" }, "deft": { "form": "deft", "cornetto_synset_id": "n_a-511953", "wordnet_id": "a-00062367", "pos": "JJ", "sense": "skillful in physical movements", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "delicate": { "form": "delicate", "cornetto_synset_id": "n_a-511757", "wordnet_id": "a-00746994", "pos": "JJ", "sense": "difficult to handle", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "delicious": { "form": "delicious", "wordnet_id": "a-02396720", "pos": "JJ", "sense": "extremely pleasing to the sense of taste", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "delighted": { "form": "delighted", "wordnet_id": "a-01805730", "pos": "JJ", "sense": "greatly pleased", "polarity": "0.7", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.9" }, "delightful": { "form": "delightful", "cornetto_synset_id": "n_a-525760", "wordnet_id": "a-01807964", "pos": "JJ", "sense": "greatly pleasing or entertaining", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "deluxe": { "form": "deluxe", "cornetto_synset_id": "d_a-9393", "wordnet_id": "a-00850053", "pos": "JJ", "sense": "elegant and sumptuous", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "denominational": { "form": "denominational", "cornetto_synset_id": "n_a-505556", "wordnet_id": "a-02710825", "pos": "JJ", "sense": "relating to or characteristic of a particular religious denomination", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "deplorable": { "form": "deplorable", "cornetto_synset_id": "n_a-507607", "wordnet_id": "a-01126841", "pos": "JJ", "sense": "bad", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "depress": { "form": "depress", "wordnet_id": "v-225438", "pos": "VB", "sense": "lessen the activity or force of", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "depressing": { "form": "depressing", "cornetto_synset_id": "n_a-528326", "wordnet_id": "a-00364479", "pos": "JJ", "sense": "causing sad feelings of gloom and inadequacy", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "deserving": { "form": "deserving", "cornetto_synset_id": "n_a-534093", "wordnet_id": "a-02586206", "pos": "JJ", "sense": "worthy of being treated in a particular way", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "desperate": { "form": "desperate", "cornetto_synset_id": "d_a-9340", "wordnet_id": "a-00263463", "pos": "JJ", "sense": "showing extreme courage", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "destroy": { "form": "destroy", "wordnet_id": "v-1619929", "pos": "VB", "sense": "do away with, cause the destruction or undoing of", "polarity": "-0.2", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "destroying": { "form": "destroying", "wordnet_id": "", "pos": "VB", "polarity": "-0.2", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "destructive": { "form": "destructive", "cornetto_synset_id": "n_a-520118", "wordnet_id": "a-00586183", "pos": "JJ", "sense": "causing destruction or much damage", "polarity": "-0.6", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "detailed": { "form": "detailed", "cornetto_synset_id": "n_a-509831", "wordnet_id": "a-00310433", "pos": "JJ", "sense": "developed or executed with care and in minute detail", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "devastating": { "form": "devastating", "wordnet_id": "a-01995047", "pos": "JJ", "sense": "making light of", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "developed": { "form": "developed", "cornetto_synset_id": "n_a-521523", "wordnet_id": "a-00741867", "pos": "JJ", "sense": "being changed over time so as to be e.g. stronger or more complete or more useful", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "devoid": { "form": "devoid", "wordnet_id": "", "pos": "", "sense": "", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "dextral": { "form": "dextral", "cornetto_synset_id": "d_a-9501", "wordnet_id": "a-00742879", "pos": "JJ", "sense": "of or on the right", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "dialectal": { "form": "dialectal", "cornetto_synset_id": "n_a-506784", "wordnet_id": "a-03004561", "pos": "JJ", "sense": "belonging to or characteristic of a dialect", "polarity": "-0.2", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "diaphanous": { "form": "diaphanous", "cornetto_synset_id": "n_a-509141", "wordnet_id": "a-02413390", "pos": "JJ", "sense": "so thin as to transmit light", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "didactic": { "form": "didactic", "cornetto_synset_id": "n_a-503950", "wordnet_id": "a-01324131", "pos": "JJ", "sense": "instructive (especially excessively)", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "different": { "form": "different", "wordnet_id": "a-02070342", "pos": "JJ", "sense": "distinct or separate", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "difficult": { "form": "difficult", "wordnet_id": "a-01475282", "pos": "JJ", "sense": "hard to control", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "diffident": { "form": "diffident", "cornetto_synset_id": "n_a-532538", "wordnet_id": "a-00339941", "pos": "JJ", "sense": "lacking self-confidence", "polarity": "-0.2", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "digital": { "form": "digital", "cornetto_synset_id": "n_a-506928", "wordnet_id": "a-02713096", "pos": "JJ", "sense": "relating to or performed with the fingers", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "dim": { "form": "dim", "cornetto_synset_id": "n_a-535267", "wordnet_id": "a-00275290", "pos": "JJ", "sense": "lacking in light", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "dim-witted": { "form": "dim-witted", "cornetto_synset_id": "c_579", "wordnet_id": "a-01841390", "pos": "JJ", "sense": "lacking mental capacity and subtlety", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "direct": { "form": "direct", "cornetto_synset_id": "n_a-517075", "wordnet_id": "a-00914808", "pos": "JJ", "sense": "in precisely the same words used by a writer or speaker", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "dirty": { "form": "dirty", "cornetto_synset_id": "d_a-9604", "wordnet_id": "a-00419289", "pos": "JJ", "sense": "soiled or likely to soil with dirt or grime", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "disabled": { "form": "disabled", "cornetto_synset_id": "n_a-509936", "wordnet_id": "a-01019283", "pos": "JJ", "sense": "incapable of functioning as a consequence of injury or illness", "polarity": "-0.2", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "disappointed": { "form": "disappointed", "wordnet_id": "a-02333976", "pos": "JJ", "sense": "disappointingly unsuccessful", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "disappointing": { "form": "disappointing", "cornetto_synset_id": "n_a-520738", "wordnet_id": "a-02082611", "pos": "JJ", "sense": "not up to expectations", "polarity": "-0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.9" }, "disappointment": { "form": "disappointment", "wordnet_id": "n-7540602", "pos": "NN", "sense": "a feeling of dissatisfaction that results when your expectations are not realized", "polarity": "-0.6", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.9" }, "disastrous": { "form": "disastrous", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.7", "subjectivity": "0.8", "intensity": "1.0", "reliability": "0.9" }, "disbelieving": { "form": "disbelieving", "cornetto_synset_id": "n_a-526640", "wordnet_id": "a-00647247", "pos": "JJ", "sense": "denying or questioning the tenets of especially a religion", "polarity": "-0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "discourteous": { "form": "discourteous", "cornetto_synset_id": "n_a-521675", "wordnet_id": "a-00640283", "pos": "JJ", "sense": "showing no courtesy", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "diseased": { "form": "diseased", "cornetto_synset_id": "n_a-535644", "wordnet_id": "a-01176246", "pos": "JJ", "sense": "caused by or altered by or manifesting disease or pathology", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "disgusted": { "form": "disgusted", "wordnet_id": "a-1806677", "pos": "JJ", "sense": "having a strong distaste from surfeit", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "disgusting": { "form": "disgusting", "wordnet_id": "a-01625893", "pos": "JJ", "sense": "highly offensive", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "dishonest": { "form": "dishonest", "wordnet_id": "a-1222884", "pos": "JJ", "sense": "deceptive or fraudulent", "polarity": "-0.3", "subjectivity": "0.5", "intensity": "1.0", "reliability": "0.9" }, "disliked": { "form": "disliked", "wordnet_id": "a-1461455", "pos": "JJ", "sense": "regarded with aversion", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.9" }, "dispossessed": { "form": "dispossessed", "cornetto_synset_id": "n_a-506356", "wordnet_id": "a-01050603", "pos": "JJ", "sense": "physically or spiritually homeless or deprived of security", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "distant": { "form": "distant", "cornetto_synset_id": "n_a-532249", "wordnet_id": "a-00450606", "pos": "JJ", "sense": "far apart in relevance or relationship or kinship ", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "distasteful": { "form": "distasteful", "wordnet_id": "a-1716971", "pos": "JJ", "sense": "not pleasing in odor or taste", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "reliability": "0.9" }, "distinct": { "form": "distinct", "wordnet_id": "a-02110778", "pos": "JJ", "sense": "constituting a separate entity or part", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "distraught": { "form": "distraught", "cornetto_synset_id": "n_a-534204", "wordnet_id": "a-00085870", "pos": "JJ", "sense": "deeply agitated especially from emotion", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "disturbing": { "form": "disturbing", "wordnet_id": "a-01189386", "pos": "JJ", "sense": "causing distress or worry or anxiety", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.9" }, "diurnal": { "form": "diurnal", "cornetto_synset_id": "n_a-506313", "wordnet_id": "a-01968033", "pos": "JJ", "sense": "having a daily cycle or occurring every day", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "documentary": { "form": "documentary", "wordnet_id": "a-01934026", "pos": "JJ", "sense": "emphasizing or expressing things as perceived without distortion of personal feelings, insertion of fictional matter, or interpretation", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "domestic": { "form": "domestic", "cornetto_synset_id": "n_a-513054", "wordnet_id": "a-01036754", "pos": "JJ", "sense": "produced in a particular country", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "done with": { "form": "done with", "cornetto_synset_id": "c_586", "wordnet_id": "a-01003822", "pos": "JJ", "sense": "having no further concern with", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "double": { "form": "double", "wordnet_id": "a-02220308", "pos": "JJ", "sense": "used of flowers having more than the usual number of petals in crowded or overlapping arrangements", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "doubtful": { "form": "doubtful", "cornetto_synset_id": "d_a-9434", "wordnet_id": "a-00338013", "pos": "JJ", "sense": "fraught with uncertainty or doubt", "polarity": "-0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "dowdy": { "form": "dowdy", "cornetto_synset_id": "n_a-531402", "wordnet_id": "a-00974519", "pos": "JJ", "sense": "primly out of date", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "down": { "form": "down", "wordnet_id": "a-02491961", "pos": "JJ", "sense": "being or moving lower in position or less in some value", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.9" }, "drag": { "form": "drag", "wordnet_id": "v-783689", "pos": "VB", "sense": "persuade to come away from something attractive or interesting", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "dramatic": { "form": "dramatic", "cornetto_synset_id": "n_a-522888", "wordnet_id": "a-00794825", "pos": "JJ", "sense": "suitable to or characteristic of drama", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "dreadful": { "form": "dreadful", "wordnet_id": "a-01803247", "pos": "JJ", "sense": "very unpleasant", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "dried": { "form": "dried", "cornetto_synset_id": "n_a-531691", "wordnet_id": "a-01072382", "pos": "JJ", "sense": "preserved by removing natural moisture", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "drowned": { "form": "drowned", "wordnet_id": "", "pos": "VBN", "sense": "", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "reliability": "0.9" }, "drunk": { "form": "drunk", "wordnet_id": "a-00920260", "pos": "JJ", "sense": "as if under the influence of alcohol", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "dry": { "form": "dry", "cornetto_synset_id": "n_a-507618", "wordnet_id": "a-01266092", "pos": "JJ", "sense": "humorously sarcastic or mocking", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "dudsville": { "form": "dudsville", "wordnet_id": "", "pos": "NNP", "sense": "", "polarity": "-0.2", "subjectivity": "0.7", "intensity": "1.0", "reliability": "0.9" }, "due": { "form": "due", "wordnet_id": "a-00929916", "pos": "JJ", "sense": "scheduled to arrive", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "duh": { "form": "duh", "wordnet_id": "", "pos": "UH", "sense": "", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "duhhh": { "form": "duhhh", "wordnet_id": "", "pos": "UH", "sense": "", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "duhhhh": { "form": "duhhhh", "wordnet_id": "", "pos": "UH", "sense": "", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "duuuh": { "form": "duuuh", "wordnet_id": "", "pos": "UH", "sense": "", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "dull": { "form": "dull", "wordnet_id": "a-02107634", "pos": "JJ", "sense": "blunted in responsiveness or sensibility", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "dulls": { "form": "dulls", "wordnet_id": "", "pos": "VBZ", "sense": "", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "reliability": "0.9" }, "dumb": { "form": "dumb", "wordnet_id": "a-00440579", "pos": "JJ", "sense": "slow to learn or understand", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "dusty": { "form": "dusty", "cornetto_synset_id": "n_a-529401", "wordnet_id": "a-01696346", "pos": "JJ", "sense": "covered with a layer of dust", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "dynamic": { "form": "dynamic", "wordnet_id": "a-02979878", "pos": "JJ", "sense": "of or relating to dynamics", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "earlier": { "form": "earlier", "wordnet_id": "a-00814611", "pos": "JJ", "sense": "(comparative and superlative of 'early') more early than", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "early": { "form": "early", "cornetto_synset_id": "n_a-533928", "wordnet_id": "a-00812952", "pos": "JJ", "sense": "at or near the beginning of a period of time or course of events or before the usual or expected time", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "easy": { "form": "easy", "cornetto_synset_id": "n_a-533319", "wordnet_id": "a-00749230", "pos": "JJ", "sense": "posing no difficulty", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "eccentric": { "form": "eccentric", "cornetto_synset_id": "n_a-531732", "wordnet_id": "a-00608791", "pos": "JJ", "sense": "conspicuously or grossly unconventional or unusual", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "ecological": { "form": "ecological", "cornetto_synset_id": "n_a-518890", "wordnet_id": "a-02906778", "pos": "JJ", "sense": "characterized by the interdependence of living organisms in an environment", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "economic": { "form": "economic", "wordnet_id": "a-02716739", "pos": "JJ", "sense": "of or relating to an economy, the system of production and management of material wealth", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "economical": { "form": "economical", "cornetto_synset_id": "d_a-9525", "wordnet_id": "a-02421364", "pos": "JJ", "sense": "avoiding waste", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "edgy": { "form": "edgy", "cornetto_synset_id": "n_a-535556", "wordnet_id": "a-02406370", "pos": "JJ", "sense": "being in a tense state", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "educational": { "form": "educational", "wordnet_id": "a-02946221", "pos": "JJ", "sense": "relating to the process of education", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "eerie": { "form": "eerie", "wordnet_id": "a-01575299", "pos": "JJ", "sense": "suggestive of the supernatural", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "effective": { "form": "effective", "cornetto_synset_id": "n_a-507125", "wordnet_id": "a-00834198", "pos": "JJ", "sense": "producing or capable of producing an intended result or having a striking effect", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "effing": { "form": "effing", "wordnet_id": "", "pos": "JJ", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.9" }, "egoistic": { "form": "egoistic", "cornetto_synset_id": "n_a-508087", "wordnet_id": "a-00101800", "pos": "JJ", "sense": "limited to or caring only about yourself and your own needs", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "elaborate": { "form": "elaborate", "wordnet_id": "a-01795933", "pos": "JJ", "sense": "marked by complexity and richness of detail", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "elect": { "form": "elect", "cornetto_synset_id": "n_a-531698", "wordnet_id": "a-02123579", "pos": "JJ", "sense": "selected as the best", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "elegant": { "form": "elegant", "wordnet_id": "a-01142069", "pos": "JJ", "sense": "suggesting taste, ease, and wealth", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "elementary": { "form": "elementary", "cornetto_synset_id": "d_a-9254", "wordnet_id": "a-00750296", "pos": "JJ", "sense": "easy and not involved or complicated", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "emotional": { "form": "emotional", "cornetto_synset_id": "n_a-508280", "wordnet_id": "a-00853776", "pos": "JJ", "sense": "of more than usual emotion", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "empirical": { "form": "empirical", "cornetto_synset_id": "n_a-524456", "wordnet_id": "a-00858917", "pos": "JJ", "sense": "derived from experiment and observation rather than theory", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "empty": { "form": "empty", "cornetto_synset_id": "n_a-520215", "wordnet_id": "a-01269319", "pos": "JJ", "sense": "needing nourishment", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "endearing": { "form": "endearing", "wordnet_id": "a-01459755", "pos": "JJ", "sense": "lovable especially in a childlike or naive way", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "endless": { "form": "endless", "wordnet_id": "a-01439784", "pos": "JJ", "sense": "tiresomely long", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "energetic": { "form": "energetic", "wordnet_id": "a-00885099", "pos": "JJ", "sense": "working hard to promote an enterprise", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "engaging": { "form": "engaging", "cornetto_synset_id": "n_a-523357", "wordnet_id": "a-00167671", "pos": "JJ", "sense": "attracting or delighting", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.9" }, "english": { "form": "english", "wordnet_id": "a-03003616", "pos": "JJ", "sense": "of or relating to the English language", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "engrossing": { "form": "engrossing", "wordnet_id": "", "pos": "JJ", "polarity": "0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.9" }, "enigmatic": { "form": "enigmatic", "cornetto_synset_id": "d_a-9495", "wordnet_id": "a-00102930", "pos": "JJ", "sense": "resembling an oracle in obscurity of thought", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "enjoy": { "form": "enjoy", "wordnet_id": "v-1820302", "pos": "VB", "sense": "derive or receive pleasure from", "polarity": "0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "enjoyable": { "form": "enjoyable", "wordnet_id": "a-01801029", "pos": "JJ", "sense": "affording satisfaction or pleasure", "polarity": "0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.9" }, "enjoyed": { "form": "enjoyed", "wordnet_id": "", "pos": "VB", "polarity": "0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.9" }, "enjoying": { "form": "enjoying", "wordnet_id": "", "pos": "VB", "polarity": "0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.9" }, "enlightening": { "form": "enlightening", "cornetto_synset_id": "n_a-516919", "wordnet_id": "a-01325777", "pos": "JJ", "sense": "tending to increase knowledge or dissipate ignorance", "polarity": "0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "enormous": { "form": "enormous", "cornetto_synset_id": "c_267", "wordnet_id": "a-01385255", "pos": "JJ", "sense": "extraordinarily large in size or extent or amount or power or degree", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "enough": { "form": "enough", "wordnet_id": "a-02336109", "pos": "JJ", "sense": "sufficient for the purpose", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "entertaining": { "form": "entertaining", "wordnet_id": "a-01344344", "pos": "JJ", "sense": "agreeably diverting", "polarity": "0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.9" }, "enthusiastic": { "form": "enthusiastic", "cornetto_synset_id": "d_a-9262", "wordnet_id": "a-00885695", "pos": "JJ", "sense": "having or showing great excitement and interest", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "entire": { "form": "entire", "wordnet_id": "a-02244890", "pos": "JJ", "sense": "(of leaves or petals) having a smooth edge", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "epic": { "form": "epic", "cornetto_synset_id": "n_a-508404", "wordnet_id": "a-03015589", "pos": "JJ", "sense": "constituting or having to do with or suggestive of a literary epic", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "equal": { "form": "equal", "wordnet_id": "a-00889831", "pos": "JJ", "sense": "having the same quantity, value, or measure as another", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "erotic": { "form": "erotic", "cornetto_synset_id": "n_a-522082", "wordnet_id": "a-02132080", "pos": "JJ", "sense": "giving sexual pleasure", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "erroneous": { "form": "erroneous", "cornetto_synset_id": "n_a-509314", "wordnet_id": "a-00632949", "pos": "JJ", "sense": "containing or characterized by error", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "erstwhile": { "form": "erstwhile", "cornetto_synset_id": "n_a-522211", "wordnet_id": "a-01729566", "pos": "JJ", "sense": "belonging to some prior time", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "erudite": { "form": "erudite", "cornetto_synset_id": "n_a-510118", "wordnet_id": "a-02084358", "pos": "JJ", "sense": "having or showing profound knowledge", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "especially": { "form": "especially", "wordnet_id": "r-00084223", "pos": "RB", "sense": "to a distinctly greater extent or degree than is common", "polarity": "0.0", "subjectivity": "1.0", "intensity": "2.0", "confidence": "0.9" }, "essential": { "form": "essential", "cornetto_synset_id": "d_a-9349", "wordnet_id": "a-00900616", "pos": "JJ", "sense": "basic and fundamental", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "ethical": { "form": "ethical", "cornetto_synset_id": "n_a-535368", "wordnet_id": "a-00905386", "pos": "JJ", "sense": "conforming to accepted standards of social or professional behavior", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "european": { "form": "european", "wordnet_id": "a-02968325", "pos": "JJ", "sense": "of or relating to or characteristic of Europe or the people of Europe", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "everyday": { "form": "everyday", "cornetto_synset_id": "n_a-506314", "wordnet_id": "a-01674242", "pos": "JJ", "sense": "found in the ordinary course of events", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "evident": { "form": "evident", "cornetto_synset_id": "n_a-534100", "wordnet_id": "a-01287486", "pos": "JJ", "sense": "capable of being seen or noticed", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "evil": { "form": "evil", "wordnet_id": "a-02514099", "pos": "JJ", "sense": "having the nature of vice", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "exact": { "form": "exact", "wordnet_id": "a-00914421", "pos": "JJ", "sense": "marked by strict and particular and complete accordance with fact", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "exaggerated": { "form": "exaggerated", "wordnet_id": "a-01533806", "pos": "JJ", "sense": "represented as greater than is true or reasonable", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "excellent": { "form": "excellent", "cornetto_synset_id": "n_a-513687", "wordnet_id": "a-02343110", "pos": "JJ", "sense": "very good", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "exceptional": { "form": "exceptional", "wordnet_id": "a-01676026", "pos": "JJ", "sense": "far beyond what is usual in magnitude or degree", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "excessive": { "form": "excessive", "wordnet_id": "a-02000968", "pos": "JJ", "sense": "unrestrained, especially with regard to feelings", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "excited": { "form": "excited", "wordnet_id": "a-02390724", "pos": "JJ", "sense": "marked by uncontrolled excitement or emotion", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "exciting": { "form": "exciting", "cornetto_synset_id": "n_a-528399", "wordnet_id": "a-00921014", "pos": "JJ", "sense": "creating or arousing excitement", "polarity": "0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.9" }, "excruciatingly": { "form": "excruciatingly", "wordnet_id": "", "pos": "RB", "sense": "", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.3", "reliability": "0.9" }, "excuse": { "form": "excuse", "wordnet_id": "v-893878", "pos": "VB", "sense": "grant exemption or release to", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "exhausted": { "form": "exhausted", "cornetto_synset_id": "n_a-531701", "wordnet_id": "a-02433451", "pos": "JJ", "sense": "drained of energy or effectiveness", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "exhausting": { "form": "exhausting", "wordnet_id": "a-837249", "pos": "JJ", "sense": "producing exhaustion", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "reliability": "0.9" }, "exhilarating": { "form": "exhilarating", "wordnet_id": "a-1357342", "pos": "JJ", "sense": "making lively and cheerful", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.9" }, "exotic": { "form": "exotic", "wordnet_id": "a-01035007", "pos": "JJ", "sense": "being or from or characteristic of another place or part of the world", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "expected": { "form": "expected", "wordnet_id": "a-929567", "pos": "JJ", "sense": "considered likely or probable to happen or arrive", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.9" }, "expensive": { "form": "expensive", "cornetto_synset_id": "n_a-507824", "wordnet_id": "a-00933154", "pos": "JJ", "sense": "high in price or charging high prices", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "experienced": { "form": "experienced", "cornetto_synset_id": "n_a-508489", "wordnet_id": "a-00935500", "pos": "JJ", "sense": "having experience", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "experimental": { "form": "experimental", "cornetto_synset_id": "n_a-508670", "wordnet_id": "a-00860127", "pos": "JJ", "sense": "of the nature of or undergoing an experiment", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "exploitative": { "form": "exploitative", "wordnet_id": "a-1867768", "pos": "JJ", "sense": "tending to exploit or make use of", "polarity": "-0.3", "subjectivity": "0.3", "intensity": "1.0", "reliability": "0.9" }, "expressive": { "form": "expressive", "cornetto_synset_id": "n_a-508691", "wordnet_id": "a-00497148", "pos": "JJ", "sense": "characterized by expression", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "exquisite": { "form": "exquisite", "cornetto_synset_id": "n_a-503339", "wordnet_id": "a-00218837", "pos": "JJ", "sense": "of extreme beauty", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "extensive": { "form": "extensive", "wordnet_id": "a-01514598", "pos": "JJ", "sense": "of agriculture", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "external": { "form": "external", "cornetto_synset_id": "d_a-9351", "wordnet_id": "a-01037885", "pos": "JJ", "sense": "from or between other countries", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "extinct": { "form": "extinct", "cornetto_synset_id": "n_a-518983", "wordnet_id": "a-00100213", "pos": "JJ", "sense": "being out or having grown cold", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "extra": { "form": "extra", "cornetto_synset_id": "n_a-502245", "wordnet_id": "a-00048858", "pos": "JJ", "sense": "further or added", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "extraordinary": { "form": "extraordinary", "wordnet_id": "a-01675190", "pos": "JJ", "sense": "beyond what is ordinary or usual", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "extreme": { "form": "extreme", "wordnet_id": "a-01535082", "pos": "JJ", "sense": "beyond a norm in views or actions", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "exuberant": { "form": "exuberant", "cornetto_synset_id": "n_a-531650", "wordnet_id": "a-00015247", "pos": "JJ", "sense": "produced or growing in extreme abundance", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "fabled": { "form": "fabled", "cornetto_synset_id": "n_a-516946", "wordnet_id": "a-01935744", "pos": "JJ", "sense": "celebrated in fable or legend", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "fabricated": { "form": "fabricated", "cornetto_synset_id": "n_a-532388", "wordnet_id": "a-01935935", "pos": "JJ", "sense": "formed or conceived by the imagination", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "fabulous": { "form": "fabulous", "cornetto_synset_id": "n_a-516947", "wordnet_id": "a-01936184", "pos": "JJ", "sense": "based on or told of in traditional stories", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "facial": { "form": "facial", "wordnet_id": "a-02877704", "pos": "JJ", "sense": "of or concerning the face", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "fail": { "form": "fail", "wordnet_id": "v-560247", "pos": "VB", "sense": "prove insufficient", "polarity": "-0.5", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.9" }, "failed": { "form": "failed", "wordnet_id": "", "pos": "VB", "polarity": "-0.5", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.9" }, "fails": { "form": "fails", "wordnet_id": "", "pos": "VB", "polarity": "-0.5", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.9" }, "failure": { "form": "failure", "wordnet_id": "n-7317764", "pos": "NN", "sense": "an event that does not accomplish its intended purpose", "polarity": "-0.3", "subjectivity": "0.3", "intensity": "1.0", "reliability": "0.9" }, "faint": { "form": "faint", "cornetto_synset_id": "c_533", "wordnet_id": "a-02325097", "pos": "JJ", "sense": "lacking strength or vigor", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "fair": { "form": "fair", "cornetto_synset_id": "n_a-525249", "wordnet_id": "a-00956131", "pos": "JJ", "sense": "free from favoritism or self-interest or bias or deception", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "fake": { "form": "fake", "wordnet_id": "a-01573238", "pos": "JJ", "sense": "not genuine or real", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "false": { "form": "false", "cornetto_synset_id": "n_a-521254", "wordnet_id": "a-02461723", "pos": "JJ", "sense": "not in accordance with the fact or reality or actuality", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "familiar": { "form": "familiar", "wordnet_id": "a-01307067", "pos": "JJ", "sense": "(usually followed by 'with') well informed about or knowing thoroughly", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "famous": { "form": "famous", "cornetto_synset_id": "n_a-512859", "wordnet_id": "a-01375831", "pos": "JJ", "sense": "widely known and esteemed", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "fanatic": { "form": "fanatic", "cornetto_synset_id": "n_a-512728", "wordnet_id": "a-01726859", "pos": "JJ", "sense": "marked by excessive enthusiasm for and intense devotion to a cause or idea", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "fantastic": { "form": "fantastic", "wordnet_id": "a-01942732", "pos": "JJ", "sense": "fanciful and unrealistic", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "far": { "form": "far", "cornetto_synset_id": "n_a-508718", "wordnet_id": "a-00442361", "pos": "JJ", "sense": "located at a great distance in time or space or degree", "polarity": "0.1", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "far-out": { "form": "far-out", "cornetto_synset_id": "n_a-504364", "wordnet_id": "a-00609564", "pos": "JJ", "sense": "informal terms", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "farce": { "form": "farce", "wordnet_id": "n-7016250", "pos": "NN", "sense": "a comedy characterized by broad satire and improbable situations", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "reliability": "0.9" }, "farcical": { "form": "farcical", "wordnet_id": "a-1266397", "pos": "JJ", "sense": "broadly or extravagantly humorous", "polarity": "-0.4", "subjectivity": "0.4", "intensity": "1.0", "reliability": "0.9" }, "farthermost": { "form": "farthermost", "cornetto_synset_id": "n_a-531671", "wordnet_id": "a-00443618", "pos": "JJ", "sense": "(comparatives of 'far') most remote in space or time or order", "polarity": "0.0", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "fascinating": { "form": "fascinating", "cornetto_synset_id": "n_a-521695", "wordnet_id": "a-00166753", "pos": "JJ", "sense": "capturing interest as if by a spell", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.9" }, "fast": { "form": "fast", "cornetto_synset_id": "n_a-528140", "wordnet_id": "a-00976508", "pos": "JJ", "sense": "acting or moving or capable of acting or moving quickly", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "fatty": { "form": "fatty", "cornetto_synset_id": "n_a-532927", "wordnet_id": "a-00991838", "pos": "JJ", "sense": "containing or composed of fat", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "faultless": { "form": "faultless", "cornetto_synset_id": "n_a-533543", "wordnet_id": "a-01750847", "pos": "JJ", "sense": "without fault or error", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "favored": { "form": "favored", "cornetto_synset_id": "d_a-9268", "wordnet_id": "a-01462882", "pos": "JJ", "sense": "preferred above all others and treated with partiality", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "favorite": { "form": "favorite", "wordnet_id": "a-01816376", "pos": "JJ", "sense": "appealing to the general public", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "fearful": { "form": "fearful", "cornetto_synset_id": "n_a-502271", "wordnet_id": "a-00079485", "pos": "JJ", "sense": "experiencing or showing fear", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "feeble": { "form": "feeble", "cornetto_synset_id": "n_a-527852", "wordnet_id": "a-01827766", "pos": "JJ", "sense": "lacking strength", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "felicitous": { "form": "felicitous", "cornetto_synset_id": "d_a-9296", "wordnet_id": "a-01048406", "pos": "JJ", "sense": "marked by good fortune", "polarity": "0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "female": { "form": "female", "wordnet_id": "a-01484451", "pos": "JJ", "sense": "characteristic of or peculiar to a woman", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "feverish": { "form": "feverish", "cornetto_synset_id": "n_a-511750", "wordnet_id": "a-00086210", "pos": "JJ", "sense": "marked by intense agitation or emotion", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "few": { "form": "few", "wordnet_id": "a-01552885", "pos": "JJ", "sense": "a quantifier that can be used with count nouns and is often preceded by 'a'", "polarity": "-0.2", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.9" }, "fictional": { "form": "fictional", "wordnet_id": "a-02727706", "pos": "JJ", "sense": "related to or involving literary fiction", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "fiendish": { "form": "fiendish", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.6", "subjectivity": "0.7", "intensity": "1.0", "reliability": "0.9" }, "fiftieth": { "form": "fiftieth", "cornetto_synset_id": "n_a-533067", "wordnet_id": "a-02208145", "pos": "JJ", "sense": "the ordinal number of fifty in counting order", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "filled": { "form": "filled", "cornetto_synset_id": "n_a-533467", "wordnet_id": "a-01084644", "pos": "JJ", "sense": "(usually followed by 'with' or used as a combining form) generously supplied with", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "filthy": { "form": "filthy", "cornetto_synset_id": "n_a-521551", "wordnet_id": "a-00421590", "pos": "JJ", "sense": "disgustingly dirty", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "final": { "form": "final", "wordnet_id": "a-01010271", "pos": "JJ", "sense": "occurring at or forming an end or termination", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "financial": { "form": "financial", "cornetto_synset_id": "n_a-509070", "wordnet_id": "a-02847894", "pos": "JJ", "sense": "involving financial matters", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "fine": { "form": "fine", "wordnet_id": "a-02414031", "pos": "JJ", "sense": "thin in thickness or diameter", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "fine-looking": { "form": "fine-looking", "cornetto_synset_id": "n_a-515377", "wordnet_id": "a-00218950", "pos": "JJ", "sense": "pleasing in appearance especially by reason of conformity to ideals of form and proportion", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "firm": { "form": "firm", "cornetto_synset_id": "n_a-520774", "wordnet_id": "a-01990653", "pos": "JJ", "sense": "marked by firm determination or resolution", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "first": { "form": "first", "wordnet_id": "a-02202047", "pos": "JJ", "sense": "indicating the beginning unit in a series", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "first-string": { "form": "first-string", "cornetto_synset_id": "n_a-519872", "wordnet_id": "a-01959711", "pos": "JJ", "sense": "of members of a team", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "fit": { "form": "fit", "cornetto_synset_id": "c_709", "wordnet_id": "a-01017161", "pos": "JJ", "sense": "physically and mentally sound or healthy", "polarity": "0.4", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "fitting": { "form": "fitting", "wordnet_id": "a-01879667", "pos": "JJ", "sense": "in harmony with the spirit of particular persons or occasion", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "fixed": { "form": "fixed", "cornetto_synset_id": "d_a-9562", "wordnet_id": "a-00740217", "pos": "JJ", "sense": "(of a number) having a fixed and unchanging value", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "flashy": { "form": "flashy", "cornetto_synset_id": "n_a-521403", "wordnet_id": "a-00407420", "pos": "JJ", "sense": "(used especially of clothes) marked by conspicuous display", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "flat": { "form": "flat", "cornetto_synset_id": "n_a-519240", "wordnet_id": "a-01541828", "pos": "JJ", "sense": "sounded or spoken in a tone unvarying in pitch", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "flawed": { "form": "flawed", "cornetto_synset_id": "n_a-521658", "wordnet_id": "a-01752553", "pos": "JJ", "sense": "having a blemish or flaw", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "flawless": { "form": "flawless", "cornetto_synset_id": "n_a-524759", "wordnet_id": "a-01751080", "pos": "JJ", "sense": "without a flaw", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "flippant": { "form": "flippant", "cornetto_synset_id": "n_a-517706", "wordnet_id": "a-02121290", "pos": "JJ", "sense": "showing inappropriate levity", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "fluff": { "form": "fluff", "wordnet_id": "n-76072", "pos": "NN", "sense": "a blunder (especially an actor's forgetting the lines)", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "reliability": "0.9" }, "fluffy": { "form": "fluffy", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "reliability": "0.9" }, "fluid": { "form": "fluid", "cornetto_synset_id": "d_a-9249", "wordnet_id": "a-02261746", "pos": "JJ", "sense": "characteristic of a fluid", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "fly": { "form": "fly", "cornetto_synset_id": "n_a-527945", "wordnet_id": "a-00092136", "pos": "JJ", "sense": "(British informal) not to be deceived or hoodwinked", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "following": { "form": "following", "cornetto_synset_id": "n_a-520887", "wordnet_id": "a-00127948", "pos": "JJ", "sense": "immediately following in time or order", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "for sure": { "form": "for sure", "cornetto_synset_id": "d_a-9623", "wordnet_id": "a-01918660", "pos": "JJ", "sense": "not open to doubt", "polarity": "0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "forced": { "form": "forced", "wordnet_id": "a-2521890", "pos": "JJ", "sense": "forced or compelled", "polarity": "-0.4", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.9" }, "forcible": { "form": "forcible", "cornetto_synset_id": "n_a-513565", "wordnet_id": "a-00842324", "pos": "JJ", "sense": "impelled by physical force especially against resistance", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "foreign": { "form": "foreign", "wordnet_id": "a-02117464", "pos": "JJ", "sense": "not belonging to that in which it is contained", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "forgetful": { "form": "forgetful", "cornetto_synset_id": "n_a-520753", "wordnet_id": "a-00165943", "pos": "JJ", "sense": "failing to keep in mind", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "forgettable": { "form": "forgettable", "wordnet_id": "a-01040239", "pos": "JJ", "sense": "easily forgotten", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "former": { "form": "former", "wordnet_id": "a-01729819", "pos": "JJ", "sense": "(used especially of persons) of the immediate past", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "formulaic": { "form": "formulaic", "cornetto_synset_id": "n_a-509257", "wordnet_id": "a-00606240", "pos": "JJ", "sense": "characterized by or in accordance with some formula", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "fortunate": { "form": "fortunate", "cornetto_synset_id": "n_a-532833", "wordnet_id": "a-00176676", "pos": "JJ", "sense": "presaging good fortune", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "fourth": { "form": "fourth", "cornetto_synset_id": "d_a-9494", "wordnet_id": "a-02202443", "pos": "JJ", "sense": "coming next after the third and just before the fifth in position or time or degree or magnitude", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "fragile": { "form": "fragile", "wordnet_id": "a-02164913", "pos": "JJ", "sense": "lacking substance or significance", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "free": { "form": "free", "cornetto_synset_id": "n_a-533873", "wordnet_id": "a-00916199", "pos": "JJ", "sense": "not literal", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "free-thinking": { "form": "free-thinking", "cornetto_synset_id": "n_a-521201", "wordnet_id": "a-00287275", "pos": "JJ", "sense": "unwilling to accept authority or dogma (especially in religion)", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "freestanding": { "form": "freestanding", "cornetto_synset_id": "n_a-502386", "wordnet_id": "a-00160768", "pos": "JJ", "sense": "standing apart", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "french": { "form": "french", "cornetto_synset_id": "d_a-9133", "wordnet_id": "a-02958392", "pos": "JJ", "sense": "of or pertaining to France or the people of France", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "frequent": { "form": "frequent", "cornetto_synset_id": "n_a-525383", "wordnet_id": "a-00486990", "pos": "JJ", "sense": "frequently encountered", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "fresh": { "form": "fresh", "cornetto_synset_id": "n_a-522170", "wordnet_id": "a-01687167", "pos": "JJ", "sense": "original and of a kind not seen before", "polarity": "0.3", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "friendly": { "form": "friendly", "wordnet_id": "a-01246801", "pos": "JJ", "sense": "inclined to help or support", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "frightening": { "form": "frightening", "cornetto_synset_id": "n_a-532685", "wordnet_id": "a-00193799", "pos": "JJ", "sense": "causing fear or dread or terror", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "frigid": { "form": "frigid", "cornetto_synset_id": "n_a-513368", "wordnet_id": "a-01258264", "pos": "JJ", "sense": "devoid of warmth and cordiality", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "fringy": { "form": "fringy", "cornetto_synset_id": "c_373", "wordnet_id": "a-00331889", "pos": "JJ", "sense": "at or constituting a border or edge", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "frostbitten": { "form": "frostbitten", "cornetto_synset_id": "n_a-513334", "wordnet_id": "a-01078673", "pos": "JJ", "sense": "injured by freezing or partial freezing", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "frustrated": { "form": "frustrated", "wordnet_id": "", "pos": "JJ", "polarity": "-0.7", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.9" }, "frustrating": { "form": "frustrating", "wordnet_id": "a-01764745", "pos": "JJ", "sense": "preventing realization or attainment of a desire", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.9" }, "frustratingly": { "form": "frustratingly", "wordnet_id": "", "pos": "RB", "sense": "", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.2", "reliability": "0.9" }, "fuck": { "form": "fuck", "wordnet_id": "n-846021", "pos": "NN", "sense": "slang for sexual intercourse", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "label": "profanity", "confidence": "0.9" }, "fucked": { "form": "fucked", "wordnet_id": "", "pos": "JJ", "polarity": "-0.6", "subjectivity": "0.7", "intensity": "1.0", "label": "profanity", "confidence": "0.9" }, "fucking": { "form": "fucking", "wordnet_id": "r-32705", "pos": "RB", "sense": "intensifier, very colloquial", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "label": "profanity", "confidence": "0.9" }, "f*cking": { "form": "f*cking", "wordnet_id": "r-32705", "pos": "RB", "sense": "intensifier, very colloquial", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "label": "profanity", "confidence": "0.9" }, "full of life": { "form": "full of life", "cornetto_synset_id": "c_384", "wordnet_id": "a-00119006", "pos": "JJ", "sense": "full of spirit", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "full": { "form": "full", "cornetto_synset_id": "d_a-9588", "wordnet_id": "a-01083157", "pos": "JJ", "sense": "containing as much or as many as is possible or normal", "polarity": "0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "full-bodied": { "form": "full-bodied", "cornetto_synset_id": "n_a-518021", "wordnet_id": "a-02397234", "pos": "JJ", "sense": "marked by richness and fullness of flavor", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "full-fledged": { "form": "full-fledged", "cornetto_synset_id": "n_a-533565", "wordnet_id": "a-00935792", "pos": "JJ", "sense": "(of persons, e.g.) having gained full status", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "full-length": { "form": "full-length", "cornetto_synset_id": "n_a-533547", "wordnet_id": "a-00005107", "pos": "JJ", "sense": "complete", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "fun": { "form": "fun", "wordnet_id": "n-429949", "pos": "NN", "sense": "activities that are enjoyable or amusing", "polarity": "0.3", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.9" }, "funny": { "form": "funny", "wordnet_id": "a-02545023", "pos": "JJ", "sense": "experiencing odd bodily sensations", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "further": { "form": "further", "wordnet_id": "a-00443988", "pos": "JJ", "sense": "more distant in especially degree", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "furtive": { "form": "furtive", "cornetto_synset_id": "n_a-532294", "wordnet_id": "a-02088974", "pos": "JJ", "sense": "marked by quiet and caution and secrecy", "polarity": "-0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "future": { "form": "future", "wordnet_id": "a-02992914", "pos": "JJ", "sense": "a verb tense or other formation referring to events or states that have not yet happened", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "game": { "form": "game", "cornetto_synset_id": "n_a-518167", "wordnet_id": "a-00263994", "pos": "JJ", "sense": "willing to face danger", "polarity": "-0.4", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "gamechanger": { "form": "gamechanger", "wordnet_id": "", "pos": "NN", "polarity": "0.3", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "gargantuan": { "form": "gargantuan", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.05", "subjectivity": "0.8", "intensity": "1.0", "reliability": "0.9" }, "gawky": { "form": "gawky", "cornetto_synset_id": "d_a-9454", "wordnet_id": "a-01140896", "pos": "JJ", "sense": "lacking grace in movement or posture", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "gay": { "form": "gay", "wordnet_id": "a-01367651", "pos": "JJ", "sense": "full of or showing high-spirited merriment", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "general": { "form": "general", "cornetto_synset_id": "d_a-9152", "wordnet_id": "a-00783840", "pos": "JJ", "sense": "not specialized or limited to one class of things", "polarity": "0.4", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "generic": { "form": "generic", "wordnet_id": "a-02734016", "pos": "JJ", "sense": "relating to or common to or descriptive of all members of a genus", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "gentle": { "form": "gentle", "cornetto_synset_id": "n_a-535265", "wordnet_id": "a-01509066", "pos": "JJ", "sense": "soft and mild", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "genuine": { "form": "genuine", "cornetto_synset_id": "d_a-9251", "wordnet_id": "a-02180277", "pos": "JJ", "sense": "not pretended", "polarity": "0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "german": { "form": "german", "cornetto_synset_id": "d_a-9129", "wordnet_id": "a-02957469", "pos": "JJ", "sense": "of or pertaining to or characteristic of Germany or its people or language", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "gettable": { "form": "gettable", "cornetto_synset_id": "n_a-532527", "wordnet_id": "a-00184363", "pos": "JJ", "sense": "capable of being obtained", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "giant": { "form": "giant", "wordnet_id": "a-01385773", "pos": "JJ", "sense": "of great mass", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "gifted": { "form": "gifted", "cornetto_synset_id": "d_a-9174", "wordnet_id": "a-01119192", "pos": "JJ", "sense": "endowed with talent or talents", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "gimmicky": { "form": "gimmicky", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.2", "subjectivity": "0.5", "intensity": "1.0", "reliability": "0.9" }, "glad": { "form": "glad", "wordnet_id": "a-02565583", "pos": "JJ", "sense": "eagerly disposed to act or to be of service", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "global": { "form": "global", "cornetto_synset_id": "n_a-523513", "wordnet_id": "a-01568684", "pos": "JJ", "sense": "involving the entire earth", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "gloom": { "form": "gloom", "wordnet_id": "n-7533257", "pos": "NN", "sense": "a feeling of melancholy apprehension", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "gluey": { "form": "gluey", "cornetto_synset_id": "n_a-523499", "wordnet_id": "a-00053691", "pos": "JJ", "sense": "having the sticky properties of an adhesive", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "godforsaken": { "form": "godforsaken", "cornetto_synset_id": "n_a-521234", "wordnet_id": "a-01243102", "pos": "JJ", "sense": "located in a dismal or remote area", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "golden": { "form": "golden", "cornetto_synset_id": "n_a-513884", "wordnet_id": "a-00177547", "pos": "JJ", "sense": "presaging or likely to bring good luck", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "good": { "form": "good", "cornetto_synset_id": "n_a-510925", "wordnet_id": "a-01166413", "pos": "JJ", "sense": "tending to promote physical well-being", "polarity": "0.7", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "goody-goody": { "form": "goody-goody", "cornetto_synset_id": "n_a-535834", "wordnet_id": "a-01130614", "pos": "JJ", "sense": "affectedly or smugly good or self-righteous", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "goofy": { "form": "goofy", "wordnet_id": "a-02571536", "pos": "JJ", "sense": "ludicrous, foolish", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "gorgeous": { "form": "gorgeous", "cornetto_synset_id": "n_a-512199", "wordnet_id": "a-00219705", "pos": "JJ", "sense": "dazzlingly beautiful", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "gory": { "form": "gory", "wordnet_id": "a-00249104", "pos": "JJ", "sense": "accompanied by bloodshed", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "grand": { "form": "grand", "wordnet_id": "a-02024928", "pos": "JJ", "sense": "rich and superior in quality", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "grandiloquent": { "form": "grandiloquent", "cornetto_synset_id": "n_a-524282", "wordnet_id": "a-01849960", "pos": "JJ", "sense": "puffed up with vanity", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "graphic": { "form": "graphic", "wordnet_id": "a-02736983", "pos": "JJ", "sense": "of or relating to the graphic arts", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "gratuitous": { "form": "gratuitous", "wordnet_id": "a-01582049", "pos": "JJ", "sense": "unnecessary and unwarranted", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "great": { "form": "great", "wordnet_id": "a-01677433", "pos": "JJ", "sense": "remarkable or out of the ordinary in degree or magnitude or effect", "polarity": "0.8", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.9" }, "greater": { "form": "greater", "cornetto_synset_id": "n_a-518433", "wordnet_id": "a-01395330", "pos": "JJ", "sense": "greater in size or importance or degree", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "greatest": { "form": "greatest", "cornetto_synset_id": "d_a-9399", "wordnet_id": "a-02343517", "pos": "JJ", "sense": "highest in quality", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "greek": { "form": "greek", "cornetto_synset_id": "d_a-9134", "wordnet_id": "a-03016202", "pos": "JJ", "sense": "of or relating to or characteristic of Greece or the Greeks or the Greek language", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "green": { "form": "green", "wordnet_id": "a-03069937", "pos": "JJ", "sense": "concerned with or supporting or in conformity with the political principles of the Green Party", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "grey": { "form": "grey", "cornetto_synset_id": "n_a-511486", "wordnet_id": "a-01645678", "pos": "JJ", "sense": "showing characteristics of age, especially having grey or white hair", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "grief": { "form": "grief", "wordnet_id": "n-7535010", "pos": "NN", "sense": "intense sorrow caused by loss of a loved one (especially by death)", "polarity": "-0.8", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.9" }, "grievous": { "form": "grievous", "cornetto_synset_id": "n_a-521480", "wordnet_id": "a-01365544", "pos": "JJ", "sense": "causing or marked by grief or anguish", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "grim": { "form": "grim", "wordnet_id": "a-02079507", "pos": "JJ", "sense": "harshly ironic or sinister", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "gripping": { "form": "gripping", "cornetto_synset_id": "n_a-501243", "wordnet_id": "a-01344171", "pos": "JJ", "sense": "capable of arousing and holding the attention", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "gritty": { "form": "gritty", "cornetto_synset_id": "n_a-535610", "wordnet_id": "a-02231502", "pos": "JJ", "sense": "composed of or covered with particles resembling meal in texture or consistency", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "gross": { "form": "gross", "cornetto_synset_id": "n_a-505096", "wordnet_id": "a-01582821", "pos": "JJ", "sense": "before any deductions", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "grotesque": { "form": "grotesque", "cornetto_synset_id": "n_a-535905", "wordnet_id": "a-00221627", "pos": "JJ", "sense": "distorted and unnatural in shape or size", "polarity": "-0.1", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "grr": { "form": "grr", "wordnet_id": "", "pos": "UH", "polarity": "-0.7", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.9" }, "grrr": { "form": "grrr", "wordnet_id": "", "pos": "UH", "polarity": "-0.7", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.9" }, "grrrr": { "form": "grrrr", "wordnet_id": "", "pos": "UH", "polarity": "-0.7", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.9" }, "grudging": { "form": "grudging", "cornetto_synset_id": "d_a-9356", "wordnet_id": "a-01113636", "pos": "JJ", "sense": "petty or reluctant in giving or spending", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "gruesome": { "form": "gruesome", "cornetto_synset_id": "n_a-521565", "wordnet_id": "a-00195684", "pos": "JJ", "sense": "shockingly repellent", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "guarded": { "form": "guarded", "cornetto_synset_id": "n_a-533736", "wordnet_id": "a-00326202", "pos": "JJ", "sense": "prudent", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "guilty": { "form": "guilty", "wordnet_id": "a-01320988", "pos": "JJ", "sense": "responsible for or chargeable with a reprehensible act", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "haha": { "form": "haha", "wordnet_id": "", "pos": "UH", "polarity": "0.2", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.9" }, "hahaha": { "form": "hahaha", "wordnet_id": "", "pos": "UH", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.9" }, "hahahaha": { "form": "hahahaha", "wordnet_id": "", "pos": "UH", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "hahahahaha": { "form": "hahahahaha", "wordnet_id": "", "pos": "UH", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.9" }, "half": { "form": "half", "wordnet_id": "a-00524496", "pos": "JJ", "sense": "partial", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "hand-held": { "form": "hand-held", "wordnet_id": "a-03149169", "pos": "JJ", "sense": "small and light enough to be operated while you hold it in your hands", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "handsome": { "form": "handsome", "cornetto_synset_id": "n_a-515377", "wordnet_id": "a-00218950", "pos": "JJ", "sense": "pleasing in appearance especially by reason of conformity to ideals of form and proportion", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "handy": { "form": "handy", "cornetto_synset_id": "n_a-520249", "wordnet_id": "a-00019731", "pos": "JJ", "sense": "easy to reach", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "haphazard": { "form": "haphazard", "cornetto_synset_id": "n_a-527969", "wordnet_id": "a-00312519", "pos": "JJ", "sense": "marked by great carelessness", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "hapless": { "form": "hapless", "cornetto_synset_id": "n_a-535670", "wordnet_id": "a-01050890", "pos": "JJ", "sense": "deserving or inciting pity", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "happiness": { "form": "happiness", "wordnet_id": "n-7526757", "pos": "NN", "sense": "emotions experienced when in a state of well-being", "polarity": "0.7", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.9" }, "happy": { "form": "happy", "cornetto_synset_id": "d_a-9297", "wordnet_id": "a-01148283", "pos": "JJ", "sense": "enjoying or showing or marked by joy or pleasure", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "hard": { "form": "hard", "wordnet_id": "a-02322512", "pos": "JJ", "sense": "very strong or vigorous", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "harder": { "form": "harder", "wordnet_id": "", "pos": "JJ", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "harsh": { "form": "harsh", "cornetto_synset_id": "n_a-508890", "wordnet_id": "a-01803792", "pos": "JJ", "sense": "disagreeable to the senses", "polarity": "-0.2", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "hate": { "form": "hate", "wordnet_id": "v-1774136", "pos": "VB", "sense": "dislike intensely", "polarity": "-0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.9" }, "hated": { "form": "hated", "wordnet_id": "", "pos": "VB", "polarity": "-0.9", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.9" }, "hazardous": { "form": "hazardous", "cornetto_synset_id": "n_a-502847", "wordnet_id": "a-02059811", "pos": "JJ", "sense": "involving risk or danger", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "healthy": { "form": "healthy", "wordnet_id": "a-02558184", "pos": "JJ", "sense": "promoting health", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "heartfelt": { "form": "heartfelt", "wordnet_id": "a-02179968", "pos": "JJ", "sense": "earnest", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "heavy": { "form": "heavy", "cornetto_synset_id": "d_a-9636", "wordnet_id": "a-01184932", "pos": "JJ", "sense": "of comparatively great physical weight or density", "polarity": "-0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "heroic": { "form": "heroic", "wordnet_id": "a-02740508", "pos": "JJ", "sense": "relating to or characteristic of heroes of antiquity", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "hidden": { "form": "hidden", "wordnet_id": "a-02517817", "pos": "JJ", "sense": "not accessible to view", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "high": { "form": "high", "cornetto_synset_id": "n_a-531696", "wordnet_id": "a-00705498", "pos": "JJ", "sense": "happy and excited and energetic", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "higher": { "form": "higher", "wordnet_id": "a-01211962", "pos": "JJ", "sense": "advanced in complexity or elaboration", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "hilarious": { "form": "hilarious", "wordnet_id": "a-01266841", "pos": "JJ", "sense": "marked by or causing boisterous merriment or convulsive laughter", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "hindered": { "form": "hindered", "wordnet_id": "", "pos": "VBN", "sense": "", "polarity": "-0.2", "subjectivity": "0.1", "intensity": "1.0", "reliability": "0.9" }, "historic": { "form": "historic", "cornetto_synset_id": "n_a-512540", "wordnet_id": "a-01279028", "pos": "JJ", "sense": "important in history", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "historical": { "form": "historical", "wordnet_id": "a-02920121", "pos": "JJ", "sense": "of or relating to the study of history", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "hit-and-miss": { "form": "hit-and-miss", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.2", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "hollow": { "form": "hollow", "wordnet_id": "n-9305031", "pos": "NN", "sense": "a small valley between mountains", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "honest": { "form": "honest", "cornetto_synset_id": "n_a-508027", "wordnet_id": "a-01225643", "pos": "JJ", "sense": "marked by truth", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "honest-to-god": { "form": "honest-to-god", "cornetto_synset_id": "n_a-527706", "wordnet_id": "a-01116118", "pos": "JJ", "sense": "(used informally especially for emphasis)", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "horrible": { "form": "horrible", "cornetto_synset_id": "n_a-519025", "wordnet_id": "a-00193480", "pos": "JJ", "sense": "provoking horror", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "horrific": { "form": "horrific", "wordnet_id": "a-01626562", "pos": "JJ", "sense": "grossly offensive to decency or morality", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "horrifying": { "form": "horrifying", "wordnet_id": "", "pos": "JJ", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "hot": { "form": "hot", "cornetto_synset_id": "n_a-526932", "wordnet_id": "a-00033077", "pos": "JJ", "sense": "marked by excited activity", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "huge": { "form": "huge", "cornetto_synset_id": "n_a-531690", "wordnet_id": "a-01387319", "pos": "JJ", "sense": "unusually great in size or amount or degree or especially extent or scope", "polarity": "0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "human": { "form": "human", "cornetto_synset_id": "n_a-518600", "wordnet_id": "a-01258617", "pos": "JJ", "sense": "having human form or attributes as opposed to those of animals or divine beings", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "humble": { "form": "humble", "cornetto_synset_id": "n_a-510497", "wordnet_id": "a-02340458", "pos": "JJ", "sense": "low or inferior in station or quality", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "humorous": { "form": "humorous", "wordnet_id": "a-01264336", "pos": "JJ", "sense": "full of or characterized by humor", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "hysterical": { "form": "hysterical", "wordnet_id": "a-00086606", "pos": "JJ", "sense": "marked by excessive or uncontrollable emotion", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "icky": { "form": "icky", "wordnet_id": "a-1127782", "pos": "JJ", "sense": "very bad", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "reliability": "0.9" }, "iconic": { "form": "iconic", "cornetto_synset_id": "n_a-513273", "wordnet_id": "a-02851550", "pos": "JJ", "sense": "relating to or having the characteristics on an icon", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "icy": { "form": "icy", "cornetto_synset_id": "c_127", "wordnet_id": "a-01079240", "pos": "JJ", "sense": "covered with or containing or consisting of ice", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "ideal": { "form": "ideal", "cornetto_synset_id": "n_a-513278", "wordnet_id": "a-00012689", "pos": "JJ", "sense": "constituting or existing only in the form of an idea or mental image or conception", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "identifiable": { "form": "identifiable", "cornetto_synset_id": "n_a-512378", "wordnet_id": "a-01272397", "pos": "JJ", "sense": "capable of being identified", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "idiocy": { "form": "idiocy", "wordnet_id": "n-5646926", "pos": "NN", "sense": "extreme mental retardation", "polarity": "-0.3", "subjectivity": "0.4", "intensity": "1.0", "reliability": "0.9" }, "idiot": { "form": "idiot", "wordnet_id": "n-10197525", "pos": "NN", "sense": "a person of subnormal intelligence", "polarity": "-0.8", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "idiots": { "form": "idiots", "wordnet_id": "", "pos": "NNS", "sense": "", "polarity": "-0.8", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "idiotic": { "form": "idiotic", "wordnet_id": "a-02570643", "pos": "JJ", "sense": "incongruous", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "ill": { "form": "ill", "wordnet_id": "a-02541302", "pos": "JJ", "sense": "affected by an impairment of normal physical or mental function", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "illegal": { "form": "illegal", "cornetto_synset_id": "n_a-521122", "wordnet_id": "a-01401854", "pos": "JJ", "sense": "prohibited by law or by official or accepted rules", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "imaginative": { "form": "imaginative", "cornetto_synset_id": "n_a-506150", "wordnet_id": "a-00643863", "pos": "JJ", "sense": "(used of persons or artifacts) marked by independence and creativity in thought or action", "polarity": "0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "imbecile": { "form": "imbecile", "wordnet_id": "", "pos": "NN", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "label": "profanity", "confidence": "0.8" }, "imitation": { "form": "imitation", "wordnet_id": "n-5962602", "pos": "NN", "sense": "the doctrine that representations of nature or human behavior should be accurate imitations", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "immanent": { "form": "immanent", "cornetto_synset_id": "n_a-529917", "wordnet_id": "a-01273910", "pos": "JJ", "sense": "of a mental act performed entirely within the mind", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "immense": { "form": "immense", "cornetto_synset_id": "n_a-508356", "wordnet_id": "a-01387319", "pos": "JJ", "sense": "unusually great in size or amount or degree or especially extent or scope", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "impassive": { "form": "impassive", "cornetto_synset_id": "n_a-521187", "wordnet_id": "a-00857560", "pos": "JJ", "sense": "having or revealing little emotion or sensibility", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "impatient": { "form": "impatient", "cornetto_synset_id": "n_a-521037", "wordnet_id": "a-00811536", "pos": "JJ", "sense": "(usually followed by 'to') full of eagerness", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "impeccable": { "form": "impeccable", "wordnet_id": "a-02513521", "pos": "JJ", "sense": "not capable of sin", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "imperceptible": { "form": "imperceptible", "cornetto_synset_id": "d_a-9473", "wordnet_id": "a-01748318", "pos": "JJ", "sense": "impossible or difficult to perceive by the mind or senses", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "implicated": { "form": "implicated", "cornetto_synset_id": "n_a-518389", "wordnet_id": "a-01516346", "pos": "JJ", "sense": "culpably involved", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "implicit in": { "form": "implicit in", "cornetto_synset_id": "n_a-520863", "wordnet_id": "a-00941940", "pos": "JJ", "sense": "in the nature of something though not readily apparent", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "important": { "form": "important", "wordnet_id": "a-01539887", "pos": "JJ", "sense": "having or suggesting a consciousness of high position", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "impossible": { "form": "impossible", "wordnet_id": "a-01823092", "pos": "JJ", "sense": "not capable of occurring or being accomplished or dealt with", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "impressed": { "form": "impressed", "cornetto_synset_id": "n_a-509653", "wordnet_id": "a-00071142", "pos": "JJ", "sense": "deeply or markedly affected or influenced", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "impressive": { "form": "impressive", "wordnet_id": "a-01282014", "pos": "JJ", "sense": "making a strong or vivid impression", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "in good taste": { "form": "in good taste", "cornetto_synset_id": "n_a-528044", "wordnet_id": "a-00689215", "pos": "JJ", "sense": "satisfying generally accepted social or esthetic standards", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "in stock": { "form": "in stock", "cornetto_synset_id": "n_a-533683", "wordnet_id": "a-00184543", "pos": "JJ", "sense": "available for use or sale", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "inapposite": { "form": "inapposite", "cornetto_synset_id": "n_a-519011", "wordnet_id": "a-00138782", "pos": "JJ", "sense": "of an inappropriate or misapplied nature", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "inarticulate": { "form": "inarticulate", "cornetto_synset_id": "n_a-520850", "wordnet_id": "a-00151105", "pos": "JJ", "sense": "without or deprived of the use of speech or words", "polarity": "-0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "inauspicious": { "form": "inauspicious", "cornetto_synset_id": "n_a-521232", "wordnet_id": "a-00176838", "pos": "JJ", "sense": "not auspicious", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "incalculable": { "form": "incalculable", "cornetto_synset_id": "n_a-530266", "wordnet_id": "a-00301777", "pos": "JJ", "sense": "not capable of being computed or enumerated", "polarity": "0.0", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "incoherent": { "form": "incoherent", "wordnet_id": "a-464962", "pos": "JJ", "sense": "without logical or meaningful connection", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "incomparable": { "form": "incomparable", "cornetto_synset_id": "d_a-9559", "wordnet_id": "a-00504592", "pos": "JJ", "sense": "such that comparison is impossible", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "incompetent": { "form": "incompetent", "wordnet_id": "n-10202363", "pos": "NN", "sense": "someone who is not competent to take effective action", "polarity": "-0.3", "subjectivity": "0.3", "intensity": "1.0", "reliability": "0.9" }, "inconsistencies": { "form": "inconsistencies", "wordnet_id": "", "pos": "NNS", "sense": "", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "inconvenient": { "form": "inconvenient", "cornetto_synset_id": "n_a-521143", "wordnet_id": "a-00605128", "pos": "JJ", "sense": "not suited to your comfort, purpose or needs", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "incorruptible": { "form": "incorruptible", "cornetto_synset_id": "n_a-513844", "wordnet_id": "a-00622935", "pos": "JJ", "sense": "incapable of being morally corrupted", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "incredible": { "form": "incredible", "cornetto_synset_id": "n_a-535103", "wordnet_id": "a-00645493", "pos": "JJ", "sense": "beyond belief or understanding", "polarity": "0.9", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "incurable": { "form": "incurable", "cornetto_synset_id": "n_a-521115", "wordnet_id": "a-00349759", "pos": "JJ", "sense": "unalterable in disposition or habits", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "indecipherable": { "form": "indecipherable", "cornetto_synset_id": "n_a-521270", "wordnet_id": "a-01405523", "pos": "JJ", "sense": "not easily deciphered", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "independent": { "form": "independent", "wordnet_id": "a-01062393", "pos": "JJ", "sense": "(of political bodies) not controlled by outside forces", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "indie": { "form": "indie", "wordnet_id": "a-00729133", "pos": "JJ", "sense": "(of pop groups) not affiliated with a major recording company", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "indispensable": { "form": "indispensable", "cornetto_synset_id": "n_a-520130", "wordnet_id": "a-00849108", "pos": "JJ", "sense": "unavoidable", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "individual": { "form": "individual", "cornetto_synset_id": "d_a-9343", "wordnet_id": "a-02153174", "pos": "JJ", "sense": "characteristic of or meant for a single person or thing", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "indomitable": { "form": "indomitable", "cornetto_synset_id": "n_a-520642", "wordnet_id": "a-00570099", "pos": "JJ", "sense": "impossible to subdue", "polarity": "0.0", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "ineluctable": { "form": "ineluctable", "cornetto_synset_id": "n_a-521606", "wordnet_id": "a-00343360", "pos": "JJ", "sense": "impossible to avoid or evade", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "inevitable": { "form": "inevitable", "wordnet_id": "a-01841834", "pos": "JJ", "sense": "invariably occurring or appearing", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "inexpedient": { "form": "inexpedient", "cornetto_synset_id": "n_a-521622", "wordnet_id": "a-01814252", "pos": "JJ", "sense": "not appropriate to the purpose", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "inexperienced": { "form": "inexperienced", "cornetto_synset_id": "n_a-520979", "wordnet_id": "a-00936740", "pos": "JJ", "sense": "lacking practical experience or training", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "inexplicable": { "form": "inexplicable", "cornetto_synset_id": "n_a-520635", "wordnet_id": "a-00939105", "pos": "JJ", "sense": "incapable of being explained or accounted for", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "inexpressible": { "form": "inexpressible", "cornetto_synset_id": "d_a-9258", "wordnet_id": "a-00943999", "pos": "JJ", "sense": "defying expression", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "infamous": { "form": "infamous", "cornetto_synset_id": "n_a-522276", "wordnet_id": "a-01984411", "pos": "JJ", "sense": "known widely and usually unfavorably", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "infantile": { "form": "infantile", "wordnet_id": "a-2748837", "pos": "JJ", "sense": "of or relating to infants or infancy", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "infatuated": { "form": "infatuated", "wordnet_id": "", "pos": "VBN", "sense": "", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "inflexible": { "form": "inflexible", "cornetto_synset_id": "d_a-9530", "wordnet_id": "a-01029151", "pos": "JJ", "sense": "incapable of adapting or changing to meet circumstances", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "infuriating": { "form": "infuriating", "wordnet_id": "", "pos": "", "sense": "VBG", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "reliability": "0.9" }, "ingenious": { "form": "ingenious", "wordnet_id": "a-00061885", "pos": "JJ", "sense": "showing inventiveness and skill", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "inhumane": { "form": "inhumane", "cornetto_synset_id": "d_a-9455", "wordnet_id": "a-01262611", "pos": "JJ", "sense": "lacking and reflecting lack of pity or compassion", "polarity": "-0.9", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "initial": { "form": "initial", "wordnet_id": "a-01011973", "pos": "JJ", "sense": "occurring at the beginning", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "inner": { "form": "inner", "wordnet_id": "a-01863066", "pos": "JJ", "sense": "confined to an exclusive group", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "innocent": { "form": "innocent", "cornetto_synset_id": "n_a-521396", "wordnet_id": "a-01319874", "pos": "JJ", "sense": "free from evil or guilt", "polarity": "0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "innovative": { "form": "innovative", "wordnet_id": "a-01876261", "pos": "JJ", "sense": "ahead of the times", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "insane": { "form": "insane", "wordnet_id": "a-02572038", "pos": "JJ", "sense": "very foolish", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "insecure": { "form": "insecure", "wordnet_id": "a-02524443", "pos": "JJ", "sense": "not safe from attack", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "inspirational": { "form": "inspirational", "wordnet_id": "a-02055773", "pos": "JJ", "sense": "imparting a divine influence on the mind and soul", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "inspiring": { "form": "inspiring", "cornetto_synset_id": "n_a-513804", "wordnet_id": "a-01323096", "pos": "JJ", "sense": "stimulating or exalting to the spirit", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "instant": { "form": "instant", "wordnet_id": "a-01732012", "pos": "JJ", "sense": "in or of the present month", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "insulting": { "form": "insulting", "wordnet_id": "a-01995288", "pos": "JJ", "sense": "expressing extreme contempt", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "insultingly": { "form": "insultingly", "wordnet_id": "r-379674", "pos": "RB", "sense": "in a disrespectful and insulting manner", "polarity": "-0.3", "subjectivity": "0.4", "intensity": "1.0", "reliability": "0.9" }, "intellectual": { "form": "intellectual", "cornetto_synset_id": "n_a-532721", "wordnet_id": "a-01332386", "pos": "JJ", "sense": "appealing to or using the intellect", "polarity": "0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "intelligent": { "form": "intelligent", "cornetto_synset_id": "c_239", "wordnet_id": "a-01334398", "pos": "JJ", "sense": "having the capacity for thought and reason especially to a high degree", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "intelligentsia": { "form": "intelligentsia", "wordnet_id": "n-8387354", "pos": "NN", "sense": "an educated and intellectual elite", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "intense": { "form": "intense", "cornetto_synset_id": "n_a-512478", "wordnet_id": "a-01509527", "pos": "JJ", "sense": "possessing or displaying a distinctive feature to a heightened degree", "polarity": "0.2", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "interested": { "form": "interested", "wordnet_id": "a-01515692", "pos": "JJ", "sense": "involved in or affected by or having a claim to or share in", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "interesting": { "form": "interesting", "wordnet_id": "a-01343918", "pos": "JJ", "sense": "arousing or holding the attention", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "internal": { "form": "internal", "wordnet_id": "a-01348835", "pos": "JJ", "sense": "innermost or essential", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "international": { "form": "international", "wordnet_id": "a-01568375", "pos": "JJ", "sense": "concerning or belonging to all or at least two or more nations", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "intimate": { "form": "intimate", "cornetto_synset_id": "n_a-527516", "wordnet_id": "a-02132735", "pos": "JJ", "sense": "involved in a sexual relationship", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "intriguing": { "form": "intriguing", "wordnet_id": "a-01897106", "pos": "JJ", "sense": "disturbingly provocative", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.9" }, "inventive": { "form": "inventive", "cornetto_synset_id": "n_a-506150", "wordnet_id": "a-00643863", "pos": "JJ", "sense": "(used of persons or artifacts) marked by independence and creativity in thought or action", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "irish": { "form": "irish", "wordnet_id": "a-03003744", "pos": "JJ", "sense": "of or relating to or characteristic of Ireland or its people", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "ironic": { "form": "ironic", "cornetto_synset_id": "n_a-528735", "wordnet_id": "a-00563288", "pos": "JJ", "sense": "characterized by often poignant difference or incongruity between what is expected and what actually is", "polarity": "0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "irrelevant": { "form": "irrelevant", "wordnet_id": "a-01976084", "pos": "JJ", "sense": "having no bearing on or connection with the subject at issue", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "irritating": { "form": "irritating", "wordnet_id": "a-478685", "pos": "JJ", "sense": "causing physical discomfort", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.9" }, "isn't": { "form": "isn't", "wordnet_id": "", "pos": "VB", "polarity": "-0.2", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.9" }, "italian": { "form": "italian", "wordnet_id": "a-02957066", "pos": "JJ", "sense": "of or pertaining to or characteristic of Italy or its people or culture or language", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "jackass": { "form": "jackass", "wordnet_id": "", "pos": "NN", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.9" }, "jackasses": { "form": "jackasses", "wordnet_id": "", "pos": "NNS", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.9" }, "jail": { "form": "jail", "wordnet_id": "n-3592245", "pos": "NN", "sense": "a correctional institution used to detain persons who are in the lawful custody of the government", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "jammed": { "form": "jammed", "cornetto_synset_id": "n_a-529021", "wordnet_id": "a-00560100", "pos": "JJ", "sense": "filled to capacity", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "japanese": { "form": "japanese", "cornetto_synset_id": "n_a-500510", "wordnet_id": "a-02965043", "pos": "JJ", "sense": "of or relating to or characteristic of Japan or its people or their culture or language", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "jewish": { "form": "jewish", "cornetto_synset_id": "n_a-500503", "wordnet_id": "a-02922263", "pos": "JJ", "sense": "of or relating to Jews or their culture or religion", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "joy": { "form": "joy", "wordnet_id": "n-7527352", "pos": "NN", "sense": "the emotion of great happiness", "polarity": "0.8", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.9" }, "justified": { "form": "justified", "cornetto_synset_id": "n_a-510466", "wordnet_id": "a-00910750", "pos": "JJ", "sense": "having words so spaced that lines have straight even margins", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "juvenile": { "form": "juvenile", "wordnet_id": "a-02892980", "pos": "JJ", "sense": "of or relating to or characteristic of or appropriate for children or young people", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "key": { "form": "key", "wordnet_id": "a-01277097", "pos": "JJ", "sense": "serving as an essential component", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "killed": { "form": "killed", "wordnet_id": "", "pos": "VB", "sense": "cause to die", "polarity": "-0.2", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "kind": { "form": "kind", "cornetto_synset_id": "n_a-501386", "wordnet_id": "a-01372049", "pos": "JJ", "sense": "having or showing a tender and considerate and helpful nature", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "lame": { "form": "lame", "wordnet_id": "a-02325304", "pos": "JJ", "sense": "pathetically lacking in force or effectiveness", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "large": { "form": "large", "wordnet_id": "a-02163307", "pos": "JJ", "sense": "fairly large or important in effect", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "larger": { "form": "larger", "wordnet_id": "a-01383756", "pos": "JJ", "sense": "large or big relative to something else", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "last": { "form": "last", "cornetto_synset_id": "n_a-533745", "wordnet_id": "a-01212095", "pos": "JJ", "sense": "highest in extent or degree", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "lasting": { "form": "lasting", "wordnet_id": "a-02291500", "pos": "JJ", "sense": "lasting a long time without change", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "late": { "form": "late", "cornetto_synset_id": "n_a-516548", "wordnet_id": "a-00816481", "pos": "JJ", "sense": "being or occurring at an advanced period of time or after a usual or expected time", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "later": { "form": "later", "wordnet_id": "a-00819235", "pos": "JJ", "sense": "at or toward an end or late period or stage of development", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "latest": { "form": "latest", "cornetto_synset_id": "n_a-505528", "wordnet_id": "a-00971506", "pos": "JJ", "sense": "in the current fashion or style", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "latter": { "form": "latter", "wordnet_id": "a-01047561", "pos": "JJ", "sense": "referring to the second of two things or persons mentioned (or the last one or ones of several)", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "laugh": { "form": "laugh", "wordnet_id": "v-31820", "pos": "VB", "sense": "produce laughter", "polarity": "0.3", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.9" }, "laughable": { "form": "laughable", "wordnet_id": "a-02570643", "pos": "JJ", "sense": "incongruous", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "laughed": { "form": "laughed", "wordnet_id": "", "pos": "VB", "polarity": "0.7", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.9" }, "lawful": { "form": "lawful", "cornetto_synset_id": "n_a-514272", "wordnet_id": "a-01395617", "pos": "JJ", "sense": "conformable to or allowed by law", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "lazy": { "form": "lazy", "wordnet_id": "a-00981304", "pos": "JJ", "sense": "moving slowly and gently", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "leaden": { "form": "leaden", "wordnet_id": "a-837756", "pos": "JJ", "sense": "(of movement) slow and laborious", "polarity": "-0.3", "subjectivity": "0.4", "intensity": "1.0", "reliability": "0.9" }, "least": { "form": "least", "wordnet_id": "a-01556061", "pos": "JJ", "sense": "the superlative of 'little' that can be used with mass nouns and is usually preceded by 'the'", "polarity": "-0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.9" }, "left": { "form": "left", "cornetto_synset_id": "n_a-517388", "wordnet_id": "a-02032953", "pos": "JJ", "sense": "being or located on or directed toward the side of the body to the west when facing north", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "leftist": { "form": "leftist", "cornetto_synset_id": "n_a-517389", "wordnet_id": "a-02031335", "pos": "JJ", "sense": "believing in or supporting tenets of the political left", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "legal": { "form": "legal", "cornetto_synset_id": "n_a-535042", "wordnet_id": "a-02499148", "pos": "JJ", "sense": "having legal efficacy or force", "polarity": "0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "legendary": { "form": "legendary", "wordnet_id": "a-01376355", "pos": "JJ", "sense": "so celebrated as to having taken on the nature of a legend", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "legible": { "form": "legible", "cornetto_synset_id": "n_a-516920", "wordnet_id": "a-01404702", "pos": "JJ", "sense": "(of handwriting, print, etc.) capable of being read or deciphered", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "lenient": { "form": "lenient", "cornetto_synset_id": "c_392", "wordnet_id": "a-00711831", "pos": "JJ", "sense": "not strict", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "less": { "form": "less", "wordnet_id": "a-02347371", "pos": "JJ", "sense": "(usually preceded by 'no') lower in quality", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.9" }, "lesser": { "form": "lesser", "wordnet_id": "a-01395488", "pos": "JJ", "sense": "of less size or importance", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "liable": { "form": "liable", "cornetto_synset_id": "n_a-532097", "wordnet_id": "a-02362178", "pos": "JJ", "sense": "(often followed by 'to') likely to be affected with", "polarity": "-0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "licentious": { "form": "licentious", "cornetto_synset_id": "n_a-520781", "wordnet_id": "a-00362269", "pos": "JJ", "sense": "lacking moral discipline", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "lifelike": { "form": "lifelike", "cornetto_synset_id": "n_a-517106", "wordnet_id": "a-00074594", "pos": "JJ", "sense": "free from artificiality", "polarity": "0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "lifelong": { "form": "lifelong", "cornetto_synset_id": "n_a-517115", "wordnet_id": "a-01440159", "pos": "JJ", "sense": "continuing through life", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "light": { "form": "light", "cornetto_synset_id": "n_a-528450", "wordnet_id": "a-00269989", "pos": "JJ", "sense": "characterized by or emitting light", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "light-hearted": { "form": "light-hearted", "wordnet_id": "a-00363291", "pos": "JJ", "sense": "carefree and happy and lighthearted", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "likable": { "form": "likable", "wordnet_id": "a-02376277", "pos": "JJ", "sense": "(of characters in literature or drama) evoking empathic or sympathetic feelings", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "liked": { "form": "liked", "wordnet_id": "a-1461138", "pos": "JJ", "sense": "found pleasant or attractive", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.9" }, "likely": { "form": "likely", "wordnet_id": "a-01884176", "pos": "JJ", "sense": "expected to become or be", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "limited": { "form": "limited", "wordnet_id": "a-02002470", "pos": "JJ", "sense": "subject to limits or subjected to limits", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "limp": { "form": "limp", "cornetto_synset_id": "n_a-527850", "wordnet_id": "a-02404081", "pos": "JJ", "sense": "lacking in strength or firmness or resilience", "polarity": "-0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "linguistic": { "form": "linguistic", "cornetto_synset_id": "n_a-530161", "wordnet_id": "a-02842445", "pos": "JJ", "sense": "consisting of or related to language", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "literary": { "form": "literary", "cornetto_synset_id": "n_a-517073", "wordnet_id": "a-02830501", "pos": "JJ", "sense": "of or relating to or characteristic of literature", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "little": { "form": "little", "wordnet_id": "a-02386612", "pos": "JJ", "sense": "low in stature", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "live": { "form": "live", "wordnet_id": "a-02010441", "pos": "JJ", "sense": "highly reverberant", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "lively": { "form": "lively", "cornetto_synset_id": "n_a-528047", "wordnet_id": "a-00804371", "pos": "JJ", "sense": "filled with events or activity", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "lmao": { "form": "lmao", "wordnet_id": "", "pos": "UH", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "local": { "form": "local", "wordnet_id": "a-02756346", "pos": "JJ", "sense": "of or belonging to or characteristic of a particular locality or neighborhood", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "logical": { "form": "logical", "wordnet_id": "a-02499301", "pos": "JJ", "sense": "based on known statements or events or conditions", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "lol": { "form": "lol", "wordnet_id": "", "pos": "UH", "polarity": "0.8", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.9" }, "lolol": { "form": "lolol", "wordnet_id": "", "pos": "UH", "polarity": "0.8", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.9" }, "lonely": { "form": "lonely", "cornetto_synset_id": "n_a-536020", "wordnet_id": "a-01313649", "pos": "JJ", "sense": "devoid of creatures", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "long": { "form": "long", "cornetto_synset_id": "n_a-516735", "wordnet_id": "a-01437963", "pos": "JJ", "sense": "primarily temporal sense", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "long-winded": { "form": "long-winded", "cornetto_synset_id": "n_a-508243", "wordnet_id": "a-00549236", "pos": "JJ", "sense": "using or containing too many words", "polarity": "-0.2", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "loose": { "form": "loose", "wordnet_id": "a-02404421", "pos": "JJ", "sense": "not tense or taut", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "losers": { "form": "losers", "wordnet_id": "", "pos": "NNS", "sense": "", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "loses": { "form": "loses", "wordnet_id": "", "pos": "VB", "polarity": "-0.3", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.9" }, "loud": { "form": "loud", "cornetto_synset_id": "n_a-512029", "wordnet_id": "a-01452593", "pos": "JJ", "sense": "characterized by or producing sound of great volume or intensity", "polarity": "0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "lousy": { "form": "lousy", "wordnet_id": "a-422374", "pos": "JJ", "sense": "infested with lice", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "reliability": "0.9" }, "lovable": { "form": "lovable", "wordnet_id": "a-01459422", "pos": "JJ", "sense": "having characteristics that attract love or affection", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "love": { "form": "love", "wordnet_id": "v-1828736", "pos": "VB", "sense": "get pleasure from", "polarity": "0.5", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.9" }, "loved": { "form": "loved", "cornetto_synset_id": "n_a-506898", "wordnet_id": "a-01461822", "pos": "JJ", "sense": "held dear", "polarity": "0.7", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.9" }, "lovely": { "form": "lovely", "wordnet_id": "a-01459755", "pos": "JJ", "sense": "lovable especially in a childlike or naive way", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "loving": { "form": "loving", "cornetto_synset_id": "n_a-530384", "wordnet_id": "a-01463965", "pos": "JJ", "sense": "feeling or showing love and affection", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "low": { "form": "low", "cornetto_synset_id": "n_a-516525", "wordnet_id": "a-01215421", "pos": "JJ", "sense": "used of sounds and voices", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "loyal": { "form": "loyal", "wordnet_id": "a-00961392", "pos": "JJ", "sense": "steadfast in allegiance or duty", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "lucky": { "form": "lucky", "wordnet_id": "a-01468097", "pos": "JJ", "sense": "having or bringing good fortune", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "lush": { "form": "lush", "cornetto_synset_id": "n_a-526590", "wordnet_id": "a-01369078", "pos": "JJ", "sense": "full of juice", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "lyric": { "form": "lyric", "cornetto_synset_id": "n_a-517863", "wordnet_id": "a-00856011", "pos": "JJ", "sense": "expressing deep emotion", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "mad": { "form": "mad", "wordnet_id": "a-02572038", "pos": "JJ", "sense": "very foolish", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "magic": { "form": "magic", "cornetto_synset_id": "n_a-510820", "wordnet_id": "a-01576071", "pos": "JJ", "sense": "possessing or using or characteristic of or appropriate to supernatural powers", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "magical": { "form": "magical", "cornetto_synset_id": "n_a-510820", "wordnet_id": "a-01576071", "pos": "JJ", "sense": "possessing or using or characteristic of or appropriate to supernatural powers", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "magnificent": { "form": "magnificent", "cornetto_synset_id": "n_a-511105", "wordnet_id": "a-01285376", "pos": "JJ", "sense": "characterized by grandeur", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "main": { "form": "main", "wordnet_id": "a-01512527", "pos": "JJ", "sense": "of force", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "major": { "form": "major", "wordnet_id": "a-02100236", "pos": "JJ", "sense": "of the elder of two boys with the same family name", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "maladroit": { "form": "maladroit", "cornetto_synset_id": "n_a-529331", "wordnet_id": "a-00063277", "pos": "JJ", "sense": "not adroit", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "male": { "form": "male", "cornetto_synset_id": "d_a-9398", "wordnet_id": "a-01476685", "pos": "JJ", "sense": "being the sex (of plant or animal) that produces gametes (spermatozoa) that perform the fertilizing function in generation", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "malevolent": { "form": "malevolent", "cornetto_synset_id": "n_a-532034", "wordnet_id": "a-00225564", "pos": "JJ", "sense": "wishing or appearing to wish evil to others", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "mannerly": { "form": "mannerly", "cornetto_synset_id": "n_a-503527", "wordnet_id": "a-00641343", "pos": "JJ", "sense": "socially correct in behavior", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "manorial": { "form": "manorial", "cornetto_synset_id": "c_472", "wordnet_id": "a-03084397", "pos": "JJ", "sense": "of or relating to or based on the manor", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "manque": { "form": "manque", "cornetto_synset_id": "n_a-530896", "wordnet_id": "a-00104825", "pos": "JJ", "sense": "unfulfilled or frustrated in realizing an ambition", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "many": { "form": "many", "cornetto_synset_id": "n_a-532215", "wordnet_id": "a-01551633", "pos": "JJ", "sense": "a quantifier that can be used with count nouns and is often preceded by 'as' or 'too' or 'so' or 'that'", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "many-sided": { "form": "many-sided", "cornetto_synset_id": "n_a-502070", "wordnet_id": "a-02506922", "pos": "JJ", "sense": "having many aspects", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "marked": { "form": "marked", "cornetto_synset_id": "n_a-522312", "wordnet_id": "a-01287808", "pos": "JJ", "sense": "strongly marked", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "married": { "form": "married", "wordnet_id": "a-01481612", "pos": "JJ", "sense": "joined in matrimony", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "martial": { "form": "martial", "wordnet_id": "a-01518860", "pos": "JJ", "sense": "suggesting war or military life", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "marvelous": { "form": "marvelous", "wordnet_id": "a-01676517", "pos": "JJ", "sense": "extraordinarily good or great ", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "masculine": { "form": "masculine", "cornetto_synset_id": "n_a-518174", "wordnet_id": "a-01483324", "pos": "JJ", "sense": "associated with men and not with women", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "massive": { "form": "massive", "wordnet_id": "a-02263875", "pos": "JJ", "sense": "being the same substance throughout", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "masterful": { "form": "masterful", "cornetto_synset_id": "n_a-518477", "wordnet_id": "a-02226979", "pos": "JJ", "sense": "having or revealing supreme mastery or skill", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "mathematical": { "form": "mathematical", "cornetto_synset_id": "n_a-535010", "wordnet_id": "a-00915141", "pos": "JJ", "sense": "characterized by the exactness or precision of mathematics", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "mature": { "form": "mature", "wordnet_id": "a-01493173", "pos": "JJ", "sense": "fully developed or matured and ready to be eaten or used", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "meager": { "form": "meager", "cornetto_synset_id": "n_a-502563", "wordnet_id": "a-00106456", "pos": "JJ", "sense": "deficient in amount or quality or extent", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "mean": { "form": "mean", "wordnet_id": "a-02227663", "pos": "JJ", "sense": "excellent", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "meaningful": { "form": "meaningful", "cornetto_synset_id": "n_a-532119", "wordnet_id": "a-01496976", "pos": "JJ", "sense": "having a meaning or purpose", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "meaningless": { "form": "meaningless", "wordnet_id": "a-01497736", "pos": "JJ", "sense": "having no meaning or direction or purpose", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "measly": { "form": "measly", "cornetto_synset_id": "n_a-530515", "wordnet_id": "a-00107384", "pos": "JJ", "sense": "contemptibly small in amount", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "medical": { "form": "medical", "cornetto_synset_id": "n_a-532635", "wordnet_id": "a-02760116", "pos": "JJ", "sense": "relating to the study or practice of medicine", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "medicative": { "form": "medicative", "cornetto_synset_id": "n_a-510314", "wordnet_id": "a-01166656", "pos": "JJ", "sense": "having the properties of medicine", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "medieval": { "form": "medieval", "cornetto_synset_id": "n_a-518794", "wordnet_id": "a-02989754", "pos": "JJ", "sense": "relating to or belonging to the Middle Ages", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "mediocre": { "form": "mediocre", "wordnet_id": "a-02347564", "pos": "JJ", "sense": "moderate to inferior in quality", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "mediocrity": { "form": "mediocrity", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "melodrama": { "form": "melodrama", "wordnet_id": "n-7016648", "pos": "NN", "sense": "an extravagant comedy in which action is more salient than characterization", "polarity": "-0.3", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "memorable": { "form": "memorable", "cornetto_synset_id": "n_a-509822", "wordnet_id": "a-01040752", "pos": "JJ", "sense": "worth remembering", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "menacing": { "form": "menacing", "wordnet_id": "a-00194357", "pos": "JJ", "sense": "threatening or foreshadowing evil or tragic developments", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "mental": { "form": "mental", "wordnet_id": "a-02898750", "pos": "JJ", "sense": "of or relating to the mind", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "merciless": { "form": "merciless", "cornetto_synset_id": "n_a-518422", "wordnet_id": "a-01507402", "pos": "JJ", "sense": "having or showing no mercy", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "mere": { "form": "mere", "wordnet_id": "a-01099707", "pos": "JJ", "sense": "being nothing more than specified", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "mesmerizing": { "form": "mesmerizing", "wordnet_id": "", "pos": "VB", "polarity": "0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.9" }, "mess": { "form": "mess", "wordnet_id": "v-276214", "pos": "VB", "sense": "make a mess of or create disorder in", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "reliability": "0.9" }, "messy": { "form": "messy", "wordnet_id": "a-2426042", "pos": "JJ", "sense": "dirty and disorderly", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "reliability": "0.9" }, "metaphorical": { "form": "metaphorical", "cornetto_synset_id": "n_a-508972", "wordnet_id": "a-01419784", "pos": "JJ", "sense": "expressing one thing in terms normally denoting another", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "mexican": { "form": "mexican", "wordnet_id": "a-03026902", "pos": "JJ", "sense": "of or relating to Mexico or its inhabitants", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "mid": { "form": "mid", "wordnet_id": "a-00816324", "pos": "JJ", "sense": "used in combination to denote the middle", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "middle": { "form": "middle", "wordnet_id": "a-00820458", "pos": "JJ", "sense": "of a stage in the development of a language or literature between earlier and later stages", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "mighty": { "form": "mighty", "cornetto_synset_id": "n_a-518022", "wordnet_id": "a-01826575", "pos": "JJ", "sense": "having or showing great strength or force or intensity", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "mild": { "form": "mild", "wordnet_id": "a-01508719", "pos": "JJ", "sense": "moderate in type or degree or effect or force", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "military": { "form": "military", "cornetto_synset_id": "n_a-518892", "wordnet_id": "a-02764251", "pos": "JJ", "sense": "of or relating to the study of the principles of warfare", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "mind-boggling": { "form": "mind-boggling", "cornetto_synset_id": "n_a-532272", "wordnet_id": "a-01285938", "pos": "JJ", "sense": "intellectually or emotionally overwhelming", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "mindless": { "form": "mindless", "wordnet_id": "a-02571277", "pos": "JJ", "sense": "devoid of intelligence", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "minimal": { "form": "minimal", "cornetto_synset_id": "n_a-518946", "wordnet_id": "a-01496021", "pos": "JJ", "sense": "the least possible", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "minor": { "form": "minor", "wordnet_id": "a-02101240", "pos": "JJ", "sense": "of the younger of two boys with the same family name", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "minus": { "form": "minus", "cornetto_synset_id": "n_a-519760", "wordnet_id": "a-00065667", "pos": "JJ", "sense": "involving disadvantage or harm", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "miserable": { "form": "miserable", "wordnet_id": "a-02347086", "pos": "JJ", "sense": "of very poor quality or condition", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "misfire": { "form": "misfire", "wordnet_id": "v-1134653", "pos": "VB", "sense": "fail to fire or detonate", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "misplaced": { "form": "misplaced", "wordnet_id": "a-1682073", "pos": "JJ", "sense": "put in the wrong place or position", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "missing": { "form": "missing", "wordnet_id": "a-1450178", "pos": "JJ", "sense": "not able to be found", "polarity": "-0.2", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.9" }, "mixed": { "form": "mixed", "wordnet_id": "a-01326652", "pos": "JJ", "sense": "involving or composed of different races", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "mod": { "form": "mod", "cornetto_synset_id": "d_a-9408", "wordnet_id": "a-00972902", "pos": "JJ", "sense": "relating to a recently developed fashion or style", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "moderate": { "form": "moderate", "cornetto_synset_id": "n_a-518332", "wordnet_id": "a-01509367", "pos": "JJ", "sense": "not extreme", "polarity": "0.0", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "modern": { "form": "modern", "cornetto_synset_id": "n_a-519076", "wordnet_id": "a-01535709", "pos": "JJ", "sense": "belonging to the modern era", "polarity": "0.2", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "modest": { "form": "modest", "cornetto_synset_id": "n_a-513680", "wordnet_id": "a-01532912", "pos": "JJ", "sense": "not large but sufficient in size or amount", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "monkey": { "form": "monkey", "wordnet_id": "n-2484322", "pos": "NN", "sense": "any of various long-tailed primates (excluding the prosimians)", "polarity": "-0.05", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "monosyllabic": { "form": "monosyllabic", "wordnet_id": "a-2289018", "pos": "JJ", "sense": "having or characterized by or consisting of one syllable", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "moral": { "form": "moral", "wordnet_id": "a-01780596", "pos": "JJ", "sense": "psychological rather than physical or tangible in effect", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "moralizing": { "form": "moralizing", "wordnet_id": "n-6742932", "pos": "NN", "sense": "indulgence in moral pronouncements", "polarity": "-0.3", "subjectivity": "0.4", "intensity": "1.0", "reliability": "0.9" }, "more": { "form": "more", "wordnet_id": "a-01556355", "pos": "JJ", "sense": "(comparative of 'many' used with count nouns) quantifier meaning greater in number", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "moron": { "form": "moron", "wordnet_id": "n-10197525", "pos": "NN", "sense": "a person of subnormal intelligence", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "label": "profanity", "confidence": "0.8" }, "morons": { "form": "morons", "wordnet_id": "", "pos": "NNS", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "label": "profanity", "confidence": "0.8" }, "most": { "form": "most", "wordnet_id": "a-01557120", "pos": "JJ", "sense": "(superlative of 'many' used with count nouns and often preceded by 'the') quantifier meaning the greatest in number", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "motley": { "form": "motley", "cornetto_synset_id": "n_a-504646", "wordnet_id": "a-00398978", "pos": "JJ", "sense": "having sections or patches colored differently and usually brightly", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "mouth-watering": { "form": "mouth-watering", "cornetto_synset_id": "d_a-9380", "wordnet_id": "a-00133669", "pos": "JJ", "sense": "pleasing to the sense of taste", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "much": { "form": "much", "wordnet_id": "r-59413", "pos": "RB", "sense": "frequently or in great quantities", "polarity": "0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.9" }, "muggy": { "form": "muggy", "cornetto_synset_id": "c_290", "wordnet_id": "a-02549691", "pos": "JJ", "sense": "hot or warm and humid", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "multilateral": { "form": "multilateral", "cornetto_synset_id": "n_a-532153", "wordnet_id": "a-00237240", "pos": "JJ", "sense": "having many parts or sides", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "multiple": { "form": "multiple", "cornetto_synset_id": "n_a-532136", "wordnet_id": "a-02215977", "pos": "JJ", "sense": "having or involving or consisting of more than one part or entity or individual", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "mundane": { "form": "mundane", "wordnet_id": "a-02578035", "pos": "JJ", "sense": "concerned with the world or worldly matters", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "musical": { "form": "musical", "cornetto_synset_id": "n_a-519488", "wordnet_id": "a-01504625", "pos": "JJ", "sense": "characteristic of or resembling or accompanied by music", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "muzak": { "form": "muzak", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.05", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "mysterious": { "form": "mysterious", "wordnet_id": "a-00900071", "pos": "JJ", "sense": "having an import not apparent to the senses nor obvious to the intelligence", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "naive": { "form": "naive", "wordnet_id": "a-01912858", "pos": "JJ", "sense": "of or created by one without formal training", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "naked": { "form": "naked", "wordnet_id": "a-02354234", "pos": "JJ", "sense": "(of the eye or ear e.g.) without the aid of an optical or acoustical device or instrument", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "nameless": { "form": "nameless", "cornetto_synset_id": "n_a-531905", "wordnet_id": "a-00120784", "pos": "JJ", "sense": "being or having an unknown or unnamed source", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "narrow": { "form": "narrow", "cornetto_synset_id": "d_a-9417", "wordnet_id": "a-02561888", "pos": "JJ", "sense": "not wide", "polarity": "-0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "nasty": { "form": "nasty", "wordnet_id": "a-01587077", "pos": "JJ", "sense": "offensive or even (of persons) malicious", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "natural": { "form": "natural", "cornetto_synset_id": "n_a-519696", "wordnet_id": "a-01569965", "pos": "JJ", "sense": "in accordance with nature", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "naturalistic": { "form": "naturalistic", "cornetto_synset_id": "c_369", "wordnet_id": "a-01979985", "pos": "JJ", "sense": "representing what is real", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "naughty": { "form": "naughty", "cornetto_synset_id": "n_a-529550", "wordnet_id": "a-01128406", "pos": "JJ", "sense": "badly behaved", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "nauseated": { "form": "nauseated", "cornetto_synset_id": "n_a-519014", "wordnet_id": "a-02545689", "pos": "JJ", "sense": "feeling nausea", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "near": { "form": "near", "cornetto_synset_id": "n_a-512169", "wordnet_id": "a-00444519", "pos": "JJ", "sense": "not far distant in time or space or degree or circumstances", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "necessary": { "form": "necessary", "wordnet_id": "a-01580050", "pos": "JJ", "sense": "absolutely essential", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "needless": { "form": "needless", "wordnet_id": "a-01582049", "pos": "JJ", "sense": "unnecessary and unwarranted", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "negative": { "form": "negative", "cornetto_synset_id": "n_a-521445", "wordnet_id": "a-00075515", "pos": "JJ", "sense": "expressing or consisting of a negation or refusal or denial", "polarity": "-0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "nerve-racking": { "form": "nerve-racking", "cornetto_synset_id": "n_a-535561", "wordnet_id": "a-00090408", "pos": "JJ", "sense": "extremely irritating to the nerves", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "net": { "form": "net", "cornetto_synset_id": "n_a-519884", "wordnet_id": "a-01582461", "pos": "JJ", "sense": "remaining after all deductions", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "new": { "form": "new", "wordnet_id": "a-02584699", "pos": "JJ", "sense": "unaffected by use or exposure", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "next": { "form": "next", "wordnet_id": "a-01294975", "pos": "JJ", "sense": "(of elected officers) elected but not yet serving", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "nice": { "form": "nice", "cornetto_synset_id": "n_a-510721", "wordnet_id": "a-01586342", "pos": "JJ", "sense": "pleasant or pleasing or agreeable in nature or appearance", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "noble": { "form": "noble", "cornetto_synset_id": "n_a-507937", "wordnet_id": "a-01588172", "pos": "JJ", "sense": "having or showing or indicative of high or elevated character", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "nonviolent": { "form": "nonviolent", "cornetto_synset_id": "n_a-510824", "wordnet_id": "a-00249576", "pos": "JJ", "sense": "achieved without bloodshed", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "normal": { "form": "normal", "cornetto_synset_id": "n_a-517484", "wordnet_id": "a-01593649", "pos": "JJ", "sense": "conforming with or constituting a norm or standard or level or type or social norm", "polarity": "0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "norwegian": { "form": "norwegian", "wordnet_id": "a-02959912", "pos": "JJ", "sense": "of or relating to Norway or its people or culture or language", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "nostalgic": { "form": "nostalgic", "cornetto_synset_id": "d_a-9425", "wordnet_id": "a-00889098", "pos": "JJ", "sense": "unhappy about being away and longing for familiar things or persons", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "notable": { "form": "notable", "wordnet_id": "a-02586957", "pos": "JJ", "sense": "worthy of notice", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "numb": { "form": "numb", "cornetto_synset_id": "d_a-9540", "wordnet_id": "a-00080698", "pos": "JJ", "sense": "so frightened as to be unable to move", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "numerous": { "form": "numerous", "wordnet_id": "a-01552419", "pos": "JJ", "sense": "amounting to a large indefinite number", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "obedient": { "form": "obedient", "cornetto_synset_id": "n_a-510893", "wordnet_id": "a-01612053", "pos": "JJ", "sense": "dutifully complying with the commands or instructions of those in authority", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "objective": { "form": "objective", "cornetto_synset_id": "d_a-9427", "wordnet_id": "a-00013442", "pos": "JJ", "sense": "belonging to immediate experience of actual things or events", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "obsessed": { "form": "obsessed", "wordnet_id": "a-00599468", "pos": "JJ", "sense": "influenced or controlled by a powerful force such as a strong emotion", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "obstacles": { "form": "obstacles", "wordnet_id": "", "pos": "NNS", "sense": "", "polarity": "-0.05", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "obvious": { "form": "obvious", "wordnet_id": "a-01618053", "pos": "JJ", "sense": "easily perceived by the senses or grasped by the mind", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "occasional": { "form": "occasional", "wordnet_id": "a-01961205", "pos": "JJ", "sense": "occurring from time to time", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "odd": { "form": "odd", "wordnet_id": "a-00968010", "pos": "JJ", "sense": "beyond or deviating from the usual or expected", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "offbeat": { "form": "offbeat", "cornetto_synset_id": "n_a-504364", "wordnet_id": "a-00609564", "pos": "JJ", "sense": "informal terms", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "offers": { "form": "offers", "wordnet_id": "", "pos": "VB", "polarity": "0.1", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "ok": { "form": "ok", "wordnet_id": "a-02081114", "pos": "JJ", "sense": "being satisfactory or in satisfactory condition", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "okay": { "form": "okay", "wordnet_id": "a-02081114", "pos": "JJ", "sense": "being satisfactory or in satisfactory condition", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "old": { "form": "old", "cornetto_synset_id": "d_a-9482", "wordnet_id": "a-01638438", "pos": "JJ", "sense": "of long duration", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "older": { "form": "older", "wordnet_id": "a-02100031", "pos": "JJ", "sense": "used of the older of two persons of the same name especially used to distinguish a father from his son", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "only": { "form": "only", "wordnet_id": "a-02214736", "pos": "JJ", "sense": "being the only one", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "oozes": { "form": "oozes", "wordnet_id": "", "pos": "VBZ", "sense": "", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "open": { "form": "open", "cornetto_synset_id": "n_a-521880", "wordnet_id": "a-02130821", "pos": "JJ", "sense": "not brought to a conclusion", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "open-minded": { "form": "open-minded", "cornetto_synset_id": "n_a-533914", "wordnet_id": "a-00287498", "pos": "JJ", "sense": "ready to entertain new ideas", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "opposite": { "form": "opposite", "wordnet_id": "a-02071139", "pos": "JJ", "sense": "moving or facing away from each other", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "optimum": { "form": "optimum", "cornetto_synset_id": "n_a-522061", "wordnet_id": "a-00228645", "pos": "JJ", "sense": "most desirable possible under a restriction expressed or implied", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "ordinary": { "form": "ordinary", "wordnet_id": "a-01672607", "pos": "JJ", "sense": "not exceptional in any way especially in quality or ability or size or degree", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "original": { "form": "original", "wordnet_id": "a-01853039", "pos": "JJ", "sense": "(of e.g. information) not secondhand or by way of something intermediary", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "orthodox": { "form": "orthodox", "cornetto_synset_id": "n_a-522187", "wordnet_id": "a-01689880", "pos": "JJ", "sense": "adhering to what is commonly accepted", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "other": { "form": "other", "wordnet_id": "a-02069355", "pos": "JJ", "sense": "not the same one or ones already mentioned or implied", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "outdated": { "form": "outdated", "cornetto_synset_id": "n_a-533656", "wordnet_id": "a-00669138", "pos": "JJ", "sense": "old", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "outraged": { "form": "outraged", "wordnet_id": "", "pos": "VB", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "outrageous": { "form": "outrageous", "wordnet_id": "a-01626562", "pos": "JJ", "sense": "grossly offensive to decency or morality", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "outside": { "form": "outside", "wordnet_id": "a-01692969", "pos": "JJ", "sense": "relating to or being on or near the outer side or limit", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "outstanding": { "form": "outstanding", "wordnet_id": "a-02343762", "pos": "JJ", "sense": "distinguished from others in excellence", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "over-the-top": { "form": "over-the-top", "wordnet_id": "a-01534648", "pos": "JJ", "sense": "far more than usual or expected", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "overall": { "form": "overall", "wordnet_id": "a-01582946", "pos": "JJ", "sense": "including everything", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "overboard": { "form": "overboard", "wordnet_id": "r-506715", "pos": "RB", "sense": "to extremes", "polarity": "-0.3", "subjectivity": "0.3", "intensity": "1.0", "reliability": "0.9" }, "overexcited": { "form": "overexcited", "cornetto_synset_id": "n_a-522310", "wordnet_id": "a-00920422", "pos": "JJ", "sense": "unduly excited", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "overwhelming": { "form": "overwhelming", "wordnet_id": "a-01511152", "pos": "JJ", "sense": "very intense", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "own": { "form": "own", "cornetto_synset_id": "n_a-504151", "wordnet_id": "a-01768724", "pos": "JJ", "sense": "belonging to or on behalf of a specified person (especially yourself)", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "painful": { "form": "painful", "cornetto_synset_id": "n_a-523334", "wordnet_id": "a-01711071", "pos": "JJ", "sense": "causing physical or psychological pain", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "pale": { "form": "pale", "wordnet_id": "v-103619", "pos": "VB", "sense": "turn pale, as if in fear", "polarity": "-0.3", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "palpable": { "form": "palpable", "wordnet_id": "a-01747713", "pos": "JJ", "sense": "can be felt by palpation", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "parade": { "form": "parade", "wordnet_id": "v-1924712", "pos": "VB", "sense": "walk ostentatiously", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "reliability": "0.9" }, "parallel": { "form": "parallel", "cornetto_synset_id": "d_a-9265", "wordnet_id": "a-01718158", "pos": "JJ", "sense": "being everywhere equidistant and not intersecting", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "partial": { "form": "partial", "cornetto_synset_id": "n_r-509803", "wordnet_id": "a-00524693", "pos": "JJ", "sense": "being or affecting only a part", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "particular": { "form": "particular", "wordnet_id": "a-01853228", "pos": "JJ", "sense": "first and most important", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "passionate": { "form": "passionate", "cornetto_synset_id": "n_a-508813", "wordnet_id": "a-01725712", "pos": "JJ", "sense": "having or expressing strong emotions", "polarity": "0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "past": { "form": "past", "wordnet_id": "a-01727926", "pos": "JJ", "sense": "earlier than the present time", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "pathetic": { "form": "pathetic", "wordnet_id": "a-00905181", "pos": "JJ", "sense": "inspiring mixed contempt and pity", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "peaceful": { "form": "peaceful", "wordnet_id": "a-02513101", "pos": "JJ", "sense": "peacefully resistant in response to injustice", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "peaky": { "form": "peaky", "cornetto_synset_id": "n_a-528597", "wordnet_id": "a-01214255", "pos": "JJ", "sense": "having or as if having especially high-pitched spots", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "peevish": { "form": "peevish", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "reliability": "0.9" }, "peppery": { "form": "peppery", "cornetto_synset_id": "n_a-510413", "wordnet_id": "a-02397496", "pos": "JJ", "sense": "having the piquant burning taste of peppers", "polarity": "-0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "perfect": { "form": "perfect", "wordnet_id": "a-01749320", "pos": "JJ", "sense": "being complete of its kind and without defect or blemish", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "perpetually": { "form": "perpetually", "wordnet_id": "r-227968", "pos": "RB", "sense": "everlastingly", "polarity": "-0.05", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "perplexed": { "form": "perplexed", "cornetto_synset_id": "n_a-529451", "wordnet_id": "a-01765643", "pos": "JJ", "sense": "full of difficulty or confusion or bewilderment", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "personal": { "form": "personal", "cornetto_synset_id": "n_a-523170", "wordnet_id": "a-01767329", "pos": "JJ", "sense": "concerning or affecting a particular person or his or her private life and personality", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "phantasmagoric": { "form": "phantasmagoric", "cornetto_synset_id": "n_a-530055", "wordnet_id": "a-01943067", "pos": "JJ", "sense": "characterized by fantastic imagery and incongruous juxtapositions", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "phenomenal": { "form": "phenomenal", "wordnet_id": "a-02859708", "pos": "JJ", "sense": "of or relating to a phenomenon", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "philosophic": { "form": "philosophic", "cornetto_synset_id": "n_a-534873", "wordnet_id": "a-02858231", "pos": "JJ", "sense": "of or relating to philosophy or philosophers", "polarity": "0.2", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "philosophical": { "form": "philosophical", "cornetto_synset_id": "n_a-534873", "wordnet_id": "a-02858231", "pos": "JJ", "sense": "of or relating to philosophy or philosophers", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "physical": { "form": "physical", "wordnet_id": "a-01778212", "pos": "JJ", "sense": "involving the body as distinguished from the mind or spirit", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "pinheads": { "form": "pinheads", "wordnet_id": "", "pos": "NNS", "sense": "", "polarity": "-0.3", "subjectivity": "0.5", "intensity": "1.0", "reliability": "0.9" }, "pink": { "form": "pink", "cornetto_synset_id": "n_a-526273", "wordnet_id": "a-00379595", "pos": "JJ", "sense": "of a light shade of red", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "pious": { "form": "pious", "cornetto_synset_id": "d_a-9319", "wordnet_id": "a-01781478", "pos": "JJ", "sense": "having or showing or expressing reverence for a deity", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "pity": { "form": "pity", "wordnet_id": "n-7305098", "pos": "NN", "sense": "an unfortunate development", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "pivotal": { "form": "pivotal", "cornetto_synset_id": "n_a-503757", "wordnet_id": "a-00656507", "pos": "JJ", "sense": "being of crucial importance", "polarity": "0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "placid": { "form": "placid", "cornetto_synset_id": "n_a-527854", "wordnet_id": "a-00302951", "pos": "JJ", "sense": "(of a body of water) free from disturbance by heavy waves", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "plain": { "form": "plain", "wordnet_id": "a-01907103", "pos": "JJ", "sense": "not mixed with extraneous elements", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "platitudes": { "form": "platitudes", "wordnet_id": "", "pos": "", "sense": "NNS", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "plausible": { "form": "plausible", "wordnet_id": "a-02182728", "pos": "JJ", "sense": "given to or characterized by presenting specious arguments", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "pleasant": { "form": "pleasant", "cornetto_synset_id": "n_a-532410", "wordnet_id": "a-01800349", "pos": "JJ", "sense": "affording pleasure", "polarity": "0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "pleased": { "form": "pleased", "wordnet_id": "a-01805157", "pos": "JJ", "sense": "experiencing or manifesting pleasure", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "pleonastic": { "form": "pleonastic", "cornetto_synset_id": "d_a-9483", "wordnet_id": "a-00549826", "pos": "JJ", "sense": "repetition of same sense in different words", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "plod": { "form": "plod", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "plodding": { "form": "plodding", "wordnet_id": "n-291965", "pos": "NN", "sense": "the act of walking with a slow heavy gait", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.9" }, "poetic": { "form": "poetic", "wordnet_id": "a-02857295", "pos": "JJ", "sense": "of or relating to poets", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "poignant": { "form": "poignant", "wordnet_id": "a-01712174", "pos": "JJ", "sense": "keenly distressing to the mind or feelings", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "pointless": { "form": "pointless", "wordnet_id": "a-02503305", "pos": "JJ", "sense": "serving no useful purpose", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "polar": { "form": "polar", "wordnet_id": "a-02444147", "pos": "JJ", "sense": "of or existing at or near a geographical pole or within the Arctic or Antarctic Circles", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "political": { "form": "political", "cornetto_synset_id": "d_a-9492", "wordnet_id": "a-02857587", "pos": "JJ", "sense": "of or relating to the profession of governing", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "poor": { "form": "poor", "cornetto_synset_id": "d_a-9161", "wordnet_id": "a-02022953", "pos": "JJ", "sense": "having little money or few possessions", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "popular": { "form": "popular", "cornetto_synset_id": "n_a-523989", "wordnet_id": "a-00414518", "pos": "JJ", "sense": "(of music or art) new and of general appeal (especially among young people)", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "positive": { "form": "positive", "wordnet_id": "a-01820481", "pos": "JJ", "sense": "indicating existence or presence of a suspected condition or pathogen", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "possible": { "form": "possible", "wordnet_id": "a-01821266", "pos": "JJ", "sense": "capable of happening or existing", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "potent": { "form": "potent", "wordnet_id": "a-01825419", "pos": "JJ", "sense": "(of a male) capable of copulation", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "potential": { "form": "potential", "wordnet_id": "a-01884176", "pos": "JJ", "sense": "expected to become or be", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "powerful": { "form": "powerful", "wordnet_id": "a-02323072", "pos": "JJ", "sense": "strong enough to knock down or overwhelm", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "powerless": { "form": "powerless", "cornetto_synset_id": "n_a-513099", "wordnet_id": "a-01827535", "pos": "JJ", "sense": "lacking power", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "preachy": { "form": "preachy", "wordnet_id": "a-1325273", "pos": "JJ", "sense": "inclined to or marked by tedious moralization", "polarity": "-0.2", "subjectivity": "0.3", "intensity": "1.0", "reliability": "0.9" }, "precious": { "form": "precious", "wordnet_id": "a-02587556", "pos": "JJ", "sense": "held in great esteem for admirable qualities especially of an intrinsic nature", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "precise": { "form": "precise", "cornetto_synset_id": "n_a-510774", "wordnet_id": "a-01837744", "pos": "JJ", "sense": "sharply exact or accurate or delimited", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "predictable": { "form": "predictable", "wordnet_id": "a-01841544", "pos": "JJ", "sense": "capable of being foretold", "polarity": "-0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "pregnant": { "form": "pregnant", "wordnet_id": "a-01497387", "pos": "JJ", "sense": "rich in significance or implication", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "present": { "form": "present", "wordnet_id": "a-01846413", "pos": "JJ", "sense": "being or existing in a specified place", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "pretentious": { "form": "pretentious", "wordnet_id": "a-1849288", "pos": "JJ", "sense": "making claim to or creating an appearance of (often undeserved) importance or distinction", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.9" }, "pretty": { "form": "pretty", "wordnet_id": "a-01128871", "pos": "JJ", "sense": "(used ironically) unexpectedly bad", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "previous": { "form": "previous", "wordnet_id": "a-01729819", "pos": "JJ", "sense": "(used especially of persons) of the immediate past", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "priceless": { "form": "priceless", "wordnet_id": "a-02501367", "pos": "JJ", "sense": "having incalculable monetary, intellectual, or spiritual worth", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "primary": { "form": "primary", "wordnet_id": "a-01856238", "pos": "JJ", "sense": "of or being the essential or basic part", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "prior": { "form": "prior", "wordnet_id": "a-00122128", "pos": "JJ", "sense": "earlier in time", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "prissy": { "form": "prissy", "wordnet_id": "", "pos": "", "sense": "", "polarity": "-0.3", "subjectivity": "0.4", "intensity": "1.0", "reliability": "0.9" }, "private": { "form": "private", "wordnet_id": "a-01858094", "pos": "JJ", "sense": "confined to particular persons or groups or providing privacy", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "professional": { "form": "professional", "wordnet_id": "a-02839695", "pos": "JJ", "sense": "of or relating to or suitable as a profession", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "profitering": { "form": "profitering", "wordnet_id": "", "pos": "VB", "polarity": "-0.3", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.9" }, "profound": { "form": "profound", "wordnet_id": "a-02162934", "pos": "JJ", "sense": "far-reaching and thoroughgoing in effect especially on the nature of something", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "prolix": { "form": "prolix", "cornetto_synset_id": "n_a-516733", "wordnet_id": "a-00548781", "pos": "JJ", "sense": "tediously prolonged or tending to speak or write at great length", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "prominent": { "form": "prominent", "wordnet_id": "a-00580805", "pos": "JJ", "sense": "having a quality that thrusts itself into attention", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "promising": { "form": "promising", "wordnet_id": "a-01412286", "pos": "JJ", "sense": "showing possibility of achievement or excellence", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "propaganda": { "form": "propaganda", "wordnet_id": "n-6674542", "pos": "NN", "sense": "information that is spread for the purpose of promoting some cause", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "reliability": "0.9" }, "proper": { "form": "proper", "cornetto_synset_id": "n_a-525198", "wordnet_id": "a-00135455", "pos": "JJ", "sense": "appropriate for a condition or purpose or occasion or a person's character, needs", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "proud": { "form": "proud", "cornetto_synset_id": "d_a-9551", "wordnet_id": "a-01889256", "pos": "JJ", "sense": "feeling self-respect or pleasure in something by which you measure your self-worth", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "proves": { "form": "proves", "wordnet_id": "", "pos": "VB", "polarity": "0.3", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "psychological": { "form": "psychological", "cornetto_synset_id": "n_a-524671", "wordnet_id": "a-02905794", "pos": "JJ", "sense": "of or relating to or determined by psychology", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "psychotic": { "form": "psychotic", "cornetto_synset_id": "n_a-524683", "wordnet_id": "a-02077469", "pos": "JJ", "sense": "characteristic of or suffering from psychosis", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "public": { "form": "public", "cornetto_synset_id": "n_a-521887", "wordnet_id": "a-01861205", "pos": "JJ", "sense": "not private", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "pure": { "form": "pure", "wordnet_id": "a-01905653", "pos": "JJ", "sense": "free of extraneous elements of any kind", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "putative": { "form": "putative", "cornetto_synset_id": "n_a-532582", "wordnet_id": "a-00028471", "pos": "JJ", "sense": "purported", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "questionable": { "form": "questionable", "wordnet_id": "a-01916229", "pos": "JJ", "sense": "subject to question", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "quick": { "form": "quick", "wordnet_id": "a-01335903", "pos": "JJ", "sense": "apprehending and responding with speed and sensitivity", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "quiet": { "form": "quiet", "wordnet_id": "a-01922763", "pos": "JJ", "sense": "characterized by an absence or near absence of agitation or activity", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "quirky": { "form": "quirky", "cornetto_synset_id": "n_a-504364", "wordnet_id": "a-00609564", "pos": "JJ", "sense": "informal terms", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "quixotic": { "form": "quixotic", "cornetto_synset_id": "n_a-526106", "wordnet_id": "a-01837182", "pos": "JJ", "sense": "not sensible about practical matters", "polarity": "0.2", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "rancorous": { "form": "rancorous", "cornetto_synset_id": "d_a-9567", "wordnet_id": "a-00116940", "pos": "JJ", "sense": "showing deep-seated resentment", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "random": { "form": "random", "wordnet_id": "a-01924316", "pos": "JJ", "sense": "lacking any definite plan or order or purpose", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "rank": { "form": "rank", "cornetto_synset_id": "n_a-525065", "wordnet_id": "a-01002256", "pos": "JJ", "sense": "very fertile", "polarity": "-0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "rare": { "form": "rare", "cornetto_synset_id": "d_a-9624", "wordnet_id": "a-00017024", "pos": "JJ", "sense": "not widely distributed", "polarity": "0.3", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "raucous": { "form": "raucous", "cornetto_synset_id": "n_a-512205", "wordnet_id": "a-01667110", "pos": "JJ", "sense": "disturbing the public peace", "polarity": "-0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "raunchy": { "form": "raunchy", "wordnet_id": "a-02134701", "pos": "JJ", "sense": "earthy and sexually explicit", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "raw": { "form": "raw", "wordnet_id": "a-01954943", "pos": "JJ", "sense": "not processed or refined", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "ready": { "form": "ready", "wordnet_id": "a-02565701", "pos": "JJ", "sense": "mentally disposed", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "real": { "form": "real", "cornetto_synset_id": "", "wordnet_id": "", "pos": "RB", "sense": "'real' is sometimes used informally for 'really'", "polarity": "0.2", "subjectivity": "0.4", "intensity": "2.0", "confidence": "0.8" }, "realistic": { "form": "realistic", "wordnet_id": "a-02787290", "pos": "JJ", "sense": "of or relating to the philosophical doctrine of realism", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "really": { "form": "really", "wordnet_id": "r-00037226", "pos": "RB", "sense": "in accordance with truth or fact or reality", "polarity": "0.0", "subjectivity": "1.0", "intensity": "2.0", "confidence": "0.9" }, "reasonable": { "form": "reasonable", "cornetto_synset_id": "n_a-520216", "wordnet_id": "a-01943406", "pos": "JJ", "sense": "showing reason or sound judgment", "polarity": "0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "recent": { "form": "recent", "wordnet_id": "a-01730444", "pos": "JJ", "sense": "of the immediate past or just previous to the present time", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "recognizable": { "form": "recognizable", "wordnet_id": "a-01747996", "pos": "JJ", "sense": "easily perceived", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "red": { "form": "red", "cornetto_synset_id": "n_a-526144", "wordnet_id": "a-00381097", "pos": "JJ", "sense": "of a color at the end of the color spectrum (next to orange)", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "redeeming": { "form": "redeeming", "wordnet_id": "a-01124574", "pos": "JJ", "sense": "compensating for some fault or defect", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "redoubtable": { "form": "redoubtable", "cornetto_synset_id": "n_a-509670", "wordnet_id": "a-01983432", "pos": "JJ", "sense": "worthy of respect or honor", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "redundant": { "form": "redundant", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "refreshing": { "form": "refreshing", "wordnet_id": "a-01642245", "pos": "JJ", "sense": "pleasantly new or different", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "regrets": { "form": "regrets", "wordnet_id": "", "pos": "NNS", "sense": "", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "regular": { "form": "regular", "wordnet_id": "a-02469577", "pos": "JJ", "sense": "often used as intensifiers", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "regurgitates": { "form": "regurgitates", "wordnet_id": "", "pos": "VBZ", "sense": "", "polarity": "-0.3", "subjectivity": "0.3", "intensity": "1.0", "reliability": "0.9" }, "rehash": { "form": "rehash", "wordnet_id": "v-1162629", "pos": "VB", "sense": "present or use over, with no or few changes", "polarity": "-0.05", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "related": { "form": "related", "cornetto_synset_id": "n_a-532834", "wordnet_id": "a-01972820", "pos": "JJ", "sense": "being connected either logically or causally or by shared characteristics ", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "relative": { "form": "relative", "wordnet_id": "a-00482673", "pos": "JJ", "sense": "properly related in size or degree or other measurable characteristics", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "relevant": { "form": "relevant", "cornetto_synset_id": "n_a-525520", "wordnet_id": "a-01975138", "pos": "JJ", "sense": "having a bearing on or connection with the subject at issue", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "religious": { "form": "religious", "cornetto_synset_id": "n_a-528588", "wordnet_id": "a-02056265", "pos": "JJ", "sense": "concerned with sacred matters or religion or the church", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "remarkable": { "form": "remarkable", "wordnet_id": "a-02163602", "pos": "JJ", "sense": "worthy of notice", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "reminiscent": { "form": "reminiscent", "wordnet_id": "a-01977669", "pos": "JJ", "sense": "serving to bring to mind", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "remote": { "form": "remote", "wordnet_id": "a-01413084", "pos": "JJ", "sense": "very unlikely", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "repellent": { "form": "repellent", "cornetto_synset_id": "n_a-534469", "wordnet_id": "a-00007990", "pos": "JJ", "sense": "incapable of absorbing or mixing with", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "repetitive": { "form": "repetitive", "wordnet_id": "a-01964367", "pos": "JJ", "sense": "characterized by repetition", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "reputable": { "form": "reputable", "cornetto_synset_id": "n_a-503878", "wordnet_id": "a-01982646", "pos": "JJ", "sense": "having a good reputation", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "resourceful": { "form": "resourceful", "cornetto_synset_id": "n_a-533083", "wordnet_id": "a-00307182", "pos": "JJ", "sense": "having inner resources", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "respectable": { "form": "respectable", "wordnet_id": "a-01983162", "pos": "JJ", "sense": "deserving of esteem and respect", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "respectful": { "form": "respectful", "cornetto_synset_id": "n_a-508023", "wordnet_id": "a-01993940", "pos": "JJ", "sense": "full of or exhibiting respect", "polarity": "0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "respective": { "form": "respective", "cornetto_synset_id": "n_a-503872", "wordnet_id": "a-00494409", "pos": "JJ", "sense": "considered individually", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "responsible": { "form": "responsible", "cornetto_synset_id": "n_a-532263", "wordnet_id": "a-01996377", "pos": "JJ", "sense": "worthy of or requiring responsibility or trust", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "retard": { "form": "retard", "wordnet_id": "n-10197525", "pos": "NN", "sense": "a person of subnormal intelligence", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "retards": { "form": "retards", "wordnet_id": "", "pos": "NNS", "sense": "", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "retarded": { "form": "retarded", "wordnet_id": "a-1840366", "pos": "JJ", "sense": "relatively slow in mental or emotional or physical development", "polarity": "-0.8", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "rewarding": { "form": "rewarding", "wordnet_id": "a-02015571", "pos": "JJ", "sense": "providing personal satisfaction", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "rich": { "form": "rich", "wordnet_id": "a-02560402", "pos": "JJ", "sense": "containing plenty of fat, or eggs, or sugar", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "ridiculous": { "form": "ridiculous", "wordnet_id": "a-02570643", "pos": "JJ", "sense": "incongruous", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "right": { "form": "right", "wordnet_id": "a-02082081", "pos": "JJ", "sense": "in or into a satisfactory condition", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "right-minded": { "form": "right-minded", "cornetto_synset_id": "d_a-9251", "wordnet_id": "a-00633581", "pos": "JJ", "sense": "disposed toward or having views based on what is right", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "rightist": { "form": "rightist", "cornetto_synset_id": "n_a-525199", "wordnet_id": "a-02030793", "pos": "JJ", "sense": "believing in or supporting tenets of the political right", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "rip-off": { "form": "rip-off", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "reliability": "0.9" }, "risk-free": { "form": "risk-free", "cornetto_synset_id": "n_a-532179", "wordnet_id": "a-02058529", "pos": "JJ", "sense": "thought to be devoid of risk", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "riveting": { "form": "riveting", "cornetto_synset_id": "n_a-501243", "wordnet_id": "a-01344171", "pos": "JJ", "sense": "capable of arousing and holding the attention", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "robotic": { "form": "robotic", "wordnet_id": "a-2939781", "pos": "JJ", "sense": "of or relating to mechanical robots", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "rofl": { "form": "rofl", "wordnet_id": "", "pos": "UH", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.9" }, "rohypnol": { "form": "rohypnol", "wordnet_id": "", "pos": "", "sense": "", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "romantic": { "form": "romantic", "wordnet_id": "a-02789151", "pos": "JJ", "sense": "belonging to or characteristic of Romanticism or the Romantic Movement in the arts", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "rose": { "form": "rose", "cornetto_synset_id": "n_a-532117", "wordnet_id": "a-00382173", "pos": "JJ", "sense": "of something having a dusty purplish pink color", "polarity": "0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "rough": { "form": "rough", "cornetto_synset_id": "d_a-9510", "wordnet_id": "a-02238462", "pos": "JJ", "sense": "having or caused by an irregular surface", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "roughage": { "form": "roughage", "wordnet_id": "n-7568818", "pos": "NN", "sense": "coarse, indigestible plant food low in nutrients", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "round": { "form": "round", "cornetto_synset_id": "n_a-504584", "wordnet_id": "a-00916524", "pos": "JJ", "sense": "(mathematics) expressed to the nearest integer, ten, hundred, or thousand", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "rude": { "form": "rude", "wordnet_id": "a-01952643", "pos": "JJ", "sense": "(used especially of commodities) being unprocessed or manufactured using only simple or minimal processes", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "ruins": { "form": "ruins", "wordnet_id": "", "pos": "VBZ", "sense": "", "polarity": "-0.3", "subjectivity": "0.4", "intensity": "1.0", "reliability": "0.9" }, "rural": { "form": "rural", "wordnet_id": "a-02050452", "pos": "JJ", "sense": "living in or characteristic of farming or country life", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "russian": { "form": "russian", "cornetto_synset_id": "n_a-500919", "wordnet_id": "a-02957276", "pos": "JJ", "sense": "of or pertaining to or characteristic of Russia or its people or culture or language", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "ruthless": { "form": "ruthless", "wordnet_id": "a-01508086", "pos": "JJ", "sense": "without mercy or pity", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "sad": { "form": "sad", "cornetto_synset_id": "n_a-532342", "wordnet_id": "a-01361863", "pos": "JJ", "sense": "experiencing or showing sorrow or unhappiness", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "sadism": { "form": "sadism", "wordnet_id": "n-7493830", "pos": "NN", "sense": "sexual pleasure obtained by inflicting harm (physical or psychological) on others", "polarity": "-0.05", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "safe": { "form": "safe", "wordnet_id": "a-02273643", "pos": "JJ", "sense": "financially sound", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "same": { "form": "same", "wordnet_id": "a-02068476", "pos": "JJ", "sense": "same in identity", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "sarcastic": { "form": "sarcastic", "cornetto_synset_id": "n_a-526596", "wordnet_id": "a-02079029", "pos": "JJ", "sense": "expressing or expressive of ridicule that wounds", "polarity": "0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "satisfied": { "form": "satisfied", "wordnet_id": "a-01519673", "pos": "JJ", "sense": "allayed", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "satisfying": { "form": "satisfying", "wordnet_id": "a-02558528", "pos": "JJ", "sense": "providing abundant nourishment", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "satisyfing": { "form": "satisyfing", "wordnet_id": "", "pos": "JJ", "polarity": "0.6", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.9" }, "scary": { "form": "scary", "cornetto_synset_id": "n_a-503573", "wordnet_id": "a-00194924", "pos": "JJ", "sense": "provoking fear terror", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "scarey": { "form": "scarey", "wordnet_id": "", "pos": "JJ", "sense": "provoking fear terror", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "scathing": { "form": "scathing", "cornetto_synset_id": "n_a-526928", "wordnet_id": "a-00648614", "pos": "JJ", "sense": "marked by harshly abusive criticism", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "scum": { "form": "scum", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.3", "subjectivity": "0.4", "intensity": "1.0", "reliability": "0.9" }, "seamless": { "form": "seamless", "cornetto_synset_id": "n_a-519505", "wordnet_id": "a-00464845", "pos": "JJ", "sense": "perfectly consistent and coherent", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "seasoned": { "form": "seasoned", "wordnet_id": "a-01494959", "pos": "JJ", "sense": "aged or processed", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "sec": { "form": "sec", "cornetto_synset_id": "n_a-507619", "wordnet_id": "a-02368247", "pos": "JJ", "sense": "(of champagne) moderately dry", "polarity": "-0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "second": { "form": "second", "wordnet_id": "a-02202146", "pos": "JJ", "sense": "coming next after the first in position in space or time or degree or magnitude", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "secondary": { "form": "secondary", "wordnet_id": "a-01857956", "pos": "JJ", "sense": "depending on or incidental to what is original or primary", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "secondhand": { "form": "secondhand", "cornetto_synset_id": "n_a-531522", "wordnet_id": "a-01640482", "pos": "JJ", "sense": "previously used or owned by another", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "secret": { "form": "secret", "cornetto_synset_id": "n_a-512251", "wordnet_id": "a-02090069", "pos": "JJ", "sense": "not open or public", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "secure": { "form": "secure", "cornetto_synset_id": "d_a-9565", "wordnet_id": "a-02093888", "pos": "JJ", "sense": "free from danger or risk", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "seizures": { "form": "seizures", "wordnet_id": "", "pos": "NNS", "sense": "", "polarity": "-0.05", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "self-acting": { "form": "self-acting", "cornetto_synset_id": "n_a-502775", "wordnet_id": "a-00182225", "pos": "JJ", "sense": "designed to activate or move or regulate itself", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "selfish": { "form": "selfish", "wordnet_id": "a-02098325", "pos": "JJ", "sense": "concerned chiefly or only with yourself and your advantage to the exclusion of others", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "sensational": { "form": "sensational", "wordnet_id": "a-02796425", "pos": "JJ", "sense": "relating to or concerned in sensation", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "sensitive": { "form": "sensitive", "cornetto_synset_id": "c_566", "wordnet_id": "a-02105990", "pos": "JJ", "sense": "being susceptible to the attitudes, feelings, or circumstances of others", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "sentimental": { "form": "sentimental", "wordnet_id": "a-02449287", "pos": "JJ", "sense": "given to or marked by sentiment or sentimentality", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "serious": { "form": "serious", "wordnet_id": "a-02123314", "pos": "JJ", "sense": "completely lacking in playfulness", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "seriously": { "form": "seriously", "wordnet_id": "r-00165018", "pos": "RB", "sense": "in a serious manner", "polarity": "-0.1", "subjectivity": "1.0", "intensity": "2.0", "confidence": "0.9" }, "sermon": { "form": "sermon", "wordnet_id": "n-7243837", "pos": "NN", "sense": "an address of a religious nature (usually delivered during a church service)", "polarity": "-0.05", "subjectivity": "0.1", "intensity": "1.0", "reliability": "0.9" }, "several": { "form": "several", "wordnet_id": "a-02268268", "pos": "JJ", "sense": "(used with count nouns) of an indefinite number more than 2 or 3 but not many", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "sexual": { "form": "sexual", "wordnet_id": "a-02887578", "pos": "JJ", "sense": "of or relating to or characterized by sexuality", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "sexy": { "form": "sexy", "wordnet_id": "a-02137538", "pos": "JJ", "sense": "exciting sexual desire", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "shady": { "form": "shady", "wordnet_id": "a-02466566", "pos": "JJ", "sense": "(of businesses and businessmen) unscrupulous", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "shaky": { "form": "shaky", "wordnet_id": "a-02095037", "pos": "JJ", "sense": "not secure", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "shallow": { "form": "shallow", "wordnet_id": "a-01875227", "pos": "JJ", "sense": "lacking depth of intellect or knowledge", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "sham": { "form": "sham", "wordnet_id": "", "pos": "NN", "sense": "", "polarity": "-0.2", "subjectivity": "0.3", "intensity": "1.0", "reliability": "0.9" }, "shapeless": { "form": "shapeless", "wordnet_id": "a-2142306", "pos": "JJ", "sense": "lacking symmetry or attractive form", "polarity": "-0.2", "subjectivity": "0.3", "intensity": "1.0", "reliability": "0.9" }, "sharp": { "form": "sharp", "wordnet_id": "a-01804728", "pos": "JJ", "sense": "harsh", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "sheer": { "form": "sheer", "wordnet_id": "a-01907103", "pos": "JJ", "sense": "not mixed with extraneous elements", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "shit": { "form": "shit", "wordnet_id": "n-13555775", "pos": "NN", "sense": "a coarse term for defecation", "polarity": "-0.2", "subjectivity": "0.8", "intensity": "1.0", "label": "profanity", "confidence": "0.9" }, "shocked": { "form": "shocked", "cornetto_synset_id": "n_a-530609", "wordnet_id": "a-00078576", "pos": "JJ", "sense": "struck with fear, dread, or consternation", "polarity": "-0.7", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.9" }, "shocking": { "form": "shocking", "wordnet_id": "a-02101757", "pos": "JJ", "sense": "glaringly vivid and graphic", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "shoddy": { "form": "shoddy", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.3", "subjectivity": "0.5", "intensity": "1.0", "reliability": "0.9" }, "short": { "form": "short", "cornetto_synset_id": "n_a-515879", "wordnet_id": "a-01442186", "pos": "JJ", "sense": "primarily temporal sense", "polarity": "0.0", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "shouldn't": { "form": "shouldn't", "wordnet_id": "", "pos": "VB", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.9" }, "showery": { "form": "showery", "cornetto_synset_id": "n_a-525393", "wordnet_id": "a-02550333", "pos": "JJ", "sense": "(of weather) wet by periods of rain", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "shrieky": { "form": "shrieky", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.4", "subjectivity": "0.4", "intensity": "1.0", "reliability": "0.9" }, "shrill": { "form": "shrill", "cornetto_synset_id": "n_a-507298", "wordnet_id": "a-01214430", "pos": "JJ", "sense": "having or emitting a high-pitched and sharp tone or tones ", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "shy": { "form": "shy", "wordnet_id": "a-02337558", "pos": "JJ", "sense": "short", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "sick": { "form": "sick", "wordnet_id": "a-02541302", "pos": "JJ", "sense": "affected by an impairment of normal physical or mental function", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "sickening": { "form": "sickening", "wordnet_id": "", "pos": "JJ", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "significant": { "form": "significant", "wordnet_id": "a-02165655", "pos": "JJ", "sense": "too closely correlated to be attributed to chance and therefore indicating a systematic relation", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "silent": { "form": "silent", "cornetto_synset_id": "n_a-529361", "wordnet_id": "a-01919428", "pos": "JJ", "sense": "marked by absence of sound", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "silly": { "form": "silly", "wordnet_id": "a-02571536", "pos": "JJ", "sense": "ludicrous, foolish", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "similar": { "form": "similar", "wordnet_id": "a-02381495", "pos": "JJ", "sense": "(of words) expressing closely related meanings", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "simple": { "form": "simple", "wordnet_id": "a-02272047", "pos": "JJ", "sense": "exhibiting childlike simplicity and credulity", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "simplistic": { "form": "simplistic", "wordnet_id": "a-02175487", "pos": "JJ", "sense": "characterized by extreme and often misleading simplicity", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "sincere": { "form": "sincere", "wordnet_id": "a-02179279", "pos": "JJ", "sense": "open and genuine", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "single": { "form": "single", "wordnet_id": "a-02220571", "pos": "JJ", "sense": "used of flowers having usually only one row or whorl of petals", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "sinister": { "form": "sinister", "wordnet_id": "a-01131935", "pos": "JJ", "sense": "stemming from evil characteristics or forces", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "sinks": { "form": "sinks", "wordnet_id": "", "pos": "VBZ", "sense": "", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "sixth-grade": { "form": "sixth-grade", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.05", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "skeptical": { "form": "skeptical", "wordnet_id": "a-02463847", "pos": "JJ", "sense": "marked by or given to doubt", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "skilled": { "form": "skilled", "cornetto_synset_id": "c_689", "wordnet_id": "a-02225510", "pos": "JJ", "sense": "having or showing or requiring special skill", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "skittish": { "form": "skittish", "cornetto_synset_id": "n_a-528449", "wordnet_id": "a-00919155", "pos": "JJ", "sense": "unpredictably excitable (especially of horses)", "polarity": "0.7", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "slick": { "form": "slick", "wordnet_id": "a-02235520", "pos": "JJ", "sense": "made slick by e.g. ice or grease", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "slight": { "form": "slight", "wordnet_id": "a-02164913", "pos": "JJ", "sense": "lacking substance or significance", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "slipping": { "form": "slipping", "cornetto_synset_id": "d_a-9233", "wordnet_id": "a-02235994", "pos": "JJ", "sense": "moving as on a slippery surface", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "sloppy": { "form": "sloppy", "wordnet_id": "a-02550170", "pos": "JJ", "sense": "wet or smeared with a spilled liquid or moist material", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "slow": { "form": "slow", "cornetto_synset_id": "n_a-516764", "wordnet_id": "a-00980527", "pos": "JJ", "sense": "not moving quickly", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "small": { "form": "small", "wordnet_id": "a-02233680", "pos": "JJ", "sense": "have fine or very small constituent particles", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "smaller": { "form": "smaller", "cornetto_synset_id": "d_a-9404", "wordnet_id": "a-01394922", "pos": "JJ", "sense": "small or little relative to something else", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "smart": { "form": "smart", "wordnet_id": "a-01513376", "pos": "JJ", "sense": "painfully severe", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "smile": { "form": "smile", "wordnet_id": "v-28565", "pos": "VB", "sense": "change one's facial expression by spreading the lips, often to signal pleasure", "polarity": "0.3", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.9" }, "smiled": { "form": "smiled", "wordnet_id": "", "pos": "VB", "polarity": "0.6", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.9" }, "smooth": { "form": "smooth", "cornetto_synset_id": "n_a-525902", "wordnet_id": "a-02236842", "pos": "JJ", "sense": "having a surface free from roughness or bumps or ridges or irregularities", "polarity": "0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "sober": { "form": "sober", "cornetto_synset_id": "d_a-9426", "wordnet_id": "a-00799517", "pos": "JJ", "sense": "not affected by a chemical substance (especially alcohol)", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "social": { "form": "social", "cornetto_synset_id": "n_a-528221", "wordnet_id": "a-02798370", "pos": "JJ", "sense": "relating to human society and its members", "polarity": "0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "soft": { "form": "soft", "cornetto_synset_id": "n_a-535266", "wordnet_id": "a-01454636", "pos": "JJ", "sense": "(of sound) relatively low in volume", "polarity": "0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.8" }, "soft-boiled": { "form": "soft-boiled", "cornetto_synset_id": "n_a-527573", "wordnet_id": "a-00618752", "pos": "JJ", "sense": "(eggs) having the yolk still liquid", "polarity": "-0.1", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "sole": { "form": "sole", "wordnet_id": "a-02214736", "pos": "JJ", "sense": "being the only one", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "solicitous": { "form": "solicitous", "cornetto_synset_id": "n_a-535950", "wordnet_id": "a-00164681", "pos": "JJ", "sense": "showing hovering attentiveness", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "solid": { "form": "solid", "cornetto_synset_id": "d_a-9563", "wordnet_id": "a-02260035", "pos": "JJ", "sense": "of definite shape and volume", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "sophisticated": { "form": "sophisticated", "wordnet_id": "a-02270342", "pos": "JJ", "sense": "having or appealing to those having worldly knowledge and refinement and savoir-faire", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "sophomoric": { "form": "sophomoric", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "reliability": "0.9" }, "sorry": { "form": "sorry", "wordnet_id": "a-02502578", "pos": "JJ", "sense": "without merit", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "sound": { "form": "sound", "cornetto_synset_id": "c_342", "wordnet_id": "a-02275209", "pos": "JJ", "sense": "in good condition", "polarity": "0.4", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "sour": { "form": "sour", "wordnet_id": "v-458471", "pos": "VB", "sense": "go sour or spoil", "polarity": "-0.3", "subjectivity": "0.1", "intensity": "1.0", "reliability": "0.9" }, "soured": { "form": "soured", "wordnet_id": "a-2369763", "pos": "JJ", "sense": "having turned bad", "polarity": "-0.3", "subjectivity": "0.1", "intensity": "1.0", "reliability": "0.9" }, "southern": { "form": "southern", "wordnet_id": "a-01606648", "pos": "JJ", "sense": "in or characteristic of a region of the United States south of (approximately) the Mason-Dixon line", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "spanish": { "form": "spanish", "cornetto_synset_id": "n_a-500976", "wordnet_id": "a-02958576", "pos": "JJ", "sense": "of or relating to or characteristic of Spain or the people of Spain", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "special": { "form": "special", "wordnet_id": "a-02367319", "pos": "JJ", "sense": "added to a regular schedule", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "specific": { "form": "specific", "wordnet_id": "a-02989316", "pos": "JJ", "sense": "relating to or distinguishing or constituting a taxonomic species", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "spectacular": { "form": "spectacular", "cornetto_synset_id": "n_a-527561", "wordnet_id": "a-00795246", "pos": "JJ", "sense": "characteristic of spectacles or drama", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "spent": { "form": "spent", "wordnet_id": "", "pos": "VBN", "sense": "", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "reliability": "0.9" }, "spirited": { "form": "spirited", "wordnet_id": "a-00805309", "pos": "JJ", "sense": "marked by lively action", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "spiritual": { "form": "spiritual", "cornetto_synset_id": "d_a-9284", "wordnet_id": "a-00631193", "pos": "JJ", "sense": "lacking material body or form or substance", "polarity": "0.0", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "splendid": { "form": "splendid", "cornetto_synset_id": "n_a-517817", "wordnet_id": "a-00219389", "pos": "JJ", "sense": "having great beauty and splendor", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "spontaneous": { "form": "spontaneous", "cornetto_synset_id": "c_746", "wordnet_id": "a-02282376", "pos": "JJ", "sense": "happening or arising without apparent external cause", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "spoof": { "form": "spoof", "wordnet_id": "v-849939", "pos": "VB", "sense": "make a parody of", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "sprightly": { "form": "sprightly", "cornetto_synset_id": "n_a-533321", "wordnet_id": "a-02280821", "pos": "JJ", "sense": "full of spirit and vitality", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "stabbing": { "form": "stabbing", "cornetto_synset_id": "n_a-531207", "wordnet_id": "a-01162901", "pos": "JJ", "sense": "causing physical or especially psychological injury", "polarity": "-0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "stainless": { "form": "stainless", "cornetto_synset_id": "n_a-509479", "wordnet_id": "a-00247247", "pos": "JJ", "sense": "(of reputation) free from blemishes", "polarity": "0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "stale": { "form": "stale", "wordnet_id": "a-01068726", "pos": "JJ", "sense": "lacking freshness, palatability, or showing deterioration from age", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "standard": { "form": "standard", "wordnet_id": "a-02297664", "pos": "JJ", "sense": "conforming to the established language usage of educated native speakers", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "stark": { "form": "stark", "wordnet_id": "a-01792387", "pos": "JJ", "sense": "severely simple", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "starting": { "form": "starting", "cornetto_synset_id": "n_a-501322", "wordnet_id": "a-01009865", "pos": "JJ", "sense": "appropriate to the beginning or start of an event", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "startling": { "form": "startling", "wordnet_id": "a-02359958", "pos": "JJ", "sense": "so remarkably different or sudden as to cause momentary shock or alarm", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "state-supported": { "form": "state-supported", "cornetto_synset_id": "n_a-520402", "wordnet_id": "a-01862161", "pos": "JJ", "sense": "supported and operated by the government of a state", "polarity": "0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "static": { "form": "static", "cornetto_synset_id": "c_548", "wordnet_id": "a-00348018", "pos": "JJ", "sense": "showing little if any change", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "steadfast": { "form": "steadfast", "cornetto_synset_id": "n_a-506736", "wordnet_id": "a-00583581", "pos": "JJ", "sense": "firm and dependable especially in loyalty", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "steady": { "form": "steady", "wordnet_id": "a-02301560", "pos": "JJ", "sense": "not subject to change or variation especially in behavior", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "stellar": { "form": "stellar", "cornetto_synset_id": "n_a-529189", "wordnet_id": "a-01472790", "pos": "JJ", "sense": "indicating the most important performer or role", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "stereotyped": { "form": "stereotyped", "cornetto_synset_id": "n_a-531136", "wordnet_id": "a-00607977", "pos": "JJ", "sense": "lacking spontaneity or originality or individuality", "polarity": "-0.1", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "stereotypical": { "form": "stereotypical", "cornetto_synset_id": "n_a-531136", "wordnet_id": "a-00607977", "pos": "JJ", "sense": "lacking spontaneity or originality or individuality", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "stiff": { "form": "stiff", "wordnet_id": "a-02323726", "pos": "JJ", "sense": "powerful", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "stinker": { "form": "stinker", "wordnet_id": "n-4320731", "pos": "NN", "sense": "anything that gives off an offensive odor (especially a cheap cigar)", "polarity": "-0.5", "subjectivity": "0.6", "intensity": "1.0", "reliability": "0.9" }, "stinks": { "form": "stinks", "wordnet_id": "", "pos": "VBZ", "sense": "", "polarity": "-0.6", "subjectivity": "0.5", "intensity": "1.0", "reliability": "0.9" }, "straight": { "form": "straight", "cornetto_synset_id": "n_a-517483", "wordnet_id": "a-00022962", "pos": "JJ", "sense": "in keeping with the facts", "polarity": "0.3", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "straightforward": { "form": "straightforward", "wordnet_id": "a-02318728", "pos": "JJ", "sense": "without concealment or deception", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "strange": { "form": "strange", "cornetto_synset_id": "n_a-533835", "wordnet_id": "a-00966753", "pos": "JJ", "sense": "not known before", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "stretched": { "form": "stretched", "wordnet_id": "a-1432452", "pos": "JJ", "sense": "extended or spread over a wide area or distance", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "striking": { "form": "striking", "wordnet_id": "a-01284212", "pos": "JJ", "sense": "sensational in appearance or thrilling in effect", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "strong": { "form": "strong", "cornetto_synset_id": "d_a-9536", "wordnet_id": "a-02321009", "pos": "JJ", "sense": "having strength or power greater than average or expected", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "strutting": { "form": "strutting", "wordnet_id": "", "pos": "VBG", "sense": "", "polarity": "-0.3", "subjectivity": "0.4", "intensity": "1.0", "reliability": "0.9" }, "stumble": { "form": "stumble", "wordnet_id": "v-618057", "pos": "VB", "sense": "make an error", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "reliability": "0.9" }, "stunning": { "form": "stunning", "wordnet_id": "a-02360171", "pos": "JJ", "sense": "causing great astonishment and consternation", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "stupid": { "form": "stupid", "wordnet_id": "a-00439588", "pos": "JJ", "sense": "lacking or marked by lack of intellectual acuity", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "stupidity": { "form": "stupidity", "wordnet_id": "n-5645597", "pos": "NN", "sense": "a poor ability to understand or to profit from experience", "polarity": "-0.6", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "stylish": { "form": "stylish", "wordnet_id": "a-00975171", "pos": "JJ", "sense": "having elegance or taste or refinement in manners or dress", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "subconscious": { "form": "subconscious", "cornetto_synset_id": "n_a-521720", "wordnet_id": "a-00573093", "pos": "JJ", "sense": "just below the level of consciousness", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "subject": { "form": "subject", "wordnet_id": "a-02361540", "pos": "JJ", "sense": "possibly accepting or permitting", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "subnormal": { "form": "subnormal", "cornetto_synset_id": "n_a-536080", "wordnet_id": "a-01597702", "pos": "JJ", "sense": "below normal or average", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "subsequent": { "form": "subsequent", "cornetto_synset_id": "n_a-522362", "wordnet_id": "a-00122626", "pos": "JJ", "sense": "following in time or order", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "subtle": { "form": "subtle", "wordnet_id": "a-01745846", "pos": "JJ", "sense": "able to make fine distinctions", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "suburban": { "form": "suburban", "wordnet_id": "a-02804590", "pos": "JJ", "sense": "relating to or characteristic of or situated in suburbs", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "succeeds": { "form": "succeeds", "wordnet_id": "", "pos": "VB", "polarity": "0.7", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.9" }, "success": { "form": "success", "wordnet_id": "n-7319103", "pos": "NN", "sense": "an event that accomplishes its intended purpose", "polarity": "0.3", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "successful": { "form": "successful", "cornetto_synset_id": "n_a-510582", "wordnet_id": "a-02331262", "pos": "JJ", "sense": "having succeeded or being marked by a favorable outcome", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "such": { "form": "such", "wordnet_id": "a-01554230", "pos": "JJ", "sense": "of so extreme a degree or extent", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "sucker": { "form": "sucker", "wordnet_id": "", "pos": "NN", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.0", "label": "profanity", "confidence": "0.9" }, "suckers": { "form": "suckers", "wordnet_id": "", "pos": "NNS", "polarity": "-0.3", "subjectivity": "0.8", "intensity": "1.0", "label": "profanity", "confidence": "0.9" }, "sucks": { "form": "sucks", "wordnet_id": "", "pos": "VB", "polarity": "-0.3", "subjectivity": "0.3", "intensity": "1.0", "label": "profanity", "confidence": "0.9" }, "sudden": { "form": "sudden", "cornetto_synset_id": "n_a-526962", "wordnet_id": "a-01143279", "pos": "JJ", "sense": "happening without warning or in a short space of time", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "suffers": { "form": "suffers", "wordnet_id": "", "pos": "VB", "polarity": "-0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.9" }, "suffocating": { "form": "suffocating", "wordnet_id": "", "pos": "VBG", "sense": "", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "reliability": "0.9" }, "suitable": { "form": "suitable", "cornetto_synset_id": "d_a-9306", "wordnet_id": "a-01020885", "pos": "JJ", "sense": "meant or adapted for an occasion or use", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "super": { "form": "super", "wordnet_id": "a-02341864", "pos": "JJ", "sense": "of the highest quality", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "superb": { "form": "superb", "wordnet_id": "a-02342608", "pos": "JJ", "sense": "of surpassing excellence", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "superfine": { "form": "superfine", "cornetto_synset_id": "n_a-511737", "wordnet_id": "a-00229227", "pos": "JJ", "sense": "(used especially of merchandise) very fine in quality", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "superior": { "form": "superior", "cornetto_synset_id": "d_a-9183", "wordnet_id": "a-02341266", "pos": "JJ", "sense": "of high or superior quality or performance", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "supernatural": { "form": "supernatural", "cornetto_synset_id": "n_a-518064", "wordnet_id": "a-01574446", "pos": "JJ", "sense": "not existing in nature or subject to explanation according to natural laws", "polarity": "0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "supporting": { "form": "supporting", "wordnet_id": "a-02356244", "pos": "JJ", "sense": "furnishing support and encouragement", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "supportive": { "form": "supportive", "wordnet_id": "a-02354537", "pos": "JJ", "sense": "furnishing support or assistance", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "sure": { "form": "sure", "wordnet_id": "a-02465978", "pos": "JJ", "sense": "(of persons) worthy of trust or confidence", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "surprised": { "form": "surprised", "cornetto_synset_id": "n_a-532266", "wordnet_id": "a-02357479", "pos": "JJ", "sense": "taken unawares or suddenly and feeling wonder or astonishment", "polarity": "0.1", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "surprising": { "form": "surprising", "cornetto_synset_id": "n_a-532646", "wordnet_id": "a-02359464", "pos": "JJ", "sense": "causing surprise or wonder or amazement", "polarity": "0.7", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "surreal": { "form": "surreal", "wordnet_id": "a-01939226", "pos": "JJ", "sense": "resembling a dream", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "suspenseful": { "form": "suspenseful", "wordnet_id": "a-02405805", "pos": "JJ", "sense": "(of a situation) characterized by or causing suspense", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "sweet": { "form": "sweet", "wordnet_id": "a-02368336", "pos": "JJ", "sense": "having or denoting the characteristic taste of sugar", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "swill": { "form": "swill", "wordnet_id": "v-1169433", "pos": "VB", "sense": "drink large quantities of (liquid, especially alcoholic drink)", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "sympathetic": { "form": "sympathetic", "wordnet_id": "a-03008013", "pos": "JJ", "sense": "of or relating to the sympathetic nervous system", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "talented": { "form": "talented", "cornetto_synset_id": "d_a-9174", "wordnet_id": "a-01119192", "pos": "JJ", "sense": "endowed with talent or talents", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "tame": { "form": "tame", "wordnet_id": "v-202445", "pos": "VB", "sense": "correct by punishment or discipline", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "tasteless": { "form": "tasteless", "cornetto_synset_id": "n_a-528048", "wordnet_id": "a-02393401", "pos": "JJ", "sense": "lacking aesthetic or social taste", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "technical": { "form": "technical", "cornetto_synset_id": "n_a-530379", "wordnet_id": "a-02809692", "pos": "JJ", "sense": "of or relating to a practical subject that is organized according to scientific principles", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "tedious": { "form": "tedious", "cornetto_synset_id": "n_a-520533", "wordnet_id": "a-00549236", "pos": "JJ", "sense": "using or containing too many words", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "teen": { "form": "teen", "wordnet_id": "a-01647983", "pos": "JJ", "sense": "being of the age 13 through 19", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "teenage": { "form": "teenage", "wordnet_id": "a-01647983", "pos": "JJ", "sense": "being of the age 13 through 19", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "ten": { "form": "ten", "wordnet_id": "a-02187296", "pos": "JJ", "sense": "being one more than nine", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "tense": { "form": "tense", "wordnet_id": "a-02405326", "pos": "JJ", "sense": "in or of a state of physical or nervous tension", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "terminally": { "form": "terminally", "wordnet_id": "r-127449", "pos": "RB", "sense": "at the end", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "reliability": "0.9" }, "terrestrial": { "form": "terrestrial", "cornetto_synset_id": "n_a-501400", "wordnet_id": "a-00124918", "pos": "JJ", "sense": "operating or living or growing on land", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "terrible": { "form": "terrible", "wordnet_id": "a-01677200", "pos": "JJ", "sense": "extreme in degree or extent or amount or impact", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "terrific": { "form": "terrific", "wordnet_id": "a-01676517", "pos": "JJ", "sense": "extraordinarily good or great ", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "terrifying": { "form": "terrifying", "wordnet_id": "a-00196449", "pos": "JJ", "sense": "causing extreme terror", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "thanks": { "form": "thanks", "wordnet_id": "n-7228971", "pos": "NN", "sense": "an acknowledgment of appreciation", "polarity": "0.2", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.9" }, "theatrical": { "form": "theatrical", "wordnet_id": "a-02813315", "pos": "JJ", "sense": "of or relating to the theater", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "thematic": { "form": "thematic", "wordnet_id": "a-02813680", "pos": "JJ", "sense": "relating to or constituting a topic of discourse", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "theoretical": { "form": "theoretical", "cornetto_synset_id": "n_a-530704", "wordnet_id": "a-00860611", "pos": "JJ", "sense": "concerned primarily with theories or hypotheses rather than practical considerations", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "thick": { "form": "thick", "cornetto_synset_id": "n_a-529438", "wordnet_id": "a-00015480", "pos": "JJ", "sense": "abounding", "polarity": "-0.9", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "thin": { "form": "thin", "cornetto_synset_id": "c_536", "wordnet_id": "a-00988232", "pos": "JJ", "sense": "lacking excess flesh", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "third": { "form": "third", "cornetto_synset_id": "n_a-530634", "wordnet_id": "a-02202307", "pos": "JJ", "sense": "coming next after the second and just before the fourth in position", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "thought-provoking": { "form": "thought-provoking", "wordnet_id": "a-02306598", "pos": "JJ", "sense": "stimulating interest or thought", "polarity": "0.4", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.9" }, "thoughtful": { "form": "thoughtful", "wordnet_id": "a-02418872", "pos": "JJ", "sense": "exhibiting or characterized by careful thought", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "thrilled": { "form": "thrilled", "wordnet_id": "a-920704", "pos": "JJ", "sense": "feeling intense pleasurable excitement", "polarity": "0.6", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.9" }, "thrilling": { "form": "thrilling", "wordnet_id": "a-02307199", "pos": "JJ", "sense": "causing quivering or shivering as by cold or fear or electric shock", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "tidy": { "form": "tidy", "cornetto_synset_id": "n_a-519857", "wordnet_id": "a-02422685", "pos": "JJ", "sense": "marked by order and cleanliness in appearance or habits", "polarity": "0.6", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "tight": { "form": "tight", "wordnet_id": "a-02526441", "pos": "JJ", "sense": "set so close together as to be invulnerable to penetration", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "tiny": { "form": "tiny", "cornetto_synset_id": "n_a-508984", "wordnet_id": "a-01392249", "pos": "JJ", "sense": "very small", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "tired": { "form": "tired", "wordnet_id": "a-02431728", "pos": "JJ", "sense": "depleted of strength or energy", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.9" }, "tiresome": { "form": "tiresome", "cornetto_synset_id": "n_a-507469", "wordnet_id": "a-01345307", "pos": "JJ", "sense": "so lacking in interest as to cause mental weariness", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "titular": { "form": "titular", "wordnet_id": "a-02816340", "pos": "JJ", "sense": "of or relating to a legal title to something", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "toilet": { "form": "toilet", "wordnet_id": "n-828704", "pos": "NN", "sense": "the act of dressing and preparing yourself", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "toneless": { "form": "toneless", "cornetto_synset_id": "n_a-531021", "wordnet_id": "a-02430238", "pos": "JJ", "sense": "lacking in tone or expression", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "top": { "form": "top", "wordnet_id": "a-02439949", "pos": "JJ", "sense": "situated at the top or highest position", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "top-notch": { "form": "top-notch", "wordnet_id": "a-02341864", "pos": "JJ", "sense": "of the highest quality", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "topical": { "form": "topical", "cornetto_synset_id": "n_a-523453", "wordnet_id": "a-00668053", "pos": "JJ", "sense": "of interest at the present time", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "total": { "form": "total", "wordnet_id": "a-00522885", "pos": "JJ", "sense": "complete in extent or degree and in every particular", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "touching": { "form": "touching", "wordnet_id": "", "pos": "VB", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "tough": { "form": "tough", "wordnet_id": "a-02512641", "pos": "JJ", "sense": "violent and lawless", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "traditional": { "form": "traditional", "cornetto_synset_id": "n_a-531133", "wordnet_id": "a-01690767", "pos": "JJ", "sense": "pertaining to time-honored orthodox doctrines", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "tragic": { "form": "tragic", "wordnet_id": "a-02973241", "pos": "JJ", "sense": "of or relating to or characteristic of tragedy", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "trapped": { "form": "trapped", "wordnet_id": "", "pos": "VBN", "sense": "", "polarity": "-0.2", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "tremendous": { "form": "tremendous", "wordnet_id": "a-01677200", "pos": "JJ", "sense": "extreme in degree or extent or amount or impact", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "trendy": { "form": "trendy", "cornetto_synset_id": "n_a-528141", "wordnet_id": "a-00973677", "pos": "JJ", "sense": "in accord with the latest fad", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "tries": { "form": "tries", "wordnet_id": "", "pos": "VB", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.9" }, "trouble": { "form": "trouble", "wordnet_id": "v-70816", "pos": "VB", "sense": "cause bodily suffering to and make sick or indisposed", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "troubled": { "form": "troubled", "wordnet_id": "a-02455297", "pos": "JJ", "sense": "characterized by or indicative of distress or affliction or danger or need", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "true": { "form": "true", "cornetto_synset_id": "n_a-534096", "wordnet_id": "a-02460502", "pos": "JJ", "sense": "consistent with fact or reality", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "truthful": { "form": "truthful", "wordnet_id": "a-02461438", "pos": "JJ", "sense": "conforming to truth", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "twisted": { "form": "twisted", "wordnet_id": "a-01311067", "pos": "JJ", "sense": "having an intended meaning altered or misrepresented", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "two-dimensional": { "form": "two-dimensional", "wordnet_id": "a-660551", "pos": "JJ", "sense": "lacking the expected range or depth", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "reliability": "0.9" }, "typical": { "form": "typical", "wordnet_id": "a-02468635", "pos": "JJ", "sense": "exhibiting the qualities or characteristics that identify a group or kind or category", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "ugliness": { "form": "ugliness", "wordnet_id": "n-4690196", "pos": "NN", "sense": "qualities of appearance that do not give pleasure to the senses", "polarity": "-0.3", "subjectivity": "0.4", "intensity": "1.0", "reliability": "0.9" }, "ugly": { "form": "ugly", "cornetto_synset_id": "d_a-9381", "wordnet_id": "a-00220956", "pos": "JJ", "sense": "displeasing to the senses", "polarity": "-0.7", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "ugly-duckling": { "form": "ugly-duckling", "wordnet_id": "", "pos": "", "sense": "", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "ultimate": { "form": "ultimate", "wordnet_id": "a-01578312", "pos": "JJ", "sense": "furthest or highest in degree or order", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "unable": { "form": "unable", "wordnet_id": "a-01825080", "pos": "JJ", "sense": "lacking in power or forcefulness", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "unadulterated": { "form": "unadulterated", "cornetto_synset_id": "d_a-9633", "wordnet_id": "a-01907481", "pos": "JJ", "sense": "not mixed with impurities", "polarity": "0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "unaffected": { "form": "unaffected", "cornetto_synset_id": "n_a-520565", "wordnet_id": "a-00074346", "pos": "JJ", "sense": "free of artificiality", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "unanswered": { "form": "unanswered", "cornetto_synset_id": "n_a-520614", "wordnet_id": "a-01947127", "pos": "JJ", "sense": "not returned in kind", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.8" }, "unappealing": { "form": "unappealing", "wordnet_id": "a-171044", "pos": "JJ", "sense": "not able to attract favorable attention", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "reliability": "0.9" }, "unappetizing": { "form": "unappetizing", "cornetto_synset_id": "n_a-533034", "wordnet_id": "a-00133851", "pos": "JJ", "sense": "not appetizing in appearance, aroma, or taste", "polarity": "-0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "unashamed": { "form": "unashamed", "cornetto_synset_id": "n_a-521042", "wordnet_id": "a-00154965", "pos": "JJ", "sense": "used of persons or their behavior", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "unavowed": { "form": "unavowed", "cornetto_synset_id": "d_a-9288", "wordnet_id": "a-00028984", "pos": "JJ", "sense": "not openly made known", "polarity": "0.0", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "unaware": { "form": "unaware", "wordnet_id": "a-00191603", "pos": "JJ", "sense": "(often followed by 'of') not aware", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "unbefitting": { "form": "unbefitting", "cornetto_synset_id": "n_a-521127", "wordnet_id": "a-00136081", "pos": "JJ", "sense": "not befitting", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "unbelievable": { "form": "unbelievable", "wordnet_id": "a-01800169", "pos": "JJ", "sense": "having a probability too low to inspire belief", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "unblemished": { "form": "unblemished", "cornetto_synset_id": "n_a-506738", "wordnet_id": "a-00247013", "pos": "JJ", "sense": "free from physical or moral spots or stains", "polarity": "0.1", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "unblinking": { "form": "unblinking", "cornetto_synset_id": "n_a-532085", "wordnet_id": "a-00082034", "pos": "JJ", "sense": "not shrinking from danger", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "unbranded": { "form": "unbranded", "cornetto_synset_id": "n_a-518640", "wordnet_id": "a-01481513", "pos": "JJ", "sense": "not marked with a brand", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "uncared-for": { "form": "uncared-for", "cornetto_synset_id": "n_a-527970", "wordnet_id": "a-00308593", "pos": "JJ", "sense": "lacking needed care and attention", "polarity": "-0.2", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "unchaste": { "form": "unchaste", "cornetto_synset_id": "c_532", "wordnet_id": "a-00361509", "pos": "JJ", "sense": "not chaste", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "uncivil": { "form": "uncivil", "cornetto_synset_id": "n_a-517506", "wordnet_id": "a-00642725", "pos": "JJ", "sense": "lacking civility or good manners", "polarity": "-0.9", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "uncomfortable": { "form": "uncomfortable", "wordnet_id": "a-00479933", "pos": "JJ", "sense": "conducive to or feeling mental discomfort", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "uncommon": { "form": "uncommon", "cornetto_synset_id": "n_a-531811", "wordnet_id": "a-00487653", "pos": "JJ", "sense": "not common or ordinarily encountered", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "uncontroversial": { "form": "uncontroversial", "cornetto_synset_id": "n_a-521322", "wordnet_id": "a-00602721", "pos": "JJ", "sense": "not likely to arouse controversy", "polarity": "0.3", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "uncooked": { "form": "uncooked", "cornetto_synset_id": "n_a-525114", "wordnet_id": "a-00619808", "pos": "JJ", "sense": "not cooked", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "uncritical": { "form": "uncritical", "cornetto_synset_id": "n_a-516166", "wordnet_id": "a-00650351", "pos": "JJ", "sense": "marked by disregard for critical standards or procedures", "polarity": "0.0", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "uncut": { "form": "uncut", "cornetto_synset_id": "c_712", "wordnet_id": "a-00664167", "pos": "JJ", "sense": "not shaped by cutting or trimming", "polarity": "-0.5", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "undeserved": { "form": "undeserved", "wordnet_id": "a-1371646", "pos": "JJ", "sense": "not deserved or earned", "polarity": "-0.3", "subjectivity": "0.3", "intensity": "1.0", "reliability": "0.9" }, "undignified": { "form": "undignified", "cornetto_synset_id": "n_a-532253", "wordnet_id": "a-00752392", "pos": "JJ", "sense": "lacking dignity", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "unengaging": { "form": "unengaging", "wordnet_id": "", "pos": "VBG", "sense": "", "polarity": "-0.2", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "uneven": { "form": "uneven", "wordnet_id": "a-02305651", "pos": "JJ", "sense": "variable and recurring at irregular intervals ", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "unexcelled": { "form": "unexcelled", "cornetto_synset_id": "n_a-534455", "wordnet_id": "a-00229371", "pos": "JJ", "sense": "not capable of being improved on", "polarity": "0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "unexpected": { "form": "unexpected", "wordnet_id": "a-00930290", "pos": "JJ", "sense": "not expected or anticipated", "polarity": "0.1", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "unexplained": { "form": "unexplained", "wordnet_id": "a-940314", "pos": "JJ", "sense": "having the reason or cause not made clear", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "unfair": { "form": "unfair", "cornetto_synset_id": "n_a-531834", "wordnet_id": "a-00957176", "pos": "JJ", "sense": "not fair", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "unfaithful": { "form": "unfaithful", "cornetto_synset_id": "n_a-521482", "wordnet_id": "a-00024139", "pos": "JJ", "sense": "not trustworthy", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "unfocused": { "form": "unfocused", "cornetto_synset_id": "d_a-9560", "wordnet_id": "a-00782957", "pos": "JJ", "sense": "(of an image) not being in or brought into focus", "polarity": "-0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "unforgettable": { "form": "unforgettable", "cornetto_synset_id": "n_a-521585", "wordnet_id": "a-01040410", "pos": "JJ", "sense": "impossible to forget", "polarity": "0.8", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "unfortunate": { "form": "unfortunate", "wordnet_id": "a-01049462", "pos": "JJ", "sense": "not favored by fortune", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "unfortunately": { "form": "unfortunately", "wordnet_id": "r-42769", "pos": "RB", "sense": "by bad luck", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "unfruitful": { "form": "unfruitful", "cornetto_synset_id": "n_a-535779", "wordnet_id": "a-01082535", "pos": "JJ", "sense": "not fruitful", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "ungraded": { "form": "ungraded", "cornetto_synset_id": "n_a-534209", "wordnet_id": "a-01204443", "pos": "JJ", "sense": "not arranged in order hierarchically", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "unhampered": { "form": "unhampered", "cornetto_synset_id": "d_a-9598", "wordnet_id": "a-02001984", "pos": "JJ", "sense": "not slowed or blocked or interfered with", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "unhappy": { "form": "unhappy", "cornetto_synset_id": "n_a-521094", "wordnet_id": "a-01149494", "pos": "JJ", "sense": "experiencing or marked by or causing sadness or sorrow or discontent", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "unhealthy": { "form": "unhealthy", "cornetto_synset_id": "n_a-535643", "wordnet_id": "a-01172889", "pos": "JJ", "sense": "not in or exhibiting good health in body or mind", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "unhesitating": { "form": "unhesitating", "cornetto_synset_id": "n_a-521672", "wordnet_id": "a-00685924", "pos": "JJ", "sense": "characterized by quickness and firmness", "polarity": "0.1", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "unilateral": { "form": "unilateral", "cornetto_synset_id": "n_a-508018", "wordnet_id": "a-00236989", "pos": "JJ", "sense": "involving only one part or side", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "unimportant": { "form": "unimportant", "cornetto_synset_id": "n_a-520661", "wordnet_id": "a-01279978", "pos": "JJ", "sense": "not important", "polarity": "-0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "uninspired": { "form": "uninspired", "wordnet_id": "a-00923066", "pos": "JJ", "sense": "having no intellectual or emotional or spiritual excitement", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "unintelligent": { "form": "unintelligent", "cornetto_synset_id": "c_578", "wordnet_id": "a-01336587", "pos": "JJ", "sense": "lacking intelligence", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "uninterrupted": { "form": "uninterrupted", "cornetto_synset_id": "n_a-520586", "wordnet_id": "a-00291338", "pos": "JJ", "sense": "having undisturbed continuity", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "unique": { "form": "unique", "wordnet_id": "a-02215087", "pos": "JJ", "sense": "the single one of its kind", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "universal": { "form": "universal", "wordnet_id": "a-01102674", "pos": "JJ", "sense": "applicable to or common to all members of a group or set", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "unknown": { "form": "unknown", "wordnet_id": "a-02370625", "pos": "JJ", "sense": "not known to exist", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "unlikely": { "form": "unlikely", "wordnet_id": "a-01800169", "pos": "JJ", "sense": "having a probability too low to inspire belief", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "unnecessary": { "form": "unnecessary", "cornetto_synset_id": "n_a-521309", "wordnet_id": "a-01581115", "pos": "JJ", "sense": "not necessary", "polarity": "-0.4", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "unnoticed": { "form": "unnoticed", "cornetto_synset_id": "n_a-521336", "wordnet_id": "a-01608264", "pos": "JJ", "sense": "not noticed", "polarity": "-0.2", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "unoriginal": { "form": "unoriginal", "wordnet_id": "a-1688271", "pos": "JJ", "sense": "not original", "polarity": "-0.2", "subjectivity": "0.1", "intensity": "1.0", "reliability": "0.9" }, "unpaid": { "form": "unpaid", "cornetto_synset_id": "n_a-533923", "wordnet_id": "a-02521183", "pos": "JJ", "sense": "without payment", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "unplayable": { "form": "unplayable", "cornetto_synset_id": "d_a-9456", "wordnet_id": "a-00955405", "pos": "JJ", "sense": "not capable of or suitable for being played or played on", "polarity": "-0.4", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "unpleasant": { "form": "unpleasant", "cornetto_synset_id": "c_679", "wordnet_id": "a-01801600", "pos": "JJ", "sense": "disagreeable to the senses, to the mind, or feelings ", "polarity": "-0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "unprecedented": { "form": "unprecedented", "cornetto_synset_id": "n_a-521055", "wordnet_id": "a-00128572", "pos": "JJ", "sense": "having no precedent", "polarity": "0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "unpredictable": { "form": "unpredictable", "wordnet_id": "a-01842001", "pos": "JJ", "sense": "not capable of being foretold", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "unprocessed": { "form": "unprocessed", "cornetto_synset_id": "d_a-9436", "wordnet_id": "a-01071321", "pos": "JJ", "sense": "not treated or prepared by a special process", "polarity": "-0.1", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "unpropitious": { "form": "unpropitious", "cornetto_synset_id": "n_a-521220", "wordnet_id": "a-00177963", "pos": "JJ", "sense": "not propitious", "polarity": "-0.6", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "unread": { "form": "unread", "cornetto_synset_id": "n_a-521066", "wordnet_id": "a-01309835", "pos": "JJ", "sense": "not informed through reading", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "unrealistic": { "form": "unrealistic", "wordnet_id": "a-01941999", "pos": "JJ", "sense": "not realistic", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "unsalted": { "form": "unsalted", "cornetto_synset_id": "n_a-521211", "wordnet_id": "a-02400125", "pos": "JJ", "sense": "without salt or seasoning", "polarity": "0.4", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "unschooled": { "form": "unschooled", "cornetto_synset_id": "n_a-521710", "wordnet_id": "a-00831696", "pos": "JJ", "sense": "lacking in schooling", "polarity": "-0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "unsettling": { "form": "unsettling", "wordnet_id": "", "pos": "JJ", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.9" }, "unstirred": { "form": "unstirred", "cornetto_synset_id": "n_a-520570", "wordnet_id": "a-00088899", "pos": "JJ", "sense": "not agitated by stirring", "polarity": "-0.4", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.8" }, "unthinkable": { "form": "unthinkable", "cornetto_synset_id": "n_a-521670", "wordnet_id": "a-02418538", "pos": "JJ", "sense": "incapable of being conceived or considered", "polarity": "0.1", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" }, "untraceable": { "form": "untraceable", "cornetto_synset_id": "d_a-9529", "wordnet_id": "a-02453492", "pos": "JJ", "sense": "incapable of being traced or tracked down", "polarity": "-0.3", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "unusual": { "form": "unusual", "cornetto_synset_id": "n_a-533834", "wordnet_id": "a-00488857", "pos": "JJ", "sense": "not commonly encountered", "polarity": "0.2", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "unwed": { "form": "unwed", "cornetto_synset_id": "n_a-507976", "wordnet_id": "a-01482751", "pos": "JJ", "sense": "of someone who has not been married", "polarity": "0.0", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "upper": { "form": "upper", "wordnet_id": "a-02440617", "pos": "JJ", "sense": "the topmost one of two", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "urban": { "form": "urban", "cornetto_synset_id": "n_a-528928", "wordnet_id": "a-02821071", "pos": "JJ", "sense": "relating to or concerned with a city or densely populated area", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "urinates": { "form": "urinates", "wordnet_id": "", "pos": "VBZ", "sense": "", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "used to": { "form": "used to", "cornetto_synset_id": "n_a-510831", "wordnet_id": "a-00024619", "pos": "JJ", "sense": "in the habit", "polarity": "-0.1", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "useful": { "form": "useful", "wordnet_id": "a-2495922", "pos": "JJ", "sense": "being of use or service", "polarity": "0.3", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "useless": { "form": "useless", "wordnet_id": "a-2497141", "pos": "JJ", "sense": "having no beneficial use or incapable of functioning usefully", "polarity": "-0.5", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.9" }, "usual": { "form": "usual", "wordnet_id": "a-00970610", "pos": "JJ", "sense": "commonly encountered", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "utter": { "form": "utter", "wordnet_id": "a-00522349", "pos": "JJ", "sense": "complete", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "vacuum": { "form": "vacuum", "wordnet_id": "v-1244853", "pos": "VB", "sense": "clean with a vacuum cleaner", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "vague": { "form": "vague", "wordnet_id": "a-00431004", "pos": "JJ", "sense": "not clearly understood or expressed", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "vapid": { "form": "vapid", "wordnet_id": "a-2308001", "pos": "JJ", "sense": "lacking significance or liveliness or spirit or zest", "polarity": "-0.3", "subjectivity": "0.3", "intensity": "1.0", "reliability": "0.9" }, "vaporific": { "form": "vaporific", "cornetto_synset_id": "n_a-533334", "wordnet_id": "a-02263491", "pos": "JJ", "sense": "resembling or characteristic of vapor", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "various": { "form": "various", "wordnet_id": "a-02507772", "pos": "JJ", "sense": "having great diversity or variety", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "vast": { "form": "vast", "cornetto_synset_id": "n_a-508356", "wordnet_id": "a-01387319", "pos": "JJ", "sense": "unusually great in size or amount or degree or especially extent or scope", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "very": { "form": "very", "wordnet_id": "r-00031899", "pos": "RB", "sense": "used as intensifier", "polarity": "0.2", "subjectivity": "0.3", "intensity": "1.3", "confidence": "0.9" }, "veteran": { "form": "veteran", "cornetto_synset_id": "d_a-9160", "wordnet_id": "a-00936523", "pos": "JJ", "sense": "rendered competent through trial and experience", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "vibrant": { "form": "vibrant", "wordnet_id": "a-02280969", "pos": "JJ", "sense": "vigorous and animated", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "vicious": { "form": "vicious", "wordnet_id": "a-02514099", "pos": "JJ", "sense": "having the nature of vice", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "victim": { "form": "victim", "wordnet_id": "n-10752480", "pos": "NN", "sense": "a person who is tricked or swindled", "polarity": "-0.1", "subjectivity": "0.0", "intensity": "1.0", "reliability": "0.9" }, "violent": { "form": "violent", "wordnet_id": "a-02510879", "pos": "JJ", "sense": "acting with or marked by or resulting from great force or energy or emotional intensity", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "visual": { "form": "visual", "wordnet_id": "a-02869563", "pos": "JJ", "sense": "relating to or using sight", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "vital": { "form": "vital", "cornetto_synset_id": "n_a-509441", "wordnet_id": "a-00095094", "pos": "JJ", "sense": "manifesting or characteristic of life", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "vivid": { "form": "vivid", "wordnet_id": "a-01941026", "pos": "JJ", "sense": "evoking lifelike images within the mind", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "vocational": { "form": "vocational", "cornetto_synset_id": "n_a-524476", "wordnet_id": "a-02840478", "pos": "JJ", "sense": "of or relating to a vocation or occupation", "polarity": "0.3", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "vulgar": { "form": "vulgar", "wordnet_id": "", "pos": "JJ", "sense": "", "polarity": "-0.7", "subjectivity": "0.8", "intensity": "1.0", "reliability": "0.9" }, "vulnerable": { "form": "vulnerable", "wordnet_id": "a-02523275", "pos": "JJ", "sense": "susceptible to attack", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "wacky": { "form": "wacky", "wordnet_id": "a-02571536", "pos": "JJ", "sense": "ludicrous, foolish", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "wan": { "form": "wan", "wordnet_id": "v-87653", "pos": "VB", "sense": "become pale and sickly", "polarity": "-0.2", "subjectivity": "0.1", "intensity": "1.0", "reliability": "0.9" }, "wants": { "form": "wants", "wordnet_id": "", "pos": "VB", "polarity": "0.2", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.9" }, "warm": { "form": "warm", "cornetto_synset_id": "n_a-534242", "wordnet_id": "a-00445308", "pos": "JJ", "sense": "of a seeker", "polarity": "0.6", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "wary": { "form": "wary", "cornetto_synset_id": "n_a-534522", "wordnet_id": "a-00162386", "pos": "JJ", "sense": "marked by keen caution and watchful prudence", "polarity": "-0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "waste": { "form": "waste", "wordnet_id": "", "pos": "NN", "polarity": "-0.2", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "wasted": { "form": "wasted", "wordnet_id": "", "pos": "VB", "polarity": "-0.2", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "wastes": { "form": "wastes", "wordnet_id": "", "pos": "VB", "polarity": "-0.2", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "weak": { "form": "weak", "wordnet_id": "a-02493574", "pos": "JJ", "sense": "tending downward in price", "polarity": "0.0", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "wealthy": { "form": "wealthy", "cornetto_synset_id": "n_a-534597", "wordnet_id": "a-02022167", "pos": "JJ", "sense": "having an abundant supply of money or possessions of value", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "weird": { "form": "weird", "wordnet_id": "a-01575424", "pos": "JJ", "sense": "suggesting the operation of supernatural influences", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "welcome": { "form": "welcome", "cornetto_synset_id": "n_a-534571", "wordnet_id": "a-02539968", "pos": "JJ", "sense": "giving pleasure or satisfaction or received with pleasure or freely granted", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "well-advised": { "form": "well-advised", "cornetto_synset_id": "n_a-507294", "wordnet_id": "a-00067966", "pos": "JJ", "sense": "having the benefit of careful prior consideration or counsel", "polarity": "0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "well-intentioned": { "form": "well-intentioned", "wordnet_id": "a-1338363", "pos": "JJ", "sense": "marked by good intentions though often producing unfortunate results", "polarity": "-0.05", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "well-off": { "form": "well-off", "cornetto_synset_id": "d_a-9505", "wordnet_id": "a-01049352", "pos": "JJ", "sense": "fortunately situated", "polarity": "0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "western": { "form": "western", "wordnet_id": "a-00825970", "pos": "JJ", "sense": "of or characteristic of regions of the United States west of the Mississippi River", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "wet": { "form": "wet", "cornetto_synset_id": "d_a-9416", "wordnet_id": "a-02547317", "pos": "JJ", "sense": "covered or soaked with a liquid such as water", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "whaddupwitdat": { "form": "whaddupwitdat", "wordnet_id": "", "pos": "UH", "polarity": "-0.1", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.9" }, "whimsical": { "form": "whimsical", "wordnet_id": "a-00719442", "pos": "JJ", "sense": "determined by chance or impulse or whim rather than by necessity or reason", "polarity": "-0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "white": { "form": "white", "cornetto_synset_id": "n_a-535039", "wordnet_id": "a-00393105", "pos": "JJ", "sense": "being of the achromatic color of maximum lightness", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "whole": { "form": "whole", "cornetto_synset_id": "d_a-9327", "wordnet_id": "a-00514884", "pos": "JJ", "sense": "including all components without exception", "polarity": "0.2", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "wide": { "form": "wide", "cornetto_synset_id": "c_291", "wordnet_id": "a-02560548", "pos": "JJ", "sense": "having great (or a certain) extent from one side to the other", "polarity": "-0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "wild": { "form": "wild", "cornetto_synset_id": "n_a-534877", "wordnet_id": "a-02389220", "pos": "JJ", "sense": "in a natural state", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "willing": { "form": "willing", "wordnet_id": "a-02521036", "pos": "JJ", "sense": "not brought about by coercion or force", "polarity": "0.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "win": { "form": "win", "wordnet_id": "v-1100145", "pos": "VB", "sense": "be the winner in a contest or competition", "polarity": "0.8", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.9" }, "winning": { "form": "winning", "wordnet_id": "a-02333314", "pos": "JJ", "sense": "having won", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "wins": { "form": "wins", "wordnet_id": "", "pos": "VB", "polarity": "0.3", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.9" }, "wise": { "form": "wise", "cornetto_synset_id": "c_667", "wordnet_id": "a-02569130", "pos": "JJ", "sense": "having or prompted by wisdom or discernment", "polarity": "0.7", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "witty": { "form": "witty", "wordnet_id": "a-01268194", "pos": "JJ", "sense": "combining clever conception and facetious expression", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "womanly": { "form": "womanly", "cornetto_synset_id": "d_a-9602", "wordnet_id": "a-01484987", "pos": "JJ", "sense": "befitting or characteristic of a woman especially a mature woman", "polarity": "0.0", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.8" }, "won't": { "form": "won't", "wordnet_id": "", "pos": "VB", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "confidence": "0.9" }, "wonderful": { "form": "wonderful", "wordnet_id": "a-01676517", "pos": "JJ", "sense": "extraordinarily good or great ", "polarity": "1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "wonky": { "form": "wonky", "wordnet_id": "", "pos": "JJ", "polarity": "-0.3", "subjectivity": "0.3", "intensity": "1.0", "confidence": "0.9" }, "wooden": { "form": "wooden", "wordnet_id": "a-02576489", "pos": "JJ", "sense": "made or consisting of (entirely or in part) or employing wood", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "workmanlike": { "form": "workmanlike", "cornetto_synset_id": "n_a-532002", "wordnet_id": "a-00511037", "pos": "JJ", "sense": "worthy of a good workman", "polarity": "0.5", "subjectivity": "0.7", "intensity": "1.0", "confidence": "0.8" }, "worse": { "form": "worse", "wordnet_id": "a-00232068", "pos": "JJ", "sense": "changed for the worse in health or fitness", "polarity": "-0.4", "subjectivity": "0.6", "intensity": "1.0", "confidence": "0.9" }, "worst": { "form": "worst", "wordnet_id": "a-00229630", "pos": "JJ", "sense": "(superlative of 'bad') most wanting in quality or value or condition", "polarity": "-1.0", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "worth": { "form": "worth", "cornetto_synset_id": "n_a-534079", "wordnet_id": "a-02502016", "pos": "JJ", "sense": "having a specified value", "polarity": "0.3", "subjectivity": "0.1", "intensity": "1.0", "confidence": "0.8" }, "worthless": { "form": "worthless", "cornetto_synset_id": "d_a-9605", "wordnet_id": "a-02502163", "pos": "JJ", "sense": "lacking in usefulness or value", "polarity": "-0.8", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "worthwhile": { "form": "worthwhile", "wordnet_id": "a-02587936", "pos": "JJ", "sense": "sufficiently valuable to justify the investment of time or interest", "polarity": "0.5", "subjectivity": "0.5", "intensity": "1.0", "confidence": "0.9" }, "worthy": { "form": "worthy", "wordnet_id": "a-02584981", "pos": "JJ", "sense": "having worth or merit or value", "polarity": "0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "wow": { "form": "wow", "wordnet_id": "v-1770252", "pos": "VB", "sense": "impress greatly", "polarity": "0.1", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "wrong": { "form": "wrong", "cornetto_synset_id": "c_577", "wordnet_id": "a-01881478", "pos": "JJ", "sense": "not in accord with established usage or procedure", "polarity": "-0.5", "subjectivity": "0.9", "intensity": "1.0", "confidence": "0.8" }, "wtf": { "form": "wtf", "wordnet_id": "", "pos": "UH", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.9" }, "yarn": { "form": "yarn", "wordnet_id": "v-954038", "pos": "VB", "sense": "tell or spin a yarn", "polarity": "-0.1", "subjectivity": "0.2", "intensity": "1.0", "reliability": "0.9" }, "yaaawwnnnn": { "form": "yaaawwnnnn", "wordnet_id": "", "pos": "UH", "sense": "", "polarity": "-0.5", "subjectivity": "1.0", "intensity": "1.0", "confidence": "0.8" }, "yellow": { "form": "yellow", "cornetto_synset_id": "n_a-509864", "wordnet_id": "a-00385756", "pos": "JJ", "sense": "of the color intermediate between green and orange in the color spectrum", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.8" }, "young": { "form": "young", "cornetto_synset_id": "d_a-9357", "wordnet_id": "a-01646941", "pos": "JJ", "sense": "(used of living things especially persons) in an early period of life or development or growth", "polarity": "0.1", "subjectivity": "0.4", "intensity": "1.0", "confidence": "0.8" }, "younger": { "form": "younger", "wordnet_id": "a-02101382", "pos": "JJ", "sense": "used of the younger of two persons of the same name especially used to distinguish a son from his father", "polarity": "0.0", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" }, "youngish": { "form": "youngish", "cornetto_synset_id": "n_a-514159", "wordnet_id": "a-01649651", "pos": "JJ", "sense": "somewhat young", "polarity": "0.4", "subjectivity": "0.8", "intensity": "1.0", "confidence": "0.8" } } ================================================ FILE: lib/natural/sentiment/English/senticon_en.json ================================================ { "admirable": { "pos": "a", "pol": "1.0", "std": "0.0" }, "amorous": { "pos": "a", "pol": "0.438", "std": "0.088" }, "approval": { "pos": "n", "pol": "0.594", "std": "0.12" }, "assure": { "pos": "v", "pol": "0.354", "std": "0.172" }, "benevolent": { "pos": "a", "pol": "0.469", "std": "0.258" }, "calm": { "pos": "a", "pol": "0.313", "std": "0.088" }, "captivated": { "pos": "a", "pol": "0.438", "std": "0.0" }, "charmed": { "pos": "a", "pol": "0.438", "std": "0.0" }, "cheer": { "pos": "v", "pol": "0.65", "std": "0.274" }, "cheer up": { "pos": "v", "pol": "0.75", "std": "0.354" }, "comfortable": { "pos": "a", "pol": "0.55", "std": "0.105" }, "confidence": { "pos": "n", "pol": "0.375", "std": "0.314" }, "congratulate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "content": { "pos": "a", "pol": "0.625", "std": "0.0" }, "correct": { "pos": "a", "pol": "0.875", "std": "0.102" }, "decent": { "pos": "r", "pol": "0.375", "std": "0.0" }, "dependable": { "pos": "a", "pol": "0.656", "std": "0.161" }, "ease": { "pos": "v", "pol": "0.25", "std": "0.445" }, "easy": { "pos": "a", "pol": "0.292", "std": "0.206" }, "elated": { "pos": "a", "pol": "0.688", "std": "0.088" }, "enjoy": { "pos": "v", "pol": "0.475", "std": "0.105" }, "exhilarating": { "pos": "a", "pol": "0.75", "std": "0.0" }, "favor": { "pos": "n", "pol": "0.325", "std": "0.163" }, "favorable": { "pos": "a", "pol": "0.725", "std": "0.163" }, "favour": { "pos": "n", "pol": "0.325", "std": "0.163" }, "favourable": { "pos": "a", "pol": "0.813", "std": "0.161" }, "fond": { "pos": "a", "pol": "0.313", "std": "0.213" }, "friendly": { "pos": "a", "pol": "0.344", "std": "0.237" }, "gay": { "pos": "a", "pol": "0.542", "std": "0.246" }, "glad": { "pos": "a", "pol": "0.75", "std": "0.157" }, "gladden": { "pos": "v", "pol": "0.875", "std": "0.177" }, "golden": { "pos": "a", "pol": "0.583", "std": "0.229" }, "good": { "pos": "r", "pol": "0.813", "std": "0.265" }, "gracious": { "pos": "a", "pol": "0.75", "std": "0.12" }, "happy": { "pos": "a", "pol": "0.75", "std": "0.144" }, "honorable": { "pos": "a", "pol": "0.625", "std": "0.063" }, "hope": { "pos": "n", "pol": "0.25", "std": "0.137" }, "joy": { "pos": "n", "pol": "0.5", "std": "0.265" }, "joyful": { "pos": "a", "pol": "0.563", "std": "0.088" }, "jubilant": { "pos": "a", "pol": "0.563", "std": "0.0" }, "just": { "pos": "a", "pol": "0.656", "std": "0.188" }, "love": { "pos": "v", "pol": "0.469", "std": "0.368" }, "nice": { "pos": "a", "pol": "0.825", "std": "0.205" }, "positive": { "pos": "a", "pol": "0.307", "std": "0.284" }, "preference": { "pos": "n", "pol": "0.281", "std": "0.063" }, "reassure": { "pos": "v", "pol": "0.438", "std": "0.177" }, "recreate": { "pos": "v", "pol": "0.75", "std": "0.5" }, "regard": { "pos": "n", "pol": "0.339", "std": "0.287" }, "rejoice": { "pos": "v", "pol": "0.333", "std": "0.072" }, "respect": { "pos": "v", "pol": "0.625", "std": "0.177" }, "right": { "pos": "v", "pol": "0.438", "std": "0.387" }, "ripe": { "pos": "a", "pol": "0.5", "std": "0.324" }, "rosy": { "pos": "a", "pol": "0.719", "std": "0.295" }, "safe": { "pos": "a", "pol": "0.25", "std": "0.237" }, "self-satisfied": { "pos": "a", "pol": "0.688", "std": "0.088" }, "smooth": { "pos": "a", "pol": "0.375", "std": "0.306" }, "sound": { "pos": "a", "pol": "0.556", "std": "0.199" }, "still": { "pos": "v", "pol": "0.281", "std": "0.157" }, "superior": { "pos": "a", "pol": "0.304", "std": "0.289" }, "tranquil": { "pos": "a", "pol": "0.375", "std": "0.088" }, "triumph": { "pos": "n", "pol": "0.438", "std": "0.177" }, "warm": { "pos": "r", "pol": "0.25", "std": "0.0" }, "warmheartedness": { "pos": "n", "pol": "0.5", "std": "0.088" }, "well": { "pos": "a", "pol": "0.792", "std": "0.144" }, "afraid": { "pos": "a", "pol": "-0.437", "std": "0.157" }, "aggression": { "pos": "n", "pol": "-0.275", "std": "0.105" }, "alarm": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "anger": { "pos": "v", "pol": "-0.5", "std": "0.088" }, "annoyance": { "pos": "n", "pol": "-0.425", "std": "0.088" }, "annoyed": { "pos": "a", "pol": "-0.687", "std": "0.0" }, "apprehension": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "awkward": { "pos": "a", "pol": "-0.271", "std": "0.129" }, "bitterness": { "pos": "n", "pol": "-0.375", "std": "0.144" }, "black": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "bother": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "brood": { "pos": "v", "pol": "-0.45", "std": "0.068" }, "chafe": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "contempt": { "pos": "n", "pol": "-0.719", "std": "0.063" }, "dark": { "pos": "n", "pol": "-0.25", "std": "0.153" }, "depress": { "pos": "v", "pol": "-0.4", "std": "0.068" }, "depression": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "desolation": { "pos": "n", "pol": "-0.469", "std": "0.072" }, "desperate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disapproval": { "pos": "n", "pol": "-0.281", "std": "0.157" }, "discouraging": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "disgraceful": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "disgust": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dismay": { "pos": "v", "pol": "-0.562", "std": "0.088" }, "distressed": { "pos": "a", "pol": "-0.75", "std": "0.102" }, "disturbed": { "pos": "a", "pol": "-0.375", "std": "0.12" }, "down": { "pos": "a", "pol": "-0.292", "std": "0.205" }, "drab": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "embarrassed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "embarrassing": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "fear": { "pos": "v", "pol": "-0.3", "std": "0.177" }, "fearful": { "pos": "a", "pol": "-0.4", "std": "0.112" }, "foul": { "pos": "a", "pol": "-0.25", "std": "0.129" }, "frightened": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "gall": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "gloomy": { "pos": "a", "pol": "-0.833", "std": "0.144" }, "grieve": { "pos": "v", "pol": "-0.687", "std": "0.088" }, "grievous": { "pos": "a", "pol": "-0.344", "std": "0.125" }, "grim": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "hideous": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "hopeless": { "pos": "a", "pol": "-0.406", "std": "0.258" }, "horrific": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "hostility": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "insecure": { "pos": "a", "pol": "-0.281", "std": "0.228" }, "irritation": { "pos": "n", "pol": "-0.429", "std": "0.094" }, "jealous": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "loathsome": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "loom": { "pos": "v", "pol": "-0.281", "std": "0.0" }, "lowness": { "pos": "n", "pol": "-0.312", "std": "0.12" }, "malevolent": { "pos": "a", "pol": "-0.687", "std": "0.177" }, "misanthropic": { "pos": "a", "pol": "-0.875", "std": "0.088" }, "misanthropical": { "pos": "a", "pol": "-0.875", "std": "0.088" }, "mortify": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "mortifying": { "pos": "a", "pol": "-0.625", "std": "0.177" }, "mournful": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "nauseate": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "nauseous": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "offend": { "pos": "v", "pol": "-0.531", "std": "0.125" }, "offensive": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "outrage": { "pos": "n", "pol": "-0.25", "std": "0.125" }, "panic": { "pos": "n", "pol": "-0.25", "std": "0.265" }, "pestiferous": { "pos": "a", "pol": "-0.25", "std": "0.213" }, "put off": { "pos": "v", "pol": "-0.35", "std": "0.068" }, "queasy": { "pos": "a", "pol": "-0.375", "std": "0.125" }, "rag": { "pos": "v", "pol": "-0.333", "std": "0.065" }, "regret": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "repel": { "pos": "v", "pol": "-0.325", "std": "0.105" }, "shame": { "pos": "n", "pol": "-0.375", "std": "0.125" }, "shamed": { "pos": "a", "pol": "-0.375", "std": "0.265" }, "shameful": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "sorrow": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "sorrowfully": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "sorry": { "pos": "a", "pol": "-0.5", "std": "0.213" }, "temper": { "pos": "n", "pol": "-0.281", "std": "0.12" }, "torment": { "pos": "n", "pol": "-0.5", "std": "0.051" }, "trouble": { "pos": "v", "pol": "-0.425", "std": "0.068" }, "ugly": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "uneasy": { "pos": "a", "pol": "-0.35", "std": "0.163" }, "unfriendly": { "pos": "a", "pol": "-0.281", "std": "0.102" }, "unhappy": { "pos": "a", "pol": "-0.5", "std": "0.102" }, "unsound": { "pos": "a", "pol": "-0.271", "std": "0.22" }, "vex": { "pos": "v", "pol": "-0.475", "std": "0.068" }, "vexation": { "pos": "n", "pol": "-0.469", "std": "0.072" }, "vexing": { "pos": "a", "pol": "-0.875", "std": "0.088" }, "wicked": { "pos": "a", "pol": "-0.375", "std": "0.224" }, "woeful": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "worried": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "worry": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "wretched": { "pos": "a", "pol": "-0.4", "std": "0.205" }, "adept": { "pos": "n", "pol": "0.375", "std": "0.0" }, "admirably": { "pos": "r", "pol": "0.25", "std": "0.0" }, "admiration": { "pos": "n", "pol": "0.667", "std": "0.315" }, "admire": { "pos": "v", "pol": "0.75", "std": "0.177" }, "adoration": { "pos": "n", "pol": "0.25", "std": "0.25" }, "adoring": { "pos": "a", "pol": "0.313", "std": "0.088" }, "affection": { "pos": "n", "pol": "0.625", "std": "0.0" }, "affectional": { "pos": "a", "pol": "0.375", "std": "0.0" }, "affectionate": { "pos": "a", "pol": "0.875", "std": "0.0" }, "affectionateness": { "pos": "n", "pol": "0.375", "std": "0.177" }, "affirmative": { "pos": "n", "pol": "0.5", "std": "0.0" }, "amative": { "pos": "a", "pol": "0.625", "std": "0.0" }, "amatory": { "pos": "a", "pol": "0.25", "std": "0.0" }, "amicable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "appreciatively": { "pos": "r", "pol": "0.375", "std": "0.0" }, "appreciativeness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "approbative": { "pos": "a", "pol": "1.0", "std": "0.0" }, "approbatory": { "pos": "a", "pol": "1.0", "std": "0.0" }, "approve": { "pos": "v", "pol": "0.688", "std": "0.265" }, "approved": { "pos": "a", "pol": "0.5", "std": "0.0" }, "approving": { "pos": "n", "pol": "0.5", "std": "0.0" }, "ardor": { "pos": "n", "pol": "0.25", "std": "0.217" }, "ardour": { "pos": "n", "pol": "0.25", "std": "0.217" }, "avid": { "pos": "a", "pol": "0.375", "std": "0.177" }, "avidity": { "pos": "n", "pol": "0.375", "std": "0.0" }, "avidness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "be on cloud nine": { "pos": "v", "pol": "0.25", "std": "0.0" }, "beaming": { "pos": "a", "pol": "0.5", "std": "0.289" }, "beguile": { "pos": "v", "pol": "0.375", "std": "0.088" }, "beguiled": { "pos": "a", "pol": "0.5", "std": "0.0" }, "belonging": { "pos": "n", "pol": "0.5", "std": "0.0" }, "benefic": { "pos": "a", "pol": "0.875", "std": "0.0" }, "beneficence": { "pos": "n", "pol": "0.688", "std": "0.265" }, "beneficent": { "pos": "a", "pol": "0.938", "std": "0.088" }, "beneficial": { "pos": "a", "pol": "1.0", "std": "0.0" }, "beneficially": { "pos": "r", "pol": "0.375", "std": "0.0" }, "benevolence": { "pos": "n", "pol": "0.5", "std": "0.26" }, "benevolently": { "pos": "r", "pol": "0.375", "std": "0.0" }, "bewitching": { "pos": "a", "pol": "0.875", "std": "0.0" }, "blithely": { "pos": "r", "pol": "0.625", "std": "0.0" }, "blitheness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "brotherlike": { "pos": "a", "pol": "0.375", "std": "0.0" }, "brotherly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bucked up": { "pos": "a", "pol": "0.625", "std": "0.0" }, "calm down": { "pos": "v", "pol": "0.25", "std": "0.191" }, "captivate": { "pos": "v", "pol": "0.375", "std": "0.0" }, "captivating": { "pos": "a", "pol": "0.875", "std": "0.0" }, "captivation": { "pos": "n", "pol": "0.313", "std": "0.088" }, "caring": { "pos": "n", "pol": "0.25", "std": "0.0" }, "charitable": { "pos": "a", "pol": "0.417", "std": "0.191" }, "cheerful": { "pos": "a", "pol": "0.938", "std": "0.088" }, "cheerfully": { "pos": "r", "pol": "0.625", "std": "0.0" }, "cheerfulness": { "pos": "n", "pol": "0.313", "std": "0.177" }, "cheering": { "pos": "n", "pol": "0.375", "std": "0.0" }, "chirk up": { "pos": "v", "pol": "1.0", "std": "0.0" }, "comfortableness": { "pos": "n", "pol": "0.375", "std": "0.177" }, "comfortably": { "pos": "r", "pol": "0.292", "std": "0.144" }, "comforting": { "pos": "a", "pol": "0.375", "std": "0.088" }, "commendable": { "pos": "a", "pol": "1.0", "std": "0.0" }, "complacence": { "pos": "n", "pol": "0.625", "std": "0.0" }, "complacency": { "pos": "n", "pol": "0.625", "std": "0.0" }, "complacent": { "pos": "a", "pol": "0.875", "std": "0.0" }, "confident": { "pos": "a", "pol": "0.5", "std": "0.191" }, "console": { "pos": "v", "pol": "0.375", "std": "0.0" }, "contented": { "pos": "a", "pol": "0.625", "std": "0.0" }, "contentment": { "pos": "n", "pol": "0.5", "std": "0.0" }, "convinced": { "pos": "a", "pol": "0.25", "std": "0.177" }, "courteous": { "pos": "a", "pol": "0.875", "std": "0.0" }, "delighted": { "pos": "a", "pol": "0.438", "std": "0.0" }, "devoted": { "pos": "a", "pol": "0.625", "std": "0.088" }, "dreaminess": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eagerness": { "pos": "n", "pol": "0.25", "std": "0.177" }, "elan": { "pos": "n", "pol": "0.292", "std": "0.0" }, "elate": { "pos": "v", "pol": "1.0", "std": "0.0" }, "elating": { "pos": "a", "pol": "0.75", "std": "0.0" }, "elation": { "pos": "n", "pol": "0.313", "std": "0.088" }, "embolden": { "pos": "v", "pol": "1.0", "std": "0.0" }, "emotive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "enamor": { "pos": "v", "pol": "0.375", "std": "0.0" }, "enamoredness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enamour": { "pos": "v", "pol": "0.375", "std": "0.0" }, "enchanting": { "pos": "a", "pol": "0.875", "std": "0.0" }, "enchantment": { "pos": "n", "pol": "0.25", "std": "0.191" }, "encourage": { "pos": "v", "pol": "0.458", "std": "0.402" }, "encouraged": { "pos": "a", "pol": "0.625", "std": "0.0" }, "encouragement": { "pos": "n", "pol": "0.375", "std": "0.289" }, "encouraging": { "pos": "a", "pol": "0.438", "std": "0.088" }, "encouragingly": { "pos": "r", "pol": "0.375", "std": "0.0" }, "enthralled": { "pos": "a", "pol": "0.5", "std": "0.0" }, "enthralling": { "pos": "a", "pol": "0.875", "std": "0.0" }, "enthrallment": { "pos": "n", "pol": "0.5", "std": "0.0" }, "enthusiasm": { "pos": "n", "pol": "0.5", "std": "0.191" }, "enthusiastic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "enthusiastically": { "pos": "r", "pol": "0.375", "std": "0.354" }, "entranced": { "pos": "a", "pol": "0.5", "std": "0.0" }, "entrancing": { "pos": "a", "pol": "0.875", "std": "0.0" }, "esteem": { "pos": "v", "pol": "0.438", "std": "0.619" }, "estimable": { "pos": "a", "pol": "0.625", "std": "0.382" }, "euphoria": { "pos": "n", "pol": "0.75", "std": "0.0" }, "euphoriant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "euphoric": { "pos": "a", "pol": "1.0", "std": "0.0" }, "euphory": { "pos": "n", "pol": "0.75", "std": "0.0" }, "excellent": { "pos": "a", "pol": "0.75", "std": "0.0" }, "exciting": { "pos": "a", "pol": "0.5", "std": "0.0" }, "exhilarate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "exhilarated": { "pos": "a", "pol": "0.625", "std": "0.0" }, "exhilaration": { "pos": "n", "pol": "0.625", "std": "0.0" }, "expert": { "pos": "n", "pol": "0.25", "std": "0.0" }, "exuberance": { "pos": "n", "pol": "0.813", "std": "0.088" }, "exultant": { "pos": "a", "pol": "0.625", "std": "0.0" }, "exultation": { "pos": "n", "pol": "0.313", "std": "0.088" }, "exulting": { "pos": "a", "pol": "0.625", "std": "0.0" }, "fantabulous": { "pos": "a", "pol": "0.75", "std": "0.0" }, "fascinate": { "pos": "v", "pol": "0.292", "std": "0.125" }, "fascinating": { "pos": "a", "pol": "0.688", "std": "0.177" }, "fascination": { "pos": "n", "pol": "0.25", "std": "0.072" }, "favorably": { "pos": "r", "pol": "0.875", "std": "0.0" }, "favourably": { "pos": "r", "pol": "0.875", "std": "0.0" }, "first-class": { "pos": "a", "pol": "0.75", "std": "0.0" }, "fond regard": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fondness": { "pos": "n", "pol": "0.375", "std": "0.144" }, "fortunate": { "pos": "a", "pol": "0.875", "std": "0.072" }, "friendliness": { "pos": "n", "pol": "0.688", "std": "0.177" }, "fulfil": { "pos": "v", "pol": "0.542", "std": "0.402" }, "fulfill": { "pos": "v", "pol": "0.542", "std": "0.402" }, "gayly": { "pos": "r", "pol": "0.625", "std": "0.0" }, "gladdened": { "pos": "a", "pol": "0.625", "std": "0.0" }, "gladfulness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gladness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gladsome": { "pos": "a", "pol": "0.5", "std": "0.0" }, "gladsomeness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gleeful": { "pos": "a", "pol": "0.5", "std": "0.0" }, "gleefully": { "pos": "r", "pol": "0.5", "std": "0.0" }, "gleefulness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "good-hearted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "goodness": { "pos": "n", "pol": "0.938", "std": "0.088" }, "grateful": { "pos": "a", "pol": "0.625", "std": "0.0" }, "gratefulness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gratify": { "pos": "v", "pol": "0.625", "std": "0.354" }, "gratitude": { "pos": "n", "pol": "0.75", "std": "0.0" }, "gusto": { "pos": "n", "pol": "1.0", "std": "0.0" }, "happily": { "pos": "r", "pol": "0.5", "std": "0.088" }, "happiness": { "pos": "n", "pol": "0.813", "std": "0.088" }, "hearten": { "pos": "v", "pol": "1.0", "std": "0.0" }, "high spirits": { "pos": "n", "pol": "0.25", "std": "0.0" }, "higher-up": { "pos": "n", "pol": "0.5", "std": "0.0" }, "hilarious": { "pos": "a", "pol": "0.625", "std": "0.0" }, "hilarity": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hopeful": { "pos": "a", "pol": "0.5", "std": "0.088" }, "insouciance": { "pos": "n", "pol": "0.375", "std": "0.0" }, "intimacy": { "pos": "n", "pol": "0.25", "std": "0.125" }, "jocularity": { "pos": "n", "pol": "0.5", "std": "0.125" }, "jocund": { "pos": "a", "pol": "0.5", "std": "0.0" }, "jocundity": { "pos": "n", "pol": "0.5", "std": "0.0" }, "jolliness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "jollity": { "pos": "n", "pol": "0.625", "std": "0.0" }, "jolly": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "jolly along": { "pos": "v", "pol": "0.5", "std": "0.0" }, "jolly up": { "pos": "v", "pol": "0.5", "std": "0.0" }, "jovial": { "pos": "a", "pol": "0.5", "std": "0.0" }, "joviality": { "pos": "n", "pol": "0.438", "std": "0.177" }, "joyfully": { "pos": "r", "pol": "0.5", "std": "0.0" }, "joyfulness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "joyous": { "pos": "a", "pol": "0.75", "std": "0.0" }, "joyously": { "pos": "r", "pol": "0.5", "std": "0.0" }, "joyousness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "jubilance": { "pos": "n", "pol": "0.375", "std": "0.0" }, "jubilancy": { "pos": "n", "pol": "0.375", "std": "0.0" }, "jubilantly": { "pos": "r", "pol": "0.625", "std": "0.0" }, "jubilation": { "pos": "n", "pol": "0.375", "std": "0.072" }, "jump for joy": { "pos": "v", "pol": "0.25", "std": "0.0" }, "keenness": { "pos": "n", "pol": "0.25", "std": "0.144" }, "kindly": { "pos": "r", "pol": "0.625", "std": "0.0" }, "large-hearted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "laudably": { "pos": "r", "pol": "0.25", "std": "0.0" }, "lift up": { "pos": "v", "pol": "0.625", "std": "0.53" }, "lightheartedness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "likable": { "pos": "a", "pol": "0.563", "std": "0.354" }, "likeable": { "pos": "a", "pol": "0.563", "std": "0.354" }, "liking": { "pos": "n", "pol": "0.875", "std": "0.0" }, "live up to": { "pos": "v", "pol": "0.75", "std": "0.0" }, "look up to": { "pos": "v", "pol": "0.875", "std": "0.0" }, "lovesome": { "pos": "a", "pol": "0.875", "std": "0.0" }, "loving": { "pos": "a", "pol": "0.625", "std": "0.0" }, "merrily": { "pos": "r", "pol": "0.625", "std": "0.0" }, "merry": { "pos": "a", "pol": "0.583", "std": "0.125" }, "mirth": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mirthful": { "pos": "a", "pol": "0.438", "std": "0.088" }, "mirthfully": { "pos": "r", "pol": "0.625", "std": "0.0" }, "mirthfulness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "openhearted": { "pos": "a", "pol": "0.25", "std": "0.088" }, "optimism": { "pos": "n", "pol": "0.625", "std": "0.088" }, "optimistic": { "pos": "a", "pol": "0.875", "std": "0.0" }, "optimistically": { "pos": "r", "pol": "0.75", "std": "0.0" }, "peace-loving": { "pos": "a", "pol": "0.75", "std": "0.0" }, "peaceable": { "pos": "a", "pol": "0.792", "std": "0.0" }, "penchant": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pep up": { "pos": "v", "pol": "0.25", "std": "0.088" }, "philia": { "pos": "n", "pol": "0.625", "std": "0.0" }, "placid": { "pos": "a", "pol": "0.313", "std": "0.088" }, "placidity": { "pos": "n", "pol": "0.25", "std": "0.088" }, "placidness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "plausive": { "pos": "a", "pol": "1.0", "std": "0.0" }, "pleased": { "pos": "a", "pol": "0.688", "std": "0.0" }, "pleasing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "plus": { "pos": "a", "pol": "0.688", "std": "0.442" }, "practiced": { "pos": "a", "pol": "0.875", "std": "0.177" }, "praiseworthily": { "pos": "r", "pol": "0.25", "std": "0.0" }, "predilection": { "pos": "n", "pol": "0.375", "std": "0.0" }, "proficient": { "pos": "a", "pol": "0.688", "std": "0.442" }, "proudly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "quiet": { "pos": "v", "pol": "0.438", "std": "0.088" }, "quieten": { "pos": "v", "pol": "0.375", "std": "0.125" }, "quietness": { "pos": "n", "pol": "0.313", "std": "0.0" }, "quietude": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reassured": { "pos": "a", "pol": "0.5", "std": "0.0" }, "reassuring": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rejoicing": { "pos": "n", "pol": "0.438", "std": "0.177" }, "relish": { "pos": "v", "pol": "0.375", "std": "0.0" }, "respectable": { "pos": "a", "pol": "0.625", "std": "0.331" }, "root on": { "pos": "v", "pol": "0.25", "std": "0.0" }, "salutary": { "pos": "a", "pol": "1.0", "std": "0.0" }, "sanctioned": { "pos": "a", "pol": "0.375", "std": "0.072" }, "sanguine": { "pos": "a", "pol": "0.875", "std": "0.177" }, "sanguineness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "sanguinity": { "pos": "n", "pol": "0.625", "std": "0.0" }, "satiable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "satisfactorily": { "pos": "r", "pol": "0.5", "std": "0.0" }, "satisfactory": { "pos": "a", "pol": "0.75", "std": "0.088" }, "satisfiable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "satisfy": { "pos": "v", "pol": "0.875", "std": "0.125" }, "satisfying": { "pos": "a", "pol": "0.625", "std": "0.0" }, "screaming": { "pos": "a", "pol": "0.292", "std": "0.191" }, "self-complacency": { "pos": "n", "pol": "0.625", "std": "0.0" }, "self-complacent": { "pos": "a", "pol": "0.875", "std": "0.0" }, "self-satisfaction": { "pos": "n", "pol": "0.625", "std": "0.0" }, "serene": { "pos": "a", "pol": "0.313", "std": "0.0" }, "skilful": { "pos": "a", "pol": "1.0", "std": "0.0" }, "skillful": { "pos": "a", "pol": "0.938", "std": "0.088" }, "solace": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "soothe": { "pos": "v", "pol": "0.313", "std": "0.088" }, "splendid": { "pos": "a", "pol": "0.833", "std": "0.144" }, "stimulating": { "pos": "a", "pol": "0.5", "std": "0.191" }, "superordinate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "teased": { "pos": "a", "pol": "0.25", "std": "0.0" }, "thankful": { "pos": "a", "pol": "0.5", "std": "0.0" }, "thankfulness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tickle pink": { "pos": "v", "pol": "0.25", "std": "0.0" }, "titillated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "titillating": { "pos": "a", "pol": "0.625", "std": "0.072" }, "togetherness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trance": { "pos": "v", "pol": "0.375", "std": "0.0" }, "tranquility": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tranquilize": { "pos": "v", "pol": "0.375", "std": "0.088" }, "tranquillise": { "pos": "v", "pol": "0.375", "std": "0.088" }, "tranquillity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tranquillize": { "pos": "v", "pol": "0.375", "std": "0.088" }, "triumphal": { "pos": "a", "pol": "0.375", "std": "0.354" }, "triumphant": { "pos": "a", "pol": "0.563", "std": "0.0" }, "unafraid": { "pos": "a", "pol": "0.375", "std": "0.265" }, "undecomposed": { "pos": "a", "pol": "1.0", "std": "0.0" }, "unruffled": { "pos": "a", "pol": "0.5", "std": "0.0" }, "unspoiled": { "pos": "a", "pol": "0.563", "std": "0.354" }, "unspoilt": { "pos": "a", "pol": "1.0", "std": "0.0" }, "uplift": { "pos": "v", "pol": "0.333", "std": "0.577" }, "upright": { "pos": "a", "pol": "0.375", "std": "0.545" }, "uproarious": { "pos": "a", "pol": "0.375", "std": "0.354" }, "walk on air": { "pos": "v", "pol": "0.25", "std": "0.0" }, "warmhearted": { "pos": "a", "pol": "0.625", "std": "0.0" }, "warmness": { "pos": "n", "pol": "0.313", "std": "0.265" }, "well-disposed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "worshipful": { "pos": "a", "pol": "0.438", "std": "0.0" }, "zealous": { "pos": "a", "pol": "0.75", "std": "0.0" }, "zest": { "pos": "n", "pol": "0.5", "std": "0.707" }, "zestfulness": { "pos": "n", "pol": "1.0", "std": "0.0" }, "abase": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "abashed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "abhor": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "abhorrence": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "abhorrent": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "abominably": { "pos": "r", "pol": "-0.312", "std": "0.088" }, "abominate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "abomination": { "pos": "n", "pol": "-0.5", "std": "0.072" }, "aggravate": { "pos": "v", "pol": "-0.437", "std": "0.265" }, "aggravated": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "aggravation": { "pos": "n", "pol": "-0.542", "std": "0.125" }, "aggressiveness": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "aggrieve": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "alarmed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "alert": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "amok": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "amuck": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "angered": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "angrily": { "pos": "r", "pol": "-0.75", "std": "0.0" }, "angry": { "pos": "a", "pol": "-0.667", "std": "0.072" }, "annoy": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "annoying": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antipathy": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "antsy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "anxiety": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anxious": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "anxiously": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "appal": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "appall": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "apprehensive": { "pos": "a", "pol": "-0.333", "std": "0.191" }, "apprehensively": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "apprehensiveness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ashamed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "atrocious": { "pos": "a", "pol": "-0.583", "std": "0.191" }, "aversion": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "bad temper": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bedaze": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "begrudge": { "pos": "v", "pol": "-0.312", "std": "0.177" }, "belligerence": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "belligerency": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "belligerent": { "pos": "a", "pol": "-0.562", "std": "0.088" }, "belligerently": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "bereaved": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bereft": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "boding": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bothersome": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "brokenheartedness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "bulk large": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "cast down": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "chagrin": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "chagrined": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "cheerless": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "cheerlessly": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "cheerlessness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "chevvy": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "chevy": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "chilling": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "chivvy": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "chivy": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "choler": { "pos": "n", "pol": "-0.333", "std": "0.144" }, "choleric": { "pos": "a", "pol": "-0.5", "std": "0.125" }, "churn up": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "class feeling": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "commiserate": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "commiseration": { "pos": "n", "pol": "-0.625", "std": "0.177" }, "compassion": { "pos": "n", "pol": "-0.625", "std": "0.088" }, "compassionateness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "compunction": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "condole with": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "confusing": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "conniption": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "consternation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "contemn": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "contrite": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "contriteness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "contrition": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "covet": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "creeps": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "cringe": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "cruelly": { "pos": "r", "pol": "-0.312", "std": "0.265" }, "cruelty": { "pos": "n", "pol": "-0.458", "std": "0.072" }, "cynical": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "damaging": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "daze": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "defeated": { "pos": "a", "pol": "-0.625", "std": "0.177" }, "deficient": { "pos": "a", "pol": "-0.25", "std": "0.125" }, "deject": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "dejectedness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "demeaning": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "demoralise": { "pos": "v", "pol": "-0.312", "std": "0.265" }, "demoralize": { "pos": "v", "pol": "-0.375", "std": "0.217" }, "deplorable": { "pos": "a", "pol": "-0.333", "std": "0.26" }, "deplorably": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "depressed": { "pos": "a", "pol": "-0.292", "std": "0.125" }, "depressing": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "desolate": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "despairing": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "despairingly": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "despisal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "despise": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "despising": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "despite": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "despiteful": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "despondence": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "despondency": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "despondent": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "despondently": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "detest": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "detestably": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "detestation": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "devil": { "pos": "n", "pol": "-0.344", "std": "0.072" }, "diffidence": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "dingy": { "pos": "a", "pol": "-0.625", "std": "0.125" }, "dire": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "direful": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "disappointed": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "disapprove": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "discomfited": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "discomfiture": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "discomposure": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "disconcertion": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disconcertment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disconsolate": { "pos": "a", "pol": "-0.875", "std": "0.088" }, "disconsolateness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "discourage": { "pos": "v", "pol": "-0.333", "std": "0.125" }, "discouragement": { "pos": "n", "pol": "-0.375", "std": "0.125" }, "discredited": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "disdain": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "disgraced": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "disgusted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "disgustedly": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "disgustful": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "disgusting": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "dishonorably": { "pos": "r", "pol": "-0.333", "std": "0.072" }, "dishonored": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "disinclination": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "disincline": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "disinclined": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "dislikable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "dislike": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "dismal": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "disordered": { "pos": "a", "pol": "-0.292", "std": "0.144" }, "dispirit": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "dispirited": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "dispiritedly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "dispiritedness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "displease": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "displeased": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "displeasing": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "displeasingly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "displeasure": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disquieted": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "disquietude": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "distaste": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "distasteful": { "pos": "a", "pol": "-0.562", "std": "0.177" }, "distress": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "distressful": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "distressfully": { "pos": "r", "pol": "-0.75", "std": "0.0" }, "distressing": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "distressingly": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "disturbing": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "doleful": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "dolefully": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "dolefulness": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "dolor": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "dolorous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "dolour": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "dolourous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "down in the mouth": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "downcast": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "downhearted": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "downheartedness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dread": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "dreaded": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "dreadful": { "pos": "a", "pol": "-0.667", "std": "0.191" }, "drear": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "dreary": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "dysphoria": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "dysphoric": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "edginess": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enraged": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "enragement": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "evil": { "pos": "a", "pol": "-0.292", "std": "0.289" }, "exacerbate": { "pos": "v", "pol": "-0.437", "std": "0.265" }, "exasperate": { "pos": "v", "pol": "-0.333", "std": "0.191" }, "exasperating": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "exasperation": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "execrate": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "execration": { "pos": "n", "pol": "-0.458", "std": "0.072" }, "faulty": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "fearfulness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fearsome": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "fed up": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "feel for": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "fidgety": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "filthy": { "pos": "a", "pol": "-0.292", "std": "0.072" }, "foiled": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "foreboding": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "forlorn": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "forlornness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fretful": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "fright": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frighten": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "frightening": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frighteningly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "frightful": { "pos": "a", "pol": "-0.375", "std": "0.25" }, "frustrated": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "frustrating": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "furious": { "pos": "a", "pol": "-0.25", "std": "0.191" }, "furiously": { "pos": "r", "pol": "-0.292", "std": "0.072" }, "fury": { "pos": "n", "pol": "-0.417", "std": "0.125" }, "galling": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "gloom": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "gloomful": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "gloomily": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "gloominess": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "glooming": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "glum": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "gravel": { "pos": "v", "pol": "-0.458", "std": "0.0" }, "green-eyed": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "green-eyed monster": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "grief": { "pos": "n", "pol": "-0.437", "std": "0.177" }, "grief-stricken": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "grieving": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "gross out": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "grudge": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "guilt": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "guilt feelings": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "guilt trip": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "guilty": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "guilty conscience": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "hackles": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "harass": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "harassed": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "harassment": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "harried": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "harry": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "hassle": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "hate": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "hatred": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "heartache": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "heartbreak": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "heartbreaking": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "heartburning": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "heartrending": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "heartsick": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "heartsickness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "heavyhearted": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "heavyheartedness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "high-risk": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hopelessly": { "pos": "r", "pol": "-0.417", "std": "0.072" }, "horrendous": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "horrible": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "horrid": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "horrified": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "horrify": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "horrifying": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "horrifyingly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "horror": { "pos": "n", "pol": "-0.5", "std": "0.125" }, "horror-stricken": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "horror-struck": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "hostilely": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "huffiness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "huffish": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "huffishness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "huffy": { "pos": "a", "pol": "-0.25", "std": "0.354" }, "humble": { "pos": "v", "pol": "-0.687", "std": "0.0" }, "humbling": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "humiliate": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "humiliating": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "hysteria": { "pos": "n", "pol": "-0.375", "std": "0.125" }, "hysterical": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "ignominious": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "ill-timed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ill temper": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ill will": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "impatience": { "pos": "n", "pol": "-0.333", "std": "0.191" }, "improper": { "pos": "a", "pol": "-0.375", "std": "0.191" }, "inadequate": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "inauspicious": { "pos": "a", "pol": "-0.625", "std": "0.144" }, "incense": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "incensed": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "indignant": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "indignantly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "infuriated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "infuriating": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "infuriation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inglorious": { "pos": "a", "pol": "-0.625", "std": "0.177" }, "ingratitude": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "inimical": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inquietude": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "insecurity": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "intimidated": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "irascibility": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "irascible": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "irritate": { "pos": "v", "pol": "-0.333", "std": "0.125" }, "irritated": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "irritating": { "pos": "a", "pol": "-0.333", "std": "0.26" }, "itchy": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "jealousy": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "joyless": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "joylessly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "joylessness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lachrymose": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "lamentably": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "lividity": { "pos": "n", "pol": "-0.437", "std": "0.177" }, "loathe": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "loathing": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "loathly": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "low-spirited": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "low-spiritedness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maddened": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "maddening": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "malefic": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "maleficence": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "malevolence": { "pos": "n", "pol": "-0.562", "std": "0.0" }, "malice": { "pos": "n", "pol": "-0.625", "std": "0.088" }, "maliciously": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "maliciousness": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "malign": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "malignity": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "melancholic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "melancholy": { "pos": "n", "pol": "-0.375", "std": "0.125" }, "miffed": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "misanthropy": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "miserably": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "misery": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "misogynic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "misogynism": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "misogyny": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "misology": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "misoneism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "molest": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "mortified": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "mournfully": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "mournfulness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "mourning": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "murderously": { "pos": "r", "pol": "-0.437", "std": "0.0" }, "murderousness": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "nark": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "nauseated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nauseating": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nervy": { "pos": "a", "pol": "-0.5", "std": "0.144" }, "nettle": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nettled": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "nettlesome": { "pos": "a", "pol": "-0.875", "std": "0.088" }, "noisome": { "pos": "a", "pol": "-0.625", "std": "0.265" }, "odiously": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "odium": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "oppression": { "pos": "n", "pol": "-0.292", "std": "0.191" }, "oppressively": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "oppressiveness": { "pos": "n", "pol": "-0.375", "std": "0.265" }, "opprobrious": { "pos": "a", "pol": "-0.75", "std": "0.177" }, "outraged": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "outrageous": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "overjealous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "painfully": { "pos": "r", "pol": "-0.375", "std": "0.088" }, "panic-stricken": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "panic-struck": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "panic attack": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "panicked": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "panicky": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pathetic": { "pos": "a", "pol": "-0.292", "std": "0.144" }, "peeved": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "penitence": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "penitent": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "penitentially": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "penitently": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "perturbing": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "pesky": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "pessimism": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "pessimistically": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "pestered": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "pestering": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "pique": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "pissed": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "pissed off": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "pitilessness": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "pity": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "plague": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "plaguey": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "plaguy": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "plaintive": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "plaintiveness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pout": { "pos": "v", "pol": "-0.562", "std": "0.0" }, "premonition": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "presentiment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "provoked": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "quick temper": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rancor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rancour": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "regretful": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "remorse": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "remorseful": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "repellant": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "repellent": { "pos": "a", "pol": "-0.417", "std": "0.125" }, "repelling": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "repentance": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "repentant": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "repentantly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "repugnance": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "repugnant": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "repulse": { "pos": "v", "pol": "-0.292", "std": "0.125" }, "repulsion": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "repulsive": { "pos": "a", "pol": "-0.333", "std": "0.144" }, "repulsively": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "resentful": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "resentfully": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "resentment": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "revolting": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "revulsion": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "rile": { "pos": "v", "pol": "-0.312", "std": "0.177" }, "riled": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "risky": { "pos": "a", "pol": "-0.5", "std": "0.088" }, "roiled": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "rue": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "rueful": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "ruefulness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "ruth": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ruthful": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "ruthfulness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "ruthlessness": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "sad": { "pos": "a", "pol": "-0.292", "std": "0.191" }, "sadden": { "pos": "v", "pol": "-0.562", "std": "0.088" }, "sadly": { "pos": "r", "pol": "-0.375", "std": "0.144" }, "sadness": { "pos": "n", "pol": "-0.708", "std": "0.144" }, "scare": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "scared": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "scarey": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "scarily": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "scary": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "scorn": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "see red": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "self-deprecating": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "self-disgust": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "self-distrust": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "self-doubt": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "self-hatred": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "self-pity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "self-reproach": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "shivery": { "pos": "a", "pol": "-0.562", "std": "0.088" }, "short temper": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "shuddery": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "shyness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sick of": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sickening": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sickish": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sinking feeling": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "skanky": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sore": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sorrowful": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sorrowfulness": { "pos": "n", "pol": "-0.75", "std": "0.088" }, "sorrowing": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "spite": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "spiteful": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "spitefulness": { "pos": "n", "pol": "-0.937", "std": "0.0" }, "spoiled": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "spoilt": { "pos": "a", "pol": "-0.25", "std": "0.125" }, "stage fright": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "steamed": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "stung": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "stupid": { "pos": "a", "pol": "-0.458", "std": "0.191" }, "suffering": { "pos": "n", "pol": "-0.531", "std": "0.102" }, "sulk": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "sulkiness": { "pos": "n", "pol": "-0.417", "std": "0.144" }, "sulky": { "pos": "a", "pol": "-0.625", "std": "0.072" }, "tantrum": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "tearfulness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "terrified": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "thwarted": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "timid": { "pos": "a", "pol": "-0.333", "std": "0.125" }, "timorous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "tired of": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "trepid": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "trepidation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "troubling": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "tumult": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "turmoil": { "pos": "n", "pol": "-0.458", "std": "0.072" }, "turn one's stomach": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "umbrage": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "uncheerful": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "uncheerfulness": { "pos": "n", "pol": "-0.25", "std": "0.354" }, "uncollectible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "uneasily": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "unenviable": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "unfriendliness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ungratefulness": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "unhappiness": { "pos": "n", "pol": "-0.75", "std": "0.088" }, "unhopeful": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unkind": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unquiet": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "unsure": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "vengefulness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "venom": { "pos": "n", "pol": "-0.562", "std": "0.0" }, "vexatious": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "vexed": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "vile": { "pos": "a", "pol": "-0.625", "std": "0.265" }, "vindictive": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "vindictiveness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "warpath": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "weepiness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "weeping": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "woe": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "woebegone": { "pos": "a", "pol": "-0.687", "std": "0.088" }, "woefully": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "woefulness": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "world-weariness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "worrisome": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "worrying": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "wrath": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "wrathful": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "wrong": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "wrongly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "wroth": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "wrothful": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "yucky": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "able-bodied": { "pos": "a", "pol": "1.0", "std": "0.0" }, "adroit": { "pos": "a", "pol": "0.875", "std": "0.0" }, "affable": { "pos": "a", "pol": "1.0", "std": "0.0" }, "affluence": { "pos": "n", "pol": "1.0", "std": "0.0" }, "agreeableness": { "pos": "n", "pol": "0.813", "std": "0.177" }, "alleviate": { "pos": "v", "pol": "1.0", "std": "0.0" }, "amenity": { "pos": "n", "pol": "1.0", "std": "0.0" }, "amiable": { "pos": "a", "pol": "1.0", "std": "0.0" }, "applaudable": { "pos": "a", "pol": "1.0", "std": "0.0" }, "as luck would have it": { "pos": "r", "pol": "0.875", "std": "0.0" }, "assoil": { "pos": "v", "pol": "0.875", "std": "0.0" }, "auspicious": { "pos": "a", "pol": "0.875", "std": "0.0" }, "bang-up": { "pos": "a", "pol": "1.0", "std": "0.0" }, "bankable": { "pos": "a", "pol": "0.813", "std": "0.088" }, "banner": { "pos": "a", "pol": "0.875", "std": "0.0" }, "beamish": { "pos": "a", "pol": "1.0", "std": "0.0" }, "beauteous": { "pos": "a", "pol": "0.875", "std": "0.0" }, "beautiful": { "pos": "a", "pol": "0.813", "std": "0.088" }, "becoming": { "pos": "a", "pol": "0.813", "std": "0.088" }, "benignant": { "pos": "a", "pol": "0.813", "std": "0.265" }, "best": { "pos": "n", "pol": "0.313", "std": "0.088" }, "better-looking": { "pos": "a", "pol": "0.875", "std": "0.0" }, "blissful": { "pos": "a", "pol": "0.875", "std": "0.0" }, "blithesome": { "pos": "a", "pol": "0.875", "std": "0.0" }, "bonnie": { "pos": "a", "pol": "1.0", "std": "0.0" }, "bonny": { "pos": "a", "pol": "1.0", "std": "0.0" }, "boss": { "pos": "a", "pol": "0.875", "std": "0.0" }, "bouncing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brag": { "pos": "a", "pol": "0.875", "std": "0.0" }, "brilliance": { "pos": "n", "pol": "0.875", "std": "0.217" }, "bully": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "celebrated": { "pos": "a", "pol": "0.813", "std": "0.265" }, "cheery": { "pos": "a", "pol": "1.0", "std": "0.0" }, "cherubic": { "pos": "a", "pol": "1.0", "std": "0.0" }, "chipper": { "pos": "a", "pol": "1.0", "std": "0.0" }, "comely": { "pos": "a", "pol": "0.875", "std": "0.177" }, "commonsense": { "pos": "a", "pol": "0.875", "std": "0.0" }, "commonsensible": { "pos": "a", "pol": "0.875", "std": "0.0" }, "commonsensical": { "pos": "a", "pol": "0.875", "std": "0.0" }, "congratulatory": { "pos": "a", "pol": "0.875", "std": "0.0" }, "congruous": { "pos": "a", "pol": "0.813", "std": "0.265" }, "consuming": { "pos": "a", "pol": "0.875", "std": "0.0" }, "corking": { "pos": "a", "pol": "1.0", "std": "0.0" }, "correctitude": { "pos": "n", "pol": "1.0", "std": "0.0" }, "cosy": { "pos": "a", "pol": "1.0", "std": "0.0" }, "couthie": { "pos": "a", "pol": "0.875", "std": "0.0" }, "couthy": { "pos": "a", "pol": "0.875", "std": "0.0" }, "cracking": { "pos": "a", "pol": "1.0", "std": "0.0" }, "creditable": { "pos": "a", "pol": "0.875", "std": "0.0" }, "cum laude": { "pos": "r", "pol": "0.375", "std": "0.0" }, "dandy": { "pos": "a", "pol": "1.0", "std": "0.0" }, "decorous": { "pos": "a", "pol": "0.813", "std": "0.088" }, "delightful": { "pos": "a", "pol": "0.875", "std": "0.0" }, "deliverance": { "pos": "n", "pol": "1.0", "std": "0.0" }, "desirable": { "pos": "a", "pol": "0.875", "std": "0.177" }, "diplomatical": { "pos": "a", "pol": "1.0", "std": "0.0" }, "dulcet": { "pos": "a", "pol": "0.813", "std": "0.088" }, "eleemosynary": { "pos": "a", "pol": "1.0", "std": "0.0" }, "especial": { "pos": "a", "pol": "0.875", "std": "0.0" }, "esteemed": { "pos": "a", "pol": "0.875", "std": "0.0" }, "eudaemonia": { "pos": "n", "pol": "1.0", "std": "0.0" }, "eudaimonia": { "pos": "n", "pol": "1.0", "std": "0.0" }, "exculpate": { "pos": "v", "pol": "0.875", "std": "0.0" }, "exonerate": { "pos": "v", "pol": "0.875", "std": "0.0" }, "fab": { "pos": "a", "pol": "1.0", "std": "0.0" }, "fair to middling": { "pos": "a", "pol": "0.875", "std": "0.0" }, "famed": { "pos": "a", "pol": "1.0", "std": "0.0" }, "famous": { "pos": "a", "pol": "1.0", "std": "0.0" }, "far-famed": { "pos": "a", "pol": "1.0", "std": "0.0" }, "fetching": { "pos": "a", "pol": "1.0", "std": "0.0" }, "fine-looking": { "pos": "a", "pol": "0.875", "std": "0.0" }, "finer": { "pos": "a", "pol": "0.875", "std": "0.0" }, "fortuitously": { "pos": "r", "pol": "0.875", "std": "0.0" }, "fortunately": { "pos": "r", "pol": "0.875", "std": "0.0" }, "further": { "pos": "a", "pol": "0.375", "std": "0.0" }, "gaiety": { "pos": "n", "pol": "0.875", "std": "0.0" }, "gifted": { "pos": "a", "pol": "0.875", "std": "0.0" }, "glorious": { "pos": "a", "pol": "0.792", "std": "0.191" }, "good-humored": { "pos": "a", "pol": "1.0", "std": "0.0" }, "good-humoured": { "pos": "a", "pol": "1.0", "std": "0.0" }, "good-looking": { "pos": "a", "pol": "0.875", "std": "0.0" }, "good egg": { "pos": "n", "pol": "0.875", "std": "0.0" }, "good enough": { "pos": "a", "pol": "1.0", "std": "0.0" }, "good humor": { "pos": "n", "pol": "1.0", "std": "0.0" }, "good humour": { "pos": "n", "pol": "1.0", "std": "0.0" }, "good temper": { "pos": "n", "pol": "1.0", "std": "0.0" }, "gorgeous": { "pos": "a", "pol": "0.875", "std": "0.0" }, "gratifying": { "pos": "a", "pol": "0.875", "std": "0.177" }, "gratulatory": { "pos": "a", "pol": "0.875", "std": "0.0" }, "groundbreaking": { "pos": "a", "pol": "0.875", "std": "0.0" }, "hale": { "pos": "a", "pol": "0.875", "std": "0.0" }, "heroism": { "pos": "n", "pol": "1.0", "std": "0.0" }, "highbrow": { "pos": "a", "pol": "0.875", "std": "0.0" }, "highbrowed": { "pos": "a", "pol": "0.875", "std": "0.0" }, "honored": { "pos": "a", "pol": "0.875", "std": "0.0" }, "idealised": { "pos": "a", "pol": "0.875", "std": "0.0" }, "idealized": { "pos": "a", "pol": "0.875", "std": "0.0" }, "in condition": { "pos": "a", "pol": "0.875", "std": "0.0" }, "ingenious": { "pos": "a", "pol": "0.875", "std": "0.0" }, "innovational": { "pos": "a", "pol": "0.875", "std": "0.0" }, "jesting": { "pos": "a", "pol": "0.875", "std": "0.0" }, "jocose": { "pos": "a", "pol": "0.875", "std": "0.0" }, "jocular": { "pos": "r", "pol": "0.375", "std": "0.0" }, "joking": { "pos": "a", "pol": "0.875", "std": "0.0" }, "judicious": { "pos": "a", "pol": "1.0", "std": "0.0" }, "justifiably": { "pos": "r", "pol": "0.875", "std": "0.0" }, "kick upstairs": { "pos": "v", "pol": "1.0", "std": "0.0" }, "kid-glove": { "pos": "a", "pol": "1.0", "std": "0.0" }, "laudable": { "pos": "a", "pol": "1.0", "std": "0.0" }, "laughing": { "pos": "a", "pol": "1.0", "std": "0.0" }, "laureate": { "pos": "a", "pol": "0.875", "std": "0.0" }, "letter-perfect": { "pos": "a", "pol": "0.875", "std": "0.0" }, "level-headed": { "pos": "a", "pol": "0.875", "std": "0.0" }, "levelheaded": { "pos": "a", "pol": "0.875", "std": "0.0" }, "light-hearted": { "pos": "a", "pol": "0.875", "std": "0.0" }, "lighthearted": { "pos": "a", "pol": "0.875", "std": "0.0" }, "liked": { "pos": "a", "pol": "0.875", "std": "0.0" }, "logicality": { "pos": "n", "pol": "0.875", "std": "0.0" }, "logicalness": { "pos": "n", "pol": "0.875", "std": "0.0" }, "lovely": { "pos": "a", "pol": "0.813", "std": "0.088" }, "luckily": { "pos": "r", "pol": "0.875", "std": "0.0" }, "magna cum laude": { "pos": "r", "pol": "0.375", "std": "0.0" }, "mannerly": { "pos": "a", "pol": "0.875", "std": "0.0" }, "marvel": { "pos": "v", "pol": "0.5", "std": "0.53" }, "masterful": { "pos": "a", "pol": "1.0", "std": "0.0" }, "masterly": { "pos": "a", "pol": "1.0", "std": "0.0" }, "mellifluous": { "pos": "a", "pol": "0.875", "std": "0.0" }, "mellisonant": { "pos": "a", "pol": "0.875", "std": "0.0" }, "meritable": { "pos": "a", "pol": "1.0", "std": "0.0" }, "meritorious": { "pos": "a", "pol": "1.0", "std": "0.0" }, "mind-boggling": { "pos": "a", "pol": "0.875", "std": "0.0" }, "model": { "pos": "a", "pol": "0.875", "std": "0.0" }, "nifty": { "pos": "a", "pol": "1.0", "std": "0.0" }, "not bad": { "pos": "a", "pol": "1.0", "std": "0.0" }, "notable": { "pos": "a", "pol": "1.0", "std": "0.0" }, "noted": { "pos": "a", "pol": "0.875", "std": "0.177" }, "noteworthy": { "pos": "a", "pol": "0.875", "std": "0.177" }, "obey": { "pos": "v", "pol": "0.875", "std": "0.0" }, "okay": { "pos": "r", "pol": "0.375", "std": "0.0" }, "on the button": { "pos": "a", "pol": "0.875", "std": "0.0" }, "on the nose": { "pos": "a", "pol": "0.875", "std": "0.0" }, "opportune": { "pos": "a", "pol": "0.875", "std": "0.0" }, "optimal": { "pos": "a", "pol": "1.0", "std": "0.0" }, "optimum": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pastime": { "pos": "n", "pol": "0.875", "std": "0.0" }, "peaceful": { "pos": "a", "pol": "0.875", "std": "0.0" }, "perked up": { "pos": "a", "pol": "0.875", "std": "0.0" }, "personable": { "pos": "a", "pol": "0.875", "std": "0.0" }, "philogyny": { "pos": "n", "pol": "0.875", "std": "0.0" }, "physical fitness": { "pos": "n", "pol": "0.875", "std": "0.0" }, "pluperfect": { "pos": "a", "pol": "0.875", "std": "0.0" }, "polish up": { "pos": "v", "pol": "1.0", "std": "0.0" }, "pollyannaish": { "pos": "a", "pol": "0.875", "std": "0.0" }, "praise": { "pos": "n", "pol": "0.25", "std": "0.265" }, "praiseworthy": { "pos": "a", "pol": "1.0", "std": "0.0" }, "precise": { "pos": "a", "pol": "0.813", "std": "0.088" }, "preferential": { "pos": "a", "pol": "0.875", "std": "0.0" }, "presentable": { "pos": "a", "pol": "0.875", "std": "0.0" }, "primo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "profuseness": { "pos": "n", "pol": "0.875", "std": "0.0" }, "profusion": { "pos": "n", "pol": "0.875", "std": "0.0" }, "prolificacy": { "pos": "n", "pol": "0.875", "std": "0.0" }, "properness": { "pos": "n", "pol": "1.0", "std": "0.0" }, "propriety": { "pos": "n", "pol": "1.0", "std": "0.0" }, "prosper": { "pos": "v", "pol": "1.0", "std": "0.0" }, "prosperity": { "pos": "n", "pol": "1.0", "std": "0.0" }, "quotable": { "pos": "a", "pol": "0.813", "std": "0.265" }, "reanimate": { "pos": "v", "pol": "1.0", "std": "0.0" }, "renowned": { "pos": "a", "pol": "1.0", "std": "0.0" }, "reputability": { "pos": "n", "pol": "0.875", "std": "0.0" }, "reputable": { "pos": "a", "pol": "1.0", "std": "0.0" }, "rescue": { "pos": "n", "pol": "1.0", "std": "0.0" }, "respectability": { "pos": "n", "pol": "0.875", "std": "0.0" }, "respected": { "pos": "a", "pol": "0.875", "std": "0.0" }, "resplendent": { "pos": "a", "pol": "1.0", "std": "0.0" }, "reverential": { "pos": "a", "pol": "0.875", "std": "0.0" }, "revivify": { "pos": "v", "pol": "1.0", "std": "0.0" }, "riant": { "pos": "a", "pol": "1.0", "std": "0.0" }, "sainted": { "pos": "a", "pol": "0.875", "std": "0.0" }, "saintlike": { "pos": "a", "pol": "0.875", "std": "0.0" }, "saintly": { "pos": "a", "pol": "0.875", "std": "0.0" }, "sensibly": { "pos": "r", "pol": "1.0", "std": "0.0" }, "shape up": { "pos": "v", "pol": "1.0", "std": "0.0" }, "sightly": { "pos": "a", "pol": "1.0", "std": "0.0" }, "sincere": { "pos": "a", "pol": "0.875", "std": "0.177" }, "skilled": { "pos": "a", "pol": "0.875", "std": "0.0" }, "skillfulness": { "pos": "n", "pol": "0.875", "std": "0.0" }, "slap-up": { "pos": "a", "pol": "1.0", "std": "0.0" }, "smashing": { "pos": "a", "pol": "1.0", "std": "0.0" }, "smiling": { "pos": "n", "pol": "0.375", "std": "0.0" }, "soundness": { "pos": "n", "pol": "0.958", "std": "0.072" }, "spiffing": { "pos": "a", "pol": "0.875", "std": "0.0" }, "splendiferous": { "pos": "a", "pol": "1.0", "std": "0.0" }, "square shooter": { "pos": "n", "pol": "0.875", "std": "0.0" }, "starry-eyed": { "pos": "a", "pol": "0.875", "std": "0.0" }, "stimulated": { "pos": "a", "pol": "0.875", "std": "0.0" }, "stirred up": { "pos": "a", "pol": "0.875", "std": "0.0" }, "straight arrow": { "pos": "n", "pol": "0.875", "std": "0.0" }, "straight shooter": { "pos": "n", "pol": "0.875", "std": "0.0" }, "strong point": { "pos": "n", "pol": "0.875", "std": "0.0" }, "successfulness": { "pos": "n", "pol": "1.0", "std": "0.0" }, "suitable": { "pos": "a", "pol": "0.813", "std": "0.265" }, "summa cum laude": { "pos": "r", "pol": "0.375", "std": "0.0" }, "sunny": { "pos": "a", "pol": "1.0", "std": "0.0" }, "superb": { "pos": "a", "pol": "0.938", "std": "0.088" }, "sure-fire": { "pos": "a", "pol": "0.875", "std": "0.0" }, "sure-handed": { "pos": "a", "pol": "1.0", "std": "0.0" }, "sweet": { "pos": "a", "pol": "0.5", "std": "0.443" }, "sweet-scented": { "pos": "a", "pol": "0.875", "std": "0.0" }, "sweet-smelling": { "pos": "a", "pol": "0.875", "std": "0.0" }, "sweetly": { "pos": "r", "pol": "0.875", "std": "0.0" }, "swell": { "pos": "a", "pol": "1.0", "std": "0.0" }, "taking": { "pos": "a", "pol": "1.0", "std": "0.0" }, "talented": { "pos": "a", "pol": "0.875", "std": "0.0" }, "thrive": { "pos": "v", "pol": "0.813", "std": "0.265" }, "together": { "pos": "a", "pol": "1.0", "std": "0.0" }, "top-flight": { "pos": "a", "pol": "0.875", "std": "0.0" }, "top-hole": { "pos": "a", "pol": "0.875", "std": "0.0" }, "topping": { "pos": "a", "pol": "0.875", "std": "0.0" }, "trusted": { "pos": "a", "pol": "0.875", "std": "0.0" }, "twinkly": { "pos": "a", "pol": "1.0", "std": "0.0" }, "unfeigned": { "pos": "a", "pol": "0.875", "std": "0.0" }, "upbeat": { "pos": "n", "pol": "0.438", "std": "0.707" }, "upstanding": { "pos": "a", "pol": "1.0", "std": "0.0" }, "valiance": { "pos": "n", "pol": "1.0", "std": "0.0" }, "valiancy": { "pos": "n", "pol": "1.0", "std": "0.0" }, "valor": { "pos": "n", "pol": "1.0", "std": "0.0" }, "valorousness": { "pos": "n", "pol": "1.0", "std": "0.0" }, "valour": { "pos": "n", "pol": "1.0", "std": "0.0" }, "venerating": { "pos": "a", "pol": "0.875", "std": "0.0" }, "virtuoso": { "pos": "n", "pol": "0.25", "std": "0.177" }, "well-behaved": { "pos": "a", "pol": "0.875", "std": "0.0" }, "well-being": { "pos": "n", "pol": "1.0", "std": "0.0" }, "well-favored": { "pos": "a", "pol": "0.875", "std": "0.0" }, "well-favoured": { "pos": "a", "pol": "0.875", "std": "0.0" }, "well-preserved": { "pos": "a", "pol": "0.875", "std": "0.0" }, "well-thought-of": { "pos": "a", "pol": "0.875", "std": "0.0" }, "well behaved": { "pos": "a", "pol": "0.875", "std": "0.0" }, "wellbeing": { "pos": "n", "pol": "1.0", "std": "0.0" }, "winning": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wonder": { "pos": "v", "pol": "0.333", "std": "0.52" }, "wonderful": { "pos": "a", "pol": "1.0", "std": "0.0" }, "wonderment": { "pos": "n", "pol": "1.0", "std": "0.0" }, "wondrous": { "pos": "r", "pol": "0.25", "std": "0.0" }, "word-perfect": { "pos": "a", "pol": "0.875", "std": "0.0" }, "worthful": { "pos": "a", "pol": "0.875", "std": "0.0" }, "worthiness": { "pos": "n", "pol": "1.0", "std": "0.0" }, "worthwhile": { "pos": "a", "pol": "0.875", "std": "0.0" }, "worthy": { "pos": "a", "pol": "1.0", "std": "0.0" }, "adynamia": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "afflict": { "pos": "v", "pol": "-0.812", "std": "0.0" }, "affliction": { "pos": "n", "pol": "-0.917", "std": "0.0" }, "afflictive": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "anguish": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "animadversion": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "assuming": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "asymmetry": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "atrophy": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "backwardness": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "baleful": { "pos": "a", "pol": "-0.875", "std": "0.088" }, "bastard": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "berating": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "betray": { "pos": "v", "pol": "-0.771", "std": "0.051" }, "bitchiness": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "blamable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "blameable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "blameful": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "blameworthy": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "blemish": { "pos": "v", "pol": "-0.542", "std": "0.072" }, "blemished": { "pos": "a", "pol": "-0.875", "std": "0.088" }, "blockheaded": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "bloodguilty": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "blowing up": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "bogus": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "boneheaded": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "bump off": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "by-blow": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "cabbage": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "caddish": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "caliginous": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "callowness": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "calumniatory": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "calumnious": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "carnage": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "castigate": { "pos": "v", "pol": "-0.812", "std": "0.0" }, "cattiness": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "cause of death": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "censurable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "charcoal": { "pos": "n", "pol": "-0.281", "std": "0.0" }, "charnel": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "cheat on": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "chinchy": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "churlish": { "pos": "a", "pol": "-0.875", "std": "0.088" }, "clamminess": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "cloddish": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "condemnable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "condemnatory": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "condemning": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "condolence": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "contemptuousness": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "contrabandist": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "convict": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "crappy": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "crass": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "crocodile tears": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "cuckold": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "culpable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "curmudgeonly": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "dankness": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "darkening": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "darkish": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "deaf-and-dumb": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "deaf-mute": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "decayable": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "decayed": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "deceive": { "pos": "v", "pol": "-0.937", "std": "0.0" }, "defamatory": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "defect": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "delude": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "demote": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "denigrating": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "denigrative": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "denigratory": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "desecrated": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "despicable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "despoiled": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "dickhead": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "difficultness": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "disadvantageous": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "disagreeable": { "pos": "a", "pol": "-0.833", "std": "0.144" }, "disagreeableness": { "pos": "n", "pol": "-0.875", "std": "0.088" }, "discontinuity": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "disesteem": { "pos": "n", "pol": "0.375", "std": "0.0" }, "disfluency": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "disharmony": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "dishearten": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "dishonor": { "pos": "n", "pol": "-0.875", "std": "0.088" }, "dishonour": { "pos": "n", "pol": "-0.875", "std": "0.088" }, "disliked": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "disregard": { "pos": "n", "pol": "-0.812", "std": "0.0" }, "dissimulative": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "dissymmetry": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "do in": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "doltish": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "duncical": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "duncish": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "egregious": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "enrage": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "evil-looking": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "eyesore": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "fatheaded": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "fetid": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "filch": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "flagrant": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "flawed": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "flood out": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "foetid": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "foolishly": { "pos": "r", "pol": "-0.875", "std": "0.0" }, "forget me drug": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "forsake": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "foul-smelling": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "freeze off": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "frigidly": { "pos": "r", "pol": "-0.875", "std": "0.0" }, "frostily": { "pos": "r", "pol": "-0.875", "std": "0.0" }, "frown": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "gammy": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "gaumless": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "get under one's skin": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "ghoulish": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "gloat": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "gloating": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "go wrong": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "god-awful": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "godforsaken": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "gormless": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "guiltiness": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "harmful": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "hell": { "pos": "n", "pol": "-0.937", "std": "0.0" }, "hell on earth": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "hellhole": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "hot water": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "humbug": { "pos": "n", "pol": "-0.333", "std": "0.144" }, "hypochondriac": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hypochondriacal": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "ill-humored": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "ill-humoured": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "ill-scented": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "ill-smelling": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "ill humor": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "ill humour": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "ill nature": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "illegitimate": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "illegitimate child": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "immoderate": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "impassable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "improperly": { "pos": "r", "pol": "-0.875", "std": "0.0" }, "improperness": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "impugn": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "inadmissible": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "inanity": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "inaptitude": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "incapacity": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "incompetence": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "incompetency": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "incomprehensive": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "incoordination": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "indecorousness": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "inefficaciousness": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "inefficacy": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "inefficiency": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "inelasticity": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "inexperienced": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "inexperient": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "inflexibleness": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "inharmoniousness": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "involuntariness": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "irrecoverable": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "kick downstairs": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "liar": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "libellous": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "libelous": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "loggerheaded": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "love child": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "loveless": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "malignment": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "malodorous": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "malodourous": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "manic-depressive": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "manky": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "mar": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "mass murder": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "massacre": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "menacing": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "mental retardation": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "mentally ill": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "minacious": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "minatory": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "misapply": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "misbegot": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "misbegotten": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "misbehavior": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "misbehaviour": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "miscarry": { "pos": "v", "pol": "-0.812", "std": "0.0" }, "mischievous": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "misdeed": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "misogynistic": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "misogynous": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "misuse": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "moon-curser": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "moon curser": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "mother fucker": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "motherfucker": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "murder": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "nagging": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "nastiness": { "pos": "n", "pol": "-0.792", "std": "0.072" }, "nervous breakdown": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "netherworld": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "nitwitted": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "non-living": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "noncomprehensive": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "nondigestible": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "nonliving": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "off": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "on the hook": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "overpoweringly": { "pos": "r", "pol": "-0.875", "std": "0.0" }, "overwhelmingly": { "pos": "r", "pol": "-0.875", "std": "0.0" }, "parsimonious": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "perplex": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "phobic": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "phoney": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "phony": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pilfer": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "pitch-black": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "pitch black": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "pointlessness": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "pooh-pooh": { "pos": "v", "pol": "-0.937", "std": "0.0" }, "presumptuous": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "prevaricator": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "protestant": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "psychopathic": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "psychopathologic": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "psychopathological": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "purloin": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "putrefiable": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "putrescible": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "quack": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "rampage": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "rank-smelling": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "raped": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "raucous": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "ravaged": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "reprehensible": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "roofy": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "rophy": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "rotted": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "rotten": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "rough-spoken": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "rubbishy": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "sacked": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "scowl": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "scurrilous": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "self-destructive": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "selfishness": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "senselessness": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "sharp-worded": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "shirty": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "shitty": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "shortcoming": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "showdown": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "shrewish": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "slanderous": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "slay": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "slayer": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "slaying": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "smash up": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "smelly": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "smuggle": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "smuggler": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "snarf": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "snorty": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "soft-witted": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "son of a bitch": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "soot black": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "spoilable": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "spurn": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "static": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "stinking": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "stinky": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "strife": { "pos": "n", "pol": "-0.812", "std": "0.0" }, "suicidal": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "surly": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "tactlessness": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "talentlessness": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "tempest": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "tenebrific": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "tenebrious": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "tenebrous": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "the pits": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "thick-skulled": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "thickheaded": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "unanimated": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "unappreciative": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "unbending": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "unchivalrous": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "uncleanliness": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "unconnectedness": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "unconstructive": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "uncooperative": { "pos": "a", "pol": "-0.812", "std": "0.088" }, "uncouthness": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "uncreativeness": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "under attack": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "under fire": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "undeserving": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "undignified": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "unenlightenment": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "unfavorably": { "pos": "r", "pol": "-0.875", "std": "0.0" }, "unfavourably": { "pos": "r", "pol": "-0.875", "std": "0.0" }, "ungallant": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "unknowing": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "unknowledgeable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "unmalleability": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "unmerited": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "unmitigable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "unnavigable": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "unobliging": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "unpassable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "unperceptiveness": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "unpleasant-smelling": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "unpleasingness": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "unrecoverable": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "unseemliness": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "unsightly": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "untraversable": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "untrustworthy": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "untrusty": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "unwillingness": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "unwisely": { "pos": "r", "pol": "-0.875", "std": "0.0" }, "unworthy": { "pos": "a", "pol": "-0.917", "std": "0.072" }, "vilification": { "pos": "n", "pol": "-0.812", "std": "0.0" }, "violent disorder": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "waste": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "wasting away": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "weak point": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "weep": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "weigh on": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "whoreson": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "withering": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "witless": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "wooden-headed": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "accurate": { "pos": "a", "pol": "0.75", "std": "0.177" }, "adequate to": { "pos": "a", "pol": "0.75", "std": "0.0" }, "admired": { "pos": "a", "pol": "0.75", "std": "0.0" }, "admittable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "admittible": { "pos": "a", "pol": "0.75", "std": "0.0" }, "adoptable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "adorable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "advantage": { "pos": "n", "pol": "0.542", "std": "0.26" }, "advantageously": { "pos": "r", "pol": "0.75", "std": "0.0" }, "agog": { "pos": "a", "pol": "0.75", "std": "0.0" }, "all right": { "pos": "a", "pol": "0.75", "std": "0.0" }, "alterative": { "pos": "a", "pol": "0.75", "std": "0.0" }, "amendable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "amusive": { "pos": "a", "pol": "0.75", "std": "0.0" }, "ancillary": { "pos": "a", "pol": "0.75", "std": "0.0" }, "appositeness": { "pos": "n", "pol": "0.75", "std": "0.0" }, "appropriate": { "pos": "a", "pol": "0.75", "std": "0.0" }, "assentient": { "pos": "a", "pol": "0.75", "std": "0.0" }, "be well": { "pos": "v", "pol": "0.75", "std": "0.0" }, "better off": { "pos": "a", "pol": "0.75", "std": "0.0" }, "blest": { "pos": "a", "pol": "0.75", "std": "0.0" }, "blue-chip": { "pos": "a", "pol": "0.75", "std": "0.0" }, "boffo": { "pos": "a", "pol": "0.75", "std": "0.0" }, "bullish": { "pos": "a", "pol": "0.75", "std": "0.0" }, "charismatic": { "pos": "a", "pol": "0.75", "std": "0.0" }, "cherished": { "pos": "a", "pol": "0.75", "std": "0.0" }, "clean-living": { "pos": "a", "pol": "0.75", "std": "0.0" }, "cognisable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "cognise": { "pos": "v", "pol": "0.75", "std": "0.0" }, "cognize": { "pos": "v", "pol": "0.75", "std": "0.0" }, "cognoscible": { "pos": "a", "pol": "0.75", "std": "0.0" }, "comme il faut": { "pos": "a", "pol": "0.75", "std": "0.0" }, "competence": { "pos": "n", "pol": "0.75", "std": "0.0" }, "competency": { "pos": "n", "pol": "0.75", "std": "0.0" }, "compliant": { "pos": "a", "pol": "0.75", "std": "0.0" }, "confirmative": { "pos": "a", "pol": "0.75", "std": "0.0" }, "confirmatory": { "pos": "a", "pol": "0.75", "std": "0.0" }, "conformism": { "pos": "n", "pol": "0.75", "std": "0.0" }, "congruence": { "pos": "n", "pol": "0.75", "std": "0.0" }, "congruity": { "pos": "n", "pol": "0.75", "std": "0.0" }, "congruousness": { "pos": "n", "pol": "0.75", "std": "0.0" }, "considerateness": { "pos": "n", "pol": "0.75", "std": "0.0" }, "copacetic": { "pos": "a", "pol": "0.75", "std": "0.0" }, "copasetic": { "pos": "a", "pol": "0.75", "std": "0.0" }, "copesetic": { "pos": "a", "pol": "0.75", "std": "0.0" }, "copesettic": { "pos": "a", "pol": "0.75", "std": "0.0" }, "corrigible": { "pos": "a", "pol": "0.75", "std": "0.0" }, "corroborative": { "pos": "a", "pol": "0.75", "std": "0.0" }, "corroboratory": { "pos": "a", "pol": "0.75", "std": "0.0" }, "countenance": { "pos": "v", "pol": "0.75", "std": "0.0" }, "courting": { "pos": "n", "pol": "0.75", "std": "0.0" }, "courtship": { "pos": "n", "pol": "0.75", "std": "0.0" }, "creditworthy": { "pos": "a", "pol": "0.75", "std": "0.0" }, "cunning": { "pos": "a", "pol": "0.75", "std": "0.072" }, "curative": { "pos": "n", "pol": "0.625", "std": "0.0" }, "debonair": { "pos": "a", "pol": "0.75", "std": "0.354" }, "debonaire": { "pos": "a", "pol": "0.75", "std": "0.354" }, "decided": { "pos": "a", "pol": "0.75", "std": "0.0" }, "decorousness": { "pos": "n", "pol": "0.75", "std": "0.0" }, "decorum": { "pos": "n", "pol": "0.75", "std": "0.0" }, "deft": { "pos": "a", "pol": "0.75", "std": "0.0" }, "demonstrative of": { "pos": "a", "pol": "0.75", "std": "0.0" }, "dependability": { "pos": "n", "pol": "0.75", "std": "0.0" }, "dependableness": { "pos": "n", "pol": "0.75", "std": "0.0" }, "dexterous": { "pos": "a", "pol": "0.75", "std": "0.0" }, "dextrous": { "pos": "a", "pol": "0.75", "std": "0.0" }, "diverting": { "pos": "a", "pol": "0.75", "std": "0.0" }, "earnestness": { "pos": "n", "pol": "0.75", "std": "0.177" }, "ebullience": { "pos": "n", "pol": "0.75", "std": "0.0" }, "ecstatic": { "pos": "a", "pol": "0.75", "std": "0.0" }, "elastic": { "pos": "a", "pol": "0.75", "std": "0.354" }, "eligible": { "pos": "a", "pol": "0.75", "std": "0.0" }, "encomiastic": { "pos": "a", "pol": "0.75", "std": "0.0" }, "endearing": { "pos": "a", "pol": "0.75", "std": "0.0" }, "engaging": { "pos": "a", "pol": "0.75", "std": "0.0" }, "enjoyable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "enlivened": { "pos": "a", "pol": "0.75", "std": "0.177" }, "enraptured": { "pos": "a", "pol": "0.75", "std": "0.0" }, "erotic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eulogistic": { "pos": "a", "pol": "0.75", "std": "0.0" }, "exalted": { "pos": "a", "pol": "0.75", "std": "0.0" }, "experienced": { "pos": "a", "pol": "0.75", "std": "0.0" }, "experient": { "pos": "a", "pol": "0.75", "std": "0.0" }, "exportable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "express joy": { "pos": "v", "pol": "0.75", "std": "0.0" }, "express mirth": { "pos": "v", "pol": "0.75", "std": "0.0" }, "felicitous": { "pos": "a", "pol": "0.75", "std": "0.177" }, "fertilizable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "festal": { "pos": "a", "pol": "0.75", "std": "0.0" }, "festive": { "pos": "a", "pol": "0.75", "std": "0.0" }, "fevered": { "pos": "a", "pol": "0.75", "std": "0.0" }, "fittingness": { "pos": "n", "pol": "0.75", "std": "0.0" }, "flattering": { "pos": "a", "pol": "0.75", "std": "0.0" }, "flourishing": { "pos": "a", "pol": "0.75", "std": "0.0" }, "gain ground": { "pos": "v", "pol": "0.75", "std": "0.0" }, "gainly": { "pos": "a", "pol": "0.75", "std": "0.0" }, "get ahead": { "pos": "v", "pol": "0.75", "std": "0.0" }, "good nature": { "pos": "n", "pol": "0.75", "std": "0.0" }, "goody-goody": { "pos": "n", "pol": "0.25", "std": "0.0" }, "guarded": { "pos": "a", "pol": "0.75", "std": "0.0" }, "halcyon": { "pos": "a", "pol": "0.75", "std": "0.0" }, "handy": { "pos": "a", "pol": "0.75", "std": "0.125" }, "harmonical": { "pos": "a", "pol": "0.75", "std": "0.0" }, "harmonious": { "pos": "a", "pol": "0.75", "std": "0.144" }, "harmonised": { "pos": "a", "pol": "0.75", "std": "0.0" }, "harmonized": { "pos": "a", "pol": "0.75", "std": "0.0" }, "healing": { "pos": "a", "pol": "0.75", "std": "0.0" }, "heaven-sent": { "pos": "a", "pol": "0.75", "std": "0.0" }, "hedonic": { "pos": "a", "pol": "0.75", "std": "0.0" }, "hedonistic": { "pos": "a", "pol": "0.75", "std": "0.0" }, "high-minded": { "pos": "a", "pol": "0.75", "std": "0.0" }, "high-performance": { "pos": "a", "pol": "0.75", "std": "0.0" }, "honorific": { "pos": "a", "pol": "0.75", "std": "0.0" }, "honourable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "honourably": { "pos": "r", "pol": "0.75", "std": "0.0" }, "humorous": { "pos": "a", "pol": "0.75", "std": "0.0" }, "humourous": { "pos": "a", "pol": "0.75", "std": "0.0" }, "hunky-dory": { "pos": "a", "pol": "0.75", "std": "0.0" }, "illustrious": { "pos": "a", "pol": "0.75", "std": "0.265" }, "impeccant": { "pos": "a", "pol": "0.75", "std": "0.0" }, "in high spirits": { "pos": "a", "pol": "0.75", "std": "0.0" }, "innovative": { "pos": "a", "pol": "0.75", "std": "0.177" }, "inspired": { "pos": "a", "pol": "0.75", "std": "0.0" }, "irenic": { "pos": "a", "pol": "0.75", "std": "0.0" }, "jaunty": { "pos": "a", "pol": "0.75", "std": "0.354" }, "knowable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "laudatory": { "pos": "a", "pol": "0.75", "std": "0.0" }, "laugh": { "pos": "n", "pol": "0.417", "std": "0.191" }, "livable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "liveable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "magnificent": { "pos": "a", "pol": "0.75", "std": "0.0" }, "majestic": { "pos": "a", "pol": "0.75", "std": "0.361" }, "make headway": { "pos": "v", "pol": "0.75", "std": "0.0" }, "malleability": { "pos": "n", "pol": "0.75", "std": "0.0" }, "manipulable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "mesmeric": { "pos": "a", "pol": "0.75", "std": "0.0" }, "mesmerizing": { "pos": "a", "pol": "0.75", "std": "0.0" }, "noble-minded": { "pos": "a", "pol": "0.75", "std": "0.0" }, "o.k.": { "pos": "a", "pol": "0.75", "std": "0.0" }, "ok": { "pos": "a", "pol": "0.75", "std": "0.0" }, "opportuneness": { "pos": "n", "pol": "0.75", "std": "0.0" }, "opportunist": { "pos": "a", "pol": "0.75", "std": "0.0" }, "palmy": { "pos": "a", "pol": "0.75", "std": "0.0" }, "panegyric": { "pos": "n", "pol": "0.375", "std": "0.0" }, "panegyrical": { "pos": "a", "pol": "0.75", "std": "0.0" }, "patness": { "pos": "n", "pol": "0.75", "std": "0.0" }, "peppy": { "pos": "a", "pol": "0.75", "std": "0.0" }, "perfectible": { "pos": "a", "pol": "0.75", "std": "0.0" }, "perky": { "pos": "a", "pol": "0.75", "std": "0.0" }, "photogenic": { "pos": "a", "pol": "0.75", "std": "0.0" }, "pious": { "pos": "a", "pol": "0.75", "std": "0.0" }, "placation": { "pos": "n", "pol": "0.75", "std": "0.0" }, "plasticity": { "pos": "n", "pol": "0.75", "std": "0.0" }, "pleasant": { "pos": "a", "pol": "0.75", "std": "0.088" }, "pleasurable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "politic": { "pos": "a", "pol": "0.75", "std": "0.265" }, "practised": { "pos": "a", "pol": "0.75", "std": "0.0" }, "praiseful": { "pos": "a", "pol": "0.75", "std": "0.0" }, "praising": { "pos": "a", "pol": "0.75", "std": "0.0" }, "prepossessing": { "pos": "a", "pol": "0.75", "std": "0.0" }, "prestigious": { "pos": "a", "pol": "0.75", "std": "0.177" }, "prize": { "pos": "v", "pol": "0.25", "std": "0.451" }, "profit": { "pos": "n", "pol": "0.563", "std": "0.265" }, "promising": { "pos": "a", "pol": "0.75", "std": "0.088" }, "promotive": { "pos": "a", "pol": "0.75", "std": "0.0" }, "prospering": { "pos": "a", "pol": "0.75", "std": "0.0" }, "prudent": { "pos": "a", "pol": "0.75", "std": "0.0" }, "pulchritudinous": { "pos": "a", "pol": "0.75", "std": "0.0" }, "pull ahead": { "pos": "v", "pol": "0.75", "std": "0.0" }, "quick-witted": { "pos": "a", "pol": "0.75", "std": "0.0" }, "rapt": { "pos": "a", "pol": "0.75", "std": "0.0" }, "rapturous": { "pos": "a", "pol": "0.75", "std": "0.0" }, "ratiocinative": { "pos": "a", "pol": "0.75", "std": "0.0" }, "rattling": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ravishing": { "pos": "a", "pol": "0.75", "std": "0.0" }, "reconstructive": { "pos": "a", "pol": "0.75", "std": "0.0" }, "reliability": { "pos": "n", "pol": "0.75", "std": "0.0" }, "reliableness": { "pos": "n", "pol": "0.75", "std": "0.0" }, "respectful": { "pos": "a", "pol": "0.75", "std": "0.088" }, "rhapsodic": { "pos": "a", "pol": "0.75", "std": "0.0" }, "right-minded": { "pos": "a", "pol": "0.75", "std": "0.0" }, "righteousness": { "pos": "n", "pol": "0.75", "std": "0.0" }, "roaring": { "pos": "r", "pol": "0.25", "std": "0.0" }, "rose-cheeked": { "pos": "a", "pol": "0.75", "std": "0.0" }, "rosy-cheeked": { "pos": "a", "pol": "0.75", "std": "0.0" }, "rubicund": { "pos": "a", "pol": "0.75", "std": "0.0" }, "sanative": { "pos": "a", "pol": "0.75", "std": "0.0" }, "satiate": { "pos": "v", "pol": "0.25", "std": "0.177" }, "satiated": { "pos": "a", "pol": "0.75", "std": "0.0" }, "satisfactoriness": { "pos": "n", "pol": "0.75", "std": "0.0" }, "scalable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "seemliness": { "pos": "n", "pol": "0.75", "std": "0.0" }, "seemly": { "pos": "a", "pol": "0.75", "std": "0.0" }, "sensuous": { "pos": "a", "pol": "0.75", "std": "0.0" }, "serious-minded": { "pos": "a", "pol": "0.75", "std": "0.0" }, "sinless": { "pos": "a", "pol": "0.75", "std": "0.0" }, "sociable": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spellbinding": { "pos": "a", "pol": "0.75", "std": "0.0" }, "staid": { "pos": "a", "pol": "0.75", "std": "0.0" }, "staunch": { "pos": "a", "pol": "0.75", "std": "0.0" }, "suave": { "pos": "a", "pol": "0.75", "std": "0.354" }, "substantiating": { "pos": "a", "pol": "0.75", "std": "0.0" }, "substantiative": { "pos": "a", "pol": "0.75", "std": "0.0" }, "successful": { "pos": "a", "pol": "0.75", "std": "0.0" }, "symphonious": { "pos": "a", "pol": "0.75", "std": "0.0" }, "tenable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "the true": { "pos": "n", "pol": "0.75", "std": "0.0" }, "thought-provoking": { "pos": "a", "pol": "0.75", "std": "0.0" }, "thriving": { "pos": "a", "pol": "0.75", "std": "0.0" }, "time-honored": { "pos": "a", "pol": "0.75", "std": "0.177" }, "time-honoured": { "pos": "a", "pol": "0.75", "std": "0.177" }, "timeserving": { "pos": "a", "pol": "0.75", "std": "0.0" }, "tolerable": { "pos": "a", "pol": "0.75", "std": "0.177" }, "treasured": { "pos": "a", "pol": "0.75", "std": "0.0" }, "trusty": { "pos": "n", "pol": "0.375", "std": "0.0" }, "turn a profit": { "pos": "v", "pol": "0.75", "std": "0.0" }, "understated": { "pos": "a", "pol": "0.75", "std": "0.0" }, "unexceptionable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "validating": { "pos": "a", "pol": "0.75", "std": "0.0" }, "validatory": { "pos": "a", "pol": "0.75", "std": "0.0" }, "valued": { "pos": "a", "pol": "0.75", "std": "0.354" }, "verificatory": { "pos": "a", "pol": "0.75", "std": "0.0" }, "verifying": { "pos": "a", "pol": "0.75", "std": "0.0" }, "versed": { "pos": "a", "pol": "0.75", "std": "0.0" }, "veteran": { "pos": "a", "pol": "0.75", "std": "0.0" }, "voluntarily": { "pos": "r", "pol": "0.75", "std": "0.0" }, "waggish": { "pos": "a", "pol": "0.75", "std": "0.0" }, "welcome": { "pos": "a", "pol": "0.75", "std": "0.0" }, "well-conducted": { "pos": "a", "pol": "0.75", "std": "0.0" }, "well-founded": { "pos": "a", "pol": "0.75", "std": "0.0" }, "well-informed": { "pos": "a", "pol": "0.75", "std": "0.0" }, "well-made": { "pos": "a", "pol": "0.75", "std": "0.0" }, "well-timed": { "pos": "r", "pol": "0.25", "std": "0.0" }, "well-turned": { "pos": "a", "pol": "0.75", "std": "0.0" }, "well-wishing": { "pos": "a", "pol": "0.75", "std": "0.0" }, "well timed": { "pos": "a", "pol": "0.75", "std": "0.0" }, "wholesome": { "pos": "a", "pol": "0.75", "std": "0.0" }, "wholesomeness": { "pos": "n", "pol": "0.75", "std": "0.0" }, "willingness": { "pos": "n", "pol": "0.75", "std": "0.0" }, "winsome": { "pos": "a", "pol": "0.75", "std": "0.0" }, "wooing": { "pos": "n", "pol": "0.75", "std": "0.0" }, "workmanlike": { "pos": "a", "pol": "0.75", "std": "0.0" }, "aboulic": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "abulic": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "achromasia": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "achromatous": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "acidulent": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "acidulous": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "aggravated assault": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "agonised": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "agonized": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "alas": { "pos": "r", "pol": "-0.75", "std": "0.0" }, "algid": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "algophobic": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "amateurishness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "anguished": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "asshole": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "assumed": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "atrabilious": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "bad-tempered": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "baseness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "bastardly": { "pos": "a", "pol": "-0.75", "std": "0.088" }, "bawl out": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "bawling out": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "beetle-browed": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "berate": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "bereavement": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "betise": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "blindness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "brainish": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "brash": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "brokenhearted": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "brusk": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "brusque": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "burned-over": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "bypass": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "call on the carpet": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "cataclysmal": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "cataclysmic": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "cecity": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "chargeable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "chastise": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "cheeky": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "chew out": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "chew up": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "chewing out": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "chide": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "closefisted": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "conscienceless": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "contemptibility": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "contemptible": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "contemptuous": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "contumely": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "coup de main": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "crabbed": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "crabby": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "crazed": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "creepy-crawlies": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "crock up": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "cruelness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "cussedness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "damnatory": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "damning": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "dangerous": { "pos": "a", "pol": "-0.75", "std": "0.177" }, "dark-colored": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "dark-coloured": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "darkling": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "deafness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "demean": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "deranged": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "deride": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "derisive": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "despicability": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "despicableness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "despised": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "destructive": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "destructiveness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "detested": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "disapprobation": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "disequilibrium": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "disingenuousness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "disproportional": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "disturb": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "drag up": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "dredge up": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "dressing down": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "dumbfound": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "dusky-colored": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "dusky-coloured": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "dustup": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "dyspeptic": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "empurpled": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "ersatz": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "exceptionable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "fallout": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "feeblemindedness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "feigned": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "feral": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "ferine": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "ferocity": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "fetor": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "fierceness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "flightless": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "flummox": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "foetor": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "forceless": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "fragility": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "fraudulent": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "frowning": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "furiousness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "gibelike": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "godless": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "grossness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "grotty": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "grouchy": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "grumpy": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "gun down": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "half-crazed": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "hardfisted": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "hated": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "have words": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "hazardous": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "hearing loss": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "heartbroken": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "hellish": { "pos": "a", "pol": "-0.75", "std": "0.177" }, "hexed": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "hot-tempered": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "hot under the collar": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "hotheaded": { "pos": "a", "pol": "-0.75", "std": "0.088" }, "hypochondria": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "hypochondriasis": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "hypopigmentation": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "ignorantness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "ill-being": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "ill-considered": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "ill-judged": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "ill-natured": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "ill-tempered": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "immoderateness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "immoderation": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "imperfectly": { "pos": "r", "pol": "-0.75", "std": "0.0" }, "impetuous": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "impiety": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "impiousness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "impish": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "implacable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "implike": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "imprecise": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "improvidence": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "imprudence": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "inaccurate": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "inadequately": { "pos": "r", "pol": "-0.75", "std": "0.0" }, "inadequateness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "inadvisable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "inauthentic": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "incognizance": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "incognizant": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "incompressible": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "inconsolable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "indictable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "indigestible": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "ineffectiveness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "ineffectuality": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "ineffectualness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "inefficient": { "pos": "a", "pol": "-0.75", "std": "0.088" }, "inequitable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "inexpiable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "inextirpable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "inextricable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "infernal region": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "infertile": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "inflict": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "inhospitality": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "inopportune": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "insolvency": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "insulting": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "irk": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "irreversible": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "irritant": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "jeering": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "jinxed": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "killer": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "kvetch": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "liverish": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "livery": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "lividness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "lynch": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "madcap": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "malodor": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "malodour": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "mephitic": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "miserliness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "misleading": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "mobbish": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "moblike": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "mulish": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "mysophobic": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "naiveness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "naivete": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "naivety": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "namby-pamby": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nescience": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "niff": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "niffy": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "nonintellectual": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "nonplus": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "objectionable": { "pos": "a", "pol": "-0.75", "std": "0.088" }, "obnoxious": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "obtund": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "offended": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "orneriness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "ostentatiousness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "over-embellished": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "pain": { "pos": "n", "pol": "-0.3", "std": "0.068" }, "pained": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "pallidness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "pallor": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "peevish": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "penalise": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "penalize": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "perniciousness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "perplexed": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "pettish": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "petulant": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "pine": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "plain": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "pomposity": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "pompousness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "pong": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "poor-spirited": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "prankish": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "pretend": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pretended": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "primitiveness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "puckish": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "punish": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "pusillanimous": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "put on": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "putrid-smelling": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "quetch": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "quick-tempered": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "raise the roof": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "rancorous": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "raunch": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "rebuke": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "reek": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "regrettably": { "pos": "r", "pol": "-0.75", "std": "0.0" }, "resourceless": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "revilement": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "roughhouse": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "rowdy": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "rudeness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "run-in": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "sackcloth and ashes": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "satanophobia": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "schizophrenic": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "scorned": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "scornful": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "scowling": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "self-incrimination": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "self-torment": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "self-torture": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "sham": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "short-tempered": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "sightlessness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "sirrah": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "snake pit": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "sneering": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "snide": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "spavined": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "splashiness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "springless": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "starving": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "stench": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "stink": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "struggling": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "styleless": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "surprise attack": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "take to task": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "talentless": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "taunting": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tearaway": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "techy": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "testy": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "tetchy": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "thick-skinned": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "throes": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "tightfisted": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "tinpot": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "tortured": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "tragical": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "trashy": { "pos": "a", "pol": "-0.75", "std": "0.088" }, "traumatise": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "traumatize": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "trifling": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "troublesomeness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "trumped-up": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unadvisable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unalert": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unauthentic": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unaware": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "uncared-for": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "uncharitable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unchaste": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "uncivil": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unclimbable": { "pos": "a", "pol": "-0.75", "std": "0.088" }, "unconsecrated": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unconsolable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "uncordial": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "uncorrectable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "uncreative": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "undependable": { "pos": "a", "pol": "-0.75", "std": "0.088" }, "undeserved": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "undiplomatic": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "undiscerning": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unedifying": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unfertile": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unfertilised": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unfertilized": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unforceful": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unforeseeable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unforgivable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unfortunately": { "pos": "r", "pol": "-0.75", "std": "0.0" }, "unglamorous": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unglamourous": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "ungodliness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "ungracefulness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "ungraciousness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "ungratified": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unhallowed": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unkindness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "unknowable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unluckily": { "pos": "r", "pol": "-0.75", "std": "0.0" }, "unmeritorious": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unpatriotic": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unpeaceful": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unpermissive": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unpermissiveness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "unpopularity": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "unpropitious": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unrestraint": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "unripe": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unripened": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unsanctified": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unsightliness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "unsubstantial": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "untalented": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "untoward": { "pos": "a", "pol": "-0.75", "std": "0.088" }, "unvigilant": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "unwatchful": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "upbraiding": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "verminous": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "vulgarity": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "wanness": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "whimper": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "whine": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "wimpish": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "wimpy": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "wistful": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "worm-eaten": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "worriment": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "worthless": { "pos": "a", "pol": "-0.75", "std": "0.088" }, "wrecked": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "xenophobic": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "yen": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "able": { "pos": "a", "pol": "0.688", "std": "0.473" }, "abundant": { "pos": "a", "pol": "0.625", "std": "0.0" }, "acceptability": { "pos": "n", "pol": "0.625", "std": "0.0" }, "acceptable": { "pos": "a", "pol": "0.656", "std": "0.12" }, "acceptableness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "accessary": { "pos": "a", "pol": "0.625", "std": "0.0" }, "accessible": { "pos": "a", "pol": "0.563", "std": "0.12" }, "accessory": { "pos": "a", "pol": "0.688", "std": "0.0" }, "acclaim": { "pos": "n", "pol": "0.5", "std": "0.0" }, "accommodating": { "pos": "a", "pol": "0.625", "std": "0.088" }, "accordant": { "pos": "a", "pol": "0.563", "std": "0.088" }, "accredited": { "pos": "a", "pol": "0.625", "std": "0.0" }, "ace": { "pos": "a", "pol": "0.625", "std": "0.0" }, "actual sin": { "pos": "n", "pol": "0.625", "std": "0.0" }, "adequate": { "pos": "a", "pol": "0.708", "std": "0.125" }, "adequately": { "pos": "r", "pol": "0.625", "std": "0.0" }, "adequateness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "adjuvant": { "pos": "a", "pol": "0.688", "std": "0.088" }, "administrable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "admirability": { "pos": "n", "pol": "0.625", "std": "0.0" }, "admirableness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "admiringly": { "pos": "r", "pol": "0.625", "std": "0.0" }, "admissible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "adorned": { "pos": "a", "pol": "0.625", "std": "0.0" }, "advisable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "aesthetical": { "pos": "a", "pol": "0.625", "std": "0.0" }, "affectionately": { "pos": "r", "pol": "0.625", "std": "0.0" }, "affirmatory": { "pos": "a", "pol": "0.625", "std": "0.0" }, "agreeability": { "pos": "n", "pol": "0.625", "std": "0.0" }, "agreeable": { "pos": "a", "pol": "0.708", "std": "0.144" }, "alimental": { "pos": "a", "pol": "0.625", "std": "0.0" }, "alimentary": { "pos": "a", "pol": "0.625", "std": "0.0" }, "all-around": { "pos": "a", "pol": "0.625", "std": "0.0" }, "all-embracing": { "pos": "a", "pol": "0.625", "std": "0.0" }, "all-encompassing": { "pos": "a", "pol": "0.625", "std": "0.0" }, "all-inclusive": { "pos": "a", "pol": "0.625", "std": "0.0" }, "all-round": { "pos": "a", "pol": "0.625", "std": "0.0" }, "allegiant": { "pos": "a", "pol": "0.625", "std": "0.0" }, "alluring": { "pos": "a", "pol": "0.625", "std": "0.0" }, "amiability": { "pos": "n", "pol": "0.625", "std": "0.442" }, "amused": { "pos": "a", "pol": "0.625", "std": "0.0" }, "amusing": { "pos": "a", "pol": "0.563", "std": "0.088" }, "angelic": { "pos": "a", "pol": "0.583", "std": "0.545" }, "angelical": { "pos": "a", "pol": "0.583", "std": "0.545" }, "animate": { "pos": "a", "pol": "0.25", "std": "0.217" }, "anthelminthic": { "pos": "a", "pol": "0.625", "std": "0.0" }, "anthelmintic": { "pos": "a", "pol": "0.625", "std": "0.0" }, "antifertility": { "pos": "a", "pol": "0.625", "std": "0.0" }, "antimicrobial": { "pos": "a", "pol": "0.625", "std": "0.0" }, "antimicrobic": { "pos": "a", "pol": "0.625", "std": "0.0" }, "appeasable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "applaud": { "pos": "v", "pol": "0.625", "std": "0.177" }, "apposite": { "pos": "a", "pol": "0.625", "std": "0.0" }, "appraising": { "pos": "a", "pol": "0.625", "std": "0.0" }, "approachability": { "pos": "n", "pol": "0.625", "std": "0.0" }, "approachable": { "pos": "a", "pol": "0.583", "std": "0.125" }, "approbation": { "pos": "n", "pol": "0.688", "std": "0.265" }, "approvingly": { "pos": "r", "pol": "0.625", "std": "0.0" }, "aptitude": { "pos": "n", "pol": "0.625", "std": "0.0" }, "ascribable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "assiduous": { "pos": "a", "pol": "0.625", "std": "0.0" }, "assistive": { "pos": "a", "pol": "0.625", "std": "0.0" }, "assured": { "pos": "a", "pol": "0.688", "std": "0.177" }, "astute": { "pos": "a", "pol": "0.625", "std": "0.0" }, "at best": { "pos": "r", "pol": "0.625", "std": "0.0" }, "at the best": { "pos": "r", "pol": "0.625", "std": "0.0" }, "attire": { "pos": "n", "pol": "0.375", "std": "0.0" }, "attractive": { "pos": "a", "pol": "0.667", "std": "0.191" }, "autoerotic": { "pos": "a", "pol": "0.625", "std": "0.0" }, "avant-garde": { "pos": "a", "pol": "0.625", "std": "0.0" }, "aware": { "pos": "a", "pol": "0.563", "std": "0.0" }, "awe-inspiring": { "pos": "a", "pol": "0.625", "std": "0.0" }, "awesome": { "pos": "a", "pol": "0.625", "std": "0.0" }, "awing": { "pos": "a", "pol": "0.625", "std": "0.0" }, "ball-hawking": { "pos": "a", "pol": "0.625", "std": "0.0" }, "bankrupt": { "pos": "a", "pol": "0.625", "std": "0.0" }, "bantering": { "pos": "a", "pol": "0.625", "std": "0.0" }, "baronial": { "pos": "a", "pol": "0.625", "std": "0.0" }, "beatific": { "pos": "a", "pol": "0.688", "std": "0.088" }, "beatified": { "pos": "a", "pol": "0.625", "std": "0.0" }, "belly-up": { "pos": "a", "pol": "0.625", "std": "0.0" }, "benefit": { "pos": "v", "pol": "0.688", "std": "0.088" }, "blanket": { "pos": "a", "pol": "0.625", "std": "0.0" }, "blate": { "pos": "a", "pol": "0.625", "std": "0.0" }, "blessed": { "pos": "a", "pol": "0.55", "std": "0.24" }, "blow-by-blow": { "pos": "a", "pol": "0.625", "std": "0.0" }, "blue-ribbon": { "pos": "a", "pol": "0.625", "std": "0.0" }, "bonzer": { "pos": "a", "pol": "0.625", "std": "0.0" }, "bouncy": { "pos": "a", "pol": "0.625", "std": "0.177" }, "bowing": { "pos": "a", "pol": "0.625", "std": "0.0" }, "bracing": { "pos": "a", "pol": "0.625", "std": "0.0" }, "brilliant": { "pos": "a", "pol": "0.521", "std": "0.22" }, "brush up": { "pos": "v", "pol": "0.563", "std": "0.619" }, "cagey": { "pos": "a", "pol": "0.563", "std": "0.088" }, "cagy": { "pos": "a", "pol": "0.563", "std": "0.088" }, "cantabile": { "pos": "a", "pol": "0.625", "std": "0.0" }, "canty": { "pos": "a", "pol": "0.625", "std": "0.0" }, "capable": { "pos": "a", "pol": "0.65", "std": "0.19" }, "carpetbagging": { "pos": "a", "pol": "0.625", "std": "0.0" }, "catholic": { "pos": "a", "pol": "0.625", "std": "0.0" }, "celibate": { "pos": "a", "pol": "0.625", "std": "0.0" }, "certificatory": { "pos": "a", "pol": "0.625", "std": "0.0" }, "champion": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "chary": { "pos": "a", "pol": "0.625", "std": "0.0" }, "chaste": { "pos": "a", "pol": "0.583", "std": "0.0" }, "chewable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "chic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chirpiness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "chivalrous": { "pos": "a", "pol": "0.625", "std": "0.0" }, "choice": { "pos": "a", "pol": "0.625", "std": "0.088" }, "christian": { "pos": "a", "pol": "0.625", "std": "0.0" }, "christlike": { "pos": "a", "pol": "0.625", "std": "0.0" }, "christly": { "pos": "a", "pol": "0.625", "std": "0.0" }, "circumspect": { "pos": "a", "pol": "0.625", "std": "0.0" }, "class act": { "pos": "n", "pol": "0.625", "std": "0.0" }, "cleanliness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "clear-eyed": { "pos": "a", "pol": "0.625", "std": "0.0" }, "clever": { "pos": "a", "pol": "0.667", "std": "0.144" }, "closelipped": { "pos": "a", "pol": "0.625", "std": "0.0" }, "closemouthed": { "pos": "a", "pol": "0.625", "std": "0.0" }, "cognisance": { "pos": "n", "pol": "0.625", "std": "0.0" }, "cognisant": { "pos": "a", "pol": "0.625", "std": "0.0" }, "cognizant": { "pos": "a", "pol": "0.625", "std": "0.0" }, "come along": { "pos": "v", "pol": "0.625", "std": "0.53" }, "comestible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "comfy": { "pos": "a", "pol": "0.625", "std": "0.0" }, "commendation": { "pos": "n", "pol": "0.625", "std": "0.0" }, "companionate": { "pos": "a", "pol": "0.625", "std": "0.0" }, "compatible": { "pos": "a", "pol": "0.625", "std": "0.217" }, "competent": { "pos": "a", "pol": "0.625", "std": "0.072" }, "complaisant": { "pos": "a", "pol": "0.625", "std": "0.0" }, "comradely": { "pos": "a", "pol": "0.625", "std": "0.0" }, "con brio": { "pos": "r", "pol": "0.25", "std": "0.0" }, "conceptive": { "pos": "a", "pol": "0.625", "std": "0.0" }, "conciliable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "conciliation": { "pos": "n", "pol": "0.708", "std": "0.072" }, "conciliative": { "pos": "a", "pol": "0.625", "std": "0.0" }, "concupiscent": { "pos": "a", "pol": "0.625", "std": "0.0" }, "conditioned": { "pos": "a", "pol": "0.688", "std": "0.265" }, "conformable": { "pos": "a", "pol": "0.667", "std": "0.072" }, "congenial": { "pos": "a", "pol": "0.688", "std": "0.088" }, "consecrate": { "pos": "v", "pol": "0.438", "std": "0.161" }, "consecrated": { "pos": "a", "pol": "0.625", "std": "0.0" }, "consensual": { "pos": "a", "pol": "0.625", "std": "0.0" }, "consent": { "pos": "n", "pol": "0.375", "std": "0.0" }, "consenting": { "pos": "a", "pol": "0.625", "std": "0.0" }, "consistently": { "pos": "r", "pol": "0.625", "std": "0.0" }, "consonant": { "pos": "a", "pol": "0.688", "std": "0.088" }, "constructive": { "pos": "a", "pol": "0.688", "std": "0.0" }, "consummate": { "pos": "v", "pol": "0.375", "std": "0.088" }, "contraceptive": { "pos": "a", "pol": "0.625", "std": "0.0" }, "controllable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "convivial": { "pos": "a", "pol": "0.625", "std": "0.0" }, "cordial": { "pos": "a", "pol": "0.667", "std": "0.217" }, "correctable": { "pos": "a", "pol": "0.625", "std": "0.088" }, "corrective": { "pos": "a", "pol": "0.563", "std": "0.0" }, "correctness": { "pos": "n", "pol": "0.563", "std": "0.0" }, "countywide": { "pos": "a", "pol": "0.625", "std": "0.0" }, "courtly": { "pos": "a", "pol": "0.625", "std": "0.0" }, "crack": { "pos": "a", "pol": "0.625", "std": "0.0" }, "craftsmanship": { "pos": "n", "pol": "0.625", "std": "0.0" }, "crafty": { "pos": "a", "pol": "0.625", "std": "0.0" }, "creative": { "pos": "a", "pol": "0.625", "std": "0.0" }, "creative thinking": { "pos": "n", "pol": "0.625", "std": "0.0" }, "creativeness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "creativity": { "pos": "n", "pol": "0.625", "std": "0.0" }, "cure": { "pos": "v", "pol": "0.406", "std": "0.157" }, "cute": { "pos": "a", "pol": "0.563", "std": "0.088" }, "cuttable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "danceable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "dashing": { "pos": "a", "pol": "0.625", "std": "0.177" }, "dead-on": { "pos": "a", "pol": "0.625", "std": "0.0" }, "dear": { "pos": "r", "pol": "0.438", "std": "0.177" }, "deck out": { "pos": "v", "pol": "0.625", "std": "0.0" }, "deck up": { "pos": "v", "pol": "0.625", "std": "0.0" }, "decorated": { "pos": "a", "pol": "0.625", "std": "0.0" }, "decorously": { "pos": "r", "pol": "0.625", "std": "0.0" }, "dedicated": { "pos": "a", "pol": "0.625", "std": "0.0" }, "deductible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "deferent": { "pos": "a", "pol": "0.625", "std": "0.0" }, "deferential": { "pos": "a", "pol": "0.625", "std": "0.0" }, "delicious": { "pos": "a", "pol": "0.563", "std": "0.265" }, "deliver the goods": { "pos": "v", "pol": "0.625", "std": "0.0" }, "democratic": { "pos": "a", "pol": "0.625", "std": "0.177" }, "describable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "deserved": { "pos": "a", "pol": "0.625", "std": "0.0" }, "deserving": { "pos": "a", "pol": "0.625", "std": "0.0" }, "designing": { "pos": "a", "pol": "0.625", "std": "0.0" }, "detailed": { "pos": "a", "pol": "0.625", "std": "0.0" }, "dewy-eyed": { "pos": "a", "pol": "0.625", "std": "0.0" }, "diligent": { "pos": "a", "pol": "0.563", "std": "0.0" }, "discriminate": { "pos": "a", "pol": "0.625", "std": "0.0" }, "dishy": { "pos": "a", "pol": "0.625", "std": "0.0" }, "disposable": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diverted": { "pos": "a", "pol": "0.625", "std": "0.0" }, "do good": { "pos": "v", "pol": "0.625", "std": "0.0" }, "docile": { "pos": "a", "pol": "0.542", "std": "0.072" }, "dosed": { "pos": "a", "pol": "0.625", "std": "0.0" }, "down-to-earth": { "pos": "a", "pol": "0.625", "std": "0.0" }, "down pat": { "pos": "a", "pol": "0.625", "std": "0.0" }, "drinkable": { "pos": "n", "pol": "0.375", "std": "0.0" }, "earnest": { "pos": "a", "pol": "0.542", "std": "0.125" }, "eatable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "edible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "edifying": { "pos": "a", "pol": "0.625", "std": "0.0" }, "educative": { "pos": "a", "pol": "0.625", "std": "0.0" }, "efficacious": { "pos": "a", "pol": "0.625", "std": "0.0" }, "efficaciousness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "efficacy": { "pos": "n", "pol": "0.625", "std": "0.0" }, "elaborated": { "pos": "a", "pol": "0.625", "std": "0.0" }, "elasticity": { "pos": "n", "pol": "0.625", "std": "0.0" }, "enabling": { "pos": "a", "pol": "0.625", "std": "0.0" }, "encyclopaedic": { "pos": "a", "pol": "0.625", "std": "0.0" }, "encyclopedic": { "pos": "a", "pol": "0.625", "std": "0.0" }, "entertained": { "pos": "a", "pol": "0.625", "std": "0.0" }, "entertaining": { "pos": "a", "pol": "0.625", "std": "0.0" }, "enticing": { "pos": "a", "pol": "0.625", "std": "0.0" }, "enwrapped": { "pos": "a", "pol": "0.625", "std": "0.0" }, "epicurean": { "pos": "n", "pol": "0.375", "std": "0.0" }, "epoch-making": { "pos": "a", "pol": "0.625", "std": "0.0" }, "epochal": { "pos": "a", "pol": "0.625", "std": "0.0" }, "equitable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "errorless": { "pos": "a", "pol": "0.625", "std": "0.0" }, "esthetical": { "pos": "a", "pol": "0.625", "std": "0.0" }, "ethical": { "pos": "a", "pol": "0.542", "std": "0.26" }, "eudaemon": { "pos": "n", "pol": "0.625", "std": "0.0" }, "eudaemonic": { "pos": "a", "pol": "0.625", "std": "0.0" }, "eudemon": { "pos": "n", "pol": "0.625", "std": "0.0" }, "eudemonic": { "pos": "a", "pol": "0.625", "std": "0.0" }, "euphonious": { "pos": "a", "pol": "0.563", "std": "0.0" }, "euphonous": { "pos": "a", "pol": "0.625", "std": "0.0" }, "evaluative": { "pos": "a", "pol": "0.625", "std": "0.0" }, "exact": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "executable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "expansive": { "pos": "a", "pol": "0.625", "std": "0.125" }, "expedient": { "pos": "a", "pol": "0.625", "std": "0.088" }, "explainable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "explicable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "exploded": { "pos": "a", "pol": "0.625", "std": "0.0" }, "expressible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "face-saving": { "pos": "a", "pol": "0.625", "std": "0.0" }, "facetious": { "pos": "a", "pol": "0.625", "std": "0.0" }, "fair-and-square": { "pos": "a", "pol": "0.625", "std": "0.0" }, "faithful": { "pos": "n", "pol": "0.25", "std": "0.088" }, "fancify": { "pos": "v", "pol": "0.625", "std": "0.0" }, "fancy up": { "pos": "v", "pol": "0.625", "std": "0.0" }, "farcical": { "pos": "a", "pol": "0.625", "std": "0.0" }, "feasible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "fecund": { "pos": "a", "pol": "0.563", "std": "0.0" }, "feelingly": { "pos": "r", "pol": "0.625", "std": "0.0" }, "felicity": { "pos": "n", "pol": "0.625", "std": "0.177" }, "fertile": { "pos": "a", "pol": "0.563", "std": "0.063" }, "fig out": { "pos": "v", "pol": "0.625", "std": "0.0" }, "fig up": { "pos": "v", "pol": "0.625", "std": "0.0" }, "fine-tune": { "pos": "v", "pol": "0.583", "std": "0.361" }, "finespun": { "pos": "a", "pol": "0.563", "std": "0.177" }, "first-rate": { "pos": "a", "pol": "0.625", "std": "0.0" }, "fit": { "pos": "v", "pol": "0.319", "std": "0.207" }, "fitter": { "pos": "a", "pol": "0.625", "std": "0.0" }, "fitting": { "pos": "a", "pol": "0.625", "std": "0.088" }, "flourish": { "pos": "v", "pol": "0.542", "std": "0.505" }, "fly high": { "pos": "v", "pol": "0.625", "std": "0.442" }, "foreseeable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "formative": { "pos": "a", "pol": "0.625", "std": "0.0" }, "forward-looking": { "pos": "a", "pol": "0.625", "std": "0.0" }, "foster": { "pos": "v", "pol": "0.542", "std": "0.315" }, "foxy": { "pos": "a", "pol": "0.625", "std": "0.0" }, "frisky": { "pos": "a", "pol": "0.625", "std": "0.0" }, "fruiting": { "pos": "a", "pol": "0.625", "std": "0.0" }, "gainful": { "pos": "a", "pol": "0.625", "std": "0.0" }, "gallant": { "pos": "a", "pol": "0.594", "std": "0.204" }, "gentlemanlike": { "pos": "a", "pol": "0.625", "std": "0.0" }, "gentlemanly": { "pos": "a", "pol": "0.625", "std": "0.0" }, "get-at-able": { "pos": "a", "pol": "0.625", "std": "0.0" }, "getatable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "good-humoredness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "good-humouredness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "good-naturedness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "good-temperedness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "good-time": { "pos": "a", "pol": "0.625", "std": "0.0" }, "good for you": { "pos": "a", "pol": "0.625", "std": "0.0" }, "good health": { "pos": "n", "pol": "0.625", "std": "0.0" }, "good manners": { "pos": "n", "pol": "0.625", "std": "0.0" }, "good person": { "pos": "n", "pol": "0.625", "std": "0.0" }, "good spirit": { "pos": "n", "pol": "0.625", "std": "0.0" }, "goodish": { "pos": "a", "pol": "0.625", "std": "0.53" }, "governable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "gracefulness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "graciousness": { "pos": "n", "pol": "0.688", "std": "0.265" }, "grand": { "pos": "a", "pol": "0.594", "std": "0.182" }, "greatest": { "pos": "a", "pol": "0.625", "std": "0.0" }, "groovy": { "pos": "a", "pol": "0.625", "std": "0.442" }, "guileful": { "pos": "a", "pol": "0.625", "std": "0.0" }, "gussy up": { "pos": "v", "pol": "0.625", "std": "0.0" }, "habitable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "hail-fellow": { "pos": "a", "pol": "0.625", "std": "0.0" }, "hail-fellow-well-met": { "pos": "a", "pol": "0.625", "std": "0.0" }, "halal": { "pos": "a", "pol": "0.563", "std": "0.177" }, "hallowed": { "pos": "a", "pol": "0.625", "std": "0.0" }, "handsome": { "pos": "a", "pol": "0.688", "std": "0.177" }, "harmonizable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "healthful": { "pos": "a", "pol": "0.563", "std": "0.088" }, "healthfulness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "healthier": { "pos": "a", "pol": "0.625", "std": "0.0" }, "healthiness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "healthy": { "pos": "a", "pol": "0.675", "std": "0.259" }, "heart-healthy": { "pos": "a", "pol": "0.625", "std": "0.0" }, "heartening": { "pos": "a", "pol": "0.625", "std": "0.0" }, "heartfelt": { "pos": "a", "pol": "0.625", "std": "0.0" }, "helminthic": { "pos": "a", "pol": "0.625", "std": "0.0" }, "helpful": { "pos": "a", "pol": "0.625", "std": "0.0" }, "hi-fi": { "pos": "n", "pol": "0.313", "std": "0.088" }, "high-fidelity": { "pos": "a", "pol": "0.625", "std": "0.0" }, "high-grade": { "pos": "a", "pol": "0.625", "std": "0.0" }, "high quality": { "pos": "n", "pol": "0.625", "std": "0.0" }, "historied": { "pos": "a", "pol": "0.625", "std": "0.0" }, "homelike": { "pos": "a", "pol": "0.625", "std": "0.0" }, "homey": { "pos": "a", "pol": "0.625", "std": "0.0" }, "homy": { "pos": "a", "pol": "0.625", "std": "0.0" }, "honor": { "pos": "n", "pol": "0.5", "std": "0.373" }, "honorableness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "honorably": { "pos": "r", "pol": "0.563", "std": "0.177" }, "honoring": { "pos": "n", "pol": "0.625", "std": "0.0" }, "honour": { "pos": "n", "pol": "0.5", "std": "0.373" }, "honourableness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "hospitable": { "pos": "a", "pol": "0.667", "std": "0.072" }, "hospitableness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "hygienic": { "pos": "a", "pol": "0.625", "std": "0.0" }, "hygienical": { "pos": "a", "pol": "0.625", "std": "0.0" }, "identifiable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "idyllic": { "pos": "a", "pol": "0.688", "std": "0.0" }, "imaginative": { "pos": "a", "pol": "0.625", "std": "0.0" }, "implemental": { "pos": "a", "pol": "0.625", "std": "0.0" }, "imposing": { "pos": "a", "pol": "0.625", "std": "0.0" }, "improvement": { "pos": "n", "pol": "0.542", "std": "0.439" }, "in good taste": { "pos": "a", "pol": "0.625", "std": "0.0" }, "incisive": { "pos": "a", "pol": "0.563", "std": "0.088" }, "indulgent": { "pos": "a", "pol": "0.667", "std": "0.191" }, "informed": { "pos": "a", "pol": "0.625", "std": "0.0" }, "ingratiating": { "pos": "a", "pol": "0.563", "std": "0.088" }, "inhabitable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "inspiriting": { "pos": "a", "pol": "0.625", "std": "0.0" }, "intelligent": { "pos": "a", "pol": "0.625", "std": "0.161" }, "intent": { "pos": "a", "pol": "0.625", "std": "0.0" }, "interestingness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "interpretable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "intimate": { "pos": "a", "pol": "0.625", "std": "0.215" }, "inventive": { "pos": "a", "pol": "0.625", "std": "0.0" }, "iterative": { "pos": "a", "pol": "0.625", "std": "0.0" }, "jape": { "pos": "n", "pol": "0.625", "std": "0.0" }, "jest": { "pos": "v", "pol": "0.438", "std": "0.265" }, "justifiable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "kept up": { "pos": "a", "pol": "0.625", "std": "0.0" }, "killing": { "pos": "a", "pol": "0.625", "std": "0.0" }, "kind": { "pos": "a", "pol": "0.542", "std": "0.191" }, "kittenish": { "pos": "a", "pol": "0.625", "std": "0.0" }, "knavish": { "pos": "a", "pol": "0.625", "std": "0.0" }, "knowing": { "pos": "a", "pol": "0.531", "std": "0.072" }, "knowledgeable": { "pos": "a", "pol": "0.625", "std": "0.125" }, "kosher": { "pos": "a", "pol": "0.563", "std": "0.177" }, "ladylike": { "pos": "a", "pol": "0.625", "std": "0.0" }, "lamblike": { "pos": "a", "pol": "0.625", "std": "0.0" }, "larger-than-life": { "pos": "a", "pol": "0.625", "std": "0.0" }, "laurels": { "pos": "n", "pol": "0.625", "std": "0.177" }, "leal": { "pos": "a", "pol": "0.625", "std": "0.0" }, "learned": { "pos": "a", "pol": "0.542", "std": "0.072" }, "lettered": { "pos": "a", "pol": "0.625", "std": "0.0" }, "licenced": { "pos": "a", "pol": "0.625", "std": "0.0" }, "licensed": { "pos": "a", "pol": "0.625", "std": "0.0" }, "licitly": { "pos": "r", "pol": "0.625", "std": "0.0" }, "liege": { "pos": "n", "pol": "0.313", "std": "0.088" }, "life-giving": { "pos": "a", "pol": "0.625", "std": "0.0" }, "lifelike": { "pos": "a", "pol": "0.563", "std": "0.177" }, "light-fingered": { "pos": "a", "pol": "0.625", "std": "0.0" }, "lighten up": { "pos": "v", "pol": "0.625", "std": "0.217" }, "lightsome": { "pos": "a", "pol": "0.688", "std": "0.265" }, "liven": { "pos": "v", "pol": "0.625", "std": "0.0" }, "liven up": { "pos": "v", "pol": "0.625", "std": "0.0" }, "lofty": { "pos": "a", "pol": "0.708", "std": "0.25" }, "logical": { "pos": "a", "pol": "0.625", "std": "0.102" }, "lovable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "loveable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "loyal": { "pos": "a", "pol": "0.542", "std": "0.144" }, "luckiness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "lucky": { "pos": "a", "pol": "0.708", "std": "0.125" }, "lucrative": { "pos": "a", "pol": "0.625", "std": "0.0" }, "lustrous": { "pos": "a", "pol": "0.542", "std": "0.125" }, "lusty": { "pos": "a", "pol": "0.563", "std": "0.0" }, "luxurious": { "pos": "a", "pol": "0.625", "std": "0.088" }, "lyrical": { "pos": "a", "pol": "0.625", "std": "0.177" }, "magnificence": { "pos": "n", "pol": "0.625", "std": "0.53" }, "maintained": { "pos": "a", "pol": "0.563", "std": "0.088" }, "manageable": { "pos": "a", "pol": "0.563", "std": "0.088" }, "manageably": { "pos": "r", "pol": "0.625", "std": "0.0" }, "mastered": { "pos": "a", "pol": "0.625", "std": "0.0" }, "matey": { "pos": "a", "pol": "0.625", "std": "0.0" }, "maximal": { "pos": "a", "pol": "0.625", "std": "0.0" }, "maximum": { "pos": "a", "pol": "0.625", "std": "0.0" }, "meaning": { "pos": "n", "pol": "0.25", "std": "0.0" }, "meaningful": { "pos": "a", "pol": "0.625", "std": "0.0" }, "meek": { "pos": "a", "pol": "0.542", "std": "0.0" }, "meet": { "pos": "a", "pol": "0.625", "std": "0.0" }, "melodious": { "pos": "a", "pol": "0.625", "std": "0.088" }, "merited": { "pos": "a", "pol": "0.625", "std": "0.0" }, "merriment": { "pos": "n", "pol": "0.625", "std": "0.354" }, "meticulous": { "pos": "a", "pol": "0.688", "std": "0.265" }, "metier": { "pos": "n", "pol": "0.563", "std": "0.442" }, "mirrorlike": { "pos": "a", "pol": "0.625", "std": "0.0" }, "mitigable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "moralistic": { "pos": "a", "pol": "0.625", "std": "0.0" }, "morally": { "pos": "r", "pol": "0.625", "std": "0.177" }, "most-valuable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "multiple-choice": { "pos": "a", "pol": "0.625", "std": "0.0" }, "neighborly": { "pos": "a", "pol": "0.625", "std": "0.0" }, "neighbourly": { "pos": "a", "pol": "0.625", "std": "0.0" }, "nimble-fingered": { "pos": "a", "pol": "0.625", "std": "0.0" }, "no-hit": { "pos": "a", "pol": "0.625", "std": "0.0" }, "nonnegative": { "pos": "a", "pol": "0.625", "std": "0.0" }, "nourishing": { "pos": "a", "pol": "0.625", "std": "0.0" }, "nutrient": { "pos": "a", "pol": "0.625", "std": "0.0" }, "nutritious": { "pos": "a", "pol": "0.625", "std": "0.0" }, "nutritive": { "pos": "a", "pol": "0.625", "std": "0.0" }, "obliging": { "pos": "a", "pol": "0.625", "std": "0.0" }, "observable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "olympian": { "pos": "a", "pol": "0.688", "std": "0.354" }, "on-key": { "pos": "a", "pol": "0.625", "std": "0.0" }, "operable": { "pos": "a", "pol": "0.542", "std": "0.072" }, "optimist": { "pos": "n", "pol": "0.625", "std": "0.0" }, "opulent": { "pos": "a", "pol": "0.625", "std": "0.0" }, "originative": { "pos": "a", "pol": "0.563", "std": "0.088" }, "overabundant": { "pos": "a", "pol": "0.625", "std": "0.0" }, "overcautious": { "pos": "a", "pol": "0.625", "std": "0.0" }, "overcredulous": { "pos": "a", "pol": "0.625", "std": "0.0" }, "overjoyed": { "pos": "a", "pol": "0.625", "std": "0.0" }, "overriding": { "pos": "a", "pol": "0.625", "std": "0.0" }, "overripe": { "pos": "a", "pol": "0.625", "std": "0.0" }, "pacific": { "pos": "a", "pol": "0.688", "std": "0.088" }, "painterly": { "pos": "a", "pol": "0.625", "std": "0.0" }, "pally": { "pos": "a", "pol": "0.625", "std": "0.0" }, "palsy-walsy": { "pos": "a", "pol": "0.625", "std": "0.0" }, "paramount": { "pos": "a", "pol": "0.625", "std": "0.0" }, "parasiticidal": { "pos": "a", "pol": "0.625", "std": "0.0" }, "passable": { "pos": "a", "pol": "0.563", "std": "0.354" }, "passionate": { "pos": "a", "pol": "0.625", "std": "0.0" }, "peachy": { "pos": "a", "pol": "0.688", "std": "0.442" }, "percipient": { "pos": "a", "pol": "0.625", "std": "0.0" }, "perfectibility": { "pos": "n", "pol": "0.625", "std": "0.0" }, "perfumed": { "pos": "a", "pol": "0.625", "std": "0.265" }, "permutable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "perspicacious": { "pos": "a", "pol": "0.563", "std": "0.088" }, "pertinent": { "pos": "a", "pol": "0.563", "std": "0.177" }, "picturesque": { "pos": "a", "pol": "0.563", "std": "0.265" }, "piety": { "pos": "n", "pol": "0.625", "std": "0.0" }, "piousness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "plastic": { "pos": "a", "pol": "0.542", "std": "0.072" }, "playable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "pleasantness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "pleasingness": { "pos": "n", "pol": "0.625", "std": "0.442" }, "pledged": { "pos": "a", "pol": "0.625", "std": "0.0" }, "plenary": { "pos": "a", "pol": "0.625", "std": "0.0" }, "plenteous": { "pos": "a", "pol": "0.625", "std": "0.0" }, "plentiful": { "pos": "a", "pol": "0.583", "std": "0.072" }, "plethoric": { "pos": "a", "pol": "0.625", "std": "0.0" }, "polish": { "pos": "n", "pol": "0.417", "std": "0.52" }, "polite": { "pos": "a", "pol": "0.542", "std": "0.144" }, "popularity": { "pos": "n", "pol": "0.625", "std": "0.0" }, "potable": { "pos": "n", "pol": "0.375", "std": "0.0" }, "precaution": { "pos": "n", "pol": "0.583", "std": "0.072" }, "precious": { "pos": "r", "pol": "0.25", "std": "0.0" }, "precision": { "pos": "n", "pol": "0.625", "std": "0.0" }, "precooked": { "pos": "a", "pol": "0.625", "std": "0.0" }, "predominate": { "pos": "a", "pol": "0.625", "std": "0.0" }, "preferable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "premium": { "pos": "a", "pol": "0.625", "std": "0.0" }, "prepared": { "pos": "a", "pol": "0.542", "std": "0.144" }, "preponderant": { "pos": "a", "pol": "0.625", "std": "0.0" }, "preponderating": { "pos": "a", "pol": "0.625", "std": "0.0" }, "prescient": { "pos": "a", "pol": "0.625", "std": "0.0" }, "preservable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "prettify": { "pos": "v", "pol": "0.625", "std": "0.0" }, "pretty-pretty": { "pos": "a", "pol": "0.625", "std": "0.0" }, "priggish": { "pos": "a", "pol": "0.625", "std": "0.0" }, "prim": { "pos": "a", "pol": "0.563", "std": "0.177" }, "primed": { "pos": "a", "pol": "0.625", "std": "0.0" }, "prizewinning": { "pos": "a", "pol": "0.625", "std": "0.0" }, "productive": { "pos": "a", "pol": "0.531", "std": "0.102" }, "profitable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "prolific": { "pos": "a", "pol": "0.563", "std": "0.088" }, "pronounced": { "pos": "a", "pol": "0.625", "std": "0.0" }, "proper": { "pos": "a", "pol": "0.531", "std": "0.12" }, "prophylactic": { "pos": "a", "pol": "0.542", "std": "0.0" }, "propitiative": { "pos": "a", "pol": "0.625", "std": "0.0" }, "prosperous": { "pos": "a", "pol": "0.688", "std": "0.157" }, "proud": { "pos": "a", "pol": "0.688", "std": "0.265" }, "proud of": { "pos": "a", "pol": "0.625", "std": "0.0" }, "prudish": { "pos": "a", "pol": "0.625", "std": "0.0" }, "puncturable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "purposefulness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "pursuant": { "pos": "a", "pol": "0.625", "std": "0.0" }, "rallying": { "pos": "a", "pol": "0.625", "std": "0.0" }, "randy": { "pos": "a", "pol": "0.625", "std": "0.0" }, "rational": { "pos": "a", "pol": "0.594", "std": "0.161" }, "ready": { "pos": "a", "pol": "0.525", "std": "0.168" }, "ready to hand": { "pos": "a", "pol": "0.625", "std": "0.0" }, "reanimated": { "pos": "a", "pol": "0.625", "std": "0.0" }, "reasonable": { "pos": "a", "pol": "0.542", "std": "0.26" }, "reasonably": { "pos": "r", "pol": "0.688", "std": "0.442" }, "reasoned": { "pos": "a", "pol": "0.625", "std": "0.0" }, "recherche": { "pos": "a", "pol": "0.625", "std": "0.0" }, "reclaimable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "recollective": { "pos": "a", "pol": "0.625", "std": "0.0" }, "reconciled": { "pos": "a", "pol": "0.625", "std": "0.0" }, "reconciling": { "pos": "a", "pol": "0.625", "std": "0.0" }, "record-breaking": { "pos": "a", "pol": "0.625", "std": "0.0" }, "recuperative": { "pos": "a", "pol": "0.625", "std": "0.0" }, "recyclable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "redeeming": { "pos": "a", "pol": "0.563", "std": "0.0" }, "referable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "refreshful": { "pos": "a", "pol": "0.625", "std": "0.0" }, "refreshing": { "pos": "a", "pol": "0.563", "std": "0.088" }, "regardful": { "pos": "a", "pol": "0.625", "std": "0.0" }, "rehabilitative": { "pos": "a", "pol": "0.688", "std": "0.0" }, "reinforced": { "pos": "a", "pol": "0.563", "std": "0.088" }, "reiterative": { "pos": "a", "pol": "0.625", "std": "0.0" }, "releasing": { "pos": "a", "pol": "0.625", "std": "0.0" }, "reliable": { "pos": "a", "pol": "0.708", "std": "0.072" }, "remedial": { "pos": "a", "pol": "0.688", "std": "0.088" }, "repeatable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "resolute": { "pos": "a", "pol": "0.563", "std": "0.088" }, "restorative": { "pos": "a", "pol": "0.563", "std": "0.177" }, "reusable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "revered": { "pos": "a", "pol": "0.625", "std": "0.0" }, "reverend": { "pos": "a", "pol": "0.625", "std": "0.0" }, "richness": { "pos": "n", "pol": "0.571", "std": "0.318" }, "rig out": { "pos": "v", "pol": "0.625", "std": "0.0" }, "righteous": { "pos": "a", "pol": "0.688", "std": "0.088" }, "rightful": { "pos": "a", "pol": "0.563", "std": "0.177" }, "rock-loving": { "pos": "a", "pol": "0.625", "std": "0.0" }, "rousing": { "pos": "a", "pol": "0.563", "std": "0.177" }, "ruddy": { "pos": "a", "pol": "0.563", "std": "0.265" }, "ruttish": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sacred": { "pos": "a", "pol": "0.575", "std": "0.153" }, "safety-related": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sagacious": { "pos": "a", "pol": "0.625", "std": "0.088" }, "salubrious": { "pos": "a", "pol": "0.688", "std": "0.0" }, "sanctified": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sane": { "pos": "a", "pol": "0.563", "std": "0.088" }, "sanely": { "pos": "r", "pol": "0.688", "std": "0.354" }, "saneness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "sanity": { "pos": "n", "pol": "0.625", "std": "0.0" }, "scintillating": { "pos": "a", "pol": "0.542", "std": "0.144" }, "seasonable": { "pos": "a", "pol": "0.563", "std": "0.265" }, "seasoned": { "pos": "a", "pol": "0.563", "std": "0.265" }, "second-best": { "pos": "a", "pol": "0.625", "std": "0.0" }, "secretive": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sedate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "sedulous": { "pos": "a", "pol": "0.625", "std": "0.0" }, "select": { "pos": "a", "pol": "0.688", "std": "0.088" }, "self-assured": { "pos": "a", "pol": "0.625", "std": "0.0" }, "self-confident": { "pos": "a", "pol": "0.625", "std": "0.0" }, "self-directed": { "pos": "a", "pol": "0.625", "std": "0.0" }, "self-educated": { "pos": "a", "pol": "0.625", "std": "0.0" }, "self-imposed": { "pos": "a", "pol": "0.625", "std": "0.0" }, "self-made": { "pos": "a", "pol": "0.625", "std": "0.0" }, "self-reliant": { "pos": "a", "pol": "0.625", "std": "0.0" }, "self-supporting": { "pos": "a", "pol": "0.625", "std": "0.0" }, "semiconducting": { "pos": "a", "pol": "0.625", "std": "0.0" }, "semiconductive": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sense of purpose": { "pos": "n", "pol": "0.625", "std": "0.0" }, "serendipitous": { "pos": "a", "pol": "0.625", "std": "0.0" }, "seriocomic": { "pos": "a", "pol": "0.625", "std": "0.0" }, "seriocomical": { "pos": "a", "pol": "0.625", "std": "0.0" }, "serious-mindedness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "serve well": { "pos": "v", "pol": "0.625", "std": "0.0" }, "serviceable": { "pos": "a", "pol": "0.542", "std": "0.125" }, "shapely": { "pos": "a", "pol": "0.625", "std": "0.0" }, "shaping": { "pos": "a", "pol": "0.625", "std": "0.0" }, "shining": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sidesplitting": { "pos": "a", "pol": "0.625", "std": "0.0" }, "simplified": { "pos": "a", "pol": "0.625", "std": "0.0" }, "singing": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sinkable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "slavelike": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sly": { "pos": "a", "pol": "0.625", "std": "0.0" }, "snazzy": { "pos": "a", "pol": "0.625", "std": "0.0" }, "solemn": { "pos": "a", "pol": "0.563", "std": "0.177" }, "solvency": { "pos": "n", "pol": "0.625", "std": "0.0" }, "sophisticated": { "pos": "a", "pol": "0.542", "std": "0.375" }, "spaciotemporal": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sparkly": { "pos": "a", "pol": "0.563", "std": "0.177" }, "speakable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "specifiable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "speech-endowed": { "pos": "a", "pol": "0.625", "std": "0.0" }, "splendor": { "pos": "n", "pol": "0.563", "std": "0.53" }, "splendour": { "pos": "n", "pol": "0.563", "std": "0.53" }, "stableness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "stalwart": { "pos": "a", "pol": "0.542", "std": "0.144" }, "standardised": { "pos": "a", "pol": "0.625", "std": "0.177" }, "standardized": { "pos": "a", "pol": "0.625", "std": "0.177" }, "stately": { "pos": "a", "pol": "0.583", "std": "0.072" }, "statewide": { "pos": "a", "pol": "0.625", "std": "0.0" }, "steadfast": { "pos": "a", "pol": "0.563", "std": "0.088" }, "sterling": { "pos": "a", "pol": "0.625", "std": "0.0" }, "stirring": { "pos": "a", "pol": "0.563", "std": "0.088" }, "straight-laced": { "pos": "a", "pol": "0.625", "std": "0.0" }, "straightarrow": { "pos": "a", "pol": "0.625", "std": "0.0" }, "straightlaced": { "pos": "a", "pol": "0.625", "std": "0.0" }, "strait-laced": { "pos": "a", "pol": "0.625", "std": "0.0" }, "strengthened": { "pos": "a", "pol": "0.625", "std": "0.0" }, "studded": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sublime": { "pos": "a", "pol": "0.719", "std": "0.063" }, "successfully": { "pos": "r", "pol": "0.625", "std": "0.0" }, "sufficient": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sumptuous": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sun-loving": { "pos": "a", "pol": "0.625", "std": "0.0" }, "super": { "pos": "a", "pol": "0.542", "std": "0.072" }, "superabundant": { "pos": "a", "pol": "0.625", "std": "0.0" }, "superlative": { "pos": "a", "pol": "0.625", "std": "0.0" }, "supportive": { "pos": "a", "pol": "0.625", "std": "0.0" }, "supreme": { "pos": "a", "pol": "0.531", "std": "0.188" }, "surpassing": { "pos": "a", "pol": "0.563", "std": "0.177" }, "susceptible": { "pos": "a", "pol": "0.563", "std": "0.088" }, "sworn": { "pos": "a", "pol": "0.563", "std": "0.0" }, "sybaritic": { "pos": "a", "pol": "0.625", "std": "0.0" }, "synergetic": { "pos": "a", "pol": "0.625", "std": "0.0" }, "systematically": { "pos": "r", "pol": "0.625", "std": "0.0" }, "tactful": { "pos": "a", "pol": "0.688", "std": "0.265" }, "tamable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "tameable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "tasteful": { "pos": "a", "pol": "0.563", "std": "0.177" }, "teachable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "tempting": { "pos": "a", "pol": "0.625", "std": "0.088" }, "tested": { "pos": "a", "pol": "0.563", "std": "0.0" }, "therapeutic": { "pos": "a", "pol": "0.313", "std": "0.53" }, "thorough": { "pos": "a", "pol": "0.563", "std": "0.088" }, "thrifty": { "pos": "a", "pol": "0.563", "std": "0.088" }, "tight-laced": { "pos": "a", "pol": "0.625", "std": "0.0" }, "tightlipped": { "pos": "a", "pol": "0.625", "std": "0.0" }, "timely": { "pos": "r", "pol": "0.25", "std": "0.0" }, "tiptop": { "pos": "a", "pol": "0.625", "std": "0.0" }, "tog out": { "pos": "v", "pol": "0.625", "std": "0.0" }, "tog up": { "pos": "v", "pol": "0.625", "std": "0.0" }, "tongue-in-cheek": { "pos": "a", "pol": "0.625", "std": "0.0" }, "top-grade": { "pos": "a", "pol": "0.625", "std": "0.0" }, "top-notch": { "pos": "a", "pol": "0.625", "std": "0.0" }, "top-quality": { "pos": "a", "pol": "0.625", "std": "0.0" }, "topnotch": { "pos": "a", "pol": "0.625", "std": "0.0" }, "tops": { "pos": "a", "pol": "0.625", "std": "0.0" }, "tractable": { "pos": "a", "pol": "0.625", "std": "0.177" }, "transposable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "tremendous": { "pos": "a", "pol": "0.583", "std": "0.331" }, "trick out": { "pos": "v", "pol": "0.625", "std": "0.0" }, "trick up": { "pos": "v", "pol": "0.625", "std": "0.0" }, "tricksy": { "pos": "a", "pol": "0.625", "std": "0.0" }, "tried": { "pos": "a", "pol": "0.563", "std": "0.0" }, "triple-crown": { "pos": "a", "pol": "0.563", "std": "0.088" }, "true": { "pos": "v", "pol": "0.25", "std": "0.0" }, "true-blue": { "pos": "a", "pol": "0.625", "std": "0.0" }, "truehearted": { "pos": "a", "pol": "0.625", "std": "0.0" }, "truthful": { "pos": "a", "pol": "0.688", "std": "0.088" }, "turned on": { "pos": "a", "pol": "0.625", "std": "0.0" }, "unalarming": { "pos": "a", "pol": "0.625", "std": "0.0" }, "unalloyed": { "pos": "a", "pol": "0.625", "std": "0.0" }, "unbeaten": { "pos": "a", "pol": "0.625", "std": "0.0" }, "unburied": { "pos": "a", "pol": "0.625", "std": "0.0" }, "unconquered": { "pos": "a", "pol": "0.625", "std": "0.0" }, "uncoupled": { "pos": "a", "pol": "0.625", "std": "0.0" }, "undefeated": { "pos": "a", "pol": "0.625", "std": "0.0" }, "unharmed": { "pos": "a", "pol": "0.625", "std": "0.0" }, "uninfected": { "pos": "a", "pol": "0.625", "std": "0.0" }, "unscathed": { "pos": "a", "pol": "0.625", "std": "0.0" }, "unswerving": { "pos": "a", "pol": "0.563", "std": "0.265" }, "unvanquished": { "pos": "a", "pol": "0.625", "std": "0.0" }, "upgrade": { "pos": "v", "pol": "0.525", "std": "0.288" }, "upscale": { "pos": "a", "pol": "0.625", "std": "0.0" }, "user-friendly": { "pos": "a", "pol": "0.625", "std": "0.0" }, "utterable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "valuable": { "pos": "a", "pol": "0.688", "std": "0.177" }, "verdant": { "pos": "a", "pol": "0.625", "std": "0.0" }, "verve": { "pos": "n", "pol": "0.625", "std": "0.0" }, "viable": { "pos": "a", "pol": "0.563", "std": "0.088" }, "victorian": { "pos": "a", "pol": "0.625", "std": "0.0" }, "victorious": { "pos": "a", "pol": "0.563", "std": "0.088" }, "victory": { "pos": "n", "pol": "0.625", "std": "0.0" }, "viewable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "vim": { "pos": "n", "pol": "0.625", "std": "0.354" }, "virtuous": { "pos": "a", "pol": "0.625", "std": "0.088" }, "vitality": { "pos": "n", "pol": "0.625", "std": "0.27" }, "vitalizing": { "pos": "a", "pol": "0.625", "std": "0.0" }, "vivify": { "pos": "v", "pol": "0.688", "std": "0.442" }, "voguish": { "pos": "a", "pol": "0.563", "std": "0.088" }, "voluptuary": { "pos": "a", "pol": "0.625", "std": "0.0" }, "voluptuous": { "pos": "a", "pol": "0.583", "std": "0.125" }, "votive": { "pos": "a", "pol": "0.625", "std": "0.0" }, "vowellike": { "pos": "a", "pol": "0.625", "std": "0.0" }, "water-loving": { "pos": "a", "pol": "0.625", "std": "0.0" }, "well-chosen": { "pos": "a", "pol": "0.625", "std": "0.0" }, "well-educated": { "pos": "a", "pol": "0.625", "std": "0.0" }, "well-grounded": { "pos": "a", "pol": "0.625", "std": "0.0" }, "well-mannered": { "pos": "a", "pol": "0.688", "std": "0.177" }, "well-off": { "pos": "a", "pol": "0.563", "std": "0.088" }, "well-qualified": { "pos": "a", "pol": "0.625", "std": "0.0" }, "well-read": { "pos": "a", "pol": "0.563", "std": "0.088" }, "well-rounded": { "pos": "a", "pol": "0.625", "std": "0.0" }, "well-tried": { "pos": "a", "pol": "0.625", "std": "0.0" }, "well thought out": { "pos": "a", "pol": "0.625", "std": "0.0" }, "wellness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "whipping": { "pos": "a", "pol": "0.625", "std": "0.0" }, "wily": { "pos": "a", "pol": "0.625", "std": "0.0" }, "wiseness": { "pos": "n", "pol": "0.563", "std": "0.442" }, "wonderfulness": { "pos": "n", "pol": "0.625", "std": "0.0" }, "workable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "workmanship": { "pos": "n", "pol": "0.625", "std": "0.0" }, "world-class": { "pos": "a", "pol": "0.625", "std": "0.0" }, "wrapped up": { "pos": "a", "pol": "0.625", "std": "0.0" }, "zestful": { "pos": "a", "pol": "0.625", "std": "0.0" }, "zippy": { "pos": "a", "pol": "0.625", "std": "0.088" }, "abetalipoproteinemia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "abuse": { "pos": "v", "pol": "-0.312", "std": "0.063" }, "abusive": { "pos": "a", "pol": "-0.562", "std": "0.265" }, "acerb": { "pos": "a", "pol": "-0.562", "std": "0.088" }, "acerbic": { "pos": "a", "pol": "-0.562", "std": "0.088" }, "ache": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aching": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "achy": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "acned": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "acrimony": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "adamant": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "addle": { "pos": "v", "pol": "-0.562", "std": "0.088" }, "aggravator": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "agonise": { "pos": "v", "pol": "-0.625", "std": "0.088" }, "agonize": { "pos": "v", "pol": "-0.625", "std": "0.088" }, "ail": { "pos": "v", "pol": "-0.562", "std": "0.0" }, "alarming": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "alienating": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "ambuscade": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "ambush": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "amnesiac": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "amorally": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "amyotonia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "anaemia": { "pos": "n", "pol": "-0.562", "std": "0.0" }, "anemia": { "pos": "n", "pol": "-0.562", "std": "0.0" }, "anxiety disorder": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "apathy": { "pos": "n", "pol": "-0.687", "std": "0.0" }, "apocalyptical": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "assassinated": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "assassination": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "at a lower place": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "atonia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "atonicity": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "atony": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "attaint": { "pos": "v", "pol": "-0.562", "std": "0.088" }, "badinage": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "balls-up": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "ballup": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "bane": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "baneful": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "barbaric": { "pos": "a", "pol": "-0.562", "std": "0.265" }, "bare-knuckle": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "bare-knuckled": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "battle": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "battle fatigue": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "bedlam": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "beneath": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "bilious": { "pos": "a", "pol": "-0.542", "std": "0.072" }, "biliousness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "binge-eating syndrome": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "bittersweet": { "pos": "a", "pol": "-0.562", "std": "0.265" }, "black-grey": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "black-haired": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "blackguardly": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "blackish-gray": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "blackish-grey": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "blain": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "blame": { "pos": "n", "pol": "-0.562", "std": "0.0" }, "bluff out": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "boo": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "boorish": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "boorishness": { "pos": "n", "pol": "-0.625", "std": "0.088" }, "bounderish": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "brattish": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "bratty": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "brawler": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "brazen": { "pos": "a", "pol": "0.313", "std": "0.354" }, "breakability": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "broke": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "brook": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "brown-haired": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "buffalo": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "burdensomeness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "buried": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "bust": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "cacography": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "caitiff": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "callow": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "canard": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "carry-the can": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "catcall": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cease and desist order": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "chafed": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "charcoal gray": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "charcoal grey": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "chicanery": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "chicken breast": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "chintzy": { "pos": "a", "pol": "-0.625", "std": "0.265" }, "clash": { "pos": "v", "pol": "-0.542", "std": "0.0" }, "clavus": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "coarsely": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "cockup": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "cold war": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "combat": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "combat fatigue": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "combat neurosis": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "complexity": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "complexness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "conceitedness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "condescending": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "country-bred": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "cozen": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "crackbrained": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "crazy": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "creepy": { "pos": "a", "pol": "-0.562", "std": "0.177" }, "crepuscular": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "criminalise": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "crudity": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "curse word": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "daimon": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "damage": { "pos": "v", "pol": "-0.625", "std": "0.088" }, "danger line": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "daring": { "pos": "a", "pol": "0.313", "std": "0.088" }, "darken": { "pos": "v", "pol": "-0.625", "std": "0.072" }, "dastardliness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "deaf": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "deceivingly": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "deceptively": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "decry": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "deficiency disease": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "desert": { "pos": "v", "pol": "-0.542", "std": "0.0" }, "desperado": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "desperate criminal": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "destruct": { "pos": "v", "pol": "-0.562", "std": "0.088" }, "detriment": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "difficulty": { "pos": "n", "pol": "-0.719", "std": "0.188" }, "dimness": { "pos": "n", "pol": "-0.542", "std": "0.072" }, "dinge": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "dinginess": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "disapprovingly": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "discord": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "discourteous": { "pos": "a", "pol": "-0.625", "std": "0.177" }, "disgrace": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dishonorable": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "disinterest": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "disjointedness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "disobey": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "disobliging": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "disproportionate": { "pos": "a", "pol": "-0.687", "std": "0.0" }, "disqualified": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "disrespect": { "pos": "n", "pol": "-0.5", "std": "0.144" }, "dissembling": { "pos": "n", "pol": "-0.687", "std": "0.0" }, "dissentious": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "disunity": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "divisive": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "dog's breakfast": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "dog's dinner": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "dog-eared": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "dogsbody": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "doom": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "dork": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "dowdiness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "downspin": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "downstair": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "downstairs": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "drabness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "drudging": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "dupe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dusky": { "pos": "a", "pol": "-0.562", "std": "0.088" }, "dysmenorrhea": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "elegy": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "elements": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "endangered": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "enjoining": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "enjoinment": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "erythroderma": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "excoriation": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "excruciation": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "executed": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "face the music": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "factious": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "faint": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "faithlessness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "fake": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "fallen": { "pos": "a", "pol": "-0.531", "std": "0.072" }, "falsify": { "pos": "v", "pol": "-0.55", "std": "0.0" }, "famine": { "pos": "n", "pol": "-0.562", "std": "0.0" }, "feign": { "pos": "v", "pol": "-0.687", "std": "0.0" }, "feigning": { "pos": "n", "pol": "-0.562", "std": "0.177" }, "fickle": { "pos": "a", "pol": "-0.562", "std": "0.265" }, "fickleness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "fitch": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "flash": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "flaw": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "flea-bitten": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "flim-flam": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "flinch": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fly-by-night": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "foam at the mouth": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "fob": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "for sure": { "pos": "r", "pol": "0.375", "std": "0.0" }, "forbidding": { "pos": "a", "pol": "-0.562", "std": "0.265" }, "foulmart": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "foumart": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "frangibility": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "frangibleness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "fraudulently": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "frayed": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "frivolousness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "froth at the mouth": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "frowsty": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "frump": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "funk": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "fusillade": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "galled": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "garish": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "gauche": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "generalized epilepsy": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "ghastly": { "pos": "a", "pol": "-0.687", "std": "0.088" }, "gimcrack": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "good-for-naught": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "good-for-nothing": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gouty": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "gracelessness": { "pos": "n", "pol": "-0.562", "std": "0.0" }, "grand mal epilepsy": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "grimness": { "pos": "n", "pol": "-0.562", "std": "0.177" }, "grizzled": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "gruff": { "pos": "a", "pol": "-0.625", "std": "0.265" }, "haphazardness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "hard-of-hearing": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "hardship": { "pos": "n", "pol": "-0.583", "std": "0.072" }, "harsh": { "pos": "a", "pol": "-0.625", "std": "0.112" }, "health problem": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "hearing-impaired": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "hell-kite": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "hell-rooster": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "higgledy-piggledy": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "hollow-back": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "hueless": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "huff": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "humdrum": { "pos": "a", "pol": "-0.562", "std": "0.088" }, "hurt": { "pos": "n", "pol": "-0.425", "std": "0.112" }, "hurtful": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "hurting": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "hypognathous": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "hypothyroidism": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "hysterics": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "identity crisis": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "ignorance": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "ignorant": { "pos": "a", "pol": "-0.667", "std": "0.0" }, "ill": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ill-bred": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "ill health": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "illegalise": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "illegalize": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "illogic": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "illogicality": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "illogicalness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "imaginary": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "imbalance": { "pos": "n", "pol": "-0.562", "std": "0.177" }, "immorally": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "immunodeficient": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "immutability": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "immutableness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "impersonally": { "pos": "r", "pol": "-0.562", "std": "0.088" }, "impious": { "pos": "a", "pol": "-0.562", "std": "0.0" }, "imprecation": { "pos": "n", "pol": "-0.625", "std": "0.088" }, "impreciseness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "imprecision": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "imprudent": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "inadequacy": { "pos": "n", "pol": "-0.583", "std": "0.0" }, "inanimate": { "pos": "a", "pol": "-0.542", "std": "0.072" }, "inanition": { "pos": "n", "pol": "-0.687", "std": "0.0" }, "inarguable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "incomprehension": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "incrimination": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "inculpation": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "ineffective": { "pos": "a", "pol": "-0.583", "std": "0.125" }, "inelastic": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "ineligible": { "pos": "a", "pol": "-0.562", "std": "0.177" }, "inexorable": { "pos": "a", "pol": "-0.562", "std": "0.177" }, "inexpressible": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "inexpugnable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "inferno": { "pos": "n", "pol": "-0.625", "std": "0.088" }, "inflexibility": { "pos": "n", "pol": "-0.625", "std": "0.265" }, "inhumed": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "insentience": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "insubstantiality": { "pos": "n", "pol": "-0.687", "std": "0.177" }, "interred": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "intolerable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "intolerably": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "intransigent": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "invective": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "irrationally": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "irreducible": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "jeer": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "jejuneness": { "pos": "n", "pol": "-0.583", "std": "0.144" }, "jumbled": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "kangaroo court": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "kaput": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "keen": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "laboring": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "labouring": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "lace into": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "laid up": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "lam into": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "lament": { "pos": "v", "pol": "-0.312", "std": "0.265" }, "languish": { "pos": "v", "pol": "-0.583", "std": "0.072" }, "lash out": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "lay into": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "licentious": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "life imprisonment": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "listlessness": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "long-sufferance": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "long-suffering": { "pos": "a", "pol": "0.5", "std": "0.0" }, "looney": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "loony": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "lordosis": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "losings": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "losses": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "lousy": { "pos": "a", "pol": "-0.542", "std": "0.144" }, "loutish": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "lowbred": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "lying in wait": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "maladroit": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "maladroitness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "mangey": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "mangy": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "manic disorder": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "maraud": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "marred": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "mental anguish": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "mephitis": { "pos": "n", "pol": "-0.562", "std": "0.0" }, "meritless": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "meshuga": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "meshugga": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "meshugge": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "meshuggeneh": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "meshuggener": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mess-up": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "miff": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "misgovernment": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "misleadingly": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "misrule": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "mongrel": { "pos": "n", "pol": "-0.687", "std": "0.0" }, "mongrelise": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "mongrelize": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "moroseness": { "pos": "n", "pol": "-0.562", "std": "0.177" }, "mourn": { "pos": "v", "pol": "-0.687", "std": "0.0" }, "murder conviction": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "murk": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "neandertal": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "neanderthal": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "nemesis": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "nerve": { "pos": "n", "pol": "-0.292", "std": "0.144" }, "nether region": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "no-account": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "no-count": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "nonchalance": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "nonconformance": { "pos": "n", "pol": "-0.562", "std": "0.177" }, "nonconformism": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "nutcase": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "oafish": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "object": { "pos": "v", "pol": "-0.562", "std": "0.0" }, "objurgate": { "pos": "v", "pol": "-0.687", "std": "0.0" }, "obscurity": { "pos": "n", "pol": "-0.625", "std": "0.125" }, "odynophagia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "old bag": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "ominous": { "pos": "a", "pol": "-0.687", "std": "0.177" }, "onerousness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "ordeal": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "osteophyte": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "outlaw": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oxford gray": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "oxford grey": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "palsied": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "pandemonium": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "panic disorder": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "paranoid": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "paraplegia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "paraplegic": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "paroxysm": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "patronising": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "patronizing": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "peeve": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "penurious": { "pos": "a", "pol": "-0.562", "std": "0.177" }, "perdition": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "perishability": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "perishableness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "pettishness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "pick apart": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "pigeon breast": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "pimpled": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "pimply": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "pitch into": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "pittance": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "play a trick on": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "play tricks": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "poorly": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "precursory": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "predicament": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "premonitory": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "pretentiousness": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "prognathic": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "psychoneurotic": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "puffiness": { "pos": "n", "pol": "-0.562", "std": "0.0" }, "pull a fast one on": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "purple-black": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "purplish-black": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "pusillanimity": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "pusillanimousness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "pustulate": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "put one across": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "put one over": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "puzzle": { "pos": "n", "pol": "0.313", "std": "0.088" }, "quail": { "pos": "n", "pol": "0.25", "std": "0.177" }, "quarrelsome": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "radioactive dust": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "rage": { "pos": "v", "pol": "-0.583", "std": "0.0" }, "ravaging": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "razz": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "razzing": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "renege": { "pos": "v", "pol": "0.25", "std": "0.0" }, "reprehend": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "reprehension": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "reprimand": { "pos": "v", "pol": "-0.5", "std": "0.088" }, "reproach": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "reproof": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "reproval": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "resent": { "pos": "v", "pol": "-0.562", "std": "0.177" }, "revoke": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "rough-and-tumble": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "rough sledding": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "roughish": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "rubbish": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "safehold": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "scandalise": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "scandalize": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "scarce": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "scarceness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "scarcity": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "schmo": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "schmuck": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "scoff": { "pos": "v", "pol": "-0.5", "std": "0.088" }, "scoffing": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "scold": { "pos": "v", "pol": "-0.562", "std": "0.088" }, "scoundrelly": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "scrambled": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "scrawl": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "scruffy": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "seeing red": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "semi-wild": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "shell shock": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "shiftlessness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "shmo": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "shmuck": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "shoddy": { "pos": "a", "pol": "-0.583", "std": "0.072" }, "skint": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "skull and crossbones": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "sleaze": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "smart": { "pos": "a", "pol": "0.25", "std": "0.177" }, "smarting": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "snappishness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "sneer": { "pos": "n", "pol": "-0.562", "std": "0.0" }, "sob story": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "sob stuff": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "somber": { "pos": "a", "pol": "-0.562", "std": "0.0" }, "sombre": { "pos": "a", "pol": "-0.562", "std": "0.0" }, "sordidness": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "speechless": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "spinal curvature": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "spiritlessness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "spurious": { "pos": "a", "pol": "-0.667", "std": "0.125" }, "spuriousness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "squandermania": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "sterilised": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "sterilized": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "stochasticity": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "stomach": { "pos": "v", "pol": "-0.562", "std": "0.0" }, "stone-broke": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "stony-broke": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "storm": { "pos": "v", "pol": "-0.4", "std": "0.0" }, "stricture": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "subnormality": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "subpoena": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "subpoena ad testificandum": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "succor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "succour": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sullenness": { "pos": "n", "pol": "-0.562", "std": "0.177" }, "surliness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "swart": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "swarthy": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "swearword": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "swoon": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tart": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "tasteless": { "pos": "a", "pol": "-0.625", "std": "0.177" }, "tat": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "tawdry": { "pos": "a", "pol": "-0.562", "std": "0.088" }, "tear into": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "threatening": { "pos": "a", "pol": "-0.687", "std": "0.177" }, "throe": { "pos": "n", "pol": "-0.687", "std": "0.0" }, "thumbed": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "tiredness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "to a lower place": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "toiling": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "topsy-turvy": { "pos": "r", "pol": "-0.25", "std": "0.088" }, "topsy-turvydom": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "topsy-turvyness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "torturer": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "treacherous": { "pos": "a", "pol": "-0.562", "std": "0.088" }, "trick": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "troubled": { "pos": "a", "pol": "-0.687", "std": "0.177" }, "tsk": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "tsoris": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "tut": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "tut-tut": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "tyrannicide": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "unacceptably": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "unaccommodating": { "pos": "a", "pol": "-0.562", "std": "0.265" }, "unalienable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unappetising": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unappetizing": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unarguable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unattackable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unattractive": { "pos": "a", "pol": "-0.667", "std": "0.072" }, "unauthorised": { "pos": "a", "pol": "-0.687", "std": "0.0" }, "unauthorized": { "pos": "a", "pol": "-0.687", "std": "0.0" }, "unbearable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unbeatable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unblessed": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unceremonious": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "uncheckable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unconcern": { "pos": "n", "pol": "-0.562", "std": "0.177" }, "unconsciousness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "uncouth": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "uncultured": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "underworld": { "pos": "n", "pol": "-0.687", "std": "0.0" }, "unendurable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unenlivened": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unentitled": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unexpressible": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unfailingly": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "unfavorable judgment": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "unflattering": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "ungenerous": { "pos": "a", "pol": "-0.625", "std": "0.265" }, "ungrateful": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "unguarded": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unhappily": { "pos": "r", "pol": "-0.625", "std": "0.265" }, "unhealthiness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "unholy": { "pos": "a", "pol": "-0.542", "std": "0.144" }, "unknowingness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "unmodifiable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unpersuadable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unpleasing": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unprofitable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unqualified": { "pos": "a", "pol": "-0.625", "std": "0.063" }, "unreceptive": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unreformable": { "pos": "a", "pol": "-0.625", "std": "0.265" }, "unregularity": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "unreliable": { "pos": "a", "pol": "-0.719", "std": "0.12" }, "unremunerative": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unrighteous": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unsafe": { "pos": "a", "pol": "-0.625", "std": "0.217" }, "unsanctification": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "unsatisfactoriness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "unsatisfied": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "unscholarly": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unscrupulously": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "unsoundness": { "pos": "n", "pol": "-0.583", "std": "0.072" }, "unstatesmanlike": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unsuasible": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unsuccessfully": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "untempting": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "unthinkable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "untraceable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unverified": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "unwitting": { "pos": "a", "pol": "-0.625", "std": "0.217" }, "unworthiness": { "pos": "n", "pol": "-0.625", "std": "0.088" }, "vinegarish": { "pos": "a", "pol": "-0.562", "std": "0.088" }, "vinegary": { "pos": "a", "pol": "-0.562", "std": "0.088" }, "violet-black": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "vituperation": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "volatile": { "pos": "a", "pol": "-0.562", "std": "0.0" }, "vulgarism": { "pos": "n", "pol": "-0.562", "std": "0.0" }, "wail": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "walk out of": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "wan": { "pos": "a", "pol": "-0.583", "std": "0.072" }, "wangle": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "war-ridden": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "warring": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "weariness": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "weigh down": { "pos": "v", "pol": "-0.687", "std": "0.0" }, "weirdo": { "pos": "n", "pol": "-0.562", "std": "0.0" }, "wile": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "wrangle": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "writer's block": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "yokel-like": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "yokelish": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "ably": { "pos": "r", "pol": "0.5", "std": "0.0" }, "abounding": { "pos": "a", "pol": "0.5", "std": "0.0" }, "aboveboard": { "pos": "r", "pol": "0.5", "std": "0.0" }, "abreast": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "absorbing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "accelerated": { "pos": "a", "pol": "0.5", "std": "0.0" }, "acceptably": { "pos": "r", "pol": "0.5", "std": "0.0" }, "acceptant": { "pos": "a", "pol": "0.5", "std": "0.0" }, "acclamation": { "pos": "n", "pol": "0.5", "std": "0.0" }, "acclivity": { "pos": "n", "pol": "0.5", "std": "0.0" }, "accolade": { "pos": "n", "pol": "0.5", "std": "0.0" }, "accommodative": { "pos": "a", "pol": "0.5", "std": "0.125" }, "accomplishable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "according": { "pos": "a", "pol": "0.5", "std": "0.177" }, "achievable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "acquiesce": { "pos": "v", "pol": "0.5", "std": "0.0" }, "acquiescent": { "pos": "a", "pol": "0.5", "std": "0.0" }, "actionable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "adaptability": { "pos": "n", "pol": "0.5", "std": "0.0" }, "adapted": { "pos": "a", "pol": "0.5", "std": "0.0" }, "addictive": { "pos": "a", "pol": "0.5", "std": "0.0" }, "addressed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "adequacy": { "pos": "n", "pol": "0.5", "std": "0.088" }, "adjustable": { "pos": "a", "pol": "0.5", "std": "0.088" }, "admissive": { "pos": "a", "pol": "0.5", "std": "0.0" }, "adored": { "pos": "a", "pol": "0.5", "std": "0.0" }, "adrenocorticotrophic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "adrenocorticotropic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "advancing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "advantageous": { "pos": "a", "pol": "0.5", "std": "0.354" }, "advertent": { "pos": "a", "pol": "0.5", "std": "0.0" }, "advertently": { "pos": "r", "pol": "0.5", "std": "0.0" }, "advised": { "pos": "a", "pol": "0.5", "std": "0.0" }, "aesthetic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "affirmable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "affluent": { "pos": "a", "pol": "0.5", "std": "0.0" }, "agape": { "pos": "a", "pol": "0.5", "std": "0.0" }, "agglomerate": { "pos": "a", "pol": "0.5", "std": "0.0" }, "agglomerated": { "pos": "a", "pol": "0.5", "std": "0.0" }, "agglomerative": { "pos": "a", "pol": "0.5", "std": "0.0" }, "agile": { "pos": "a", "pol": "0.5", "std": "0.088" }, "aglitter": { "pos": "a", "pol": "0.5", "std": "0.0" }, "agreeably": { "pos": "r", "pol": "0.5", "std": "0.0" }, "airworthy": { "pos": "a", "pol": "0.5", "std": "0.0" }, "all-important": { "pos": "a", "pol": "0.5", "std": "0.0" }, "all-night": { "pos": "a", "pol": "0.5", "std": "0.0" }, "all important": { "pos": "a", "pol": "0.5", "std": "0.0" }, "allegro con spirito": { "pos": "n", "pol": "0.5", "std": "0.0" }, "alright": { "pos": "a", "pol": "0.5", "std": "0.0" }, "amalgamate": { "pos": "a", "pol": "0.5", "std": "0.0" }, "amalgamated": { "pos": "a", "pol": "0.5", "std": "0.0" }, "amendatory": { "pos": "a", "pol": "0.5", "std": "0.0" }, "amentaceous": { "pos": "a", "pol": "0.5", "std": "0.0" }, "amentiferous": { "pos": "a", "pol": "0.5", "std": "0.0" }, "anchoritic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "animating": { "pos": "a", "pol": "0.5", "std": "0.0" }, "answerable": { "pos": "a", "pol": "0.5", "std": "0.177" }, "antimonopoly": { "pos": "a", "pol": "0.5", "std": "0.0" }, "antitrust": { "pos": "a", "pol": "0.5", "std": "0.0" }, "apart": { "pos": "a", "pol": "0.5", "std": "0.0" }, "aplanatic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "apocryphal": { "pos": "a", "pol": "0.5", "std": "0.0" }, "apodeictic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "apodictic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "appeasing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "appetising": { "pos": "a", "pol": "0.5", "std": "0.0" }, "appetizing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "applause": { "pos": "n", "pol": "0.5", "std": "0.0" }, "applicable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "applicative": { "pos": "a", "pol": "0.5", "std": "0.0" }, "applicatory": { "pos": "a", "pol": "0.5", "std": "0.0" }, "apposable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "approbate": { "pos": "v", "pol": "0.5", "std": "0.177" }, "appropriateness": { "pos": "n", "pol": "0.5", "std": "0.177" }, "apropos": { "pos": "r", "pol": "0.25", "std": "0.0" }, "aptly": { "pos": "r", "pol": "0.5", "std": "0.0" }, "arable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "arbitrary": { "pos": "a", "pol": "0.5", "std": "0.0" }, "aright": { "pos": "r", "pol": "0.5", "std": "0.0" }, "artistry": { "pos": "n", "pol": "0.5", "std": "0.0" }, "artsy-craftsy": { "pos": "a", "pol": "0.5", "std": "0.0" }, "arty-crafty": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ascendable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ascendant": { "pos": "a", "pol": "0.5", "std": "0.088" }, "ascendent": { "pos": "a", "pol": "0.5", "std": "0.088" }, "ascendible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ascensive": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ascertainable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "aseptic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "aspirant": { "pos": "a", "pol": "0.5", "std": "0.0" }, "aspiring": { "pos": "a", "pol": "0.5", "std": "0.0" }, "assent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "assertable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "asserted": { "pos": "a", "pol": "0.5", "std": "0.0" }, "assessable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "associable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "assuage": { "pos": "v", "pol": "0.5", "std": "0.331" }, "assuring": { "pos": "a", "pol": "0.5", "std": "0.0" }, "at the ready": { "pos": "a", "pol": "0.5", "std": "0.0" }, "attachable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "attune": { "pos": "v", "pol": "0.5", "std": "0.0" }, "au courant": { "pos": "a", "pol": "0.5", "std": "0.0" }, "au fait": { "pos": "a", "pol": "0.5", "std": "0.0" }, "auspiciousness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "autofluorescent": { "pos": "a", "pol": "0.5", "std": "0.0" }, "autogamic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "autogamous": { "pos": "a", "pol": "0.5", "std": "0.0" }, "auxiliary": { "pos": "a", "pol": "0.5", "std": "0.265" }, "avertable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "avertible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "avoidable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "avouchment": { "pos": "n", "pol": "0.5", "std": "0.0" }, "avowal": { "pos": "n", "pol": "0.5", "std": "0.0" }, "aweary": { "pos": "a", "pol": "0.5", "std": "0.0" }, "axenic": { "pos": "a", "pol": "0.5", "std": "0.177" }, "azure": { "pos": "n", "pol": "0.25", "std": "0.0" }, "babelike": { "pos": "a", "pol": "0.5", "std": "0.0" }, "beadlike": { "pos": "a", "pol": "0.5", "std": "0.0" }, "beady": { "pos": "a", "pol": "0.5", "std": "0.0" }, "beauteousness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "beef up": { "pos": "v", "pol": "0.5", "std": "0.0" }, "beefed-up": { "pos": "a", "pol": "0.5", "std": "0.0" }, "befitting": { "pos": "a", "pol": "0.5", "std": "0.0" }, "beingness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "beloved": { "pos": "a", "pol": "0.5", "std": "0.0" }, "best of all": { "pos": "r", "pol": "0.5", "std": "0.0" }, "betrothed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "better": { "pos": "n", "pol": "0.25", "std": "0.177" }, "betting": { "pos": "a", "pol": "0.5", "std": "0.0" }, "biddable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "big-chested": { "pos": "a", "pol": "0.5", "std": "0.0" }, "bighearted": { "pos": "a", "pol": "0.5", "std": "0.0" }, "bimanual": { "pos": "a", "pol": "0.5", "std": "0.0" }, "bindable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "bookish": { "pos": "a", "pol": "0.5", "std": "0.0" }, "booming": { "pos": "a", "pol": "0.5", "std": "0.265" }, "bordered": { "pos": "a", "pol": "0.5", "std": "0.0" }, "born": { "pos": "a", "pol": "0.5", "std": "0.0" }, "bosomy": { "pos": "a", "pol": "0.5", "std": "0.0" }, "bottom round": { "pos": "n", "pol": "0.5", "std": "0.0" }, "bounce back": { "pos": "v", "pol": "0.5", "std": "0.0" }, "bounden": { "pos": "a", "pol": "0.5", "std": "0.0" }, "bounteous": { "pos": "a", "pol": "0.5", "std": "0.0" }, "bountiful": { "pos": "a", "pol": "0.5", "std": "0.088" }, "bravura": { "pos": "n", "pol": "0.5", "std": "0.0" }, "brazen-faced": { "pos": "a", "pol": "0.5", "std": "0.0" }, "breathtaking": { "pos": "a", "pol": "0.5", "std": "0.0" }, "bridgeable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "bright-red": { "pos": "a", "pol": "0.5", "std": "0.0" }, "bright blue": { "pos": "a", "pol": "0.5", "std": "0.0" }, "bring through": { "pos": "v", "pol": "0.5", "std": "0.0" }, "buffoonish": { "pos": "a", "pol": "0.5", "std": "0.0" }, "built": { "pos": "a", "pol": "0.5", "std": "0.0" }, "bullocky": { "pos": "a", "pol": "0.5", "std": "0.0" }, "bunce": { "pos": "n", "pol": "0.5", "std": "0.0" }, "buoyant": { "pos": "a", "pol": "0.5", "std": "0.442" }, "burr-headed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "busty": { "pos": "a", "pol": "0.5", "std": "0.0" }, "buttonlike": { "pos": "a", "pol": "0.5", "std": "0.0" }, "buttony": { "pos": "a", "pol": "0.5", "std": "0.0" }, "cadenced": { "pos": "a", "pol": "0.5", "std": "0.0" }, "cadent": { "pos": "a", "pol": "0.5", "std": "0.0" }, "callipygian": { "pos": "a", "pol": "0.5", "std": "0.0" }, "callipygous": { "pos": "a", "pol": "0.5", "std": "0.0" }, "can-do": { "pos": "a", "pol": "0.5", "std": "0.0" }, "canny": { "pos": "a", "pol": "0.5", "std": "0.0" }, "canorous": { "pos": "a", "pol": "0.5", "std": "0.0" }, "capableness": { "pos": "n", "pol": "0.5", "std": "0.177" }, "capably": { "pos": "r", "pol": "0.5", "std": "0.0" }, "captive": { "pos": "a", "pol": "0.5", "std": "0.088" }, "card-playing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "carry to term": { "pos": "v", "pol": "0.5", "std": "0.0" }, "case-by-case": { "pos": "a", "pol": "0.5", "std": "0.0" }, "case-hardened": { "pos": "a", "pol": "0.5", "std": "0.0" }, "casebook": { "pos": "a", "pol": "0.5", "std": "0.0" }, "catching": { "pos": "a", "pol": "0.5", "std": "0.0" }, "cathartic": { "pos": "a", "pol": "0.5", "std": "0.315" }, "causal": { "pos": "a", "pol": "0.5", "std": "0.0" }, "cautious": { "pos": "a", "pol": "0.5", "std": "0.088" }, "centralising": { "pos": "a", "pol": "0.5", "std": "0.0" }, "centralizing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "certificated": { "pos": "a", "pol": "0.5", "std": "0.0" }, "cerulean": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chained": { "pos": "a", "pol": "0.5", "std": "0.0" }, "champleve": { "pos": "a", "pol": "0.5", "std": "0.0" }, "characteristic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "charming": { "pos": "a", "pol": "0.5", "std": "0.442" }, "cheerily": { "pos": "r", "pol": "0.5", "std": "0.0" }, "chess master": { "pos": "n", "pol": "0.5", "std": "0.0" }, "chief": { "pos": "a", "pol": "0.5", "std": "0.0" }, "child-centered": { "pos": "a", "pol": "0.5", "std": "0.0" }, "childlike": { "pos": "a", "pol": "0.5", "std": "0.177" }, "chirpy": { "pos": "a", "pol": "0.5", "std": "0.354" }, "chiseled": { "pos": "a", "pol": "0.5", "std": "0.0" }, "choiceness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "christianly": { "pos": "a", "pol": "0.5", "std": "0.0" }, "chubby": { "pos": "a", "pol": "0.5", "std": "0.0" }, "circumstantial": { "pos": "a", "pol": "0.5", "std": "0.0" }, "citywide": { "pos": "a", "pol": "0.5", "std": "0.0" }, "civility": { "pos": "n", "pol": "0.5", "std": "0.177" }, "clabber": { "pos": "v", "pol": "0.5", "std": "0.0" }, "clapping": { "pos": "n", "pol": "0.5", "std": "0.0" }, "clean-limbed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "clean bill of health": { "pos": "n", "pol": "0.5", "std": "0.0" }, "cleanable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "clinking": { "pos": "a", "pol": "0.5", "std": "0.0" }, "cloisonne": { "pos": "a", "pol": "0.5", "std": "0.0" }, "cloistral": { "pos": "a", "pol": "0.5", "std": "0.0" }, "closet drama": { "pos": "n", "pol": "0.5", "std": "0.0" }, "cloudless": { "pos": "a", "pol": "0.5", "std": "0.0" }, "clownish": { "pos": "a", "pol": "0.5", "std": "0.0" }, "clownlike": { "pos": "a", "pol": "0.5", "std": "0.0" }, "coalesced": { "pos": "a", "pol": "0.5", "std": "0.0" }, "coaxing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "cocksure": { "pos": "a", "pol": "0.5", "std": "0.0" }, "coffee-table book": { "pos": "n", "pol": "0.5", "std": "0.0" }, "cogitable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "color": { "pos": "a", "pol": "0.5", "std": "0.0" }, "colour": { "pos": "a", "pol": "0.5", "std": "0.0" }, "combustible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "comeliness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "committed": { "pos": "a", "pol": "0.5", "std": "0.088" }, "common-law": { "pos": "a", "pol": "0.5", "std": "0.0" }, "common sense": { "pos": "n", "pol": "0.5", "std": "0.0" }, "companionability": { "pos": "n", "pol": "0.5", "std": "0.0" }, "companionableness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "compatibly": { "pos": "r", "pol": "0.5", "std": "0.0" }, "competently": { "pos": "r", "pol": "0.5", "std": "0.0" }, "complemental": { "pos": "a", "pol": "0.5", "std": "0.0" }, "completing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "compliment": { "pos": "v", "pol": "0.5", "std": "0.177" }, "compos mentis": { "pos": "a", "pol": "0.5", "std": "0.0" }, "comprehendible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "comprehensible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "comprehensive": { "pos": "n", "pol": "0.25", "std": "0.0" }, "conciliatory": { "pos": "a", "pol": "0.5", "std": "0.177" }, "condign": { "pos": "a", "pol": "0.5", "std": "0.0" }, "conductive": { "pos": "a", "pol": "0.5", "std": "0.0" }, "confederate": { "pos": "a", "pol": "0.5", "std": "0.0" }, "confederative": { "pos": "a", "pol": "0.5", "std": "0.0" }, "confidently": { "pos": "r", "pol": "0.5", "std": "0.0" }, "confining": { "pos": "a", "pol": "0.5", "std": "0.0" }, "confusable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "congratulations": { "pos": "n", "pol": "0.5", "std": "0.0" }, "conscionable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "consciousness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "consentaneous": { "pos": "a", "pol": "0.5", "std": "0.0" }, "consentient": { "pos": "a", "pol": "0.5", "std": "0.0" }, "considered": { "pos": "a", "pol": "0.5", "std": "0.0" }, "constraining": { "pos": "a", "pol": "0.5", "std": "0.0" }, "constructiveness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "contractable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "conventual": { "pos": "a", "pol": "0.5", "std": "0.0" }, "conversant": { "pos": "a", "pol": "0.5", "std": "0.0" }, "convince": { "pos": "v", "pol": "0.5", "std": "0.0" }, "copious": { "pos": "a", "pol": "0.5", "std": "0.177" }, "copybook": { "pos": "n", "pol": "0.5", "std": "0.0" }, "copyedit": { "pos": "v", "pol": "0.5", "std": "0.0" }, "copyread": { "pos": "v", "pol": "0.5", "std": "0.0" }, "coquettish": { "pos": "a", "pol": "0.5", "std": "0.0" }, "cordial reception": { "pos": "n", "pol": "0.5", "std": "0.0" }, "correctly": { "pos": "r", "pol": "0.5", "std": "0.0" }, "corruptibility": { "pos": "n", "pol": "0.5", "std": "0.0" }, "coruscant": { "pos": "a", "pol": "0.5", "std": "0.0" }, "cosher": { "pos": "a", "pol": "0.5", "std": "0.0" }, "cost-effective": { "pos": "a", "pol": "0.5", "std": "0.0" }, "cost-efficient": { "pos": "a", "pol": "0.5", "std": "0.0" }, "countrywide": { "pos": "a", "pol": "0.5", "std": "0.0" }, "crackerjack": { "pos": "n", "pol": "0.5", "std": "0.0" }, "credibly": { "pos": "r", "pol": "0.5", "std": "0.0" }, "credited": { "pos": "a", "pol": "0.5", "std": "0.0" }, "cringing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "cultivable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "cultivatable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "cup of tea": { "pos": "n", "pol": "0.5", "std": "0.0" }, "curable": { "pos": "a", "pol": "0.5", "std": "0.088" }, "curvaceous": { "pos": "a", "pol": "0.5", "std": "0.0" }, "cut out": { "pos": "a", "pol": "0.5", "std": "0.0" }, "cutting-edge": { "pos": "a", "pol": "0.5", "std": "0.0" }, "dapper": { "pos": "a", "pol": "0.5", "std": "0.0" }, "darling": { "pos": "n", "pol": "0.375", "std": "0.0" }, "daytime": { "pos": "n", "pol": "0.5", "std": "0.0" }, "dead on target": { "pos": "a", "pol": "0.5", "std": "0.0" }, "debenture bond": { "pos": "n", "pol": "0.5", "std": "0.0" }, "debonnaire": { "pos": "a", "pol": "0.5", "std": "0.0" }, "declarable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "definable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "defined": { "pos": "a", "pol": "0.5", "std": "0.088" }, "definite": { "pos": "a", "pol": "0.5", "std": "0.265" }, "deliberate": { "pos": "a", "pol": "0.5", "std": "0.088" }, "deliverable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "deluxe": { "pos": "a", "pol": "0.5", "std": "0.0" }, "denazify": { "pos": "v", "pol": "0.5", "std": "0.0" }, "derestrict": { "pos": "v", "pol": "0.5", "std": "0.0" }, "desegregation": { "pos": "n", "pol": "0.5", "std": "0.0" }, "deserve": { "pos": "v", "pol": "0.5", "std": "0.0" }, "deservedly": { "pos": "r", "pol": "0.5", "std": "0.0" }, "destabilisation": { "pos": "n", "pol": "0.5", "std": "0.0" }, "detachable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "determinable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "diagnosable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "dianoetic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "didacticism": { "pos": "n", "pol": "0.5", "std": "0.0" }, "digestibility": { "pos": "n", "pol": "0.5", "std": "0.0" }, "digestible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "digestibleness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "dignifying": { "pos": "a", "pol": "0.5", "std": "0.0" }, "diplomatic": { "pos": "a", "pol": "0.5", "std": "0.707" }, "directing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "directive": { "pos": "a", "pol": "0.5", "std": "0.0" }, "dirigible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "disabuse": { "pos": "v", "pol": "0.5", "std": "0.0" }, "disavowable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "discernable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "discernible": { "pos": "a", "pol": "0.5", "std": "0.072" }, "disciplinal": { "pos": "a", "pol": "0.5", "std": "0.0" }, "discoverable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "discretional": { "pos": "a", "pol": "0.5", "std": "0.0" }, "discriminable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "discriminative": { "pos": "a", "pol": "0.5", "std": "0.088" }, "disinflation": { "pos": "n", "pol": "0.5", "std": "0.0" }, "disjoined": { "pos": "a", "pol": "0.5", "std": "0.0" }, "distinguished": { "pos": "a", "pol": "0.5", "std": "0.088" }, "distrustfully": { "pos": "r", "pol": "0.5", "std": "0.0" }, "doable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "donate": { "pos": "v", "pol": "0.5", "std": "0.0" }, "double-quick": { "pos": "a", "pol": "0.5", "std": "0.0" }, "dress": { "pos": "a", "pol": "0.5", "std": "0.088" }, "drilled": { "pos": "a", "pol": "0.5", "std": "0.0" }, "droll": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ducal": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ductile": { "pos": "a", "pol": "0.5", "std": "0.265" }, "eclectic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ecumenical": { "pos": "a", "pol": "0.5", "std": "0.088" }, "edified": { "pos": "a", "pol": "0.5", "std": "0.0" }, "edited": { "pos": "a", "pol": "0.5", "std": "0.0" }, "educated": { "pos": "a", "pol": "0.5", "std": "0.088" }, "effectivity": { "pos": "n", "pol": "0.5", "std": "0.0" }, "effectuality": { "pos": "n", "pol": "0.5", "std": "0.0" }, "effectualness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "elasticised": { "pos": "a", "pol": "0.5", "std": "0.0" }, "elasticized": { "pos": "a", "pol": "0.5", "std": "0.0" }, "elder": { "pos": "a", "pol": "0.5", "std": "0.0" }, "elite": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eloquent": { "pos": "a", "pol": "0.5", "std": "0.0" }, "emancipative": { "pos": "a", "pol": "0.5", "std": "0.0" }, "embonpoint": { "pos": "n", "pol": "0.25", "std": "0.0" }, "emended": { "pos": "a", "pol": "0.5", "std": "0.0" }, "empathetic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "empathic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "enable": { "pos": "v", "pol": "0.5", "std": "0.0" }, "enchained": { "pos": "a", "pol": "0.5", "std": "0.0" }, "encompassing": { "pos": "a", "pol": "0.5", "std": "0.177" }, "endear": { "pos": "v", "pol": "0.5", "std": "0.0" }, "endergonic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "engrossing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "enhancement": { "pos": "n", "pol": "0.5", "std": "0.0" }, "enhancive": { "pos": "a", "pol": "0.5", "std": "0.177" }, "enjoyably": { "pos": "r", "pol": "0.5", "std": "0.0" }, "enlivening": { "pos": "a", "pol": "0.5", "std": "0.0" }, "enough": { "pos": "a", "pol": "0.5", "std": "0.0" }, "enured": { "pos": "a", "pol": "0.5", "std": "0.0" }, "epideictic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "epideictical": { "pos": "a", "pol": "0.5", "std": "0.0" }, "epigrammatic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ergodic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "erudite": { "pos": "a", "pol": "0.5", "std": "0.0" }, "esthetic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ethically": { "pos": "r", "pol": "0.5", "std": "0.0" }, "eugenics": { "pos": "n", "pol": "0.5", "std": "0.0" }, "euphony": { "pos": "n", "pol": "0.5", "std": "0.0" }, "evident": { "pos": "a", "pol": "0.5", "std": "0.0" }, "evidential": { "pos": "a", "pol": "0.5", "std": "0.0" }, "evitable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "excel at": { "pos": "v", "pol": "0.5", "std": "0.0" }, "exchangeable": { "pos": "a", "pol": "0.5", "std": "0.191" }, "exhaustive": { "pos": "a", "pol": "0.5", "std": "0.0" }, "exhortative": { "pos": "a", "pol": "0.5", "std": "0.0" }, "exhortatory": { "pos": "a", "pol": "0.5", "std": "0.0" }, "exoteric": { "pos": "a", "pol": "0.5", "std": "0.0" }, "expeditious": { "pos": "a", "pol": "0.5", "std": "0.0" }, "explicit": { "pos": "a", "pol": "0.5", "std": "0.177" }, "explicitness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "extant": { "pos": "a", "pol": "0.5", "std": "0.0" }, "exterior": { "pos": "a", "pol": "0.5", "std": "0.0" }, "extol": { "pos": "v", "pol": "0.5", "std": "0.0" }, "extoller": { "pos": "n", "pol": "0.5", "std": "0.0" }, "extolment": { "pos": "n", "pol": "0.5", "std": "0.0" }, "extraordinaire": { "pos": "a", "pol": "0.5", "std": "0.0" }, "extraversive": { "pos": "a", "pol": "0.5", "std": "0.0" }, "extroversive": { "pos": "a", "pol": "0.5", "std": "0.0" }, "faced": { "pos": "a", "pol": "0.5", "std": "0.0" }, "facilitatory": { "pos": "a", "pol": "0.5", "std": "0.0" }, "factuality": { "pos": "n", "pol": "0.5", "std": "0.0" }, "factualness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "fain": { "pos": "a", "pol": "0.5", "std": "0.0" }, "fair-minded": { "pos": "a", "pol": "0.5", "std": "0.0" }, "fame": { "pos": "n", "pol": "0.5", "std": "0.0" }, "familiarising": { "pos": "a", "pol": "0.5", "std": "0.0" }, "familiarizing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "famished": { "pos": "a", "pol": "0.5", "std": "0.0" }, "fascinated": { "pos": "a", "pol": "0.5", "std": "0.0" }, "fatherlike": { "pos": "a", "pol": "0.5", "std": "0.0" }, "fatherly": { "pos": "a", "pol": "0.5", "std": "0.0" }, "favorable reception": { "pos": "n", "pol": "0.5", "std": "0.0" }, "favourable reception": { "pos": "n", "pol": "0.5", "std": "0.0" }, "featured": { "pos": "a", "pol": "0.5", "std": "0.0" }, "feel like a million": { "pos": "v", "pol": "0.5", "std": "0.0" }, "feel like a million dollars": { "pos": "v", "pol": "0.5", "std": "0.0" }, "felicitousness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "fervency": { "pos": "n", "pol": "0.5", "std": "0.0" }, "fervidness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "festivity": { "pos": "n", "pol": "0.5", "std": "0.0" }, "fettle": { "pos": "n", "pol": "0.5", "std": "0.0" }, "filmable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "fissionable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "five-needled": { "pos": "a", "pol": "0.5", "std": "0.0" }, "flirtatious": { "pos": "a", "pol": "0.5", "std": "0.0" }, "foldable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "foldaway": { "pos": "a", "pol": "0.5", "std": "0.0" }, "folding": { "pos": "a", "pol": "0.5", "std": "0.0" }, "forward-moving": { "pos": "a", "pol": "0.5", "std": "0.0" }, "four-needled": { "pos": "a", "pol": "0.5", "std": "0.0" }, "freebee": { "pos": "n", "pol": "0.5", "std": "0.0" }, "freebie": { "pos": "n", "pol": "0.5", "std": "0.0" }, "freehearted": { "pos": "a", "pol": "0.5", "std": "0.0" }, "freewill": { "pos": "a", "pol": "0.5", "std": "0.0" }, "fresh-cut": { "pos": "a", "pol": "0.5", "std": "0.0" }, "fulgid": { "pos": "a", "pol": "0.5", "std": "0.0" }, "full-blown": { "pos": "a", "pol": "0.5", "std": "0.0" }, "full-bodied": { "pos": "a", "pol": "0.5", "std": "0.0" }, "full-bosomed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "full-dress": { "pos": "a", "pol": "0.5", "std": "0.072" }, "full-fashioned": { "pos": "a", "pol": "0.5", "std": "0.0" }, "full of life": { "pos": "a", "pol": "0.5", "std": "0.0" }, "fully fashioned": { "pos": "a", "pol": "0.5", "std": "0.0" }, "fused": { "pos": "a", "pol": "0.5", "std": "0.0" }, "gainfulness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "galvanising": { "pos": "a", "pol": "0.5", "std": "0.0" }, "galvanizing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "gaping": { "pos": "a", "pol": "0.5", "std": "0.0" }, "gemmed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "gentlefolk": { "pos": "n", "pol": "0.5", "std": "0.0" }, "germfree": { "pos": "a", "pol": "0.5", "std": "0.0" }, "germinal": { "pos": "a", "pol": "0.5", "std": "0.0" }, "get well": { "pos": "v", "pol": "0.5", "std": "0.0" }, "getable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "gettable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "gift wrap": { "pos": "n", "pol": "0.5", "std": "0.0" }, "gilt-edged": { "pos": "a", "pol": "0.5", "std": "0.177" }, "gingerly": { "pos": "a", "pol": "0.5", "std": "0.0" }, "giving": { "pos": "a", "pol": "0.5", "std": "0.0" }, "glamorise": { "pos": "v", "pol": "0.5", "std": "0.0" }, "glamourize": { "pos": "v", "pol": "0.5", "std": "0.0" }, "glinting": { "pos": "a", "pol": "0.5", "std": "0.0" }, "glistering": { "pos": "a", "pol": "0.5", "std": "0.0" }, "glittering": { "pos": "a", "pol": "0.5", "std": "0.0" }, "glittery": { "pos": "a", "pol": "0.5", "std": "0.0" }, "glossy": { "pos": "a", "pol": "0.5", "std": "0.26" }, "glove leather": { "pos": "n", "pol": "0.5", "std": "0.0" }, "glowing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "go": { "pos": "a", "pol": "0.5", "std": "0.0" }, "godsend": { "pos": "n", "pol": "0.5", "std": "0.0" }, "good-natured": { "pos": "a", "pol": "0.5", "std": "0.0" }, "good-neighborliness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "good-neighbourliness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "good luck charm": { "pos": "n", "pol": "0.5", "std": "0.0" }, "good sense": { "pos": "n", "pol": "0.5", "std": "0.0" }, "good weather": { "pos": "n", "pol": "0.5", "std": "0.0" }, "graceful": { "pos": "a", "pol": "0.5", "std": "0.177" }, "graciously": { "pos": "r", "pol": "0.5", "std": "0.0" }, "grade-appropriate": { "pos": "a", "pol": "0.5", "std": "0.0" }, "grandeur": { "pos": "n", "pol": "0.5", "std": "0.53" }, "greater": { "pos": "a", "pol": "0.5", "std": "0.0" }, "greathearted": { "pos": "a", "pol": "0.5", "std": "0.0" }, "gripping": { "pos": "a", "pol": "0.5", "std": "0.0" }, "grovelling": { "pos": "a", "pol": "0.5", "std": "0.0" }, "gushy": { "pos": "a", "pol": "0.5", "std": "0.0" }, "habit-forming": { "pos": "a", "pol": "0.5", "std": "0.0" }, "haleness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "hallow": { "pos": "v", "pol": "0.5", "std": "0.0" }, "hammy": { "pos": "a", "pol": "0.5", "std": "0.0" }, "hand clapping": { "pos": "n", "pol": "0.5", "std": "0.0" }, "handclap": { "pos": "n", "pol": "0.5", "std": "0.0" }, "hands-on": { "pos": "a", "pol": "0.5", "std": "0.0" }, "hard-nosed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "health food": { "pos": "n", "pol": "0.5", "std": "0.0" }, "hearing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "heartwarming": { "pos": "a", "pol": "0.5", "std": "0.0" }, "hearty": { "pos": "a", "pol": "0.5", "std": "0.163" }, "heed": { "pos": "n", "pol": "0.5", "std": "0.0" }, "heedfully": { "pos": "r", "pol": "0.5", "std": "0.0" }, "helpfully": { "pos": "r", "pol": "0.5", "std": "0.0" }, "hermitic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "high-powered": { "pos": "a", "pol": "0.5", "std": "0.0" }, "high-principled": { "pos": "a", "pol": "0.5", "std": "0.0" }, "high-tension": { "pos": "a", "pol": "0.5", "std": "0.0" }, "high status": { "pos": "n", "pol": "0.5", "std": "0.0" }, "higher up": { "pos": "r", "pol": "0.5", "std": "0.0" }, "histrionic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "home-brewed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "home-cured": { "pos": "a", "pol": "0.5", "std": "0.0" }, "homeopathy": { "pos": "n", "pol": "0.5", "std": "0.0" }, "homoeopathy": { "pos": "n", "pol": "0.5", "std": "0.0" }, "honestness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "honeyed": { "pos": "a", "pol": "0.5", "std": "0.53" }, "horse sense": { "pos": "n", "pol": "0.5", "std": "0.0" }, "hortative": { "pos": "a", "pol": "0.5", "std": "0.0" }, "hortatory": { "pos": "a", "pol": "0.5", "std": "0.0" }, "hospitality": { "pos": "n", "pol": "0.5", "std": "0.0" }, "hot war": { "pos": "n", "pol": "0.5", "std": "0.0" }, "house-to-house": { "pos": "a", "pol": "0.5", "std": "0.0" }, "huge": { "pos": "a", "pol": "0.5", "std": "0.0" }, "humorously": { "pos": "r", "pol": "0.5", "std": "0.0" }, "hurried": { "pos": "a", "pol": "0.5", "std": "0.0" }, "hypnotised": { "pos": "a", "pol": "0.5", "std": "0.0" }, "hypnotized": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ice-free": { "pos": "a", "pol": "0.5", "std": "0.0" }, "idolised": { "pos": "a", "pol": "0.5", "std": "0.0" }, "idolized": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ignescent": { "pos": "a", "pol": "0.5", "std": "0.0" }, "immense": { "pos": "a", "pol": "0.5", "std": "0.0" }, "immunocompetent": { "pos": "a", "pol": "0.5", "std": "0.0" }, "impellent": { "pos": "a", "pol": "0.5", "std": "0.0" }, "importunate": { "pos": "a", "pol": "0.5", "std": "0.0" }, "imposingly": { "pos": "r", "pol": "0.5", "std": "0.0" }, "impressible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "impressionable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "impressive": { "pos": "a", "pol": "0.5", "std": "0.088" }, "impressively": { "pos": "r", "pol": "0.5", "std": "0.0" }, "improving": { "pos": "a", "pol": "0.5", "std": "0.0" }, "in-chief": { "pos": "a", "pol": "0.5", "std": "0.0" }, "in a higher place": { "pos": "r", "pol": "0.5", "std": "0.0" }, "in order": { "pos": "a", "pol": "0.5", "std": "0.0" }, "incorruption": { "pos": "n", "pol": "0.5", "std": "0.0" }, "incorruptness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "indefatigable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "inebriated": { "pos": "a", "pol": "0.5", "std": "0.0" }, "inflatable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "influential": { "pos": "a", "pol": "0.5", "std": "0.0" }, "inlaid": { "pos": "a", "pol": "0.5", "std": "0.0" }, "inpatient": { "pos": "n", "pol": "0.5", "std": "0.0" }, "insightful": { "pos": "a", "pol": "0.5", "std": "0.0" }, "insolvent": { "pos": "a", "pol": "0.5", "std": "0.0" }, "integrating": { "pos": "n", "pol": "0.5", "std": "0.0" }, "intellectual": { "pos": "a", "pol": "0.5", "std": "0.315" }, "intended": { "pos": "a", "pol": "0.5", "std": "0.177" }, "interactional": { "pos": "a", "pol": "0.5", "std": "0.0" }, "interestingly": { "pos": "r", "pol": "0.5", "std": "0.0" }, "introversive": { "pos": "a", "pol": "0.5", "std": "0.0" }, "introvertive": { "pos": "a", "pol": "0.5", "std": "0.0" }, "inured": { "pos": "a", "pol": "0.5", "std": "0.0" }, "invaluable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "invigorated": { "pos": "a", "pol": "0.5", "std": "0.0" }, "invigorating": { "pos": "a", "pol": "0.5", "std": "0.0" }, "inviolate": { "pos": "a", "pol": "0.5", "std": "0.088" }, "invitatory": { "pos": "a", "pol": "0.5", "std": "0.0" }, "inviting": { "pos": "a", "pol": "0.5", "std": "0.0" }, "inwrought": { "pos": "a", "pol": "0.5", "std": "0.0" }, "irremediable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "jeweled": { "pos": "a", "pol": "0.5", "std": "0.0" }, "jewelled": { "pos": "a", "pol": "0.5", "std": "0.0" }, "jimdandy": { "pos": "n", "pol": "0.5", "std": "0.0" }, "jimhickey": { "pos": "n", "pol": "0.5", "std": "0.0" }, "judicable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "keep track": { "pos": "v", "pol": "0.5", "std": "0.0" }, "key": { "pos": "a", "pol": "0.5", "std": "0.0" }, "kind-hearted": { "pos": "a", "pol": "0.5", "std": "0.0" }, "kindhearted": { "pos": "a", "pol": "0.5", "std": "0.0" }, "knockout": { "pos": "a", "pol": "0.5", "std": "0.0" }, "knowingly": { "pos": "r", "pol": "0.5", "std": "0.0" }, "kudos": { "pos": "n", "pol": "0.5", "std": "0.0" }, "laborsaving": { "pos": "a", "pol": "0.5", "std": "0.0" }, "laboursaving": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ladened": { "pos": "a", "pol": "0.5", "std": "0.0" }, "landscaped": { "pos": "a", "pol": "0.5", "std": "0.0" }, "large-minded": { "pos": "a", "pol": "0.5", "std": "0.0" }, "laud": { "pos": "v", "pol": "0.5", "std": "0.0" }, "laudator": { "pos": "n", "pol": "0.5", "std": "0.0" }, "lauder": { "pos": "n", "pol": "0.5", "std": "0.0" }, "lawfully": { "pos": "r", "pol": "0.5", "std": "0.088" }, "lawfully-begotten": { "pos": "a", "pol": "0.5", "std": "0.0" }, "legality": { "pos": "n", "pol": "0.5", "std": "0.0" }, "legged": { "pos": "a", "pol": "0.5", "std": "0.0" }, "legible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "lend oneself": { "pos": "v", "pol": "0.5", "std": "0.0" }, "light-blue": { "pos": "a", "pol": "0.5", "std": "0.0" }, "light-footed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "limbed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "load-bearing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "loan": { "pos": "v", "pol": "0.5", "std": "0.0" }, "long-dated": { "pos": "a", "pol": "0.5", "std": "0.0" }, "loungewear": { "pos": "n", "pol": "0.5", "std": "0.0" }, "loved": { "pos": "a", "pol": "0.5", "std": "0.0" }, "loveliness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "lucidness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "lucrativeness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "lucullan": { "pos": "a", "pol": "0.5", "std": "0.0" }, "lustful": { "pos": "a", "pol": "0.5", "std": "0.0" }, "lyricality": { "pos": "n", "pol": "0.5", "std": "0.0" }, "macro": { "pos": "a", "pol": "0.5", "std": "0.0" }, "maestro": { "pos": "n", "pol": "0.5", "std": "0.0" }, "magniloquent": { "pos": "a", "pol": "0.5", "std": "0.0" }, "make full": { "pos": "v", "pol": "0.5", "std": "0.0" }, "make hay": { "pos": "v", "pol": "0.5", "std": "0.0" }, "make relaxed": { "pos": "v", "pol": "0.5", "std": "0.0" }, "malleable": { "pos": "a", "pol": "0.5", "std": "0.265" }, "maneuverable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "manoeuvrable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "marginal utility": { "pos": "n", "pol": "0.5", "std": "0.0" }, "marksmanship": { "pos": "n", "pol": "0.5", "std": "0.0" }, "marriageable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "master": { "pos": "a", "pol": "0.5", "std": "0.0" }, "matched": { "pos": "a", "pol": "0.5", "std": "0.088" }, "matured": { "pos": "a", "pol": "0.5", "std": "0.0" }, "medicative": { "pos": "a", "pol": "0.5", "std": "0.0" }, "medicinal": { "pos": "a", "pol": "0.5", "std": "0.0" }, "mental ability": { "pos": "n", "pol": "0.5", "std": "0.0" }, "mental balance": { "pos": "n", "pol": "0.5", "std": "0.0" }, "mental health": { "pos": "n", "pol": "0.5", "std": "0.0" }, "mental soundness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "merit": { "pos": "n", "pol": "0.438", "std": "0.265" }, "mesmerised": { "pos": "a", "pol": "0.5", "std": "0.0" }, "mesmerized": { "pos": "a", "pol": "0.5", "std": "0.0" }, "mild-mannered": { "pos": "a", "pol": "0.5", "std": "0.0" }, "mincing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "mindful": { "pos": "a", "pol": "0.5", "std": "0.0" }, "mindfully": { "pos": "r", "pol": "0.5", "std": "0.0" }, "ministrant": { "pos": "a", "pol": "0.5", "std": "0.0" }, "mint": { "pos": "a", "pol": "0.5", "std": "0.0" }, "miscible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "mismate": { "pos": "v", "pol": "0.5", "std": "0.0" }, "mistakable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "mistrustfully": { "pos": "r", "pol": "0.5", "std": "0.0" }, "mixable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "modernised": { "pos": "a", "pol": "0.5", "std": "0.0" }, "modernized": { "pos": "a", "pol": "0.5", "std": "0.0" }, "monastic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "monastical": { "pos": "a", "pol": "0.5", "std": "0.0" }, "moral": { "pos": "a", "pol": "0.5", "std": "0.088" }, "mother wit": { "pos": "n", "pol": "0.5", "std": "0.0" }, "motile": { "pos": "a", "pol": "0.5", "std": "0.0" }, "motivated": { "pos": "a", "pol": "0.5", "std": "0.0" }, "moveable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "muggins": { "pos": "n", "pol": "0.5", "std": "0.0" }, "must": { "pos": "a", "pol": "0.5", "std": "0.0" }, "myopia": { "pos": "n", "pol": "0.5", "std": "0.0" }, "narcism": { "pos": "n", "pol": "0.5", "std": "0.0" }, "narcissism": { "pos": "n", "pol": "0.5", "std": "0.0" }, "nationwide": { "pos": "a", "pol": "0.5", "std": "0.0" }, "natty": { "pos": "a", "pol": "0.5", "std": "0.0" }, "nearsightedness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "neighborliness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "neighbourliness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "neutralised": { "pos": "a", "pol": "0.5", "std": "0.0" }, "neutralized": { "pos": "a", "pol": "0.5", "std": "0.0" }, "newsworthy": { "pos": "a", "pol": "0.5", "std": "0.0" }, "nightlong": { "pos": "a", "pol": "0.5", "std": "0.0" }, "nimble": { "pos": "a", "pol": "0.5", "std": "0.088" }, "niminy-piminy": { "pos": "a", "pol": "0.5", "std": "0.0" }, "nonbelligerent": { "pos": "a", "pol": "0.5", "std": "0.0" }, "nonpartisan": { "pos": "n", "pol": "0.375", "std": "0.0" }, "nonpartizan": { "pos": "n", "pol": "0.375", "std": "0.0" }, "nosed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "noticeable": { "pos": "a", "pol": "0.5", "std": "0.072" }, "nourished": { "pos": "a", "pol": "0.5", "std": "0.0" }, "novel": { "pos": "a", "pol": "0.5", "std": "0.088" }, "nubile": { "pos": "a", "pol": "0.5", "std": "0.0" }, "numerate": { "pos": "a", "pol": "0.5", "std": "0.0" }, "nut-bearing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "obedient": { "pos": "a", "pol": "0.5", "std": "0.0" }, "observing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "obtainable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "oecumenical": { "pos": "a", "pol": "0.5", "std": "0.088" }, "of sound mind": { "pos": "a", "pol": "0.5", "std": "0.0" }, "of the essence": { "pos": "a", "pol": "0.5", "std": "0.0" }, "old-time": { "pos": "a", "pol": "0.5", "std": "0.0" }, "olde worlde": { "pos": "a", "pol": "0.5", "std": "0.0" }, "omissible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "on faith": { "pos": "r", "pol": "0.5", "std": "0.0" }, "on hand": { "pos": "a", "pol": "0.5", "std": "0.0" }, "on the qui vive": { "pos": "n", "pol": "0.5", "std": "0.0" }, "one-handed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "open-and-shut": { "pos": "a", "pol": "0.5", "std": "0.0" }, "open-minded": { "pos": "a", "pol": "0.5", "std": "0.0" }, "openhanded": { "pos": "a", "pol": "0.5", "std": "0.0" }, "opportunely": { "pos": "r", "pol": "0.5", "std": "0.0" }, "opposable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "orientate": { "pos": "v", "pol": "0.5", "std": "0.0" }, "orientating": { "pos": "a", "pol": "0.5", "std": "0.0" }, "orienting": { "pos": "a", "pol": "0.5", "std": "0.0" }, "orthotropous": { "pos": "a", "pol": "0.5", "std": "0.0" }, "otherworldliness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "out-and-outer": { "pos": "n", "pol": "0.5", "std": "0.0" }, "outdoorsy": { "pos": "a", "pol": "0.5", "std": "0.0" }, "oven-ready": { "pos": "a", "pol": "0.5", "std": "0.0" }, "overambitious": { "pos": "a", "pol": "0.5", "std": "0.0" }, "overconfident": { "pos": "a", "pol": "0.5", "std": "0.0" }, "overdress": { "pos": "v", "pol": "0.5", "std": "0.177" }, "overfed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "overindulgent": { "pos": "a", "pol": "0.5", "std": "0.0" }, "overlook": { "pos": "n", "pol": "0.5", "std": "0.0" }, "overnight": { "pos": "a", "pol": "0.5", "std": "0.0" }, "overpraise": { "pos": "v", "pol": "0.5", "std": "0.0" }, "overrate": { "pos": "v", "pol": "0.5", "std": "0.0" }, "overt": { "pos": "a", "pol": "0.5", "std": "0.0" }, "owlish": { "pos": "a", "pol": "0.5", "std": "0.0" }, "palatable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "pale blue": { "pos": "a", "pol": "0.5", "std": "0.0" }, "paneled": { "pos": "a", "pol": "0.5", "std": "0.0" }, "panoptic": { "pos": "a", "pol": "0.5", "std": "0.177" }, "paperboard": { "pos": "n", "pol": "0.5", "std": "0.0" }, "par excellence": { "pos": "r", "pol": "0.5", "std": "0.0" }, "parlor game": { "pos": "n", "pol": "0.5", "std": "0.0" }, "parlour game": { "pos": "n", "pol": "0.5", "std": "0.0" }, "participatory": { "pos": "a", "pol": "0.5", "std": "0.0" }, "particularised": { "pos": "a", "pol": "0.5", "std": "0.0" }, "particularized": { "pos": "a", "pol": "0.5", "std": "0.0" }, "patriotic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "pawky": { "pos": "a", "pol": "0.5", "std": "0.0" }, "paying": { "pos": "a", "pol": "0.5", "std": "0.177" }, "paying attention": { "pos": "n", "pol": "0.5", "std": "0.0" }, "pensionable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "pent": { "pos": "a", "pol": "0.5", "std": "0.0" }, "perfect": { "pos": "v", "pol": "0.375", "std": "0.0" }, "perfectly": { "pos": "r", "pol": "0.5", "std": "0.442" }, "permissiveness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "persevering": { "pos": "a", "pol": "0.5", "std": "0.0" }, "persuasive": { "pos": "a", "pol": "0.5", "std": "0.0" }, "philanthropic": { "pos": "a", "pol": "0.5", "std": "0.619" }, "pinkish": { "pos": "a", "pol": "0.5", "std": "0.0" }, "piquant": { "pos": "a", "pol": "0.5", "std": "0.191" }, "pithy": { "pos": "a", "pol": "0.5", "std": "0.0" }, "placating": { "pos": "a", "pol": "0.5", "std": "0.0" }, "placative": { "pos": "a", "pol": "0.5", "std": "0.0" }, "placatory": { "pos": "a", "pol": "0.5", "std": "0.0" }, "plaudit": { "pos": "n", "pol": "0.5", "std": "0.0" }, "plaudits": { "pos": "n", "pol": "0.5", "std": "0.0" }, "plausibly": { "pos": "r", "pol": "0.5", "std": "0.0" }, "playful": { "pos": "a", "pol": "0.5", "std": "0.0" }, "pleasantly": { "pos": "r", "pol": "0.5", "std": "0.0" }, "pleasantry": { "pos": "n", "pol": "0.5", "std": "0.0" }, "pleaser": { "pos": "n", "pol": "0.5", "std": "0.0" }, "pliant": { "pos": "a", "pol": "0.5", "std": "0.331" }, "plump": { "pos": "a", "pol": "0.5", "std": "0.0" }, "plump for": { "pos": "v", "pol": "0.5", "std": "0.0" }, "plumping": { "pos": "a", "pol": "0.5", "std": "0.0" }, "plunk for": { "pos": "v", "pol": "0.5", "std": "0.0" }, "plush": { "pos": "a", "pol": "0.5", "std": "0.0" }, "politeness": { "pos": "n", "pol": "0.5", "std": "0.177" }, "pomaded": { "pos": "a", "pol": "0.5", "std": "0.0" }, "pornographic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "poster board": { "pos": "n", "pol": "0.5", "std": "0.0" }, "powered": { "pos": "a", "pol": "0.5", "std": "0.0" }, "powerfulness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "practicable": { "pos": "a", "pol": "0.5", "std": "0.088" }, "praisworthiness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "prayerful": { "pos": "a", "pol": "0.5", "std": "0.0" }, "preachy": { "pos": "a", "pol": "0.5", "std": "0.0" }, "preciseness": { "pos": "n", "pol": "0.5", "std": "0.177" }, "preferred": { "pos": "a", "pol": "0.5", "std": "0.177" }, "presumptive": { "pos": "a", "pol": "0.5", "std": "0.0" }, "priceless": { "pos": "a", "pol": "0.5", "std": "0.0" }, "prima": { "pos": "a", "pol": "0.5", "std": "0.0" }, "prima facie": { "pos": "a", "pol": "0.5", "std": "0.0" }, "princely": { "pos": "a", "pol": "0.5", "std": "0.177" }, "principal": { "pos": "a", "pol": "0.5", "std": "0.0" }, "principled": { "pos": "a", "pol": "0.5", "std": "0.0" }, "prissy": { "pos": "a", "pol": "0.5", "std": "0.177" }, "pro bono": { "pos": "a", "pol": "0.5", "std": "0.0" }, "probative": { "pos": "a", "pol": "0.5", "std": "0.0" }, "probatory": { "pos": "a", "pol": "0.5", "std": "0.0" }, "procurable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "productiveness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "profitability": { "pos": "n", "pol": "0.5", "std": "0.0" }, "profuse": { "pos": "a", "pol": "0.5", "std": "0.0" }, "propellant": { "pos": "a", "pol": "0.5", "std": "0.0" }, "propellent": { "pos": "a", "pol": "0.5", "std": "0.0" }, "propelling": { "pos": "a", "pol": "0.5", "std": "0.0" }, "propitious": { "pos": "a", "pol": "0.5", "std": "0.0" }, "propitiousness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "protrusible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "protrusile": { "pos": "a", "pol": "0.5", "std": "0.0" }, "proved": { "pos": "a", "pol": "0.5", "std": "0.0" }, "proven": { "pos": "a", "pol": "0.5", "std": "0.0" }, "provident": { "pos": "a", "pol": "0.5", "std": "0.088" }, "prowess": { "pos": "n", "pol": "0.5", "std": "0.0" }, "proximal": { "pos": "a", "pol": "0.5", "std": "0.0" }, "prudential": { "pos": "a", "pol": "0.5", "std": "0.0" }, "prudently": { "pos": "r", "pol": "0.5", "std": "0.0" }, "prurient": { "pos": "a", "pol": "0.5", "std": "0.0" }, "public-spirited": { "pos": "a", "pol": "0.5", "std": "0.0" }, "publishable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "pucka": { "pos": "a", "pol": "0.5", "std": "0.0" }, "pukka": { "pos": "a", "pol": "0.5", "std": "0.0" }, "purpose-built": { "pos": "a", "pol": "0.5", "std": "0.0" }, "purpose-made": { "pos": "a", "pol": "0.5", "std": "0.0" }, "purposeful": { "pos": "a", "pol": "0.5", "std": "0.177" }, "quality": { "pos": "a", "pol": "0.5", "std": "0.354" }, "quantifiable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "quasi-religious": { "pos": "a", "pol": "0.5", "std": "0.0" }, "racy": { "pos": "a", "pol": "0.5", "std": "0.063" }, "raisable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "raiseable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rapid": { "pos": "a", "pol": "0.5", "std": "0.177" }, "raspberry-red": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ratifier": { "pos": "n", "pol": "0.5", "std": "0.0" }, "rationally": { "pos": "r", "pol": "0.5", "std": "0.0" }, "reachable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ready and waiting": { "pos": "a", "pol": "0.5", "std": "0.0" }, "reasoning": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rechargeable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "recognizable": { "pos": "a", "pol": "0.5", "std": "0.088" }, "recollect": { "pos": "v", "pol": "0.5", "std": "0.0" }, "reconcilable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "recoverable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rectifiable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rectitude": { "pos": "n", "pol": "0.5", "std": "0.0" }, "red-blooded": { "pos": "a", "pol": "0.5", "std": "0.0" }, "redeemable": { "pos": "a", "pol": "0.5", "std": "0.191" }, "reflective": { "pos": "a", "pol": "0.5", "std": "0.125" }, "reformative": { "pos": "a", "pol": "0.5", "std": "0.0" }, "reformatory": { "pos": "n", "pol": "0.25", "std": "0.0" }, "refreshed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "refreshen": { "pos": "v", "pol": "0.5", "std": "0.177" }, "refurbishment": { "pos": "n", "pol": "0.5", "std": "0.0" }, "regent": { "pos": "a", "pol": "0.5", "std": "0.0" }, "regulation": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rehabilitation program": { "pos": "n", "pol": "0.5", "std": "0.0" }, "reinvigorated": { "pos": "a", "pol": "0.5", "std": "0.0" }, "remunerative": { "pos": "a", "pol": "0.5", "std": "0.177" }, "renewing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rentable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "reparable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "repetitious": { "pos": "a", "pol": "0.5", "std": "0.0" }, "replete": { "pos": "v", "pol": "0.375", "std": "0.0" }, "reply-paid": { "pos": "a", "pol": "0.5", "std": "0.0" }, "representable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "repute": { "pos": "n", "pol": "0.5", "std": "0.0" }, "rested": { "pos": "a", "pol": "0.5", "std": "0.0" }, "restricting": { "pos": "a", "pol": "0.5", "std": "0.0" }, "retained": { "pos": "a", "pol": "0.5", "std": "0.0" }, "retractable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "retrousse": { "pos": "a", "pol": "0.5", "std": "0.0" }, "revitalised": { "pos": "a", "pol": "0.5", "std": "0.0" }, "revitalising": { "pos": "a", "pol": "0.5", "std": "0.0" }, "revitalized": { "pos": "a", "pol": "0.5", "std": "0.0" }, "revitalizing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "revived": { "pos": "a", "pol": "0.5", "std": "0.088" }, "reviving": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rewardful": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rewarding": { "pos": "a", "pol": "0.5", "std": "0.0" }, "right-eyed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rightfulness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "rimmed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ripened": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rivalry": { "pos": "n", "pol": "0.5", "std": "0.0" }, "riveting": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rotatable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "round-eyed": { "pos": "a", "pol": "0.5", "std": "0.177" }, "sacrosanct": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sagely": { "pos": "r", "pol": "0.5", "std": "0.0" }, "salable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "saleable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sanction": { "pos": "n", "pol": "0.281", "std": "0.12" }, "sanctioning": { "pos": "a", "pol": "0.5", "std": "0.0" }, "saphead": { "pos": "n", "pol": "0.5", "std": "0.0" }, "sapient": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sapiential": { "pos": "a", "pol": "0.5", "std": "0.0" }, "saving": { "pos": "a", "pol": "0.5", "std": "0.177" }, "savoir-faire": { "pos": "n", "pol": "0.5", "std": "0.0" }, "scholarly": { "pos": "a", "pol": "0.5", "std": "0.0" }, "schoolwide": { "pos": "a", "pol": "0.5", "std": "0.0" }, "scintillant": { "pos": "a", "pol": "0.5", "std": "0.0" }, "seamanlike": { "pos": "a", "pol": "0.5", "std": "0.0" }, "seamanly": { "pos": "a", "pol": "0.5", "std": "0.0" }, "seamanship": { "pos": "n", "pol": "0.5", "std": "0.0" }, "secret approval": { "pos": "n", "pol": "0.5", "std": "0.0" }, "seeable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "selected": { "pos": "a", "pol": "0.5", "std": "0.0" }, "self-luminous": { "pos": "a", "pol": "0.5", "std": "0.0" }, "self-regard": { "pos": "n", "pol": "0.5", "std": "0.0" }, "self-respect": { "pos": "n", "pol": "0.5", "std": "0.0" }, "self-sufficient": { "pos": "a", "pol": "0.5", "std": "0.0" }, "self-sufficing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "self-sustaining": { "pos": "a", "pol": "0.5", "std": "0.0" }, "self-worth": { "pos": "n", "pol": "0.5", "std": "0.0" }, "semiprecious": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sensibleness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "septicemic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sequined": { "pos": "a", "pol": "0.5", "std": "0.0" }, "seraphic": { "pos": "a", "pol": "0.5", "std": "0.619" }, "serviceability": { "pos": "n", "pol": "0.5", "std": "0.0" }, "serviceableness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "set-apart": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sex-starved": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sexed": { "pos": "a", "pol": "0.5", "std": "0.177" }, "sexually attractive": { "pos": "a", "pol": "0.5", "std": "0.0" }, "shameless": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sharp-nosed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sharp-set": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sheathed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "shew": { "pos": "v", "pol": "0.5", "std": "0.0" }, "shine at": { "pos": "v", "pol": "0.5", "std": "0.0" }, "shockable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "short-dated": { "pos": "a", "pol": "0.5", "std": "0.0" }, "shrinkable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "shut up": { "pos": "a", "pol": "0.5", "std": "0.0" }, "signal": { "pos": "a", "pol": "0.5", "std": "0.0" }, "silver-green": { "pos": "a", "pol": "0.5", "std": "0.0" }, "silver-tongued": { "pos": "a", "pol": "0.5", "std": "0.0" }, "singable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "skilfully": { "pos": "r", "pol": "0.5", "std": "0.0" }, "skillfully": { "pos": "r", "pol": "0.5", "std": "0.0" }, "sky-blue": { "pos": "n", "pol": "0.25", "std": "0.0" }, "slapstick": { "pos": "a", "pol": "0.5", "std": "0.0" }, "slashing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "slumbery": { "pos": "a", "pol": "0.5", "std": "0.0" }, "smooth-spoken": { "pos": "a", "pol": "0.5", "std": "0.0" }, "snail mail": { "pos": "n", "pol": "0.5", "std": "0.0" }, "so-so": { "pos": "r", "pol": "0.5", "std": "0.0" }, "soigne": { "pos": "a", "pol": "0.5", "std": "0.0" }, "soignee": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sold": { "pos": "a", "pol": "0.5", "std": "0.0" }, "solvable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "somatic": { "pos": "a", "pol": "0.5", "std": "0.0" }, "somnolent": { "pos": "a", "pol": "0.5", "std": "0.0" }, "songful": { "pos": "a", "pol": "0.5", "std": "0.0" }, "songfulness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "sonsie": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sonsy": { "pos": "a", "pol": "0.5", "std": "0.0" }, "soul-stirring": { "pos": "a", "pol": "0.5", "std": "0.0" }, "soulful": { "pos": "a", "pol": "0.5", "std": "0.0" }, "spangled": { "pos": "a", "pol": "0.5", "std": "0.0" }, "spangly": { "pos": "a", "pol": "0.5", "std": "0.0" }, "spanking": { "pos": "a", "pol": "0.5", "std": "0.0" }, "speaking": { "pos": "a", "pol": "0.5", "std": "0.0" }, "specialised": { "pos": "a", "pol": "0.5", "std": "0.0" }, "specialized": { "pos": "a", "pol": "0.5", "std": "0.0" }, "specifically": { "pos": "r", "pol": "0.5", "std": "0.0" }, "spell-bound": { "pos": "a", "pol": "0.5", "std": "0.0" }, "spellbound": { "pos": "a", "pol": "0.5", "std": "0.0" }, "spendable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "spiffy": { "pos": "a", "pol": "0.5", "std": "0.0" }, "spiritism": { "pos": "n", "pol": "0.5", "std": "0.0" }, "sportsmanlike": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sprightly": { "pos": "a", "pol": "0.5", "std": "0.0" }, "springy": { "pos": "a", "pol": "0.5", "std": "0.0" }, "spruce": { "pos": "v", "pol": "0.313", "std": "0.0" }, "spry": { "pos": "a", "pol": "0.5", "std": "0.0" }, "square-built": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sr.": { "pos": "a", "pol": "0.5", "std": "0.0" }, "stabilising": { "pos": "a", "pol": "0.5", "std": "0.0" }, "stability": { "pos": "n", "pol": "0.5", "std": "0.072" }, "stabilizing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "stand-alone": { "pos": "a", "pol": "0.5", "std": "0.0" }, "staple": { "pos": "v", "pol": "0.5", "std": "0.0" }, "star": { "pos": "a", "pol": "0.5", "std": "0.0" }, "starring": { "pos": "a", "pol": "0.5", "std": "0.0" }, "stated": { "pos": "a", "pol": "0.5", "std": "0.0" }, "statesmanlike": { "pos": "a", "pol": "0.5", "std": "0.0" }, "statesmanly": { "pos": "a", "pol": "0.5", "std": "0.0" }, "steerable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "stimulative": { "pos": "a", "pol": "0.5", "std": "0.0" }, "stout": { "pos": "a", "pol": "0.5", "std": "0.289" }, "straight-legged": { "pos": "a", "pol": "0.5", "std": "0.0" }, "stretchable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "stretchy": { "pos": "a", "pol": "0.5", "std": "0.0" }, "strong suit": { "pos": "n", "pol": "0.5", "std": "0.53" }, "studious": { "pos": "a", "pol": "0.5", "std": "0.088" }, "suasion": { "pos": "n", "pol": "0.5", "std": "0.0" }, "subedit": { "pos": "v", "pol": "0.5", "std": "0.0" }, "subjective": { "pos": "a", "pol": "0.5", "std": "0.177" }, "sublimate": { "pos": "a", "pol": "0.5", "std": "0.0" }, "submergible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "submersible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "submissive": { "pos": "a", "pol": "0.5", "std": "0.088" }, "subsidised": { "pos": "a", "pol": "0.5", "std": "0.0" }, "subsidized": { "pos": "a", "pol": "0.5", "std": "0.0" }, "subsist": { "pos": "v", "pol": "0.5", "std": "0.0" }, "substantiality": { "pos": "n", "pol": "0.5", "std": "0.0" }, "substantialness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "summum bonum": { "pos": "n", "pol": "0.5", "std": "0.0" }, "sunnily": { "pos": "r", "pol": "0.5", "std": "0.0" }, "suprasegmental": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sweet-faced": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sweetish": { "pos": "a", "pol": "0.5", "std": "0.0" }, "swordsmanship": { "pos": "n", "pol": "0.5", "std": "0.0" }, "symmetricalness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "sync": { "pos": "v", "pol": "0.5", "std": "0.0" }, "tacit consent": { "pos": "n", "pol": "0.5", "std": "0.0" }, "tact": { "pos": "n", "pol": "0.5", "std": "0.0" }, "tactfulness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "take kindly to": { "pos": "v", "pol": "0.5", "std": "0.0" }, "tapestried": { "pos": "a", "pol": "0.5", "std": "0.0" }, "tastefulness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "telltale": { "pos": "a", "pol": "0.5", "std": "0.0" }, "tempering": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tendencious": { "pos": "a", "pol": "0.5", "std": "0.0" }, "tendentious": { "pos": "a", "pol": "0.5", "std": "0.0" }, "textbook": { "pos": "a", "pol": "0.5", "std": "0.0" }, "thinking": { "pos": "n", "pol": "0.375", "std": "0.0" }, "three-needled": { "pos": "a", "pol": "0.5", "std": "0.0" }, "tickling": { "pos": "a", "pol": "0.5", "std": "0.0" }, "tight-fitting": { "pos": "a", "pol": "0.5", "std": "0.0" }, "tight fitting": { "pos": "a", "pol": "0.5", "std": "0.0" }, "tightfitting": { "pos": "a", "pol": "0.5", "std": "0.0" }, "tightly fitting": { "pos": "a", "pol": "0.5", "std": "0.0" }, "tillable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "time-tested": { "pos": "a", "pol": "0.5", "std": "0.0" }, "timeliness": { "pos": "n", "pol": "0.5", "std": "0.354" }, "tingling": { "pos": "a", "pol": "0.5", "std": "0.0" }, "tip-tilted": { "pos": "a", "pol": "0.5", "std": "0.0" }, "to a higher place": { "pos": "r", "pol": "0.5", "std": "0.0" }, "tolerably": { "pos": "r", "pol": "0.5", "std": "0.0" }, "tomfool": { "pos": "n", "pol": "0.5", "std": "0.0" }, "tonicity": { "pos": "n", "pol": "0.5", "std": "0.0" }, "tonus": { "pos": "n", "pol": "0.5", "std": "0.0" }, "topknotted": { "pos": "a", "pol": "0.5", "std": "0.0" }, "touristed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "touristy": { "pos": "a", "pol": "0.5", "std": "0.0" }, "transfixed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "transitive": { "pos": "a", "pol": "0.5", "std": "0.0" }, "transmittable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "transplantable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "transportable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "trendy": { "pos": "a", "pol": "0.5", "std": "0.0" }, "tricked-out": { "pos": "a", "pol": "0.5", "std": "0.0" }, "tried and true": { "pos": "a", "pol": "0.5", "std": "0.0" }, "true to": { "pos": "a", "pol": "0.5", "std": "0.0" }, "trumpet-like": { "pos": "a", "pol": "0.5", "std": "0.0" }, "trustful": { "pos": "a", "pol": "0.5", "std": "0.0" }, "trusting": { "pos": "a", "pol": "0.5", "std": "0.0" }, "truthfully": { "pos": "r", "pol": "0.5", "std": "0.0" }, "truthfulness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "tuneful": { "pos": "a", "pol": "0.5", "std": "0.0" }, "twee": { "pos": "a", "pol": "0.5", "std": "0.0" }, "twinkling": { "pos": "a", "pol": "0.5", "std": "0.0" }, "two-handed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "two-needled": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ultramarine": { "pos": "a", "pol": "0.5", "std": "0.0" }, "umbrella": { "pos": "a", "pol": "0.5", "std": "0.0" }, "unambiguity": { "pos": "n", "pol": "0.5", "std": "0.0" }, "unblushing": { "pos": "a", "pol": "0.5", "std": "0.0" }, "unco": { "pos": "r", "pol": "0.5", "std": "0.0" }, "uncompress": { "pos": "v", "pol": "0.5", "std": "0.0" }, "unconstrained": { "pos": "a", "pol": "0.5", "std": "0.0" }, "undamaged": { "pos": "a", "pol": "0.5", "std": "0.0" }, "under wraps": { "pos": "a", "pol": "0.5", "std": "0.0" }, "unequivocalness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "unfasten": { "pos": "v", "pol": "0.5", "std": "0.0" }, "unhesitating": { "pos": "a", "pol": "0.5", "std": "0.0" }, "unimpassioned": { "pos": "a", "pol": "0.5", "std": "0.0" }, "unimprisoned": { "pos": "a", "pol": "0.5", "std": "0.0" }, "universal agent": { "pos": "n", "pol": "0.5", "std": "0.0" }, "unknot": { "pos": "v", "pol": "0.5", "std": "0.0" }, "unlax": { "pos": "v", "pol": "0.5", "std": "0.0" }, "unpaid worker": { "pos": "n", "pol": "0.5", "std": "0.0" }, "unpolluted": { "pos": "a", "pol": "0.5", "std": "0.0" }, "unprejudiced": { "pos": "a", "pol": "0.5", "std": "0.0" }, "unsecured bond": { "pos": "n", "pol": "0.5", "std": "0.0" }, "unsleeping": { "pos": "a", "pol": "0.5", "std": "0.0" }, "unstilted": { "pos": "a", "pol": "0.5", "std": "0.0" }, "unstrain": { "pos": "v", "pol": "0.5", "std": "0.0" }, "unusually": { "pos": "r", "pol": "0.5", "std": "0.0" }, "unwearying": { "pos": "a", "pol": "0.5", "std": "0.0" }, "up-to-date": { "pos": "a", "pol": "0.5", "std": "0.0" }, "up on": { "pos": "a", "pol": "0.5", "std": "0.0" }, "uplifted": { "pos": "a", "pol": "0.5", "std": "0.0" }, "urbane": { "pos": "a", "pol": "0.5", "std": "0.0" }, "usability": { "pos": "n", "pol": "0.5", "std": "0.0" }, "usableness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "useableness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "useful": { "pos": "a", "pol": "0.5", "std": "0.0" }, "utile": { "pos": "a", "pol": "0.5", "std": "0.0" }, "utiliser": { "pos": "n", "pol": "0.5", "std": "0.0" }, "utilitarianism": { "pos": "n", "pol": "0.5", "std": "0.0" }, "utilizable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "utilizer": { "pos": "n", "pol": "0.5", "std": "0.0" }, "utopia": { "pos": "n", "pol": "0.5", "std": "0.354" }, "uxorious": { "pos": "a", "pol": "0.5", "std": "0.0" }, "validated": { "pos": "a", "pol": "0.5", "std": "0.0" }, "variedness": { "pos": "n", "pol": "0.5", "std": "0.0" }, "vast": { "pos": "a", "pol": "0.5", "std": "0.0" }, "venerable": { "pos": "a", "pol": "0.5", "std": "0.265" }, "veracious": { "pos": "a", "pol": "0.5", "std": "0.088" }, "verified": { "pos": "a", "pol": "0.5", "std": "0.0" }, "vigorous": { "pos": "a", "pol": "0.5", "std": "0.088" }, "visible": { "pos": "a", "pol": "0.5", "std": "0.072" }, "visored": { "pos": "a", "pol": "0.5", "std": "0.0" }, "vitrified": { "pos": "a", "pol": "0.5", "std": "0.0" }, "vivacious": { "pos": "a", "pol": "0.5", "std": "0.0" }, "voluble": { "pos": "a", "pol": "0.5", "std": "0.0" }, "volunteer": { "pos": "n", "pol": "0.375", "std": "0.177" }, "vote of confidence": { "pos": "n", "pol": "0.5", "std": "0.0" }, "wainscoted": { "pos": "a", "pol": "0.5", "std": "0.0" }, "waiting": { "pos": "a", "pol": "0.5", "std": "0.0" }, "wakeless": { "pos": "a", "pol": "0.5", "std": "0.0" }, "wealthy": { "pos": "a", "pol": "0.5", "std": "0.0" }, "weary": { "pos": "a", "pol": "0.5", "std": "0.0" }, "weedless": { "pos": "a", "pol": "0.5", "std": "0.0" }, "welcoming": { "pos": "a", "pol": "0.5", "std": "0.0" }, "welfare": { "pos": "n", "pol": "0.5", "std": "0.382" }, "well-advised": { "pos": "a", "pol": "0.5", "std": "0.0" }, "well-appointed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "well-bound": { "pos": "a", "pol": "0.5", "std": "0.0" }, "well-branched": { "pos": "a", "pol": "0.5", "std": "0.0" }, "well-bred": { "pos": "a", "pol": "0.5", "std": "0.0" }, "well-connected": { "pos": "a", "pol": "0.5", "std": "0.0" }, "well-defined": { "pos": "a", "pol": "0.5", "std": "0.0" }, "well-endowed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "well-fed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "well-fixed": { "pos": "a", "pol": "0.5", "std": "0.0" }, "well-found": { "pos": "a", "pol": "0.5", "std": "0.0" }, "well-heeled": { "pos": "a", "pol": "0.5", "std": "0.0" }, "well-kept": { "pos": "a", "pol": "0.5", "std": "0.088" }, "well-nourished": { "pos": "a", "pol": "0.5", "std": "0.0" }, "well-proportioned": { "pos": "a", "pol": "0.5", "std": "0.0" }, "well-situated": { "pos": "a", "pol": "0.5", "std": "0.0" }, "well-to-do": { "pos": "a", "pol": "0.5", "std": "0.0" }, "whirring": { "pos": "n", "pol": "0.375", "std": "0.0" }, "wieldy": { "pos": "a", "pol": "0.5", "std": "0.0" }, "win over": { "pos": "v", "pol": "0.5", "std": "0.0" }, "wise": { "pos": "a", "pol": "0.5", "std": "0.375" }, "wise to": { "pos": "a", "pol": "0.5", "std": "0.0" }, "wisely": { "pos": "r", "pol": "0.5", "std": "0.0" }, "wittingly": { "pos": "r", "pol": "0.5", "std": "0.0" }, "world-shaking": { "pos": "a", "pol": "0.5", "std": "0.0" }, "world-shattering": { "pos": "a", "pol": "0.5", "std": "0.0" }, "wormlike": { "pos": "a", "pol": "0.5", "std": "0.0" }, "worshipped": { "pos": "a", "pol": "0.5", "std": "0.0" }, "youthful": { "pos": "a", "pol": "0.5", "std": "0.0" }, "abnormal psychology": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "abnormally": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "abrasive": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "abreact": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "absence without leave": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "accurse": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "accursed": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "accurst": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "ace of spades": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "acetoacetic acid": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "act of terrorism": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "acute brain disorder": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "acute organic brain syndrome": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "adipose": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "admonishing": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "adverse": { "pos": "a", "pol": "-0.5", "std": "0.265" }, "afebrile": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "affective disorder": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "aftertaste": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "aghast": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "agitating": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "agitative": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "agnail": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "agonising": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "agonizing": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "agranulocytic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "ailing": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "aimlessness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "airheaded": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "alarmism": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "alarum": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "albuminuria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "algometer": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "alkalemia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "alopecic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "amateurish": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "ambulate": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "anaesthesia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "analphabetism": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "anarchy": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "anathematise": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "anathematize": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "anchylosis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "anergy": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "anesthesia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "anginal": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "anginose": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "anginous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "ankylosis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "annihilation": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "antemortem": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "anti-intellectual": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "antianxiety drug": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "antineoplastic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "antineoplastic drug": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "anxiety hysteria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "anxiolytic": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "anxiolytic drug": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "aortic orifice": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "aphakic": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "aphonia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "apocalypse": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "appalled": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "appellant": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "arm band": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "armlet": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "arsehole": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "arthralgia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "assailability": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "assassinator": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "assaultive": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "assistant professor": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "asthenosphere": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "astraphobia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "at loggerheads": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "attack submarine": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "attacking": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "attrited": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "autocrat": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "awol": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "aztreonam": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "backhander": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "backswimmer": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bad egg": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bafflement": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ball up": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "baritone": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "batrachomyomachia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "battle damage": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "battle of Spotsylvania Courthouse": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "battle royal": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "be at pains": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "beastliness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "beat-up": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "beaten-up": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "beef": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "befuddlement": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "begrimed": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "behind": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "bellyache": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "bemusement": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "beriberi": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "berserk": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "berserker": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "besieged": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "bewilderment": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "biff": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "biohazard suit": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "biserrate": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "black-capped chickadee": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "black and white": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "black bile": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "black buffalo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "blackwater fever": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "blare": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "blaring": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "blench": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "blind person": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "blitz": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "blitzkrieg": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "blood disease": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "blood disorder": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "blow a fuse": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "blow one's stack": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "blue-black": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "blue-white": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "bluish-white": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "bluish black": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "blushing": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "blustering": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "blusterous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "bobble": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "bodge": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "bollix": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "bollix up": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "bollocks": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "bollocks up": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "bolshy": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "booby hatch": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "boor": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "botch": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "botch up": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "botched": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "boxershorts": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "brackish": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "branch out": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "breach of warranty": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "break someone's heart": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "bright side": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bronchitic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "bronchospasm": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "brown-black": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "brown-gray": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "brown-grey": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "browned off": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "brownish-black": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "brownish-gray": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "brownish-grey": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "bruise": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "brunet": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "brush down": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "bucking bronco": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "buffer zone": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bullheaded": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "bungled": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "burgundy": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bursting explosive": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "by luck": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "cacophonic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "cacophonous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "cacophony": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cadaverine": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "caffer": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "caffre": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "call-out": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "calorific": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "calumniation": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cancer drug": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cantankerous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "capital punishment": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "caramel brown": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "caries": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cat": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "cat-o'-nine-tails": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "catastrophic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "cavalier": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "censorious": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "chanceful": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "characterless": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "cheapjack": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cheekiness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cheesed off": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "chemical operations": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "chemical warfare": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "chest register": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "chest tone": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "chest voice": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "chevalier": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "chicken drumstick": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "chicken leg": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "chilliness": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "chip off": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "christless": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "clashing": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "clumsiness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "coarsened": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "cod": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "coldcock": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "coldhearted": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "coldness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "collide": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "combat casualty": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "comedown": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "comminate": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "commit suicide": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "complaining": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "complainingly": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "complaintive": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "complicate": { "pos": "v", "pol": "-0.5", "std": "0.177" }, "complicatedness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "condole": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "conduction deafness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "conductive hearing loss": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "consolable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "constabulary": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "contempt of court": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "contracture": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "conversion disorder": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "conversion hysteria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "conversion reaction": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cool-white": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "copout": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "coronach": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "counterfeit": { "pos": "a", "pol": "0.25", "std": "0.0" }, "countermove": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "counterpreparation fire": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "crabbedness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "crabbiness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "craven": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crazy house": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cretinous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "criminal law": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "criminative": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "criminatory": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "crinkled": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "crinkly": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "cripple": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "croak": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "croaking": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "crone": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "crookback": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "crookbacked": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "crossbones": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "crotchety": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "cruel": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "cruel and unusual punishment": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cuckoo's nest": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cumulonimbus": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cumulonimbus cloud": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cur": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "curse": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "cursed with": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "danger zone": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "daredevil": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dark-haired": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "dark blue": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "darkened": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "dastard": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "dastardly": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "daunting": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "dauntless": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "dead-end": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "deaf as a post": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "deaf person": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "death house": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "death instinct": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "death penalty": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "death row": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "death warrant": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "death wish": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "debilitated": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "default": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "default on": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "defencelessness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "defenselessness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "deleterious": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "delusions of persecution": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "demerara rum": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "demonic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "dental caries": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "depersonalisation disorder": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "depersonalisation neurosis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "depersonalization disorder": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "depersonalization neurosis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "depigmentation": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "deprecate": { "pos": "v", "pol": "-0.5", "std": "0.088" }, "deprecation": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "dermatosis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "desperate straits": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "despot": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "destructibility": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "detrimental": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "devil's food": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "devil's food cake": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "diatribe": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "dicey": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "dilapidate": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "dipped": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "dire straits": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "dirge": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "dirty trick": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "disadvantage": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "disarray": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "disconcerting": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "discourtesy": { "pos": "n", "pol": "-0.5", "std": "0.144" }, "discredit": { "pos": "v", "pol": "-0.5", "std": "0.072" }, "disdainful": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "disentangled": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "disfavor": { "pos": "n", "pol": "0.313", "std": "0.088" }, "disfavour": { "pos": "n", "pol": "0.313", "std": "0.088" }, "disgruntle": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "dishonourable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "dislogistic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "dismayed": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "disreputability": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "disreputableness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "disrupting explosive": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "dissatisfy": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "disseminated multiple sclerosis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "disseminated sclerosis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "dissimulation": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "dissonate": { "pos": "v", "pol": "-0.5", "std": "0.088" }, "distressfulness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "distressingness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "distrustfulness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "diversionary landing": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "dizzy": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "domestic ass": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "double cross": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "down-and-out": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "drawers": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "drunk-and-disorderly": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "dull-white": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "dyslogistic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "dysuria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ebony": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "edentulous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "elegist": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "embolus": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "emotional disorder": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "emotional disturbance": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "empty-headed": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "endangerment": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "enervated": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "enmesh": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "ensnarl": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "entanglement": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "erythema": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "essential": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "eternal rest": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "eternal sleep": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "evasiveness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "exasperated": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "exclusionary rule": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "excoriate": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "excruciating": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "executing": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "extremist": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "eyelessness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "face up": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "facer": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fair game": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fall flat": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "fall through": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "falseness": { "pos": "n", "pol": "-0.5", "std": "0.144" }, "family Ixodidae": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fantasist": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fantods": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fardel": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "featherbrained": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "fell": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "ferociousness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fetidness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fiasco": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fiendish": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "filagree": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "filigree": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fillagree": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "finable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "fineable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "finical": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "finicky": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "firebomb": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fitfulness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "flagitious": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "flexible sigmoidoscopy": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "flimsiness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "flip one's lid": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "flip one's wig": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "flout": { "pos": "v", "pol": "-0.5", "std": "0.088" }, "flouter": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "flub": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fluster": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fly off the handle": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "follies": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "foolhardy": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "foothill": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "footsore": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "for the moment": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "for the time being": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "foredoom": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "fossilised": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "fossilized": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "foul up": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "fractiousness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fray": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "freak out": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "frenetic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "frore": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "frowningly": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "fuck up": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "fudge": { "pos": "v", "pol": "-0.5", "std": "0.088" }, "fugaciousness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fugly": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "fulminant": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "funny farm": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "funny house": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fuschia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "futureless": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "gainlessly": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "gangdom": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gangland": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gangrenous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "gaudery": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gawk": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gawker": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gawp": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "gemfibrozil": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "genus Bibos": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "genus Branta": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "genus Sivapithecus": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "geometrical irregularity": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "get worse": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "giddy": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "glibly": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "glossalgia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "glossodynia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "glowering": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "go-slow": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "go ballistic": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "goblin": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "goggle": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "goof-off": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "graceless": { "pos": "a", "pol": "-0.5", "std": "0.144" }, "graffiti": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "graffito": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "granitelike": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "gratingly": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "gray-black": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "greenhorn": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "grey-black": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "greyish-black": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "gridlock": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "griever": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "grimy": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "gripe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "grisly": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "groan": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "gruesome": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "grungy": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "guanaco": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "guerilla": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "guerrilla": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gynophobia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "haemophilia B": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "haemosiderosis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "half-cock": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "half-hearted": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "half-mast": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "half-staff": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "halfhearted": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "hand-to-mouth": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "hangman's halter": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hangman's rope": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hangnail": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "haply": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "hard-and-fast": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "hard-baked": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "hard-pressed": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "hard cheese": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hard knocks": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hard put": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "hardihood": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "harrowing": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "hatchet job": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "have a fit": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "have kittens": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "hazardousness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "heartburn": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "heavy lifting": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "heinous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "hemophilia B": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hemosiderosis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hempen necktie": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hepatomegaly": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "herpes virus": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "heterogeneity": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "heterogeneousness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "heterology": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hisser": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hit the ceiling": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "hit the roof": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "homeliness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "honkey": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "honkie": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "honky": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hoo-ha": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hoo-hah": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hoodlum": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hoodoo": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "hooligan": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hoydenish": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "hullabaloo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "human death": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "humorless": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "humourless": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "humpbacked": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "humped": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "hunchbacked": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "hurly burly": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hydrogen-bomb": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "hydrogen sulfide": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hyperadrenocorticism": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hyperemesis gravidarum": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hypermetropia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hypermetropy": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hyperopia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hypoglycaemia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hypoglycemia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hypotensive": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "hypovolemic shock": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hysteric": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hysterical neurosis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "iconoclasm": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ignorantly": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "ill-fed": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "ill-gotten": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "ill-proportioned": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "ill luck": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "illiteracy": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "imbecility": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "immolate": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "immortal": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "immunised": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "immunized": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "immunodeficiency": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "impenetrableness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "imperil": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "impolitic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "impropriety": { "pos": "n", "pol": "-0.5", "std": "0.072" }, "impuissant": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "impunity": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "in a bad way": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inability": { "pos": "n", "pol": "-0.5", "std": "0.177" }, "inaesthetic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inalienable": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "inapplicability": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inappositeness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inaptness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inartistic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inattention": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "incapable": { "pos": "a", "pol": "-0.5", "std": "0.072" }, "incertain": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "incognizable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "incognoscible": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "incommodiousness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "incompatibly": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "incompleteness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inconsistently": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "inconvenience": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "incorrigible": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "incredulous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "incriminating": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "incriminatory": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inculpative": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inculpatory": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "incursive": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "indecorous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "indecorously": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "indecorum": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "indefensible": { "pos": "a", "pol": "-0.5", "std": "0.191" }, "indestructibility": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "indigent": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "indiscreet": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "indiscriminating": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inelegance": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inelegant": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inelegantly": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "inexcusable": { "pos": "a", "pol": "-0.5", "std": "0.088" }, "inexpedient": { "pos": "a", "pol": "-0.5", "std": "0.265" }, "inexpert": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inexplicable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inexplicitness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inferior cerebellar artery": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inferior pulmonary vein": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inframaxillary": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "infrared therapy": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "infrequency": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inhuman treatment": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inhumaneness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inhumanity": { "pos": "n", "pol": "-0.5", "std": "0.177" }, "injurious": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inquest": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inquisition": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "insanitary": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "insect bite": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "insincere": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "insincerity": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "instability": { "pos": "n", "pol": "-0.5", "std": "0.12" }, "insult": { "pos": "n", "pol": "-0.5", "std": "0.177" }, "insusceptible": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "intimidating": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "intrepid": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "invading": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "invulnerable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "iron boot": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "iron heel": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "irrelevance": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "irrelevancy": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "irresolutely": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "jackanapes": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "jeerer": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "jeopardise": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "jeopardy": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "jeremiad": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "jerkiness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "jerry-built": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "jotter": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "jumping bristletail": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "kafir": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "keratalgia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "keratectasia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "keratonosis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "kerfuffle": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "kettle of fish": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "kingdom Monera": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "kingdom Prokaryotae": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "kleptomaniac": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "knocked-out": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "knockout punch": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "knottiness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "kyphotic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "lair": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "lamb's-quarter": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "lamentation": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "lamented": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "lamenter": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "lamenting": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "languid": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "languorous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "lantern jaw": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "laryngopharynx": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "lassitude": { "pos": "n", "pol": "-0.5", "std": "0.072" }, "last straw": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "lateral condyle": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "lay waste to": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "laying waste": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "lead colic": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "leery": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "legless": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "lepidote": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "leprose": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "lie in wait": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "life-threatening": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "live on": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "livedo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "loco disease": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "locoism": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "logginess": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "loginess": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "longsightedness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "look down on": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "loony bin": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "loosened": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "lordotic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "lose one's temper": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "louse up": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "low blow": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "lower": { "pos": "v", "pol": "-0.325", "std": "0.105" }, "lower berth": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "lower respiratory infection": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "luckless": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "lugubrious": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "luridness": { "pos": "n", "pol": "-0.5", "std": "0.144" }, "lycopene": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "lysine intolerance": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "macabre": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "machilid": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "madhouse": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "magnified": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "major affective disorder": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "make bold": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "maledict": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "maleficent": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "malinger": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "malodorousness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mandibular": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "mandibular notch": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mandibulofacial": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "mange": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "manslayer": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "maraschino liqueur": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mastalgia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "maxillomandibular": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "medial condyle": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "medical prognosis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "megacolon": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "megalohepatia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "megalomaniacal": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "megalomanic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "melanoderma": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "melee": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "messy": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "metabolic disorder": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "metralgia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mettle": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "middle-ear deafness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "minor suit": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "minor tranquilizer": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "minor tranquilliser": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "minor tranquillizer": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mirthless": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "miscreation": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "miserableness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "misquotation": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "misquote": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "misrepresent": { "pos": "v", "pol": "-0.5", "std": "0.088" }, "misspelling": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mistranslation": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mistrustful": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "misused": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "mitigated": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "moan": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "molester": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "moonless": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "morose": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "mortal enemy": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "moth-resistant": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "mourner": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mourning band": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mourning ring": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mug": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "mujahadeen": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mujahadein": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mujahadin": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mujahedeen": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mujahedin": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mujahideen": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mujahidin": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "multiple sclerosis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "murderee": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "murderer": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "muscle spasm": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mussy": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "mutilate": { "pos": "v", "pol": "-0.5", "std": "0.072" }, "mutism": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mysophilia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mysophobia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "name calling": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "names": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "narcosis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "nastily": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "navy blue": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ne'er-do-well": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "necessary": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "necessitous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "needless": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "nephralgia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "nerve-racking": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "nerve-wracking": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "nervous exhaustion": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "nervous prostration": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "neurogenic bladder": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "neurotropic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "neutralization fire": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "night blindness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "nightshirt": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "nimbus cloud": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "nociceptive": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "nonchristian": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "nonconformity": { "pos": "n", "pol": "-0.5", "std": "0.144" }, "nondescript": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "nonenterprising": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "noninflammatory": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "nonnatural": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "nonrhythmic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "nonslippery": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "nontechnical": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "nontraditional": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "nosiness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "notepaper": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "now now": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "nubbly": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "nubby": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "numbness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "nut house": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "nuthouse": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "nyctalopia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "nyctophobia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "nympho": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "nymphomaniac": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "obscureness": { "pos": "n", "pol": "-0.5", "std": "0.072" }, "obstreperousness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "odd-job": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "odiousness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "off-putting": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "off the hook": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "offensiveness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "offish": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "old gold": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "olive-gray": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "olive-grey": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "oosphere": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ophthalmia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ophthalmitis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "order Moniliales": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "order Mycrosporidia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "order Myxosporidia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "organized crime": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ornery": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "ossified": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "osteoporosis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "osteosclerosis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "out of stock": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "outcry": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "overanxiety": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "overanxious": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "overbite": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "overbold": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "overmuch": { "pos": "n", "pol": "0.25", "std": "0.0" }, "overreaching": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "oversuspicious": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "overtolerance": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "painful": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "painter's colic": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pale": { "pos": "a", "pol": "-0.3", "std": "0.068" }, "pallid": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "pallidity": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pancake turtle": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pants": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "papal cross": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "paralogism": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "paramnesia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "paraphilia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "parlous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "patchy": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "patriarchal cross": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pearl gray": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "pearl grey": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "peevishness": { "pos": "n", "pol": "-0.5", "std": "0.177" }, "pejorative": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "pepper-and-salt": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "perilous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "perilousness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "perishable": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "perplexing": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "personal foul": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "personnel casualty": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "petit bourgeois": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "petite bourgeoisie": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "petty bourgeoisie": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "philistine": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "phrenetic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "picky": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "pigheaded": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "pinkish-white": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "pins and needles": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "piss-up": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "plaintiff in error": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "play possum": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "playlet": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "plenty": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "po-faced": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "podalgia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "poignance": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "police": { "pos": "v", "pol": "0.25", "std": "0.0" }, "police force": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "police investigation": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "police lieutenant": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "police work": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "poltergeist": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "poor white trash": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "porkpie hat": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "portacaval shunt": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "posse": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "posse comitatus": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "posthumously": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "poverty-stricken": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "powerlessness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pre-emptive strike": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "precision cookie": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "preventive attack": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "preventive strike": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "price cut": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "price cutting": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "prodromal": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "prodromic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "profaned": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "profaneness": { "pos": "n", "pol": "-0.5", "std": "0.177" }, "profanity": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "profitless": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "profitlessly": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "profoundly deaf": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "prophetic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "prophetical": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "proteinuria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "provisionally": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "provoking": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "prying": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pudge": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pulseless": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "punctureless": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "punishable": { "pos": "a", "pol": "-0.5", "std": "0.088" }, "punitive": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "punitory": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "purple-white": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "purplish-white": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "purposelessness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "push through": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "puzzlement": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pyromania": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pyrosis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "quash": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "quavering": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "querulous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "quietus": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "quixotic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "radio beam": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "radioprotection": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "rain cloud": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "rancidness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "rareness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "rash": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "rasping": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "raspingly": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "reconnaissance in force": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "red-handed": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "refracture": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "regretfully": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "reproachful": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "reprove": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "reproving": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "requiem": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "requiescat": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "requisite": { "pos": "a", "pol": "0.375", "std": "0.0" }, "retch": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "retrograde amnesia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "rigid": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "rigorousness": { "pos": "n", "pol": "-0.5", "std": "0.177" }, "rigourousness": { "pos": "n", "pol": "-0.5", "std": "0.177" }, "risk-free": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "riskiness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "riskless": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "rockbound": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "rocklike": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "rogue elephant": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "rookie": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "rope": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "rough-haired": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "roughneck": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ruffian": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ruining": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ruinous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "rumbling": { "pos": "a", "pol": "0.25", "std": "0.0" }, "runner-up": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sabotage": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "sacrilegiousness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "saddle-sore": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "samsara": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sassy": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "satanic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "saturnine": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "savage": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "saw-like": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "scapegrace": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "scathing": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "scorner": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "scratching": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "screw-loose": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "screwy": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "searing": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "second-degree burn": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "second best": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "secondary dysmenorrhea": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "secondo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "security blanket": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "self-flagellation": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "self-forgetful": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "semidark": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "settling": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "severely": { "pos": "r", "pol": "-0.5", "std": "0.072" }, "shambolic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "shattered": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sheltered": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "shibah": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "shit": { "pos": "n", "pol": "-0.292", "std": "0.102" }, "shiva": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "shivah": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "shocked": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "shoot-down": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "shopsoiled": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "short-handed": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "short-staffed": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "shout": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "shrink back": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "sic": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "side effect": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "sigmoid vein": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sigmoidoscopy": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "silver lining": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "simmpleness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "simpleton": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sinfulness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sit by": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "skip-bomb": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "skip over": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "skreigh": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "slickly": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "slubbed": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "slyboots": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "smothering": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "snappish": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sneerer": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sneezy": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "snitch": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "snoopiness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sociopathic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "soft-shelled turtle": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "somatosense": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "soot-black": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sooty-black": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sorrower": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "soul-destroying": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "soured": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sparseness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sparsity": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "speakeasy": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "speciousness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "spermicidal": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "spondylitis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sporadic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sprain": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "spurner": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "squab": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "squabby": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "squawk": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "stagger": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "standing order": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "standoffish": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "status epilepticus": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "staunchness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "stay fresh": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "stereotyped": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "stereotypic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "stereotypical": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "stickpin": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "stinging": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stingy": { "pos": "a", "pol": "-0.5", "std": "0.265" }, "stinkiness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "stodginess": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "stogie": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "stogy": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "stone-deaf": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "storm-beaten": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "storm cloud": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "strafer": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "straits": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "stratus": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "stratus cloud": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "stressful": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "strong-armer": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "stroppy": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "stuck with": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "stupidity": { "pos": "n", "pol": "-0.5", "std": "0.177" }, "subbing": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "subclass Cnidosporidia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "subjugated": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "subsiding": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "succuss": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "suffocating": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "suffocative": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "supercilious": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "superfatted": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "superior court": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "superstition": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "superstitious notion": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "swayback": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "swaybacked": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sweep over": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "sweet vermouth": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "swipe": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "synovitis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "tactical warning": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "take pains": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "taken up": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "tattered": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "tatty": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "teargas": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "technophobia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "tell off": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "temerarious": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "tenesmus": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "tense up": { "pos": "v", "pol": "-0.5", "std": "0.088" }, "terra cotta": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "terrifying": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "terrorism": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "terrorist act": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "thanatophobia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "thankless": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "the boot": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "the devil": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "thermalgesia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "threnody": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "throw a fit": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "thug": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "thuggee": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "thundercloud": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "to-do": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "token": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "tokenish": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "tomboyish": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "too much": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "tooth decay": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "torch": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "torpedo": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "torpidness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "torturesome": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "torturing": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "torturous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "touch-and-go": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "tough luck": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "toxicity": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "traducement": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "trap block": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "traumatic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "tremulous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "trial by ordeal": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "triskaidekaphobic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "truant": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "truculence": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "truculency": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "trying": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "turkey drumstick": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "turkey leg": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "tussle": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "twilight": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "twilit": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "twist around": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "uglify": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "ultra": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unaccredited": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unaesthetic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unaged": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unapologetic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unapparent": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unappeasable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unapprehensive": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unartistic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unauthorized absence": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "unavailable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unawareness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "unbecoming": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unbecomingly": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "unbigoted": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unbraced": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unbranded": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unbridgeable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unceremonial": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unchristian": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "uncomely": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "uncompensated": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "uncomprehending": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unconstitutional": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "undeferential": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "undependability": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "undependableness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "under the weather": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "underbred": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "underdevelopment": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "underdrawers": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "underfed": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "underlip": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "undermanned": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "undernourished": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "underproduction": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "underside": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "understaffed": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "undersurface": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "undeservedly": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "undiscriminating": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "undistinguished": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "undisturbed": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "undramatic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "undutiful": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "undutifulness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "uneager": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "uneffective": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unemployed": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unendowed": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unenlightened": { "pos": "a", "pol": "-0.5", "std": "0.088" }, "unenterprising": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unenthusiastic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unenthusiastically": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "unequal to": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unexcitable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unexciting": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unexplainable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unfavorable": { "pos": "a", "pol": "-0.5", "std": "0.125" }, "unfavourable": { "pos": "a", "pol": "-0.5", "std": "0.125" }, "unfearing": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unfeminine": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unfirm": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unflinching": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unforbearing": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unforgiving": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "ungracious": { "pos": "a", "pol": "-0.5", "std": "0.088" }, "ungratifying": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unhazardous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unhearing": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unheated": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unhelpful": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unhumorous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "uniformness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "unilluminated": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unimposing": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unintelligent": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unintended": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unintimidated": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "uninventive": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unjustifiably": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "unlettered": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unlicenced": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unlicensed": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unlocated": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unlovely": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unloving": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unmalicious": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unmechanical": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unmelodic": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unmethodical": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unmindful": { "pos": "a", "pol": "-0.5", "std": "0.088" }, "unmindfully": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "unobligated": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unobtainable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unobtrusive": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unofficial": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unopposable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unoriginality": { "pos": "n", "pol": "-0.5", "std": "0.265" }, "unpalatable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unparliamentary": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unpersuasive": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unpicturesque": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unplayable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unplayful": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unpleasant": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unpolished": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unprincipled": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unprocurable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unproductiveness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "unprotectedness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "unproved": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unproven": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unreasoning": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unredeemed": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unrefined": { "pos": "a", "pol": "-0.5", "std": "0.265" }, "unregenerate": { "pos": "a", "pol": "-0.5", "std": "0.217" }, "unreliability": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "unreliableness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "unrepaired": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unrespectability": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "unruliness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "unsalaried": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unsanctioned": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unsanitary": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unsated": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unsatiated": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unsatisfiable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unsaved": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unschooled": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unscrupulous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unscrupulousness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "unseemly": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unselective": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unsexy": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unshapely": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unskillfulness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "unsnarled": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unstableness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "unsterilised": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unsterilized": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unstimulating": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unstylish": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unsurmountable": { "pos": "a", "pol": "-0.5", "std": "0.088" }, "unsymmetric": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "untactful": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "untamed": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "untaught": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "untechnical": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "untended": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unthankful": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "untidiness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "untraditional": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "untrusting": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "untutored": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unwarmed": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unwell": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "unwillingly": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "unwomanly": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "upbraid": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "upsetting": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "uratemia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "uricaciduria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "urodynia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "vacuum chamber": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "vanity": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "vaulting": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "vena pulmanalis inferior": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "vena sigmoideus": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "venomed": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "verruca": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "vertiginous": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "viciousness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "violated": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "violative": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "violet-purple": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "vituperative": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "vixenish": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "vociferation": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "wailful": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "wailing": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wantonness": { "pos": "n", "pol": "-0.5", "std": "0.177" }, "war cloud": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "warning of attack": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "warning signal": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "waspish": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "watch cap": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "wavelike": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "waylay": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "wear thin": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "weather eye": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "weathered": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "weatherworn": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "weeds": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "weepy": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "weirdie": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "weirdy": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "what for": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "wheeze": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "whelm": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "whiney": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "whiny": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "whippersnapper": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "white-lipped": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "white trash": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "whitey": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "widow's weeds": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "wilfulness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "willful neglect": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "willfulness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "wisdom tooth": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "wistfulness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "witchlike": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "woozy": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "wretchedness": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "xanthosis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "yellow-white": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "yellow bile": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "yellowish-white": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "yellowish brown": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "yob": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "yobbo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "yobo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "zinc deficiency": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "a-ok": { "pos": "a", "pol": "0.375", "std": "0.0" }, "a-okay": { "pos": "a", "pol": "0.375", "std": "0.0" }, "a la mode": { "pos": "a", "pol": "0.375", "std": "0.0" }, "a posteriori": { "pos": "r", "pol": "0.25", "std": "0.0" }, "a priori": { "pos": "a", "pol": "0.313", "std": "0.088" }, "aah": { "pos": "v", "pol": "0.375", "std": "0.0" }, "abandoned": { "pos": "a", "pol": "0.313", "std": "0.177" }, "abatable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "abbess": { "pos": "n", "pol": "0.375", "std": "0.0" }, "abbot": { "pos": "n", "pol": "0.375", "std": "0.0" }, "abdicable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "abide by": { "pos": "v", "pol": "0.375", "std": "0.177" }, "ability": { "pos": "n", "pol": "0.375", "std": "0.088" }, "abloom": { "pos": "a", "pol": "0.375", "std": "0.0" }, "about": { "pos": "a", "pol": "0.375", "std": "0.0" }, "above": { "pos": "a", "pol": "0.25", "std": "0.0" }, "absolute alcohol": { "pos": "n", "pol": "0.375", "std": "0.0" }, "absolved": { "pos": "a", "pol": "0.375", "std": "0.0" }, "absorbable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "absorbed": { "pos": "a", "pol": "0.313", "std": "0.354" }, "abundantly": { "pos": "r", "pol": "0.375", "std": "0.0" }, "abuzz": { "pos": "a", "pol": "0.375", "std": "0.0" }, "accenting": { "pos": "n", "pol": "0.375", "std": "0.0" }, "acceptation": { "pos": "n", "pol": "0.333", "std": "0.191" }, "accepted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "acceptive": { "pos": "a", "pol": "0.313", "std": "0.088" }, "accessibility": { "pos": "n", "pol": "0.438", "std": "0.177" }, "acclivitous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "accommodate": { "pos": "v", "pol": "0.321", "std": "0.283" }, "accommodation endorser": { "pos": "n", "pol": "0.375", "std": "0.0" }, "accomplished": { "pos": "a", "pol": "0.333", "std": "0.191" }, "accumulative": { "pos": "a", "pol": "0.375", "std": "0.088" }, "accuracy": { "pos": "n", "pol": "0.313", "std": "0.177" }, "accustomed": { "pos": "a", "pol": "0.313", "std": "0.088" }, "acetify": { "pos": "v", "pol": "0.313", "std": "0.088" }, "acid-forming": { "pos": "a", "pol": "0.375", "std": "0.0" }, "acidify": { "pos": "v", "pol": "0.313", "std": "0.088" }, "ack-ack": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ack-ack gun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "acknowledgeable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "acoustic device": { "pos": "n", "pol": "0.375", "std": "0.0" }, "acoustic phenomenon": { "pos": "n", "pol": "0.375", "std": "0.0" }, "acoustic power": { "pos": "n", "pol": "0.375", "std": "0.0" }, "acoustically": { "pos": "r", "pol": "0.375", "std": "0.0" }, "acoustics": { "pos": "n", "pol": "0.375", "std": "0.0" }, "acquainted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "acquirable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "acquit": { "pos": "v", "pol": "0.438", "std": "0.619" }, "acquitted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "acrobatic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "act upon": { "pos": "v", "pol": "0.375", "std": "0.0" }, "actinomorphous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "activated": { "pos": "a", "pol": "0.281", "std": "0.12" }, "active agent": { "pos": "n", "pol": "0.375", "std": "0.0" }, "activeness": { "pos": "n", "pol": "0.438", "std": "0.0" }, "activist": { "pos": "a", "pol": "0.375", "std": "0.0" }, "activistic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "actual": { "pos": "a", "pol": "0.325", "std": "0.137" }, "actuated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "adaptable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "add-on": { "pos": "n", "pol": "0.313", "std": "0.0" }, "addable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "addible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "additional": { "pos": "a", "pol": "0.375", "std": "0.0" }, "addressable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "adherent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "adience": { "pos": "n", "pol": "0.375", "std": "0.0" }, "adjunct": { "pos": "a", "pol": "0.375", "std": "0.354" }, "adjunctive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "adjusted": { "pos": "a", "pol": "0.406", "std": "0.072" }, "adopted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "adoxography": { "pos": "n", "pol": "0.375", "std": "0.0" }, "adroitly": { "pos": "r", "pol": "0.375", "std": "0.0" }, "adscripted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "adulatory": { "pos": "a", "pol": "0.375", "std": "0.0" }, "adult": { "pos": "a", "pol": "0.438", "std": "0.088" }, "advance": { "pos": "n", "pol": "0.25", "std": "0.36" }, "advanced": { "pos": "a", "pol": "0.266", "std": "0.241" }, "advancement": { "pos": "n", "pol": "0.333", "std": "0.072" }, "advertised": { "pos": "a", "pol": "0.375", "std": "0.0" }, "advisability": { "pos": "n", "pol": "0.375", "std": "0.0" }, "adviser": { "pos": "n", "pol": "0.375", "std": "0.0" }, "advisor": { "pos": "n", "pol": "0.375", "std": "0.0" }, "aerobic": { "pos": "a", "pol": "0.438", "std": "0.088" }, "aerophilic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "aerophilous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "affiance": { "pos": "v", "pol": "0.375", "std": "0.0" }, "affinal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "affined": { "pos": "a", "pol": "0.375", "std": "0.0" }, "affirmative action": { "pos": "n", "pol": "0.375", "std": "0.0" }, "affirmativeness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "affordable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "aflutter": { "pos": "a", "pol": "0.375", "std": "0.0" }, "agglutinate": { "pos": "a", "pol": "0.375", "std": "0.0" }, "aggrandisement": { "pos": "n", "pol": "0.375", "std": "0.0" }, "aggrandizement": { "pos": "n", "pol": "0.375", "std": "0.0" }, "agilely": { "pos": "r", "pol": "0.375", "std": "0.0" }, "agree": { "pos": "v", "pol": "0.339", "std": "0.222" }, "agreed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ahead of the game": { "pos": "r", "pol": "0.375", "std": "0.0" }, "aid": { "pos": "v", "pol": "0.375", "std": "0.0" }, "aided": { "pos": "a", "pol": "0.375", "std": "0.0" }, "airborne": { "pos": "a", "pol": "0.375", "std": "0.0" }, "alacritous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "aligned": { "pos": "a", "pol": "0.313", "std": "0.0" }, "aligning": { "pos": "a", "pol": "0.375", "std": "0.0" }, "alike": { "pos": "a", "pol": "0.375", "std": "0.0" }, "aliment": { "pos": "v", "pol": "0.375", "std": "0.0" }, "alimony": { "pos": "n", "pol": "0.375", "std": "0.0" }, "aliquot": { "pos": "n", "pol": "0.375", "std": "0.0" }, "aliquot part": { "pos": "n", "pol": "0.375", "std": "0.0" }, "alive": { "pos": "a", "pol": "0.411", "std": "0.139" }, "all": { "pos": "r", "pol": "0.375", "std": "0.0" }, "all-mains": { "pos": "a", "pol": "0.375", "std": "0.0" }, "all-or-none": { "pos": "a", "pol": "0.375", "std": "0.0" }, "all-or-nothing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "all-out": { "pos": "a", "pol": "0.375", "std": "0.0" }, "all-time": { "pos": "a", "pol": "0.375", "std": "0.0" }, "allegro": { "pos": "r", "pol": "0.375", "std": "0.0" }, "allied": { "pos": "a", "pol": "0.375", "std": "0.144" }, "allover": { "pos": "a", "pol": "0.375", "std": "0.0" }, "allowable": { "pos": "a", "pol": "0.458", "std": "0.125" }, "almond-eyed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "aloof": { "pos": "a", "pol": "0.375", "std": "0.0" }, "alpha privative": { "pos": "n", "pol": "0.375", "std": "0.0" }, "altar wine": { "pos": "n", "pol": "0.375", "std": "0.0" }, "altered": { "pos": "a", "pol": "0.375", "std": "0.072" }, "altruist": { "pos": "n", "pol": "0.375", "std": "0.0" }, "amazing": { "pos": "a", "pol": "0.375", "std": "0.265" }, "ambidexterity": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ambidextrousness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ambient": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ambitiously": { "pos": "r", "pol": "0.375", "std": "0.0" }, "ambivalence": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ambivalency": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ambrosial": { "pos": "a", "pol": "0.438", "std": "0.088" }, "ambrosian": { "pos": "a", "pol": "0.438", "std": "0.088" }, "ambulant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ameliorate": { "pos": "v", "pol": "0.438", "std": "0.088" }, "amenable": { "pos": "a", "pol": "0.406", "std": "0.157" }, "amenities": { "pos": "n", "pol": "0.375", "std": "0.0" }, "amethyst": { "pos": "a", "pol": "0.375", "std": "0.0" }, "amphipod": { "pos": "n", "pol": "0.375", "std": "0.0" }, "amphiprostylar": { "pos": "a", "pol": "0.375", "std": "0.0" }, "amphiprostyle": { "pos": "a", "pol": "0.375", "std": "0.0" }, "amphiprotic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "amphistylar": { "pos": "a", "pol": "0.313", "std": "0.088" }, "amphoteric": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ample": { "pos": "a", "pol": "0.417", "std": "0.125" }, "ampleness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "amply": { "pos": "r", "pol": "0.438", "std": "0.088" }, "amuse": { "pos": "v", "pol": "0.375", "std": "0.177" }, "amusement": { "pos": "n", "pol": "0.438", "std": "0.088" }, "anaerobiotic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "analeptic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "analogous": { "pos": "a", "pol": "0.313", "std": "0.088" }, "analytical": { "pos": "a", "pol": "0.313", "std": "0.265" }, "anastigmat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "anastigmatic lens": { "pos": "n", "pol": "0.375", "std": "0.0" }, "anchorite": { "pos": "n", "pol": "0.375", "std": "0.0" }, "angwantibo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "animated": { "pos": "a", "pol": "0.375", "std": "0.265" }, "animise": { "pos": "v", "pol": "0.375", "std": "0.0" }, "animize": { "pos": "v", "pol": "0.375", "std": "0.0" }, "announced": { "pos": "a", "pol": "0.375", "std": "0.0" }, "anointer": { "pos": "n", "pol": "0.375", "std": "0.0" }, "anomalist": { "pos": "n", "pol": "0.375", "std": "0.0" }, "answering": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ant thrush": { "pos": "n", "pol": "0.375", "std": "0.0" }, "antacid": { "pos": "a", "pol": "0.375", "std": "0.0" }, "antheral": { "pos": "a", "pol": "0.375", "std": "0.0" }, "anti-Semite": { "pos": "a", "pol": "0.375", "std": "0.0" }, "antiaircraft": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "antiaircraft gun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "antiblack": { "pos": "a", "pol": "0.375", "std": "0.0" }, "antic": { "pos": "n", "pol": "0.375", "std": "0.0" }, "anticipant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "anticipative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "antithetic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "antithetical": { "pos": "a", "pol": "0.375", "std": "0.0" }, "antitoxic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "any longer": { "pos": "r", "pol": "0.375", "std": "0.0" }, "anymore": { "pos": "r", "pol": "0.375", "std": "0.0" }, "apical": { "pos": "a", "pol": "0.375", "std": "0.0" }, "apocarpous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "apophatism": { "pos": "n", "pol": "0.375", "std": "0.0" }, "apothegmatic": { "pos": "a", "pol": "0.313", "std": "0.177" }, "apparel": { "pos": "v", "pol": "0.375", "std": "0.0" }, "appareled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "apparent": { "pos": "a", "pol": "0.313", "std": "0.088" }, "appealing": { "pos": "a", "pol": "0.375", "std": "0.177" }, "appetisingness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "appetizingness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "applicability": { "pos": "n", "pol": "0.375", "std": "0.0" }, "applied": { "pos": "a", "pol": "0.375", "std": "0.0" }, "appreciated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "appreciative": { "pos": "a", "pol": "0.375", "std": "0.177" }, "apprehended": { "pos": "a", "pol": "0.375", "std": "0.0" }, "appropriately": { "pos": "r", "pol": "0.375", "std": "0.0" }, "aptness": { "pos": "n", "pol": "0.375", "std": "0.354" }, "arbitrable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "arcanum": { "pos": "n", "pol": "0.375", "std": "0.0" }, "archimandrite": { "pos": "n", "pol": "0.375", "std": "0.0" }, "architectural ornament": { "pos": "n", "pol": "0.375", "std": "0.0" }, "architecturally": { "pos": "r", "pol": "0.375", "std": "0.0" }, "ardent": { "pos": "a", "pol": "0.417", "std": "0.191" }, "arguable": { "pos": "a", "pol": "0.313", "std": "0.177" }, "aristocratic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "aristocratical": { "pos": "a", "pol": "0.375", "std": "0.0" }, "arithmetically": { "pos": "r", "pol": "0.375", "std": "0.0" }, "armor-clad": { "pos": "a", "pol": "0.375", "std": "0.0" }, "armor-plated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "armored": { "pos": "a", "pol": "0.333", "std": "0.0" }, "armour-clad": { "pos": "a", "pol": "0.375", "std": "0.0" }, "armour-plated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "armoured": { "pos": "a", "pol": "0.313", "std": "0.0" }, "aroused": { "pos": "a", "pol": "0.417", "std": "0.158" }, "arrayed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "arresting": { "pos": "a", "pol": "0.375", "std": "0.0" }, "arrive": { "pos": "v", "pol": "0.313", "std": "0.088" }, "artefact": { "pos": "n", "pol": "0.375", "std": "0.0" }, "artifact": { "pos": "n", "pol": "0.375", "std": "0.0" }, "artistic": { "pos": "a", "pol": "0.417", "std": "0.505" }, "artistic creation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "artistic production": { "pos": "n", "pol": "0.375", "std": "0.0" }, "arts": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ascent": { "pos": "n", "pol": "0.333", "std": "0.144" }, "ascertained": { "pos": "a", "pol": "0.375", "std": "0.0" }, "assertiveness training": { "pos": "n", "pol": "0.375", "std": "0.0" }, "asset": { "pos": "n", "pol": "0.375", "std": "0.0" }, "assimilable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "assimilative": { "pos": "a", "pol": "0.375", "std": "0.177" }, "assistance": { "pos": "n", "pol": "0.313", "std": "0.177" }, "assisted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "associative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "associatory": { "pos": "a", "pol": "0.375", "std": "0.0" }, "asterisked": { "pos": "a", "pol": "0.375", "std": "0.0" }, "asternal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "astir": { "pos": "a", "pol": "0.375", "std": "0.0" }, "asunder": { "pos": "a", "pol": "0.375", "std": "0.0" }, "asymptomatic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "asynchronous transfer mode": { "pos": "n", "pol": "0.375", "std": "0.0" }, "at close range": { "pos": "r", "pol": "0.375", "std": "0.0" }, "at leisure": { "pos": "r", "pol": "0.375", "std": "0.0" }, "ataractic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ataraxic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "atavistic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "athletic": { "pos": "a", "pol": "0.292", "std": "0.191" }, "atrip": { "pos": "a", "pol": "0.375", "std": "0.0" }, "attached": { "pos": "a", "pol": "0.406", "std": "0.213" }, "attained": { "pos": "a", "pol": "0.375", "std": "0.0" }, "attention-getting": { "pos": "a", "pol": "0.313", "std": "0.088" }, "attentiveness": { "pos": "n", "pol": "0.292", "std": "0.144" }, "attest": { "pos": "v", "pol": "0.313", "std": "0.157" }, "attired": { "pos": "a", "pol": "0.375", "std": "0.0" }, "attract": { "pos": "v", "pol": "0.333", "std": "0.505" }, "attracter": { "pos": "n", "pol": "0.292", "std": "0.072" }, "attractive feature": { "pos": "n", "pol": "0.375", "std": "0.0" }, "attractively": { "pos": "r", "pol": "0.375", "std": "0.0" }, "attractiveness": { "pos": "n", "pol": "0.438", "std": "0.177" }, "attractor": { "pos": "n", "pol": "0.292", "std": "0.072" }, "attributable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "au naturel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "audibility": { "pos": "n", "pol": "0.375", "std": "0.0" }, "audibleness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "auditory perception": { "pos": "n", "pol": "0.375", "std": "0.0" }, "august": { "pos": "a", "pol": "0.375", "std": "0.265" }, "auspices": { "pos": "n", "pol": "0.375", "std": "0.0" }, "autogenic therapy": { "pos": "n", "pol": "0.375", "std": "0.0" }, "autogenic training": { "pos": "n", "pol": "0.375", "std": "0.0" }, "autogenics": { "pos": "n", "pol": "0.375", "std": "0.0" }, "autoloading": { "pos": "a", "pol": "0.375", "std": "0.0" }, "automated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "autonomous": { "pos": "a", "pol": "0.375", "std": "0.191" }, "avowed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "award": { "pos": "v", "pol": "0.375", "std": "0.177" }, "awareness": { "pos": "n", "pol": "0.375", "std": "0.265" }, "away game": { "pos": "n", "pol": "0.375", "std": "0.0" }, "awe": { "pos": "n", "pol": "0.375", "std": "0.088" }, "awed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "aweigh": { "pos": "a", "pol": "0.313", "std": "0.088" }, "awestricken": { "pos": "a", "pol": "0.375", "std": "0.0" }, "awestruck": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bacciferous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "backing": { "pos": "n", "pol": "0.333", "std": "0.144" }, "backslider": { "pos": "n", "pol": "0.375", "std": "0.0" }, "backstage": { "pos": "a", "pol": "0.375", "std": "0.0" }, "backward": { "pos": "a", "pol": "0.313", "std": "0.157" }, "bactericidal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "balanced": { "pos": "a", "pol": "0.375", "std": "0.0" }, "balanced diet": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bald-faced": { "pos": "a", "pol": "0.438", "std": "0.177" }, "ball hawking": { "pos": "n", "pol": "0.375", "std": "0.0" }, "balletic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ballistic trajectory": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bally": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bandaged": { "pos": "a", "pol": "0.375", "std": "0.0" }, "banging": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bankroll": { "pos": "v", "pol": "0.375", "std": "0.0" }, "bare-ass": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bare-assed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bargain": { "pos": "n", "pol": "0.313", "std": "0.088" }, "bargaining chip": { "pos": "n", "pol": "0.375", "std": "0.0" }, "barred": { "pos": "a", "pol": "0.313", "std": "0.0" }, "barricaded": { "pos": "a", "pol": "0.375", "std": "0.0" }, "barring": { "pos": "n", "pol": "0.375", "std": "0.0" }, "base-forming": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bashful": { "pos": "a", "pol": "0.313", "std": "0.088" }, "battery-powered": { "pos": "a", "pol": "0.375", "std": "0.0" }, "battle dress": { "pos": "n", "pol": "0.375", "std": "0.0" }, "beamy": { "pos": "a", "pol": "0.313", "std": "0.177" }, "bear-sized": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bear in mind": { "pos": "v", "pol": "0.375", "std": "0.0" }, "beardown": { "pos": "a", "pol": "0.375", "std": "0.0" }, "beatification": { "pos": "n", "pol": "0.375", "std": "0.0" }, "beatitude": { "pos": "n", "pol": "0.375", "std": "0.0" }, "beau ideal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "beautification": { "pos": "n", "pol": "0.375", "std": "0.0" }, "beautifully": { "pos": "r", "pol": "0.375", "std": "0.0" }, "beautify": { "pos": "v", "pol": "0.417", "std": "0.144" }, "beauty": { "pos": "n", "pol": "0.333", "std": "0.191" }, "beauty treatment": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bedder": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bedding plant": { "pos": "n", "pol": "0.375", "std": "0.0" }, "beef roast": { "pos": "n", "pol": "0.375", "std": "0.0" }, "beefy": { "pos": "a", "pol": "0.375", "std": "0.0" }, "befittingly": { "pos": "r", "pol": "0.375", "std": "0.0" }, "befogged": { "pos": "a", "pol": "0.375", "std": "0.0" }, "beg off": { "pos": "v", "pol": "0.375", "std": "0.0" }, "beguiling": { "pos": "a", "pol": "0.375", "std": "0.177" }, "behalf": { "pos": "n", "pol": "0.313", "std": "0.265" }, "being": { "pos": "n", "pol": "0.313", "std": "0.177" }, "bel esprit": { "pos": "n", "pol": "0.375", "std": "0.0" }, "belief": { "pos": "n", "pol": "0.375", "std": "0.088" }, "believable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "believably": { "pos": "r", "pol": "0.375", "std": "0.088" }, "benefit concert": { "pos": "n", "pol": "0.375", "std": "0.0" }, "benign": { "pos": "a", "pol": "0.417", "std": "0.439" }, "benignancy": { "pos": "n", "pol": "0.375", "std": "0.0" }, "benignity": { "pos": "n", "pol": "0.313", "std": "0.177" }, "berried": { "pos": "a", "pol": "0.375", "std": "0.0" }, "best-loved": { "pos": "a", "pol": "0.375", "std": "0.0" }, "best-selling": { "pos": "a", "pol": "0.375", "std": "0.0" }, "betimes": { "pos": "r", "pol": "0.375", "std": "0.0" }, "betroth": { "pos": "v", "pol": "0.375", "std": "0.0" }, "bettering": { "pos": "a", "pol": "0.375", "std": "0.0" }, "betterment": { "pos": "n", "pol": "0.417", "std": "0.451" }, "beverage": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bhakti": { "pos": "n", "pol": "0.375", "std": "0.0" }, "biannual": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bib-and-tucker": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bibulous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "big-bellied": { "pos": "a", "pol": "0.375", "std": "0.0" }, "big league": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bigger": { "pos": "a", "pol": "0.375", "std": "0.0" }, "biggish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bigmouthed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bill of health": { "pos": "n", "pol": "0.375", "std": "0.0" }, "billet doux": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bimestrial": { "pos": "a", "pol": "0.313", "std": "0.088" }, "bimonthly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "biochemist": { "pos": "n", "pol": "0.375", "std": "0.0" }, "biologism": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bioluminescent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bipartisan": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bipartizan": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bird fancier": { "pos": "n", "pol": "0.375", "std": "0.0" }, "birthing coach": { "pos": "n", "pol": "0.375", "std": "0.0" }, "biweekly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "biyearly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "blabby": { "pos": "a", "pol": "0.375", "std": "0.0" }, "blackball": { "pos": "n", "pol": "0.375", "std": "0.0" }, "blameless": { "pos": "a", "pol": "0.375", "std": "0.0" }, "blandish": { "pos": "v", "pol": "0.375", "std": "0.0" }, "bless": { "pos": "v", "pol": "0.313", "std": "0.213" }, "blessedness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "blockaded": { "pos": "a", "pol": "0.375", "std": "0.0" }, "blood-and-guts": { "pos": "a", "pol": "0.375", "std": "0.0" }, "blood-red": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bloody": { "pos": "r", "pol": "0.25", "std": "0.0" }, "blooming": { "pos": "a", "pol": "0.375", "std": "0.0" }, "blown-up": { "pos": "a", "pol": "0.375", "std": "0.0" }, "blue-blooded": { "pos": "a", "pol": "0.375", "std": "0.0" }, "blue-eyed": { "pos": "a", "pol": "0.313", "std": "0.177" }, "blue-pencil": { "pos": "v", "pol": "0.375", "std": "0.0" }, "blue-violet": { "pos": "a", "pol": "0.375", "std": "0.0" }, "blue ribbon": { "pos": "n", "pol": "0.375", "std": "0.0" }, "blueish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bluff": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "bluish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bluish-violet": { "pos": "a", "pol": "0.375", "std": "0.0" }, "board game": { "pos": "n", "pol": "0.375", "std": "0.0" }, "boatmanship": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bodied": { "pos": "a", "pol": "0.438", "std": "0.088" }, "body": { "pos": "v", "pol": "0.375", "std": "0.0" }, "bodybuilder": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bombastic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bombilation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bombination": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bon vivant": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bonanza": { "pos": "n", "pol": "0.313", "std": "0.265" }, "bondable": { "pos": "a", "pol": "0.438", "std": "0.0" }, "boon": { "pos": "n", "pol": "0.375", "std": "0.0" }, "boost": { "pos": "v", "pol": "0.275", "std": "0.335" }, "boozy": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bound up": { "pos": "a", "pol": "0.438", "std": "0.177" }, "bountied": { "pos": "a", "pol": "0.375", "std": "0.0" }, "boyish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "boylike": { "pos": "a", "pol": "0.375", "std": "0.0" }, "brainy": { "pos": "a", "pol": "0.375", "std": "0.0" }, "braw": { "pos": "a", "pol": "0.375", "std": "0.0" }, "brawny": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bread line": { "pos": "n", "pol": "0.375", "std": "0.0" }, "breadline": { "pos": "n", "pol": "0.375", "std": "0.0" }, "breadwinner": { "pos": "n", "pol": "0.375", "std": "0.0" }, "breakaway": { "pos": "a", "pol": "0.375", "std": "0.0" }, "breastfeed": { "pos": "v", "pol": "0.375", "std": "0.0" }, "breathing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "breeding": { "pos": "a", "pol": "0.375", "std": "0.0" }, "breeze through": { "pos": "v", "pol": "0.375", "std": "0.0" }, "breezy": { "pos": "a", "pol": "0.313", "std": "0.354" }, "bridle path": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bridle road": { "pos": "n", "pol": "0.375", "std": "0.0" }, "brief": { "pos": "v", "pol": "0.375", "std": "0.0" }, "bright": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "bright as a new penny": { "pos": "a", "pol": "0.375", "std": "0.0" }, "brightness": { "pos": "n", "pol": "0.333", "std": "0.0" }, "brimful": { "pos": "a", "pol": "0.375", "std": "0.0" }, "brimfull": { "pos": "a", "pol": "0.375", "std": "0.0" }, "brimming": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bring home the bacon": { "pos": "v", "pol": "0.313", "std": "0.53" }, "bring off": { "pos": "v", "pol": "0.375", "std": "0.0" }, "bring oneself": { "pos": "v", "pol": "0.375", "std": "0.0" }, "bringing up": { "pos": "n", "pol": "0.375", "std": "0.0" }, "brisk": { "pos": "a", "pol": "0.417", "std": "0.217" }, "broad": { "pos": "a", "pol": "0.328", "std": "0.16" }, "broadness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "brocaded": { "pos": "a", "pol": "0.375", "std": "0.0" }, "broken in": { "pos": "a", "pol": "0.375", "std": "0.0" }, "brooding": { "pos": "a", "pol": "0.375", "std": "0.0" }, "broody": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brotherly love": { "pos": "n", "pol": "0.375", "std": "0.0" }, "brownish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "brumous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bubbling": { "pos": "a", "pol": "0.375", "std": "0.354" }, "bubbly": { "pos": "a", "pol": "0.375", "std": "0.354" }, "buckle under": { "pos": "v", "pol": "0.375", "std": "0.0" }, "buddy system": { "pos": "n", "pol": "0.375", "std": "0.0" }, "buff": { "pos": "a", "pol": "0.375", "std": "0.0" }, "buffoonery": { "pos": "n", "pol": "0.375", "std": "0.0" }, "built-in": { "pos": "a", "pol": "0.375", "std": "0.0" }, "buirdly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bulky": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bulldog wrench": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bump around": { "pos": "v", "pol": "0.375", "std": "0.0" }, "bumpkinly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "buoy up": { "pos": "v", "pol": "0.458", "std": "0.5" }, "burgeon": { "pos": "v", "pol": "0.375", "std": "0.0" }, "burlesque": { "pos": "n", "pol": "0.313", "std": "0.088" }, "burly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "burnable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bus ticket": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bushel": { "pos": "v", "pol": "0.375", "std": "0.0" }, "businesslike": { "pos": "a", "pol": "0.313", "std": "0.0" }, "butyraceous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "buxom": { "pos": "a", "pol": "0.438", "std": "0.0" }, "buzzing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "by-election": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bye-election": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cabalistic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cackel": { "pos": "v", "pol": "0.375", "std": "0.0" }, "cadge": { "pos": "v", "pol": "0.375", "std": "0.088" }, "cairned": { "pos": "a", "pol": "0.375", "std": "0.0" }, "calculated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "calendered": { "pos": "a", "pol": "0.375", "std": "0.0" }, "call on": { "pos": "v", "pol": "0.375", "std": "0.0" }, "caller": { "pos": "a", "pol": "0.313", "std": "0.088" }, "calligraphy": { "pos": "n", "pol": "0.375", "std": "0.0" }, "callous": { "pos": "a", "pol": "0.313", "std": "0.0" }, "calloused": { "pos": "a", "pol": "0.375", "std": "0.0" }, "camera care": { "pos": "n", "pol": "0.375", "std": "0.0" }, "camera tripod": { "pos": "n", "pol": "0.375", "std": "0.0" }, "campestral": { "pos": "a", "pol": "0.375", "std": "0.0" }, "canary": { "pos": "a", "pol": "0.375", "std": "0.0" }, "canary-yellow": { "pos": "a", "pol": "0.375", "std": "0.0" }, "candent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cannibalism": { "pos": "n", "pol": "0.375", "std": "0.0" }, "canonised": { "pos": "a", "pol": "0.375", "std": "0.0" }, "canonized": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cap off": { "pos": "v", "pol": "0.375", "std": "0.0" }, "capability": { "pos": "n", "pol": "0.375", "std": "0.25" }, "capacious": { "pos": "a", "pol": "0.375", "std": "0.0" }, "car care": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cardinal": { "pos": "a", "pol": "0.313", "std": "0.265" }, "care for": { "pos": "v", "pol": "0.333", "std": "0.125" }, "cared-for": { "pos": "a", "pol": "0.375", "std": "0.0" }, "careful": { "pos": "a", "pol": "0.4", "std": "0.224" }, "carminative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "carmine": { "pos": "a", "pol": "0.375", "std": "0.0" }, "carnation": { "pos": "a", "pol": "0.375", "std": "0.0" }, "caroche": { "pos": "n", "pol": "0.375", "std": "0.0" }, "carol": { "pos": "n", "pol": "0.313", "std": "0.0" }, "caroling": { "pos": "n", "pol": "0.375", "std": "0.0" }, "carpetbag": { "pos": "a", "pol": "0.375", "std": "0.354" }, "carpeted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "carrying into action": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cash in on": { "pos": "v", "pol": "0.375", "std": "0.0" }, "cashable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cashed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cast on": { "pos": "v", "pol": "0.375", "std": "0.0" }, "castile soap": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cataphatic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cataphatism": { "pos": "n", "pol": "0.375", "std": "0.0" }, "catechesis": { "pos": "n", "pol": "0.375", "std": "0.0" }, "catechetical instruction": { "pos": "n", "pol": "0.375", "std": "0.0" }, "categorematic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "caucus": { "pos": "v", "pol": "0.375", "std": "0.0" }, "caught up": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cautionary": { "pos": "a", "pol": "0.313", "std": "0.177" }, "caw": { "pos": "n", "pol": "0.375", "std": "0.0" }, "celebration": { "pos": "n", "pol": "0.458", "std": "0.072" }, "central": { "pos": "a", "pol": "0.313", "std": "0.265" }, "centralise": { "pos": "v", "pol": "0.375", "std": "0.0" }, "centralize": { "pos": "v", "pol": "0.375", "std": "0.0" }, "centrex": { "pos": "n", "pol": "0.375", "std": "0.0" }, "centrist": { "pos": "a", "pol": "0.375", "std": "0.0" }, "centrosymmetric": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ceramics": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cerebration": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ceremonial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ceremonial dance": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ceremonial occasion": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cerise": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cert": { "pos": "n", "pol": "0.375", "std": "0.0" }, "certain": { "pos": "a", "pol": "0.304", "std": "0.152" }, "certainly": { "pos": "r", "pol": "0.375", "std": "0.0" }, "certificate": { "pos": "n", "pol": "0.313", "std": "0.088" }, "certificate of incorporation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "certification": { "pos": "n", "pol": "0.281", "std": "0.063" }, "ch'i": { "pos": "n", "pol": "0.375", "std": "0.0" }, "challenging": { "pos": "a", "pol": "0.375", "std": "0.125" }, "changed": { "pos": "a", "pol": "0.375", "std": "0.25" }, "changeful": { "pos": "a", "pol": "0.375", "std": "0.0" }, "changing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "character witness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "chariness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "charisma": { "pos": "n", "pol": "0.375", "std": "0.0" }, "charity": { "pos": "n", "pol": "0.275", "std": "0.185" }, "chartreuse": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cheeselike": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cherish": { "pos": "v", "pol": "0.375", "std": "0.0" }, "cherry": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cherry-red": { "pos": "a", "pol": "0.375", "std": "0.0" }, "chichi": { "pos": "n", "pol": "0.25", "std": "0.088" }, "child's game": { "pos": "n", "pol": "0.375", "std": "0.0" }, "child care": { "pos": "n", "pol": "0.375", "std": "0.0" }, "childbearing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "childcare": { "pos": "n", "pol": "0.375", "std": "0.0" }, "childly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "chiliastic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "chin": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chin up": { "pos": "v", "pol": "0.375", "std": "0.0" }, "china": { "pos": "n", "pol": "0.313", "std": "0.088" }, "chinaware": { "pos": "n", "pol": "0.375", "std": "0.0" }, "chirography": { "pos": "n", "pol": "0.375", "std": "0.0" }, "chock-full": { "pos": "a", "pol": "0.375", "std": "0.0" }, "chockablock": { "pos": "a", "pol": "0.375", "std": "0.0" }, "chockful": { "pos": "a", "pol": "0.375", "std": "0.0" }, "chocolate-brown": { "pos": "a", "pol": "0.375", "std": "0.0" }, "choke-full": { "pos": "a", "pol": "0.375", "std": "0.0" }, "chronic": { "pos": "a", "pol": "0.333", "std": "0.072" }, "chuck-full": { "pos": "a", "pol": "0.375", "std": "0.0" }, "chukker-brown": { "pos": "a", "pol": "0.375", "std": "0.0" }, "chummy": { "pos": "a", "pol": "0.375", "std": "0.177" }, "church": { "pos": "v", "pol": "0.375", "std": "0.0" }, "cinnabar": { "pos": "a", "pol": "0.375", "std": "0.0" }, "circumferent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "circumstantial evidence": { "pos": "n", "pol": "0.375", "std": "0.0" }, "circumstantiate": { "pos": "v", "pol": "0.375", "std": "0.0" }, "cissy": { "pos": "a", "pol": "0.375", "std": "0.0" }, "citizen": { "pos": "n", "pol": "0.375", "std": "0.0" }, "civil": { "pos": "a", "pol": "0.292", "std": "0.215" }, "claimant": { "pos": "n", "pol": "0.375", "std": "0.0" }, "clandestine": { "pos": "a", "pol": "0.375", "std": "0.0" }, "clarifying": { "pos": "a", "pol": "0.375", "std": "0.0" }, "clarity": { "pos": "n", "pol": "0.438", "std": "0.088" }, "class-conscious": { "pos": "a", "pol": "0.375", "std": "0.0" }, "classic": { "pos": "a", "pol": "0.25", "std": "0.26" }, "classical": { "pos": "n", "pol": "0.375", "std": "0.0" }, "classical ballet": { "pos": "n", "pol": "0.375", "std": "0.0" }, "classical music": { "pos": "n", "pol": "0.375", "std": "0.0" }, "classy": { "pos": "a", "pol": "0.375", "std": "0.0" }, "clastic": { "pos": "a", "pol": "0.438", "std": "0.265" }, "clean": { "pos": "a", "pol": "0.347", "std": "0.165" }, "clean-cut": { "pos": "a", "pol": "0.313", "std": "0.088" }, "clean-handed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cleanly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cleansing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "clear": { "pos": "n", "pol": "0.25", "std": "0.177" }, "clear-cut": { "pos": "a", "pol": "0.292", "std": "0.331" }, "clear-sighted": { "pos": "a", "pol": "0.438", "std": "0.177" }, "clear and present danger": { "pos": "n", "pol": "0.375", "std": "0.0" }, "clear sailing": { "pos": "n", "pol": "0.375", "std": "0.0" }, "clearcutness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "clearness": { "pos": "n", "pol": "0.438", "std": "0.088" }, "clement": { "pos": "a", "pol": "0.438", "std": "0.177" }, "climbable": { "pos": "a", "pol": "0.438", "std": "0.088" }, "clink": { "pos": "v", "pol": "0.375", "std": "0.0" }, "clinquant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "clip-on": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cloak-and-dagger": { "pos": "a", "pol": "0.375", "std": "0.0" }, "close-fitting": { "pos": "a", "pol": "0.375", "std": "0.0" }, "close-knit": { "pos": "a", "pol": "0.375", "std": "0.0" }, "close-set": { "pos": "a", "pol": "0.375", "std": "0.0" }, "close set": { "pos": "a", "pol": "0.375", "std": "0.0" }, "close up": { "pos": "r", "pol": "0.375", "std": "0.0" }, "closely knit": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cloud-covered": { "pos": "a", "pol": "0.375", "std": "0.0" }, "clowning": { "pos": "n", "pol": "0.313", "std": "0.088" }, "cloying": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cloze": { "pos": "a", "pol": "0.375", "std": "0.0" }, "clubable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "clubbable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "clubbish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cluck": { "pos": "n", "pol": "0.375", "std": "0.0" }, "clucking": { "pos": "n", "pol": "0.375", "std": "0.0" }, "clue in": { "pos": "v", "pol": "0.375", "std": "0.0" }, "clustered": { "pos": "a", "pol": "0.438", "std": "0.088" }, "co-beneficiary": { "pos": "n", "pol": "0.375", "std": "0.0" }, "coagulable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "coalescent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "coalescing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cochon de lait": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cockamamie": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cockamamy": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cocktail dress": { "pos": "n", "pol": "0.375", "std": "0.0" }, "coercive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "coexistent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "coexisting": { "pos": "a", "pol": "0.375", "std": "0.0" }, "coextensive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cognitively": { "pos": "r", "pol": "0.375", "std": "0.0" }, "cognizance": { "pos": "n", "pol": "0.292", "std": "0.217" }, "cognoscente": { "pos": "n", "pol": "0.375", "std": "0.0" }, "coherence": { "pos": "n", "pol": "0.313", "std": "0.088" }, "coherency": { "pos": "n", "pol": "0.313", "std": "0.088" }, "coherent": { "pos": "a", "pol": "0.406", "std": "0.144" }, "coincident": { "pos": "a", "pol": "0.375", "std": "0.177" }, "cold-temperate": { "pos": "a", "pol": "0.375", "std": "0.0" }, "collapsable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "collapsible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "collateral": { "pos": "n", "pol": "0.375", "std": "0.0" }, "collective": { "pos": "a", "pol": "0.292", "std": "0.26" }, "colossal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "colourful": { "pos": "a", "pol": "0.313", "std": "0.265" }, "columned": { "pos": "a", "pol": "0.375", "std": "0.0" }, "combinable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "combinational": { "pos": "a", "pol": "0.375", "std": "0.0" }, "combined": { "pos": "a", "pol": "0.375", "std": "0.0" }, "comburant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "combustive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "come-at-able": { "pos": "a", "pol": "0.438", "std": "0.088" }, "come-on": { "pos": "n", "pol": "0.313", "std": "0.177" }, "comedy": { "pos": "n", "pol": "0.375", "std": "0.265" }, "comforts": { "pos": "n", "pol": "0.375", "std": "0.0" }, "comical": { "pos": "a", "pol": "0.375", "std": "0.0" }, "commemorating": { "pos": "a", "pol": "0.375", "std": "0.0" }, "commemoration": { "pos": "n", "pol": "0.375", "std": "0.0" }, "commemorative": { "pos": "n", "pol": "0.25", "std": "0.0" }, "commend": { "pos": "v", "pol": "0.325", "std": "0.153" }, "commensurable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "commissioned": { "pos": "a", "pol": "0.313", "std": "0.354" }, "common good": { "pos": "n", "pol": "0.375", "std": "0.0" }, "common or garden": { "pos": "a", "pol": "0.375", "std": "0.0" }, "commonweal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "communicable": { "pos": "a", "pol": "0.313", "std": "0.088" }, "community of interests": { "pos": "n", "pol": "0.375", "std": "0.0" }, "community service": { "pos": "n", "pol": "0.438", "std": "0.088" }, "commutable": { "pos": "a", "pol": "0.438", "std": "0.177" }, "commutative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "companionable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "comparable": { "pos": "a", "pol": "0.438", "std": "0.0" }, "compartmental": { "pos": "a", "pol": "0.375", "std": "0.0" }, "compartmentalised": { "pos": "a", "pol": "0.375", "std": "0.0" }, "compartmentalized": { "pos": "a", "pol": "0.375", "std": "0.0" }, "compatibility": { "pos": "n", "pol": "0.313", "std": "0.177" }, "compendious": { "pos": "a", "pol": "0.375", "std": "0.0" }, "compensable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "compensate": { "pos": "v", "pol": "0.292", "std": "0.123" }, "complement": { "pos": "v", "pol": "0.375", "std": "0.0" }, "complete": { "pos": "a", "pol": "0.45", "std": "0.224" }, "completed": { "pos": "a", "pol": "0.417", "std": "0.072" }, "completeness": { "pos": "n", "pol": "0.313", "std": "0.354" }, "completion": { "pos": "n", "pol": "0.313", "std": "0.088" }, "comply": { "pos": "v", "pol": "0.375", "std": "0.0" }, "composed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "comprehended": { "pos": "a", "pol": "0.375", "std": "0.0" }, "comprehensibility": { "pos": "n", "pol": "0.375", "std": "0.0" }, "comprehension": { "pos": "n", "pol": "0.313", "std": "0.265" }, "comprehensiveness": { "pos": "n", "pol": "0.313", "std": "0.088" }, "compressible": { "pos": "a", "pol": "0.438", "std": "0.0" }, "compulsory": { "pos": "a", "pol": "0.375", "std": "0.0" }, "computer readable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "concept": { "pos": "n", "pol": "0.375", "std": "0.0" }, "concert grand": { "pos": "n", "pol": "0.375", "std": "0.0" }, "concert piano": { "pos": "n", "pol": "0.375", "std": "0.0" }, "concertise": { "pos": "v", "pol": "0.375", "std": "0.0" }, "concertize": { "pos": "v", "pol": "0.375", "std": "0.0" }, "concise": { "pos": "a", "pol": "0.375", "std": "0.0" }, "concordant": { "pos": "a", "pol": "0.375", "std": "0.177" }, "conferment": { "pos": "n", "pol": "0.375", "std": "0.0" }, "conferral": { "pos": "n", "pol": "0.375", "std": "0.0" }, "confidential": { "pos": "a", "pol": "0.469", "std": "0.12" }, "confiding": { "pos": "a", "pol": "0.375", "std": "0.0" }, "configured": { "pos": "a", "pol": "0.375", "std": "0.0" }, "confined": { "pos": "a", "pol": "0.292", "std": "0.072" }, "confirm": { "pos": "v", "pol": "0.275", "std": "0.19" }, "confirmable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "confirming": { "pos": "a", "pol": "0.438", "std": "0.354" }, "confluent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "conform to": { "pos": "v", "pol": "0.417", "std": "0.072" }, "conforming": { "pos": "a", "pol": "0.375", "std": "0.0" }, "conformist": { "pos": "n", "pol": "0.375", "std": "0.0" }, "congested": { "pos": "a", "pol": "0.375", "std": "0.0" }, "congratulation": { "pos": "n", "pol": "0.375", "std": "0.177" }, "congruent": { "pos": "a", "pol": "0.438", "std": "0.177" }, "conjectural": { "pos": "a", "pol": "0.375", "std": "0.0" }, "conjoined": { "pos": "a", "pol": "0.375", "std": "0.0" }, "conjoint": { "pos": "a", "pol": "0.375", "std": "0.0" }, "conjugal right": { "pos": "n", "pol": "0.375", "std": "0.0" }, "connectedness": { "pos": "n", "pol": "0.313", "std": "0.088" }, "connective": { "pos": "a", "pol": "0.375", "std": "0.0" }, "connivance": { "pos": "n", "pol": "0.375", "std": "0.177" }, "connive at": { "pos": "v", "pol": "0.375", "std": "0.0" }, "connoisseur": { "pos": "n", "pol": "0.375", "std": "0.0" }, "conquerable": { "pos": "a", "pol": "0.313", "std": "0.0" }, "conscientious": { "pos": "a", "pol": "0.375", "std": "0.0" }, "conscript": { "pos": "v", "pol": "0.375", "std": "0.0" }, "consequentially": { "pos": "r", "pol": "0.375", "std": "0.0" }, "conservatoire": { "pos": "n", "pol": "0.375", "std": "0.0" }, "consistent": { "pos": "a", "pol": "0.281", "std": "0.329" }, "consolidated": { "pos": "a", "pol": "0.313", "std": "0.265" }, "conspicuous": { "pos": "a", "pol": "0.313", "std": "0.088" }, "constancy": { "pos": "n", "pol": "0.292", "std": "0.217" }, "constant": { "pos": "a", "pol": "0.292", "std": "0.375" }, "constituent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "constituted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "constitutional": { "pos": "a", "pol": "0.438", "std": "0.072" }, "constitutive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "constrictive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "construct": { "pos": "n", "pol": "0.375", "std": "0.0" }, "construction paper": { "pos": "n", "pol": "0.375", "std": "0.0" }, "consultancy": { "pos": "n", "pol": "0.375", "std": "0.0" }, "consultant": { "pos": "n", "pol": "0.375", "std": "0.0" }, "consulting service": { "pos": "n", "pol": "0.375", "std": "0.0" }, "consummated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "contagious": { "pos": "a", "pol": "0.438", "std": "0.088" }, "contemplative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "conterminous": { "pos": "a", "pol": "0.333", "std": "0.072" }, "contiguous": { "pos": "a", "pol": "0.333", "std": "0.072" }, "continent": { "pos": "a", "pol": "0.313", "std": "0.354" }, "continuous receiver watch": { "pos": "n", "pol": "0.375", "std": "0.0" }, "contradistinguish": { "pos": "v", "pol": "0.375", "std": "0.0" }, "contrary to fact": { "pos": "a", "pol": "0.375", "std": "0.0" }, "controlling": { "pos": "a", "pol": "0.375", "std": "0.0" }, "controversial": { "pos": "a", "pol": "0.375", "std": "0.0" }, "controversialist": { "pos": "n", "pol": "0.375", "std": "0.0" }, "conveniences": { "pos": "n", "pol": "0.375", "std": "0.0" }, "convenient": { "pos": "a", "pol": "0.438", "std": "0.354" }, "conventionalism": { "pos": "n", "pol": "0.375", "std": "0.0" }, "convertible": { "pos": "a", "pol": "0.333", "std": "0.072" }, "coolheaded": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cooperative": { "pos": "n", "pol": "0.313", "std": "0.088" }, "coordination": { "pos": "n", "pol": "0.313", "std": "0.359" }, "cope with": { "pos": "v", "pol": "0.375", "std": "0.0" }, "copiously": { "pos": "r", "pol": "0.375", "std": "0.0" }, "copiousness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "copulative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "copy editing": { "pos": "n", "pol": "0.375", "std": "0.0" }, "copyrighted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cordate": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cordiform": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cordon bleu": { "pos": "n", "pol": "0.313", "std": "0.0" }, "coreferent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "corn-fed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "corner kick": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cornucopia": { "pos": "n", "pol": "0.438", "std": "0.619" }, "corporal": { "pos": "a", "pol": "0.438", "std": "0.088" }, "corporate": { "pos": "a", "pol": "0.281", "std": "0.217" }, "corporeal": { "pos": "a", "pol": "0.375", "std": "0.088" }, "correspondent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "corroborant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "corroborate": { "pos": "v", "pol": "0.375", "std": "0.125" }, "cosmetic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coterminous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cotton": { "pos": "v", "pol": "0.375", "std": "0.0" }, "countervail": { "pos": "v", "pol": "0.313", "std": "0.177" }, "coup d'oeil": { "pos": "n", "pol": "0.375", "std": "0.0" }, "coupled": { "pos": "a", "pol": "0.375", "std": "0.088" }, "court": { "pos": "v", "pol": "0.292", "std": "0.26" }, "courtesy": { "pos": "n", "pol": "0.375", "std": "0.191" }, "couth": { "pos": "a", "pol": "0.375", "std": "0.0" }, "coveted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cozy": { "pos": "a", "pol": "0.375", "std": "0.577" }, "craft": { "pos": "v", "pol": "0.25", "std": "0.0" }, "cram full": { "pos": "a", "pol": "0.375", "std": "0.0" }, "crank": { "pos": "a", "pol": "0.375", "std": "0.0" }, "crashing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "creak": { "pos": "n", "pol": "0.375", "std": "0.0" }, "creaking": { "pos": "n", "pol": "0.375", "std": "0.0" }, "creamy-yellow": { "pos": "a", "pol": "0.375", "std": "0.0" }, "creature comforts": { "pos": "n", "pol": "0.375", "std": "0.0" }, "credential": { "pos": "n", "pol": "0.375", "std": "0.0" }, "credentialled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "credentials": { "pos": "n", "pol": "0.375", "std": "0.0" }, "credible": { "pos": "a", "pol": "0.292", "std": "0.0" }, "credit crunch": { "pos": "n", "pol": "0.375", "std": "0.0" }, "creditably": { "pos": "r", "pol": "0.375", "std": "0.0" }, "crepitate": { "pos": "v", "pol": "0.375", "std": "0.0" }, "crested": { "pos": "a", "pol": "0.375", "std": "0.0" }, "crisp": { "pos": "a", "pol": "0.271", "std": "0.188" }, "criterial": { "pos": "a", "pol": "0.375", "std": "0.0" }, "criterional": { "pos": "a", "pol": "0.375", "std": "0.0" }, "crocketed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "crosshairs": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cruise": { "pos": "n", "pol": "0.375", "std": "0.0" }, "crystal clear": { "pos": "a", "pol": "0.313", "std": "0.177" }, "cuddlesome": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cuddly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cultivated": { "pos": "a", "pol": "0.333", "std": "0.072" }, "cultivation": { "pos": "n", "pol": "0.275", "std": "0.401" }, "culturally": { "pos": "r", "pol": "0.375", "std": "0.0" }, "cumulative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cuneate": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cupboard love": { "pos": "n", "pol": "0.375", "std": "0.0" }, "curability": { "pos": "n", "pol": "0.375", "std": "0.0" }, "curableness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "curb service": { "pos": "n", "pol": "0.375", "std": "0.0" }, "curiosity": { "pos": "n", "pol": "0.375", "std": "0.177" }, "curvy": { "pos": "a", "pol": "0.375", "std": "0.177" }, "cushioned": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cushiony": { "pos": "a", "pol": "0.375", "std": "0.0" }, "custodial": { "pos": "a", "pol": "0.375", "std": "0.0" }, "customary": { "pos": "a", "pol": "0.375", "std": "0.0" }, "customs union": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cut-and-dried": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cut-and-dry": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cutely": { "pos": "r", "pol": "0.375", "std": "0.0" }, "cytochrome c": { "pos": "n", "pol": "0.375", "std": "0.0" }, "daedal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dainty": { "pos": "a", "pol": "0.438", "std": "0.063" }, "dandified": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dandyish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dark-brown": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dark-green": { "pos": "a", "pol": "0.375", "std": "0.0" }, "daughterly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "daylight": { "pos": "n", "pol": "0.313", "std": "0.265" }, "dazzling": { "pos": "a", "pol": "0.313", "std": "0.088" }, "de-ice": { "pos": "v", "pol": "0.375", "std": "0.0" }, "de jure": { "pos": "r", "pol": "0.375", "std": "0.0" }, "de luxe": { "pos": "a", "pol": "0.375", "std": "0.0" }, "deadbeat dad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dearie": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dearly": { "pos": "r", "pol": "0.333", "std": "0.25" }, "deary": { "pos": "n", "pol": "0.375", "std": "0.0" }, "decency": { "pos": "n", "pol": "0.438", "std": "0.265" }, "decently": { "pos": "r", "pol": "0.375", "std": "0.088" }, "decentralising": { "pos": "a", "pol": "0.375", "std": "0.0" }, "decentralizing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "deciding": { "pos": "a", "pol": "0.375", "std": "0.0" }, "declamatory": { "pos": "a", "pol": "0.375", "std": "0.0" }, "declared": { "pos": "a", "pol": "0.438", "std": "0.088" }, "declassified": { "pos": "a", "pol": "0.375", "std": "0.0" }, "declassify": { "pos": "v", "pol": "0.375", "std": "0.0" }, "decompress": { "pos": "v", "pol": "0.292", "std": "0.26" }, "decompressing": { "pos": "n", "pol": "0.375", "std": "0.0" }, "decompression": { "pos": "n", "pol": "0.313", "std": "0.088" }, "decorate": { "pos": "v", "pol": "0.313", "std": "0.0" }, "decriminalise": { "pos": "v", "pol": "0.375", "std": "0.0" }, "decriminalize": { "pos": "v", "pol": "0.375", "std": "0.0" }, "deducible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "deeds": { "pos": "n", "pol": "0.375", "std": "0.0" }, "deep-yellow": { "pos": "a", "pol": "0.375", "std": "0.0" }, "deep in thought": { "pos": "a", "pol": "0.375", "std": "0.0" }, "definitive": { "pos": "a", "pol": "0.333", "std": "0.191" }, "defog": { "pos": "v", "pol": "0.375", "std": "0.0" }, "defrost": { "pos": "v", "pol": "0.375", "std": "0.0" }, "degenerate": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dehumanisation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dehumanised": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dehumanization": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dehumanized": { "pos": "a", "pol": "0.375", "std": "0.0" }, "deign": { "pos": "v", "pol": "0.375", "std": "0.0" }, "delectable": { "pos": "a", "pol": "0.375", "std": "0.177" }, "delectation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "deliberative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "delible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "delight": { "pos": "v", "pol": "0.25", "std": "0.315" }, "delineate": { "pos": "a", "pol": "0.375", "std": "0.0" }, "delineated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "delivery truck": { "pos": "n", "pol": "0.375", "std": "0.0" }, "delivery van": { "pos": "n", "pol": "0.375", "std": "0.0" }, "delouse": { "pos": "v", "pol": "0.375", "std": "0.0" }, "deltoid": { "pos": "a", "pol": "0.375", "std": "0.0" }, "demagog": { "pos": "n", "pol": "0.375", "std": "0.0" }, "demagogue": { "pos": "n", "pol": "0.375", "std": "0.0" }, "demist": { "pos": "v", "pol": "0.375", "std": "0.0" }, "demonstrable": { "pos": "a", "pol": "0.313", "std": "0.0" }, "demonstrative": { "pos": "a", "pol": "0.438", "std": "0.0" }, "demonstrativeness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "demotic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "demure": { "pos": "a", "pol": "0.375", "std": "0.0" }, "demythologised": { "pos": "a", "pol": "0.375", "std": "0.0" }, "demythologized": { "pos": "a", "pol": "0.375", "std": "0.0" }, "deniable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "denominationally": { "pos": "r", "pol": "0.375", "std": "0.0" }, "dental hygienist": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dependably": { "pos": "r", "pol": "0.375", "std": "0.0" }, "dependant": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dependent": { "pos": "n", "pol": "0.375", "std": "0.0" }, "depicted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "depletable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "depreciating": { "pos": "a", "pol": "0.375", "std": "0.0" }, "deprived": { "pos": "a", "pol": "0.375", "std": "0.0" }, "derivable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "derivative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "derived": { "pos": "a", "pol": "0.375", "std": "0.0" }, "descendant": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "descendent": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "desirability": { "pos": "n", "pol": "0.313", "std": "0.265" }, "desirableness": { "pos": "n", "pol": "0.313", "std": "0.265" }, "destalinise": { "pos": "v", "pol": "0.375", "std": "0.0" }, "destalinize": { "pos": "v", "pol": "0.375", "std": "0.0" }, "detectable": { "pos": "a", "pol": "0.438", "std": "0.0" }, "determinant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "determinative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "determined": { "pos": "a", "pol": "0.275", "std": "0.163" }, "determining": { "pos": "a", "pol": "0.375", "std": "0.0" }, "determinism": { "pos": "n", "pol": "0.375", "std": "0.0" }, "deterministic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "detick": { "pos": "v", "pol": "0.375", "std": "0.0" }, "developed": { "pos": "a", "pol": "0.417", "std": "0.072" }, "deviant": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "deviate": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "devitalisation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "devitalization": { "pos": "n", "pol": "0.375", "std": "0.0" }, "devotional": { "pos": "n", "pol": "0.25", "std": "0.0" }, "devout": { "pos": "a", "pol": "0.438", "std": "0.177" }, "diabatic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "diachronic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "diagonalizable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dialysis": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dicynodont": { "pos": "n", "pol": "0.375", "std": "0.0" }, "didactics": { "pos": "n", "pol": "0.375", "std": "0.0" }, "differentiated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dignified": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dimensioning": { "pos": "a", "pol": "0.375", "std": "0.0" }, "diminishing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dining-room attendant": { "pos": "n", "pol": "0.375", "std": "0.0" }, "diplomatically": { "pos": "r", "pol": "0.375", "std": "0.0" }, "direct trust": { "pos": "n", "pol": "0.375", "std": "0.0" }, "directed": { "pos": "a", "pol": "0.375", "std": "0.177" }, "directional microphone": { "pos": "n", "pol": "0.375", "std": "0.0" }, "disadvantaged": { "pos": "a", "pol": "0.375", "std": "0.0" }, "discerning": { "pos": "a", "pol": "0.406", "std": "0.125" }, "disciplined": { "pos": "a", "pol": "0.438", "std": "0.0" }, "disclosed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "discovered": { "pos": "a", "pol": "0.375", "std": "0.0" }, "discreet": { "pos": "a", "pol": "0.333", "std": "0.072" }, "discrete": { "pos": "a", "pol": "0.375", "std": "0.0" }, "discriminating": { "pos": "a", "pol": "0.438", "std": "0.0" }, "discriminatory": { "pos": "a", "pol": "0.375", "std": "0.237" }, "discursive": { "pos": "a", "pol": "0.438", "std": "0.177" }, "disembody": { "pos": "v", "pol": "0.375", "std": "0.0" }, "disenchanted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "disengage": { "pos": "v", "pol": "0.292", "std": "0.331" }, "disinfectant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "disjunctive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dismissible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "disposed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "disputant": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dissociative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dissoluble": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dissolvable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "distant": { "pos": "a", "pol": "0.275", "std": "0.168" }, "distensible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "distich": { "pos": "n", "pol": "0.375", "std": "0.0" }, "distinct": { "pos": "a", "pol": "0.425", "std": "0.163" }, "distinguishable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "distortable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "distraint": { "pos": "n", "pol": "0.375", "std": "0.0" }, "divergent": { "pos": "a", "pol": "0.313", "std": "0.088" }, "diverging": { "pos": "a", "pol": "0.375", "std": "0.0" }, "divine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "divorced": { "pos": "a", "pol": "0.375", "std": "0.0" }, "do well": { "pos": "v", "pol": "0.375", "std": "0.0" }, "doddering": { "pos": "a", "pol": "0.375", "std": "0.0" }, "doddery": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dog-sized": { "pos": "a", "pol": "0.375", "std": "0.0" }, "doglike": { "pos": "a", "pol": "0.375", "std": "0.0" }, "doll up": { "pos": "v", "pol": "0.375", "std": "0.0" }, "domesticated": { "pos": "a", "pol": "0.313", "std": "0.0" }, "done": { "pos": "a", "pol": "0.375", "std": "0.0" }, "door-to-door": { "pos": "a", "pol": "0.375", "std": "0.177" }, "double crochet": { "pos": "n", "pol": "0.375", "std": "0.0" }, "double standard": { "pos": "n", "pol": "0.375", "std": "0.0" }, "double stitch": { "pos": "n", "pol": "0.375", "std": "0.0" }, "doula": { "pos": "n", "pol": "0.375", "std": "0.0" }, "downmarket": { "pos": "a", "pol": "0.375", "std": "0.0" }, "downright": { "pos": "a", "pol": "0.375", "std": "0.088" }, "downsizing": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dramatic": { "pos": "a", "pol": "0.344", "std": "0.213" }, "drenched": { "pos": "a", "pol": "0.375", "std": "0.0" }, "drenched in": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dressed": { "pos": "a", "pol": "0.313", "std": "0.157" }, "drinking water": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dripless": { "pos": "a", "pol": "0.375", "std": "0.0" }, "driving": { "pos": "a", "pol": "0.438", "std": "0.088" }, "drollery": { "pos": "n", "pol": "0.313", "std": "0.088" }, "dromaeosaur": { "pos": "n", "pol": "0.375", "std": "0.0" }, "drunk": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "drunken": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dry-cleaned": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dry-eyed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "duad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ducky": { "pos": "n", "pol": "0.375", "std": "0.0" }, "due": { "pos": "r", "pol": "0.25", "std": "0.0" }, "duplicable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "duplicatable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "durable": { "pos": "a", "pol": "0.292", "std": "0.125" }, "dustlike": { "pos": "a", "pol": "0.375", "std": "0.0" }, "duteous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dutiful": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dyad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dynamic": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dynamical": { "pos": "a", "pol": "0.375", "std": "0.0" }, "eagle-eyed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "earned": { "pos": "a", "pol": "0.375", "std": "0.0" }, "earthlike": { "pos": "a", "pol": "0.313", "std": "0.088" }, "easy going": { "pos": "n", "pol": "0.375", "std": "0.0" }, "eater": { "pos": "n", "pol": "0.313", "std": "0.265" }, "eccrine": { "pos": "a", "pol": "0.375", "std": "0.0" }, "echo chamber": { "pos": "n", "pol": "0.375", "std": "0.0" }, "echoing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "eclat": { "pos": "n", "pol": "0.375", "std": "0.072" }, "economic aid": { "pos": "n", "pol": "0.375", "std": "0.0" }, "economic growth": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ecumenic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "educate": { "pos": "v", "pol": "0.292", "std": "0.191" }, "educational activity": { "pos": "n", "pol": "0.375", "std": "0.0" }, "educational institution": { "pos": "n", "pol": "0.375", "std": "0.0" }, "educational program": { "pos": "n", "pol": "0.375", "std": "0.0" }, "edutainment": { "pos": "n", "pol": "0.375", "std": "0.0" }, "effaceable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "effective": { "pos": "a", "pol": "0.396", "std": "0.184" }, "effectively": { "pos": "r", "pol": "0.313", "std": "0.0" }, "effectiveness": { "pos": "n", "pol": "0.313", "std": "0.265" }, "effectual": { "pos": "a", "pol": "0.438", "std": "0.088" }, "effeminate": { "pos": "a", "pol": "0.375", "std": "0.0" }, "efficiency": { "pos": "n", "pol": "0.313", "std": "0.53" }, "efficiency engineer": { "pos": "n", "pol": "0.375", "std": "0.0" }, "efficiency expert": { "pos": "n", "pol": "0.375", "std": "0.0" }, "efficient": { "pos": "a", "pol": "0.375", "std": "0.088" }, "efficiently": { "pos": "r", "pol": "0.375", "std": "0.0" }, "efflorescent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "effulgent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "egg-producing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ego ideal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "eightpenny": { "pos": "a", "pol": "0.375", "std": "0.0" }, "either": { "pos": "r", "pol": "0.375", "std": "0.0" }, "elaborate": { "pos": "a", "pol": "0.438", "std": "0.088" }, "elected official": { "pos": "n", "pol": "0.375", "std": "0.0" }, "electrifying": { "pos": "a", "pol": "0.375", "std": "0.0" }, "elegance": { "pos": "n", "pol": "0.438", "std": "0.442" }, "elegant": { "pos": "a", "pol": "0.458", "std": "0.125" }, "elegantly": { "pos": "r", "pol": "0.313", "std": "0.265" }, "elevate": { "pos": "v", "pol": "0.458", "std": "0.402" }, "elevated": { "pos": "a", "pol": "0.333", "std": "0.331" }, "elitist": { "pos": "n", "pol": "0.375", "std": "0.0" }, "elongated": { "pos": "a", "pol": "0.313", "std": "0.088" }, "elucidative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "emancipated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "emasculate": { "pos": "a", "pol": "0.375", "std": "0.0" }, "emasculated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "embellish": { "pos": "v", "pol": "0.344", "std": "0.157" }, "embodied": { "pos": "a", "pol": "0.375", "std": "0.0" }, "embossed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "emergent": { "pos": "a", "pol": "0.313", "std": "0.177" }, "eminent": { "pos": "a", "pol": "0.438", "std": "0.0" }, "emmetropic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "emotional person": { "pos": "n", "pol": "0.375", "std": "0.0" }, "empathetically": { "pos": "r", "pol": "0.375", "std": "0.0" }, "empathy": { "pos": "n", "pol": "0.375", "std": "0.0" }, "emphasizing": { "pos": "n", "pol": "0.375", "std": "0.0" }, "emphatic": { "pos": "a", "pol": "0.292", "std": "0.144" }, "employable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "employment interview": { "pos": "n", "pol": "0.375", "std": "0.0" }, "empower": { "pos": "v", "pol": "0.313", "std": "0.088" }, "empty-bellied": { "pos": "a", "pol": "0.375", "std": "0.0" }, "empyreal": { "pos": "a", "pol": "0.375", "std": "0.53" }, "empyrean": { "pos": "a", "pol": "0.375", "std": "0.53" }, "enamored": { "pos": "a", "pol": "0.375", "std": "0.0" }, "enchanted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "enclothe": { "pos": "v", "pol": "0.375", "std": "0.0" }, "encomium": { "pos": "n", "pol": "0.375", "std": "0.0" }, "endermatic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "endermic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "endogamous": { "pos": "a", "pol": "0.313", "std": "0.088" }, "endogamy": { "pos": "n", "pol": "0.375", "std": "0.0" }, "endorse": { "pos": "v", "pol": "0.406", "std": "0.277" }, "endorser": { "pos": "n", "pol": "0.375", "std": "0.177" }, "endowed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "endue": { "pos": "v", "pol": "0.375", "std": "0.0" }, "energetic": { "pos": "a", "pol": "0.313", "std": "0.088" }, "energy": { "pos": "n", "pol": "0.271", "std": "0.262" }, "enfeoff": { "pos": "v", "pol": "0.375", "std": "0.0" }, "enforceable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "engorged": { "pos": "a", "pol": "0.375", "std": "0.0" }, "engrossed": { "pos": "a", "pol": "0.438", "std": "0.177" }, "enhance": { "pos": "v", "pol": "0.313", "std": "0.265" }, "enhancer": { "pos": "n", "pol": "0.375", "std": "0.0" }, "enjoyableness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "enjoyment": { "pos": "n", "pol": "0.333", "std": "0.125" }, "enlightened": { "pos": "a", "pol": "0.438", "std": "0.0" }, "enlightening": { "pos": "a", "pol": "0.313", "std": "0.265" }, "enliven": { "pos": "v", "pol": "0.375", "std": "0.265" }, "ennoble": { "pos": "v", "pol": "0.375", "std": "0.0" }, "ennobling": { "pos": "a", "pol": "0.438", "std": "0.0" }, "enormous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "enrich": { "pos": "v", "pol": "0.313", "std": "0.0" }, "ensky": { "pos": "v", "pol": "0.375", "std": "0.0" }, "entertainment": { "pos": "n", "pol": "0.375", "std": "0.0" }, "enticement": { "pos": "n", "pol": "0.292", "std": "0.072" }, "entitle": { "pos": "v", "pol": "0.292", "std": "0.072" }, "entitled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "entrancement": { "pos": "n", "pol": "0.375", "std": "0.0" }, "enviousness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "epic": { "pos": "a", "pol": "0.375", "std": "0.354" }, "epicure": { "pos": "n", "pol": "0.375", "std": "0.0" }, "epizootic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "equal": { "pos": "a", "pol": "0.438", "std": "0.442" }, "equating": { "pos": "n", "pol": "0.375", "std": "0.0" }, "equidistant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "equip": { "pos": "v", "pol": "0.375", "std": "0.0" }, "equipped": { "pos": "a", "pol": "0.344", "std": "0.157" }, "equiprobable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "equipt": { "pos": "a", "pol": "0.375", "std": "0.0" }, "erasable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "erectile": { "pos": "a", "pol": "0.313", "std": "0.088" }, "eremitic": { "pos": "a", "pol": "0.313", "std": "0.354" }, "eremitical": { "pos": "a", "pol": "0.313", "std": "0.354" }, "eremitism": { "pos": "n", "pol": "0.375", "std": "0.0" }, "established": { "pos": "a", "pol": "0.275", "std": "0.217" }, "estrous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ethical code": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ethicism": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ethnical": { "pos": "a", "pol": "0.375", "std": "0.0" }, "etiquette": { "pos": "n", "pol": "0.375", "std": "0.0" }, "eucaryotic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "eukaryotic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "eulogise": { "pos": "v", "pol": "0.375", "std": "0.0" }, "eulogist": { "pos": "n", "pol": "0.375", "std": "0.0" }, "eulogium": { "pos": "n", "pol": "0.375", "std": "0.0" }, "eulogize": { "pos": "v", "pol": "0.375", "std": "0.0" }, "eulogy": { "pos": "n", "pol": "0.375", "std": "0.0" }, "euphonic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "euphonical": { "pos": "a", "pol": "0.375", "std": "0.0" }, "eupneic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "eupnoeic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "euthenics": { "pos": "n", "pol": "0.375", "std": "0.0" }, "even-textured": { "pos": "a", "pol": "0.375", "std": "0.0" }, "evenly": { "pos": "r", "pol": "0.375", "std": "0.177" }, "ever-changing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "evidence": { "pos": "v", "pol": "0.292", "std": "0.072" }, "evidentiary": { "pos": "a", "pol": "0.313", "std": "0.265" }, "evocative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ex officio": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ex post facto": { "pos": "a", "pol": "0.375", "std": "0.0" }, "exactitude": { "pos": "n", "pol": "0.375", "std": "0.0" }, "exactness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "exalting": { "pos": "a", "pol": "0.375", "std": "0.0" }, "exaugural": { "pos": "a", "pol": "0.375", "std": "0.0" }, "exceeding": { "pos": "a", "pol": "0.375", "std": "0.0" }, "excel": { "pos": "v", "pol": "0.375", "std": "0.0" }, "excellence": { "pos": "n", "pol": "0.375", "std": "0.088" }, "exceptional": { "pos": "a", "pol": "0.292", "std": "0.439" }, "exceptionally": { "pos": "r", "pol": "0.375", "std": "0.0" }, "exchangeability": { "pos": "n", "pol": "0.375", "std": "0.0" }, "excitable": { "pos": "a", "pol": "0.438", "std": "0.265" }, "excited": { "pos": "a", "pol": "0.313", "std": "0.157" }, "excitingly": { "pos": "r", "pol": "0.375", "std": "0.0" }, "exculpated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "excursionist": { "pos": "n", "pol": "0.375", "std": "0.0" }, "excursive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "exemplary": { "pos": "a", "pol": "0.458", "std": "0.289" }, "exemplifying": { "pos": "a", "pol": "0.375", "std": "0.0" }, "exhaustible": { "pos": "a", "pol": "0.438", "std": "0.177" }, "exist": { "pos": "v", "pol": "0.313", "std": "0.265" }, "existence": { "pos": "n", "pol": "0.313", "std": "0.177" }, "existent": { "pos": "a", "pol": "0.333", "std": "0.144" }, "existing": { "pos": "a", "pol": "0.333", "std": "0.072" }, "exonerated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "expansile": { "pos": "a", "pol": "0.375", "std": "0.0" }, "expediency": { "pos": "n", "pol": "0.375", "std": "0.0" }, "expeditiously": { "pos": "r", "pol": "0.375", "std": "0.0" }, "expendable": { "pos": "a", "pol": "0.438", "std": "0.0" }, "experience": { "pos": "n", "pol": "0.333", "std": "0.125" }, "experiential": { "pos": "a", "pol": "0.375", "std": "0.177" }, "expertise": { "pos": "n", "pol": "0.375", "std": "0.0" }, "expertly": { "pos": "r", "pol": "0.375", "std": "0.0" }, "expertness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "expiable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "explanatory": { "pos": "a", "pol": "0.375", "std": "0.0" }, "exploit": { "pos": "n", "pol": "0.375", "std": "0.0" }, "exploited": { "pos": "a", "pol": "0.375", "std": "0.088" }, "expositive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "expository": { "pos": "a", "pol": "0.375", "std": "0.0" }, "express trust": { "pos": "n", "pol": "0.375", "std": "0.0" }, "expressed": { "pos": "a", "pol": "0.375", "std": "0.354" }, "exquisite": { "pos": "a", "pol": "0.438", "std": "0.188" }, "extendable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "extendible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "extensible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "extensile": { "pos": "a", "pol": "0.375", "std": "0.0" }, "extension course": { "pos": "n", "pol": "0.375", "std": "0.0" }, "extensive": { "pos": "a", "pol": "0.458", "std": "0.191" }, "extra point": { "pos": "n", "pol": "0.375", "std": "0.0" }, "extracapsular surgery": { "pos": "n", "pol": "0.375", "std": "0.0" }, "extracurricular activity": { "pos": "n", "pol": "0.375", "std": "0.0" }, "extravert": { "pos": "n", "pol": "0.375", "std": "0.0" }, "extraverted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "extravertive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "extrovert": { "pos": "n", "pol": "0.375", "std": "0.0" }, "extroverted": { "pos": "a", "pol": "0.375", "std": "0.382" }, "extrovertive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "eye-beaming": { "pos": "n", "pol": "0.375", "std": "0.0" }, "eye-popping": { "pos": "a", "pol": "0.375", "std": "0.0" }, "eye candy": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fabulous": { "pos": "a", "pol": "0.333", "std": "0.361" }, "facetiousness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "facial tissue": { "pos": "n", "pol": "0.375", "std": "0.0" }, "facile": { "pos": "a", "pol": "0.375", "std": "0.072" }, "facilitate": { "pos": "v", "pol": "0.333", "std": "0.577" }, "fact-finding": { "pos": "a", "pol": "0.375", "std": "0.0" }, "failing": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fair": { "pos": "a", "pol": "0.288", "std": "0.265" }, "fair-haired": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fair-mindedness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fair weather": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fairness": { "pos": "n", "pol": "0.344", "std": "0.157" }, "faithfully": { "pos": "r", "pol": "0.375", "std": "0.0" }, "faithfulness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "falsifiable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "familiar": { "pos": "a", "pol": "0.313", "std": "0.063" }, "familiarised": { "pos": "a", "pol": "0.375", "std": "0.0" }, "familiarized": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fancier": { "pos": "n", "pol": "0.375", "std": "0.0" }, "farandole": { "pos": "n", "pol": "0.375", "std": "0.0" }, "faraway": { "pos": "a", "pol": "0.375", "std": "0.177" }, "farce comedy": { "pos": "n", "pol": "0.375", "std": "0.0" }, "farther": { "pos": "a", "pol": "0.313", "std": "0.088" }, "fashionable": { "pos": "a", "pol": "0.417", "std": "0.072" }, "fashionably": { "pos": "r", "pol": "0.375", "std": "0.0" }, "fashioned": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fast-breaking": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fast-paced": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fast buck": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fathomable": { "pos": "a", "pol": "0.438", "std": "0.088" }, "fatigue duty": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fattened": { "pos": "a", "pol": "0.375", "std": "0.0" }, "faultless": { "pos": "a", "pol": "0.375", "std": "0.0" }, "favored": { "pos": "a", "pol": "0.375", "std": "0.0" }, "favorite": { "pos": "a", "pol": "0.438", "std": "0.0" }, "favourite": { "pos": "a", "pol": "0.438", "std": "0.0" }, "feat": { "pos": "n", "pol": "0.375", "std": "0.0" }, "feather one's nest": { "pos": "v", "pol": "0.375", "std": "0.0" }, "feature": { "pos": "v", "pol": "0.313", "std": "0.088" }, "feature of speech": { "pos": "n", "pol": "0.375", "std": "0.0" }, "federate": { "pos": "a", "pol": "0.375", "std": "0.0" }, "federated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fee": { "pos": "n", "pol": "0.25", "std": "0.088" }, "fee tail": { "pos": "n", "pol": "0.375", "std": "0.0" }, "felicitate": { "pos": "v", "pol": "0.375", "std": "0.0" }, "felicitation": { "pos": "n", "pol": "0.375", "std": "0.177" }, "felicitously": { "pos": "r", "pol": "0.375", "std": "0.0" }, "fertility": { "pos": "n", "pol": "0.458", "std": "0.375" }, "fetter": { "pos": "v", "pol": "0.375", "std": "0.0" }, "fettered": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fictile": { "pos": "a", "pol": "0.333", "std": "0.26" }, "fiducial": { "pos": "a", "pol": "0.333", "std": "0.289" }, "field of operation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "filled": { "pos": "a", "pol": "0.292", "std": "0.072" }, "financial aid": { "pos": "n", "pol": "0.375", "std": "0.0" }, "financial audit": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fine": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fine-textured": { "pos": "a", "pol": "0.375", "std": "0.0" }, "finesse": { "pos": "n", "pol": "0.375", "std": "0.0" }, "finish out": { "pos": "v", "pol": "0.375", "std": "0.0" }, "first-string": { "pos": "a", "pol": "0.313", "std": "0.088" }, "first-year": { "pos": "a", "pol": "0.375", "std": "0.0" }, "first aid": { "pos": "n", "pol": "0.375", "std": "0.0" }, "first water": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fish louse": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fissile": { "pos": "a", "pol": "0.375", "std": "0.088" }, "fit out": { "pos": "v", "pol": "0.375", "std": "0.0" }, "fitly": { "pos": "r", "pol": "0.375", "std": "0.0" }, "fitness": { "pos": "n", "pol": "0.406", "std": "0.413" }, "fitted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fitted out": { "pos": "a", "pol": "0.438", "std": "0.265" }, "fittingly": { "pos": "r", "pol": "0.375", "std": "0.0" }, "flag waving": { "pos": "n", "pol": "0.375", "std": "0.0" }, "flammable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "flatter": { "pos": "v", "pol": "0.375", "std": "0.0" }, "flatus-relieving": { "pos": "a", "pol": "0.375", "std": "0.0" }, "flawless": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fleet": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fleeting": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fleshed out": { "pos": "a", "pol": "0.375", "std": "0.0" }, "flexibility": { "pos": "n", "pol": "0.333", "std": "0.072" }, "flexible": { "pos": "a", "pol": "0.375", "std": "0.358" }, "flexibleness": { "pos": "n", "pol": "0.313", "std": "0.088" }, "flipper-like": { "pos": "a", "pol": "0.375", "std": "0.0" }, "floodlighted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "floodlit": { "pos": "a", "pol": "0.375", "std": "0.0" }, "flowing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fluent": { "pos": "a", "pol": "0.438", "std": "0.177" }, "fluid": { "pos": "a", "pol": "0.35", "std": "0.068" }, "flush": { "pos": "a", "pol": "0.438", "std": "0.088" }, "flushed": { "pos": "a", "pol": "0.375", "std": "0.354" }, "fly the coop": { "pos": "v", "pol": "0.375", "std": "0.0" }, "flying colors": { "pos": "n", "pol": "0.375", "std": "0.0" }, "flying colours": { "pos": "n", "pol": "0.375", "std": "0.0" }, "flying start": { "pos": "n", "pol": "0.313", "std": "0.088" }, "focused": { "pos": "a", "pol": "0.375", "std": "0.125" }, "focussed": { "pos": "a", "pol": "0.375", "std": "0.177" }, "foodie": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fool": { "pos": "n", "pol": "0.292", "std": "0.191" }, "football hero": { "pos": "n", "pol": "0.375", "std": "0.0" }, "footfall": { "pos": "n", "pol": "0.375", "std": "0.0" }, "footloose": { "pos": "a", "pol": "0.375", "std": "0.0" }, "foppish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "for certain": { "pos": "r", "pol": "0.375", "std": "0.0" }, "for sale": { "pos": "a", "pol": "0.375", "std": "0.0" }, "forbearance": { "pos": "n", "pol": "0.313", "std": "0.177" }, "force-out": { "pos": "n", "pol": "0.375", "std": "0.0" }, "force out": { "pos": "n", "pol": "0.375", "std": "0.0" }, "force play": { "pos": "n", "pol": "0.375", "std": "0.0" }, "forceful": { "pos": "a", "pol": "0.313", "std": "0.0" }, "foredate": { "pos": "v", "pol": "0.375", "std": "0.0" }, "foremost": { "pos": "a", "pol": "0.292", "std": "0.289" }, "forensic": { "pos": "a", "pol": "0.313", "std": "0.088" }, "forethought": { "pos": "n", "pol": "0.438", "std": "0.177" }, "forethoughtful": { "pos": "a", "pol": "0.375", "std": "0.0" }, "formal": { "pos": "a", "pol": "0.354", "std": "0.292" }, "formalised": { "pos": "a", "pol": "0.375", "std": "0.177" }, "formalities": { "pos": "n", "pol": "0.375", "std": "0.0" }, "formalized": { "pos": "a", "pol": "0.375", "std": "0.177" }, "formidable": { "pos": "a", "pol": "0.313", "std": "0.354" }, "forthcoming": { "pos": "a", "pol": "0.292", "std": "0.315" }, "forthright": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fortified": { "pos": "a", "pol": "0.313", "std": "0.088" }, "fortnightly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "forward motion": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fosterage": { "pos": "n", "pol": "0.438", "std": "0.088" }, "fostering": { "pos": "n", "pol": "0.438", "std": "0.088" }, "four-pronged": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fourhanded": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fourpenny": { "pos": "a", "pol": "0.375", "std": "0.0" }, "foursquare": { "pos": "a", "pol": "0.375", "std": "0.0" }, "frank": { "pos": "a", "pol": "0.313", "std": "0.0" }, "franklin": { "pos": "n", "pol": "0.375", "std": "0.0" }, "free": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "free-associate": { "pos": "v", "pol": "0.375", "std": "0.0" }, "free-spoken": { "pos": "a", "pol": "0.375", "std": "0.0" }, "free agency": { "pos": "n", "pol": "0.375", "std": "0.0" }, "free hand": { "pos": "n", "pol": "0.375", "std": "0.0" }, "free people": { "pos": "n", "pol": "0.375", "std": "0.0" }, "free will": { "pos": "n", "pol": "0.375", "std": "0.0" }, "freeborn": { "pos": "a", "pol": "0.375", "std": "0.0" }, "freedom of the press": { "pos": "n", "pol": "0.375", "std": "0.0" }, "freehanded": { "pos": "a", "pol": "0.375", "std": "0.088" }, "freeload": { "pos": "v", "pol": "0.375", "std": "0.0" }, "freely": { "pos": "r", "pol": "0.375", "std": "0.0" }, "freemail": { "pos": "n", "pol": "0.375", "std": "0.0" }, "freshen": { "pos": "v", "pol": "0.458", "std": "0.144" }, "freshman": { "pos": "a", "pol": "0.375", "std": "0.0" }, "friendless": { "pos": "a", "pol": "0.375", "std": "0.0" }, "frier": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fringe benefit": { "pos": "n", "pol": "0.375", "std": "0.0" }, "frothy": { "pos": "a", "pol": "0.375", "std": "0.354" }, "fruitful": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fucking": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fugitive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fulfilled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fulgurant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fulgurous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "full": { "pos": "a", "pol": "0.391", "std": "0.115" }, "full-clad": { "pos": "a", "pol": "0.375", "std": "0.0" }, "full-face": { "pos": "a", "pol": "0.375", "std": "0.0" }, "full-fledged": { "pos": "a", "pol": "0.438", "std": "0.177" }, "full-grown": { "pos": "a", "pol": "0.375", "std": "0.0" }, "full-length": { "pos": "a", "pol": "0.313", "std": "0.088" }, "full-scale": { "pos": "a", "pol": "0.375", "std": "0.0" }, "full-term": { "pos": "a", "pol": "0.375", "std": "0.0" }, "full-time": { "pos": "r", "pol": "0.375", "std": "0.0" }, "full house": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fullness": { "pos": "n", "pol": "0.375", "std": "0.177" }, "fully fledged": { "pos": "a", "pol": "0.438", "std": "0.177" }, "fully grown": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fun run": { "pos": "n", "pol": "0.375", "std": "0.0" }, "functional": { "pos": "a", "pol": "0.396", "std": "0.215" }, "functionality": { "pos": "n", "pol": "0.375", "std": "0.0" }, "functionally": { "pos": "r", "pol": "0.375", "std": "0.0" }, "functioning": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fundamental": { "pos": "a", "pol": "0.417", "std": "0.125" }, "fungibility": { "pos": "n", "pol": "0.375", "std": "0.0" }, "funrun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fur-bearing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "furbish up": { "pos": "v", "pol": "0.375", "std": "0.0" }, "furnish": { "pos": "v", "pol": "0.313", "std": "0.088" }, "gag": { "pos": "n", "pol": "0.375", "std": "0.354" }, "gain": { "pos": "n", "pol": "0.281", "std": "0.298" }, "gallantry": { "pos": "n", "pol": "0.458", "std": "0.402" }, "galore": { "pos": "a", "pol": "0.375", "std": "0.177" }, "garb": { "pos": "v", "pol": "0.375", "std": "0.0" }, "garbed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "gardant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "garment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "garmented": { "pos": "a", "pol": "0.375", "std": "0.0" }, "gas system": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gastronome": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gelded": { "pos": "a", "pol": "0.375", "std": "0.0" }, "genealogist": { "pos": "n", "pol": "0.375", "std": "0.0" }, "general knowledge": { "pos": "n", "pol": "0.375", "std": "0.0" }, "general verdict": { "pos": "n", "pol": "0.375", "std": "0.0" }, "generative": { "pos": "a", "pol": "0.313", "std": "0.088" }, "generosity": { "pos": "n", "pol": "0.375", "std": "0.088" }, "generous": { "pos": "a", "pol": "0.417", "std": "0.144" }, "generousness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "genial": { "pos": "a", "pol": "0.458", "std": "0.545" }, "genius": { "pos": "n", "pol": "0.35", "std": "0.326" }, "genius loci": { "pos": "n", "pol": "0.313", "std": "0.088" }, "gentlemen's agreement": { "pos": "n", "pol": "0.375", "std": "0.0" }, "genus Antheraea": { "pos": "n", "pol": "0.375", "std": "0.0" }, "genus Gobio": { "pos": "n", "pol": "0.375", "std": "0.0" }, "germicidal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "get": { "pos": "n", "pol": "0.375", "std": "0.0" }, "get along": { "pos": "v", "pol": "0.417", "std": "0.52" }, "get the hang": { "pos": "v", "pol": "0.375", "std": "0.0" }, "giant kangaroo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gift": { "pos": "v", "pol": "0.313", "std": "0.0" }, "gift-wrap": { "pos": "v", "pol": "0.375", "std": "0.0" }, "gigot": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gilded": { "pos": "a", "pol": "0.344", "std": "0.125" }, "gilt": { "pos": "a", "pol": "0.375", "std": "0.0" }, "gimbaled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "girlish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "give care": { "pos": "v", "pol": "0.375", "std": "0.0" }, "give forth": { "pos": "v", "pol": "0.375", "std": "0.0" }, "give suck": { "pos": "v", "pol": "0.375", "std": "0.0" }, "give the eye": { "pos": "v", "pol": "0.375", "std": "0.0" }, "give the once over": { "pos": "v", "pol": "0.375", "std": "0.0" }, "glam up": { "pos": "v", "pol": "0.375", "std": "0.0" }, "glamorisation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "glamorization": { "pos": "n", "pol": "0.375", "std": "0.0" }, "glamorous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "glamourisation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "glamourization": { "pos": "n", "pol": "0.375", "std": "0.0" }, "glamourous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "glance": { "pos": "n", "pol": "0.375", "std": "0.0" }, "glassed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "glib-tongued": { "pos": "a", "pol": "0.375", "std": "0.0" }, "glibness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "glimmery": { "pos": "a", "pol": "0.375", "std": "0.0" }, "glistening": { "pos": "a", "pol": "0.375", "std": "0.0" }, "glorification": { "pos": "n", "pol": "0.292", "std": "0.144" }, "glorified": { "pos": "a", "pol": "0.375", "std": "0.0" }, "glorify": { "pos": "v", "pol": "0.281", "std": "0.217" }, "glory": { "pos": "n", "pol": "0.333", "std": "0.072" }, "gluey": { "pos": "a", "pol": "0.375", "std": "0.0" }, "glutinous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "glutted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "gnostic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "go-to-meeting": { "pos": "a", "pol": "0.375", "std": "0.0" }, "go far": { "pos": "v", "pol": "0.313", "std": "0.088" }, "go through the motions": { "pos": "v", "pol": "0.375", "std": "0.0" }, "go to": { "pos": "v", "pol": "0.375", "std": "0.0" }, "gobble": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gobsmacked": { "pos": "a", "pol": "0.375", "std": "0.0" }, "godlike": { "pos": "a", "pol": "0.313", "std": "0.088" }, "godly": { "pos": "a", "pol": "0.313", "std": "0.177" }, "goggle-eyed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "gold": { "pos": "a", "pol": "0.375", "std": "0.0" }, "gold rush": { "pos": "n", "pol": "0.375", "std": "0.177" }, "gold standard": { "pos": "n", "pol": "0.313", "std": "0.265" }, "golden potto": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gong": { "pos": "v", "pol": "0.375", "std": "0.0" }, "good fortune": { "pos": "n", "pol": "0.438", "std": "0.265" }, "good luck": { "pos": "n", "pol": "0.375", "std": "0.191" }, "good word": { "pos": "n", "pol": "0.375", "std": "0.088" }, "gooey": { "pos": "a", "pol": "0.375", "std": "0.0" }, "goofy": { "pos": "a", "pol": "0.375", "std": "0.0" }, "gourmet": { "pos": "n", "pol": "0.375", "std": "0.0" }, "grace": { "pos": "v", "pol": "0.313", "std": "0.0" }, "gracefully": { "pos": "r", "pol": "0.313", "std": "0.177" }, "gracile": { "pos": "a", "pol": "0.375", "std": "0.0" }, "gracility": { "pos": "n", "pol": "0.375", "std": "0.0" }, "grandmaster": { "pos": "n", "pol": "0.375", "std": "0.0" }, "grandness": { "pos": "n", "pol": "0.375", "std": "0.339" }, "grassroots": { "pos": "a", "pol": "0.375", "std": "0.177" }, "grazing land": { "pos": "n", "pol": "0.375", "std": "0.0" }, "great": { "pos": "n", "pol": "0.375", "std": "0.0" }, "great bellied": { "pos": "a", "pol": "0.375", "std": "0.0" }, "great grey kangaroo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "greenish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "gregarious": { "pos": "a", "pol": "0.333", "std": "0.125" }, "grin": { "pos": "n", "pol": "0.375", "std": "0.0" }, "grinning": { "pos": "n", "pol": "0.375", "std": "0.0" }, "groomed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "grown": { "pos": "a", "pol": "0.375", "std": "0.0" }, "grownup": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gruntle": { "pos": "v", "pol": "0.375", "std": "0.0" }, "guardant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "guardian angel": { "pos": "n", "pol": "0.375", "std": "0.0" }, "guardian spirit": { "pos": "n", "pol": "0.375", "std": "0.0" }, "guiding": { "pos": "a", "pol": "0.438", "std": "0.0" }, "guiltless": { "pos": "a", "pol": "0.375", "std": "0.0" }, "gum-like": { "pos": "a", "pol": "0.375", "std": "0.0" }, "gumption": { "pos": "n", "pol": "0.313", "std": "0.177" }, "gung ho": { "pos": "a", "pol": "0.375", "std": "0.0" }, "habilimented": { "pos": "a", "pol": "0.375", "std": "0.0" }, "habitual": { "pos": "a", "pol": "0.375", "std": "0.0" }, "had best": { "pos": "v", "pol": "0.375", "std": "0.0" }, "half-hardy": { "pos": "a", "pol": "0.375", "std": "0.0" }, "half-holiday": { "pos": "n", "pol": "0.375", "std": "0.0" }, "half-hourly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "half-yearly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hand-crafted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "handed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "handicapped person": { "pos": "n", "pol": "0.375", "std": "0.0" }, "handicraft": { "pos": "n", "pol": "0.313", "std": "0.088" }, "handiness": { "pos": "n", "pol": "0.313", "std": "0.088" }, "handmade": { "pos": "a", "pol": "0.375", "std": "0.0" }, "handrest": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hands-down": { "pos": "a", "pol": "0.375", "std": "0.0" }, "handsewn": { "pos": "a", "pol": "0.375", "std": "0.0" }, "handstamp": { "pos": "n", "pol": "0.25", "std": "0.0" }, "handstitched": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hanging wall": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hanky panky": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hapax legomenon": { "pos": "n", "pol": "0.375", "std": "0.0" }, "haphazard": { "pos": "a", "pol": "0.313", "std": "0.0" }, "hardcore": { "pos": "a", "pol": "0.375", "std": "0.088" }, "harlequinade": { "pos": "n", "pol": "0.375", "std": "0.0" }, "harmonic": { "pos": "a", "pol": "0.35", "std": "0.298" }, "harmonics": { "pos": "n", "pol": "0.375", "std": "0.0" }, "harmony": { "pos": "n", "pol": "0.3", "std": "0.311" }, "harpoon": { "pos": "v", "pol": "0.375", "std": "0.0" }, "hastate": { "pos": "a", "pol": "0.375", "std": "0.0" }, "haute cuisine": { "pos": "n", "pol": "0.375", "std": "0.0" }, "have a ball": { "pos": "v", "pol": "0.375", "std": "0.0" }, "have a good time": { "pos": "v", "pol": "0.375", "std": "0.0" }, "head and shoulders above": { "pos": "r", "pol": "0.375", "std": "0.0" }, "head for the hills": { "pos": "v", "pol": "0.375", "std": "0.0" }, "head trip": { "pos": "n", "pol": "0.313", "std": "0.0" }, "headed": { "pos": "a", "pol": "0.281", "std": "0.161" }, "heads-up": { "pos": "a", "pol": "0.375", "std": "0.0" }, "heady": { "pos": "a", "pol": "0.333", "std": "0.375" }, "heal": { "pos": "v", "pol": "0.375", "std": "0.26" }, "healed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "health": { "pos": "n", "pol": "0.375", "std": "0.265" }, "heart-shaped": { "pos": "a", "pol": "0.375", "std": "0.0" }, "heated": { "pos": "a", "pol": "0.313", "std": "0.088" }, "heaven": { "pos": "n", "pol": "0.375", "std": "0.0" }, "heavy-duty": { "pos": "a", "pol": "0.375", "std": "0.0" }, "heavy-limbed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hebdomadal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hebdomadary": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hedonism": { "pos": "n", "pol": "0.313", "std": "0.088" }, "heedful": { "pos": "a", "pol": "0.375", "std": "0.125" }, "heedfulness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hefty": { "pos": "a", "pol": "0.333", "std": "0.125" }, "heightening": { "pos": "a", "pol": "0.375", "std": "0.0" }, "help oneself": { "pos": "v", "pol": "0.375", "std": "0.0" }, "hep": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hermetic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "heroic": { "pos": "a", "pol": "0.275", "std": "0.259" }, "het": { "pos": "a", "pol": "0.375", "std": "0.0" }, "heterosis": { "pos": "n", "pol": "0.375", "std": "0.0" }, "heyday": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hick": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hiding place": { "pos": "n", "pol": "0.375", "std": "0.0" }, "high-energy": { "pos": "a", "pol": "0.292", "std": "0.331" }, "high-flown": { "pos": "a", "pol": "0.375", "std": "0.265" }, "high-octane": { "pos": "a", "pol": "0.375", "std": "0.177" }, "high-potential": { "pos": "a", "pol": "0.375", "std": "0.0" }, "high-power": { "pos": "a", "pol": "0.375", "std": "0.0" }, "high-ranking": { "pos": "a", "pol": "0.375", "std": "0.0" }, "high-speed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "high-velocity": { "pos": "a", "pol": "0.375", "std": "0.0" }, "high-voltage": { "pos": "a", "pol": "0.375", "std": "0.177" }, "high-yield": { "pos": "a", "pol": "0.375", "std": "0.0" }, "high fidelity sound system": { "pos": "n", "pol": "0.375", "std": "0.0" }, "high season": { "pos": "n", "pol": "0.375", "std": "0.0" }, "higher-ranking": { "pos": "a", "pol": "0.375", "std": "0.0" }, "highly-developed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hightail it": { "pos": "v", "pol": "0.375", "std": "0.0" }, "hiking": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hip": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hip to": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hit-or-miss": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hobbyist": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hold dear": { "pos": "v", "pol": "0.375", "std": "0.0" }, "holidaymaker": { "pos": "n", "pol": "0.375", "std": "0.0" }, "holier-than-thou": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hollow-horned": { "pos": "a", "pol": "0.375", "std": "0.0" }, "holometabolic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "holometabolous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "holy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "home-baked": { "pos": "a", "pol": "0.375", "std": "0.0" }, "home-loving": { "pos": "a", "pol": "0.375", "std": "0.0" }, "home-style": { "pos": "a", "pol": "0.375", "std": "0.0" }, "home away from home": { "pos": "n", "pol": "0.375", "std": "0.0" }, "home from home": { "pos": "n", "pol": "0.375", "std": "0.0" }, "home game": { "pos": "n", "pol": "0.375", "std": "0.0" }, "home invasion": { "pos": "n", "pol": "0.375", "std": "0.0" }, "homemade": { "pos": "a", "pol": "0.375", "std": "0.0" }, "homer": { "pos": "v", "pol": "0.375", "std": "0.0" }, "homeward": { "pos": "r", "pol": "0.25", "std": "0.0" }, "homeward-bound": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hominine": { "pos": "a", "pol": "0.375", "std": "0.0" }, "homocercal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "homogeneous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "homogeneousness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "homogenous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "homophobic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "honest": { "pos": "a", "pol": "0.375", "std": "0.157" }, "honestly": { "pos": "r", "pol": "0.313", "std": "0.265" }, "honey": { "pos": "a", "pol": "0.375", "std": "0.0" }, "honey plant": { "pos": "n", "pol": "0.375", "std": "0.0" }, "honorarium": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hoodwink": { "pos": "v", "pol": "0.313", "std": "0.0" }, "hopped-up": { "pos": "a", "pol": "0.375", "std": "0.0" }, "horned": { "pos": "a", "pol": "0.375", "std": "0.0" }, "horny": { "pos": "a", "pol": "0.292", "std": "0.382" }, "horse-trade": { "pos": "v", "pol": "0.375", "std": "0.0" }, "horsemanship": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hosanna": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hotshot": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hourly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "house-proud": { "pos": "a", "pol": "0.375", "std": "0.0" }, "house-trained": { "pos": "a", "pol": "0.375", "std": "0.0" }, "housebroken": { "pos": "a", "pol": "0.375", "std": "0.0" }, "housecraft": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hulking": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hulky": { "pos": "a", "pol": "0.375", "std": "0.0" }, "human-centered": { "pos": "a", "pol": "0.375", "std": "0.0" }, "human-centred": { "pos": "a", "pol": "0.375", "std": "0.0" }, "humanistic discipline": { "pos": "n", "pol": "0.375", "std": "0.0" }, "humanities": { "pos": "n", "pol": "0.375", "std": "0.0" }, "humbled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "humdinger": { "pos": "n", "pol": "0.375", "std": "0.0" }, "humility": { "pos": "n", "pol": "0.313", "std": "0.0" }, "humongous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "husbandly": { "pos": "a", "pol": "0.313", "std": "0.088" }, "hush-hush": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hushed-up": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hybrid vigor": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hydric": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hydrolyzable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hygrophytic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hymn": { "pos": "v", "pol": "0.25", "std": "0.354" }, "hyperactive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hyperpigmentation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hyperthyroidism": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hypertonic": { "pos": "a", "pol": "0.313", "std": "0.088" }, "hypertonicity": { "pos": "n", "pol": "0.313", "std": "0.177" }, "hypnotic": { "pos": "a", "pol": "0.313", "std": "0.619" }, "hypothetic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hypothetical": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ideal": { "pos": "a", "pol": "0.333", "std": "0.451" }, "idealistic": { "pos": "a", "pol": "0.313", "std": "0.53" }, "ideally": { "pos": "r", "pol": "0.375", "std": "0.0" }, "idiot savant": { "pos": "n", "pol": "0.375", "std": "0.0" }, "if not": { "pos": "r", "pol": "0.375", "std": "0.0" }, "ignitable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ignitible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ilk": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ill-conceived": { "pos": "a", "pol": "0.375", "std": "0.0" }, "illegal possession": { "pos": "n", "pol": "0.375", "std": "0.0" }, "illustrative": { "pos": "a", "pol": "0.438", "std": "0.088" }, "imitative": { "pos": "a", "pol": "0.333", "std": "0.072" }, "immanent": { "pos": "a", "pol": "0.438", "std": "0.177" }, "immunocompetence": { "pos": "n", "pol": "0.375", "std": "0.0" }, "impartial": { "pos": "a", "pol": "0.313", "std": "0.0" }, "impartiality": { "pos": "n", "pol": "0.375", "std": "0.0" }, "impeccable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "impelled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "impelling": { "pos": "a", "pol": "0.375", "std": "0.0" }, "imperturbable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "importance": { "pos": "n", "pol": "0.313", "std": "0.177" }, "important-looking": { "pos": "a", "pol": "0.375", "std": "0.0" }, "impress": { "pos": "n", "pol": "0.375", "std": "0.0" }, "impressed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "impressment": { "pos": "n", "pol": "0.375", "std": "0.0" }, "imprimatur": { "pos": "n", "pol": "0.375", "std": "0.0" }, "improve": { "pos": "v", "pol": "0.438", "std": "0.088" }, "improved": { "pos": "a", "pol": "0.417", "std": "0.289" }, "in": { "pos": "a", "pol": "0.333", "std": "0.125" }, "in agreement": { "pos": "a", "pol": "0.375", "std": "0.0" }, "in demand": { "pos": "a", "pol": "0.375", "std": "0.0" }, "in effect": { "pos": "r", "pol": "0.375", "std": "0.0" }, "in essence": { "pos": "r", "pol": "0.375", "std": "0.0" }, "in good order": { "pos": "r", "pol": "0.375", "std": "0.0" }, "in height": { "pos": "a", "pol": "0.375", "std": "0.0" }, "in league": { "pos": "a", "pol": "0.375", "std": "0.0" }, "in love": { "pos": "a", "pol": "0.375", "std": "0.0" }, "in principle": { "pos": "r", "pol": "0.375", "std": "0.0" }, "in sight": { "pos": "a", "pol": "0.375", "std": "0.0" }, "in stock": { "pos": "a", "pol": "0.375", "std": "0.0" }, "in store": { "pos": "a", "pol": "0.375", "std": "0.0" }, "in style": { "pos": "a", "pol": "0.375", "std": "0.0" }, "in the altogether": { "pos": "a", "pol": "0.375", "std": "0.0" }, "in the buff": { "pos": "a", "pol": "0.375", "std": "0.0" }, "in the public eye": { "pos": "a", "pol": "0.375", "std": "0.0" }, "in the raw": { "pos": "a", "pol": "0.375", "std": "0.0" }, "in theory": { "pos": "r", "pol": "0.375", "std": "0.0" }, "in time": { "pos": "r", "pol": "-0.25", "std": "0.088" }, "in vogue": { "pos": "a", "pol": "0.375", "std": "0.0" }, "inbuilt": { "pos": "a", "pol": "0.375", "std": "0.0" }, "incandescent": { "pos": "a", "pol": "0.438", "std": "0.088" }, "incarnate": { "pos": "a", "pol": "0.313", "std": "0.0" }, "incline bench press": { "pos": "n", "pol": "0.375", "std": "0.0" }, "inclusive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "incommunicative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "incorporate": { "pos": "a", "pol": "0.375", "std": "0.0" }, "incorrupt": { "pos": "a", "pol": "0.313", "std": "0.177" }, "incredible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "incremental": { "pos": "a", "pol": "0.375", "std": "0.0" }, "inculpable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "incumbent on": { "pos": "a", "pol": "0.375", "std": "0.0" }, "independence": { "pos": "n", "pol": "0.313", "std": "0.088" }, "independency": { "pos": "n", "pol": "0.375", "std": "0.0" }, "independent": { "pos": "a", "pol": "0.375", "std": "0.125" }, "indicatory": { "pos": "a", "pol": "0.375", "std": "0.0" }, "indirect evidence": { "pos": "n", "pol": "0.375", "std": "0.0" }, "individual": { "pos": "a", "pol": "0.313", "std": "0.177" }, "individualist": { "pos": "a", "pol": "0.375", "std": "0.0" }, "individualistic": { "pos": "a", "pol": "0.313", "std": "0.177" }, "indivisible by": { "pos": "a", "pol": "0.375", "std": "0.0" }, "indorse": { "pos": "v", "pol": "0.406", "std": "0.277" }, "indorser": { "pos": "n", "pol": "0.375", "std": "0.177" }, "indrawn": { "pos": "a", "pol": "0.375", "std": "0.0" }, "indue": { "pos": "v", "pol": "0.375", "std": "0.0" }, "industrial-strength": { "pos": "a", "pol": "0.375", "std": "0.0" }, "industrialised": { "pos": "a", "pol": "0.375", "std": "0.0" }, "industrialist": { "pos": "n", "pol": "0.375", "std": "0.0" }, "industrialized": { "pos": "a", "pol": "0.375", "std": "0.0" }, "infatuated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "inflammable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "inflationary": { "pos": "a", "pol": "0.375", "std": "0.0" }, "inflected": { "pos": "a", "pol": "0.313", "std": "0.177" }, "influence": { "pos": "v", "pol": "0.333", "std": "0.072" }, "informatory": { "pos": "a", "pol": "0.375", "std": "0.0" }, "infrasonic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ingest": { "pos": "v", "pol": "0.313", "std": "0.088" }, "ingratiatory": { "pos": "a", "pol": "0.438", "std": "0.088" }, "inhibitory": { "pos": "a", "pol": "0.375", "std": "0.0" }, "injectable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "inmarriage": { "pos": "n", "pol": "0.375", "std": "0.0" }, "innings": { "pos": "n", "pol": "0.375", "std": "0.0" }, "inquiring": { "pos": "a", "pol": "0.375", "std": "0.0" }, "insinuating": { "pos": "a", "pol": "0.375", "std": "0.0" }, "inspirational": { "pos": "a", "pol": "0.375", "std": "0.0" }, "instantaneousness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "instinct": { "pos": "a", "pol": "0.375", "std": "0.0" }, "institutionalised": { "pos": "a", "pol": "0.375", "std": "0.0" }, "institutionalized": { "pos": "a", "pol": "0.375", "std": "0.0" }, "instructive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "instrumental": { "pos": "a", "pol": "0.313", "std": "0.442" }, "insured": { "pos": "a", "pol": "0.375", "std": "0.0" }, "intact": { "pos": "a", "pol": "0.344", "std": "0.157" }, "integrative": { "pos": "a", "pol": "0.375", "std": "0.088" }, "integrity": { "pos": "n", "pol": "0.313", "std": "0.088" }, "intellection": { "pos": "n", "pol": "0.375", "std": "0.0" }, "intensional": { "pos": "a", "pol": "0.375", "std": "0.0" }, "intensive care unit": { "pos": "n", "pol": "0.375", "std": "0.0" }, "intentional": { "pos": "a", "pol": "0.375", "std": "0.177" }, "interactive": { "pos": "a", "pol": "0.375", "std": "0.177" }, "interchangeability": { "pos": "n", "pol": "0.375", "std": "0.0" }, "interchangeable": { "pos": "a", "pol": "0.375", "std": "0.177" }, "interchangeableness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "interchurch": { "pos": "a", "pol": "0.375", "std": "0.0" }, "interdenominational": { "pos": "a", "pol": "0.375", "std": "0.0" }, "interest": { "pos": "v", "pol": "0.333", "std": "0.545" }, "interest-bearing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "interest expense": { "pos": "n", "pol": "0.375", "std": "0.0" }, "interested": { "pos": "a", "pol": "0.375", "std": "0.088" }, "interesting": { "pos": "a", "pol": "0.375", "std": "0.0" }, "interfaith": { "pos": "a", "pol": "0.375", "std": "0.0" }, "intermediate": { "pos": "a", "pol": "0.375", "std": "0.0" }, "intermolecular": { "pos": "a", "pol": "0.375", "std": "0.0" }, "interoperable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "interpersonal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "interpretative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "interpretive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "intersexual": { "pos": "a", "pol": "0.313", "std": "0.088" }, "intoxicated": { "pos": "a", "pol": "0.438", "std": "0.0" }, "intragroup": { "pos": "a", "pol": "0.375", "std": "0.0" }, "intriguing": { "pos": "a", "pol": "0.438", "std": "0.0" }, "intrinsical": { "pos": "a", "pol": "0.375", "std": "0.0" }, "introductory": { "pos": "a", "pol": "0.292", "std": "0.144" }, "invaluableness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "investigative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "investigatory": { "pos": "a", "pol": "0.375", "std": "0.0" }, "invigorate": { "pos": "v", "pol": "0.313", "std": "0.188" }, "invigoration": { "pos": "n", "pol": "0.313", "std": "0.0" }, "inward-developing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "inward-moving": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ionic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "irrepressibility": { "pos": "n", "pol": "0.375", "std": "0.0" }, "irreproachable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "isolable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "isolated": { "pos": "a", "pol": "0.271", "std": "0.2" }, "isotropic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "jade": { "pos": "a", "pol": "0.375", "std": "0.0" }, "jade-green": { "pos": "a", "pol": "0.375", "std": "0.0" }, "jaded": { "pos": "a", "pol": "0.375", "std": "0.177" }, "jailed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "jangle": { "pos": "n", "pol": "0.375", "std": "0.0" }, "japery": { "pos": "n", "pol": "0.375", "std": "0.0" }, "jaunt": { "pos": "v", "pol": "0.25", "std": "0.0" }, "jazzy": { "pos": "a", "pol": "0.375", "std": "0.265" }, "jet set": { "pos": "n", "pol": "0.375", "std": "0.0" }, "jiggery-pokery": { "pos": "n", "pol": "0.375", "std": "0.0" }, "jingling": { "pos": "a", "pol": "0.375", "std": "0.0" }, "jingly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "jittering": { "pos": "a", "pol": "0.375", "std": "0.0" }, "job interview": { "pos": "n", "pol": "0.375", "std": "0.0" }, "jocosely": { "pos": "r", "pol": "0.375", "std": "0.0" }, "joined": { "pos": "a", "pol": "0.375", "std": "0.0" }, "joint": { "pos": "a", "pol": "0.292", "std": "0.144" }, "joke": { "pos": "v", "pol": "0.438", "std": "0.265" }, "joyride": { "pos": "n", "pol": "0.375", "std": "0.0" }, "jubilee": { "pos": "n", "pol": "0.375", "std": "0.0" }, "judgement in rem": { "pos": "n", "pol": "0.375", "std": "0.0" }, "judgment in rem": { "pos": "n", "pol": "0.375", "std": "0.0" }, "judicial": { "pos": "a", "pol": "0.313", "std": "0.228" }, "judiciously": { "pos": "r", "pol": "0.375", "std": "0.0" }, "judiciousness": { "pos": "n", "pol": "0.375", "std": "0.265" }, "juicy": { "pos": "a", "pol": "0.344", "std": "0.313" }, "junk food": { "pos": "n", "pol": "0.375", "std": "0.0" }, "junketeer": { "pos": "v", "pol": "0.375", "std": "0.0" }, "junketing": { "pos": "n", "pol": "0.375", "std": "0.0" }, "just the ticket": { "pos": "n", "pol": "0.375", "std": "0.0" }, "justified": { "pos": "a", "pol": "0.375", "std": "0.0" }, "justifiedly": { "pos": "r", "pol": "0.375", "std": "0.0" }, "justly": { "pos": "r", "pol": "0.375", "std": "0.0" }, "justness": { "pos": "n", "pol": "0.313", "std": "0.088" }, "kabbalistic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "keen-sighted": { "pos": "a", "pol": "0.313", "std": "0.0" }, "kempt": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ki": { "pos": "n", "pol": "0.375", "std": "0.0" }, "killjoy": { "pos": "n", "pol": "0.375", "std": "0.0" }, "kinaesthesis": { "pos": "n", "pol": "0.375", "std": "0.0" }, "kinesthesis": { "pos": "n", "pol": "0.375", "std": "0.0" }, "kinesthetics": { "pos": "n", "pol": "0.375", "std": "0.0" }, "king-size": { "pos": "a", "pol": "0.375", "std": "0.0" }, "king-sized": { "pos": "a", "pol": "0.375", "std": "0.0" }, "kinglike": { "pos": "a", "pol": "0.375", "std": "0.0" }, "kingly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "kiwi-sized": { "pos": "a", "pol": "0.375", "std": "0.0" }, "knack": { "pos": "n", "pol": "0.375", "std": "0.0" }, "knight's service": { "pos": "n", "pol": "0.375", "std": "0.0" }, "knightly": { "pos": "a", "pol": "0.313", "std": "0.442" }, "knockdown": { "pos": "a", "pol": "0.375", "std": "0.0" }, "knocking": { "pos": "n", "pol": "0.375", "std": "0.0" }, "know-how": { "pos": "n", "pol": "0.375", "std": "0.0" }, "knowingness": { "pos": "n", "pol": "0.438", "std": "0.265" }, "knowledge base": { "pos": "n", "pol": "0.375", "std": "0.0" }, "knowledge domain": { "pos": "n", "pol": "0.375", "std": "0.0" }, "known": { "pos": "a", "pol": "0.375", "std": "0.0" }, "knuckle under": { "pos": "v", "pol": "0.375", "std": "0.0" }, "labor coach": { "pos": "n", "pol": "0.375", "std": "0.0" }, "labor of love": { "pos": "n", "pol": "0.375", "std": "0.0" }, "labour of love": { "pos": "n", "pol": "0.375", "std": "0.0" }, "laconic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "lactate": { "pos": "v", "pol": "0.375", "std": "0.0" }, "lactating": { "pos": "a", "pol": "0.375", "std": "0.0" }, "lamb roast": { "pos": "n", "pol": "0.375", "std": "0.0" }, "lamplit": { "pos": "a", "pol": "0.375", "std": "0.0" }, "lap-jointed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "lap of luxury": { "pos": "n", "pol": "0.375", "std": "0.0" }, "large": { "pos": "a", "pol": "0.411", "std": "0.173" }, "large-mouthed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "large-scale": { "pos": "a", "pol": "0.438", "std": "0.088" }, "large order": { "pos": "n", "pol": "0.375", "std": "0.0" }, "larger": { "pos": "a", "pol": "0.375", "std": "0.0" }, "largish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "lascivious": { "pos": "a", "pol": "0.375", "std": "0.0" }, "laser-guided bomb": { "pos": "n", "pol": "0.375", "std": "0.0" }, "last respects": { "pos": "n", "pol": "0.375", "std": "0.0" }, "lateness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "latest": { "pos": "a", "pol": "0.375", "std": "0.0" }, "laudability": { "pos": "n", "pol": "0.375", "std": "0.0" }, "laudableness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "lavender": { "pos": "a", "pol": "0.375", "std": "0.0" }, "lavish": { "pos": "a", "pol": "0.375", "std": "0.088" }, "lawful": { "pos": "a", "pol": "0.313", "std": "0.072" }, "lawfulness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "leading": { "pos": "a", "pol": "0.344", "std": "0.125" }, "leave office": { "pos": "v", "pol": "0.375", "std": "0.0" }, "leave out": { "pos": "v", "pol": "0.313", "std": "0.265" }, "left-eyed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "left-hand": { "pos": "a", "pol": "0.313", "std": "0.265" }, "left-hander": { "pos": "n", "pol": "0.313", "std": "0.265" }, "lefty": { "pos": "n", "pol": "0.313", "std": "0.265" }, "leg of lamb": { "pos": "n", "pol": "0.375", "std": "0.0" }, "legal fee": { "pos": "n", "pol": "0.375", "std": "0.0" }, "legal guardian": { "pos": "n", "pol": "0.375", "std": "0.0" }, "legalise": { "pos": "v", "pol": "0.375", "std": "0.0" }, "legalize": { "pos": "v", "pol": "0.375", "std": "0.0" }, "legitimate": { "pos": "v", "pol": "0.292", "std": "0.125" }, "legitimately": { "pos": "r", "pol": "0.438", "std": "0.177" }, "legitimatise": { "pos": "v", "pol": "0.375", "std": "0.0" }, "legitimatize": { "pos": "v", "pol": "0.375", "std": "0.0" }, "legitimise": { "pos": "v", "pol": "0.375", "std": "0.0" }, "legitimize": { "pos": "v", "pol": "0.375", "std": "0.0" }, "leglike": { "pos": "a", "pol": "0.375", "std": "0.0" }, "leisure": { "pos": "n", "pol": "0.375", "std": "0.0" }, "leisure time": { "pos": "n", "pol": "0.375", "std": "0.0" }, "leisured": { "pos": "a", "pol": "0.375", "std": "0.0" }, "leisurely": { "pos": "r", "pol": "0.375", "std": "0.0" }, "lend": { "pos": "v", "pol": "0.333", "std": "0.125" }, "lengthen": { "pos": "v", "pol": "0.313", "std": "0.177" }, "lengthened": { "pos": "a", "pol": "0.375", "std": "0.0" }, "lengthy": { "pos": "a", "pol": "0.375", "std": "0.0" }, "lenient": { "pos": "a", "pol": "0.292", "std": "0.125" }, "lenify": { "pos": "v", "pol": "0.375", "std": "0.0" }, "lens cap": { "pos": "n", "pol": "0.375", "std": "0.0" }, "lens cover": { "pos": "n", "pol": "0.375", "std": "0.0" }, "lenten": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ley": { "pos": "n", "pol": "0.375", "std": "0.0" }, "liberal": { "pos": "a", "pol": "0.3", "std": "0.125" }, "liberal arts": { "pos": "n", "pol": "0.375", "std": "0.0" }, "liberalist": { "pos": "n", "pol": "0.375", "std": "0.0" }, "liberality": { "pos": "n", "pol": "0.313", "std": "0.177" }, "liberalness": { "pos": "n", "pol": "0.313", "std": "0.177" }, "liberated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "libertarian": { "pos": "n", "pol": "0.313", "std": "0.354" }, "libidinous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "licit": { "pos": "a", "pol": "0.375", "std": "0.088" }, "liege lord": { "pos": "n", "pol": "0.375", "std": "0.0" }, "life-sustaining": { "pos": "a", "pol": "0.375", "std": "0.0" }, "light-green": { "pos": "a", "pol": "0.375", "std": "0.0" }, "lighten": { "pos": "v", "pol": "0.396", "std": "0.366" }, "like": { "pos": "n", "pol": "0.313", "std": "0.088" }, "like-minded": { "pos": "a", "pol": "0.375", "std": "0.0" }, "like an expert": { "pos": "r", "pol": "0.375", "std": "0.0" }, "likely": { "pos": "a", "pol": "0.344", "std": "0.177" }, "lilac": { "pos": "a", "pol": "0.375", "std": "0.0" }, "lilac-colored": { "pos": "a", "pol": "0.375", "std": "0.0" }, "lilting": { "pos": "a", "pol": "0.375", "std": "0.0" }, "limber": { "pos": "a", "pol": "0.333", "std": "0.072" }, "limiting": { "pos": "a", "pol": "0.438", "std": "0.088" }, "limnologically": { "pos": "r", "pol": "0.375", "std": "0.0" }, "line-drive double": { "pos": "n", "pol": "0.375", "std": "0.0" }, "line-drive triple": { "pos": "n", "pol": "0.375", "std": "0.0" }, "line double": { "pos": "n", "pol": "0.375", "std": "0.0" }, "line of business": { "pos": "n", "pol": "0.313", "std": "0.088" }, "line triple": { "pos": "n", "pol": "0.375", "std": "0.0" }, "linked": { "pos": "a", "pol": "0.375", "std": "0.0" }, "lionhearted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "liquid": { "pos": "a", "pol": "0.268", "std": "0.112" }, "liquidity crisis": { "pos": "n", "pol": "0.375", "std": "0.0" }, "lissom": { "pos": "a", "pol": "0.375", "std": "0.0" }, "lissome": { "pos": "a", "pol": "0.375", "std": "0.0" }, "listening watch": { "pos": "n", "pol": "0.375", "std": "0.0" }, "literacy": { "pos": "n", "pol": "0.375", "std": "0.0" }, "literal interpretation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "literate": { "pos": "a", "pol": "0.333", "std": "0.26" }, "lithe": { "pos": "a", "pol": "0.375", "std": "0.0" }, "lithe-bodied": { "pos": "a", "pol": "0.375", "std": "0.0" }, "lithesome": { "pos": "a", "pol": "0.375", "std": "0.0" }, "liturgics": { "pos": "n", "pol": "0.375", "std": "0.0" }, "liturgiology": { "pos": "n", "pol": "0.375", "std": "0.0" }, "live": { "pos": "a", "pol": "0.295", "std": "0.227" }, "live it up": { "pos": "v", "pol": "0.375", "std": "0.0" }, "liveborn": { "pos": "a", "pol": "0.375", "std": "0.0" }, "livelong": { "pos": "a", "pol": "0.375", "std": "0.0" }, "lively": { "pos": "a", "pol": "0.479", "std": "0.105" }, "loftiness": { "pos": "n", "pol": "0.313", "std": "0.354" }, "long": { "pos": "a", "pol": "0.264", "std": "0.125" }, "long-bodied": { "pos": "a", "pol": "0.375", "std": "0.0" }, "long-handled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "long-lasting": { "pos": "a", "pol": "0.375", "std": "0.0" }, "long-life": { "pos": "a", "pol": "0.375", "std": "0.0" }, "long-lived": { "pos": "a", "pol": "0.375", "std": "0.0" }, "long-range": { "pos": "a", "pol": "0.438", "std": "0.088" }, "long-snouted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "long suit": { "pos": "n", "pol": "0.438", "std": "0.53" }, "longish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "looking": { "pos": "a", "pol": "0.375", "std": "0.0" }, "loosely knit": { "pos": "a", "pol": "0.375", "std": "0.0" }, "loosen up": { "pos": "v", "pol": "0.275", "std": "0.256" }, "lope": { "pos": "v", "pol": "0.375", "std": "0.0" }, "loud-voiced": { "pos": "a", "pol": "0.375", "std": "0.0" }, "love letter": { "pos": "n", "pol": "0.375", "std": "0.0" }, "loverlike": { "pos": "a", "pol": "0.375", "std": "0.0" }, "loverly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "loving-kindness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "low-budget": { "pos": "a", "pol": "0.375", "std": "0.0" }, "low-cost": { "pos": "a", "pol": "0.375", "std": "0.0" }, "low-priced": { "pos": "a", "pol": "0.375", "std": "0.0" }, "low comedy": { "pos": "n", "pol": "0.375", "std": "0.0" }, "lubricious": { "pos": "a", "pol": "0.313", "std": "0.177" }, "lucid": { "pos": "a", "pol": "0.406", "std": "0.125" }, "luculent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ludicrous": { "pos": "a", "pol": "0.313", "std": "0.088" }, "luscious": { "pos": "a", "pol": "0.438", "std": "0.088" }, "lush": { "pos": "a", "pol": "0.292", "std": "0.331" }, "lushness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "lustily": { "pos": "r", "pol": "0.375", "std": "0.0" }, "lustiness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "luxe": { "pos": "a", "pol": "0.375", "std": "0.0" }, "luxuriance": { "pos": "n", "pol": "0.375", "std": "0.0" }, "luxuriant": { "pos": "a", "pol": "0.458", "std": "0.144" }, "machine-controlled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "machine-driven": { "pos": "a", "pol": "0.375", "std": "0.0" }, "machine readable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "made": { "pos": "a", "pol": "0.333", "std": "0.382" }, "magenta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maggoty": { "pos": "a", "pol": "0.375", "std": "0.0" }, "magnanimous": { "pos": "a", "pol": "0.438", "std": "0.088" }, "magnetised": { "pos": "a", "pol": "0.375", "std": "0.0" }, "magnetized": { "pos": "a", "pol": "0.375", "std": "0.0" }, "maiden voyage": { "pos": "n", "pol": "0.375", "std": "0.0" }, "maidenlike": { "pos": "a", "pol": "0.375", "std": "0.0" }, "maidenly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "main": { "pos": "a", "pol": "0.375", "std": "0.072" }, "maintainable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "major league": { "pos": "n", "pol": "0.375", "std": "0.0" }, "majors": { "pos": "n", "pol": "0.375", "std": "0.0" }, "make clean": { "pos": "v", "pol": "0.375", "std": "0.0" }, "make grow": { "pos": "v", "pol": "0.375", "std": "0.0" }, "make vibrant sounds": { "pos": "v", "pol": "0.375", "std": "0.0" }, "makeover": { "pos": "n", "pol": "0.375", "std": "0.0" }, "man-about-town": { "pos": "n", "pol": "0.375", "std": "0.0" }, "man-sized": { "pos": "a", "pol": "0.375", "std": "0.0" }, "man of action": { "pos": "n", "pol": "0.375", "std": "0.0" }, "man of deeds": { "pos": "n", "pol": "0.375", "std": "0.0" }, "manageability": { "pos": "n", "pol": "0.375", "std": "0.0" }, "manageableness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mandatory": { "pos": "a", "pol": "0.375", "std": "0.0" }, "manful": { "pos": "a", "pol": "0.375", "std": "0.177" }, "manfully": { "pos": "r", "pol": "0.375", "std": "0.0" }, "manicure": { "pos": "n", "pol": "0.375", "std": "0.0" }, "manifest": { "pos": "a", "pol": "0.375", "std": "0.0" }, "manly": { "pos": "r", "pol": "0.375", "std": "0.0" }, "manque": { "pos": "a", "pol": "0.375", "std": "0.0" }, "manumit": { "pos": "v", "pol": "0.375", "std": "0.0" }, "many-sided": { "pos": "a", "pol": "0.292", "std": "0.402" }, "marked": { "pos": "a", "pol": "0.417", "std": "0.191" }, "market research": { "pos": "n", "pol": "0.375", "std": "0.0" }, "marketable": { "pos": "a", "pol": "0.375", "std": "0.191" }, "marketing research": { "pos": "n", "pol": "0.375", "std": "0.0" }, "married": { "pos": "a", "pol": "0.313", "std": "0.177" }, "marveller": { "pos": "n", "pol": "0.375", "std": "0.0" }, "marvellous": { "pos": "a", "pol": "0.458", "std": "0.361" }, "marvelous": { "pos": "a", "pol": "0.458", "std": "0.361" }, "masochistic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "massive": { "pos": "a", "pol": "0.281", "std": "0.25" }, "master race": { "pos": "n", "pol": "0.375", "std": "0.0" }, "masterfully": { "pos": "r", "pol": "0.375", "std": "0.0" }, "masterstroke": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mated": { "pos": "a", "pol": "0.333", "std": "0.072" }, "maternalism": { "pos": "n", "pol": "0.313", "std": "0.0" }, "mathematically": { "pos": "r", "pol": "0.375", "std": "0.0" }, "matronly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "matter-of-course": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mature": { "pos": "a", "pol": "0.45", "std": "0.143" }, "matureness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mauve": { "pos": "a", "pol": "0.375", "std": "0.0" }, "maven": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mavin": { "pos": "n", "pol": "0.375", "std": "0.0" }, "maximation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "maximisation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "maximise": { "pos": "v", "pol": "0.313", "std": "0.177" }, "maximize": { "pos": "v", "pol": "0.313", "std": "0.177" }, "measurable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "measure up": { "pos": "v", "pol": "0.375", "std": "0.0" }, "measured": { "pos": "a", "pol": "0.313", "std": "0.27" }, "mechanic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mediated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "medical aid": { "pos": "n", "pol": "0.375", "std": "0.0" }, "medical care": { "pos": "n", "pol": "0.375", "std": "0.0" }, "medicine": { "pos": "v", "pol": "0.375", "std": "0.0" }, "meditative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "meed": { "pos": "n", "pol": "0.375", "std": "0.0" }, "meet up with": { "pos": "v", "pol": "0.375", "std": "0.0" }, "meeting place": { "pos": "n", "pol": "0.375", "std": "0.0" }, "megahit": { "pos": "n", "pol": "0.375", "std": "0.0" }, "megalomania": { "pos": "n", "pol": "0.375", "std": "0.0" }, "megascopic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "meliorate": { "pos": "v", "pol": "0.438", "std": "0.088" }, "melioration": { "pos": "n", "pol": "0.292", "std": "0.25" }, "mellow": { "pos": "a", "pol": "0.325", "std": "0.112" }, "mellowed": { "pos": "a", "pol": "0.438", "std": "0.177" }, "melodic": { "pos": "a", "pol": "0.313", "std": "0.53" }, "melodiously": { "pos": "r", "pol": "0.375", "std": "0.0" }, "melodramatic": { "pos": "a", "pol": "0.438", "std": "0.088" }, "memorable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "memorialisation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "memorialization": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mendicant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mensch": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mensh": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mental quickness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mentation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "meow": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mercerise": { "pos": "v", "pol": "0.375", "std": "0.0" }, "mercerize": { "pos": "v", "pol": "0.375", "std": "0.0" }, "merchantable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "merciful": { "pos": "a", "pol": "0.438", "std": "0.265" }, "merged": { "pos": "a", "pol": "0.375", "std": "0.0" }, "merging": { "pos": "a", "pol": "0.375", "std": "0.0" }, "meridian": { "pos": "a", "pol": "0.313", "std": "0.177" }, "merit badge": { "pos": "n", "pol": "0.375", "std": "0.0" }, "meritocracy": { "pos": "n", "pol": "0.313", "std": "0.088" }, "mesomorphic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "metal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "metallic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "metalworking": { "pos": "n", "pol": "0.375", "std": "0.0" }, "methodical": { "pos": "a", "pol": "0.375", "std": "0.0" }, "metric": { "pos": "a", "pol": "0.313", "std": "0.088" }, "metrical": { "pos": "a", "pol": "0.313", "std": "0.088" }, "miaou": { "pos": "v", "pol": "0.25", "std": "0.0" }, "miaow": { "pos": "v", "pol": "0.25", "std": "0.0" }, "miaul": { "pos": "n", "pol": "0.375", "std": "0.0" }, "microphoning": { "pos": "n", "pol": "0.375", "std": "0.0" }, "middle-of-the-road": { "pos": "a", "pol": "0.313", "std": "0.0" }, "middling": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "midweekly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mighty": { "pos": "r", "pol": "0.25", "std": "0.0" }, "milch": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mild": { "pos": "a", "pol": "0.458", "std": "0.191" }, "mildness": { "pos": "n", "pol": "0.292", "std": "0.072" }, "milled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "millenarian": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mimetic": { "pos": "a", "pol": "0.313", "std": "0.088" }, "mimic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mind-blowing": { "pos": "a", "pol": "0.313", "std": "0.0" }, "mindfulness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "miraculous": { "pos": "a", "pol": "0.375", "std": "0.265" }, "mismarry": { "pos": "v", "pol": "0.375", "std": "0.0" }, "mixology": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mobile": { "pos": "a", "pol": "0.325", "std": "0.271" }, "mock": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "modal logic": { "pos": "n", "pol": "0.313", "std": "0.177" }, "modeled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "moderately": { "pos": "r", "pol": "0.375", "std": "0.088" }, "moderateness": { "pos": "n", "pol": "0.313", "std": "0.265" }, "moderationism": { "pos": "n", "pol": "0.375", "std": "0.0" }, "modern": { "pos": "a", "pol": "0.313", "std": "0.217" }, "modestness": { "pos": "n", "pol": "0.313", "std": "0.177" }, "modesty": { "pos": "n", "pol": "0.313", "std": "0.177" }, "modifiable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "modish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "modular": { "pos": "a", "pol": "0.375", "std": "0.0" }, "moldable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mollification": { "pos": "n", "pol": "0.375", "std": "0.0" }, "momentaneous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "momentary": { "pos": "a", "pol": "0.375", "std": "0.0" }, "momentous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "monarchal": { "pos": "a", "pol": "0.375", "std": "0.088" }, "monarchical": { "pos": "a", "pol": "0.375", "std": "0.088" }, "moneyed": { "pos": "a", "pol": "0.438", "std": "0.088" }, "moneygrubber": { "pos": "n", "pol": "0.375", "std": "0.0" }, "moneymaking": { "pos": "a", "pol": "0.438", "std": "0.177" }, "monied": { "pos": "a", "pol": "0.375", "std": "0.0" }, "monitrice": { "pos": "n", "pol": "0.375", "std": "0.0" }, "monosemous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "monthly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "moo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mooch": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moon-faced": { "pos": "a", "pol": "0.375", "std": "0.0" }, "moonlit": { "pos": "a", "pol": "0.375", "std": "0.0" }, "moony": { "pos": "a", "pol": "0.313", "std": "0.088" }, "moral force": { "pos": "n", "pol": "0.375", "std": "0.0" }, "moral sense": { "pos": "n", "pol": "0.375", "std": "0.0" }, "morale": { "pos": "n", "pol": "0.313", "std": "0.088" }, "moralisation": { "pos": "n", "pol": "0.313", "std": "0.088" }, "moralise": { "pos": "v", "pol": "0.375", "std": "0.144" }, "moralism": { "pos": "n", "pol": "0.313", "std": "0.0" }, "moralization": { "pos": "n", "pol": "0.313", "std": "0.088" }, "moralize": { "pos": "v", "pol": "0.375", "std": "0.144" }, "mortice": { "pos": "v", "pol": "0.375", "std": "0.0" }, "mortise": { "pos": "v", "pol": "0.375", "std": "0.0" }, "most-favored-nation": { "pos": "a", "pol": "0.375", "std": "0.0" }, "most valuable player": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mother superior": { "pos": "n", "pol": "0.375", "std": "0.0" }, "motherlike": { "pos": "a", "pol": "0.375", "std": "0.0" }, "motherly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "motivating": { "pos": "n", "pol": "0.25", "std": "0.0" }, "motivative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "motivator": { "pos": "n", "pol": "0.375", "std": "0.0" }, "motortruck": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mountaineer": { "pos": "v", "pol": "0.375", "std": "0.0" }, "mounted": { "pos": "a", "pol": "0.438", "std": "0.177" }, "mouse-colored": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mouselike": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mouth-watering": { "pos": "a", "pol": "0.375", "std": "0.0" }, "movable": { "pos": "a", "pol": "0.375", "std": "0.088" }, "mown": { "pos": "a", "pol": "0.375", "std": "0.0" }, "much": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mucilaginous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mudra": { "pos": "n", "pol": "0.375", "std": "0.0" }, "multiform": { "pos": "a", "pol": "0.375", "std": "0.0" }, "multipotent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mummy-brown": { "pos": "a", "pol": "0.375", "std": "0.0" }, "muscle-builder": { "pos": "n", "pol": "0.375", "std": "0.0" }, "muscle builder": { "pos": "n", "pol": "0.375", "std": "0.0" }, "muscle sense": { "pos": "n", "pol": "0.375", "std": "0.0" }, "musclebuilder": { "pos": "n", "pol": "0.375", "std": "0.0" }, "musical": { "pos": "a", "pol": "0.469", "std": "0.177" }, "musicologically": { "pos": "r", "pol": "0.375", "std": "0.0" }, "musing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "musky": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mutability": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mutableness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mutinous": { "pos": "a", "pol": "0.313", "std": "0.0" }, "myrmecophilous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mystifier": { "pos": "n", "pol": "0.375", "std": "0.0" }, "naked as a jaybird": { "pos": "a", "pol": "0.375", "std": "0.0" }, "naming": { "pos": "a", "pol": "0.375", "std": "0.0" }, "narrative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "natural selection": { "pos": "n", "pol": "0.375", "std": "0.0" }, "naughty": { "pos": "a", "pol": "0.375", "std": "0.177" }, "nay": { "pos": "n", "pol": "0.375", "std": "0.0" }, "neat": { "pos": "a", "pol": "0.417", "std": "0.27" }, "nectarous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "needed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "needful": { "pos": "a", "pol": "0.375", "std": "0.0" }, "nem con": { "pos": "r", "pol": "0.375", "std": "0.0" }, "nemine contradicente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "neoclassic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "neoclassical": { "pos": "a", "pol": "0.375", "std": "0.0" }, "neoliberal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "nesting place": { "pos": "n", "pol": "0.375", "std": "0.0" }, "nestled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "net": { "pos": "a", "pol": "0.375", "std": "0.0" }, "net income": { "pos": "n", "pol": "0.375", "std": "0.0" }, "net profit": { "pos": "n", "pol": "0.375", "std": "0.0" }, "nett": { "pos": "a", "pol": "0.375", "std": "0.0" }, "neurotic depression": { "pos": "n", "pol": "0.375", "std": "0.0" }, "neutered": { "pos": "a", "pol": "0.375", "std": "0.0" }, "new-made": { "pos": "a", "pol": "0.375", "std": "0.0" }, "new-mown": { "pos": "a", "pol": "0.375", "std": "0.0" }, "new-sprung": { "pos": "a", "pol": "0.375", "std": "0.0" }, "newborn": { "pos": "a", "pol": "0.313", "std": "0.088" }, "newfangled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "niceness": { "pos": "n", "pol": "0.375", "std": "0.331" }, "night life": { "pos": "n", "pol": "0.313", "std": "0.088" }, "nightlife": { "pos": "n", "pol": "0.313", "std": "0.088" }, "nightly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "nimbly": { "pos": "r", "pol": "0.375", "std": "0.0" }, "ninepenny": { "pos": "a", "pol": "0.375", "std": "0.0" }, "no-hit game": { "pos": "n", "pol": "0.375", "std": "0.0" }, "no-hitter": { "pos": "n", "pol": "0.375", "std": "0.0" }, "noble": { "pos": "a", "pol": "0.375", "std": "0.239" }, "noctilucent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "noiseless": { "pos": "a", "pol": "0.375", "std": "0.0" }, "nonce word": { "pos": "n", "pol": "0.375", "std": "0.0" }, "noncomprehensively": { "pos": "r", "pol": "0.375", "std": "0.0" }, "nonesuch": { "pos": "n", "pol": "0.375", "std": "0.0" }, "nonjudgmental": { "pos": "a", "pol": "0.375", "std": "0.0" }, "nonliterate": { "pos": "a", "pol": "0.375", "std": "0.0" }, "nonpartisanship": { "pos": "n", "pol": "0.375", "std": "0.0" }, "nonprogressive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "nonpurulent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "nonresistant": { "pos": "a", "pol": "0.313", "std": "0.088" }, "nonsectarian": { "pos": "a", "pol": "0.375", "std": "0.0" }, "nonsegmental": { "pos": "a", "pol": "0.375", "std": "0.0" }, "nonstick": { "pos": "a", "pol": "0.375", "std": "0.0" }, "nonsubjective": { "pos": "a", "pol": "0.375", "std": "0.0" }, "nonsuch": { "pos": "n", "pol": "0.375", "std": "0.0" }, "nonsynthetic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "nontoxic": { "pos": "a", "pol": "0.313", "std": "0.088" }, "nonviolent": { "pos": "a", "pol": "0.313", "std": "0.0" }, "normal": { "pos": "a", "pol": "0.438", "std": "0.125" }, "normalcy": { "pos": "n", "pol": "0.313", "std": "0.177" }, "not guilty": { "pos": "a", "pol": "0.375", "std": "0.0" }, "nude": { "pos": "a", "pol": "0.375", "std": "0.0" }, "nudeness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "nudity": { "pos": "n", "pol": "0.375", "std": "0.0" }, "numeracy": { "pos": "n", "pol": "0.375", "std": "0.0" }, "nunnery": { "pos": "n", "pol": "0.375", "std": "0.0" }, "nursing care": { "pos": "n", "pol": "0.375", "std": "0.0" }, "nutrify": { "pos": "v", "pol": "0.375", "std": "0.0" }, "nutritionally": { "pos": "r", "pol": "0.375", "std": "0.0" }, "nutritiousness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "nutritiveness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "oarsmanship": { "pos": "n", "pol": "0.375", "std": "0.0" }, "obedience": { "pos": "n", "pol": "0.333", "std": "0.144" }, "obediently": { "pos": "r", "pol": "0.375", "std": "0.0" }, "object-oriented programing": { "pos": "n", "pol": "0.375", "std": "0.0" }, "object-oriented programming": { "pos": "n", "pol": "0.375", "std": "0.0" }, "objective": { "pos": "a", "pol": "0.313", "std": "0.217" }, "oblanceolate": { "pos": "a", "pol": "0.375", "std": "0.0" }, "obligational": { "pos": "a", "pol": "0.375", "std": "0.0" }, "oblique-angled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "observance": { "pos": "n", "pol": "0.344", "std": "0.177" }, "observant": { "pos": "a", "pol": "0.333", "std": "0.0" }, "observed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "obvious": { "pos": "a", "pol": "0.375", "std": "0.0" }, "occasion": { "pos": "v", "pol": "0.375", "std": "0.0" }, "occidentalise": { "pos": "v", "pol": "0.375", "std": "0.0" }, "occidentalize": { "pos": "v", "pol": "0.375", "std": "0.0" }, "occurrent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ocher": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ochre": { "pos": "a", "pol": "0.375", "std": "0.0" }, "odds-on": { "pos": "a", "pol": "0.375", "std": "0.0" }, "oecumenic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "off the beaten track": { "pos": "a", "pol": "0.375", "std": "0.0" }, "offertory": { "pos": "n", "pol": "0.375", "std": "0.0" }, "officiant": { "pos": "n", "pol": "0.375", "std": "0.0" }, "okeh": { "pos": "n", "pol": "0.375", "std": "0.0" }, "okey": { "pos": "n", "pol": "0.375", "std": "0.0" }, "old-maidish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "old-womanish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "older": { "pos": "a", "pol": "0.417", "std": "0.382" }, "olive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "omnibus": { "pos": "a", "pol": "0.375", "std": "0.0" }, "on-street": { "pos": "a", "pol": "0.375", "std": "0.0" }, "on-the-scene": { "pos": "a", "pol": "0.375", "std": "0.0" }, "on-the-spot": { "pos": "a", "pol": "0.375", "std": "0.0" }, "on the fence": { "pos": "a", "pol": "0.375", "std": "0.0" }, "on the fly": { "pos": "r", "pol": "0.375", "std": "0.0" }, "on the go": { "pos": "a", "pol": "0.375", "std": "0.0" }, "one-eyed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "one-hitter": { "pos": "n", "pol": "0.375", "std": "0.0" }, "one-to-one": { "pos": "a", "pol": "0.375", "std": "0.0" }, "onomatopoeia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "onomatopoeical": { "pos": "a", "pol": "0.375", "std": "0.0" }, "onward motion": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ooh": { "pos": "v", "pol": "0.375", "std": "0.0" }, "openmouthed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "operations research": { "pos": "n", "pol": "0.375", "std": "0.0" }, "operative": { "pos": "a", "pol": "0.313", "std": "0.12" }, "opportunity": { "pos": "n", "pol": "0.375", "std": "0.0" }, "orange": { "pos": "a", "pol": "0.375", "std": "0.0" }, "orangish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "oratorical": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ordained": { "pos": "a", "pol": "0.375", "std": "0.088" }, "ordered": { "pos": "a", "pol": "0.333", "std": "0.26" }, "orderliness": { "pos": "n", "pol": "0.313", "std": "0.177" }, "ordinate": { "pos": "v", "pol": "0.313", "std": "0.088" }, "organic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "organizationally": { "pos": "r", "pol": "0.375", "std": "0.0" }, "organized": { "pos": "a", "pol": "0.292", "std": "0.315" }, "originality": { "pos": "n", "pol": "0.313", "std": "0.177" }, "orotund": { "pos": "a", "pol": "0.313", "std": "0.0" }, "orthodox": { "pos": "a", "pol": "0.375", "std": "0.0" }, "out-and-out": { "pos": "a", "pol": "0.375", "std": "0.0" }, "outcast": { "pos": "a", "pol": "0.375", "std": "0.0" }, "outfit": { "pos": "v", "pol": "0.375", "std": "0.0" }, "outfitted": { "pos": "a", "pol": "0.313", "std": "0.177" }, "outlined": { "pos": "a", "pol": "0.375", "std": "0.0" }, "outrun": { "pos": "v", "pol": "0.375", "std": "0.0" }, "outspoken": { "pos": "a", "pol": "0.375", "std": "0.088" }, "outstandingly": { "pos": "r", "pol": "0.313", "std": "0.177" }, "outward-developing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "outward-moving": { "pos": "a", "pol": "0.375", "std": "0.0" }, "oval-bodied": { "pos": "a", "pol": "0.375", "std": "0.0" }, "over-the-hill": { "pos": "a", "pol": "0.375", "std": "0.0" }, "overachievement": { "pos": "n", "pol": "0.375", "std": "0.0" }, "overactive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "overage": { "pos": "n", "pol": "0.375", "std": "0.0" }, "overaged": { "pos": "a", "pol": "0.375", "std": "0.0" }, "overarm": { "pos": "a", "pol": "0.375", "std": "0.0" }, "overawed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "overbid": { "pos": "v", "pol": "0.313", "std": "0.177" }, "overcareful": { "pos": "a", "pol": "0.375", "std": "0.0" }, "overcast": { "pos": "a", "pol": "0.375", "std": "0.0" }, "overclothe": { "pos": "v", "pol": "0.375", "std": "0.0" }, "overestimate": { "pos": "v", "pol": "0.375", "std": "0.177" }, "overexcited": { "pos": "a", "pol": "0.375", "std": "0.0" }, "overexploitation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "overfond": { "pos": "a", "pol": "0.375", "std": "0.0" }, "overhanded": { "pos": "a", "pol": "0.375", "std": "0.0" }, "overjoy": { "pos": "v", "pol": "0.375", "std": "0.0" }, "overladen": { "pos": "a", "pol": "0.375", "std": "0.0" }, "overlarge": { "pos": "a", "pol": "0.375", "std": "0.0" }, "overloaded": { "pos": "a", "pol": "0.375", "std": "0.0" }, "overmodest": { "pos": "a", "pol": "0.375", "std": "0.0" }, "overnice": { "pos": "a", "pol": "0.375", "std": "0.0" }, "overproud": { "pos": "a", "pol": "0.375", "std": "0.0" }, "overrefined": { "pos": "a", "pol": "0.375", "std": "0.0" }, "oversensitive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "overserious": { "pos": "a", "pol": "0.375", "std": "0.0" }, "oversubscribed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "overuse": { "pos": "n", "pol": "0.375", "std": "0.0" }, "overutilisation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "overutilization": { "pos": "n", "pol": "0.375", "std": "0.0" }, "overwhelming": { "pos": "a", "pol": "0.438", "std": "0.354" }, "ox-eyed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "oxidative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "oxidizable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "packaged": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pact": { "pos": "n", "pol": "0.375", "std": "0.0" }, "padded": { "pos": "a", "pol": "0.375", "std": "0.0" }, "paid": { "pos": "a", "pol": "0.375", "std": "0.191" }, "painstaking": { "pos": "a", "pol": "0.375", "std": "0.0" }, "palatability": { "pos": "n", "pol": "0.375", "std": "0.177" }, "palatableness": { "pos": "n", "pol": "0.375", "std": "0.177" }, "palatial": { "pos": "a", "pol": "0.313", "std": "0.265" }, "palimony": { "pos": "n", "pol": "0.375", "std": "0.0" }, "palliate": { "pos": "v", "pol": "0.438", "std": "0.619" }, "panegyrist": { "pos": "n", "pol": "0.375", "std": "0.0" }, "panel truck": { "pos": "n", "pol": "0.375", "std": "0.0" }, "panoplied": { "pos": "a", "pol": "0.375", "std": "0.0" }, "panoply": { "pos": "n", "pol": "0.375", "std": "0.0" }, "panoptical": { "pos": "a", "pol": "0.375", "std": "0.0" }, "paperback": { "pos": "a", "pol": "0.375", "std": "0.0" }, "paperbacked": { "pos": "a", "pol": "0.375", "std": "0.0" }, "paradise": { "pos": "n", "pol": "0.375", "std": "0.0" }, "paragon": { "pos": "n", "pol": "0.375", "std": "0.088" }, "pardonable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pareve": { "pos": "a", "pol": "0.375", "std": "0.0" }, "partake": { "pos": "v", "pol": "0.333", "std": "0.072" }, "partial": { "pos": "a", "pol": "0.292", "std": "0.191" }, "participating": { "pos": "a", "pol": "0.375", "std": "0.0" }, "party pooper": { "pos": "n", "pol": "0.375", "std": "0.0" }, "parve": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pass completion": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pass with flying colors": { "pos": "v", "pol": "0.375", "std": "0.0" }, "passably": { "pos": "r", "pol": "0.375", "std": "0.0" }, "passionateness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "passive": { "pos": "a", "pol": "0.333", "std": "0.289" }, "pastureland": { "pos": "n", "pol": "0.375", "std": "0.0" }, "patent": { "pos": "a", "pol": "0.438", "std": "0.088" }, "paternalism": { "pos": "n", "pol": "0.375", "std": "0.0" }, "paternalistic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "patient": { "pos": "a", "pol": "0.375", "std": "0.0" }, "patiently": { "pos": "r", "pol": "0.375", "std": "0.0" }, "patrician": { "pos": "a", "pol": "0.438", "std": "0.088" }, "pay dirt": { "pos": "n", "pol": "0.313", "std": "0.088" }, "peachy-colored": { "pos": "a", "pol": "0.375", "std": "0.0" }, "peachy-coloured": { "pos": "a", "pol": "0.375", "std": "0.0" }, "peak": { "pos": "v", "pol": "0.375", "std": "0.0" }, "peak season": { "pos": "n", "pol": "0.375", "std": "0.0" }, "peal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pealing": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pearly razorfish": { "pos": "n", "pol": "0.375", "std": "0.0" }, "peeled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pellucid": { "pos": "a", "pol": "0.313", "std": "0.177" }, "pen-friend": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pen pal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pencil cedar tree": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pending": { "pos": "a", "pol": "0.375", "std": "0.0" }, "penetrating": { "pos": "a", "pol": "0.438", "std": "0.0" }, "penetrative": { "pos": "a", "pol": "0.438", "std": "0.0" }, "penmanship": { "pos": "n", "pol": "0.375", "std": "0.0" }, "penny-wise": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pent-up": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pentecostalism": { "pos": "n", "pol": "0.375", "std": "0.0" }, "perambulating": { "pos": "a", "pol": "0.375", "std": "0.0" }, "perceivable": { "pos": "a", "pol": "0.313", "std": "0.177" }, "perceptible": { "pos": "a", "pol": "0.333", "std": "0.072" }, "perfection": { "pos": "n", "pol": "0.333", "std": "0.144" }, "perigee": { "pos": "n", "pol": "0.375", "std": "0.0" }, "periodical": { "pos": "a", "pol": "0.375", "std": "0.0" }, "peripateticism": { "pos": "n", "pol": "0.375", "std": "0.0" }, "perk": { "pos": "n", "pol": "0.375", "std": "0.0" }, "permission": { "pos": "n", "pol": "0.438", "std": "0.265" }, "permit": { "pos": "v", "pol": "0.333", "std": "0.315" }, "pernickety": { "pos": "a", "pol": "0.375", "std": "0.0" }, "personableness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "personal appeal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "personal magnetism": { "pos": "n", "pol": "0.375", "std": "0.0" }, "personal manner": { "pos": "n", "pol": "0.375", "std": "0.0" }, "personal pronoun": { "pos": "n", "pol": "0.375", "std": "0.0" }, "perspicacity": { "pos": "n", "pol": "0.313", "std": "0.088" }, "perspicuity": { "pos": "n", "pol": "0.375", "std": "0.0" }, "perspicuous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "perspicuousness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "persuade": { "pos": "v", "pol": "0.375", "std": "0.0" }, "persuasion": { "pos": "n", "pol": "0.313", "std": "0.177" }, "pert": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pertinence": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pertinency": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pervert": { "pos": "v", "pol": "-0.292", "std": "0.217" }, "pervious": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pet": { "pos": "a", "pol": "0.375", "std": "0.0" }, "phagocytic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pharisaic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pharisaical": { "pos": "a", "pol": "0.375", "std": "0.0" }, "phase II": { "pos": "n", "pol": "0.375", "std": "0.0" }, "phase III": { "pos": "n", "pol": "0.375", "std": "0.0" }, "phase III clinical trial": { "pos": "n", "pol": "0.375", "std": "0.0" }, "phase II clinical trial": { "pos": "n", "pol": "0.375", "std": "0.0" }, "phenomenon": { "pos": "n", "pol": "0.313", "std": "0.177" }, "philanthropist": { "pos": "n", "pol": "0.375", "std": "0.0" }, "philatelic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "philatelical": { "pos": "a", "pol": "0.375", "std": "0.0" }, "philhellene": { "pos": "a", "pol": "0.375", "std": "0.0" }, "philhellenic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "philhellenism": { "pos": "n", "pol": "0.375", "std": "0.0" }, "phlegmy": { "pos": "a", "pol": "0.375", "std": "0.0" }, "phosphorescent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "photo op": { "pos": "n", "pol": "0.375", "std": "0.0" }, "photo opportunity": { "pos": "n", "pol": "0.375", "std": "0.0" }, "phylogenetically": { "pos": "r", "pol": "0.375", "std": "0.0" }, "physical contact": { "pos": "n", "pol": "0.375", "std": "0.0" }, "physically": { "pos": "r", "pol": "0.375", "std": "0.0" }, "physiologic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pillared": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ping": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pinioned": { "pos": "a", "pol": "0.375", "std": "0.177" }, "pipe down": { "pos": "v", "pol": "0.375", "std": "0.0" }, "piping guan": { "pos": "n", "pol": "0.375", "std": "0.0" }, "placable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "placate": { "pos": "v", "pol": "0.375", "std": "0.0" }, "placeable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "placement center": { "pos": "n", "pol": "0.375", "std": "0.0" }, "placement office": { "pos": "n", "pol": "0.375", "std": "0.0" }, "plain sailing": { "pos": "n", "pol": "0.375", "std": "0.0" }, "plainspoken": { "pos": "a", "pol": "0.375", "std": "0.088" }, "plausibility": { "pos": "n", "pol": "0.375", "std": "0.0" }, "plausibleness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "playboy": { "pos": "n", "pol": "0.375", "std": "0.0" }, "playfulness": { "pos": "n", "pol": "0.417", "std": "0.331" }, "pleasance": { "pos": "n", "pol": "0.313", "std": "0.177" }, "pleasant-smelling": { "pos": "a", "pol": "0.375", "std": "0.0" }, "please": { "pos": "v", "pol": "0.375", "std": "0.315" }, "pleasingly": { "pos": "r", "pol": "0.375", "std": "0.0" }, "pleasure": { "pos": "n", "pol": "0.275", "std": "0.137" }, "pleasure-pain principle": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pleasure-unpleasure principle": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pleasure principle": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pleasure trip": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pliable": { "pos": "a", "pol": "0.469", "std": "0.331" }, "plight": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "plumbable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "plumed scorpionfish": { "pos": "n", "pol": "0.375", "std": "0.0" }, "plummet": { "pos": "v", "pol": "0.375", "std": "0.0" }, "plummy": { "pos": "a", "pol": "0.375", "std": "0.177" }, "pocket-size": { "pos": "a", "pol": "0.313", "std": "0.177" }, "pocket-sized": { "pos": "a", "pol": "0.313", "std": "0.177" }, "pocket knife": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pocketknife": { "pos": "n", "pol": "0.375", "std": "0.0" }, "point after": { "pos": "n", "pol": "0.375", "std": "0.0" }, "point after touchdown": { "pos": "n", "pol": "0.375", "std": "0.0" }, "poised": { "pos": "a", "pol": "0.313", "std": "0.0" }, "pole-handled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "polished": { "pos": "a", "pol": "0.469", "std": "0.12" }, "politesse": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ponderable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pondering": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pop music": { "pos": "n", "pol": "0.375", "std": "0.0" }, "popeyed": { "pos": "a", "pol": "0.313", "std": "0.088" }, "popular": { "pos": "a", "pol": "0.406", "std": "0.277" }, "popularisation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "popularization": { "pos": "n", "pol": "0.375", "std": "0.0" }, "porticoed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "portion": { "pos": "v", "pol": "0.375", "std": "0.0" }, "portrayed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "posh": { "pos": "a", "pol": "0.375", "std": "0.0" }, "positioning": { "pos": "a", "pol": "0.375", "std": "0.0" }, "positively": { "pos": "r", "pol": "0.313", "std": "0.0" }, "positivism": { "pos": "n", "pol": "0.375", "std": "0.265" }, "positivist": { "pos": "n", "pol": "0.375", "std": "0.0" }, "possible": { "pos": "n", "pol": "0.25", "std": "0.354" }, "post-free": { "pos": "a", "pol": "0.375", "std": "0.0" }, "postage meter": { "pos": "n", "pol": "0.375", "std": "0.0" }, "postlude": { "pos": "n", "pol": "0.375", "std": "0.0" }, "postpaid": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pot plant": { "pos": "n", "pol": "0.375", "std": "0.0" }, "potence": { "pos": "n", "pol": "0.375", "std": "0.0" }, "potent": { "pos": "a", "pol": "0.281", "std": "0.102" }, "potentiality": { "pos": "n", "pol": "0.375", "std": "0.442" }, "potentially": { "pos": "r", "pol": "0.375", "std": "0.0" }, "power-driven": { "pos": "a", "pol": "0.375", "std": "0.0" }, "power trip": { "pos": "n", "pol": "0.375", "std": "0.0" }, "practical": { "pos": "a", "pol": "0.406", "std": "0.063" }, "pragmatic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pragmatism": { "pos": "n", "pol": "0.313", "std": "0.088" }, "prairie": { "pos": "n", "pol": "0.375", "std": "0.0" }, "praiseworthiness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "prank": { "pos": "n", "pol": "0.375", "std": "0.088" }, "pre-eminently": { "pos": "r", "pol": "0.375", "std": "0.0" }, "precedented": { "pos": "a", "pol": "0.375", "std": "0.0" }, "precedential": { "pos": "a", "pol": "0.375", "std": "0.0" }, "precision rifle": { "pos": "n", "pol": "0.375", "std": "0.0" }, "preconcerted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "predigested": { "pos": "a", "pol": "0.375", "std": "0.0" }, "predisposed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "predominant": { "pos": "a", "pol": "0.375", "std": "0.177" }, "preeminence": { "pos": "n", "pol": "0.375", "std": "0.0" }, "preeminent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "preeminently": { "pos": "r", "pol": "0.375", "std": "0.0" }, "prefab": { "pos": "a", "pol": "0.375", "std": "0.0" }, "preferent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pregnant": { "pos": "a", "pol": "0.375", "std": "0.315" }, "prejudiced": { "pos": "a", "pol": "0.375", "std": "0.0" }, "premeditated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "prepackaged": { "pos": "a", "pol": "0.375", "std": "0.0" }, "prepacked": { "pos": "a", "pol": "0.375", "std": "0.0" }, "prepaid": { "pos": "a", "pol": "0.375", "std": "0.0" }, "prerequisite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pressing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "prestige": { "pos": "n", "pol": "0.375", "std": "0.0" }, "prestigiousness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "presumable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pretty": { "pos": "r", "pol": "0.375", "std": "0.0" }, "pretty up": { "pos": "v", "pol": "0.375", "std": "0.0" }, "prevail": { "pos": "v", "pol": "0.275", "std": "0.143" }, "price index": { "pos": "n", "pol": "0.375", "std": "0.0" }, "price level": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pricelessness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pride oneself": { "pos": "v", "pol": "0.375", "std": "0.0" }, "priestlike": { "pos": "a", "pol": "0.375", "std": "0.0" }, "primal": { "pos": "a", "pol": "0.375", "std": "0.177" }, "prime": { "pos": "a", "pol": "0.3", "std": "0.285" }, "primrose path": { "pos": "n", "pol": "0.375", "std": "0.0" }, "prink": { "pos": "v", "pol": "0.313", "std": "0.354" }, "printable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "prioress": { "pos": "n", "pol": "0.375", "std": "0.0" }, "prisonlike": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pristine": { "pos": "a", "pol": "0.375", "std": "0.0" }, "privately": { "pos": "r", "pol": "0.313", "std": "0.088" }, "privilege": { "pos": "v", "pol": "0.375", "std": "0.0" }, "probable": { "pos": "a", "pol": "0.375", "std": "0.088" }, "probate": { "pos": "n", "pol": "0.375", "std": "0.0" }, "probate will": { "pos": "n", "pol": "0.375", "std": "0.0" }, "probity": { "pos": "n", "pol": "0.375", "std": "0.0" }, "processional": { "pos": "n", "pol": "0.375", "std": "0.0" }, "proclaimed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "procreative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "product research": { "pos": "n", "pol": "0.375", "std": "0.0" }, "profit-maximising": { "pos": "a", "pol": "0.375", "std": "0.0" }, "profit-maximizing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "profitableness": { "pos": "n", "pol": "0.313", "std": "0.0" }, "profits": { "pos": "n", "pol": "0.375", "std": "0.088" }, "profound": { "pos": "a", "pol": "0.417", "std": "0.129" }, "profusely": { "pos": "r", "pol": "0.375", "std": "0.0" }, "progress": { "pos": "n", "pol": "0.25", "std": "0.072" }, "progressive": { "pos": "n", "pol": "0.25", "std": "0.177" }, "projectile": { "pos": "a", "pol": "0.375", "std": "0.0" }, "prolonged": { "pos": "a", "pol": "0.375", "std": "0.0" }, "promised land": { "pos": "n", "pol": "0.375", "std": "0.0" }, "promote": { "pos": "v", "pol": "0.375", "std": "0.428" }, "proneness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pronged": { "pos": "a", "pol": "0.313", "std": "0.088" }, "pronounceable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "properly": { "pos": "r", "pol": "0.313", "std": "0.177" }, "propitiation": { "pos": "n", "pol": "0.313", "std": "0.442" }, "proportionate": { "pos": "a", "pol": "0.333", "std": "0.191" }, "prosodion": { "pos": "n", "pol": "0.375", "std": "0.0" }, "prostyle": { "pos": "a", "pol": "0.375", "std": "0.0" }, "protracted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "provable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "providential": { "pos": "a", "pol": "0.417", "std": "0.26" }, "prude": { "pos": "n", "pol": "0.375", "std": "0.0" }, "psalm": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pseudoprostyle": { "pos": "a", "pol": "0.375", "std": "0.0" }, "psychic": { "pos": "a", "pol": "0.313", "std": "0.265" }, "psychical": { "pos": "a", "pol": "0.313", "std": "0.265" }, "psychotherapeutic": { "pos": "a", "pol": "0.313", "std": "0.619" }, "public": { "pos": "a", "pol": "0.438", "std": "0.088" }, "public-relations campaign": { "pos": "n", "pol": "0.375", "std": "0.0" }, "public discussion": { "pos": "n", "pol": "0.375", "std": "0.0" }, "public knowledge": { "pos": "n", "pol": "0.375", "std": "0.0" }, "public relations person": { "pos": "n", "pol": "0.375", "std": "0.0" }, "publicised": { "pos": "a", "pol": "0.375", "std": "0.0" }, "publicized": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pubococcygeus exercises": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pug-faced": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pug-nose": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pug-nosed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pulchritude": { "pos": "n", "pol": "0.375", "std": "0.0" }, "punctual": { "pos": "a", "pol": "0.375", "std": "0.0" }, "punster": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pure": { "pos": "a", "pol": "0.321", "std": "0.228" }, "puritan": { "pos": "n", "pol": "0.313", "std": "0.0" }, "purposive": { "pos": "a", "pol": "0.313", "std": "0.0" }, "purulent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pushover": { "pos": "n", "pol": "0.375", "std": "0.088" }, "pussy": { "pos": "a", "pol": "0.375", "std": "0.0" }, "putative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "puzzler": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pyrolytic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "qabalistic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "qi": { "pos": "n", "pol": "0.375", "std": "0.0" }, "qualified": { "pos": "a", "pol": "0.425", "std": "0.19" }, "qualify": { "pos": "v", "pol": "0.268", "std": "0.215" }, "qualifying": { "pos": "n", "pol": "0.313", "std": "0.442" }, "quality control": { "pos": "n", "pol": "0.375", "std": "0.0" }, "queenlike": { "pos": "a", "pol": "0.375", "std": "0.0" }, "queenly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "quick": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "quick-change": { "pos": "a", "pol": "0.375", "std": "0.0" }, "quick-eared": { "pos": "a", "pol": "0.375", "std": "0.0" }, "quick-wittedness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "quick buck": { "pos": "n", "pol": "0.375", "std": "0.0" }, "quiesce": { "pos": "v", "pol": "0.375", "std": "0.0" }, "quiet down": { "pos": "v", "pol": "0.375", "std": "0.0" }, "quotability": { "pos": "n", "pol": "0.375", "std": "0.0" }, "rabble-rouser": { "pos": "n", "pol": "0.375", "std": "0.0" }, "racist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "radial keratotomy": { "pos": "n", "pol": "0.375", "std": "0.0" }, "radially symmetrical": { "pos": "a", "pol": "0.375", "std": "0.0" }, "radiant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "raffish": { "pos": "a", "pol": "0.313", "std": "0.0" }, "railroad ticket": { "pos": "n", "pol": "0.375", "std": "0.0" }, "raiment": { "pos": "v", "pol": "0.375", "std": "0.0" }, "rainbow lorikeet": { "pos": "n", "pol": "0.375", "std": "0.0" }, "rainbow runner": { "pos": "n", "pol": "0.375", "std": "0.0" }, "rakish": { "pos": "a", "pol": "0.313", "std": "0.0" }, "rangeland": { "pos": "n", "pol": "0.375", "std": "0.0" }, "rangy": { "pos": "a", "pol": "0.375", "std": "0.125" }, "ranking": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rataplan": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ratification": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ratify": { "pos": "v", "pol": "0.375", "std": "0.0" }, "rationalist": { "pos": "n", "pol": "0.375", "std": "0.0" }, "rationality": { "pos": "n", "pol": "0.438", "std": "0.088" }, "rationalness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ravenous": { "pos": "a", "pol": "0.313", "std": "0.177" }, "raw beauty": { "pos": "n", "pol": "0.375", "std": "0.0" }, "raw material": { "pos": "n", "pol": "0.375", "std": "0.0" }, "razor-sharp": { "pos": "a", "pol": "0.313", "std": "0.088" }, "reaffirmation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "realised": { "pos": "a", "pol": "0.375", "std": "0.0" }, "realizable": { "pos": "a", "pol": "0.438", "std": "0.0" }, "realized": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reasonableness": { "pos": "n", "pol": "0.325", "std": "0.105" }, "reassert": { "pos": "v", "pol": "0.375", "std": "0.0" }, "reassertion": { "pos": "n", "pol": "0.375", "std": "0.0" }, "reassurance": { "pos": "n", "pol": "0.375", "std": "0.0" }, "received": { "pos": "a", "pol": "0.438", "std": "0.0" }, "reciprocative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reciprocatory": { "pos": "a", "pol": "0.375", "std": "0.0" }, "recognisable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "recognised": { "pos": "a", "pol": "0.375", "std": "0.0" }, "recognized": { "pos": "a", "pol": "0.375", "std": "0.0" }, "recommend": { "pos": "v", "pol": "0.333", "std": "0.191" }, "reconvene": { "pos": "v", "pol": "0.375", "std": "0.0" }, "recording system": { "pos": "n", "pol": "0.375", "std": "0.0" }, "recreation": { "pos": "n", "pol": "0.313", "std": "0.0" }, "rectify": { "pos": "v", "pol": "0.271", "std": "0.431" }, "recurvate": { "pos": "a", "pol": "0.375", "std": "0.0" }, "recurved": { "pos": "a", "pol": "0.375", "std": "0.0" }, "red-carpet": { "pos": "a", "pol": "0.375", "std": "0.0" }, "red-hot": { "pos": "a", "pol": "0.425", "std": "0.324" }, "red-letter": { "pos": "a", "pol": "0.375", "std": "0.0" }, "red-rimmed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "red carpet": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reddish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "redefine": { "pos": "v", "pol": "0.313", "std": "0.088" }, "redemptive": { "pos": "a", "pol": "0.375", "std": "0.354" }, "redoubtable": { "pos": "a", "pol": "0.313", "std": "0.354" }, "redress": { "pos": "v", "pol": "0.375", "std": "0.0" }, "reducible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reductive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reechoing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "referendum": { "pos": "n", "pol": "0.375", "std": "0.0" }, "refine": { "pos": "v", "pol": "0.333", "std": "0.376" }, "refined": { "pos": "a", "pol": "0.3", "std": "0.163" }, "refit": { "pos": "v", "pol": "0.375", "std": "0.0" }, "reflecting": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reform-minded": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reformist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "refresh": { "pos": "v", "pol": "0.375", "std": "0.204" }, "refreshfully": { "pos": "r", "pol": "0.375", "std": "0.0" }, "refreshingly": { "pos": "r", "pol": "0.375", "std": "0.0" }, "refulgent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "regale": { "pos": "v", "pol": "0.375", "std": "0.0" }, "regenerate": { "pos": "a", "pol": "0.375", "std": "0.0" }, "registration fire": { "pos": "n", "pol": "0.375", "std": "0.0" }, "regnant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "regressive": { "pos": "a", "pol": "0.313", "std": "0.265" }, "regularise": { "pos": "v", "pol": "0.375", "std": "0.088" }, "regularize": { "pos": "v", "pol": "0.375", "std": "0.088" }, "regulation time": { "pos": "n", "pol": "0.375", "std": "0.0" }, "regulative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "regulatory": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rehabilitate": { "pos": "v", "pol": "0.375", "std": "0.217" }, "reharmonise": { "pos": "v", "pol": "0.375", "std": "0.0" }, "reharmonize": { "pos": "v", "pol": "0.375", "std": "0.0" }, "reigning": { "pos": "a", "pol": "0.375", "std": "0.0" }, "related": { "pos": "a", "pol": "0.313", "std": "0.0" }, "relatedness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "relaxing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "relevant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reliably": { "pos": "r", "pol": "0.375", "std": "0.0" }, "reliant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "religious ceremony": { "pos": "n", "pol": "0.375", "std": "0.0" }, "religious orientation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "religious ritual": { "pos": "n", "pol": "0.375", "std": "0.0" }, "religious school": { "pos": "n", "pol": "0.375", "std": "0.0" }, "religious song": { "pos": "n", "pol": "0.375", "std": "0.0" }, "relocated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rely": { "pos": "v", "pol": "0.375", "std": "0.0" }, "rely on": { "pos": "v", "pol": "0.375", "std": "0.0" }, "rely upon": { "pos": "v", "pol": "0.375", "std": "0.0" }, "remarkable": { "pos": "a", "pol": "0.438", "std": "0.177" }, "remedy": { "pos": "n", "pol": "0.375", "std": "0.177" }, "remindful": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reminiscent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "removable": { "pos": "a", "pol": "0.375", "std": "0.177" }, "removed": { "pos": "a", "pol": "0.313", "std": "0.177" }, "renascent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rendezvous": { "pos": "v", "pol": "0.375", "std": "0.0" }, "renewed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "renovate": { "pos": "v", "pol": "0.417", "std": "0.433" }, "renown": { "pos": "n", "pol": "0.375", "std": "0.0" }, "repair": { "pos": "v", "pol": "0.325", "std": "0.389" }, "repartee": { "pos": "n", "pol": "0.375", "std": "0.0" }, "repetitive": { "pos": "a", "pol": "0.313", "std": "0.177" }, "replaceable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reposeful": { "pos": "a", "pol": "0.375", "std": "0.0" }, "represented": { "pos": "a", "pol": "0.375", "std": "0.0" }, "repressed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "repressing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "repressive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reproductive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reputably": { "pos": "r", "pol": "0.375", "std": "0.0" }, "requested": { "pos": "a", "pol": "0.375", "std": "0.0" }, "required": { "pos": "a", "pol": "0.375", "std": "0.0" }, "research": { "pos": "n", "pol": "0.313", "std": "0.088" }, "reserved": { "pos": "a", "pol": "0.438", "std": "0.177" }, "resettled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "resilient": { "pos": "a", "pol": "0.313", "std": "0.0" }, "resinate": { "pos": "v", "pol": "0.375", "std": "0.0" }, "resolutely": { "pos": "r", "pol": "0.438", "std": "0.088" }, "resolvable": { "pos": "a", "pol": "0.438", "std": "0.088" }, "resolved": { "pos": "a", "pol": "0.375", "std": "0.088" }, "resonant": { "pos": "a", "pol": "0.375", "std": "0.088" }, "resonating": { "pos": "a", "pol": "0.375", "std": "0.0" }, "resounding": { "pos": "a", "pol": "0.375", "std": "0.0" }, "resourceful": { "pos": "a", "pol": "0.375", "std": "0.0" }, "respectably": { "pos": "r", "pol": "0.313", "std": "0.088" }, "respecter": { "pos": "n", "pol": "0.375", "std": "0.0" }, "respectfulness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "respects": { "pos": "n", "pol": "0.375", "std": "0.0" }, "resplendence": { "pos": "n", "pol": "0.375", "std": "0.0" }, "resplendency": { "pos": "n", "pol": "0.375", "std": "0.0" }, "respondent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "responsible": { "pos": "a", "pol": "0.375", "std": "0.191" }, "restful": { "pos": "a", "pol": "0.375", "std": "0.0" }, "restrictive": { "pos": "a", "pol": "0.375", "std": "0.088" }, "resurgent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "resuscitated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "retentive": { "pos": "a", "pol": "0.292", "std": "0.315" }, "reticent": { "pos": "a", "pol": "0.292", "std": "0.072" }, "retractile": { "pos": "a", "pol": "0.375", "std": "0.0" }, "retro": { "pos": "a", "pol": "0.375", "std": "0.0" }, "revamp": { "pos": "v", "pol": "0.313", "std": "0.088" }, "revealing": { "pos": "a", "pol": "0.438", "std": "0.0" }, "reverberating": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reverberative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reverence": { "pos": "v", "pol": "0.25", "std": "0.0" }, "reverent": { "pos": "a", "pol": "0.438", "std": "0.0" }, "reverentially": { "pos": "r", "pol": "0.375", "std": "0.0" }, "reverently": { "pos": "r", "pol": "0.375", "std": "0.0" }, "reversible": { "pos": "a", "pol": "0.469", "std": "0.072" }, "reversionist": { "pos": "n", "pol": "0.375", "std": "0.0" }, "reverting": { "pos": "a", "pol": "0.375", "std": "0.0" }, "revival meeting": { "pos": "n", "pol": "0.375", "std": "0.0" }, "revocable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "revokable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reward": { "pos": "v", "pol": "0.417", "std": "0.217" }, "rhythmic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rhythmical": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rich": { "pos": "a", "pol": "0.385", "std": "0.104" }, "ride the bench": { "pos": "v", "pol": "0.375", "std": "0.0" }, "rife": { "pos": "a", "pol": "0.375", "std": "0.177" }, "right-down": { "pos": "r", "pol": "0.25", "std": "0.0" }, "right-hand": { "pos": "a", "pol": "0.375", "std": "0.315" }, "right to liberty": { "pos": "n", "pol": "0.375", "std": "0.0" }, "right to the pursuit of happiness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "rightly": { "pos": "r", "pol": "0.375", "std": "0.0" }, "rightness": { "pos": "n", "pol": "0.344", "std": "0.102" }, "ring out": { "pos": "v", "pol": "0.375", "std": "0.0" }, "risible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rising": { "pos": "a", "pol": "0.313", "std": "0.102" }, "risque": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ritual dance": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ritual dancing": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ritz": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ritzy": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rivalrous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "road game": { "pos": "n", "pol": "0.375", "std": "0.0" }, "roast beef": { "pos": "n", "pol": "0.375", "std": "0.0" }, "roast lamb": { "pos": "n", "pol": "0.375", "std": "0.0" }, "roast pork": { "pos": "n", "pol": "0.375", "std": "0.0" }, "roast veal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "robed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rock-steady": { "pos": "a", "pol": "0.375", "std": "0.0" }, "roomy": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rope up": { "pos": "v", "pol": "0.375", "std": "0.0" }, "rose-colored": { "pos": "a", "pol": "0.438", "std": "0.707" }, "rose-red": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rough-and-ready": { "pos": "a", "pol": "0.375", "std": "0.0" }, "roughhewn": { "pos": "a", "pol": "0.375", "std": "0.0" }, "round-faced": { "pos": "a", "pol": "0.375", "std": "0.0" }, "round-fruited": { "pos": "a", "pol": "0.375", "std": "0.0" }, "round off": { "pos": "v", "pol": "0.417", "std": "0.473" }, "rub-a-dub": { "pos": "n", "pol": "0.375", "std": "0.0" }, "rubber-necking": { "pos": "n", "pol": "0.375", "std": "0.0" }, "rubberlike": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rubberstamp": { "pos": "v", "pol": "0.375", "std": "0.0" }, "ruby": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ruby-red": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ruddiness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ruling": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ruminative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "runaway": { "pos": "a", "pol": "0.375", "std": "0.0" }, "running start": { "pos": "n", "pol": "0.313", "std": "0.088" }, "runny": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rushed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rust-free": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rustic": { "pos": "a", "pol": "0.292", "std": "0.072" }, "saccharine": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sacramental wine": { "pos": "n", "pol": "0.375", "std": "0.0" }, "safeguard": { "pos": "n", "pol": "0.313", "std": "0.354" }, "safeness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "safety": { "pos": "n", "pol": "0.375", "std": "0.461" }, "safety device": { "pos": "n", "pol": "0.375", "std": "0.0" }, "safety net": { "pos": "n", "pol": "0.313", "std": "0.088" }, "sage": { "pos": "a", "pol": "0.375", "std": "0.088" }, "sage-green": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sail through": { "pos": "v", "pol": "0.375", "std": "0.0" }, "saint": { "pos": "n", "pol": "0.333", "std": "0.125" }, "salad green": { "pos": "n", "pol": "0.375", "std": "0.0" }, "salad greens": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sales agreement": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sanctification": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sanctify": { "pos": "v", "pol": "0.438", "std": "0.088" }, "sanctimonious": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sanitary": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sanitate": { "pos": "v", "pol": "0.375", "std": "0.0" }, "sapphire": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sate": { "pos": "v", "pol": "0.375", "std": "0.0" }, "satiny": { "pos": "a", "pol": "0.375", "std": "0.0" }, "satisfier": { "pos": "n", "pol": "0.375", "std": "0.0" }, "saucer-eyed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "savory": { "pos": "a", "pol": "0.292", "std": "0.072" }, "savoury": { "pos": "a", "pol": "0.292", "std": "0.072" }, "saw": { "pos": "v", "pol": "0.375", "std": "0.0" }, "sawtoothed-edged": { "pos": "a", "pol": "0.375", "std": "0.0" }, "scaffold": { "pos": "v", "pol": "0.375", "std": "0.0" }, "scalelike": { "pos": "a", "pol": "0.375", "std": "0.0" }, "scarlet": { "pos": "a", "pol": "0.375", "std": "0.0" }, "scarper": { "pos": "v", "pol": "0.375", "std": "0.0" }, "scat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scenic": { "pos": "a", "pol": "0.375", "std": "0.53" }, "scented": { "pos": "a", "pol": "0.281", "std": "0.359" }, "scheming": { "pos": "a", "pol": "0.438", "std": "0.088" }, "schnorr": { "pos": "v", "pol": "0.375", "std": "0.0" }, "schoolboyish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "schoolgirlish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "science": { "pos": "n", "pol": "0.313", "std": "0.442" }, "scrap metal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "scrappy": { "pos": "a", "pol": "0.375", "std": "0.0" }, "screechy": { "pos": "a", "pol": "0.375", "std": "0.0" }, "scrubbed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "scruples": { "pos": "n", "pol": "0.375", "std": "0.0" }, "scrupulous": { "pos": "a", "pol": "0.313", "std": "0.088" }, "scrupulousness": { "pos": "n", "pol": "0.438", "std": "0.354" }, "sculptured": { "pos": "a", "pol": "0.313", "std": "0.0" }, "sculpturesque": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sea-green": { "pos": "a", "pol": "0.375", "std": "0.0" }, "seaborne": { "pos": "a", "pol": "0.375", "std": "0.0" }, "seagirt": { "pos": "a", "pol": "0.375", "std": "0.0" }, "seal of approval": { "pos": "n", "pol": "0.375", "std": "0.0" }, "seamless": { "pos": "a", "pol": "0.292", "std": "0.315" }, "seamy": { "pos": "a", "pol": "0.313", "std": "0.0" }, "searching": { "pos": "a", "pol": "0.292", "std": "0.191" }, "seasonably": { "pos": "r", "pol": "0.375", "std": "0.177" }, "seaworthy": { "pos": "a", "pol": "0.375", "std": "0.0" }, "second": { "pos": "v", "pol": "0.313", "std": "0.442" }, "sedative": { "pos": "n", "pol": "0.25", "std": "0.0" }, "seduce": { "pos": "v", "pol": "0.313", "std": "0.0" }, "seductive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "see eye to eye": { "pos": "v", "pol": "0.375", "std": "0.0" }, "seed corn": { "pos": "n", "pol": "0.375", "std": "0.0" }, "seed grain": { "pos": "n", "pol": "0.375", "std": "0.0" }, "selective": { "pos": "a", "pol": "0.438", "std": "0.088" }, "self-acting": { "pos": "a", "pol": "0.375", "std": "0.0" }, "self-activating": { "pos": "a", "pol": "0.375", "std": "0.0" }, "self-aware": { "pos": "a", "pol": "0.375", "std": "0.0" }, "self-balancing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "self-constituted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "self-contained": { "pos": "a", "pol": "0.375", "std": "0.0" }, "self-established": { "pos": "a", "pol": "0.375", "std": "0.0" }, "self-fertilised": { "pos": "a", "pol": "0.375", "std": "0.0" }, "self-fertilized": { "pos": "a", "pol": "0.375", "std": "0.0" }, "self-indulgent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "self-loading": { "pos": "a", "pol": "0.375", "std": "0.0" }, "self-locking": { "pos": "a", "pol": "0.375", "std": "0.0" }, "self-moving": { "pos": "a", "pol": "0.375", "std": "0.0" }, "self-pollinated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "self-regulating": { "pos": "a", "pol": "0.375", "std": "0.0" }, "self-righteous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "self-service": { "pos": "a", "pol": "0.375", "std": "0.0" }, "self-winding": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sellable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "semantically": { "pos": "r", "pol": "0.375", "std": "0.0" }, "semestral": { "pos": "a", "pol": "0.375", "std": "0.0" }, "semestrial": { "pos": "a", "pol": "0.375", "std": "0.0" }, "semi-dry": { "pos": "a", "pol": "0.375", "std": "0.0" }, "semiannual": { "pos": "a", "pol": "0.375", "std": "0.0" }, "semiautomatic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "semimonthly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "seminude": { "pos": "a", "pol": "0.375", "std": "0.0" }, "semiprivate": { "pos": "a", "pol": "0.375", "std": "0.0" }, "semipublic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "semivowel": { "pos": "n", "pol": "0.375", "std": "0.0" }, "semiweekly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "senile": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sensate": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sense of movement": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sense of right and wrong": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sensible": { "pos": "a", "pol": "0.406", "std": "0.368" }, "sensual": { "pos": "a", "pol": "0.313", "std": "0.088" }, "sensuousness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "separate": { "pos": "a", "pol": "0.281", "std": "0.12" }, "separatist": { "pos": "a", "pol": "0.375", "std": "0.0" }, "serendipity": { "pos": "n", "pol": "0.375", "std": "0.0" }, "serious music": { "pos": "n", "pol": "0.375", "std": "0.0" }, "seriousness": { "pos": "n", "pol": "0.333", "std": "0.382" }, "service cutback": { "pos": "n", "pol": "0.375", "std": "0.0" }, "servile": { "pos": "a", "pol": "0.375", "std": "0.088" }, "set in motion": { "pos": "v", "pol": "0.375", "std": "0.0" }, "settlor": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sexual": { "pos": "a", "pol": "0.292", "std": "0.26" }, "sexual discrimination": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sexual pleasure": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sexual relationship": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sexy": { "pos": "a", "pol": "0.375", "std": "0.177" }, "shabby-genteel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "shackled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "shakable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "shakeable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sharing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sharp-eared": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sharp-limbed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sharp-sightedness": { "pos": "n", "pol": "0.375", "std": "0.177" }, "sharpened": { "pos": "a", "pol": "0.375", "std": "0.0" }, "shatterproof": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sheeny": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sheeplike": { "pos": "a", "pol": "0.375", "std": "0.0" }, "shelf bracket": { "pos": "n", "pol": "0.375", "std": "0.0" }, "shimmery": { "pos": "a", "pol": "0.375", "std": "0.0" }, "shiny": { "pos": "a", "pol": "0.458", "std": "0.125" }, "shipshape": { "pos": "a", "pol": "0.375", "std": "0.0" }, "shnorr": { "pos": "v", "pol": "0.375", "std": "0.0" }, "shoo-in": { "pos": "n", "pol": "0.375", "std": "0.0" }, "short-nosed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "short and sweet": { "pos": "a", "pol": "0.375", "std": "0.0" }, "short list": { "pos": "n", "pol": "0.375", "std": "0.0" }, "shortlist": { "pos": "n", "pol": "0.375", "std": "0.0" }, "showjumping": { "pos": "n", "pol": "0.375", "std": "0.0" }, "showmanship": { "pos": "n", "pol": "0.375", "std": "0.0" }, "showplace": { "pos": "n", "pol": "0.375", "std": "0.0" }, "showy": { "pos": "a", "pol": "0.406", "std": "0.177" }, "shrewd": { "pos": "a", "pol": "0.438", "std": "0.088" }, "sibilant": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sibilant consonant": { "pos": "n", "pol": "0.375", "std": "0.0" }, "side-to-side": { "pos": "a", "pol": "0.375", "std": "0.0" }, "side by side": { "pos": "a", "pol": "0.313", "std": "0.088" }, "sidesplitter": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sightseeing": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sightseer": { "pos": "n", "pol": "0.375", "std": "0.0" }, "significance": { "pos": "n", "pol": "0.292", "std": "0.217" }, "significant": { "pos": "a", "pol": "0.469", "std": "0.188" }, "significantly": { "pos": "r", "pol": "0.292", "std": "0.125" }, "significative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "silken": { "pos": "a", "pol": "0.375", "std": "0.0" }, "silklike": { "pos": "a", "pol": "0.375", "std": "0.0" }, "silky": { "pos": "a", "pol": "0.375", "std": "0.0" }, "silver-blue": { "pos": "a", "pol": "0.375", "std": "0.0" }, "silver-bodied": { "pos": "a", "pol": "0.375", "std": "0.0" }, "silvern": { "pos": "a", "pol": "0.438", "std": "0.088" }, "silvery-blue": { "pos": "a", "pol": "0.375", "std": "0.0" }, "silvery-bodied": { "pos": "a", "pol": "0.375", "std": "0.0" }, "similar": { "pos": "a", "pol": "0.375", "std": "0.068" }, "simple interest": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sincerity": { "pos": "n", "pol": "0.438", "std": "0.258" }, "single-minded": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sissified": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sissy": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sissyish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sisterlike": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sisterly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sizable": { "pos": "a", "pol": "0.313", "std": "0.088" }, "sizeable": { "pos": "a", "pol": "0.313", "std": "0.088" }, "sized": { "pos": "a", "pol": "0.313", "std": "0.0" }, "skill": { "pos": "n", "pol": "0.438", "std": "0.265" }, "skin-deep": { "pos": "a", "pol": "0.375", "std": "0.0" }, "skinned": { "pos": "a", "pol": "0.375", "std": "0.0" }, "skirl": { "pos": "n", "pol": "0.375", "std": "0.0" }, "skittish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "skulduggery": { "pos": "n", "pol": "0.375", "std": "0.0" }, "skullduggery": { "pos": "n", "pol": "0.375", "std": "0.0" }, "skydiving": { "pos": "n", "pol": "0.375", "std": "0.0" }, "slangy": { "pos": "a", "pol": "0.375", "std": "0.0" }, "slashed": { "pos": "a", "pol": "0.292", "std": "0.072" }, "sleek": { "pos": "a", "pol": "0.417", "std": "0.0" }, "slender-bodied": { "pos": "a", "pol": "0.375", "std": "0.0" }, "slick up": { "pos": "v", "pol": "0.313", "std": "0.0" }, "slicked": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sliding": { "pos": "a", "pol": "0.375", "std": "0.0" }, "slim-bodied": { "pos": "a", "pol": "0.375", "std": "0.0" }, "slipping": { "pos": "a", "pol": "0.375", "std": "0.0" }, "slithering": { "pos": "a", "pol": "0.375", "std": "0.0" }, "slumberous": { "pos": "a", "pol": "0.438", "std": "0.0" }, "slumbrous": { "pos": "a", "pol": "0.438", "std": "0.0" }, "small-fruited": { "pos": "a", "pol": "0.375", "std": "0.0" }, "small-scale": { "pos": "a", "pol": "0.375", "std": "0.177" }, "small-winged": { "pos": "a", "pol": "0.375", "std": "0.0" }, "smart as a whip": { "pos": "a", "pol": "0.375", "std": "0.0" }, "smart bomb": { "pos": "n", "pol": "0.375", "std": "0.0" }, "smarten up": { "pos": "v", "pol": "0.313", "std": "0.0" }, "smash hit": { "pos": "n", "pol": "0.375", "std": "0.0" }, "smile": { "pos": "n", "pol": "0.375", "std": "0.0" }, "smoke-filled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "smoke-free": { "pos": "a", "pol": "0.375", "std": "0.0" }, "smoky": { "pos": "a", "pol": "0.375", "std": "0.088" }, "smooth-bodied": { "pos": "a", "pol": "0.375", "std": "0.0" }, "smooth-textured": { "pos": "a", "pol": "0.375", "std": "0.0" }, "smooth-tongued": { "pos": "a", "pol": "0.375", "std": "0.0" }, "snappy": { "pos": "a", "pol": "0.3", "std": "0.153" }, "sniper rifle": { "pos": "n", "pol": "0.375", "std": "0.0" }, "snoring": { "pos": "n", "pol": "0.375", "std": "0.0" }, "snowbound": { "pos": "a", "pol": "0.375", "std": "0.0" }, "snub-nosed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "snuff": { "pos": "a", "pol": "0.375", "std": "0.0" }, "snuff-brown": { "pos": "a", "pol": "0.375", "std": "0.0" }, "snug": { "pos": "a", "pol": "0.438", "std": "0.298" }, "snuggled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "soaring": { "pos": "a", "pol": "0.438", "std": "0.0" }, "social": { "pos": "n", "pol": "0.25", "std": "0.0" }, "socialised": { "pos": "a", "pol": "0.375", "std": "0.0" }, "socialized": { "pos": "a", "pol": "0.375", "std": "0.0" }, "soft on": { "pos": "a", "pol": "0.375", "std": "0.0" }, "solder": { "pos": "v", "pol": "0.375", "std": "0.0" }, "solemnisation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "solemnity": { "pos": "n", "pol": "0.375", "std": "0.354" }, "solemnization": { "pos": "n", "pol": "0.375", "std": "0.0" }, "solid": { "pos": "a", "pol": "0.342", "std": "0.367" }, "solidness": { "pos": "n", "pol": "0.281", "std": "0.213" }, "solved": { "pos": "a", "pol": "0.375", "std": "0.0" }, "son": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sonant": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sonic": { "pos": "a", "pol": "0.375", "std": "0.088" }, "sororal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sottish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sought after": { "pos": "a", "pol": "0.375", "std": "0.0" }, "soulfulness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sound judgement": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sound judgment": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sound perception": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sound pressure level": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sound property": { "pos": "n", "pol": "0.375", "std": "0.0" }, "soundable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sounding": { "pos": "a", "pol": "0.458", "std": "0.125" }, "soundless": { "pos": "a", "pol": "0.375", "std": "0.0" }, "soundlessness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "soundly": { "pos": "r", "pol": "0.313", "std": "0.354" }, "soundproof": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "southpaw": { "pos": "n", "pol": "0.313", "std": "0.265" }, "space walk": { "pos": "n", "pol": "0.375", "std": "0.0" }, "spacious": { "pos": "a", "pol": "0.438", "std": "0.088" }, "spatiotemporal": { "pos": "a", "pol": "0.313", "std": "0.442" }, "spayed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "spearhead-shaped": { "pos": "a", "pol": "0.375", "std": "0.0" }, "special": { "pos": "a", "pol": "0.411", "std": "0.25" }, "specialisation": { "pos": "n", "pol": "0.292", "std": "0.191" }, "specialiser": { "pos": "n", "pol": "0.375", "std": "0.0" }, "speciality": { "pos": "n", "pol": "0.458", "std": "0.361" }, "specialization": { "pos": "n", "pol": "0.292", "std": "0.191" }, "specializer": { "pos": "n", "pol": "0.375", "std": "0.0" }, "specialty": { "pos": "n", "pol": "0.458", "std": "0.361" }, "specified": { "pos": "a", "pol": "0.375", "std": "0.0" }, "speedy": { "pos": "a", "pol": "0.438", "std": "0.088" }, "sperm-filled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "spiked": { "pos": "a", "pol": "0.375", "std": "0.0" }, "spin doctor": { "pos": "n", "pol": "0.375", "std": "0.0" }, "spinmeister": { "pos": "n", "pol": "0.375", "std": "0.0" }, "spinnable": { "pos": "a", "pol": "0.438", "std": "0.177" }, "spiny-edged": { "pos": "a", "pol": "0.375", "std": "0.0" }, "spirited": { "pos": "a", "pol": "0.375", "std": "0.237" }, "spiritualisation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "spiritualization": { "pos": "n", "pol": "0.375", "std": "0.0" }, "spiv": { "pos": "n", "pol": "0.375", "std": "0.0" }, "splinterless": { "pos": "a", "pol": "0.375", "std": "0.0" }, "splinterproof": { "pos": "a", "pol": "0.375", "std": "0.0" }, "spoilsport": { "pos": "n", "pol": "0.375", "std": "0.0" }, "spooky": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sporting life": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sporty": { "pos": "a", "pol": "0.458", "std": "0.072" }, "spotted antbird": { "pos": "n", "pol": "0.375", "std": "0.0" }, "springlike": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sprint": { "pos": "n", "pol": "0.375", "std": "0.0" }, "spruce up": { "pos": "v", "pol": "0.313", "std": "0.0" }, "square": { "pos": "a", "pol": "0.292", "std": "0.233" }, "square-toed": { "pos": "a", "pol": "0.438", "std": "0.354" }, "squared": { "pos": "a", "pol": "0.375", "std": "0.0" }, "squeaking": { "pos": "a", "pol": "0.375", "std": "0.0" }, "squeaky": { "pos": "a", "pol": "0.375", "std": "0.0" }, "squealing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "squeamish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "squeezable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "squishy": { "pos": "a", "pol": "0.375", "std": "0.0" }, "stabilise": { "pos": "v", "pol": "0.292", "std": "0.191" }, "stabilize": { "pos": "v", "pol": "0.292", "std": "0.191" }, "stadium jumping": { "pos": "n", "pol": "0.375", "std": "0.0" }, "stagecraft": { "pos": "n", "pol": "0.375", "std": "0.0" }, "stainless": { "pos": "a", "pol": "0.375", "std": "0.0" }, "stalinise": { "pos": "v", "pol": "0.375", "std": "0.0" }, "stalinize": { "pos": "v", "pol": "0.375", "std": "0.0" }, "stalwartness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "staminate": { "pos": "a", "pol": "0.375", "std": "0.0" }, "standard": { "pos": "a", "pol": "0.425", "std": "0.163" }, "standby": { "pos": "a", "pol": "0.375", "std": "0.0" }, "standpat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "stark naked": { "pos": "a", "pol": "0.375", "std": "0.0" }, "starred": { "pos": "a", "pol": "0.375", "std": "0.0" }, "startled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "state-of-the-art": { "pos": "a", "pol": "0.375", "std": "0.0" }, "state-supported": { "pos": "a", "pol": "0.375", "std": "0.0" }, "statuesque": { "pos": "a", "pol": "0.438", "std": "0.088" }, "steady-going": { "pos": "a", "pol": "0.375", "std": "0.0" }, "steadying": { "pos": "a", "pol": "0.375", "std": "0.0" }, "steam-powered": { "pos": "a", "pol": "0.375", "std": "0.0" }, "steam coal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "steamy": { "pos": "a", "pol": "0.292", "std": "0.331" }, "steel-plated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "steepish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "stellate": { "pos": "a", "pol": "0.375", "std": "0.0" }, "step down": { "pos": "v", "pol": "0.313", "std": "0.0" }, "stereo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "stereophonic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "stertor": { "pos": "n", "pol": "0.375", "std": "0.0" }, "stertorous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "stick about": { "pos": "v", "pol": "0.375", "std": "0.0" }, "sticking point": { "pos": "n", "pol": "0.375", "std": "0.0" }, "stocked": { "pos": "a", "pol": "0.375", "std": "0.0" }, "stocked with": { "pos": "a", "pol": "0.375", "std": "0.0" }, "stoppable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "storied": { "pos": "a", "pol": "0.313", "std": "0.442" }, "stowaway": { "pos": "n", "pol": "0.375", "std": "0.0" }, "strabotomy": { "pos": "n", "pol": "0.375", "std": "0.0" }, "straight-from-the-shoulder": { "pos": "a", "pol": "0.375", "std": "0.0" }, "straight-grained": { "pos": "a", "pol": "0.375", "std": "0.0" }, "straightforward": { "pos": "a", "pol": "0.313", "std": "0.228" }, "strapping": { "pos": "a", "pol": "0.375", "std": "0.0" }, "strategically": { "pos": "r", "pol": "0.375", "std": "0.0" }, "straw": { "pos": "a", "pol": "0.375", "std": "0.0" }, "streamlined": { "pos": "a", "pol": "0.438", "std": "0.088" }, "street smart": { "pos": "a", "pol": "0.375", "std": "0.0" }, "streetwise": { "pos": "a", "pol": "0.375", "std": "0.0" }, "stretch": { "pos": "a", "pol": "0.313", "std": "0.088" }, "strong-minded": { "pos": "a", "pol": "0.375", "std": "0.177" }, "structurally": { "pos": "r", "pol": "0.375", "std": "0.0" }, "strum": { "pos": "v", "pol": "0.375", "std": "0.0" }, "studiousness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "stuffed": { "pos": "a", "pol": "0.313", "std": "0.088" }, "stupendous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sturdy": { "pos": "a", "pol": "0.417", "std": "0.191" }, "stylish": { "pos": "a", "pol": "0.438", "std": "0.088" }, "subgross": { "pos": "a", "pol": "0.375", "std": "0.0" }, "subservient": { "pos": "a", "pol": "0.417", "std": "0.072" }, "subsonic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "substantial": { "pos": "a", "pol": "0.475", "std": "0.342" }, "substantiation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "substantive": { "pos": "a", "pol": "0.333", "std": "0.072" }, "substitutable": { "pos": "a", "pol": "0.375", "std": "0.265" }, "subtilise": { "pos": "v", "pol": "0.375", "std": "0.0" }, "subtractive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "success": { "pos": "n", "pol": "0.344", "std": "0.161" }, "succinct": { "pos": "a", "pol": "0.375", "std": "0.0" }, "succinctly": { "pos": "r", "pol": "0.375", "std": "0.0" }, "such": { "pos": "a", "pol": "0.375", "std": "0.0" }, "suchlike": { "pos": "a", "pol": "0.375", "std": "0.0" }, "suckling pig": { "pos": "n", "pol": "0.375", "std": "0.0" }, "suffice": { "pos": "v", "pol": "0.375", "std": "0.0" }, "sufficiently": { "pos": "r", "pol": "0.375", "std": "0.0" }, "sugar corn": { "pos": "n", "pol": "0.375", "std": "0.0" }, "suggestible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "suit": { "pos": "v", "pol": "0.406", "std": "0.361" }, "suitably": { "pos": "r", "pol": "0.375", "std": "0.0" }, "suited": { "pos": "a", "pol": "0.313", "std": "0.354" }, "sulfacetamide": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sulfur-yellow": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sulphur-yellow": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sunless": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sunlit": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sunstruck": { "pos": "a", "pol": "0.375", "std": "0.0" }, "superable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "superfine": { "pos": "a", "pol": "0.417", "std": "0.191" }, "superiority": { "pos": "n", "pol": "0.344", "std": "0.157" }, "supernal": { "pos": "a", "pol": "0.375", "std": "0.088" }, "supersedure": { "pos": "n", "pol": "0.375", "std": "0.0" }, "supersession": { "pos": "n", "pol": "0.375", "std": "0.0" }, "superstar": { "pos": "n", "pol": "0.375", "std": "0.0" }, "supervised": { "pos": "a", "pol": "0.375", "std": "0.0" }, "supple": { "pos": "a", "pol": "0.375", "std": "0.072" }, "supported": { "pos": "a", "pol": "0.375", "std": "0.177" }, "supporting": { "pos": "a", "pol": "0.438", "std": "0.088" }, "supporting tower": { "pos": "n", "pol": "0.375", "std": "0.0" }, "supposable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "suppositional": { "pos": "a", "pol": "0.375", "std": "0.0" }, "suppositious": { "pos": "a", "pol": "0.375", "std": "0.0" }, "supposititious": { "pos": "a", "pol": "0.375", "std": "0.0" }, "supranational": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sure": { "pos": "r", "pol": "0.375", "std": "0.0" }, "sure as shooting": { "pos": "r", "pol": "0.375", "std": "0.0" }, "surely": { "pos": "r", "pol": "0.375", "std": "0.0" }, "surface-active": { "pos": "a", "pol": "0.375", "std": "0.0" }, "surgical": { "pos": "a", "pol": "0.375", "std": "0.191" }, "surmisable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "surmountable": { "pos": "a", "pol": "0.313", "std": "0.0" }, "survival of the fittest": { "pos": "n", "pol": "0.375", "std": "0.0" }, "suspected": { "pos": "a", "pol": "0.375", "std": "0.0" }, "suspensive": { "pos": "a", "pol": "0.313", "std": "0.0" }, "sustainable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sustentacular": { "pos": "a", "pol": "0.375", "std": "0.0" }, "suture": { "pos": "v", "pol": "0.375", "std": "0.0" }, "svelte": { "pos": "a", "pol": "0.375", "std": "0.072" }, "swank": { "pos": "n", "pol": "0.25", "std": "0.0" }, "swanky": { "pos": "a", "pol": "0.375", "std": "0.0" }, "swear off": { "pos": "v", "pol": "0.375", "std": "0.0" }, "sweep through": { "pos": "v", "pol": "0.375", "std": "0.0" }, "sweeping": { "pos": "a", "pol": "0.313", "std": "0.177" }, "sweet corn plant": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sweetheart": { "pos": "a", "pol": "0.375", "std": "0.0" }, "swift": { "pos": "a", "pol": "0.375", "std": "0.0" }, "swinging": { "pos": "n", "pol": "0.25", "std": "0.0" }, "swingy": { "pos": "a", "pol": "0.375", "std": "0.0" }, "swish": { "pos": "v", "pol": "0.25", "std": "0.0" }, "sylphlike": { "pos": "a", "pol": "0.375", "std": "0.0" }, "symmetrical": { "pos": "a", "pol": "0.375", "std": "0.265" }, "symmetry": { "pos": "n", "pol": "0.292", "std": "0.144" }, "symphonic": { "pos": "a", "pol": "0.313", "std": "0.53" }, "symptomless": { "pos": "a", "pol": "0.375", "std": "0.0" }, "synecdochic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "synecdochical": { "pos": "a", "pol": "0.375", "std": "0.0" }, "synonymous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "synoptical": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tactfully": { "pos": "r", "pol": "0.375", "std": "0.0" }, "tailed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "take a bow": { "pos": "v", "pol": "0.313", "std": "0.265" }, "take advantage": { "pos": "v", "pol": "0.313", "std": "0.088" }, "take pride": { "pos": "v", "pol": "0.375", "std": "0.0" }, "take stage": { "pos": "v", "pol": "0.375", "std": "0.0" }, "take the stage": { "pos": "v", "pol": "0.375", "std": "0.0" }, "take to the woods": { "pos": "v", "pol": "0.375", "std": "0.0" }, "taken with": { "pos": "a", "pol": "0.375", "std": "0.0" }, "takeout": { "pos": "a", "pol": "0.375", "std": "0.0" }, "takeover target": { "pos": "n", "pol": "0.375", "std": "0.0" }, "talkative": { "pos": "a", "pol": "0.292", "std": "0.125" }, "tall-grass": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tall order": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tallgrass": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tamed": { "pos": "a", "pol": "0.313", "std": "0.0" }, "tannish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tantalising": { "pos": "a", "pol": "0.438", "std": "0.0" }, "tantalizing": { "pos": "a", "pol": "0.438", "std": "0.0" }, "tarantelle": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tardiness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "target company": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tasseled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tasselled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "teach": { "pos": "v", "pol": "0.313", "std": "0.088" }, "tearing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tearless": { "pos": "a", "pol": "0.375", "std": "0.0" }, "techie": { "pos": "n", "pol": "0.375", "std": "0.0" }, "technical": { "pos": "a", "pol": "0.45", "std": "0.271" }, "technically": { "pos": "r", "pol": "0.417", "std": "0.072" }, "technician": { "pos": "n", "pol": "0.313", "std": "0.265" }, "technological": { "pos": "a", "pol": "0.313", "std": "0.265" }, "technophile": { "pos": "n", "pol": "0.375", "std": "0.0" }, "teeming": { "pos": "a", "pol": "0.375", "std": "0.0" }, "teemingness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "teetotal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tekki": { "pos": "n", "pol": "0.375", "std": "0.0" }, "telescopic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "telling": { "pos": "a", "pol": "0.375", "std": "0.072" }, "tempered": { "pos": "a", "pol": "0.313", "std": "0.0" }, "temporiser": { "pos": "n", "pol": "0.375", "std": "0.0" }, "temporizer": { "pos": "n", "pol": "0.375", "std": "0.0" }, "temptable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tenability": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tenableness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tenderised": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tenderized": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tensionless": { "pos": "a", "pol": "0.375", "std": "0.0" }, "terminable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "terse": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tessellated": { "pos": "a", "pol": "0.313", "std": "0.177" }, "testate": { "pos": "a", "pol": "0.375", "std": "0.0" }, "testimonial": { "pos": "a", "pol": "0.313", "std": "0.442" }, "tete-a-tete": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tethered": { "pos": "a", "pol": "0.375", "std": "0.0" }, "the right way": { "pos": "r", "pol": "0.375", "std": "0.0" }, "theater ticket": { "pos": "n", "pol": "0.375", "std": "0.0" }, "theatre ticket": { "pos": "n", "pol": "0.375", "std": "0.0" }, "thematically": { "pos": "r", "pol": "0.375", "std": "0.0" }, "theory-based": { "pos": "a", "pol": "0.375", "std": "0.0" }, "thick-bodied": { "pos": "a", "pol": "0.375", "std": "0.0" }, "thickened": { "pos": "a", "pol": "0.292", "std": "0.191" }, "thigh-slapper": { "pos": "n", "pol": "0.375", "std": "0.0" }, "thin-bodied": { "pos": "a", "pol": "0.375", "std": "0.0" }, "think the world of": { "pos": "v", "pol": "0.375", "std": "0.0" }, "thoroughgoing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "thoroughly": { "pos": "r", "pol": "0.313", "std": "0.354" }, "thought process": { "pos": "n", "pol": "0.375", "std": "0.0" }, "thoughtful": { "pos": "a", "pol": "0.425", "std": "0.143" }, "thoughtfulness": { "pos": "n", "pol": "0.375", "std": "0.239" }, "three-legged": { "pos": "a", "pol": "0.375", "std": "0.0" }, "three-pronged": { "pos": "a", "pol": "0.375", "std": "0.0" }, "thronged": { "pos": "a", "pol": "0.375", "std": "0.0" }, "through": { "pos": "a", "pol": "0.313", "std": "0.0" }, "throwaway": { "pos": "a", "pol": "0.375", "std": "0.177" }, "throwback": { "pos": "a", "pol": "0.375", "std": "0.0" }, "thrum": { "pos": "v", "pol": "0.25", "std": "0.072" }, "thumping": { "pos": "a", "pol": "0.375", "std": "0.0" }, "thundering": { "pos": "a", "pol": "0.375", "std": "0.354" }, "thyrotoxicosis": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tie-on": { "pos": "a", "pol": "0.375", "std": "0.0" }, "time signal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "timed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tined": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tink": { "pos": "v", "pol": "0.375", "std": "0.0" }, "tinkle": { "pos": "v", "pol": "0.375", "std": "0.0" }, "tinkling": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tinkly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tinseled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tinselly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tintinnabulation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tip-up": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tip off": { "pos": "v", "pol": "0.375", "std": "0.0" }, "tippy": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tireless": { "pos": "a", "pol": "0.313", "std": "0.088" }, "titan": { "pos": "n", "pol": "0.375", "std": "0.0" }, "titanic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "toccata": { "pos": "n", "pol": "0.375", "std": "0.0" }, "toed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "toffee-nosed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tog": { "pos": "v", "pol": "0.375", "std": "0.0" }, "tolerant": { "pos": "a", "pol": "0.35", "std": "0.068" }, "tolerantly": { "pos": "r", "pol": "0.375", "std": "0.0" }, "toned": { "pos": "a", "pol": "0.438", "std": "0.088" }, "too-careful": { "pos": "a", "pol": "0.375", "std": "0.0" }, "too large": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tool-and-die work": { "pos": "n", "pol": "0.375", "std": "0.0" }, "toothsome": { "pos": "a", "pol": "0.458", "std": "0.072" }, "top out": { "pos": "v", "pol": "0.292", "std": "0.144" }, "top round": { "pos": "n", "pol": "0.375", "std": "0.0" }, "topicality": { "pos": "n", "pol": "0.375", "std": "0.0" }, "topographically": { "pos": "r", "pol": "0.375", "std": "0.0" }, "topspin": { "pos": "n", "pol": "0.375", "std": "0.0" }, "torrential": { "pos": "a", "pol": "0.292", "std": "0.191" }, "torrid": { "pos": "a", "pol": "0.292", "std": "0.125" }, "total": { "pos": "a", "pol": "0.438", "std": "0.088" }, "totally": { "pos": "r", "pol": "0.375", "std": "0.0" }, "touchy-feely": { "pos": "a", "pol": "0.375", "std": "0.0" }, "toughened": { "pos": "a", "pol": "0.438", "std": "0.177" }, "tourer": { "pos": "n", "pol": "0.313", "std": "0.088" }, "tourist": { "pos": "n", "pol": "0.375", "std": "0.0" }, "towering": { "pos": "a", "pol": "0.375", "std": "0.0" }, "trabeate": { "pos": "a", "pol": "0.375", "std": "0.0" }, "trabeated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "traceable": { "pos": "a", "pol": "0.313", "std": "0.088" }, "trackable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tractability": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tractableness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tractile": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tradecraft": { "pos": "n", "pol": "0.375", "std": "0.0" }, "traditionalistic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tragicomical": { "pos": "a", "pol": "0.375", "std": "0.088" }, "train ticket": { "pos": "n", "pol": "0.375", "std": "0.0" }, "trained": { "pos": "a", "pol": "0.375", "std": "0.0" }, "training college": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tranquilising": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tranquilizing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tranquillising": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tranquillizing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "transcend": { "pos": "v", "pol": "0.313", "std": "0.088" }, "transcendence": { "pos": "n", "pol": "0.313", "std": "0.088" }, "transcendency": { "pos": "n", "pol": "0.313", "std": "0.088" }, "transcendent": { "pos": "a", "pol": "0.313", "std": "0.354" }, "transferable": { "pos": "a", "pol": "0.313", "std": "0.177" }, "transferrable": { "pos": "a", "pol": "0.313", "std": "0.177" }, "transformable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "transformed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "transgender": { "pos": "a", "pol": "0.375", "std": "0.0" }, "transgendered": { "pos": "a", "pol": "0.375", "std": "0.0" }, "transistorised": { "pos": "a", "pol": "0.375", "std": "0.0" }, "transistorized": { "pos": "a", "pol": "0.375", "std": "0.0" }, "translatable": { "pos": "a", "pol": "0.438", "std": "0.0" }, "transmissible": { "pos": "a", "pol": "0.333", "std": "0.191" }, "transmutable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "transonic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "transparence": { "pos": "n", "pol": "0.313", "std": "0.177" }, "travelable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "traversable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "travesty": { "pos": "n", "pol": "0.313", "std": "0.088" }, "treacly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "treasure": { "pos": "v", "pol": "0.313", "std": "0.088" }, "treated": { "pos": "a", "pol": "0.375", "std": "0.125" }, "treaty": { "pos": "n", "pol": "0.375", "std": "0.0" }, "treeless": { "pos": "a", "pol": "0.375", "std": "0.0" }, "trenchant": { "pos": "a", "pol": "0.417", "std": "0.072" }, "triangulate": { "pos": "a", "pol": "0.375", "std": "0.0" }, "triennial": { "pos": "a", "pol": "0.375", "std": "0.0" }, "trim": { "pos": "a", "pol": "0.281", "std": "0.072" }, "trimmed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tripping": { "pos": "a", "pol": "0.438", "std": "0.0" }, "trisect": { "pos": "v", "pol": "0.375", "std": "0.0" }, "tropism": { "pos": "n", "pol": "0.375", "std": "0.0" }, "trot out": { "pos": "v", "pol": "0.375", "std": "0.0" }, "true statement": { "pos": "n", "pol": "0.375", "std": "0.0" }, "trueness": { "pos": "n", "pol": "0.458", "std": "0.25" }, "trussed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "trustfulness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "trustiness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "trustingness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "trustor": { "pos": "n", "pol": "0.375", "std": "0.0" }, "trustworthiness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "trustworthy": { "pos": "a", "pol": "0.438", "std": "0.265" }, "truth": { "pos": "n", "pol": "0.438", "std": "0.213" }, "tube-nosed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tufted": { "pos": "a", "pol": "0.417", "std": "0.144" }, "tune": { "pos": "v", "pol": "0.438", "std": "0.088" }, "tune up": { "pos": "v", "pol": "0.438", "std": "0.088" }, "tunefully": { "pos": "r", "pol": "0.375", "std": "0.0" }, "turbaned": { "pos": "a", "pol": "0.375", "std": "0.0" }, "turn a nice dime": { "pos": "v", "pol": "0.375", "std": "0.0" }, "turn a nice dollar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "turn a nice penny": { "pos": "v", "pol": "0.375", "std": "0.0" }, "turn tail": { "pos": "v", "pol": "0.375", "std": "0.0" }, "tutelar": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tutelary": { "pos": "a", "pol": "0.375", "std": "0.0" }, "twain": { "pos": "n", "pol": "0.375", "std": "0.0" }, "two-channel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "two-party": { "pos": "a", "pol": "0.375", "std": "0.0" }, "two-pronged": { "pos": "a", "pol": "0.375", "std": "0.0" }, "type family": { "pos": "n", "pol": "0.375", "std": "0.0" }, "typewriter paper": { "pos": "n", "pol": "0.375", "std": "0.0" }, "typic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "typical": { "pos": "a", "pol": "0.375", "std": "0.26" }, "typicality": { "pos": "n", "pol": "0.375", "std": "0.0" }, "typing paper": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ultramodern": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ultrasonic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unambiguous": { "pos": "a", "pol": "0.375", "std": "0.088" }, "unanimity": { "pos": "n", "pol": "0.375", "std": "0.0" }, "unanimous": { "pos": "a", "pol": "0.313", "std": "0.265" }, "unanimously": { "pos": "r", "pol": "0.375", "std": "0.0" }, "unarmored": { "pos": "a", "pol": "0.313", "std": "0.088" }, "unarmoured": { "pos": "a", "pol": "0.313", "std": "0.088" }, "unbendable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unblemished": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unbowed": { "pos": "a", "pol": "0.313", "std": "0.177" }, "unchurch": { "pos": "v", "pol": "0.375", "std": "0.0" }, "uncloudedness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "uncommunicative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unconfined": { "pos": "a", "pol": "0.313", "std": "0.265" }, "unconstipated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "uncontaminating": { "pos": "a", "pol": "0.375", "std": "0.0" }, "uncrowded": { "pos": "a", "pol": "0.375", "std": "0.0" }, "undatable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "underachieve": { "pos": "v", "pol": "0.375", "std": "0.0" }, "underact": { "pos": "v", "pol": "0.375", "std": "0.0" }, "underarm": { "pos": "a", "pol": "0.375", "std": "0.0" }, "undercharge": { "pos": "v", "pol": "0.375", "std": "0.0" }, "undercover": { "pos": "a", "pol": "0.375", "std": "0.0" }, "undereducated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "understandability": { "pos": "n", "pol": "0.375", "std": "0.0" }, "understanding": { "pos": "a", "pol": "0.375", "std": "0.0" }, "understock": { "pos": "v", "pol": "0.375", "std": "0.0" }, "underway": { "pos": "a", "pol": "0.375", "std": "0.0" }, "undeterred": { "pos": "a", "pol": "0.375", "std": "0.0" }, "undeviating": { "pos": "a", "pol": "0.375", "std": "0.177" }, "undiscouraged": { "pos": "a", "pol": "0.375", "std": "0.0" }, "undisguised": { "pos": "a", "pol": "0.375", "std": "0.0" }, "undismayed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "undividable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unequaled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unequalled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unequivocal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unfaltering": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unfeignedly": { "pos": "r", "pol": "0.375", "std": "0.0" }, "unfilled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unflagging": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unflappable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unflawed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unflurried": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unflustered": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unfree": { "pos": "a", "pol": "0.313", "std": "0.088" }, "unhuman": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unhurried": { "pos": "a", "pol": "0.313", "std": "0.177" }, "unhurt": { "pos": "a", "pol": "0.375", "std": "0.088" }, "unification": { "pos": "n", "pol": "0.292", "std": "0.26" }, "unilateral contract": { "pos": "n", "pol": "0.375", "std": "0.0" }, "uninjured": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unique": { "pos": "a", "pol": "0.281", "std": "0.12" }, "uniquely": { "pos": "r", "pol": "0.375", "std": "0.0" }, "united": { "pos": "a", "pol": "0.375", "std": "0.088" }, "universal": { "pos": "a", "pol": "0.417", "std": "0.191" }, "univocal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unlock": { "pos": "v", "pol": "0.333", "std": "0.0" }, "unmarred": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unmistakable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unmitigated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unmortgaged": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unmoved": { "pos": "a", "pol": "0.313", "std": "0.354" }, "unmutilated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unobjectionable": { "pos": "a", "pol": "0.333", "std": "0.144" }, "unobstructed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unostentatious": { "pos": "a", "pol": "0.313", "std": "0.354" }, "unparallel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unparalleled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unpartitioned": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unperturbed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unproblematic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unprogressive": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unpunished": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unpurified": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unravel": { "pos": "v", "pol": "0.292", "std": "0.072" }, "unreformed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unregretful": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unregretting": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unremorseful": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unscramble": { "pos": "v", "pol": "0.375", "std": "0.0" }, "unsectarian": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unsegmented": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unselfconsciously": { "pos": "r", "pol": "0.375", "std": "0.0" }, "unshadowed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unshaken": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unsoiled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unspotted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unsubdued": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unsullied": { "pos": "a", "pol": "0.375", "std": "0.0" }, "untainted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "untalkative": { "pos": "a", "pol": "0.375", "std": "0.0" }, "untarnished": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unthreatening": { "pos": "a", "pol": "0.375", "std": "0.0" }, "untired": { "pos": "a", "pol": "0.375", "std": "0.0" }, "untoughened": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unwearied": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unweary": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unwiseness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "unwonted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unwooded": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unworldly": { "pos": "a", "pol": "0.313", "std": "0.0" }, "unwounded": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unzip": { "pos": "v", "pol": "0.375", "std": "0.0" }, "up": { "pos": "a", "pol": "0.344", "std": "0.16" }, "up-bow": { "pos": "n", "pol": "0.375", "std": "0.0" }, "up-to-the-minute": { "pos": "a", "pol": "0.375", "std": "0.0" }, "up to": { "pos": "a", "pol": "0.438", "std": "0.265" }, "upcurved": { "pos": "a", "pol": "0.375", "std": "0.0" }, "upfront": { "pos": "a", "pol": "0.375", "std": "0.0" }, "upkeep": { "pos": "n", "pol": "0.375", "std": "0.177" }, "upmarket": { "pos": "a", "pol": "0.375", "std": "0.0" }, "upper": { "pos": "a", "pol": "0.333", "std": "0.191" }, "upper-level": { "pos": "a", "pol": "0.375", "std": "0.0" }, "upper hand": { "pos": "n", "pol": "0.375", "std": "0.0" }, "upstair": { "pos": "a", "pol": "0.375", "std": "0.0" }, "upstairs": { "pos": "a", "pol": "0.375", "std": "0.0" }, "upward": { "pos": "a", "pol": "0.313", "std": "0.0" }, "urbanity": { "pos": "n", "pol": "0.375", "std": "0.088" }, "urgent": { "pos": "a", "pol": "0.375", "std": "0.0" }, "usable": { "pos": "a", "pol": "0.417", "std": "0.072" }, "useable": { "pos": "a", "pol": "0.417", "std": "0.072" }, "used to": { "pos": "a", "pol": "0.375", "std": "0.0" }, "usual": { "pos": "a", "pol": "0.375", "std": "0.088" }, "usufruct": { "pos": "n", "pol": "0.375", "std": "0.0" }, "usury": { "pos": "n", "pol": "0.313", "std": "0.088" }, "utilitarian": { "pos": "a", "pol": "0.438", "std": "0.0" }, "utter": { "pos": "a", "pol": "0.313", "std": "0.088" }, "vacationer": { "pos": "n", "pol": "0.375", "std": "0.0" }, "vacationist": { "pos": "n", "pol": "0.375", "std": "0.0" }, "valid": { "pos": "a", "pol": "0.438", "std": "0.0" }, "validate": { "pos": "v", "pol": "0.469", "std": "0.102" }, "validation": { "pos": "n", "pol": "0.313", "std": "0.088" }, "validly": { "pos": "r", "pol": "0.375", "std": "0.0" }, "valuableness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "vantage": { "pos": "n", "pol": "0.438", "std": "0.265" }, "veal roast": { "pos": "n", "pol": "0.375", "std": "0.0" }, "vehement": { "pos": "a", "pol": "0.438", "std": "0.0" }, "vendable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "vendible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "veneration": { "pos": "n", "pol": "0.313", "std": "0.0" }, "venerator": { "pos": "n", "pol": "0.375", "std": "0.0" }, "verdancy": { "pos": "n", "pol": "0.375", "std": "0.0" }, "verifiable": { "pos": "a", "pol": "0.438", "std": "0.177" }, "verification": { "pos": "n", "pol": "0.313", "std": "0.088" }, "verisimilar": { "pos": "a", "pol": "0.375", "std": "0.0" }, "verity": { "pos": "n", "pol": "0.375", "std": "0.442" }, "vermilion": { "pos": "a", "pol": "0.375", "std": "0.0" }, "vermillion": { "pos": "a", "pol": "0.375", "std": "0.0" }, "vernal": { "pos": "a", "pol": "0.313", "std": "0.265" }, "versatile": { "pos": "a", "pol": "0.281", "std": "0.277" }, "very": { "pos": "a", "pol": "0.438", "std": "0.088" }, "vested interest": { "pos": "n", "pol": "0.313", "std": "0.088" }, "viability": { "pos": "n", "pol": "0.313", "std": "0.088" }, "vibrant": { "pos": "a", "pol": "0.333", "std": "0.144" }, "viewless": { "pos": "a", "pol": "0.375", "std": "0.0" }, "vindicated": { "pos": "a", "pol": "0.375", "std": "0.0" }, "violable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "virgin": { "pos": "a", "pol": "0.375", "std": "0.265" }, "virginal": { "pos": "a", "pol": "0.292", "std": "0.125" }, "virile": { "pos": "a", "pol": "0.375", "std": "0.144" }, "virtual": { "pos": "a", "pol": "0.313", "std": "0.088" }, "virtuosity": { "pos": "n", "pol": "0.375", "std": "0.0" }, "virtuously": { "pos": "r", "pol": "0.375", "std": "0.442" }, "visa": { "pos": "v", "pol": "0.375", "std": "0.177" }, "viscid": { "pos": "a", "pol": "0.375", "std": "0.0" }, "viscoelastic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "vital": { "pos": "a", "pol": "0.375", "std": "0.12" }, "vitalisation": { "pos": "n", "pol": "0.375", "std": "0.0" }, "vitalise": { "pos": "v", "pol": "0.438", "std": "0.265" }, "vitalization": { "pos": "n", "pol": "0.375", "std": "0.0" }, "vitalize": { "pos": "v", "pol": "0.438", "std": "0.265" }, "viva-voce": { "pos": "a", "pol": "0.375", "std": "0.0" }, "vivace": { "pos": "r", "pol": "0.375", "std": "0.0" }, "vivaciously": { "pos": "r", "pol": "0.375", "std": "0.0" }, "vivacity": { "pos": "n", "pol": "0.375", "std": "0.0" }, "vivid": { "pos": "a", "pol": "0.281", "std": "0.228" }, "vividness": { "pos": "n", "pol": "0.313", "std": "0.088" }, "vivification": { "pos": "n", "pol": "0.313", "std": "0.0" }, "vocal": { "pos": "a", "pol": "0.313", "std": "0.295" }, "vocalic": { "pos": "a", "pol": "0.313", "std": "0.442" }, "voiced sound": { "pos": "n", "pol": "0.375", "std": "0.0" }, "volitional": { "pos": "a", "pol": "0.375", "std": "0.0" }, "volleyball game": { "pos": "n", "pol": "0.375", "std": "0.0" }, "volumed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "volumetrically": { "pos": "r", "pol": "0.375", "std": "0.0" }, "voluminous": { "pos": "a", "pol": "0.333", "std": "0.0" }, "voluntary": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vow": { "pos": "v", "pol": "0.313", "std": "0.088" }, "vowel sound": { "pos": "n", "pol": "0.375", "std": "0.0" }, "wage concession": { "pos": "n", "pol": "0.375", "std": "0.0" }, "waggery": { "pos": "n", "pol": "0.313", "std": "0.0" }, "waking": { "pos": "n", "pol": "0.25", "std": "0.0" }, "walkaway": { "pos": "n", "pol": "0.375", "std": "0.0" }, "walking shoe": { "pos": "n", "pol": "0.375", "std": "0.0" }, "walloping": { "pos": "a", "pol": "0.375", "std": "0.0" }, "warfarin": { "pos": "n", "pol": "0.375", "std": "0.0" }, "wariness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "warm-blooded": { "pos": "a", "pol": "0.375", "std": "0.0" }, "warm the bench": { "pos": "v", "pol": "0.375", "std": "0.0" }, "warranty": { "pos": "n", "pol": "0.375", "std": "0.0" }, "wash-and-wear": { "pos": "a", "pol": "0.375", "std": "0.0" }, "washable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "water-cooled": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ways and means": { "pos": "n", "pol": "0.375", "std": "0.0" }, "wealthiness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "weaned": { "pos": "a", "pol": "0.375", "std": "0.0" }, "weapons-grade": { "pos": "a", "pol": "0.438", "std": "0.088" }, "wed": { "pos": "v", "pol": "0.25", "std": "0.0" }, "wedded": { "pos": "a", "pol": "0.375", "std": "0.0" }, "weekly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "well-dressed": { "pos": "a", "pol": "0.375", "std": "0.0" }, "well-groomed": { "pos": "a", "pol": "0.438", "std": "0.0" }, "well-intentioned": { "pos": "a", "pol": "0.375", "std": "0.0" }, "well-knit": { "pos": "a", "pol": "0.375", "std": "0.0" }, "well-meaning": { "pos": "a", "pol": "0.375", "std": "0.0" }, "well-meant": { "pos": "a", "pol": "0.375", "std": "0.0" }, "well-ordered": { "pos": "a", "pol": "0.375", "std": "0.0" }, "well-set": { "pos": "a", "pol": "0.375", "std": "0.0" }, "well-spoken": { "pos": "a", "pol": "0.375", "std": "0.0" }, "well-wisher": { "pos": "n", "pol": "0.375", "std": "0.0" }, "wellborn": { "pos": "a", "pol": "0.375", "std": "0.0" }, "westernise": { "pos": "v", "pol": "0.375", "std": "0.0" }, "westernize": { "pos": "v", "pol": "0.375", "std": "0.0" }, "wet-nurse": { "pos": "v", "pol": "0.375", "std": "0.0" }, "wet blanket": { "pos": "n", "pol": "0.375", "std": "0.0" }, "whacker": { "pos": "n", "pol": "0.375", "std": "0.0" }, "whacking": { "pos": "r", "pol": "0.25", "std": "0.0" }, "whip hand": { "pos": "n", "pol": "0.375", "std": "0.0" }, "whir": { "pos": "n", "pol": "0.375", "std": "0.0" }, "whirr": { "pos": "n", "pol": "0.375", "std": "0.0" }, "whish": { "pos": "v", "pol": "0.313", "std": "0.088" }, "white-edged": { "pos": "a", "pol": "0.375", "std": "0.0" }, "whizz": { "pos": "n", "pol": "0.375", "std": "0.0" }, "whole": { "pos": "r", "pol": "0.375", "std": "0.0" }, "wholeness": { "pos": "n", "pol": "0.375", "std": "0.088" }, "wholesale": { "pos": "a", "pol": "0.375", "std": "0.0" }, "wholly": { "pos": "r", "pol": "0.375", "std": "0.0" }, "whopping": { "pos": "r", "pol": "0.25", "std": "0.0" }, "wide": { "pos": "a", "pol": "0.304", "std": "0.159" }, "wide-awake": { "pos": "a", "pol": "0.438", "std": "0.0" }, "wide-cut": { "pos": "a", "pol": "0.375", "std": "0.0" }, "wilful": { "pos": "a", "pol": "0.313", "std": "0.088" }, "willful": { "pos": "a", "pol": "0.313", "std": "0.088" }, "willing": { "pos": "a", "pol": "0.375", "std": "0.088" }, "willowy": { "pos": "a", "pol": "0.375", "std": "0.0" }, "win": { "pos": "n", "pol": "0.25", "std": "0.177" }, "window-dress": { "pos": "v", "pol": "0.375", "std": "0.0" }, "winged": { "pos": "a", "pol": "0.375", "std": "0.0" }, "wink at": { "pos": "v", "pol": "0.375", "std": "0.0" }, "winnings": { "pos": "n", "pol": "0.375", "std": "0.0" }, "winsomeness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "wisdom": { "pos": "n", "pol": "0.375", "std": "0.359" }, "with-it": { "pos": "a", "pol": "0.438", "std": "0.0" }, "withdrawn": { "pos": "a", "pol": "0.313", "std": "0.088" }, "witticism": { "pos": "n", "pol": "0.375", "std": "0.0" }, "wittiness": { "pos": "n", "pol": "0.375", "std": "0.0" }, "witting": { "pos": "a", "pol": "0.313", "std": "0.088" }, "witty": { "pos": "a", "pol": "0.375", "std": "0.0" }, "wiz": { "pos": "n", "pol": "0.375", "std": "0.0" }, "womanly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "wonderworking": { "pos": "a", "pol": "0.375", "std": "0.0" }, "wont to": { "pos": "a", "pol": "0.375", "std": "0.0" }, "wonted": { "pos": "a", "pol": "0.375", "std": "0.0" }, "woo": { "pos": "v", "pol": "0.313", "std": "0.354" }, "word-of-mouth": { "pos": "a", "pol": "0.375", "std": "0.0" }, "word of honor": { "pos": "n", "pol": "0.375", "std": "0.0" }, "wordless": { "pos": "a", "pol": "0.375", "std": "0.0" }, "work flow": { "pos": "n", "pol": "0.375", "std": "0.0" }, "workflow": { "pos": "n", "pol": "0.375", "std": "0.0" }, "working": { "pos": "a", "pol": "0.275", "std": "0.209" }, "worldly": { "pos": "a", "pol": "0.313", "std": "0.088" }, "worldly-wise": { "pos": "a", "pol": "0.375", "std": "0.0" }, "worse": { "pos": "r", "pol": "0.375", "std": "0.0" }, "worth": { "pos": "n", "pol": "0.313", "std": "0.442" }, "worthily": { "pos": "r", "pol": "0.375", "std": "0.0" }, "would-be": { "pos": "a", "pol": "0.375", "std": "0.0" }, "wow": { "pos": "v", "pol": "0.375", "std": "0.0" }, "wrapped": { "pos": "a", "pol": "0.375", "std": "0.25" }, "writ large": { "pos": "a", "pol": "0.375", "std": "0.0" }, "written agreement": { "pos": "n", "pol": "0.375", "std": "0.0" }, "xanthous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "yang": { "pos": "n", "pol": "0.375", "std": "0.0" }, "yarn-spinning": { "pos": "a", "pol": "0.375", "std": "0.0" }, "yearly": { "pos": "a", "pol": "0.375", "std": "0.0" }, "yeasty": { "pos": "a", "pol": "0.375", "std": "0.433" }, "yellow-green": { "pos": "a", "pol": "0.375", "std": "0.0" }, "yellowish": { "pos": "a", "pol": "0.375", "std": "0.0" }, "yielding": { "pos": "a", "pol": "0.333", "std": "0.125" }, "yieldingly": { "pos": "r", "pol": "0.375", "std": "0.0" }, "yoga": { "pos": "n", "pol": "0.313", "std": "0.088" }, "yon": { "pos": "r", "pol": "0.375", "std": "0.0" }, "yonder": { "pos": "r", "pol": "0.375", "std": "0.0" }, "young-bearing": { "pos": "a", "pol": "0.375", "std": "0.0" }, "zaftig": { "pos": "a", "pol": "0.375", "std": "0.0" }, "zany": { "pos": "a", "pol": "0.438", "std": "0.0" }, "zesty": { "pos": "a", "pol": "0.438", "std": "0.177" }, "zoftig": { "pos": "a", "pol": "0.375", "std": "0.0" }, "zygomorphic": { "pos": "a", "pol": "0.375", "std": "0.0" }, "aalii": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "abandon": { "pos": "v", "pol": "-0.3", "std": "0.0" }, "abasia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "abatement of a nuisance": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "abide": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "abience": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "abnormalcy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "abocclusion": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "abominator": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "abruptio placentae": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "absinthe oil": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "abstruseness": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "abuser": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acanthocyte": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acanthosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acanthosis nigricans": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "accident": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "accidental injury": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "accusatorial": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "accused": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acedia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acerbity": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "acetonemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acetonuria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acetose": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "acetous": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "achondroplasia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "achondroplasty": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "achromatic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "achromia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "achromic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "acid": { "pos": "a", "pol": "-0.333", "std": "0.144" }, "acidemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acne rosacea": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acoustic aphasia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acousticophobia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acromegalia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acromegaly": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acromphalus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "adamance": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "adamantine": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "addle-head": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "addlehead": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "adenomyosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "adenosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "adesite": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "adiposeness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "adiposity": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "adult respiratory distress syndrome": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "adulterate": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "adulterine": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "adumbration": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "adumbrative": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "adventure": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "adversity": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "aerodontalgia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aery": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "affray": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "afterlife": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "agammaglobulinemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aggress": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "aggro": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "agonizingly": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "agony": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "aguish": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "ailment": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "air alert": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "air attack": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "air cover": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "air pocket": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "air raid": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "air sick": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "air sickness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "airsick": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "airsickness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "akinesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "akinesis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "al-Tawhid": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "alarmingly": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "alder blight": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "alexia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "algidity": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "algophobia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "alienator": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "all-day sucker": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "all-victorious": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "alleviated": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "allies": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "almost": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "altercate": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "altercation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "alveolar ectasia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "amaze": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "amblyopia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ambulance chaser": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ambusher": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "amerce": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "amercement": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aminoaciduria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "amnesic": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "amyloidosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anaesthetic": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anaesthetic agent": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "analbuminemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "analgesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anathemise": { "pos": "v", "pol": "-0.437", "std": "0.177" }, "anathemize": { "pos": "v", "pol": "-0.437", "std": "0.177" }, "ancient pine": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "andesite": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anesthetic": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anesthetic agent": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "angriness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "angry walk": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "animadvert": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "animalisation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ankle bracelet": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "annihilated": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "annihilator": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anomie": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "anomy": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "anosmatic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "anosmia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anosmic": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "antagonistic": { "pos": "a", "pol": "-0.275", "std": "0.205" }, "anterior jugular vein": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anthracite": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anthracite coal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anthracosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anthrax": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "anticipatory": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "antiproton": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anuretic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "anuric": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "anxiety reaction": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aortic plexus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aortic stenosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aphotic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "apocalyptic": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "apoplexy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "appalling": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "appeals court": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "appellate court": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "apractic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "apraxic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "aquaphobia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arch": { "pos": "a", "pol": "-0.417", "std": "0.072" }, "arduousness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "areflexia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "argent": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "argle-bargle": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "argufy": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "argy-bargy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "armband": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arrested development": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arrhythmia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arse": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "arsine": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arteria alveolaris inferior": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arteria labialis inferior": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arteriectasia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arteriectasis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arthralgic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "articulateness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "articulatio temporomandibularis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "artifice": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "asbestosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ash-gray": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "ash-grey": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "ashy": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "asperity": { "pos": "n", "pol": "-0.437", "std": "0.177" }, "assail": { "pos": "v", "pol": "-0.292", "std": "0.191" }, "assassin": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "assault": { "pos": "n", "pol": "-0.292", "std": "0.144" }, "assertiveness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "associate professor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "assumptive": { "pos": "a", "pol": "-0.375", "std": "0.354" }, "asthenia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "astheny": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "astylar": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "asynclitism": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "asystole": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "at first glance": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "at first sight": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "at peace": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "at variance": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "ataxia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ataxy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "atomic number 76": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "atonic": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "atrial septal defect": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "atrocity": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "atrophic arthritis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "attack dog": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "atypical": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "audaciousness": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "audacity": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "auditory aphasia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "authority figure": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "auto-da-fe": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "automysophobia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "autopsy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "autosomal dominant disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "autosomal dominant disorder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "autosomal recessive defect": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "autosomal recessive disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aversion therapy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "awkwardness": { "pos": "n", "pol": "-0.3", "std": "0.137" }, "azoimide": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bacchanalia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bacteriology": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bacteriolysis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bad luck": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "badly": { "pos": "r", "pol": "-0.337", "std": "0.105" }, "baffle": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "bait": { "pos": "v", "pol": "-0.292", "std": "0.072" }, "balefulness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ballet skirt": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "baloney": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bandage": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bang up": { "pos": "v", "pol": "-0.375", "std": "0.177" }, "bangle": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "banshee": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "banshie": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "banteng": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "banter": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "banting": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "banzai attack": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "banzai charge": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "barbarism": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "barbarity": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "barf": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "barky": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "base": { "pos": "a", "pol": "-0.304", "std": "0.134" }, "basic assumption": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bass": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "bastardise": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "bastardize": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "bastille": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bathing trunks": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "battered": { "pos": "a", "pol": "-0.375", "std": "0.191" }, "battle-scarred": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "battle of Brunanburh": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "battle plan": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bayonet": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "be sick": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "beacon": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "bear's foot": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "beastly": { "pos": "a", "pol": "-0.437", "std": "0.354" }, "beat around the bush": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "beauty spot": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bed jacket": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bedamn": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "bedazzle": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "beefsteak morel": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "beggarly": { "pos": "a", "pol": "-0.375", "std": "0.265" }, "behavior modification": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "behavior therapy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "belabor": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "belabour": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "belie": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "belly": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "belly out": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "below the belt": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "bend over backwards": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "benumbed": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "bereave": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "beshrew": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "bewilder": { "pos": "v", "pol": "-0.312", "std": "0.265" }, "bilgewater": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bilgy": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "bill of Particulars": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bill of attainder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bipolar disorder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "birdbrain": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "birth pangs": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bitch": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "bitter": { "pos": "a", "pol": "-0.375", "std": "0.125" }, "bitter principle": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "black apricot": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "black bee": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "black buck": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "black disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "black hat hacker": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "black knot": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "black lung": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "black lung disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "black mallee": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "black sally": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "black tongue": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "blackbuck": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "blackleg": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bladder disorder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "blasting": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "blatancy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bleak": { "pos": "a", "pol": "-0.375", "std": "0.072" }, "blind": { "pos": "a", "pol": "-0.292", "std": "0.217" }, "blister": { "pos": "v", "pol": "-0.375", "std": "0.072" }, "bloat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "blockhouse": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "blood blister": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "blood dyscrasia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bloodcurdling": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "bloodguilt": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "blooper": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "blot": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "blue-gray": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "blue-grey": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "blue goose": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "blue sky law": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bluish-gray": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "bluish-grey": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "blunder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bluster": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "body pad": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bodyless": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "boloney": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bomb": { "pos": "v", "pol": "-0.312", "std": "0.177" }, "bombing": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bombproof": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "bone of contention": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "boner": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "boo-boo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "boothose": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "borrow": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "bosh": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bottle green": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bottom rot": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "botulinum toxin A": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bourgeoisie": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bovine": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "bovine spongiform encephalitis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bowdleriser": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bowdlerizer": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "brachydactylia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "brachydactylic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "brachydactylous": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "brachydactyly": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "braggadocio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "brain-teaser": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "brain damage": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "brain death": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "brain disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "brain disorder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "brain mushroom": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "brainless": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "bramble": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "branched chain ketoaciduria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "brandy nose": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "brashness": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "brassard": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "brawl": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "breach of contract": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "break-dance": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "break-in": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "break dance": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "breakable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "breaking and entering": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "breastpin": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "breathlessness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bridle at": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "bridle up": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "briefless": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "brilliant pebble": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bristle at": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "bristle up": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "brittle": { "pos": "a", "pol": "-0.292", "std": "0.072" }, "broach": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "broken-down": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "broken heart": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "brunch coat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "brunette": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "brunt": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "brush-off": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "brutalisation": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "brutality": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "brutalization": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "bubble": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "buffet": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "bug out": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "bulge": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "bulge out": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "bulimia": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "bulk": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "bulldog": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "bumptious": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "bumptiousness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bungle": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "bunion": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "burial chamber": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "burn": { "pos": "n", "pol": "-0.275", "std": "0.056" }, "burned-out": { "pos": "a", "pol": "-0.417", "std": "0.072" }, "burnt-out": { "pos": "a", "pol": "-0.417", "std": "0.072" }, "business suit": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bust-up": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bust up": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "butanoic acid": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "butch": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "butchery": { "pos": "n", "pol": "-0.333", "std": "0.0" }, "butterscotch": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "buttoned-down": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "butyric acid": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "by-and-by": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cacodaemonic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "cacodemonic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "cakehole": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "calabar bean": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "calcitonin": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "call down": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "calumny": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "calvary": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "camp": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "campy": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "candelilla wax": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "canker": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "cannonade": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "cantankerously": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "capital loss": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "capital of Vanuatu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "capital offense": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "capric acid": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "car sickness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carbamic acid": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carbonado": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "cardiac arrest": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cardiac arrhythmia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cardiac glucoside": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cardiac glycoside": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cardiac insufficiency": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cardiac resuscitation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cardiogenic shock": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cardiomegaly": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cardiomyopathy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cardiopulmonary arrest": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "care-laden": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "caribe": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carious": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "carpal tunnel syndrome": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carpet slipper": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carrion": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carsick": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "cart track": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cartilaginification": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cartroad": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carvedilol": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "caseous": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "cassiterite": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "castigation": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "castrate": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "casuist": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "catabatic wind": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cataclysm": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "catalepsy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cataphasia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "catastrophe": { "pos": "n", "pol": "-0.417", "std": "0.125" }, "catastrophically": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "catch cold": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "catch it": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "causa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "causalgia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cefoperazone": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "celecoxib": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "celiac disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cementite": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cense": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "censor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "censure": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "central vein of suprarenal gland": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cephalalgia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cephalitis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cerebral death": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cerebrovascular accident": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cervical smear": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chaff": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "chafing": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chamfer bit": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "change by reversal": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "chaotic": { "pos": "a", "pol": "-0.333", "std": "0.217" }, "chapeau": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chapped": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "character assassination": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chastening": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cheap": { "pos": "a", "pol": "-0.437", "std": "0.188" }, "cheapen": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "cheat": { "pos": "v", "pol": "-0.344", "std": "0.072" }, "cheeseparing": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "cheilosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chemical diabetes": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chemical irritant": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chest pain": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chiding": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chilly": { "pos": "a", "pol": "-0.417", "std": "0.125" }, "chocolate-colored": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "chocolate-coloured": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "cholesterosis cutis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chondrodystrophy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "choppiness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "choreic abasia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chronic glaucoma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chronic pyelonephritis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chronic wasting disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chuff": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "churl": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "churn": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "cinder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "citrophilous mealybug": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "citrophilus mealybug": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "clamor": { "pos": "v", "pol": "-0.292", "std": "0.0" }, "clamp": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "clapped out": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "clatter": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "clinker": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "clobber": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "clueless": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "clumsy person": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cluster headache": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cluttered": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "coal-tar creosote": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "coal miner's lung": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "coarse": { "pos": "a", "pol": "-0.417", "std": "0.125" }, "coast": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "cockade": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cockiness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cocksucker": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "cocoa powder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cod oil": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "collaborate": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "collaborationist": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "collateral damage": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "collect": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "colorless": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "colourless": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "columbiform bird": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "combust": { "pos": "v", "pol": "-0.3", "std": "0.0" }, "come to grips": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "commination": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "common opossum": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "complain": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "complaint": { "pos": "n", "pol": "-0.275", "std": "0.163" }, "complicated": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "concuss": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "concussion": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "condemnation": { "pos": "n", "pol": "-0.35", "std": "0.088" }, "confess": { "pos": "v", "pol": "-0.292", "std": "0.072" }, "confront": { "pos": "v", "pol": "-0.406", "std": "0.063" }, "confrontation": { "pos": "n", "pol": "-0.475", "std": "0.0" }, "confute": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "confuter": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "congenital afibrinogenemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "congenital disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "congestive": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "conglutinate": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "conjunctivitis arida": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "constatation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "consternate": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "contrabass": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "contractually": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "contravention": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "contretemps": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "control freak": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "conundrum": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "convulsion": { "pos": "n", "pol": "-0.312", "std": "0.12" }, "coolness": { "pos": "n", "pol": "-0.344", "std": "0.102" }, "copper nose": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cor anglais": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "corny": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "coronary failure": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "coronary insufficiency": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "coroner": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "corporal punishment": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "corrupt": { "pos": "a", "pol": "-0.375", "std": "0.144" }, "corrupted": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "corruptness": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "costalgia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "costiasis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "count out": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "counterattack": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "counterattraction": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "counterbattery fire": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "countermine": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "coup de grace": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "court of appeals": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "coverall": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "covered smut": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "coverlet": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "crank letter": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "crash barrier": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cravenness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "craw": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "crazily": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "cremains": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cremation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "crick": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "crime": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "criminal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "criminal court": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "criminal offence": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "criminal offense": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "criminalize": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "crisis": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "criticise": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "criticize": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "cross": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "crossness": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "crosspatch": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "crowberry": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "crown jewels": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "crucifixion": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "crudeness": { "pos": "n", "pol": "-0.458", "std": "0.125" }, "crumble": { "pos": "v", "pol": "-0.292", "std": "0.072" }, "crush out": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "crusty": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "cryaesthesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cryesthesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "crying": { "pos": "a", "pol": "-0.375", "std": "0.265" }, "cryoanaesthesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cryoanesthesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cryogenic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "cryosurgery": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "currish": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "cursed": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "cuss": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "cussed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "cutaneous anthrax": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cutting": { "pos": "a", "pol": "-0.458", "std": "0.072" }, "cuttingly": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "cutty stool": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cyber-terrorist": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cyberphobia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cyclic disorder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cyclone": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "cyclooxygenase-2": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cyclothymia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cyclothymic disorder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cyma recta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cyprian": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "cytolysis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cytolytic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "dago": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "damage control": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "damn": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "dance of death": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dangerous undertaking": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dangerously": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "danse macabre": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dare": { "pos": "v", "pol": "-0.417", "std": "0.0" }, "dark-coated": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "dark-skinned": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "darkly": { "pos": "r", "pol": "-0.375", "std": "0.088" }, "darkness": { "pos": "n", "pol": "-0.292", "std": "0.146" }, "ddC": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ddI": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dead room": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dead weight": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "deadly": { "pos": "a", "pol": "-0.333", "std": "0.051" }, "deaf-aid": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "deaf-muteness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "deaf-mutism": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dearth": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "death knell": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "deathblow": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "deathly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "debasement": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "debauch": { "pos": "v", "pol": "0.25", "std": "0.0" }, "debauchery": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "debilitation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "debris": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "decalcification": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "decanoic acid": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "decay": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "deceased": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "deceit": { "pos": "n", "pol": "-0.417", "std": "0.144" }, "deceitful": { "pos": "a", "pol": "-0.375", "std": "0.265" }, "deceptive": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "decline": { "pos": "n", "pol": "-0.312", "std": "0.072" }, "decontaminate": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "decoy": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "decrepit": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "decrescendo": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "deep water": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "deface": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "defamation": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "defect of speech": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "defence force": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "defence mechanism": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "defence reaction": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "defenceless": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "defense force": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "defense mechanism": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "defense reaction": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "defensiveness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "defiance": { "pos": "n", "pol": "-0.417", "std": "0.144" }, "deficiency": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "defy": { "pos": "v", "pol": "-0.333", "std": "0.217" }, "degradation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "degrade": { "pos": "v", "pol": "-0.417", "std": "0.0" }, "degustation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "delinquency": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "deliquium": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "delta hepatitis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "deluge": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "delusion": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "delusional": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "delusional disorder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "demand": { "pos": "v", "pol": "-0.292", "std": "0.065" }, "dementedly": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "demijohn": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "demonisation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "demonization": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "demur": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "denigration": { "pos": "n", "pol": "-0.333", "std": "0.144" }, "denudate": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "denuded": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "deplore": { "pos": "v", "pol": "-0.312", "std": "0.265" }, "depolarisation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "depolarise": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "depolarization": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "depolarize": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "depreciate": { "pos": "v", "pol": "-0.375", "std": "0.072" }, "depressive": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "derision": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "dermatosclerosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desertification": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desiccate": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "designer drug": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desperately": { "pos": "r", "pol": "-0.312", "std": "0.177" }, "desperation": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "desquamation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "destabilise": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "destabilize": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "destitute": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "destroy": { "pos": "v", "pol": "-0.437", "std": "0.063" }, "detritus": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "devastate": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "devastation": { "pos": "n", "pol": "-0.475", "std": "0.168" }, "developing": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "developing country": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "deviated nasal septum": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "deviated septum": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "devices": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "devilry": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "deviltry": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "devious": { "pos": "a", "pol": "-0.375", "std": "0.072" }, "dextrocardia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "diabetic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "didanosine": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dideoxycytosine": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dideoxyinosine": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "die-hard": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "difference of opinion": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "differential diagnosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "difficult": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "dika nut": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dilatory plea": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dim": { "pos": "a", "pol": "-0.325", "std": "0.105" }, "dimwit": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "diphtheria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dirty": { "pos": "a", "pol": "-0.323", "std": "0.092" }, "dirty dog": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dirtying": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disaster": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "disbelieve": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "discharged": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "discoloration": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "discolouration": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "discommode": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "discontent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "discontented": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "discordance": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "discordant": { "pos": "a", "pol": "-0.375", "std": "0.265" }, "discountenance": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "disdainfulness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disease of the skin": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "diseased person": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disembarrass": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "disembodied spirit": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disentangle": { "pos": "v", "pol": "-0.275", "std": "0.168" }, "disfigure": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "disgracefulness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disharmonize": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "dishonest": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "dishonesty": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "dishonorable discharge": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disinfest": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "disinformation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disloyal": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "dismaying": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "dismissed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "disobedient": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "disorder": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "disorderly": { "pos": "a", "pol": "-0.458", "std": "0.144" }, "disorganisation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disorganised": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "disorganization": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disorganized": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "disorient": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "disorientate": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "disorientation": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "dispatch": { "pos": "v", "pol": "-0.3", "std": "0.112" }, "disprove": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "disprover": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dispute": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "disrupt": { "pos": "v", "pol": "-0.292", "std": "0.072" }, "disruption": { "pos": "n", "pol": "-0.312", "std": "0.063" }, "disruptive": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "dissemble": { "pos": "v", "pol": "-0.375", "std": "0.144" }, "dissembler": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disseminated lupus erythematosus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dissension": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "dissent": { "pos": "n", "pol": "-0.417", "std": "0.0" }, "dissentient": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "dissidence": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dissimulator": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dissociative disorder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dissonance": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "distomatosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "distrain": { "pos": "v", "pol": "-0.333", "std": "0.0" }, "distributive shock": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disturber": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disunion": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "divagation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "diversionary": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "division Rhodophyta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "do a job on": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "dogfight": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "dolce far niente": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "done for": { "pos": "a", "pol": "-0.437", "std": "0.265" }, "donkey jacket": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "donor card": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "doofus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "double-bass": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "double-chinned": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "double-crossing": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "double dribble": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "doubt": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "dowager's hump": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dowdy": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "dowerless": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "downtown": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "dracunculiasis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "drag down": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "dreamed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "dreck": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dress down": { "pos": "v", "pol": "-0.375", "std": "0.177" }, "dressing sack": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dressing sacque": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "drop down": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "dropsy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "drub": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "drug addict": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "drug war": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "drunken revelry": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dry-gulching": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dry mouth": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dumb": { "pos": "a", "pol": "-0.375", "std": "0.12" }, "durability": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "durance": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "duress": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dysaphia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dyschezia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dyscrasia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dyslectic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "dysomia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dysphagia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dysphonia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dyssynergia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dystopia": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "dystopian": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "eased": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "eau de vie": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "eaves": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ectopia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "edema": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "edible mussel": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "eerie": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "eeriness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "egotist": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "elbow grease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "elegiac": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "elegise": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "elegize": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "elf": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "embalm": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "embitter": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "embrocation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "embroilment": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "emphysema": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "encephalitis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "encephalopathy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enchanter": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "encroacher": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "endanger": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "endometriosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enduringness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enemy": { "pos": "n", "pol": "-0.281", "std": "0.125" }, "enervation": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "enfeeblement": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enforcer": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enigmatical": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "enlarged heart": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enrapture": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "enshroud": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "ensnare": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "enterostenosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enthral": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "enthrall": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "entrain": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "entrap": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "enuresis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "epicondylitis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "epidemic": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "epididymitis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "epiglottitis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "epilepsia major": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "epilepsy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "equipment casualty": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "equivocate": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "equivocation": { "pos": "n", "pol": "-0.333", "std": "0.0" }, "eradicator": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ergotism": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "eroded": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "errancy": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "erwinia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "erythema nodosum leprosum": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "erythroblastosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "estraterrestrial body": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "eunuch": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "evasive": { "pos": "a", "pol": "-0.437", "std": "0.265" }, "everlasting": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "everlasting flower": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "eviscerate": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "exacerbation": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "exaggerated": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "excruciatingly": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "excursus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "exertion": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "exfiltration operation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "exfoliation": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "exoneration": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "expense": { "pos": "n", "pol": "-0.333", "std": "0.0" }, "expletive": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "expurgator": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "exterminated": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "exterminator": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "extralegal": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "extraterrestrial object": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fable": { "pos": "n", "pol": "-0.292", "std": "0.144" }, "fabled": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "face-off": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "face to face": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "fail": { "pos": "v", "pol": "-0.261", "std": "0.138" }, "fairy": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "faker": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fall over backwards": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "fallacious": { "pos": "a", "pol": "-0.292", "std": "0.125" }, "fallaciousness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fallal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fallback": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "false": { "pos": "a", "pol": "-0.337", "std": "0.115" }, "false deathcap": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "false imprisonment": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "falsetto": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "falsie": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "family Hydrobatidae": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "family Machilidae": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "famishment": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fancy-free": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "fancy dress": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fantasy life": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fascioliasis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fasciolosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fatality": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "fattiness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fatty": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fault": { "pos": "n", "pol": "-0.357", "std": "0.125" }, "feeble": { "pos": "a", "pol": "-0.437", "std": "0.102" }, "feint": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "fender-bender": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fenoprofen": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fenoprofen calcium": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fester": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "feverous": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "fey": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "fib": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fibbing": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fibrous dysplasia of bone": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fictitious": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "fiend": { "pos": "n", "pol": "-0.333", "std": "0.125" }, "filariasis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "filth": { "pos": "n", "pol": "-0.406", "std": "0.063" }, "finagler": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "find fault": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "fingerless": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "fingerstall": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fink": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "fire ant": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fire sale": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "firebrand": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "fired": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "firetrap": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "first law of motion": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fistfight": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "fisticuffs": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "fixed disk": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "flab": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "flabbiness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "flaccid bladder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "flaccidity": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "flagging": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "flamboyance": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "flap down": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "flashiness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "flat-bottom": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "flat-bottomed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "flecainide": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "flesh wound": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "flippancy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "floridity": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "floridness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "florilegium": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "flounder": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "flowering glume": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fly in the face of": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "fly in the teeth of": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "flyaway": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "flyspeck": { "pos": "a", "pol": "0.25", "std": "0.0" }, "flytrap": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "foghorn": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "fogsignal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "folie a deux": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "folk etymology": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "food poisoning": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "foolproof": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "football play": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "footslog": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "for one": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "foray": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "forbiddingly": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "forced": { "pos": "a", "pol": "-0.281", "std": "0.188" }, "foreign terrorist organization": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "foreshadowing": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "forgetfulness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "forlorn hope": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "formaldehyde": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "forthcomingness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "foul-up": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "foul play": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "foulness": { "pos": "n", "pol": "-0.281", "std": "0.177" }, "four-letter Anglo-Saxon word": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "four-letter word": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fowl cholera": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fowler": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fracas": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fractious": { "pos": "a", "pol": "-0.333", "std": "0.144" }, "fracture": { "pos": "v", "pol": "-0.292", "std": "0.051" }, "frambesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "framboesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fraud in fact": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fraud in law": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "freak": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "freakishness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "free-for-all": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fretfulness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "frigidity": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "frigidness": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "fucked-up": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "fuckup": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "fugu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fulmination": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "funeral pyre": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "furlough": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "furry tongue": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "furuncle": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fussy": { "pos": "a", "pol": "-0.417", "std": "0.191" }, "future day": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "g-force": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gainsay": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "gale": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "galoot": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "game": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "gamecock": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gang fight": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "garbled": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "garboil": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "garishness": { "pos": "n", "pol": "-0.437", "std": "0.177" }, "gastrointestinal disorder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gaucheness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gaud": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gaudiness": { "pos": "n", "pol": "-0.437", "std": "0.177" }, "gawky": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "gee": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "generalized anxiety disorder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genetic abnormality": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genetic defect": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genetic disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genetic disorder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genital herpes": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus Acherontia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus Asarum": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus Clinopodium": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus Cuon": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus Cyon": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus Irvingia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus Neurospora": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus Solenopsis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus Zizania": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "get back": { "pos": "v", "pol": "-0.292", "std": "0.072" }, "get it": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "get to grips": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "gewgaw": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ghostliness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "giardiasis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gimp": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "ginzo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "git": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gland disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "glandular disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "glandular disorder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "glaring": { "pos": "a", "pol": "-0.312", "std": "0.354" }, "glaucoma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gleet": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "glitz": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gloomy Gus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "glossoptosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "glower": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "glumness": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "goalless": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "godlessness": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "golliwog": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "golliwogg": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gondola car": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "goon": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "gout": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gouty arthritis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "grabber": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "grand mal": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "grasping": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "grated cheese": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "grating": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "gratuitous": { "pos": "a", "pol": "-0.417", "std": "0.144" }, "gravitational attraction": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gravitational force": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gray-white": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "grayish-white": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "graylag": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "graylag goose": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "greaseball": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "green-white": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "green ash": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "green monkey disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "greenish-grey": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "greenish-white": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "gregariousness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gremlin": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "grey-white": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "greyish-white": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "greylag": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "greylag goose": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "griminess": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gristly": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "grizzle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "grotesque": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "grouch": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "grouse": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "growing pains": { "pos": "n", "pol": "-0.333", "std": "0.0" }, "grubbiness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "grumble": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "grumbling": { "pos": "a", "pol": "0.25", "std": "0.0" }, "grump": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "guard": { "pos": "v", "pol": "-0.281", "std": "0.063" }, "guide on": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "gum-lac": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gum labdanum": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gunfight": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gunplay": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gutlessness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gutta balata": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hack writer": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "haematocytopenia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "haematuria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "haemoglobinemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "haemoglobinopathy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "haemorrhoid": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hag": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "haggle": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "haggling": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hailstorm": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hair-raising": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "hair shirt": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hairy": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "hairy root": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hairy tongue": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "half-slip": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "half-truth": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "halitosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hallucination": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hammer nose": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "haplosporidian": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "haptic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "harassing fire": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hard coal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hard disc": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hard disk": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hard lead": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hard times": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "harshen": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "harshly": { "pos": "r", "pol": "-0.437", "std": "0.088" }, "harshness": { "pos": "n", "pol": "-0.406", "std": "0.12" }, "harum-scarum": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "harvest mite": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hat": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "hate mail": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hater": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "haunted": { "pos": "a", "pol": "-0.333", "std": "0.144" }, "havoc": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hazardously": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "haze": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "head ache": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "head game": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "head over heels": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "headache": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "headband": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "health insurance": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "heart attack": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "heart failure": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "heaviness": { "pos": "n", "pol": "-0.3", "std": "0.153" }, "heedlessly": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "heedlessness": { "pos": "n", "pol": "-0.292", "std": "0.144" }, "heels over head": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "hell to pay": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "helter-skelter": { "pos": "a", "pol": "-0.437", "std": "0.265" }, "hematocytopenia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hematuria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hemicrania": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hemline": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hemoglobinemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hemoglobinopathy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hemorrhoid": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hen-peck": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "hepatic portal vein": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hepatitis delta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hepatoflavin": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hepatolenticular degeneration": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hereafter": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "hereditary condition": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hereditary disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "herpes genitalis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "heterotaxy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hexenbesen": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hideousness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "high-muck-a-muck": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "high-yield bond": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "histamine headache": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "histiocytosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hit the deck": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "hit the dirt": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "hobgoblin": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "hockey skate": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hold water": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "home truth": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "homeless": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "homespun": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "homicide": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "homunculus": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "hoot": { "pos": "n", "pol": "-0.292", "std": "0.0" }, "horseplay": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hostile fire": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hostilities": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hot potato": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hot seat": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "hothead": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "hotspur": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "house of cards": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "housebreaking": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hubbub": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "humic substance": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hunchback": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "hurricane": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hydrazoic acid": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hydremia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hydrogen azide": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hydromorphone": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hydromorphone hydrochloride": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hydrophobia": { "pos": "n", "pol": "-0.292", "std": "0.0" }, "hydrops": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hyperbetalipoproteinemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hyperbilirubinemia of the newborn": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hypercalcinuria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hypercalciuria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hypercholesteremia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hypercholesterolemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hyperemesis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hyperplasia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hypertrophic cardiomyopathy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hypertrophic rosacea": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hypertrophy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hyphen": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "hyphenate": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "hypoactive": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "hypoadrenalism": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hypoadrenocorticism": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hypocalcaemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hypocalcemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hypocrite": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hypoglycaemic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "hypoglycemic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "hypolipoproteinemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hyponymy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hypoparathyroidism": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hypoproteinemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hypospadias": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hypotension": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hypotonic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "hysterocatalepsy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "iciness": { "pos": "n", "pol": "-0.437", "std": "0.177" }, "icky": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "iconoclastic": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "idempotent": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "ignominiousness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ignominy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ileus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ill-advised": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "ill-chosen": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "ill-famed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "ill-favored": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "ill-favoured": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "illogical": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "immediate apprehension": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "imminence": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "imminency": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "imminent abortion": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "imminentness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "immolation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "immortality": { "pos": "n", "pol": "-0.312", "std": "0.265" }, "immotility": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "immovably": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "immunological disorder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "immunosuppressed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "imp": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "impacted tooth": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "impalpably": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "impede": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "impendence": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "impendency": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "imperceptible": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "imperfect": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "imperfectibility": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "impermissible": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "impertinence": { "pos": "n", "pol": "-0.292", "std": "0.144" }, "implausibly": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "imposter": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "impostor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "imposture": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "impotence": { "pos": "n", "pol": "-0.437", "std": "0.177" }, "impotency": { "pos": "n", "pol": "-0.437", "std": "0.177" }, "imprecisely": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "impregnability": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "improbably": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "improvident": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "impudence": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "impudent": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "impuissance": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "impurity": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "in great confusion": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "inadvertently": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "inappropriateness": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "inapt": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inattentiveness": { "pos": "n", "pol": "-0.437", "std": "0.354" }, "inauspiciousness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "incapability": { "pos": "n", "pol": "-0.312", "std": "0.354" }, "incapableness": { "pos": "n", "pol": "-0.312", "std": "0.354" }, "incapacitated": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inclement": { "pos": "a", "pol": "-0.375", "std": "0.354" }, "incommensurate": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "incommode": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "incompetent": { "pos": "a", "pol": "-0.35", "std": "0.168" }, "incomprehensible": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "inconceivable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "incongruity": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "incongruous": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "incongruousness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inconsequence": { "pos": "n", "pol": "-0.312", "std": "0.265" }, "inconsequent": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inconspicuous": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inconstancy": { "pos": "n", "pol": "-0.437", "std": "0.177" }, "inconvenient": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "inconvertible": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "incorruptibility": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "incubation period": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "incurable": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indecency": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "indecently": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "indecisively": { "pos": "r", "pol": "-0.312", "std": "0.0" }, "indefinable": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "indefinite": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "indelicacy": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "indelicate": { "pos": "a", "pol": "-0.458", "std": "0.072" }, "indescribable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "indifference": { "pos": "n", "pol": "-0.437", "std": "0.12" }, "indigestibility": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "indigestibleness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "indiscernible": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "indiscretion": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "indisposed": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "indistinguishable": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "indolence": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ineffectual": { "pos": "a", "pol": "-0.292", "std": "0.072" }, "inefficacious": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inept": { "pos": "a", "pol": "-0.333", "std": "0.125" }, "ineptitude": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "inequality": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inertia": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "inertial mass": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inessentiality": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inexactly": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "infamous": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "infamy": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "infantile amaurotic idiocy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "infantile fixation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "infelicitous": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "inferior alveolar artery": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inferior labial artery": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inferior labial vein": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "infernal": { "pos": "a", "pol": "-0.325", "std": "0.185" }, "infertility": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inflaming": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inharmonious": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "inherited disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inherited disorder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inhomogeneous": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inhospitable": { "pos": "a", "pol": "-0.375", "std": "0.265" }, "injure": { "pos": "v", "pol": "-0.417", "std": "0.072" }, "injuriously": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "injury": { "pos": "n", "pol": "-0.275", "std": "0.112" }, "innumerate": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inoperable": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "inopportunely": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "inquisitor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inroad": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "insensibility": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "insensible": { "pos": "a", "pol": "-0.406", "std": "0.072" }, "insensitive": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "insidiousness": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "insignia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "insignia of rank": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "insincerely": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "insipidity": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "insipidness": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "insolence": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "insoluble": { "pos": "a", "pol": "-0.458", "std": "0.217" }, "instinctive": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "insubordinate": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "insubstantial": { "pos": "a", "pol": "-0.375", "std": "0.354" }, "insubstantially": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "insufficiency": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "insuperable": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "insupportable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "insurgent": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "interfere": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "interference fringe": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "intermittent claudication": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "interrogator": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "interrupt": { "pos": "v", "pol": "-0.281", "std": "0.12" }, "intestinal obstruction": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "intolerant": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "intransigence": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "intransigency": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "intransitive": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "invader": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "invalidate": { "pos": "v", "pol": "-0.312", "std": "0.102" }, "invalidism": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inviolable": { "pos": "a", "pol": "-0.281", "std": "0.237" }, "invulnerability": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "iron-gray": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "iron-grey": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "iron carbide": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "iron deficiency anaemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "iron deficiency anemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "irrational": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "irregular": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "irregularity": { "pos": "n", "pol": "-0.281", "std": "0.177" }, "irretrievable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "irreverence": { "pos": "n", "pol": "-0.312", "std": "0.265" }, "irritability": { "pos": "n", "pol": "-0.375", "std": "0.125" }, "itch": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "itch mite": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "itchiness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "itching": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "jack plane": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "jaggedly": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "jammies": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "jaundice": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "jejunity": { "pos": "n", "pol": "-0.437", "std": "0.177" }, "jeopardize": { "pos": "v", "pol": "-0.375", "std": "0.177" }, "jerk-off": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "jerkily": { "pos": "r", "pol": "-0.312", "std": "0.0" }, "jerking": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "jerry-builder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "jiggle": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "jimmy": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "jinx": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "jonah": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "josh": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "jowly": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "judgment of conviction": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "juiceless": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "jumped-up": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "jungle fever": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "jungle rot": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "junk bond": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "jurisprudential": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "juvenile amaurotic idiocy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "juvenile delinquency": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "juvenility": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "katabatic wind": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "katharobe": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "katharobic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "katzenjammer": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "kayo": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "keratitis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "keratoderma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "keratodermia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "keratosis follicularis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "keratosis nigricans": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kernicterus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ketoaciduria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ketonemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ketonuria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ketosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "keyhole saw": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "keyless": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "kick in the butt": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kinanesthesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kiss of death": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kiss of life": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kitsch": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "klutz": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "knap": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "knock cold": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "knock down": { "pos": "v", "pol": "-0.375", "std": "0.072" }, "koan": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kook": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kyphosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "labor pain": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "labor pains": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "labour pains": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lac wax": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lacerate": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "lackadaisical": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "lacking": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "lackluster": { "pos": "a", "pol": "-0.437", "std": "0.265" }, "lacklustre": { "pos": "a", "pol": "-0.437", "std": "0.265" }, "lactase deficiency": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lactoflavin": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lactose intolerance": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lagging": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "laid-off": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "lambast": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "lambaste": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "lame": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "lancinate": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "lancinating": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "landfill": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "laryngitis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "laryngostenosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "last gasp": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "last resort": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lastingness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "latent diabetes": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "latent hostility": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lateral epicondylitis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lateral humeral epicondylitis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lateral line": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lateral line organ": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "law-breaking": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "law of Archimedes": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "law of partial pressures": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lawlessness": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "lawsuit": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lead arsenate": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lead astray": { "pos": "v", "pol": "-0.333", "std": "0.125" }, "lead on": { "pos": "v", "pol": "-0.375", "std": "0.177" }, "lead tree": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "leaf scorch": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lean": { "pos": "a", "pol": "-0.281", "std": "0.239" }, "lean-to": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "least": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lecture": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "lepidophobia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "leprosy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lesion": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "lessened": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "lethal": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "lethal dose": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "leucocytosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "leucopenia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "leukocytosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "leukopenia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lever": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "levity": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "lexical disambiguation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "licked": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "lifelessly": { "pos": "r", "pol": "-0.292", "std": "0.072" }, "light-headed": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "light-mindedness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "light touch": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lightheaded": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "lightheadedness": { "pos": "n", "pol": "-0.437", "std": "0.265" }, "limited war": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "limp": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "limpness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "line of battle": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "linebacker blitzing": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "liniment": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "linkboy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "linkman": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lipid granulomatosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lipidosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lipoid granulomatosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "liposarcoma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "liquidate": { "pos": "v", "pol": "-0.281", "std": "0.063" }, "listless": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "literary hack": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lithium carbonate": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "litigiousness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "littered": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "liver rot": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "liver spot": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "living dead": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "loather": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lobster pot": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "local anesthesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lock-up option": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "loins": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "look away": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "loon": { "pos": "n", "pol": "-0.333", "std": "0.0" }, "loose-jowled": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "lorica": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lounging pajama": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lour": { "pos": "v", "pol": "-0.375", "std": "0.072" }, "lovastatin": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "low-ceilinged": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "low-set": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "low quality": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lowbrow": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "lowbrowed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "lowering": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "lowlife": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lowly": { "pos": "a", "pol": "-0.281", "std": "0.063" }, "lowset": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "lug": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "lukewarmness": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "lunatic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "lupus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lusterless": { "pos": "a", "pol": "-0.437", "std": "0.265" }, "lustreless": { "pos": "a", "pol": "-0.437", "std": "0.265" }, "lymphadenopathy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lymphoblastic leukemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lymphocytosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lynch law": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lynching": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "macroglossia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "macular degeneration": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mad cow disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "madman": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "magnetic stripe": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "maim": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "main diagonal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "make-believe": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "mal de mer": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "malabsorption": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "malacia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "maladjusted": { "pos": "a", "pol": "-0.375", "std": "0.125" }, "malapropos": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "malcontent": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "malediction": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "malevolency": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "malformation": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "malfunction": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "malignance": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "malignancy": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "malignant anaemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "malignant anemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "malignant hypertension": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "malignant pustule": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "malignly": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "malingerer": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mallard": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "maltreater": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mama's boy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mamma's boy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "manana": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mandibular joint": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "manginess": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mangle": { "pos": "v", "pol": "-0.437", "std": "0.072" }, "mania": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "maniac": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "manic-depressive psychosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "manic depression": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "manic depressive illness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "maniclike": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "manipulate": { "pos": "v", "pol": "-0.271", "std": "0.137" }, "manpower": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mansard": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "mantelet": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "mantlet": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "maple syrup urine disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "marasmus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "marble bones disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "martial law": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "martyr": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "martyr operation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "martyrdom": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "masquerade": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "masquerade costume": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "material witness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "matricide": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "mauler": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "maw": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mawkishness": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "meanly": { "pos": "r", "pol": "-0.281", "std": "0.063" }, "meanness": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "meanspirited": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "meddling": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "medical dressing": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "medical examiner": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "megacardia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "megadeath": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "megalocardia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "megalomaniac": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "megrim": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "melaena": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "melancholia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "melena": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mellowingly": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "men": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "menace": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "mendacity": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mental block": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mental case": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "meralgia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mercury poisoning": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "meretriciousness": { "pos": "n", "pol": "-0.437", "std": "0.177" }, "mess of pottage": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mess up": { "pos": "v", "pol": "-0.292", "std": "0.072" }, "messiness": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "metabolic acidosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "methanal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "microcytosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "midazolam": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "middle class": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "migraine": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mildew": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "milk-sick": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "milk intolerance": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "milk leg": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mindlessness": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "mineral deficiency": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ministration": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mired": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "mirky": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "mischance": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "mischief": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "misconception": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "misdeal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "misfire": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "misfortune": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "misfunction": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "misgovern": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "mishandle": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "mishap": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "misinformation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mispronunciation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "misshapenness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mission impossible": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mistrial": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "molder": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "moldiness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "monkey business": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "monorchidism": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "monorchism": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "monstrosity": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "monstrous": { "pos": "a", "pol": "-0.375", "std": "0.191" }, "month by month": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "moral obligation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "morbid": { "pos": "a", "pol": "-0.292", "std": "0.26" }, "morbidness": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "morgue": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "moribund": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "mortal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mortuary": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "moth-eaten": { "pos": "a", "pol": "-0.292", "std": "0.125" }, "mother's boy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mothy": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "motor ataxia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "moue": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "moufflon": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mouflon": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "moulder": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "mountain ebony": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mouth-to-mouth resuscitation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "muck up": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "muddied": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "muddle": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "muff": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "muggee": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mulberry fig": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mulch": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "mulct": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "murder charge": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "murder indictment": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "murder mystery": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "murky": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "murmuring": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "musophobia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "muss": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mustiness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "musty": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "muteness": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "mutiny": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "mutt": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mutter": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "muttering": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "myocardiopathy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "myotonia atrophica": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "myotonic dystrophy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "myotonic muscular dystrophy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nance": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nanophthalmos": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "naproxen sodium": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "narcoleptic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "naupathia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "navy": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "near thing": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nebulously": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "necessity": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "necklet": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "necrobiosis lipoidica": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "necrobiosis lipoidica diabeticorum": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "necromantic": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "necropsy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neglect": { "pos": "n", "pol": "-0.375", "std": "0.105" }, "neglectfulness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "negligible": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "neonatal hyperbilirubinemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neoplasm": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nephroangiosclerosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nephrogenic diabetes insipidus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nephrosclerosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nerve compression": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nerve deafness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nervelessness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nervous disorder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neuralgia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neuralgy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neurasthenic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "neuritis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neurological disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neurological disorder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neurosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neurotic": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neuroticism": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neutralise": { "pos": "v", "pol": "-0.344", "std": "0.12" }, "neutrality": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "niggard": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "night terror": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nightmarish": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "nighttime": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nigrify": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "nincompoop": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ninny": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "niqab": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nitric oxide": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nitwit": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nobble": { "pos": "v", "pol": "-0.375", "std": "0.063" }, "nocent": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "nogging": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "noisily": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "non-water-soluble": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non compos mentis": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "nonaddictive": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "nonappearance": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nonarbitrary": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "nonattendance": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nonconscious": { "pos": "a", "pol": "-0.437", "std": "0.265" }, "nondisjunction": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nonharmonic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "nonhereditary": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "nonheritable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "noninheritable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "nonlegal": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "nonlethal": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "nonmusical": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "nonobservance": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nonresidential": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "nonresilient": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "nonresonant": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "nonsense": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "nonspeaking": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "nonsubmergible": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "nonsubmersible": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "nonuniform": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "notorious": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "nowhere": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "nuance": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nuclear meltdown": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nuisance abatement": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nullify": { "pos": "v", "pol": "-0.292", "std": "0.125" }, "numb": { "pos": "a", "pol": "-0.417", "std": "0.125" }, "numbers": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "numbers game": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "numbers pool": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nutation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nymphomania": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nymphomaniacal": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "obduracy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "objurgation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "obliquity": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "obliteration": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "obliviousness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "obloquy": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "obsidian": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "obstreperous": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "obtuseness": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "ochronosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "odd fellow": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "odd fish": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "odd man out": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "odorize": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "odourise": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "oedema": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "of unsound mind": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "off-colour": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "off year": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "ogre": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "oink": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "old guard": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "on the spot": { "pos": "r", "pol": "-0.292", "std": "0.072" }, "onion smut": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "onus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "onychosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "open-angle glaucoma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "openbill": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "operant conditioning": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "operational casualty": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "operational damage": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "oppress": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "oppressor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "orbital point": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "orbitale": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "orchid tree": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "orchidalgia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ordeal bean": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "order Equisetales": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "order Mycelia Sterilia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "order Psilotales": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "order Santalales": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "orphaned": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "osmium": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ostentation": { "pos": "n", "pol": "-0.458", "std": "0.072" }, "osteodystrophy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "osteolysis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "osteomalacia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "osteopetrosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "osteosclerosis congenita": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "otosclerosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "out-herod": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "out of the blue": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "out of the question": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "outbreak": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "outclassed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "outfight": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "outvie": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "ovarian vein": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "overflow incontinence": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "overlooked": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "oversensitiveness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "overwhelm": { "pos": "v", "pol": "-0.375", "std": "0.239" }, "pachycheilia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pain threshold": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "painfulness": { "pos": "n", "pol": "-0.437", "std": "0.177" }, "pajama": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "paleness": { "pos": "n", "pol": "-0.375", "std": "0.144" }, "palooka": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "palter": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "paltering": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "paltry": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "pancytopenia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pang": { "pos": "n", "pol": "-0.375", "std": "0.125" }, "pants suit": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pantsuit": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "paraesthesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "paralysis agitans": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "paralytic": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "paranoiac": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "paraparesis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "paraquat poisoning": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "parasitism": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "paresis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "paresthesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "parrot disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "parsimoniousness": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "parsimony": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "pass out": { "pos": "v", "pol": "-0.292", "std": "0.072" }, "passiveness": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "passivity": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "pasteurise": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "pasteurised": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "pasteurize": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "pasteurized": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "pathetically": { "pos": "r", "pol": "-0.437", "std": "0.0" }, "patka": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "patronless": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "pattern-bomb": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "peacekeeping": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "pearly-shelled mussel": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "peccadillo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "peeling": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pell-mell": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "pelt": { "pos": "v", "pol": "-0.292", "std": "0.0" }, "pelvic inflammatory disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "penal": { "pos": "a", "pol": "-0.417", "std": "0.125" }, "penalty": { "pos": "n", "pol": "-0.281", "std": "0.102" }, "penny-pinching": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pepper": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "pepperiness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "percuss": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "percussion cap": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "peril": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "perilously": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "periodic apnea of the newborn": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "periodic breathing": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "peritonsillar abscess": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "perleche": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pernicious": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "pernicious anaemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pernicious anemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "perpetual motion machine": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "persecute": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "perseveringly": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "perturbation": { "pos": "n", "pol": "-0.3", "std": "0.068" }, "pessimist": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pester": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "petrifying": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "petticoat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pettiness": { "pos": "n", "pol": "-0.375", "std": "0.144" }, "petty criticism": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "petulance": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "phalloplasty": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "phantasy life": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "phantom limb syndrome": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "phenylketonuria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "phlegmasia alba dolens": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "phobophobia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "phonophobia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "phosgene": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "phrenitis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "picaninny": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "piccaninny": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pickaninny": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "picklepuss": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pieta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pigeon": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pillaged": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "pine away": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "pink-slipped": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "pirana": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pis aller": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pisser": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "pitchstone": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pitiably": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "pitiless": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "pixilated": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "pj's": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "plaint": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "plant life": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "plant order": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "platitudinal": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "platitudinous": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "play a joke on": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "pleonasm": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pleuralgia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pleurodynia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "plod": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "plonk": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "pneumoconiosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pneumonia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pneumonoconiosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pneumothorax": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pockmark": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "poetiser": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "poetizer": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "poignancy": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "poison": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "poison gas": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "poisonous parasol": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "poisonous substance": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "polecat": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "polemicise": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "polemicize": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "polemise": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "polemize": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "police action": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "poliosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "polish off": { "pos": "v", "pol": "-0.292", "std": "0.072" }, "pollutant": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "polycythemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "polymyositis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "polyuria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pommel": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "poniard": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "poof": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pooh-bah": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "poove": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "popery": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "porphyria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "portal vein": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "portentous": { "pos": "a", "pol": "-0.292", "std": "0.144" }, "porter's beer": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "positive degree": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "positive fraud": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "post-mortem examination": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "postmortem examination": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "postulation": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "posturing": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "potato fungus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "potato nose": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "potato wart": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pother": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "poverty trap": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "precarious": { "pos": "a", "pol": "-0.375", "std": "0.072" }, "precariousness": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "precious coral": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "press down on": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "pretence": { "pos": "n", "pol": "-0.3", "std": "0.105" }, "pretender": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pretense": { "pos": "n", "pol": "-0.3", "std": "0.105" }, "pretension": { "pos": "n", "pol": "-0.333", "std": "0.0" }, "pretrial": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pretrial conference": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "prevaricate": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "prevenient": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "prey": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "priapism": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "prick": { "pos": "n", "pol": "-0.344", "std": "0.063" }, "prig": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "primitivism": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "principal diagonal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "problem": { "pos": "n", "pol": "-0.292", "std": "0.125" }, "proctalgia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "prodroma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "prodrome": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "profanely": { "pos": "r", "pol": "-0.312", "std": "0.088" }, "professedly": { "pos": "r", "pol": "-0.312", "std": "0.088" }, "promiscuous": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "proof": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "prosaic": { "pos": "a", "pol": "-0.292", "std": "0.144" }, "protect": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "protest": { "pos": "n", "pol": "-0.292", "std": "0.0" }, "protrude": { "pos": "v", "pol": "-0.292", "std": "0.0" }, "prurigo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pseud": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pseudo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "psoriasis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "psycho": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "psychoneurosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "psychopath": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "psychosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "psychosomatic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "psychosomatic disorder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "psychotic": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "psychotic person": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "puff of air": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pugnacity": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "puke": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "pullout": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pulmonary emphysema": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pummel": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "punch-up": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pungency": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "punk rock": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "puny": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "purple apricot": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "push back": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "push down": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "pushiness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "putrefy": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "putrescence": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "putrescent": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "putridness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "puzzling": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "pyjama": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "pyre": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pyrectic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "pyrophobia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "quail at": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "quandary": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "quarantine": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "quarrel": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "queasiness": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "queer": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "queer bird": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "queer duck": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "querulousness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "quinsy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "quisling": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "quotient verdict": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rabbit burrow": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rabbit hole": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rachitic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "rachitis": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "radial asymmetry": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "raggedness": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "raging": { "pos": "a", "pol": "-0.458", "std": "0.144" }, "raid": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "rainstorm": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rale": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rambunctious": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "rancidity": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ransom": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "ranter": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rape conviction": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rappee": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rapscallion": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "rascal": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "rascally": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "raspy": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "rat": { "pos": "v", "pol": "-0.292", "std": "0.065" }, "rateability": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rattrap": { "pos": "n", "pol": "-0.458", "std": "0.0" }, "ravage": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "raw recruit": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "raw weather": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rawness": { "pos": "n", "pol": "-0.406", "std": "0.102" }, "re-sentencing": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rear back": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "rebut": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "reconditeness": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "reconnaissance by fire": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "recoverer": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "recreant": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "red-gray": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "red-grey": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "red alert": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "red man": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "red silk-cotton tree": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "red silk cotton": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "redbug": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "reddish-gray": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "reddish-grey": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "reef": { "pos": "v", "pol": "-0.292", "std": "0.0" }, "reflex": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "refractory": { "pos": "a", "pol": "-0.333", "std": "0.125" }, "refute": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "refuter": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "regional enteritis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "regional ileitis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "regorge": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "relapse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "relentless": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "relishing": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "removable disk": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "renal colic": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "renegade": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "repine": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "reprobate": { "pos": "v", "pol": "-0.375", "std": "0.072" }, "reprobation": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "repulsive force": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "requirement": { "pos": "n", "pol": "-0.333", "std": "0.144" }, "rescuer": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "respiratory syncytial virus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "respite": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "restless": { "pos": "a", "pol": "-0.333", "std": "0.072" }, "restrictiveness": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "resultant role": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "retrogress": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "retronym": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "revel": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "revelry": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "reviewing stand": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rheumatic": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rheumatic fever": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rheumatism": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rheumatoid arthritis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rhinophyma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rhizoctinia disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rhizotomy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rhodomontade": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rhymer": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rhymester": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ribald": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "riboflavin": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rickets": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rid": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "rigidify": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "rigor": { "pos": "n", "pol": "-0.292", "std": "0.191" }, "rigor mortis": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "rigour": { "pos": "n", "pol": "-0.292", "std": "0.191" }, "rimless": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "ring disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ring rot": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rioting": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rip out": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "risky venture": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ritual killing": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "robbery": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "robbery conviction": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "robustious": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "rock-ribbed": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "rockiness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rocky": { "pos": "a", "pol": "-0.281", "std": "0.12" }, "rodomontade": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "roentgen ray": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rofecoxib": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "roguish": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "roguishly": { "pos": "r", "pol": "-0.312", "std": "0.0" }, "roisterer": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rosacea": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rot": { "pos": "n", "pol": "-0.333", "std": "0.125" }, "rottenness": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "rotter": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rough": { "pos": "r", "pol": "-0.312", "std": "0.0" }, "rough up": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "rough water": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "roughage": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "roughen": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "roughened": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "roughness": { "pos": "n", "pol": "-0.286", "std": "0.086" }, "rub": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "rubble": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rubor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ruin": { "pos": "v", "pol": "-0.333", "std": "0.102" }, "ruination": { "pos": "n", "pol": "-0.406", "std": "0.072" }, "rum-blossom": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rum nose": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rumble": { "pos": "n", "pol": "-0.292", "std": "0.0" }, "rumbustious": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "run-down": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "ruse": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rust fungus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sackcloth": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "sacrifice": { "pos": "v", "pol": "-0.375", "std": "0.125" }, "sacrifice operation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "saddle sore": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "safety blitz": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "safety hat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "salient": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "salvageable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sand trap": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sanitary landfill": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "saprobic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "saprophagous": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "saprophyte": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "saprophytic": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "saprophytic organism": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "saprozoic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sarcoptid": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "saturnalia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "savagery": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "savoring": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "scabby": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "scabrous": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "scamp": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "scandalisation": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "scandalization": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "scantily": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "scanty": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scarred": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "scathe": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "scentless": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "schlock": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "scleroderma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "scolding": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "scoliosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "scorched": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "scoreless": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "scoured": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "scourge": { "pos": "v", "pol": "-0.292", "std": "0.072" }, "scrape": { "pos": "n", "pol": "-0.344", "std": "0.0" }, "scratchy": { "pos": "a", "pol": "-0.437", "std": "0.072" }, "scrawler": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "screak": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "screech": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "screen memory": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "scrimy": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "scrofulous": { "pos": "a", "pol": "-0.417", "std": "0.26" }, "scrooge": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "scrunch": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "scullery": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "scum bag": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "scunner": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "scupper": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "scurfy": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "seasick": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "seasickness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "seborrheic dermatitis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "seborrheic eczema": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "secondary diagonal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "secret police": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "secretiveness": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "sedative-hypnotic": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sedative-hypnotic drug": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "seed pearl": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "seediness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "self-assertiveness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "self-evident truth": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "self-punishment": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sellout": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "semblance": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "senile dementia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "senile psychosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "senseless": { "pos": "a", "pol": "-0.281", "std": "0.213" }, "sensorineural hearing loss": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sepulcher": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sepulchral": { "pos": "a", "pol": "-0.375", "std": "0.217" }, "sepulchre": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sepulture": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "sericea lespedeza": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "serology": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "session cookie": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "setterwort": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "severeness": { "pos": "n", "pol": "-0.344", "std": "0.144" }, "severity": { "pos": "n", "pol": "-0.344", "std": "0.144" }, "sex-linked disorder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sex crime": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sex offense": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sexless": { "pos": "a", "pol": "-0.292", "std": "0.125" }, "sexual abuse": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sexual assault": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "shabbily": { "pos": "r", "pol": "-0.312", "std": "0.088" }, "shabby": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "shagged": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "shakiness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "shaking palsy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "shaky": { "pos": "a", "pol": "-0.375", "std": "0.125" }, "shamefulness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "shammer": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "shapeless": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "shark": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "shatter": { "pos": "v", "pol": "-0.375", "std": "0.072" }, "sheep rot": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "shellac wax": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "shellproof": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "shenanigan": { "pos": "n", "pol": "-0.437", "std": "0.177" }, "shimmer": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "shin splints": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "shingles": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "shipwreck": { "pos": "v", "pol": "-0.281", "std": "0.063" }, "shivering": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "shlock": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "shock": { "pos": "v", "pol": "-0.339", "std": "0.061" }, "shoot down": { "pos": "v", "pol": "-0.333", "std": "0.0" }, "shootout": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "shopworn": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "short-haired": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "short-stalked": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "shortage": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "shortness of breath": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "shove along": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "shove off": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "showiness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "shrieked": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "shucks": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "shuddering": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "shy away from": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "sick": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "sick list": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sick person": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sickly": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "sickness": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "side drum": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "siderocyte": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sideropenia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sideswipe": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "silicosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "silverish": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "simal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sin": { "pos": "n", "pol": "-0.275", "std": "0.056" }, "single-handed": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "single-handedly": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "sinister": { "pos": "a", "pol": "-0.375", "std": "0.191" }, "sizzle": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sketchiness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ski jacket": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ski parka": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "skin disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "skin disorder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "skin over": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "skin test": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "skinflint": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "skinless": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "skirt chaser": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "skreak": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "slackness": { "pos": "n", "pol": "-0.333", "std": "0.144" }, "slam": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "slander": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "slang": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "slaughter": { "pos": "n", "pol": "-0.292", "std": "0.217" }, "slide down": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "slimy": { "pos": "a", "pol": "-0.437", "std": "0.265" }, "slipper": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "slovenliness": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "slovenly woman": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "slowness": { "pos": "n", "pol": "-0.458", "std": "0.144" }, "slugfest": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sluggard": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "slummy": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "slurp": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "small-particle pollution": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "smallpox": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "smart aleck": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "smear": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "smell up": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "smirch": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "smite": { "pos": "v", "pol": "-0.333", "std": "0.144" }, "smuttiness": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "smutty": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "snack bar": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "snack counter": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "snafu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "snake oil": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "snare drum": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "snarl": { "pos": "n", "pol": "-0.458", "std": "0.144" }, "sneak": { "pos": "v", "pol": "-0.281", "std": "0.063" }, "sneeze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sneezer": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "snit": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "snob": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "snooker": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "snort": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "so-and-so": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "social lion": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sociopath": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "soft water": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "soil conservation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "soiling": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "soilure": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "solacement": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "sometime": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "somewhere": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sooty": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "sophism": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sophist": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sophistic": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "sophistical": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sophistry": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sordid": { "pos": "a", "pol": "-0.281", "std": "0.188" }, "sore-eyed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "soreness": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "sottishness": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "soul patch": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sound off": { "pos": "v", "pol": "-0.292", "std": "0.072" }, "sour": { "pos": "a", "pol": "-0.292", "std": "0.184" }, "sour cream": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "soured cream": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sourpuss": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "spadework": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "spareness": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "spasm": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "spasmodically": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "spastic": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "spastic bladder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "speech defect": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "speech disorder": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "spelter": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "spherocyte": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "spinal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "spinal anaesthesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "spinal anesthesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "spirit rapping": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "spit out": { "pos": "v", "pol": "-0.292", "std": "0.072" }, "splenetic": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "splenomegaly": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "splutter": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "spoliation": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "spook": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "spotted fever": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sputter": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "sputtering": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "squabbler": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "squalidness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "squall": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "squalor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "squandered": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "squandering": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "squiggle": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "stabbing": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "staghead": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "stagnant": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "stain": { "pos": "n", "pol": "-0.3", "std": "0.068" }, "staleness": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "stammer": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "stand up": { "pos": "v", "pol": "-0.268", "std": "0.047" }, "startle reflex": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "starvation acidosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "state of nature": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "stationary": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "steatopygia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "steatorrhea": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "steel": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "steel gray": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "steel grey": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "stenosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sternness": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "stick up": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "stifled": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sting": { "pos": "v", "pol": "-0.35", "std": "0.056" }, "stink out": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "stink up": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "stinker": { "pos": "n", "pol": "-0.375", "std": "0.125" }, "stinking cedar": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "stinking hellebore": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "stinking yew": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "stoicism": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "stolidness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "stonewalling": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "strabismus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "strafe": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "straightjacket": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "strait": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "straiten": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "strangled": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "strapless": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "stratagem": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "strategic warning": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "strenuousness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "stressed": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "strikebound": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "strikebreaker": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "stub out": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "stubborn": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "stuck": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "stumble": { "pos": "n", "pol": "-0.312", "std": "0.265" }, "stumblebum": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "stunt": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "stupefy": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "stutter": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "subacid": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "subduedness": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "subgenus Chen": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "subjugate": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "subjugation": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "subtlety": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "suffer": { "pos": "v", "pol": "-0.341", "std": "0.065" }, "sufferer": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "suggestibility": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "suicide bomber": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "suicide mission": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sullen": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "sunder": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "superbia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "superciliousness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "superclass Gnathostomata": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "superficially": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "supernatural": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "superstitious": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "suppurating sore": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "surgical strike": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "surprise": { "pos": "v", "pol": "-0.292", "std": "0.072" }, "surprisingness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "survivor": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "suspended animation": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "suttee": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "swale": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "swashbuckler": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "swat": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "swellhead": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "swimming trunks": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "swooning": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sycamore fig": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "symptomatically": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "systemic lupus erythematosus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tabard": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tabes": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "table rapping": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "table tapping": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tackiness": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "tacky": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "tactless": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "take-in": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "take it on the chin": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "take lying down": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "tampering": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tank top": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tantalise": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "tantalize": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "taphephobia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "taradiddle": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tarantism": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tarradiddle": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "taskmaster": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tatterdemalion": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "taunt": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "tautness": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "tawdriness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "taxpaying": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "technical analysis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "technical analysis of stock trends": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "telescope": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "tell on": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "temerity": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tempestuous": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "tempestuousness": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "temporomandibular joint": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tenia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tennis elbow": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tense": { "pos": "v", "pol": "-0.312", "std": "0.072" }, "tenured": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "tepidness": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "teras": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "teratogenesis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tergiversate": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "terminator": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "terrorist attack": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "terrorist group": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "terrorist organization": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "terry towel": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "testimonial immunity": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "thanatopsis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "thanksgiving": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "the Tempter": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "thermoset": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "thermosetting": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "thorniness": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "thoughtless": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "threadbare": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "threat": { "pos": "n", "pol": "-0.437", "std": "0.102" }, "threaten": { "pos": "v", "pol": "-0.375", "std": "0.072" }, "threatened abortion": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "thrombocytopenia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "thrombopenia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "throw out of kilter": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "throw up": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "thunderous": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "thurify": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "thwack": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "thyrocalcitonin": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "thyroid": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "tibial vein": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ticking bomb": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "time out": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "timeless": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "tin hat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "toadstool": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tobacco wilt": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tomentous": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "tommyrot": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "toneless": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "tongue-lashing": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tongue twister": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tooth enamel": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "top-heavy": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "toper's nose": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "topical anaesthesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "topical anesthesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "topmast": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "topsy-turvily": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "tormented": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "torpidity": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "torpor": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "torture": { "pos": "n", "pol": "-0.4", "std": "0.088" }, "torturously": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "tosh": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tote": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "tottering": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "touched": { "pos": "a", "pol": "-0.292", "std": "0.144" }, "tough": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "toughie": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "toxicant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "toxin antitoxin": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "toxoplasmosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tragedy": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "tragic": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "transfusion reaction": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "transmigration": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "trap": { "pos": "v", "pol": "-0.406", "std": "0.0" }, "trap line": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "trauma": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "travel-soiled": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "travel-stained": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "treason": { "pos": "n", "pol": "-0.292", "std": "0.125" }, "trembling": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trifurcate": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "trinket": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tripinnatifid": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "triteness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "trounce": { "pos": "v", "pol": "-0.417", "std": "0.0" }, "truckle": { "pos": "v", "pol": "-0.312", "std": "0.177" }, "trudge": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trump up": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "tsine": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tuff": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tumor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tumour": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tumultuous": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "tumultuous disturbance": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tumultuousness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tunnel vision": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "turbulence": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tushery": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tutu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "twaddle": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "twerp": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "twin towers": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "twirp": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "twit": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "ulalgia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "unabridged": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "unabridged dictionary": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "unacceptability": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "unacceptable": { "pos": "a", "pol": "-0.406", "std": "0.157" }, "unacceptableness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "unaccustomed": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "unacquainted with": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unadaptable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unadjustable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unadjusted": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "unadoptable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unaided": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unalike": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unanswered": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unanticipated": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unappreciatively": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "unarbitrary": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unascertainable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unascribable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unasked": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unassisted": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "unattributable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unbanded": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unbrushed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "uncalled-for": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "uncaring": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "unchangeable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unchivalrously": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "uncleanly": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unclipped": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "uncomplimentary": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "uncomprehensible": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unconditionally": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "unconditioned": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "unconfirmed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "uncongenial": { "pos": "a", "pol": "-0.417", "std": "0.191" }, "unconquerable": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "unconscientious": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unconscionable": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "unconscious": { "pos": "a", "pol": "-0.333", "std": "0.125" }, "unconsciously": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "unconsummated": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unconventionality": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "unconvertible": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "uncultivated": { "pos": "a", "pol": "-0.375", "std": "0.125" }, "uncured": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "undedicated": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "undefined": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "undeniable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "undepicted": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "underactive": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "underbelly": { "pos": "n", "pol": "-0.292", "std": "0.144" }, "underclothes": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "underclothing": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "underdeveloped": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "underexposure": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "underneath": { "pos": "r", "pol": "-0.375", "std": "0.088" }, "underpants": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "underpopulated": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "underquote": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "underrate": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "undersell": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "underseller": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "undershot": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "undershrub": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "underskirt": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "underwear": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "undetected": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "undigested": { "pos": "a", "pol": "-0.437", "std": "0.265" }, "undiscoverable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "undreamed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "undreamed of": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "undreamt": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "undreamt of": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "undue": { "pos": "a", "pol": "-0.281", "std": "0.12" }, "unemployable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unemployment rate": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "unenforceable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unethical": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unevenly": { "pos": "r", "pol": "-0.292", "std": "0.072" }, "unexacting": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unexchangeable": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "unexpectedness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "unexplained": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "unexplored": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unexpressed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unfaithful": { "pos": "a", "pol": "-0.312", "std": "0.063" }, "unfamiliar": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unfamiliar with": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unfed": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "unfitness": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "unfixed": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "unfledged": { "pos": "a", "pol": "-0.292", "std": "0.072" }, "unforeseen": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unforfeitable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unfunded": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "ungracefully": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "ungraciously": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "ungratefully": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "ungroomed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unhealed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unhelpfully": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "unimaginable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unimagined": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unimproved": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "unindustrialised": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unindustrialized": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "uninfluential": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "uninformed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "uninspired": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "uninstructed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "uninvited": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unipolar depression": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "unjustifiable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unkemptness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "unkindly": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "unknowingly": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "unknown": { "pos": "a", "pol": "-0.4", "std": "0.112" }, "unlearned": { "pos": "a", "pol": "-0.458", "std": "0.072" }, "unlighted": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unlit": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unlooked-for": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unmanageable": { "pos": "a", "pol": "-0.281", "std": "0.161" }, "unmanageably": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "unmarked": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "unmusical": { "pos": "a", "pol": "-0.417", "std": "0.125" }, "unnotched": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unnoted": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unobserved": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "unofficially": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "unpalatability": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "unpalatableness": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "unpardonable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unpatronised": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unpatronized": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unpatterned": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unpeaceable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unperceivable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unperceiving": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unperceptive": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "unpictured": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unpillared": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unpleasantly": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "unpointedness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "unpracticed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unpractised": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unproductive": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "unpropitiousness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "unquestionable": { "pos": "a", "pol": "-0.292", "std": "0.125" }, "unquietly": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "unquotable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unratified": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unreactive": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "unready": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unreal": { "pos": "a", "pol": "-0.437", "std": "0.12" }, "unrealistic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unreasonably": { "pos": "r", "pol": "-0.437", "std": "0.177" }, "unreciprocated": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unrecognisable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unrecognised": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "unrecognizable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unrecognized": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "unreconciled": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unrefreshed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unrelated": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "unrelatedness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "unrenewed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unrentable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unrepresentative": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unrequested": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unrequited": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unreserved": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unresolvable": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "unresponsive": { "pos": "a", "pol": "-0.292", "std": "0.144" }, "unrest": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "unrested": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unretrievable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unreverberant": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unrevived": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unrhythmic": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unrhythmical": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unroofed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unrouged": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unruly": { "pos": "a", "pol": "-0.292", "std": "0.072" }, "unsaid": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unsavory": { "pos": "a", "pol": "-0.312", "std": "0.354" }, "unsavoury": { "pos": "a", "pol": "-0.312", "std": "0.354" }, "unseamanlike": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unseasonably": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "unseasoned": { "pos": "a", "pol": "-0.417", "std": "0.072" }, "unserviceable": { "pos": "a", "pol": "-0.375", "std": "0.265" }, "unservile": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unsharpened": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unsheathed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unshuttered": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unsociable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unsoldierly": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unsolicited": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unsolved": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unstated": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unstoppable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unstudious": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unsubmissive": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unsung": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "unsupervised": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unsupportable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unsuspected": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unsuspecting": { "pos": "a", "pol": "-0.312", "std": "0.354" }, "unsuspectingly": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "unsympathetic": { "pos": "a", "pol": "-0.35", "std": "0.137" }, "unsympathising": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unsympathizing": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "untellable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "untested": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "untidy": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "untoothed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "untransmutable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "untried": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "untrue": { "pos": "a", "pol": "-0.406", "std": "0.125" }, "untruthfulness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "untucked": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unuttered": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unverbalised": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unverbalized": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unversed": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unwarrantable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unwarranted": { "pos": "a", "pol": "-0.292", "std": "0.125" }, "unwelcome": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "unwilled": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "unwilling": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "unwished": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unwished-for": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unwittingly": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "unworkmanlike": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "unyieldingness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "upchuck": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "upheaval": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "uproar": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "upsetter": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "urarthritis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "urban legend": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "urethritis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "urge": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "urinary hesitancy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "urinary incontinence": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "urticate": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "use immunity": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vaccine": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vaccinee": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vaccinum": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vacuity": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "valdecoxib": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "valise": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "valvular heart disease": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "variola": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "varnished": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "vehemence": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "vena centralis glandulae suprarenalis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vena labialis inferior": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vena ovarica": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vena tibialis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "verd antique": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "verde antique": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vermiculate": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "versifier": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vesicate": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "vestibular": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "vestibular apparatus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vestibular system": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vicious": { "pos": "a", "pol": "-0.437", "std": "0.213" }, "victim": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "villainousness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "villainy": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "violence": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "violent storm": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "virulence": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "virulency": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "virulent": { "pos": "a", "pol": "-0.292", "std": "0.072" }, "visual aphasia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "visually impaired person": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vitamin B2": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vitamin G": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vitiated": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "vitriol": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "volubility": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "volvulus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vomer": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vomit": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "vomit up": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "vomitus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vulgarian": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "waistcoat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "walk-on": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "walk off": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "walk out": { "pos": "v", "pol": "-0.458", "std": "0.072" }, "walkout": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "wally": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "wangler": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "wanker": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "want": { "pos": "v", "pol": "-0.275", "std": "0.112" }, "wanting": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "war criminal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "war party": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ward": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "warning light": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "warragal": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "warrigal": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "warrior": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "waste material": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "waste matter": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "waste of money": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "waste product": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "wasteful": { "pos": "a", "pol": "-0.292", "std": "0.125" }, "wasting": { "pos": "n", "pol": "-0.437", "std": "0.177" }, "water-insoluble": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "wavy": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "weakener": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "weakness": { "pos": "n", "pol": "-0.275", "std": "0.19" }, "wear down": { "pos": "v", "pol": "-0.375", "std": "0.177" }, "weasel": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "weisenheimer": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "well-nigh": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "well-worn": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "wet lung": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "whacked": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "whaleboat": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "whang": { "pos": "v", "pol": "-0.333", "std": "0.0" }, "whinstone": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "whip": { "pos": "v", "pol": "-0.271", "std": "0.051" }, "whiskers": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "white-bread": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "white leg": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "white lie": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "white lung": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "white popinac": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "whoopee": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "wiesenboden": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "wild": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "wild flower": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "wild ox": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "wildcat": { "pos": "n", "pol": "-0.292", "std": "0.0" }, "wildflower": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "wildness": { "pos": "n", "pol": "-0.406", "std": "0.157" }, "wince": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "wind scale": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "windburn": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "windburned": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "windburnt": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "wine-colored": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "wine-coloured": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "wingless": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "wise guy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "wiseacre": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "wisenheimer": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "witch broom": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "witchcraft": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "witchery": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "witches' broom": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "withstander": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "wolf": { "pos": "n", "pol": "-0.292", "std": "0.0" }, "woman chaser": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "woodenly": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "woofer": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "wop": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "word blindness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "word deafness": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "work-shirt": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "work force": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "workforce": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "working out": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "wormwood oil": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "worn": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "worn spot": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "worsening": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "wound": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "wounding": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "wrack": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "wrangling": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "wreck": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "wrick": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "wrist band": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "wristlet": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "wrongful": { "pos": "a", "pol": "-0.292", "std": "0.072" }, "wrongful death": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "wry face": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "xanthoma multiplex": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "xanthomatosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "xeroderma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "xerodermia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "xeroma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "xerophthalmia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "xerophthalmus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "xerostomia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "yap": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "yashmac": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "yashmak": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "yawp": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "yaws": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "yell": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "yelling": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "yellow-gray": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "yellow-grey": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "yellow man": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "yellowish-gray": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "zalcitabine": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zap": { "pos": "v", "pol": "-0.281", "std": "0.0" }, "zombi spirit": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zombie spirit": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zoster": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "abatis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abattis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abaxially": { "pos": "r", "pol": "0.25", "std": "0.0" }, "abdominous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "abet": { "pos": "v", "pol": "0.25", "std": "0.0" }, "abient": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ablaze": { "pos": "a", "pol": "0.25", "std": "0.188" }, "able-bodied seaman": { "pos": "n", "pol": "0.25", "std": "0.0" }, "able seaman": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abolishable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "abominable snowman": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abortifacient": { "pos": "a", "pol": "0.25", "std": "0.0" }, "abracadabra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abruptly-pinnate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "abscessed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "absentminded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "absolute space": { "pos": "n", "pol": "0.25", "std": "0.0" }, "absolvitory": { "pos": "a", "pol": "0.25", "std": "0.0" }, "absorbate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "absorbefacient": { "pos": "a", "pol": "0.25", "std": "0.0" }, "absorption factor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "absorptivity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abstention": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abstracted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aby": { "pos": "v", "pol": "0.25", "std": "0.0" }, "abye": { "pos": "v", "pol": "0.25", "std": "0.0" }, "abyssal zone": { "pos": "n", "pol": "0.25", "std": "0.0" }, "academic freedom": { "pos": "n", "pol": "0.25", "std": "0.0" }, "academic requirement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "academically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "acanthion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acarpous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "accent mark": { "pos": "n", "pol": "0.25", "std": "0.0" }, "accentuation": { "pos": "n", "pol": "0.25", "std": "0.177" }, "accessional": { "pos": "a", "pol": "0.25", "std": "0.0" }, "accommodator": { "pos": "n", "pol": "0.25", "std": "0.0" }, "accord": { "pos": "n", "pol": "0.25", "std": "0.12" }, "account executive": { "pos": "n", "pol": "0.25", "std": "0.0" }, "account representative": { "pos": "n", "pol": "0.25", "std": "0.0" }, "account statement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "accountant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "accounting firm": { "pos": "n", "pol": "0.25", "std": "0.0" }, "accoutered": { "pos": "a", "pol": "0.25", "std": "0.0" }, "accoutred": { "pos": "a", "pol": "0.25", "std": "0.0" }, "accreditation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "accretionary": { "pos": "a", "pol": "0.25", "std": "0.0" }, "achievability": { "pos": "n", "pol": "0.25", "std": "0.0" }, "achromatinic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "acid rock": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acidulate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "acoustic delay line": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acoustic gramophone": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acoustic projection": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acoustic wave": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acquaintance": { "pos": "n", "pol": "0.25", "std": "0.072" }, "acquaintanceship": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acquired taste": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acquirement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acquisitive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "acrobat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acrocarp": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acrocarpous moss": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acromial process": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acromion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acronymic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "acronymous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "actinoid": { "pos": "a", "pol": "0.25", "std": "0.0" }, "action painting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "activating": { "pos": "a", "pol": "0.25", "std": "0.0" }, "active": { "pos": "a", "pol": "0.25", "std": "0.139" }, "active trust": { "pos": "n", "pol": "0.25", "std": "0.0" }, "actualisation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "actualization": { "pos": "n", "pol": "0.25", "std": "0.0" }, "actuating": { "pos": "a", "pol": "0.25", "std": "0.0" }, "acuate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "acumen": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acuminate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "acuteness": { "pos": "n", "pol": "0.25", "std": "0.144" }, "ad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ad agency": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ad hominem": { "pos": "a", "pol": "0.25", "std": "0.0" }, "adage": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adaptative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "adapter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adaptive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "adaptor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adeptness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adhesion contract": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adhesive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "adient": { "pos": "a", "pol": "0.25", "std": "0.0" }, "adjuratory": { "pos": "a", "pol": "0.25", "std": "0.088" }, "adjustive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "admirer": { "pos": "n", "pol": "0.25", "std": "0.125" }, "admissibility": { "pos": "n", "pol": "0.25", "std": "0.0" }, "admonisher": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adolescent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adoption": { "pos": "n", "pol": "0.25", "std": "0.191" }, "adorer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adpressed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "adrenaline": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adroitness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adsorbable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "adsorbate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adulation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adverse opinion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "advert": { "pos": "n", "pol": "0.25", "std": "0.0" }, "advertising": { "pos": "n", "pol": "0.25", "std": "0.0" }, "advertising agency": { "pos": "n", "pol": "0.25", "std": "0.0" }, "advertizement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "advertizing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "advice": { "pos": "n", "pol": "0.25", "std": "0.0" }, "advisedly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "advisement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "advisory": { "pos": "a", "pol": "0.25", "std": "0.0" }, "advisory service": { "pos": "n", "pol": "0.25", "std": "0.0" }, "advocacy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aerobe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aerobiotic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aerophile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aesthetician": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aether": { "pos": "n", "pol": "0.25", "std": "0.0" }, "affability": { "pos": "n", "pol": "0.25", "std": "0.0" }, "affableness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "affect": { "pos": "n", "pol": "0.25", "std": "0.0" }, "affecting": { "pos": "a", "pol": "0.25", "std": "0.0" }, "affidavit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "affiliated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "affirmation": { "pos": "n", "pol": "0.25", "std": "0.228" }, "affricate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "affricate consonant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "affricative": { "pos": "n", "pol": "0.25", "std": "0.0" }, "afoot": { "pos": "a", "pol": "0.25", "std": "0.177" }, "aftercare": { "pos": "n", "pol": "0.25", "std": "0.0" }, "afterglow": { "pos": "n", "pol": "0.25", "std": "0.177" }, "agape love": { "pos": "n", "pol": "0.25", "std": "0.0" }, "age-related": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aggrade": { "pos": "v", "pol": "0.25", "std": "0.0" }, "aggregated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aggregative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "agility": { "pos": "n", "pol": "0.25", "std": "0.0" }, "agleam": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aglow": { "pos": "a", "pol": "0.25", "std": "0.0" }, "agon": { "pos": "n", "pol": "0.25", "std": "0.0" }, "agreed upon": { "pos": "a", "pol": "0.25", "std": "0.0" }, "agronomist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ahead": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ahead of time": { "pos": "r", "pol": "0.25", "std": "0.0" }, "aid station": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aide-memoire": { "pos": "n", "pol": "0.25", "std": "0.0" }, "air-cooled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "air-dry": { "pos": "a", "pol": "0.25", "std": "0.0" }, "air bag": { "pos": "n", "pol": "0.25", "std": "0.0" }, "air wave": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aired": { "pos": "a", "pol": "0.25", "std": "0.0" }, "airmanship": { "pos": "n", "pol": "0.25", "std": "0.0" }, "airplane ticket": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ajar": { "pos": "a", "pol": "0.25", "std": "0.0" }, "al-Qur'an": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alacrity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alarm bell": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alary": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alcalescent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alcohol-dependent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alcoholic": { "pos": "a", "pol": "0.25", "std": "0.088" }, "aleatory contract": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alendronate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alertness": { "pos": "n", "pol": "0.25", "std": "0.144" }, "alethic logic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "algorithm": { "pos": "n", "pol": "0.25", "std": "0.0" }, "algorithmic program": { "pos": "n", "pol": "0.25", "std": "0.0" }, "algorithmic rule": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alibi": { "pos": "v", "pol": "0.25", "std": "0.0" }, "alienation of affection": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aliform": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aliphatic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alkalescent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alkalotic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "all-fired": { "pos": "r", "pol": "0.25", "std": "0.0" }, "all-knowing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "all-metal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "all-or-none law": { "pos": "n", "pol": "0.25", "std": "0.0" }, "all-purpose": { "pos": "a", "pol": "0.25", "std": "0.0" }, "all over": { "pos": "a", "pol": "0.25", "std": "0.0" }, "allegement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "allergy diet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "allocate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "allow for": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ally": { "pos": "n", "pol": "0.25", "std": "0.177" }, "ally with": { "pos": "v", "pol": "0.25", "std": "0.0" }, "alpenstock": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alpine coltsfoot": { "pos": "n", "pol": "0.25", "std": "0.0" }, "also-ran": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alterable": { "pos": "a", "pol": "0.25", "std": "0.088" }, "alternative": { "pos": "a", "pol": "0.25", "std": "0.072" }, "alternative birth": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alternative birthing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "altitudinous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "altruistic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alveolar point": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amalgamative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "amazed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "amber-green": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ambidextrous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ambitiousness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amble": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ameer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ameliorating": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ameliorative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "amelioratory": { "pos": "a", "pol": "0.25", "std": "0.0" }, "amend": { "pos": "v", "pol": "0.25", "std": "0.26" }, "amended return": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amethopterin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amiableness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amir": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amnio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amniocentesis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amoralist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amorist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amphictyony": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amusingly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "amygdala": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amygdaloid nucleus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anabolism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anaclisis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anagogic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "anagogical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "anagrams": { "pos": "n", "pol": "0.25", "std": "0.0" }, "analgesic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "analgetic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "analyzable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "analyzed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "anasarcous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "anatomically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "anatomist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anatropous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "andante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "anecdotic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "anecdotical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "anele": { "pos": "v", "pol": "0.25", "std": "0.0" }, "angelically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "angioscope": { "pos": "n", "pol": "0.25", "std": "0.0" }, "animal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "animation": { "pos": "n", "pol": "0.25", "std": "0.247" }, "annual": { "pos": "a", "pol": "0.25", "std": "0.177" }, "anodyne": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anomic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "antapex": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ante up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "antedate": { "pos": "v", "pol": "0.25", "std": "0.177" }, "antelope": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antenatal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "antepartum": { "pos": "a", "pol": "0.25", "std": "0.0" }, "anthropomorphic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "anthropomorphous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "anthroposophy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antiauthoritarian": { "pos": "a", "pol": "0.25", "std": "0.0" }, "anticancer": { "pos": "a", "pol": "0.25", "std": "0.0" }, "anticlimactical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "antidiabetic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antidiabetic drug": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antifungal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "antiheretical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "antiphonal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antiphonary": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antipsychotic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antipsychotic agent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antipsychotic drug": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antiquarian": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antiquary": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antitank": { "pos": "a", "pol": "0.25", "std": "0.0" }, "antitrust law": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antitrust legislation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antitumor": { "pos": "a", "pol": "0.25", "std": "0.0" }, "antitumour": { "pos": "a", "pol": "0.25", "std": "0.0" }, "antler-like": { "pos": "a", "pol": "0.25", "std": "0.0" }, "antlered": { "pos": "a", "pol": "0.25", "std": "0.0" }, "antrorse": { "pos": "a", "pol": "0.25", "std": "0.0" }, "apace": { "pos": "r", "pol": "0.25", "std": "0.0" }, "apache devil dance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aphoristic": { "pos": "a", "pol": "0.25", "std": "0.354" }, "apochromatic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "apocope": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apologia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apostle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apotheosis": { "pos": "n", "pol": "0.25", "std": "0.177" }, "apparel industry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apparent horizon": { "pos": "n", "pol": "0.25", "std": "0.0" }, "appealable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "appealingly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "appealingness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "appearing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "appendant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "apperceptive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "applauder": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apple-sized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "applicant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "application program": { "pos": "n", "pol": "0.25", "std": "0.0" }, "applications programme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "applied anatomy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "applied psychology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "applied science": { "pos": "n", "pol": "0.25", "std": "0.0" }, "applied scientist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "applique": { "pos": "n", "pol": "0.25", "std": "0.0" }, "appointed": { "pos": "a", "pol": "0.25", "std": "0.12" }, "apportion": { "pos": "v", "pol": "0.25", "std": "0.0" }, "apportioning": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apportionment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "appreciable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "appreciate": { "pos": "v", "pol": "0.25", "std": "0.163" }, "apprehensible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "apprentice": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apprenticed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "appressed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "appro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "approver": { "pos": "n", "pol": "0.25", "std": "0.0" }, "approximate range": { "pos": "n", "pol": "0.25", "std": "0.0" }, "approximately": { "pos": "r", "pol": "0.25", "std": "0.0" }, "apt": { "pos": "a", "pol": "0.25", "std": "0.213" }, "arachnid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arbitrament": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arbitrement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arcadian": { "pos": "a", "pol": "0.25", "std": "0.0" }, "arcane": { "pos": "a", "pol": "0.25", "std": "0.0" }, "arced": { "pos": "a", "pol": "0.25", "std": "0.0" }, "arch support": { "pos": "n", "pol": "0.25", "std": "0.0" }, "archaeornis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "archer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arching": { "pos": "a", "pol": "0.25", "std": "0.0" }, "architectonics": { "pos": "n", "pol": "0.25", "std": "0.0" }, "architectural style": { "pos": "n", "pol": "0.25", "std": "0.0" }, "archivist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arciform": { "pos": "a", "pol": "0.25", "std": "0.0" }, "arcuate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "argentiferous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ariose": { "pos": "a", "pol": "0.25", "std": "0.0" }, "arithmetic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arm's length": { "pos": "n", "pol": "0.25", "std": "0.0" }, "armchair": { "pos": "n", "pol": "0.25", "std": "0.0" }, "armguard": { "pos": "n", "pol": "0.25", "std": "0.0" }, "armrest": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arms deal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "army corps": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arrant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "arrogance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "art deco": { "pos": "n", "pol": "0.25", "std": "0.0" }, "art nouveau": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arteria communicans": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arteria ileum": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arterial road": { "pos": "n", "pol": "0.25", "std": "0.0" }, "articled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "artisan": { "pos": "n", "pol": "0.25", "std": "0.0" }, "as a matter of fact": { "pos": "r", "pol": "0.25", "std": "0.0" }, "as such": { "pos": "r", "pol": "0.25", "std": "0.0" }, "as yet": { "pos": "r", "pol": "0.25", "std": "0.0" }, "ascending": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ascending node": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ashram": { "pos": "n", "pol": "0.25", "std": "0.0" }, "asinine": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aslant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aslope": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aspire": { "pos": "v", "pol": "0.25", "std": "0.0" }, "assenter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "assibilate": { "pos": "v", "pol": "0.25", "std": "0.177" }, "assibilation": { "pos": "n", "pol": "0.25", "std": "0.177" }, "assigned": { "pos": "a", "pol": "0.25", "std": "0.0" }, "assimilating": { "pos": "a", "pol": "0.25", "std": "0.0" }, "assimilatory": { "pos": "a", "pol": "0.25", "std": "0.0" }, "assist": { "pos": "n", "pol": "0.25", "std": "0.088" }, "associate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "associate degree": { "pos": "n", "pol": "0.25", "std": "0.0" }, "assonant": { "pos": "a", "pol": "0.25", "std": "0.177" }, "assortative mating": { "pos": "n", "pol": "0.25", "std": "0.0" }, "asterion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "astonied": { "pos": "a", "pol": "0.25", "std": "0.0" }, "astonished": { "pos": "a", "pol": "0.25", "std": "0.0" }, "astounded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "astounding": { "pos": "a", "pol": "0.25", "std": "0.177" }, "at-bat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "at all": { "pos": "r", "pol": "0.25", "std": "0.0" }, "at hand": { "pos": "a", "pol": "0.25", "std": "0.0" }, "at home": { "pos": "n", "pol": "0.25", "std": "0.0" }, "at work": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ataraxia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "athletic competition": { "pos": "n", "pol": "0.25", "std": "0.0" }, "athletic contest": { "pos": "n", "pol": "0.25", "std": "0.0" }, "athletic facility": { "pos": "n", "pol": "0.25", "std": "0.0" }, "atomic warhead": { "pos": "n", "pol": "0.25", "std": "0.0" }, "atonal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "atone": { "pos": "v", "pol": "0.25", "std": "0.088" }, "atorvastatin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "atoxic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "attainability": { "pos": "n", "pol": "0.25", "std": "0.0" }, "attainable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "attainableness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "attainder": { "pos": "n", "pol": "0.25", "std": "0.0" }, "attendant": { "pos": "a", "pol": "0.25", "std": "0.177" }, "attending": { "pos": "n", "pol": "0.25", "std": "0.0" }, "attentive": { "pos": "a", "pol": "0.25", "std": "0.177" }, "attestation report": { "pos": "n", "pol": "0.25", "std": "0.0" }, "attestation service": { "pos": "n", "pol": "0.25", "std": "0.0" }, "attractable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "auburn": { "pos": "a", "pol": "0.25", "std": "0.0" }, "auction house": { "pos": "n", "pol": "0.25", "std": "0.0" }, "audibly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "audio CD": { "pos": "n", "pol": "0.25", "std": "0.0" }, "audio compact disc": { "pos": "n", "pol": "0.25", "std": "0.0" }, "audiotape": { "pos": "n", "pol": "0.25", "std": "0.0" }, "audiovisual": { "pos": "n", "pol": "0.25", "std": "0.0" }, "audiovisual aid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "augmented": { "pos": "a", "pol": "0.25", "std": "0.0" }, "auricular point": { "pos": "n", "pol": "0.25", "std": "0.0" }, "auriculare": { "pos": "n", "pol": "0.25", "std": "0.0" }, "auspiciously": { "pos": "r", "pol": "0.25", "std": "0.0" }, "auteur": { "pos": "n", "pol": "0.25", "std": "0.0" }, "authentic": { "pos": "a", "pol": "0.25", "std": "0.354" }, "authenticate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "authorisation": { "pos": "n", "pol": "0.25", "std": "0.12" }, "authorised": { "pos": "a", "pol": "0.25", "std": "0.0" }, "authoritative": { "pos": "a", "pol": "0.25", "std": "0.072" }, "authorization": { "pos": "n", "pol": "0.25", "std": "0.12" }, "authorized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "autodidact": { "pos": "n", "pol": "0.25", "std": "0.0" }, "autoecious": { "pos": "a", "pol": "0.25", "std": "0.0" }, "automate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "autophyte": { "pos": "n", "pol": "0.25", "std": "0.0" }, "autophytic plant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "autotelism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "autotroph": { "pos": "n", "pol": "0.25", "std": "0.0" }, "autotrophic organism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "availability": { "pos": "n", "pol": "0.25", "std": "0.0" }, "availableness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "avocado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "avoidance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "awake": { "pos": "a", "pol": "0.25", "std": "0.0" }, "award-winning": { "pos": "a", "pol": "0.25", "std": "0.0" }, "awash": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ax handle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "axe handle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "axially": { "pos": "r", "pol": "0.25", "std": "0.0" }, "axiology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "azithromycin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "babassu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "babassu palm": { "pos": "n", "pol": "0.25", "std": "0.0" }, "baby-faced": { "pos": "a", "pol": "0.25", "std": "0.0" }, "baby-sitter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "baby doctor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "baby sitting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "babyish": { "pos": "a", "pol": "0.25", "std": "0.0" }, "babysitter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "babysitting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "back exercise": { "pos": "n", "pol": "0.25", "std": "0.0" }, "background": { "pos": "v", "pol": "0.25", "std": "0.0" }, "background knowledge": { "pos": "n", "pol": "0.25", "std": "0.0" }, "backhand": { "pos": "v", "pol": "0.25", "std": "0.0" }, "backhand shot": { "pos": "n", "pol": "0.25", "std": "0.0" }, "backhand stroke": { "pos": "n", "pol": "0.25", "std": "0.0" }, "backroom": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "badminton racket": { "pos": "n", "pol": "0.25", "std": "0.0" }, "badminton racquet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "baking chocolate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "balefire": { "pos": "n", "pol": "0.25", "std": "0.0" }, "baling wire": { "pos": "n", "pol": "0.25", "std": "0.0" }, "balk": { "pos": "v", "pol": "0.25", "std": "0.0" }, "balker": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ball-shaped": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ball hawk": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ballet company": { "pos": "n", "pol": "0.25", "std": "0.0" }, "balletomania": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ballistic capsule": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ballistic galvanometer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ballottement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "balmy": { "pos": "a", "pol": "0.25", "std": "0.442" }, "bamboozle": { "pos": "v", "pol": "0.25", "std": "0.0" }, "bank account": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bank guard": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bank holding company": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bankbook": { "pos": "n", "pol": "0.25", "std": "0.0" }, "banns": { "pos": "n", "pol": "0.25", "std": "0.0" }, "banquet song": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bantam": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bar mitzvah": { "pos": "n", "pol": "0.25", "std": "0.0" }, "barb": { "pos": "v", "pol": "0.25", "std": "0.0" }, "barbecue sauce": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bare-breasted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bared": { "pos": "a", "pol": "0.25", "std": "0.0" }, "barefaced": { "pos": "a", "pol": "0.25", "std": "0.177" }, "barefacedly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "bareheaded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "barelegged": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bargain-priced": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bargain rate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bargaining": { "pos": "n", "pol": "0.25", "std": "0.0" }, "barndoor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "barter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bas mitzvah": { "pos": "n", "pol": "0.25", "std": "0.0" }, "basic": { "pos": "a", "pol": "0.25", "std": "0.188" }, "basketmaker": { "pos": "n", "pol": "0.25", "std": "0.0" }, "basketry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "basketweaver": { "pos": "n", "pol": "0.25", "std": "0.0" }, "basophilic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bastioned": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bat mitzvah": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bath mitzvah": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bathing tub": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bathtub": { "pos": "n", "pol": "0.25", "std": "0.0" }, "batter's box": { "pos": "n", "pol": "0.25", "std": "0.0" }, "battering ram": { "pos": "n", "pol": "0.25", "std": "0.0" }, "batwing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "baulk": { "pos": "v", "pol": "0.25", "std": "0.0" }, "baulker": { "pos": "n", "pol": "0.25", "std": "0.0" }, "be-all and end-all": { "pos": "n", "pol": "0.25", "std": "0.0" }, "be active": { "pos": "v", "pol": "0.25", "std": "0.0" }, "be all and end all": { "pos": "n", "pol": "0.25", "std": "0.0" }, "be born": { "pos": "v", "pol": "0.25", "std": "0.0" }, "be full": { "pos": "v", "pol": "0.25", "std": "0.0" }, "be given": { "pos": "v", "pol": "0.25", "std": "0.0" }, "beach ball": { "pos": "n", "pol": "0.25", "std": "0.0" }, "beachball": { "pos": "n", "pol": "0.25", "std": "0.0" }, "beacon fire": { "pos": "n", "pol": "0.25", "std": "0.0" }, "beaded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bear away": { "pos": "v", "pol": "0.25", "std": "0.0" }, "bear off": { "pos": "v", "pol": "0.25", "std": "0.0" }, "bear out": { "pos": "v", "pol": "0.25", "std": "0.0" }, "bear witness": { "pos": "v", "pol": "0.25", "std": "0.088" }, "bearing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "beaut": { "pos": "n", "pol": "0.25", "std": "0.0" }, "beautician": { "pos": "n", "pol": "0.25", "std": "0.0" }, "beauty quark": { "pos": "n", "pol": "0.25", "std": "0.0" }, "beaux arts": { "pos": "n", "pol": "0.25", "std": "0.0" }, "beaver board": { "pos": "n", "pol": "0.25", "std": "0.0" }, "becalm": { "pos": "v", "pol": "0.25", "std": "0.0" }, "becomingness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bed-hop": { "pos": "v", "pol": "0.25", "std": "0.0" }, "bedding material": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bedhop": { "pos": "v", "pol": "0.25", "std": "0.0" }, "beforehand": { "pos": "a", "pol": "0.25", "std": "0.0" }, "befriend": { "pos": "v", "pol": "0.25", "std": "0.0" }, "behind-the-scenes": { "pos": "a", "pol": "0.25", "std": "0.0" }, "behindhand": { "pos": "a", "pol": "0.25", "std": "0.0" }, "beige": { "pos": "a", "pol": "0.25", "std": "0.0" }, "belatedly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "believability": { "pos": "n", "pol": "0.25", "std": "0.0" }, "believe in": { "pos": "v", "pol": "0.25", "std": "0.0" }, "believingly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "belittled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "belle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "belles-lettres": { "pos": "n", "pol": "0.25", "std": "0.0" }, "belles lettres": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bellylaugh": { "pos": "v", "pol": "0.25", "std": "0.0" }, "benchmark": { "pos": "n", "pol": "0.25", "std": "0.177" }, "benefaction": { "pos": "n", "pol": "0.25", "std": "0.265" }, "benefit album": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bent on": { "pos": "a", "pol": "0.25", "std": "0.0" }, "berk": { "pos": "n", "pol": "0.25", "std": "0.0" }, "beseeching": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bespectacled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bespoken": { "pos": "a", "pol": "0.25", "std": "0.354" }, "bestialise": { "pos": "v", "pol": "0.25", "std": "0.0" }, "bestialize": { "pos": "v", "pol": "0.25", "std": "0.0" }, "betrothal": { "pos": "n", "pol": "0.25", "std": "0.177" }, "bewitched": { "pos": "a", "pol": "0.25", "std": "0.0" }, "biased": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bible": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bibliotics": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bicephalous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bichromated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bicorn": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bicornate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bicorned": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bicornuate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bicornuous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "biennial": { "pos": "a", "pol": "0.25", "std": "0.177" }, "bifid": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bifurcate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bifurcated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "big-boned": { "pos": "a", "pol": "0.25", "std": "0.0" }, "big-shouldered": { "pos": "a", "pol": "0.25", "std": "0.0" }, "big cheese": { "pos": "n", "pol": "0.25", "std": "0.0" }, "big enchilada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "big fish": { "pos": "n", "pol": "0.25", "std": "0.0" }, "big gun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "big shot": { "pos": "n", "pol": "0.25", "std": "0.0" }, "big spender": { "pos": "n", "pol": "0.25", "std": "0.0" }, "big wheel": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bigeminal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bigeneric": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bilabial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bilateral contract": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bilaterally symmetrical": { "pos": "a", "pol": "0.25", "std": "0.177" }, "bilinear": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bilingualism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "billet": { "pos": "v", "pol": "0.25", "std": "0.0" }, "billiard marker": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bilocation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bindery": { "pos": "n", "pol": "0.25", "std": "0.0" }, "binding": { "pos": "a", "pol": "0.25", "std": "0.0" }, "binocular microscope": { "pos": "n", "pol": "0.25", "std": "0.0" }, "binomial distribution": { "pos": "n", "pol": "0.25", "std": "0.0" }, "binominal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bio-assay": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bioassay": { "pos": "n", "pol": "0.25", "std": "0.0" }, "biodegradable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bioethics": { "pos": "n", "pol": "0.25", "std": "0.0" }, "biologically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "biomedical science": { "pos": "n", "pol": "0.25", "std": "0.0" }, "biparous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "biradial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "biramous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bird's-eye": { "pos": "a", "pol": "0.25", "std": "0.0" }, "birdsong": { "pos": "n", "pol": "0.25", "std": "0.0" }, "birr": { "pos": "n", "pol": "0.25", "std": "0.177" }, "bishopry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bit-by-bit": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bitter chocolate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bitty": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bitumastic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "blabbermouthed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "black-fronted bush shrike": { "pos": "n", "pol": "0.25", "std": "0.0" }, "black-tie": { "pos": "a", "pol": "0.25", "std": "0.0" }, "black book": { "pos": "n", "pol": "0.25", "std": "0.0" }, "black hole": { "pos": "n", "pol": "0.25", "std": "0.0" }, "black mamba": { "pos": "n", "pol": "0.25", "std": "0.0" }, "blacking": { "pos": "n", "pol": "0.25", "std": "0.0" }, "blackjack": { "pos": "v", "pol": "0.25", "std": "0.0" }, "blacklist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "blank shell": { "pos": "n", "pol": "0.25", "std": "0.0" }, "blanquillo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "blasphemer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "blazing": { "pos": "a", "pol": "0.25", "std": "0.088" }, "bleat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bleb": { "pos": "n", "pol": "0.25", "std": "0.0" }, "blessed event": { "pos": "n", "pol": "0.25", "std": "0.0" }, "blighty wound": { "pos": "n", "pol": "0.25", "std": "0.0" }, "blind trust": { "pos": "n", "pol": "0.25", "std": "0.0" }, "blindfold": { "pos": "a", "pol": "0.25", "std": "0.0" }, "blindfolded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "blinding": { "pos": "a", "pol": "0.25", "std": "0.0" }, "blinking": { "pos": "a", "pol": "0.25", "std": "0.177" }, "bliss": { "pos": "n", "pol": "0.25", "std": "0.0" }, "blissfulness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bloc": { "pos": "n", "pol": "0.25", "std": "0.0" }, "block grant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "blockading": { "pos": "a", "pol": "0.25", "std": "0.0" }, "blockbuster": { "pos": "n", "pol": "0.25", "std": "0.177" }, "blood-oxygenation level dependent functional magnetic resonance imaging": { "pos": "n", "pol": "0.25", "std": "0.0" }, "blue-blindness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "blue-fruited": { "pos": "a", "pol": "0.25", "std": "0.0" }, "blue-green": { "pos": "a", "pol": "0.25", "std": "0.0" }, "blue-lilac": { "pos": "a", "pol": "0.25", "std": "0.0" }, "blue-purple": { "pos": "a", "pol": "0.25", "std": "0.0" }, "blue ribbon commission": { "pos": "n", "pol": "0.25", "std": "0.0" }, "blue ribbon committee": { "pos": "n", "pol": "0.25", "std": "0.0" }, "blue ribbon jury": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bluish-lilac": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bluish-purple": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bluish green": { "pos": "a", "pol": "0.25", "std": "0.0" }, "blurb": { "pos": "n", "pol": "0.25", "std": "0.0" }, "board of education": { "pos": "n", "pol": "0.25", "std": "0.0" }, "boast": { "pos": "n", "pol": "0.25", "std": "0.0" }, "boasting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "boat club": { "pos": "n", "pol": "0.25", "std": "0.0" }, "boat race": { "pos": "n", "pol": "0.25", "std": "0.0" }, "boating": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bodacious": { "pos": "a", "pol": "0.25", "std": "0.177" }, "boiling": { "pos": "r", "pol": "0.25", "std": "0.0" }, "bolshevise": { "pos": "v", "pol": "0.25", "std": "0.0" }, "bolshevize": { "pos": "v", "pol": "0.25", "std": "0.0" }, "bolster up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "bombilate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "bombinate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "bon mot": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bone-dry": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bone china": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bone dry": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bonfire": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bonhomie": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bonnet shark": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bonnethead": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bony-plated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "booby prize": { "pos": "n", "pol": "0.25", "std": "0.0" }, "book of facts": { "pos": "n", "pol": "0.25", "std": "0.0" }, "book of knowledge": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bookable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "booked": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bookend": { "pos": "n", "pol": "0.25", "std": "0.0" }, "boom town": { "pos": "n", "pol": "0.25", "std": "0.0" }, "boondoggle": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "boost up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "born-again": { "pos": "a", "pol": "0.25", "std": "0.0" }, "borrow pit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "borrower": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bottom-up": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bottom quark": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bouffant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bouffe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bound": { "pos": "a", "pol": "0.25", "std": "0.178" }, "bounded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "boundedness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "boundless": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bounteousness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bountifulness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bowman": { "pos": "n", "pol": "0.25", "std": "0.0" }, "box kite": { "pos": "n", "pol": "0.25", "std": "0.0" }, "boy wonder": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brace and bit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brainchild": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brainwashed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "braless": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bran-new": { "pos": "a", "pol": "0.25", "std": "0.0" }, "branch water": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brand-new": { "pos": "a", "pol": "0.25", "std": "0.0" }, "brand-newness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brand name": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brasslike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bravo": { "pos": "v", "pol": "0.25", "std": "0.0" }, "brawn": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brawniness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "breach of duty": { "pos": "n", "pol": "0.25", "std": "0.0" }, "breach of the covenant of warranty": { "pos": "n", "pol": "0.25", "std": "0.0" }, "break of day": { "pos": "n", "pol": "0.25", "std": "0.0" }, "break of the day": { "pos": "n", "pol": "0.25", "std": "0.0" }, "breakableness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "breakfast area": { "pos": "n", "pol": "0.25", "std": "0.0" }, "breakfast nook": { "pos": "n", "pol": "0.25", "std": "0.0" }, "breath of fresh air": { "pos": "n", "pol": "0.25", "std": "0.0" }, "breech-loading": { "pos": "a", "pol": "0.25", "std": "0.0" }, "breed": { "pos": "n", "pol": "0.25", "std": "0.0" }, "breve": { "pos": "n", "pol": "0.25", "std": "0.0" }, "breviary": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brighten": { "pos": "v", "pol": "0.25", "std": "0.265" }, "brightness constancy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brightness level": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brim": { "pos": "v", "pol": "0.25", "std": "0.177" }, "bringing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brioche": { "pos": "n", "pol": "0.25", "std": "0.0" }, "briskness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bristle-pointed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "broad-shouldered": { "pos": "a", "pol": "0.25", "std": "0.0" }, "broad gauge": { "pos": "n", "pol": "0.25", "std": "0.0" }, "broken arch": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bronze-red": { "pos": "a", "pol": "0.25", "std": "0.0" }, "brood hen": { "pos": "n", "pol": "0.25", "std": "0.0" }, "broody hen": { "pos": "n", "pol": "0.25", "std": "0.0" }, "broom handle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "broomstick": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brother-in-law": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brownie mix": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brownish-orange": { "pos": "a", "pol": "0.25", "std": "0.0" }, "brushup": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brut": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bubble-jet printer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bubble gum": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bubble jet printer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bubble over": { "pos": "v", "pol": "0.25", "std": "0.0" }, "bubblejet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "buckram": { "pos": "a", "pol": "0.25", "std": "0.0" }, "buddy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "buffered aspirin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bugle call": { "pos": "n", "pol": "0.25", "std": "0.0" }, "building code": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bulginess": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bumblebee": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bunchy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bundled-up": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bungaloid": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bunny hug": { "pos": "n", "pol": "0.25", "std": "0.0" }, "burdenless": { "pos": "a", "pol": "0.25", "std": "0.0" }, "burglarproof": { "pos": "a", "pol": "0.25", "std": "0.0" }, "burin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "burning": { "pos": "a", "pol": "0.25", "std": "0.0" }, "burnish": { "pos": "v", "pol": "0.25", "std": "0.0" }, "bush": { "pos": "v", "pol": "0.25", "std": "0.0" }, "business line": { "pos": "n", "pol": "0.25", "std": "0.0" }, "business relationship": { "pos": "n", "pol": "0.25", "std": "0.0" }, "busy": { "pos": "v", "pol": "0.25", "std": "0.0" }, "busywork": { "pos": "n", "pol": "0.25", "std": "0.0" }, "butler": { "pos": "n", "pol": "0.25", "std": "0.0" }, "butt-weld": { "pos": "v", "pol": "0.25", "std": "0.0" }, "buttoned": { "pos": "a", "pol": "0.25", "std": "0.0" }, "buttress": { "pos": "n", "pol": "0.25", "std": "0.0" }, "buttressed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "buttressing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "buttweld": { "pos": "v", "pol": "0.25", "std": "0.0" }, "buxomness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "buy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "buy at": { "pos": "v", "pol": "0.25", "std": "0.0" }, "by a long shot": { "pos": "r", "pol": "0.25", "std": "0.0" }, "by choice": { "pos": "r", "pol": "0.25", "std": "0.0" }, "by design": { "pos": "r", "pol": "0.25", "std": "0.0" }, "by machine": { "pos": "r", "pol": "0.25", "std": "0.0" }, "by rights": { "pos": "r", "pol": "0.25", "std": "0.0" }, "by the bye": { "pos": "r", "pol": "0.25", "std": "0.0" }, "by the way": { "pos": "r", "pol": "0.25", "std": "0.0" }, "bygone": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bypast": { "pos": "a", "pol": "0.25", "std": "0.0" }, "byword": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cabinetry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cache": { "pos": "v", "pol": "0.25", "std": "0.0" }, "cadaster": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cadastre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cadenza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cadmium cell": { "pos": "n", "pol": "0.25", "std": "0.0" }, "caespitose": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cafe au lait": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cafeteria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "calced": { "pos": "a", "pol": "0.25", "std": "0.0" }, "calculating": { "pos": "a", "pol": "0.25", "std": "0.0" }, "calculative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "caliber": { "pos": "n", "pol": "0.25", "std": "0.354" }, "calibrated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "calibre": { "pos": "n", "pol": "0.25", "std": "0.354" }, "call into question": { "pos": "v", "pol": "0.25", "std": "0.0" }, "call to order": { "pos": "v", "pol": "0.25", "std": "0.0" }, "calligrapher": { "pos": "n", "pol": "0.25", "std": "0.0" }, "calligraphist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "calumet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "camaraderie": { "pos": "n", "pol": "0.25", "std": "0.0" }, "camp-made": { "pos": "a", "pol": "0.25", "std": "0.0" }, "camp meeting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "campfire": { "pos": "n", "pol": "0.25", "std": "0.0" }, "camphorate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "camphorated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "canal": { "pos": "v", "pol": "0.25", "std": "0.0" }, "cancellous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "candescent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "candid": { "pos": "a", "pol": "0.25", "std": "0.072" }, "candy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "canonisation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "canonist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "canonization": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cantata": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cantilever bridge": { "pos": "n", "pol": "0.25", "std": "0.0" }, "capacitor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "caparisoned": { "pos": "a", "pol": "0.25", "std": "0.0" }, "capital": { "pos": "a", "pol": "0.25", "std": "0.331" }, "capital letter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "capital of Spain": { "pos": "n", "pol": "0.25", "std": "0.0" }, "capped": { "pos": "a", "pol": "0.25", "std": "0.088" }, "carbine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "carboy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cardiac plexus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cardinal vein": { "pos": "n", "pol": "0.25", "std": "0.0" }, "caricature": { "pos": "n", "pol": "0.25", "std": "0.0" }, "carioca": { "pos": "n", "pol": "0.25", "std": "0.177" }, "carnassial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "carnival": { "pos": "n", "pol": "0.25", "std": "0.072" }, "carrick bitt": { "pos": "n", "pol": "0.25", "std": "0.0" }, "carry away": { "pos": "v", "pol": "0.25", "std": "0.0" }, "carry through": { "pos": "v", "pol": "0.25", "std": "0.265" }, "cartel": { "pos": "n", "pol": "0.25", "std": "0.0" }, "carved": { "pos": "a", "pol": "0.25", "std": "0.0" }, "carven": { "pos": "a", "pol": "0.25", "std": "0.0" }, "casework": { "pos": "n", "pol": "0.25", "std": "0.0" }, "caseworker": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cassino": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cast-iron": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cast-off": { "pos": "a", "pol": "0.25", "std": "0.0" }, "castrated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "catachrestic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "catachrestical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "catamite": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cataphoresis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "catatonic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "catchpenny": { "pos": "a", "pol": "0.25", "std": "0.0" }, "categorem": { "pos": "n", "pol": "0.25", "std": "0.0" }, "categoreme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "caterer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "caterwaul": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cattleya": { "pos": "n", "pol": "0.25", "std": "0.0" }, "causative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cause to be perceived": { "pos": "v", "pol": "0.25", "std": "0.0" }, "cautious statement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "celebratory": { "pos": "a", "pol": "0.25", "std": "0.0" }, "celebrity": { "pos": "n", "pol": "0.25", "std": "0.265" }, "celestial point": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cellblock": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cenotaph": { "pos": "n", "pol": "0.25", "std": "0.0" }, "censored": { "pos": "a", "pol": "0.25", "std": "0.0" }, "center bit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "center of mass": { "pos": "n", "pol": "0.25", "std": "0.0" }, "center punch": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "central scotoma": { "pos": "n", "pol": "0.25", "std": "0.0" }, "centre bit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "centre of mass": { "pos": "n", "pol": "0.25", "std": "0.0" }, "centrifugal": { "pos": "a", "pol": "0.25", "std": "0.125" }, "centrism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cephalopod": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cephalopod mollusk": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ceremonious": { "pos": "a", "pol": "0.25", "std": "0.088" }, "ceremoniousness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ceremony": { "pos": "n", "pol": "0.25", "std": "0.072" }, "certainty": { "pos": "n", "pol": "0.25", "std": "0.177" }, "certifiable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "certified": { "pos": "a", "pol": "0.25", "std": "0.072" }, "certitude": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cespitose": { "pos": "a", "pol": "0.25", "std": "0.0" }, "chaffinch": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chalk line": { "pos": "n", "pol": "0.25", "std": "0.0" }, "challengeable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "chambermaid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "champaign": { "pos": "n", "pol": "0.25", "std": "0.0" }, "champerty": { "pos": "n", "pol": "0.25", "std": "0.0" }, "change of color": { "pos": "n", "pol": "0.25", "std": "0.0" }, "change of shape": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chaotic attractor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chapel service": { "pos": "n", "pol": "0.25", "std": "0.0" }, "charge-exchange accelerator": { "pos": "n", "pol": "0.25", "std": "0.0" }, "charitable trust": { "pos": "n", "pol": "0.25", "std": "0.0" }, "charitableness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "charm quark": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chat": { "pos": "v", "pol": "0.25", "std": "0.0" }, "chateau": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chauvinistic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "check-out procedure": { "pos": "n", "pol": "0.25", "std": "0.0" }, "checkered": { "pos": "a", "pol": "0.25", "std": "0.354" }, "cheerer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chequer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cherub": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chestnut": { "pos": "a", "pol": "0.25", "std": "0.0" }, "chesty": { "pos": "a", "pol": "0.25", "std": "0.0" }, "chew the fat": { "pos": "v", "pol": "0.25", "std": "0.0" }, "chicness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chief executive officer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chief justice": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chief operating officer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chiffonier": { "pos": "n", "pol": "0.25", "std": "0.0" }, "child support": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chiropodist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chisel-like": { "pos": "a", "pol": "0.25", "std": "0.0" }, "chit-chat": { "pos": "v", "pol": "0.25", "std": "0.0" }, "chitchat": { "pos": "v", "pol": "0.25", "std": "0.0" }, "chivalrously": { "pos": "r", "pol": "0.25", "std": "0.0" }, "chivalry": { "pos": "n", "pol": "0.25", "std": "0.088" }, "chock": { "pos": "r", "pol": "0.25", "std": "0.0" }, "chock-a-block": { "pos": "r", "pol": "0.25", "std": "0.0" }, "choice of words": { "pos": "n", "pol": "0.25", "std": "0.0" }, "choir school": { "pos": "n", "pol": "0.25", "std": "0.0" }, "choked": { "pos": "a", "pol": "0.25", "std": "0.0" }, "chop-chop": { "pos": "r", "pol": "0.25", "std": "0.0" }, "chop down": { "pos": "v", "pol": "0.25", "std": "0.0" }, "choral": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chorale": { "pos": "n", "pol": "0.25", "std": "0.0" }, "choropleth map": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chosen": { "pos": "n", "pol": "0.25", "std": "0.177" }, "chroma": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chromatinic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "chronograph": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chronologically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "chronometer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chum salmon": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chum up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "chumminess": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chump": { "pos": "n", "pol": "0.25", "std": "0.0" }, "church doctrine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "church member": { "pos": "n", "pol": "0.25", "std": "0.0" }, "church music": { "pos": "n", "pol": "0.25", "std": "0.0" }, "church school": { "pos": "n", "pol": "0.25", "std": "0.0" }, "church service": { "pos": "n", "pol": "0.25", "std": "0.0" }, "churchgoer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "churchgoing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "churchly": { "pos": "a", "pol": "0.25", "std": "0.0" }, "churchman": { "pos": "n", "pol": "0.25", "std": "0.0" }, "churned-up": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cicerone": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cigar-shaped": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cinema verite": { "pos": "n", "pol": "0.25", "std": "0.0" }, "circumflex": { "pos": "n", "pol": "0.25", "std": "0.0" }, "circumpolar": { "pos": "a", "pol": "0.25", "std": "0.177" }, "circumscribed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "citified": { "pos": "a", "pol": "0.25", "std": "0.0" }, "citizens committee": { "pos": "n", "pol": "0.25", "std": "0.0" }, "city-born": { "pos": "a", "pol": "0.25", "std": "0.0" }, "city-bred": { "pos": "a", "pol": "0.25", "std": "0.0" }, "city father": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cityfied": { "pos": "a", "pol": "0.25", "std": "0.0" }, "civil marriage": { "pos": "n", "pol": "0.25", "std": "0.0" }, "civil right": { "pos": "n", "pol": "0.25", "std": "0.0" }, "civil servant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "civilian": { "pos": "a", "pol": "0.25", "std": "0.0" }, "civilised": { "pos": "a", "pol": "0.25", "std": "0.088" }, "civilized": { "pos": "a", "pol": "0.25", "std": "0.088" }, "civilly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "clampdown": { "pos": "n", "pol": "0.25", "std": "0.0" }, "clanging": { "pos": "a", "pol": "0.25", "std": "0.0" }, "clangorous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "clannish": { "pos": "a", "pol": "0.25", "std": "0.0" }, "clannishness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "clarion": { "pos": "a", "pol": "0.25", "std": "0.0" }, "class Mammalia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "classical style": { "pos": "n", "pol": "0.25", "std": "0.0" }, "classroom project": { "pos": "n", "pol": "0.25", "std": "0.0" }, "claver": { "pos": "v", "pol": "0.25", "std": "0.0" }, "claxon": { "pos": "n", "pol": "0.25", "std": "0.0" }, "clean-shaven": { "pos": "a", "pol": "0.25", "std": "0.0" }, "clean room": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cleaning": { "pos": "n", "pol": "0.25", "std": "0.0" }, "clear the air": { "pos": "v", "pol": "0.25", "std": "0.0" }, "clearstory": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cleavable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cleft": { "pos": "a", "pol": "0.25", "std": "0.0" }, "clerestory": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cleric": { "pos": "n", "pol": "0.25", "std": "0.0" }, "clerisy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cleverness": { "pos": "n", "pol": "0.25", "std": "0.072" }, "clevis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cliff-hanging": { "pos": "a", "pol": "0.25", "std": "0.0" }, "climatically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "climatologist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "climb": { "pos": "n", "pol": "0.25", "std": "0.191" }, "climbing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "clinical anatomy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "clipped": { "pos": "a", "pol": "0.25", "std": "0.0" }, "clique": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cliquishness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "clog up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "clogging": { "pos": "a", "pol": "0.25", "std": "0.0" }, "clopidogrel bisulfate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "close-hauled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "close-packed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "close at hand": { "pos": "a", "pol": "0.25", "std": "0.0" }, "close to": { "pos": "r", "pol": "0.25", "std": "0.0" }, "close together": { "pos": "a", "pol": "0.25", "std": "0.0" }, "closed-captioned": { "pos": "a", "pol": "0.25", "std": "0.0" }, "clothesless": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cloud nine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cloy": { "pos": "v", "pol": "0.25", "std": "0.177" }, "clubby": { "pos": "a", "pol": "0.25", "std": "0.177" }, "co-occurrent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "co-op": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coastal plain": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coatdress": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coaxal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "coaxial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cocain": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cocaine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cockcrow": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cockle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cocksureness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coco de macao": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coconut water": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coefficient of concordance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coerce": { "pos": "v", "pol": "0.25", "std": "0.0" }, "coffee urn": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cogent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cogent evidence": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cohesive": { "pos": "a", "pol": "0.25", "std": "0.177" }, "cohune": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cohune palm": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coiffe": { "pos": "v", "pol": "0.25", "std": "0.0" }, "coiffure": { "pos": "v", "pol": "0.25", "std": "0.0" }, "coin bank": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coincidental": { "pos": "a", "pol": "0.25", "std": "0.0" }, "coinciding": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cold-eyed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cold shoulder": { "pos": "n", "pol": "0.25", "std": "0.0" }, "collaborative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "collateral fraud": { "pos": "n", "pol": "0.25", "std": "0.0" }, "collected": { "pos": "a", "pol": "0.25", "std": "0.088" }, "collegiate dictionary": { "pos": "n", "pol": "0.25", "std": "0.0" }, "collimation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "collusion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "color guard": { "pos": "n", "pol": "0.25", "std": "0.0" }, "columnar": { "pos": "a", "pol": "0.25", "std": "0.088" }, "columniform": { "pos": "a", "pol": "0.25", "std": "0.0" }, "columnlike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "combat-ready": { "pos": "a", "pol": "0.25", "std": "0.0" }, "combed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "combination lock": { "pos": "n", "pol": "0.25", "std": "0.0" }, "combinatory": { "pos": "a", "pol": "0.25", "std": "0.191" }, "combining weight": { "pos": "n", "pol": "0.25", "std": "0.0" }, "come into": { "pos": "v", "pol": "0.25", "std": "0.0" }, "come on": { "pos": "v", "pol": "0.25", "std": "0.409" }, "come over": { "pos": "v", "pol": "0.25", "std": "0.0" }, "come short": { "pos": "v", "pol": "0.25", "std": "0.0" }, "comeback": { "pos": "n", "pol": "0.25", "std": "0.088" }, "comedian": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comedy ballet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comic book": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comic opera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coming back": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coming into court": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comity of nations": { "pos": "n", "pol": "0.25", "std": "0.0" }, "command line": { "pos": "n", "pol": "0.25", "std": "0.0" }, "command module": { "pos": "n", "pol": "0.25", "std": "0.0" }, "commanding": { "pos": "a", "pol": "0.25", "std": "0.0" }, "commensal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "commensurate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "commercial traveler": { "pos": "n", "pol": "0.25", "std": "0.0" }, "commercial traveller": { "pos": "n", "pol": "0.25", "std": "0.0" }, "commercialised": { "pos": "a", "pol": "0.25", "std": "0.0" }, "commercialized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "commit": { "pos": "v", "pol": "0.25", "std": "0.188" }, "committee": { "pos": "n", "pol": "0.25", "std": "0.0" }, "commodious": { "pos": "a", "pol": "0.25", "std": "0.0" }, "commodiousness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "common-law marriage": { "pos": "n", "pol": "0.25", "std": "0.0" }, "common touch": { "pos": "n", "pol": "0.25", "std": "0.0" }, "commonplaceness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "communicating artery": { "pos": "n", "pol": "0.25", "std": "0.0" }, "communion": { "pos": "n", "pol": "0.25", "std": "0.088" }, "community chest": { "pos": "n", "pol": "0.25", "std": "0.0" }, "commutation ticket": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comp": { "pos": "n", "pol": "0.25", "std": "0.0" }, "companion": { "pos": "v", "pol": "0.25", "std": "0.0" }, "company": { "pos": "v", "pol": "0.25", "std": "0.0" }, "comparable with": { "pos": "a", "pol": "0.25", "std": "0.0" }, "comparably": { "pos": "r", "pol": "0.25", "std": "0.0" }, "compartmented": { "pos": "a", "pol": "0.25", "std": "0.0" }, "compelling": { "pos": "a", "pol": "0.25", "std": "0.088" }, "compete": { "pos": "v", "pol": "0.25", "std": "0.0" }, "competence hearing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "competitory": { "pos": "a", "pol": "0.25", "std": "0.0" }, "composite material": { "pos": "n", "pol": "0.25", "std": "0.0" }, "compounded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "comprehensive examination": { "pos": "n", "pol": "0.25", "std": "0.0" }, "compressibility": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comptroller": { "pos": "n", "pol": "0.25", "std": "0.0" }, "compulsiveness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "compulsivity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "computer-aided design": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comradeliness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comradery": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comradeship": { "pos": "n", "pol": "0.25", "std": "0.0" }, "conceivable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "conceivably": { "pos": "r", "pol": "0.25", "std": "0.0" }, "concentration gradient": { "pos": "n", "pol": "0.25", "std": "0.0" }, "concentric": { "pos": "a", "pol": "0.25", "std": "0.0" }, "concentrical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "concentricity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "conceptual": { "pos": "a", "pol": "0.25", "std": "0.0" }, "concert": { "pos": "v", "pol": "0.25", "std": "0.177" }, "concerted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "conclave": { "pos": "n", "pol": "0.25", "std": "0.0" }, "concluded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "conclusiveness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "concretely": { "pos": "r", "pol": "0.25", "std": "0.0" }, "concur": { "pos": "v", "pol": "0.25", "std": "0.265" }, "concurrency": { "pos": "n", "pol": "0.25", "std": "0.0" }, "concurrent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "concurrent negligence": { "pos": "n", "pol": "0.25", "std": "0.0" }, "condensation pump": { "pos": "n", "pol": "0.25", "std": "0.0" }, "conditional": { "pos": "a", "pol": "0.25", "std": "0.0" }, "conditional contract": { "pos": "n", "pol": "0.25", "std": "0.0" }, "conditionally": { "pos": "r", "pol": "0.25", "std": "0.0" }, "conduce": { "pos": "v", "pol": "0.25", "std": "0.0" }, "conductance unit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "condylion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "confect": { "pos": "n", "pol": "0.25", "std": "0.0" }, "confirmation": { "pos": "n", "pol": "0.25", "std": "0.105" }, "conformity": { "pos": "n", "pol": "0.25", "std": "0.288" }, "congest": { "pos": "v", "pol": "0.25", "std": "0.0" }, "conglomerate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "conjunctive": { "pos": "a", "pol": "0.25", "std": "0.088" }, "conjuncture": { "pos": "n", "pol": "0.25", "std": "0.0" }, "conjuring trick": { "pos": "n", "pol": "0.25", "std": "0.0" }, "connatural": { "pos": "a", "pol": "0.25", "std": "0.265" }, "connotative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "conscientious objector": { "pos": "n", "pol": "0.25", "std": "0.0" }, "conscription": { "pos": "n", "pol": "0.25", "std": "0.0" }, "consensus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "consequential": { "pos": "a", "pol": "0.25", "std": "0.0" }, "conservative": { "pos": "n", "pol": "0.25", "std": "0.0" }, "conservativist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "considerable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "consideration": { "pos": "n", "pol": "0.25", "std": "0.281" }, "consolatory": { "pos": "a", "pol": "0.25", "std": "0.0" }, "console table": { "pos": "n", "pol": "0.25", "std": "0.0" }, "consolidative": { "pos": "a", "pol": "0.25", "std": "0.265" }, "consoling": { "pos": "a", "pol": "0.25", "std": "0.0" }, "consonate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "constricting": { "pos": "a", "pol": "0.25", "std": "0.0" }, "constructive fraud": { "pos": "n", "pol": "0.25", "std": "0.0" }, "constructive metabolism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "construe": { "pos": "v", "pol": "0.25", "std": "0.0" }, "consultative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "consultatory": { "pos": "a", "pol": "0.25", "std": "0.0" }, "consultive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "consumer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "consumer finance company": { "pos": "n", "pol": "0.25", "std": "0.0" }, "consumer loan": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contact lens": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contained": { "pos": "a", "pol": "0.25", "std": "0.0" }, "contemplativeness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contestable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "contingency fee": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contingent on": { "pos": "a", "pol": "0.25", "std": "0.0" }, "contingent upon": { "pos": "a", "pol": "0.25", "std": "0.0" }, "continuing education": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contour sheet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contract of adhesion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contracted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "contractile": { "pos": "a", "pol": "0.25", "std": "0.0" }, "contrasting": { "pos": "a", "pol": "0.25", "std": "0.0" }, "contrived": { "pos": "a", "pol": "0.25", "std": "0.088" }, "control condition": { "pos": "n", "pol": "0.25", "std": "0.0" }, "control experiment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "control stock": { "pos": "n", "pol": "0.25", "std": "0.0" }, "controlled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "convene": { "pos": "v", "pol": "0.25", "std": "0.177" }, "conventionalised": { "pos": "a", "pol": "0.25", "std": "0.0" }, "conventionality": { "pos": "n", "pol": "0.25", "std": "0.072" }, "conventionalized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "convergent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "convergent thinking": { "pos": "n", "pol": "0.25", "std": "0.0" }, "converging lens": { "pos": "n", "pol": "0.25", "std": "0.0" }, "conversance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "conversancy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "conversationalist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "conversationist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "convert": { "pos": "n", "pol": "0.25", "std": "0.0" }, "converted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "convertibility": { "pos": "n", "pol": "0.25", "std": "0.0" }, "convertible security": { "pos": "n", "pol": "0.25", "std": "0.0" }, "convex lens": { "pos": "n", "pol": "0.25", "std": "0.0" }, "convincible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "convincing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "conviviality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cooccurring": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cookie-sized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cooking chocolate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coordinate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "coordinating": { "pos": "a", "pol": "0.25", "std": "0.0" }, "coordinative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "copartnership": { "pos": "n", "pol": "0.25", "std": "0.0" }, "copper colored": { "pos": "a", "pol": "0.25", "std": "0.0" }, "coppery": { "pos": "a", "pol": "0.25", "std": "0.0" }, "coquetry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "corbel arch": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coreid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coreid bug": { "pos": "n", "pol": "0.25", "std": "0.0" }, "corneal graft": { "pos": "n", "pol": "0.25", "std": "0.0" }, "corneal transplant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "corned": { "pos": "a", "pol": "0.25", "std": "0.0" }, "coronary artery bypass graft": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coronary bypass": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coronary bypass surgery": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coronion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "corporate trust": { "pos": "n", "pol": "0.25", "std": "0.0" }, "corporatism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "corpus amygdaloideum": { "pos": "n", "pol": "0.25", "std": "0.0" }, "correlational statistics": { "pos": "n", "pol": "0.25", "std": "0.0" }, "correlative": { "pos": "a", "pol": "0.25", "std": "0.177" }, "corroborating evidence": { "pos": "n", "pol": "0.25", "std": "0.0" }, "corroboration": { "pos": "n", "pol": "0.25", "std": "0.0" }, "corrugated iron": { "pos": "n", "pol": "0.25", "std": "0.0" }, "corrupting": { "pos": "a", "pol": "0.25", "std": "0.125" }, "cortically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "cosiness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cosmetologist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cosmopolitan": { "pos": "a", "pol": "0.25", "std": "0.289" }, "cost-plus": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cost-plus contract": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coterie": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cottonwick": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cottony": { "pos": "a", "pol": "0.25", "std": "0.0" }, "couchant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "coude system": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coude telescope": { "pos": "n", "pol": "0.25", "std": "0.0" }, "counteraction": { "pos": "n", "pol": "0.25", "std": "0.0" }, "counterbalanced": { "pos": "a", "pol": "0.25", "std": "0.0" }, "counterexample": { "pos": "n", "pol": "0.25", "std": "0.0" }, "counterfactuality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "countermeasure": { "pos": "n", "pol": "0.25", "std": "0.0" }, "counterpoint": { "pos": "n", "pol": "0.25", "std": "0.0" }, "counterpoised": { "pos": "a", "pol": "0.25", "std": "0.0" }, "countersign": { "pos": "v", "pol": "0.25", "std": "0.0" }, "countersubversion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "countless": { "pos": "a", "pol": "0.25", "std": "0.0" }, "countrified": { "pos": "a", "pol": "0.25", "std": "0.0" }, "countryfied": { "pos": "a", "pol": "0.25", "std": "0.0" }, "course of instruction": { "pos": "n", "pol": "0.25", "std": "0.0" }, "court game": { "pos": "n", "pol": "0.25", "std": "0.0" }, "court of justice": { "pos": "n", "pol": "0.25", "std": "0.0" }, "court of law": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cousinly": { "pos": "a", "pol": "0.25", "std": "0.0" }, "covalence": { "pos": "n", "pol": "0.25", "std": "0.0" }, "covalency": { "pos": "n", "pol": "0.25", "std": "0.0" }, "covariation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cover letter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "covered option": { "pos": "n", "pol": "0.25", "std": "0.0" }, "covering letter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cowbell": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cowcatcher": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coziness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "crack of doom": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cracker-barrel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "crackle": { "pos": "a", "pol": "0.25", "std": "0.0" }, "crampfish": { "pos": "n", "pol": "0.25", "std": "0.0" }, "craniology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "crannied": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cream-colored": { "pos": "a", "pol": "0.25", "std": "0.0" }, "creamy-colored": { "pos": "a", "pol": "0.25", "std": "0.0" }, "creamy-white": { "pos": "a", "pol": "0.25", "std": "0.0" }, "creaseless": { "pos": "a", "pol": "0.25", "std": "0.0" }, "create by mental act": { "pos": "v", "pol": "0.25", "std": "0.0" }, "create mentally": { "pos": "v", "pol": "0.25", "std": "0.0" }, "create verbally": { "pos": "v", "pol": "0.25", "std": "0.0" }, "cred": { "pos": "n", "pol": "0.25", "std": "0.0" }, "credibility": { "pos": "n", "pol": "0.25", "std": "0.0" }, "credibleness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "credit rating": { "pos": "n", "pol": "0.25", "std": "0.0" }, "credit union": { "pos": "n", "pol": "0.25", "std": "0.0" }, "creditworthiness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "credo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "credulous": { "pos": "a", "pol": "0.25", "std": "0.088" }, "credulously": { "pos": "r", "pol": "0.25", "std": "0.0" }, "creed": { "pos": "n", "pol": "0.25", "std": "0.0" }, "crenate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "crenated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "crepitation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "crescent wrench": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cress green": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cresson": { "pos": "a", "pol": "0.25", "std": "0.0" }, "crew neck": { "pos": "n", "pol": "0.25", "std": "0.0" }, "crew neckline": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cribbage board": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cricket frog": { "pos": "n", "pol": "0.25", "std": "0.0" }, "crinion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "criterion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "critical analysis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "critical appraisal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "critique": { "pos": "v", "pol": "0.25", "std": "0.0" }, "critter sitter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "crony": { "pos": "n", "pol": "0.25", "std": "0.0" }, "croquet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cross-banded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cross country": { "pos": "n", "pol": "0.25", "std": "0.0" }, "crosstie": { "pos": "n", "pol": "0.25", "std": "0.0" }, "crowning": { "pos": "a", "pol": "0.25", "std": "0.177" }, "cruciate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cruciform": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cruise liner": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cruise ship": { "pos": "n", "pol": "0.25", "std": "0.0" }, "crusader": { "pos": "n", "pol": "0.25", "std": "0.0" }, "crustal movement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "crux": { "pos": "n", "pol": "0.25", "std": "0.0" }, "crux of the matter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cryptanalyst": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cryptographer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cryptologist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cryptomonad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cryptophyte": { "pos": "n", "pol": "0.25", "std": "0.0" }, "crystalline": { "pos": "a", "pol": "0.25", "std": "0.26" }, "crystalline lens": { "pos": "n", "pol": "0.25", "std": "0.0" }, "crystallised": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cuckoo clock": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cuddle": { "pos": "v", "pol": "0.25", "std": "0.088" }, "cuff": { "pos": "v", "pol": "0.25", "std": "0.0" }, "culture": { "pos": "v", "pol": "0.25", "std": "0.0" }, "cultured": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cumbersomeness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cupbearer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cupid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "curate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "curio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "curliness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "current": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cursor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cursorial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "curtail": { "pos": "v", "pol": "0.25", "std": "0.177" }, "curtain": { "pos": "v", "pol": "0.25", "std": "0.0" }, "curtain raising": { "pos": "n", "pol": "0.25", "std": "0.0" }, "curtained": { "pos": "a", "pol": "0.25", "std": "0.0" }, "curved": { "pos": "a", "pol": "0.25", "std": "0.0" }, "curved shape": { "pos": "n", "pol": "0.25", "std": "0.0" }, "curvey": { "pos": "a", "pol": "0.25", "std": "0.0" }, "curvilineal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "curvilinear": { "pos": "a", "pol": "0.25", "std": "0.0" }, "curving": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cushioning": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cushy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "custodian": { "pos": "n", "pol": "0.25", "std": "0.0" }, "custom-built": { "pos": "n", "pol": "0.25", "std": "0.0" }, "custom-made": { "pos": "n", "pol": "0.25", "std": "0.0" }, "customarily": { "pos": "r", "pol": "0.25", "std": "0.0" }, "customer's broker": { "pos": "n", "pol": "0.25", "std": "0.0" }, "customer's man": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cut-price": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cut-rate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cut price": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cut rate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cuteness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cyan": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cyanogenetic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cyanogenic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cyclical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cyclopaedia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cyclopedia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cyclopia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cynic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cynosure": { "pos": "n", "pol": "0.25", "std": "0.265" }, "cyproheptadine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cytopathogenic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cytoplast": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dabbled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dadaism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dado": { "pos": "v", "pol": "0.25", "std": "0.088" }, "dagger-like": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dale": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dance step": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dancing school": { "pos": "n", "pol": "0.25", "std": "0.0" }, "danish pastry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dashingly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "data-based": { "pos": "a", "pol": "0.25", "std": "0.0" }, "data encryption": { "pos": "n", "pol": "0.25", "std": "0.0" }, "data multiplexer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "datable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dateable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dawning": { "pos": "n", "pol": "0.25", "std": "0.0" }, "day-after-day": { "pos": "a", "pol": "0.25", "std": "0.0" }, "day-by-day": { "pos": "a", "pol": "0.25", "std": "0.0" }, "day-to-day": { "pos": "a", "pol": "0.25", "std": "0.0" }, "day game": { "pos": "n", "pol": "0.25", "std": "0.0" }, "daybreak": { "pos": "n", "pol": "0.25", "std": "0.0" }, "daylong": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dayspring": { "pos": "n", "pol": "0.25", "std": "0.0" }, "de-Stalinisation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "de-Stalinization": { "pos": "n", "pol": "0.25", "std": "0.0" }, "de facto": { "pos": "r", "pol": "0.25", "std": "0.0" }, "de rigueur": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dead set": { "pos": "a", "pol": "0.25", "std": "0.0" }, "deadbeat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "deadpan": { "pos": "a", "pol": "0.25", "std": "0.0" }, "debark": { "pos": "v", "pol": "0.25", "std": "0.0" }, "debug": { "pos": "v", "pol": "0.25", "std": "0.0" }, "debugger": { "pos": "n", "pol": "0.25", "std": "0.0" }, "decadence": { "pos": "n", "pol": "0.25", "std": "0.0" }, "decadency": { "pos": "n", "pol": "0.25", "std": "0.0" }, "decadent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "decantation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "decertify": { "pos": "v", "pol": "0.25", "std": "0.0" }, "decimal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "decipherable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "decision": { "pos": "n", "pol": "0.25", "std": "0.068" }, "deco": { "pos": "n", "pol": "0.25", "std": "0.0" }, "decolonise": { "pos": "v", "pol": "0.25", "std": "0.0" }, "decolonize": { "pos": "v", "pol": "0.25", "std": "0.0" }, "decommission": { "pos": "v", "pol": "0.25", "std": "0.0" }, "decomposable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "decorative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "decorativeness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "decouple": { "pos": "v", "pol": "0.25", "std": "0.27" }, "decreed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dedicate": { "pos": "v", "pol": "0.25", "std": "0.306" }, "deed of trust": { "pos": "n", "pol": "0.25", "std": "0.0" }, "deep-pink": { "pos": "a", "pol": "0.25", "std": "0.0" }, "deep-rooted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "deep-seated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "deep-water": { "pos": "a", "pol": "0.25", "std": "0.0" }, "defence system": { "pos": "n", "pol": "0.25", "std": "0.0" }, "defending": { "pos": "a", "pol": "0.25", "std": "0.0" }, "defense laboratory": { "pos": "n", "pol": "0.25", "std": "0.0" }, "defense lawyers": { "pos": "n", "pol": "0.25", "std": "0.0" }, "defense system": { "pos": "n", "pol": "0.25", "std": "0.0" }, "defense team": { "pos": "n", "pol": "0.25", "std": "0.0" }, "deference": { "pos": "n", "pol": "0.25", "std": "0.072" }, "definiteness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "deflective": { "pos": "a", "pol": "0.25", "std": "0.0" }, "deftness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "degree program": { "pos": "n", "pol": "0.25", "std": "0.0" }, "delay line": { "pos": "n", "pol": "0.25", "std": "0.0" }, "delightedly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "delimited": { "pos": "a", "pol": "0.25", "std": "0.0" }, "deliquescent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "delivery boy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "deliveryman": { "pos": "n", "pol": "0.25", "std": "0.0" }, "delocalize": { "pos": "v", "pol": "0.25", "std": "0.0" }, "demo": { "pos": "v", "pol": "0.25", "std": "0.0" }, "demobilisation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "demobilization": { "pos": "n", "pol": "0.25", "std": "0.0" }, "democrat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "demon-ridden": { "pos": "a", "pol": "0.25", "std": "0.0" }, "demonstrate": { "pos": "v", "pol": "0.25", "std": "0.217" }, "demoralised": { "pos": "a", "pol": "0.25", "std": "0.0" }, "demoralized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "demotion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "demulcent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "denotatum": { "pos": "n", "pol": "0.25", "std": "0.0" }, "densitometry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dental care": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dental school": { "pos": "n", "pol": "0.25", "std": "0.0" }, "depend on": { "pos": "v", "pol": "0.25", "std": "0.217" }, "dependant on": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dependant upon": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dependent clause": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dependent on": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dependent upon": { "pos": "a", "pol": "0.25", "std": "0.0" }, "depending on": { "pos": "a", "pol": "0.25", "std": "0.0" }, "depilous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "deposit account": { "pos": "n", "pol": "0.25", "std": "0.0" }, "deprave": { "pos": "v", "pol": "0.25", "std": "0.0" }, "depressant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "derecognise": { "pos": "v", "pol": "0.25", "std": "0.0" }, "derecognize": { "pos": "v", "pol": "0.25", "std": "0.0" }, "derivational": { "pos": "a", "pol": "0.25", "std": "0.0" }, "derivative instrument": { "pos": "n", "pol": "0.25", "std": "0.0" }, "descending node": { "pos": "n", "pol": "0.25", "std": "0.0" }, "descriptivism": { "pos": "n", "pol": "0.25", "std": "0.177" }, "desegrated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "desegregate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "deserted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "deservingness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "design criteria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "designated driver": { "pos": "n", "pol": "0.25", "std": "0.0" }, "designed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "designedly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "desk dictionary": { "pos": "n", "pol": "0.25", "std": "0.0" }, "destalinisation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "destalinization": { "pos": "n", "pol": "0.25", "std": "0.0" }, "details": { "pos": "n", "pol": "0.25", "std": "0.0" }, "detainee": { "pos": "n", "pol": "0.25", "std": "0.0" }, "detected": { "pos": "a", "pol": "0.25", "std": "0.088" }, "determinateness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "detox": { "pos": "v", "pol": "0.25", "std": "0.0" }, "deucedly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "deuteranopia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "developmentally": { "pos": "r", "pol": "0.25", "std": "0.0" }, "devourer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dexterity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dextral": { "pos": "a", "pol": "0.25", "std": "0.354" }, "dextrality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dextrorsal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dextrorse": { "pos": "a", "pol": "0.25", "std": "0.0" }, "diacritic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "diacritical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "diacritical mark": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diagrammatic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "diagrammatical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dialect atlas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dialectician": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dialectology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dialysis machine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dialyzer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diapir": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dichotomisation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dichotomization": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dichotomous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "didactic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "didactical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "die hard": { "pos": "v", "pol": "0.25", "std": "0.0" }, "dielectrolysis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diestrous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "diestrual": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dietician": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dietitian": { "pos": "n", "pol": "0.25", "std": "0.0" }, "differentia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "differentiable": { "pos": "a", "pol": "0.25", "std": "0.265" }, "differential analyzer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "differentiator": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diffuser": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diffusing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "diffusion pump": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diffusive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "diffusor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diflunisal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dig into": { "pos": "v", "pol": "0.25", "std": "0.0" }, "digestive fluid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "digestive juice": { "pos": "n", "pol": "0.25", "std": "0.0" }, "digital audiotape": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dim-sighted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "diminuendo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diminutive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dine in": { "pos": "v", "pol": "0.25", "std": "0.0" }, "dine out": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ding": { "pos": "n", "pol": "0.25", "std": "0.177" }, "dinner service": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dinner set": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dioestrous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dioestrual": { "pos": "a", "pol": "0.25", "std": "0.0" }, "diphthong": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diploma": { "pos": "n", "pol": "0.25", "std": "0.0" }, "direct transmission": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dirk": { "pos": "n", "pol": "0.25", "std": "0.0" }, "disagreeable person": { "pos": "n", "pol": "0.25", "std": "0.0" }, "disappoint": { "pos": "v", "pol": "0.25", "std": "0.0" }, "discarded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "disciplinarian": { "pos": "n", "pol": "0.25", "std": "0.0" }, "discontentedness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "discontentment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "discount house": { "pos": "n", "pol": "0.25", "std": "0.0" }, "discount store": { "pos": "n", "pol": "0.25", "std": "0.0" }, "discounter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "discretionary": { "pos": "a", "pol": "0.25", "std": "0.088" }, "discriminator": { "pos": "n", "pol": "0.25", "std": "0.0" }, "disembark": { "pos": "v", "pol": "0.25", "std": "0.0" }, "disembroil": { "pos": "v", "pol": "0.25", "std": "0.0" }, "disheartened": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dishwasher detergent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dishwashing detergent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dishwashing liquid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "disinfect": { "pos": "v", "pol": "0.25", "std": "0.0" }, "disinherit": { "pos": "v", "pol": "0.25", "std": "0.0" }, "disintegrable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "disinterestedness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "disinvolve": { "pos": "v", "pol": "0.25", "std": "0.0" }, "disjoin": { "pos": "v", "pol": "0.25", "std": "0.088" }, "disjoint": { "pos": "a", "pol": "0.25", "std": "0.0" }, "disjunct": { "pos": "a", "pol": "0.25", "std": "0.161" }, "disparate": { "pos": "a", "pol": "0.25", "std": "0.177" }, "dispersed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dispersive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "displaced person": { "pos": "n", "pol": "0.25", "std": "0.0" }, "disrupted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dissected": { "pos": "a", "pol": "0.25", "std": "0.0" }, "disseminative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dissertation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dissoluteness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dissolving": { "pos": "n", "pol": "0.25", "std": "0.0" }, "distaff": { "pos": "a", "pol": "0.25", "std": "0.0" }, "distributive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "disyllabic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "divergent thinking": { "pos": "n", "pol": "0.25", "std": "0.0" }, "divertingly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "dividing line": { "pos": "n", "pol": "0.25", "std": "0.0" }, "divinely": { "pos": "r", "pol": "0.25", "std": "0.0" }, "divorce": { "pos": "n", "pol": "0.25", "std": "0.0" }, "divorcement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "divot": { "pos": "n", "pol": "0.25", "std": "0.0" }, "divvy up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "do-it-yourself": { "pos": "a", "pol": "0.25", "std": "0.0" }, "do-si-do": { "pos": "n", "pol": "0.25", "std": "0.0" }, "do well by": { "pos": "v", "pol": "0.25", "std": "0.0" }, "doc": { "pos": "n", "pol": "0.25", "std": "0.0" }, "docility": { "pos": "n", "pol": "0.25", "std": "0.0" }, "doctrinaire": { "pos": "a", "pol": "0.25", "std": "0.0" }, "doctrine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "document": { "pos": "v", "pol": "0.25", "std": "0.177" }, "doddle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dog-tired": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dog racing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "domestic animal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "domestic partner": { "pos": "n", "pol": "0.25", "std": "0.0" }, "domesticated animal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "domestication": { "pos": "n", "pol": "0.25", "std": "0.191" }, "dominated": { "pos": "a", "pol": "0.25", "std": "0.088" }, "donnish": { "pos": "a", "pol": "0.25", "std": "0.0" }, "doo-wop": { "pos": "n", "pol": "0.25", "std": "0.0" }, "doorsill": { "pos": "n", "pol": "0.25", "std": "0.0" }, "doorstep": { "pos": "n", "pol": "0.25", "std": "0.0" }, "doped": { "pos": "a", "pol": "0.25", "std": "0.088" }, "dormant account": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dorsiflexion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dotard": { "pos": "n", "pol": "0.25", "std": "0.0" }, "double-dyed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "double-edged": { "pos": "a", "pol": "0.25", "std": "0.0" }, "double-jointed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "double Gloucester": { "pos": "n", "pol": "0.25", "std": "0.0" }, "double blind": { "pos": "n", "pol": "0.25", "std": "0.0" }, "double fault": { "pos": "n", "pol": "0.25", "std": "0.0" }, "double flat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "double knit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "double negative": { "pos": "n", "pol": "0.25", "std": "0.088" }, "double standard of sexual behavior": { "pos": "n", "pol": "0.25", "std": "0.0" }, "doubled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "doubting": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dovekie": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dovetail plane": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dowered": { "pos": "a", "pol": "0.25", "std": "0.0" }, "downer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "downlike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "downside": { "pos": "n", "pol": "0.25", "std": "0.0" }, "doxastic logic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "doxazosin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "doxology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "draft board": { "pos": "n", "pol": "0.25", "std": "0.0" }, "drafting": { "pos": "n", "pol": "0.25", "std": "0.125" }, "drag in": { "pos": "v", "pol": "0.25", "std": "0.0" }, "drainage": { "pos": "n", "pol": "0.25", "std": "0.0" }, "drainboard": { "pos": "n", "pol": "0.25", "std": "0.0" }, "draining": { "pos": "a", "pol": "0.25", "std": "0.0" }, "draining board": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dramatic play": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dramatically": { "pos": "r", "pol": "0.25", "std": "0.072" }, "dreamland": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dreamworld": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dressing station": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dried-out": { "pos": "a", "pol": "0.25", "std": "0.0" }, "drill-like": { "pos": "a", "pol": "0.25", "std": "0.0" }, "drip-dry": { "pos": "a", "pol": "0.25", "std": "0.088" }, "drip feed": { "pos": "n", "pol": "0.25", "std": "0.0" }, "drive-in": { "pos": "n", "pol": "0.25", "std": "0.0" }, "driven": { "pos": "a", "pol": "0.25", "std": "0.144" }, "driveshaft": { "pos": "n", "pol": "0.25", "std": "0.0" }, "drop-dead": { "pos": "r", "pol": "0.25", "std": "0.0" }, "drowsiness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "drugged": { "pos": "a", "pol": "0.25", "std": "0.0" }, "drum roll": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dry-shod": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dubitable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "duck soup": { "pos": "n", "pol": "0.25", "std": "0.0" }, "due care": { "pos": "n", "pol": "0.25", "std": "0.0" }, "duffel coat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "duffle coat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "duly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "dumbfounded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dumbfounding": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dumbstricken": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dumbstruck": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dumfounded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dumfounding": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dump truck": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dumper": { "pos": "n", "pol": "0.25", "std": "0.0" }, "duodecimal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "duplicate": { "pos": "n", "pol": "0.25", "std": "0.177" }, "dutiable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dwarfish": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dwarfishness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dynamise": { "pos": "v", "pol": "0.25", "std": "0.088" }, "dynamize": { "pos": "v", "pol": "0.25", "std": "0.088" }, "e'er": { "pos": "r", "pol": "0.25", "std": "0.0" }, "eardrum": { "pos": "n", "pol": "0.25", "std": "0.0" }, "earmark": { "pos": "v", "pol": "0.25", "std": "0.0" }, "earnings": { "pos": "n", "pol": "0.25", "std": "0.088" }, "earthshaking": { "pos": "a", "pol": "0.25", "std": "0.177" }, "easel": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eastern lowland gorilla": { "pos": "n", "pol": "0.25", "std": "0.0" }, "easy chair": { "pos": "n", "pol": "0.25", "std": "0.0" }, "easy street": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eat in": { "pos": "v", "pol": "0.25", "std": "0.0" }, "eat out": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ecclesiastic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "echoic": { "pos": "a", "pol": "0.25", "std": "0.177" }, "eclectic method": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eclecticism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eclecticist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ecological succession": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ecologically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "economic consumption": { "pos": "n", "pol": "0.25", "std": "0.0" }, "economic expert": { "pos": "n", "pol": "0.25", "std": "0.0" }, "economical": { "pos": "a", "pol": "0.25", "std": "0.289" }, "ecosystem": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ecumenical movement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ecumenicalism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ecumenicism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "edibility": { "pos": "n", "pol": "0.25", "std": "0.0" }, "edible cockle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "edibleness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "editing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "editor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "editor in chief": { "pos": "n", "pol": "0.25", "std": "0.0" }, "editor program": { "pos": "n", "pol": "0.25", "std": "0.0" }, "educational": { "pos": "a", "pol": "0.25", "std": "0.265" }, "educationalist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "educationist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eellike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "efferent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "effervescent": { "pos": "a", "pol": "0.25", "std": "0.375" }, "effete": { "pos": "a", "pol": "0.25", "std": "0.0" }, "efficaciously": { "pos": "r", "pol": "0.25", "std": "0.0" }, "effortless": { "pos": "a", "pol": "0.25", "std": "0.0" }, "effusiveness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "egg on": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ego trip": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eight-day": { "pos": "a", "pol": "0.25", "std": "0.0" }, "elan vital": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eldorado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "elect": { "pos": "a", "pol": "0.25", "std": "0.265" }, "elected": { "pos": "a", "pol": "0.25", "std": "0.0" }, "electric guitar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "electric ray": { "pos": "n", "pol": "0.25", "std": "0.0" }, "electrical condenser": { "pos": "n", "pol": "0.25", "std": "0.0" }, "electron microscope": { "pos": "n", "pol": "0.25", "std": "0.0" }, "electronic dictionary": { "pos": "n", "pol": "0.25", "std": "0.0" }, "electronic transistor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "electronic voltmeter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "electrophoresis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "electropositive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "electroretinogram": { "pos": "n", "pol": "0.25", "std": "0.0" }, "electrostatic bond": { "pos": "n", "pol": "0.25", "std": "0.0" }, "electrovalent bond": { "pos": "n", "pol": "0.25", "std": "0.0" }, "element of a cone": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eligibility": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eliminator": { "pos": "n", "pol": "0.25", "std": "0.0" }, "elision": { "pos": "n", "pol": "0.25", "std": "0.088" }, "elite group": { "pos": "n", "pol": "0.25", "std": "0.0" }, "elitism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "elliptic geometry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "elliptical": { "pos": "a", "pol": "0.25", "std": "0.265" }, "ellipticity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "elucidate": { "pos": "v", "pol": "0.25", "std": "0.088" }, "elysian": { "pos": "a", "pol": "0.25", "std": "0.53" }, "emanate": { "pos": "v", "pol": "0.25", "std": "0.177" }, "emancipate": { "pos": "v", "pol": "0.25", "std": "0.177" }, "emarginate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "embrocate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "embroil": { "pos": "v", "pol": "0.25", "std": "0.0" }, "embroiled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "emeer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "emendation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "emergency room": { "pos": "n", "pol": "0.25", "std": "0.0" }, "emir": { "pos": "n", "pol": "0.25", "std": "0.0" }, "emollient": { "pos": "a", "pol": "0.25", "std": "0.0" }, "emotion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "emotional": { "pos": "a", "pol": "0.25", "std": "0.072" }, "emotionalism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "emotionality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "emotionally": { "pos": "r", "pol": "0.25", "std": "0.088" }, "empathise": { "pos": "v", "pol": "0.25", "std": "0.0" }, "empathize": { "pos": "v", "pol": "0.25", "std": "0.0" }, "emphasised": { "pos": "a", "pol": "0.25", "std": "0.0" }, "emphasized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "empiric": { "pos": "a", "pol": "0.25", "std": "0.0" }, "empirical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "empirical research": { "pos": "n", "pol": "0.25", "std": "0.0" }, "empiricist philosophy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "employ": { "pos": "n", "pol": "0.25", "std": "0.0" }, "employed": { "pos": "a", "pol": "0.25", "std": "0.177" }, "empowered": { "pos": "a", "pol": "0.25", "std": "0.0" }, "empowerment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "empty tomb": { "pos": "n", "pol": "0.25", "std": "0.0" }, "emulous": { "pos": "a", "pol": "0.25", "std": "0.177" }, "en famille": { "pos": "r", "pol": "0.25", "std": "0.0" }, "encased": { "pos": "a", "pol": "0.25", "std": "0.0" }, "encircled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "encore": { "pos": "n", "pol": "0.25", "std": "0.0" }, "encounter group": { "pos": "n", "pol": "0.25", "std": "0.0" }, "encroaching": { "pos": "a", "pol": "0.25", "std": "0.0" }, "encyclical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "encyclopaedia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "encyclopaedist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "encyclopedia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "encyclopedist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "end on": { "pos": "r", "pol": "0.25", "std": "0.0" }, "endaemonism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "endearment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ended": { "pos": "a", "pol": "0.25", "std": "0.0" }, "endemical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "endoergic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "endogenetic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "endpoint": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enduring": { "pos": "a", "pol": "0.25", "std": "0.177" }, "energising": { "pos": "a", "pol": "0.25", "std": "0.0" }, "energizing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "energy-absorbing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "enfeoffment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enforcement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enfranchised": { "pos": "a", "pol": "0.25", "std": "0.0" }, "engineering science": { "pos": "n", "pol": "0.25", "std": "0.0" }, "engraved": { "pos": "a", "pol": "0.25", "std": "0.0" }, "enology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enormously": { "pos": "r", "pol": "0.25", "std": "0.0" }, "enquiry": { "pos": "n", "pol": "0.25", "std": "0.125" }, "ensorcelled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ensure": { "pos": "v", "pol": "0.25", "std": "0.088" }, "enterprise zone": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enterprising": { "pos": "a", "pol": "0.25", "std": "0.0" }, "entertainment center": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enthrone": { "pos": "v", "pol": "0.25", "std": "0.354" }, "enthusiast": { "pos": "n", "pol": "0.25", "std": "0.088" }, "entireness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "entirety": { "pos": "n", "pol": "0.25", "std": "0.0" }, "entourage": { "pos": "n", "pol": "0.25", "std": "0.0" }, "entreaty": { "pos": "n", "pol": "0.25", "std": "0.0" }, "entrenched": { "pos": "a", "pol": "0.25", "std": "0.088" }, "enveloping": { "pos": "a", "pol": "0.25", "std": "0.0" }, "eosinophil": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eosinophile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "epicene": { "pos": "a", "pol": "0.25", "std": "0.177" }, "epigram": { "pos": "n", "pol": "0.25", "std": "0.0" }, "epikeratophakia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "epimorphic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "epinephrin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "epinephrine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "episteme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "epistemology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eq": { "pos": "n", "pol": "0.25", "std": "0.0" }, "equal protection of the laws": { "pos": "n", "pol": "0.25", "std": "0.0" }, "equality": { "pos": "n", "pol": "0.25", "std": "0.177" }, "equanimous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "equipment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "equipotent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "equivalence": { "pos": "n", "pol": "0.25", "std": "0.072" }, "equivalent weight": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eradicable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ergotropism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eroticize": { "pos": "v", "pol": "0.25", "std": "0.0" }, "erring": { "pos": "a", "pol": "0.25", "std": "0.0" }, "error-prone": { "pos": "a", "pol": "0.25", "std": "0.0" }, "escape expert": { "pos": "n", "pol": "0.25", "std": "0.0" }, "escapologist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eschaton": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esoteric": { "pos": "a", "pol": "0.25", "std": "0.0" }, "esprit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esprit de corps": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esprit de l'escalier": { "pos": "n", "pol": "0.25", "std": "0.0" }, "essentiality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "essentialness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estazolam": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esthetician": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estimator": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estoppel": { "pos": "n", "pol": "0.25", "std": "0.0" }, "etched": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ethic": { "pos": "n", "pol": "0.25", "std": "0.088" }, "ethics committee": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ethics panel": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ethmoidal vein": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ethnic cleansing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ethnocentrism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ethnology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ethosuximide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eudemonism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eugenic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "eurhythmics": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eurhythmy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eurythmics": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eurythmy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "evanescence": { "pos": "n", "pol": "0.25", "std": "0.0" }, "evaporable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "evasive action": { "pos": "n", "pol": "0.25", "std": "0.0" }, "even-pinnate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "even off": { "pos": "v", "pol": "0.25", "std": "0.0" }, "even spacing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eventful": { "pos": "a", "pol": "0.25", "std": "0.088" }, "ever-present": { "pos": "a", "pol": "0.25", "std": "0.0" }, "everydayness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "evidenced": { "pos": "a", "pol": "0.25", "std": "0.0" }, "exactly": { "pos": "r", "pol": "0.25", "std": "0.25" }, "examen": { "pos": "n", "pol": "0.25", "std": "0.088" }, "exanimate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "excellency": { "pos": "n", "pol": "0.25", "std": "0.0" }, "excellently": { "pos": "r", "pol": "0.25", "std": "0.0" }, "excitableness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "excitant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "excitedly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "exclaiming": { "pos": "n", "pol": "0.25", "std": "0.0" }, "exclamatory": { "pos": "a", "pol": "0.25", "std": "0.0" }, "exclusiveness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "excogitative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "excusable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "executive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "exercise device": { "pos": "n", "pol": "0.25", "std": "0.0" }, "exhausted": { "pos": "a", "pol": "0.25", "std": "0.072" }, "exigent": { "pos": "a", "pol": "0.25", "std": "0.177" }, "existential operator": { "pos": "n", "pol": "0.25", "std": "0.0" }, "existential philosophy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "existential quantifier": { "pos": "n", "pol": "0.25", "std": "0.0" }, "existentialism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "exoergic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "exonerative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "expandable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "expanded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "expandible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "expansible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "expansion slot": { "pos": "n", "pol": "0.25", "std": "0.0" }, "expatiate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "expectable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "expectant": { "pos": "a", "pol": "0.25", "std": "0.354" }, "expected": { "pos": "a", "pol": "0.25", "std": "0.0" }, "expediently": { "pos": "r", "pol": "0.25", "std": "0.0" }, "expeditiousness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "expensiveness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "experimenter bias": { "pos": "n", "pol": "0.25", "std": "0.0" }, "expert witness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "expiate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "exposure meter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "expressionless": { "pos": "a", "pol": "0.25", "std": "0.0" }, "expressive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "expressway": { "pos": "n", "pol": "0.25", "std": "0.0" }, "expurgated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "exquisiteness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "extended": { "pos": "a", "pol": "0.25", "std": "0.19" }, "extended care facility": { "pos": "n", "pol": "0.25", "std": "0.0" }, "extensiveness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "extenuating": { "pos": "a", "pol": "0.25", "std": "0.0" }, "exteriorise": { "pos": "v", "pol": "0.25", "std": "0.0" }, "externality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "extinguishable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "extra": { "pos": "r", "pol": "0.25", "std": "0.0" }, "extra time": { "pos": "n", "pol": "0.25", "std": "0.0" }, "extractable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "extractible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "extracurricular": { "pos": "a", "pol": "0.25", "std": "0.072" }, "extramarital": { "pos": "a", "pol": "0.25", "std": "0.0" }, "extramarital sex": { "pos": "n", "pol": "0.25", "std": "0.0" }, "extraordinarily": { "pos": "r", "pol": "0.25", "std": "0.0" }, "extravagancy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "extreme right-winger": { "pos": "n", "pol": "0.25", "std": "0.0" }, "extricable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "extrinsic fraud": { "pos": "n", "pol": "0.25", "std": "0.0" }, "extropy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eye-catching": { "pos": "a", "pol": "0.25", "std": "0.0" }, "eye-drop": { "pos": "n", "pol": "0.25", "std": "0.177" }, "eye clinic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eye muscle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eyeball": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eyed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "eyedrop": { "pos": "n", "pol": "0.25", "std": "0.177" }, "eyelid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eyelike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "eyepatch": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eyes": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eyeshot": { "pos": "n", "pol": "0.25", "std": "0.0" }, "faceplate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "facially": { "pos": "r", "pol": "0.25", "std": "0.0" }, "facilitator": { "pos": "n", "pol": "0.25", "std": "0.0" }, "facts of life": { "pos": "n", "pol": "0.25", "std": "0.0" }, "factual": { "pos": "a", "pol": "0.25", "std": "0.265" }, "factually": { "pos": "r", "pol": "0.25", "std": "0.0" }, "fad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "faddish": { "pos": "a", "pol": "0.25", "std": "0.0" }, "faddy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fagged": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fair deal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fairground": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fairness commission": { "pos": "n", "pol": "0.25", "std": "0.0" }, "falcate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "falchion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "falciform": { "pos": "a", "pol": "0.25", "std": "0.0" }, "falconry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fall from grace": { "pos": "v", "pol": "0.25", "std": "0.0" }, "fall guy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fall short": { "pos": "v", "pol": "0.25", "std": "0.0" }, "falteringly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "familiarisation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "familiarise": { "pos": "v", "pol": "0.25", "std": "0.0" }, "familiarization": { "pos": "n", "pol": "0.25", "std": "0.0" }, "familiarize": { "pos": "v", "pol": "0.25", "std": "0.0" }, "family Acrididae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "family Bradypodidae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "family Bramidae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "family Bufonidae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "family Crocodylidae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "family Curculionidae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "family Dracunculidae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "family Erinaceidae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "family Geophilidae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "family Kalotermitidae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "family Locustidae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "family Percidae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "family Sepiidae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "family Vespertilionidae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "family Xiphiidae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fanatic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fanatical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fang-like": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fantasia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fantasm": { "pos": "n", "pol": "0.25", "std": "0.0" }, "far-flung": { "pos": "a", "pol": "0.25", "std": "0.088" }, "far-off": { "pos": "a", "pol": "0.25", "std": "0.0" }, "far left": { "pos": "a", "pol": "0.25", "std": "0.0" }, "farfetched": { "pos": "a", "pol": "0.25", "std": "0.0" }, "farm animal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "farrow": { "pos": "v", "pol": "0.25", "std": "0.0" }, "farseeing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fashion business": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fashion industry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fast-growing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fast break": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fastidious": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fatherliness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fatigued": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fatness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fattening": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fatuous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "faultfinder": { "pos": "n", "pol": "0.25", "std": "0.0" }, "faultfinding": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "favorable position": { "pos": "n", "pol": "0.25", "std": "0.0" }, "favorite son": { "pos": "n", "pol": "0.25", "std": "0.0" }, "favourable position": { "pos": "n", "pol": "0.25", "std": "0.0" }, "feasibility": { "pos": "n", "pol": "0.25", "std": "0.0" }, "feasibleness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "feathered": { "pos": "a", "pol": "0.25", "std": "0.354" }, "feathery": { "pos": "a", "pol": "0.25", "std": "0.25" }, "feature article": { "pos": "n", "pol": "0.25", "std": "0.0" }, "febrile": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fedelline": { "pos": "n", "pol": "0.25", "std": "0.0" }, "feel like": { "pos": "v", "pol": "0.25", "std": "0.0" }, "fellate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "fence mending": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fencer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fend for": { "pos": "v", "pol": "0.25", "std": "0.0" }, "fenestella": { "pos": "n", "pol": "0.25", "std": "0.0" }, "feng shui": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fermentable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ferocious": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ferret-sized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ferroconcrete": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fertilise": { "pos": "v", "pol": "0.25", "std": "0.217" }, "fertilize": { "pos": "v", "pol": "0.25", "std": "0.217" }, "fervent": { "pos": "a", "pol": "0.25", "std": "0.088" }, "fervid": { "pos": "a", "pol": "0.25", "std": "0.088" }, "fervor": { "pos": "n", "pol": "0.25", "std": "0.265" }, "fervour": { "pos": "n", "pol": "0.25", "std": "0.265" }, "festschrift": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fete": { "pos": "v", "pol": "0.25", "std": "0.0" }, "feudal system": { "pos": "n", "pol": "0.25", "std": "0.0" }, "feudalism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "feudatory": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fiber optic cable": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fibre optic cable": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fibrillose": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fibrocalcific": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fictional": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fictitious place": { "pos": "n", "pol": "0.25", "std": "0.0" }, "field guide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "field hockey": { "pos": "n", "pol": "0.25", "std": "0.0" }, "field of operations": { "pos": "n", "pol": "0.25", "std": "0.0" }, "field of regard": { "pos": "n", "pol": "0.25", "std": "0.0" }, "field of study": { "pos": "n", "pol": "0.25", "std": "0.0" }, "field of vision": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fighting": { "pos": "a", "pol": "0.25", "std": "0.0" }, "figuration": { "pos": "n", "pol": "0.25", "std": "0.177" }, "figured": { "pos": "a", "pol": "0.25", "std": "0.0" }, "figurer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "figuring": { "pos": "n", "pol": "0.25", "std": "0.0" }, "file-like": { "pos": "a", "pol": "0.25", "std": "0.0" }, "filial": { "pos": "a", "pol": "0.25", "std": "0.177" }, "filial love": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fill": { "pos": "n", "pol": "0.25", "std": "0.177" }, "fill the bill": { "pos": "v", "pol": "0.25", "std": "0.0" }, "fille de chambre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "filling station": { "pos": "n", "pol": "0.25", "std": "0.0" }, "film editing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "filthy lucre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "filtration surgery": { "pos": "n", "pol": "0.25", "std": "0.0" }, "finality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "finance": { "pos": "v", "pol": "0.25", "std": "0.0" }, "financial backing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "financial support": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fine-tooth": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fine-toothed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fine arts": { "pos": "n", "pol": "0.25", "std": "0.0" }, "finery": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fines herbes": { "pos": "n", "pol": "0.25", "std": "0.0" }, "finiteness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "finitude": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fire code": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fire trench": { "pos": "n", "pol": "0.25", "std": "0.0" }, "firebase": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fireman's ax": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fireman's axe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fireplace": { "pos": "n", "pol": "0.25", "std": "0.0" }, "firewater": { "pos": "n", "pol": "0.25", "std": "0.0" }, "firing pin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "firm": { "pos": "r", "pol": "0.25", "std": "0.0" }, "firmness": { "pos": "n", "pol": "0.25", "std": "0.313" }, "first-aid kit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "first-aid station": { "pos": "n", "pol": "0.25", "std": "0.0" }, "first blush": { "pos": "n", "pol": "0.25", "std": "0.0" }, "first light": { "pos": "n", "pol": "0.25", "std": "0.0" }, "firsthand": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fishtail palm": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fit the bill": { "pos": "v", "pol": "0.25", "std": "0.0" }, "fitted sheet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "five-hitter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "flabbergasted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "flagstone": { "pos": "n", "pol": "0.25", "std": "0.0" }, "flail": { "pos": "n", "pol": "0.25", "std": "0.0" }, "flame-orange": { "pos": "a", "pol": "0.25", "std": "0.0" }, "flame-retardant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "flameproof": { "pos": "a", "pol": "0.25", "std": "0.0" }, "flan": { "pos": "n", "pol": "0.25", "std": "0.0" }, "flash-frozen": { "pos": "a", "pol": "0.25", "std": "0.0" }, "flawlessness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fledgeling": { "pos": "a", "pol": "0.25", "std": "0.0" }, "flee": { "pos": "v", "pol": "0.25", "std": "0.0" }, "fleecy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fleshly": { "pos": "a", "pol": "0.25", "std": "0.0" }, "flexuous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "flick-knife": { "pos": "n", "pol": "0.25", "std": "0.0" }, "flick knife": { "pos": "n", "pol": "0.25", "std": "0.0" }, "flirtation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "flirting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "floaty": { "pos": "a", "pol": "0.25", "std": "0.0" }, "flocculent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "flood in": { "pos": "v", "pol": "0.25", "std": "0.0" }, "flooded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "flooding": { "pos": "n", "pol": "0.25", "std": "0.0" }, "florid": { "pos": "a", "pol": "0.25", "std": "0.265" }, "flossy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "floury": { "pos": "a", "pol": "0.25", "std": "0.0" }, "flower people": { "pos": "n", "pol": "0.25", "std": "0.0" }, "flowered": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fluffy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fluid flywheel": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fluorescent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fly": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fogbound": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fogey": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fogy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "folding saw": { "pos": "n", "pol": "0.25", "std": "0.0" }, "foliolate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "folk tale": { "pos": "n", "pol": "0.25", "std": "0.0" }, "folktale": { "pos": "n", "pol": "0.25", "std": "0.0" }, "follow out": { "pos": "v", "pol": "0.25", "std": "0.0" }, "follow up": { "pos": "v", "pol": "0.25", "std": "0.088" }, "food cache": { "pos": "n", "pol": "0.25", "std": "0.0" }, "foot doctor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "foot race": { "pos": "n", "pol": "0.25", "std": "0.0" }, "footbridge": { "pos": "n", "pol": "0.25", "std": "0.0" }, "footrace": { "pos": "n", "pol": "0.25", "std": "0.0" }, "footstall": { "pos": "n", "pol": "0.25", "std": "0.0" }, "for the asking": { "pos": "r", "pol": "0.25", "std": "0.0" }, "forcible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "forearm": { "pos": "n", "pol": "0.25", "std": "0.0" }, "foregoing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "foregone": { "pos": "a", "pol": "0.25", "std": "0.0" }, "foreign legion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "foreknowledge": { "pos": "n", "pol": "0.25", "std": "0.0" }, "forensic medicine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "forensic pathology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "foreordained": { "pos": "a", "pol": "0.25", "std": "0.0" }, "forestalling": { "pos": "n", "pol": "0.25", "std": "0.0" }, "forficate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "forgettable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "forgivable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "forgivingly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "formalise": { "pos": "v", "pol": "0.25", "std": "0.177" }, "formality": { "pos": "n", "pol": "0.25", "std": "0.072" }, "formalize": { "pos": "v", "pol": "0.25", "std": "0.177" }, "formally": { "pos": "r", "pol": "0.25", "std": "0.088" }, "formalness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "formulaic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "formulated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "forte": { "pos": "n", "pol": "0.25", "std": "0.505" }, "fortuitous": { "pos": "a", "pol": "0.25", "std": "0.265" }, "fortuitousness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fortune hunter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "forum": { "pos": "n", "pol": "0.25", "std": "0.177" }, "forward pass": { "pos": "n", "pol": "0.25", "std": "0.0" }, "foryml": { "pos": "n", "pol": "0.25", "std": "0.0" }, "foulard": { "pos": "n", "pol": "0.25", "std": "0.0" }, "four-hitter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "four-part harmony": { "pos": "n", "pol": "0.25", "std": "0.0" }, "four-poster": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fourth cranial nerve": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fox terrier": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fragrancy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fragrant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "frame of reference": { "pos": "n", "pol": "0.25", "std": "0.177" }, "fraternisation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fraternization": { "pos": "n", "pol": "0.25", "std": "0.0" }, "free-lance": { "pos": "a", "pol": "0.25", "std": "0.177" }, "free-liver": { "pos": "n", "pol": "0.25", "std": "0.0" }, "free-living": { "pos": "a", "pol": "0.25", "std": "0.0" }, "free-range": { "pos": "a", "pol": "0.25", "std": "0.0" }, "free electron": { "pos": "n", "pol": "0.25", "std": "0.0" }, "free house": { "pos": "n", "pol": "0.25", "std": "0.0" }, "free love": { "pos": "n", "pol": "0.25", "std": "0.0" }, "free state": { "pos": "n", "pol": "0.25", "std": "0.0" }, "free time": { "pos": "n", "pol": "0.25", "std": "0.177" }, "free trade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "freedom from cruel and unusual punishment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "freedom from double jeopardy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "freedom from involuntary servitude": { "pos": "n", "pol": "0.25", "std": "0.0" }, "freedom from search and seizure": { "pos": "n", "pol": "0.25", "std": "0.0" }, "freedom of religion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "freedom of speech": { "pos": "n", "pol": "0.25", "std": "0.0" }, "freedom to bear arms": { "pos": "n", "pol": "0.25", "std": "0.0" }, "freehand": { "pos": "a", "pol": "0.25", "std": "0.0" }, "freelance": { "pos": "a", "pol": "0.25", "std": "0.177" }, "freestyle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "freeway": { "pos": "n", "pol": "0.25", "std": "0.0" }, "freeze-dried": { "pos": "a", "pol": "0.25", "std": "0.0" }, "friend": { "pos": "n", "pol": "0.25", "std": "0.157" }, "fringed": { "pos": "a", "pol": "0.25", "std": "0.191" }, "fringy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "frolic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "frugal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fruitfully": { "pos": "r", "pol": "0.25", "std": "0.0" }, "fulgent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "full-blooded": { "pos": "a", "pol": "0.25", "std": "0.442" }, "full-size": { "pos": "a", "pol": "0.25", "std": "0.0" }, "full-wave rectifier": { "pos": "n", "pol": "0.25", "std": "0.0" }, "full blood": { "pos": "n", "pol": "0.25", "std": "0.0" }, "full faith and credit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "full gainer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fully": { "pos": "r", "pol": "0.25", "std": "0.331" }, "fumed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "function": { "pos": "v", "pol": "0.25", "std": "0.125" }, "functional illiterate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "funded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "funeral-residence": { "pos": "n", "pol": "0.25", "std": "0.0" }, "funeral chapel": { "pos": "n", "pol": "0.25", "std": "0.0" }, "funeral church": { "pos": "n", "pol": "0.25", "std": "0.0" }, "funeral home": { "pos": "n", "pol": "0.25", "std": "0.0" }, "funeral parlor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "funfair": { "pos": "n", "pol": "0.25", "std": "0.177" }, "fungicidal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "funniness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "furbish": { "pos": "v", "pol": "0.25", "std": "0.0" }, "furled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "furring strip": { "pos": "n", "pol": "0.25", "std": "0.0" }, "furtherance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fuscous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fusible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fusiform": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fuzzed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fuzzy logic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gag line": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gaga": { "pos": "a", "pol": "0.25", "std": "0.088" }, "gallantly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "galvanic": { "pos": "a", "pol": "0.25", "std": "0.354" }, "gambol": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gangling": { "pos": "a", "pol": "0.25", "std": "0.088" }, "gangly": { "pos": "a", "pol": "0.25", "std": "0.088" }, "garbology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "garment industry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "garmentless": { "pos": "a", "pol": "0.25", "std": "0.0" }, "garnishee": { "pos": "v", "pol": "0.25", "std": "0.0" }, "gas-filled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gas-tight": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gas station": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gas up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "gas well": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gash": { "pos": "v", "pol": "0.25", "std": "0.0" }, "gasoline station": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gatepost": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gathered": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gathering place": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gaudy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gauntleted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gay lib": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gay liberation movement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gayness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gear up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "gemmule": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gender identity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "general-purpose": { "pos": "a", "pol": "0.25", "std": "0.0" }, "general agent": { "pos": "n", "pol": "0.25", "std": "0.354" }, "general relativity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "general relativity theory": { "pos": "n", "pol": "0.25", "std": "0.0" }, "general theory of relativity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "geneticism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "geniality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genital phase": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genital stage": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genteel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gentle": { "pos": "v", "pol": "0.25", "std": "0.191" }, "genuine": { "pos": "a", "pol": "0.25", "std": "0.361" }, "genuineness": { "pos": "n", "pol": "0.25", "std": "0.354" }, "genus Bacillus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genus Hyphantria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genus Ipomoea": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genus Nomia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genus Pezophaps": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genus Phthirius": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genus Phthirus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genus Rattus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "geographer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "geographic point": { "pos": "n", "pol": "0.25", "std": "0.0" }, "geographical point": { "pos": "n", "pol": "0.25", "std": "0.0" }, "geographically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "geologic process": { "pos": "n", "pol": "0.25", "std": "0.0" }, "geological process": { "pos": "n", "pol": "0.25", "std": "0.0" }, "geologically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "geometrically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "geopolitics": { "pos": "n", "pol": "0.25", "std": "0.0" }, "geordie": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gerrymander": { "pos": "v", "pol": "0.25", "std": "0.0" }, "gesso": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gesticulation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "get-well card": { "pos": "n", "pol": "0.25", "std": "0.0" }, "get a line": { "pos": "v", "pol": "0.25", "std": "0.0" }, "get dressed": { "pos": "v", "pol": "0.25", "std": "0.0" }, "get hitched with": { "pos": "v", "pol": "0.25", "std": "0.0" }, "get married": { "pos": "v", "pol": "0.25", "std": "0.0" }, "get wind": { "pos": "v", "pol": "0.25", "std": "0.0" }, "get word": { "pos": "v", "pol": "0.25", "std": "0.0" }, "gibber": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gibberish": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gild": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gild the lily": { "pos": "v", "pol": "0.25", "std": "0.0" }, "gimbal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ginger up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "gingerroot": { "pos": "n", "pol": "0.25", "std": "0.0" }, "girder": { "pos": "n", "pol": "0.25", "std": "0.0" }, "girl wonder": { "pos": "n", "pol": "0.25", "std": "0.0" }, "give and take": { "pos": "v", "pol": "0.25", "std": "0.0" }, "give ear": { "pos": "v", "pol": "0.25", "std": "0.0" }, "glabella": { "pos": "n", "pol": "0.25", "std": "0.0" }, "glabrescent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "glabrous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "glamor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "glamorize": { "pos": "v", "pol": "0.25", "std": "0.354" }, "glamour": { "pos": "n", "pol": "0.25", "std": "0.0" }, "glamourise": { "pos": "v", "pol": "0.25", "std": "0.354" }, "glary": { "pos": "a", "pol": "0.25", "std": "0.0" }, "glass-like": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gleaming": { "pos": "a", "pol": "0.25", "std": "0.0" }, "glimmer": { "pos": "v", "pol": "0.25", "std": "0.0" }, "glisten": { "pos": "v", "pol": "0.25", "std": "0.0" }, "glitter": { "pos": "v", "pol": "0.25", "std": "0.0" }, "globalise": { "pos": "v", "pol": "0.25", "std": "0.0" }, "globalize": { "pos": "v", "pol": "0.25", "std": "0.0" }, "globe-trot": { "pos": "v", "pol": "0.25", "std": "0.0" }, "globe pepper": { "pos": "n", "pol": "0.25", "std": "0.0" }, "globose": { "pos": "a", "pol": "0.25", "std": "0.0" }, "globular": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gloriole": { "pos": "n", "pol": "0.25", "std": "0.0" }, "glossiness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "glottochronological": { "pos": "a", "pol": "0.25", "std": "0.0" }, "glutathione peroxidase": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gnarled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gnarly": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gnathostome": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gnosis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "go-as-you-please": { "pos": "a", "pol": "0.25", "std": "0.0" }, "go back on": { "pos": "v", "pol": "0.25", "std": "0.0" }, "go deep": { "pos": "v", "pol": "0.25", "std": "0.0" }, "go down on": { "pos": "v", "pol": "0.25", "std": "0.0" }, "go for": { "pos": "v", "pol": "0.25", "std": "0.185" }, "go game": { "pos": "n", "pol": "0.25", "std": "0.0" }, "go steady": { "pos": "v", "pol": "0.25", "std": "0.0" }, "goal-directed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "god-fearing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "goddam": { "pos": "r", "pol": "0.25", "std": "0.0" }, "goddamn": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "goddamned": { "pos": "r", "pol": "0.25", "std": "0.0" }, "godliness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "going-out-of-business sale": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gold mine": { "pos": "n", "pol": "0.25", "std": "0.354" }, "golden-green": { "pos": "a", "pol": "0.25", "std": "0.0" }, "golden-yellow": { "pos": "a", "pol": "0.25", "std": "0.0" }, "golden age": { "pos": "n", "pol": "0.25", "std": "0.0" }, "golden handshake": { "pos": "n", "pol": "0.25", "std": "0.0" }, "golden oldie": { "pos": "n", "pol": "0.25", "std": "0.0" }, "goldmine": { "pos": "n", "pol": "0.25", "std": "0.354" }, "golf": { "pos": "n", "pol": "0.25", "std": "0.0" }, "golf game": { "pos": "n", "pol": "0.25", "std": "0.0" }, "golf glove": { "pos": "n", "pol": "0.25", "std": "0.0" }, "good faith": { "pos": "n", "pol": "0.25", "std": "0.0" }, "good part": { "pos": "n", "pol": "0.25", "std": "0.0" }, "good time": { "pos": "n", "pol": "0.25", "std": "0.0" }, "goodly": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gorgeously": { "pos": "r", "pol": "0.25", "std": "0.0" }, "gouge out": { "pos": "v", "pol": "0.25", "std": "0.0" }, "governing body": { "pos": "n", "pol": "0.25", "std": "0.0" }, "government man": { "pos": "n", "pol": "0.25", "std": "0.0" }, "grad school": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gradable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gradational": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gradatory": { "pos": "a", "pol": "0.25", "std": "0.0" }, "graduate school": { "pos": "n", "pol": "0.25", "std": "0.0" }, "graduated": { "pos": "a", "pol": "0.25", "std": "0.088" }, "graduated table": { "pos": "n", "pol": "0.25", "std": "0.0" }, "grammatically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "gramophone": { "pos": "n", "pol": "0.25", "std": "0.0" }, "grand slam": { "pos": "n", "pol": "0.25", "std": "0.0" }, "graniteware": { "pos": "n", "pol": "0.25", "std": "0.0" }, "grape-sized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "graspable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gratification": { "pos": "n", "pol": "0.25", "std": "0.088" }, "gratified": { "pos": "a", "pol": "0.25", "std": "0.0" }, "graven": { "pos": "a", "pol": "0.25", "std": "0.088" }, "graven image": { "pos": "n", "pol": "0.25", "std": "0.0" }, "graveness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "great hall": { "pos": "n", "pol": "0.25", "std": "0.0" }, "green": { "pos": "v", "pol": "0.25", "std": "0.0" }, "green-blindness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "green pea": { "pos": "n", "pol": "0.25", "std": "0.0" }, "green pea soup": { "pos": "n", "pol": "0.25", "std": "0.0" }, "green pepper": { "pos": "n", "pol": "0.25", "std": "0.0" }, "greening": { "pos": "n", "pol": "0.25", "std": "0.0" }, "grooved": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ground-service crew": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ground crew": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ground rule": { "pos": "n", "pol": "0.25", "std": "0.0" }, "grounding": { "pos": "n", "pol": "0.25", "std": "0.177" }, "group practice": { "pos": "n", "pol": "0.25", "std": "0.0" }, "growing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "growl": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "guarantor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "guardian": { "pos": "n", "pol": "0.25", "std": "0.0" }, "guardrail": { "pos": "n", "pol": "0.25", "std": "0.0" }, "guidebook": { "pos": "n", "pol": "0.25", "std": "0.0" }, "guild": { "pos": "n", "pol": "0.25", "std": "0.0" }, "guileless": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gula": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gummy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gun enclosure": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gun muzzle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gun turret": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gunstock": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gusher": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gutter press": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gymkhana": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gymnast": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gymnastic": { "pos": "a", "pol": "0.25", "std": "0.265" }, "gynandromorphic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gynandromorphous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "habitability": { "pos": "n", "pol": "0.25", "std": "0.0" }, "habitableness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "habituate": { "pos": "v", "pol": "0.25", "std": "0.088" }, "haecceity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "half-relief": { "pos": "n", "pol": "0.25", "std": "0.0" }, "half-seas-over": { "pos": "a", "pol": "0.25", "std": "0.0" }, "half-size": { "pos": "a", "pol": "0.25", "std": "0.0" }, "half-timber": { "pos": "a", "pol": "0.25", "std": "0.0" }, "half-timbered": { "pos": "a", "pol": "0.25", "std": "0.0" }, "half-time": { "pos": "r", "pol": "0.25", "std": "0.0" }, "half-track": { "pos": "a", "pol": "0.25", "std": "0.0" }, "half-tracked": { "pos": "a", "pol": "0.25", "std": "0.0" }, "half-witted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "half gainer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hallucinogenic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hand-down": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hand-held": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hand-loomed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hand-me-down": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hand mirror": { "pos": "n", "pol": "0.25", "std": "0.0" }, "handbell": { "pos": "n", "pol": "0.25", "std": "0.0" }, "handbreadth": { "pos": "n", "pol": "0.25", "std": "0.0" }, "handcraft": { "pos": "n", "pol": "0.25", "std": "0.0" }, "handcuff": { "pos": "v", "pol": "0.25", "std": "0.0" }, "handedness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "handheld": { "pos": "a", "pol": "0.25", "std": "0.0" }, "handicapper": { "pos": "n", "pol": "0.25", "std": "0.0" }, "handiwork": { "pos": "n", "pol": "0.25", "std": "0.0" }, "handle with kid gloves": { "pos": "v", "pol": "0.25", "std": "0.0" }, "handsbreadth": { "pos": "n", "pol": "0.25", "std": "0.0" }, "handwork": { "pos": "n", "pol": "0.25", "std": "0.0" }, "handwoven": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hank panky": { "pos": "n", "pol": "0.25", "std": "0.0" }, "happy chance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "happy event": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hard core": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hard drug": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hard water": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hardware error": { "pos": "n", "pol": "0.25", "std": "0.0" }, "harlotry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "harmoniously": { "pos": "r", "pol": "0.25", "std": "0.0" }, "harnessed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "haughtiness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hauling": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hauteur": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hawfinch": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hawk-eyed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hazan": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hazy": { "pos": "a", "pol": "0.25", "std": "0.088" }, "he-man": { "pos": "n", "pol": "0.25", "std": "0.0" }, "head-to-head": { "pos": "a", "pol": "0.25", "std": "0.088" }, "head honcho": { "pos": "n", "pol": "0.25", "std": "0.0" }, "head shop": { "pos": "n", "pol": "0.25", "std": "0.0" }, "head start": { "pos": "n", "pol": "0.25", "std": "0.0" }, "headfirst": { "pos": "a", "pol": "0.25", "std": "0.0" }, "headlike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "headlinese": { "pos": "n", "pol": "0.25", "std": "0.0" }, "headlong": { "pos": "a", "pol": "0.25", "std": "0.177" }, "headquarter": { "pos": "v", "pol": "0.25", "std": "0.0" }, "headstock": { "pos": "n", "pol": "0.25", "std": "0.0" }, "headwaiter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "healing herb": { "pos": "n", "pol": "0.25", "std": "0.0" }, "health club": { "pos": "n", "pol": "0.25", "std": "0.0" }, "health code": { "pos": "n", "pol": "0.25", "std": "0.0" }, "health spa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hearsay": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hearsay evidence": { "pos": "n", "pol": "0.25", "std": "0.0" }, "heart-to-heart": { "pos": "n", "pol": "0.25", "std": "0.0" }, "heart-whole": { "pos": "a", "pol": "0.25", "std": "0.0" }, "heart and soul": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hearth money": { "pos": "n", "pol": "0.25", "std": "0.0" }, "heartland": { "pos": "n", "pol": "0.25", "std": "0.0" }, "heating plant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "heating system": { "pos": "n", "pol": "0.25", "std": "0.0" }, "heavenward": { "pos": "a", "pol": "0.25", "std": "0.0" }, "heavy-armed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "heel counter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hell-bent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hellishly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "helmeted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "help desk": { "pos": "n", "pol": "0.25", "std": "0.0" }, "helpdesk": { "pos": "n", "pol": "0.25", "std": "0.0" }, "helpfulness": { "pos": "n", "pol": "0.25", "std": "0.088" }, "helping hand": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hemiparasite": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hemostatic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "henpecked": { "pos": "a", "pol": "0.25", "std": "0.0" }, "herbal medicine": { "pos": "n", "pol": "0.25", "std": "0.088" }, "here": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hereditarianism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hereditary": { "pos": "a", "pol": "0.25", "std": "0.088" }, "hereness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "heretofore": { "pos": "r", "pol": "0.25", "std": "0.0" }, "heritable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "heroical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "heroine": { "pos": "n", "pol": "0.25", "std": "0.088" }, "herrerasaur": { "pos": "n", "pol": "0.25", "std": "0.0" }, "herrerasaurus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hesitant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hesitating": { "pos": "a", "pol": "0.25", "std": "0.0" }, "heterodactyl": { "pos": "a", "pol": "0.25", "std": "0.0" }, "heterometabolic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "heterometabolous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "heterosexism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "heterosporous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "heterotroph": { "pos": "n", "pol": "0.25", "std": "0.0" }, "heuristic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "heuristic program": { "pos": "n", "pol": "0.25", "std": "0.0" }, "heuristic rule": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hi-tech": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hide out": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hifalutin": { "pos": "a", "pol": "0.25", "std": "0.0" }, "high-backed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "high-class": { "pos": "a", "pol": "0.25", "std": "0.0" }, "high-handedness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "high-level": { "pos": "a", "pol": "0.25", "std": "0.177" }, "high-tech": { "pos": "a", "pol": "0.25", "std": "0.0" }, "high-toned": { "pos": "a", "pol": "0.25", "std": "0.0" }, "high-top": { "pos": "a", "pol": "0.25", "std": "0.0" }, "high-topped": { "pos": "a", "pol": "0.25", "std": "0.0" }, "high comedy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "high explosive": { "pos": "n", "pol": "0.25", "std": "0.0" }, "high fidelity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "high finance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "high point": { "pos": "n", "pol": "0.25", "std": "0.0" }, "higher": { "pos": "a", "pol": "0.25", "std": "0.088" }, "higher education": { "pos": "n", "pol": "0.25", "std": "0.0" }, "higher rank": { "pos": "n", "pol": "0.25", "std": "0.0" }, "higher status": { "pos": "n", "pol": "0.25", "std": "0.0" }, "highfalutin": { "pos": "a", "pol": "0.25", "std": "0.0" }, "highfaluting": { "pos": "a", "pol": "0.25", "std": "0.0" }, "highflier": { "pos": "n", "pol": "0.25", "std": "0.0" }, "highflyer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "highly-sexed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "highly sensitive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "highness": { "pos": "n", "pol": "0.25", "std": "0.354" }, "hilt": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hindering": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hippies": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hipsters": { "pos": "n", "pol": "0.25", "std": "0.0" }, "historic period": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hit the jackpot": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hitchhike": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hitherto": { "pos": "r", "pol": "0.25", "std": "0.0" }, "hive up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hobnailed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hoe handle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hoggish": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hoity-toity": { "pos": "a", "pol": "0.25", "std": "0.0" }, "holiness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "holistic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "holistic medicine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "holographical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "holy day": { "pos": "n", "pol": "0.25", "std": "0.0" }, "holy man": { "pos": "n", "pol": "0.25", "std": "0.0" }, "holy person": { "pos": "n", "pol": "0.25", "std": "0.0" }, "holy place": { "pos": "n", "pol": "0.25", "std": "0.0" }, "homage": { "pos": "n", "pol": "0.25", "std": "0.0" }, "home": { "pos": "v", "pol": "0.25", "std": "0.177" }, "home appliance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "home brew": { "pos": "n", "pol": "0.25", "std": "0.0" }, "home computer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "home folk": { "pos": "n", "pol": "0.25", "std": "0.0" }, "home in": { "pos": "v", "pol": "0.25", "std": "0.0" }, "home movie": { "pos": "n", "pol": "0.25", "std": "0.0" }, "home study": { "pos": "n", "pol": "0.25", "std": "0.0" }, "home theater": { "pos": "n", "pol": "0.25", "std": "0.0" }, "home theatre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "homebound": { "pos": "n", "pol": "0.25", "std": "0.0" }, "homebrew": { "pos": "n", "pol": "0.25", "std": "0.0" }, "homecourt advantage": { "pos": "n", "pol": "0.25", "std": "0.0" }, "homemaking": { "pos": "n", "pol": "0.25", "std": "0.0" }, "homeothermic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "homeowner": { "pos": "n", "pol": "0.25", "std": "0.0" }, "homestead law": { "pos": "n", "pol": "0.25", "std": "0.0" }, "homewards": { "pos": "r", "pol": "0.25", "std": "0.0" }, "homily": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hominal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "homing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "homing pigeon": { "pos": "n", "pol": "0.25", "std": "0.0" }, "homing torpedo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "homocentric": { "pos": "a", "pol": "0.25", "std": "0.0" }, "homocyclic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "homoecious": { "pos": "a", "pol": "0.25", "std": "0.0" }, "homoeroticism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "homogeneity": { "pos": "n", "pol": "0.25", "std": "0.265" }, "homoiothermic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "homosexual": { "pos": "a", "pol": "0.25", "std": "0.0" }, "homosexualism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "homosexuality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "homothermic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "honesty": { "pos": "n", "pol": "0.25", "std": "0.442" }, "honeyed words": { "pos": "n", "pol": "0.25", "std": "0.0" }, "honorable mention": { "pos": "n", "pol": "0.25", "std": "0.0" }, "honorary": { "pos": "a", "pol": "0.25", "std": "0.0" }, "honorary degree": { "pos": "n", "pol": "0.25", "std": "0.0" }, "honorary society": { "pos": "n", "pol": "0.25", "std": "0.0" }, "honoris causa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hook and eye": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hook up with": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hooklike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hooks": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hoop pine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hoover": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hop pole": { "pos": "n", "pol": "0.25", "std": "0.0" }, "horn-rimmed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "horned chameleon": { "pos": "n", "pol": "0.25", "std": "0.0" }, "horology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hospital": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hospital care": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hospital room": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hospital ward": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hospitalisation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hostler": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hot jazz": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hot tub": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hour circle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "houri": { "pos": "n", "pol": "0.25", "std": "0.177" }, "hourlong": { "pos": "a", "pol": "0.25", "std": "0.0" }, "house arrest": { "pos": "n", "pol": "0.25", "std": "0.0" }, "house centipede": { "pos": "n", "pol": "0.25", "std": "0.0" }, "houseboat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "housefather": { "pos": "n", "pol": "0.25", "std": "0.0" }, "household appliance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "householder": { "pos": "n", "pol": "0.25", "std": "0.0" }, "houseman": { "pos": "n", "pol": "0.25", "std": "0.0" }, "housewifely": { "pos": "a", "pol": "0.25", "std": "0.0" }, "huddled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hugely": { "pos": "r", "pol": "0.25", "std": "0.0" }, "human": { "pos": "n", "pol": "0.25", "std": "0.0" }, "human-sized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "human being": { "pos": "n", "pol": "0.25", "std": "0.0" }, "human dynamo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "human head": { "pos": "n", "pol": "0.25", "std": "0.0" }, "human language technology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "human palaeontology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "human paleontology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "humanise": { "pos": "v", "pol": "0.25", "std": "0.0" }, "humanitarianism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "humanize": { "pos": "v", "pol": "0.25", "std": "0.0" }, "humanlike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "humblebee": { "pos": "n", "pol": "0.25", "std": "0.0" }, "humid": { "pos": "a", "pol": "0.25", "std": "0.0" }, "humidify": { "pos": "v", "pol": "0.25", "std": "0.0" }, "humor": { "pos": "v", "pol": "0.25", "std": "0.0" }, "humour": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hungry": { "pos": "a", "pol": "0.25", "std": "0.088" }, "hunting knife": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hurrying": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hyaline": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hyaloid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hyaloid membrane": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hydrogenate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hydrophilic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hydrophytic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hygienics": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hygienise": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hygienize": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hyoscyamine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hypercapnia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hypercarbia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hypercritical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hyperfocal distance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hyperglycaemia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hyperglycemia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hypertrophied": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hypnagogic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hypnogogic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hypnotise": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hypnotize": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hypopnea": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hypostasis of Christ": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hypothalamically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "ibn Talal Hussein": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ice show": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ice yacht": { "pos": "n", "pol": "0.25", "std": "0.0" }, "iceboat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "icebreaker": { "pos": "n", "pol": "0.25", "std": "0.0" }, "iconoscope": { "pos": "n", "pol": "0.25", "std": "0.0" }, "icterogenic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "idealise": { "pos": "v", "pol": "0.25", "std": "0.177" }, "idealist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ideality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "idealize": { "pos": "v", "pol": "0.25", "std": "0.177" }, "identified": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ileal artery": { "pos": "n", "pol": "0.25", "std": "0.0" }, "illustriousness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "imaginable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "imaginary place": { "pos": "n", "pol": "0.25", "std": "0.0" }, "imaginative comparison": { "pos": "n", "pol": "0.25", "std": "0.0" }, "imagism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "imbecilic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "immaculate": { "pos": "a", "pol": "0.25", "std": "0.072" }, "immemorial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "imminent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "immotile": { "pos": "a", "pol": "0.25", "std": "0.0" }, "immune carrier": { "pos": "n", "pol": "0.25", "std": "0.0" }, "immunofluorescence": { "pos": "n", "pol": "0.25", "std": "0.0" }, "immunogenic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "impassioned": { "pos": "a", "pol": "0.25", "std": "0.0" }, "impeding": { "pos": "a", "pol": "0.25", "std": "0.0" }, "impendent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "impending": { "pos": "a", "pol": "0.25", "std": "0.0" }, "impenitent": { "pos": "a", "pol": "0.25", "std": "0.088" }, "impenitently": { "pos": "r", "pol": "0.25", "std": "0.0" }, "imperforate anus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "impermeability": { "pos": "n", "pol": "0.25", "std": "0.0" }, "impermeable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "impermeableness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "implanted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "implement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "implicative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "imploring": { "pos": "a", "pol": "0.25", "std": "0.0" }, "implosion therapy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "important": { "pos": "a", "pol": "0.25", "std": "0.088" }, "imposed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "impossibleness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "impracticality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "impressiveness": { "pos": "n", "pol": "0.25", "std": "0.088" }, "improver": { "pos": "n", "pol": "0.25", "std": "0.088" }, "improvised": { "pos": "a", "pol": "0.25", "std": "0.0" }, "in a similar way": { "pos": "r", "pol": "0.25", "std": "0.0" }, "in and of itself": { "pos": "r", "pol": "0.25", "std": "0.0" }, "in concert": { "pos": "r", "pol": "0.25", "std": "0.0" }, "in fact": { "pos": "r", "pol": "0.25", "std": "0.0" }, "in for": { "pos": "a", "pol": "0.25", "std": "0.0" }, "in her right mind": { "pos": "a", "pol": "0.25", "std": "0.0" }, "in his right mind": { "pos": "a", "pol": "0.25", "std": "0.0" }, "in kind": { "pos": "r", "pol": "0.25", "std": "0.0" }, "in other words": { "pos": "r", "pol": "0.25", "std": "0.0" }, "in point of fact": { "pos": "r", "pol": "0.25", "std": "0.0" }, "in practice": { "pos": "r", "pol": "0.25", "std": "0.0" }, "in public": { "pos": "r", "pol": "0.25", "std": "0.0" }, "in question": { "pos": "a", "pol": "0.25", "std": "0.0" }, "in reality": { "pos": "r", "pol": "0.25", "std": "0.0" }, "in small stages": { "pos": "a", "pol": "0.25", "std": "0.0" }, "in the lead": { "pos": "a", "pol": "0.25", "std": "0.0" }, "in their right minds": { "pos": "a", "pol": "0.25", "std": "0.0" }, "in use": { "pos": "a", "pol": "0.25", "std": "0.0" }, "in vivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inadvisably": { "pos": "r", "pol": "0.25", "std": "0.0" }, "inamorata": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inamorato": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inane": { "pos": "a", "pol": "0.25", "std": "0.0" }, "incased": { "pos": "a", "pol": "0.25", "std": "0.0" }, "incendiary bomb": { "pos": "n", "pol": "0.25", "std": "0.0" }, "incest": { "pos": "n", "pol": "0.25", "std": "0.0" }, "incisively": { "pos": "r", "pol": "0.25", "std": "0.265" }, "incisiveness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "incitive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "incognito": { "pos": "a", "pol": "0.25", "std": "0.0" }, "incommensurable": { "pos": "a", "pol": "0.25", "std": "0.265" }, "incomputable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inconclusively": { "pos": "r", "pol": "0.25", "std": "0.0" }, "inconsiderately": { "pos": "r", "pol": "0.25", "std": "0.0" }, "inconspicuously": { "pos": "r", "pol": "0.25", "std": "0.0" }, "incorporated": { "pos": "a", "pol": "0.25", "std": "0.217" }, "increase": { "pos": "v", "pol": "0.25", "std": "0.442" }, "inculcate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "inculcation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "incurvate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "incurved": { "pos": "a", "pol": "0.25", "std": "0.0" }, "indaba": { "pos": "n", "pol": "0.25", "std": "0.0" }, "indefatigability": { "pos": "n", "pol": "0.25", "std": "0.0" }, "indefatigableness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "indentured": { "pos": "a", "pol": "0.25", "std": "0.0" }, "independent clause": { "pos": "n", "pol": "0.25", "std": "0.0" }, "indirect object": { "pos": "n", "pol": "0.25", "std": "0.0" }, "individual retirement account": { "pos": "n", "pol": "0.25", "std": "0.0" }, "individualised": { "pos": "a", "pol": "0.25", "std": "0.0" }, "individualized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "indivisible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "induced": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inducement": { "pos": "n", "pol": "0.25", "std": "0.177" }, "indurate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "industrial psychology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "industriousness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inerrancy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inestimable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "infallibility": { "pos": "n", "pol": "0.25", "std": "0.0" }, "infected": { "pos": "a", "pol": "0.25", "std": "0.0" }, "infectious agent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "infective agent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inferential": { "pos": "a", "pol": "0.25", "std": "0.198" }, "infernally": { "pos": "r", "pol": "0.25", "std": "0.0" }, "infirmary": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inflectional": { "pos": "a", "pol": "0.25", "std": "0.0" }, "informative": { "pos": "a", "pol": "0.25", "std": "0.072" }, "infra dig": { "pos": "a", "pol": "0.25", "std": "0.0" }, "infrared": { "pos": "a", "pol": "0.25", "std": "0.0" }, "infrequently": { "pos": "r", "pol": "0.25", "std": "0.0" }, "ingrained": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ingraining": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ingroup": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ingrown toenail": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inheritable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inherited": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inhibited": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inhibitor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "initial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "initiative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "initiatory": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inner circle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "innocency": { "pos": "n", "pol": "0.25", "std": "0.0" }, "innovation": { "pos": "n", "pol": "0.25", "std": "0.144" }, "innumerable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "innumerous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inoffensively": { "pos": "r", "pol": "0.25", "std": "0.0" }, "inordinately": { "pos": "r", "pol": "0.25", "std": "0.0" }, "inquiry": { "pos": "n", "pol": "0.25", "std": "0.125" }, "inquisitive": { "pos": "a", "pol": "0.25", "std": "0.088" }, "inquisitorial": { "pos": "a", "pol": "0.25", "std": "0.072" }, "inquisitory": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inside information": { "pos": "n", "pol": "0.25", "std": "0.0" }, "insider information": { "pos": "n", "pol": "0.25", "std": "0.0" }, "insightfulness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "insisting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inspiring": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inspirit": { "pos": "v", "pol": "0.25", "std": "0.0" }, "instantaneous sound pressure": { "pos": "n", "pol": "0.25", "std": "0.0" }, "instigative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "instilling": { "pos": "n", "pol": "0.25", "std": "0.0" }, "institute": { "pos": "n", "pol": "0.25", "std": "0.0" }, "instruct": { "pos": "v", "pol": "0.25", "std": "0.072" }, "instrumentalism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "insular": { "pos": "a", "pol": "0.25", "std": "0.217" }, "insulin shock therapy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "insulin shock treatment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "insurable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "insurable interest": { "pos": "n", "pol": "0.25", "std": "0.0" }, "integrality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "integrated logistic support": { "pos": "n", "pol": "0.25", "std": "0.0" }, "integration": { "pos": "n", "pol": "0.25", "std": "0.217" }, "intellectually": { "pos": "r", "pol": "0.25", "std": "0.0" }, "intelligentsia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "intelligibility": { "pos": "n", "pol": "0.25", "std": "0.0" }, "intemperately": { "pos": "r", "pol": "0.25", "std": "0.0" }, "intensified": { "pos": "a", "pol": "0.25", "std": "0.0" }, "intensifying": { "pos": "a", "pol": "0.25", "std": "0.0" }, "intensive care": { "pos": "n", "pol": "0.25", "std": "0.0" }, "intentionally": { "pos": "r", "pol": "0.25", "std": "0.0" }, "intercalary": { "pos": "a", "pol": "0.25", "std": "0.0" }, "intercept": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "intercontinental ballistic missile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "interdependent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "interdisciplinary": { "pos": "a", "pol": "0.25", "std": "0.0" }, "interestedness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "intermarriage": { "pos": "n", "pol": "0.25", "std": "0.088" }, "interminable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "intern": { "pos": "n", "pol": "0.25", "std": "0.0" }, "internal": { "pos": "a", "pol": "0.25", "std": "0.177" }, "internal control": { "pos": "n", "pol": "0.25", "std": "0.0" }, "internal representation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "international logistic support": { "pos": "n", "pol": "0.25", "std": "0.0" }, "interne": { "pos": "n", "pol": "0.25", "std": "0.0" }, "interocular lens implant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "interpretative dance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "interpretative dancing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "interpretive dance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "interpretive dancing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "interrelate": { "pos": "v", "pol": "0.25", "std": "0.177" }, "interrogative sentence": { "pos": "n", "pol": "0.25", "std": "0.0" }, "interrogatory": { "pos": "n", "pol": "0.25", "std": "0.0" }, "intersect": { "pos": "v", "pol": "0.25", "std": "0.0" }, "intersection point": { "pos": "n", "pol": "0.25", "std": "0.0" }, "intestinal artery": { "pos": "n", "pol": "0.25", "std": "0.0" }, "intoxicating": { "pos": "a", "pol": "0.25", "std": "0.265" }, "intra vires": { "pos": "a", "pol": "0.25", "std": "0.0" }, "intrinsically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "introspect": { "pos": "v", "pol": "0.25", "std": "0.0" }, "introvert": { "pos": "n", "pol": "0.25", "std": "0.0" }, "intrust": { "pos": "v", "pol": "0.25", "std": "0.0" }, "intuit": { "pos": "v", "pol": "0.25", "std": "0.0" }, "intuitionism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inunct": { "pos": "v", "pol": "0.25", "std": "0.0" }, "inunction": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inundated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inure": { "pos": "v", "pol": "0.25", "std": "0.0" }, "inventory": { "pos": "v", "pol": "0.25", "std": "0.0" }, "invitational": { "pos": "a", "pol": "0.25", "std": "0.0" }, "involutional depression": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inward": { "pos": "a", "pol": "0.25", "std": "0.265" }, "inwardly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "iodise": { "pos": "v", "pol": "0.25", "std": "0.088" }, "iodize": { "pos": "v", "pol": "0.25", "std": "0.088" }, "iodochlorhydroxyquin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ionic bond": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ionophoresis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ionosphere": { "pos": "n", "pol": "0.25", "std": "0.0" }, "iris scanning": { "pos": "n", "pol": "0.25", "std": "0.0" }, "iron": { "pos": "a", "pol": "0.25", "std": "0.0" }, "iron man": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ironlike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ironman": { "pos": "n", "pol": "0.25", "std": "0.0" }, "irrational motive": { "pos": "n", "pol": "0.25", "std": "0.0" }, "irritative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "isocyclic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "isoniazid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "isosceles": { "pos": "a", "pol": "0.25", "std": "0.0" }, "isosmotic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "italic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "itsy-bitsy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "itty-bitty": { "pos": "a", "pol": "0.25", "std": "0.0" }, "jabber": { "pos": "v", "pol": "0.25", "std": "0.0" }, "jacks": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jade green": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jam-packed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "jammed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "jampan": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jauntiness": { "pos": "n", "pol": "0.25", "std": "0.088" }, "jawbone": { "pos": "v", "pol": "0.25", "std": "0.0" }, "jazz up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "jejunal artery": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jeu d'esprit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jibe": { "pos": "v", "pol": "0.25", "std": "0.354" }, "jiggered": { "pos": "a", "pol": "0.25", "std": "0.0" }, "jive": { "pos": "n", "pol": "0.25", "std": "0.0" }, "job-oriented terminal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jocosity": { "pos": "n", "pol": "0.25", "std": "0.088" }, "joint venture": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jollification": { "pos": "n", "pol": "0.25", "std": "0.0" }, "journeyman": { "pos": "n", "pol": "0.25", "std": "0.0" }, "judicial decision": { "pos": "n", "pol": "0.25", "std": "0.0" }, "juice up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "jump off": { "pos": "v", "pol": "0.25", "std": "0.0" }, "jump out": { "pos": "v", "pol": "0.25", "std": "0.0" }, "jump shot": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jumping up and down": { "pos": "n", "pol": "0.25", "std": "0.0" }, "junction transistor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "juniper berries": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jury-rigged": { "pos": "a", "pol": "0.25", "std": "0.0" }, "just about": { "pos": "r", "pol": "0.25", "std": "0.0" }, "justificative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "justificatory": { "pos": "a", "pol": "0.25", "std": "0.0" }, "juxtaposed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "kabbalist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kaleidoscopic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "kaleidoscopical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "karaoke": { "pos": "n", "pol": "0.25", "std": "0.0" }, "keen-eyed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "keep away": { "pos": "v", "pol": "0.25", "std": "0.0" }, "keep company": { "pos": "v", "pol": "0.25", "std": "0.0" }, "keratoplasty": { "pos": "n", "pol": "0.25", "std": "0.0" }, "keyed": { "pos": "a", "pol": "0.25", "std": "0.088" }, "kick about": { "pos": "v", "pol": "0.25", "std": "0.0" }, "kick turn": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kid glove": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kill oneself": { "pos": "v", "pol": "0.25", "std": "0.0" }, "killable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "kindliness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kindred": { "pos": "a", "pol": "0.25", "std": "0.177" }, "kite tail": { "pos": "n", "pol": "0.25", "std": "0.0" }, "klaxon": { "pos": "n", "pol": "0.25", "std": "0.0" }, "knife blade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "knitwork": { "pos": "n", "pol": "0.25", "std": "0.0" }, "knobbed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "know": { "pos": "n", "pol": "0.25", "std": "0.0" }, "knowledgeability": { "pos": "n", "pol": "0.25", "std": "0.0" }, "knowledgeableness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "knucklebones": { "pos": "n", "pol": "0.25", "std": "0.0" }, "koinonia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kotow": { "pos": "n", "pol": "0.25", "std": "0.0" }, "kowtow": { "pos": "n", "pol": "0.25", "std": "0.0" }, "la-di-da": { "pos": "a", "pol": "0.25", "std": "0.0" }, "labeled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "labelled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "labor movement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lacelike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lacrimal vein": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lacy": { "pos": "a", "pol": "0.25", "std": "0.088" }, "ladder": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ladylikeness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "laid": { "pos": "a", "pol": "0.25", "std": "0.0" }, "laid-back": { "pos": "a", "pol": "0.25", "std": "0.0" }, "laissez-faire": { "pos": "a", "pol": "0.25", "std": "0.0" }, "laity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lally": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lally column": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lambent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "laminar flow clean room": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lampoon": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lancelike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lanceolate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "landscape architecture": { "pos": "n", "pol": "0.25", "std": "0.0" }, "language barrier": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lanky": { "pos": "a", "pol": "0.25", "std": "0.088" }, "lantern-fly": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lantern fly": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lap of honour": { "pos": "n", "pol": "0.25", "std": "0.0" }, "last mentioned": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lateral": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lateral pass": { "pos": "n", "pol": "0.25", "std": "0.0" }, "laugher": { "pos": "n", "pol": "0.25", "std": "0.088" }, "laughingly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "laundry detergent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "law-abiding": { "pos": "a", "pol": "0.25", "std": "0.0" }, "law firm": { "pos": "n", "pol": "0.25", "std": "0.0" }, "law of averages": { "pos": "n", "pol": "0.25", "std": "0.0" }, "law of diminishing returns": { "pos": "n", "pol": "0.25", "std": "0.0" }, "law of motion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "law of the land": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lawcourt": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lawn tennis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lay away": { "pos": "v", "pol": "0.25", "std": "0.0" }, "lay claim": { "pos": "v", "pol": "0.25", "std": "0.0" }, "laying on": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lazuline": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lbf.": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lead by the nose": { "pos": "v", "pol": "0.25", "std": "0.0" }, "leaded gasoline": { "pos": "n", "pol": "0.25", "std": "0.0" }, "leaded petrol": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lean against": { "pos": "v", "pol": "0.25", "std": "0.0" }, "lean on": { "pos": "v", "pol": "0.25", "std": "0.0" }, "learned profession": { "pos": "n", "pol": "0.25", "std": "0.0" }, "learning curve": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lease-lend": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lech after": { "pos": "v", "pol": "0.25", "std": "0.0" }, "lecherous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lectern": { "pos": "n", "pol": "0.25", "std": "0.0" }, "leechlike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "left-handedness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "left wing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "leftism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "leg-pull": { "pos": "n", "pol": "0.25", "std": "0.0" }, "leg-pulling": { "pos": "n", "pol": "0.25", "std": "0.0" }, "leg curl": { "pos": "n", "pol": "0.25", "std": "0.0" }, "leg curling": { "pos": "n", "pol": "0.25", "std": "0.0" }, "leg exercise": { "pos": "n", "pol": "0.25", "std": "0.0" }, "leg extensor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "legal fraud": { "pos": "n", "pol": "0.25", "std": "0.0" }, "legal residence": { "pos": "n", "pol": "0.25", "std": "0.0" }, "legalisation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "legalization": { "pos": "n", "pol": "0.25", "std": "0.0" }, "legato": { "pos": "a", "pol": "0.25", "std": "0.0" }, "legerdemain": { "pos": "n", "pol": "0.25", "std": "0.0" }, "legerity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "leggy": { "pos": "a", "pol": "0.25", "std": "0.088" }, "legislate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "lemonade mix": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lend-lease": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lender": { "pos": "n", "pol": "0.25", "std": "0.0" }, "length of service": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lenity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lens hood": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lens implant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lens of the eye": { "pos": "n", "pol": "0.25", "std": "0.0" }, "leresis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lesbian": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lexical meaning": { "pos": "n", "pol": "0.25", "std": "0.0" }, "liberalism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "liberalistic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "liberator": { "pos": "n", "pol": "0.25", "std": "0.0" }, "libertarianism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "library science": { "pos": "n", "pol": "0.25", "std": "0.0" }, "licence": { "pos": "v", "pol": "0.25", "std": "0.0" }, "license": { "pos": "v", "pol": "0.25", "std": "0.0" }, "licitness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lido deck": { "pos": "n", "pol": "0.25", "std": "0.0" }, "liege subject": { "pos": "n", "pol": "0.25", "std": "0.0" }, "liegeman": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lieu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "life-size": { "pos": "a", "pol": "0.25", "std": "0.0" }, "life-sized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "life force": { "pos": "n", "pol": "0.25", "std": "0.0" }, "life tenant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lifelong": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lifesize": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lifework": { "pos": "n", "pol": "0.25", "std": "0.0" }, "light-boned": { "pos": "a", "pol": "0.25", "std": "0.0" }, "light-colored": { "pos": "a", "pol": "0.25", "std": "0.0" }, "light meter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "light time": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lighting-up": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lightly armored": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lightly armoured": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lightning bug": { "pos": "n", "pol": "0.25", "std": "0.0" }, "like clockwork": { "pos": "r", "pol": "0.25", "std": "0.0" }, "likelihood": { "pos": "n", "pol": "0.25", "std": "0.0" }, "likeliness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lilac-blue": { "pos": "a", "pol": "0.25", "std": "0.0" }, "limited audit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "limited liability": { "pos": "n", "pol": "0.25", "std": "0.0" }, "limnology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "limpidity": { "pos": "n", "pol": "0.25", "std": "0.265" }, "limpidly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "lindy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lindy hop": { "pos": "n", "pol": "0.25", "std": "0.0" }, "line-drive single": { "pos": "n", "pol": "0.25", "std": "0.0" }, "line drive": { "pos": "n", "pol": "0.25", "std": "0.0" }, "line of merchandise": { "pos": "n", "pol": "0.25", "std": "0.0" }, "line of products": { "pos": "n", "pol": "0.25", "std": "0.0" }, "line single": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lingually": { "pos": "r", "pol": "0.25", "std": "0.0" }, "linguistic atlas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "linguistically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "linoleum cutter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "linoleum knife": { "pos": "n", "pol": "0.25", "std": "0.0" }, "linstock": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lionise": { "pos": "v", "pol": "0.25", "std": "0.0" }, "lionize": { "pos": "v", "pol": "0.25", "std": "0.0" }, "liposomal delivery vector": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lipped": { "pos": "a", "pol": "0.25", "std": "0.0" }, "liquefiable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "liquescent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "liquifiable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "listed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "literary composition": { "pos": "n", "pol": "0.25", "std": "0.0" }, "literary genre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "literary study": { "pos": "n", "pol": "0.25", "std": "0.0" }, "literary work": { "pos": "n", "pol": "0.25", "std": "0.0" }, "litotes": { "pos": "n", "pol": "0.25", "std": "0.0" }, "little auk": { "pos": "n", "pol": "0.25", "std": "0.0" }, "little slam": { "pos": "n", "pol": "0.25", "std": "0.0" }, "live-bearer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "live birth": { "pos": "n", "pol": "0.25", "std": "0.0" }, "livestock": { "pos": "n", "pol": "0.25", "std": "0.0" }, "living quarters": { "pos": "n", "pol": "0.25", "std": "0.0" }, "llano": { "pos": "n", "pol": "0.25", "std": "0.0" }, "local option": { "pos": "n", "pol": "0.25", "std": "0.0" }, "locale": { "pos": "n", "pol": "0.25", "std": "0.0" }, "localised": { "pos": "a", "pol": "0.25", "std": "0.0" }, "localized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "located": { "pos": "a", "pol": "0.25", "std": "0.0" }, "locomote": { "pos": "v", "pol": "0.25", "std": "0.0" }, "lodge in": { "pos": "v", "pol": "0.25", "std": "0.0" }, "loggerhead turtle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "logical positivism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "logically": { "pos": "r", "pol": "0.25", "std": "0.088" }, "long-acting": { "pos": "a", "pol": "0.25", "std": "0.0" }, "long-faced": { "pos": "a", "pol": "0.25", "std": "0.0" }, "long-legged": { "pos": "a", "pol": "0.25", "std": "0.0" }, "long-shanked": { "pos": "a", "pol": "0.25", "std": "0.0" }, "long-staple": { "pos": "a", "pol": "0.25", "std": "0.0" }, "long-tailed weasel": { "pos": "n", "pol": "0.25", "std": "0.0" }, "long-wearing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "long-winded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "long-wool": { "pos": "a", "pol": "0.25", "std": "0.0" }, "long-wooled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "longanimity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "longitude": { "pos": "n", "pol": "0.25", "std": "0.0" }, "longsighted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "longstanding": { "pos": "a", "pol": "0.25", "std": "0.0" }, "longtail weasel": { "pos": "n", "pol": "0.25", "std": "0.0" }, "longtime": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lop-eared": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lossless": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lounge chair": { "pos": "n", "pol": "0.25", "std": "0.0" }, "love match": { "pos": "n", "pol": "0.25", "std": "0.0" }, "loved one": { "pos": "n", "pol": "0.25", "std": "0.0" }, "low-altitude": { "pos": "a", "pol": "0.25", "std": "0.0" }, "loyally": { "pos": "r", "pol": "0.25", "std": "0.0" }, "lucent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lucidity": { "pos": "n", "pol": "0.25", "std": "0.265" }, "lucidly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "luck out": { "pos": "v", "pol": "0.25", "std": "0.0" }, "lucubrate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "luging": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lulu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "luminance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "luminesce": { "pos": "v", "pol": "0.25", "std": "0.0" }, "luminescent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "luminosity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "luminous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "luminousness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lunar day": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lurking place": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lust after": { "pos": "v", "pol": "0.25", "std": "0.0" }, "luxuriation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "luxuriousness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lycanthropy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lynx-eyed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lyophilised": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lyophilized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "machine readable dictionary": { "pos": "n", "pol": "0.25", "std": "0.0" }, "machmeter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "macho-man": { "pos": "n", "pol": "0.25", "std": "0.0" }, "macrobiotics": { "pos": "n", "pol": "0.25", "std": "0.0" }, "macron": { "pos": "n", "pol": "0.25", "std": "0.0" }, "macroscopic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "macroscopical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "made-up": { "pos": "a", "pol": "0.25", "std": "0.0" }, "madras": { "pos": "n", "pol": "0.25", "std": "0.0" }, "magic trick": { "pos": "n", "pol": "0.25", "std": "0.0" }, "maglev": { "pos": "n", "pol": "0.25", "std": "0.0" }, "magnanimity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "magnetic levitation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "magnificently": { "pos": "r", "pol": "0.25", "std": "0.088" }, "mahlstick": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mahogany-red": { "pos": "a", "pol": "0.25", "std": "0.0" }, "maiden": { "pos": "a", "pol": "0.25", "std": "0.0" }, "maiden flight": { "pos": "n", "pol": "0.25", "std": "0.0" }, "maidenliness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mail-cheeked": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mail-clad": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mail call": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mailed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "main clause": { "pos": "n", "pol": "0.25", "std": "0.0" }, "maitre d'": { "pos": "n", "pol": "0.25", "std": "0.0" }, "maitre d'hotel": { "pos": "n", "pol": "0.25", "std": "0.0" }, "major": { "pos": "v", "pol": "0.25", "std": "0.0" }, "major-league club": { "pos": "n", "pol": "0.25", "std": "0.0" }, "major-league team": { "pos": "n", "pol": "0.25", "std": "0.0" }, "major key": { "pos": "n", "pol": "0.25", "std": "0.0" }, "major mode": { "pos": "n", "pol": "0.25", "std": "0.0" }, "major tranquilizer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "major tranquilliser": { "pos": "n", "pol": "0.25", "std": "0.0" }, "major tranquillizer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "majuscular": { "pos": "a", "pol": "0.25", "std": "0.0" }, "majuscule": { "pos": "n", "pol": "0.25", "std": "0.0" }, "make-do": { "pos": "n", "pol": "0.25", "std": "0.0" }, "make-work": { "pos": "n", "pol": "0.25", "std": "0.0" }, "make it": { "pos": "v", "pol": "0.25", "std": "0.072" }, "make peace": { "pos": "v", "pol": "0.25", "std": "0.0" }, "make sense": { "pos": "v", "pol": "0.25", "std": "0.0" }, "makeshift": { "pos": "n", "pol": "0.25", "std": "0.0" }, "maladaptive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "maladjustive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "male chauvinist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "malvasia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mammalogist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "man-portable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "manacle": { "pos": "v", "pol": "0.25", "std": "0.0" }, "managed economy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "management consultant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "management consulting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "manager": { "pos": "n", "pol": "0.25", "std": "0.0" }, "managing director": { "pos": "n", "pol": "0.25", "std": "0.0" }, "manfulness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "manic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "manipulability": { "pos": "n", "pol": "0.25", "std": "0.0" }, "manipulation": { "pos": "n", "pol": "0.25", "std": "0.088" }, "manlike": { "pos": "a", "pol": "0.25", "std": "0.191" }, "manliness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "manna from heaven": { "pos": "n", "pol": "0.25", "std": "0.354" }, "mansion house": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mantis prawn": { "pos": "n", "pol": "0.25", "std": "0.0" }, "manual dexterity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "manus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marauding": { "pos": "a", "pol": "0.25", "std": "0.0" }, "marbleisation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marbleising": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marbleization": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marbleizing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marcel": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marginality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "market capitalisation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "market capitalization": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marooned": { "pos": "a", "pol": "0.25", "std": "0.0" }, "marque": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marriage contract": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marriage offer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marriage proposal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marriage settlement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marry": { "pos": "v", "pol": "0.25", "std": "0.0" }, "martial music": { "pos": "n", "pol": "0.25", "std": "0.0" }, "martinet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marvellously": { "pos": "r", "pol": "0.25", "std": "0.0" }, "marvelously": { "pos": "r", "pol": "0.25", "std": "0.0" }, "masculinity": { "pos": "n", "pol": "0.25", "std": "0.177" }, "masochist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mass": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mass meeting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "massage": { "pos": "v", "pol": "0.25", "std": "0.177" }, "master class": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mastership": { "pos": "n", "pol": "0.25", "std": "0.354" }, "mastoidale": { "pos": "n", "pol": "0.25", "std": "0.0" }, "masturbation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "match plane": { "pos": "n", "pol": "0.25", "std": "0.0" }, "matchboard": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mateless": { "pos": "a", "pol": "0.25", "std": "0.0" }, "materiality": { "pos": "n", "pol": "0.25", "std": "0.088" }, "maternal quality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mates": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mathematical space": { "pos": "n", "pol": "0.25", "std": "0.0" }, "matinee": { "pos": "n", "pol": "0.25", "std": "0.0" }, "matrilineal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "matrilinear": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mattock": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mattress cover": { "pos": "n", "pol": "0.25", "std": "0.0" }, "maulers": { "pos": "n", "pol": "0.25", "std": "0.0" }, "maulstick": { "pos": "n", "pol": "0.25", "std": "0.0" }, "maverick": { "pos": "a", "pol": "0.25", "std": "0.0" }, "maximally": { "pos": "r", "pol": "0.25", "std": "0.0" }, "maximising": { "pos": "a", "pol": "0.25", "std": "0.0" }, "maximization": { "pos": "n", "pol": "0.25", "std": "0.177" }, "maximizing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "meadow grass": { "pos": "n", "pol": "0.25", "std": "0.0" }, "meadowgrass": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mean solar day": { "pos": "n", "pol": "0.25", "std": "0.0" }, "meandering": { "pos": "a", "pol": "0.25", "std": "0.0" }, "meaningfulness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "means test": { "pos": "n", "pol": "0.25", "std": "0.0" }, "measurably": { "pos": "r", "pol": "0.25", "std": "0.0" }, "meat hooks": { "pos": "n", "pol": "0.25", "std": "0.0" }, "meat safe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "meaty": { "pos": "a", "pol": "0.25", "std": "0.265" }, "meclofenamate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "meclofenamate sodium": { "pos": "n", "pol": "0.25", "std": "0.0" }, "median": { "pos": "n", "pol": "0.25", "std": "0.0" }, "median value": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mediate": { "pos": "a", "pol": "0.25", "std": "0.177" }, "medical intern": { "pos": "n", "pol": "0.25", "std": "0.0" }, "medical school": { "pos": "n", "pol": "0.25", "std": "0.0" }, "medical science": { "pos": "n", "pol": "0.25", "std": "0.0" }, "medicate": { "pos": "v", "pol": "0.25", "std": "0.177" }, "medicine ball": { "pos": "n", "pol": "0.25", "std": "0.0" }, "meditativeness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "medium-large": { "pos": "a", "pol": "0.25", "std": "0.0" }, "medium-size": { "pos": "a", "pol": "0.25", "std": "0.0" }, "medium-sized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "meetinghouse": { "pos": "n", "pol": "0.25", "std": "0.0" }, "meliorative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "meliorism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "meliorist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mellow out": { "pos": "v", "pol": "0.25", "std": "0.0" }, "melodic line": { "pos": "n", "pol": "0.25", "std": "0.0" }, "melodic phrase": { "pos": "n", "pol": "0.25", "std": "0.0" }, "melodically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "melodise": { "pos": "v", "pol": "0.25", "std": "0.0" }, "melodize": { "pos": "v", "pol": "0.25", "std": "0.0" }, "melody": { "pos": "n", "pol": "0.25", "std": "0.0" }, "melon ball": { "pos": "n", "pol": "0.25", "std": "0.0" }, "meltable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "melted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "melting": { "pos": "a", "pol": "0.25", "std": "0.0" }, "membrane-forming": { "pos": "a", "pol": "0.25", "std": "0.0" }, "memorabilia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "memory chip": { "pos": "n", "pol": "0.25", "std": "0.0" }, "menage a trois": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mend": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mental dexterity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mental representation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mental synthesis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mental test": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mental testing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mentally retarded": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mepacrine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mercantile establishment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mercenary": { "pos": "a", "pol": "0.25", "std": "0.0" }, "merchandising": { "pos": "n", "pol": "0.25", "std": "0.0" }, "meringue": { "pos": "n", "pol": "0.25", "std": "0.0" }, "meritoriousness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "merrymaking": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mesne lord": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mesophyron": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mesophytic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "metabolous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "metacarpus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metaknowledge": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metaphoric": { "pos": "a", "pol": "0.25", "std": "0.0" }, "metaphorical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "metaphysics": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metastable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "methanogen": { "pos": "n", "pol": "0.25", "std": "0.0" }, "methenamine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "method acting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "methodological analysis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "methotrexate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "methotrexate sodium": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metonymic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "metonymical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "metonymy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metopion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metrazol shock": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metrazol shock therapy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metrazol shock treatment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metrically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "metronome": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mew": { "pos": "n", "pol": "0.25", "std": "0.177" }, "mexiletine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mezuza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mezuzah": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mezzo-relievo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mezzo-rilievo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "miasmal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "microphotometer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "middlemost": { "pos": "a", "pol": "0.25", "std": "0.0" }, "midget": { "pos": "a", "pol": "0.25", "std": "0.0" }, "midmost": { "pos": "a", "pol": "0.25", "std": "0.0" }, "midsummer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "might": { "pos": "n", "pol": "0.25", "std": "0.0" }, "might-have-been": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mightily": { "pos": "r", "pol": "0.25", "std": "0.088" }, "mightiness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "militarisation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "militarization": { "pos": "n", "pol": "0.25", "std": "0.0" }, "military march": { "pos": "n", "pol": "0.25", "std": "0.0" }, "military music": { "pos": "n", "pol": "0.25", "std": "0.0" }, "military position": { "pos": "n", "pol": "0.25", "std": "0.0" }, "military science": { "pos": "n", "pol": "0.25", "std": "0.0" }, "military volunteer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "milldam": { "pos": "n", "pol": "0.25", "std": "0.0" }, "millennium": { "pos": "n", "pol": "0.25", "std": "0.217" }, "mind-altering": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mind-bending": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mind-expanding": { "pos": "a", "pol": "0.25", "std": "0.0" }, "minded": { "pos": "a", "pol": "0.25", "std": "0.088" }, "mined": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mineral resources": { "pos": "n", "pol": "0.25", "std": "0.0" }, "miniature": { "pos": "a", "pol": "0.25", "std": "0.0" }, "minimally invasive coronary bypass surgery": { "pos": "n", "pol": "0.25", "std": "0.0" }, "minimum": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "miniscule": { "pos": "a", "pol": "0.25", "std": "0.0" }, "minister of religion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "minor surgery": { "pos": "n", "pol": "0.25", "std": "0.0" }, "miotic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "misalliance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "misbehave": { "pos": "v", "pol": "0.25", "std": "0.0" }, "misdemean": { "pos": "v", "pol": "0.25", "std": "0.0" }, "misfeasance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "missile defence system": { "pos": "n", "pol": "0.25", "std": "0.0" }, "missile defense system": { "pos": "n", "pol": "0.25", "std": "0.0" }, "missional": { "pos": "a", "pol": "0.25", "std": "0.0" }, "missionary": { "pos": "a", "pol": "0.25", "std": "0.0" }, "missionary position": { "pos": "n", "pol": "0.25", "std": "0.0" }, "missionary post": { "pos": "n", "pol": "0.25", "std": "0.0" }, "missionary station": { "pos": "n", "pol": "0.25", "std": "0.0" }, "missionary work": { "pos": "n", "pol": "0.25", "std": "0.0" }, "misty": { "pos": "a", "pol": "0.25", "std": "0.177" }, "misty-eyed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "misunderstood": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mithramycin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mnemonic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mob": { "pos": "v", "pol": "0.25", "std": "0.0" }, "mobility": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mock-up": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mod": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moderate": { "pos": "a", "pol": "0.25", "std": "0.072" }, "moderate-size": { "pos": "a", "pol": "0.25", "std": "0.0" }, "moderate-sized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "moderatism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "moderato": { "pos": "a", "pol": "0.25", "std": "0.0" }, "modern font": { "pos": "n", "pol": "0.25", "std": "0.0" }, "moderne": { "pos": "a", "pol": "0.25", "std": "0.0" }, "modernistic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "modishness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "moisturise": { "pos": "v", "pol": "0.25", "std": "0.0" }, "moisturize": { "pos": "v", "pol": "0.25", "std": "0.0" }, "molal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "molded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "monarchic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "monastic order": { "pos": "n", "pol": "0.25", "std": "0.0" }, "monestrous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "monitoring": { "pos": "n", "pol": "0.25", "std": "0.0" }, "monoamine neurotransmitter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "monocled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "monoestrous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "monogenic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "monosyllabic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "monotheism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "monthlong": { "pos": "a", "pol": "0.25", "std": "0.0" }, "moot": { "pos": "n", "pol": "0.25", "std": "0.0" }, "moot court": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mop handle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mop up": { "pos": "n", "pol": "0.25", "std": "0.0" }, "moral certainty": { "pos": "n", "pol": "0.25", "std": "0.0" }, "moral philosophy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "morale builder": { "pos": "n", "pol": "0.25", "std": "0.0" }, "morality": { "pos": "n", "pol": "0.25", "std": "0.265" }, "morganatic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "morganite": { "pos": "n", "pol": "0.25", "std": "0.0" }, "morphologically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "mortgage-backed security": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mot": { "pos": "n", "pol": "0.25", "std": "0.0" }, "motet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "motherliness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "motion-picture show": { "pos": "n", "pol": "0.25", "std": "0.0" }, "motion picture": { "pos": "n", "pol": "0.25", "std": "0.0" }, "motivate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "motive": { "pos": "a", "pol": "0.25", "std": "0.088" }, "motive power": { "pos": "n", "pol": "0.25", "std": "0.0" }, "motivity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "motor-assisted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "motorial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "motorway": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mouse-eared": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mouse-sized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mouse button": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mouser": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mouth off": { "pos": "v", "pol": "0.25", "std": "0.0" }, "movability": { "pos": "n", "pol": "0.25", "std": "0.0" }, "movable feast": { "pos": "n", "pol": "0.25", "std": "0.0" }, "movableness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "move up": { "pos": "v", "pol": "0.25", "std": "0.354" }, "moveable feast": { "pos": "n", "pol": "0.25", "std": "0.0" }, "movie": { "pos": "n", "pol": "0.25", "std": "0.0" }, "moving-picture show": { "pos": "n", "pol": "0.25", "std": "0.0" }, "moving picture": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mugginess": { "pos": "n", "pol": "0.25", "std": "0.0" }, "multi-ethnic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "multibank holding company": { "pos": "n", "pol": "0.25", "std": "0.0" }, "multidimensional": { "pos": "a", "pol": "0.25", "std": "0.0" }, "multiethnic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "multiplied": { "pos": "a", "pol": "0.25", "std": "0.0" }, "multipurpose": { "pos": "a", "pol": "0.25", "std": "0.0" }, "multiracial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "multitudinous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mum": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mundaneness": { "pos": "n", "pol": "0.25", "std": "0.088" }, "mundanity": { "pos": "n", "pol": "0.25", "std": "0.088" }, "munificence": { "pos": "n", "pol": "0.25", "std": "0.0" }, "munificent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "muscular": { "pos": "a", "pol": "0.25", "std": "0.237" }, "muscularity": { "pos": "n", "pol": "0.25", "std": "0.125" }, "musculus temporalis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "muser": { "pos": "n", "pol": "0.25", "std": "0.0" }, "musical drama": { "pos": "n", "pol": "0.25", "std": "0.0" }, "musical note": { "pos": "n", "pol": "0.25", "std": "0.0" }, "musicianship": { "pos": "n", "pol": "0.25", "std": "0.0" }, "muster call": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mutable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mutafacient": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mutagenic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mutant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mute": { "pos": "v", "pol": "0.25", "std": "0.0" }, "mutual": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mutual aid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mutualist": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mutually beneficial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mydriatic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mydriatic drug": { "pos": "n", "pol": "0.25", "std": "0.0" }, "myofibril": { "pos": "n", "pol": "0.25", "std": "0.0" }, "myofibrilla": { "pos": "n", "pol": "0.25", "std": "0.0" }, "myotic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "myriad": { "pos": "a", "pol": "0.25", "std": "0.0" }, "myringa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mystic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mystique": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mythical place": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mythologist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nail-biting": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nailbrush": { "pos": "n", "pol": "0.25", "std": "0.0" }, "naked option": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nakedness": { "pos": "n", "pol": "0.25", "std": "0.315" }, "nalidixic acid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "naltrexone": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nankeen": { "pos": "n", "pol": "0.25", "std": "0.0" }, "napped": { "pos": "a", "pol": "0.25", "std": "0.0" }, "naprapathy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "narcotised": { "pos": "a", "pol": "0.25", "std": "0.0" }, "narcotising": { "pos": "a", "pol": "0.25", "std": "0.0" }, "narcotized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "narcotizing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "narrate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "narrow gauge": { "pos": "n", "pol": "0.25", "std": "0.0" }, "narrowing": { "pos": "a", "pol": "0.25", "std": "0.088" }, "nasal canthus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nascence": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nascency": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nasion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "national monument": { "pos": "n", "pol": "0.25", "std": "0.0" }, "national service": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nativity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "natter": { "pos": "v", "pol": "0.25", "std": "0.0" }, "natural endowment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "natural language": { "pos": "n", "pol": "0.25", "std": "0.0" }, "natural language processing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nature study": { "pos": "n", "pol": "0.25", "std": "0.0" }, "naturistic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "navigability": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ne plus ultra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "near-blind": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nearby": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "nearness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "neatness": { "pos": "n", "pol": "0.25", "std": "0.088" }, "nebuchadnezzar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "neck-deep": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nee": { "pos": "a", "pol": "0.25", "std": "0.0" }, "needfully": { "pos": "r", "pol": "0.25", "std": "0.0" }, "needlelike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "negative": { "pos": "n", "pol": "0.25", "std": "0.177" }, "negotiation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "negroid": { "pos": "a", "pol": "0.25", "std": "0.0" }, "neigh": { "pos": "v", "pol": "0.25", "std": "0.0" }, "neighbor": { "pos": "n", "pol": "0.25", "std": "0.177" }, "neighboring": { "pos": "a", "pol": "0.25", "std": "0.0" }, "neighbour": { "pos": "n", "pol": "0.25", "std": "0.177" }, "neo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "neoclassicism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "neostigmine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nestle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "netlike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "netted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "neurobiological": { "pos": "r", "pol": "0.25", "std": "0.0" }, "neuroethics": { "pos": "n", "pol": "0.25", "std": "0.0" }, "neuroleptic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "neuroleptic agent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "neuroleptic drug": { "pos": "n", "pol": "0.25", "std": "0.0" }, "never-never land": { "pos": "n", "pol": "0.25", "std": "0.0" }, "new criticism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "new town": { "pos": "n", "pol": "0.25", "std": "0.0" }, "newfound": { "pos": "a", "pol": "0.25", "std": "0.0" }, "news event": { "pos": "n", "pol": "0.25", "std": "0.0" }, "newsletter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "newssheet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nibbed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nicely": { "pos": "r", "pol": "0.25", "std": "0.0" }, "nickel note": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nicker": { "pos": "v", "pol": "0.25", "std": "0.0" }, "nickname": { "pos": "v", "pol": "0.25", "std": "0.0" }, "nilpotent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nimbleness": { "pos": "n", "pol": "0.25", "std": "0.088" }, "ninon": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nipping": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nitid": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nitrofurantoin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nitty-gritty": { "pos": "n", "pol": "0.25", "std": "0.0" }, "no-frills": { "pos": "a", "pol": "0.25", "std": "0.0" }, "noblesse oblige": { "pos": "n", "pol": "0.25", "std": "0.0" }, "noetic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nombril": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nomia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nominate": { "pos": "v", "pol": "0.25", "std": "0.102" }, "non-Catholic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "non-Christian priest": { "pos": "n", "pol": "0.25", "std": "0.0" }, "non-Euclidean geometry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "non-buoyant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "non-elective": { "pos": "a", "pol": "0.25", "std": "0.0" }, "non-poisonous": { "pos": "a", "pol": "0.25", "std": "0.088" }, "non-resinous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "non-resiny": { "pos": "a", "pol": "0.25", "std": "0.0" }, "non-resistant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nonappointive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "noncommissioned": { "pos": "a", "pol": "0.25", "std": "0.0" }, "noncompliant": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonelected": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nonelective": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nonglutinous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nonimmune": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nonkosher": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nonliteral": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nonmotile": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nonparasitic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nonpoisonous": { "pos": "a", "pol": "0.25", "std": "0.088" }, "nonresinous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nonresiny": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nonsegregated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nonsymbiotic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nonuniformity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nonverbal intelligence": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nonviscid": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nonworker": { "pos": "n", "pol": "0.25", "std": "0.0" }, "northern oriole": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nose job": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nosh": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nostalgia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nota bene": { "pos": "n", "pol": "0.25", "std": "0.0" }, "notational system": { "pos": "n", "pol": "0.25", "std": "0.0" }, "noticed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "notifiable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nourish": { "pos": "v", "pol": "0.25", "std": "0.177" }, "novation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nuclear chemistry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nuclear warhead": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nude painting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nude sculpture": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nude statue": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nuke": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "numberless": { "pos": "a", "pol": "0.25", "std": "0.0" }, "numbfish": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nurse-midwife": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nurtural": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nurturance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nurturant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nurture": { "pos": "v", "pol": "0.25", "std": "0.217" }, "nutritionist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nymphet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "obelion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "obiism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "object ball": { "pos": "n", "pol": "0.25", "std": "0.0" }, "objectiveness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "objectivity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oblate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oblateness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "obliger": { "pos": "n", "pol": "0.25", "std": "0.0" }, "obliterable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "observational": { "pos": "a", "pol": "0.25", "std": "0.0" }, "obstructive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "obtrusive": { "pos": "a", "pol": "0.25", "std": "0.354" }, "obviation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "occlusive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "occupation licence": { "pos": "n", "pol": "0.25", "std": "0.0" }, "occupation license": { "pos": "n", "pol": "0.25", "std": "0.0" }, "occupational group": { "pos": "n", "pol": "0.25", "std": "0.0" }, "occupational therapy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oceanic bird": { "pos": "n", "pol": "0.25", "std": "0.0" }, "octosyllabic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "oculus dexter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oculus sinister": { "pos": "n", "pol": "0.25", "std": "0.0" }, "odds-maker": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oenology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "of import": { "pos": "a", "pol": "0.25", "std": "0.0" }, "off-limits": { "pos": "a", "pol": "0.25", "std": "0.0" }, "off-the-peg": { "pos": "a", "pol": "0.25", "std": "0.0" }, "off-the-rack": { "pos": "a", "pol": "0.25", "std": "0.0" }, "off-the-shelf": { "pos": "a", "pol": "0.25", "std": "0.0" }, "off-the-shoulder": { "pos": "a", "pol": "0.25", "std": "0.0" }, "officialese": { "pos": "n", "pol": "0.25", "std": "0.0" }, "officially": { "pos": "r", "pol": "0.25", "std": "0.088" }, "offset printing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oil-bearing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "old-fashionedness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "old boy network": { "pos": "n", "pol": "0.25", "std": "0.0" }, "old hand": { "pos": "n", "pol": "0.25", "std": "0.0" }, "old stager": { "pos": "n", "pol": "0.25", "std": "0.0" }, "olden": { "pos": "a", "pol": "0.25", "std": "0.0" }, "oldie": { "pos": "n", "pol": "0.25", "std": "0.0" }, "olfaction": { "pos": "n", "pol": "0.25", "std": "0.0" }, "olfactory modality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "olive-brown": { "pos": "a", "pol": "0.25", "std": "0.0" }, "olive-drab": { "pos": "a", "pol": "0.25", "std": "0.0" }, "olive-sized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "omissive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ommastrephes": { "pos": "n", "pol": "0.25", "std": "0.0" }, "omnidirectional radio range": { "pos": "n", "pol": "0.25", "std": "0.0" }, "omnidirectional range": { "pos": "n", "pol": "0.25", "std": "0.0" }, "omnipresent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "omnirange": { "pos": "n", "pol": "0.25", "std": "0.0" }, "omniscience": { "pos": "n", "pol": "0.25", "std": "0.0" }, "omniscient": { "pos": "a", "pol": "0.25", "std": "0.0" }, "on-going": { "pos": "a", "pol": "0.25", "std": "0.0" }, "on-site": { "pos": "a", "pol": "0.25", "std": "0.0" }, "on a regular basis": { "pos": "r", "pol": "0.25", "std": "0.0" }, "on purpose": { "pos": "r", "pol": "0.25", "std": "0.0" }, "on request": { "pos": "r", "pol": "0.25", "std": "0.0" }, "on the job": { "pos": "a", "pol": "0.25", "std": "0.0" }, "on the road": { "pos": "n", "pol": "0.25", "std": "0.0" }, "on the table": { "pos": "a", "pol": "0.25", "std": "0.0" }, "on tour": { "pos": "n", "pol": "0.25", "std": "0.0" }, "one-off": { "pos": "n", "pol": "0.25", "std": "0.0" }, "one-winged": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ongoing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "onomasticon": { "pos": "n", "pol": "0.25", "std": "0.0" }, "onomatopoeic": { "pos": "a", "pol": "0.25", "std": "0.177" }, "onomatopoetic": { "pos": "a", "pol": "0.25", "std": "0.177" }, "onymous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "onyxis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "opalescent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "opaline": { "pos": "a", "pol": "0.25", "std": "0.0" }, "open-chain": { "pos": "a", "pol": "0.25", "std": "0.0" }, "open marriage": { "pos": "n", "pol": "0.25", "std": "0.0" }, "open sesame": { "pos": "n", "pol": "0.25", "std": "0.088" }, "open society": { "pos": "n", "pol": "0.25", "std": "0.0" }, "opencast mining": { "pos": "n", "pol": "0.25", "std": "0.0" }, "opened": { "pos": "a", "pol": "0.25", "std": "0.125" }, "openhandedness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "opening night": { "pos": "n", "pol": "0.25", "std": "0.0" }, "openside plane": { "pos": "n", "pol": "0.25", "std": "0.0" }, "opera bouffe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "opera comique": { "pos": "n", "pol": "0.25", "std": "0.0" }, "opera company": { "pos": "n", "pol": "0.25", "std": "0.0" }, "operating capability": { "pos": "n", "pol": "0.25", "std": "0.0" }, "operating microscope": { "pos": "n", "pol": "0.25", "std": "0.0" }, "operationally": { "pos": "r", "pol": "0.25", "std": "0.0" }, "operative field": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ophryon": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ophthalmic vein": { "pos": "n", "pol": "0.25", "std": "0.0" }, "opisthognathous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "oppugn": { "pos": "v", "pol": "0.25", "std": "0.0" }, "optical aberration": { "pos": "n", "pol": "0.25", "std": "0.0" }, "optical device": { "pos": "n", "pol": "0.25", "std": "0.0" }, "optical instrument": { "pos": "n", "pol": "0.25", "std": "0.0" }, "optical telescope": { "pos": "n", "pol": "0.25", "std": "0.0" }, "opulence": { "pos": "n", "pol": "0.25", "std": "0.0" }, "or so": { "pos": "r", "pol": "0.25", "std": "0.0" }, "oral personality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oral stage": { "pos": "n", "pol": "0.25", "std": "0.0" }, "orange-red": { "pos": "a", "pol": "0.25", "std": "0.0" }, "orange-sized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "orangish-red": { "pos": "a", "pol": "0.25", "std": "0.0" }, "oration": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oratorio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "order Charales": { "pos": "n", "pol": "0.25", "std": "0.0" }, "order Ganoidei": { "pos": "n", "pol": "0.25", "std": "0.0" }, "order Ostracodermi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "order Perciformes": { "pos": "n", "pol": "0.25", "std": "0.0" }, "order Percomorphi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "order Scorpionida": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ordered series": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ordinary": { "pos": "a", "pol": "0.25", "std": "0.088" }, "ordinary care": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ordination": { "pos": "n", "pol": "0.25", "std": "0.072" }, "orgasm": { "pos": "n", "pol": "0.25", "std": "0.0" }, "orientated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "oriented": { "pos": "a", "pol": "0.25", "std": "0.0" }, "orinasal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "orinasal phone": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ornamental": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ornamentalist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ornate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "orthostatic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "orthotropous ovule": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oscillating": { "pos": "a", "pol": "0.25", "std": "0.0" }, "oscillatory": { "pos": "a", "pol": "0.25", "std": "0.0" }, "osmotic pressure": { "pos": "n", "pol": "0.25", "std": "0.0" }, "osteologer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "osteologist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "osteopathy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ostler": { "pos": "n", "pol": "0.25", "std": "0.0" }, "out-of-body experience": { "pos": "n", "pol": "0.25", "std": "0.0" }, "out-of-door": { "pos": "a", "pol": "0.25", "std": "0.0" }, "out-of-the-box thinking": { "pos": "n", "pol": "0.25", "std": "0.0" }, "out of practice": { "pos": "a", "pol": "0.25", "std": "0.0" }, "out of whack": { "pos": "a", "pol": "0.25", "std": "0.0" }, "out to": { "pos": "a", "pol": "0.25", "std": "0.0" }, "outdoor man": { "pos": "n", "pol": "0.25", "std": "0.0" }, "outermost": { "pos": "a", "pol": "0.25", "std": "0.0" }, "outgo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "outgoing": { "pos": "a", "pol": "0.25", "std": "0.433" }, "outlying": { "pos": "a", "pol": "0.25", "std": "0.0" }, "outmost": { "pos": "a", "pol": "0.25", "std": "0.0" }, "output contract": { "pos": "n", "pol": "0.25", "std": "0.0" }, "outrigged": { "pos": "a", "pol": "0.25", "std": "0.0" }, "outshout": { "pos": "v", "pol": "0.25", "std": "0.0" }, "outsider": { "pos": "n", "pol": "0.25", "std": "0.354" }, "outsize": { "pos": "a", "pol": "0.25", "std": "0.0" }, "outsized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "outwork": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oval-fruited": { "pos": "a", "pol": "0.25", "std": "0.0" }, "over": { "pos": "a", "pol": "0.25", "std": "0.0" }, "over the counter security": { "pos": "n", "pol": "0.25", "std": "0.0" }, "overachieve": { "pos": "v", "pol": "0.25", "std": "0.0" }, "overconfidence": { "pos": "n", "pol": "0.25", "std": "0.0" }, "overcritical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "overcrossing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "overdelicate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "overeating": { "pos": "n", "pol": "0.25", "std": "0.0" }, "overexert oneself": { "pos": "v", "pol": "0.25", "std": "0.0" }, "overexposure": { "pos": "n", "pol": "0.25", "std": "0.0" }, "overflow": { "pos": "n", "pol": "0.25", "std": "0.0" }, "overflowing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "overgenerous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "overhand": { "pos": "a", "pol": "0.25", "std": "0.177" }, "overheated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "overlooking": { "pos": "a", "pol": "0.25", "std": "0.0" }, "overlying": { "pos": "a", "pol": "0.25", "std": "0.0" }, "overmuchness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oversexed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "oversize": { "pos": "a", "pol": "0.25", "std": "0.0" }, "oversized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "overstuffed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "overstuffed chair": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oversupply": { "pos": "v", "pol": "0.25", "std": "0.0" }, "overvalue": { "pos": "v", "pol": "0.25", "std": "0.0" }, "overzealous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "oxidized LDL cholesterol": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oxyphenbutazone": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pacification": { "pos": "n", "pol": "0.25", "std": "0.072" }, "packable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "padding": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paediatrician": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pagoda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paid-up": { "pos": "a", "pol": "0.25", "std": "0.0" }, "paint the lily": { "pos": "v", "pol": "0.25", "std": "0.0" }, "paintball gun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pal": { "pos": "v", "pol": "0.25", "std": "0.0" }, "pal up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "palaeoanthropology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "palatopharyngoplasty": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paleoanthropological": { "pos": "a", "pol": "0.25", "std": "0.0" }, "paleoanthropology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "palmately-lobed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "palpability": { "pos": "n", "pol": "0.25", "std": "0.0" }, "palpable": { "pos": "a", "pol": "0.25", "std": "0.088" }, "palpebra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pampering": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pancreatic vein": { "pos": "n", "pol": "0.25", "std": "0.0" }, "panel discussion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "panoramic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pantryman": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paper doll": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paracentral scotoma": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paradiddle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "parallel circuit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paramagnet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paramedic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paramedical": { "pos": "n", "pol": "0.25", "std": "0.0" }, "parang": { "pos": "n", "pol": "0.25", "std": "0.0" }, "parcel post": { "pos": "n", "pol": "0.25", "std": "0.0" }, "parceling": { "pos": "n", "pol": "0.25", "std": "0.0" }, "parcelling": { "pos": "n", "pol": "0.25", "std": "0.0" }, "parented": { "pos": "a", "pol": "0.25", "std": "0.0" }, "parimutuel": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paripinnate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "parlance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "parochial school": { "pos": "n", "pol": "0.25", "std": "0.0" }, "parody": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paronomasia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paroxetime": { "pos": "n", "pol": "0.25", "std": "0.0" }, "parrotlike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "parson": { "pos": "n", "pol": "0.25", "std": "0.0" }, "part-time": { "pos": "r", "pol": "0.25", "std": "0.0" }, "part with": { "pos": "v", "pol": "0.25", "std": "0.0" }, "participate": { "pos": "v", "pol": "0.25", "std": "0.177" }, "partnership certificate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "party game": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pasquinade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "passado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "passbook": { "pos": "n", "pol": "0.25", "std": "0.0" }, "passive resister": { "pos": "n", "pol": "0.25", "std": "0.0" }, "past participle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pastor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pat": { "pos": "a", "pol": "0.25", "std": "0.265" }, "patent ductus arteriosus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "patented": { "pos": "a", "pol": "0.25", "std": "0.0" }, "paternal quality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paternity test": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pathologically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "patrilineal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "patrilinear": { "pos": "a", "pol": "0.25", "std": "0.0" }, "patrimonial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "patriotically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "patrol": { "pos": "v", "pol": "0.25", "std": "0.0" }, "patronage": { "pos": "v", "pol": "0.25", "std": "0.177" }, "patronised": { "pos": "a", "pol": "0.25", "std": "0.0" }, "patronized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "patsy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paunchy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pave": { "pos": "v", "pol": "0.25", "std": "0.0" }, "pawn ticket": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pawnbroker": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pawnbroker's shop": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pawnshop": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pay heed": { "pos": "v", "pol": "0.25", "std": "0.0" }, "pay up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "paymaster": { "pos": "n", "pol": "0.25", "std": "0.0" }, "payola": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pea-green": { "pos": "a", "pol": "0.25", "std": "0.0" }, "peace initiative": { "pos": "n", "pol": "0.25", "std": "0.0" }, "peace pipe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "peace treaty": { "pos": "n", "pol": "0.25", "std": "0.0" }, "peacock-blue": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pearlescent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "peasanthood": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pectoral girdle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pedagogics": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pedagogy": { "pos": "n", "pol": "0.25", "std": "0.125" }, "pedantic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pedestal": { "pos": "n", "pol": "0.25", "std": "0.072" }, "pedestrian bridge": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pediatrician": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pediatrist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pedicure": { "pos": "n", "pol": "0.25", "std": "0.0" }, "peek": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pelagic bird": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pellucidity": { "pos": "n", "pol": "0.25", "std": "0.265" }, "pellucidly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "pencil cedar": { "pos": "n", "pol": "0.25", "std": "0.177" }, "pencil sharpener": { "pos": "n", "pol": "0.25", "std": "0.0" }, "penetrability": { "pos": "n", "pol": "0.25", "std": "0.0" }, "penetrable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pension fund": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pentasyllabic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pep": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pep rally": { "pos": "n", "pol": "0.25", "std": "0.0" }, "peppiness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "per capita": { "pos": "a", "pol": "0.25", "std": "0.0" }, "per se": { "pos": "r", "pol": "0.25", "std": "0.0" }, "perceptual constancy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "perceptually": { "pos": "r", "pol": "0.25", "std": "0.0" }, "percussion instrument": { "pos": "n", "pol": "0.25", "std": "0.0" }, "percussive instrument": { "pos": "n", "pol": "0.25", "std": "0.0" }, "perdurability": { "pos": "n", "pol": "0.25", "std": "0.0" }, "perdurable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "perfect participle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "perfervid": { "pos": "a", "pol": "0.25", "std": "0.0" }, "perforate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "performance capability": { "pos": "n", "pol": "0.25", "std": "0.0" }, "periapsis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "perihelion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "periwigged": { "pos": "a", "pol": "0.25", "std": "0.0" }, "perpetrate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "persona grata": { "pos": "n", "pol": "0.25", "std": "0.0" }, "personal loan": { "pos": "n", "pol": "0.25", "std": "0.0" }, "personalise": { "pos": "v", "pol": "0.25", "std": "0.0" }, "personalised": { "pos": "a", "pol": "0.25", "std": "0.0" }, "personalize": { "pos": "v", "pol": "0.25", "std": "0.0" }, "perspicaciousness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "perspicuously": { "pos": "r", "pol": "0.25", "std": "0.0" }, "persuadable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "persuasible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "persuasiveness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "peruked": { "pos": "a", "pol": "0.25", "std": "0.0" }, "perviousness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pesantran": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pesantren": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pet sitter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pet sitting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "petite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "petitionary": { "pos": "a", "pol": "0.25", "std": "0.0" }, "petrol station": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phaeton": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phalarope": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phallic phase": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phallic stage": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phantasm": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phantasma": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phantom": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pharaoh's ant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pharaoh ant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pharmaceutic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pharmaceutical": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pharmacokinetics": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pharmacologically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "phasianid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phatic communication": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phatic speech": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phenomenology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "philosophical system": { "pos": "n", "pol": "0.25", "std": "0.0" }, "philosophizing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "philosophy": { "pos": "n", "pol": "0.25", "std": "0.072" }, "phonation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phone bill": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phone call": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phone company": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phone service": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phonemics": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phonetic transcription": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phonics": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phonograph needle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phonology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "photo finish": { "pos": "n", "pol": "0.25", "std": "0.0" }, "photochemistry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "photographic print": { "pos": "n", "pol": "0.25", "std": "0.0" }, "photometer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "photometry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "photosphere": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phraseology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phylogenetic relation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "physical": { "pos": "a", "pol": "0.25", "std": "0.173" }, "physical entity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "physician": { "pos": "n", "pol": "0.25", "std": "0.0" }, "physician-patient privilege": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pictographic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "picture show": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pictured": { "pos": "a", "pol": "0.25", "std": "0.088" }, "piece of cake": { "pos": "n", "pol": "0.25", "std": "0.0" }, "piecemeal": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "pierced": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pig-sized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pigeon-toed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "piggish": { "pos": "a", "pol": "0.25", "std": "0.0" }, "piggy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pilgrim's journey": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pilgrimage": { "pos": "n", "pol": "0.25", "std": "0.0" }, "piling": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pillar of strength": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pillow": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pinchbeck": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pineal eye": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ping-pong ball": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pink-red": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pink-tinged": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pint-size": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pint-sized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pipe of peace": { "pos": "n", "pol": "0.25", "std": "0.0" }, "piping crow": { "pos": "n", "pol": "0.25", "std": "0.0" }, "piping crow-shrike": { "pos": "n", "pol": "0.25", "std": "0.0" }, "piroxicam": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pistol grip": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pitch in": { "pos": "v", "pol": "0.25", "std": "0.0" }, "pitch pipe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pitprop": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pizzicato": { "pos": "r", "pol": "0.25", "std": "0.0" }, "place setting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "placed": { "pos": "a", "pol": "0.25", "std": "0.088" }, "placental": { "pos": "a", "pol": "0.25", "std": "0.0" }, "placer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "placer mining": { "pos": "n", "pol": "0.25", "std": "0.0" }, "plagiarised": { "pos": "a", "pol": "0.25", "std": "0.0" }, "plagiaristic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "plagiarized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "plain-woven": { "pos": "a", "pol": "0.25", "std": "0.0" }, "plain weave": { "pos": "n", "pol": "0.25", "std": "0.0" }, "planaria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "planarian": { "pos": "n", "pol": "0.25", "std": "0.0" }, "plane": { "pos": "a", "pol": "0.25", "std": "0.0" }, "plane ticket": { "pos": "n", "pol": "0.25", "std": "0.0" }, "plangent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "plankton": { "pos": "n", "pol": "0.25", "std": "0.0" }, "planned": { "pos": "a", "pol": "0.25", "std": "0.0" }, "plash": { "pos": "n", "pol": "0.25", "std": "0.0" }, "plat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "plausible": { "pos": "a", "pol": "0.25", "std": "0.177" }, "play down": { "pos": "v", "pol": "0.25", "std": "0.0" }, "play false": { "pos": "v", "pol": "0.25", "std": "0.0" }, "plaything": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pleading": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pleasant-tasting": { "pos": "a", "pol": "0.25", "std": "0.0" }, "plebeian": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pledge taker": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pleuropneumonialike organism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "plexus cardiacus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "plinth": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ploce": { "pos": "n", "pol": "0.25", "std": "0.0" }, "plumpness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "plushy": { "pos": "a", "pol": "0.25", "std": "0.442" }, "pocket comb": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pocketcomb": { "pos": "n", "pol": "0.25", "std": "0.0" }, "podiatrist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "podlike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "poeciliid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "poeciliid fish": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pogonion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "point of honor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "point of intersection": { "pos": "n", "pol": "0.25", "std": "0.0" }, "point of periapsis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pointed-toe": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pointedly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "pointedness": { "pos": "n", "pol": "0.25", "std": "0.088" }, "pointy-toed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "poison pill": { "pos": "n", "pol": "0.25", "std": "0.0" }, "poker-faced": { "pos": "a", "pol": "0.25", "std": "0.0" }, "poker hand": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pole position": { "pos": "n", "pol": "0.25", "std": "0.0" }, "polishing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "political correctitude": { "pos": "n", "pol": "0.25", "std": "0.0" }, "political correctness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "political detainee": { "pos": "n", "pol": "0.25", "std": "0.0" }, "political liberty": { "pos": "n", "pol": "0.25", "std": "0.0" }, "politically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "poltroon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "polyestrous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "polygenic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "polyoestrous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "polysyllabic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "polysyndeton": { "pos": "n", "pol": "0.25", "std": "0.0" }, "polyvalent": { "pos": "a", "pol": "0.25", "std": "0.088" }, "ponderer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pop tent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "popgun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "popover": { "pos": "n", "pol": "0.25", "std": "0.0" }, "popping": { "pos": "n", "pol": "0.25", "std": "0.0" }, "populariser": { "pos": "n", "pol": "0.25", "std": "0.0" }, "popularizer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "populism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "populist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "porker": { "pos": "n", "pol": "0.25", "std": "0.0" }, "porn merchant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pornographer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "portion out": { "pos": "v", "pol": "0.25", "std": "0.0" }, "positionable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "positioner": { "pos": "n", "pol": "0.25", "std": "0.0" }, "positively charged": { "pos": "a", "pol": "0.25", "std": "0.0" }, "possibleness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "postmodernism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "postoperative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pot-trained": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pot roast": { "pos": "n", "pol": "0.25", "std": "0.0" }, "potage St. Germain": { "pos": "n", "pol": "0.25", "std": "0.0" }, "potbellied": { "pos": "a", "pol": "0.25", "std": "0.0" }, "potential divider": { "pos": "n", "pol": "0.25", "std": "0.0" }, "potential unit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "potty-trained": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pouring": { "pos": "a", "pol": "0.25", "std": "0.0" }, "powder-puff": { "pos": "a", "pol": "0.25", "std": "0.0" }, "powder blue": { "pos": "a", "pol": "0.25", "std": "0.0" }, "powdered": { "pos": "a", "pol": "0.25", "std": "0.0" }, "powdery-blue": { "pos": "a", "pol": "0.25", "std": "0.0" }, "powerful": { "pos": "r", "pol": "0.25", "std": "0.0" }, "practical politics": { "pos": "n", "pol": "0.25", "std": "0.0" }, "practicality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "practice of medicine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prayer meeting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prayer service": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pre-emptive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "preachment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "precative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "precatory": { "pos": "a", "pol": "0.25", "std": "0.0" }, "preciosity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "preciously": { "pos": "r", "pol": "0.25", "std": "0.0" }, "preciousness": { "pos": "n", "pol": "0.25", "std": "0.072" }, "precipitating": { "pos": "a", "pol": "0.25", "std": "0.0" }, "precipitous": { "pos": "a", "pol": "0.25", "std": "0.088" }, "precisely": { "pos": "r", "pol": "0.25", "std": "0.25" }, "preclusion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "precocious": { "pos": "a", "pol": "0.25", "std": "0.265" }, "precognition": { "pos": "n", "pol": "0.25", "std": "0.0" }, "predestinate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "predestined": { "pos": "a", "pol": "0.25", "std": "0.0" }, "predictable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "predispose": { "pos": "v", "pol": "0.25", "std": "0.0" }, "prednisolone": { "pos": "n", "pol": "0.25", "std": "0.0" }, "preemptive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "preferably": { "pos": "r", "pol": "0.25", "std": "0.0" }, "prehensile": { "pos": "a", "pol": "0.25", "std": "0.125" }, "prejudgement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prejudgment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "preliminary": { "pos": "a", "pol": "0.25", "std": "0.0" }, "premise": { "pos": "n", "pol": "0.25", "std": "0.0" }, "premiss": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prenatal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "prentice": { "pos": "n", "pol": "0.25", "std": "0.0" }, "preoperative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "prepotency": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prescript": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prescriptivism": { "pos": "n", "pol": "0.25", "std": "0.177" }, "present": { "pos": "a", "pol": "0.25", "std": "0.0" }, "present-day": { "pos": "a", "pol": "0.25", "std": "0.0" }, "present perfect": { "pos": "n", "pol": "0.25", "std": "0.0" }, "present perfect tense": { "pos": "n", "pol": "0.25", "std": "0.0" }, "preservative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "press stud": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pressure": { "pos": "v", "pol": "0.25", "std": "0.0" }, "prettiness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "preventable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "prevention": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prewar": { "pos": "a", "pol": "0.25", "std": "0.0" }, "price-controlled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pride of place": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pridefulness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "priesthood": { "pos": "n", "pol": "0.25", "std": "0.0" }, "priestly": { "pos": "a", "pol": "0.25", "std": "0.177" }, "primaeval": { "pos": "a", "pol": "0.25", "std": "0.0" }, "primary sex characteristic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "primary sexual characteristic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "primeval": { "pos": "a", "pol": "0.25", "std": "0.0" }, "primidone": { "pos": "n", "pol": "0.25", "std": "0.0" }, "primordial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "primping": { "pos": "n", "pol": "0.25", "std": "0.0" }, "principal axis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prison chaplain": { "pos": "n", "pol": "0.25", "std": "0.0" }, "private foundation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "private nuisance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "private security force": { "pos": "n", "pol": "0.25", "std": "0.0" }, "privy": { "pos": "a", "pol": "0.25", "std": "0.088" }, "prix fixe": { "pos": "a", "pol": "0.25", "std": "0.0" }, "probability": { "pos": "n", "pol": "0.25", "std": "0.088" }, "probable cause": { "pos": "n", "pol": "0.25", "std": "0.0" }, "probing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "probiotic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "probiotic bacterium": { "pos": "n", "pol": "0.25", "std": "0.0" }, "probiotic flora": { "pos": "n", "pol": "0.25", "std": "0.0" }, "probiotic microflora": { "pos": "n", "pol": "0.25", "std": "0.0" }, "procreation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "procrustean bed": { "pos": "n", "pol": "0.25", "std": "0.0" }, "procrustean rule": { "pos": "n", "pol": "0.25", "std": "0.0" }, "procrustean standard": { "pos": "n", "pol": "0.25", "std": "0.0" }, "product line": { "pos": "n", "pol": "0.25", "std": "0.0" }, "productively": { "pos": "r", "pol": "0.25", "std": "0.0" }, "productivity": { "pos": "n", "pol": "0.25", "std": "0.354" }, "professionalism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "proficiency": { "pos": "n", "pol": "0.25", "std": "0.088" }, "profitably": { "pos": "r", "pol": "0.25", "std": "0.0" }, "program library": { "pos": "n", "pol": "0.25", "std": "0.0" }, "progressiveness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "progressivism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "progressivity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prolix": { "pos": "a", "pol": "0.25", "std": "0.0" }, "promise": { "pos": "v", "pol": "0.25", "std": "0.157" }, "promotional expense": { "pos": "n", "pol": "0.25", "std": "0.0" }, "promulgated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pronate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "pronation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prongy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "proofed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "properly speaking": { "pos": "r", "pol": "0.25", "std": "0.0" }, "propertied": { "pos": "a", "pol": "0.25", "std": "0.0" }, "property-owning": { "pos": "a", "pol": "0.25", "std": "0.0" }, "property right": { "pos": "n", "pol": "0.25", "std": "0.0" }, "propitiate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "propitiously": { "pos": "r", "pol": "0.25", "std": "0.0" }, "proportion": { "pos": "v", "pol": "0.25", "std": "0.177" }, "proportionable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "proportional font": { "pos": "n", "pol": "0.25", "std": "0.0" }, "proposal of marriage": { "pos": "n", "pol": "0.25", "std": "0.0" }, "proprioception": { "pos": "n", "pol": "0.25", "std": "0.0" }, "props": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prospect": { "pos": "v", "pol": "0.25", "std": "0.0" }, "prostheon": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prosthion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prosthodontist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prostitution": { "pos": "n", "pol": "0.25", "std": "0.0" }, "protagonism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "protanopia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "protean": { "pos": "a", "pol": "0.25", "std": "0.0" }, "protecting": { "pos": "a", "pol": "0.25", "std": "0.0" }, "protective coloration": { "pos": "n", "pol": "0.25", "std": "0.0" }, "protector": { "pos": "n", "pol": "0.25", "std": "0.0" }, "protectorship": { "pos": "n", "pol": "0.25", "std": "0.0" }, "protege": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prothalamion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prothalamium": { "pos": "n", "pol": "0.25", "std": "0.0" }, "proto": { "pos": "a", "pol": "0.25", "std": "0.0" }, "protogeometric": { "pos": "a", "pol": "0.25", "std": "0.0" }, "protology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prototype": { "pos": "n", "pol": "0.25", "std": "0.0" }, "proverb": { "pos": "n", "pol": "0.25", "std": "0.0" }, "provocative": { "pos": "a", "pol": "0.25", "std": "0.088" }, "provost guard": { "pos": "n", "pol": "0.25", "std": "0.0" }, "proxemics": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pseudohermaphrodite": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pseudohermaphroditic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "psychedelic rock": { "pos": "n", "pol": "0.25", "std": "0.0" }, "psychoactive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "psychological operation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "psychometric test": { "pos": "n", "pol": "0.25", "std": "0.0" }, "psychotropic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "psyop": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pteridologist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "public-service corporation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "public charity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "public easement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "public lecture": { "pos": "n", "pol": "0.25", "std": "0.0" }, "public presentation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "public service": { "pos": "n", "pol": "0.25", "std": "0.354" }, "public trust": { "pos": "n", "pol": "0.25", "std": "0.0" }, "public utility": { "pos": "n", "pol": "0.25", "std": "0.0" }, "public utility company": { "pos": "n", "pol": "0.25", "std": "0.0" }, "publically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "publicizing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "puff": { "pos": "a", "pol": "0.25", "std": "0.0" }, "puffed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "puffery": { "pos": "n", "pol": "0.25", "std": "0.0" }, "puissant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pull strings": { "pos": "v", "pol": "0.25", "std": "0.0" }, "pull the wool over someone's eyes": { "pos": "v", "pol": "0.25", "std": "0.0" }, "pull through": { "pos": "v", "pol": "0.25", "std": "0.177" }, "pull wires": { "pos": "v", "pol": "0.25", "std": "0.0" }, "pulley": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pulley-block": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pulley block": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pulverised": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pulverized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "punch-drunk": { "pos": "a", "pol": "0.25", "std": "0.0" }, "punch line": { "pos": "n", "pol": "0.25", "std": "0.0" }, "punctually": { "pos": "r", "pol": "0.25", "std": "0.0" }, "punctured": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pungent": { "pos": "a", "pol": "0.25", "std": "0.088" }, "punning": { "pos": "n", "pol": "0.25", "std": "0.0" }, "purchasable": { "pos": "a", "pol": "0.25", "std": "0.088" }, "purchase": { "pos": "v", "pol": "0.25", "std": "0.0" }, "pure mathematics": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pure tone": { "pos": "n", "pol": "0.25", "std": "0.0" }, "puritanical": { "pos": "a", "pol": "0.25", "std": "0.382" }, "purple-blue": { "pos": "a", "pol": "0.25", "std": "0.0" }, "purple-eyed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "purple-green": { "pos": "a", "pol": "0.25", "std": "0.0" }, "purple-red": { "pos": "a", "pol": "0.25", "std": "0.0" }, "purple-tinged": { "pos": "a", "pol": "0.25", "std": "0.0" }, "purple-tinted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "purplish-blue": { "pos": "a", "pol": "0.25", "std": "0.0" }, "purplish-green": { "pos": "a", "pol": "0.25", "std": "0.0" }, "purplish-red": { "pos": "a", "pol": "0.25", "std": "0.0" }, "purposely": { "pos": "r", "pol": "0.25", "std": "0.0" }, "purr": { "pos": "v", "pol": "0.25", "std": "0.088" }, "purse-proud": { "pos": "a", "pol": "0.25", "std": "0.0" }, "purview": { "pos": "n", "pol": "0.25", "std": "0.0" }, "push up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "pussycat": { "pos": "n", "pol": "0.25", "std": "0.354" }, "put differently": { "pos": "r", "pol": "0.25", "std": "0.0" }, "putout": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pyrotechnic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pyrotechny": { "pos": "n", "pol": "0.25", "std": "0.0" }, "quadrate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "quaint": { "pos": "a", "pol": "0.25", "std": "0.125" }, "qualitative": { "pos": "a", "pol": "0.25", "std": "0.177" }, "quality of life": { "pos": "n", "pol": "0.25", "std": "0.0" }, "quantum field theory": { "pos": "n", "pol": "0.25", "std": "0.0" }, "quarantined": { "pos": "a", "pol": "0.25", "std": "0.0" }, "quark": { "pos": "n", "pol": "0.25", "std": "0.0" }, "quark cheese": { "pos": "n", "pol": "0.25", "std": "0.0" }, "quarters": { "pos": "n", "pol": "0.25", "std": "0.0" }, "quick-drying": { "pos": "a", "pol": "0.25", "std": "0.0" }, "quick-frozen": { "pos": "a", "pol": "0.25", "std": "0.0" }, "quicken": { "pos": "v", "pol": "0.25", "std": "0.391" }, "quickness": { "pos": "n", "pol": "0.25", "std": "0.191" }, "quiff": { "pos": "n", "pol": "0.25", "std": "0.0" }, "quilting bee": { "pos": "n", "pol": "0.25", "std": "0.0" }, "quinacrine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "quinacrine hydrochloride": { "pos": "n", "pol": "0.25", "std": "0.0" }, "quinidine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "quintessential": { "pos": "a", "pol": "0.25", "std": "0.0" }, "quip": { "pos": "v", "pol": "0.25", "std": "0.0" }, "quite a": { "pos": "r", "pol": "0.25", "std": "0.0" }, "quite an": { "pos": "r", "pol": "0.25", "std": "0.0" }, "quiz": { "pos": "v", "pol": "0.25", "std": "0.0" }, "quotidian": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rabbet plane": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rabbit on": { "pos": "v", "pol": "0.25", "std": "0.0" }, "rabble-rousing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "racecourse": { "pos": "n", "pol": "0.25", "std": "0.0" }, "racetrack": { "pos": "n", "pol": "0.25", "std": "0.0" }, "racialist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "racing boat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "radar echo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "radial symmetry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "radiance": { "pos": "n", "pol": "0.25", "std": "0.26" }, "radiating": { "pos": "a", "pol": "0.25", "std": "0.0" }, "radical chic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "radical sign": { "pos": "n", "pol": "0.25", "std": "0.0" }, "radioactive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "radiochemistry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "radiolucent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "radiotherapy equipment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "radius of curvature": { "pos": "n", "pol": "0.25", "std": "0.0" }, "raffle": { "pos": "v", "pol": "0.25", "std": "0.0" }, "raffle off": { "pos": "v", "pol": "0.25", "std": "0.0" }, "rafter": { "pos": "v", "pol": "0.25", "std": "0.0" }, "rag trade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ragtime": { "pos": "n", "pol": "0.25", "std": "0.0" }, "raiding": { "pos": "a", "pol": "0.25", "std": "0.0" }, "railroad tie": { "pos": "n", "pol": "0.25", "std": "0.0" }, "railway junction": { "pos": "n", "pol": "0.25", "std": "0.0" }, "raimentless": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rain dance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "raining": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rainless": { "pos": "a", "pol": "0.25", "std": "0.0" }, "raisin-nut cookie": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rampant arch": { "pos": "n", "pol": "0.25", "std": "0.0" }, "random number generator": { "pos": "n", "pol": "0.25", "std": "0.0" }, "range in": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ranging": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rant": { "pos": "v", "pol": "0.25", "std": "0.0" }, "rapidly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "rapport": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rapprochement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rase": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ratified": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rattlebrained": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rattlepated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rave": { "pos": "v", "pol": "0.25", "std": "0.25" }, "ravishment": { "pos": "n", "pol": "0.25", "std": "0.177" }, "raw talent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "raze": { "pos": "v", "pol": "0.25", "std": "0.0" }, "re-argue": { "pos": "v", "pol": "0.25", "std": "0.0" }, "re-echo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reactionary": { "pos": "n", "pol": "0.25", "std": "0.0" }, "readable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "reading desk": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reading lamp": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reading program": { "pos": "n", "pol": "0.25", "std": "0.0" }, "readmission": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ready-to-eat": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ready-to-wear": { "pos": "a", "pol": "0.25", "std": "0.0" }, "real McCoy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "real life": { "pos": "n", "pol": "0.25", "std": "0.0" }, "real stuff": { "pos": "n", "pol": "0.25", "std": "0.0" }, "real thing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "real world": { "pos": "n", "pol": "0.25", "std": "0.0" }, "realness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "realpolitik": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reason": { "pos": "n", "pol": "0.25", "std": "0.129" }, "reasonable care": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reasoning backward": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rebind": { "pos": "v", "pol": "0.25", "std": "0.0" }, "reborn": { "pos": "a", "pol": "0.25", "std": "0.0" }, "receptive": { "pos": "a", "pol": "0.25", "std": "0.26" }, "recessional": { "pos": "n", "pol": "0.25", "std": "0.0" }, "recipe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reciprocal pronoun": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reciprocality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reclamation": { "pos": "n", "pol": "0.25", "std": "0.072" }, "recluse": { "pos": "a", "pol": "0.25", "std": "0.0" }, "recognizably": { "pos": "r", "pol": "0.25", "std": "0.0" }, "recombinant human insulin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "recommendation": { "pos": "n", "pol": "0.25", "std": "0.072" }, "recompense": { "pos": "n", "pol": "0.25", "std": "0.177" }, "record book": { "pos": "n", "pol": "0.25", "std": "0.0" }, "recreation facility": { "pos": "n", "pol": "0.25", "std": "0.0" }, "recreational facility": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rector": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rectorate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rectorship": { "pos": "n", "pol": "0.25", "std": "0.0" }, "recurrent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "recursive routine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "red-blindness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "red-brown": { "pos": "a", "pol": "0.25", "std": "0.0" }, "red-fruited": { "pos": "a", "pol": "0.25", "std": "0.0" }, "red-lavender": { "pos": "a", "pol": "0.25", "std": "0.0" }, "red-letter day": { "pos": "n", "pol": "0.25", "std": "0.0" }, "red-orange": { "pos": "a", "pol": "0.25", "std": "0.0" }, "red-purple": { "pos": "a", "pol": "0.25", "std": "0.0" }, "red-violet": { "pos": "a", "pol": "0.25", "std": "0.0" }, "red ink": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reddish-brown": { "pos": "a", "pol": "0.25", "std": "0.0" }, "reddish-lavender": { "pos": "a", "pol": "0.25", "std": "0.0" }, "reddish-orange": { "pos": "a", "pol": "0.25", "std": "0.0" }, "reddish-pink": { "pos": "a", "pol": "0.25", "std": "0.0" }, "reddisn-purple": { "pos": "a", "pol": "0.25", "std": "0.0" }, "redolence": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reducing agent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reductant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "redux": { "pos": "a", "pol": "0.25", "std": "0.0" }, "reedlike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "reedy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "refashion": { "pos": "v", "pol": "0.25", "std": "0.0" }, "refection": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reference book": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reference work": { "pos": "n", "pol": "0.25", "std": "0.0" }, "refinish": { "pos": "v", "pol": "0.25", "std": "0.0" }, "reflectorise": { "pos": "v", "pol": "0.25", "std": "0.0" }, "reform school": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reformism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "refractile": { "pos": "a", "pol": "0.25", "std": "0.0" }, "refractive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "refractory-lined": { "pos": "a", "pol": "0.25", "std": "0.0" }, "regal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "registered representative": { "pos": "n", "pol": "0.25", "std": "0.0" }, "regress": { "pos": "n", "pol": "0.25", "std": "0.0" }, "regular": { "pos": "a", "pol": "0.25", "std": "0.164" }, "regularity": { "pos": "n", "pol": "0.25", "std": "0.265" }, "regulated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "regulatory agency": { "pos": "n", "pol": "0.25", "std": "0.0" }, "regulatory authority": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reharmonisation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reharmonization": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reification": { "pos": "n", "pol": "0.25", "std": "0.177" }, "reincarnate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "reinforced concrete": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reinstate": { "pos": "v", "pol": "0.25", "std": "0.177" }, "reinvigorate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "related to": { "pos": "a", "pol": "0.25", "std": "0.0" }, "relative density": { "pos": "n", "pol": "0.25", "std": "0.0" }, "relaxant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "relaxation method": { "pos": "n", "pol": "0.25", "std": "0.0" }, "relent": { "pos": "v", "pol": "0.25", "std": "0.0" }, "religionist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "religious doctrine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "religious holiday": { "pos": "n", "pol": "0.25", "std": "0.0" }, "religious movement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "religious music": { "pos": "n", "pol": "0.25", "std": "0.0" }, "religious mystic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "religious mysticism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "religious order": { "pos": "n", "pol": "0.25", "std": "0.0" }, "religious person": { "pos": "n", "pol": "0.25", "std": "0.0" }, "religious residence": { "pos": "n", "pol": "0.25", "std": "0.0" }, "religious rite": { "pos": "n", "pol": "0.25", "std": "0.0" }, "religious sect": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reliquary": { "pos": "n", "pol": "0.25", "std": "0.0" }, "remake": { "pos": "v", "pol": "0.25", "std": "0.0" }, "remarkably": { "pos": "r", "pol": "0.25", "std": "0.265" }, "remediable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "remember oneself": { "pos": "v", "pol": "0.25", "std": "0.0" }, "reminisce": { "pos": "v", "pol": "0.25", "std": "0.0" }, "remunerate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "renege on": { "pos": "v", "pol": "0.25", "std": "0.0" }, "renegue on": { "pos": "v", "pol": "0.25", "std": "0.0" }, "renewable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "renovation": { "pos": "n", "pol": "0.25", "std": "0.265" }, "rentier": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reopen": { "pos": "v", "pol": "0.25", "std": "0.0" }, "repeated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "repechage": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reportable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "repossession": { "pos": "n", "pol": "0.25", "std": "0.0" }, "repp": { "pos": "n", "pol": "0.25", "std": "0.0" }, "representational process": { "pos": "n", "pol": "0.25", "std": "0.0" }, "representative": { "pos": "a", "pol": "0.25", "std": "0.26" }, "rescindable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rescue operation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "resolving power": { "pos": "n", "pol": "0.25", "std": "0.0" }, "respectfully": { "pos": "r", "pol": "0.25", "std": "0.0" }, "resplend": { "pos": "v", "pol": "0.25", "std": "0.0" }, "resplendently": { "pos": "r", "pol": "0.25", "std": "0.0" }, "responsible for": { "pos": "a", "pol": "0.25", "std": "0.0" }, "responsibleness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rest period": { "pos": "n", "pol": "0.25", "std": "0.0" }, "restraint of trade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "restricted": { "pos": "a", "pol": "0.25", "std": "0.144" }, "resulting trust": { "pos": "n", "pol": "0.25", "std": "0.0" }, "resurrection": { "pos": "n", "pol": "0.25", "std": "0.0" }, "retail store": { "pos": "n", "pol": "0.25", "std": "0.0" }, "retained object": { "pos": "n", "pol": "0.25", "std": "0.0" }, "retarded": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rethink": { "pos": "v", "pol": "0.25", "std": "0.0" }, "retinal scanning": { "pos": "n", "pol": "0.25", "std": "0.0" }, "retinue": { "pos": "n", "pol": "0.25", "std": "0.0" }, "retirement community": { "pos": "n", "pol": "0.25", "std": "0.0" }, "retirement complex": { "pos": "n", "pol": "0.25", "std": "0.0" }, "retouch": { "pos": "v", "pol": "0.25", "std": "0.177" }, "retread": { "pos": "n", "pol": "0.25", "std": "0.0" }, "retrenchment": { "pos": "n", "pol": "0.25", "std": "0.177" }, "retrievable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "retroactive": { "pos": "a", "pol": "0.25", "std": "0.177" }, "return on invested capital": { "pos": "n", "pol": "0.25", "std": "0.0" }, "return on investment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "revenue enhancement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reverberant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "reversibility": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reversible process": { "pos": "n", "pol": "0.25", "std": "0.0" }, "revised": { "pos": "a", "pol": "0.25", "std": "0.177" }, "revitalize": { "pos": "v", "pol": "0.25", "std": "0.0" }, "revival": { "pos": "n", "pol": "0.25", "std": "0.088" }, "revolutionism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rewire": { "pos": "v", "pol": "0.25", "std": "0.0" }, "rhinoplasty": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rhymed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rhyming": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ribavirin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "riding bitt": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rifampin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "right-angled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "right-handed": { "pos": "a", "pol": "0.25", "std": "0.354" }, "right-handedness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "right-wing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "right hander": { "pos": "n", "pol": "0.25", "std": "0.0" }, "right of re-entry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "right on": { "pos": "r", "pol": "0.25", "std": "0.0" }, "right to an attorney": { "pos": "n", "pol": "0.25", "std": "0.0" }, "right to confront accusors": { "pos": "n", "pol": "0.25", "std": "0.0" }, "right to due process": { "pos": "n", "pol": "0.25", "std": "0.0" }, "right to life": { "pos": "n", "pol": "0.25", "std": "0.0" }, "right to speedy and public trial by jury": { "pos": "n", "pol": "0.25", "std": "0.0" }, "right to vote": { "pos": "n", "pol": "0.25", "std": "0.0" }, "right wing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "righthander": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rightish": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rightism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rights issue": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rights offering": { "pos": "n", "pol": "0.25", "std": "0.0" }, "riming": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ripeness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "risen": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rising prices": { "pos": "n", "pol": "0.25", "std": "0.0" }, "risklessness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rite": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ritual": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ritualistic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "road sense": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rock opera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rock sea bass": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rogation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "role model": { "pos": "n", "pol": "0.25", "std": "0.0" }, "roleplaying": { "pos": "n", "pol": "0.25", "std": "0.0" }, "romanticisation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "romanticization": { "pos": "n", "pol": "0.25", "std": "0.0" }, "romp": { "pos": "n", "pol": "0.25", "std": "0.144" }, "roof peak": { "pos": "n", "pol": "0.25", "std": "0.0" }, "room temperature": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rose": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rose-purple": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rose-tinged": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rose-tinted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "roseate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rosin bag": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rosy-purple": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rot-resistant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rotary actuator": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rouged": { "pos": "a", "pol": "0.25", "std": "0.0" }, "round-arm": { "pos": "a", "pol": "0.25", "std": "0.0" }, "round dancing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "round out": { "pos": "v", "pol": "0.25", "std": "0.12" }, "roundedness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "roundsman": { "pos": "n", "pol": "0.25", "std": "0.0" }, "routine": { "pos": "a", "pol": "0.25", "std": "0.0" }, "royal brace": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rubber stamp": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rudiments": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rugged individualism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rule-governed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ruly": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ruminator": { "pos": "n", "pol": "0.25", "std": "0.0" }, "run-on sentence": { "pos": "n", "pol": "0.25", "std": "0.0" }, "running shoe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "running stitch": { "pos": "n", "pol": "0.25", "std": "0.0" }, "runtiness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rural free delivery": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rurality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "russet": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rust": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rust-brown": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rust-resistant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rustless": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rusty-brown": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sack up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "sacred scripture": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sacredness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sacristan": { "pos": "n", "pol": "0.25", "std": "0.0" }, "safe harbor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "safely": { "pos": "r", "pol": "0.25", "std": "0.0" }, "safety arch": { "pos": "n", "pol": "0.25", "std": "0.0" }, "safety feature": { "pos": "n", "pol": "0.25", "std": "0.0" }, "safety rail": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sailing-race": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sainthood": { "pos": "n", "pol": "0.25", "std": "0.177" }, "saintliness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "salacious": { "pos": "a", "pol": "0.25", "std": "0.088" }, "sales outlet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "salesmanship": { "pos": "n", "pol": "0.25", "std": "0.0" }, "salty": { "pos": "a", "pol": "0.25", "std": "0.315" }, "salving": { "pos": "a", "pol": "0.25", "std": "0.0" }, "same-sex marriage": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sampling station": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sanctitude": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sanctity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sand-blind": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sandboy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sanitary code": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sapidness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "saponaceous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sapphic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sarcostyle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "saturate": { "pos": "v", "pol": "0.25", "std": "0.177" }, "savings account": { "pos": "n", "pol": "0.25", "std": "0.0" }, "saw-toothed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "scale of measurement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "scalloped": { "pos": "a", "pol": "0.25", "std": "0.0" }, "scant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "scarf bandage": { "pos": "n", "pol": "0.25", "std": "0.0" }, "scatty": { "pos": "a", "pol": "0.25", "std": "0.088" }, "scenically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "sceptered": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sceptred": { "pos": "a", "pol": "0.25", "std": "0.0" }, "schmoose": { "pos": "v", "pol": "0.25", "std": "0.0" }, "schmooze": { "pos": "v", "pol": "0.25", "std": "0.0" }, "schmoozer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "schola cantorum": { "pos": "n", "pol": "0.25", "std": "0.0" }, "school assignment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "school board": { "pos": "n", "pol": "0.25", "std": "0.0" }, "school of dentistry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "school of medicine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "school of music": { "pos": "n", "pol": "0.25", "std": "0.0" }, "school of thought": { "pos": "n", "pol": "0.25", "std": "0.0" }, "school system": { "pos": "n", "pol": "0.25", "std": "0.0" }, "schoolwork": { "pos": "n", "pol": "0.25", "std": "0.0" }, "science fiction": { "pos": "n", "pol": "0.25", "std": "0.0" }, "science museum": { "pos": "n", "pol": "0.25", "std": "0.0" }, "scientific knowledge": { "pos": "n", "pol": "0.25", "std": "0.0" }, "scientifically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "scientist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "scolion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "scops owl": { "pos": "n", "pol": "0.25", "std": "0.0" }, "scoreboard": { "pos": "n", "pol": "0.25", "std": "0.0" }, "scorekeeper": { "pos": "n", "pol": "0.25", "std": "0.0" }, "scotch": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "scratch line": { "pos": "n", "pol": "0.25", "std": "0.0" }, "screaky": { "pos": "a", "pol": "0.25", "std": "0.088" }, "scripted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "scripture": { "pos": "n", "pol": "0.25", "std": "0.0" }, "scrumptious": { "pos": "a", "pol": "0.25", "std": "0.0" }, "scuffle hoe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sculpted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "scurrying": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sea god": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sea green": { "pos": "n", "pol": "0.25", "std": "0.0" }, "season ticket": { "pos": "n", "pol": "0.25", "std": "0.0" }, "seasonableness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "seat cushion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sec": { "pos": "a", "pol": "0.25", "std": "0.0" }, "second-string": { "pos": "a", "pol": "0.25", "std": "0.0" }, "second reading": { "pos": "n", "pol": "0.25", "std": "0.0" }, "second string": { "pos": "n", "pol": "0.25", "std": "0.0" }, "secondary modern school": { "pos": "n", "pol": "0.25", "std": "0.0" }, "secret code": { "pos": "n", "pol": "0.25", "std": "0.0" }, "secularism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "securities industry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "securities market": { "pos": "n", "pol": "0.25", "std": "0.0" }, "security force": { "pos": "n", "pol": "0.25", "std": "0.0" }, "security interest": { "pos": "n", "pol": "0.25", "std": "0.0" }, "security measure": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sedative drug": { "pos": "n", "pol": "0.25", "std": "0.0" }, "see to it": { "pos": "v", "pol": "0.25", "std": "0.0" }, "seeded player": { "pos": "n", "pol": "0.25", "std": "0.0" }, "seeming": { "pos": "a", "pol": "0.25", "std": "0.0" }, "segregated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "seif dune": { "pos": "n", "pol": "0.25", "std": "0.0" }, "select committee": { "pos": "n", "pol": "0.25", "std": "0.0" }, "selective service": { "pos": "n", "pol": "0.25", "std": "0.0" }, "selectivity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "self-absorbed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "self-abuse": { "pos": "n", "pol": "0.25", "std": "0.0" }, "self-addressed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "self-aggrandisement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "self-aggrandizement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "self-collected": { "pos": "a", "pol": "0.25", "std": "0.0" }, "self-confessed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "self-conscious": { "pos": "a", "pol": "0.25", "std": "0.0" }, "self-consistent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "self-cultivation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "self-deceit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "self-deception": { "pos": "n", "pol": "0.25", "std": "0.0" }, "self-education": { "pos": "n", "pol": "0.25", "std": "0.0" }, "self-effacing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "self-gratification": { "pos": "n", "pol": "0.25", "std": "0.0" }, "self-involved": { "pos": "a", "pol": "0.25", "std": "0.0" }, "self-loving": { "pos": "a", "pol": "0.25", "std": "0.0" }, "self-possessed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "self-praise": { "pos": "n", "pol": "0.25", "std": "0.0" }, "self-proclaimed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "self-respectful": { "pos": "a", "pol": "0.25", "std": "0.0" }, "self-respecting": { "pos": "a", "pol": "0.25", "std": "0.0" }, "self-sacrifice": { "pos": "n", "pol": "0.25", "std": "0.0" }, "self-stimulation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "selfless": { "pos": "a", "pol": "0.25", "std": "0.0" }, "selfsame": { "pos": "a", "pol": "0.25", "std": "0.0" }, "selling": { "pos": "n", "pol": "0.25", "std": "0.0" }, "selling point": { "pos": "n", "pol": "0.25", "std": "0.0" }, "semi-formal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "semi-processed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "semiautomatic pistol": { "pos": "n", "pol": "0.25", "std": "0.0" }, "semicircular": { "pos": "a", "pol": "0.25", "std": "0.0" }, "semicomatose": { "pos": "a", "pol": "0.25", "std": "0.0" }, "semiconscious": { "pos": "a", "pol": "0.25", "std": "0.0" }, "semiempirical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "semiformal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "semilunar valve": { "pos": "n", "pol": "0.25", "std": "0.0" }, "seminal": { "pos": "a", "pol": "0.25", "std": "0.354" }, "semiofficial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "semiparasite": { "pos": "n", "pol": "0.25", "std": "0.0" }, "semiskilled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "semisoft": { "pos": "a", "pol": "0.25", "std": "0.0" }, "semitransparent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sendup": { "pos": "n", "pol": "0.25", "std": "0.0" }, "senior pilot": { "pos": "n", "pol": "0.25", "std": "0.0" }, "senior status": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sense of humor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sense of humour": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sense of smell": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sensibilise": { "pos": "v", "pol": "0.25", "std": "0.0" }, "sensibilize": { "pos": "v", "pol": "0.25", "std": "0.0" }, "sensible horizon": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sensify": { "pos": "v", "pol": "0.25", "std": "0.0" }, "sensitising": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sensitizing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sensorial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sensuously": { "pos": "r", "pol": "0.25", "std": "0.0" }, "sententious": { "pos": "a", "pol": "0.25", "std": "0.177" }, "sentient": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sentimentalisation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sentimentalization": { "pos": "n", "pol": "0.25", "std": "0.0" }, "separably": { "pos": "r", "pol": "0.25", "std": "0.0" }, "separated": { "pos": "a", "pol": "0.25", "std": "0.102" }, "separative": { "pos": "a", "pol": "0.25", "std": "0.217" }, "sequential": { "pos": "a", "pol": "0.25", "std": "0.0" }, "seriocomedy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "serpentine": { "pos": "a", "pol": "0.25", "std": "0.0" }, "serrate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "sertraline": { "pos": "n", "pol": "0.25", "std": "0.0" }, "service book": { "pos": "n", "pol": "0.25", "std": "0.0" }, "service break": { "pos": "n", "pol": "0.25", "std": "0.0" }, "service call": { "pos": "n", "pol": "0.25", "std": "0.0" }, "service program": { "pos": "n", "pol": "0.25", "std": "0.0" }, "services": { "pos": "n", "pol": "0.25", "std": "0.0" }, "servo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "servomechanism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "servosystem": { "pos": "n", "pol": "0.25", "std": "0.0" }, "set-aside": { "pos": "a", "pol": "0.25", "std": "0.0" }, "set piece": { "pos": "n", "pol": "0.25", "std": "0.0" }, "set theory": { "pos": "n", "pol": "0.25", "std": "0.0" }, "setting hen": { "pos": "n", "pol": "0.25", "std": "0.0" }, "settlement house": { "pos": "n", "pol": "0.25", "std": "0.0" }, "seven-day": { "pos": "a", "pol": "0.25", "std": "0.0" }, "seventh heaven": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sewed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sewn": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sex activity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sex appeal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sex manual": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sex symbol": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sex up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "sexist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sexploitation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sexton": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sexual activity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sexual climax": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sexual conquest": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sexual morality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sexual practice": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sexualise": { "pos": "v", "pol": "0.25", "std": "0.0" }, "sexualize": { "pos": "v", "pol": "0.25", "std": "0.0" }, "shadow box": { "pos": "n", "pol": "0.25", "std": "0.0" }, "shadowed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "shahadah": { "pos": "n", "pol": "0.25", "std": "0.0" }, "shamelessly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "shape": { "pos": "v", "pol": "0.25", "std": "0.0" }, "sharpener": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sheath": { "pos": "n", "pol": "0.25", "std": "0.217" }, "shed light on": { "pos": "v", "pol": "0.25", "std": "0.0" }, "sheen": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sheltered workshop": { "pos": "n", "pol": "0.25", "std": "0.0" }, "shielder": { "pos": "n", "pol": "0.25", "std": "0.0" }, "shininess": { "pos": "n", "pol": "0.25", "std": "0.0" }, "shirtdress": { "pos": "n", "pol": "0.25", "std": "0.0" }, "shirtwaist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "shirtwaister": { "pos": "n", "pol": "0.25", "std": "0.0" }, "shitlist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "shmoose": { "pos": "v", "pol": "0.25", "std": "0.0" }, "shmooze": { "pos": "v", "pol": "0.25", "std": "0.0" }, "shock-absorbent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "shoe polish": { "pos": "n", "pol": "0.25", "std": "0.0" }, "shoofly pie": { "pos": "n", "pol": "0.25", "std": "0.0" }, "shoot for": { "pos": "v", "pol": "0.25", "std": "0.0" }, "shoot the breeze": { "pos": "v", "pol": "0.25", "std": "0.0" }, "shop at": { "pos": "v", "pol": "0.25", "std": "0.0" }, "shortfin mako": { "pos": "n", "pol": "0.25", "std": "0.0" }, "shot hole": { "pos": "n", "pol": "0.25", "std": "0.0" }, "shove-ha'penny": { "pos": "n", "pol": "0.25", "std": "0.0" }, "shove-halfpenny": { "pos": "n", "pol": "0.25", "std": "0.0" }, "shovel board": { "pos": "n", "pol": "0.25", "std": "0.0" }, "shovelhead": { "pos": "n", "pol": "0.25", "std": "0.0" }, "shrew-sized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "shrewdness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "shunning": { "pos": "n", "pol": "0.25", "std": "0.0" }, "shunt circuit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "shuttered": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sibilation": { "pos": "n", "pol": "0.25", "std": "0.088" }, "sickle-shaped": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sidekick": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sight gag": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sight setting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sighting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "signatory": { "pos": "n", "pol": "0.25", "std": "0.0" }, "signboard": { "pos": "n", "pol": "0.25", "std": "0.0" }, "significant other": { "pos": "n", "pol": "0.25", "std": "0.0" }, "signification": { "pos": "n", "pol": "0.25", "std": "0.0" }, "silviculture": { "pos": "n", "pol": "0.25", "std": "0.0" }, "simple machine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "simplify": { "pos": "v", "pol": "0.25", "std": "0.0" }, "simultaneity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "simultaneous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "simultaneousness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "single-breasted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "single-lane": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sinistral": { "pos": "a", "pol": "0.25", "std": "0.354" }, "sinistrality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sinistrorsal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sinistrorse": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sinuous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sinusoidal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sirdar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sitcom": { "pos": "n", "pol": "0.25", "std": "0.0" }, "situated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "situation comedy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "size": { "pos": "a", "pol": "0.25", "std": "0.0" }, "skedaddle": { "pos": "v", "pol": "0.25", "std": "0.0" }, "skeg": { "pos": "n", "pol": "0.25", "std": "0.0" }, "skew": { "pos": "v", "pol": "0.25", "std": "0.0" }, "skilled worker": { "pos": "n", "pol": "0.25", "std": "0.0" }, "skilled workman": { "pos": "n", "pol": "0.25", "std": "0.0" }, "skin and bones": { "pos": "n", "pol": "0.25", "std": "0.0" }, "skittishness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "skyward": { "pos": "a", "pol": "0.25", "std": "0.0" }, "slack up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "slanted": { "pos": "a", "pol": "0.25", "std": "0.088" }, "slanting": { "pos": "a", "pol": "0.25", "std": "0.0" }, "slapdash": { "pos": "a", "pol": "0.25", "std": "0.0" }, "slapper": { "pos": "n", "pol": "0.25", "std": "0.0" }, "slaveholding": { "pos": "a", "pol": "0.25", "std": "0.0" }, "slavish": { "pos": "a", "pol": "0.25", "std": "0.088" }, "sleep around": { "pos": "v", "pol": "0.25", "std": "0.0" }, "sleepless": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sleepover": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sleeved": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sleight": { "pos": "n", "pol": "0.25", "std": "0.0" }, "slender-waisted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "slender-winged": { "pos": "a", "pol": "0.25", "std": "0.0" }, "slick": { "pos": "a", "pol": "0.25", "std": "0.177" }, "slick magazine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "slicked up": { "pos": "a", "pol": "0.25", "std": "0.0" }, "slickness": { "pos": "n", "pol": "0.25", "std": "0.191" }, "slim": { "pos": "a", "pol": "0.25", "std": "0.088" }, "slim-waisted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "slippy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "slipshod": { "pos": "a", "pol": "0.25", "std": "0.0" }, "slithery": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sloped": { "pos": "a", "pol": "0.25", "std": "0.0" }, "slow-witted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "small": { "pos": "r", "pol": "0.25", "std": "0.0" }, "small-grained": { "pos": "a", "pol": "0.25", "std": "0.0" }, "small-time": { "pos": "a", "pol": "0.25", "std": "0.0" }, "small loan company": { "pos": "n", "pol": "0.25", "std": "0.0" }, "small slam": { "pos": "n", "pol": "0.25", "std": "0.0" }, "smallish": { "pos": "a", "pol": "0.25", "std": "0.0" }, "smitten": { "pos": "a", "pol": "0.25", "std": "0.088" }, "smooth-shaven": { "pos": "a", "pol": "0.25", "std": "0.0" }, "smooth-skinned": { "pos": "a", "pol": "0.25", "std": "0.0" }, "smooth out": { "pos": "v", "pol": "0.25", "std": "0.0" }, "smoothed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "smoothened": { "pos": "a", "pol": "0.25", "std": "0.0" }, "snack food": { "pos": "n", "pol": "0.25", "std": "0.0" }, "snakelike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "snaky": { "pos": "a", "pol": "0.25", "std": "0.0" }, "snap fastener": { "pos": "n", "pol": "0.25", "std": "0.0" }, "snap line": { "pos": "n", "pol": "0.25", "std": "0.0" }, "snapline": { "pos": "n", "pol": "0.25", "std": "0.0" }, "snuggle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "snugness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sobering": { "pos": "a", "pol": "0.25", "std": "0.0" }, "social activity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "social climber": { "pos": "n", "pol": "0.25", "std": "0.0" }, "social club": { "pos": "n", "pol": "0.25", "std": "0.0" }, "social event": { "pos": "n", "pol": "0.25", "std": "0.0" }, "social reformer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "social service": { "pos": "n", "pol": "0.25", "std": "0.0" }, "social worker": { "pos": "n", "pol": "0.25", "std": "0.0" }, "socialite": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sociality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sociobiologically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "sociolinguistically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "sociologically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "socket wrench": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sodding": { "pos": "a", "pol": "0.25", "std": "0.0" }, "soft-footed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "soft pedal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "soft touch": { "pos": "n", "pol": "0.25", "std": "0.0" }, "softening": { "pos": "a", "pol": "0.25", "std": "0.0" }, "softish": { "pos": "a", "pol": "0.25", "std": "0.0" }, "soil-building": { "pos": "a", "pol": "0.25", "std": "0.0" }, "solar day": { "pos": "n", "pol": "0.25", "std": "0.0" }, "solo blast": { "pos": "n", "pol": "0.25", "std": "0.0" }, "solo homer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "soluble": { "pos": "a", "pol": "0.25", "std": "0.265" }, "solvability": { "pos": "n", "pol": "0.25", "std": "0.0" }, "solvent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "somatogenetic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "somatogenic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "some": { "pos": "r", "pol": "0.25", "std": "0.0" }, "somebody": { "pos": "n", "pol": "0.25", "std": "0.0" }, "someone": { "pos": "n", "pol": "0.25", "std": "0.0" }, "somewhat": { "pos": "r", "pol": "0.25", "std": "0.177" }, "somniferous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "somnific": { "pos": "a", "pol": "0.25", "std": "0.0" }, "somnolence": { "pos": "n", "pol": "0.25", "std": "0.0" }, "songbird": { "pos": "n", "pol": "0.25", "std": "0.0" }, "songlike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sonic boom": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sonic delay line": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sonnet": { "pos": "v", "pol": "0.25", "std": "0.354" }, "sonorous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sorbate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sorbed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sorbefacient": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sorrel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "soul mate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sound film": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sound hole": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sound law": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sound pressure": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sound projection": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sound reflection": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sound reproduction": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sound wave": { "pos": "n", "pol": "0.25", "std": "0.0" }, "soundman": { "pos": "n", "pol": "0.25", "std": "0.0" }, "southernness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sovereign": { "pos": "a", "pol": "0.25", "std": "0.177" }, "space capsule": { "pos": "n", "pol": "0.25", "std": "0.0" }, "space vehicle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spacecraft": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spaceship": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spacial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "spaciousness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spade casino": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spank": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spare time": { "pos": "n", "pol": "0.25", "std": "0.177" }, "sparing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "spark coil": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sparrow-sized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "spatial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "spatially": { "pos": "r", "pol": "0.25", "std": "0.0" }, "spattered": { "pos": "a", "pol": "0.25", "std": "0.0" }, "spatula-shaped": { "pos": "a", "pol": "0.25", "std": "0.0" }, "spatulate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "speak in tongues": { "pos": "v", "pol": "0.25", "std": "0.0" }, "speaker identification": { "pos": "n", "pol": "0.25", "std": "0.0" }, "speaking tube": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spear-point": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spear up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "spearpoint": { "pos": "n", "pol": "0.25", "std": "0.0" }, "special delivery": { "pos": "n", "pol": "0.25", "std": "0.0" }, "special education": { "pos": "n", "pol": "0.25", "std": "0.0" }, "special jury": { "pos": "n", "pol": "0.25", "std": "0.0" }, "specialism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "specialist": { "pos": "n", "pol": "0.25", "std": "0.177" }, "specialistic": { "pos": "a", "pol": "0.25", "std": "0.265" }, "specialty store": { "pos": "n", "pol": "0.25", "std": "0.0" }, "specific": { "pos": "a", "pol": "0.25", "std": "0.26" }, "speckless": { "pos": "a", "pol": "0.25", "std": "0.0" }, "spectacled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "spectacular": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spectrophotometer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "speech sound": { "pos": "n", "pol": "0.25", "std": "0.0" }, "speech spectrum": { "pos": "n", "pol": "0.25", "std": "0.0" }, "speedily": { "pos": "r", "pol": "0.25", "std": "0.0" }, "speedup": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spheric": { "pos": "a", "pol": "0.25", "std": "0.0" }, "spic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "spic-and-span": { "pos": "a", "pol": "0.25", "std": "0.088" }, "spice rack": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spick": { "pos": "a", "pol": "0.25", "std": "0.0" }, "spick-and-span": { "pos": "a", "pol": "0.25", "std": "0.088" }, "spiff": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spiff up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "spindle-legged": { "pos": "a", "pol": "0.25", "std": "0.0" }, "spindle-shanked": { "pos": "a", "pol": "0.25", "std": "0.0" }, "spindle-shaped": { "pos": "a", "pol": "0.25", "std": "0.0" }, "spinnability": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spinnbar": { "pos": "a", "pol": "0.25", "std": "0.0" }, "spirit": { "pos": "v", "pol": "0.25", "std": "0.0" }, "spirit up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "spiritedly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "spiritedness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spiritise": { "pos": "v", "pol": "0.25", "std": "0.0" }, "spiritize": { "pos": "v", "pol": "0.25", "std": "0.0" }, "spiritual": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spiritual rebirth": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spirituality": { "pos": "n", "pol": "0.25", "std": "0.354" }, "spitting image": { "pos": "n", "pol": "0.25", "std": "0.0" }, "splattered": { "pos": "a", "pol": "0.25", "std": "0.0" }, "splendidly": { "pos": "r", "pol": "0.25", "std": "0.088" }, "splint": { "pos": "v", "pol": "0.25", "std": "0.0" }, "spondaise": { "pos": "v", "pol": "0.25", "std": "0.0" }, "spongelike": { "pos": "a", "pol": "0.25", "std": "0.088" }, "spongy": { "pos": "a", "pol": "0.25", "std": "0.088" }, "sponsorship": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spontaneous abortion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spoof": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spot-weld": { "pos": "v", "pol": "0.25", "std": "0.0" }, "spot pass": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spot weld": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spotless": { "pos": "a", "pol": "0.25", "std": "0.0" }, "spotweld": { "pos": "v", "pol": "0.25", "std": "0.0" }, "spousal equivalent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spouse equivalent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spread": { "pos": "a", "pol": "0.25", "std": "0.25" }, "sprechgesang": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sprechstimme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sprightliness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "springing cow": { "pos": "n", "pol": "0.25", "std": "0.0" }, "spruceness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "squama": { "pos": "n", "pol": "0.25", "std": "0.0" }, "square-shouldered": { "pos": "a", "pol": "0.25", "std": "0.0" }, "square deal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "squared-toe": { "pos": "a", "pol": "0.25", "std": "0.0" }, "squarish": { "pos": "a", "pol": "0.25", "std": "0.0" }, "squeaker": { "pos": "n", "pol": "0.25", "std": "0.0" }, "squeezability": { "pos": "n", "pol": "0.25", "std": "0.0" }, "squilla": { "pos": "n", "pol": "0.25", "std": "0.0" }, "squirrel-sized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "squirrel away": { "pos": "v", "pol": "0.25", "std": "0.0" }, "stabile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stabilised": { "pos": "a", "pol": "0.25", "std": "0.0" }, "stabiliser": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stabilized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "stable": { "pos": "v", "pol": "0.25", "std": "0.0" }, "stableboy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "staff": { "pos": "v", "pol": "0.25", "std": "0.088" }, "stage effect": { "pos": "n", "pol": "0.25", "std": "0.0" }, "staggering": { "pos": "a", "pol": "0.25", "std": "0.0" }, "staggeringly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "stainable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "stair": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stake driver": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stall-fed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "stalling": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stammel": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stanchion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stand-up": { "pos": "a", "pol": "0.25", "std": "0.0" }, "standard gauge": { "pos": "n", "pol": "0.25", "std": "0.0" }, "standard operating procedure": { "pos": "n", "pol": "0.25", "std": "0.0" }, "standard procedure": { "pos": "n", "pol": "0.25", "std": "0.0" }, "standing operating procedure": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stapes": { "pos": "n", "pol": "0.25", "std": "0.0" }, "starets": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stargazing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "starship": { "pos": "n", "pol": "0.25", "std": "0.0" }, "starting line": { "pos": "n", "pol": "0.25", "std": "0.0" }, "starting post": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stash": { "pos": "v", "pol": "0.25", "std": "0.0" }, "statant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "state-sponsored terrorism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "state highway": { "pos": "n", "pol": "0.25", "std": "0.0" }, "state of war": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stateless person": { "pos": "n", "pol": "0.25", "std": "0.0" }, "statistically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "stative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "statuary": { "pos": "a", "pol": "0.25", "std": "0.0" }, "stature": { "pos": "n", "pol": "0.25", "std": "0.177" }, "stead": { "pos": "n", "pol": "0.25", "std": "0.0" }, "steadfastly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "steady": { "pos": "v", "pol": "0.25", "std": "0.0" }, "steady down": { "pos": "v", "pol": "0.25", "std": "0.0" }, "steam fitting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "steam whistle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "steep-sided": { "pos": "a", "pol": "0.25", "std": "0.0" }, "stellar": { "pos": "a", "pol": "0.25", "std": "0.354" }, "stenosed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "stenotic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "stent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stentorian": { "pos": "a", "pol": "0.25", "std": "0.0" }, "step-by-step": { "pos": "a", "pol": "0.25", "std": "0.0" }, "stephanion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "steppe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stepwise": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sterileness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sternpost": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stick-on": { "pos": "a", "pol": "0.25", "std": "0.0" }, "stick around": { "pos": "v", "pol": "0.25", "std": "0.177" }, "stigmatic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stigmatist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stillbirth": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stilly": { "pos": "a", "pol": "0.25", "std": "0.0" }, "stilted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "stimulant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stimulant drug": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stimulus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stinting": { "pos": "a", "pol": "0.25", "std": "0.0" }, "stipulatory": { "pos": "a", "pol": "0.25", "std": "0.0" }, "stirred": { "pos": "a", "pol": "0.25", "std": "0.331" }, "stirrup": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stirrup iron": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stitched": { "pos": "a", "pol": "0.25", "std": "0.0" }, "stock-take": { "pos": "v", "pol": "0.25", "std": "0.0" }, "stock exchange": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stock market": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stocker": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stockholders meeting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stocktake": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stomach exercise": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stomatopod": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stomatopod crustacean": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stoned": { "pos": "a", "pol": "0.25", "std": "0.0" }, "stoop to": { "pos": "v", "pol": "0.25", "std": "0.0" }, "stopgap": { "pos": "n", "pol": "0.25", "std": "0.0" }, "storage-battery grid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "storage allocation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stoutheartedness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stoutly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "stow away": { "pos": "v", "pol": "0.25", "std": "0.0" }, "straight-arm": { "pos": "n", "pol": "0.25", "std": "0.0" }, "straight and narrow": { "pos": "n", "pol": "0.25", "std": "0.0" }, "straight thrust": { "pos": "n", "pol": "0.25", "std": "0.0" }, "straightaway": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "strait and narrow": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stranded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "strange attractor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "strapado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "strappado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "street clothes": { "pos": "n", "pol": "0.25", "std": "0.0" }, "street cred": { "pos": "n", "pol": "0.25", "std": "0.0" }, "street credibility": { "pos": "n", "pol": "0.25", "std": "0.0" }, "strengthen": { "pos": "v", "pol": "0.25", "std": "0.144" }, "strengthener": { "pos": "n", "pol": "0.25", "std": "0.0" }, "strenuous": { "pos": "a", "pol": "0.25", "std": "0.177" }, "stretch mark": { "pos": "n", "pol": "0.25", "std": "0.0" }, "striated muscle tissue": { "pos": "n", "pol": "0.25", "std": "0.0" }, "strictly speaking": { "pos": "r", "pol": "0.25", "std": "0.0" }, "strip-mined": { "pos": "a", "pol": "0.25", "std": "0.0" }, "strip alert": { "pos": "n", "pol": "0.25", "std": "0.0" }, "strip lighting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "strip mining": { "pos": "n", "pol": "0.25", "std": "0.0" }, "striped": { "pos": "a", "pol": "0.25", "std": "0.0" }, "striped drum": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stripling": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stripy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "stroll": { "pos": "n", "pol": "0.25", "std": "0.0" }, "strong-arm": { "pos": "a", "pol": "0.25", "std": "0.0" }, "strong-growing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "structural member": { "pos": "n", "pol": "0.25", "std": "0.0" }, "structural sociology": { "pos": "n", "pol": "0.25", "std": "0.0" }, "structure": { "pos": "v", "pol": "0.25", "std": "0.0" }, "studied": { "pos": "a", "pol": "0.25", "std": "0.0" }, "stuntedness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "style of architecture": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stylemark": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stylised": { "pos": "a", "pol": "0.25", "std": "0.0" }, "stylishness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stylized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "styptic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "suasible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sub-rosa": { "pos": "a", "pol": "0.25", "std": "0.0" }, "subcontinent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "subculture": { "pos": "n", "pol": "0.25", "std": "0.0" }, "subduable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "subject": { "pos": "a", "pol": "0.25", "std": "0.125" }, "subject area": { "pos": "n", "pol": "0.25", "std": "0.0" }, "subject field": { "pos": "n", "pol": "0.25", "std": "0.0" }, "subjectiveness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "subjugable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sublimely": { "pos": "r", "pol": "0.25", "std": "0.0" }, "sublimity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suborder Lacertilia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suborder Lipotyphla": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suborder Sauria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "subordinate clause": { "pos": "n", "pol": "0.25", "std": "0.0" }, "subroutine library": { "pos": "n", "pol": "0.25", "std": "0.0" }, "subscriber": { "pos": "n", "pol": "0.25", "std": "0.217" }, "subsidiary": { "pos": "a", "pol": "0.25", "std": "0.0" }, "subsidise": { "pos": "v", "pol": "0.25", "std": "0.088" }, "subsidize": { "pos": "v", "pol": "0.25", "std": "0.088" }, "subterranean": { "pos": "a", "pol": "0.25", "std": "0.265" }, "subterraneous": { "pos": "a", "pol": "0.25", "std": "0.265" }, "subvent": { "pos": "v", "pol": "0.25", "std": "0.0" }, "subvention": { "pos": "v", "pol": "0.25", "std": "0.0" }, "succeed": { "pos": "v", "pol": "0.25", "std": "0.53" }, "successive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "suede glove": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suffrage": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sugar candy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sugarcoat": { "pos": "v", "pol": "0.25", "std": "0.442" }, "sugared": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sui generis": { "pos": "a", "pol": "0.25", "std": "0.0" }, "suicide pill": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suitability": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suitableness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sulfa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sulfa drug": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sulfisoxazole": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sulfonamide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sulpha": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sultry": { "pos": "a", "pol": "0.25", "std": "0.265" }, "sum total": { "pos": "n", "pol": "0.25", "std": "0.0" }, "summational": { "pos": "a", "pol": "0.25", "std": "0.0" }, "summative": { "pos": "a", "pol": "0.25", "std": "0.0" }, "summer solstice": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sumpsimus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sumptuary": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sun dance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sunburst pleat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sunray pleat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sunup": { "pos": "n", "pol": "0.25", "std": "0.0" }, "superabundance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "superannuation fund": { "pos": "n", "pol": "0.25", "std": "0.0" }, "superbly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "supercritical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "supergiant": { "pos": "n", "pol": "0.25", "std": "0.0" }, "superhuman": { "pos": "a", "pol": "0.25", "std": "0.0" }, "superincumbent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "superior cerebellar artery": { "pos": "n", "pol": "0.25", "std": "0.0" }, "superior epigastric veins": { "pos": "n", "pol": "0.25", "std": "0.0" }, "superior ophthalmic vein": { "pos": "n", "pol": "0.25", "std": "0.0" }, "supernatural virtue": { "pos": "n", "pol": "0.25", "std": "0.0" }, "supervisory": { "pos": "a", "pol": "0.25", "std": "0.0" }, "supplemental": { "pos": "a", "pol": "0.25", "std": "0.088" }, "supplementary": { "pos": "a", "pol": "0.25", "std": "0.088" }, "supplier": { "pos": "n", "pol": "0.25", "std": "0.0" }, "support level": { "pos": "n", "pol": "0.25", "std": "0.0" }, "support payment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "support system": { "pos": "n", "pol": "0.25", "std": "0.0" }, "supporting structure": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suppressive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "supra": { "pos": "r", "pol": "0.25", "std": "0.0" }, "supraocular": { "pos": "a", "pol": "0.25", "std": "0.0" }, "supraorbital": { "pos": "a", "pol": "0.25", "std": "0.0" }, "supremacism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "supremacy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "supremo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sure thing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "surpassingly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "surprised": { "pos": "a", "pol": "0.25", "std": "0.0" }, "surrebuttal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "surrebutter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "surrejoinder": { "pos": "n", "pol": "0.25", "std": "0.0" }, "surreptitious": { "pos": "a", "pol": "0.25", "std": "0.088" }, "surrounded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "surveillance system": { "pos": "n", "pol": "0.25", "std": "0.0" }, "susceptibility": { "pos": "n", "pol": "0.25", "std": "0.0" }, "susceptibleness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suspenseful": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sustainment": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sustentation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "swagger": { "pos": "a", "pol": "0.25", "std": "0.0" }, "swami": { "pos": "n", "pol": "0.25", "std": "0.0" }, "swap": { "pos": "n", "pol": "0.25", "std": "0.0" }, "swash": { "pos": "n", "pol": "0.25", "std": "0.0" }, "swatch": { "pos": "n", "pol": "0.25", "std": "0.0" }, "swear in": { "pos": "v", "pol": "0.25", "std": "0.0" }, "sweat equity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sweep oar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sweet-breathed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sweet-flavored": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sweet nothings": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sweeten": { "pos": "v", "pol": "0.25", "std": "0.088" }, "sweetened": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sweetmeat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sweetness": { "pos": "n", "pol": "0.25", "std": "0.258" }, "sweltering": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sweltry": { "pos": "a", "pol": "0.25", "std": "0.0" }, "swept": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sweptwing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "swing music": { "pos": "n", "pol": "0.25", "std": "0.0" }, "swishy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "switchblade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "switchblade knife": { "pos": "n", "pol": "0.25", "std": "0.0" }, "swoosh": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "swop": { "pos": "v", "pol": "0.25", "std": "0.0" }, "swordplay": { "pos": "n", "pol": "0.25", "std": "0.0" }, "swosh": { "pos": "v", "pol": "0.25", "std": "0.0" }, "symbiotic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sympathetically": { "pos": "r", "pol": "0.25", "std": "0.265" }, "symphonic poem": { "pos": "n", "pol": "0.25", "std": "0.0" }, "symphonise": { "pos": "v", "pol": "0.25", "std": "0.0" }, "symphonize": { "pos": "v", "pol": "0.25", "std": "0.0" }, "symphysion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "synchronal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "synchroneity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "synchronicity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "synchronised": { "pos": "a", "pol": "0.25", "std": "0.0" }, "synchronism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "synchronized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "synchrony": { "pos": "n", "pol": "0.25", "std": "0.0" }, "synclinal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "synergistic": { "pos": "a", "pol": "0.25", "std": "0.382" }, "syntactically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "synthetic thinking": { "pos": "n", "pol": "0.25", "std": "0.0" }, "synthetical": { "pos": "a", "pol": "0.25", "std": "0.088" }, "tabasco": { "pos": "n", "pol": "0.25", "std": "0.0" }, "table d'hote": { "pos": "n", "pol": "0.25", "std": "0.0" }, "table game": { "pos": "n", "pol": "0.25", "std": "0.0" }, "table tennis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tabor pipe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tacheometer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tachina fly": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tachymeter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "taciturn": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tactically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "tadpole shrimp": { "pos": "n", "pol": "0.25", "std": "0.0" }, "taffeta weave": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tag line": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tagged": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tailstock": { "pos": "n", "pol": "0.25", "std": "0.0" }, "take-home": { "pos": "a", "pol": "0.25", "std": "0.0" }, "take account": { "pos": "v", "pol": "0.25", "std": "0.0" }, "take flight": { "pos": "v", "pol": "0.25", "std": "0.0" }, "take for granted": { "pos": "v", "pol": "0.25", "std": "0.0" }, "take form": { "pos": "v", "pol": "0.25", "std": "0.0" }, "take into account": { "pos": "v", "pol": "0.25", "std": "0.0" }, "take it easy": { "pos": "v", "pol": "0.25", "std": "0.0" }, "take notice": { "pos": "v", "pol": "0.25", "std": "0.0" }, "take root": { "pos": "v", "pol": "0.25", "std": "0.0" }, "take shape": { "pos": "v", "pol": "0.25", "std": "0.0" }, "take the air": { "pos": "v", "pol": "0.25", "std": "0.0" }, "take the cake": { "pos": "v", "pol": "0.25", "std": "0.0" }, "take the road": { "pos": "v", "pol": "0.25", "std": "0.0" }, "take the stand": { "pos": "v", "pol": "0.25", "std": "0.0" }, "talker identification": { "pos": "n", "pol": "0.25", "std": "0.0" }, "talking": { "pos": "n", "pol": "0.25", "std": "0.0" }, "talking book": { "pos": "n", "pol": "0.25", "std": "0.0" }, "talks": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tall-growing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tallish": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tamarisk gerbil": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tame": { "pos": "a", "pol": "0.25", "std": "0.157" }, "tan": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tangerine": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tangibility": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tangible": { "pos": "a", "pol": "0.25", "std": "0.072" }, "tangibleness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tank destroyer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tantra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "taper": { "pos": "v", "pol": "0.25", "std": "0.177" }, "tapered": { "pos": "a", "pol": "0.25", "std": "0.0" }, "target area": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tastefully": { "pos": "r", "pol": "0.25", "std": "0.0" }, "tastiness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tasty": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tattle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tau coefficient of correlation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "taupe": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tawny": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tawny-brown": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tax": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tax advantage": { "pos": "n", "pol": "0.25", "std": "0.0" }, "taxable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "taxonomically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "tea parlor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tea parlour": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tea tray": { "pos": "n", "pol": "0.25", "std": "0.0" }, "teaching": { "pos": "n", "pol": "0.25", "std": "0.125" }, "teaching method": { "pos": "n", "pol": "0.25", "std": "0.0" }, "teahouse": { "pos": "n", "pol": "0.25", "std": "0.0" }, "teal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "team spirit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "teamwork": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tear down": { "pos": "v", "pol": "0.25", "std": "0.0" }, "tearoom": { "pos": "n", "pol": "0.25", "std": "0.0" }, "teary": { "pos": "a", "pol": "0.25", "std": "0.0" }, "teary-eyed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "teashop": { "pos": "n", "pol": "0.25", "std": "0.0" }, "technologist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tectonic movement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tediousness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tee shirt": { "pos": "n", "pol": "0.25", "std": "0.0" }, "teen": { "pos": "n", "pol": "0.25", "std": "0.0" }, "teenager": { "pos": "n", "pol": "0.25", "std": "0.0" }, "teensy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "teensy-weensy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "teentsy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "teeny": { "pos": "a", "pol": "0.25", "std": "0.0" }, "teeny-weeny": { "pos": "a", "pol": "0.25", "std": "0.0" }, "teeth": { "pos": "n", "pol": "0.25", "std": "0.0" }, "telco": { "pos": "n", "pol": "0.25", "std": "0.0" }, "telephone bill": { "pos": "n", "pol": "0.25", "std": "0.0" }, "telephone call": { "pos": "n", "pol": "0.25", "std": "0.0" }, "telephone service": { "pos": "n", "pol": "0.25", "std": "0.0" }, "teleport": { "pos": "v", "pol": "0.25", "std": "0.0" }, "telethermometer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "temperamentally": { "pos": "r", "pol": "0.25", "std": "0.0" }, "template": { "pos": "n", "pol": "0.25", "std": "0.0" }, "templet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "temporal muscle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "temporalis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "temporalis muscle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tenacious": { "pos": "a", "pol": "0.25", "std": "0.191" }, "tended to": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tendentiousness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tenderise": { "pos": "v", "pol": "0.25", "std": "0.0" }, "tenderize": { "pos": "v", "pol": "0.25", "std": "0.0" }, "tending": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tennis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tennis ball": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tenon": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tenure": { "pos": "v", "pol": "0.25", "std": "0.0" }, "terazosin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "terefah": { "pos": "a", "pol": "0.25", "std": "0.0" }, "term paper": { "pos": "n", "pol": "0.25", "std": "0.0" }, "terminable interest": { "pos": "n", "pol": "0.25", "std": "0.0" }, "terminal point": { "pos": "n", "pol": "0.25", "std": "0.0" }, "terminus ad quem": { "pos": "n", "pol": "0.25", "std": "0.0" }, "terrasse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "terrifically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "territorially": { "pos": "r", "pol": "0.25", "std": "0.0" }, "test case": { "pos": "n", "pol": "0.25", "std": "0.0" }, "test suit": { "pos": "n", "pol": "0.25", "std": "0.0" }, "testify": { "pos": "v", "pol": "0.25", "std": "0.088" }, "tetartanopia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "the Alps": { "pos": "n", "pol": "0.25", "std": "0.0" }, "the Great Compromiser": { "pos": "n", "pol": "0.25", "std": "0.0" }, "the least bit": { "pos": "r", "pol": "0.25", "std": "0.0" }, "the like": { "pos": "n", "pol": "0.25", "std": "0.0" }, "the likes of": { "pos": "n", "pol": "0.25", "std": "0.0" }, "theater director": { "pos": "n", "pol": "0.25", "std": "0.0" }, "theater of operations": { "pos": "n", "pol": "0.25", "std": "0.0" }, "theatre director": { "pos": "n", "pol": "0.25", "std": "0.0" }, "theatre of operations": { "pos": "n", "pol": "0.25", "std": "0.0" }, "theatrical": { "pos": "n", "pol": "0.25", "std": "0.0" }, "theatrical performance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "theological doctrine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "theological system": { "pos": "n", "pol": "0.25", "std": "0.0" }, "theological virtue": { "pos": "n", "pol": "0.25", "std": "0.0" }, "theosophism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "theosophy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "therewithal": { "pos": "r", "pol": "0.25", "std": "0.0" }, "thermal emission": { "pos": "n", "pol": "0.25", "std": "0.0" }, "thermal reactor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "thermionic emission": { "pos": "n", "pol": "0.25", "std": "0.0" }, "thermoacidophile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "thermonuclear warhead": { "pos": "n", "pol": "0.25", "std": "0.0" }, "thermoplastic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "thick": { "pos": "r", "pol": "0.25", "std": "0.177" }, "thin-skinned": { "pos": "a", "pol": "0.25", "std": "0.0" }, "thin person": { "pos": "n", "pol": "0.25", "std": "0.0" }, "think": { "pos": "n", "pol": "0.25", "std": "0.0" }, "thinkable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "third-dimensional": { "pos": "a", "pol": "0.25", "std": "0.0" }, "third eye": { "pos": "n", "pol": "0.25", "std": "0.0" }, "thoughtfully": { "pos": "r", "pol": "0.25", "std": "0.088" }, "three-d": { "pos": "a", "pol": "0.25", "std": "0.0" }, "three-hitter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "thrift institution": { "pos": "n", "pol": "0.25", "std": "0.0" }, "thrilled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "thrillful": { "pos": "a", "pol": "0.25", "std": "0.0" }, "throbbing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "throng": { "pos": "v", "pol": "0.25", "std": "0.0" }, "throttlehold": { "pos": "n", "pol": "0.25", "std": "0.0" }, "throughway": { "pos": "n", "pol": "0.25", "std": "0.0" }, "thrown-away": { "pos": "a", "pol": "0.25", "std": "0.0" }, "thruway": { "pos": "n", "pol": "0.25", "std": "0.0" }, "thunderstruck": { "pos": "a", "pol": "0.25", "std": "0.0" }, "thus far": { "pos": "r", "pol": "0.25", "std": "0.0" }, "ticktock": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tictac": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tidiness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tidings": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tidy": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tied": { "pos": "a", "pol": "0.25", "std": "0.314" }, "tighten up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "til now": { "pos": "r", "pol": "0.25", "std": "0.0" }, "timber hitch": { "pos": "n", "pol": "0.25", "std": "0.0" }, "time-consuming": { "pos": "a", "pol": "0.25", "std": "0.0" }, "time deposit account": { "pos": "n", "pol": "0.25", "std": "0.0" }, "timeserver": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tin-plating": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tiny": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tip truck": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tipper lorry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tipper truck": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tirelessness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tiresomeness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "titer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tithe barn": { "pos": "n", "pol": "0.25", "std": "0.0" }, "titivate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "titivation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "titration": { "pos": "n", "pol": "0.25", "std": "0.0" }, "titre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tittivate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "tittivation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "to be precise": { "pos": "r", "pol": "0.25", "std": "0.0" }, "toboggan": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tocktact": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tocopherol": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tocsin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "toe box": { "pos": "n", "pol": "0.25", "std": "0.0" }, "toilet-trained": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tolazamide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tonal pattern": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tonality": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tone poem": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tone up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "tonguing and grooving plane": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tonsured": { "pos": "a", "pol": "0.25", "std": "0.0" }, "too-generous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "too soon": { "pos": "r", "pol": "0.25", "std": "0.0" }, "tooth root": { "pos": "n", "pol": "0.25", "std": "0.0" }, "toothy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tootle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "top-down": { "pos": "a", "pol": "0.25", "std": "0.0" }, "top brass": { "pos": "n", "pol": "0.25", "std": "0.0" }, "top dog": { "pos": "n", "pol": "0.25", "std": "0.0" }, "topographic point": { "pos": "n", "pol": "0.25", "std": "0.0" }, "topography": { "pos": "n", "pol": "0.25", "std": "0.0" }, "topological space": { "pos": "n", "pol": "0.25", "std": "0.0" }, "toppingly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "totalism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "totemism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "totipotent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "touching": { "pos": "a", "pol": "0.25", "std": "0.0" }, "touchstone": { "pos": "n", "pol": "0.25", "std": "0.0" }, "toupeed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tour": { "pos": "v", "pol": "0.25", "std": "0.0" }, "tour de force": { "pos": "n", "pol": "0.25", "std": "0.0" }, "touring car": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tourism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tourist attraction": { "pos": "n", "pol": "0.25", "std": "0.0" }, "touristry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "towboat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tower of strength": { "pos": "n", "pol": "0.25", "std": "0.0" }, "toying": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trade-last": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trade-off": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trade name": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trade school": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trade union movement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trademarked": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tradeoff": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tragicomedy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tragicomic": { "pos": "a", "pol": "0.25", "std": "0.331" }, "trained worker": { "pos": "n", "pol": "0.25", "std": "0.0" }, "training": { "pos": "n", "pol": "0.25", "std": "0.0" }, "training program": { "pos": "n", "pol": "0.25", "std": "0.0" }, "training school": { "pos": "n", "pol": "0.25", "std": "0.0" }, "transect": { "pos": "v", "pol": "0.25", "std": "0.0" }, "transfer of training": { "pos": "n", "pol": "0.25", "std": "0.0" }, "transistor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "transitivise": { "pos": "v", "pol": "0.25", "std": "0.0" }, "transitivize": { "pos": "v", "pol": "0.25", "std": "0.0" }, "translucent": { "pos": "a", "pol": "0.25", "std": "0.0" }, "transmitted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "transmundane": { "pos": "a", "pol": "0.25", "std": "0.0" }, "transplacental": { "pos": "a", "pol": "0.25", "std": "0.0" }, "transverse process": { "pos": "n", "pol": "0.25", "std": "0.0" }, "transvestic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "transvestite": { "pos": "a", "pol": "0.25", "std": "0.0" }, "traveling salesman": { "pos": "n", "pol": "0.25", "std": "0.0" }, "travelled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "travelling salesman": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tray": { "pos": "n", "pol": "0.25", "std": "0.0" }, "treat": { "pos": "n", "pol": "0.25", "std": "0.177" }, "tref": { "pos": "a", "pol": "0.25", "std": "0.0" }, "treillage": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trellis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tremendously": { "pos": "r", "pol": "0.25", "std": "0.0" }, "trenchancy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trend-setting": { "pos": "a", "pol": "0.25", "std": "0.0" }, "trend setting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trendsetting": { "pos": "a", "pol": "0.25", "std": "0.0" }, "trespass viet armis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trespassing": { "pos": "a", "pol": "0.25", "std": "0.0" }, "trestle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "triage": { "pos": "n", "pol": "0.25", "std": "0.0" }, "triangular bandage": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tribute album": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trichion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trichlormethiazide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trichodesmium": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trident": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trifid": { "pos": "a", "pol": "0.25", "std": "0.0" }, "trig": { "pos": "a", "pol": "0.25", "std": "0.0" }, "trilobite": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trip line": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tripod": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tritanopia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trochlear": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trochlear nerve": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trochlearis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trogon": { "pos": "n", "pol": "0.25", "std": "0.0" }, "troth": { "pos": "n", "pol": "0.25", "std": "0.088" }, "trousering": { "pos": "n", "pol": "0.25", "std": "0.0" }, "truck stop": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trucking": { "pos": "n", "pol": "0.25", "std": "0.0" }, "true-to-life": { "pos": "a", "pol": "0.25", "std": "0.0" }, "true rib": { "pos": "n", "pol": "0.25", "std": "0.0" }, "true to life": { "pos": "a", "pol": "0.25", "std": "0.0" }, "true up": { "pos": "v", "pol": "0.25", "std": "0.0" }, "truism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "truncate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "truncated": { "pos": "a", "pol": "0.25", "std": "0.088" }, "trust deed": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trustee": { "pos": "n", "pol": "0.25", "std": "0.177" }, "truster": { "pos": "n", "pol": "0.25", "std": "0.0" }, "try": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tub gurnard": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tucked": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tugboat": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tummy crunch": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tundra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tuning": { "pos": "n", "pol": "0.25", "std": "0.0" }, "turkey-sized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "turn around": { "pos": "v", "pol": "0.25", "std": "0.217" }, "turn of expression": { "pos": "n", "pol": "0.25", "std": "0.0" }, "turn of phrase": { "pos": "n", "pol": "0.25", "std": "0.0" }, "turning away": { "pos": "n", "pol": "0.25", "std": "0.0" }, "turnverein": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tusker": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tweak": { "pos": "v", "pol": "0.25", "std": "0.072" }, "twenty-four hour period": { "pos": "n", "pol": "0.25", "std": "0.0" }, "twenty-four hours": { "pos": "n", "pol": "0.25", "std": "0.0" }, "twiggy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "twiglike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "twinkler": { "pos": "n", "pol": "0.25", "std": "0.0" }, "twinning": { "pos": "a", "pol": "0.25", "std": "0.0" }, "twisting": { "pos": "a", "pol": "0.25", "std": "0.0" }, "twisty": { "pos": "a", "pol": "0.25", "std": "0.0" }, "two-chambered": { "pos": "a", "pol": "0.25", "std": "0.0" }, "two-fold": { "pos": "a", "pol": "0.25", "std": "0.0" }, "two-hitter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "two-step": { "pos": "n", "pol": "0.25", "std": "0.0" }, "two-toe": { "pos": "a", "pol": "0.25", "std": "0.0" }, "two-toed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "twofold": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tympanic membrane": { "pos": "n", "pol": "0.25", "std": "0.0" }, "type of architecture": { "pos": "n", "pol": "0.25", "std": "0.0" }, "typically": { "pos": "r", "pol": "0.25", "std": "0.0" }, "u-turn": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ubiquitous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ugly duckling": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ultimate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ultra vires": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ultraconservative": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ultrasound": { "pos": "n", "pol": "0.25", "std": "0.177" }, "ultraviolet": { "pos": "a", "pol": "0.25", "std": "0.0" }, "umbra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "unabated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unabused": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unadorned": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unadulterated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unaffectedness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "unaltered": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unambiguously": { "pos": "r", "pol": "0.25", "std": "0.088" }, "unannounced": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unashamed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unashamedly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "unbelievable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unbloody": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unbounded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unbreakable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unburdened": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unchain": { "pos": "v", "pol": "0.25", "std": "0.354" }, "unchanging": { "pos": "a", "pol": "0.25", "std": "0.354" }, "uncial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "unclogged": { "pos": "a", "pol": "0.25", "std": "0.0" }, "uncommon": { "pos": "a", "pol": "0.25", "std": "0.0" }, "uncommunicativeness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "uncompassionate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "uncomplaining": { "pos": "a", "pol": "0.25", "std": "0.0" }, "uncontaminated": { "pos": "a", "pol": "0.25", "std": "0.177" }, "uncontrolled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "uncounted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "uncouple": { "pos": "v", "pol": "0.25", "std": "0.0" }, "uncousinly": { "pos": "a", "pol": "0.25", "std": "0.0" }, "uncreased": { "pos": "a", "pol": "0.25", "std": "0.0" }, "uncurved": { "pos": "a", "pol": "0.25", "std": "0.0" }, "uncurving": { "pos": "a", "pol": "0.25", "std": "0.0" }, "undated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "undaunted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "undeceive": { "pos": "v", "pol": "0.25", "std": "0.0" }, "undecorated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "undefiled": { "pos": "a", "pol": "0.25", "std": "0.088" }, "under-the-table": { "pos": "a", "pol": "0.25", "std": "0.0" }, "undercover operation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "understandable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "understructure": { "pos": "n", "pol": "0.25", "std": "0.0" }, "underweight": { "pos": "a", "pol": "0.25", "std": "0.0" }, "undisputable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "undivided interest": { "pos": "n", "pol": "0.25", "std": "0.0" }, "undivided right": { "pos": "n", "pol": "0.25", "std": "0.0" }, "undress": { "pos": "n", "pol": "0.25", "std": "0.0" }, "unearned run": { "pos": "n", "pol": "0.25", "std": "0.0" }, "unexceeded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unexcelled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unexploded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unexpressive": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unfathomed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unheeding": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unheralded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unhitch": { "pos": "v", "pol": "0.25", "std": "0.0" }, "unicuspid": { "pos": "a", "pol": "0.25", "std": "0.0" }, "uniform": { "pos": "v", "pol": "0.25", "std": "0.0" }, "unilluminating": { "pos": "a", "pol": "0.25", "std": "0.0" }, "uniting": { "pos": "n", "pol": "0.25", "std": "0.177" }, "universal quantifier": { "pos": "n", "pol": "0.25", "std": "0.0" }, "universe of discourse": { "pos": "n", "pol": "0.25", "std": "0.0" }, "unkept": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unkeyed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unleavened": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unlisted security": { "pos": "n", "pol": "0.25", "std": "0.0" }, "unloose": { "pos": "v", "pol": "0.25", "std": "0.354" }, "unloosen": { "pos": "v", "pol": "0.25", "std": "0.354" }, "unmanful": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unmanlike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unmemorable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unmentionable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unmodulated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unnameable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unnumberable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unnumbered": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unnumerable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unpleasant person": { "pos": "n", "pol": "0.25", "std": "0.0" }, "unplumbed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unpredicted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unpretentiousness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "unprophetic": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unquestioning": { "pos": "a", "pol": "0.25", "std": "0.088" }, "unraised": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unreconstructed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unreleased": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unremarkable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unrepentantly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "unresentful": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unresistant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unrhetorical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unsegregated": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unselfconsciousness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "unsexed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unshielded": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unsmoothed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unsoundable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unspell": { "pos": "v", "pol": "0.25", "std": "0.0" }, "unsteadily": { "pos": "r", "pol": "0.25", "std": "0.0" }, "unstinted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unstinting": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unstoppered": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unsurpassable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unsurpassed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "until now": { "pos": "r", "pol": "0.25", "std": "0.0" }, "unwaveringly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "unweathered": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unwritten law": { "pos": "n", "pol": "0.25", "std": "0.0" }, "up to her neck": { "pos": "a", "pol": "0.25", "std": "0.0" }, "up to his neck": { "pos": "a", "pol": "0.25", "std": "0.0" }, "up to my neck": { "pos": "a", "pol": "0.25", "std": "0.0" }, "up to our necks": { "pos": "a", "pol": "0.25", "std": "0.0" }, "up to their necks": { "pos": "a", "pol": "0.25", "std": "0.0" }, "up to your neck": { "pos": "a", "pol": "0.25", "std": "0.0" }, "upbringing": { "pos": "n", "pol": "0.25", "std": "0.177" }, "updraft": { "pos": "n", "pol": "0.25", "std": "0.0" }, "upfield": { "pos": "a", "pol": "0.25", "std": "0.0" }, "uphill": { "pos": "n", "pol": "0.25", "std": "0.0" }, "upper-case letter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "upper-class": { "pos": "a", "pol": "0.25", "std": "0.0" }, "uppercase": { "pos": "n", "pol": "0.25", "std": "0.0" }, "uprightness": { "pos": "n", "pol": "0.25", "std": "0.217" }, "upstage": { "pos": "a", "pol": "0.25", "std": "0.265" }, "upstroke": { "pos": "n", "pol": "0.25", "std": "0.0" }, "uptown": { "pos": "r", "pol": "0.25", "std": "0.0" }, "use of goods and services": { "pos": "n", "pol": "0.25", "std": "0.0" }, "usefully": { "pos": "r", "pol": "0.25", "std": "0.0" }, "usefulness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "utensil": { "pos": "n", "pol": "0.25", "std": "0.0" }, "utilised": { "pos": "a", "pol": "0.25", "std": "0.0" }, "utility program": { "pos": "n", "pol": "0.25", "std": "0.0" }, "utilized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "utmost": { "pos": "a", "pol": "0.25", "std": "0.125" }, "utopian": { "pos": "a", "pol": "0.25", "std": "0.442" }, "utricle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "utriculus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "uttermost": { "pos": "a", "pol": "0.25", "std": "0.177" }, "uveoscleral pathway": { "pos": "n", "pol": "0.25", "std": "0.0" }, "uvulopalatopharyngoplasty": { "pos": "n", "pol": "0.25", "std": "0.0" }, "uxorial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "vacillation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vacuum": { "pos": "v", "pol": "0.25", "std": "0.0" }, "vacuum-clean": { "pos": "v", "pol": "0.25", "std": "0.0" }, "vacuum gage": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vacuum gauge": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vagile": { "pos": "a", "pol": "0.25", "std": "0.0" }, "valet parking": { "pos": "n", "pol": "0.25", "std": "0.0" }, "valse": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vaporific": { "pos": "a", "pol": "0.25", "std": "0.088" }, "vaporish": { "pos": "a", "pol": "0.25", "std": "0.0" }, "vaporizable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "vapourific": { "pos": "a", "pol": "0.25", "std": "0.088" }, "vapourisable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "vapourish": { "pos": "a", "pol": "0.25", "std": "0.0" }, "variform": { "pos": "a", "pol": "0.25", "std": "0.0" }, "varsity letter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vasovasostomy": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vassal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vaticination": { "pos": "n", "pol": "0.25", "std": "0.0" }, "veld": { "pos": "n", "pol": "0.25", "std": "0.0" }, "veldt": { "pos": "n", "pol": "0.25", "std": "0.0" }, "velvet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "velvety-skinned": { "pos": "a", "pol": "0.25", "std": "0.0" }, "vena cava": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vena ethmoidalis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vena lacrimalis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vena ophthalmica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vena posterior ventriculi sinistri": { "pos": "n", "pol": "0.25", "std": "0.0" }, "venae epigastricae superiores": { "pos": "n", "pol": "0.25", "std": "0.0" }, "venae pancreatica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "venerate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "venial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "verbatim": { "pos": "a", "pol": "0.25", "std": "0.0" }, "verbose": { "pos": "a", "pol": "0.25", "std": "0.0" }, "verify": { "pos": "v", "pol": "0.25", "std": "0.102" }, "verily": { "pos": "r", "pol": "0.25", "std": "0.0" }, "vernier caliper": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vernier micrometer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vertical section": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vesper": { "pos": "n", "pol": "0.25", "std": "0.0" }, "victory lap": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vie": { "pos": "v", "pol": "0.25", "std": "0.0" }, "violet-blue": { "pos": "a", "pol": "0.25", "std": "0.0" }, "virility": { "pos": "n", "pol": "0.25", "std": "0.0" }, "visaged": { "pos": "a", "pol": "0.25", "std": "0.0" }, "viscous": { "pos": "a", "pol": "0.25", "std": "0.088" }, "viselike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "visible horizon": { "pos": "n", "pol": "0.25", "std": "0.0" }, "visionary": { "pos": "a", "pol": "0.25", "std": "0.0" }, "visual acuity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "visual field": { "pos": "n", "pol": "0.25", "std": "0.0" }, "visual joke": { "pos": "n", "pol": "0.25", "std": "0.0" }, "visual range": { "pos": "n", "pol": "0.25", "std": "0.0" }, "visually challenged": { "pos": "a", "pol": "0.25", "std": "0.0" }, "visually impaired": { "pos": "a", "pol": "0.25", "std": "0.0" }, "vital force": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vitaliser": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vitalist": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vitalizer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vitamin E": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vitreous": { "pos": "a", "pol": "0.25", "std": "0.25" }, "vituperate": { "pos": "v", "pol": "0.25", "std": "0.0" }, "vivarium": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vocalisation": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vocational": { "pos": "a", "pol": "0.25", "std": "0.0" }, "vocational program": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vocational school": { "pos": "n", "pol": "0.25", "std": "0.0" }, "voidable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "voile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "volant": { "pos": "a", "pol": "0.25", "std": "0.0" }, "volatile memory": { "pos": "n", "pol": "0.25", "std": "0.0" }, "volatile storage": { "pos": "n", "pol": "0.25", "std": "0.0" }, "volatilisable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "volatilizable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "volcanic glass": { "pos": "n", "pol": "0.25", "std": "0.0" }, "volitionally": { "pos": "r", "pol": "0.25", "std": "0.0" }, "volleyball court": { "pos": "n", "pol": "0.25", "std": "0.0" }, "volleyball net": { "pos": "n", "pol": "0.25", "std": "0.0" }, "voltage divider": { "pos": "n", "pol": "0.25", "std": "0.0" }, "volumetric analysis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "voluminosity": { "pos": "n", "pol": "0.25", "std": "0.0" }, "voluminousness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "voluptuousness": { "pos": "n", "pol": "0.25", "std": "0.072" }, "vower": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vox": { "pos": "n", "pol": "0.25", "std": "0.0" }, "voyeurism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vroom": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vulcaniser": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vulcanizer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vulturine": { "pos": "a", "pol": "0.25", "std": "0.0" }, "vulturous": { "pos": "a", "pol": "0.25", "std": "0.0" }, "wages": { "pos": "n", "pol": "0.25", "std": "0.0" }, "waggishness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "wain": { "pos": "n", "pol": "0.25", "std": "0.0" }, "waiting game": { "pos": "n", "pol": "0.25", "std": "0.0" }, "walking on air": { "pos": "n", "pol": "0.25", "std": "0.0" }, "wall bracket": { "pos": "n", "pol": "0.25", "std": "0.0" }, "wall plate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "waning": { "pos": "n", "pol": "0.25", "std": "0.0" }, "wanted": { "pos": "a", "pol": "0.25", "std": "0.354" }, "warden": { "pos": "n", "pol": "0.25", "std": "0.0" }, "warm-toned": { "pos": "a", "pol": "0.25", "std": "0.0" }, "warmed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "warming": { "pos": "a", "pol": "0.25", "std": "0.265" }, "warming pan": { "pos": "n", "pol": "0.25", "std": "0.0" }, "warning bell": { "pos": "n", "pol": "0.25", "std": "0.0" }, "warranter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "warrantor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "wasp-waisted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "watch night": { "pos": "n", "pol": "0.25", "std": "0.0" }, "watchful": { "pos": "a", "pol": "0.25", "std": "0.0" }, "water hammer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "water wings": { "pos": "n", "pol": "0.25", "std": "0.0" }, "watercraft": { "pos": "n", "pol": "0.25", "std": "0.177" }, "watercress": { "pos": "a", "pol": "0.25", "std": "0.0" }, "watering hole": { "pos": "n", "pol": "0.25", "std": "0.0" }, "watering place": { "pos": "n", "pol": "0.25", "std": "0.0" }, "watery-eyed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "waxed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "wayward": { "pos": "a", "pol": "0.25", "std": "0.0" }, "weald": { "pos": "n", "pol": "0.25", "std": "0.0" }, "weaponed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "wearied": { "pos": "a", "pol": "0.25", "std": "0.0" }, "weatherglass": { "pos": "n", "pol": "0.25", "std": "0.0" }, "weatherstrip": { "pos": "v", "pol": "0.25", "std": "0.0" }, "webby": { "pos": "a", "pol": "0.25", "std": "0.0" }, "weblike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "wedge-shaped": { "pos": "a", "pol": "0.25", "std": "0.177" }, "weeklong": { "pos": "a", "pol": "0.25", "std": "0.0" }, "weensy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "weeny": { "pos": "a", "pol": "0.25", "std": "0.0" }, "weighing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "welcoming committee": { "pos": "n", "pol": "0.25", "std": "0.0" }, "welfare work": { "pos": "n", "pol": "0.25", "std": "0.0" }, "welfare worker": { "pos": "n", "pol": "0.25", "std": "0.0" }, "well-formed": { "pos": "a", "pol": "0.25", "std": "0.0" }, "well-grooved": { "pos": "a", "pol": "0.25", "std": "0.0" }, "well-known": { "pos": "a", "pol": "0.25", "std": "0.088" }, "well-mined": { "pos": "a", "pol": "0.25", "std": "0.0" }, "well-shaven": { "pos": "a", "pol": "0.25", "std": "0.0" }, "wellerism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "western lowland gorilla": { "pos": "n", "pol": "0.25", "std": "0.0" }, "wheel spoke": { "pos": "n", "pol": "0.25", "std": "0.0" }, "whicker": { "pos": "v", "pol": "0.25", "std": "0.0" }, "while away": { "pos": "v", "pol": "0.25", "std": "0.0" }, "whimsical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "whinny": { "pos": "v", "pol": "0.25", "std": "0.0" }, "whiskerless": { "pos": "a", "pol": "0.25", "std": "0.0" }, "white-collar": { "pos": "a", "pol": "0.25", "std": "0.0" }, "white-pink": { "pos": "a", "pol": "0.25", "std": "0.0" }, "white-shoe": { "pos": "a", "pol": "0.25", "std": "0.0" }, "white-tie": { "pos": "a", "pol": "0.25", "std": "0.0" }, "white knight": { "pos": "n", "pol": "0.25", "std": "0.0" }, "white room": { "pos": "n", "pol": "0.25", "std": "0.0" }, "white squire": { "pos": "n", "pol": "0.25", "std": "0.0" }, "whole-souled": { "pos": "a", "pol": "0.25", "std": "0.0" }, "wholehearted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "wholesale house": { "pos": "n", "pol": "0.25", "std": "0.0" }, "whooper swan": { "pos": "n", "pol": "0.25", "std": "0.0" }, "whopper": { "pos": "n", "pol": "0.25", "std": "0.088" }, "whoredom": { "pos": "n", "pol": "0.25", "std": "0.0" }, "wifelike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "wifely": { "pos": "a", "pol": "0.25", "std": "0.0" }, "willingly": { "pos": "r", "pol": "0.25", "std": "0.0" }, "wilted": { "pos": "a", "pol": "0.25", "std": "0.0" }, "wincey": { "pos": "n", "pol": "0.25", "std": "0.0" }, "windfall": { "pos": "n", "pol": "0.25", "std": "0.354" }, "winding": { "pos": "a", "pol": "0.25", "std": "0.088" }, "windless": { "pos": "a", "pol": "0.25", "std": "0.0" }, "windup": { "pos": "n", "pol": "0.25", "std": "0.0" }, "wing-shaped": { "pos": "a", "pol": "0.25", "std": "0.0" }, "wing chair": { "pos": "n", "pol": "0.25", "std": "0.0" }, "winglike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "winnow out": { "pos": "v", "pol": "0.25", "std": "0.0" }, "winter solstice": { "pos": "n", "pol": "0.25", "std": "0.0" }, "wisecrack": { "pos": "n", "pol": "0.25", "std": "0.0" }, "wishful": { "pos": "a", "pol": "0.25", "std": "0.088" }, "wishing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "wisplike": { "pos": "a", "pol": "0.25", "std": "0.0" }, "witch doctor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "wits": { "pos": "n", "pol": "0.25", "std": "0.0" }, "wizardry": { "pos": "n", "pol": "0.25", "std": "0.0" }, "wold": { "pos": "n", "pol": "0.25", "std": "0.0" }, "wolf-sized": { "pos": "a", "pol": "0.25", "std": "0.0" }, "womanish": { "pos": "a", "pol": "0.25", "std": "0.0" }, "womanlike": { "pos": "n", "pol": "0.25", "std": "0.0" }, "womanliness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "womb-to-tomb": { "pos": "a", "pol": "0.25", "std": "0.0" }, "wonderfully": { "pos": "r", "pol": "0.25", "std": "0.0" }, "wondering": { "pos": "a", "pol": "0.25", "std": "0.0" }, "wondrously": { "pos": "r", "pol": "0.25", "std": "0.0" }, "wont": { "pos": "n", "pol": "0.25", "std": "0.0" }, "woodcraft": { "pos": "n", "pol": "0.25", "std": "0.088" }, "woolgathering": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "woosh": { "pos": "v", "pol": "0.25", "std": "0.0" }, "wording": { "pos": "n", "pol": "0.25", "std": "0.0" }, "wordplay": { "pos": "n", "pol": "0.25", "std": "0.0" }, "wordy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "work time": { "pos": "n", "pol": "0.25", "std": "0.0" }, "workaday": { "pos": "a", "pol": "0.25", "std": "0.0" }, "worked up": { "pos": "a", "pol": "0.25", "std": "0.0" }, "workspace": { "pos": "n", "pol": "0.25", "std": "0.0" }, "world-wide": { "pos": "a", "pol": "0.25", "std": "0.289" }, "world record": { "pos": "n", "pol": "0.25", "std": "0.0" }, "worldly good": { "pos": "n", "pol": "0.25", "std": "0.0" }, "worldly possession": { "pos": "n", "pol": "0.25", "std": "0.0" }, "worldwide": { "pos": "a", "pol": "0.25", "std": "0.289" }, "worn out": { "pos": "a", "pol": "0.25", "std": "0.0" }, "woven": { "pos": "a", "pol": "0.25", "std": "0.0" }, "wrinkly": { "pos": "a", "pol": "0.25", "std": "0.0" }, "writing style": { "pos": "n", "pol": "0.25", "std": "0.0" }, "wrought": { "pos": "a", "pol": "0.25", "std": "0.0" }, "wry": { "pos": "a", "pol": "0.25", "std": "0.354" }, "xerography": { "pos": "n", "pol": "0.25", "std": "0.0" }, "yacht chair": { "pos": "n", "pol": "0.25", "std": "0.0" }, "yacht club": { "pos": "n", "pol": "0.25", "std": "0.0" }, "yacht race": { "pos": "n", "pol": "0.25", "std": "0.0" }, "yachting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "yagi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "yearlong": { "pos": "a", "pol": "0.25", "std": "0.0" }, "yellow-blindness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "yellow-breasted bunting": { "pos": "n", "pol": "0.25", "std": "0.0" }, "yellow-orange": { "pos": "a", "pol": "0.25", "std": "0.0" }, "yellow-tinged": { "pos": "a", "pol": "0.25", "std": "0.0" }, "yellow gurnard": { "pos": "n", "pol": "0.25", "std": "0.0" }, "yellowish-orange": { "pos": "a", "pol": "0.25", "std": "0.0" }, "yeti": { "pos": "n", "pol": "0.25", "std": "0.0" }, "young-begetting": { "pos": "a", "pol": "0.25", "std": "0.0" }, "youth crusade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "youth movement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "youth subculture": { "pos": "n", "pol": "0.25", "std": "0.0" }, "youthfulness": { "pos": "n", "pol": "0.25", "std": "0.0" }, "yummy": { "pos": "a", "pol": "0.25", "std": "0.0" }, "zero": { "pos": "v", "pol": "0.25", "std": "0.0" }, "zero-coupon security": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zero coupon security": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zero in": { "pos": "v", "pol": "0.25", "std": "0.0" }, "zero point": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zoning board": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zooid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zoomorphism": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zygodactyl": { "pos": "a", "pol": "0.25", "std": "0.0" }, "a cappella": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "abandoned person": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "abasic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "abatic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "abaya": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aberrant": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "abeyance": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "abhorrer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "abjection": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "abrasiveness": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "abrogator": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "abseil": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "absence seizure": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "absent": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "absolutist": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "absorbent cotton": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "abstrusely": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "abstrusity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "absurd": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "abused": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "abysmally": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "academic gown": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "academic robe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acanthotic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "acapnia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acarophobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acathexia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acaudal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "acaudate": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "accountability": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "accounting data": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "accusatory": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "accuser": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "accusing": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "accusive": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "acentric chromosome": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acetaminophen": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acetic anhydride": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "achieve": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "achlorhydria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "achlorhydric": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "achondrite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "achondroplastic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "achromatic color": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "achromatic colour": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acid-tasting": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "acid test": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acidophilus milk": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acidulousness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acousma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acoustic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acoustic buoy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acquired": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "acquired immunity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acrimonious": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "acroanaesthesia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acroanesthesia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acrophobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acrophobic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "acrylamide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acting": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "actinomycete": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "actinomycotic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "activewear": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acute glossitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acute kidney failure": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acute renal failure": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ad lib": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "ad libitum": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "adagio": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "addict": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "addlebrained": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "addlepated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "adhesive plaster": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "adiabatic process": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "adipose cell": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "adjudge": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "administrative": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "admiralty law": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "admonishment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "adscititious": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "adult-onset diabetes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "adult-onset diabetes mellitus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "adventure story": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "adventurism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "adversative conjunction": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "advowson": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "adynamic": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "aesthesis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "afeard": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "afeared": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "affectedness": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "affenpinscher": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "afferent": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "affront": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "again and again": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "agenesia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "agenesis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aggressively": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "agitprop": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "agonadal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "agonistical": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "agoraphobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "agoraphobic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "agranulocytosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "agranulosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "agraphic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "agrestic": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "agromania": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aigret": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aigrette": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ailurophobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "air attache": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "air current": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "air force academy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "air hole": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "airstrip": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alalia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alb": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "albinism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alcohol addiction": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alcoholism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "algolagnic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "algometry": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "all in": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "all the same": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "allegoriser": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "allegorizer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alleviant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alligator": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "alloy": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "alms": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alopecia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alopecia areata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alphabetisation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alphabetised": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "alphabetization": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alphabetized": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "alveolar arch": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alveolar process": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alveolar ridge": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "amastia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "amaurosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "amaurotic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ambagious": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ambivalent": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "amebic dysentery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "amenorrheal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "amenorrheic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "amenorrhoeal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "amenorrhoeic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "aminobenzine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "amiodarone": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ammonitic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ammunition": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "amnesia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "amnestic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "amoebic dysentery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "amygdalin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anaclitic depression": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "analphabet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "analphabetic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anaphrodisia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anaphylactic shock": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anaplasia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anaplasmosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anaplastic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "anarthria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anatomical": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anatomical reference": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "androphobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anecdote": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anechoic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "angina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "angina pectoris": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "angiohemophilia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "angiopathy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "angioplasty": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "angle of attack": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "angle of extinction": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anglophobe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anhidrosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anhydrosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anile": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "aniline": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aniline oil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "animal disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "animal order": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anion": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anionic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ankylotic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "annex": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "annihilating": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "annihilative": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "annoyingly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "annul": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "anomalous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "anonymous": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "anonymously": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "anopia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anorexia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anorexia nervosa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anovulation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anoxemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anoxia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anoxic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "answerability": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "answerableness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antennal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "antennary": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "anthracitic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "anti-G suit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anti-Semitism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antiaircraft fire": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antiarrhythmic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antiarrhythmic drug": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antiarrhythmic medication": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antidiarrheal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antidiarrheal drug": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antiestablishmentarianism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antiestablishmentism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antifeminist": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antimacassar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antimony potassium tartrate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antipersonnel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "antipope": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antiprotozoal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antiprotozoal drug": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antipyretic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antisatellite": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "antisemitism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antiserum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antisocial": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "antisocial personality disorder": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antisubmarine": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "antler moth": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anuresis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anuria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anurous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "anxiety attack": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anxiety neurosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aoudad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aplasia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "apogametic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "apogamic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "apogamous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "apologise": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "apologize": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "apoptosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "apostate": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "apostatise": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "apostatize": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "apotropaic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "appendicular skeleton": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "appetence": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "appetency": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "appetite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "appetitive": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "apple-shaped": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "apple butter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "applejack": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "appraise": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "approach trench": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "appropriator": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "approximative": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "aquaphobic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "arachnophobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "araroba": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arginine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "argonaut": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arguably": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "arguing": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arianist": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aridness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arm pad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "armed combat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "armed robbery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "armed service": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "armillary": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "arms-runner": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aromatise": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "aromatize": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "around the bend": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "around the clock": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "arrest warrant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arse about": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "arson": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "art historian": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arteria circumflexa ilium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arthritis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arthroscopy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "article of clothing": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "artiodactyl": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "artiodactylous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "arui": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asa dulcis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asafetida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asafoetida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ascitic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "asexuality": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ashamedly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "asleep": { "pos": "a", "pol": "-0.25", "std": "0.072" }, "assailable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "assailant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "assault and battery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "assaulter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "associative aphasia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "assuasive": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "astasia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asthenic": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "asthma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asthma attack": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asthmatic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asyndetic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "asynergic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "at a loss": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "at bay": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "at fault": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "at large": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "at odds": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "at the worst": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "at will": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "at worst": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "ataraxis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atelectasis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "athletic wear": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atom-bomb": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "atomic number 22": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atomic number 24": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atomic number 25": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atomic number 27": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atomic number 31": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atomic number 34": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atomic number 4": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atomic number 73": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atomic weapon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atomist theory": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atomistic theory": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atopic dermatitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atopic eczema": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atopognosia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atopognosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atrociously": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "atrociousness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "attack aircraft": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "attacker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "attemper": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "attempted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "attempter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "attentional": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "attorney general": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "attractive nuisance": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atypically": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "audad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "auditory hallucination": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "auditory hyperesthesia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "auditory system": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "authoriser": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "authorizer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "autism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "autoimmune diabetes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "automobile insurance": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "autotomy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "avaritia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "avenge": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "avenger": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aversive conditioning": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "avitaminosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "awarding": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "awhile": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "axle bar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "azote": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "babel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "babiroussa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "babirusa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "babirussa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "babushka": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "baby": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bacillary dysentery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bacillary white diarrhea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bacillary white diarrhoea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "back talk": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "backbench": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "backbiter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "backfield": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "backplate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "backslap": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "backtalk": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bacteria order": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bacteriologic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bacteriological": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bacteriological warfare": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bad check": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bad cheque": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bad hat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bad manners": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "baddie": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "badger": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "badmouth": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "baffling": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bagel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "baggy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bailiff": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bailiffship": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "baking": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "baking hot": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "balefully": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "balking": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "balky": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ballistic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ballyrag": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "balsam of Peru": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bam": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "banal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bandy about": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "banefully": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "bank bill": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bank check": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bank note": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "banker's bill": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "banknote": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bar exam": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bar examination": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barbarian": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barbarousness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barbet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bareback": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "barebacked": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "barefoot": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "barefooted": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "barely": { "pos": "r", "pol": "-0.25", "std": "0.088" }, "bargain down": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "baronetise": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "baronetize": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "barrater": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barrator": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barrel-shaped": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "barrelhouse": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barren": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barricado": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "basalt": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "basaltic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "base of operations": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "baseborn": { "pos": "a", "pol": "-0.25", "std": "0.265" }, "baseless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bash": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "basic slag": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bastard pimpernel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bastardization": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "bated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "batfowl": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bathing costume": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bathing suit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bathrobe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bats": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "battering": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "batting helmet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "battle flag": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "battle fleet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "battle of Ipsus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "battle of Issus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "battle of Ivry": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "battle of Marathon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "battle of Marston Moor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "battle of Minden": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "battle of Panipat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "battle of Wagram": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "battle sight": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "battlefield": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "battlefront": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "battleground": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "battlesight": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "battue": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "batty": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bawling": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bay wreath": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "be on": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "be quiet": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "beach erosion": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "beachwear": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "beady-eyed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "beanie": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "beany": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bearable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bearded iris": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "beardless iris": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "beat": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "becloud": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bedaubed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bedeck": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bedight": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bedimmed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bedizen": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "bedlamite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bee sting": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "befog": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "befooling": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "beggar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "behaviorist": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "behavioristic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "behaviourist": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "behaviouristic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "beigel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "beldam": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "beldame": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "beleaguering": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bellicoseness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bellicosity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "belly flop": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "belly flopper": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "belly whop": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "belly whopper": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bellyacher": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "belt bag": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "belt up": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bemock": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bench warrant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bend dexter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bends": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "benighted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "benign tumor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "benign tumour": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "benjamin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "benzoin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bereaved person": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "beryllium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "besieging": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bet": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "beta-adrenergic blocker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "beta-adrenergic blocking agent": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "beta-blocking agent": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "beta blocker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "beta endorphin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "beta particle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "beta radiation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "beta ray": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bete noire": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "betrayal": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "bezoar goat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bide": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "big-ticket": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bigheaded": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bigoted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bijou": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bikini pants": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "billingsgate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bing cherry": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "binge-purge syndrome": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "binge-vomit syndrome": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "biological terrorism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "biosafety level 2": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bioterrorism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "biotite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "biotitic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bipinnatifid": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "birch oil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bird-footed dinosaur": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bird feeder": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bird of prey": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "birdfeeder": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "birth trauma": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "birthmark": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bitchy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "biting": { "pos": "a", "pol": "-0.25", "std": "0.265" }, "bitters": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bitterwood tree": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "black-backed gull": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "black-coated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "black-market": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "black archangel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "black art": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "black calla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "black cherry tree": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "black cypress pine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "black horehound": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "black kite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "black magic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "black opal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "black rhinoceros": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "black root rot fungus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "black sheep": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "black walnut tree": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blackamoor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blackberry bush": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blackdamp": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blacken": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "blackface": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blackguard": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blackheart cherry": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blackish": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "blackwater": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blade bit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blameworthiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blanc": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blanch": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "blast off": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "blast trauma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blaze": { "pos": "n", "pol": "-0.25", "std": "0.271" }, "bleakly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "bleakness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blear": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "blebbed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "blight": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bling": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bling bling": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blink away": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "blizzard": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "blob": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blockhead": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blood": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "blood agar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blood poisoning": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blood sport": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bloodbath": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bloodlust": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bloody-minded": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "blouse": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blow off": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "blub": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "blue funk": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blue jean": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blue note": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blue point Siamese": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bluetongue": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blunder out": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "blunderer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blunted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "blurt": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "blurt out": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "blustery": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "boarhound": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boat paddle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bobtailed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "body bag": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "body louse": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "body odor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "body odour": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bogeyman": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boil smut": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boilers suit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boilersuit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boisterous": { "pos": "a", "pol": "-0.25", "std": "0.191" }, "bola tie": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boldly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "boldness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bollworm": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bolo tie": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bonduc nut": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bone-idle": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bone-lazy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bone fat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bonehead": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boneshaker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bonkers": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "booby trap": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "boogeyman": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boorishly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "bootboys": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "booted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bootleg": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bootlegger": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bootlegging": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bootless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "boringness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boron chamber": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "borrelia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bosom of Abraham": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boss around": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "botcher": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "botheration": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "bothered": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "botulinum toxin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "botulism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boucle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bouncing putty": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boundlessly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "bounty hunter": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "boutonniere": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bowler hat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boxing glove": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boxing ring": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bracelet wood": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brachial": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bradycardia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brainsick": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "brake failure": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brakeman": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "branding": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brant goose": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brashly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "bravado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brave": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "brave out": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "brazenness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "break-axe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "breakax": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "breakaxe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "breaking": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "breathe out": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "breathed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "brent": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brent goose": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "briarroot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "briber": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brickbat": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "bridal gown": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bridge agent": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bridgehead": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bridle": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "brightly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "brinkmanship": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bristle brush": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "broad-minded": { "pos": "a", "pol": "-0.25", "std": "0.442" }, "bromic acid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bronchial asthma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bronchoscopic smear": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bronzed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "brooder pneumonia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "browbeat": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "brown rot gummosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "browned": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "brownish yellow": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brush fire": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brutally": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "bruxism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bubonic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "budgereegah": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "budgerigar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "budgerygah": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "budgie": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "buffalo chip": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "buffer country": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "buffer state": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "buffeted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bugaboo": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "bugger all": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bulbar": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bulima nervosa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bulimarexia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bulimic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bullyrag": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bulwark": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bum": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bum about": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bum around": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bumbler": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bummer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bump": { "pos": "v", "pol": "-0.25", "std": "0.112" }, "bump into": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bumpkin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bunco": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "bunco game": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "buncombe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bunghole": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "bungler": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bunko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bunko game": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bunkum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bunya bunya tree": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "burbling": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "burbly": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "burglar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "burka": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "burn center": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "burqa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "busby": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bushed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bustier": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "butcher": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "butt pack": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "button up": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "butyric": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "buy it": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "by small degrees": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "byrnie": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bystander": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cabala": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cabbage-bark tree": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cabbage bark": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cabbala": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cabbalah": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cachectic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "cacodaemon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cacodemon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cadaver": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cadaveric": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "cadger": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caffein": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caffein addiction": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caffeine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caffeinic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "caftan": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caimitillo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caisson disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "calamitous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "calamity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caldera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "calling into question": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "callithump parade": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "callosity": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "calpac": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "calpack": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "calumniously": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "camelpox": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "camise": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "camisole": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "campylotropous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "can of worms": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "canalis inguinalis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cancer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cancer of the blood": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "candy cane": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "canker sore": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cankerous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "canthus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "capital of Tibet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caprylic acid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "car insurance": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carbon black": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carbon monoxide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carbon monoxide gas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carbon paper": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carbuncular": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "carcase": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carcass": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carcinoid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "card-house": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cardcastle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cardhouse": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cardinal virtue": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cardiovascular disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "careen": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "careworn": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "carjack": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "carjacking": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cark": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "carnassial tooth": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carper": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carping": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carrier wave": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carrion fungus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carry back": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cartilaginous": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "carve up": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "case-to-infection proportion": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "case-to-infection ratio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caspase-mediated cell death": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cassock": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "castration anxiety": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cat cracker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cat scratch disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cat sleep": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "catabiosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "catalytic cracker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "catch out": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "catch some Z's": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "catnap": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cattish": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "cattle plague": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "catty": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "causeless": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "caustic": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "cavalry horse": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cave in": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "caveat emptor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caviuna wood": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cefotaxime": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ceftriaxone": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cell-free": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "cellulitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "centrifugal force": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "centrifugal pump": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cephalexin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cerebral palsy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ceruse": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cervical disc syndrome": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cervical root syndrome": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chafeweed": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chaffweed": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chalk dust": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "challenger": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chance on": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "chance upon": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "chancre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chancrous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "changefulness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chaparral": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "charlatanism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chartless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "chasteness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chastisement": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chasuble": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chawbacon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cheekily": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "cheep": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cheesy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "chemical attraction": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chemical weapon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chemistry department": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cheque": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chess move": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chess piece": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chessman": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chest protector": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chicken": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "chicken-fight": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "chickenfight": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "chickenhearted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "chickenpox": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chickenshit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chief assistant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chigetai": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chignon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chills and fever": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chip shot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chipboard": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chiralgia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "choke up": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "chokecherry tree": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chokedamp": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cholera morbus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chomp": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "chouse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "christ": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chromaesthesia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chromatism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chromatographic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "chromatographical": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "chromesthesia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chromic acid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chromium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chronic gastritis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chronic kidney failure": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chronic obstructive pulmonary disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chronic renal failure": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chrysarobin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chuck": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "chuck up the sponge": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "chuffed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "chug": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "churidars": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cinerarium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cinerary": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "cingulum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "circulative": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "circumflex iliac artery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "circumlocutious": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "circumlocutory": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "circumvention": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cirrhosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cirrhosis of the liver": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "civil contempt": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "clam up": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "clamoring": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "clamour": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "clamouring": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "clamp down": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "clang": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "claret": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "class Ascidiaceae": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "class Cycadopsida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "class Hymenomycetes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "class Larvacea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "class Thaliacea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "classification system": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "claustrophobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "claw": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cleft palate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "clinical depression": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "clinical psychologist": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "clinical psychology": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "clinker brick": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "clinodactyly": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "clip art": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "clock-watching": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "close supporting fire": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "clostridial myonecrosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "clothes basket": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "clothes hamper": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "clothes moth": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "clothing": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "clout": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "club steak": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "clubbing": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "clumsy": { "pos": "a", "pol": "-0.25", "std": "0.102" }, "coarseness": { "pos": "n", "pol": "-0.25", "std": "0.12" }, "coaxer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cobalt": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cobble together": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cobble up": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "coccidioidomycosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "coccidiomycosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cocker": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cocktail table": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cocoon": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "coddler": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "codify": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "coenzyme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "coffee fungus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "coffee table": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cola nut": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cold": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "cold-blooded": { "pos": "a", "pol": "-0.25", "std": "0.265" }, "cold-bloodedly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "cold-shoulder": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cold gangrene": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cold sober": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "cold sweat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "colic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "collared peccary": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "collectable": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "collectible": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "collywobbles": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "colon cancer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "colonisation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "colonise": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "colonist": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "colonization": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "colonize": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "colored": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "colored person": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "combat injury": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "combat intelligence": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "combat ship": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "combatant": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "combativeness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "combustion": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "commandeer": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "commercial-grade": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "comminatory": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "common arrowhead": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "common dogbane": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "common flat pea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "common iliac vein": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "common mackerel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "commonplace": { "pos": "a", "pol": "-0.25", "std": "0.144" }, "communication trench": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "comparative": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "compassionate leave": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "compassionately": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "competitor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "complainer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "complement fixation test": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "complicity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "compromise verdict": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "compromiser": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "compulsive": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "compulsory process": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "compute": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "computer crime": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "computer error": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "con game": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "conceited": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "conceive of": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "conceptus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "conclusively": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "concrete jungle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "condescension": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "condolent": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "conduction aphasia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "conessi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "confidence game": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "confidence trick": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "conflagration": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "conflicting": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "confrontational": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "confutable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "confutative": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "conquering": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "conscience money": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "conservation of mass": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "conservation of matter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "conservationist": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "constipated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "constipation": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "consumptive": { "pos": "a", "pol": "-0.25", "std": "0.265" }, "contemptibly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "contemptuously": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "contender": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "contentiousness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "contestation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "continually": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "contraband": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "contradict": { "pos": "v", "pol": "-0.25", "std": "0.102" }, "contrarian": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "contrarious": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "controversy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "controvert": { "pos": "v", "pol": "-0.25", "std": "0.177" }, "contumacious": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "contumelious": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "contumeliously": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "conviction": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "convolute": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "coolie": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cooly": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "coon": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "cootie": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cop": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cop out": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "copper's nark": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "coppice": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "coprolith": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "copse": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "coquilla nut": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cor pulmonale": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "coral root": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cordless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "corn chip": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "corn earworm": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cornered": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "coronary heart disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "corpse": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "corpulent": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "correctional": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "correctional rehabilitation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "corrode": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "corroded": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "corrugated fastener": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "corundom": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "corundum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cosset": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cost": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "costless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "cotton ball": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cotton bollworm": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cotton on": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cough": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "coughing": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "count down": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "counterchallenge": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "counterglow": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "counterintelligence": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "counteroffensive": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "counterproductive": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "coup d'etat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "court plaster": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cover glass": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cover slip": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "covering fire": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cow chip": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cow dung": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cow pie": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cowardice": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cowardliness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cowardly": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "cowboy boot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cowboy hat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cowpie": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cowpox": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cozenage": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crabby person": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crack down": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "crack up": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "crackdown": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cracked": { "pos": "a", "pol": "-0.25", "std": "0.072" }, "crackers": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "crackpot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cragged": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "craggy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "crank call": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crankiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crapshoot": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "crapulent": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "crash helmet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crassitude": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crassness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crawl in": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "crawl space": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crawlspace": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "craziness": { "pos": "n", "pol": "-0.25", "std": "0.144" }, "creep up": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "crepitation rale": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cress plant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cretinism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "criminal negligence": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "criminalism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "criminality": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "criminalness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "criminological": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "crimson": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "crippling": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "criticalness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crop failure": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crossly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "crotchetiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "croton oil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crow garlic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crown gall": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crown of thorns": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "crown wart": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crownless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "crownwork": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cruciality": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crucian carp": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crummy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "cry for": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cry out for": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cryobiology": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cryogenics": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cryogeny": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cryopathy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cryophobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cryptogram": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cuckoopint": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cudgel": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cue": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cuisse": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "culpability": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "culpable negligence": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "culpableness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cup final": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "curing": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "curiosa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "curly endive": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "curmudgeon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "current of air": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "curst": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "curtainless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "curtly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "cussedly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "cut-and-thrust": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cut into": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cutthroat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cybercrime": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cyclonal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "cyclonic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "cyclonical": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "cynophobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cystoparalysis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cystoplegia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cytopenia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "daemon": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "daft": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "daftness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "damnable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "damned": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "damp": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "damping off fungus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dampness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "damson": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "danger": { "pos": "n", "pol": "-0.25", "std": "0.161" }, "dark-field microscope": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dark adaptation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dark field illumination": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dark ground illumination": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dark matter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "darkey": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "darkie": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "darky": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "darling pea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dauber": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "daunted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "dauntlessly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "day after day": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "day in day out": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "de-escalation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "de Broglie": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dead body": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dead duck": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deadened": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "deadening": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deadeye": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deadliness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deadlock": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deafened": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "deafening": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "death's head": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "death-roll": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "death bell": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "death camp": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "death mask": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "death seat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deathless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "deathlike": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "debasing": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "debauchee": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "debilitative": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "debridement": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "decalescent": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "deception": { "pos": "n", "pol": "-0.25", "std": "0.144" }, "deceptiveness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deckle edge": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "decline in quality": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "decompositional": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "decompression sickness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deconsecrate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "deconsecrated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "dedifferentiation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deep-fry": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "deep freeze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deer fly fever": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deer trail": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deerstalker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "defacement": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "defalcate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "defamer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "defeatist": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "defectiveness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "defensive structure": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "defervescent": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "defiant": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "defiled": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "deformed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "deformity": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "defraud": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "degust": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "deity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "delinquent": { "pos": "a", "pol": "-0.25", "std": "0.125" }, "delve": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "demand for explanation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "demented": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "demerit": { "pos": "n", "pol": "-0.25", "std": "0.265" }, "demimonde": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "demoniac": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "demoniacal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "demoniacally": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "demyelinate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "denaturant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dendrite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "denounce": { "pos": "v", "pol": "-0.25", "std": "0.063" }, "dent corn": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "denunciative": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "denunciatory": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "deodorant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deodourant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "department of chemistry": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deployment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deprecative": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "depreciation allowance": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "depressingly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "depressive disorder": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "derange": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "derate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "derby": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "derby hat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dermatomycosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dermatomyositis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dermatophytosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "descending": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desert holly": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desert rheumatism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desideratum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desist": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "desk": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desk officer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desolately": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "despoilation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "despoiler": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "despoilment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "despoliation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "despotical": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "destroyable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "destructively": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "detecting": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "detective work": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deter": { "pos": "v", "pol": "-0.25", "std": "0.177" }, "deterioration": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "detumescence": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deus ex machina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "devil's advocate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "devilment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "devilwood": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "devitalise": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "devitalize": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "devour": { "pos": "v", "pol": "-0.25", "std": "0.063" }, "dhoti": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "diabetic retinopathy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "diabolically": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "diabolist": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "diacetylmorphine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "diagnostics": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "diamond point": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "diarrhea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "diarrhoea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dibber": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dibble": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dictyopteran": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "diffraction": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "digging": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "digression": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "diltiazem": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "diluent": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dilutant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dilute": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "dimly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "din": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "dingo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dinner dress": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dinner gown": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dioxin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "diplomatic immunity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dipsomania": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "direct contrast": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dirt ball": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dirt cheap": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "dirtiness": { "pos": "n", "pol": "-0.25", "std": "0.26" }, "dirty pool": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disaccord": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "disaffected": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "disagreeable woman": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disagreeably": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "disappointing": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "disarrangement": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disastrous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "disbar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "disceptation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "discoid lupus erythematosus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "discombobulated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "discomfort": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "discomposed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "disconcerted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "disconsolately": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "discouragingly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "discovered check": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disfigured": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "disgruntled": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "disheveled": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "dishevelled": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "dishonorableness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dishonourableness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disinfection": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disingenuous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "disorganized schizophrenia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disorganized type schizophrenia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disproportion": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disqualify": { "pos": "v", "pol": "-0.25", "std": "0.265" }, "disquiet": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "disreputable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "disreputable person": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disrespectful": { "pos": "a", "pol": "-0.25", "std": "0.265" }, "dissatisfactory": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "dissatisfied": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "dissenting": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "dissever": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "dissolutely": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "distastefulness": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "distraught": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "distrust": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "disturbance": { "pos": "n", "pol": "-0.25", "std": "0.061" }, "divagate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "diverseness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "diverticulitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "divestiture": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "diving dress": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "diving suit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dizzily": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "do-or-die": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "doctor up": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "dodderer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dog biscuit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dog bite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dog rose": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dogbane": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dolman jacket": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "doltishly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "domineer": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "domineeringness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dongle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "donkey": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "donkeywork": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "doodad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "doohickey": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "doojigger": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dopey": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "dopy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "dosshouse": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "double indemnity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "doublet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "doughy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "downdraft": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "downgrade": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "downhill": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "downiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "downward": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "downy ash": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "doze": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "drag through the mud": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "drake": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "draw a blank": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "dray": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dreariness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dress out": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "dressing gown": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "drey": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "drib": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "driblet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "drive-by shooting": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "drivel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dronabinol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "drool": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "drool over": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "droopy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "drop away": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "drop by the wayside": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "droppings": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dross": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "drudge": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "drudgery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "drug baron": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "drug bust": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "drug dealer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "drug lord": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "drug peddler": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "drug traffic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "drug trafficker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "drug trafficking": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "drugs bust": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "drumhead": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "drumstick": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "drunkard": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dry gangrene": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dud": { "pos": "n", "pol": "-0.25", "std": "0.125" }, "duffer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dully": { "pos": "r", "pol": "-0.25", "std": "0.088" }, "dumbass": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dumbness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dumdum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dumdum bullet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dumpiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dumpsite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dunce": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dunderhead": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dung": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dungeon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "duskiness": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "dwarfism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dynamic balance": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dynamite": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "dysentery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dyslexic": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "dysosmia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dysostosis multiplex": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dyspepsia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dysphemism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dysplasia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dyspnea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dyspneal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "dyspneic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "dyspnoea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dyspnoeal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "dyspnoeic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "dysthymia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dysthymic depression": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dystrophy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dziggetai": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "earful": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "earless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "earliest": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "earliness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "earsplitting": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "earthenware": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "east-west direction": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eat at": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "eat into": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "eavesdrop": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ebonise": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ebonite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ebonize": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ebony tree": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ebullient": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "eburnation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ecclesiastical province": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ecstatic state": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ectrodactyly": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eery": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "effluent": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "effortful": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "effortfulness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "effortlessly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "egalite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "egality": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "egomania": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "elbow pad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eldest": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eldritch": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "electric field": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "electrocute": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "electrocution": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "electrocutioner": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "electromagnetic interaction": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "electron lens": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "electron radiation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "electronic simulative deception": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "electronic warfare": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "electrosleep": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "elementary particle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "elephantiasis neuromatosa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "elide": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "elmwood": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "elusiveness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "emancipator": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "embezzle": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "embitterment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "emboldened": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "embolic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "embrangle": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "emery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "emphysematous gangrene": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "emphysematous phlegmon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "en garde": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "encainide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "encephalitis lethargica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "encirclement": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "encopresis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "encounter": { "pos": "n", "pol": "-0.25", "std": "0.12" }, "encumbered": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "endemic disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "endocarp": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "endogenous depression": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "endomorphy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "endurable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "enervating": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "enfeebling": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "enforced": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "engagement ring": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ensconce": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "enteric fever": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "enterotoxemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "enterprise": { "pos": "n", "pol": "-0.25", "std": "0.125" }, "enterprisingness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "entombment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "entomophobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "environmentalist": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "envisage": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "eosinophilia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "epauliere": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ephemeral": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ephemerality": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ephemeralness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "epicanthic fold": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "epicanthus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "epicardia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "epidemic encephalitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "epidemic parotitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "epidemic roseola": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "epidemiologic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "epidemiological": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "epidemiology": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "epigastric fossa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "epileptic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "equinoctial storm": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "equivocalness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eradication": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ern": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "erne": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "error correction code": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "erythema multiforme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escapade": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "escapism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eschatology": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espresso maker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "essayer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esthesis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ethanediol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ethnic joke": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ethylene glycol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "etude": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "euthanasia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eutrophication": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "evacuee": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "evasive answer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "even-toed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "even so": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "evening gown": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "evidently": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "evil-minded": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "evilly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "evilness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "exanthem": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "exanthema": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "exasperatingly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "excerpt": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "excessive": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "exclusively": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "excrescence": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "excreting": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "excretory": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "exit poll": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "exodus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "exorcism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "expiative": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "expiatory": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "explode a bombshell": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "export duty": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "expostulation": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "extemporaneous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "extemporary": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "extempore": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "extend oneself": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "exterminable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "exterminate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "extinction angle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "extinguished": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "extirpable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "extralinguistic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "extremism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eye bank": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eye rhyme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eyeglass wearer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eyeglasses": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eyelash": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "face saver": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "face saving": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "faceless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "facilitative": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "factor IX": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fading": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "faecalith": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fag out": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "faineance": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "faineant": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "faintly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "fakery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "falcon": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "fall by the wayside": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "fall upon": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "false alarm": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "false face": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "false garlic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "false pimpernel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "false pretence": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "false pretense": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "false return": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "falsehood": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "falsifying": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "falsity": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "familial hypercholesterolemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "family Entomophthoraceae": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "family Haemulidae": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "family Helvellaceae": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "family Melampsoraceae": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "family Myrmecophagidae": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "family Psilotaceae": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "family Trionychidae": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "family Xylariaceae": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fanny pack": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fantasy": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "fantasy world": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "farthingale": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fat cell": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fat person": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fatal accident": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fathead": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "father figure": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "father surrogate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fatigability": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fatigues": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fatso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fattish": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "faultiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "faulting": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fay": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "faze": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "fazed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fearless": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "fearlessly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "fearlessness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "feather ball": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "featheriness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "featherless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "febrifuge": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fecal impaction": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fecalith": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fecklessness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "feculence": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "federal tax lien": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "feist": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fellow feeling": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fern seed": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fernless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fertilized egg": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fervently": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "fervidly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "fetal distress": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fetid horehound": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "feud": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fewness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fibrinolysis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fice": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fictitious name": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fiddle with": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "field event": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "field garlic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "field hospital": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "field of battle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "field of force": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fiendishly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "fieri facias": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fierily": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "fifth column": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fig wax": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fighter aircraft": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "figural blindness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "figure of speech": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "finagle": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "final injunction": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "finch": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "finger-pointing": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fingerpointing": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "finitely": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "fire-raising": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fire-resistant": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fire-resisting": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fire-resistive": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fire-retardant": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fire company": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fire insurance": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fire salamander": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fire ship": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fire thorn": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fire warden": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "firearm": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fireproof": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "firestorm": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "firethorn": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "firework": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "firstborn": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fisheye": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fisheye lens": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fishtail bit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "five iron": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "flabby": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "flash flood": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "flashflood": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "flavorless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "flavourless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fleabag": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fleetingness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "flight strip": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "flimflam": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "flint corn": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "flint maize": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "flip": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "flip out": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "flippant": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "floating policy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "floccose chanterelle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "flogger": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "floor": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "flop": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "flophouse": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "flora": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fluctuate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "fluctuating": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fluffiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fluid drive": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "flunk": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fluosilicic acid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "flushless toilet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "flustered": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fly-fishing": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fly agaric": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fly casting": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "flying gecko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "flying visit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fob off": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "focal seizure": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "foetal distress": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fog": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "foist off": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "folie": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "folklore": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "follow up on": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "fomite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "foodless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fool away": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "foolery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "footpad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "footrest": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "footstool": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "footwall": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "for 24 hours": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "for a while": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "force field": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "force pump": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "forebode": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "foresightedness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "foresightfulness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "forest fire fighter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "foretaste": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "forewarn": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "forewarning": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "forged": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "forgery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "forked": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "formidability": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "forthwith": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "forty winks": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "found": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "foundation garment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "four-centered arch": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fox": { "pos": "v", "pol": "-0.25", "std": "0.144" }, "fox-trot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "foxtrot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fragile": { "pos": "a", "pol": "-0.25", "std": "0.144" }, "franchise tax": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fraud in the factum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fraudulence": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "fraudulent scheme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frazzle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "free-and-easy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "free-enterprise": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "free-soil": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "freebooter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "freeze down": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "freeze out": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "french-fry": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "frenetically": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "frenzy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frequently": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "fresh breeze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fresh gale": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "friar preacher": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "friction match": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "friendship plant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frig around": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "frightfulness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frigorific": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fringed gecko": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frippery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frisson": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fritter": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "fritter away": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "frivol away": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "frivolous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "from nowhere": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "from scratch": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "front-runner": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "front line": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frontbencher": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frontlet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frostbite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frown on": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "frown upon": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "frowsy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "frowzled": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "frowzy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fruitless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fruitlessness": { "pos": "n", "pol": "-0.25", "std": "0.354" }, "fuck all": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fuckhead": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fuddy-duddy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fuel-air bomb": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fug": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fugacious": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fugacity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "full-dress uniform": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fulminate": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "fulsomeness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fumaric acid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fumbler": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fumbling": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fundamental law": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "funeral": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "funerary": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "funky": { "pos": "a", "pol": "-0.25", "std": "0.213" }, "funnily": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "furunculosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fuss-budget": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fussily": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "fussiness": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "fusspot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fustigate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "galactosemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "galbanum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gallium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "galvanic cell": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gambling system": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gambrel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gambrel roof": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gamma globulin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ganef": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gangrene": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "gangrenous emphysema": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gangster": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ganof": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gaolbird": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gaoler": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "garbage dump": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "garble": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "garden snail": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gargoylism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "garibaldi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "garland flower": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "garnishment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "garotte": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "garrote": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "garrotte": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "garter belt": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gas": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "gas gangrene": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gas helmet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gas phlegmon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gaseous state": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gaskin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gasmask": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gasp": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "gastritis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gateau": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gawkiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gazillion": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gazump": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "gean": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "geezer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gegenschein": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "general anaesthetic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "general anesthetic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "general practitioner": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genetic fingerprint": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genetic screening": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gentle breeze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gentle wind": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Aethusa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Amsinckia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Anastomus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Anchusa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Anthonomus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Antilope": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Bauhinia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Bos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Brachystegia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Cardamine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Cassiope": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Cerapteryx": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Cercosporella": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Cocculus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Coptis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Crescentia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Dendroctonus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Dipsosaurus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Empetrum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Entoloma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Latrodectus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Lepiota": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Limenitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Monarda": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Ozonium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Physostigma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Phytophthora": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Pythium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Reticulitermes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Rosellinia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Scleroderma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Serrasalmus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Streptopelia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Syringa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Tussilago": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus Veratrum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "geographic expedition": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "geological fault": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "geometric progression": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gerfalcon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "germ warfare": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "germaneness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "get around to": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "get onto": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "get the best": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "get wise": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ghastliness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gibbous": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "giddily": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "gilbert": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gimmick": { "pos": "n", "pol": "-0.25", "std": "0.144" }, "gin": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "gip": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "give it a whirl": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "give tongue to": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "glanders": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "glareole": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "glaringly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "glasses": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "glassless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "glee": { "pos": "n", "pol": "-0.25", "std": "0.265" }, "gliricidia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "glitch": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "global aphasia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "glove anesthesia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "glucinium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "glyptics": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gnathion": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gnaw at": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "go-around": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "go-kart": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "go to bed": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "go to pot": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "go to sleep": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "go to the dogs": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "goading": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "goatee": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "goggles": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "going-over": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "goldbrick": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "golden section": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "golf ball": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gondang wax": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gonif": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "goniff": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gonion": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gonorrhea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gonorrhoea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "goo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "goose bump": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "goose pimple": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "goose skin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "goosebump": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gooseflesh": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gooselike": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "goosey": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "goosy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "gorget": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "government-in-exile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "government note": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "graininess": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "granitic": { "pos": "a", "pol": "-0.25", "std": "0.354" }, "granny knot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "granularity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "granulocytopenia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "granuloma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "grape louse": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "grape phylloxera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "grappling": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "grass parakeet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gratis": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "gravely": { "pos": "r", "pol": "-0.25", "std": "0.088" }, "gravitational field": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gray": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "gray sea eagle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "grayish": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "greaser": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "great black-backed gull": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "greatcoat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "greaves": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "green paper": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "greenback": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "greeting": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "grey": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "grey sea eagle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "greyish": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "grime": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "grimly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "grimoire": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gripes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "griping": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gritrock": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gritstone": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "groping": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "gross estate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "grouchily": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "ground attack": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ground cloth": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "groundless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "groundling": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "groundsheet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "group Centrospermae": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "growth-onset diabetes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "grub out": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "grub up": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "grubby": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "gruesomeness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "grumbler": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "grumpily": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "grumpiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "grunge": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gubbins": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guck": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guerilla force": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guerrilla force": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guesser": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guff": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guilt by association": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guimpe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gum albanum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gum benjamin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gum benzoin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gum ridge": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gum up": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "gumming": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gunk": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gunrunner": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gust": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gustative": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "gustatorial": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "gustatory": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "gustatory cell": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gutless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "gutsy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "gynogenesis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gyp": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "gyrfalcon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "habergeon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "habiliment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "habitual criminal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hacker": { "pos": "n", "pol": "-0.25", "std": "0.063" }, "hackneyed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "haemoptysis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "haick": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "haik": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "haiku": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hair-shirt": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hair-shirted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "half-clothed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "half-heartedly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "hallstand": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hallucinating": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hamartia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hand-to-hand struggle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hand truck": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hands-off": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hang-up": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "happen upon": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "happy-go-lucky": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "haranguer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hard-fought": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hard-shelled": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hard roll": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hard rubber": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hard time": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "hard up": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hard worker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hardboard": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hardpan": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hardscrabble": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hardware key": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "harm": { "pos": "n", "pol": "-0.25", "std": "0.144" }, "harmonic law": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "harridan": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "harsh on": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "harvest moon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hash mark": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hashmark": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hatemonger": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hatha yoga": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hauberk": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "haughty": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "have-to doe with": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "have it coming": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "have the best": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hawkish": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hawkishness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "haymaker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hayseed": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "haze over": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "headless": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "headscarf": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "health hazard": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hearer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hearing disorder": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hearing impairment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hearsay rule": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "heartrot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "heat flash": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "heat hyperpyrexia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "heat of condensation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "heat of solidification": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "heatless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "heatstroke": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "heavy": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "heavy metal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hebephrenia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hebephrenic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hebephrenic schizophrenia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hecatomb": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "heckle": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hectic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hector": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hegira": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "heinousness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "heist": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hejira": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hellcat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hellhound": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hellion": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hemiplegia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hemoptysis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hemorrhagic septicemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hepatic coma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "herb robert": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "herb roberts": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "herbs robert": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hereditary cerebellar ataxia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hereupon": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "heritor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "herniated disc": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "heroic tale": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "heroin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "herpangia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "herpes": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "herpes simplex 2": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "herringbone pattern": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hesitater": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hesitator": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "heterocercal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hex": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hidden reserve": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hidebound": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "high-speed steel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "high-spirited": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "high-ticket": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "high and low": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "high jinks": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "high jinx": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "high life": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "high treason": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "highbinder": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "highjack": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "highlife": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "highwayman": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hijinks": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hillock": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hilly": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hip pad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hirer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hiss": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "hit list": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hit the hay": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hit the sack": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hitless": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "hoarse": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hoarseness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hoax": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hobble skirt": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hobo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hog cholera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hogwash": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hold fast": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "home front": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "homeless person": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "homesick": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "honky-tonk": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "honkytonk": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hooey": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hooky": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hooliganism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hoosegow": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hoosgow": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hops": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "horary": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hormone-replacement therapy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hormone replacement therapy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hornswoggle": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "horripilation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "horse trader": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "horticultural": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hospital attendant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hostile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hot-work steel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hot and bothered": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hottish": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "housecoat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "how-d'ye-do": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hubris": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "huck": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "huckaback": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hue and cry": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hugger-mugger": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "human beings": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "human gamma globulin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "human race": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "human remains pouch": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "humankind": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "humans": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "humate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "humeral veil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "humic acid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hummock": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "humorlessly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "humourlessly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "humpback": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "hunger march": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hunted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hunting and gathering society": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hunting and gathering tribe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hurl": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hyaline membrane disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hydrocele": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hydrocephalus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hydrocephaly": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hydrochlorofluorocarbon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hydrofluosilicic acid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hydrogen cyanide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hydrogen fluoride": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hydrolise": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hydrolize": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hydroxychloroquine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hydroxyzine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hydroxyzine hydrochloride": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hymenopterous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hymie": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hyperacusia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hyperacusis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hyperalimentation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hyperextend": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hypericism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hypermetropic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hyperon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hyperopic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hypersensitivity reaction": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hyperventilation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hypervitaminosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hypnophobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hypobetalipoproteinemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hypocapnia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hypochlorous acid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hypocritical": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hypogammaglobulinemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hypogonadism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hypokalemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hypothrombinemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hypotonicity": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "hypovitaminosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ice-clogged": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "icebox": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ictal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ictic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ideate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "idiot light": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ignobility": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ignobleness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ignoramus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ill-affected": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ill-breeding": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ill-shapen": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ill-treated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ill-treatment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ill-usage": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ill fame": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "illegal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "illegality": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "illegally": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "illegibility": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "illegitimate enterprise": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "illicitly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "imbroglio": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "immigrant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "immobilizing": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "immodesty": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "immoral": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "immovable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "immoveable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "immunosuppressive": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "impaction": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "impeachability": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "impecunious": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "impeded": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "impenetrability": { "pos": "n", "pol": "-0.25", "std": "0.265" }, "imperative": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "imperfectible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "imperfection": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "imperfectness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "imperial beard": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "imperious": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "imperiousness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "impertinently": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "impetuously": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "impishness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "implemented": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "implicit in": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "implicitness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "impose": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "impossible action": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "impounding": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "impoundment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "impracticability": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "impracticable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "impracticableness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "imprecate": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "impromptu": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "imprudently": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "impudently": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "impulsively": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "in a broad way": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "in a flash": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "in absentia": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "in circles": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "in darkness": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "in extremis": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "in general": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "in no time": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "in short order": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "in stages": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "in straitened circumstances": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "in the lurch": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "inaccessibility": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inaccessible": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "inadmissibility": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inalterable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inapplicable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inborn error of metabolism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inborn reflex": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "incapacitating": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "incaution": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "incautiousness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "incendiarism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inch": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "inciter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "incoherence": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "incoherency": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "inconsequential": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "inconsequentially": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "inconsequently": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "inconsiderateness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inconsideration": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inconsistency": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "inconstant": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "incontestable": { "pos": "a", "pol": "-0.25", "std": "0.265" }, "incurrence": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indecent exposure": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indefeasible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "indefinitely": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "indefiniteness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indefinity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indeterminable": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "indeterminacy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indeterminateness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indetermination": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indexless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "indictability": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indictment": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "indigence": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indigestion": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indignity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indirect request": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indissoluble": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "indomitability": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indwell": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "inebriate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inefficiently": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "ineligibility": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ineluctably": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "ineptness": { "pos": "n", "pol": "-0.25", "std": "0.354" }, "ineradicable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inerrable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inerrant": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inertial": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inescapably": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "inexcusably": { "pos": "r", "pol": "-0.25", "std": "0.088" }, "inexhaustible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inexperienced person": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inextensible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inextinguishable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "infant deathrate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "infant mortality": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "infant mortality rate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "infeasibility": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "infeasible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "infectious polyneuritis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "infelicitously": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "inferior vocal cord": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inferior vocal fold": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inferiority complex": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "infiltrator": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "inflexible": { "pos": "a", "pol": "-0.25", "std": "0.217" }, "infract": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "infrangible": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "ingrowing": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ingrown": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inguinal canal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inhaler": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inheritor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inhospitableness": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "inhumane": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inhumation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "injudicious": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ink-black": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inky": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inky-black": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "innate reflex": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inner ear": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "innocent": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inoculating": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inoculation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inoculum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inodorous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inordinate": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inorganically": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "inositol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inquisitively": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "insalubrious": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "insalubriousness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insalubrity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insaneness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insanity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insect powder": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insecticidal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "insecticide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insecureness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insidious": { "pos": "a", "pol": "-0.25", "std": "0.072" }, "insignificant": { "pos": "a", "pol": "-0.25", "std": "0.12" }, "insipid": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "insolvable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "insomnia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insouciant": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inspector general": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "instantaneously": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "instantly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "instigant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "instinctive reflex": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "instrument of torture": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insufficient": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "insulant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insulating material": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insulin-dependent diabetes mellitus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insulin reaction": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insurrectionism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "integrator": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "intelligence activity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "intelligence agency": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "intelligence analyst": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "intelligence operation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "intelligence service": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "intension": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "intercollegiate": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "interment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "intermittent": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "internal ear": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "interpreting": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "interrupted": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "interscholastic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "interschool": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "interstitial pneumonia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "intertrigo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "intestinal colic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "intraocular lens": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "intravasation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "intrench": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "intrepidly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "intumescent": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inutile": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "invalidity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "invalidness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "invidia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "invidious": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "invincibility": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "invisibility": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "invisibleness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "involuntarily": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "irate": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ireful": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "iron-tree": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "iron lung": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "iron mold": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "iron mould": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "iron tree": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "irrational impulse": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "irrationality": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "irreclaimable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "irreligionist": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "irreligious": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "irreversibility": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "irrevocable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "irrevokable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "irritable bowel syndrome": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "irritably": { "pos": "r", "pol": "-0.25", "std": "0.088" }, "isoclinal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "isoclinic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "isometropia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "isopteran": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "itraconazole": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ivory tree": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jacket crown": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jaggedness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jail bird": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jailbird": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jailer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jailor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jalopy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jar against": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "jarring": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "jarringly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "javelina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jaywalker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "je ne sais quoi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jellaba": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jellyroll": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jenny wren": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jerkin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jet": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "jet-black": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "jigaboo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jihadi": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "jillion": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jilted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "jinks": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jiqui": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jobless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "jodhpur": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jodhpur boot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jodhpur breeches": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jodhpur shoe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jodhpurs": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "join battle": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "jointworm": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jostle": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "jot": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "jot down": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "judge's robe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "judgement on the pleadings": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "judgment on the pleadings": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "judicial review": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "judicial writ": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "juggernaut": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jugular": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jumentous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "jungle fowl": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "just deserts": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "juvenile-onset diabetes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "juvenile diabetes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "k-meson": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kabala": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kabbala": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kabbalah": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kaftan": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kalantas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kalpac": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kaon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kappa-meson": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "katsura tree": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kayoed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "keep in line": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "keep mum": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "keepsake": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "keratoconus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "keratoderma blennorrhagica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "keratomalacia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "keratoscope": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "keratosis blennorrhagica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ketoacidosis-prone diabetes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ketoacidosis-resistant diabetes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ketoacidosis-resistant diabetes mellitus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ketosis-prone diabetes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ketosis-resistant diabetes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ketosis-resistant diabetes mellitus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "khimar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kiang": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kick down": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "kidnap": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "kidnapping": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kidney failure": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kike": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kill": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kill off": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "kill zone": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "killing zone": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kimono": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kinematics": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kinesis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kinetic energy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kip": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "kip down": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "kirtle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kittee": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kleptomania": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "knackered": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "knee pad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "knee piece": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kneecap": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "knickers": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "knife fight": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "knock-on effect": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "knock against": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "knocked out": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "knoll": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "know apart": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "know nothing": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "knucklehead": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kookie": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "kooky": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "kurchee": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kurchi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kurta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "labor resources": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "laboriousness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "labrocyte": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "laceration": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "lacewood": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lack": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lacquer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "laetrile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lagophthalmos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lambdacism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lamellicorn beetle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lameness": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "lampblack": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "landing strip": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "landlubberly": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "lapidate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "lapidation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "larcenous": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "larvicide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "last": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "last out": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "late blight": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "laterite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lath": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "laundry basket": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lavalava": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "law of areas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "law of conservation of mass": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "law of conservation of matter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "law of equal areas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "law of equivalent proportions": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "law of reciprocal proportions": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "law offender": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "law officer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lawbreaker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lawlessly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "lawman": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lay on the line": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "layoff": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lazar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lazy": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "lead-colored": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "lead-coloured": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "lead acetate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lead carbonate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lead chromate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lead ore": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lead poisoning": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "leaf cast": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "leanness": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "learning disability": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "learning disorder": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lederhosen": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "leer": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "legionella": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lemonlike": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "lemony": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "lenitive": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "leprechaun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "leptospira": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lese majesty": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "less-traveled": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "lessening": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "let drive": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "let fly": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "let off": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "lethal gene": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lethality": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lethargic encephalitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lethargy": { "pos": "n", "pol": "-0.25", "std": "0.125" }, "leucaemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "leucoma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "leukaemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "leukemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "leukoencephalitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "leukoma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "leveraging": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "levirate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "liability insurance": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "libel": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "libeler": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "libertine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lickety cut": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "lickety split": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "lie low": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "life peer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lifeless": { "pos": "a", "pol": "-0.25", "std": "0.072" }, "lifer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lift pump": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "light": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "light-headedly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "light-minded": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "light air": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "light breeze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "light upon": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "lightless": { "pos": "a", "pol": "-0.25", "std": "0.265" }, "lightlessness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "like a shot": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "like crazy": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "like mad": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "like sin": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "like the devil": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "like thunder": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "lily-livered": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "line of duty": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "line of latitude": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "line of longitude": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "line storm": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "linsey-woolsey": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lipochondrodystrophy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "listener": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "listeria meningitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "listeriosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lithoglyptics": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "litmus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "little": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "little by little": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "little golden zinnia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "little potato": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "liver chestnut": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "living death": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "llama": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "loathsomeness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "loco": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "locus niger": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "log Z's": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "loll around": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "long-term memory": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "long-windedness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "long underwear": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "looping ill": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "loose": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "loose-fitting": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "loose end": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "loose off": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "looseness of the bowels": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "looter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "looting": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lopsided": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "lords-and-ladies": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lost cause": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lotus-eater": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lounge about": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "lounge around": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "lounging jacket": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lounging robe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "loup-garou": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lousiness": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "lout": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "love handle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lovelorn": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "lovesick": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "low-backed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "low-grade": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "low-pitched": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "low-tech": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "low profile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "low status": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "low temperature": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lowboy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lowbush penstemon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lower-middle-class": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "lower rank": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lower respiratory tract smear": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lower status": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lowercase": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "lubberly": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "lucifer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lugubriousness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lummox": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lumpen": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "lumpenproletariat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lumpish": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "lunacy": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "lunar latitude": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lunkhead": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lusterlessness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lustrelessness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "luting": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lycanthrope": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lying": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lymphadenoma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lymphogranuloma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lymphoma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lynch mob": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lysis": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "macroscopically": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "macular edema": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "macule": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "macushla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "madwoman": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maggot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "magic spell": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "magical spell": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "magistracy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "magistrate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "magistrature": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "magnetic field": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "magnetomotive force": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maidism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maimed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "main file": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "major depressive episode": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mal de la rosa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mal rosso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malaise": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malaprop": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malapropism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malaria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "male-patterned baldness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "male pattern baldness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malefactor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maleic acid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malevolent program": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malfeasant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malformed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "malfunctioning": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "malice aforethought": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malicious mischief": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malignant neoplastic disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maligner": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malingering": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malnourished": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "malnutrition": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malposed tooth": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malposition": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maltreated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "maltreatment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malversate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "mammon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "man Friday": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mandator": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mandibular gland": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maned sheep": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "manganese": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "manhandle": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "manhunt": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maniacal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "manifestly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "manila maguey": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mankind": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "manslaughter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mantilla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "manually": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "manumitter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "marasca cherry": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "marble cake": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "margin of error": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "margin of safety": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "marginalise": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "marginalize": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "maria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "marine law": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mariticide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maritime law": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "marl": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "marlberry": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maroon": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "mashie": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mast cell": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "master file": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mastocyte": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "matching": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "matchstick": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "material breach": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "materiel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "matman": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "matt": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mature-onset diabetes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maturity-onset diabetes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maturity-onset diabetes mellitus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mayhem": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mayidism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mazzard": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mazzard cherry": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "meadow spittlebug": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mealy bug": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mealybug": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "meaningless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "meatless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "mechanical advantage": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mecopteran": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mecopterous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "meddler": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "medical diagnosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "medical scientist": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "medulla oblongata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "meiotic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "melancholiac": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "melanise": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "melanism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "melanize": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "melanosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "memory loss": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "menacingly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "mendacious": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "mendaciously": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "menial": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "meningism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "meningitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mens rea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mental deficiency": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mental disorder": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mental disturbance": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mental unsoundness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mercy killing": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "meretricious": { "pos": "a", "pol": "-0.25", "std": "0.191" }, "merl": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "merle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mesocolon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mess jacket": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "messiah": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "messiahship": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "metalepsis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "metastasis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "methane": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "methanol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "methyl alcohol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "methyl bromide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "methyl salicylate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "methylphenidate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "methyltestosterone": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mewl": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "miasmic": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "microcopy": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "micronutrient": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "middle-class": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "militance": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "militancy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "military blockade": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "military capability": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "military operation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "military posture": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "military strength": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "milkless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "millettia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mindlessly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "minelaying": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mineral": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "mineral pitch": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "minge": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "minginess": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "minibike": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "minify": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "minimal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "minimal art": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "minimalism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "minyan": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "miro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "misadventure": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "misalign": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "misapprehension": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "misappropriate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "misbranded": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "miscall": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "miscellany": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mischief-maker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mischief-making": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "miscount": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "misdeliver": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "misgive": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "misinterpretation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mislabeled": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "mismanagement": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "misname": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "misogynist": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "misplacement": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "misrelated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "missed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "misshapen": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "misspend": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "mistake": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mistaking": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mistreated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "mistrust": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "misunderstanding": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mitigating circumstance": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mix up": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "mo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moaner": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mobster": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mocha coffee": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mocker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moderate breeze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moderate gale": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moderatorship": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moil": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "moistness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "molasses": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "molestation": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "molluscum contagiosum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mollycoddle": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "mollycoddler": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moment of a couple": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "momentously": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "monarchy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "monaural": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "moneran": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "mongolianism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mongolism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "monkey dog": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "monkey jacket": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "monkey pinscher": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "monogenic disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "monogenic disorder": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "monoplegia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "montan wax": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moocher": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moodily": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "moon about": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "moon around": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "moon blindness": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "moon on": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "moon shell": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moonshell": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moonshiner": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moonstruck": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "mop": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "moral hazard": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "morbidity": { "pos": "n", "pol": "-0.25", "std": "0.144" }, "morceau": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mordacity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moronity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mortally": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "mosquito bite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mothproof": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "motorbike": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mounded over": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "mountain pass": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mountain sheep": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mourning cloak": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mourning cloak butterfly": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mourning dove": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moved": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "moving-coil galvanometer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mow": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "muck": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mucous colitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mucous secretion": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mucus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mud": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mud stain": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "muddleheaded": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "mugger": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mugging": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mulishly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "mulishness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "multifariousness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mumbo jumbo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mumification necrosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mumps": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mumpsimus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "munch": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "muncher": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mural": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "murder suspect": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "murderess": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "murkily": { "pos": "r", "pol": "-0.25", "std": "0.088" }, "murmuration": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "murrain": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "muscle-bound": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "musculophrenic vein": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "musical passage": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "musket ball": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mussiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mussitate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "mussitation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mustard seed": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mutant gene": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mutely": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "mutilated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "muttonhead": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mutual resemblance": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mutualness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "muzzle loader": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "myasthenia": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "myasthenia gravis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "myelatelia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "myonecrosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "myopathic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "mystery story": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mystify": { "pos": "v", "pol": "-0.25", "std": "0.354" }, "mythical being": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "myxomatosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nanism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "napping": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "narcolepsy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "narcotraffic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "narrow-mindedness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "native holly": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "native orange": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "naval battle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "naval campaign": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nazify": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ne'er": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "near-death experience": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "near gale": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nebbech": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nebbish": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nebulose": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nebulous": { "pos": "a", "pol": "-0.25", "std": "0.125" }, "neckerchief": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "neckless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "neckpiece": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "necktie": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "neckwear": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "necrolysis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "necromancy": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "necromania": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "necromantical": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "necrophilia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "necrophilism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "necrose": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "necrosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "necrotic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "necrotizing enteritis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "needle blight": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "needle cast": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "needlessly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "nefariousness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "negate": { "pos": "v", "pol": "-0.25", "std": "0.102" }, "negative charge": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "negative stimulation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "negativism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "neglect of duty": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "neglectful": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "neglige": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "negligee": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "negro vine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "neon induction lamp": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "neon lamp": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "neon tube": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "neonatal death": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "neonatal mortality": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "neonatal mortality rate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "neophobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nerita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nerve agent": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nerve gas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nervily": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "neuralgic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "neurasthenia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "neurofibromatosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "neurotoxic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "neutral": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nevertheless": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "nevus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "news report": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "newspeak": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "newsreel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nicker nut": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nicker seed": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nigga": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "niggardliness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "niggardly": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "niggardness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nigger": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "niggler": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "night": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "night-robe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "night court": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nightclothes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nightdress": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nightgown": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nightie": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nightwear": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nigra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nihil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nihilistic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nihilistic delusion": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nitrobenzene": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nitrogen dioxide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nitrogen fixation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nitrous acid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "no-go": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no-go area": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "no-good": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "no-win": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nock": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "noctuid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "noctuid moth": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nocturia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nocturnally": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "noise pollution": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "noiselessness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nolo contendere": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "non-aromatic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non-insulin-dependent diabetes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "non-insulin-dependent diabetes mellitus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "non-negotiable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non-slave": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non-verbally": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "non-volatile memory": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "non-volatile storage": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "non vult": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nonarbitrable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonassertive": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonastringent": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonattender": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "noncausal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "noncausative": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonchalant": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonclassical": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "noncompetitive": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonconforming": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonconformist": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "noncontroversial": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nondeductible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonequivalence": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nonetheless": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "nonexplosive": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonextensile": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonfictional": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonfissile": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonindustrial": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "noninterchangeable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonionic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonionised": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonionized": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonlexically": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "nonmalignant neoplasm": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nonmalignant tumor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nonmalignant tumour": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nonmandatory": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonmeaningful": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonmechanical": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonmechanistic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonmetal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nonmetallic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonmoving": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonobligatory": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonoccurrence": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nonparticulate": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonplused": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonplussed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonpolar": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonpolitical": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonproductive": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonprotractile": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonreciprocal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonrenewable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonspecific": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonspecifically": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "nonunion": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonunionised": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonunionized": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonverbally": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "nonvolatile": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonvolatile storage": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nonvolatilisable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonvolatilizable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nonwashable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "noreaster": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "normal tension glaucoma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "northeaster": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nose ring": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nosey": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nosology": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nosy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "notoriety": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "notwithstanding": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "novelette": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "novella": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nubbiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nuclear deterrence": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nuclear resonance": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nuclear terrorism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nuclear weapon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nucleus niger": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nudge": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nuisance value": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "null": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "numskull": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nut case": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nutrient agar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nuts": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nycturia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nystagmus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oaf": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "obdurately": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "obese": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "oblivion": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oboe d'amore": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "obscurantist": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "obsessive-compulsive": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "obsessive-compulsive disorder": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "obstinate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "obstinately": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "obstipation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "obturate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "obtusely": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "obviously": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "occlude": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ocellated turkey": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "octopod": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oculopharyngeal muscular dystrophy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ode": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "odorless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "odourless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "off-color": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "off-guard": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "off-street": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "off-the-cuff": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "off guard": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "off her guard": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "off his guard": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "off one's guard": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "off your guard": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "offending": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "offensive activity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oft": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "oftener": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "ofttimes": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "oil stain": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "old rose": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oleophobic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "olfactory impairment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ommatidium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "on the offensive": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "on the side": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "on the spur of the moment": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "once and for all": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "oncogene": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "one-eared": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "one-piece": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "opening line": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "opera cloak": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "opera hood": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "operoseness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "opinionated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "opinionative": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "opisthotonos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "opprobrium": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "opt out": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "optical crown": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "optical crown glass": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "optical pyrometer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "orchitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order Anacanthini": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order Aristolochiales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order Belemnoidea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order Corrodentia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order Dicranales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order Dinocerata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order Edentata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order Insessores": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order Lycopodiales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order Marattiales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order Orchidales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order Peronosporales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order Pezizales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order Phallales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order Picariae": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order Psocoptera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order Rubiales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order Scrophulariales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order Sphaeriales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order Sphaerocarpales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order Struthioniformes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order of the day": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order paper": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "organic fertiliser": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "organic fertilizer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "organic law": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "organisational": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "organizational": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "orthopnea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oscheocele": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oscheocoele": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "osmosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "osteitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "osteitis deformans": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ostentatious": { "pos": "a", "pol": "-0.25", "std": "0.354" }, "osteogenesis imperfecta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "otherness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "otic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "otitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ousel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "out": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "out-of-court settlement": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "out-of-date": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "out-of-school": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "out of nothing": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "out of thin air": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "out of work": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "outclass": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "outdated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "outface": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "outgeneral": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "outlawed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "outright": { "pos": "r", "pol": "-0.25", "std": "0.072" }, "outroar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "outstare": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ouzel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "over-the-top": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "over and over": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "over and over again": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "overbearingness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "overcredulity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "overfamiliar": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "overlay": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "overlie": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "overshoe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "overshoot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "overshot": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "overskirt": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "overturned": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "overvaliant": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "overwrought": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "owlet moth": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oxymoron": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oyster agaric": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oyster fungus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oyster mushroom": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ozaena": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ozena": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pacha": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "padder": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pain in the neck": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "pain pill": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "painkiller": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "palaeopathology": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "palatalised": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "palatalized": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pale yellow": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paleopathology": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "palliative": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pallidly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "palm off": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "pamper": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "pamperer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "panamica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "panamiga": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pancreatitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pantie": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "panty": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paper loss": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "para aminobenzoic acid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "parallel of latitude": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paralytical": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "paralyzed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "paranoia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paraquat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paratyphoid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paratyphoid fever": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "parch": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "parentless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "paretic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "parky": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "parosamia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "part": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "partial verdict": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "partially": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "partly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "pasha": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "passementerie": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "passive immunity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pastel-colored": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pasteurellosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pasteurisation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pasteurization": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pasteurized milk": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pastness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "patent infringement": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "patently": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "pathological state": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "patricide": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "patzer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pauper": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pauperisation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pauperism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pauperization": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pavor nocturnus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paw": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "peace of mind": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "peace officer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "peacock-throne": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "peanut bar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pearl ash": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pearly": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pearly-white": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pebble-grained": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "peccable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "peccant": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "peckish": { "pos": "a", "pol": "-0.25", "std": "0.265" }, "peculate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "pedal pusher": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pediculosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "peephole": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "peignoir": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pellagra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pelvic arch": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pelvic girdle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "penalisation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "penalization": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "penile implant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "penniless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "penury": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "peplos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "peplus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "perching bird": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "perfectionism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "perfidious": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "perforated eardrum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "perforce": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "performance bond": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "peridotite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "periodontal disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "periodontitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "periphrastic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "perisher": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "permanent injunction": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "permanganic acid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "permute": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "peroneus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "perpetration": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "perplexity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "persecution": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "persecutor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "personal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "personnel pouch": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pertly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "perturbed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pertussis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pesterer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pesticide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pestilent": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "petit jury": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pettily": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "petty jury": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "phaneromania": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "phantasmagoric": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "phantasmagorical": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "phantasy world": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "phantom limb pain": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "phellem": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "phenyl salicylate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "phenylamine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "philanderer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "phimosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "phobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "phobic disorder": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "phobic neurosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "photophobia": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "photoretinitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "phylum Pyrrophyta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "physical therapist": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "physicalism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "physiological reaction": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "physiotherapist": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pick up the gauntlet": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "pickelhaube": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pickle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pied piper": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pig-headedly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "pigeon droppings": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pigsticking": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pilar": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pilferer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pillager": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pilomotor reflex": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pilot project": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pimple": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pinafore": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pink cockatoo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pink disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pink disease fungus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pinkroot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pinny": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pip-squeak": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pip out": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "pipe dream": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "piperacillin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "piranha": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "pistol-whip": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "pit of the stomach": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pitch blackness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pitfall": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "pith hat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pith helmet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pityingly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "placeman": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "placeseeker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "placoid": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "plains spadefoot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "planimeter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "plant disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "plantal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "plasma physics": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "platelike": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "platitudinarian": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "played out": { "pos": "a", "pol": "-0.25", "std": "0.265" }, "pleonaste": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pleurocarp": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pleurocarpous moss": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ploughman": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "plower": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "plowman": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "plug hat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "plumbism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "plume-tipped": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "plunderer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "plunk down": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "plus fours": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "plutocrat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pocket veto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "poetic justice": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pointing out": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "poke bonnet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "poker face": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "polemic": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "police officer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "police precinct": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "policeman": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "political party": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "poltroonery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "polygenic disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "polygenic disorder": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "polyunsaturated fat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pom": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pommy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "poor rates": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pop in": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "poppycock": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "popularism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "positional": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "poster child": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "postiche": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "postictal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "postilion": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "postillion": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "posttraumatic epilepsy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "posttraumatic stress disorder": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "potassium cyanide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "potassium permanganate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "potato wart fungus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "potboiler": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "potholder": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "potomania": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pounce": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "power drill": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pox": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "pragmatic sanction": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prang": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "pratincole": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pre-eclampsia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "precancerous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "precautional": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "precautionary": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "preclinical": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "predication": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "predictive": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "predictor variable": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "preeclampsia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "preparation fire": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "presbyope": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "presbyopia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pressure sensation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "presymptomatic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pretending": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prevailing wind": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prevarication": { "pos": "n", "pol": "-0.25", "std": "0.144" }, "prevue": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pricking": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "primary cell": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "primary dysmenorrhea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "principle of relativity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prison guard": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "private-enterprise": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "prize ring": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prodding": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prodigiously": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "professional boxing": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "profligately": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "prognostic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "prognosticative": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "programmed cell death": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "progressive emphysematous necrosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "progressive vaccinia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prolixity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prolixness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prolonged interrogation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "propulsion system": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "proselytise": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "proselytize": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "prostatitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "protuberate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "provincialism": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "provoker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "proxy fight": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "proxy war": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prudery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prudishness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pruritus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pruritus ani": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pseudoephedrine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pseudohallucination": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pseudophloem": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "psilophyte": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "psittacosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "psychic trauma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "psychogenetic": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "psychological disorder": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "psychological warfare": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "psychopathic personality": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "psychopathology": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "psychosurgery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "psychotherapist": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pteridosperm": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ptosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pubes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pubic region": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "public nudity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "public violence": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "puce": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "puckishness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "puddingheaded": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pugilism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pule": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "pull someone's leg": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "pullorum disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pulmonary embolism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pulmonary stenosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pulseless disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "punctum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "punic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "punished": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "punishment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "punk": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pupet regime": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "puppet government": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "puppet state": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "purism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "purple rock brake": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "purplish blue": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "purulency": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "push around": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "put on the line": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "putrefaction": { "pos": "n", "pol": "-0.25", "std": "0.191" }, "putrescine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "putridity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "putsch": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "putz": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "puzzled": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pycnodysostosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pygmy mouse": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pyknic type": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pyracanth": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pyramiding": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pyridine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pyroligneous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pyrolignic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pyroscope": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pyuria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "qabala": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "qabalah": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "quaker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "quarreler": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "quarreller": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "quarrelsomeness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "quarter sessions": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "quartzite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "quillwort": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "quinine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "quinquefoliate": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "quixotism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rabato": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rabbi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rabbit": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "rabbit fever": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rabbit punch": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rabidity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rabidness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "race riot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "racketeer": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "racking": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "radiant energy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "radiation sickness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "radiation syndrome": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ragamuffin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ragged": { "pos": "a", "pol": "-0.25", "std": "0.125" }, "raggedly": { "pos": "r", "pol": "-0.25", "std": "0.072" }, "raglan sleeve": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "railroad siding": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "raise up": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "raisin moth": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rake off": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ramipril": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rampageous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ranch house": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rancid": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "randomise": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "randomize": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "randomness": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "rankle": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "rappel": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "raptor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "raptorial bird": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rasp": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "rassling": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rat-a-tat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rat-tat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ratbite fever bacterium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rational motive": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rationalise away": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "rationalize away": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ratting": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rattled": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "rave-up": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ravenousness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "re-emerge": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "reappear": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "reappraise": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "rear admiral": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rearrange": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "rebarbative": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "rebato": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rebound tenderness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "recede": { "pos": "v", "pol": "-0.25", "std": "0.144" }, "rechauffe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "recidivate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "reconnaissance plane": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reconvict": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "recriminate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "recriminative": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "recriminatory": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "recurrent fever": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "recusancy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "recusant": { "pos": "a", "pol": "-0.25", "std": "0.265" }, "red-bellied terrapin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "red-bellied turtle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "red-faced": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "red-green color blindness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "red-green colour blindness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "red-green dichromacy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "red ash": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "red coral": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "red cypress pine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "red devil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "red light": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "red meat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "red shrubby penstemon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "redbelly": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "redetermination": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "redistribute": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "redneck": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reductivism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "redwood penstemon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reelection": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reflex action": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reflex response": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "refrigerator": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "refutable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "refutal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "regain": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "regaining": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "regional anaesthesia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "regional anesthesia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "regrettable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "regrow": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "reheat": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "reincarnationism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reintegrate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "rejected": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "relapsing fever": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "relatiative": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "religious trance": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reluctantly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "remilitarisation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "remilitarization": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "remonstrate": { "pos": "v", "pol": "-0.25", "std": "0.144" }, "remorseless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "renal failure": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "renal insufficiency": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rend": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "reorder": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "repellently": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "repellingly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "reprehensibility": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reprieve": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "repulsiveness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "res adjudicata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rescue party": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reshoot": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "respiratory distress syndrome": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "respiratory distress syndrome of the newborn": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "restlessly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "resublime": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "retaliate": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "retaliator": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "retaliatory": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "retaliatory eviction": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "revenge": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "revenue tariff": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "revere": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "revers": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rheologic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "rheological": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "rheology": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rhetorical device": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rheumatic heart disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rheumatism weed": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rhymeless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ribier": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ribless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "rickettsia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rickettsial disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rickettsialpox": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rickettsiosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ride out": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "riding breeches": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "riding habit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rigatoni": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "right-hand man": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "right of search": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rimeless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "rinderpest": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ring vaccination": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rinse off": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "riot act": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "riot control": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "riot control operation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "riot gun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rioter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rip-off": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rip up": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "risk taker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rival": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "road agent": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "roadblock": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "roadkill": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "robber": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "robbery suspect": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "robe-de-chambre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rock cake": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rockweed": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rogue": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "roguery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "roil": { "pos": "v", "pol": "-0.25", "std": "0.177" }, "rook": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "rooted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "rope-a-dope": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rope down": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "rotenone": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rotgut": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rottenly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "rotting": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rough-house": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "roughcast": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "round the bend": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "round the clock": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "rout": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "roux": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rowdiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rowdyism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "royal blue": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rubbish dump": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rube": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rubella": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rubella panencephalitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ruffianism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ruffianly": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ruffle up": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ruggedness": { "pos": "n", "pol": "-0.25", "std": "0.125" }, "ruiner": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rum cherry": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rumpled": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "running away": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "running suit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "runup": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rupestral plant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rupestrine plant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rupicolous plant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ruptured intervertebral disc": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rushy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "russet scab": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rustle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ruthless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "saccade": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sack out": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "sacred cow": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sad-faced": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sad sack": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "saddle": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "saddled-shaped false morel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "safari park": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "safety belt": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "safety harness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "safety margin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sag": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "sagging": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sailor cap": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "salad bar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "salal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "salicylate poisoning": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "salience": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "saliency": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "salol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "salt depletion": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sand cat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sandbank": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sanguineous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sapraemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sapremia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "saprobe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sapsago": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sarape": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sarcoma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sarong": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sass": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sassing": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "satin leaf": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "satinleaf": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "saturnism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "satyriasis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "saucily": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "saute": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sauteed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "savageness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "savior": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "saviour": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "savorless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "savourless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "saw logs": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "saw wood": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "saxatile": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "saxicoline": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "saxicolous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "saxicolous plant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scabicide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scabies": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scalar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scalenus syndrome": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scam": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "scandalmongering": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scantily clad": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "scapulary": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scat singing": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scatology": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scatter pin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scheduler": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "schizoid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "schizotypal personality": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "schlep": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "schlepper": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "schlockmeister": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "schmegegge": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "schnook": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sciara": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sciarid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scienter": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "sclaff": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "scleredema": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sclerosed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "scoffer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scofflaw": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scorched-earth policy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scornfully": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "scoundrel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scourger": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scraggly": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "scramble": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scrappiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scratch out": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "scratchiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scribble": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scrimmage": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scrimp": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "scroll": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "scrounger": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scrub brush": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scrubbiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scrubbing brush": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scrubs": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scuffer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scurrility": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scurvy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "scut": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scut work": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sea gull": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sea lawyer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "seagull": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "secobarbital": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "secobarbital sodium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "second-class": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "second-rate": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "second law of motion": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "second law of thermodynamics": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "secondary hypertension": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "section": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "sectional": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "seed fern": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "seedless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "seedy": { "pos": "a", "pol": "-0.25", "std": "0.188" }, "seeking": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "selective amnesia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "selenium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "self-abasement": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "self-annihilation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "self-conceited": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "self-disciplined": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "self-discovery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "self-help": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "self-mortification": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "self-opinionated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "self-preservation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "self-report inventory": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "self-report personality inventory": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "self-restraining": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sempiternal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "send back": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "sense datum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sense experience": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sense impression": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sense of direction": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sense of duty": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sense of responsibility": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sense of shame": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sensitive": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sensuality": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sensualness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "septicaemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "septicemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "septicemic plague": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "serape": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "serial killer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "serial murderer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "seriously": { "pos": "r", "pol": "-0.25", "std": "0.088" }, "serologic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "serological": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "service stripe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "serviette": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "set upon": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "setback": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "settle on": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "severe acute respiratory syndrome": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "severe combined immunodeficiency": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "severe combined immunodeficiency disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sewage disposal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sewer gas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sewer water": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sex offender": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sexlessness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shabbiness": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "shadowbox": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "shadowiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shaggy cap": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shaggymane": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shaggymane mushroom": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shako": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shallon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shamelessness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shantung": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shape constancy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shapelessness": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "shard": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sharia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sharia law": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shariah": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shariah law": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sharp tongue": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "she-devil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shed blood": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "sheet web": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shegetz": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shell jacket": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shell parakeet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shelterbelt": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sherd": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shiftless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "shigellosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shill": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shillyshally": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "shimmy": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "shin guard": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shinpad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shipboard": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "shirker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shirt": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "shithead": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shitless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "shitwork": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shiver": { "pos": "v", "pol": "-0.25", "std": "0.177" }, "shlep": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shlepper": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shlockmeister": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shmegegge": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shnook": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shoddiness": { "pos": "n", "pol": "-0.25", "std": "0.265" }, "shoeless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "shooting": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shopaholic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "short-beaked": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "short-billed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "short-lived": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "short-stemmed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "short-tailed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "short letter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "short line": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "short order": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "short sleep": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shortish": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "shorts": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shortwave diathermy machine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shotgun shell": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shoulder flash": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shoulder holster": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shoulder pad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shoulder patch": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shoulder vise": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shovel hat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "show bill": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "show card": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shower cap": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shred": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "shrilling": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shrimpy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "shrink from": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "shrivel up": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "shrub": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shrubby penstemon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shudder": { "pos": "v", "pol": "-0.25", "std": "0.177" }, "shunter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shyster": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sick bag": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sick benefit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sick headache": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "sick joke": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sickbag": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sickbed": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sickle cell": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sickness benefit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sideline": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "sidetrack": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "siege": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sightless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "signal-to-noise": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "signal-to-noise ratio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "signal/noise": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "signal/noise ratio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "signal flag": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "silently": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "sima": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "simple": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "simple harmonic motion": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "simple mindedness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "simplistic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "simulative electronic deception": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sinlessness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "siren call": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "siren song": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "siriasis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sitting": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "skibob": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "skimpy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "skin eruption": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "skin graft": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "skin perceptiveness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "skinheads": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "skip town": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "skirmish": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "skulking": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "skunk-weed": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "skunkweed": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "slacken off": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "slacker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "slagheap": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "slaked": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "slam-bang": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "slanderer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "slanderously": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "slang expression": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "slang term": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "slantingly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "slap": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "slate-gray": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "slate-grey": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "slatey": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "slaty": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "slaty-gray": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "slaty-grey": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "slaughterous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "slaveless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sleep terror disorder": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sleeping sickness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sleepwear": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sleepy sickness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sleuthing": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "slight": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "slime": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "slipped disc": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "slippery": { "pos": "a", "pol": "-0.25", "std": "0.265" }, "slippery elm": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "slob": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "slobber over": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "slog": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "slopingly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "slopseller's shop": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "slopshop": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "slothful": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sloucher": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sloven": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "slovenly": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "slovenly person": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "slow-moving": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "slow-wittedness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "slower": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "slowest": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "slum": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "slum area": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "slumber": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "slut": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sluttish": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "smacking": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "small-arm": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "small-minded": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "small beer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "smarm": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "smarminess": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "smash-up": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "smelling": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "smirker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "smoking gun": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "smoking jacket": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "smoldering": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "smooth crabgrass": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "smouldering": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "smudgy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "smuggled": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "smut fungus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "snake in the grass": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "snap off": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "snare": { "pos": "v", "pol": "-0.25", "std": "0.177" }, "snarl up": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "snatch up": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "sneak thief": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sneak up": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "sneezing": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "snickersnee": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sniffly": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sniffy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "snippet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "snipping": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sniveller": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "snobbery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "snobbishness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "snobbism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "snoopy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "snootiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "snooty": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "snooze": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "snore": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "snot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "snotty-nosed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "snowshoe": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "snuffling": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "snuffly": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "so-called": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sob": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sobbing": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sobbingly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "sociopathic personality": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sock": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "sodium cyanide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sodium hypochlorite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "soft rot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "softhearted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "soiled": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "solely": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "solicitor general": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "solid-colored": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "solid-coloured": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "solidification": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "solidifying": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "somatosensory": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "soonest": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "soot": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "sootiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sops": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sorcery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sou": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "soulless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sound bite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sound bow": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sound pollution": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sour-tasting": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sour grapes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sourball": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sourish": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sourness": { "pos": "n", "pol": "-0.25", "std": "0.125" }, "soutane": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "spacesuit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "spang": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "spare tire": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "spasmodic laryngitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "spastic colon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "spastic paralysis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "specs": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "spectacles": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "speechlessly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "spermophile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "spewer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sphacelate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "sphacelus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "spicate": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "spirit off": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "spirit rapper": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "spiritualist": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "spiritualistic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "spit and polish": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "splenic fever": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "split decision": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "split end": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "spoilation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "spontaneity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "spontaneousness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sport car": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sports car": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sportswear": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "spreading dogbane": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sprite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sprue": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "spue": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "spunk": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "spunky": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "spurned": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "spurring": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sputum smear": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "spyhole": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "squall line": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "squalling": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "squally": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "square away": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "square one": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "squatness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "squattiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "squatty": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "squeak through": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "squiggly": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "squint": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stag": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "stag's garlic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stage dancing": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "staginess": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stakeout": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stakes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stampede": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "stand-down": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "standdown": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "stannite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "staph": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "staphylococci": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "staphylococcus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stardust": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stare down": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "starer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "starless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "starvation": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "state's evidence": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "status asthmaticus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "statute law": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stay-at-home": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "stay in place": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "stealer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stem canker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "step-in": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "step in": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "stercolith": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sterile": { "pos": "a", "pol": "-0.25", "std": "0.331" }, "sternly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "sternutation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sthene": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sticking plaster": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stickup": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stiff-necked": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "stiffness": { "pos": "n", "pol": "-0.25", "std": "0.137" }, "stigmatisation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stigmatization": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "still-hunt": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "stinginess": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stinkhorn": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stinking horehound": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stob": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stock-still": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "stole": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stolen property": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stolid": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "stolidity": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "stomach upset": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stomacher": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stone's throw": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stone-gray": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "stone-grey": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "stone-sober": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "stone-wash": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "stone wall": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stonefish": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stonewaller": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stonewash": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "stoning": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "storm-tossed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "storm door": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "storm petrel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "storm signal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stormily": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "storminess": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "straggle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "straight-out": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "straight off": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "strangely": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "strategical": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "strike a blow": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "strike back": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "strike down": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "strike dumb": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "strike leader": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "strikebreaking": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stringent": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "striver": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stromateid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stromateid fish": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "strong breeze": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "strong gale": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "struggler": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stub": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "stub nail": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stubbiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stubbornly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "stuck-up": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "stuff and nonsense": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stultification": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "stumbling block": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stumper": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stumpy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "stunt man": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stunt woman": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stunted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "stupidly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "subclinical": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "subdivision Cycadophyta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "subdivision Cycadophytina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "subfusc": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "subjugator": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "submandibular gland": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "submandibular salivary gland": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "submaxillary gland": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "submaxillary salivary gland": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "suborder Blattaria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "suborder Blattodea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "suborder Brachyura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "suborder Theropoda": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "suborner": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "subservientness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "substantia nigra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "subtly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "subversive": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "subversiveness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "subvocalise": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "subvocalize": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "subwoofer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "suer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "suet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "suety": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sufferable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sufferance": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "sugar of lead": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "summary judgement": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "summary judgment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "summons": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "sun helmet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sunbonnet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sunhat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sunk": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sunstroke": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "suntanned": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "supernaturalist": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "supernaturalistic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "supernaturalness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "supply officer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "supportable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "suprainfection": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "surety bond": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "surgical gown": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "surpriser": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "surreal": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "surrealism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "surrealistic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "surveillance of disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "suspender belt": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "suspiciously": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "swagger stick": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "swaggering": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "swarthiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "swashbuckling": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "swearing": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "sweet-birch oil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sweet-potato ring rot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sweet Fanny Adams": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sweet false chamomile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "swell up": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "swelter": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "swimmingly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "swimsuit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "swimwear": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "swindle": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "swine flu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "swine influenza": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "switch over": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "swollen": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "swollen-headed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sword of Damocles": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sycophancy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "symbolic representation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sympathy card": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "symphysis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "symposium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "synaesthetic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "synesthetic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "syphilitic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "syringa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "system of weights": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "systolic murmur": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "table mat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "table napkin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tablespoonful": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "taciturnly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "tactic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tactical": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "tactical intelligence": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tactility": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tactlessly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "tag end": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tailgate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tailless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "take a dare": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "take a dive": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "take a firm stand": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "take a joke": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "take a powder": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "take exception": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "take five": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "take to heart": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "talking to": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tall tale": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tambac": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tamer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tangled": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "tangy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "tanker plane": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tantalum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tappet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tapping": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tarantula": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tarnish": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tarpan": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tartar emetic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tartly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "tartness": { "pos": "n", "pol": "-0.25", "std": "0.125" }, "taste cell": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "taste property": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tatter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tattoo": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tawniness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tax evasion": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "taxability": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tear away": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tear off": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tear up": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "telex": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "temperately": { "pos": "r", "pol": "-0.25", "std": "0.072" }, "tempest-swept": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "tempest-tossed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "tempest-tost": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "temporal arteritis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "temporariness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "temporary expedient": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ten-gallon hat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tenement": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tenement house": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "teratogenic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "teratology": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "termagant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "terrain": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "terror-stricken": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "terror-struck": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "terrorisation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "terrorization": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tetchily": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "tete a tete": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "textual criticism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thalidomide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thanatology": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "the Great Calamity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "the Great Hunger": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "the Great Starvation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "the Irish Famine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "the absurd": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "the hots": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "theatrical poster": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "theatricality": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thereinafter": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "thermic fever": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thermobaric bomb": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thermocautery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thermoreceptor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thermotherapy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "theropod": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "theropod dinosaur": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thickening": { "pos": "a", "pol": "-0.25", "std": "0.265" }, "thicket": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thief": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thieving": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "thievish": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "thievishness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thigh pad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thin": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "thingamabob": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thingamajig": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thingmabob": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thingmajig": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thingumabob": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thingumajig": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thingummy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thinner": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "third-rater": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thorn": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "threatened": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "threateningly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "three-day measles": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thriftless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "throat protector": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "throaty": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "thrombolytic therapy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "throw in the towel": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "throw stick": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thuggery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thunderbird": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thundershower": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thwart": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tick trefoil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ticklish": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "tidy up": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tie-dye": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tie clip": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tiebreaker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tightfistedness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tike": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "till": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "time and again": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "time and time again": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "time bomb": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "time to come": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "timeworn": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "tin disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tin pest": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tin plague": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tin pyrites": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tine test": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tinnitus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tip-and-run": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "tire out": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "titanium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "titulary": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "to a man": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "tobacco budworm": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tobacco mosaic": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tobacco thrips": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "toe-to-toe": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "toeless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "toga": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "toga virilis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "toilsomeness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tomato fruitworm": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tombac": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tombak": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tomfoolery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "too bad": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "too big for one's breeches": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "toot": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "top fermentation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "topcoat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tope": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "topee": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "topos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "toreador pants": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "torero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "torn": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "torpedo-boat destroyer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "torque": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tortilla chip": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tortuousness": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "torture chamber": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "total aphasia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "total darkness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "total parenteral nutrition": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tottery": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "touch perception": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tough-skinned": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "tousled": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "tow": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "toxaemia of pregnancy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "toxemia of pregnancy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "toxic industrial waste": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "toxic shock": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "toxic shock syndrome": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "toxic waste": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trade protection": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "traditionalist": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "traduce": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "traducer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tragic flaw": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trail boss": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trail head": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trailhead": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "train of thought": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "traitorousness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tranquilly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "transforming gene": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "transitory": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "transmogrification": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trapped": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "trash dump": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "traumatic epilepsy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "traumatophobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "travel-worn": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "treasonist": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "treasure flower": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tree surgery": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "treed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "trembler": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trembles": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trespass quare clausum fregit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trial attorney": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trial lawyer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trial run": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tribulate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tributyrin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trichloroethane": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trichloroethylene": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trichomoniasis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trifoliate": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "trifoliated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "trifoliolate": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "trifoliolate leaf": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "triskaidekaphobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trisomy 21": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trite": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "triumvir": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "triumvirate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trivia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "triviality": { "pos": "n", "pol": "-0.25", "std": "0.125" }, "trollop": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trope": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tropical sprue": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trouble maker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "troublemaker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "troubler": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "troublesome": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "truancy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "true blackberry": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "true vocal cord": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "true vocal fold": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tsunami": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tsuris": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tuberculous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "tudung": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tuffet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tularaemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tularemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tumesce": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tumescent": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "tumidity": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tumidness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tumor virus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tungsten steel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "turbulency": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "turn down": { "pos": "v", "pol": "-0.25", "std": "0.112" }, "turn of events": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "turnkey": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tweediness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "twig blight": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "twin": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "twin bed": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "twinge": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "twinned": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "two-eared": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "tyke": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "type II diabetes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "type I diabetes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "typescript": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "typhoid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "typhoid fever": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tyrant": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tyrosinemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "uakari": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ulcerated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ulcerous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ultramicroscope": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ultramontanism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "umpire": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "unaccepted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unacknowledged": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "unacquainted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unaddressed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unadventurous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unaffecting": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unaffectionate": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unalterable": { "pos": "a", "pol": "-0.25", "std": "0.072" }, "unannealed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unappreciated": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "unapproachability": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unargumentative": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unassailable": { "pos": "a", "pol": "-0.25", "std": "0.191" }, "unassured": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unattractively": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "unavailability": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unavoidably": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "unawed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unbalance": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "unbarred": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unbefitting": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unbeloved": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unblinking": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "unbolt": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "unbolted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unbooked": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unborn": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unburnished": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unbuttoned": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "uncarpeted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "uncaused": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "uncensored": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unchallenged": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "uncharted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unchristianly": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unchristlike": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "uncommercialised": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "uncommercialized": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unconditioned reflex": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unconformist": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "uncongeniality": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unconsidered": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unconstricted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "uncontroversial": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "uncoordinated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "uncropped": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unctuousness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "uncurtained": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "undecipherable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "undeciphered": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "undefendable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "undefended": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "undefinable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "undelineated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "undemanding": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "under-the-counter": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "underbid": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "underbodice": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "underclothed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "underline": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "underpart": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "underprice": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "underscore": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "undetectable": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "undiagnosed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "undifferentiated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "undisputed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "undistinguishable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "undrawn": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "undulant fever": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "undying": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unedited": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "uneducated person": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unenclosed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unencouraging": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unenlightening": { "pos": "a", "pol": "-0.25", "std": "0.354" }, "unequipped": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unerring": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unethically": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "unevenness": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "unexchangeability": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unexclusive": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unexpansive": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "unfading": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unfashionable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unfeasibility": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unfeasible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unfeathered": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unfinished business": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unforethoughtful": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unformed": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "unfortunate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unfortunate person": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unfounded": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unfunny": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ungainliness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ungentle": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ungentlemanlike": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ungentlemanly": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unglazed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ungraceful": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ungradable opposition": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unhallow": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "unhardened": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unharmonious": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unhatched": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unhealthfulness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unhealthy": { "pos": "a", "pol": "-0.25", "std": "0.072" }, "unhelpfulness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unhinged": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unholiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unhygienic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "uniformity": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "unilateral paralysis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unilateralism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unimportant": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "unimpressive": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unimpressively": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "uninebriated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "uninquiring": { "pos": "a", "pol": "-0.25", "std": "0.265" }, "uninquisitive": { "pos": "a", "pol": "-0.25", "std": "0.265" }, "uninsurable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "uninsured": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "uninterested": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "uninterestingly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "unintoxicated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "union suit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "universally": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "unjustified": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unjustness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unlatched": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unlawfully": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "unlikelihood": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unlikeliness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unlocked": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unlogical": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unlucky": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "unman": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "unmanly": { "pos": "a", "pol": "-0.25", "std": "0.265" }, "unmapped": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unmelted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unmercifulness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unmined": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unmoderated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unmotivated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unmovable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unnerve": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "unnerved": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unnerving": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unnoticed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unobservable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unorganised": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "unorganized": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "unoriginal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unpackaged": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unpainted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unparented": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unperformed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unpermed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unperplexed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unpersuasiveness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unpitying": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unpleasant woman": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unpleasantness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unpledged": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unpopular": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unportable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unprepossessing": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unpresentable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unpreventable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unprofessional": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unprofitably": { "pos": "r", "pol": "-0.25", "std": "0.177" }, "unpromised": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unprovable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unpublished": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unqualifiedly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "unquestioned": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unreadable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unreason": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unreassuring": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unredeemable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unregenerated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unregistered": { "pos": "a", "pol": "-0.25", "std": "0.072" }, "unregulated": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "unrehearsed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unrenewable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unrepressed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unretentive": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unrevised": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unrhymed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unrimed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unromantic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unsanitariness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unsatisfactory": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unsatisfying": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unscheduled": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unscientific": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unscripted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unseen": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unseeyn": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unselected": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unsettle": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "unshaped": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unshapen": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unsmiling": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unsmooth": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unsold": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unsoluble": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unsolvable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unsown": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unspecific": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unspectacular": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unspoken accusation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unsporting": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unsportsmanlike": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unstaple": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "unstring": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "unsuccessful person": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "unsupportive": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unsweet": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "unswept": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unsystematically": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "untenable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unthematic": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "untitled": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "untoasted": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "untranslatable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "untrimmed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "untrustiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "untrustworthiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "untruthful": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "untruthfully": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "untypically": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "ununderstood": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unventilated": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unvindictive": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unvitrified": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unvoiced": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "unweaned": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unwieldy": { "pos": "a", "pol": "-0.25", "std": "0.072" }, "unworkable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "unwoven": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "upheave": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "upper-lower-class": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "uppish": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "upraise": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "uprooter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "upset stomach": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "urban guerrilla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "urchin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "useless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "utility-grade": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "vaccinating": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vaccinia gangrenosa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vacillator": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vacuum bomb": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vaginismus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vaguely": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "vagueness": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "vain": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "valley fever": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vandalise": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "vandalism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vandalize": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "vanilla-scented": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "vanisher": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vanquish": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "vapid": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "variability": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "varicella": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "varicosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "varmint": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "varnish": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vascular hemophilia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vegetable tallow": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vegetive": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "veiled accusation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vena musculophrenica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "venomous": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "ventricose": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ventricous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ventriloquism": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ventriloquy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vernal witch hazel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "versicle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "very fast": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "vested": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "vestiary": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "vestigial": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "vestment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vetchworm": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "viatical": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "viatical settlement": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "viatication": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "viaticus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "viaticus settlement": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vice admiral": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vice crime": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vicious cycle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "viciously": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "vilely": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "vileness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vilifier": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vilipend": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "villain": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "villainess": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "viola": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "viricide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "virtually": { "pos": "r", "pol": "-0.25", "std": "0.088" }, "virucide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vision defect": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "visual defect": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "visual disorder": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "visual impairment": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vitiliginous": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "vitriolic": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "voiding": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "volcanic eruption": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "voltaic cell": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "volume-detonation bomb": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vomiter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "von Recklinghausen's disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "von Willebrand's disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vote out": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "vulcanite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vulnerability": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "waddle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "waders": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "waffle": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "wager": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "waist pack": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wall unit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wallop": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "walnut blight": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wander": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "war-torn": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "war-worn": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "war crime": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "war of nerves": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "war vessel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "warning": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "warning of war": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "warship": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "warthog": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wash one's hands": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "washed-up": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "waste-yard": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "waste of effort": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "waste of energy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "waste of material": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "waste one's time": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "wasteland": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wastewater": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wasteyard": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "watch chain": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "watch guard": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "water fennel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "water hole": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "waterworn": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "wave-off": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "waverer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wax": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "waxiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "waxlike": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "weak-kneed": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "weak force": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "weak interaction": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "weakening": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "weakly interacting massive particle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wear off": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "wear ship": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "wear upon": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "wearable": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "weather forecaster": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "weatherman": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wedding dress": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wedding gown": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wee": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "week after week": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "weeper": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "werewolf": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "western whiptail": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wetback": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wetland": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "whack": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "wham": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "whap": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "whatchamacallit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "whatchamacallum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "whatsis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wheedler": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wheel lock": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wheeler dealer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wheelless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "wheeziness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "whiffer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "whiner": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "whisper": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "white-flowered": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "white-livered": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "white-tailed sea eagle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "white Spanish broom": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "white broom": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "white dead nettle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "white feather": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "white fungus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "white lead": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "white man's burden": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "white noise": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "white rust": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "whitened": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "whodunit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "whole gale": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "whooping cough": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "whoosh": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "whop": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "wickedly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "wide-angle": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "wide-angle lens": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wide of the mark": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "widow": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "widow woman": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "widower": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "widowman": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wiggle nail": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wild apple": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wild chamomile": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wild emmer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wild wheat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wildfire": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "willies": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wilt disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wimple": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wind generation": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wind power": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "windbreak": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "windstorm": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "winless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "wino": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wireless": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "wiriness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wishy-washy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "witch's brew": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "witches' brew": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "witches' broth": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "witching": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wobble": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wobbly": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "wolfman": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wolfram steel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "woman hater": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "womaniser": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "womanizer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wood alcohol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wood cudweed": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wood spirit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wood tar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wood vise": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "woodsiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "woodworking vise": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "woolgather": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "woolly alder aphid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "word of farewell": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wordiness": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wordlessly": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "work-clothes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "work-clothing": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "work-shy": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "work at": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "work stoppage": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "workhouse": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "worrier": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "worrywart": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wounded": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "wraithlike": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "wren": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wrenching": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "wrest": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "wrestle": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wrestler": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wrestling": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "wring from": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "wrist pad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "writ": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "writ of prohibition": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "write-off": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "write up": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "written matter": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xanthic acid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xenolith": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xenophobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xeric": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "yacht": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "yahoo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "yammer": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "yatobyo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "yea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "yellow-bellied": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "yellow woman": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "yes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "yes-no question": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "yid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "yield up": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "yin": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "yips": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "yodel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "yokel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zapper": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zephyr": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zeroth law of thermodynamics": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zidovudine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zillion": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ziti": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zoo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zoo keeper": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zoological garden": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zoonosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zoonotic disease": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zoophobia": { "pos": "n", "pol": "-0.25", "std": "0.0" } } ================================================ FILE: lib/natural/sentiment/French/pattern-sentiment-fr.json ================================================ { "abandonné": { "form": "abandonné", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "abandonnée": { "form": "abandonnée", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "abandonnées": { "form": "abandonnées", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "abandonnés": { "form": "abandonnés", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "abasourdi": { "form": "abasourdi", "pos": "JJ", "polarity": "0.24", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.7" }, "abasourdie": { "form": "abasourdie", "pos": "JJ", "polarity": "0.24", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.7" }, "abasourdis": { "form": "abasourdis", "pos": "JJ", "polarity": "0.24", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.7" }, "abattu": { "form": "abattu", "pos": "JJ", "polarity": "-0.12", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "abattue": { "form": "abattue", "pos": "JJ", "polarity": "-0.12", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "abattues": { "form": "abattues", "pos": "JJ", "polarity": "-0.12", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "abattus": { "form": "abattus", "pos": "JJ", "polarity": "-0.12", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "aberrant": { "form": "aberrant", "pos": "JJ", "polarity": "0.00", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "aberrante": { "form": "aberrante", "pos": "JJ", "polarity": "0.00", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "aberrantes": { "form": "aberrantes", "pos": "JJ", "polarity": "0.00", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "aberrants": { "form": "aberrants", "pos": "JJ", "polarity": "0.00", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "abominable": { "form": "abominable", "pos": "JJ", "polarity": "-0.90", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "abominables": { "form": "abominables", "pos": "JJ", "polarity": "-0.90", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "abondant": { "form": "abondant", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "abondante": { "form": "abondante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "abondantes": { "form": "abondantes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "abondants": { "form": "abondants", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "abordable": { "form": "abordable", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "abordables": { "form": "abordables", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "abracadabrant": { "form": "abracadabrant", "pos": "JJ", "polarity": "-0.18", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "abracadabrante": { "form": "abracadabrante", "pos": "JJ", "polarity": "-0.18", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "abracadabrantes": { "form": "abracadabrantes", "pos": "JJ", "polarity": "-0.18", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "abracadabrants": { "form": "abracadabrants", "pos": "JJ", "polarity": "-0.18", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "abruti": { "form": "abruti", "pos": "JJ", "polarity": "-0.28", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "abrutie": { "form": "abrutie", "pos": "JJ", "polarity": "-0.28", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "abruties": { "form": "abruties", "pos": "JJ", "polarity": "-0.28", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "abrutis": { "form": "abrutis", "pos": "JJ", "polarity": "-0.28", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "absent": { "form": "absent", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "absente": { "form": "absente", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "absentes": { "form": "absentes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "absents": { "form": "absents", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "absolu": { "form": "absolu", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "absolue": { "form": "absolue", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "absolues": { "form": "absolues", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "absolument": { "form": "absolument", "pos": "RB", "polarity": "0.25", "subjectivity": "0.75", "intensity": "2.0", "confidence": "0.9" }, "absolus": { "form": "absolus", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "absorbé": { "form": "absorbé", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "absorbée": { "form": "absorbée", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "absorbées": { "form": "absorbées", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "absorbés": { "form": "absorbés", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "abstrait": { "form": "abstrait", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "abstraite": { "form": "abstraite", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "abstraites": { "form": "abstraites", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "abstraits": { "form": "abstraits", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "absurde": { "form": "absurde", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "absurdes": { "form": "absurdes", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "abusif": { "form": "abusif", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "abusifs": { "form": "abusifs", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "abusive": { "form": "abusive", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "abusives": { "form": "abusives", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "acariâtre": { "form": "acariâtre", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "acariâtres": { "form": "acariâtres", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "accablé": { "form": "accablé", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "accablée": { "form": "accablée", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "accablées": { "form": "accablées", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "accablés": { "form": "accablés", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "acceptable": { "form": "acceptable", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "acceptables": { "form": "acceptables", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "accessible": { "form": "accessible", "pos": "JJ", "polarity": "0.13", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.7" }, "accessibles": { "form": "accessibles", "pos": "JJ", "polarity": "0.13", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.7" }, "accidenté": { "form": "accidenté", "pos": "JJ", "polarity": "-0.04", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "accidentée": { "form": "accidentée", "pos": "JJ", "polarity": "-0.04", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "accidentées": { "form": "accidentées", "pos": "JJ", "polarity": "-0.04", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "accidentés": { "form": "accidentés", "pos": "JJ", "polarity": "-0.04", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "accolé": { "form": "accolé", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "accolée": { "form": "accolée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "accolées": { "form": "accolées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "accolés": { "form": "accolés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "accommodant": { "form": "accommodant", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "accommodante": { "form": "accommodante", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "accommodantes": { "form": "accommodantes", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "accommodants": { "form": "accommodants", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "accompli": { "form": "accompli", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "accomplie": { "form": "accomplie", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "accomplies": { "form": "accomplies", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "accomplis": { "form": "accomplis", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "accort": { "form": "accort", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "accorte": { "form": "accorte", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "accortes": { "form": "accortes", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "accorts": { "form": "accorts", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "accueillant": { "form": "accueillant", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "accueillante": { "form": "accueillante", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "accueillantes": { "form": "accueillantes", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "accueillants": { "form": "accueillants", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "acerbe": { "form": "acerbe", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "acerbes": { "form": "acerbes", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "acharné": { "form": "acharné", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "acharnée": { "form": "acharnée", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "acharnées": { "form": "acharnées", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "acharnés": { "form": "acharnés", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "achevé": { "form": "achevé", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.7" }, "achevée": { "form": "achevée", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.7" }, "achevées": { "form": "achevées", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.7" }, "achevés": { "form": "achevés", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.7" }, "acidulé": { "form": "acidulé", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "acidulée": { "form": "acidulée", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "acidulées": { "form": "acidulées", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "acidulés": { "form": "acidulés", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "actif": { "form": "actif", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "actifs": { "form": "actifs", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "active": { "form": "active", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "actives": { "form": "actives", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "activiste": { "form": "activiste", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "activistes": { "form": "activistes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "actuel": { "form": "actuel", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "actuelle": { "form": "actuelle", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "actuelles": { "form": "actuelles", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "actuels": { "form": "actuels", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "additionnel": { "form": "additionnel", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "additionnelle": { "form": "additionnelle", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "additionnelles": { "form": "additionnelles", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "additionnels": { "form": "additionnels", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "adjacent": { "form": "adjacent", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "adjacente": { "form": "adjacente", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "adjacentes": { "form": "adjacentes", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "adjacents": { "form": "adjacents", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "administratif": { "form": "administratif", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "administratifs": { "form": "administratifs", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "administrative": { "form": "administrative", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "administratives": { "form": "administratives", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "admirable": { "form": "admirable", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "admirables": { "form": "admirables", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "adolescent": { "form": "adolescent", "pos": "JJ", "polarity": "0.16", "subjectivity": "0.32", "intensity": "1.0", "confidence": "0.7" }, "adolescente": { "form": "adolescente", "pos": "JJ", "polarity": "0.16", "subjectivity": "0.32", "intensity": "1.0", "confidence": "0.7" }, "adolescentes": { "form": "adolescentes", "pos": "JJ", "polarity": "0.16", "subjectivity": "0.32", "intensity": "1.0", "confidence": "0.7" }, "adolescents": { "form": "adolescents", "pos": "JJ", "polarity": "0.16", "subjectivity": "0.32", "intensity": "1.0", "confidence": "0.7" }, "adorable": { "form": "adorable", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "adorables": { "form": "adorables", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "adore": { "form": "adore", "pos": "VB", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "adorer": { "form": "adorer", "pos": "VB", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "adoré": { "form": "adoré", "pos": "VB", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "adroit": { "form": "adroit", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "adroite": { "form": "adroite", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "adroites": { "form": "adroites", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "adroits": { "form": "adroits", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "adulateur": { "form": "adulateur", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.7" }, "adventice": { "form": "adventice", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "adventices": { "form": "adventices", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "adverse": { "form": "adverse", "pos": "JJ", "polarity": "-0.35", "subjectivity": "-0.70", "intensity": "1.0", "confidence": "0.7" }, "adverses": { "form": "adverses", "pos": "JJ", "polarity": "-0.35", "subjectivity": "-0.70", "intensity": "1.0", "confidence": "0.7" }, "adéquat": { "form": "adéquat", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "adéquate": { "form": "adéquate", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "adéquates": { "form": "adéquates", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "adéquats": { "form": "adéquats", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "affable": { "form": "affable", "pos": "JJ", "polarity": "0.31", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "affables": { "form": "affables", "pos": "JJ", "polarity": "0.31", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "affectueuse": { "form": "affectueuse", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "affectueuses": { "form": "affectueuses", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "affectueux": { "form": "affectueux", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "affilé": { "form": "affilé", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "affilée": { "form": "affilée", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "affilées": { "form": "affilées", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "affilés": { "form": "affilés", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "affligeant": { "form": "affligeant", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "affligeante": { "form": "affligeante", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "affligeantes": { "form": "affligeantes", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "affligeants": { "form": "affligeants", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "affligé": { "form": "affligé", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "affligée": { "form": "affligée", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "affligés": { "form": "affligés", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "affolant": { "form": "affolant", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "affolante": { "form": "affolante", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "affolantes": { "form": "affolantes", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "affolants": { "form": "affolants", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "affolé": { "form": "affolé", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "affolée": { "form": "affolée", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "affolées": { "form": "affolées", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "affolés": { "form": "affolés", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "affreuse": { "form": "affreuse", "pos": "JJ", "polarity": "-0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "affreuses": { "form": "affreuses", "pos": "JJ", "polarity": "-0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "affreux": { "form": "affreux", "pos": "JJ", "polarity": "-0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "africain": { "form": "africain", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "africaine": { "form": "africaine", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "africaines": { "form": "africaines", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "africains": { "form": "africains", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "agaçant": { "form": "agaçant", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "agaçante": { "form": "agaçante", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "agaçantes": { "form": "agaçantes", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "agaçants": { "form": "agaçants", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "agissant": { "form": "agissant", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "agissante": { "form": "agissante", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "agissantes": { "form": "agissantes", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "agité": { "form": "agité", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "agitée": { "form": "agitée", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "agitées": { "form": "agitées", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "agités": { "form": "agités", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "agressif": { "form": "agressif", "pos": "JJ", "polarity": "-0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "agressifs": { "form": "agressifs", "pos": "JJ", "polarity": "-0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "agressive": { "form": "agressive", "pos": "JJ", "polarity": "-0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "agressives": { "form": "agressives", "pos": "JJ", "polarity": "-0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "agréable": { "form": "agréable", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "agréablement": { "form": "agréablement", "pos": "RB", "polarity": "0.30", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "agréables": { "form": "agréables", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "ahurissant": { "form": "ahurissant", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "ahurissante": { "form": "ahurissante", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "ahurissantes": { "form": "ahurissantes", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "ahurissants": { "form": "ahurissants", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "aigre": { "form": "aigre", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "aigres": { "form": "aigres", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "aigu": { "form": "aigu", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "aiguisé": { "form": "aiguisé", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "aiguisée": { "form": "aiguisée", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "aiguisées": { "form": "aiguisées", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "aiguisés": { "form": "aiguisés", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "aigus": { "form": "aigus", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "aiguë": { "form": "aiguë", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "aiguës": { "form": "aiguës", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "aimable": { "form": "aimable", "pos": "JJ", "polarity": "0.90", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "aimables": { "form": "aimables", "pos": "JJ", "polarity": "0.90", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "aimant": { "form": "aimant", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.7" }, "aimante": { "form": "aimante", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.7" }, "aimantes": { "form": "aimantes", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.7" }, "aimants": { "form": "aimants", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.7" }, "aime": { "form": "aime", "pos": "VB", "polarity": "0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "aimerait": { "form": "aimerait", "pos": "VB", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "aimé": { "form": "aimé", "pos": "VB", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "aimée": { "form": "aimée", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "aimées": { "form": "aimées", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "aimés": { "form": "aimés", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "ajouté": { "form": "ajouté", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "ajoutée": { "form": "ajoutée", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "ajoutées": { "form": "ajoutées", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "ajoutés": { "form": "ajoutés", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "ajusté": { "form": "ajusté", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "ajustée": { "form": "ajustée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "ajustées": { "form": "ajustées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "ajustés": { "form": "ajustés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "alarmant": { "form": "alarmant", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "alarmante": { "form": "alarmante", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "alarmantes": { "form": "alarmantes", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "alarmants": { "form": "alarmants", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "algérien": { "form": "algérien", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "algérienne": { "form": "algérienne", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "algériennes": { "form": "algériennes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "algériens": { "form": "algériens", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "allemand": { "form": "allemand", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "allemande": { "form": "allemande", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "allemandes": { "form": "allemandes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "allemands": { "form": "allemands", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "allogène": { "form": "allogène", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "allogènes": { "form": "allogènes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "allongé": { "form": "allongé", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "allongée": { "form": "allongée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "allongées": { "form": "allongées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "allongés": { "form": "allongés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "allumé": { "form": "allumé", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "allumée": { "form": "allumée", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "allumées": { "form": "allumées", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "allumés": { "form": "allumés", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "allègre": { "form": "allègre", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "allègres": { "form": "allègres", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "altruiste": { "form": "altruiste", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.7" }, "altruistes": { "form": "altruistes", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.7" }, "altérable": { "form": "altérable", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "altéré": { "form": "altéré", "pos": "JJ", "polarity": "-0.40", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "altérée": { "form": "altérée", "pos": "JJ", "polarity": "-0.40", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "altérées": { "form": "altérées", "pos": "JJ", "polarity": "-0.40", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "altérés": { "form": "altérés", "pos": "JJ", "polarity": "-0.40", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "aléatoire": { "form": "aléatoire", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "aléatoires": { "form": "aléatoires", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "amaigri": { "form": "amaigri", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "amaigrie": { "form": "amaigrie", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "amaigries": { "form": "amaigries", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "amaigris": { "form": "amaigris", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "ambiant": { "form": "ambiant", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "ambiante": { "form": "ambiante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "ambiantes": { "form": "ambiantes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "ambiants": { "form": "ambiants", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "ambigu": { "form": "ambigu", "pos": "JJ", "polarity": "-0.05", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "ambigus": { "form": "ambigus", "pos": "JJ", "polarity": "-0.05", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "ambiguë": { "form": "ambiguë", "pos": "JJ", "polarity": "-0.05", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "ambiguës": { "form": "ambiguës", "pos": "JJ", "polarity": "-0.05", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "amer": { "form": "amer", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "amers": { "form": "amers", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "ami": { "form": "ami", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.9" }, "amical": { "form": "amical", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "amicale": { "form": "amicale", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "amicales": { "form": "amicales", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "amicaux": { "form": "amicaux", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "amie": { "form": "amie", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "amies": { "form": "amies", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "amis": { "form": "amis", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "amoureuse": { "form": "amoureuse", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "amoureuses": { "form": "amoureuses", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "amoureux": { "form": "amoureux", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.60", "intensity": "1.0", "confidence": "1.0" }, "ample": { "form": "ample", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "amples": { "form": "amples", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "amusant": { "form": "amusant", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.9" }, "amusante": { "form": "amusante", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "amusantes": { "form": "amusantes", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "amusants": { "form": "amusants", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "amère": { "form": "amère", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "amères": { "form": "amères", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "amélioré": { "form": "amélioré", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.53", "intensity": "1.0", "confidence": "0.7" }, "améliorée": { "form": "améliorée", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.53", "intensity": "1.0", "confidence": "0.7" }, "améliorées": { "form": "améliorées", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.53", "intensity": "1.0", "confidence": "0.7" }, "améliorés": { "form": "améliorés", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.53", "intensity": "1.0", "confidence": "0.7" }, "américain": { "form": "américain", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "américaine": { "form": "américaine", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "américaines": { "form": "américaines", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "américains": { "form": "américains", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "amérindien": { "form": "amérindien", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.08", "intensity": "1.0", "confidence": "0.7" }, "amérindienne": { "form": "amérindienne", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.08", "intensity": "1.0", "confidence": "0.7" }, "amérindiennes": { "form": "amérindiennes", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.08", "intensity": "1.0", "confidence": "0.7" }, "amérindiens": { "form": "amérindiens", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.08", "intensity": "1.0", "confidence": "0.7" }, "améthyste": { "form": "améthyste", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "analogique": { "form": "analogique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "analogiques": { "form": "analogiques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "analogue": { "form": "analogue", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "analogues": { "form": "analogues", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "ancestral": { "form": "ancestral", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "ancestrale": { "form": "ancestrale", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "ancestrales": { "form": "ancestrales", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "ancestraux": { "form": "ancestraux", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "ancien": { "form": "ancien", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "ancienne": { "form": "ancienne", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "anciennes": { "form": "anciennes", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "anciens": { "form": "anciens", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "androïde": { "form": "androïde", "pos": "JJ", "polarity": "0.11", "subjectivity": "0.22", "intensity": "1.0", "confidence": "0.7" }, "androïdes": { "form": "androïdes", "pos": "JJ", "polarity": "0.11", "subjectivity": "0.22", "intensity": "1.0", "confidence": "0.7" }, "anglais": { "form": "anglais", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "anglaise": { "form": "anglaise", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "anglaises": { "form": "anglaises", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "anglo-saxon": { "form": "anglo-saxon", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.07", "intensity": "1.0", "confidence": "0.7" }, "anglo-saxonne": { "form": "anglo-saxonne", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.07", "intensity": "1.0", "confidence": "0.7" }, "anglo-saxonnes": { "form": "anglo-saxonnes", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.07", "intensity": "1.0", "confidence": "0.7" }, "anglo-saxons": { "form": "anglo-saxons", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.07", "intensity": "1.0", "confidence": "0.7" }, "angoissant": { "form": "angoissant", "pos": "JJ", "polarity": "-0.27", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "angoissante": { "form": "angoissante", "pos": "JJ", "polarity": "-0.27", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "angoissantes": { "form": "angoissantes", "pos": "JJ", "polarity": "-0.27", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "angoissants": { "form": "angoissants", "pos": "JJ", "polarity": "-0.27", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "angoissé": { "form": "angoissé", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "angoissée": { "form": "angoissée", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "angoissées": { "form": "angoissées", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "angoissés": { "form": "angoissés", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "angélique": { "form": "angélique", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "angéliques": { "form": "angéliques", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "anhydre": { "form": "anhydre", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "animal": { "form": "animal", "pos": "JJ", "polarity": "-0.30", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "animale": { "form": "animale", "pos": "JJ", "polarity": "-0.30", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "animales": { "form": "animales", "pos": "JJ", "polarity": "-0.30", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "annexé": { "form": "annexé", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "annexée": { "form": "annexée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "annexées": { "form": "annexées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "annexés": { "form": "annexés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "anodin": { "form": "anodin", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "anodine": { "form": "anodine", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "anodines": { "form": "anodines", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "anodins": { "form": "anodins", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "anonyme": { "form": "anonyme", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "anonymes": { "form": "anonymes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "anormal": { "form": "anormal", "pos": "JJ", "polarity": "-0.08", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "anormale": { "form": "anormale", "pos": "JJ", "polarity": "-0.08", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "anormales": { "form": "anormales", "pos": "JJ", "polarity": "-0.08", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "anormaux": { "form": "anormaux", "pos": "JJ", "polarity": "-0.08", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "antagonique": { "form": "antagonique", "pos": "JJ", "polarity": "-0.35", "subjectivity": "-0.70", "intensity": "1.0", "confidence": "0.7" }, "anthropoïde": { "form": "anthropoïde", "pos": "JJ", "polarity": "0.11", "subjectivity": "0.22", "intensity": "1.0", "confidence": "0.7" }, "anthropoïdes": { "form": "anthropoïdes", "pos": "JJ", "polarity": "0.11", "subjectivity": "0.22", "intensity": "1.0", "confidence": "0.7" }, "anticapitaliste": { "form": "anticapitaliste", "pos": "JJ", "polarity": "-0.11", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "antique": { "form": "antique", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "antiques": { "form": "antiques", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "antérieur": { "form": "antérieur", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "antérieure": { "form": "antérieure", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "antérieures": { "form": "antérieures", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "antérieurs": { "form": "antérieurs", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "anxieuse": { "form": "anxieuse", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "anxieuses": { "form": "anxieuses", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "anxieux": { "form": "anxieux", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "apeuré": { "form": "apeuré", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "apeurée": { "form": "apeurée", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "apeurées": { "form": "apeurées", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "apeurés": { "form": "apeurés", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "aphasique": { "form": "aphasique", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "aphasiques": { "form": "aphasiques", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "aplati": { "form": "aplati", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.28", "intensity": "1.0", "confidence": "0.7" }, "aplatie": { "form": "aplatie", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.28", "intensity": "1.0", "confidence": "0.7" }, "aplaties": { "form": "aplaties", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.28", "intensity": "1.0", "confidence": "0.7" }, "aplatis": { "form": "aplatis", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.28", "intensity": "1.0", "confidence": "0.7" }, "apparent": { "form": "apparent", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "apparente": { "form": "apparente", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "apparentes": { "form": "apparentes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "apparents": { "form": "apparents", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "appliqué": { "form": "appliqué", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.7" }, "appliquée": { "form": "appliquée", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.7" }, "appliquées": { "form": "appliquées", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.7" }, "appliqués": { "form": "appliqués", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.7" }, "approchant": { "form": "approchant", "pos": "JJ", "polarity": "-0.03", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "approchants": { "form": "approchants", "pos": "JJ", "polarity": "-0.03", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "approché": { "form": "approché", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "approchée": { "form": "approchée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "approchés": { "form": "approchés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "approprié": { "form": "approprié", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "appropriée": { "form": "appropriée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "appropriées": { "form": "appropriées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "appropriés": { "form": "appropriés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "approximatif": { "form": "approximatif", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "approximatifs": { "form": "approximatifs", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "approximative": { "form": "approximative", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "approximatives": { "form": "approximatives", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "appréciable": { "form": "appréciable", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "appréciables": { "form": "appréciables", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "apprécié": { "form": "apprécié", "pos": "VB", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "arabe": { "form": "arabe", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "arabes": { "form": "arabes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "arachnéen": { "form": "arachnéen", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.18", "intensity": "1.0", "confidence": "0.7" }, "arachnéenne": { "form": "arachnéenne", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.18", "intensity": "1.0", "confidence": "0.7" }, "arachnéennes": { "form": "arachnéennes", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.18", "intensity": "1.0", "confidence": "0.7" }, "ardent": { "form": "ardent", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "ardente": { "form": "ardente", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "ardentes": { "form": "ardentes", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "ardents": { "form": "ardents", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "argenté": { "form": "argenté", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "argentée": { "form": "argentée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "argentées": { "form": "argentées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "argentés": { "form": "argentés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "aristocrate": { "form": "aristocrate", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "aristocrates": { "form": "aristocrates", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "armé": { "form": "armé", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "armée": { "form": "armée", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "armées": { "form": "armées", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "armés": { "form": "armés", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "arrivé": { "form": "arrivé", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "arrivée": { "form": "arrivée", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "arrivées": { "form": "arrivées", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "arrivés": { "form": "arrivés", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "arrière": { "form": "arrière", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "arriéré": { "form": "arriéré", "pos": "JJ", "polarity": "-0.18", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "arriérée": { "form": "arriérée", "pos": "JJ", "polarity": "-0.18", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "arriérées": { "form": "arriérées", "pos": "JJ", "polarity": "-0.18", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "arriérés": { "form": "arriérés", "pos": "JJ", "polarity": "-0.18", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "arrondi": { "form": "arrondi", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "arrondie": { "form": "arrondie", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "arrondies": { "form": "arrondies", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "arrondis": { "form": "arrondis", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "arrêté": { "form": "arrêté", "pos": "VB", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "arrêtée": { "form": "arrêtée", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "arrêtées": { "form": "arrêtées", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "arrêtés": { "form": "arrêtés", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "artificiel": { "form": "artificiel", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "artificielle": { "form": "artificielle", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "artificielles": { "form": "artificielles", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "artificiels": { "form": "artificiels", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "artistique": { "form": "artistique", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "artistiques": { "form": "artistiques", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "assemblé": { "form": "assemblé", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "assemblés": { "form": "assemblés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "assidu": { "form": "assidu", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "assidue": { "form": "assidue", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "assidues": { "form": "assidues", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "assidus": { "form": "assidus", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "assis": { "form": "assis", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "assise": { "form": "assise", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "assises": { "form": "assises", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "assoupi": { "form": "assoupi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "assoupie": { "form": "assoupie", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "assoupies": { "form": "assoupies", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "assoupis": { "form": "assoupis", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "assujetti": { "form": "assujetti", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "assujetties": { "form": "assujetties", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "assujettis": { "form": "assujettis", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "assuré": { "form": "assuré", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "assurée": { "form": "assurée", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "assurées": { "form": "assurées", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "assurés": { "form": "assurés", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "astral": { "form": "astral", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "astrale": { "form": "astrale", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "astrales": { "form": "astrales", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "astraux": { "form": "astraux", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "astronomique": { "form": "astronomique", "pos": "JJ", "polarity": "0.11", "subjectivity": "0.22", "intensity": "1.0", "confidence": "0.7" }, "astronomiques": { "form": "astronomiques", "pos": "JJ", "polarity": "0.11", "subjectivity": "0.22", "intensity": "1.0", "confidence": "0.7" }, "astucieuse": { "form": "astucieuse", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "astucieuses": { "form": "astucieuses", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "astucieux": { "form": "astucieux", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "athlétique": { "form": "athlétique", "pos": "JJ", "polarity": "0.21", "subjectivity": "0.41", "intensity": "1.0", "confidence": "0.7" }, "athlétiques": { "form": "athlétiques", "pos": "JJ", "polarity": "0.21", "subjectivity": "0.41", "intensity": "1.0", "confidence": "0.7" }, "atroce": { "form": "atroce", "pos": "JJ", "polarity": "-0.90", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "atroces": { "form": "atroces", "pos": "JJ", "polarity": "-0.90", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "atrocité": { "form": "atrocité", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "attachant": { "form": "attachant", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "attachante": { "form": "attachante", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "attachants": { "form": "attachants", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "attardé": { "form": "attardé", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "attardée": { "form": "attardée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "attardées": { "form": "attardées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "attardés": { "form": "attardés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "attenant": { "form": "attenant", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "attenante": { "form": "attenante", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "attenantes": { "form": "attenantes", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "attentif": { "form": "attentif", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "attentifs": { "form": "attentifs", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "attentionné": { "form": "attentionné", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "attentionnée": { "form": "attentionnée", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "attentionnées": { "form": "attentionnées", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "attentionnés": { "form": "attentionnés", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "attentive": { "form": "attentive", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "attentives": { "form": "attentives", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "attirant": { "form": "attirant", "pos": "JJ", "polarity": "0.31", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.7" }, "attirante": { "form": "attirante", "pos": "JJ", "polarity": "0.31", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.7" }, "attirantes": { "form": "attirantes", "pos": "JJ", "polarity": "0.31", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.7" }, "attirants": { "form": "attirants", "pos": "JJ", "polarity": "0.31", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.7" }, "attitré": { "form": "attitré", "pos": "JJ", "polarity": "-0.09", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "attitrée": { "form": "attitrée", "pos": "JJ", "polarity": "-0.09", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "attitrées": { "form": "attitrées", "pos": "JJ", "polarity": "-0.09", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "attitrés": { "form": "attitrés", "pos": "JJ", "polarity": "-0.09", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "attristé": { "form": "attristé", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "attristée": { "form": "attristée", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "attristés": { "form": "attristés", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "atypique": { "form": "atypique", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "atypiques": { "form": "atypiques", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "aubergine": { "form": "aubergine", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "audacieuse": { "form": "audacieuse", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "audacieuses": { "form": "audacieuses", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "audacieux": { "form": "audacieux", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "audible": { "form": "audible", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "audibles": { "form": "audibles", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "auguste": { "form": "auguste", "pos": "JJ", "polarity": "0.28", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "augustes": { "form": "augustes", "pos": "JJ", "polarity": "0.28", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "austère": { "form": "austère", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.9" }, "austères": { "form": "austères", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.8" }, "authentique": { "form": "authentique", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "authentiques": { "form": "authentiques", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "autonome": { "form": "autonome", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.7" }, "autonomes": { "form": "autonomes", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.7" }, "autorisé": { "form": "autorisé", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "autorisée": { "form": "autorisée", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "autorisées": { "form": "autorisées", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "autorisés": { "form": "autorisés", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "autoritaire": { "form": "autoritaire", "pos": "JJ", "polarity": "-0.11", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "autoritaires": { "form": "autoritaires", "pos": "JJ", "polarity": "-0.11", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "autre": { "form": "autre", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "autres": { "form": "autres", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "avancé": { "form": "avancé", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "avancée": { "form": "avancée", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "avancées": { "form": "avancées", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "avancés": { "form": "avancés", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "avant-courrier": { "form": "avant-courrier", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "avant-courrière": { "form": "avant-courrière", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "avantageuse": { "form": "avantageuse", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "avantageuses": { "form": "avantageuses", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "avantageux": { "form": "avantageux", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "avarié": { "form": "avarié", "pos": "JJ", "polarity": "-0.40", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "avariée": { "form": "avariée", "pos": "JJ", "polarity": "-0.40", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "avariées": { "form": "avariées", "pos": "JJ", "polarity": "-0.40", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "avariés": { "form": "avariés", "pos": "JJ", "polarity": "-0.40", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "avenant": { "form": "avenant", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "avenante": { "form": "avenante", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "avenantes": { "form": "avenantes", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "avenants": { "form": "avenants", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "aventureuse": { "form": "aventureuse", "pos": "JJ", "polarity": "-0.28", "subjectivity": "-0.55", "intensity": "1.0", "confidence": "0.7" }, "aventureuses": { "form": "aventureuses", "pos": "JJ", "polarity": "-0.28", "subjectivity": "-0.55", "intensity": "1.0", "confidence": "0.7" }, "aventureux": { "form": "aventureux", "pos": "JJ", "polarity": "-0.28", "subjectivity": "-0.55", "intensity": "1.0", "confidence": "0.7" }, "aveugle": { "form": "aveugle", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "aveugles": { "form": "aveugles", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "avide": { "form": "avide", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "avides": { "form": "avides", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "azimuté": { "form": "azimuté", "pos": "JJ", "polarity": "-0.01", "subjectivity": "-0.01", "intensity": "1.0", "confidence": "0.7" }, "aérien": { "form": "aérien", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "aérienne": { "form": "aérienne", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "aériennes": { "form": "aériennes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "aériens": { "form": "aériens", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "aîné": { "form": "aîné", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "aînée": { "form": "aînée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "aînées": { "form": "aînées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "aînés": { "form": "aînés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "bagarreur": { "form": "bagarreur", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "bagarreurs": { "form": "bagarreurs", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "bagarreuse": { "form": "bagarreuse", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "bagarreuses": { "form": "bagarreuses", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "balistique": { "form": "balistique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "balistiques": { "form": "balistiques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "balourd": { "form": "balourd", "pos": "JJ", "polarity": "-0.24", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "balourde": { "form": "balourde", "pos": "JJ", "polarity": "-0.24", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "balourds": { "form": "balourds", "pos": "JJ", "polarity": "-0.24", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "banal": { "form": "banal", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "banale": { "form": "banale", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "banales": { "form": "banales", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "banals": { "form": "banals", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "banaux": { "form": "banaux", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "bancal": { "form": "bancal", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "bancale": { "form": "bancale", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "bancales": { "form": "bancales", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "bancals": { "form": "bancals", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "barbare": { "form": "barbare", "pos": "JJ", "polarity": "-0.70", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "barbares": { "form": "barbares", "pos": "JJ", "polarity": "-0.70", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "bas": { "form": "bas", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "basané": { "form": "basané", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "basanée": { "form": "basanée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "basanées": { "form": "basanées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "basanés": { "form": "basanés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "basse": { "form": "basse", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "basses": { "form": "basses", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "batailleur": { "form": "batailleur", "pos": "JJ", "polarity": "-0.40", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "batailleurs": { "form": "batailleurs", "pos": "JJ", "polarity": "-0.40", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "batailleuse": { "form": "batailleuse", "pos": "JJ", "polarity": "-0.40", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "batailleuses": { "form": "batailleuses", "pos": "JJ", "polarity": "-0.40", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "battant": { "form": "battant", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "battante": { "form": "battante", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.8" }, "battantes": { "form": "battantes", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.8" }, "battants": { "form": "battants", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.8" }, "battu": { "form": "battu", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "battue": { "form": "battue", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "battues": { "form": "battues", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "battus": { "form": "battus", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "bavard": { "form": "bavard", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.9" }, "bavarde": { "form": "bavarde", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "bavardes": { "form": "bavardes", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "bavards": { "form": "bavards", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "beau": { "form": "beau", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "1.0" }, "beaux": { "form": "beaux", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "beaucoup": { "form": "beaucoup", "pos": "RB", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.2", "confidence": "0.8" }, "bel": { "form": "bel", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "belge": { "form": "belge", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "belges": { "form": "belges", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "belle": { "form": "belle", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "belles": { "form": "belles", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "belligérant": { "form": "belligérant", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "belligérante": { "form": "belligérante", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "belligérantes": { "form": "belligérantes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "belligérants": { "form": "belligérants", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "belliqueuse": { "form": "belliqueuse", "pos": "JJ", "polarity": "-0.23", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "belliqueuses": { "form": "belliqueuses", "pos": "JJ", "polarity": "-0.23", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "belliqueux": { "form": "belliqueux", "pos": "JJ", "polarity": "-0.23", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "besogneuse": { "form": "besogneuse", "pos": "JJ", "polarity": "-0.34", "subjectivity": "-1.00", "intensity": "1.0", "confidence": "0.7" }, "besogneuses": { "form": "besogneuses", "pos": "JJ", "polarity": "-0.34", "subjectivity": "-1.00", "intensity": "1.0", "confidence": "0.7" }, "besogneux": { "form": "besogneux", "pos": "JJ", "polarity": "-0.34", "subjectivity": "-1.00", "intensity": "1.0", "confidence": "0.7" }, "bien": { "form": "bien", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "bienfaisant": { "form": "bienfaisant", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.7" }, "bienfaisante": { "form": "bienfaisante", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.7" }, "bienfaisantes": { "form": "bienfaisantes", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.7" }, "bienfaisants": { "form": "bienfaisants", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.7" }, "bienheureuse": { "form": "bienheureuse", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.7" }, "bienheureuses": { "form": "bienheureuses", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.7" }, "bienheureux": { "form": "bienheureux", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.7" }, "bienséant": { "form": "bienséant", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "bienséante": { "form": "bienséante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "bienséantes": { "form": "bienséantes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "bienséants": { "form": "bienséants", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "bienveillant": { "form": "bienveillant", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "bienveillante": { "form": "bienveillante", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "bienveillantes": { "form": "bienveillantes", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "bienveillants": { "form": "bienveillants", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "bijou": { "form": "bijou", "pos": "NN", "polarity": "0.30", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "biscornu": { "form": "biscornu", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "biscornue": { "form": "biscornue", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "biscornues": { "form": "biscornues", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "biscornus": { "form": "biscornus", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "bistre": { "form": "bistre", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "bizarre": { "form": "bizarre", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "bizarres": { "form": "bizarres", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "blafard": { "form": "blafard", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "blafarde": { "form": "blafarde", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "blafardes": { "form": "blafardes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "blafards": { "form": "blafards", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "blanc": { "form": "blanc", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "blanche": { "form": "blanche", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "blanches": { "form": "blanches", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "blancs": { "form": "blancs", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "blessant": { "form": "blessant", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "blessante": { "form": "blessante", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "blessantes": { "form": "blessantes", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "blessants": { "form": "blessants", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "blessé": { "form": "blessé", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "blessée": { "form": "blessée", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "blessées": { "form": "blessées", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "blessés": { "form": "blessés", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "bleu": { "form": "bleu", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "bleue": { "form": "bleue", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "bleues": { "form": "bleues", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "bleus": { "form": "bleus", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "bleuté": { "form": "bleuté", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.04", "intensity": "1.0", "confidence": "0.7" }, "bleutée": { "form": "bleutée", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.04", "intensity": "1.0", "confidence": "0.7" }, "bleutées": { "form": "bleutées", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.04", "intensity": "1.0", "confidence": "0.7" }, "bleutés": { "form": "bleutés", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.04", "intensity": "1.0", "confidence": "0.7" }, "bleuâtre": { "form": "bleuâtre", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.04", "intensity": "1.0", "confidence": "0.7" }, "bleuâtres": { "form": "bleuâtres", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.04", "intensity": "1.0", "confidence": "0.7" }, "blond": { "form": "blond", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "blondasse": { "form": "blondasse", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.03", "intensity": "1.0", "confidence": "0.7" }, "blondasses": { "form": "blondasses", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.03", "intensity": "1.0", "confidence": "0.7" }, "blonde": { "form": "blonde", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "blondes": { "form": "blondes", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "blonds": { "form": "blonds", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "blâmable": { "form": "blâmable", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "blême": { "form": "blême", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "blêmes": { "form": "blêmes", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "bon": { "form": "bon", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "1.0" }, "bonheur": { "form": "bonheur", "pos": "NN", "polarity": "0.50", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "bonhomme": { "form": "bonhomme", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.7" }, "bonhommes": { "form": "bonhommes", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.7" }, "bonne": { "form": "bonne", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "bonnes": { "form": "bonnes", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "bons": { "form": "bons", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "boudiné": { "form": "boudiné", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "boudinée": { "form": "boudinée", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "boudinées": { "form": "boudinées", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "boudinés": { "form": "boudinés", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "boueuse": { "form": "boueuse", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "boueuses": { "form": "boueuses", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "boueux": { "form": "boueux", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "bouffi": { "form": "bouffi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "bouffie": { "form": "bouffie", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "bouffies": { "form": "bouffies", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "bouffis": { "form": "bouffis", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "bouffon": { "form": "bouffon", "pos": "JJ", "polarity": "0.26", "subjectivity": "0.53", "intensity": "1.0", "confidence": "0.7" }, "bouffonne": { "form": "bouffonne", "pos": "JJ", "polarity": "0.26", "subjectivity": "0.53", "intensity": "1.0", "confidence": "0.7" }, "bouffonnes": { "form": "bouffonnes", "pos": "JJ", "polarity": "0.26", "subjectivity": "0.53", "intensity": "1.0", "confidence": "0.7" }, "bouffons": { "form": "bouffons", "pos": "JJ", "polarity": "0.26", "subjectivity": "0.53", "intensity": "1.0", "confidence": "0.7" }, "bouillant": { "form": "bouillant", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "bouillante": { "form": "bouillante", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "bouillantes": { "form": "bouillantes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "bouillants": { "form": "bouillants", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "bouilli": { "form": "bouilli", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "bouillie": { "form": "bouillie", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "bouillies": { "form": "bouillies", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "bouillis": { "form": "bouillis", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "bourgeois": { "form": "bourgeois", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "bourgeoise": { "form": "bourgeoise", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "bourgeoises": { "form": "bourgeoises", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "bourré": { "form": "bourré", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.29", "intensity": "1.0", "confidence": "0.7" }, "bourrée": { "form": "bourrée", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.29", "intensity": "1.0", "confidence": "0.7" }, "bourrées": { "form": "bourrées", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.29", "intensity": "1.0", "confidence": "0.7" }, "bourrés": { "form": "bourrés", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.29", "intensity": "1.0", "confidence": "0.7" }, "brave": { "form": "brave", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "braves": { "form": "braves", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "bref": { "form": "bref", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "brefs": { "form": "brefs", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "breton": { "form": "breton", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "bretonne": { "form": "bretonne", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "bretonnes": { "form": "bretonnes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "bretons": { "form": "bretons", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "brillant": { "form": "brillant", "pos": "JJ", "polarity": "0.65", "subjectivity": "0.70", "intensity": "1.0", "confidence": "1.0" }, "brillante": { "form": "brillante", "pos": "JJ", "polarity": "0.65", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "brillantes": { "form": "brillantes", "pos": "JJ", "polarity": "0.65", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "brillants": { "form": "brillants", "pos": "JJ", "polarity": "0.65", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "brisé": { "form": "brisé", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "brisée": { "form": "brisée", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "brisés": { "form": "brisés", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "britannique": { "form": "britannique", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "britanniques": { "form": "britanniques", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "british": { "form": "british", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.07", "intensity": "1.0", "confidence": "0.7" }, "brun": { "form": "brun", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "brune": { "form": "brune", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "brunes": { "form": "brunes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "bruns": { "form": "bruns", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "brusque": { "form": "brusque", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.9" }, "brusques": { "form": "brusques", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "brutal": { "form": "brutal", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "brutale": { "form": "brutale", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "brutales": { "form": "brutales", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "brutaux": { "form": "brutaux", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "bruyant": { "form": "bruyant", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "bruyante": { "form": "bruyante", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "bruyantes": { "form": "bruyantes", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "bruyants": { "form": "bruyants", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "brève": { "form": "brève", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "brèves": { "form": "brèves", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "brûlant": { "form": "brûlant", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "brûlante": { "form": "brûlante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "brûlantes": { "form": "brûlantes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "brûlants": { "form": "brûlants", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "brûlé": { "form": "brûlé", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "brûlée": { "form": "brûlée", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "brûlées": { "form": "brûlées", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "brûlés": { "form": "brûlés", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "buriné": { "form": "buriné", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "burinée": { "form": "burinée", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "burinées": { "form": "burinées", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "burinés": { "form": "burinés", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "burlesque": { "form": "burlesque", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "burlesques": { "form": "burlesques", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "byzantin": { "form": "byzantin", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "byzantine": { "form": "byzantine", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "byzantines": { "form": "byzantines", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "byzantins": { "form": "byzantins", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "béant": { "form": "béant", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "béante": { "form": "béante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "béantes": { "form": "béantes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "béants": { "form": "béants", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "bête": { "form": "bête", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "bêtes": { "form": "bêtes", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "cabalistique": { "form": "cabalistique", "pos": "JJ", "polarity": "0.24", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.7" }, "cabalistiques": { "form": "cabalistiques", "pos": "JJ", "polarity": "0.24", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.7" }, "caché": { "form": "caché", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "cachée": { "form": "cachée", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "cachées": { "form": "cachées", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "cachés": { "form": "cachés", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "cadeau": { "form": "cadeau", "pos": "NN", "polarity": "0.45", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "cagneuse": { "form": "cagneuse", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "cagneuses": { "form": "cagneuses", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "cagneux": { "form": "cagneux", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "calciné": { "form": "calciné", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "calcinée": { "form": "calcinée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "calcinées": { "form": "calcinées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "calcinés": { "form": "calcinés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "calculateur": { "form": "calculateur", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "calculateurs": { "form": "calculateurs", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "calme": { "form": "calme", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.35", "intensity": "1.0", "confidence": "1.0" }, "calmes": { "form": "calmes", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.9" }, "camard": { "form": "camard", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.28", "intensity": "1.0", "confidence": "0.7" }, "camarde": { "form": "camarde", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.28", "intensity": "1.0", "confidence": "0.7" }, "camards": { "form": "camards", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.28", "intensity": "1.0", "confidence": "0.7" }, "candide": { "form": "candide", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "candides": { "form": "candides", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "capable": { "form": "capable", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "capables": { "form": "capables", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "capital": { "form": "capital", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "capitale": { "form": "capitale", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "capitales": { "form": "capitales", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "capitaliste": { "form": "capitaliste", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "capitalistes": { "form": "capitalistes", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "capitaux": { "form": "capitaux", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "capitonné": { "form": "capitonné", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "capitonnée": { "form": "capitonnée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "capitonnées": { "form": "capitonnées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "capitonnés": { "form": "capitonnés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "captif": { "form": "captif", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "captifs": { "form": "captifs", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "captivant": { "form": "captivant", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "captivante": { "form": "captivante", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "captivantes": { "form": "captivantes", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "captive": { "form": "captive", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "captives": { "form": "captives", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "carmin": { "form": "carmin", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.01", "intensity": "1.0", "confidence": "0.7" }, "carré": { "form": "carré", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "carrée": { "form": "carrée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "carrées": { "form": "carrées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "carrés": { "form": "carrés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "cassant": { "form": "cassant", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "cassante": { "form": "cassante", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "cassantes": { "form": "cassantes", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "cassants": { "form": "cassants", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "cassé": { "form": "cassé", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "cassée": { "form": "cassée", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "cassées": { "form": "cassées", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "cassés": { "form": "cassés", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "catastrophe": { "form": "catastrophe", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "catholique": { "form": "catholique", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "catholiques": { "form": "catholiques", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "cavalier": { "form": "cavalier", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.7" }, "cavaliers": { "form": "cavaliers", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.7" }, "cavalière": { "form": "cavalière", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.7" }, "cavalières": { "form": "cavalières", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.7" }, "caverneuse": { "form": "caverneuse", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "caverneuses": { "form": "caverneuses", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "caverneux": { "form": "caverneux", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "cendré": { "form": "cendré", "pos": "JJ", "polarity": "-0.09", "subjectivity": "-0.18", "intensity": "1.0", "confidence": "0.7" }, "cendrée": { "form": "cendrée", "pos": "JJ", "polarity": "-0.09", "subjectivity": "-0.18", "intensity": "1.0", "confidence": "0.7" }, "cendrées": { "form": "cendrées", "pos": "JJ", "polarity": "-0.09", "subjectivity": "-0.18", "intensity": "1.0", "confidence": "0.7" }, "cendrés": { "form": "cendrés", "pos": "JJ", "polarity": "-0.09", "subjectivity": "-0.18", "intensity": "1.0", "confidence": "0.7" }, "censé": { "form": "censé", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "censée": { "form": "censée", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "censées": { "form": "censées", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "censés": { "form": "censés", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "central": { "form": "central", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "centrale": { "form": "centrale", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "centrales": { "form": "centrales", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "centraux": { "form": "centraux", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "certain": { "form": "certain", "pos": "JJ", "polarity": "0.29", "subjectivity": "0.15", "intensity": "1.0", "confidence": "1.0" }, "certaine": { "form": "certaine", "pos": "JJ", "polarity": "0.29", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "certainement": { "form": "certainement", "pos": "RB", "polarity": "0.10", "subjectivity": "0.25", "intensity": "2.0", "confidence": "0.9" }, "certaines": { "form": "certaines", "pos": "JJ", "polarity": "0.29", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "certains": { "form": "certains", "pos": "JJ", "polarity": "0.29", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "chaleureuse": { "form": "chaleureuse", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "chaleureuses": { "form": "chaleureuses", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "chaleureux": { "form": "chaleureux", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "changé": { "form": "changé", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "changée": { "form": "changée", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "changées": { "form": "changées", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "changés": { "form": "changés", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "charitable": { "form": "charitable", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.7" }, "charitables": { "form": "charitables", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.7" }, "charmant": { "form": "charmant", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "charmante": { "form": "charmante", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "charmantes": { "form": "charmantes", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "charmants": { "form": "charmants", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "charnel": { "form": "charnel", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "charnelle": { "form": "charnelle", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "charnelles": { "form": "charnelles", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "charnels": { "form": "charnels", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "charnu": { "form": "charnu", "pos": "JJ", "polarity": "-0.17", "subjectivity": "-0.35", "intensity": "1.0", "confidence": "0.7" }, "charnue": { "form": "charnue", "pos": "JJ", "polarity": "-0.17", "subjectivity": "-0.35", "intensity": "1.0", "confidence": "0.7" }, "charnues": { "form": "charnues", "pos": "JJ", "polarity": "-0.17", "subjectivity": "-0.35", "intensity": "1.0", "confidence": "0.7" }, "charnus": { "form": "charnus", "pos": "JJ", "polarity": "-0.17", "subjectivity": "-0.35", "intensity": "1.0", "confidence": "0.7" }, "chaste": { "form": "chaste", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "chastes": { "form": "chastes", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "chatoyant": { "form": "chatoyant", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "chatoyante": { "form": "chatoyante", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "chatoyantes": { "form": "chatoyantes", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "chatoyants": { "form": "chatoyants", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "chaud": { "form": "chaud", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.0", "confidence": "1.0" }, "chaude": { "form": "chaude", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "chaudes": { "form": "chaudes", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "chauds": { "form": "chauds", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "chauve": { "form": "chauve", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "chauves": { "form": "chauves", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "chef-d'oeuvre": { "form": "chef-d'oeuvre", "pos": "NN", "polarity": "0.70", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "cher": { "form": "cher", "pos": "JJ", "polarity": "-0.21", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "chers": { "form": "chers", "pos": "JJ", "polarity": "-0.21", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "chic": { "form": "chic", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "chics": { "form": "chics", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "chimérique": { "form": "chimérique", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "chimériques": { "form": "chimériques", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "chinois": { "form": "chinois", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "chinoise": { "form": "chinoise", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "chinoises": { "form": "chinoises", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "choisi": { "form": "choisi", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "choisie": { "form": "choisie", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "choisies": { "form": "choisies", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "choisis": { "form": "choisis", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "chouette": { "form": "chouette", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "chouettes": { "form": "chouettes", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "chronique": { "form": "chronique", "pos": "JJ", "polarity": "-0.01", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "chroniques": { "form": "chroniques", "pos": "JJ", "polarity": "-0.01", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "chrétien": { "form": "chrétien", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "chrétienne": { "form": "chrétienne", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "chrétiennes": { "form": "chrétiennes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "chrétiens": { "form": "chrétiens", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "chère": { "form": "chère", "pos": "JJ", "polarity": "-0.21", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "chères": { "form": "chères", "pos": "JJ", "polarity": "-0.21", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "chéri": { "form": "chéri", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "chérie": { "form": "chérie", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "chéries": { "form": "chéries", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "chérir": { "form": "chérir", "pos": "VB", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "chéris": { "form": "chéris", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "chérot": { "form": "chérot", "pos": "JJ", "polarity": "-0.11", "subjectivity": "-0.21", "intensity": "1.0", "confidence": "0.7" }, "chétif": { "form": "chétif", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.38", "intensity": "1.0", "confidence": "0.7" }, "chétifs": { "form": "chétifs", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.38", "intensity": "1.0", "confidence": "0.7" }, "chétive": { "form": "chétive", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.38", "intensity": "1.0", "confidence": "0.7" }, "chétives": { "form": "chétives", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.38", "intensity": "1.0", "confidence": "0.7" }, "ci-inclus": { "form": "ci-inclus", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "ci-incluse": { "form": "ci-incluse", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "ci-incluses": { "form": "ci-incluses", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "cinglant": { "form": "cinglant", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "cinglante": { "form": "cinglante", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "cinglantes": { "form": "cinglantes", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "cinglants": { "form": "cinglants", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "cinglé": { "form": "cinglé", "pos": "JJ", "polarity": "-0.01", "subjectivity": "-0.01", "intensity": "1.0", "confidence": "0.7" }, "cinglée": { "form": "cinglée", "pos": "JJ", "polarity": "-0.01", "subjectivity": "-0.01", "intensity": "1.0", "confidence": "0.7" }, "cinglées": { "form": "cinglées", "pos": "JJ", "polarity": "-0.01", "subjectivity": "-0.01", "intensity": "1.0", "confidence": "0.7" }, "cinglés": { "form": "cinglés", "pos": "JJ", "polarity": "-0.01", "subjectivity": "-0.01", "intensity": "1.0", "confidence": "0.7" }, "cinoque": { "form": "cinoque", "pos": "JJ", "polarity": "-0.01", "subjectivity": "-0.01", "intensity": "1.0", "confidence": "0.7" }, "cinquième": { "form": "cinquième", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "cinquièmes": { "form": "cinquièmes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "cinétique": { "form": "cinétique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "circonspect": { "form": "circonspect", "pos": "JJ", "polarity": "-0.01", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "circonspecte": { "form": "circonspecte", "pos": "JJ", "polarity": "-0.01", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "circonspectes": { "form": "circonspectes", "pos": "JJ", "polarity": "-0.01", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "circonspects": { "form": "circonspects", "pos": "JJ", "polarity": "-0.01", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "circulaire": { "form": "circulaire", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "circulaires": { "form": "circulaires", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "cireuse": { "form": "cireuse", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.05", "intensity": "1.0", "confidence": "0.7" }, "cireuses": { "form": "cireuses", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.05", "intensity": "1.0", "confidence": "0.7" }, "cireux": { "form": "cireux", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.05", "intensity": "1.0", "confidence": "0.7" }, "ciselé": { "form": "ciselé", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "ciselée": { "form": "ciselée", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "ciselées": { "form": "ciselées", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "ciselés": { "form": "ciselés", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "civil": { "form": "civil", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "civile": { "form": "civile", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "civiles": { "form": "civiles", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "civilisé": { "form": "civilisé", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "civilisée": { "form": "civilisée", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "civilisées": { "form": "civilisées", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "civilisés": { "form": "civilisés", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "civils": { "form": "civils", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "clair": { "form": "clair", "pos": "JJ", "polarity": "0.28", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "claire": { "form": "claire", "pos": "JJ", "polarity": "0.28", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "clairement": { "form": "clairement", "pos": "RB", "polarity": "0.25", "subjectivity": "0.50", "intensity": "2.0", "confidence": "0.9" }, "claires": { "form": "claires", "pos": "JJ", "polarity": "0.28", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "clairs": { "form": "clairs", "pos": "JJ", "polarity": "0.28", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "clandestin": { "form": "clandestin", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "clandestine": { "form": "clandestine", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "clandestines": { "form": "clandestines", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "clandestins": { "form": "clandestins", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "classique": { "form": "classique", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "classiques": { "form": "classiques", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "clos": { "form": "clos", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "close": { "form": "close", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "closes": { "form": "closes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "clérical": { "form": "clérical", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "cléricale": { "form": "cléricale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "cléricales": { "form": "cléricales", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "cléricaux": { "form": "cléricaux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "cocasse": { "form": "cocasse", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.75", "intensity": "1.0", "confidence": "0.7" }, "cocasses": { "form": "cocasses", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.75", "intensity": "1.0", "confidence": "0.7" }, "coeur": { "form": "coeur", "pos": "NN", "polarity": "0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "collant": { "form": "collant", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "collante": { "form": "collante", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "collantes": { "form": "collantes", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "collants": { "form": "collants", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "collectif": { "form": "collectif", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "collectifs": { "form": "collectifs", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "collective": { "form": "collective", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "collectives": { "form": "collectives", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "collégial": { "form": "collégial", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "collégiale": { "form": "collégiale", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "collégiales": { "form": "collégiales", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "collégiaux": { "form": "collégiaux", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "colonial": { "form": "colonial", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "coloniale": { "form": "coloniale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "coloniales": { "form": "coloniales", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "coloniaux": { "form": "coloniaux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "coloré": { "form": "coloré", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "colorée": { "form": "colorée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "colorées": { "form": "colorées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "colorés": { "form": "colorés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "colossal": { "form": "colossal", "pos": "JJ", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "colossale": { "form": "colossale", "pos": "JJ", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "colossales": { "form": "colossales", "pos": "JJ", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "colossaux": { "form": "colossaux", "pos": "JJ", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "coléreuse": { "form": "coléreuse", "pos": "JJ", "polarity": "-0.27", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "coléreux": { "form": "coléreux", "pos": "JJ", "polarity": "-0.27", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "combatif": { "form": "combatif", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "combatifs": { "form": "combatifs", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "combative": { "form": "combative", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "combattant": { "form": "combattant", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "combattante": { "form": "combattante", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "combattantes": { "form": "combattantes", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "combattants": { "form": "combattants", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "comble": { "form": "comble", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "combles": { "form": "combles", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "comblé": { "form": "comblé", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "comblée": { "form": "comblée", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "comblées": { "form": "comblées", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "comblés": { "form": "comblés", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "comique": { "form": "comique", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "comiques": { "form": "comiques", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "commençant": { "form": "commençant", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "commençante": { "form": "commençante", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "commençantes": { "form": "commençantes", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "commençants": { "form": "commençants", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "commercial": { "form": "commercial", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "commerciale": { "form": "commerciale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "commerciales": { "form": "commerciales", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "commerciaux": { "form": "commerciaux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "commode": { "form": "commode", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "commodes": { "form": "commodes", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "commun": { "form": "commun", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "communautaire": { "form": "communautaire", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "communautaires": { "form": "communautaires", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "commune": { "form": "commune", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "communes": { "form": "communes", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "communiste": { "form": "communiste", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "communistes": { "form": "communistes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "communs": { "form": "communs", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "compact": { "form": "compact", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "compacte": { "form": "compacte", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "compactes": { "form": "compactes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "compacts": { "form": "compacts", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "comparable": { "form": "comparable", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "comparables": { "form": "comparables", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "complet": { "form": "complet", "pos": "JJ", "polarity": "0.43", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "complets": { "form": "complets", "pos": "JJ", "polarity": "0.43", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "complexe": { "form": "complexe", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "complexes": { "form": "complexes", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "complexé": { "form": "complexé", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "complexée": { "form": "complexée", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "complexés": { "form": "complexés", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "complice": { "form": "complice", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.7" }, "complices": { "form": "complices", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.7" }, "compliqué": { "form": "compliqué", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "compliquée": { "form": "compliquée", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "compliquées": { "form": "compliquées", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "compliqués": { "form": "compliqués", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "complète": { "form": "complète", "pos": "JJ", "polarity": "0.43", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "complètement": { "form": "complètement", "pos": "RB", "polarity": "0.10", "subjectivity": "0.75", "intensity": "2.0", "confidence": "0.9" }, "complètes": { "form": "complètes", "pos": "JJ", "polarity": "0.43", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "composite": { "form": "composite", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "composites": { "form": "composites", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "compressé": { "form": "compressé", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "compressée": { "form": "compressée", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "compressées": { "form": "compressées", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "compressés": { "form": "compressés", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "comprimé": { "form": "comprimé", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "comprimée": { "form": "comprimée", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "comprimées": { "form": "comprimées", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "comprimés": { "form": "comprimés", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "compréhensible": { "form": "compréhensible", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "compréhensibles": { "form": "compréhensibles", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "con": { "form": "con", "pos": "NN", "polarity": "-0.70", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "concentré": { "form": "concentré", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "concentrée": { "form": "concentrée", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "concentrées": { "form": "concentrées", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "concentrés": { "form": "concentrés", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "concis": { "form": "concis", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "concise": { "form": "concise", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "concluant": { "form": "concluant", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "concluante": { "form": "concluante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "concluantes": { "form": "concluantes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "concluants": { "form": "concluants", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "concret": { "form": "concret", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "concrets": { "form": "concrets", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "concrète": { "form": "concrète", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "concrètes": { "form": "concrètes", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "condescendant": { "form": "condescendant", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "condescendante": { "form": "condescendante", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "condescendants": { "form": "condescendants", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "confessionnel": { "form": "confessionnel", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "confessionnelle": { "form": "confessionnelle", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "confessionnels": { "form": "confessionnels", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "confiant": { "form": "confiant", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "confiante": { "form": "confiante", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "confiantes": { "form": "confiantes", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "confiants": { "form": "confiants", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "confidentiel": { "form": "confidentiel", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.08", "intensity": "1.0", "confidence": "0.7" }, "confidentielle": { "form": "confidentielle", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.08", "intensity": "1.0", "confidence": "0.7" }, "confidentielles": { "form": "confidentielles", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.08", "intensity": "1.0", "confidence": "0.7" }, "confidentiels": { "form": "confidentiels", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.08", "intensity": "1.0", "confidence": "0.7" }, "confiné": { "form": "confiné", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "confinée": { "form": "confinée", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "confinées": { "form": "confinées", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "confinés": { "form": "confinés", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "confondu": { "form": "confondu", "pos": "JJ", "polarity": "0.24", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.7" }, "confondue": { "form": "confondue", "pos": "JJ", "polarity": "0.24", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.7" }, "confondues": { "form": "confondues", "pos": "JJ", "polarity": "0.24", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.7" }, "confondus": { "form": "confondus", "pos": "JJ", "polarity": "0.24", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.7" }, "conforme": { "form": "conforme", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "conformes": { "form": "conformes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "confortable": { "form": "confortable", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "confortables": { "form": "confortables", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "confus": { "form": "confus", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "confuse": { "form": "confuse", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "confuses": { "form": "confuses", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "conjugal": { "form": "conjugal", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "conjugale": { "form": "conjugale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "conjugales": { "form": "conjugales", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "conjugaux": { "form": "conjugaux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "conne": { "form": "conne", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "connerie": { "form": "connerie", "pos": "NN", "polarity": "-0.70", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "connes": { "form": "connes", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "connu": { "form": "connu", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "connue": { "form": "connue", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "connues": { "form": "connues", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "connus": { "form": "connus", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "cons": { "form": "cons", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "consciencieuse": { "form": "consciencieuse", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "consciencieuses": { "form": "consciencieuses", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "consciencieux": { "form": "consciencieux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "conscient": { "form": "conscient", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "consciente": { "form": "consciente", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "conscientes": { "form": "conscientes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "conscients": { "form": "conscients", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "conseillé": { "form": "conseillé", "pos": "VB", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "considérable": { "form": "considérable", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "considérables": { "form": "considérables", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "consigné": { "form": "consigné", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "consignée": { "form": "consignée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "consignées": { "form": "consignées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "consignés": { "form": "consignés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "consistant": { "form": "consistant", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "consistante": { "form": "consistante", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "consistantes": { "form": "consistantes", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "consistants": { "form": "consistants", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "constant": { "form": "constant", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "constante": { "form": "constante", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "constantes": { "form": "constantes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "constants": { "form": "constants", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "consterné": { "form": "consterné", "pos": "JJ", "polarity": "-0.17", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "consternée": { "form": "consternée", "pos": "JJ", "polarity": "-0.17", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "consternées": { "form": "consternées", "pos": "JJ", "polarity": "-0.17", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "consternés": { "form": "consternés", "pos": "JJ", "polarity": "-0.17", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "conséquent": { "form": "conséquent", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "conséquente": { "form": "conséquente", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "conséquentes": { "form": "conséquentes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "conséquents": { "form": "conséquents", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "contemporain": { "form": "contemporain", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "contemporaine": { "form": "contemporaine", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "contemporaines": { "form": "contemporaines", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "contemporains": { "form": "contemporains", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "content": { "form": "content", "pos": "JJ", "polarity": "0.65", "subjectivity": "0.60", "intensity": "1.0", "confidence": "1.0" }, "contente": { "form": "contente", "pos": "JJ", "polarity": "0.65", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "contentes": { "form": "contentes", "pos": "JJ", "polarity": "0.65", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "contents": { "form": "contents", "pos": "JJ", "polarity": "0.65", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "contestable": { "form": "contestable", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "contestables": { "form": "contestables", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "continental": { "form": "continental", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "continentale": { "form": "continentale", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "continentales": { "form": "continentales", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "continentaux": { "form": "continentaux", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "contingent": { "form": "contingent", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "contingente": { "form": "contingente", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "contingentes": { "form": "contingentes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "contingents": { "form": "contingents", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "continu": { "form": "continu", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "continues": { "form": "continues", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "continus": { "form": "continus", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "contracté": { "form": "contracté", "pos": "JJ", "polarity": "-0.22", "subjectivity": "-0.45", "intensity": "1.0", "confidence": "0.7" }, "contractée": { "form": "contractée", "pos": "JJ", "polarity": "-0.22", "subjectivity": "-0.45", "intensity": "1.0", "confidence": "0.7" }, "contractées": { "form": "contractées", "pos": "JJ", "polarity": "-0.22", "subjectivity": "-0.45", "intensity": "1.0", "confidence": "0.7" }, "contractés": { "form": "contractés", "pos": "JJ", "polarity": "-0.22", "subjectivity": "-0.45", "intensity": "1.0", "confidence": "0.7" }, "contradictoire": { "form": "contradictoire", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.9" }, "contradictoires": { "form": "contradictoires", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "contraire": { "form": "contraire", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "contraires": { "form": "contraires", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "contrariant": { "form": "contrariant", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "contrariante": { "form": "contrariante", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "contrariantes": { "form": "contrariantes", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "contrariants": { "form": "contrariants", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "contrit": { "form": "contrit", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "contrite": { "form": "contrite", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "contrites": { "form": "contrites", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "contrits": { "form": "contrits", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "convaincu": { "form": "convaincu", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "convaincue": { "form": "convaincue", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "convaincues": { "form": "convaincues", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "convaincus": { "form": "convaincus", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "convenable": { "form": "convenable", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "convenables": { "form": "convenables", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "cordial": { "form": "cordial", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "cordiale": { "form": "cordiale", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "cordiales": { "form": "cordiales", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "cordiaux": { "form": "cordiaux", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "coriace": { "form": "coriace", "pos": "JJ", "polarity": "-0.11", "subjectivity": "-0.21", "intensity": "1.0", "confidence": "0.7" }, "coriaces": { "form": "coriaces", "pos": "JJ", "polarity": "-0.11", "subjectivity": "-0.21", "intensity": "1.0", "confidence": "0.7" }, "corpulent": { "form": "corpulent", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "corpulente": { "form": "corpulente", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "corpulentes": { "form": "corpulentes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "corpulents": { "form": "corpulents", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "correct": { "form": "correct", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "correcte": { "form": "correcte", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "correctes": { "form": "correctes", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "corrects": { "form": "corrects", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "corrigé": { "form": "corrigé", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.53", "intensity": "1.0", "confidence": "0.7" }, "corrigée": { "form": "corrigée", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.53", "intensity": "1.0", "confidence": "0.7" }, "corrigées": { "form": "corrigées", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.53", "intensity": "1.0", "confidence": "0.7" }, "corrigés": { "form": "corrigés", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.53", "intensity": "1.0", "confidence": "0.7" }, "corrompu": { "form": "corrompu", "pos": "JJ", "polarity": "-0.40", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "corrompus": { "form": "corrompus", "pos": "JJ", "polarity": "-0.40", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "cosmique": { "form": "cosmique", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "cosmiques": { "form": "cosmiques", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "cosmopolite": { "form": "cosmopolite", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.7" }, "cosmopolites": { "form": "cosmopolites", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.7" }, "costaud": { "form": "costaud", "pos": "JJ", "polarity": "0.21", "subjectivity": "0.41", "intensity": "1.0", "confidence": "0.7" }, "costaude": { "form": "costaude", "pos": "JJ", "polarity": "0.21", "subjectivity": "0.41", "intensity": "1.0", "confidence": "0.7" }, "costaudes": { "form": "costaudes", "pos": "JJ", "polarity": "0.21", "subjectivity": "0.41", "intensity": "1.0", "confidence": "0.7" }, "costauds": { "form": "costauds", "pos": "JJ", "polarity": "0.21", "subjectivity": "0.41", "intensity": "1.0", "confidence": "0.7" }, "cotonneuse": { "form": "cotonneuse", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "cotonneuses": { "form": "cotonneuses", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "cotonneux": { "form": "cotonneux", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "couché": { "form": "couché", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "couchée": { "form": "couchée", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "couchées": { "form": "couchées", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "couchés": { "form": "couchés", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "coupable": { "form": "coupable", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.9" }, "coupables": { "form": "coupables", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.8" }, "coupant": { "form": "coupant", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.08", "intensity": "1.0", "confidence": "0.7" }, "coupante": { "form": "coupante", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.08", "intensity": "1.0", "confidence": "0.7" }, "coupantes": { "form": "coupantes", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.08", "intensity": "1.0", "confidence": "0.7" }, "coupants": { "form": "coupants", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.08", "intensity": "1.0", "confidence": "0.7" }, "coupé": { "form": "coupé", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "coupée": { "form": "coupée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "coupées": { "form": "coupées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "coupés": { "form": "coupés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "courageuse": { "form": "courageuse", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "courageuses": { "form": "courageuses", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "courageux": { "form": "courageux", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.9" }, "courant": { "form": "courant", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "courante": { "form": "courante", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "courantes": { "form": "courantes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "courants": { "form": "courants", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "courbe": { "form": "courbe", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "courbes": { "form": "courbes", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "court": { "form": "court", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "courte": { "form": "courte", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "courtes": { "form": "courtes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "courtois": { "form": "courtois", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "courtoise": { "form": "courtoise", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "courtoises": { "form": "courtoises", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "courts": { "form": "courts", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "coutumier": { "form": "coutumier", "pos": "JJ", "polarity": "-0.00", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "coutumiers": { "form": "coutumiers", "pos": "JJ", "polarity": "-0.00", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "coutumière": { "form": "coutumière", "pos": "JJ", "polarity": "-0.00", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "coutumières": { "form": "coutumières", "pos": "JJ", "polarity": "-0.00", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "coûteuse": { "form": "coûteuse", "pos": "JJ", "polarity": "-0.11", "subjectivity": "-0.21", "intensity": "1.0", "confidence": "0.7" }, "coûteuses": { "form": "coûteuses", "pos": "JJ", "polarity": "-0.11", "subjectivity": "-0.21", "intensity": "1.0", "confidence": "0.7" }, "coûteux": { "form": "coûteux", "pos": "JJ", "polarity": "-0.11", "subjectivity": "-0.21", "intensity": "1.0", "confidence": "0.7" }, "craintif": { "form": "craintif", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "craintifs": { "form": "craintifs", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "craintive": { "form": "craintive", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "craintives": { "form": "craintives", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "cramoisi": { "form": "cramoisi", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.01", "intensity": "1.0", "confidence": "0.7" }, "cramoisie": { "form": "cramoisie", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.01", "intensity": "1.0", "confidence": "0.7" }, "cramoisies": { "form": "cramoisies", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.01", "intensity": "1.0", "confidence": "0.7" }, "cramoisis": { "form": "cramoisis", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.01", "intensity": "1.0", "confidence": "0.7" }, "crasseuse": { "form": "crasseuse", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.8" }, "crasseuses": { "form": "crasseuses", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.8" }, "crasseux": { "form": "crasseux", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.9" }, "crayeuse": { "form": "crayeuse", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.05", "intensity": "1.0", "confidence": "0.7" }, "crayeuses": { "form": "crayeuses", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.05", "intensity": "1.0", "confidence": "0.7" }, "crayeux": { "form": "crayeux", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.05", "intensity": "1.0", "confidence": "0.7" }, "creuse": { "form": "creuse", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "creuses": { "form": "creuses", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "creux": { "form": "creux", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "criant": { "form": "criant", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "criante": { "form": "criante", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "criantes": { "form": "criantes", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "criminel": { "form": "criminel", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.9" }, "criminelle": { "form": "criminelle", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "criminelles": { "form": "criminelles", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "criminels": { "form": "criminels", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "cristallin": { "form": "cristallin", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "cristalline": { "form": "cristalline", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "cristallines": { "form": "cristallines", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "cristallins": { "form": "cristallins", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "critique": { "form": "critique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.9" }, "critiques": { "form": "critiques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "croisé": { "form": "croisé", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "croisée": { "form": "croisée", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "croisées": { "form": "croisées", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "croisés": { "form": "croisés", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "croulant": { "form": "croulant", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "croulante": { "form": "croulante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "croulantes": { "form": "croulantes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "croulants": { "form": "croulants", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "croustillant": { "form": "croustillant", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "croustillante": { "form": "croustillante", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "croustillantes": { "form": "croustillantes", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "croustillants": { "form": "croustillants", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "cru": { "form": "cru", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.9" }, "crucial": { "form": "crucial", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "cruciale": { "form": "cruciale", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "cruciales": { "form": "cruciales", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "cruciaux": { "form": "cruciaux", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "crue": { "form": "crue", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "cruel": { "form": "cruel", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "cruelle": { "form": "cruelle", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "cruelles": { "form": "cruelles", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "cruels": { "form": "cruels", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "crues": { "form": "crues", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "crus": { "form": "crus", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "crédule": { "form": "crédule", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "crédules": { "form": "crédules", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "crétin": { "form": "crétin", "pos": "JJ", "polarity": "-0.35", "subjectivity": "-0.70", "intensity": "1.0", "confidence": "0.7" }, "crétine": { "form": "crétine", "pos": "JJ", "polarity": "-0.35", "subjectivity": "-0.70", "intensity": "1.0", "confidence": "0.7" }, "crétins": { "form": "crétins", "pos": "JJ", "polarity": "-0.35", "subjectivity": "-0.70", "intensity": "1.0", "confidence": "0.7" }, "cuisant": { "form": "cuisant", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "cuisante": { "form": "cuisante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "cuisantes": { "form": "cuisantes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "cuisants": { "form": "cuisants", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "cuit": { "form": "cuit", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "cuite": { "form": "cuite", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "cuites": { "form": "cuites", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "cuits": { "form": "cuits", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "culturel": { "form": "culturel", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "culturelle": { "form": "culturelle", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "culturelles": { "form": "culturelles", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "culturels": { "form": "culturels", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "cuprifère": { "form": "cuprifère", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "cuprifères": { "form": "cuprifères", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "cuprique": { "form": "cuprique", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "cupriques": { "form": "cupriques", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "curieuse": { "form": "curieuse", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "curieuses": { "form": "curieuses", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "curieux": { "form": "curieux", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.30", "intensity": "1.0", "confidence": "1.0" }, "cyclopéen": { "form": "cyclopéen", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "cyclopéenne": { "form": "cyclopéenne", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "cyclopéennes": { "form": "cyclopéennes", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "cyclopéens": { "form": "cyclopéens", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "céleste": { "form": "céleste", "pos": "JJ", "polarity": "0.24", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "célestes": { "form": "célestes", "pos": "JJ", "polarity": "0.24", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "célèbre": { "form": "célèbre", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "célèbres": { "form": "célèbres", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "céruléen": { "form": "céruléen", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.04", "intensity": "1.0", "confidence": "0.7" }, "céruléens": { "form": "céruléens", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.04", "intensity": "1.0", "confidence": "0.7" }, "cérébral": { "form": "cérébral", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "cérébrale": { "form": "cérébrale", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "cérébrales": { "form": "cérébrales", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "cérébraux": { "form": "cérébraux", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "d'émotion": { "form": "d'émotion", "pos": "NN", "polarity": "0.40", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "d'émotions": { "form": "d'émotions", "pos": "NN", "polarity": "0.40", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "dangereuse": { "form": "dangereuse", "pos": "JJ", "polarity": "-0.55", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "dangereuses": { "form": "dangereuses", "pos": "JJ", "polarity": "-0.55", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "dangereux": { "form": "dangereux", "pos": "JJ", "polarity": "-0.55", "subjectivity": "0.60", "intensity": "1.0", "confidence": "1.0" }, "dantesque": { "form": "dantesque", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "dantesques": { "form": "dantesques", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "demi": { "form": "demi", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "demie": { "form": "demie", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "demies": { "form": "demies", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "demis": { "form": "demis", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "dense": { "form": "dense", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "denses": { "form": "denses", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "dernier": { "form": "dernier", "pos": "JJ", "polarity": "-0.29", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "derniers": { "form": "derniers", "pos": "JJ", "polarity": "-0.29", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "dernière": { "form": "dernière", "pos": "JJ", "polarity": "-0.29", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "dernières": { "form": "dernières", "pos": "JJ", "polarity": "-0.29", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "deuxième": { "form": "deuxième", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "deuxièmes": { "form": "deuxièmes", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "difficile": { "form": "difficile", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "difficiles": { "form": "difficiles", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "difforme": { "form": "difforme", "pos": "JJ", "polarity": "-0.35", "subjectivity": "-0.70", "intensity": "1.0", "confidence": "0.7" }, "difformes": { "form": "difformes", "pos": "JJ", "polarity": "-0.35", "subjectivity": "-0.70", "intensity": "1.0", "confidence": "0.7" }, "différent": { "form": "différent", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.15", "intensity": "1.0", "confidence": "1.0" }, "différente": { "form": "différente", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "différentes": { "form": "différentes", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "différents": { "form": "différents", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "digne": { "form": "digne", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "dignes": { "form": "dignes", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "dingue": { "form": "dingue", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "dingues": { "form": "dingues", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "diplomate": { "form": "diplomate", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "diplomates": { "form": "diplomates", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "diplomatique": { "form": "diplomatique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "diplomatiques": { "form": "diplomatiques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.8" }, "direct": { "form": "direct", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "directe": { "form": "directe", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "directes": { "form": "directes", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "directs": { "form": "directs", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "dirigeant": { "form": "dirigeant", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "dirigeante": { "form": "dirigeante", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "dirigeantes": { "form": "dirigeantes", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "dirigeants": { "form": "dirigeants", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "discordant": { "form": "discordant", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "discordante": { "form": "discordante", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "discordantes": { "form": "discordantes", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "discordants": { "form": "discordants", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "discret": { "form": "discret", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "discrets": { "form": "discrets", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "discrète": { "form": "discrète", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "discrètes": { "form": "discrètes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "discutable": { "form": "discutable", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "discutables": { "form": "discutables", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "disgracieuse": { "form": "disgracieuse", "pos": "JJ", "polarity": "-0.35", "subjectivity": "-0.70", "intensity": "1.0", "confidence": "0.7" }, "disgracieuses": { "form": "disgracieuses", "pos": "JJ", "polarity": "-0.35", "subjectivity": "-0.70", "intensity": "1.0", "confidence": "0.7" }, "disgracieux": { "form": "disgracieux", "pos": "JJ", "polarity": "-0.35", "subjectivity": "-0.70", "intensity": "1.0", "confidence": "0.7" }, "disparate": { "form": "disparate", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "disparates": { "form": "disparates", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "disparu": { "form": "disparu", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "disparue": { "form": "disparue", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "disparues": { "form": "disparues", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "disparus": { "form": "disparus", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "dispendieuse": { "form": "dispendieuse", "pos": "JJ", "polarity": "-0.11", "subjectivity": "-0.21", "intensity": "1.0", "confidence": "0.7" }, "dispendieux": { "form": "dispendieux", "pos": "JJ", "polarity": "-0.11", "subjectivity": "-0.21", "intensity": "1.0", "confidence": "0.7" }, "disponible": { "form": "disponible", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "disponibles": { "form": "disponibles", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "dissemblable": { "form": "dissemblable", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "dissemblables": { "form": "dissemblables", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "dissimulé": { "form": "dissimulé", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "dissimulée": { "form": "dissimulée", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "dissimulées": { "form": "dissimulées", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "dissimulés": { "form": "dissimulés", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "distant": { "form": "distant", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "distante": { "form": "distante", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "distantes": { "form": "distantes", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "distants": { "form": "distants", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "distinct": { "form": "distinct", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "distincte": { "form": "distincte", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "distinctes": { "form": "distinctes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "distinctif": { "form": "distinctif", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "distinctifs": { "form": "distinctifs", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "distinctive": { "form": "distinctive", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "distinctives": { "form": "distinctives", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "distincts": { "form": "distincts", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "distingué": { "form": "distingué", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "distinguée": { "form": "distinguée", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "distinguées": { "form": "distinguées", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "distingués": { "form": "distingués", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "distrait": { "form": "distrait", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "distraite": { "form": "distraite", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "distraites": { "form": "distraites", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "distraits": { "form": "distraits", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "diurne": { "form": "diurne", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "diurnes": { "form": "diurnes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "divers": { "form": "divers", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "diverse": { "form": "diverse", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "diverses": { "form": "diverses", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "divin": { "form": "divin", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.9" }, "divine": { "form": "divine", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "divines": { "form": "divines", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "divins": { "form": "divins", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "docile": { "form": "docile", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "dociles": { "form": "dociles", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "domestique": { "form": "domestique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "domestiques": { "form": "domestiques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "dominant": { "form": "dominant", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "dominante": { "form": "dominante", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "dominantes": { "form": "dominantes", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "dominants": { "form": "dominants", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "dommage": { "form": "dommage", "pos": "NN", "polarity": "-0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "donné": { "form": "donné", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "donnée": { "form": "donnée", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "données": { "form": "données", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "donnés": { "form": "donnés", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "dormant": { "form": "dormant", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "dormante": { "form": "dormante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "dormantes": { "form": "dormantes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "dormants": { "form": "dormants", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "dormeur": { "form": "dormeur", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "dormeurs": { "form": "dormeurs", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "dormeuse": { "form": "dormeuse", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "doré": { "form": "doré", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.15", "intensity": "1.0", "confidence": "1.0" }, "dorée": { "form": "dorée", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "dorées": { "form": "dorées", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "dorés": { "form": "dorés", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "double": { "form": "double", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "doubles": { "form": "doubles", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "douce": { "form": "douce", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.9" }, "doucereuse": { "form": "doucereuse", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "doucereuses": { "form": "doucereuses", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "doucereux": { "form": "doucereux", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "douces": { "form": "douces", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.9" }, "douloureuse": { "form": "douloureuse", "pos": "JJ", "polarity": "-0.55", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "douloureuses": { "form": "douloureuses", "pos": "JJ", "polarity": "-0.55", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "douloureux": { "form": "douloureux", "pos": "JJ", "polarity": "-0.55", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "douteuse": { "form": "douteuse", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "douteuses": { "form": "douteuses", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "douteux": { "form": "douteux", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "doux": { "form": "doux", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.35", "intensity": "1.0", "confidence": "1.0" }, "draconien": { "form": "draconien", "pos": "JJ", "polarity": "0.16", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "draconienne": { "form": "draconienne", "pos": "JJ", "polarity": "0.16", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "draconiennes": { "form": "draconiennes", "pos": "JJ", "polarity": "0.16", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "draconiens": { "form": "draconiens", "pos": "JJ", "polarity": "0.16", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "dramatique": { "form": "dramatique", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "dramatiques": { "form": "dramatiques", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "dressé": { "form": "dressé", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "dressée": { "form": "dressée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "dressées": { "form": "dressées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "dressés": { "form": "dressés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "droit": { "form": "droit", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "droite": { "form": "droite", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "droites": { "form": "droites", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "droits": { "form": "droits", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "dru": { "form": "dru", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "drue": { "form": "drue", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "drues": { "form": "drues", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "drus": { "form": "drus", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "drôle": { "form": "drôle", "pos": "JJ", "polarity": "0.53", "subjectivity": "0.60", "intensity": "1.0", "confidence": "1.0" }, "drôles": { "form": "drôles", "pos": "JJ", "polarity": "0.53", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "dur": { "form": "dur", "pos": "JJ", "polarity": "-0.21", "subjectivity": "0.25", "intensity": "1.0", "confidence": "1.0" }, "dure": { "form": "dure", "pos": "JJ", "polarity": "-0.21", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "dures": { "form": "dures", "pos": "JJ", "polarity": "-0.21", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "durs": { "form": "durs", "pos": "JJ", "polarity": "-0.21", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "duveteuse": { "form": "duveteuse", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "duveteuses": { "form": "duveteuses", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "duveteux": { "form": "duveteux", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "dynamique": { "form": "dynamique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "dynamiques": { "form": "dynamiques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "débile": { "form": "débile", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "débiles": { "form": "débiles", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "débonnaire": { "form": "débonnaire", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "débonnaires": { "form": "débonnaires", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "débutant": { "form": "débutant", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "débutante": { "form": "débutante", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "débutantes": { "form": "débutantes", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "débutants": { "form": "débutants", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "décent": { "form": "décent", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "décente": { "form": "décente", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "décentes": { "form": "décentes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "décents": { "form": "décents", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "déception": { "form": "déception", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "décharné": { "form": "décharné", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "décharnée": { "form": "décharnée", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "décharnées": { "form": "décharnées", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "décharnés": { "form": "décharnés", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "déchirant": { "form": "déchirant", "pos": "JJ", "polarity": "-0.80", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "déchirante": { "form": "déchirante", "pos": "JJ", "polarity": "-0.80", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "déchirantes": { "form": "déchirantes", "pos": "JJ", "polarity": "-0.80", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "déchirants": { "form": "déchirants", "pos": "JJ", "polarity": "-0.80", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "déchiré": { "form": "déchiré", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "déchirée": { "form": "déchirée", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "déchirées": { "form": "déchirées", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "déchirés": { "form": "déchirés", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "décidé": { "form": "décidé", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "décidée": { "form": "décidée", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "décidées": { "form": "décidées", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "décidés": { "form": "décidés", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "décisif": { "form": "décisif", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "décisifs": { "form": "décisifs", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "décisive": { "form": "décisive", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "décisives": { "form": "décisives", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "déconcertant": { "form": "déconcertant", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "déconcertante": { "form": "déconcertante", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "déconcertantes": { "form": "déconcertantes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "déconcertants": { "form": "déconcertants", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "déconcerté": { "form": "déconcerté", "pos": "JJ", "polarity": "0.28", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.7" }, "déconcertée": { "form": "déconcertée", "pos": "JJ", "polarity": "0.28", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.7" }, "déconcertés": { "form": "déconcertés", "pos": "JJ", "polarity": "0.28", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.7" }, "déconfit": { "form": "déconfit", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "déconfite": { "form": "déconfite", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "déconfits": { "form": "déconfits", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "découplé": { "form": "découplé", "pos": "JJ", "polarity": "0.21", "subjectivity": "0.41", "intensity": "1.0", "confidence": "0.7" }, "découplée": { "form": "découplée", "pos": "JJ", "polarity": "0.21", "subjectivity": "0.41", "intensity": "1.0", "confidence": "0.7" }, "découvert": { "form": "découvert", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "découverte": { "form": "découverte", "pos": "VB", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "découvertes": { "form": "découvertes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "découverts": { "form": "découverts", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "découvrir": { "form": "découvrir", "pos": "VB", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "défait": { "form": "défait", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "défaite": { "form": "défaite", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "défaites": { "form": "défaites", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "défaits": { "form": "défaits", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "défavorable": { "form": "défavorable", "pos": "JJ", "polarity": "-0.35", "subjectivity": "-0.70", "intensity": "1.0", "confidence": "0.7" }, "défavorables": { "form": "défavorables", "pos": "JJ", "polarity": "-0.35", "subjectivity": "-0.70", "intensity": "1.0", "confidence": "0.7" }, "défendu": { "form": "défendu", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "défendue": { "form": "défendue", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "défendues": { "form": "défendues", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "défendus": { "form": "défendus", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "déficient": { "form": "déficient", "pos": "JJ", "polarity": "-0.19", "subjectivity": "-0.38", "intensity": "1.0", "confidence": "0.7" }, "déficiente": { "form": "déficiente", "pos": "JJ", "polarity": "-0.19", "subjectivity": "-0.38", "intensity": "1.0", "confidence": "0.7" }, "déficientes": { "form": "déficientes", "pos": "JJ", "polarity": "-0.19", "subjectivity": "-0.38", "intensity": "1.0", "confidence": "0.7" }, "déficients": { "form": "déficients", "pos": "JJ", "polarity": "-0.19", "subjectivity": "-0.38", "intensity": "1.0", "confidence": "0.7" }, "définitif": { "form": "définitif", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "définitifs": { "form": "définitifs", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "définitive": { "form": "définitive", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "définitives": { "form": "définitives", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "déformé": { "form": "déformé", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "déformée": { "form": "déformée", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "déformées": { "form": "déformées", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "déformés": { "form": "déformés", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "dégoûtant": { "form": "dégoûtant", "pos": "JJ", "polarity": "-0.43", "subjectivity": "-1.00", "intensity": "1.0", "confidence": "0.7" }, "dégoûtante": { "form": "dégoûtante", "pos": "JJ", "polarity": "-0.43", "subjectivity": "-1.00", "intensity": "1.0", "confidence": "0.7" }, "dégoûtantes": { "form": "dégoûtantes", "pos": "JJ", "polarity": "-0.43", "subjectivity": "-1.00", "intensity": "1.0", "confidence": "0.7" }, "dégoûtants": { "form": "dégoûtants", "pos": "JJ", "polarity": "-0.43", "subjectivity": "-1.00", "intensity": "1.0", "confidence": "0.7" }, "dégueulasse": { "form": "dégueulasse", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "dégueulasses": { "form": "dégueulasses", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "délaissé": { "form": "délaissé", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "délaissée": { "form": "délaissée", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "délaissées": { "form": "délaissées", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "délaissés": { "form": "délaissés", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "délectable": { "form": "délectable", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "délectables": { "form": "délectables", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "délicat": { "form": "délicat", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "délicate": { "form": "délicate", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "délicates": { "form": "délicates", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "délicats": { "form": "délicats", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "délicieuse": { "form": "délicieuse", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "délicieuses": { "form": "délicieuses", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "délicieux": { "form": "délicieux", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "délictueuse": { "form": "délictueuse", "pos": "JJ", "polarity": "-0.06", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "délictueuses": { "form": "délictueuses", "pos": "JJ", "polarity": "-0.06", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "délictueux": { "form": "délictueux", "pos": "JJ", "polarity": "-0.06", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "dément": { "form": "dément", "pos": "JJ", "polarity": "-0.01", "subjectivity": "-0.01", "intensity": "1.0", "confidence": "0.7" }, "démente": { "form": "démente", "pos": "JJ", "polarity": "-0.01", "subjectivity": "-0.01", "intensity": "1.0", "confidence": "0.7" }, "démentes": { "form": "démentes", "pos": "JJ", "polarity": "-0.01", "subjectivity": "-0.01", "intensity": "1.0", "confidence": "0.7" }, "déments": { "form": "déments", "pos": "JJ", "polarity": "-0.01", "subjectivity": "-0.01", "intensity": "1.0", "confidence": "0.7" }, "démerdard": { "form": "démerdard", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "démesuré": { "form": "démesuré", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "démesurée": { "form": "démesurée", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "démesurées": { "form": "démesurées", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "démesurés": { "form": "démesurés", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "démodé": { "form": "démodé", "pos": "JJ", "polarity": "-0.08", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "démodée": { "form": "démodée", "pos": "JJ", "polarity": "-0.08", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "démodées": { "form": "démodées", "pos": "JJ", "polarity": "-0.08", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "démodés": { "form": "démodés", "pos": "JJ", "polarity": "-0.08", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "dénudé": { "form": "dénudé", "pos": "JJ", "polarity": "-0.02", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "dénudée": { "form": "dénudée", "pos": "JJ", "polarity": "-0.02", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "dénudées": { "form": "dénudées", "pos": "JJ", "polarity": "-0.02", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "dénudés": { "form": "dénudés", "pos": "JJ", "polarity": "-0.02", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "dépeuplé": { "form": "dépeuplé", "pos": "JJ", "polarity": "-0.13", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "dépeuplée": { "form": "dépeuplée", "pos": "JJ", "polarity": "-0.13", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "dépeuplées": { "form": "dépeuplées", "pos": "JJ", "polarity": "-0.13", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "dépeuplés": { "form": "dépeuplés", "pos": "JJ", "polarity": "-0.13", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "déplaisant": { "form": "déplaisant", "pos": "JJ", "polarity": "0.02", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "déplaisante": { "form": "déplaisante", "pos": "JJ", "polarity": "0.02", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "déplaisantes": { "form": "déplaisantes", "pos": "JJ", "polarity": "0.02", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "déplaisants": { "form": "déplaisants", "pos": "JJ", "polarity": "0.02", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "déplorable": { "form": "déplorable", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "déplorables": { "form": "déplorables", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "déraisonnable": { "form": "déraisonnable", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "déraisonnables": { "form": "déraisonnables", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "dérisoire": { "form": "dérisoire", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "dérisoires": { "form": "dérisoires", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "déroutant": { "form": "déroutant", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "déroutante": { "form": "déroutante", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "déroutantes": { "form": "déroutantes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "déroutants": { "form": "déroutants", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "déréglé": { "form": "déréglé", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "déréglée": { "form": "déréglée", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "déréglées": { "form": "déréglées", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "déréglés": { "form": "déréglés", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "désagréable": { "form": "désagréable", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "désagréables": { "form": "désagréables", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "désarmé": { "form": "désarmé", "pos": "JJ", "polarity": "-0.33", "subjectivity": "-0.67", "intensity": "1.0", "confidence": "0.7" }, "désarmée": { "form": "désarmée", "pos": "JJ", "polarity": "-0.33", "subjectivity": "-0.67", "intensity": "1.0", "confidence": "0.7" }, "désarmées": { "form": "désarmées", "pos": "JJ", "polarity": "-0.33", "subjectivity": "-0.67", "intensity": "1.0", "confidence": "0.7" }, "désarmés": { "form": "désarmés", "pos": "JJ", "polarity": "-0.33", "subjectivity": "-0.67", "intensity": "1.0", "confidence": "0.7" }, "désastre": { "form": "désastre", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "désaxé": { "form": "désaxé", "pos": "JJ", "polarity": "-0.01", "subjectivity": "-0.01", "intensity": "1.0", "confidence": "0.7" }, "désaxée": { "form": "désaxée", "pos": "JJ", "polarity": "-0.01", "subjectivity": "-0.01", "intensity": "1.0", "confidence": "0.7" }, "désaxés": { "form": "désaxés", "pos": "JJ", "polarity": "-0.01", "subjectivity": "-0.01", "intensity": "1.0", "confidence": "0.7" }, "désert": { "form": "désert", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "déserte": { "form": "déserte", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "désertes": { "form": "désertes", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "déserts": { "form": "déserts", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "déserté": { "form": "déserté", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "désertée": { "form": "désertée", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "désertées": { "form": "désertées", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "désertés": { "form": "désertés", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "désespéré": { "form": "désespéré", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "désespérée": { "form": "désespérée", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "désespérées": { "form": "désespérées", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "désespérés": { "form": "désespérés", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "déshabillé": { "form": "déshabillé", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.16", "intensity": "1.0", "confidence": "0.7" }, "déshabillée": { "form": "déshabillée", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.16", "intensity": "1.0", "confidence": "0.7" }, "déshabillées": { "form": "déshabillées", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.16", "intensity": "1.0", "confidence": "0.7" }, "déshabillés": { "form": "déshabillés", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.16", "intensity": "1.0", "confidence": "0.7" }, "déshydraté": { "form": "déshydraté", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "déshydratée": { "form": "déshydratée", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "déshydratées": { "form": "déshydratées", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "déshydratés": { "form": "déshydratés", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "déshérité": { "form": "déshérité", "pos": "JJ", "polarity": "-0.50", "subjectivity": "-1.00", "intensity": "1.0", "confidence": "0.7" }, "déshéritée": { "form": "déshéritée", "pos": "JJ", "polarity": "-0.50", "subjectivity": "-1.00", "intensity": "1.0", "confidence": "0.7" }, "déshéritées": { "form": "déshéritées", "pos": "JJ", "polarity": "-0.50", "subjectivity": "-1.00", "intensity": "1.0", "confidence": "0.7" }, "déshérités": { "form": "déshérités", "pos": "JJ", "polarity": "-0.50", "subjectivity": "-1.00", "intensity": "1.0", "confidence": "0.7" }, "désolé": { "form": "désolé", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "désolée": { "form": "désolée", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "désolées": { "form": "désolées", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "désolés": { "form": "désolés", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "détaché": { "form": "détaché", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "détachée": { "form": "détachée", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "détachées": { "form": "détachées", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "détachés": { "form": "détachés", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "détaillé": { "form": "détaillé", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "détaillée": { "form": "détaillée", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "détaillées": { "form": "détaillées", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "détaillés": { "form": "détaillés", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "détenu": { "form": "détenu", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "détenue": { "form": "détenue", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "détenues": { "form": "détenues", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "détenus": { "form": "détenus", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "détestable": { "form": "détestable", "pos": "JJ", "polarity": "-0.00", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.7" }, "détestables": { "form": "détestables", "pos": "JJ", "polarity": "-0.00", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.7" }, "dévorer": { "form": "dévorer", "pos": "VB", "polarity": "0.50", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "dévoré": { "form": "dévoré", "pos": "VB", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "déçu": { "form": "déçu", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "déçue": { "form": "déçue", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "déçues": { "form": "déçues", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "déçus": { "form": "déçus", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "ecclésiastique": { "form": "ecclésiastique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "ecclésiastiques": { "form": "ecclésiastiques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "effectif": { "form": "effectif", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "effectifs": { "form": "effectifs", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "effective": { "form": "effective", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "effectives": { "form": "effectives", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "efficace": { "form": "efficace", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "efficaces": { "form": "efficaces", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "efficient": { "form": "efficient", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "efficiente": { "form": "efficiente", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "efficientes": { "form": "efficientes", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "efficients": { "form": "efficients", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "effilé": { "form": "effilé", "pos": "JJ", "polarity": "0.06", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "effilée": { "form": "effilée", "pos": "JJ", "polarity": "0.06", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "effilées": { "form": "effilées", "pos": "JJ", "polarity": "0.06", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "effilés": { "form": "effilés", "pos": "JJ", "polarity": "0.06", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "efflanqué": { "form": "efflanqué", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "efflanquée": { "form": "efflanquée", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "efflanquées": { "form": "efflanquées", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "efflanqués": { "form": "efflanqués", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "effrayant": { "form": "effrayant", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "effrayante": { "form": "effrayante", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "effrayantes": { "form": "effrayantes", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "effrayants": { "form": "effrayants", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "effrayé": { "form": "effrayé", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "effrayée": { "form": "effrayée", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "effrayées": { "form": "effrayées", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "effrayés": { "form": "effrayés", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "effroyable": { "form": "effroyable", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "effroyables": { "form": "effroyables", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "efféminé": { "form": "efféminé", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "efféminée": { "form": "efféminée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "efféminés": { "form": "efféminés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "elliptique": { "form": "elliptique", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "elliptiques": { "form": "elliptiques", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "embarrassant": { "form": "embarrassant", "pos": "JJ", "polarity": "-0.23", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "embarrassante": { "form": "embarrassante", "pos": "JJ", "polarity": "-0.23", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "embarrassantes": { "form": "embarrassantes", "pos": "JJ", "polarity": "-0.23", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "embarrassants": { "form": "embarrassants", "pos": "JJ", "polarity": "-0.23", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "embarrassé": { "form": "embarrassé", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "embarrassée": { "form": "embarrassée", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "embarrassées": { "form": "embarrassées", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "embarrassés": { "form": "embarrassés", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "emberlificoté": { "form": "emberlificoté", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "emberlificotés": { "form": "emberlificotés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "embrasé": { "form": "embrasé", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "embrasée": { "form": "embrasée", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "embrasées": { "form": "embrasées", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "embrasés": { "form": "embrasés", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "embrouillé": { "form": "embrouillé", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "embrouillée": { "form": "embrouillée", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "embrouillées": { "form": "embrouillées", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "embrouillés": { "form": "embrouillés", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "embrumé": { "form": "embrumé", "pos": "JJ", "polarity": "-0.02", "subjectivity": "-0.03", "intensity": "1.0", "confidence": "0.7" }, "embrumée": { "form": "embrumée", "pos": "JJ", "polarity": "-0.02", "subjectivity": "-0.03", "intensity": "1.0", "confidence": "0.7" }, "embrumées": { "form": "embrumées", "pos": "JJ", "polarity": "-0.02", "subjectivity": "-0.03", "intensity": "1.0", "confidence": "0.7" }, "embrumés": { "form": "embrumés", "pos": "JJ", "polarity": "-0.02", "subjectivity": "-0.03", "intensity": "1.0", "confidence": "0.7" }, "emmerdant": { "form": "emmerdant", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "emmerdante": { "form": "emmerdante", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "emmerdantes": { "form": "emmerdantes", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "emmerdants": { "form": "emmerdants", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "emprisonné": { "form": "emprisonné", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "emprisonnée": { "form": "emprisonnée", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "emprisonnées": { "form": "emprisonnées", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "emprisonnés": { "form": "emprisonnés", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "empâté": { "form": "empâté", "pos": "JJ", "polarity": "-0.09", "subjectivity": "-0.35", "intensity": "1.0", "confidence": "0.7" }, "empâtée": { "form": "empâtée", "pos": "JJ", "polarity": "-0.09", "subjectivity": "-0.35", "intensity": "1.0", "confidence": "0.7" }, "empâtées": { "form": "empâtées", "pos": "JJ", "polarity": "-0.09", "subjectivity": "-0.35", "intensity": "1.0", "confidence": "0.7" }, "empâtés": { "form": "empâtés", "pos": "JJ", "polarity": "-0.09", "subjectivity": "-0.35", "intensity": "1.0", "confidence": "0.7" }, "encaissé": { "form": "encaissé", "pos": "JJ", "polarity": "0.13", "subjectivity": "0.26", "intensity": "1.0", "confidence": "0.7" }, "encaissée": { "form": "encaissée", "pos": "JJ", "polarity": "0.13", "subjectivity": "0.26", "intensity": "1.0", "confidence": "0.7" }, "encaissées": { "form": "encaissées", "pos": "JJ", "polarity": "0.13", "subjectivity": "0.26", "intensity": "1.0", "confidence": "0.7" }, "encaissés": { "form": "encaissés", "pos": "JJ", "polarity": "0.13", "subjectivity": "0.26", "intensity": "1.0", "confidence": "0.7" }, "encastré": { "form": "encastré", "pos": "JJ", "polarity": "0.13", "subjectivity": "0.26", "intensity": "1.0", "confidence": "0.7" }, "encastrée": { "form": "encastrée", "pos": "JJ", "polarity": "0.13", "subjectivity": "0.26", "intensity": "1.0", "confidence": "0.7" }, "encastrées": { "form": "encastrées", "pos": "JJ", "polarity": "0.13", "subjectivity": "0.26", "intensity": "1.0", "confidence": "0.7" }, "encastrés": { "form": "encastrés", "pos": "JJ", "polarity": "0.13", "subjectivity": "0.26", "intensity": "1.0", "confidence": "0.7" }, "enceinte": { "form": "enceinte", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "enceintes": { "form": "enceintes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "enchanté": { "form": "enchanté", "pos": "JJ", "polarity": "0.32", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.7" }, "enchantée": { "form": "enchantée", "pos": "JJ", "polarity": "0.32", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.7" }, "enchantées": { "form": "enchantées", "pos": "JJ", "polarity": "0.32", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.7" }, "enchantés": { "form": "enchantés", "pos": "JJ", "polarity": "0.32", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.7" }, "encroûté": { "form": "encroûté", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "encroûtés": { "form": "encroûtés", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "endeuillé": { "form": "endeuillé", "pos": "JJ", "polarity": "-0.32", "subjectivity": "-0.65", "intensity": "1.0", "confidence": "0.7" }, "endeuillée": { "form": "endeuillée", "pos": "JJ", "polarity": "-0.32", "subjectivity": "-0.65", "intensity": "1.0", "confidence": "0.7" }, "endeuillées": { "form": "endeuillées", "pos": "JJ", "polarity": "-0.32", "subjectivity": "-0.65", "intensity": "1.0", "confidence": "0.7" }, "endeuillés": { "form": "endeuillés", "pos": "JJ", "polarity": "-0.32", "subjectivity": "-0.65", "intensity": "1.0", "confidence": "0.7" }, "endommagé": { "form": "endommagé", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "endommagée": { "form": "endommagée", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "endommagées": { "form": "endommagées", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "endommagés": { "form": "endommagés", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.7" }, "endormi": { "form": "endormi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "endormie": { "form": "endormie", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "endormies": { "form": "endormies", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "endormis": { "form": "endormis", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "enfantin": { "form": "enfantin", "pos": "JJ", "polarity": "-0.15", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "enfantine": { "form": "enfantine", "pos": "JJ", "polarity": "-0.15", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "enfantines": { "form": "enfantines", "pos": "JJ", "polarity": "-0.15", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "enfantins": { "form": "enfantins", "pos": "JJ", "polarity": "-0.15", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "enflammé": { "form": "enflammé", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "enflammée": { "form": "enflammée", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "enflammées": { "form": "enflammées", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "enflammés": { "form": "enflammés", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "engourdi": { "form": "engourdi", "pos": "JJ", "polarity": "-0.11", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "engourdie": { "form": "engourdie", "pos": "JJ", "polarity": "-0.11", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "engourdies": { "form": "engourdies", "pos": "JJ", "polarity": "-0.11", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "engourdis": { "form": "engourdis", "pos": "JJ", "polarity": "-0.11", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "enjoué": { "form": "enjoué", "pos": "JJ", "polarity": "0.26", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "enjouée": { "form": "enjouée", "pos": "JJ", "polarity": "0.26", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "enjouées": { "form": "enjouées", "pos": "JJ", "polarity": "0.26", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "enjoués": { "form": "enjoués", "pos": "JJ", "polarity": "0.26", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "ennemi": { "form": "ennemi", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "ennemie": { "form": "ennemie", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "ennemies": { "form": "ennemies", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "ennemis": { "form": "ennemis", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "ennui": { "form": "ennui", "pos": "VB", "polarity": "-0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "ennuie": { "form": "ennuie", "pos": "VB", "polarity": "-0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "ennuyer": { "form": "ennuyer", "pos": "VB", "polarity": "-0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "ennuyeuse": { "form": "ennuyeuse", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.85", "intensity": "1.0", "confidence": "0.8" }, "ennuyeuses": { "form": "ennuyeuses", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.85", "intensity": "1.0", "confidence": "0.8" }, "ennuyeux": { "form": "ennuyeux", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.85", "intensity": "1.0", "confidence": "0.9" }, "ennuyé": { "form": "ennuyé", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "ennuyée": { "form": "ennuyée", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "ennuyées": { "form": "ennuyées", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "ennuyés": { "form": "ennuyés", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "ensanglanté": { "form": "ensanglanté", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "ensanglantée": { "form": "ensanglantée", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "ensanglantées": { "form": "ensanglantées", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "ensanglantés": { "form": "ensanglantés", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "ensorcelant": { "form": "ensorcelant", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "ensorcelante": { "form": "ensorcelante", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "ensorcelantes": { "form": "ensorcelantes", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "entaillé": { "form": "entaillé", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "entaillée": { "form": "entaillée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "entaillées": { "form": "entaillées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "entaillés": { "form": "entaillés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "entendu": { "form": "entendu", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "entendue": { "form": "entendue", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "entendues": { "form": "entendues", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "entendus": { "form": "entendus", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "enthousiaste": { "form": "enthousiaste", "pos": "JJ", "polarity": "0.80", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "enthousiastes": { "form": "enthousiastes", "pos": "JJ", "polarity": "0.80", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "entiché": { "form": "entiché", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.7" }, "entichée": { "form": "entichée", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.7" }, "entier": { "form": "entier", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "entiers": { "form": "entiers", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "entière": { "form": "entière", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "entières": { "form": "entières", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "entortillé": { "form": "entortillé", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "entortillée": { "form": "entortillée", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "entortillés": { "form": "entortillés", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "entrouvert": { "form": "entrouvert", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "entrouverte": { "form": "entrouverte", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "entrouvertes": { "form": "entrouvertes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "entrouverts": { "form": "entrouverts", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "envahissant": { "form": "envahissant", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "envahissante": { "form": "envahissante", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "envahissantes": { "form": "envahissantes", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "envahissants": { "form": "envahissants", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "enveloppé": { "form": "enveloppé", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "enveloppée": { "form": "enveloppée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "enveloppées": { "form": "enveloppées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "enveloppés": { "form": "enveloppés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "envieuse": { "form": "envieuse", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "envieuses": { "form": "envieuses", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "envieux": { "form": "envieux", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "envoûtant": { "form": "envoûtant", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "envoûtante": { "form": "envoûtante", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "envoûtantes": { "form": "envoûtantes", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "envoûtants": { "form": "envoûtants", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "errant": { "form": "errant", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "errante": { "form": "errante", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "errantes": { "form": "errantes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "errants": { "form": "errants", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "espagnol": { "form": "espagnol", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "espagnole": { "form": "espagnole", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "espagnoles": { "form": "espagnoles", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "espagnols": { "form": "espagnols", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "espiègle": { "form": "espiègle", "pos": "JJ", "polarity": "0.15", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "espiègles": { "form": "espiègles", "pos": "JJ", "polarity": "0.15", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "essai": { "form": "essai", "pos": "VB", "polarity": "-0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "essentiel": { "form": "essentiel", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "essentielle": { "form": "essentielle", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "essentielles": { "form": "essentielles", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "essentiels": { "form": "essentiels", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "esseulé": { "form": "esseulé", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "esseulée": { "form": "esseulée", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "esseulées": { "form": "esseulées", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "esseulés": { "form": "esseulés", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "estimable": { "form": "estimable", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "estimables": { "form": "estimables", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "européen": { "form": "européen", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "européenne": { "form": "européenne", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "européennes": { "form": "européennes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "européens": { "form": "européens", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "exact": { "form": "exact", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "exacte": { "form": "exacte", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "exactes": { "form": "exactes", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "exacts": { "form": "exacts", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "excellent": { "form": "excellent", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "excellente": { "form": "excellente", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "excellentes": { "form": "excellentes", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "excellents": { "form": "excellents", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "exceptionnel": { "form": "exceptionnel", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "exceptionnelle": { "form": "exceptionnelle", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "exceptionnelles": { "form": "exceptionnelles", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "exceptionnels": { "form": "exceptionnels", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "excessif": { "form": "excessif", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "excessifs": { "form": "excessifs", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "excessive": { "form": "excessive", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "excessives": { "form": "excessives", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "excitant": { "form": "excitant", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "excitante": { "form": "excitante", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "excitantes": { "form": "excitantes", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "excitants": { "form": "excitants", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "excité": { "form": "excité", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "excitée": { "form": "excitée", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "excitées": { "form": "excitées", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "excités": { "form": "excités", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "exclusif": { "form": "exclusif", "pos": "JJ", "polarity": "-0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "exclusifs": { "form": "exclusifs", "pos": "JJ", "polarity": "-0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "exclusive": { "form": "exclusive", "pos": "JJ", "polarity": "-0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "exclusives": { "form": "exclusives", "pos": "JJ", "polarity": "-0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "exemplaire": { "form": "exemplaire", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "exemplaires": { "form": "exemplaires", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "exigeant": { "form": "exigeant", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "exigeante": { "form": "exigeante", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "exigeantes": { "form": "exigeantes", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "exigeants": { "form": "exigeants", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "existant": { "form": "existant", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "existante": { "form": "existante", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "existantes": { "form": "existantes", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "existants": { "form": "existants", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "exorbitant": { "form": "exorbitant", "pos": "JJ", "polarity": "0.11", "subjectivity": "0.22", "intensity": "1.0", "confidence": "0.7" }, "exorbitante": { "form": "exorbitante", "pos": "JJ", "polarity": "0.11", "subjectivity": "0.22", "intensity": "1.0", "confidence": "0.7" }, "exorbitantes": { "form": "exorbitantes", "pos": "JJ", "polarity": "0.11", "subjectivity": "0.22", "intensity": "1.0", "confidence": "0.7" }, "exorbitants": { "form": "exorbitants", "pos": "JJ", "polarity": "0.11", "subjectivity": "0.22", "intensity": "1.0", "confidence": "0.7" }, "exotique": { "form": "exotique", "pos": "JJ", "polarity": "0.10", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "exotiques": { "form": "exotiques", "pos": "JJ", "polarity": "0.10", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "explicite": { "form": "explicite", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "explicites": { "form": "explicites", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "expresse": { "form": "expresse", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "expresses": { "form": "expresses", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "exprès": { "form": "exprès", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "exquis": { "form": "exquis", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.9" }, "exquise": { "form": "exquise", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "exquises": { "form": "exquises", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "externe": { "form": "externe", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "externes": { "form": "externes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "extraordinaire": { "form": "extraordinaire", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.80", "intensity": "1.0", "confidence": "1.0" }, "extraordinaires": { "form": "extraordinaires", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "extravagant": { "form": "extravagant", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "extravagante": { "form": "extravagante", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "extravagantes": { "form": "extravagantes", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "extravagants": { "form": "extravagants", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "extrême": { "form": "extrême", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "1.0" }, "extrêmes": { "form": "extrêmes", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "extérieur": { "form": "extérieur", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "extérieure": { "form": "extérieure", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "extérieures": { "form": "extérieures", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "extérieurs": { "form": "extérieurs", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "exécrable": { "form": "exécrable", "pos": "JJ", "polarity": "-0.36", "subjectivity": "-0.71", "intensity": "1.0", "confidence": "0.7" }, "exécrables": { "form": "exécrables", "pos": "JJ", "polarity": "-0.36", "subjectivity": "-0.71", "intensity": "1.0", "confidence": "0.7" }, "fabuleuse": { "form": "fabuleuse", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "fabuleuses": { "form": "fabuleuses", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "fabuleux": { "form": "fabuleux", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "facile": { "form": "facile", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "faciles": { "form": "faciles", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "factice": { "form": "factice", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "factices": { "form": "factices", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "fade": { "form": "fade", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "fades": { "form": "fades", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "faible": { "form": "faible", "pos": "JJ", "polarity": "-0.38", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "faibles": { "form": "faibles", "pos": "JJ", "polarity": "-0.38", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "faisable": { "form": "faisable", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "fameuse": { "form": "fameuse", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "fameuses": { "form": "fameuses", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "fameux": { "form": "fameux", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "familial": { "form": "familial", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "familiale": { "form": "familiale", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "familiales": { "form": "familiales", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "familiaux": { "form": "familiaux", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "familier": { "form": "familier", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "1.0" }, "familiers": { "form": "familiers", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "familière": { "form": "familière", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "familières": { "form": "familières", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "fantastique": { "form": "fantastique", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "fantastiques": { "form": "fantastiques", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "farouche": { "form": "farouche", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "farouches": { "form": "farouches", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "fatal": { "form": "fatal", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "fatale": { "form": "fatale", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "fatales": { "form": "fatales", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "fatals": { "form": "fatals", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "fatigant": { "form": "fatigant", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "fatigante": { "form": "fatigante", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "fatigantes": { "form": "fatigantes", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "fatigants": { "form": "fatigants", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "fatigué": { "form": "fatigué", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "fatiguée": { "form": "fatiguée", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.8" }, "fatiguées": { "form": "fatiguées", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.8" }, "fatigués": { "form": "fatigués", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.8" }, "fauché": { "form": "fauché", "pos": "JJ", "polarity": "-0.34", "subjectivity": "-1.00", "intensity": "1.0", "confidence": "0.7" }, "fauchée": { "form": "fauchée", "pos": "JJ", "polarity": "-0.34", "subjectivity": "-1.00", "intensity": "1.0", "confidence": "0.7" }, "fauchées": { "form": "fauchées", "pos": "JJ", "polarity": "-0.34", "subjectivity": "-1.00", "intensity": "1.0", "confidence": "0.7" }, "fauchés": { "form": "fauchés", "pos": "JJ", "polarity": "-0.34", "subjectivity": "-1.00", "intensity": "1.0", "confidence": "0.7" }, "fausse": { "form": "fausse", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "fausses": { "form": "fausses", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "fauve": { "form": "fauve", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "fauves": { "form": "fauves", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "faux": { "form": "faux", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "favorable": { "form": "favorable", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "favorables": { "form": "favorables", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "favori": { "form": "favori", "pos": "NN", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "favoris": { "form": "favoris", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "favorite": { "form": "favorite", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "favorites": { "form": "favorites", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "femelle": { "form": "femelle", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "femelles": { "form": "femelles", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "ferme": { "form": "ferme", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "fermes": { "form": "fermes", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "fermé": { "form": "fermé", "pos": "JJ", "polarity": "-0.28", "subjectivity": "0.25", "intensity": "1.0", "confidence": "1.0" }, "fermée": { "form": "fermée", "pos": "JJ", "polarity": "-0.28", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "fermées": { "form": "fermées", "pos": "JJ", "polarity": "-0.28", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "fermés": { "form": "fermés", "pos": "JJ", "polarity": "-0.28", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "fertile": { "form": "fertile", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "fertiles": { "form": "fertiles", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "fessier": { "form": "fessier", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "fessiers": { "form": "fessiers", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "fessière": { "form": "fessière", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "fessières": { "form": "fessières", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "fichu": { "form": "fichu", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "fichue": { "form": "fichue", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "fichues": { "form": "fichues", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "fichus": { "form": "fichus", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "fidèle": { "form": "fidèle", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "fidèles": { "form": "fidèles", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "fier": { "form": "fier", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.55", "intensity": "1.0", "confidence": "1.0" }, "fiers": { "form": "fiers", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.9" }, "figé": { "form": "figé", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "figée": { "form": "figée", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "figées": { "form": "figées", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "figés": { "form": "figés", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "fin": { "form": "fin", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "1.0" }, "final": { "form": "final", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "finale": { "form": "finale", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "finales": { "form": "finales", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "finaux": { "form": "finaux", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "fine": { "form": "fine", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "fines": { "form": "fines", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "fins": { "form": "fins", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "fixe": { "form": "fixe", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "fixes": { "form": "fixes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "fière": { "form": "fière", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.9" }, "fières": { "form": "fières", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.9" }, "fiévreuse": { "form": "fiévreuse", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "fiévreuses": { "form": "fiévreuses", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "fiévreux": { "form": "fiévreux", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "flagada": { "form": "flagada", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "flageolant": { "form": "flageolant", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "flageolante": { "form": "flageolante", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "flageolantes": { "form": "flageolantes", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "flageolants": { "form": "flageolants", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "flagrant": { "form": "flagrant", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "flagrante": { "form": "flagrante", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "flagrantes": { "form": "flagrantes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "flagrants": { "form": "flagrants", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "flamboyant": { "form": "flamboyant", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "flamboyante": { "form": "flamboyante", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "flamboyantes": { "form": "flamboyantes", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "flamboyants": { "form": "flamboyants", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "flegmatique": { "form": "flegmatique", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.7" }, "flegmatiques": { "form": "flegmatiques", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.7" }, "fleuri": { "form": "fleuri", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "fleurie": { "form": "fleurie", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "fleuries": { "form": "fleuries", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "fleuris": { "form": "fleuris", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "flexible": { "form": "flexible", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "flexibles": { "form": "flexibles", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "flottant": { "form": "flottant", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "flottante": { "form": "flottante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "flottantes": { "form": "flottantes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "flottants": { "form": "flottants", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "flou": { "form": "flou", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "floue": { "form": "floue", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "floues": { "form": "floues", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "flous": { "form": "flous", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "fluide": { "form": "fluide", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "fluides": { "form": "fluides", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "flâneur": { "form": "flâneur", "pos": "JJ", "polarity": "-0.21", "subjectivity": "-0.42", "intensity": "1.0", "confidence": "0.7" }, "flâneurs": { "form": "flâneurs", "pos": "JJ", "polarity": "-0.21", "subjectivity": "-0.42", "intensity": "1.0", "confidence": "0.7" }, "flâneuse": { "form": "flâneuse", "pos": "JJ", "polarity": "-0.21", "subjectivity": "-0.42", "intensity": "1.0", "confidence": "0.7" }, "flâneuses": { "form": "flâneuses", "pos": "JJ", "polarity": "-0.21", "subjectivity": "-0.42", "intensity": "1.0", "confidence": "0.7" }, "folle": { "form": "folle", "pos": "JJ", "polarity": "-0.01", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "folles": { "form": "folles", "pos": "JJ", "polarity": "-0.01", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "foncé": { "form": "foncé", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "foncée": { "form": "foncée", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "foncées": { "form": "foncées", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "foncés": { "form": "foncés", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "forcené": { "form": "forcené", "pos": "JJ", "polarity": "-0.22", "subjectivity": "-0.45", "intensity": "1.0", "confidence": "0.7" }, "forcenée": { "form": "forcenée", "pos": "JJ", "polarity": "-0.22", "subjectivity": "-0.45", "intensity": "1.0", "confidence": "0.7" }, "forcenées": { "form": "forcenées", "pos": "JJ", "polarity": "-0.22", "subjectivity": "-0.45", "intensity": "1.0", "confidence": "0.7" }, "forcenés": { "form": "forcenés", "pos": "JJ", "polarity": "-0.22", "subjectivity": "-0.45", "intensity": "1.0", "confidence": "0.7" }, "forcé": { "form": "forcé", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.9" }, "forcée": { "form": "forcée", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.8" }, "forcées": { "form": "forcées", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.8" }, "forcés": { "form": "forcés", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.8" }, "formel": { "form": "formel", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "formelle": { "form": "formelle", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "formelles": { "form": "formelles", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "formels": { "form": "formels", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "formidable": { "form": "formidable", "pos": "JJ", "polarity": "0.85", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "formidables": { "form": "formidables", "pos": "JJ", "polarity": "0.85", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "fort": { "form": "fort", "pos": "JJ", "polarity": "0.41", "subjectivity": "0.30", "intensity": "1.0", "confidence": "1.0" }, "forte": { "form": "forte", "pos": "JJ", "polarity": "0.41", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "fortement": { "form": "fortement", "pos": "RB", "polarity": "0.20", "subjectivity": "0.70", "intensity": "2.0", "confidence": "0.9" }, "fortes": { "form": "fortes", "pos": "JJ", "polarity": "0.41", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "forts": { "form": "forts", "pos": "JJ", "polarity": "0.41", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "fortuit": { "form": "fortuit", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "fortuite": { "form": "fortuite", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "fortuites": { "form": "fortuites", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "fortuits": { "form": "fortuits", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "fortuné": { "form": "fortuné", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.7" }, "fortunée": { "form": "fortunée", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.7" }, "fortunées": { "form": "fortunées", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.7" }, "fortunés": { "form": "fortunés", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.7" }, "fossile": { "form": "fossile", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "fossiles": { "form": "fossiles", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "fou": { "form": "fou", "pos": "JJ", "polarity": "-0.01", "subjectivity": "0.90", "intensity": "1.0", "confidence": "1.0" }, "foudroyant": { "form": "foudroyant", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.03", "intensity": "1.0", "confidence": "0.7" }, "foudroyante": { "form": "foudroyante", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.03", "intensity": "1.0", "confidence": "0.7" }, "foudroyantes": { "form": "foudroyantes", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.03", "intensity": "1.0", "confidence": "0.7" }, "foudroyants": { "form": "foudroyants", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.03", "intensity": "1.0", "confidence": "0.7" }, "fouineur": { "form": "fouineur", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.07", "intensity": "1.0", "confidence": "0.7" }, "fouineurs": { "form": "fouineurs", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.07", "intensity": "1.0", "confidence": "0.7" }, "fouineuse": { "form": "fouineuse", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.07", "intensity": "1.0", "confidence": "0.7" }, "fourré": { "form": "fourré", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "fourrée": { "form": "fourrée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "fourrées": { "form": "fourrées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "fourrés": { "form": "fourrés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "fourvoyé": { "form": "fourvoyé", "pos": "JJ", "polarity": "-0.22", "subjectivity": "-0.45", "intensity": "1.0", "confidence": "0.7" }, "fourvoyées": { "form": "fourvoyées", "pos": "JJ", "polarity": "-0.22", "subjectivity": "-0.45", "intensity": "1.0", "confidence": "0.7" }, "fourvoyés": { "form": "fourvoyés", "pos": "JJ", "polarity": "-0.22", "subjectivity": "-0.45", "intensity": "1.0", "confidence": "0.7" }, "fous": { "form": "fous", "pos": "JJ", "polarity": "-0.01", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "foutaise": { "form": "foutaise", "pos": "NN", "polarity": "-0.60", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "foutu": { "form": "foutu", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "foutue": { "form": "foutue", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "foutues": { "form": "foutues", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "foutus": { "form": "foutus", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "fragile": { "form": "fragile", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.35", "intensity": "1.0", "confidence": "1.0" }, "fragiles": { "form": "fragiles", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.9" }, "frais": { "form": "frais", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "franc": { "form": "franc", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "franche": { "form": "franche", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "franches": { "form": "franches", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "franchouillard": { "form": "franchouillard", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "franchouillarde": { "form": "franchouillarde", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "francs": { "form": "francs", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "français": { "form": "français", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "française": { "form": "française", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "françaises": { "form": "françaises", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "fraternel": { "form": "fraternel", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "fraternelle": { "form": "fraternelle", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "fraternelles": { "form": "fraternelles", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "fraternels": { "form": "fraternels", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "fraîche": { "form": "fraîche", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "fraîches": { "form": "fraîches", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "frisquet": { "form": "frisquet", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "frisquette": { "form": "frisquette", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "frissonnant": { "form": "frissonnant", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "frissonnante": { "form": "frissonnante", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "frissonnantes": { "form": "frissonnantes", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "frissonnants": { "form": "frissonnants", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "frisé": { "form": "frisé", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "frisée": { "form": "frisée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "frisées": { "form": "frisées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "frisés": { "form": "frisés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "froid": { "form": "froid", "pos": "JJ", "polarity": "-0.34", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "froide": { "form": "froide", "pos": "JJ", "polarity": "-0.34", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "froides": { "form": "froides", "pos": "JJ", "polarity": "-0.34", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "froids": { "form": "froids", "pos": "JJ", "polarity": "-0.34", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "froissé": { "form": "froissé", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "froissée": { "form": "froissée", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "froissées": { "form": "froissées", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "froissés": { "form": "froissés", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "fructueuse": { "form": "fructueuse", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "fructueuses": { "form": "fructueuses", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "fructueux": { "form": "fructueux", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "fruste": { "form": "fruste", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "frustes": { "form": "frustes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "frémissant": { "form": "frémissant", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "frémissante": { "form": "frémissante", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "frémissantes": { "form": "frémissantes", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "frémissants": { "form": "frémissants", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "fréquent": { "form": "fréquent", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "fréquente": { "form": "fréquente", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "fréquentes": { "form": "fréquentes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "fréquents": { "form": "fréquents", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "frétillant": { "form": "frétillant", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "frétillante": { "form": "frétillante", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "frétillantes": { "form": "frétillantes", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "frétillants": { "form": "frétillants", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "frêle": { "form": "frêle", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "frêles": { "form": "frêles", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "fugitif": { "form": "fugitif", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "fugitifs": { "form": "fugitifs", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "fugitive": { "form": "fugitive", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "fugitives": { "form": "fugitives", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "fumant": { "form": "fumant", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "fumante": { "form": "fumante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "fumantes": { "form": "fumantes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "fumants": { "form": "fumants", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "fumé": { "form": "fumé", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "fumée": { "form": "fumée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "fumées": { "form": "fumées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "fumés": { "form": "fumés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "funeste": { "form": "funeste", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "funestes": { "form": "funestes", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "funèbre": { "form": "funèbre", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "funèbres": { "form": "funèbres", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "fureteur": { "form": "fureteur", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.07", "intensity": "1.0", "confidence": "0.7" }, "fureteurs": { "form": "fureteurs", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.07", "intensity": "1.0", "confidence": "0.7" }, "fureteuse": { "form": "fureteuse", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.07", "intensity": "1.0", "confidence": "0.7" }, "fureteuses": { "form": "fureteuses", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.07", "intensity": "1.0", "confidence": "0.7" }, "furibond": { "form": "furibond", "pos": "JJ", "polarity": "-0.22", "subjectivity": "-0.45", "intensity": "1.0", "confidence": "0.7" }, "furibonde": { "form": "furibonde", "pos": "JJ", "polarity": "-0.22", "subjectivity": "-0.45", "intensity": "1.0", "confidence": "0.7" }, "furibondes": { "form": "furibondes", "pos": "JJ", "polarity": "-0.22", "subjectivity": "-0.45", "intensity": "1.0", "confidence": "0.7" }, "furibonds": { "form": "furibonds", "pos": "JJ", "polarity": "-0.22", "subjectivity": "-0.45", "intensity": "1.0", "confidence": "0.7" }, "furieuse": { "form": "furieuse", "pos": "JJ", "polarity": "-0.45", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "furieuses": { "form": "furieuses", "pos": "JJ", "polarity": "-0.45", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "furieux": { "form": "furieux", "pos": "JJ", "polarity": "-0.45", "subjectivity": "0.70", "intensity": "1.0", "confidence": "1.0" }, "furtif": { "form": "furtif", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "furtifs": { "form": "furtifs", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "furtive": { "form": "furtive", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "furtives": { "form": "furtives", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "futur": { "form": "futur", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "future": { "form": "future", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "futures": { "form": "futures", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "futurs": { "form": "futurs", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "fébrile": { "form": "fébrile", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "fébriles": { "form": "fébriles", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "fédéral": { "form": "fédéral", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "fédérale": { "form": "fédérale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "fédérales": { "form": "fédérales", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "fédéraux": { "form": "fédéraux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "féminin": { "form": "féminin", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "féminine": { "form": "féminine", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "féminines": { "form": "féminines", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "féminins": { "form": "féminins", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "féroce": { "form": "féroce", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.9" }, "féroces": { "form": "féroces", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.8" }, "gai": { "form": "gai", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "gaie": { "form": "gaie", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "gaies": { "form": "gaies", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "gais": { "form": "gais", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "galopant": { "form": "galopant", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "galopante": { "form": "galopante", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "galopantes": { "form": "galopantes", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "galopants": { "form": "galopants", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "gauche": { "form": "gauche", "pos": "JJ", "polarity": "-0.16", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "gauches": { "form": "gauches", "pos": "JJ", "polarity": "-0.16", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "gaulois": { "form": "gaulois", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "gauloise": { "form": "gauloise", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "gauloises": { "form": "gauloises", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "gentil": { "form": "gentil", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "1.0" }, "gentille": { "form": "gentille", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "gentilles": { "form": "gentilles", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "gentils": { "form": "gentils", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "gigantesque": { "form": "gigantesque", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "gigantesques": { "form": "gigantesques", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "girond": { "form": "girond", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "gironde": { "form": "gironde", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "girondes": { "form": "girondes", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "gironds": { "form": "gironds", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "glabre": { "form": "glabre", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "glabres": { "form": "glabres", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "glacial": { "form": "glacial", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "glaciale": { "form": "glaciale", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "glaciales": { "form": "glaciales", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "glacials": { "form": "glacials", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "glaciaux": { "form": "glaciaux", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "glacé": { "form": "glacé", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "glacée": { "form": "glacée", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "glacées": { "form": "glacées", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "glacés": { "form": "glacés", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "glauque": { "form": "glauque", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "glauques": { "form": "glauques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "global": { "form": "global", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "globale": { "form": "globale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "globaux": { "form": "globaux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "glorieuse": { "form": "glorieuse", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "glorieuses": { "form": "glorieuses", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "glorieux": { "form": "glorieux", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "gluant": { "form": "gluant", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "gluante": { "form": "gluante", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "gluantes": { "form": "gluantes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "gluants": { "form": "gluants", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "gnangnan": { "form": "gnangnan", "pos": "JJ", "polarity": "-0.21", "subjectivity": "-0.42", "intensity": "1.0", "confidence": "0.7" }, "godiche": { "form": "godiche", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "godiches": { "form": "godiches", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "gonflé": { "form": "gonflé", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "gonflée": { "form": "gonflée", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "gonflées": { "form": "gonflées", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "gonflés": { "form": "gonflés", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "gourmand": { "form": "gourmand", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "gourmande": { "form": "gourmande", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "gourmandes": { "form": "gourmandes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "gourmands": { "form": "gourmands", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "gracieuse": { "form": "gracieuse", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.85", "intensity": "1.0", "confidence": "0.8" }, "gracieuses": { "form": "gracieuses", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.85", "intensity": "1.0", "confidence": "0.8" }, "gracieux": { "form": "gracieux", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.85", "intensity": "1.0", "confidence": "0.9" }, "grand": { "form": "grand", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "grande": { "form": "grande", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "grandes": { "form": "grandes", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "grandiose": { "form": "grandiose", "pos": "JJ", "polarity": "0.80", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "grandioses": { "form": "grandioses", "pos": "JJ", "polarity": "0.80", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "grands": { "form": "grands", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "gras": { "form": "gras", "pos": "JJ", "polarity": "-0.35", "subjectivity": "0.30", "intensity": "1.0", "confidence": "1.0" }, "grasse": { "form": "grasse", "pos": "JJ", "polarity": "-0.35", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "grasses": { "form": "grasses", "pos": "JJ", "polarity": "-0.35", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "gratiné": { "form": "gratiné", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "gratinés": { "form": "gratinés", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "gratuit": { "form": "gratuit", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "gratuite": { "form": "gratuite", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "gratuites": { "form": "gratuites", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "gratuits": { "form": "gratuits", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "grave": { "form": "grave", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.30", "intensity": "1.0", "confidence": "1.0" }, "graveleuse": { "form": "graveleuse", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "graveleuses": { "form": "graveleuses", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "graveleux": { "form": "graveleux", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "graves": { "form": "graves", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "grec": { "form": "grec", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "grecque": { "form": "grecque", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "grecques": { "form": "grecques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "grecs": { "form": "grecs", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "grelottant": { "form": "grelottant", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "grelottante": { "form": "grelottante", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "grelottantes": { "form": "grelottantes", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "grelottants": { "form": "grelottants", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "gris": { "form": "gris", "pos": "JJ", "polarity": "-0.18", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "grise": { "form": "grise", "pos": "JJ", "polarity": "-0.18", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "grises": { "form": "grises", "pos": "JJ", "polarity": "-0.18", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "grisâtre": { "form": "grisâtre", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "grisâtres": { "form": "grisâtres", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "grivois": { "form": "grivois", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "grivoise": { "form": "grivoise", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "grivoises": { "form": "grivoises", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "gros": { "form": "gros", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "grosse": { "form": "grosse", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "grosses": { "form": "grosses", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "grossier": { "form": "grossier", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.9" }, "grossiers": { "form": "grossiers", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "grossière": { "form": "grossière", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "grossières": { "form": "grossières", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "grotesque": { "form": "grotesque", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "grotesques": { "form": "grotesques", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "guerrier": { "form": "guerrier", "pos": "JJ", "polarity": "-0.07", "subjectivity": "-0.13", "intensity": "1.0", "confidence": "0.7" }, "guerriers": { "form": "guerriers", "pos": "JJ", "polarity": "-0.07", "subjectivity": "-0.13", "intensity": "1.0", "confidence": "0.7" }, "guerrière": { "form": "guerrière", "pos": "JJ", "polarity": "-0.07", "subjectivity": "-0.13", "intensity": "1.0", "confidence": "0.7" }, "guerrières": { "form": "guerrières", "pos": "JJ", "polarity": "-0.07", "subjectivity": "-0.13", "intensity": "1.0", "confidence": "0.7" }, "géant": { "form": "géant", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "géante": { "form": "géante", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "géantes": { "form": "géantes", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "géants": { "form": "géants", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "génial": { "form": "génial", "pos": "JJ", "polarity": "0.90", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "géniale": { "form": "géniale", "pos": "JJ", "polarity": "0.90", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "géniales": { "form": "géniales", "pos": "JJ", "polarity": "0.90", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "géniaux": { "form": "géniaux", "pos": "JJ", "polarity": "0.90", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "général": { "form": "général", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "générale": { "form": "générale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "générales": { "form": "générales", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "généraux": { "form": "généraux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "généreuse": { "form": "généreuse", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "généreuses": { "form": "généreuses", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "généreux": { "form": "généreux", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "gênant": { "form": "gênant", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "gênante": { "form": "gênante", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "gênantes": { "form": "gênantes", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "gênants": { "form": "gênants", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "gêné": { "form": "gêné", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "gênée": { "form": "gênée", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "gênées": { "form": "gênées", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "gênés": { "form": "gênés", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "habile": { "form": "habile", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "habiles": { "form": "habiles", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "habillé": { "form": "habillé", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "habillée": { "form": "habillée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "habillées": { "form": "habillées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "habillés": { "form": "habillés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "habituel": { "form": "habituel", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "habituelle": { "form": "habituelle", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "habituelles": { "form": "habituelles", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "habituels": { "form": "habituels", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "hagard": { "form": "hagard", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "hagarde": { "form": "hagarde", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "hagardes": { "form": "hagardes", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "hagards": { "form": "hagards", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "haineuse": { "form": "haineuse", "pos": "JJ", "polarity": "-0.38", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "haineuses": { "form": "haineuses", "pos": "JJ", "polarity": "-0.38", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "haineux": { "form": "haineux", "pos": "JJ", "polarity": "-0.38", "subjectivity": "-0.80", "intensity": "1.0", "confidence": "0.7" }, "haletant": { "form": "haletant", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "haletante": { "form": "haletante", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "haletantes": { "form": "haletantes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "haletants": { "form": "haletants", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "hardi": { "form": "hardi", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "hardie": { "form": "hardie", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "hardies": { "form": "hardies", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "hardis": { "form": "hardis", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "hargneuse": { "form": "hargneuse", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "hargneuses": { "form": "hargneuses", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "hargneux": { "form": "hargneux", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "hasardé": { "form": "hasardé", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "hasardée": { "form": "hasardée", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "haut": { "form": "haut", "pos": "JJ", "polarity": "0.18", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "hautain": { "form": "hautain", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "hautaine": { "form": "hautaine", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "hautaines": { "form": "hautaines", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "hautains": { "form": "hautains", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "haute": { "form": "haute", "pos": "JJ", "polarity": "0.18", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "hautes": { "form": "hautes", "pos": "JJ", "polarity": "0.18", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "hauts": { "form": "hauts", "pos": "JJ", "polarity": "0.18", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "hellène": { "form": "hellène", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "hellènes": { "form": "hellènes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "hellénique": { "form": "hellénique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "helléniques": { "form": "helléniques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "hermétique": { "form": "hermétique", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.08", "intensity": "1.0", "confidence": "0.7" }, "hermétiques": { "form": "hermétiques", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.08", "intensity": "1.0", "confidence": "0.7" }, "heureuse": { "form": "heureuse", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "heureusement": { "form": "heureusement", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "heureuses": { "form": "heureuses", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "heureux": { "form": "heureux", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.80", "intensity": "1.0", "confidence": "1.0" }, "hexagonal": { "form": "hexagonal", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "hexagonale": { "form": "hexagonale", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "hexagonales": { "form": "hexagonales", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "hexagonaux": { "form": "hexagonaux", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "hideuse": { "form": "hideuse", "pos": "JJ", "polarity": "-0.70", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "hideuses": { "form": "hideuses", "pos": "JJ", "polarity": "-0.70", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "hideux": { "form": "hideux", "pos": "JJ", "polarity": "-0.70", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "hispanique": { "form": "hispanique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "hispaniques": { "form": "hispaniques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "historique": { "form": "historique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "historiques": { "form": "historiques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "hiératique": { "form": "hiératique", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.7" }, "hiératiques": { "form": "hiératiques", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.7" }, "homogène": { "form": "homogène", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "homogènes": { "form": "homogènes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "homologue": { "form": "homologue", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "homologues": { "form": "homologues", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "honnête": { "form": "honnête", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "honnêtes": { "form": "honnêtes", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "honorable": { "form": "honorable", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "honorables": { "form": "honorables", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "honteuse": { "form": "honteuse", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "honteuses": { "form": "honteuses", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "honteux": { "form": "honteux", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "horizontal": { "form": "horizontal", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "horizontale": { "form": "horizontale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "horizontales": { "form": "horizontales", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "horizontaux": { "form": "horizontaux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "horreur": { "form": "horreur", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "horrible": { "form": "horrible", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "horribles": { "form": "horribles", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "hostile": { "form": "hostile", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "hostiles": { "form": "hostiles", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "humain": { "form": "humain", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "humaine": { "form": "humaine", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "humaines": { "form": "humaines", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "humains": { "form": "humains", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "humanoïde": { "form": "humanoïde", "pos": "JJ", "polarity": "0.11", "subjectivity": "0.22", "intensity": "1.0", "confidence": "0.7" }, "humanoïdes": { "form": "humanoïdes", "pos": "JJ", "polarity": "0.11", "subjectivity": "0.22", "intensity": "1.0", "confidence": "0.7" }, "humble": { "form": "humble", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "humbles": { "form": "humbles", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "humide": { "form": "humide", "pos": "JJ", "polarity": "-0.03", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "humides": { "form": "humides", "pos": "JJ", "polarity": "-0.03", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "hyperactif": { "form": "hyperactif", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "hyperactive": { "form": "hyperactive", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "hypothétique": { "form": "hypothétique", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "hypothétiques": { "form": "hypothétiques", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "hébreu": { "form": "hébreu", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "hébreux": { "form": "hébreux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "hélas": { "form": "hélas", "pos": "UH", "polarity": "-0.40", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "héroïque": { "form": "héroïque", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "héroïques": { "form": "héroïques", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "hésitant": { "form": "hésitant", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.9" }, "hésitante": { "form": "hésitante", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.8" }, "hésitantes": { "form": "hésitantes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.8" }, "hésitants": { "form": "hésitants", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.8" }, "hétéroclite": { "form": "hétéroclite", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "hétéroclites": { "form": "hétéroclites", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "hétérogène": { "form": "hétérogène", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "hétérogènes": { "form": "hétérogènes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "ibérique": { "form": "ibérique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "ibériques": { "form": "ibériques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "identique": { "form": "identique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "identiques": { "form": "identiques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "idiot": { "form": "idiot", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "idiote": { "form": "idiote", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "idiotes": { "form": "idiotes", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "idiots": { "form": "idiots", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "idéal": { "form": "idéal", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "idéale": { "form": "idéale", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "idéales": { "form": "idéales", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "idéals": { "form": "idéals", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "idéaux": { "form": "idéaux", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "ignoble": { "form": "ignoble", "pos": "JJ", "polarity": "-0.80", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "ignobles": { "form": "ignobles", "pos": "JJ", "polarity": "-0.80", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "ignorant": { "form": "ignorant", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "ignorante": { "form": "ignorante", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "ignorantes": { "form": "ignorantes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "ignorants": { "form": "ignorants", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "ignoré": { "form": "ignoré", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "ignorée": { "form": "ignorée", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "ignorées": { "form": "ignorées", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "ignorés": { "form": "ignorés", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "illicite": { "form": "illicite", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "illicites": { "form": "illicites", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "illimité": { "form": "illimité", "pos": "JJ", "polarity": "0.11", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "illimitée": { "form": "illimitée", "pos": "JJ", "polarity": "0.11", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "illimitées": { "form": "illimitées", "pos": "JJ", "polarity": "0.11", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "illimités": { "form": "illimités", "pos": "JJ", "polarity": "0.11", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "illogique": { "form": "illogique", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "illogiques": { "form": "illogiques", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "illustre": { "form": "illustre", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "illustres": { "form": "illustres", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "illégal": { "form": "illégal", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "illégale": { "form": "illégale", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "illégales": { "form": "illégales", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "illégaux": { "form": "illégaux", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "imaginaire": { "form": "imaginaire", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "imaginaires": { "form": "imaginaires", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "imbibé": { "form": "imbibé", "pos": "JJ", "polarity": "-0.02", "subjectivity": "-0.03", "intensity": "1.0", "confidence": "0.7" }, "imbibée": { "form": "imbibée", "pos": "JJ", "polarity": "-0.02", "subjectivity": "-0.03", "intensity": "1.0", "confidence": "0.7" }, "imbibées": { "form": "imbibées", "pos": "JJ", "polarity": "-0.02", "subjectivity": "-0.03", "intensity": "1.0", "confidence": "0.7" }, "imbibés": { "form": "imbibés", "pos": "JJ", "polarity": "-0.02", "subjectivity": "-0.03", "intensity": "1.0", "confidence": "0.7" }, "imbécile": { "form": "imbécile", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "imbéciles": { "form": "imbéciles", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "immaculé": { "form": "immaculé", "pos": "JJ", "polarity": "0.16", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "immaculée": { "form": "immaculée", "pos": "JJ", "polarity": "0.16", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "immaculées": { "form": "immaculées", "pos": "JJ", "polarity": "0.16", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "immaculés": { "form": "immaculés", "pos": "JJ", "polarity": "0.16", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "immanquable": { "form": "immanquable", "pos": "JJ", "polarity": "-0.35", "subjectivity": "-0.70", "intensity": "1.0", "confidence": "0.7" }, "immanquables": { "form": "immanquables", "pos": "JJ", "polarity": "-0.35", "subjectivity": "-0.70", "intensity": "1.0", "confidence": "0.7" }, "immense": { "form": "immense", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.70", "intensity": "1.0", "confidence": "1.0" }, "immenses": { "form": "immenses", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "immigrant": { "form": "immigrant", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "immigrants": { "form": "immigrants", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "immobile": { "form": "immobile", "pos": "JJ", "polarity": "-0.16", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "immobiles": { "form": "immobiles", "pos": "JJ", "polarity": "-0.16", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "immuable": { "form": "immuable", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "immuables": { "form": "immuables", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "immédiat": { "form": "immédiat", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "immédiate": { "form": "immédiate", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "immédiates": { "form": "immédiates", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "immédiats": { "form": "immédiats", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "immémorial": { "form": "immémorial", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.04", "intensity": "1.0", "confidence": "0.7" }, "immémoriale": { "form": "immémoriale", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.04", "intensity": "1.0", "confidence": "0.7" }, "immémoriales": { "form": "immémoriales", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.04", "intensity": "1.0", "confidence": "0.7" }, "immémoriaux": { "form": "immémoriaux", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.04", "intensity": "1.0", "confidence": "0.7" }, "imparable": { "form": "imparable", "pos": "JJ", "polarity": "-0.35", "subjectivity": "-0.70", "intensity": "1.0", "confidence": "0.7" }, "imparables": { "form": "imparables", "pos": "JJ", "polarity": "-0.35", "subjectivity": "-0.70", "intensity": "1.0", "confidence": "0.7" }, "imparfait": { "form": "imparfait", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "imparfaite": { "form": "imparfaite", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "imparfaites": { "form": "imparfaites", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "imparfaits": { "form": "imparfaits", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "impassible": { "form": "impassible", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "impassibles": { "form": "impassibles", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "impatient": { "form": "impatient", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "impatiente": { "form": "impatiente", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "impatientes": { "form": "impatientes", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "impatients": { "form": "impatients", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "impavide": { "form": "impavide", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.17", "intensity": "1.0", "confidence": "0.7" }, "impavides": { "form": "impavides", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.17", "intensity": "1.0", "confidence": "0.7" }, "impeccable": { "form": "impeccable", "pos": "JJ", "polarity": "0.70", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "impeccables": { "form": "impeccables", "pos": "JJ", "polarity": "0.70", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "impensable": { "form": "impensable", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "impensables": { "form": "impensables", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "imperceptible": { "form": "imperceptible", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "imperceptibles": { "form": "imperceptibles", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "impitoyable": { "form": "impitoyable", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.9" }, "impitoyables": { "form": "impitoyables", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "implacable": { "form": "implacable", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "implacables": { "form": "implacables", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "important": { "form": "important", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.45", "intensity": "1.0", "confidence": "1.0" }, "importante": { "form": "importante", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.9" }, "importantes": { "form": "importantes", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.9" }, "importants": { "form": "importants", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.9" }, "imposant": { "form": "imposant", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "imposante": { "form": "imposante", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "imposantes": { "form": "imposantes", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "imposants": { "form": "imposants", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "impossible": { "form": "impossible", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "1.0" }, "impossibles": { "form": "impossibles", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "impraticable": { "form": "impraticable", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "impraticables": { "form": "impraticables", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "impressionnant": { "form": "impressionnant", "pos": "JJ", "polarity": "0.70", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "impressionnante": { "form": "impressionnante", "pos": "JJ", "polarity": "0.70", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "impressionnantes": { "form": "impressionnantes", "pos": "JJ", "polarity": "0.70", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "impressionnants": { "form": "impressionnants", "pos": "JJ", "polarity": "0.70", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "improbable": { "form": "improbable", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "improbables": { "form": "improbables", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "imprécis": { "form": "imprécis", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "imprécise": { "form": "imprécise", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "imprécises": { "form": "imprécises", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "imprévisible": { "form": "imprévisible", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "imprévisibles": { "form": "imprévisibles", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "imprévu": { "form": "imprévu", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "imprévue": { "form": "imprévue", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "imprévues": { "form": "imprévues", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "imprévus": { "form": "imprévus", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "impuissant": { "form": "impuissant", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "impuissante": { "form": "impuissante", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "impuissantes": { "form": "impuissantes", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "impuissants": { "form": "impuissants", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "impénétrable": { "form": "impénétrable", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.28", "intensity": "1.0", "confidence": "0.7" }, "impénétrables": { "form": "impénétrables", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.28", "intensity": "1.0", "confidence": "0.7" }, "impératif": { "form": "impératif", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "impératifs": { "form": "impératifs", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "impérative": { "form": "impérative", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "impératives": { "form": "impératives", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "impérial": { "form": "impérial", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "impériale": { "form": "impériale", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "impériales": { "form": "impériales", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "impériaux": { "form": "impériaux", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "impérieuse": { "form": "impérieuse", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.8" }, "impérieuses": { "form": "impérieuses", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.8" }, "impérieux": { "form": "impérieux", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "inabordable": { "form": "inabordable", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "inaccessible": { "form": "inaccessible", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "inaccessibles": { "form": "inaccessibles", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "inadmissible": { "form": "inadmissible", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "inadmissibles": { "form": "inadmissibles", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "inaltéré": { "form": "inaltéré", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "inaltérée": { "form": "inaltérée", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "inaltérées": { "form": "inaltérées", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "inaltérés": { "form": "inaltérés", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "inamical": { "form": "inamical", "pos": "JJ", "polarity": "-0.35", "subjectivity": "-0.70", "intensity": "1.0", "confidence": "0.7" }, "inamicale": { "form": "inamicale", "pos": "JJ", "polarity": "-0.35", "subjectivity": "-0.70", "intensity": "1.0", "confidence": "0.7" }, "inamicaux": { "form": "inamicaux", "pos": "JJ", "polarity": "-0.35", "subjectivity": "-0.70", "intensity": "1.0", "confidence": "0.7" }, "inapte": { "form": "inapte", "pos": "JJ", "polarity": "-0.33", "subjectivity": "-0.67", "intensity": "1.0", "confidence": "0.7" }, "inaptes": { "form": "inaptes", "pos": "JJ", "polarity": "-0.33", "subjectivity": "-0.67", "intensity": "1.0", "confidence": "0.7" }, "inattendu": { "form": "inattendu", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "inattendue": { "form": "inattendue", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "inattendues": { "form": "inattendues", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "inattendus": { "form": "inattendus", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "inaudible": { "form": "inaudible", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "inaudibles": { "form": "inaudibles", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "incalculable": { "form": "incalculable", "pos": "JJ", "polarity": "0.11", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "incalculables": { "form": "incalculables", "pos": "JJ", "polarity": "0.11", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "incapable": { "form": "incapable", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.65", "intensity": "1.0", "confidence": "1.0" }, "incapables": { "form": "incapables", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.9" }, "incarnat": { "form": "incarnat", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.01", "intensity": "1.0", "confidence": "0.7" }, "incertain": { "form": "incertain", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "incertaine": { "form": "incertaine", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "incertaines": { "form": "incertaines", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "incertains": { "form": "incertains", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "incessant": { "form": "incessant", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.9" }, "incessante": { "form": "incessante", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "incessantes": { "form": "incessantes", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "incessants": { "form": "incessants", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "incomparable": { "form": "incomparable", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "incomparables": { "form": "incomparables", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "incompréhensible": { "form": "incompréhensible", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "incompréhensibles": { "form": "incompréhensibles", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "inconcevable": { "form": "inconcevable", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "inconcevables": { "form": "inconcevables", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "inconnu": { "form": "inconnu", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "inconnue": { "form": "inconnue", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "inconnues": { "form": "inconnues", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "inconnus": { "form": "inconnus", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "inconscient": { "form": "inconscient", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "inconsciente": { "form": "inconsciente", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "inconscientes": { "form": "inconscientes", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "inconscients": { "form": "inconscients", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "incroyable": { "form": "incroyable", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "incroyables": { "form": "incroyables", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "incrédule": { "form": "incrédule", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.9" }, "incrédules": { "form": "incrédules", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "indien": { "form": "indien", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "indienne": { "form": "indienne", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "indiennes": { "form": "indiennes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "indiens": { "form": "indiens", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "indifférent": { "form": "indifférent", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "indifférente": { "form": "indifférente", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "indifférentes": { "form": "indifférentes", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "indifférents": { "form": "indifférents", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "indigent": { "form": "indigent", "pos": "JJ", "polarity": "-0.50", "subjectivity": "-1.00", "intensity": "1.0", "confidence": "0.7" }, "indigente": { "form": "indigente", "pos": "JJ", "polarity": "-0.50", "subjectivity": "-1.00", "intensity": "1.0", "confidence": "0.7" }, "indigentes": { "form": "indigentes", "pos": "JJ", "polarity": "-0.50", "subjectivity": "-1.00", "intensity": "1.0", "confidence": "0.7" }, "indigents": { "form": "indigents", "pos": "JJ", "polarity": "-0.50", "subjectivity": "-1.00", "intensity": "1.0", "confidence": "0.7" }, "indigne": { "form": "indigne", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "indignes": { "form": "indignes", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "indiscret": { "form": "indiscret", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "indiscrets": { "form": "indiscrets", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "indiscrète": { "form": "indiscrète", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "indiscrètes": { "form": "indiscrètes", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "indispensable": { "form": "indispensable", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "indispensables": { "form": "indispensables", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "individuel": { "form": "individuel", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "individuelle": { "form": "individuelle", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "individuelles": { "form": "individuelles", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "individuels": { "form": "individuels", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "indompté": { "form": "indompté", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.08", "intensity": "1.0", "confidence": "0.7" }, "indomptée": { "form": "indomptée", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.08", "intensity": "1.0", "confidence": "0.7" }, "indomptés": { "form": "indomptés", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.08", "intensity": "1.0", "confidence": "0.7" }, "industriel": { "form": "industriel", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "industrielle": { "form": "industrielle", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "industrielles": { "form": "industrielles", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "industriels": { "form": "industriels", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "indécis": { "form": "indécis", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "indécise": { "form": "indécise", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "indécises": { "form": "indécises", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "indéfini": { "form": "indéfini", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "indéfinie": { "form": "indéfinie", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "indéfinies": { "form": "indéfinies", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "indéfinis": { "form": "indéfinis", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "indépendant": { "form": "indépendant", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "indépendante": { "form": "indépendante", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "indépendantes": { "form": "indépendantes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "indépendants": { "form": "indépendants", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "indéterminé": { "form": "indéterminé", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "indéterminée": { "form": "indéterminée", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "indéterminées": { "form": "indéterminées", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "indéterminés": { "form": "indéterminés", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "inentamé": { "form": "inentamé", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "inentamée": { "form": "inentamée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "inentamées": { "form": "inentamées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "inerte": { "form": "inerte", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "inertes": { "form": "inertes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "inespéré": { "form": "inespéré", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "inespérée": { "form": "inespérée", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "inespérées": { "form": "inespérées", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "inexploré": { "form": "inexploré", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "inexplorée": { "form": "inexplorée", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "inexplorées": { "form": "inexplorées", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "inexplorés": { "form": "inexplorés", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "infernal": { "form": "infernal", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.9" }, "infernale": { "form": "infernale", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "infernales": { "form": "infernales", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "infernaux": { "form": "infernaux", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "infime": { "form": "infime", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "infimes": { "form": "infimes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "infini": { "form": "infini", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "infinie": { "form": "infinie", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "infinies": { "form": "infinies", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "infinis": { "form": "infinis", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "infinitésimal": { "form": "infinitésimal", "pos": "JJ", "polarity": "-0.11", "subjectivity": "-0.22", "intensity": "1.0", "confidence": "0.7" }, "infinitésimale": { "form": "infinitésimale", "pos": "JJ", "polarity": "-0.11", "subjectivity": "-0.22", "intensity": "1.0", "confidence": "0.7" }, "infinitésimales": { "form": "infinitésimales", "pos": "JJ", "polarity": "-0.11", "subjectivity": "-0.22", "intensity": "1.0", "confidence": "0.7" }, "infinitésimaux": { "form": "infinitésimaux", "pos": "JJ", "polarity": "-0.11", "subjectivity": "-0.22", "intensity": "1.0", "confidence": "0.7" }, "inflexible": { "form": "inflexible", "pos": "JJ", "polarity": "-0.17", "subjectivity": "-0.45", "intensity": "1.0", "confidence": "0.7" }, "inflexibles": { "form": "inflexibles", "pos": "JJ", "polarity": "-0.17", "subjectivity": "-0.45", "intensity": "1.0", "confidence": "0.7" }, "influent": { "form": "influent", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "influente": { "form": "influente", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "influentes": { "form": "influentes", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "influents": { "form": "influents", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "inférieur": { "form": "inférieur", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "inférieure": { "form": "inférieure", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "inférieures": { "form": "inférieures", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "inférieurs": { "form": "inférieurs", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "ingénu": { "form": "ingénu", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "ingénue": { "form": "ingénue", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "ingénues": { "form": "ingénues", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "ingénus": { "form": "ingénus", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "inhumain": { "form": "inhumain", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "inhumaine": { "form": "inhumaine", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "inhumaines": { "form": "inhumaines", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "inhumains": { "form": "inhumains", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "inimaginable": { "form": "inimaginable", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "inimaginables": { "form": "inimaginables", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "injuste": { "form": "injuste", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "injustes": { "form": "injustes", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "innocent": { "form": "innocent", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "innocente": { "form": "innocente", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.8" }, "innocentes": { "form": "innocentes", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.8" }, "innocents": { "form": "innocents", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.8" }, "innombrable": { "form": "innombrable", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "innombrables": { "form": "innombrables", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.8" }, "inopiné": { "form": "inopiné", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.03", "intensity": "1.0", "confidence": "0.7" }, "inopinée": { "form": "inopinée", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.03", "intensity": "1.0", "confidence": "0.7" }, "inopinées": { "form": "inopinées", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.03", "intensity": "1.0", "confidence": "0.7" }, "inoubliable": { "form": "inoubliable", "pos": "JJ", "polarity": "0.60", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "inoubliables": { "form": "inoubliables", "pos": "JJ", "polarity": "0.60", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "inouï": { "form": "inouï", "pos": "JJ", "polarity": "0.90", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "inouïe": { "form": "inouïe", "pos": "JJ", "polarity": "0.90", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "inouïes": { "form": "inouïes", "pos": "JJ", "polarity": "0.90", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "inouïs": { "form": "inouïs", "pos": "JJ", "polarity": "0.90", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "inquiet": { "form": "inquiet", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "inquiets": { "form": "inquiets", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "inquisiteur": { "form": "inquisiteur", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.07", "intensity": "1.0", "confidence": "0.7" }, "inquisiteurs": { "form": "inquisiteurs", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.07", "intensity": "1.0", "confidence": "0.7" }, "inquisitrice": { "form": "inquisitrice", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.07", "intensity": "1.0", "confidence": "0.7" }, "inquiète": { "form": "inquiète", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "inquiètes": { "form": "inquiètes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "inquiétant": { "form": "inquiétant", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.9" }, "inquiétante": { "form": "inquiétante", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "inquiétantes": { "form": "inquiétantes", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "inquiétants": { "form": "inquiétants", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "insatisfait": { "form": "insatisfait", "pos": "JJ", "polarity": "-0.32", "subjectivity": "-0.65", "intensity": "1.0", "confidence": "0.7" }, "insatisfaite": { "form": "insatisfaite", "pos": "JJ", "polarity": "-0.32", "subjectivity": "-0.65", "intensity": "1.0", "confidence": "0.7" }, "insatisfaites": { "form": "insatisfaites", "pos": "JJ", "polarity": "-0.32", "subjectivity": "-0.65", "intensity": "1.0", "confidence": "0.7" }, "insatisfaits": { "form": "insatisfaits", "pos": "JJ", "polarity": "-0.32", "subjectivity": "-0.65", "intensity": "1.0", "confidence": "0.7" }, "insensible": { "form": "insensible", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "insensibles": { "form": "insensibles", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "insensé": { "form": "insensé", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "insensée": { "form": "insensée", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "insensées": { "form": "insensées", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "insensés": { "form": "insensés", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "insignifiant": { "form": "insignifiant", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "insignifiante": { "form": "insignifiante", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "insignifiantes": { "form": "insignifiantes", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "insignifiants": { "form": "insignifiants", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "insolent": { "form": "insolent", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "insolente": { "form": "insolente", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "insolentes": { "form": "insolentes", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "insolents": { "form": "insolents", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "insolite": { "form": "insolite", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "insolites": { "form": "insolites", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "insoutenable": { "form": "insoutenable", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "insoutenables": { "form": "insoutenables", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "inspiré": { "form": "inspiré", "pos": "VB", "polarity": "0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "inspirée": { "form": "inspirée", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "inspirées": { "form": "inspirées", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "inspirés": { "form": "inspirés", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "instable": { "form": "instable", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "instables": { "form": "instables", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "instant": { "form": "instant", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "instante": { "form": "instante", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "instantes": { "form": "instantes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "instants": { "form": "instants", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "instinctif": { "form": "instinctif", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "instinctifs": { "form": "instinctifs", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "instinctive": { "form": "instinctive", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "instinctives": { "form": "instinctives", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "insupportable": { "form": "insupportable", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "insupportables": { "form": "insupportables", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "intact": { "form": "intact", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "intacte": { "form": "intacte", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "intactes": { "form": "intactes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "intacts": { "form": "intacts", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "intangible": { "form": "intangible", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.7" }, "intangibles": { "form": "intangibles", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.7" }, "intellectuel": { "form": "intellectuel", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "intellectuelle": { "form": "intellectuelle", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "intellectuelles": { "form": "intellectuelles", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "intellectuels": { "form": "intellectuels", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "intelligent": { "form": "intelligent", "pos": "JJ", "polarity": "0.90", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "intelligente": { "form": "intelligente", "pos": "JJ", "polarity": "0.90", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "intelligentes": { "form": "intelligentes", "pos": "JJ", "polarity": "0.90", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "intelligents": { "form": "intelligents", "pos": "JJ", "polarity": "0.90", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "intelligible": { "form": "intelligible", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.27", "intensity": "1.0", "confidence": "0.7" }, "intelligibles": { "form": "intelligibles", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.27", "intensity": "1.0", "confidence": "0.7" }, "intense": { "form": "intense", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "intenses": { "form": "intenses", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "interdit": { "form": "interdit", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "interdite": { "form": "interdite", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "interdites": { "form": "interdites", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "interdits": { "form": "interdits", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "interessant": { "form": "interessant", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "interminable": { "form": "interminable", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "interminables": { "form": "interminables", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "intermédiaire": { "form": "intermédiaire", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "intermédiaires": { "form": "intermédiaires", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "international": { "form": "international", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "internationale": { "form": "internationale", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "internationales": { "form": "internationales", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "internationaux": { "form": "internationaux", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "interne": { "form": "interne", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.07", "intensity": "1.0", "confidence": "0.7" }, "internes": { "form": "internes", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.07", "intensity": "1.0", "confidence": "0.7" }, "interrogateur": { "form": "interrogateur", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.07", "intensity": "1.0", "confidence": "0.7" }, "interrogateurs": { "form": "interrogateurs", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.07", "intensity": "1.0", "confidence": "0.7" }, "intestin": { "form": "intestin", "pos": "JJ", "polarity": "-0.02", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "intestine": { "form": "intestine", "pos": "JJ", "polarity": "-0.02", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "intestines": { "form": "intestines", "pos": "JJ", "polarity": "-0.02", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "intestins": { "form": "intestins", "pos": "JJ", "polarity": "-0.02", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "intime": { "form": "intime", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "intimes": { "form": "intimes", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "intolérable": { "form": "intolérable", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "intolérables": { "form": "intolérables", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "intégral": { "form": "intégral", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "intégrale": { "form": "intégrale", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "intégrales": { "form": "intégrales", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "intégraux": { "form": "intégraux", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "intéressant": { "form": "intéressant", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "intéressante": { "form": "intéressante", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "intéressantes": { "form": "intéressantes", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "intéressants": { "form": "intéressants", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "intérieur": { "form": "intérieur", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "intérieure": { "form": "intérieure", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "intérieures": { "form": "intérieures", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "intérieurs": { "form": "intérieurs", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "inutile": { "form": "inutile", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "1.0" }, "inutiles": { "form": "inutiles", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "inverse": { "form": "inverse", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "inverses": { "form": "inverses", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "invincible": { "form": "invincible", "pos": "JJ", "polarity": "0.21", "subjectivity": "0.41", "intensity": "1.0", "confidence": "0.7" }, "invincibles": { "form": "invincibles", "pos": "JJ", "polarity": "0.21", "subjectivity": "0.41", "intensity": "1.0", "confidence": "0.7" }, "inviolable": { "form": "inviolable", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.7" }, "inviolables": { "form": "inviolables", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.7" }, "invisible": { "form": "invisible", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "invisibles": { "form": "invisibles", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "invraisemblable": { "form": "invraisemblable", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "invraisemblables": { "form": "invraisemblables", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "inédit": { "form": "inédit", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "inédite": { "form": "inédite", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "inédites": { "form": "inédites", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "inédits": { "form": "inédits", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "inépuisable": { "form": "inépuisable", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "inépuisables": { "form": "inépuisables", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "inéquitable": { "form": "inéquitable", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "inévitable": { "form": "inévitable", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "inévitables": { "form": "inévitables", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "irascible": { "form": "irascible", "pos": "JJ", "polarity": "-0.22", "subjectivity": "-0.45", "intensity": "1.0", "confidence": "0.7" }, "irascibles": { "form": "irascibles", "pos": "JJ", "polarity": "-0.22", "subjectivity": "-0.45", "intensity": "1.0", "confidence": "0.7" }, "ironique": { "form": "ironique", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "ironiques": { "form": "ironiques", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "irrattrapable": { "form": "irrattrapable", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "irrattrapables": { "form": "irrattrapables", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "irresponsable": { "form": "irresponsable", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "irresponsables": { "form": "irresponsables", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "irréel": { "form": "irréel", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "irréelle": { "form": "irréelle", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "irréelles": { "form": "irréelles", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "irréels": { "form": "irréels", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "irrésistible": { "form": "irrésistible", "pos": "JJ", "polarity": "0.90", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "irrésistibles": { "form": "irrésistibles", "pos": "JJ", "polarity": "0.90", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "isolé": { "form": "isolé", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "isolée": { "form": "isolée", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "isolées": { "form": "isolées", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "isolés": { "form": "isolés", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "israélite": { "form": "israélite", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "israélites": { "form": "israélites", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "italien": { "form": "italien", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "italienne": { "form": "italienne", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "italiennes": { "form": "italiennes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "italiens": { "form": "italiens", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "ivre": { "form": "ivre", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "ivres": { "form": "ivres", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "jalouse": { "form": "jalouse", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "jalouses": { "form": "jalouses", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "jaloux": { "form": "jaloux", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "japonais": { "form": "japonais", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "japonaise": { "form": "japonaise", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "japonaises": { "form": "japonaises", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "jaune": { "form": "jaune", "pos": "JJ", "polarity": "-0.02", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "jaunes": { "form": "jaunes", "pos": "JJ", "polarity": "-0.02", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "jaunâtre": { "form": "jaunâtre", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "jaunâtres": { "form": "jaunâtres", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "jeune": { "form": "jeune", "pos": "JJ", "polarity": "0.32", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "jeunes": { "form": "jeunes", "pos": "JJ", "polarity": "0.32", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "joint": { "form": "joint", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "jointe": { "form": "jointe", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "jointes": { "form": "jointes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "joints": { "form": "joints", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "joli": { "form": "joli", "pos": "JJ", "polarity": "0.57", "subjectivity": "0.60", "intensity": "1.0", "confidence": "1.0" }, "jolie": { "form": "jolie", "pos": "JJ", "polarity": "0.57", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "jolies": { "form": "jolies", "pos": "JJ", "polarity": "0.57", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "joliment": { "form": "joliment", "pos": "RB", "polarity": "0.30", "subjectivity": "0.30", "intensity": "1.5", "confidence": "0.9" }, "jolis": { "form": "jolis", "pos": "JJ", "polarity": "0.57", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "jouissif": { "form": "jouissif", "pos": "JJ", "polarity": "-0.28", "subjectivity": "-0.55", "intensity": "1.0", "confidence": "0.7" }, "jouissifs": { "form": "jouissifs", "pos": "JJ", "polarity": "-0.28", "subjectivity": "-0.55", "intensity": "1.0", "confidence": "0.7" }, "jouissive": { "form": "jouissive", "pos": "JJ", "polarity": "-0.28", "subjectivity": "-0.55", "intensity": "1.0", "confidence": "0.7" }, "jouissives": { "form": "jouissives", "pos": "JJ", "polarity": "-0.28", "subjectivity": "-0.55", "intensity": "1.0", "confidence": "0.7" }, "journalier": { "form": "journalier", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "journaliers": { "form": "journaliers", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "journalière": { "form": "journalière", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "journalières": { "form": "journalières", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "joyeuse": { "form": "joyeuse", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.9" }, "joyeuses": { "form": "joyeuses", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.9" }, "joyeux": { "form": "joyeux", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.55", "intensity": "1.0", "confidence": "1.0" }, "judicieuse": { "form": "judicieuse", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "judicieuses": { "form": "judicieuses", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "judicieux": { "form": "judicieux", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "juif": { "form": "juif", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "juifs": { "form": "juifs", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "juive": { "form": "juive", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "juives": { "form": "juives", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "jumelé": { "form": "jumelé", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "jumelée": { "form": "jumelée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "jumelées": { "form": "jumelées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "jumelés": { "form": "jumelés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "juste": { "form": "juste", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "justes": { "form": "justes", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "l'horreur": { "form": "l'horreur", "pos": "NN", "polarity": "-0.60", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "laid": { "form": "laid", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "laide": { "form": "laide", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "laides": { "form": "laides", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "laids": { "form": "laids", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "laiteuse": { "form": "laiteuse", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "laiteuses": { "form": "laiteuses", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "laiteux": { "form": "laiteux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "lambin": { "form": "lambin", "pos": "JJ", "polarity": "-0.21", "subjectivity": "-0.42", "intensity": "1.0", "confidence": "0.7" }, "lambins": { "form": "lambins", "pos": "JJ", "polarity": "-0.21", "subjectivity": "-0.42", "intensity": "1.0", "confidence": "0.7" }, "lamentable": { "form": "lamentable", "pos": "JJ", "polarity": "-0.30", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "lamentables": { "form": "lamentables", "pos": "JJ", "polarity": "-0.30", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "langoureuse": { "form": "langoureuse", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.7" }, "langoureuses": { "form": "langoureuses", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.7" }, "langoureux": { "form": "langoureux", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.7" }, "lapidaire": { "form": "lapidaire", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "lapidaires": { "form": "lapidaires", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "large": { "form": "large", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "largement": { "form": "largement", "pos": "RB", "polarity": "0.05", "subjectivity": "0.40", "intensity": "0.5", "confidence": "0.9" }, "larges": { "form": "larges", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "las": { "form": "las", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "lascif": { "form": "lascif", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.7" }, "lascifs": { "form": "lascifs", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.7" }, "lascive": { "form": "lascive", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.7" }, "lascives": { "form": "lascives", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.7" }, "lasse": { "form": "lasse", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "lasses": { "form": "lasses", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "latin": { "form": "latin", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "latine": { "form": "latine", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "latines": { "form": "latines", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "latins": { "form": "latins", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "lent": { "form": "lent", "pos": "JJ", "polarity": "-0.42", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "lente": { "form": "lente", "pos": "JJ", "polarity": "-0.42", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "lentes": { "form": "lentes", "pos": "JJ", "polarity": "-0.42", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "lents": { "form": "lents", "pos": "JJ", "polarity": "-0.42", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "levé": { "form": "levé", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "levée": { "form": "levée", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "levées": { "form": "levées", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "levés": { "form": "levés", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "libre": { "form": "libre", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.30", "intensity": "1.0", "confidence": "1.0" }, "libres": { "form": "libres", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "libéral": { "form": "libéral", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "libérale": { "form": "libérale", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "libérales": { "form": "libérales", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "libéraux": { "form": "libéraux", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "libéré": { "form": "libéré", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "libérée": { "form": "libérée", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "libérées": { "form": "libérées", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "libérés": { "form": "libérés", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "licencieuse": { "form": "licencieuse", "pos": "JJ", "polarity": "0.04", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "licencieuses": { "form": "licencieuses", "pos": "JJ", "polarity": "0.04", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "licencieux": { "form": "licencieux", "pos": "JJ", "polarity": "0.04", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "lilial": { "form": "lilial", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "liliale": { "form": "liliale", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "limité": { "form": "limité", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "limitée": { "form": "limitée", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "limitées": { "form": "limitées", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "limités": { "form": "limités", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "limpide": { "form": "limpide", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "limpides": { "form": "limpides", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "liquide": { "form": "liquide", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "liquides": { "form": "liquides", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "liquoreux": { "form": "liquoreux", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "lisible": { "form": "lisible", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.27", "intensity": "1.0", "confidence": "0.7" }, "lisibles": { "form": "lisibles", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.27", "intensity": "1.0", "confidence": "0.7" }, "lisse": { "form": "lisse", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "lisses": { "form": "lisses", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "littéraire": { "form": "littéraire", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "littéraires": { "form": "littéraires", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "liturgique": { "form": "liturgique", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.7" }, "liturgiques": { "form": "liturgiques", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.7" }, "livide": { "form": "livide", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "livides": { "form": "livides", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "local": { "form": "local", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "locale": { "form": "locale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "locales": { "form": "locales", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "locaux": { "form": "locaux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "logique": { "form": "logique", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "logiques": { "form": "logiques", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "lointain": { "form": "lointain", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "lointaine": { "form": "lointaine", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "lointaines": { "form": "lointaines", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "lointains": { "form": "lointains", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "long": { "form": "long", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "longs": { "form": "longs", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "longue": { "form": "longue", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "longues": { "form": "longues", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "louable": { "form": "louable", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "louables": { "form": "louables", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "louche": { "form": "louche", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "louches": { "form": "louches", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "lourd": { "form": "lourd", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.35", "intensity": "1.0", "confidence": "1.0" }, "lourde": { "form": "lourde", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.9" }, "lourdes": { "form": "lourdes", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.9" }, "lourds": { "form": "lourds", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.9" }, "loyal": { "form": "loyal", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "loyale": { "form": "loyale", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "loyales": { "form": "loyales", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "loyaux": { "form": "loyaux", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "lucide": { "form": "lucide", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "lucides": { "form": "lucides", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "lugubre": { "form": "lugubre", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "lugubres": { "form": "lugubres", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "luisant": { "form": "luisant", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "luisante": { "form": "luisante", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "luisantes": { "form": "luisantes", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "luisants": { "form": "luisants", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "lumineuse": { "form": "lumineuse", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "lumineuses": { "form": "lumineuses", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "lumineux": { "form": "lumineux", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "luxueuse": { "form": "luxueuse", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "luxueuses": { "form": "luxueuses", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "luxueux": { "form": "luxueux", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "lâche": { "form": "lâche", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.34", "intensity": "1.0", "confidence": "0.9" }, "lâches": { "form": "lâches", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.34", "intensity": "1.0", "confidence": "0.8" }, "légendaire": { "form": "légendaire", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "légendaires": { "form": "légendaires", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "léger": { "form": "léger", "pos": "JJ", "polarity": "0.18", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "légers": { "form": "légers", "pos": "JJ", "polarity": "0.18", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "légitime": { "form": "légitime", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "légitimes": { "form": "légitimes", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "légère": { "form": "légère", "pos": "JJ", "polarity": "0.18", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "légères": { "form": "légères", "pos": "JJ", "polarity": "0.18", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "léonin": { "form": "léonin", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "léonine": { "form": "léonine", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "léonins": { "form": "léonins", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "maghrébin": { "form": "maghrébin", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "maghrébine": { "form": "maghrébine", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "maghrébines": { "form": "maghrébines", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "magique": { "form": "magique", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "magiques": { "form": "magiques", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "magnifique": { "form": "magnifique", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "magnifiques": { "form": "magnifiques", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "maigre": { "form": "maigre", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "maigres": { "form": "maigres", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "majestueuse": { "form": "majestueuse", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "majestueuses": { "form": "majestueuses", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "majestueux": { "form": "majestueux", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "mal": { "form": "mal", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "malade": { "form": "malade", "pos": "JJ", "polarity": "-0.35", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "malades": { "form": "malades", "pos": "JJ", "polarity": "-0.35", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "maladroit": { "form": "maladroit", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "maladroite": { "form": "maladroite", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "maladroites": { "form": "maladroites", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "maladroits": { "form": "maladroits", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "male": { "form": "male", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "malentendant": { "form": "malentendant", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "malentendante": { "form": "malentendante", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "males": { "form": "males", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "malfaisant": { "form": "malfaisant", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "malfaisante": { "form": "malfaisante", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "malfaisantes": { "form": "malfaisantes", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "malfaisants": { "form": "malfaisants", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "malgré": { "form": "malgré", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "malheureuse": { "form": "malheureuse", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "malheureusement": { "form": "malheureusement", "pos": "RB", "polarity": "-0.60", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "malheureuses": { "form": "malheureuses", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "malheureux": { "form": "malheureux", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.70", "intensity": "1.0", "confidence": "1.0" }, "malicieuse": { "form": "malicieuse", "pos": "JJ", "polarity": "-0.07", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "malicieuses": { "form": "malicieuses", "pos": "JJ", "polarity": "-0.07", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "malicieux": { "form": "malicieux", "pos": "JJ", "polarity": "-0.07", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "maligne": { "form": "maligne", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "malignes": { "form": "malignes", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "malin": { "form": "malin", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "malins": { "form": "malins", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "malléable": { "form": "malléable", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.27", "intensity": "1.0", "confidence": "0.7" }, "malléables": { "form": "malléables", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.27", "intensity": "1.0", "confidence": "0.7" }, "manifeste": { "form": "manifeste", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "manifestes": { "form": "manifestes", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "manquant": { "form": "manquant", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "manquante": { "form": "manquante", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "manquantes": { "form": "manquantes", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "manquants": { "form": "manquants", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "marin": { "form": "marin", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "marine": { "form": "marine", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "marines": { "form": "marines", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "marins": { "form": "marins", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "maritime": { "form": "maritime", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "maritimes": { "form": "maritimes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "marié": { "form": "marié", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "mariée": { "form": "mariée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "mariées": { "form": "mariées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "mariés": { "form": "mariés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "marrant": { "form": "marrant", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "marrante": { "form": "marrante", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.8" }, "marrantes": { "form": "marrantes", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.8" }, "marrants": { "form": "marrants", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.8" }, "marron": { "form": "marron", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "martial": { "form": "martial", "pos": "JJ", "polarity": "-0.07", "subjectivity": "-0.13", "intensity": "1.0", "confidence": "0.7" }, "martiale": { "form": "martiale", "pos": "JJ", "polarity": "-0.07", "subjectivity": "-0.13", "intensity": "1.0", "confidence": "0.7" }, "martiales": { "form": "martiales", "pos": "JJ", "polarity": "-0.07", "subjectivity": "-0.13", "intensity": "1.0", "confidence": "0.7" }, "martiaux": { "form": "martiaux", "pos": "JJ", "polarity": "-0.07", "subjectivity": "-0.13", "intensity": "1.0", "confidence": "0.7" }, "marxiste": { "form": "marxiste", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "marxistes": { "form": "marxistes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "masculin": { "form": "masculin", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "masculine": { "form": "masculine", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "masculines": { "form": "masculines", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "masculins": { "form": "masculins", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "massif": { "form": "massif", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "massifs": { "form": "massifs", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "massive": { "form": "massive", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "massives": { "form": "massives", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "mastoc": { "form": "mastoc", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "mat": { "form": "mat", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "mat'": { "form": "mat'", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "mate": { "form": "mate", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "maternel": { "form": "maternel", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "maternelle": { "form": "maternelle", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "maternelles": { "form": "maternelles", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "maternels": { "form": "maternels", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "mates": { "form": "mates", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "matinal": { "form": "matinal", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "matinale": { "form": "matinale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "matinales": { "form": "matinales", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "matinaux": { "form": "matinaux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "mats": { "form": "mats", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "matériel": { "form": "matériel", "pos": "JJ", "polarity": "0.29", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "matérielle": { "form": "matérielle", "pos": "JJ", "polarity": "0.29", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "matérielles": { "form": "matérielles", "pos": "JJ", "polarity": "0.29", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "matériels": { "form": "matériels", "pos": "JJ", "polarity": "0.29", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "maudit": { "form": "maudit", "pos": "JJ", "polarity": "-0.80", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "maudite": { "form": "maudite", "pos": "JJ", "polarity": "-0.80", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "maudites": { "form": "maudites", "pos": "JJ", "polarity": "-0.80", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "maudits": { "form": "maudits", "pos": "JJ", "polarity": "-0.80", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "mauvais": { "form": "mauvais", "pos": "JJ", "polarity": "-0.71", "subjectivity": "0.80", "intensity": "1.0", "confidence": "1.0" }, "mauvaise": { "form": "mauvaise", "pos": "JJ", "polarity": "-0.71", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "mauvaises": { "form": "mauvaises", "pos": "JJ", "polarity": "-0.71", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "mauve": { "form": "mauve", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "mauves": { "form": "mauves", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "meilleur": { "form": "meilleur", "pos": "JJ", "polarity": "0.53", "subjectivity": "0.50", "intensity": "1.0", "confidence": "1.0" }, "meilleure": { "form": "meilleure", "pos": "JJ", "polarity": "0.53", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "meilleures": { "form": "meilleures", "pos": "JJ", "polarity": "0.53", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "meilleurs": { "form": "meilleurs", "pos": "JJ", "polarity": "0.53", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "menaçant": { "form": "menaçant", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "menaçante": { "form": "menaçante", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "menaçantes": { "form": "menaçantes", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "menaçants": { "form": "menaçants", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "mensonger": { "form": "mensonger", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "mensongers": { "form": "mensongers", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "mensongère": { "form": "mensongère", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "mensongères": { "form": "mensongères", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "mental": { "form": "mental", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "mentale": { "form": "mentale", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "mentales": { "form": "mentales", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "mentaux": { "form": "mentaux", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "merci": { "form": "merci", "pos": "UH", "polarity": "0.30", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "merde": { "form": "merde", "pos": "UH", "polarity": "-0.70", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "merveille": { "form": "merveille", "pos": "NN", "polarity": "0.40", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "merveilleuse": { "form": "merveilleuse", "pos": "JJ", "polarity": "0.90", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "merveilleusement": { "form": "merveilleusement", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.80", "intensity": "2.0", "confidence": "0.9" }, "merveilleuses": { "form": "merveilleuses", "pos": "JJ", "polarity": "0.90", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "merveilleux": { "form": "merveilleux", "pos": "JJ", "polarity": "0.90", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "mesuré": { "form": "mesuré", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "mesurée": { "form": "mesurée", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "mesurées": { "form": "mesurées", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "mesurés": { "form": "mesurés", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "meurtrier": { "form": "meurtrier", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "meurtriers": { "form": "meurtriers", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "meurtrière": { "form": "meurtrière", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "meurtrières": { "form": "meurtrières", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "mignon": { "form": "mignon", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "mignonne": { "form": "mignonne", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "mignonnes": { "form": "mignonnes", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "mignons": { "form": "mignons", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "militaire": { "form": "militaire", "pos": "JJ", "polarity": "-0.13", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "militaires": { "form": "militaires", "pos": "JJ", "polarity": "-0.13", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "minable": { "form": "minable", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "minables": { "form": "minables", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "mince": { "form": "mince", "pos": "JJ", "polarity": "-0.03", "subjectivity": "0.15", "intensity": "1.0", "confidence": "1.0" }, "minces": { "form": "minces", "pos": "JJ", "polarity": "-0.03", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "minime": { "form": "minime", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "minimes": { "form": "minimes", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "minuscule": { "form": "minuscule", "pos": "JJ", "polarity": "-0.22", "subjectivity": "0.30", "intensity": "1.0", "confidence": "1.0" }, "minuscules": { "form": "minuscules", "pos": "JJ", "polarity": "-0.22", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "miraculeuse": { "form": "miraculeuse", "pos": "JJ", "polarity": "0.20", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "miraculeuses": { "form": "miraculeuses", "pos": "JJ", "polarity": "0.20", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "miraculeux": { "form": "miraculeux", "pos": "JJ", "polarity": "0.20", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "misogyne": { "form": "misogyne", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "misogynes": { "form": "misogynes", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "misérable": { "form": "misérable", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "misérables": { "form": "misérables", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "mobile": { "form": "mobile", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "mobiles": { "form": "mobiles", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "moche": { "form": "moche", "pos": "JJ", "polarity": "-0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "moches": { "form": "moches", "pos": "JJ", "polarity": "-0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "moderne": { "form": "moderne", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "modernes": { "form": "modernes", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "modeste": { "form": "modeste", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "modestes": { "form": "modestes", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "modèle": { "form": "modèle", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "modèles": { "form": "modèles", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "modéré": { "form": "modéré", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "modérée": { "form": "modérée", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "modérées": { "form": "modérées", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "modérés": { "form": "modérés", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "moelleuse": { "form": "moelleuse", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "moelleuses": { "form": "moelleuses", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "moelleux": { "form": "moelleux", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "moindre": { "form": "moindre", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "1.0" }, "moindres": { "form": "moindres", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "moite": { "form": "moite", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "moites": { "form": "moites", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "molletonné": { "form": "molletonné", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "molletonnée": { "form": "molletonnée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "mondain": { "form": "mondain", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "mondaine": { "form": "mondaine", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "mondaines": { "form": "mondaines", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "mondains": { "form": "mondains", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "mondial": { "form": "mondial", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "mondiale": { "form": "mondiale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "mondiales": { "form": "mondiales", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "mondiaux": { "form": "mondiaux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "monocorde": { "form": "monocorde", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "monocordes": { "form": "monocordes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "monotone": { "form": "monotone", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "monotones": { "form": "monotones", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "monstrueuse": { "form": "monstrueuse", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "monstrueuses": { "form": "monstrueuses", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "monstrueux": { "form": "monstrueux", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "monumental": { "form": "monumental", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "monumentale": { "form": "monumentale", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "monumentales": { "form": "monumentales", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "monumentaux": { "form": "monumentaux", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "moque": { "form": "moque", "pos": "VB", "polarity": "-0.20", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "moral": { "form": "moral", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "morale": { "form": "morale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "morales": { "form": "morales", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "moraux": { "form": "moraux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "morne": { "form": "morne", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "mornes": { "form": "mornes", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "mou": { "form": "mou", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "moucheté": { "form": "moucheté", "pos": "JJ", "polarity": "-0.30", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "mouchetée": { "form": "mouchetée", "pos": "JJ", "polarity": "-0.30", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "mouchetées": { "form": "mouchetées", "pos": "JJ", "polarity": "-0.30", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "mouchetés": { "form": "mouchetés", "pos": "JJ", "polarity": "-0.30", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "mouillé": { "form": "mouillé", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "mouillée": { "form": "mouillée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "mouillées": { "form": "mouillées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "mouillés": { "form": "mouillés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "mous": { "form": "mous", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "mouvant": { "form": "mouvant", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "mouvante": { "form": "mouvante", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "mouvantes": { "form": "mouvantes", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "mouvants": { "form": "mouvants", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "moyen": { "form": "moyen", "pos": "JJ", "polarity": "-0.15", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "moyenne": { "form": "moyenne", "pos": "JJ", "polarity": "-0.15", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "moyennes": { "form": "moyennes", "pos": "JJ", "polarity": "-0.15", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "moyens": { "form": "moyens", "pos": "JJ", "polarity": "-0.15", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "muet": { "form": "muet", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "muets": { "form": "muets", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "muette": { "form": "muette", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "muettes": { "form": "muettes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "multicolore": { "form": "multicolore", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "multicolores": { "form": "multicolores", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "multiple": { "form": "multiple", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "multiples": { "form": "multiples", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "municipal": { "form": "municipal", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "municipale": { "form": "municipale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "municipales": { "form": "municipales", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "municipaux": { "form": "municipaux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "musclé": { "form": "musclé", "pos": "JJ", "polarity": "0.21", "subjectivity": "0.41", "intensity": "1.0", "confidence": "0.7" }, "musclée": { "form": "musclée", "pos": "JJ", "polarity": "0.21", "subjectivity": "0.41", "intensity": "1.0", "confidence": "0.7" }, "musclées": { "form": "musclées", "pos": "JJ", "polarity": "0.21", "subjectivity": "0.41", "intensity": "1.0", "confidence": "0.7" }, "musclés": { "form": "musclés", "pos": "JJ", "polarity": "0.21", "subjectivity": "0.41", "intensity": "1.0", "confidence": "0.7" }, "musical": { "form": "musical", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "musicale": { "form": "musicale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "musicales": { "form": "musicales", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "musicaux": { "form": "musicaux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "mystique": { "form": "mystique", "pos": "JJ", "polarity": "0.20", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "mystiques": { "form": "mystiques", "pos": "JJ", "polarity": "0.20", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "mystérieuse": { "form": "mystérieuse", "pos": "JJ", "polarity": "0.28", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "mystérieuses": { "form": "mystérieuses", "pos": "JJ", "polarity": "0.28", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "mystérieux": { "form": "mystérieux", "pos": "JJ", "polarity": "0.28", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "mécanique": { "form": "mécanique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "mécaniques": { "form": "mécaniques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "méchant": { "form": "méchant", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "méchante": { "form": "méchante", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "méchantes": { "form": "méchantes", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "méchants": { "form": "méchants", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "mécontent": { "form": "mécontent", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "mécontente": { "form": "mécontente", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "mécontentes": { "form": "mécontentes", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "mécontents": { "form": "mécontents", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "médian": { "form": "médian", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "médiane": { "form": "médiane", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "médianes": { "form": "médianes", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "médians": { "form": "médians", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "médical": { "form": "médical", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "médicale": { "form": "médicale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "médicales": { "form": "médicales", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "médicaux": { "form": "médicaux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "médiocre": { "form": "médiocre", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "médiocres": { "form": "médiocres", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "méfiant": { "form": "méfiant", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "méfiante": { "form": "méfiante", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "méfiantes": { "form": "méfiantes", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "méfiants": { "form": "méfiants", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "mélancolique": { "form": "mélancolique", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.9" }, "mélancoliques": { "form": "mélancoliques", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.8" }, "mélangé": { "form": "mélangé", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "mélangée": { "form": "mélangée", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "mélangées": { "form": "mélangées", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "mélangés": { "form": "mélangés", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "ménager": { "form": "ménager", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "ménagers": { "form": "ménagers", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "ménagère": { "form": "ménagère", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "ménagères": { "form": "ménagères", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "méprisant": { "form": "méprisant", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "méprisante": { "form": "méprisante", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "méprisantes": { "form": "méprisantes", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "méprisants": { "form": "méprisants", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "métallique": { "form": "métallique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "métalliques": { "form": "métalliques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "métaphysique": { "form": "métaphysique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "métaphysiques": { "form": "métaphysiques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "métropolitain": { "form": "métropolitain", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "métropolitaine": { "form": "métropolitaine", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "métropolitaines": { "form": "métropolitaines", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "métropolitains": { "form": "métropolitains", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "même": { "form": "même", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.0", "confidence": "1.0" }, "mêmes": { "form": "mêmes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "mûr": { "form": "mûr", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "mûre": { "form": "mûre", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "mûres": { "form": "mûres", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "mûrs": { "form": "mûrs", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "n'": { "form": "n'", "pos": "", "polarity": "-0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "naissant": { "form": "naissant", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "naissante": { "form": "naissante", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "naissantes": { "form": "naissantes", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "naissants": { "form": "naissants", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "natal": { "form": "natal", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "natale": { "form": "natale", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "natales": { "form": "natales", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "natals": { "form": "natals", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "national": { "form": "national", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "nationale": { "form": "nationale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "nationales": { "form": "nationales", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "nationaux": { "form": "nationaux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "nature": { "form": "nature", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "naturel": { "form": "naturel", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "naturelle": { "form": "naturelle", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "naturelles": { "form": "naturelles", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "naturels": { "form": "naturels", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "nautique": { "form": "nautique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "nautiques": { "form": "nautiques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "nazi": { "form": "nazi", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "nazie": { "form": "nazie", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "nazies": { "form": "nazies", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "nazis": { "form": "nazis", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "naïf": { "form": "naïf", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "naïfs": { "form": "naïfs", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "naïve": { "form": "naïve", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "naïves": { "form": "naïves", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "nerveuse": { "form": "nerveuse", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "nerveuses": { "form": "nerveuses", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "nerveux": { "form": "nerveux", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "net": { "form": "net", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "nets": { "form": "nets", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "nette": { "form": "nette", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "nettes": { "form": "nettes", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "neuf": { "form": "neuf", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "1.0" }, "neufs": { "form": "neufs", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "neutre": { "form": "neutre", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "neutres": { "form": "neutres", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "neuve": { "form": "neuve", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "neuves": { "form": "neuves", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "noble": { "form": "noble", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "nobles": { "form": "nobles", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "nocturne": { "form": "nocturne", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "nocturnes": { "form": "nocturnes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "noir": { "form": "noir", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "noire": { "form": "noire", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "noires": { "form": "noires", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "noirs": { "form": "noirs", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "nombreuse": { "form": "nombreuse", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "nombreuses": { "form": "nombreuses", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "nombreux": { "form": "nombreux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "non": { "form": "non", "pos": "UH", "polarity": "-0.01", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "non-stop": { "form": "non-stop", "pos": "JJ", "polarity": "0.28", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.7" }, "nonchalant": { "form": "nonchalant", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "nonchalante": { "form": "nonchalante", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "nonchalantes": { "form": "nonchalantes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "nonchalants": { "form": "nonchalants", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "nord": { "form": "nord", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "normal": { "form": "normal", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.15", "intensity": "1.0", "confidence": "1.0" }, "normale": { "form": "normale", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "normales": { "form": "normales", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "normaux": { "form": "normaux", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "nouveau": { "form": "nouveau", "pos": "JJ", "polarity": "0.34", "subjectivity": "0.25", "intensity": "1.0", "confidence": "1.0" }, "nouveaux": { "form": "nouveaux", "pos": "JJ", "polarity": "0.34", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "nouvel": { "form": "nouvel", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "nouvelle": { "form": "nouvelle", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.25", "intensity": "1.0", "confidence": "1.0" }, "nouvelles": { "form": "nouvelles", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "nu": { "form": "nu", "pos": "JJ", "polarity": "0.16", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "nuageuse": { "form": "nuageuse", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "nuageuses": { "form": "nuageuses", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "nuageux": { "form": "nuageux", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "nue": { "form": "nue", "pos": "JJ", "polarity": "0.16", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "nues": { "form": "nues", "pos": "JJ", "polarity": "0.16", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "nul": { "form": "nul", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "nulle": { "form": "nulle", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "nulles": { "form": "nulles", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "nuls": { "form": "nuls", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "nus": { "form": "nus", "pos": "JJ", "polarity": "0.16", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "nécessaire": { "form": "nécessaire", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "nécessaires": { "form": "nécessaires", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "négligeable": { "form": "négligeable", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "négligeables": { "form": "négligeables", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "obligatoire": { "form": "obligatoire", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "obligatoires": { "form": "obligatoires", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "oblique": { "form": "oblique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "obliques": { "form": "obliques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "obscur": { "form": "obscur", "pos": "JJ", "polarity": "-0.47", "subjectivity": "0.50", "intensity": "1.0", "confidence": "1.0" }, "obscure": { "form": "obscure", "pos": "JJ", "polarity": "-0.47", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "obscures": { "form": "obscures", "pos": "JJ", "polarity": "-0.47", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "obscurs": { "form": "obscurs", "pos": "JJ", "polarity": "-0.47", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "obscène": { "form": "obscène", "pos": "JJ", "polarity": "-0.90", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "obscènes": { "form": "obscènes", "pos": "JJ", "polarity": "-0.90", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "occidental": { "form": "occidental", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "occidentale": { "form": "occidentale", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "occidentales": { "form": "occidentales", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "occidentaux": { "form": "occidentaux", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "occulte": { "form": "occulte", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.08", "intensity": "1.0", "confidence": "0.7" }, "occultes": { "form": "occultes", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.08", "intensity": "1.0", "confidence": "0.7" }, "occupé": { "form": "occupé", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "occupée": { "form": "occupée", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "occupées": { "form": "occupées", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "occupés": { "form": "occupés", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "odieuse": { "form": "odieuse", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "odieuses": { "form": "odieuses", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "odieux": { "form": "odieux", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "oecuménique": { "form": "oecuménique", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "oecuméniques": { "form": "oecuméniques", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "officiel": { "form": "officiel", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "officielle": { "form": "officielle", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "officielles": { "form": "officielles", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "officiels": { "form": "officiels", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "oiseuse": { "form": "oiseuse", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "oiseuses": { "form": "oiseuses", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "oiseux": { "form": "oiseux", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "ombreuse": { "form": "ombreuse", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.47", "intensity": "1.0", "confidence": "0.7" }, "ombreuses": { "form": "ombreuses", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.47", "intensity": "1.0", "confidence": "0.7" }, "ombreux": { "form": "ombreux", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.47", "intensity": "1.0", "confidence": "0.7" }, "opalescent": { "form": "opalescent", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "opalescente": { "form": "opalescente", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "opalescentes": { "form": "opalescentes", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "opaque": { "form": "opaque", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "opaques": { "form": "opaques", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "opposé": { "form": "opposé", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "opposée": { "form": "opposée", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "opposées": { "form": "opposées", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "opposés": { "form": "opposés", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "opulent": { "form": "opulent", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.7" }, "opulente": { "form": "opulente", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.7" }, "opulentes": { "form": "opulentes", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.7" }, "opulents": { "form": "opulents", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.7" }, "opérant": { "form": "opérant", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "orange": { "form": "orange", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "ordinaire": { "form": "ordinaire", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "ordinaires": { "form": "ordinaires", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "organisé": { "form": "organisé", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "organisée": { "form": "organisée", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "organisées": { "form": "organisées", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "organisés": { "form": "organisés", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "oriental": { "form": "oriental", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "orientale": { "form": "orientale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "orientales": { "form": "orientales", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "orientaux": { "form": "orientaux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "original": { "form": "original", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "originale": { "form": "originale", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "originales": { "form": "originales", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "originaux": { "form": "originaux", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "orthodoxe": { "form": "orthodoxe", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "orthodoxes": { "form": "orthodoxes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "orthogonal": { "form": "orthogonal", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "orthogonaux": { "form": "orthogonaux", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "oublié": { "form": "oublié", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "oubliée": { "form": "oubliée", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "oubliées": { "form": "oubliées", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "oubliés": { "form": "oubliés", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "oui": { "form": "oui", "pos": "UH", "polarity": "0.01", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "ouvert": { "form": "ouvert", "pos": "JJ", "polarity": "0.31", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "ouverte": { "form": "ouverte", "pos": "JJ", "polarity": "0.31", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "ouvertes": { "form": "ouvertes", "pos": "JJ", "polarity": "0.31", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "ouverts": { "form": "ouverts", "pos": "JJ", "polarity": "0.31", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "ovale": { "form": "ovale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "ovales": { "form": "ovales", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "pacifique": { "form": "pacifique", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "pacifiques": { "form": "pacifiques", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "paisible": { "form": "paisible", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.9" }, "paisibles": { "form": "paisibles", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "pantouflard": { "form": "pantouflard", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "pantouflarde": { "form": "pantouflarde", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "paradisiaque": { "form": "paradisiaque", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "paradisiaques": { "form": "paradisiaques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "parallèle": { "form": "parallèle", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "parallèles": { "form": "parallèles", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "paralysé": { "form": "paralysé", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.16", "intensity": "1.0", "confidence": "0.7" }, "paralysée": { "form": "paralysée", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.16", "intensity": "1.0", "confidence": "0.7" }, "paralysées": { "form": "paralysées", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.16", "intensity": "1.0", "confidence": "0.7" }, "paralysés": { "form": "paralysés", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.16", "intensity": "1.0", "confidence": "0.7" }, "pareil": { "form": "pareil", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "pareille": { "form": "pareille", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "pareilles": { "form": "pareilles", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "pareils": { "form": "pareils", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "parental": { "form": "parental", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "parentale": { "form": "parentale", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "parentales": { "form": "parentales", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "parentaux": { "form": "parentaux", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "paresseuse": { "form": "paresseuse", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "paresseuses": { "form": "paresseuses", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "paresseux": { "form": "paresseux", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "parfait": { "form": "parfait", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "1.0" }, "parfaite": { "form": "parfaite", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "parfaitement": { "form": "parfaitement", "pos": "RB", "polarity": "0.25", "subjectivity": "0.80", "intensity": "2.0", "confidence": "0.9" }, "parfaites": { "form": "parfaites", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "parfaits": { "form": "parfaits", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "parfumé": { "form": "parfumé", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "parfumée": { "form": "parfumée", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "parfumées": { "form": "parfumées", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "parfumés": { "form": "parfumés", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "parigot": { "form": "parigot", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "parigote": { "form": "parigote", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "parigotes": { "form": "parigotes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "parigots": { "form": "parigots", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "parisien": { "form": "parisien", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "parisienne": { "form": "parisienne", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "parisiennes": { "form": "parisiennes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "parisiens": { "form": "parisiens", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "parti": { "form": "parti", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "particulier": { "form": "particulier", "pos": "JJ", "polarity": "-0.15", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "particuliers": { "form": "particuliers", "pos": "JJ", "polarity": "-0.15", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "particulière": { "form": "particulière", "pos": "JJ", "polarity": "-0.15", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "particulièrement": { "form": "particulièrement", "pos": "RB", "polarity": "0.00", "subjectivity": "0.80", "intensity": "2.0", "confidence": "0.9" }, "particulières": { "form": "particulières", "pos": "JJ", "polarity": "-0.15", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "partis": { "form": "partis", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "parvenu": { "form": "parvenu", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "parvenue": { "form": "parvenue", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "parvenues": { "form": "parvenues", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "parvenus": { "form": "parvenus", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "pascal": { "form": "pascal", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "pascale": { "form": "pascale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "pascales": { "form": "pascales", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "passionnant": { "form": "passionnant", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "passionnante": { "form": "passionnante", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "passionnantes": { "form": "passionnantes", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "passionnants": { "form": "passionnants", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "passionné": { "form": "passionné", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "passionnée": { "form": "passionnée", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "passionnées": { "form": "passionnées", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "passionnés": { "form": "passionnés", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "passé": { "form": "passé", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.25", "intensity": "1.0", "confidence": "1.0" }, "passée": { "form": "passée", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "passées": { "form": "passées", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "passéiste": { "form": "passéiste", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "passés": { "form": "passés", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "patent": { "form": "patent", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "patente": { "form": "patente", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "patentes": { "form": "patentes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "patents": { "form": "patents", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "paternel": { "form": "paternel", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "paternelle": { "form": "paternelle", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "paternelles": { "form": "paternelles", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "paternels": { "form": "paternels", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "pathétique": { "form": "pathétique", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "pathétiques": { "form": "pathétiques", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "patient": { "form": "patient", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "patiente": { "form": "patiente", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "patientes": { "form": "patientes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "patients": { "form": "patients", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "pauvre": { "form": "pauvre", "pos": "JJ", "polarity": "-0.37", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "pauvres": { "form": "pauvres", "pos": "JJ", "polarity": "-0.37", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "peinard": { "form": "peinard", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "peinarde": { "form": "peinarde", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "peinardes": { "form": "peinardes", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "peinards": { "form": "peinards", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "penché": { "form": "penché", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "penchée": { "form": "penchée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "penchées": { "form": "penchées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "penchés": { "form": "penchés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "pensif": { "form": "pensif", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "pensifs": { "form": "pensifs", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "pensive": { "form": "pensive", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "perceptible": { "form": "perceptible", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "perceptibles": { "form": "perceptibles", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "perdu": { "form": "perdu", "pos": "JJ", "polarity": "-0.45", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "perdue": { "form": "perdue", "pos": "JJ", "polarity": "-0.45", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "perdues": { "form": "perdues", "pos": "JJ", "polarity": "-0.45", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "perdus": { "form": "perdus", "pos": "JJ", "polarity": "-0.45", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "permanent": { "form": "permanent", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "permanente": { "form": "permanente", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "permanentes": { "form": "permanentes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "permanents": { "form": "permanents", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "permis": { "form": "permis", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "perpendiculaire": { "form": "perpendiculaire", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "perpendiculaires": { "form": "perpendiculaires", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "perplexe": { "form": "perplexe", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "perplexes": { "form": "perplexes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "perpétuel": { "form": "perpétuel", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "perpétuelle": { "form": "perpétuelle", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "perpétuelles": { "form": "perpétuelles", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "perpétuels": { "form": "perpétuels", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "personnel": { "form": "personnel", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "personnelle": { "form": "personnelle", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "personnelles": { "form": "personnelles", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "personnels": { "form": "personnels", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "pesant": { "form": "pesant", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "pesante": { "form": "pesante", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "pesantes": { "form": "pesantes", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "pesants": { "form": "pesants", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "petiot": { "form": "petiot", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "petiote": { "form": "petiote", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "petiots": { "form": "petiots", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "petit": { "form": "petit", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "petite": { "form": "petite", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "petites": { "form": "petites", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "petits": { "form": "petits", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "peu": { "form": "peu", "pos": "RB", "polarity": "-0.05", "subjectivity": "0.50", "intensity": "0.5", "confidence": "0.9" }, "phosphorescent": { "form": "phosphorescent", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "phosphorescente": { "form": "phosphorescente", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "phosphorescentes": { "form": "phosphorescentes", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "phosphorescents": { "form": "phosphorescents", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "physique": { "form": "physique", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "physiques": { "form": "physiques", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "pieuse": { "form": "pieuse", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "pieuses": { "form": "pieuses", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "pieux": { "form": "pieux", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "pimenté": { "form": "pimenté", "pos": "JJ", "polarity": "-0.17", "subjectivity": "-0.35", "intensity": "1.0", "confidence": "0.7" }, "pimentée": { "form": "pimentée", "pos": "JJ", "polarity": "-0.17", "subjectivity": "-0.35", "intensity": "1.0", "confidence": "0.7" }, "pimentées": { "form": "pimentées", "pos": "JJ", "polarity": "-0.17", "subjectivity": "-0.35", "intensity": "1.0", "confidence": "0.7" }, "pimentés": { "form": "pimentés", "pos": "JJ", "polarity": "-0.17", "subjectivity": "-0.35", "intensity": "1.0", "confidence": "0.7" }, "piquant": { "form": "piquant", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "piquante": { "form": "piquante", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "piquantes": { "form": "piquantes", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "piquants": { "form": "piquants", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "pirate": { "form": "pirate", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "pirates": { "form": "pirates", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "pire": { "form": "pire", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "1.0" }, "pires": { "form": "pires", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "piteuse": { "form": "piteuse", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "piteuses": { "form": "piteuses", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "piteux": { "form": "piteux", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "pitoyable": { "form": "pitoyable", "pos": "JJ", "polarity": "-0.20", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "pitoyables": { "form": "pitoyables", "pos": "JJ", "polarity": "-0.20", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "plaisant": { "form": "plaisant", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.76", "intensity": "1.0", "confidence": "0.9" }, "plaisante": { "form": "plaisante", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.76", "intensity": "1.0", "confidence": "0.8" }, "plaisantes": { "form": "plaisantes", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.76", "intensity": "1.0", "confidence": "0.8" }, "plaisants": { "form": "plaisants", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.76", "intensity": "1.0", "confidence": "0.8" }, "plaisir": { "form": "plaisir", "pos": "NN", "polarity": "0.15", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "plaqué": { "form": "plaqué", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "plaquée": { "form": "plaquée", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "plaquées": { "form": "plaquées", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "plaqués": { "form": "plaqués", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "plastique": { "form": "plastique", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "plastiques": { "form": "plastiques", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "plat": { "form": "plat", "pos": "JJ", "polarity": "-0.28", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "plate": { "form": "plate", "pos": "JJ", "polarity": "-0.28", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "plates": { "form": "plates", "pos": "JJ", "polarity": "-0.28", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "platiné": { "form": "platiné", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.03", "intensity": "1.0", "confidence": "0.7" }, "platinée": { "form": "platinée", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.03", "intensity": "1.0", "confidence": "0.7" }, "platinées": { "form": "platinées", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.03", "intensity": "1.0", "confidence": "0.7" }, "platinés": { "form": "platinés", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.03", "intensity": "1.0", "confidence": "0.7" }, "plats": { "form": "plats", "pos": "JJ", "polarity": "-0.28", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "plein": { "form": "plein", "pos": "RB", "polarity": "0.25", "subjectivity": "0.35", "intensity": "2.0", "confidence": "0.9" }, "pleine": { "form": "pleine", "pos": "JJ", "polarity": "0.29", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "pleines": { "form": "pleines", "pos": "JJ", "polarity": "0.29", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "pleins": { "form": "pleins", "pos": "JJ", "polarity": "0.29", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "pleurer": { "form": "pleurer", "pos": "VB", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "plébéien": { "form": "plébéien", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "plébéienne": { "form": "plébéienne", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "plébéiennes": { "form": "plébéiennes", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "plébéiens": { "form": "plébéiens", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "plus": { "form": "plus", "pos": "RB", "polarity": "0.15", "subjectivity": "0.10", "intensity": "1.3", "confidence": "0.8" }, "pointu": { "form": "pointu", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "pointue": { "form": "pointue", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "pointues": { "form": "pointues", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "pointus": { "form": "pointus", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "poisseuse": { "form": "poisseuse", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "poisseuses": { "form": "poisseuses", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "poisseux": { "form": "poisseux", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "poli": { "form": "poli", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "polie": { "form": "polie", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "polies": { "form": "polies", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "polis": { "form": "polis", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "politique": { "form": "politique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "politiques": { "form": "politiques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "polonais": { "form": "polonais", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "polonaise": { "form": "polonaise", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "polonaises": { "form": "polonaises", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "pondéré": { "form": "pondéré", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "pondérée": { "form": "pondérée", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "pondérées": { "form": "pondérées", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "pondérés": { "form": "pondérés", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "populacier": { "form": "populacier", "pos": "JJ", "polarity": "-0.02", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "populacière": { "form": "populacière", "pos": "JJ", "polarity": "-0.02", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "populacières": { "form": "populacières", "pos": "JJ", "polarity": "-0.02", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "populaire": { "form": "populaire", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "populaires": { "form": "populaires", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "positif": { "form": "positif", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "positifs": { "form": "positifs", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "positive": { "form": "positive", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "positives": { "form": "positives", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "possible": { "form": "possible", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.30", "intensity": "1.0", "confidence": "1.0" }, "possibles": { "form": "possibles", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "possédant": { "form": "possédant", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.7" }, "possédante": { "form": "possédante", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.7" }, "postal": { "form": "postal", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "postale": { "form": "postale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "postales": { "form": "postales", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "postaux": { "form": "postaux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "postérieur": { "form": "postérieur", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "postérieure": { "form": "postérieure", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "postérieures": { "form": "postérieures", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "postérieurs": { "form": "postérieurs", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "posé": { "form": "posé", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "posée": { "form": "posée", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "posées": { "form": "posées", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "posés": { "form": "posés", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "poubelle": { "form": "poubelle", "pos": "NN", "polarity": "-0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "pourpre": { "form": "pourpre", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "pourpres": { "form": "pourpres", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "pourri": { "form": "pourri", "pos": "JJ", "polarity": "-0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "pourrie": { "form": "pourrie", "pos": "JJ", "polarity": "-0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "pourries": { "form": "pourries", "pos": "JJ", "polarity": "-0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "pourris": { "form": "pourris", "pos": "JJ", "polarity": "-0.80", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "poussiéreuse": { "form": "poussiéreuse", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "poussiéreuses": { "form": "poussiéreuses", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "poussiéreux": { "form": "poussiéreux", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "poétique": { "form": "poétique", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "poétiques": { "form": "poétiques", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "praticable": { "form": "praticable", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "praticables": { "form": "praticables", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "pratique": { "form": "pratique", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "pratiques": { "form": "pratiques", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "premier": { "form": "premier", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "premiers": { "form": "premiers", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "première": { "form": "première", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "premières": { "form": "premières", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "pressé": { "form": "pressé", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "pressée": { "form": "pressée", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "pressées": { "form": "pressées", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "pressés": { "form": "pressés", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "primitif": { "form": "primitif", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "primitifs": { "form": "primitifs", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "primitive": { "form": "primitive", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "primitives": { "form": "primitives", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "primordial": { "form": "primordial", "pos": "JJ", "polarity": "0.13", "subjectivity": "0.27", "intensity": "1.0", "confidence": "0.7" }, "primordiale": { "form": "primordiale", "pos": "JJ", "polarity": "0.13", "subjectivity": "0.27", "intensity": "1.0", "confidence": "0.7" }, "primordiales": { "form": "primordiales", "pos": "JJ", "polarity": "0.13", "subjectivity": "0.27", "intensity": "1.0", "confidence": "0.7" }, "primordiaux": { "form": "primordiaux", "pos": "JJ", "polarity": "0.13", "subjectivity": "0.27", "intensity": "1.0", "confidence": "0.7" }, "principal": { "form": "principal", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "principale": { "form": "principale", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "principales": { "form": "principales", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "principaux": { "form": "principaux", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "prisonnier": { "form": "prisonnier", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "prisonniers": { "form": "prisonniers", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "prisonnière": { "form": "prisonnière", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "prisonnières": { "form": "prisonnières", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "privilégié": { "form": "privilégié", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "privilégiée": { "form": "privilégiée", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "privilégiées": { "form": "privilégiées", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "privilégiés": { "form": "privilégiés", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "privé": { "form": "privé", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "privée": { "form": "privée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "privées": { "form": "privées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "privés": { "form": "privés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "probable": { "form": "probable", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "probablement": { "form": "probablement", "pos": "RB", "polarity": "0.00", "subjectivity": "0.60", "intensity": "0.5", "confidence": "0.9" }, "probables": { "form": "probables", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "probant": { "form": "probant", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "probante": { "form": "probante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "probantes": { "form": "probantes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "probants": { "form": "probants", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "prochain": { "form": "prochain", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "prochaine": { "form": "prochaine", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "prochaines": { "form": "prochaines", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "prochains": { "form": "prochains", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "proche": { "form": "proche", "pos": "JJ", "polarity": "0.32", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "proches": { "form": "proches", "pos": "JJ", "polarity": "0.32", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "prodigieuse": { "form": "prodigieuse", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "prodigieuses": { "form": "prodigieuses", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "prodigieux": { "form": "prodigieux", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "productif": { "form": "productif", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "productifs": { "form": "productifs", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "productive": { "form": "productive", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "productives": { "form": "productives", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "profane": { "form": "profane", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "profanes": { "form": "profanes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "professionnel": { "form": "professionnel", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "professionnelle": { "form": "professionnelle", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "professionnelles": { "form": "professionnelles", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "professionnels": { "form": "professionnels", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "profond": { "form": "profond", "pos": "JJ", "polarity": "0.26", "subjectivity": "0.30", "intensity": "1.0", "confidence": "1.0" }, "profonde": { "form": "profonde", "pos": "JJ", "polarity": "0.26", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "profondes": { "form": "profondes", "pos": "JJ", "polarity": "0.26", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "profonds": { "form": "profonds", "pos": "JJ", "polarity": "0.26", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "profondément": { "form": "profondément", "pos": "RB", "polarity": "0.20", "subjectivity": "0.70", "intensity": "2.0", "confidence": "0.9" }, "progressiste": { "form": "progressiste", "pos": "JJ", "polarity": "-0.11", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "progressistes": { "form": "progressistes", "pos": "JJ", "polarity": "-0.11", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "prolétarien": { "form": "prolétarien", "pos": "JJ", "polarity": "-0.30", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "prolétarienne": { "form": "prolétarienne", "pos": "JJ", "polarity": "-0.30", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "prolétariennes": { "form": "prolétariennes", "pos": "JJ", "polarity": "-0.30", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "prolétariens": { "form": "prolétariens", "pos": "JJ", "polarity": "-0.30", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "propice": { "form": "propice", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "propices": { "form": "propices", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "propre": { "form": "propre", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "propres": { "form": "propres", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "protestant": { "form": "protestant", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "protestante": { "form": "protestante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "protestantes": { "form": "protestantes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "protestants": { "form": "protestants", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "provisoire": { "form": "provisoire", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "provisoires": { "form": "provisoires", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "prudent": { "form": "prudent", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "prudente": { "form": "prudente", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "prudentes": { "form": "prudentes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "prudents": { "form": "prudents", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "prussien": { "form": "prussien", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "prussienne": { "form": "prussienne", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "prussiennes": { "form": "prussiennes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "prussiens": { "form": "prussiens", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "précaire": { "form": "précaire", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "précaires": { "form": "précaires", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "précieuse": { "form": "précieuse", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "précieuses": { "form": "précieuses", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "précieux": { "form": "précieux", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "précipité": { "form": "précipité", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.7" }, "précipitée": { "form": "précipitée", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.7" }, "précipitées": { "form": "précipitées", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.7" }, "précipités": { "form": "précipités", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.7" }, "précis": { "form": "précis", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.35", "intensity": "1.0", "confidence": "1.0" }, "précise": { "form": "précise", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.9" }, "précises": { "form": "précises", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.9" }, "précoce": { "form": "précoce", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "précoces": { "form": "précoces", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "précurseur": { "form": "précurseur", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "précurseurs": { "form": "précurseurs", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "précédent": { "form": "précédent", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "précédente": { "form": "précédente", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "précédentes": { "form": "précédentes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "précédents": { "form": "précédents", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "prédominant": { "form": "prédominant", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "prédominante": { "form": "prédominante", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "préexistant": { "form": "préexistant", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "préexistante": { "form": "préexistante", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "préexistants": { "form": "préexistants", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "préférable": { "form": "préférable", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.53", "intensity": "1.0", "confidence": "0.7" }, "préférables": { "form": "préférables", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.53", "intensity": "1.0", "confidence": "0.7" }, "préféré": { "form": "préféré", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "préférée": { "form": "préférée", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "préférées": { "form": "préférées", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "préférés": { "form": "préférés", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "prépondérant": { "form": "prépondérant", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "prépondérante": { "form": "prépondérante", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "prépondérants": { "form": "prépondérants", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "présent": { "form": "présent", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.15", "intensity": "1.0", "confidence": "1.0" }, "présente": { "form": "présente", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "présentes": { "form": "présentes", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "présents": { "form": "présents", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "prééminent": { "form": "prééminent", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "prééminente": { "form": "prééminente", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "prêt": { "form": "prêt", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.15", "intensity": "1.0", "confidence": "1.0" }, "prête": { "form": "prête", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "prêtes": { "form": "prêtes", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "prêts": { "form": "prêts", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "psychique": { "form": "psychique", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "psychiques": { "form": "psychiques", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "puant": { "form": "puant", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "puante": { "form": "puante", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "puantes": { "form": "puantes", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "puants": { "form": "puants", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "public": { "form": "public", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "publics": { "form": "publics", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "publique": { "form": "publique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "publiques": { "form": "publiques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "pubère": { "form": "pubère", "pos": "JJ", "polarity": "0.16", "subjectivity": "0.32", "intensity": "1.0", "confidence": "0.7" }, "pubères": { "form": "pubères", "pos": "JJ", "polarity": "0.16", "subjectivity": "0.32", "intensity": "1.0", "confidence": "0.7" }, "puissant": { "form": "puissant", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "1.0" }, "puissante": { "form": "puissante", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "puissantes": { "form": "puissantes", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "puissants": { "form": "puissants", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "punissable": { "form": "punissable", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "punissables": { "form": "punissables", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "pur": { "form": "pur", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "pure": { "form": "pure", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "pures": { "form": "pures", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "purs": { "form": "purs", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "puéril": { "form": "puéril", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "puérile": { "form": "puérile", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "puériles": { "form": "puériles", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "puérils": { "form": "puérils", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "pâle": { "form": "pâle", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.25", "intensity": "1.0", "confidence": "1.0" }, "pâles": { "form": "pâles", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "pâlichon": { "form": "pâlichon", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "pâlichonne": { "form": "pâlichonne", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "pâlichons": { "form": "pâlichons", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "pâteuse": { "form": "pâteuse", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "pâteuses": { "form": "pâteuses", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "pâteux": { "form": "pâteux", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "pète-sec": { "form": "pète-sec", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "pénible": { "form": "pénible", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "pénibles": { "form": "pénibles", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "pépite": { "form": "pépite", "pos": "NN", "polarity": "0.70", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "péremptoire": { "form": "péremptoire", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.29", "intensity": "1.0", "confidence": "0.7" }, "péremptoires": { "form": "péremptoires", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.29", "intensity": "1.0", "confidence": "0.7" }, "périmé": { "form": "périmé", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "périmée": { "form": "périmée", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "périmées": { "form": "périmées", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "périmés": { "form": "périmés", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "périssable": { "form": "périssable", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "périssables": { "form": "périssables", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "pétrifié": { "form": "pétrifié", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.16", "intensity": "1.0", "confidence": "0.7" }, "pétrifiée": { "form": "pétrifiée", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.16", "intensity": "1.0", "confidence": "0.7" }, "pétrifiées": { "form": "pétrifiées", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.16", "intensity": "1.0", "confidence": "0.7" }, "pétrifiés": { "form": "pétrifiés", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.16", "intensity": "1.0", "confidence": "0.7" }, "quadrangulaire": { "form": "quadrangulaire", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "quadrangulaires": { "form": "quadrangulaires", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "qualité": { "form": "qualité", "pos": "NN", "polarity": "0.40", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "quatrième": { "form": "quatrième", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "quelconque": { "form": "quelconque", "pos": "JJ", "polarity": "-0.15", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "quelconques": { "form": "quelconques", "pos": "JJ", "polarity": "-0.15", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "quotidien": { "form": "quotidien", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "quotidienne": { "form": "quotidienne", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "quotidiennes": { "form": "quotidiennes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "quotidiens": { "form": "quotidiens", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "raccourci": { "form": "raccourci", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "raccourcis": { "form": "raccourcis", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "radical": { "form": "radical", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "radicale": { "form": "radicale", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "radicales": { "form": "radicales", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "radicaux": { "form": "radicaux", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "radieuse": { "form": "radieuse", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "radieuses": { "form": "radieuses", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "radieux": { "form": "radieux", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.9" }, "raffiné": { "form": "raffiné", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "raffinée": { "form": "raffinée", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "raffinées": { "form": "raffinées", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "raffinés": { "form": "raffinés", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "raide": { "form": "raide", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "raides": { "form": "raides", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "raisonnable": { "form": "raisonnable", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "raisonnables": { "form": "raisonnables", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "ramollo": { "form": "ramollo", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "ramollos": { "form": "ramollos", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "rapide": { "form": "rapide", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "rapides": { "form": "rapides", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "raplapla": { "form": "raplapla", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "rare": { "form": "rare", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "rarement": { "form": "rarement", "pos": "RB", "polarity": "-0.05", "subjectivity": "0.50", "intensity": "0.5", "confidence": "0.9" }, "rares": { "form": "rares", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "rassasié": { "form": "rassasié", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "rassasiée": { "form": "rassasiée", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "rassasiées": { "form": "rassasiées", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "rassasiés": { "form": "rassasiés", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "rassurant": { "form": "rassurant", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "rassurante": { "form": "rassurante", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "rassurantes": { "form": "rassurantes", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "rassurants": { "form": "rassurants", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "raté": { "form": "raté", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "ratée": { "form": "ratée", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "ratées": { "form": "ratées", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "ratés": { "form": "ratés", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "rauque": { "form": "rauque", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "rauques": { "form": "rauques", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "ravissant": { "form": "ravissant", "pos": "JJ", "polarity": "0.90", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "ravissante": { "form": "ravissante", "pos": "JJ", "polarity": "0.90", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "ravissantes": { "form": "ravissantes", "pos": "JJ", "polarity": "0.90", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "ravissants": { "form": "ravissants", "pos": "JJ", "polarity": "0.90", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "recherché": { "form": "recherché", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "recherchée": { "form": "recherchée", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "recherchées": { "form": "recherchées", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "recherchés": { "form": "recherchés", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "recommande": { "form": "recommande", "pos": "VB", "polarity": "0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "recommandé": { "form": "recommandé", "pos": "VB", "polarity": "0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "recommandée": { "form": "recommandée", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "recommandées": { "form": "recommandées", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "recommandés": { "form": "recommandés", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "reconnu": { "form": "reconnu", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.29", "intensity": "1.0", "confidence": "0.7" }, "reconnue": { "form": "reconnue", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.29", "intensity": "1.0", "confidence": "0.7" }, "reconnues": { "form": "reconnues", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.29", "intensity": "1.0", "confidence": "0.7" }, "reconnus": { "form": "reconnus", "pos": "JJ", "polarity": "0.14", "subjectivity": "0.29", "intensity": "1.0", "confidence": "0.7" }, "rectangulaire": { "form": "rectangulaire", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "rectangulaires": { "form": "rectangulaires", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "rectiligne": { "form": "rectiligne", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "rectilignes": { "form": "rectilignes", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "reculé": { "form": "reculé", "pos": "JJ", "polarity": "-0.07", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "reculée": { "form": "reculée", "pos": "JJ", "polarity": "-0.07", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "reculées": { "form": "reculées", "pos": "JJ", "polarity": "-0.07", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "reculés": { "form": "reculés", "pos": "JJ", "polarity": "-0.07", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "redoublé": { "form": "redoublé", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "redoublée": { "form": "redoublée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "redoublées": { "form": "redoublées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "redoublés": { "form": "redoublés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "redoutable": { "form": "redoutable", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "redoutables": { "form": "redoutables", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "refroidi": { "form": "refroidi", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "refroidie": { "form": "refroidie", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "refroidies": { "form": "refroidies", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "refroidis": { "form": "refroidis", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.25", "intensity": "1.0", "confidence": "0.7" }, "relatif": { "form": "relatif", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "relatifs": { "form": "relatifs", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "relative": { "form": "relative", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "relatives": { "form": "relatives", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "relevé": { "form": "relevé", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "relevée": { "form": "relevée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "relevées": { "form": "relevées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "relevés": { "form": "relevés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "religieuse": { "form": "religieuse", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "religieuses": { "form": "religieuses", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "religieux": { "form": "religieux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "remarquable": { "form": "remarquable", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "remarquables": { "form": "remarquables", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "rempli": { "form": "rempli", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "remplie": { "form": "remplie", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "remplies": { "form": "remplies", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "remplis": { "form": "remplis", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "renversé": { "form": "renversé", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "renversée": { "form": "renversée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "renversées": { "form": "renversées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "renversés": { "form": "renversés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "responsable": { "form": "responsable", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "responsables": { "form": "responsables", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "ressemblant": { "form": "ressemblant", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "ressemblante": { "form": "ressemblante", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "ressemblantes": { "form": "ressemblantes", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "ressemblants": { "form": "ressemblants", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "riche": { "form": "riche", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.50", "intensity": "1.0", "confidence": "1.0" }, "riches": { "form": "riches", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "richesse": { "form": "richesse", "pos": "NN", "polarity": "0.40", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "ridicule": { "form": "ridicule", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.0", "confidence": "1.0" }, "ridicules": { "form": "ridicules", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.9" }, "rigide": { "form": "rigide", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "rigides": { "form": "rigides", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "rigoler": { "form": "rigoler", "pos": "VB", "polarity": "0.50", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "rigolé": { "form": "rigolé", "pos": "VB", "polarity": "0.50", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "rigoureuse": { "form": "rigoureuse", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "rigoureuses": { "form": "rigoureuses", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "rigoureux": { "form": "rigoureux", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "rire": { "form": "rire", "pos": "VB", "polarity": "0.50", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "robuste": { "form": "robuste", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "robustes": { "form": "robustes", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "rocheuse": { "form": "rocheuse", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "rocheuses": { "form": "rocheuses", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "rocheux": { "form": "rocheux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "romain": { "form": "romain", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "romaine": { "form": "romaine", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "romaines": { "form": "romaines", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "romains": { "form": "romains", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "romanesque": { "form": "romanesque", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "romanesques": { "form": "romanesques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "romantique": { "form": "romantique", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "romantiques": { "form": "romantiques", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "rond": { "form": "rond", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "ronde": { "form": "ronde", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "rondelet": { "form": "rondelet", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "rondelette": { "form": "rondelette", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "rondelettes": { "form": "rondelettes", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "rondes": { "form": "rondes", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "ronds": { "form": "ronds", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "rose": { "form": "rose", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "roses": { "form": "roses", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "rosâtre": { "form": "rosâtre", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.08", "intensity": "1.0", "confidence": "0.7" }, "rosâtres": { "form": "rosâtres", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.08", "intensity": "1.0", "confidence": "0.7" }, "roturier": { "form": "roturier", "pos": "JJ", "polarity": "-0.30", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "roturière": { "form": "roturière", "pos": "JJ", "polarity": "-0.30", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "rouge": { "form": "rouge", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "rouges": { "form": "rouges", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "roulant": { "form": "roulant", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "roulante": { "form": "roulante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "roulantes": { "form": "roulantes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "roulants": { "form": "roulants", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "rousse": { "form": "rousse", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "rousses": { "form": "rousses", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "roussâtre": { "form": "roussâtre", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "roussâtres": { "form": "roussâtres", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "roux": { "form": "roux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "royal": { "form": "royal", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "royale": { "form": "royale", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "royales": { "form": "royales", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "royaux": { "form": "royaux", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "rude": { "form": "rude", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.9" }, "rudes": { "form": "rudes", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.8" }, "ruineuse": { "form": "ruineuse", "pos": "JJ", "polarity": "-0.11", "subjectivity": "-0.21", "intensity": "1.0", "confidence": "0.7" }, "ruineuses": { "form": "ruineuses", "pos": "JJ", "polarity": "-0.11", "subjectivity": "-0.21", "intensity": "1.0", "confidence": "0.7" }, "ruineux": { "form": "ruineux", "pos": "JJ", "polarity": "-0.11", "subjectivity": "-0.21", "intensity": "1.0", "confidence": "0.7" }, "russe": { "form": "russe", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "russes": { "form": "russes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "rébarbatif": { "form": "rébarbatif", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "rébarbatifs": { "form": "rébarbatifs", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "rébarbative": { "form": "rébarbative", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "rébarbatives": { "form": "rébarbatives", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.7" }, "récent": { "form": "récent", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "récente": { "form": "récente", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "récentes": { "form": "récentes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "récents": { "form": "récents", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "réchauffé": { "form": "réchauffé", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "réchauffée": { "form": "réchauffée", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "réchauffées": { "form": "réchauffées", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "réchauffés": { "form": "réchauffés", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.7" }, "réduit": { "form": "réduit", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "réduite": { "form": "réduite", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "réduites": { "form": "réduites", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "réduits": { "form": "réduits", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "réel": { "form": "réel", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "réelle": { "form": "réelle", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "réelles": { "form": "réelles", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "réels": { "form": "réels", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "réfléchi": { "form": "réfléchi", "pos": "JJ", "polarity": "0.19", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "réfléchie": { "form": "réfléchie", "pos": "JJ", "polarity": "0.19", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "réfléchies": { "form": "réfléchies", "pos": "JJ", "polarity": "0.19", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "réfléchis": { "form": "réfléchis", "pos": "JJ", "polarity": "0.19", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "régal": { "form": "régal", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.9" }, "réglementaire": { "form": "réglementaire", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "réglementaires": { "form": "réglementaires", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "régulier": { "form": "régulier", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "réguliers": { "form": "réguliers", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "régulière": { "form": "régulière", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "régulières": { "form": "régulières", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "républicain": { "form": "républicain", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "républicaine": { "form": "républicaine", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "républicaines": { "form": "républicaines", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "républicains": { "form": "républicains", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "répugnant": { "form": "répugnant", "pos": "JJ", "polarity": "-0.70", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "répugnante": { "form": "répugnante", "pos": "JJ", "polarity": "-0.70", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "répugnantes": { "form": "répugnantes", "pos": "JJ", "polarity": "-0.70", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "répugnants": { "form": "répugnants", "pos": "JJ", "polarity": "-0.70", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "répété": { "form": "répété", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "répétée": { "form": "répétée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "répétées": { "form": "répétées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "répétés": { "form": "répétés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "réservé": { "form": "réservé", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "réservée": { "form": "réservée", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "réservées": { "form": "réservées", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "réservés": { "form": "réservés", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "résistant": { "form": "résistant", "pos": "JJ", "polarity": "-0.11", "subjectivity": "-0.21", "intensity": "1.0", "confidence": "0.7" }, "résistante": { "form": "résistante", "pos": "JJ", "polarity": "-0.11", "subjectivity": "-0.21", "intensity": "1.0", "confidence": "0.7" }, "résistantes": { "form": "résistantes", "pos": "JJ", "polarity": "-0.11", "subjectivity": "-0.21", "intensity": "1.0", "confidence": "0.7" }, "résistants": { "form": "résistants", "pos": "JJ", "polarity": "-0.11", "subjectivity": "-0.21", "intensity": "1.0", "confidence": "0.7" }, "résolu": { "form": "résolu", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "résolue": { "form": "résolue", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "résolues": { "form": "résolues", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "résolus": { "form": "résolus", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "rétroactif": { "form": "rétroactif", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "rétroactive": { "form": "rétroactive", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.7" }, "réussi": { "form": "réussi", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "réussie": { "form": "réussie", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "réussies": { "form": "réussies", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "réussis": { "form": "réussis", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "révolu": { "form": "révolu", "pos": "JJ", "polarity": "-0.16", "subjectivity": "-0.45", "intensity": "1.0", "confidence": "0.7" }, "révolue": { "form": "révolue", "pos": "JJ", "polarity": "-0.16", "subjectivity": "-0.45", "intensity": "1.0", "confidence": "0.7" }, "révolues": { "form": "révolues", "pos": "JJ", "polarity": "-0.16", "subjectivity": "-0.45", "intensity": "1.0", "confidence": "0.7" }, "révolus": { "form": "révolus", "pos": "JJ", "polarity": "-0.16", "subjectivity": "-0.45", "intensity": "1.0", "confidence": "0.7" }, "révolutionnaire": { "form": "révolutionnaire", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "révolutionnaires": { "form": "révolutionnaires", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "sacré": { "form": "sacré", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.35", "intensity": "1.0", "confidence": "1.0" }, "sacrée": { "form": "sacrée", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.9" }, "sacrées": { "form": "sacrées", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.9" }, "sacrés": { "form": "sacrés", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.9" }, "sage": { "form": "sage", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "sages": { "form": "sages", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "saignant": { "form": "saignant", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "saignante": { "form": "saignante", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "saignantes": { "form": "saignantes", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "saignants": { "form": "saignants", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "saillant": { "form": "saillant", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "saillante": { "form": "saillante", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "saillantes": { "form": "saillantes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "saillants": { "form": "saillants", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "sain": { "form": "sain", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "saine": { "form": "saine", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.8" }, "saines": { "form": "saines", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.8" }, "sains": { "form": "sains", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.8" }, "salaud": { "form": "salaud", "pos": "JJ", "polarity": "-0.80", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "salauds": { "form": "salauds", "pos": "JJ", "polarity": "-0.80", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "sale": { "form": "sale", "pos": "JJ", "polarity": "-0.35", "subjectivity": "0.70", "intensity": "1.0", "confidence": "1.0" }, "sales": { "form": "sales", "pos": "JJ", "polarity": "-0.35", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "salé": { "form": "salé", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "salée": { "form": "salée", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "salées": { "form": "salées", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "salés": { "form": "salés", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "sanglant": { "form": "sanglant", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "sanglante": { "form": "sanglante", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "sanglantes": { "form": "sanglantes", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "sanglants": { "form": "sanglants", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "sanguinolent": { "form": "sanguinolent", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "sanguinolente": { "form": "sanguinolente", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "sanguinolentes": { "form": "sanguinolentes", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "sanguinolents": { "form": "sanguinolents", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "saoul": { "form": "saoul", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "saoule": { "form": "saoule", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "saoules": { "form": "saoules", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "saouls": { "form": "saouls", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "sarrasin": { "form": "sarrasin", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "sarrasine": { "form": "sarrasine", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "sarrasines": { "form": "sarrasines", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "sarrasins": { "form": "sarrasins", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "satisfaisant": { "form": "satisfaisant", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.9" }, "satisfaisante": { "form": "satisfaisante", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "satisfaisantes": { "form": "satisfaisantes", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "satisfaisants": { "form": "satisfaisants", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "satisfait": { "form": "satisfait", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "satisfaite": { "form": "satisfaite", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "satisfaites": { "form": "satisfaites", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "satisfaits": { "form": "satisfaits", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "saumon": { "form": "saumon", "pos": "JJ", "polarity": "0.04", "subjectivity": "0.08", "intensity": "1.0", "confidence": "0.7" }, "saumâtre": { "form": "saumâtre", "pos": "JJ", "polarity": "-0.17", "subjectivity": "-0.35", "intensity": "1.0", "confidence": "0.7" }, "saumâtres": { "form": "saumâtres", "pos": "JJ", "polarity": "-0.17", "subjectivity": "-0.35", "intensity": "1.0", "confidence": "0.7" }, "sauvage": { "form": "sauvage", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "sauvages": { "form": "sauvages", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "savant": { "form": "savant", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "savante": { "form": "savante", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "savantes": { "form": "savantes", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "savants": { "form": "savants", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "scandaleuse": { "form": "scandaleuse", "pos": "JJ", "polarity": "-0.80", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "scandaleuses": { "form": "scandaleuses", "pos": "JJ", "polarity": "-0.80", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "scandaleux": { "form": "scandaleux", "pos": "JJ", "polarity": "-0.80", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "scolaire": { "form": "scolaire", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "scolaires": { "form": "scolaires", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "scrupuleuse": { "form": "scrupuleuse", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "scrupuleuses": { "form": "scrupuleuses", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "scrupuleux": { "form": "scrupuleux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "sculpté": { "form": "sculpté", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "sculptée": { "form": "sculptée", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "sculptées": { "form": "sculptées", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "sculptés": { "form": "sculptés", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "sec": { "form": "sec", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "second": { "form": "second", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "seconde": { "form": "seconde", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "secondes": { "form": "secondes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "seconds": { "form": "seconds", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "secret": { "form": "secret", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "secrets": { "form": "secrets", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "secrète": { "form": "secrète", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "secrètes": { "form": "secrètes", "pos": "JJ", "polarity": "0.08", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "secs": { "form": "secs", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "semblable": { "form": "semblable", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "semblables": { "form": "semblables", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "sensible": { "form": "sensible", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "sensibles": { "form": "sensibles", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "sensuel": { "form": "sensuel", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "sensuelle": { "form": "sensuelle", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "sensuelles": { "form": "sensuelles", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "sensuels": { "form": "sensuels", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "sentimental": { "form": "sentimental", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "sentimentale": { "form": "sentimentale", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "sentimentales": { "form": "sentimentales", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "sentimentaux": { "form": "sentimentaux", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "serein": { "form": "serein", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "sereine": { "form": "sereine", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "sereines": { "form": "sereines", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "sereins": { "form": "sereins", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "serré": { "form": "serré", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "serrée": { "form": "serrée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "serrées": { "form": "serrées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "serrés": { "form": "serrés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "seul": { "form": "seul", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "seule": { "form": "seule", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "seules": { "form": "seules", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "seuls": { "form": "seuls", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "sexuel": { "form": "sexuel", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "sexuelle": { "form": "sexuelle", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "sexuelles": { "form": "sexuelles", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "sexuels": { "form": "sexuels", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "si": { "form": "si", "pos": "RB", "polarity": "0.10", "subjectivity": "0.60", "intensity": "2.0", "confidence": "0.9" }, "silencieuse": { "form": "silencieuse", "pos": "JJ", "polarity": "0.06", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "silencieuses": { "form": "silencieuses", "pos": "JJ", "polarity": "0.06", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "silencieux": { "form": "silencieux", "pos": "JJ", "polarity": "0.06", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "simple": { "form": "simple", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "simplement": { "form": "simplement", "pos": "RB", "polarity": "0.20", "subjectivity": "0.35", "intensity": "2.0", "confidence": "0.9" }, "simples": { "form": "simples", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "simpliste": { "form": "simpliste", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "simplistes": { "form": "simplistes", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "sincère": { "form": "sincère", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "sincères": { "form": "sincères", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "singulier": { "form": "singulier", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "singuliers": { "form": "singuliers", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "singulière": { "form": "singulière", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "singulières": { "form": "singulières", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "sinistre": { "form": "sinistre", "pos": "JJ", "polarity": "-0.65", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.9" }, "sinistres": { "form": "sinistres", "pos": "JJ", "polarity": "-0.65", "subjectivity": "0.65", "intensity": "1.0", "confidence": "0.8" }, "sirupeuse": { "form": "sirupeuse", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "sirupeuses": { "form": "sirupeuses", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "sirupeux": { "form": "sirupeux", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "sixième": { "form": "sixième", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "sixièmes": { "form": "sixièmes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "social": { "form": "social", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "sociale": { "form": "sociale", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "sociales": { "form": "sociales", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "socialiste": { "form": "socialiste", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "socialistes": { "form": "socialistes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "sociaux": { "form": "sociaux", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "sociétal": { "form": "sociétal", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.7" }, "sociétale": { "form": "sociétale", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.7" }, "soi-disant": { "form": "soi-disant", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "soigneuse": { "form": "soigneuse", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.7" }, "soigneuses": { "form": "soigneuses", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.7" }, "soigneux": { "form": "soigneux", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.7" }, "soigné": { "form": "soigné", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "soignée": { "form": "soignée", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "soignées": { "form": "soignées", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "soignés": { "form": "soignés", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "soldatesque": { "form": "soldatesque", "pos": "JJ", "polarity": "-0.07", "subjectivity": "-0.13", "intensity": "1.0", "confidence": "0.7" }, "solennel": { "form": "solennel", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "solennelle": { "form": "solennelle", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "solennelles": { "form": "solennelles", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "solennels": { "form": "solennels", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "solide": { "form": "solide", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "solides": { "form": "solides", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "solitaire": { "form": "solitaire", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "solitaires": { "form": "solitaires", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "sombre": { "form": "sombre", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "sombres": { "form": "sombres", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "sommaire": { "form": "sommaire", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "sommaires": { "form": "sommaires", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "somptueuse": { "form": "somptueuse", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "somptueuses": { "form": "somptueuses", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "somptueux": { "form": "somptueux", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "sonore": { "form": "sonore", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "sonores": { "form": "sonores", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "sordide": { "form": "sordide", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.9" }, "sordides": { "form": "sordides", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.8" }, "soucieuse": { "form": "soucieuse", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.8" }, "soucieuses": { "form": "soucieuses", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.8" }, "soucieux": { "form": "soucieux", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.9" }, "soudain": { "form": "soudain", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "soudaine": { "form": "soudaine", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "soudaines": { "form": "soudaines", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "soudains": { "form": "soudains", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "soupir": { "form": "soupir", "pos": "VB", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "souple": { "form": "souple", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "souples": { "form": "souples", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "sourd": { "form": "sourd", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.25", "intensity": "1.0", "confidence": "1.0" }, "sourde": { "form": "sourde", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "sourdes": { "form": "sourdes", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "sourdingue": { "form": "sourdingue", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "sourdingues": { "form": "sourdingues", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "sourds": { "form": "sourds", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "souriant": { "form": "souriant", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "souriante": { "form": "souriante", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "souriantes": { "form": "souriantes", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "souriants": { "form": "souriants", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "sourire": { "form": "sourire", "pos": "VB", "polarity": "0.30", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "sournois": { "form": "sournois", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "sournoise": { "form": "sournoise", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "sournoises": { "form": "sournoises", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "souterrain": { "form": "souterrain", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "souterraine": { "form": "souterraine", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "souterraines": { "form": "souterraines", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "souterrains": { "form": "souterrains", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "souverain": { "form": "souverain", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "souveraine": { "form": "souveraine", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "souveraines": { "form": "souveraines", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "souverains": { "form": "souverains", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "soviétique": { "form": "soviétique", "pos": "JJ", "polarity": "-0.45", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "soviétiques": { "form": "soviétiques", "pos": "JJ", "polarity": "-0.45", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "soyeuse": { "form": "soyeuse", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "soyeuses": { "form": "soyeuses", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "soyeux": { "form": "soyeux", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "spacieuse": { "form": "spacieuse", "pos": "JJ", "polarity": "0.19", "subjectivity": "0.38", "intensity": "1.0", "confidence": "0.7" }, "spacieuses": { "form": "spacieuses", "pos": "JJ", "polarity": "0.19", "subjectivity": "0.38", "intensity": "1.0", "confidence": "0.7" }, "spacieux": { "form": "spacieux", "pos": "JJ", "polarity": "0.19", "subjectivity": "0.38", "intensity": "1.0", "confidence": "0.7" }, "spirituel": { "form": "spirituel", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "spirituelle": { "form": "spirituelle", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "spirituelles": { "form": "spirituelles", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "spirituels": { "form": "spirituels", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "splendide": { "form": "splendide", "pos": "JJ", "polarity": "0.80", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "splendides": { "form": "splendides", "pos": "JJ", "polarity": "0.80", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "spontané": { "form": "spontané", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.9" }, "spontanée": { "form": "spontanée", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "spontanées": { "form": "spontanées", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "spontanéité": { "form": "spontanéité", "pos": "NN", "polarity": "0.30", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "spontanés": { "form": "spontanés", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "sportif": { "form": "sportif", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "sportifs": { "form": "sportifs", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "sportive": { "form": "sportive", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "sportives": { "form": "sportives", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "spécial": { "form": "spécial", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "spéciale": { "form": "spéciale", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "spéciales": { "form": "spéciales", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "spéciaux": { "form": "spéciaux", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "spécifique": { "form": "spécifique", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "spécifiques": { "form": "spécifiques", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.15", "intensity": "1.0", "confidence": "0.7" }, "stable": { "form": "stable", "pos": "JJ", "polarity": "-0.01", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.7" }, "stables": { "form": "stables", "pos": "JJ", "polarity": "-0.01", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.7" }, "stratégique": { "form": "stratégique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "stratégiques": { "form": "stratégiques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "strict": { "form": "strict", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "stricte": { "form": "stricte", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "strictes": { "form": "strictes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "stricts": { "form": "stricts", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "stupide": { "form": "stupide", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "stupides": { "form": "stupides", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "stupéfait": { "form": "stupéfait", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.9" }, "stupéfaite": { "form": "stupéfaite", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "stupéfaites": { "form": "stupéfaites", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "stupéfaits": { "form": "stupéfaits", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.75", "intensity": "1.0", "confidence": "0.8" }, "stérile": { "form": "stérile", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "stériles": { "form": "stériles", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "subit": { "form": "subit", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "subite": { "form": "subite", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "subites": { "form": "subites", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "subits": { "form": "subits", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "subjectif": { "form": "subjectif", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "subjectifs": { "form": "subjectifs", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "subjective": { "form": "subjective", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "subjectives": { "form": "subjectives", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "sublime": { "form": "sublime", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "sublimes": { "form": "sublimes", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "subtil": { "form": "subtil", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "subtile": { "form": "subtile", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "subtiles": { "form": "subtiles", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "subtils": { "form": "subtils", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "successif": { "form": "successif", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "successifs": { "form": "successifs", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "successive": { "form": "successive", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "successives": { "form": "successives", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "suffisant": { "form": "suffisant", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "suffisante": { "form": "suffisante", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "suffisantes": { "form": "suffisantes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "suffisants": { "form": "suffisants", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "suisse": { "form": "suisse", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "suisses": { "form": "suisses", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "suissesse": { "form": "suissesse", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "suivant": { "form": "suivant", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "suivante": { "form": "suivante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "suivantes": { "form": "suivantes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "suivants": { "form": "suivants", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "suiveur": { "form": "suiveur", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "suiveurs": { "form": "suiveurs", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "suiveuse": { "form": "suiveuse", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "suiveuses": { "form": "suiveuses", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "super": { "form": "super", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "superbe": { "form": "superbe", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "superbes": { "form": "superbes", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "superflu": { "form": "superflu", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "superflue": { "form": "superflue", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "superflues": { "form": "superflues", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "superflus": { "form": "superflus", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "supplémentaire": { "form": "supplémentaire", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "supplémentaires": { "form": "supplémentaires", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "supranational": { "form": "supranational", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.7" }, "supranationales": { "form": "supranationales", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.7" }, "suprême": { "form": "suprême", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "suprêmes": { "form": "suprêmes", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "supérieur": { "form": "supérieur", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "supérieure": { "form": "supérieure", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "supérieures": { "form": "supérieures", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "supérieurs": { "form": "supérieurs", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "surprenant": { "form": "surprenant", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "surprenante": { "form": "surprenante", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "surprenantes": { "form": "surprenantes", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "surprenants": { "form": "surprenants", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "surpris": { "form": "surpris", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "surprise": { "form": "surprise", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "surprises": { "form": "surprises", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "susceptible": { "form": "susceptible", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.9" }, "susceptibles": { "form": "susceptibles", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.8" }, "suspect": { "form": "suspect", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.9" }, "suspecte": { "form": "suspecte", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.8" }, "suspectes": { "form": "suspectes", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.8" }, "suspects": { "form": "suspects", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.8" }, "suspendu": { "form": "suspendu", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "suspendue": { "form": "suspendue", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "suspendues": { "form": "suspendues", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "suspendus": { "form": "suspendus", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "symbolique": { "form": "symbolique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "symboliques": { "form": "symboliques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "sympa": { "form": "sympa", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "sympas": { "form": "sympas", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "sympathique": { "form": "sympathique", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "sympathiques": { "form": "sympathiques", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "sèche": { "form": "sèche", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "sèches": { "form": "sèches", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "sémite": { "form": "sémite", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "sémites": { "form": "sémites", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "sémitique": { "form": "sémitique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "sémitiques": { "form": "sémitiques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "séparé": { "form": "séparé", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "séparée": { "form": "séparée", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "séparées": { "form": "séparées", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "séparés": { "form": "séparés", "pos": "JJ", "polarity": "-0.08", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "sérieuse": { "form": "sérieuse", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.9" }, "sérieuses": { "form": "sérieuses", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.9" }, "sérieux": { "form": "sérieux", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.55", "intensity": "1.0", "confidence": "1.0" }, "sévère": { "form": "sévère", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "sévères": { "form": "sévères", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "sûr": { "form": "sûr", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "1.0" }, "sûre": { "form": "sûre", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "sûres": { "form": "sûres", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "sûrs": { "form": "sûrs", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "taciturne": { "form": "taciturne", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "taciturnes": { "form": "taciturnes", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "taillé": { "form": "taillé", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "taillée": { "form": "taillée", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "taillées": { "form": "taillées", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "taillés": { "form": "taillés", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "talent": { "form": "talent", "pos": "NN", "polarity": "0.30", "subjectivity": "0.05", "intensity": "1.0", "confidence": "0.9" }, "taraudant": { "form": "taraudant", "pos": "JJ", "polarity": "-0.28", "subjectivity": "-0.55", "intensity": "1.0", "confidence": "0.7" }, "tardif": { "form": "tardif", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.9" }, "tardifs": { "form": "tardifs", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "tardive": { "form": "tardive", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "tardives": { "form": "tardives", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.8" }, "technicien": { "form": "technicien", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "technicienne": { "form": "technicienne", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "techniciens": { "form": "techniciens", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "tellement": { "form": "tellement", "pos": "RB", "polarity": "0.00", "subjectivity": "0.60", "intensity": "0.5", "confidence": "0.9" }, "tenace": { "form": "tenace", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "tenaces": { "form": "tenaces", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "tendre": { "form": "tendre", "pos": "JJ", "polarity": "0.28", "subjectivity": "0.25", "intensity": "1.0", "confidence": "1.0" }, "tendres": { "form": "tendres", "pos": "JJ", "polarity": "0.28", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "tendu": { "form": "tendu", "pos": "JJ", "polarity": "-0.45", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.9" }, "tendue": { "form": "tendue", "pos": "JJ", "polarity": "-0.45", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.8" }, "tendues": { "form": "tendues", "pos": "JJ", "polarity": "-0.45", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.8" }, "tendus": { "form": "tendus", "pos": "JJ", "polarity": "-0.45", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.8" }, "tenu": { "form": "tenu", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "tenue": { "form": "tenue", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "tenues": { "form": "tenues", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "tenus": { "form": "tenus", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "terminal": { "form": "terminal", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.29", "intensity": "1.0", "confidence": "0.7" }, "terminale": { "form": "terminale", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.29", "intensity": "1.0", "confidence": "0.7" }, "terminales": { "form": "terminales", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.29", "intensity": "1.0", "confidence": "0.7" }, "terminaux": { "form": "terminaux", "pos": "JJ", "polarity": "-0.14", "subjectivity": "-0.29", "intensity": "1.0", "confidence": "0.7" }, "terne": { "form": "terne", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "ternes": { "form": "ternes", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "terrestre": { "form": "terrestre", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "terrestres": { "form": "terrestres", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "terrible": { "form": "terrible", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "1.0" }, "terriblement": { "form": "terriblement", "pos": "RB", "polarity": "-0.30", "subjectivity": "0.80", "intensity": "2.0", "confidence": "0.9" }, "terribles": { "form": "terribles", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "terrifiant": { "form": "terrifiant", "pos": "JJ", "polarity": "-0.70", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "terrifiante": { "form": "terrifiante", "pos": "JJ", "polarity": "-0.70", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "terrifiantes": { "form": "terrifiantes", "pos": "JJ", "polarity": "-0.70", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "terrifiants": { "form": "terrifiants", "pos": "JJ", "polarity": "-0.70", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "territorial": { "form": "territorial", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "territoriale": { "form": "territoriale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "territoriales": { "form": "territoriales", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "territoriaux": { "form": "territoriaux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "teuton": { "form": "teuton", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "teutonne": { "form": "teutonne", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "teutonnes": { "form": "teutonnes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "teutons": { "form": "teutons", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "théologique": { "form": "théologique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "théologiques": { "form": "théologiques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "théâtral": { "form": "théâtral", "pos": "JJ", "polarity": "-0.05", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "théâtrale": { "form": "théâtrale", "pos": "JJ", "polarity": "-0.05", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "théâtrales": { "form": "théâtrales", "pos": "JJ", "polarity": "-0.05", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "théâtraux": { "form": "théâtraux", "pos": "JJ", "polarity": "-0.05", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "timide": { "form": "timide", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "timides": { "form": "timides", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "tiède": { "form": "tiède", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "tièdes": { "form": "tièdes", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "tombé": { "form": "tombé", "pos": "JJ", "polarity": "-0.15", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "tombée": { "form": "tombée", "pos": "JJ", "polarity": "-0.15", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "tombées": { "form": "tombées", "pos": "JJ", "polarity": "-0.15", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "tombés": { "form": "tombés", "pos": "JJ", "polarity": "-0.15", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "tordu": { "form": "tordu", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "tordue": { "form": "tordue", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "tordues": { "form": "tordues", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "tordus": { "form": "tordus", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "total": { "form": "total", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "totale": { "form": "totale", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "totalement": { "form": "totalement", "pos": "RB", "polarity": "0.10", "subjectivity": "0.75", "intensity": "2.0", "confidence": "0.9" }, "totales": { "form": "totales", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "totaux": { "form": "totaux", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "touchant": { "form": "touchant", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "touchante": { "form": "touchante", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "touchantes": { "form": "touchantes", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "touchants": { "form": "touchants", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "tous": { "form": "tous", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "tout": { "form": "tout", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "toute": { "form": "toute", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "toutes": { "form": "toutes", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "traditionnel": { "form": "traditionnel", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "traditionnelle": { "form": "traditionnelle", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "traditionnelles": { "form": "traditionnelles", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "traditionnels": { "form": "traditionnels", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "tragique": { "form": "tragique", "pos": "JJ", "polarity": "-0.40", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "tragiques": { "form": "tragiques", "pos": "JJ", "polarity": "-0.40", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "tranquille": { "form": "tranquille", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "tranquilles": { "form": "tranquilles", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "transalpin": { "form": "transalpin", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "transalpines": { "form": "transalpines", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "transcendant": { "form": "transcendant", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.18", "intensity": "1.0", "confidence": "0.7" }, "transcendante": { "form": "transcendante", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.18", "intensity": "1.0", "confidence": "0.7" }, "transcendantes": { "form": "transcendantes", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.18", "intensity": "1.0", "confidence": "0.7" }, "transcendants": { "form": "transcendants", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.18", "intensity": "1.0", "confidence": "0.7" }, "transparent": { "form": "transparent", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "transparente": { "form": "transparente", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "transparentes": { "form": "transparentes", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "transparents": { "form": "transparents", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "tremblant": { "form": "tremblant", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "tremblante": { "form": "tremblante", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "tremblantes": { "form": "tremblantes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "tremblants": { "form": "tremblants", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "tremblotant": { "form": "tremblotant", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "tremblotante": { "form": "tremblotante", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "tremblotantes": { "form": "tremblotantes", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "tremblotants": { "form": "tremblotants", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "trempé": { "form": "trempé", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "trempée": { "form": "trempée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "trempées": { "form": "trempées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "trempés": { "form": "trempés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "tres": { "form": "tres", "pos": "RB", "polarity": "0.01", "subjectivity": "0.65", "intensity": "2.0", "confidence": "0.9" }, "tricolore": { "form": "tricolore", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "tricolores": { "form": "tricolores", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "triomphal": { "form": "triomphal", "pos": "JJ", "polarity": "0.60", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "triomphale": { "form": "triomphale", "pos": "JJ", "polarity": "0.60", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "triomphales": { "form": "triomphales", "pos": "JJ", "polarity": "0.60", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "triomphant": { "form": "triomphant", "pos": "JJ", "polarity": "0.90", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "triomphante": { "form": "triomphante", "pos": "JJ", "polarity": "0.90", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "triomphantes": { "form": "triomphantes", "pos": "JJ", "polarity": "0.90", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "triomphants": { "form": "triomphants", "pos": "JJ", "polarity": "0.90", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "triomphaux": { "form": "triomphaux", "pos": "JJ", "polarity": "0.60", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "triste": { "form": "triste", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "1.0" }, "tristes": { "form": "tristes", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "troisième": { "form": "troisième", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "troisièmes": { "form": "troisièmes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "trompeur": { "form": "trompeur", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "trompeurs": { "form": "trompeurs", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "trompeuse": { "form": "trompeuse", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "trompeuses": { "form": "trompeuses", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "trop": { "form": "trop", "pos": "RB", "polarity": "-0.25", "subjectivity": "0.70", "intensity": "0.5", "confidence": "0.9" }, "troublant": { "form": "troublant", "pos": "JJ", "polarity": "-0.30", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "troublante": { "form": "troublante", "pos": "JJ", "polarity": "-0.30", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "troublantes": { "form": "troublantes", "pos": "JJ", "polarity": "-0.30", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "troublants": { "form": "troublants", "pos": "JJ", "polarity": "-0.30", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "trouble": { "form": "trouble", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "troubles": { "form": "troubles", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "troublé": { "form": "troublé", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "troublée": { "form": "troublée", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "troublées": { "form": "troublées", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "troublés": { "form": "troublés", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "très": { "form": "très", "pos": "RB", "polarity": "0.01", "subjectivity": "0.65", "intensity": "2.0", "confidence": "0.9" }, "tudesque": { "form": "tudesque", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "tudesques": { "form": "tudesques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "turc": { "form": "turc", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "turcs": { "form": "turcs", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "turque": { "form": "turque", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "turques": { "form": "turques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "téléphonique": { "form": "téléphonique", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "téléphoniques": { "form": "téléphoniques", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "ténébreuse": { "form": "ténébreuse", "pos": "JJ", "polarity": "-0.16", "subjectivity": "-0.33", "intensity": "1.0", "confidence": "0.7" }, "ténébreuses": { "form": "ténébreuses", "pos": "JJ", "polarity": "-0.16", "subjectivity": "-0.33", "intensity": "1.0", "confidence": "0.7" }, "ténébreux": { "form": "ténébreux", "pos": "JJ", "polarity": "-0.16", "subjectivity": "-0.33", "intensity": "1.0", "confidence": "0.7" }, "térébrant": { "form": "térébrant", "pos": "JJ", "polarity": "-0.28", "subjectivity": "-0.55", "intensity": "1.0", "confidence": "0.7" }, "térébrants": { "form": "térébrants", "pos": "JJ", "polarity": "-0.28", "subjectivity": "-0.55", "intensity": "1.0", "confidence": "0.7" }, "ultime": { "form": "ultime", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "ultimes": { "form": "ultimes", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "ultramontain": { "form": "ultramontain", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "ultramontains": { "form": "ultramontains", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "ultérieur": { "form": "ultérieur", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "ultérieure": { "form": "ultérieure", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "ultérieures": { "form": "ultérieures", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "ultérieurs": { "form": "ultérieurs", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "uni": { "form": "uni", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "unie": { "form": "unie", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "unies": { "form": "unies", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "unique": { "form": "unique", "pos": "JJ", "polarity": "0.43", "subjectivity": "0.50", "intensity": "1.0", "confidence": "1.0" }, "uniques": { "form": "uniques", "pos": "JJ", "polarity": "0.43", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "unis": { "form": "unis", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "universel": { "form": "universel", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "universelle": { "form": "universelle", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "universelles": { "form": "universelles", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "universels": { "form": "universels", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "urgent": { "form": "urgent", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "urgente": { "form": "urgente", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "urgentes": { "form": "urgentes", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "urgents": { "form": "urgents", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "utile": { "form": "utile", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "utiles": { "form": "utiles", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "vacillant": { "form": "vacillant", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "vacillante": { "form": "vacillante", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "vacillantes": { "form": "vacillantes", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "vacillants": { "form": "vacillants", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "vague": { "form": "vague", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "1.0" }, "vagues": { "form": "vagues", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "vain": { "form": "vain", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.70", "intensity": "1.0", "confidence": "1.0" }, "vaine": { "form": "vaine", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "vaines": { "form": "vaines", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "vains": { "form": "vains", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "valable": { "form": "valable", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "valables": { "form": "valables", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "valétudinaire": { "form": "valétudinaire", "pos": "JJ", "polarity": "-0.18", "subjectivity": "-0.35", "intensity": "1.0", "confidence": "0.7" }, "vaporeuse": { "form": "vaporeuse", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.18", "intensity": "1.0", "confidence": "0.7" }, "vaporeuses": { "form": "vaporeuses", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.18", "intensity": "1.0", "confidence": "0.7" }, "vaporeux": { "form": "vaporeux", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.18", "intensity": "1.0", "confidence": "0.7" }, "vaste": { "form": "vaste", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "vastes": { "form": "vastes", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "verdâtre": { "form": "verdâtre", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "verdâtres": { "form": "verdâtres", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "vert": { "form": "vert", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "verte": { "form": "verte", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "vertes": { "form": "vertes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "vertical": { "form": "vertical", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "verticale": { "form": "verticale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "verticales": { "form": "verticales", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "verticaux": { "form": "verticaux", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "vertigineuse": { "form": "vertigineuse", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.8" }, "vertigineuses": { "form": "vertigineuses", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.8" }, "vertigineux": { "form": "vertigineux", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.25", "intensity": "1.0", "confidence": "0.9" }, "verts": { "form": "verts", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "vertueuse": { "form": "vertueuse", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "vertueuses": { "form": "vertueuses", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "vertueux": { "form": "vertueux", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.7" }, "victorieuse": { "form": "victorieuse", "pos": "JJ", "polarity": "0.80", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "victorieuses": { "form": "victorieuses", "pos": "JJ", "polarity": "0.80", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "victorieux": { "form": "victorieux", "pos": "JJ", "polarity": "0.80", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "vide": { "form": "vide", "pos": "JJ", "polarity": "-0.29", "subjectivity": "0.30", "intensity": "1.0", "confidence": "1.0" }, "vides": { "form": "vides", "pos": "JJ", "polarity": "-0.29", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "vieil": { "form": "vieil", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "vieille": { "form": "vieille", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "vieilles": { "form": "vieilles", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "vierge": { "form": "vierge", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "vierges": { "form": "vierges", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "vieux": { "form": "vieux", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.30", "intensity": "1.0", "confidence": "1.0" }, "vif": { "form": "vif", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.35", "intensity": "1.0", "confidence": "1.0" }, "vifs": { "form": "vifs", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.9" }, "vigilant": { "form": "vigilant", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "vigilante": { "form": "vigilante", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "vigilantes": { "form": "vigilantes", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "vigilants": { "form": "vigilants", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "vigoureuse": { "form": "vigoureuse", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "vigoureuses": { "form": "vigoureuses", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "vigoureux": { "form": "vigoureux", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "vilain": { "form": "vilain", "pos": "JJ", "polarity": "-0.60", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "vilaine": { "form": "vilaine", "pos": "JJ", "polarity": "-0.60", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "vilaines": { "form": "vilaines", "pos": "JJ", "polarity": "-0.60", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "vilains": { "form": "vilains", "pos": "JJ", "polarity": "-0.60", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "violent": { "form": "violent", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.80", "intensity": "1.0", "confidence": "1.0" }, "violente": { "form": "violente", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "violentes": { "form": "violentes", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "violents": { "form": "violents", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "violet": { "form": "violet", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "violets": { "form": "violets", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "violette": { "form": "violette", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "violettes": { "form": "violettes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "viril": { "form": "viril", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "virile": { "form": "virile", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "viriles": { "form": "viriles", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "virils": { "form": "virils", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "visible": { "form": "visible", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "visibles": { "form": "visibles", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "visqueuse": { "form": "visqueuse", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "visqueuses": { "form": "visqueuses", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "visqueux": { "form": "visqueux", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "vital": { "form": "vital", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "vitale": { "form": "vitale", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "vitales": { "form": "vitales", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "vitaux": { "form": "vitaux", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "vitré": { "form": "vitré", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "vitrée": { "form": "vitrée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "vitrées": { "form": "vitrées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "vitrés": { "form": "vitrés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "vivace": { "form": "vivace", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "vivaces": { "form": "vivaces", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.7" }, "vivant": { "form": "vivant", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "vivante": { "form": "vivante", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "vivantes": { "form": "vivantes", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "vivants": { "form": "vivants", "pos": "JJ", "polarity": "0.80", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "vive": { "form": "vive", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.9" }, "vives": { "form": "vives", "pos": "JJ", "polarity": "0.27", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.9" }, "voisin": { "form": "voisin", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "1.0" }, "voisine": { "form": "voisine", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "voisines": { "form": "voisines", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "voisins": { "form": "voisins", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "volant": { "form": "volant", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "volante": { "form": "volante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "volantes": { "form": "volantes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "volants": { "form": "volants", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "volontaire": { "form": "volontaire", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "volontaires": { "form": "volontaires", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "volonté": { "form": "volonté", "pos": "NN", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "voluptueuse": { "form": "voluptueuse", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "voluptueuses": { "form": "voluptueuses", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.8" }, "voluptueux": { "form": "voluptueux", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "vomir": { "form": "vomir", "pos": "VB", "polarity": "-0.20", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "voûté": { "form": "voûté", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "voûtée": { "form": "voûtée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "voûtées": { "form": "voûtées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "voûtés": { "form": "voûtés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "vrai": { "form": "vrai", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.40", "intensity": "1.0", "confidence": "1.0" }, "vraie": { "form": "vraie", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "vraies": { "form": "vraies", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "vraiment": { "form": "vraiment", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "2.0", "confidence": "0.9" }, "vrais": { "form": "vrais", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "vulgaire": { "form": "vulgaire", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.85", "intensity": "1.0", "confidence": "0.9" }, "vulgaires": { "form": "vulgaires", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.85", "intensity": "1.0", "confidence": "0.8" }, "vulnérable": { "form": "vulnérable", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "vulnérables": { "form": "vulnérables", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "véloce": { "form": "véloce", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.7" }, "véloces": { "form": "véloces", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.7" }, "véritable": { "form": "véritable", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.45", "intensity": "1.0", "confidence": "1.0" }, "véritables": { "form": "véritables", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.45", "intensity": "1.0", "confidence": "0.9" }, "vêtu": { "form": "vêtu", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "vêtue": { "form": "vêtue", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "vêtues": { "form": "vêtues", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "vêtus": { "form": "vêtus", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "waouh": { "form": "waouh", "pos": "UH", "polarity": "0.30", "subjectivity": "0.80", "intensity": "1.0", "confidence": "0.9" }, "âcre": { "form": "âcre", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "âcres": { "form": "âcres", "pos": "JJ", "polarity": "-0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "âpre": { "form": "âpre", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "âpres": { "form": "âpres", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "éblouissant": { "form": "éblouissant", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "éblouissante": { "form": "éblouissante", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "éblouissantes": { "form": "éblouissantes", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "éblouissants": { "form": "éblouissants", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "ébouriffant": { "form": "ébouriffant", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "ébouriffante": { "form": "ébouriffante", "pos": "JJ", "polarity": "0.45", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.7" }, "écarlate": { "form": "écarlate", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.01", "intensity": "1.0", "confidence": "0.7" }, "écarlates": { "form": "écarlates", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.01", "intensity": "1.0", "confidence": "0.7" }, "écarté": { "form": "écarté", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "écartée": { "form": "écartée", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "écartées": { "form": "écartées", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "écartés": { "form": "écartés", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "éclairé": { "form": "éclairé", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "éclairée": { "form": "éclairée", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "éclairées": { "form": "éclairées", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "éclairés": { "form": "éclairés", "pos": "JJ", "polarity": "0.60", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "éclatant": { "form": "éclatant", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "éclatante": { "form": "éclatante", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "éclatantes": { "form": "éclatantes", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "éclatants": { "form": "éclatants", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "écoeurant": { "form": "écoeurant", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "écoeurante": { "form": "écoeurante", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "écoeurantes": { "form": "écoeurantes", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "écoeurants": { "form": "écoeurants", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.7" }, "économique": { "form": "économique", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "économiques": { "form": "économiques", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.8" }, "écrasé": { "form": "écrasé", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "écrasée": { "form": "écrasée", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "écrasées": { "form": "écrasées", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "écrasés": { "form": "écrasés", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.8" }, "édifiant": { "form": "édifiant", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "édifiante": { "form": "édifiante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "édifiantes": { "form": "édifiantes", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "édifiants": { "form": "édifiants", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "égal": { "form": "égal", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "égale": { "form": "égale", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "également": { "form": "également", "pos": "RB", "polarity": "0.20", "subjectivity": "0.35", "intensity": "2.0", "confidence": "0.9" }, "égales": { "form": "égales", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "égaré": { "form": "égaré", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "égarée": { "form": "égarée", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "égarées": { "form": "égarées", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "égarés": { "form": "égarés", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "égaux": { "form": "égaux", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "égoïste": { "form": "égoïste", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "égoïstes": { "form": "égoïstes", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "élancé": { "form": "élancé", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "élancée": { "form": "élancée", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "élancées": { "form": "élancées", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "élancés": { "form": "élancés", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "élastique": { "form": "élastique", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "élastiques": { "form": "élastiques", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "électrique": { "form": "électrique", "pos": "JJ", "polarity": "-0.15", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "électriques": { "form": "électriques", "pos": "JJ", "polarity": "-0.15", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "éloigné": { "form": "éloigné", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "éloignée": { "form": "éloignée", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "éloignées": { "form": "éloignées", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "éloignés": { "form": "éloignés", "pos": "JJ", "polarity": "-0.05", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "élégant": { "form": "élégant", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "élégante": { "form": "élégante", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "élégantes": { "form": "élégantes", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "élégants": { "form": "élégants", "pos": "JJ", "polarity": "0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "élémentaire": { "form": "élémentaire", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "élémentaires": { "form": "élémentaires", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "éléphantesque": { "form": "éléphantesque", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "éléphantesques": { "form": "éléphantesques", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "émeraude": { "form": "émeraude", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "éminent": { "form": "éminent", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.7" }, "éminente": { "form": "éminente", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.7" }, "éminentes": { "form": "éminentes", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.7" }, "éminents": { "form": "éminents", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.15", "intensity": "1.0", "confidence": "0.7" }, "émotion": { "form": "émotion", "pos": "NN", "polarity": "0.40", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "émotions": { "form": "émotions", "pos": "NN", "polarity": "0.40", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.9" }, "émoussé": { "form": "émoussé", "pos": "JJ", "polarity": "-0.30", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "émoussée": { "form": "émoussée", "pos": "JJ", "polarity": "-0.30", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "émoussées": { "form": "émoussées", "pos": "JJ", "polarity": "-0.30", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "émoussés": { "form": "émoussés", "pos": "JJ", "polarity": "-0.30", "subjectivity": "-0.60", "intensity": "1.0", "confidence": "0.7" }, "émouvant": { "form": "émouvant", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "émouvante": { "form": "émouvante", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "émouvantes": { "form": "émouvantes", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "émouvants": { "form": "émouvants", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.8" }, "ému": { "form": "ému", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.9" }, "émue": { "form": "émue", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.8" }, "émues": { "form": "émues", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.8" }, "émus": { "form": "émus", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.35", "intensity": "1.0", "confidence": "0.8" }, "éméché": { "form": "éméché", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "éméchée": { "form": "éméchée", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "éméchées": { "form": "éméchées", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "éméchés": { "form": "éméchés", "pos": "JJ", "polarity": "-0.25", "subjectivity": "-0.50", "intensity": "1.0", "confidence": "0.7" }, "énigmatique": { "form": "énigmatique", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.9" }, "énigmatiques": { "form": "énigmatiques", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.90", "intensity": "1.0", "confidence": "0.8" }, "énorme": { "form": "énorme", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.60", "intensity": "1.0", "confidence": "1.0" }, "énormes": { "form": "énormes", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.9" }, "épais": { "form": "épais", "pos": "JJ", "polarity": "0.06", "subjectivity": "0.10", "intensity": "1.0", "confidence": "1.0" }, "épaisse": { "form": "épaisse", "pos": "JJ", "polarity": "0.06", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "épaisses": { "form": "épaisses", "pos": "JJ", "polarity": "0.06", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "épanoui": { "form": "épanoui", "pos": "JJ", "polarity": "0.28", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.7" }, "épanouie": { "form": "épanouie", "pos": "JJ", "polarity": "0.28", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.7" }, "épanouies": { "form": "épanouies", "pos": "JJ", "polarity": "0.28", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.7" }, "épanouis": { "form": "épanouis", "pos": "JJ", "polarity": "0.28", "subjectivity": "0.55", "intensity": "1.0", "confidence": "0.7" }, "épars": { "form": "épars", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "éparse": { "form": "éparse", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "éparses": { "form": "éparses", "pos": "JJ", "polarity": "-0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "épatant": { "form": "épatant", "pos": "JJ", "polarity": "0.43", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.7" }, "épatante": { "form": "épatante", "pos": "JJ", "polarity": "0.43", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.7" }, "épatantes": { "form": "épatantes", "pos": "JJ", "polarity": "0.43", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.7" }, "épatants": { "form": "épatants", "pos": "JJ", "polarity": "0.43", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.7" }, "éphémère": { "form": "éphémère", "pos": "JJ", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "éphémères": { "form": "éphémères", "pos": "JJ", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "épouvantable": { "form": "épouvantable", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.9" }, "épouvantables": { "form": "épouvantables", "pos": "JJ", "polarity": "-0.70", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.8" }, "éprouvé": { "form": "éprouvé", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "éprouvée": { "form": "éprouvée", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "éprouvées": { "form": "éprouvées", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "éprouvés": { "form": "éprouvés", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.60", "intensity": "1.0", "confidence": "0.7" }, "épuisé": { "form": "épuisé", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "épuisée": { "form": "épuisée", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "épuisées": { "form": "épuisées", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "épuisés": { "form": "épuisés", "pos": "JJ", "polarity": "-0.60", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "équilibré": { "form": "équilibré", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "équilibrée": { "form": "équilibrée", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "équilibrées": { "form": "équilibrées", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "équilibrés": { "form": "équilibrés", "pos": "JJ", "polarity": "0.15", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.7" }, "équipé": { "form": "équipé", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "équipés": { "form": "équipés", "pos": "JJ", "polarity": "-0.10", "subjectivity": "-0.20", "intensity": "1.0", "confidence": "0.7" }, "équitable": { "form": "équitable", "pos": "JJ", "polarity": "0.11", "subjectivity": "0.22", "intensity": "1.0", "confidence": "0.7" }, "équitables": { "form": "équitables", "pos": "JJ", "polarity": "0.11", "subjectivity": "0.22", "intensity": "1.0", "confidence": "0.7" }, "équivalent": { "form": "équivalent", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "équivalente": { "form": "équivalente", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "équivalentes": { "form": "équivalentes", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "équivalents": { "form": "équivalents", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.0", "confidence": "0.7" }, "équivoque": { "form": "équivoque", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "équivoques": { "form": "équivoques", "pos": "JJ", "polarity": "-0.12", "subjectivity": "-0.10", "intensity": "1.0", "confidence": "0.7" }, "érotique": { "form": "érotique", "pos": "JJ", "polarity": "0.20", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.9" }, "érotiques": { "form": "érotiques", "pos": "JJ", "polarity": "0.20", "subjectivity": "1.00", "intensity": "1.0", "confidence": "0.8" }, "ésotérique": { "form": "ésotérique", "pos": "JJ", "polarity": "0.18", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.7" }, "ésotériques": { "form": "ésotériques", "pos": "JJ", "polarity": "0.18", "subjectivity": "0.70", "intensity": "1.0", "confidence": "0.7" }, "éteint": { "form": "éteint", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "éteinte": { "form": "éteinte", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "éteintes": { "form": "éteintes", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "éteints": { "form": "éteints", "pos": "JJ", "polarity": "-0.40", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.8" }, "étendu": { "form": "étendu", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.38", "intensity": "1.0", "confidence": "0.7" }, "étendus": { "form": "étendus", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.38", "intensity": "1.0", "confidence": "0.7" }, "éternel": { "form": "éternel", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "1.0" }, "éternelle": { "form": "éternelle", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "éternelles": { "form": "éternelles", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "éternels": { "form": "éternels", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.50", "intensity": "1.0", "confidence": "0.9" }, "éthéré": { "form": "éthéré", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.18", "intensity": "1.0", "confidence": "0.7" }, "éthérée": { "form": "éthérée", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.18", "intensity": "1.0", "confidence": "0.7" }, "éthérées": { "form": "éthérées", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.18", "intensity": "1.0", "confidence": "0.7" }, "éthérés": { "form": "éthérés", "pos": "JJ", "polarity": "0.09", "subjectivity": "0.18", "intensity": "1.0", "confidence": "0.7" }, "étincelant": { "form": "étincelant", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "étincelante": { "form": "étincelante", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "étincelantes": { "form": "étincelantes", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "étincelants": { "form": "étincelants", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.8" }, "étonnant": { "form": "étonnant", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "étonnante": { "form": "étonnante", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "étonnantes": { "form": "étonnantes", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "étonnants": { "form": "étonnants", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "étonné": { "form": "étonné", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.9" }, "étonnée": { "form": "étonnée", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "étonnées": { "form": "étonnées", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "étonnés": { "form": "étonnés", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.0", "confidence": "0.8" }, "étrange": { "form": "étrange", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "étranger": { "form": "étranger", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "1.0" }, "étrangers": { "form": "étrangers", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "étranges": { "form": "étranges", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "étrangère": { "form": "étrangère", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "étrangères": { "form": "étrangères", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.30", "intensity": "1.0", "confidence": "0.9" }, "étriqué": { "form": "étriqué", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "étriquée": { "form": "étriquée", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "étriquées": { "form": "étriquées", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "étriqués": { "form": "étriqués", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.7" }, "étroit": { "form": "étroit", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.20", "intensity": "1.0", "confidence": "1.0" }, "étroite": { "form": "étroite", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "étroites": { "form": "étroites", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "étroits": { "form": "étroits", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.20", "intensity": "1.0", "confidence": "0.9" }, "évacué": { "form": "évacué", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "évacuée": { "form": "évacuée", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "évacuées": { "form": "évacuées", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "évacués": { "form": "évacués", "pos": "JJ", "polarity": "-0.15", "subjectivity": "-0.30", "intensity": "1.0", "confidence": "0.7" }, "évanoui": { "form": "évanoui", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.07", "intensity": "1.0", "confidence": "0.7" }, "évanouie": { "form": "évanouie", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.07", "intensity": "1.0", "confidence": "0.7" }, "évanouies": { "form": "évanouies", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.07", "intensity": "1.0", "confidence": "0.7" }, "évanouis": { "form": "évanouis", "pos": "JJ", "polarity": "-0.03", "subjectivity": "-0.07", "intensity": "1.0", "confidence": "0.7" }, "évasif": { "form": "évasif", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "évasifs": { "form": "évasifs", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "évasive": { "form": "évasive", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "évasives": { "form": "évasives", "pos": "JJ", "polarity": "-0.20", "subjectivity": "-0.40", "intensity": "1.0", "confidence": "0.7" }, "éventuel": { "form": "éventuel", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "éventuelle": { "form": "éventuelle", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "éventuelles": { "form": "éventuelles", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "éventuels": { "form": "éventuels", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "évidemment": { "form": "évidemment", "pos": "RB", "polarity": "0.20", "subjectivity": "0.40", "intensity": "2.0", "confidence": "0.9" }, "évident": { "form": "évident", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.9" }, "évidente": { "form": "évidente", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "évidentes": { "form": "évidentes", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" }, "évidents": { "form": "évidents", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.0", "confidence": "0.8" } } ================================================ FILE: lib/natural/sentiment/Galician/senticon_gl.json ================================================ { "adecuado": { "pos": "a", "pol": "0.675", "std": "0.105" }, "agarimoso": { "pos": "a", "pol": "0.75", "std": "0.088" }, "agradable": { "pos": "a", "pol": "0.609", "std": "0.2" }, "agradecemento": { "pos": "n", "pol": "0.563", "std": "0.265" }, "agradábel": { "pos": "a", "pol": "0.607", "std": "0.217" }, "alegrar": { "pos": "v", "pol": "0.625", "std": "0.177" }, "alegre": { "pos": "a", "pol": "0.813", "std": "0.123" }, "alegría": { "pos": "n", "pol": "0.563", "std": "0.088" }, "apropiado": { "pos": "a", "pol": "0.719", "std": "0.102" }, "bo": { "pos": "a", "pol": "0.75", "std": "0.205" }, "cariñoso": { "pos": "a", "pol": "0.5", "std": "0.161" }, "compracencia": { "pos": "n", "pol": "0.563", "std": "0.088" }, "correcto": { "pos": "a", "pol": "0.531", "std": "0.239" }, "cómodo": { "pos": "a", "pol": "0.375", "std": "0.217" }, "directo": { "pos": "a", "pol": "0.25", "std": "0.188" }, "divertido": { "pos": "a", "pol": "0.594", "std": "0.063" }, "euforia": { "pos": "n", "pol": "0.688", "std": "0.177" }, "eufórico": { "pos": "a", "pol": "0.938", "std": "0.088" }, "favorable": { "pos": "a", "pol": "0.679", "std": "0.197" }, "favorábel": { "pos": "a", "pol": "0.679", "std": "0.197" }, "feliz": { "pos": "a", "pol": "0.781", "std": "0.125" }, "gustar": { "pos": "v", "pol": "0.625", "std": "0.306" }, "positivo": { "pos": "a", "pol": "0.521", "std": "0.246" }, "saudable": { "pos": "a", "pol": "0.667", "std": "0.177" }, "saudábel": { "pos": "a", "pol": "0.719", "std": "0.213" }, "superior": { "pos": "a", "pol": "0.35", "std": "0.347" }, "tranquilo": { "pos": "a", "pol": "0.25", "std": "0.175" }, "alarmante": { "pos": "a", "pol": "-0.625", "std": "0.063" }, "arrepentimento": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "arrepiante": { "pos": "a", "pol": "-0.575", "std": "0.143" }, "desacougante": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "desagradable": { "pos": "a", "pol": "-0.5", "std": "0.159" }, "desagradar": { "pos": "v", "pol": "-0.625", "std": "0.088" }, "desagradábel": { "pos": "a", "pol": "-0.5", "std": "0.159" }, "desanimar": { "pos": "v", "pol": "-0.25", "std": "0.177" }, "desconcertante": { "pos": "a", "pol": "-0.5", "std": "0.12" }, "inadecuado": { "pos": "a", "pol": "-0.321", "std": "0.142" }, "inapropiado": { "pos": "a", "pol": "-0.344", "std": "0.161" }, "infeliz": { "pos": "a", "pol": "-0.437", "std": "0.102" }, "inseguro": { "pos": "a", "pol": "-0.297", "std": "0.182" }, "medo": { "pos": "n", "pol": "-0.25", "std": "0.144" }, "medroso": { "pos": "a", "pol": "-0.312", "std": "0.063" }, "molesto": { "pos": "a", "pol": "-0.875", "std": "0.088" }, "noxo": { "pos": "n", "pol": "-0.5", "std": "0.177" }, "odio": { "pos": "n", "pol": "-0.5", "std": "0.177" }, "preocupar": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "terrible": { "pos": "a", "pol": "-0.65", "std": "0.105" }, "terríbel": { "pos": "a", "pol": "-0.719", "std": "0.102" }, "triste": { "pos": "a", "pol": "-0.675", "std": "0.137" }, "adepto": { "pos": "a", "pol": "1.0", "std": "0.0" }, "afectivo": { "pos": "a", "pol": "0.875", "std": "0.0" }, "afecto": { "pos": "n", "pol": "0.313", "std": "0.265" }, "afectuoso": { "pos": "a", "pol": "0.625", "std": "0.0" }, "afortunado": { "pos": "a", "pol": "0.688", "std": "0.177" }, "afoutar": { "pos": "v", "pol": "0.313", "std": "0.177" }, "agarimo": { "pos": "n", "pol": "0.375", "std": "0.177" }, "agradar": { "pos": "v", "pol": "0.75", "std": "0.0" }, "agradecido": { "pos": "a", "pol": "0.5", "std": "0.0" }, "agrado": { "pos": "n", "pol": "0.875", "std": "0.0" }, "aledar": { "pos": "v", "pol": "0.75", "std": "0.0" }, "alentador": { "pos": "a", "pol": "0.563", "std": "0.0" }, "amar": { "pos": "v", "pol": "1.0", "std": "0.0" }, "amatorio": { "pos": "a", "pol": "0.25", "std": "0.0" }, "amor": { "pos": "n", "pol": "0.438", "std": "0.354" }, "amoroso": { "pos": "a", "pol": "0.625", "std": "0.0" }, "animar": { "pos": "v", "pol": "0.375", "std": "0.144" }, "aprecio": { "pos": "n", "pol": "0.625", "std": "0.0" }, "autocompracencia": { "pos": "n", "pol": "0.625", "std": "0.0" }, "benfeitor": { "pos": "a", "pol": "0.875", "std": "0.0" }, "benéfico": { "pos": "a", "pol": "0.875", "std": "0.0" }, "cariño": { "pos": "n", "pol": "0.625", "std": "0.0" }, "cativador": { "pos": "a", "pol": "0.688", "std": "0.177" }, "celoso": { "pos": "a", "pol": "0.75", "std": "0.0" }, "complacer": { "pos": "v", "pol": "1.0", "std": "0.0" }, "compraced": { "pos": "v", "pol": "0.75", "std": "0.0" }, "compracente": { "pos": "a", "pol": "0.875", "std": "0.0" }, "confortar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "consolar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "contentar": { "pos": "v", "pol": "0.75", "std": "0.0" }, "contento": { "pos": "a", "pol": "0.792", "std": "0.144" }, "deleite": { "pos": "n", "pol": "1.0", "std": "0.0" }, "divertir": { "pos": "v", "pol": "0.5", "std": "0.0" }, "emocionante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "encantador": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "entusiasmado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "entusiasta": { "pos": "a", "pol": "0.375", "std": "0.0" }, "esperanzador": { "pos": "a", "pol": "0.5", "std": "0.0" }, "estima": { "pos": "n", "pol": "0.625", "std": "0.0" }, "excelente": { "pos": "a", "pol": "0.813", "std": "0.088" }, "experto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "exultante": { "pos": "a", "pol": "0.625", "std": "0.0" }, "felicidade": { "pos": "n", "pol": "0.563", "std": "0.354" }, "fervoroso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fraternal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fraterno": { "pos": "a", "pol": "0.375", "std": "0.0" }, "garimoso": { "pos": "a", "pol": "0.875", "std": "0.0" }, "gracioso": { "pos": "a", "pol": "0.563", "std": "0.088" }, "gratitude": { "pos": "n", "pol": "0.75", "std": "0.0" }, "grato": { "pos": "a", "pol": "0.25", "std": "0.177" }, "hilaridade": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ledicia": { "pos": "n", "pol": "0.375", "std": "0.072" }, "ledo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "optimista": { "pos": "n", "pol": "0.625", "std": "0.0" }, "pracenteiro": { "pos": "a", "pol": "0.583", "std": "0.315" }, "querer": { "pos": "v", "pol": "0.5", "std": "0.53" }, "satisfacción": { "pos": "n", "pol": "0.5", "std": "0.0" }, "satisfacer": { "pos": "v", "pol": "1.0", "std": "0.0" }, "satisfactorio": { "pos": "a", "pol": "0.625", "std": "0.177" }, "satisfeito": { "pos": "a", "pol": "0.708", "std": "0.0" }, "sentimento": { "pos": "n", "pol": "0.375", "std": "0.177" }, "sosego": { "pos": "n", "pol": "0.313", "std": "0.0" }, "ter cariño": { "pos": "v", "pol": "0.375", "std": "0.0" }, "tranquilizador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "xovial": { "pos": "a", "pol": "0.625", "std": "0.315" }, "xovialidade": { "pos": "n", "pol": "0.5", "std": "0.0" }, "a destempo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "abater": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "abatido": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "abourado": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "aflixido": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "angustia": { "pos": "n", "pol": "-0.812", "std": "0.0" }, "angustiado": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "animosidade": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "anoxado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "apoucado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "arrepentido": { "pos": "a", "pol": "-0.292", "std": "0.144" }, "arrepío": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aterrado": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "aterrador": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "atribulado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "autocompaixón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "avergonzado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "avergoñado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "axitación": { "pos": "n", "pol": "-0.333", "std": "0.144" }, "cheo de frustación": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "consternación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "contrición": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "contrito": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "cínico": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "decepcionado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "degradar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "deprimente": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "desacougar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "desafortunado": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "desalentado": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "desalentar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "desalento": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desapracible": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "desapracíbel": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "desaprobación": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "desconfiado": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "descontento": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "desesperado": { "pos": "a", "pol": "-0.375", "std": "0.191" }, "desgustado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "desgustar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "desgusto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disfórico": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "disuadir": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "doente": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "doloroso": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "enfurruñar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "enlouquecido": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "errado": { "pos": "a", "pol": "-0.5", "std": "0.088" }, "espanto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espantoso": { "pos": "a", "pol": "-0.25", "std": "0.382" }, "horrendo": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "horrible": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "horror": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "horríbel": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "humillante": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "ignominioso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "impaciente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "indignado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inimigo": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inquietante": { "pos": "a", "pol": "-0.687", "std": "0.088" }, "inquietar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "inquietarse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "irritable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "irritado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "irritábel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "lúgubre": { "pos": "a", "pol": "-0.75", "std": "0.177" }, "magoado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "medorento": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "misantropía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "misoxinia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "non prometedor": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "odioso": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "pavor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pavoroso": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "penitente": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "porse de morros": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "preocuparse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "presentimento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "punxente": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "queixoso": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "rabiado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "rabioso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "rancor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rancoroso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "remiso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "remordemento": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "remorso": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "repulsión": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "resentido": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "resentimento": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "reserva": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "revulsión": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "ruín": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "tedioso": { "pos": "a", "pol": "-0.562", "std": "0.265" }, "temer": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "temible": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "temíbel": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "tenebroso": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "ter medo": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "ter vergoña": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "terror": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "terrorífico": { "pos": "a", "pol": "-0.562", "std": "0.0" }, "timidez": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "tremendo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "turbador": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "vergoña": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vergoñento": { "pos": "a", "pol": "-0.333", "std": "0.26" }, "xenreira": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "abundancia": { "pos": "n", "pol": "0.875", "std": "0.0" }, "adecuación": { "pos": "n", "pol": "1.0", "std": "0.0" }, "aleuto": { "pos": "a", "pol": "0.875", "std": "0.0" }, "amable": { "pos": "a", "pol": "1.0", "std": "0.0" }, "amábel": { "pos": "a", "pol": "1.0", "std": "0.0" }, "aromatizado": { "pos": "a", "pol": "0.875", "std": "0.0" }, "asoballador": { "pos": "a", "pol": "1.0", "std": "0.0" }, "belo": { "pos": "a", "pol": "0.875", "std": "0.0" }, "benestar": { "pos": "n", "pol": "1.0", "std": "0.0" }, "bonito": { "pos": "a", "pol": "0.875", "std": "0.0" }, "compatíbel": { "pos": "a", "pol": "0.813", "std": "0.0" }, "comportamento heroico": { "pos": "n", "pol": "1.0", "std": "0.0" }, "cooperativo": { "pos": "a", "pol": "0.875", "std": "0.0" }, "cualificado": { "pos": "a", "pol": "0.813", "std": "0.088" }, "de felicitación": { "pos": "a", "pol": "0.875", "std": "0.0" }, "decencia": { "pos": "n", "pol": "0.875", "std": "0.0" }, "decoro": { "pos": "n", "pol": "0.875", "std": "0.088" }, "digno": { "pos": "a", "pol": "0.792", "std": "0.191" }, "encomiable": { "pos": "a", "pol": "0.813", "std": "0.0" }, "encomiábel": { "pos": "a", "pol": "0.813", "std": "0.0" }, "entreterse": { "pos": "v", "pol": "1.0", "std": "0.0" }, "especial": { "pos": "a", "pol": "0.875", "std": "0.0" }, "espléndido": { "pos": "a", "pol": "0.813", "std": "0.088" }, "estimable": { "pos": "a", "pol": "1.0", "std": "0.0" }, "estimábel": { "pos": "a", "pol": "1.0", "std": "0.0" }, "fascinante": { "pos": "a", "pol": "0.875", "std": "0.0" }, "fausto": { "pos": "a", "pol": "0.875", "std": "0.0" }, "fermoso": { "pos": "a", "pol": "0.875", "std": "0.0" }, "festivo": { "pos": "a", "pol": "0.813", "std": "0.0" }, "guapo": { "pos": "a", "pol": "0.875", "std": "0.0" }, "habelencioso": { "pos": "a", "pol": "0.813", "std": "0.088" }, "honestidade": { "pos": "n", "pol": "0.875", "std": "0.0" }, "hábil": { "pos": "a", "pol": "0.875", "std": "0.0" }, "loable": { "pos": "a", "pol": "1.0", "std": "0.0" }, "loábel": { "pos": "a", "pol": "1.0", "std": "0.0" }, "magnífico": { "pos": "a", "pol": "0.813", "std": "0.088" }, "marabilla": { "pos": "n", "pol": "1.0", "std": "0.0" }, "meritorio": { "pos": "a", "pol": "0.813", "std": "0.265" }, "modelo": { "pos": "a", "pol": "0.875", "std": "0.0" }, "pasatempo": { "pos": "n", "pol": "0.875", "std": "0.0" }, "preferente": { "pos": "a", "pol": "0.875", "std": "0.0" }, "presentable": { "pos": "a", "pol": "0.875", "std": "0.0" }, "presentábel": { "pos": "a", "pol": "0.875", "std": "0.0" }, "prodixio": { "pos": "n", "pol": "1.0", "std": "0.0" }, "profusión": { "pos": "n", "pol": "0.875", "std": "0.0" }, "prometedor": { "pos": "a", "pol": "0.875", "std": "0.0" }, "que vale a pena": { "pos": "a", "pol": "0.875", "std": "0.0" }, "razoable": { "pos": "a", "pol": "0.875", "std": "0.0" }, "representable": { "pos": "a", "pol": "0.875", "std": "0.0" }, "representábel": { "pos": "a", "pol": "0.875", "std": "0.0" }, "rescate": { "pos": "n", "pol": "1.0", "std": "0.0" }, "respectabilidade": { "pos": "n", "pol": "0.875", "std": "0.0" }, "respectable": { "pos": "a", "pol": "0.938", "std": "0.088" }, "respectábel": { "pos": "a", "pol": "1.0", "std": "0.0" }, "resplandecente": { "pos": "a", "pol": "1.0", "std": "0.0" }, "reverencial": { "pos": "a", "pol": "0.875", "std": "0.0" }, "sabio": { "pos": "a", "pol": "1.0", "std": "0.0" }, "salvamento": { "pos": "n", "pol": "1.0", "std": "0.0" }, "sincero": { "pos": "a", "pol": "1.0", "std": "0.0" }, "soleado": { "pos": "a", "pol": "1.0", "std": "0.0" }, "sonado": { "pos": "a", "pol": "1.0", "std": "0.0" }, "talentoso": { "pos": "a", "pol": "0.875", "std": "0.0" }, "vantaxoso": { "pos": "a", "pol": "1.0", "std": "0.0" }, "xentil": { "pos": "a", "pol": "0.875", "std": "0.0" }, "óptimo": { "pos": "a", "pol": "1.0", "std": "0.0" }, "adinamia": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "ameazante": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "antiestético": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "asasinato": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "asimetría": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "atraso": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "autodestrutivo": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "bafento": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "calumnioso": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "carantoña": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "carnicería": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "carnizaría": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "cheirento": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "contrabandista": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "craso": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "defectuoso": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "descontinuidade": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "descoñecer": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "desprezable": { "pos": "a", "pol": "-0.875", "std": "0.088" }, "desprezábel": { "pos": "a", "pol": "-0.875", "std": "0.088" }, "desvantaxoso": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "difamatorio": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "egoísmo": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "escurecido": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "estúpido": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "exceso": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "fedento": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "fedorento": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "feo": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "flagrante": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "fétido": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "inaceptable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "inaceptábel": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "inafundible": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "inafundíbel": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "incapacitado": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "indigno": { "pos": "a", "pol": "-0.812", "std": "0.088" }, "ineficiencia": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "inelixible": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "inelixíbel": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "inexperimentado": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "intransitable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "intransitábel": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "irrecuperable": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "irrecuperábel": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "irrepresentable": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "irrepresentábel": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "legalmente incapacitado": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "legalmente non capacitado": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "mal comportamento": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "malfeito": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "marca": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "masacre": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "matanza": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "mentirán": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "miserable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "miserábel": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "necio": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "niño": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "non compracente": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "non cooperativo": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "non escalable": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "non escalábel": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "non fiable": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "non fidedigno": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "non fiábel": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "non integral": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "non permisivo": { "pos": "a", "pol": "-0.812", "std": "0.088" }, "non vivo": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "perigoso": { "pos": "a", "pol": "-0.812", "std": "0.12" }, "perturbador": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "pirata": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "pouco impresionable": { "pos": "a", "pol": "-0.875", "std": "0.088" }, "pouco impresionábel": { "pos": "a", "pol": "-0.875", "std": "0.088" }, "presuntuoso": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "principiante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "profanado": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "pésame": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "reprensible": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "reprensíbel": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "tacha": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "uso indebido": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "acatador": { "pos": "a", "pol": "0.75", "std": "0.0" }, "acaído": { "pos": "a", "pol": "0.75", "std": "0.0" }, "adoptable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "adoptábel": { "pos": "a", "pol": "0.75", "std": "0.0" }, "afable": { "pos": "a", "pol": "0.75", "std": "0.177" }, "afábel": { "pos": "a", "pol": "0.75", "std": "0.177" }, "arrebatado": { "pos": "a", "pol": "0.75", "std": "0.0" }, "arrebatador": { "pos": "a", "pol": "0.75", "std": "0.0" }, "avanzar": { "pos": "v", "pol": "0.75", "std": "0.0" }, "axeitado": { "pos": "a", "pol": "0.75", "std": "0.129" }, "axeito": { "pos": "a", "pol": "0.75", "std": "0.0" }, "ben feito": { "pos": "a", "pol": "0.75", "std": "0.0" }, "bendito": { "pos": "a", "pol": "0.75", "std": "0.0" }, "benvido": { "pos": "a", "pol": "0.75", "std": "0.0" }, "carismático": { "pos": "a", "pol": "0.75", "std": "0.0" }, "con criterio": { "pos": "a", "pol": "0.75", "std": "0.0" }, "con experiencia": { "pos": "a", "pol": "0.75", "std": "0.0" }, "consentir": { "pos": "v", "pol": "0.75", "std": "0.0" }, "construtivo": { "pos": "a", "pol": "0.75", "std": "0.0" }, "conxenial": { "pos": "a", "pol": "0.75", "std": "0.0" }, "corrixible": { "pos": "a", "pol": "0.75", "std": "0.0" }, "corrixíbel": { "pos": "a", "pol": "0.75", "std": "0.0" }, "corroborador": { "pos": "a", "pol": "0.75", "std": "0.0" }, "cortexo": { "pos": "n", "pol": "0.75", "std": "0.0" }, "curativo": { "pos": "a", "pol": "0.75", "std": "0.0" }, "de bo gusto": { "pos": "a", "pol": "0.75", "std": "0.0" }, "desexable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "desexábel": { "pos": "a", "pol": "0.75", "std": "0.0" }, "elixible": { "pos": "a", "pol": "0.75", "std": "0.0" }, "elixíbel": { "pos": "a", "pol": "0.75", "std": "0.0" }, "erótico": { "pos": "a", "pol": "0.75", "std": "0.0" }, "escalable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "escalábel": { "pos": "a", "pol": "0.75", "std": "0.0" }, "exitoso": { "pos": "a", "pol": "0.75", "std": "0.0" }, "experimentado": { "pos": "a", "pol": "0.75", "std": "0.0" }, "experimentador": { "pos": "a", "pol": "0.75", "std": "0.0" }, "exportable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "exportábel": { "pos": "a", "pol": "0.75", "std": "0.0" }, "extasiado": { "pos": "a", "pol": "0.75", "std": "0.0" }, "favorecedor": { "pos": "a", "pol": "0.75", "std": "0.0" }, "febril": { "pos": "a", "pol": "0.75", "std": "0.0" }, "fidedigno": { "pos": "a", "pol": "0.75", "std": "0.0" }, "florecente": { "pos": "a", "pol": "0.75", "std": "0.0" }, "frutuoso": { "pos": "a", "pol": "0.75", "std": "0.0" }, "ganar terreo": { "pos": "v", "pol": "0.75", "std": "0.0" }, "gañar terreo": { "pos": "v", "pol": "0.75", "std": "0.0" }, "grandioso": { "pos": "a", "pol": "0.75", "std": "0.0" }, "hedonista": { "pos": "a", "pol": "0.75", "std": "0.0" }, "indefectible": { "pos": "a", "pol": "0.75", "std": "0.0" }, "indefectíbel": { "pos": "a", "pol": "0.75", "std": "0.0" }, "maleabilidade": { "pos": "n", "pol": "0.75", "std": "0.0" }, "manipulador": { "pos": "a", "pol": "0.75", "std": "0.0" }, "oportunista": { "pos": "a", "pol": "0.75", "std": "0.0" }, "plasticidade": { "pos": "n", "pol": "0.75", "std": "0.0" }, "querido": { "pos": "n", "pol": "0.25", "std": "0.088" }, "racional": { "pos": "a", "pol": "0.75", "std": "0.0" }, "rubicundo": { "pos": "a", "pol": "0.75", "std": "0.0" }, "saciado": { "pos": "a", "pol": "0.75", "std": "0.0" }, "sen medo": { "pos": "a", "pol": "0.75", "std": "0.0" }, "sensual": { "pos": "a", "pol": "0.75", "std": "0.0" }, "tratable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "tratábel": { "pos": "a", "pol": "0.75", "std": "0.0" }, "técnico": { "pos": "a", "pol": "0.75", "std": "0.0" }, "virtuoso": { "pos": "a", "pol": "0.75", "std": "0.0" }, "xurdio": { "pos": "a", "pol": "0.75", "std": "0.0" }, "abrigar": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "afrontoso": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "amparar": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "amuado": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "antipatriótico": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "atentado": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "carbonado": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "castigar": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "cegueira": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "cheiro": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "combativo": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "corrompido": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "corrupto": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "crueldade": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "de desprezo": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "de mal humor": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "de moito xenio": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "deber de": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "derrotado": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "desaconsellable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "desaconsellábel": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "desaparecer": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "desautorizado": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "descoñecedor": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "desdeñoso": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "deshonrar": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "destrutivo": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "diamante negro": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "entolecido": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "estéril": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "ferocidade": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "fóra da orde establecida": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "gorecer": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "guarecer": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "imperfecto": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "impiedade": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "impopularidade": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "impúdico": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "inconsolable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "inconsolábel": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "incontestable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "incontestábel": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "incurable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "incurábel": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "ineficacia": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "inextricable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "inextricábel": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "inmiscible": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "inmiscíbel": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "inquieto": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "insubstancial": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "insultante": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "intranquilo": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "invencible": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "invencíbel": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "irreversible": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "irreversíbel": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "laiarse": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "maculado": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "malhumorado": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "melancólico": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "mioqueiro": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "non autorizado": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "non comprensíbel": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "non compresible": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "non creativo": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "non diplomático": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "non dixerible": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "non dixeríbel": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "non imaxinativo": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "non inventivo": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "non mesturable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "non mesturábel": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "non patriótico": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "non vixiante": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "palidez": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "penalizar": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "prexudicial": { "pos": "a", "pol": "-0.75", "std": "0.177" }, "primitivismo": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "protexer": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "que non encolle": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "queixarse": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "rabiar": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "rabuxento": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "rudeza": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "sen atractivo": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "sen creatividade": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "sen criterio": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "sen enerxía": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "sen estilo": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "sen imaxinación": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "sen invención": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "sen talento": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "subxacente": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "ter que": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "tráxico": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "vergonzoso": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "xenófobo": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "xordeira": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "abondo": { "pos": "a", "pol": "0.563", "std": "0.088" }, "abondoso": { "pos": "a", "pol": "0.625", "std": "0.0" }, "absoluto": { "pos": "a", "pol": "0.625", "std": "0.0" }, "accesible": { "pos": "a", "pol": "0.688", "std": "0.088" }, "accesíbel": { "pos": "a", "pol": "0.688", "std": "0.088" }, "aceptable": { "pos": "a", "pol": "0.688", "std": "0.177" }, "aceptábel": { "pos": "a", "pol": "0.688", "std": "0.177" }, "acolledor": { "pos": "a", "pol": "0.531", "std": "0.373" }, "aconsellable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "aconsellábel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "acreditado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "adiantar": { "pos": "v", "pol": "0.563", "std": "0.265" }, "admisible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "admisíbel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "adorable": { "pos": "a", "pol": "0.688", "std": "0.0" }, "adornado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "adorábel": { "pos": "a", "pol": "0.688", "std": "0.0" }, "adulador": { "pos": "a", "pol": "0.625", "std": "0.0" }, "afagador": { "pos": "a", "pol": "0.688", "std": "0.088" }, "afirmativo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "afundible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "afundíbel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "animada": { "pos": "a", "pol": "0.625", "std": "0.0" }, "aptitude": { "pos": "n", "pol": "0.625", "std": "0.0" }, "arruinado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "astuto": { "pos": "a", "pol": "0.625", "std": "0.072" }, "atractivo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "atraer": { "pos": "v", "pol": "0.688", "std": "0.442" }, "bailable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "bailábel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "bebible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "bebíbel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "ben": { "pos": "a", "pol": "0.625", "std": "0.0" }, "ben formado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "brunido": { "pos": "a", "pol": "0.625", "std": "0.0" }, "cabal": { "pos": "a", "pol": "0.625", "std": "0.0" }, "cabaleiroso": { "pos": "a", "pol": "0.625", "std": "0.0" }, "caloroso": { "pos": "a", "pol": "0.625", "std": "0.0" }, "caritativo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "casto": { "pos": "a", "pol": "0.625", "std": "0.0" }, "cativar": { "pos": "v", "pol": "0.688", "std": "0.442" }, "chic": { "pos": "a", "pol": "0.625", "std": "0.0" }, "comestible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "comestíbel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "compatible": { "pos": "a", "pol": "0.656", "std": "0.217" }, "competencia": { "pos": "n", "pol": "0.542", "std": "0.191" }, "competente": { "pos": "a", "pol": "0.688", "std": "0.088" }, "confiado": { "pos": "a", "pol": "0.583", "std": "0.217" }, "confortable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "confortábel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "consagrado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "consecuente": { "pos": "a", "pol": "0.625", "std": "0.0" }, "consistente": { "pos": "a", "pol": "0.563", "std": "0.088" }, "conveniente": { "pos": "a", "pol": "0.708", "std": "0.0" }, "cordura": { "pos": "n", "pol": "0.625", "std": "0.0" }, "cortesán": { "pos": "a", "pol": "0.625", "std": "0.0" }, "cortés": { "pos": "a", "pol": "0.725", "std": "0.153" }, "cos pés na terra": { "pos": "a", "pol": "0.625", "std": "0.0" }, "coñecedor": { "pos": "a", "pol": "0.625", "std": "0.0" }, "creatividade": { "pos": "n", "pol": "0.625", "std": "0.0" }, "creativo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "cristián": { "pos": "a", "pol": "0.625", "std": "0.0" }, "curable": { "pos": "a", "pol": "0.563", "std": "0.088" }, "curábel": { "pos": "a", "pol": "0.563", "std": "0.088" }, "de abondo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "de confianza": { "pos": "a", "pol": "0.625", "std": "0.0" }, "de múltiple elección": { "pos": "a", "pol": "0.625", "std": "0.0" }, "de primeira": { "pos": "a", "pol": "0.625", "std": "0.0" }, "de primeira clase": { "pos": "a", "pol": "0.625", "std": "0.0" }, "de proveito": { "pos": "a", "pol": "0.625", "std": "0.0" }, "de vangarda": { "pos": "a", "pol": "0.625", "std": "0.0" }, "decente": { "pos": "a", "pol": "0.563", "std": "0.0" }, "decoroso": { "pos": "a", "pol": "0.667", "std": "0.144" }, "dedicado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "deducible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "deducíbel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "definido": { "pos": "a", "pol": "0.542", "std": "0.191" }, "dilixente": { "pos": "a", "pol": "0.625", "std": "0.0" }, "diplomático": { "pos": "a", "pol": "0.625", "std": "0.217" }, "discriminado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "disposto": { "pos": "a", "pol": "0.625", "std": "0.0" }, "dispoñible": { "pos": "a", "pol": "0.563", "std": "0.088" }, "dispoñíbel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "divertirse": { "pos": "v", "pol": "0.688", "std": "0.442" }, "educado": { "pos": "a", "pol": "0.688", "std": "0.0" }, "efectivo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "eficacia": { "pos": "n", "pol": "0.625", "std": "0.0" }, "eficaz": { "pos": "a", "pol": "0.625", "std": "0.0" }, "eloxioso": { "pos": "a", "pol": "0.625", "std": "0.0" }, "en forma": { "pos": "a", "pol": "0.625", "std": "0.0" }, "enciclopédico": { "pos": "a", "pol": "0.625", "std": "0.0" }, "entretido": { "pos": "a", "pol": "0.625", "std": "0.0" }, "enxeñoso": { "pos": "a", "pol": "0.625", "std": "0.191" }, "equitativa": { "pos": "a", "pol": "0.625", "std": "0.0" }, "esgotable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "esgotábel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "estimulante": { "pos": "a", "pol": "0.542", "std": "0.072" }, "estándar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estético": { "pos": "a", "pol": "0.625", "std": "0.0" }, "eufónico": { "pos": "a", "pol": "0.625", "std": "0.0" }, "excitable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "excitábel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "explicable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "explicábel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "explotado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "explícito": { "pos": "a", "pol": "0.625", "std": "0.0" }, "expreso": { "pos": "a", "pol": "0.625", "std": "0.0" }, "extraordinario": { "pos": "a", "pol": "0.656", "std": "0.177" }, "fama": { "pos": "n", "pol": "0.625", "std": "0.0" }, "fiable": { "pos": "a", "pol": "0.688", "std": "0.088" }, "fiel": { "pos": "a", "pol": "0.563", "std": "0.217" }, "fiábel": { "pos": "a", "pol": "0.688", "std": "0.088" }, "frutífero": { "pos": "a", "pol": "0.563", "std": "0.177" }, "ganar": { "pos": "v", "pol": "0.563", "std": "0.177" }, "gañador": { "pos": "a", "pol": "0.625", "std": "0.0" }, "gañar": { "pos": "v", "pol": "0.563", "std": "0.177" }, "glorioso": { "pos": "a", "pol": "0.625", "std": "0.0" }, "habitable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "habitábel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "harmonioso": { "pos": "a", "pol": "0.688", "std": "0.177" }, "hixiénico": { "pos": "a", "pol": "0.625", "std": "0.0" }, "honrado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "identificable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "identificábel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "imaxinativo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "impresionante": { "pos": "a", "pol": "0.625", "std": "0.0" }, "insepulto": { "pos": "a", "pol": "0.625", "std": "0.0" }, "instruído": { "pos": "a", "pol": "0.625", "std": "0.0" }, "interpretable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "interpretábel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "inventivo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "inventor": { "pos": "a", "pol": "0.625", "std": "0.0" }, "invicto": { "pos": "a", "pol": "0.625", "std": "0.0" }, "letrado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "lucente": { "pos": "a", "pol": "0.625", "std": "0.0" }, "lucrativo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "lóxico": { "pos": "a", "pol": "0.625", "std": "0.0" }, "maioritario": { "pos": "a", "pol": "0.625", "std": "0.0" }, "manexable": { "pos": "a", "pol": "0.625", "std": "0.177" }, "manexábel": { "pos": "a", "pol": "0.625", "std": "0.177" }, "marabilloso": { "pos": "a", "pol": "0.688", "std": "0.354" }, "mellor": { "pos": "a", "pol": "0.625", "std": "0.191" }, "non alarmante": { "pos": "a", "pol": "0.625", "std": "0.0" }, "obediente": { "pos": "a", "pol": "0.542", "std": "0.072" }, "observable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "observábel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "operable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "operábel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "oportuno": { "pos": "a", "pol": "0.719", "std": "0.102" }, "opulencia": { "pos": "n", "pol": "0.625", "std": "0.53" }, "orientado ao futuro": { "pos": "a", "pol": "0.625", "std": "0.0" }, "pacífico": { "pos": "a", "pol": "0.583", "std": "0.191" }, "perfeccionamento": { "pos": "n", "pol": "0.625", "std": "0.0" }, "perfecto": { "pos": "a", "pol": "0.563", "std": "0.088" }, "perforable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "perforábel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "perspicaz": { "pos": "a", "pol": "0.625", "std": "0.0" }, "piedade": { "pos": "n", "pol": "0.625", "std": "0.0" }, "polivalente": { "pos": "a", "pol": "0.625", "std": "0.0" }, "polo miúdo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "popularidade": { "pos": "n", "pol": "0.625", "std": "0.0" }, "potable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "potábel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "precisión": { "pos": "n", "pol": "0.625", "std": "0.0" }, "preciso": { "pos": "a", "pol": "0.594", "std": "0.102" }, "preferible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "preferíbel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "preparado": { "pos": "a", "pol": "0.583", "std": "0.144" }, "preponderante": { "pos": "a", "pol": "0.625", "std": "0.0" }, "protector": { "pos": "a", "pol": "0.625", "std": "0.0" }, "proveitoso": { "pos": "a", "pol": "0.625", "std": "0.0" }, "prudente": { "pos": "a", "pol": "0.625", "std": "0.177" }, "próspero": { "pos": "a", "pol": "0.625", "std": "0.125" }, "pulido": { "pos": "a", "pol": "0.625", "std": "0.0" }, "puído": { "pos": "a", "pol": "0.625", "std": "0.0" }, "quente": { "pos": "a", "pol": "0.625", "std": "0.0" }, "reciclable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "reciclábel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "recomendable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "recomendábel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "recuperable": { "pos": "a", "pol": "0.563", "std": "0.0" }, "recuperábel": { "pos": "a", "pol": "0.563", "std": "0.0" }, "reflector": { "pos": "a", "pol": "0.625", "std": "0.0" }, "rehabilitable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "rehabilitábel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "reloucante": { "pos": "a", "pol": "0.625", "std": "0.0" }, "renarte": { "pos": "a", "pol": "0.625", "std": "0.0" }, "rendible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "rendíbel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "repetible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "repetíbel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "repleto": { "pos": "a", "pol": "0.625", "std": "0.0" }, "resistente": { "pos": "a", "pol": "0.625", "std": "0.0" }, "respectuoso": { "pos": "a", "pol": "0.625", "std": "0.0" }, "retentivo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "ridículo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "san": { "pos": "a", "pol": "0.607", "std": "0.112" }, "saúde": { "pos": "n", "pol": "0.625", "std": "0.0" }, "seguro de si mesmo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sen precedentes": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sensatez": { "pos": "n", "pol": "0.625", "std": "0.0" }, "sensato": { "pos": "a", "pol": "0.625", "std": "0.545" }, "sentido": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sexy": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sobresaliente": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sobresaínte": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sociable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sociábel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sofisticado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "solvencia": { "pos": "n", "pol": "0.625", "std": "0.0" }, "submiso": { "pos": "a", "pol": "0.583", "std": "0.125" }, "suficiente": { "pos": "a", "pol": "0.563", "std": "0.088" }, "suntuoso": { "pos": "a", "pol": "0.625", "std": "0.0" }, "superioridade": { "pos": "n", "pol": "0.625", "std": "0.0" }, "ter éxito": { "pos": "v", "pol": "0.625", "std": "0.0" }, "tolerable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "transcendental": { "pos": "a", "pol": "0.625", "std": "0.265" }, "traxicómico": { "pos": "a", "pol": "0.625", "std": "0.0" }, "típico": { "pos": "a", "pol": "0.625", "std": "0.0" }, "vangardista": { "pos": "a", "pol": "0.625", "std": "0.0" }, "venerado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "viable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "visionario": { "pos": "a", "pol": "0.625", "std": "0.0" }, "vitoria": { "pos": "n", "pol": "0.625", "std": "0.0" }, "viábel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "vocálico": { "pos": "a", "pol": "0.625", "std": "0.0" }, "voluptuoso": { "pos": "a", "pol": "0.625", "std": "0.0" }, "xocoso": { "pos": "a", "pol": "0.625", "std": "0.0" }, "xogable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "xogábel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "xustificable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "xustificábel": { "pos": "a", "pol": "0.625", "std": "0.0" }, "ético": { "pos": "a", "pol": "0.625", "std": "0.0" }, "útil": { "pos": "a", "pol": "0.583", "std": "0.072" }, "abaixo": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "arruinar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "bobo": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "borrancho": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "brusquidade": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "cano": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "cansazo": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "carácter perecedoiro": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "casa de tolos": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "chumbo endurido": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "combatente": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "complexidade": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "con grans": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "condena": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "crepuscular": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "criticar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "de abaixo": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "de embaixo": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "derribar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "derrubar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "desamparado": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "desconforme": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "descortés": { "pos": "a", "pol": "-0.562", "std": "0.157" }, "desfavorecedor": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "desgastado": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "destruír": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "detrimento": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "discordante": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "elexía": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "embaixo": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "emboscada": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "encanecido": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "enterrado": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "equívoco": { "pos": "a", "pol": "-0.562", "std": "0.0" }, "escuro": { "pos": "a", "pol": "-0.583", "std": "0.144" }, "estragar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "groseiro": { "pos": "a", "pol": "-0.687", "std": "0.0" }, "homicidio": { "pos": "n", "pol": "-0.687", "std": "0.0" }, "ignorancia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "ignorante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "imaxinario": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "imperfección": { "pos": "n", "pol": "-0.625", "std": "0.265" }, "impracticable": { "pos": "a", "pol": "-0.625", "std": "0.177" }, "impracticábel": { "pos": "a", "pol": "-0.625", "std": "0.177" }, "impreciso": { "pos": "a", "pol": "-0.625", "std": "0.072" }, "impromperio": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "impío": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "inalienable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "inalienábel": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "inanimado": { "pos": "a", "pol": "-0.531", "std": "0.125" }, "incomprensión": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "inconsciencia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "incuestionable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "incuestionábel": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "indetectable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "indetectábel": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "inelástico": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "infalible": { "pos": "a", "pol": "-0.625", "std": "0.265" }, "infalíbel": { "pos": "a", "pol": "-0.625", "std": "0.265" }, "inferno": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "inmunodeficiente": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "insoluble": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "insolúbel": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "insoportable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "insoportábel": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "insubordinado": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "insípido": { "pos": "a", "pol": "-0.625", "std": "0.177" }, "intolerable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "intolerábel": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "inxusto": { "pos": "a", "pol": "-0.531", "std": "0.188" }, "irracional": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "irrespectuoso": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "laio": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "licencioso": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "luído": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "mesquindade": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "neurótico": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "non académico": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "non apetitoso": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "non elegante": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "non estadista": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "non modificable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "non modificábel": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "non oficial": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "non receptivo": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "non rendible": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "non rendíbel": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "osteófito": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "paifoco": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "pandemonio": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "paroxismo": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "patas arriba": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "perdición": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "po radioactivo": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "pouco apetecible": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "pouco apetecíbel": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "pouco sólido": { "pos": "a", "pol": "-0.562", "std": "0.177" }, "precipitación radioactiva": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "prógnato": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "psiconeurótico": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "relación tormentosa": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "reprobación": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "reproche": { "pos": "n", "pol": "-0.687", "std": "0.0" }, "sepultado": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "situación difícil": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "soterrado": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "temido": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "tirar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "torpe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "torturador": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "tumultuoso": { "pos": "a", "pol": "-0.562", "std": "0.177" }, "vulnerable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "vulnerábel": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "á baixa": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "a nivel nacional": { "pos": "a", "pol": "0.5", "std": "0.0" }, "absterse de": { "pos": "v", "pol": "0.5", "std": "0.0" }, "académico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "acertado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "aclamación": { "pos": "n", "pol": "0.5", "std": "0.0" }, "acollida": { "pos": "n", "pol": "0.5", "std": "0.0" }, "adaptabilidade": { "pos": "n", "pol": "0.5", "std": "0.0" }, "aforrador": { "pos": "a", "pol": "0.5", "std": "0.0" }, "algareiro": { "pos": "a", "pol": "0.5", "std": "0.0" }, "alterable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "alterábel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "alugable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ambidextro": { "pos": "a", "pol": "0.5", "std": "0.0" }, "antiséptico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "apetitoso": { "pos": "a", "pol": "0.5", "std": "0.0" }, "aplauso": { "pos": "n", "pol": "0.5", "std": "0.0" }, "aplicable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "aplicábel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "aprendido": { "pos": "a", "pol": "0.5", "std": "0.0" }, "apresurado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "apto": { "pos": "a", "pol": "0.5", "std": "0.0" }, "arable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "arbitrario": { "pos": "a", "pol": "0.5", "std": "0.0" }, "arábel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "atención": { "pos": "n", "pol": "0.5", "std": "0.0" }, "autoestima": { "pos": "n", "pol": "0.5", "std": "0.0" }, "autogámico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "automático": { "pos": "a", "pol": "0.5", "std": "0.0" }, "autosuficiente": { "pos": "a", "pol": "0.5", "std": "0.0" }, "autógamo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "axudar": { "pos": "v", "pol": "0.5", "std": "0.0" }, "axustable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "axustábel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "baixo xuramento": { "pos": "a", "pol": "0.5", "std": "0.0" }, "bastante": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ben aconsellado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ben definido": { "pos": "a", "pol": "0.5", "std": "0.0" }, "bo gusto": { "pos": "n", "pol": "0.5", "std": "0.0" }, "bocho": { "pos": "a", "pol": "0.5", "std": "0.0" }, "bébedo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "característico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "causal": { "pos": "a", "pol": "0.5", "std": "0.0" }, "centralizador": { "pos": "a", "pol": "0.5", "std": "0.0" }, "científico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "circunstancial": { "pos": "a", "pol": "0.5", "std": "0.0" }, "claustral": { "pos": "a", "pol": "0.5", "std": "0.0" }, "coidadoso": { "pos": "a", "pol": "0.5", "std": "0.088" }, "coincidir": { "pos": "v", "pol": "0.5", "std": "0.0" }, "combustible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "combustíbel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "comedia": { "pos": "n", "pol": "0.5", "std": "0.0" }, "comparable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "competente nas matemáticas": { "pos": "a", "pol": "0.5", "std": "0.0" }, "competente nos cálculos": { "pos": "a", "pol": "0.5", "std": "0.0" }, "competente para as matemáticas": { "pos": "a", "pol": "0.5", "std": "0.0" }, "competente para os cálculos": { "pos": "a", "pol": "0.5", "std": "0.0" }, "compresible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "compresíbel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "comprobado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "con borde": { "pos": "a", "pol": "0.5", "std": "0.0" }, "con cabeza": { "pos": "a", "pol": "0.5", "std": "0.0" }, "con cautela": { "pos": "a", "pol": "0.5", "std": "0.0" }, "con incrustacións": { "pos": "a", "pol": "0.5", "std": "0.0" }, "con montura": { "pos": "a", "pol": "0.5", "std": "0.0" }, "con nariz": { "pos": "a", "pol": "0.5", "std": "0.0" }, "conciliador": { "pos": "a", "pol": "0.5", "std": "0.177" }, "concorde": { "pos": "a", "pol": "0.5", "std": "0.0" }, "condescendente": { "pos": "a", "pol": "0.5", "std": "0.0" }, "condicionado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "condutivo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "condutor": { "pos": "a", "pol": "0.5", "std": "0.0" }, "conectable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "conectábel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "confesión": { "pos": "n", "pol": "0.5", "std": "0.0" }, "confinado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "conforme": { "pos": "a", "pol": "0.5", "std": "0.0" }, "conservado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "consideración": { "pos": "n", "pol": "0.5", "std": "0.0" }, "consoante": { "pos": "a", "pol": "0.5", "std": "0.0" }, "constatar": { "pos": "v", "pol": "0.5", "std": "0.0" }, "constitucional": { "pos": "a", "pol": "0.5", "std": "0.0" }, "contable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "continuar co embarazo": { "pos": "v", "pol": "0.5", "std": "0.0" }, "contábel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "convición": { "pos": "n", "pol": "0.5", "std": "0.0" }, "corresponderse": { "pos": "v", "pol": "0.5", "std": "0.0" }, "corroborar": { "pos": "v", "pol": "0.5", "std": "0.0" }, "cortesía": { "pos": "n", "pol": "0.5", "std": "0.0" }, "crenza": { "pos": "n", "pol": "0.5", "std": "0.0" }, "cumprido": { "pos": "n", "pol": "0.5", "std": "0.0" }, "cumprimento": { "pos": "n", "pol": "0.5", "std": "0.0" }, "cumprir": { "pos": "v", "pol": "0.5", "std": "0.0" }, "curiosidade": { "pos": "n", "pol": "0.5", "std": "0.0" }, "cálido": { "pos": "a", "pol": "0.5", "std": "0.177" }, "dabondo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "de a": { "pos": "a", "pol": "0.5", "std": "0.0" }, "de alta tensión": { "pos": "a", "pol": "0.5", "std": "0.0" }, "de alta voltaxe": { "pos": "a", "pol": "0.5", "std": "0.0" }, "de bo humor": { "pos": "a", "pol": "0.5", "std": "0.0" }, "de boa gana": { "pos": "a", "pol": "0.5", "std": "0.0" }, "de diñeiro": { "pos": "a", "pol": "0.5", "std": "0.0" }, "de moda": { "pos": "a", "pol": "0.5", "std": "0.0" }, "de moi bo corazón": { "pos": "a", "pol": "0.5", "std": "0.0" }, "delimitado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "democrático": { "pos": "a", "pol": "0.5", "std": "0.0" }, "dentro do estándar": { "pos": "a", "pol": "0.5", "std": "0.0" }, "desatar": { "pos": "v", "pol": "0.5", "std": "0.0" }, "desbotable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "desbotábel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "desestabilización": { "pos": "n", "pol": "0.5", "std": "0.0" }, "desinfectado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "desmontable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "desmontábel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "destinado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "determinable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "determinábel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "dignidade": { "pos": "n", "pol": "0.5", "std": "0.0" }, "dirixido": { "pos": "a", "pol": "0.5", "std": "0.0" }, "discernible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "discerníbel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "distinguible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "distinguíbel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "dixerible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "dixeríbel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "don do ceo": { "pos": "n", "pol": "0.5", "std": "0.0" }, "dócil": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ecléctico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "elocuente": { "pos": "a", "pol": "0.5", "std": "0.0" }, "elástico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "embriagado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "empeño": { "pos": "n", "pol": "0.5", "std": "0.442" }, "en color": { "pos": "a", "pol": "0.5", "std": "0.0" }, "en condicións de voar": { "pos": "a", "pol": "0.5", "std": "0.0" }, "en cor": { "pos": "a", "pol": "0.5", "std": "0.0" }, "encaixar": { "pos": "v", "pol": "0.5", "std": "0.0" }, "endergónico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "enerxético": { "pos": "a", "pol": "0.5", "std": "0.0" }, "enfeitizada": { "pos": "a", "pol": "0.5", "std": "0.0" }, "engado": { "pos": "n", "pol": "0.5", "std": "0.0" }, "entoado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "envaiñado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "escintilante": { "pos": "a", "pol": "0.5", "std": "0.0" }, "especializado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "esquivar": { "pos": "v", "pol": "0.5", "std": "0.0" }, "estadista": { "pos": "a", "pol": "0.5", "std": "0.0" }, "estandarizado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "estar ao tanto (de)": { "pos": "a", "pol": "0.5", "std": "0.0" }, "estar de acordo": { "pos": "v", "pol": "0.5", "std": "0.0" }, "exacto": { "pos": "a", "pol": "0.5", "std": "0.228" }, "excitado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "exhaustivo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "existencia": { "pos": "n", "pol": "0.5", "std": "0.0" }, "exotérico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "expansivo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "falante": { "pos": "a", "pol": "0.5", "std": "0.0" }, "famento": { "pos": "a", "pol": "0.5", "std": "0.0" }, "fermosura": { "pos": "n", "pol": "0.5", "std": "0.0" }, "festividade": { "pos": "n", "pol": "0.5", "std": "0.0" }, "fin da segregación racial": { "pos": "n", "pol": "0.5", "std": "0.0" }, "fisible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "fisíbel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "fundado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "fértil": { "pos": "a", "pol": "0.5", "std": "0.088" }, "físico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "gordecho": { "pos": "a", "pol": "0.5", "std": "0.0" }, "gratificante": { "pos": "a", "pol": "0.5", "std": "0.0" }, "habelencia": { "pos": "n", "pol": "0.5", "std": "0.0" }, "homeopatía": { "pos": "n", "pol": "0.5", "std": "0.0" }, "hospitalidade": { "pos": "n", "pol": "0.5", "std": "0.0" }, "humilde": { "pos": "a", "pol": "0.5", "std": "0.0" }, "impresionable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "impresionábel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "impulsado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "infatigable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "infatigábel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "influente": { "pos": "a", "pol": "0.5", "std": "0.0" }, "inmunocompetente": { "pos": "a", "pol": "0.5", "std": "0.0" }, "insolvente": { "pos": "a", "pol": "0.5", "std": "0.0" }, "intelixencia": { "pos": "n", "pol": "0.5", "std": "0.0" }, "intelixente": { "pos": "a", "pol": "0.5", "std": "0.088" }, "intercambiable": { "pos": "a", "pol": "0.5", "std": "0.265" }, "intercambiábel": { "pos": "a", "pol": "0.5", "std": "0.265" }, "interesante": { "pos": "a", "pol": "0.5", "std": "0.088" }, "intoxicado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "irremediable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "irremediábel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "leal": { "pos": "a", "pol": "0.5", "std": "0.0" }, "lembrar": { "pos": "v", "pol": "0.5", "std": "0.0" }, "lexible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "lexíbel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "luva de coiro": { "pos": "n", "pol": "0.5", "std": "0.0" }, "lúdico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "medicinal": { "pos": "a", "pol": "0.5", "std": "0.0" }, "mental": { "pos": "a", "pol": "0.5", "std": "0.0" }, "mesturable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "mesturábel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "miopía": { "pos": "n", "pol": "0.5", "std": "0.0" }, "miscible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "miscíbel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "monástico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "mésico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "nacido": { "pos": "a", "pol": "0.5", "std": "0.0" }, "narcisismo": { "pos": "n", "pol": "0.5", "std": "0.0" }, "nato": { "pos": "a", "pol": "0.5", "std": "0.0" }, "non cabeza de serie": { "pos": "a", "pol": "0.5", "std": "0.0" }, "non partidario": { "pos": "a", "pol": "0.5", "std": "0.0" }, "non partidista": { "pos": "a", "pol": "0.5", "std": "0.0" }, "nutrido": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ocuparse de": { "pos": "v", "pol": "0.5", "std": "0.0" }, "omitir": { "pos": "v", "pol": "0.5", "std": "0.0" }, "optimismo": { "pos": "n", "pol": "0.5", "std": "0.0" }, "ortotrópico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ostensivo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ouvinte": { "pos": "a", "pol": "0.5", "std": "0.0" }, "oínte": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "palmas": { "pos": "n", "pol": "0.5", "std": "0.0" }, "pampo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "papel couché": { "pos": "n", "pol": "0.5", "std": "0.0" }, "papel de regalo": { "pos": "n", "pol": "0.5", "std": "0.0" }, "participativo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "particular": { "pos": "a", "pol": "0.5", "std": "0.354" }, "patriótico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "persuasivo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ponteable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ponteábel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "pornográfico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "posible": { "pos": "a", "pol": "0.5", "std": "0.143" }, "precioso": { "pos": "a", "pol": "0.5", "std": "0.0" }, "presumida": { "pos": "a", "pol": "0.5", "std": "0.0" }, "privarse de": { "pos": "v", "pol": "0.5", "std": "0.0" }, "privilexiado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "probado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "propicio": { "pos": "a", "pol": "0.5", "std": "0.25" }, "proximal": { "pos": "a", "pol": "0.5", "std": "0.0" }, "práctica": { "pos": "a", "pol": "0.5", "std": "0.0" }, "pulcro": { "pos": "a", "pol": "0.5", "std": "0.0" }, "público": { "pos": "a", "pol": "0.5", "std": "0.0" }, "que encolle": { "pos": "a", "pol": "0.5", "std": "0.0" }, "reafirmar": { "pos": "v", "pol": "0.5", "std": "0.0" }, "reconciliable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "reconciliábel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "redundante": { "pos": "a", "pol": "0.5", "std": "0.0" }, "regalo dos deuses": { "pos": "n", "pol": "0.5", "std": "0.0" }, "regordecho": { "pos": "a", "pol": "0.5", "std": "0.0" }, "regordete": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rememorar": { "pos": "v", "pol": "0.5", "std": "0.0" }, "remunerado": { "pos": "a", "pol": "0.5", "std": "0.088" }, "rendibilidade": { "pos": "n", "pol": "0.5", "std": "0.0" }, "reparable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "reparábel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "repetitivo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "residencial": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rigoroso": { "pos": "a", "pol": "0.5", "std": "0.265" }, "rosa": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rosado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sacrosanto": { "pos": "a", "pol": "0.5", "std": "0.0" }, "salubre": { "pos": "a", "pol": "0.5", "std": "0.088" }, "salvar": { "pos": "v", "pol": "0.5", "std": "0.0" }, "sedutor": { "pos": "a", "pol": "0.5", "std": "0.088" }, "seleccionado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sen malas herbas": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sen nubes": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sen prexuízos": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sen xermes": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sentimental": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ser efectivo": { "pos": "v", "pol": "0.5", "std": "0.0" }, "significativo": { "pos": "a", "pol": "0.5", "std": "0.144" }, "sinceridade": { "pos": "n", "pol": "0.5", "std": "0.0" }, "somerxible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "somerxíbel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "somático": { "pos": "a", "pol": "0.5", "std": "0.0" }, "subsistir": { "pos": "v", "pol": "0.5", "std": "0.0" }, "suficientemente": { "pos": "a", "pol": "0.5", "std": "0.0" }, "tacto": { "pos": "n", "pol": "0.5", "std": "0.0" }, "temperado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "total": { "pos": "a", "pol": "0.5", "std": "0.177" }, "traducible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "traducíbel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "transitivo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "triunfar": { "pos": "v", "pol": "0.5", "std": "0.177" }, "usual": { "pos": "a", "pol": "0.5", "std": "0.0" }, "utilitarismo": { "pos": "n", "pol": "0.5", "std": "0.0" }, "utópico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "valioso": { "pos": "a", "pol": "0.5", "std": "0.0" }, "vantaxe": { "pos": "n", "pol": "0.5", "std": "0.088" }, "vendible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "vendido": { "pos": "a", "pol": "0.5", "std": "0.0" }, "vendíbel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "verde": { "pos": "a", "pol": "0.5", "std": "0.177" }, "verosímil": { "pos": "a", "pol": "0.5", "std": "0.088" }, "vivaz": { "pos": "a", "pol": "0.5", "std": "0.0" }, "xurado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "xusto": { "pos": "a", "pol": "0.5", "std": "0.224" }, "zurdo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "éxito": { "pos": "n", "pol": "0.5", "std": "0.0" }, "aborrecer": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "aburrir": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "acidez": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "acusador": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "afonía": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "agre": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "alleo": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "alporizado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "amedoñado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "amedrentado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "anarquía": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "angustioso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "ante mortem": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "apocalipse": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "arteria cerebral inferior": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "astenosfera": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "audaz": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "bar clandestino": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "barbela dos Habsburgo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "beriberi": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bile amarela": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bile negra": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bruxa": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bárbaro": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cacofónico": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "cadaverina": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "calote": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cansar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "carpideira": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "carácter profano": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cebro": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "choromiqueiro": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "cinexética": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "comparativo": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "corcovado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "cortexo fúnebre": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cóndilo lateral": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cóndilo medial": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "demoníaco": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "derivación portocava": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "desagradecido": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "desaparecido": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "desapiadado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "desaxeitado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "desempregado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "desfavorable": { "pos": "a", "pol": "-0.5", "std": "0.168" }, "desfavorábel": { "pos": "a", "pol": "-0.5", "std": "0.168" }, "desleixado": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "desleixo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "destemido": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "difícil": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "discontinuo": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "distraído": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "déspota": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "embuste": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "en branco e negro": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "enfermidade sanguínea": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "engano": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "entobo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "escándalo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "esencial": { "pos": "a", "pol": "0.25", "std": "0.072" }, "esnaquizado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "espectro": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "esporádico": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "estereotipado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "estresante": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "excrecencia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "extinto": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "falta de atención": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fartar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "fatigar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "fracaso": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fracturar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "fraude": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "frío": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "graffiti": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "grallo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "guerrilla": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "guerrilleiro": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hematoma": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "heterodoxo": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "hipócrita": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "homicida": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "impensable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "impensábel": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "imperforable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "imperforábel": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "implacábel": { "pos": "a", "pol": "-0.5", "std": "0.125" }, "imponteable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "imponteábel": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "impotencia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "impunidade": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "impureza": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "impávido": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "in fraganti": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inadmisible": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "inadmisíbel": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "incompleto": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "inconcibible": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inconcibíbel": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "incondicionado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inconstitucional": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inconveniente": { "pos": "a", "pol": "-0.5", "std": "0.265" }, "incorrixible": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "incorrixíbel": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "incrédulo": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inculpatorio": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "indiscernible": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "indiscerníbel": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "indispoñible": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "indispoñíbel": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inexperiencia": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "inexplicable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inexplicábel": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "ininterpretable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "ininterpretábel": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inmunodeficiencia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "innato": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inoperable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inoperábel": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inquisición": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "insuficientemente": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "intrépido": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "invasor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "investigación": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inviolable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inviolábel": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "invulnerable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "invulnerábel": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "irreal": { "pos": "a", "pol": "-0.5", "std": "0.144" }, "labio inferior": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "laringofarinxe": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "licopeno": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "lilaina": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "lorda": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "lánguida": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "lánguido": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "macrocolon": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mal usado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "malevolencia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "malfadado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "maléfico": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "manicomio": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "matar sen intención": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "mazadura": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "megacolon": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "melancolía": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mentira": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mentireiro": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "moa cordal": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "moa do xuízo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "moreno": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "morrer": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "muyahidin": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "nocivo": { "pos": "a", "pol": "-0.5", "std": "0.354" }, "non admitido": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non algareiro": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non bromista": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non cristián": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non disposto": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non doente": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non dotado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non dramático": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non emocional": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non emprendedor": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non empático": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non entusiasta": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non escrupuloso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non esixente": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "non estimulante": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non estético": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non esvaradío": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non excitable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non excitábel": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non exitoso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non irritado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non malicioso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non obrigado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non oposto": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non político": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non probado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non rabiado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non rabioso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non recoñecido": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non refinado": { "pos": "a", "pol": "-0.5", "std": "0.265" }, "non relacionado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non simpatizante": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non tradicional": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non técnico": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non xogable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "non xogábel": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "oco mandibular": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ofenderse": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "ollo do cu": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "opresivo": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "orificio aórtico": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "palestra": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "parafilia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "parte inferior": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "perecedoiro": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "perigo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pesimismo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pestilente": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "pintada": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "porcallada": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pouco ortodoxo": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "pouco político": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "profético": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "punitivo": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "punzante": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "queixume": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "reclamante": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "reprimenda": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "requisito": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "réquiem": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ríspeto": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sabotaxe": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sen cheiro": { "pos": "a", "pol": "-0.5", "std": "0.088" }, "sen confianza": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sen dote": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sen emoción": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sen emocións": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sen entusiasmo": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sen escrúpulos": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sen iniciativas": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sen interese": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sen luar": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sen lueiro": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sen lúa": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sen prestar atención": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sen remorso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sen tacto": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "silvestre": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sobriedade": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sulfuro de hidróxeno": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "superstición": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "teimosía": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ter envexa": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "terrorismo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "tipo de sangue Rh-negativo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "trasno": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "valía": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "vea pulmonar inferior": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "vea sigmoide": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "vena pulmanalis inferior": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "vena sigmoideus": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "vertixinoso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "vivir de": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "xemido": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ácido acetoacético": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "a man": { "pos": "a", "pol": "0.375", "std": "0.0" }, "a tempo completo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "abadesa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "aberto": { "pos": "a", "pol": "0.339", "std": "0.222" }, "absolto": { "pos": "a", "pol": "0.375", "std": "0.0" }, "absorbible": { "pos": "n", "pol": "0.25", "std": "0.0" }, "absorbíbel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "abundante": { "pos": "a", "pol": "0.438", "std": "0.088" }, "acabado": { "pos": "a", "pol": "0.313", "std": "0.177" }, "academia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "acantilado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "acolchado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "acorde": { "pos": "a", "pol": "0.375", "std": "0.088" }, "acordo": { "pos": "n", "pol": "0.313", "std": "0.177" }, "acostumado": { "pos": "a", "pol": "0.313", "std": "0.088" }, "acristalado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "actinomorfo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "activo": { "pos": "a", "pol": "0.25", "std": "0.146" }, "acumulado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "acídico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "acústica": { "pos": "n", "pol": "0.375", "std": "0.0" }, "adaptable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "adaptado": { "pos": "a", "pol": "0.417", "std": "0.289" }, "adaptábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ademais": { "pos": "a", "pol": "0.375", "std": "0.0" }, "adestrado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "adiantado": { "pos": "a", "pol": "0.313", "std": "0.177" }, "adictivo": { "pos": "a", "pol": "0.375", "std": "0.177" }, "adiñeirado": { "pos": "a", "pol": "0.458", "std": "0.072" }, "admirado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "admitido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "adoptivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "adulto": { "pos": "n", "pol": "0.375", "std": "0.0" }, "aeróbico": { "pos": "a", "pol": "0.438", "std": "0.088" }, "afastado": { "pos": "a", "pol": "0.281", "std": "0.161" }, "aferrarse": { "pos": "v", "pol": "0.375", "std": "0.0" }, "afiado": { "pos": "a", "pol": "0.375", "std": "0.177" }, "alado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "alcohol absoluto": { "pos": "n", "pol": "0.375", "std": "0.0" }, "alcol absoluto": { "pos": "n", "pol": "0.375", "std": "0.0" }, "alfabetización": { "pos": "n", "pol": "0.375", "std": "0.0" }, "alfombrado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "alto": { "pos": "a", "pol": "0.313", "std": "0.0" }, "altruísta": { "pos": "n", "pol": "0.375", "std": "0.0" }, "aluarado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "amarelado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "amañado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ambicioso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ambigüidade": { "pos": "n", "pol": "0.313", "std": "0.088" }, "amigable": { "pos": "a", "pol": "0.313", "std": "0.354" }, "amigábel": { "pos": "a", "pol": "0.313", "std": "0.354" }, "anfótero": { "pos": "a", "pol": "0.375", "std": "0.0" }, "animado": { "pos": "a", "pol": "0.464", "std": "0.238" }, "anovado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ansiado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "anualmente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "anulable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "anulábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "apaixonado": { "pos": "a", "pol": "0.438", "std": "0.088" }, "aplacable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "aplacábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "aplicabilidade": { "pos": "n", "pol": "0.375", "std": "0.0" }, "aplicado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "aplicar": { "pos": "v", "pol": "0.375", "std": "0.177" }, "apocárpico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "apoiado": { "pos": "a", "pol": "0.313", "std": "0.088" }, "apoiar": { "pos": "v", "pol": "0.375", "std": "0.177" }, "apreciado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "apremante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "arbitrable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "arbitrábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "arduo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "aristocrático": { "pos": "a", "pol": "0.375", "std": "0.0" }, "arquitectura": { "pos": "n", "pol": "0.375", "std": "0.0" }, "artefacto": { "pos": "n", "pol": "0.375", "std": "0.0" }, "artesanal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "artesanía": { "pos": "n", "pol": "0.438", "std": "0.265" }, "asegurado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "asirse": { "pos": "v", "pol": "0.375", "std": "0.0" }, "asistido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "asomar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "asombrado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "asombro": { "pos": "n", "pol": "0.292", "std": "0.361" }, "asubío": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ataviado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "atención médica": { "pos": "n", "pol": "0.375", "std": "0.0" }, "atento": { "pos": "a", "pol": "0.417", "std": "0.065" }, "atraente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "atribuíbel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "atribuíble": { "pos": "a", "pol": "0.375", "std": "0.0" }, "atropelo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "atávico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "audibilidade": { "pos": "n", "pol": "0.375", "std": "0.0" }, "autónomo": { "pos": "a", "pol": "0.292", "std": "0.26" }, "auxiliado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "axeitar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "axente activo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "axuda médica": { "pos": "n", "pol": "0.375", "std": "0.0" }, "axustar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "azul": { "pos": "a", "pol": "0.375", "std": "0.0" }, "azulado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "baza": { "pos": "n", "pol": "0.375", "std": "0.0" }, "beleza": { "pos": "n", "pol": "0.417", "std": "0.125" }, "ben intencionado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "benaventuranza": { "pos": "n", "pol": "0.375", "std": "0.0" }, "benigno": { "pos": "a", "pol": "0.333", "std": "0.439" }, "bioquímico": { "pos": "n", "pol": "0.375", "std": "0.0" }, "blindado": { "pos": "a", "pol": "0.313", "std": "0.0" }, "borracho": { "pos": "a", "pol": "0.438", "std": "0.0" }, "brillante": { "pos": "a", "pol": "0.281", "std": "0.072" }, "cabalístico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cacarexo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cada hora": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cada mes": { "pos": "a", "pol": "0.375", "std": "0.0" }, "caligrafía": { "pos": "n", "pol": "0.375", "std": "0.0" }, "calmo": { "pos": "a", "pol": "0.313", "std": "0.088" }, "caloso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cambiado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cambiante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "candente": { "pos": "a", "pol": "0.313", "std": "0.0" }, "capaz": { "pos": "a", "pol": "0.292", "std": "0.331" }, "capital": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cara adiante": { "pos": "a", "pol": "0.313", "std": "0.088" }, "carbón de vapor": { "pos": "n", "pol": "0.375", "std": "0.0" }, "carnoso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "caseiro": { "pos": "a", "pol": "0.375", "std": "0.0" }, "categoremático": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cauteloso": { "pos": "a", "pol": "0.438", "std": "0.088" }, "centrar a atención": { "pos": "v", "pol": "0.375", "std": "0.0" }, "centrista": { "pos": "a", "pol": "0.375", "std": "0.0" }, "centrífugo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "centrípeta": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cerimonia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cerimonia relixiosa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cerimonial": { "pos": "n", "pol": "0.375", "std": "0.0" }, "chairo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "chan": { "pos": "a", "pol": "0.375", "std": "0.0" }, "chatarra": { "pos": "n", "pol": "0.375", "std": "0.0" }, "choroso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "chosco": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cidadán": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cigomorfo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cirúrxico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "citocromo C": { "pos": "n", "pol": "0.375", "std": "0.0" }, "claro": { "pos": "a", "pol": "0.406", "std": "0.157" }, "clemente": { "pos": "a", "pol": "0.438", "std": "0.177" }, "coercitivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "coexistente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "coherente": { "pos": "a", "pol": "0.45", "std": "0.105" }, "coidado médico": { "pos": "n", "pol": "0.375", "std": "0.0" }, "colectivo": { "pos": "a", "pol": "0.313", "std": "0.088" }, "colorido": { "pos": "n", "pol": "0.25", "std": "0.0" }, "colosal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "combinativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "combinatorio": { "pos": "a", "pol": "0.375", "std": "0.0" }, "completo": { "pos": "a", "pol": "0.417", "std": "0.217" }, "comprensible": { "pos": "a", "pol": "0.375", "std": "0.177" }, "comprensíbel": { "pos": "a", "pol": "0.375", "std": "0.177" }, "comprometido": { "pos": "a", "pol": "0.417", "std": "0.125" }, "común": { "pos": "a", "pol": "0.375", "std": "0.088" }, "con cara redonda": { "pos": "a", "pol": "0.375", "std": "0.0" }, "con columnas": { "pos": "a", "pol": "0.375", "std": "0.0" }, "con costura": { "pos": "a", "pol": "0.375", "std": "0.0" }, "con deda": { "pos": "a", "pol": "0.375", "std": "0.0" }, "con dedo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "con obxectivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "con orellas": { "pos": "a", "pol": "0.375", "std": "0.0" }, "con prexuízos": { "pos": "a", "pol": "0.375", "std": "0.0" }, "con propósito": { "pos": "a", "pol": "0.375", "std": "0.0" }, "con seguro": { "pos": "a", "pol": "0.375", "std": "0.0" }, "concentrado": { "pos": "a", "pol": "0.313", "std": "0.177" }, "concepto": { "pos": "n", "pol": "0.375", "std": "0.0" }, "conciso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "concordar": { "pos": "v", "pol": "0.292", "std": "0.191" }, "concreto": { "pos": "a", "pol": "0.375", "std": "0.0" }, "condicional": { "pos": "a", "pol": "0.313", "std": "0.0" }, "conectar": { "pos": "v", "pol": "0.313", "std": "0.0" }, "confiar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "conformista": { "pos": "a", "pol": "0.375", "std": "0.0" }, "confucianismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "congruente": { "pos": "a", "pol": "0.438", "std": "0.177" }, "connoisseur": { "pos": "n", "pol": "0.375", "std": "0.0" }, "consciente": { "pos": "a", "pol": "0.45", "std": "0.056" }, "conseguir": { "pos": "v", "pol": "0.313", "std": "0.442" }, "conselleiro": { "pos": "n", "pol": "0.375", "std": "0.0" }, "consentimento": { "pos": "n", "pol": "0.375", "std": "0.0" }, "considerado": { "pos": "a", "pol": "0.375", "std": "0.088" }, "constituído": { "pos": "a", "pol": "0.375", "std": "0.0" }, "consultor": { "pos": "n", "pol": "0.375", "std": "0.0" }, "consultoría": { "pos": "n", "pol": "0.375", "std": "0.0" }, "consumado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "consumir": { "pos": "v", "pol": "0.375", "std": "0.0" }, "contemplativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "conter o vómito": { "pos": "v", "pol": "0.375", "std": "0.0" }, "controvertido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "conveniencia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "convincente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "conxestionado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "coralino": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cornudo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "corpóreo": { "pos": "a", "pol": "0.375", "std": "0.088" }, "costa arriba": { "pos": "a", "pol": "0.375", "std": "0.0" }, "coñecido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "creación artística": { "pos": "n", "pol": "0.375", "std": "0.0" }, "crible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "crédulo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "críbel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cualitativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cuestionable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cuestionábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cultivable": { "pos": "a", "pol": "0.438", "std": "0.088" }, "cultivábel": { "pos": "a", "pol": "0.438", "std": "0.088" }, "culto": { "pos": "a", "pol": "0.438", "std": "0.088" }, "cura": { "pos": "n", "pol": "0.292", "std": "0.315" }, "cálculo": { "pos": "n", "pol": "0.313", "std": "0.088" }, "célebre": { "pos": "a", "pol": "0.313", "std": "0.53" }, "cómico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "de arriba": { "pos": "a", "pol": "0.375", "std": "0.0" }, "de baixo custo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "de devoción": { "pos": "a", "pol": "0.375", "std": "0.0" }, "de enriba": { "pos": "a", "pol": "0.375", "std": "0.0" }, "de investigación": { "pos": "a", "pol": "0.375", "std": "0.0" }, "de luxo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "de merda": { "pos": "a", "pol": "0.375", "std": "0.0" }, "de metal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "de máis": { "pos": "a", "pol": "0.375", "std": "0.088" }, "de ollos secos": { "pos": "a", "pol": "0.375", "std": "0.0" }, "de orgullo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "de pel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "de punta": { "pos": "a", "pol": "0.375", "std": "0.0" }, "de rapaza": { "pos": "a", "pol": "0.375", "std": "0.0" }, "de sangue quente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "de seda": { "pos": "a", "pol": "0.375", "std": "0.0" }, "de simetría bilateral": { "pos": "a", "pol": "0.375", "std": "0.0" }, "debido": { "pos": "a", "pol": "0.375", "std": "0.442" }, "decorado": { "pos": "a", "pol": "0.438", "std": "0.088" }, "decrépito": { "pos": "a", "pol": "0.375", "std": "0.0" }, "deixar entrar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "deleitarse": { "pos": "v", "pol": "0.375", "std": "0.0" }, "deliñalo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "deliñábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "demagogo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "demasiado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dependente": { "pos": "a", "pol": "0.292", "std": "0.072" }, "depresivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "derivado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "derrogable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "derrogábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "desacostumado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "desbordante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "descansado": { "pos": "a", "pol": "0.438", "std": "0.088" }, "descansar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "descendente": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "descentralizador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "desencantado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "desenvolto": { "pos": "a", "pol": "0.313", "std": "0.088" }, "desenvolvido": { "pos": "a", "pol": "0.313", "std": "0.088" }, "desfrutar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "deshumanizado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "despexado": { "pos": "a", "pol": "0.438", "std": "0.0" }, "destacar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "destetado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "destro": { "pos": "a", "pol": "0.458", "std": "0.439" }, "detectable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "detectábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "determinismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dexenerado": { "pos": "n", "pol": "0.375", "std": "0.0" }, "diabático": { "pos": "a", "pol": "0.375", "std": "0.0" }, "diacrónico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "diferenciado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "difundido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dinámico": { "pos": "a", "pol": "0.313", "std": "0.0" }, "dirimible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dirimíbel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dirixente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "disidente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "distante": { "pos": "a", "pol": "0.292", "std": "0.191" }, "disxuntivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "diversión": { "pos": "n", "pol": "0.375", "std": "0.0" }, "do mar": { "pos": "a", "pol": "0.375", "std": "0.0" }, "doado": { "pos": "a", "pol": "0.438", "std": "0.088" }, "domado": { "pos": "a", "pol": "0.313", "std": "0.0" }, "domesticado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "doméstico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dotado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dourado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ebrio": { "pos": "a", "pol": "0.375", "std": "0.0" }, "económico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "efeminado": { "pos": "a", "pol": "0.313", "std": "0.088" }, "efusivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "elasticidade": { "pos": "n", "pol": "0.313", "std": "0.442" }, "elegante": { "pos": "a", "pol": "0.475", "std": "0.112" }, "elemento favorable": { "pos": "n", "pol": "0.375", "std": "0.0" }, "elemento favorábel": { "pos": "n", "pol": "0.375", "std": "0.0" }, "elisión": { "pos": "n", "pol": "0.375", "std": "0.0" }, "embalado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "emetrópico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "empaquetado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "empatía": { "pos": "n", "pol": "0.375", "std": "0.0" }, "empinado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "empregable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "empregábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "en condicións de navegar": { "pos": "a", "pol": "0.375", "std": "0.0" }, "en dous": { "pos": "a", "pol": "0.375", "std": "0.0" }, "en orde": { "pos": "a", "pol": "0.375", "std": "0.0" }, "en transformación": { "pos": "a", "pol": "0.375", "std": "0.0" }, "encantado": { "pos": "a", "pol": "0.438", "std": "0.088" }, "encolado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "endogámico": { "pos": "a", "pol": "0.313", "std": "0.088" }, "endógamo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "enfeitizado": { "pos": "a", "pol": "0.375", "std": "0.088" }, "enluarado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "enorme": { "pos": "a", "pol": "0.438", "std": "0.088" }, "entretemento": { "pos": "n", "pol": "0.375", "std": "0.0" }, "enviado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "equidistante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "equilibrado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "escarpado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "escravo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "esixente": { "pos": "a", "pol": "0.333", "std": "0.191" }, "especificado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "específico": { "pos": "a", "pol": "0.375", "std": "0.265" }, "esperable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "esperado": { "pos": "a", "pol": "0.313", "std": "0.088" }, "esperto": { "pos": "a", "pol": "0.292", "std": "0.072" }, "esperábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "establecido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "estilizado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "estimado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "estral": { "pos": "a", "pol": "0.375", "std": "0.0" }, "estrepitoso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "estupendo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "eupneico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "evidente": { "pos": "a", "pol": "0.375", "std": "0.157" }, "evitable": { "pos": "a", "pol": "0.375", "std": "0.088" }, "evitábel": { "pos": "a", "pol": "0.375", "std": "0.088" }, "evocador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "exactitude": { "pos": "n", "pol": "0.375", "std": "0.0" }, "excesivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "executable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "executábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "exemplar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "existente": { "pos": "a", "pol": "0.375", "std": "0.125" }, "exonerar": { "pos": "v", "pol": "0.375", "std": "0.265" }, "explicativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "explotación excesiva": { "pos": "n", "pol": "0.375", "std": "0.0" }, "expresable": { "pos": "a", "pol": "0.458", "std": "0.217" }, "expresivo": { "pos": "a", "pol": "0.313", "std": "0.0" }, "expresábel": { "pos": "a", "pol": "0.458", "std": "0.217" }, "exquisito": { "pos": "a", "pol": "0.375", "std": "0.0" }, "extensible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "extensíbel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "facer soar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "facheiro": { "pos": "a", "pol": "0.375", "std": "0.0" }, "facilitar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "faiscante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "famoso": { "pos": "a", "pol": "0.313", "std": "0.53" }, "farsa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fazaña": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fecundo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "feira": { "pos": "n", "pol": "0.375", "std": "0.0" }, "feito á man": { "pos": "a", "pol": "0.375", "std": "0.0" }, "feminino": { "pos": "a", "pol": "0.375", "std": "0.0" }, "festa": { "pos": "n", "pol": "0.333", "std": "0.191" }, "fiabilidade": { "pos": "n", "pol": "0.313", "std": "0.442" }, "filial": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fillo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "filosofía": { "pos": "n", "pol": "0.313", "std": "0.088" }, "filántropo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "flegmático": { "pos": "a", "pol": "0.375", "std": "0.0" }, "flexible": { "pos": "a", "pol": "0.275", "std": "0.224" }, "flexionado": { "pos": "a", "pol": "0.313", "std": "0.177" }, "flexivo": { "pos": "a", "pol": "0.375", "std": "0.088" }, "formado": { "pos": "a", "pol": "0.313", "std": "0.442" }, "fortalecido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fosforescente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fugaz": { "pos": "a", "pol": "0.375", "std": "0.0" }, "funcional": { "pos": "a", "pol": "0.313", "std": "0.265" }, "funcionalidade": { "pos": "n", "pol": "0.375", "std": "0.0" }, "funcionar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "fácil": { "pos": "a", "pol": "0.417", "std": "0.072" }, "gabinete": { "pos": "n", "pol": "0.375", "std": "0.0" }, "galopante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "gardería infantil": { "pos": "n", "pol": "0.375", "std": "0.0" }, "garrido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "gastrónomo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gañado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "global": { "pos": "a", "pol": "0.375", "std": "0.0" }, "gourmet": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gozar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "grande": { "pos": "a", "pol": "0.375", "std": "0.125" }, "habitual": { "pos": "a", "pol": "0.375", "std": "0.144" }, "harmonía": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hidrofóbico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "himno": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hipertónico": { "pos": "a", "pol": "0.313", "std": "0.088" }, "hipotético": { "pos": "a", "pol": "0.375", "std": "0.0" }, "histórico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "homocerco": { "pos": "a", "pol": "0.375", "std": "0.0" }, "homoxéneo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "humanidades": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hídrico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "igual": { "pos": "a", "pol": "0.292", "std": "0.144" }, "iluminado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "imparcial": { "pos": "a", "pol": "0.313", "std": "0.0" }, "imparcialidade": { "pos": "n", "pol": "0.375", "std": "0.0" }, "impecable": { "pos": "a", "pol": "0.313", "std": "0.088" }, "impecábel": { "pos": "a", "pol": "0.313", "std": "0.088" }, "impenitente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "impertinente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "importancia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "impoñente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "imprimatur": { "pos": "n", "pol": "0.375", "std": "0.0" }, "impune": { "pos": "a", "pol": "0.375", "std": "0.0" }, "inclusivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "incluír": { "pos": "v", "pol": "0.375", "std": "0.0" }, "incontaminado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "incrementable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "incrementábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "incrible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "incríbel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "incólume": { "pos": "a", "pol": "0.375", "std": "0.0" }, "indemne": { "pos": "a", "pol": "0.375", "std": "0.0" }, "independencia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "indisciplinado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "indulxente consigo mesmo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "industrial": { "pos": "n", "pol": "0.375", "std": "0.0" }, "indutor": { "pos": "n", "pol": "0.375", "std": "0.0" }, "inequívoco": { "pos": "a", "pol": "0.375", "std": "0.088" }, "inestimable": { "pos": "a", "pol": "0.375", "std": "0.177" }, "inestimábel": { "pos": "a", "pol": "0.375", "std": "0.177" }, "inflacionista": { "pos": "a", "pol": "0.375", "std": "0.0" }, "inflamable": { "pos": "a", "pol": "0.438", "std": "0.0" }, "inflamábel": { "pos": "a", "pol": "0.438", "std": "0.0" }, "inmaculado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "inmenso": { "pos": "a", "pol": "0.417", "std": "0.072" }, "inquisitivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "insinuante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "instrutivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "integral": { "pos": "a", "pol": "0.313", "std": "0.442" }, "intelección": { "pos": "n", "pol": "0.375", "std": "0.0" }, "interesarse": { "pos": "v", "pol": "0.375", "std": "0.0" }, "intermedio": { "pos": "a", "pol": "0.375", "std": "0.0" }, "interpersoal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "interrogante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "inveterado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "irreprochable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "irreprochábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "labor": { "pos": "n", "pol": "0.292", "std": "0.25" }, "lavable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "lavábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "lecer": { "pos": "n", "pol": "0.375", "std": "0.0" }, "leiteira": { "pos": "a", "pol": "0.375", "std": "0.0" }, "liberar": { "pos": "v", "pol": "0.469", "std": "0.102" }, "ligar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "limitado": { "pos": "a", "pol": "0.35", "std": "0.205" }, "limpo": { "pos": "a", "pol": "0.438", "std": "0.12" }, "lindante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "listo": { "pos": "a", "pol": "0.438", "std": "0.0" }, "longo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "luminoso": { "pos": "a", "pol": "0.292", "std": "0.0" }, "luxoso": { "pos": "a", "pol": "0.438", "std": "0.088" }, "líquido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "malicioso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malva": { "pos": "a", "pol": "0.375", "std": "0.0" }, "manicura": { "pos": "n", "pol": "0.375", "std": "0.0" }, "maquillado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "marital": { "pos": "a", "pol": "0.375", "std": "0.0" }, "marrón": { "pos": "a", "pol": "0.375", "std": "0.0" }, "masoquista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "materia prima": { "pos": "n", "pol": "0.375", "std": "0.0" }, "maxenta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mediado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "meditativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mellorado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "memorable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "memorábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mensual": { "pos": "a", "pol": "0.375", "std": "0.0" }, "meritocracia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mesomórfico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mestre": { "pos": "a", "pol": "0.25", "std": "0.0" }, "metálico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "metódico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "misterio": { "pos": "n", "pol": "0.375", "std": "0.0" }, "miúdo": { "pos": "a", "pol": "0.375", "std": "0.177" }, "modificable": { "pos": "a", "pol": "0.438", "std": "0.0" }, "modificábel": { "pos": "a", "pol": "0.438", "std": "0.0" }, "moito": { "pos": "a", "pol": "0.375", "std": "0.0" }, "momentáneo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "muscular": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mutable": { "pos": "a", "pol": "0.313", "std": "0.0" }, "mutábel": { "pos": "a", "pol": "0.313", "std": "0.0" }, "máis": { "pos": "a", "pol": "0.375", "std": "0.0" }, "máis alá": { "pos": "a", "pol": "0.375", "std": "0.0" }, "máis lonxe": { "pos": "a", "pol": "0.375", "std": "0.0" }, "máxico": { "pos": "a", "pol": "0.375", "std": "0.354" }, "médico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "na rúa": { "pos": "a", "pol": "0.375", "std": "0.0" }, "nacionalismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "narrativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "natural": { "pos": "a", "pol": "0.375", "std": "0.53" }, "necesario": { "pos": "a", "pol": "0.375", "std": "0.0" }, "negable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "negábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "neto": { "pos": "a", "pol": "0.375", "std": "0.0" }, "nidiamente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "no poder": { "pos": "a", "pol": "0.375", "std": "0.0" }, "nobre": { "pos": "a", "pol": "0.375", "std": "0.177" }, "noción": { "pos": "n", "pol": "0.375", "std": "0.0" }, "non afectado": { "pos": "a", "pol": "0.438", "std": "0.265" }, "non arborizado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "non blindado": { "pos": "a", "pol": "0.313", "std": "0.088" }, "non cortado": { "pos": "a", "pol": "0.313", "std": "0.177" }, "non crítico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "non datable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "non datábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "non estrinxido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "non mundano": { "pos": "a", "pol": "0.375", "std": "0.0" }, "non sectario": { "pos": "a", "pol": "0.375", "std": "0.0" }, "non sentencioso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "non violento": { "pos": "a", "pol": "0.375", "std": "0.0" }, "normal": { "pos": "a", "pol": "0.406", "std": "0.063" }, "nudez": { "pos": "n", "pol": "0.375", "std": "0.0" }, "nutritivo": { "pos": "a", "pol": "0.313", "std": "0.354" }, "obrigatorio": { "pos": "a", "pol": "0.333", "std": "0.0" }, "obxectivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ocasión": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ocorrencia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ocre": { "pos": "a", "pol": "0.375", "std": "0.0" }, "oficio": { "pos": "n", "pol": "0.375", "std": "0.0" }, "onomatopea": { "pos": "n", "pol": "0.375", "std": "0.0" }, "oportunidade": { "pos": "n", "pol": "0.375", "std": "0.0" }, "organizado": { "pos": "a", "pol": "0.417", "std": "0.191" }, "orientado": { "pos": "a", "pol": "0.417", "std": "0.144" }, "ortodoxo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "orzamento": { "pos": "n", "pol": "0.375", "std": "0.0" }, "paciente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pacto": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pagamento": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pago": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pano facial": { "pos": "n", "pol": "0.375", "std": "0.0" }, "papel de construción": { "pos": "n", "pol": "0.375", "std": "0.0" }, "papel de mecanografía": { "pos": "n", "pol": "0.375", "std": "0.0" }, "papel mecanográfico": { "pos": "n", "pol": "0.375", "std": "0.0" }, "parable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "paraíso": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pardo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "parecido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "participar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "parábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pasaxeiro": { "pos": "a", "pol": "0.375", "std": "0.0" }, "paternal": { "pos": "a", "pol": "0.333", "std": "0.191" }, "paternalismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "paterno": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pedante": { "pos": "a", "pol": "0.375", "std": "0.177" }, "pegañento": { "pos": "a", "pol": "0.375", "std": "0.0" }, "penetrable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "penetrábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pensativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "perceptible": { "pos": "a", "pol": "0.438", "std": "0.0" }, "perceptíbel": { "pos": "a", "pol": "0.438", "std": "0.0" }, "perdoable": { "pos": "a", "pol": "0.313", "std": "0.088" }, "perdoábel": { "pos": "a", "pol": "0.313", "std": "0.088" }, "periódico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "permitir": { "pos": "v", "pol": "0.406", "std": "0.258" }, "pertinente": { "pos": "a", "pol": "0.438", "std": "0.088" }, "pervertido": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pisada": { "pos": "n", "pol": "0.375", "std": "0.0" }, "planeado": { "pos": "a", "pol": "0.313", "std": "0.088" }, "planificado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "plausibilidade": { "pos": "n", "pol": "0.375", "std": "0.0" }, "podente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "poderoso": { "pos": "a", "pol": "0.313", "std": "0.0" }, "polémico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "por baixo da cabeza": { "pos": "a", "pol": "0.375", "std": "0.0" }, "por riba da cabeza": { "pos": "a", "pol": "0.375", "std": "0.0" }, "posíbel": { "pos": "a", "pol": "0.469", "std": "0.161" }, "potente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pracer": { "pos": "n", "pol": "0.375", "std": "0.0" }, "precedente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "predisposto": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pregable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pregábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "premeditado": { "pos": "a", "pol": "0.313", "std": "0.0" }, "presidencial": { "pos": "a", "pol": "0.375", "std": "0.0" }, "prestixio": { "pos": "n", "pol": "0.375", "std": "0.0" }, "presumible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "presumíbel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pretensioso": { "pos": "a", "pol": "0.375", "std": "0.088" }, "previsible": { "pos": "a", "pol": "0.438", "std": "0.088" }, "previsor": { "pos": "a", "pol": "0.375", "std": "0.0" }, "previsto": { "pos": "a", "pol": "0.375", "std": "0.0" }, "previsíbel": { "pos": "a", "pol": "0.438", "std": "0.088" }, "prexuizoso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "principal": { "pos": "a", "pol": "0.469", "std": "0.102" }, "produción artística": { "pos": "n", "pol": "0.375", "std": "0.0" }, "produtivo": { "pos": "a", "pol": "0.438", "std": "0.088" }, "produto básico": { "pos": "n", "pol": "0.375", "std": "0.0" }, "proeza": { "pos": "n", "pol": "0.292", "std": "0.125" }, "profesión": { "pos": "n", "pol": "0.375", "std": "0.0" }, "profundo": { "pos": "a", "pol": "0.292", "std": "0.144" }, "progresista": { "pos": "a", "pol": "0.313", "std": "0.265" }, "prolongado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pronunciable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pronunciábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "propensión": { "pos": "n", "pol": "0.313", "std": "0.0" }, "propio": { "pos": "a", "pol": "0.313", "std": "0.177" }, "proporcionado": { "pos": "a", "pol": "0.375", "std": "0.144" }, "proporcionar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "prover": { "pos": "v", "pol": "0.375", "std": "0.0" }, "provincial": { "pos": "a", "pol": "0.375", "std": "0.0" }, "práctico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "publicable": { "pos": "a", "pol": "0.438", "std": "0.0" }, "publicitado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "publicábel": { "pos": "a", "pol": "0.438", "std": "0.0" }, "puntual": { "pos": "a", "pol": "0.375", "std": "0.0" }, "que funciona": { "pos": "a", "pol": "0.375", "std": "0.0" }, "que mete medo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "que respira": { "pos": "a", "pol": "0.375", "std": "0.0" }, "queridiño": { "pos": "n", "pol": "0.375", "std": "0.0" }, "quincenalmente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "racial": { "pos": "a", "pol": "0.375", "std": "0.0" }, "radiante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ratificación": { "pos": "n", "pol": "0.375", "std": "0.0" }, "realista": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reanimado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "recatado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "receptivo": { "pos": "a", "pol": "0.375", "std": "0.088" }, "recesivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "recoñecido": { "pos": "a", "pol": "0.458", "std": "0.072" }, "recto": { "pos": "a", "pol": "0.281", "std": "0.277" }, "redimir": { "pos": "v", "pol": "0.375", "std": "0.0" }, "reducible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reducíbel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "referendo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "reformado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "regresivo": { "pos": "a", "pol": "0.313", "std": "0.265" }, "regulado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "regulamentario": { "pos": "a", "pol": "0.375", "std": "0.0" }, "regular": { "pos": "a", "pol": "0.313", "std": "0.102" }, "reinante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "relacionado": { "pos": "a", "pol": "0.313", "std": "0.0" }, "relevante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "relixioso": { "pos": "a", "pol": "0.313", "std": "0.442" }, "remoto": { "pos": "a", "pol": "0.375", "std": "0.088" }, "remuneración": { "pos": "n", "pol": "0.292", "std": "0.072" }, "renovado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "repoludo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "represivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reproducible": { "pos": "a", "pol": "0.313", "std": "0.53" }, "reproducíbel": { "pos": "a", "pol": "0.313", "std": "0.53" }, "reprodutivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "requirido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reservado": { "pos": "a", "pol": "0.469", "std": "0.12" }, "resolto": { "pos": "a", "pol": "0.313", "std": "0.0" }, "restrinxido": { "pos": "a", "pol": "0.313", "std": "0.0" }, "retractable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "retractábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "retribución": { "pos": "n", "pol": "0.375", "std": "0.0" }, "revelador": { "pos": "a", "pol": "0.438", "std": "0.0" }, "reverente": { "pos": "a", "pol": "0.438", "std": "0.0" }, "reversible": { "pos": "a", "pol": "0.438", "std": "0.088" }, "reversíbel": { "pos": "a", "pol": "0.438", "std": "0.088" }, "revogable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "revogábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "revolucionario": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rexenerado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rico": { "pos": "a", "pol": "0.469", "std": "0.102" }, "riqueza": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ritual relixioso": { "pos": "n", "pol": "0.375", "std": "0.0" }, "robusto": { "pos": "a", "pol": "0.344", "std": "0.063" }, "rápido": { "pos": "a", "pol": "0.292", "std": "0.26" }, "rítmico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "saboroso": { "pos": "a", "pol": "0.375", "std": "0.088" }, "sacerdotal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sagrado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "salmo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "salvable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "salvábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sanitario": { "pos": "a", "pol": "0.375", "std": "0.0" }, "santo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sedoso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "seguro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "semanalmente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "semellante": { "pos": "n", "pol": "0.375", "std": "0.0" }, "semestral": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sen bágoas": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sen esforzo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sen fondo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sen palabras": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sen sangue": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sen sol": { "pos": "a", "pol": "0.375", "std": "0.0" }, "senil": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sensibilizar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "sensible": { "pos": "a", "pol": "0.333", "std": "0.351" }, "ser competente": { "pos": "v", "pol": "0.375", "std": "0.0" }, "sereno": { "pos": "a", "pol": "0.313", "std": "0.088" }, "silencioso": { "pos": "a", "pol": "0.438", "std": "0.088" }, "similar": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sinónimo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "social": { "pos": "a", "pol": "0.313", "std": "0.265" }, "soltar": { "pos": "v", "pol": "0.438", "std": "0.0" }, "somnolento": { "pos": "a", "pol": "0.313", "std": "0.088" }, "sondable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sondábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sorprendente": { "pos": "a", "pol": "0.313", "std": "0.088" }, "sorriso": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sospeitoso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sostible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sostíbel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "subministrar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "substituíbel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "substituíble": { "pos": "a", "pol": "0.375", "std": "0.0" }, "subsónico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "subtractivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "subxectivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "supervisado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "supranacional": { "pos": "a", "pol": "0.375", "std": "0.0" }, "suprimido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "susceptible": { "pos": "a", "pol": "0.333", "std": "0.144" }, "susceptíbel": { "pos": "a", "pol": "0.333", "std": "0.144" }, "sustentado": { "pos": "a", "pol": "0.375", "std": "0.177" }, "sólido": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sónico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "taciturno": { "pos": "a", "pol": "0.313", "std": "0.088" }, "tanto... coma": { "pos": "a", "pol": "0.375", "std": "0.0" }, "teatral": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tentador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ter capacidade para": { "pos": "v", "pol": "0.375", "std": "0.0" }, "testador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "titánico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tolerante": { "pos": "a", "pol": "0.438", "std": "0.0" }, "transixente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "transónico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tratado": { "pos": "n", "pol": "0.25", "std": "0.177" }, "tratado internacional": { "pos": "n", "pol": "0.375", "std": "0.0" }, "turista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "unido": { "pos": "a", "pol": "0.333", "std": "0.144" }, "unitario": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unívoco": { "pos": "a", "pol": "0.375", "std": "0.0" }, "urxente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "utilidade": { "pos": "n", "pol": "0.313", "std": "0.0" }, "vagaroso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "valido": { "pos": "n", "pol": "0.375", "std": "0.0" }, "veracidade": { "pos": "n", "pol": "0.313", "std": "0.088" }, "vermello": { "pos": "a", "pol": "0.375", "std": "0.0" }, "viaxe de pracer": { "pos": "n", "pol": "0.375", "std": "0.0" }, "viciante": { "pos": "a", "pol": "0.375", "std": "0.177" }, "vinculante": { "pos": "a", "pol": "0.313", "std": "0.0" }, "violable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "violábel": { "pos": "a", "pol": "0.375", "std": "0.0" }, "viril": { "pos": "a", "pol": "0.313", "std": "0.177" }, "viscoso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "visible": { "pos": "a", "pol": "0.438", "std": "0.0" }, "visíbel": { "pos": "a", "pol": "0.438", "std": "0.0" }, "vivacidade": { "pos": "n", "pol": "0.375", "std": "0.0" }, "vivir": { "pos": "v", "pol": "0.313", "std": "0.217" }, "vivo": { "pos": "a", "pol": "0.375", "std": "0.144" }, "vizoso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "vogal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "voleibol": { "pos": "n", "pol": "0.375", "std": "0.0" }, "voluntario": { "pos": "a", "pol": "0.313", "std": "0.354" }, "válido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "xeneroso": { "pos": "a", "pol": "0.313", "std": "0.177" }, "xeral": { "pos": "a", "pol": "0.375", "std": "0.331" }, "xigantesco": { "pos": "a", "pol": "0.3", "std": "0.105" }, "xubileo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "xuvenil": { "pos": "a", "pol": "0.438", "std": "0.088" }, "zonal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "á man": { "pos": "a", "pol": "0.375", "std": "0.0" }, "écrino": { "pos": "a", "pol": "0.375", "std": "0.0" }, "étnico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "abandonar": { "pos": "v", "pol": "-0.271", "std": "0.102" }, "abasia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aberrante": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "abraiante": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "abrasar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "absterse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "abufardado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "acantocito": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acción de grazas": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aceiro de Damasco": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aceiro gris": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aceite de asento": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aceite de bacallau": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aceite de cobra": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acibeche": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acinesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acondroplasia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acromegalia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acromático": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "adesita": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "adiposo": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "adiviña": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "alborotar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "alcatrán de piñeiro": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aldehido fórmico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "algodón vermello de seda": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "alterar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "altercado": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "amargar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "amolar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "andesita": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anestesia": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "anomalía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anormalidade": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "antagonista": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "antracita": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aparello vestibular": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "apoplexía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arder": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "arroutada": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "arrítmico": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "arseniato de chumbo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arsina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arteria alveolar inferior": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arteria alveolaris inferior": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arteria labial inferior": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arteria labialis inferior": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "articulación mandíbular": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "articulación temporomandibular": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "articulatio temporomandibularis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "artificio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "asasino": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "asertividade": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "atrevido": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "atroz": { "pos": "a", "pol": "-0.437", "std": "0.354" }, "auga branda": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "autopsia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "avaro": { "pos": "a", "pol": "-0.417", "std": "0.217" }, "avermellamento": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "azida de hidróxeno": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "azoimida": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "balbordo": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "barba": { "pos": "n", "pol": "-0.333", "std": "0.0" }, "barba de varios días": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "barbarie": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "barbarote": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "barbela": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "botox": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "brutalidade": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bruxaría": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bruxería": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bugallo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "burguesía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "burro": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cachote": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "calcitonina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "camisón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carbonato de lítio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carburo de ferro": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carbón vexetal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carena do fórnice": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carena do fórnix": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carina fornicis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carneiro bravo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carroña": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cascallo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "casiterita": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "catalepsia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "catastrófico": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "cefalalxia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cementita": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cera de candelilla": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cera de goma laca": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chaleco": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chamizo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chapeu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chaqueta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chicha": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chifre": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chuvia torrencial": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cicloosixenase-2": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cinsa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cinzas": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "citoloxía cervical": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "citoloxía de Papanicolaou": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "citoloxía do cérvix": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "clandestino": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "coa cara lavada": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "colado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "colcha": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "colete": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "combinación XXX": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "concepción errónea": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "conxelado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "coral precioso": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "coral vermello": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cremación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "crime": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "crucial": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "célula diana": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cólera": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "danado": { "pos": "a", "pol": "-0.458", "std": "0.191" }, "dano": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "deforme": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "delito": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "demanda": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "demonización": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dente": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desaliñado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "desconsiderado": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "descuberto": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "desculparse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "desenfundado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "desertización": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desgraza": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "desmaio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desorde cerebral": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desordenado": { "pos": "a", "pol": "-0.312", "std": "0.094" }, "desorganizado": { "pos": "a", "pol": "-0.292", "std": "0.125" }, "despectivo": { "pos": "a", "pol": "-0.375", "std": "0.265" }, "despedido": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "despoxo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desprevido": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "desproporcionado": { "pos": "a", "pol": "-0.469", "std": "0.063" }, "digresión": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disonante": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "disparate": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "distópico": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "dor": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "dureza": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "débil": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "egoísta": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "elfo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "empeorado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "en vías de desenvolvemento": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "enagua": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "encefalopatía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enfastiar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "enfermidade cerebral": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enfermo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "enigma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "entullo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "epidemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "epilepsia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ergotismo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "erróneo": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "escuridade": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "escusarse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "esferócito": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "esmalte dos dentes": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "espirito": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "esteatopixia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "esterilidade": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "estrago": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "eunuco": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "expor": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "fado": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "falso": { "pos": "a", "pol": "-0.328", "std": "0.164" }, "falta": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "falto de preparación": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "ferida": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "flor salvaxe": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "flor silvestre": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "flora": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "flyspeck": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "forense": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "formaldehido": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "formigo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fortificación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fracasar": { "pos": "v", "pol": "-0.375", "std": "0.125" }, "frenético": { "pos": "a", "pol": "-0.333", "std": "0.072" }, "funeraria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "furacán": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fóra de forma": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "fósxeno": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gas mefítico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gas velenoso": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "glicósido cardíaco": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "golpe mortal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "goma de labdano": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "goma laca de Madagascar": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gravidade": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "graxo": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "gris de Davy": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "grupo terrorista": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "guerra": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "guerreiro": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "haber temporal": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "halitose": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "harpía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hepatoflavina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hidruro de arsénico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hipotenso": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "hipotónico": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "hulla": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "idea falsa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ignominia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ignorar": { "pos": "v", "pol": "-0.292", "std": "0.217" }, "illarga": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "imparable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "imparábel": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "imperceptible": { "pos": "a", "pol": "-0.417", "std": "0.072" }, "imperceptíbel": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "imperdoable": { "pos": "a", "pol": "-0.458", "std": "0.072" }, "imperdoábel": { "pos": "a", "pol": "-0.458", "std": "0.072" }, "implacable": { "pos": "a", "pol": "-0.344", "std": "0.161" }, "imprevisto": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "imprudente": { "pos": "a", "pol": "-0.417", "std": "0.144" }, "inadaptable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inadaptado": { "pos": "a", "pol": "-0.292", "std": "0.0" }, "inadaptábel": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inadoptable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inadoptábel": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inapelable": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "inapelábel": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "inaplicable": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "inaplicábel": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "inapreciable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inapreciábel": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inaxeitado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "incapaz": { "pos": "a", "pol": "-0.3", "std": "0.105" }, "incineración": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inclemente": { "pos": "a", "pol": "-0.292", "std": "0.26" }, "incoloro": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "incompatible": { "pos": "a", "pol": "-0.35", "std": "0.19" }, "incompatíbel": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "incompetente nas matemáticas": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "incompetente nos cálculos": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "incompetente para as matemáticas": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "incompetente para os cálculos": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "incomprensible": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "incomprensíbel": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "inconsciente": { "pos": "a", "pol": "-0.469", "std": "0.144" }, "inconsecuente": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inconvertible": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inconvertíbel": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "indebido": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "indecoroso": { "pos": "a", "pol": "-0.312", "std": "0.228" }, "indefinido": { "pos": "a", "pol": "-0.292", "std": "0.125" }, "indiscriminado": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "indomable": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "indomábel": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "ineficaz": { "pos": "a", "pol": "-0.333", "std": "0.072" }, "ineficiente": { "pos": "a", "pol": "-0.417", "std": "0.072" }, "inesperable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inesperábel": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inevitable": { "pos": "a", "pol": "-0.333", "std": "0.191" }, "inevitábel": { "pos": "a", "pol": "-0.333", "std": "0.191" }, "inexacto": { "pos": "a", "pol": "-0.375", "std": "0.354" }, "inexecutable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inexecutábel": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inexpresable": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "inexpresábel": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "inflamación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "infértil": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "inimaxinable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inimaxinábel": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inmaterial": { "pos": "a", "pol": "-0.292", "std": "0.191" }, "inmerecido": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "inminencia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inmolación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inmortal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "innegable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "innegábel": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inoportuno": { "pos": "a", "pol": "-0.469", "std": "0.177" }, "inquedo": { "pos": "a", "pol": "-0.458", "std": "0.144" }, "insalubre": { "pos": "a", "pol": "-0.271", "std": "0.188" }, "insalvable": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "insalvábel": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "insensible": { "pos": "a", "pol": "-0.275", "std": "0.143" }, "insensíbel": { "pos": "a", "pol": "-0.275", "std": "0.143" }, "inservible": { "pos": "a", "pol": "-0.375", "std": "0.265" }, "inservíbel": { "pos": "a", "pol": "-0.375", "std": "0.265" }, "insociable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "insociábel": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "insomerxible": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "insomerxíbel": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "insospeitado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "instintivo": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "insubmiso": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "insán": { "pos": "a", "pol": "-0.292", "std": "0.191" }, "intemporal": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "intransitivo": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "intransixencia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "intransixente": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "involuntario": { "pos": "a", "pol": "-0.333", "std": "0.217" }, "inxenuidade": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "inútil": { "pos": "a", "pol": "-0.281", "std": "0.161" }, "irrecoñecible": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "irrecoñecíbel": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "irredutible": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "irredutíbel": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "irrepetible": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "irrepetíbel": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "kitsch": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "labdano": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lactoflavina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lavanco": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lenda": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lendario": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "lepra": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lesión": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "letal": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "levidade": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "libertinaxe": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "librar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "linchamento": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lixo": { "pos": "n", "pol": "-0.3", "std": "0.068" }, "locuacidade": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "loita armada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "magostrallo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mal aconsellado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "mal xenio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "maldito": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "man de obra": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mancha do fígado": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "manchado": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "marasmo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "material de refugallo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mediocridade": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "melena": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mentol": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "metanal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "metedura de pata": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "miserento": { "pos": "a", "pol": "-0.344", "std": "0.188" }, "monstruoso": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "morgue": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mortal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mouro": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "multa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "munición": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "músculo pterigóideo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "necesitar": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "neoplasia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neoplasma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neuralxia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neurose": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "noite": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "non acorde": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non acostumado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non adictivo": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non adoito": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non afeito": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non alugable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non alugábel": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non arandelado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non arbitrario": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non atento": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non atractivo": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "non atribuíbel": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non atribuíble": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non axustado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non confirmado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non consumado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non correspondido": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non cualificado": { "pos": "a", "pol": "-0.437", "std": "0.265" }, "non dedicado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non detectado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non empregable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non empregábel": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non en forma": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non frecuentado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non habituado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non influente": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non metido": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non pago": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non patrocinado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non perceptivo": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non produtivo": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non reanimado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non regulado": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "non residencial": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non resolto": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non reverberante": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non servil": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non solicitado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non sometido": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non supervisado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "non tratado": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "non ético": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "notorio": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "número atómico 76": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "obsceno": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "obsidiana": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ofensivo": { "pos": "a", "pol": "-0.437", "std": "0.184" }, "opresor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "orbital": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "orde das plantas": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "organización terrorista": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ortiga": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "osmio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ovoflavina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "paralelo": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "paranoide": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "parasitismo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "parvo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pato": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pegado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "perennidade": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "peripecia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "permiso": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "perturbar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "pesimista": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "peso": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "peteiro": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "planta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pleonasmo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "plexo aórtico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pneumonía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "poboación activa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "policía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pomba": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pouco práctico": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "prea": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "precisar": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "preito": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "preocupante": { "pos": "a", "pol": "-0.437", "std": "0.265" }, "principio amargo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "proba de Papanicolaou": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "produto químico irritante": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "profano": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "protesta": { "pos": "n", "pol": "-0.292", "std": "0.144" }, "pulmonía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "punto orbital": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "quebracabezas": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "quebrantamento": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "quebrantar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "queimar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "queixelo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "quincalla": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "raios x": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rapiñeiro": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rasposo": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "rebo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "reflexo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "requirir": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "resaca": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "resentir": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "residuos": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "resinita": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "resto": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "revestimento": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "riboflavina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "romper": { "pos": "v", "pol": "-0.437", "std": "0.177" }, "rudo": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "ruído": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "salaio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sartego": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sen contras": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sen contraventás": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sen dedos": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "sen dicir": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sen financiamento": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sen maquillaxe": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sen montura": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sen oralidade": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sen pagar": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sen patrón": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sen pel": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sen pulir": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sen puír": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sen reserva": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sen resolver": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sen ás": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sepulcro": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ser castigado": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "siderocito": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "silva": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sistema sensorial": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sistema vestibular": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "situación": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "snob": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sofisma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sofista": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "solo de lameira": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sombreiro": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "spelter": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "substancia húmica": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "substancia velenosa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sufrimento": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "supersticioso": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sustancia tóxica": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "síntoma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "temeridade": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "termoendurecible": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "termoendurecíbel": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "test de Papanicolau": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tintín": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tirocalcitonina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tizón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tolo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tormenta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "toxina-antitoxina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "toxina botulínica A": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "traficante": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "transgredir": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "transmigración": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "trasgo": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "trastornar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "trauma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "traumatismo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "traxedia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tremente": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "tristemente célebre": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "troupelear": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "trousar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "tumor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vacina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vago": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "varíola": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vea central da glándula suprarenal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vea hepática porta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vea labial inferior": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vea ovariana": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vea ovárica": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vea porta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vea tibial": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vea xugular anterior": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "veleno": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "vena centralis glandulae suprarenalis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vena labialis inferior": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vena ovarica": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vena portae": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vena tibialis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "verdade a medias": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "verde antigo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vergonza": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vergoñoso": { "pos": "a", "pol": "-0.375", "std": "0.354" }, "vidro": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "violar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "vitamina B2": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vitamina G": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vomitar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "vulnerar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "vómer": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "xaque mate": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "xaqueca": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "xolda": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "xordo": { "pos": "a", "pol": "-0.333", "std": "0.191" }, "ácido butírico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ácido caprico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ácido carbámico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ácido decanoico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ácido hidrazoico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ánima": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "áspero": { "pos": "a", "pol": "-0.375", "std": "0.144" }, "óxido nítrico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "a priori": { "pos": "a", "pol": "0.25", "std": "0.0" }, "abaneo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abotoado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "abrochado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "abstención": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abstraído": { "pos": "a", "pol": "0.25", "std": "0.0" }, "acalorado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "acantión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acastañado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aceptar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "acha": { "pos": "n", "pol": "0.25", "std": "0.177" }, "achegamento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acomodado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "acromio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acróbata": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adagio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adaptativo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "adhesivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "adiante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "adicional": { "pos": "a", "pol": "0.25", "std": "0.0" }, "admisibilidade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "admitir": { "pos": "v", "pol": "0.25", "std": "0.177" }, "adoito": { "pos": "a", "pol": "0.25", "std": "0.0" }, "adolescente": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adrenalina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adsorbato": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adsorbible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "adsorbíbel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "adstrinxente": { "pos": "a", "pol": "0.25", "std": "0.088" }, "afastamento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "afectado": { "pos": "a", "pol": "0.25", "std": "0.072" }, "afeito": { "pos": "a", "pol": "0.25", "std": "0.0" }, "afiliada": { "pos": "a", "pol": "0.25", "std": "0.0" }, "afumado": { "pos": "a", "pol": "0.25", "std": "0.265" }, "agasallar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "agochado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "agocharse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "aguzado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alcanforado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alcohólico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "algoritmo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aliviado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aliñado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alterado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "altivez": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amabilidade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amencer": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amigo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amniocentese": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ampliado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "amplo": { "pos": "a", "pol": "0.25", "std": "0.088" }, "anabólico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "analizado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "anamorfismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anano": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ancho": { "pos": "a", "pol": "0.25", "std": "0.088" }, "anelado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ano imperforado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antebrazo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anticuario": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antigüidade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antropomórfico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "antrorso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "antílope": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antítese": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anual": { "pos": "a", "pol": "0.25", "std": "0.177" }, "anátropo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "apampado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aparente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "apelable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "apelábel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "apesararse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "apreciable": { "pos": "a", "pol": "0.25", "std": "0.265" }, "apreciábel": { "pos": "a", "pol": "0.25", "std": "0.265" }, "aprendiz": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aprendizaxe": { "pos": "n", "pol": "0.25", "std": "0.177" }, "aprobación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apócope": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apófise transversa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apóstolo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aquí": { "pos": "a", "pol": "0.25", "std": "0.0" }, "arandelado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "arbitrio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ardente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "argolado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aridade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aritmética": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aromático": { "pos": "a", "pol": "0.25", "std": "0.0" }, "arqueiro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arquiveiro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arraigado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "arrancar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "arrepentirse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "arrepiado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "arriba": { "pos": "a", "pol": "0.25", "std": "0.0" }, "arribar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "arrincar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "arrogancia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arteria cerebral superior": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arteria comunicante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arteria ileal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arteria ileum": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arteria intestinal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arteria xexunal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ascendente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ascender": { "pos": "v", "pol": "0.25", "std": "0.0" }, "asentimento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "asesor": { "pos": "n", "pol": "0.25", "std": "0.088" }, "asignado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "asociada": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aspecto canso": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aspecto negativo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "asterión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "asumir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "atenuante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "atractor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "atónito": { "pos": "a", "pol": "0.25", "std": "0.0" }, "auga dura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "auricular": { "pos": "n", "pol": "0.25", "std": "0.0" }, "autobanco": { "pos": "n", "pol": "0.25", "std": "0.0" }, "autoengano": { "pos": "n", "pol": "0.25", "std": "0.0" }, "autoico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "autorizado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "autovía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "autoécico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ave": { "pos": "n", "pol": "0.25", "std": "0.0" }, "avir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "axente redutor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "axilidade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "axiña": { "pos": "a", "pol": "0.25", "std": "0.0" }, "axustado": { "pos": "a", "pol": "0.25", "std": "0.265" }, "axustarse": { "pos": "v", "pol": "0.25", "std": "0.354" }, "bagulla": { "pos": "n", "pol": "0.25", "std": "0.0" }, "barato": { "pos": "a", "pol": "0.25", "std": "0.0" }, "barrigudo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "barrigán": { "pos": "a", "pol": "0.25", "std": "0.0" }, "baseamento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bañeira": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bebida": { "pos": "n", "pol": "0.25", "std": "0.177" }, "bilingüismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bioética": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bisexualidade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bocha": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bondade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bondadoso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "branco": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brazo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brioche": { "pos": "n", "pol": "0.25", "std": "0.0" }, "broma": { "pos": "n", "pol": "0.25", "std": "0.177" }, "butaca": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bágoa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bóchega": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cabalete": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cabeza humana": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cadrado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cafetería": { "pos": "n", "pol": "0.25", "std": "0.0" }, "calculador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "calidade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "calígrafo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "camarada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "camarilla": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cambio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "camiño uveoscleral": { "pos": "n", "pol": "0.25", "std": "0.0" }, "campo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "candidato": { "pos": "n", "pol": "0.25", "std": "0.0" }, "canto nasal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "caprichoso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "carabina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "caricatura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "carácter sagrado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "castaño": { "pos": "a", "pol": "0.25", "std": "0.0" }, "castelo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "castrado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "casual": { "pos": "a", "pol": "0.25", "std": "0.0" }, "catedral": { "pos": "n", "pol": "0.25", "std": "0.0" }, "causante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "caxato (de alpinista)": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cegador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cegar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "celeste": { "pos": "a", "pol": "0.25", "std": "0.0" }, "censurado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "centrado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "centro docente": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cera para zapatos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cerebral": { "pos": "a", "pol": "0.25", "std": "0.0" }, "certeza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cetraría": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cetrería": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cheo": { "pos": "a", "pol": "0.25", "std": "0.088" }, "cicerone": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "civilizado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "claustro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "clásico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "coa cabeza descuberta": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cobizoso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cobreado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cocaína": { "pos": "n", "pol": "0.25", "std": "0.0" }, "colesterol LDL oxidado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "color": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coloración": { "pos": "n", "pol": "0.25", "std": "0.0" }, "colorado": { "pos": "a", "pol": "0.25", "std": "0.26" }, "comedia de situación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comercial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "comezo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comisión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comité": { "pos": "n", "pol": "0.25", "std": "0.0" }, "compacto": { "pos": "a", "pol": "0.25", "std": "0.0" }, "compartimentado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "compañeiro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "competir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "competitivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "comunidade escolar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "con abotoadura simple": { "pos": "a", "pol": "0.25", "std": "0.0" }, "con bordos con labios": { "pos": "a", "pol": "0.25", "std": "0.0" }, "con cable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "con contras": { "pos": "a", "pol": "0.25", "std": "0.0" }, "con contraventás": { "pos": "a", "pol": "0.25", "std": "0.0" }, "con cortina": { "pos": "a", "pol": "0.25", "std": "0.0" }, "con dereito a voto": { "pos": "a", "pol": "0.25", "std": "0.0" }, "con escrúpulos": { "pos": "a", "pol": "0.25", "std": "0.0" }, "con fío": { "pos": "a", "pol": "0.25", "std": "0.0" }, "con mangas": { "pos": "a", "pol": "0.25", "std": "0.0" }, "con nome": { "pos": "a", "pol": "0.25", "std": "0.0" }, "con ollo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "con pais": { "pos": "a", "pol": "0.25", "std": "0.0" }, "con punta": { "pos": "a", "pol": "0.25", "std": "0.0" }, "con raias": { "pos": "a", "pol": "0.25", "std": "0.0" }, "con restrición": { "pos": "a", "pol": "0.25", "std": "0.0" }, "con rima": { "pos": "a", "pol": "0.25", "std": "0.0" }, "con talle": { "pos": "a", "pol": "0.25", "std": "0.0" }, "con talo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "con voto": { "pos": "a", "pol": "0.25", "std": "0.0" }, "conceder": { "pos": "v", "pol": "0.25", "std": "0.0" }, "conceptual": { "pos": "a", "pol": "0.25", "std": "0.0" }, "concertado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "concéntrico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "condensador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "condilio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "confeito": { "pos": "n", "pol": "0.25", "std": "0.0" }, "confirmado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "confirmar": { "pos": "v", "pol": "0.25", "std": "0.354" }, "confraría": { "pos": "n", "pol": "0.25", "std": "0.0" }, "conmovido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "conmutable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "conmutábel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "connotativo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "conquerible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "conqueríbel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "conquistable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "conquistábel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "consello": { "pos": "n", "pol": "0.25", "std": "0.0" }, "consenso": { "pos": "n", "pol": "0.25", "std": "0.0" }, "conservador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "considerable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "considerábel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "consultivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "consumidor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contender": { "pos": "v", "pol": "0.25", "std": "0.0" }, "conter": { "pos": "v", "pol": "0.25", "std": "0.088" }, "contestable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "contestábel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "contraforte": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contraproducente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "contrapunto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contraído": { "pos": "a", "pol": "0.25", "std": "0.0" }, "contribución": { "pos": "n", "pol": "0.25", "std": "0.0" }, "controlado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "contundente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "conversador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "converso": { "pos": "n", "pol": "0.25", "std": "0.0" }, "convertibilidade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "convertible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "convertíbel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "convir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "conxuntivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "conxunto": { "pos": "a", "pol": "0.25", "std": "0.088" }, "cooperativa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coordinado": { "pos": "a", "pol": "0.25", "std": "0.088" }, "copete": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coquetería": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coroado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "coronión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "corpo de exército": { "pos": "n", "pol": "0.25", "std": "0.0" }, "corporativismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "corpus amygdaloideum": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cos ollos vendados": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cosmético": { "pos": "n", "pol": "0.25", "std": "0.0" }, "costela verdadeira": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cotelear": { "pos": "v", "pol": "0.25", "std": "0.0" }, "cotián": { "pos": "a", "pol": "0.25", "std": "0.088" }, "crebaxeos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cristalino": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cristalizado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "criterio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cromático": { "pos": "a", "pol": "0.25", "std": "0.265" }, "croquet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "crónico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cróquet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cuarto nervio cranial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cunha calor abafante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cursor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cursorial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "curva": { "pos": "n", "pol": "0.25", "std": "0.0" }, "curvado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "curvo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cuñado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cómic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cómoda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dadaísmo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "datable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "datábel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de abaixo para arriba": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de absorción de enerxía": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de antano": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de antemán": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de arriba para abaixo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de cadea aberta": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de clase alta": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de cooperación": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de crecemento rápido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de curmán": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de curto alcance": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de enerxía de liberación": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de estrea": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de facto": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de ferro": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de incógnito": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de madeira": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de masas": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de non curmán": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de ollo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de ollos de lince": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de ombreiros anchos": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de pasos silenciosos": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de prezo fixo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de pé adducto": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de réptil": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de vía simple": { "pos": "a", "pol": "0.25", "std": "0.0" }, "deber": { "pos": "v", "pol": "0.25", "std": "0.0" }, "decadencia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "decadente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "decantación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "decidido": { "pos": "a", "pol": "0.25", "std": "0.105" }, "decision xudicial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "decisorio": { "pos": "a", "pol": "0.25", "std": "0.0" }, "declarado": { "pos": "a", "pol": "0.25", "std": "0.088" }, "declinar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "decorativo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "defensa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "deforestación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "deidade hindú": { "pos": "n", "pol": "0.25", "std": "0.0" }, "deixar de recoñecer": { "pos": "v", "pol": "0.25", "std": "0.0" }, "delegar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "delicado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "demostración": { "pos": "n", "pol": "0.25", "std": "0.0" }, "demócrata": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dentes": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dentición": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dentro do lugar": { "pos": "a", "pol": "0.25", "std": "0.0" }, "derivativo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "descarado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "desconectado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "desconexo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "descontrolado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "desde hai moitos anos": { "pos": "a", "pol": "0.25", "std": "0.0" }, "deserto": { "pos": "a", "pol": "0.25", "std": "0.0" }, "desestalinización": { "pos": "n", "pol": "0.25", "std": "0.0" }, "desintricable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "desintricábel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "desmobilización": { "pos": "n", "pol": "0.25", "std": "0.0" }, "destacado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "destreza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "desvergonzado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "desvergoñado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "detectado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "devandito": { "pos": "a", "pol": "0.25", "std": "0.0" }, "diacrítico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dialectoloxía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "didáctico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "difuso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "diminuto": { "pos": "a", "pol": "0.25", "std": "0.0" }, "diploma": { "pos": "n", "pol": "0.25", "std": "0.0" }, "disciplina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "disperso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dispoñibilidade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "distributivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dita": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ditongo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diverxente": { "pos": "a", "pol": "0.25", "std": "0.177" }, "divindade hindú": { "pos": "n", "pol": "0.25", "std": "0.0" }, "divulgador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "do día": { "pos": "a", "pol": "0.25", "std": "0.0" }, "documentado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dominar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "dormente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "doutor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "doutrina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "drenaxe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "drogas depresoras": { "pos": "n", "pol": "0.25", "std": "0.0" }, "duque": { "pos": "n", "pol": "0.25", "std": "0.0" }, "día": { "pos": "n", "pol": "0.25", "std": "0.265" }, "día santo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eclecticismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eclesiástico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "economista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ecosistema": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eferente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "eficiente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "eido": { "pos": "n", "pol": "0.25", "std": "0.0" }, "electivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "elite": { "pos": "n", "pol": "0.25", "std": "0.0" }, "elitismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "emir": { "pos": "n", "pol": "0.25", "std": "0.0" }, "emocional": { "pos": "a", "pol": "0.25", "std": "0.088" }, "emoción": { "pos": "n", "pol": "0.25", "std": "0.0" }, "empezo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "empirismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "emprendedor": { "pos": "a", "pol": "0.25", "std": "0.0" }, "empuñadura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "empático": { "pos": "a", "pol": "0.25", "std": "0.0" }, "empírico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "en alza": { "pos": "a", "pol": "0.25", "std": "0.0" }, "en grupo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "en lapas": { "pos": "a", "pol": "0.25", "std": "0.0" }, "en miniatura": { "pos": "a", "pol": "0.25", "std": "0.0" }, "en po": { "pos": "a", "pol": "0.25", "std": "0.0" }, "encerado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "encherse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "enciclopedia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "encosto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "endoérxico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "enfermaría": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enfermería": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enfocado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "enfronte": { "pos": "a", "pol": "0.25", "std": "0.0" }, "enfundado": { "pos": "a", "pol": "0.25", "std": "0.265" }, "enganchado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "enmeigado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "enraizado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "enreixado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enriba": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ensimesmado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "entreaberto": { "pos": "a", "pol": "0.25", "std": "0.0" }, "envolto": { "pos": "a", "pol": "0.25", "std": "0.0" }, "enxeñaría": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enxeñeiro agrónomo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enérxico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "eosinófilo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "epigrama": { "pos": "n", "pol": "0.25", "std": "0.0" }, "epinefrina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "epistemoloxía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "equipado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "equipamento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "equipo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erradicable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "erradicábel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "escalar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "escola de pensamento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esconderse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "escorregadizo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "escrupuloso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "esculpido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "esotérico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "espacial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "espectáculo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "espido": { "pos": "a", "pol": "0.25", "std": "0.088" }, "esplendor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esponxoso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "esquecible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "esquecíbel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "estalo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estar activo": { "pos": "v", "pol": "0.25", "std": "0.0" }, "estar farto": { "pos": "v", "pol": "0.25", "std": "0.0" }, "estar pendente": { "pos": "v", "pol": "0.25", "std": "0.0" }, "estativo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "estepa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estimular": { "pos": "v", "pol": "0.25", "std": "0.0" }, "estipendio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estrañado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "estribo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estruturado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "estudado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "estupefacto": { "pos": "a", "pol": "0.25", "std": "0.0" }, "estímulo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esvaradío": { "pos": "a", "pol": "0.25", "std": "0.0" }, "etnoloxía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "euxenésico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "evasión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "exceder": { "pos": "v", "pol": "0.25", "std": "0.0" }, "excelencia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "exclusivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "exento": { "pos": "a", "pol": "0.25", "std": "0.0" }, "exhortar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "existencialismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "exoérxico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "expandido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "experto economista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "explosivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "explosivo de alta intensidade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "extinguible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "extinguíbel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "extraconxugal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "facer percibir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "fachenda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "facultativo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "faixa peitoral": { "pos": "n", "pol": "0.25", "std": "0.0" }, "falador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "familiar": { "pos": "a", "pol": "0.25", "std": "0.072" }, "fanático": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fartarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "fecundidade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "feitizo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ferramenta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "festa relixiosa cristiá": { "pos": "n", "pol": "0.25", "std": "0.0" }, "feudalismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "filme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "financiado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fixo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "flamante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "flexional": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fogueira": { "pos": "n", "pol": "0.25", "std": "0.0" }, "forma curva": { "pos": "n", "pol": "0.25", "std": "0.0" }, "formigón armado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "formulación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fornecedor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "forte": { "pos": "a", "pol": "0.25", "std": "0.174" }, "forxar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "foryml": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fraguar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "frecuentado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fregués": { "pos": "n", "pol": "0.25", "std": "0.0" }, "frugal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "funxicida": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fuso": { "pos": "n", "pol": "0.25", "std": "0.0" }, "férreo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "físil": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gadoupa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gando": { "pos": "n", "pol": "0.25", "std": "0.0" }, "garante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "garantizar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "garatuxa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "garda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gardián": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gasolina con chumbo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gastronomía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "glabela": { "pos": "n", "pol": "0.25", "std": "0.0" }, "globo ocular": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gloria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "glutationa peroxidasa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "golf": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gramatical": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gregario": { "pos": "a", "pol": "0.25", "std": "0.088" }, "gruñido": { "pos": "n", "pol": "0.25", "std": "0.0" }, "guía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "habituado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "heterosexismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hialoide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hidrofílico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hipertrofiado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hixiene": { "pos": "n", "pol": "0.25", "std": "0.0" }, "holístico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "homenaxe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "homocéntrico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "homosexualidade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "honorario": { "pos": "a", "pol": "0.25", "std": "0.0" }, "honorarios": { "pos": "n", "pol": "0.25", "std": "0.0" }, "horizonte": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hospital": { "pos": "n", "pol": "0.25", "std": "0.0" }, "humanismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "humano": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hóckey": { "pos": "n", "pol": "0.25", "std": "0.0" }, "idealista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "identificado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ieti": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ilimitado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "imaxinable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "imaxinábel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "imitado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "impactante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "imperecedoiro": { "pos": "a", "pol": "0.25", "std": "0.0" }, "impertérrito": { "pos": "a", "pol": "0.25", "std": "0.144" }, "imposto": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "impulsar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "in situ": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inadaptativo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "incesto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "incitar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "inclinación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "incomparable": { "pos": "a", "pol": "0.25", "std": "0.088" }, "incomparábel": { "pos": "a", "pol": "0.25", "std": "0.088" }, "incontable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "incontábel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "incumprido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "independente": { "pos": "a", "pol": "0.25", "std": "0.25" }, "individuo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "indivisible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "indivisíbel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inducido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "infantil": { "pos": "a", "pol": "0.25", "std": "0.0" }, "infeccioso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inflación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "informar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "inicio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inmemorial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inmencionable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inmencionábel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "innumerable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "innumerábel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inoxidable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inoxidábel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inquebrantable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inquebrantábel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "insondable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "insondábel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "institución": { "pos": "n", "pol": "0.25", "std": "0.0" }, "instituto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "instrumento de percusión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "insulina humana recombinante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "integrarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "intelectual": { "pos": "a", "pol": "0.25", "std": "0.0" }, "intelectualidade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "intelligentsia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "interactivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "intercambio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "interceptar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "interdependente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "interdisciplinar": { "pos": "a", "pol": "0.25", "std": "0.0" }, "intimidade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "invento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "invertido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ioga": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ionosfera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "iris": { "pos": "n", "pol": "0.25", "std": "0.0" }, "irrisorio": { "pos": "a", "pol": "0.25", "std": "0.0" }, "irrompible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "irrompíbel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jazz": { "pos": "n", "pol": "0.25", "std": "0.0" }, "labrado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lagrima": { "pos": "n", "pol": "0.25", "std": "0.0" }, "laicismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "landmark": { "pos": "n", "pol": "0.25", "std": "0.0" }, "legalización": { "pos": "n", "pol": "0.25", "std": "0.0" }, "legato": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lente": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lente do ollo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "liberal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "libertador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "libre de peso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ligado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "limpeza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "linguaxe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lista negra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "liña do pelo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "locuaz": { "pos": "a", "pol": "0.25", "std": "0.088" }, "lonxitude": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lugar ficticio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lugar imaxinario": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lugar mítico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "luminosidade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "luxurioso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lítote": { "pos": "n", "pol": "0.25", "std": "0.0" }, "madurez": { "pos": "n", "pol": "0.25", "std": "0.0" }, "magnanimidade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "maior": { "pos": "a", "pol": "0.25", "std": "0.088" }, "mallo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "man": { "pos": "n", "pol": "0.25", "std": "0.0" }, "manexado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "manipulado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "manso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "marcado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "marcel": { "pos": "n", "pol": "0.25", "std": "0.0" }, "masculinidade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "masivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mastoidal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "masturbación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mate": { "pos": "a", "pol": "0.25", "std": "0.0" }, "material composto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mediano": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mellores galas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "melodía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "membrana hialoide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "membrana timpánica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "merchandising": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mesophyron": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metafísica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "meticuloso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "metido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "metonimia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metopión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metrónomo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "militarización": { "pos": "n", "pol": "0.25", "std": "0.0" }, "miofilamento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "misticismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mobilidade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "moda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "moldear": { "pos": "v", "pol": "0.25", "std": "0.0" }, "monear": { "pos": "v", "pol": "0.25", "std": "0.0" }, "monoteísmo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mordomo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "morganita": { "pos": "n", "pol": "0.25", "std": "0.0" }, "morganático": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mosca": { "pos": "n", "pol": "0.25", "std": "0.0" }, "motivación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "motivo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mozo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "multidimensional": { "pos": "a", "pol": "0.25", "std": "0.0" }, "multiforme": { "pos": "a", "pol": "0.25", "std": "0.177" }, "multirracial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "multiétnico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mundano": { "pos": "a", "pol": "0.25", "std": "0.0" }, "munificencia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "munificiente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "musculus temporalis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mutante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mutuo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "máquina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mística": { "pos": "n", "pol": "0.25", "std": "0.0" }, "místico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "músculo ocular": { "pos": "n", "pol": "0.25", "std": "0.0" }, "músculo temporal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nasal canthus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nasión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "natimorto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "natividade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "naturalización": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nave espacial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "negociación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "neoclasicismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nervio troclear": { "pos": "n", "pol": "0.25", "std": "0.0" }, "neurotransmisor de monoamina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "neutral": { "pos": "a", "pol": "0.25", "std": "0.0" }, "no lugar": { "pos": "a", "pol": "0.25", "std": "0.0" }, "non adornado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "non compasivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "non decorado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "non desbotable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "non desbotábel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "non improvisado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "non libre": { "pos": "a", "pol": "0.25", "std": "0.0" }, "non maltratado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "non manual": { "pos": "a", "pol": "0.25", "std": "0.0" }, "non misericordioso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "non perecedoiro": { "pos": "a", "pol": "0.25", "std": "0.0" }, "non profético": { "pos": "a", "pol": "0.25", "std": "0.0" }, "non progresista": { "pos": "a", "pol": "0.25", "std": "0.0" }, "non resentido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "non retórico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "non sobrecargado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "non tóxico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "norma": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nostalxia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nota musical": { "pos": "n", "pol": "0.25", "std": "0.0" }, "noticia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nova": { "pos": "n", "pol": "0.25", "std": "0.0" }, "novo": { "pos": "a", "pol": "0.25", "std": "0.144" }, "novo do trinque": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nutricionista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nítido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "núcleo amigdálico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "obelión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oblicuo": { "pos": "a", "pol": "0.25", "std": "0.088" }, "obxectividade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ocasionar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ocultarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "oculto": { "pos": "a", "pol": "0.25", "std": "0.0" }, "oculus dexter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oculus sinister": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oficial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ofrión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ollo dereito": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ollo esquerdo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ollo parietal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ollo pineal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "omnipresente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "omnisciencia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "opinión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "orb": { "pos": "n", "pol": "0.25", "std": "0.0" }, "orde relixiosa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ordenado": { "pos": "a", "pol": "0.25", "std": "0.19" }, "orgasmo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ornamental": { "pos": "a", "pol": "0.25", "std": "0.0" }, "outorgar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "pagode": { "pos": "n", "pol": "0.25", "std": "0.0" }, "palabra por palabra": { "pos": "a", "pol": "0.25", "std": "0.0" }, "paleoantropoloxía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "palpebra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "papel pergamiño": { "pos": "n", "pol": "0.25", "std": "0.0" }, "para adiante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "parodia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paronomasia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pasado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pasarela": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paso a paso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "patrocinado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "patrocinio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pauta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "payola": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pedestal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pediatra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pedra de toque": { "pos": "n", "pol": "0.25", "std": "0.0" }, "peiteado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "película": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pendente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pensable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pensamento": { "pos": "n", "pol": "0.25", "std": "0.088" }, "pensábel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "perceptivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "percibido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "percibir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "peregrinaxe": { "pos": "n", "pol": "0.25", "std": "0.0" }, "perfumado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pericia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "permeable": { "pos": "a", "pol": "0.25", "std": "0.177" }, "permeábel": { "pos": "a", "pol": "0.25", "std": "0.177" }, "permisible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "permisíbel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "perpendicular": { "pos": "a", "pol": "0.25", "std": "0.0" }, "persistencia da canle arterial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "persoa antipática": { "pos": "n", "pol": "0.25", "std": "0.0" }, "persoa desagradable": { "pos": "n", "pol": "0.25", "std": "0.0" }, "persoal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pertinencia": { "pos": "n", "pol": "0.25", "std": "0.177" }, "pimpín común": { "pos": "n", "pol": "0.25", "std": "0.0" }, "piropo": { "pos": "n", "pol": "0.25", "std": "0.354" }, "piroxenia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pistola de madeira": { "pos": "n", "pol": "0.25", "std": "0.0" }, "placentario": { "pos": "a", "pol": "0.25", "std": "0.0" }, "plancto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pleno verán": { "pos": "n", "pol": "0.25", "std": "0.0" }, "plexo cardíaco": { "pos": "n", "pol": "0.25", "std": "0.0" }, "plexus cardiacus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "plinto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "poder": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pogonión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "policromático": { "pos": "a", "pol": "0.25", "std": "0.0" }, "político": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ponderable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ponderábel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "popular": { "pos": "a", "pol": "0.25", "std": "0.354" }, "populismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "por adiantado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "por diante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "por separado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "positivismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "posmodernismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "postulante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "potencia muscular": { "pos": "n", "pol": "0.25", "std": "0.0" }, "poñerse de acordo": { "pos": "v", "pol": "0.25", "std": "0.0" }, "prebélico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "predilección": { "pos": "n", "pol": "0.25", "std": "0.0" }, "predisposición": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prednisolona": { "pos": "n", "pol": "0.25", "std": "0.0" }, "predominar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "preguerra": { "pos": "a", "pol": "0.25", "std": "0.0" }, "preliminar": { "pos": "a", "pol": "0.25", "std": "0.0" }, "prematuro": { "pos": "a", "pol": "0.25", "std": "0.0" }, "premisa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prenatal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "preparto": { "pos": "a", "pol": "0.25", "std": "0.0" }, "prescrición": { "pos": "n", "pol": "0.25", "std": "0.0" }, "presente": { "pos": "a", "pol": "0.25", "std": "0.072" }, "prestamista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "presteza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prevalecer": { "pos": "v", "pol": "0.25", "std": "0.0" }, "prevención": { "pos": "n", "pol": "0.25", "std": "0.088" }, "previamente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "primario": { "pos": "a", "pol": "0.25", "std": "0.0" }, "primate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "primeiro": { "pos": "a", "pol": "0.25", "std": "0.0" }, "primitivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "primixenio": { "pos": "a", "pol": "0.25", "std": "0.0" }, "probiótico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "proceso acromial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "proceso cognitivo básico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "proceso transverso": { "pos": "n", "pol": "0.25", "std": "0.0" }, "procreación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "produto farmacéutico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "profesionalismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "profeta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "progresismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prolixo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "prolog": { "pos": "n", "pol": "0.25", "std": "0.0" }, "proporse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "prostitución": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prostión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prototipo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "provedor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "proverbio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "provocar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "proxectado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "proxémica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prénsil": { "pos": "a", "pol": "0.25", "std": "0.0" }, "psicoactivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "psicótropo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "punteiro": { "pos": "a", "pol": "0.25", "std": "0.0" }, "punto alveolar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "punto auricular": { "pos": "n", "pol": "0.25", "std": "0.0" }, "punto de McBurney": { "pos": "n", "pol": "0.25", "std": "0.0" }, "purificación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pálpebra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pésimo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pórse de acordo": { "pos": "v", "pol": "0.25", "std": "0.0" }, "quark": { "pos": "n", "pol": "0.25", "std": "0.0" }, "que ten rima": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rachado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "racismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "racista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "radioactivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "radiolúcido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "radiotransparente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ragtime": { "pos": "n", "pol": "0.25", "std": "0.0" }, "raíz do dente": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reaccionario": { "pos": "n", "pol": "0.25", "std": "0.0" }, "realizar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "rebuldar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "receita": { "pos": "n", "pol": "0.25", "std": "0.0" }, "recorrible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "recorríbel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "recoñecemento": { "pos": "n", "pol": "0.25", "std": "0.26" }, "rectángulo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "recurso transitorio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "recíproco": { "pos": "a", "pol": "0.25", "std": "0.0" }, "reducido": { "pos": "a", "pol": "0.25", "std": "0.125" }, "redutor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "refinado": { "pos": "a", "pol": "0.25", "std": "0.072" }, "reflexión": { "pos": "n", "pol": "0.25", "std": "0.088" }, "reformador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reformador social": { "pos": "n", "pol": "0.25", "std": "0.0" }, "refrán": { "pos": "n", "pol": "0.25", "std": "0.0" }, "refusar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "refuxiarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "regra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reitor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "relaxado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "relegado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "relicario": { "pos": "n", "pol": "0.25", "std": "0.0" }, "relucente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rematado": { "pos": "a", "pol": "0.25", "std": "0.191" }, "remediable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "remediábel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "remolcador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "remuneracións": { "pos": "n", "pol": "0.25", "std": "0.0" }, "renovable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "renovábel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "residente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "resignado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "resucitado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "retardado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "retorcido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "retorto": { "pos": "a", "pol": "0.25", "std": "0.0" }, "retículo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reverberante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "revés": { "pos": "a", "pol": "0.25", "std": "0.0" }, "riscado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rito": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rivalizar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "rogo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "romaría": { "pos": "n", "pol": "0.25", "std": "0.0" }, "romería": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rubio": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rural": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ruxido": { "pos": "n", "pol": "0.25", "std": "0.0" }, "saber": { "pos": "v", "pol": "0.25", "std": "0.259" }, "sacrificio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sangue vital": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sanguento": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sanguinolento": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sano": { "pos": "a", "pol": "0.25", "std": "0.0" }, "santidade": { "pos": "n", "pol": "0.25", "std": "0.177" }, "sectario": { "pos": "a", "pol": "0.25", "std": "0.0" }, "secuencial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "secularismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sedante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "seguimento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "seita": { "pos": "n", "pol": "0.25", "std": "0.0" }, "seita relixiosa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "semicircular": { "pos": "a", "pol": "0.25", "std": "0.0" }, "semitransparente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sen brillo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sen carga": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sen clave": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sen compaixón": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sen corte": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sen límites": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sen misericordia": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sensibilidade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sensibilizado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sensorial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sensíbel": { "pos": "a", "pol": "0.25", "std": "0.188" }, "sentenza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sentido práctico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sentir empatía": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ser humano": { "pos": "n", "pol": "0.25", "std": "0.0" }, "servible": { "pos": "a", "pol": "0.25", "std": "0.177" }, "servíbel": { "pos": "a", "pol": "0.25", "std": "0.177" }, "sexista": { "pos": "a", "pol": "0.25", "std": "0.0" }, "signatario": { "pos": "n", "pol": "0.25", "std": "0.0" }, "significado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "simbiótico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "similitude": { "pos": "n", "pol": "0.25", "std": "0.0" }, "simpatizante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "simultáneo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sinclinal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sincronizado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sinuoso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sinérxico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sistemático": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sobrehumano": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sobrepasar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "solicitante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "soluble": { "pos": "a", "pol": "0.25", "std": "0.265" }, "solvente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sometida": { "pos": "a", "pol": "0.25", "std": "0.0" }, "somnolencia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sonda espacial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "soportado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sorbato": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sorprendido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "soster": { "pos": "v", "pol": "0.25", "std": "0.177" }, "spot": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stephanion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suave": { "pos": "a", "pol": "0.25", "std": "0.191" }, "subcontinente": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suboficial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "subsidiario": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sucesivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sufraxio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suplicante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "supremacía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suxestivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "symphysion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sánscrito": { "pos": "n", "pol": "0.25", "std": "0.0" }, "séptico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "séquito": { "pos": "n", "pol": "0.25", "std": "0.0" }, "síncrono": { "pos": "a", "pol": "0.25", "std": "0.0" }, "súplica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tallado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "taxa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tecido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tecido muscular estriado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tendencia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tendencioso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tenis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "teoloxía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ter a intención": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ter un alcance": { "pos": "v", "pol": "0.25", "std": "0.0" }, "terceiro ollo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "termoplástico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tocoferol": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tolo polo sexo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "toma do poder": { "pos": "n", "pol": "0.25", "std": "0.0" }, "topenear": { "pos": "v", "pol": "0.25", "std": "0.0" }, "topografía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "totalidade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "totalmente novo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "totipotente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "traballo en equipo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tracto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trade-off": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tranquilizante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "transcender": { "pos": "v", "pol": "0.25", "std": "0.0" }, "transistor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "transitable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "transitábel": { "pos": "a", "pol": "0.25", "std": "0.0" }, "translúcido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "transmitir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "trasnada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tratar": { "pos": "v", "pol": "0.25", "std": "0.265" }, "traxicomedia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trebellar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "trebello": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trenzado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "trepia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tributable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tributo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tridente": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trilobite": { "pos": "n", "pol": "0.25", "std": "0.0" }, "troco": { "pos": "n", "pol": "0.25", "std": "0.0" }, "troita": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trotskista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tundra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tímpano": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ultravioleta": { "pos": "a", "pol": "0.25", "std": "0.0" }, "utilizado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "utriculus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "utrículo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "utrículo do oído": { "pos": "n", "pol": "0.25", "std": "0.0" }, "utrículo do vestíbulo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "uña encravada da deda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vea cardinal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vea cava": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vea etmoidal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vea lacrimal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vea oftálmica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vea oftálmica superior": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vea pancreática": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vea posterior do ventrículo esquerdo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "veas epigástricas superiores": { "pos": "n", "pol": "0.25", "std": "0.0" }, "veciño": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vedado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "veludo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vena cava": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vena ethmoidalis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vena lacrimalis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vena ophthalmica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vena posterior ventriculi sinistri": { "pos": "n", "pol": "0.25", "std": "0.0" }, "venae epigastricae superiores": { "pos": "n", "pol": "0.25", "std": "0.0" }, "venae pancreatica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "veta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "viabilidade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "viaxar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "vidro volcánico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vincha": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vinchoca": { "pos": "n", "pol": "0.25", "std": "0.0" }, "violento": { "pos": "a", "pol": "0.25", "std": "0.0" }, "vistoso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "vitamina E": { "pos": "n", "pol": "0.25", "std": "0.0" }, "voyeurismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vulnerabilidade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "válvula semilunar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "váxil": { "pos": "a", "pol": "0.25", "std": "0.0" }, "vía rápida": { "pos": "n", "pol": "0.25", "std": "0.0" }, "xeopolítica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "xerador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "xerar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "xerme": { "pos": "n", "pol": "0.25", "std": "0.0" }, "xeógrafo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "xogo de palabras": { "pos": "n", "pol": "0.25", "std": "0.0" }, "xogos malabares": { "pos": "n", "pol": "0.25", "std": "0.0" }, "xudeu": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zancudo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "zume dixestivo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "á fronte": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ámbito": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ética": { "pos": "n", "pol": "0.25", "std": "0.0" }, "íntegro": { "pos": "a", "pol": "0.25", "std": "0.088" }, "órgano parietal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abouxante": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "abrir fogo": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "absentismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acaudado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "acción reflexa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acedo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "acedume": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aceiro de alta velocidade": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aceiro de tungsteno": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aceiro de volgframio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aceite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aceite de bidueiro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aceite de bidueiro doce": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aceptar de mala gana": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "acetato de chumbo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aclorhidria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acrilamida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acrofobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "adianto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "administrativo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "aferente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "afouteza": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "afronta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "agonizante": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "agorafobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "agresión": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "agresor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "agárico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aire quente": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alba": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alcatrán": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alcatrán vexetal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alcohol de madeira": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alcohol metílico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alcoholismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alcol de madeira": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alcol metílico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "algodón absorbente": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alguacil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alternante": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "altivo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "alucinante": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ambivalente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "amigdalina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aminobenzina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "amnesia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anacarado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ananismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anemia falciforme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anestro": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "anhelo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anhídrido acético": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anilina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anti-semitismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antipapa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antipersoa": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "antisemitismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antisoro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anécdota": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anómalo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "apetito": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "apoptose": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arbusto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arco alveolar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arco pélvico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arenita grosa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arrepiar as carnes": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "arteria circumflexa ilium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arteria ilíaca circunflexa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arxinina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asafétida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asaltante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asediado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "asedio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asexualidade": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asindético": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "asma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asustadizo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "atacante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atavío": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "autismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "autotomía": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "avarento": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "avidez": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "axente nervioso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "axuizar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "azote": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "azucre de chumbo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "babirusa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "baciloscopia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bacterioscopia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bagel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "baixo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "banal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "banda": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barba de chibo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barba de mandarín": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barba imperial": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "basalto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "batalla": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "batallar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "batuxar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "benzoina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "berilio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "beta-endorfina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "betún asfáltico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bieito": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "billete": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "biotita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blusa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boca do estómago": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bordo alveolar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bordo das enxivas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "borrasca": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "borrelia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bosta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bostela": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "botulismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bouncing putty": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boxeo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "breo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bromuro de metilo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bufanda": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bulleiro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "buque de guerra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "burrán": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cachela": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cadáver": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cafeína": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cagón": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "calamidade": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cama": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "camisa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "campilótropo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "campo de batalla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "campo de minerais": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "canalis inguinalis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "canción": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cancro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "canthum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carbonato de chumbo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carbón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carencia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "careta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carocha": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caspa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caspela": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "castigado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "castigo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "casula": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caucho endurecido": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cegude": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ceilanita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "celebridade": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cera montana": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cera xavanesa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chaga": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chamado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "chanco": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chapicar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "chapinar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "chapuzar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cheque": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chiar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chocar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "chumbo branco": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cianuro de hidróxeno": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cianuro de potasio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cianuro de sodio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cibercriminalidade": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cicuta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cilios": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cilium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cincento": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "cinemática": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cinsa de perla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cintura pélvica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "circunstante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "citoloxía broncoscópica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "citoloxía do tracto respiratorio inferior": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "clamor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "coar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cobalto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cobiza": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "coenzima": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "colchón de aire": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "colesterol HDL": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "colidir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "colono": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "coloquio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "combater": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "combinación XYY": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "competidor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "complicidade": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "computar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "con esforzo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "con pouco xeito": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "conduto inguinal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "conflagración": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "confrontar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "contactar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "contagotas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "contaminante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "contraprudecente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "controversia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "convencional": { "pos": "a", "pol": "-0.25", "std": "0.144" }, "cordas inferiores": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cordas vocais verdadeiras": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "corentena": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "corindón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "corpo morto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "correccional": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "corrente de aire": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "coser a boca": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cotobelada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "covarde": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "covardía": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "coñecerse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "criminal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "criminalidade": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cromato de chumbo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cromo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cromosoma acéntrico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cuarcita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "culpa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "curioso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cuáquero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cáncer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cáustico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "célula adiposa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "célula de Golgi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "célula de Kupffer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "célula do gusto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "célula gustativa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cíngulo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "da clase media": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "darse por vencido": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "de bo corazón": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "de mala reputación": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "de organización": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "de sangue frío": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "de segunda categoría": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "de segunda clase": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "de segunda orde": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "decepcionante": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "defecto visual": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "defensivo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "deficiente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "degustar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "deidade": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deitarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "deixar fóra": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "demandado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "dendrita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dente carnassial": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dentes mal posicionado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dentro da orde establecida": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "denunciar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "deplorable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "deplorábel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desabotoado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desabrochado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desafiante": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desafiar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "desapercibido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desaprehensivo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desastre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desastroso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desatento": { "pos": "a", "pol": "-0.25", "std": "0.265" }, "descoñecido": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "descruzado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desestruturado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desharmónico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desigual": { "pos": "a", "pol": "-0.25", "std": "0.125" }, "desigualdade": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "desistir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "desleal": { "pos": "a", "pol": "-0.25", "std": "0.125" }, "desnaturante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desnutrido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desobediente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desorde visual": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desprendido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "despreocupado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desproporción": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "destapar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "destinxido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "destrución": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "destruído": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desventura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "detrito": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "diarrea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "difracción": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dioxina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "discapacidade visual": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disfemismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disparar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "dispararse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "dispepsia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dispneico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "distopía": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "divindade": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dióxido de nitróxeno": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "doenza animal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dubidar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "dunha soa peza": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ebonita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "efémero": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "embrión": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "en segunda clase": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "en van": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "en xestación": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "encerellado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "encher": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "engaiolado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "engruñado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "enguedellado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "enleado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "enmarañado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "enredado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "enterramento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "enterro": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "entusiasmo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "enxerto de pel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "epicanthus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "epicanto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "epicardia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "epidemioloxía": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "errada": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "erro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escabicida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escaseza": { "pos": "n", "pol": "-0.25", "std": "0.125" }, "escoura": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "escoura básica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escritorio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escrutinio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escudo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esgrevio": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "esmagar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "esmeril": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esmola": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "especialista en ambiente": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "espirro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espontaneamente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "espontaneidade": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espor": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "espoñer": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "esquecedizo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "esqueleto apendicular": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estado de irritación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estafa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estafilococo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estannito": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estar en silencio": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "estaño pirita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estelita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esterco": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esterco orgánico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estigmatización": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estirado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "estratexia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estrinxido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "estrito": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "etilenoglicol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eutanasia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eutrofización": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "exculpatorio": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "exorcismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "expeler": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "exploración": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "expulsar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "extensión desolada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "extraescolar": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "extremismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "exánime": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "factor Christmas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "factor IX": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "falcón albar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "falible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "falla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "falsificado": { "pos": "a", "pol": "-0.25", "std": "0.265" }, "falíbel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "farrapento": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "farrapo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "feces de pombas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "feluxe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fenilamina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fertilizante orgánico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "figura retórica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "filtrar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "finado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fluoruro de hidróxeno": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fogo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "folclore": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fosa epigástrica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fragmento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frenesí": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frigorífico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frívolo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fumegante": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "funeral": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "futuro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fístula": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fóra da rúa": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "gaivota": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "galio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "galopín": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gammaglobulina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gammaglobulina humana": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gas de sumidoiro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gas nervioso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gases axfisiantes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gastrite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gato montés": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gegenschein": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "globulina gamma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "glucinio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "glándula mandíbular": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "glándula salivar submandibular": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "glándula submandibular": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gnatión": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "golem": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "goma de benzoina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "goma dura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gonión": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gordiño": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gran": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gratuíto": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "gravata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "graxa dos ósos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "graxa poliinsaturada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gris Payne": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guillado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "gusto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gutural": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "gálbano": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gángster": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "heroína": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "heterocerco": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hidroclorofluorocarbono": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hipoclorito de sodio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hipopotasemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "humanidade": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "humificado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hybris": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "héctico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ignífugo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ilegal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "imperioso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "impopular": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "imposible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "imprescindible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "imprescindíbel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "impresentable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "impresentábel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inadvertido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inarticulado": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "inaturable": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "inaturábel": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "inchado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "incognito": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inconformista": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inconfortable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inconfortábel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "incongruente": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "inconmutable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inconmutábel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inconquistable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inconquistábel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "indecente": { "pos": "a", "pol": "-0.25", "std": "0.354" }, "indefenso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "indestrutible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "indestrutíbel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "indiferenciado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "indignidade": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indisputable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "indisputábel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "indistinguible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "indistinguíbel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "indixencia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indixestión": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inespecífico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inesperado": { "pos": "a", "pol": "-0.25", "std": "0.072" }, "inexorable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inexorábel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inexpugnable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inexpugnábel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inextensible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inextensíbel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inextinguible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inextinguíbel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inhumación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inmediato": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inmigrante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inmobilizar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "inmoderado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inmoral": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inmutable": { "pos": "a", "pol": "-0.25", "std": "0.063" }, "inoculador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inodoro": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inositol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insatisfactorio": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "insecticida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insecticida en po": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insistir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "insolidario": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "insomnio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insostible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "insostíbel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "insuficiente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "intermitente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "intraducible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "intraducíbel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "intranquilizador": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inválido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inxustificado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inédito": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inócua": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ir para a cama": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "irracionalidade": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "irresistible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "irresistíbel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "irreverente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "irrevocable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "irrevocábel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "irrevogable": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "irrevogábel": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "labrocito": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ladrón": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "ladrón de camiños": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "laetril": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lamentarse": { "pos": "v", "pol": "-0.25", "std": "0.177" }, "larvicida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "laterita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "latitude": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lea": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "lentes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "leucemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lidar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "limo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "liorta": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "listeriose": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "llama": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lobishome": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "locus niger": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "loitar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "malaria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malestar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malfeitor": { "pos": "n", "pol": "-0.25", "std": "0.125" }, "malo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malos tratos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mancadura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "manchado de tinta": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "manco": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "manganeso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "manteiga de cacao": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mantón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "marca de nacemento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "marfil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mastocito": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "matar": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "materia escura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "materia negra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "material de illamento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "material illante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "materialismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "matogueira": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maxistrado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mazá verde": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "medida enérxica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "medula oblonga": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "meigaría": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "meiguería": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mendigo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "meninxite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mesa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mesocolon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "metaloide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "metano": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "metanol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "metilfenidato": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "metiltestosterona": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "michelíns": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "micronutriente": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "microondas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mineral de chumbo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "minimalismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "miseria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "misto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "modernismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mofo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "monarquía": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "monoauricular": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "montañoso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "montiño": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "montículo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "monóxido de carbono": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mosaico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moureza": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mouta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moño": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "murmurio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mínimo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "natureza enganosa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "necrofilia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "necrose": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "necrófago": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "negro como o acibeche": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "negro de carbón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "negro de fume": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "neveira": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nirvana": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nitrobenceno": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "non aborixe": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non acristalado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non adstrinxente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non alfombrado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non anulable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non anulábel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non arbitrable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non arbitrábel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non argumentativo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non asegurado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non atemorizado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non aventureiro": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non causal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non causativo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non científico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non clásico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non competitivo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non confuso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non controvertido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non convincente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non coroado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non dar un chío": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "non deducible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non deducíbel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non deliñable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non deliñábel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non derrogable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non derrogábel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non dirimible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non dirimíbel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non dirixido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non dispoñible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non dispoñíbel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non erradicable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non erradicábel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non estrelado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non estruturado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non exixente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non explosivo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non fixado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non físil": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non glaseado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non incluído": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non indíxena": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non inquisitivo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non intercambiable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non intercambiábel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non interrogante": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non ionizado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non iónico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non lavable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non lavábel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non nativo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non nato": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non nervioso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non orixinal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non particulado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non pechado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non permanente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non planeado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non planificado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non polémico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non programado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non recíproco": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non reformado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non relixioso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non renovable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non renovábel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non retentivo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non rexenerado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non seleccionado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non sindical": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non susceptible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non susceptíbel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non traducible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non traducíbel": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non vendido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "non volátil": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "noticiario": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "notoriedade": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nucleus niger": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nulo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "número atómico 22": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "número atómico 24": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "número atómico 25": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "número atómico 27": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "número atómico 31": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "número atómico 34": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "número atómico 4": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "número atómico 73": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "obstinado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "oda": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ofensiva": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oleofóbico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "omatideo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ommatidium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oncoxene": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oprimir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "orde dos animais": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "orella": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "osmose": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ostra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oxímoron": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oído interno": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paludismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "papel carbón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "papel de calcar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "parado": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "paranoia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "parsimonioso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pasta seladora": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pasteurización": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "patoloxía animal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paxaro do trono": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pechar o bico": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "pegada dactilar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pel de marta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pelaxar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "pelos da cona": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "peridotita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "perlado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "permanganato de potasio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "permanganato potásico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "peroneo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "perplexidade": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "persecución": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pestana": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pesticida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "peza de roupa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "peza de vestir": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "phellem": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pillabán": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "pillaría": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pillería": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "piridina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "placa de ágar-ágar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "plantilla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pleonasto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "plácido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "po de xiz": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pobre": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "polémica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "porco": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "postela": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pouco atractivo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pouco esixente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pouco exixente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pouco orixinal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pouco profesional": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "poñer os pelos de espeto": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "precario": { "pos": "a", "pol": "-0.25", "std": "0.191" }, "pregos vacais": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "presumido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "prexuízo": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "proba da acidez de xirasol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "progresión": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "protexido": { "pos": "a", "pol": "-0.25", "std": "0.125" }, "pseudoefedrina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "psicoterapeuta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pudor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "putrescina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pór os pelos de punta": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "pór os pelos dereitos": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "púnico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "que non funciona": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "que non ten sentido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "quedarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "queixa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "querela": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "quimono": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rabino": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "raxada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rebumbio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "refacho": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "referirse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "reflexo conxénito": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reflexo incondicionado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reflexo innato": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reflexo instintivo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "refugallo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "relevo terrestre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "renegado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "renegrido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "repugnante": { "pos": "a", "pol": "-0.25", "std": "0.265" }, "requisito indispensable": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "requisito indispensábel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "res": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "residuo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "residuo tóxico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "residuo tóxico industrial": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "resistir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "responsabilidade": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "resposta reflexa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "restos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "retar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "revolto": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "rexión pubiana": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rifado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "rival": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rotenona": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rouco": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "roxón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "saborear": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "saia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "salicilato de fenilo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "salicilato de metilo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "salol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "salouco": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "salpicar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "salvador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sancionado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sangue ágar-ágar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "saqueador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sarna": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "saúdo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sebo vexetal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "secobarbital": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "secreción mucosa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "secuestro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "selenio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sen alento": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen alfombra": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen apoio": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen base": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen branca": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen cable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen censura": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen cortar": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen cortina": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen cristal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen deda": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen destinado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen embalaxe": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen esmalte": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen espírito": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen estrelas": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen fento": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen fíos": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen lingüeta": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen madeira": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen nervios": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen orellas": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen pais": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen pebidas": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen pintura": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen pluma": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen rima": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen rodas": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen seguro": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen soporte": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen sustento": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen tecer": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen teito": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen un céntimo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen vender": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sen ventilación": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ser coraxento": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ser incapaz de": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ser mítico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shari'a": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "siena torrada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sima": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "simplista": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sistema auditivo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sobrecargado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sobrenatural": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sobrevivir": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "sotana": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "substancia nigra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "subversivo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "succionar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "suicidio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "surrealismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "suspenso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tabaco turco": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tantalio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tarabeleiro": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "tartarato de antimonio potásico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "teimoso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "tempestade": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ter coraxe": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ter valor": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "teratóxeno": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "termorreceptor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "terreo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tirapuxa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tisne": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "titanio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "toga": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tolemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tombac": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tormentoso": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "torque": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tose": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trastornado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "tributirina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tricloroetileno": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trollo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trono": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "turbulencia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tusido": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "táctica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tártaro emético": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tímpano perforado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ulceroso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "vacilar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "valoroso": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "vandalismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vea ilíaca común": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vea musculofrénica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vena musculophrenica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ventriloquia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "verbalizar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "vestiario": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vexetación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vidro crowm de óptica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vidro de óptica crowm": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vidro deslustrado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vilán": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vingador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "viricida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "virucida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "viúva": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "viúvo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vulcanita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vítima": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vómito": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xene letal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xene mutante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xenofobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xestión inadecuada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xibón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xogos artificiais": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xurro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xustillo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xénero humano": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zarrapicar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "zoo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zoolóxico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zoonose": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ácido brómico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ácido caprílico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ácido crómico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ácido fluosilícico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ácido fumárico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ácido hipocloroso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ácido húmico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ácido maleico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ácido nitroso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ácido paraaminobenzoico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ácido permangánico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ácido xántico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ágar nutritivo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ámbar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ázoe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "éxodo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ópalo negro": { "pos": "n", "pol": "-0.25", "std": "0.0" } } ================================================ FILE: lib/natural/sentiment/German/negations_de.json ================================================ { "words": ["kein", "nein", "nicht"] } ================================================ FILE: lib/natural/sentiment/German/pattern-sentiment-de.json ================================================ { "Abbau": { "form": "Abbau", "polarity": "-0.058", "pos": "NN", "sense": "Abbaus,Abbaues,Abbauen,Abbaue,Abbauten" }, "Abbruch": { "form": "Abbruch", "polarity": "-0.0048", "pos": "NN", "sense": "Abbruches,Abbrüche,Abbruchs,Abbrüchen,Abbruche" }, "Abdankung": { "form": "Abdankung", "polarity": "-0.0048", "pos": "NN", "sense": "Abdankungen" }, "Abdämpfung": { "form": "Abdämpfung", "polarity": "-0.0048", "pos": "NN", "sense": "Abdämpfungen" }, "Abfall": { "form": "Abfall", "polarity": "-0.0048", "pos": "NN", "sense": "Abfalles,Abfälle,Abfalls,Abfällen,Abfalle" }, "Abfuhr": { "form": "Abfuhr", "polarity": "-0.3367", "pos": "NN", "sense": "Abfuhren" }, "Abgrund": { "form": "Abgrund", "polarity": "-0.3465", "pos": "NN", "sense": "Abgründe,Abgrunde,Abgrundes,Abgrunds,Abgründen" }, "Abhängigkeit": { "form": "Abhängigkeit", "polarity": "-0.3653", "pos": "NN", "sense": "Abhängigkeiten" }, "Ablehnung": { "form": "Ablehnung", "polarity": "-0.5118", "pos": "NN", "sense": "Ablehnungen" }, "Ablenkung": { "form": "Ablenkung", "polarity": "-0.0435", "pos": "NN", "sense": "Ablenkungen" }, "Abnahme": { "form": "Abnahme", "polarity": "-0.0048", "pos": "NN", "sense": "Abnahmen" }, "Abneigung": { "form": "Abneigung", "polarity": "-0.0048", "pos": "NN", "sense": "Abneigungen" }, "Abnutzung": { "form": "Abnutzung", "polarity": "-0.0048", "pos": "NN", "sense": "Abnutzungen" }, "Abriss": { "form": "Abriss", "polarity": "-0.0048", "pos": "NN", "sense": "Abrisse,Abrissen,Abrisses" }, "Abrutsch": { "form": "Abrutsch", "polarity": "-0.0048", "pos": "NN", "sense": "Abrutschen,Abrutsche,Abrutsches,Abrutschs" }, "Abschaffung": { "form": "Abschaffung", "polarity": "-0.058", "pos": "NN", "sense": "Abschaffungen" }, "Abschreckung": { "form": "Abschreckung", "polarity": "-0.0048", "pos": "NN", "sense": "Abschreckungen" }, "Abschreibung": { "form": "Abschreibung", "polarity": "-0.3345", "pos": "NN", "sense": "Abschreibungen" }, "Abschuß": { "form": "Abschuß", "polarity": "-0.0048", "pos": "NN", "sense": "Abschüsse,Abschusses,Abschüssen" }, "Abschuss": { "form": "Abschuss", "polarity": "-0.0048", "pos": "NN", "sense": "Abschüsse,Abschusse,Abschusses,Abschüssen" }, "Abschwächung": { "form": "Abschwächung", "polarity": "-0.1935", "pos": "NN", "sense": "Abschwächungen" }, "Absenkung": { "form": "Absenkung", "polarity": "-0.3434", "pos": "NN", "sense": "Absenkungen" }, "Abspaltung": { "form": "Abspaltung", "polarity": "-0.0048", "pos": "NN", "sense": "Abspaltungen" }, "Absperrung": { "form": "Absperrung", "polarity": "-0.0048", "pos": "NN", "sense": "Absperrungen" }, "Abstieg": { "form": "Abstieg", "polarity": "-0.3215", "pos": "NN", "sense": "Abstiegs,Abstiege,Abstiegen,Abstieges" }, "Abstoß": { "form": "Abstoß", "polarity": "-0.0048", "pos": "NN", "sense": "Abstößen,Abstöße,Abstoße,Abstoßes" }, "Abstrich": { "form": "Abstrich", "polarity": "-0.3201", "pos": "NN", "sense": "Abstrichen,Abstrichs,Abstriches,Abstriche" }, "Abstumpfung": { "form": "Abstumpfung", "polarity": "-0.0048", "pos": "NN", "sense": "Abstumpfungen" }, "Absturz": { "form": "Absturz", "polarity": "-0.4739", "pos": "NN", "sense": "Abstürzen,Absturze,Absturzes,Abstürze" }, "Absurdität": { "form": "Absurdität", "polarity": "-0.0048", "pos": "NN", "sense": "Absurditäten" }, "Abweichung": { "form": "Abweichung", "polarity": "-0.3462", "pos": "NN", "sense": "Abweichungen" }, "Abweisung": { "form": "Abweisung", "polarity": "-0.0048", "pos": "NN", "sense": "Abweisungen" }, "Abwertung": { "form": "Abwertung", "polarity": "-0.3283", "pos": "NN", "sense": "Abwertungen" }, "Abwärtstrend": { "form": "Abwärtstrend", "polarity": "-0.1941", "pos": "NN", "sense": "Abwärtstrends" }, "Abzocke": { "form": "Abzocke", "polarity": "-0.0048", "pos": "NN", "sense": "Abzocken" }, "Achtlosigkeit": { "form": "Achtlosigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Achtlosigkeiten" }, "Affäre": { "form": "Affäre", "polarity": "-0.1794", "pos": "NN", "sense": "Affären" }, "Aggression": { "form": "Aggression", "polarity": "-0.4889", "pos": "NN", "sense": "Aggressionen" }, "Aggressivität": { "form": "Aggressivität", "polarity": "-0.1958", "pos": "NN", "sense": "Aggressivitäten" }, "Aggressor": { "form": "Aggressor", "polarity": "-0.3155", "pos": "NN", "sense": "Aggressoren,Aggressors" }, "Agitation": { "form": "Agitation", "polarity": "-0.0048", "pos": "NN", "sense": "Agitationen" }, "Alarm": { "form": "Alarm", "polarity": "-0.0048", "pos": "NN", "sense": "Alarme,Alarms,Alarmen,Alarmes" }, "Alptraum": { "form": "Alptraum", "polarity": "-0.0048", "pos": "NN", "sense": "Alpträume,Alpträumen,Alptraums,Alptraumes,Alptraume" }, "Albtraum": { "form": "Albtraum", "polarity": "-0.0048", "pos": "NN", "sense": "Albträume,Albträumen,Albtraums,Albtraumes,Albtraume" }, "Amateur": { "form": "Amateur", "polarity": "-0.0048", "pos": "NN", "sense": "Amateuren,Amateure,Amateurs" }, "Ambivalenz": { "form": "Ambivalenz", "polarity": "-0.3266", "pos": "NN", "sense": "Ambivalenzen" }, "Androhung": { "form": "Androhung", "polarity": "-0.0048", "pos": "NN", "sense": "Androhungen" }, "Anfälligkeit": { "form": "Anfälligkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Anfälligkeiten" }, "Angreifer": { "form": "Angreifer", "polarity": "-0.0048", "pos": "NN", "sense": "Angreifers,Angreifern" }, "Angriff": { "form": "Angriff", "polarity": "-0.212", "pos": "NN", "sense": "Angriffe,Angriffen,Angriffs,Angriffes" }, "Angst": { "form": "Angst", "polarity": "-0.514", "pos": "NN", "sense": "Ängste,Ängsten" }, "Anklage": { "form": "Anklage", "polarity": "-0.3468", "pos": "NN", "sense": "Anklagen" }, "Anmaßung": { "form": "Anmaßung", "polarity": "-0.0048", "pos": "NN", "sense": "Anmaßungen" }, "Annullierung": { "form": "Annullierung", "polarity": "-0.0048", "pos": "NN", "sense": "Annullierungen" }, "Anomalie": { "form": "Anomalie", "polarity": "-0.0048", "pos": "NN", "sense": "Anomalien" }, "Anspannung": { "form": "Anspannung", "polarity": "-0.0048", "pos": "NN", "sense": "Anspannungen" }, "Anstrengung": { "form": "Anstrengung", "polarity": "-0.0048", "pos": "NN", "sense": "Anstrengungen" }, "Antipathie": { "form": "Antipathie", "polarity": "-0.0048", "pos": "NN", "sense": "Antipathien" }, "Arbeitslose": { "form": "Arbeitslose", "polarity": "-0.3549", "pos": "NN", "sense": "Arbeitslosen,Arbeitsloser,Arbeitslosem" }, "Arbeitslosigkeit": { "form": "Arbeitslosigkeit", "polarity": "-0.3654", "pos": "NN", "sense": "" }, "Armut": { "form": "Armut", "polarity": "-0.2038", "pos": "NN", "sense": "" }, "Arroganz": { "form": "Arroganz", "polarity": "-0.3289", "pos": "NN", "sense": "Arroganzen" }, "Arschloch": { "form": "Arschloch", "polarity": "-0.1901", "pos": "NN", "sense": "Arschlöcher,Arschlochs,Arschlöchern,Arschloches,Arschloche" }, "Attacke": { "form": "Attacke", "polarity": "-0.47", "pos": "NN", "sense": "Attacken" }, "Aufhebung": { "form": "Aufhebung", "polarity": "-0.0048", "pos": "NN", "sense": "Aufhebungen" }, "Auflösung": { "form": "Auflösung", "polarity": "-0.0048", "pos": "NN", "sense": "Auflösungen" }, "Aufregung": { "form": "Aufregung", "polarity": "-0.0386", "pos": "NN", "sense": "Aufregungen" }, "Aufruhr": { "form": "Aufruhr", "polarity": "-0.0048", "pos": "NN", "sense": "Aufruhre,Aufruhrs,Aufruhren,Aufruhres" }, "Aufschrei": { "form": "Aufschrei", "polarity": "-0.0048", "pos": "NN", "sense": "Aufschreien,Aufschreis,Aufschreie,Aufschreies" }, "Aufstand": { "form": "Aufstand", "polarity": "-0.0048", "pos": "NN", "sense": "Aufstandes,Aufstände,Aufstands,Aufständen,Aufstande" }, "Ausbeute": { "form": "Ausbeute", "polarity": "-0.1894", "pos": "NN", "sense": "Ausbeuten" }, "Ausbeuter": { "form": "Ausbeuter", "polarity": "-0.0048", "pos": "NN", "sense": "Ausbeuters,Ausbeutern" }, "Ausbeutung": { "form": "Ausbeutung", "polarity": "-0.0048", "pos": "NN", "sense": "Ausbeutungen" }, "Ausbruch": { "form": "Ausbruch", "polarity": "-0.0048", "pos": "NN", "sense": "Ausbruchs,Ausbruches,Ausbrüche,Ausbrüchen,Ausbruche" }, "Auseinandersetzung": { "form": "Auseinandersetzung", "polarity": "-0.0603", "pos": "NN", "sense": "Auseinandersetzungen" }, "Ausfall": { "form": "Ausfall", "polarity": "-0.2164", "pos": "NN", "sense": "Ausfällen,Ausfälle,Ausfalles,Ausfalls,Ausfalle" }, "Ausgrenzung": { "form": "Ausgrenzung", "polarity": "-0.626", "pos": "NN", "sense": "Ausgrenzungen" }, "Auslöschung": { "form": "Auslöschung", "polarity": "-0.0048", "pos": "NN", "sense": "Auslöschungen" }, "Ausrottung": { "form": "Ausrottung", "polarity": "-0.0048", "pos": "NN", "sense": "Ausrottungen" }, "Ausschließung": { "form": "Ausschließung", "polarity": "-0.0048", "pos": "NN", "sense": "Ausschließungen" }, "Aussetzung": { "form": "Aussetzung", "polarity": "-0.0048", "pos": "NN", "sense": "Aussetzungen" }, "Banalität": { "form": "Banalität", "polarity": "-0.0048", "pos": "NN", "sense": "Banalitäten" }, "Bankrott": { "form": "Bankrott", "polarity": "-0.0048", "pos": "NN", "sense": "Bankrotte,Bankrotts,Bankrottes,Bankrotten" }, "Barriere": { "form": "Barriere", "polarity": "-0.0048", "pos": "NN", "sense": "Barrieren" }, "Bedeutungslosigkeit": { "form": "Bedeutungslosigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Bedeutungslosigkeiten" }, "Bedrohung": { "form": "Bedrohung", "polarity": "-0.0048", "pos": "NN", "sense": "Bedrohungen" }, "Bedrängung": { "form": "Bedrängung", "polarity": "-0.0048", "pos": "NN", "sense": "Bedrängungen" }, "Bedrückung": { "form": "Bedrückung", "polarity": "-0.0435", "pos": "NN", "sense": "Bedrückungen" }, "Bedürftige": { "form": "Bedürftige", "polarity": "-0.0048", "pos": "NN", "sense": "Bedürftigen" }, "Beeinträchtigung": { "form": "Beeinträchtigung", "polarity": "-0.3472", "pos": "NN", "sense": "Beeinträchtigungen" }, "Befall": { "form": "Befall", "polarity": "-0.0048", "pos": "NN", "sense": "Befalls,Befälle,Befällen,Befalles,Befalle" }, "Befangenheit": { "form": "Befangenheit", "polarity": "-0.0048", "pos": "NN", "sense": "Befangenheiten" }, "Befürchtung": { "form": "Befürchtung", "polarity": "-0.4903", "pos": "NN", "sense": "Befürchtungen" }, "Begrenzung": { "form": "Begrenzung", "polarity": "-0.0048", "pos": "NN", "sense": "Begrenzungen" }, "Behinderung": { "form": "Behinderung", "polarity": "-0.3578", "pos": "NN", "sense": "Behinderungen" }, "Belastung": { "form": "Belastung", "polarity": "-0.3711", "pos": "NN", "sense": "Belastungen" }, "Beleidigung": { "form": "Beleidigung", "polarity": "-0.3432", "pos": "NN", "sense": "Beleidigungen" }, "Belästigung": { "form": "Belästigung", "polarity": "-0.0048", "pos": "NN", "sense": "Belästigungen" }, "Beschneidung": { "form": "Beschneidung", "polarity": "-0.3313", "pos": "NN", "sense": "Beschneidungen" }, "Beschränkung": { "form": "Beschränkung", "polarity": "-0.3518", "pos": "NN", "sense": "Beschränkungen" }, "Beschuldigung": { "form": "Beschuldigung", "polarity": "-0.3209", "pos": "NN", "sense": "Beschuldigungen" }, "Beschwerde": { "form": "Beschwerde", "polarity": "-0.0048", "pos": "NN", "sense": "Beschwerden" }, "Beschwerlichkeit": { "form": "Beschwerlichkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Beschwerlichkeiten" }, "Beschädigung": { "form": "Beschädigung", "polarity": "-0.0048", "pos": "NN", "sense": "Beschädigungen" }, "Beschäftigungslose": { "form": "Beschäftigungslose", "polarity": "-0.0048", "pos": "NN", "sense": "Beschäftigungslosen" }, "Beschäftigungsloser": { "form": "Beschäftigungsloser", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Beschämung": { "form": "Beschämung", "polarity": "-0.0048", "pos": "NN", "sense": "Beschämungen" }, "Beseitigung": { "form": "Beseitigung", "polarity": "-0.0048", "pos": "NN", "sense": "Beseitigungnen" }, "Besorgnis": { "form": "Besorgnis", "polarity": "-0.0048", "pos": "NN", "sense": "Besorgnissen,Besorgnisse" }, "Bestechung": { "form": "Bestechung", "polarity": "-0.0048", "pos": "NN", "sense": "Bestechungen" }, "Besteuerung": { "form": "Besteuerung", "polarity": "-0.0048", "pos": "NN", "sense": "Besteuerungen" }, "Bestrafung": { "form": "Bestrafung", "polarity": "-0.0048", "pos": "NN", "sense": "Bestrafungen" }, "Bestürzung": { "form": "Bestürzung", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Betrug": { "form": "Betrug", "polarity": "-0.4913", "pos": "NN", "sense": "Betrugs,Betruges,Betruge" }, "Betrüger": { "form": "Betrüger", "polarity": "-0.3311", "pos": "NN", "sense": "Betrügers,Betrügern" }, "Beule": { "form": "Beule", "polarity": "-0.0048", "pos": "NN", "sense": "Beulen" }, "Beunruhigung": { "form": "Beunruhigung", "polarity": "-0.324", "pos": "NN", "sense": "Beunruhigungen" }, "Bevormundung": { "form": "Bevormundung", "polarity": "-0.0048", "pos": "NN", "sense": "Bevormundungen" }, "Bitterkeit": { "form": "Bitterkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Bitterkeiten" }, "Blindheit": { "form": "Blindheit", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Blockade": { "form": "Blockade", "polarity": "-0.0048", "pos": "NN", "sense": "Blockaden" }, "Blockierung": { "form": "Blockierung", "polarity": "-0.0048", "pos": "NN", "sense": "Blockierungen" }, "Blödheit": { "form": "Blödheit", "polarity": "-0.0048", "pos": "NN", "sense": "Blödheiten" }, "Bombardement": { "form": "Bombardement", "polarity": "-0.0048", "pos": "NN", "sense": "Bombardements" }, "Bombardierung": { "form": "Bombardierung", "polarity": "-0.0048", "pos": "NN", "sense": "Bombardierungen" }, "Bombe": { "form": "Bombe", "polarity": "-0.0048", "pos": "NN", "sense": "Bomben" }, "Bosheit": { "form": "Bosheit", "polarity": "-0.3371", "pos": "NN", "sense": "Bosheiten" }, "Brand": { "form": "Brand", "polarity": "-0.0048", "pos": "NN", "sense": "Bränden,Brände,Brandes,Brands,Brande" }, "Bruch": { "form": "Bruch", "polarity": "-0.3463", "pos": "NN", "sense": "Bruchs,Brüche,Bruches,Brüchen,Bruche" }, "Brutalität": { "form": "Brutalität", "polarity": "-0.0048", "pos": "NN", "sense": "Brutalitäten" }, "Bußgeld": { "form": "Bußgeld", "polarity": "-0.3377", "pos": "NN", "sense": "Bußgeldes,Bußgelds,Bußgelder,Bußgeldern" }, "Bösartigkeit": { "form": "Bösartigkeit", "polarity": "-0.3189", "pos": "NN", "sense": "Bösartigkeiten" }, "Bösewicht": { "form": "Bösewicht", "polarity": "-0.0048", "pos": "NN", "sense": "Bösewichten,Bösewichte,Bösewichts,Bösewichtes,Bösewichter" }, "Bürde": { "form": "Bürde", "polarity": "-0.0524", "pos": "NN", "sense": "Bürden" }, "Chaos": { "form": "Chaos", "polarity": "-0.3489", "pos": "NN", "sense": "" }, "Crash": { "form": "Crash", "polarity": "-0.1885", "pos": "NN", "sense": "Crashs" }, "Defekt": { "form": "Defekt", "polarity": "-0.0048", "pos": "NN", "sense": "Defekten,Defekts,Defektes,Defekte" }, "Defizit": { "form": "Defizit", "polarity": "-0.347", "pos": "NN", "sense": "Defiziten,Defizits,Defizite,Defizites" }, "Deformation": { "form": "Deformation", "polarity": "-0.0048", "pos": "NN", "sense": "Deformationen" }, "Degradierung": { "form": "Degradierung", "polarity": "-0.3137", "pos": "NN", "sense": "Degradierungen" }, "Dekadenz": { "form": "Dekadenz", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Demütigung": { "form": "Demütigung", "polarity": "-0.0048", "pos": "NN", "sense": "Demütigungen" }, "Denkfehler": { "form": "Denkfehler", "polarity": "-0.0048", "pos": "NN", "sense": "Denkfehlern,Denkfehlers" }, "Depression": { "form": "Depression", "polarity": "-0.4951", "pos": "NN", "sense": "Depressionen" }, "Desaster": { "form": "Desaster", "polarity": "-0.3413", "pos": "NN", "sense": "Desastern,Desasters" }, "Desinteresse": { "form": "Desinteresse", "polarity": "-0.3348", "pos": "NN", "sense": "Desinteresses" }, "Dezimierung": { "form": "Dezimierung", "polarity": "-0.0048", "pos": "NN", "sense": "Dezimierungen" }, "Dieb": { "form": "Dieb", "polarity": "-0.1962", "pos": "NN", "sense": "Diebes,Diebs,Dieben,Diebe" }, "Diebstahl": { "form": "Diebstahl", "polarity": "-0.3505", "pos": "NN", "sense": "Diebstahls,Diebstähle,Diebstahles,Diebstählen" }, "Diffamierung": { "form": "Diffamierung", "polarity": "-0.4591", "pos": "NN", "sense": "Diffamierungen" }, "Diktator": { "form": "Diktator", "polarity": "-0.0048", "pos": "NN", "sense": "Diktatoren,Diktators" }, "Dilemma": { "form": "Dilemma", "polarity": "-0.3403", "pos": "NN", "sense": "Dilemmas,Dilemmata" }, "Diskriminierung": { "form": "Diskriminierung", "polarity": "-0.0048", "pos": "NN", "sense": "Diskriminierungen" }, "Dissens": { "form": "Dissens", "polarity": "-0.0048", "pos": "NN", "sense": "Dissensen,Dissense,Dissenses" }, "Dominierung": { "form": "Dominierung", "polarity": "-0.0048", "pos": "NN", "sense": "Dominierungen" }, "Doppeldeutigkeit": { "form": "Doppeldeutigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Doppeldeutigkeiten" }, "Doppelspiel": { "form": "Doppelspiel", "polarity": "-0.0048", "pos": "NN", "sense": "Doppelspiele,Doppelspieles,Doppelspiels,Doppelspielen" }, "Dreck": { "form": "Dreck", "polarity": "-0.0048", "pos": "NN", "sense": "Dreckes,Drecks" }, "Drift": { "form": "Drift", "polarity": "-0.0048", "pos": "NN", "sense": "Driften" }, "Drohung": { "form": "Drohung", "polarity": "-0.0048", "pos": "NN", "sense": "Drohungen" }, "Drosselung": { "form": "Drosselung", "polarity": "-0.3178", "pos": "NN", "sense": "Drosselungen" }, "Dummheit": { "form": "Dummheit", "polarity": "-0.4877", "pos": "NN", "sense": "Dummheiten" }, "Dummkopf": { "form": "Dummkopf", "polarity": "-0.0048", "pos": "NN", "sense": "Dummköpfen,Dummkopfes,Dummköpfe,Dummkopfs" }, "Dunkelheit": { "form": "Dunkelheit", "polarity": "-0.3547", "pos": "NN", "sense": "Dunkelheiten" }, "Durcheinander": { "form": "Durcheinander", "polarity": "-0.0048", "pos": "NN", "sense": "Durcheinanders,Durcheinandern" }, "Dussel": { "form": "Dussel", "polarity": "-0.3094", "pos": "NN", "sense": "Dussels,Dusseln" }, "Dämpfer": { "form": "Dämpfer", "polarity": "-0.0048", "pos": "NN", "sense": "Dämpfern,Dämpfers" }, "Dürre": { "form": "Dürre", "polarity": "-0.0048", "pos": "NN", "sense": "Dürren" }, "Düsternis": { "form": "Düsternis", "polarity": "-0.0048", "pos": "NN", "sense": "Düsternissen,Düsternisse" }, "Egoist": { "form": "Egoist", "polarity": "-0.3179", "pos": "NN", "sense": "Egoisten" }, "Ehebruch": { "form": "Ehebruch", "polarity": "-0.4743", "pos": "NN", "sense": "Ehebruches,Ehebruchs,Ehebrüche,Ehebrüchen" }, "Einbrecher": { "form": "Einbrecher", "polarity": "-0.0048", "pos": "NN", "sense": "Einbrechers,Einbrechern" }, "Einbruch": { "form": "Einbruch", "polarity": "-0.3498", "pos": "NN", "sense": "Einbrüche,Einbruches,Einbrüchen,Einbruchs" }, "Einbuße": { "form": "Einbuße", "polarity": "-0.0048", "pos": "NN", "sense": "Einbußen" }, "Einsamkeit": { "form": "Einsamkeit", "polarity": "-0.339", "pos": "NN", "sense": "Einsamkeiten" }, "Einschlag": { "form": "Einschlag", "polarity": "-0.0048", "pos": "NN", "sense": "Einschlägen,Einschlages,Einschläge,Einschlags" }, "Einschränkung": { "form": "Einschränkung", "polarity": "-0.2048", "pos": "NN", "sense": "Einschränkungen" }, "Einschüchterung": { "form": "Einschüchterung", "polarity": "-0.0048", "pos": "NN", "sense": "Einschüchterungen" }, "insturz": { "form": "insturz", "polarity": "-0.0048", "pos": "NN", "sense": "Einstürzen,Einsturzs,Einsturzes,Einstürze" }, "Ekel": { "form": "Ekel", "polarity": "-0.462", "pos": "NN", "sense": "Ekels" }, "Elend": { "form": "Elend", "polarity": "-0.2013", "pos": "NN", "sense": "Elends,Elendes" }, "Empörung": { "form": "Empörung", "polarity": "-0.0048", "pos": "NN", "sense": "Empörungen" }, "Ende": { "form": "Ende", "polarity": "-0.2088", "pos": "NN", "sense": "Endes,Enden" }, "Energielosigkeit": { "form": "Energielosigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Entbindung": { "form": "Entbindung", "polarity": "-0.0048", "pos": "NN", "sense": "Entbindungen" }, "Entfremdung": { "form": "Entfremdung", "polarity": "-0.0048", "pos": "NN", "sense": "Entfremdungen" }, "Entführung": { "form": "Entführung", "polarity": "-0.0048", "pos": "NN", "sense": "Entführungen" }, "Enthauptung": { "form": "Enthauptung", "polarity": "-0.0048", "pos": "NN", "sense": "Enthauptungen" }, "Entlassung": { "form": "Entlassung", "polarity": "-0.0048", "pos": "NN", "sense": "Entlassungen" }, "Entmutigung": { "form": "Entmutigung", "polarity": "-0.0048", "pos": "NN", "sense": "Entmutigungen" }, "Enttäuschung": { "form": "Enttäuschung", "polarity": "-0.3378", "pos": "NN", "sense": "Enttäuschungen" }, "Entziehung": { "form": "Entziehung", "polarity": "-0.0048", "pos": "NN", "sense": "Entziehungen" }, "Epidemie": { "form": "Epidemie", "polarity": "-0.0048", "pos": "NN", "sense": "Epidemien" }, "Ermahnung": { "form": "Ermahnung", "polarity": "-0.0048", "pos": "NN", "sense": "Ermahnungen" }, "Ermordung": { "form": "Ermordung", "polarity": "-0.332", "pos": "NN", "sense": "Ermordungen" }, "Ermüdung": { "form": "Ermüdung", "polarity": "-0.0048", "pos": "NN", "sense": "Ermüdungen" }, "Erniedrigung": { "form": "Erniedrigung", "polarity": "-0.3259", "pos": "NN", "sense": "Erniedrigungen" }, "Ernüchterung": { "form": "Ernüchterung", "polarity": "-0.0048", "pos": "NN", "sense": "Ernüchterungen" }, "Erosion": { "form": "Erosion", "polarity": "-0.0666", "pos": "NN", "sense": "Erosionen" }, "Erpressung": { "form": "Erpressung", "polarity": "-0.0048", "pos": "NN", "sense": "Erpressungen" }, "Erschöpfung": { "form": "Erschöpfung", "polarity": "-0.0595", "pos": "NN", "sense": "Erschöpfungen" }, "Erschütterung": { "form": "Erschütterung", "polarity": "-0.0048", "pos": "NN", "sense": "Erschütterungen" }, "Explosion": { "form": "Explosion", "polarity": "-0.0048", "pos": "NN", "sense": "Explosionen" }, "Fahrlässigkeit": { "form": "Fahrlässigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Fahrlässigkeiten" }, "Farce": { "form": "Farce", "polarity": "-0.3349", "pos": "NN", "sense": "Farcen" }, "Faschist": { "form": "Faschist", "polarity": "-0.0048", "pos": "NN", "sense": "Faschisten" }, "Faulheit": { "form": "Faulheit", "polarity": "-0.611", "pos": "NN", "sense": "" }, "Fehde": { "form": "Fehde", "polarity": "-0.0048", "pos": "NN", "sense": "Fehden" }, "Fehlanzeige": { "form": "Fehlanzeige", "polarity": "-0.0048", "pos": "NN", "sense": "Fehlanzeigen" }, "Fehler": { "form": "Fehler", "polarity": "-0.6752", "pos": "NN", "sense": "Fehlern,Fehlers" }, "Fehlermeldung": { "form": "Fehlermeldung", "polarity": "-0.4765", "pos": "NN", "sense": "Fehlermeldungen" }, "Fehlkauf": { "form": "Fehlkauf", "polarity": "-0.0048", "pos": "NN", "sense": "Fehlkaufes,Fehlkaufs,Fehlkäufe,Fehlkäufen" }, "Fehlkonstruktion": { "form": "Fehlkonstruktion", "polarity": "-0.0048", "pos": "NN", "sense": "Fehlkonstruktionen" }, "Fehlleistung": { "form": "Fehlleistung", "polarity": "-0.0048", "pos": "NN", "sense": "Fehlleistungen" }, "Fehltritt": { "form": "Fehltritt", "polarity": "-0.0048", "pos": "NN", "sense": "Fehltrittes,Fehltritten,Fehltritte,Fehltritts" }, "Fehlverhalten": { "form": "Fehlverhalten", "polarity": "-0.3461", "pos": "NN", "sense": "Fehlverhaltens" }, "Feind": { "form": "Feind", "polarity": "-0.8054", "pos": "NN", "sense": "Feindes,Feinde,Feinds,Feinden" }, "Feuer": { "form": "Feuer", "polarity": "-0.0445", "pos": "NN", "sense": "Feuern,Feuers" }, "Fiasko": { "form": "Fiasko", "polarity": "-0.0048", "pos": "NN", "sense": "Fiaskos" }, "Finanzkrise": { "form": "Finanzkrise", "polarity": "-0.3283", "pos": "NN", "sense": "Finanzkrisen" }, "Finte": { "form": "Finte", "polarity": "-0.0048", "pos": "NN", "sense": "Finten" }, "Flaute": { "form": "Flaute", "polarity": "-0.0413", "pos": "NN", "sense": "Flauten" }, "Fluch": { "form": "Fluch", "polarity": "-0.3534", "pos": "NN", "sense": "Fluchs,Flüchen,Flüche,Fluches" }, "Flucht": { "form": "Flucht", "polarity": "-0.0048", "pos": "NN", "sense": "Fluchten" }, "Flüchtiger": { "form": "Flüchtiger", "polarity": "-0.0048", "pos": "NN", "sense": "Flüchtigen" }, "Flüchtigkeit": { "form": "Flüchtigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Flüchtigkeiten" }, "Flüchtling": { "form": "Flüchtling", "polarity": "-0.0048", "pos": "NN", "sense": "Flüchtlings,Flüchtlinge,Flüchtlinges,Flüchtlingen" }, "Frechheit": { "form": "Frechheit", "polarity": "-0.4665", "pos": "NN", "sense": "Frechheiten" }, "Frust": { "form": "Frust", "polarity": "-0.469", "pos": "NN", "sense": "Frustes,Frusts" }, "Frustration": { "form": "Frustration", "polarity": "-0.3354", "pos": "NN", "sense": "Frustrationen" }, "Furcht": { "form": "Furcht", "polarity": "-0.5012", "pos": "NN", "sense": "" }, "Fälschung": { "form": "Fälschung", "polarity": "-0.3377", "pos": "NN", "sense": "Fälschungen" }, "Gammler": { "form": "Gammler", "polarity": "-0.0048", "pos": "NN", "sense": "Gammlers,Gammlern" }, "Gangster": { "form": "Gangster", "polarity": "-0.3375", "pos": "NN", "sense": "Gangsters,Gangstern" }, "Garnichts": { "form": "Garnichts", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Gauner": { "form": "Gauner", "polarity": "-0.4592", "pos": "NN", "sense": "Gaunern,Gauners" }, "Gebrechen": { "form": "Gebrechen", "polarity": "-0.3251", "pos": "NN", "sense": "Gebrechens" }, "Gedränge": { "form": "Gedränge", "polarity": "-0.0571", "pos": "NN", "sense": "Gedrängen,Gedränges" }, "Gefahr": { "form": "Gefahr", "polarity": "-1.0", "pos": "NN", "sense": "Gefahren" }, "Gefecht": { "form": "Gefecht", "polarity": "-0.3373", "pos": "NN", "sense": "Gefechten,Gefechtes,Gefechte,Gefechts" }, "Gefährdung": { "form": "Gefährdung", "polarity": "-0.0048", "pos": "NN", "sense": "Gefährdungen" }, "Gegner": { "form": "Gegner", "polarity": "-0.344", "pos": "NN", "sense": "Gegnern,Gegners" }, "Geisteskrankheit": { "form": "Geisteskrankheit", "polarity": "-0.0048", "pos": "NN", "sense": "Geisteskrankheiten" }, "Geistlosigkeit": { "form": "Geistlosigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Geistlosigkeiten" }, "Geiz": { "form": "Geiz", "polarity": "-0.0048", "pos": "NN", "sense": "Geizen,Geizes,Geize" }, "Geizhals": { "form": "Geizhals", "polarity": "-0.0048", "pos": "NN", "sense": "Geizhälsen,Geizhälse,Geizhalse,Geizhalses" }, "Geizkragen": { "form": "Geizkragen", "polarity": "-0.0048", "pos": "NN", "sense": "Geizkragens" }, "Geldstrafe": { "form": "Geldstrafe", "polarity": "-0.3299", "pos": "NN", "sense": "Geldstrafen" }, "Geschmacklosigkeit": { "form": "Geschmacklosigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Geschmacklosigkeiten" }, "Geschäftsauflösung": { "form": "Geschäftsauflösung", "polarity": "-0.0048", "pos": "NN", "sense": "Geschäftsauflösungen" }, "Gestank": { "form": "Gestank", "polarity": "-0.0048", "pos": "NN", "sense": "Gestanks,Gestankes,Gestanke" }, "Gewalt": { "form": "Gewalt", "polarity": "-0.5363", "pos": "NN", "sense": "Gewalten" }, "Gewalttätige": { "form": "Gewalttätige", "polarity": "-0.0048", "pos": "NN", "sense": "Gewalttätigen" }, "Gewalttätiger": { "form": "Gewalttätiger", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Gift": { "form": "Gift", "polarity": "-0.3505", "pos": "NN", "sense": "Gifts,Giftes,Giften,Gifte" }, "Glanzlosigkeit": { "form": "Glanzlosigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Gleichgültigkeit": { "form": "Gleichgültigkeit", "polarity": "-0.343", "pos": "NN", "sense": "" }, "Glücklosigkeit": { "form": "Glücklosigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Gnadenlosigkeit": { "form": "Gnadenlosigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Grausamkeit": { "form": "Grausamkeit", "polarity": "-0.3348", "pos": "NN", "sense": "Grausamkeiten" }, "Groll": { "form": "Groll", "polarity": "-0.6021", "pos": "NN", "sense": "Grolls,Grolles" }, "Groteske": { "form": "Groteske", "polarity": "-0.0048", "pos": "NN", "sense": "Grotesken" }, "Habgier": { "form": "Habgier", "polarity": "-0.0532", "pos": "NN", "sense": "" }, "Haft": { "form": "Haft", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Handgemenge": { "form": "Handgemenge", "polarity": "-0.3174", "pos": "NN", "sense": "Handgemenges,Handgemengen" }, "Handicap": { "form": "Handicap", "polarity": "-0.0426", "pos": "NN", "sense": "Handicaps" }, "Handikap": { "form": "Handikap", "polarity": "-0.0426", "pos": "NN", "sense": "Handikaps" }, "Hass": { "form": "Hass", "polarity": "-0.5014", "pos": "NN", "sense": "Hasse,Hasses" }, "Heimsuchung": { "form": "Heimsuchung", "polarity": "-0.0048", "pos": "NN", "sense": "Heimsuchungen" }, "Hektik": { "form": "Hektik", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Hemmung": { "form": "Hemmung", "polarity": "-0.0048", "pos": "NN", "sense": "Hemmungen" }, "Herausforderung": { "form": "Herausforderung", "polarity": "-0.0048", "pos": "NN", "sense": "Herausforderungen" }, "Heuchelei": { "form": "Heuchelei", "polarity": "-0.0048", "pos": "NN", "sense": "Heucheleien" }, "Heuchler": { "form": "Heuchler", "polarity": "-0.3251", "pos": "NN", "sense": "Heuchlers,Heuchlern" }, "Hilflosigkeit": { "form": "Hilflosigkeit", "polarity": "-0.3394", "pos": "NN", "sense": "" }, "Hindernis": { "form": "Hindernis", "polarity": "-0.0048", "pos": "NN", "sense": "Hinderniss,Hindernisses,Hindernissen,Hindernisse" }, "Hinterhalt": { "form": "Hinterhalt", "polarity": "-0.0048", "pos": "NN", "sense": "Hinterhaltes,Hinterhalts,Hinterhalte,Hinterhalten" }, "Hinterlist": { "form": "Hinterlist", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Hohn": { "form": "Hohn", "polarity": "-0.0048", "pos": "NN", "sense": "Hohnes,Hohns" }, "Horror": { "form": "Horror", "polarity": "-0.0509", "pos": "NN", "sense": "Horrors" }, "Hunger": { "form": "Hunger", "polarity": "-0.3531", "pos": "NN", "sense": "Hungers" }, "Hungersnot": { "form": "Hungersnot", "polarity": "-0.4739", "pos": "NN", "sense": "Hungersnöten,Hungersnöte" }, "Hungertod": { "form": "Hungertod", "polarity": "-0.0048", "pos": "NN", "sense": "Hungertods,Hungertodes,Hungertode,Hungertoden" }, "Hysterie": { "form": "Hysterie", "polarity": "-0.3386", "pos": "NN", "sense": "Hysterien" }, "Härte": { "form": "Härte", "polarity": "-0.0446", "pos": "NN", "sense": "Härten" }, "Hölle": { "form": "Hölle", "polarity": "-0.5052", "pos": "NN", "sense": "Höllen" }, "Idiot": { "form": "Idiot", "polarity": "-0.0048", "pos": "NN", "sense": "Idioten" }, "Illegalität": { "form": "Illegalität", "polarity": "-0.0048", "pos": "NN", "sense": "Illegalitäten" }, "Immobilität": { "form": "Immobilität", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Ineffizienz": { "form": "Ineffizienz", "polarity": "-0.0048", "pos": "NN", "sense": "Ineffizienzen" }, "Infektion": { "form": "Infektion", "polarity": "-0.2059", "pos": "NN", "sense": "Infektionen" }, "Infiltration": { "form": "Infiltration", "polarity": "-0.0048", "pos": "NN", "sense": "Infiltrationen" }, "Inflation": { "form": "Inflation", "polarity": "-0.3462", "pos": "NN", "sense": "Inflationen" }, "Inkompetenz": { "form": "Inkompetenz", "polarity": "-0.0048", "pos": "NN", "sense": "Inkompetenzen" }, "Inkonsequenz": { "form": "Inkonsequenz", "polarity": "-0.0455", "pos": "NN", "sense": "Inkonsequenzen" }, "Inkonsistenz": { "form": "Inkonsistenz", "polarity": "-0.3097", "pos": "NN", "sense": "Inkonsistenzen" }, "Instabilität": { "form": "Instabilität", "polarity": "-0.3358", "pos": "NN", "sense": "Instabilitäten" }, "Intervention": { "form": "Intervention", "polarity": "-0.1975", "pos": "NN", "sense": "Interventionen" }, "Invasion": { "form": "Invasion", "polarity": "-0.0048", "pos": "NN", "sense": "Invasionen" }, "Isolation": { "form": "Isolation", "polarity": "-0.3453", "pos": "NN", "sense": "Isolationen" }, "Jammer": { "form": "Jammer", "polarity": "-0.4613", "pos": "NN", "sense": "Jammers" }, "Jähzorn": { "form": "Jähzorn", "polarity": "-0.0048", "pos": "NN", "sense": "Jähzorns,Jähzornes" }, "Kampf": { "form": "Kampf", "polarity": "-0.5372", "pos": "NN", "sense": "Kampfs,Kampfes,Kampfe,Kämpfe,Kämpfen" }, "Kapitalverbrechen": { "form": "Kapitalverbrechen", "polarity": "-0.0048", "pos": "NN", "sense": "Kapitalverbrechens" }, "Kapitulation": { "form": "Kapitulation", "polarity": "-0.0048", "pos": "NN", "sense": "Kapitulationen" }, "Katastrophe": { "form": "Katastrophe", "polarity": "-0.5027", "pos": "NN", "sense": "Katastrophen" }, "Keim": { "form": "Keim", "polarity": "-0.0048", "pos": "NN", "sense": "Keims,Keime,Keimes,Keimen" }, "Klage": { "form": "Klage", "polarity": "-0.0048", "pos": "NN", "sense": "Klagen" }, "Klischee": { "form": "Klischee", "polarity": "-0.48", "pos": "NN", "sense": "Klischees" }, "Kläger": { "form": "Kläger", "polarity": "-0.3673", "pos": "NN", "sense": "Klägers,Klägern" }, "Knappheit": { "form": "Knappheit", "polarity": "-0.0048", "pos": "NN", "sense": "Knappheiten" }, "Kollaps": { "form": "Kollaps", "polarity": "-0.0048", "pos": "NN", "sense": "Kollapses,Kollapsen,Kollapse" }, "Kollision": { "form": "Kollision", "polarity": "-0.3323", "pos": "NN", "sense": "Kollisionen" }, "Komplikation": { "form": "Komplikation", "polarity": "-0.0048", "pos": "NN", "sense": "Komplikationen" }, "Konflikt": { "form": "Konflikt", "polarity": "-0.0048", "pos": "NN", "sense": "Konfliktes,Konflikte,Konflikts,Konflikten" }, "Konfrontation": { "form": "Konfrontation", "polarity": "-0.0048", "pos": "NN", "sense": "Konfrontationen" }, "Konjunkturrückgang": { "form": "Konjunkturrückgang", "polarity": "-0.0048", "pos": "NN", "sense": "Konjunkturrückgange,Konjunkturrückganges,Konjunkturrückgangs,Konjunkturrückgänge,Konjunkturrückgängen" }, "Konkurrenz": { "form": "Konkurrenz", "polarity": "-0.0461", "pos": "NN", "sense": "Konkurrenzen" }, "Konkurrenzkampf": { "form": "Konkurrenzkampf", "polarity": "-0.0494", "pos": "NN", "sense": "Konkurrenzkampfs,Konkurrenzkampfes,Konkurrenzkampfe,Konkurrenzkämpfen,Konkurrenzkämpfe" }, "Konkurs": { "form": "Konkurs", "polarity": "-0.0048", "pos": "NN", "sense": "Konkurse,Konkurses,Konkursen" }, "Kontroverse": { "form": "Kontroverse", "polarity": "-0.3329", "pos": "NN", "sense": "Kontroversen" }, "Kopfschmerz": { "form": "Kopfschmerz", "polarity": "-0.1993", "pos": "NN", "sense": "Kopfschmerze,Kopfschmerzes,Kopfschmerzen" }, "Korruption": { "form": "Korruption", "polarity": "-0.3439", "pos": "NN", "sense": "Korruptionen" }, "Kostspieligkeit": { "form": "Kostspieligkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Kostspieligkeiten" }, "Krach": { "form": "Krach", "polarity": "-0.0048", "pos": "NN", "sense": "Krächen,Kräche,Krachs,Kraches" }, "Krachen": { "form": "Krachen", "polarity": "-0.0048", "pos": "NN", "sense": "Krächen,Krachens" }, "Krankheit": { "form": "Krankheit", "polarity": "-0.6858", "pos": "NN", "sense": "Krankheiten" }, "Krieg": { "form": "Krieg", "polarity": "-0.5364", "pos": "NN", "sense": "Kriegs,Krieges,Kriegen,Kriege" }, "Kriminalität": { "form": "Kriminalität", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Krise": { "form": "Krise", "polarity": "-0.3621", "pos": "NN", "sense": "Krisen" }, "Kritik": { "form": "Kritik", "polarity": "-0.5308", "pos": "NN", "sense": "Kritiken" }, "Kritiker": { "form": "Kritiker", "polarity": "-0.6494", "pos": "NN", "sense": "Kritikers,Kritikern" }, "Kränkung": { "form": "Kränkung", "polarity": "-0.0048", "pos": "NN", "sense": "Kränkungen" }, "Krüppel": { "form": "Krüppel", "polarity": "-0.3203", "pos": "NN", "sense": "Krüppeln,Krüppels" }, "Kurseinbruch": { "form": "Kurseinbruch", "polarity": "-0.0048", "pos": "NN", "sense": "Kurseinbruchs,Kurseinbrüche,Kurseinbruches,Kurseinbrüchen" }, "Kälte": { "form": "Kälte", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Kündigung": { "form": "Kündigung", "polarity": "-0.0048", "pos": "NN", "sense": "Kündigungen" }, "Kürzung": { "form": "Kürzung", "polarity": "-0.341", "pos": "NN", "sense": "Kürzungen" }, "Langeweile": { "form": "Langeweile", "polarity": "-0.0377", "pos": "NN", "sense": "" }, "Langweiler": { "form": "Langweiler", "polarity": "-0.0443", "pos": "NN", "sense": "Langweilern,Langweilers" }, "Last": { "form": "Last", "polarity": "-0.0048", "pos": "NN", "sense": "Lasten" }, "Launenhaftigkeit": { "form": "Launenhaftigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Launenhaftigkeiten" }, "Lebensgefahr": { "form": "Lebensgefahr", "polarity": "-0.0048", "pos": "NN", "sense": "Lebensgefahren" }, "Leblosigkeit": { "form": "Leblosigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Leere": { "form": "Leere", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Leichtsinn": { "form": "Leichtsinn", "polarity": "-0.3253", "pos": "NN", "sense": "Leichtsinns,Leichtsinnes" }, "Leichtsinnsfehler": { "form": "Leichtsinnsfehler", "polarity": "-0.0371", "pos": "NN", "sense": "Leichtsinnsfehlers,Leichtsinnsfehlern" }, "Leid": { "form": "Leid", "polarity": "-0.5056", "pos": "NN", "sense": "Leides,Leids,Leide" }, "Leidende": { "form": "Leidende", "polarity": "-0.0048", "pos": "NN", "sense": "Leidendem,Leidenden,Leidender" }, "Liquidation": { "form": "Liquidation", "polarity": "-0.0048", "pos": "NN", "sense": "Liquidationen" }, "Lähmung": { "form": "Lähmung", "polarity": "-0.0048", "pos": "NN", "sense": "Lähmungen" }, "Löschung": { "form": "Löschung", "polarity": "-0.0048", "pos": "NN", "sense": "Löschungen" }, "Lüge": { "form": "Lüge", "polarity": "-0.5", "pos": "NN", "sense": "Lügen" }, "Lügner": { "form": "Lügner", "polarity": "-0.4767", "pos": "NN", "sense": "Lügnern,Lügners" }, "Makel": { "form": "Makel", "polarity": "-0.1813", "pos": "NN", "sense": "Makels,Makeln" }, "Mangel": { "form": "Mangel", "polarity": "-0.3669", "pos": "NN", "sense": "Mangels,Mängel,Mängeln" }, "Manipulation": { "form": "Manipulation", "polarity": "-0.3455", "pos": "NN", "sense": "Manipulationen" }, "Massaker": { "form": "Massaker", "polarity": "-0.0048", "pos": "NN", "sense": "Massakern,Massakers" }, "Maßlosigkeit": { "form": "Maßlosigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Maßlosigkeiten" }, "Melancholie": { "form": "Melancholie", "polarity": "-0.1859", "pos": "NN", "sense": "Melancholien" }, "Melodrama": { "form": "Melodrama", "polarity": "-0.0048", "pos": "NN", "sense": "Melodramen,Melodramas" }, "Merkwürdigkeit": { "form": "Merkwürdigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Merkwürdigkeiten" }, "Minderung": { "form": "Minderung", "polarity": "-0.0048", "pos": "NN", "sense": "Minderungen" }, "Minderwertigkeit": { "form": "Minderwertigkeit", "polarity": "-0.3201", "pos": "NN", "sense": "Minderwertigkeiten" }, "Missachtung": { "form": "Missachtung", "polarity": "-0.0048", "pos": "NN", "sense": "Missachtungen" }, "Missbrauch": { "form": "Missbrauch", "polarity": "-0.0048", "pos": "NN", "sense": "Missbräuchen,Missbrauches,Missbräuche,Missbrauchs,Missbrauche" }, "Missgeschick": { "form": "Missgeschick", "polarity": "-0.0472", "pos": "NN", "sense": "Missgeschicken,Missgeschicks,Missgeschicke,Missgeschickes" }, "Missglück": { "form": "Missglück", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Misstrauen": { "form": "Misstrauen", "polarity": "-0.4778", "pos": "NN", "sense": "Misstrauens" }, "Misstrauensantrag": { "form": "Misstrauensantrag", "polarity": "-0.0048", "pos": "NN", "sense": "Misstrauensanträge,Misstrauensanträgen,Misstrauensantrages,Misstrauensantrags,Misstrauensantrage" }, "Missverständnis": { "form": "Missverständnis", "polarity": "-0.4756", "pos": "NN", "sense": "Missverständnisse,Missverständnisses,Missverständnissen" }, "Mist": { "form": "Mist", "polarity": "-0.1732", "pos": "NN", "sense": "Mists,Mistes,Miste" }, "Mittellosigkeit": { "form": "Mittellosigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Mittelmäßigkeit": { "form": "Mittelmäßigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Monotonie": { "form": "Monotonie", "polarity": "-0.0048", "pos": "NN", "sense": "Monotonien" }, "Mord": { "form": "Mord", "polarity": "-0.3595", "pos": "NN", "sense": "Mordes,Morde,Mords,Morden" }, "Mutlosigkeit": { "form": "Mutlosigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Müdigkeit": { "form": "Müdigkeit", "polarity": "-0.1995", "pos": "NN", "sense": "" }, "Mühe": { "form": "Mühe", "polarity": "-0.0048", "pos": "NN", "sense": "Mühen" }, "Müll": { "form": "Müll", "polarity": "-0.3377", "pos": "NN", "sense": "Mülls,Mülles" }, "Nachlässigkeit": { "form": "Nachlässigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Nachlässigkeiten" }, "Nachteil": { "form": "Nachteil", "polarity": "-0.8102", "pos": "NN", "sense": "Nachteilen,Nachteile,Nachteils,Nachteiles" }, "Naivität": { "form": "Naivität", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Narr": { "form": "Narr", "polarity": "-0.335", "pos": "NN", "sense": "Narren" }, "Negativität": { "form": "Negativität", "polarity": "-0.3155", "pos": "NN", "sense": "" }, "Neid": { "form": "Neid", "polarity": "-0.4729", "pos": "NN", "sense": "Neides,Neids,Neide" }, "Nervosität": { "form": "Nervosität", "polarity": "-0.1833", "pos": "NN", "sense": "" }, "Neustart": { "form": "Neustart", "polarity": "-0.0504", "pos": "NN", "sense": "Neustarts" }, "Niedergang": { "form": "Niedergang", "polarity": "-0.0048", "pos": "NN", "sense": "Niedergangs,Niederganges,Niedergange,Niedergänge,Niedergängen" }, "Niedergeschlagenheit": { "form": "Niedergeschlagenheit", "polarity": "-0.0048", "pos": "NN", "sense": "Niedergeschlagenheiten" }, "Niederlage": { "form": "Niederlage", "polarity": "-0.3651", "pos": "NN", "sense": "Niederlagen" }, "Not": { "form": "Not", "polarity": "-0.2187", "pos": "NN", "sense": "Nöten,Nöte" }, "Notfall": { "form": "Notfall", "polarity": "-0.0468", "pos": "NN", "sense": "Notfalles,Notfällen,Notfalls,Notfälle,Notfalle" }, "Notstand": { "form": "Notstand", "polarity": "-0.0048", "pos": "NN", "sense": "Notstandes,Notständen,Notstands,Notstände,Notstande" }, "Nutzlosigkeit": { "form": "Nutzlosigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Nötigung": { "form": "Nötigung", "polarity": "-0.0048", "pos": "NN", "sense": "Nötigungen" }, "Oberflächlichkeit": { "form": "Oberflächlichkeit", "polarity": "-0.3299", "pos": "NN", "sense": "Oberflächlichkeiten" }, "Offensive": { "form": "Offensive", "polarity": "-0.0048", "pos": "NN", "sense": "Offensiven" }, "Opposition": { "form": "Opposition", "polarity": "-0.3631", "pos": "NN", "sense": "Oppositionen" }, "Panik": { "form": "Panik", "polarity": "-0.3429", "pos": "NN", "sense": "Paniken" }, "Panne": { "form": "Panne", "polarity": "-0.1901", "pos": "NN", "sense": "Pannen" }, "Pech": { "form": "Pech", "polarity": "-0.4823", "pos": "NN", "sense": "Peches,Pechen,Peche,Pechs" }, "Pessimismus": { "form": "Pessimismus", "polarity": "-0.4715", "pos": "NN", "sense": "" }, "Pest": { "form": "Pest", "polarity": "-0.3456", "pos": "NN", "sense": "Pests" }, "Pflicht": { "form": "Pflicht", "polarity": "-0.3577", "pos": "NN", "sense": "Pflichten" }, "Pleite": { "form": "Pleite", "polarity": "-0.3323", "pos": "NN", "sense": "Pleiten" }, "Preissturz": { "form": "Preissturz", "polarity": "-0.0048", "pos": "NN", "sense": "Preisstürze,Preisstürzen,Preissturzes,Preissturze,Preissturzen" }, "Problem": { "form": "Problem", "polarity": "-0.3865", "pos": "NN", "sense": "Probleme,Problemen,Problems" }, "Propaganda": { "form": "Propaganda", "polarity": "-0.4893", "pos": "NN", "sense": "" }, "Protest": { "form": "Protest", "polarity": "-0.3564", "pos": "NN", "sense": "Protestes,Protests,Proteste,Protesten" }, "Provisorium": { "form": "Provisorium", "polarity": "-0.0048", "pos": "NN", "sense": "Provisorien,Provisoriums" }, "Provokation": { "form": "Provokation", "polarity": "-0.0048", "pos": "NN", "sense": "Provokationen" }, "Qual": { "form": "Qual", "polarity": "-0.0402", "pos": "NN", "sense": "Qualen" }, "Qualitätsminderung": { "form": "Qualitätsminderung", "polarity": "-0.3096", "pos": "NN", "sense": "Qualitätsminderungen" }, "Rache": { "form": "Rache", "polarity": "-0.3534", "pos": "NN", "sense": "" }, "Ratlosigkeit": { "form": "Ratlosigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Ratlosigkeiten" }, "Raub": { "form": "Raub", "polarity": "-0.0048", "pos": "NN", "sense": "Raubs,Raubes,Rauben,Raube" }, "Rebell": { "form": "Rebell", "polarity": "-0.0048", "pos": "NN", "sense": "Rebellen" }, "Rebellion": { "form": "Rebellion", "polarity": "-0.0048", "pos": "NN", "sense": "Rebellionen" }, "Rechtswidrigkeit": { "form": "Rechtswidrigkeit", "polarity": "-0.0499", "pos": "NN", "sense": "Rechtswidrigkeiten" }, "Redundanz": { "form": "Redundanz", "polarity": "-0.0048", "pos": "NN", "sense": "Redundanzen" }, "Reinfall": { "form": "Reinfall", "polarity": "-0.0048", "pos": "NN", "sense": "Reinfälle,Reinfalls,Reinfällen,Reinfalles,Reinfalle" }, "Reklamation": { "form": "Reklamation", "polarity": "-0.0048", "pos": "NN", "sense": "Reklamationen" }, "Reparatur": { "form": "Reparatur", "polarity": "0.0040", "pos": "NN", "sense": "Reparaturen" }, "Revolte": { "form": "Revolte", "polarity": "-0.0048", "pos": "NN", "sense": "Revolten" }, "Revolution": { "form": "Revolution", "polarity": "-0.0048", "pos": "NN", "sense": "Revolutionen" }, "Rezession": { "form": "Rezession", "polarity": "-0.3454", "pos": "NN", "sense": "Rezessionen" }, "Risiko": { "form": "Risiko", "polarity": "-0.687", "pos": "NN", "sense": "Risikos,Risiken" }, "Rivale": { "form": "Rivale", "polarity": "-0.0502", "pos": "NN", "sense": "Rivalen" }, "Rivalität": { "form": "Rivalität", "polarity": "-0.0048", "pos": "NN", "sense": "Rivalitäten" }, "Rost": { "form": "Rost", "polarity": "-0.0048", "pos": "NN", "sense": "Rostes,Rosten,Roste" }, "Ruin": { "form": "Ruin", "polarity": "-0.0048", "pos": "NN", "sense": "Ruins" }, "Rutsch": { "form": "Rutsch", "polarity": "-0.0048", "pos": "NN", "sense": "Rutschs,Rutschen,Rutsches,Rutsche" }, "Rätselraten": { "form": "Rätselraten", "polarity": "-0.0048", "pos": "NN", "sense": "Rätselratens" }, "Räuber": { "form": "Räuber", "polarity": "-0.3508", "pos": "NN", "sense": "Räubers,Räubern" }, "Rückfall": { "form": "Rückfall", "polarity": "-0.0048", "pos": "NN", "sense": "Rückfalls,Rückfällen,Rückfälle,Rückfalles" }, "Rückgang": { "form": "Rückgang", "polarity": "-0.2096", "pos": "NN", "sense": "Rückgangs,Rückganges,Rückgängen,Rückgänge,Rückgange" }, "Rückschritt": { "form": "Rückschritt", "polarity": "-0.0048", "pos": "NN", "sense": "Rückschritten,Rückschritts,Rückschritte,Rückschrittes" }, "Rücksendung": { "form": "Rücksendung", "polarity": "-0.3465", "pos": "NN", "sense": "Rücksendungen" }, "Rücksichtslosigkeit": { "form": "Rücksichtslosigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Rücksichtslosigkeiten" }, "Rückstand": { "form": "Rückstand", "polarity": "-0.063", "pos": "NN", "sense": "Rückständen,Rückstands,Rückstände,Rückstandes" }, "Rückständigkeit": { "form": "Rückständigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Rückständigkeiten" }, "Rücktritt": { "form": "Rücktritt", "polarity": "-0.0048", "pos": "NN", "sense": "Rücktritte,Rücktritts,Rücktrittes,Rücktritten" }, "Rückzug": { "form": "Rückzug", "polarity": "-0.3501", "pos": "NN", "sense": "Rückzugs,Rückzuges,Rückzüge,Rückzügen" }, "Sabotage": { "form": "Sabotage", "polarity": "-0.0048", "pos": "NN", "sense": "Sabotagen" }, "Sackgasse": { "form": "Sackgasse", "polarity": "-0.3455", "pos": "NN", "sense": "Sackgassen" }, "Schaden": { "form": "Schaden", "polarity": "-0.5299", "pos": "NN", "sense": "Schadens,Schäden" }, "Schadensbild": { "form": "Schadensbild", "polarity": "-0.0048", "pos": "NN", "sense": "Schadensbildern,Schadensbilder,Schadensbilds,Schadensbildes,Schadensbilde" }, "Scham": { "form": "Scham", "polarity": "-0.4829", "pos": "NN", "sense": "" }, "Schande": { "form": "Schande", "polarity": "-0.0048", "pos": "NN", "sense": "Schanden" }, "Scheidung": { "form": "Scheidung", "polarity": "-0.2023", "pos": "NN", "sense": "Scheidungen" }, "Scheitern": { "form": "Scheitern", "polarity": "-0.3524", "pos": "NN", "sense": "Scheiterns" }, "Schelte": { "form": "Schelte", "polarity": "-0.0048", "pos": "NN", "sense": "Schelten" }, "Scheußlichkeit": { "form": "Scheußlichkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Scheußlichkeiten" }, "Schlachtfeld": { "form": "Schlachtfeld", "polarity": "-0.0048", "pos": "NN", "sense": "Schlachtfeldern,Schlachtfeldes,Schlachtfelder,Schlachtfelds,Schlachtfelde" }, "Schlag": { "form": "Schlag", "polarity": "-0.0048", "pos": "NN", "sense": "Schlages,Schlags,Schlägen,Schläge,Schlage" }, "Schlamperei": { "form": "Schlamperei", "polarity": "-0.0048", "pos": "NN", "sense": "Schlampereien" }, "Schlechtigkeit": { "form": "Schlechtigkeit", "polarity": "-0.4646", "pos": "NN", "sense": "Schlechtigkeiten" }, "Schlitterbahn": { "form": "Schlitterbahn", "polarity": "-0.0048", "pos": "NN", "sense": "Schlitterbahnen" }, "Schlägerei": { "form": "Schlägerei", "polarity": "-0.0048", "pos": "NN", "sense": "Schlägereien" }, "Schmerz": { "form": "Schmerz", "polarity": "-0.0048", "pos": "NN", "sense": "Schmerzes,Schmerze,Schmerzen" }, "Schmuggel": { "form": "Schmuggel", "polarity": "-0.0048", "pos": "NN", "sense": "Schmuggels,Schmuggeln" }, "Schmutz": { "form": "Schmutz", "polarity": "-0.0542", "pos": "NN", "sense": "Schmutze,Schmutzes" }, "Schock": { "form": "Schock", "polarity": "-0.0048", "pos": "NN", "sense": "Schocks,Schocke,Schocken,Schockes" }, "Schramme": { "form": "Schramme", "polarity": "-0.0048", "pos": "NN", "sense": "Schrammen" }, "Schreck": { "form": "Schreck", "polarity": "-0.194", "pos": "NN", "sense": "Schrecke,Schrecken,Schrecks,Schreckes" }, "Schrott": { "form": "Schrott", "polarity": "-0.0534", "pos": "NN", "sense": "Schrottes,Schrotts,Schrotte,Schrotten" }, "Schräglauf": { "form": "Schräglauf", "polarity": "-0.0048", "pos": "NN", "sense": "Schrägläufen,Schräglaufs,Schräglaufes,Schrägläufe,Schräglaufe" }, "Schubs": { "form": "Schubs", "polarity": "-0.0048", "pos": "NN", "sense": "Schubse,Schubsen,Schubses" }, "Schuld": { "form": "Schuld", "polarity": "-0.9686", "pos": "NN", "sense": "Schulden" }, "Schuldner": { "form": "Schuldner", "polarity": "-0.0048", "pos": "NN", "sense": "Schuldnern,Schuldners" }, "Schuldnerin": { "form": "Schuldnerin", "polarity": "-0.0048", "pos": "NN", "sense": "Schuldnerinnen" }, "Schurke": { "form": "Schurke", "polarity": "-0.3306", "pos": "NN", "sense": "Schurken" }, "Schwierigkeit": { "form": "Schwierigkeit", "polarity": "-0.0483", "pos": "NN", "sense": "Schwierigkeiten" }, "Schwund": { "form": "Schwund", "polarity": "-0.0048", "pos": "NN", "sense": "Schwunds,Schwundes" }, "Schwäche": { "form": "Schwäche", "polarity": "-0.5035", "pos": "NN", "sense": "Schwächen" }, "Schwächung": { "form": "Schwächung", "polarity": "-0.337", "pos": "NN", "sense": "Schwächungen" }, "Schädigung": { "form": "Schädigung", "polarity": "-0.0048", "pos": "NN", "sense": "Schädigungen" }, "Senkung": { "form": "Senkung", "polarity": "-0.0545", "pos": "NN", "sense": "Senkungen" }, "Sinnlosigkeit": { "form": "Sinnlosigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Sinnlosigkeiten" }, "Sintflut": { "form": "Sintflut", "polarity": "-0.3313", "pos": "NN", "sense": "Sintfluten" }, "Skandal": { "form": "Skandal", "polarity": "-0.0048", "pos": "NN", "sense": "Skandals,Skandale,Skandalen" }, "Sklave": { "form": "Sklave", "polarity": "-0.3281", "pos": "NN", "sense": "Sklaven" }, "Sklavenarbeit": { "form": "Sklavenarbeit", "polarity": "-0.0048", "pos": "NN", "sense": "Sklavenarbeiten" }, "Sorge": { "form": "Sorge", "polarity": "-0.3618", "pos": "NN", "sense": "Sorgen" }, "Spott": { "form": "Spott", "polarity": "-0.3357", "pos": "NN", "sense": "Spotte,Spottes,Spotts" }, "Sprengstoff": { "form": "Sprengstoff", "polarity": "-0.0048", "pos": "NN", "sense": "Sprengstoffes,Sprengstoffs,Sprengstoffe,Sprengstoffen" }, "Sprengung": { "form": "Sprengung", "polarity": "-0.0048", "pos": "NN", "sense": "Sprengungen" }, "Stagnation": { "form": "Stagnation", "polarity": "-0.0048", "pos": "NN", "sense": "Stagnationen" }, "Stau": { "form": "Stau", "polarity": "-0.0438", "pos": "NN", "sense": "Staus,Staues,Staue,Stauen" }, "Sterben": { "form": "Sterben", "polarity": "-0.0539", "pos": "NN", "sense": "Sterbens" }, "Steuerhinterziehung": { "form": "Steuerhinterziehung", "polarity": "-0.0048", "pos": "NN", "sense": "Steuerhinterziehungen" }, "Stilllegung": { "form": "Stilllegung", "polarity": "-0.0048", "pos": "NN", "sense": "Stilllegungen" }, "Stillstand": { "form": "Stillstand", "polarity": "-0.0048", "pos": "NN", "sense": "Stillständen,Stillstandes,Stillstande,Stillstands,Stillstände" }, "Stornierung": { "form": "Stornierung", "polarity": "-0.0048", "pos": "NN", "sense": "Stornierungen" }, "Stoß": { "form": "Stoß", "polarity": "-0.0048", "pos": "NN", "sense": "Stoßes,Stoße,Stößen,Stöße" }, "Strafverfahren": { "form": "Strafverfahren", "polarity": "-0.0048", "pos": "NN", "sense": "Strafverfahrens" }, "Strapaze": { "form": "Strapaze", "polarity": "-0.0048", "pos": "NN", "sense": "Strapazen" }, "Streik": { "form": "Streik", "polarity": "-0.0048", "pos": "NN", "sense": "Streiks,Streikes,Streike,Streiken" }, "Streit": { "form": "Streit", "polarity": "-0.6632", "pos": "NN", "sense": "Streites,Streits,Streiten,Streite" }, "Strenge": { "form": "Strenge", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Stress": { "form": "Stress", "polarity": "-0.0048", "pos": "NN", "sense": "Stresse,Stresses" }, "Sturheit": { "form": "Sturheit", "polarity": "-0.1894", "pos": "NN", "sense": "Sturheiten" }, "Sturz": { "form": "Sturz", "polarity": "-0.6316", "pos": "NN", "sense": "Sturze,Sturzen,Stürze,Sturzes,Stürzen" }, "Störung": { "form": "Störung", "polarity": "-0.3569", "pos": "NN", "sense": "Störungen" }, "Sucht": { "form": "Sucht", "polarity": "-0.3505", "pos": "NN", "sense": "Süchte,Süchten,Suchten" }, "Sündenbock": { "form": "Sündenbock", "polarity": "-0.3285", "pos": "NN", "sense": "Sündenbockes,Sündenböcke,Sündenböcken,Sündenbocks" }, "Tabu": { "form": "Tabu", "polarity": "-0.0048", "pos": "NN", "sense": "Tabus" }, "Terror": { "form": "Terror", "polarity": "-0.0048", "pos": "NN", "sense": "Terrors" }, "Terrorismus": { "form": "Terrorismus", "polarity": "-0.3553", "pos": "NN", "sense": "" }, "Teuerung": { "form": "Teuerung", "polarity": "-0.322", "pos": "NN", "sense": "Teuerungen" }, "Teuerungsrate": { "form": "Teuerungsrate", "polarity": "-0.0048", "pos": "NN", "sense": "Teuerungsraten" }, "Teufelskreis": { "form": "Teufelskreis", "polarity": "-0.479", "pos": "NN", "sense": "Teufelskreise,Teufelskreisen,Teufelskreises" }, "Tod": { "form": "Tod", "polarity": "-0.0697", "pos": "NN", "sense": "Tods,Todes,Tode,Toden" }, "Todesfall": { "form": "Todesfall", "polarity": "-0.0048", "pos": "NN", "sense": "Todesfälle,Todesfällen,Todesfalls,Todesfalles,Todesfalle" }, "Todesstrafe": { "form": "Todesstrafe", "polarity": "-0.0048", "pos": "NN", "sense": "Todesstrafen" }, "Torheit": { "form": "Torheit", "polarity": "-0.0048", "pos": "NN", "sense": "Torheiten" }, "Totschlag": { "form": "Totschlag", "polarity": "-0.0048", "pos": "NN", "sense": "Totschlage,Totschlags,Totschlages" }, "Tragödie": { "form": "Tragödie", "polarity": "-0.0048", "pos": "NN", "sense": "Tragödien" }, "Trauer": { "form": "Trauer", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Trauma": { "form": "Trauma", "polarity": "-0.0048", "pos": "NN", "sense": "Traumen,Traumas,Traumata" }, "Traurigkeit": { "form": "Traurigkeit", "polarity": "-0.0457", "pos": "NN", "sense": "Traurigkeiten" }, "Trennung": { "form": "Trennung", "polarity": "-0.5071", "pos": "NN", "sense": "Trennungen" }, "Tristesse": { "form": "Tristesse", "polarity": "-0.0555", "pos": "NN", "sense": "Tristessen" }, "Trostlosigkeit": { "form": "Trostlosigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Trostlosigkeiten" }, "Trott": { "form": "Trott", "polarity": "-0.0048", "pos": "NN", "sense": "Trottes,Trotten,Trotts,Trotte" }, "Trugschluß": { "form": "Trugschluß", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Trugschluss": { "form": "Trugschluss", "polarity": "-0.0048", "pos": "NN", "sense": "Trugschlusse,Trugschlusses,Trugschlüsse,Trugschlüssen" }, "Trägheit": { "form": "Trägheit", "polarity": "-0.1937", "pos": "NN", "sense": "Trägheiten" }, "Träne": { "form": "Träne", "polarity": "-0.0562", "pos": "NN", "sense": "Tränen" }, "Trübsal": { "form": "Trübsal", "polarity": "-0.189", "pos": "NN", "sense": "Trübsalen,Trübsale" }, "Turbulenz": { "form": "Turbulenz", "polarity": "-0.0048", "pos": "NN", "sense": "Turbulenzen" }, "Tyrannei": { "form": "Tyrannei", "polarity": "-0.3243", "pos": "NN", "sense": "Tyranneien" }, "Täuschung": { "form": "Täuschung", "polarity": "-0.3445", "pos": "NN", "sense": "Täuschungen" }, "Umtausch": { "form": "Umtausch", "polarity": "-0.343", "pos": "NN", "sense": "Umtauschen,Umtausches,Umtauschs,Umtäusche,Umtausche,Umtäuschen" }, "Unbehagen": { "form": "Unbehagen", "polarity": "-0.3291", "pos": "NN", "sense": "Unbehagens" }, "Unbehaglichkeit": { "form": "Unbehaglichkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Unbehaglichkeiten" }, "Unbeliebtheit": { "form": "Unbeliebtheit", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Unbequemlichkeit": { "form": "Unbequemlichkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Unbequemlichkeiten" }, "Unbestimmtheit": { "form": "Unbestimmtheit", "polarity": "-0.0537", "pos": "NN", "sense": "" }, "Undankbarkeit": { "form": "Undankbarkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Undankbarkeiten" }, "Unehrlichkeit": { "form": "Unehrlichkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Unehrlichkeiten" }, "Uneinigkeit": { "form": "Uneinigkeit", "polarity": "-0.3289", "pos": "NN", "sense": "Uneinigkeiten" }, "Unerbittlichkeit": { "form": "Unerbittlichkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Unerbittlichkeiten" }, "Unerträglichkeit": { "form": "Unerträglichkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Unerträglichkeiten" }, "Unfall": { "form": "Unfall", "polarity": "-0.0048", "pos": "NN", "sense": "Unfällen,Unfalls,Unfälle,Unfalles,Unfalle" }, "Unfreundlichkeit": { "form": "Unfreundlichkeit", "polarity": "-0.3085", "pos": "NN", "sense": "Unfreundlichkeiten" }, "Unfug": { "form": "Unfug", "polarity": "-0.3394", "pos": "NN", "sense": "Unfugs" }, "Unfähigkeit": { "form": "Unfähigkeit", "polarity": "-0.1896", "pos": "NN", "sense": "Unfähigkeiten" }, "Ungeduld": { "form": "Ungeduld", "polarity": "-0.4655", "pos": "NN", "sense": "" }, "Ungehorsamkeit": { "form": "Ungehorsamkeit", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Ungenauigkeit": { "form": "Ungenauigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Ungenauigkeiten" }, "Ungerechtigkeit": { "form": "Ungerechtigkeit", "polarity": "-0.3419", "pos": "NN", "sense": "Ungerechtigkeiten" }, "Ungeschicklichkeit": { "form": "Ungeschicklichkeit", "polarity": "-0.3116", "pos": "NN", "sense": "Ungeschicklichkeiten" }, "Unglaubwürdigkeit": { "form": "Unglaubwürdigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Ungleichheit": { "form": "Ungleichheit", "polarity": "-0.0048", "pos": "NN", "sense": "Ungleichheiten" }, "Unglück": { "form": "Unglück", "polarity": "-0.5004", "pos": "NN", "sense": "Unglückes,Unglücks,Unglücke,Unglücken" }, "Unheilbarkeit": { "form": "Unheilbarkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Unheilbarkeiten" }, "Unhöflichkeit": { "form": "Unhöflichkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Unhöflichkeiten" }, "Unklarheit": { "form": "Unklarheit", "polarity": "-0.0048", "pos": "NN", "sense": "Unklarheiten" }, "Unmenschlichkeit": { "form": "Unmenschlichkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Unmenschlichkeiten" }, "Unmoral": { "form": "Unmoral", "polarity": "-0.3172", "pos": "NN", "sense": "" }, "Unmut": { "form": "Unmut", "polarity": "-0.3394", "pos": "NN", "sense": "Unmutes,Unmuts,Unmute" }, "Unordnung": { "form": "Unordnung", "polarity": "-0.3391", "pos": "NN", "sense": "Unordnungen" }, "Unrecht": { "form": "Unrecht", "polarity": "-0.5086", "pos": "NN", "sense": "Unrechtes,Unrechts,Unrechte" }, "Unregelmäßigkeit": { "form": "Unregelmäßigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Unregelmäßigkeiten" }, "Unrentabilität": { "form": "Unrentabilität", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Unruhe": { "form": "Unruhe", "polarity": "-0.201", "pos": "NN", "sense": "Unruhen" }, "Unsicherheit": { "form": "Unsicherheit", "polarity": "-0.358", "pos": "NN", "sense": "Unsicherheiten" }, "Unsinn": { "form": "Unsinn", "polarity": "-0.4969", "pos": "NN", "sense": "Unsinnes,Unsinns" }, "Unstetigkeit": { "form": "Unstetigkeit", "polarity": "-0.3075", "pos": "NN", "sense": "Unstetigkeiten" }, "Unstimmigkeit": { "form": "Unstimmigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Unstimmigkeiten" }, "Unterbrechung": { "form": "Unterbrechung", "polarity": "-0.0048", "pos": "NN", "sense": "Unterbrechungen" }, "Unterdrückung": { "form": "Unterdrückung", "polarity": "-0.0048", "pos": "NN", "sense": "Unterdrückungen" }, "Untergang": { "form": "Untergang", "polarity": "-0.3498", "pos": "NN", "sense": "Untergangs,Untergängen,Unterganges,Untergänge" }, "Unterlassung": { "form": "Unterlassung", "polarity": "-0.0048", "pos": "NN", "sense": "Unterlassungen" }, "Unterwerfung": { "form": "Unterwerfung", "polarity": "-0.3279", "pos": "NN", "sense": "Unterwerfungen" }, "Untreue": { "form": "Untreue", "polarity": "-0.3293", "pos": "NN", "sense": "" }, "Unverantwortlichkeit": { "form": "Unverantwortlichkeit", "polarity": "-0.3068", "pos": "NN", "sense": "Unverantwortlichkeiten" }, "Unvereinbarkeit": { "form": "Unvereinbarkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Unvereinbarkeiten" }, "Unverhältnismäßigkeit": { "form": "Unverhältnismäßigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Unverhältnismäßigkeiten" }, "Unverschämtheit": { "form": "Unverschämtheit", "polarity": "-0.0048", "pos": "NN", "sense": "Unverschämtheiten" }, "Unvollkommenheit": { "form": "Unvollkommenheit", "polarity": "-0.0048", "pos": "NN", "sense": "Unvollkommenheiten" }, "Unvollständigkeit": { "form": "Unvollständigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Unvollständigkeiten" }, "Unwahrheit": { "form": "Unwahrheit", "polarity": "-0.466", "pos": "NN", "sense": "Unwahrheiten" }, "Unwirksamkeit": { "form": "Unwirksamkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Unwirksamkeiten" }, "Unwirtschaftlichkeit": { "form": "Unwirtschaftlichkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Unwirtschaftlichkeiten" }, "Unwissenheit": { "form": "Unwissenheit", "polarity": "-0.4935", "pos": "NN", "sense": "Unwissenheiten" }, "Unzufriedenheit": { "form": "Unzufriedenheit", "polarity": "-0.6324", "pos": "NN", "sense": "Unzufriedenheiten" }, "Unzumutbarkeit": { "form": "Unzumutbarkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Unzumutbarkeiten" }, "Unzuverlässigkeit": { "form": "Unzuverlässigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Unzuverlässigkeiten" }, "Vagheit": { "form": "Vagheit", "polarity": "-0.0048", "pos": "NN", "sense": "Vagheiten" }, "Verachtung": { "form": "Verachtung", "polarity": "-0.3308", "pos": "NN", "sense": "Verachtungen" }, "Verbannung": { "form": "Verbannung", "polarity": "-0.0048", "pos": "NN", "sense": "Verbannungen" }, "Verbot": { "form": "Verbot", "polarity": "-0.0048", "pos": "NN", "sense": "Verbots,Verbotes,Verboten,Verbote" }, "Verdacht": { "form": "Verdacht", "polarity": "-0.8074", "pos": "NN", "sense": "Verdachts,Verdachte,Verdachten,Verdachtes,Verdächte,Verdächten" }, "Verdorbenheit": { "form": "Verdorbenheit", "polarity": "-0.0048", "pos": "NN", "sense": "Verdorbenheiten" }, "Verdrängung": { "form": "Verdrängung", "polarity": "-0.0048", "pos": "NN", "sense": "Verdrängungen" }, "Verdächtige": { "form": "Verdächtige", "polarity": "-0.0048", "pos": "NN", "sense": "Verdächtiger,Verdächtigen" }, "Verfall": { "form": "Verfall", "polarity": "-0.0048", "pos": "NN", "sense": "Verfalles,Verfalls,Verfalle,Verfälle,Verfällen" }, "Verfehlung": { "form": "Verfehlung", "polarity": "-0.0048", "pos": "NN", "sense": "Verfehlungen" }, "Vergeltung": { "form": "Vergeltung", "polarity": "-0.3369", "pos": "NN", "sense": "Vergeltungen" }, "Vergeltungsmaßnahme": { "form": "Vergeltungsmaßnahme", "polarity": "-0.0048", "pos": "NN", "sense": "Vergeltungsmaßnahmen" }, "Vergeudung": { "form": "Vergeudung", "polarity": "-0.0048", "pos": "NN", "sense": "Vergeudungen" }, "Verherrlichung": { "form": "Verherrlichung", "polarity": "-0.0048", "pos": "NN", "sense": "Verherrlichungen" }, "Verhängnis": { "form": "Verhängnis", "polarity": "-0.0048", "pos": "NN", "sense": "Verhängnisses,Verhängnissen,Verhängnisse" }, "Verkleinerung": { "form": "Verkleinerung", "polarity": "-0.0048", "pos": "NN", "sense": "Verkleinerungen" }, "Verlangsamung": { "form": "Verlangsamung", "polarity": "-0.0048", "pos": "NN", "sense": "Verlangsamungen" }, "Verletzung": { "form": "Verletzung", "polarity": "-0.5032", "pos": "NN", "sense": "Verletzungen" }, "Verleumdung": { "form": "Verleumdung", "polarity": "-0.4792", "pos": "NN", "sense": "Verleumdungen" }, "Verlierer": { "form": "Verlierer", "polarity": "-0.3441", "pos": "NN", "sense": "Verlierern,Verlierers" }, "Verlust": { "form": "Verlust", "polarity": "-0.5204", "pos": "NN", "sense": "Verlustes,Verlusts,Verluste,Verlusten" }, "Vermeidung": { "form": "Vermeidung", "polarity": "-0.0048", "pos": "NN", "sense": "Vermeidungen" }, "Verminderung": { "form": "Verminderung", "polarity": "-0.0048", "pos": "NN", "sense": "Verminderungen" }, "Vernachlässigung": { "form": "Vernachlässigung", "polarity": "-0.328", "pos": "NN", "sense": "Vernachlässigungen" }, "Vernichtung": { "form": "Vernichtung", "polarity": "-0.4883", "pos": "NN", "sense": "Vernichtungen" }, "Verrat": { "form": "Verrat", "polarity": "-0.0048", "pos": "NN", "sense": "Verrats,Verrate,Verrates" }, "Verräter": { "form": "Verräter", "polarity": "-0.3352", "pos": "NN", "sense": "Verräters,Verrätern" }, "Verrückter": { "form": "Verrückter", "polarity": "-0.0447", "pos": "NN", "sense": "Verrückte,Verrückten" }, "Verrücktheit": { "form": "Verrücktheit", "polarity": "-0.0048", "pos": "NN", "sense": "Verrücktheiten" }, "Versagen": { "form": "Versagen", "polarity": "-0.3517", "pos": "NN", "sense": "Versagens" }, "Verschlechterung": { "form": "Verschlechterung", "polarity": "-0.4959", "pos": "NN", "sense": "Verschlechterungen" }, "Verschmutzung": { "form": "Verschmutzung", "polarity": "-0.3392", "pos": "NN", "sense": "Verschmutzungen" }, "Verschwendung": { "form": "Verschwendung", "polarity": "-0.0048", "pos": "NN", "sense": "Verschwendungen" }, "Verschwörung": { "form": "Verschwörung", "polarity": "-0.3355", "pos": "NN", "sense": "Verschwörungen" }, "Versenkung": { "form": "Versenkung", "polarity": "-0.0048", "pos": "NN", "sense": "Versenkungen" }, "Versklavung": { "form": "Versklavung", "polarity": "-0.0048", "pos": "NN", "sense": "Versklavungen" }, "Verstoß": { "form": "Verstoß", "polarity": "-0.0048", "pos": "NN", "sense": "Verstoßes,Verstöße,Verstößen,Verstoße" }, "Verstrickung": { "form": "Verstrickung", "polarity": "-0.0048", "pos": "NN", "sense": "Verstrickungen" }, "Versuchung": { "form": "Versuchung", "polarity": "-0.3463", "pos": "NN", "sense": "Versuchungen" }, "Versäumnis": { "form": "Versäumnis", "polarity": "-0.0048", "pos": "NN", "sense": "Versäumnisse,Versäumnisses,Versäumnissen" }, "Vertreibung": { "form": "Vertreibung", "polarity": "-0.0048", "pos": "NN", "sense": "Vertreibungen" }, "Verurteilung": { "form": "Verurteilung", "polarity": "-0.0048", "pos": "NN", "sense": "Verurteilungen" }, "Verweigerung": { "form": "Verweigerung", "polarity": "-0.3441", "pos": "NN", "sense": "Verweigerungen" }, "Verwerfung": { "form": "Verwerfung", "polarity": "-0.3202", "pos": "NN", "sense": "Verwerfungen" }, "Verwirrung": { "form": "Verwirrung", "polarity": "-0.3323", "pos": "NN", "sense": "Verwirrungen" }, "Verwundung": { "form": "Verwundung", "polarity": "-0.0048", "pos": "NN", "sense": "Verwundungen" }, "Verwüstung": { "form": "Verwüstung", "polarity": "-0.0048", "pos": "NN", "sense": "Verwüstungen" }, "Verzerrung": { "form": "Verzerrung", "polarity": "-0.0048", "pos": "NN", "sense": "Verzerrungen" }, "Verzicht": { "form": "Verzicht", "polarity": "-0.2022", "pos": "NN", "sense": "Verzichts,Verzichtes,Verzichten,Verzichte" }, "Verzweiflung": { "form": "Verzweiflung", "polarity": "-0.0048", "pos": "NN", "sense": "Verzweiflungen" }, "Verzögerung": { "form": "Verzögerung", "polarity": "-0.0048", "pos": "NN", "sense": "Verzögerungen" }, "Vorurteil": { "form": "Vorurteil", "polarity": "-0.6261", "pos": "NN", "sense": "Vorurteils,Vorurteilen,Vorurteile" }, "Vorwand": { "form": "Vorwand", "polarity": "-0.0048", "pos": "NN", "sense": "Vorwände,Vorwandes,Vorwands,Vorwänden,Vorwande" }, "Vorwurf": { "form": "Vorwurf", "polarity": "-0.5095", "pos": "NN", "sense": "Vorwürfen,Vorwurfs,Vorwürfe,Vorwurfes" }, "Wahnsinn": { "form": "Wahnsinn", "polarity": "-0.0048", "pos": "NN", "sense": "Wahnsinns" }, "Wermutstropfen": { "form": "Wermutstropfen", "polarity": "-0.3356", "pos": "NN", "sense": "Wermutstropfens" }, "Wertlosigkeit": { "form": "Wertlosigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Wertlosigkeiten" }, "Wertverlust": { "form": "Wertverlust", "polarity": "-0.0048", "pos": "NN", "sense": "Wertverluste,Wertverlustes,Wertverlusts,Wertverlusten" }, "Wichtigtuer": { "form": "Wichtigtuer", "polarity": "-0.0048", "pos": "NN", "sense": "Wichtigtuers,Wichtigtuern" }, "Widernatürlichkeit": { "form": "Widernatürlichkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Widernatürlichkeiten" }, "Widerruf": { "form": "Widerruf", "polarity": "-0.0048", "pos": "NN", "sense": "Widerrufs,Widerrufes,Widerrufen" }, "Widerspruch": { "form": "Widerspruch", "polarity": "-0.3655", "pos": "NN", "sense": "Widersprüche,Widersprüchen,Widerspruchs,Widerspruches,Widerspruche" }, "Widrigkeit": { "form": "Widrigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Widrigkeiten" }, "Wirtschaftskrise": { "form": "Wirtschaftskrise", "polarity": "-0.0048", "pos": "NN", "sense": "Wirtschaftskrisen" }, "Wrack": { "form": "Wrack", "polarity": "-0.0048", "pos": "NN", "sense": "Wracks,Wracke,Wracken,Wrackes" }, "Wunde": { "form": "Wunde", "polarity": "-0.3396", "pos": "NN", "sense": "Wunden" }, "Wut": { "form": "Wut", "polarity": "-0.4726", "pos": "NN", "sense": "" }, "Wüste": { "form": "Wüste", "polarity": "-0.0048", "pos": "NN", "sense": "Wüsten" }, "Zahlungsunfähigkeit": { "form": "Zahlungsunfähigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "Zahlungsunfähigkeiten" }, "Zeitverschwendung": { "form": "Zeitverschwendung", "polarity": "-0.3223", "pos": "NN", "sense": "Zeitverschwendungen" }, "Zensur": { "form": "Zensur", "polarity": "-0.3468", "pos": "NN", "sense": "Zensuren" }, "Zerrung": { "form": "Zerrung", "polarity": "-0.0048", "pos": "NN", "sense": "Zerrungen" }, "Zerschlagung": { "form": "Zerschlagung", "polarity": "-0.0048", "pos": "NN", "sense": "Zerschlagungen" }, "Zerstörung": { "form": "Zerstörung", "polarity": "-0.3578", "pos": "NN", "sense": "Zerstörungen" }, "Ziellosigkeit": { "form": "Ziellosigkeit", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "Zoll": { "form": "Zoll", "polarity": "-0.0048", "pos": "NN", "sense": "Zolls,Zölle,Zolles,Zöllen" }, "Zorn": { "form": "Zorn", "polarity": "-0.3537", "pos": "NN", "sense": "Zorns,Zornes,Zorne" }, "Zumutung": { "form": "Zumutung", "polarity": "-0.3286", "pos": "NN", "sense": "Zumutungen" }, "Zusammenbruch": { "form": "Zusammenbruch", "polarity": "-0.0048", "pos": "NN", "sense": "Zusammenbrüche,Zusammenbruchs,Zusammenbruches,Zusammenbrüchen" }, "Zusammenstoß": { "form": "Zusammenstoß", "polarity": "-0.3302", "pos": "NN", "sense": "Zusammenstoßes,Zusammenstöße,Zusammenstoße,Zusammenstößen" }, "Zwang": { "form": "Zwang", "polarity": "-0.0721", "pos": "NN", "sense": "Zwanges,Zwängen,Zwänge,Zwangs,Zwange" }, "Zwangslage": { "form": "Zwangslage", "polarity": "-0.0048", "pos": "NN", "sense": "Zwangslagen" }, "Zwangsmaßnahme": { "form": "Zwangsmaßnahme", "polarity": "-0.0048", "pos": "NN", "sense": "Zwangsmaßnahmen" }, "Zweifel": { "form": "Zweifel", "polarity": "-0.0048", "pos": "NN", "sense": "Zweifeln,Zweifels" }, "Zwietracht": { "form": "Zwietracht", "polarity": "-0.0048", "pos": "NN", "sense": "" }, "abbauen": { "form": "abbauen", "polarity": "-0.0578", "pos": "VB", "sense": "abbaue,abbaust,abbaut,abbauest,abbauet,abbaute,abbautest,abbauten" }, "abbrechen": { "form": "abbrechen", "polarity": "-0.3482", "pos": "VB", "sense": "abbreche,abbrichst,abbricht,abbrecht,abbrechest,abbrechet,abbrach,abbrachst,abbrachen,abbracht,abbräche,abbrächest,abbrächst,abbrächen,abbrächet,abbrächt" }, "abdanken": { "form": "abdanken", "polarity": "-0.0048", "pos": "VB", "sense": "abgedankt,abdanke,abdankte,abdankt,abdanktet,abdankest,abdankst,abdanktest,abdankten,abdanket" }, "abdämpfen": { "form": "abdämpfen", "polarity": "-0.0048", "pos": "VB", "sense": "abdämpfe,abdämpfst,abdämpft,abdämpfest,abdämpfet,abdämpfte,abdämpftest,abdämpften,abdämpftet" }, "abfallen": { "form": "abfallen", "polarity": "-0.0048", "pos": "VB", "sense": "abfalle,abfällst,abfällt,abfallt,abfallest,abfallet,abfiel,abfielst,abfielen,abfielt,abfiele,abfielest,abfielet" }, "abfällig": { "form": "abfällig", "polarity": "-0.3197", "pos": "JJ", "sense": "abfälligstes,abfälligster,abfälligste,abfälligsten,abfälligst,abfälligstem,abfällige,abfälligerer,abfälliger,abfälligere,abfälliges,abfälligeren,abfälligerem,abfälligen,abfälligem,abfälligeres" }, "abführen": { "form": "abführen", "polarity": "-0.3358", "pos": "VB", "sense": "abführtet,abführt,abführst,abführe,abführte,abführet,abgeführt,abführtest,abführten,abführest" }, "abgebrochen": { "form": "abgebrochen", "polarity": "-0.0048", "pos": "JJ", "sense": "abgebrochene,abgebrochenem,abgebrochenen,abgebrochener,abgebrochenes" }, "abgedroschen": { "form": "abgedroschen", "polarity": "-0.1839", "pos": "JJ", "sense": "abgedroschene,abgedroschenem,abgedroschenen,abgedroschener,abgedroschenes,abgedroschenere,abgedroschenerem,abgedroscheneres,abgedroscheneren,abgedroschenerer,abgedroschner,abgedroschenste,abgedroschenstem,abgedroschensten,abgedroschenster,abgedroschenstes,abgedroschneren,abgedroschneres,abgedroschnere,abgedroschnerem,abgedroschnerer" }, "abgestanden": { "form": "abgestanden", "polarity": "-0.0368", "pos": "JJ", "sense": "abgestandnerer,abgestandneres,abgestandenen,abgestandenem,abgestandenes,abgestandener,abgestandenstes,abgestandenere,abgestandenster,abgestandenstem,abgestandensten,abgestandenste,abgestandnere,abgestandene,abgestandeneren,abgestandenerem,abgestandenst,abgestandneren,abgestandeneres,abgestandnerem,abgestandenerer,abgestandner" }, "abgetakelt": { "form": "abgetakelt", "polarity": "-0.0048", "pos": "JJ", "sense": "abgetakeltstem,abgetakeltere,abgetakeltste,abgetakeltsten,abgetakeltstes,abgetakeltster,abgetakelten,abgetakelteren,abgetakeltem,abgetakeltst,abgetakelte,abgetakelterem,abgetakeltes,abgetakelter,abgetakelterer,abgetakelteres" }, "abgleiten": { "form": "abgleiten", "polarity": "-0.0397", "pos": "VB", "sense": "abgleite,abgleitest,abgleitet,abglitt,abglittest,abglitten,abglittet,abglitte" }, "abgründig": { "form": "abgründig", "polarity": "-0.1719", "pos": "JJ", "sense": "abgründiger,abgründiges,abgründigst,abgründigste,abgründigstem,abgründige,abgründigeres,abgründigsten,abgründigerer,abgründigerem,abgründigeren,abgründigster,abgründigstes,abgründigen,abgründigem,abgründigere" }, "abhängig": { "form": "abhängig", "polarity": "-0.0048", "pos": "JJ", "sense": "abhängigem,abhängigen,abhängiger,abhängiges,abhängigere,abhängigerem,abhängigeren,abhängigerer,abhängigeres,abhängigste,abhängigstem,abhängigsten,abhängigster,abhängigstes" }, "ablaufen": { "form": "ablaufen", "polarity": "-0.0048", "pos": "VB", "sense": "ablaufe,abläufst,abläuft,ablauft,ablaufest,ablaufet,ablief,abliefst,abliefen,ablieft,abliefe,abliefest,abliefet" }, "ablehnen": { "form": "ablehnen", "polarity": "-0.6458", "pos": "VB", "sense": "ablehne,ablehnst,ablehnt,ablehnest,ablehnet,ablehnte,ablehntest,ablehnten,ablehntet,abgelehnt" }, "ablenken": { "form": "ablenken", "polarity": "-0.042", "pos": "VB", "sense": "ablenke,ablenkst,ablenkt,ablenkest,ablenket,ablenkte,ablenktest,ablenkten,ablenktet,abzulenken,abgelenkt" }, "abnehmen": { "form": "abnehmen", "polarity": "-0.0292", "pos": "VB", "sense": "abnehme,abnimmst,abnimmt,abnehmt,abnehmest,abnehmet,abnahm,abnahmst,abnahmen,abnahmt,abnähme,abnähmest,abnähmst,abnähmen,abnähmet,abnähmt,abzunehmen,abgenommen" }, "abnutzen": { "form": "abnutzen", "polarity": "-0.0417", "pos": "VB", "sense": "abnutze,abnutzt,abnutzest,abnutzet,abnutzte,abnutztest,abnutzten,abnutztet,abzunutzen,abgenutzt" }, "abraten": { "form": "abraten", "polarity": "-0.3353", "pos": "VB", "sense": "abrate,abrätst,abrät,abratet,abratest,abriet,abrietest,abrietst,abrieten,abrietet,abriete,abzuraten,abgeraten" }, "abreißen": { "form": "abreißen", "polarity": "-0.3116", "pos": "VB", "sense": "abreiße,abreißt,abreißest,abreißet,abriss,abriß,abrissest,abrisst,abrißt,abrissen,abrisse,abrisset,abzureissen,abzureißen,abgerissen" }, "abrupt": { "form": "abrupt", "polarity": "-0.0048", "pos": "JJ", "sense": "abrupte,abruptem,abrupten,abrupter,abruptes,abruptere,abrupterem,abrupteren,abrupterer,abrupteres,abrupteste,abruptestem,abruptesten,abruptester,abruptestes" }, "abrutschen": { "form": "abrutschen", "polarity": "-0.0048", "pos": "VB", "sense": "abrutsche,abrutschst,abrutscht,abrutschest,abrutschet,abrutschte,abrutschtest,abrutschten,abrutschtet,abzurutschen,abgerutscht" }, "abschaffen": { "form": "abschaffen", "polarity": "-0.0048", "pos": "VB", "sense": "abschaffe,abschaffst,abschafft,abschaffest,abschaffet,abschaffte,abschafftest,abschafften,abschafftet,abzuschaffen,abgeschafft" }, "abschießen": { "form": "abschießen", "polarity": "-0.0048", "pos": "VB", "sense": "abschieße,abschießt,abschießest,abschießet,abschoss,abschoß,abschossest,abschosst,abschoßt,abschossen,abschösse,abschössest,abschössen,abschösset,abzuschießen,abgeschossen" }, "abschrecken": { "form": "abschrecken", "polarity": "-0.178", "pos": "VB", "sense": "abschrecket,abzuschrecken,abschreckest,abschreckten,abschreckte,abschrecktest,abschreckt,abschrecke,abschreckst,abgeschreckt,abschrecktet" }, "abschreckend": { "form": "abschreckend", "polarity": "-0.049", "pos": "VB", "sense": "abschreckende,abschreckendem,abschreckenden,abschreckender,abschreckendes,abschreckendere,abschreckenderen,abschreckenderem,abschreckenderer,abschreckenderes,abschreckendste,abschreckendstem,abschreckendsten,abschreckendster,abschreckendstes" }, "abschreiben": { "form": "abschreiben", "polarity": "-0.1847", "pos": "VB", "sense": "abschreibe,abschreibst,abschreibt,abschreibest,abschreibet,abschrieb,abschriebst,abschrieben,abschriebt,abschriebe,abschriebest,abschriebet,abzuschreiben,abgeschrieben" }, "abschwächen": { "form": "abschwächen", "polarity": "-0.0048", "pos": "VB", "sense": "abschwächt,abschwäche,abschwächten,abschwächte,abschwächst,abgeschwächt,abschwächtest,abschwächet,abschwächest,abschwächtet" }, "abschätzig": { "form": "abschätzig", "polarity": "-0.0048", "pos": "JJ", "sense": "abschätzigere,abschätzigeres,abschätzigerer,abschätzigeren,abschätzigem,abschätzigerem,abschätzigstes,abschätzigen,abschätzigst,abschätzige,abschätziger,abschätziges,abschätzigste,abschätzigsten,abschätzigstem,abschätzigster" }, "absenken": { "form": "absenken", "polarity": "-0.0048", "pos": "VB", "sense": "absenke,absenkst,absenkt,absenkest,absenket,absenkte,absenktest,absenkten,absenktet,abzusenken,abgesenkt" }, "absinken": { "form": "absinken", "polarity": "-0.3269", "pos": "VB", "sense": "absinke,absinkst,absinkt,absinkest,absinket,absank,absankst,absanken,absankt,absänke,absänkest,absänkst,absänken,absänket,absänkt,abzusinken,abgesunken" }, "abspalten": { "form": "abspalten", "polarity": "-0.3099", "pos": "VB", "sense": "abspalte,abspaltest,abspaltet,abspaltete,abspaltetest,abspalteten,abspaltetet,abzuspalten,abgespalten,abgespaltet" }, "absperren": { "form": "absperren", "polarity": "-0.0048", "pos": "VB", "sense": "absperre,absperrst,absperrt,absperrest,absperret,absperrte,absperrtest,absperrten,absperrtet,abzusperren,abgesperrt" }, "absteigen": { "form": "absteigen", "polarity": "-0.4776", "pos": "VB", "sense": "absteige,absteigst,absteigt,absteigest,absteiget,abstieg,abstiegst,abstiegen,abstiegt,abstiege,abstiegest,abstieget,abzusteigen,abgestiegen" }, "abstoßen": { "form": "abstoßen", "polarity": "-0.1796", "pos": "VB", "sense": "abstoße,abstößt,abstoßt,abstoßest,abstoßet,abstieß,abstießest,abstießt,abstieße,abstießet,abzustoßen,abzustossen,abgestoßen" }, "abstoßend": { "form": "abstoßend", "polarity": "-0.5859", "pos": "JJ", "sense": "abstoßendstem,abstoßendsten,abstoßenderer,abstoßendster,abstoßendere,abstoßenderes,abstoßendst,abstoßendstes,abstoßende,abstoßenden,abstoßendem,abstoßendes,abstoßender,abstoßendste,abstoßenderen,abstoßenderem" }, "abstumpfen": { "form": "abstumpfen", "polarity": "-0.0048", "pos": "VB", "sense": "abzustumpfen,abstumpfet,abstumpfest,abstumpften,abgestumpft,abstumpftet,abstumpfe,abstumpftest,abstumpfte,abstumpft,abstumpfst" }, "abstürzen": { "form": "abstürzen", "polarity": "-0.4697", "pos": "VB", "sense": "abstürztet,abstürzt,abstürze,abstürzte,abgestürzt,abstürzet,abstürzest,abstürzten,abstürztest" }, "absurd": { "form": "absurd", "polarity": "-0.212", "pos": "JJ", "sense": "absurdester,absurdestes,absurderer,absurdesten,absurden,absurdem,absurderen,absurderem,absurdestem,absurdere,absurdeste,absurde,absurder,absurdest,absurdes,absurderes" }, "abtragen": { "form": "abtragen", "polarity": "-0.0048", "pos": "VB", "sense": "abtrage,abträgst,abträgt,abtragt,abtragest,abtraget,abtrug,abtrugst,abtrugen,abtrugt,abtrüge,abtrügest,abtrügst,abtrügen,abtrüget,abtrügt,abzutragen,abgetragen" }, "abweichen": { "form": "abweichen", "polarity": "-0.3422", "pos": "VB", "sense": "abweiche,abweichst,abweicht,abweichest,abweichet,abweichte,abweichtest,abweichten,abweichtet,abzuweichen,abgeweicht" }, "abweisen": { "form": "abweisen", "polarity": "-0.0048", "pos": "VB", "sense": "abweise,abweist,abweisest,abweiset,abwies,abwiesest,abwiest,abwiesen,abwiese,abwieset,abzuweisen,abgewiesen" }, "abwerten": { "form": "abwerten", "polarity": "-0.4521", "pos": "VB", "sense": "abwertest,abgewertet,abwerttest,abzuwerten,abwertete,abwerteten,abwerte,abwertetet,abwertet,abwertetest" }, "achtlos": { "form": "achtlos", "polarity": "-0.0048", "pos": "JJ", "sense": "achtloses,achtlosere,achtlosestes,achtlosester,achtlose,achtlosest,achtloseren,achtloseste,achtloseres,achtloserer,achtlosestem,achtlosesten,achtloser,achtlosen,achtlosem,achtloserem" }, "aggressiv": { "form": "aggressiv", "polarity": "-0.4484", "pos": "JJ", "sense": "aggressive,aggressivem,aggressiven,aggressiver,aggressives,aggressivere,aggressiverem,aggressiveren,aggressiverer,aggressiveres,aggressivste,aggressivstem,aggressivsten,aggressivster,aggressivstes" }, "alarmieren": { "form": "alarmieren", "polarity": "-0.0048", "pos": "VB", "sense": "alarmiertest,alarmieret,alarmierten,alarmiere,alarmiertet,alarmierest,alarmierst,alarmierte,alarmiert" }, "alkoholisiert": { "form": "alkoholisiert", "polarity": "-0.0048", "pos": "JJ", "sense": "alkoholisierten,alkoholisiertem,alkoholisierteste,alkoholisierte,alkoholisiertester,alkoholisiertestes,alkoholisiertes,alkoholisiertest,alkoholisiertesten,alkoholisierter,alkoholisiertestem,alkoholisierterer,alkoholisiertere,alkoholisierteres,alkoholisierteren,alkoholisierterem" }, "alt": { "form": "alt", "polarity": "-0.0048", "pos": "JJ", "sense": "alte,altem,alten,ältest,alter,altes,älteres,ältester,älterer,älter,ältere,älterem,ältestem,ältesten,älteren,älteste,ältestes" }, "altmodisch": { "form": "altmodisch", "polarity": "-0.0382", "pos": "JJ", "sense": "altmodische,altmodischem,altmodischen,altmodischer,altmodisches,altmodischere,altmodischerem,altmodischeren,altmodischerer,altmodischeres,altmodischste,altmodischstem,altmodischsten,altmodischster,altmodischstes" }, "amateurhaft": { "form": "amateurhaft", "polarity": "-0.4485", "pos": "JJ", "sense": "amateurhafte,amateurhaftem,amateurhaften,amateurhafter,amateurhaftes,amateurhaftere,amateurhafterem,amateurhafteren,amateurhafterer,amateurhafteres,amateurhafteste,amateurhaftestem,amateurhaftesten,amateurhaftester,amateurhaftestes" }, "ambivalent": { "form": "ambivalent", "polarity": "-0.4628", "pos": "JJ", "sense": "ambivalenterer,ambivalentestem,ambivalentesten,ambivalentem,ambivalenteren,ambivalenterem,ambivalentestes,ambivalentester,ambivalenten,ambivalentes,ambivalenter,ambivalenteste,ambivalenteres,ambivalente,ambivalentere" }, "androhen": { "form": "androhen", "polarity": "-0.0048", "pos": "VB", "sense": "angedroht,androhte,androhest,androhtest,androhet,anzudrohen,androhst,androhe,androhten,androht,androhtet" }, "anfällig": { "form": "anfällig", "polarity": "-0.1884", "pos": "JJ", "sense": "anfällige,anfälligstes,anfälligster,anfälligerem,anfälliges,anfälliger,anfälligeren,anfälligsten,anfälligem,anfälligste,anfälligstem,anfälligen,anfälligeres,anfälligerer,anfälligere" }, "angespannt": { "form": "angespannt", "polarity": "-0.4744", "pos": "JJ", "sense": "angespannterer,angespannten,angespannteres,angespanntestem,angespanntesten,angespanntem,angespannteren,angespannte,angespannterem,angespanntester,angespanntestes,angespanntere,angespanntes,angespannter,angespannteste" }, "angestrengt": { "form": "angestrengt", "polarity": "-0.0415", "pos": "JJ", "sense": "angestrengteste,angestrengtestes,angestrengten,angestrengte,angestrengtem,angestrengtes,angestrengter,angestrengterer,angestrengtester,angestrengteres,angestrengterem,angestrengteren,angestrengtestem,angestrengtesten,angestrengtere" }, "angetrunken": { "form": "angetrunken", "polarity": "-0.0048", "pos": "JJ", "sense": "angetrunkenen,angetrunkenem,angetrunkener,angetrunkene,angetrunkenere,angetrunkeneren,angetrunkenerer,angetrunkeneres,angetrunkenste,angetrunkenes,angetrunkenstem,angetrunkenster,angetrunkensten,angetrunkenstes,angetrunkenerem" }, "angreifen": { "form": "angreifen", "polarity": "-0.0464", "pos": "VB", "sense": "angreife,angreifst,angreift,angreifest,angreifet,angriff,angriffst,angriffen,angriffe,angriffest,angriffet,anzugreifen,angegriffen" }, "anklagen": { "form": "anklagen", "polarity": "-0.0048", "pos": "VB", "sense": "anklagten,anklagtet,anklagest,anklage,angeklagt,anklagt,anklaget,anklagst,anklagtest,anklagte,anzuklagen" }, "anmaßen": { "form": "anmaßen", "polarity": "-0.0048", "pos": "VB", "sense": "anmaßtet,anmaßest,anmaßtest,anzumaßen,anmaße,anmaßten,angemaßt,anmaß,anmaßet,anmaßte,anzumassen" }, "annullieren": { "form": "annullieren", "polarity": "-0.3149", "pos": "VB", "sense": "annulliertet,annulliert,annulliere,annullierst,annullierte,annullierest,annulliertest,annullierten,annullieret" }, "anschießen": { "form": "anschießen", "polarity": "-0.0048", "pos": "VB", "sense": "anschieße,anschießt,anschießest,anschießet,anschoss,anschoß,anschossest,anschosst,anschoßt,anschossen,anschösse,anschössest,anschössen,anschösset,anzuschießen,angeschossen" }, "anspannen": { "form": "anspannen", "polarity": "-0.0444", "pos": "VB", "sense": "anspannte,anspannt,anspanne,anspannten,anzuspannen,angespannt,anspanntet,anspanntest,anspannst,anspannet,anspannest" }, "anstrengen": { "form": "anstrengen", "polarity": "-0.0048", "pos": "VB", "sense": "anstrengtet,anstrengest,anstrenget,angestrengt,anstrengtest,anzustrengen,anstrengte,anstrengten,anstrengt,anstrengst,anstrenge" }, "anstrengend": { "form": "anstrengend", "polarity": "-0.0048", "pos": "JJ", "sense": "anstrengendem,anstrengendsten,anstrengenden,anstrengenderes,anstrengendstem,anstrengenderer,anstrengendster,anstrengendes,anstrengender,anstrengendste,anstrengenderen,anstrengenderem,anstrengendere,anstrengende,anstrengendstes" }, "anstößig": { "form": "anstößig", "polarity": "-0.0048", "pos": "JJ", "sense": "anstößigster,anstößigerer,anstößigstes,anstößigerem,anstößigeren,anstößigste,anstößiger,anstößiges,anstößigere,anstößigen,anstößigem,anstößigsten,anstößigeres,anstößigstem,anstößige" }, "antiquiert": { "form": "antiquiert", "polarity": "-0.0048", "pos": "JJ", "sense": "antiquiertes,antiquiertere,antiquierter,antiquiertestem,antiquiertesten,antiquiertester,antiquierterem,antiquiertestes,antiquierteren,antiquierteres,antiquierte,antiquierterer,antiquierteste,antiquierten,antiquiertem" }, "anzünden": { "form": "anzünden", "polarity": "-0.3333", "pos": "VB", "sense": "anzünde,anzündest,anzündet,anzündete,anzuündetest,anzündeten,anzündetet" }, "apathisch": { "form": "apathisch", "polarity": "-0.3252", "pos": "JJ", "sense": "apathischerem,apathischeren,apathischste,apathischerer,apathischem,apathischster,apathischen,apathischstes,apathischstem,apathischsten,apathischer,apathischere,apathischeres,apathisches,apathische" }, "apokalyptisch": { "form": "apokalyptisch", "polarity": "-0.0048", "pos": "JJ", "sense": "apokalyptischeren,apokalyptischen,apokalyptischerem,apokalyptischem,apokalyptischstes,apokalyptischster,apokalyptischsten,apokalyptisches,apokalyptischstem,apokalyptischer,apokalyptischere,apokalyptischste,apokalyptische,apokalyptischerer,apokalyptischeres" }, "arbeitslos": { "form": "arbeitslos", "polarity": "-0.3426", "pos": "JJ", "sense": "arbeitslosere,arbeitslose,arbeitsloserer,arbeitsloseres,arbeitsloserem,arbeitsloseren,arbeitsloseste,arbeitsloses,arbeitsloser,arbeitslosester,arbeitslosestes,arbeitslosesten,arbeitslosestem,arbeitslosem,arbeitslosen" }, "archaisch": { "form": "archaisch", "polarity": "-0.0048", "pos": "JJ", "sense": "archaische,archaischstem,archaischsten,archaischstes,archaischste,archaischster,archaischeren,archaischeres,archaischerer,archaischere,archaisches,archaischerem,archaischen,archaischem,archaischer" }, "arm": { "form": "arm", "polarity": "-0.4546", "pos": "JJ", "sense": "armem,armen,ärmerer,arme,ärmeres,ärmeren,ärmerem,armes,armer,ärmer,ärmstes,ärmster,ärmste,ärmsten,ärmstem,ärmere" }, "armselig": { "form": "armselig", "polarity": "-0.1814", "pos": "JJ", "sense": "armseligen,armseligem,armselige,armseliges,armseliger,armseligste,armseligster,armseligstes,armseligerem,armseligstem,armseligsten,armseligeren,armseligere,armseligerer,armseligeres" }, "arrogant": { "form": "arrogant", "polarity": "-0.4659", "pos": "JJ", "sense": "arrogante,arroganteste,arrogantem,arroganten,arrogantestem,arrogantesten,arroganter,arrogantes,arrogantester,arrogantestes,arroganteres,arroganterer,arroganteren,arrogantere,arroganterem" }, "attackieren": { "form": "attackieren", "polarity": "-0.0048", "pos": "VB", "sense": "attackiere,attackierst,attackiert,attackierest,attackieret,attackierte,attackiertest,attackierten,attackiertet" }, "aufblasen": { "form": "aufblasen", "polarity": "-0.0048", "pos": "VB", "sense": "aufblase,aufbläst,aufblast,aufblasest,aufblaset,aufblies,aufbliesest,aufbliest,aufbliesen,aufbliese,aufblieset,aufzublasen,aufgeblasen" }, "aufblähen": { "form": "aufblähen", "polarity": "-0.0048", "pos": "VB", "sense": "aufblähtet,aufblähest,aufzublähen,aufbläht,aufblähe,aufgebläht,aufblähte,aufblähet,aufblähst,aufblähtest,aufblähten" }, "aufbringen": { "form": "aufbringen", "polarity": "-0.0048", "pos": "VB", "sense": "aufbringe,aufbringst,aufbringt,aufbringest,aufbringet,aufbrachte,aufbrachtest,aufbrachten,aufbrachtet,aufbrächte,aufbrächtest,aufbrächten,aufbrächtet,aufzubringen,aufgebracht" }, "auffallen": { "form": "auffallen", "polarity": "-0.3386", "pos": "VB", "sense": "auffalle,auffällst,auffällt,auffallt,auffallest,auffallet,auffiel,auffielst,auffielen,auffielt,auffiele,auffielest,auffielet,aufzufallen,aufgefallen" }, "aufgeben": { "form": "aufgeben", "polarity": "-0.2098", "pos": "VB", "sense": "aufgebe,aufgibst,aufgibt,aufgebt,aufgebest,aufgebet,aufgab,aufgabst,aufgaben,aufgabt,aufgäbe,aufgäbest,aufgäbst" }, "aufgebracht": { "form": "aufgebracht", "polarity": "-0.0048", "pos": "JJ", "sense": "aufgebrachterem,aufgebrachte,aufgebrachten,aufgebrachtem,aufgebrachteren,aufgebrachtestes,aufgebrachtester,aufgebrachter,aufgebrachteres,aufgebrachterer,aufgebrachtes,aufgebrachtesten,aufgebrachtestem,aufgebrachtere,aufgebrachteste" }, "aufgeregt": { "form": "aufgeregt", "polarity": "-0.0048", "pos": "JJ", "sense": "aufgeregteres,aufgeregterer,aufgeregterem,aufgeregtestes,aufgeregteren,aufgeregtester,aufgeregten,aufgeregtem,aufgeregtere,aufgeregter,aufgeregtesten,aufgeregtes,aufgeregtestem,aufgeregte,aufgeregteste" }, "aufhören": { "form": "aufhören", "polarity": "-0.0142", "pos": "VB", "sense": "aufhöre,aufhörst,aufhört,aufhörest,aufhöret,aufhörte,aufhörtest,aufhörten,aufhörtet,aufzuhören,aufgehört" }, "auflösen": { "form": "auflösen", "polarity": "-0.0412", "pos": "VB", "sense": "auflöstet,auflöst,auflöse,auflöstest,auflöste,auflösten,auflöset,aufzulösen,aufgelöst,auflösest" }, "aufregen": { "form": "aufregen", "polarity": "-0.0048", "pos": "VB", "sense": "aufregt,aufrege,aufregtet,aufregst,aufgeregt,aufregte,aufreget,aufregtest,aufregten,aufzuregen,aufregest" }, "aufreibend": { "form": "aufreibend", "polarity": "-0.0048", "pos": "VB", "sense": "aufreibende,aufreibendem,aufreibenden,aufreibender,aufreibendes,aufreibendere,aufreibenderem,aufreibenderen,aufreibenderer,aufreibenderes,aufreibendste,aufreibendstem,aufreibendsten,aufreibendster,aufreibendstes" }, "aufrühren": { "form": "aufrühren", "polarity": "-0.0256", "pos": "VB", "sense": "aufzurühren,aufrührtest,aufrührtet,aufrühret,aufrühre,aufrührten,aufrührte,aufrührt,aufgerührt,aufrührst,aufrührest" }, "aufschlagen": { "form": "aufschlagen", "polarity": "-0.04", "pos": "VB", "sense": "aufschlage,aufschlägst,aufschlägt,aufschlagt,aufschlagest,aufschlaget,aufschlug,aufschlugst,aufschlugen,aufschlugt,aufschlüge,aufschlügest,aufschlügst,aufschlügen,aufschlüget,aufschlügt,aufzuschlagen,aufgeschlagen" }, "aufschreien": { "form": "aufschreien", "polarity": "-0.043", "pos": "VB", "sense": "aufschreie,aufschreist,aufschreit,aufschreiest,aufschreiet,aufschrie,aufschriest,aufschrieen,aufschrien,aufschriet,aufschriee,aufschrieest,aufschrieet,aufzuschreien,aufgeschrien,aufgeschrieen" }, "aufwühlen": { "form": "aufwühlen", "polarity": "-0.0398", "pos": "VB", "sense": "aufwühle,aufwühlst,aufwühlt,aufwühlest,aufwühlet,aufwühlte,aufwühltest,aufwühlten,aufwühltet,aufzuwühlen,aufgewühlt" }, "ausbeuten": { "form": "ausbeuten", "polarity": "-0.3215", "pos": "VB", "sense": "ausgebeutet,ausbeutete,ausbeutten,ausbeuttest,ausbeutet,ausbeuteten,ausbeutetest,ausbeutte,ausbeutetet,ausbeutest,auszubeuten,ausbeute,ausbeuttet" }, "ausbrechen": { "form": "ausbrechen", "polarity": "-0.1819", "pos": "VB", "sense": "ausbreche,ausbrichst,ausbricht,ausbrecht,ausbrechest,ausbrechet,ausbrach,ausbrachst,ausbrachen,ausbracht,ausbräche,ausbrächest,ausbrächst,ausbrächen,ausbrächet,ausbrächt,auszubrechen,ausgebrochen" }, "auseinanderfallen": { "form": "auseinanderfallen", "polarity": "-0.0048", "pos": "VB", "sense": "auseinanderfalle,auseinanderfällst,auseinanderfällt,auseinanderfallt,auseinanderfallest,auseinanderfallet,auseinanderfiel,auseinanderfielst,auseinanderfielen,auseinanderfielt,auseinanderfiele,auseinanderfielest,auseinanderfielet,auseinanderzufallen,auseinandergefallen" }, "auseinandersetzen": { "form": "auseinandersetzen", "polarity": "-0.0584", "pos": "VB", "sense": "auseinandersetze,auseinandersetzt,auseinandersetzest,auseinandersetzet,auseinandersetzte,auseinandersetztest,auseinandersetzten,auseinandersetztet,auseinanderzusetzen,auseinandergesetzt" }, "ausfallen": { "form": "ausfallen", "polarity": "-0.3481", "pos": "VB", "sense": "ausfalle,ausfällst,ausfällt,ausfallt,ausfallest,ausfallet,ausfiel,ausfielst,ausfielen,ausfielt,ausfiele,ausfielest,ausfielet,auszufallen,ausgefallen" }, "ausgehungert": { "form": "ausgehungert", "polarity": "-0.0048", "pos": "JJ", "sense": "ausgehungertster,ausgehungertstes,ausgehungertere,ausgehungertes,ausgehungerte,ausgehungerter,ausgehungerten,ausgehungertem,ausgehungerteren,ausgehungertstem,ausgehungertsten,ausgehungerterem,ausgehungerterer,ausgehungertste,ausgehungerteres" }, "ausgestorben": { "form": "ausgestorben", "polarity": "-0.0389", "pos": "JJ", "sense": "ausgestorbenerer,ausgestorbenem,ausgestorbenere,ausgestorbenen,ausgestorbener,ausgestorbeneren,ausgestorbenerem,ausgestorbene,ausgestorbenes,ausgestorbeneres,ausgestorbenster,ausgestorbenstes,ausgestorbenste,ausgestorbenstem,ausgestorbensten" }, "ausgleiten": { "form": "ausgleiten", "polarity": "-0.0048", "pos": "VB", "sense": "ausgleite,ausgleitest,ausgleitet,ausglitt,ausglittest,ausglitten,ausglittet,auszugleiten,ausgeglitten" }, "ausgrenzen": { "form": "ausgrenzen", "polarity": "-0.0048", "pos": "VB", "sense": "ausgrenze,ausgrenzt,ausgrenzest,ausgrenzet,ausgrenzte,ausgrenztest,ausgrenzten,ausgrenztet,auszugrenzen,ausgegrenzt" }, "ausradieren": { "form": "ausradieren", "polarity": "-0.0048", "pos": "VB", "sense": "ausradiertet,ausradierest,ausradierten,auszuradieren,ausradierte,ausradierst,ausradieret,ausradiertest,ausradiert,ausradiere" }, "ausrotten": { "form": "ausrotten", "polarity": "-0.0048", "pos": "VB", "sense": "ausrottet,ausrotten,ausrottest,auszurotten,ausrotteten,ausrottetest,ausgerottet,ausrottetet,ausrotte,ausrottete" }, "ausschalten": { "form": "ausschalten", "polarity": "-0.0048", "pos": "VB", "sense": "ausschaltest,ausschalte,ausschaltet,ausschaltetest,auszuschalten,ausschaltetet,ausgeschaltet,ausschalteten,ausschalten,ausschaltete" }, "ausschließen": { "form": "ausschließen", "polarity": "-0.4935", "pos": "VB", "sense": "ausschließe,ausschließt,ausschließest,ausschließet,ausschloss,ausschloß,ausschlossest,ausschlosst,ausschloßt,ausschlossen,ausschlösse,ausschlössest,ausschlössen,ausschlösset,auszuschließen,ausgeschlossen" }, "aussetzen": { "form": "aussetzen", "polarity": "-0.3413", "pos": "VB", "sense": "auszusetzen,aussetzte,aussetzest,aussetztet,aussetztest,aussetzten,aussetze,ausgesetzt,aussetzet,aussetzt" }, "aussichtslos": { "form": "aussichtslos", "polarity": "-0.183", "pos": "JJ", "sense": "aussichtslosestem,aussichtslosester,aussichtslosestes,aussichtsloseste,aussichtsloses,aussichtsloser,aussichtslosesten,aussichtsloserem,aussichtsloseren,aussichtslosen,aussichtsloserer,aussichtslosem,aussichtslosere,aussichtsloseres,aussichtslose" }, "aussterben": { "form": "aussterben", "polarity": "-0.0048", "pos": "VB", "sense": "aussterbe,ausstirbst,ausstirbt,aussterbt,aussterbest,aussterbet,ausstarb,ausstarbst,ausstarben,ausstarbt,ausstürbe,ausstürbest,ausstürbst,ausstürben,ausstürbet,ausstürbt,auszusterben,ausgestorben" }, "banal": { "form": "banal", "polarity": "-0.3166", "pos": "JJ", "sense": "banaleres,banalerer,banaleren,banalste,banalsten,banalstem,banales,banaler,banalere,banale,banalerem,banalem,banalen,banalstes,banalster" }, "barbarisch": { "form": "barbarisch", "polarity": "-0.3176", "pos": "JJ", "sense": "barbarischer,barbarisches,barbarischen,barbarischem,barbarischste,barbarischeren,barbarischerem,barbarischstes,barbarischster,barbarischere,barbarischerer,barbarische,barbarischstem,barbarischsten,barbarischeres" }, "beanstandet": { "form": "beanstandet", "polarity": "-0.333", "pos": "JJ", "sense": "beanstandete,beanstandetem,beanstandeten,beanstandeter,beanstandetes" }, "bedauerlich": { "form": "bedauerlich", "polarity": "-0.0551", "pos": "JJ", "sense": "bedauerlichsten,bedauerlichstem,bedauerlicheres,bedauerlichste,bedauerlicherer,bedauerlicheren,bedauerlichem,bedauerlicherem,bedauerlichen,bedauerliche,bedauerliches,bedauerlicher,bedauerlichstes,bedauerlichster,bedauerlichere" }, "bedauern": { "form": "bedauern", "polarity": "-0.0574", "pos": "VB", "sense": "bedauere,bedauerst,bedauert,bedaurest,bedaure,bedauret,bedauerte,bedauertest,bedauerten,bedauertet" }, "bedauernswert": { "form": "bedauernswert", "polarity": "-0.0048", "pos": "JJ", "sense": "bedauernswerter,bedauernswertes,bedauernswertere,bedauernswerte,bedauernswerten,bedauernswerteren,bedauernswerterem,bedauernswertestem,bedauernswertesten,bedauernswertester,bedauernswertestes,bedauernswertem,bedauernswerterer,bedauernswerteres,bedauernswerteste" }, "bedenklich": { "form": "bedenklich", "polarity": "-0.7701", "pos": "JJ", "sense": "bedenklicherem,bedenkliches,bedenklicher,bedenklicheren,bedenklicheres,bedenklichster,bedenklichstes,bedenklichste,bedenklicherer,bedenkliche,bedenklichere,bedenklichsten,bedenklichem,bedenklichstem,bedenklichen" }, "bedeppert": { "form": "bedeppert", "polarity": "-0.0048", "pos": "JJ", "sense": "bedeppertem,bedeppertere,bedepperterem,bedepperteren,bedepperte,bedepperteres,bedepperten,bedepperterer,bedeppertesten,bedepperteste,bedeppertestem,bedeppertestes,bedeppertester,bedepperter,bedeppertes" }, "bedeutungslos": { "form": "bedeutungslos", "polarity": "-0.6046", "pos": "JJ", "sense": "bedeutungsloseste,bedeutungslosesten,bedeutungslosestem,bedeutungsloserem,bedeutungslosester,bedeutungslosere,bedeutungsloseres,bedeutungsloseren,bedeutungsloserer,bedeutungslosestes,bedeutungslose,bedeutungslosen,bedeutungslosem,bedeutungsloser,bedeutungsloses" }, "bedrohen": { "form": "bedrohen", "polarity": "-0.3408", "pos": "VB", "sense": "bedrohten,bedroht,bedrohe,bedrohet,bedrohtest,bedrohest,bedrohtet,bedrohte,bedrohst" }, "bedrohlich": { "form": "bedrohlich", "polarity": "-0.4726", "pos": "JJ", "sense": "bedrohlichere,bedrohlichste,bedrohlicherer,bedrohlicheres,bedrohlicherem,bedrohlicheren,bedrohlicher,bedrohlichstes,bedrohlichster,bedrohliches,bedrohlichen,bedrohlichstem,bedrohlichem,bedrohlichsten,bedrohliche" }, "bedrängen": { "form": "bedrängen", "polarity": "-0.0048", "pos": "VB", "sense": "bedrängtet,bedränget,bedränge,bedrängten,bedrängest,bedrängtest,bedrängte,bedrängt,bedrängst" }, "bedrücken": { "form": "bedrücken", "polarity": "-0.3123", "pos": "VB", "sense": "bedrückten,bedrückst,bedrückte,bedrücket,bedrücktet,bedrückest,bedrücktest,bedrückt,bedrücke" }, "bedrückt": { "form": "bedrückt", "polarity": "-0.0494", "pos": "VB", "sense": "bedrückteren,bedrückterem,bedrückte,bedrücktester,bedrücktestes,bedrückteres,bedrückterer,bedrückteste,bedrückten,bedrücktem,bedrücktes,bedrücktestem,bedrückter,bedrücktesten,bedrücktere" }, "bedürftig": { "form": "bedürftig", "polarity": "-0.0048", "pos": "JJ", "sense": "bedürftigstes,bedürftigen,bedürftigeres,bedürftige,bedürftigerer,bedürftigster,bedürftigeren,bedürftigem,bedürftigerem,bedürftigere,bedürftiges,bedürftiger,bedürftigsten,bedürftigste,bedürftigstem" }, "beeinträchtigen": { "form": "beeinträchtigen", "polarity": "-0.4979", "pos": "JJ", "sense": "beeinträchtigten,beeinträchtigest,beeinträchtige,beeinträchtigtest,beeinträchtigt,beeinträchtigst,beeinträchtigte,beeinträchtigtet,beeinträchtiget" }, "beenden": { "form": "beenden", "polarity": "-0.0603", "pos": "VB", "sense": "beendest,beende,beendeten,beendete,beendtet,beendetest,beendte,beendetet,beendtest,beendet,beendten" }, "befallen": { "form": "befallen", "polarity": "-0.334", "pos": "VB", "sense": "befalle,befällst,befällt,befallt,befallest,befallet,befiel,befielst,befielen,befielt,befiele,befielest,befielet" }, "befangen": { "form": "befangen", "polarity": "-0.3253", "pos": "JJ", "sense": "befangeneres,befangenerer,befangnerem,befangneren,befangenere,befangeneren,befangenerem,befangenste,befangner,befangenstes,befangenster,befangenstem,befangnere,befangensten,befangnerer,befangenes,befangneres,befangener,befangene,befangenem,befangenen" }, "befremdlich": { "form": "befremdlich", "polarity": "-0.0048", "pos": "JJ", "sense": "befremdlichen,befremdliches,befremdlicher,befremdlichstes,befremdlichster,befremdlichem,befremdlichsten,befremdlichstem,befremdlicheres,befremdlicherer,befremdlichere,befremdlichste,befremdliche,befremdlicherem,befremdlicheren" }, "befürchten": { "form": "befürchten", "polarity": "-0.3602", "pos": "VB", "sense": "befürchte,befürchtest,befürchtet,befürchtete,befürchtetest,befürchteten,befürchtetet" }, "begrenzen": { "form": "begrenzen", "polarity": "-0.0048", "pos": "VB", "sense": "begrenzten,begrenzte,begrenzt,begrenztet,begrenze,begrenzest,begrenzet,begrenztest" }, "begrenzt": { "form": "begrenzt", "polarity": "-0.0048", "pos": "JJ", "sense": "begrenzterer,begrenzte,begrenztestem,begrenztesten,begrenzteres,begrenzteren,begrenzterem,begrenzteste,begrenztem,begrenzten,begrenzter,begrenztes,begrenztere,begrenztestes,begrenztester" }, "begriffsstutzig": { "form": "begriffsstutzig", "polarity": "-0.0048", "pos": "JJ", "sense": "begriffsstutzigeres,begriffsstutzigere,begriffsstutzigerer,begriffsstutzigste,begriffsstutzigstes,begriffsstutzigster,begriffsstutzigerem,begriffsstutzigsten,begriffsstutzigstem,begriffsstutzige,begriffsstutzigeren,begriffsstutzigem,begriffsstutzigen,begriffsstutziger,begriffsstutziges" }, "behindern": { "form": "behindern", "polarity": "-0.7748", "pos": "VB", "sense": "behinderten,behindertet,behindert,behindere,behindertest,behinderte,behinderen,behinderst" }, "behämmert": { "form": "behämmert", "polarity": "-0.0376", "pos": "JJ", "sense": "behämmerterer,behämmerteres,behämmerte,behämmertste,behämmerter,behämmertes,behämmertem,behämmerten,behämmertere,behämmerterem,behämmertstes,behämmertster,behämmerteren,behämmertstem,behämmertsten" }, "beklagen": { "form": "beklagen", "polarity": "-0.4967", "pos": "VB", "sense": "beklagtet,beklagtest,beklaget,beklagest,begeklagt,beklagten,beklage,beklagt,beklagst,beklagte" }, "beklagenswert": { "form": "beklagenswert", "polarity": "-0.0048", "pos": "JJ", "sense": "beklagenswerterer,beklagenswerte,beklagenswerteres,beklagenswerteren,beklagenswertestem,beklagenswertesten,beklagenswertem,beklagenswerten,beklagenswerterem,beklagenswertes,beklagenswerter,beklagenswerteste,beklagenswertere,beklagenswertester,beklagenswertestes" }, "bekloppt": { "form": "bekloppt", "polarity": "-0.0048", "pos": "JJ", "sense": "bekloppter,beklopptes,bekloppte,beklopptem,bekloppten,bekloppteres,bekloppterer,beklopptestes,bekloppterem,beklopptester,beklopptere,bekloppteren,bekloppteste,beklopptesten,beklopptestem" }, "beknackt": { "form": "beknackt", "polarity": "-0.0358", "pos": "JJ", "sense": "beknackterer,beknackteres,beknacktester,beknackteste,beknacktestes,beknackte,beknackteren,beknackterem,beknacktestem,beknacktesten,beknackter,beknacktes,beknacktem,beknacktere,beknackten" }, "bekümmert": { "form": "bekümmert", "polarity": "-0.4503", "pos": "VB", "sense": "bekümmerterer,bekümmerteres,bekümmerteren,bekümmerterem,bekümmertste,bekümmerter,bekümmertstes,bekümmertes,bekümmertster,bekümmertem,bekümmertstem,bekümmertsten,bekümmerte,bekümmerten,bekümmertere" }, "belanglos": { "form": "belanglos", "polarity": "-0.3306", "pos": "JJ", "sense": "belanglosesten,belanglosem,belanglosester,belanglosestes,belangloses,belangloseste,belangloser,belanglosen,belanglosere,belangloserer,belangloseres,belanglose,belangloserem,belanglosestem,belangloseren" }, "belasten": { "form": "belasten", "polarity": "-0.5078", "pos": "VB", "sense": "belaste,belastest,belastet,belastete,belastetest,belasteten,belastetet" }, "beleidigen": { "form": "beleidigen", "polarity": "-0.6076", "pos": "VB", "sense": "beleidigtet,beleidigst,beleidiget,beleidige,beleidigten,beleidigte,beleidigtest,beleidigt,beleidigest" }, "beleidigend": { "form": "beleidigend", "polarity": "-0.4636", "pos": "JJ", "sense": "beleidigende,beleidigendem,beleidigenden,beleidigender,beleidigendes,beleidigendere,beleidigenderem,beleidigenderen,beleidigenderer,beleidigenderes,beleidigenste,beleidigenstem,beleidigensten,beleidigenster,beleidigenstes" }, "beleidigt": { "form": "beleidigt", "polarity": "-0.4848", "pos": "VB", "sense": "beleidigte,beleidigtem,beleidigten,beleidigter,beleidigtes,beleidigtere,beleidigterem,beleidigteren,beleidigterer,beleidigteres,beleidigste,beleidigstem,beleidigsten,beleidigster,beleidigstes" }, "belästigen": { "form": "belästigen", "polarity": "-0.0048", "pos": "VB", "sense": "belästigten,belästigst,belästiget,belästigt,belästige,belästigte,belästigtet,belästigest,belästigtest" }, "berauben": { "form": "berauben", "polarity": "-0.0048", "pos": "VB", "sense": "beraubte,beraubst,beraubest,beraubten,beraubtest,beraube,beraubet,beraubt,beraubtet" }, "bergab": { "form": "bergab", "polarity": "-0.0048", "pos": "RB", "sense": "" }, "bescheuert": { "form": "bescheuert", "polarity": "-0.0048", "pos": "JJ", "sense": "bescheuertestes,bescheuertester,bescheuertes,bescheuerter,bescheuerteren,bescheuertem,bescheuerteres,bescheuerten,bescheuerterer,bescheuertestem,bescheuertesten,bescheuertere,bescheuerteste,bescheuerte,bescheuerterem" }, "beschissen": { "form": "beschissen", "polarity": "-0.2947", "pos": "JJ", "sense": "beschissnere,beschissenere,beschisseneres,beschissnerem,beschissene,beschissenerem,beschisseneren,beschissenste,beschissenerer,beschissenen,beschissenstes,beschissenem,beschissenster,beschissenstem,beschissensten,beschissneren,beschissner,beschissenes,beschissener,beschissnerer,beschissneres" }, "beschneiden": { "form": "beschneiden", "polarity": "-0.3293", "pos": "VB", "sense": "beschneide,beschneidest,beschneidet,beschnitt,beschnittest,beschnitten,beschnittet" }, "beschruppt": { "form": "beschruppt", "polarity": "-0.0048", "pos": "JJ", "sense": "beschruppte,beschrupptem,beschruppten,beschruppter,beschrupptes,beschrupptere,beschruppterem,beschruppteren,beschruppterer,beschruppteres,beschruppteste,beschrupptestem,beschrupptesten,beschrupptester,beschrupptestes" }, "beschränken": { "form": "beschränken", "polarity": "-0.0048", "pos": "VB", "sense": "beschränktet,beschränkten,beschränkte,beschränkest,beschränkst,beschränktest,beschränkt,beschränket,beschränke" }, "beschränkt": { "form": "beschränkt", "polarity": "-0.0048", "pos": "JJ", "sense": "beschränkteren,beschränkterem,beschränkteres,beschränkterer,beschränktesten,beschränktestem,beschränkter,beschränktere,beschränktester,beschränktes,beschränkten,beschränktem,beschränktestes,beschränkte,beschränkteste" }, "beschuldigen": { "form": "beschuldigen", "polarity": "-0.3264", "pos": "VB", "sense": "beschuldigten,beschuldigest,beschuldigt,beschuldige,beschuldigtet,beschuldigte,beschuldiget,beschuldigtest,beschuldigst" }, "beschweren": { "form": "beschweren", "polarity": "-0.0413", "pos": "VB", "sense": "beschwerten,beschwerst,beschwertest,beschwertet,beschwerte,beschwere,beschwert" }, "beschwerlich": { "form": "beschwerlich", "polarity": "-0.0491", "pos": "JJ", "sense": "beschwerlichstes,beschwerliche,beschwerlichere,beschwerlicher,beschwerlicheres,beschwerliches,beschwerlichem,beschwerlicherer,beschwerlichen,beschwerlicherem,beschwerlichste,beschwerlicheren,beschwerlichstem,beschwerlichsten,beschwerlichster" }, "beschädigen": { "form": "beschädigen", "polarity": "-0.335", "pos": "VB", "sense": "beschädigtest,beschädigten,beschädige,beschädigte,beschädiget,beschädigt,beschädigest,beschädigtet,beschädigst" }, "beschäftigungslos": { "form": "beschäftigungslos", "polarity": "-0.0048", "pos": "JJ", "sense": "beschäftigungslose,beschäftigungslosem,beschäftigungslosen,beschäftigungsloser,beschäftigungsloses" }, "beschämen": { "form": "beschämen", "polarity": "-0.0048", "pos": "VB", "sense": "beschämtest,beschämt,beschäme,beschämtet,beschämest,beschämte,beschämst,beschämet,beschämten" }, "beseitigen": { "form": "beseitigen", "polarity": "-0.0048", "pos": "VB", "sense": "beseitigtet,beseitiget,beseitigtest,beseitigten,beseitigt,beseitige,beseitigst,beseitigest,beseitigte" }, "besorgniserregend": { "form": "besorgniserregend", "polarity": "-0.3281", "pos": "JJ", "sense": "besorgniserregender,besorgniserregende,besorgniserregendere,besorgniserregendes,besorgniserregenden,besorgniserregendem,besorgniserregenderes,besorgniserregenderer,besorgniserregendste,besorgniserregendstem,besorgniserregenderem,besorgniserregenderen,besorgniserregendsten,besorgniserregendstes,besorgniserregendster" }, "besorgt": { "form": "besorgt", "polarity": "-0.0482", "pos": "JJ", "sense": "besorgterem,besorgtesten,besorgteren,besorgtestem,besorgterer,besorgteres,besorgte,besorgtere,besorgtestes,besorgtem,besorgten,besorgtes,besorgteste,besorgtester,besorgter" }, "bestechen": { "form": "bestechen", "polarity": "-0.0048", "pos": "VB", "sense": "besteche,bestichst,besticht,bestecht,bestechest,bestechet,bestach,bestachst,bestachen,bestäche,bestächest,bestächst,bestächen,bestächet,bestächt" }, "besteuern": { "form": "besteuern", "polarity": "-0.0048", "pos": "VB", "sense": "besteuertest,besteuerten,besteuerte,besteueren,besteuerst,begesteuert,besteuert,besteuertet,besteuere" }, "bestrafen": { "form": "bestrafen", "polarity": "-0.4811", "pos": "VB", "sense": "bestrafet,bestrafest,bestrafst,bestraftet,bestrafte,bestraft,bestrafe,bestraften,bestraftest" }, "bestürzt": { "form": "bestürzt", "polarity": "-0.0048", "pos": "VB", "sense": "bestürztester,bestürztes,bestürzter,bestürztesten,bestürztestem,bestürztere,bestürzte,bestürzteste,bestürztem,bestürzten,bestürzteren,bestürzterem,bestürztestes,bestürzteres,bestürzterer" }, "betrunken": { "form": "betrunken", "polarity": "-0.172", "pos": "JJ", "sense": "betrunkensten,betrunkeneres,betrunkenere,betrunkenerer,betrunkenes,betrunkeneren,betrunkenstem,betrunkenste,betrunkenen,betrunkenem,betrunkenster,betrunkene,betrunkenstes,betrunkener,betrunkenerem" }, "betrügen": { "form": "betrügen", "polarity": "-0.743", "pos": "VB", "sense": "betrüge,betrügst,betrügt,betrügest,betrüget,betrog,betrogst,betrogen,betrogt,betröge,betrögest,betrögst,betrögen,betröget,betrögt" }, "betrügerisch": { "form": "betrügerisch", "polarity": "-0.3163", "pos": "JJ", "sense": "betrügerische,betrügerischste,betrügerischere,betrügerischer,betrügerischsten,betrügerischstem,betrügerisches,betrügerischstes,betrügerischen,betrügerischerem,betrügerischster,betrügerischem,betrügerischeres,betrügerischeren,betrügerischerer" }, "betäuben": { "form": "betäuben", "polarity": "-0.0048", "pos": "VB", "sense": "betäubten,betäubst,betäubte,betäubtest,betäubt,betäubest,betäube,betäubet,betäubtet" }, "beunruhigen": { "form": "beunruhigen", "polarity": "-0.3221", "pos": "VB", "sense": "beunruhige,beunruhigtest,beunruhigten,beunruhigst,beunruhigte,beunruhigtet,beunruhigest,beunruhigt,beunruhiget" }, "beunruhigend": { "form": "beunruhigend", "polarity": "-0.3264", "pos": "JJ", "sense": "beunruhigende,beunruhigendem,beunruhigenden,beunruhigender,beunruhigendes,beunruhigendere,beunruhigenderem,beunruhigenderen,beunruhigenderer,beunruhigenderes,beunruhigste,beunruhigstem,beunruhigsten,beunruhigster,beunruhigstes" }, "beunruhigt": { "form": "beunruhigt", "polarity": "-0.4795", "pos": "VB", "sense": "beunruhigte,beunruhigtem,beunruhigten,beunruhigter,beunruhigtes,beunruhigtere,beunruhigterem,beunruhigteren,beunruhigterer,beunruhigteres,beunruhigste,beunruhigstem,beunruhigsten,beunruhigster,beunruhigstes" }, "bevormunden": { "form": "bevormunden", "polarity": "-0.0048", "pos": "VB", "sense": "bevormundetest,bevormundet,bevormundest,bevormundeten,bevormundete,bevormunde,bevormundetet" }, "bewegungslos": { "form": "bewegungslos", "polarity": "-0.0048", "pos": "JJ", "sense": "bewegungslosestes,bewegungsloseste,bewegungslosester,bewegungslosen,bewegungsloserem,bewegungslosem,bewegungsloseren,bewegungsloserer,bewegungsloseres,bewegungslose,bewegungsloses,bewegungsloser,bewegungslosere,bewegungslosesten,bewegungslosestem" }, "beängstigend": { "form": "beängstigend", "polarity": "-0.0367", "pos": "JJ", "sense": "beängstigende,beängstigendem,beängstigenden,beängstigender,beängstigendes,beängstigendere,beängstigenderem,beängstigenderen,beängstigenderer,beängstigenderes,beängstigendste,beängstigendstem,beängstigendsten,beängstigendster,beängstigendstes" }, "billig": { "form": "billig", "polarity": "-0.2842", "pos": "JJ", "sense": "billigerer,billigster,billigeres,billigeren,billigstes,billigerem,billigere,billiges,billigste,billiger,billige,billigem,billigen,billigstem,billigsten" }, "bitter": { "form": "bitter", "polarity": "-0.3394", "pos": "JJ", "sense": "bittersten,bitteres,bitterer,bittereres,bitterstem,bittererer,bittererem,bittereren,bittere,bitterster,bitterste,bitterstes,bitterem,bitteren,bittrerer,bittrere,bittrer,bitterere" }, "bizarr": { "form": "bizarr", "polarity": "-0.0486", "pos": "JJ", "sense": "bizarrstem,bizarrster,bizarrste,bizarrstes,bizarre,bizarrsten,bizarrere,bizarreren,bizarres,bizarrer,bizarrerem,bizarrem,bizarren,bizarreres,bizarrerer" }, "blauäugig": { "form": "blauäugig", "polarity": "-0.0445", "pos": "JJ", "sense": "blauäugigere,blauäugigstem,blauäugiger,blauäugigeren,blauäugigem,blauäugigerem,blauäugigen,blauäugiges,blauäugigster,blauäugigstes,blauäugigsten,blauäugigste,blauäugigerer,blauäugigeres,blauäugige" }, "blind": { "form": "blind", "polarity": "-0.1978", "pos": "JJ", "sense": "blinderes,blinde,blindes,blinder,blinden,blindestem,blindere,blindesten,blindem,blindestes,blindester,blinderer,blinderen,blindeste,blinderem" }, "blockieren": { "form": "blockieren", "polarity": "-0.3459", "pos": "VB", "sense": "blockiere,blockierst,blockiert,blockierest,blockieret,blockierte,blockiertest,blockierten,blockiertet" }, "blutig": { "form": "blutig", "polarity": "-0.0491", "pos": "JJ", "sense": "blutigstem,blutigsten,blutiges,blutiger,blutigster,blutigere,blutigstes,blutigen,blutigeren,blutigerem,blutigerer,blutige,blutigeres,blutigem,blutigste" }, "blöd": { "form": "blöd", "polarity": "-0.1593", "pos": "JJ", "sense": "blöderen,blöderem,blöde,blödesten,blödestem,blödere,blöden,blödem,blödeste,blödestes,blödester,blöder,blöderer,blöderes,blödes" }, "blöde": { "form": "blöde", "polarity": "-0.3145", "pos": "JJ", "sense": "blödee,blödees,blödeer,blödeem,blödeen,blödesten,blödeerer,blödestem,blödeeren,blödeere,blödeerem,blödest,blödeste,blödestes,blödester,blödeeres" }, "bombardieren": { "form": "bombardieren", "polarity": "-0.0048", "pos": "VB", "sense": "bombardieret,bombardiere,bombardiert,bombardiertet,bombardiertest,bombardierest,bombardierst,bombardierte,bombardierten" }, "borniert": { "form": "borniert", "polarity": "-0.0048", "pos": "JJ", "sense": "borniertere,bornierten,borniertestem,bornierter,borniertes,bornierteres,bornierte,bornierteste,borniertesten,bornierterer,borniertestes,borniertester,bornierteren,bornierterem,borniertem" }, "boshaft": { "form": "boshaft", "polarity": "-0.3187", "pos": "JJ", "sense": "boshaftester,boshaftestes,boshafteres,boshaftestem,boshaftesten,boshafteren,boshafterem,boshafterer,boshafteste,boshafte,boshafter,boshaftes,boshaften,boshaftem,boshaftere" }, "brechen": { "form": "brechen", "polarity": "-0.7991", "pos": "VB", "sense": "breche,brichst,bricht,brecht,brechest,brechet,brach,brachst,brachen,bracht,bräche,brächest,brächst,brächen,brächet,brächt" }, "brennen": { "form": "brennen", "polarity": "-0.0048", "pos": "VB", "sense": "brenne,brennst,brennt,brennest,brennet,brannte,branntest,brannten,branntet,gebrannt" }, "brisant": { "form": "brisant", "polarity": "-0.0048", "pos": "JJ", "sense": "brisantester,brisantestes,brisanterem,brisanteren,brisantesten,brisanterer,brisantestem,brisanteres,brisantere,brisanter,brisante,brisantes,brisanteste,brisantem,brisanten" }, "brutal": { "form": "brutal", "polarity": "-0.0048", "pos": "JJ", "sense": "brutaleren,brutalste,brutaleres,brutalerer,brutalere,brutalen,brutalem,brutalstes,brutalster,brutaler,brutalsten,brutales,brutale,brutalerem,brutalstem" }, "brüchig": { "form": "brüchig", "polarity": "-0.3331", "pos": "JJ", "sense": "brüchigstes,brüchigster,brüchige,brüchigem,brüchigstem,brüchigsten,brüchigen,brüchiges,brüchiger,brüchigerem,brüchigste,brüchigeren,brüchigeres,brüchigerer,brüchigere" }, "bösartig": { "form": "bösartig", "polarity": "-0.4715", "pos": "JJ", "sense": "bösartigere,bösartigerer,bösartigeres,bösartigstem,bösartigsten,bösartigeren,bösartiger,bösartigerem,bösartigen,bösartigem,bösartige,bösartigste,bösartiges,bösartigstes,bösartigster" }, "böse": { "form": "böse", "polarity": "-0.4183", "pos": "JJ", "sense": "böseres,böseste,böserer,bösem,bösen,bösere,bösestem,böse,bösesten,bösestes,bösester,böser,böseren,böserem,böses" }, "chaotisch": { "form": "chaotisch", "polarity": "-0.0426", "pos": "JJ", "sense": "chaotischere,chaotische,chaotisches,chaotischer,chaotischen,chaotischem,chaotischste,chaotischerem,chaotischstem,chaotischsten,chaotischeren,chaotischster,chaotischstes,chaotischeres,chaotischerer" }, "charakterschwach": { "form": "charakterschwach", "polarity": "-0.0048", "pos": "JJ", "sense": "charakterschwache,charakterschwachem,charakterschwachen,charakterschwacher,charakterschwaches,charakterschwächere,charakterschwächerem,charakterschwächeren,charakterschwächerer,charakterschwächeres,charakterschwächste,charakterschwächstem,charakterschwächsten,charakterschwächster,charakterschwächstes" }, "dahinschwinden": { "form": "dahinschwinden", "polarity": "-0.0048", "pos": "VB", "sense": "dahinschwinde,dahinschwindest,dahinschwindet,dahinschwand,dahinschwandest,dahinschwandst,dahinschwanden,dahinschwandet,dahinzuschwinden,dahingeschwunden" }, "debil": { "form": "debil", "polarity": "-0.306", "pos": "JJ", "sense": "debilstem,debilsten,debiles,debiler,debileren,debilste,debilem,debilerem,debilen,debileres,debilerer,debilster,debilstes,debilere,debile" }, "defekt": { "form": "defekt", "polarity": "-0.346", "pos": "JJ", "sense": "defektere,defekterer,defekteres,defekteste,defektem,defekte,defekten,defekterem,defektesten,defekteren,defekter,defektestem,defektes,defektestes,defektester" }, "defizitär": { "form": "defizitär", "polarity": "-0.4535", "pos": "JJ", "sense": "defizitärem,defizitäreres,defizitärerer,defizitärster,defizitäres,defizitärer,defizitärerem,defizitärstes,defizitäreren,defizitärsten,defizitären,defizitärstem,defizitärere,defizitäre,defizitärste" }, "deformieren": { "form": "deformieren", "polarity": "-0.0048", "pos": "VB", "sense": "deformiertet,deformierest,deformierte,deformierst,deformieret,deformier,deformiert,deformierten,deformiere" }, "degradieren": { "form": "degradieren", "polarity": "-0.0048", "pos": "VB", "sense": "degradiertest,degradierten,degradierte,degradierst,degradiertet,degradiere,degradiert,degradieret,degradierest" }, "deinstallieren": { "form": "deinstallieren", "polarity": "-0.0048", "pos": "VB", "sense": "deinstalliere,deinstallierst,deinstalliert,deinstallierest,deinstallieret,deinstallierte,deinstallierten,deinstalliertest,deinstalliertet" }, "deinstalliert": { "form": "deinstalliert", "polarity": "-0.0048", "pos": "JJ", "sense": "deinstallierterem,deinstalliertste,deinstallierteren,deinstalliertem,deinstalliertere,deinstallierte,deinstallierten,deinstallierter,deinstalliertes,deinstalliertestes,deinstalliertester,deinstallierterer,deinstallierteres,deinstalliertesten,deinstalliertestem" }, "dekadent": { "form": "dekadent", "polarity": "-0.1769", "pos": "JJ", "sense": "dekadenter,dekadentes,dekadentere,dekadenten,dekadentem,dekadenterer,dekadenteres,dekadenterem,dekadentesten,dekadentestem,dekadentestes,dekadente,dekadentester,dekadenteren,dekadenteste" }, "demütigen": { "form": "demütigen", "polarity": "-0.0048", "pos": "VB", "sense": "demütigest,demütiget,demütigst,demütigte,gedemütigt,demütigten,demütigtet,demütigt,demütige,demütigtest" }, "denkfaul": { "form": "denkfaul", "polarity": "-0.0048", "pos": "JJ", "sense": "denkfaulerem,denkfaulster,denkfaulstes,denkfauleren,denkfaulstem,denkfaulsten,denkfaulere,denkfaulste,denkfaulem,denkfaulen,denkfaule,denkfaules,denkfauleres,denkfauler,denkfaulerer" }, "depressiv": { "form": "depressiv", "polarity": "-0.4715", "pos": "JJ", "sense": "depressivster,depressivstes,depressivere,depressivstem,depressivsten,depressivem,depressive,depressiven,depressiver,depressives,depressiverem,depressiveren,depressiveres,depressiverer,depressivste" }, "desinteressiert": { "form": "desinteressiert", "polarity": "-0.0048", "pos": "JJ", "sense": "desinteressiertes,desinteressiertstes,desinteressierter,desinteressierten,desinteressiertem,desinteressiertere,desinteressiertesten,desinteressiertestem,desinteressierteren,desinteressierterem,desinteressiertester,desinteressierterer,desinteressierteres,desinteressierte,desinteressierteste" }, "desolat": { "form": "desolat", "polarity": "-0.0048", "pos": "JJ", "sense": "desolatesten,desolatestem,desolate,desolates,desolatere,desolatem,desolaten,desolateren,desolateres,desolater,desolaterer,desolateste,desolatestes,desolaterem,desolatester" }, "destruktiv": { "form": "destruktiv", "polarity": "-0.1936", "pos": "JJ", "sense": "destruktive,destruktivere,destruktiven,destruktivsten,destruktivem,destruktivstem,destruktiverer,destruktivste,destruktivstes,destruktivster,destruktiveres,destruktiveren,destruktives,destruktiver,destruktiverem" }, "dezimieren": { "form": "dezimieren", "polarity": "-0.0048", "pos": "VB", "sense": "dezimierte,dezimiertet,dezimiert,dezimierst,dezimiere,dezimierest,dezimieret,dezimiertest,dezimierten" }, "diffamieren": { "form": "diffamieren", "polarity": "-0.0048", "pos": "VB", "sense": "diffamiere,diffamierst,diffamiert,diffamierest,diffamieret,diffamierte,diffamiertest,diffamierten,diffamiertet" }, "diffizil": { "form": "diffizil", "polarity": "-0.0048", "pos": "JJ", "sense": "diffizilstes,diffizilste,diffizilster,diffizilerer,diffizilstem,diffizilsten,diffizileres,diffizilem,diffizilere,diffizilen,diffizileren,diffizilerem,diffiziles,diffiziler,diffizile" }, "diffus": { "form": "diffus", "polarity": "-0.331", "pos": "JJ", "sense": "diffuse,diffusestes,diffusester,diffusen,diffusem,diffusestem,diffuserem,diffuseren,diffuseste,diffuseres,diffusere,diffusesten,diffuser,diffuserer,diffuses" }, "diktatorisch": { "form": "diktatorisch", "polarity": "-0.0048", "pos": "JJ", "sense": "diktatorischster,diktatorischstes,diktatorischste,diktatorischere,diktatorischer,diktatorisches,diktatorischeren,diktatorischerem,diktatorische,diktatorischen,diktatorischerer,diktatorischem,diktatorischeres,diktatorischsten,diktatorischstem" }, "dilettantisch": { "form": "dilettantisch", "polarity": "-0.0048", "pos": "JJ", "sense": "dilettantischeren,dilettantisches,dilettantischer,dilettantischere,dilettantischerem,dilettantischste,dilettantischen,dilettantischem,dilettantischster,dilettantischstes,dilettantische,dilettantischsten,dilettantischstem,dilettantischeres,dilettantischerer" }, "diskreditieren": { "form": "diskreditieren", "polarity": "-0.323", "pos": "VB", "sense": "diskreditiertet,diskreditiertest,diskreditieret,diskreditiere,diskreditiert,diskreditierst,diskreditierte,diskreditierten,diskreditierest" }, "distanziert": { "form": "distanziert", "polarity": "-0.0048", "pos": "JJ", "sense": "distanziertere,distanzierter,distanziertes,distanziertestes,distanzierte,distanziertester,distanziertestem,distanziertesten,distanzierterer,distanzierteres,distanzierteren,distanzierten,distanzierterem,distanziertem,distanzierteste" }, "disziplinlos": { "form": "disziplinlos", "polarity": "-0.0048", "pos": "JJ", "sense": "disziplinloseste,disziplinlosester,disziplinlosestes,disziplinlose,disziplinloser,disziplinlosen,disziplinlosem,disziplinloserem,disziplinloses,disziplinlosere,disziplinloseren,disziplinloseres,disziplinloserer,disziplinlosesten,disziplinlosestem" }, "dominieren": { "form": "dominieren", "polarity": "-0.0048", "pos": "VB", "sense": "dominieret,dominierest,dominiertest,dominiertet,dominierte,dominiere,dominierten,dominiert,dominierst" }, "doof": { "form": "doof", "polarity": "-0.1562", "pos": "JJ", "sense": "dooferes,doofer,dooferer,doofster,doofstes,doofem,doofen,dooferen,dooferem,doofste,doofsten,doofe,doofere,doofes,doofstem" }, "dramatisch": { "form": "dramatisch", "polarity": "-0.3656", "pos": "JJ", "sense": "dramatischere,dramatischste,dramatischstem,dramatischsten,dramatischster,dramatischstes,dramatischerer,dramatische,dramatischeres,dramatischeren,dramatischer,dramatisches,dramatischerem,dramatischem,dramatischen" }, "drastisch": { "form": "drastisch", "polarity": "-0.351", "pos": "JJ", "sense": "drastischer,drastisches,drastische,drastischsten,drastischeres,drastischstem,drastischerer,drastischere,drastischeren,drastischerem,drastischste,drastischster,drastischstes,drastischem,drastischen" }, "dreckig": { "form": "dreckig", "polarity": "-0.016", "pos": "JJ", "sense": "dreckigste,dreckigster,dreckiges,dreckiger,dreckigeres,dreckigstes,dreckigen,dreckigerer,dreckigem,dreckigere,dreckigsten,dreckigerem,dreckige,dreckigeren,dreckigstem" }, "dreist": { "form": "dreist", "polarity": "-0.4457", "pos": "JJ", "sense": "dreistem,dreisten,dreiste,dreisterem,dreisteren,dreisteres,dreistes,dreister,dreisterer,dreisteste,dreistestem,dreistestes,dreistester,dreistesten,dreistere" }, "driften": { "form": "driften", "polarity": "-0.0048", "pos": "VB", "sense": "driftest,driftet,drift,gedriftet,driftetest,driftete,driftetet,drifteten,drifte" }, "drohen": { "form": "drohen", "polarity": "-0.3503", "pos": "VB", "sense": "droht,drohest,drohe,drohst,drohte,gedroht,drohtet,drohtest,drohet,drohten" }, "drosseln": { "form": "drosseln", "polarity": "-0.0048", "pos": "VB", "sense": "drossele,drossle,droßle,drosselt,drosslest,droßlest,drosslet,droßlet,drosselte,drosseltest,drosselten,drosseltet" }, "drängelnd": { "form": "drängelnd", "polarity": "-0.0048", "pos": "JJ", "sense": "drängelnde,drängelndem,drängelnden,drängelnder,drängelndes" }, "drängen": { "form": "drängen", "polarity": "-0.3516", "pos": "VB", "sense": "drängten,dränget,drängte,drängest,dränge,drängt,gedrängt,drängtet,drängst,drängtest" }, "dumm": { "form": "dumm", "polarity": "-0.5901", "pos": "JJ", "sense": "dumme,dümmerer,dümmeres,dümmere,dümmstes,dümmster,dümmsten,dümmeren,dümmstem,dümmerem,dümmste,dummen,dummem,dummes,dummer,dümmer" }, "dunkel": { "form": "dunkel", "polarity": "-0.0214", "pos": "JJ", "sense": "dunkle,dunkelstem,dunkelsten,dunklere,dunkelste,dunklerem,dunkles,dunkler,dunkleren,dunklem,dunkelster,dunklen,dunkleres,dunklerer,dunkelstes" }, "durchfallen": { "form": "durchfallen", "polarity": "-0.1801", "pos": "VB", "sense": "durchfalle,durchfällst,durchfällt,durchfallt,durchfallest,durchfallet,durchfiel,durchfielst,durchfielen,durchfielt,durchfielest,durchfielet" }, "dusselig": { "form": "dusselig", "polarity": "-0.0409", "pos": "JJ", "sense": "dusseliges,dusseligsten,dusseligstes,dusseligster,dusseligstem,dusseliger,dusseligeres,dusseligerer,dusseligerem,dusselige,dusseligeren,dusseligen,dusseligem,dusseligste,dusseligere" }, "dämlich": { "form": "dämlich", "polarity": "-0.048", "pos": "JJ", "sense": "dämlichste,dämlichere,dämlichen,dämliche,dämlicheren,dämliches,dämlicher,dämlicherem,dämlichster,dämlicheres,dämlicherer,dämlichstes,dämlichsten,dämlichem,dämlichstem" }, "dämpfen": { "form": "dämpfen", "polarity": "-0.0411", "pos": "VB", "sense": "dämpftest,dämpfte,dämpfst,dämpften,gedämpft,dämpft,dämpfest,dämpfet,dämpfe,dämpftet" }, "dürr": { "form": "dürr", "polarity": "-0.0048", "pos": "JJ", "sense": "dürres,dürrer,dürrem,dürre,dürren,dürrste,dürrerer,dürreres,dürrerem,dürrere,dürreren,dürrsten,dürrstem,dürrstes,dürrster" }, "düster": { "form": "düster", "polarity": "-0.0187", "pos": "JJ", "sense": "düsterste,düstererem,düstereres,düstereren,düstererer,düstersten,düsteren,düsterem,düsterster,düsterstes,düsterer,düsterere,düsterstem,düsteres,düstere" }, "egoistisch": { "form": "egoistisch", "polarity": "-0.3254", "pos": "JJ", "sense": "egoistischstem,egoistischsten,egoistischere,egoistischster,egoistischstes,egoistischerem,egoistischen,egoistischeren,egoistische,egoistischem,egoistischerer,egoistischeres,egoistischste,egoistisches,egoistischer" }, "ehebrechen": { "form": "ehebrechen", "polarity": "-0.3128", "pos": "VB", "sense": "ehezubrechen" }, "eigenartig": { "form": "eigenartig", "polarity": "-0.0048", "pos": "JJ", "sense": "eigenartigsten,eigenartigstem,eigenartigen,eigenartigeres,eigenartigem,eigenartige,eigenartigere,eigenartigerem,eigenartigeren,eigenartigste,eigenartigerer,eigenartigster,eigenartiges,eigenartiger,eigenartigstes" }, "einbehalten": { "form": "einbehalten", "polarity": "-0.0048", "pos": "VB", "sense": "einbehalte,einbehältst,einbehält,einbehaltet,einbehaltest,einbehielt,einbehieltest,einbehieltst,einbehielten,einbehieltet,einbehielte" }, "einbrechen": { "form": "einbrechen", "polarity": "-0.0048", "pos": "VB", "sense": "einbreche,einbrichst,einbricht,einbrecht,einbrechest,einbrechet,einbrach,einbrachst,einbrachen,einbracht,einbräche,einbrächest,einbrächst,einbrächen,einbrächet,einbrächt" }, "einfältig": { "form": "einfältig", "polarity": "-0.1858", "pos": "JJ", "sense": "einfältigster,einfältigstes,einfältigsten,einfältige,einfältigstem,einfältigerer,einfältigeres,einfältigen,einfältigem,einfältigere,einfältigste,einfältiger,einfältigerem,einfältigeren,einfältiges" }, "eingehen": { "form": "eingehen", "polarity": "-0.0048", "pos": "VB", "sense": "eingehe,eingehst,eingeht,eingehest,eingehet,einging,eingingst,eingingen,eingingt,eingingest,einginget,einzugehen,eingegangen" }, "eingeschränkt": { "form": "eingeschränkt", "polarity": "-0.0048", "pos": "JJ", "sense": "eingeschränkteste,eingeschränkteres,eingeschränktem,eingeschränkten,eingeschränkte,eingeschränktere,eingeschränkter,eingeschränktes,eingeschränkterer,eingeschränktestem,eingeschränktesten,eingeschränkterem,eingeschränkteren,eingeschränktester,eingeschränktestes" }, "einsam": { "form": "einsam", "polarity": "-0.1634", "pos": "JJ", "sense": "einsames,einsamer,einsameres,einsame,einsamstem,einsamsten,einsamster,einsamerem,einsameren,einsamstes,einsamerer,einsamere,einsamen,einsamste,einsamem" }, "einschlagen": { "form": "einschlagen", "polarity": "-0.0048", "pos": "VB", "sense": "einschlage,einschlägst,einschlägt,einschlagt,einschlagest,einschlaget,einschlug,einschlugst,einschlugen,einschlugt,einschlüge,einschlügest,einschlügst,einschlügen,einschlüget,einschlügt,einzuschlagen,eingeschlagen" }, "einschrumpfen": { "form": "einschrumpfen", "polarity": "-0.0048", "pos": "VB", "sense": "einschrumpftest,einschrumpfe,einschrumpften,einschrumpfte,einschrumpfst,einschrumpfest,einschrumpftet,eingeschrumpft,einschrumpft,einschrumpfet" }, "einschränken": { "form": "einschränken", "polarity": "-0.3327", "pos": "VB", "sense": "einschränkte,einschränkest,einschränke,einschränket,eingeschränkt,einschränkst,einschränktet,einschränktest,einschränkten,einschränkt" }, "einschüchtern": { "form": "einschüchtern", "polarity": "-0.0048", "pos": "VB", "sense": "einschüchterte,einschüchtere,einschüchterst,einschüchterten,einschüchteren,einschüchtertest,einschüchtert,einschüchtertet,eingeschüchtert" }, "einschüchternd": { "form": "einschüchternd", "polarity": "-0.0048", "pos": "JJ", "sense": "einschüchternde,einschüchterndem,einschüchternden,einschüchternder,einschüchterndes,einschüchterndere,einschüchternderem,einschüchternderen,einschüchternderer,einschüchternderes,einschüchterndste,einschüchterndstem,einschüchterndsten,einschüchterndster,einschüchterndstes" }, "einsinken": { "form": "einsinken", "polarity": "-0.0366", "pos": "VB", "sense": "einsinke,einsinkst,einsinkt,einsinkest,einsinket,einsank,einsankst,einsanken,einsankt,einsänke,einsänkest,einsänkst,einsänken,einsänket,einsänkt" }, "einstellen": { "form": "einstellen", "polarity": "-0.0048", "pos": "VB", "sense": "einstellte,einstellt,einstelle,einstelltet,einstelltest,einstellten,eigenstellt,einstellest,einstellet,einstellst" }, "einstürzen": { "form": "einstürzen", "polarity": "-0.0048", "pos": "VB", "sense": "einstürzest,einstürztest,einstürztet,einstürzt,eingestürzt,einstürzten,einstürzet,einstürzte,einstürze" }, "eintönig": { "form": "eintönig", "polarity": "-0.0378", "pos": "JJ", "sense": "eintönigeres,eintönigerer,eintönige,eintönigerem,eintönigeren,eintönigster,eintönigstes,eintöniges,eintöniger,eintönigsten,eintönigen,eintönigste,eintönigem,eintönigstem,eintönigere" }, "ekelerregend": { "form": "ekelerregend", "polarity": "-0.0413", "pos": "JJ", "sense": "ekelerregendem,ekelerregenden,ekelerregender,ekelerregenderem,ekelerregenderen,ekelerregendes,ekelerregendstes,ekelerregenderer,ekelerregendere,ekelerregenderes,ekelerregendste,ekelerregendstem,ekelerregendsten,ekelerregendster,ekelerregende" }, "ekelig": { "form": "ekelig", "polarity": "-0.0048", "pos": "JJ", "sense": "ekeliger,ekeligeres,ekeliges,ekeligstem,ekeligsten,ekeligerer,ekeligste,ekeligerem,ekeligeren,ekeligem,ekeligstes,ekeligen,ekeligster,ekelige,ekeligere" }, "eklatant": { "form": "eklatant", "polarity": "-0.0048", "pos": "JJ", "sense": "eklatanterem,eklatanteste,eklatante,eklatantere,eklatantem,eklatanten,eklatanteren,eklatanteres,eklatanter,eklatanterer,eklatantes,eklatantesten,eklatantestem,eklatantestes,eklatantester" }, "elend": { "form": "elend", "polarity": "-0.0519", "pos": "JJ", "sense": "elenden,elende,elendem,elendere,elendestem,elendesten,elendeste,elendester,elendes,elender,elenderes,elendestes,elenderer,elenderem,elenderen" }, "elendig": { "form": "elendig", "polarity": "-0.0048", "pos": "JJ", "sense": "elendigerem,elendigeren,elendiger,elendigste,elendigstem,elendigsten,elendigem,elendigerer,elendigen,elendigeres,elendigere,elendige,elendiges,elendigstes,elendigster" }, "empören": { "form": "empören", "polarity": "-0.0048", "pos": "VB", "sense": "empörten,empörest,empörst,empörtet,empörte,empöre,empört,empörtest,empöret" }, "energielos": { "form": "energielos", "polarity": "-0.3037", "pos": "JJ", "sense": "energieloserem,energieloseren,energieloserer,energieloseste,energielosestes,energieloseres,energieloses,energielosester,energieloser,energielosere,energielose,energielosesten,energielosen,energielosem,energielosestem" }, "engstirnig": { "form": "engstirnig", "polarity": "-0.3199", "pos": "JJ", "sense": "engstirnigste,engstirnigstem,engstirnigsten,engstirniges,engstirniger,engstirnigeren,engstirnigerem,engstirnigeres,engstirnige,engstirnigerer,engstirnigem,engstirnigen,engstirnigster,engstirnigere,engstirnigstes" }, "entbehrungsreich": { "form": "entbehrungsreich", "polarity": "-0.0048", "pos": "JJ", "sense": "entbehrungsreiche,entbehrungsreichem,entbehrungsreichen,entbehrungsreicher,entbehrungsreiches,entbehrungsreichere,entbehrungsreicherem,entbehrungsreicheren,entbehrungsreicherer,entbehrungsreicheres,entbehrungsreichste,entbehrungsreichstem,entbehrungsreichsten,entbehrungsreichster,entbehrungsreichstes" }, "entbinden": { "form": "entbinden", "polarity": "-0.0048", "pos": "VB", "sense": "entbinde,entbindest,entbindet,entband,entbandest,entbandst,entbanden,entbandet,entbände,entbändest,entbänden,entbändet,entbunden" }, "entfremden": { "form": "entfremden", "polarity": "-0.0048", "pos": "VB", "sense": "entfremdest,entfremdete,entfremdetet,entfremdeten,entfremdet,entfremdetest,entfremde" }, "entführen": { "form": "entführen", "polarity": "-0.0048", "pos": "VB", "sense": "entführte,entführst,entführe,entführtet,entführtest,entführet,entführten,entführt,entführest" }, "entgleiten": { "form": "entgleiten", "polarity": "-0.0048", "pos": "VB", "sense": "entgleite,entgleitest,entgleitet,entglitt,entglittest,entglitten,entglittet,entglitte" }, "enthaupten": { "form": "enthaupten", "polarity": "-0.0048", "pos": "VB", "sense": "enthaupte,enthauptetest,enthaupteten,enthauptetet,enthauptete,enthauptest,enthauptet" }, "entkräften": { "form": "entkräften", "polarity": "-0.0048", "pos": "VB", "sense": "entkräfte,entkräftest,entkräftet,entkräftete,entkräftetest,entkräfteten,entkräftetet" }, "entlassen": { "form": "entlassen", "polarity": "-0.0048", "pos": "VB", "sense": "entlasse,entlässt,entläßt,entlasst,entlaßt,entlassest,entlasset,entließ,entließest,entließt,entließen,entließe,entließet" }, "entmutigen": { "form": "entmutigen", "polarity": "-0.0048", "pos": "VB", "sense": "entmutiget,entmutigtet,entmutigtest,entmutigest,entmutige,entmutigt,entmutigten,entmutigte,entmutigst" }, "entnervt": { "form": "entnervt", "polarity": "-0.0048", "pos": "JJ", "sense": "entnervte,entnervterer,entnervteres,entnervterem,entnervteren,entnervtere,entnervtem,entnervten,entnervtestem,entnervtesten,entnervter,entnervtestes,entnervtes,entnervteste,entnervtester" }, "entrüsten": { "form": "entrüsten", "polarity": "-0.0048", "pos": "VB", "sense": "entrüste,entrüstest,entrüstet,entrüstete,entrüstetest,entrüsteten,entrüstetet" }, "entschwinden": { "form": "entschwinden", "polarity": "-0.1827", "pos": "VB", "sense": "entschwinde,entschwindest,entschwindet,entschwand,entschwandest,entschwandst,entschwanden,entschwandet,entschwände,entschwändest,entschwändet" }, "entsetzlich": { "form": "entsetzlich", "polarity": "-0.477", "pos": "JJ", "sense": "entsetzlichen,entsetzlichere,entsetzlichem,entsetzlichsten,entsetzlichstem,entsetzlicherer,entsetzlicheren,entsetzlicherem,entsetzlichste,entsetzlichster,entsetzlicheres,entsetzliche,entsetzliches,entsetzlicher,entsetzlichstes" }, "enttäuschen": { "form": "enttäuschen", "polarity": "-0.0586", "pos": "VB", "sense": "enttäusche,enttäuscht,enttäuschst,enttäuschten,enttäuschest,enttäuschtet,enttäuschtest,enttäuschte,enttäuschet" }, "enttäuschend": { "form": "enttäuschend", "polarity": "-0.0425", "pos": "JJ", "sense": "enttäuschende,enttäuschendem,enttäuschenden,enttäuschender,enttäuschendes,enttäuschendere,enttäuschenderem,enttäuschenderen,enttäuschenderer,enttäuschenderes,enttäuschendste,enttäuschendstem,enttäuschendsten,enttäuschendster,enttäuschendstes" }, "enttäuscht": { "form": "enttäuscht", "polarity": "-0.3129", "pos": "VB", "sense": "enttäuschtem,enttäuschten,enttäuschteren,enttäuschte,enttäuschterem,enttäuschteste,enttäuschtester,enttäuschtestes,enttäuschteres,enttäuschtestem,enttäuschtesten,enttäuschterer,enttäuschtere,enttäuschtes,enttäuschter" }, "entwürdigend": { "form": "entwürdigend", "polarity": "-0.3132", "pos": "JJ", "sense": "entwürdigende,entwürdigendem,entwürdigenden,entwürdigender,entwürdigendes,entwürdigendere,entwürdigenderem,entwürdigenderen,entwürdigenderer,entwürdigenderes,enttäuschendste,enttäuschendstem,enttäuschendsten,enttäuschendster,enttäuschendstes" }, "entziehen": { "form": "entziehen", "polarity": "-0.0048", "pos": "VB", "sense": "entziehe,entziehst,entzieht,entziehest,entziehet,entzog,entzogst,entzogen,entzogt,entzöge,entzögest,entzögst,entzögen,entzöget,entzögt" }, "erbittert": { "form": "erbittert", "polarity": "-0.0048", "pos": "VB", "sense": "erbittertem,erbitterten,erbitterte,erbittertste,erbittertere,erbitterter,erbittertstes,erbittertes,erbittertster,erbittertsten,erbitterteren,erbitterterem,erbittertstem,erbitterteres,erbitterterer" }, "erbost": { "form": "erbost", "polarity": "-0.3293", "pos": "JJ", "sense": "erbostestes,erbostester,erbostere,erbostesten,erbostestem,erbosten,erbosteste,erbostem,erboste,erbosteren,erbosterem,erboster,erbosterer,erbostes,erbosteres" }, "erbrechen": { "form": "erbrechen", "polarity": "-0.3308", "pos": "VB", "sense": "erbreche,erbrichst,erbricht,erbrecht,erbrechest,erbrechet,erbrach,erbrachst,erbrachen,erbracht,erbräche,erbrächest,erbrächst,erbrächen,erbrächet,erbrächt" }, "erbärmlich": { "form": "erbärmlich", "polarity": "-0.4796", "pos": "JJ", "sense": "erbärmlichstem,erbärmlichsten,erbärmlicherer,erbärmliche,erbärmlicheres,erbärmlichere,erbärmlicheren,erbärmlichstes,erbärmlichster,erbärmlicherem,erbärmlichste,erbärmlichen,erbärmlichem,erbärmliches,erbärmlicher" }, "erdrückend": { "form": "erdrückend", "polarity": "-0.0048", "pos": "JJ", "sense": "erdrückendstes,erdrückendster,erdrückenderem,erdrückenderen,erdrückenderer,erdrückenderes,erdrückendes,erdrückendsten,erdrückender,erdrückendere,erdrückendste,erdrückenden,erdrückendstem,erdrückendem,erdrückende" }, "ergaunern": { "form": "ergaunern", "polarity": "-0.0048", "pos": "VB", "sense": "ergaunere,ergaunertest,ergaunerten,ergaunert,ergaunertet,ergauneren,ergaunerst,ergaunerte" }, "ergebnislos": { "form": "ergebnislos", "polarity": "-0.0048", "pos": "JJ", "sense": "ergebnisloseres,ergebnisloserer,ergebnislosere,ergebnislose,ergebnislosestem,ergebnisloseste,ergebnisloserem,ergebnisloseren,ergebnislosester,ergebnisloses,ergebnislosestes,ergebnisloser,ergebnislosesten,ergebnislosen,ergebnislosem" }, "erleiden": { "form": "erleiden", "polarity": "-0.3494", "pos": "VB", "sense": "erleide,erleidest,erleidet,erlitt,erlittest,erlitten,erlittet,erlitte" }, "erliegen": { "form": "erliegen", "polarity": "-0.3296", "pos": "VB", "sense": "erliege,erliegst,erliegt,erliegest,erlieget,erlag,erlagst,erlagen,erlagt,erläge,erlägest,erlägst,erlägen,erläget,erlägt" }, "ermahnen": { "form": "ermahnen", "polarity": "-0.0048", "pos": "VB", "sense": "ermahnten,ermahnte,ermahnst,ermahnt,ermahntet,ermahnest,ermahne,ermahntest,ermahnet" }, "ermorden": { "form": "ermorden", "polarity": "-0.3292", "pos": "VB", "sense": "ermordtest,ermorde,ermordte,ermordet,ermordetet,ermordetest,ermordtet,ermordeten,ermordest,ermordete,ermordten" }, "ermüden": { "form": "ermüden", "polarity": "-0.0048", "pos": "VB", "sense": "ermüdte,ermüdtet,ermüdtest,ermüdetest,ermüdeten,ermüdetet,ermüdet,ermüdest,ermüde,ermüdete,ermüdten" }, "erniedrigen": { "form": "erniedrigen", "polarity": "-0.0048", "pos": "VB", "sense": "erniedrigt,erniedrigst,erniedrigte,erniedrige,erniedrigtet,erniedrigtest,erniedriget,erniedrigten,erniedrigest" }, "ernüchternd": { "form": "ernüchternd", "polarity": "-0.0048", "pos": "JJ", "sense": "ernüchternde,ernüchterndem,ernüchternden,ernüchternder,ernüchterndes,ernüchterndere,ernüchternderem,ernüchternderen,ernüchternderer,ernüchternderes,ernüchterndste,ernüchterndstem,ernüchterndsten,ernüchterndster,ernüchterndstes" }, "erpressen": { "form": "erpressen", "polarity": "-0.0048", "pos": "VB", "sense": "erpresset,erpresstest,erpresse,erpresst,erpresstet,erpresste,erpressest,erpressten" }, "erschießen": { "form": "erschießen", "polarity": "-0.3317", "pos": "VB", "sense": "erschieße,erschießt,erschießest,erschießet,erschoss,erschoß,erschossest,erschosst,erschoßt,erschossen,erschösse,erschössest,erschössen,erschösset" }, "erschlaffen": { "form": "erschlaffen", "polarity": "-0.0048", "pos": "VB", "sense": "erschlaffe,erschlafft,erschlafftest,erschlafftet,erschlaffet,erschlaffst,erschlafften,erschlaffte,erschlaffest" }, "erschlagen": { "form": "erschlagen", "polarity": "-0.3442", "pos": "VB", "sense": "erschlage,erschlägst,erschlägt,erschlagt,erschlagest,erschlaget,erschlug,erschlugst,erschlugen,erschlugt,erschlüge,erschlügest,erschlügst,erschlügen,erschlüget,erschlügt" }, "erschrecken": { "form": "erschrecken", "polarity": "-0.1812", "pos": "VB", "sense": "erschrecket,erschrecktet,erschrecke,erschrecktest,erschreckten,erschreckte,erschreckst,erschreckest,erschreckt" }, "erschreckend": { "form": "erschreckend", "polarity": "-0.0544", "pos": "JJ", "sense": "erschreckende,erschreckendem,erschreckenden,erschreckender,erschreckendes,erschreckendere,erschreckenderem,erschreckenderen,erschreckenderer,erschreckenderes,erschreckendste,erschreckendstem,erschreckendsten,erschreckendster,erschreckendstes" }, "erschweren": { "form": "erschweren", "polarity": "-0.4891", "pos": "VB", "sense": "erschwere,erschwertet,erschwertest,erschwert,erschwerte,erschwern,erschwerst,erschwerten" }, "erschöpfen": { "form": "erschöpfen", "polarity": "-0.0048", "pos": "VB", "sense": "erschöpften,erschöpfet,erschöpftest,erschöpftet,erschöpfte,erschöpfe,erschöpfst,erschöpfest,erschöpft" }, "erschöpft": { "form": "erschöpft", "polarity": "-0.0377", "pos": "VB", "sense": "erschöpftestem,erschöpften,erschöpftem,erschöpfteste,erschöpftesten,erschöpfte,erschöpftere,erschöpfteres,erschöpfter,erschöpfterer,erschöpftes,erschöpftester,erschöpftestes,erschöpfterem,erschöpfteren" }, "erschüttern": { "form": "erschüttern", "polarity": "-0.0048", "pos": "VB", "sense": "erschütterst,erschütterte,erschüttertet,erschüttertest,erschütteren,erschütterten,erschüttere,erschüttert" }, "erschütternd": { "form": "erschütternd", "polarity": "-0.0472", "pos": "JJ", "sense": "erschütternde,erschütterndem,erschütternden,erschütternder,erschütterndes,erschütterndere,erschütternderem,erschütternderen,erschütternderer,erschütternderes,erschütterndste,erschütterndstem,erschütterndsten,erschütterndster,erschütterndstes" }, "erschüttert": { "form": "erschüttert", "polarity": "-0.0048", "pos": "JJ", "sense": "erschütterte,erschüttertem,erschütterten,erschütterter,erschüttertest" }, "erstechen": { "form": "erstechen", "polarity": "-0.3078", "pos": "VB", "sense": "ersteche,erstichst,ersticht,erstecht,erstechest,erstechet,erstach,erstachst,erstachen,erstacht,erstäche,erstächest,erstächst,erstächen,erstächet,erstächt,erstochen" }, "ersticken": { "form": "ersticken", "polarity": "-0.3291", "pos": "VB", "sense": "ersticktet,ersticket,erstickst,ersticktest,erstickte,erstickten,ersticke,erstickest,erstickt" }, "ertrinken": { "form": "ertrinken", "polarity": "-0.0048", "pos": "VB", "sense": "ertrinke,ertrinkst,ertrinkt,ertrinkest,ertrinket,ertrank,ertrankst,ertranken,ertrankt,ertränke,ertränkest,ertränkst,ertränken,ertränket,ertränkt,ertrunken" }, "erwürgen": { "form": "erwürgen", "polarity": "-0.0048", "pos": "VB", "sense": "erwürgten,erwürgte,erwürgst,erwürgtet,erwürgtest,erwürgt,erwürget,erwürge,erwürgest" }, "erzürnt": { "form": "erzürnt", "polarity": "-0.3221", "pos": "VB", "sense": "erzürntestem,erzürnter,erzürntesten,erzürntere,erzürntes,erzürntem,erzürnten,erzürnteste,erzürnterem,erzürnteren,erzürntestes,erzürntester,erzürnterer,erzürnteres,erzürnte" }, "existenzbedrohend": { "form": "existenzbedrohend", "polarity": "-0.0048", "pos": "JJ", "sense": "existenzbedrohendere,existenzbedrohenderen,existenzbedrohenderem,existenzbedrohendem,existenzbedrohende,existenzbedrohendste,existenzbedrohendstem,existenzbedrohendsten,existenzbedrohendstes,existenzbedrohendster,existenzbedrohenderes,existenzbedrohenden,existenzbedrohenderer,existenzbedrohendes,existenzbedrohender" }, "explodieren": { "form": "explodieren", "polarity": "-0.0048", "pos": "VB", "sense": "explodierest,explodieret,explodiertest,explodierten,explodierst,explodiere,explodiert,explodiertet,explodierte" }, "fad": { "form": "fad", "polarity": "-0.0048", "pos": "JJ", "sense": "fade,fadstem,fadsten,fadster,fadere,fadstes,faderer,faderes,fadem,faden,faderem,fadste,faderen,fader,fades" }, "fadenscheinig": { "form": "fadenscheinig", "polarity": "-0.0048", "pos": "JJ", "sense": "fadenscheiniger,fadenscheinigem,fadenscheinigen,fadenscheinigster,fadenscheinigstes,fadenscheinigere,fadenscheinigerem,fadenscheinigstem,fadenscheinige,fadenscheinigste,fadenscheinigsten,fadenscheinigerer,fadenscheinigeres,fadenscheiniges,fadenscheinigeren" }, "fahrlässig": { "form": "fahrlässig", "polarity": "-0.3487", "pos": "JJ", "sense": "fahrlässiges,fahrlässiger,fahrlässige,fahrlässigem,fahrlässigerer,fahrlässigeres,fahrlässigeren,fahrlässigerem,fahrlässigen,fahrlässigste,fahrlässigstes,fahrlässigster,fahrlässigere,fahrlässigsten,fahrlässigstem" }, "fallen": { "form": "fallen", "polarity": "-0.2153", "pos": "VB", "sense": "falle,fällst,fällt,fallt,fallest,fallet,fiel,fielst,fielen,fielt,fiele,fielest,fielet,gefallen" }, "falsch": { "form": "falsch", "polarity": "-0.7618", "pos": "JJ", "sense": "falschen,falscher,falschere,falsches,falsche,falscheres,falschste,falschsten,falscherer,falschstem,falschstes,falschster,falscheren,falscherem,falschem" }, "farblos": { "form": "farblos", "polarity": "-0.0048", "pos": "JJ", "sense": "farblose,farblosen,farbloserer,farblosem,farbloseren,farbloseste,farbloserem,farblosere,farblosestes,farblosester,farbloseres,farbloses,farblosesten,farbloser,farblosestem" }, "faschistisch": { "form": "faschistisch", "polarity": "-0.4477", "pos": "JJ", "sense": "faschistischere,faschistischsten,faschistischstem,faschistischster,faschistischstes,faschistischste,faschistische,faschistisches,faschistischer,faschistischem,faschistischerer,faschistischen,faschistischeres,faschistischerem,faschistischeren" }, "fatal": { "form": "fatal", "polarity": "-0.345", "pos": "JJ", "sense": "fatalster,fataleren,fatalstes,fatalerem,fatalerer,fatales,fataleres,fatalere,fataler,fatale,fatalste,fatalen,fatalem,fatalsten,fatalstem" }, "faul": { "form": "faul", "polarity": "-0.035", "pos": "JJ", "sense": "faulerer,fauleres,fauleren,faulste,faulstem,faulerem,faulsten,faules,faulster,faulen,faulstes,faulem,fauler,faule,faulere" }, "fehlen": { "form": "fehlen", "polarity": "-0.5365", "pos": "VB", "sense": "fehltet,fehlest,gefehlt,fehlt,fehlst,fehlte,fehle,fehltest,fehlten,fehlet" }, "fehleranfällig": { "form": "fehleranfällig", "polarity": "-0.0048", "pos": "JJ", "sense": "fehleranfällige,fehleranfälligem,fehleranfälligen,fehleranfälliger,fehleranfälliges,fehleranfälligere,fehleranfälligerem,fehleranfälligeren,fehleranfälligerer,fehleranfälligeres,fehleranfälligste,fehleranfälligstem,fehleranfälligsten,fehleranfälligster,fehleranfälligstes" }, "fehlerhaft": { "form": "fehlerhaft", "polarity": "-0.3581", "pos": "JJ", "sense": "fehlerhaftere,fehlerhafterem,fehlerhaftem,fehlerhafteren,fehlerhafteres,fehlerhafterer,fehlerhaften,fehlerhaftestem,fehlerhafte,fehlerhaftes,fehlerhafteste,fehlerhafter,fehlerhaftesten,fehlerhaftester,fehlerhaftestes" }, "feige": { "form": "feige", "polarity": "-0.4649", "pos": "JJ", "sense": "feigeren,feigerem,feigste,feigeres,feigerer,feig,feigsten,feigere,feigen,feigem,feigstem,feigster,feigstes,feiges,feiger" }, "feindlich": { "form": "feindlich", "polarity": "-0.4723", "pos": "JJ", "sense": "feindlichere,feindlichste,feindlichstem,feindlichsten,feindliches,feindlichstes,feindlichster,feindlicherem,feindliche,feindlicher,feindlichen,feindlichem,feindlicherer,feindlicheres,feindlicheren" }, "feindselig": { "form": "feindselig", "polarity": "-0.4579", "pos": "JJ", "sense": "feindseligste,feindseligerer,feindseligeres,feindseligere,feindseliger,feindseligsten,feindseligstem,feindseliges,feindseligstes,feindseligen,feindseligerem,feindseligster,feindseligem,feindseligeren,feindselige" }, "fesseln": { "form": "fesseln", "polarity": "-0.0048", "pos": "VB", "sense": "fessele,fessle,feßle,fesselst,fesselt,fesslest,feßlest,fesslet,feßlet,fesselte,fesseltest,fesselten,fesseltet" }, "feuern": { "form": "feuern", "polarity": "-0.0048", "pos": "VB", "sense": "gefeuert,feueren,feuerte,feuertet,feuerst,feuere,feuert,feuertest,feuerten" }, "fies": { "form": "fies", "polarity": "-0.305", "pos": "JJ", "sense": "fiesesten,fieses,fieser,fiesestem,fiesem,fieseste,fiesen,fiese,fieserem,fieseren,fieseres,fieserer,fiesestes,fiesere,fiesester" }, "finster": { "form": "finster", "polarity": "-0.0515", "pos": "JJ", "sense": "finstrer,finsterem,finstereren,finstrere,finstererem,finsteren,finstrerer,finstere,finstreres,finsteres,finsterer,finsterstes,finstereres,finsterste,finstreren,finstrerem,finstererer,finsterstem,finstersten,finsterere,finsterster" }, "flach": { "form": "flach", "polarity": "-0.0048", "pos": "JJ", "sense": "flachster,flachstes,flachsten,flachstem,flacherer,flacheres,flache,flachere,flaches,flachste,flacher,flacheren,flachem,flachen,flacherem" }, "flau": { "form": "flau", "polarity": "-0.0048", "pos": "JJ", "sense": "flausten,flauerer,flaueres,flauere,flaustem,flaueren,flaustes,flauster,flauestes,flauest,flauester,flaues,flauen,flauerem,flaue,flauem,flaueste,flauer,flauste,flauestem,flauesten" }, "flüchtend": { "form": "flüchtend", "polarity": "-0.0048", "pos": "JJ", "sense": "flüchtende,flüchtendem,flüchtenden,flüchtender,flüchtendes" }, "flüchtig": { "form": "flüchtig", "polarity": "-0.0048", "pos": "JJ", "sense": "flüchtigster,flüchtigstes,flüchtigem,flüchtigsten,flüchtigstem,flüchtige,flüchtigeren,flüchtigerem,flüchtigere,flüchtigeres,flüchtigerer,flüchtigen,flüchtiges,flüchtigste,flüchtiger" }, "folgenschwer": { "form": "folgenschwer", "polarity": "-0.0048", "pos": "JJ", "sense": "folgenschwererem,folgenschwereren,folgenschwerster,folgenschwerstem,folgenschwersten,folgenschwerstes,folgenschwere,folgenschweres,folgenschwerste,folgenschwerer,folgenschweren,folgenschwerem,folgenschwereres,folgenschwererer,folgenschwerere" }, "folgewidrig": { "form": "folgewidrig", "polarity": "-0.0048", "pos": "JJ", "sense": "folgewidrige,folgewidrigere,folgewidrigerer,folgewidrigeres,folgewidrigem,folgewidrigstem,folgewidrigsten,folgewidrigen,folgewidrigste,folgewidrigerem,folgewidrigster,folgewidrigeren,folgewidrigstes,folgewidriges,folgewidriger" }, "fragil": { "form": "fragil", "polarity": "-0.0422", "pos": "JJ", "sense": "fragilen,fragilem,fragilste,fragiles,fragiler,fragile,fragilerer,fragilstem,fragilsten,fragilere,fragileren,fragilerem,fragilster,fragileres,fragilstes" }, "fraglich": { "form": "fraglich", "polarity": "-0.0576", "pos": "JJ", "sense": "fragliche,fraglichste,fraglicher,fragliches,fraglicheren,fraglichstes,fraglicherem,fraglichster,fraglicheres,fraglicherer,fraglichere,fraglichsten,fraglichstem,fraglichen,fraglichem" }, "fragwürdig": { "form": "fragwürdig", "polarity": "-0.4858", "pos": "JJ", "sense": "fragwürdiges,fragwürdiger,fragwürdigen,fragwürdigstem,fragwürdigsten,fragwürdigstes,fragwürdigerem,fragwürdigeren,fragwürdigster,fragwürdigste,fragwürdigeres,fragwürdigerer,fragwürdigere,fragwürdigem,fragwürdige" }, "frech": { "form": "frech", "polarity": "-0.0048", "pos": "JJ", "sense": "frechem,frechen,freches,frecher,frecherer,frechstem,frecheres,freche,frechstes,frechere,frechster,frecherem,frechste,frechsten,frecheren" }, "fremd": { "form": "fremd", "polarity": "-0.4939", "pos": "JJ", "sense": "fremdestes,fremdeste,fremdester,fremderer,fremderes,fremdesten,fremdestem,fremderen,fremder,fremde,fremdere,fremdes,fremderem,fremdem,fremden" }, "fremdartig": { "form": "fremdartig", "polarity": "-0.0419", "pos": "JJ", "sense": "fremdartigste,fremdartigerem,fremdartigeren,fremdartigstes,fremdartigeres,fremdartigere,fremdartiges,fremdartiger,fremdartigem,fremdartige,fremdartigen,fremdartigerer,fremdartigster,fremdartigsten,fremdartigstem" }, "freudlos": { "form": "freudlos", "polarity": "-0.0048", "pos": "JJ", "sense": "freudloserem,freudloseres,freudloseren,freudloserer,freudloseste,freudlosere,freudlosestes,freudlosen,freudlosem,freudloser,freudlosester,freudloses,freudlosestem,freudlosesten,freudlose" }, "frivol": { "form": "frivol", "polarity": "-0.0412", "pos": "JJ", "sense": "frivolste,frivolstem,frivoler,frivolerer,frivoleres,frivole,frivoles,frivolerem,frivolen,frivolem,frivoleren,frivolsten,frivolster,frivolstes,frivolere" }, "fruchtlos": { "form": "fruchtlos", "polarity": "-0.0048", "pos": "JJ", "sense": "fruchtloseren,fruchtlosem,fruchtlosen,fruchtloseres,fruchtloserer,fruchtlose,fruchtloser,fruchtloses,fruchtloseste,fruchtlosere,fruchtlosestem,fruchtlosesten,fruchtlosestes,fruchtlosester,fruchtloserem" }, "frustrieren": { "form": "frustrieren", "polarity": "-0.0372", "pos": "VB", "sense": "frustriertet,frustriere,frustrieret,frustrierst,frustriert,frustrierte,frustrierest,frustriertest,frustrierten" }, "frustrierend": { "form": "frustrierend", "polarity": "-0.0048", "pos": "JJ", "sense": "frustrierende,frustrierendem,frustrierenden,frustrierender,frustrierendes,frustrierendere,frustrierenderem,frustrierenderen,frustrierenderer,frustrierenderes,frustrierendste,frustrierendstem,frustrierendsten,frustrierendster,frustrierendstes" }, "frustriert": { "form": "frustriert", "polarity": "-0.3244", "pos": "JJ", "sense": "frustriertester,frustriertes,frustriertestes,frustriertestem,frustriertesten,frustrierter,frustrierte,frustrierteren,frustrierterem,frustrierteste,frustrierteres,frustrierterer,frustriertere,frustriertem,frustrierten" }, "fuchsteufelswild": { "form": "fuchsteufelswild", "polarity": "-0.0048", "pos": "JJ", "sense": "fuchsteufelswilder,fuchsteufelswilderes,fuchsteufelswildes,fuchsteufelswildestem,fuchsteufelswildesten,fuchsteufelswilde,fuchsteufelswildere,fuchsteufelswildestes,fuchsteufelswildeste,fuchsteufelswildester,fuchsteufelswilderen,fuchsteufelswilderem,fuchsteufelswilderer,fuchsteufelswildem,fuchsteufelswilden" }, "furchtbar": { "form": "furchtbar", "polarity": "-0.3042", "pos": "JJ", "sense": "furchtbareren,furchtbarerem,furchtbaren,furchtbares,furchtbarer,furchtbarster,furchtbarstes,furchtbare,furchtbarstem,furchtbarsten,furchtbarem,furchtbarere,furchtbareres,furchtbarste,furchtbarerer" }, "furchterregend": { "form": "furchterregend", "polarity": "-0.1778", "pos": "JJ", "sense": "furchterregendsten,furchterregendstem,furchterregendster,furchterregendstes,furchterregendere,furchterregendste,furchterregendem,furchterregenden,furchterregende,furchterregendes,furchterregenderen,furchterregenderem,furchterregender,furchterregenderes,furchterregenderer" }, "fälschen": { "form": "fälschen", "polarity": "-0.0048", "pos": "VB", "sense": "fälsche,fälschst,fälscht,fälschest,fälschet,fälschte,fälschtest,fälschten,fälschtet,gefälscht" }, "fürchten": { "form": "fürchten", "polarity": "-0.3545", "pos": "VB", "sense": "fürchtest,gefürchtet,fürchteten,fürchte,fürchtten,fürchtet,fürchtete,fürchtetest,fürchtetet" }, "fürchterlich": { "form": "fürchterlich", "polarity": "-0.3363", "pos": "JJ", "sense": "fürchterlicher,fürchterlichster,fürchterlichem,fürchterlichstes,fürchterlichen,fürchterlichere,fürchterliche,fürchterlicheren,fürchterlichste,fürchterlicheres,fürchterlicherer,fürchterlichsten,fürchterlichstem,fürchterliches,fürchterlicherem" }, "gallig": { "form": "gallig", "polarity": "-0.3005", "pos": "JJ", "sense": "galligerem,galligeren,galligere,gallige,galligste,galligsten,galliges,galliger,galligstem,galligster,galligstes,galligem,galligeres,galligen,galligerer" }, "gammelig": { "form": "gammelig", "polarity": "-0.0344", "pos": "JJ", "sense": "gammeliges,gammeliger,gammeligeres,gammeligerer,gammeligen,gammeligem,gammeligeren,gammeligerem,gammeligste,gammelige,gammeligere,gammeligster,gammeligstes,gammeligsten,gammeligstem" }, "gammeln": { "form": "gammeln", "polarity": "-0.0411", "pos": "VB", "sense": "gammel,gammeltet,gegammelt,gammeltest,gammelen,gammele,gammelst,gammelte,gammelten,gammle,gammelt" }, "gammlig": { "form": "gammlig", "polarity": "-0.0048", "pos": "JJ", "sense": "gammlige,gammligem,gammligen,gammliger,gammliges,gammligere,gammligerem,gammligeren,gammligerer,gammligeres,gammliste,gammlistem,gammlisten,gammlister,gammlistes" }, "garstig": { "form": "garstig", "polarity": "-0.0425", "pos": "JJ", "sense": "garstige,garstigsten,garstigere,garstigstem,garstigste,garstigster,garstigeres,garstigstes,garstigerer,garstigeren,garstigerem,garstiges,garstiger,garstigem,garstigen" }, "geblitzt": { "form": "geblitzt", "polarity": "-0.0435", "pos": "JJ", "sense": "geblitzte,geblitztem,geblitzten,geblitzter,geblitztes,geblitztere,geblitzterem,geblitzteren,geblitzterer,geblitzteres" }, "gebrechlich": { "form": "gebrechlich", "polarity": "-0.0048", "pos": "JJ", "sense": "gebrechliche,gebrechlichstem,gebrechlichsten,gebrechlichster,gebrechlichstes,gebrechlicherem,gebrechlichem,gebrechlichere,gebrechlichen,gebrechlichste,gebrechlicheren,gebrechliches,gebrechlicherer,gebrechlicheres,gebrechlicher" }, "gedankenlos": { "form": "gedankenlos", "polarity": "-0.0048", "pos": "JJ", "sense": "gedankenlosem,gedankenloseste,gedankenloses,gedankenlosesten,gedankenloser,gedankenlosestes,gedankenlosester,gedankenlosen,gedankenloserem,gedankenloseren,gedankenlosestem,gedankenlosere,gedankenloserer,gedankenloseres,gedankenlose" }, "gedrängt": { "form": "gedrängt", "polarity": "-0.0048", "pos": "JJ", "sense": "gedrängtestem,gedrängtesten,gedrängtere,gedrängter,gedrängtes,gedrängteren,gedrängten,gedrängterem,gedrängtest,gedrängte,gedrängterer,gedrängtem,gedrängteres,gedrängtester,gedrängteste,gedrängtestes" }, "gefährden": { "form": "gefährden", "polarity": "-0.5006", "pos": "VB", "sense": "gefährdte,gefährdtest,gefährdetest,gefährdeten,gefährdetet,gefährde,gefährdete,gefährdest,gefährdet" }, "gefährlich": { "form": "gefährlich", "polarity": "-0.6366", "pos": "JJ", "sense": "gefährlicher,gefährlicherer,gefährliches,gefährlicheres,gefährlichem,gefährlichen,gefährlichste,gefährliche,gefährlichstem,gefährlichsten,gefährlicheren,gefährlichster,gefährlichere,gefährlicherem,gefährlichstes" }, "gehandicapt": { "form": "gehandicapt", "polarity": "-0.0048", "pos": "JJ", "sense": "gehandicaptem,gehandicapten,gehandicapter,gehandicaptes,gehandicapterer,gehandicaptestes,gehandicapteres,gehandicaptester,gehandicapte,gehandicaptesten,gehandicapteste,gehandicaptere,gehandicaptestem,gehandicapterem,gehandicapteren" }, "gehässig": { "form": "gehässig", "polarity": "-0.1821", "pos": "JJ", "sense": "gehässigeren,gehässigere,gehässigerem,gehässigstem,gehässigsten,gehässigste,gehässigster,gehässigstes,gehässige,gehässigen,gehässigeres,gehässigem,gehässigerer,gehässiger,gehässiges" }, "geisteskrank": { "form": "geisteskrank", "polarity": "-0.0048", "pos": "JJ", "sense": "geisteskrankere,geisteskrankster,geisteskrankeres,geisteskrankes,geisteskranker,geisteskranke,geisteskrankste,geisteskrankstes,geisteskrankerem,geisteskrankeren,geisteskranksten,geisteskranken,geisteskrankstem,geisteskrankem,geisteskrankerer" }, "geistlos": { "form": "geistlos", "polarity": "-0.0048", "pos": "JJ", "sense": "geistlosem,geistlosen,geistlosestem,geistlosesten,geistlosere,geistlosester,geistlose,geistloserer,geistloseres,geistlosestes,geistloseren,geistloseste,geistloserem,geistloses,geistloser" }, "gekränkt": { "form": "gekränkt", "polarity": "-0.453", "pos": "JJ", "sense": "gekränkteren,gekränkte,gekränkterem,gekränkter,gekränktester,gekränktes,gekränkten,gekränktestes,gekränktem,gekränktere,gekränkteres,gekränkterer,gekränktesten,gekränkteste,gekränktestem" }, "gelähmt": { "form": "gelähmt", "polarity": "-0.3308", "pos": "JJ", "sense": "gelähmter,gelähmtes,gelähmterem,gelähmtem,gelähmteren,gelähmten,gelähmtere,gelähmteste,gelähmte,gelähmtestes,gelähmterer,gelähmtester,gelähmtestem,gelähmtesten,gelähmteres" }, "gemein": { "form": "gemein", "polarity": "-0.7203", "pos": "JJ", "sense": "gemeinstem,gemeinsten,gemeinstes,gemeinster,gemeinere,gemeine,gemeinste,gemeineren,gemeines,gemeiner,gemeinerem,gemeineres,gemeinerer,gemeinem,gemeinen" }, "genervt": { "form": "genervt", "polarity": "-0.0237", "pos": "JJ", "sense": "genervtesten,genervteste,genervtestem,genervtestes,genervtester,genervte,genervtere,genervtes,genervter,genervterem,genervteren,genervten,genervtem,genervterer,genervteres" }, "gering": { "form": "gering", "polarity": "-0.6621", "pos": "JJ", "sense": "geringes,geringer,geringerer,geringstem,geringeres,geringen,geringsten,geringem,geringste,geringeren,geringstes,geringster,geringerem,geringere,geringe" }, "geringwertig": { "form": "geringwertig", "polarity": "-0.0048", "pos": "JJ", "sense": "geringwertigerer,geringwertigeres,geringwertigeren,geringwertigerem,geringwertigste,geringwertigster,geringwertigstes,geringwertigen,geringwertigem,geringwertige,geringwertigsten,geringwertiges,geringwertiger,geringwertigere,geringwertigstem" }, "geschmacklos": { "form": "geschmacklos", "polarity": "-0.3212", "pos": "JJ", "sense": "geschmackloses,geschmacklosere,geschmacklose,geschmacklosem,geschmacklosen,geschmackloseste,geschmackloser,geschmackloserem,geschmackloseren,geschmacklosestes,geschmackloserer,geschmackloseres,geschmacklosester,geschmacklosestem,geschmacklosesten" }, "gestresst": { "form": "gestresst", "polarity": "-0.3128", "pos": "JJ", "sense": "gestresste,gestresstem,gestressten,gestresster,gestresstes,gestresstere,gestressterem,gestressteren,gestressterer,gestressteres,gestressteste,gestresstestem,gestresstesten,gestresstester,gestresstestes" }, "gewaltsam": { "form": "gewaltsam", "polarity": "-0.0048", "pos": "JJ", "sense": "gewaltsamer,gewaltsamstem,gewaltsamsten,gewaltsames,gewaltsamere,gewaltsamste,gewaltsamen,gewaltsamster,gewaltsamstes,gewaltsamem,gewaltsame,gewaltsameres,gewaltsamerer,gewaltsameren,gewaltsamerem" }, "gewalttätig": { "form": "gewalttätig", "polarity": "-0.3409", "pos": "JJ", "sense": "gewalttätigster,gewalttätigstes,gewalttätigerem,gewalttätigerer,gewalttätigeres,gewalttätigen,gewalttätigem,gewalttätigeren,gewalttätiger,gewalttätigere,gewalttätige,gewalttätiges,gewalttätigsten,gewalttätigste,gewalttätigstem" }, "geärgert": { "form": "geärgert", "polarity": "-0.1846", "pos": "JJ", "sense": "geärgerte,geärgertem,geärgerten,geärgerter,geärgertes,geärgertere,geärgerterem,geärgerteren,geärgerterer,geärgerteres,geärgertste,geärgertstem,geärgertsten,geärgertster,geärgertstes" }, "giftig": { "form": "giftig", "polarity": "-0.3378", "pos": "JJ", "sense": "giftigste,giftiger,giftiges,giftigem,giftigen,giftigere,giftigerem,giftigstem,giftigeren,giftigstes,giftigeres,giftigster,giftigerer,giftigsten,giftige" }, "glanzlos": { "form": "glanzlos", "polarity": "-0.3133", "pos": "JJ", "sense": "glanzlosere,glanzlosen,glanzloseres,glanzlosem,glanzloserer,glanzloses,glanzloser,glanzloseste,glanzlose,glanzloseren,glanzloserem,glanzlosesten,glanzlosestem,glanzlosestes,glanzlosester" }, "gleichgültig": { "form": "gleichgültig", "polarity": "-0.3436", "pos": "JJ", "sense": "gleichgültigstes,gleichgültigeres,gleichgültigster,gleichgültigerer,gleichgültigstem,gleichgültigsten,gleichgültigere,gleichgültigeren,gleichgültigste,gleichgültigerem,gleichgültige,gleichgültiger,gleichgültiges,gleichgültigem,gleichgültigen" }, "glücklos": { "form": "glücklos", "polarity": "-0.3147", "pos": "JJ", "sense": "glücklose,glücklosesten,glückloser,glückloses,glücklosestem,glücklosen,glücklosem,glücklosere,glückloserem,glückloseste,glückloseren,glücklosestes,glücklosester,glückloseres,glückloserer" }, "gnadenlos": { "form": "gnadenlos", "polarity": "-0.6033", "pos": "JJ", "sense": "gnadenlosester,gnadenlosestes,gnadenlosesten,gnadenlosestem,gnadenlose,gnadenloser,gnadenloses,gnadenloseres,gnadenlosere,gnadenloseste,gnadenloserer,gnadenlosen,gnadenloserem,gnadenlosem,gnadenloseren" }, "grau": { "form": "grau", "polarity": "-0.336", "pos": "JJ", "sense": "grauem,grauste,graustem,graueren,grausten,grauerem,graustes,grauster,graues,grauer,grauere,grauestem,graueres,grauerer,grauen,graue,grauest,grauesten,grauester,grauestes,graueste" }, "grauen": { "form": "grauen", "polarity": "-0.0048", "pos": "VB", "sense": "grauest,graue,graut,grauten,grautest,grauet,gegraut,grautet,graute,graust" }, "grauenhaft": { "form": "grauenhaft", "polarity": "-0.184", "pos": "JJ", "sense": "grauenhaften,grauenhafteres,grauenhaftere,grauenhafterer,grauenhaftestem,grauenhafter,grauenhaftes,grauenhafte,grauenhafterem,grauenhaftem,grauenhafteren,grauenhafteste,grauenhaftesten,grauenhaftestes,grauenhaftester" }, "grauenvoll": { "form": "grauenvoll", "polarity": "-0.3238", "pos": "JJ", "sense": "grauenvolles,grauenvoller,grauenvollen,grauenvollstes,grauenvollem,grauenvollere,grauenvollster,grauenvolleres,grauenvolle,grauenvollsten,grauenvollstem,grauenvollerer,grauenvollste,grauenvolleren,grauenvollerem" }, "grausam": { "form": "grausam", "polarity": "-0.625", "pos": "JJ", "sense": "grausameren,grausamen,grausamem,grausamerem,grausames,grausamer,grausamere,grausamerer,grausameres,grausame,grausamsten,grausamstem,grausamstes,grausamster,grausamste" }, "grausig": { "form": "grausig", "polarity": "-0.1777", "pos": "JJ", "sense": "grausigstem,grausigsten,grausiges,grausigeren,grausigeres,grausigerer,grausigste,grausigstes,grausigster,grausigen,grausigere,grausigem,grausige,grausiger,grausigerem" }, "grenzdebil": { "form": "grenzdebil", "polarity": "-0.0048", "pos": "JJ", "sense": "grenzdebile,grenzdebilem,grenzdebilen,grenzdebiler,grenzdebiles,grenzdebilere,grenzdebilerem,grenzdebileren,grenzdebilerer,grenzdebileres,grenzdebilste,grenzdebilstem,grenzdebilsten,grenzdebilster,grenzdebilstes" }, "grimmig": { "form": "grimmig", "polarity": "-0.3295", "pos": "JJ", "sense": "grimmigen,grimmigem,grimmige,grimmiger,grimmiges,grimmigere,grimmigstes,grimmigster,grimmigstem,grimmigeren,grimmigerem,grimmigsten,grimmigeres,grimmigste,grimmigerer" }, "grob": { "form": "grob", "polarity": "-0.3495", "pos": "JJ", "sense": "gröbster,gröbstes,gröbsten,gröbstem,grobe,gröbere,gröberes,gröberer,gröbste,gröber,gröberen,gröberem,grobem,groben,grober,grobes" }, "groggy": { "form": "groggy", "polarity": "-0.0048", "pos": "JJ", "sense": "" }, "grotesk": { "form": "grotesk", "polarity": "-0.3318", "pos": "JJ", "sense": "groteskeres,groteskem,grotesken,groteskesten,groteskerem,groteskeren,groteskeste,grotesker,groteskes,groteskestem,groteskester,groteskestes,groteskere,groteskerer,groteske" }, "grottenschlecht": { "form": "grottenschlecht", "polarity": "-0.3089", "pos": "JJ", "sense": "grottenschlechte,grottenschlechtem,grottenschlechten,grottenschlechter,grottenschlechtes,grottenschlechtere,grottenschlechterem,grottenschlechteren,grottenschlechterer,grottenschlechteres,grottenschlechteste,grottenschlechtestem,grottenschlechtesten,grottenschlechtester,grottenschlechtestes" }, "grottenübel": { "form": "grottenübel", "polarity": "-0.0048", "pos": "JJ", "sense": "grottenüblem,grottenüblen,grottenübler,grottenübles,grottenüblere,grottenüblerem,grottenübleren,grottenüblerer,grottenübleres,grottenübelste,grottenübelstem,grottenübelsten,grottenübelster,grottenübelstes" }, "gruselig": { "form": "gruselig", "polarity": "-0.0048", "pos": "JJ", "sense": "gruseligere,gruseligerem,gruselige,gruseligeren,gruseligem,gruseligen,gruseligstem,gruseligsten,gruseligeres,gruseligerer,gruseliger,gruseligster,gruseliges,gruseligste,gruseligstes" }, "grässlich": { "form": "grässlich", "polarity": "-0.0395", "pos": "JJ", "sense": "grässliche,grässlichem,grässlichen,grässlicher,grässliches,grässlichere,grässlicherem,grässlicheren,grässlicherer,grässlicheres,grässlichste,grässlichstem,grässlichsten,grässlichster,grässlichstes" }, "gräßlich": { "form": "gräßlich", "polarity": "-0.4529", "pos": "JJ", "sense": "gräßlicher,gräßliches,gräßlichem,gräßlichen,gräßliche,gräßlicheres,gräßlicherer,gräßlicheren,gräßlichstes,gräßlichster,gräßlicherem,gräßlichstem,gräßlichsten,gräßlichere,gräßlichste" }, "haarig": { "form": "haarig", "polarity": "-0.0351", "pos": "JJ", "sense": "haarigere,haarige,haariger,haarigeren,haarigstes,haarigerem,haarigster,haariges,haarigen,haarigstem,haarigem,haarigsten,haarigste,haarigerer,haarigeres" }, "haarsträubend": { "form": "haarsträubend", "polarity": "-0.4637", "pos": "JJ", "sense": "haarsträubendster,haarsträubenderer,haarsträubendstem,haarsträubendsten,haarsträubenderes,haarsträubendste,haarsträubenderen,haarsträubenderem,haarsträubendem,haarsträubenden,haarsträubendere,haarsträubendstes,haarsträubende,haarsträubendes,haarsträubender" }, "habgierig": { "form": "habgierig", "polarity": "-0.3059", "pos": "JJ", "sense": "habgierigsten,habgierigem,habgierigen,habgierigerem,habgierigster,habgierigeren,habgierigstes,habgierigstem,habgierigere,habgierigeres,habgierigerer,habgieriges,habgieriger,habgierigste,habgierige" }, "halbfertig": { "form": "halbfertig", "polarity": "-0.0048", "pos": "JJ", "sense": "halbfertigste,halbfertigen,halbfertigem,halbfertiges,halbfertiger,halbfertigerem,halbfertigsten,halbfertigere,halbfertigstes,halbfertigster,halbfertigeren,halbfertigeres,halbfertige,halbfertigerer,halbfertigstem" }, "happig": { "form": "happig", "polarity": "-0.0256", "pos": "JJ", "sense": "happiges,happiger,happigste,happigen,happigerer,happigeres,happigeren,happigerem,happigere,happigem,happigstem,happigsten,happigster,happigstes,happige" }, "harsch": { "form": "harsch", "polarity": "-0.0048", "pos": "JJ", "sense": "harschstes,harschster,harschestem,harscheste,harschsten,harschstem,harschere,harscheres,harschem,harsche,harscherer,harschste,harschester,harschestes,harscher,harsches,harschesten,harschest,harschen,harscherem,harscheren" }, "hart": { "form": "hart", "polarity": "-0.1483", "pos": "JJ", "sense": "hartes,harter,härtere,härtester,härter,härtestes,hartem,härteste,härtestem,härtesten,harten,harte,härterer,härteres,härteren,härterem" }, "hartnäckig": { "form": "hartnäckig", "polarity": "0.0040", "pos": "JJ", "sense": "hartnäckigstes,hartnäckigster,hartnäckigste,hartnäckigerem,hartnäckigstem,hartnäckigsten,hartnäckigeren,hartnäckiges,hartnäckiger,hartnäckigere,hartnäckigen,hartnäckigem,hartnäckigeres,hartnäckigerer,hartnäckige" }, "hassen": { "form": "hassen", "polarity": "-0.054", "pos": "VB", "sense": "hasstet,gehasst,hasstest,hasse,hasset,hassest,hasst,hassten,hasste" }, "heftig": { "form": "heftig", "polarity": "-0.1819", "pos": "JJ", "sense": "heftige,heftigste,heftigeren,heftigerem,heftigster,heftigem,heftigen,heftigsten,heftigere,heftigstem,heftiger,heftiges,heftigerer,heftigstes,heftigeres" }, "heikel": { "form": "heikel", "polarity": "-0.0048", "pos": "JJ", "sense": "heikelstes,heikelster,heikelsten,heikelste,heikler,heikles,heiklere,heikleres,heikle,heikelstem,heiklerer,heiklem,heiklen,heiklerem,heikleren" }, "heillos": { "form": "heillos", "polarity": "-0.0048", "pos": "JJ", "sense": "heilloser,heilloses,heillosem,heillosen,heilloseste,heillosesten,heillosestem,heillosere,heillose,heilloserem,heillosester,heilloseren,heillosestes,heilloseres,heilloserer" }, "heimsuchen": { "form": "heimsuchen", "polarity": "-0.3228", "pos": "VB", "sense": "heimsuchtest,heimsuchten,heimgesucht,heimsuchte,heimsucht,heimsuchst,heimsuchtet,heimsuchet,heimsuchest,heimsuche" }, "heimtückisch": { "form": "heimtückisch", "polarity": "-0.3241", "pos": "JJ", "sense": "heimtückischen,heimtückischem,heimtückischere,heimtückisches,heimtückischer,heimtückischeren,heimtückische,heimtückischerem,heimtückischeres,heimtückischerer,heimtückischstes,heimtückischster,heimtückischste,heimtückischstem,heimtückischsten" }, "heimzahlen": { "form": "heimzahlen", "polarity": "-0.0371", "pos": "VB", "sense": "heimzahlte,heimzahlst,heimgezahlt,heimzahltet,heimzahltest,heimzahlest,heimzahlten,heimzahle,heimzahlt,heimzahlet" }, "hektisch": { "form": "hektisch", "polarity": "-0.0396", "pos": "JJ", "sense": "hektischste,hektischeres,hektischem,hektischsten,hektischen,hektischstem,hektischeren,hektischere,hektischerem,hektisches,hektischer,hektischerer,hektischster,hektischstes,hektische" }, "hemmen": { "form": "hemmen", "polarity": "-0.1953", "pos": "VB", "sense": "hemmest,gehemmt,hemmtest,hemmst,hemme,hemmten,hemmet,hemmte,hemmt,hemmtet" }, "herabsetzen": { "form": "herabsetzen", "polarity": "-0.3199", "pos": "VB", "sense": "herabsetzest,herabgesetzt,herabsetzten,herabsetze,herabsetzt,herabsetztet,herabsetztest,herabsetzet,herabsetzte" }, "herausfordern": { "form": "herausfordern", "polarity": "-0.0048", "pos": "VB", "sense": "herausgefordert,herausfordertest,herausforderst,herausforderen,herausforderte,herausfordertet,herausforderten,herausfordere,herausfordert" }, "herrisch": { "form": "herrisch", "polarity": "-0.0426", "pos": "JJ", "sense": "herrischstes,herrischem,herrischster,herrischen,herrischere,herrischsten,herrischer,herrisches,herrischstem,herrischerem,herrischeren,herrische,herrischste,herrischeres,herrischerer" }, "herunter": { "form": "herunter", "polarity": "-0.0048", "pos": "RB", "sense": "" }, "heruntermachen": { "form": "heruntermachen", "polarity": "-0.0048", "pos": "VB", "sense": "heruntermachten,heruntermachet,heruntermache,heruntermachtet,heruntermachest,heruntermachte,heruntermachst,heruntermacht,heruntermachtest,heruntergemacht" }, "herzlos": { "form": "herzlos", "polarity": "-0.3157", "pos": "JJ", "sense": "herzlosere,herzloses,herzloser,herzloseste,herzlosen,herzlose,herzlosem,herzloseres,herzlosestes,herzlosester,herzloserer,herzloserem,herzloseren,herzlosestem,herzlosesten" }, "heucheln": { "form": "heucheln", "polarity": "-0.0048", "pos": "VB", "sense": "geheuchelt,heucheltest,heuchelst,heuchelte,heucheltet,heuchle,heuchelt,heuchele,heuchelen,heuchel,heuchelten" }, "heuchlerisch": { "form": "heuchlerisch", "polarity": "-0.4544", "pos": "JJ", "sense": "heuchlerischer,heuchlerisches,heuchlerischstem,heuchlerischsten,heuchlerische,heuchlerischem,heuchlerischstes,heuchlerischen,heuchlerischster,heuchlerischere,heuchlerischerer,heuchlerischeres,heuchlerischeren,heuchlerischerem,heuchlerischste" }, "hilflos": { "form": "hilflos", "polarity": "-0.4827", "pos": "JJ", "sense": "hilfloserer,hilfloseste,hilflose,hilfloserem,hilfloseren,hilflosem,hilflosen,hilflosere,hilflosestes,hilfloses,hilflosester,hilfloser,hilflosesten,hilflosestem,hilfloseres" }, "hinfällig": { "form": "hinfällig", "polarity": "-0.3336", "pos": "JJ", "sense": "hinfälligste,hinfälligeres,hinfälligere,hinfälligerer,hinfälligsten,hinfälligstem,hinfälligster,hinfällige,hinfälliges,hinfälliger,hinfälligstes,hinfälligerem,hinfälligen,hinfälligeren,hinfälligem" }, "hinterlistig": { "form": "hinterlistig", "polarity": "-0.3187", "pos": "JJ", "sense": "hinterlistigere,hinterlistigerem,hinterlistigeren,hinterlistigerer,hinterlistigeres,hinterlistigstem,hinterlistigsten,hinterlistigen,hinterlistigem,hinterlistiges,hinterlistigste,hinterlistigster,hinterlistiger,hinterlistigstes,hinterlistige" }, "hochtrabend": { "form": "hochtrabend", "polarity": "-0.3086", "pos": "JJ", "sense": "hochtrabendste,hochtrabenderes,hochtrabenderer,hochtrabenderen,hochtrabenderem,hochtrabendem,hochtrabenden,hochtrabendster,hochtrabendstes,hochtrabender,hochtrabendstem,hochtrabendsten,hochtrabendes,hochtrabende,hochtrabendere" }, "hoffnungslos": { "form": "hoffnungslos", "polarity": "-0.3412", "pos": "JJ", "sense": "hoffnungsloseste,hoffnungslosen,hoffnungslosem,hoffnungslose,hoffnungsloserer,hoffnungslosestem,hoffnungslosesten,hoffnungsloseres,hoffnungsloseren,hoffnungslosester,hoffnungsloserem,hoffnungslosestes,hoffnungslosere,hoffnungsloses,hoffnungsloser" }, "hungern": { "form": "hungern", "polarity": "-0.0565", "pos": "VB", "sense": "hungertet,hungerte,gehungert,hungerst,hungerten,hungeren,hungertest,hungert,hungere" }, "hungrig": { "form": "hungrig", "polarity": "-0.0048", "pos": "JJ", "sense": "hungrigere,hungrigerer,hungrigeres,hungrigeren,hungriges,hungrigerem,hungrige,hungrigstes,hungrigster,hungrigen,hungrigsten,hungrigem,hungrigste,hungrigstem,hungriger" }, "hysterisch": { "form": "hysterisch", "polarity": "-0.0465", "pos": "JJ", "sense": "hysterischsten,hysterischster,hysterischstes,hysterischere,hysterischstem,hysterische,hysterisches,hysterischer,hysterischeres,hysterischerer,hysterischste,hysterischen,hysterischem,hysterischeren,hysterischerem" }, "hämisch": { "form": "hämisch", "polarity": "-0.3198", "pos": "JJ", "sense": "hämischstes,hämischster,hämischere,hämischsten,hämischstem,hämisches,hämischer,hämischem,hämischen,hämischste,hämischeren,hämischerem,hämischerer,hämische,hämischeres" }, "hässlich": { "form": "hässlich", "polarity": "-0.4387", "pos": "JJ", "sense": "hässliche,hässlichem,hässlichen,hässlicher,hässliches,hässlichere,hässlicherem,hässlicheren,hässlicherer,hässlicheres,hässlichste,hässlichstem,hässlichsten,hässlichster,hässlichstes" }, "häßlich": { "form": "häßlich", "polarity": "-0.4387", "pos": "JJ", "sense": "häßliche,häßlichem,häßlichen,häßlicher,häßliches,häßlichere,häßlicherem,häßlicheren,häßlicherer,häßlicheres,häßlichste,häßlichstem,häßlichsten,häßlichster,häßlichstes" }, "höhnisch": { "form": "höhnisch", "polarity": "-0.0525", "pos": "JJ", "sense": "höhnischsten,höhnischste,höhnischstem,höhnische,höhnischer,höhnisches,höhnischeren,höhnischerem,höhnischerer,höhnischeres,höhnischen,höhnischere,höhnischster,höhnischstes,höhnischem" }, "idiotisch": { "form": "idiotisch", "polarity": "-0.0048", "pos": "JJ", "sense": "idiotischsten,idiotischste,idiotischstem,idiotischer,idiotischen,idiotische,idiotischem,idiotischerem,idiotischere,idiotisches,idiotischeres,idiotischerer,idiotischstes,idiotischster,idiotischeren" }, "illegal": { "form": "illegal", "polarity": "-0.3479", "pos": "JJ", "sense": "illegaler,illegales,illegalsten,illegalstes,illegalster,illegaleres,illegalerer,illegalstem,illegaleren,illegalste,illegalerem,illegale,illegalere,illegalen,illegalem" }, "illoyal": { "form": "illoyal", "polarity": "-0.0048", "pos": "JJ", "sense": "illoyalem,illoyalen,illoyalstes,illoyaleren,illoyalster,illoyalerem,illoyalsten,illoyalstem,illoyales,illoyale,illoyalere,illoyaler,illoyalerer,illoyaleres,illoyalste" }, "immobil": { "form": "immobil", "polarity": "-0.0048", "pos": "JJ", "sense": "immobile,immobilerer,immobileres,immobilere,immobilerem,immobileren,immobilen,immobiler,immobiles,immobilste,immobilstem,immobilsten,immobilster,immobilstes,immobilem" }, "ineffizient": { "form": "ineffizient", "polarity": "-0.4602", "pos": "JJ", "sense": "ineffizientere,ineffizienterem,ineffizienteren,ineffizienteres,ineffizienterer,ineffizienten,ineffizientestes,ineffizientester,ineffiziente,ineffizienteste,ineffizientem,ineffizientestem,ineffizientesten,ineffizientes,ineffizienter" }, "infiltrieren": { "form": "infiltrieren", "polarity": "-0.0048", "pos": "VB", "sense": "infiltrierest,infiltrieret,infiltriertest,infiltrierten,infiltrierte,infiltrierst,infiltriere,infiltriertet,infiltriert" }, "inkompetent": { "form": "inkompetent", "polarity": "-0.5935", "pos": "JJ", "sense": "inkompetentesten,inkompetentestem,inkompetentestes,inkompetenteste,inkompetentester,inkompetente,inkompetentem,inkompetenten,inkompetenter,inkompetentes,inkompetentere,inkompetenteren,inkompetenterem,inkompetenterer,inkompetenteres" }, "inkonsequent": { "form": "inkonsequent", "polarity": "-0.1844", "pos": "JJ", "sense": "inkonsequenteres,inkonsequenterer,inkonsequentere,inkonsequentester,inkonsequenterem,inkonsequente,inkonsequentestes,inkonsequenteren,inkonsequentes,inkonsequenter,inkonsequentesten,inkonsequentem,inkonsequenten,inkonsequenteste,inkonsequentestem" }, "inkonsistent": { "form": "inkonsistent", "polarity": "-0.0048", "pos": "JJ", "sense": "inkonsistenteres,inkonsistentere,inkonsistenterer,inkonsistentestem,inkonsistenterem,inkonsistenteren,inkonsistentesten,inkonsistentem,inkonsistenteste,inkonsistentestes,inkonsistentester,inkonsistente,inkonsistenter,inkonsistentes,inkonsistenten" }, "inkorrekt": { "form": "inkorrekt", "polarity": "-0.3167", "pos": "JJ", "sense": "inkorrektestes,inkorrektester,inkorrektestem,inkorrekteste,inkorrektesten,inkorrekterer,inkorrekterem,inkorrekteren,inkorrekter,inkorrektere,inkorrektes,inkorrektem,inkorrekteres,inkorrekten,inkorrekte" }, "instabil": { "form": "instabil", "polarity": "-0.3352", "pos": "JJ", "sense": "instabiler,instabilen,instabilerem,instabilste,instabilem,instabiles,instabilstem,instabilsten,instabilstes,instabileren,instabilster,instabile,instabilere,instabilerer,instabileres" }, "intervenieren": { "form": "intervenieren", "polarity": "-0.0048", "pos": "VB", "sense": "interveniere,intervenierst,interveniert,intervenierest,intervenieret,intervenierte,interveniertest,intervenierten,interveniertet" }, "intolerant": { "form": "intolerant", "polarity": "-0.3215", "pos": "JJ", "sense": "intolerante,intoleranteste,intolerantester,intolerantes,intoleranteres,intolerantestes,intoleranterer,intolerantesten,intolerantestem,intoleranter,intolerantere,intoleranterem,intoleranten,intolerantem,intoleranteren" }, "irrational": { "form": "irrational", "polarity": "-0.3277", "pos": "JJ", "sense": "irrationalster,irrationalen,irrationalstes,irrationalsten,irrationaler,irrationales,irrationalstem,irrationalere,irrationaleren,irrationalerem,irrationale,irrationalste,irrationaleres,irrationalerer,irrationalem" }, "irre": { "form": "irre", "polarity": "-0.0048", "pos": "JJ", "sense": "irrerem,irrere,irreren,irreres,irrerer,irres,irrestes,irre,irrester,irrer,irreste,irrestem,irrem,irresten,irren" }, "irrsinnig": { "form": "irrsinnig", "polarity": "-0.0048", "pos": "JJ", "sense": "irrsinnigere,irrsinnigstes,irrsinnigeres,irrsinnigster,irrsinnigen,irrsinnigem,irrsinniges,irrsinnigstem,irrsinnigsten,irrsinnige,irrsinniger,irrsinnigerer,irrsinnigste,irrsinnigerem,irrsinnigeren" }, "isolieren": { "form": "isolieren", "polarity": "-0.0388", "pos": "VB", "sense": "isolierten,isolierst,isoliertest,isolierte,isolierest,isoliertet,isolieret,isoliere,isoliert" }, "jammern": { "form": "jammern", "polarity": "-0.0504", "pos": "VB", "sense": "jammert,jammere,jammertet,jammertest,jammerten,gejammert,jammeren,jammerte,jammerst" }, "jähzornig": { "form": "jähzornig", "polarity": "-0.3089", "pos": "JJ", "sense": "jähzornigstes,jähzornigeres,jähzorniger,jähzornigster,jähzorniges,jähzornigste,jähzornigem,jähzornige,jähzornigen,jähzornigerem,jähzornigstem,jähzornigsten,jähzornigeren,jähzornigerer,jähzornigere" }, "kacken": { "form": "kacken", "polarity": "-0.171", "pos": "VB", "sense": "kacke,kackst,kackt,kackest,kacket,kackte,kacktest,kackten,kacktet,gekackt" }, "kahl": { "form": "kahl", "polarity": "-0.0472", "pos": "JJ", "sense": "kahlste,kahleren,kahlerer,kahleres,kahlsten,kahler,kahlerem,kahlstem,kahlem,kahlen,kahle,kahlere,kahles,kahlstes,kahlster" }, "kalt": { "form": "kalt", "polarity": "-0.012", "pos": "JJ", "sense": "kälterer,kälteste,kälter,kälteres,kältester,kältestes,kälteren,kälterem,kaltem,kalten,kältesten,kältestem,kaltes,kältere,kalte,kalter" }, "kaltherzig": { "form": "kaltherzig", "polarity": "-0.0048", "pos": "JJ", "sense": "kaltherziger,kaltherzige,kaltherziges,kaltherzigen,kaltherzigem,kaltherzigstes,kaltherzigste,kaltherzigerem,kaltherzigeren,kaltherzigstem,kaltherzigsten,kaltherzigster,kaltherzigeres,kaltherzigere,kaltherzigerer" }, "kapitulieren": { "form": "kapitulieren", "polarity": "-0.0048", "pos": "VB", "sense": "kapituliere,kapitulierst,kapituliert,kapitulierest,kapitulieret,kapitulierte,kapituliertest,kapitulierten,kapituliertet" }, "kaputt": { "form": "kaputt", "polarity": "-0.1513", "pos": "JJ", "sense": "kaputtem,kaputten,kaputtestes,kaputtester,kaputteren,kaputtes,kaputter,kaputterem,kaputtesten,kaputterer,kaputtestem,kaputteres,kaputteste,kaputtere,kaputte" }, "katastrophal": { "form": "katastrophal", "polarity": "-0.4917", "pos": "JJ", "sense": "katastrophalere,katastrophales,katastrophale,katastrophalster,katastrophalerer,katastrophalstes,katastrophaler,katastrophaleres,katastrophalerem,katastrophaleren,katastrophalstem,katastrophalen,katastrophalsten,katastrophalem,katastrophalste" }, "keimig": { "form": "keimig", "polarity": "-0.0048", "pos": "JJ", "sense": "keimige,keimigem,keimigen,keimiger,keimiges,keimigere,keimigerem,keimigeren,keimigerer,keimigeres,keimigste,keimigstem,keimigsten,keimigster,keimigstes" }, "kentern": { "form": "kentern", "polarity": "-0.0048", "pos": "VB", "sense": "kenterte,kentere,kenterst,kenteren,gekentert,kentertet,kentert,kenterten,kentertest" }, "kippen": { "form": "kippen", "polarity": "-0.1814", "pos": "VB", "sense": "kippet,kippten,kipptest,kipptet,kippt,kippe,kippte,gekippt,kippst,kippest" }, "klagen": { "form": "klagen", "polarity": "-0.3565", "pos": "VB", "sense": "klagt,klage,klagten,klagtest,klagst,klaget,klagest,klagte,klagtet,geklagt" }, "klein": { "form": "klein", "polarity": "-0.2715", "pos": "JJ", "sense": "kleinerem,kleineren,kleiner,kleines,kleinen,kleine,kleinere,kleinem,kleinstes,kleinerer,kleinster,kleinstem,kleinsten,kleinste,kleineres" }, "klobig": { "form": "klobig", "polarity": "-0.0373", "pos": "JJ", "sense": "klobigere,klobigster,klobigstes,klobiges,klobigsten,klobigem,klobigeres,klobigen,klobigerer,klobigstem,klobiger,klobigeren,klobigerem,klobige,klobigste" }, "knapp": { "form": "knapp", "polarity": "-0.2036", "pos": "JJ", "sense": "knapperem,knapperen,knappere,knapperes,knapperer,knappem,knappste,knappstem,knappen,knappe,knappstes,knappes,knappster,knapper,knappsten" }, "knurrig": { "form": "knurrig", "polarity": "-0.0048", "pos": "JJ", "sense": "knurrigster,knurrigstes,knurrigste,knurrigsten,knurrigstem,knurrige,knurrigere,knurrigerem,knurrigeren,knurrigem,knurrigen,knurrigerer,knurrigeres,knurriger,knurriges" }, "kollabieren": { "form": "kollabieren", "polarity": "-0.0048", "pos": "VB", "sense": "kollabierten,kollabieret,kollabierest,kollabierst,kollabierte,kollabiere,kollabiertet,kollabiertest,kollabiert" }, "kollidieren": { "form": "kollidieren", "polarity": "-0.0048", "pos": "VB", "sense": "kollidiertet,kollidiertest,kollidiert,kollidiere,kollidierten,kollidierest,kollidieret,kollidierte,kollidierst" }, "kompliziert": { "form": "kompliziert", "polarity": "-0.0384", "pos": "JJ", "sense": "komplizierteren,kompliziertester,komplizierterem,komplizierter,komplizierterer,kompliziertere,komplizierteres,kompliziertestem,kompliziertesten,kompliziertes,komplizierte,komplizierteste,kompliziertem,kompliziertestes,komplizierten" }, "konfrontieren": { "form": "konfrontieren", "polarity": "-0.0048", "pos": "VB", "sense": "konfrontiertet,konfrontiertest,konfrontierten,konfrontierte,konfrontierest,konfrontierst,konfrontieret,konfrontiere,konfrontiert" }, "konkurrieren": { "form": "konkurrieren", "polarity": "-0.0048", "pos": "VB", "sense": "konkurriere,konkurrierst,konkurriert,konkurrierrest,konkurrieret,konkurrierte,konkurriertest,konkurrierten,konkurriertet" }, "kontraproduktiv": { "form": "kontraproduktiv", "polarity": "-0.6272", "pos": "JJ", "sense": "kontraproduktiveren,kontraproduktiverem,kontraproduktiverer,kontraproduktiveres,kontraproduktivste,kontraproduktivem,kontraproduktivstem,kontraproduktivsten,kontraproduktiven,kontraproduktivere,kontraproduktives,kontraproduktiver,kontraproduktivster,kontraproduktive,kontraproduktivstes" }, "kontrovers": { "form": "kontrovers", "polarity": "-0.3395", "pos": "JJ", "sense": "kontroverseste,kontroversen,kontroversere,kontroverseres,kontroverses,kontroverser,kontroverse,kontroverserer,kontroversestes,kontroversem,kontroversester,kontroversesten,kontroverseren,kontroversestem,kontroverserem" }, "korrupt": { "form": "korrupt", "polarity": "-0.4615", "pos": "JJ", "sense": "korrupterer,korruptes,korrupter,korrupteste,korrupterem,korrupteren,korruptester,korruptestes,korruptesten,korrupteres,korruptestem,korruptere,korruptem,korrupte,korrupten" }, "kostenintensiv": { "form": "kostenintensiv", "polarity": "-0.0048", "pos": "JJ", "sense": "kostenintensiverem,kostenintensiveren,kostenintensiven,kostenintensivem,kostenintensivere,kostenintensivsten,kostenintensives,kostenintensive,kostenintensivstem,kostenintensivster,kostenintensivstes,kostenintensiver,kostenintensiveres,kostenintensiverer,kostenintensivste" }, "kostspielig": { "form": "kostspielig", "polarity": "-0.0048", "pos": "JJ", "sense": "kostspieligeres,kostspieligerer,kostspieligeren,kostspieligerem,kostspielige,kostspieliges,kostspieliger,kostspieligstes,kostspieligster,kostspieligste,kostspieligsten,kostspieligstem,kostspieligem,kostspieligen,kostspieligere" }, "krachen": { "form": "krachen", "polarity": "-0.0048", "pos": "VB", "sense": "krachst,krachte,kracht,krache,krachten,krachest,krachtet,gekracht,krachtest,krachet" }, "kraftlos": { "form": "kraftlos", "polarity": "-0.3338", "pos": "JJ", "sense": "kraftlosesten,kraftlosestem,kraftlosestes,kraftloseres,kraftloserer,kraftlosester,kraftlosen,kraftloseren,kraftlosem,kraftloserem,kraftlose,kraftloser,kraftloses,kraftlosere,kraftloseste" }, "krank": { "form": "krank", "polarity": "-0.4694", "pos": "JJ", "sense": "kränkster,kranken,kränkstes,kranker,kränker,krankes,krankem,kränkere,kränkeren,kränkste,kränkstem,kränksten,kränkerer,kränkeres,kränkerem,kranke" }, "kranken": { "form": "kranken", "polarity": "-0.0048", "pos": "VB", "sense": "kranktest,krank,kranktet,kranket,krankest,krankte,kranke,krankt,krankten,gekrankt" }, "krass": { "form": "krass", "polarity": "-0.1603", "pos": "JJ", "sense": "krassere,krasse,krasseren,krasseres,krasserer,krassestes,krassem,krassester,krassen,krasserem,krasser,krasseste,krasses,krassestem,krassesten" }, "kriechen": { "form": "kriechen", "polarity": "-0.0048", "pos": "VB", "sense": "krieche,kriechst,kriecht,kriechest,kriechet,kroch,krochst,krochen,krocht,kröche,kröchest,kröchst,kröchen,kröchet,kröcht,gekrochen" }, "kriegerisch": { "form": "kriegerisch", "polarity": "-0.0048", "pos": "JJ", "sense": "kriegerische,kriegerischsten,kriegerischstem,kriegerischstes,kriegerischster,kriegerischeres,kriegerischerer,kriegerischerem,kriegerischere,kriegerischeren,kriegerischem,kriegerischen,kriegerischer,kriegerisches,kriegerischste" }, "kriminell": { "form": "kriminell", "polarity": "-0.4692", "pos": "JJ", "sense": "kriminellen,kriminellere,kriminellem,kriminellerer,kriminellerem,kriminelleren,kriminellster,kriminellstes,kriminellstem,kriminellsten,kriminelle,kriminellste,kriminelleres,kriminelles,krimineller" }, "kritisch": { "form": "kritisch", "polarity": "0.0040", "pos": "JJ", "sense": "kritischerer,kritischste,kritischeres,kritischsten,kritischstem,kritischster,kritischerem,kritischeren,kritischer,kritisches,kritischstes,kritischen,kritischem,kritischere,kritische" }, "kritisieren": { "form": "kritisieren", "polarity": "-0.3466", "pos": "VB", "sense": "kritisieret,kritisierest,kritisiertest,kritisierten,kritisierst,kritisiere,kritisiert,kritisierte,kritisiertet" }, "krude": { "form": "krude", "polarity": "-0.0048", "pos": "JJ", "sense": "kruden,kruder,kruderes,krudes,kruderer,krudeste,krudester,krudest,kruderen,krudestes,kruderem,krudesten,krudere,krudestem,krudem,krude" }, "krumm": { "form": "krumm", "polarity": "-0.0426", "pos": "JJ", "sense": "krummeren,krummere,krummsten,krummen,krummem,krummster,krummstes,krummerem,krummer,krummerer,krummeres,krummstem,krummes,krumme,krummste" }, "kränkeln": { "form": "kränkeln", "polarity": "-0.0048", "pos": "VB", "sense": "kränkelt,kränkel,kränkeltet,kränkelten,kränkelen,kränkele,kränkeltest,kränkle,kränkelte,kränkelst,gekränkelt" }, "kränken": { "form": "kränken", "polarity": "-0.0048", "pos": "VB", "sense": "kränktest,kränkte,kränkt,kränke,kränkst,kränkten,kränket,gekränkt,kränktet,kränkest" }, "kränklich": { "form": "kränklich", "polarity": "-0.3172", "pos": "JJ", "sense": "kränklichen,kränklichem,kränkliches,kränkliche,kränklicher,kränklichere,kränklichstes,kränklichster,kränklicheres,kränklichstem,kränklicherer,kränklichste,kränklichsten,kränklicheren,kränklicherem" }, "kurz": { "form": "kurz", "polarity": "-0.0048", "pos": "JJ", "sense": "kurzem,kurzen,kurzer,kürzeste,kürzere,kürzerer,kurze,kürzeres,kürzesten,kürzer,kürzestem,kürzerem,kürzeren,kurzes,kürzester,kürzestes" }, "kurzsichtig": { "form": "kurzsichtig", "polarity": "-0.4714", "pos": "JJ", "sense": "kurzsichtigster,kurzsichtigstes,kurzsichtigem,kurzsichtigerem,kurzsichtigeren,kurzsichtigen,kurzsichtigerer,kurzsichtigeres,kurzsichtiger,kurzsichtiges,kurzsichtigere,kurzsichtigste,kurzsichtigsten,kurzsichtige,kurzsichtigstem" }, "kämpfen": { "form": "kämpfen", "polarity": "-0.3467", "pos": "VB", "sense": "kämpftest,kämpfe,kämpfest,kämpftet,gekämpft,kämpften,kämpfet,kämpft,kämpfte,kämpfst" }, "kümmerlich": { "form": "kümmerlich", "polarity": "-0.3208", "pos": "JJ", "sense": "kümmerlichstes,kümmerlichster,kümmerlichstem,kümmerlichsten,kümmerlichste,kümmerlicherem,kümmerlicheren,kümmerliche,kümmerlichere,kümmerlicher,kümmerliches,kümmerlichen,kümmerlichem,kümmerlicherer,kümmerlicheres" }, "kündigen": { "form": "kündigen", "polarity": "-0.4947", "pos": "VB", "sense": "kündiget,kündigest,kündigtest,gekündigt,kündige,kündigten,kündigt,kündigst,kündigte,kündigtet" }, "kürzen": { "form": "kürzen", "polarity": "-0.3439", "pos": "VB", "sense": "kürzest,kürze,kürzten,kürzt,kürzte,gekürzt,kürztet,kürztest,kürzet" }, "labil": { "form": "labil", "polarity": "-0.326", "pos": "JJ", "sense": "labilsten,labilere,labilstem,labilster,labilstes,labiler,labilerem,labilste,labileren,labiles,labilem,labilen,labile,labilerer,labileres" }, "laienhaft": { "form": "laienhaft", "polarity": "-0.3169", "pos": "JJ", "sense": "laienhafteren,laienhaftes,laienhaftesten,laienhafter,laienhafterem,laienhaftestem,laienhafteres,laienhafterer,laienhaftester,laienhafteste,laienhafte,laienhaftere,laienhaftestes,laienhaftem,laienhaften" }, "lakonisch": { "form": "lakonisch", "polarity": "-0.0048", "pos": "JJ", "sense": "lakonisches,lakonischstem,lakonischsten,lakonischer,lakonischere,lakonischeres,lakonischerer,lakonischeren,lakonischerem,lakonischstes,lakonische,lakonischem,lakonischster,lakonischen,lakonischste" }, "langatmig": { "form": "langatmig", "polarity": "-0.0048", "pos": "JJ", "sense": "langatmiges,langatmige,langatmiger,langatmigerem,langatmigem,langatmigen,langatmigstem,langatmigeres,langatmigerer,langatmigsten,langatmigere,langatmigeren,langatmigste,langatmigstes,langatmigster" }, "langsam": { "form": "langsam", "polarity": "-0.0167", "pos": "JJ", "sense": "langsamsten,langsamste,langsamstem,langsamster,langsameren,langsame,langsamerem,langsamerer,langsames,langsamer,langsamem,langsamstes,langsameres,langsamere,langsamen" }, "langweilen": { "form": "langweilen", "polarity": "-0.0512", "pos": "VB", "sense": "langweile,gelangweilt,langweilten,langweilt,langweilte,langweilst,langweiltest,langweiltet,langweilet,langweilest" }, "langweilig": { "form": "langweilig", "polarity": "-0.0228", "pos": "JJ", "sense": "langweiliges,langweiligster,langweiliger,langweiligerer,langweiligstes,langweilige,langweiligerem,langweiligeren,langweiligere,langweiligeres,langweiligstem,langweiligsten,langweiligen,langweiligem,langweiligste" }, "lasch": { "form": "lasch", "polarity": "-0.0048", "pos": "JJ", "sense": "laschstes,laschster,lasches,lascher,lascheste,laschester,laschestes,laschere,laschestem,laschesten,lasche,lascheres,laschen,laschste,lascherer,laschest,laschem,laschsten,lascherem,laschstem,lascheren" }, "launisch": { "form": "launisch", "polarity": "-0.0409", "pos": "JJ", "sense": "launischstes,launischeren,launischste,launischerem,launischster,launischerer,launischeres,launischsten,launischere,launischstem,launische,launischem,launischen,launischer,launisches" }, "lebensfeindlich": { "form": "lebensfeindlich", "polarity": "-0.0048", "pos": "JJ", "sense": "lebensfeindlicherer,lebensfeindlichsten,lebensfeindlichstem,lebensfeindliche,lebensfeindlichster,lebensfeindlicheres,lebensfeindlichste,lebensfeindlicheren,lebensfeindlicherem,lebensfeindlichere,lebensfeindlichstes,lebensfeindlicher,lebensfeindliches,lebensfeindlichem,lebensfeindlichen" }, "lebensgefährlich": { "form": "lebensgefährlich", "polarity": "-0.0048", "pos": "JJ", "sense": "lebensgefährlicheren,lebensgefährlicherem,lebensgefährlichste,lebensgefährlichere,lebensgefährlichen,lebensgefährlichstes,lebensgefährlichem,lebensgefährlicher,lebensgefährliches,lebensgefährlichstem,lebensgefährlichsten,lebensgefährliche,lebensgefährlicheres,lebensgefährlichster,lebensgefährlicherer" }, "leblos": { "form": "leblos", "polarity": "-0.049", "pos": "JJ", "sense": "leblosestem,lebloses,lebloser,leblosen,leblosester,leblosestes,leblosesten,lebloseren,leblose,lebloserem,leblosere,lebloserer,lebloseres,leblosem,lebloseste" }, "leer": { "form": "leer", "polarity": "-0.025", "pos": "JJ", "sense": "leererem,leere,leereren,leererer,leereres,leerstem,leerem,leeren,leerstes,leerster,leerer,leersten,leeres,leerste,leerere" }, "leichtgläubig": { "form": "leichtgläubig", "polarity": "-0.0048", "pos": "JJ", "sense": "leichtgläubigere,leichtgläubigeren,leichtgläubigerem,leichtgläubigerer,leichtgläubigste,leichtgläubigeres,leichtgläubigstem,leichtgläubigsten,leichtgläubiger,leichtgläubiges,leichtgläubigen,leichtgläubigstes,leichtgläubigem,leichtgläubige,leichtgläubigster" }, "leichtsinnig": { "form": "leichtsinnig", "polarity": "-0.0048", "pos": "JJ", "sense": "leichtsinnige,leichtsinnigster,leichtsinnigstes,leichtsinnigeren,leichtsinnigerem,leichtsinnigerer,leichtsinnigste,leichtsinniges,leichtsinniger,leichtsinnigeres,leichtsinnigere,leichtsinnigem,leichtsinnigstem,leichtsinnigsten,leichtsinnigen" }, "leiden": { "form": "leiden", "polarity": "-0.1596", "pos": "VB", "sense": "leide,leidest,leidet,litt,littest,litten,littet,litte,gelitten" }, "leider": { "form": "leider", "polarity": "-0.4787", "pos": "JJ", "sense": "" }, "leistungsunfähig": { "form": "leistungsunfähig", "polarity": "-0.0048", "pos": "JJ", "sense": "leistungsunfähige,leistungsunfähigem,leistungsunfähigen,leistungsunfähiger,leistungsunfähiges,leistungsunfähigere,leistungsunfähigerem,leistungsunfähigeren,leistungsunfähigerer,leistungsunfähigeres,leistungsunfähigste,leistungsunfähigstem,leistungsunfähigsten,leistungsunfähigster,leistungsunfähigstes" }, "leugnen": { "form": "leugnen", "polarity": "-0.4862", "pos": "VB", "sense": "leugnetet,leugnest,leugnete,leugne,leugnetest,leugnet,leugneten,geleugnet" }, "lieblos": { "form": "lieblos", "polarity": "-0.4697", "pos": "JJ", "sense": "liebloserem,lieblose,liebloseren,lieblosestem,lieblosesten,liebloses,lieblosester,lieblosestes,liebloser,lieblosem,lieblosen,lieblosere,liebloseste,liebloserer,liebloseres" }, "liquidieren": { "form": "liquidieren", "polarity": "-0.0048", "pos": "VB", "sense": "liquidierten,liquidierest,liquidiere,liquidiert,liquidierte,liquidierst,liquidiertet,liquidiertest,liquidieret" }, "loswerden": { "form": "loswerden", "polarity": "-0.0048", "pos": "VB", "sense": "loswerde,loswirst,loswird,loswerdet,loswerdest,loswurde,loswurdest,loswurden,loswurdet,loswürde,loswürdest,loswürden,loswürdet,losgeworden,loszuwerden" }, "lächerlich": { "form": "lächerlich", "polarity": "-0.6435", "pos": "JJ", "sense": "lächerlichsten,lächerlichstem,lächerlicherem,lächerlicheren,lächerlichstes,lächerlichster,lächerliche,lächerlicherer,lächerlicheres,lächerlichste,lächerlicher,lächerliches,lächerlichem,lächerlichen,lächerlichere" }, "lädiert": { "form": "lädiert", "polarity": "-0.0366", "pos": "VB", "sense": "lädierte,lädiertere,lädiertes,lädiertem,lädierten,lädierteste,lädierter,lädierterem,lädiertester,lädierteren,lädiertestes,lädierteres,lädierterer,lädiertesten,lädiertestem" }, "lähmen": { "form": "lähmen", "polarity": "-0.0048", "pos": "VB", "sense": "lähmtest,lähmet,lähmt,lähmest,lähmten,lähmtet,lähmte,gelähmt,lähmst,lähme" }, "läppisch": { "form": "läppisch", "polarity": "-0.0048", "pos": "JJ", "sense": "läppischem,läppischeren,läppischerem,läppischere,läppischerer,läppischeres,läppischster,läppischen,läppischstes,läppische,läppischsten,läppischste,läppischstem,läppischer,läppisches" }, "lästig": { "form": "lästig", "polarity": "-0.1751", "pos": "JJ", "sense": "lästigen,lästigste,lästiger,lästigeren,lästigerem,lästiges,lästigsten,lästigstem,lästigster,lästigstes,lästigere,lästigeres,lästige,lästigerer,lästigem" }, "löschen": { "form": "löschen", "polarity": "-0.3654", "pos": "VB", "sense": "löschet,löschtest,löschten,löscht,löschte,lösche,löschst,gelöscht,löschtet,löschest" }, "lückenhaft": { "form": "lückenhaft", "polarity": "-0.4805", "pos": "JJ", "sense": "lückenhafteste,lückenhafte,lückenhafteren,lückenhafterem,lückenhaftere,lückenhaftester,lückenhaftestes,lückenhafterer,lückenhafteres,lückenhaftem,lückenhaften,lückenhaftes,lückenhaftesten,lückenhafter,lückenhaftestem" }, "machtlos": { "form": "machtlos", "polarity": "-0.3351", "pos": "JJ", "sense": "machtloserer,machtloserem,machtloseren,machtlosere,machtloses,machtloser,machtlosen,machtlosem,machtlosestem,machtlosesten,machtloseste,machtloseres,machtlosester,machtlosestes,machtlose" }, "mager": { "form": "mager", "polarity": "-0.0048", "pos": "JJ", "sense": "magerere,magerer,magereren,magererer,magererem,magereres,magerstem,magersten,magerste,magerster,magerst,magerstes,magere,mageres,mageren,magerem" }, "magern": { "form": "magern", "polarity": "-0.0048", "pos": "VB", "sense": "magere,magerst,magert,magerest,mageret,magerte,magertest,magerten,magertet,gemagert" }, "makelhaft": { "form": "makelhaft", "polarity": "-0.0048", "pos": "JJ", "sense": "makelhafte,makelhaftem,makelhaften,makelhafter,makelhaftes,makelhaftere,makelhafterem,makelhafteren,makelhafterer,makelhafteres,makelhafteste,makelhaftestem,makelhaftesten,makelhaftester,makelhaftestes" }, "mangelbehaftet": { "form": "mangelbehaftet", "polarity": "-0.0048", "pos": "JJ", "sense": "mangelbehaftete,mangelbehaftetem,mangelbehafteten,mangelbehafteter,mangelbehaftetes,mangelbehaftetere,mangelbehafteterem,mangelbehafteteren,mangelbehafteterer,mangelbehafteteres,mangelbehaftetste,mangelbehaftetstem,mangelbehaftetsten,mangelbehaftetster,mangelbehaftetstes" }, "mangelhaft": { "form": "mangelhaft", "polarity": "-0.3395", "pos": "JJ", "sense": "mangelhaftere,mangelhafteres,mangelhafterer,mangelhaftestem,mangelhaftesten,mangelhafteren,mangelhaftes,mangelhafter,mangelhafterem,mangelhaftester,mangelhaftestes,mangelhaften,mangelhafte,mangelhaftem,mangelhafteste" }, "mangeln": { "form": "mangeln", "polarity": "-0.0048", "pos": "VB", "sense": "mangelst,mangelen,mangele,mangelten,mangeltest,mangelte,mangeltet,mangle,mangelt,mangel,gemangelt" }, "manipulieren": { "form": "manipulieren", "polarity": "-0.0048", "pos": "VB", "sense": "manipuliere,manipulierst,manipuliert,manipulierest,manipulieret,manipulierte,manipuliertest,manipulierten,manipuliertet" }, "matt": { "form": "matt", "polarity": "-0.0048", "pos": "JJ", "sense": "matteres,matterer,matterem,matter,mattes,matteren,mattestem,mattesten,matte,mattester,matteste,mattestes,mattere,matten,mattem" }, "mau": { "form": "mau", "polarity": "-0.1914", "pos": "JJ", "sense": "maue,mauem,mauen,mauer,maues,mauster,mauestem,mauesten,mauere,mauste" }, "maßlos": { "form": "maßlos", "polarity": "-0.1965", "pos": "JJ", "sense": "maßloseres,maßlosere,maßloses,maßloser,maßlosestes,maßlosester,maßloseste,maßlosestem,maßlosesten,maßloserer,maßlose,maßloseren,maßlosem,maßloserem,maßlosen" }, "meckern": { "form": "meckern", "polarity": "-0.031", "pos": "VB", "sense": "meckerte,meckere,meckerst,meckeren,meckertet,gemeckert,meckertest,meckerten,meckert" }, "meiden": { "form": "meiden", "polarity": "-0.332", "pos": "VB", "sense": "meide,meidest,meidet,mied,miedest,miedst,mieden,miedet,miede,gemieden" }, "melancholisch": { "form": "melancholisch", "polarity": "-0.0048", "pos": "JJ", "sense": "melancholischste,melancholischstes,melancholischster,melancholischer,melancholischem,melancholischen,melancholischeren,melancholischstem,melancholischere,melancholisches,melancholischerer,melancholischeres,melancholischsten,melancholische,melancholischerem" }, "melodramatisch": { "form": "melodramatisch", "polarity": "-0.0048", "pos": "JJ", "sense": "melodramatischeres,melodramatischer,melodramatischerer,melodramatisches,melodramatischere,melodramatischen,melodramatischstem,melodramatischsten,melodramatischster,melodramatischstes,melodramatische,melodramatischste,melodramatischem,melodramatischerem,melodramatischeren" }, "menschenunwürdig": { "form": "menschenunwürdig", "polarity": "-0.3144", "pos": "JJ", "sense": "menschenunwürdigerer,menschenunwürdigeres,menschenunwürdigste,menschenunwürdigstes,menschenunwürdigsten,menschenunwürdigen,menschenunwürdigstem,menschenunwürdigem,menschenunwürdigster,menschenunwürdiger,menschenunwürdigeren,menschenunwürdigere,menschenunwürdigerem,menschenunwürdiges,menschenunwürdige" }, "merkwürdig": { "form": "merkwürdig", "polarity": "-0.0431", "pos": "JJ", "sense": "merkwürdige,merkwürdigere,merkwürdigstem,merkwürdiger,merkwürdigeren,merkwürdigerem,merkwürdiges,merkwürdigste,merkwürdigen,merkwürdigem,merkwürdigerer,merkwürdigeres,merkwürdigsten,merkwürdigstes,merkwürdigster" }, "mies": { "form": "mies", "polarity": "-0.0048", "pos": "JJ", "sense": "mieseste,miesere,mieses,mieserem,miesen,miesem,mieser,miese,miesestes,miesester,mieseren,miesesten,miesestem,mieserer,mieseres" }, "miesepetrig": { "form": "miesepetrig", "polarity": "-0.0048", "pos": "JJ", "sense": "miesepetrigster,miesepetrigere,miesepetriges,miesepetrigstes,miesepetriger,miesepetrigste,miesepetrigeres,miesepetrigerer,miesepetrigsten,miesepetrigeren,miesepetrigem,miesepetrigerem,miesepetrigen,miesepetrigstem,miesepetrige" }, "mindern": { "form": "mindern", "polarity": "-0.057", "pos": "VB", "sense": "minderen,mindertet,gemindert,minderst,minderten,minderte,mindertest,mindert,mindere" }, "minderwertig": { "form": "minderwertig", "polarity": "-0.613", "pos": "JJ", "sense": "minderwertiges,minderwertigster,minderwertiger,minderwertigstes,minderwertigstem,minderwertigsten,minderwertige,minderwertigen,minderwertigem,minderwertigerer,minderwertigeren,minderwertigerem,minderwertigere,minderwertigste,minderwertigeres" }, "miserabel": { "form": "miserabel", "polarity": "-0.2004", "pos": "JJ", "sense": "miserablen,miserabler,miserables,miserablerem,miserableren,miserablere,miserable,miserabelster,miserableres,miserabelste,miserabelstes,miserablerer,miserabelsten,miserabelstem,miserablem" }, "missachten": { "form": "missachten", "polarity": "-0.0048", "pos": "VB", "sense": "missachte,missachtest,missachtet,missachtete,missachtetest,missachteten,missachtetet" }, "mißachten": { "form": "mißachten", "polarity": "-0.0048", "pos": "VB", "sense": "mißachte,mißachtest,mißachtet,mißachtete,mißachtetest,mißachteten,mißachtetet" }, "missbrauchen": { "form": "missbrauchen", "polarity": "-0.0048", "pos": "VB", "sense": "missbrauche,missbrauchst,missbraucht,missbrauchest,missbrauchet,missbrauchte,missbrauchtest,missbrauchten,missbrauchtet" }, "mißbrauchen": { "form": "mißbrauchen", "polarity": "-0.0048", "pos": "VB", "sense": "mißbrauche,mißbrauchst,mißbraucht,mißbrauchet,mißbrauchest,mißbrauchte,mißbrauchtest,mißbrauchten,mißbrauchtet" }, "missfallen": { "form": "missfallen", "polarity": "-0.0048", "pos": "VB", "sense": "missfalle,missfällst,missfällt,missfallt,missfallest,missfallet,missfiel,missfielst,missfielen,missfielt,missfiele,missfielest,missfielet" }, "mißfallen": { "form": "mißfallen", "polarity": "-0.0048", "pos": "VB", "sense": "mißfalle,mißfällst,mißfällt,mißfallt,mißfallest,mißfallet,mißfiel,mißfielst,mißfielen,mißfielt,mißfiele,mißfielest,mißfielet" }, "missgelaunt": { "form": "missgelaunt", "polarity": "-0.297", "pos": "JJ", "sense": "missgelaunteren,missgelaunterem,missgelaunterer,missgelaunteres,missgelaunten,missgelauntem,missgelauntes,missgelaunter,missgelaunte,missgelaunteste,missgelauntester,missgelauntestem,missgelauntesten,missgelauntestes,missgelauntere" }, "missglücken": { "form": "missglücken", "polarity": "-0.0048", "pos": "VB", "sense": "missglücke,missglückst,missglückt,missglückest,missglücket,missglückte,missglücktest,missglückten,missglücktet" }, "mißglücken": { "form": "mißglücken", "polarity": "-0.0048", "pos": "VB", "sense": "mißglücke,mißglückst,mißglückt,mißglückest,mißglücket,mißglückte,mißglücktest,mißglückten,mißglücktet" }, "misslingen": { "form": "misslingen", "polarity": "-0.0048", "pos": "VB", "sense": "misslinge,misslingst,misslingt,misslingest,misslinget,misslang,misslangst,misslangen,misslangt,mislänge,misslängest,misslängst,misslängen,misslänget,misslängt,misslungen" }, "mißlingen": { "form": "mißlingen", "polarity": "-0.0048", "pos": "VB", "sense": "mißlinge,mißlingst,mißlingt,mißlingest,mißlinget,mißlang,mißlangst,mißlangen,mißlangt,mißlänge,mißlängest,mißlängst,mißlängen,mißlänget,mißlängt,mißlungen" }, "missmutig": { "form": "missmutig", "polarity": "-0.3166", "pos": "JJ", "sense": "missmutige,missmutigem,missmutigen,missmutiger,missmutiges,missmutigere,missmutigerem,missmutigeren,missmutigerer,missmutigeres,missmutigste,missmutigstem,missmutigsten,missmutigster,missmutigstes" }, "mißmutig": { "form": "mißmutig", "polarity": "-0.3166", "pos": "JJ", "sense": "mißmutige,mißmutigem,mißmutigen,mißmutiger,mißmutiges,mißmutigere,mißmutigerem,mißmutigeren,mißmutigerer,mißmutigeres,mißmutigste,mißmutigstem,mißmutigsten,mißmutigster,mißmutigstes" }, "missraten": { "form": "missraten", "polarity": "-0.0048", "pos": "JJ", "sense": "missratenes,missratensten,missratenstem,missratenere,missratener,missrateneres,missrateneren,missratenerer,missratene,missratenerem,missratenste,missratenstes,missratenem,missratenster,missratenen" }, "misstrauisch": { "form": "misstrauisch", "polarity": "-0.3333", "pos": "JJ", "sense": "misstrauische,misstrauischem,misstrauischen,misstrauischer,misstrauisches,misstrauischere,misstrauischerem,misstrauischeren,misstrauischerer,misstrauischeres,misstrauischste,misstrauischstem,misstrauischsten,misstrauischster,misstrauischstes" }, "missverstehen": { "form": "missverstehen", "polarity": "-0.3202", "pos": "VB", "sense": "missverstehe,missverstehst,missversteht,missverstehest,missverstehet,missverstand,missverstandest,missverstandst,missverstanden,missverstandet,missverstände,missverstünde,missverständest,missverstündest,missverständen,missverstünden,missverständet,missverstündet" }, "misten": { "form": "misten", "polarity": "-0.1723", "pos": "VB", "sense": "miste,mistest,mistet,mistete,mistetest,misteten,mistetet,gemistet" }, "mittellos": { "form": "mittellos", "polarity": "-0.0048", "pos": "JJ", "sense": "mittelloserer,mittelloserem,mittelloseren,mittellosester,mittellosestes,mittellosestem,mittellosesten,mittelloseres,mittelloser,mittelloses,mittellose,mittellosere,mittellosen,mittelloseste,mittellosem" }, "mittelmäßig": { "form": "mittelmäßig", "polarity": "-0.1871", "pos": "JJ", "sense": "mittelmäßigstem,mittelmäßigsten,mittelmäßigem,mittelmäßigerem,mittelmäßigeren,mittelmäßigeres,mittelmäßigen,mittelmäßigerer,mittelmäßige,mittelmäßigste,mittelmäßiges,mittelmäßiger,mittelmäßigere,mittelmäßigster,mittelmäßigstes" }, "monoton": { "form": "monoton", "polarity": "-0.0533", "pos": "JJ", "sense": "monotonerer,monotoneres,monotonstem,monotonere,monotonsten,monotone,monotonerem,monotonstes,monotoneren,monotonster,monotoner,monotones,monotonste,monotonem,monotonen" }, "morbid": { "form": "morbid", "polarity": "-0.0048", "pos": "JJ", "sense": "morbiden,morbidem,morbide,morbideste,morbidestem,morbidesten,morbider,morbides,morbidestes,morbidester,morbidere,morbiderer,morbideren,morbiderem,morbideres" }, "morden": { "form": "morden", "polarity": "-0.0048", "pos": "VB", "sense": "morde,gemordet,mordtest,mordete,mordtet,mordetet,mordten,mordet,mordeten,mordetest,mordte,mordest" }, "murren": { "form": "murren", "polarity": "-0.0496", "pos": "VB", "sense": "murrtest,murrtet,murre,murrte,murrt,murrst,murrest,gemurrt,murrten,murret" }, "mutlos": { "form": "mutlos", "polarity": "-0.0048", "pos": "JJ", "sense": "mutlosem,mutloserem,mutlosen,mutloseren,mutloseres,mutloserer,mutlosere,mutloseste,mutlosestes,mutlosestem,mutlosesten,mutlosester,mutlose,mutloser,mutloses" }, "mörderisch": { "form": "mörderisch", "polarity": "-0.0384", "pos": "JJ", "sense": "mörderischere,mörderischstem,mörderischsten,mörderischeren,mörderischerem,mörderischster,mörderischstes,mörderischste,mörderische,mörderischen,mörderischeres,mörderisches,mörderischer,mörderischem,mörderischerer" }, "müde": { "form": "müde", "polarity": "-0.0048", "pos": "JJ", "sense": "müderer,müderem,müderen,müdes,müdeste,müder,müdere,müden,müdem,müdestem,müdesten,müdester,müdestes,müderes" }, "mühsam": { "form": "mühsam", "polarity": "-0.3336", "pos": "JJ", "sense": "mühsamere,mühsames,mühsamer,mühsamerem,mühsamstem,mühsameren,mühsamsten,mühsameres,mühsamerer,mühsamstes,mühsamster,mühsamem,mühsamen,mühsamste,mühsame" }, "mürrisch": { "form": "mürrisch", "polarity": "-0.4658", "pos": "JJ", "sense": "mürrischere,mürrischerem,mürrischeren,mürrischerer,mürrischeres,mürrischen,mürrischem,mürrischstem,mürrischsten,mürrisches,mürrische,mürrischster,mürrischstes,mürrischer,mürrischste" }, "nachlassen": { "form": "nachlassen", "polarity": "-0.0048", "pos": "VB", "sense": "nachlasse,nachlässt,nachläßt,nachlasst,nachlaßt,nachlassest,nachlasset,nachließ,nachließest,nachließt,nachließen,nachließet,nachgelassen" }, "nachlässig": { "form": "nachlässig", "polarity": "-0.3307", "pos": "JJ", "sense": "nachlässige,nachlässigste,nachlässigere,nachlässigerer,nachlässigeres,nachlässigsten,nachlässiges,nachlässiger,nachlässigstes,nachlässigster,nachlässigen,nachlässigem,nachlässigerem,nachlässigeren,nachlässigstem" }, "nachteilig": { "form": "nachteilig", "polarity": "-0.3357", "pos": "JJ", "sense": "nachteiligster,nachteiligstes,nachteiliger,nachteiligerem,nachteiligen,nachteiligem,nachteiligstem,nachteiligsten,nachteiliges,nachteiligere,nachteilige,nachteiligeren,nachteiligste,nachteiligerer,nachteiligeres" }, "naiv": { "form": "naiv", "polarity": "-0.0675", "pos": "JJ", "sense": "naivsten,naivstem,naivster,naiveres,naivstes,naiverer,naivere,naiveren,naiverem,naive,naives,naiver,naivste,naivem,naiven" }, "negativ": { "form": "negativ", "polarity": "-0.4949", "pos": "JJ", "sense": "negativste,negativere,negativer,negatives,negativem,negativen,negativerem,negativeren,negativstes,negativster,negativerer,negative,negativeres,negativsten,negativstem" }, "neidisch": { "form": "neidisch", "polarity": "-0.0048", "pos": "JJ", "sense": "neidischerem,neidischeren,neidischstes,neidischeres,neidischere,neidischste,neidischerer,neidische,neidischen,neidischem,neidischster,neidisches,neidischer,neidischstem,neidischsten" }, "nerven": { "form": "nerven", "polarity": "-0.1374", "pos": "VB", "sense": "nerve,nervst,nervt,nervest,nervet,nervte,nervtest,nervten,nervtet,genervt" }, "nervenaufreibend": { "form": "nervenaufreibend", "polarity": "-0.0376", "pos": "JJ", "sense": "nervenaufreibende,nervenaufreibendstes,nervenaufreibenden,nervenaufreibendem,nervenaufreibender,nervenaufreibendes,nervenaufreibendere,nervenaufreibenderem,nervenaufreibenderen,nervenaufreibenderes,nervenaufreibendster,nervenaufreibendsten,nervenaufreibenderer,nervenaufreibendste,nervenaufreibendstem" }, "nervig": { "form": "nervig", "polarity": "-0.0048", "pos": "JJ", "sense": "nervigerem,nervigeren,nervigste,nerviger,nerviges,nervigem,nervigen,nervigstes,nervigster,nervigsten,nervigstem,nervigere,nervige,nervigeres,nervigerer" }, "nervös": { "form": "nervös", "polarity": "-0.0042", "pos": "JJ", "sense": "nervöseste,nervöseren,nervöserem,nervösem,nervösen,nervösere,nervöses,nervöser,nervösesten,nervösestem,nervöseres,nervösestes,nervöserer,nervöse,nervösester" }, "neutralisieren": { "form": "neutralisieren", "polarity": "-0.1892", "pos": "VB", "sense": "neutralisiert,neutralisiertest,neutralisiertet,neutralisierte,neutralisierten,neutralisierst,neutralisieret,neutralisierest,neutralisiere" }, "niedergeschlagen": { "form": "niedergeschlagen", "polarity": "-0.4708", "pos": "JJ", "sense": "niedergeschlagener,niedergeschlagenerer,niedergeschlageneres,niedergeschlagenerem,niedergeschlageneren,niedergeschlagenere,niedergeschlagene,niedergeschlagenem,niedergeschlagenen,niedergeschlagenes,niedergeschlagenste,niedergeschlagenster,niedergeschlagenstes,niedergeschlagensten,niedergeschlagenstem" }, "niedergleitend": { "form": "niedergleitend", "polarity": "-0.0048", "pos": "JJ", "sense": "niedergleitende,niedergleitendem,niedergleitenden,niedergleitender,niedergleitendes,niedergleitendere,niedergleitenderem,niedergleitenderen,niedergleitenderer,niedergleitenderes,niedergleitendste,niedergleitendstem,niedergleitendsten,niedergleitendster,niedergleitendstes" }, "niederschlagen": { "form": "niederschlagen", "polarity": "-0.1871", "pos": "VB", "sense": "niederschlage,niederschlägst,niederschlägt,niederschlagt,niederschlagest,niederschlaget,niederschlug,niederschlugst,niederschlugen,niederschlugt,niederschlüge,niederschlügest,niederschlügst,niederschlügen,niederschlüget,niederschlügt,niedergeschlagen" }, "niederschmetternd": { "form": "niederschmetternd", "polarity": "-0.0436", "pos": "JJ", "sense": "niederschmetternde,niederschmetterndem,niederschmetternden,niederschmetternder,niederschmetterndes,niederschmetterndere,niederschmetternderem,niederschmetternderen,niederschmetternderer,niederschmetternderes,niederschmetterndste,niederschmetterndstem,niederschmetterndsten,niederschmetterndster,niederschmetterndstes" }, "niederträchtig": { "form": "niederträchtig", "polarity": "-0.45", "pos": "JJ", "sense": "niederträchtiger,niederträchtiges,niederträchtigere,niederträchtigem,niederträchtigen,niederträchtigster,niederträchtigstes,niederträchtigeres,niederträchtigerer,niederträchtigsten,niederträchtige,niederträchtigerem,niederträchtigste,niederträchtigstem,niederträchtigeren" }, "niedrig": { "form": "niedrig", "polarity": "-0.3623", "pos": "JJ", "sense": "niedrige,niedrigster,niedrigeren,niedrigstes,niedrigerem,niedrigstem,niedrigsten,niedriger,niedriges,niedrigste,niedrigere,niedrigen,niedrigem,niedrigeres,niedrigerer" }, "nutzlos": { "form": "nutzlos", "polarity": "-0.485", "pos": "JJ", "sense": "nutzlosester,nutzlosestes,nutzlose,nutzloseren,nutzloserem,nutzlosere,nutzloserer,nutzloses,nutzloser,nutzloseres,nutzlosen,nutzlosem,nutzloseste,nutzlosestem,nutzlosesten" }, "närrisch": { "form": "närrisch", "polarity": "-0.0443", "pos": "JJ", "sense": "närrischem,närrischste,närrischsten,närrischen,närrischstem,närrischerer,närrischerem,närrischeren,närrische,närrischere,närrischeres,närrischstes,närrischer,närrischster,närrisches" }, "nörgeln": { "form": "nörgeln", "polarity": "-0.1789", "pos": "VB", "sense": "nörgeltet,nörgel,nörgelen,nörgelt,nörgele,nörgelten,nörgle,nörgelte,nörgeltest,nörgelst,genörgelt" }, "nötigen": { "form": "nötigen", "polarity": "-0.0048", "pos": "VB", "sense": "nötigtet,nötiget,nötige,nötigt,nötigtest,nötigest,genötigt,nötigten,nötigte,nötigst" }, "oberflächlich": { "form": "oberflächlich", "polarity": "-0.1794", "pos": "JJ", "sense": "oberflächliche,oberflächlichem,oberflächlichen,oberflächlicher,oberflächliches,oberflächlichere,oberflächlicherem,oberflächlicheren,oberflächlicherer,oberflächlicheres,oberflächlichste,oberflächlichstem,oberflächlichsten,oberflächlichster,oberflächlichstes" }, "ominös": { "form": "ominös", "polarity": "-0.0048", "pos": "JJ", "sense": "ominösestem,ominösesten,ominösem,ominösen,ominösere,ominöser,ominöses,ominöseste,ominöserem,ominöseren,ominösestes,ominöse,ominöserer,ominöseres,ominösester" }, "ordnungswidrig": { "form": "ordnungswidrig", "polarity": "-0.171", "pos": "JJ", "sense": "ordnungswidrigste,ordnungswidrige,ordnungswidrigeres,ordnungswidrigerer,ordnungswidrigere,ordnungswidriger,ordnungswidrigster,ordnungswidriges,ordnungswidrigstes,ordnungswidrigem,ordnungswidrigen,ordnungswidrigeren,ordnungswidrigstem,ordnungswidrigsten,ordnungswidrigerem" }, "panisch": { "form": "panisch", "polarity": "-0.0048", "pos": "JJ", "sense": "panischsten,panische,panischerer,panischeres,panischste,panischstem,panischerem,panischeren,panischster,panischere,panischstes,panischen,panischem,panischer,panisches" }, "peinlich": { "form": "peinlich", "polarity": "-0.0048", "pos": "JJ", "sense": "peinliche,peinlichsten,peinlichstem,peinlichste,peinlichstes,peinlichster,peinlichen,peinlicherem,peinlichem,peinlicheren,peinlicheres,peinlicherer,peinlicher,peinlichere,peinliches" }, "pessimistisch": { "form": "pessimistisch", "polarity": "-0.3359", "pos": "JJ", "sense": "pessimistische,pessimistischem,pessimistischen,pessimistischer,pessimistisches,pessimistischere,pessimistischerem,pessimistischeren,pessimistischerer,pessimistischeres,pessimistischste,pessimistischstem,pessimistischsten,pessimistischster,pessimistischstes" }, "pflichtwidrig": { "form": "pflichtwidrig", "polarity": "-0.0048", "pos": "JJ", "sense": "pflichtwidrigstes,pflichtwidrigster,pflichtwidrigere,pflichtwidrigeres,pflichtwidrigstem,pflichtwidrigerer,pflichtwidrigste,pflichtwidrige,pflichtwidrigeren,pflichtwidrigsten,pflichtwidriger,pflichtwidrigerem,pflichtwidrigem,pflichtwidrigen,pflichtwidriges" }, "pikiert": { "form": "pikiert", "polarity": "-0.0048", "pos": "JJ", "sense": "pikiertester,pikiertestes,pikierte,pikiertere,pikierten,pikiertem,pikiertes,pikierter,pikierteren,pikierterem,pikierteste,pikiertestem,pikiertesten,pikierterer,pikierteres" }, "planlos": { "form": "planlos", "polarity": "-0.1869", "pos": "JJ", "sense": "planloseres,planlose,planloserer,planlosem,planloses,planloser,planlosen,planloseren,planlosester,planloserem,planlosestes,planloseste,planlosestem,planlosesten,planlosere" }, "prekär": { "form": "prekär", "polarity": "-0.3272", "pos": "JJ", "sense": "prekärstem,prekärerer,prekäreres,prekären,prekärere,prekärem,prekärer,prekärerem,prekäreren,prekäres,prekäre,prekärsten,prekärste,prekärstes,prekärster" }, "primitiv": { "form": "primitiv", "polarity": "-0.7475", "pos": "JJ", "sense": "primitive,primitivem,primitiven,primitiver,primitives,primitivere,primitiverem,primitiveren,primitiverer,primitiveres,primitivste,primitivstem,primitivsten,primitivster,primitivstes" }, "problematisch": { "form": "problematisch", "polarity": "-0.3524", "pos": "JJ", "sense": "problematische,problematischem,problematischen,problematischer,problematisches,problematischere,problematischerem,problematischeren,problematischerer,problematischeres,problematischste,problematischstem,problematischsten,problematischster,problematischstes" }, "profan": { "form": "profan", "polarity": "-0.0048", "pos": "JJ", "sense": "profansten,profaner,profanstes,profane,profanster,profanes,profaneren,profanerem,profanste,profanere,profanerer,profaneres,profanem,profanen,profanstem" }, "protestieren": { "form": "protestieren", "polarity": "-0.0048", "pos": "VB", "sense": "protestieret,protestiertet,protestiere,protestierte,protestierst,protestiert,protestierten,protestierest,protestiertest" }, "provisorisch": { "form": "provisorisch", "polarity": "-0.0048", "pos": "JJ", "sense": "provisorische,provisorischem,provisorischen,provisorischer,provisorisches,provisorischere,provisorischerem,provisorischeren,provisorischerer,provisorischeres,provisorischste,provisorischstem,provisorischsten,provisorischster,provisorischstes" }, "provozieren": { "form": "provozieren", "polarity": "-0.3369", "pos": "VB", "sense": "provozierest,provozieret,provoziertest,provoziertet,provozierte,provozierst,provoziere,provoziert,provozierten" }, "prügeln": { "form": "prügeln", "polarity": "-0.0507", "pos": "VB", "sense": "geprügelt,prügelen,prügelte,prügelten,prügele,prügeltest,prügelt,prügel,prügle,prügeltet,prügelst" }, "qualvoll": { "form": "qualvoll", "polarity": "-0.0048", "pos": "JJ", "sense": "qualvollstem,qualvollsten,qualvollstes,qualvollster,qualvollere,qualvolleres,qualvollerer,qualvolle,qualvollen,qualvollem,qualvollste,qualvoller,qualvolleren,qualvollerem,qualvolles" }, "quälen": { "form": "quälen", "polarity": "-0.1929", "pos": "VB", "sense": "quälest,gequält,quältest,quälet,quälte,quälten,quälst,quäle,quältet,quält" }, "rabiat": { "form": "rabiat", "polarity": "-0.0402", "pos": "JJ", "sense": "rabiaterem,rabiateren,rabiaterer,rabiatestes,rabiates,rabiatester,rabiater,rabiatem,rabiateste,rabiateres,rabiaten,rabiatere,rabiatestem,rabiatesten,rabiate" }, "radikal": { "form": "radikal", "polarity": "-0.487", "pos": "JJ", "sense": "radikale,radikalem,radikalen,radikaler,radikales,radikalere,radikalerem,radikaleren,radikalerer,radikaleres,radikalste,radikalstem,radikalsten,radikalster,radikalstes" }, "rammen": { "form": "rammen", "polarity": "-0.0048", "pos": "VB", "sense": "rammte,ramme,rammten,rammt,gerammt,rammtest,rammest,rammst,rammet,rammtet" }, "ramponieren": { "form": "ramponieren", "polarity": "-0.0048", "pos": "VB", "sense": "ramponierest,ramponiertest,ramponiere,ramponiert,ramponiertet,ramponierst,ramponieret,ramponierte,ramponierten" }, "rasend": { "form": "rasend", "polarity": "-0.0048", "pos": "JJ", "sense": "rasenderen,rasenderem,rasendem,rasendste,rasendes,rasende,rasender,rasenderer,rasenderes,rasenden,rasendster,rasendstes,rasendere,rasendstem,rasendsten" }, "rauh": { "form": "rauh", "polarity": "-0.0286", "pos": "JJ", "sense": "rauhste,rauhe,rauhstem,rauhere,rauhsten,rauhes,rauhestem,rauhesten,rauhst,rauheste,rauhester,rauheres,rauherer,rauhestes,rauheren,rauher,rauhstes,rauherem,rauhster,rauhem,rauhen" }, "rausgeschmissen": { "form": "rausgeschmissen", "polarity": "-0.1863", "pos": "JJ", "sense": "rausgeschmissene,rausgeschmissenem,rausgeschmissenen,rausgeschmissener,rausgeschmissenes,rausgeschmissenere,rausgeschmissenerem,rausgeschmisseneren,rausgeschmissenerer,rausgeschmisseneres,rausgeschmissenste,rausgeschmissenstem,rausgeschmissensten,rausgeschmissenster,rausgeschmissenstes" }, "rebellisch": { "form": "rebellisch", "polarity": "-0.1706", "pos": "JJ", "sense": "rebellischere,rebellischster,rebellischerer,rebellisches,rebellischer,rebellischerem,rebellischeren,rebellischstes,rebellischstem,rebellischsten,rebellischem,rebellischeres,rebellischen,rebellische,rebellischste" }, "rechthaberisch": { "form": "rechthaberisch", "polarity": "-0.0048", "pos": "JJ", "sense": "rechthaberischere,rechthaberischem,rechthaberischen,rechthaberische,rechthaberischer,rechthaberisches,rechthaberischerem,rechthaberischeren,rechthaberischste,rechthaberischster,rechthaberischstem,rechthaberischsten,rechthaberischerer,rechthaberischstes,rechthaberischeres" }, "rechtswidrig": { "form": "rechtswidrig", "polarity": "-0.3406", "pos": "JJ", "sense": "rechtswidrigere,rechtswidrigerem,rechtswidrigstem,rechtswidrigsten,rechtswidrigeren,rechtswidrigen,rechtswidrigem,rechtswidrigerer,rechtswidrigste,rechtswidrige,rechtswidriger,rechtswidriges,rechtswidrigeres,rechtswidrigstes,rechtswidrigster" }, "reduzieren": { "form": "reduzieren", "polarity": "-0.0048", "pos": "VB", "sense": "reduzierest,reduziere,reduziert,reduzierst,reduzierte,reduziertet,reduzierten,reduzieret,reduziertest" }, "renitent": { "form": "renitent", "polarity": "-0.0048", "pos": "JJ", "sense": "renitenten,renitenterem,renitenteren,renitentem,renitenterer,renitenteste,renitente,renitentestem,renitentesten,renitentestes,renitentere,renitentester,renitentes,renitenter,renitenteres" }, "repetiv": { "form": "repetiv", "polarity": "-0.0048", "pos": "JJ", "sense": "repetive,repetivem,repetiven,repetiver,repetives,repetivere,repetiverem,repetiveren,repetiverer,repetiveres,repetivste,repetivstem,repetivsten,repetivster,repetivstes" }, "riskant": { "form": "riskant", "polarity": "-0.0482", "pos": "JJ", "sense": "riskantestem,riskantesten,riskanteren,riskantes,riskantestes,riskanter,riskanterem,riskantester,riskanteste,riskanten,riskantem,riskante,riskanterer,riskanteres,riskantere" }, "riskieren": { "form": "riskieren", "polarity": "-0.3328", "pos": "VB", "sense": "riskierest,riskierten,riskierte,riskierst,riskiertest,riskiere,riskiert,riskieret,riskiertet" }, "rosten": { "form": "rosten", "polarity": "-0.0048", "pos": "VB", "sense": "roste,rostest,gerostet,rosteten,rostet,rostetet,rostete,rostetest" }, "ruchlos": { "form": "ruchlos", "polarity": "-0.037", "pos": "JJ", "sense": "ruchloseres,ruchloserer,ruchlosere,ruchlosem,ruchlosen,ruchlosester,ruchlosestes,ruchloserem,ruchloser,ruchloses,ruchloseren,ruchlose,ruchloseste,ruchlosestem,ruchlosesten" }, "ruckeln": { "form": "ruckeln", "polarity": "-0.0387", "pos": "VB", "sense": "ruckele,ruckle,ruckelst,ruckelt,rucklest,rucklet,ruckelte,ruckeltest,ruckelten,ruckeltet,geruckelt" }, "ruinös": { "form": "ruinös", "polarity": "-0.0048", "pos": "JJ", "sense": "ruinösem,ruinösere,ruinösen,ruinöseste,ruinöserem,ruinöseren,ruinöserer,ruinöse,ruinösesten,ruinöser,ruinöses,ruinösestem,ruinösester,ruinösestes,ruinöseres" }, "ruppig": { "form": "ruppig", "polarity": "-0.0048", "pos": "JJ", "sense": "ruppigere,ruppigste,ruppigstes,ruppigem,ruppigeren,ruppigerem,ruppigster,ruppigen,ruppiges,ruppigstem,ruppigsten,ruppige,ruppiger,ruppigeres,ruppigerer" }, "rutschen": { "form": "rutschen", "polarity": "-0.0048", "pos": "VB", "sense": "rutscht,rutschet,rutsche,rutschten,rutschte,rutschtest,rutschst,rutschtet,rutschest,gerutscht" }, "rächen": { "form": "rächen", "polarity": "-0.3489", "pos": "VB", "sense": "rächtet,rächtest,räche,räch,rächten,rächst,rächet,rächte,gerächt,rächest" }, "rückläufig": { "form": "rückläufig", "polarity": "-0.0544", "pos": "JJ", "sense": "rückläufige,rückläufigem,rückläufigen,rückläufiger,rückläufiges,rückläufigere,rückläufigerem,rückläufigeren,rückläufigerer,rückläufigeres,rückläufigste,rückläufigstem,rückläufigsten,rückläufigster,rückläufigstes" }, "rücksichtslos": { "form": "rücksichtslos", "polarity": "-0.4754", "pos": "JJ", "sense": "rücksichtslosen,rücksichtslosem,rücksichtslosestes,rücksichtslose,rücksichtslosester,rücksichtsloserer,rücksichtsloseres,rücksichtslosestem,rücksichtslosesten,rücksichtsloserem,rücksichtsloseste,rücksichtsloseren,rücksichtslosere,rücksichtsloses,rücksichtsloser" }, "rückständig": { "form": "rückständig", "polarity": "-0.0048", "pos": "JJ", "sense": "rückständiger,rückständigerer,rückständiges,rückständigsten,rückständigerem,rückständigere,rückständigeren,rückständigstem,rückständige,rückständigster,rückständigste,rückständigen,rückständigeres,rückständigstes,rückständigem" }, "rückwärts": { "form": "rückwärts", "polarity": "-0.3496", "pos": "RB", "sense": "" }, "rüde": { "form": "rüde", "polarity": "-0.0048", "pos": "JJ", "sense": "rüdestes,rüdester,rüdestem,rüdesten,rüd,rüder,rüdere,rüdes,rüdeste,rüderem,rüderen,rüderes,rüderer,rüdem,rüden" }, "sabotieren": { "form": "sabotieren", "polarity": "-0.0048", "pos": "VB", "sense": "sabotiert,sabotiertest,sabotiertet,sabotieret,sabotierten,sabotierst,sabotierte,sabotierest,sabotiere" }, "sauer": { "form": "sauer", "polarity": "-0.0048", "pos": "JJ", "sense": "sauerstem,sauerste,sauersten,saurere,sauren,saurem,sauerster,saurerer,sauerstes,saureres,saurer,saurerem,saures,saure,saureren" }, "schade": { "form": "schade", "polarity": "-0.0048", "pos": "JJ", "sense": "" }, "schadhaft": { "form": "schadhaft", "polarity": "-0.0048", "pos": "JJ", "sense": "schadhaftem,schadhafteste,schadhaften,schadhaftere,schadhafteren,schadhafte,schadhafteres,schadhafter,schadhafterer,schadhafterem,schadhaftestem,schadhaftesten,schadhaftestes,schadhaftester,schadhaftes" }, "schal": { "form": "schal", "polarity": "-0.0048", "pos": "JJ", "sense": "schale,schalstem,schalsten,schaler,schalere,schales,schaleren,schalerem,schalen,schalster,schalem,schalerer,schalste,schalstes,schaleres" }, "schamlos": { "form": "schamlos", "polarity": "-0.3332", "pos": "JJ", "sense": "schamloser,schamloserem,schamlosestes,schamloseren,schamloses,schamloseres,schamlosere,schamloserer,schamlosesten,schamlosestem,schamlosen,schamlosem,schamlosester,schamlose,schamloseste" }, "schauerlich": { "form": "schauerlich", "polarity": "-0.0048", "pos": "JJ", "sense": "schauerlichsten,schauerlicher,schauerlicheres,schauerliches,schauerlichstem,schauerlicherer,schauerliche,schauerlicherem,schauerlicheren,schauerlichem,schauerlichster,schauerlichen,schauerlichstes,schauerlichste,schauerlichere" }, "schaurig": { "form": "schaurig", "polarity": "-0.0048", "pos": "JJ", "sense": "schaurigstes,schaurigster,schauriges,schauriger,schaurige,schaurigeres,schaurigerer,schaurigerem,schaurigste,schaurigeren,schaurigere,schaurigsten,schaurigem,schaurigen,schaurigstem" }, "scheiden": { "form": "scheiden", "polarity": "-0.0557", "pos": "VB", "sense": "scheide,scheidest,scheidet,schied,schiedest,schiedst,schieden,schiedet,geschieden" }, "scheiss": { "form": "scheiss", "polarity": "-0.1838", "pos": "JJ", "sense": "" }, "scheisse": { "form": "scheisse", "polarity": "-0.0226", "pos": "JJ", "sense": "" }, "scheiß": { "form": "scheiß", "polarity": "-0.3381", "pos": "JJ", "sense": "" }, "scheiße": { "form": "scheiße", "polarity": "-0.2945", "pos": "JJ", "sense": "" }, "schelten": { "form": "schelten", "polarity": "-0.3143", "pos": "VB", "sense": "schelte,schilst,schilt,scheltet,scheltest,schalt,schaltest,schaltst,schalten,schaltet,schölte,schöltest,schölten,schöltet,gescholten" }, "scheusslich": { "form": "scheusslich", "polarity": "-0.0048", "pos": "JJ", "sense": "scheussliche,scheusslichem,scheusslichen,scheusslicher,scheussliches,scheusslichere,scheusslicherem,scheusslicheren,scheusslicherer,scheusslicheres,scheusslichste,scheusslichstem,scheusslichsten,scheusslichster,scheusslichstes" }, "scheußlich": { "form": "scheußlich", "polarity": "-0.1834", "pos": "JJ", "sense": "scheußlicher,scheußlicheres,scheußliches,scheußlichem,scheußlicherer,scheußlichen,scheußlichster,scheußliche,scheußlichsten,scheußlichstem,scheußlichere,scheußlicheren,scheußlicherem,scheußlichstes,scheußlichste" }, "schimmelig": { "form": "schimmelig", "polarity": "-0.304", "pos": "JJ", "sense": "schimmelige,schimmeligem,schimmeligen,schimmeliger,schimmeliges,schimmeligere,schimmeligerem,schimmeligeren,schimmeligerer,schimmeligeres,schimmeligste,schimmeligstem,schimmeligsten,schimmeligster,schimmeligstes" }, "schimmlig": { "form": "schimmlig", "polarity": "-0.304", "pos": "JJ", "sense": "schimmlige,schimmligem,schimmligen,schimmliger,schimmliges,schimmligere,schimmligerem,schimmligeren,schimmligerer,schimmligeres,schimmligste,schimmligstem,schimmligsten,schimmligster,schimmligstes" }, "schimpfend": { "form": "schimpfend", "polarity": "-0.0048", "pos": "JJ", "sense": "schimpfende,schimpfendem,schimpfenden,schimpfender,schimpfendes,schimpfendere,schimpfenderem,schimpfenderen,schimpfenderer,schimpfenderes,schimpfendste,schimpfendstem,schimpfendsten,schimpfendster,schimpfendstes" }, "schlaff": { "form": "schlaff", "polarity": "-0.0472", "pos": "JJ", "sense": "schlaffem,schlaffen,schlaffste,schlaffes,schlaffer,schlaffstem,schlaffsten,schlaffe,schlafferer,schlafferem,schlafferen,schlaffstes,schlaffere,schlafferes,schlaffster" }, "schlagen": { "form": "schlagen", "polarity": "-0.0306", "pos": "VB", "sense": "schlage,schlägst,schlägt,schlagt,schlagest,schlaget,schlug,schlugst,schlugen,schlugt,schlüge,schlügest,schlügst,schlügen,schlüget,schlügt,geschlagen" }, "schlapp": { "form": "schlapp", "polarity": "-0.0048", "pos": "JJ", "sense": "schlappstes,schlappster,schlappere,schlappsten,schlappstem,schlappe,schlapperen,schlapperem,schlappste,schlappem,schlappen,schlapperer,schlapperes,schlapper,schlappes" }, "schlecht": { "form": "schlecht", "polarity": "-0.7706", "pos": "JJ", "sense": "schlechtem,schlechten,schlechteste,schlechtes,schlechte,schlechter,schlechteren,schlechterem,schlechtesten,schlechtestem,schlechtere,schlechtester,schlechteres,schlechterer,schlechtestes" }, "schleppend": { "form": "schleppend", "polarity": "-0.0048", "pos": "JJ", "sense": "schleppendster,schleppende,schleppendstes,schleppenderes,schleppenderer,schleppendstem,schleppendsten,schleppenderem,schleppenderen,schleppendste,schleppendere,schleppendes,schleppender,schleppendem,schleppenden" }, "schlicht": { "form": "schlicht", "polarity": "-0.623", "pos": "JJ", "sense": "schlichtes,schlichtere,schlichtem,schlichten,schlichterem,schlichter,schlichtesten,schlichteres,schlichte,schlichterer,schlichtestem,schlichteren,schlichtester,schlichteste,schlichtestes" }, "schließen": { "form": "schließen", "polarity": "-0.211", "pos": "VB", "sense": "schließe,schließt,schließest,schließet,schloss,schloß,schlossest,schlosst,schloßt,schlossen,schlösse,schlössest,schlössen,schlösset,geschlossen" }, "schlimm": { "form": "schlimm", "polarity": "-0.1705", "pos": "JJ", "sense": "schlimmste,schlimmstem,schlimmsten,schlimmer,schlimmes,schlimmerer,schlimmeren,schlimmerem,schlimmere,schlimmeres,schlimme,schlimmen,schlimmster,schlimmem,schlimmstes" }, "schlimmer": { "form": "schlimmer", "polarity": "-0.6494", "pos": "JJ", "sense": "" }, "schlotterig": { "form": "schlotterig", "polarity": "-0.0048", "pos": "JJ", "sense": "schlotterige,schlotterigem,schlotterigen,schlotteriger,schlotteriges,schlotterigere,schlotterigerem,schlotterigeren,schlotterigerer,schlotterigeres,schlotterigste,schlotterigstem,schlotterigsten,schlotterigster,schlotterigstes" }, "schlottern": { "form": "schlottern", "polarity": "-0.0048", "pos": "VB", "sense": "schlotterten,schlotterst,schlotterte,schlotteren,schlottert,geschlottert,schlottertest,schlottere,schlottertet" }, "schmerzen": { "form": "schmerzen", "polarity": "-0.3251", "pos": "VB", "sense": "schmerzten,schmerztet,schmerzet,schmerztest,schmerzte,geschmerzt,schmerzt,schmerze,schmerzest" }, "schmerzerfüllt": { "form": "schmerzerfüllt", "polarity": "-0.0048", "pos": "JJ", "sense": "schmerzerfülltem,schmerzerfüllterer,schmerzerfüllten,schmerzerfülltes,schmerzerfüllter,schmerzerfüllteres,schmerzerfülltesten,schmerzerfüllterem,schmerzerfüllteren,schmerzerfüllteste,schmerzerfülltestem,schmerzerfülltester,schmerzerfülltestes,schmerzerfülltere,schmerzerfüllte" }, "schmerzhaft": { "form": "schmerzhaft", "polarity": "-0.3182", "pos": "JJ", "sense": "schmerzhaftestes,schmerzhaftester,schmerzhaftere,schmerzhaftesten,schmerzhafte,schmerzhafterem,schmerzhaften,schmerzhafteren,schmerzhaftes,schmerzhafter,schmerzhafteste,schmerzhaftestem,schmerzhafterer,schmerzhaftem,schmerzhafteres" }, "schmerzlich": { "form": "schmerzlich", "polarity": "-0.0516", "pos": "JJ", "sense": "schmerzlicheren,schmerzlichstem,schmerzlichem,schmerzlichen,schmerzlicherer,schmerzlicheres,schmerzlichsten,schmerzlicher,schmerzliches,schmerzlichstes,schmerzlichster,schmerzlichste,schmerzliche,schmerzlicherem,schmerzlichere" }, "schmerzvoll": { "form": "schmerzvoll", "polarity": "-0.0428", "pos": "JJ", "sense": "schmerzvolle,schmerzvollstem,schmerzvollsten,schmerzvollste,schmerzvollster,schmerzvollerem,schmerzvolleren,schmerzvollstes,schmerzvolleres,schmerzvoller,schmerzvolles,schmerzvollem,schmerzvollen,schmerzvollere,schmerzvollerer" }, "schmuggeln": { "form": "schmuggeln", "polarity": "-0.0048", "pos": "VB", "sense": "schmuggeltest,schmuggelte,schmuggle,schmuggelst,schmuggeltet,schmuggelen,schmuggel,schmuggelt,schmuggelten,schmuggele,geschmuggelt" }, "schmutzig": { "form": "schmutzig", "polarity": "-0.2984", "pos": "JJ", "sense": "schmutzigeren,schmutzigstes,schmutzigster,schmutzigerem,schmutzigerer,schmutzigeres,schmutzigen,schmutzigem,schmutziges,schmutzige,schmutzigste,schmutziger,schmutzigstem,schmutzigsten,schmutzigere" }, "schocken": { "form": "schocken", "polarity": "-0.0396", "pos": "VB", "sense": "schockest,schockst,schockte,schocket,schocktet,schocktest,schockten,schocke,schockt,geschockt" }, "schockierend": { "form": "schockierend", "polarity": "-0.1933", "pos": "JJ", "sense": "schockierende,schockierendem,schockierenden,schockierender,schockierendes,schockierendere,schockierenderem,schockierenderen,schockierenderer,schockierenderes,schockierendste,schockierendstem,schockierendsten,schockierendster,schockierendstes" }, "schonungslos": { "form": "schonungslos", "polarity": "-0.461", "pos": "JJ", "sense": "schonungsloseste,schonungslosere,schonungsloser,schonungsloserem,schonungsloseren,schonungslosestem,schonungslosesten,schonungsloses,schonungsloserer,schonungslosester,schonungslose,schonungsloseres,schonungslosem,schonungslosestes,schonungslosen" }, "schrecklich": { "form": "schrecklich", "polarity": "-0.0242", "pos": "JJ", "sense": "schrecklicheres,schreckliche,schreckliches,schrecklicher,schrecklichere,schrecklichstem,schrecklichsten,schrecklichster,schrecklichste,schrecklichstes,schrecklicheren,schrecklicherem,schrecklichem,schrecklicherer,schrecklichen" }, "schrumpfen": { "form": "schrumpfen", "polarity": "-0.0048", "pos": "VB", "sense": "schrumpfst,schrumpfte,schrumpfest,schrumpft,schrumpften,schrumpftest,schrumpftet,schrumpfe,schrumpfet,geschrumpft" }, "schubsen": { "form": "schubsen", "polarity": "-0.1756", "pos": "VB", "sense": "schubsten,schubset,geschubst,schubse,schubst,schubstet,schubstest,schubste,schubsest" }, "schuftig": { "form": "schuftig", "polarity": "-0.0048", "pos": "JJ", "sense": "schuftiger,schuftigstes,schuftiges,schuftige,schuftigen,schuftigere,schuftigste,schuftigem,schuftigsten,schuftigstem,schuftigerem,schuftigeren,schuftigster,schuftigerer,schuftigeres" }, "schulden": { "form": "schulden", "polarity": "-0.0048", "pos": "VB", "sense": "schuldet,schuldeten,schuldten,geschuldet,schuldetest,schuldtest,schuldtet,schuldete,schulde,schuldte,schuldetet,schuldest" }, "schuldhaft": { "form": "schuldhaft", "polarity": "-0.3346", "pos": "JJ", "sense": "schuldhaftester,schuldhafteste,schuldhaftestem,schuldhaftesten,schuldhaftestes,schuldhafteren,schuldhafterem,schuldhafterer,schuldhafteres,schuldhaften,schuldhaftem,schuldhaftere,schuldhaftes,schuldhafter,schuldhafte" }, "schuldig": { "form": "schuldig", "polarity": "-0.7968", "pos": "JJ", "sense": "schuldigster,schuldigstes,schuldigste,schuldiges,schuldiger,schuldigen,schuldigeren,schuldigerem,schuldige,schuldigem,schuldigeres,schuldigerer,schuldigstem,schuldigsten,schuldigere" }, "schwach": { "form": "schwach", "polarity": "-0.9206", "pos": "JJ", "sense": "schwächstem,schwächsten,schwächster,schwächstes,schwachem,schwächerem,schwacher,schwaches,schwächere,schwächeren,schwachen,schwache,schwächerer,schwächeres,schwächer,schwächste" }, "schwer": { "form": "schwer", "polarity": "-0.0048", "pos": "JJ", "sense": "schwerstes,schwerster,schwere,schwerste,schwerstem,schwersten,schweren,schwerem,schwerere,schwereres,schwererer,schwerer,schwererem,schwereren,schweres" }, "schwerfällig": { "form": "schwerfällig", "polarity": "-0.0048", "pos": "JJ", "sense": "schwerfällige,schwerfälligere,schwerfälligste,schwerfälligerer,schwerfälligeres,schwerfälligem,schwerfälligen,schwerfälligerem,schwerfälliges,schwerfälliger,schwerfälligeren,schwerfälligsten,schwerfälligstem,schwerfälligster,schwerfälligstes" }, "schwerwiegend": { "form": "schwerwiegend", "polarity": "-0.0048", "pos": "JJ", "sense": "schwerwiegenderem,schwerwiegenderen,schwerwiegendstem,schwerwiegendsten,schwerwiegenderer,schwerwiegendere,schwerwiegenderes,schwerwiegendstes,schwerwiegende,schwerwiegendster,schwerwiegenden,schwerwiegendem,schwerwiegendste,schwerwiegender,schwerwiegendes" }, "schwierig": { "form": "schwierig", "polarity": "-0.0245", "pos": "JJ", "sense": "schwierigen,schwierigem,schwierigstem,schwierigsten,schwierigerer,schwierigerem,schwierigeren,schwierige,schwierigster,schwierigste,schwierigere,schwierigstes,schwierigeres,schwieriges,schwieriger" }, "schwinden": { "form": "schwinden", "polarity": "-0.0048", "pos": "VB", "sense": "schwinde,schwindest,schwindet,schwand,schwandest,schwandst,schwanden,schwandet,schwände,schwändest,schwänden,schwändet,geschwunden" }, "schwindlig": { "form": "schwindlig", "polarity": "-0.0512", "pos": "JJ", "sense": "schwindligste,schwindlige,schwindliges,schwindligeren,schwindligen,schwindligem,schwindligerer,schwindligere,schwindligeres,schwindliger,schwindligstem,schwindligsten,schwindligerem,schwindligster,schwindligst,schwindligstes" }, "schwächen": { "form": "schwächen", "polarity": "-0.3372", "pos": "VB", "sense": "schwächest,schwächten,schwächet,schwächtest,schwächtet,schwächt,schwächst,schwächte,schwäche,geschwächt" }, "schwächlich": { "form": "schwächlich", "polarity": "-0.3167", "pos": "JJ", "sense": "schwächlichsten,schwächlicheren,schwächlicherem,schwächlichstem,schwächlicherer,schwächlicheres,schwächliche,schwächlichere,schwächlichster,schwächlichstes,schwächlichem,schwächlichen,schwächlichste,schwächlicher,schwächliches" }, "schäbig": { "form": "schäbig", "polarity": "-0.0421", "pos": "JJ", "sense": "schäbigere,schäbigeren,schäbigster,schäbigstes,schäbigerem,schäbigerer,schäbige,schäbigeres,schäbiges,schäbiger,schäbigsten,schäbigstem,schäbigem,schäbigen,schäbigste" }, "schädigend": { "form": "schädigend", "polarity": "-0.1779", "pos": "JJ", "sense": "schädigende,schädigendem,schädigenden,schädigender,schädigendes,schädigendere" }, "schädigen": { "form": "schädigen", "polarity": "-0.3284", "pos": "VB", "sense": "schädige,schädigst,schädigt,schädigest,schädiget,schädigte,schädigtest,schädigten,schädigtet,geschädigt" }, "schädlich": { "form": "schädlich", "polarity": "-0.9269", "pos": "JJ", "sense": "schädlicher,schädlicheren,schädlichem,schädlichen,schädlicheres,schädlicherer,schädliches,schädlichere,schädlichster,schädlichstes,schädliche,schädlichsten,schädlicherem,schädlichstem,schädlichste" }, "schämen": { "form": "schämen", "polarity": "-0.893", "pos": "VB", "sense": "schämt,geschämt,schämtest,schämest,schämten,schämet,schämst,schäme,schämte,schämtet" }, "seicht": { "form": "seicht", "polarity": "-0.1742", "pos": "JJ", "sense": "seichteste,seichteres,seichterer,seichteren,seichten,seichtere,seichtem,seichterem,seichtestem,seichtesten,seichtes,seichter,seichte,seichtester,seichtestes" }, "seltsam": { "form": "seltsam", "polarity": "-0.0048", "pos": "JJ", "sense": "seltsame,seltsamerem,seltsameren,seltsamstem,seltsamsten,seltsamerer,seltsames,seltsamer,seltsamste,seltsamen,seltsamem,seltsamster,seltsamere,seltsameres,seltsamstes" }, "senken": { "form": "senken", "polarity": "-0.0596", "pos": "VB", "sense": "senke,senket,senkest,senktet,senktest,senkt,senkte,gesenkt,senkten,senkst" }, "sinken": { "form": "sinken", "polarity": "-0.2064", "pos": "VB", "sense": "sinke,sinkst,sinkt,sinkest,sinket,sank,sankst,sanken,sankt,sänke,sänkest,sänkst,sänken,sänket,sänkt,gesunken" }, "sinnlos": { "form": "sinnlos", "polarity": "-0.6331", "pos": "JJ", "sense": "sinnloseste,sinnlosere,sinnloserem,sinnloses,sinnloser,sinnlose,sinnlosen,sinnlosem,sinnlosestes,sinnlosester,sinnlosestem,sinnlosesten,sinnloseren,sinnloseres,sinnloserer" }, "skandalös": { "form": "skandalös", "polarity": "-0.0048", "pos": "JJ", "sense": "skandalöse,skandalösestem,skandalöserem,skandalöseren,skandalöses,skandalösesten,skandalöser,skandalösere,skandalösestes,skandalösester,skandalösen,skandalösem,skandalöseres,skandalöserer,skandalöseste" }, "skeptisch": { "form": "skeptisch", "polarity": "-0.1985", "pos": "JJ", "sense": "skeptischem,skeptischen,skeptisches,skeptischer,skeptischstes,skeptischster,skeptischeren,skeptischstem,skeptischsten,skeptischerem,skeptischere,skeptischerer,skeptischeres,skeptische,skeptischste" }, "skrupellos": { "form": "skrupellos", "polarity": "-0.1814", "pos": "JJ", "sense": "skrupellosestem,skrupellosesten,skrupelloser,skrupellosester,skrupellose,skrupelloses,skrupelloserer,skrupelloseres,skrupelloserem,skrupelloseren,skrupelloseste,skrupellosere,skrupellosem,skrupellosestes,skrupellosen" }, "sorgen": { "form": "sorgen", "polarity": "0.2234", "pos": "VB", "sense": "sorgte,sorgst,sorgten,sorgt,gesorgt,sorgtet,sorgtest,sorg,sorget,sorgest,sorge,sorgend" }, "sorgenschwer": { "form": "sorgenschwer", "polarity": "-0.0048", "pos": "JJ", "sense": "sorgenschwere,sorgenschwereren,sorgenschwerster,sorgenschwerstes,sorgenschwersten,sorgenschwererem,sorgenschwerere,sorgenschwerer,sorgenschwerste,sorgenschweres,sorgenschwerem,sorgenschweren,sorgenschwerstem,sorgenschwererer,sorgenschwereres" }, "sprengen": { "form": "sprengen", "polarity": "-0.0048", "pos": "VB", "sense": "sprengt,sprengest,sprenget,sprengten,sprengst,sprengte,sprengtet,sprengtest,sprenge,gesprengt" }, "spröde": { "form": "spröde", "polarity": "-0.038", "pos": "JJ", "sense": "sprödes,spröderem,sprödere,spröderes,spröderer,sprödestem,sprödesten,spröderen,sprödester,sprödeste,sprödestes,spröde,sprödem,spröden,spröder" }, "stagnieren": { "form": "stagnieren", "polarity": "-0.0048", "pos": "VB", "sense": "stagniere,stagnierst,stagniert,stagnierest,stagnieret,stagnierte,stagniertest,stagnierten,stagniertet" }, "starr": { "form": "starr", "polarity": "-0.0048", "pos": "JJ", "sense": "starre,starrerer,starreres,starrere,starrerem,starreren,starrsten,starrste,starrstem,starrstes,starrster,starres,starrer,starrem,starren" }, "statisch": { "form": "statisch", "polarity": "-0.0048", "pos": "JJ", "sense": "statischere,statische,statischem,statischsten,statischste,statischstem,statischen,statischster,statischstes,statischer,statisches,statischeres,statischerer,statischerem,statischeren" }, "stehlen": { "form": "stehlen", "polarity": "-0.4944", "pos": "VB", "sense": "stehle,stiehlst,stiehlt,stehlt,stehlest,stehlet,stahl,stahlst,stahlen,stahlt,stähle,stöhle,stählest,stählst,stöhlest,stöhlst,stählen,stöhlen,stählet,stählt,stöhlet,stöhlt,gestohlen" }, "stilllegen": { "form": "stilllegen", "polarity": "-0.0048", "pos": "VB", "sense": "stilllegte,stilllegst,stillleget,stilllegten,stilllegest,stillgelegt,stilllegt,stilllege,stilllegtet,stilllegtest" }, "stillstehen": { "form": "stillstehen", "polarity": "-0.0048", "pos": "VB", "sense": "stillstehe,stillstehst,stillsteht,stillstehest,stillstehet,stillstand,stillstandest,stillstandst,stillstanden,stillstandet,stillstände,stillstünde,stillständest,stillstündest,stillständen,stillstünden,stillständet,stillstündet" }, "stinken": { "form": "stinken", "polarity": "-0.1634", "pos": "VB", "sense": "stinke,stinkst,stinkt,stinkest,stinket,stank,stankst,stanken,stankt,stänke,stänkest,stänkst,stänken,stänket,stänkt" }, "stocken": { "form": "stocken", "polarity": "-0.0048", "pos": "VB", "sense": "stocktest,stocktet,stockest,stockte,stockst,stocket,stockten,stockt,stocke,gestockt" }, "stornieren": { "form": "stornieren", "polarity": "-0.0048", "pos": "VB", "sense": "storniertet,storniere,stornierten,storniert,storniertest,stornierst,stornierte,stornieret,stornierest" }, "stottern": { "form": "stottern", "polarity": "-0.0435", "pos": "VB", "sense": "stottertest,gestottert,stotterten,stotterst,stotteren,stottertet,stotterte,stottere,stottert" }, "stoßen": { "form": "stoßen", "polarity": "-0.3563", "pos": "VB", "sense": "stoße,stößt,stoßt,stoßest,stoßet,stieß,stießest,stießt,stießen,stießet,gestoßen" }, "strafbar": { "form": "strafbar", "polarity": "-0.3468", "pos": "JJ", "sense": "strafbarster,strafbarere,strafbarstes,strafbarste,strafbarstem,strafbarsten,strafbare,strafbarerem,strafbareren,strafbaren,strafbarem,strafbarerer,strafbarer,strafbareres,strafbares" }, "streiken": { "form": "streiken", "polarity": "-0.044", "pos": "VB", "sense": "streikten,streikst,streiket,streikte,streikest,streiktet,streiktest,streikt,streike,gestreikt" }, "streiten": { "form": "streiten", "polarity": "-0.0302", "pos": "VB", "sense": "streite,streitest,streitet,stritt,strittest,stritten,strittet,stritte,gestritten" }, "streng": { "form": "streng", "polarity": "-0.3571", "pos": "JJ", "sense": "strenge,strengem,strengen,strenger,strenges,strengere,strengerem,strengeren,strengerer,strengeres,strengste,strengstem,strengsten,strengster,strengstes" }, "strittig": { "form": "strittig", "polarity": "-0.3249", "pos": "JJ", "sense": "strittige,strittigem,strittigen,strittiger,strittiges,strittigere,strittigerem,strittigeren,strittigerer,strittigeres,strittigste,strittigstem,strittigsten,strittigster,strittigstes" }, "stumpfsinnig": { "form": "stumpfsinnig", "polarity": "-0.0048", "pos": "JJ", "sense": "stumpfsinnigstem,stumpfsinnigsten,stumpfsinniges,stumpfsinniger,stumpfsinnige,stumpfsinnigerem,stumpfsinnigeren,stumpfsinnigeres,stumpfsinnigerer,stumpfsinnigem,stumpfsinnigste,stumpfsinnigster,stumpfsinnigere,stumpfsinnigen,stumpfsinnigstes" }, "stupide": { "form": "stupide", "polarity": "-0.0048", "pos": "JJ", "sense": "stupidesten,stupidester,stupidestes,stupidestem,stupideerem,stupideen,stupideeren,stupideem,stupideere,stupideer,stupideerer,stupideeres,stupidee,stupideste,stupidees" }, "stur": { "form": "stur", "polarity": "-0.1837", "pos": "JJ", "sense": "stursten,sturster,sturstes,sture,sturstem,stureres,sturer,sturerer,sturere,sturste,stures,sturerem,sturem,sturen,stureren" }, "stören": { "form": "stören", "polarity": "-0.333", "pos": "VB", "sense": "störten,gestört,störtet,stört,störst,störte,störe,störet,störest,störtest" }, "stümperhaft": { "form": "stümperhaft", "polarity": "-0.0048", "pos": "JJ", "sense": "stümperhafteren,stümperhafterer,stümperhaftestem,stümperhaftesten,stümperhafteres,stümperhafter,stümperhaftes,stümperhaftem,stümperhaften,stümperhaftere,stümperhafterem,stümperhafte,stümperhaftestes,stümperhaftester,stümperhafteste" }, "stürmisch": { "form": "stürmisch", "polarity": "-0.0048", "pos": "JJ", "sense": "stürmischsten,stürmischer,stürmisches,stürmischstem,stürmischeres,stürmischste,stürmischstes,stürmischerer,stürmische,stürmischem,stürmischerem,stürmischeren,stürmischster,stürmischen,stürmischere" }, "stürzen": { "form": "stürzen", "polarity": "-0.1975", "pos": "VB", "sense": "stürze,stürzt,stürzet,gestürzt,stürzest,stürztet,stürzte,stürztest,stürzten" }, "suboptimal": { "form": "suboptimal", "polarity": "-0.0048", "pos": "JJ", "sense": "suboptimale,suboptimalem,suboptimalen,suboptimaler,suboptimales,suboptimalere,suboptimalerem,suboptimaleren,suboptimalerer,suboptimaleres,suboptimalste,suboptimalstem,suboptimalsten,suboptimalster,suboptimalstes" }, "tadeln": { "form": "tadeln", "polarity": "-0.3234", "pos": "VB", "sense": "tadele,tadle,tadelst,tadelt,tadlest,tadlet,tadelte,tadeltest,tadelten,tadeltet,getadelt" }, "tadelnswert": { "form": "tadelnswert", "polarity": "-0.0048", "pos": "JJ", "sense": "tadelnswerte,tadelnswertem,tadelnswerten,tadelnswerter,tadelnswertes" }, "tatenlos": { "form": "tatenlos", "polarity": "-0.0048", "pos": "JJ", "sense": "tatenloseste,tatenlose,tatenlosestes,tatenloseres,tatenlosester,tatenloserer,tatenlosestem,tatenlosesten,tatenlosere,tatenloser,tatenloses,tatenlosen,tatenloserem,tatenlosem,tatenloseren" }, "terrorisieren": { "form": "terrorisieren", "polarity": "-0.0048", "pos": "VB", "sense": "terrorisierst,terrorisierest,terrorisierte,terrorisierten,terrorisiere,terrorisiert,terrorisiertet,terrorisieret,terrorisiertest" }, "teuer": { "form": "teuer", "polarity": "-0.2716", "pos": "JJ", "sense": "teuren,teurem,teure,teurerer,teuerstes,teureres,teureren,teures,teurer,teurerem,teurere,teuerste,teuerster,teuersten,teuerstem" }, "teuflisch": { "form": "teuflisch", "polarity": "-0.1677", "pos": "JJ", "sense": "teuflische,teuflischem,teuflischen,teuflischer,teuflisches,teuflischere,teuflischerem,teuflischeren,teuflischerer,teuflischeres,teuflischste,teuflischstem,teuflischsten,teuflischster,teuflischstes" }, "tot": { "form": "tot", "polarity": "-0.1683", "pos": "JJ", "sense": "tote,totem,toten,toter,totes" }, "totalitär": { "form": "totalitär", "polarity": "-0.0048", "pos": "JJ", "sense": "totalitäre,totalitärem,totalitären,totalitärer,totalitäres,totalitärere,totalitärerem,totalitäreren,totalitärerer,totalitäreres,totalitärste,totalitärstem,totalitärsten,totalitärster,totalitärstes" }, "tragisch": { "form": "tragisch", "polarity": "-0.1847", "pos": "JJ", "sense": "tragische,tragischem,tragischen,tragischer,tragisches,tragischere,tragischerem,tragischeren,tragischerer,tragischeres,tragischste,tragischstem,tragischsten,tragischster,tragischstes" }, "trauern": { "form": "trauern", "polarity": "-0.1945", "pos": "VB", "sense": "trauertet,trauerte,trauer,trauerst,trauertest,getrauert,trauerten,traueren,trauere,trauert" }, "traumatisch": { "form": "traumatisch", "polarity": "-0.0048", "pos": "JJ", "sense": "traumatischste,traumatische,traumatischeres,traumatischerer,traumatischeren,traumatischerem,traumatischster,traumatisches,traumatischer,traumatischstes,traumatischen,traumatischem,traumatischsten,traumatischere,traumatischstem" }, "traumatisieren": { "form": "traumatisieren", "polarity": "-0.0048", "pos": "VB", "sense": "traumatisiere,traumatisierst,traumatisiert,traumatisierest,traumatisiret,traumatisierte,traumatisiertest,traumatisierten,traumatisiertet" }, "traurig": { "form": "traurig", "polarity": "-0.1266", "pos": "JJ", "sense": "traurige,traurigem,traurigen,trauriger,trauriges,traurigere,traurigerem,traurigeren,traurigerer,traurigeres,traurigste,traurigstem,traurigsten,traurigster,traurigstes" }, "trennen": { "form": "trennen", "polarity": "-0.5033", "pos": "VB", "sense": "trennst,trennten,trennte,trenntest,trennt,trenne,trennet,trennest,trenntet,getrennt" }, "trist": { "form": "trist", "polarity": "-0.0424", "pos": "JJ", "sense": "tristeren,tristerem,tristestes,tristeres,tristerer,tristesten,tristestem,tristester,tristeste,tristere,triste,tristen,tristem,tristes,trister" }, "trostlos": { "form": "trostlos", "polarity": "-0.0467", "pos": "JJ", "sense": "trostlosester,trostlosestes,trostlosere,trostloseren,trostloser,trostlosesten,trostloses,trostloserem,trostlosestem,trostloseres,trostloserer,trostlosem,trostloseste,trostlosen,trostlose" }, "trottelig": { "form": "trottelig", "polarity": "-0.0048", "pos": "JJ", "sense": "trotteligeren,trotteligste,trotteligerem,trotteliger,trotteligsten,trotteligstes,trotteligster,trotteliges,trotteligstem,trotteligere,trottelige,trotteligem,trotteligen,trotteligeres,trotteligerer" }, "trotten": { "form": "trotten", "polarity": "-0.0048", "pos": "VB", "sense": "trotette,trottet,getrottet,trotettet,trotettest,trotte,trottest,trotetten,trotteten,trottetet,trottetest,trottete" }, "trotzen": { "form": "trotzen", "polarity": "-0.0048", "pos": "VB", "sense": "trotztest,trotzten,trotzt,trotzte,trotzest,getrotzt,trotze,trotzet,trotztet" }, "träge": { "form": "träge", "polarity": "-0.3272", "pos": "JJ", "sense": "trägestem,trägesten,trägeste,trägem,trägen,trägerem,trägeren,träger,trägerer,trägeres,träges,trägestes,trägest,trägester,trägere" }, "trüb": { "form": "trüb", "polarity": "-0.0048", "pos": "JJ", "sense": "trübste,trübere,trübsten,trüben,trübstem,trübem,trüberer,trüberes,trübster,trübes,trübstes,trüberem,trüberen,trüber,trübe" }, "trügerisch": { "form": "trügerisch", "polarity": "-0.1874", "pos": "JJ", "sense": "trügerischere,trügerische,trügerischstem,trügerischsten,trügerischen,trügerischem,trügerischer,trügerisches,trügerischstes,trügerischster,trügerischerer,trügerischste,trügerischeres,trügerischeren,trügerischerem" }, "turbulent": { "form": "turbulent", "polarity": "-0.0048", "pos": "JJ", "sense": "turbulenten,turbulenterer,turbulenteres,turbulenteren,turbulenterem,turbulentem,turbulentesten,turbulentere,turbulenteste,turbulentestem,turbulentester,turbulentestes,turbulente,turbulentes,turbulenter" }, "tyrannisch": { "form": "tyrannisch", "polarity": "-0.0048", "pos": "JJ", "sense": "tyrannischstes,tyrannischerem,tyrannischeren,tyrannischster,tyrannischerer,tyrannischeres,tyrannischen,tyrannischem,tyrannische,tyrannischere,tyrannisches,tyrannischer,tyrannischsten,tyrannischste,tyrannischstem" }, "täuschen": { "form": "täuschen", "polarity": "-0.6192", "pos": "VB", "sense": "täuschtet,täuschtest,täuschet,täuscht,täusche,getäuscht,täuschst,täuschten,täuschte,täuschest" }, "tödlich": { "form": "tödlich", "polarity": "-0.3487", "pos": "JJ", "sense": "tödlichere,tödlichsten,tödlichem,tödlichen,tödlichstem,tödlichstes,tödlichster,tödliches,tödlichste,tödlicher,tödlicheres,tödlicherer,tödlicheren,tödlicherem,tödliche" }, "töricht": { "form": "töricht", "polarity": "-0.471", "pos": "JJ", "sense": "törichterem,törichtsten,törichteren,törichtstes,törichtster,törichter,törichtes,törichtste,törichtere,törichterer,törichteres,törichte,törichtem,törichten,törichtstem" }, "töten": { "form": "töten", "polarity": "-0.5203", "pos": "VB", "sense": "tötetet,getötet,töte,tötet,tötete,tötest,töten,tötetest,töttet,töteten" }, "umgetauscht": { "form": "umgetauscht", "polarity": "-0.0048", "pos": "JJ", "sense": "umgetauschte,umgetauschtem,umgetauschten,umgetauschter,umgetauschtes" }, "umstritten": { "form": "umstritten", "polarity": "-0.0048", "pos": "JJ", "sense": "umstrittenerer,umstritteneres,umstrittenstes,umstrittenster,umstrittensten,umstrittene,umstrittenstem,umstrittener,umstrittenes,umstrittenen,umstrittenem,umstrittenere,umstritteneren,umstrittenste,umstrittenerem" }, "umständlich": { "form": "umständlich", "polarity": "-0.3487", "pos": "JJ", "sense": "umständliche,umständlichstes,umständlichster,umständlicher,umständliches,umständlichen,umständlichem,umständlichstem,umständlichsten,umständlichste,umständlicherem,umständlicheren,umständlicheres,umständlichere,umständlicherer" }, "umtauschen": { "form": "umtauschen", "polarity": "-0.0048", "pos": "VB", "sense": "umtauschtest,umtausche,umtauscht,umtauschten,umtauschet,umtauschte,umtauschst,umgetauscht,umtauschtet,umtauschest" }, "umweltschädlich": { "form": "umweltschädlich", "polarity": "-0.0048", "pos": "JJ", "sense": "umweltschädlichem,umweltschädlichen,umweltschädlichstem,umweltschädlichsten,umweltschädlicheres,umweltschädlicherer,umweltschädlicher,umweltschädlicheren,umweltschädlichster,umweltschädlicherem,umweltschädliches,umweltschädlichstes,umweltschädliche,umweltschädlichere,umweltschädlichste" }, "unachtsam": { "form": "unachtsam", "polarity": "-0.4488", "pos": "JJ", "sense": "unachtsamster,unachtsamstes,unachtsamer,unachtsames,unachtsamsten,unachtsamem,unachtsamen,unachtsameres,unachtsamerer,unachtsamstem,unachtsame,unachtsamere,unachtsamerem,unachtsameren,unachtsamste" }, "unangemessen": { "form": "unangemessen", "polarity": "-0.4883", "pos": "JJ", "sense": "unangemessenstes,unangemessener,unangemessenes,unangemessenster,unangemessene,unangemessenerer,unangemessenerem,unangemessenste,unangemesseneren,unangemessenere,unangemesseneres,unangemessensten,unangemessenstem,unangemessenem,unangemessenen" }, "unangenehm": { "form": "unangenehm", "polarity": "-0.4691", "pos": "JJ", "sense": "unangenehmstes,unangenehmem,unangenehmster,unangenehmen,unangenehmste,unangenehmere,unangenehmsten,unangenehmer,unangenehmes,unangenehmstem,unangenehme,unangenehmerem,unangenehmeren,unangenehmerer,unangenehmeres" }, "unanständig": { "form": "unanständig", "polarity": "-0.0441", "pos": "JJ", "sense": "unanständigeren,unanständigerem,unanständigen,unanständigem,unanständigerer,unanständiges,unanständiger,unanständigeres,unanständigstes,unanständige,unanständigste,unanständigere,unanständigsten,unanständigstem,unanständigster" }, "unattraktiv": { "form": "unattraktiv", "polarity": "-0.4656", "pos": "JJ", "sense": "unattraktive,unattraktivem,unattraktiven,unattraktiver,unattraktives,unattraktivere,unattraktiverem,unattraktiveren,unattraktiverer,unattraktiveres,unattraktivste,unattraktivstem,unattraktivsten,unattraktivster,unattraktivstes" }, "unaufgefordert": { "form": "unaufgefordert", "polarity": "-0.0048", "pos": "JJ", "sense": "unaufgefordertster,unaufgefordertere,unaufgefordertem,unaufgefordertstes,unaufgeforderten,unaufgeforderteren,unaufgeforderterem,unaufgeforderterer,unaufgeforderteres,unaufgeforderte,unaufgeforderter,unaufgefordertste,unaufgefordertes,unaufgefordertsten,unaufgefordertstem" }, "unaufhörlich": { "form": "unaufhörlich", "polarity": "-0.0048", "pos": "JJ", "sense": "unaufhörliche,unaufhörlichsten,unaufhörlicher,unaufhörliches,unaufhörlichstem,unaufhörlichem,unaufhörlichster,unaufhörlichen,unaufhörlichere,unaufhörlichstes,unaufhörlicheres,unaufhörlicheren,unaufhörlicherem,unaufhörlicherer,unaufhörlichste" }, "unaufrichtig": { "form": "unaufrichtig", "polarity": "-0.3091", "pos": "JJ", "sense": "unaufrichtiges,unaufrichtiger,unaufrichtigere,unaufrichtigstem,unaufrichtigsten,unaufrichtigster,unaufrichtigstes,unaufrichtigem,unaufrichtigen,unaufrichtigste,unaufrichtige,unaufrichtigeres,unaufrichtigerer,unaufrichtigerem,unaufrichtigeren" }, "unbarmherzig": { "form": "unbarmherzig", "polarity": "-0.3257", "pos": "JJ", "sense": "unbarmherzigstes,unbarmherzigster,unbarmherzigsten,unbarmherzigere,unbarmherzigeren,unbarmherziger,unbarmherziges,unbarmherzigerem,unbarmherzigste,unbarmherzigen,unbarmherzigeres,unbarmherzigem,unbarmherzigerer,unbarmherzigstem,unbarmherzige" }, "unbedacht": { "form": "unbedacht", "polarity": "-0.051", "pos": "JJ", "sense": "unbedachteren,unbedachtes,unbedachte,unbedachter,unbedachterem,unbedachtester,unbedachtestes,unbedachtesten,unbedachteste,unbedachtestem,unbedachtem,unbedachten,unbedachterer,unbedachtere,unbedachteres" }, "unbedeutend": { "form": "unbedeutend", "polarity": "-0.6134", "pos": "JJ", "sense": "unbedeutende,unbedeutendste,unbedeutenden,unbedeutenderem,unbedeutendster,unbedeutenderen,unbedeutendstes,unbedeutender,unbedeutendstem,unbedeutendsten,unbedeutendes,unbedeutenderer,unbedeutendere,unbedeutenderes,unbedeutendem" }, "unbefriedigend": { "form": "unbefriedigend", "polarity": "-0.3343", "pos": "JJ", "sense": "unbefriedigenderen,unbefriedigendstem,unbefriedigendsten,unbefriedigenderem,unbefriedigenden,unbefriedigenderer,unbefriedigende,unbefriedigendem,unbefriedigender,unbefriedigendes,unbefriedigendstes,unbefriedigenderes,unbefriedigendster,unbefriedigendere,unbefriedigendste" }, "unbefriedigt": { "form": "unbefriedigt", "polarity": "-0.319", "pos": "JJ", "sense": "unbefriedigteren,unbefriedigtster,unbefriedigtstes,unbefriedigte,unbefriedigtere,unbefriedigtsten,unbefriedigterem,unbefriedigtem,unbefriedigten,unbefriedigter,unbefriedigtes,unbefriedigtstem,unbefriedigteres,unbefriedigterer,unbefriedigtste" }, "unbefugt": { "form": "unbefugt", "polarity": "-0.0048", "pos": "JJ", "sense": "unbefugtestes,unbefugtester,unbefugtere,unbefugtestem,unbefugtesten,unbefugteres,unbefugte,unbefugterer,unbefugteren,unbefugtem,unbefugten,unbefugterem,unbefugtes,unbefugteste,unbefugter" }, "unbegründet": { "form": "unbegründet", "polarity": "-0.4923", "pos": "JJ", "sense": "unbegründetstes,unbegründetster,unbegründeterem,unbegründetsten,unbegründetstem,unbegründeterer,unbegründeteres,unbegründeteren,unbegründetes,unbegründetere,unbegründetste,unbegründete,unbegründeter,unbegründeten,unbegründetem" }, "unbeliebt": { "form": "unbeliebt", "polarity": "-0.3266", "pos": "JJ", "sense": "unbeliebterer,unbeliebteste,unbeliebtester,unbeliebteres,unbeliebtestes,unbeliebtes,unbeliebter,unbeliebtestem,unbeliebtesten,unbeliebten,unbeliebtem,unbeliebterem,unbeliebteren,unbeliebte,unbeliebtere" }, "unbequem": { "form": "unbequem", "polarity": "-0.0237", "pos": "JJ", "sense": "unbequemeres,unbequemerer,unbequemem,unbequemen,unbequemes,unbequemer,unbequemstes,unbequemster,unbequemsten,unbequemstem,unbequemerem,unbequemste,unbequemeren,unbequeme,unbequemere" }, "unberechtigt": { "form": "unberechtigt", "polarity": "-0.3393", "pos": "JJ", "sense": "unberechtigtere,unberechtigteren,unberechtigtes,unberechtigter,unberechtigtstem,unberechtigterem,unberechtigte,unberechtigtsten,unberechtigteres,unberechtigterer,unberechtigtste,unberechtigtster,unberechtigten,unberechtigtstes,unberechtigtem" }, "unbestimmt": { "form": "unbestimmt", "polarity": "-0.3322", "pos": "JJ", "sense": "unbestimmte,unbestimmtestem,unbestimmtesten,unbestimmteres,unbestimmtester,unbestimmterer,unbestimmtestes,unbestimmterem,unbestimmteren,unbestimmtere,unbestimmtes,unbestimmter,unbestimmteste,unbestimmten,unbestimmtem" }, "unbewiesen": { "form": "unbewiesen", "polarity": "-0.3113", "pos": "JJ", "sense": "unbewieseneres,unbewiesener,unbewiesenes,unbewiesenstem,unbewiesensten,unbewiesene,unbewiesenere,unbewiesenste,unbewiesenerem,unbewieseneren,unbewiesenster,unbewiesenem,unbewiesenstes,unbewiesenerer,unbewiesenen" }, "unbotmäßig": { "form": "unbotmäßig", "polarity": "-0.0048", "pos": "JJ", "sense": "unbotmäßiges,unbotmäßiger,unbotmäßigerer,unbotmäßigeres,unbotmäßigen,unbotmäßigem,unbotmäßigsten,unbotmäßigstem,unbotmäßige,unbotmäßigstes,unbotmäßigste,unbotmäßigster,unbotmäßigere,unbotmäßigeren,unbotmäßigerem" }, "unbrauchbar": { "form": "unbrauchbar", "polarity": "-0.4727", "pos": "JJ", "sense": "unbrauchbare,unbrauchbarem,unbrauchbaren,unbrauchbarer,unbrauchbares,unbrauchbarere,unbrauchbarerem,unbrauchbareren,unbrauchbarerer,unbrauchbareres,unbrauchbarste,unbrauchbarstem,unbrauchbarsten,unbrauchbarster,unbrauchbarstes" }, "undankbar": { "form": "undankbar", "polarity": "-0.3156", "pos": "JJ", "sense": "undankbareren,undankbarerem,undankbarerer,undankbareres,undankbarste,undankbarere,undankbarstes,undankbarem,undankbarster,undankbaren,undankbarsten,undankbare,undankbarer,undankbares,undankbarstem" }, "undemokratisch": { "form": "undemokratisch", "polarity": "-0.3259", "pos": "JJ", "sense": "undemokratischen,undemokratischem,undemokratische,undemokratischeres,undemokratischstem,undemokratischsten,undemokratischste,undemokratischster,undemokratischerer,undemokratischere,undemokratischeren,undemokratischstes,undemokratischerem,undemokratischer,undemokratisches" }, "undiplomatisch": { "form": "undiplomatisch", "polarity": "-0.0048", "pos": "JJ", "sense": "undiplomatischstem,undiplomatischerem,undiplomatischsten,undiplomatischstes,undiplomatischster,undiplomatische,undiplomatischere,undiplomatischste,undiplomatisches,undiplomatischeren,undiplomatischer,undiplomatischem,undiplomatischerer,undiplomatischen,undiplomatischeres" }, "undiszipliniert": { "form": "undiszipliniert", "polarity": "-0.0048", "pos": "JJ", "sense": "undisziplinierterem,undisziplinierteren,undisziplinierten,undiszipliniertere,undiszipliniertestes,undiszipliniertem,undiszipliniertester,undisziplinierterer,undisziplinierteres,undisziplinierteste,undiszipliniertesten,undisziplinierte,undisziplinierter,undiszipliniertes,undiszipliniertestem" }, "undurchführbar": { "form": "undurchführbar", "polarity": "-0.0048", "pos": "JJ", "sense": "undurchführbareren,undurchführbarerem,undurchführbarem,undurchführbaren,undurchführbarstem,undurchführbare,undurchführbareres,undurchführbarsten,undurchführbarere,undurchführbarerer,undurchführbarstes,undurchführbarster,undurchführbarer,undurchführbares,undurchführbarste" }, "undurchsichtig": { "form": "undurchsichtig", "polarity": "-0.3279", "pos": "JJ", "sense": "undurchsichtigere,undurchsichtiger,undurchsichtige,undurchsichtigem,undurchsichtigen,undurchsichtigerem,undurchsichtigste,undurchsichtiges,undurchsichtigeren,undurchsichtigstes,undurchsichtigster,undurchsichtigeres,undurchsichtigerer,undurchsichtigsten,undurchsichtigstem" }, "unehrlich": { "form": "unehrlich", "polarity": "-0.327", "pos": "JJ", "sense": "unehrliche,unehrlichstes,unehrlichster,unehrlicherer,unehrlicheres,unehrlichsten,unehrlichstem,unehrlichere,unehrlicherem,unehrlicheren,unehrlichen,unehrlichem,unehrlichste,unehrlicher,unehrliches" }, "uneinig": { "form": "uneinig", "polarity": "-0.0048", "pos": "JJ", "sense": "uneinigeren,uneinigerem,uneinigere,uneinigem,uneinigsten,uneinigstem,uneinigen,uneinigster,uneinigerer,uneiniges,uneinigstes,uneiniger,uneinigeres,uneinigste,uneinige" }, "uneinsichtig": { "form": "uneinsichtig", "polarity": "-0.0048", "pos": "JJ", "sense": "uneinsichtigerer,uneinsichtiger,uneinsichtigeres,uneinsichtigste,uneinsichtiges,uneinsichtigsten,uneinsichtigster,uneinsichtigstes,uneinsichtige,uneinsichtigstem,uneinsichtigerem,uneinsichtigen,uneinsichtigere,uneinsichtigem,uneinsichtigeren" }, "unerbittlich": { "form": "unerbittlich", "polarity": "-0.3318", "pos": "JJ", "sense": "unerbittlichstes,unerbittliche,unerbittlichster,unerbittlichstem,unerbittlichsten,unerbittlichste,unerbittlicherer,unerbittlicheres,unerbittlichere,unerbittlichem,unerbittlichen,unerbittlicherem,unerbittliches,unerbittlicher,unerbittlicheren" }, "unerfreulich": { "form": "unerfreulich", "polarity": "-0.0453", "pos": "JJ", "sense": "unerfreulichster,unerfreulichstes,unerfreulichere,unerfreulicheres,unerfreulicherer,unerfreulicher,unerfreulicherem,unerfreulicheren,unerfreuliches,unerfreulichem,unerfreulichste,unerfreulichen,unerfreuliche,unerfreulichstem,unerfreulichsten" }, "unerhört": { "form": "unerhört", "polarity": "0.0040", "pos": "JJ", "sense": "unerhörtes,unerhörter,unerhörteres,unerhörteste,unerhörterer,unerhörtere,unerhörte,unerhörteren,unerhörterem,unerhörtester,unerhörtestes,unerhörten,unerhörtestem,unerhörtesten,unerhörtem" }, "unerklärlich": { "form": "unerklärlich", "polarity": "-0.0048", "pos": "JJ", "sense": "unerklärlicheres,unerklärlicherer,unerklärlichem,unerklärliche,unerklärlichstem,unerklärlichsten,unerklärlichstes,unerklärlichster,unerklärliches,unerklärlicher,unerklärlichste,unerklärlichere,unerklärlicherem,unerklärlichen,unerklärlicheren" }, "unerlaubt": { "form": "unerlaubt", "polarity": "-0.0048", "pos": "JJ", "sense": "unerlaubtester,unerlaubtesten,unerlaubtestem,unerlaubterer,unerlaubte,unerlaubteres,unerlaubteren,unerlaubtestes,unerlaubterem,unerlaubteste,unerlaubtem,unerlaubtere,unerlaubten,unerlaubtes,unerlaubter" }, "unerquicklich": { "form": "unerquicklich", "polarity": "-0.0048", "pos": "JJ", "sense": "unerquicklichstes,unerquickliche,unerquicklichster,unerquicklichere,unerquicklicherem,unerquicklicheren,unerquicklichstem,unerquicklichsten,unerquicklicherer,unerquicklichste,unerquicklicheres,unerquickliches,unerquicklicher,unerquicklichem,unerquicklichen" }, "unerträglich": { "form": "unerträglich", "polarity": "-0.3454", "pos": "JJ", "sense": "unerträglichstes,unerträglichere,unerträglicherer,unerträglichen,unerträglichem,unerträglichstem,unerträglichsten,unerträgliche,unerträgliches,unerträglicher,unerträglichste,unerträglichster,unerträglicheres,unerträglicherem,unerträglicheren" }, "unerwartet": { "form": "unerwartet", "polarity": "-0.0349", "pos": "JJ", "sense": "unerwartete,unerwarteterer,unerwartetere,unerwarteteres,unerwartetstes,unerwarteteren,unerwarteterem,unerwartetstem,unerwartetsten,unerwartetster,unerwarteten,unerwartetem,unerwartetste,unerwartetes,unerwarteter" }, "unerwiesen": { "form": "unerwiesen", "polarity": "-0.0048", "pos": "JJ", "sense": "unerwiesene,unerwiesenem,unerwiesenen,unerwiesener,unerwiesenes" }, "unerwünscht": { "form": "unerwünscht", "polarity": "-0.3413", "pos": "JJ", "sense": "unerwünschteres,unerwünschte,unerwünschterer,unerwünschtestem,unerwünschtere,unerwünschterem,unerwünschteren,unerwünschteste,unerwünschtem,unerwünschtesten,unerwünschtes,unerwünschter,unerwünschtestes,unerwünschtester,unerwünschten" }, "unfair": { "form": "unfair", "polarity": "-0.8827", "pos": "JJ", "sense": "unfairen,unfairere,unfairste,unfairem,unfaireres,unfaireren,unfairerem,unfaire,unfairer,unfairerer,unfaires,unfairstem,unfairsten,unfairstes,unfairster" }, "unfein": { "form": "unfein", "polarity": "-0.0048", "pos": "JJ", "sense": "unfeiner,unfeinerer,unfeines,unfeinerem,unfeineren,unfeineres,unfeinem,unfeinen,unfeinste,unfeinster,unfeinstes,unfeinere,unfeinstem,unfeinsten,unfeine" }, "unfreiwillig": { "form": "unfreiwillig", "polarity": "-0.3382", "pos": "JJ", "sense": "unfreiwilligstem,unfreiwilligsten,unfreiwilliges,unfreiwilliger,unfreiwilligste,unfreiwilligem,unfreiwilligster,unfreiwilligen,unfreiwilligstes,unfreiwilligeren,unfreiwilligerem,unfreiwilligeres,unfreiwilligerer,unfreiwilligere,unfreiwillige" }, "unfreundlich": { "form": "unfreundlich", "polarity": "-0.3407", "pos": "JJ", "sense": "unfreundliche,unfreundlicher,unfreundliches,unfreundlichem,unfreundlichen,unfreundlichere,unfreundlichstes,unfreundlichste,unfreundlicheres,unfreundlichster,unfreundlicherer,unfreundlichstem,unfreundlichsten,unfreundlicheren,unfreundlicherem" }, "unfähig": { "form": "unfähig", "polarity": "-0.4787", "pos": "JJ", "sense": "unfähige,unfähigerer,unfähigeres,unfähigeren,unfähigerem,unfähigste,unfähigem,unfähigen,unfähigstem,unfähigsten,unfähigstes,unfähiger,unfähigere,unfähiges,unfähigster" }, "ungebeten": { "form": "ungebeten", "polarity": "-0.0048", "pos": "JJ", "sense": "ungebetene,ungebetenem,ungebetenen,ungebetener,ungebetenes,ungebetenere,ungebetenerem,ungebeteneren,ungebetenerer,ungebeteneres,ungebetenste,ungebetenstem,ungebetensten,ungebetenster,ungebetenstes" }, "ungebührlich": { "form": "ungebührlich", "polarity": "-0.0048", "pos": "JJ", "sense": "ungebührliche,ungebührlicheres,ungebührlicherer,ungebührlicherem,ungebührlicheren,ungebührlichster,ungebührlichstes,ungebührlicher,ungebührliches,ungebührlichem,ungebührlichen,ungebührlichere,ungebührlichste,ungebührlichstem,ungebührlichsten" }, "ungedeckt": { "form": "ungedeckt", "polarity": "-0.0048", "pos": "JJ", "sense": "ungedecktem,ungedeckte,ungedeckten,ungedeckter,ungedecktes" }, "ungeduldig": { "form": "ungeduldig", "polarity": "-0.0405", "pos": "JJ", "sense": "ungeduldigerem,ungeduldigeren,ungeduldigerer,ungeduldigeres,ungeduldigste,ungeduldigsten,ungeduldiger,ungeduldigster,ungeduldigstes,ungeduldigere,ungeduldiges,ungeduldigem,ungeduldige,ungeduldigen,ungeduldigstem" }, "ungeeignet": { "form": "ungeeignet", "polarity": "-0.6394", "pos": "JJ", "sense": "ungeeignete,ungeeignetster,ungeeignetere,ungeeignetsten,ungeeignetstem,ungeeigneterer,ungeeigneter,ungeeignetes,ungeeignetem,ungeeigneten,ungeeigneteres,ungeeignetste,ungeeignetstes,ungeeigneterem,ungeeigneteren" }, "ungeheuer": { "form": "ungeheuer", "polarity": "-0.0048", "pos": "JJ", "sense": "ungeheureren,ungeheuersten,ungeheurerem,ungeheurere,ungeheuerstes,ungeheuerster,ungeheuerste,ungeheureres,ungeheuerstem,ungeheurerer,ungeheure,ungeheuren,ungeheurem,ungeheures,ungeheurer" }, "ungeheuerlich": { "form": "ungeheuerlich", "polarity": "-0.0048", "pos": "JJ", "sense": "ungeheuerlichen,ungeheuerlichem,ungeheuerlicherem,ungeheuerlicheren,ungeheuerlicher,ungeheuerliche,ungeheuerliches,ungeheuerlichsten,ungeheuerlichstem,ungeheuerlichstes,ungeheuerlichster,ungeheuerlicherer,ungeheuerlichste,ungeheuerlicheres,ungeheuerlichere" }, "ungehobelt": { "form": "ungehobelt", "polarity": "-0.0048", "pos": "JJ", "sense": "ungehobeltem,ungehobelten,ungehobelter,ungehobeltste,ungehobeltes,ungehobelteres,ungehobeltere,ungehobelterer,ungehobelterem,ungehobelteren,ungehobeltstes,ungehobeltster,ungehobelte,ungehobeltstem,ungehobeltsten" }, "ungehorsam": { "form": "ungehorsam", "polarity": "-0.3176", "pos": "JJ", "sense": "ungehorsame,ungehorsameren,ungehorsamerem,ungehorsamerer,ungehorsamere,ungehorsameres,ungehorsamsten,ungehorsamstem,ungehorsames,ungehorsamer,ungehorsamen,ungehorsamstes,ungehorsamster,ungehorsamem,ungehorsamste" }, "ungeliebt": { "form": "ungeliebt", "polarity": "-0.4532", "pos": "JJ", "sense": "ungeliebtere,ungeliebte,ungeliebten,ungeliebtestes,ungeliebtester,ungeliebtem,ungeliebtesten,ungeliebtes,ungeliebter,ungeliebtestem,ungeliebteres,ungeliebterer,ungeliebteste,ungeliebteren,ungeliebterem" }, "ungemütlich": { "form": "ungemütlich", "polarity": "-0.0313", "pos": "JJ", "sense": "ungemütlicheres,ungemütliches,ungemütliche,ungemütlicherer,ungemütlicher,ungemütlichem,ungemütlichen,ungemütlicheren,ungemütlicherem,ungemütlichste,ungemütlichster,ungemütlichstes,ungemütlichere,ungemütlichstem,ungemütlichsten" }, "ungenau": { "form": "ungenau", "polarity": "-0.497", "pos": "JJ", "sense": "ungenaue,ungenaues,ungenauer,ungenauere,ungenauesten,ungenauestem,ungenauste,ungenauem,ungenaust,ungenauen,ungenauestes,ungenauester,ungenaustes,ungenaueren,ungenauerem,ungenauster,ungenauerer,ungenaueres,ungenaueste,ungenaustem,ungenausten" }, "ungeordnet": { "form": "ungeordnet", "polarity": "-0.0048", "pos": "JJ", "sense": "ungeordnetste,ungeordnetstes,ungeordneteren,ungeordneterem,ungeordnetster,ungeordneterer,ungeordnete,ungeordneteres,ungeordnetem,ungeordnetsten,ungeordnetstem,ungeordneten,ungeordneter,ungeordnetere,ungeordnetes" }, "ungerecht": { "form": "ungerecht", "polarity": "-0.7844", "pos": "JJ", "sense": "ungerechter,ungerechtes,ungerechteste,ungerechterem,ungerechteren,ungerechtestes,ungerechtester,ungerechte,ungerechtestem,ungerechterer,ungerechtere,ungerechtesten,ungerechteres,ungerechtem,ungerechten" }, "ungerechtfertigt": { "form": "ungerechtfertigt", "polarity": "-0.4701", "pos": "JJ", "sense": "ungerechtfertigteren,ungerechtfertigtste,ungerechtfertigterem,ungerechtfertigterer,ungerechtfertigteres,ungerechtfertigte,ungerechtfertigtes,ungerechtfertigter,ungerechtfertigtem,ungerechtfertigten,ungerechtfertigtsten,ungerechtfertigtere,ungerechtfertigtstem,ungerechtfertigtstes,ungerechtfertigtster" }, "ungeschickt": { "form": "ungeschickt", "polarity": "-0.6087", "pos": "JJ", "sense": "ungeschicktes,ungeschicktester,ungeschickter,ungeschicktestem,ungeschicktesten,ungeschickterem,ungeschickteren,ungeschicktere,ungeschickteres,ungeschickterer,ungeschickte,ungeschickten,ungeschickteste,ungeschicktestes,ungeschicktem" }, "ungeschminkt": { "form": "ungeschminkt", "polarity": "-0.0048", "pos": "JJ", "sense": "ungeschminktestem,ungeschminktesten,ungeschminkterem,ungeschminkteste,ungeschminktere,ungeschminktester,ungeschminkte,ungeschminktestes,ungeschminkten,ungeschminktem,ungeschminkter,ungeschminkteren,ungeschminktes,ungeschminkterer,ungeschminkteres" }, "ungesetzlich": { "form": "ungesetzlich", "polarity": "-0.0048", "pos": "JJ", "sense": "ungesetzliche,ungesetzlichstes,ungesetzlichere,ungesetzlichste,ungesetzlichster,ungesetzlicheres,ungesetzlicherer,ungesetzlichsten,ungesetzlichstem,ungesetzlicheren,ungesetzlichen,ungesetzlicherem,ungesetzlichem,ungesetzliches,ungesetzlicher" }, "ungesund": { "form": "ungesund", "polarity": "-0.1793", "pos": "JJ", "sense": "ungesündestem,ungesündesten,ungesündestes,ungesunderen,ungesündester,ungesunderem,ungesündeste,ungesundester,ungesunderes,ungesundestes,ungesunderer,ungesundesten,ungesundem,ungesundere,ungesunder,ungesundes,ungesunden,ungesündere,ungesunde,ungesünderes,ungesünderer,ungesundeste,ungesünderen,ungesundestem,ungesünderem,ungesünder" }, "ungewohnt": { "form": "ungewohnt", "polarity": "-0.0243", "pos": "JJ", "sense": "ungewohntesten,ungewohntester,ungewohnterer,ungewohntestes,ungewohnteres,ungewohnteren,ungewohnterem,ungewohntere,ungewohnte,ungewohntem,ungewohnteste,ungewohntes,ungewohnter,ungewohntestem,ungewohnten" }, "ungewollt": { "form": "ungewollt", "polarity": "-0.4781", "pos": "JJ", "sense": "ungewollte,ungewolltem,ungewollten,ungewollter,ungewolltes" }, "ungezogen": { "form": "ungezogen", "polarity": "-0.3124", "pos": "JJ", "sense": "ungezogene,ungezogener,ungezogenes,ungezogenste,ungezogenstem,ungezogensten,ungezognerem,ungezogenster,ungezogneren,ungezogenstes,ungezogneres,ungezognerer,ungezognere,ungezogenen,ungezogeneren,ungezogenem,ungezogner,ungezogenere,ungezogenerem,ungezogenerer,ungezogeneres" }, "ungeübt": { "form": "ungeübt", "polarity": "-0.0048", "pos": "JJ", "sense": "ungeübten,ungeübtere,ungeübteste,ungeübter,ungeübterer,ungeübtes,ungeübteres,ungeübtestes,ungeübtester,ungeübte,ungeübtesten,ungeübteren,ungeübterem,ungeübtestem,ungeübtem" }, "unglaubwürdig": { "form": "unglaubwürdig", "polarity": "-0.2007", "pos": "JJ", "sense": "unglaubwürdigere,unglaubwürdigstem,unglaubwürdigsten,unglaubwürdigerer,unglaubwürdige,unglaubwürdigeres,unglaubwürdigeren,unglaubwürdigerem,unglaubwürdiges,unglaubwürdiger,unglaubwürdigem,unglaubwürdigen,unglaubwürdigster,unglaubwürdigste,unglaubwürdigstes" }, "ungleich": { "form": "ungleich", "polarity": "-0.0048", "pos": "JJ", "sense": "ungleiche,ungleichem,ungleichen,ungleicher,ungleiches" }, "unglücklich": { "form": "unglücklich", "polarity": "-0.301", "pos": "JJ", "sense": "unglücklichsten,unglücklichstem,unglücklichstes,unglücklichster,unglückliche,unglücklicherem,unglücklicheren,unglücklicherer,unglücklichere,unglücklicheres,unglücklichste,unglückliches,unglücklicher,unglücklichen,unglücklichem" }, "ungültig": { "form": "ungültig", "polarity": "-0.3485", "pos": "JJ", "sense": "ungültiges,ungültiger,ungültigstes,ungültigster,ungültigere,ungültigstem,ungültigsten,ungültigeres,ungültigerer,ungültigerem,ungültigeren,ungültige,ungültigen,ungültigste,ungültigem" }, "ungünstig": { "form": "ungünstig", "polarity": "-0.767", "pos": "JJ", "sense": "ungünstige,ungünstigeren,ungünstigerem,ungünstigen,ungünstiger,ungünstiges,ungünstigerer,ungünstigem,ungünstigeres,ungünstigere,ungünstigste,ungünstigstem,ungünstigsten,ungünstigster,ungünstigstes" }, "unheilbar": { "form": "unheilbar", "polarity": "-0.0048", "pos": "JJ", "sense": "unheilbare,unheilbarem,unheilbaren,unheilbarer,unheilbares" }, "unheilvoll": { "form": "unheilvoll", "polarity": "-0.0048", "pos": "JJ", "sense": "unheilvolle,unheilvollere,unheilvollem,unheilvollen,unheilvollsten,unheilvollstem,unheilvoller,unheilvollster,unheilvollstes,unheilvollerem,unheilvolles,unheilvollste,unheilvollerer,unheilvolleres,unheilvolleren" }, "unhöflich": { "form": "unhöflich", "polarity": "-0.0048", "pos": "JJ", "sense": "unhöflichste,unhöflichstes,unhöflichen,unhöflichem,unhöfliches,unhöflicher,unhöfliche,unhöflichsten,unhöflicherem,unhöflicheren,unhöflichstem,unhöflichere,unhöflichster,unhöflicheres,unhöflicherer" }, "uninformiert": { "form": "uninformiert", "polarity": "-0.0048", "pos": "JJ", "sense": "uninformiertes,uninformierter,uninformierterem,uninformiertem,uninformierteren,uninformierten,uninformiertstes,uninformiertster,uninformierte,uninformierterer,uninformierteres,uninformiertsten,uninformiertstem,uninformiertere,uninformiertste" }, "unklar": { "form": "unklar", "polarity": "-0.5023", "pos": "JJ", "sense": "unklarerem,unklareren,unklarsten,unklaren,unklarstem,unklarem,unklarerer,unklareres,unklarere,unklarste,unklarstes,unklare,unklarster,unklares,unklarer" }, "unklug": { "form": "unklug", "polarity": "-0.4604", "pos": "JJ", "sense": "unklugere,unklugste,unkluge,unklugen,unklugem,unkluger,unklugeren,unklugerem,unkluges,unklugeres,unklugerer,unklugstes,unklugster,unklugstem,unklugsten" }, "unkorrekt": { "form": "unkorrekt", "polarity": "-0.3247", "pos": "JJ", "sense": "unkorrektere,unkorrektester,unkorrektestes,unkorrekteres,unkorrektes,unkorrekter,unkorrektestem,unkorrekten,unkorrektem,unkorrektesten,unkorrekterer,unkorrekte,unkorrekterem,unkorrekteren,unkorrekteste" }, "unkritisch": { "form": "unkritisch", "polarity": "-0.1934", "pos": "JJ", "sense": "unkritischerer,unkritischere,unkritischeres,unkritischeren,unkritisches,unkritische,unkritischer,unkritischem,unkritischen,unkritischsten,unkritischstem,unkritischerem,unkritischste,unkritischstes,unkritischster" }, "unlauter": { "form": "unlauter", "polarity": "-0.0048", "pos": "JJ", "sense": "unlauterstes,unlautererer,unlauterste,unlauterster,unlautereres,unlauteres,unlautereren,unlautrere,unlautreren,unlautrer,unlautrerem,unlautere,unlauteren,unlauterstem,unlauterem,unlautrerer,unlautersten,unlauterer,unlauterere,unlautreres,unlautererem" }, "unliebsam": { "form": "unliebsam", "polarity": "-0.0048", "pos": "JJ", "sense": "unliebsame,unliebsamstes,unliebsamster,unliebsamem,unliebsamen,unliebsames,unliebsamste,unliebsamsten,unliebsamerem,unliebsameren,unliebsamstem,unliebsamer,unliebsamerer,unliebsameres,unliebsamere" }, "unlogisch": { "form": "unlogisch", "polarity": "-0.4817", "pos": "JJ", "sense": "unlogischere,unlogischerem,unlogische,unlogischste,unlogischem,unlogischen,unlogischstes,unlogischster,unlogischer,unlogischeren,unlogischstem,unlogisches,unlogischerer,unlogischeres,unlogischsten" }, "unmenschlich": { "form": "unmenschlich", "polarity": "-0.4724", "pos": "JJ", "sense": "unmenschlichste,unmenschlichster,unmenschlichstes,unmenschlichstem,unmenschlichsten,unmenschlichem,unmenschlichere,unmenschlichen,unmenschlicheres,unmenschlicherer,unmenschliche,unmenschlicheren,unmenschliches,unmenschlicher,unmenschlicherem" }, "unmoralisch": { "form": "unmoralisch", "polarity": "-0.6224", "pos": "JJ", "sense": "unmoralische,unmoralischem,unmoralischen,unmoralischer,unmoralisches,unmoralischere,unmoralischerem,unmoralischeren,unmoralischerer,unmoralischeres,unmoralischste,unmoralischstem,unmoralischsten,unmoralischster,unmoralischstes" }, "unmöglich": { "form": "unmöglich", "polarity": "-0.3559", "pos": "JJ", "sense": "unmöglicheren,unmöglicherem,unmöglichem,unmöglichstem,unmöglichsten,unmöglichstes,unmöglichster,unmöglicher,unmöglichere,unmögliches,unmöglichen,unmögliche,unmöglicheres,unmöglicherer,unmöglichste" }, "unnötig": { "form": "unnötig", "polarity": "-0.9463", "pos": "JJ", "sense": "unnötigstes,unnötigere,unnötige,unnötigeren,unnötigen,unnötigerem,unnötigem,unnötiges,unnötigste,unnötiger,unnötigster,unnötigeres,unnötigerer,unnötigstem,unnötigsten" }, "unnütz": { "form": "unnütz", "polarity": "-0.6073", "pos": "JJ", "sense": "unnützerer,unnützerem,unnützere,unnützeren,unnütze,unnützeres,unnützester,unnützestes,unnützer,unnützes,unnützestem,unnützesten,unnützen,unnützem,unnützeste" }, "unpassend": { "form": "unpassend", "polarity": "-0.3261", "pos": "JJ", "sense": "unpassenderen,unpassenderem,unpassendsten,unpassendstem,unpassendere,unpassende,unpassendster,unpassenderes,unpassenderer,unpassender,unpassendes,unpassendem,unpassenden,unpassendste,unpassendstes" }, "unpersönlich": { "form": "unpersönlich", "polarity": "-0.0476", "pos": "JJ", "sense": "unpersönlichstes,unpersönlichere,unpersönlicheres,unpersönlichsten,unpersönlicher,unpersönliches,unpersönlichste,unpersönlichstem,unpersönlichem,unpersönlichster,unpersönlichen,unpersönlicherer,unpersönlicherem,unpersönlicheren,unpersönliche" }, "unpopulär": { "form": "unpopulär", "polarity": "-0.0048", "pos": "JJ", "sense": "unpopulärster,unpopulärstes,unpopulärste,unpopulärsten,unpopulärstem,unpopulärere,unpopuläre,unpopuläres,unpopulärer,unpopuläreres,unpopulärem,unpopulärerer,unpopulären,unpopuläreren,unpopulärerem" }, "unpraktisch": { "form": "unpraktisch", "polarity": "-0.3182", "pos": "JJ", "sense": "unpraktische,unpraktischem,unpraktischen,unpraktischer,unpraktisches,unpraktischere" }, "unqualifiziert": { "form": "unqualifiziert", "polarity": "-0.3153", "pos": "JJ", "sense": "unqualifiziertester,unqualifizierte,unqualifiziertem,unqualifiziertestem,unqualifiziertesten,unqualifizierten,unqualifiziertere,unqualifiziertes,unqualifizierter,unqualifizierteres,unqualifizierterer,unqualifiziertestes,unqualifizierteren,unqualifizierterem,unqualifizierteste" }, "unredlich": { "form": "unredlich", "polarity": "-0.3248", "pos": "JJ", "sense": "unredliche,unredlicherem,unredlichste,unredlichsten,unredlicherer,unredlichere,unredlicheres,unredliches,unredlichstem,unredlicheren,unredlicher,unredlichster,unredlichem,unredlichstes,unredlichen" }, "unregelmäßig": { "form": "unregelmäßig", "polarity": "-0.0048", "pos": "JJ", "sense": "unregelmäßigstes,unregelmäßigster,unregelmäßiger,unregelmäßiges,unregelmäßigste,unregelmäßigeren,unregelmäßigerem,unregelmäßigerer,unregelmäßigeres,unregelmäßige,unregelmäßigem,unregelmäßigen,unregelmäßigere,unregelmäßigsten,unregelmäßigstem" }, "unrentabel": { "form": "unrentabel", "polarity": "-0.0048", "pos": "JJ", "sense": "unrentable,unrentablerer,unrentableres,unrentabelster,unrentabelste,unrentabelstes,unrentablere,unrentableren,unrentablerem,unrentables,unrentabelsten,unrentabler,unrentablen,unrentablem,unrentabelstem" }, "unruhig": { "form": "unruhig", "polarity": "-0.0551", "pos": "JJ", "sense": "unruhigstem,unruhigerer,unruhigeres,unruhiges,unruhigeren,unruhigsten,unruhigste,unruhigstes,unruhiger,unruhigster,unruhigen,unruhigem,unruhigerem,unruhige,unruhigere" }, "unrühmlich": { "form": "unrühmlich", "polarity": "-0.0048", "pos": "JJ", "sense": "unrühmlichen,unrühmlichere,unrühmlichem,unrühmlicherem,unrühmlicher,unrühmliches,unrühmlichster,unrühmlichstes,unrühmlicheren,unrühmlichstem,unrühmliche,unrühmlicherer,unrühmlicheres,unrühmlichsten,unrühmlichste" }, "unsachgemäß": { "form": "unsachgemäß", "polarity": "-0.3271", "pos": "JJ", "sense": "unsachgemäße,unsachgemäßem,unsachgemäßen,unsachgemäßer,unsachgemäßes,unsachgemäßere,unsachgemäßerem,unsachgemäßeren,unsachgemäßerer,unsachgemäßeres,unsachgemäßeste,unsachgemäßestem,unsachgemäßesten,unsachgemäßester,unsachgemäßestes" }, "unsauber": { "form": "unsauber", "polarity": "-0.4713", "pos": "JJ", "sense": "unsauberstes,unsauberere,unsaubere,unsauberste,unsaubrerem,unsaubereren,unsauberes,unsauberer,unsaubererem,unsaubrere,unsauberen,unsauberem,unsaubreren,unsaubrer,unsaubreres,unsaubersten,unsaubrerer,unsaubereres,unsauberstem,unsaubererer,unsauberster" }, "unscharf": { "form": "unscharf", "polarity": "-0.327", "pos": "JJ", "sense": "unscharfe,unscharfem,unscharfen,unscharfer,unscharfes,unschärfere,unschärferem,unschärferen,unschärferer,unschärferes,unschärfste,unschärfstem,unschärfsten,unschärfster,unschärfstes" }, "unschön": { "form": "unschön", "polarity": "-0.4486", "pos": "JJ", "sense": "unschöner,unschönes,unschönen,unschöne,unschöneres,unschönere,unschönerer,unschöneren,unschönerem,unschönste,unschönsten,unschönstem,unschönstes,unschönster,unschönem" }, "unselig": { "form": "unselig", "polarity": "-0.0048", "pos": "JJ", "sense": "unseligstes,unseligster,unseligeres,unseligsten,unseligerer,unseligstem,unseligerem,unseligeren,unseligste,unseligem,unseligere,unselige,unseligen,unseliges,unseliger" }, "unseriös": { "form": "unseriös", "polarity": "-0.3373", "pos": "JJ", "sense": "unseriösem,unseriösesten,unseriöser,unseriösere,unseriöses,unseriösester,unseriöseste,unseriösestes,unseriösen,unseriöseren,unseriöserem,unseriösestem,unseriöserer,unseriöse,unseriöseres" }, "unsicher": { "form": "unsicher", "polarity": "-0.6268", "pos": "JJ", "sense": "unsicherere,unsichrere,unsichreren,unsichrerem,unsichrer,unsicheren,unsicherstem,unsichersten,unsicherem,unsicherer,unsicherster,unsicheres,unsichrerer,unsichreres,unsichererer,unsicherstes,unsichereres,unsicherste,unsichere,unsichereren,unsichererem" }, "unsinnig": { "form": "unsinnig", "polarity": "-0.3516", "pos": "JJ", "sense": "unsinnige,unsinnigem,unsinnigen,unsinniger,unsinniges,unsinnigere,unsinnigerem,unsinnigeren,unsinnigerer,unsinnigeres,unsinnigste,unsinnigstem,unsinnigsten,unsinnigster,unsinnigstes" }, "unsittlich": { "form": "unsittlich", "polarity": "-0.0048", "pos": "JJ", "sense": "unsittlichster,unsittlichsten,unsittlichstem,unsittliches,unsittlicher,unsittliche,unsittlichen,unsittlichem,unsittlichste,unsittlicherer,unsittlicheres,unsittlichere,unsittlicherem,unsittlicheren,unsittlichstes" }, "unsolidarisch": { "form": "unsolidarisch", "polarity": "-0.0048", "pos": "JJ", "sense": "unsolidarischem,unsolidarischen,unsolidarischer,unsolidarischster,unsolidarischstes,unsolidarischerem,unsolidarischeren,unsolidarischerer,unsolidarischste,unsolidarischeres,unsolidarischere,unsolidarische,unsolidarisches,unsolidarischstem,unsolidarischsten" }, "unsolid": { "form": "unsolid", "polarity": "-0.0048", "pos": "JJ", "sense": "unsolide,unsolidem,unsoliden,unsolider,unsolides,unsolidere,unsoliderem,unsolideren,unsoliderer,unsolideres,unsolideste,unsolidestem,unsolidesten,unsolidester,unsolidestes" }, "unsozial": { "form": "unsozial", "polarity": "-0.4614", "pos": "JJ", "sense": "unsoziale,unsozialem,unsozialen,unsoziales,unsozialer,unsozialster,unsozialerem,unsozialeren,unsozialere,unsozialstes,unsozialsten,unsozialstem,unsozialerer,unsozialeres,unsozialste" }, "unsportlich": { "form": "unsportlich", "polarity": "-0.32", "pos": "JJ", "sense": "unsportlichere,unsportlicher,unsportlichste,unsportliches,unsportlichen,unsportliche,unsportlichem,unsportlicherem,unsportlicheren,unsportlichsten,unsportlichstem,unsportlicherer,unsportlichster,unsportlicheres,unsportlichstes" }, "unstetig": { "form": "unstetig", "polarity": "-0.0048", "pos": "JJ", "sense": "unstetigstes,unstetigere,unstetigster,unstetigstem,unstetigsten,unstetiges,unstetigste,unstetiger,unstetigerer,unstetigeres,unstetigen,unstetigem,unstetigeren,unstetigerem,unstetige" }, "unsäglich": { "form": "unsäglich", "polarity": "-0.1834", "pos": "JJ", "sense": "unsäglichstem,unsäglichsten,unsäglichere,unsäglichem,unsäglicheres,unsäglichster,unsäglichstes,unsägliche,unsäglicherer,unsäglicher,unsägliches,unsäglicherem,unsäglicheren,unsäglichen,unsäglichste" }, "untauglich": { "form": "untauglich", "polarity": "-0.5944", "pos": "JJ", "sense": "untauglichstes,untauglichster,untauglichere,untauglicherem,untauglichstem,untauglichsten,untaugliches,untauglichem,untauglicheres,untauglichen,untauglicherer,untauglicher,untauglicheren,untaugliche,untauglichste" }, "unten": { "form": "unten", "polarity": "-0.3334", "pos": "RB", "sense": "" }, "unterbelichten": { "form": "unterbelichten", "polarity": "-0.0426", "pos": "VB", "sense": "unterbelichte,unterbelichtest,unterbelichtet,unterbelichtete,unterbelichtetest,unterbelichteten,unterbelichtetet" }, "unterbrechen": { "form": "unterbrechen", "polarity": "-0.0048", "pos": "VB", "sense": "unterbreche,unterbrichst,unterbricht,unterbrecht,unterbrechest,unterbrechet,unterbrach,unterbrachst,unterbrachen,unterbracht,unterbräche,unterbrächest,unterbrächst,unterbrächen,unterbrächet,unterbrächt" }, "unterdrücken": { "form": "unterdrücken", "polarity": "-0.4825", "pos": "VB", "sense": "unterdrücktet,unterdrückst,unterdrückte,unterdrückt,unterdrückest,unterdrücktest,unterdrücket,unterdrücke,untergedrückt,unterdrückten" }, "unterentwickelt": { "form": "unterentwickelt", "polarity": "-0.3245", "pos": "JJ", "sense": "unterentwickelten,unterentwickelteren,unterentwickeltem,unterentwickeltere,unterentwickelterem,unterentwickelter,unterentwickeltes,unterentwickelterer,unterentwickelteres,unterentwickeltste,unterentwickeltstem,unterentwickeltsten,unterentwickelte,unterentwickeltster,unterentwickeltstes" }, "untergehen": { "form": "untergehen", "polarity": "-0.0048", "pos": "VB", "sense": "untergehe,untergehst,untergeht,untergehest,untergehet,unterging,untergingst,untergingen,untergingt,unterginge,untergingest,unterginget,untergegangen" }, "untergraben": { "form": "untergraben", "polarity": "-0.0048", "pos": "VB", "sense": "untergrabe,untergräbst,untergräbt,untergrabt,untergrabest,untergrabet,untergrub,untergrubst,untergruben,untergrubt,untergrübe,untergrübest,untergrübst,untergrüben,untergrübet,untergrübt,untergegraben" }, "unterirdisch": { "form": "unterirdisch", "polarity": "-0.4715", "pos": "JJ", "sense": "unterirdischen,unterirdischem,unterirdischstes,unterirdischste,unterirdischster,unterirdischer,unterirdische,unterirdischerem,unterirdischsten,unterirdisches,unterirdischeren,unterirdischere,unterirdischeres,unterirdischerer,unterirdischstem" }, "unterlassen": { "form": "unterlassen", "polarity": "-0.3488", "pos": "VB", "sense": "unterlasse,unterlässt,unterläßt,unterlasst,unterlaßt,unterlassest,unterlasset,unterließ,unterließest,unterließt,unterließen,unterließe,unterließet,unterlassen" }, "unterlaufen": { "form": "unterlaufen", "polarity": "-0.3438", "pos": "VB", "sense": "unterlaufe,unterläufst,unterläuft,unterlauft,unterlaufest,unterlaufet,unterlief,unterliefst,unterliefen,unterlieft,unterliefe,unterliefest,unterliefet,unterlaufen" }, "unterliegen": { "form": "unterliegen", "polarity": "-0.0048", "pos": "VB", "sense": "unterliege,unterliegst,unterliegt,unterliegest,unterlieget,unterlag,unterlagst,unterlagen,unterlagt,unterläge,unterlägest,unterlägst,unterlägen,unterläget,unterlägt" }, "unterstellen": { "form": "unterstellen", "polarity": "-0.4961", "pos": "VB", "sense": "untergestellt,unterstellte,unterstellten,unterstellst,unterstellest,unterstelltet,unterstelltest,unterstellt,unterstelle,unterstellet" }, "unterwerfen": { "form": "unterwerfen", "polarity": "-0.3393", "pos": "VB", "sense": "unterwerfe,unterwirfst,unterwirft,unterwerft,unterwerfest,unterwerfet,unterwarf,unterwarfst,unterwarfen,unterwarft,unterwürfe,unterwürfest,unterwürfst,unterwürfen,unterwürfet,unterwürft,unterworfen" }, "unterwürfig": { "form": "unterwürfig", "polarity": "-0.0533", "pos": "JJ", "sense": "unterwürfigste,unterwürfigstes,unterwürfigerer,unterwürfigster,unterwürfigem,unterwürfigeres,unterwürfigstem,unterwürfigsten,unterwürfiger,unterwürfiges,unterwürfigen,unterwürfigeren,unterwürfigerem,unterwürfige,unterwürfigere" }, "untragbar": { "form": "untragbar", "polarity": "-0.3247", "pos": "JJ", "sense": "untragbarer,untragbares,untragbareren,untragbarstem,untragbare,untragbarerem,untragbareres,untragbarerer,untragbarste,untragbarsten,untragbaren,untragbarem,untragbarere,untragbarstes,untragbarster" }, "untreu": { "form": "untreu", "polarity": "-0.3222", "pos": "JJ", "sense": "untreueres,untreuestem,untreue,untreustem,untreusten,untreuerer,untreustes,untreuster,untreueste,untreuer,untreues,untreuestes,untreuester,untreuen,untreuesten,untreuem,untreuste,untreuere,untreueren,untreuerem,untreuest" }, "untröstlich": { "form": "untröstlich", "polarity": "-0.3139", "pos": "JJ", "sense": "untröstlichstes,untröstlichster,untröstlicher,untröstlichen,untröstlichem,untröstlichere,untröstlicheres,untröstlicherer,untröstlicheren,untröstliche,untröstlicherem,untröstlichste,untröstlichstem,untröstlichsten,untröstliches" }, "unverantwortlich": { "form": "unverantwortlich", "polarity": "-0.4889", "pos": "JJ", "sense": "unverantwortlichste,unverantwortlichen,unverantwortlichem,unverantwortliches,unverantwortlicher,unverantwortlichere,unverantwortlicheres,unverantwortlicherer,unverantwortlicherem,unverantwortlichstes,unverantwortlicheren,unverantwortlichsten,unverantwortlichstem,unverantwortliche,unverantwortlichster" }, "unverantwortliche": { "form": "unverantwortliche", "polarity": "-0.3242", "pos": "JJ", "sense": "" }, "unverbesserlich": { "form": "unverbesserlich", "polarity": "-0.4363", "pos": "JJ", "sense": "unverbesserlicherem,unverbesserlicheren,unverbesserlichsten,unverbesserlicher,unverbesserlicherer,unverbesserlicheres,unverbesserliches,unverbesserlichstem,unverbesserlichster,unverbesserlichen,unverbesserlichstes,unverbesserlichem,unverbesserlichere,unverbesserliche,unverbesserlichste" }, "unvereinbar": { "form": "unvereinbar", "polarity": "-0.0048", "pos": "JJ", "sense": "unvereinbareres,unvereinbarem,unvereinbarerer,unvereinbarstem,unvereinbarsten,unvereinbaren,unvereinbareren,unvereinbarerem,unvereinbarste,unvereinbare,unvereinbarer,unvereinbares,unvereinbarstes,unvereinbarster,unvereinbarere" }, "unverhältnismäßig": { "form": "unverhältnismäßig", "polarity": "-0.0048", "pos": "JJ", "sense": "unverhältnismäßigste,unverhältnismäßigerer,unverhältnismäßigeres,unverhältnismäßigerem,unverhältnismäßigem,unverhältnismäßigeren,unverhältnismäßigen,unverhältnismäßiges,unverhältnismäßiger,unverhältnismäßige,unverhältnismäßigster,unverhältnismäßigstes,unverhältnismäßigstem,unverhältnismäßigsten,unverhältnismäßigere" }, "unverlangt": { "form": "unverlangt", "polarity": "-0.0048", "pos": "JJ", "sense": "unverlangter,unverlangtes,unverlangtstes,unverlangtster,unverlangte,unverlangtsten,unverlangtere,unverlangteres,unverlangtstem,unverlangterer,unverlangtem,unverlangterem,unverlangten,unverlangteren,unverlangtste" }, "unvermeidlich": { "form": "unvermeidlich", "polarity": "-0.0048", "pos": "JJ", "sense": "unvermeidlichstes,unvermeidlichster,unvermeidlichsten,unvermeidliche,unvermeidlichstem,unvermeidlichere,unvermeidlicher,unvermeidliches,unvermeidlichen,unvermeidlicheres,unvermeidlicherer,unvermeidlicherem,unvermeidlichem,unvermeidlicheren,unvermeidlichste" }, "unvernünftig": { "form": "unvernünftig", "polarity": "-0.3252", "pos": "JJ", "sense": "unvernünftige,unvernünftigem,unvernünftigen,unvernünftiger,unvernünftiges,unvernünftigere,unvernünftigerem,unvernünftigeren,unvernünftigerer,unvernünftigeres,unvernünftigste,unvernünftigstem,unvernünftigsten,unvernünftigster,unvernünftigstes" }, "unverständlich": { "form": "unverständlich", "polarity": "-0.6347", "pos": "JJ", "sense": "unverständlichen,unverständlichstem,unverständlichsten,unverständlichem,unverständliche,unverständlicher,unverständlichster,unverständliches,unverständlichste,unverständlicherer,unverständlicheres,unverständlichstes,unverständlichere,unverständlicheren,unverständlicherem" }, "unvollkommen": { "form": "unvollkommen", "polarity": "-0.4772", "pos": "JJ", "sense": "unvollkommenster,unvollkommenstes,unvollkommenen,unvollkommenstem,unvollkommensten,unvollkommener,unvollkommenerem,unvollkommeneren,unvollkommenes,unvollkommeneres,unvollkommnere,unvollkommenerer,unvollkommneres,unvollkommnerer,unvollkommenem,unvollkommneren,unvollkommnerem,unvollkommner,unvollkommene,unvollkommenste,unvollkommenere" }, "unvollständig": { "form": "unvollständig", "polarity": "-0.4926", "pos": "JJ", "sense": "unvollständigster,unvollständiger,unvollständiges,unvollständigstes,unvollständigerer,unvollständigeren,unvollständigerem,unvollständigste,unvollständigere,unvollständigeres,unvollständige,unvollständigsten,unvollständigem,unvollständigstem,unvollständigen" }, "unvorhergesehen": { "form": "unvorhergesehen", "polarity": "-0.3141", "pos": "JJ", "sense": "unvorhergesehenes,unvorhergesehener,unvorhergesehenere,unvorhergesehensten,unvorhergesehenste,unvorhergesehenstem,unvorhergesehenstes,unvorhergeseheneres,unvorhergesehenster,unvorhergesehenerer,unvorhergeseheneren,unvorhergesehenen,unvorhergesehenerem,unvorhergesehenem,unvorhergesehene" }, "unwahr": { "form": "unwahr", "polarity": "-0.3424", "pos": "JJ", "sense": "unwahrerem,unwahrstem,unwahrsten,unwahreren,unwahrerer,unwahrstes,unwahreres,unwahrster,unwahre,unwahrem,unwahren,unwahrere,unwahrste,unwahrer,unwahres" }, "unwichtig": { "form": "unwichtig", "polarity": "-0.3433", "pos": "JJ", "sense": "unwichtigstem,unwichtigsten,unwichtigere,unwichtiges,unwichtigen,unwichtigem,unwichtigeren,unwichtiger,unwichtigerer,unwichtigeres,unwichtigster,unwichtigstes,unwichtigste,unwichtige,unwichtigerem" }, "unwillig": { "form": "unwillig", "polarity": "-0.4665", "pos": "JJ", "sense": "unwilligstem,unwilligsten,unwilligere,unwilligerem,unwilligster,unwilligeren,unwilligstes,unwilligste,unwillige,unwilligen,unwilligerer,unwilligem,unwilliger,unwilliges,unwilligeres" }, "unwirksam": { "form": "unwirksam", "polarity": "-0.0048", "pos": "JJ", "sense": "unwirksamere,unwirksame,unwirksamstem,unwirksamsten,unwirksamstes,unwirksamerem,unwirksameren,unwirksamster,unwirksamerer,unwirksameres,unwirksamen,unwirksamem,unwirksamste,unwirksames,unwirksamer" }, "unwirtlich": { "form": "unwirtlich", "polarity": "-0.0048", "pos": "JJ", "sense": "unwirtlichere,unwirtlicherer,unwirtlicheres,unwirtlichster,unwirtlicheren,unwirtlicherem,unwirtlichstes,unwirtlichsten,unwirtlichstem,unwirtlichen,unwirtliches,unwirtliche,unwirtlicher,unwirtlichste,unwirtlichem" }, "unwirtschaftlich": { "form": "unwirtschaftlich", "polarity": "-0.0048", "pos": "JJ", "sense": "unwirtschaftlichstem,unwirtschaftliche,unwirtschaftlichem,unwirtschaftlichen,unwirtschaftlicherem,unwirtschaftlicheren,unwirtschaftlichste,unwirtschaftliches,unwirtschaftlicher,unwirtschaftlichere,unwirtschaftlichstes,unwirtschaftlichster,unwirtschaftlichsten,unwirtschaftlicheres,unwirtschaftlicherer" }, "unwissend": { "form": "unwissend", "polarity": "-0.326", "pos": "JJ", "sense": "unwissende,unwissendste,unwissendem,unwissenderen,unwissenden,unwissenderem,unwissender,unwissendes,unwissendsten,unwissendstem,unwissendster,unwissenderer,unwissendstes,unwissendere,unwissenderes" }, "unwürdig": { "form": "unwürdig", "polarity": "-0.7312", "pos": "JJ", "sense": "unwürdige,unwürdigere,unwürdigstem,unwürdigster,unwürdigstes,unwürdigsten,unwürdigeren,unwürdigen,unwürdigem,unwürdigerem,unwürdiger,unwürdigerer,unwürdigeres,unwürdigste,unwürdiges" }, "unzivilisiert": { "form": "unzivilisiert", "polarity": "-0.4413", "pos": "JJ", "sense": "unzivilisiertem,unzivilisierten,unzivilisierterer,unzivilisiertesten,unzivilisierteres,unzivilisierter,unzivilisiertes,unzivilisiertestem,unzivilisiertester,unzivilisiertestes,unzivilisiertere,unzivilisierte,unzivilisierteste,unzivilisierteren,unzivilisierterem" }, "unzufrieden": { "form": "unzufrieden", "polarity": "-0.3363", "pos": "JJ", "sense": "unzufriedeneres,unzufriednerer,unzufriedenstes,unzufriedneres,unzufriedenerer,unzufriednere,unzufriedenen,unzufriedenerem,unzufriedeneren,unzufriedenem,unzufriedener,unzufriedenes,unzufriedene,unzufriedner,unzufriedenster,unzufriedneren,unzufriednerem,unzufriedensten,unzufriedenere,unzufriedenste,unzufriedenstem" }, "unzulässig": { "form": "unzulässig", "polarity": "-0.3554", "pos": "JJ", "sense": "unzulässige,unzulässigeren,unzulässigere,unzulässigeres,unzulässigerer,unzulässigster,unzulässigstes,unzulässigerem,unzulässiges,unzulässigsten,unzulässiger,unzulässigste,unzulässigen,unzulässigem,unzulässigstem" }, "unzumutbar": { "form": "unzumutbar", "polarity": "-0.34", "pos": "JJ", "sense": "unzumutbarerem,unzumutbarem,unzumutbareren,unzumutbaren,unzumutbarere,unzumutbareres,unzumutbarerer,unzumutbarer,unzumutbares,unzumutbarsten,unzumutbare,unzumutbarste,unzumutbarstem,unzumutbarstes,unzumutbarster" }, "unzurechnungsfähig": { "form": "unzurechnungsfähig", "polarity": "-0.0048", "pos": "JJ", "sense": "unzurechnungsfähigerem,unzurechnungsfähigeren,unzurechnungsfähigsten,unzurechnungsfähigeres,unzurechnungsfähigstem,unzurechnungsfähigster,unzurechnungsfähigere,unzurechnungsfähigerer,unzurechnungsfähigem,unzurechnungsfähigstes,unzurechnungsfähige,unzurechnungsfähigen,unzurechnungsfähiges,unzurechnungsfähiger,unzurechnungsfähigste" }, "unzureichend": { "form": "unzureichend", "polarity": "-0.5233", "pos": "JJ", "sense": "unzureichendster,unzureichendstes,unzureichende,unzureichenderes,unzureichenderer,unzureichendste,unzureichender,unzureichenderen,unzureichenderem,unzureichendes,unzureichendere,unzureichenden,unzureichendem,unzureichendstem,unzureichendsten" }, "unzusammenhängend": { "form": "unzusammenhängend", "polarity": "-0.0048", "pos": "JJ", "sense": "unzusammenhängendem,unzusammenhängendster,unzusammenhängenden,unzusammenhängendstes,unzusammenhängendes,unzusammenhängendstem,unzusammenhängendsten,unzusammenhängender,unzusammenhängendste,unzusammenhängendere,unzusammenhängende,unzusammenhängenderes,unzusammenhängenderer,unzusammenhängenderen,unzusammenhängenderem" }, "unzuverlässig": { "form": "unzuverlässig", "polarity": "-0.612", "pos": "JJ", "sense": "unzuverlässigstes,unzuverlässiger,unzuverlässigere,unzuverlässiges,unzuverlässigster,unzuverlässigeres,unzuverlässigeren,unzuverlässigerem,unzuverlässigerer,unzuverlässigsten,unzuverlässige,unzuverlässigstem,unzuverlässigem,unzuverlässigste,unzuverlässigen" }, "unzüchtig": { "form": "unzüchtig", "polarity": "-0.0048", "pos": "JJ", "sense": "unzüchtigster,unzüchtigstes,unzüchtigere,unzüchtige,unzüchtiges,unzüchtiger,unzüchtigem,unzüchtigen,unzüchtigeren,unzüchtigerer,unzüchtigeres,unzüchtigsten,unzüchtigstem,unzüchtigste,unzüchtigerem" }, "unübersichtlich": { "form": "unübersichtlich", "polarity": "-0.0501", "pos": "JJ", "sense": "unübersichtlichen,unübersichtlichstes,unübersichtlichere,unübersichtlichste,unübersichtlichster,unübersichtlicher,unübersichtliches,unübersichtlichsten,unübersichtlichstem,unübersichtlichem,unübersichtlicheren,unübersichtliche,unübersichtlicherem,unübersichtlicheres,unübersichtlicherer" }, "unüblich": { "form": "unüblich", "polarity": "-0.3328", "pos": "JJ", "sense": "unüblichem,unüblichster,unüblichen,unüblichste,unüblichsten,unüblicher,unübliches,unüblichstem,unüblicheren,unüblicherem,unüblicherer,unüblichere,unüblichstes,unübliche,unüblicheres" }, "vage": { "form": "vage", "polarity": "-0.3406", "pos": "JJ", "sense": "vag,vagem,vagen,vager,vages,vagere,vagerem,vageren,vagerer,vageres,vagste,vagstem,vagsten,vagster,vagstes" }, "verabscheuungswürdig": { "form": "verabscheuungswürdig", "polarity": "-0.0048", "pos": "JJ", "sense": "verabscheuungswürdigen,verabscheuungswürdigste,verabscheuungswürdigem,verabscheuungswürdigstem,verabscheuungswürdigster,verabscheuungswürdigstes,verabscheuungswürdiges,verabscheuungswürdigsten,verabscheuungswürdiger,verabscheuungswürdigerem,verabscheuungswürdigeren,verabscheuungswürdigere,verabscheuungswürdigerer,verabscheuungswürdigeres,verabscheuungswürdige" }, "verachten": { "form": "verachten", "polarity": "-0.0048", "pos": "VB", "sense": "verachte,verachtte,verachtet,verachtest,verachtetet,verachtetest,verachtete,verachten,verachteten" }, "veraltet": { "form": "veraltet", "polarity": "-0.507", "pos": "JJ", "sense": "veraltete,veraltetem,veralteten,veralteter,veraltetes,veraltetere,veralteterem,veralteteren,veralteterer,veralteteres,veraltetste,veraltetstem,veraltetsten,veraltetster,veraltetstes" }, "verarschen": { "form": "verarschen", "polarity": "-0.0048", "pos": "VB", "sense": "verarsche,verarschst,verarscht,verarschest,verarschet,verarschte,verarschtest,verarschten,verarschtet" }, "verbannen": { "form": "verbannen", "polarity": "-0.0048", "pos": "VB", "sense": "verbannten,verbannst,verbannte,verbanntet,verbannet,verbannest,verbanne,verbannt,verbanntest" }, "verbeulen": { "form": "verbeulen", "polarity": "-0.0327", "pos": "VB", "sense": "verbeulest,verbeultet,verbeultest,verbeulst,verbeult,verbeulten,verbeulte,verbeule,verbeulet" }, "verbieten": { "form": "verbieten", "polarity": "-0.629", "pos": "VB", "sense": "verbiete,verbietest,verbietet,verbot,verbotest,verbotst,verboten,verbotet,verböte,verbötest,verbötet" }, "verbittert": { "form": "verbittert", "polarity": "-0.4659", "pos": "JJ", "sense": "verbitterte,verbittertem,verbitterten,verbitterter,verbittertes,verbittertere,verbitterterem,verbitterteren,verbitterterer,verbitterteres,verbittertste,verbittertstem,verbittertsten,verbittertster,verbittertstes" }, "verblassen": { "form": "verblassen", "polarity": "-0.0048", "pos": "VB", "sense": "verblassten,verblasstet,verblasset,verblasste,verblasse,verblassest,verblasstest,verblasst" }, "verboten": { "form": "verboten", "polarity": "-0.3657", "pos": "JJ", "sense": "verbotenen,verbotenem,verbotner,verbotenerer,verbotnerem,verbotenerem,verbotene,verbotenere,verboteneren,verboteneres,verbotenes,verbotener,verbotenster,verbotenste,verbotnere,verbotenstes,verbotneres,verbotnerer,verbotensten,verbotneren,verbotenstem" }, "verdammen": { "form": "verdammen", "polarity": "-0.6079", "pos": "VB", "sense": "verdammten,verdammte,verdammtet,verdammtest,verdammst,verdamme,verdammt,verdammet,verdammest" }, "verdammt": { "form": "verdammt", "polarity": "-0.2925", "pos": "JJ", "sense": "verdammteste,verdammterem,verdammteren,verdammtere,verdammterer,verdammteres,verdammtesten,verdammter,verdammtestem,verdammte,verdammtes,verdammtester,verdammtestes,verdammten,verdammtem" }, "verdecken": { "form": "verdecken", "polarity": "-0.0516", "pos": "VB", "sense": "verdeckten,verdecke,verdeckt,verdecktet,verdeckst,verdeckte,verdecktest,verdeckest,verdecket" }, "verderben": { "form": "verderben", "polarity": "-0.0048", "pos": "VB", "sense": "verderbe,verdirbst,verdirbt,verderbt,verderbest,verderbet,verdarb,verdarbst,verdarben,verdarbt,verdürbe,verdürbest,verdürbst,verdürben,verdürbet,verdürbt" }, "verderblich": { "form": "verderblich", "polarity": "-0.3131", "pos": "JJ", "sense": "verderblichstes,verderblichster,verderblichen,verderblichsten,verderblichem,verderblichere,verderblichstem,verderbliche,verderblicherer,verderblicheres,verderblicherem,verderblicheren,verderblichste,verderblicher,verderbliches" }, "verdorben": { "form": "verdorben", "polarity": "-0.1755", "pos": "JJ", "sense": "verdorbenstes,verdorbenerer,verdorbenste,verdorbenster,verdorbeneres,verdorbneren,verdorbene,verdorbnerem,verdorbenstem,verdorbensten,verdorbneres,verdorbenes,verdorbnerer,verdorbener,verdorbenen,verdorbnere,verdorbenem,verdorbner,verdorbenerem,verdorbenere,verdorbeneren" }, "verdrießlich": { "form": "verdrießlich", "polarity": "-0.0048", "pos": "JJ", "sense": "verdrießlichster,verdrießliches,verdrießlichstes,verdrießlicher,verdrießlicheres,verdrießlicherer,verdrießlichstem,verdrießlicheren,verdrießlicherem,verdrießlichsten,verdrießlichem,verdrießliche,verdrießlichen,verdrießlichste,verdrießlichere" }, "verdrängen": { "form": "verdrängen", "polarity": "-0.3468", "pos": "VB", "sense": "verdrängst,verdrängest,verdrängte,verdränge,verdrängt,verdrängten,verdrängtest,verdränget,verdrängtet" }, "verdunkeln": { "form": "verdunkeln", "polarity": "-0.0048", "pos": "VB", "sense": "verdunkle,verdunkelte,verdunkelen,verdunkeltest,verdunkelten,verdunkele,verdunkelt,verdunkeltet,verdunkelst,verdunkel" }, "vereiteln": { "form": "vereiteln", "polarity": "-0.0048", "pos": "VB", "sense": "vereitle,vereitele,vereiteltest,vereitelt,vereiteltet,vereitelst,vereitelen,vereitel,vereitelten,vereitelte" }, "verfallen": { "form": "verfallen", "polarity": "-0.4849", "pos": "JJ", "sense": "verfallner,verfallenem,verfalleneres,verfallenere,verfallenerer,verfallene,verfallenerem,verfallnere,verfalleneren,verfallenstem,verfallensten,verfallenste,verfallnerer,verfallenstes,verfallneres,verfallenster,verfallneren,verfallenen,verfallnerem,verfallener,verfallenes" }, "verfassungswidrig": { "form": "verfassungswidrig", "polarity": "-0.0048", "pos": "JJ", "sense": "verfassungswidrige,verfassungswidrigem,verfassungswidrigen,verfassungswidriger,verfassungswidriges,verfassungswidrigere,verfassungswidrigerem,verfassungswidrigeren,verfassungswidrigerer,verfassungswidrigeres,verfassungswidrigste,verfassungswidrigstem,verfassungswidrigsten,verfassungswidrigster,verfassungswidrigstes" }, "verfehlen": { "form": "verfehlen", "polarity": "-0.0373", "pos": "VB", "sense": "verfehlten,verfehlte,verfehlst,verfehlt,verfehlet,verfehle,verfehlest,verfehltet,verfehltest" }, "verfluchen": { "form": "verfluchen", "polarity": "-0.3284", "pos": "VB", "sense": "verfluchet,verfluchten,verfluchst,verfluchtest,verfluchte,verfluche,verflucht,verfluchtet,verfluchest" }, "verfälschen": { "form": "verfälschen", "polarity": "-0.3323", "pos": "VB", "sense": "verfälschten,verfälschtet,verfälschest,verfälschte,verfälschst,verfälsche,verfälschtest,verfälschet,verfälscht" }, "vergammelt": { "form": "vergammelt", "polarity": "-0.0048", "pos": "VB", "sense": "vergammelteres,vergammelterer,vergammeltste,vergammelterem,vergammelteren,vergammeltstem,vergammeltsten,vergammelten,vergammelte,vergammeltem,vergammeltere,vergammeltes,vergammeltster,vergammelter,vergammeltstes" }, "vergeblich": { "form": "vergeblich", "polarity": "-0.0048", "pos": "JJ", "sense": "vergeblichstem,vergeblichsten,vergeblichem,vergeblichere,vergeblichen,vergebliches,vergeblicher,vergebliche,vergeblichste,vergeblichster,vergeblichstes,vergeblicherer,vergeblicheres,vergeblicherem,vergeblicheren" }, "vergelten": { "form": "vergelten", "polarity": "-0.0048", "pos": "VB", "sense": "vergelte,vergiltst,vergilt,vergelten,vergeltet,vergeltest,vergalt,vergaltest,vergaltst,vergalten,vergaltet,vergälte,vergölte,vergältest,vergöltest,vergälten,vergölten,vergältet,vergöltet,vergolten" }, "vergeuden": { "form": "vergeuden", "polarity": "-0.1836", "pos": "VB", "sense": "vergeudete,vergeude,vergeudtet,vergeudeten,vergeudtest,vergeudetet,vergeudet,vergeudte,vergeudetest,vergeudten,vergeudest" }, "vergewaltigen": { "form": "vergewaltigen", "polarity": "-0.0048", "pos": "VB", "sense": "vergewaltige,vergewaltigtest,vergewaltigtet,vergewaltigt,vergewaltigten,vergewaltigte,vergewaltigest,vergewaltiget,vergewaltigst" }, "verharmlosen": { "form": "verharmlosen", "polarity": "-0.049", "pos": "VB", "sense": "verharmlosten,verharmlost,verharmloset,verharmlose,verharmlostest,verharmlosest,verharmlostet,verharmloste" }, "verhasst": { "form": "verhasst", "polarity": "-0.0048", "pos": "JJ", "sense": "verhassteres,verhasstester,verhassterer,verhasstem,verhassten,verhasstes,verhasstestes,verhasster,verhasstestem,verhasstesten,verhasstere,verhassteste,verhassteren,verhasste,verhassterem" }, "verheeren": { "form": "verheeren", "polarity": "-0.0048", "pos": "VB", "sense": "verheere,verheerst,verheert,verheerest,verheeret,verheerte,verheertest,verheerten,verheertet" }, "verheerend": { "form": "verheerend", "polarity": "-0.478", "pos": "JJ", "sense": "verheerendstes,verheerendster,verheerendere,verheerenderes,verheerendsten,verheerenderer,verheerendem,verheerenden,verheerenderen,verheerendstem,verheerender,verheerendes,verheerenderem,verheerendste,verheerende" }, "verherrlichen": { "form": "verherrlichen", "polarity": "-0.0048", "pos": "VB", "sense": "verherrlichet,verherrlichten,verherrlichte,verherrlichst,verherrlichest,verherrliche,verherrlicht,verherrlichtest,verherrlichtet" }, "verhängnisvoll": { "form": "verhängnisvoll", "polarity": "-0.333", "pos": "JJ", "sense": "verhängnisvolle,verhängnisvollem,verhängnisvollen,verhängnisvoller,verhängnisvolles,verhängnisvollere,verhängnisvollerem,verhängnisvolleren,verhängnisvollerer,verhängnisvolleres" }, "verhöhnen": { "form": "verhöhnen", "polarity": "-0.0048", "pos": "VB", "sense": "verhöhntest,verhöhnet,verhöhntet,verhöhnte,verhöhnst,verhöhne,verhöhnest,verhöhnt,verhöhnten" }, "verirren": { "form": "verirren", "polarity": "-0.0498", "pos": "VB", "sense": "verirrt,verirrtet,verirrst,verirre,verirrte,verirrten,verirrest,verirrtest,verirret" }, "verkehrswidrig": { "form": "verkehrswidrig", "polarity": "-0.0048", "pos": "JJ", "sense": "verkehrswidrigste,verkehrswidrigster,verkehrswidrigstes,verkehrswidrigsten,verkehrswidrigerem,verkehrswidrigstem,verkehrswidrigere,verkehrswidriger,verkehrswidrigeren,verkehrswidrigen,verkehrswidrigerer,verkehrswidrigem,verkehrswidrigeres,verkehrswidrige,verkehrswidriges" }, "verkleinern": { "form": "verkleinern", "polarity": "-0.0048", "pos": "VB", "sense": "verkleinerten,verkleinere,verkleinert,verkleinertet,verkleinerte,verkleinertest,verkleinerst,verkleineren" }, "verkrüppeln": { "form": "verkrüppeln", "polarity": "-0.0048", "pos": "VB", "sense": "verkrüppele,verkrüpple,verkrüppelst,verkrüppelt,verkrüpplest,verkrüpplet,verkrüppelte,verkrüppeltest,verkrüppelten,verkrüppeltet" }, "verlangsamen": { "form": "verlangsamen", "polarity": "-0.0048", "pos": "VB", "sense": "verlangsamst,verlangsamte,verlangsamtet,verlangsamt,verlangsamet,verlangsamest,verlangsame,verlangsamten,verlangsamtest" }, "verletzbar": { "form": "verletzbar", "polarity": "-0.0048", "pos": "JJ", "sense": "verletzbarerem,verletzbareren,verletzbare,verletzbarster,verletzbarste,verletzbareres,verletzbarsten,verletzbarerer,verletzbarstem,verletzbarstes,verletzbarere,verletzbaren,verletzbarem,verletzbarer,verletzbares" }, "verletzen": { "form": "verletzen", "polarity": "-0.3615", "pos": "VB", "sense": "verletzte,verletze,verletzt,verletzten,verletzest,verletzet,verletztest,verletztet" }, "verletzlich": { "form": "verletzlich", "polarity": "-0.0487", "pos": "JJ", "sense": "verletzlicherer,verletzlichste,verletzlicheres,verletzlichstes,verletzlichster,verletzliche,verletzlicheren,verletzlicherem,verletzlichen,verletzlichem,verletzliches,verletzlicher,verletzlichere,verletzlichstem,verletzlichsten" }, "verletzt": { "form": "verletzt", "polarity": "-0.5202", "pos": "JJ", "sense": "verletzterem,verletzteste,verletztestem,verletztesten,verletzteren,verletzteres,verletztere,verletzterer,verletztester,verletztestes,verletzte,verletztem,verletzten,verletzter,verletztes" }, "verleumden": { "form": "verleumden", "polarity": "-0.4473", "pos": "VB", "sense": "verleumdten,verleumde,verleumdet,verleumdte,verleumdetet,verleumdetest,verleumdtest,verleumdeten,verleumdest,verleumdtet,verleumdete" }, "verlieren": { "form": "verlieren", "polarity": "-0.393", "pos": "VB", "sense": "verliere,verlierst,verliert,verlierest,verlieret,verlor,verlorst,verloren,verlort,verlöre,verlörest,verlörst,verlören,verlöret,verlört" }, "verlogen": { "form": "verlogen", "polarity": "-0.3355", "pos": "JJ", "sense": "verlogensten,verlogenerer,verlogeneres,verlogenes,verlogner,verlogeneren,verlogenste,verlogenstem,verlogenen,verlogenem,verlogenster,verlogenstes,verlogener,verlogneres,verlogene,verlogenere,verlogneren,verlognerem,verlognerer,verlogenerem,verlognere" }, "vermeiden": { "form": "vermeiden", "polarity": "-0.5265", "pos": "VB", "sense": "vermeide,vermeidest,vermeidet,vermied,vermiedest,vermiedst,vermieden,vermiedet,vermiede" }, "vermindern": { "form": "vermindern", "polarity": "-0.0048", "pos": "VB", "sense": "vermindere,vermindert,vermindertet,verminderten,verminderen,verminderte,vermindertest,verminderst" }, "vernichten": { "form": "vernichten", "polarity": "-0.4902", "pos": "VB", "sense": "vernichtet,vernichte,vernichtest,vernichtete,vernichtetest,vernichteten,vernichtetet,vernichten" }, "vernichtend": { "form": "vernichtend", "polarity": "-0.0048", "pos": "JJ", "sense": "vernichtende,vernichtendem,vernichtenden,vernichtender,vernichtendes,vernichtendere,vernichtenderem,vernichtenderen,vernichtenderer,vernichtenderes,vernichtendste,vernichtendstem,vernichtendsten,vernichtendster,vernichtendstes" }, "verraten": { "form": "verraten", "polarity": "-0.2087", "pos": "VB", "sense": "verrate,verrätst,verrät,verratet,verratest,verriet,verrietest,verrietst,verrieten,verrietet,verriete" }, "verringern": { "form": "verringern", "polarity": "-0.3537", "pos": "VB", "sense": "verringere,verringerst,verringert,verringerte,verringertest,verringerten,verringertet" }, "verrucht": { "form": "verrucht", "polarity": "-0.1714", "pos": "JJ", "sense": "verruchtesten,verruchtestem,verruchtester,verruchtestes,verruchterem,verruchteren,verruchte,verruchteste,verruchteres,verruchterer,verruchtes,verruchter,verruchtem,verruchtere,verruchten" }, "verräterisch": { "form": "verräterisch", "polarity": "-0.311", "pos": "JJ", "sense": "verräterischsten,verräterischstem,verräterischste,verräterischstes,verräterischster,verräterischere,verräterischem,verräterischerem,verräterische,verräterischeren,verräterischeres,verräterischen,verräterischerer,verräterischer,verräterisches" }, "verrückt": { "form": "verrückt", "polarity": "-0.0337", "pos": "VB", "sense": "verrückten,verrücktestes,verrücktester,verrückter,verrücktes,verrücktesten,verrückteste,verrückte,verrücktem,verrückterer,verrückteres,verrücktestem,verrückteren,verrückterem,verrücktere" }, "verschimmelt": { "form": "verschimmelt", "polarity": "-0.0048", "pos": "JJ", "sense": "verschimmelte,verschimmeltem,verschimmelten,verschimmelter,verschimmeltes,verschimmeltere,verschimmelterem,verschimmelteren,verschimmelterer,verschimmelteres,verschimmeltste,verschimmeltstem,verschimmeltsten,verschimmeltster,verschimmeltstes" }, "verschlechtern": { "form": "verschlechtern", "polarity": "-0.0048", "pos": "VB", "sense": "verschlechtere,verschlechterst,verschlechtert,verschlechterte,verschlechtertest,verschlechterten,verschlechtertet" }, "verschleppen": { "form": "verschleppen", "polarity": "-0.0048", "pos": "VB", "sense": "verschleppst,verschleppte,verschlepptest,verschleppest,verschleppet,verschleppten,verschlepptet,verschleppe,verschleppt" }, "verschleudern": { "form": "verschleudern", "polarity": "-0.0048", "pos": "VB", "sense": "verschleudertet,verschleuderte,verschleuderst,verschleudert,verschleudertest,verschleuderten,verschleudere,verschleuderen" }, "verschlingen": { "form": "verschlingen", "polarity": "0.0040", "pos": "VB", "sense": "verschlinge,verschlingst,verschlingest,verschlingt,verschlinget,verschlang,verschlangst,verschlangen,verschlangt,verschlänge,verschlängest,verschlängst,verschlängen,verschlänget,verschlängt,verschling" }, "verschmutzen": { "form": "verschmutzen", "polarity": "-0.0048", "pos": "VB", "sense": "verschmutzest,verschmutztet,verschmutztest,verschmutzet,verschmutzten,verschmutzte,verschmutzt,verschmutze" }, "verschwenden": { "form": "verschwenden", "polarity": "-0.0494", "pos": "VB", "sense": "verschwendest,verschwende,verschwendeten,verschwendete,verschwendetest,verschwendet,verschwendetet" }, "verschwenderisch": { "form": "verschwenderisch", "polarity": "-0.0048", "pos": "JJ", "sense": "verschwenderischste,verschwenderischeres,verschwenderische,verschwenderischen,verschwenderischem,verschwenderischer,verschwenderisches,verschwenderischstem,verschwenderischsten,verschwenderischster,verschwenderischstes,verschwenderischere,verschwenderischerer,verschwenderischeren,verschwenderischerem" }, "verschwinden": { "form": "verschwinden", "polarity": "-0.3588", "pos": "VB", "sense": "verschwinde,verschwindest,verschwindet,verschwand,verschwandest,verschwandst,verschwanden,verschwandet,verschwände,verschwändest,verschwänden,verschwändet" }, "versenken": { "form": "versenken", "polarity": "-0.0048", "pos": "VB", "sense": "versenkt,versenktet,versenkte,vergesenkt,versenket,versenkst,versenke,versenktest,versenkten,versenkest" }, "versklaven": { "form": "versklaven", "polarity": "-0.3142", "pos": "VB", "sense": "versklavt,versklavtest,versklavten,versklave,versklavet,versklavtet,versklavst,versklavte,versklavest" }, "versklavt": { "form": "versklavt", "polarity": "-0.0048", "pos": "VB", "sense": "versklavteres,versklavterer,versklavteste,versklavtesten,versklavteren,versklavtestem,versklavterem,versklavtestes,versklavte,versklavtester,versklavtere,versklavten,versklavtem,versklavtes,versklavter" }, "verspielen": { "form": "verspielen", "polarity": "-0.0048", "pos": "VB", "sense": "verspiele,verspielt,verspieltet,verspielet,verspielst,verspieltest,verspielte,verspielten,verspielest" }, "verspätet": { "form": "verspätet", "polarity": "-0.4819", "pos": "VB", "sense": "verspätete,verspätetem,verspäteten,verspäteter,verspätetes,verspätetere,verspäteterem,verspäteteren,verspäteterer,verspäteteres,verspätetste,verspätetstem,verspätetsten,verspätetster,verspätetstes" }, "verstimmen": { "form": "verstimmen", "polarity": "-0.0048", "pos": "VB", "sense": "verstimmtet,verstimmet,verstimm,verstimmten,verstimme,verstimmst,verstimmte,verstimmtest,verstimmest" }, "verstopfen": { "form": "verstopfen", "polarity": "-0.0048", "pos": "VB", "sense": "verstopfe,verstopfst,verstopft,verstopfest,verstopfet,verstopfte,verstopftest,verstopften,verstopftet" }, "verstoßen": { "form": "verstoßen", "polarity": "-0.3521", "pos": "VB", "sense": "verstoße,verstößt,verstoßt,verstoßest,verstoßet,verstieß,verstießest,verstießt,verstießen,verstieße,verstießet" }, "verstricken": { "form": "verstricken", "polarity": "-0.0048", "pos": "VB", "sense": "verstrickst,verstrickte,verstrickt,verstricktet,verstricke,verstrickest,verstricket,verstricktest,verstrickten" }, "vertreiben": { "form": "vertreiben", "polarity": "-0.3684", "pos": "VB", "sense": "vertreibe,vertreibst,vertreibt,vertreibest,vertreibet,vertrieb,vertriebest,vertriebst,vertrieben,vertriebet,vertriebt" }, "verurteilen": { "form": "verurteilen", "polarity": "-0.77", "pos": "VB", "sense": "verurteilest,verurteiltet,verurteile,verurteilten,verurteilet,verurteilt,verurteilte,verurteiltest,verurteilst" }, "verwelken": { "form": "verwelken", "polarity": "-0.0048", "pos": "VB", "sense": "verwelke,verwelkst,verwelkt,verwelkest,verwelket,verwelkte,verwelktest,verwelkten,verwelktet" }, "verwerflich": { "form": "verwerflich", "polarity": "-0.7418", "pos": "JJ", "sense": "verwerflicheres,verwerflichem,verwerflicherer,verwerflichstem,verwerflichsten,verwerflichstes,verwerflichster,verwerfliche,verwerflichere,verwerflichste,verwerflichen,verwerflicherem,verwerflicheren,verwerflicher,verwerfliches" }, "verwickeln": { "form": "verwickeln", "polarity": "-0.0048", "pos": "VB", "sense": "verwickelten,verwickle,verwickeltest,verwickelen,verwickeltet,verwickel,verwickelte,verwickelst,verwickele,verwickelt" }, "verwirren": { "form": "verwirren", "polarity": "-0.0474", "pos": "VB", "sense": "verwirret,verwirre,verwirrtet,verwirrest,verwirrt,verwirrst,verwirrten,verwirrte,verwirrtest" }, "verworren": { "form": "verworren", "polarity": "-0.0048", "pos": "JJ", "sense": "verworrenstes,verworrenster,verworrenes,verworrener,verworrene,verworrenem,verworrenen,verworrenere,verworrenerem,verworrenerer,verworreneren,verworreneres,verworrenste,verworrensten,verworrenstem" }, "verwunden": { "form": "verwunden", "polarity": "-0.3186", "pos": "VB", "sense": "verwundetet,verwundtet,verwundest,verwundete,verwunde,verwundte,verwundetest,verwundten,verwundet,verwundeten,verwundtest" }, "verwüsten": { "form": "verwüsten", "polarity": "-0.0048", "pos": "VB", "sense": "verwüste,verwüstest,verwüstet,verwüstete,verwüstetest,verwüsteten,verwüstetet" }, "verzerren": { "form": "verzerren", "polarity": "-0.0048", "pos": "VB", "sense": "verzerrte,verzerrten,verzerrst,verzerret,verzerrtest,verzerre,verzerrest,verzerrt,verzerrtet" }, "verzichten": { "form": "verzichten", "polarity": "-0.0048", "pos": "VB", "sense": "verzichte,verzichtest,verzichtet,verzichtete,verzichtetest,verzichteten,verzichtetet" }, "verzweifeln": { "form": "verzweifeln", "polarity": "-0.0048", "pos": "VB", "sense": "verzweifeltest,verzweifelte,verzweifeltet,verzweifelst,verzweifelen,verzweifle,verzweifelten,verzweifel,verzweifele,verzweifelt" }, "verzweifelt": { "form": "verzweifelt", "polarity": "-0.1947", "pos": "JJ", "sense": "verzweifeltstes,verzweifeltster,verzweifelterer,verzweifeltstem,verzweifeltsten,verzweifelteres,verzweifelteren,verzweifelterem,verzweifelte,verzweifeltere,verzweifeltes,verzweifelter,verzweifeltste,verzweifelten,verzweifeltem" }, "verzwickt": { "form": "verzwickt", "polarity": "-0.0403", "pos": "JJ", "sense": "verzwicktestes,verzwicktester,verzwicktem,verzwicktere,verzwickten,verzwickte,verzwickteste,verzwicktes,verzwickter,verzwicktestem,verzwicktesten,verzwickteres,verzwickterer,verzwickteren,verzwickterem" }, "verzögern": { "form": "verzögern", "polarity": "-0.3409", "pos": "VB", "sense": "verzögertet,verzögert,verzögeren,verzögerte,verzögerten,verzögerst,verzögertest,verzögere" }, "verächtlich": { "form": "verächtlich", "polarity": "-0.3245", "pos": "JJ", "sense": "verächtlichere,verächtlichem,verächtlichen,verächtlichster,verächtlichstes,verächtlicheres,verächtlicher,verächtlicherer,verächtlichstem,verächtlichsten,verächtliches,verächtlichste,verächtlicheren,verächtlicherem,verächtliche" }, "verängstigen": { "form": "verängstigen", "polarity": "-0.056", "pos": "VB", "sense": "verängstige,verängstigst,verängstigt,verängstigest,verängstiget,verängstigte,verängstigtest,verängstigten,verängstigtet" }, "verärgern": { "form": "verärgern", "polarity": "-0.1825", "pos": "VB", "sense": "verärgerte,verärgerst,verärgertest,verärgerten,verärgeren,verärgertet,verärgert,verärgere" }, "volltrunken": { "form": "volltrunken", "polarity": "-0.0048", "pos": "JJ", "sense": "volltrunkenster,volltrunkenere,volltrunkenstes,volltrunkenem,volltrunkenen,volltrunkener,volltrunkenste,volltrunkene,volltrunkenes,volltrunkenstem,volltrunkensten,volltrunkeneren,volltrunkenerem,volltrunkeneres,volltrunkenerer" }, "vorhersehbar": { "form": "vorhersehbar", "polarity": "-0.3414", "pos": "JJ", "sense": "vorhersehbarere,vorhersehbareres,vorhersehbarerer,vorhersehbarste,vorhersehbareren,vorhersehbares,vorhersehbarer,vorhersehbarerem,vorhersehbaren,vorhersehbarem,vorhersehbarstes,vorhersehbarster,vorhersehbarsten,vorhersehbare,vorhersehbarstem" }, "vorwerfen": { "form": "vorwerfen", "polarity": "-0.3254", "pos": "VB", "sense": "vorwerfe,vorwirfst,vorwirft,vorwerft,vorwerfest,vorwerfet,vorwarf,vorwarfst,vorwarfen,vorwarft,vorwürfe,vorwürfest,vorwürfst,vorwürfen,vorwürfet,vorwürft" }, "vorzeitig": { "form": "vorzeitig", "polarity": "-0.3462", "pos": "JJ", "sense": "vorzeitigerem,vorzeitigere,vorzeitigeren,vorzeitigsten,vorzeitigen,vorzeitigerer,vorzeitigste,vorzeitigstem,vorzeitigem,vorzeitigster,vorzeitiges,vorzeitige,vorzeitiger,vorzeitigeres,vorzeitigstes" }, "vulgär": { "form": "vulgär", "polarity": "-0.3122", "pos": "JJ", "sense": "vulgärsten,vulgäre,vulgärstem,vulgärstes,vulgäreren,vulgärster,vulgärerem,vulgäreres,vulgärerer,vulgärste,vulgärere,vulgärem,vulgären,vulgärer,vulgäres" }, "wackelig": { "form": "wackelig", "polarity": "-0.0048", "pos": "JJ", "sense": "wackeligerer,wackeligste,wackeligeres,wackeligere,wackeligen,wackeliger,wackeliges,wackeligstes,wackeligster,wackeligsten,wackeligem,wackeligstem,wackeligeren,wackeligerem,wackelige" }, "wackeln": { "form": "wackeln", "polarity": "-0.0048", "pos": "VB", "sense": "wackelst,wackeltest,wackele,wackelt,wackle,wackl,wackeltet,wackelten,gewackelt,wackelte,wackelen" }, "wahnsinnig": { "form": "wahnsinnig", "polarity": "-0.0048", "pos": "JJ", "sense": "wahnsinnigen,wahnsinnigere,wahnsinnigem,wahnsinnigerem,wahnsinnige,wahnsinnigeren,wahnsinnigster,wahnsinnigstes,wahnsinnigerer,wahnsinnigeres,wahnsinnigsten,wahnsinnigste,wahnsinnigstem,wahnsinniges,wahnsinniger" }, "wankelmütig": { "form": "wankelmütig", "polarity": "-0.0048", "pos": "JJ", "sense": "wankelmütigem,wankelmütigen,wankelmütigere,wankelmütige,wankelmütigstes,wankelmütigeren,wankelmütigerem,wankelmütigster,wankelmütigerer,wankelmütigeres,wankelmütigsten,wankelmütigstem,wankelmütiges,wankelmütiger,wankelmütigste" }, "wegfallen": { "form": "wegfallen", "polarity": "-0.0048", "pos": "VB", "sense": "wegfalle,wegfällst,wegfällt,wegfallt,wegfallest,wegfallet,wegfiel,wegfielst,wegfielen,wegfielt,wegfiele,wegfielest,wegfielet" }, "weglassen": { "form": "weglassen", "polarity": "-0.3362", "pos": "VB", "sense": "weglasse,weglässt,wegläßt,weglasst,weglaßt,weglassest,weglasset,wegließ,wegließest,wegließt,wegließen,wegließe,wegließet" }, "wehklagend": { "form": "wehklagend", "polarity": "-0.0048", "pos": "JJ", "sense": "wehklagende,wehklagendem,wehklagenden,wehklagender,wehklagendes,wehklagendere,wehklagenderem,wehklagenderen,wehklagenderer,wehklagenderes,wehklagendste,wehklagendstem,wehklagendsten,wehklagendster,wehklagendstes" }, "weinen": { "form": "weinen", "polarity": "-0.1651", "pos": "VB", "sense": "weinst,weintet,weintest,weinte,weinet,weinest,weinten,geweint,weint,weine" }, "welken": { "form": "welken", "polarity": "-0.0531", "pos": "VB", "sense": "welkt,welket,gewelkt,welke,welkest,welktest,welkst,welktet,welkte,welkten" }, "wertlos": { "form": "wertlos", "polarity": "-0.6264", "pos": "JJ", "sense": "wertlosesten,wertlosestem,wertlose,wertlosen,wertlosem,wertloses,wertloser,wertloserem,wertloseren,wertlosester,wertlosere,wertlosestes,wertloserer,wertloseste,wertloseres" }, "wettbewerbswidrig": { "form": "wettbewerbswidrig", "polarity": "-0.0048", "pos": "JJ", "sense": "wettbewerbswidrige,wettbewerbswidrigem,wettbewerbswidrigen,wettbewerbswidriger,wettbewerbswidriges,wettbewerbswidrigere,wettbewerbswidrigerem,wettbewerbswidrigeren,wettbewerbswidrigerer,wettbewerbswidrigeres,wettbewerbswidrigste,wettbewerbswidrigstem,wettbewerbswidrigsten,wettbewerbswidrigster,wettbewerbswidrigstes" }, "wichtigtun": { "form": "wichtigtun", "polarity": "-0.0048", "pos": "VB", "sense": "wichtigtue,wichtigtust,wichtigtut,wichtigtuest,wichtigtuet,wichtigtat,wichtigtatest,wichtigtatst,wichtigtaten,wichtigtatet,wichtigtäte,wichtigtätest,wichtigtäten,wichtigtätet" }, "widerlegen": { "form": "widerlegen", "polarity": "-0.3452", "pos": "VB", "sense": "widerlegte,widerlegten,widergelegt,widerlegtest,widerlegst,widerlegest,widerleget,widerlegt,widerlege,widerlegtet" }, "widernatürlich": { "form": "widernatürlich", "polarity": "-0.3064", "pos": "JJ", "sense": "widernatürlicher,widernatürlichere,widernatürlichen,widernatürlichem,widernatürlicherem,widernatürlichste,widernatürliches,widernatürlichstes,widernatürlicherer,widernatürlichster,widernatürlicheres,widernatürlicheren,widernatürliche,widernatürlichstem,widernatürlichsten" }, "widerrufen": { "form": "widerrufen", "polarity": "-0.0048", "pos": "VB", "sense": "widerrufe,widerrufst,widerruft,widerrufest,widerrufet,widerrief,widerriefst,widerriefen,widerrieft,widerriefest,widerriefe,widerriefet" }, "widersinnig": { "form": "widersinnig", "polarity": "-0.3266", "pos": "JJ", "sense": "widersinnigste,widersinnigere,widersinnigen,widersinnigem,widersinnigstem,widersinnigsten,widersinnigster,widersinniges,widersinniger,widersinnigstes,widersinnigeren,widersinnige,widersinnigerem,widersinnigerer,widersinnigeres" }, "widerspenstig": { "form": "widerspenstig", "polarity": "-0.1789", "pos": "JJ", "sense": "widerspenstigster,widerspenstigstes,widerspenstige,widerspenstiger,widerspenstiges,widerspenstigen,widerspenstigem,widerspenstigeres,widerspenstigerer,widerspenstigerem,widerspenstigsten,widerspenstigstem,widerspenstigeren,widerspenstigere,widerspenstigste" }, "widersprechen": { "form": "widersprechen", "polarity": "-0.354", "pos": "VB", "sense": "widerspreche,widersprichst,widerspricht,widersprecht,widersprechest,widersprechet,widersprach,widersprachst,widersprachen,widerspracht,widerspräche,widersprächest,widersprächst,widersprächen,widersprächet,widersprächt" }, "widersprüchlich": { "form": "widersprüchlich", "polarity": "-0.2043", "pos": "JJ", "sense": "widersprüchlicheres,widersprüchlichstes,widersprüchlichster,widersprüchlicher,widersprüchliches,widersprüchlichste,widersprüchlichsten,widersprüchlichem,widersprüchlichstem,widersprüchlichen,widersprüchlicheren,widersprüchlicherem,widersprüchliche,widersprüchlicherer,widersprüchlichere" }, "widerwärtig": { "form": "widerwärtig", "polarity": "-0.0048", "pos": "JJ", "sense": "widerwärtigstes,widerwärtigster,widerwärtigerem,widerwärtigeren,widerwärtigstem,widerwärtigerer,widerwärtigsten,widerwärtigeres,widerwärtigem,widerwärtigen,widerwärtige,widerwärtigere,widerwärtigste,widerwärtiges,widerwärtiger" }, "widrig": { "form": "widrig", "polarity": "-0.0048", "pos": "JJ", "sense": "widrigerer,widrigeres,widrigerem,widrigste,widrigeren,widrigen,widrigstem,widrigem,widrigere,widriger,widrigsten,widrigstes,widrigster,widrige,widriges" }, "willkürlich": { "form": "willkürlich", "polarity": "-0.3481", "pos": "JJ", "sense": "willkürlichster,willkürlichstes,willkürlichstem,willkürlichsten,willkürliches,willkürlicher,willkürlichem,willkürlichen,willkürlicherem,willkürlicheren,willkürlichere,willkürlicheres,willkürlichste,willkürliche,willkürlicherer" }, "wirkungslos": { "form": "wirkungslos", "polarity": "-0.0048", "pos": "JJ", "sense": "wirkungslosere,wirkungslosesten,wirkungslosestem,wirkungsloseres,wirkungsloses,wirkungsloserer,wirkungsloser,wirkungslosem,wirkungslosen,wirkungslosester,wirkungsloseste,wirkungsloseren,wirkungslosestes,wirkungslose,wirkungsloserem" }, "wirr": { "form": "wirr", "polarity": "-0.1841", "pos": "JJ", "sense": "wirrste,wirrstem,wirrsten,wirres,wirrerem,wirre,wirren,wirreres,wirrem,wirrere,wirrerer,wirrstes,wirrster,wirrer,wirreren" }, "wutentbrannt": { "form": "wutentbrannt", "polarity": "-0.3138", "pos": "JJ", "sense": "wutentbrannte,wutentbranntem,wutentbrannten,wutentbrannter,wutentbranntes" }, "wutschäumend": { "form": "wutschäumend", "polarity": "-0.0048", "pos": "JJ", "sense": "wutschäumendem,wutschäumenden,wutschäumenderer,wutschäumenderes,wutschäumender,wutschäumendes,wutschäumendstes,wutschäumendste,wutschäumenderem,wutschäumenderen,wutschäumendstem,wutschäumendsten,wutschäumendster,wutschäumendere,wutschäumende" }, "würgen": { "form": "würgen", "polarity": "-0.0048", "pos": "VB", "sense": "würge,würgst,würgt,würgest,würget,würgte,würgtest,würgten,würgtet,gewürgt" }, "wüten": { "form": "wüten", "polarity": "-0.0048", "pos": "VB", "sense": "wüte,wütest,wütet,wütete,wütetest,wüteten,wütetet,gewütet" }, "wütend": { "form": "wütend", "polarity": "-0.3233", "pos": "JJ", "sense": "wütende,wütendem,wütenden,wütender,wütendes,wütendere,wütenderem,wütenderen,wütenderer,wütenderes,wütendste,wütendstem,wütendsten,wütendster,wütendstes" }, "zahlungsunfähig": { "form": "zahlungsunfähig", "polarity": "-0.0048", "pos": "JJ", "sense": "zahlungsunfähige,zahlungsunfähigem,zahlungsunfähigen,zahlungsunfähiger,zahlungsunfähiges" }, "zappeln": { "form": "zappeln", "polarity": "-0.0048", "pos": "VB", "sense": "zappele,zapple,zappelst,zappelt,zapplest,zapplet,zappelte,zappeltest,zappelten,gezappelt" }, "zaudern": { "form": "zaudern", "polarity": "-0.0048", "pos": "VB", "sense": "zauderst,zauderte,zaudert,zaudertet,zaudere,zaudertest,zauderen,zauderten,gezaudert" }, "zensieren": { "form": "zensieren", "polarity": "-0.315", "pos": "VB", "sense": "zensiertet,zensiere,zensiertest,zensierst,zensierte,zensierten,zensieret,zensierest,zensiert" }, "zerbrechen": { "form": "zerbrechen", "polarity": "-0.0522", "pos": "VB", "sense": "zerbreche,zerbrichst,zerbricht,zerbrecht,zerbrechest,zerbrechet,zerbrach,zerbrachst,zerbrachen,zerbracht,zerbräche,zerbrächest,zerbrächst,zerbrächen,zerbrächet,zerbrächt,zerbrochen" }, "zerfressen": { "form": "zerfressen", "polarity": "-0.0048", "pos": "VB", "sense": "zerfresse,zerfrisst,zerfrißt,zerfresst,zerfreßt,zerfressest,zerfresset,zerfraß,zerfraßest,zerfraßt,zerfraßen,zerfräße,zerfräßest,zerfräßen,zerfräßet" }, "zerren": { "form": "zerren", "polarity": "-0.0048", "pos": "VB", "sense": "zerrtet,zerrtest,zerret,zerrest,gezerrt,zerrten,zerrt,zerre,zerrst,zerrte" }, "zerrissen": { "form": "zerrissen", "polarity": "-0.4776", "pos": "JJ", "sense": "zerrissenes,zerrissener,zerrissenen,zerrissenster,zerrissenstes,zerrissenste,zerrissenerer,zerrissenstem,zerrissensten,zerrisseneres,zerrissenerem,zerrisseneren,zerrissenere,zerrissenem,zerrissene" }, "zerschlagen": { "form": "zerschlagen", "polarity": "-0.0048", "pos": "JJ", "sense": "zerschlagenere,zerschlagenerem,zerschlagenste,zerschlageneren,zerschlagenem,zerschlagenstem,zerschlagenen,zerschlagenerer,zerschlagensten,zerschlageneres,zerschlagener,zerschlagenstes,zerschlagenes,zerschlagenster,zerschlagene" }, "zerschmettern": { "form": "zerschmettern", "polarity": "-0.0048", "pos": "VB", "sense": "zerschmettertest,zerschmetterten,zerschmetterst,zerschmettere,zerschmettert,zerschmetter,zerschmetteren,zerschmettertet,zerschmetterte" }, "zerschunden": { "form": "zerschunden", "polarity": "-0.0048", "pos": "JJ", "sense": "zerschundnerem,zerschundene,zerschundeneres,zerschundenerer,zerschundneren,zerschundenstes,zerschundneres,zerschundenster,zerschundeneren,zerschundnerer,zerschundnere,zerschundenerem,zerschundner,zerschundenes,zerschundener,zerschundenste,zerschundenen,zerschundenere,zerschundenem,zerschundenst,zerschundenstem,zerschundensten" }, "zersetzen": { "form": "zersetzen", "polarity": "-0.0048", "pos": "VB", "sense": "zersetzte,zersetztet,zersetzest,zersetzten,zersetztest,zersetzet,zersetze,zersetzt" }, "zersetzend": { "form": "zersetzend", "polarity": "-0.0048", "pos": "JJ", "sense": "zersetzende,zersetzendem,zersetzenden,zersetzender,zersetzendes,zersetzendere,zersetzenderem,zersetzenderen,zersetzenderer,zersetzenderes,zersetzendste,zersetzendstem,zersetzendsten,zersetzendster,zersetzendstes" }, "zerstreuen": { "form": "zerstreuen", "polarity": "-0.0048", "pos": "VB", "sense": "zerstreue,zerstreust,zerstreut,zerstreuest,zerstreuet,zerstreute,zerstreutest,zerstreuten,zerstreutet" }, "zerstören": { "form": "zerstören", "polarity": "-0.5131", "pos": "VB", "sense": "zerstöret,zerstörest,zerstörten,zerstörte,zerstörst,zerstörtest,zerstöre,zerstört,zerstörtet" }, "zerstörerisch": { "form": "zerstörerisch", "polarity": "-0.4715", "pos": "JJ", "sense": "zerstörerischsten,zerstörerischerer,zerstörerischstem,zerstörerischeres,zerstörerischstes,zerstörerischster,zerstörerische,zerstörerischem,zerstörerischere,zerstörerischen,zerstörerisches,zerstörerischerem,zerstörerischeren,zerstörerischer,zerstörerischste" }, "zerstört": { "form": "zerstört", "polarity": "-0.503", "pos": "JJ", "sense": "zerstörte,zerstörtem,zerstörten,zerstörter,zerstörtes" }, "ziellos": { "form": "ziellos", "polarity": "-0.3305", "pos": "JJ", "sense": "ziellose,zielloser,ziellosen,ziellosem,zielloseste,zielloserem,zielloses,zielloserer,zielloseres,zielloseren,ziellosester,ziellosestes,ziellosere,ziellosestem,ziellosesten" }, "zittern": { "form": "zittern", "polarity": "-0.0048", "pos": "VB", "sense": "zitteren,zitterte,zitterst,zitterten,zittertet,zittertest,zittert,zittere,gezittert" }, "zornig": { "form": "zornig", "polarity": "-0.1853", "pos": "JJ", "sense": "zornigerer,zorniges,zorniger,zornigeres,zornige,zornigen,zornigem,zornigste,zornigeren,zornigerem,zornigere,zornigsten,zornigstem,zornigster,zornigstes" }, "zurückbleiben": { "form": "zurückbleiben", "polarity": "-0.1831", "pos": "VB", "sense": "zurückbleibe,zurückbleibst,zurückbleibt,zurückbleibest,zurückbleibet,zurückblieb,zurückbliebst,zurückblieben,zurückbliebt,zurückbliebe,zurückbliebest,zurückbliebet" }, "zurückgeben": { "form": "zurückgeben", "polarity": "-0.0619", "pos": "VB", "sense": "zurückgebe,zurückgibst,zurückgibt,zurückgebt,zurückgebest,zurückgebet,zurückgab,zurückgabst,zurückgaben,zurückgabt,zurückgäbe,zurückgäbest,zurückgäbst,zurückgäben,zurückgäbet,zurückgäbt" }, "zurückgegeben": { "form": "zurückgegeben", "polarity": "-0.3502", "pos": "JJ", "sense": "zurückgegebene,zurückgegebenem,zurückgegebenen,zurückgegebener,zurückgegebenes" }, "zurückgehen": { "form": "zurückgehen", "polarity": "-0.0048", "pos": "VB", "sense": "zurückgehe,zurückgehst,zurückgeht,zurückgehest,zurückgehet,zurückging,zurückgingst,zurückgingen,zurückgingt,zurückginge,zurückgingest,zurückginget,zurückgegangen" }, "zurückgeschickt": { "form": "zurückgeschickt", "polarity": "-0.3377", "pos": "JJ", "sense": "zurückgeschickte,zurückgeschicktem,zurückgeschickten,zurückgeschickter,zurückgeschicktes" }, "zurückhalten": { "form": "zurückhalten", "polarity": "-0.0048", "pos": "VB", "sense": "zurückhalte,zurückhältst,zurückhält,zurückhaltet,zurückhaltest,zurückhielt,zurückhieltest,zurückhieltst,zurückhielten,zurückhieltet,zurückhielte,zurückgehalten" }, "zurückschicken": { "form": "zurückschicken", "polarity": "-0.331", "pos": "VB", "sense": "zurückschickt,zurückschickten,zurückschicket,zurückschicktet,zurückgeschickt,zurückschickte,zurückschickst,zurückschicke,zurückschicktest,zurückschickest" }, "zusammenbrechen": { "form": "zusammenbrechen", "polarity": "-0.3317", "pos": "VB", "sense": "zusammenbreche,zusammenbrichst,zusammenbricht,zusammenbrecht,zusammenbrechest,zusammenbrechet,zusammenbrach,zusammenbrachst,zusammenbrachen,zusammenbracht,zusammenbräche,zusammenbrächest,zusammenbrächst,zusammenbrächen,zusammenbrächet,zusammenbrächt" }, "zusammenhanglos": { "form": "zusammenhanglos", "polarity": "-0.0048", "pos": "JJ", "sense": "zusammenhanglosestes,zusammenhangloseren,zusammenhangloserem,zusammenhangloserer,zusammenhangloseres,zusammenhanglose,zusammenhanglosestem,zusammenhanglosesten,zusammenhangloseste,zusammenhanglosester,zusammenhanglosere,zusammenhangloser,zusammenhangloses,zusammenhanglosen,zusammenhanglosem" }, "zusammenrechen": { "form": "zusammenrechen", "polarity": "-0.0048", "pos": "VB", "sense": "zusammenreche,zusammenrechst,zusammenrecht,zusammenrechest,zusammenrechet,zusammenrechte,zusammenrechtest,zusammenrechten,zusammenrechtet,zusammengerecht" }, "zusammenschlagen": { "form": "zusammenschlagen", "polarity": "-0.0395", "pos": "VB", "sense": "zusammenschlage,zusammenschlägst,zusammenschlägt,zusammenschlagt,zusammenschlagest,zusammenschlaget,zusammenschlug,zusammenschlugst,zusammenschlugen,zusammenschlugt,zusammenschlüge,zusammenschlügest,zusammenschlügst,zusammenschlügen,zusammenschlüget,zusammenschlügt" }, "zusammenstoßen": { "form": "zusammenstoßen", "polarity": "-0.0048", "pos": "VB", "sense": "zusammenstoße,zusammenstößt,zusammenstoßt,zusammenstoßest,zusammenstoßet,zusammenstieß,zusammenstießest,zusammenstießt,zusammenstießen,zusammenstieße,zusammenstießet" }, "zwecklos": { "form": "zwecklos", "polarity": "-0.0048", "pos": "JJ", "sense": "zwecklosen,zwecklosem,zweckloser,zweckloses,zwecklosere,zwecklosester,zwecklosestes,zweckloseres,zweckloserer,zwecklosesten,zwecklosestem,zweckloseste,zweckloseren,zweckloserem,zwecklose" }, "zweideutig": { "form": "zweideutig", "polarity": "-0.3174", "pos": "JJ", "sense": "zweideutigsten,zweideutigstem,zweideutigstes,zweideutigster,zweideutigste,zweideutigere,zweideutigerem,zweideutigeren,zweideutigem,zweideutige,zweideutigen,zweideutigeres,zweideutiges,zweideutiger,zweideutigerer" }, "zweifelhaft": { "form": "zweifelhaft", "polarity": "-0.3455", "pos": "JJ", "sense": "zweifelhaftem,zweifelhaften,zweifelhafteres,zweifelhaftestem,zweifelhafterer,zweifelhaftesten,zweifelhafte,zweifelhafteren,zweifelhafterem,zweifelhafteste,zweifelhaftestes,zweifelhaftester,zweifelhaftere,zweifelhafter,zweifelhaftes" }, "zweifeln": { "form": "zweifeln", "polarity": "-0.1935", "pos": "VB", "sense": "zweifelten,gezweifelt,zweifelen,zweifle,zweifeltet,zweifeltest,zweifelt,zweifelte,zweifelst,zweifele,zweifel" }, "zweitklassig": { "form": "zweitklassig", "polarity": "-0.1725", "pos": "JJ", "sense": "zweitklassige,zweitklassigem,zweitklassigen,zweitklassiger,zweitklassiges" }, "zwiespältig": { "form": "zwiespältig", "polarity": "-0.0048", "pos": "JJ", "sense": "zwiespältige,zwiespältigem,zwiespältigen,zwiespältiger,zwiespältiges" }, "zwieträchtig": { "form": "zwieträchtig", "polarity": "-0.0048", "pos": "JJ", "sense": "zwieträchtigem,zwieträchtigen,zwieträchtige,zwieträchtiger,zwieträchtigste,zwieträchtiges,zwieträchtigster,zwieträchtigeren,zwieträchtigstes,zwieträchtigerem,zwieträchtigsten,zwieträchtigere,zwieträchtigstem,zwieträchtigerer,zwieträchtigeres" }, "zwingen": { "form": "zwingen", "polarity": "-0.4975", "pos": "VB", "sense": "zwinge,zwingst,zwingt,zwingest,zwinget,zwang,zwangst,zwangen,zwangt,zwänge,zwängest,zwängst,zwängen,zwänget,zwängt,gezwungen" }, "zögern": { "form": "zögern", "polarity": "-0.0048", "pos": "VB", "sense": "gezögert,zögertet,zögeren,zögerst,zögertest,zögerte,zögerten,zögert,zögere" }, "züchtigen": { "form": "züchtigen", "polarity": "-0.0048", "pos": "JJ", "sense": "züchtigt,züchtigtest,züchtige,gezüchtigt,züchtigtet,züchtigest,züchtiget,züchtigst,züchtigte,züchtigten" }, "Ärger": { "form": "Ärger", "polarity": "-0.3465", "pos": "NN", "sense": "Ärgers" }, "Ärgernis": { "form": "Ärgernis", "polarity": "-0.3357", "pos": "NN", "sense": "Ärgernisses,Ärgernissen,Ärgernisse" }, "Übel": { "form": "Übel", "polarity": "-0.4895", "pos": "NN", "sense": "Übels,Übeln" }, "Überfüllung": { "form": "Überfüllung", "polarity": "-0.0048", "pos": "NN", "sense": "Überfüllungen" }, "Übergewicht": { "form": "Übergewicht", "polarity": "-0.2011", "pos": "NN", "sense": "Übergewichtes,Übergewichten,Übergewichte,Übergewichts" }, "Überhöhung": { "form": "Überhöhung", "polarity": "-0.0048", "pos": "NN", "sense": "Überhöhungen" }, "Überlastung": { "form": "Überlastung", "polarity": "-0.0048", "pos": "NN", "sense": "Überlastungen" }, "Übermaß": { "form": "Übermaß", "polarity": "-0.3337", "pos": "NN", "sense": "Übermaße,Übermaßes,Übermaßen" }, "Überschreitung": { "form": "Überschreitung", "polarity": "-0.0048", "pos": "NN", "sense": "Überschreitungen" }, "Überschuß": { "form": "Überschuß", "polarity": "-0.1924", "pos": "NN", "sense": "Überschuss,Überschusse,Überschusses,Überschüsse,Überschüssen" }, "Überschwemmung": { "form": "Überschwemmung", "polarity": "-0.0048", "pos": "NN", "sense": "Überschwemmungen" }, "Übertreibung": { "form": "Übertreibung", "polarity": "-0.0424", "pos": "NN", "sense": "Übertreibungen" }, "ängstigen": { "form": "ängstigen", "polarity": "-0.3193", "pos": "VB", "sense": "ängstige,änsgtigst,ängstigest,ängstiget,ängstigte,ängstigtest,ängstigten,ängstigtet" }, "ängstlich": { "form": "ängstlich", "polarity": "-0.4735", "pos": "JJ", "sense": "ängstlichste,ängstlichen,ängstlichem,ängstlicheren,ängstlichstem,ängstlichsten,ängstlicherem,ängstlicher,ängstlichster,ängstliche,ängstlichstes,ängstliches,ängstlichere,ängstlicheres,ängstlicherer" }, "ärgerlich": { "form": "ärgerlich", "polarity": "-0.3111", "pos": "JJ", "sense": "ärgerlichstem,ärgerlichsten,ärgerlichen,ärgerlichem,ärgerliches,ärgerlichster,ärgerlicher,ärgerlichstes,ärgerlicherer,ärgerlicheres,ärgerlicheren,ärgerlicherem,ärgerliche,ärgerlichere,ärgerlichste" }, "ärgern": { "form": "ärgern", "polarity": "-0.0048", "pos": "VB", "sense": "ärgere,ärgerst,ärgert,ärgerte,ärgertest,ärgerten,ärgertet,geärgert" }, "öde": { "form": "öde", "polarity": "-0.457", "pos": "JJ", "sense": "öd,ödem,öden,öder,ödes,ödere,öderem,öderen,öderer,öderes,ödeste,ödestem,ödesten,ödester,ödestes" }, "übellaunig": { "form": "übellaunig", "polarity": "-0.0048", "pos": "JJ", "sense": "übellaunigerer,übellauniges,übellauniger,übellaunigem,übellaunigere,übellaunigeres,übellaunigen,übellaunige,übellaunigste,übellaunigstes,übellaunigster,übellaunigeren,übellaunigerem,übellaunigsten,übellaunigstem" }, "überfallen": { "form": "überfallen", "polarity": "-0.3457", "pos": "VB", "sense": "überfalle,überfällst,überfällt,überfallt,überfallest,überfallet,überfiel,überfielst,überfielen,überfielt,überfiele,überfielest,überfielet" }, "überfluten": { "form": "überfluten", "polarity": "-0.0048", "pos": "VB", "sense": "überflute,überflutest,überflutet,überflutete,überflutetest,überfluteten,überflutetet" }, "überflüssig": { "form": "überflüssig", "polarity": "-0.5154", "pos": "JJ", "sense": "überflüssiges,überflüssiger,überflüssigere,überflüssigerem,überflüssigstes,überflüssigeren,überflüssigen,überflüssigste,überflüssigem,überflüssigeres,überflüssigerer,überflüssige,überflüssigstem,überflüssigsten,überflüssigster" }, "übergewichtig": { "form": "übergewichtig", "polarity": "-0.3215", "pos": "JJ", "sense": "übergewichtigstes,übergewichtigster,übergewichtigste,übergewichtigstem,übergewichtigeren,übergewichtigeres,übergewichtigsten,übergewichtigerer,übergewichtiger,übergewichtigerem,übergewichtigen,übergewichtigere,übergewichtigem,übergewichtige,übergewichtiges" }, "überhöhen": { "form": "überhöhen", "polarity": "-0.0048", "pos": "VB", "sense": "überhöhtet,überhöhe,überhöht,überhöhet,überhöhest,überhöhtest,überhöhst,überhöhte,überhöhten" }, "überlasten": { "form": "überlasten", "polarity": "-0.3413", "pos": "VB", "sense": "überlaste,überlastest,überlastet,überlastete,überlastetest,überlasteten,überlastetet" }, "übermäßig": { "form": "übermäßig", "polarity": "-0.1844", "pos": "JJ", "sense": "übermäßiger,übermäßigste,übermäßiges,übermäßigstes,übermäßigster,übermäßigsten,übermäßige,übermäßigeren,übermäßigerem,übermäßigstem,übermäßigerer,übermäßigeres,übermäßigen,übermäßigem,übermäßigere" }, "überschreiten": { "form": "überschreiten", "polarity": "-0.0048", "pos": "VB", "sense": "überschreite,überschreitest,überschreitet,überschritt,überschrittest,überschritten,überschrittet" }, "überschwemmen": { "form": "überschwemmen", "polarity": "-0.0048", "pos": "VB", "sense": "überschwemmet,überschwemmst,überschwemmt,überschwemmte,überschwemmtet,überschwemmtest,überschwemme,überschwemmten,überschwemmest" }, "übersehen": { "form": "übersehen", "polarity": "-0.5128", "pos": "VB", "sense": "übersehe,übersiehst,übersieht,überseht,übersehest,übersehet,übersah,übersahst,übersahen,übersaht,übersähe,übersähest,übersähst,übersähen,übersähet,übersäht" }, "übertreiben": { "form": "übertreiben", "polarity": "-0.0372", "pos": "VB", "sense": "übertreibe,übertreibst,übertreibt,übertreibest,übertreibet,übertrieb,übertriebst,übertrieben,übertriebt,übertriebe,übertriebest,übertriebet" }, "übertreten": { "form": "übertreten", "polarity": "-0.329", "pos": "VB", "sense": "übertrete,übertrittst,übertritt,übertretet,übertretest,übertrat,übertratest,übertratst,übertraten,übertratet,überträte,überträtest,überträten,überträtet" }, "übertrieben": { "form": "übertrieben", "polarity": "-0.3203", "pos": "JJ", "sense": "übertriebenes,übertriebenerer,übertriebeneres,übertriebener,übertriebner,übertriebeneren,übertriebenste,übertriebenen,übertriebenem,übertriebnerem,übertriebneren,übertriebnere,übertriebenerem,übertriebnerer,übertriebenstem,übertriebneres,übertriebene,übertriebenere,übertriebensten,übertriebenstes,übertriebenster" }, "überwältigen": { "form": "überwältigen", "polarity": "-0.0048", "pos": "VB", "sense": "überwältigest,überwältigten,überwältige,überwältigt,überwältigte,überwältigtest,überwältigst,überwältiget,überwältigtet" }, "Abmachung": { "form": "Abmachung", "polarity": "0.0040", "pos": "NN", "sense": "Abmachungen" }, "Abschluß": { "form": "Abschluß", "polarity": "0.0040", "pos": "NN", "sense": "Abschluss,Abschlusse,Abschlusses,Abschlüsse,Abschlüssen" }, "Abstimmung": { "form": "Abstimmung", "polarity": "0.0040", "pos": "NN", "sense": "Abstimmungen" }, "Agilität": { "form": "Agilität", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Aktivität": { "form": "Aktivität", "polarity": "0.0040", "pos": "NN", "sense": "Aktivitäten" }, "Aktualisierung": { "form": "Aktualisierung", "polarity": "0.0040", "pos": "NN", "sense": "Aktualisierungen" }, "Aktualität": { "form": "Aktualität", "polarity": "0.0040", "pos": "NN", "sense": "Aktualitäten" }, "Akzeptanz": { "form": "Akzeptanz", "polarity": "0.0040", "pos": "NN", "sense": "Akzeptanzen" }, "Andrang": { "form": "Andrang", "polarity": "0.0040", "pos": "NN", "sense": "Andrangs,Andranges,Andrange" }, "Anerkennung": { "form": "Anerkennung", "polarity": "0.0855", "pos": "NN", "sense": "Anerkennungen" }, "Angebot": { "form": "Angebot", "polarity": "0.0711", "pos": "NN", "sense": "Angeboten,Angebote,Angebots,Angebotes" }, "Angemessenheit": { "form": "Angemessenheit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Anhebung": { "form": "Anhebung", "polarity": "0.0040", "pos": "NN", "sense": "Anhebungen" }, "Anheiterung": { "form": "Anheiterung", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Ankurbelung": { "form": "Ankurbelung", "polarity": "0.0040", "pos": "NN", "sense": "Ankurbelungen" }, "Annehmlichkeit": { "form": "Annehmlichkeit", "polarity": "0.0040", "pos": "NN", "sense": "Annehmlichkeiten" }, "Annäherung": { "form": "Annäherung", "polarity": "0.0040", "pos": "NN", "sense": "Annäherungen" }, "Anpassung": { "form": "Anpassung", "polarity": "0.0040", "pos": "NN", "sense": "Anpassungen" }, "Anpassungsfähigkeit": { "form": "Anpassungsfähigkeit", "polarity": "0.0040", "pos": "NN", "sense": "Anpassungsfähigkeiten" }, "Anreicherung": { "form": "Anreicherung", "polarity": "0.0040", "pos": "NN", "sense": "Anreicherungen" }, "Anspruch": { "form": "Anspruch", "polarity": "0.0040", "pos": "NN", "sense": "Anspruchs,Anspruches,Ansprüchen,Ansprüche" }, "Anstand": { "form": "Anstand", "polarity": "0.0040", "pos": "NN", "sense": "Anstands,Anständen,Anstände,Anstandes" }, "Anstieg": { "form": "Anstieg", "polarity": "0.0040", "pos": "NN", "sense": "Anstiegen,Anstiegs,Anstiege,Anstieges" }, "Anständigkeit": { "form": "Anständigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Anteil": { "form": "Anteil", "polarity": "0.0040", "pos": "NN", "sense": "Anteilen,Anteiles,Anteils,Anteile" }, "Anziehung": { "form": "Anziehung", "polarity": "0.0040", "pos": "NN", "sense": "Anziehungen" }, "Applaus": { "form": "Applaus", "polarity": "0.0871", "pos": "NN", "sense": "Applausen,Applause,Applauses" }, "Attraktivität": { "form": "Attraktivität", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Aufbereitung": { "form": "Aufbereitung", "polarity": "0.0040", "pos": "NN", "sense": "Aufbereitungen" }, "Aufbesserung": { "form": "Aufbesserung", "polarity": "0.0040", "pos": "NN", "sense": "Aufbesserungen" }, "Auferstehung": { "form": "Auferstehung", "polarity": "0.0040", "pos": "NN", "sense": "Auferstehungen" }, "Aufmerksamkeit": { "form": "Aufmerksamkeit", "polarity": "0.0040", "pos": "NN", "sense": "Aufmerksamkeiten" }, "Aufmunterung": { "form": "Aufmunterung", "polarity": "0.0040", "pos": "NN", "sense": "Aufmunterungen" }, "Aufrichtigkeit": { "form": "Aufrichtigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Aufschwung": { "form": "Aufschwung", "polarity": "0.0040", "pos": "NN", "sense": "Aufschwüngen,Aufschwungs,Aufschwunges,Aufschwünge,Aufschwunge" }, "Aufstieg": { "form": "Aufstieg", "polarity": "0.0040", "pos": "NN", "sense": "Aufstiegen,Aufstiege,Aufstiegs,Aufstieges" }, "Aufstockung": { "form": "Aufstockung", "polarity": "0.0040", "pos": "NN", "sense": "Aufstockungen" }, "Auftrag": { "form": "Auftrag", "polarity": "0.0040", "pos": "NN", "sense": "Aufträgen,Aufträge,Auftrages,Auftrags,Auftrage" }, "Auftrieb": { "form": "Auftrieb", "polarity": "0.0040", "pos": "NN", "sense": "Auftrieben,Auftriebs,Auftriebes,Auftriebe" }, "Aufwertung": { "form": "Aufwertung", "polarity": "0.0040", "pos": "NN", "sense": "Aufwertungen" }, "Aufwärtstrend": { "form": "Aufwärtstrend", "polarity": "0.0040", "pos": "NN", "sense": "Aufwärtstrends" }, "Augenweide": { "form": "Augenweide", "polarity": "0.0844", "pos": "NN", "sense": "Augenweiden" }, "Ausbau": { "form": "Ausbau", "polarity": "0.0040", "pos": "NN", "sense": "Ausbaues,Ausbaus" }, "Ausbildung": { "form": "Ausbildung", "polarity": "0.0040", "pos": "NN", "sense": "Ausbildungen" }, "Ausdauer": { "form": "Ausdauer", "polarity": "0.0886", "pos": "NN", "sense": "" }, "Ausgleich": { "form": "Ausgleich", "polarity": "0.0040", "pos": "NN", "sense": "Ausgleichen,Ausgleichs,Ausgleiches,Ausgleiche" }, "Ausgleichszahlung": { "form": "Ausgleichszahlung", "polarity": "0.0040", "pos": "NN", "sense": "Ausgleichszahlungen" }, "Auszeichnung": { "form": "Auszeichnung", "polarity": "0.0040", "pos": "NN", "sense": "Auszeichnungen" }, "Authentizität": { "form": "Authentizität", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Autonomie": { "form": "Autonomie", "polarity": "0.0040", "pos": "NN", "sense": "Autonomien" }, "Bedeutung": { "form": "Bedeutung", "polarity": "0.0040", "pos": "NN", "sense": "Bedeutungen" }, "Befreiung": { "form": "Befreiung", "polarity": "0.0040", "pos": "NN", "sense": "Befreiungen" }, "Befriedigung": { "form": "Befriedigung", "polarity": "0.0040", "pos": "NN", "sense": "Befriedigungen" }, "Beförderung": { "form": "Beförderung", "polarity": "0.0040", "pos": "NN", "sense": "Beförderungen" }, "Begeisterung": { "form": "Begeisterung", "polarity": "0.32", "pos": "NN", "sense": "Begeisterungen" }, "Begnadigung": { "form": "Begnadigung", "polarity": "0.0040", "pos": "NN", "sense": "Begnadigungen" }, "Begünstigung": { "form": "Begünstigung", "polarity": "0.0040", "pos": "NN", "sense": "Begünstigungen" }, "Beifall": { "form": "Beifall", "polarity": "0.3265", "pos": "NN", "sense": "Beifalles,Beifalls,Beifalle" }, "Beifallsruf": { "form": "Beifallsruf", "polarity": "0.0040", "pos": "NN", "sense": "Beifallsrufen,Beifallsrufes,Beifallsrufe,Beifallsrufs" }, "Beilegung": { "form": "Beilegung", "polarity": "0.0040", "pos": "NN", "sense": "Beilegungen" }, "Beisteuerung": { "form": "Beisteuerung", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Beitritt": { "form": "Beitritt", "polarity": "0.0040", "pos": "NN", "sense": "Beitritten,Beitritts,Beitritte,Beitrittes" }, "Bekräftigung": { "form": "Bekräftigung", "polarity": "0.0040", "pos": "NN", "sense": "Bekräftigungen" }, "Belastbarkeit": { "form": "Belastbarkeit", "polarity": "0.0040", "pos": "NN", "sense": "Belastbarkeiten" }, "Belebtheit": { "form": "Belebtheit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Beliebtheit": { "form": "Beliebtheit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Belohnung": { "form": "Belohnung", "polarity": "0.0813", "pos": "NN", "sense": "Belohnungen" }, "Benefiz": { "form": "Benefiz", "polarity": "0.0040", "pos": "NN", "sense": "Benefizes,Benefizen,Benefize" }, "Bereicherung": { "form": "Bereicherung", "polarity": "0.0040", "pos": "NN", "sense": "Bereicherungen" }, "Bereitschaft": { "form": "Bereitschaft", "polarity": "0.0040", "pos": "NN", "sense": "Bereitschaften" }, "Bereitstellung": { "form": "Bereitstellung", "polarity": "0.0040", "pos": "NN", "sense": "Bereitstellungen" }, "Beruhigung": { "form": "Beruhigung", "polarity": "0.0040", "pos": "NN", "sense": "Beruhigungen" }, "Bescheidenheit": { "form": "Bescheidenheit", "polarity": "0.0852", "pos": "NN", "sense": "" }, "Beschleunigung": { "form": "Beschleunigung", "polarity": "0.0040", "pos": "NN", "sense": "Beschleunigungen" }, "Beschwichtigung": { "form": "Beschwichtigung", "polarity": "0.0040", "pos": "NN", "sense": "Beschwichtigungen" }, "Besitz": { "form": "Besitz", "polarity": "0.0040", "pos": "NN", "sense": "Besitzes,Besitzs" }, "Besserung": { "form": "Besserung", "polarity": "0.0040", "pos": "NN", "sense": "Besserungen" }, "Bestätigung": { "form": "Bestätigung", "polarity": "0.0040", "pos": "NN", "sense": "Bestätigungen" }, "Beteiligung": { "form": "Beteiligung", "polarity": "0.0040", "pos": "NN", "sense": "Beteiligungen" }, "Bewunderer": { "form": "Bewunderer", "polarity": "0.0040", "pos": "NN", "sense": "Bewunderers,Bewunderern" }, "Bewunderung": { "form": "Bewunderung", "polarity": "0.0040", "pos": "NN", "sense": "Bewunderungen" }, "Bildung": { "form": "Bildung", "polarity": "0.0040", "pos": "NN", "sense": "Bildungen" }, "Blüte": { "form": "Blüte", "polarity": "0.0040", "pos": "NN", "sense": "Blüten" }, "Bonität": { "form": "Bonität", "polarity": "0.0040", "pos": "NN", "sense": "Bonitäten" }, "Bonus": { "form": "Bonus", "polarity": "0.0040", "pos": "NN", "sense": "Bonussen,Bonusses,Boni,Bonusse" }, "Boom": { "form": "Boom", "polarity": "0.0040", "pos": "NN", "sense": "Booms" }, "Brillanz": { "form": "Brillanz", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Brüderlichkeit": { "form": "Brüderlichkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Bund": { "form": "Bund", "polarity": "0.0040", "pos": "NN", "sense": "Bünden,Bundes,Bunds,Bunde,Bünde" }, "Bündnis": { "form": "Bündnis", "polarity": "0.0040", "pos": "NN", "sense": "Bündnisse,Bündnisses,Bündnissen" }, "Champion": { "form": "Champion", "polarity": "0.0040", "pos": "NN", "sense": "Champions" }, "Charisma": { "form": "Charisma", "polarity": "0.0040", "pos": "NN", "sense": "Charismas,Charismata,Charismen" }, "Charme": { "form": "Charme", "polarity": "0.0040", "pos": "NN", "sense": "Charmes" }, "Cleverness": { "form": "Cleverness", "polarity": "0.0040", "pos": "NN", "sense": "Cleverneß" }, "Comeback": { "form": "Comeback", "polarity": "0.0712", "pos": "NN", "sense": "Comebacks" }, "Dankbarkeit": { "form": "Dankbarkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Diskretion": { "form": "Diskretion", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Disziplin": { "form": "Disziplin", "polarity": "0.0611", "pos": "NN", "sense": "Disziplinen" }, "Duft": { "form": "Duft", "polarity": "0.2149", "pos": "NN", "sense": "Duftes,Düfte,Dufts,Düften,Dufte" }, "Dynamik": { "form": "Dynamik", "polarity": "0.0040", "pos": "NN", "sense": "Dynamiken" }, "Echtheit": { "form": "Echtheit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Effizienz": { "form": "Effizienz", "polarity": "0.0040", "pos": "NN", "sense": "Effizienzen" }, "Ehre": { "form": "Ehre", "polarity": "0.0732", "pos": "NN", "sense": "Ehren" }, "Ehrfurcht": { "form": "Ehrfurcht", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Ehrlichkeit": { "form": "Ehrlichkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Ehrwürdigkeit": { "form": "Ehrwürdigkeit", "polarity": "0.0040", "pos": "NN", "sense": "Ehrwürdigkeiten" }, "Eifer": { "form": "Eifer", "polarity": "0.0040", "pos": "NN", "sense": "Eifers" }, "Eigenkapital": { "form": "Eigenkapital", "polarity": "0.0040", "pos": "NN", "sense": "Eigenkapitals,Eigenkapitalien,Eigenkapitale,Eigenkapitalen" }, "Eignung": { "form": "Eignung", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Eindeutigkeit": { "form": "Eindeutigkeit", "polarity": "0.0040", "pos": "NN", "sense": "Eindeutigkeiten" }, "Einfallsreichtum": { "form": "Einfallsreichtum", "polarity": "0.0040", "pos": "NN", "sense": "Einfallsreichtums" }, "Einhaltung": { "form": "Einhaltung", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Einheit": { "form": "Einheit", "polarity": "0.0040", "pos": "NN", "sense": "Einheiten" }, "Einheitlichkeit": { "form": "Einheitlichkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Einkauf": { "form": "Einkauf", "polarity": "0.0040", "pos": "NN", "sense": "Einkäufen,Einkäufe,Einkaufes,Einkaufs,Einkaufe" }, "Einnahme": { "form": "Einnahme", "polarity": "0.0040", "pos": "NN", "sense": "Einnahmen" }, "Einsparung": { "form": "Einsparung", "polarity": "0.0040", "pos": "NN", "sense": "Einsparungen" }, "Einweihung": { "form": "Einweihung", "polarity": "0.0040", "pos": "NN", "sense": "Einweihungen" }, "Einzigartigkeit": { "form": "Einzigartigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Eleganz": { "form": "Eleganz", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Empathie": { "form": "Empathie", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Empfehlung": { "form": "Empfehlung", "polarity": "0.0040", "pos": "NN", "sense": "Empfehlungen" }, "Engagement": { "form": "Engagement", "polarity": "0.2157", "pos": "NN", "sense": "Engagements" }, "Entlastung": { "form": "Entlastung", "polarity": "0.0040", "pos": "NN", "sense": "Entlastungen" }, "Entlohnung": { "form": "Entlohnung", "polarity": "0.0040", "pos": "NN", "sense": "Entlohnungen" }, "Entschluß": { "form": "Entschluß", "polarity": "0.0804", "pos": "NN", "sense": "Entschluss,Entschlusse,Entschlusses,Entschlüsse,Entschlüssen" }, "Entschlüsselung": { "form": "Entschlüsselung", "polarity": "0.0040", "pos": "NN", "sense": "Entschlüsselungen" }, "Entschädigung": { "form": "Entschädigung", "polarity": "0.0040", "pos": "NN", "sense": "Entschädigungen" }, "Entspannung": { "form": "Entspannung", "polarity": "0.0875", "pos": "NN", "sense": "Entspannungen" }, "Entwirrung": { "form": "Entwirrung", "polarity": "0.0040", "pos": "NN", "sense": "Entwirrungen" }, "Erbe": { "form": "Erbe", "polarity": "0.0040", "pos": "NN", "sense": "Erben,Erbes" }, "Erfahrung": { "form": "Erfahrung", "polarity": "0.0040", "pos": "NN", "sense": "Erfahrungen" }, "Erfolg": { "form": "Erfolg", "polarity": "0.3446", "pos": "NN", "sense": "Erfolgs,Erfolge,Erfolgen,Erfolges" }, "Erfolgserlebnis": { "form": "Erfolgserlebnis", "polarity": "0.0884", "pos": "NN", "sense": "Erfolgserlebnisses,Erfolgserlebnissen,Erfolgserlebnisse" }, "Erfüllung": { "form": "Erfüllung", "polarity": "0.0040", "pos": "NN", "sense": "Erfüllungen" }, "Ergiebigkeit": { "form": "Ergiebigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Ergänzung": { "form": "Ergänzung", "polarity": "0.0040", "pos": "NN", "sense": "Ergänzungen" }, "Erhaltung": { "form": "Erhaltung", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Erholung": { "form": "Erholung", "polarity": "0.0865", "pos": "NN", "sense": "Erholungen" }, "Erhöhung": { "form": "Erhöhung", "polarity": "0.0040", "pos": "NN", "sense": "Erhöhungen" }, "Erlaubnis": { "form": "Erlaubnis", "polarity": "0.0040", "pos": "NN", "sense": "Erlaubnisse,Erlaubnissen" }, "Erleichterung": { "form": "Erleichterung", "polarity": "0.0040", "pos": "NN", "sense": "Erleichterungen" }, "Erleuchtung": { "form": "Erleuchtung", "polarity": "0.0040", "pos": "NN", "sense": "Erleuchtungen" }, "Erlösung": { "form": "Erlösung", "polarity": "0.0040", "pos": "NN", "sense": "Erlösungen" }, "Ermutigung": { "form": "Ermutigung", "polarity": "0.0040", "pos": "NN", "sense": "Ermutigungen" }, "Erneuerung": { "form": "Erneuerung", "polarity": "0.0040", "pos": "NN", "sense": "Erneuerungen" }, "Ernsthaftigkeit": { "form": "Ernsthaftigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Ersparnis": { "form": "Ersparnis", "polarity": "0.0040", "pos": "NN", "sense": "Ersparnisse,Ersparnissen" }, "Ertrag": { "form": "Ertrag", "polarity": "0.0040", "pos": "NN", "sense": "Erträgen,Ertrags,Erträge,Ertrages,Ertrage" }, "Erweiterung": { "form": "Erweiterung", "polarity": "0.0040", "pos": "NN", "sense": "Erweiterungen" }, "Erzeugnis": { "form": "Erzeugnis", "polarity": "0.0040", "pos": "NN", "sense": "Erzeugnissen,Erzeugnisses,Erzeugnisse" }, "Experte": { "form": "Experte", "polarity": "0.0040", "pos": "NN", "sense": "Experten" }, "Expertise": { "form": "Expertise", "polarity": "0.0040", "pos": "NN", "sense": "Expertisen" }, "Exzellenz": { "form": "Exzellenz", "polarity": "0.0040", "pos": "NN", "sense": "Exzellenzen" }, "Fairness": { "form": "Fairness", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Faszination": { "form": "Faszination", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Favorit": { "form": "Favorit", "polarity": "0.0040", "pos": "NN", "sense": "Favoriten" }, "Feier": { "form": "Feier", "polarity": "0.0829", "pos": "NN", "sense": "Feiern" }, "Fertigkeit": { "form": "Fertigkeit", "polarity": "0.0040", "pos": "NN", "sense": "Fertigkeiten" }, "Fest": { "form": "Fest", "polarity": "0.2346", "pos": "NN", "sense": "Festes,Fests,Feste,Festen" }, "Festakt": { "form": "Festakt", "polarity": "0.0040", "pos": "NN", "sense": "Festakts,Festaktes,Festakte,Festakten" }, "Festigkeit": { "form": "Festigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Festlichkeit": { "form": "Festlichkeit", "polarity": "0.0040", "pos": "NN", "sense": "Festlichkeiten" }, "Finanzierung": { "form": "Finanzierung", "polarity": "0.0040", "pos": "NN", "sense": "Finanzierungen" }, "Fitness": { "form": "Fitness", "polarity": "0.0851", "pos": "NN", "sense": "" }, "Flair": { "form": "Flair", "polarity": "0.2216", "pos": "NN", "sense": "Flairs" }, "Fleiß": { "form": "Fleiß", "polarity": "0.3113", "pos": "NN", "sense": "Fleißes,Fleißs" }, "Flexibilität": { "form": "Flexibilität", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Fortschritt": { "form": "Fortschritt", "polarity": "0.0040", "pos": "NN", "sense": "Fortschritte,Fortschrittes,Fortschritts,Fortschritten" }, "Freiheit": { "form": "Freiheit", "polarity": "0.0040", "pos": "NN", "sense": "Freiheiten" }, "Freispruch": { "form": "Freispruch", "polarity": "0.0040", "pos": "NN", "sense": "Freisprüchen,Freisprüche,Freispruches,Freispruchs,Freispruche" }, "Freude": { "form": "Freude", "polarity": "0.6502", "pos": "NN", "sense": "Freuden" }, "Freund": { "form": "Freund", "polarity": "0.0116", "pos": "NN", "sense": "Freunden,Freundes,Freunde,Freunds" }, "Freundlichkeit": { "form": "Freundlichkeit", "polarity": "0.0913", "pos": "NN", "sense": "Freundlichkeiten" }, "Freundschaft": { "form": "Freundschaft", "polarity": "0.2059", "pos": "NN", "sense": "Freundschaften" }, "Frieden": { "form": "Frieden", "polarity": "0.0040", "pos": "NN", "sense": "Friedens" }, "Fruchtbarkeit": { "form": "Fruchtbarkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Funktionsfähigkeit": { "form": "Funktionsfähigkeit", "polarity": "0.0040", "pos": "NN", "sense": "Funktionsfähigkeiten" }, "Furchtlosigkeit": { "form": "Furchtlosigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Fähigkeit": { "form": "Fähigkeit", "polarity": "0.0892", "pos": "NN", "sense": "Fähigkeiten" }, "Förderung": { "form": "Förderung", "polarity": "0.0829", "pos": "NN", "sense": "Förderungen" }, "Führung": { "form": "Führung", "polarity": "0.0040", "pos": "NN", "sense": "Führungen" }, "Fülle": { "form": "Fülle", "polarity": "0.0040", "pos": "NN", "sense": "Füllen" }, "Gabe": { "form": "Gabe", "polarity": "0.0747", "pos": "NN", "sense": "Gaben" }, "Garantie": { "form": "Garantie", "polarity": "0.0040", "pos": "NN", "sense": "Garantien" }, "Gastfreundlichkeit": { "form": "Gastfreundlichkeit", "polarity": "0.0040", "pos": "NN", "sense": "Gastfreundlichkeiten" }, "Gedenken": { "form": "Gedenken", "polarity": "0.0040", "pos": "NN", "sense": "Gedenkens" }, "Geduld": { "form": "Geduld", "polarity": "0.0789", "pos": "NN", "sense": "" }, "Gefallen": { "form": "Gefallen", "polarity": "0.3349", "pos": "NN", "sense": "Gefallens" }, "Gehaltszulage": { "form": "Gehaltszulage", "polarity": "0.0040", "pos": "NN", "sense": "Gehaltszulagen" }, "Gelassenheit": { "form": "Gelassenheit", "polarity": "0.0721", "pos": "NN", "sense": "" }, "Geldgeber": { "form": "Geldgeber", "polarity": "0.0040", "pos": "NN", "sense": "Geldgebers,Geldgebern" }, "Gemeinschaft": { "form": "Gemeinschaft", "polarity": "0.0040", "pos": "NN", "sense": "Gemeinschaften" }, "Genauigkeit": { "form": "Genauigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Genehmigung": { "form": "Genehmigung", "polarity": "0.0040", "pos": "NN", "sense": "Genehmigungen" }, "Genesung": { "form": "Genesung", "polarity": "0.0040", "pos": "NN", "sense": "Genesungen" }, "Genialität": { "form": "Genialität", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Genie": { "form": "Genie", "polarity": "0.0697", "pos": "NN", "sense": "Genies" }, "Genuss": { "form": "Genuss", "polarity": "0.0701", "pos": "NN", "sense": "Genusse,Genusses,Genüsse,Genüssen" }, "Genuß": { "form": "Genuß", "polarity": "0.073", "pos": "NN", "sense": "Genusse,Genusses,Genüsse,Genüssen" }, "Gerechtigkeit": { "form": "Gerechtigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Geräumigkeit": { "form": "Geräumigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Geschenk": { "form": "Geschenk", "polarity": "0.4792", "pos": "NN", "sense": "Geschenken,Geschenks,Geschenkes,Geschenke" }, "Geschick": { "form": "Geschick", "polarity": "0.0040", "pos": "NN", "sense": "Geschicke,Geschicks,Geschickes,Geschicken" }, "Geschicklichkeit": { "form": "Geschicklichkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Gesundheit": { "form": "Gesundheit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Gesundung": { "form": "Gesundung", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Gewinn": { "form": "Gewinn", "polarity": "0.0040", "pos": "NN", "sense": "Gewinns,Gewinnen,Gewinne,Gewinnes" }, "Gewinner": { "form": "Gewinner", "polarity": "0.0040", "pos": "NN", "sense": "Gewinnern,Gewinners" }, "Gewährleistung": { "form": "Gewährleistung", "polarity": "0.0040", "pos": "NN", "sense": "Gewährleistungen" }, "Glamour": { "form": "Glamour", "polarity": "0.0040", "pos": "NN", "sense": "Glamours" }, "Glanz": { "form": "Glanz", "polarity": "0.0040", "pos": "NN", "sense": "Glanzs,Glanzes,Glanze" }, "Glaube": { "form": "Glaube", "polarity": "0.0040", "pos": "NN", "sense": "Glaubens,Glauben" }, "Glaubwürdigkeit": { "form": "Glaubwürdigkeit", "polarity": "0.0040", "pos": "NN", "sense": "Glaubwürdigkeiten" }, "Gleichstellung": { "form": "Gleichstellung", "polarity": "0.0040", "pos": "NN", "sense": "Gleichstellungen" }, "Glück": { "form": "Glück", "polarity": "0.2452", "pos": "NN", "sense": "Glücken,Glückes,Glücks,Glücke" }, "Glückseligkeit": { "form": "Glückseligkeit", "polarity": "0.0040", "pos": "NN", "sense": "Glückseligkeiten" }, "Glückwunsch": { "form": "Glückwunsch", "polarity": "0.2193", "pos": "NN", "sense": "Glückwünschen,Glückwünsche,Glückwunschs,Glückwunsches" }, "Gnade": { "form": "Gnade", "polarity": "0.0040", "pos": "NN", "sense": "Gnaden" }, "Gratulation": { "form": "Gratulation", "polarity": "0.428", "pos": "NN", "sense": "Gratulationen" }, "Grenzenlosigkeit": { "form": "Grenzenlosigkeit", "polarity": "0.0040", "pos": "NN", "sense": "Grenzenlosigkeiten" }, "Großzügigigkeit": { "form": "Großzügigigkeit", "polarity": "0.0040", "pos": "NN", "sense": "Großzügigigkeiten" }, "Größe": { "form": "Größe", "polarity": "0.0040", "pos": "NN", "sense": "Größen" }, "Gründlichkeit": { "form": "Gründlichkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Gunst": { "form": "Gunst", "polarity": "0.0040", "pos": "NN", "sense": "Gunsten" }, "Gönner": { "form": "Gönner", "polarity": "0.0040", "pos": "NN", "sense": "Gönnern,Gönners" }, "Gönnerschaft": { "form": "Gönnerschaft", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Gültigkeit": { "form": "Gültigkeit", "polarity": "0.0040", "pos": "NN", "sense": "Gültigkeiten" }, "Güte": { "form": "Güte", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Hammer": { "form": "Hammer", "polarity": "0.0040", "pos": "NN", "sense": "Hämmern,Hammers,Hämmer" }, "Harmonie": { "form": "Harmonie", "polarity": "0.0795", "pos": "NN", "sense": "Harmonien" }, "Harmonisierung": { "form": "Harmonisierung", "polarity": "0.0040", "pos": "NN", "sense": "Harmonisierungen" }, "Hartnäckigkeit": { "form": "Hartnäckigkeit", "polarity": "0.0040", "pos": "NN", "sense": "Hartnäckigkeiten" }, "Heiligtum": { "form": "Heiligtum", "polarity": "0.0040", "pos": "NN", "sense": "Heiligtümern,Heiligtümer,Heiligtums" }, "Heilung": { "form": "Heilung", "polarity": "0.0040", "pos": "NN", "sense": "Heilungen" }, "Heirat": { "form": "Heirat", "polarity": "0.0040", "pos": "NN", "sense": "Heiraten" }, "Heiterkeit": { "form": "Heiterkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Helligkeit": { "form": "Helligkeit", "polarity": "0.0040", "pos": "NN", "sense": "Helligkeiten" }, "Herrlichkeit": { "form": "Herrlichkeit", "polarity": "0.0040", "pos": "NN", "sense": "Herrlichkeiten" }, "Highlight": { "form": "Highlight", "polarity": "0.0040", "pos": "NN", "sense": "Highlights" }, "Hilfe": { "form": "Hilfe", "polarity": "0.0040", "pos": "NN", "sense": "Hilfen" }, "Hilfsbereitschaft": { "form": "Hilfsbereitschaft", "polarity": "0.0040", "pos": "NN", "sense": "Hilfsbereitschaften" }, "Hingabe": { "form": "Hingabe", "polarity": "0.0040", "pos": "NN", "sense": "Hingaben" }, "Hochdruckgebiet": { "form": "Hochdruckgebiet", "polarity": "0.0040", "pos": "NN", "sense": "Hochdruckgebiete,Hochdruckgebiets,Hochdruckgebieten,Hochdruckgebietes" }, "Hochruf": { "form": "Hochruf", "polarity": "0.0040", "pos": "NN", "sense": "Hochrufes,Hochrufen,Hochrufs,Hochrufe" }, "Hochwertigkeit": { "form": "Hochwertigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Hoffnung": { "form": "Hoffnung", "polarity": "0.2038", "pos": "NN", "sense": "Hoffnungen" }, "Humanität": { "form": "Humanität", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Humor": { "form": "Humor", "polarity": "0.3296", "pos": "NN", "sense": "Humoren,Humore,Humors" }, "Hurra": { "form": "Hurra", "polarity": "0.0040", "pos": "NN", "sense": "Hurras" }, "Hurrageschrei": { "form": "Hurrageschrei", "polarity": "0.0040", "pos": "NN", "sense": "Hurrageschreis" }, "Höflichkeit": { "form": "Höflichkeit", "polarity": "0.0040", "pos": "NN", "sense": "Höflichkeiten" }, "Höhepunkt": { "form": "Höhepunkt", "polarity": "0.0040", "pos": "NN", "sense": "Höhepunkten,Höhepunktes,Höhepunkts,Höhepunkte" }, "Individualität": { "form": "Individualität", "polarity": "0.0040", "pos": "NN", "sense": "Individualitäten" }, "Innovation": { "form": "Innovation", "polarity": "0.0040", "pos": "NN", "sense": "Innovationen" }, "Inspiration": { "form": "Inspiration", "polarity": "0.0040", "pos": "NN", "sense": "Inspirationen" }, "Integrität": { "form": "Integrität", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Intellekt": { "form": "Intellekt", "polarity": "0.0040", "pos": "NN", "sense": "Intellekts,Intellekten,Intellektes,Intellekte" }, "Intelligenz": { "form": "Intelligenz", "polarity": "0.0040", "pos": "NN", "sense": "Intelligenzen" }, "Interesse": { "form": "Interesse", "polarity": "0.0040", "pos": "NN", "sense": "Interesses,Interessen" }, "Interessenvertretung": { "form": "Interessenvertretung", "polarity": "0.0040", "pos": "NN", "sense": "Interessenvertretungen" }, "Investition": { "form": "Investition", "polarity": "0.0040", "pos": "NN", "sense": "Investitionen" }, "Jubel": { "form": "Jubel", "polarity": "0.0652", "pos": "NN", "sense": "Jubels" }, "Jubiläum": { "form": "Jubiläum", "polarity": "0.0040", "pos": "NN", "sense": "Jubiläums,Jubiläen" }, "Kauf": { "form": "Kauf", "polarity": "0.0040", "pos": "NN", "sense": "Kaufs,Kaufes,Käufen,Käufe" }, "Klarheit": { "form": "Klarheit", "polarity": "0.0040", "pos": "NN", "sense": "Klarheiten" }, "Komfort": { "form": "Komfort", "polarity": "0.1808", "pos": "NN", "sense": "Komforts" }, "Kommunikation": { "form": "Kommunikation", "polarity": "0.0040", "pos": "NN", "sense": "Kommunikationen" }, "Kompatibilität": { "form": "Kompatibilität", "polarity": "0.0040", "pos": "NN", "sense": "Kompatibilitäten" }, "Kompensation": { "form": "Kompensation", "polarity": "0.0040", "pos": "NN", "sense": "Kompensationen" }, "Kompetenz": { "form": "Kompetenz", "polarity": "0.0040", "pos": "NN", "sense": "Kompetenzen" }, "Kompliment": { "form": "Kompliment", "polarity": "0.3323", "pos": "NN", "sense": "Komplimente,Kompliments,Komplimentes,Komplimenten" }, "Kompromiss": { "form": "Kompromiss", "polarity": "0.0040", "pos": "NN", "sense": "Kompromiß,Kompromisse,Kompromisses,Kompromissen" }, "Konjunkturaufschwung": { "form": "Konjunkturaufschwung", "polarity": "0.0040", "pos": "NN", "sense": "Konjunkturaufschwünge,Konjunkturaufschwungs,Konjunkturaufschwüngen,Konjunkturaufschwunges" }, "Konsens": { "form": "Konsens", "polarity": "0.0040", "pos": "NN", "sense": "Konsense,Konsensen,Konsenses" }, "Konsistenz": { "form": "Konsistenz", "polarity": "0.0040", "pos": "NN", "sense": "Konsistenzen" }, "Konsolidierung": { "form": "Konsolidierung", "polarity": "0.0040", "pos": "NN", "sense": "Konsolidierungen" }, "Konstanz": { "form": "Konstanz", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Konsultation": { "form": "Konsultation", "polarity": "0.0040", "pos": "NN", "sense": "Konsultationen" }, "Kontinuität": { "form": "Kontinuität", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Kooperation": { "form": "Kooperation", "polarity": "0.0040", "pos": "NN", "sense": "Kooperationen" }, "Koordinierung": { "form": "Koordinierung", "polarity": "0.0040", "pos": "NN", "sense": "Koordinierungen" }, "Korrektheit": { "form": "Korrektheit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Korrektur": { "form": "Korrektur", "polarity": "0.0040", "pos": "NN", "sense": "Korrekturen" }, "Kostbarkeit": { "form": "Kostbarkeit", "polarity": "0.0040", "pos": "NN", "sense": "Kostbarkeiten" }, "Kraft": { "form": "Kraft", "polarity": "0.0040", "pos": "NN", "sense": "Kräfte,Kräften" }, "Kreativität": { "form": "Kreativität", "polarity": "0.0768", "pos": "NN", "sense": "" }, "Kulanz": { "form": "Kulanz", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Kur": { "form": "Kur", "polarity": "0.0859", "pos": "NN", "sense": "Kuren" }, "Langlebigkeit": { "form": "Langlebigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Laune": { "form": "Laune", "polarity": "0.1085", "pos": "NN", "sense": "Launen" }, "Lebensfähigkeit": { "form": "Lebensfähigkeit", "polarity": "0.0040", "pos": "NN", "sense": "Lebensfähigkeiten" }, "Legalität": { "form": "Legalität", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Legitimität": { "form": "Legitimität", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Leichtigkeit": { "form": "Leichtigkeit", "polarity": "0.1725", "pos": "NN", "sense": "" }, "Leidenschaft": { "form": "Leidenschaft", "polarity": "0.0040", "pos": "NN", "sense": "Leidenschaften" }, "Leistung": { "form": "Leistung", "polarity": "0.0040", "pos": "NN", "sense": "Leistungen" }, "Leistungsfähigkeit": { "form": "Leistungsfähigkeit", "polarity": "0.0040", "pos": "NN", "sense": "Leistungsfähigkeiten" }, "Liberalismus": { "form": "Liberalismus", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Liebe": { "form": "Liebe", "polarity": "0.0985", "pos": "NN", "sense": "Lieben" }, "Liebling": { "form": "Liebling", "polarity": "0.0873", "pos": "NN", "sense": "Lieblings,Lieblinge,Lieblingen" }, "Linderung": { "form": "Linderung", "polarity": "0.0040", "pos": "NN", "sense": "Linderungen" }, "Lob": { "form": "Lob", "polarity": "0.7246", "pos": "NN", "sense": "Loben,Lobs,Lobes,Lobe" }, "Lohn": { "form": "Lohn", "polarity": "0.0040", "pos": "NN", "sense": "Löhne,Löhnen,Lohns,Lohnes" }, "Loyalität": { "form": "Loyalität", "polarity": "0.0040", "pos": "NN", "sense": "Loyalitäten" }, "Luxus": { "form": "Luxus", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Lösung": { "form": "Lösung", "polarity": "0.0040", "pos": "NN", "sense": "Lösungen" }, "Macht": { "form": "Macht", "polarity": "0.0040", "pos": "NN", "sense": "Mächten,Mächte" }, "Magie": { "form": "Magie", "polarity": "0.0040", "pos": "NN", "sense": "Magien" }, "Majestät": { "form": "Majestät", "polarity": "0.0040", "pos": "NN", "sense": "Majestäten" }, "Maximum": { "form": "Maximum", "polarity": "0.0040", "pos": "NN", "sense": "Maximums,Maxima" }, "Meisterschaft": { "form": "Meisterschaft", "polarity": "0.0040", "pos": "NN", "sense": "Meisterschaften" }, "Meisterwerk": { "form": "Meisterwerk", "polarity": "0.0040", "pos": "NN", "sense": "Meisterwerken,Meisterwerks,Meisterwerkes,Meisterwerke" }, "Menschenwürde": { "form": "Menschenwürde", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Menschlichkeit": { "form": "Menschlichkeit", "polarity": "0.0040", "pos": "NN", "sense": "Menschlichkeiten" }, "Milde": { "form": "Milde", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Mitgefühl": { "form": "Mitgefühl", "polarity": "0.0040", "pos": "NN", "sense": "Mitgefühles,Mitgefühls" }, "Mobilität": { "form": "Mobilität", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Modernisierung": { "form": "Modernisierung", "polarity": "0.0040", "pos": "NN", "sense": "Modernisierungen" }, "Modernität": { "form": "Modernität", "polarity": "0.0040", "pos": "NN", "sense": "Modernitäten" }, "Moral": { "form": "Moral", "polarity": "0.0040", "pos": "NN", "sense": "Moralen" }, "Motivation": { "form": "Motivation", "polarity": "0.0040", "pos": "NN", "sense": "Motivationen" }, "Mut": { "form": "Mut", "polarity": "0.6093", "pos": "NN", "sense": "Muts,Mutes" }, "Möglichkeit": { "form": "Möglichkeit", "polarity": "0.0040", "pos": "NN", "sense": "Möglichkeiten" }, "Nachhaltigkeit": { "form": "Nachhaltigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Nutzen": { "form": "Nutzen", "polarity": "0.0040", "pos": "NN", "sense": "Nutzens" }, "Nähe": { "form": "Nähe", "polarity": "0.0911", "pos": "NN", "sense": "" }, "Oase": { "form": "Oase", "polarity": "0.0040", "pos": "NN", "sense": "Oasen" }, "Optimalität": { "form": "Optimalität", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Optimismus": { "form": "Optimismus", "polarity": "0.0882", "pos": "NN", "sense": "" }, "Optimist": { "form": "Optimist", "polarity": "0.0836", "pos": "NN", "sense": "Optimisten" }, "Ordnungsmäßigkeit": { "form": "Ordnungsmäßigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Originalität": { "form": "Originalität", "polarity": "0.0040", "pos": "NN", "sense": "Originalitäten" }, "Pannenhilfe": { "form": "Pannenhilfe", "polarity": "0.0040", "pos": "NN", "sense": "Pannenhilfen" }, "Paradies": { "form": "Paradies", "polarity": "0.0040", "pos": "NN", "sense": "Paradieses,Paradiesen,Paradiese" }, "Partner": { "form": "Partner", "polarity": "0.0040", "pos": "NN", "sense": "Partners,Partnern" }, "Partnerschaft": { "form": "Partnerschaft", "polarity": "0.0779", "pos": "NN", "sense": "Partnerschaften" }, "Perfektion": { "form": "Perfektion", "polarity": "0.0040", "pos": "NN", "sense": "Perfektionen" }, "Perfektionismus": { "form": "Perfektionismus", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Perfektionist": { "form": "Perfektionist", "polarity": "0.0040", "pos": "NN", "sense": "Perfektionisten" }, "Pflege": { "form": "Pflege", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Phantasie": { "form": "Phantasie", "polarity": "0.075", "pos": "NN", "sense": "Phantasien" }, "Plausibilität": { "form": "Plausibilität", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Positivität": { "form": "Positivität", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Potenz": { "form": "Potenz", "polarity": "0.0040", "pos": "NN", "sense": "Potenzen" }, "Pracht": { "form": "Pracht", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Praktikabilität": { "form": "Praktikabilität", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Premium": { "form": "Premium", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Prestige": { "form": "Prestige", "polarity": "0.0040", "pos": "NN", "sense": "Prestiges" }, "Privileg": { "form": "Privileg", "polarity": "0.0040", "pos": "NN", "sense": "Privilege,Privileges,Privilegs,Privilegien" }, "Produktivität": { "form": "Produktivität", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Profit": { "form": "Profit", "polarity": "0.0040", "pos": "NN", "sense": "Profite,Profites,Profits,Privilegien" }, "Progression": { "form": "Progression", "polarity": "0.0040", "pos": "NN", "sense": "Progressionen" }, "Prächtigkeit": { "form": "Prächtigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Präferenz": { "form": "Präferenz", "polarity": "0.0040", "pos": "NN", "sense": "Präferenzen" }, "Präzision": { "form": "Präzision", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Pünktlichkeit": { "form": "Pünktlichkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Qualifikation": { "form": "Qualifikation", "polarity": "0.0040", "pos": "NN", "sense": "Qualifikationen" }, "Qualität": { "form": "Qualität", "polarity": "0.0040", "pos": "NN", "sense": "Qualitäten" }, "Qualitätsverbesserung": { "form": "Qualitätsverbesserung", "polarity": "0.0040", "pos": "NN", "sense": "Qualitätsverbesserungen" }, "Rat": { "form": "Rat", "polarity": "0.0040", "pos": "NN", "sense": "Rate,Rates,Rats,Räte,Räten" }, "Recht": { "form": "Recht", "polarity": "0.0040", "pos": "NN", "sense": "Rechten,Rechte,Rechts,Rechtes" }, "Rechtmäßigkeit": { "form": "Rechtmäßigkeit", "polarity": "0.0040", "pos": "NN", "sense": "Rechtmäßigkeiten" }, "Rechtsgültigkeit": { "form": "Rechtsgültigkeit", "polarity": "0.0040", "pos": "NN", "sense": "Rechtsgültigkeiten" }, "Rehabilitation": { "form": "Rehabilitation", "polarity": "0.0040", "pos": "NN", "sense": "Rehabilitationen" }, "Reichtum": { "form": "Reichtum", "polarity": "0.0040", "pos": "NN", "sense": "Reichtumes,Reichtums,Reichtümer,Reichtümern" }, "Reinheit": { "form": "Reinheit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Reinigung": { "form": "Reinigung", "polarity": "0.0040", "pos": "NN", "sense": "Reinigungen" }, "Relevanz": { "form": "Relevanz", "polarity": "0.0040", "pos": "NN", "sense": "Relevanzen" }, "Renovierung": { "form": "Renovierung", "polarity": "0.0040", "pos": "NN", "sense": "Renovierungen" }, "Rentabilität": { "form": "Rentabilität", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Respekt": { "form": "Respekt", "polarity": "0.0040", "pos": "NN", "sense": "Respekte,Respekts,Respektes" }, "Rettung": { "form": "Rettung", "polarity": "0.0707", "pos": "NN", "sense": "Rettungen" }, "Robustheit": { "form": "Robustheit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Romantik": { "form": "Romantik", "polarity": "0.0688", "pos": "NN", "sense": "" }, "Ruhe": { "form": "Ruhe", "polarity": "0.5017", "pos": "NN", "sense": "" }, "Ruhm": { "form": "Ruhm", "polarity": "0.0040", "pos": "NN", "sense": "Ruhms,Ruhmes" }, "Rückendeckung": { "form": "Rückendeckung", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Rückgrat": { "form": "Rückgrat", "polarity": "0.0040", "pos": "NN", "sense": "Rückgrate,Rückgrats,Rückgrates,Rückgraten" }, "Rücksicht": { "form": "Rücksicht", "polarity": "0.0040", "pos": "NN", "sense": "Rücksichten" }, "Rückversicherung": { "form": "Rückversicherung", "polarity": "0.0040", "pos": "NN", "sense": "Rückversicherungen" }, "Sauberkeit": { "form": "Sauberkeit", "polarity": "0.0755", "pos": "NN", "sense": "" }, "Schatz": { "form": "Schatz", "polarity": "0.1096", "pos": "NN", "sense": "Schätze,Schatzes,Schätzen,Schatze" }, "Schenkung": { "form": "Schenkung", "polarity": "0.0040", "pos": "NN", "sense": "Schenkungen" }, "Schirmherr": { "form": "Schirmherr", "polarity": "0.0040", "pos": "NN", "sense": "Schirmherren" }, "Schirmherrschaft": { "form": "Schirmherrschaft", "polarity": "0.0040", "pos": "NN", "sense": "Schirmherrschaften" }, "Schlauheit": { "form": "Schlauheit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Schmuck": { "form": "Schmuck", "polarity": "0.0040", "pos": "NN", "sense": "Schmucks,Schmucken,Schmuckes,Schmucke" }, "Schnelligkeit": { "form": "Schnelligkeit", "polarity": "0.0040", "pos": "NN", "sense": "Schnelligkeiten" }, "Schnäppchen": { "form": "Schnäppchen", "polarity": "0.0040", "pos": "NN", "sense": "Schnäppchens" }, "Schuldlosigkeit": { "form": "Schuldlosigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Schutz": { "form": "Schutz", "polarity": "0.0040", "pos": "NN", "sense": "Schutze,Schutzes,Schutzen" }, "Schutzmaßnahme": { "form": "Schutzmaßnahme", "polarity": "0.0040", "pos": "NN", "sense": "Schutzmaßnahmen" }, "Schwung": { "form": "Schwung", "polarity": "0.238", "pos": "NN", "sense": "Schwunges,Schwungs,Schwüngen,Schwünge,Schwunge" }, "Schönheit": { "form": "Schönheit", "polarity": "0.3286", "pos": "NN", "sense": "Schönheiten" }, "Selbstständigkeit": { "form": "Selbstständigkeit", "polarity": "0.0040", "pos": "NN", "sense": "Selbstständigkeiten" }, "Sensation": { "form": "Sensation", "polarity": "0.0040", "pos": "NN", "sense": "Sensationen" }, "Seriösität": { "form": "Seriösität", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Sicherheit": { "form": "Sicherheit", "polarity": "0.0040", "pos": "NN", "sense": "Sicherheiten" }, "Siegeszug": { "form": "Siegeszug", "polarity": "0.0040", "pos": "NN", "sense": "Siegeszuges,Siegeszüge,Siegeszugs,Siegeszügen,Siegeszuge" }, "Sinn": { "form": "Sinn", "polarity": "0.0040", "pos": "NN", "sense": "Sinns,Sinne,Sinnes,Sinnen" }, "Solidarität": { "form": "Solidarität", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Sorgfältigkeit": { "form": "Sorgfältigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Sorglosigkeit": { "form": "Sorglosigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Sparsamkeit": { "form": "Sparsamkeit", "polarity": "0.0040", "pos": "NN", "sense": "Sparsamkeiten" }, "Spaß": { "form": "Spaß", "polarity": "0.2823", "pos": "NN", "sense": "Spaße,Spaßes,Späße,Späßen" }, "Spende": { "form": "Spende", "polarity": "0.0040", "pos": "NN", "sense": "Spenden" }, "Spezialität": { "form": "Spezialität", "polarity": "0.0040", "pos": "NN", "sense": "Spezialitäten" }, "Sprung": { "form": "Sprung", "polarity": "0.0040", "pos": "NN", "sense": "Sprüngen,Sprunges,Sprünge,Sprungs,Sprunge" }, "Stabilität": { "form": "Stabilität", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Standhaftigkeit": { "form": "Standhaftigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Stattlichkeit": { "form": "Stattlichkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Steigerung": { "form": "Steigerung", "polarity": "0.0040", "pos": "NN", "sense": "Steigerungen" }, "Steigflug": { "form": "Steigflug", "polarity": "0.0040", "pos": "NN", "sense": "Steigfluge,Steigfluges,Steigflugs,Steigflüge,Steigflügen" }, "Stifter": { "form": "Stifter", "polarity": "0.0040", "pos": "NN", "sense": "Stifters,Stiftern" }, "Stiftung": { "form": "Stiftung", "polarity": "0.0040", "pos": "NN", "sense": "Stiftungen" }, "Stil": { "form": "Stil", "polarity": "0.3398", "pos": "NN", "sense": "Stile,Stilen,Stiles,Stils" }, "Stimulation": { "form": "Stimulation", "polarity": "0.0040", "pos": "NN", "sense": "Stimulationen" }, "Stolz": { "form": "Stolz", "polarity": "0.0797", "pos": "NN", "sense": "Stolzes,Stolze" }, "Stärke": { "form": "Stärke", "polarity": "0.0040", "pos": "NN", "sense": "Stärken" }, "Stütze": { "form": "Stütze", "polarity": "0.0040", "pos": "NN", "sense": "Stützen" }, "Subvention": { "form": "Subvention", "polarity": "0.0040", "pos": "NN", "sense": "Subventionen" }, "Suchtfaktor": { "form": "Suchtfaktor", "polarity": "0.0040", "pos": "NN", "sense": "Suchtfaktors,Suchtfaktoren" }, "Superlativ": { "form": "Superlativ", "polarity": "0.0040", "pos": "NN", "sense": "Superlativen,Superlative,Superlativs" }, "Symbiose": { "form": "Symbiose", "polarity": "0.0040", "pos": "NN", "sense": "Symbiosen" }, "Sympathie": { "form": "Sympathie", "polarity": "0.0040", "pos": "NN", "sense": "Symphatien" }, "Talent": { "form": "Talent", "polarity": "0.3352", "pos": "NN", "sense": "Talents,Talenten,Talentes,Talente" }, "Toleranz": { "form": "Toleranz", "polarity": "0.0040", "pos": "NN", "sense": "Toleranzen" }, "Tradition": { "form": "Tradition", "polarity": "0.0040", "pos": "NN", "sense": "Traditionen" }, "Treue": { "form": "Treue", "polarity": "0.2019", "pos": "NN", "sense": "" }, "Triumph": { "form": "Triumph", "polarity": "0.0040", "pos": "NN", "sense": "Triumphen,Triumphes,Triumphe,Triumphs" }, "Trophäe": { "form": "Trophäe", "polarity": "0.0040", "pos": "NN", "sense": "Trophäen" }, "Trost": { "form": "Trost", "polarity": "0.0706", "pos": "NN", "sense": "Trosts,Trostes" }, "Umbruch": { "form": "Umbruch", "polarity": "0.0040", "pos": "NN", "sense": "Umbruches,Umbrüche,Umbruchs,Umbrüchen" }, "Unabhängigkeit": { "form": "Unabhängigkeit", "polarity": "0.0040", "pos": "NN", "sense": "Unabhängigkeiten" }, "Unbesiegbarkeit": { "form": "Unbesiegbarkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Unerschrockenheit": { "form": "Unerschrockenheit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Unfehlbarkeit": { "form": "Unfehlbarkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Unparteilichkeit": { "form": "Unparteilichkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Unschuld": { "form": "Unschuld", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Unsterblichkeit": { "form": "Unsterblichkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Unterstützung": { "form": "Unterstützung", "polarity": "0.0040", "pos": "NN", "sense": "Unterstützungen" }, "Unverwundbarkeit": { "form": "Unverwundbarkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Unverzichtbarkeit": { "form": "Unverzichtbarkeit", "polarity": "0.0040", "pos": "NN", "sense": "Unverzichtbarkeiten" }, "Unwiderstehlichkeit": { "form": "Unwiderstehlichkeit", "polarity": "0.0040", "pos": "NN", "sense": "Unwiderstehlichkeiten" }, "Upgrade": { "form": "Upgrade", "polarity": "0.0040", "pos": "NN", "sense": "Upgrades" }, "Verantwortung": { "form": "Verantwortung", "polarity": "0.0040", "pos": "NN", "sense": "Verantwortungen" }, "Verband": { "form": "Verband", "polarity": "0.0040", "pos": "NN", "sense": "Verbände,Verbänden,Verbands,Verbandes" }, "Verbesserung": { "form": "Verbesserung", "polarity": "0.0040", "pos": "NN", "sense": "Verbesserungen" }, "Verbund": { "form": "Verbund", "polarity": "0.0040", "pos": "NN", "sense": "Verbunde,Verbunds,Verbünde,Verbünden" }, "Verbundenheit": { "form": "Verbundenheit", "polarity": "0.0040", "pos": "NN", "sense": "Verbundenheiten" }, "Verbündete": { "form": "Verbündete", "polarity": "0.0040", "pos": "NN", "sense": "Verbündeten" }, "Verdienst": { "form": "Verdienst", "polarity": "0.0040", "pos": "NN", "sense": "Verdienstes,Verdienste,Verdiensts,Verdiensten" }, "Veredelung": { "form": "Veredelung", "polarity": "0.0040", "pos": "NN", "sense": "Veredelung" }, "Verehrung": { "form": "Verehrung", "polarity": "0.0040", "pos": "NN", "sense": "Verehrungen" }, "Vereinbarung": { "form": "Vereinbarung", "polarity": "0.0040", "pos": "NN", "sense": "Vereinbarungen" }, "Vereinfachung": { "form": "Vereinfachung", "polarity": "0.0040", "pos": "NN", "sense": "Vereinfachungen" }, "Vereinigung": { "form": "Vereinigung", "polarity": "0.0040", "pos": "NN", "sense": "Vereinigungen" }, "Vererbung": { "form": "Vererbung", "polarity": "0.0040", "pos": "NN", "sense": "Vererbungen" }, "Verfeinerung": { "form": "Verfeinerung", "polarity": "0.0040", "pos": "NN", "sense": "Verfeinerungen" }, "Vergebung": { "form": "Vergebung", "polarity": "0.0040", "pos": "NN", "sense": "Vergebungen" }, "Vergrößerung": { "form": "Vergrößerung", "polarity": "0.0040", "pos": "NN", "sense": "Vergrößerungen" }, "Vergötterung": { "form": "Vergötterung", "polarity": "0.0040", "pos": "NN", "sense": "Vergötterungen" }, "Verhandelung": { "form": "Verhandelung", "polarity": "0.0040", "pos": "NN", "sense": "Verhandelungen" }, "Verlobung": { "form": "Verlobung", "polarity": "0.0040", "pos": "NN", "sense": "Verlobungen" }, "Verlöbnis": { "form": "Verlöbnis", "polarity": "0.0040", "pos": "NN", "sense": "Verlöbnisse,Verlöbsnisses,Verlöbnissen" }, "Vermittlung": { "form": "Vermittlung", "polarity": "0.0040", "pos": "NN", "sense": "Vermittlungen" }, "Vernunft": { "form": "Vernunft", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Verschönerung": { "form": "Verschönerung", "polarity": "0.0040", "pos": "NN", "sense": "Verschönerungen" }, "Versicherung": { "form": "Versicherung", "polarity": "0.0040", "pos": "NN", "sense": "Versicherungen" }, "Versprechen": { "form": "Versprechen", "polarity": "0.0040", "pos": "NN", "sense": "Versprechens" }, "Verstand": { "form": "Verstand", "polarity": "0.0040", "pos": "NN", "sense": "Verstands,Verstandes" }, "Verständnis": { "form": "Verständnis", "polarity": "0.0040", "pos": "NN", "sense": "Verständnissen,Verständnisse,Verständnisses" }, "Verstärkung": { "form": "Verstärkung", "polarity": "0.0040", "pos": "NN", "sense": "Verstärkungen" }, "Versöhnung": { "form": "Versöhnung", "polarity": "0.0040", "pos": "NN", "sense": "Versöhnungen" }, "Verteidiger": { "form": "Verteidiger", "polarity": "0.0040", "pos": "NN", "sense": "Verteidigern,Verteidigers" }, "Verteidigung": { "form": "Verteidigung", "polarity": "0.0040", "pos": "NN", "sense": "Verteidigungen" }, "Vertrag": { "form": "Vertrag", "polarity": "0.0040", "pos": "NN", "sense": "Verträgen,Verträge,Vertrags,Vertrages" }, "Vertrauen": { "form": "Vertrauen", "polarity": "0.3512", "pos": "NN", "sense": "Vertrauens" }, "Vertrauenswürdigkeit": { "form": "Vertrauenswürdigkeit", "polarity": "0.0040", "pos": "NN", "sense": "Vertrauenswürdigkeiten" }, "Vertrauter": { "form": "Vertrauter", "polarity": "0.0040", "pos": "NN", "sense": "Vertraute" }, "Vertrautheit": { "form": "Vertrautheit", "polarity": "0.0040", "pos": "NN", "sense": "Vertrautheiten" }, "Verwendbarkeit": { "form": "Verwendbarkeit", "polarity": "0.0040", "pos": "NN", "sense": "Verwendbarkeiten" }, "Verwirklichung": { "form": "Verwirklichung", "polarity": "0.0040", "pos": "NN", "sense": "Verwirklichungen" }, "Vielseitigkeit": { "form": "Vielseitigkeit", "polarity": "0.0040", "pos": "NN", "sense": "Vielseitigkeiten" }, "Vielzahl": { "form": "Vielzahl", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Visionär": { "form": "Visionär", "polarity": "0.0040", "pos": "NN", "sense": "Visionäres,Visionäre,Visionärs,Visionären" }, "Vitalität": { "form": "Vitalität", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Vollständigkeit": { "form": "Vollständigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Vorbereitung": { "form": "Vorbereitung", "polarity": "0.0040", "pos": "NN", "sense": "Vorbereitungen" }, "Vorsicht": { "form": "Vorsicht", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Vorsorge": { "form": "Vorsorge", "polarity": "0.0040", "pos": "NN", "sense": "Vorsorgen" }, "Vorteil": { "form": "Vorteil", "polarity": "0.0040", "pos": "NN", "sense": "Vorteilen,Vorteils,Vorteiles,Vorteile" }, "Wachsamkeit": { "form": "Wachsamkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Wachstum": { "form": "Wachstum", "polarity": "0.0040", "pos": "NN", "sense": "Wachstums" }, "Wahrheit": { "form": "Wahrheit", "polarity": "0.0040", "pos": "NN", "sense": "Wahrheiten" }, "Weichheit": { "form": "Weichheit", "polarity": "0.0040", "pos": "NN", "sense": "Weichheiten" }, "Weisheit": { "form": "Weisheit", "polarity": "0.0040", "pos": "NN", "sense": "Weisheiten" }, "Weitsichtigkeit": { "form": "Weitsichtigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Wert": { "form": "Wert", "polarity": "0.0040", "pos": "NN", "sense": "Werte,Wertes,Werts,Werten" }, "Wertschätzung": { "form": "Wertschätzung", "polarity": "0.0040", "pos": "NN", "sense": "Wertschätzungen" }, "Wertsteigerung": { "form": "Wertsteigerung", "polarity": "0.0040", "pos": "NN", "sense": "Wertsteigerungen" }, "Widerstandsfähigkeit": { "form": "Widerstandsfähigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Wiederbelebung": { "form": "Wiederbelebung", "polarity": "0.0040", "pos": "NN", "sense": "Wiederbelebungen" }, "Wiedergutmachung": { "form": "Wiedergutmachung", "polarity": "0.0040", "pos": "NN", "sense": "Wiedergutmachungen" }, "Wiederherstellung": { "form": "Wiederherstellung", "polarity": "0.0040", "pos": "NN", "sense": "Wiederherstellungen" }, "Wiederkehr": { "form": "Wiederkehr", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Wiedervereinigung": { "form": "Wiedervereinigung", "polarity": "0.0040", "pos": "NN", "sense": "Wiedervereinigungen" }, "Wille": { "form": "Wille", "polarity": "0.0040", "pos": "NN", "sense": "Willen,Willens" }, "Wirksamkeit": { "form": "Wirksamkeit", "polarity": "0.0040", "pos": "NN", "sense": "Wirksamkeiten" }, "Wissen": { "form": "Wissen", "polarity": "0.0040", "pos": "NN", "sense": "Wissens" }, "Witz": { "form": "Witz", "polarity": "0.0040", "pos": "NN", "sense": "Witzen,Witzes,Witze" }, "Wohlergehen": { "form": "Wohlergehen", "polarity": "0.0040", "pos": "NN", "sense": "Wohlergehens" }, "Wohlgefallen": { "form": "Wohlgefallen", "polarity": "0.0040", "pos": "NN", "sense": "Wohlgefallens" }, "Wohlstand": { "form": "Wohlstand", "polarity": "0.0040", "pos": "NN", "sense": "Wohlstandes,Wohlstands,Wohlstande" }, "Wohltat": { "form": "Wohltat", "polarity": "0.0040", "pos": "NN", "sense": "Wohltaten" }, "Wohltäter": { "form": "Wohltäter", "polarity": "0.0040", "pos": "NN", "sense": "Wohltäters,Wohltätern" }, "Wohltätigkeit": { "form": "Wohltätigkeit", "polarity": "0.0040", "pos": "NN", "sense": "Wohltätigkeiten" }, "Wohlwollen": { "form": "Wohlwollen", "polarity": "0.0040", "pos": "NN", "sense": "Wohlwollens" }, "Wunder": { "form": "Wunder", "polarity": "0.0741", "pos": "NN", "sense": "Wundern,Wunders" }, "Wärme": { "form": "Wärme", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Zenit": { "form": "Zenit", "polarity": "0.0040", "pos": "NN", "sense": "Zenites,Zeniten,Zenits,Zenite" }, "Ziel": { "form": "Ziel", "polarity": "0.0040", "pos": "NN", "sense": "Ziels,Ziele,Zieles,Zielen" }, "Zuflucht": { "form": "Zuflucht", "polarity": "0.0040", "pos": "NN", "sense": "Zufluchten" }, "Zufriedenheit": { "form": "Zufriedenheit", "polarity": "0.2207", "pos": "NN", "sense": "" }, "Zugabe": { "form": "Zugabe", "polarity": "0.0882", "pos": "NN", "sense": "Zugaben" }, "Zugänglichkeit": { "form": "Zugänglichkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Zulage": { "form": "Zulage", "polarity": "0.0040", "pos": "NN", "sense": "Zulagen" }, "Zulässigkeit": { "form": "Zulässigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Zuneigung": { "form": "Zuneigung", "polarity": "0.0040", "pos": "NN", "sense": "Zuneigungen" }, "Zusammenarbeit": { "form": "Zusammenarbeit", "polarity": "0.0893", "pos": "NN", "sense": "Zusammenarbeiten" }, "Zusammengehörigkeit": { "form": "Zusammengehörigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Zusammenhalt": { "form": "Zusammenhalt", "polarity": "0.1947", "pos": "NN", "sense": "Zusammenhaltes,Zusammenhalte,Zusammenhalts,Zusammenhalten" }, "Zuschuß": { "form": "Zuschuß", "polarity": "0.0040", "pos": "NN", "sense": "Zuschüße,Zuschußes,Zuschüßen,Zuschußs" }, "Zustimmung": { "form": "Zustimmung", "polarity": "0.0040", "pos": "NN", "sense": "Zustimmungen" }, "Zuverlässigkeit": { "form": "Zuverlässigkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Zuversicht": { "form": "Zuversicht", "polarity": "0.0727", "pos": "NN", "sense": "" }, "abgesichert": { "form": "abgesichert", "polarity": "0.0040", "pos": "JJ", "sense": "abgesicherte,abgesichertem,abgesicherten,abgesicherter,abgesichertes,abgesichertere,abgesicherterem,abgesicherteren,abgesicherterer,abgesicherteres,abgesichertste,abgesichertstem,abgesichertsten,abgesichertster,abgesichertstes" }, "abmachen": { "form": "abmachen", "polarity": "0.0040", "pos": "VB", "sense": "abgemacht,abmachst,abmachet,abmachten,abmacht,abmache,abmachtest,abmachte,abmachest,abmachtet" }, "abschließen": { "form": "abschließen", "polarity": "0.0040", "pos": "VB", "sense": "abschließe,abschließt,abschließest,abschließet,abschloss,abschloß,abschlossest,abschlosst,abschloßt,abschlossen,abschlösse,abschlössest,abschlössen,abschlösset,abgeschlossen" }, "absolut": { "form": "absolut", "polarity": "0.2418", "pos": "JJ", "sense": "absoluterem,absolutem,absolutestem,absolutesten,absoluten,absolutere,absolutestes,absolutester,absoluteren,absolutes,absoluteres,absoluterer,absoluter,absolute,absoluteste" }, "abstimmen": { "form": "abstimmen", "polarity": "0.0040", "pos": "VB", "sense": "abstimmtest,abstimmtet,abstimmt,abstimmest,abstimmet,abstimmten,abgestimmt,abstimmte,abstimmst,abstimme" }, "abwechslungsreich": { "form": "abwechslungsreich", "polarity": "0.5797", "pos": "JJ", "sense": "abwechslungsreichster,abwechslungsreichere,abwechslungsreicheren,abwechslungsreicherem,abwechslungsreichsten,abwechslungsreichstem,abwechslungsreichstes,abwechslungsreichste,abwechslungsreichen,abwechslungsreichem,abwechslungsreicherer,abwechslungsreicher,abwechslungsreicheres,abwechslungsreiches,abwechslungsreiche" }, "addieren": { "form": "addieren", "polarity": "0.0040", "pos": "VB", "sense": "addierst,addierten,addierest,addiere,addiertet,addierte,addiertest,addieret,addiert" }, "adrett": { "form": "adrett", "polarity": "0.1987", "pos": "JJ", "sense": "adrettestes,adrettere,adretteren,adrettester,adrettestem,adrettesten,adretterem,adrettem,adretten,adretteste,adrette,adretter,adrettes,adretteres,adretterer" }, "agil": { "form": "agil", "polarity": "0.1959", "pos": "JJ", "sense": "agilstes,agilster,agileren,agilerem,agilsten,agilstem,agilere,agileres,agiles,agiler,agilen,agilem,agilerer,agilste,agile" }, "akkurat": { "form": "akkurat", "polarity": "0.0040", "pos": "JJ", "sense": "akkuratester,akkuratestes,akkuratem,akkuraten,akkurater,akkurates,akkurateres,akkuratere,akkurate,akkuraterer,akkuratesten,akkuraterem,akkuratestem,akkurateren,akkurateste" }, "aktiv": { "form": "aktiv", "polarity": "0.0911", "pos": "JJ", "sense": "aktivere,aktiveren,aktiverem,aktivste,aktivem,aktiven,aktiver,aktives,aktivster,aktiverer,aktivstes,aktiveres,aktive,aktivstem,aktivsten" }, "aktualisieren": { "form": "aktualisieren", "polarity": "0.0040", "pos": "VB", "sense": "aktualisiertest,aktualisieret,aktualisiert,aktualisiere,aktualisierte,aktualisierest,aktualisiertet,aktualisierst,aktualisierten" }, "aktuell": { "form": "aktuell", "polarity": "0.0040", "pos": "JJ", "sense": "aktuellere,aktueller,aktuelle,aktuellen,aktuellem,aktuellerem,aktuelles,aktuellsten,aktuellstem,aktuelleren,aktuellste,aktuelleres,aktuellerer,aktuellstes,aktuellster" }, "akzeptabel": { "form": "akzeptabel", "polarity": "0.0040", "pos": "JJ", "sense": "akzeptabelster,akzeptabler,akzeptabelstem,akzeptabelsten,akzeptablen,akzeptablere,akzeptablem,akzeptabelste,akzeptable,akzeptablerem,akzeptableres,akzeptablerer,akzeptables,akzeptabelstes,akzeptableren" }, "akzeptieren": { "form": "akzeptieren", "polarity": "0.0040", "pos": "VB", "sense": "akzeptiertet,akzeptiertest,akzeptierest,akzeptiert,akzeptieret,akzeptierten,akzeptierst,akzeptiere,akzeptierte" }, "allerbeste": { "form": "allerbeste", "polarity": "0.0040", "pos": "JJ", "sense": "allerbestem,allerbesten,allerbester,allersbestes" }, "allererste": { "form": "allererste", "polarity": "0.0040", "pos": "JJ", "sense": "allererstem,allerersten,allererster,allererstes" }, "allgemeingültig": { "form": "allgemeingültig", "polarity": "0.0040", "pos": "JJ", "sense": "allgemeingültige,allgemeingültigem,allgemeingültigen,allgemeingültiger,allgemeingültiges" }, "allumfassend": { "form": "allumfassend", "polarity": "0.0040", "pos": "JJ", "sense": "allumfassende,allumfassendem,allumfassenden,allumfassender,allumfassendes" }, "anbieten": { "form": "anbieten", "polarity": "0.0040", "pos": "VB", "sense": "anbiete,anbietest,anbietet,anbot,anbotest,anbotst,anboten,anbotet,anböte,anbötest,anböten,anbötet" }, "anerkannt": { "form": "anerkannt", "polarity": "0.0785", "pos": "JJ", "sense": "anerkannteren,anerkannterem,anerkannteres,anerkannterer,anerkanntester,anerkannter,anerkanntes,anerkanntestem,anerkanntesten,anerkannten,anerkannte,anerkanntem,anerkanntere,anerkanntestes,anerkannteste" }, "anerkennen": { "form": "anerkennen", "polarity": "0.0040", "pos": "VB", "sense": "anerkenne,anerkennst,anerkennt,anerkennest,anerkennet,anerkannte,anerkanntest,anerkannten,anerkanntet" }, "anerkennenswert": { "form": "anerkennenswert", "polarity": "0.0040", "pos": "JJ", "sense": "anerkennenswertesten,anerkennenswerterem,anerkennenswertestem,anerkennenswertes,anerkennenswertester,anerkennenswerter,anerkennenswertestes,anerkennenswertere,anerkennenswerteren,anerkennenswertem,anerkennenswerterer,anerkennenswerteste,anerkennenswerten,anerkennenswerteres,anerkennenswerte" }, "angemessen": { "form": "angemessen", "polarity": "0.0040", "pos": "JJ", "sense": "angemessnerer,angemessenere,angemessneres,angemessneren,angemessenes,angemessnerem,angemessener,angemessene,angemessenem,angemessenen,angemesseneren,angemessenerem,angemesseneres,angemessenerer,angemessenstem,angemessensten,angemessner,angemessenster,angemessenstes,angemessenste,angemessnere" }, "angenehm": { "form": "angenehm", "polarity": "0.4887", "pos": "JJ", "sense": "angenehmes,angenehmer,angenehmeres,angenehmerer,angenehmen,angenehmstem,angenehmsten,angenehmere,angenehmstes,angenehme,angenehmster,angenehmste,angenehmem,angenehmerem,angenehmeren" }, "angesehen": { "form": "angesehen", "polarity": "0.0040", "pos": "JJ", "sense": "angesehnerem,angesehensten,angesehneren,angesehene,angeseheneren,angesehenerem,angesehenstem,angeseheneres,angesehnerer,angesehenerer,angesehneres,angesehenen,angesehenem,angesehnere,angesehenere,angesehenes,angesehener,angesehner,angesehenste,angesehenstes,angesehenster" }, "anheben": { "form": "anheben", "polarity": "0.0040", "pos": "VB", "sense": "anhebe,anhebst,anhebt,anhebest,anhebet,anhob,anhobst,anhoben,anhobt,anhöbe,anhöbest,anhöbst,anhöben,anhöbet,anhöbt" }, "anheitern": { "form": "anheitern", "polarity": "0.0040", "pos": "VB", "sense": "angeheitert" }, "ankurbeln": { "form": "ankurbeln", "polarity": "0.0040", "pos": "VB", "sense": "ankurbele,ankurble,ankurbelst,ankurbelt,ankurblest,ankurblet,ankurbelte,ankurbeltest,ankurbelten,ankurbeltet,angekurbelt" }, "anlocken": { "form": "anlocken", "polarity": "0.0040", "pos": "VB", "sense": "anlocke,anlockst,anlockt,anlockest,anlocket,anlockte,anlocktest,anlockten,anlocktet,angelockt" }, "annehmbar": { "form": "annehmbar", "polarity": "0.0040", "pos": "JJ", "sense": "annehmbareren,annehmbareres,annehmbarerer,annehmbarste,annehmbare,annehmbarstem,annehmbarere,annehmbares,annehmbarsten,annehmbarstes,annehmbaren,annehmbarster,annehmbarem,annehmbarer,annehmbarerem" }, "annähern": { "form": "annähern", "polarity": "0.0040", "pos": "VB", "sense": "angenähert,annähertet,annäherte,annähert,annähere,annähertest,annäherten,annäheren,annäherst" }, "anpassen": { "form": "anpassen", "polarity": "0.0040", "pos": "VB", "sense": "anpasse,anpasst,anpaßt,anpassest,anpasset,anpasste,anpaßte,anpasstest,anpaßtest,anpassten,anpaßten,anpasstet,anpaßtet" }, "anpassungsfähig": { "form": "anpassungsfähig", "polarity": "0.0799", "pos": "JJ", "sense": "anpassungsfähigstes,anpassungsfähige,anpassungsfähigster,anpassungsfähiger,anpassungsfähiges,anpassungsfähigeres,anpassungsfähigerer,anpassungsfähigere,anpassungsfähigerem,anpassungsfähigste,anpassungsfähigeren,anpassungsfähigem,anpassungsfähigstem,anpassungsfähigsten,anpassungsfähigen" }, "anreichern": { "form": "anreichern", "polarity": "0.0040", "pos": "VB", "sense": "anreichertet,anreicheren,anreicherten,anreicherst,anreichere,angereichert,anreichert,anreichertest,anreicherte" }, "ansehnlich": { "form": "ansehnlich", "polarity": "0.0931", "pos": "JJ", "sense": "ansehnlicheres,ansehnlicherer,ansehnlichem,ansehnlichstes,ansehnlichster,ansehnlichste,ansehnlichstem,ansehnlichsten,ansehnlichen,ansehnlicheren,ansehnlicherem,ansehnlicher,ansehnliches,ansehnliche,ansehnlichere" }, "ansprechend": { "form": "ansprechend", "polarity": "0.3382", "pos": "JJ", "sense": "ansprechende,ansprechendem,ansprechenden,ansprechender,ansprechenderen,ansprechenderem,ansprechendes,ansprechendstem,ansprechendsten,ansprechenderer,ansprechendste,ansprechenderes,ansprechendster,ansprechendere,ansprechendstes" }, "anspruchsvoll": { "form": "anspruchsvoll", "polarity": "0.2216", "pos": "JJ", "sense": "anspruchsvollerem,anspruchsvollere,anspruchsvollen,anspruchsvollem,anspruchsvolleres,anspruchsvollerer,anspruchsvoller,anspruchsvollstes,anspruchsvollster,anspruchsvolleren,anspruchsvollsten,anspruchsvolle,anspruchsvolles,anspruchsvollstem,anspruchsvollste" }, "ansteigen": { "form": "ansteigen", "polarity": "0.0040", "pos": "VB", "sense": "ansteige,ansteigst,ansteigt,ansteigest,ansteiget,anstieg,anstiegst,anstiegen,anstiegt,anstiege,anstiegest,anstieget" }, "anständig": { "form": "anständig", "polarity": "0.0977", "pos": "JJ", "sense": "anständigere,anständiges,anständigeres,anständiger,anständigerer,anständigem,anständigen,anständigeren,anständigsten,anständigste,anständigerem,anständige,anständigstem,anständigster,anständigstes" }, "anteilig": { "form": "anteilig", "polarity": "0.0040", "pos": "JJ", "sense": "anteiligeres,anteiligerer,anteiligerem,anteiligeren,anteiliger,anteiligere,anteiliges,anteiligen,anteilige,anteiligster,anteiligste,anteiligstes,anteiligem,anteiligsten,anteiligstem" }, "anvertrauen": { "form": "anvertrauen", "polarity": "0.0040", "pos": "VB", "sense": "anvertrautet,anvertraust,anvertraute,anvertraut,anvertraue,anvertrauet,anvertrauest,anvertrautest,anvertrauten" }, "anziehen": { "form": "anziehen", "polarity": "0.0040", "pos": "VB", "sense": "anziehen,anziehst,anzieht,anziehest,anziehet,anzog,anzogst,anzogen,anzogt,anzöge,anzögest,anzögst,anzögen,anzöget,anzögt" }, "applaudieren": { "form": "applaudieren", "polarity": "0.0040", "pos": "VB", "sense": "applaudieret,applaudierten,applaudierte,applaudierest,applaudiertest,applaudiertet,applaudierst,applaudiert,applaudiere" }, "artig": { "form": "artig", "polarity": "0.225", "pos": "JJ", "sense": "artigstem,artigsten,artigster,artigere,artigerem,artige,artigeren,artigem,artigerer,artigstes,artigen,artigste,artigeres,artiges,artiger" }, "atemberaubend": { "form": "atemberaubend", "polarity": "0.3261", "pos": "JJ", "sense": "atemberaubenderen,atemberaubenderem,atemberaubendster,atemberaubenderer,atemberaubende,atemberaubendstem,atemberaubendsten,atemberaubenderes,atemberaubendere,atemberaubendstes,atemberaubendes,atemberaubender,atemberaubendste,atemberaubenden,atemberaubendem" }, "attraktiv": { "form": "attraktiv", "polarity": "0.2162", "pos": "JJ", "sense": "attraktives,attraktiver,attraktivstes,attraktiveres,attraktivster,attraktiverer,attraktive,attraktivsten,attraktiveren,attraktivstem,attraktiverem,attraktivste,attraktivere,attraktiven,attraktivem" }, "aufbereiten": { "form": "aufbereiten", "polarity": "0.0040", "pos": "VB", "sense": "aufbereite,aufbereitest,aufbereitet,aufbereitete,aufbereitetest,aufbereiteten,aufbereitetet" }, "aufbessern": { "form": "aufbessern", "polarity": "0.0040", "pos": "VB", "sense": "aufbessertest,aufbesserten,aufbesseren,aufbessertet,aufgebessert,aufbesserst,aufbesserte,aufbessert,aufbessere" }, "aufblühen": { "form": "aufblühen", "polarity": "0.0845", "pos": "VB", "sense": "aufblühe,aufblühst,aufblüht,aufblühest,aufblühet,aufblühte,aufblühtest,aufblühten,aufblühtet,aufgeblüht" }, "auferstehen": { "form": "auferstehen", "polarity": "0.0040", "pos": "VB", "sense": "auferstehe,auferstehst,aufersteht,auferstehest,auferstehet,auferstand,auferstandest,auferstandst,auferstanden,auferstandet,auferstände,auferstünde,auferständest,auferstündest,auferständet,auferstündet" }, "aufmerksam": { "form": "aufmerksam", "polarity": "0.0040", "pos": "JJ", "sense": "aufmerksamstem,aufmerksamsten,aufmerksamere,aufmerksame,aufmerksamster,aufmerksamstes,aufmerksames,aufmerksamer,aufmerksameres,aufmerksamerer,aufmerksamste,aufmerksameren,aufmerksamen,aufmerksamerem,aufmerksamem" }, "aufmuntern": { "form": "aufmuntern", "polarity": "0.0040", "pos": "VB", "sense": "aufmunterte,aufmuntertet,aufmunterst,aufmunteren,aufmuntere,aufmunterten,aufmuntertest,aufmuntert,aufgemuntert" }, "aufmunternd": { "form": "aufmunternd", "polarity": "0.0040", "pos": "JJ", "sense": "aufmunternde,aufmunterndem,aufmunternden,aufmunternder,aufmunterndes,aufmunterndere,aufmunternderem,aufmunternderen,aufmunternderer,aufmunternderes,aufmunterndste,aufmunterndstem,aufmunterndsten,aufmunterndster,aufmunterndstes" }, "aufrecht": { "form": "aufrecht", "polarity": "0.0040", "pos": "JJ", "sense": "aufrechtester,aufrechterem,aufrechtestes,aufrechte,aufrechtestem,aufrechtesten,aufrechtere,aufrechtem,aufrechten,aufrechter,aufrechteren,aufrechtes,aufrechteres,aufrechterer,aufrechteste" }, "aufrichtig": { "form": "aufrichtig", "polarity": "0.0040", "pos": "JJ", "sense": "aufrichtigerem,aufrichtigste,aufrichtigeren,aufrichtige,aufrichtigeres,aufrichtigerer,aufrichtigster,aufrichtiger,aufrichtigstes,aufrichtiges,aufrichtigem,aufrichtigsten,aufrichtigen,aufrichtigstem,aufrichtigere" }, "aufschwingen": { "form": "aufschwingen", "polarity": "0.0040", "pos": "VB", "sense": "aufschwinge,aufschwingst,aufschwingt,aufschwingest,aufschwinget,aufschwang,aufschwangst,aufschwangen,aufschwangt,aufschwänge,aufschwängest,aufschwängst,aufschwängen,aufschwänget,aufschwängt,aufgeschwungen" }, "aufsteigen": { "form": "aufsteigen", "polarity": "0.0040", "pos": "VB", "sense": "aufsteige,aufsteigst,aufsteigt,aufsteigest,aufsteiget,aufstieg,aufstiegst,aufstiegen,aufstiegt,aufstiege,aufstiegest,aufstieget,aufgestiegen" }, "aufstocken": { "form": "aufstocken", "polarity": "0.0040", "pos": "VB", "sense": "aufgestockt,aufstocket,aufstockest,aufstockten,aufstocktet,aufstockst,aufstockte,aufstockt,aufstocke,aufstocktest" }, "auftreiben": { "form": "auftreiben", "polarity": "0.0040", "pos": "VB", "sense": "auftreibe,auftreibst,auftreibt,auftreibest,auftreibet,auftrieb,auftrieben,auftriebt,auftriebe,auftriebest,auftriebet,aufgetrieben" }, "aufwendig": { "form": "aufwendig", "polarity": "0.0040", "pos": "JJ", "sense": "aufwendiger,aufwendiges,aufwendigem,aufwendigere,aufwendigstem,aufwendigen,aufwendigsten,aufwendigerer,aufwendigeres,aufwendigste,aufwendigerem,aufwendigeren,aufwendige,aufwendigster,aufwendigstes" }, "aufwerten": { "form": "aufwerten", "polarity": "0.0040", "pos": "VB", "sense": "aufwerte,aufwertest,aufwertet,aufwertete,aufwertetest,aufwerteten,aufwertetet,aufgewertet" }, "aufwärts": { "form": "aufwärts", "polarity": "0.0040", "pos": "RB", "sense": "" }, "ausbauen": { "form": "ausbauen", "polarity": "0.0040", "pos": "VB", "sense": "ausbaue,ausbaut,ausbautest,ausbauten,ausbauet,ausbaute,ausgebaut,ausbaust,ausbauest,ausbautet" }, "ausbilden": { "form": "ausbilden", "polarity": "0.0040", "pos": "VB", "sense": "ausbildete,ausgebildet,ausbildet,ausbildte,ausbildten,ausbildeten,ausbildtet,ausbildest,ausbildetest,ausbildetet,ausbildtest,ausbilde" }, "ausdauern": { "form": "ausdauern", "polarity": "0.0040", "pos": "VB", "sense": "ausdauere,ausdauerst,ausdauert,ausdauerte,ausdauertest,ausdauerten,ausdauertet,ausgedauert" }, "ausführlich": { "form": "ausführlich", "polarity": "0.0040", "pos": "JJ", "sense": "ausführlichem,ausführlicherer,ausführlichen,ausführliche,ausführlicher,ausführlicheres,ausführlichere,ausführliches,ausführlichster,ausführlicherem,ausführlichstem,ausführlichsten,ausführlicheren,ausführlichstes,ausführlichste" }, "ausgeflippt": { "form": "ausgeflippt", "polarity": "0.0756", "pos": "JJ", "sense": "ausflippe,ausflippst,ausflippt,ausflippest,ausflippet,ausflippte,ausflipptest,ausflippten,ausflipptet,ausgeflippt" }, "ausgeglichen": { "form": "ausgeglichen", "polarity": "0.0987", "pos": "JJ", "sense": "ausgeglicheneres,ausgeglichner,ausgeglichene,ausgeglichenstes,ausgeglichenem,ausgeglichnere,ausgeglichenen,ausgeglichenere,ausgeglichenster,ausgeglichneres,ausgeglichnerer,ausgeglichensten,ausgeglichener,ausgeglichenes,ausgeglichenstem,ausgeglichenste,ausgeglichneren,ausgeglichnerem,ausgeglichenerem,ausgeglicheneren,ausgeglichenerer" }, "ausgeweitet": { "form": "ausgeweitet", "polarity": "0.0040", "pos": "JJ", "sense": "ausgeweitete,ausgeweitetem,ausgeweiteten,ausgeweiteter,ausgeweitetes,ausgeweitetere,ausgeweiteterem,ausgeweiteteren,ausgeweiteterer,ausgeweiteteres,ausgeweitetste,ausgeweitetstem,ausgeweitetsten,ausgeweitetster,ausgeweitetstes" }, "ausgewogen": { "form": "ausgewogen", "polarity": "0.206", "pos": "JJ", "sense": "ausgewogenstes,ausgewogenere,ausgewogner,ausgewogenster,ausgewognere,ausgewognerem,ausgewogneren,ausgewognerer,ausgewogenstem,ausgewogneres,ausgewogensten,ausgewogene,ausgewogenes,ausgewogener,ausgewogenste,ausgewogenem,ausgewogenerer,ausgewogeneres,ausgewogenerem,ausgewogeneren,ausgewogenen" }, "ausgewählt": { "form": "ausgewählt", "polarity": "0.0040", "pos": "JJ", "sense": "ausgewähltere,ausgewähltste,ausgewähltstem,ausgewählteren,ausgewählterem,ausgewählten,ausgewähltem,ausgewählter,ausgewähltes,ausgewähltster,ausgewähltstes,ausgewählte,ausgewähltsten,ausgewählterer,ausgewählteres" }, "ausgezeichnet": { "form": "ausgezeichnet", "polarity": "0.3146", "pos": "JJ", "sense": "ausgezeichneteres,ausgezeichnetere,ausgezeichnetste,ausgezeichneterer,ausgezeichnetster,ausgezeichnetes,ausgezeichnetstes,ausgezeichneter,ausgezeichnetsten,ausgezeichnetem,ausgezeichnete,ausgezeichnetstem,ausgezeichneten,ausgezeichneteren,ausgezeichneterem" }, "ausgleichen": { "form": "ausgleichen", "polarity": "0.0040", "pos": "VB", "sense": "ausgleiche,ausgleichst,aufgleicht,ausgleichest,ausgleichet,ausglich,ausglichst,ausglicht,ausglichen,ausgliche,ausglichest,ausglichet,ausgeglichen" }, "auskommen": { "form": "auskommen", "polarity": "0.0040", "pos": "VB", "sense": "auskomme,auskommst,auskommt,auskommest,auskommet,auskam,auskamst,auskamen,auskamt,auskäme,auskämest,auskämst,auskämen,auskämet,auskämt,ausgekommen" }, "auskurieren": { "form": "auskurieren", "polarity": "0.0040", "pos": "VB", "sense": "auskurierte,auskurierst,auskurierten,auskuriere,auskurieret,auskurierest,auskuriert,auskuriertet,auskuriertest" }, "ausreichen": { "form": "ausreichen", "polarity": "0.0040", "pos": "VB", "sense": "ausreiche,ausreichst,ausreicht,ausreichest,ausreichet,ausreichte,ausreichtest,ausreichten,ausreichtet,ausgereicht" }, "ausreichend": { "form": "ausreichend", "polarity": "0.0040", "pos": "JJ", "sense": "ausreichenderer,ausreichenderes,ausreichenderen,ausreichenderem,ausreichendere,ausreichendste,ausreichendem,ausreichende,ausreichenden,ausreichendstes,ausreichendster,ausreichender,ausreichendes,ausreichendsten,ausreichendstem" }, "aussichtsreich": { "form": "aussichtsreich", "polarity": "0.0040", "pos": "JJ", "sense": "aussichtsreicher,aussichtsreicheren,aussichtsreichste,aussichtsreichstes,aussichtsreichster,aussichtsreichen,aussichtsreicheres,aussichtsreichem,aussichtsreicherer,aussichtsreiche,aussichtsreicherem,aussichtsreichsten,aussichtsreiches,aussichtsreichere,aussichtsreichstem" }, "ausweiten": { "form": "ausweiten", "polarity": "0.0040", "pos": "VB", "sense": "ausweite,ausweitest,ausweitet,ausweitete,ausweitetest,ausweiteten,ausweitetet,ausgeweitet" }, "auszeichnen": { "form": "auszeichnen", "polarity": "0.0040", "pos": "VB", "sense": "auszeichnetest,auszeichnet,ausgezeichnet,auszeichnete,auszeichnest,auszeichneten,auszeichnetet,auszeichne" }, "authentisch": { "form": "authentisch", "polarity": "0.1885", "pos": "JJ", "sense": "authentische,authentischer,authentischen,authentischem,authentischstem,authentischsten,authentischster,authentischstes,authentischerer,authentischeres,authentischste,authentischeren,authentischerem,authentischere,authentisches" }, "autonom": { "form": "autonom", "polarity": "0.0040", "pos": "JJ", "sense": "autonome,autonomerer,autonomer,autonomeren,autonomerem,autonomes,autonomem,autonomen,autonomeres,autonomere,autonomste,autonomstes,autonomster,autonomsten,autonomstem" }, "außergewöhnlich": { "form": "außergewöhnlich", "polarity": "0.3395", "pos": "JJ", "sense": "außergewöhnlichstes,außergewöhnliche,außergewöhnlichere,außergewöhnlicheres,außergewöhnlichster,außergewöhnlicherer,außergewöhnlichstem,außergewöhnlichsten,außergewöhnlichste,außergewöhnlicherem,außergewöhnlicheren,außergewöhnliches,außergewöhnlicher,außergewöhnlichen,außergewöhnlichem" }, "außerordentlich": { "form": "außerordentlich", "polarity": "0.1137", "pos": "JJ", "sense": "außerordentlichsten,außerordentlichstem,außerordentlicher,außerordentliches,außerordentliche,außerordentlicherem,außerordentlicheren,außerordentlichen,außerordentlichem,außerordentlichere,außerordentlicherer,außerordentlicheres,außerordentlichste,außerordentlichstes,außerordentlichster" }, "bahnbrechend": { "form": "bahnbrechend", "polarity": "0.0040", "pos": "JJ", "sense": "bahnbrechenden,bahnbrechendem,bahnbrechendstem,bahnbrechendere,bahnbrechende,bahnbrechendsten,bahnbrechenderem,bahnbrechenderen,bahnbrechenderer,bahnbrechenderes,bahnbrechendster,bahnbrechendstes,bahnbrechender,bahnbrechendes,bahnbrechendste" }, "barmherzig": { "form": "barmherzig", "polarity": "0.0744", "pos": "JJ", "sense": "barmherzige,barmherzigere,barmherzigstem,barmherzigsten,barmherziges,barmherziger,barmherzigste,barmherzigstes,barmherzigem,barmherzigster,barmherzigen,barmherzigerem,barmherzigeren,barmherzigerer,barmherzigeres" }, "beachtenswert": { "form": "beachtenswert", "polarity": "0.0040", "pos": "JJ", "sense": "beachtenswertesten,beachtenswerten,beachtenswertem,beachtenswerterem,beachtenswertestem,beachtenswerteren,beachtenswertes,beachtenswerter,beachtenswerteste,beachtenswertestes,beachtenswertester,beachtenswerte,beachtenswertere,beachtenswerterer,beachtenswerteres" }, "beachtlich": { "form": "beachtlich", "polarity": "0.0040", "pos": "JJ", "sense": "beachtlichstes,beachtlichster,beachtliches,beachtliche,beachtlicher,beachtlichsten,beachtlicheren,beachtlicherem,beachtlichstem,beachtlichen,beachtlichste,beachtlichem,beachtlicherer,beachtlichere,beachtlicheres" }, "beauftragen": { "form": "beauftragen", "polarity": "0.0040", "pos": "VB", "sense": "beauftragten,beauftragest,beauftragt,beauftrage,beauftragtest,beauftragte,beauftragst,beauftragtet,beauftraget" }, "bedarfsgerecht": { "form": "bedarfsgerecht", "polarity": "0.0040", "pos": "JJ", "sense": "bedarfsgerechten,bedarfsgerechtestes,bedarfsgerechtester,bedarfsgerechter,bedarfsgerechtes,bedarfsgerechtesten,bedarfsgerechteste,bedarfsgerechtem,bedarfsgerechterem,bedarfsgerechteren,bedarfsgerechtere,bedarfsgerechte,bedarfsgerechtestem,bedarfsgerechterer,bedarfsgerechteres" }, "bedarfsorientiert": { "form": "bedarfsorientiert", "polarity": "0.0040", "pos": "JJ", "sense": "bedarfsorientiertsten,bedarfsorientierte,bedarfsorientierterem,bedarfsorientiertes,bedarfsorientiertstem,bedarfsorientierterer,bedarfsorientierteres,bedarfsorientierteren,bedarfsorientiertere,bedarfsorientierter,bedarfsorientiertster,bedarfsorientiertste,bedarfsorientiertstes,bedarfsorientiertem,bedarfsorientierten" }, "bedarft": { "form": "bedarft", "polarity": "0.0040", "pos": "JJ", "sense": "bedarfteren,bedarfterem,bedarften,bedarftem,bedarftere,bedarftstem,bedarftsten,bedarfter,bedarfteres,bedarfterer,bedarftster,bedarftstes,bedarftes,bedarftste,bedarfte" }, "bedenken": { "form": "bedenken", "polarity": "0.0040", "pos": "VB", "sense": "bedenke,bedenkst,bedenkt,bedenkest,bedenket,bedachte,bedachtest,bedachten,bedachtet,bedächte,bedächtest,bedächten,bedächtet" }, "bedeuten": { "form": "bedeuten", "polarity": "0.0040", "pos": "VB", "sense": "bedeute,bedeutest,bedeutet,bedeutete,bedeutetest,bedeuteten,bedeutetet" }, "bedeutend": { "form": "bedeutend", "polarity": "0.0040", "pos": "JJ", "sense": "bedeutendere,bedeutenderer,bedeutenderes,bedeutendste,bedeutendem,bedeutende,bedeutenden,bedeutendes,bedeutender,bedeutenderem,bedeutendsten,bedeutendstem,bedeutenderen,bedeutendstes,bedeutendster" }, "bedeutsam": { "form": "bedeutsam", "polarity": "0.0040", "pos": "JJ", "sense": "bedeutsamsten,bedeutsamen,bedeutsamem,bedeutsamstem,bedeutsamster,bedeutsamer,bedeutsamerer,bedeutsamstes,bedeutsameres,bedeutsame,bedeutsames,bedeutsameren,bedeutsamerem,bedeutsamere,bedeutsamste" }, "beeindrucken": { "form": "beeindrucken", "polarity": "0.2126", "pos": "VB", "sense": "beeindruckten,beeindruckest,beeindruckt,beeindrucke,beeindrucktet,beeindrucktest,beeindruckte,beeindruckst,beeindrucket" }, "beeindruckend": { "form": "beeindruckend", "polarity": "0.3408", "pos": "JJ", "sense": "beeindruckende,beeindruckendem,beeindruckenden,beeindruckender,beeindruckendes,beeindruckendere,beeindruckenderem,beeindruckenderen,beeindruckenderer,beeindruckenderes,beeindruckendste,beeindruckendstem,beeindruckendsten,beeindruckendster,beeindruckendstes" }, "befreien": { "form": "befreien", "polarity": "0.0040", "pos": "VB", "sense": "befreiten,befreist,befreite,befreit,befreie,befreiest,befreitet,befreitest,befreiet" }, "befriedigen": { "form": "befriedigen", "polarity": "0.0809", "pos": "VB", "sense": "befriedigtest,befriedigt,befriedigest,befriedige,befriedigst,befriedigten,befriedigte,befriediget,befriedigtet" }, "befriedigend": { "form": "befriedigend", "polarity": "0.2152", "pos": "JJ", "sense": "befriedigendes,befriedigendstem,befriedigendsten,befriedigender,befriedigendstes,befriedigenden,befriedigendster,befriedigendem,befriedigendste,befriedigende,befriedigendere,befriedigenderem,befriedigenderen,befriedigenderer,befriedigenderes" }, "befördern": { "form": "befördern", "polarity": "0.0040", "pos": "VB", "sense": "befördere,beförderten,beförderen,befördertet,befördertest,beförderst,beförderte,befördert" }, "begehrt": { "form": "begehrt", "polarity": "0.0040", "pos": "JJ", "sense": "begehrtere,begehrteste,begehrtester,begehrtestes,begehrten,begehrtestem,begehrtesten,begehrtem,begehrterer,begehrtes,begehrter,begehrteres,begehrterem,begehrteren,begehrte" }, "begeistern": { "form": "begeistern", "polarity": "0.4324", "pos": "VB", "sense": "begeistertest,begeistert,begeistere,begeistertet,begeisteren,begeisterst,begeisterten,begeisterte" }, "beglückend": { "form": "beglückend", "polarity": "0.0040", "pos": "JJ", "sense": "beglückende,beglückendem,beglückenden,beglückender,beglückendes,beglückendere,beglückenderem,beglückenderen,beglückenderer,beglückenderes,beglückendste,beglückendstem,beglückendsten,beglückendster,beglückendstes" }, "begnadet": { "form": "begnadet", "polarity": "0.0040", "pos": "VB", "sense": "begnadetste,begnadeteres,begnadeterer,begnadeteren,begnadeterem,begnadetstem,begnadetem,begnadetsten,begnadeten,begnadete,begnadetes,begnadetere,begnadetstes,begnadetster,begnadeter" }, "begnadigen": { "form": "begnadigen", "polarity": "0.0040", "pos": "VB", "sense": "begnadigtet,begnadigte,begnadigst,begnadigt,begnadiget,begnadigest,begnadige,begnadigtest,begnadigten" }, "begünstigen": { "form": "begünstigen", "polarity": "0.0040", "pos": "VB", "sense": "begünstigest,begünstiget,begünstigtet,begünstigten,begünstige,begünstigt,begünstigtest,begünstigte,begünstigst" }, "behaglich": { "form": "behaglich", "polarity": "0.2007", "pos": "JJ", "sense": "behaglichste,behaglichstes,behaglichem,behaglichen,behaglicherer,behaglicherem,behaglichster,behaglicheren,behaglichstem,behaglichsten,behagliche,behaglichere,behaglicheres,behaglicher,behagliches" }, "beheben": { "form": "beheben", "polarity": "0.0040", "pos": "VB", "sense": "behebe,behebst,behebt,behebest,behebet,behob,behobst,behoben,behobt,behöbe,behöbest,behöbst,behöben,behöbet,behöbt" }, "beheizbar": { "form": "beheizbar", "polarity": "0.0040", "pos": "JJ", "sense": "beheizbarstes,beheizbarster,beheizbares,beheizbarerem,beheizbareren,beheizbarerer,beheizbareres,beheizbare,beheizbarstem,beheizbarer,beheizbarste,beheizbarsten,beheizbarem,beheizbaren,beheizbarere" }, "beherrscht": { "form": "beherrscht", "polarity": "0.4635", "pos": "JJ", "sense": "beherrschtem,beherrschteste,beherrschten,beherrschtes,beherrschteres,beherrschter,beherrschterer,beherrschterem,beherrschteren,beherrschtester,beherrschtesten,beherrschtestem,beherrschtere,beherrschte,beherrschtestes" }, "behutsam": { "form": "behutsam", "polarity": "0.0040", "pos": "JJ", "sense": "behutsame,behutsamste,behutsamerer,behutsamere,behutsameres,behutsameren,behutsamerem,behutsamster,behutsamstes,behutsames,behutsamer,behutsamen,behutsamem,behutsamstem,behutsamsten" }, "behütet": { "form": "behütet", "polarity": "0.0040", "pos": "JJ", "sense": "behütete,behütetem,behüteten,behüteter,behütetes" }, "beilegen": { "form": "beilegen", "polarity": "0.0040", "pos": "VB", "sense": "beilegte,beilegt,beilegst,beilegtet,beilegtest,beilege,beigelegt,beilegest,beileget,beilegten" }, "beispielhaft": { "form": "beispielhaft", "polarity": "0.0040", "pos": "JJ", "sense": "beispielhafte,beispielhaftesten,beispielhaftestem,beispielhaften,beispielhaftem,beispielhaftester,beispielhaftestes,beispielhafter,beispielhaftes,beispielhaftere,beispielhafteren,beispielhafterem,beispielhafteres,beispielhafterer,beispielhafteste" }, "beisteuern": { "form": "beisteuern", "polarity": "0.0040", "pos": "VB", "sense": "beisteuerte,beisteueren,beisteuerst,beisteuertest,beigesteuert,beisteuertet,beisteuert,beisteuere,beisteuerten" }, "beitragen": { "form": "beitragen", "polarity": "0.0040", "pos": "VB", "sense": "beitrage,beträgst,beiträgt,beitragt,beitragest,beitraget,beitrug,beitrugst,beitrugen,beitrugt,beitrüge,beitrügest,beitrügst,beitrügen,beitrüget,beitrügt" }, "beitreten": { "form": "beitreten", "polarity": "0.0040", "pos": "VB", "sense": "beitrete,beitrittst,beitritt,beitretet,beitretest,beitrat,beitratest,beitratst,beitraten,beitratet,beiträte,beiträtest,beiträten,beiträtet,beigetreten" }, "bejubelt": { "form": "bejubelt", "polarity": "0.0040", "pos": "JJ", "sense": "bejubelte,bejubeltem,bejubelten,bejubelter,bejubeltes,bejubeltere,bejubelterem,bejubelteren,bejubelterer,bejubelteres,bejubeltste,bejubeltstem,bejubeltsten,bejubeltster,bejubeltstes" }, "bekannt": { "form": "bekannt", "polarity": "0.0040", "pos": "JJ", "sense": "bekanntesten,bekanntere,bekanntestem,bekannte,bekanntester,bekannteste,bekanntestes,bekannter,bekanntes,bekanntem,bekannteren,bekannterem,bekannteres,bekannten,bekannterer" }, "bekennend": { "form": "bekennend", "polarity": "0.0040", "pos": "JJ", "sense": "bekennende,bekennendem,bekennenden,bekennender,bekennendes,bekennendere,bekennenderem,bekennenderen,bekennenderer,bekennenderes,bekennendste,bekennendstem,bekennendsten,bekennendster,bekennendstes" }, "bekräftigen": { "form": "bekräftigen", "polarity": "0.0040", "pos": "VB", "sense": "bekräftigtest,bekräftigte,bekräftigst,bekräftigt,bekräftiget,bekräftigtet,bekräftigten,bekräftigest,bekräftige" }, "belastbar": { "form": "belastbar", "polarity": "0.0040", "pos": "JJ", "sense": "belastbarstes,belastbaren,belastbarster,belastbarem,belastbare,belastbarer,belastbarstem,belastbares,belastbarsten,belastbarerem,belastbareren,belastbarerer,belastbareres,belastbarere,belastbarste" }, "beleben": { "form": "beleben", "polarity": "0.0040", "pos": "VB", "sense": "belebe,belebten,belebet,belebt,belebst,belebte,belebtet,belebtest,belebest" }, "belehrbar": { "form": "belehrbar", "polarity": "0.0040", "pos": "JJ", "sense": "belehrbarstes,belehrbareren,belehrbarerem,belehrbarerer,belehrbarster,belehrbare,belehrbarstem,belehrbarsten,belehrbareres,belehrbarere,belehrbaren,belehrbarem,belehrbarste,belehrbarer,belehrbares" }, "beliebt": { "form": "beliebt", "polarity": "0.2172", "pos": "JJ", "sense": "beliebteres,beliebten,beliebterer,beliebtes,beliebter,beliebte,beliebteste,beliebtestem,beliebtesten,beliebtere,beliebtestes,beliebteren,beliebtester,beliebtem,beliebterem" }, "belohnen": { "form": "belohnen", "polarity": "0.0893", "pos": "VB", "sense": "belohntest,belohnest,belohnte,belohnst,belohntet,belohnt,belohnten,belohnet,belohne" }, "bemerkenswert": { "form": "bemerkenswert", "polarity": "0.4515", "pos": "JJ", "sense": "bemerkenswertester,bemerkenswerter,bemerkenswertestes,bemerkenswertesten,bemerkenswertes,bemerkenswertestem,bemerkenswerte,bemerkenswerterer,bemerkenswerteres,bemerkenswertere,bemerkenswerterem,bemerkenswerteste,bemerkenswertem,bemerkenswerteren,bemerkenswerten" }, "beneidenswert": { "form": "beneidenswert", "polarity": "0.0040", "pos": "JJ", "sense": "beneidenswertes,beneidenswerter,beneidenswertesten,beneidenswertere,beneidenswertestem,beneidenswertestes,beneidenswertester,beneidenswerteres,beneidenswerterer,beneidenswerteren,beneidenswerterem,beneidenswerteste,beneidenswerte,beneidenswertem,beneidenswerten" }, "bequem": { "form": "bequem", "polarity": "0.2344", "pos": "JJ", "sense": "bequemeres,bequemem,bequemerer,bequemste,bequemstem,bequemsten,bequemen,bequemeren,bequemerem,bequemes,bequemster,bequemer,bequemstes,bequemere,bequeme" }, "berauschend": { "form": "berauschend", "polarity": "0.0809", "pos": "JJ", "sense": "berauschendsten,berauschendere,berauschendster,berauschendstes,berauschenden,berauschendem,berauschenderer,berauschenderes,berauschende,berauschendste,berauschenderem,berauschendes,berauschender,berauschenderen,berauschendstem" }, "bereichern": { "form": "bereichern", "polarity": "0.0718", "pos": "VB", "sense": "bereichere,bereicherte,bereicherst,bereichertet,bereichertest,bereichert,bereicheren,bereicherten" }, "bereit": { "form": "bereit", "polarity": "0.0040", "pos": "JJ", "sense": "bereite,bereitem,bereiten,bereiter,bereites" }, "bereitstellen": { "form": "bereitstellen", "polarity": "0.0040", "pos": "VB", "sense": "bereitstelltet,bereitstellest,bereitstelltest,bereitstellten,bereitstellet,bereitstellst,bereitstellte,bereitstellt,bereitgestellt,bereitstelle" }, "beruhigen": { "form": "beruhigen", "polarity": "0.0040", "pos": "VB", "sense": "beruhigte,beruhigst,beruhiget,beruhigtet,beruhigten,beruhigtest,beruhigest,beruhigt,beruhige" }, "beruhigend": { "form": "beruhigend", "polarity": "0.2133", "pos": "JJ", "sense": "beruhigende,beruhigendem,beruhigenden,beruhigender,beruhigendes,beruhigendere,beruhigenderem,beruhigenderen,beruhigenderer,beruhigenderes,beruhigendste,beruhigendstem,beruhigendsten,beruhigendster,beruhigendstes" }, "berühmt": { "form": "berühmt", "polarity": "0.3267", "pos": "JJ", "sense": "berühmtester,berühmtestes,berühmtes,berühmte,berühmtem,berühmten,berühmteren,berühmter,berühmtere,berühmteres,berühmterer,berühmteste,berühmtesten,berühmtestem,berühmterem" }, "bescheiden": { "form": "bescheiden", "polarity": "0.0956", "pos": "JJ", "sense": "bescheidnere,bescheidenste,bescheidensten,bescheidenstem,bescheidner,bescheidenem,bescheidenen,bescheidene,bescheideneren,bescheidneren,bescheidnerem,bescheidenerem,bescheidener,bescheidenerer,bescheidneres,bescheideneres,bescheidnerer,bescheidenes,bescheidenere,bescheidenster,bescheidenstes" }, "beschleunigen": { "form": "beschleunigen", "polarity": "0.0040", "pos": "VB", "sense": "beschleunigst,beschleuniget,beschleunigtest,beschleunigte,beschleunigt,beschleunigten,beschleunigtet,beschleunigest,beschleunige" }, "beschwichtigen": { "form": "beschwichtigen", "polarity": "0.0040", "pos": "VB", "sense": "beschwichtigten,beschwichtigest,beschwichtigst,beschwichtiget,beschwichtigte,beschwichtige,beschwichtigtest,beschwichtigtet,beschwichtigt" }, "besitzen": { "form": "besitzen", "polarity": "0.0040", "pos": "VB", "sense": "besitze,besitzt,besitzest,besitzet,besaß,besaßest,besaßt,besaßen,besäße,besäßest,besäßen,besäßet" }, "besondere": { "form": "besondere", "polarity": "0.0040", "pos": "JJ", "sense": "besonderem,besonderen,besondereren,besonderes" }, "besonders": { "form": "besonders", "polarity": "0.5391", "pos": "RB", "sense": "" }, "besonnen": { "form": "besonnen", "polarity": "0.0040", "pos": "JJ", "sense": "besonnenstes,besonnener,besonnenster,besonnenes,besonnenen,besonnensten,besonnenem,besonnenerem,besonneneren,besonnenstem,besonnenere,besonnenste,besonneneres,besonnene,besonnenerer" }, "besser": { "form": "besser", "polarity": "0.0040", "pos": "JJ", "sense": "bessere,besserem,besseren,besserer,besseres,beste,bestem,besten,bester,bestes" }, "bessern": { "form": "bessern", "polarity": "0.0040", "pos": "VB", "sense": "bessert,bessertet,bessere,gebessert,bessertest,besserten,besserte,besserst,besseren" }, "bestehen": { "form": "bestehen", "polarity": "0.0040", "pos": "VB", "sense": "bestehe,bestehst,besteht,bestehest,bestehet,bestand,bestandest,bestandst,bestanden,bestände,bestünde,beständest,bestündest,beständen,bestünden,beständet,bestündet" }, "bestens": { "form": "bestens", "polarity": "0.0808", "pos": "RB", "sense": "" }, "bestmöglich": { "form": "bestmöglich", "polarity": "0.0040", "pos": "JJ", "sense": "bestmöglichen,bestmöglichem,bestmöglichere,bestmöglicheres,bestmöglicherer,bestmögliche,bestmöglicher,bestmöglicheren,bestmöglicherem,bestmögliches,bestmöglichste,bestmöglichstes,bestmöglichster,bestmöglichstem,bestmöglichsten" }, "bestätigen": { "form": "bestätigen", "polarity": "0.0854", "pos": "VB", "sense": "bestätiget,bestätigte,bestätigtest,bestätigtet,bestätige,bestätigt,bestätigest,bestätigten,bestätigst" }, "beteiligen": { "form": "beteiligen", "polarity": "0.0040", "pos": "VB", "sense": "beteiligst,beteiliget,beteiligten,beteiligte,beteiligtet,beteiligt,beteiligest,beteilige,beteiligtest" }, "beträchtlich": { "form": "beträchtlich", "polarity": "0.0040", "pos": "JJ", "sense": "beträchtlichstes,beträchtlichster,beträchtlicher,beträchtlicheres,beträchtliches,beträchtlichsten,beträchtlicherer,beträchtlicheren,beträchtlichere,beträchtlichstem,beträchtlichem,beträchtlicherem,beträchtlichen,beträchtliche,beträchtlichste" }, "bevorzugt": { "form": "bevorzugt", "polarity": "0.0040", "pos": "JJ", "sense": "bevorzugte,bevorzugtem,bevorzugten,bevorzugter,bevorzugtes" }, "bewegend": { "form": "bewegend", "polarity": "0.0040", "pos": "JJ", "sense": "bewegende,bewegendem,bewegenden,bewegender,bewegendes,bewegendere,bewegenderem,bewegenderen,bewegenderer,bewegenderes,bewegendste,bewegendstem,bewegendsten,bewegendster,bewegendstes" }, "bewirken": { "form": "bewirken", "polarity": "0.0040", "pos": "VB", "sense": "bewirktet,bewirktest,bewirket,bewirkten,bewirkte,bewirkst,bewirkest,bewirke,bewirkt" }, "bewundern": { "form": "bewundern", "polarity": "0.0040", "pos": "VB", "sense": "bewunderten,bewundertet,bewundert,bewundere,bewunderte,bewunderen,bewunderst,bewundertest" }, "bewundernswert": { "form": "bewundernswert", "polarity": "0.0823", "pos": "JJ", "sense": "bewundernswertesten,bewundernswerter,bewundernswertestem,bewundernswertes,bewundernswertem,bewundernswerten,bewundernswerterer,bewundernswertestes,bewundernswertester,bewundernswerteres,bewundernswertere,bewundernswerteste,bewundernswerteren,bewundernswerte,bewundernswerterem" }, "bewundert": { "form": "bewundert", "polarity": "0.0040", "pos": "JJ", "sense": "bewunderte,bewundertem,bewunderten,bewunderter,bewundertes,bewundertere,bewunderterem,bewunderteren,bewunderterer,bewunderteres,bewundertste,bewundertstem,bewundertsten,bewundertster,bewundertstes" }, "bewährt": { "form": "bewährt", "polarity": "0.465", "pos": "JJ", "sense": "bewährteren,bewährtes,bewährterer,bewährtestes,bewährteres,bewährtester,bewährten,bewährtem,bewährtesten,bewährtestem,bewährter,bewährteste,bewährtere,bewährte,bewährterem" }, "bezaubernd": { "form": "bezaubernd", "polarity": "0.3081", "pos": "JJ", "sense": "bezauberndere,bezaubernderem,bezaubernde,bezauberndste,bezauberndstes,bezauberndster,bezaubernder,bezauberndem,bezaubernden,bezaubernderen,bezauberndstem,bezaubernderer,bezauberndsten,bezaubernderes,bezauberndes" }, "blendend": { "form": "blendend", "polarity": "0.3096", "pos": "JJ", "sense": "blendender,blendendem,blendenden,blendendste,blendenderer,blendenderes,blendenderen,blendendes,blendenderem,blendendstes,blendendster,blendendere,blendendstem,blendende,blendendsten" }, "blühen": { "form": "blühen", "polarity": "0.2028", "pos": "VB", "sense": "blühtet,blühst,blühte,geblüht,blühten,blühest,blühet,blüht,blühe,blühtest" }, "bombastisch": { "form": "bombastisch", "polarity": "0.2053", "pos": "JJ", "sense": "bombastischster,bombastischstes,bombastischsten,bombastischeren,bombastischerem,bombastischste,bombastischstem,bombastischerer,bombastische,bombastischeres,bombastischem,bombastischere,bombastisches,bombastischer,bombastischen" }, "bombig": { "form": "bombig", "polarity": "0.0837", "pos": "JJ", "sense": "bombigstem,bombigeren,bombigerem,bombigsten,bombigstes,bombigster,bombiger,bombiges,bombige,bombigen,bombigeres,bombigem,bombigerer,bombigste,bombigere" }, "boomen": { "form": "boomen", "polarity": "0.0040", "pos": "VB", "sense": "boome,boomst,boomt,boomest,boomet,boomte,boomtest,boomten,boomtet,geboomt" }, "brandneu": { "form": "brandneu", "polarity": "0.0040", "pos": "JJ", "sense": "brandneue,brandneuem,brandneuen,brandneuer,brandneues" }, "bravourös": { "form": "bravourös", "polarity": "0.0040", "pos": "JJ", "sense": "bravourösem,bravourösen,bravouröseste,bravourösester,bravourösere,bravouröseres,bravouröserer,bravourösesten,bravouröserem,bravourösestem,bravouröseren,bravourösestes,bravouröse,bravouröses,bravouröser" }, "breitgefächert": { "form": "breitgefächert", "polarity": "0.0040", "pos": "JJ", "sense": "breitgefächertster,breitgefächertstes,breitgefächerteren,breitgefächertsten,breitgefächertem,breitgefächerten,breitgefächerterem,breitgefächerter,breitgefächertere,breitgefächertstem,breitgefächerteres,breitgefächerterer,breitgefächertste,breitgefächertes,breitgefächerte" }, "brillant": { "form": "brillant", "polarity": "0.3064", "pos": "JJ", "sense": "brillantesten,brillanten,brillantem,brillanteren,brillantestem,brillanterem,brillantestes,brillantester,brillantes,brillante,brillanter,brillanteres,brillanterer,brillanteste,brillantere" }, "brilliant": { "form": "brilliant", "polarity": "0.183", "pos": "JJ", "sense": "brilliante,brilliantem,brillianten,brillianter,brilliantes,brilliantere,brillianterem,brillianteren,brillianterer,brillianteres,brillianteste,brilliantestem,brilliantesten,brilliantester,brilliantestes" }, "brillieren": { "form": "brillieren", "polarity": "0.0040", "pos": "VB", "sense": "brilliere,brillierst,brilliert,brillierest,brillieret,brillierte,brilliertest,brillierten,brilliertet" }, "brüderlich": { "form": "brüderlich", "polarity": "0.0040", "pos": "JJ", "sense": "brüderliche,brüderlichste,brüderlichstes,brüderlicheres,brüderlicherer,brüderlichster,brüderlichen,brüderliches,brüderlichstem,brüderlichsten,brüderlicher,brüderlicherem,brüderlichem,brüderlicheren,brüderlichere" }, "bunt": { "form": "bunt", "polarity": "0.3507", "pos": "JJ", "sense": "buntester,buntestes,bunterer,bunteres,buntesten,buntestem,buntere,bunte,bunteste,bunter,buntes,buntem,bunten,bunteren,bunterem" }, "bärenstark": { "form": "bärenstark", "polarity": "0.0040", "pos": "JJ", "sense": "bärenstarkster,bärenstarkere,bärenstarkstes,bärenstarksten,bärenstarke,bärenstarkstem,bärenstarker,bärenstarkeres,bärenstarkes,bärenstarkerer,bärenstarkem,bärenstarken,bärenstarkste,bärenstarkerem,bärenstarkeren" }, "charakterstark": { "form": "charakterstark", "polarity": "0.0040", "pos": "JJ", "sense": "charakterstarke,charakterstarkem,charakterstarken,charakterstarker,charakterstarkes" }, "charismatisch": { "form": "charismatisch", "polarity": "0.0040", "pos": "JJ", "sense": "charismatischerer,charismatischeres,charismatischste,charismatischeren,charismatischerem,charismatische,charismatischere,charismatischem,charismatischstem,charismatischsten,charismatischen,charismatisches,charismatischster,charismatischer,charismatischstes" }, "charmant": { "form": "charmant", "polarity": "0.3223", "pos": "JJ", "sense": "charmante,charmantere,charmanteren,charmanterem,charmantester,charmantestes,charmanten,charmantem,charmanteres,charmanterer,charmantes,charmanteste,charmanter,charmantestem,charmantesten" }, "chic": { "form": "chic", "polarity": "0.0787", "pos": "JJ", "sense": "chicster,chicstes,chicstem,chicsten,chicere,chicste,chicst,chicem,chiceren,chicerem,chicerer,chice,chices,chicer,chiceres,chicen" }, "clever": { "form": "clever", "polarity": "0.2243", "pos": "JJ", "sense": "cleverem,clevererem,clevereren,clevere,clevrerer,clevreres,clevrerem,clevrer,clevrere,cleversten,cleverste,clevreren,cleverstem,cleverstes,cleverere,cleverster,clevererer,cleveren,clevereres,cleveres,cleverer" }, "cool": { "form": "cool", "polarity": "0.0040", "pos": "JJ", "sense": "coolsten,coolstem,coolster,coolstes,coolerem,cooleren,cooler,cooles,coolerer,coolste,coole,coolen,cooleres,coolem,coolere" }, "dankbar": { "form": "dankbar", "polarity": "0.0854", "pos": "JJ", "sense": "dankbares,dankbarer,dankbarerer,dankbaren,dankbareres,dankbarem,dankbarere,dankbarstem,dankbarsten,dankbarste,dankbarster,dankbarstes,dankbare,dankbarerem,dankbareren" }, "danken": { "form": "danken", "polarity": "0.191", "pos": "VB", "sense": "dankte,danktet,danktest,dankst,dankest,dankt,danke,gedankt,dankten,danket" }, "dauerhaft": { "form": "dauerhaft", "polarity": "0.205", "pos": "JJ", "sense": "dauerhaften,dauerhaftem,dauerhaftere,dauerhafteste,dauerhafteren,dauerhafterem,dauerhafte,dauerhafter,dauerhafteres,dauerhafterer,dauerhaftes,dauerhaftestes,dauerhaftester,dauerhaftestem,dauerhaftesten" }, "denkwürdig": { "form": "denkwürdig", "polarity": "0.0040", "pos": "JJ", "sense": "denkwürdigere,denkwürdigstes,denkwürdige,denkwürdiges,denkwürdigster,denkwürdiger,denkwürdigen,denkwürdigem,denkwürdigeren,denkwürdigerem,denkwürdigste,denkwürdigerer,denkwürdigstem,denkwürdigsten,denkwürdigeres" }, "detailliert": { "form": "detailliert", "polarity": "0.0040", "pos": "JJ", "sense": "detaillierterer,detaillierteres,detaillierte,detailliertesten,detailliertestem,detailliertere,detaillierteren,detaillierterem,detaillierter,detailliertes,detailliertestes,detaillierteste,detailliertester,detailliertem,detaillierten" }, "dienlich": { "form": "dienlich", "polarity": "0.0040", "pos": "JJ", "sense": "dienlichsten,dienlichstem,dienlichere,dienlichstes,dienlichster,dienlichem,dienlichste,dienlichen,dienliche,dienlicherer,dienlicher,dienlicheres,dienliches,dienlicheren,dienlicherem" }, "diplomatisch": { "form": "diplomatisch", "polarity": "0.0040", "pos": "JJ", "sense": "diplomatischem,diplomatischste,diplomatischen,diplomatische,diplomatisches,diplomatischer,diplomatischstem,diplomatischsten,diplomatischster,diplomatischstes,diplomatischeres,diplomatischere,diplomatischerer,diplomatischerem,diplomatischeren" }, "diskret": { "form": "diskret", "polarity": "0.0040", "pos": "JJ", "sense": "diskretem,diskretester,diskreten,diskrete,diskretestem,diskretesten,diskreteste,diskretere,diskreteren,diskreterem,diskreteres,diskretestes,diskreterer,diskretes,diskreter" }, "diszipliniert": { "form": "diszipliniert", "polarity": "0.0040", "pos": "JJ", "sense": "diszipliniertester,disziplinierterem,disziplinierteren,diszipliniertesten,disziplinierteste,diszipliniertestem,disziplinierteres,disziplinierterer,diszipliniertestes,disziplinierte,diszipliniertes,disziplinierter,disziplinierten,diszipliniertere,diszipliniertem" }, "dufte": { "form": "dufte", "polarity": "0.1958", "pos": "JJ", "sense": "duftester,duftestes,dufteres,duftesten,dufterer,dufterem,dufteren,duftes,dufter,duften,duftem,duftestem,duftere,dufteste" }, "duften": { "form": "duften", "polarity": "0.2132", "pos": "JJ", "sense": "dufte,duftest,duftet,duftete,duftetest,dufteten,duftetet,geduftet" }, "durchdacht": { "form": "durchdacht", "polarity": "0.2131", "pos": "JJ", "sense": "durchdachteren,durchdachterem,durchdachterer,durchdachteres,durchdachtestes,durchdachtester,durchdachtesten,durchdachte,durchdachtestem,durchdachtem,durchdachten,durchdachtere,durchdachtes,durchdachteste,durchdachter" }, "durchhalten": { "form": "durchhalten", "polarity": "0.0040", "pos": "VB", "sense": "durchhalte,durchhältst,durchhält,durchhaltet,durchhaltest,durchhielt,durchhieltest,durchhieltst,durchhielten,durchhieltet,durchgehalten" }, "durchschlagend": { "form": "durchschlagend", "polarity": "0.0040", "pos": "JJ", "sense": "durchschlagenderen,durchschlagenderem,durchschlagendem,durchschlagende,durchschlagendere,durchschlagenderer,durchschlagenden,durchschlagenderes,durchschlagendes,durchschlagender,durchschlagendstem,durchschlagendsten,durchschlagendstes,durchschlagendste,durchschlagendster" }, "dynamisch": { "form": "dynamisch", "polarity": "0.0040", "pos": "JJ", "sense": "dynamischster,dynamischstes,dynamischen,dynamischem,dynamischere,dynamischerer,dynamischeres,dynamischeren,dynamischerem,dynamisches,dynamischsten,dynamischstem,dynamische,dynamischer,dynamischste" }, "edel": { "form": "edel", "polarity": "0.2235", "pos": "JJ", "sense": "edles,edler,edelsten,edlem,edelstes,edelster,edlen,edelste,edlerer,edlere,edelstem,edleren,edlerem,edleres,edle" }, "effektiv": { "form": "effektiv", "polarity": "0.0971", "pos": "JJ", "sense": "effektivem,effektiverem,effektiven,effektiveren,effektivstem,effektivste,effektivere,effektiverer,effektive,effektiveres,effektivstes,effektivster,effektives,effektiver,effektivsten" }, "effektvoll": { "form": "effektvoll", "polarity": "0.0040", "pos": "JJ", "sense": "effektvollere,effektvollerer,effektvolleres,effektvolle,effektvolleren,effektvoller,effektvollerem,effektvollster,effektvollstes,effektvollem,effektvollen,effektvollste,effektvollstem,effektvollsten,effektvolles" }, "effizient": { "form": "effizient", "polarity": "0.0040", "pos": "JJ", "sense": "effiziente,effizientere,effizientestem,effizientesten,effizientester,effizientestes,effizienteres,effizienterer,effizienteren,effizienterem,effizienteste,effizientem,effizienten,effizientes,effizienter" }, "ehren": { "form": "ehren", "polarity": "0.0612", "pos": "VB", "sense": "ehret,ehrest,ehrt,ehre,ehrtest,ehrten,ehrst,ehrte,ehrtet,geehrt" }, "ehrenwert": { "form": "ehrenwert", "polarity": "0.0040", "pos": "JJ", "sense": "ehrenwertere,ehrenwerteres,ehrenwerterer,ehrenwerteste,ehrenwerte,ehrenwertesten,ehrenwertestem,ehrenwertem,ehrenwerten,ehrenwertester,ehrenwerteren,ehrenwertestes,ehrenwerter,ehrenwertes,ehrenwerterem" }, "ehrfürchtig": { "form": "ehrfürchtig", "polarity": "0.0040", "pos": "JJ", "sense": "ehrfürchtigstes,ehrfürchtigster,ehrfürchtigstem,ehrfürchtigsten,ehrfürchtigere,ehrfürchtigeren,ehrfürchtigerem,ehrfürchtigeres,ehrfürchtigerer,ehrfürchtiges,ehrfürchtiger,ehrfürchtigste,ehrfürchtige,ehrfürchtigen,ehrfürchtigem" }, "ehrgeizig": { "form": "ehrgeizig", "polarity": "0.2076", "pos": "JJ", "sense": "ehrgeizigster,ehrgeizigerer,ehrgeizigstes,ehrgeiziger,ehrgeizigeres,ehrgeiziges,ehrgeizigeren,ehrgeizigere,ehrgeizigerem,ehrgeizigsten,ehrgeizige,ehrgeizigem,ehrgeizigste,ehrgeizigen,ehrgeizigstem" }, "ehrlich": { "form": "ehrlich", "polarity": "0.1212", "pos": "JJ", "sense": "ehrlicherer,ehrlichste,ehrlicheres,ehrliche,ehrlichster,ehrlicheren,ehrlichstem,ehrlichsten,ehrlicherem,ehrlichere,ehrlichstes,ehrlichen,ehrlichem,ehrlicher,ehrliches" }, "ehrwürdig": { "form": "ehrwürdig", "polarity": "0.0040", "pos": "JJ", "sense": "ehrwürdigste,ehrwürdigstem,ehrwürdigen,ehrwürdigsten,ehrwürdigem,ehrwürdigere,ehrwürdige,ehrwürdiges,ehrwürdigster,ehrwürdigstes,ehrwürdiger,ehrwürdigerer,ehrwürdigeres,ehrwürdigeren,ehrwürdigerem" }, "eifern": { "form": "eifern", "polarity": "0.0040", "pos": "VB", "sense": "eifert,eifere,eiferen,geeifert,eifertet,eifertest,eiferte,eiferst,eiferten" }, "eifrig": { "form": "eifrig", "polarity": "0.0040", "pos": "JJ", "sense": "eifrigere,eifrigstem,eifrigster,eifrigstes,eifrigste,eifrigsten,eifriges,eifriger,eifrigeres,eifrigerer,eifrige,eifrigen,eifrigem,eifrigeren,eifrigerem" }, "eignen": { "form": "eignen", "polarity": "0.1006", "pos": "VB", "sense": "eigne,eignest,eignet,eignete,eignetest,eigneten,eignetet,geeignet" }, "eindeutig": { "form": "eindeutig", "polarity": "0.0040", "pos": "JJ", "sense": "eindeutigeres,eindeutigerer,eindeutigsten,eindeutigstem,eindeutigstes,eindeutigster,eindeutiges,eindeutiger,eindeutigen,eindeutigste,eindeutigem,eindeutigerem,eindeutige,eindeutigeren,eindeutigere" }, "eindrucksvoll": { "form": "eindrucksvoll", "polarity": "0.3001", "pos": "JJ", "sense": "eindrucksvollerer,eindrucksvolleres,eindrucksvollere,eindrucksvollster,eindrucksvollen,eindrucksvollstes,eindrucksvolles,eindrucksvollstem,eindrucksvollsten,eindrucksvoller,eindrucksvollem,eindrucksvollste,eindrucksvolle,eindrucksvollerem,eindrucksvolleren" }, "einfach": { "form": "einfach", "polarity": "0.0040", "pos": "JJ", "sense": "einfache,einfachstem,einfachsten,einfachster,einfachstes,einfacherem,einfachste,einfacheren,einfacheres,einfaches,einfacherer,einfacher,einfachere,einfachem,einfachen" }, "einfallsreich": { "form": "einfallsreich", "polarity": "0.2031", "pos": "JJ", "sense": "einfallsreichsten,einfallsreichstem,einfallsreiches,einfallsreicher,einfallsreichster,einfallsreichem,einfallsreichen,einfallsreichere,einfallsreiche,einfallsreichstes,einfallsreicherer,einfallsreicheren,einfallsreicherem,einfallsreichste,einfallsreicheres" }, "einflußreich": { "form": "einflußreich", "polarity": "0.0040", "pos": "JJ", "sense": "einflußreicheren,einflußreichstem,einflußreichsten,einflußreicherem,einflußreichster,einflußreiche,einflußreichere,einflußreicheres,einflußreicherer,einflußreichem,einflußreichen,einflußreichste,einflußreiches,einflußreicher,einflußreichst,einflußreichstes" }, "einflussreich": { "form": "einflussreich", "polarity": "0.0040", "pos": "JJ", "sense": "einflussreiche,einflussreichem,einflussreichen,einflussreicher,einflussreiches,einflussreichere,einflussreicherem,einflussreicheren,einflussreicherer,einflussreicheres,einflussreichste,einflussreichstem,einflussreichsten,einflussreichster,einflussreichstes" }, "einhalten": { "form": "einhalten", "polarity": "0.0040", "pos": "VB", "sense": "einhalte,einhältst,einhält,einhaltet,einhaltest,einhielt,einhieltest,einhieltst,einhielten,einhieltet,einhielte,eingehalten" }, "einheitlich": { "form": "einheitlich", "polarity": "0.0040", "pos": "JJ", "sense": "einheitlichste,einheitliches,einheitlichsten,einheitlicheres,einheitlichstem,einheitlicher,einheitlicherer,einheitlicherem,einheitliche,einheitlicheren,einheitlichere,einheitlichster,einheitlichstes,einheitlichem,einheitlichen" }, "einkaufen": { "form": "einkaufen", "polarity": "0.2249", "pos": "VB", "sense": "einkaufest,einkauftet,eingekauft,einkaufet,einkaufe,einkaufst,einkauftest,einkaufte,einkauft,einkauften" }, "einmalig": { "form": "einmalig", "polarity": "0.3137", "pos": "JJ", "sense": "einmaligere,einmaligeren,einmaligerem,einmaligerer,einmaligeres,einmaligstem,einmaligen,einmaligsten,einmaligem,einmaligste,einmalige,einmaliges,einmaligstes,einmaliger,einmaligster" }, "einnehmen": { "form": "einnehmen", "polarity": "0.0040", "pos": "VB", "sense": "einnehme,einnimmst,einnimmt,einnehmt,einnehmest,einnehmet,einnahm,einnahmst,einnahmen,einnahmt,einnähme,einnähmest,einnähmst,einnähmen,einnähmet,einnähmt,eingenommen" }, "einsparen": { "form": "einsparen", "polarity": "0.0040", "pos": "VB", "sense": "einsparten,einsparet,einspart,einspare,einsparst,einsparest,einspartest,einsparte,einspartet,eingespart" }, "einträglich": { "form": "einträglich", "polarity": "0.0040", "pos": "JJ", "sense": "einträglichster,einträglichstes,einträgliche,einträglichstem,einträglichsten,einträglichere,einträglichste,einträglicherer,einträglichen,einträglichem,einträglicheren,einträglicherem,einträgliches,einträglicher,einträglicheres" }, "einwandfrei": { "form": "einwandfrei", "polarity": "0.0949", "pos": "JJ", "sense": "einwandfreiem,einwandfreierer,einwandfreien,einwandfreieres,einwandfreiste,einwandfreieren,einwandfreier,einwandfreie,einwandfreies,einwandfreieste,einwandfreiere,einwandfreisten,einwandfreiester,einwandfreiest,einwandfreiestes,einwandfreistem,einwandfreierem,einwandfreistes,einwandfreiestem,einwandfreister,einwandfreiesten" }, "einweihen": { "form": "einweihen", "polarity": "0.0040", "pos": "VB", "sense": "einweihe,einweihst,einweiht,einweihest,einweihet,einweihte,einweihtest,einweihten,einweihtet,eingeweiht" }, "einzigartig": { "form": "einzigartig", "polarity": "0.3078", "pos": "JJ", "sense": "einzigartigstes,einzigartigster,einzigartigerer,einzigartigste,einzigartiger,einzigartigeres,einzigartiges,einzigartigeren,einzigartigerem,einzigartigem,einzigartigere,einzigartigen,einzigartige,einzigartigsten,einzigartigstem" }, "elegant": { "form": "elegant", "polarity": "0.2115", "pos": "JJ", "sense": "eleganteren,eleganter,elegantes,eleganterem,elegantere,elegantesten,elegantestem,elegantestes,elegantester,elegante,elegantem,eleganterer,eleganteste,eleganten,eleganteres" }, "empathisch": { "form": "empathisch", "polarity": "0.0040", "pos": "JJ", "sense": "empathischste,empathischsten,empathischstem,empathischstes,empathischeres,empathischster,empathischerer,empathischeren,empathischerem,empathischer,empathisches,empathischen,empathischere,empathische,empathischem" }, "empfehlen": { "form": "empfehlen", "polarity": "0.0040", "pos": "VB", "sense": "empfehle,empfiehlst,empfiehlt,empfehlt,empfehlest,empfehlet,empfahl,empfahlst,empfahlen,empfahlt,empfähle,empföhle,empfählest,empfählst,empföhlest,empföhlst,empfählen,empföhlen,empfählet,empfählt,empföhlet,empföhlt,empfohlen" }, "empfehlenswert": { "form": "empfehlenswert", "polarity": "0.093", "pos": "JJ", "sense": "empfehlenswerteres,empfehlenswerterer,empfehlenswerteren,empfehlenswerterem,empfehlenswertestem,empfehlenswertestes,empfehlenswertester,empfehlenswerte,empfehlenswertere,empfehlenswertesten,empfehlenswertem,empfehlenswerten,empfehlenswerter,empfehlenswerteste,empfehlenswertes" }, "energisch": { "form": "energisch", "polarity": "0.0040", "pos": "JJ", "sense": "energische,energischstes,energischer,energischster,energischere,energisches,energischen,energischsten,energischem,energischstem,energischerem,energischeren,energischste,energischeres,energischerer" }, "engagieren": { "form": "engagieren", "polarity": "0.0040", "pos": "VB", "sense": "engagiertet,engagierst,engagierte,engagieret,engagierest,engagierten,engagiertest,engagiere,engagiert" }, "engagiert": { "form": "engagiert", "polarity": "0.0869", "pos": "VB", "sense": "engagierteste,engagiertes,engagierte,engagiertestem,engagiertesten,engagiertestes,engagiertester,engagierteren,engagierteres,engagierterer,engagierten,engagiertem,engagiertere,engagierter,engagierterem" }, "enorm": { "form": "enorm", "polarity": "0.0898", "pos": "JJ", "sense": "enormstes,enormere,enorme,enormen,enormem,enormes,enormer,enormste,enormerem,enormeren,enormstem,enormsten,enormerer,enormeres,enormster" }, "enthusiastisch": { "form": "enthusiastisch", "polarity": "0.0040", "pos": "JJ", "sense": "enthusiastischem,enthusiastischen,enthusiastischstem,enthusiastischsten,enthusiastischstes,enthusiastischster,enthusiastischere,enthusiastische,enthusiastischerer,enthusiastischste,enthusiastischer,enthusiastischeres,enthusiastisches,enthusiastischerem,enthusiastischeren" }, "entlasten": { "form": "entlasten", "polarity": "0.0040", "pos": "VB", "sense": "entlaste,entlastest,entlastet,entlastete,entlastetest,entlasteten,entlastetet" }, "entlohnen": { "form": "entlohnen", "polarity": "0.0040", "pos": "VB", "sense": "entlohne,entlohnst,entlohnt,entlohnest,entlohnet,entlohnte,entlohntest,entlohnten,entlohntet" }, "enträtseln": { "form": "enträtseln", "polarity": "0.0040", "pos": "VB", "sense": "enträtsele,enträtsle,enträtselst,enträtselt,enträtselest,enträtslet,enträtselte,enträtseltest,enträtselten,enträtseltet" }, "entschlossen": { "form": "entschlossen", "polarity": "0.0040", "pos": "JJ", "sense": "entschlossenstem,entschlossensten,entschlossene,entschlossenerer,entschlossenster,entschlossenere,entschlosseneres,entschlossner,entschlossenem,entschlossenstes,entschlossenen,entschlossener,entschlossenes,entschlossnerem,entschlossnere,entschlossneren,entschlossnerer,entschlossenste,entschlossneres,entschlosseneren,entschlossenerem" }, "entschlüsseln": { "form": "entschlüsseln", "polarity": "0.0040", "pos": "VB", "sense": "entschlüssele,entschlüsselt,entschlüsseltest,entschlüssel,entschlüsselten,entschlüsseltet,entschlüsselst,entschlüsselen,entschlüsselte,entschlüssle" }, "entschädigen": { "form": "entschädigen", "polarity": "0.0040", "pos": "VB", "sense": "entschädige,entschädigst,entschädigt,entschädigest,entschädiget,entschädigte,entschädigtest,entschädigten,entschädigtet" }, "entspannen": { "form": "entspannen", "polarity": "0.2406", "pos": "VB", "sense": "entspannet,entspanntet,entspannst,entspannte,entspannten,entspannest,entspanne,entspanntest,entspannt" }, "entwirren": { "form": "entwirren", "polarity": "0.0040", "pos": "VB", "sense": "entwirrtest,entwirrten,entwirrest,entwirrtet,entwirre,entwirrt,entwirrst,entwirret,entwirrte" }, "entzückend": { "form": "entzückend", "polarity": "0.0844", "pos": "JJ", "sense": "entzückendstem,entzückenderem,entzückenderen,entzückendste,entzückender,entzückendes,entzückende,entzückenden,entzückendem,entzückendstes,entzückendster,entzückenderes,entzückendsten,entzückendere,entzückenderer" }, "epochal": { "form": "epochal", "polarity": "0.0040", "pos": "JJ", "sense": "epochalem,epochalere,epochalen,epochalster,epochalstes,epochaleres,epochalerer,epochalerem,epochalste,epochaleren,epochale,epochalsten,epochales,epochaler,epochalstem" }, "erarbeiten": { "form": "erarbeiten", "polarity": "0.0040", "pos": "VB", "sense": "erarbeitest,erarbeitetest,erarbeiteten,erarbeite,erarbeitete,erarbeitet,erarbeitetet,erarbeiten" }, "erben": { "form": "erben", "polarity": "0.0040", "pos": "VB", "sense": "erbst,geerbt,erbt,erbest,erbe,erbten,erbtet,erbtest,erbet,erbte" }, "erfahren": { "form": "erfahren", "polarity": "0.0927", "pos": "JJ", "sense": "erfahrenere,erfahrensten,erfahrenstem,erfahrneren,erfahrenstes,erfahrnerem,erfahrenster,erfahrnere,erfahrneres,erfahrnerer,erfahrner,erfahrenes,erfahrener,erfahrenerer,erfahrene,erfahrenem,erfahreneres,erfahrenerem,erfahrenen,erfahreneren,erfahrenste" }, "erfolgreich": { "form": "erfolgreich", "polarity": "0.2193", "pos": "JJ", "sense": "erfolgreichstem,erfolgreicheres,erfolgreichste,erfolgreicherer,erfolgreicherem,erfolgreiches,erfolgreichsten,erfolgreicheren,erfolgreicher,erfolgreichstes,erfolgreichster,erfolgreichem,erfolgreichen,erfolgreiche,erfolgreichere" }, "erfreuen": { "form": "erfreuen", "polarity": "0.2112", "pos": "VB", "sense": "erfreutest,erfreuten,erfreutet,erfreut,erfreute,erfreust,erfreuet,erfreuest,erfreue" }, "erfreulich": { "form": "erfreulich", "polarity": "0.2197", "pos": "JJ", "sense": "erfreulicher,erfreulicherem,erfreulicheren,erfreuliches,erfreulichsten,erfreulicherer,erfreulichste,erfreulichstem,erfreulicheres,erfreulichster,erfreuliche,erfreulichstes,erfreulichem,erfreulichen,erfreulichere" }, "erfrischend": { "form": "erfrischend", "polarity": "0.2227", "pos": "JJ", "sense": "erfrischende,erfrischendem,erfrischenden,erfrischender,erfrischendes,erfrischendere,erfrischenderem,erfrischenderen,erfrischenderer,erfrischenderes,erfrischendste,erfrischendstem,erfrischendsten,erfrischendster,erfrischendstes" }, "erfüllen": { "form": "erfüllen", "polarity": "0.0040", "pos": "VB", "sense": "erfüllten,erfüllest,erfüllte,erfüllst,erfüllet,erfülltet,erfülle,erfülltest,erfüllt" }, "ergebnisreich": { "form": "ergebnisreich", "polarity": "0.0040", "pos": "JJ", "sense": "ergebnisreicherem,ergebnisreichstem,ergebnisreichsten,ergebnisreiches,ergebnisreichstes,ergebnisreicher,ergebnisreichster,ergebnisreichste,ergebnisreichen,ergebnisreichem,ergebnisreiche,ergebnisreichere,ergebnisreicherer,ergebnisreicheres,ergebnisreicheren" }, "ergiebig": { "form": "ergiebig", "polarity": "0.0040", "pos": "JJ", "sense": "ergiebiger,ergiebigere,ergiebigen,ergiebigem,ergiebigerem,ergiebiges,ergiebigerer,ergiebigeres,ergiebigeren,ergiebigstes,ergiebigster,ergiebigste,ergiebigsten,ergiebige,ergiebigstem" }, "ergänzen": { "form": "ergänzen", "polarity": "0.2074", "pos": "VB", "sense": "ergänzte,ergänze,ergänzt,ergänzten,ergänzet,ergänzest,ergänztet,ergänztest" }, "erhalten": { "form": "erhalten", "polarity": "0.0040", "pos": "VB", "sense": "erhalte,erhältst,erhält,erhaltet,erhaltest,erhielt,erhieltest,erhieltst,erhielten,erhieltet,erhielte" }, "erhebend": { "form": "erhebend", "polarity": "0.0040", "pos": "JJ", "sense": "erhebendstem,erhebendsten,erhebender,erhebendes,erhebenden,erhebende,erhebendem,erhebendste,erhebendere,erhebenderer,erhebenderes,erhebendster,erhebenderen,erhebenderem,erhebendstes" }, "erheblich": { "form": "erheblich", "polarity": "0.0040", "pos": "JJ", "sense": "erheblichste,erheblicherem,erheblichsten,erhebliche,erheblicheres,erheblicherer,erhebliches,erheblicheren,erheblichstem,erheblichen,erheblichem,erheblichere,erheblichster,erheblicher,erheblichstes" }, "erholen": { "form": "erholen", "polarity": "0.2357", "pos": "VB", "sense": "erholet,erholten,erholtet,erholest,erhole,erholt,erholtest,erholte,erholst" }, "erholsam": { "form": "erholsam", "polarity": "0.2188", "pos": "JJ", "sense": "erholsamem,erholsamste,erholsamere,erholsameres,erholsameren,erholsamerer,erholsamerem,erholsamster,erholsamstes,erholsamsten,erholsamstem,erholsame,erholsamer,erholsames,erholsamen" }, "erhältlich": { "form": "erhältlich", "polarity": "0.0040", "pos": "JJ", "sense": "erhältlichere,erhältliches,erhältlicher,erhältlichstem,erhältlichsten,erhältlichste,erhältlicheres,erhältlicherer,erhältliche,erhältlicheren,erhältlicherem,erhältlichster,erhältlichem,erhältlichstes,erhältlichen" }, "erhöhen": { "form": "erhöhen", "polarity": "0.0040", "pos": "VB", "sense": "erhöhtest,erhöhet,erhöht,erhöhest,erhöhte,erhöhst,erhöhten,erhöhtet,erhöhe" }, "erkennbar": { "form": "erkennbar", "polarity": "0.0040", "pos": "JJ", "sense": "erkennbare,erkennbarste,erkennbarer,erkennbarstes,erkennbares,erkennbarster,erkennbarerer,erkennbareres,erkennbarem,erkennbareren,erkennbarstem,erkennbaren,erkennbarere,erkennbarsten,erkennbarerem" }, "erklimmen": { "form": "erklimmen", "polarity": "0.0040", "pos": "VB", "sense": "erklimme,erklimmst,erklimmt,erklimmest,erklimmet,erklomm,erklommst,erklommen,erklommt,erklömme,erklömmest,erklömmst,erklömmen,erklömmet,erklömmt" }, "erklärt": { "form": "erklärt", "polarity": "0.0040", "pos": "VB", "sense": "erklärte,erklärter,erklärtere,erklärtes,erklärten,erklärtem,erklärteren,erklärterem,erklärteste,erklärterer,erklärteres,erklärtester,erklärtestes,erklärtestem,erklärtesten" }, "erlauben": { "form": "erlauben", "polarity": "0.0040", "pos": "VB", "sense": "erlaubst,erlaubtet,erlaube,erlaubt,erlaubtest,erlaubte,erlaubest,erlaubet,erlaubten" }, "erleichtern": { "form": "erleichtern", "polarity": "0.0040", "pos": "VB", "sense": "erleichterten,erleichterte,erleichterst,erleichtert,erleichtere,erleichteren,erleichtertest,erleichtertet" }, "erleuchten": { "form": "erleuchten", "polarity": "0.0040", "pos": "VB", "sense": "erleuchte,erleuchtest,erleuchtet,erleuchtete,erleuchtetest,erleuchteten,erleuchtetet" }, "erlösen": { "form": "erlösen", "polarity": "0.0040", "pos": "VB", "sense": "erlöset,erlöse,erlöst,erlösten,erlöste,erlöstest,erlöstet,erlösest" }, "ermunternd": { "form": "ermunternd", "polarity": "0.0040", "pos": "JJ", "sense": "ermunternde,ermunterndem,ermunternden,ermunternder,ermunterndes,ermunterndere,ermunternderem,ermunternderen,ermunternderer,ermunternderes,ermunterndste,ermunterndstem,ermunterndsten,ermunterndster,ermunterndstes" }, "ermutigen": { "form": "ermutigen", "polarity": "0.0040", "pos": "VB", "sense": "ermutiget,ermutigst,ermutigest,ermutige,ermutigte,ermutigtet,ermutigt,ermutigtest,ermutigten" }, "ermutigend": { "form": "ermutigend", "polarity": "0.0735", "pos": "JJ", "sense": "ermutigende,ermutigendem,ermutigenden,ermutigender,ermutigendes,ermutigendere,ermutigenderem,ermutigenderen,ermutigenderer,ermutigenderes,ermutigendste,ermutigendstem,ermutigendsten,ermutigendster,ermutigendstes" }, "ermöglichen": { "form": "ermöglichen", "polarity": "0.0040", "pos": "VB", "sense": "ermögliche,ermöglicht,ermöglichst,ermöglichtet,ermöglichte,ermöglichtest,ermöglichet,ermöglichest,ermöglichten" }, "erneuern": { "form": "erneuern", "polarity": "0.0040", "pos": "VB", "sense": "erneuertet,erneuertest,erneuere,erneuert,erneuerst,erneuerte,erneueren,erneuerten" }, "ernsthaft": { "form": "ernsthaft", "polarity": "0.0040", "pos": "JJ", "sense": "ernsthaftem,ernsthaften,ernsthafter,ernsthaftes,ernsthafteres,ernsthafterer,ernsthafterem,ernsthafteren,ernsthaftester,ernsthaftestes,ernsthaftesten,ernsthafteste,ernsthafte,ernsthaftestem,ernsthaftere" }, "erreichen": { "form": "erreichen", "polarity": "0.0040", "pos": "VB", "sense": "erreichten,erreichst,erreichte,erreichtet,erreichest,erreichet,erreiche,erreicht,erreichtest" }, "erschaffen": { "form": "erschaffen", "polarity": "0.0040", "pos": "VB", "sense": "erschaffe,erschaffst,erschafft,erschaffest,erschaffet,erschuf,erschufst,erschufen,erschüfe,erschüfest,erschüfst,erschüfen,erschüfet,erschüft" }, "erschlossen": { "form": "erschlossen", "polarity": "0.0040", "pos": "JJ", "sense": "erschlossene,erschlossenem,erschlossenen,erschlossener,erschlossenes" }, "ersprießlich": { "form": "ersprießlich", "polarity": "0.0040", "pos": "JJ", "sense": "ersprießlicher,ersprießliches,ersprießlichere,ersprießlichste,ersprießlichem,ersprießlichen,ersprießlicherer,ersprießlicheren,ersprießlicherem,ersprießlichstem,ersprießlichsten,ersprießliche,ersprießlichster,ersprießlichstes,ersprießlicheres" }, "erstaunen": { "form": "erstaunen", "polarity": "0.0040", "pos": "VB", "sense": "erstaunten,erstaunte,erstaunst,erstaunet,erstauntet,erstauntest,erstaunt,erstaune,erstaunest" }, "erstaunlich": { "form": "erstaunlich", "polarity": "0.0040", "pos": "JJ", "sense": "erstaunlichste,erstaunlichere,erstaunlicheren,erstaunliches,erstaunlichstem,erstaunlicher,erstaunlicherem,erstaunlichstes,erstaunlichem,erstaunlichster,erstaunlichen,erstaunlicheres,erstaunlichsten,erstaunliche,erstaunlicherer" }, "erstklassig": { "form": "erstklassig", "polarity": "0.1967", "pos": "JJ", "sense": "erstklassige,erstklassigste,erstklassigeres,erstklassiges,erstklassigerer,erstklassigstem,erstklassigsten,erstklassiger,erstklassigster,erstklassigem,erstklassigstes,erstklassigen,erstklassigere,erstklassigeren,erstklassigerem" }, "erstrangig": { "form": "erstrangig", "polarity": "0.0040", "pos": "JJ", "sense": "erstrangigste,erstrangigstes,erstrangigster,erstrangiger,erstrangiges,erstrangige,erstrangigem,erstrangigere,erstrangigen,erstrangigeren,erstrangigerem,erstrangigsten,erstrangigeres,erstrangigerer,erstrangigstem" }, "erstrebenswert": { "form": "erstrebenswert", "polarity": "0.0765", "pos": "JJ", "sense": "erstrebenswerten,erstrebenswerteres,erstrebenswertem,erstrebenswerter,erstrebenswertes,erstrebenswertestem,erstrebenswertesten,erstrebenswerterer,erstrebenswertester,erstrebenswertestes,erstrebenswerteste,erstrebenswerte,erstrebenswerteren,erstrebenswerterem,erstrebenswertere" }, "ertragreich": { "form": "ertragreich", "polarity": "0.0040", "pos": "JJ", "sense": "ertragreichere,ertragreichstem,ertragreichem,ertragreichen,ertragreicherem,ertragreichsten,ertragreicher,ertragreiches,ertragreichster,ertragreichstes,ertragreiche,ertragreicheres,ertragreicherer,ertragreicheren,ertragreichste" }, "erweitern": { "form": "erweitern", "polarity": "0.0040", "pos": "VB", "sense": "erweitere,erweiterten,erweiteren,erweiterst,erweitertest,erweitertet,erweiterte,erweitert" }, "erweitert": { "form": "erweitert", "polarity": "0.0040", "pos": "JJ", "sense": "erweiterte,erweitertem,erweiterten,erweiterter,erweitertes,erweitertere,erweiterterem,erweiterteren,erweiterterer,erweiterteres,erweitertste,erweitertstem,erweitertsten,erweitertster,erweitertstes" }, "erwünscht": { "form": "erwünscht", "polarity": "0.0040", "pos": "JJ", "sense": "erwünschtesten,erwünschtestem,erwünschten,erwünschtem,erwünschte,erwünschterer,erwünschteres,erwünschtes,erwünschter,erwünschteste,erwünschtestes,erwünschtester,erwünschteren,erwünschtere,erwünschterem" }, "erzeugen": { "form": "erzeugen", "polarity": "0.0040", "pos": "VB", "sense": "erzeuge,erzeugten,erzeuget,erzeugtest,erzeugest,erzeugte,erzeugst,erzeugt,erzeugtet" }, "erzielen": { "form": "erzielen", "polarity": "0.0040", "pos": "VB", "sense": "erzielst,erzielte,erzielest,erziele,erzielt,erzieltest,erzielten,erzielet,erzieltet" }, "etabliert": { "form": "etabliert", "polarity": "0.0040", "pos": "JJ", "sense": "etablierteste,etablierterem,etabliertere,etabliertestes,etabliertester,etabliertem,etablierten,etablierte,etablierter,etablierteren,etabliertes,etablierterer,etablierteres,etabliertesten,etabliertestem" }, "euphorisch": { "form": "euphorisch", "polarity": "0.5505", "pos": "JJ", "sense": "euphorischerem,euphorische,euphorisches,euphorischstes,euphorischster,euphorischste,euphorischeres,euphorischstem,euphorischerer,euphorischem,euphorischen,euphorischere,euphorischeren,euphorischsten,euphorischer" }, "exakt": { "form": "exakt", "polarity": "0.0040", "pos": "JJ", "sense": "exaktere,exakterer,exaktem,exakteres,exakte,exaktes,exakter,exakteste,exaktestem,exakterem,exakten,exakteren,exaktester,exaktestes,exaktesten" }, "exklusiv": { "form": "exklusiv", "polarity": "0.0040", "pos": "JJ", "sense": "exklusivstem,exklusivsten,exklusivster,exklusivstes,exklusivem,exklusiven,exklusives,exklusiver,exklusivste,exklusiverem,exklusiveren,exklusive,exklusiveres,exklusivere,exklusiverer" }, "exorbitant": { "form": "exorbitant", "polarity": "0.0040", "pos": "JJ", "sense": "exorbitante,exorbitanteres,exorbitantestem,exorbitantesten,exorbitanterer,exorbitanter,exorbitantere,exorbitantes,exorbitantem,exorbitanten,exorbitanteren,exorbitanterem,exorbitanteste,exorbitantestes,exorbitantester" }, "exotisch": { "form": "exotisch", "polarity": "0.1944", "pos": "JJ", "sense": "exotischste,exotische,exotischerer,exotischem,exotischeres,exotischer,exotisches,exotischstem,exotischsten,exotischstes,exotischen,exotischster,exotischere,exotischerem,exotischeren" }, "explosiv": { "form": "explosiv", "polarity": "0.0040", "pos": "JJ", "sense": "explosive,explosivstes,explosiver,explosivster,explosives,explosiven,explosiverer,explosivsten,explosivem,explosiveres,explosivstem,explosivere,explosiveren,explosiverem,explosivste" }, "exponiert": { "form": "exponiert", "polarity": "0.0040", "pos": "VB", "sense": "exponierte,exponierteren,exponierteres,exponierterer,exponiertes,exponiertere,exponierteste,exponiertester,exponierterem,exponiertestes,exponiertestem,exponiertesten,exponiertem,exponierten,exponierter" }, "exquisit": { "form": "exquisit", "polarity": "0.0040", "pos": "JJ", "sense": "exquisiteste,exquisite,exquisitere,exquisitestes,exquisitem,exquisiten,exquisiterer,exquisiter,exquisiteres,exquisites,exquisitestem,exquisitesten,exquisiteren,exquisitester,exquisiterem" }, "extravagant": { "form": "extravagant", "polarity": "0.0040", "pos": "JJ", "sense": "extravagante,extravaganteste,extravaganterem,extravaganteren,extravaganteres,extravagantere,extravaganterer,extravagantestes,extravaganten,extravagantester,extravagantem,extravagantestem,extravaganter,extravagantesten,extravagantes" }, "exzellent": { "form": "exzellent", "polarity": "0.4198", "pos": "JJ", "sense": "exzellentere,exzellenterem,exzellenteren,exzellenterer,exzellenteres,exzellente,exzellentesten,exzellenteste,exzellentestem,exzellentester,exzellentestes,exzellenten,exzellentem,exzellentes,exzellenter" }, "fabelhaft": { "form": "fabelhaft", "polarity": "0.1952", "pos": "JJ", "sense": "fabelhafteste,fabelhafterer,fabelhaftestes,fabelhaftester,fabelhafte,fabelhafteren,fabelhaftestem,fabelhaftem,fabelhafterem,fabelhaften,fabelhaftesten,fabelhaftes,fabelhafter,fabelhafteres,fabelhaftere" }, "fair": { "form": "fair", "polarity": "0.3281", "pos": "JJ", "sense": "fairen,fairem,fairster,fairstes,fairste,fairerem,faireren,fairstem,fairerer,fairsten,faireres,fairere,faires,fairer,faire" }, "famos": { "form": "famos", "polarity": "0.2018", "pos": "JJ", "sense": "famoserem,famoses,famoseste,famoser,famoseren,famosere,famose,famosestem,famosesten,famosester,famosestes,famosem,famoseres,famosen,famoserer" }, "fantasievoll": { "form": "fantasievoll", "polarity": "0.0040", "pos": "JJ", "sense": "fantasievolle,fantasievolleren,fantasievollerem,fantasievoller,fantasievollsten,fantasievollstem,fantasievolles,fantasievollstes,fantasievollen,fantasievollster,fantasievollem,fantasievolleres,fantasievollerer,fantasievollere,fantasievollste" }, "fantastisch": { "form": "fantastisch", "polarity": "0.3319", "pos": "JJ", "sense": "fantastische,fantastischem,fantastischen,fantastischer,fantastisches,fantastischere,fantastischerem,fantastischeren,fantastischerer,fantastischeres,fantastischste,fantastischstem,fantastischsten,fantastischster,fantastischstes" }, "faszinieren": { "form": "faszinieren", "polarity": "0.0663", "pos": "VB", "sense": "fasziniere,fasziniert,fasziniertet,faszinierst,faszinierte,faszinierten,faszinieret,fasziniertest,faszinierest" }, "faszinierend": { "form": "faszinierend", "polarity": "0.3037", "pos": "JJ", "sense": "faszinierende,faszinierendem,faszinierenden,faszinierender,faszinierendes,faszinierendere,faszinierenderem,faszinierenderen,faszinierenderer,faszinierenderes,faszinierendste,faszinierendstem,faszinierendsten,faszinierendster,faszinierendstes" }, "favorisieren": { "form": "favorisieren", "polarity": "0.0040", "pos": "VB", "sense": "favorisierst,favorisieret,favorisier,favorisierte,favorisiertet,favorisierest,favorisiere,favorisierten,favorisiert" }, "fehlerfrei": { "form": "fehlerfrei", "polarity": "0.0040", "pos": "JJ", "sense": "fehlerfreistes,fehlerfreister,fehlerfreiste,fehlerfreie,fehlerfreiere,fehlerfreiest,fehlerfreisten,fehlerfreistem,fehlerfreiesten,fehlerfreiestem,fehlerfreiestes,fehlerfreiem,fehlerfreien,fehlerfreierem,fehlerfreies,fehlerfreiester,fehlerfreier,fehlerfreieren,fehlerfreieres,fehlerfreierer,fehlerfreieste" }, "feiern": { "form": "feiern", "polarity": "0.494", "pos": "VB", "sense": "gefeiert,feiert,feiertest,feiere,feiertet,feierest,feieret,feierte,feierten,feieren,feierst" }, "fein": { "form": "fein", "polarity": "0.4734", "pos": "JJ", "sense": "feinem,feinen,feinsten,feinstem,feinstes,feinster,feine,feinere,feinerem,feinste,feineren,feines,feiner,feinerer,feineres" }, "fertig": { "form": "fertig", "polarity": "0.3757", "pos": "JJ", "sense": "fertigstes,fertigster,fertigstem,fertigsten,fertigeres,fertigem,fertigerer,fertigere,fertige,fertiger,fertigste,fertiges,fertigen,fertigerem,fertigeren" }, "fertigen": { "form": "fertigen", "polarity": "0.0040", "pos": "VB", "sense": "fertigten,fertigest,fertige,fertigt,fertigtest,fertiget,gefertigt,fertigtet,fertigte,fertigst" }, "fesch": { "form": "fesch", "polarity": "0.0806", "pos": "JJ", "sense": "feschen,feschem,feschester,feschere,fescherem,fesches,feschestes,fescher,fescheren,feschesten,feschestem,feschstes,fescheste,feschste,fescherer,fesche,feschster,feschst,feschsten,feschstem,fescheres" }, "fesselnd": { "form": "fesselnd", "polarity": "0.0040", "pos": "JJ", "sense": "fesselnde,fesselndem,fesselnden,fesselnder,fesselndes,fesselndere,fesselnderem,fesselnderen,fesselnderer,fesselnderes,fesselndste,fesselndstem,fesselndsten,fesselndster,fesselndstes" }, "festlich": { "form": "festlich", "polarity": "0.2021", "pos": "JJ", "sense": "festlicher,festlichere,festlicherem,festlichen,festlichem,festlichstes,festlichster,festlicheren,festlicheres,festlicherer,festlichstem,festlichsten,festliche,festliches,festlichste" }, "fidel": { "form": "fidel", "polarity": "0.0040", "pos": "JJ", "sense": "fidelerem,fideleren,fidelste,fidelere,fidelster,fideleres,fidelstes,fidelerer,fidelsten,fidelstem,fidele,fidelen,fidelem,fideles,fideler" }, "finanzieren": { "form": "finanzieren", "polarity": "0.0040", "pos": "VB", "sense": "fasziniere,faszinierst,fasziniert,faszinierest,faszinieret,faszinierte,fasziniertest,faszinierten,fasziniertet" }, "findig": { "form": "findig", "polarity": "0.0040", "pos": "JJ", "sense": "findigem,findigerem,findigeren,findige,findigerer,findigere,findigste,findigstem,findigsten,findigeres,findigstes,findigster,findiges,findiger,findigen" }, "fit": { "form": "fit", "polarity": "0.3686", "pos": "JJ", "sense": "fitte,fittem,fitten,fitter,fittes,fittere,fitterem,fitteren,fitterer,fitteres,fitteste,fittestem,fittesten,fittester,fittestes" }, "fleißig": { "form": "fleißig", "polarity": "0.3571", "pos": "JJ", "sense": "fleißigste,fleißige,fleißigem,fleißigstes,fleißigster,fleißiges,fleißiger,fleißigere,fleißigen,fleißigerer,fleißigeres,fleißigeren,fleißigstem,fleißigsten,fleißigerem" }, "flexibel": { "form": "flexibel", "polarity": "0.0040", "pos": "JJ", "sense": "flexiblen,flexiblem,flexibler,flexiblerem,flexibles,flexible,flexiblere,flexibelstes,flexibelste,flexibleren,flexibelster,flexibleres,flexiblerer,flexibelstem,flexibelsten" }, "flink": { "form": "flink", "polarity": "0.0878", "pos": "JJ", "sense": "flinkeren,flinkem,flinken,flinkerem,flinke,flinkes,flinker,flinkstes,flinkster,flinkste,flinkerer,flinkstem,flinkere,flinkeres,flinksten" }, "florieren": { "form": "florieren", "polarity": "0.0040", "pos": "VB", "sense": "florierte,florierst,florierest,floriertet,florierten,floriert,florieret,floriertest,floriere" }, "flott": { "form": "flott", "polarity": "0.3394", "pos": "JJ", "sense": "flotte,flotteste,flotterem,flotteren,flotten,flotterer,flottem,flottester,flotter,flottestes,flottes,flotteres,flottesten,flottestem,flottere" }, "flüssig": { "form": "flüssig", "polarity": "0.2229", "pos": "JJ", "sense": "flüssigere,flüssigste,flüssige,flüssigster,flüssiges,flüssigstes,flüssiger,flüssigen,flüssigerer,flüssigem,flüssigeres,flüssigeren,flüssigstem,flüssigsten,flüssigerem" }, "formvollendet": { "form": "formvollendet", "polarity": "0.0040", "pos": "JJ", "sense": "formvollendetstes,formvollendeteres,formvollendetster,formvollendetem,formvollendeten,formvollendetstem,formvollendetsten,formvollendeter,formvollendeterer,formvollendetes,formvollendeterem,formvollendeteren,formvollendetste,formvollendetere,formvollendete" }, "fortdauernd": { "form": "fortdauernd", "polarity": "0.0040", "pos": "JJ", "sense": "fortdauernde,fortdauerndem,fortdauernden,fortdauernder,fortdauerndes,fortdauerndere,fortdauernderem,fortdauernderen,fortdauernderer,fortdauernderes,fortdauerndste,fortdauerndstem,fortdauerndsten,fortdauerndster,fortdauerndstes" }, "fortschreiten": { "form": "fortschreiten", "polarity": "0.0040", "pos": "VB", "sense": "fortschreite,fortschreitest,fortschreitet,fortschritt,fortschrittest,fortschritten,fortschrittet,fortschritte,fortgeschritten" }, "frei": { "form": "frei", "polarity": "0.0040", "pos": "JJ", "sense": "freiestem,freiesten,freiste,freistem,freisten,freistes,freister,freieres,freiere,freierer,freieste,freiest,freier,freieren,freiester,freierem,freies,freien,freiestes,freiem,freie" }, "freikommen": { "form": "freikommen", "polarity": "0.0040", "pos": "VB", "sense": "freikomme,freikommst,freikommt,freikommest,freikommet,freikam,freikamst,freikamen,freikamt,freikäme,freikämest,freikämst,freikämen,freikämet,freikämt,freigekommen" }, "freisprechen": { "form": "freisprechen", "polarity": "0.0040", "pos": "VB", "sense": "freispreche,freisprichst,freispricht,freisprecht,freisprechest,freisprechet,freisprach,freisprachst,freisprachen,freispracht,freispräche,freisprächest,freisprächst,freisprächen,freisprächet,freisprächt" }, "freiwillig": { "form": "freiwillig", "polarity": "0.0040", "pos": "JJ", "sense": "freiwilligste,freiwilligere,freiwilligster,freiwilligstes,freiwilligeren,freiwilligerem,freiwilligsten,freiwilligstem,freiwillige,freiwilliger,freiwilliges,freiwilligem,freiwilligeres,freiwilligen,freiwilligerer" }, "freudig": { "form": "freudig", "polarity": "0.3256", "pos": "JJ", "sense": "freudigstem,freudigere,freudigste,freudigeren,freudigerem,freudigen,freudigem,freudiger,freudige,freudigeres,freudiges,freudigerer,freudigster,freudigstes,freudigsten" }, "freuen": { "form": "freuen", "polarity": "0.2198", "pos": "VB", "sense": "freute,freust,freutest,freut,freue,freuet,freuten,freuest,freutet,gefreut" }, "freundlich": { "form": "freundlich", "polarity": "0.6022", "pos": "JJ", "sense": "freundlichsten,freundlichstem,freundlicheren,freundlichen,freundlicherem,freundlichem,freundlicheres,freundlicherer,freundlichere,freundlicher,freundliche,freundlichster,freundlichste,freundlichstes,freundliches" }, "freundschaftlich": { "form": "freundschaftlich", "polarity": "0.0040", "pos": "JJ", "sense": "freundschaftlichste,freundschaftliche,freundschaftlicherer,freundschaftlicheres,freundschaftlicheren,freundschaftlicherem,freundschaftlichem,freundschaftlichsten,freundschaftlichstem,freundschaftlichen,freundschaftlichere,freundschaftlicher,freundschaftliches,freundschaftlichstes,freundschaftlichster" }, "friedlich": { "form": "friedlich", "polarity": "0.0924", "pos": "JJ", "sense": "friedlichsten,friedliches,friedlicherem,friedliche,friedlichster,friedlichste,friedlichstes,friedlicheren,friedlicher,friedlicheres,friedlicherer,friedlichem,friedlichen,friedlichere,friedlichstem" }, "friedvoll": { "form": "friedvoll", "polarity": "0.0908", "pos": "JJ", "sense": "friedvolle,friedvollem,friedvollen,friedvoller,friedvolles,friedvollere,friedvollerem,friedvolleren,friedvollerer,friedvolleres,friedvollste,friedvollstem,friedvollsten,friedvollster,friedvollstes" }, "froh": { "form": "froh", "polarity": "0.1364", "pos": "JJ", "sense": "froher,frohes,froheres,frohster,frohstes,frohe,frohere,frohste,frohstem,frohsten,froheren,froherem,frohem,froherer,frohen" }, "frohlocken": { "form": "frohlocken", "polarity": "0.0040", "pos": "VB", "sense": "frohlocktest,frohlocke,frohlockt,frohlockte,frohlocket,frohlock,frohlockten,frohlockest,frohlocktet,gefrohlockt" }, "fruchtbar": { "form": "fruchtbar", "polarity": "0.0878", "pos": "JJ", "sense": "fruchtbarster,fruchtbarste,fruchtbarstes,fruchtbarsten,fruchtbarere,fruchtbarstem,fruchtbaren,fruchtbarerer,fruchtbarem,fruchtbarerem,fruchtbare,fruchtbareren,fruchtbarer,fruchtbares,fruchtbareres" }, "fröhlich": { "form": "fröhlich", "polarity": "0.2501", "pos": "JJ", "sense": "fröhlichen,fröhlichere,fröhlicherer,fröhlichem,fröhlicheres,fröhlichstes,fröhliche,fröhlichster,fröhlicher,fröhlichstem,fröhlichsten,fröhliches,fröhlicheren,fröhlicherem,fröhlichste" }, "fulminant": { "form": "fulminant", "polarity": "0.0040", "pos": "JJ", "sense": "fulminantestem,fulminantesten,fulminanteren,fulminanteres,fulminanterer,fulminantes,fulminante,fulminanterem,fulminanter,fulminanteste,fulminanten,fulminantem,fulminantestes,fulminantere,fulminantester" }, "funkeln": { "form": "funkeln", "polarity": "0.0040", "pos": "VB", "sense": "funkele,funkle,funkelst,funkelt,funklest,funklet,funkelte,funkeltest,funkelten,funkeltet,gefunkelt" }, "funktionieren": { "form": "funktionieren", "polarity": "0.0040", "pos": "VB", "sense": "funktionierest,funktioniertet,funktionieret,funktioniere,funktioniert,funktionierten,funktionierst,funktionierte,funktioniertest" }, "funktionierend": { "form": "funktionierend", "polarity": "0.2022", "pos": "JJ", "sense": "funktionierende,funktionierendem,funktionierenden,funktionierender,funktionierendes,funktionierendere,funktionierenderem,funktionierenderen,funktionierenderer,funktionierenderes,funktionierendste,funktionierendstem,funktionierendsten,funktionierendster,funktionierendstes" }, "funktionsfähig": { "form": "funktionsfähig", "polarity": "0.0040", "pos": "JJ", "sense": "funktionsfähigen,funktionsfähigste,funktionsfähigem,funktionsfähige,funktionsfähigsten,funktionsfähigeres,funktionsfähigstem,funktionsfähigster,funktionsfähigerer,funktionsfähigstes,funktionsfähigere,funktionsfähigerem,funktionsfähigeren,funktionsfähiger,funktionsfähiges" }, "furchtlos": { "form": "furchtlos", "polarity": "0.0040", "pos": "JJ", "sense": "furchtlosesten,furchtlosestem,furchtlosester,furchtlose,furchtloses,furchtloser,furchtlosere,furchtloseste,furchtlosestes,furchtlosem,furchtloserer,furchtlosen,furchtloseres,furchtloserem,furchtloseren" }, "fähig": { "form": "fähig", "polarity": "0.0040", "pos": "JJ", "sense": "fähigeres,fähigerer,fähige,fähigem,fähigen,fähiges,fähiger,fähigstes,fähigster,fähigste,fähigere,fähigsten,fähigstem,fähigerem,fähigeren" }, "fördern": { "form": "fördern", "polarity": "0.0040", "pos": "VB", "sense": "gefördert,förderten,förderst,förderen,fördert,fördere,förderte,fördertet,fördertest" }, "führen": { "form": "führen", "polarity": "0.0040", "pos": "VB", "sense": "führtest,führten,führt,führe,führte,führst,führet,führtet,führest,geführt" }, "führend": { "form": "führend", "polarity": "0.0040", "pos": "JJ", "sense": "führendstem,führendsten,führende,führenderes,führenderer,führendster,führendstes,führenderem,führendste,führenderen,führender,führendes,führenden,führendere,führendem" }, "füllen": { "form": "füllen", "polarity": "0.0040", "pos": "VB", "sense": "füllten,füllte,füllest,füllt,fülle,füllst,fülltet,füllet,fülltest,gefüllt" }, "galant": { "form": "galant", "polarity": "0.0040", "pos": "JJ", "sense": "galanteren,galanterem,galanter,galanterer,galantes,galantestem,galante,galantesten,galanteste,galantestes,galantester,galantere,galanteres,galanten,galantem" }, "garantiert": { "form": "garantiert", "polarity": "0.0040", "pos": "JJ", "sense": "garantierteres,garantierterer,garantiertere,garantierteren,garantierterem,garantiertes,garantierter,garantiertsten,garantiertstem,garantiertster,garantiertem,garantierte,garantiertste,garantiertstes,garantierten" }, "gastfreundlich": { "form": "gastfreundlich", "polarity": "0.0854", "pos": "JJ", "sense": "gastfreundlichen,gastfreundlichere,gastfreundlicher,gastfreundliches,gastfreundlichstem,gastfreundlichsten,gastfreundliche,gastfreundlichste,gastfreundlichster,gastfreundlichem,gastfreundlichstes,gastfreundlicheres,gastfreundlicherer,gastfreundlicheren,gastfreundlicherem" }, "gedeihen": { "form": "gedeihen", "polarity": "0.2166", "pos": "VB", "sense": "gedeihe,gedeihst,gedeiht,gedeihest,gedeihet,gedieh,gediehst,gediehen,gedieht,gediehe,gediehest,gediehet" }, "gedeihlich": { "form": "gedeihlich", "polarity": "0.0040", "pos": "JJ", "sense": "gedeihlichere,gedeihlicher,gedeihliches,gedeihlichem,gedeihlicheren,gedeihlichen,gedeihliche,gedeihlicherem,gedeihlichster,gedeihlicherer,gedeihlichstes,gedeihlicheres,gedeihlichste,gedeihlichsten,gedeihlichstem" }, "gediegen": { "form": "gediegen", "polarity": "0.0831", "pos": "JJ", "sense": "gediegensten,gediegenerem,gediegnere,gediegenstes,gediegenster,gediegeneren,gediegenerer,gediegnerer,gediegeneres,gediegneres,gediegenstem,gediegenere,gediegenste,gediegneren,gediegnerem,gediegene,gediegenem,gediegenen,gediegener,gediegenes,gediegner" }, "geduldig": { "form": "geduldig", "polarity": "0.3342", "pos": "JJ", "sense": "geduldigere,geduldigerer,geduldigerem,geduldigeren,geduldigstem,geduldigsten,geduldigste,geduldige,geduldiger,geduldiges,geduldigem,geduldigstes,geduldigen,geduldigster,geduldigeres" }, "geeignet": { "form": "geeignet", "polarity": "0.0974", "pos": "JJ", "sense": "geeignetem,geeignete,geeigneten,geeigneter,geeignetes,geeignetste,geeignetere,geeigneterem,geeigneteren,geeignetsten,geeigneterer,geeignetstem,geeigneteres,geeignetstes,geeignetster" }, "gefallen": { "form": "gefallen", "polarity": "0.2578", "pos": "VB", "sense": "gefalle,gefällst,gefällt,gefallt,gefallest,gefallet,gefiel,gefielst,gefielen,gefielt,gefielest,gefiele,gefielet" }, "gefeiert": { "form": "gefeiert", "polarity": "0.3403", "pos": "JJ", "sense": "gefeierterem,gefeierteren,gefeierteres,gefeierterer,gefeiertester,gefeiertestes,gefeierteste,gefeierte,gefeiertes,gefeierter,gefeiertestem,gefeierten,gefeiertere,gefeiertem,gefeiertesten" }, "gefesselt": { "form": "gefesselt", "polarity": "0.0040", "pos": "JJ", "sense": "gefesselte,gefesseltem,gefesselten,gefesselter,gefesseltes,gefesseltere,gefesselterem,gefesselteren,gefesselterer,gefesselteres,gefesseltste,gefesseltstem,gefesseltsten,gefesseltster,gefesseltstes" }, "gefestigt": { "form": "gefestigt", "polarity": "0.0040", "pos": "JJ", "sense": "gefestigtstes,gefestigtster,gefestigteren,gefestigterem,gefestigtsten,gefestigte,gefestigtstem,gefestigten,gefestigtste,gefestigtem,gefestigtes,gefestigter,gefestigterer,gefestigteres,gefestigtere" }, "gefragt": { "form": "gefragt", "polarity": "0.0040", "pos": "JJ", "sense": "gefragte,gefragtes,gefragtestes,gefragter,gefragtere,gefragteren,gefragterem,gefragteste,gefragteres,gefragterer,gefragtestem,gefragtesten,gefragtester,gefragten,gefragtem" }, "geglückt": { "form": "geglückt", "polarity": "0.0040", "pos": "JJ", "sense": "geglückte,geglücktem,geglückten,geglückter,geglücktes,geglücktere,geglückterem,geglückteren,geglückterer,geglückteres,geglücktste,geglücktstem,geglücktsten,geglücktster,geglücktstes" }, "gehorsam": { "form": "gehorsam", "polarity": "0.0040", "pos": "JJ", "sense": "gehorsamster,gehorsamste,gehorsamstes,gehorsames,gehorsamerem,gehorsameren,gehorsame,gehorsameres,gehorsamerer,gehorsamere,gehorsamstem,gehorsamer,gehorsamem,gehorsamsten,gehorsamen" }, "gehörig": { "form": "gehörig", "polarity": "0.0040", "pos": "JJ", "sense": "gehörigere,gehörigem,gehörigen,gehörigstes,gehörigster,gehörigsten,gehörigerer,gehörigste,gehörige,gehörigeres,gehörigstem,gehörigerem,gehöriges,gehöriger,gehörigeren" }, "geil": { "form": "geil", "polarity": "0.0040", "pos": "JJ", "sense": "geilerer,geiles,geiler,geilen,geilem,geileres,geilster,geileren,geilstem,geilsten,geilerem,geilste,geilstes,geilere,geile" }, "gelassen": { "form": "gelassen", "polarity": "0.2325", "pos": "JJ", "sense": "gelassener,gelasseneren,gelassneres,gelassnerer,gelassenerem,gelassenes,gelassenerer,gelasseneres,gelassneren,gelassnerem,gelassenste,gelassenen,gelassenem,gelassenstem,gelassensten,gelassnere,gelassner,gelassene,gelassenere,gelassenster,gelassenstes" }, "geliebt": { "form": "geliebt", "polarity": "0.2315", "pos": "JJ", "sense": "geliebtestes,geliebte,geliebtestem,geliebtesten,geliebtester,geliebtere,geliebteste,geliebten,geliebtem,geliebteren,geliebtes,geliebter,geliebterem,geliebteres,geliebterer" }, "gelohnt": { "form": "gelohnt", "polarity": "0.5859", "pos": "JJ", "sense": "" }, "gelungen": { "form": "gelungen", "polarity": "1.0", "pos": "JJ", "sense": "gelungnerem,gelungenster,gelungneren,gelungensten,gelungeneren,gelungenerem,gelungenstem,gelungneres,gelungene,gelungnerer,gelungenstes,gelungenere,gelungenen,gelungenste,gelungenem,gelungener,gelungenes,gelungenerer,gelungnere,gelungeneres,gelungner" }, "gemeinsam": { "form": "gemeinsam", "polarity": "0.0040", "pos": "JJ", "sense": "gemeinsamere,gemeinsamstem,gemeinsamsten,gemeinsamen,gemeinsamem,gemeinsames,gemeinsamstes,gemeinsame,gemeinsamster,gemeinsamer,gemeinsamste,gemeinsamerem,gemeinsameren,gemeinsameres,gemeinsamerer" }, "gemeinschaftlich": { "form": "gemeinschaftlich", "polarity": "0.0040", "pos": "JJ", "sense": "gemeinschaftlichem,gemeinschaftlichen,gemeinschaftlichstem,gemeinschaftlichsten,gemeinschaftlichste,gemeinschaftliches,gemeinschaftlicherer,gemeinschaftlicher,gemeinschaftlicheres,gemeinschaftliche,gemeinschaftlicherem,gemeinschaftlicheren,gemeinschaftlichere,gemeinschaftlichstes,gemeinschaftlichster" }, "gemütlich": { "form": "gemütlich", "polarity": "0.368", "pos": "JJ", "sense": "gemütlicherer,gemütliche,gemütlichere,gemütlicheres,gemütlicherem,gemütlicheren,gemütlichstes,gemütlichster,gemütlichen,gemütlichem,gemütliches,gemütlichstem,gemütlichsten,gemütlicher,gemütlichste" }, "genau": { "form": "genau", "polarity": "0.0040", "pos": "JJ", "sense": "genauester,genauestem,genauesten,genaueren,genauem,genauerem,genauen,genaueres,genauerer,genaustes,genaueste,genauster,genauere,genaust,genaustem,genausten,genaue,genaues,genauer,genauste,genauestes" }, "genehm": { "form": "genehm", "polarity": "0.0040", "pos": "JJ", "sense": "genehmer,genehmerem,genehmster,genehmem,genehmstes,genehmen,genehmsten,genehme,genehmes,genehmstem,genehmere,genehmste,genehmeres,genehmerer,genehmeren" }, "genehmigen": { "form": "genehmigen", "polarity": "0.0040", "pos": "VB", "sense": "genehmigte,genehmiget,genehmige,genehmigt,genehmigten,genehmigtet,genehmigest,genehmig,genehmigtest" }, "genesen": { "form": "genesen", "polarity": "0.0040", "pos": "VB", "sense": "genese,genest,genesest,genas,genasest,genast,genasen,genäse,genäsest,genäsen,genäset" }, "genial": { "form": "genial", "polarity": "0.2156", "pos": "JJ", "sense": "genialster,genialstes,geniale,geniales,genialer,genialste,genialeren,genialem,genialen,genialerem,genialerer,genialeres,genialere,genialsten,genialstem" }, "genießbar": { "form": "genießbar", "polarity": "0.0040", "pos": "JJ", "sense": "genießbare,genießbarer,genießbarstem,genießbarsten,genießbares,genießbarste,genießbarem,genießbarerer,genießbaren,genießbareres,genießbarster,genießbarstes,genießbareren,genießbarerem,genießbarere" }, "genießen": { "form": "genießen", "polarity": "0.4983", "pos": "VB", "sense": "genieße,genießt,genießest,genießet,genoss,genoß,genossest,genosst,genoßt,genossen,genösse,genössest,genössen,genösset" }, "genügend": { "form": "genügend", "polarity": "0.1019", "pos": "JJ", "sense": "genügende,genügendem,genügenden,genügender,genügendes" }, "geordnet": { "form": "geordnet", "polarity": "0.0936", "pos": "JJ", "sense": "geordnete,geordnetem,geordneten,geordneter,geordnetes,geordnetere,geordneterem,geordneteren,geordneterer,geordneteres,geordnetste,geordnetstem,geordnetsten,geordnetster,geordnetstes" }, "gepflegt": { "form": "gepflegt", "polarity": "0.3499", "pos": "JJ", "sense": "gepflegtester,gepflegtestes,gepflegtere,gepflegteste,gepflegterem,gepflegte,gepflegtestem,gepflegtesten,gepflegter,gepflegteres,gepflegterer,gepflegten,gepflegtem,gepflegteren,gepflegtes" }, "gerecht": { "form": "gerecht", "polarity": "0.0040", "pos": "JJ", "sense": "gerechter,gerechtes,gerechteres,gerechterer,gerechtestem,gerechtesten,gerechtere,gerechteren,gerechterem,gerechtester,gerechtestes,gerechtem,gerechten,gerechte,gerechteste" }, "gerechtfertigt": { "form": "gerechtfertigt", "polarity": "0.0040", "pos": "JJ", "sense": "gerechtfertigtem,gerechtfertigteren,gerechtfertigtst,gerechtfertigterem,gerechtfertigtere,gerechtfertigtster,gerechtfertigtstes,gerechtfertigtstem,gerechtfertigtsten,gerechtfertigtste,gerechtfertigteres,gerechtfertigtes,gerechtfertigter,gerechtfertigte,gerechtfertigterer,gerechtfertigten" }, "geruhsam": { "form": "geruhsam", "polarity": "0.0769", "pos": "JJ", "sense": "geruhsamer,geruhsamerem,geruhsamste,geruhsamster,geruhsamere,geruhsamstes,geruhsameren,geruhsames,geruhsamen,geruhsamem,geruhsamstem,geruhsamsten,geruhsame,geruhsamerer,geruhsameres" }, "geräumig": { "form": "geräumig", "polarity": "0.1008", "pos": "JJ", "sense": "geräumiger,geräumigeres,geräumigstem,geräumigerer,geräumigste,geräumige,geräumiges,geräumigere,geräumigsten,geräumigeren,geräumigen,geräumigem,geräumigerem,geräumigster,geräumigstes" }, "gerührt": { "form": "gerührt", "polarity": "0.446", "pos": "JJ", "sense": "gerührten,gerührtere,gerührtem,gerührter,gerührteste,gerührtesten,gerührtestem,gerührte,gerührteres,gerührterer,gerührtestes,gerührtester,gerührteren,gerührterem,gerührtes" }, "geschickt": { "form": "geschickt", "polarity": "0.0040", "pos": "JJ", "sense": "geschickter,geschickterer,geschicktes,geschickteren,geschickterem,geschickte,geschicktester,geschicktestes,geschickten,geschickteste,geschicktestem,geschicktesten,geschicktem,geschicktere,geschickteres" }, "geschmackvoll": { "form": "geschmackvoll", "polarity": "0.2116", "pos": "JJ", "sense": "geschmackvollere,geschmackvolleren,geschmackvolles,geschmackvoller,geschmackvollerem,geschmackvollen,geschmackvollster,geschmackvollste,geschmackvollem,geschmackvollstes,geschmackvolle,geschmackvollsten,geschmackvollerer,geschmackvollstem,geschmackvolleres" }, "geschäftig": { "form": "geschäftig", "polarity": "0.0040", "pos": "JJ", "sense": "geschäftige,geschäftigeren,geschäftiges,geschäftigste,geschäftiger,geschäftigerem,geschäftigstem,geschäftigstes,geschäftigster,geschäftigsten,geschäftigere,geschäftigem,geschäftigerer,geschäftigen,geschäftigeres" }, "geschätzt": { "form": "geschätzt", "polarity": "0.0040", "pos": "JJ", "sense": "geschätztestes,geschätztem,geschätzten,geschätztes,geschätzte,geschätzter,geschätzteste,geschätztester,geschätzterer,geschätzteres,geschätztesten,geschätzteren,geschätztestem,geschätztere,geschätzterem" }, "gesteigert": { "form": "gesteigert", "polarity": "0.0040", "pos": "JJ", "sense": "gesteigerte,gesteigertem,gesteigerten,gesteigerter,gesteigertes" }, "gestiegen": { "form": "gestiegen", "polarity": "0.0040", "pos": "JJ", "sense": "gestiegene,gestiegenem,gestiegenen,gestiegener,gestiegenes" }, "gesund": { "form": "gesund", "polarity": "0.1554", "pos": "JJ", "sense": "gesunderen,gesundem,gesünderen,gesunden,gesünderem,gesunderem,gesünderer,gesünderes,gesünder,gesundestes,gesündeste,gesundester,gesundere,gesundesten,gesundestem,gesündestes,gesündester,gesündesten,gesunderes,gesündestem,gesunderer,gesunde,gesündest,gesündere,gesundes,gesunder,gesundeste" }, "getreu": { "form": "getreu", "polarity": "0.0040", "pos": "JJ", "sense": "getreuestem,getreuesten,getreuen,getreuerer,getreuem,getreueres,getreusten,getreuester,getreuerem,getreustem,getreueren,getreuest,getreustes,getreust,getreuster,getreuestes,getreuste,getreues,getreuer,getreuere,getreue,getreueste" }, "gewachsen": { "form": "gewachsen", "polarity": "0.1201", "pos": "JJ", "sense": "gewachsene,gewachsenem,gewachsenen,gewachsener,gewachsenes" }, "gewaltfrei": { "form": "gewaltfrei", "polarity": "0.0040", "pos": "JJ", "sense": "gewaltfreistes,gewaltfreister,gewaltfreie,gewaltfreistem,gewaltfreisten,gewaltfreier,gewaltfreies,gewaltfreiem,gewaltfreien,gewaltfreiere,gewaltfreiste,gewaltfreierer,gewaltfreieres,gewaltfreierem,gewaltfreieren" }, "gewaltig": { "form": "gewaltig", "polarity": "0.0040", "pos": "JJ", "sense": "gewaltiger,gewaltigeren,gewaltigerem,gewaltiges,gewaltigste,gewaltigstem,gewaltige,gewaltigsten,gewaltigstes,gewaltigem,gewaltigeres,gewaltigster,gewaltigen,gewaltigerer,gewaltigere" }, "gewichtig": { "form": "gewichtig", "polarity": "0.0040", "pos": "JJ", "sense": "gewichtige,gewichtigeren,gewichtigerem,gewichtigerer,gewichtigeres,gewichtiges,gewichtiger,gewichtigster,gewichtigstes,gewichtigere,gewichtigste,gewichtigen,gewichtigsten,gewichtigem,gewichtigstem" }, "gewinnbringend": { "form": "gewinnbringend", "polarity": "0.0040", "pos": "JJ", "sense": "gewinnbringenderem,gewinnbringenderen,gewinnbringende,gewinnbringendstes,gewinnbringenden,gewinnbringendster,gewinnbringendem,gewinnbringenderes,gewinnbringender,gewinnbringenderer,gewinnbringendes,gewinnbringendsten,gewinnbringendere,gewinnbringendste,gewinnbringendstem" }, "gewinnen": { "form": "gewinnen", "polarity": "0.0040", "pos": "VB", "sense": "gewinne,gewinnst,gewinnt,gewinnest,gewinnet,gewann,gewannst,gewannen,gewannt,gewänne,gewönne,gewännest,gewännst,gewönnest,gewönnst,gewännen,gewönnen,gewännet,gewännt,gewönnet,gewönnt" }, "gewissenhaft": { "form": "gewissenhaft", "polarity": "0.0040", "pos": "JJ", "sense": "gewissenhaftestem,gewissenhaftesten,gewissenhafte,gewissenhaftem,gewissenhaften,gewissenhafter,gewissenhafteren,gewissenhafterem,gewissenhaftes,gewissenhaftester,gewissenhafteres,gewissenhafterer,gewissenhaftere,gewissenhaftestes,gewissenhafteste" }, "gewährleisten": { "form": "gewährleisten", "polarity": "0.0040", "pos": "VB", "sense": "gewährleiste,gewährleistest,gewährleistet,gewährleistete,gewährleistetest,gewährleisteten,gewährleistetet" }, "gewünscht": { "form": "gewünscht", "polarity": "0.0040", "pos": "JJ", "sense": "gewünschteren,gewünschterem,gewünschteste,gewünschtere,gewünschten,gewünschtes,gewünschter,gewünschteres,gewünschtester,gewünschterer,gewünschtestes,gewünschte,gewünschtem,gewünschtesten,gewünschtestem" }, "gezielt": { "form": "gezielt", "polarity": "0.0040", "pos": "JJ", "sense": "gezielte,gezieltem,gezielten,gezielter,gezieltes" }, "gigantisch": { "form": "gigantisch", "polarity": "0.5459", "pos": "JJ", "sense": "gigantischer,gigantisches,gigantischen,gigantischem,gigantischere,gigantischstem,gigantischsten,gigantischster,gigantischeres,gigantischstes,gigantischste,gigantische,gigantischerer,gigantischerem,gigantischeren" }, "glamourös": { "form": "glamourös", "polarity": "0.0040", "pos": "JJ", "sense": "glamouröse,glamouröser,glamourösere,glamouröses,glamourösen,glamourösem,glamouröserem,glamouröseren,glamourösester,glamouröseres,glamouröserer,glamourösestes,glamouröseste,glamourösesten,glamourösestem" }, "glanzvoll": { "form": "glanzvoll", "polarity": "0.0040", "pos": "JJ", "sense": "glanzvollster,glanzvollerem,glanzvollstem,glanzvollsten,glanzvolleren,glanzvolles,glanzvoller,glanzvollerer,glanzvollere,glanzvolleres,glanzvollen,glanzvollem,glanzvollste,glanzvolle,glanzvollstes" }, "glasklar": { "form": "glasklar", "polarity": "0.0040", "pos": "JJ", "sense": "glasklarere,glasklarerem,glasklareren,glasklarerer,glasklareres" }, "glatt": { "form": "glatt", "polarity": "0.1099", "pos": "JJ", "sense": "glatterer,glatteres,glatteren,glatterem,glattere,glattester,glattesten,glatten,glattem,glattestem,glatte,glattes,glatter,glattestes,glatteste" }, "glaubwürdig": { "form": "glaubwürdig", "polarity": "0.0893", "pos": "JJ", "sense": "glaubwürdigerem,glaubwürdigeren,glaubwürdigeres,glaubwürdigerer,glaubwürdigste,glaubwürdige,glaubwürdigstem,glaubwürdiges,glaubwürdiger,glaubwürdigstes,glaubwürdigen,glaubwürdigster,glaubwürdigem,glaubwürdigsten,glaubwürdigere" }, "gleichstellen": { "form": "gleichstellen", "polarity": "0.0040", "pos": "VB", "sense": "gleichstellt,gleichstelle,gleichgestellt,gleichstellet,gleichstellten,gleichstellest,gleichstelltet,gleichstellst,gleichstelltest,gleichstellte" }, "gleichwertig": { "form": "gleichwertig", "polarity": "0.0040", "pos": "JJ", "sense": "gleichwertigsten,gleichwertigstem,gleichwertigster,gleichwertigstes,gleichwertige,gleichwertigerer,gleichwertigeres,gleichwertigerem,gleichwertigeren,gleichwertigere,gleichwertigem,gleichwertigen,gleichwertiger,gleichwertiges,gleichwertigste" }, "glorios": { "form": "glorios", "polarity": "0.0040", "pos": "JJ", "sense": "glorioserer,glorioserem,gloriosere,glorioseren,gloriosester,gloriosestes,gloriosen,gloriosestem,gloriosesten,gloriosem,gloriose,glorioser,glorioses,glorioseste,glorioseres" }, "glorreich": { "form": "glorreich", "polarity": "0.0040", "pos": "JJ", "sense": "glorreichere,glorreichste,glorreichsten,glorreichstem,glorreicher,glorreiches,glorreicheres,glorreichster,glorreichen,glorreichstes,glorreicherer,glorreichem,glorreicherem,glorreicheren,glorreiche" }, "glänzen": { "form": "glänzen", "polarity": "0.3397", "pos": "VB", "sense": "glänzten,glänzte,glänzt,glänze,geglänzt,glänztest,glänztet,glänzest,glänzet" }, "glänzend": { "form": "glänzend", "polarity": "0.2082", "pos": "JJ", "sense": "glänzenderer,glänzenderes,glänzende,glänzenden,glänzendem,glänzender,glänzenderen,glänzenderem,glänzendes,glänzendere,glänzendster,glänzendstes,glänzendste,glänzendsten,glänzendstem" }, "glücklich": { "form": "glücklich", "polarity": "0.115", "pos": "JJ", "sense": "glücklichsten,glücklichere,glücklichstem,glücklichster,glückliche,glücklichem,glücklichen,glückliches,glücklicher,glücklicheren,glücklicherem,glücklichste,glücklichstes,glücklicherer,glücklicheres" }, "glühend": { "form": "glühend", "polarity": "0.0040", "pos": "JJ", "sense": "glühende,glühendem,glühenden,glühender,glühendes,glühendere,glühenderem,glühenderen,glühenderer,glühenderes,glühendste,glühendstem,glühendsten,glühendster,glühendstes" }, "gnädig": { "form": "gnädig", "polarity": "0.0040", "pos": "JJ", "sense": "gnädigstes,gnädigere,gnädigste,gnädigster,gnädiges,gnädiger,gnädigerer,gnädigeren,gnädigerem,gnädigeres,gnädige,gnädigem,gnädigen,gnädigstem,gnädigsten" }, "golden": { "form": "golden", "polarity": "0.0040", "pos": "JJ", "sense": "goldenere,goldeneren,goldenerem,goldenen,goldenem,goldener,goldenes,goldene,goldenster,goldnerem,goldneren,goldensten,goldenstem,goldnerer,goldner,goldneres,goldenerer,goldnere,goldenste,goldenstes,goldeneres" }, "goldig": { "form": "goldig", "polarity": "0.1991", "pos": "JJ", "sense": "goldigster,goldigeres,goldigstes,goldigerer,goldigsten,goldigste,goldigerem,goldigstem,goldigeren,goldige,goldigen,goldigem,goldigere,goldiger,goldiges" }, "grandios": { "form": "grandios", "polarity": "0.1843", "pos": "JJ", "sense": "grandiosester,grandiosestes,grandioser,grandiose,grandioses,grandiosen,grandioseste,grandiosem,grandiosere,grandioserer,grandioseres,grandiosesten,grandiosestem,grandioserem,grandioseren" }, "gratulieren": { "form": "gratulieren", "polarity": "0.065", "pos": "VB", "sense": "gratuliere,gratulierst,gratuliert,gratulierest,gratulieret,gratulierte,gratuliertest,gratulierten,gratuliertet" }, "gravierend": { "form": "gravierend", "polarity": "0.0040", "pos": "JJ", "sense": "gravierendstem,gravierendsten,gravierenderes,gravierenden,gravierendem,gravierendes,gravierender,gravierendstes,gravierenderer,gravierendster,gravierenderem,gravierenderen,gravierende,gravierendste,gravierendere" }, "greifbar": { "form": "greifbar", "polarity": "0.0886", "pos": "JJ", "sense": "greifbarste,greifbarere,greifbare,greifbarem,greifbaren,greifbares,greifbarer,greifbarster,greifbarstes,greifbareren,greifbarstem,greifbarsten,greifbarerem,greifbarerer,greifbareres" }, "grenzenlos": { "form": "grenzenlos", "polarity": "0.0040", "pos": "JJ", "sense": "grenzenlose,grenzenlosestem,grenzenloseste,grenzenlosesten,grenzenlosere,grenzenloseres,grenzenloserer,grenzenloseren,grenzenlosem,grenzenloserem,grenzenlosester,grenzenlosen,grenzenlosestes,grenzenloser,grenzenloses" }, "groß": { "form": "groß", "polarity": "0.3694", "pos": "JJ", "sense": "große,großem,großen,großer,großes,größere,größerem,größeren,größerer,größeres,größte,größtem,größten,größter,größtes" }, "großartig": { "form": "großartig", "polarity": "0.4606", "pos": "JJ", "sense": "großartigster,großartigem,großartigstes,großartigen,großartigste,großartigsten,großartigeren,großartigere,großartigerem,großartigeres,großartigerer,großartige,großartigstem,großartiges,großartiger" }, "großspurig": { "form": "großspurig", "polarity": "0.0040", "pos": "JJ", "sense": "großspurigerer,großspurigeres,großspurigerem,großspurigeren,großspuriges,großspuriger,großspurigere,großspurigsten,großspurige,großspurigstem,großspurigstes,großspurigem,großspurigste,großspurigster,großspurigen" }, "großzügig": { "form": "großzügig", "polarity": "0.2077", "pos": "JJ", "sense": "großzügigstes,großzügigster,großzügigerer,großzügige,großzügigeres,großzügigsten,großzügigere,großzügigstem,großzügiges,großzügiger,großzügigem,großzügigen,großzügigeren,großzügigerem,großzügigste" }, "grundlegend": { "form": "grundlegend", "polarity": "0.0040", "pos": "JJ", "sense": "grundlegendstem,grundlegendsten,grundlegendster,grundlegende,grundlegendstes,grundlegenderen,grundlegenderem,grundlegenden,grundlegendem,grundlegenderer,grundlegendste,grundlegendes,grundlegender,grundlegenderes,grundlegendere" }, "grundsätzlich": { "form": "grundsätzlich", "polarity": "0.0040", "pos": "JJ", "sense": "grundsätzliches,grundsätzlicher,grundsätzlichere,grundsätzlichem,grundsätzlichen,grundsätzlicherer,grundsätzlicheres,grundsätzlichste,grundsätzlichsten,grundsätzlichstem,grundsätzlicheren,grundsätzlicherem,grundsätzlichster,grundsätzlichstes,grundsätzliche" }, "größtmöglich": { "form": "größtmöglich", "polarity": "0.0040", "pos": "JJ", "sense": "größtmöglichstes,größtmöglichste,größtmöglichster,größtmögliche,größtmöglichstem,größtmöglichsten,größtmöglichere,größtmöglicheren,größtmöglicherem,größtmöglicherer,größtmöglicher,größtmöglicheres,größtmögliches,größtmöglichem,größtmöglichen" }, "gründlich": { "form": "gründlich", "polarity": "0.0040", "pos": "JJ", "sense": "gründlichere,gründlichstes,gründlichsten,gründlichstem,gründliche,gründlichster,gründlicherem,gründlicheren,gründlichen,gründlichem,gründlicherer,gründliches,gründlicher,gründlicheres,gründlichste" }, "gut": { "form": "gut", "polarity": "0.3716", "pos": "JJ", "sense": "gute,gutem,guten,guter,gutes,besser,bessere,besserem,besseren,besserer,besseres,beste,bestem,besten,bester,bestes" }, "gutgehend": { "form": "gutgehend", "polarity": "0.0040", "pos": "JJ", "sense": "gutgehende,gutgehenden,gutgehenderes,gutgehendem,gutgehenderer,gutgehendes,gutgehender,gutgehendste,gutgehendsten,gutgehendere,gutgehendstem,gutgehendstes,gutgehendster,gutgehenderem,gutgehenderen" }, "gönnen": { "form": "gönnen", "polarity": "0.3387", "pos": "VB", "sense": "gönntet,gönnst,gegönnt,gönnte,gönnt,gönnest,gönne,gönntest,gönnten,gönnet" }, "göttlich": { "form": "göttlich", "polarity": "0.0040", "pos": "JJ", "sense": "göttliche,göttlichem,göttlichstes,göttlichen,göttlichere,göttliches,göttlicher,göttlichste,göttlicheren,göttlicherem,göttlichsten,göttlicheres,göttlichstem,göttlicherer,göttlichster" }, "gültig": { "form": "gültig", "polarity": "0.0040", "pos": "JJ", "sense": "gültige,gültigerer,gültigeres,gültigeren,gültigerem,gültigstem,gültigsten,gültigere,gültiger,gültiges,gültigen,gültigster,gültigem,gültigstes,gültigste" }, "günstig": { "form": "günstig", "polarity": "0.0946", "pos": "JJ", "sense": "günstigen,günstige,günstigem,günstigeren,günstigere,günstigerem,günstiger,günstigste,günstiges,günstigster,günstigstes,günstigstem,günstigsten,günstigerer,günstigeres" }, "gütig": { "form": "gütig", "polarity": "0.0040", "pos": "JJ", "sense": "gütigerer,gütigerem,gütigeren,gütigeres,gütigstem,gütigsten,gütigen,gütigem,gütiges,gütigster,gütiger,gütigste,gütigstes,gütigere,gütige" }, "gütlich": { "form": "gütlich", "polarity": "0.0040", "pos": "JJ", "sense": "gütlicherer,gütlichstes,gütlicheres,gütlicherem,gütliche,gütlicheren,gütlichem,gütlichen,gütliches,gütlicher,gütlichsten,gütlichste,gütlichstem,gütlichster,gütlichere" }, "handfest": { "form": "handfest", "polarity": "0.0040", "pos": "JJ", "sense": "handfesterem,handfesteren,handfestestes,handfestester,handfeste,handfesterer,handfesteres,handfestesten,handfestes,handfesteste,handfester,handfesten,handfestere,handfestestem,handfestem" }, "handlich": { "form": "handlich", "polarity": "0.2025", "pos": "JJ", "sense": "handlichen,handlicheres,handlichem,handliches,handlichstes,handlicher,handlicherer,handlicheren,handliche,handlicherem,handlichste,handlichster,handlichere,handlichstem,handlichsten" }, "harmonisch": { "form": "harmonisch", "polarity": "0.3489", "pos": "JJ", "sense": "harmonischerem,harmonischstem,harmonischsten,harmonische,harmonischerer,harmonischeres,harmonischeren,harmonisches,harmonischer,harmonischem,harmonischen,harmonischstes,harmonischste,harmonischster,harmonischere" }, "harmonisieren": { "form": "harmonisieren", "polarity": "0.0828", "pos": "VB", "sense": "harmonisiertest,harmonisiert,harmonisiere,harmonisiertet,harmonisierten,harmonisierte,harmonisierest,harmonisieret,harmonisierst" }, "hauptsächlich": { "form": "hauptsächlich", "polarity": "0.0040", "pos": "JJ", "sense": "hauptsächlichstes,hauptsächlichster,hauptsächlichere,hauptsächlichstem,hauptsächlichsten,hauptsächliche,hauptsächlicheres,hauptsächlicherer,hauptsächlicher,hauptsächlicheren,hauptsächlicherem,hauptsächliches,hauptsächlichen,hauptsächlichem,hauptsächlichste" }, "heben": { "form": "heben", "polarity": "0.2219", "pos": "VB", "sense": "hebe,hebst,hebt,hebest,hebet,hob,hobst,hoben,hobt,höbe,höbest,höbst,höben,höbet,höbt,gehoben" }, "heil": { "form": "heil", "polarity": "0.3414", "pos": "JJ", "sense": "heilstes,heilster,heilsten,heilste,heilstem,heilere,heilem,heilen,heilerer,heileres,heiler,heiles,heile,heilerem,heileren" }, "heilen": { "form": "heilen", "polarity": "0.0040", "pos": "JJ", "sense": "heile,heilst,heilt,heilest,heilet,heilte,heiltest,heilten,heiltet,geheilt" }, "heilig": { "form": "heilig", "polarity": "0.0727", "pos": "JJ", "sense": "heiligsten,heiligster,heiligstes,heiligste,heiligstem,heiligeren,heiliges,heiliger,heilige,heiligerem,heiligen,heiligere,heiligem,heiligerer,heiligeres" }, "heilsam": { "form": "heilsam", "polarity": "0.2007", "pos": "JJ", "sense": "heilsamere,heilsamem,heilsames,heilsamster,heilsamer,heilsamstes,heilsamstem,heilsamsten,heilsamen,heilsamerem,heilsameren,heilsamste,heilsame,heilsameres,heilsamerer" }, "heiraten": { "form": "heiraten", "polarity": "0.0040", "pos": "VB", "sense": "heirate,heiratest,heiratet,heiratete,heiratetest,heirateten,heiratetet,geheiratet" }, "heiter": { "form": "heiter", "polarity": "0.2013", "pos": "JJ", "sense": "heitere,heitrerem,heiterste,heitererer,heiterstes,heitererem,heiterster,heitereren,heitrere,heitersten,heiterstem,heitrer,heitereres,heiteres,heiteren,heiterer,heitreren,heiterem,heitrerer,heiterere,heitreres" }, "heiß": { "form": "heiß", "polarity": "0.3557", "pos": "JJ", "sense": "heiße,heißem,heißen,heißer,heißes,heißere,heißerem,heißeren,heißerer,heißeres,heißeste,heißestem,heißesten,heißester,heißestes" }, "helfen": { "form": "helfen", "polarity": "0.373", "pos": "VB", "sense": "helfe,hilfst,hilft,helft,helfest,helfet,half,halfst,halfen,hälfe,hülfe,hälfest,hälfst,hülfest,hülfst,hälfen,hülfen,hälfet,hälft,hülfet,hülft,geholfen" }, "hell": { "form": "hell", "polarity": "0.235", "pos": "JJ", "sense": "hellem,hellen,helleres,hellerem,helleren,helle,hellere,hellerer,heller,helles,hellsten,hellstem,hellstes,hellste,hellster" }, "heranwachsen": { "form": "heranwachsen", "polarity": "0.0867", "pos": "VB", "sense": "heranwachse,heranwächst,heranwachsest,heranwachset,heranwuchs,heranwuchsest,heranwuchst,heranwuchsen,heranwüchse,heranwüchsest,heranwüchsen,heranwüchset,herangewachsen" }, "heraufsetzen": { "form": "heraufsetzen", "polarity": "0.0040", "pos": "VB", "sense": "heraufsetze,heraufsetzt,heraufsetzest,heraufsetzet,heraufsetzte,heraufsetztest,heraufsetzten,heraufsetztet,heraufgesetzt" }, "herausgehoben": { "form": "herausgehoben", "polarity": "0.0040", "pos": "JJ", "sense": "herausgehobene,herausgehobenem,herausgehobenen,herausgehobener,herausgehobenes" }, "herausragen": { "form": "herausragen", "polarity": "0.0040", "pos": "VB", "sense": "herausrage,herausragst,herausragt,herausragest,herausraget,herausragte,herausragtest,herausragten,herausragtet,herausgeragt" }, "herrlich": { "form": "herrlich", "polarity": "0.4821", "pos": "JJ", "sense": "herrlicheren,herrlicherem,herrlichste,herrlichstes,herrlichster,herrlichere,herrlicheres,herrlicherer,herrlichstem,herrlichsten,herrlichen,herrlicher,herrliches,herrliche,herrlichem" }, "herrschaftlich": { "form": "herrschaftlich", "polarity": "0.0040", "pos": "JJ", "sense": "herrschaftlicheren,herrschaftlicherem,herrschaftlichste,herrschaftlichere,herrschaftlichstem,herrschaftlichem,herrschaftlichen,herrschaftlicher,herrschaftliches,herrschaftlichsten,herrschaftliche,herrschaftlichstes,herrschaftlicheres,herrschaftlichster,herrschaftlicherer" }, "hervorragend": { "form": "hervorragend", "polarity": "0.5891", "pos": "JJ", "sense": "hervorragendstes,hervorragendster,hervorragendere,hervorragendstem,hervorragendsten,hervorragendste,hervorragender,hervorragendes,hervorragenden,hervorragendem,hervorragenderen,hervorragenderer,hervorragenderem,hervorragende,hervorragenderes" }, "herzig": { "form": "herzig", "polarity": "0.0040", "pos": "JJ", "sense": "herzigste,herzigen,herzigem,herzigster,herzigere,herzigstes,herzigstem,herzigsten,herzige,herzigerer,herzigeres,herzigerem,herzigeren,herziger,herziges" }, "herzlich": { "form": "herzlich", "polarity": "0.0040", "pos": "JJ", "sense": "herzlicherer,herzlicheres,herzlichem,herzlichere,herzlichstes,herzliches,herzlicher,herzlichster,herzlichen,herzlichstem,herzlichsten,herzlichste,herzlicherem,herzliche,herzlicheren" }, "hilfreich": { "form": "hilfreich", "polarity": "0.0926", "pos": "JJ", "sense": "hilfreiche,hilfreichste,hilfreicherem,hilfreicheren,hilfreichere,hilfreichsten,hilfreicher,hilfreiches,hilfreichstem,hilfreichster,hilfreichem,hilfreichstes,hilfreichen,hilfreicherer,hilfreicheres" }, "hilfsbereit": { "form": "hilfsbereit", "polarity": "0.3377", "pos": "JJ", "sense": "hilfsbereiteste,hilfsbereitestem,hilfsbereitesten,hilfsbereitem,hilfsbereiteren,hilfsbereiterem,hilfsbereitestes,hilfsbereitester,hilfsbereite,hilfsbereiten,hilfsbereitere,hilfsbereites,hilfsbereiter,hilfsbereiteres,hilfsbereiterer" }, "himmlisch": { "form": "himmlisch", "polarity": "0.2088", "pos": "JJ", "sense": "himmlischster,himmlischstes,himmlischerer,himmlischeres,himmlisches,himmlischeren,himmlischste,himmlischer,himmlische,himmlischstem,himmlischsten,himmlischen,himmlischem,himmlischere,himmlischerem" }, "hinausgehend": { "form": "hinausgehend", "polarity": "0.0040", "pos": "JJ", "sense": "hinausgehendste,hinausgehendster,hinausgehende,hinausgehenden,hinausgehendstes,hinausgehendem,hinausgehendstem,hinausgehendsten,hinausgehendes,hinausgehender,hinausgehenderes,hinausgehenderer,hinausgehendere,hinausgehenderen,hinausgehenderem" }, "hingeben": { "form": "hingeben", "polarity": "0.0762", "pos": "VB", "sense": "hingebe,hingibst,hingibt,hingebt,hingebest,hingebet,hingab,hingabst,hingaben,hingabt,hingäbe,hingäbest,hingäbst,hingäben,hingäbet,hingäbt,hingegeben" }, "hinhauen": { "form": "hinhauen", "polarity": "0.0040", "pos": "VB", "sense": "hinhaue,hinhaust,hinhaut,hinhauest,hinhauet,hinhaute,hinhautest,hinhauten,hinhautet,hingehauen" }, "hinreichend": { "form": "hinreichend", "polarity": "0.0040", "pos": "JJ", "sense": "hinreichendem,hinreichendstes,hinreichenden,hinreichendster,hinreichendstem,hinreichendsten,hinreichende,hinreichendes,hinreichendste,hinreichender,hinreichenderes,hinreichenderer,hinreichendere,hinreichenderen,hinreichenderem" }, "hinreißend": { "form": "hinreißend", "polarity": "0.0841", "pos": "JJ", "sense": "hinreißende,hinreißendem,hinreißenden,hinreißender,hinreißendes,hinreißendere,hinreißenderem,hinreißenderen,hinreißenderer,hinreißenderes,hinreißendste,hinreißendstem,hinreißendsten,hinreißendster,hinreißendstes" }, "hinterlassen": { "form": "hinterlassen", "polarity": "0.0040", "pos": "VB", "sense": "hinterlasse,hinterlässt,hinterläßt,hinterlasst,hinterlaßt,hinterlassest,hinterlasset,hinterließ,hinterließest,hinterließt,hinterließen,hinterließe" }, "hinzufügen": { "form": "hinzufügen", "polarity": "0.0040", "pos": "VB", "sense": "hinzufügten,hinzugefügt,hinzufügst,hinzufügtest,hinzufügte,hinzufügt,hinzufüge,hinzufüget,hinzufügest,hinzufügtet" }, "hinzunehmen": { "form": "hinzunehmen", "polarity": "0.0040", "pos": "VB", "sense": "hinzunehme,hinzunimmst,hinzunimmt,hinzunehmt,hinzunehmest,hinzunehmet,hinzunahm,hinzunahmst,hinzunahmen,hinzunahmt,hinzunähme,hinzunähmest,hinzunähmst,hinzunähmen,hinzunähmet,hinzunähmt" }, "historisch": { "form": "historisch", "polarity": "0.0040", "pos": "JJ", "sense": "historisches,historischer,historischere,historischstem,historischsten,historischeren,historischerem,historischste,historischster,historische,historischeres,historischstes,historischerer,historischen,historischem" }, "hoch": { "form": "hoch", "polarity": "0.0040", "pos": "JJ", "sense": "hohe,hohem,hohen,hoher,hohes,höhere,höherem,höheren,höherer,höheres,höhste,höhstem,höhsten,höhster,höhstes" }, "hochattraktiv": { "form": "hochattraktiv", "polarity": "0.0040", "pos": "JJ", "sense": "hochattraktive,hochattraktivem,hochattraktiven,hochattraktiver,hochattraktives,hochattraktivere,hochattraktiverem,hochattraktiveren,hochattraktiverer,hochattraktiveres,hochattraktivste,hochattraktivstem,hochattraktivsten,hochattraktivster,hochattraktivstes" }, "hochgestellt": { "form": "hochgestellt", "polarity": "0.0040", "pos": "JJ", "sense": "hochgestellte,hochgestelltem,hochgestellten,hochgestellter,hochgestelltes" }, "hochgradig": { "form": "hochgradig", "polarity": "0.0040", "pos": "JJ", "sense": "hochgradige,hochgradigem,hochgradigen,hochgradiger,hochgradiges" }, "hochhalten": { "form": "hochhalten", "polarity": "0.0040", "pos": "VB", "sense": "hochhalte,hochhältst,hochhält,hochhaltet,hochhaltest,hochhielt,hochhieltest,hochhieltst,hochhielten,hochhieltet,hochhielte,hochgehalten" }, "hochheben": { "form": "hochheben", "polarity": "0.0040", "pos": "VB", "sense": "hochhebe,hochhebst,hochhebt,hochhebest,hochhebet,hochhob,hochhobst,hochhoben,hochhobt,hochhöbe,hochhöbest,hochhöbst,hochhöben,hochhöbet,hochhöbt,hochgehoben" }, "hochkarätig": { "form": "hochkarätig", "polarity": "0.0040", "pos": "JJ", "sense": "hochkarätigerer,hochkarätigeres,hochkarätige,hochkarätigerem,hochkarätigeren,hochkarätigere,hochkarätigem,hochkarätigsten,hochkarätigen,hochkarätigstes,hochkarätigster,hochkarätiges,hochkarätigste,hochkarätiger,hochkarätigstem" }, "hochklassig": { "form": "hochklassig", "polarity": "0.0040", "pos": "JJ", "sense": "hochklassige,hochklassigem,hochklassigen,hochklassiger,hochklassiges" }, "hochrangig": { "form": "hochrangig", "polarity": "0.0040", "pos": "JJ", "sense": "hochrangiges,hochrangigere,hochrangige,hochrangigstes,hochrangigster,hochrangigsten,hochrangigeren,hochrangigerer,hochrangigeres,hochrangigstem,hochrangigen,hochrangigem,hochrangigste,hochrangiger,hochrangigerem" }, "hochtreibend": { "form": "hochtreibend", "polarity": "0.0040", "pos": "JJ", "sense": "hochtreibende,hochtreibendem,hochtreibenden,hochtreibender,hochtreibendes" }, "hochwertig": { "form": "hochwertig", "polarity": "0.0849", "pos": "JJ", "sense": "hochwertige,hochwertigem,hochwertigen,hochwertiger,hochwertiges" }, "hoffen": { "form": "hoffen", "polarity": "0.2318", "pos": "VB", "sense": "hofft,hofften,hoffe,gehofft,hoffest,hofftest,hoffte,hoffst,hoffet,hofftet" }, "hoffnungsfroh": { "form": "hoffnungsfroh", "polarity": "0.0040", "pos": "JJ", "sense": "hoffnungsfrohstes,hoffnungsfroheres,hoffnungsfrohes,hoffnungsfroher,hoffnungsfrohster,hoffnungsfrohen,hoffnungsfrohem,hoffnungsfrohstem,hoffnungsfrohsten,hoffnungsfrohe,hoffnungsfroherer,hoffnungsfroherem,hoffnungsfroheren,hoffnungsfrohere,hoffnungsfrohste" }, "hoffnungsvoll": { "form": "hoffnungsvoll", "polarity": "0.1853", "pos": "JJ", "sense": "hoffnungsvollsten,hoffnungsvollerem,hoffnungsvolleren,hoffnungsvollstem,hoffnungsvollem,hoffnungsvollere,hoffnungsvollen,hoffnungsvollerer,hoffnungsvollste,hoffnungsvolle,hoffnungsvollstes,hoffnungsvoller,hoffnungsvolleres,hoffnungsvolles,hoffnungsvollster" }, "human": { "form": "human", "polarity": "0.0040", "pos": "JJ", "sense": "humanstes,humanere,humanster,humaneres,humansten,humanstem,humanerer,humaneren,humanerem,humanes,humaner,humanste,humane,humanem,humanen" }, "humanitär": { "form": "humanitär", "polarity": "0.0040", "pos": "JJ", "sense": "humanitären,humanitärem,humanitäreres,humanitärstem,humanitärerer,humanitärere,humanitärster,humanitäreren,humanitärstes,humanitäre,humanitäres,humanitärsten,humanitärer,humanitärste,humanitärerem" }, "humorvoll": { "form": "humorvoll", "polarity": "0.317", "pos": "JJ", "sense": "humorvollstem,humorvollsten,humorvollere,humorvollster,humorvollstes,humorvolle,humorvollen,humorvollste,humorvollem,humorvoller,humorvollerer,humorvolleres,humorvolles,humorvollerem,humorvolleren" }, "hundertprozentig": { "form": "hundertprozentig", "polarity": "0.0796", "pos": "JJ", "sense": "hundertprozentigste,hundertprozentigeres,hundertprozentigerer,hundertprozentiges,hundertprozentiger,hundertprozentigen,hundertprozentigem,hundertprozentigstem,hundertprozentigsten,hundertprozentige,hundertprozentigerem,hundertprozentigstes,hundertprozentigeren,hundertprozentigster,hundertprozentigere" }, "höchstmöglich": { "form": "höchstmöglich", "polarity": "0.0040", "pos": "JJ", "sense": "höchstmögliche,höchstmöglichem,höchstmöglichen,höchstmöglicher,höchstmögliches" }, "höflich": { "form": "höflich", "polarity": "0.0040", "pos": "JJ", "sense": "höflichere,höfliches,höflichem,höflichen,höflicher,höflicherem,höflicheren,höflichste,höflicherer,höflicheres,höflichster,höflichstes,höfliche,höflichsten,höflichstem" }, "hörenswert": { "form": "hörenswert", "polarity": "0.0040", "pos": "JJ", "sense": "hörenswerten,hörenswertestem,hörenswertesten,hörenswertem,hörenswertestes,hörenswerteste,hörenswertester,hörenswerterer,hörenswerteres,hörenswerter,hörenswerteren,hörenswerterem,hörenswertes,hörenswertere,hörenswerte" }, "hübsch": { "form": "hübsch", "polarity": "0.4629", "pos": "JJ", "sense": "hübsche,hübschsten,hübschstem,hübschere,hübscherem,hübschstes,hübschster,hübscher,hübscheren,hübschen,hübscherer,hübschem,hübscheres,hübsches,hübschste" }, "ideal": { "form": "ideal", "polarity": "0.0937", "pos": "JJ", "sense": "idealstes,idealerer,ideales,idealer,idealerem,idealeren,idealster,idealsten,idealen,idealste,idealstem,idealem,ideale,idealere,idealeres" }, "idyllisch": { "form": "idyllisch", "polarity": "0.0040", "pos": "JJ", "sense": "idyllischer,idyllisches,idyllischem,idyllischen,idyllischste,idyllischstem,idyllischsten,idyllischere,idyllischeres,idyllischstes,idyllischerer,idyllischerem,idyllischster,idyllische,idyllischeren" }, "illuster": { "form": "illuster", "polarity": "0.0040", "pos": "JJ", "sense": "illustre,illustrem,illustren,illustrer,illustres,illustrere,illustrerem,illustreren,illustrerer,illustreres,illusterste,illusterstem,illustersten,illusterster,illusterstes" }, "immens": { "form": "immens", "polarity": "0.0040", "pos": "JJ", "sense": "immensere,immensestem,immensesten,immenses,immenser,immenseres,immensester,immensestes,immensen,immensem,immenserer,immenseren,immenserem,immenseste,immense" }, "imponierend": { "form": "imponierend", "polarity": "0.0040", "pos": "JJ", "sense": "imponierende,imponierendem,imponierenden,imponierender,imponierendes,imponierendere,imponierenderem,imponierenderen,imponierenderer,imponierenderes,imponierendste,imponierendstem,imponierendsten,imponierendster,imponierendstes" }, "imposant": { "form": "imposant", "polarity": "0.0040", "pos": "JJ", "sense": "imposantem,imposanteste,imposanterem,imposanteren,imposantere,imposantesten,imposantester,imposantestes,imposanterer,imposanter,imposanteres,imposantes,imposanten,imposante,imposantestem" }, "inbrünstig": { "form": "inbrünstig", "polarity": "0.0040", "pos": "JJ", "sense": "inbrünstigeren,inbrünstigerem,inbrünstige,inbrünstigsten,inbrünstiges,inbrünstiger,inbrünstigstes,inbrünstigster,inbrünstigem,inbrünstigere,inbrünstigen,inbrünstigstem,inbrünstigerer,inbrünstigste,inbrünstigeres" }, "individuell": { "form": "individuell", "polarity": "0.0040", "pos": "JJ", "sense": "individuellerem,individuellstes,individuelleren,individuellster,individuellere,individuellsten,individuellstem,individuellen,individuelle,individueller,individuelles,individuellste,individuellem,individuellerer,individuelleres" }, "ingeniös": { "form": "ingeniös", "polarity": "0.0040", "pos": "JJ", "sense": "ingeniösesten,ingeniöserer,ingeniöseres,ingeniöserem,ingeniöseren,ingeniösestem,ingeniösester,ingeniösestes,ingeniösere,ingeniöser,ingeniöses,ingeniöseste,ingeniösen,ingeniöse,ingeniösem" }, "innovativ": { "form": "innovativ", "polarity": "0.3302", "pos": "JJ", "sense": "innovativeren,innovativerem,innovativeres,innovativerer,innovativere,innovatives,innovativstem,innovativsten,innovativer,innovativster,innovativem,innovativstes,innovativen,innovativste,innovative" }, "inspirieren": { "form": "inspirieren", "polarity": "0.0040", "pos": "VB", "sense": "inspiriere,inspirierst,inspiriert,inspirierest,inspirieret,inspirierte,inspiriertest,inspirierten,inspiriertet" }, "inspirierend": { "form": "inspirierend", "polarity": "0.0786", "pos": "JJ", "sense": "inspirierende,inspirierendem,inspirierenden,inspirierender,inspirierendes,inspirierendere,inspirierenderem,inspirierenderen,inspirierenderer,inspirierenderes,inspirierendste,inspirierendstem,inspirierendsten,inspirierendster,inspirierendstes" }, "intakt": { "form": "intakt", "polarity": "0.0040", "pos": "JJ", "sense": "intakterer,intakte,intakteres,intakteren,intakterem,intaktere,intaktestes,intaktester,intaktem,intakten,intakter,intaktes,intakteste,intaktestem,intaktesten" }, "integer": { "form": "integer", "polarity": "0.0040", "pos": "JJ", "sense": "integerste,integrerem,integerstem,integre,integreren,integersten,integrerer,integreres,integerster,integerstes,integrer,integres,integrem,integren,integrere" }, "integrieren": { "form": "integrieren", "polarity": "0.0908", "pos": "VB", "sense": "integrierten,integriertest,integriert,integrierte,integriertet,integrierst,integrieret,integrierest,integriere" }, "intelligent": { "form": "intelligent", "polarity": "0.1238", "pos": "JJ", "sense": "intelligenteren,intelligenterem,intelligentestem,intelligentestes,intelligentester,intelligentem,intelligentesten,intelligenten,intelligentere,intelligenter,intelligentes,intelligente,intelligenterer,intelligenteres,intelligenteste" }, "intensiv": { "form": "intensiv", "polarity": "0.0040", "pos": "JJ", "sense": "intensive,intensiverer,intensivere,intensiveres,intensivste,intensivsten,intensivstem,intensivster,intensivstes,intensiverem,intensives,intensiver,intensiveren,intensiven,intensivem" }, "interessant": { "form": "interessant", "polarity": "0.2488", "pos": "JJ", "sense": "interessantestes,interessantester,interessanteste,interessantere,interessantestem,interessantesten,interessanterem,interessantes,interessanter,interessanteren,interessante,interessanten,interessanteres,interessantem,interessanterer" }, "interessieren": { "form": "interessieren", "polarity": "0.0040", "pos": "VB", "sense": "interessierest,interessiertet,interessiert,interessiere,interessierst,interessierte,interessiertest,interessierten,interessieret" }, "interessiert": { "form": "interessiert", "polarity": "0.0040", "pos": "JJ", "sense": "interessierteren,interessierterem,interessierteste,interessiertes,interessierter,interessierte,interessierten,interessiertester,interessiertestes,interessiertem,interessiertesten,interessierteres,interessierterer,interessiertestem,interessiertere" }, "investieren": { "form": "investieren", "polarity": "0.0040", "pos": "VB", "sense": "investierte,investierest,investierten,investierst,investieret,investiertest,investiertet,investiere,investiert" }, "jubeln": { "form": "jubeln", "polarity": "0.0756", "pos": "VB", "sense": "jubele,juble,jubelst,jubelt,jublest,jublet,jubelte,jubeltest,jubelten,jubeltet,gejubelt" }, "kinderleicht": { "form": "kinderleicht", "polarity": "0.0040", "pos": "JJ", "sense": "kinderleichte,kinderleichtem,kinderleichten,kinderleichter,kinderleichtes" }, "klaglos": { "form": "klaglos", "polarity": "0.0040", "pos": "JJ", "sense": "klaglose,klaglosem,klaglosen,klagloser,klagloses" }, "klar": { "form": "klar", "polarity": "0.0040", "pos": "JJ", "sense": "klaren,klareres,klarem,klarerer,klarer,klareren,klarstes,klarerem,klarster,klarere,klarste,klarstem,klarsten,klares,klare" }, "klasse": { "form": "klasse", "polarity": "0.3474", "pos": "JJ", "sense": "" }, "klassisch": { "form": "klassisch", "polarity": "0.0040", "pos": "JJ", "sense": "klassisches,klassische,klassischer,klassischste,klassischen,klassischerer,klassischeres,klassischerem,klassischere,klassischeren,klassischem,klassischstem,klassischsten,klassischstes,klassischster" }, "klettern": { "form": "klettern", "polarity": "0.457", "pos": "VB", "sense": "kletteren,kletterst,kletterten,klettertest,geklettert,klettert,klettere,klettertet,kletterte" }, "klimatisiert": { "form": "klimatisiert", "polarity": "0.0040", "pos": "VB", "sense": "klimatisierte,klimatisiertem,klimatisierten,klimatisierter,klimatisiertes" }, "klug": { "form": "klug", "polarity": "0.3532", "pos": "JJ", "sense": "klügsten,klügstem,kluge,kluger,kluges,klügste,klügster,klügstes,klüger,klügere,klugen,klügerem,klügeren,klugem,klügerer,klügeres" }, "klären": { "form": "klären", "polarity": "0.0040", "pos": "VB", "sense": "klärtest,klärest,geklärt,klärten,klärt,klärst,kläre,kläret,klärtet,klärte" }, "knorke": { "form": "knorke", "polarity": "0.0040", "pos": "JJ", "sense": "knorkem,knorken,knorker,knorkes" }, "knuddelig": { "form": "knuddelig", "polarity": "0.2086", "pos": "JJ", "sense": "knuddelige,knuddeligem,knuddeligen,knuddeliger,knuddeliges,knuddeligere,knuddeligerem,knuddeligeren,knuddeligerer,knuddeligeres,knuddeligste,knuddeligstem,knuddeligsten,knuddeligster,knuddeligstes" }, "knuffig": { "form": "knuffig", "polarity": "0.0974", "pos": "JJ", "sense": "knuffige,knuffigem,knuffigen,knuffiger,knuffiges,knuffigere,knuffigerem,knuffigeren,knuffigerer,knuffigeres,knuffigste,knuffigstem,knuffigsten,knuffigster,knuffigstes" }, "kollegial": { "form": "kollegial", "polarity": "0.0809", "pos": "JJ", "sense": "kollegialer,kollegiales,kollegialere,kollegialen,kollegialem,kollegialeren,kollegialsten,kollegialstes,kollegialerem,kollegialster,kollegialste,kollegiale,kollegialeres,kollegialstem,kollegialerer" }, "komfortabel": { "form": "komfortabel", "polarity": "0.08", "pos": "JJ", "sense": "komfortabler,komfortables,komfortabelstes,komfortable,komfortabelster,komfortablem,komfortablen,komfortabelsten,komfortabelstem,komfortablerem,komfortableren,komfortablerer,komfortabelste,komfortableres,komfortablere" }, "kommod": { "form": "kommod", "polarity": "0.0040", "pos": "JJ", "sense": "kommodestem,kommodesten,kommoderem,kommoderen,kommodestes,kommodester,kommodere,kommodes,kommoder,kommoderes,kommodeste,kommoderer,kommode,kommoden,kommodem" }, "kommunikativ": { "form": "kommunikativ", "polarity": "0.0040", "pos": "JJ", "sense": "kommunikativerer,kommunikativste,kommunikativeres,kommunikativeren,kommunikativerem,kommunikativster,kommunikativstes,kommunikativen,kommunikativsten,kommunikativstem,kommunikatives,kommunikative,kommunikativer,kommunikativere,kommunikativem" }, "kompatibel": { "form": "kompatibel", "polarity": "0.0040", "pos": "JJ", "sense": "kompatibelstem,kompatibelsten,kompatibelster,kompatibelstes,kompatiblerer,kompatibleres,kompatibelste,kompatiblem,kompatiblen,kompatibles,kompatiblerem,kompatibler,kompatibleren,kompatiblere,kompatible" }, "kompensieren": { "form": "kompensieren", "polarity": "0.0040", "pos": "VB", "sense": "kompensierte,kompensierest,kompensierst,kompensierten,kompensiertest,kompensiere,kompensiert,kompensiertet,kompensieret" }, "kompetent": { "form": "kompetent", "polarity": "0.0789", "pos": "JJ", "sense": "kompetentesten,kompetentestem,kompetentestes,kompetentester,kompetentere,kompetenten,kompetenteres,kompetentem,kompetenterer,kompetentes,kompetenter,kompetente,kompetenteste,kompetenteren,kompetenterem" }, "komplett": { "form": "komplett", "polarity": "0.0040", "pos": "JJ", "sense": "komplettester,kompletteste,komplettestes,kompletter,komplettes,komplettem,kompletten,kompletteres,kompletterer,komplette,komplettesten,kompletterem,komplettere,komplettestem,kompletteren" }, "konfliktfrei": { "form": "konfliktfrei", "polarity": "0.0040", "pos": "JJ", "sense": "konfliktfreieres,konfliktfreies,konfliktfreiste,konfliktfreie,konfliktfreierer,konfliktfreieren,konfliktfreierem,konfliktfreiere,konfliktfreistem,konfliktfreister,konfliktfreisten,konfliktfreistes,konfliktfreien,konfliktfreiem,konfliktfreier" }, "kongenial": { "form": "kongenial", "polarity": "0.0040", "pos": "JJ", "sense": "kongenialste,kongenialeren,kongenialere,kongenialstem,kongenialerem,kongenialster,kongenialstes,kongenialsten,kongeniale,kongenialerer,kongenialeres,kongenialen,kongenialem,kongeniales,kongenialer" }, "konkret": { "form": "konkret", "polarity": "0.0040", "pos": "JJ", "sense": "konkreteres,konkretere,konkreterer,konkreteste,konkreteren,konkreterem,konkretestem,konkretesten,konkrete,konkretester,konkretestes,konkretes,konkreter,konkreten,konkretem" }, "konkurrenzfähig": { "form": "konkurrenzfähig", "polarity": "0.0040", "pos": "JJ", "sense": "konkurrenzfähige,konkurrenzfähigere,konkurrenzfähigste,konkurrenzfähigem,konkurrenzfähigsten,konkurrenzfähigen,konkurrenzfähigstem,konkurrenzfähigerem,konkurrenzfähigstes,konkurrenzfähigeren,konkurrenzfähigster,konkurrenzfähiger,konkurrenzfähiges,konkurrenzfähigerer,konkurrenzfähigeres" }, "konsequent": { "form": "konsequent", "polarity": "0.0040", "pos": "JJ", "sense": "konsequenterem,konsequenteren,konsequentes,konsequenter,konsequenterer,konsequenteste,konsequentestes,konsequenteres,konsequentester,konsequentem,konsequentesten,konsequentestem,konsequente,konsequenten,konsequentere" }, "konsistent": { "form": "konsistent", "polarity": "0.0040", "pos": "JJ", "sense": "konsistenterem,konsistentestes,konsistentester,konsistenten,konsistentem,konsistenteste,konsistenter,konsistenteren,konsistentes,konsistente,konsistenteres,konsistenterer,konsistentesten,konsistentere,konsistentestem" }, "konsolidieren": { "form": "konsolidieren", "polarity": "0.0040", "pos": "VB", "sense": "konsolidierte,konsolidierest,konsolidieret,konsolidiert,konsolidiertest,konsolidiere,konsolidiertet,konsolidierst,konsolidierten" }, "konstant": { "form": "konstant", "polarity": "0.087", "pos": "JJ", "sense": "konstantester,konstantestem,konstantesten,konstanteste,konstantestes,konstantes,konstanterer,konstanter,konstanteres,konstantere,konstanterem,konstanteren,konstante,konstantem,konstanten" }, "konstruktiv": { "form": "konstruktiv", "polarity": "0.0894", "pos": "JJ", "sense": "konstruktivsten,konstruktives,konstruktiver,konstruktivstem,konstruktive,konstruktivere,konstruktivstes,konstruktiveres,konstruktivster,konstruktiverer,konstruktiven,konstruktivem,konstruktiveren,konstruktiverem,konstruktivste" }, "konsultieren": { "form": "konsultieren", "polarity": "0.0040", "pos": "VB", "sense": "konsultierest,konsultierten,konsultierst,konsultiertet,konsultierte,konsultieret,konsultiertest,konsultiere,konsultiert" }, "kontinuierlich": { "form": "kontinuierlich", "polarity": "0.0040", "pos": "JJ", "sense": "kontinuierliches,kontinuierlichstes,kontinuierlichster,kontinuierlichen,kontinuierlicheres,kontinuierlichsten,kontinuierlichem,kontinuierlicherer,kontinuierlichstem,kontinuierlicher,kontinuierlicheren,kontinuierlicherem,kontinuierlichste,kontinuierlichere,kontinuierliche" }, "konzertiert": { "form": "konzertiert", "polarity": "0.0040", "pos": "VB", "sense": "konzertierte,konzertiertem,konzertierten,konzertierter,konzertiertes,konzertiertere,konzertierterem,konzertierteren,konzertierterer,konzertierteres,konzertierteste,konzertiertestem,konzertiertesten,konzertiertester,konzertiertestes" }, "kooperativ": { "form": "kooperativ", "polarity": "0.0040", "pos": "JJ", "sense": "kooperativere,kooperativeren,kooperativstes,kooperativeres,kooperativster,kooperativerer,kooperative,kooperatives,kooperativerem,kooperativsten,kooperativer,kooperativstem,kooperativem,kooperativen,kooperativste" }, "kooperieren": { "form": "kooperieren", "polarity": "0.0040", "pos": "VB", "sense": "kooperiere,kooperierst,kooperiert,kooperierest,kooperieret,kooperierte,kooperiertest,kopperierten,kooperiertet" }, "koordinieren": { "form": "koordinieren", "polarity": "0.0040", "pos": "VB", "sense": "koordiniere,koordinierst,koordiniert,koordinierest,koordinieret,koordinierte,koordiniertest,koordinierten,koordiniertet" }, "koordiniert": { "form": "koordiniert", "polarity": "0.0040", "pos": "JJ", "sense": "koordinierte,koordiniertem,koordinierten,koordinierter,koordiniertes" }, "korrekt": { "form": "korrekt", "polarity": "0.0040", "pos": "JJ", "sense": "korrektestem,korrektesten,korrekteste,korrekteren,korrektestes,korrekteres,korrekterer,korrektester,korrektes,korrektere,korrektem,korrekterem,korrekte,korrekten,korrekter" }, "kostbar": { "form": "kostbar", "polarity": "0.0777", "pos": "JJ", "sense": "kostbare,kostbarere,kostbarstes,kostbarer,kostbareres,kostbarster,kostbarerer,kostbarsten,kostbares,kostbarste,kostbarerem,kostbarstem,kostbaren,kostbarem,kostbareren" }, "kostengünstig": { "form": "kostengünstig", "polarity": "0.0040", "pos": "JJ", "sense": "kostengünstiges,kostengünstigere,kostengünstigeres,kostengünstiger,kostengünstigerer,kostengünstige,kostengünstigem,kostengünstigen,kostengünstigeren,kostengünstigste,kostengünstigstem,kostengünstigsten,kostengünstigstes,kostengünstigster,kostengünstigerem" }, "kostenlos": { "form": "kostenlos", "polarity": "0.0040", "pos": "JJ", "sense": "kostenlose,kostenlosem,kostenlosen,kostenloser,kostenloses" }, "kraftvoll": { "form": "kraftvoll", "polarity": "0.2214", "pos": "JJ", "sense": "kraftvollstes,kraftvollste,kraftvolleren,kraftvollerem,kraftvollster,kraftvollere,kraftvollerer,kraftvollem,kraftvolle,kraftvollen,kraftvollsten,kraftvollstem,kraftvoller,kraftvolleres,kraftvolles" }, "kreativ": { "form": "kreativ", "polarity": "0.5865", "pos": "JJ", "sense": "kreative,kreativste,kreatives,kreativstem,kreativer,kreativeres,kreativerer,kreativster,kreativen,kreativstes,kreativem,kreativeren,kreativere,kreativsten,kreativerem" }, "kräftig": { "form": "kräftig", "polarity": "0.2408", "pos": "JJ", "sense": "kräftige,kräftigere,kräftigerem,kräftigeren,kräftigste,kräftigster,kräftigerer,kräftigstem,kräftigsten,kräftigeres,kräftigen,kräftigem,kräftiges,kräftiger,kräftigstes" }, "kulant": { "form": "kulant", "polarity": "0.0040", "pos": "JJ", "sense": "kulanten,kulantestem,kulantesten,kulantem,kulantere,kulanteste,kulantestes,kulante,kulantester,kulantes,kulanter,kulanterem,kulanteren,kulanteres,kulanterer" }, "kultiviert": { "form": "kultiviert", "polarity": "0.0731", "pos": "VB", "sense": "kultivierterer,kultiviertem,kultivierteren,kultivierterem,kultivierten,kultiviertes,kultivierter,kultivierteste,kultivierteres,kultiviertesten,kultiviertestem,kultiviertestes,kultiviertester,kultivierte,kultiviertere" }, "kunstreich": { "form": "kunstreich", "polarity": "0.0040", "pos": "JJ", "sense": "kunstreiches,kunstreichstes,kunstreichster,kunstreicher,kunstreichsten,kunstreicherem,kunstreichste,kunstreiche,kunstreichere,kunstreicheren,kunstreicherer,kunstreicheres,kunstreichem,kunstreichen,kunstreichstem" }, "kunstvoll": { "form": "kunstvoll", "polarity": "0.0040", "pos": "JJ", "sense": "kunstvollere,kunstvolleres,kunstvollerer,kunstvolleren,kunstvollerem,kunstvoller,kunstvollste,kunstvolles,kunstvollstem,kunstvollsten,kunstvolle,kunstvollster,kunstvollstes,kunstvollen,kunstvollem" }, "kurieren": { "form": "kurieren", "polarity": "0.0040", "pos": "VB", "sense": "kurierte,kuriertet,kuriertest,kurierst,kuriert,kurieret,kuriere,kurierest,kurierten" }, "kümmern": { "form": "kümmern", "polarity": "0.2016", "pos": "VB", "sense": "kümmert,kümmere,kümmerte,gekümmert,kümmertet,kümmerst,kümmertest,kümmeren,kümmerten" }, "künstlerisch": { "form": "künstlerisch", "polarity": "0.0040", "pos": "JJ", "sense": "künstlerisches,künstlerischsten,künstlerische,künstlerischstem,künstlerischere,künstlerischem,künstlerischerem,künstlerischen,künstlerischster,künstlerischstes,künstlerischer,künstlerischeren,künstlerischerer,künstlerischeres,künstlerischste" }, "lachen": { "form": "lachen", "polarity": "0.0135", "pos": "VB", "sense": "lachte,lachten,gelacht,lachtest,lachet,lachest,lachtet,lacht,lache,lachst" }, "langlebig": { "form": "langlebig", "polarity": "0.2026", "pos": "JJ", "sense": "langlebigeres,langlebigerer,langlebige,langlebigem,langlebigen,langlebigste,langlebigstes,langlebiger,langlebiges,langlebigster,langlebigeren,langlebigere,langlebigerem,langlebigsten,langlebigstem" }, "lautstark": { "form": "lautstark", "polarity": "0.0040", "pos": "JJ", "sense": "lautstarke,lautstarkem,lautstarken,lautstarker,lautstarkes,lautstärkere,lautstärkerem,lautstärkeren,lautstärkerer,lautstärkeres,lautstärkste,lautstärkstem,lautstärksten,lautstärkster,lautstärkstes" }, "lebendig": { "form": "lebendig", "polarity": "0.0947", "pos": "JJ", "sense": "lebendigstes,lebendigster,lebendiger,lebendiges,lebendigem,lebendigsten,lebendigen,lebendigstem,lebendige,lebendigste,lebendigere,lebendigerem,lebendigeren,lebendigerer,lebendigeres" }, "lebensfähig": { "form": "lebensfähig", "polarity": "0.0040", "pos": "JJ", "sense": "lebensfähigem,lebensfähigste,lebensfähigeren,lebensfähigerem,lebensfähige,lebensfähigster,lebensfähigstes,lebensfähigerer,lebensfähigstem,lebensfähigsten,lebensfähigeres,lebensfähigere,lebensfähiges,lebensfähiger,lebensfähigen" }, "lebhaft": { "form": "lebhaft", "polarity": "0.2146", "pos": "JJ", "sense": "lebhaftere,lebhaften,lebhaftestes,lebhaftem,lebhaftester,lebhaftes,lebhafte,lebhafter,lebhafterem,lebhafteren,lebhaftestem,lebhaftesten,lebhafteste,lebhafterer,lebhafteres" }, "legal": { "form": "legal", "polarity": "0.0040", "pos": "JJ", "sense": "legalste,legalstes,legale,legalerem,legaleren,legalsten,legalstem,legales,legaler,legalster,legalem,legalere,legalen,legalerer,legaleres" }, "legendär": { "form": "legendär", "polarity": "0.0040", "pos": "JJ", "sense": "legendärerem,legendäreren,legendäreres,legendärere,legendärerer,legendärster,legendärstes,legendäre,legendäres,legendärer,legendärste,legendären,legendärstem,legendärsten,legendärem" }, "legitim": { "form": "legitim", "polarity": "0.0040", "pos": "JJ", "sense": "legitimsten,legitimstem,legitime,legitimster,legitimstes,legitimem,legitimen,legitimeres,legitimste,legitimeren,legitimerem,legitimere,legitimerer,legitimer,legitimes" }, "leicht": { "form": "leicht", "polarity": "0.0040", "pos": "JJ", "sense": "leichte,leichteste,leichteren,leichterem,leichtere,leichterer,leichteres,leichtestem,leichtesten,leichten,leichtester,leichtes,leichtestes,leichter,leichtem" }, "leidenschaftlich": { "form": "leidenschaftlich", "polarity": "0.1988", "pos": "JJ", "sense": "leidenschaftlicherem,leidenschaftlichem,leidenschaftlichere,leidenschaftlichen,leidenschaftlicheren,leidenschaftliche,leidenschaftlichstem,leidenschaftlichste,leidenschaftlichsten,leidenschaftlicheres,leidenschaftlicherer,leidenschaftliches,leidenschaftlicher,leidenschaftlichster,leidenschaftlichstes" }, "leistungsfähig": { "form": "leistungsfähig", "polarity": "0.3222", "pos": "JJ", "sense": "leistungsfähigsten,leistungsfähigen,leistungsfähige,leistungsfähigem,leistungsfähiger,leistungsfähigerem,leistungsfähigstem,leistungsfähigeren,leistungsfähigerer,leistungsfähigeres,leistungsfähigere,leistungsfähigste,leistungsfähigstes,leistungsfähiges,leistungsfähigster" }, "leistungsstark": { "form": "leistungsstark", "polarity": "0.0040", "pos": "JJ", "sense": "leistungsstarke,leistungsstarkem,leistungsstarken,leistungsstarker,leistungsstarkes,leistungsstärkere,leistungsstärkerem,leistungsstärkeren,leistungsstärkerer,leistungsstärkeres,leistungsstärkste,leistungsstärkstem,leistungsstärksten,leistungsstärkster,leistungsstärkstes" }, "lernen": { "form": "lernen", "polarity": "0.2492", "pos": "VB", "sense": "lerntest,lernest,lernten,lernt,lerntet,lernte,gelernt,lernst,lernet,lerne" }, "leuchtend": { "form": "leuchtend", "polarity": "0.0821", "pos": "JJ", "sense": "leuchtende,leuchtendem,leuchtenden,leuchtender,leuchtendes,leuchtendere,leuchtenderem,leuchtenderen,leuchtenderer,leuchtenderes,leuchtendste,leuchtendstem,leuchtendsten,leuchtendster,leuchtendstes" }, "leutselig": { "form": "leutselig", "polarity": "0.0040", "pos": "JJ", "sense": "leutseligere,leutseligster,leutseligstes,leutseligsten,leutseligstem,leutseligste,leutseligeren,leutseligerem,leutseligeres,leutseligerer,leutselige,leutseligem,leutseligen,leutseliges,leutseliger" }, "liberal": { "form": "liberal", "polarity": "0.0040", "pos": "JJ", "sense": "liberaleres,liberale,liberalstem,liberalsten,liberaleren,liberalster,liberalerem,liberalstes,liberalerer,liberaler,liberalere,liberales,liberalste,liberalen,liberalem" }, "lieb": { "form": "lieb", "polarity": "0.1131", "pos": "JJ", "sense": "liebster,liebstes,liebes,liebere,lieben,liebem,lieberen,liebstem,lieber,lieberes,lieberer,liebsten,liebe,lieberem,liebste" }, "liebenswert": { "form": "liebenswert", "polarity": "0.2077", "pos": "JJ", "sense": "liebenswertesten,liebenswertestem,liebenswerteres,liebenswerterer,liebenswertem,liebenswerterem,liebenswerten,liebenswerteren,liebenswerter,liebenswertere,liebenswertes,liebenswerteste,liebenswerte,liebenswertester,liebenswertestes" }, "liebenswürdig": { "form": "liebenswürdig", "polarity": "0.2001", "pos": "JJ", "sense": "liebenswürdigsten,liebenswürdigstem,liebenswürdigem,liebenswürdigste,liebenswürdigen,liebenswürdigeres,liebenswürdige,liebenswürdigstes,liebenswürdiger,liebenswürdigerer,liebenswürdiges,liebenswürdigerem,liebenswürdigster,liebenswürdigere,liebenswürdigeren" }, "liebevoll": { "form": "liebevoll", "polarity": "0.4657", "pos": "JJ", "sense": "liebevolleren,liebevollstem,liebevollsten,liebevolle,liebevollerem,liebevollerer,liebevolleres,liebevollere,liebevollste,liebevollen,liebevollem,liebevolles,liebevoller,liebevollstes,liebevollster" }, "lindern": { "form": "lindern", "polarity": "0.0040", "pos": "VB", "sense": "lindertest,linderten,gelindert,linderte,linderen,linderst,lindert,lindere,lindertet" }, "loben": { "form": "loben", "polarity": "0.4445", "pos": "VB", "sense": "lobten,lobtest,lobtet,gelobt,lobt,lobest,lobe,lobte,lobet,lobst" }, "lobenswert": { "form": "lobenswert", "polarity": "0.0821", "pos": "JJ", "sense": "lobenswerte,lobenswerteres,lobenswertem,lobenswertere,lobenswerterer,lobenswerten,lobenswerterem,lobenswerteren,lobenswerter,lobenswertes,lobenswerteste,lobenswertesten,lobenswertestem,lobenswertester,lobenswertestes" }, "locker": { "form": "locker", "polarity": "0.2381", "pos": "JJ", "sense": "lockreren,lockererer,lockrerem,lockereres,lockere,lockrer,lockreres,lockrere,lockersten,lockerere,lockeres,lockerer,lockerstem,lockrerer,lockerste,lockerstes,lockerster,lockereren,lockeren,lockererem,lockerem" }, "logisch": { "form": "logisch", "polarity": "0.0936", "pos": "JJ", "sense": "logischstes,logischster,logischere,logischen,logischste,logischem,logisches,logischer,logischerer,logischeres,logischsten,logischerem,logische,logischeren,logischstem" }, "lohnen": { "form": "lohnen", "polarity": "0.0040", "pos": "VB", "sense": "lohntest,lohnet,gelohnt,lohntet,lohnten,lohnt,lohne,lohnst,lohnest,lohnte" }, "lohnend": { "form": "lohnend", "polarity": "0.1875", "pos": "JJ", "sense": "lohnendem,lohnendere,lohnenderes,lohnenden,lohnenderer,lohnendste,lohnender,lohnenderen,lohnende,lohnendstem,lohnenderem,lohnendsten,lohnendstes,lohnendster,lohnendes" }, "loyal": { "form": "loyal", "polarity": "0.0040", "pos": "JJ", "sense": "loyalste,loyale,loyaleren,loyalerem,loyalerer,loyalstes,loyaleres,loyalster,loyalere,loyalstem,loyalsten,loyalen,loyalem,loyaler,loyales" }, "lukrativ": { "form": "lukrativ", "polarity": "0.0040", "pos": "JJ", "sense": "lukrativere,lukrativste,lukrativerer,lukrativeres,lukrativerem,lukrativeren,lukrative,lukratives,lukrativstem,lukrativsten,lukrativer,lukrativster,lukrativem,lukrativstes,lukrativen" }, "luxuriös": { "form": "luxuriös", "polarity": "0.0835", "pos": "JJ", "sense": "luxuriösem,luxuriösen,luxuriösere,luxuriöser,luxuriöses,luxuriöserem,luxuriösester,luxuriöseren,luxuriösestes,luxuriöserer,luxuriöseres,luxuriöseste,luxuriöse,luxuriösesten,luxuriösestem" }, "lächeln": { "form": "lächeln", "polarity": "0.3399", "pos": "VB", "sense": "lächele,lächle,lächelst,lächelt,lächlest,lächlet,lächelte,lächeltest,lächelten,lächeltet,gelächelt" }, "lässig": { "form": "lässig", "polarity": "0.2095", "pos": "JJ", "sense": "lässige,lässigem,lässigen,lässiger,lässiges,lässigere,lässigerem,lässigeren,lässigerer,lässigeres,lässigste,lässigstem,lässigsten,lässigster,lässigstes" }, "löblich": { "form": "löblich", "polarity": "0.0040", "pos": "JJ", "sense": "löblicherer,löblicheres,löblichstem,löblichen,löblichem,löblicheren,löblichsten,löblicher,löbliches,löblichster,löblichere,löblichstes,löbliche,löblichste,löblicherem" }, "lösen": { "form": "lösen", "polarity": "0.0040", "pos": "VB", "sense": "löstet,lösest,gelöst,löset,löstest,löste,löst,lösten,löse" }, "lückenlos": { "form": "lückenlos", "polarity": "0.0040", "pos": "JJ", "sense": "lückenlosestem,lückenlosem,lückenloserem,lückenloseren,lückenloseres,lückenlosen,lückenloserer,lückenlosere,lückenloser,lückenloses,lückenlosesten,lückenlose,lückenlosestes,lückenlosester,lückenloseste" }, "magisch": { "form": "magisch", "polarity": "0.0040", "pos": "JJ", "sense": "magischeres,magischerer,magischeren,magischstes,magischerem,magischster,magisches,magischere,magische,magischstem,magischer,magischsten,magischem,magischen,magischste" }, "majestätisch": { "form": "majestätisch", "polarity": "0.073", "pos": "JJ", "sense": "majestätische,majestätischstem,majestätischsten,majestätischstes,majestätischerer,majestätischeres,majestätischster,majestätischerem,majestätischeren,majestätischere,majestätischste,majestätischen,majestätisches,majestätischer,majestätischem" }, "makellos": { "form": "makellos", "polarity": "0.2", "pos": "JJ", "sense": "makelloses,makelloseren,makelloseres,makelloserer,makellosesten,makellosestem,makelloserem,makelloser,makelloseste,makellosester,makellosestes,makellosem,makellosen,makellose,makellosere" }, "malerisch": { "form": "malerisch", "polarity": "0.0753", "pos": "JJ", "sense": "malerischster,malerischstes,malerischerem,malerischem,malerischeren,malerischen,malerischerer,malerischste,malerischeres,malerischere,malerische,malerischer,malerisches,malerischstem,malerischsten" }, "markant": { "form": "markant", "polarity": "0.1935", "pos": "JJ", "sense": "markantere,markanteres,markanterer,markante,markanteren,markanter,markanterem,markanteste,markantestes,markantester,markantem,markanten,markantesten,markantestem,markantes" }, "massiv": { "form": "massiv", "polarity": "0.0040", "pos": "JJ", "sense": "massivstes,massiven,massivem,massiver,massives,massive,massiverem,massiveren,massivsten,massivstem,massiverer,massivster,massiveres,massivere,massivste" }, "maximal": { "form": "maximal", "polarity": "0.0040", "pos": "JJ", "sense": "maximalem,maximalen,maximalste,maximaleres,maximalerer,maximalstem,maximalster,maximalsten,maximalstes,maximaleren,maximalerem,maximale,maximales,maximaler,maximalere" }, "maximieren": { "form": "maximieren", "polarity": "0.0040", "pos": "VB", "sense": "maximierten,maximierest,maximierte,maximierst,maximieret,maximiert,maximiere,maximiertet,maximiertest" }, "meisterhaft": { "form": "meisterhaft", "polarity": "0.0040", "pos": "JJ", "sense": "meisterhaftes,meisterhafter,meisterhaftestes,meisterhafterem,meisterhaftester,meisterhaftestem,meisterhaftesten,meisterhafteren,meisterhafterer,meisterhafteres,meisterhaftem,meisterhaften,meisterhafte,meisterhafteste,meisterhaftere" }, "meisterlich": { "form": "meisterlich", "polarity": "0.0040", "pos": "JJ", "sense": "meisterlichem,meisterlichen,meisterlicher,meisterliches,meisterlichstes,meisterliche,meisterlichster,meisterlichstem,meisterlichsten,meisterlicherem,meisterlicheren,meisterlichere,meisterlichste,meisterlicherer,meisterlicheres" }, "menschenwürdig": { "form": "menschenwürdig", "polarity": "0.0040", "pos": "JJ", "sense": "menschenwürdigeren,menschenwürdigerem,menschenwürdigster,menschenwürdige,menschenwürdigerer,menschenwürdigstes,menschenwürdigeres,menschenwürdigsten,menschenwürdigstem,menschenwürdigere,menschenwürdigste,menschenwürdiger,menschenwürdiges,menschenwürdigem,menschenwürdigen" }, "menschlich": { "form": "menschlich", "polarity": "0.3324", "pos": "JJ", "sense": "menschlichstes,menschlichster,menschlichste,menschlichere,menschlicher,menschliches,menschlichem,menschlichen,menschlichsten,menschlicherer,menschlicheres,menschliche,menschlichstem,menschlicheren,menschlicherem" }, "messbar": { "form": "messbar", "polarity": "0.0040", "pos": "JJ", "sense": "messbare,messbarem,messbaren,messbarer,messbares,messbarere,messbarerem,messbareren,messbarerer,messbareres,messbarste,messbarstem,messbarsten,messbarster,messbarstes" }, "mild": { "form": "mild", "polarity": "0.3303", "pos": "JJ", "sense": "milde,mildem,milden,milder,mildes,mildere,milderem,milderen,milderer,milderes,mildeste,mildestem,mildesten,mildester,mildestes" }, "miteinander": { "form": "miteinander", "polarity": "0.3697", "pos": "RB", "sense": "" }, "mitfühlen": { "form": "mitfühlen", "polarity": "0.0922", "pos": "VB", "sense": "mitfühltest,mitgefühlt,mitfühlt,mitfühlet,mitfühlten,mitfühle,mitfühlest,mitfühltet,mitfühlst,mitfühlte" }, "mitmenschlich": { "form": "mitmenschlich", "polarity": "0.0040", "pos": "JJ", "sense": "mitmenschlichere,mitmenschliches,mitmenschlichsten,mitmenschlichstem,mitmenschliche,mitmenschlicher,mitmenschlichste,mitmenschlichstes,mitmenschlichster,mitmenschlichem,mitmenschlichen,mitmenschlicherem,mitmenschlicheren,mitmenschlicheres,mitmenschlicherer" }, "mobil": { "form": "mobil", "polarity": "0.0040", "pos": "JJ", "sense": "mobilerer,mobilste,mobilsten,mobileres,mobilstem,mobilerem,mobilere,mobileren,mobilen,mobilem,mobiler,mobiles,mobilstes,mobilster,mobile" }, "mobilisieren": { "form": "mobilisieren", "polarity": "0.0040", "pos": "VB", "sense": "mobilisierst,mobilisierte,mobilisierest,mobilisierten,mobilisiertet,mobilisiertest,mobilisieret,mobilisiere,mobilisiert" }, "modern": { "form": "modern", "polarity": "0.2287", "pos": "JJ", "sense": "moderneren,modernerem,modernem,modernes,moderner,modernerer,modernen,moderne,moderneres,modernstes,modernste,modernster,modernstem,modernsten,modernere" }, "modernisieren": { "form": "modernisieren", "polarity": "0.0040", "pos": "VB", "sense": "modernisiere,modernisierst,modernisiert,modernisierest,modernisieret,modernisierte,modernisiertest,modernisierten,modernisiertet" }, "mondän": { "form": "mondän", "polarity": "0.0040", "pos": "JJ", "sense": "mondänsten,mondäneren,mondänes,mondäneres,mondänste,mondänerer,mondänstem,mondänerem,mondäne,mondänem,mondänen,mondänstes,mondänere,mondänster,mondäner" }, "monumental": { "form": "monumental", "polarity": "0.0040", "pos": "JJ", "sense": "monumentalere,monumentalerem,monumentaleres,monumentalstem,monumentalerer,monumentaler,monumentalste,monumentaleren,monumentalem,monumentalsten,monumentalen,monumentalstes,monumentalster,monumentales,monumentale" }, "moralisch": { "form": "moralisch", "polarity": "0.0040", "pos": "JJ", "sense": "moralischstes,moralischster,moralischste,moralischere,moralischstem,moralischerem,moralischsten,moralischeres,moralischerer,moralisches,moralischeren,moralischen,moralischem,moralische,moralischer" }, "motivieren": { "form": "motivieren", "polarity": "0.2248", "pos": "VB", "sense": "motiviere,motivierst,motiviert,motivierest,motivieret,motivierte,motiviertest,motivierten,motiviertet" }, "motiviert": { "form": "motiviert", "polarity": "0.3541", "pos": "JJ", "sense": "motivierteres,motiviertestes,motivierterem,motiviertester,motivierteren,motivierte,motiviertesten,motivierterer,motiviertestem,motiviertes,motivierter,motivierteste,motiviertere,motiviertem,motivierten" }, "mustergültig": { "form": "mustergültig", "polarity": "0.0040", "pos": "JJ", "sense": "mustergültigem,mustergültigstem,mustergültigsten,mustergültigen,mustergültigste,mustergültigster,mustergültiges,mustergültiger,mustergültige,mustergültigstes,mustergültigerem,mustergültigeren,mustergültigere,mustergültigerer,mustergültigeres" }, "mutig": { "form": "mutig", "polarity": "0.3435", "pos": "JJ", "sense": "mutige,mutiges,mutigstem,mutigsten,mutigere,mutigster,mutigen,mutigstes,mutigem,mutigerer,mutigeres,mutigste,mutiger,mutigerem,mutigeren" }, "mächtig": { "form": "mächtig", "polarity": "0.2277", "pos": "JJ", "sense": "mächtigste,mächtigstem,mächtigerem,mächtiger,mächtigere,mächtiges,mächtigeren,mächtigerer,mächtigeres,mächtigsten,mächtigem,mächtigen,mächtigster,mächtigstes,mächtige" }, "mögen": { "form": "mögen", "polarity": "0.345", "pos": "VB", "sense": "mag,magst,mögt,möge,mögest,möget,mochte,mochtest,mochten,mochtet,möchte,möchtest,möchten,möchtet,gemocht" }, "möglich": { "form": "möglich", "polarity": "0.0040", "pos": "JJ", "sense": "mögliche,möglichem,möglichen,möglicher,mögliches" }, "mühelos": { "form": "mühelos", "polarity": "0.0040", "pos": "JJ", "sense": "mühelosere,müheloserer,müheloseres,mühelosester,müheloseren,mühelosestem,mühelosesten,müheloserem,müheloser,müheloses,mühelosen,mühelosem,mühelose,müheloseste,mühelosestes" }, "nachahmenswert": { "form": "nachahmenswert", "polarity": "0.0818", "pos": "JJ", "sense": "nachahmenswerteren,nachahmenswertesten,nachahmenswerterem,nachahmenswertestem,nachahmenswertem,nachahmenswerterer,nachahmenswerten,nachahmenswerteres,nachahmenswertester,nachahmenswerte,nachahmenswertestes,nachahmenswerter,nachahmenswertere,nachahmenswertes,nachahmenswerteste" }, "nachhaltig": { "form": "nachhaltig", "polarity": "0.0040", "pos": "JJ", "sense": "nachhaltigstem,nachhaltigsten,nachhaltigstes,nachhaltigster,nachhaltigeren,nachhaltigere,nachhaltigerem,nachhaltige,nachhaltiges,nachhaltiger,nachhaltigen,nachhaltigem,nachhaltigerer,nachhaltigste,nachhaltigeres" }, "nah": { "form": "nah", "polarity": "0.2267", "pos": "JJ", "sense": "nahe,nahem,nahen,naher,nahes,nähere,näherem,näheren,näherer,näheres,nächste,nächstem,nächsten,nächster,nächstes" }, "namhaft": { "form": "namhaft", "polarity": "0.0040", "pos": "JJ", "sense": "namhaftesten,namhaftestem,namhafte,namhafteste,namhaftere,namhafteres,namhaftestes,namhafterer,namhaftester,namhafteren,namhaften,namhafterem,namhaftem,namhaftes,namhafter" }, "nennenswert": { "form": "nennenswert", "polarity": "0.0040", "pos": "JJ", "sense": "nennenswerteres,nennenswerterer,nennenswerterem,nennenswertere,nennenswerteren,nennenswerte,nennenswertestem,nennenswertes,nennenswerter,nennenswertesten,nennenswerten,nennenswertestes,nennenswertester,nennenswertem,nennenswerteste" }, "nett": { "form": "nett", "polarity": "0.1405", "pos": "JJ", "sense": "netteren,netterem,nette,netten,netteste,netter,nettes,nettere,nettestem,nettem,nettestes,nettester,nettesten,netterer,netteres" }, "neu": { "form": "neu", "polarity": "0.0040", "pos": "JJ", "sense": "neuem,neuen,neustem,neusten,neuer,neueste,neustes,neuster,neues,neuerem,neue,neueren,neuester,neueres,neuste,neuestes,neuere,neuerer,neuesten,neuestem" }, "niedlich": { "form": "niedlich", "polarity": "0.0987", "pos": "JJ", "sense": "niedlicherer,niedlicheres,niedlichsten,niedlicherem,niedlicheren,niedlichstem,niedlichster,niedlichstes,niedlichste,niedliche,niedlicher,niedliches,niedlichen,niedlichem,niedlichere" }, "nutzbringend": { "form": "nutzbringend", "polarity": "0.0040", "pos": "JJ", "sense": "nutzbringenderes,nutzbringenderer,nutzbringendem,nutzbringenden,nutzbringendstem,nutzbringender,nutzbringendsten,nutzbringendstes,nutzbringendere,nutzbringendster,nutzbringendes,nutzbringendste,nutzbringenderem,nutzbringende,nutzbringenderen" }, "nähren": { "form": "nähren", "polarity": "0.0040", "pos": "VB", "sense": "nährtest,nährst,nährte,nähret,nährten,nährt,nähre,nährtet,nährest,genährt" }, "nützen": { "form": "nützen", "polarity": "0.0040", "pos": "VB", "sense": "nütztest,nütze,nützet,nützt,nützest,nütztet,nützten,nützte,genützt" }, "nützlich": { "form": "nützlich", "polarity": "0.2302", "pos": "JJ", "sense": "nützlicherem,nützlichste,nützlichere,nützlichem,nützlicheren,nützlichen,nützlichsten,nützlichster,nützlichstes,nützlichstem,nützlicher,nützlicheres,nützliche,nützlicherer,nützliches" }, "offensichtlich": { "form": "offensichtlich", "polarity": "0.0040", "pos": "JJ", "sense": "offensichtlichsten,offensichtlichste,offensichtlichstem,offensichtlicherer,offensichtlicheres,offensichtlichen,offensichtliche,offensichtlichem,offensichtlicherem,offensichtlicheren,offensichtlichere,offensichtlicher,offensichtliches,offensichtlichster,offensichtlichstes" }, "optimal": { "form": "optimal", "polarity": "0.2162", "pos": "JJ", "sense": "optimale,optimalem,optimalen,optimaler,optimales,optimalere,optimalerem,optimaleren,optimalerer,optimaleres,optimalste,optimalstem,optimalsten,optimalster,optimalstes" }, "optimistisch": { "form": "optimistisch", "polarity": "0.0040", "pos": "JJ", "sense": "optimistische,optimistischem,optimistischen,optimistischer,optimistisches,optimistischere,optimistischerem,optimistischeren,optimistischerer,optimistischeres,optimistischste,optimistischstem,optimistischsten,optimistischster,optimistischstes" }, "ordentlich": { "form": "ordentlich", "polarity": "0.0073", "pos": "JJ", "sense": "ordentlichen,ordentlichem,ordentlicheren,ordentliches,ordentlicher,ordentlicherem,ordentlicheres,ordentlicherer,ordentlichste,ordentliche,ordentlichstes,ordentlichster,ordentlichstem,ordentlichsten,ordentlichere" }, "ordnungsgemäß": { "form": "ordnungsgemäß", "polarity": "0.0040", "pos": "JJ", "sense": "ordnungsgemäße,ordnungsgemäßes,ordnungsgemäßer,ordnungsgemäßem,ordnungsgemäßen,ordnungsgemäßten,ordnungsgemäßtem,ordnungsgemäßter,ordnungsgemäßtes,ordnungsgemäßerer,ordnungsgemäßeres,ordnungsgemäßerem,ordnungsgemäßt,ordnungsgemäßere,ordnungsgemäßeren,ordnungsgemäßte" }, "original": { "form": "original", "polarity": "0.0040", "pos": "JJ", "sense": "originale,originalem,originalen,originaler,originales,originalere,originalerem,originaleren,originalerer,originaleres,originalste,originalstem,originalsten,originalster,originalstes" }, "packend": { "form": "packend", "polarity": "0.0040", "pos": "JJ", "sense": "packende,packendem,packenden,packender,packendes,packendere,packenderem,packenderen,packenderer,packenderes,packendste,packendstem,packendsten,packendster,packendstes" }, "paradiesisch": { "form": "paradiesisch", "polarity": "0.2068", "pos": "JJ", "sense": "paradiesisches,paradiesischstem,paradiesischerem,paradiesischsten,paradiesischerer,paradiesischeres,paradiesischeren,paradiesische,paradiesischste,paradiesischster,paradiesischen,paradiesischstes,paradiesischem,paradiesischer,paradiesischere" }, "partnerschaftlich": { "form": "partnerschaftlich", "polarity": "0.0040", "pos": "JJ", "sense": "partnerschaftlichste,partnerschaftlichem,partnerschaftlichen,partnerschaftlicheres,partnerschaftlichstes,partnerschaftlicherer,partnerschaftlicher,partnerschaftliches,partnerschaftlicherem,partnerschaftlicheren,partnerschaftliche,partnerschaftlichster,partnerschaftlichere,partnerschaftlichsten,partnerschaftlichstem" }, "passend": { "form": "passend", "polarity": "0.1201", "pos": "JJ", "sense": "passende,passendem,passenden,passender,passendes,passendere,passenderem,passenderen,passenderer,passenderes,passendste,passendstem,passendsten,passendster,passendstes" }, "perfekt": { "form": "perfekt", "polarity": "0.7299", "pos": "JJ", "sense": "perfekterer,perfekteren,perfektes,perfekter,perfekterem,perfektester,perfektestes,perfektem,perfekten,perfektesten,perfekteres,perfekteste,perfektestem,perfektere,perfekte" }, "pflegen": { "form": "pflegen", "polarity": "0.2325", "pos": "VB", "sense": "pflegst,pflegten,pflegtest,pflegt,pflege,pflegte,pflegest,pfleget,pflegtet,gepflegt" }, "phantasievoll": { "form": "phantasievoll", "polarity": "0.3064", "pos": "JJ", "sense": "phantasievollerem,phantasievoller,phantasievollere,phantasievollstem,phantasievolles,phantasievolleren,phantasievollstes,phantasievollster,phantasievollste,phantasievollsten,phantasievollerer,phantasievolleres,phantasievolle,phantasievollen,phantasievollem" }, "phantastisch": { "form": "phantastisch", "polarity": "0.565", "pos": "JJ", "sense": "phantastische,phantastischem,phantastischen,phantastischer,phantastisches,phantastischere,phantastischerem,phantastischeren,phantastischerer,phantastischeres,phantastischste,phantastischstem,phantastischsten,phantastischster,phantastischstes" }, "phänomenal": { "form": "phänomenal", "polarity": "0.08", "pos": "JJ", "sense": "phänomenalen,phänomenalem,phänomenale,phänomenalster,phänomenalstes,phänomenalste,phänomenaleres,phänomenalerer,phänomenalerem,phänomenaleren,phänomenales,phänomenalsten,phänomenalstem,phänomenaler,phänomenalere" }, "planmäßig": { "form": "planmäßig", "polarity": "0.0040", "pos": "JJ", "sense": "planmäßigerem,planmäßigstem,planmäßigsten,planmäßigeren,planmäßigste,planmäßigerer,planmäßigstes,planmäßigeres,planmäßigere,planmäßigster,planmäßige,planmäßigem,planmäßigen,planmäßiger,planmäßiges" }, "planvoll": { "form": "planvoll", "polarity": "0.0040", "pos": "JJ", "sense": "planvollstes,planvollster,planvoller,planvollerem,planvollen,planvollem,planvollste,planvolleren,planvolle,planvolleres,planvollerer,planvollere,planvollstem,planvollsten,planvolles" }, "plausibel": { "form": "plausibel", "polarity": "0.0040", "pos": "JJ", "sense": "plausiblere,plausible,plausibelstem,plausibelsten,plausibelste,plausibler,plausibles,plausiblem,plausibelstes,plausiblen,plausiblerem,plausibelster,plausibleren,plausiblerer,plausibleres" }, "pompös": { "form": "pompös", "polarity": "0.0040", "pos": "JJ", "sense": "pompöseste,pompösesten,pompösestes,pompösester,pompösem,pompösere,pompöseres,pompösestem,pompöse,pompöserer,pompöseren,pompöses,pompöser,pompöserem,pompösen" }, "populär": { "form": "populär", "polarity": "0.0040", "pos": "JJ", "sense": "populäre,populärem,populären,populärer,populäres,populärere,populärerem,populäreren,populärerer,populäreres,populärerste,populärerstem,populärersten,populärerster,populärerstes" }, "positiv": { "form": "positiv", "polarity": "0.0040", "pos": "JJ", "sense": "positive,positivem,positiven,positiver,positives,positivere,positiverem,positiveren,positiverer,positiveres" }, "potent": { "form": "potent", "polarity": "0.0864", "pos": "JJ", "sense": "potenteres,potenterer,potenteste,potentere,potentem,potenten,potentester,potentestes,potente,potentes,potentesten,potenter,potentestem,potenteren,potenterem" }, "prachtvoll": { "form": "prachtvoll", "polarity": "0.0040", "pos": "JJ", "sense": "prachtvollstes,prachtvolles,prachtvoller,prachtvollem,prachtvollen,prachtvolle,prachtvollere,prachtvollstem,prachtvollsten,prachtvolleres,prachtvollerer,prachtvollste,prachtvollster,prachtvollerem,prachtvolleren" }, "praktikabel": { "form": "praktikabel", "polarity": "0.0744", "pos": "JJ", "sense": "praktikable,praktikabler,praktikables,praktikableres,praktikablerer,praktikablen,praktikablem,praktikableren,praktikablerem,praktikabelste,praktikabelstem,praktikablere,praktikabelsten,praktikabelstes,praktikabelster" }, "praktisch": { "form": "praktisch", "polarity": "0.1026", "pos": "JJ", "sense": "praktische,praktischem,praktischen,praktischer,praktisches,praktischere,praktischste,praktischstem,praktischsten,praktischster,praktischstes" }, "prall": { "form": "prall", "polarity": "0.09", "pos": "JJ", "sense": "prallstem,prallsten,prallere,prallster,prallstes,prallem,pralleren,prallerem,prallerer,praller,pralleres,pralles,pralle,prallste,prallen" }, "preisgünstig": { "form": "preisgünstig", "polarity": "0.0040", "pos": "JJ", "sense": "preisgünstigen,preisgünstige,preisgünstigem,preisgünstigste,preisgünstiger,preisgünstigere,preisgünstiges,preisgünstigerer,preisgünstigeres,preisgünstigsten,preisgünstigeren,preisgünstigerem,preisgünstigstem,preisgünstigster,preisgünstigstes" }, "prima": { "form": "prima", "polarity": "0.5766", "pos": "JJ", "sense": "" }, "privilegiert": { "form": "privilegiert", "polarity": "0.0040", "pos": "VB", "sense": "privilegiertere,privilegierte,privilegiertes,privilegiertestem,privilegiertesten,privilegiertester,privilegierter,privilegierteren,privilegiertestes,privilegierten,privilegierterer,privilegiertem,privilegierteres,privilegierteste,privilegierterem" }, "problemlos": { "form": "problemlos", "polarity": "0.0040", "pos": "JJ", "sense": "problemlose,problemlosem,problemlosen,problemloser,problemloses,problemlosere,problemloserem,problemloseren,problemloserer,problemloseres,problemloseste,problemlosestem,problemlosesten,problemlosester,problemlosestes" }, "produktiv": { "form": "produktiv", "polarity": "0.0040", "pos": "JJ", "sense": "produktiveren,produktivster,produktiverem,produktivstes,produktiven,produktiver,produktiveres,produktivem,produktiverer,produktivere,produktives,produktive,produktivste,produktivsten,produktivstem" }, "professionell": { "form": "professionell", "polarity": "0.467", "pos": "JJ", "sense": "professionelle,professionellem,professionellen,professioneller,professionelles,professionellere,professionellerem,professionelleren,professionellerer,professionelleres,professionellste,professionellstem,professionellsten,professionellster,professionellstes" }, "profiliert": { "form": "profiliert", "polarity": "0.0040", "pos": "VB", "sense": "profiliertes,profilierter,profilierterem,profiliertem,profilierten,profilierteres,profilierterer,profiliertere,profiliertesten,profilierte,profilierteren,profiliertestem,profiliertestes,profiliertester,profilierteste" }, "profitabel": { "form": "profitabel", "polarity": "0.0040", "pos": "JJ", "sense": "profitablere,profitabelste,profitabelstes,profitablerer,profitabelster,profitableres,profitable,profitablen,profitabelsten,profitabelstem,profitabler,profitables,profitablem,profitableren,profitablerem" }, "profitieren": { "form": "profitieren", "polarity": "0.0040", "pos": "VB", "sense": "profitiere,profitierst,profitiert,profitierest,profitieret,profitierte,profitiertest,profitierten,profitiertet" }, "progressiv": { "form": "progressiv", "polarity": "0.0040", "pos": "JJ", "sense": "progressive,progressivem,progressiven,progressiver,progressives" }, "prominent": { "form": "prominent", "polarity": "0.0040", "pos": "JJ", "sense": "prominentem,prominenten,prominente,prominentere,prominenteste,prominenteres,prominenterer,prominenteren,prominentestem,prominentesten,prominentestes,prominentester,prominenterem,prominentes,prominenter" }, "protzig": { "form": "protzig", "polarity": "0.0040", "pos": "JJ", "sense": "protzige,protzigem,protzigsten,protzigen,protzigstem,protzigste,protzigster,protziges,protziger,protzigstes,protzigeren,protzigerem,protzigerer,protzigeres,protzigere" }, "prunkvoll": { "form": "prunkvoll", "polarity": "0.0040", "pos": "JJ", "sense": "prunkvolles,prunkvollster,prunkvoller,prunkvollstem,prunkvollsten,prunkvollen,prunkvollem,prunkvollste,prunkvolle,prunkvollerer,prunkvollstes,prunkvollere,prunkvolleres,prunkvollerem,prunkvolleren" }, "prächtig": { "form": "prächtig", "polarity": "0.335", "pos": "JJ", "sense": "prächtigem,prächtigste,prächtigen,prächtiger,prächtiges,prächtigerem,prächtigstem,prächtigsten,prächtigeren,prächtige,prächtigerer,prächtigeres,prächtigere,prächtigster,prächtigstes" }, "präzise": { "form": "präzise", "polarity": "0.0040", "pos": "JJ", "sense": "präzis,präzisem,präzisen,präziser,präzises,präzisere,präziserem,präziseren,präziserer,präziseres,präziseste,präzisestem,präzisesten,präzisester,präzisestes" }, "puppig": { "form": "puppig", "polarity": "0.0040", "pos": "JJ", "sense": "puppigen,puppigem,puppigster,puppigstes,puppigere,puppigeren,puppigstem,puppigsten,puppigerem,puppigerer,puppigeres,puppige,puppigste,puppiges,puppiger" }, "pünktlich": { "form": "pünktlich", "polarity": "0.086", "pos": "JJ", "sense": "pünktlichste,pünktlichsten,pünktlicheres,pünktlichstem,pünktlichem,pünktlichen,pünktlichere,pünktliche,pünktlicher,pünktlicheren,pünktlichstes,pünktlicherem,pünktliches,pünktlichster,pünktlicherer" }, "qualifizieren": { "form": "qualifizieren", "polarity": "0.0040", "pos": "VB", "sense": "qualifizierte,qualifiziere,qualifiziertet,qualifiziert,qualifiziertest,qualifizierest,qualifizieret,qualifizierten,qualifizierst" }, "qualifiziert": { "form": "qualifiziert", "polarity": "0.0040", "pos": "JJ", "sense": "qualifizierte,qualifizierteres,qualifiziertester,qualifizierterer,qualifizierteste,qualifiziertestes,qualifizierter,qualifiziertere,qualifizierteren,qualifizierterem,qualifiziertes,qualifiziertestem,qualifizierten,qualifiziertem,qualifiziertesten" }, "qualitativ": { "form": "qualitativ", "polarity": "0.0040", "pos": "JJ", "sense": "qualitativsten,qualitativeren,qualitativere,qualitativerer,qualitativstem,qualitativeres,qualitativstes,qualitativster,qualitativste,qualitative,qualitativen,qualitativem,qualitativer,qualitatives,qualitativerem" }, "qualitätsvoll": { "form": "qualitätsvoll", "polarity": "0.0040", "pos": "JJ", "sense": "qualitätsvolle,qualitätsvollem,qualitätsvollen" }, "quicklebendig": { "form": "quicklebendig", "polarity": "0.0040", "pos": "JJ", "sense": "quicklebendigerem,quicklebendigeren,quicklebendigstem,quicklebendigsten,quicklebendigerer,quicklebendigster,quicklebendige,quicklebendigeres,quicklebendigstes,quicklebendigste,quicklebendigem,quicklebendigen,quicklebendiges,quicklebendiger,quicklebendigere" }, "raffiniert": { "form": "raffiniert", "polarity": "0.0040", "pos": "VB", "sense": "raffinierter,raffinierten,raffiniertem,raffiniertere,raffiniertester,raffiniertesten,raffiniertestem,raffiniertestes,raffinierterem,raffinierteren,raffinierte,raffinierterer,raffiniertes,raffinierteres,raffinierteste" }, "rational": { "form": "rational", "polarity": "0.0040", "pos": "JJ", "sense": "rationale,rationalem,rationalen,rationaler,rationales,rationalere,rationalerem,rationaleren,rationalerer,rationaleres,rationalste,rationalstem,rationalsten,rationalster,rationalstes" }, "realistisch": { "form": "realistisch", "polarity": "0.2089", "pos": "JJ", "sense": "realistische,realistischem,realistischen,realistischer,realistisches,realistischere,realistischerem,realistischeren,realistischerer,realistischeres,realistischste,realistischstem,realistischsten,realistischster,realistischstes" }, "rechtlich": { "form": "rechtlich", "polarity": "0.0040", "pos": "JJ", "sense": "rechtliches,rechtlichsten,rechtlicher,rechtlichstes,rechtlichster,rechtlichem,rechtlichen,rechtlichst,rechtlichstem,rechtlichste,rechtlicherem,rechtlicheren,rechtlicherer,rechtliche,rechtlicheres,rechtlichere" }, "rechtmäßig": { "form": "rechtmäßig", "polarity": "0.0040", "pos": "JJ", "sense": "rechtmäßigem,rechtmäßigen,rechtmäßiger,rechtmäßiges,rechtmäßige" }, "rechtsgültig": { "form": "rechtsgültig", "polarity": "0.0040", "pos": "JJ", "sense": "rechtsgültigem,rechtsgültigen,rechtsgültige,rechtsgültiger,rechtsgültiges" }, "rehabilitieren": { "form": "rehabilitieren", "polarity": "0.0040", "pos": "VB", "sense": "rehabilitiertet,rehabilitiere,rehabilitier,rehabilitiert,rehabilitierest,rehabilitiertest,rehabilitierst,rehabilitierten,rehabilitieret,rehabilitierte,rehabilitierend" }, "reibungslos": { "form": "reibungslos", "polarity": "0.1965", "pos": "JJ", "sense": "reibungslosem,reibungslosesten,reibungslosester,reibungslosestes,reibungslose,reibungslosere,reibungsloseste,reibungsloses,reibungsloser,reibungslosen,reibungsloseren,reibungsloserem,reibungsloserer,reibungslosestem,reibungsloseres" }, "reich": { "form": "reich", "polarity": "0.1247", "pos": "JJ", "sense": "reicher,reiches,reiche,reichem,reichen,reicherer,reicheres,reichere,reicherem,reicheren,reichster,reichstes,reichste,reichstem,reichsten" }, "reichhaltig": { "form": "reichhaltig", "polarity": "0.209", "pos": "JJ", "sense": "reichhaltigeren,reichhaltiger,reichhaltigem,reichhaltigerer,reichhaltigen,reichhaltigeres,reichhaltiges,reichhaltige,reichhaltigster,reichhaltigstes,reichhaltigste,reichhaltigere,reichhaltigstem,reichhaltigerem,reichhaltigsten" }, "reichlich": { "form": "reichlich", "polarity": "0.3617", "pos": "RB", "sense": "reichlichen,reichliche,reichlichem,reichlicher,reichliches" }, "reif": { "form": "reif", "polarity": "0.0807", "pos": "JJ", "sense": "reiferen,reife,reiferem,reifem,reifen,reiferes,reifer,reiferer,reifes,reifste,reifere,reifster,reifstes,reifsten,reifstem" }, "reifen": { "form": "reifen", "polarity": "0.0886", "pos": "VB", "sense": "reift,reifst,reife,reiften,reif,gereift,reiftest,reiftet,reifte,reifest,reifet,reifend" }, "rein": { "form": "rein", "polarity": "0.0040", "pos": "JJ", "sense": "reinerem,reinere,reineren,reinstes,reinster,reinste,reinstem,reinsten,reinen,reinem,reiner,reine,reines,reineres,reinerer" }, "reinigen": { "form": "reinigen", "polarity": "0.0040", "pos": "VB", "sense": "reinigtet,reinigtest,reinigt,reinige,reinigest,reinig,gereinigt,reinigten,reinigst,reiniget,reinigte,reinigend" }, "reizend": { "form": "reizend", "polarity": "0.0787", "pos": "JJ", "sense": "reizendste,reizenderer,reizenderes,reizendem,reizendere,reizender,reizendes,reizenden,reizende,reizenderem,reizendster,reizenderen,reizendstes,reizendstem,reizendsten" }, "reizvoll": { "form": "reizvoll", "polarity": "0.0040", "pos": "JJ", "sense": "reizvolles,reizvoller,reizvollen,reizvollem,reizvolle" }, "relevant": { "form": "relevant", "polarity": "0.0040", "pos": "JJ", "sense": "relevanten,relevantere,relevantem,relevantes,relevanter,relevanterer,relevanterem,relevanteren,relevante,relevanteste,relevantestes,relevantester,relevantestem,relevanteres,relevantesten" }, "renommiert": { "form": "renommiert", "polarity": "0.0040", "pos": "JJ", "sense": "renommierter,renommiertere,renommiertestes,renommierten,renommiertem,renommiertester,renommierteste,renommierterem,renommierte,renommierteren,renommiertesten,renommiertes,renommiertestem,renommierteres,renommierterer" }, "renovieren": { "form": "renovieren", "polarity": "0.0040", "pos": "VB", "sense": "renoviere,renovierst,renoviert,renovieret,renovierte,renoviertest,renovierten,renoviertet,renovier,renovierend" }, "rentabel": { "form": "rentabel", "polarity": "0.0040", "pos": "JJ", "sense": "rentablen,rentablem,rentabler,rentable,rentablere,rentablerem,rentableren,rentabelster,rentablerer,rentabelstem,rentableres,rentabelsten,rentabelstes,rentabelste,rentables" }, "reparieren": { "form": "reparieren", "polarity": "0.0040", "pos": "VB", "sense": "repariere,reparierst,reparierest,repariert,reparieret,reparierte,repariertest,reparierten,repariertet,reparier,reparierend" }, "repräsentativ": { "form": "repräsentativ", "polarity": "0.0040", "pos": "JJ", "sense": "repräsentativem,repräsentative,repräsentativen,repräsentatives,repräsentativer" }, "respektabel": { "form": "respektabel", "polarity": "0.0040", "pos": "JJ", "sense": "respektableren,respektablerem,respektabelste,respektablerer,respektabelsten,respektableres,respektabelster,respektabelstes,respektabelstem,respektablem,respektablen,respektable,respektables,respektabler,respektablere" }, "respektieren": { "form": "respektieren", "polarity": "0.0040", "pos": "VB", "sense": "respektiere,respektierst,respektierest,respektiert,respektieret,respektierte,respektiertest,respektierten,respektiertet,respektier,respektierend" }, "respektvoll": { "form": "respektvoll", "polarity": "0.0040", "pos": "JJ", "sense": "respektvolle,respektvollem,respektvollerer,respektvolleres,respektvollste,respektvollere,respektvolleren,respektvollerem,respektvollstes,respektvollster,respektvollen,respektvollsten,respektvolles,respektvoller,respektvollstem" }, "retten": { "form": "retten", "polarity": "0.0040", "pos": "VB", "sense": "rettetet,rette,rettet,rettete,rettten,rettest,retttest,retttet,retteten,rettte,gerettet,rett,rettetest,rettend" }, "revanchieren": { "form": "revanchieren", "polarity": "0.0040", "pos": "VB", "sense": "revanchier,revanchierten,revanchiertest,revanchieret,revanchiere,revanchierte,revanchierest,revanchierst,revanchiertet,revanchiert,revanchierend" }, "richtig": { "form": "richtig", "polarity": "0.0040", "pos": "JJ", "sense": "richtigerem,richtigsten,richtiger,richtigstes,richtigster,richtiges,richtigstem,richtigeren,richtige,richtigste,richtigere,richtigerer,richtigeres,richtigen,richtigem" }, "richtigstellen": { "form": "richtigstellen", "polarity": "0.0040", "pos": "VB", "sense": "richtigstelle,richtigstellst,richtigstellest,richtigstellt,richtigstellet,richtigstellte,richtigstelltest,richtigstellten,richtigstelltet,richtigzustellen,richtigstellend,richtiggestellt" }, "riesengroß": { "form": "riesengroß", "polarity": "0.0040", "pos": "JJ", "sense": "riesengroßer,riesengroßes,riesengroße,riesengroßen,riesengroßem" }, "riesig": { "form": "riesig", "polarity": "0.4554", "pos": "JJ", "sense": "riesigste,riesigen,riesigstes,riesigem,riesigster,riesige,riesigeren,riesigerem,riesigerer,riesigeres,riesigsten,riesigere,riesigstem,riesiger,riesiges" }, "robust": { "form": "robust", "polarity": "0.0968", "pos": "JJ", "sense": "robustester,robustes,robustestes,robuster,robusteste,robusten,robustem,robusterem,robusteren,robustestem,robustesten,robustere,robusteres,robuste,robusterer" }, "romantisch": { "form": "romantisch", "polarity": "0.6965", "pos": "JJ", "sense": "romantischer,romantisches,romantische,romantischem,romantischen,romantischerer,romantischeres,romantischere,romantischerem,romantischeren,romantischster,romantischstes,romantischste,romantischstem,romantischsten" }, "rosarot": { "form": "rosarot", "polarity": "0.0040", "pos": "JJ", "sense": "rosaroten,rosarotem,rosaroter,rosarotes,rosarote" }, "rosig": { "form": "rosig", "polarity": "0.0755", "pos": "JJ", "sense": "rosigste,rosiger,rosigster,rosigstes,rosiges,rosigere,rosigeren,rosigerem,rosigeres,rosigerer,rosige,rosigem,rosigen,rosigsten,rosigstem" }, "ruhig": { "form": "ruhig", "polarity": "0.3815", "pos": "JJ", "sense": "ruhiger,ruhiges,ruhige,ruhigem,ruhigen,ruhigerer,ruhigeres,ruhigere,ruhigerem,ruhigeren,ruhigster,ruhigstes,ruhigste,ruhigstem,ruhigsten" }, "ruhmreich": { "form": "ruhmreich", "polarity": "0.0040", "pos": "JJ", "sense": "ruhmreiches,ruhmreicher,ruhmreiche,ruhmreichem,ruhmreichen" }, "rückhaltlos": { "form": "rückhaltlos", "polarity": "0.0040", "pos": "JJ", "sense": "rückhaltloseres,rückhaltloseste,rückhaltlose,rückhaltloserem,rückhaltloseren,rückhaltloserer,rückhaltloser,rückhaltloses,rückhaltlosestem,rückhaltlosesten,rückhaltlosem,rückhaltlosere,rückhaltlosestes,rückhaltlosen,rückhaltlosester" }, "rücksichtsvoll": { "form": "rücksichtsvoll", "polarity": "0.0040", "pos": "JJ", "sense": "rücksichtsvollem,rücksichtsvollerem,rücksichtsvollere,rücksichtsvolleren,rücksichtsvollen,rücksichtsvollerer,rücksichtsvollste,rücksichtsvollsten,rücksichtsvollstem,rücksichtsvollster,rücksichtsvollstes,rücksichtsvolle,rücksichtsvolleres,rücksichtsvoller,rücksichtsvolles" }, "rückversichern": { "form": "rückversichern", "polarity": "0.0040", "pos": "VB", "sense": "rückversicherst,rückversichert,rückversichere,rückversicherten,rückversicherte,rückversichertet,rückversicheren,rückversichertest,rückversichernd" }, "rührig": { "form": "rührig", "polarity": "0.0040", "pos": "JJ", "sense": "rührigem,rührigen,rühriger,rührigstem,rührigsten,rührigerem,rührigster,rührigstes,rührigere,rührigeres,rührige,rührigerer,rühriges,rührigste,rührigeren" }, "sachgemäß": { "form": "sachgemäß", "polarity": "0.0040", "pos": "JJ", "sense": "sachgemäßen,sachgemäßer,sachgemäße,sachgemäßes,sachgemäßem" }, "sagenhaft": { "form": "sagenhaft", "polarity": "0.0907", "pos": "JJ", "sense": "sagenhaftere,sagenhaftem,sagenhaften,sagenhafterer,sagenhafte,sagenhafteres,sagenhafter,sagenhaftes,sagenhaftester,sagenhaftestes,sagenhafteste,sagenhafteren,sagenhafterem,sagenhaftestem,sagenhaftesten" }, "sanft": { "form": "sanft", "polarity": "0.338", "pos": "JJ", "sense": "sanfte,sanftestem,sanftesten,sanfteste,sanftester,sanftestes,sanften,sanfterer,sanftem,sanfteres,sanftere,sanfterem,sanftes,sanfter,sanfteren" }, "satt": { "form": "satt", "polarity": "0.3557", "pos": "JJ", "sense": "satten,satteren,sattem,satterem,sattes,satteste,satter,satterer,satteres,satte,sattester,sattestes,sattestem,sattesten,sattere" }, "sauber": { "form": "sauber", "polarity": "0.3553", "pos": "JJ", "sense": "saubreren,saubrerem,saubersten,sauberstem,sauberstes,sauberster,saubereren,saubererem,saubere,sauberem,saubrere,sauberen,saubererer,saubereres,sauberer" }, "schaffen": { "form": "schaffen", "polarity": "0.0040", "pos": "VB", "sense": "schaffest,schafften,schafftest,schaffst,schaffte,schaffet,geschafft,schafft,schaffe,schafftet,schaff,schaffend,sauberere,sauberes,saubrer,saubreres,saubrerer,sauberste" }, "scharf": { "form": "scharf", "polarity": "0.2248", "pos": "JJ", "sense": "schärferes,scharfen,schärferer,scharfem,schärfstes,scharfes,schärfster,scharfer,schärferen,schärfste,scharfe,schärferem,schärfsten,schärfstem,schärfer" }, "schenken": { "form": "schenken", "polarity": "0.204", "pos": "VB", "sense": "schenkten,schenkst,schenkte,schenktest,schenkest,geschenkt,schenktet,schenket,schenke,schenk,schenkt,schenkend,schärfere" }, "schick": { "form": "schick", "polarity": "0.3372", "pos": "JJ", "sense": "schickstes,schickeren,schickerem,schickste,schickstem,schicksten,schickster,schicke,schickeres,schickem,schicken,schickere,schicker,schickerer,schickes" }, "schillern": { "form": "schillern", "polarity": "0.0040", "pos": "VB", "sense": "schillerst,schillerte,schilleren,schillerten,schillert,schillere,schillertest,geschillert,schillertet" }, "schillernd": { "form": "schillernd", "polarity": "0.0040", "pos": "JJ", "sense": "schillernder,schillerndes,schillernde,schillerndem,schillernden,schillernderer,schillernderes,schillerndere,schillernderem,schillernderen,schillerndster,schillerndstes,schillerndste,schillerndstem,schillerndsten" }, "schlagend": { "form": "schlagend", "polarity": "0.0040", "pos": "JJ", "sense": "schlagendes,schlagender,schlagendem,schlagendstes,schlagenden,schlagendste,schlagendere,schlagenderes,schlagenderer,schlagende,schlagendster,schlagenderen,schlagenderem,schlagendstem,schlagendsten" }, "schlank": { "form": "schlank", "polarity": "0.2349", "pos": "JJ", "sense": "schlankerem,schlankere,schlankes,schlanker,schlanken,schlankem,schlanksten,schlankstem,schlanke,schlankeren,schlankste,schlankeres,schlankerer,schlankstes,schlankster" }, "schlau": { "form": "schlau", "polarity": "0.341", "pos": "JJ", "sense": "schlauestes,schlauester,schlaue,schlauesten,schlauerer,schlaueres,schlauestem,schlauen,schlauem,schlauerem,schlaues,schlauer,schlauere,schlaueren,schlauster" }, "schlüssig": { "form": "schlüssig", "polarity": "0.0809", "pos": "JJ", "sense": "schlüssigstes,schlüssigster,schlüssigsten,schlüssiges,schlüssigeren,schlüssigerem,schlüssiger,schlüssige,schlüssigere,schlüssigeres,schlüssigerer,schlüssigen,schlüssigste,schlüssigem,schlüssigstem,schlaustes,schlaueste,schlauest,schlausten,schlauste,schlaustem" }, "schmackhaft": { "form": "schmackhaft", "polarity": "0.217", "pos": "JJ", "sense": "schmackhaftere,schmackhaften,schmackhafterem,schmackhafteren,schmackhafteres,schmackhafte,schmackhaftem,schmackhaftestes,schmackhaftester,schmackhafterer,schmackhafteste,schmackhaftesten,schmackhaftestem,schmackhafter,schmackhaftes" }, "schmeichelnd": { "form": "schmeichelnd", "polarity": "0.1874", "pos": "JJ", "sense": "schmeichelnder,schmeichelndes,schmeichelnde,schmeichelndem,schmeichelnden,schmeichelnderer,schmeichelnderes,schmeichelndere,schmeichelnderem,schmeichelnderen,schmeichelndster,schmeichelndstes,schmeichelndste,schmeichelndstem,schmeichelndsten" }, "schmuck": { "form": "schmuck", "polarity": "0.0040", "pos": "JJ", "sense": "schmuckere,schmuckerer,schmuckeres,schmuckste,schmucken,schmuckem,schmucke,schmuckes,schmucker,schmuckstes,schmuckster,schmuckerem,schmucksten,schmuckstem,schmuckeren" }, "schmücken": { "form": "schmücken", "polarity": "0.0040", "pos": "VB", "sense": "schmückst,schmücktest,schmückte,schmückt,schmücke,schmücket,schmückten,schmückest,schmücktet,schmück,geschmückt,schmückend" }, "schnell": { "form": "schnell", "polarity": "0.1169", "pos": "JJ", "sense": "schnelles,schneller,schnellen,schnelleres,schnellerer,schnellste,schnellem,schnelleren,schnellerem,schnelle,schnellere,schnellstem,schnellsten,schnellster,schnellstes" }, "schuldlos": { "form": "schuldlos", "polarity": "0.0040", "pos": "JJ", "sense": "schuldlosere,schuldloseste,schuldlose,schuldlosem,schuldlosestes,schuldlosester,schuldlosen,schuldloserer,schuldlosesten,schuldloses,schuldloser,schuldloseres,schuldloseren,schuldloserem,schuldlosestem" }, "schwunghaft": { "form": "schwunghaft", "polarity": "0.0040", "pos": "JJ", "sense": "schwunghaftere,schwunghaftestem,schwunghaftesten,schwunghafteren,schwunghaften,schwunghaftester,schwunghaftem,schwunghafterem,schwunghaftestes,schwunghafteste,schwunghafter,schwunghaftes,schwunghafteres,schwunghafte,schwunghafterer" }, "schätzen": { "form": "schätzen", "polarity": "0.1175", "pos": "VB", "sense": "schätzet,schätz,schätzte,schätztet,schätzest,schätzt,geschätzt,schätze,schätzten,schätztest,schätzend" }, "schön": { "form": "schön", "polarity": "0.0081", "pos": "JJ", "sense": "schönerem,schöneren,schönste,schöneres,schönerer,schönere,schönstem,schönen,schönsten,schönem,schöne,schönes,schönstes,schöner,schönster" }, "sehenswert": { "form": "sehenswert", "polarity": "0.0947", "pos": "JJ", "sense": "sehenswerterem,sehenswerteste,sehenswertestes,sehenswerteren,sehenswerte,sehenswerterer,sehenswerteres,sehenswerten,sehenswertem,sehenswertere,sehenswerter,sehenswertes,sehenswertesten,sehenswertestem,sehenswertester" }, "selbstständig": { "form": "selbstständig", "polarity": "0.0040", "pos": "JJ", "sense": "selbstständiger,selbstständiges,selbstständige,selbstständigem,selbstständigen,selbstständigerer,selbstständigeres,selbstständigere,selbstständigerem,selbstständigeren,selbstständigster,selbstständigstes,selbstständigste,selbstständigstem,selbstständigsten,selbständiger" }, "sensationell": { "form": "sensationell", "polarity": "0.086", "pos": "JJ", "sense": "sensationellerer,sensationellen,sensationelleres,sensationelles,sensationeller,sensationellste,sensationellere,sensationelle,sensationellster,sensationellerem,sensationellstes,sensationelleren,sensationellsten,sensationellstem,sensationellem" }, "sensibel": { "form": "sensibel", "polarity": "0.098", "pos": "JJ", "sense": "sensibelstem,sensibelsten,sensibelstes,sensibelste,sensibelster,sensible,sensibleren,sensiblerem,sensiblere,sensibleres,sensiblerer,sensiblem,sensiblen,sensibles,sensibler" }, "seriös": { "form": "seriös", "polarity": "0.0040", "pos": "JJ", "sense": "seriöserer,seriösestem,seriösesten,seriöseres,seriösester,seriösestes,seriöses,seriöser,seriöseste,seriöse,seriösem,seriösen,seriöserem,seriösere,seriöseren" }, "sexy": { "form": "sexy", "polarity": "0.3453", "pos": "JJ", "sense": "sexyeres,sexyste,sexyerer,sexyerem,sexyeren,sexystem,sexysten,sexyster,sexystes,sexyere" }, "sicher": { "form": "sicher", "polarity": "0.3733", "pos": "JJ", "sense": "sicheres,sicherer,sichrerem,sichreren,sichereren,sicheren,sichererem,sicherem,sicherste,sicherere,sichrere,sichrer,sichrerer,sichersten,sichreres,sicherstem" }, "sichern": { "form": "sichern", "polarity": "0.0040", "pos": "VB", "sense": "gesichert,sichertet,sicheren,sicherten,sichert,sichertest,sichere,sicherte,sicherst,sichernd,sicherster,sicherstes,sichererer,sichereres" }, "sicherstellen": { "form": "sicherstellen", "polarity": "0.0040", "pos": "VB", "sense": "sichergestellt,sicherstelltest,sicherstellet,sicherstellest,sicherstellten,sicherstellte,sicherstellt,sicherstelle,sicherstelltet,sicherstellst,sicherzustellen,sicherstellend" }, "sichtbar": { "form": "sichtbar", "polarity": "0.0040", "pos": "JJ", "sense": "sichtbarster,sichtbarstes,sichtbare,sichtbareren,sichtbarstem,sichtbarsten,sichtbareres,sichtbarerer,sichtbarer,sichtbarem,sichtbarere,sichtbaren,sichtbarerem,sichtbarste,sichtbares" }, "simpel": { "form": "simpel", "polarity": "0.0040", "pos": "JJ", "sense": "simpelstem,simpelsten,simpelste,simpelster,simple,simpelstes,simplere,simpleres,simplerer,simplen,simpler,simples,simplem,simpleren,simplerem" }, "sinnvoll": { "form": "sinnvoll", "polarity": "0.0040", "pos": "JJ", "sense": "sinnvollem,sinnvollste,sinnvollen,sinnvoller,sinnvolles,sinnvollstem,sinnvollsten,sinnvollstes,sinnvollerer,sinnvolleres,sinnvollster,sinnvollerem,sinnvolleren,sinnvollere,sinnvolle" }, "solid": { "form": "solid", "polarity": "0.0040", "pos": "JJ", "sense": "solidestem,solidesten,solidester,solidestes,soliden,solide,solideres,soliderer,solideren,solidem,soliderem,solidere,solider,solideste,solides" }, "solidarisch": { "form": "solidarisch", "polarity": "0.0040", "pos": "JJ", "sense": "solidarischstes,solidarischster,solidarischsten,solidarischstem,solidarischste,solidarisches,solidarischer,solidarische,solidarischen,solidarischeren,solidarischerem,solidarischeres,solidarischem,solidarischere,solidarischerer" }, "sonnendurchflutet": { "form": "sonnendurchflutet", "polarity": "0.0040", "pos": "JJ", "sense": "sonnendurchfluteten,sonnendurchflutetem,sonnendurchflutete,sonnendurchfluteter,sonnendurchflutetes" }, "sonnig": { "form": "sonnig", "polarity": "0.2244", "pos": "JJ", "sense": "sonnigstes,sonnigster,sonnigerem,sonnigere,sonnigstem,sonnige,sonnigsten,sonnigste,sonniges,sonniger,sonnigeren,sonnigen,sonnigeres,sonnigem,sonnigerer" }, "sorgenfrei": { "form": "sorgenfrei", "polarity": "0.0040", "pos": "JJ", "sense": "sorgenfreie,sorgenfreier,sorgenfreiem,sorgenfreien,sorgenfreies" }, "sorgfältig": { "form": "sorgfältig", "polarity": "0.2119", "pos": "JJ", "sense": "sorgfältige,sorgfältiges,sorgfältiger,sorgfältigeren,sorgfältigerem,sorgfältigerer,sorgfältigste,sorgfältigeres,sorgfältigen,sorgfältigere,sorgfältigstes,sorgfältigem,sorgfältigster,sorgfältigsten,sorgfältigstem" }, "sorglos": { "form": "sorglos", "polarity": "0.0040", "pos": "JJ", "sense": "sorglose,sorglosem,sorglosere,sorglosestem,sorgloseste,sorglosen,sorgloses,sorgloser,sorgloseres,sorgloserer,sorglosesten,sorglosestes,sorglosester,sorgloserem,sorgloseren" }, "sorgsam": { "form": "sorgsam", "polarity": "0.0040", "pos": "JJ", "sense": "sorgsamsten,sorgsame,sorgsamster,sorgsamem,sorgsamstes,sorgsamen,sorgsamer,sorgsames,sorgsamstem,sorgsamere,sorgsameres,sorgsamerer,sorgsamste,sorgsamerem,sorgsameren" }, "souverän": { "form": "souverän", "polarity": "0.0711", "pos": "JJ", "sense": "souveräner,souveränes,souveräne,souveränem,souveränen,souveränerer,souveräneres,souveränere,souveränerem,souveräneren,souveränster,souveränstes,souveränste,souveränstem,souveränsten" }, "spannend": { "form": "spannend", "polarity": "0.7165", "pos": "JJ", "sense": "spannendste,spannender,spannendes,spannenderen,spannenderem,spannenden,spannende,spannenderer,spannendem,spannenderes,spannendsten,spannendstem,spannendere,spannendstes,spannendster" }, "sparen": { "form": "sparen", "polarity": "0.0040", "pos": "VB", "sense": "sparet,sparst,sparten,sparte,spart,sparest,spare,spartet,gespart,spar,spartest,sparend" }, "sparsam": { "form": "sparsam", "polarity": "0.0907", "pos": "JJ", "sense": "sparsamem,sparsamen,sparsameren,sparsamstes,sparsamerem,sparsamer,sparsames,sparsameres,sparsame,sparsamerer,sparsamste,sparsamere,sparsamstem,sparsamsten,sparsamster" }, "spaßig": { "form": "spaßig", "polarity": "0.0969", "pos": "JJ", "sense": "spaßiges,spaßiger,spaßigen,spaßigste,spaßigem,spaßigeren,spaßigerem,spaßigeres,spaßige,spaßigere,spaßigstes,spaßigerer,spaßigster,spaßigsten,spaßigstem" }, "Spektakel": { "form": "Spektakel", "polarity": "0.0040", "pos": "NN", "sense": "Spektakels,Spektakeln" }, "spektakulär": { "form": "spektakulär", "polarity": "0.0925", "pos": "JJ", "sense": "spektakulärstem,spektakulärsten,spektakulärster,spektakulärstes,spektakuläres,spektakulärste,spektakulärer,spektakulärem,spektakulären,spektakulärerem,spektakuläreren,spektakuläre,spektakulärere,spektakuläreres,spektakulärerer" }, "spenden": { "form": "spenden", "polarity": "0.0040", "pos": "VB", "sense": "spendet,spendetet,spendete,spendeten,spend,spendten,gespendet,spendte,spende,spendtet,spendetest,spendtest,spendest,spendend" }, "speziell": { "form": "speziell", "polarity": "0.0040", "pos": "JJ", "sense": "speziellste,spezielleren,speziellerem,spezielle,speziellerer,spezielleres,spezielles,spezieller,speziellstem,speziellsten,speziellem,speziellen,speziellere,speziellster,speziellstes" }, "spielend": { "form": "spielend", "polarity": "0.0040", "pos": "JJ", "sense": "spielender,spielendes,spielende,spielendem,spielenden" }, "spielerisch": { "form": "spielerisch", "polarity": "0.2", "pos": "JJ", "sense": "spielerischen,spielerisches,spielerischer,spielerische,spielerischem" }, "spitze": { "form": "spitze", "polarity": "0.2112", "pos": "JJ", "sense": "" }, "spürbar": { "form": "spürbar", "polarity": "0.0040", "pos": "JJ", "sense": "spürbarem,spürbaren,spürbare,spürbares,spürbarer" }, "stabil": { "form": "stabil", "polarity": "0.1016", "pos": "JJ", "sense": "stabilerer,stabilerem,stabileren,stabiles,stabiler,stabilstem,stabilsten,stabilen,stabilere,stabileres,stabilste,stabilster,stabilem,stabilstes,stabile" }, "stabilisieren": { "form": "stabilisieren", "polarity": "0.0040", "pos": "VB", "sense": "stabilisiertet,stabilisiertest,stabilisiere,stabilisiert,stabilisierten,stabilisieret,stabilisierte,stabilisier,stabilisierst,stabilisierest,stabilisierend" }, "standhaft": { "form": "standhaft", "polarity": "0.0040", "pos": "JJ", "sense": "standhafterer,standhafteren,standhafterem,standhafte,standhafteres,standhaftester,standhaftestes,standhaftere,standhaftesten,standhafteste,standhafter,standhaftes,standhaftestem,standhaftem,standhaften" }, "stark": { "form": "stark", "polarity": "0.0040", "pos": "JJ", "sense": "starkes,starker,starken,stärkste,starkem,starke,stärker,stärksten,stärkere,stärkerem,stärkstem,stärkeren,stärkerer,stärkeres,stärkstes" }, "stattlich": { "form": "stattlich", "polarity": "0.0876", "pos": "JJ", "sense": "stattlichsten,stattliches,stattlichstem,stattlichere,stattliche,stattlichste,stattlicherem,stattlichem,stattlicheres,stattlichen,stattlicherer,stattlicher,stattlicheren,stattlichster,stattlichstes,stärkster" }, "staunen": { "form": "staunen", "polarity": "0.0040", "pos": "VB", "sense": "staun,staune,staunten,staunt,stauntest,stauntet,staunest,staunet,staunte,staunst,gestaunt,staunend" }, "steigen": { "form": "steigen", "polarity": "0.0040", "pos": "VB", "sense": "steige,steigst,steigest,steigt,steiget,stieg,stiege,stiegst,stiegen,stiegt,stieget,steig,steigend,gestiegen" }, "steigend": { "form": "steigend", "polarity": "0.0040", "pos": "JJ", "sense": "steigender,steigendes,steigende,steigendem,steigenden" }, "steigern": { "form": "steigern", "polarity": "0.0040", "pos": "VB", "sense": "steigertet,steigerte,steigerst,steigeren,steigert,steigere,gesteigert,steigerten,steigertest,steigernd" }, "stiften": { "form": "stiften", "polarity": "0.0040", "pos": "VB", "sense": "stiftetet,stiftete,stifttest,stift,stifttet,stiftet,stiftten,stiftetest,stiftest,stiftte,gestiftet,stifte,stifteten,stiftend" }, "stilsicher": { "form": "stilsicher", "polarity": "0.0040", "pos": "JJ", "sense": "stilsichereren,stilsichererem,stilsichereres,stilsichererer,stilsichere,stilsicherste,stilsichrer,stilsichrerem,stilsichersten,stilsicherer,stilsichreren,stilsicheres,stilsicherstem,stilsichrerer,stilsichreres,stilsicherere" }, "stilvoll": { "form": "stilvoll", "polarity": "0.3197", "pos": "JJ", "sense": "stilvollstes,stilvolle,stilvollster,stilvollstem,stilvollsten,stilvollerer,stilvollere,stilvolleren,stilvollen,stilvollerem,stilvollem,stilvolles,stilvoller,stilvollste,stilvolleres,stilsichrere,stilsicherster,stilsicheren,stilsicherstes,stilsicherem,stilsicherst" }, "stimulieren": { "form": "stimulieren", "polarity": "0.0040", "pos": "VB", "sense": "stimulierten,stimulier,stimuliertest,stimulieret,stimuliertet,stimulierte,stimuliere,stimuliert,stimulierst,stimulierest,stimulierend" }, "stolz": { "form": "stolz", "polarity": "0.5161", "pos": "JJ", "sense": "stolzere,stolzester,stolzen,stolzeres,stolzem,stolzerer,stolzesten,stolzerem,stolzestem,stolzeren,stolze,stolzes,stolzer,stolzeste,stolzestes" }, "strahlen": { "form": "strahlen", "polarity": "0.2092", "pos": "VB", "sense": "strahlet,strahlest,strahl,strahlten,gestrahlt,strahlst,strahlte,strahlt,strahltet,strahle,strahltest" }, "strahlend": { "form": "strahlend", "polarity": "0.218", "pos": "JJ", "sense": "strahlender,strahlendes,strahlende,strahlendem,strahlenden,strahlenderer,strahlenderes,strahlendere,strahlenderem,strahlenderen,strahlendster,strahlendstes,strahlendste,strahlendstem,strahlendsten" }, "stärken": { "form": "stärken", "polarity": "0.0040", "pos": "VB", "sense": "stärkest,stärkst,stärk,stärkten,gestärkt,stärkte,stärktest,stärkt,stärket,stärke,stärktet,stärkend" }, "störungsfrei": { "form": "störungsfrei", "polarity": "0.0040", "pos": "JJ", "sense": "störungsfreie,störungsfreies,störungsfreiem,störungsfreien,störungsfreier" }, "stützen": { "form": "stützen", "polarity": "0.0040", "pos": "VB", "sense": "stütze,stützt,stützest,stützet,stützte,stütztest,stützten,stütztet,stützend,gestützt,störungsfreiste,störungsfreiester,störungsfreier,störungsfreiestes,störungsfreierer,störungsfreieres" }, "subventionieren": { "form": "subventionieren", "polarity": "0.0040", "pos": "VB", "sense": "subventionierest,subventioniere,subventioniert,subventionierten,subventioniertet,subventionieret,subventioniertest,subventionier,subventionierst,subventionierte,subventionierend" }, "super": { "form": "super", "polarity": "0.5012", "pos": "JJ", "sense": "supererem,superes,superer,supereren,supere,supererer,supereres,superste,superem,superen,superstes,superster,superst,superstem,supersten,superere" }, "superschnell": { "form": "superschnell", "polarity": "0.0040", "pos": "JJ", "sense": "superschneller,superschnelles,superschnelle,superschnellen,superschnellem" }, "sympathisch": { "form": "sympathisch", "polarity": "0.4529", "pos": "JJ", "sense": "sympathischer,sympathisches,sympathische,sympathischem,sympathischen,sympathischerer,sympathischeres,sympathischere,sympathischerem,sympathischeren,sympathischster,sympathischstes,sympathischste,sympathischstem,sympathischsten" }, "sympathisieren": { "form": "sympathisieren", "polarity": "0.0040", "pos": "VB", "sense": "sympathisierest,sympathisiertet,sympathisier,sympathisiertest,sympathisierten,sympathisiere,sympathisiert,sympathisierst,sympathisierte,sympathisieret,sympathisierend" }, "systematisch": { "form": "systematisch", "polarity": "0.0040", "pos": "JJ", "sense": "systematischer,systematisches,systematische,systematischem,systematischen" }, "süchtig": { "form": "süchtig", "polarity": "0.0845", "pos": "JJ", "sense": "süchtigsten,süchtigeres,süchtigstem,süchtigerer,süchtigerem,süchtigem,süchtigen,süchtigeren,süchtigste,süchtige,süchtigere,süchtiges,süchtiger,süchtigster,süchtigstes" }, "süß": { "form": "süß", "polarity": "0.3616", "pos": "JJ", "sense": "süßesten,süßes,süßestes,süßer,süßester,süßeren,süßerem,süßeste,süßeres,süßerer,süßere,süße,süßestem,süßem,süßen" }, "tadellos": { "form": "tadellos", "polarity": "0.309", "pos": "JJ", "sense": "tadelloses,tadelloserem,tadelloseste,tadellosestes,tadellose,tadelloseren,tadellosester,tadelloserer,tadelloseres,tadellosere,tadellosesten,tadellosestem,tadellosem,tadellosen,tadelloser" }, "tadelsfrei": { "form": "tadelsfrei", "polarity": "0.0040", "pos": "JJ", "sense": "tadelsfreie,tadelsfreier,tadelsfreies,tadelsfreiem,tadelsfreien" }, "talentiert": { "form": "talentiert", "polarity": "0.3218", "pos": "JJ", "sense": "talentiertesten,talentierteren,talentiertestem,talentiertes,talentierterer,talentiertere,talentierteres,talentiertem,talentierten,talentierteste,talentiertester,talentierter,talentiertestes,talentierte,talentierterem" }, "tatkräftig": { "form": "tatkräftig", "polarity": "0.0040", "pos": "JJ", "sense": "tatkräftigste,tatkräftigerem,tatkräftigstes,tatkräftigster,tatkräftigen,tatkräftigem,tatkräftigeren,tatkräftiger,tatkräftigeres,tatkräftigerer,tatkräftige,tatkräftigere,tatkräftiges,tatkräftigsten,tatkräftigstem" }, "tauglich": { "form": "tauglich", "polarity": "0.0040", "pos": "JJ", "sense": "taugliche,tauglicher,taugliches,tauglichem,tauglichen" }, "tiefgreifend": { "form": "tiefgreifend", "polarity": "0.0040", "pos": "JJ", "sense": "tiefgreifende,tiefgreifendes,tiefgreifendem,tiefgreifenden,tiefgreifender" }, "tierisch": { "form": "tierisch", "polarity": "0.1135", "pos": "JJ", "sense": "tierischstes,tierischere,tierischerem,tierischstem,tierischsten,tierischeren,tierische,tierischster,tierischen,tierischeres,tierischem,tierischer,tierischste,tierischerer,tierisches" }, "tolerant": { "form": "tolerant", "polarity": "0.1984", "pos": "JJ", "sense": "toleranteres,toleranterem,toleranteren,toleranterer,tolerantere,tolerante,tolerantestes,tolerantes,tolerantester,toleranter,tolerantem,toleranten,toleranteste,tolerantestem,tolerantesten" }, "tolerieren": { "form": "tolerieren", "polarity": "0.0040", "pos": "VB", "sense": "toleriertet,toleriertest,tolerierest,tolerierte,toleriere,toleriert,tolerierst,tolerier,tolerierten,tolerieret,tolerierend" }, "toll": { "form": "toll", "polarity": "0.5066", "pos": "JJ", "sense": "tollere,tollste,tollerer,tolleres,tollerem,tolles,toller,tolleren,tollstem,tollsten,tollstes,tollen,tollster,tollem,tolle" }, "top": { "form": "top", "polarity": "0.3186", "pos": "JJ", "sense": "topsten,topem,topstem,topst,topen,toperes,tope,topste,topstes,toper,toperem,toperen,topes,toperer,topster,topere" }, "toppen": { "form": "toppen", "polarity": "0.0040", "pos": "VB", "sense": "toppe,toppten,toppt,toppet,toppte,topp,toppst,topptet,toppest,topptest,getoppt,toppend" }, "traditionell": { "form": "traditionell", "polarity": "0.0040", "pos": "JJ", "sense": "traditioneller,traditionelles,traditionelle,traditionellem,traditionellen" }, "traditionsreich": { "form": "traditionsreich", "polarity": "0.0040", "pos": "JJ", "sense": "traditionsreiche,traditionsreichem,traditionsreichen,traditionsreicher,traditionsreiches" }, "tragfähig": { "form": "tragfähig", "polarity": "0.0040", "pos": "JJ", "sense": "tragfähigen,tragfähigem,tragfähiges,tragfähiger,tragfähige" }, "transparent": { "form": "transparent", "polarity": "0.0040", "pos": "JJ", "sense": "transparentesten,transparenteste,transparentestem,transparenten,transparentem,transparenter,transparentere,transparenteren,transparentestes,transparenterer,transparentester,transparente,transparenteres,transparenterem,transparentes" }, "traumhaft": { "form": "traumhaft", "polarity": "0.5665", "pos": "JJ", "sense": "traumhafter,traumhafte,traumhaftester,traumhaftestes,traumhaften,traumhaftem,traumhafterem,traumhaftere,traumhaftesten,traumhafteste,traumhaftestem,traumhafteres,traumhafterer,traumhaftes,traumhafteren" }, "treffend": { "form": "treffend", "polarity": "0.1023", "pos": "JJ", "sense": "treffender,treffendes,treffende,treffendem,treffenden,treffenderer,treffenderes,treffendere,treffenderem,treffenderen,treffendste,treffendster,treffendstes,treffendstem,treffendsten" }, "trefflich": { "form": "trefflich", "polarity": "0.0040", "pos": "JJ", "sense": "trefflichsten,trefflichen,trefflichstem,trefflichem,trefflicheres,trefflichster,trefflicherer,treffliches,trefflicher,trefflichstes,trefflichere,treffliche,trefflichste,trefflicherem,trefflicheren" }, "treu": { "form": "treu", "polarity": "0.3526", "pos": "JJ", "sense": "treuerem,treuest,treueren,treueres,treuerer,treuere,treuestes,treue,treuem,treueste,treuen,treuester,treuste,treuestem,treustem" }, "triumphal": { "form": "triumphal", "polarity": "0.0040", "pos": "JJ", "sense": "triumphaleren,triumphalste,triumphalstem,triumphalerem,triumphales,triumphalere,triumphaler,triumphalem,triumphale,triumphalen,triumphaleres,triumphalsten,triumphalerer,triumphalstes,triumphalster,treuesten,treusten,treues,treuster,treustes,treuer" }, "triumphieren": { "form": "triumphieren", "polarity": "0.0040", "pos": "VB", "sense": "triumphierst,triumphiertest,triumphierte,triumphiert,triumphierten,triumphiere,triumphier,triumphieret,triumphiertet,triumphierest,triumphierend" }, "trösten": { "form": "trösten", "polarity": "0.0040", "pos": "VB", "sense": "tröste,tröstest,tröstet,trösteten,getröstet,tröst,tröstetest,tröstetet,tröstete,tröstend" }, "tätig": { "form": "tätig", "polarity": "0.0040", "pos": "JJ", "sense": "tätiger,tätige,tätiges,tätigen,tätigem" }, "ultimativ": { "form": "ultimativ", "polarity": "0.0040", "pos": "JJ", "sense": "ultimativer,ultimativeren,ultimativerem,ultimatives,ultimativen,ultimativere,ultimativem,ultimativster,ultimativeres,ultimativerer,ultimativsten,ultimativstem,ultimativstes,ultimativste,ultimative" }, "umfangreich": { "form": "umfangreich", "polarity": "0.0040", "pos": "JJ", "sense": "umfangreichstes,umfangreiche,umfangreicher,umfangreiches,umfangreichster,umfangreichen,umfangreicheres,umfangreichstem,umfangreichsten,umfangreicherer,umfangreicherem,umfangreichem,umfangreicheren,umfangreichere,umfangreichste" }, "umfassend": { "form": "umfassend", "polarity": "0.0040", "pos": "JJ", "sense": "umfassender,umfassende,umfassendes,umfassenden,umfassendem,umfassenderer,umfassendere,umfassenderes,umfassenderen,umfassenderem,umfassendste,umfassendster,umfassendstes,umfassendstem,umfassendsten" }, "umgänglich": { "form": "umgänglich", "polarity": "0.2129", "pos": "JJ", "sense": "umgängliches,umgänglicher,umgänglicheres,umgänglicherer,umgänglichen,umgänglichem,umgänglicheren,umgänglicherem,umgänglichste,umgänglichster,umgänglichstes,umgängliche,umgänglichstem,umgänglichsten,umgänglichere" }, "umjubelt": { "form": "umjubelt", "polarity": "0.0040", "pos": "JJ", "sense": "umjubelter,umjubeltes,umjubelte,umjubelten,umjubeltem" }, "umsichtig": { "form": "umsichtig", "polarity": "0.0846", "pos": "JJ", "sense": "umsichtiger,umsichtiges,umsichtigste,umsichtigen,umsichtigem,umsichtigere,umsichtigerem,umsichtige,umsichtigeren,umsichtigeres,umsichtigstes,umsichtigster,umsichtigerer,umsichtigsten,umsichtigstem" }, "umsorgen": { "form": "umsorgen", "polarity": "0.0863", "pos": "VB", "sense": "umsorgst,umsorgte,umsorget,umsorgt,umsorgest,umsorge,umsorgtet,umsorgten,umsorg,umsorgtest,umsorgend" }, "umwerfend": { "form": "umwerfend", "polarity": "0.1991", "pos": "JJ", "sense": "umwerfender,umwerfendes,umwerfende,umwerfenden,umwerfendem" }, "unabhängig": { "form": "unabhängig", "polarity": "0.0040", "pos": "JJ", "sense": "unabhängiges,unabhängiger,unabhängige,unabhängigsten,unabhängigeres,unabhängigere,unabhängigstem,unabhängigerer,unabhängigster,unabhängigste,unabhängigerem,unabhängigstes,unabhängigen,unabhängigeren,unabhängigem" }, "unangefochten": { "form": "unangefochten", "polarity": "0.0040", "pos": "JJ", "sense": "unangefochtenem,unangefochtenen,unangefochtene,unangefochtenes,unangefochtener" }, "unantastbar": { "form": "unantastbar", "polarity": "0.0040", "pos": "JJ", "sense": "unantastbaren,unantastbares,unantastbare,unantastbarer,unantastbarem" }, "unaufholbar": { "form": "unaufholbar", "polarity": "0.0040", "pos": "JJ", "sense": "" }, "unbedingt": { "form": "unbedingt", "polarity": "0.0040", "pos": "JJ", "sense": "unbedingten,unbedingtem,unbedingter,unbedingte,unbedingtes" }, "unbegrenzt": { "form": "unbegrenzt", "polarity": "0.0040", "pos": "JJ", "sense": "unbegrenzteste,unbegrenzterem,unbegrenzteres,unbegrenzte,unbegrenzterer,unbegrenzten,unbegrenztem,unbegrenztestem,unbegrenztesten,unbegrenzteren,unbegrenzter,unbegrenztester,unbegrenztes,unbegrenztestes,unbegrenztere" }, "unberührt": { "form": "unberührt", "polarity": "0.0040", "pos": "JJ", "sense": "unberührtere,unberührtestes,unberührtes,unberührter,unberührten,unberührte,unberührtem,unberührteste,unberührtestem,unberührtesten,unberührteres,unberührterer,unberührterem,unberührtester,unberührteren" }, "unbeschreiblich": { "form": "unbeschreiblich", "polarity": "0.1156", "pos": "JJ", "sense": "unbeschreibliche,unbeschreiblichstem,unbeschreiblichere,unbeschreiblichsten,unbeschreiblichstes,unbeschreiblichster,unbeschreiblicherem,unbeschreibliches,unbeschreiblicherer,unbeschreiblicheres,unbeschreiblicheren,unbeschreiblichste,unbeschreiblichem,unbeschreiblichen,unbeschreiblicher" }, "unbeschwert": { "form": "unbeschwert", "polarity": "0.3349", "pos": "JJ", "sense": "unbeschwerter,unbeschwerterem,unbeschwertester,unbeschwertere,unbeschwerteren,unbeschwertes,unbeschwertesten,unbeschwerteres,unbeschwerterer,unbeschwertestem,unbeschwerten,unbeschwertestes,unbeschwertem,unbeschwerte,unbeschwerteste" }, "unbesiegbar": { "form": "unbesiegbar", "polarity": "0.0040", "pos": "JJ", "sense": "unbesiegbarere,unbesiegbarster,unbesiegbarstes,unbesiegbarerer,unbesiegbarste,unbesiegbarstem,unbesiegbarsten,unbesiegbarem,unbesiegbareres,unbesiegbaren,unbesiegbareren,unbesiegbarerem,unbesiegbare,unbesiegbarer,unbesiegbares" }, "unbestreitbar": { "form": "unbestreitbar", "polarity": "0.0040", "pos": "JJ", "sense": "unbestreitbarerer,unbestreitbare,unbestreitbareres,unbestreitbarster,unbestreitbarstes,unbestreitbarstem,unbestreitbarsten,unbestreitbareren,unbestreitbaren,unbestreitbarerem,unbestreitbarste,unbestreitbarem,unbestreitbarere,unbestreitbares,unbestreitbarer" }, "unbestritten": { "form": "unbestritten", "polarity": "0.0040", "pos": "JJ", "sense": "unbestrittneren,unbestrittenstes,unbestrittneres,unbestrittnere,unbestrittene,unbestrittenem,unbestrittnerer,unbestrittenster,unbestrittenen,unbestrittenstem,unbestrittensten,unbestrittenes,unbestrittener,unbestrittner,unbestrittenste" }, "unbezahlbar": { "form": "unbezahlbar", "polarity": "0.0040", "pos": "JJ", "sense": "unbezahlbarer,unbezahlbarerer,unbezahlbareres,unbezahlbares,unbezahlbareren,unbezahlbarerem,unbezahlbarere,unbezahlbaren,unbezahlbarem,unbezahlbare,unbezahlbarsten,unbezahlbarstem,unbezahlbarster,unbezahlbarstes,unbezahlbarste,unbestritteneres,unbestritteneren,unbestrittenerem,unbestrittenere,unbestrittenerer,unbestrittnerem" }, "uneingeschränkt": { "form": "uneingeschränkt", "polarity": "0.0040", "pos": "JJ", "sense": "uneingeschränktem,uneingeschränkte,uneingeschränkten,uneingeschränkteste,uneingeschränkter,uneingeschränktes,uneingeschränktere,uneingeschränktestem,uneingeschränktesten,uneingeschränktester,uneingeschränktestes,uneingeschränkterer,uneingeschränkteres,uneingeschränkteren,uneingeschränkterem" }, "uneinholbar": { "form": "uneinholbar", "polarity": "0.0040", "pos": "JJ", "sense": "uneinholbare,uneinholbares,uneinholbarer,uneinholbarem,uneinholbaren" }, "unermesslich": { "form": "unermesslich", "polarity": "0.0040", "pos": "JJ", "sense": "unermesslicher,unermessliches,unermessliche,untermesslichen,unermesslichem,unermesslicherer,unermesslicheres,unermesslichere,unermesslicheren,unermesslicherem,unermesslichster,unermesslichstes,unermesslichste,unermesslichstem,unermesslichsten" }, "unermeßlich": { "form": "unermeßlich", "polarity": "0.0040", "pos": "JJ", "sense": "unermeßliches,unermeßlicher,unermeßlichstem,unermeßlichsten,unermeßlichere,unermeßliche,unermeßlichste,unermeßlichster,unermeßlicherer,unermeßlicheres,unermeßlichstes,unermeßlichem,unermeßlichen,unermeßlicherem,unermeßlicheren" }, "unermüdlich": { "form": "unermüdlich", "polarity": "0.0040", "pos": "JJ", "sense": "unermüdlichsten,unermüdlicherer,unermüdlichstem,unermüdlichster,unermüdlicheres,unermüdlichere,unermüdlicheren,unermüdlicherem,unermüdlichste,unermüdliches,unermüdlicher,unermüdlichstes,unermüdliche,unermüdlichen,unermüdlichem" }, "unerreicht": { "form": "unerreicht", "polarity": "0.0040", "pos": "JJ", "sense": "unerreichtem,unerreichten,unerreichter,unerreichtes,unerreichte" }, "unerschrocken": { "form": "unerschrocken", "polarity": "0.0040", "pos": "JJ", "sense": "unerschrockenstem,unerschrocknere,unerschrockensten,unerschrockenstes,unerschrockenster,unerschrockneren,unerschrocknerem,unerschrockner,unerschrockenere,unerschrockeneres,unerschrockenerer,unerschrockenes,unerschrockener,unerschrocknerer,unerschrockneres,unerschrockenen" }, "unersetzlich": { "form": "unersetzlich", "polarity": "0.0040", "pos": "JJ", "sense": "unersetzlicher,unersetzliches,unersetzlichem,unersetzlichen,unersetzliche,unerschrockenst,unerschrockenem,unerschrockenste,unerschrockene,unerschrockeneren,unerschrockenerem" }, "unfehlbar": { "form": "unfehlbar", "polarity": "0.0040", "pos": "JJ", "sense": "unfehlbares,unfehlbarer,unfehlbaren,unfehlbarem,unfehlbare" }, "ungeahnt": { "form": "ungeahnt", "polarity": "0.0040", "pos": "JJ", "sense": "ungeahntem,ungeahntes,ungeahnter,ungeahnte,ungeahnten" }, "ungebrochen": { "form": "ungebrochen", "polarity": "0.0040", "pos": "JJ", "sense": "ungebrochene,ungebrochenen,ungebrochenem,ungebrochenes,ungebrochener" }, "ungeteilt": { "form": "ungeteilt", "polarity": "0.0040", "pos": "JJ", "sense": "ungeteilten,ungeteiltem,ungeteilte,ungeteilter,ungeteiltes" }, "ungezwungen": { "form": "ungezwungen", "polarity": "0.0040", "pos": "JJ", "sense": "ungezwungneren,ungezwungnere,ungezwungnerem,ungezwungnerer,ungezwungene,ungezwungneres,ungezwungenen,ungezwungensten,ungezwungenstem,ungezwungenem,ungezwungenster,ungezwungenerer,ungezwungenstes,ungezwungeneres,ungezwungner,ungezwungenerem" }, "unglaublich": { "form": "unglaublich", "polarity": "0.3698", "pos": "JJ", "sense": "unglaublichsten,unglaubliches,unglaublichstem,unglaublicherem,unglaubliche,unglaublicheren,unglaublichste,unglaublicheres,unglaublichere,unglaublicherer,unglaublichem,unglaublichen,unglaublicher,unglaublichster,unglaublichstes,ungezwungenes,ungezwungener,ungezwungeneren,ungezwungenste,ungezwungenst,ungezwungenere" }, "universell": { "form": "universell", "polarity": "0.0040", "pos": "JJ", "sense": "universellste,universelle,universellen,universellem,universellstem,universellsten,universelleres,universellerer,universellere,universelleren,universellerem,universeller,universelles,universellster,universellstes" }, "unkompliziert": { "form": "unkompliziert", "polarity": "0.0782", "pos": "JJ", "sense": "unkompliziertestes,unkompliziertester,unkompliziertesten,unkompliziertestem,unkomplizierte,unkompliziertere,unkomplizierten,unkompliziertem,unkomplizierteres,unkomplizierterer,unkomplizierterem,unkompliziertes,unkomplizierter,unkomplizierteren,unkomplizierteste" }, "unparteiisch": { "form": "unparteiisch", "polarity": "0.0040", "pos": "JJ", "sense": "unparteiischste,unparteiischeres,unparteiischerer,unparteiischster,unparteiischstes,unparteiischeren,unparteiischerem,unparteiischstem,unparteiischsten,unparteiischem,unparteiischere,unparteiische,unparteiischen,unparteiischer,unparteiisches" }, "unschlagbar": { "form": "unschlagbar", "polarity": "0.0040", "pos": "JJ", "sense": "unschlagbarerem,unschlagbarem,unschlagbaren,unschlagbareren,unschlagbares,unschlagbarste,unschlagbarer,unschlagbareres,unschlagbarerer,unschlagbarster,unschlagbarstes,unschlagbarere,unschlagbarstem,unschlagbarsten,unschlagbare" }, "unschuldig": { "form": "unschuldig", "polarity": "0.0040", "pos": "JJ", "sense": "unschuldigstem,unschuldigsten,unschuldigere,unschuldige,unschuldigste,unschuldigstes,unschuldigster,unschuldigen,unschuldigem,unschuldiger,unschuldigeres,unschuldigerer,unschuldiges,unschuldigeren,unschuldigerem" }, "unschätzbar": { "form": "unschätzbar", "polarity": "0.0040", "pos": "JJ", "sense": "unschätzbarerem,unschätzbarste,unschätzbareren,unschätzbares,unschätzbarster,unschätzbarer,unschätzbarstes,unschätzbarerer,unschätzbareres,unschätzbarstem,unschätzbarsten,unschätzbaren,unschätzbare,unschätzbarem,unschätzbarere" }, "unsterblich": { "form": "unsterblich", "polarity": "0.0040", "pos": "JJ", "sense": "unsterblicher,unsterbliches,unsterbliche,unsterblichem,unsterblichen" }, "unternehmerisch": { "form": "unternehmerisch", "polarity": "0.0040", "pos": "JJ", "sense": "unternehmerischste,unternehmerische,unternehmerischeren,unternehmerischerem,unternehmerischer,unternehmerischeres,unternehmerischstem,unternehmerischerer,unternehmerischsten,unternehmerisches,unternehmerischen,unternehmerischem,unternehmerischstes,unternehmerischster,unternehmerischere" }, "unterstützen": { "form": "unterstützen", "polarity": "0.0040", "pos": "VB", "sense": "unterstützt,unterstützten,unterstütze,unterstütztest,unterstützest,unterstütztet,unterstützet,unterstütz,untergestützt,unterstützte,unterstützend" }, "untrennbar": { "form": "untrennbar", "polarity": "0.0040", "pos": "JJ", "sense": "untrennbarer,untrennbares,untrennbarere,untrennbarerer,untrennbareren,untrennbarerem,untrennbarsten,untrennbarstem,untrennbareres,untrennbare,untrennbarster,untrennbarstes,untrennbaren,untrennbarem,untrennbarste" }, "unumschränkt": { "form": "unumschränkt", "polarity": "0.0040", "pos": "JJ", "sense": "unumschränkte,unumschränkterem,unumschränktem,unumschränkten,unumschränkteren,unumschränktestem,unumschränktesten,unumschränkteres,unumschränkter,unumschränkterer,unumschränktes,unumschränktester,unumschränkteste,unumschränktestes,unumschränktere" }, "unumstritten": { "form": "unumstritten", "polarity": "0.0040", "pos": "JJ", "sense": "unumstrittenere,unumstrittene,unumstrittenste,unumstrittneres,unumstrittnere,unumstrittenem,unumstrittenstem,unumstrittenen,unumstrittner,unumstrittener,unumstrittensten,unumstrittenerem,unumstrittenes,unumstrittenster,unumstrittenstes" }, "ununterbrochen": { "form": "ununterbrochen", "polarity": "0.0040", "pos": "JJ", "sense": "ununterbrochenen,ununterbrochenem,ununterbrochener,ununterbrochenes,ununterbrochene,unumstrittnerer,unumstritteneres,unumstrittenerer,unumstrittnerem,unumstrittneren,unumstritteneren" }, "unvergleichbar": { "form": "unvergleichbar", "polarity": "0.0833", "pos": "JJ", "sense": "unvergleichbare,unvergleichbarer,unvergleichbares,unvergleichbarem,unvergleichbaren" }, "unvergleichlich": { "form": "unvergleichlich", "polarity": "0.0967", "pos": "JJ", "sense": "unvergleichlicherem,unvergleichlichsten,unvergleichlicheres,unvergleichlicherer,unvergleichlichste,unvergleichlicher,unvergleichlicheren,unvergleichlichen,unvergleichlichem,unvergleichlichstem,unvergleichliche,unvergleichlichster,unvergleichlichstes,unvergleichlichere,unvergleichliches" }, "unverhofft": { "form": "unverhofft", "polarity": "0.0040", "pos": "JJ", "sense": "unverhofftesten,unverhofften,unverhoffterer,unverhoffteres,unverhoffterem,unverhoffteren,unverhofftem,unverhofftestem,unverhofftere,unverhoffte,unverhofftestes,unverhofftes,unverhoffteste,unverhofftester,unverhoffter" }, "unverkrampft": { "form": "unverkrampft", "polarity": "0.0040", "pos": "JJ", "sense": "unverkrampftestes,unverkrampftester,unverkrampftere,unverkrampfterem,unverkrampfteren,unverkrampfterer,unverkrampfte,unverkrampfteres,unverkrampftes,unverkrampfter,unverkrampfteste,unverkrampftesten,unverkrampften,unverkrampftem,unverkrampftestem" }, "unverwundbar": { "form": "unverwundbar", "polarity": "0.0040", "pos": "JJ", "sense": "unverwundbare,unverwundbares,unverwundbarer,unverwundbarem,unverwundbaren" }, "unverzichtbar": { "form": "unverzichtbar", "polarity": "0.0040", "pos": "JJ", "sense": "unverzichtbare,unverzichtbaren,unverzichtbarem,unverzichtbareres,unverzichtbares,unverzichtbarer,unverzichtbarerer,unverzichtbarerem,unverzichtbarste,unverzichtbareren,unverzichtbarere,unverzichtbarsten,unverzichtbarstem,unverzichtbarster,unverzichtbarstes" }, "unwiderstehlich": { "form": "unwiderstehlich", "polarity": "0.1874", "pos": "JJ", "sense": "unwiderstehlichen,unwiderstehlichem,unwiderstehlichster,unwiderstehlichstes,unwiderstehliche,unwiderstehlichste,unwiderstehlicher,unwiderstehlichstem,unwiderstehlichsten,unwiderstehliches,unwiderstehlicherem,unwiderstehlichere,unwiderstehlicheren,unwiderstehlicherer,unwiderstehlicheres" }, "unzweifelhaft": { "form": "unzweifelhaft", "polarity": "0.0040", "pos": "JJ", "sense": "unzweifelhaftesten,unzweifelhaftestem,unzweifelhaftester,unzweifelhaftestes,unzweifelhaftere,unzweifelhafterem,unzweifelhaftes,unzweifelhafteren,unzweifelhafteres,unzweifelhafterer,unzweifelhaftem,unzweifelhaften,unzweifelhafte,unzweifelhafter,unzweifelhafteste" }, "unübertrefflich": { "form": "unübertrefflich", "polarity": "0.078", "pos": "JJ", "sense": "unübertrefflichem,unübertrefflichen,unübertrefflicher,unübertreffliches,unübertreffliche" }, "unübertroffen": { "form": "unübertroffen", "polarity": "0.0753", "pos": "JJ", "sense": "unübertroffener,unübertroffenes,unübertroffenen,unübertroffenem,unübertroffene" }, "upgraden": { "form": "upgraden", "polarity": "0.0040", "pos": "VB", "sense": "upgrade,upgradest,upgradet,upgradete,upgradetest,upgradeten,upgradetet" }, "verantwortlich": { "form": "verantwortlich", "polarity": "0.0040", "pos": "JJ", "sense": "verantwortliche,verantwortlichere,verantwortlicheres,verantwortlicherer,verantwortlichster,verantwortlichstes,verantwortlicheren,verantwortliches,verantwortlicher,verantwortlicherem,verantwortlichsten,verantwortlichen,verantwortlichste,verantwortlichem,verantwortlichstem" }, "verantwortungsbewußt": { "form": "verantwortungsbewußt", "polarity": "0.0040", "pos": "JJ", "sense": "verantwortungsbewußtere,verantwortungsbewußte,verantwortungsbewußteres,verantwortungsbewußterer,verantwortungsbewußtsten,verantwortungsbewußtstem,verantwortungsbewußteren,verantwortungsbewußterem,verantwortungsbewußtster,verantwortungsbewußtste,verantwortungsbewußtem,verantwortungsbewußten,verantwortungsbewußtstes,verantwortungsbewußter,verantwortungsbewußtes" }, "verantwortungsvoll": { "form": "verantwortungsvoll", "polarity": "0.0040", "pos": "JJ", "sense": "verantwortungsvollerem,verantwortungsvollste,verantwortungsvolleren,verantwortungsvolleres,verantwortungsvollerer,verantwortungsvoller,verantwortungsvolles,verantwortungsvollstes,verantwortungsvollster,verantwortungsvollere,verantwortungsvollsten,verantwortungsvollstem,verantwortungsvolle,verantwortungsvollen,verantwortungsvollem" }, "verbessern": { "form": "verbessern", "polarity": "0.0040", "pos": "VB", "sense": "verbessere,verbesserst,verbessert,verbesserte,verbessertest,verbesserten,verbessertet,verbessernd" }, "verbinden": { "form": "verbinden", "polarity": "0.0040", "pos": "VB", "sense": "verbinde,verbindest,verbindet,verband,verbandest,verbandst,verbanden,verbandet,verbände,verbändest,verbänden,verbändet,verbind,verbindend,verbunden" }, "verbindlich": { "form": "verbindlich", "polarity": "0.0040", "pos": "JJ", "sense": "verbindlichen,verbindlichem,verbindlicher,verbindliche,verbindliches" }, "verblüffend": { "form": "verblüffend", "polarity": "0.0040", "pos": "JJ", "sense": "verblüffende,verblüffenden,verblüffendem,verblüffendster,verblüffendstes,verblüffendstem,verblüffendsten,verblüffendes,verblüffender,verblüffendere,verblüffenderer,verblüffenderes,verblüffenderen,verblüffenderem,verblüffendste" }, "verdienen": { "form": "verdienen", "polarity": "0.0989", "pos": "VB", "sense": "verdient,verdienten,verdientest,verdienest,verdienet,verdiene,verdiente,verdien,verdienst,verdientet,verdienend" }, "verdient": { "form": "verdient", "polarity": "0.3612", "pos": "JJ", "sense": "verdiente,verdienter,verdientes,verdienten,verdientem" }, "veredeln": { "form": "veredeln", "polarity": "0.0040", "pos": "VB", "sense": "veredelten,veredele,veredelst,veredle,veredelte,veredlest,veredeltest,veredelt,veredlet,veredeltet,veredelnd" }, "verehren": { "form": "verehren", "polarity": "0.0040", "pos": "VB", "sense": "verehre,verehr,verehrt,verehret,verehrest,verehrte,verehrst,verehrtet,verehrtest,verehrten,verehrend" }, "verehrt": { "form": "verehrt", "polarity": "0.0040", "pos": "JJ", "sense": "verehrteste,verehrtere,verehrterem,verehrter,verehrtes,verehrteren,verehrtem,verehrten,verehrtestes,verehrterer,verehrtester,verehrteres,verehrte,verehrtestem,verehrtesten" }, "vereidigen": { "form": "vereidigen", "polarity": "0.0040", "pos": "VB", "sense": "vereidigte,vereidigten,vereidige,vereidig,vereidigt,vereidigst,vereidigest,vereidigtet,vereidigtest,vereidiget,vereidigend" }, "vereinen": { "form": "vereinen", "polarity": "0.0040", "pos": "VB", "sense": "vereintet,vereinest,vereine,vereintest,vereinst,vereint,vereinte,vereinet,vereinten,verein,vereinende" }, "vereinfachen": { "form": "vereinfachen", "polarity": "0.0040", "pos": "VB", "sense": "vereinfache,vereinfachst,vereinfachest,vereinfacht,vereinfachte,vereinfachtest,vereinfachten,vereinfachtet,vereinfach,vereinfachend" }, "vererben": { "form": "vererben", "polarity": "0.0040", "pos": "VB", "sense": "vererbte,vererbest,vererbet,vererbtet,vererbt,vererbtest,vererbst,vererbe,vererbten,vererb,vererbend" }, "verfeinern": { "form": "verfeinern", "polarity": "0.0040", "pos": "VB", "sense": "verfeinere,verfeinerst,verfeinert,verfeinerte,verfeinertest,verfeinerten,verfeinertet,verfeinernd" }, "verführerisch": { "form": "verführerisch", "polarity": "0.0040", "pos": "JJ", "sense": "verführerischen,verführerisches,verführerischer,verführerischstem,verführerischsten,verführerische,verführerischster,verführerischstes,verführerischem,verführerischeren,verführerischerem,verführerischere,verführerischste,verführerischeres,verführerischerer" }, "vergeben": { "form": "vergeben", "polarity": "0.0040", "pos": "VB", "sense": "vergebe,vergibst,vergebest,vergibt,vergebt,vergebet,vergab,vergabst,vergaben,vergabt,vergäbe,vergäbest,vergäbst,vergäben,vergäbet,vergäbt" }, "vergnügen": { "form": "vergnügen", "polarity": "0.1838", "pos": "VB", "sense": "vergnügtet,vergnügest,vergnüge,vergnügten,vergnüg,vergnügte,vergnüget,vergnügst,vergnügt,vergnügtest,vergnügend" }, "vergolden": { "form": "vergolden", "polarity": "0.0040", "pos": "VB", "sense": "vergoldeten,vergoldest,vergolde,vergoldete,vergoldetest,vergoldet,vergoldtet,vergold,vergoldetet,vergoldten,vergoldte,vergoldtest,vergoldend" }, "vergrößern": { "form": "vergrößern", "polarity": "0.0040", "pos": "VB", "sense": "vergrößere,vergrößert,vergrößertest,vergrößerte,vergrößeren,vergrößertet,vergrößerst,vergrößerten,vergrößernd" }, "vergöttern": { "form": "vergöttern", "polarity": "0.0040", "pos": "VB", "sense": "vergöttertet,vergötterten,vergöttertest,vergötterst,vergötteren,vergötterte,vergöttert,vergöttere,vergötternd" }, "vergöttert": { "form": "vergöttert", "polarity": "0.0040", "pos": "JJ", "sense": "vergötterter,vergöttertes,vergötterte,vergötterten,vergöttertem,vergötterterer,vergötterteres,vergöttertere,vergötterterem,vergötterteren,vergöttertster,vergöttertstes,vergöttertste,vergöttertsten,vergöttertstem" }, "verhandeln": { "form": "verhandeln", "polarity": "0.0040", "pos": "VB", "sense": "verhandelt,verhandle,verhandeltest,verhandelten,verhandele,verhandeltet,verhandelst,verhandelen,verhandelte,verhandlest ,verhandelnd" }, "verheißungsvoll": { "form": "verheißungsvoll", "polarity": "0.0040", "pos": "JJ", "sense": "verheißungsvollen,verheißungsvollem,verheißungsvoller,verheißungsvolles,verheißungsvolle" }, "veritabel": { "form": "veritabel", "polarity": "0.0040", "pos": "JJ", "sense": "veritabelster,veritabelstes,veritabelsten,veritableres,veritable,veritabler,veritables,veritablen,veritablere,veritabelstem,veritablerer,veritablem,veritabelste,veritablerem,veritableren" }, "verlockend": { "form": "verlockend", "polarity": "0.0040", "pos": "JJ", "sense": "verlockender,verlockendes,verlockende,verlockenden,verlockendem,verlockenderer,verlockenderes,verlockendere,verlockenderen,verlockenderem,verlockendster,verlockendstes,verlockendste,verlockendsten,verlockendstem" }, "verlässlich": { "form": "verlässlich", "polarity": "0.0854", "pos": "JJ", "sense": "verlässlicher,verlässliches,verlässliche,verlässlichen,verlässlichem,verlässlicherer,verlässlicheres,verlässlichere,verlässlicheren,verlässlicherem,verlässlichster,verlässlichstes,verlässlichste,verlässlichsten,verlässlichstem" }, "vermachen": { "form": "vermachen", "polarity": "0.0040", "pos": "VB", "sense": "vermachten,vermachst,vermachtest,vermachest,vermachtet,vermacht,vermache,vermachet,vermach,vermachte,vergemacht,vermachend" }, "vermehrt": { "form": "vermehrt", "polarity": "0.0040", "pos": "JJ", "sense": "vermehrter,vermehrtes,vermehrte,vermehrten,vermehrtem" }, "vermitteln": { "form": "vermitteln", "polarity": "0.0699", "pos": "VB", "sense": "vermittelte,vermittelst,vermittelen,vermittelnd,vermittelt,vermittle,vermittelten,vermittele,vermittlest,vermitteltet,vermitteltest,vermittlet" }, "vernünftig": { "form": "vernünftig", "polarity": "0.3436", "pos": "JJ", "sense": "vernünftigeren,vernünftigerem,vernünftigsten,vernünftigstem,vernünftigster,vernünftigstes,vernünftigste,vernünftige,vernünftigeres,vernünftigem,vernünftigen,vernünftigere,vernünftiger,vernünftigerer,vernünftiges" }, "verschönern": { "form": "verschönern", "polarity": "0.0040", "pos": "VB", "sense": "verschönere,verschönert,verschönertest,verschöner,verschönerten,verschönerst,verschönerte,verschöneren,verschönertet,verschöndernd" }, "versichern": { "form": "versichern", "polarity": "0.0040", "pos": "VB", "sense": "versichertet,versicherst,versicherte,versichere,versichertest,versicheren,versichert,versicherten,versichernd" }, "versiert": { "form": "versiert", "polarity": "0.0040", "pos": "JJ", "sense": "versiertem,versierteres,versierten,versierterer,versierte,versierterem,versiertes,versierter,versierteren,versiertere,versierteste,versiertestem,versiertesten,versiertestes,versiertester" }, "verstehen": { "form": "verstehen", "polarity": "0.0957", "pos": "VB", "sense": "verstehe,verstehst,verstehest,versteht,verstehet,verstand,verstandest,verstandst,verstanden,verstandet,verstände,verstünde,verständest,verstündest,verständen,verstünden" }, "verständlich": { "form": "verständlich", "polarity": "0.0978", "pos": "JJ", "sense": "verständliche,verständlicheres,verständlicherer,verständlichster,verständlichstes,verständlichsten,verständlichstem,verständlichste,verständlicher,verständlicheren,verständlichere,verständlicherem,verständliches,verständlichen,verständlichem" }, "verstärken": { "form": "verstärken", "polarity": "0.0040", "pos": "VB", "sense": "verstärktest,verstärkt,verstärk,verstärkte,verstärke,verstärktet,verstärket,verstärkest,verstärkten,verstärkst,verstärkend" }, "versöhnen": { "form": "versöhnen", "polarity": "0.0040", "pos": "VB", "sense": "versöhnte,versöhnest,versöhn,versöhnst,versöhnten,versöhnt,versöhne,versöhnet,versöhntet,versöhntest,versöhnend" }, "versöhnlich": { "form": "versöhnlich", "polarity": "0.0040", "pos": "JJ", "sense": "versöhnlicher,versöhnliches,versöhnliche,versöhnlichen,versöhnlichem,versöhnlicherer,versöhnlicheres,versöhnlichere,versöhnlicheren,versöhnlicherem,versöhnlichster,versöhnlichstes,versöhnlichste,versöhnlichsten,versöhnlichstem" }, "verteidigen": { "form": "verteidigen", "polarity": "0.0040", "pos": "VB", "sense": "verteidige,verteidigtest,verteidiget,verteidigst,verteidigt,verteidigtet,verteidigte,verteidig,verteidigest,verteidigten,verteidigend" }, "vertrauenerweckend": { "form": "vertrauenerweckend", "polarity": "0.0040", "pos": "JJ", "sense": "vertrauenerweckenden,vertrauenerweckenderer,vertrauenerweckendem,vertrauenerweckenderes,vertrauenerweckende,vertrauenerweckender,vertrauenerweckendere,vertrauenerweckenderen,vertrauenerweckendes,vertrauenerweckendste,vertrauenerweckendstem,vertrauenerweckendsten,vertrauenerweckendstes,vertrauenerweckendster,vertrauenerweckenderem" }, "vertrauensvoll": { "form": "vertrauensvoll", "polarity": "0.0040", "pos": "JJ", "sense": "vertrauensvollste,vertrauensvolleren,vertrauensvolles,vertrauensvollstem,vertrauensvoller,vertrauensvollerem,vertrauensvollster,vertrauensvollen,vertrauensvollstes,vertrauensvollem,vertrauensvollere,vertrauensvollsten,vertrauensvolle,vertrauensvolleres,vertrauensvollerer" }, "vertrauenswürdig": { "form": "vertrauenswürdig", "polarity": "0.0040", "pos": "JJ", "sense": "vertrauenswürdigeres,vertrauenswürdigerer,vertrauenswürdigeren,vertrauenswürdige,vertrauenswürdiges,vertrauenswürdiger,vertrauenswürdigen,vertrauenswürdigem,vertrauenswürdigsten,vertrauenswürdigste,vertrauenswürdigerem,vertrauenswürdigstem,vertrauenswürdigere,vertrauenswürdigstes,vertrauenswürdigster" }, "vertraulich": { "form": "vertraulich", "polarity": "0.0040", "pos": "JJ", "sense": "vertraulicher,vertrauliches,vertrauliche,vertraulichen,vertraulichem,vertraulicherer,vertraulicheres,vertraulichere,vertraulicheren,vertraulicherem,vertraulichster,vertraulichstes,vertraulichste,vertraulichsten,vertraulichstem" }, "vertraut": { "form": "vertraut", "polarity": "0.2266", "pos": "JJ", "sense": "vertraute,vertrautem,vertrautestem,vertrauter,vertrautes,vertrauten,vertrautestes,vertrauteste,vertrautester,vertrautere,vertrauteres,vertrauterer,vertrautesten,vertrauteren,vertrauterem" }, "verwendbar": { "form": "verwendbar", "polarity": "0.0859", "pos": "JJ", "sense": "verwendbares,verwendbarer,verwendbare,verwendbaren,verwendbarem" }, "verwirklichen": { "form": "verwirklichen", "polarity": "0.0040", "pos": "VB", "sense": "verwirkliche,verwirklichst,verwirklichest,verwirklicht,verwirklichet,verwirklichte,verwirklichtest,verwirklichten,verwirklichtet,verwirklich,verwirklichend" }, "verwöhnen": { "form": "verwöhnen", "polarity": "0.3571", "pos": "VB", "sense": "verwöhnet,verwöhnest,verwöhnten,verwöhnt,verwöhntest,verwöhne,verwöhn,verwöhntet,verwöhnst,verwöhnte,verwöhnend" }, "verzeihen": { "form": "verzeihen", "polarity": "0.0040", "pos": "VB", "sense": "verzeihe,verzeihst,verzeihest,verzeiht,verzeihet,verzieh,verziehst,verziehen,verzieht,verziehe,verziehest,verziehet,verzeih,verzeihend" }, "verzückt": { "form": "verzückt", "polarity": "0.0040", "pos": "JJ", "sense": "verzückter,verzückteren,verzückterem,verzücktes,verzückten,verzückteste,verzücktestem,verzücktere,verzücktesten,verzücktestes,verzücktester,verzücktem,verzückterer,verzückteres,verzückte" }, "vielfältig": { "form": "vielfältig", "polarity": "0.0040", "pos": "JJ", "sense": "vielfältigste,vielfältigstem,vielfältigere,vielfältigsten,vielfältige,vielfältigstes,vielfältigster,vielfältigen,vielfältigem,vielfältigerem,vielfältigeren,vielfältigerer,vielfältigeres,vielfältiges,vielfältiger" }, "vielseitig": { "form": "vielseitig", "polarity": "0.0957", "pos": "JJ", "sense": "vielseitigstem,vielseitigsten,vielseitigem,vielseitigen,vielseitigerer,vielseitigste,vielseitige,vielseitigeren,vielseitigerem,vielseitigeres,vielseitigster,vielseitiges,vielseitiger,vielseitigere,vielseitigstes" }, "vielversprechend": { "form": "vielversprechend", "polarity": "0.0849", "pos": "JJ", "sense": "vielversprechendsten,vielversprechendste,vielversprechendstem,vielversprechende,vielversprechendes,vielversprechender,vielversprechenderes,vielversprechendem,vielversprechenderer,vielversprechendstes,vielversprechenden,vielversprechendster,vielversprechenderen,vielversprechenderem,vielversprechendere" }, "vital": { "form": "vital", "polarity": "0.2122", "pos": "JJ", "sense": "vitaler,vitales,vitale,vitalen,vitalem,vitalerer,vitaleres,vitalere,vitalerem,vitaleren,vitalster,vitalstes,vitalste,vitalsten,vitalstem" }, "vollkommen": { "form": "vollkommen", "polarity": "0.0945", "pos": "JJ", "sense": "vollkommenen,vollkommenem,vollkommenste,vollkommene,vollkommnere,vollkommeneren,vollkommenerem,vollkommenstem,vollkommensten,vollkommnerem,vollkommenere,vollkommneren,vollkommner,vollkommenster,vollkommenstes,vollkommenerer" }, "vollständig": { "form": "vollständig", "polarity": "0.0040", "pos": "JJ", "sense": "vollständigeres,vollständigerer,vollständigerem,vollständige,vollständigeren,vollständigste,vollständigstem,vollständigem,vollständigen,vollständigster,vollständigstes,vollständiger,vollständigsten,vollständiges,vollständigere,vollkommeneres,vollkommenst,vollkommneres,vollkommenes,vollkommener,vollkommnerer" }, "voranbringen": { "form": "voranbringen", "polarity": "0.0040", "pos": "VB", "sense": "voranbringe,voranbringst,voranbringest,voranbringt,voranbringet,voranbrahte,voranbrachtest,voranbrachten,voranbrachtet,voranbrächte,voranbrächtest,voranbrächten,voranbrächtet,voranbringend,voranzubringen,vorangebracht" }, "vorankommen": { "form": "vorankommen", "polarity": "0.0040", "pos": "VB", "sense": "vorankomme,vorannkommst,vorankommest,vorankommt,vorankam,vorankamst,vorankamen,vorankamt,vorankäme,vorankämest,vorankämst,vorankämen,vorankämet,vorankämt,vorankommend,voranzukommen" }, "vorantreiben": { "form": "vorantreiben", "polarity": "0.0040", "pos": "VB", "sense": "vorantreibe,vorantreibst,vorantreibest,vorantreibt,vorantreibet,vorantrieb,vorantriebe,vorantriebst,vorantriebest,vorantrieben,vorantriebt,vorantreibend,voranzutreiben,vorangetrieben" }, "vorbehaltlos": { "form": "vorbehaltlos", "polarity": "0.0040", "pos": "JJ", "sense": "vorbehaltlosen,vorbehaltloser,vorbehaltloses,vorbehaltlosem,vorbehaltlose" }, "vorbereiten": { "form": "vorbereiten", "polarity": "0.1036", "pos": "VB", "sense": "vorbereitet,vorbereitetest,vorbereite,vorbereiteten,vorbereitest,vorbereitete,vorbereitetet,vorbereitend,vorzubereiten" }, "vorbildlich": { "form": "vorbildlich", "polarity": "0.3188", "pos": "JJ", "sense": "vorbildlichsten,vorbildlicher,vorbildlichste,vorbildlichstem,vorbildlichen,vorbildlichem,vorbildlichere,vorbildliche,vorbildlicherem,vorbildliches,vorbildlichster,vorbildlichstes,vorbildlicheren,vorbildlicheres,vorbildlicherer" }, "vorsichtig": { "form": "vorsichtig", "polarity": "0.2313", "pos": "JJ", "sense": "vorsichtigsten,vorsichtigstes,vorsichtigster,vorsichtige,vorsichtigste,vorsichtigstem,vorsichtigeren,vorsichtiges,vorsichtiger,vorsichtigerem,vorsichtigere,vorsichtigen,vorsichtigem,vorsichtigeres,vorsichtigerer" }, "vorsorgen": { "form": "vorsorgen", "polarity": "0.0878", "pos": "VB", "sense": "vorsorgst,vorsorgte,vorsorgt,vorsorgtet,vorsorge,vorsorgtest,vorsorgten,vorgesorgt,vorsorget,vorsorgest,vorsorgend,vorzusorgen" }, "vorsorglich": { "form": "vorsorglich", "polarity": "0.0040", "pos": "JJ", "sense": "vorsorgliche,vorsorgliches,vorsorglicher,vorsorglichem,vorsorglichen" }, "vorteilhaft": { "form": "vorteilhaft", "polarity": "0.0040", "pos": "JJ", "sense": "vorteilhaftestes,vorteilhafteste,vorteilhaftes,vorteilhafter,vorteilhafte,vorteilhaftestem,vorteilhaftesten,vorteilhaften,vorteilhaftester,vorteilhaftem,vorteilhafteren,vorteilhafterem,vorteilhafteres,vorteilhafterer,vorteilhaftere" }, "vorwärts": { "form": "vorwärts", "polarity": "0.0961", "pos": "RB", "sense": "" }, "vorzeigbar": { "form": "vorzeigbar", "polarity": "0.0040", "pos": "JJ", "sense": "vorzeigbare,vorzeigbarem,vorzeigbaren,vorzeigbarste,vorzeigbarster,vorzeigbarere,vorzeigbarer,vorzeigbarstem,vorzeigbarsten,vorzeigbares,vorzeigbareres,vorzeigbarerer,vorzeigbarerem,vorzeigbarstes,vorzeigbareren" }, "vorzüglich": { "form": "vorzüglich", "polarity": "0.3223", "pos": "JJ", "sense": "vorzüglichen,vorzüglicheres,vorzüglichem,vorzüglicherer,vorzüglicher,vorzüglicheren,vorzüglicherem,vorzügliches,vorzüglichstem,vorzüglichste,vorzüglichster,vorzüglichere,vorzüglichstes,vorzüglichsten,vorzügliche" }, "wachsam": { "form": "wachsam", "polarity": "0.0891", "pos": "JJ", "sense": "wachsamsten,wachsameren,wachsamerem,wachsamstem,wachsamstes,wachsamster,wachsamen,wachsamem,wachsamer,wachsameres,wachsamerer,wachsamere,wachsames,wachsamste,wachsame" }, "wachsen": { "form": "wachsen", "polarity": "0.3607", "pos": "VB", "sense": "wachstest,wachsest,wachsten,wachstet,gewachsen,wachste,wachset,wachs,wachst,wachse" }, "wachsend": { "form": "wachsend", "polarity": "0.0040", "pos": "JJ", "sense": "wachsender,wachsendes,wachsende,wachsendem,wachsenden" }, "wagen": { "form": "wagen", "polarity": "0.0040", "pos": "VB", "sense": "wagten,wagst,wagest,wage,wagtet,gewagt,wag,wagtest,waget,wagte,wagt,wagend" }, "wahr": { "form": "wahr", "polarity": "0.2176", "pos": "JJ", "sense": "wahrer,wahres,wahre,wahrem,wahren,wahrerer,wahreres,wahrere,wahrerem,wahreren,wahrsten,wahrstes,wahrster,wahrste,wahrstem" }, "wahren": { "form": "wahren", "polarity": "0.0040", "pos": "VB", "sense": "wahrt,wahret,wahrten,wahre,wahrtet,wahrest,gewahrt,wahr,wahrtest,wahrst,wahrte" }, "warm": { "form": "warm", "polarity": "0.3796", "pos": "JJ", "sense": "wärmer,wärmerem,wärmste,wärmeren,warmem,warmen,wärmere,wärmstes,warmer,wärmster,warmes,wärmstem,wärmerer,wärmeres,wärmsten,warme" }, "warmherzig": { "form": "warmherzig", "polarity": "0.1921", "pos": "JJ", "sense": "warmherziger,warmherziges,warmherzigem,warmherzigen,warmherzige,wärmst" }, "wegweisend": { "form": "wegweisend", "polarity": "0.0040", "pos": "JJ", "sense": "wegweisendem,wegweisenden,wegweisender,wegweisendes,wegweisende" }, "weich": { "form": "weich", "polarity": "0.3591", "pos": "JJ", "sense": "weicher,weiche,weichem,weichen,weiches,weicherer,weicheres,weichere,weicherem,weicheren,weichster,weichstes,weichste,weichsten,weichstem" }, "weise": { "form": "weise", "polarity": "0.2244", "pos": "JJ", "sense": "weiseste,weisestem,weiserem,weisesten,weiseren,weisester,weisestes,weisere,weises,weiser,weisem,weisen,weiseres,weiserer" }, "weiterempfehlen": { "form": "weiterempfehlen", "polarity": "0.2101", "pos": "VB", "sense": "weiterempfehle,weiterempfiehlst,weiterempfehlest,weiterempfiehlt,weiterempfehlt,weiterempfehlet,weiterempfahl,weiterempfahlst,weiterempfahlen,weiterempfahlt,weiterempfähle,weiterempföhle,weiterempfählest,weiterempfählst,weiterempföhlest,weiterempföhlst" }, "weitgehend": { "form": "weitgehend", "polarity": "0.0040", "pos": "JJ", "sense": "weitgehenderem,weitgehenden,weitgehendem,weitgehender,weitgehendes,weitgehendste,weitgehendstes,weitgehendster,weitgehendere,weitgehende,weitgehenderes,weitgehendstem,weitgehenderer,weitgehenderen,weitgehendsten" }, "weitläufig": { "form": "weitläufig", "polarity": "0.1966", "pos": "JJ", "sense": "weitläufigeren,weitläufigem,weitläufigen,weitläufigerem,weitläufige,weitläufiges,weitläufiger,weitläufigster,weitläufigstes,weitläufigerer,weitläufigeres,weitläufigstem,weitläufigsten,weitläufigste,weitläufigere" }, "weitreichend": { "form": "weitreichend", "polarity": "0.0040", "pos": "JJ", "sense": "weitreichendsten,weitreichendstem,weitreichendster,weitreichende,weitreichendste,weitreichenderem,weitreichenderen,weitreichendstes,weitreichendes,weitreichender,weitreichenderes,weitreichendem,weitreichendere,weitreichenderer,weitreichenden" }, "weiträumig": { "form": "weiträumig", "polarity": "0.0040", "pos": "JJ", "sense": "weiträumiger,weiträumiges,weiträumigem,weiträumigen,weiträumige" }, "weitsichtig": { "form": "weitsichtig", "polarity": "0.0040", "pos": "JJ", "sense": "weitsichtige,weitsichtiges,weitsichtiger,weitsichtigem,weitsichtigen" }, "weltberühmt": { "form": "weltberühmt", "polarity": "0.0040", "pos": "JJ", "sense": "weltberühmtere,weltberühmtes,weltberühmtestes,weltberühmter,weltberühmtester,weltberühmtem,weltberühmten,weltberühmtestem,weltberühmtesten,weltberühmteste,weltberühmte,weltberühmteren,weltberühmterem,weltberühmteres,weltberühmterer" }, "wertig": { "form": "wertig", "polarity": "0.0040", "pos": "JJ", "sense": "wertiger,wertiges,wertige,wertigem,wertigen" }, "wertschätzen": { "form": "wertschätzen", "polarity": "0.0040", "pos": "VB", "sense": "wertschätzten,wertschätzet,wertschätzest,wertschätzt,wertschätze,wertgeschätzt,wertschätztet,wertschätzte,wertschätztest,wertschätzend,wertzuschätzen" }, "wertvoll": { "form": "wertvoll", "polarity": "0.357", "pos": "JJ", "sense": "wertvolleres,wertvollerer,wertvollster,wertvollerem,wertvolleren,wertvollsten,wertvollstem,wertvolle,wertvollen,wertvollem,wertvoller,wertvollere,wertvollstes,wertvolles,wertvollste" }, "wichtig": { "form": "wichtig", "polarity": "0.3822", "pos": "JJ", "sense": "wichtigsten,wichtigstem,wichtigster,wichtige,wichtigstes,wichtiger,wichtiges,wichtigere,wichtigerem,wichtigem,wichtigeren,wichtigerer,wichtigen,wichtigeres,wichtigste" }, "widerstandsfähig": { "form": "widerstandsfähig", "polarity": "0.0877", "pos": "JJ", "sense": "widerstandsfähigstes,widerstandsfähigster,widerstandsfähigerer,widerstandsfähigeres,widerstandsfähiges,widerstandsfähigerem,widerstandsfähigeren,widerstandsfähiger,widerstandsfähigem,widerstandsfähigen,widerstandsfähigsten,widerstandsfähige,widerstandsfähigstem,widerstandsfähigere,widerstandsfähigste" }, "wiederaufleben": { "form": "wiederaufleben", "polarity": "0.0040", "pos": "VB", "sense": "" }, "wiederbeleben": { "form": "wiederbeleben", "polarity": "0.0040", "pos": "VB", "sense": "wiederbelebtet,wiederbelebst,wiederbelebte,wiederbelebest,wiederbelebt,wiederbelebe,wiederbelebet,wiederbelebtest,wiederbelebten,wiederbelebend,wiederzubeleben" }, "wiedergewinnen": { "form": "wiedergewinnen", "polarity": "0.0040", "pos": "VB", "sense": "wiedergewinne,wiedergewinnst,wiedergewinnest,wiedergewinnt,wiedergewinnet,wiedergewann,wiedergewannst,wiedergewannen,wiedergewannt,wiedergewänne,wiedergewönne,wiedergewännest,wiedergewännst,weidergewönnest,wiedergewönnst,wiedergewännen" }, "wiedergutmachen": { "form": "wiedergutmachen", "polarity": "0.0040", "pos": "VB", "sense": "wiedergutmachten,wiedergutmachte,wiedergutgemacht,wiedergutmachst,wiedergutmachet,wiedergutmachtest,wiedergutmacht,wiedergutmachtet,wiedergutmachest,wiedergutmache" }, "wiederherstellen": { "form": "wiederherstellen", "polarity": "0.0040", "pos": "VB", "sense": "wiederherstellest,wiederherstellet,wiederhergestellt,wiederherstellt,wiederherstelle,wiederherstellst,wiederherstelltet,wiederherstellte,wiederherstellten,wiederherstelltest" }, "wiederkehren": { "form": "wiederkehren", "polarity": "0.0040", "pos": "VB", "sense": "wiederkehrten,wiederkehret,wiederkehrst,wiederkehrte,wiederkehrtet,wiedergekehrt,wiederkehrest,wiederkehrtest,wiederkehrt,wiederkehre,wiederkehrend" }, "wiedervereinigen": { "form": "wiedervereinigen", "polarity": "0.0040", "pos": "VB", "sense": "wiedervereinigt,wiedervereinige,wiedervereinigst,wiedervereinigte,wiedervereinigten,wiedervereinigtest,wiedervereiniget,wiedervereinigtet,wiedervereinigest,wiedervereinigend" }, "willensstark": { "form": "willensstark", "polarity": "0.0040", "pos": "JJ", "sense": "willensstarker,willensstarkes,willensstarke,willensstarkem,willensstarken" }, "willkommen": { "form": "willkommen", "polarity": "0.0040", "pos": "JJ", "sense": "willkommneren,willkommnere,willkommenstem,willkommnerem,willkommensten,willkommenstes,willkommenerer,willkommeneres,willkommenster,willkommenerem,willkommeneren,willkommenere,willkommene,willkommenen,willkommenes,willkommener" }, "wirksam": { "form": "wirksam", "polarity": "0.0040", "pos": "JJ", "sense": "wirksamstes,wirksamster,wirksamerem,wirksameren,wirksamen,wirksamerer,wirksamem,wirksameres,wirksamer,wirksamere,wirksamstem,wirksamsten,wirksames,wirksamste,wirksame,willkommner,willkommenste,willkommenst,willkommneres,willkommenem,willkommnerer" }, "wirkungsvoll": { "form": "wirkungsvoll", "polarity": "0.0040", "pos": "JJ", "sense": "wirkungsvollere,wirkungsvolle,wirkungsvolles,wirkungsvoller,wirkungsvollem,wirkungsvollste,wirkungsvollerem,wirkungsvollen,wirkungsvolleren,wirkungsvollsten,wirkungsvollerer,wirkungsvollstem,wirkungsvollster,wirkungsvolleres,wirkungsvollstes" }, "wirtschaftlich": { "form": "wirtschaftlich", "polarity": "0.0040", "pos": "JJ", "sense": "wirtschaftlicherer,wirtschaftlicheren,wirtschaftlicherem,wirtschaftlicheres,wirtschaftlichstes,wirtschaftliche,wirtschaftlichster,wirtschaftlichere,wirtschaftliches,wirtschaftlicher,wirtschaftlichsten,wirtschaftlichem,wirtschaftlichstem,wirtschaftlichen,wirtschaftlichste" }, "witzig": { "form": "witzig", "polarity": "0.4463", "pos": "JJ", "sense": "witzigeren,witzigstem,witzigerem,witzigen,witzigem,witziges,witzige,witzigere,witziger,witzigsten,witzigste,witzigstes,witzigerer,witzigster,witzigeres" }, "wohlbehalten": { "form": "wohlbehalten", "polarity": "0.0883", "pos": "JJ", "sense": "wohlbehaltenes,wohlbehaltener,wohlbehaltenen,wohlbehaltenem,wohlbehaltene" }, "wohlgeordnet": { "form": "wohlgeordnet", "polarity": "0.0040", "pos": "JJ", "sense": "wohlgeordnetem,wohlgeordneten,wohlgeordnete,wohlgeordnetes,wohlgeordneter" }, "wohlhabend": { "form": "wohlhabend", "polarity": "0.201", "pos": "JJ", "sense": "wohlhabendes,wohlhabender,wohlhabendem,wohlhabenden,wohlhabende" }, "wohlig": { "form": "wohlig", "polarity": "0.32", "pos": "JJ", "sense": "wohliges,wohlige,wohliger,wohligste,wohligen,wohligem,wohligerem,wohligsten,wohligeren,wohligeres,wohligerer,wohligstem,wohligstes,wohligere,wohligster" }, "wohltuend": { "form": "wohltuend", "polarity": "0.2113", "pos": "JJ", "sense": "wohltuenden,wohltuendem,wohltuender,wohltuendere,wohltuendste,wohltuendes,wohltuendstem,wohltuenderes,wohltuenderer,wohltuendstes,wohltuendster,wohltuenderen,wohltuendsten,wohltuende,wohltuenderem" }, "wohltätig": { "form": "wohltätig", "polarity": "0.0040", "pos": "JJ", "sense": "wohltätiges,wohltätiger,wohltätige,wohltätigen,wohltätigem" }, "wohlwollend": { "form": "wohlwollend", "polarity": "0.0040", "pos": "JJ", "sense": "wohlwollendem,wohlwollenderen,wohlwollenderem,wohlwollendste,wohlwollendster,wohlwollendstes,wohlwollendsten,wohlwollendere,wohlwollendstem,wohlwollende,wohlwollender,wohlwollenderer,wohlwollendes,wohlwollenderes,wohlwollenden" }, "wohnlich": { "form": "wohnlich", "polarity": "0.0885", "pos": "JJ", "sense": "wohnlichstes,wohnlichster,wohnlichere,wohnlichstem,wohnlichsten,wohnlicheres,wohnlicherer,wohnlichen,wohnlichste,wohnlichem,wohnliche,wohnlicheren,wohnliches,wohnlicher,wohnlicherem" }, "wunderbar": { "form": "wunderbar", "polarity": "0.7234", "pos": "JJ", "sense": "wunderbarerem,wunderbarste,wunderbarster,wunderbarerer,wunderbarstes,wunderbareres,wunderbareren,wunderbares,wunderbarer,wunderbare,wunderbaren,wunderbarem,wunderbarsten,wunderbarere,wunderbarstem" }, "wundersam": { "form": "wundersam", "polarity": "0.0040", "pos": "JJ", "sense": "wundersamste,wundersame,wundersameren,wundersamem,wundersamen,wundersamerem,wundersamstem,wundersamer,wundersamsten,wundersamere,wundersamster,wundersamerer,wundersames,wundersamstes,wundersameres" }, "wunderschön": { "form": "wunderschön", "polarity": "0.7048", "pos": "JJ", "sense": "wunderschönen,wunderschönsten,wunderschönstem,wunderschönes,wunderschönstes,wunderschöner,wunderschönster,wunderschönste,wunderschönere,wunderschönem,wunderschöneren,wunderschönerem,wunderschöne,wunderschöneres,wunderschönerer" }, "wundervoll": { "form": "wundervoll", "polarity": "0.308", "pos": "JJ", "sense": "wundervollster,wundervollstes,wundervollere,wundervollste,wundervollstem,wundervolleren,wundervollsten,wundervolleres,wundervollerer,wundervollerem,wundervolle,wundervolles,wundervoller,wundervollen,wundervollem" }, "wunschgemäß": { "form": "wunschgemäß", "polarity": "0.0040", "pos": "JJ", "sense": "wunschgemäßer,wunschgemäßen,wunschgemäßem,wunschgemäße,wunschgemäßes" }, "wärmen": { "form": "wärmen", "polarity": "0.1956", "pos": "VB", "sense": "wärmtet,wärmet,gewärmt,wärm,wärmtest,wärmest,wärmt,wärmst,wärmten,wärmte,wärme" }, "wärmstens": { "form": "wärmstens", "polarity": "0.0040", "pos": "RB", "sense": "" }, "wünschenswert": { "form": "wünschenswert", "polarity": "0.0040", "pos": "JJ", "sense": "wünschenswerten,wünschenswertesten,wünschenswertestem,wünschenswertem,wünschenswerter,wünschenswertere,wünschenswertes,wünschenswertester,wünschenswerteste,wünschenswertestes,wünschenswerteren,wünschenswerterem,wünschenswerteres,wünschenswerterer,wünschenswerte,wünschenswertest" }, "würdevoll": { "form": "würdevoll", "polarity": "0.0040", "pos": "JJ", "sense": "würdevollerer,würdevolle,würdevolleres,würdevollem,würdevollere,würdevollstes,würdevolles,würdevollste,würdevoller,würdevolleren,würdevollster,würdevollerem,würdevollen,würdevollstem,würdevollsten" }, "würdig": { "form": "würdig", "polarity": "0.0801", "pos": "JJ", "sense": "würdigstem,würdigsten,würdigeres,würdiges,würdiger,würdigen,würdigerer,würdigste,würdigstes,würdigem,würdigster,würdigeren,würdigerem,würdige,würdigere" }, "würdigen": { "form": "würdigen", "polarity": "0.2056", "pos": "VB", "sense": "würdigt,würdigst,würdiget,würdigtest,würdigten,würdig,würdigte,würdigtet,würdigest,gewürdigt,würdige" }, "zauberhaft": { "form": "zauberhaft", "polarity": "0.0040", "pos": "JJ", "sense": "zauberhaftesten,zauberhaftes,zauberhaftestem,zauberhafter,zauberhaften,zauberhaftem,zauberhaftestes,zauberhaftester,zauberhafterer,zauberhafteres,zauberhaftere,zauberhafterem,zauberhafte,zauberhafteren,zauberhafteste" }, "zeitsparend": { "form": "zeitsparend", "polarity": "0.0040", "pos": "JJ", "sense": "zeitsparendere,zeitsparenderem,zeitsparenderen,zeitsparendem,zeitsparende,zeitsparendstem,zeitsparendsten,zeitsparendster,zeitsparendstes,zeitsparendste,zeitsparenderer,zeitsparenden,zeitsparenderes,zeitsparendes,zeitsparender" }, "zielgerichtet": { "form": "zielgerichtet", "polarity": "0.0040", "pos": "JJ", "sense": "zielgerichtetem,zielgerichteten,zielgerichtete,zielgerichteter,zielgerichtetes" }, "zielstrebig": { "form": "zielstrebig", "polarity": "0.1955", "pos": "JJ", "sense": "zielstrebigeren,zielstrebigerem,zielstrebiges,zielstrebigstem,zielstrebiger,zielstrebigsten,zielstrebige,zielstrebigstes,zielstrebigster,zielstrebigem,zielstrebigen,zielstrebigste,zielstrebigere,zielstrebigeres,zielstrebigerer" }, "zivilisiert": { "form": "zivilisiert", "polarity": "0.0040", "pos": "JJ", "sense": "zivilisiertes,zivilisierterem,zivilisierteste,zivilisierteren,zivilisiertesten,zivilisierteres,zivilisierterer,zivilisiertestem,zivilisiertestes,zivilisiertester,zivilisiertere,zivilisiertem,zivilisierten,zivilisierter,zivilisierte" }, "zufließen": { "form": "zufließen", "polarity": "0.0040", "pos": "VB", "sense": "zufließe,zufließt,zufließest,zufließet,zufloss,zufloß,zuflossest,zuflosst,zufloßt,zuflossen,zuflösse,zuflössest,zuflössen" }, "zufrieden": { "form": "zufrieden", "polarity": "0.393", "pos": "JJ", "sense": "zufriednere,zufriedner,zufriedenerem,zufriedneres,zufriedenstes,zufriedenster,zufriednerer,zufriedensten,zufriedene,zufriednerem,zufriedenstem,zufriedneren,zufriedenes,zufriedenste,zufriedenere" }, "zufriedenstellend": { "form": "zufriedenstellend", "polarity": "0.0040", "pos": "JJ", "sense": "zufriedenstellender,zufriedenstellendes,zufriedenstellende,zufriedenstellenden,zufriedenstellendem,zufriedenstellenderer,zufriedenstellenderes,zufriedenstellenderem,zufriedenstellenderen,zufriedenstellendere,zufriedenstellendster,zufriedenstellendstes,zufriedenstellendste,zufriedenstellendsten,zufriedenstellendstem,zufriedenem,zufriedenen,zufriedeneren,zufriedeneres,zufriedener,zufriedenerer" }, "zufügen": { "form": "zufügen", "polarity": "0.0040", "pos": "VB", "sense": "zufüge,zufügst,zufügest,zufügt,zufüget,zufügte,zufügtest,zufügten,zufügtet,zufügend,zuzufügen,zugefügt" }, "zugeben": { "form": "zugeben", "polarity": "0.0040", "pos": "VB", "sense": "zugebe,zugibst,zugebest,zugibt,zugebt,zugab,zugäbe,zugabst,zugäbest,zugäbst,zugaben,zugäben,zugabt,zugäbet,zugäbt" }, "zugreifen": { "form": "zugreifen", "polarity": "0.0040", "pos": "VB", "sense": "zugreife,zugreifst,zugreift,zugreifen,zugreifet,zugriff,zugriffe,zugriffst,zugriffest,zugriffen,zugrifft,zugriffet,zugreifend,zuzugreifen,zugegriffen" }, "zugänglich": { "form": "zugänglich", "polarity": "0.0040", "pos": "JJ", "sense": "zugänglichste,zugänglicher,zugänglicherem,zugänglicheren,zugängliches,zugänglichstes,zugänglicherer,zugänglicheres,zugänglichstem,zugänglichster,zugänglichsten,zugänglichem,zugänglichere,zugängliche,zugänglichen" }, "zukunftsweisend": { "form": "zukunftsweisend", "polarity": "0.0859", "pos": "JJ", "sense": "zukunftsweisendem,zukunftsweisenden,zukunftsweisende,zukunftsweisendes,zukunftsweisender" }, "zulegen": { "form": "zulegen", "polarity": "0.0922", "pos": "VB", "sense": "zulegest,zulegtet,zugelegt,zulegten,zulegst,zulegte,zulegt,zuleget,zulege,zulegtest,zulegend,zuzulegen" }, "zulässig": { "form": "zulässig", "polarity": "0.0040", "pos": "JJ", "sense": "zulässige,zulässiger,zulässiges,zulässigen,zulässigem" }, "zurückgewinnen": { "form": "zurückgewinnen", "polarity": "0.0040", "pos": "VB", "sense": "zurückgewinne,zurückgewinnst,zurückgewinnest,zurückgewinnt,zurückgewinnet,zurückgewann,zurückgewannst,zurückgewannen,zurückgewannt,zurückgewänne,zurückgewönne,zurückgewännest,zurückgewännst,zurückgewönnest,zurückgewönnst,zurückgewännen" }, "zusammenhalten": { "form": "zusammenhalten", "polarity": "0.0834", "pos": "VB", "sense": "zusammenhalte,zusammenhältst,zusammenhaltest,zusammenhaltet,zusammenhält,zusammenhielt,zusammenhielte,zusammenhieltest,zusammenhieltst,zusammenhielten,zusammenhieltet,zusammenhaltend,zusammenzuhalten,zusammengehalten" }, "zuschießen": { "form": "zuschießen", "polarity": "0.0040", "pos": "VB", "sense": "zuschieße,zuschießt,zuschießest,zuschießet,zuschoss,zuschoß,zuschossest,zuschosst,zuschoßt,zuschossen,zuschösse,zuschössest,zuschössen,zuschösset" }, "zustimmen": { "form": "zustimmen", "polarity": "0.0040", "pos": "VB", "sense": "zustimme,zustimmst,zustimmest,zustimmt,zustimmte,zustimmtest,zustimmten,zustimmtet,zustimmend,zugestimmt" }, "zuverlässig": { "form": "zuverlässig", "polarity": "0.2052", "pos": "JJ", "sense": "zuverlässigsten,zuverlässigster,zuverlässigstes,zuverlässigerer,zuverlässigeres,zuverlässigeren,zuverlässige,zuverlässigerem,zuverlässigstem,zuverlässigste,zuverlässiges,zuverlässiger,zuverlässigere,zuverlässigen,zuverlässigem" }, "zuversichtlich": { "form": "zuversichtlich", "polarity": "0.2179", "pos": "JJ", "sense": "zuversichtlichen,zuversichtlichem,zuversichtlichste,zuversichtlichstem,zuversichtlichsten,zuversichtlicherer,zuversichtlicheres,zuversichtlicherem,zuversichtlicheren,zuversichtliche,zuversichtlichstes,zuversichtlicher,zuversichtlichere,zuversichtlichster,zuversichtliches" }, "zuvorkommend": { "form": "zuvorkommend", "polarity": "0.6669", "pos": "JJ", "sense": "zuvorkommendste,zuvorkommende,zuvorkommenderes,zuvorkommenderer,zuvorkommenderen,zuvorkommendes,zuvorkommendstes,zuvorkommender,zuvorkommenderem,zuvorkommenden,zuvorkommendem,zuvorkommendere,zuvorkommendsten,zuvorkommendstem,zuvorkommendster" }, "zweifellos": { "form": "zweifellos", "polarity": "0.0839", "pos": "JJ", "sense": "" }, "Übereinkunft": { "form": "Übereinkunft", "polarity": "0.0040", "pos": "NN", "sense": "Übereinkünfte,Übereinkünften" }, "Übereinstimmung": { "form": "Übereinstimmung", "polarity": "0.0040", "pos": "NN", "sense": "Übereinstimmungen" }, "Überfluß": { "form": "Überfluß", "polarity": "0.0040", "pos": "NN", "sense": "Überfluss,Überflusses,Überflusse" }, "Überlegenheit": { "form": "Überlegenheit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Überlegung": { "form": "Überlegung", "polarity": "0.0040", "pos": "NN", "sense": "Überlegungen" }, "Überparteilichkeit": { "form": "Überparteilichkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Überschaubarkeit": { "form": "Überschaubarkeit", "polarity": "0.0040", "pos": "NN", "sense": "" }, "Überschwänglichkeit": { "form": "Überschwänglichkeit", "polarity": "0.0040", "pos": "NN", "sense": "Überschwänglichkeiten,Überschwenglichkeit,Überschwenglichkeiten" }, "Überzeugung": { "form": "Überzeugung", "polarity": "0.0040", "pos": "NN", "sense": "Überzeugungen" }, "ästhetisch": { "form": "ästhetisch", "polarity": "0.2038", "pos": "JJ", "sense": "ästhetischem,ästhetischerer,ästhetischen,ästhetische,ästhetischstes,ästhetischeres,ästhetisches,ästhetischer,ästhetischere,ästhetischerem,ästhetischeren,ästhetischste,ästhetischster,ästhetischsten,ästhetischstem" }, "überdurchschnittlich": { "form": "überdurchschnittlich", "polarity": "0.09", "pos": "JJ", "sense": "überdurchschnittlichstem,überdurchschnittlichsten,überdurchschnittlicher,überdurchschnittliche,überdurchschnittlichen,überdurchschnittlichem,überdurchschnittlicherem,überdurchschnittlichere,überdurchschnittliches,überdurchschnittlichste,überdurchschnittlichster,überdurchschnittlicherer,überdurchschnittlichstes,überdurchschnittlicheres,überdurchschnittlicheren" }, "überglücklich": { "form": "überglücklich", "polarity": "0.0040", "pos": "JJ", "sense": "überglückliche,überglücklichen,überglücklichem,überglücklicher,überglückliches" }, "übergroß": { "form": "übergroß", "polarity": "0.0040", "pos": "JJ", "sense": "übergroßem,übergroßen,übergroße,übergroßes,übergroßer" }, "überholen": { "form": "überholen", "polarity": "0.0040", "pos": "VB", "sense": "überholten,überholet,überhole,überhol,überholt,überholtet,überholst,überholtest,überholest,überholte" }, "überleben": { "form": "überleben", "polarity": "0.0040", "pos": "VB", "sense": "überlebten,überlebet,überlebtest,überleb,überlebte,überlebt,überlebst,überlebe,überlebtet,übergelebt,überlebest,überlebend" }, "überlegen": { "form": "überlegen", "polarity": "0.0040", "pos": "JJ", "sense": "überlegenen,überlegenem,überlegenes,überlegener,überlegeneren,überlegenste,überlegenerem,überlegene,überlegeneres,überlegner,überlegenerer,überlegnerem" }, "überlegt": { "form": "überlegt", "polarity": "0.0040", "pos": "JJ", "sense": "überlegter,überlegtes,überlegte,überlegtem,überlegten,überlegner,überlegenerer,überlegtet,überlegnerem,überlegneren,überlegensten,überlegneres,überlegenstem,überlegnerer,überleget,überlegest,überlegenstes,überlegenster,überlegtest" }, "übermenschlich": { "form": "übermenschlich", "polarity": "0.0040", "pos": "JJ", "sense": "übermenschliches,übermenschlicher,übermenschlichen,übermenschliche,übermenschlichem" }, "überragend": { "form": "überragend", "polarity": "0.0040", "pos": "JJ", "sense": "überragender,überragendes,überragende,überragendem,überragenden" }, "überraschend": { "form": "überraschend", "polarity": "0.0040", "pos": "JJ", "sense": "überraschender,überraschendes,überraschende,überraschenden,überraschendem,überraschenderer,überraschenderes,überraschendere,überraschenderem,überraschenderen,überraschendster,überraschendstes,überraschendste,überraschendstem,überraschendsten" }, "überrascht": { "form": "überrascht", "polarity": "0.2438", "pos": "JJ", "sense": "überraschtere,überraschtestem,überraschtesten,überraschtester,überraschtestes,überraschter,überraschtes,überraschterer,überraschteste,überraschte,überraschteres,überraschteren,überraschterem,überraschten,überraschtem" }, "überrunden": { "form": "überrunden", "polarity": "0.0040", "pos": "VB", "sense": "überrundete,überrunde,überrundetet,überrund,überrundest,überrundeten,überrundetest,überrundet" }, "überschaubar": { "form": "überschaubar", "polarity": "0.0040", "pos": "JJ", "sense": "überschaubarer,überschaubares,überschaubare,überschauberen,überschaubarem" }, "überschwänglich": { "form": "überschwänglich", "polarity": "0.0040", "pos": "JJ", "sense": "überschwänglicher,überschwängliches,überschwängliche,überschwänglichen,überschwänglichem,überschwenglicher,überschwengliches,überschwengliche,überschwenglichen,überschwenglichem,überschwenglichere,überschwänglichere,überschwänglicheren,überschwenglicheren,überschwändlicheres,überschwenglicheres" }, "überschäumen": { "form": "überschäumen", "polarity": "0.0040", "pos": "VB", "sense": "überschäumt,überschäumst,überschäumten,überschäumte,überschäume,überschäumet,überschäumtet,überschäumest,übergeschäumt,überschäumtest" }, "übersichtlich": { "form": "übersichtlich", "polarity": "0.2253", "pos": "JJ", "sense": "übersichtlicherem,übersichtlichste,übersichtlicheren,übersichtlichere,übersichtlichstem,übersichtlichsten,übersichtlichstes,übersichtlichster,übersichtlicher,übersichtliches,übersichtlichem,übersichtlichen,übersichtliche,übersichtlicherer,übersichtlicheres" }, "übertreffen": { "form": "übertreffen", "polarity": "0.0040", "pos": "VB", "sense": "übertreffe,übertriffst,übertreffest,übertrifft,übertrefft,übertreffet,übertraf,überträfe,übertrafst,überträfest,überträfst,übertraft,überträfet,überträft,übertrafen,überträfen" }, "überwinden": { "form": "überwinden", "polarity": "0.0040", "pos": "VB", "sense": "überwinde,überwindest,überwindet,überwand,überwände,überwandest,überwandst,überwändest,überwanden,überwänden,überwandet,überwändet,überwind" }, "überwältigend": { "form": "überwältigend", "polarity": "0.3312", "pos": "JJ", "sense": "überwältigender,überwältigendes,überwältigende,überwältigenden,überwältigendem" }, "überwältigt": { "form": "überwältigt", "polarity": "0.0578", "pos": "JJ", "sense": "überwältigter,überwältigtes,überwältigte,überwältigten,überwältigtem" }, "überzeugen": { "form": "überzeugen", "polarity": "0.3396", "pos": "VB", "sense": "überzeuge,überzeugst,überzeugt,überzeuget,überzeugest,überzeugte,überzeugtest,überzeugten,überzeugtet,überzeug" }, "überzeugend": { "form": "überzeugend", "polarity": "0.4489", "pos": "JJ", "sense": "überzeugender,überzeugendes,überzeugende,überzeugenden,überzeugendem,überzeugenderer,überzeugenderes,überzeugendere,überzeugenderem,überzeugenderen,überzeugendster,überzeugendstes,überzeugendste,überzeugendsten,überzeugendstem" }, "überzeugt": { "form": "überzeugt", "polarity": "0.2381", "pos": "JJ", "sense": "überzeugtestem,überzeugtesten,überzeugtester,überzeugte,überzeugtes,überzeugter,überzeugterer,überzeugtere,überzeugteres,überzeugtem,überzeugten,überzeugteren,überzeugteste,überzeugterem,überzeugtestes" }, "üppig": { "form": "üppig", "polarity": "0.201", "pos": "JJ", "sense": "üppiges,üppigster,üppigstes,üppigen,üppigem,üppigsten,üppigerer,üppigere,üppigeres,üppigste,üppiger,üppigstem,üppigeren,üppigerem,üppige" } } ================================================ FILE: lib/natural/sentiment/Italian/pattern-sentiment-it.json ================================================ { "FALSO": { "form": "FALSO", "pos": "", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "VERO": { "form": "VERO", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "abbastanza": { "form": "abbastanza", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "abile": { "form": "abile", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "abilmente": { "form": "abilmente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "abominare": { "form": "abominare", "pos": "VB", "polarity": "-0.50", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "aborrire": { "form": "aborrire", "pos": "VB", "polarity": "-0.50", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "accanita": { "form": "accanita", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "accanto": { "form": "accanto", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "accattivante": { "form": "accattivante", "pos": "JJ", "polarity": "0.62", "subjectivity": "0.50", "intensity": "1.75", "label": "" }, "accattivanti": { "form": "accattivanti", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "accessibile": { "form": "accessibile", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.28", "intensity": "1.00", "label": "" }, "accettabile": { "form": "accettabile", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "accoglibile": { "form": "accoglibile", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "accomandare": { "form": "accomandare", "pos": "VB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "accorto": { "form": "accorto", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "accurata": { "form": "accurata", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "acre": { "form": "acre", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "acuta": { "form": "acuta", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "adatta": { "form": "adatta", "pos": "JJ", "polarity": "0.18", "subjectivity": "0.38", "intensity": "1.00", "label": "" }, "adatte": { "form": "adatte", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "adatti": { "form": "adatti", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "adatto": { "form": "adatto", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.33", "intensity": "1.33", "label": "" }, "addirittura": { "form": "addirittura", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "addosso": { "form": "addosso", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "adeguatamente": { "form": "adeguatamente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "adeguato": { "form": "adeguato", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "aderentemente": { "form": "aderentemente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "adesivi": { "form": "adesivi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "adesso": { "form": "adesso", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "adjective": { "form": "adjective", "pos": "", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "adolescente": { "form": "adolescente", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "adolescenti": { "form": "adolescenti", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "adolescenziale": { "form": "adolescenziale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "adolescenziali": { "form": "adolescenziali", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "adorabile": { "form": "adorabile", "pos": "JJ", "polarity": "0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "adorabili": { "form": "adorabili", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "adulta": { "form": "adulta", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "adulti": { "form": "adulti", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "affabile": { "form": "affabile", "pos": "JJ", "polarity": "0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "affascinante": { "form": "affascinante", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "affascinanti": { "form": "affascinanti", "pos": "JJ", "polarity": "0.67", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "affatto": { "form": "affatto", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "affidabile": { "form": "affidabile", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.67", "intensity": "1.67", "label": "" }, "affrontabile": { "form": "affrontabile", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.28", "intensity": "1.00", "label": "" }, "aformadi": { "form": "aformadi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "africa": { "form": "africa", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "agevole": { "form": "agevole", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.62", "intensity": "1.00", "label": "" }, "agghiacciante": { "form": "agghiacciante", "pos": "JJ", "polarity": "-0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "aggrottato": { "form": "aggrottato", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "agro": { "form": "agro", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "ahimè": { "form": "ahimè", "pos": "UH", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "alcun": { "form": "alcun", "pos": "JJ", "polarity": "-0.01", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "alcuna": { "form": "alcuna", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "alcune": { "form": "alcune", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "alesaggio": { "form": "alesaggio", "pos": "VB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "alieno": { "form": "alieno", "pos": "JJ", "polarity": "-0.25", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "alimentari": { "form": "alimentari", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "allegra": { "form": "allegra", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "allegro": { "form": "allegro", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "allistante": { "form": "allistante", "pos": "RB", "polarity": "0.03", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "allora": { "form": "allora", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "almeno": { "form": "almeno", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "almomento": { "form": "almomento", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "alquanto": { "form": "alquanto", "pos": "RB", "polarity": "0.00", "subjectivity": "0.05", "intensity": "1.50", "label": "" }, "alta": { "form": "alta", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "altamente": { "form": "altamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "alte": { "form": "alte", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "alterna": { "form": "alterna", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "alternative": { "form": "alternative", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "alternativo": { "form": "alternativo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "alti": { "form": "alti", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "altissimo": { "form": "altissimo", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "alto": { "form": "alto", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "altra": { "form": "altra", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "altre": { "form": "altre", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "altrettanti": { "form": "altrettanti", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "altrettanto": { "form": "altrettanto", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "altri": { "form": "altri", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "altrimenti": { "form": "altrimenti", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "altro": { "form": "altro", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "altrove": { "form": "altrove", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "altrui": { "form": "altrui", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "amabile": { "form": "amabile", "pos": "JJ", "polarity": "0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "amara": { "form": "amara", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "amare": { "form": "amare", "pos": "VB", "polarity": "0.67", "subjectivity": "0.75", "intensity": "2.00", "label": "" }, "amaro": { "form": "amaro", "pos": "JJ", "polarity": "-0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "amate": { "form": "amate", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "ambizione": { "form": "ambizione", "pos": "NN", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "ameno": { "form": "ameno", "pos": "JJ", "polarity": "0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "america": { "form": "america", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "americana": { "form": "americana", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "americane": { "form": "americane", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "americani": { "form": "americani", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "americano": { "form": "americano", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "americhe": { "form": "americhe", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "amorosa": { "form": "amorosa", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "amorose": { "form": "amorose", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "ampia": { "form": "ampia", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "ampiamente": { "form": "ampiamente", "pos": "RB", "polarity": "0.17", "subjectivity": "0.00", "intensity": "1.50", "label": "" }, "ampio": { "form": "ampio", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.28", "intensity": "1.00", "label": "" }, "ana": { "form": "ana", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "anche": { "form": "anche", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ancora": { "form": "ancora", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "andando": { "form": "andando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "andarealcreatore": { "form": "andarealcreatore", "pos": "VB", "polarity": "-0.33", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "andareallaltromondo": { "form": "andareallaltromondo", "pos": "VB", "polarity": "-0.33", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "andareavuoto": { "form": "andareavuoto", "pos": "VB", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "andareincielo": { "form": "andareincielo", "pos": "VB", "polarity": "-0.33", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "andareinparadiso": { "form": "andareinparadiso", "pos": "VB", "polarity": "-0.33", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "angelicamente": { "form": "angelicamente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "angelico": { "form": "angelico", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "angosciato": { "form": "angosciato", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "angustamente": { "form": "angustamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "angustiato": { "form": "angustiato", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "anima": { "form": "anima", "pos": "NN", "polarity": "0.10", "subjectivity": "0.08", "intensity": "1.17", "label": "" }, "animo": { "form": "animo", "pos": "NN", "polarity": "0.10", "subjectivity": "0.08", "intensity": "1.00", "label": "" }, "animosita": { "form": "animosita", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "anonimo": { "form": "anonimo", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "ansieta": { "form": "ansieta", "pos": "NN", "polarity": "0.17", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "antica": { "form": "antica", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.38", "intensity": "1.00", "label": "" }, "anticato": { "form": "anticato", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "antichi": { "form": "antichi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "antichizzato": { "form": "antichizzato", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "antico": { "form": "antico", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "anzi": { "form": "anzi", "pos": "UH", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "anziano": { "form": "anziano", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "aperta": { "form": "aperta", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "aperte": { "form": "aperte", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "aperti": { "form": "aperti", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "apocalittico": { "form": "apocalittico", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "appagante": { "form": "appagante", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "apparente": { "form": "apparente", "pos": "JJ", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "apparentemente": { "form": "apparentemente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.33", "intensity": "0.83", "label": "" }, "appassionante": { "form": "appassionante", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "appassionata": { "form": "appassionata", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "appassionati": { "form": "appassionati", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "appassionato": { "form": "appassionato", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "appena": { "form": "appena", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "0.75", "label": "" }, "appendici": { "form": "appendici", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "appieno": { "form": "appieno", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "apposito": { "form": "apposito", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "apprezzabile": { "form": "apprezzabile", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "approfondita": { "form": "approfondita", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "approfonditi": { "form": "approfonditi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "appropriato": { "form": "appropriato", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "appunto": { "form": "appunto", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "aprendo": { "form": "aprendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "aquantopare": { "form": "aquantopare", "pos": "RB", "polarity": "0.00", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "arabo": { "form": "arabo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ardente": { "form": "ardente", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "ardito": { "form": "ardito", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "arduamente": { "form": "arduamente", "pos": "RB", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "argentina": { "form": "argentina", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "arridere": { "form": "arridere", "pos": "VB", "polarity": "0.33", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "arrivando": { "form": "arrivando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "arrogante": { "form": "arrogante", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "arrossato": { "form": "arrossato", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "arrovellare": { "form": "arrovellare", "pos": "VB", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "artato": { "form": "artato", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "articolata": { "form": "articolata", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.30", "intensity": "1.00", "label": "" }, "asciutta": { "form": "asciutta", "pos": "JJ", "polarity": "-0.03", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "asciutto": { "form": "asciutto", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "ascoltando": { "form": "ascoltando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "asinita": { "form": "asinita", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "asino": { "form": "asino", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "aspettando": { "form": "aspettando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "assai": { "form": "assai", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "assassina": { "form": "assassina", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.17", "intensity": "1.33", "label": "" }, "assieme": { "form": "assieme", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "assoluta": { "form": "assoluta", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "assolutamente": { "form": "assolutamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "assoluto": { "form": "assoluto", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "assurda": { "form": "assurda", "pos": "JJ", "polarity": "-0.38", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "assurde": { "form": "assurde", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.67", "intensity": "1.33", "label": "" }, "assurdo": { "form": "assurdo", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.67", "intensity": "1.33", "label": "" }, "astronomicamente": { "form": "astronomicamente", "pos": "RB", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "astutamente": { "form": "astutamente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "astuto": { "form": "astuto", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "atroce": { "form": "atroce", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "atrocemente": { "form": "atrocemente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.50", "label": "" }, "attendibile": { "form": "attendibile", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "attendo": { "form": "attendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "attenta": { "form": "attenta", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "attentamente": { "form": "attentamente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "attenti": { "form": "attenti", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "attento": { "form": "attento", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "atteso": { "form": "atteso", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "attillatamente": { "form": "attillatamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "attinenti": { "form": "attinenti", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "attivita": { "form": "attivita", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "attivitaricreativa": { "form": "attivitaricreativa", "pos": "NN", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "attivo": { "form": "attivo", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "atto": { "form": "atto", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "attorno": { "form": "attorno", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "attraente": { "form": "attraente", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "attuale": { "form": "attuale", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "attuali": { "form": "attuali", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.33", "label": "" }, "attualmente": { "form": "attualmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "aulico": { "form": "aulico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "autentica": { "form": "autentica", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "autenticamente": { "form": "autenticamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "autenticazione": { "form": "autenticazione", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "autentico": { "form": "autentico", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "autobiografico": { "form": "autobiografico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "autoconclusivo": { "form": "autoconclusivo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "automatico": { "form": "automatico", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "autoritario": { "form": "autoritario", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "autrici": { "form": "autrici", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "avanti": { "form": "avanti", "pos": "RB", "polarity": "0.12", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "avanzodigalera": { "form": "avanzodigalera", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "avendo": { "form": "avendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "avereinodio": { "form": "avereinodio", "pos": "VB", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "avveduto": { "form": "avveduto", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "avvenente": { "form": "avvenente", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "avveniristico": { "form": "avveniristico", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "avventurosa": { "form": "avventurosa", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "avventuroso": { "form": "avventuroso", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "avvincente": { "form": "avvincente", "pos": "JJ", "polarity": "0.83", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "avvincenti": { "form": "avvincenti", "pos": "JJ", "polarity": "0.83", "subjectivity": "0.83", "intensity": "0.83", "label": "" }, "avvizzito": { "form": "avvizzito", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "azzurro": { "form": "azzurro", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "babbeo": { "form": "babbeo", "pos": "NN", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "badalone": { "form": "badalone", "pos": "NN", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "bagatella": { "form": "bagatella", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "baggiano": { "form": "baggiano", "pos": "NN", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "balordo": { "form": "balordo", "pos": "NN", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "banale": { "form": "banale", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "banali": { "form": "banali", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "bane": { "form": "bane", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "basilari": { "form": "basilari", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "bassa": { "form": "bassa", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "bassi": { "form": "bassi", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "bassissimo": { "form": "bassissimo", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "basso": { "form": "basso", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "beato": { "form": "beato", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "beh": { "form": "beh", "pos": "UH", "polarity": "-0.05", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "bei": { "form": "bei", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "bel": { "form": "bel", "pos": "JJ", "polarity": "0.83", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "bella": { "form": "bella", "pos": "JJ", "polarity": "0.83", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "belle": { "form": "belle", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "belli": { "form": "belli", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "bellissima": { "form": "bellissima", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "bellissime": { "form": "bellissime", "pos": "JJ", "polarity": "0.83", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "bellissimi": { "form": "bellissimi", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "bello": { "form": "bello", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "ben": { "form": "ben", "pos": "RB", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "bene": { "form": "bene", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "benissimo": { "form": "benissimo", "pos": "RB", "polarity": "0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "bianca": { "form": "bianca", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "biancheriaintima": { "form": "biancheriaintima", "pos": "JJ", "polarity": "0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "bianchi": { "form": "bianchi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "bianco": { "form": "bianco", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "biancoduovo": { "form": "biancoduovo", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "biasimo": { "form": "biasimo", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "bizzarro": { "form": "bizzarro", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "ble": { "form": "ble", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "blu": { "form": "blu", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "blue": { "form": "blue", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "boh": { "form": "boh", "pos": "UH", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "bompiani": { "form": "bompiani", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "borghese": { "form": "borghese", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "brava": { "form": "brava", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "bravi": { "form": "bravi", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "bravissima": { "form": "bravissima", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "bravissimo": { "form": "bravissimo", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "bravo": { "form": "bravo", "pos": "UH", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.33", "label": "" }, "breve": { "form": "breve", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "brevi": { "form": "brevi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "brevilineo": { "form": "brevilineo", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "brevissimi": { "form": "brevissimi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "brevissimo": { "form": "brevissimo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "brilla": { "form": "brilla", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "brillante": { "form": "brillante", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "brillanti": { "form": "brillanti", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "brusco": { "form": "brusco", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "brutale": { "form": "brutale", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "brutta": { "form": "brutta", "pos": "JJ", "polarity": "-0.38", "subjectivity": "0.88", "intensity": "1.25", "label": "" }, "brutte": { "form": "brutte", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "brutto": { "form": "brutto", "pos": "JJ", "polarity": "-0.83", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "bucare": { "form": "bucare", "pos": "VB", "polarity": "-0.33", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "buffa": { "form": "buffa", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "bugie": { "form": "bugie", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "buona": { "form": "buona", "pos": "JJ", "polarity": "0.62", "subjectivity": "0.50", "intensity": "1.25", "label": "" }, "buone": { "form": "buone", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "buoni": { "form": "buoni", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "buono": { "form": "buono", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.33", "label": "" }, "burbero": { "form": "burbero", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "burrascoso": { "form": "burrascoso", "pos": "JJ", "polarity": "-0.83", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "calamita": { "form": "calamita", "pos": "NN", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "calcolatore": { "form": "calcolatore", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "calda": { "form": "calda", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "caldamente": { "form": "caldamente", "pos": "RB", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "caldo": { "form": "caldo", "pos": "JJ", "polarity": "0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "calore": { "form": "calore", "pos": "JJ", "polarity": "-0.03", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "caloroso": { "form": "caloroso", "pos": "JJ", "polarity": "0.83", "subjectivity": "1.00", "intensity": "1.50", "label": "" }, "cancan": { "form": "cancan", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "candido": { "form": "candido", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "canonico": { "form": "canonico", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "capace": { "form": "capace", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "capaci": { "form": "capaci", "pos": "JJ", "polarity": "0.28", "subjectivity": "0.05", "intensity": "1.50", "label": "" }, "capiente": { "form": "capiente", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "capisco": { "form": "capisco", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "capitale": { "form": "capitale", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "capolavoro": { "form": "capolavoro", "pos": "NN", "polarity": "1.00", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "cara": { "form": "cara", "pos": "JJ", "polarity": "0.67", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "caratterialmente": { "form": "caratterialmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "caratteristico": { "form": "caratteristico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "cari": { "form": "cari", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "carina": { "form": "carina", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "carine": { "form": "carine", "pos": "JJ", "polarity": "0.75", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "carini": { "form": "carini", "pos": "JJ", "polarity": "0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "carinissimo": { "form": "carinissimo", "pos": "JJ", "polarity": "0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "carino": { "form": "carino", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "carismatico": { "form": "carismatico", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "caro": { "form": "caro", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "carogna": { "form": "carogna", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "cartacea": { "form": "cartacea", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "cartaceo": { "form": "cartaceo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "cartonato": { "form": "cartonato", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "casino": { "form": "casino", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "casuale": { "form": "casuale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "categoricamente": { "form": "categoricamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "cattiva": { "form": "cattiva", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "cattivariuscita": { "form": "cattivariuscita", "pos": "NN", "polarity": "-0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "cattivasorte": { "form": "cattivasorte", "pos": "NN", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "cattivi": { "form": "cattivi", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "cattivo": { "form": "cattivo", "pos": "JJ", "polarity": "-0.83", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "cauto": { "form": "cauto", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "cazzo": { "form": "cazzo", "pos": "NN", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "celaena": { "form": "celaena", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "celebre": { "form": "celebre", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "celermente": { "form": "celermente", "pos": "RB", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "celia": { "form": "celia", "pos": "NN", "polarity": "0.22", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "centrale": { "form": "centrale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "centro": { "form": "centro", "pos": "NN", "polarity": "0.10", "subjectivity": "0.08", "intensity": "2.00", "label": "" }, "cercando": { "form": "cercando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "certa": { "form": "certa", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.33", "intensity": "1.67", "label": "" }, "certamente": { "form": "certamente", "pos": "RB", "polarity": "0.17", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "certe": { "form": "certe", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "certi": { "form": "certi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "certo": { "form": "certo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.33", "intensity": "1.33", "label": "" }, "chetamente": { "form": "chetamente", "pos": "RB", "polarity": "0.20", "subjectivity": "0.07", "intensity": "1.00", "label": "" }, "chiara": { "form": "chiara", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "chiaramente": { "form": "chiaramente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.75", "intensity": "2.00", "label": "" }, "chiare": { "form": "chiare", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "chiari": { "form": "chiari", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "chiaro": { "form": "chiaro", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.83", "intensity": "2.00", "label": "" }, "chimica": { "form": "chimica", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "chissà": { "form": "chissà", "pos": "RB", "polarity": "0.00", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "chiudendo": { "form": "chiudendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "chiusi": { "form": "chiusi", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "chiuso": { "form": "chiuso", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ciao": { "form": "ciao", "pos": "UH", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "ciarlatano": { "form": "ciarlatano", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "cicchetto": { "form": "cicchetto", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ciliegiuolo": { "form": "ciliegiuolo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "cinematografica": { "form": "cinematografica", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.07", "intensity": "1.00", "label": "" }, "cinematografiche": { "form": "cinematografiche", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "cinese": { "form": "cinese", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "cinico": { "form": "cinico", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "cioè": { "form": "cioè", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "circospetto": { "form": "circospetto", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "circostanziato": { "form": "circostanziato", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "cito": { "form": "cito", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "civile": { "form": "civile", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "classica": { "form": "classica", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "classici": { "form": "classici", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.38", "intensity": "1.00", "label": "" }, "classico": { "form": "classico", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.17", "intensity": "1.33", "label": "" }, "coartato": { "form": "coartato", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "cocente": { "form": "cocente", "pos": "JJ", "polarity": "-0.03", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "coerente": { "form": "coerente", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "coerenti": { "form": "coerenti", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "coglione": { "form": "coglione", "pos": "NN", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "cogruo": { "form": "cogruo", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.33", "intensity": "2.00", "label": "" }, "coinvolgente": { "form": "coinvolgente", "pos": "JJ", "polarity": "0.83", "subjectivity": "0.50", "intensity": "1.33", "label": "" }, "colorate": { "form": "colorate", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "colorati": { "form": "colorati", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "colorato": { "form": "colorato", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "colpevole": { "form": "colpevole", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.67", "label": "" }, "colpita": { "form": "colpita", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "colto": { "form": "colto", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "comfort": { "form": "comfort", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "2.00", "label": "" }, "comicita": { "form": "comicita", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "commedia": { "form": "commedia", "pos": "NN", "polarity": "-0.07", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "commerciale": { "form": "commerciale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "commossa": { "form": "commossa", "pos": "JJ", "polarity": "0.25", "subjectivity": "3.25", "intensity": "1.00", "label": "" }, "commovente": { "form": "commovente", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "commuove": { "form": "commuove", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "commuovente": { "form": "commuovente", "pos": "RB", "polarity": "0.25", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "comoda": { "form": "comoda", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "comodi": { "form": "comodi", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "comodita": { "form": "comodita", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "comodo": { "form": "comodo", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "compatto": { "form": "compatto", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "compendiario": { "form": "compendiario", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "competitivo": { "form": "competitivo", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "compiaciuto": { "form": "compiaciuto", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "complessa": { "form": "complessa", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.67", "intensity": "1.33", "label": "" }, "complesse": { "form": "complesse", "pos": "JJ", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "complessi": { "form": "complessi", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "complesso": { "form": "complesso", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "completa": { "form": "completa", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "completamente": { "form": "completamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "complete": { "form": "complete", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "completi": { "form": "completi", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "completo": { "form": "completo", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.12", "intensity": "1.00", "label": "" }, "complicato": { "form": "complicato", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "complimenti": { "form": "complimenti", "pos": "NN", "polarity": "0.50", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "comprensibile": { "form": "comprensibile", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "compreso": { "form": "compreso", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "comprimari": { "form": "comprimari", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "comune": { "form": "comune", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "comunicativo": { "form": "comunicativo", "pos": "JJ", "polarity": "0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "comunque": { "form": "comunque", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "conattenzione": { "form": "conattenzione", "pos": "RB", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "conciso": { "form": "conciso", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "concludendo": { "form": "concludendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "conclusivo": { "form": "conclusivo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "concorrenziale": { "form": "concorrenziale", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "concreti": { "form": "concreti", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "concreto": { "form": "concreto", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "confesso": { "form": "confesso", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "conforme": { "form": "conforme", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "conformista": { "form": "conformista", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "confort": { "form": "confort", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "confuse": { "form": "confuse", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "confusione": { "form": "confusione", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "confuso": { "form": "confuso", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.67", "intensity": "1.67", "label": "" }, "congruente": { "form": "congruente", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "congruo": { "form": "congruo", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "conoscendo": { "form": "conoscendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "conosciuti": { "form": "conosciuti", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.10", "intensity": "1.00", "label": "" }, "consapevole": { "form": "consapevole", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "consapevoli": { "form": "consapevoli", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "conseguente": { "form": "conseguente", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "conservatore": { "form": "conservatore", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "considerando": { "form": "considerando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "consigliabile": { "form": "consigliabile", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.42", "intensity": "1.33", "label": "" }, "consistente": { "form": "consistente", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "consono": { "form": "consono", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "consumato": { "form": "consumato", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "contemporanea": { "form": "contemporanea", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "contemporaneamente": { "form": "contemporaneamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "contemporanei": { "form": "contemporanei", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.07", "intensity": "1.00", "label": "" }, "contemporaneo": { "form": "contemporaneo", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.10", "intensity": "1.00", "label": "" }, "contenta": { "form": "contenta", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "contenti": { "form": "contenti", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "contento": { "form": "contento", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "contestuale": { "form": "contestuale", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.10", "intensity": "1.00", "label": "" }, "contingente": { "form": "contingente", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "continua": { "form": "continua", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "continuamente": { "form": "continuamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.12", "intensity": "1.00", "label": "" }, "continuando": { "form": "continuando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "continue": { "form": "continue", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "continui": { "form": "continui", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "continuo": { "form": "continuo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "contraddizione": { "form": "contraddizione", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.67", "intensity": "2.00", "label": "" }, "contrario": { "form": "contrario", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "contrastanti": { "form": "contrastanti", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "contrattofuture": { "form": "contrattofuture", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "conveniente": { "form": "conveniente", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.00", "label": "" }, "convenzionale": { "form": "convenzionale", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "convenzionali": { "form": "convenzionali", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "convincente": { "form": "convincente", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "coraggiosa": { "form": "coraggiosa", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "coraggioso": { "form": "coraggioso", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.67", "intensity": "1.33", "label": "" }, "cordiale": { "form": "cordiale", "pos": "JJ", "polarity": "0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "corposo": { "form": "corposo", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "corrente": { "form": "corrente", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "correttamente": { "form": "correttamente", "pos": "RB", "polarity": "0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "corretti": { "form": "corretti", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "corretto": { "form": "corretto", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "corrispondente": { "form": "corrispondente", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "corrugato": { "form": "corrugato", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "corto": { "form": "corto", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "corvino": { "form": "corvino", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "cosciente": { "form": "cosciente", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "cosiddetti": { "form": "cosiddetti", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "costante": { "form": "costante", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "costantemente": { "form": "costantemente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "costoso": { "form": "costoso", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "così": { "form": "così", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "creando": { "form": "creando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "creativa": { "form": "creativa", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "creativo": { "form": "creativo", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.33", "label": "" }, "credibile": { "form": "credibile", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "credibili": { "form": "credibili", "pos": "JJ", "polarity": "0.23", "subjectivity": "0.25", "intensity": "1.33", "label": "" }, "crescendo": { "form": "crescendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "crescente": { "form": "crescente", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "cretino": { "form": "cretino", "pos": "NN", "polarity": "-0.75", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "criminale": { "form": "criminale", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "criminali": { "form": "criminali", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "criminoso": { "form": "criminoso", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "cristallino": { "form": "cristallino", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "critico": { "form": "critico", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "cronologico": { "form": "cronologico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "cruda": { "form": "cruda", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "crudele": { "form": "crudele", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "crudeli": { "form": "crudeli", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "crudo": { "form": "crudo", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "culturale": { "form": "culturale", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.03", "intensity": "1.00", "label": "" }, "culturali": { "form": "culturali", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "cupa": { "form": "cupa", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "cupo": { "form": "cupo", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "curiosa": { "form": "curiosa", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "curioso": { "form": "curioso", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "curve": { "form": "curve", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "danese": { "form": "danese", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "dannato": { "form": "dannato", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "dante": { "form": "dante", "pos": "RB", "polarity": "0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "dapprima": { "form": "dapprima", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "dario": { "form": "dario", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "dark": { "form": "dark", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.10", "intensity": "1.00", "label": "" }, "davanti": { "form": "davanti", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "davvero": { "form": "davvero", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "debole": { "form": "debole", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "deboli": { "form": "deboli", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "decedere": { "form": "decedere", "pos": "VB", "polarity": "-0.33", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "decente": { "form": "decente", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "decisamente": { "form": "decisamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "deciso": { "form": "deciso", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "decoroso": { "form": "decoroso", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "deficiente": { "form": "deficiente", "pos": "NN", "polarity": "-0.75", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "definitiva": { "form": "definitiva", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "definitivamente": { "form": "definitivamente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "definitivo": { "form": "definitivo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "definito": { "form": "definito", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "defunto": { "form": "defunto", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "degna": { "form": "degna", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.67", "label": "" }, "degni": { "form": "degni", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "degno": { "form": "degno", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "deidratato": { "form": "deidratato", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "delicata": { "form": "delicata", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "delicato": { "form": "delicato", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "delinquente": { "form": "delinquente", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "delinquenziale": { "form": "delinquenziale", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "delittuoso": { "form": "delittuoso", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.83", "intensity": "2.00", "label": "" }, "deliziosi": { "form": "deliziosi", "pos": "JJ", "polarity": "0.75", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "delizioso": { "form": "delizioso", "pos": "JJ", "polarity": "0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "deltutto": { "form": "deltutto", "pos": "RB", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "deludente": { "form": "deludente", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "delusa": { "form": "delusa", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.67", "intensity": "1.67", "label": "" }, "deluse": { "form": "deluse", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "delusi": { "form": "delusi", "pos": "JJ", "polarity": "-0.67", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "delusione": { "form": "delusione", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.33", "label": "" }, "deluso": { "form": "deluso", "pos": "JJ", "polarity": "-0.67", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "denaro": { "form": "denaro", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "denso": { "form": "denso", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "denuncia": { "form": "denuncia", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "deprimente": { "form": "deprimente", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "deprimere": { "form": "deprimere", "pos": "VB", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "descrittiva": { "form": "descrittiva", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "descrittivo": { "form": "descrittivo", "pos": "JJ", "polarity": "0.01", "subjectivity": "0.04", "intensity": "1.00", "label": "" }, "descrivendo": { "form": "descrivendo", "pos": "VBG", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "detective": { "form": "detective", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "determinato": { "form": "determinato", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "detestare": { "form": "detestare", "pos": "VB", "polarity": "-0.50", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "dettagliata": { "form": "dettagliata", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "dettagliate": { "form": "dettagliate", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.28", "intensity": "1.00", "label": "" }, "devastante": { "form": "devastante", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "diamante": { "form": "diamante", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "dica": { "form": "dica", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "dicassetta": { "form": "dicassetta", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "didattico": { "form": "didattico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "dietro": { "form": "dietro", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "difettoso": { "form": "difettoso", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "differente": { "form": "differente", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "differenti": { "form": "differenti", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.30", "intensity": "1.00", "label": "" }, "difficile": { "form": "difficile", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "difficili": { "form": "difficili", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "difficilmente": { "form": "difficilmente", "pos": "RB", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "difficoltosa": { "form": "difficoltosa", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "difficoltà": { "form": "difficoltà", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.33", "intensity": "1.67", "label": "" }, "diffidente": { "form": "diffidente", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "diffuso": { "form": "diffuso", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "difronte": { "form": "difronte", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "digitale": { "form": "digitale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "dignitoso": { "form": "dignitoso", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "2.00", "label": "" }, "dilettare": { "form": "dilettare", "pos": "VB", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "diletto": { "form": "diletto", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "dimenticare": { "form": "dimenticare", "pos": "VB", "polarity": "-0.18", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "dinamiche": { "form": "dinamiche", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "dinuovo": { "form": "dinuovo", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "dipana": { "form": "dipana", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.12", "intensity": "1.00", "label": "" }, "dipartirsi": { "form": "dipartirsi", "pos": "VB", "polarity": "-0.33", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "direttamente": { "form": "direttamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.17", "intensity": "1.33", "label": "" }, "dirimpetto": { "form": "dirimpetto", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "dirompente": { "form": "dirompente", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "disapprovare": { "form": "disapprovare", "pos": "VB", "polarity": "-0.50", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "disarmante": { "form": "disarmante", "pos": "RB", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "disastro": { "form": "disastro", "pos": "NN", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "disciplinato": { "form": "disciplinato", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "discreta": { "form": "discreta", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "discretamente": { "form": "discretamente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "discreto": { "form": "discreto", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "disdetta": { "form": "disdetta", "pos": "NN", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "disgrazia": { "form": "disgrazia", "pos": "NN", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "disguido": { "form": "disguido", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "disidratato": { "form": "disidratato", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "disobbediente": { "form": "disobbediente", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "disonesto": { "form": "disonesto", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "disordinato": { "form": "disordinato", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "disordine": { "form": "disordine", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "dispendioso": { "form": "dispendioso", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "disperata": { "form": "disperata", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "disperatamente": { "form": "disperatamente", "pos": "RB", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "disperato": { "form": "disperato", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "disponibile": { "form": "disponibile", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "disponibili": { "form": "disponibili", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "dissacrante": { "form": "dissacrante", "pos": "RB", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "distante": { "form": "distante", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "disturbare": { "form": "disturbare", "pos": "VB", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "disturbo": { "form": "disturbo", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "disubbidiente": { "form": "disubbidiente", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "disuguale": { "form": "disuguale", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "dittatoriale": { "form": "dittatoriale", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "diuturno": { "form": "diuturno", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "diventando": { "form": "diventando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "diversa": { "form": "diversa", "pos": "JJ", "polarity": "-0.12", "subjectivity": "0.17", "intensity": "1.33", "label": "" }, "diversamente": { "form": "diversamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "diverse": { "form": "diverse", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "diversi": { "form": "diversi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "diverso": { "form": "diverso", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "divertente": { "form": "divertente", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "divertenti": { "form": "divertenti", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.38", "intensity": "1.50", "label": "" }, "divertimento": { "form": "divertimento", "pos": "NN", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.67", "label": "" }, "divina": { "form": "divina", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "divulgativo": { "form": "divulgativo", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "docente": { "form": "docente", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "docile": { "form": "docile", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "dolce": { "form": "dolce", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "dolcemente": { "form": "dolcemente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "dolci": { "form": "dolci", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "dolcissima": { "form": "dolcissima", "pos": "JJ", "polarity": "0.67", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "dolcissimo": { "form": "dolcissimo", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.67", "intensity": "1.33", "label": "" }, "dolore": { "form": "dolore", "pos": "NN", "polarity": "-0.67", "subjectivity": "0.50", "intensity": "1.33", "label": "" }, "dolorefisico": { "form": "dolorefisico", "pos": "NN", "polarity": "0.17", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "dolorosa": { "form": "dolorosa", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "dolorose": { "form": "dolorose", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "doloroso": { "form": "doloroso", "pos": "JJ", "polarity": "-0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "domando": { "form": "domando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "domani": { "form": "domani", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "dominante": { "form": "dominante", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "dopotutto": { "form": "dopotutto", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "doppia": { "form": "doppia", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "doppio": { "form": "doppio", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "dotto": { "form": "dotto", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "drammatica": { "form": "drammatica", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "drammatici": { "form": "drammatici", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "drammatico": { "form": "drammatico", "pos": "JJ", "polarity": "-0.53", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "drasticamente": { "form": "drasticamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "dunque": { "form": "dunque", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "duplice": { "form": "duplice", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "dura": { "form": "dura", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "duraturo": { "form": "duraturo", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "durevole": { "form": "durevole", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "duri": { "form": "duri", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "duro": { "form": "duro", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ebbene": { "form": "ebbene", "pos": "UH", "polarity": "0.00", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "eccellente": { "form": "eccellente", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "eccellenti": { "form": "eccellenti", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "eccentrico": { "form": "eccentrico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "eccessiva": { "form": "eccessiva", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "eccessivamente": { "form": "eccessivamente", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "eccessivi": { "form": "eccessivi", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "eccessivo": { "form": "eccessivo", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "eccetera": { "form": "eccetera", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "eccezionale": { "form": "eccezionale", "pos": "JJ", "polarity": "0.83", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "eccezionali": { "form": "eccezionali", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "eccitante": { "form": "eccitante", "pos": "JJ", "polarity": "0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "ecco": { "form": "ecco", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "eclatante": { "form": "eclatante", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "2.00", "label": "" }, "eclatantemente": { "form": "eclatantemente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "ecologista": { "form": "ecologista", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ecologistico": { "form": "ecologistico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "economica": { "form": "economica", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "economiche": { "form": "economiche", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "economici": { "form": "economici", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "economico": { "form": "economico", "pos": "JJ", "polarity": "0.40", "subjectivity": "0.40", "intensity": "1.00", "label": "" }, "edito": { "form": "edito", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "editoriale": { "form": "editoriale", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "editrice": { "form": "editrice", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "edmondo": { "form": "edmondo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "educativo": { "form": "educativo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "educato": { "form": "educato", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "efferato": { "form": "efferato", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "effettivamente": { "form": "effettivamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "effettivo": { "form": "effettivo", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "efficace": { "form": "efficace", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.08", "intensity": "1.00", "label": "" }, "efficaci": { "form": "efficaci", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "efficiente": { "form": "efficiente", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.60", "intensity": "1.00", "label": "" }, "egoista": { "form": "egoista", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "egoisti": { "form": "egoisti", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "egregiamente": { "form": "egregiamente", "pos": "RB", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "egregio": { "form": "egregio", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "elegante": { "form": "elegante", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "elementare": { "form": "elementare", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.62", "intensity": "2.00", "label": "" }, "elementari": { "form": "elementari", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "elena": { "form": "elena", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "elettronica": { "form": "elettronica", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "elettronico": { "form": "elettronico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "elevato": { "form": "elevato", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "eminente": { "form": "eminente", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "emotiva": { "form": "emotiva", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "emotivamente": { "form": "emotivamente", "pos": "RB", "polarity": "0.07", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "emotivo": { "form": "emotivo", "pos": "JJ", "polarity": "0.25", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "emozionale": { "form": "emozionale", "pos": "JJ", "polarity": "0.25", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "emozionante": { "form": "emozionante", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "emozionanti": { "form": "emozionanti", "pos": "JJ", "polarity": "0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "empio": { "form": "empio", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "ennesima": { "form": "ennesima", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ennesimo": { "form": "ennesimo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "enorme": { "form": "enorme", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "enrico": { "form": "enrico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "entusiasmante": { "form": "entusiasmante", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.67", "intensity": "1.33", "label": "" }, "entusiasta": { "form": "entusiasta", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "epica": { "form": "epica", "pos": "JJ", "polarity": "0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "epico": { "form": "epico", "pos": "JJ", "polarity": "0.67", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "epistolare": { "form": "epistolare", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "epopea": { "form": "epopea", "pos": "JJ", "polarity": "0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "equivoci": { "form": "equivoci", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "equivoco": { "form": "equivoco", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "erica": { "form": "erica", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ermetico": { "form": "ermetico", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "eroico": { "form": "eroico", "pos": "JJ", "polarity": "0.75", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "erotica": { "form": "erotica", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "erotiche": { "form": "erotiche", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "erotici": { "form": "erotici", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "erotico": { "form": "erotico", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.33", "intensity": "1.67", "label": "" }, "errato": { "form": "errato", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "erronee": { "form": "erronee", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "esageratamente": { "form": "esageratamente", "pos": "RB", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "esagerato": { "form": "esagerato", "pos": "JJ", "polarity": "-0.75", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "esaltante": { "form": "esaltante", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "esangue": { "form": "esangue", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "esattamente": { "form": "esattamente", "pos": "RB", "polarity": "0.17", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "esatto": { "form": "esatto", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "esauriente": { "form": "esauriente", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "esaustiva": { "form": "esaustiva", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "esaustivo": { "form": "esaustivo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "esclusivamente": { "form": "esclusivamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "esecrare": { "form": "esecrare", "pos": "VB", "polarity": "-0.50", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "esemplare": { "form": "esemplare", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "esiguo": { "form": "esiguo", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "esilarante": { "form": "esilarante", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "esilaranti": { "form": "esilaranti", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "esile": { "form": "esile", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "esistente": { "form": "esistente", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "esistenziale": { "form": "esistenziale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "esorbitante": { "form": "esorbitante", "pos": "JJ", "polarity": "-0.75", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "esordienti": { "form": "esordienti", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "espansivo": { "form": "espansivo", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "esperta": { "form": "esperta", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "esperto": { "form": "esperto", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "esplicito": { "form": "esplicito", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.30", "intensity": "1.00", "label": "" }, "espressivo": { "form": "espressivo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "essendo": { "form": "essendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "essenziale": { "form": "essenziale", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "essenziali": { "form": "essenziali", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "essenzialmente": { "form": "essenzialmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "essereumano": { "form": "essereumano", "pos": "NN", "polarity": "0.10", "subjectivity": "0.08", "intensity": "1.00", "label": "" }, "estensivamente": { "form": "estensivamente", "pos": "RB", "polarity": "0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "estensivo": { "form": "estensivo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.28", "intensity": "2.00", "label": "" }, "esterna": { "form": "esterna", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "esterne": { "form": "esterne", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "esteso": { "form": "esteso", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.28", "intensity": "1.00", "label": "" }, "estiva": { "form": "estiva", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.50", "label": "" }, "estive": { "form": "estive", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "estivo": { "form": "estivo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "estrema": { "form": "estrema", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "estremamente": { "form": "estremamente", "pos": "RB", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.50", "label": "" }, "estreme": { "form": "estreme", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "estremo": { "form": "estremo", "pos": "JJ", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "esuberante": { "form": "esuberante", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "esultante": { "form": "esultante", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "eterna": { "form": "eterna", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "eternamente": { "form": "eternamente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "eterno": { "form": "eterno", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "eventuali": { "form": "eventuali", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "evidente": { "form": "evidente", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "evidentemente": { "form": "evidentemente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.75", "intensity": "2.00", "label": "" }, "evidenti": { "form": "evidenti", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "evocativa": { "form": "evocativa", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "evviva": { "form": "evviva", "pos": "UH", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "extraterrestre": { "form": "extraterrestre", "pos": "JJ", "polarity": "-0.25", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "facendo": { "form": "facendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "facile": { "form": "facile", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.62", "intensity": "1.00", "label": "" }, "facili": { "form": "facili", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.50", "intensity": "1.33", "label": "" }, "facilmente": { "form": "facilmente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "fallire": { "form": "fallire", "pos": "VB", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "falsi": { "form": "falsi", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "famigerata": { "form": "famigerata", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "famigliareale": { "form": "famigliareale", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "familiare": { "form": "familiare", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "familiari": { "form": "familiari", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "famosa": { "form": "famosa", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "famose": { "form": "famose", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "famosi": { "form": "famosi", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "famoso": { "form": "famoso", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "fan": { "form": "fan", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.67", "intensity": "2.00", "label": "" }, "fantascientifica": { "form": "fantascientifica", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "fantascientifico": { "form": "fantascientifico", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "fantasiosa": { "form": "fantasiosa", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "fantasioso": { "form": "fantasioso", "pos": "JJ", "polarity": "0.33", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "fantastica": { "form": "fantastica", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "fantasticamente": { "form": "fantasticamente", "pos": "RB", "polarity": "0.17", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "fantastiche": { "form": "fantastiche", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "fantastici": { "form": "fantastici", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "fantastico": { "form": "fantastico", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "farsa": { "form": "farsa", "pos": "NN", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "fascinoso": { "form": "fascinoso", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "fastidio": { "form": "fastidio", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.33", "label": "" }, "fastidiosa": { "form": "fastidiosa", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "fastidiosi": { "form": "fastidiosi", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "fastidioso": { "form": "fastidioso", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "fatale": { "form": "fatale", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "faticoso": { "form": "faticoso", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "fattoa": { "form": "fattoa", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "favolosa": { "form": "favolosa", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "favoloso": { "form": "favoloso", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "feccia": { "form": "feccia", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "fedele": { "form": "fedele", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "fedenuziale": { "form": "fedenuziale", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "federico": { "form": "federico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "felice": { "form": "felice", "pos": "JJ", "polarity": "0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "felici": { "form": "felici", "pos": "JJ", "polarity": "0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "felicità": { "form": "felicità", "pos": "NN", "polarity": "0.83", "subjectivity": "0.33", "intensity": "1.67", "label": "" }, "femminile": { "form": "femminile", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "femminili": { "form": "femminili", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "fenomenale": { "form": "fenomenale", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "fermo": { "form": "fermo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "feroce": { "form": "feroce", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "ferrante": { "form": "ferrante", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ferreo": { "form": "ferreo", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "fetente": { "form": "fetente", "pos": "NN", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "fiacco": { "form": "fiacco", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "fiasco": { "form": "fiasco", "pos": "NN", "polarity": "-0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "fievole": { "form": "fievole", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "filosofale": { "form": "filosofale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "filosofica": { "form": "filosofica", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "filosofico": { "form": "filosofico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "finale": { "form": "finale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "finali": { "form": "finali", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "finalissima": { "form": "finalissima", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "finalmente": { "form": "finalmente", "pos": "RB", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "finanziari": { "form": "finanziari", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "finanziario": { "form": "finanziario", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "fine": { "form": "fine", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "finimondo": { "form": "finimondo", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "finora": { "form": "finora", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "finta": { "form": "finta", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "finzione": { "form": "finzione", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "fiorentina": { "form": "fiorentina", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "fisica": { "form": "fisica", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "fisicamente": { "form": "fisicamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "fisiche": { "form": "fisiche", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "fisico": { "form": "fisico", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.03", "intensity": "1.00", "label": "" }, "fisso": { "form": "fisso", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "fitta": { "form": "fitta", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "fittizio": { "form": "fittizio", "pos": "JJ", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "fitto": { "form": "fitto", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "flora": { "form": "flora", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "fluida": { "form": "fluida", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "folle": { "form": "folle", "pos": "JJ", "polarity": "-0.42", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "folli": { "form": "folli", "pos": "JJ", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "folto": { "form": "folto", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "fondamentale": { "form": "fondamentale", "pos": "JJ", "polarity": "0.42", "subjectivity": "0.67", "intensity": "1.33", "label": "" }, "fondamentali": { "form": "fondamentali", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "fondamentalmente": { "form": "fondamentalmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "fondo": { "form": "fondo", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "fondocommerciale": { "form": "fondocommerciale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "fonte": { "form": "fonte", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "forse": { "form": "forse", "pos": "RB", "polarity": "0.00", "subjectivity": "0.33", "intensity": "1.67", "label": "" }, "forsennato": { "form": "forsennato", "pos": "JJ", "polarity": "-0.42", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "forte": { "form": "forte", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "fortemente": { "form": "fortemente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "fortezza": { "form": "fortezza", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "forti": { "form": "forti", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "fortificazione": { "form": "fortificazione", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "fortuito": { "form": "fortuito", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "fortuna": { "form": "fortuna", "pos": "NN", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "fortunale": { "form": "fortunale", "pos": "NN", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "fortunata": { "form": "fortunata", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "fortunatamente": { "form": "fortunatamente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.33", "intensity": "1.67", "label": "" }, "fortunati": { "form": "fortunati", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "fortunato": { "form": "fortunato", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "forzata": { "form": "forzata", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "forzato": { "form": "forzato", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "fotografica": { "form": "fotografica", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "fotografico": { "form": "fotografico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "fragile": { "form": "fragile", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "fragili": { "form": "fragili", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "fraintendimento": { "form": "fraintendimento", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "frana": { "form": "frana", "pos": "NN", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "2.00", "label": "" }, "francamente": { "form": "francamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.33", "intensity": "2.00", "label": "" }, "francesca": { "form": "francesca", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "francesco": { "form": "francesco", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "francese": { "form": "francese", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "francesi": { "form": "francesi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "frapoco": { "form": "frapoco", "pos": "RB", "polarity": "0.25", "subjectivity": "0.12", "intensity": "1.00", "label": "" }, "fredda": { "form": "fredda", "pos": "JJ", "polarity": "-0.38", "subjectivity": "0.62", "intensity": "1.00", "label": "" }, "freddo": { "form": "freddo", "pos": "JJ", "polarity": "-0.12", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "frediani": { "form": "frediani", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "frenetica": { "form": "frenetica", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "frequente": { "form": "frequente", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "frequenti": { "form": "frequenti", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "fresca": { "form": "fresca", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "freschi": { "form": "freschi", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "fresco": { "form": "fresco", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "frescura": { "form": "frescura", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "frettolosa": { "form": "frettolosa", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "frettoloso": { "form": "frettoloso", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "frizzante": { "form": "frizzante", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.67", "label": "" }, "fruibile": { "form": "fruibile", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "fruire": { "form": "fruire", "pos": "VB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "fumoso": { "form": "fumoso", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "funzionale": { "form": "funzionale", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "funzionali": { "form": "funzionali", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "funzionante": { "form": "funzionante", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "fuoco": { "form": "fuoco", "pos": "NN", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "fuori": { "form": "fuori", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "fuorilegge": { "form": "fuorilegge", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "fuoripericolo": { "form": "fuoripericolo", "pos": "RB", "polarity": "0.17", "subjectivity": "0.17", "intensity": "1.00", "label": "" }, "fuorviante": { "form": "fuorviante", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "furbamente": { "form": "furbamente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "furbo": { "form": "furbo", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "furioso": { "form": "furioso", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "futilita": { "form": "futilita", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "future": { "form": "future", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "futures": { "form": "futures", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "futuri": { "form": "futuri", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "futuribile": { "form": "futuribile", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "futuro": { "form": "futuro", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "gagliardo": { "form": "gagliardo", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "gaia": { "form": "gaia", "pos": "JJ", "polarity": "0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "gaio": { "form": "gaio", "pos": "JJ", "polarity": "0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "galattica": { "form": "galattica", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "gattadapelare": { "form": "gattadapelare", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "gelo": { "form": "gelo", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "generale": { "form": "generale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "generalmente": { "form": "generalmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "generico": { "form": "generico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "generoso": { "form": "generoso", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.28", "intensity": "1.00", "label": "" }, "genia": { "form": "genia", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "geniale": { "form": "geniale", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "geniali": { "form": "geniali", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "gentaglia": { "form": "gentaglia", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "gentile": { "form": "gentile", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "genuinamente": { "form": "genuinamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "genuino": { "form": "genuino", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "geografica": { "form": "geografica", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "giapponese": { "form": "giapponese", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "giapponesi": { "form": "giapponesi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "gigantesco": { "form": "gigantesco", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "giganti": { "form": "giganti", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "giocando": { "form": "giocando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "gioco": { "form": "gioco", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "giocondo": { "form": "giocondo", "pos": "JJ", "polarity": "0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "giornalistico": { "form": "giornalistico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "giovane": { "form": "giovane", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.33", "label": "" }, "giovanile": { "form": "giovanile", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "giovanissima": { "form": "giovanissima", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "giovanissimo": { "form": "giovanissimo", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "giovincello": { "form": "giovincello", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "giovinetto": { "form": "giovinetto", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "giubilo": { "form": "giubilo", "pos": "NN", "polarity": "0.33", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "giungla": { "form": "giungla", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "giusta": { "form": "giusta", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "giustamente": { "form": "giustamente", "pos": "RB", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "giuste": { "form": "giuste", "pos": "JJ", "polarity": "0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "giusti": { "form": "giusti", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "giustificabile": { "form": "giustificabile", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "2.00", "label": "" }, "giusto": { "form": "giusto", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "già": { "form": "già", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "giù": { "form": "giù", "pos": "RB", "polarity": "-0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "globale": { "form": "globale", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "globalmente": { "form": "globalmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "godere": { "form": "godere", "pos": "VB", "polarity": "0.33", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "godersi": { "form": "godersi", "pos": "VB", "polarity": "0.33", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "godibile": { "form": "godibile", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.67", "label": "" }, "gracile": { "form": "gracile", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "gradevole": { "form": "gradevole", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.67", "intensity": "1.33", "label": "" }, "gradire": { "form": "gradire", "pos": "VB", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "grafica": { "form": "grafica", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "grafico": { "form": "grafico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "grammaticale": { "form": "grammaticale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "grammaticali": { "form": "grammaticali", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "grande": { "form": "grande", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "grandi": { "form": "grandi", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "grandiosa": { "form": "grandiosa", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "grandioso": { "form": "grandioso", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "grandissima": { "form": "grandissima", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "grandissimo": { "form": "grandissimo", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.50", "intensity": "1.67", "label": "" }, "gratis": { "form": "gratis", "pos": "RB", "polarity": "0.50", "subjectivity": "0.33", "intensity": "1.33", "label": "" }, "gratuita": { "form": "gratuita", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "gratuitamente": { "form": "gratuitamente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "gratuite": { "form": "gratuite", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "gratuiti": { "form": "gratuiti", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "gratuito": { "form": "gratuito", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "grave": { "form": "grave", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "gravido": { "form": "gravido", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.12", "intensity": "2.00", "label": "" }, "grazie": { "form": "grazie", "pos": "NN", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.33", "label": "" }, "grazioso": { "form": "grazioso", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "greca": { "form": "greca", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "grigi": { "form": "grigi", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "grigia": { "form": "grigia", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "grigio": { "form": "grigio", "pos": "JJ", "polarity": "-0.03", "subjectivity": "0.03", "intensity": "1.00", "label": "" }, "grossa": { "form": "grossa", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "grossi": { "form": "grossi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "grosso": { "form": "grosso", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "grossolani": { "form": "grossolani", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "grossolano": { "form": "grossolano", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "grottesco": { "form": "grottesco", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "guaio": { "form": "guaio", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "guardando": { "form": "guardando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "guasta": { "form": "guasta", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "guasto": { "form": "guasto", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "gustare": { "form": "gustare", "pos": "VB", "polarity": "0.33", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "gustose": { "form": "gustose", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "gustoso": { "form": "gustoso", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "iattura": { "form": "iattura", "pos": "NN", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "ideale": { "form": "ideale", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "identica": { "form": "identica", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "idiota": { "form": "idiota", "pos": "NN", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "idiozia": { "form": "idiozia", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "idoneo": { "form": "idoneo", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "iella": { "form": "iella", "pos": "NN", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "ieri": { "form": "ieri", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "iettatura": { "form": "iettatura", "pos": "NN", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "ignorante": { "form": "ignorante", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ilare": { "form": "ilare", "pos": "JJ", "polarity": "0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "illeggibile": { "form": "illeggibile", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "illeggibili": { "form": "illeggibili", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "illogico": { "form": "illogico", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "illuminante": { "form": "illuminante", "pos": "JJ", "polarity": "0.58", "subjectivity": "0.67", "intensity": "1.67", "label": "" }, "illusione": { "form": "illusione", "pos": "NN", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "illusorio": { "form": "illusorio", "pos": "JJ", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "illustre": { "form": "illustre", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "imbarazzato": { "form": "imbarazzato", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "imbattibile": { "form": "imbattibile", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "imbecile": { "form": "imbecile", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "imbecille": { "form": "imbecille", "pos": "NN", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "imbecillita": { "form": "imbecillita", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "imbroglio": { "form": "imbroglio", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "immaginario": { "form": "immaginario", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.75", "intensity": "2.00", "label": "" }, "immancabile": { "form": "immancabile", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.67", "intensity": "1.67", "label": "" }, "immediata": { "form": "immediata", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "immediatamente": { "form": "immediatamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "immediate": { "form": "immediate", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "immediato": { "form": "immediato", "pos": "JJ", "polarity": "0.18", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "immensamente": { "form": "immensamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "immenso": { "form": "immenso", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.67", "intensity": "1.33", "label": "" }, "immobile": { "form": "immobile", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "immodesto": { "form": "immodesto", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "immortale": { "form": "immortale", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "impacciato": { "form": "impacciato", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "imparando": { "form": "imparando", "pos": "VBG", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "impareggiabile": { "form": "impareggiabile", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "imparziale": { "form": "imparziale", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "impavido": { "form": "impavido", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "impaziente": { "form": "impaziente", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "impeccabile": { "form": "impeccabile", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "impeccabili": { "form": "impeccabili", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "impegnativa": { "form": "impegnativa", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "impegnative": { "form": "impegnative", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "impegnativo": { "form": "impegnativo", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "impellente": { "form": "impellente", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "impenetrabile": { "form": "impenetrabile", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "impercettibile": { "form": "impercettibile", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "2.00", "label": "" }, "imperdibile": { "form": "imperdibile", "pos": "JJ", "polarity": "0.83", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "impersonale": { "form": "impersonale", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "impiccio": { "form": "impiccio", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "imponente": { "form": "imponente", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "importante": { "form": "importante", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "importanti": { "form": "importanti", "pos": "JJ", "polarity": "0.25", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "importantissimo": { "form": "importantissimo", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "importuno": { "form": "importuno", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "impossibile": { "form": "impossibile", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "impossibili": { "form": "impossibili", "pos": "JJ", "polarity": "-0.25", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "imposti": { "form": "imposti", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "impostore": { "form": "impostore", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "imprescindibile": { "form": "imprescindibile", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "impressi": { "form": "impressi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "impressionabile": { "form": "impressionabile", "pos": "JJ", "polarity": "0.25", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "imprevedibile": { "form": "imprevedibile", "pos": "JJ", "polarity": "-0.03", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "improbabile": { "form": "improbabile", "pos": "JJ", "polarity": "-0.35", "subjectivity": "0.33", "intensity": "1.67", "label": "" }, "improbabili": { "form": "improbabili", "pos": "JJ", "polarity": "-0.18", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "improvvisamente": { "form": "improvvisamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "improvviso": { "form": "improvviso", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "inaccessibile": { "form": "inaccessibile", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "inaccettabile": { "form": "inaccettabile", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "inappuntabile": { "form": "inappuntabile", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "inaridito": { "form": "inaridito", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "inaspettata": { "form": "inaspettata", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "inaspettatamente": { "form": "inaspettatamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "inaspettati": { "form": "inaspettati", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "inaspettato": { "form": "inaspettato", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "inatteso": { "form": "inatteso", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "incalzante": { "form": "incalzante", "pos": "JJ", "polarity": "-0.12", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "incantato": { "form": "incantato", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "incantevole": { "form": "incantevole", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "incapace": { "form": "incapace", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.50", "intensity": "1.25", "label": "" }, "incapaci": { "form": "incapaci", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "incessante": { "form": "incessante", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "incessantemente": { "form": "incessantemente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "incidentale": { "form": "incidentale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "incinta": { "form": "incinta", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "incisivo": { "form": "incisivo", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "inclemente": { "form": "inclemente", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "incline": { "form": "incline", "pos": "JJ", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "incoffessato": { "form": "incoffessato", "pos": "JJ", "polarity": "0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "incomodare": { "form": "incomodare", "pos": "VB", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "incomodo": { "form": "incomodo", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "incomparabile": { "form": "incomparabile", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "incompentente": { "form": "incompentente", "pos": "NN", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "incompleto": { "form": "incompleto", "pos": "JJ", "polarity": "-0.42", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "incomprensibile": { "form": "incomprensibile", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "inconcludente": { "form": "inconcludente", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "incondizionato": { "form": "incondizionato", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.33", "intensity": "2.00", "label": "" }, "inconfondibile": { "form": "inconfondibile", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "inconsistente": { "form": "inconsistente", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "incontenibile": { "form": "incontenibile", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "incontenibilmente": { "form": "incontenibilmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "incontrando": { "form": "incontrando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "incontrovertibile": { "form": "incontrovertibile", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "incredibile": { "form": "incredibile", "pos": "JJ", "polarity": "-0.35", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "incredibili": { "form": "incredibili", "pos": "JJ", "polarity": "0.25", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "incredibilmente": { "form": "incredibilmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "indecente": { "form": "indecente", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "indecifrabile": { "form": "indecifrabile", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "indecoroso": { "form": "indecoroso", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "indelebile": { "form": "indelebile", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "indescrivibile": { "form": "indescrivibile", "pos": "JJ", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "indiana": { "form": "indiana", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "indietro": { "form": "indietro", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "indifferente": { "form": "indifferente", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "indifferenti": { "form": "indifferenti", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "-0.50", "label": "" }, "indimenticabile": { "form": "indimenticabile", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "indimenticabili": { "form": "indimenticabili", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "indipendente": { "form": "indipendente", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "indipendentemente": { "form": "indipendentemente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "indisciplinato": { "form": "indisciplinato", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "indiscreto": { "form": "indiscreto", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "indispensabile": { "form": "indispensabile", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "indispensabili": { "form": "indispensabili", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "indistinto": { "form": "indistinto", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "individuale": { "form": "individuale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "individuali": { "form": "individuali", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "individuo": { "form": "individuo", "pos": "NN", "polarity": "0.10", "subjectivity": "0.08", "intensity": "1.00", "label": "" }, "indocile": { "form": "indocile", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "indubbiamente": { "form": "indubbiamente", "pos": "RB", "polarity": "0.17", "subjectivity": "0.50", "intensity": "1.33", "label": "" }, "indubbio": { "form": "indubbio", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "indumentointimo": { "form": "indumentointimo", "pos": "JJ", "polarity": "0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "industriale": { "form": "industriale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ineccepibile": { "form": "ineccepibile", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "inedita": { "form": "inedita", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "inedite": { "form": "inedite", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "inediti": { "form": "inediti", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "inefficace": { "form": "inefficace", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "inefficiente": { "form": "inefficiente", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.67", "intensity": "2.00", "label": "" }, "ineguagliabile": { "form": "ineguagliabile", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "ineguale": { "form": "ineguale", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "inesistente": { "form": "inesistente", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "inesistenti": { "form": "inesistenti", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "inesplicabile": { "form": "inesplicabile", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "inetto": { "form": "inetto", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "inevitabile": { "form": "inevitabile", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "inevitabilmente": { "form": "inevitabilmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "infantile": { "form": "infantile", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "infantili": { "form": "infantili", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "infastidire": { "form": "infastidire", "pos": "VB", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "infatti": { "form": "infatti", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "infedele": { "form": "infedele", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "infelicita": { "form": "infelicita", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "inferiore": { "form": "inferiore", "pos": "JJ", "polarity": "-0.23", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "inferocito": { "form": "inferocito", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "infine": { "form": "infine", "pos": "RB", "polarity": "-0.05", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "infinita": { "form": "infinita", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.07", "intensity": "1.00", "label": "" }, "infinitamente": { "form": "infinitamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "infinite": { "form": "infinite", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "infiniti": { "form": "infiniti", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "inflessibile": { "form": "inflessibile", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "influente": { "form": "influente", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "infondato": { "form": "infondato", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "infuocato": { "form": "infuocato", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "infuriato": { "form": "infuriato", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "inganno": { "form": "inganno", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ingegnoso": { "form": "ingegnoso", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "ingenua": { "form": "ingenua", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "ingenuo": { "form": "ingenuo", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "inghippo": { "form": "inghippo", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ingiustamente": { "form": "ingiustamente", "pos": "RB", "polarity": "-0.50", "subjectivity": "3.25", "intensity": "1.00", "label": "" }, "ingiustificabile": { "form": "ingiustificabile", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "inglese": { "form": "inglese", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ingombrante": { "form": "ingombrante", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "inimmaginabile": { "form": "inimmaginabile", "pos": "JJ", "polarity": "-0.35", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "iniziale": { "form": "iniziale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "iniziali": { "form": "iniziali", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "inizialmente": { "form": "inizialmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "innanzitutto": { "form": "innanzitutto", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "innegabile": { "form": "innegabile", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "innervosire": { "form": "innervosire", "pos": "VB", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "innocente": { "form": "innocente", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "innovativa": { "form": "innovativa", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.33", "label": "" }, "innovative": { "form": "innovative", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "innovativo": { "form": "innovativo", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "innumerevoli": { "form": "innumerevoli", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "inoltre": { "form": "inoltre", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "inopportuno": { "form": "inopportuno", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "inoppugnabile": { "form": "inoppugnabile", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "inparte": { "form": "inparte", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "inquietante": { "form": "inquietante", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "inquietanti": { "form": "inquietanti", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "insegnante": { "form": "insegnante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "insensato": { "form": "insensato", "pos": "JJ", "polarity": "-0.42", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "insensibile": { "form": "insensibile", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.33", "intensity": "2.00", "label": "" }, "insespressivo": { "form": "insespressivo", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "insieme": { "form": "insieme", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "insigne": { "form": "insigne", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "insignificante": { "form": "insignificante", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "insipido": { "form": "insipido", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "insoddisfacente": { "form": "insoddisfacente", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "insoddisfatto": { "form": "insoddisfatto", "pos": "JJ", "polarity": "-0.67", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "insofferente": { "form": "insofferente", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "insolito": { "form": "insolito", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "insomma": { "form": "insomma", "pos": "RB", "polarity": "-0.17", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "insopportabile": { "form": "insopportabile", "pos": "JJ", "polarity": "-0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "insopportabili": { "form": "insopportabili", "pos": "JJ", "polarity": "-0.75", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "insostenibile": { "form": "insostenibile", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "inspiegabilmente": { "form": "inspiegabilmente", "pos": "RB", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "insubordinato": { "form": "insubordinato", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "insuccesso": { "form": "insuccesso", "pos": "NN", "polarity": "-0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "insufficiente": { "form": "insufficiente", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "insulsi": { "form": "insulsi", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "insulso": { "form": "insulso", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "insuperabile": { "form": "insuperabile", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "insussistente": { "form": "insussistente", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "intanto": { "form": "intanto", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "intatto": { "form": "intatto", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "integra": { "form": "integra", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "integrale": { "form": "integrale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "integrante": { "form": "integrante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "integrato": { "form": "integrato", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "integro": { "form": "integro", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "intellettuale": { "form": "intellettuale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "intelligente": { "form": "intelligente", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "intelligibile": { "form": "intelligibile", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "intendo": { "form": "intendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "intensa": { "form": "intensa", "pos": "JJ", "polarity": "0.22", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "intense": { "form": "intense", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "intensi": { "form": "intensi", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "intenso": { "form": "intenso", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.67", "intensity": "1.33", "label": "" }, "intera": { "form": "intera", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "interamente": { "form": "interamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "interattivo": { "form": "interattivo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "intere": { "form": "intere", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "interessante": { "form": "interessante", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.33", "label": "" }, "interessanti": { "form": "interessanti", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.83", "intensity": "1.67", "label": "" }, "interessantissimo": { "form": "interessantissimo", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "interi": { "form": "interi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "interiore": { "form": "interiore", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "interiori": { "form": "interiori", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.30", "intensity": "1.00", "label": "" }, "interisti": { "form": "interisti", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "intermedio": { "form": "intermedio", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "internazionale": { "form": "internazionale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "interne": { "form": "interne", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "interno": { "form": "interno", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "intero": { "form": "intero", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "interpersonali": { "form": "interpersonali", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "interrogativo": { "form": "interrogativo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "intima": { "form": "intima", "pos": "JJ", "polarity": "0.75", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "intimo": { "form": "intimo", "pos": "JJ", "polarity": "0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "intollerabile": { "form": "intollerabile", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "intollerante": { "form": "intollerante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "intorno": { "form": "intorno", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "intramontabile": { "form": "intramontabile", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.17", "intensity": "1.00", "label": "" }, "intramontabili": { "form": "intramontabili", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "intransigente": { "form": "intransigente", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "intrattabile": { "form": "intrattabile", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "intrepido": { "form": "intrepido", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "intricato": { "form": "intricato", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "intrigante": { "form": "intrigante", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.67", "intensity": "1.67", "label": "" }, "intrigo": { "form": "intrigo", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "introduttivo": { "form": "introduttivo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "introspettivo": { "form": "introspettivo", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "intuitivo": { "form": "intuitivo", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "inusitato": { "form": "inusitato", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "inusuale": { "form": "inusuale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "inutile": { "form": "inutile", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "inutili": { "form": "inutili", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "inutilizzabile": { "form": "inutilizzabile", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "inutilmente": { "form": "inutilmente", "pos": "RB", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "invadente": { "form": "invadente", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "invece": { "form": "invece", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "inverosimile": { "form": "inverosimile", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "inverosimili": { "form": "inverosimili", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "investigatore": { "form": "investigatore", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "inviatospeciale": { "form": "inviatospeciale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "invincibile": { "form": "invincibile", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "invisibile": { "form": "invisibile", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "invisibili": { "form": "invisibili", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.00", "label": "" }, "involontariamente": { "form": "involontariamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ipersensibile": { "form": "ipersensibile", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "ironica": { "form": "ironica", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.67", "intensity": "1.67", "label": "" }, "ironici": { "form": "ironici", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "ironico": { "form": "ironico", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "irragionevole": { "form": "irragionevole", "pos": "JJ", "polarity": "-0.42", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "irreale": { "form": "irreale", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "irrefrenabile": { "form": "irrefrenabile", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "irrefrenabilmente": { "form": "irrefrenabilmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "irreprensibile": { "form": "irreprensibile", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "irresistibile": { "form": "irresistibile", "pos": "JJ", "polarity": "0.67", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "irrilevante": { "form": "irrilevante", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "irrimediabilmente": { "form": "irrimediabilmente", "pos": "RB", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "irrinunciabile": { "form": "irrinunciabile", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "irrisolti": { "form": "irrisolti", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "irrisorio": { "form": "irrisorio", "pos": "JJ", "polarity": "-0.25", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "irritante": { "form": "irritante", "pos": "JJ", "polarity": "-0.75", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "irritare": { "form": "irritare", "pos": "VB", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "irruento": { "form": "irruento", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "islandese": { "form": "islandese", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "istantaneamente": { "form": "istantaneamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "istantaneo": { "form": "istantaneo", "pos": "JJ", "polarity": "0.18", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "istruttiva": { "form": "istruttiva", "pos": "JJ", "polarity": "0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "istruttivo": { "form": "istruttivo", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "italiana": { "form": "italiana", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.03", "intensity": "1.00", "label": "" }, "italiane": { "form": "italiane", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "italiani": { "form": "italiani", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "italiano": { "form": "italiano", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "italo": { "form": "italo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "jane": { "form": "jane", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "kafkiano": { "form": "kafkiano", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "laconico": { "form": "laconico", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "lagnanza": { "form": "lagnanza", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "lagno": { "form": "lagno", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "lambiccato": { "form": "lambiccato", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "lamentanza": { "form": "lamentanza", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "lamentare": { "form": "lamentare", "pos": "VB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "lamentazione": { "form": "lamentazione", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "lamentela": { "form": "lamentela", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "lamento": { "form": "lamento", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "lampante": { "form": "lampante", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "lampo": { "form": "lampo", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "languido": { "form": "languido", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "lapalissianamente": { "form": "lapalissianamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "lapalissiano": { "form": "lapalissiano", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "larga": { "form": "larga", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "largo": { "form": "largo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.28", "intensity": "1.00", "label": "" }, "lasciando": { "form": "lasciando", "pos": "VBG", "polarity": "-0.01", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "lasciandosi": { "form": "lasciandosi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "lasciare": { "form": "lasciare", "pos": "VB", "polarity": "-0.18", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "lavatadicapo": { "form": "lavatadicapo", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "lavorativo": { "form": "lavorativo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "lavorio": { "form": "lavorio", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "leader": { "form": "leader", "pos": "JJ", "polarity": "0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "leale": { "form": "leale", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "lealmente": { "form": "lealmente", "pos": "RB", "polarity": "0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "lecito": { "form": "lecito", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "legale": { "form": "legale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "legate": { "form": "legate", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "leggendari": { "form": "leggendari", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "leggendo": { "form": "leggendo", "pos": "VBG", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "leggera": { "form": "leggera", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.17", "intensity": "1.33", "label": "" }, "leggeri": { "form": "leggeri", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "leggermente": { "form": "leggermente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "0.25", "label": "" }, "leggero": { "form": "leggero", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.33", "intensity": "1.33", "label": "" }, "leggiadro": { "form": "leggiadro", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "leggibile": { "form": "leggibile", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "legittimo": { "form": "legittimo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "lenta": { "form": "lenta", "pos": "JJ", "polarity": "-0.55", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "lentamente": { "form": "lentamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "lente": { "form": "lente", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "lenticchia": { "form": "lenticchia", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "lento": { "form": "lento", "pos": "JJ", "polarity": "-0.12", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "lepido": { "form": "lepido", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "letale": { "form": "letale", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "2.00", "label": "" }, "letteralmente": { "form": "letteralmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "letterari": { "form": "letterari", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "letteraria": { "form": "letteraria", "pos": "JJ", "polarity": "0.02", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "letterario": { "form": "letterario", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "lettrici": { "form": "lettrici", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "lezzo": { "form": "lezzo", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "libera": { "form": "libera", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "liberale": { "form": "liberale", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "2.00", "label": "" }, "liberamente": { "form": "liberamente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "liberi": { "form": "liberi", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "libero": { "form": "libero", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "lieto": { "form": "lieto", "pos": "JJ", "polarity": "0.75", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "lieve": { "form": "lieve", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "lievemente": { "form": "lievemente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "-0.50", "label": "" }, "liliana": { "form": "liliana", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "limitata": { "form": "limitata", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "lineare": { "form": "lineare", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "lingerie": { "form": "lingerie", "pos": "JJ", "polarity": "0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "linguistica": { "form": "linguistica", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "locale": { "form": "locale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "locali": { "form": "locali", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "lodevole": { "form": "lodevole", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "logico": { "form": "logico", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "londinese": { "form": "londinese", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "lontana": { "form": "lontana", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "lontanamente": { "form": "lontanamente", "pos": "RB", "polarity": "0.00", "subjectivity": "1.00", "intensity": "-0.50", "label": "" }, "lontane": { "form": "lontane", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "lontani": { "form": "lontani", "pos": "JJ", "polarity": "-0.00", "subjectivity": "0.03", "intensity": "1.00", "label": "" }, "lontano": { "form": "lontano", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.12", "intensity": "1.00", "label": "" }, "lord": { "form": "lord", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "loro": { "form": "loro", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "love": { "form": "love", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "luccicante": { "form": "luccicante", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "lucido": { "form": "lucido", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "luminoso": { "form": "luminoso", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "lunga": { "form": "lunga", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "lunghe": { "form": "lunghe", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "lunghi": { "form": "lunghi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "lungi": { "form": "lungi", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "lussureggiante": { "form": "lussureggiante", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "luttuoso": { "form": "luttuoso", "pos": "JJ", "polarity": "-0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "là": { "form": "là", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "lì": { "form": "lì", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "machiavellico": { "form": "machiavellico", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "maestoso": { "form": "maestoso", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "magagna": { "form": "magagna", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "magari": { "form": "magari", "pos": "RB", "polarity": "0.17", "subjectivity": "0.50", "intensity": "1.33", "label": "" }, "maggiore": { "form": "maggiore", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "maggiori": { "form": "maggiori", "pos": "JJ", "polarity": "0.51", "subjectivity": "0.53", "intensity": "1.50", "label": "" }, "maggiormente": { "form": "maggiormente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "magica": { "form": "magica", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "magiche": { "form": "magiche", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "magici": { "form": "magici", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "magico": { "form": "magico", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "magistrale": { "form": "magistrale", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "magistralmente": { "form": "magistralmente", "pos": "RB", "polarity": "0.67", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "magnanimo": { "form": "magnanimo", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "magnetico": { "form": "magnetico", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "magnifica": { "form": "magnifica", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "magnificamente": { "form": "magnificamente", "pos": "RB", "polarity": "0.50", "subjectivity": "0.38", "intensity": "1.50", "label": "" }, "magnifico": { "form": "magnifico", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "magro": { "form": "magro", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "mah": { "form": "mah", "pos": "UH", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "mai": { "form": "mai", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "maiuscolo": { "form": "maiuscolo", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "malanno": { "form": "malanno", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.80", "intensity": "1.00", "label": "" }, "malasorte": { "form": "malasorte", "pos": "NN", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "malata": { "form": "malata", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "malaticcio": { "form": "malaticcio", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "malato": { "form": "malato", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "malattia": { "form": "malattia", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "malcontento": { "form": "malcontento", "pos": "JJ", "polarity": "-0.67", "subjectivity": "1.00", "intensity": "2.00", "label": "" }, "male": { "form": "male", "pos": "NN", "polarity": "-0.67", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "malessere": { "form": "malessere", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "maligno": { "form": "maligno", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "malinconico": { "form": "malinconico", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "malinteso": { "form": "malinteso", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "malissimo": { "form": "malissimo", "pos": "RB", "polarity": "-0.83", "subjectivity": "0.67", "intensity": "1.67", "label": "" }, "malvagio": { "form": "malvagio", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "malvivente": { "form": "malvivente", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "mancante": { "form": "mancante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "mancanti": { "form": "mancanti", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.07", "intensity": "1.00", "label": "" }, "mancare": { "form": "mancare", "pos": "VB", "polarity": "-0.33", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "mancata": { "form": "mancata", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "mancato": { "form": "mancato", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "manchevole": { "form": "manchevole", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "maneggio": { "form": "maneggio", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "maneggione": { "form": "maneggione", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "manesco": { "form": "manesco", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "maniaco": { "form": "maniaco", "pos": "JJ", "polarity": "-0.42", "subjectivity": "0.83", "intensity": "2.00", "label": "" }, "manifesto": { "form": "manifesto", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.30", "intensity": "1.00", "label": "" }, "mantenendo": { "form": "mantenendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "maria": { "form": "maria", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "mario": { "form": "mario", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "marmaglia": { "form": "marmaglia", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "marmocchio": { "form": "marmocchio", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "martirio": { "form": "martirio", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "martirizzare": { "form": "martirizzare", "pos": "VB", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "martoriare": { "form": "martoriare", "pos": "VB", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "marxista": { "form": "marxista", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "maschile": { "form": "maschile", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "maschili": { "form": "maschili", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "mascolino": { "form": "mascolino", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "massiccio": { "form": "massiccio", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "massima": { "form": "massima", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "massimi": { "form": "massimi", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "massimo": { "form": "massimo", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.33", "label": "" }, "materiali": { "form": "materiali", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "matto": { "form": "matto", "pos": "JJ", "polarity": "-0.42", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "matura": { "form": "matura", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "maturi": { "form": "maturi", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "maturo": { "form": "maturo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.12", "intensity": "1.00", "label": "" }, "max": { "form": "max", "pos": "RB", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "mediano": { "form": "mediano", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "medievale": { "form": "medievale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "medievali": { "form": "medievali", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "medio": { "form": "medio", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "mediocre": { "form": "mediocre", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.67", "intensity": "1.67", "label": "" }, "mediocrita": { "form": "mediocrita", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "mediterraneo": { "form": "mediterraneo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "meglio": { "form": "meglio", "pos": "RB", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "melange": { "form": "melange", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "melensa": { "form": "melensa", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.33", "label": "" }, "melodramma": { "form": "melodramma", "pos": "NN", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "memorabile": { "form": "memorabile", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "memorabili": { "form": "memorabili", "pos": "JJ", "polarity": "0.75", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "mena": { "form": "mena", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "mendico": { "form": "mendico", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "meno": { "form": "meno", "pos": "RB", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "0.75", "label": "" }, "mentale": { "form": "mentale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "mentali": { "form": "mentali", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "mentalmente": { "form": "mentalmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "mentecatto": { "form": "mentecatto", "pos": "JJ", "polarity": "-0.42", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "meramente": { "form": "meramente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "meravigliato": { "form": "meravigliato", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "meravigliosa": { "form": "meravigliosa", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "meravigliosamente": { "form": "meravigliosamente", "pos": "RB", "polarity": "0.17", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "meravigliose": { "form": "meravigliose", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "meravigliosi": { "form": "meravigliosi", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "meraviglioso": { "form": "meraviglioso", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "merce": { "form": "merce", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "merda": { "form": "merda", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "meritatissime": { "form": "meritatissime", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "meritevole": { "form": "meritevole", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "meritorio": { "form": "meritorio", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "merlo": { "form": "merlo", "pos": "NN", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "mero": { "form": "mero", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "mescolanza": { "form": "mescolanza", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "messinscena": { "form": "messinscena", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "mettendo": { "form": "mettendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "mettereincroce": { "form": "mettereincroce", "pos": "VB", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "mezza": { "form": "mezza", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "mezzosangue": { "form": "mezzosangue", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.17", "intensity": "1.33", "label": "" }, "mica": { "form": "mica", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "migliore": { "form": "migliore", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "migliori": { "form": "migliori", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.67", "intensity": "1.33", "label": "" }, "milanese": { "form": "milanese", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "miliare": { "form": "miliare", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "militare": { "form": "militare", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "milite": { "form": "milite", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "minchione": { "form": "minchione", "pos": "NN", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "minima": { "form": "minima", "pos": "JJ", "polarity": "-0.03", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "minimamente": { "form": "minimamente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "0.75", "label": "" }, "minimi": { "form": "minimi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "minuziosamente": { "form": "minuziosamente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "mirabile": { "form": "mirabile", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "2.00", "label": "" }, "miraggio": { "form": "miraggio", "pos": "NN", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "misantropo": { "form": "misantropo", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "miscellanea": { "form": "miscellanea", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "mischia": { "form": "mischia", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "miscredente": { "form": "miscredente", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "miscuglio": { "form": "miscuglio", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "miserabili": { "form": "miserabili", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "misteriosa": { "form": "misteriosa", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "misteriosi": { "form": "misteriosi", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "misterioso": { "form": "misterioso", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "mistero": { "form": "mistero", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "mistica": { "form": "mistica", "pos": "JJ", "polarity": "0.25", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "mistificazione": { "form": "mistificazione", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "mistione": { "form": "mistione", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "misto": { "form": "misto", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "mistura": { "form": "mistura", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "mitica": { "form": "mitica", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "mitico": { "form": "mitico", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "mix": { "form": "mix", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "modello": { "form": "modello", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "moderna": { "form": "moderna", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.33", "label": "" }, "moderne": { "form": "moderne", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "moderni": { "form": "moderni", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.12", "intensity": "1.00", "label": "" }, "moderno": { "form": "moderno", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "modesta": { "form": "modesta", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "modesto": { "form": "modesto", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "modico": { "form": "modico", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "molestare": { "form": "molestare", "pos": "VB", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "molestia": { "form": "molestia", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "molesto": { "form": "molesto", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "molta": { "form": "molta", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "molte": { "form": "molte", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "molteplici": { "form": "molteplici", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "molti": { "form": "molti", "pos": "JJ", "polarity": "0.25", "subjectivity": "1.00", "intensity": "1.50", "label": "" }, "moltissime": { "form": "moltissime", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "moltissimi": { "form": "moltissimi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "moltissimo": { "form": "moltissimo", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "molto": { "form": "molto", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "mondiale": { "form": "mondiale", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "mondiali": { "form": "mondiali", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "mondoesterno": { "form": "mondoesterno", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.17", "intensity": "2.00", "label": "" }, "monolitico": { "form": "monolitico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "monotona": { "form": "monotona", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "monotono": { "form": "monotono", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "monumentale": { "form": "monumentale", "pos": "JJ", "polarity": "0.25", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "morale": { "form": "morale", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "morali": { "form": "morali", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "morbida": { "form": "morbida", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "mordace": { "form": "mordace", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "morigerato": { "form": "morigerato", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "2.00", "label": "" }, "morire": { "form": "morire", "pos": "VB", "polarity": "-0.33", "subjectivity": "0.75", "intensity": "2.00", "label": "" }, "mortale": { "form": "mortale", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "mortali": { "form": "mortali", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "morte": { "form": "morte", "pos": "NN", "polarity": "-0.67", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "morto": { "form": "morto", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "mostruosamente": { "form": "mostruosamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "mostruoso": { "form": "mostruoso", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "moto": { "form": "moto", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "mozzafiato": { "form": "mozzafiato", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "multiforme": { "form": "multiforme", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "municipale": { "form": "municipale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "municipio": { "form": "municipio", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "munifico": { "form": "munifico", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "muscoloso": { "form": "muscoloso", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "musicale": { "form": "musicale", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "must": { "form": "must", "pos": "NN", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "napoletano": { "form": "napoletano", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "narrante": { "form": "narrante", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "narrative": { "form": "narrative", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "narrativi": { "form": "narrativi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "narrativo": { "form": "narrativo", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "nascondo": { "form": "nascondo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "nascosti": { "form": "nascosti", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "nascosto": { "form": "nascosto", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "natale": { "form": "natale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "nativo": { "form": "nativo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "naturale": { "form": "naturale", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "naturali": { "form": "naturali", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "naturalmente": { "form": "naturalmente", "pos": "RB", "polarity": "0.18", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "naufragare": { "form": "naufragare", "pos": "VB", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "naufragio": { "form": "naufragio", "pos": "NN", "polarity": "-0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "nazista": { "form": "nazista", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "nazisti": { "form": "nazisti", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "neanche": { "form": "neanche", "pos": "RB", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "nebuloso": { "form": "nebuloso", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.67", "intensity": "2.00", "label": "" }, "necessari": { "form": "necessari", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "necessaria": { "form": "necessaria", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "necessariamente": { "form": "necessariamente", "pos": "RB", "polarity": "0.12", "subjectivity": "0.33", "intensity": "1.67", "label": "" }, "necessario": { "form": "necessario", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "negativa": { "form": "negativa", "pos": "JJ", "polarity": "-0.42", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "negative": { "form": "negative", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "negativi": { "form": "negativi", "pos": "JJ", "polarity": "-0.22", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "negativo": { "form": "negativo", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "negozio": { "form": "negozio", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "nemmeno": { "form": "nemmeno", "pos": "RB", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "nera": { "form": "nera", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "neri": { "form": "neri", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "nero": { "form": "nero", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "nessuna": { "form": "nessuna", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "netta": { "form": "netta", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "netto": { "form": "netto", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "neutrale": { "form": "neutrale", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "neutro": { "form": "neutro", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "nipponico": { "form": "nipponico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "nitide": { "form": "nitide", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "nn": { "form": "nn", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "nobile": { "form": "nobile", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "nobili": { "form": "nobili", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "nocivo": { "form": "nocivo", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "nodogordiano": { "form": "nodogordiano", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "noia": { "form": "noia", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.80", "intensity": "1.40", "label": "" }, "noiosa": { "form": "noiosa", "pos": "JJ", "polarity": "-0.67", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "noiose": { "form": "noiose", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "noioso": { "form": "noioso", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "noisita": { "form": "noisita", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.80", "intensity": "1.00", "label": "" }, "nordici": { "form": "nordici", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "nordico": { "form": "nordico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "normale": { "form": "normale", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "normali": { "form": "normali", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.38", "intensity": "1.00", "label": "" }, "normalmente": { "form": "normalmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "nostalgia": { "form": "nostalgia", "pos": "NN", "polarity": "1.00", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "nostalgico": { "form": "nostalgico", "pos": "JJ", "polarity": "-0.25", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "nostrana": { "form": "nostrana", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "nostrani": { "form": "nostrani", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "nostri": { "form": "nostri", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.03", "intensity": "1.00", "label": "" }, "nostro": { "form": "nostro", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.02", "intensity": "1.00", "label": "" }, "nota": { "form": "nota", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "notamusicale": { "form": "notamusicale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "notevole": { "form": "notevole", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "notevoli": { "form": "notevoli", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "notevolmente": { "form": "notevolmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "noti": { "form": "noti", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "noto": { "form": "noto", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "notorio": { "form": "notorio", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "novello": { "form": "novello", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "novero": { "form": "novero", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "novita": { "form": "novita", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "novo": { "form": "novo", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "nudo": { "form": "nudo", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "numerose": { "form": "numerose", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "numerosi": { "form": "numerosi", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "nuova": { "form": "nuova", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.33", "label": "" }, "nuovamente": { "form": "nuovamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "nuove": { "form": "nuove", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.17", "intensity": "1.33", "label": "" }, "nuovi": { "form": "nuovi", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.17", "intensity": "1.33", "label": "" }, "nuovo": { "form": "nuovo", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.33", "label": "" }, "obbediente": { "form": "obbediente", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "obbligante": { "form": "obbligante", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "obbligato": { "form": "obbligato", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "obbligatoria": { "form": "obbligatoria", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "obbligatorio": { "form": "obbligatorio", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "obbrobrioso": { "form": "obbrobrioso", "pos": "JJ", "polarity": "-0.83", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "obiettivo": { "form": "obiettivo", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "obliare": { "form": "obliare", "pos": "VB", "polarity": "-0.18", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "obliquo": { "form": "obliquo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ocaggine": { "form": "ocaggine", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "occidentale": { "form": "occidentale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "occidentali": { "form": "occidentali", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "occorrenza": { "form": "occorrenza", "pos": "NN", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "occulto": { "form": "occulto", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "oculato": { "form": "oculato", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "odiare": { "form": "odiare", "pos": "VB", "polarity": "-0.50", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "odierna": { "form": "odierna", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "odierno": { "form": "odierno", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.10", "intensity": "2.00", "label": "" }, "odio": { "form": "odio", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "odioso": { "form": "odioso", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "offendere": { "form": "offendere", "pos": "VB", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "oggettivo": { "form": "oggettivo", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "oggi": { "form": "oggi", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "oggidi": { "form": "oggidi", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "oltretutto": { "form": "oltretutto", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "omelia": { "form": "omelia", "pos": "NN", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "omologo": { "form": "omologo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "omonima": { "form": "omonima", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "onestamente": { "form": "onestamente", "pos": "RB", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "onesto": { "form": "onesto", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "onirico": { "form": "onirico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "online": { "form": "online", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "onorabile": { "form": "onorabile", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "onorato": { "form": "onorato", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "operadarte": { "form": "operadarte", "pos": "NN", "polarity": "1.00", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "opportunista": { "form": "opportunista", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.67", "intensity": "2.00", "label": "" }, "opportuno": { "form": "opportuno", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "opposto": { "form": "opposto", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "ora": { "form": "ora", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "orale": { "form": "orale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "oramai": { "form": "oramai", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "orari": { "form": "orari", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ordinario": { "form": "ordinario", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "orfana": { "form": "orfana", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "orientale": { "form": "orientale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "originale": { "form": "originale", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.33", "label": "" }, "originalissima": { "form": "originalissima", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "originaria": { "form": "originaria", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "originariamente": { "form": "originariamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "originario": { "form": "originario", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "origine": { "form": "origine", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "orizzontale": { "form": "orizzontale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ormai": { "form": "ormai", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "oro": { "form": "oro", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "orrendo": { "form": "orrendo", "pos": "JJ", "polarity": "-0.83", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "orribile": { "form": "orribile", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "orripilante": { "form": "orripilante", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "orrore": { "form": "orrore", "pos": "NN", "polarity": "-0.83", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "ortogonale": { "form": "ortogonale", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "ortografici": { "form": "ortografici", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "osceno": { "form": "osceno", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "oscura": { "form": "oscura", "pos": "JJ", "polarity": "-0.75", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "oscurantista": { "form": "oscurantista", "pos": "JJ", "polarity": "-0.25", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "oscuri": { "form": "oscuri", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "oscurita": { "form": "oscurita", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "oscuro": { "form": "oscuro", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ospitale": { "form": "ospitale", "pos": "JJ", "polarity": "0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "ossessiva": { "form": "ossessiva", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "ossessivo": { "form": "ossessivo", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.67", "intensity": "1.33", "label": "" }, "ostile": { "form": "ostile", "pos": "JJ", "polarity": "-0.75", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "ottima": { "form": "ottima", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "ottimale": { "form": "ottimale", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "ottimamente": { "form": "ottimamente", "pos": "RB", "polarity": "0.67", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "ottime": { "form": "ottime", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "ottimi": { "form": "ottimi", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "ottimo": { "form": "ottimo", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "ottocentesco": { "form": "ottocentesco", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "ottusita": { "form": "ottusita", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "ove": { "form": "ove", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ovunque": { "form": "ovunque", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ovviamente": { "form": "ovviamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "ovvio": { "form": "ovvio", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "ozioso": { "form": "ozioso", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "pacata": { "form": "pacata", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "pacchiano": { "form": "pacchiano", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "pagano": { "form": "pagano", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "paghi": { "form": "paghi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "pagliaccio": { "form": "pagliaccio", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "palese": { "form": "palese", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "palesemente": { "form": "palesemente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "pallaalpiede": { "form": "pallaalpiede", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "pandiani": { "form": "pandiani", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "pania": { "form": "pania", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "panico": { "form": "panico", "pos": "NN", "polarity": "-0.83", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "panoramica": { "form": "panoramica", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "pantagruelico": { "form": "pantagruelico", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "pantano": { "form": "pantano", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "paradigmatico": { "form": "paradigmatico", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "paradisiaco": { "form": "paradisiaco", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "paradossale": { "form": "paradossale", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "paradossali": { "form": "paradossali", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "paradossalmente": { "form": "paradossalmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "paragonabile": { "form": "paragonabile", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "parallelamente": { "form": "parallelamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "paranormale": { "form": "paranormale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "parapiglia": { "form": "parapiglia", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "parecchi": { "form": "parecchi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "parecchio": { "form": "parecchio", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "pari": { "form": "pari", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "parlando": { "form": "parlando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "partendo": { "form": "partendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "particolare": { "form": "particolare", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.03", "intensity": "1.00", "label": "" }, "particolarmente": { "form": "particolarmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "partirsidalmondo": { "form": "partirsidalmondo", "pos": "VB", "polarity": "-0.33", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "parziale": { "form": "parziale", "pos": "JJ", "polarity": "-0.42", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "parzialmente": { "form": "parzialmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "passando": { "form": "passando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "passareamigliorvita": { "form": "passareamigliorvita", "pos": "VB", "polarity": "-0.33", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "passate": { "form": "passate", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "passatempo": { "form": "passatempo", "pos": "NN", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "passato": { "form": "passato", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.12", "intensity": "1.00", "label": "" }, "passionale": { "form": "passionale", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.67", "intensity": "1.33", "label": "" }, "passionali": { "form": "passionali", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "pastetta": { "form": "pastetta", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "pasticcio": { "form": "pasticcio", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "patente": { "form": "patente", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.30", "intensity": "1.00", "label": "" }, "pateracchio": { "form": "pateracchio", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "patetico": { "form": "patetico", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "patimento": { "form": "patimento", "pos": "NN", "polarity": "-0.67", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "patito": { "form": "patito", "pos": "JJ", "polarity": "-0.42", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "patologia": { "form": "patologia", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "patrimonio": { "form": "patrimonio", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "patrizio": { "form": "patrizio", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "pauroso": { "form": "pauroso", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "2.00", "label": "" }, "paziente": { "form": "paziente", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "pazientemente": { "form": "pazientemente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "pazza": { "form": "pazza", "pos": "JJ", "polarity": "-0.25", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "pazzesco": { "form": "pazzesco", "pos": "JJ", "polarity": "-0.42", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "pazzo": { "form": "pazzo", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "peculiarita": { "form": "peculiarita", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "peculiarmente": { "form": "peculiarmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "pedante": { "form": "pedante", "pos": "RB", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "peggio": { "form": "peggio", "pos": "RB", "polarity": "-0.67", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "peggiore": { "form": "peggiore", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "pena": { "form": "pena", "pos": "NN", "polarity": "0.17", "subjectivity": "0.50", "intensity": "1.33", "label": "" }, "penetrante": { "form": "penetrante", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "penoso": { "form": "penoso", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "pensando": { "form": "pensando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "pensiero": { "form": "pensiero", "pos": "NN", "polarity": "0.17", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "peraltro": { "form": "peraltro", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "perche": { "form": "perche", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "perdendo": { "form": "perdendo", "pos": "VBG", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "perdente": { "form": "perdente", "pos": "NN", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "perdita": { "form": "perdita", "pos": "NN", "polarity": "-0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "perdutamente": { "form": "perdutamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "perdute": { "form": "perdute", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "perduto": { "form": "perduto", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "perenne": { "form": "perenne", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "perennemente": { "form": "perennemente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "perenterio": { "form": "perenterio", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "perfetta": { "form": "perfetta", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "perfettamente": { "form": "perfettamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "perfette": { "form": "perfette", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "perfetti": { "form": "perfetti", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "perfetto": { "form": "perfetto", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "perfido": { "form": "perfido", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "perfino": { "form": "perfino", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "pericolosa": { "form": "pericolosa", "pos": "JJ", "polarity": "-0.75", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "pericolosi": { "form": "pericolosi", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "pericoloso": { "form": "pericoloso", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "perla": { "form": "perla", "pos": "NN", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "perlomeno": { "form": "perlomeno", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "permanente": { "form": "permanente", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "permettendo": { "form": "permettendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "perpendicolare": { "form": "perpendicolare", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "perpetuo": { "form": "perpetuo", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "perplessa": { "form": "perplessa", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.33", "intensity": "1.67", "label": "" }, "perplessi": { "form": "perplessi", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "perplesso": { "form": "perplesso", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "persa": { "form": "persa", "pos": "JJ", "polarity": "-0.55", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "perseverante": { "form": "perseverante", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "persi": { "form": "persi", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "persino": { "form": "persino", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "perso": { "form": "perso", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "persona": { "form": "persona", "pos": "NN", "polarity": "0.10", "subjectivity": "0.08", "intensity": "1.00", "label": "" }, "personale": { "form": "personale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "personalmente": { "form": "personalmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "perspicace": { "form": "perspicace", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "perspicuamente": { "form": "perspicuamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "perspicuo": { "form": "perspicuo", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "persuasivo": { "form": "persuasivo", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "perverse": { "form": "perverse", "pos": "JJ", "polarity": "-0.75", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "perverso": { "form": "perverso", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "però": { "form": "però", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "pesante": { "form": "pesante", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "pescelesso": { "form": "pescelesso", "pos": "NN", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "peso": { "form": "peso", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "pesomassimo": { "form": "pesomassimo", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "pessima": { "form": "pessima", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "pessimi": { "form": "pessimi", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "pessimista": { "form": "pessimista", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "pessimistico": { "form": "pessimistico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "pessimo": { "form": "pessimo", "pos": "JJ", "polarity": "-0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "pestifera": { "form": "pestifera", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "pestilenza": { "form": "pestilenza", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "petulante": { "form": "petulante", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.75", "intensity": "2.00", "label": "" }, "pia": { "form": "pia", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "piacere": { "form": "piacere", "pos": "NN", "polarity": "0.33", "subjectivity": "0.33", "intensity": "2.00", "label": "" }, "piacevole": { "form": "piacevole", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "piacevolissima": { "form": "piacevolissima", "pos": "JJ", "polarity": "0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "piacevolissimo": { "form": "piacevolissimo", "pos": "JJ", "polarity": "0.67", "subjectivity": "1.00", "intensity": "1.50", "label": "" }, "piacevolmente": { "form": "piacevolmente", "pos": "RB", "polarity": "0.67", "subjectivity": "0.67", "intensity": "1.67", "label": "" }, "piangere": { "form": "piangere", "pos": "VB", "polarity": "-0.20", "subjectivity": "0.50", "intensity": "1.33", "label": "" }, "pianto": { "form": "pianto", "pos": "NN", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "piatta": { "form": "piatta", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "piatto": { "form": "piatto", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "piazzese": { "form": "piazzese", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "piccione": { "form": "piccione", "pos": "NN", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "picco": { "form": "picco", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "piccola": { "form": "piccola", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "piccole": { "form": "piccole", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "piccoli": { "form": "piccoli", "pos": "JJ", "polarity": "-0.13", "subjectivity": "0.33", "intensity": "1.33", "label": "" }, "piccolissimo": { "form": "piccolissimo", "pos": "JJ", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "piccolo": { "form": "piccolo", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "piena": { "form": "piena", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "pienamente": { "form": "pienamente", "pos": "RB", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "pieni": { "form": "pieni", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "pieno": { "form": "pieno", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "piffle": { "form": "piffle", "pos": "NN", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "pio": { "form": "pio", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "pittoresco": { "form": "pittoresco", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "piuttosto": { "form": "piuttosto", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "più": { "form": "più", "pos": "", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "plausibile": { "form": "plausibile", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "plausibili": { "form": "plausibili", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "plebaglia": { "form": "plebaglia", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "poca": { "form": "poca", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "0.75", "label": "" }, "poche": { "form": "poche", "pos": "JJ", "polarity": "-0.12", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "pochi": { "form": "pochi", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "pochissime": { "form": "pochissime", "pos": "JJ", "polarity": "-0.18", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "pochissimi": { "form": "pochissimi", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "pochissimo": { "form": "pochissimo", "pos": "JJ", "polarity": "-0.18", "subjectivity": "0.50", "intensity": "1.67", "label": "" }, "poco": { "form": "poco", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "0.75", "label": "" }, "poetica": { "form": "poetica", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "poetico": { "form": "poetico", "pos": "JJ", "polarity": "0.25", "subjectivity": "1.00", "intensity": "2.00", "label": "" }, "poi": { "form": "poi", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "politiche": { "form": "politiche", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "politici": { "form": "politici", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "polizieschi": { "form": "polizieschi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "poliziesco": { "form": "poliziesco", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "pollo": { "form": "pollo", "pos": "NN", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "ponderoso": { "form": "ponderoso", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "popolare": { "form": "popolare", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "popolari": { "form": "popolari", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "popolato": { "form": "popolato", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "populare": { "form": "populare", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "portando": { "form": "portando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "positiva": { "form": "positiva", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "positivamente": { "form": "positivamente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "positive": { "form": "positive", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "positivi": { "form": "positivi", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "positivo": { "form": "positivo", "pos": "JJ", "polarity": "0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "possedimento": { "form": "possedimento", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "possesso": { "form": "possesso", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "possibile": { "form": "possibile", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "possibili": { "form": "possibili", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.03", "intensity": "1.00", "label": "" }, "potente": { "form": "potente", "pos": "JJ", "polarity": "0.42", "subjectivity": "0.58", "intensity": "1.33", "label": "" }, "potenti": { "form": "potenti", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "potenzialmente": { "form": "potenzialmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "povera": { "form": "povera", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "poveri": { "form": "poveri", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "povero": { "form": "povero", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "praticamente": { "form": "praticamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "pratici": { "form": "pratici", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "pratico": { "form": "pratico", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "precedente": { "form": "precedente", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "precisa": { "form": "precisa", "pos": "JJ", "polarity": "0.42", "subjectivity": "0.38", "intensity": "1.00", "label": "" }, "precisamente": { "form": "precisamente", "pos": "RB", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "precise": { "form": "precise", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "precisi": { "form": "precisi", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "preciso": { "form": "preciso", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "preferiti": { "form": "preferiti", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "pregevole": { "form": "pregevole", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "prego": { "form": "prego", "pos": "UH", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "premessa": { "form": "premessa", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "premuroso": { "form": "premuroso", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "prendendo": { "form": "prendendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "prendo": { "form": "prendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "preoccupante": { "form": "preoccupante", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "preoccupato": { "form": "preoccupato", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "preoccupazione": { "form": "preoccupazione", "pos": "NN", "polarity": "0.17", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "prepotente": { "form": "prepotente", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "2.00", "label": "" }, "prepotentemente": { "form": "prepotentemente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "presente": { "form": "presente", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "2.00", "label": "" }, "presenti": { "form": "presenti", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.17", "intensity": "1.33", "label": "" }, "pressa": { "form": "pressa", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "pressante": { "form": "pressante", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "pressochè": { "form": "pressochè", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "prestigioso": { "form": "prestigioso", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "presto": { "form": "presto", "pos": "RB", "polarity": "0.25", "subjectivity": "0.12", "intensity": "1.25", "label": "" }, "presunta": { "form": "presunta", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "presuntuoso": { "form": "presuntuoso", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "pretenzioso": { "form": "pretenzioso", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "prettamente": { "form": "prettamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "prevedibile": { "form": "prevedibile", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "prevedibili": { "form": "prevedibili", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "preziose": { "form": "preziose", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "preziosi": { "form": "preziosi", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "preziosita": { "form": "preziosita", "pos": "JJ", "polarity": "0.67", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "prezioso": { "form": "prezioso", "pos": "JJ", "polarity": "0.67", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "primafase": { "form": "primafase", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "primario": { "form": "primario", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "primigenio": { "form": "primigenio", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "primissime": { "form": "primissime", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "primizia": { "form": "primizia", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "primo": { "form": "primo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "primoperiodo": { "form": "primoperiodo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "primordiale": { "form": "primordiale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "primordio": { "form": "primordio", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "principale": { "form": "principale", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "principalmente": { "form": "principalmente", "pos": "RB", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "principiante": { "form": "principiante", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "principio": { "form": "principio", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "prioritario": { "form": "prioritario", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "priva": { "form": "priva", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "privata": { "form": "privata", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.10", "intensity": "1.00", "label": "" }, "private": { "form": "private", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "privato": { "form": "privato", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "privi": { "form": "privi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "privo": { "form": "privo", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "probabile": { "form": "probabile", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "probabilmente": { "form": "probabilmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "0.25", "label": "" }, "problema": { "form": "problema", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "problematiche": { "form": "problematiche", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.17", "intensity": "1.33", "label": "" }, "probo": { "form": "probo", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "prode": { "form": "prode", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "prodigo": { "form": "prodigo", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "professionale": { "form": "professionale", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "professionali": { "form": "professionali", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "professionisti": { "form": "professionisti", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "professore": { "form": "professore", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "profonda": { "form": "profonda", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.67", "label": "" }, "profondamente": { "form": "profondamente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "profonde": { "form": "profonde", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "profondi": { "form": "profondi", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "profondo": { "form": "profondo", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "progressiva": { "form": "progressiva", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "progressivo": { "form": "progressivo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "proibita": { "form": "proibita", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "promessi": { "form": "promessi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "promettente": { "form": "promettente", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.83", "intensity": "1.67", "label": "" }, "pronta": { "form": "pronta", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "prontamente": { "form": "prontamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "pronti": { "form": "pronti", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "pronto": { "form": "pronto", "pos": "JJ", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "propizio": { "form": "propizio", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "proporzionato": { "form": "proporzionato", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "propri": { "form": "propri", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "propria": { "form": "propria", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "propriamente": { "form": "propriamente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "proprie": { "form": "proprie", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "proprietario": { "form": "proprietario", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "proprio": { "form": "proprio", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "prossima": { "form": "prossima", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "prossimamente": { "form": "prossimamente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.12", "intensity": "1.00", "label": "" }, "prossimi": { "form": "prossimi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "prossimo": { "form": "prossimo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.12", "intensity": "1.00", "label": "" }, "protettivo": { "form": "protettivo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "provate": { "form": "provate", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "provetto": { "form": "provetto", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "prudente": { "form": "prudente", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "prunaio": { "form": "prunaio", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "psicologica": { "form": "psicologica", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "psicologiche": { "form": "psicologiche", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "psicologici": { "form": "psicologici", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "psicologico": { "form": "psicologico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "psicopatico": { "form": "psicopatico", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "pubblica": { "form": "pubblica", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "pubblici": { "form": "pubblici", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "pubblicitaria": { "form": "pubblicitaria", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "pubblico": { "form": "pubblico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "pubblicoufficiale": { "form": "pubblicoufficiale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "puerile": { "form": "puerile", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "pulito": { "form": "pulito", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "pungente": { "form": "pungente", "pos": "JJ", "polarity": "-0.12", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "pungitopo": { "form": "pungitopo", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "punizione": { "form": "punizione", "pos": "NN", "polarity": "0.17", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "punta": { "form": "punta", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "puntuale": { "form": "puntuale", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "puntura": { "form": "puntura", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "pura": { "form": "pura", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.67", "intensity": "1.33", "label": "" }, "puramente": { "form": "puramente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.50", "label": "" }, "pure": { "form": "pure", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "puritana": { "form": "puritana", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "puro": { "form": "puro", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "purtroppo": { "form": "purtroppo", "pos": "RB", "polarity": "-0.50", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "puttana": { "form": "puttana", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "puzza": { "form": "puzza", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "puzzo": { "form": "puzzo", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "puzzone": { "form": "puzzone", "pos": "NN", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "qua": { "form": "qua", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "qualsiasi": { "form": "qualsiasi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "qualunque": { "form": "qualunque", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.12", "intensity": "1.00", "label": "" }, "quante": { "form": "quante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "quanto": { "form": "quanto", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "quantomeno": { "form": "quantomeno", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "quantum": { "form": "quantum", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "quarta": { "form": "quarta", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "quasi": { "form": "quasi", "pos": "RB", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "0.75", "label": "" }, "quella": { "form": "quella", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "quelle": { "form": "quelle", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "quelli": { "form": "quelli", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "querela": { "form": "querela", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "querimonia": { "form": "querimonia", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "questuante": { "form": "questuante", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "qui": { "form": "qui", "pos": "RB", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "quindi": { "form": "quindi", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "quiproquo": { "form": "quiproquo", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "quotidiana": { "form": "quotidiana", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "quotidianamente": { "form": "quotidianamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "quotidiane": { "form": "quotidiane", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "quotidiani": { "form": "quotidiani", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "rabbia": { "form": "rabbia", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "rabbioso": { "form": "rabbioso", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "raccapricciante": { "form": "raccapricciante", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "raccomandabile": { "form": "raccomandabile", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "raccomandare": { "form": "raccomandare", "pos": "VB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "raccomandato": { "form": "raccomandato", "pos": "NN", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "raccomando": { "form": "raccomando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "raccontando": { "form": "raccontando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "radicale": { "form": "radicale", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.12", "intensity": "1.00", "label": "" }, "radicalmente": { "form": "radicalmente", "pos": "RB", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "rado": { "form": "rado", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "raffinata": { "form": "raffinata", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "raffinato": { "form": "raffinato", "pos": "JJ", "polarity": "0.67", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "raffrontabile": { "form": "raffrontabile", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ragazzetto": { "form": "ragazzetto", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "ragazzino": { "form": "ragazzino", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "ragazzo": { "form": "ragazzo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "raggiro": { "form": "raggiro", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ragguardevole": { "form": "ragguardevole", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "ragionevole": { "form": "ragionevole", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "rampante": { "form": "rampante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "rancore": { "form": "rancore", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "rapida": { "form": "rapida", "pos": "JJ", "polarity": "0.20", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "rapidamente": { "form": "rapidamente", "pos": "RB", "polarity": "0.17", "subjectivity": "0.10", "intensity": "1.00", "label": "" }, "rapidi": { "form": "rapidi", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "rapido": { "form": "rapido", "pos": "JJ", "polarity": "0.18", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "rara": { "form": "rara", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "raramente": { "form": "raramente", "pos": "RB", "polarity": "0.17", "subjectivity": "0.00", "intensity": "0.25", "label": "" }, "rare": { "form": "rare", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "rarefatto": { "form": "rarefatto", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "rari": { "form": "rari", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "raro": { "form": "raro", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "raspare": { "form": "raspare", "pos": "VB", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "rassegna": { "form": "rassegna", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "razionale": { "form": "razionale", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "reale": { "form": "reale", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "reali": { "form": "reali", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "realistica": { "form": "realistica", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "realistiche": { "form": "realistiche", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "realistici": { "form": "realistici", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "realistico": { "form": "realistico", "pos": "JJ", "polarity": "0.18", "subjectivity": "0.28", "intensity": "1.00", "label": "" }, "realmente": { "form": "realmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "realta": { "form": "realta", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.17", "intensity": "1.00", "label": "" }, "reazionario": { "form": "reazionario", "pos": "JJ", "polarity": "-0.25", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "recente": { "form": "recente", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "recentemente": { "form": "recentemente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "recentissime": { "form": "recentissime", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "reciproca": { "form": "reciproca", "pos": "JJ", "polarity": "0.50", "subjectivity": "1.00", "intensity": "2.00", "label": "" }, "reclamo": { "form": "reclamo", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "recondito": { "form": "recondito", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "recriminazione": { "form": "recriminazione", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "regalando": { "form": "regalando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "regali": { "form": "regali", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "regalo": { "form": "regalo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "regolare": { "form": "regolare", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "regolarmente": { "form": "regolarmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "relativa": { "form": "relativa", "pos": "JJ", "polarity": "0.00", "subjectivity": "1.00", "intensity": "-0.50", "label": "" }, "relativamente": { "form": "relativamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "relativi": { "form": "relativi", "pos": "JJ", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "relativo": { "form": "relativo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "religiose": { "form": "religiose", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "religioso": { "form": "religioso", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "remoto": { "form": "remoto", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.12", "intensity": "1.00", "label": "" }, "rendendo": { "form": "rendendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "reo": { "form": "reo", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "repellente": { "form": "repellente", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "repentino": { "form": "repentino", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "reprensione": { "form": "reprensione", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "resistente": { "form": "resistente", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.10", "intensity": "1.00", "label": "" }, "responsabile": { "form": "responsabile", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "responsabilmente": { "form": "responsabilmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ressa": { "form": "ressa", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "restando": { "form": "restando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "rete": { "form": "rete", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "retorico": { "form": "retorico", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "retro": { "form": "retro", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "retrogrado": { "form": "retrogrado", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "rettilineo": { "form": "rettilineo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "retto": { "form": "retto", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "rezzo": { "form": "rezzo", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "riarso": { "form": "riarso", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "ribelle": { "form": "ribelle", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "ricca": { "form": "ricca", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.33", "intensity": "1.67", "label": "" }, "ricche": { "form": "ricche", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "ricchezza": { "form": "ricchezza", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "ricchi": { "form": "ricchi", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "ricchissimo": { "form": "ricchissimo", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "ricco": { "form": "ricco", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "riconoscendo": { "form": "riconoscendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ricreazione": { "form": "ricreazione", "pos": "NN", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "ridere": { "form": "ridere", "pos": "VB", "polarity": "0.25", "subjectivity": "0.33", "intensity": "1.67", "label": "" }, "ridicola": { "form": "ridicola", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "ridicolo": { "form": "ridicolo", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "ridotte": { "form": "ridotte", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "riduttivo": { "form": "riduttivo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "rifinito": { "form": "rifinito", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "rifuggire": { "form": "rifuggire", "pos": "VB", "polarity": "-0.50", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "rigida": { "form": "rigida", "pos": "JJ", "polarity": "-0.22", "subjectivity": "0.38", "intensity": "1.00", "label": "" }, "rigide": { "form": "rigide", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "rigidezza": { "form": "rigidezza", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "rigido": { "form": "rigido", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "rigoglioso": { "form": "rigoglioso", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "rigore": { "form": "rigore", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "rigorosamente": { "form": "rigorosamente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "rigoroso": { "form": "rigoroso", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "rilassante": { "form": "rilassante", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "rilegato": { "form": "rilegato", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "rilevante": { "form": "rilevante", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "rilucente": { "form": "rilucente", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "rimaneggiamento": { "form": "rimaneggiamento", "pos": "NN", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "rimanendo": { "form": "rimanendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "rimpiangere": { "form": "rimpiangere", "pos": "VB", "polarity": "-0.20", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "rimpiattato": { "form": "rimpiattato", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "rimprovero": { "form": "rimprovero", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "ringraziamento": { "form": "ringraziamento", "pos": "NN", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "rinnovato": { "form": "rinnovato", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "ripetitiva": { "form": "ripetitiva", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "ripetitive": { "form": "ripetitive", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ripetitivo": { "form": "ripetitivo", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "ripetutamente": { "form": "ripetutamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ripetuto": { "form": "ripetuto", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "riposto": { "form": "riposto", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "riprensione": { "form": "riprensione", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "riprovazione": { "form": "riprovazione", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ripugnante": { "form": "ripugnante", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "rischiando": { "form": "rischiando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "rischioso": { "form": "rischioso", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "risentimento": { "form": "risentimento", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "risolutamente": { "form": "risolutamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "risolutivo": { "form": "risolutivo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "risoluto": { "form": "risoluto", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "risolutore": { "form": "risolutore", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "rispettabile": { "form": "rispettabile", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "rispettando": { "form": "rispettando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "rispettivamente": { "form": "rispettivamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "rispettivi": { "form": "rispettivi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "rispettivo": { "form": "rispettivo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "risplendente": { "form": "risplendente", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "rispondente": { "form": "rispondente", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ristrettamente": { "form": "ristrettamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ristretto": { "form": "ristretto", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "ritardato": { "form": "ritardato", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ritroso": { "form": "ritroso", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "2.00", "label": "" }, "ritrovata": { "form": "ritrovata", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "riuscendo": { "form": "riuscendo", "pos": "VBG", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "riuscivo": { "form": "riuscivo", "pos": "JJ", "polarity": "0.10", "subjectivity": "0.10", "intensity": "1.00", "label": "" }, "rivoltante": { "form": "rivoltante", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "rivoltoso": { "form": "rivoltoso", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "rivoluzionario": { "form": "rivoluzionario", "pos": "JJ", "polarity": "0.25", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "robusto": { "form": "robusto", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.10", "intensity": "1.00", "label": "" }, "rocambolesca": { "form": "rocambolesca", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "rocca": { "form": "rocca", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "rogna": { "form": "rogna", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "romano": { "form": "romano", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "romantica": { "form": "romantica", "pos": "JJ", "polarity": "0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "romantiche": { "form": "romantiche", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "romantici": { "form": "romantici", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "romantico": { "form": "romantico", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "rosa": { "form": "rosa", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "rose": { "form": "rose", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "roseo": { "form": "roseo", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "rossa": { "form": "rossa", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "rossi": { "form": "rossi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "rosso": { "form": "rosso", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "rottura": { "form": "rottura", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.80", "intensity": "1.00", "label": "" }, "rovescio": { "form": "rovescio", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "rude": { "form": "rude", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "2.00", "label": "" }, "ruffiano": { "form": "ruffiano", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "rusco": { "form": "rusco", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "russa": { "form": "russa", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "russo": { "form": "russo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ruvido": { "form": "ruvido", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sagace": { "form": "sagace", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sagacita": { "form": "sagacita", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "saggi": { "form": "saggi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "saggio": { "form": "saggio", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sala": { "form": "sala", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "salato": { "form": "salato", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "saldo": { "form": "saldo", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.10", "intensity": "1.00", "label": "" }, "salgari": { "form": "salgari", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "saltando": { "form": "saltando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sana": { "form": "sana", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "sane": { "form": "sane", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "sano": { "form": "sano", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "santo": { "form": "santo", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sanzione": { "form": "sanzione", "pos": "NN", "polarity": "0.17", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sapendo": { "form": "sapendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sapido": { "form": "sapido", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "2.00", "label": "" }, "sapiente": { "form": "sapiente", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "sapientemente": { "form": "sapientemente", "pos": "RB", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "saporito": { "form": "saporito", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "saporoso": { "form": "saporoso", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "sarcastico": { "form": "sarcastico", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "satirico": { "form": "satirico", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "satollo": { "form": "satollo", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "saturo": { "form": "saturo", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "savio": { "form": "savio", "pos": "JJ", "polarity": "0.55", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "sazio": { "form": "sazio", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sbagliare": { "form": "sbagliare", "pos": "VB", "polarity": "-0.33", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "sbagliata": { "form": "sbagliata", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "sbagliate": { "form": "sbagliate", "pos": "JJ", "polarity": "-0.75", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "sbagliato": { "form": "sbagliato", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.67", "intensity": "1.67", "label": "" }, "sbandamento": { "form": "sbandamento", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sbando": { "form": "sbando", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sbarbatello": { "form": "sbarbatello", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "sbarbato": { "form": "sbarbato", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "sbarbina": { "form": "sbarbina", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "sbrigativo": { "form": "sbrigativo", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "scabro": { "form": "scabro", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "scabroso": { "form": "scabroso", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "scacco": { "form": "scacco", "pos": "NN", "polarity": "-0.17", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "scadente": { "form": "scadente", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.67", "intensity": "1.67", "label": "" }, "scalogna": { "form": "scalogna", "pos": "NN", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "scaltrezza": { "form": "scaltrezza", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "scaltro": { "form": "scaltro", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "scandinavi": { "form": "scandinavi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "scarno": { "form": "scarno", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "scarsa": { "form": "scarsa", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "scarsi": { "form": "scarsi", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "scarso": { "form": "scarso", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "scatenatamente": { "form": "scatenatamente", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "scatenato": { "form": "scatenato", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "scellerato": { "form": "scellerato", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "scemenza": { "form": "scemenza", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "scemo": { "form": "scemo", "pos": "NN", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "scempiaggine": { "form": "scempiaggine", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "scena": { "form": "scena", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "scettica": { "form": "scettica", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.67", "intensity": "1.67", "label": "" }, "scettico": { "form": "scettico", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "schemadigioco": { "form": "schemadigioco", "pos": "NN", "polarity": "0.22", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "scherzo": { "form": "scherzo", "pos": "NN", "polarity": "0.22", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "schiantare": { "form": "schiantare", "pos": "VB", "polarity": "-0.33", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "schiavo": { "form": "schiavo", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "schietto": { "form": "schietto", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "schifoso": { "form": "schifoso", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "schivo": { "form": "schivo", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "sciagura": { "form": "sciagura", "pos": "NN", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "scialbo": { "form": "scialbo", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sciapito": { "form": "sciapito", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "sciapo": { "form": "sciapo", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "scientifica": { "form": "scientifica", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "scientifiche": { "form": "scientifiche", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "scientifico": { "form": "scientifico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "scintillante": { "form": "scintillante", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "sciocchezza": { "form": "sciocchezza", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "sciocchezze": { "form": "sciocchezze", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sciocco": { "form": "sciocco", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.67", "intensity": "2.00", "label": "" }, "sciolto": { "form": "sciolto", "pos": "JJ", "polarity": "-0.12", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "scipito": { "form": "scipito", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "scolastica": { "form": "scolastica", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "scolastici": { "form": "scolastici", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "scolastico": { "form": "scolastico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "scollato": { "form": "scollato", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "scomodare": { "form": "scomodare", "pos": "VB", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "scomparso": { "form": "scomparso", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "scompiglio": { "form": "scompiglio", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sconcertante": { "form": "sconcertante", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "sconcio": { "form": "sconcio", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "sconfitta": { "form": "sconfitta", "pos": "NN", "polarity": "-0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sconfortare": { "form": "sconfortare", "pos": "VB", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sconosciuti": { "form": "sconosciuti", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.30", "intensity": "1.00", "label": "" }, "sconosciuto": { "form": "sconosciuto", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "sconquasso": { "form": "sconquasso", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "scontata": { "form": "scontata", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "scontate": { "form": "scontate", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "scontati": { "form": "scontati", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "scontato": { "form": "scontato", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.17", "intensity": "1.33", "label": "" }, "scontento": { "form": "scontento", "pos": "JJ", "polarity": "-0.67", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "scontroso": { "form": "scontroso", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "sconvolgente": { "form": "sconvolgente", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "scoppiettante": { "form": "scoppiettante", "pos": "RB", "polarity": "0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "scoprendo": { "form": "scoprendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "scoraggiante": { "form": "scoraggiante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "scorbutico": { "form": "scorbutico", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "scorretto": { "form": "scorretto", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "scorrevolmente": { "form": "scorrevolmente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "scorso": { "form": "scorso", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "scortese": { "form": "scortese", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "scostante": { "form": "scostante", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "scritte": { "form": "scritte", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "scrittrici": { "form": "scrittrici", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "scrivendo": { "form": "scrivendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "scrupoloso": { "form": "scrupoloso", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "scugnizzo": { "form": "scugnizzo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "scuro": { "form": "scuro", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sdegnare": { "form": "sdegnare", "pos": "VB", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sdolcinato": { "form": "sdolcinato", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "seccante": { "form": "seccante", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "seccatura": { "form": "seccatura", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.80", "intensity": "2.00", "label": "" }, "secco": { "form": "secco", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "secondari": { "form": "secondari", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sedizioso": { "form": "sedizioso", "pos": "JJ", "polarity": "0.25", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "seducente": { "form": "seducente", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "segreti": { "form": "segreti", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "segreto": { "form": "segreto", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "seguendo": { "form": "seguendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "seguente": { "form": "seguente", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.12", "intensity": "2.00", "label": "" }, "selvaggia": { "form": "selvaggia", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "seminale": { "form": "seminale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "semplice": { "form": "semplice", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "semplicemente": { "form": "semplicemente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "semplicione": { "form": "semplicione", "pos": "NN", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "sempliciotto": { "form": "sempliciotto", "pos": "NN", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "2.00", "label": "" }, "semplicissimo": { "form": "semplicissimo", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "semplificando": { "form": "semplificando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sempre": { "form": "sempre", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "sensato": { "form": "sensato", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sensibile": { "form": "sensibile", "pos": "JJ", "polarity": "0.25", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "sensitivo": { "form": "sensitivo", "pos": "JJ", "polarity": "0.25", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "sensuale": { "form": "sensuale", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.67", "intensity": "1.33", "label": "" }, "sensuali": { "form": "sensuali", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "sentimentale": { "form": "sentimentale", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "separate": { "form": "separate", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "serenissima": { "form": "serenissima", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sereno": { "form": "sereno", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "seri": { "form": "seri", "pos": "JJ", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "seria": { "form": "seria", "pos": "JJ", "polarity": "-0.03", "subjectivity": "0.38", "intensity": "1.00", "label": "" }, "seriale": { "form": "seriale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "seriamente": { "form": "seriamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "serio": { "form": "serio", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "sermone": { "form": "sermone", "pos": "NN", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "serrato": { "form": "serrato", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "servo": { "form": "servo", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sessuale": { "form": "sessuale", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "sessuali": { "form": "sessuali", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "settoreprivato": { "form": "settoreprivato", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "settorepubblico": { "form": "settorepubblico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "severo": { "form": "severo", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sexy": { "form": "sexy", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "sfarfallone": { "form": "sfarfallone", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sfasamento": { "form": "sfasamento", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sfasatura": { "form": "sfasatura", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sfavorevole": { "form": "sfavorevole", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "sfiga": { "form": "sfiga", "pos": "NN", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "sfortuna": { "form": "sfortuna", "pos": "NN", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "sfortunata": { "form": "sfortunata", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "sfrenatamente": { "form": "sfrenatamente", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "sfrenato": { "form": "sfrenato", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "sgarbato": { "form": "sgarbato", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "sgombro": { "form": "sgombro", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "sgradevole": { "form": "sgradevole", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "sgrammaticato": { "form": "sgrammaticato", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "sgraziato": { "form": "sgraziato", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sibillino": { "form": "sibillino", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "siciliano": { "form": "siciliano", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sicura": { "form": "sicura", "pos": "JJ", "polarity": "0.18", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sicuramente": { "form": "sicuramente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.75", "intensity": "2.00", "label": "" }, "sicuri": { "form": "sicuri", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "sicuro": { "form": "sicuro", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "significante": { "form": "significante", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "significativo": { "form": "significativo", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "signorile": { "form": "signorile", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "simile": { "form": "simile", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "simili": { "form": "simili", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "simpatica": { "form": "simpatica", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.67", "intensity": "1.67", "label": "" }, "simpatiche": { "form": "simpatiche", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "simpatici": { "form": "simpatici", "pos": "JJ", "polarity": "0.62", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "simpatico": { "form": "simpatico", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "simulazione": { "form": "simulazione", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "simultaneo": { "form": "simultaneo", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.10", "intensity": "1.00", "label": "" }, "sincera": { "form": "sincera", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "sinceramente": { "form": "sinceramente", "pos": "RB", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sincere": { "form": "sincere", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "sinceri": { "form": "sinceri", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "sincero": { "form": "sincero", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "sincrono": { "form": "sincrono", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.10", "intensity": "1.00", "label": "" }, "singola": { "form": "singola", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "singolare": { "form": "singolare", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "singolarmente": { "form": "singolarmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "singoli": { "form": "singoli", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "singolo": { "form": "singolo", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sinistro": { "form": "sinistro", "pos": "NN", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "sintetico": { "form": "sintetico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "sistema": { "form": "sistema", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sito": { "form": "sito", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "smarrito": { "form": "smarrito", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "smilzo": { "form": "smilzo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "smodatamente": { "form": "smodatamente", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "smodato": { "form": "smodato", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "smoderatamente": { "form": "smoderatamente", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "smoderato": { "form": "smoderato", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "snello": { "form": "snello", "pos": "JJ", "polarity": "0.53", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "snob": { "form": "snob", "pos": "JJ", "polarity": "0.67", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "soave": { "form": "soave", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "sociale": { "form": "sociale", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "socievole": { "form": "socievole", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "soddisfacente": { "form": "soddisfacente", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.67", "intensity": "1.67", "label": "" }, "soddisfatto": { "form": "soddisfatto", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "sodo": { "form": "sodo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sofferente": { "form": "sofferente", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sofferenza": { "form": "sofferenza", "pos": "NN", "polarity": "0.17", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "sofferta": { "form": "sofferta", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sofferto": { "form": "sofferto", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "sofisticato": { "form": "sofisticato", "pos": "JJ", "polarity": "0.67", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "soft": { "form": "soft", "pos": "JJ", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "soggettivo": { "form": "soggettivo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "sognante": { "form": "sognante", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "sola": { "form": "sola", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "solamente": { "form": "solamente", "pos": "RB", "polarity": "-0.12", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "solenne": { "form": "solenne", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "solerte": { "form": "solerte", "pos": "JJ", "polarity": "0.53", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "soli": { "form": "soli", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "solida": { "form": "solida", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "solido": { "form": "solido", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.10", "intensity": "2.00", "label": "" }, "solita": { "form": "solita", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.17", "intensity": "1.33", "label": "" }, "solitamente": { "form": "solitamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "solitario": { "form": "solitario", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "solite": { "form": "solite", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.55", "intensity": "1.00", "label": "" }, "soliti": { "form": "soliti", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.38", "intensity": "1.00", "label": "" }, "sollazzo": { "form": "sollazzo", "pos": "NN", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "sollecito": { "form": "sollecito", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "solo": { "form": "solo", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "soltanto": { "form": "soltanto", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "0.25", "label": "" }, "somaro": { "form": "somaro", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "somigliante": { "form": "somigliante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "somma": { "form": "somma", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sommario": { "form": "sommario", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sommita": { "form": "sommita", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "sommo": { "form": "sommo", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "2.00", "label": "" }, "sonata": { "form": "sonata", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sonora": { "form": "sonora", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sopra": { "form": "sopra", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "sopranazionale": { "form": "sopranazionale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "soprannaturale": { "form": "soprannaturale", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "soprattutto": { "form": "soprattutto", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "sopratutto": { "form": "sopratutto", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "soqquadro": { "form": "soqquadro", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sordo": { "form": "sordo", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "sorprendente": { "form": "sorprendente", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "sorprendentemente": { "form": "sorprendentemente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sorridere": { "form": "sorridere", "pos": "VB", "polarity": "0.33", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "sorte": { "form": "sorte", "pos": "NN", "polarity": "0.33", "subjectivity": "0.33", "intensity": "2.00", "label": "" }, "sospeso": { "form": "sospeso", "pos": "JJ", "polarity": "-0.12", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "sospettoso": { "form": "sospettoso", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sostanza": { "form": "sostanza", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "sostanzastupefacente": { "form": "sostanzastupefacente", "pos": "JJ", "polarity": "0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "sostanziale": { "form": "sostanziale", "pos": "JJ", "polarity": "0.42", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "sostanzialmente": { "form": "sostanzialmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.50", "label": "" }, "sostanzioso": { "form": "sostanzioso", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "sottile": { "form": "sottile", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "sottili": { "form": "sottili", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sottomesso": { "form": "sottomesso", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sottosopra": { "form": "sottosopra", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sottotono": { "form": "sottotono", "pos": "RB", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "sovietica": { "form": "sovietica", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sovranazionale": { "form": "sovranazionale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sovrano": { "form": "sovrano", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "sovversivo": { "form": "sovversivo", "pos": "JJ", "polarity": "0.25", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "spagnola": { "form": "spagnola", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "spagnolo": { "form": "spagnolo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sparata": { "form": "sparata", "pos": "NN", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "sparo": { "form": "sparo", "pos": "NN", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "spassionato": { "form": "spassionato", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "spasso": { "form": "spasso", "pos": "NN", "polarity": "0.38", "subjectivity": "0.25", "intensity": "1.25", "label": "" }, "spassoso": { "form": "spassoso", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "spavaldo": { "form": "spavaldo", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "spavento": { "form": "spavento", "pos": "NN", "polarity": "-0.83", "subjectivity": "0.75", "intensity": "2.00", "label": "" }, "spaventosa": { "form": "spaventosa", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "spaventoso": { "form": "spaventoso", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "spaziale": { "form": "spaziale", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "spazioso": { "form": "spazioso", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.28", "intensity": "1.00", "label": "" }, "specchio": { "form": "specchio", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "speciale": { "form": "speciale", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.67", "intensity": "1.33", "label": "" }, "specialmente": { "form": "specialmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "specifica": { "form": "specifica", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "specificita": { "form": "specificita", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "specifico": { "form": "specifico", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "specimen": { "form": "specimen", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "spendendo": { "form": "spendendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.03", "intensity": "1.00", "label": "" }, "spensierata": { "form": "spensierata", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.33", "label": "" }, "spensierato": { "form": "spensierato", "pos": "JJ", "polarity": "0.75", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "sperando": { "form": "sperando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "spesso": { "form": "spesso", "pos": "RB", "polarity": "0.03", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "spettacolare": { "form": "spettacolare", "pos": "JJ", "polarity": "0.83", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "spettacolari": { "form": "spettacolari", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "spiacevole": { "form": "spiacevole", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "spiazzante": { "form": "spiazzante", "pos": "RB", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "spiegate": { "form": "spiegate", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "spietata": { "form": "spietata", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "spietato": { "form": "spietato", "pos": "JJ", "polarity": "-0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "spinto": { "form": "spinto", "pos": "JJ", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "spirito": { "form": "spirito", "pos": "NN", "polarity": "0.10", "subjectivity": "0.08", "intensity": "1.00", "label": "" }, "spiritosa": { "form": "spiritosa", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "spiritoso": { "form": "spiritoso", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "2.00", "label": "" }, "spirituale": { "form": "spirituale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "splendente": { "form": "splendente", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "splendere": { "form": "splendere", "pos": "VB", "polarity": "0.25", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "splendida": { "form": "splendida", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.67", "intensity": "1.33", "label": "" }, "splendidamente": { "form": "splendidamente", "pos": "RB", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.50", "label": "" }, "splendide": { "form": "splendide", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "splendidi": { "form": "splendidi", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "splendido": { "form": "splendido", "pos": "JJ", "polarity": "0.83", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "spogliato": { "form": "spogliato", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "spoglio": { "form": "spoglio", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "spontaneo": { "form": "spontaneo", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "sportivi": { "form": "sportivi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sportivo": { "form": "sportivo", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "sprecare": { "form": "sprecare", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "spregiudicato": { "form": "spregiudicato", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sprezzante": { "form": "sprezzante", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sproposito": { "form": "sproposito", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sprovvisto": { "form": "sprovvisto", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "squallido": { "form": "squallido", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "squisito": { "form": "squisito", "pos": "JJ", "polarity": "0.67", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "sregolatamente": { "form": "sregolatamente", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "sregolatezza": { "form": "sregolatezza", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sregolato": { "form": "sregolato", "pos": "JJ", "polarity": "-0.05", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "stabile": { "form": "stabile", "pos": "JJ", "polarity": "0.22", "subjectivity": "0.10", "intensity": "1.00", "label": "" }, "stampata": { "form": "stampata", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "stampo": { "form": "stampo", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "stanca": { "form": "stanca", "pos": "JJ", "polarity": "-0.38", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "stanchi": { "form": "stanchi", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "stanco": { "form": "stanco", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "stante": { "form": "stante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "stanza": { "form": "stanza", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "statico": { "form": "statico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "statiuniti": { "form": "statiuniti", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "statiunitidamerica": { "form": "statiunitidamerica", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "statunitense": { "form": "statunitense", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "stavolta": { "form": "stavolta", "pos": "RB", "polarity": "0.00", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "stellare": { "form": "stellare", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "stellari": { "form": "stellari", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sterco": { "form": "sterco", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "stereotipati": { "form": "stereotipati", "pos": "JJ", "polarity": "-0.38", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "stessa": { "form": "stessa", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "stesse": { "form": "stesse", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "stessi": { "form": "stessi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "stesso": { "form": "stesso", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "stilettata": { "form": "stilettata", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "stiliforme": { "form": "stiliforme", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "stilistica": { "form": "stilistica", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "stilisticamente": { "form": "stilisticamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "stimato": { "form": "stimato", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "stimolante": { "form": "stimolante", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "stizza": { "form": "stizza", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "stoffa": { "form": "stoffa", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "stolido": { "form": "stolido", "pos": "NN", "polarity": "-0.75", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "stoltezza": { "form": "stoltezza", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "stolto": { "form": "stolto", "pos": "NN", "polarity": "-0.75", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "storica": { "form": "storica", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "storiche": { "form": "storiche", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "storici": { "form": "storici", "pos": "JJ", "polarity": "0.05", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "storico": { "form": "storico", "pos": "JJ", "polarity": "0.07", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "storiografico": { "form": "storiografico", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "strabiliante": { "form": "strabiliante", "pos": "RB", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "stradapanoramica": { "form": "stradapanoramica", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "strafalcione": { "form": "strafalcione", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "strambo": { "form": "strambo", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "strampalata": { "form": "strampalata", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "strampalato": { "form": "strampalato", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "strana": { "form": "strana", "pos": "JJ", "polarity": "-0.17", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "strane": { "form": "strane", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "strani": { "form": "strani", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "straniera": { "form": "straniera", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "stranieri": { "form": "stranieri", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "straniero": { "form": "straniero", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "strano": { "form": "strano", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "straordinaria": { "form": "straordinaria", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "straordinariamente": { "form": "straordinariamente", "pos": "RB", "polarity": "0.17", "subjectivity": "0.33", "intensity": "2.00", "label": "" }, "straordinarie": { "form": "straordinarie", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "straordinario": { "form": "straordinario", "pos": "JJ", "polarity": "0.83", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "strappalacrime": { "form": "strappalacrime", "pos": "JJ", "polarity": "-0.25", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "stravagante": { "form": "stravagante", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "straziante": { "form": "straziante", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "strazio": { "form": "strazio", "pos": "NN", "polarity": "-0.67", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "stremo": { "form": "stremo", "pos": "JJ", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "strepitoso": { "form": "strepitoso", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.33", "label": "" }, "stretta": { "form": "stretta", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "strettamente": { "form": "strettamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "stretto": { "form": "stretto", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "stringato": { "form": "stringato", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "stringente": { "form": "stringente", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "stronzo": { "form": "stronzo", "pos": "NN", "polarity": "-0.75", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "struggente": { "form": "struggente", "pos": "JJ", "polarity": "0.19", "subjectivity": "0.62", "intensity": "1.50", "label": "" }, "strutturata": { "form": "strutturata", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "stucchevole": { "form": "stucchevole", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "studiando": { "form": "studiando", "pos": "VBG", "polarity": "0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "studioso": { "form": "studioso", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "stufo": { "form": "stufo", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "stupefacente": { "form": "stupefacente", "pos": "JJ", "polarity": "0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "stupenda": { "form": "stupenda", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "stupendamente": { "form": "stupendamente", "pos": "RB", "polarity": "0.17", "subjectivity": "0.33", "intensity": "2.00", "label": "" }, "stupendo": { "form": "stupendo", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "stupidaggine": { "form": "stupidaggine", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "stupidaggini": { "form": "stupidaggini", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "stupide": { "form": "stupide", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "stupidita": { "form": "stupidita", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "stupido": { "form": "stupido", "pos": "NN", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "stupito": { "form": "stupito", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "stuzzicante": { "form": "stuzzicante", "pos": "RB", "polarity": "0.67", "subjectivity": "0.67", "intensity": "1.33", "label": "" }, "sua": { "form": "sua", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "subbuglio": { "form": "subbuglio", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "subdolo": { "form": "subdolo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "subito": { "form": "subito", "pos": "RB", "polarity": "0.03", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "sublime": { "form": "sublime", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "successiva": { "form": "successiva", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "successivamente": { "form": "successivamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "successive": { "form": "successive", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "successivi": { "form": "successivi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "successivo": { "form": "successivo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.12", "intensity": "1.00", "label": "" }, "successo": { "form": "successo", "pos": "NN", "polarity": "0.83", "subjectivity": "0.50", "intensity": "1.33", "label": "" }, "succinto": { "form": "succinto", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "succulento": { "form": "succulento", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "sue": { "form": "sue", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sufficiente": { "form": "sufficiente", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "suggerisco": { "form": "suggerisco", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.07", "intensity": "1.00", "label": "" }, "suggestivo": { "form": "suggestivo", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "sunto": { "form": "sunto", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "suo": { "form": "suo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "super": { "form": "super", "pos": "JJ", "polarity": "0.83", "subjectivity": "1.00", "intensity": "1.50", "label": "" }, "supera": { "form": "supera", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "superba": { "form": "superba", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "superbo": { "form": "superbo", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "superficiale": { "form": "superficiale", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "superficialmente": { "form": "superficialmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "superfluo": { "form": "superfluo", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "superiore": { "form": "superiore", "pos": "JJ", "polarity": "0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "supremo": { "form": "supremo", "pos": "JJ", "polarity": "0.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "surreale": { "form": "surreale", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "surreali": { "form": "surreali", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "svago": { "form": "svago", "pos": "NN", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "svarione": { "form": "svarione", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "svedese": { "form": "svedese", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sveglio": { "form": "sveglio", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "2.00", "label": "" }, "svelando": { "form": "svelando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "svelto": { "form": "svelto", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "sventura": { "form": "sventura", "pos": "NN", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "sveva": { "form": "sveva", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "svevo": { "form": "svevo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "sì": { "form": "sì", "pos": "RB", "polarity": "0.18", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "tagliente": { "form": "tagliente", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tale": { "form": "tale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "talmente": { "form": "talmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "talvolta": { "form": "talvolta", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tanfata": { "form": "tanfata", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "tanfo": { "form": "tanfo", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "tangibile": { "form": "tangibile", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "tante": { "form": "tante", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.50", "label": "" }, "tanti": { "form": "tanti", "pos": "JJ", "polarity": "0.03", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "tantino": { "form": "tantino", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "tantissime": { "form": "tantissime", "pos": "JJ", "polarity": "0.25", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "tantissimi": { "form": "tantissimi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "tantissimo": { "form": "tantissimo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "tanto": { "form": "tanto", "pos": "RB", "polarity": "0.25", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "tarchiato": { "form": "tarchiato", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "tardi": { "form": "tardi", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tardo": { "form": "tardo", "pos": "JJ", "polarity": "-0.12", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "tassativo": { "form": "tassativo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "teatrale": { "form": "teatrale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "tecnici": { "form": "tecnici", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tecnico": { "form": "tecnico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tedesca": { "form": "tedesca", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tedesco": { "form": "tedesco", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tedio": { "form": "tedio", "pos": "NN", "polarity": "-0.50", "subjectivity": "0.80", "intensity": "1.00", "label": "" }, "tedioso": { "form": "tedioso", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "2.00", "label": "" }, "teenager": { "form": "teenager", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "televisiva": { "form": "televisiva", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "televisivi": { "form": "televisivi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "televisivo": { "form": "televisivo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "temerario": { "form": "temerario", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "temibile": { "form": "temibile", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "temperamento": { "form": "temperamento", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "tempestivo": { "form": "tempestivo", "pos": "JJ", "polarity": "0.18", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "tempo": { "form": "tempo", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "temporale": { "form": "temporale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tempra": { "form": "tempra", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "tenace": { "form": "tenace", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "tendenzialmente": { "form": "tendenzialmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "tenebra": { "form": "tenebra", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tenebroso": { "form": "tenebroso", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tenendo": { "form": "tenendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tenera": { "form": "tenera", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "tenero": { "form": "tenero", "pos": "JJ", "polarity": "0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "tentando": { "form": "tentando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tenue": { "form": "tenue", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "teppa": { "form": "teppa", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "terminale": { "form": "terminale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "terribile": { "form": "terribile", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "terribili": { "form": "terribili", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "terribilmente": { "form": "terribilmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "terrore": { "form": "terrore", "pos": "NN", "polarity": "-0.83", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "terzani": { "form": "terzani", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "teso": { "form": "teso", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "testadirapa": { "form": "testadirapa", "pos": "NN", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "testone": { "form": "testone", "pos": "NN", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "tetro": { "form": "tetro", "pos": "JJ", "polarity": "-0.20", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "tetto": { "form": "tetto", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "tienimi": { "form": "tienimi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tiepido": { "form": "tiepido", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "time": { "form": "time", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tipica": { "form": "tipica", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "tipicamente": { "form": "tipicamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tipici": { "form": "tipici", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tipico": { "form": "tipico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "tipo": { "form": "tipo", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "tiratadorecchi": { "form": "tiratadorecchi", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tirato": { "form": "tirato", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tiro": { "form": "tiro", "pos": "NN", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "titanico": { "form": "titanico", "pos": "JJ", "polarity": "0.42", "subjectivity": "0.58", "intensity": "1.00", "label": "" }, "titubante": { "form": "titubante", "pos": "JJ", "polarity": "-0.12", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "toccante": { "form": "toccante", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "tolkieniana": { "form": "tolkieniana", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tollerabile": { "form": "tollerabile", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "tonto": { "form": "tonto", "pos": "NN", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "top": { "form": "top", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "topico": { "form": "topico", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "torbido": { "form": "torbido", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "tormentare": { "form": "tormentare", "pos": "VB", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "tormentata": { "form": "tormentata", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.67", "intensity": "1.33", "label": "" }, "tornando": { "form": "tornando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tornito": { "form": "tornito", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "torpido": { "form": "torpido", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "tortuoso": { "form": "tortuoso", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "tortura": { "form": "tortura", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "torturare": { "form": "torturare", "pos": "VB", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "toscana": { "form": "toscana", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "toscano": { "form": "toscano", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tosta": { "form": "tosta", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "2.00", "label": "" }, "totale": { "form": "totale", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.12", "intensity": "1.00", "label": "" }, "totalita": { "form": "totalita", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "totalmente": { "form": "totalmente", "pos": "RB", "polarity": "0.17", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "tozzo": { "form": "tozzo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "traccia": { "form": "traccia", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tracciato": { "form": "tracciato", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tracotante": { "form": "tracotante", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "traditore": { "form": "traditore", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "tradizionale": { "form": "tradizionale", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.17", "intensity": "1.00", "label": "" }, "tradizionalista": { "form": "tradizionalista", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tradotte": { "form": "tradotte", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "trafitta": { "form": "trafitta", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "trafittura": { "form": "trafittura", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "tragedia": { "form": "tragedia", "pos": "NN", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "tragica": { "form": "tragica", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "tragico": { "form": "tragico", "pos": "JJ", "polarity": "-0.83", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "trama": { "form": "trama", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "trambusto": { "form": "trambusto", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "tranello": { "form": "tranello", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "tranquilla": { "form": "tranquilla", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "tranquillamente": { "form": "tranquillamente", "pos": "RB", "polarity": "0.20", "subjectivity": "0.07", "intensity": "1.00", "label": "" }, "tranquillo": { "form": "tranquillo", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "trapassare": { "form": "trapassare", "pos": "VB", "polarity": "-0.33", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "trapassato": { "form": "trapassato", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "trascinando": { "form": "trascinando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "trascinatore": { "form": "trascinatore", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.67", "intensity": "2.00", "label": "" }, "trascurabile": { "form": "trascurabile", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "trasparente": { "form": "trasparente", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "trastullo": { "form": "trastullo", "pos": "NN", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "trattabile": { "form": "trattabile", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "trattando": { "form": "trattando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "trattandosi": { "form": "trattandosi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "travagliare": { "form": "travagliare", "pos": "VB", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "travolgente": { "form": "travolgente", "pos": "JJ", "polarity": "0.67", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "tremendamente": { "form": "tremendamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "tremendo": { "form": "tremendo", "pos": "JJ", "polarity": "-1.00", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "trepidante": { "form": "trepidante", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.67", "intensity": "1.33", "label": "" }, "trionfante": { "form": "trionfante", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "tripudio": { "form": "tripudio", "pos": "NN", "polarity": "0.33", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "triste": { "form": "triste", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.83", "intensity": "1.33", "label": "" }, "tristezza": { "form": "tristezza", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.33", "label": "" }, "tristi": { "form": "tristi", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "tristissimo": { "form": "tristissimo", "pos": "JJ", "polarity": "-1.00", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "tristo": { "form": "tristo", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "2.00", "label": "" }, "troppa": { "form": "troppa", "pos": "JJ", "polarity": "-0.28", "subjectivity": "0.75", "intensity": "2.00", "label": "" }, "troppe": { "form": "troppe", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "troppi": { "form": "troppi", "pos": "JJ", "polarity": "-0.33", "subjectivity": "0.33", "intensity": "1.33", "label": "" }, "troppo": { "form": "troppo", "pos": "RB", "polarity": "-0.33", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "trovando": { "form": "trovando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "truffa": { "form": "truffa", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tua": { "form": "tua", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tue": { "form": "tue", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tumulto": { "form": "tumulto", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tuo": { "form": "tuo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tuoi": { "form": "tuoi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tuorlo": { "form": "tuorlo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "turba": { "form": "turba", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "turbare": { "form": "turbare", "pos": "VB", "polarity": "-0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "turbato": { "form": "turbato", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "turbolento": { "form": "turbolento", "pos": "JJ", "polarity": "-0.75", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "turbolenza": { "form": "turbolenza", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "turchino": { "form": "turchino", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "turlupinatura": { "form": "turlupinatura", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tutta": { "form": "tutta", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "tutte": { "form": "tutte", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "ubbidiente": { "form": "ubbidiente", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "ufficiale": { "form": "ufficiale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "uffiziale": { "form": "uffiziale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "uficiale": { "form": "uficiale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ufiziale": { "form": "ufiziale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "uggioso": { "form": "uggioso", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "uguale": { "form": "uguale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "uguali": { "form": "uguali", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ugualmente": { "form": "ugualmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ulteriore": { "form": "ulteriore", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ulteriori": { "form": "ulteriori", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ulteriormente": { "form": "ulteriormente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ultima": { "form": "ultima", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "ultimamente": { "form": "ultimamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ultime": { "form": "ultime", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ultimi": { "form": "ultimi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "ultimissima": { "form": "ultimissima", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "2.00", "label": "" }, "ultimo": { "form": "ultimo", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "umana": { "form": "umana", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "umane": { "form": "umane", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "umani": { "form": "umani", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "umano": { "form": "umano", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "umile": { "form": "umile", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "umoristico": { "form": "umoristico", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "unica": { "form": "unica", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "unicamente": { "form": "unicamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "unici": { "form": "unici", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "unico": { "form": "unico", "pos": "JJ", "polarity": "1.00", "subjectivity": "1.00", "intensity": "2.00", "label": "" }, "uniforme": { "form": "uniforme", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "unita": { "form": "unita", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "universale": { "form": "universale", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "universali": { "form": "universali", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "universitaria": { "form": "universitaria", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "universitario": { "form": "universitario", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "uomo": { "form": "uomo", "pos": "NN", "polarity": "0.10", "subjectivity": "0.08", "intensity": "1.00", "label": "" }, "urbana": { "form": "urbana", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "urbano": { "form": "urbano", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "usa": { "form": "usa", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "usando": { "form": "usando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "usuale": { "form": "usuale", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "utile": { "form": "utile", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.33", "intensity": "1.33", "label": "" }, "utiledesercizio": { "form": "utiledesercizio", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "utili": { "form": "utili", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "utilissima": { "form": "utilissima", "pos": "JJ", "polarity": "1.00", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "utilissimo": { "form": "utilissimo", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.67", "intensity": "1.67", "label": "" }, "utilizzabile": { "form": "utilizzabile", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "utilizzando": { "form": "utilizzando", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "vacuo": { "form": "vacuo", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "vagamente": { "form": "vagamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "vago": { "form": "vago", "pos": "JJ", "polarity": "-0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "vaiato": { "form": "vaiato", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "vale": { "form": "vale", "pos": "NN", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "valente": { "form": "valente", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "valerio": { "form": "valerio", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "valga": { "form": "valga", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "valida": { "form": "valida", "pos": "JJ", "polarity": "0.35", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "valide": { "form": "valide", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "validi": { "form": "validi", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "valido": { "form": "valido", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "valoroso": { "form": "valoroso", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.67", "intensity": "2.00", "label": "" }, "valyria": { "form": "valyria", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "vano": { "form": "vano", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "vari": { "form": "vari", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "varie": { "form": "varie", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "varieta": { "form": "varieta", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "vario": { "form": "vario", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "vasto": { "form": "vasto", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.28", "intensity": "1.00", "label": "" }, "vecchi": { "form": "vecchi", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "vecchia": { "form": "vecchia", "pos": "JJ", "polarity": "0.30", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "vecchie": { "form": "vecchie", "pos": "JJ", "polarity": "-0.17", "subjectivity": "0.35", "intensity": "1.00", "label": "" }, "vecchio": { "form": "vecchio", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "velato": { "form": "velato", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "veloce": { "form": "veloce", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.08", "intensity": "1.00", "label": "" }, "velocemente": { "form": "velocemente", "pos": "RB", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "velocissima": { "form": "velocissima", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "velocissimo": { "form": "velocissimo", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "venendo": { "form": "venendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "veneziana": { "form": "veneziana", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "veneziano": { "form": "veneziano", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "veniremeno": { "form": "veniremeno", "pos": "VB", "polarity": "-0.33", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "ventenne": { "form": "ventenne", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ventosa": { "form": "ventosa", "pos": "NN", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "ventura": { "form": "ventura", "pos": "NN", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "venturo": { "form": "venturo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.12", "intensity": "1.00", "label": "" }, "venusto": { "form": "venusto", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "vera": { "form": "vera", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "verace": { "form": "verace", "pos": "JJ", "polarity": "0.42", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "veracemente": { "form": "veracemente", "pos": "RB", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "veramente": { "form": "veramente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "verbale": { "form": "verbale", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "verde": { "form": "verde", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "verdiccio": { "form": "verdiccio", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "verdigno": { "form": "verdigno", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "verdino": { "form": "verdino", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "verdognolo": { "form": "verdognolo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "verdolino": { "form": "verdolino", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "vere": { "form": "vere", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "vergognoso": { "form": "vergognoso", "pos": "JJ", "polarity": "-0.75", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "veri": { "form": "veri", "pos": "JJ", "polarity": "0.12", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "veridicamente": { "form": "veridicamente", "pos": "RB", "polarity": "0.17", "subjectivity": "0.25", "intensity": "2.00", "label": "" }, "veridico": { "form": "veridico", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "veritiera": { "form": "veritiera", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "veritieramente": { "form": "veritieramente", "pos": "RB", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "veritiero": { "form": "veritiero", "pos": "JJ", "polarity": "0.38", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "vero": { "form": "vero", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.33", "label": "" }, "verosimile": { "form": "verosimile", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "verosimilmente": { "form": "verosimilmente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "versatile": { "form": "versatile", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "vertice": { "form": "vertice", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "vertiginoso": { "form": "vertiginoso", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.75", "intensity": "1.50", "label": "" }, "vetta": { "form": "vetta", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "vetusto": { "form": "vetusto", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.00", "intensity": "2.00", "label": "" }, "vezzoso": { "form": "vezzoso", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "vianormale": { "form": "vianormale", "pos": "JJ", "polarity": "0.17", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "viavai": { "form": "viavai", "pos": "NN", "polarity": "-0.33", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "vibrante": { "form": "vibrante", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "viceversa": { "form": "viceversa", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "vicina": { "form": "vicina", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "vicine": { "form": "vicine", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "vicino": { "form": "vicino", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.12", "intensity": "1.00", "label": "" }, "victoria": { "form": "victoria", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "vidimazione": { "form": "vidimazione", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "vigilante": { "form": "vigilante", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "vigile": { "form": "vigile", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "vigoroso": { "form": "vigoroso", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "villano": { "form": "villano", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "vincente": { "form": "vincente", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "vincitore": { "form": "vincitore", "pos": "NN", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "vincolante": { "form": "vincolante", "pos": "JJ", "polarity": "-0.07", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "violenti": { "form": "violenti", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.50", "intensity": "1.50", "label": "" }, "violento": { "form": "violento", "pos": "JJ", "polarity": "-0.75", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "virile": { "form": "virile", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "virtuoso": { "form": "virtuoso", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "vissuta": { "form": "vissuta", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "vissute": { "form": "vissute", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "vissuto": { "form": "vissuto", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "vistoso": { "form": "vistoso", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.75", "intensity": "2.00", "label": "" }, "vitale": { "form": "vitale", "pos": "JJ", "polarity": "0.42", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "vittorioso": { "form": "vittorioso", "pos": "NN", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "vivace": { "form": "vivace", "pos": "JJ", "polarity": "0.75", "subjectivity": "0.50", "intensity": "2.00", "label": "" }, "vivamente": { "form": "vivamente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "vive": { "form": "vive", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "vivendo": { "form": "vivendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "vivente": { "form": "vivente", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "vivi": { "form": "vivi", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "viviana": { "form": "viviana", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "vividi": { "form": "vividi", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.38", "intensity": "1.50", "label": "" }, "vivido": { "form": "vivido", "pos": "JJ", "polarity": "0.67", "subjectivity": "0.83", "intensity": "1.00", "label": "" }, "vivo": { "form": "vivo", "pos": "JJ", "polarity": "0.33", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "vizzo": { "form": "vizzo", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.05", "intensity": "1.00", "label": "" }, "volendo": { "form": "volendo", "pos": "VBG", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "volentieri": { "form": "volentieri", "pos": "RB", "polarity": "0.50", "subjectivity": "0.50", "intensity": "1.67", "label": "" }, "volerebene": { "form": "volerebene", "pos": "VB", "polarity": "0.67", "subjectivity": "0.75", "intensity": "1.00", "label": "" }, "voleremale": { "form": "voleremale", "pos": "VB", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "volgare": { "form": "volgare", "pos": "JJ", "polarity": "-0.67", "subjectivity": "0.67", "intensity": "1.33", "label": "" }, "volontariamente": { "form": "volontariamente", "pos": "RB", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "volpino": { "form": "volpino", "pos": "JJ", "polarity": "0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "voluminoso": { "form": "voluminoso", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.50", "intensity": "1.00", "label": "" }, "volutamente": { "form": "volutamente", "pos": "RB", "polarity": "0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "voluttuoso": { "form": "voluttuoso", "pos": "JJ", "polarity": "0.50", "subjectivity": "0.67", "intensity": "1.00", "label": "" }, "vostro": { "form": "vostro", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "vulnerabile": { "form": "vulnerabile", "pos": "JJ", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" }, "vuota": { "form": "vuota", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.50", "label": "" }, "vuote": { "form": "vuote", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "vuoti": { "form": "vuoti", "pos": "JJ", "polarity": "-0.25", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "vuoto": { "form": "vuoto", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.33", "intensity": "1.00", "label": "" }, "zaffata": { "form": "zaffata", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "zeccola": { "form": "zeccola", "pos": "NN", "polarity": "-0.25", "subjectivity": "0.25", "intensity": "1.00", "label": "" }, "zelante": { "form": "zelante", "pos": "JJ", "polarity": "0.17", "subjectivity": "1.00", "intensity": "2.00", "label": "" }, "zeno": { "form": "zeno", "pos": "JJ", "polarity": "0.00", "subjectivity": "0.00", "intensity": "1.00", "label": "" }, "zuccone": { "form": "zuccone", "pos": "NN", "polarity": "-0.50", "subjectivity": "1.00", "intensity": "1.00", "label": "" } } ================================================ FILE: lib/natural/sentiment/Portuguese/afinnShortSortedPortuguese.json ================================================ { "😂": 1, "❤": 3, "♥": 3, "😍": 3, "😭": -1, "😘": 3, "😊": 3, "👌": 2, "💕": 3, "👏": 2, "😁": 2, "☺": 3, "♡": 3, "👍": 2, "😩": -2, "🙏": 2, "✌": 2, "😏": 1, "😉": 2, "🙌": 2, "🙈": 2, "💪": 2, "😄": 2, "😒": -2, "💃": 3, "💖": 3, "😃": 2, "😔": -1, "🎉": 3, "😜": 2, "🌸": 3, "💜": 3, "💙": 3, "✨": 1, "💗": 3, "★": 1, "█": -1, "☀": 2, "😡": -1, "😎": 2, "💋": 3, "😋": 3, "🙊": 2, "😴": -1, "🎶": 2, "💞": 3, "😌": 2, "🔫": -1, "💛": 3, "💁": 1, "💚": 3, "♫": 1, "😞": -1, "😆": 2, "😝": 2, "😪": -1, "😫": -1, "👊": 1, "💀": -2, "😀": 2, "😚": 3, "😻": 3, "💘": 3, "☕": 1, "👋": 2, "🎊": 3, "🍕": 2, "❄": 2, "😕": -2, "💔": -1, "😤": -2, "😈": 1, "✈": 2, "🔝": 2, "😰": -1, "⚽": 3, "😑": -2, "👑": 3, "👉": 1, "🍃": 1, "🎁": 3, "😠": -2, "🐧": 2, "☆": 2, "🍀": 1, "🎈": 3, "🎅": 1, "😓": -1, "😣": -2, "😐": -2, "✊": 2, "😨": -1, "😖": -1, "💤": 1, "💓": 3, "👎": -1, "💦": 2, "✔": 1, "😷": -1, "🙋": 2, "🎄": 2, "💩": -1, "🎵": 2, "😛": 3, "👯": 2, "💎": 2, "🌿": 1, "🎂": 3, "🌟": 1, "🔮": 1, "👫": 1, "🏆": 3, "✖": 1, "☝": 1, "😙": 3, "⛄": 2, "👅": 2, "♪": 2, "🍂": 2, "💏": 1, "🌴": 2, "👈": 2, "🌹": 3, "🙆": 2, "👻": 1, "💰": 1, "🍻": 2, "🙅": -2, "🌞": 2, "🍁": 2, "⭐": 2, "▪": 1, "🎀": 3, "🐷": 1, "🙉": 1, "🌺": 2, "💅": 1, "🐶": 2, "🌚": 2, "👽": 1, "🎤": 2, "👭": 2, "🎧": 2, "👆": 1, "🍸": 2, "🍷": 2, "®": 1, "🍉": 3, "😇": 3, "🏃": 2, "😿": -2, "│": 1, "🍺": 2, "▶": 1, "😲": -1, "🎸": 2, "🍹": 3, "💫": 2, "📚": 1, "😶": -1, "🌷": 2, "💝": 3, "💨": 1, "🏈": 2, "💍": 2, "☔": 1, "👸": 3, "🇪": 3, "░": -1, "🍩": 1, "👾": 1, "☁": 1, "🌻": 2, "↿": 3, "🐯": 2, "👼": 1, "🍔": 1, "😸": 2, "👶": 2, "↾": 3, "💐": 3, "🌊": 2, "🍦": 2, "🍓": 3, "👇": 1, "💆": 1, "🍴": 2, "😧": -1, "🇸": 2, "😮": 1, "🚫": -3, "😽": 2, "🌈": 2, "🙀": 1, "⚠": -1, "🎮": 2, "╯": -1, "🍆": 2, "🍰": 2, "✓": 1, "👐": -1, "🍟": 1, "🍌": 2, "💑": 3, "👬": -1, "🐣": 2, "🎃": 3, "▬": 2, "": -3, "🐾": 3, "🎓": 2, "🏊": 2, "📷": 2, "👄": 2, "🌼": 4, "🚶": -1, "🐱": 2, "🐸": -1, "🇺": 2, "👿": -3, "🚬": 2, "✿": 1, "🐒": 2, "🌍": 3, "┊": 5, "🐥": 3, "🐼": 1, "🎥": 1, "💄": 2, "⛔": 2, "🏀": 1, "💉": 1, "💟": 3, "🚗": 1, "📝": 1, "♦": 2, "💭": 1, "🌙": 3, "🐟": 3, "👣": 1, "✂": -3, "🗿": 2, "👪": -1, "🍭": 1, "🌃": 2, "❌": 1, "🐰": 3, "💊": 2, "🚨": 3, "😦": -2, "🍪": 1, "🍣": -2, "✧": 1, "🎆": 3, "🎎": 4, "🇩": 3, "✅": 2, "📱": 1, "🙍": -2, "🍑": 1, "🎼": 1, "🔊": 2, "🌌": 2, "🍎": 1, "🐻": 2, "╰": -1, "💇": 1, "♬": 1, "🔴": 2, "🍱": -2, "🍊": 2, "🍒": 1, "🐭": 3, "👟": 2, "🌎": 1, "🍍": 2, "🐮": 3, "📲": 1, "☼": 1, "🌅": 1, "🇷": 3, "👠": 1, "🌽": 2, "💧": -1, "🍬": 1, "😺": 2, "🚀": 2, "¦": 3, "💢": 1, "🎬": 1, "🍧": 1, "🍜": 2, "🐏": 3, "🏄": 2, "➤": 1, "⬆": 1, "🍋": 1, "🆗": 2, "⚪": 2, "📺": 2, "🍅": 1, "⛅": 2, "🐢": 1, "👙": 2, "🏡": 2, "🌾": 2, "◉": 1, "✏": 1, "🐬": 2, "🇹": 3, "♣": 1, "🐝": 1, "🌝": 1, "🇮": 3, "🔋": -3, "🐍": 1, "♔": 2, "🔵": 1, "😾": -2, "🌕": 3, "🐨": 2, "🔐": 1, "💿": 3, "🌳": 2, "👰": 2, "❀": 2, "⚓": 3, "🚴": 3, "▀": -1, "👗": 1, "➕": 2, "💬": 2, "▒": -1, "🔜": 1, "🍨": 1, "💲": 1, "🍙": 1, "🍥": -4, "▸": 1, "♛": 1, "😼": 1, "🐙": 2, "👨": 2, "🍚": 2, "♨": 4, "🎹": 1, "♕": 2, "▃": 5, "🇬": 1, "🇧": 1, "☠": -1, "🐠": 2, "🚹": 3, "💵": 2, "✰": 4, "╠": 1, "👛": 2, "🌱": 3, "💻": 1, "🌏": 1, "▄": -1, "👓": 1, "◄": 1, "⚾": -1, "🌲": 2, "👴": 1, "🏠": 2, "🍇": 1, "🍘": 2, "🐇": 1, "🔞": -1, "👵": 2, "◀": 1, "🔙": 1, "🌵": 1, "🍮": -1, "🎇": 3, "🐎": 2, "➔": -1, "🐤": 2, "╩": 1, "🌑": 2, "🚲": 2, "🐑": -1, "🏁": 2, "🎾": 3, "╚": 1, "🈹": 1, "👮": -2, "☹": -3, "🐵": 2, "✪": 1, "◕": 2, "🗼": 3, "▐": -1, "♠": 1, "┳": -2, "👺": -2, "🐚": 1, "👂": -1, "🗽": 1, "🍵": 2, "🆒": 2, "🐺": 1, "⇨": 2, "🌓": 3, "🔒": 1, "╬": -1, "👳": 3, "🌂": 1, "🚌": 1, "♩": 3, "🍡": -1, "❥": 1, "🎡": 1, "💌": 2, "🐩": 2, "🌜": 2, "⌚": 1, "🚿": 3, "🔆": 3, "🌛": 3, "💂": -1, "🐔": 1, "🙎": -1, "🏩": 2, "🇫": 2, "🔨": -1, "📢": 2, "🐦": 2, "🐲": -1, "♻": 2, "🌘": 3, "🌔": 3, "👖": 2, "😗": 3, "🐄": 1, "◟": -1, "🍢": -1, "🎨": 1, "⬇": 2, "🚼": 3, "🇴": 2, "🌗": 3, "🌖": 3, "🔅": 5, "👜": 1, "🐌": 3, "💼": 3, "🐹": 1, "🌠": 3, "🐈": 1, "🌁": 1, "⚫": 1, "♧": 2, "🏰": 1, "🚵": 2, "🎢": 2, "🎷": 3, "🎐": 1, "┈": -4, "╗": 2, "🌇": 3, "⏰": 2, "🚂": 1, "◠": 2, "🎿": 2, "🆔": 4, "🌒": 3, "🐪": 3, "╔": 1, "╝": 2, "👔": 2, "🆓": 1, "🐋": 1, "▽": 2, "🐛": 1, "👕": 2, "💳": 2, "🏧": 5, "💡": 3, "⬅": 2, "🐫": 2, "🇱": 2, "📹": 2, "👞": 2, "👚": 3, "□": -2, "🚣": 3, "🏉": 3, "🗻": 3, "╦": 2, "⛺": 3, "🐕": 1, "🏂": 2, "👡": 2, "📻": 2, "✒": 1, "🌰": 3, "🏢": 1, "🎒": 3, "⌒": 3, "🏫": -2, "📴": 4, "🚢": 1, "🚚": -1, "🐉": 1, "❒": 1, "🔔": 5, "◢": 4, "🏥": 1, "🚖": -1, "▌": -2, "☛": 2, "💒": 3, "🚤": 2, "🐐": 2, "■": -2, "🔚": 2, "🎻": 2, "🔷": 1, "🎽": 2, "📅": 1, "🎺": 3, "🍈": -3, "✉": 1, "◤": 5, "○": 3, "🍼": 3, "🚛": -2, "📓": 1, "☉": 1, "💴": -2, "➰": -1, "🔌": -1, "📕": 1, "📣": 2, "🚓": 1, "🐗": 3, "⛳": 4, "┻": -3, "┛": 3, "┃": 2, "💺": 1, "🏇": -1, "☻": 1, "📞": 2, "Ⓐ": -1, "🌉": 3, "🚩": -2, "✎": 3, "📃": 2, "🏨": 1, "📌": -3, "♎": -1, "💷": 2, "🚄": 3, "▲": 3, "⛵": 3, "🔸": 1, "🚜": 5, "🐆": 2, "👒": 1, "❕": 1, "🔛": 2, "♢": 2, "🇲": 2, "❅": 4, "👝": 2, "✞": 2, "◡": 1, "🎋": 3, "👥": 1, "🐡": 1, "◆": 4, "🔭": 2, "🎪": 1, "🐜": 3, "♌": 4, "☐": -5, "👷": 1, "🔈": 1, "📄": 5, "🚐": 4, "🌋": 3, "📡": 1, "🚳": 5, "✘": 4, "🅰": 1, "🇼": 2, "┓": 3, "┣": 3, "Ⓛ": 2, "Ⓔ": 2, "👤": 4, "🚁": 1, "🎠": 3, "🐁": -2, "📗": 1, "┐": -1, "♂": 1, "📯": -1, "🔩": 1, "👢": 4, "◂": 2, "📰": 1, "📶": 2, "🌄": 1, "🗾": 2, "🔶": 2, "🏤": 2, "🎩": 2, "Ⓜ": 1, "🔧": -4, "🐅": 1, "♮": 1, "🅾": -1, "📦": 1, "🚊": 1, "🔲": 3, "△": 1, "📆": 5, "❛": 2, "📉": 2, "▵": 2, "🔎": 3, "☜": 1, "🇯": 2, "🇵": 2, "📘": 1, "ⓔ": 3, "🔑": 1, "⭕": 2, "🔘": 1, "🚭": 5, "🚉": 3, "🚪": 3, "➳": 2, "🚃": 3, "┯": -3, "🆙": 2, "🆖": 1, "┗": 5, "Ⓞ": 2, "❇": 3, "✴": 3, "☊": 5, "🔕": -2, "⬛": -2, "🚞": 3, "🍶": 3, "🌐": 3, "♀": 1, "🚅": 3, "🚒": -2, "♋": 1, "♍": 3, "🕝": -2, "ⓐ": 5, "📙": 1, "Ⓢ": 1, "📋": 3, "🎱": 1, "🐞": 1, "🔺": 1, "ⓡ": 5, "♤": 3, "🎯": 3, "🔉": 3, "↩": 5, "🚾": 1, "🎣": -4, "🔣": 1, "❎": -5, "➥": 1, "🎌": 5, "◣": 1, "⏬": 5, "♭": 1, "ⓞ": 5, "🔳": 2, "🏭": 2, "🎳": -3, "☚": 5, "➽": 2, "➫": 2, "➖": -5, "꒰": 2, "꒱": 2, "◝": -3, "📑": 5, "ⓧ": 5, "🔟": 5, "〓": 5, "ⓜ": 2, "➠": 5, "🚆": 2, "℅": -5, "☃": 2, "🚽": 5, "ⓝ": 5, "⇦": 5, "👲": 2, "🚡": -3, "🔬": 5, "➗": -3, "📈": 2, "⏪": 2, "◎": 5, "꒦": -5, "📎": 5, "⑅": 5, "✭": 5, "♓": 2, "┏": 5, "☇": 5, "࿎": -5, "👘": 5, "↙": 5, "Ⓕ": 2, "Ⓦ": 2, "Ⓟ": 2, "🕑": 2, "🕛": 5, "♈": -5, "↬": 5, "✍": 5, "🏦": 5, "🔻": 5, "ⓟ": 5, "ⓕ": 5, "ⓘ": 5, "♿": 5, "⇗": 5, "⇘": 5, "ⓨ": 5, "ⓙ": 5, "▫": 5, "🔇": 5, "⌃": -5, "🔖": 5, "📜": 5, "🚝": 5, "┘": -5, "✝": -5, "⍣": -5, "📮": -5, "🕕": -5, "🔯": 5, "➸": 5, "꒵": 5, "🕥": -5, "✽": 5, "📼": 5, "🕐": -5, "🀄": 5, "✬": 5, "✫": 5, "🕔": -5, "❣": 5, "📫": 5, "🉐": 5, "🈂": -5, "🎰": -5, "҂": -5, "╤": -5, "📔": 5, "gratis": 1, "gratuito": 1, "não": -1, "nunca": -1, "ajuda": 2, "gostei": 2, "aleluia": 2, "por favor": 1, "apoio": 2, "melhor": 3, "bom": 3, "estupendo": 3, "unido": 1, "querer": 1, "cuidado": 2, "grande": 3, "amor": 3, "qualidade": 2, "guardar": 2, "juntar": 1, "avançado": 1, "sim": 1, "*melhor": 2, "amigo": 1, "legal": 1, "problema": -2, "importante": 2, "presente": 2, "complicado": -1, "pagar": -1, "guerra": -2, "facil": 1, "problemas": -2, "interesses": 1, "compartilhar": 1, "popular": 3, "bem vindo": 2, "deus": 1, "acordo": 1, "segurança": 1, "diverção": 4, "ouro": 2, "limitado": -1, "soluções": 1, "natural": 1, "verdadeiro": 2, "ruim": -3, "risco": -2, "obrigado": 2, "erro": -2, "claro": 1, "beleza": 3, "ativo": 2, "fogo": -2, "morte": -2, "perdida": -3, "aumento": 1, "crescimento": 2, "deter": -1, "beneficios": 2, "dinheiro": 2, "perdido": -2, "esperança": 2, "desejo": 1, "solução": 1, "maduro": 2, "certo": 1, "bem": 2, "sair": -1, "enorme": 1, "amável": 2, "oportunidades": 2, "apropriado": 2, "agradável": 3, "permitir": 1, "super": 3, "matéria": 1, "responsável": 2, "ganhar": 4, "câncer": -1, "amigável": 2, "feliz": 3, "agradecer": 2, "seguro": 2, "salvo": 2, "bunda": -4, "cu": -5, "favorito": 2, "corte": -1, "melhorar": 2, "anti": -1, "forte": 2, "enfermidade": -1, "excelente": 3, "perfeito": 3, "oportunidade": 2, "prêmio": 3, "assegurar": 1, "exito": 2, "charmoso": 3, "advertência": -3, "significativo": 1, "útil": 2, "autoridade": 1, "sexy": 3, "sexo": 3, "bacana": 1, "conduzindo": 2, "positivo": 2, "fitness": 1, "capacidade": 1, "maior": 3, "responsabilidade": 1, "resolução": 2, "lealdade": 1, "recomendado": 2, "aprovado": 2, "habilidade": 2, "bonito": 1, "violação": -2, "pressão": -1, "dívida": -2, "interessado": 2, "premios": 3, "desfrutar": 2, "bloco": -1, "aumentado": 1, "justo": 2, "incorreto": -2, "morto": -3, "respeito": 2, "vale a pena": 2, "pobre": -2, "caralho": -4, "paz": 2, "criativo": 2, "beneficio": 2, "progresso": 2, "concessão": 1, "acorda": 1, "fan": 3, "fã": 3, "interessante": 2, "aceito": 1, "morrer": -3, "serviçal": 2, "limpo": 2, "justiça": 2, "demanda": -1, "possibilidade": 2, "visão": 1, "aceitar": 1, "sucedido": 3, "baixo": -1, "emergência": -2, "difícil": -1, "ajuste": 1, "dor": -2, "recomendar": 2, "desperdício": -1, "delito": -3, "senhorita": -2, "garantia": 1, "diamante": 1, "solo": -2, "porra": -4, "esperma": -4, "gozo": -4, "compatível": 2, "rosa": 1, "liberdade": 2, "novo": 1, "crescente": 1, "erros": -2, "bilau": -5, "integral": 2, "proteger": 1, "soltar": -1, "sólido": 2, "prevenir": -1, "rico": 2, "melhora": 2, "espírito": 1, "desafio": -1, "aceitação": 1, "cargos": -2, "pronto": 1, "tetas": 2, "seios": 2, "evitar": -1, "abuso": -3, "liderança": 1, "fé": 1, "faltoso": -2, "morreu": -3, "alcance": 1, "ataque": -1, "perdão": -1, "dano": -3, "fracasso": -2, "aprovação": 2, "jesus": 1, "aventura": 2, "lucro": 2, "determinada": 2, "divertida": 4, "dedicada": 2, "criminal": -3, "poderoso": 2, "sono": 1, "falso": -3, "promover": 1, "vantagem": 2, "economia": 1, "ganhando": 4, "reto": 1, "preparado": 1, "alerta": -1, "claramente": 1, "obviamente": 1, "doce": 2, "ganancia": 2, "falta": -2, "esquecido": -1, "quebrado": -1, "batalha": -1, "repartido": 1, "spam": -2, "forçado": -1, "briga": -1, "falhou": -2, "negativo": -2, "favoritos": 2, "saudável": 2, "ativos": 2, "lesão": -2, "protegido": 1, "errado": -2, "ganhou": 3, "importa": 1, "*ajuda": 2, "subida": 1, "famoso": 2, "violência": -3, "exclusivo": 2, "suporta": 2, "maravilhoso": 4, "conforme": 1, "força": 2, "medo": -2, "ações": 1, "comorbidade": -2, "melhorado": 2, "ocultar": -1, "luxo": 2, "incrível": 3, "sentimento": 1, "importância": 2, "vazío": -1, "estresse": -1, "mal": -3, "mais grande": 3, "preocupado": -2, "competitivo": 2, "pinto": -4, "pau": -4, "pica": -4, "pênis": -4, "esquecer": -1, "matar": -3, "conflito": -2, "dificuldade": -2, "expandir": 1, "apoiar": 1, "ajudar": 2, "afetado": -1, "*favorito": 2, "armadilhas": -3, "enfermidades": -1, "doações": 1, "assassinado": -3, "atrações": 2, "maluco": -2, "comédia": 1, "compromisso": 2, "pistola": -1, "puro": 1, "inferno": -4, "confiança": 2, "esquentando": 1, "desconectado": -1, "chupar": -3, "alcanzado": 1, "supremo": 4, "reconhecimento": 2, "encorajar": 2, "cancelar": -1, "limites": -1, "atraso": -1, "novela": 2, "incapacidade": -2, "ganhador": 4, "comprometido": 1, "acessível": 1, "excepcional": 5, "kkk": 2, "castigado": -2, "castigada": -2, "castigo": -2, "carregado": -3, "ódio": -3, "ilegal": -3, "consentimento": 2, "adequado": 2, "querido": 2, "confiável": 2, "duvida": -1, "incapaz": -2, "ataques": -1, "brigar": -2, "romance": 2, "cielo": 2, "focado": 2, "negociar": 2, "bloquear": -1, "cortar": -1, "uau": 4, "amado": 3, "*favoritos": 2, "superior": 2, "guardado": 2, "premiado": 3, "conforto": 2, "efetivamente": 2, "crisis": -3, "crise": -3, "luminoso": 1, "pobreza": -1, "riscos": -2, "sonhos": 1, "acidente": -2, "folga": -1, "ameaça": -2, "estranho": -1, "sustentável": 2, "innovação": 1, "cinza": -1, "negrinha": 2, "estável": 2, "titulado": 1, "severo": -2, "humor": 2, "sucessivamente": 3, "capacidades": 1, "pecado": -2, "lindo": 2, "melhorando": 2, "anseio": 1, "innovador": 2, "graça": 1, "trastornos": -2, "assentamento": 1, "fantástico": 4, "cometeu": 1, "orgulhoso": 2, "desastre": -2, "lesões": -2, "alarme": -2, "roubar": -2, "pior": -3, "perigroso": -2, "emocionante": 3, "confiabilidade": 2, "prazer": 3, "honra": 2, "sorte": 3, "comico": 1, "com cuidado": 2, "cego": -1, "furioso": -3, "asqueroso": -2, "capaz": 1, "vitória": 3, "alegria": 3, "deficiências": -2, "doente": -2, "lol": 3, "sujo": -2, "dar": 2, "quebra": -3, "vivo": 1, "promessa": 1, "tonto": -2, "prisão": -2, "popularidade": 3, "piorar": -3, "vitimas": -3, "escape": -1, "substancial": 1, "fraude": -4, "choque": -2, "procurado": 2, "infecção": -2, "extender": 1, "assassinato": -2, "adequar": 1, "resgate": 2, "perdas": -3, "combate": -1, "detido": -1, "lançado": 1, "contaminação": -2, "eficaz": 2, "beijo": 2, "piadas": 2, "aceitável": 1, "satisfeito": 2, "contento": 3, "ganha": 4, "de confiança": 2, "fantasma": -1, "violar": -2, "campeão": 2, "oração": -2, "ignorar": -1, "excelência": 3, "riqueza": 3, "inteligente": 2, "burro": -2, "inimigo": -2, "merda": -4, "restringido": -2, "sortudo": 3, "penalidade": -2, "facilidade": 2, "aventuras": 2, "apreciar": 2, "precioso": 3, "sorriso": 2, "exposto": -1, "queixa": -2, "impulso": 1, "danos": -3, "resolvo": 1, "queixas": -2, "paixão": 1, "fraco": -2, "integridade": 2, "preocupação": -3, "alegre": 3, "perigo": -2, "vitamina": 1, "paraíso": 3, "gloria": 2, "triste": -2, "promovendo": 1, "escorregar": -1, "cortes": -1, "funeral": -1, "desfrutado": 2, "talento": 2, "sabedoría": 1, "disparar": -1, "encorajado": 2, "perder": -3, "nobre": 2, "vantagens": 2, "amores": 3, "solto": -3, "doença": -2, "destrução": -3, "desordem": -2, "herói": 2, "caindo": -1, "deixado": -1, "tortura": -4, "matando": -3, "refinar": 1, "falha": -2, "mijando": -3, "atração": 2, "convidar": 1, "terror": -3, "proibir": -2, "ímpar": -2, "favor": 2, "atrativo": 2, "vitima": -3, "exige": -1, "cuidadoso": 2, "tops": 2, "chorar": -1, "simpático": 3, "raro": -2, "inspirado": 2, "limpador": 2, "gostado": 2, "adotar": 1, "negado": -2, "fodido": -4, "doação": 2, "mortes": -2, "disputa": -2, "cansado": -2, "honesto": 2, "arriscado": -3, "restaurar": 1, "exigir": -2, "maldito": -2, "suicídio": -2, "fama": 1, "cortesia": 2, "critica": -2, "assustado": -2, "encano": -2, "fortuna": 2, "exploração": -1, "gripe": -2, "perfeitamente": 3, "escravo": -3, "ação judicial": -1, "héroes": 2, "terrorista": -2, "ético": 2, "luta": -2, "sofrimento": -2, "culpável": -3, "encanto": 3, "violento": -3, "bêbado": -2, "crimes": -3, "resolvido": 2, "quebrou": -1, "resolver": 2, "garantindo": 1, "ressaltar": 2, "brilhante": 4, "desejos": 1, "amar": 2, "elegante": 2, "ganancias": 2, "criticos": -2, "fake": -3, "bomba": -1, "perjuizo": -2, "assalto": -2, "significado": 1, "resolvendo": 1, "participar": 1, "enganar": -3, "suspeitoso": -1, "obrigaóorio": -1, "celebração": 3, "ameaças": -2, "chegar": 1, "danado": -3, "mijar": -4, "rir": 1, "destruir": -3, "ofensivo": -2, "gosta": 2, "carga": -2, "excitado": 3, "supera": 2, "equilibrado": 1, "demorado": -1, "excluir": -1, "ansiedade": -2, "indisposto": -1, "esperanças": 2, "vadia": -5, "vencedor": 3, "isolado": -1, "descontado": -1, "desesperado": -3, "demonstração": -1, "saudações": 1, "desemprego": -2, "lágrimas": -2, "enjoado": -3, "amizade": 2, "sol": 2, "arrasto": -1, "preso": -2, "ganhado": 2, "morrendo": -3, "grudado": -2, "pare": -1, "sofisticado": 2, "imposto": -1, "mais forte": 2, "tóxico": -3, "trevas": -1, "nozes": -3, "piada": 2, "recusado": -1, "destruído": -3, "vulnerabilidade": -2, "celebrar": 3, "impresionante": 3, "acidentes": -2, "terno": 2, "violações": -2, "elogio": 3, "esperando": 2, "parcialidade": -1, "admitido": -1, "admitir": 1, "sofrer": -2, "caos": -2, "confundido": -2, "acusado": -2, "corrupção": -3, "terrible": -3, "febre": -2, "orar": 1, "recomenda": 2, "tesouro": 2, "limitação": -1, "atingido": -1, "advertências": -3, "inspiração": 2, "curioso": 1, "esquisito": -2, "lesionado": -2, "colapso": -2, "improvável": -1, "conflitos": -2, "homenagem": 2, "imune": 1, "infectado": -2, "barreira": -2, "puta": -5, "infecções": -2, "ofensa": -2, "protesto": -2, "intenso": 1, "partidários": 1, "sujeira": -2, "retirada": -3, "culpa": -2, "sofrido": -2, "falhos": -2, "devoto": 3, "despedido": -2, "desacordo": -2, "raiva": -2, "posibilidades": 2, "felicidade": 3, "substancialmente": 1, "bizarro": -2, "isento": -1, "realizado": 2, "nervoso": -2, "recusar": -2, "extende": 1, "magnífico": 5, "acalmar": 2, "campeões": 2, "inapropiado": -2, "apreciado": 2, "harmonia": 2, "distinto": 2, "recompensa": 2, "medalha": 3, "fede": -3, "vulnerável": -2, "unificado": 1, "ignorado": -2, "caído": -2, "apoiado": 1, "tolerância": 2, "atrair": 1, "ter êxito": 3, "opa": -2, "habilidades": 2, "armadilha": -1, "solitário": -2, "suspenso": -1, "segura": 2, "delicioso": 3, "com segurança": 1, "durável": 2, "desagradável": -3, "tumor": -2, "feio": -3, "invasão": -1, "recompensas": 2, "fortalecer": 2, "agressivo": -2, "roubado": -2, "perturbado": -2, "motivação": 1, "aceita": 1, "aplausos": 2, "apreciação": 2, "restrição": -2, "cuidando": 2, "usar": -1, "negar": -2, "defeito": -3, "pontos fortes": 2, "claridade": 2, "encorajando": 2, "terroristas": -2, "lixo": -3, "prometido": 1, "robusto": 2, "ameaçado": -2, "fabuloso": 4, "perspectiva": 1, "tenso": -1, "excluído": -2, "perspectivas": 1, "notável": 2, "previnindo": -1, "bagunça": -2, "aceitando": 1, "capotar": -1, "felicidades": 2, "incompleto": -1, "túmulo": -2, "presos": -2, "digno": 2, "lobby": -2, "derrota": -2, "sustentabilidade": 1, "ridículo": -1, "misericórdia": 2, "legalmente": 1, "vergonha": -2, "fatal": -3, "válido": 2, "descanso": -1, "reprovado": -2, "solucionado": 1, "urgente": -1, "parabéns": 2, "vingança": -2, "inimigos": -2, "desfrutando": 2, "promessas": 1, "inquieto": -3, "porcaria": -1, "tedioso": -3, "alcançar": 2, "déficit": -2, "deficiente": -5, "rebelde": -2, "malvado": -2, "impresionado": 3, "falhas": -2, "conspiração": -3, "proeminente": 2, "favores": 2, "pânico": -3, "desculpa": -1, "reclamação": -2, "descartar": -1, "abandonado": -2, "passivo": -1, "coragem": 2, "entretido": 2, "suspenção": -1, "pacífico": 2, "confia": 1, "roubo": -2, "refinado": 1, "chique": 1, "mendigo": -2, "horrivel": -3, "bloqueado": -1, "golpes": -1, "negação": -2, "gema": 3, "borrado": -1, "apagado": 1, "cagado": -2, "fatalidade": -2, "mito": -1, "infeccioso": -2, "bloqueio": -1, "restaurado": 1, "caridoso": 2, "convencido": 1, "suspeit*": -1, "competente": 2, "grato": 3, "rindo": 1, "desejável": 2, "proibido": -2, "rápido": 2, "milagre": 4, "preguiçoso": -1, "qualidades": 2, "maravilha": 3, "bla": -2, "mortal": -3, "buceta": -5, "orações": -2, "exclusão": -1, "entusiasta": 1, "generoso": 2, "putaria": -3, "fascinante": 3, "salvação": 2, "brutal": -3, "adaptado": 2, "orgulho": 2, "sobrevivente": 2, "deteriorado": -2, "jóia": 1, "tragédia": -2, "doloroso": -2, "funky": 2, "cancelado": -1, "assustador": -2, "sangrento": -3, "encantador": 3, "nervo*": -2, "respeitado": 2, "transtornado": -2, "enlouquecido": -2, "restri*": -2, "endossado": 2, "polu*": -2, "*benç*": 2, "triunfo": 4, "vitori*": 4, "polido": 2, "controverso": -2, "trauma": -3, "exigente": -1, "censur*": -2, "motiv*": 2, "lerdo": -3, "lento": -3, "lenta": -3, "buraco": -1, "volta": 2, "promovido": 1, "fome": -2, "aprov*": 2, "disputas": -2, "esplêndido": 3, "pront*": 1, "prejudicial": -2, "avis*": -2, "gravemente": -3, "decepcionado": -2, "estreia": 3, "repulsivo": -3, "excita*": 3, "valente": 2, "atroz": -3, "impor": -1, "assédio": -3, "raposa": -4, "*favor": 2, "controversia": -2, "simpatia": 2, "bela": 3, "promove": 1, "condenado": -2, "ameaçador": -2, "encoraja": 2, "doado": 2, "cru": -1, "*tediante": -2, "molestar": -2, "atacado": -1, "mais seguro": 2, "fortalecimento": 2, "desear": 1, "espantado": -2, "infração": -2, "veneno": -2 } ================================================ FILE: lib/natural/sentiment/Portuguese/negations_pt.json ================================================ { "words": [ "não", "nunca", "jamais", "nem" ] } ================================================ FILE: lib/natural/sentiment/SentimentAnalyzer.js ================================================ /* Copyright (c) 2019, Domingo Martín Mancera, Hugo W.L. ter Doest (based on https://github.com/dmarman/lorca) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const DEBUG = false // Afinn const englishAfinnVoca = require('afinn-165').afinn165 const spanishAfinnVoca = require('./Spanish/afinnShortSortedSpanish.json') const portugueseAfinnVoca = require('./Portuguese/afinnShortSortedPortuguese.json') // Afinn Financial Market News // const englishAfinnFinancialMarketNewsVoca = require('afinn-165-financialmarketnews') // Use ESM syntax const englishAfinnFinancialMarketNewsVoca = require('afinn-165-financialmarketnews').afinnFinancialMarketNews // Senticon const spanishSenticonVoca = require('./Spanish/senticon_es.json') const englishSenticonVoca = require('./English/senticon_en.json') const galicianSenticonVoca = require('./Galician/senticon_gl.json') const catalanSenticonVoca = require('./Catalan/senticon_ca.json') const basqueSenticonVoca = require('./Basque/senticon_eu.json') // Pattern const dutchPatternVoca = require('./Dutch/pattern-sentiment-nl.json') const italianPatternVoca = require('./Italian/pattern-sentiment-it.json') const englishPatternVoca = require('./English/pattern-sentiment-en.json') const frenchPatternVoca = require('./French/pattern-sentiment-fr.json') const germanPatternVoca = require('./German/pattern-sentiment-de.json') // Negations const englishNegations = require('./English/negations_en.json').words const spanishNegations = require('./Spanish/negations_es.json').words const dutchNegations = require('./Dutch/negations_du.json').words const portugueseNegations = require('./Portuguese/negations_pt.json').words const germanNegations = require('./German/negations_de.json').words // Mapping from type of vocabulary to language to vocabulary const languageFiles = { afinn: { English: [englishAfinnVoca, englishNegations], Spanish: [spanishAfinnVoca, spanishNegations], Portuguese: [portugueseAfinnVoca, portugueseNegations] }, afinnFinancialMarketNews: { English: [englishAfinnFinancialMarketNewsVoca, englishNegations] }, senticon: { Spanish: [spanishSenticonVoca, spanishNegations], English: [englishSenticonVoca, englishNegations], Galician: [galicianSenticonVoca, null], Catalan: [catalanSenticonVoca, null], Basque: [basqueSenticonVoca, null] }, pattern: { Dutch: [dutchPatternVoca, dutchNegations], Italian: [italianPatternVoca, null], English: [englishPatternVoca, englishNegations], French: [frenchPatternVoca, null], German: [germanPatternVoca, germanNegations] } } class SentimentAnalyzer { constructor (language, stemmer, type) { this.language = language this.stemmer = stemmer // this.vocabulary must be a copy of the languageFiles object // or in subsequent execution the polarity will be undefined // shallow copy - requires ES6 if (languageFiles[type]) { if (languageFiles[type][language]) { if (languageFiles[type][language][0]) { this.vocabulary = Object.create(languageFiles[type][language][0]) } } else { throw new Error('Type ' + type + ' for Language ' + language + ' not supported') } } else { throw new Error('Type Language ' + type + ' not supported') } this.vocabulary = Object.assign({}, languageFiles[type][language][0]) Object.setPrototypeOf(this.vocabulary, null) if (type === 'senticon') { Object.keys(this.vocabulary).forEach(word => { this.vocabulary[word] = this.vocabulary[word].pol }) } else { if (type === 'pattern') { Object.keys(this.vocabulary).forEach(word => { this.vocabulary[word] = this.vocabulary[word].polarity }) } } this.negations = [] if (languageFiles[type][language][1] != null) { this.negations = languageFiles[type][language][1] } if (stemmer) { const vocaStemmed = Object.create(null) for (const token in this.vocabulary) { vocaStemmed[stemmer.stem(token)] = this.vocabulary[token] } this.vocabulary = vocaStemmed } } // words is an array of words (strings) getSentiment (words) { let score = 0 let negator = 1 let nrHits = 0 words.forEach((token) => { const lowerCased = token.toLowerCase() if (this.negations.indexOf(lowerCased) > -1) { negator = -1 DEBUG && nrHits++ } else { // First try without stemming if (this.vocabulary[lowerCased] !== undefined) { score += negator * this.vocabulary[lowerCased] DEBUG && nrHits++ } else { if (this.stemmer) { const stemmedWord = this.stemmer.stem(lowerCased) if (this.vocabulary[stemmedWord] !== undefined) { score += negator * this.vocabulary[stemmedWord] DEBUG && nrHits++ } } } } }) score = score / words.length DEBUG && console.log('Number of hits: ' + nrHits) return score } } module.exports = SentimentAnalyzer ================================================ FILE: lib/natural/sentiment/Spanish/afinnShortSortedSpanish.json ================================================ { "😂": 1, "❤": 3, "♥": 3, "😍": 3, "😭": -1, "😘": 3, "😊": 3, "👌": 2, "💕": 3, "👏": 2, "😁": 2, "☺": 3, "♡": 3, "👍": 2, "😩": -2, "🙏": 2, "✌": 2, "😏": 1, "😉": 2, "🙌": 2, "🙈": 2, "💪": 2, "😄": 2, "😒": -2, "💃": 3, "💖": 3, "😃": 2, "😔": -1, "🎉": 3, "😜": 2, "🌸": 3, "💜": 3, "💙": 3, "✨": 1, "💗": 3, "★": 1, "█": -1, "☀": 2, "😡": -1, "😎": 2, "💋": 3, "😋": 3, "🙊": 2, "😴": -1, "🎶": 2, "💞": 3, "😌": 2, "🔫": -1, "💛": 3, "💁": 1, "💚": 3, "♫": 1, "😞": -1, "😆": 2, "😝": 2, "😪": -1, "😫": -1, "👊": 1, "💀": -2, "😀": 2, "😚": 3, "😻": 3, "💘": 3, "☕": 1, "👋": 2, "🎊": 3, "🍕": 2, "❄": 2, "😕": -2, "💔": -1, "😤": -2, "😈": 1, "✈": 2, "🔝": 2, "😰": -1, "⚽": 3, "😑": -2, "👑": 3, "👉": 1, "🍃": 1, "🎁": 3, "😠": -2, "🐧": 2, "☆": 2, "🍀": 1, "🎈": 3, "🎅": 1, "😓": -1, "😣": -2, "😐": -2, "✊": 2, "😨": -1, "😖": -1, "💤": 1, "💓": 3, "👎": -1, "💦": 2, "✔": 1, "😷": -1, "🙋": 2, "🎄": 2, "💩": -1, "🎵": 2, "😛": 3, "👯": 2, "💎": 2, "🌿": 1, "🎂": 3, "🌟": 1, "🔮": 1, "👫": 1, "🏆": 3, "✖": 1, "☝": 1, "😙": 3, "⛄": 2, "👅": 2, "♪": 2, "🍂": 2, "💏": 1, "🌴": 2, "👈": 2, "🌹": 3, "🙆": 2, "👻": 1, "💰": 1, "🍻": 2, "🙅": -2, "🌞": 2, "🍁": 2, "⭐": 2, "▪": 1, "🎀": 3, "🐷": 1, "🙉": 1, "🌺": 2, "💅": 1, "🐶": 2, "🌚": 2, "👽": 1, "🎤": 2, "👭": 2, "🎧": 2, "👆": 1, "🍸": 2, "🍷": 2, "®": 1, "🍉": 3, "😇": 3, "🏃": 2, "😿": -2, "│": 1, "🍺": 2, "▶": 1, "😲": -1, "🎸": 2, "🍹": 3, "💫": 2, "📚": 1, "😶": -1, "🌷": 2, "💝": 3, "💨": 1, "🏈": 2, "💍": 2, "☔": 1, "👸": 3, "🇪": 3, "░": -1, "🍩": 1, "👾": 1, "☁": 1, "🌻": 2, "↿": 3, "🐯": 2, "👼": 1, "🍔": 1, "😸": 2, "👶": 2, "↾": 3, "💐": 3, "🌊": 2, "🍦": 2, "🍓": 3, "👇": 1, "💆": 1, "🍴": 2, "😧": -1, "🇸": 2, "😮": 1, "🚫": -3, "😽": 2, "🌈": 2, "🙀": 1, "⚠": -1, "🎮": 2, "╯": -1, "🍆": 2, "🍰": 2, "✓": 1, "👐": -1, "🍟": 1, "🍌": 2, "💑": 3, "👬": -1, "🐣": 2, "🎃": 3, "▬": 2, "": -3, "🐾": 3, "🎓": 2, "🏊": 2, "📷": 2, "👄": 2, "🌼": 4, "🚶": -1, "🐱": 2, "🐸": -1, "🇺": 2, "👿": -3, "🚬": 2, "✿": 1, "🐒": 2, "🌍": 3, "┊": 5, "🐥": 3, "🐼": 1, "🎥": 1, "💄": 2, "⛔": 2, "🏀": 1, "💉": 1, "💟": 3, "🚗": 1, "📝": 1, "♦": 2, "💭": 1, "🌙": 3, "🐟": 3, "👣": 1, "✂": -3, "🗿": 2, "👪": -1, "🍭": 1, "🌃": 2, "❌": 1, "🐰": 3, "💊": 2, "🚨": 3, "😦": -2, "🍪": 1, "🍣": -2, "✧": 1, "🎆": 3, "🎎": 4, "🇩": 3, "✅": 2, "📱": 1, "🙍": -2, "🍑": 1, "🎼": 1, "🔊": 2, "🌌": 2, "🍎": 1, "🐻": 2, "╰": -1, "💇": 1, "♬": 1, "🔴": 2, "🍱": -2, "🍊": 2, "🍒": 1, "🐭": 3, "👟": 2, "🌎": 1, "🍍": 2, "🐮": 3, "📲": 1, "☼": 1, "🌅": 1, "🇷": 3, "👠": 1, "🌽": 2, "💧": -1, "🍬": 1, "😺": 2, "🚀": 2, "¦": 3, "💢": 1, "🎬": 1, "🍧": 1, "🍜": 2, "🐏": 3, "🏄": 2, "➤": 1, "⬆": 1, "🍋": 1, "🆗": 2, "⚪": 2, "📺": 2, "🍅": 1, "⛅": 2, "🐢": 1, "👙": 2, "🏡": 2, "🌾": 2, "◉": 1, "✏": 1, "🐬": 2, "🇹": 3, "♣": 1, "🐝": 1, "🌝": 1, "🇮": 3, "🔋": -3, "🐍": 1, "♔": 2, "🔵": 1, "😾": -2, "🌕": 3, "🐨": 2, "🔐": 1, "💿": 3, "🌳": 2, "👰": 2, "❀": 2, "⚓": 3, "🚴": 3, "▀": -1, "👗": 1, "➕": 2, "💬": 2, "▒": -1, "🔜": 1, "🍨": 1, "💲": 1, "🍙": 1, "🍥": -4, "▸": 1, "♛": 1, "😼": 1, "🐙": 2, "👨": 2, "🍚": 2, "♨": 4, "🎹": 1, "♕": 2, "▃": 5, "🇬": 1, "🇧": 1, "☠": -1, "🐠": 2, "🚹": 3, "💵": 2, "✰": 4, "╠": 1, "👛": 2, "🌱": 3, "💻": 1, "🌏": 1, "▄": -1, "👓": 1, "◄": 1, "⚾": -1, "🌲": 2, "👴": 1, "🏠": 2, "🍇": 1, "🍘": 2, "🐇": 1, "🔞": -1, "👵": 2, "◀": 1, "🔙": 1, "🌵": 1, "🍮": -1, "🎇": 3, "🐎": 2, "➔": -1, "🐤": 2, "╩": 1, "🌑": 2, "🚲": 2, "🐑": -1, "🏁": 2, "🎾": 3, "╚": 1, "🈹": 1, "👮": -2, "☹": -3, "🐵": 2, "✪": 1, "◕": 2, "🗼": 3, "▐": -1, "♠": 1, "┳": -2, "👺": -2, "🐚": 1, "👂": -1, "🗽": 1, "🍵": 2, "🆒": 2, "🐺": 1, "⇨": 2, "🌓": 3, "🔒": 1, "╬": -1, "👳": 3, "🌂": 1, "🚌": 1, "♩": 3, "🍡": -1, "❥": 1, "🎡": 1, "💌": 2, "🐩": 2, "🌜": 2, "⌚": 1, "🚿": 3, "🔆": 3, "🌛": 3, "💂": -1, "🐔": 1, "🙎": -1, "🏩": 2, "🇫": 2, "🔨": -1, "📢": 2, "🐦": 2, "🐲": -1, "♻": 2, "🌘": 3, "🌔": 3, "👖": 2, "😗": 3, "🐄": 1, "◟": -1, "🍢": -1, "🎨": 1, "⬇": 2, "🚼": 3, "🇴": 2, "🌗": 3, "🌖": 3, "🔅": 5, "👜": 1, "🐌": 3, "💼": 3, "🐹": 1, "🌠": 3, "🐈": 1, "🌁": 1, "⚫": 1, "♧": 2, "🏰": 1, "🚵": 2, "🎢": 2, "🎷": 3, "🎐": 1, "┈": -4, "╗": 2, "🌇": 3, "⏰": 2, "🚂": 1, "◠": 2, "🎿": 2, "🆔": 4, "🌒": 3, "🐪": 3, "╔": 1, "╝": 2, "👔": 2, "🆓": 1, "🐋": 1, "▽": 2, "🐛": 1, "👕": 2, "💳": 2, "🏧": 5, "💡": 3, "⬅": 2, "🐫": 2, "🇱": 2, "📹": 2, "👞": 2, "👚": 3, "□": -2, "🚣": 3, "🏉": 3, "🗻": 3, "╦": 2, "⛺": 3, "🐕": 1, "🏂": 2, "👡": 2, "📻": 2, "✒": 1, "🌰": 3, "🏢": 1, "🎒": 3, "⌒": 3, "🏫": -2, "📴": 4, "🚢": 1, "🚚": -1, "🐉": 1, "❒": 1, "🔔": 5, "◢": 4, "🏥": 1, "🚖": -1, "▌": -2, "☛": 2, "💒": 3, "🚤": 2, "🐐": 2, "■": -2, "🔚": 2, "🎻": 2, "🔷": 1, "🎽": 2, "📅": 1, "🎺": 3, "🍈": -3, "✉": 1, "◤": 5, "○": 3, "🍼": 3, "🚛": -2, "📓": 1, "☉": 1, "💴": -2, "➰": -1, "🔌": -1, "📕": 1, "📣": 2, "🚓": 1, "🐗": 3, "⛳": 4, "┻": -3, "┛": 3, "┃": 2, "💺": 1, "🏇": -1, "☻": 1, "📞": 2, "Ⓐ": -1, "🌉": 3, "🚩": -2, "✎": 3, "📃": 2, "🏨": 1, "📌": -3, "♎": -1, "💷": 2, "🚄": 3, "▲": 3, "⛵": 3, "🔸": 1, "🚜": 5, "🐆": 2, "👒": 1, "❕": 1, "🔛": 2, "♢": 2, "🇲": 2, "❅": 4, "👝": 2, "✞": 2, "◡": 1, "🎋": 3, "👥": 1, "🐡": 1, "◆": 4, "🔭": 2, "🎪": 1, "🐜": 3, "♌": 4, "☐": -5, "👷": 1, "🔈": 1, "📄": 5, "🚐": 4, "🌋": 3, "📡": 1, "🚳": 5, "✘": 4, "🅰": 1, "🇼": 2, "┓": 3, "┣": 3, "Ⓛ": 2, "Ⓔ": 2, "👤": 4, "🚁": 1, "🎠": 3, "🐁": -2, "📗": 1, "┐": -1, "♂": 1, "📯": -1, "🔩": 1, "👢": 4, "◂": 2, "📰": 1, "📶": 2, "🌄": 1, "🗾": 2, "🔶": 2, "🏤": 2, "🎩": 2, "Ⓜ": 1, "🔧": -4, "🐅": 1, "♮": 1, "🅾": -1, "📦": 1, "🚊": 1, "🔲": 3, "△": 1, "📆": 5, "❛": 2, "📉": 2, "▵": 2, "🔎": 3, "☜": 1, "🇯": 2, "🇵": 2, "📘": 1, "ⓔ": 3, "🔑": 1, "⭕": 2, "🔘": 1, "🚭": 5, "🚉": 3, "🚪": 3, "➳": 2, "🚃": 3, "┯": -3, "🆙": 2, "🆖": 1, "┗": 5, "Ⓞ": 2, "❇": 3, "✴": 3, "☊": 5, "🔕": -2, "⬛": -2, "🚞": 3, "🍶": 3, "🌐": 3, "♀": 1, "🚅": 3, "🚒": -2, "♋": 1, "♍": 3, "🕝": -2, "ⓐ": 5, "📙": 1, "Ⓢ": 1, "📋": 3, "🎱": 1, "🐞": 1, "🔺": 1, "ⓡ": 5, "♤": 3, "🎯": 3, "🔉": 3, "↩": 5, "🚾": 1, "🎣": -4, "🔣": 1, "❎": -5, "➥": 1, "🎌": 5, "◣": 1, "⏬": 5, "♭": 1, "ⓞ": 5, "🔳": 2, "🏭": 2, "🎳": -3, "☚": 5, "➽": 2, "➫": 2, "➖": -5, "꒰": 2, "꒱": 2, "◝": -3, "📑": 5, "ⓧ": 5, "🔟": 5, "〓": 5, "ⓜ": 2, "➠": 5, "🚆": 2, "℅": -5, "☃": 2, "🚽": 5, "ⓝ": 5, "⇦": 5, "👲": 2, "🚡": -3, "🔬": 5, "➗": -3, "📈": 2, "⏪": 2, "◎": 5, "꒦": -5, "📎": 5, "⑅": 5, "✭": 5, "♓": 2, "┏": 5, "☇": 5, "࿎": -5, "👘": 5, "↙": 5, "Ⓕ": 2, "Ⓦ": 2, "Ⓟ": 2, "🕑": 2, "🕛": 5, "♈": -5, "↬": 5, "✍": 5, "🏦": 5, "🔻": 5, "ⓟ": 5, "ⓕ": 5, "ⓘ": 5, "♿": 5, "⇗": 5, "⇘": 5, "ⓨ": 5, "ⓙ": 5, "▫": 5, "🔇": 5, "⌃": -5, "🔖": 5, "📜": 5, "🚝": 5, "┘": -5, "✝": -5, "⍣": -5, "📮": -5, "🕕": -5, "🔯": 5, "➸": 5, "꒵": 5, "🕥": -5, "✽": 5, "📼": 5, "🕐": -5, "🀄": 5, "✬": 5, "✫": 5, "🕔": -5, "❣": 5, "📫": 5, "🉐": 5, "🈂": -5, "🎰": -5, "҂": -5, "╤": -5, "📔": 5, "gratis": 1, "no": -1, "nunca": -1, "ayuda": 2, "gusta": 2, "arriba": 2, "por favor": 1, "apoyo": 2, "mejor": 3, "bueno": 3, "estupendo": 3, "unido": 1, "querer": 1, "cuidado": 2, "grande": 1, "amor": 3, "calidad": 2, "guardar": 2, "unirse": 1, "avanzado": 1, "sí": 1, "*mejor": 2, "amigo": 1, "legal": 1, "problema": -2, "importante": 2, "regalo": 2, "complicado": -1, "pagar": -1, "guerra": -2, "fácil": 1, "problemas": -2, "interés": 1, "compartir": 1, "popular": 3, "bienvenida": 2, "dios": 1, "acuerdo": 1, "seguridad": 1, "diversión": 4, "oro": 2, "limitado": -1, "soluciones": 1, "natural": 1, "verdadero": 2, "malo": -3, "riesgo": -2, "gracias": 2, "error": -2, "claro": 1, "belleza": 3, "activo": 1, "fuego": -2, "muerte": -2, "pérdida": -3, "aumento": 1, "crecimiento": 2, "detener": -1, "beneficios": 2, "efectivo": 2, "extraviado": -3, "esperanza": 2, "deseo": 1, "solución": 1, "maduro": 2, "cierto": 1, "bien": 2, "salir": -1, "enorme": 1, "amable": 2, "oportunidades": 2, "apropiado": 2, "agradable": 3, "permitir": 1, "super": 3, "materia": 1, "responsable": 2, "ganar": 4, "cáncer": -1, "amigable": 2, "feliz": 3, "agradecer": 2, "seguro": 1, "salvo": 2, "culo": -4, "favorito": 2, "corte": -1, "mejorar": 2, "anti": -1, "fuerte": 2, "enfermedad": -1, "excelente": 3, "perfecto": 3, "opportunit y": 2, "premio": 3, "asegurar": 1, "éxito": 2, "hermoso": 3, "advertencia": -3, "significativo": 1, "útil": 2, "autoridad": 1, "sexy": 3, "grand": 3, "cool": 1, "leading": 2, "positive": 2, "fitness": 1, "greater": 3, "responsibility": 1, "resolución": 2, "lealtad": 1, "recomendado": 2, "aprobado": 2, "habilidad": 2, "bonito": 1, "violación": -4, "presión": -1, "deuda": -2, "interesado": 2, "premios": 3, "disfrutar": 2, "bloque": -1, "aumentado": 1, "justo": 2, "incorrecto": -2, "muerto": -3, "respeto": 2, "vale la pena": 2, "pobre": -2, "jodido": -4, "paz": 2, "creativo": 2, "beneficio": 2, "progreso": 2, "concesión": 1, "acuerda": 1, "fan": 3, "interesante": 2, "aceptado": 1, "morir": -3, "servicial": 2, "limpio": 2, "justicia": 2, "demanda": -1, "posibilidad": 2, "visión": 1, "aceptar": 1, "exitoso": 3, "bajo": -1, "emergencia": -2, "difícil": -1, "ajuste": 1, "dolor": -2, "recomendar": 2, "desperdicio": -1, "delito": -3, "señorita": -2, "garantía": 1, "diamante": 1, "solo": -2, "intereses": 1, "joder": -4, "compatible": 2, "rosa": 1 , "libertad": 2, "nuevo": 1, "creciente": 1, "errores": -2, "polla": -5, "integral": 2, "proteger": 1, "soltar": -1, "sólido": 2, "prevenir": -1, "rico": 2, "mejora": 2, "espíritu": 1, "desafío": -1, "aceptación": 1, "cargos": -2, "listo": 1, "tetas": -2, "evitar": -1, "abuso": -3, "liderazgo": 1, "fe": 1, "faltante": -2, "murió": -3, "alcance": 1, "ataque": -1, "perdón": -1, "daño": -3, "fracaso": -2, "aprobación": 2, "jesús": 1, "aventura": 2, "lucro": 2, "determinada": 2, "divertida": 4, "dedicada": 2 , "criminal": -3, "poderoso": 2, "sueño": 1, "falso": -1, "promocionar": 1, "ventaja": 2, "ahorro": 1, "ganando": 4 , "recto": 1, "preparado": 1, "alerta": -1, "claramente": 1, "dulce": 2, "ganancia": 2, "falta": -2, "olvidado": -1, "roto": -1, "batalla": -1, "compartido": 1, "spam": -2, "forzado": -1, "pelea": -1, "falló": -2, "negativo": -2, "favoritos": 2, "saludable": 2, "activos": 2, "lesión": -2, "protegido": 1, "fallo": -2, "ganó": 3 , "importa": 1, "*ayuda": 2, "ascenso": 1, "famoso": 2, "violencia": -3, "exclusivo": 2, "soporta": 2, "maravilloso": 4, "de acuerdo": 1, "fuerza": 2, "miedo": -2, "acciones": 1, "comodidad": 2, "mejorado": 2, "ocultar": -1, "lujo": 2, "increíble": 4, "sentimiento": 1, "importancia": 2, "vacío": -1, "estrés": -1, "yeah": 1, "mal": -3, "más grande": 3 , "preocupado": -2, "competitivo": 2, "dick": -4, "olvidar": -1, "matar": -3, "conflicto": -2, "dificultad": -2, "expandir": 1, "apoyar": 1, "ayudar": 2, "afectado": -1, "*favorito": 2, "trampas": -3, "enfermedades": -1, "donaciones": 1, "asesinado": -3, "atracciones": 2, "loco": -2, "comedia": 1, "compromiso": 2, "pistola": -1, "puro": 1, "infierno": -4, "confianza": 2, "cálido": 1, "desconectado": -1, "chupar": -3, "alcanzado": 1, "supremo": 4, "reconocimiento": 2, "alentar": 2, "cancelar": -1, "límites": -1, "retraso": -1, "novela": 2, "discapacidad": -2, "ganador": 4, "comprometido": 1, "asequible": 2, "excepcional": 5, "jaja": 2, "castigado": -2, "castigada": -2, "castigo": -2, "*gris": -1, "cargado": -3, "odio": -3, "ilegal": -3, "consentimiento": 2, "adecuado": 2, "querido": 2, "confiable": 2, "duda": -1, "incapaz": -2, "ataques": -1, "pelear": -2, "romance": 2, "cielo": 2, "enfocado": 2, "negociar": 2, "bloquear": -1, "cortar": -1, "guau": 4, "amado": 3, "*favoritos": 2, "superior": 2, "guardado": 2, "otorgado": 1, "cómodo": 2, "efectivamente": 2, "crisis": -3, "luminoso": 1, "pobreza": -1, "riesgos": -2, "sueños": 1, "accidente": -2, "accesible": 1, "huelga": -1, "amenaza": -2, "perdido": -2, "extraño": -1, "sostenible": 2, "innovación": 1, "gris": -1, "negrita": 2, "estable": 2, "asset": 2, "titulado": 1, "severo": -2, "humor": 2, "exitosamente": 3, "capacidades": 1, "pecado": -2, "lindo": 2, "mejorando": 2, "anhelo": 1, "innovador": 2, "gracia": 1, "trastornos": -2, "asentamiento": 1, "fantástico": 4, "cometido": 1, "orgulloso": 2, "desastre": -2, "lesiones": -2, "alarma": -2, "robar": -2, "peor": -3, "peligroso": -2, "emocionante": 3, "fiabilidad": 2, "placer": 3, "honor": 2, "suerte": 3 , "comic": 1, "con cuidado": 2, "ciego": -1, "furioso": -3, "asqueroso": -2, "capaz": 1, "victoria": 3, "alegría": 3, "discapacidades": -2, "enfermo": -2, "lol": 3, "sucio": -2, "donar": 2, "quiebra": -3, "vivo": 1, "promesa": 1, "mareado": -2, "prisión": -2, "popularidad": 3, "empeorar": -3, "víctimas": -3, "escape": -1, "sustancial": 1 , "premiado": 3, "fraude": -4, "awesome": 4, "choque": -2, "deseado": 2, "infección": -2, "extender": 1, "asesinato": -2, "adecuar": 1, "rescate": 2, "pérdidas": -3, "combate": -1, "detenido": -1, "lanzado": 1, "contaminación": -2, "shock": -2, "efectividad": 2, "beso": 2, "bromas": 2, "aceptable": 1, "satisfecho": 2, "contento": 3, "gana": 4, "de confianza": 2, "fantasma": -1, "violar": -2, "campeón": 2, "oración": -2, "ignorar": -1, "excelencia": 3, "riqueza": 3, "olvidé": -1, "inteligente": 2, "estúpido": -2, "enemigo": -2, "mierda": -4, "restringido": -2, "afortunado": 3, "penalización": -2, "facilidad": 2, "aventuras": 2, "apreciar": 2, "precioso": 3, "sonrisa": 2, "expuesto": -1, "queja": -2, "impulso": 1, "capacidad": 1, "daños": -3, "resuelvo": 1, "quejas": -2, "pasión": 1, "débil": -2, "integridad": 2, "preocupación": -3, "alegre": 3, "peligro": -2, "vitamin": 1, "paradise": 3, "glory": 2, "sad": -2, "promoting": 1, "hurt": -2, "slip": -1, "profit": 2, "cortes": -1, "funeral": -1, "disfrutado": 2, "talento": 2, "sabiduría": 1, "disparar": -1, "alentado": 2, "perder": -3, "noble": 2, "ventajas": 2, "amores": 3, "sueltos": -3, "dolencia": -2, "asegurado": 2, "destrucción": -3, "desorden": -2, "héroe": 2, "cayendo": -1, "dejado": -1, "tortura": -4, "matando": -3, "refinar": 1, "falla": -2 , "meando": -3, "atracción": 2, "invitar": 1, "terror": -3, "prohibir": -2, "impar": -2, "favor": 2, "atractivo": 2, "víctima": -3, "exige": -1, "cuidadoso": 2, "tops": 2, "llorar": -1, "simpático": 3, "raro": -2, "inspirado": 2, "limpiador": 2, "gustado": 2, "adoptar": 1, "denegado": -2, "follado": -4, "donación": 2, "muertes": -2, "disputa": -2, "cansado": -2, "honesto": 2, "arriesgado": -3, "restaurar": 1, "demandar": -2, "maldito": -2 , "suicidio": -2, "fama": 1, "cortesía": 2, "crítica": -2, "asustado": -2, "engaño": -2, "fortuna": 2, "exploración": 1, "gripe": -2, "perfectamente": 3, "esclavo": -3, "litigio": -1, "héroes": 2, "terrorista": -2, "ético": 2, "lucha": -2, "sufrimiento": -2, "culpable": -3, "encanto": 3, "violento": -3, "borracho": -2, "crímenes": -3, "resuelto": 2, "rompió": -1, "resolver": 2, "asegurando": 1, "resaltar": 2, "ojalá": 2, "brillante": 4, "deseos": 1, "amar": 2, "elegante": 2, "ganancias": 2, "críticos": -2, "fake": -3, "bomba": -1, "perjuicio": -2, "asalto": -2, "significado": 1, "resolviendo": 1, "participar": 1, "engañar": -3, "sospechoso": -1, "obligatorio": -1, "celebración": 3, "amenazas": -2 , "llegar": 1, "dañado": -3, "mear": -4, "reír": 1, "destruir": -3, "ofensivo": -2, "gustas": 2, "carga": -2, "increible": 3, "excitado": 3, "supera": 2, "equilibrado": 1, "demorado": -1, "excluir": -1, "ansiedad": -2, "indispuesto": -1, "esperanzas": 2, "puta": -5, "victor": 3, "aislado": -1, "descontado": -1, "desesperado": -3, "demostración": -1, "negado": -2, "saludo": 1, "desempleo": -2, "lágrimas": -2, "enojado": -3, "amistad": 2, "sol": 2, "arrastre": -1, "arrestado": -3, "ganado": 2, "muriendo": -3, "atascado": -2, "detiene": -1, "sofisticado": 2, "impuesto": -1, "más fuerte": 2, "tóxico": -3, "oscuridad": -1, "nueces": -3, "broma": 2, "rechazado": -1, "destruido": -3, "vulnerabilidad": -2, "celebrar": 3, "impresionante": 3, "accidentes": -2, "tierno": 2, "violaciones": -2, "alabanza": 3, "esperando": 2, "parcialidad": -1, "admitido": -1, "admitir": -1, "sufrir": -2, "caos": -2, "confundido": -2, "acusado": -2, "corrupción": -3, "terrible": -3, "fiebre": -2, "orar": 1, "recomienda": 2, "tesoro": 2, "limitación": -1, "golpeado": -1, "advertencias": -3, "inspiración": 2, "curioso": 1, "exquisito": 4, "lesionado": -2, "colapso": -2, "improbable": -1, "conflictos": -2, "tributo": 2, "inmune": 1, "infectado": -2, "barrera": -2, "perra": -5, "infecciones": -2, "ofensa": -2, "protesta": -2, "intenso": 1, "partidarios": 1, "suciedad": -2, "retirada": -3, "culpa": -2, "sufrido": -2, "fallos": -2, "devoto": 3, "despedido": -2, "desacuerdo": -2, "ira": -3, "posibilidades": 2, "felicidad": 3, "sustancialmente": 1, "bizarro": -2, "exento": -1, "realizado": 2, "nervioso": -2, "rechazar": -2, "extiende": 1, "magnífico": 5, "calmar": 2, "campeones": 2, "inapropiado": -2 , "apreciado": 2, "armonía": 2, "distinguido": 2, "recompensa": 2, "medalla": 3, "apesta": -3, "vulnerable": -2, "unificado": 1, "ignorado": -2, "caído": -2, "respaldado": 1, "arresto": -2, "tolerancia": 2, "atraer": 1, "tener éxito": 3, "oops": -2, "habilidades": 2, "trampa": -1, "solitario": -2, "tonto": -2, "suspendido": -1, "segura": 2, "delicioso": 3, "con seguridad": 1, "durable": 2, "desagradable": -3, "tumor": -2, "feo": -3, "invasión": -1, "recompensas": 2, "fortalecer": 2, "agresivo": -2, "robado": -2, "perturbado": -2, "motivación": 1, "acepta": 1, "aplausos": 2, "apreciación": 2, "restricción": -2, "cuidando": 2, "usad": -1, "negar": -2, "defectos": -3, "puntos fuertes": 2, "claridad": 2, "alentando": 2, "terroristas": -2, "basura": -3, "prometido": 1, "robusto": 2, "amenazado": -2, "fabuloso": 4, "prospecto": 1, "tensión": -1, "excluido": -2, "perspectivas": 1, "notable": 2, "previnindo": -1, "lío": -2, "aceptando": 1, "volcar": -1, "saludos": 2, "incompleto": -1, "tumba": -2, "presos": -2, "digno": 2, "lobby": -2, "derrota": -2, "sostenibilidad": 1, "ridículo": -1 , "misericordia": 2, "legalmente": 1, "vergüenza": -2, "fatal": -3, "válido": 2, "retiro": -1, "reprobado": -2, "retenido": -1, "solucionado": 1 , "urgente": -1, "felicitaciones": 2, "venganza": -2, "enemigos": -2, "admite": 1, "disfrutano": 2, "promesas": 1, "inquieto": -3, "porquería": -1, "aburrido": -3, "alcanza": 1, "déficit": -2, "rebelde": -2, "malvado": -2, "mata": -3 , "impresionado": 3, "fallas": -2, "conspiración": -3, "prominente": 2, "favores": 2, "pánico": -3, "excusa": -1, "reclamación": -2, "desechar": -1, "abandonado": -2, "contenta": 3, "pasivo": -1, "coraje": 2, "entretenido": 2, "suspensión": -1, "pacífico": 2, "rabia": -2, "confía": 1, "robo": -2, "refinado": 1, "sin hogar": -2, "horrible": -3, "bloqueado": -1, "golpes": -1, "negación": -2, "gema": 3, "borrado": 1, "lograr": 2, "fatalidad": -2, "mito": -1, "infeccioso": -2, "bloqueo": -1, "restaurado": 1, "caritativo": 2, "convencido": 1, "incumplimiento": -2, "sospecha": -1, "competente": 2 , "agradecido": 3, "riendo": 1, "deseable": 2, "prohibido": -2, "rápido": 2, "milagro": 4, "perezoso": -1, "cualidades": 2 , "maravilla": 3, "bla": -2, "mortal": -3, "coño": -5, "oraciones": -2, "exclusión": -1, "entusiasta": 1, "generoso": 2, "locura": -3, "fascinante": 3, "salvación": 2, "brutal": -3, "adaptado": 2, "orgullo": 2, "deleite": 3, "sobreviviente": 2, "deteriorado": -2, "joya": 1, "tragedia": -2, "doloroso": -2, "funky": 2, "cancelado": -1, "aterrador": -2, "sangriento": -3, "encantador": 3, "molesto": -2, "respetado": 2, "trastornado": -2, "restringir": -2, "endosado": 2, "polución": -2, "bendiga": 2, "triunfo": 4, "pulido": 2, "controvertido": -2, "trauma": -3, "exigente": -1, "censurado": -2, "motivado": 2, "lerdo": -3, "hueco": -1, "respaldo": 2, "promovido": 1, "hambre": -2, "beneplácito": 2, "disputas": -2, "espléndido": 3, "prontitud": 1, "dañino": -2, "tesoros": 2, "advertido": -2, "gravemente": -3, "decepcionado": -2, "primicia": 3, "repulsivo": -3, "excitación": 3, "valiente": 2, "atroz": -3, "imponer": -1, "acoso": -3, "zorra": -4, "*favor": 2, "controversia": -2, "simpatía": 2, "bellamente": 3, "promueve": 1, "condenado": -2, "amenazante": -2, "preso": -2, "alienta": 2, "donado": 2, "crudo": -1, "*aburrido": -2, "molestar": -2, "atacado": -1, "más seguro": 2, "fortalecimiento": 2, "desear": 1, "espantado": -2, "infracción": -2, "veneno": -2 } ================================================ FILE: lib/natural/sentiment/Spanish/negations_es.json ================================================ { "words": ["no", "nunca", "jamás", "ni"] } ================================================ FILE: lib/natural/sentiment/Spanish/senticon_es.json ================================================ { "acertado": { "pos": "a", "pol": "0.708", "std": "0.149" }, "admirable": { "pos": "a", "pol": "0.906", "std": "0.125" }, "admiración": { "pos": "n", "pol": "0.45", "std": "0.331" }, "admirar": { "pos": "v", "pol": "0.75", "std": "0.177" }, "afectivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "afecto": { "pos": "n", "pol": "0.321", "std": "0.112" }, "afectuoso": { "pos": "a", "pol": "0.563", "std": "0.131" }, "afición": { "pos": "n", "pol": "0.5", "std": "0.425" }, "afortunado": { "pos": "a", "pol": "0.813", "std": "0.063" }, "agradable": { "pos": "a", "pol": "0.75", "std": "0.181" }, "agradecido": { "pos": "a", "pol": "0.5", "std": "0.125" }, "alegrar": { "pos": "v", "pol": "0.458", "std": "0.315" }, "alegre": { "pos": "a", "pol": "0.661", "std": "0.185" }, "alentador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alentar": { "pos": "v", "pol": "0.275", "std": "0.418" }, "amable": { "pos": "a", "pol": "0.688", "std": "0.165" }, "amar": { "pos": "v", "pol": "1.0", "std": "0.0" }, "amistoso": { "pos": "a", "pol": "0.708", "std": "0.125" }, "amor": { "pos": "n", "pol": "0.278", "std": "0.171" }, "animado": { "pos": "a", "pol": "0.494", "std": "0.276" }, "animar": { "pos": "v", "pol": "0.289", "std": "0.232" }, "apacible": { "pos": "a", "pol": "0.313", "std": "0.161" }, "apasionado": { "pos": "a", "pol": "0.469", "std": "0.12" }, "apego": { "pos": "n", "pol": "0.375", "std": "0.0" }, "aprecio": { "pos": "n", "pol": "0.344", "std": "0.161" }, "aprobar": { "pos": "v", "pol": "0.375", "std": "0.292" }, "ardiente": { "pos": "a", "pol": "0.313", "std": "0.213" }, "atractivo": { "pos": "n", "pol": "0.5", "std": "0.246" }, "beneficio": { "pos": "n", "pol": "0.396", "std": "0.351" }, "benevolencia": { "pos": "n", "pol": "0.438", "std": "0.277" }, "benevolente": { "pos": "a", "pol": "0.313", "std": "0.177" }, "bien": { "pos": "r", "pol": "0.792", "std": "0.361" }, "bienestar": { "pos": "n", "pol": "0.531", "std": "0.258" }, "bondad": { "pos": "n", "pol": "0.25", "std": "0.267" }, "bonito": { "pos": "a", "pol": "0.75", "std": "0.217" }, "buen": { "pos": "a", "pol": "0.734", "std": "0.2" }, "bueno": { "pos": "n", "pol": "0.5", "std": "0.53" }, "cariñoso": { "pos": "a", "pol": "0.438", "std": "0.188" }, "cautivado": { "pos": "a", "pol": "0.438", "std": "0.0" }, "cautivador": { "pos": "a", "pol": "0.594", "std": "0.438" }, "cercano": { "pos": "a", "pol": "0.354", "std": "0.2" }, "comodidad": { "pos": "n", "pol": "0.406", "std": "0.298" }, "compañerismo": { "pos": "n", "pol": "0.25", "std": "0.191" }, "competente": { "pos": "a", "pol": "0.589", "std": "0.315" }, "complacencia": { "pos": "n", "pol": "0.688", "std": "0.177" }, "complacer": { "pos": "v", "pol": "0.475", "std": "0.326" }, "complaciente": { "pos": "a", "pol": "0.643", "std": "0.159" }, "confianza": { "pos": "n", "pol": "0.375", "std": "0.267" }, "confortar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "consolar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "contentarse": { "pos": "v", "pol": "0.375", "std": "0.177" }, "contento": { "pos": "n", "pol": "0.5", "std": "0.0" }, "correcto": { "pos": "a", "pol": "0.806", "std": "0.125" }, "cortés": { "pos": "a", "pol": "0.667", "std": "0.184" }, "cuidadoso": { "pos": "a", "pol": "0.521", "std": "0.102" }, "cálido": { "pos": "a", "pol": "0.411", "std": "0.257" }, "cándido": { "pos": "a", "pol": "0.35", "std": "0.306" }, "cómodo": { "pos": "a", "pol": "0.469", "std": "0.217" }, "decente": { "pos": "a", "pol": "0.571", "std": "0.2" }, "deleitarse": { "pos": "v", "pol": "0.475", "std": "0.143" }, "diestro": { "pos": "a", "pol": "0.625", "std": "0.331" }, "disfrutar": { "pos": "v", "pol": "0.536", "std": "0.225" }, "divertido": { "pos": "a", "pol": "0.653", "std": "0.132" }, "divertir": { "pos": "v", "pol": "0.281", "std": "0.239" }, "divertirse": { "pos": "v", "pol": "0.542", "std": "0.361" }, "dulce": { "pos": "a", "pol": "0.518", "std": "0.385" }, "emotivo": { "pos": "a", "pol": "0.313", "std": "0.051" }, "encantado": { "pos": "a", "pol": "0.417", "std": "0.129" }, "encantador": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "entusiasmo": { "pos": "n", "pol": "0.661", "std": "0.295" }, "entusiasta": { "pos": "a", "pol": "0.6", "std": "0.105" }, "estima": { "pos": "n", "pol": "0.521", "std": "0.188" }, "estimulante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estimular": { "pos": "v", "pol": "0.262", "std": "0.242" }, "euforia": { "pos": "n", "pol": "0.531", "std": "0.161" }, "eufórico": { "pos": "a", "pol": "0.344", "std": "0.329" }, "excelente": { "pos": "a", "pol": "0.75", "std": "0.088" }, "excitante": { "pos": "a", "pol": "0.425", "std": "0.137" }, "experto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fascinación": { "pos": "n", "pol": "0.438", "std": "0.354" }, "fascinante": { "pos": "a", "pol": "0.5", "std": "0.413" }, "favorable": { "pos": "a", "pol": "0.844", "std": "0.188" }, "favorecer": { "pos": "v", "pol": "0.268", "std": "0.254" }, "felicidad": { "pos": "n", "pol": "0.708", "std": "0.191" }, "feliz": { "pos": "a", "pol": "0.719", "std": "0.176" }, "ferviente": { "pos": "a", "pol": "0.5", "std": "0.12" }, "fiable": { "pos": "a", "pol": "0.75", "std": "0.088" }, "firmeza": { "pos": "n", "pol": "0.278", "std": "0.268" }, "gozar": { "pos": "v", "pol": "0.458", "std": "0.072" }, "gracioso": { "pos": "a", "pol": "0.625", "std": "0.112" }, "gratificante": { "pos": "a", "pol": "0.75", "std": "0.191" }, "gustar": { "pos": "v", "pol": "0.406", "std": "0.415" }, "gusto": { "pos": "n", "pol": "0.266", "std": "0.369" }, "honorable": { "pos": "a", "pol": "0.583", "std": "0.072" }, "honrado": { "pos": "a", "pol": "0.667", "std": "0.171" }, "honrar": { "pos": "v", "pol": "0.5", "std": "0.191" }, "hábil": { "pos": "a", "pol": "0.875", "std": "0.125" }, "ideal": { "pos": "a", "pol": "0.425", "std": "0.385" }, "idóneo": { "pos": "a", "pol": "0.7", "std": "0.154" }, "interés": { "pos": "n", "pol": "0.321", "std": "0.352" }, "jovial": { "pos": "a", "pol": "0.775", "std": "0.137" }, "joya": { "pos": "n", "pol": "0.458", "std": "0.191" }, "jubiloso": { "pos": "a", "pol": "0.563", "std": "0.088" }, "justo": { "pos": "a", "pol": "0.675", "std": "0.163" }, "júbilo": { "pos": "n", "pol": "0.542", "std": "0.26" }, "magnífico": { "pos": "a", "pol": "0.804", "std": "0.159" }, "mañoso": { "pos": "a", "pol": "0.563", "std": "0.258" }, "minucioso": { "pos": "a", "pol": "0.438", "std": "0.125" }, "optimismo": { "pos": "n", "pol": "0.458", "std": "0.331" }, "optimista": { "pos": "n", "pol": "0.625", "std": "0.0" }, "placentero": { "pos": "a", "pol": "0.875", "std": "0.177" }, "plácido": { "pos": "a", "pol": "0.25", "std": "0.177" }, "positivo": { "pos": "a", "pol": "0.594", "std": "0.258" }, "preferencia": { "pos": "n", "pol": "0.281", "std": "0.063" }, "prometedor": { "pos": "a", "pol": "0.875", "std": "0.102" }, "provecho": { "pos": "n", "pol": "0.328", "std": "0.313" }, "reconfortante": { "pos": "a", "pol": "0.375", "std": "0.063" }, "recrear": { "pos": "v", "pol": "0.313", "std": "0.421" }, "recto": { "pos": "a", "pol": "0.438", "std": "0.301" }, "refrescar": { "pos": "v", "pol": "0.25", "std": "0.2" }, "regocijado": { "pos": "a", "pol": "0.667", "std": "0.125" }, "regocijar": { "pos": "v", "pol": "0.875", "std": "0.177" }, "regocijarse": { "pos": "v", "pol": "0.313", "std": "0.088" }, "regocijo": { "pos": "n", "pol": "0.25", "std": "0.326" }, "respetable": { "pos": "a", "pol": "0.906", "std": "0.12" }, "saludable": { "pos": "a", "pol": "0.768", "std": "0.098" }, "sano": { "pos": "a", "pol": "0.8", "std": "0.112" }, "satisfacer": { "pos": "v", "pol": "0.578", "std": "0.236" }, "satisfactorio": { "pos": "n", "pol": "0.375", "std": "0.0" }, "satisfecho": { "pos": "a", "pol": "0.6", "std": "0.168" }, "seductor": { "pos": "a", "pol": "0.7", "std": "0.163" }, "seguro": { "pos": "r", "pol": "0.375", "std": "0.0" }, "sereno": { "pos": "a", "pol": "0.297", "std": "0.124" }, "simpatía": { "pos": "n", "pol": "0.354", "std": "0.292" }, "simpático": { "pos": "a", "pol": "0.653", "std": "0.289" }, "solazar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "sonriente": { "pos": "a", "pol": "1.0", "std": "0.0" }, "sosegado": { "pos": "a", "pol": "0.292", "std": "0.144" }, "superior": { "pos": "n", "pol": "0.375", "std": "0.177" }, "ternura": { "pos": "n", "pol": "0.313", "std": "0.12" }, "tierno": { "pos": "a", "pol": "0.375", "std": "0.224" }, "tranquilizar": { "pos": "v", "pol": "0.333", "std": "0.144" }, "tónico": { "pos": "a", "pol": "0.375", "std": "0.368" }, "utilidad": { "pos": "n", "pol": "0.344", "std": "0.331" }, "vigorizante": { "pos": "a", "pol": "0.625", "std": "0.125" }, "vigorizar": { "pos": "v", "pol": "0.375", "std": "0.224" }, "útil": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abatir": { "pos": "v", "pol": "-0.554", "std": "0.047" }, "abochornado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "abochornar": { "pos": "v", "pol": "-0.5", "std": "0.072" }, "abominación": { "pos": "n", "pol": "-0.425", "std": "0.056" }, "aborrecer": { "pos": "v", "pol": "-0.625", "std": "0.088" }, "aborrecimiento": { "pos": "n", "pol": "-0.425", "std": "0.056" }, "acongojarse": { "pos": "v", "pol": "-0.687", "std": "0.088" }, "acosar": { "pos": "v", "pol": "-0.304", "std": "0.061" }, "aflicción": { "pos": "n", "pol": "-0.606", "std": "0.109" }, "afligido": { "pos": "a", "pol": "-0.396", "std": "0.113" }, "afligir": { "pos": "v", "pol": "-0.675", "std": "0.04" }, "afligirse": { "pos": "v", "pol": "-0.687", "std": "0.088" }, "agravar": { "pos": "v", "pol": "-0.281", "std": "0.217" }, "agresividad": { "pos": "n", "pol": "-0.35", "std": "0.068" }, "alarmar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "alboroto": { "pos": "n", "pol": "-0.25", "std": "0.09" }, "amargura": { "pos": "n", "pol": "-0.5", "std": "0.125" }, "angustia": { "pos": "n", "pol": "-0.589", "std": "0.112" }, "angustiado": { "pos": "a", "pol": "-0.65", "std": "0.112" }, "antipatía": { "pos": "n", "pol": "-0.542", "std": "0.094" }, "antipático": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apesadumbrado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "apocamiento": { "pos": "n", "pol": "-0.406", "std": "0.188" }, "apurarse": { "pos": "v", "pol": "-0.35", "std": "0.088" }, "arrepentido": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "arriesgado": { "pos": "a", "pol": "-0.25", "std": "0.142" }, "asco": { "pos": "n", "pol": "-0.357", "std": "0.072" }, "asquear": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "asqueroso": { "pos": "a", "pol": "-0.575", "std": "0.143" }, "atormentar": { "pos": "v", "pol": "-0.391", "std": "0.129" }, "atroz": { "pos": "a", "pol": "-0.672", "std": "0.146" }, "avergonzado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "avergonzar": { "pos": "v", "pol": "-0.375", "std": "0.12" }, "aversión": { "pos": "n", "pol": "-0.359", "std": "0.08" }, "cabreado": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "celoso": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "colérico": { "pos": "a", "pol": "-0.458", "std": "0.131" }, "confundir": { "pos": "v", "pol": "-0.333", "std": "0.091" }, "congoja": { "pos": "n", "pol": "-0.75", "std": "0.072" }, "conmoción": { "pos": "n", "pol": "-0.354", "std": "0.151" }, "consternado": { "pos": "a", "pol": "-0.375", "std": "0.161" }, "contrariedad": { "pos": "n", "pol": "-0.656", "std": "0.188" }, "contrito": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "crueldad": { "pos": "n", "pol": "-0.525", "std": "0.056" }, "culpabilidad": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "culpable": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "dañino": { "pos": "a", "pol": "-0.437", "std": "0.157" }, "decaído": { "pos": "a", "pol": "-0.375", "std": "0.072" }, "defectuoso": { "pos": "a", "pol": "-0.431", "std": "0.127" }, "degradante": { "pos": "a", "pol": "-0.375", "std": "0.213" }, "deplorar": { "pos": "v", "pol": "-0.406", "std": "0.177" }, "deprimente": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "deprimir": { "pos": "v", "pol": "-0.687", "std": "0.0" }, "desagradable": { "pos": "n", "pol": "0.25", "std": "0.0" }, "desagradar": { "pos": "v", "pol": "-0.625", "std": "0.088" }, "desagrado": { "pos": "n", "pol": "-0.667", "std": "0.125" }, "desalentador": { "pos": "a", "pol": "-0.333", "std": "0.289" }, "desalentar": { "pos": "v", "pol": "-0.589", "std": "0.094" }, "desaliento": { "pos": "n", "pol": "-0.325", "std": "0.105" }, "desamparo": { "pos": "n", "pol": "-0.275", "std": "0.105" }, "desaprobar": { "pos": "v", "pol": "-0.292", "std": "0.188" }, "desasosiego": { "pos": "n", "pol": "-0.344", "std": "0.12" }, "desconsolado": { "pos": "a", "pol": "-0.875", "std": "0.088" }, "descuido": { "pos": "n", "pol": "-0.281", "std": "0.131" }, "desdicha": { "pos": "n", "pol": "-0.547", "std": "0.08" }, "desdichado": { "pos": "a", "pol": "-0.35", "std": "0.143" }, "desdén": { "pos": "n", "pol": "-0.363", "std": "0.099" }, "desesperado": { "pos": "a", "pol": "-0.625", "std": "0.19" }, "deshonroso": { "pos": "a", "pol": "-0.3", "std": "0.163" }, "desolado": { "pos": "a", "pol": "-0.562", "std": "0.265" }, "despreciable": { "pos": "a", "pol": "-0.406", "std": "0.174" }, "despreciar": { "pos": "v", "pol": "-0.396", "std": "0.151" }, "desprecio": { "pos": "n", "pol": "-0.406", "std": "0.115" }, "desánimo": { "pos": "n", "pol": "-0.312", "std": "0.112" }, "detestar": { "pos": "v", "pol": "-0.667", "std": "0.072" }, "devastador": { "pos": "a", "pol": "-0.45", "std": "0.068" }, "difícil": { "pos": "a", "pol": "-0.667", "std": "0.125" }, "disgustado": { "pos": "a", "pol": "-0.437", "std": "0.063" }, "disgustar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "disuadir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "dolor": { "pos": "n", "pol": "-0.488", "std": "0.102" }, "dolorido": { "pos": "a", "pol": "-0.719", "std": "0.102" }, "doloroso": { "pos": "a", "pol": "-0.625", "std": "0.131" }, "encolerizar": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "enemistad": { "pos": "n", "pol": "-0.281", "std": "0.072" }, "enfadado": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "enfadar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "enfurecer": { "pos": "v", "pol": "-0.375", "std": "0.072" }, "enojado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "enojar": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "enojoso": { "pos": "a", "pol": "-0.875", "std": "0.088" }, "entristecer": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "escalofriante": { "pos": "a", "pol": "-0.333", "std": "0.166" }, "espantar": { "pos": "v", "pol": "-0.286", "std": "0.098" }, "espantoso": { "pos": "a", "pol": "-0.643", "std": "0.134" }, "exacerbación": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "exasperar": { "pos": "v", "pol": "-0.525", "std": "0.163" }, "fastidiar": { "pos": "v", "pol": "-0.359", "std": "0.065" }, "fastidioso": { "pos": "a", "pol": "-0.75", "std": "0.153" }, "fatal": { "pos": "a", "pol": "-0.275", "std": "0.185" }, "frustrado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "frío": { "pos": "n", "pol": "-0.292", "std": "0.144" }, "furia": { "pos": "n", "pol": "-0.4", "std": "0.105" }, "furioso": { "pos": "a", "pol": "-0.3", "std": "0.143" }, "harto": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hastío": { "pos": "n", "pol": "-0.281", "std": "0.111" }, "herir": { "pos": "v", "pol": "-0.458", "std": "0.072" }, "histeria": { "pos": "n", "pol": "-0.437", "std": "0.12" }, "horrible": { "pos": "a", "pol": "-0.429", "std": "0.177" }, "horripilante": { "pos": "a", "pol": "-0.4", "std": "0.198" }, "horror": { "pos": "n", "pol": "-0.354", "std": "0.117" }, "horrorizar": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "horroroso": { "pos": "a", "pol": "-0.5", "std": "0.173" }, "hostigar": { "pos": "v", "pol": "-0.35", "std": "0.056" }, "hostilidad": { "pos": "n", "pol": "-0.344", "std": "0.102" }, "humillar": { "pos": "v", "pol": "-0.458", "std": "0.072" }, "impaciencia": { "pos": "n", "pol": "-0.333", "std": "0.191" }, "impotencia": { "pos": "n", "pol": "-0.25", "std": "0.12" }, "inadecuado": { "pos": "a", "pol": "-0.288", "std": "0.138" }, "inclemente": { "pos": "a", "pol": "-0.25", "std": "0.289" }, "incomodar": { "pos": "v", "pol": "-0.425", "std": "0.068" }, "incómodo": { "pos": "a", "pol": "-0.271", "std": "0.146" }, "inoportuno": { "pos": "a", "pol": "-0.361", "std": "0.153" }, "inquietante": { "pos": "a", "pol": "-0.375", "std": "0.161" }, "inquieto": { "pos": "a", "pol": "-0.275", "std": "0.147" }, "inquina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insatisfecho": { "pos": "a", "pol": "-0.5", "std": "0.102" }, "inseguridad": { "pos": "n", "pol": "-0.437", "std": "0.188" }, "insuficiente": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "intolerable": { "pos": "a", "pol": "-0.25", "std": "0.144" }, "iracundo": { "pos": "a", "pol": "-0.583", "std": "0.072" }, "irascible": { "pos": "a", "pol": "-0.562", "std": "0.063" }, "irritación": { "pos": "n", "pol": "-0.417", "std": "0.088" }, "irritante": { "pos": "a", "pol": "-0.5", "std": "0.185" }, "irritar": { "pos": "v", "pol": "-0.361", "std": "0.108" }, "lamentable": { "pos": "a", "pol": "-0.4", "std": "0.205" }, "mal humor": { "pos": "n", "pol": "-0.5", "std": "0.12" }, "malhumor": { "pos": "n", "pol": "-0.531", "std": "0.102" }, "malicia": { "pos": "n", "pol": "-0.375", "std": "0.112" }, "maligno": { "pos": "a", "pol": "-0.469", "std": "0.161" }, "malévolo": { "pos": "a", "pol": "-0.775", "std": "0.137" }, "melancolía": { "pos": "n", "pol": "-0.375", "std": "0.259" }, "melancólico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "menospreciar": { "pos": "v", "pol": "-0.268", "std": "0.159" }, "menosprecio": { "pos": "n", "pol": "-0.304", "std": "0.098" }, "miedoso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "miserable": { "pos": "n", "pol": "-0.3", "std": "0.056" }, "misoneísmo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mohína": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "molestar": { "pos": "v", "pol": "-0.458", "std": "0.042" }, "molesto": { "pos": "a", "pol": "-0.538", "std": "0.158" }, "monstruoso": { "pos": "a", "pol": "-0.396", "std": "0.129" }, "mosqueado": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "nauseabundo": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "negro": { "pos": "n", "pol": "-0.25", "std": "0.125" }, "nocivo": { "pos": "a", "pol": "-0.437", "std": "0.213" }, "odiar": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "odio": { "pos": "n", "pol": "-0.5", "std": "0.177" }, "ofender": { "pos": "v", "pol": "-0.594", "std": "0.125" }, "ofensivo": { "pos": "a", "pol": "-0.429", "std": "0.191" }, "opresión": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "oscuro": { "pos": "a", "pol": "-0.575", "std": "0.154" }, "pavor": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "pena": { "pos": "n", "pol": "-0.458", "std": "0.104" }, "penoso": { "pos": "a", "pol": "-0.321", "std": "0.173" }, "perjudicial": { "pos": "a", "pol": "-0.455", "std": "0.175" }, "perturbar": { "pos": "v", "pol": "-0.406", "std": "0.093" }, "pesadumbre": { "pos": "n", "pol": "-0.575", "std": "0.105" }, "pesar": { "pos": "n", "pol": "-0.562", "std": "0.104" }, "pesaroso": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "pesimismo": { "pos": "n", "pol": "-0.333", "std": "0.144" }, "pesimista": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "problema": { "pos": "n", "pol": "-0.437", "std": "0.128" }, "pánico": { "pos": "n", "pol": "-0.292", "std": "0.217" }, "quemazón": { "pos": "n", "pol": "-0.281", "std": "0.177" }, "rabia": { "pos": "n", "pol": "-0.271", "std": "0.123" }, "recelo": { "pos": "n", "pol": "-0.25", "std": "0.105" }, "rechazar": { "pos": "v", "pol": "-0.26", "std": "0.154" }, "rencor": { "pos": "n", "pol": "-0.542", "std": "0.144" }, "repelo": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "repugnancia": { "pos": "n", "pol": "-0.406", "std": "0.08" }, "repugnante": { "pos": "a", "pol": "-0.422", "std": "0.177" }, "repulsivo": { "pos": "a", "pol": "-0.25", "std": "0.072" }, "resentimiento": { "pos": "n", "pol": "-0.594", "std": "0.12" }, "sombrío": { "pos": "a", "pol": "-0.5", "std": "0.134" }, "temer": { "pos": "v", "pol": "-0.583", "std": "0.0" }, "temeroso": { "pos": "a", "pol": "-0.375", "std": "0.131" }, "temible": { "pos": "a", "pol": "-0.417", "std": "0.144" }, "tener miedo": { "pos": "v", "pol": "-0.562", "std": "0.0" }, "terrible": { "pos": "a", "pol": "-0.562", "std": "0.133" }, "tormento": { "pos": "n", "pol": "-0.482", "std": "0.061" }, "trastorno": { "pos": "n", "pol": "-0.375", "std": "0.079" }, "tribulación": { "pos": "n", "pol": "-0.281", "std": "0.12" }, "triste": { "pos": "a", "pol": "-0.509", "std": "0.154" }, "tristeza": { "pos": "n", "pol": "-0.45", "std": "0.256" }, "vergüenza": { "pos": "n", "pol": "-0.375", "std": "0.102" }, "vilipendio": { "pos": "n", "pol": "-0.917", "std": "0.0" }, "a gusto": { "pos": "a", "pol": "0.75", "std": "0.0" }, "adorador": { "pos": "a", "pol": "0.5", "std": "0.0" }, "afectividad": { "pos": "n", "pol": "0.625", "std": "0.0" }, "afectuosidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "agradado": { "pos": "a", "pol": "0.75", "std": "0.0" }, "agradar": { "pos": "v", "pol": "0.708", "std": "0.25" }, "alborozar": { "pos": "v", "pol": "1.0", "std": "0.0" }, "alegrarse": { "pos": "v", "pol": "1.0", "std": "0.0" }, "altruista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "amativo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "amigable": { "pos": "a", "pol": "0.542", "std": "0.125" }, "amoroso": { "pos": "a", "pol": "0.625", "std": "0.088" }, "animarse": { "pos": "v", "pol": "0.25", "std": "0.505" }, "aprobado": { "pos": "n", "pol": "0.625", "std": "0.0" }, "aprobativo": { "pos": "a", "pol": "1.0", "std": "0.0" }, "aprobatorio": { "pos": "a", "pol": "1.0", "std": "0.0" }, "arrebatador": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "autocomplacencia": { "pos": "n", "pol": "0.625", "std": "0.0" }, "benefactor": { "pos": "a", "pol": "0.938", "std": "0.088" }, "beneficencia": { "pos": "n", "pol": "0.688", "std": "0.265" }, "beneficioso": { "pos": "a", "pol": "0.917", "std": "0.072" }, "benéfico": { "pos": "a", "pol": "0.625", "std": "0.354" }, "benévolo": { "pos": "a", "pol": "0.438", "std": "0.088" }, "buen humor": { "pos": "n", "pol": "0.813", "std": "0.177" }, "buena voluntad": { "pos": "n", "pol": "0.5", "std": "0.265" }, "cariñosamente": { "pos": "r", "pol": "0.375", "std": "0.177" }, "complacido": { "pos": "a", "pol": "0.438", "std": "0.088" }, "confiadamente": { "pos": "a", "pol": "0.5", "std": "0.0" }, "confort": { "pos": "n", "pol": "0.5", "std": "0.0" }, "contentamiento": { "pos": "n", "pol": "0.5", "std": "0.0" }, "convencido": { "pos": "a", "pol": "0.25", "std": "0.177" }, "dar confianza": { "pos": "v", "pol": "0.5", "std": "0.0" }, "dar ánimos": { "pos": "v", "pol": "0.75", "std": "0.289" }, "desahogado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "devoto": { "pos": "a", "pol": "0.5", "std": "0.265" }, "embebecimiento": { "pos": "n", "pol": "0.5", "std": "0.0" }, "embeleso": { "pos": "n", "pol": "0.375", "std": "0.072" }, "embriagar": { "pos": "v", "pol": "0.5", "std": "0.619" }, "encandilamiento": { "pos": "n", "pol": "0.313", "std": "0.088" }, "esperanzador": { "pos": "a", "pol": "1.0", "std": "0.0" }, "estimulador": { "pos": "a", "pol": "0.75", "std": "0.0" }, "exuberancia": { "pos": "n", "pol": "0.625", "std": "0.354" }, "exultación": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fervoroso": { "pos": "a", "pol": "0.75", "std": "0.0" }, "fraternal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fraterno": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fácil": { "pos": "a", "pol": "0.25", "std": "0.12" }, "fácilmente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "gratificar": { "pos": "v", "pol": "0.417", "std": "0.505" }, "gratitud": { "pos": "n", "pol": "0.417", "std": "0.375" }, "habilidoso": { "pos": "a", "pol": "0.875", "std": "0.177" }, "hilarante": { "pos": "a", "pol": "0.625", "std": "0.0" }, "hilaridad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "jocundidad": { "pos": "n", "pol": "0.5", "std": "0.0" }, "jovialidad": { "pos": "n", "pol": "0.583", "std": "0.25" }, "lealtad": { "pos": "n", "pol": "0.313", "std": "0.088" }, "motivar": { "pos": "v", "pol": "0.25", "std": "0.088" }, "optimístico": { "pos": "a", "pol": "0.875", "std": "0.0" }, "placidez": { "pos": "n", "pol": "0.25", "std": "0.088" }, "predilección": { "pos": "n", "pol": "0.375", "std": "0.0" }, "regocijador": { "pos": "a", "pol": "0.625", "std": "0.0" }, "risueño": { "pos": "a", "pol": "0.833", "std": "0.144" }, "saciable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "satisfacible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "satisfecho de sí mismo": { "pos": "a", "pol": "0.875", "std": "0.0" }, "suertudo": { "pos": "a", "pol": "0.75", "std": "0.0" }, "tranquilizado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "tranquilizador": { "pos": "a", "pol": "0.313", "std": "0.088" }, "triunfo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "triunfal": { "pos": "a", "pol": "0.375", "std": "0.354" }, "triunfante": { "pos": "a", "pol": "0.563", "std": "0.0" }, "ufano": { "pos": "a", "pol": "0.438", "std": "0.265" }, "venturoso": { "pos": "a", "pol": "0.875", "std": "0.0" }, "victorioso": { "pos": "a", "pol": "0.583", "std": "0.072" }, "vigorizador": { "pos": "a", "pol": "0.625", "std": "0.177" }, "vitorear": { "pos": "v", "pol": "0.375", "std": "0.0" }, "abatido": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "abatimiento": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "abominar": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "aborrecible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "acosar sexualmente": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "acoso": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "agravado": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "airado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "alarmado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "alterado": { "pos": "a", "pol": "-0.375", "std": "0.144" }, "angustiosamente": { "pos": "r", "pol": "-0.75", "std": "0.0" }, "animadversión": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "ansiosamente": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "apenado": { "pos": "a", "pol": "-0.458", "std": "0.125" }, "apenar": { "pos": "v", "pol": "-0.281", "std": "0.144" }, "apenarse": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "apocar": { "pos": "v", "pol": "-0.687", "std": "0.0" }, "aprensivo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aprensión": { "pos": "n", "pol": "-0.312", "std": "0.063" }, "arrepentimiento": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "asediar": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "asqueadamente": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "asqueado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "asurarse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "ataque de pánico": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "aterrorizado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "autocompasión": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "avaricioso": { "pos": "a", "pol": "-0.583", "std": "0.217" }, "avaro": { "pos": "a", "pol": "-0.5", "std": "0.265" }, "avergonzante": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "avergonzarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "aversión homicida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "basca": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "beligerancia": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "beligerante": { "pos": "a", "pol": "-0.458", "std": "0.125" }, "berrinche": { "pos": "n", "pol": "-0.625", "std": "0.088" }, "calamitoso": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "cargante": { "pos": "a", "pol": "-0.562", "std": "0.265" }, "causar náuseas": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "celos": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "celosamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "codiciar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "coléricamente": { "pos": "r", "pol": "-0.75", "std": "0.0" }, "compadecer": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "compadecerse": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "compunción": { "pos": "n", "pol": "-0.625", "std": "0.177" }, "concomerse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "conmiseración": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "consternación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "consternar": { "pos": "v", "pol": "-0.344", "std": "0.063" }, "contrariado": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "contrición": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "conturbar": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "corazonada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cuita": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "cínico": { "pos": "n", "pol": "0.313", "std": "0.0" }, "dar asco": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "dar náuseas": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "de forma asesina": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "decepcionante": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "deficiente": { "pos": "a", "pol": "-0.25", "std": "0.125" }, "defraudado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "demolidor": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "depre": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "deprimido": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "desacreditado": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "desagradablemente": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "desagradecimiento": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "desanimar": { "pos": "v", "pol": "-0.687", "std": "0.0" }, "desasosegadamente": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "desasosegado": { "pos": "a", "pol": "-0.562", "std": "0.0" }, "desazón": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "descompostura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desconsuelo": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "desdeñar": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "desecho": { "pos": "n", "pol": "-0.5", "std": "0.144" }, "desesperadamente": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "desesperanzado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "desfallecimiento": { "pos": "n", "pol": "-0.5", "std": "0.177" }, "desgarrador": { "pos": "a", "pol": "-0.333", "std": "0.0" }, "deshonrado": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "desmoralizador": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "desmoralizar": { "pos": "v", "pol": "-0.375", "std": "0.217" }, "despavorido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "despecho": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "destructivo": { "pos": "a", "pol": "-0.583", "std": "0.072" }, "detestación": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "dificultoso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disforia": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "disgustoso": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "dolido": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "dolorosamente": { "pos": "r", "pol": "-0.375", "std": "0.088" }, "embarazoso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "encolerizarse": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "encono": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enfadarse": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "enfadoso": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "enfurecerse": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "enfurecido": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "enfurecimiento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "enfurruñarse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "engorroso": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "enloquecido": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "enojarse": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "enojo": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "entristecerse": { "pos": "v", "pol": "-0.708", "std": "0.072" }, "entristecido": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "espantado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "estremecedor": { "pos": "a", "pol": "-0.562", "std": "0.0" }, "exacerbar": { "pos": "v", "pol": "-0.437", "std": "0.265" }, "exasperación": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "exasperante": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "execración": { "pos": "n", "pol": "-0.417", "std": "0.051" }, "execrar": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "fastidiado": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "frenéticamente": { "pos": "r", "pol": "-0.25", "std": "0.088" }, "frustrante": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "furibundo": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "furiosamente": { "pos": "r", "pol": "-0.437", "std": "0.088" }, "grima": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hormiguilla": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "horrendo": { "pos": "a", "pol": "-0.625", "std": "0.191" }, "horrorizado": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "humillante": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "ignominioso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "impropio": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "indignado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "indignante": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "ingratitud": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "inhumanidad": { "pos": "n", "pol": "-0.333", "std": "0.144" }, "inmundo": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "inquietarse": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "insidia": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "intimidado": { "pos": "a", "pol": "-0.292", "std": "0.072" }, "iracundia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "irascibilidad": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "irritado": { "pos": "a", "pol": "-0.625", "std": "0.072" }, "lastimero": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "lóbregamente": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "lóbrego": { "pos": "a", "pol": "-0.812", "std": "0.0" }, "lúgubre": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "lúgubremente": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "macabro": { "pos": "a", "pol": "-0.75", "std": "0.088" }, "mal genio": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "mala leche": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "maleficencia": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "malevolencia": { "pos": "n", "pol": "-0.562", "std": "0.0" }, "malignidad": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "malquerencia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "maléfico": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "manto lúgubre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "misantropía": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "misantrópico": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "misoginia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "misántropo": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "misógino": { "pos": "a", "pol": "-0.687", "std": "0.177" }, "mohíno": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "molestar repetidamente": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "mortificado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "mortificante": { "pos": "a", "pol": "-0.5", "std": "0.088" }, "mortificar": { "pos": "v", "pol": "-0.562", "std": "0.063" }, "murria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mísero": { "pos": "a", "pol": "-0.25", "std": "0.188" }, "nauseoso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "oprobioso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "pataleta": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "pavoroso": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "perra": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "perturbador": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "petrificado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "picado": { "pos": "a", "pol": "-0.333", "std": "0.072" }, "pie de guerra": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "preocupado": { "pos": "a", "pol": "-0.292", "std": "0.191" }, "provocado": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "quejumbroso": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "rabieta": { "pos": "n", "pol": "-0.625", "std": "0.088" }, "rabioso": { "pos": "a", "pol": "-0.292", "std": "0.191" }, "reconcomerse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "remordimiento": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "repugnar": { "pos": "v", "pol": "-0.375", "std": "0.072" }, "repulsión": { "pos": "n", "pol": "-0.458", "std": "0.072" }, "resentido": { "pos": "a", "pol": "-0.458", "std": "0.125" }, "resignarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "retraído": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sed de venganza": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sentimiento de culpa": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "sin alegría": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sulfurado": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "terrorífico": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "transtornado": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "trastorno de ansiedad": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "turbado": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "ultrajante": { "pos": "a", "pol": "-0.5", "std": "0.354" }, "vejación": { "pos": "n", "pol": "-0.542", "std": "0.072" }, "vejar": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "verecundia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "verraquera": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "acaudalar": { "pos": "v", "pol": "1.0", "std": "0.0" }, "acogedor": { "pos": "a", "pol": "0.775", "std": "0.112" }, "afable": { "pos": "a", "pol": "1.0", "std": "0.0" }, "afortunadamente": { "pos": "r", "pol": "0.875", "std": "0.0" }, "alabar": { "pos": "v", "pol": "1.0", "std": "0.0" }, "amenidad": { "pos": "n", "pol": "1.0", "std": "0.0" }, "apreciado": { "pos": "a", "pol": "0.875", "std": "0.125" }, "armonioso": { "pos": "a", "pol": "0.792", "std": "0.144" }, "bendito": { "pos": "a", "pol": "0.792", "std": "0.191" }, "bien parecido": { "pos": "a", "pol": "0.875", "std": "0.0" }, "bonachón": { "pos": "a", "pol": "1.0", "std": "0.0" }, "buen carácter": { "pos": "n", "pol": "1.0", "std": "0.0" }, "buen estado físico": { "pos": "n", "pol": "0.875", "std": "0.0" }, "buen tipo": { "pos": "n", "pol": "0.875", "std": "0.0" }, "buena forma": { "pos": "n", "pol": "0.875", "std": "0.0" }, "buena forma física": { "pos": "n", "pol": "0.875", "std": "0.0" }, "citable": { "pos": "a", "pol": "0.813", "std": "0.265" }, "clamoroso": { "pos": "a", "pol": "1.0", "std": "0.0" }, "clavado": { "pos": "a", "pol": "0.875", "std": "0.0" }, "conmovido": { "pos": "a", "pol": "0.875", "std": "0.0" }, "cooperativo": { "pos": "a", "pol": "0.875", "std": "0.0" }, "célebre": { "pos": "a", "pol": "1.0", "std": "0.0" }, "dar aliento": { "pos": "v", "pol": "1.0", "std": "0.0" }, "deleitoso": { "pos": "a", "pol": "0.875", "std": "0.0" }, "destacable": { "pos": "a", "pol": "1.0", "std": "0.0" }, "dotado": { "pos": "a", "pol": "0.875", "std": "0.0" }, "en forma": { "pos": "a", "pol": "0.875", "std": "0.0" }, "encomiable": { "pos": "a", "pol": "1.0", "std": "0.0" }, "esplendoroso": { "pos": "a", "pol": "1.0", "std": "0.0" }, "espléndido": { "pos": "a", "pol": "0.771", "std": "0.205" }, "exculpar": { "pos": "v", "pol": "0.875", "std": "0.0" }, "famoso": { "pos": "a", "pol": "1.0", "std": "0.0" }, "favorecedor": { "pos": "a", "pol": "0.875", "std": "0.0" }, "filántropo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "finísimo": { "pos": "a", "pol": "0.875", "std": "0.0" }, "glorioso": { "pos": "a", "pol": "0.833", "std": "0.191" }, "harmonioso": { "pos": "a", "pol": "0.875", "std": "0.0" }, "hermoso": { "pos": "a", "pol": "0.792", "std": "0.172" }, "heroicidad": { "pos": "n", "pol": "1.0", "std": "0.0" }, "heroísmo": { "pos": "n", "pol": "1.0", "std": "0.0" }, "honorabilidad": { "pos": "n", "pol": "0.813", "std": "0.265" }, "honorado": { "pos": "a", "pol": "0.875", "std": "0.0" }, "idealizado": { "pos": "a", "pol": "0.875", "std": "0.0" }, "juicioso": { "pos": "a", "pol": "0.833", "std": "0.217" }, "laudable": { "pos": "a", "pol": "1.0", "std": "0.0" }, "lindo": { "pos": "a", "pol": "0.875", "std": "0.177" }, "loable": { "pos": "a", "pol": "1.0", "std": "0.0" }, "magistral": { "pos": "a", "pol": "0.813", "std": "0.265" }, "manitas": { "pos": "a", "pol": "0.875", "std": "0.0" }, "medrar": { "pos": "v", "pol": "0.813", "std": "0.265" }, "merecedor": { "pos": "a", "pol": "0.813", "std": "0.265" }, "meritorio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "modoso": { "pos": "a", "pol": "0.875", "std": "0.0" }, "modélico": { "pos": "a", "pol": "0.875", "std": "0.0" }, "notable": { "pos": "a", "pol": "0.775", "std": "0.137" }, "pacífico": { "pos": "a", "pol": "0.781", "std": "0.063" }, "perfectamente": { "pos": "r", "pol": "0.875", "std": "0.0" }, "preferente": { "pos": "a", "pol": "0.875", "std": "0.0" }, "presentable": { "pos": "a", "pol": "0.875", "std": "0.0" }, "prosperar": { "pos": "v", "pol": "0.813", "std": "0.265" }, "prosperidad": { "pos": "n", "pol": "1.0", "std": "0.0" }, "punto fuerte": { "pos": "n", "pol": "0.875", "std": "0.0" }, "querúbico": { "pos": "a", "pol": "1.0", "std": "0.0" }, "respetabilidad": { "pos": "n", "pol": "0.875", "std": "0.0" }, "respetado": { "pos": "a", "pol": "0.875", "std": "0.0" }, "respetar": { "pos": "v", "pol": "0.875", "std": "0.0" }, "rubicundo": { "pos": "a", "pol": "0.813", "std": "0.088" }, "salvamento": { "pos": "n", "pol": "1.0", "std": "0.0" }, "talentoso": { "pos": "a", "pol": "0.875", "std": "0.0" }, "ventajoso": { "pos": "a", "pol": "1.0", "std": "0.0" }, "óptimo": { "pos": "a", "pol": "1.0", "std": "0.0" }, "adinamia": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "adulterino": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "agarrado": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "aguas movedizas": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "amenazador": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "ampollar": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "angustiar": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "antiestético": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "apestoso": { "pos": "a", "pol": "-0.917", "std": "0.072" }, "asesino": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "asimetría": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "ataque de nervios": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "atrofia": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "autodestructivo": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "averno": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "calumniador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "calumnioso": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "censurable": { "pos": "a", "pol": "-0.917", "std": "0.0" }, "cerrilismo": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "ceño": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "ceño fruncido": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "cicatero": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "colapso nervioso": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "condenable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "condenatorio": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "condolencia": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "condolencias": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "contrabandista": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "crisis nerviosa": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "criticable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "de forma impersonal": { "pos": "r", "pol": "-1.0", "std": "0.0" }, "declarar culpable": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "denigrador": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "denigratorio": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "depresión nerviosa": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "desacreditador": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "desamparar": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "desaprovechamiento": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "desarmonía": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "desasistir": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "desconocer": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "descorazonar": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "desequilibrio": { "pos": "n", "pol": "-0.812", "std": "0.0" }, "desesperanzar": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "desgraciados": { "pos": "r", "pol": "-1.0", "std": "0.0" }, "deshonor": { "pos": "n", "pol": "-0.875", "std": "0.088" }, "desprestigiador": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "desventajoso": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "deteriorable": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "difamador": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "difamatorio": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "disconformidad": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "discontinuidad": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "disimulador": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "envilecimiento": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "escrofuloso": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "espurio": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "excoriación": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "expensas": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "falsario": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "faltar al respeto": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "fechoría": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "feo": { "pos": "a", "pol": "-0.833", "std": "0.144" }, "fingir": { "pos": "v", "pol": "-0.792", "std": "0.0" }, "frunción": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "fríamente": { "pos": "r", "pol": "-0.875", "std": "0.0" }, "fétido": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "fóbico": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "garrapo": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "guindar": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "hijo de ganancia": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "hijo ilegítimo": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "hipocondríaco": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "homicida": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "huraño": { "pos": "a", "pol": "-0.792", "std": "0.144" }, "idigno de": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "impasable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "impersonalmente": { "pos": "r", "pol": "-1.0", "std": "0.0" }, "inanidad": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "incompetencia": { "pos": "n", "pol": "-0.844", "std": "0.0" }, "inconstructivo": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "incriminable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "incultura": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "indigestible": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "ineficacia": { "pos": "n", "pol": "-0.812", "std": "0.0" }, "ineficiencia": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "inelasticidad": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "ineligible": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "infierno": { "pos": "n", "pol": "-0.8", "std": "0.0" }, "infranqueable": { "pos": "a", "pol": "-0.937", "std": "0.0" }, "inhabilidad": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "injurioso": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "inobservancia": { "pos": "n", "pol": "-0.812", "std": "0.0" }, "insubstancialidad": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "intransitable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "irrepresentable": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "kitsch": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lagrimar": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "lerdo": { "pos": "a", "pol": "-0.812", "std": "0.0" }, "llamada de atención": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "mal carácter": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "malhumorado": { "pos": "a", "pol": "-0.833", "std": "0.072" }, "maloliente": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "maniacodepresivo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "matar violentamente": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "matutero": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "mentiroso": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "metedor": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "no cualificado": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "noluntad": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "orco": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "padecimiento": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "parásitos": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "perturbación violenta": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "pestilente": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "pillado": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "poco amable": { "pos": "a", "pol": "-0.812", "std": "0.0" }, "poco atento": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "poco gentil": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "poco servicial": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "poner los cuernos": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "protestatario": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "protestativo": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "psicopatológico": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "psicopático": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "punto flaco": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "putada": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "putería": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "putrescible": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "pésame": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "quitar de enmedio": { "pos": "v", "pol": "-1.0", "std": "0.0" }, "ramplonería": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "rata": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "recriminable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "regañón": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "reino de las tinieblas": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "reprensible": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "reprochable": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "retraso mental": { "pos": "n", "pol": "-0.875", "std": "0.0" }, "roncería": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "sacar de quicio": { "pos": "v", "pol": "-0.812", "std": "0.0" }, "saqueado": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "ser infiel": { "pos": "v", "pol": "-0.875", "std": "0.0" }, "sin amor": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "suicida": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "tacaño": { "pos": "a", "pol": "-0.875", "std": "0.0" }, "tenebroso": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "tontamente": { "pos": "r", "pol": "-0.875", "std": "0.0" }, "torcedor": { "pos": "n", "pol": "-1.0", "std": "0.0" }, "veleidoso": { "pos": "a", "pol": "-1.0", "std": "0.0" }, "abordable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "adecuada": { "pos": "a", "pol": "0.75", "std": "0.0" }, "adoptable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "afirmativo": { "pos": "n", "pol": "0.5", "std": "0.0" }, "alcista": { "pos": "n", "pol": "0.5", "std": "0.0" }, "ameno": { "pos": "a", "pol": "0.75", "std": "0.0" }, "apegado": { "pos": "a", "pol": "0.75", "std": "0.0" }, "arrojado": { "pos": "a", "pol": "0.75", "std": "0.0" }, "beato": { "pos": "a", "pol": "0.75", "std": "0.0" }, "bendecido": { "pos": "a", "pol": "0.75", "std": "0.0" }, "beneficiarse": { "pos": "v", "pol": "0.75", "std": "0.0" }, "bien hecho": { "pos": "a", "pol": "0.75", "std": "0.0" }, "bienaventuranza": { "pos": "n", "pol": "0.75", "std": "0.0" }, "bienvenido": { "pos": "a", "pol": "0.75", "std": "0.0" }, "bizarro": { "pos": "a", "pol": "0.75", "std": "0.0" }, "buena disposición": { "pos": "n", "pol": "0.75", "std": "0.0" }, "canjeable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "carismático": { "pos": "a", "pol": "0.75", "std": "0.0" }, "chistoso": { "pos": "a", "pol": "0.75", "std": "0.125" }, "cognoscible": { "pos": "a", "pol": "0.75", "std": "0.0" }, "confidente": { "pos": "a", "pol": "0.75", "std": "0.0" }, "confirmador": { "pos": "a", "pol": "0.75", "std": "0.0" }, "confirmante": { "pos": "a", "pol": "0.75", "std": "0.0" }, "congruencia": { "pos": "n", "pol": "0.75", "std": "0.0" }, "conocible": { "pos": "a", "pol": "0.75", "std": "0.0" }, "constructivo": { "pos": "a", "pol": "0.75", "std": "0.0" }, "corroborante": { "pos": "a", "pol": "0.75", "std": "0.0" }, "curativo": { "pos": "n", "pol": "0.625", "std": "0.0" }, "dar permiso": { "pos": "v", "pol": "0.75", "std": "0.0" }, "dar ventaja": { "pos": "v", "pol": "0.75", "std": "0.0" }, "deseable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "dicha": { "pos": "n", "pol": "0.75", "std": "0.0" }, "elegible": { "pos": "a", "pol": "0.75", "std": "0.0" }, "enmendable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "entrañable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "escalable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "estandarizado": { "pos": "a", "pol": "0.75", "std": "0.0" }, "estimado": { "pos": "a", "pol": "0.75", "std": "0.25" }, "exhuberancia": { "pos": "n", "pol": "0.75", "std": "0.0" }, "exitoso": { "pos": "a", "pol": "0.75", "std": "0.0" }, "experimentado": { "pos": "a", "pol": "0.75", "std": "0.0" }, "fastuoso": { "pos": "a", "pol": "0.75", "std": "0.354" }, "fehaciente": { "pos": "a", "pol": "0.75", "std": "0.0" }, "fidedigno": { "pos": "a", "pol": "0.75", "std": "0.0" }, "fotogénico": { "pos": "a", "pol": "0.75", "std": "0.0" }, "garboso": { "pos": "a", "pol": "0.75", "std": "0.265" }, "grato": { "pos": "a", "pol": "0.75", "std": "0.143" }, "guapo": { "pos": "a", "pol": "0.75", "std": "0.088" }, "halagüeño": { "pos": "a", "pol": "0.75", "std": "0.0" }, "harmonizado": { "pos": "a", "pol": "0.75", "std": "0.0" }, "hedonístico": { "pos": "a", "pol": "0.75", "std": "0.0" }, "hedónico": { "pos": "a", "pol": "0.75", "std": "0.0" }, "honor": { "pos": "n", "pol": "0.75", "std": "0.25" }, "honorablemente": { "pos": "r", "pol": "0.75", "std": "0.0" }, "honorífico": { "pos": "a", "pol": "0.75", "std": "0.0" }, "hospitalario": { "pos": "a", "pol": "0.75", "std": "0.0" }, "idoneidad": { "pos": "n", "pol": "0.75", "std": "0.0" }, "la verdad": { "pos": "n", "pol": "0.75", "std": "0.0" }, "laudatorio": { "pos": "a", "pol": "0.75", "std": "0.0" }, "mejoría": { "pos": "n", "pol": "0.75", "std": "0.354" }, "obtener frutos": { "pos": "v", "pol": "0.75", "std": "0.0" }, "panegírico": { "pos": "n", "pol": "0.375", "std": "0.0" }, "perito": { "pos": "n", "pol": "0.375", "std": "0.0" }, "plasticidad": { "pos": "n", "pol": "0.75", "std": "0.0" }, "polifacético": { "pos": "a", "pol": "0.75", "std": "0.0" }, "pujante": { "pos": "a", "pol": "0.75", "std": "0.0" }, "realzado": { "pos": "a", "pol": "0.75", "std": "0.0" }, "reconstructor": { "pos": "a", "pol": "0.75", "std": "0.0" }, "reformable": { "pos": "a", "pol": "0.75", "std": "0.0" }, "remediador": { "pos": "a", "pol": "0.75", "std": "0.0" }, "reír": { "pos": "v", "pol": "0.75", "std": "0.0" }, "sacar provecho": { "pos": "v", "pol": "0.75", "std": "0.0" }, "sacar ventaja": { "pos": "v", "pol": "0.75", "std": "0.0" }, "saciado": { "pos": "a", "pol": "0.75", "std": "0.0" }, "salubre": { "pos": "a", "pol": "0.75", "std": "0.088" }, "sanador": { "pos": "a", "pol": "0.75", "std": "0.0" }, "sublime": { "pos": "a", "pol": "0.75", "std": "0.0" }, "valedero": { "pos": "a", "pol": "0.75", "std": "0.0" }, "verificador": { "pos": "a", "pol": "0.75", "std": "0.0" }, "veterano": { "pos": "a", "pol": "0.75", "std": "0.0" }, "virtuosillo": { "pos": "a", "pol": "0.75", "std": "0.0" }, "virtuoso": { "pos": "a", "pol": "0.75", "std": "0.0" }, "voluntariamente": { "pos": "r", "pol": "0.75", "std": "0.0" }, "a toda prisa": { "pos": "r", "pol": "-0.75", "std": "0.0" }, "a todo correr": { "pos": "r", "pol": "-0.75", "std": "0.0" }, "abúlico": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "acongojado": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "agonizar": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "agónico": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "ahuecamiento": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "algofóbico": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "amencia": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "antipatriótico": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "aparatosidad": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "asesinato público": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "ataque sorpresa": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "autoincriminación": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "autoinculpación": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "autotormento": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "autotortura": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "aventurado": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "bastedad": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "bilioso": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "burlón": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "canallada": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "canallesco": { "pos": "a", "pol": "-0.75", "std": "0.088" }, "caradura": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "carcomido": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "causar un trauma": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "ceguedad": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "ceguera": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "ceñudo": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "contumelia": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "cretino": { "pos": "a", "pol": "-0.75", "std": "0.177" }, "culpa": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "debilidad mental": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "degradarse": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "denunciable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "desafortunadamente": { "pos": "r", "pol": "-0.75", "std": "0.0" }, "desesclarecedor": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "deshonrarse": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "deshonrosamente": { "pos": "r", "pol": "-0.75", "std": "0.0" }, "despreciado": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "destructividad": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "desvancerse": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "detestado": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "dispéptico": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "echar una reprimenda": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "encontrón": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "encuentro violento": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "engravecer": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "envanecimiento": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "espúreo": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "esquizofrénico": { "pos": "a", "pol": "-0.25", "std": "0.125" }, "falta de amabilidad": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "fraudulento": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "fruncir el entrecejo": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "gafe": { "pos": "n", "pol": "0.375", "std": "0.0" }, "golpiza": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "hedor": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "hipocondría": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "hosco": { "pos": "a", "pol": "-0.75", "std": "0.125" }, "idiota": { "pos": "a", "pol": "-0.75", "std": "0.12" }, "imperfectamente": { "pos": "r", "pol": "-0.75", "std": "0.0" }, "impetuoso": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "impopularidad": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "imprevisión": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "imprevisor": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "impropicio": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "inamovible": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "incombinable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "inconsolable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "indigerible": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "indigno": { "pos": "a", "pol": "-0.75", "std": "0.125" }, "ineficiente": { "pos": "a", "pol": "-0.75", "std": "0.088" }, "inexpiable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "inextricable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "infligir": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "inflingir": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "ingrato": { "pos": "a", "pol": "-0.75", "std": "0.125" }, "inhospitalidad": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "insolvencia": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "insultante": { "pos": "a", "pol": "-0.75", "std": "0.177" }, "invidencia": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "irreversible": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "linchar": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "lividez": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "luto": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "magnicidio": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "malparir": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "mefítico": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "misofóbico": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "nido de arañas": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "no autorizado": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "no cognoscible": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "no edificante": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "odiado": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "paroxismo": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "pasividad": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "pestazo": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "pleito": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "poco acogedor": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "poco creativa": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "poco creativo": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "poco favorable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "poco fiable": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "poco pacífico": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "poner verde": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "profanado": { "pos": "a", "pol": "-0.75", "std": "0.088" }, "pérdida auditiva": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "qué lástima": { "pos": "r", "pol": "-0.75", "std": "0.0" }, "regañar": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "reprender a gritos": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "satanofobia": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "sin tratamiento": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "sin tratar": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "sordera": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "sucedáneo": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "sufrir un colapso nervioso": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "sufrir una crisis nerviosa": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "tener unas palabras": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "testaduro": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "tirón de orejas": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "tramposo": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "traumatizar": { "pos": "v", "pol": "-0.75", "std": "0.0" }, "tufillo": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "tufo": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "vermiculado": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "verminoso": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "xenófobo": { "pos": "a", "pol": "-0.75", "std": "0.0" }, "ñoño": { "pos": "n", "pol": "-0.75", "std": "0.0" }, "abundante": { "pos": "a", "pol": "0.589", "std": "0.094" }, "accesible": { "pos": "a", "pol": "0.607", "std": "0.125" }, "aceptabilidad": { "pos": "n", "pol": "0.688", "std": "0.088" }, "aceptable": { "pos": "a", "pol": "0.688", "std": "0.112" }, "acomodado": { "pos": "a", "pol": "0.563", "std": "0.088" }, "acompasado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "aconsejable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "acreditado": { "pos": "a", "pol": "0.667", "std": "0.315" }, "adecuado": { "pos": "a", "pol": "0.656", "std": "0.149" }, "administrable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "admirabilidad": { "pos": "n", "pol": "0.625", "std": "0.0" }, "admirablemente": { "pos": "r", "pol": "0.625", "std": "0.0" }, "admisible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "adornado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "afabilidad": { "pos": "n", "pol": "0.583", "std": "0.26" }, "afectuosamente": { "pos": "r", "pol": "0.625", "std": "0.0" }, "agrado": { "pos": "n", "pol": "0.625", "std": "0.442" }, "alimenticio": { "pos": "a", "pol": "0.625", "std": "0.0" }, "amabilidad": { "pos": "n", "pol": "0.547", "std": "0.265" }, "angelical": { "pos": "a", "pol": "0.583", "std": "0.545" }, "anglofilia": { "pos": "n", "pol": "0.625", "std": "0.0" }, "antihelmíntico": { "pos": "a", "pol": "0.625", "std": "0.0" }, "antimicrobiano": { "pos": "a", "pol": "0.625", "std": "0.0" }, "apaciguable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "aplaudir": { "pos": "v", "pol": "0.625", "std": "0.177" }, "apropiado": { "pos": "a", "pol": "0.656", "std": "0.112" }, "aptitud": { "pos": "n", "pol": "0.542", "std": "0.144" }, "apto": { "pos": "a", "pol": "0.557", "std": "0.247" }, "apuesto": { "pos": "a", "pol": "0.688", "std": "0.265" }, "asíduo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "atractividad": { "pos": "n", "pol": "0.625", "std": "0.0" }, "atrayente": { "pos": "a", "pol": "0.583", "std": "0.19" }, "autodidacta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "autoimpuesto": { "pos": "a", "pol": "0.625", "std": "0.0" }, "auxiliar": { "pos": "a", "pol": "0.542", "std": "0.217" }, "axénico": { "pos": "a", "pol": "0.625", "std": "0.0" }, "bellaco": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bello": { "pos": "a", "pol": "0.708", "std": "0.217" }, "bienaventurado": { "pos": "a", "pol": "0.625", "std": "0.354" }, "brillantez": { "pos": "n", "pol": "0.594", "std": "0.4" }, "bruñido": { "pos": "n", "pol": "0.25", "std": "0.0" }, "buena persona": { "pos": "n", "pol": "0.625", "std": "0.0" }, "buena salud": { "pos": "n", "pol": "0.625", "std": "0.0" }, "caballero": { "pos": "a", "pol": "0.625", "std": "0.0" }, "caballeroso": { "pos": "a", "pol": "0.625", "std": "0.088" }, "cachondo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "calidad superior": { "pos": "n", "pol": "0.625", "std": "0.0" }, "campeón": { "pos": "a", "pol": "0.625", "std": "0.0" }, "capaz": { "pos": "a", "pol": "0.634", "std": "0.258" }, "carácter agradable": { "pos": "n", "pol": "0.625", "std": "0.0" }, "casto": { "pos": "a", "pol": "0.563", "std": "0.0" }, "catártico": { "pos": "a", "pol": "0.688", "std": "0.177" }, "cauteloso": { "pos": "a", "pol": "0.521", "std": "0.094" }, "cauto": { "pos": "a", "pol": "0.531", "std": "0.102" }, "celebrado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "certificativo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "certificatorio": { "pos": "a", "pol": "0.625", "std": "0.0" }, "chachi": { "pos": "a", "pol": "0.688", "std": "0.442" }, "chic": { "pos": "a", "pol": "0.625", "std": "0.0" }, "chusco": { "pos": "a", "pol": "0.625", "std": "0.0" }, "circunspecto": { "pos": "a", "pol": "0.625", "std": "0.0" }, "comedido": { "pos": "a", "pol": "0.563", "std": "0.177" }, "comestible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "compatible": { "pos": "a", "pol": "0.531", "std": "0.188" }, "con admiracion": { "pos": "r", "pol": "0.625", "std": "0.0" }, "con tratamiento": { "pos": "a", "pol": "0.625", "std": "0.0" }, "conceptivo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "conciliación": { "pos": "n", "pol": "0.708", "std": "0.072" }, "conciliado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "confortable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "congraciador": { "pos": "a", "pol": "0.563", "std": "0.088" }, "congruente": { "pos": "a", "pol": "0.625", "std": "0.315" }, "consagrado": { "pos": "a", "pol": "0.688", "std": "0.125" }, "consensuado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "controlable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "convalidar": { "pos": "v", "pol": "0.625", "std": "0.0" }, "conveniente": { "pos": "a", "pol": "0.659", "std": "0.129" }, "copioso": { "pos": "a", "pol": "0.583", "std": "0.072" }, "cordial": { "pos": "a", "pol": "0.646", "std": "0.171" }, "cordura": { "pos": "n", "pol": "0.625", "std": "0.0" }, "correctivo": { "pos": "a", "pol": "0.563", "std": "0.0" }, "corregible": { "pos": "a", "pol": "0.625", "std": "0.12" }, "creatividad": { "pos": "n", "pol": "0.625", "std": "0.0" }, "creativo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "cualificado": { "pos": "a", "pol": "0.667", "std": "0.26" }, "culto": { "pos": "a", "pol": "0.525", "std": "0.056" }, "cumplir lo prometido": { "pos": "v", "pol": "0.625", "std": "0.0" }, "curativa": { "pos": "n", "pol": "0.625", "std": "0.0" }, "célibe": { "pos": "a", "pol": "0.625", "std": "0.0" }, "de confianza": { "pos": "a", "pol": "0.625", "std": "0.0" }, "decencia": { "pos": "n", "pol": "0.542", "std": "0.26" }, "decible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "decorado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "decoro": { "pos": "n", "pol": "0.625", "std": "0.217" }, "decoroso": { "pos": "a", "pol": "0.708", "std": "0.125" }, "deducible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "deferente": { "pos": "a", "pol": "0.625", "std": "0.0" }, "demostrativo": { "pos": "a", "pol": "0.625", "std": "0.177" }, "describible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "descriptible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "desenganchado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "desenterrado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "destreza": { "pos": "n", "pol": "0.525", "std": "0.271" }, "detallado": { "pos": "a", "pol": "0.563", "std": "0.088" }, "detenido": { "pos": "n", "pol": "0.25", "std": "0.0" }, "digno": { "pos": "a", "pol": "0.667", "std": "0.194" }, "disociar": { "pos": "v", "pol": "0.625", "std": "0.0" }, "dispuesto": { "pos": "a", "pol": "0.563", "std": "0.088" }, "distinguido": { "pos": "a", "pol": "0.55", "std": "0.125" }, "divertidísimo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "docto": { "pos": "a", "pol": "0.563", "std": "0.088" }, "domesticable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "edificante": { "pos": "a", "pol": "0.625", "std": "0.0" }, "educable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "educado": { "pos": "a", "pol": "0.609", "std": "0.149" }, "educativo": { "pos": "a", "pol": "0.563", "std": "0.088" }, "efectividad": { "pos": "n", "pol": "0.563", "std": "0.088" }, "eficaz": { "pos": "a", "pol": "0.583", "std": "0.0" }, "eficiencia": { "pos": "n", "pol": "0.625", "std": "0.0" }, "elástico": { "pos": "a", "pol": "0.6", "std": "0.224" }, "embelesado": { "pos": "a", "pol": "0.563", "std": "0.088" }, "enardecedor": { "pos": "a", "pol": "0.563", "std": "0.177" }, "enciclopédico": { "pos": "a", "pol": "0.625", "std": "0.0" }, "entregado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "entretenido": { "pos": "a", "pol": "0.667", "std": "0.072" }, "entretenimiento": { "pos": "n", "pol": "0.531", "std": "0.237" }, "equitativo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "erudito": { "pos": "a", "pol": "0.542", "std": "0.072" }, "especializado": { "pos": "a", "pol": "0.708", "std": "0.191" }, "especificable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "espíritu bueno": { "pos": "n", "pol": "0.625", "std": "0.0" }, "estimable": { "pos": "a", "pol": "0.563", "std": "0.53" }, "eudemónico": { "pos": "a", "pol": "0.625", "std": "0.0" }, "exacto": { "pos": "a", "pol": "0.625", "std": "0.234" }, "expansivo": { "pos": "a", "pol": "0.6", "std": "0.137" }, "explicable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "explícit": { "pos": "a", "pol": "0.625", "std": "0.0" }, "expresable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "factible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "fecundo": { "pos": "a", "pol": "0.563", "std": "0.0" }, "fenomenal": { "pos": "a", "pol": "0.563", "std": "0.493" }, "fiel": { "pos": "a", "pol": "0.7", "std": "0.156" }, "flamante": { "pos": "a", "pol": "0.625", "std": "0.442" }, "fogosidad": { "pos": "n", "pol": "0.563", "std": "0.088" }, "formalizado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "formativo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "formidable": { "pos": "a", "pol": "0.542", "std": "0.331" }, "fortalecido": { "pos": "a", "pol": "0.625", "std": "0.0" }, "frutal": { "pos": "a", "pol": "0.625", "std": "0.0" }, "fulgor": { "pos": "n", "pol": "0.625", "std": "0.0" }, "fértil": { "pos": "a", "pol": "0.563", "std": "0.063" }, "galante": { "pos": "a", "pol": "0.625", "std": "0.0" }, "galantear": { "pos": "v", "pol": "0.625", "std": "0.0" }, "gallardo": { "pos": "a", "pol": "0.688", "std": "0.239" }, "ganador": { "pos": "a", "pol": "0.625", "std": "0.0" }, "generosa": { "pos": "a", "pol": "0.625", "std": "0.0" }, "generosamente": { "pos": "r", "pol": "0.625", "std": "0.0" }, "genial": { "pos": "a", "pol": "0.661", "std": "0.361" }, "guay": { "pos": "a", "pol": "0.542", "std": "0.361" }, "habilitante": { "pos": "a", "pol": "0.625", "std": "0.0" }, "habitable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "halagador": { "pos": "a", "pol": "0.688", "std": "0.088" }, "harmonizable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "harmónico": { "pos": "a", "pol": "0.625", "std": "0.177" }, "helmíntico": { "pos": "a", "pol": "0.625", "std": "0.0" }, "hospitalidad": { "pos": "n", "pol": "0.563", "std": "0.088" }, "identificable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "idílico": { "pos": "a", "pol": "0.688", "std": "0.0" }, "igualado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "iluminarse": { "pos": "v", "pol": "0.625", "std": "0.0" }, "ilustrado": { "pos": "a", "pol": "0.542", "std": "0.072" }, "ilustre": { "pos": "a", "pol": "0.708", "std": "0.125" }, "imaginativo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "imponente": { "pos": "a", "pol": "0.667", "std": "0.072" }, "incontaminado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "indicado": { "pos": "a", "pol": "0.679", "std": "0.139" }, "inferible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "informado": { "pos": "a", "pol": "0.594", "std": "0.12" }, "ingenioso": { "pos": "a", "pol": "0.531", "std": "0.063" }, "instruido": { "pos": "a", "pol": "0.542", "std": "0.072" }, "intelectual": { "pos": "a", "pol": "0.594", "std": "0.277" }, "inteligente": { "pos": "a", "pol": "0.604", "std": "0.146" }, "interesante": { "pos": "a", "pol": "0.563", "std": "0.088" }, "interesarse": { "pos": "v", "pol": "0.563", "std": "0.442" }, "interpretable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "inventivo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "invicto": { "pos": "a", "pol": "0.625", "std": "0.088" }, "iterativo": { "pos": "a", "pol": "0.563", "std": "0.088" }, "juguetón": { "pos": "a", "pol": "0.563", "std": "0.0" }, "justificable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "ladino": { "pos": "a", "pol": "0.625", "std": "0.0" }, "leal": { "pos": "a", "pol": "0.7", "std": "0.137" }, "letrado": { "pos": "a", "pol": "0.563", "std": "0.088" }, "lisonjero": { "pos": "a", "pol": "0.688", "std": "0.088" }, "lógico": { "pos": "a", "pol": "0.625", "std": "0.177" }, "majestuoso": { "pos": "a", "pol": "0.719", "std": "0.306" }, "manejable": { "pos": "a", "pol": "0.625", "std": "0.125" }, "maravilloso": { "pos": "a", "pol": "0.719", "std": "0.298" }, "medicinal": { "pos": "a", "pol": "0.625", "std": "0.177" }, "mejor": { "pos": "n", "pol": "0.375", "std": "0.0" }, "merecido": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mesurado": { "pos": "a", "pol": "0.542", "std": "0.072" }, "miramiento": { "pos": "n", "pol": "0.688", "std": "0.088" }, "mitigable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "moralizador": { "pos": "a", "pol": "0.625", "std": "0.0" }, "máximo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "no alarmante": { "pos": "a", "pol": "0.625", "std": "0.0" }, "noble": { "pos": "a", "pol": "0.542", "std": "0.303" }, "nutritivo": { "pos": "a", "pol": "0.688", "std": "0.088" }, "obediente": { "pos": "a", "pol": "0.542", "std": "0.125" }, "observable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "observancia": { "pos": "n", "pol": "0.625", "std": "0.0" }, "ocurrente": { "pos": "a", "pol": "0.625", "std": "0.0" }, "operable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "oportuno": { "pos": "a", "pol": "0.542", "std": "0.171" }, "opulento": { "pos": "a", "pol": "0.625", "std": "0.0" }, "parasiticida": { "pos": "a", "pol": "0.625", "std": "0.0" }, "pasable": { "pos": "a", "pol": "0.542", "std": "0.25" }, "patente": { "pos": "a", "pol": "0.542", "std": "0.125" }, "pausado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "perfectibilidad": { "pos": "n", "pol": "0.625", "std": "0.0" }, "perfecto": { "pos": "a", "pol": "0.625", "std": "0.143" }, "perseverante": { "pos": "a", "pol": "0.563", "std": "0.088" }, "pertinente": { "pos": "a", "pol": "0.563", "std": "0.177" }, "pinchable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "plenario": { "pos": "a", "pol": "0.625", "std": "0.0" }, "pletórico": { "pos": "a", "pol": "0.625", "std": "0.0" }, "popularidad": { "pos": "n", "pol": "0.625", "std": "0.0" }, "practicable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "precaución": { "pos": "n", "pol": "0.583", "std": "0.072" }, "precioso": { "pos": "a", "pol": "0.675", "std": "0.163" }, "preciso": { "pos": "a", "pol": "0.641", "std": "0.133" }, "precocinado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "preferible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "preparado": { "pos": "a", "pol": "0.531", "std": "0.125" }, "preponderante": { "pos": "a", "pol": "0.625", "std": "0.0" }, "presciente": { "pos": "a", "pol": "0.625", "std": "0.0" }, "preservable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "prestigioso": { "pos": "a", "pol": "0.688", "std": "0.177" }, "previsor": { "pos": "a", "pol": "0.542", "std": "0.072" }, "privilegiado": { "pos": "a", "pol": "0.688", "std": "0.265" }, "probado": { "pos": "a", "pol": "0.542", "std": "0.072" }, "procedencia": { "pos": "n", "pol": "0.688", "std": "0.354" }, "productivo": { "pos": "a", "pol": "0.521", "std": "0.094" }, "productor": { "pos": "a", "pol": "0.625", "std": "0.0" }, "profiláctico": { "pos": "a", "pol": "0.542", "std": "0.0" }, "progresar": { "pos": "v", "pol": "0.688", "std": "0.354" }, "prolífero": { "pos": "a", "pol": "0.563", "std": "0.088" }, "prolífico": { "pos": "a", "pol": "0.563", "std": "0.088" }, "promover": { "pos": "v", "pol": "0.583", "std": "0.505" }, "propiciador": { "pos": "a", "pol": "0.625", "std": "0.0" }, "propicio": { "pos": "a", "pol": "0.563", "std": "0.213" }, "proteccionista": { "pos": "a", "pol": "0.625", "std": "0.0" }, "prudente": { "pos": "a", "pol": "0.578", "std": "0.16" }, "práctico": { "pos": "a", "pol": "0.521", "std": "0.171" }, "próspero": { "pos": "a", "pol": "0.7", "std": "0.137" }, "purificado": { "pos": "a", "pol": "0.563", "std": "0.088" }, "querido": { "pos": "a", "pol": "0.625", "std": "0.191" }, "racional": { "pos": "a", "pol": "0.604", "std": "0.131" }, "razonable": { "pos": "a", "pol": "0.625", "std": "0.237" }, "reciclable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "reconciliador": { "pos": "a", "pol": "0.625", "std": "0.0" }, "reconstituyente": { "pos": "a", "pol": "0.563", "std": "0.177" }, "recuperativo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "rehabilitador": { "pos": "a", "pol": "0.688", "std": "0.088" }, "reiterativo": { "pos": "a", "pol": "0.563", "std": "0.088" }, "remedio": { "pos": "n", "pol": "0.625", "std": "0.0" }, "remirado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "rentable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "repetible": { "pos": "a", "pol": "0.625", "std": "0.0" }, "respetuoso": { "pos": "a", "pol": "0.625", "std": "0.125" }, "retozón": { "pos": "a", "pol": "0.625", "std": "0.0" }, "retribuido": { "pos": "a", "pol": "0.625", "std": "0.0" }, "reverendo": { "pos": "a", "pol": "0.625", "std": "0.0" }, "reverente": { "pos": "a", "pol": "0.688", "std": "0.177" }, "revivificar": { "pos": "v", "pol": "0.688", "std": "0.442" }, "sabio": { "pos": "a", "pol": "0.625", "std": "0.237" }, "sagaz": { "pos": "a", "pol": "0.534", "std": "0.097" }, "salir adelante": { "pos": "v", "pol": "0.625", "std": "0.0" }, "salvador": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "santificado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "santo": { "pos": "n", "pol": "0.25", "std": "0.125" }, "selecto": { "pos": "a", "pol": "0.6", "std": "0.088" }, "semiconductor": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sensato": { "pos": "a", "pol": "0.571", "std": "0.247" }, "sentido": { "pos": "a", "pol": "0.625", "std": "0.0" }, "seriocómico": { "pos": "a", "pol": "0.625", "std": "0.0" }, "servible": { "pos": "a", "pol": "0.542", "std": "0.125" }, "servir para": { "pos": "v", "pol": "0.625", "std": "0.0" }, "sexi": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sibarítico": { "pos": "a", "pol": "0.625", "std": "0.0" }, "significante": { "pos": "a", "pol": "0.542", "std": "0.191" }, "significativo": { "pos": "a", "pol": "0.542", "std": "0.072" }, "simplificado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sin enterrar": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sincero": { "pos": "a", "pol": "0.7", "std": "0.185" }, "sobreabundante": { "pos": "a", "pol": "0.625", "std": "0.0" }, "socarrón": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sociable": { "pos": "a", "pol": "0.542", "std": "0.171" }, "soportador": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sostenible": { "pos": "a", "pol": "0.563", "std": "0.177" }, "suficiente": { "pos": "a", "pol": "0.563", "std": "0.088" }, "superabundante": { "pos": "a", "pol": "0.625", "std": "0.0" }, "sustancioso": { "pos": "a", "pol": "0.542", "std": "0.125" }, "súper": { "pos": "a", "pol": "0.688", "std": "0.442" }, "tener éxito": { "pos": "v", "pol": "0.625", "std": "0.0" }, "terapéutico": { "pos": "a", "pol": "0.313", "std": "0.53" }, "testeado": { "pos": "a", "pol": "0.625", "std": "0.0" }, "tibio": { "pos": "a", "pol": "0.625", "std": "0.0" }, "tolerable": { "pos": "a", "pol": "0.625", "std": "0.0" }, "torneado": { "pos": "a", "pol": "0.688", "std": "0.088" }, "tratable": { "pos": "a", "pol": "0.521", "std": "0.166" }, "triumfar": { "pos": "v", "pol": "0.625", "std": "0.0" }, "valioso": { "pos": "a", "pol": "0.688", "std": "0.177" }, "vencedor": { "pos": "a", "pol": "0.625", "std": "0.0" }, "venerado": { "pos": "a", "pol": "0.563", "std": "0.0" }, "veraz": { "pos": "a", "pol": "0.563", "std": "0.177" }, "viable": { "pos": "a", "pol": "0.563", "std": "0.088" }, "victoria": { "pos": "n", "pol": "0.625", "std": "0.0" }, "vitalizante": { "pos": "a", "pol": "0.625", "std": "0.0" }, "vivificante": { "pos": "a", "pol": "0.625", "std": "0.0" }, "vocálico": { "pos": "a", "pol": "0.625", "std": "0.0" }, "voluptuoso": { "pos": "a", "pol": "0.583", "std": "0.125" }, "ético": { "pos": "a", "pol": "0.625", "std": "0.0" }, "abetalipoproteinemia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "acetoso": { "pos": "a", "pol": "-0.562", "std": "0.088" }, "acriminación": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "adulterar": { "pos": "v", "pol": "-0.562", "std": "0.088" }, "afanar": { "pos": "v", "pol": "-0.687", "std": "0.0" }, "agobiar": { "pos": "v", "pol": "-0.594", "std": "0.125" }, "agobio": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "agonía": { "pos": "n", "pol": "-0.625", "std": "0.068" }, "agorero": { "pos": "a", "pol": "-0.687", "std": "0.177" }, "agridulce": { "pos": "a", "pol": "-0.562", "std": "0.265" }, "altercado": { "pos": "n", "pol": "-0.531", "std": "0.063" }, "amnésico": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "amortecerse": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "anglofobia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "angustia mental": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "apechar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "apretura": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "aprieto": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "arisco": { "pos": "a", "pol": "-0.675", "std": "0.137" }, "arrizar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "arruinarse": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "asesinar": { "pos": "v", "pol": "-0.625", "std": "0.112" }, "asesinato": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "asolador": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "atezado": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "atonía": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "atrofiarse": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "aturdimento": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "avinagrado": { "pos": "a", "pol": "-0.562", "std": "0.088" }, "bastardo": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "basto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "befar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "birlar": { "pos": "v", "pol": "-0.542", "std": "0.0" }, "bloqueo del escritor": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "brete": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "bufar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "camorrero": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "cansancio": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "carente": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "cargarse": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "cascarrabias": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "castigar": { "pos": "v", "pol": "-0.562", "std": "0.125" }, "censurador": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "chabacanería": { "pos": "n", "pol": "-0.562", "std": "0.177" }, "chacoteo": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "chafarrinón": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "chaquetero": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "choquear": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "citación a comparecencia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "combatir": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "comparendo": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "condena por asesinato": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "conflicto": { "pos": "n", "pol": "-0.625", "std": "0.056" }, "contrasentido": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "contratar esquiroles": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "correría": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "corrupto": { "pos": "a", "pol": "-0.542", "std": "0.144" }, "crisis de identidad": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "dar un chasco": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "dar un portazo": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "dañoso": { "pos": "a", "pol": "-0.531", "std": "0.161" }, "defecto": { "pos": "n", "pol": "-0.667", "std": "0.065" }, "deficiencia": { "pos": "n", "pol": "-0.575", "std": "0.068" }, "delito": { "pos": "n", "pol": "-0.687", "std": "0.088" }, "desaconsejado": { "pos": "a", "pol": "-0.562", "std": "0.088" }, "desagradecido": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "desasimiento": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "desasistido": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "desautorizar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "descalificado": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "descaramiento": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "descortesía": { "pos": "n", "pol": "-0.521", "std": "0.123" }, "descortés": { "pos": "a", "pol": "-0.525", "std": "0.163" }, "desenmadejar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "desfavorable": { "pos": "a", "pol": "-0.594", "std": "0.161" }, "deshonra": { "pos": "n", "pol": "-0.719", "std": "0.072" }, "deshonrar": { "pos": "v", "pol": "-0.708", "std": "0.072" }, "desigualmente": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "deslucimiento": { "pos": "n", "pol": "-0.562", "std": "0.177" }, "desobedecer": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "desproporcionado": { "pos": "a", "pol": "-0.667", "std": "0.072" }, "destructor": { "pos": "a", "pol": "-0.687", "std": "0.0" }, "destruirse": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "desértico": { "pos": "a", "pol": "-0.562", "std": "0.265" }, "detrimento": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "discordia": { "pos": "n", "pol": "-0.542", "std": "0.072" }, "dismenorrea": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "disturbar": { "pos": "v", "pol": "-0.687", "std": "0.0" }, "divisivo": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "doler": { "pos": "v", "pol": "-0.525", "std": "0.168" }, "dramón": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "elegía": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "embabucar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "embaucar": { "pos": "v", "pol": "-0.594", "std": "0.0" }, "embaír": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "emboscada": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "en situación crítica": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "en un aprieto": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "encandilar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "encargarse de": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "endiablado": { "pos": "a", "pol": "-0.625", "std": "0.265" }, "engañosamente": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "engreimiento": { "pos": "n", "pol": "-0.562", "std": "0.177" }, "enterrado": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "epilepsia generalizada": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "equilibrar riesgos": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "eritrodermia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "escapatoria": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "escocedura": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "escozor": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "estar enfermo": { "pos": "v", "pol": "-0.687", "std": "0.0" }, "estar indispuesto": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "estrago": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "estática": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "faccioso": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "falazmente": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "falsificar": { "pos": "v", "pol": "-0.521", "std": "0.065" }, "falta de entendimiento": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "farfolla": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "filfa": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "fin del mundo": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "fracasar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "fullería": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "fusilar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "galbana": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "garabatos": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "garrapato": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "gilipollas": { "pos": "n", "pol": "-0.583", "std": "0.065" }, "gris carbón": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "grosero": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "grosería": { "pos": "n", "pol": "-0.589", "std": "0.067" }, "haber borrasca": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "haber ráfaga": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "haber temporal": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "hacer bromas": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "hambruna": { "pos": "n", "pol": "-0.562", "std": "0.0" }, "hediondez": { "pos": "n", "pol": "-0.542", "std": "0.0" }, "hijo de puta": { "pos": "n", "pol": "-0.625", "std": "0.072" }, "hijoputa": { "pos": "n", "pol": "-0.625", "std": "0.072" }, "hipognato": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "hipotiroidismo": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "holgazanería": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "hortera": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "hosquedad": { "pos": "n", "pol": "-0.562", "std": "0.177" }, "hurtar": { "pos": "v", "pol": "-0.687", "std": "0.0" }, "ido": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "ignorancia": { "pos": "n", "pol": "-0.562", "std": "0.063" }, "ignorante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ilógico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "imaginado": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "imaginario": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "impensable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "imperdonable": { "pos": "a", "pol": "-0.562", "std": "0.088" }, "implacable": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "imprecación": { "pos": "n", "pol": "-0.625", "std": "0.088" }, "improperio": { "pos": "n", "pol": "-0.542", "std": "0.072" }, "impropiedad": { "pos": "n", "pol": "-0.625", "std": "0.12" }, "impás": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "inadmisible": { "pos": "a", "pol": "-0.625", "std": "0.217" }, "inanimado": { "pos": "a", "pol": "-0.687", "std": "0.063" }, "inapetente": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "inapetitoso": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "incognoscible": { "pos": "a", "pol": "-0.625", "std": "0.177" }, "incomprensión": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "increpación": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "increpar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "incriminación": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "inculpación": { "pos": "n", "pol": "-0.562", "std": "0.0" }, "indecencia": { "pos": "n", "pol": "-0.583", "std": "0.072" }, "indecoroso": { "pos": "a", "pol": "-0.583", "std": "0.072" }, "indigesto": { "pos": "a", "pol": "-0.687", "std": "0.0" }, "inexpugnable": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "infernal": { "pos": "a", "pol": "-0.525", "std": "0.125" }, "infundir miedo": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "infundir temor": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "inhabilitado": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "inmerecido": { "pos": "a", "pol": "-0.7", "std": "0.153" }, "inmutabilidad": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "insensitividad": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "irreconocible": { "pos": "a", "pol": "-0.687", "std": "0.088" }, "irrecuperable": { "pos": "a", "pol": "-0.625", "std": "0.177" }, "irreducible": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "irse de": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "jugar una broma": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "lanzar improperios contra": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "lasitud": { "pos": "n", "pol": "-0.531", "std": "0.072" }, "llorar": { "pos": "v", "pol": "-0.667", "std": "0.0" }, "lluvia radioactiva": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "lordosis": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "mal": { "pos": "n", "pol": "-0.375", "std": "0.157" }, "maldición": { "pos": "n", "pol": "-0.562", "std": "0.094" }, "mandinga": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "medida cautelar": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "melodramático": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mentir": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "mestizar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "mácula": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "nada halagador": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "no elástico": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "obscuridad": { "pos": "n", "pol": "-0.625", "std": "0.125" }, "odinofagia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "oscurecerse": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "osteofito": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "padecer": { "pos": "v", "pol": "-0.562", "std": "0.088" }, "pajarota": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "palabra malsonante": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "palabrota": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "paranoico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "paraplejia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "paraplejía": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "paraplégico": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "peleador": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "peligroso": { "pos": "a", "pol": "-0.667", "std": "0.144" }, "penalizar": { "pos": "v", "pol": "-0.542", "std": "0.0" }, "pendenciero": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "perdida": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "perdularia": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "peso muerto": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "picaresca": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "pitada": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "poco apetitoso": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "poco elástico": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "poco erudito": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "poco escrupulosamente": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "poco halagador": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "poco ilustrado": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "poco receptivo": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "precariedad": { "pos": "n", "pol": "-0.562", "std": "0.063" }, "presagio negativo": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "principiante": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "problema de salud": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "prognato": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "prohibidor": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "provincianismo": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "pusilanimidad": { "pos": "n", "pol": "-0.625", "std": "0.088" }, "quejido": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "rachear": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "rebato": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "recalcitrar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "rechiflar": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "recular": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "regañina": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "regaño": { "pos": "n", "pol": "-0.562", "std": "0.088" }, "reniego": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "reprochar": { "pos": "v", "pol": "-0.667", "std": "0.072" }, "reproche": { "pos": "n", "pol": "-0.583", "std": "0.072" }, "resentirse": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "resignacion": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "rosario raquítico": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "roñoso": { "pos": "a", "pol": "-0.719", "std": "0.125" }, "rudo": { "pos": "a", "pol": "-0.575", "std": "0.153" }, "ruin": { "pos": "a", "pol": "-0.542", "std": "0.191" }, "rácano": { "pos": "a", "pol": "-0.708", "std": "0.144" }, "saltarse": { "pos": "v", "pol": "-0.583", "std": "0.072" }, "saprófito": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "silbas": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "sin éxito": { "pos": "r", "pol": "-0.625", "std": "0.0" }, "siniestro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "socorrer": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "soez": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "subdesarrollo": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "sueldo de hambre": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "sufrimiento": { "pos": "n", "pol": "-0.578", "std": "0.093" }, "sufrir una regresión": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "tipo raro": { "pos": "n", "pol": "-0.531", "std": "0.063" }, "tiranicidio": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "tirarse un farol": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "tomar prestado": { "pos": "v", "pol": "-0.625", "std": "0.0" }, "tosquedad": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "traicionar": { "pos": "v", "pol": "-0.687", "std": "0.063" }, "trastorno maníaco": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "trastornos biliares": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "tísico": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "vaya": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "vituperación": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "volteado": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "volubilidad": { "pos": "n", "pol": "-0.625", "std": "0.0" }, "voluble": { "pos": "a", "pol": "-0.562", "std": "0.265" }, "yerto": { "pos": "a", "pol": "-0.625", "std": "0.0" }, "zafiedad": { "pos": "n", "pol": "-0.667", "std": "0.144" }, "zafio": { "pos": "a", "pol": "-0.625", "std": "0.088" }, "a buena fé": { "pos": "r", "pol": "0.5", "std": "0.0" }, "absorto": { "pos": "a", "pol": "0.5", "std": "0.088" }, "abundoso": { "pos": "a", "pol": "0.5", "std": "0.0" }, "acaudalado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "acelerado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "aceptador": { "pos": "a", "pol": "0.5", "std": "0.0" }, "acicalado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "aclamación": { "pos": "n", "pol": "0.5", "std": "0.0" }, "acomodaticio": { "pos": "a", "pol": "0.5", "std": "0.265" }, "aconsejado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "actualizado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "adaptado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "adecuación": { "pos": "n", "pol": "0.5", "std": "0.144" }, "adinerado": { "pos": "n", "pol": "0.375", "std": "0.0" }, "admisibilidad": { "pos": "n", "pol": "0.5", "std": "0.177" }, "admisivo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "adorable": { "pos": "a", "pol": "0.5", "std": "0.144" }, "adorado": { "pos": "a", "pol": "0.5", "std": "0.088" }, "adrenocorticotrópico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ahorrador": { "pos": "a", "pol": "0.5", "std": "0.072" }, "ahorrativo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "airosidad": { "pos": "n", "pol": "0.5", "std": "0.177" }, "ajustable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "al día": { "pos": "a", "pol": "0.5", "std": "0.0" }, "alabanza": { "pos": "n", "pol": "0.5", "std": "0.0" }, "alabar con exceso": { "pos": "v", "pol": "0.5", "std": "0.0" }, "aligerar": { "pos": "v", "pol": "0.5", "std": "0.707" }, "allegro con spirito": { "pos": "n", "pol": "0.5", "std": "0.0" }, "alquilable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "altilocuente": { "pos": "a", "pol": "0.5", "std": "0.0" }, "amado": { "pos": "a", "pol": "0.5", "std": "0.088" }, "amalgamado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ambidiestro": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ameliorar": { "pos": "v", "pol": "0.5", "std": "0.0" }, "amentífero": { "pos": "a", "pol": "0.5", "std": "0.0" }, "amovible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "anacorítico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "antimonopolio": { "pos": "a", "pol": "0.5", "std": "0.0" }, "antiséptico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "apaciguador": { "pos": "a", "pol": "0.5", "std": "0.0" }, "apareado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "apasionante": { "pos": "a", "pol": "0.5", "std": "0.072" }, "aplanético": { "pos": "a", "pol": "0.5", "std": "0.0" }, "aplicable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "aplicado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "apodíctico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "apoyado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "aprendido": { "pos": "a", "pol": "0.5", "std": "0.0" }, "arable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ascendible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "asociable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "aséptico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "autosuficiente": { "pos": "a", "pol": "0.5", "std": "0.0" }, "averiguable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "aviejarse": { "pos": "v", "pol": "0.5", "std": "0.0" }, "avivado": { "pos": "a", "pol": "0.5", "std": "0.265" }, "azul marino": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bastante": { "pos": "a", "pol": "0.5", "std": "0.0" }, "beatificado": { "pos": "a", "pol": "0.5", "std": "0.088" }, "beatífico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "bebido": { "pos": "a", "pol": "0.5", "std": "0.0" }, "bien definidos": { "pos": "a", "pol": "0.5", "std": "0.0" }, "bien educado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "bienintencionado": { "pos": "a", "pol": "0.5", "std": "0.144" }, "bordeado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "bromista": { "pos": "a", "pol": "0.5", "std": "0.0" }, "buen gusto": { "pos": "n", "pol": "0.5", "std": "0.0" }, "buen tiempo": { "pos": "n", "pol": "0.5", "std": "0.0" }, "buenas condiciones": { "pos": "n", "pol": "0.5", "std": "0.0" }, "cadencioso": { "pos": "a", "pol": "0.5", "std": "0.0" }, "cadente": { "pos": "a", "pol": "0.5", "std": "0.0" }, "cantable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "característico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "caritativo": { "pos": "a", "pol": "0.5", "std": "0.265" }, "casadero": { "pos": "a", "pol": "0.5", "std": "0.0" }, "centralizador": { "pos": "a", "pol": "0.5", "std": "0.0" }, "civilidad": { "pos": "n", "pol": "0.5", "std": "0.177" }, "colmado": { "pos": "a", "pol": "0.5", "std": "0.177" }, "combustible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "comedia": { "pos": "n", "pol": "0.5", "std": "0.0" }, "compatiblemente": { "pos": "r", "pol": "0.5", "std": "0.0" }, "comprimible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "comprobable": { "pos": "a", "pol": "0.5", "std": "0.088" }, "concienciable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "conciliador": { "pos": "a", "pol": "0.5", "std": "0.177" }, "condicionado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "conductivo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "conductor": { "pos": "a", "pol": "0.5", "std": "0.0" }, "conformar": { "pos": "v", "pol": "0.5", "std": "0.0" }, "consentimiento tácito": { "pos": "n", "pol": "0.5", "std": "0.0" }, "constitucional": { "pos": "a", "pol": "0.5", "std": "0.0" }, "constructividad": { "pos": "n", "pol": "0.5", "std": "0.0" }, "consumado": { "pos": "a", "pol": "0.5", "std": "0.246" }, "consumar": { "pos": "v", "pol": "0.5", "std": "0.0" }, "contestable": { "pos": "a", "pol": "0.5", "std": "0.177" }, "copetudo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "correctitud": { "pos": "n", "pol": "0.5", "std": "0.0" }, "cuaderno de escritura": { "pos": "n", "pol": "0.5", "std": "0.0" }, "cultivable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "curable": { "pos": "a", "pol": "0.5", "std": "0.088" }, "cursi": { "pos": "a", "pol": "0.5", "std": "0.0" }, "dadivoso": { "pos": "a", "pol": "0.5", "std": "0.0" }, "dar el éxito": { "pos": "v", "pol": "0.5", "std": "0.0" }, "de la estación": { "pos": "r", "pol": "0.5", "std": "0.0" }, "definible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "delectable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "desafectado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "desambiguedad": { "pos": "n", "pol": "0.5", "std": "0.0" }, "descansado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "desconfiadamente": { "pos": "r", "pol": "0.5", "std": "0.0" }, "descubrible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "desegregación": { "pos": "n", "pol": "0.5", "std": "0.0" }, "desencantar": { "pos": "v", "pol": "0.5", "std": "0.354" }, "desgravable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "desinflación": { "pos": "n", "pol": "0.5", "std": "0.0" }, "desmontable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "despavilado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "despejado": { "pos": "a", "pol": "0.5", "std": "0.063" }, "determinable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "diagnosticable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "digestibilidad": { "pos": "n", "pol": "0.5", "std": "0.0" }, "digestible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "discernible": { "pos": "a", "pol": "0.5", "std": "0.088" }, "disciplinal": { "pos": "a", "pol": "0.5", "std": "0.0" }, "diserto": { "pos": "a", "pol": "0.5", "std": "0.0" }, "disputable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "distinguible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "dorado": { "pos": "a", "pol": "0.5", "std": "0.289" }, "dúctil": { "pos": "a", "pol": "0.5", "std": "0.157" }, "ecléctico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "elocuente": { "pos": "a", "pol": "0.5", "std": "0.0" }, "emancipador": { "pos": "a", "pol": "0.5", "std": "0.0" }, "embergadura": { "pos": "n", "pol": "0.5", "std": "0.0" }, "embriagador": { "pos": "a", "pol": "0.5", "std": "0.0" }, "emocionante": { "pos": "a", "pol": "0.5", "std": "0.063" }, "emplumado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "empático": { "pos": "a", "pol": "0.5", "std": "0.0" }, "en términos morales": { "pos": "r", "pol": "0.5", "std": "0.0" }, "encadenado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "energizante": { "pos": "a", "pol": "0.5", "std": "0.0" }, "energético": { "pos": "a", "pol": "0.5", "std": "0.0" }, "enfundado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "enjoyado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ennoblecedor": { "pos": "a", "pol": "0.5", "std": "0.0" }, "envainado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "envejecerse": { "pos": "v", "pol": "0.5", "std": "0.0" }, "epicúreo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "epigramático": { "pos": "a", "pol": "0.5", "std": "0.0" }, "equilibrio mental": { "pos": "n", "pol": "0.5", "std": "0.0" }, "eremitíco": { "pos": "a", "pol": "0.5", "std": "0.0" }, "escogido": { "pos": "n", "pol": "0.375", "std": "0.0" }, "esmaltado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "espaldarazo": { "pos": "n", "pol": "0.5", "std": "0.0" }, "espavilado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "especialización": { "pos": "n", "pol": "0.5", "std": "0.375" }, "espiritualidad": { "pos": "n", "pol": "0.5", "std": "0.0" }, "estabilidad": { "pos": "n", "pol": "0.5", "std": "0.088" }, "estabilizador": { "pos": "a", "pol": "0.5", "std": "0.0" }, "estudioso": { "pos": "a", "pol": "0.5", "std": "0.072" }, "estético": { "pos": "a", "pol": "0.5", "std": "0.52" }, "eufonía": { "pos": "n", "pol": "0.5", "std": "0.0" }, "eufónico": { "pos": "a", "pol": "0.5", "std": "0.144" }, "eugenesia": { "pos": "n", "pol": "0.5", "std": "0.0" }, "eugenismo": { "pos": "n", "pol": "0.5", "std": "0.0" }, "evidencial": { "pos": "a", "pol": "0.5", "std": "0.0" }, "evitable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "exhaustivo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "exhausto": { "pos": "a", "pol": "0.5", "std": "0.0" }, "exhortatorio": { "pos": "a", "pol": "0.5", "std": "0.0" }, "exotérico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "expeditivo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "explicitación": { "pos": "n", "pol": "0.5", "std": "0.0" }, "explicitud": { "pos": "n", "pol": "0.5", "std": "0.0" }, "extensísimo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "extenuado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "fama": { "pos": "n", "pol": "0.5", "std": "0.0" }, "fascinado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "fascinador": { "pos": "a", "pol": "0.5", "std": "0.0" }, "fatigado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "fertilidad": { "pos": "n", "pol": "0.5", "std": "0.26" }, "festejo": { "pos": "n", "pol": "0.5", "std": "0.191" }, "fiducial": { "pos": "a", "pol": "0.5", "std": "0.354" }, "filmable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "fisionable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "flexionado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "focalizado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "forrado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "fortalecedor": { "pos": "a", "pol": "0.5", "std": "0.0" }, "galanteo": { "pos": "n", "pol": "0.5", "std": "0.265" }, "ganancioso": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ganarse el cariño": { "pos": "v", "pol": "0.5", "std": "0.0" }, "gazmoño": { "pos": "n", "pol": "0.25", "std": "0.0" }, "germinal": { "pos": "a", "pol": "0.5", "std": "0.0" }, "gozo": { "pos": "n", "pol": "0.5", "std": "0.289" }, "graciosidad": { "pos": "n", "pol": "0.5", "std": "0.177" }, "grandiosidad": { "pos": "n", "pol": "0.5", "std": "0.402" }, "hacer atractivo": { "pos": "v", "pol": "0.5", "std": "0.0" }, "hacer atrayente": { "pos": "v", "pol": "0.5", "std": "0.0" }, "halagar": { "pos": "v", "pol": "0.5", "std": "0.125" }, "higiénico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "hipertónico": { "pos": "a", "pol": "0.313", "std": "0.088" }, "hipnotizado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "histriónico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "homeopatía": { "pos": "n", "pol": "0.5", "std": "0.0" }, "honores": { "pos": "n", "pol": "0.5", "std": "0.0" }, "immaculado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "impresionable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "impudente": { "pos": "a", "pol": "0.5", "std": "0.0" }, "incambiable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "incitante": { "pos": "a", "pol": "0.5", "std": "0.0" }, "inclusivo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "incorrupción": { "pos": "n", "pol": "0.5", "std": "0.0" }, "indisimulado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "influenciable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "innovador": { "pos": "a", "pol": "0.5", "std": "0.237" }, "insolvente": { "pos": "a", "pol": "0.5", "std": "0.0" }, "intachable": { "pos": "a", "pol": "0.5", "std": "0.144" }, "intencional": { "pos": "a", "pol": "0.5", "std": "0.0" }, "invalorable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "jocoso": { "pos": "a", "pol": "0.5", "std": "0.191" }, "juego de salón": { "pos": "n", "pol": "0.5", "std": "0.0" }, "justiciable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "labrantío": { "pos": "a", "pol": "0.5", "std": "0.0" }, "laureado": { "pos": "a", "pol": "0.5", "std": "0.442" }, "laurear": { "pos": "v", "pol": "0.5", "std": "0.265" }, "laureles": { "pos": "n", "pol": "0.5", "std": "0.0" }, "lavorable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "legalidad": { "pos": "n", "pol": "0.5", "std": "0.0" }, "leído": { "pos": "a", "pol": "0.5", "std": "0.0" }, "liberador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "limitador": { "pos": "a", "pol": "0.5", "std": "0.0" }, "liricidad": { "pos": "n", "pol": "0.5", "std": "0.0" }, "loar": { "pos": "v", "pol": "0.5", "std": "0.0" }, "lustroso": { "pos": "a", "pol": "0.5", "std": "0.072" }, "macro": { "pos": "a", "pol": "0.5", "std": "0.0" }, "madurado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "magnánime": { "pos": "a", "pol": "0.5", "std": "0.0" }, "maniatado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "maniobrable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "marinería": { "pos": "n", "pol": "0.5", "std": "0.0" }, "medicamentoso": { "pos": "a", "pol": "0.5", "std": "0.0" }, "meditado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "melodioso": { "pos": "a", "pol": "0.5", "std": "0.161" }, "mezclable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "miopía": { "pos": "n", "pol": "0.5", "std": "0.0" }, "miramento": { "pos": "n", "pol": "0.5", "std": "0.0" }, "mismísimo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "modernizado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "mojigato": { "pos": "n", "pol": "0.375", "std": "0.0" }, "moldeable": { "pos": "a", "pol": "0.5", "std": "0.088" }, "moralmente": { "pos": "r", "pol": "0.5", "std": "0.0" }, "nato": { "pos": "a", "pol": "0.5", "std": "0.0" }, "neutralizado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "novel": { "pos": "a", "pol": "0.5", "std": "0.0" }, "nutrido": { "pos": "a", "pol": "0.5", "std": "0.0" }, "náutica": { "pos": "n", "pol": "0.5", "std": "0.0" }, "núbil": { "pos": "a", "pol": "0.5", "std": "0.0" }, "obligación simple": { "pos": "n", "pol": "0.5", "std": "0.0" }, "obligación sin garantía": { "pos": "n", "pol": "0.5", "std": "0.0" }, "ocurrencia oportuna": { "pos": "n", "pol": "0.5", "std": "0.0" }, "orientarse": { "pos": "v", "pol": "0.5", "std": "0.0" }, "ortotropo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ovacionar": { "pos": "v", "pol": "0.5", "std": "0.0" }, "paciente interno": { "pos": "n", "pol": "0.5", "std": "0.0" }, "panorámico": { "pos": "a", "pol": "0.5", "std": "0.354" }, "papel de regalo": { "pos": "n", "pol": "0.5", "std": "0.0" }, "participativo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "patricio": { "pos": "a", "pol": "0.5", "std": "0.0" }, "patriótico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "payaso": { "pos": "a", "pol": "0.5", "std": "0.0" }, "perfeccionado": { "pos": "a", "pol": "0.5", "std": "0.331" }, "permisividad": { "pos": "n", "pol": "0.5", "std": "0.0" }, "permutable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "persuasión": { "pos": "n", "pol": "0.5", "std": "0.0" }, "petulante": { "pos": "a", "pol": "0.5", "std": "0.0" }, "piadoso": { "pos": "a", "pol": "0.5", "std": "0.265" }, "pintoresco": { "pos": "a", "pol": "0.5", "std": "0.26" }, "plegable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "poner a salvo": { "pos": "v", "pol": "0.5", "std": "0.0" }, "ponerse bien": { "pos": "v", "pol": "0.5", "std": "0.0" }, "pormenorizado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "pornográfico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "precavido": { "pos": "a", "pol": "0.5", "std": "0.088" }, "preciosura": { "pos": "n", "pol": "0.5", "std": "0.0" }, "preeminente": { "pos": "a", "pol": "0.5", "std": "0.088" }, "premiar": { "pos": "v", "pol": "0.5", "std": "0.265" }, "preservado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "prevención": { "pos": "n", "pol": "0.5", "std": "0.217" }, "profundizable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "profuso": { "pos": "a", "pol": "0.5", "std": "0.0" }, "programa de rehabilitación": { "pos": "n", "pol": "0.5", "std": "0.0" }, "prometido": { "pos": "a", "pol": "0.5", "std": "0.0" }, "propiciación": { "pos": "n", "pol": "0.5", "std": "0.298" }, "propiciatoriedad": { "pos": "n", "pol": "0.5", "std": "0.0" }, "protagonismo": { "pos": "n", "pol": "0.5", "std": "0.0" }, "prudencial": { "pos": "a", "pol": "0.5", "std": "0.0" }, "pudiente": { "pos": "a", "pol": "0.5", "std": "0.0" }, "puntería": { "pos": "n", "pol": "0.5", "std": "0.0" }, "pío": { "pos": "a", "pol": "0.5", "std": "0.265" }, "racionalidad": { "pos": "n", "pol": "0.5", "std": "0.27" }, "rastrero": { "pos": "a", "pol": "0.5", "std": "0.0" }, "ratificar": { "pos": "v", "pol": "0.5", "std": "0.0" }, "realizable": { "pos": "a", "pol": "0.5", "std": "0.072" }, "reanimado": { "pos": "a", "pol": "0.5", "std": "0.088" }, "recepción cordial": { "pos": "n", "pol": "0.5", "std": "0.0" }, "recepción favorable": { "pos": "n", "pol": "0.5", "std": "0.0" }, "recio": { "pos": "a", "pol": "0.5", "std": "0.0" }, "reconciliable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rectificable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rectitud": { "pos": "n", "pol": "0.5", "std": "0.354" }, "recubierto": { "pos": "a", "pol": "0.5", "std": "0.0" }, "recuperable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "refinar": { "pos": "v", "pol": "0.5", "std": "0.375" }, "reflectante": { "pos": "a", "pol": "0.5", "std": "0.088" }, "reformatorio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "refrendada": { "pos": "v", "pol": "0.5", "std": "0.0" }, "refrescante": { "pos": "a", "pol": "0.5", "std": "0.0" }, "regente": { "pos": "a", "pol": "0.5", "std": "0.0" }, "regulable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rendido": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rentabilidad": { "pos": "n", "pol": "0.5", "std": "0.0" }, "reparable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "replegable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "reponerse": { "pos": "v", "pol": "0.5", "std": "0.0" }, "representable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "representante": { "pos": "a", "pol": "0.5", "std": "0.0" }, "resoluble": { "pos": "a", "pol": "0.5", "std": "0.0" }, "respaldado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "respingón": { "pos": "a", "pol": "0.5", "std": "0.0" }, "resplandeciente": { "pos": "a", "pol": "0.5", "std": "0.289" }, "retenido": { "pos": "a", "pol": "0.5", "std": "0.0" }, "revalidar": { "pos": "v", "pol": "0.5", "std": "0.0" }, "revelador": { "pos": "a", "pol": "0.5", "std": "0.0" }, "revitalizado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rosáceo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "rumboso": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sacrosanto": { "pos": "a", "pol": "0.5", "std": "0.0" }, "salud mental": { "pos": "n", "pol": "0.5", "std": "0.0" }, "savoir-faire": { "pos": "n", "pol": "0.5", "std": "0.0" }, "seleccionado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "selectivo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "semiprecioso": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sentido común": { "pos": "n", "pol": "0.5", "std": "0.0" }, "seráfico": { "pos": "a", "pol": "0.5", "std": "0.619" }, "sexuado": { "pos": "a", "pol": "0.5", "std": "0.177" }, "sinvergüenza": { "pos": "n", "pol": "-0.333", "std": "0.094" }, "solvencia": { "pos": "n", "pol": "0.5", "std": "0.0" }, "solvente": { "pos": "a", "pol": "0.5", "std": "0.177" }, "sublimado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "subsanable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "subsistir": { "pos": "v", "pol": "0.5", "std": "0.0" }, "suertero": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sujetable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sumergible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sumo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "super": { "pos": "r", "pol": "0.25", "std": "0.0" }, "superno": { "pos": "a", "pol": "0.5", "std": "0.0" }, "sustancialidad": { "pos": "n", "pol": "0.5", "std": "0.0" }, "sómatico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "tapizado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "taraceado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "tasable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "templado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tentador": { "pos": "a", "pol": "0.5", "std": "0.063" }, "tonicidad": { "pos": "n", "pol": "0.5", "std": "0.0" }, "tonificado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "transitivo": { "pos": "a", "pol": "0.5", "std": "0.0" }, "transplantable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "transportable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "trasmisible": { "pos": "a", "pol": "0.5", "std": "0.0" }, "trasplantable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "trata": { "pos": "v", "pol": "0.5", "std": "0.0" }, "turístico": { "pos": "a", "pol": "0.5", "std": "0.0" }, "técnico": { "pos": "n", "pol": "0.292", "std": "0.191" }, "unánime": { "pos": "a", "pol": "0.5", "std": "0.0" }, "usabilidad": { "pos": "n", "pol": "0.5", "std": "0.0" }, "usual": { "pos": "a", "pol": "0.5", "std": "0.0" }, "utilitarismo": { "pos": "n", "pol": "0.5", "std": "0.0" }, "validado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "valorable": { "pos": "a", "pol": "0.5", "std": "0.0" }, "varonil": { "pos": "a", "pol": "0.5", "std": "0.0" }, "vendido": { "pos": "a", "pol": "0.5", "std": "0.0" }, "venerable": { "pos": "a", "pol": "0.5", "std": "0.265" }, "verificado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "verismo": { "pos": "n", "pol": "0.5", "std": "0.0" }, "vigorizado": { "pos": "a", "pol": "0.5", "std": "0.0" }, "voto de confianza": { "pos": "n", "pol": "0.5", "std": "0.0" }, "válido": { "pos": "a", "pol": "0.5", "std": "0.12" }, "zurdo": { "pos": "a", "pol": "0.25", "std": "0.354" }, "ablandabrevas": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "abombar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "abordabilidad": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "abroncar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "aburrir": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "abusión": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "acalorar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "aciago": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "acidez de estómago": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "acoquinado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "acracia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "acusación falsa": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "adiposo": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "adustez": { "pos": "n", "pol": "-0.5", "std": "0.177" }, "agentes": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "agranulocítico": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "alarmismo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "albuminuria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "algómetro": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "alopécico": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "aminorado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "amnesia retrógrada": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "analfabetismo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "anarquía": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "anatematizar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "anestesia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "anginal": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "anginoso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "angustioso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "aniquilación": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "aniquilamiento": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "anodino": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anquilosis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "antagonizar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "ante-mortem": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "apelante": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "apocalipsis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ardentía": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ardor de estómago": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ardores": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "arrasamiento": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "arremeter contra": { "pos": "v", "pol": "-0.5", "std": "0.088" }, "arruinamiento": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "arteria cerebelosa inferior": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "artralgia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "asaltante": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "asesinato mafioso": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "asolar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "astrafobia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "astuta": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "astuto": { "pos": "a", "pol": "0.268", "std": "0.225" }, "atacante": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "ataque repentino": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "aterrador": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "atolladero": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "atormentarse": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "atrasarse": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "aventar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "avitaminosis B1": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ay": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "azarosamente": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "aztreonam": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "añadir una imperfección": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "baja de personal": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "baldado": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "batracomiomaquia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "befa": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bellacamente": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "berenjenal": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "beriberi": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bibos": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "biserrado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "blanquito": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bluff": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bombardeo aéreo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bragas": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "brazal de luto": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "broncoespasmo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "bronquítico": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "caballo rojo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cabezudo": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "cabezón": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "cacofonía": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cacofónico": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "cadaverina": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "caer de plano": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "cafre": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cagarla": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "cagón": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "calambrazo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "calambre": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "calumnia": { "pos": "n", "pol": "-0.5", "std": "0.063" }, "canotier": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "canotié": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "canto fúnebre": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cantonero": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cariadura": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "casa de locos": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "castigable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "cataclísmico": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "catastrofismo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "chapuza": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "charro": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cheposo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "chiquilicuatro": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "chirriante": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "chismosa": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "chucho": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cita errónea": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cizañar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "cleptómano": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cnidiosporidios": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "colchoneta": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cominero": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "comisar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "complicar": { "pos": "v", "pol": "-0.5", "std": "0.177" }, "comprometedor": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "con escepticismo": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "condenar de antemano": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "condolerse": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "confrontar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "conmoción cerebral": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "consolable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "contrabandear": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "contrahacimiento": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "contrahecho": { "pos": "a", "pol": "0.25", "std": "0.0" }, "corcovado": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cosa indispensable": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "crepuscular": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "criminalmente": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "criticón": { "pos": "a", "pol": "-0.5", "std": "0.354" }, "crueldad asesina": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cruz papal": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cruz patriarcal": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cruz pontificia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cruzarse de brazos": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "crédulo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "cubil": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "curco": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "curioseo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "de forma indecorosa": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "de reojo": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "decoloración": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "deletereo": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "demandante en casación": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "demente": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "deprecación": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "derecho penal": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "desabrido": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "desanimadamente": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "desapacible": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "desaprensión": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "desatención": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "descariñado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "descolorido": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "desdeñable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "desenmarañado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "deseo de muerte": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "desequilibrio emocional": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "desfavorecer": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "desgraciadamente": { "pos": "r", "pol": "-0.5", "std": "0.177" }, "deshonestamente": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "deshonesto": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "desinclinado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "desmejorar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "desmesura": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "desorientamiento": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "desprotección": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "desproveído": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "destructibilidad": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "dificultad": { "pos": "n", "pol": "-0.5", "std": "0.117" }, "disimulación": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "disonancia": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "disparejo": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "disuria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "dolor agudo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "dura crítica": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "elegiaco": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "embastecido": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "embravecido": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "empalidecer": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "empeorarse": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "en demasía": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "en la inconsciencia": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "en modo profano": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "encame": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "endecha": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "enemigo mortal": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "enemistar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "enervado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "enfermedad de la sangre": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "enfrentamiento": { "pos": "n", "pol": "-0.5", "std": "0.063" }, "enfrentar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "ennegrecer": { "pos": "v", "pol": "-0.5", "std": "0.072" }, "ennegrecerse": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "enrarecido": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "entorpecer": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "entrometida": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "entumecido": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "envilecido": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "eritema": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "escarcharse": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "escarnecedor": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "esclerosis múltiple": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "esguince": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "esmerarse": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "espasmo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "espasmo muscular": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "especiosidad": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "espermicida": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "espondilitis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "esporádico": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "estado incompleto": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "estar pendiente": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "estereotipado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "estranguladores": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "estremecido": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "estresante": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "estribación": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "estúpidamente": { "pos": "r", "pol": "-0.5", "std": "0.088" }, "evasivo": { "pos": "a", "pol": "-0.292", "std": "0.191" }, "exasperado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "excesivamente": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "excrecencia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "exponer al peligro": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "extremado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "extremista": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "faisandé": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "fake": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "falsear": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "falta": { "pos": "n", "pol": "-0.5", "std": "0.068" }, "falta de respeto": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "falta de sabor": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "faltar a clases": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "familia Ixodidae": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fanafarronada": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fantaseador": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fatalidad": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fatídico": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "ferocidad": { "pos": "n", "pol": "-0.5", "std": "0.072" }, "feúcho": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "fiebre blackwater": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fiebre hemoglobinúrica": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fiereza": { "pos": "n", "pol": "-0.5", "std": "0.125" }, "fingimiento": { "pos": "n", "pol": "-0.5", "std": "0.12" }, "fisgoneo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fosilizado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "fragilidad": { "pos": "n", "pol": "-0.5", "std": "0.144" }, "fragor": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fuerzas del orden": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "fuerzas del orden público": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gangrenoso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "gemfibrozil": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "genus bibos": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "genus sivapithecus": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "giboso": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ginofobia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "glosalgia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "glosodinia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gorigori": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "grado de reacción": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "graffiti": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "granítico": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "graso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "graznidos": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "guanaco": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "guasón": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "guerrillero": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "gustillo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "género Branta": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hacer novillos": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "hacer pedazos": { "pos": "v", "pol": "-0.5", "std": "0.088" }, "hacer peligrar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "hacer pucheros": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "hampa": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hastiar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "hediondo": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "hemopatía": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hemosiderosis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hepatomegalia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "heterodoxo": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "heterogeneidad": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hiperadrenocorticalismo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hipoglucemia": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "histeria de angustia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "histeria de conversión": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "histérico": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "huelga de celo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "husmeo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "hórrido": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "iconoclasia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "iconoclasía": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ignorado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "impiedad": { "pos": "n", "pol": "-0.5", "std": "0.177" }, "impolítico": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "imposible de oponérsele": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "impropiamente": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "impunidad": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inanición": { "pos": "n", "pol": "-0.5", "std": "0.072" }, "inaplicabilidad": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inatención": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inceremonioso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inclumplir": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "incompatiblemente": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "inconcebible": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inconstitucional": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inconveniente": { "pos": "n", "pol": "-0.375", "std": "0.191" }, "incriminatorio": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inculpatorio": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "indecoro": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "indefensión": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "indestructibilidad": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "indignidad": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "inelegancia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inelegantemente": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "inescrupuloso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inexcusablemente": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "inexperiencia": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "inexplicable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inexplicación": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "infección respiratoria inferior": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "inframaxilar": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "ininteligente": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "injustificadamente": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "inmolar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "innavegable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "inoperable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "insalvable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "insalvables": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "insatisfacible": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "insensibilizado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "insincero": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "insoportable": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insostenible": { "pos": "a", "pol": "-0.5", "std": "0.191" }, "instinto de muerte": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "insulsez": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "insulto": { "pos": "n", "pol": "-0.5", "std": "0.177" }, "insustancialidad": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "intimidante": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "investigación judicial": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "invidente": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "irrespetuoso": { "pos": "a", "pol": "-0.5", "std": "0.217" }, "ixódidos": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "jeremiada": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "jorobado": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "lado bueno": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "lado positivo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "lamentablemente": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "lamentación": { "pos": "n", "pol": "-0.5", "std": "0.068" }, "lamentado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "laringofaringe": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "lenguaje soez": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "licopeno": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "lisiado": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "litera de abajo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "liza": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "llevar duelo": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "llorado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "llorón": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "loquera": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "majara": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "majareta": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mala fe": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mala jugada": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "maletudo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "malintencionado": { "pos": "a", "pol": "-0.5", "std": "0.217" }, "malograrse": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "mandibular": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "mangar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "manida": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mantenerse fresco": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "manzana podrida": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "marcha sindical": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "martirio": { "pos": "n", "pol": "-0.5", "std": "0.068" }, "mastalgia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "matar a tiros": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "maximalista": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "megalomaníaco": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mequetrefe": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "metralgia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "microsporidios": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "misofobia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mitigado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "mixosporidios": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mofador": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "monstruosidad": { "pos": "n", "pol": "-0.5", "std": "0.072" }, "muela del juicio": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "multable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "mundo del crimen": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "muslo de pavo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "mutilado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "muyahid": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "narcosis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "narcotismo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "necedad": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "nefando": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "negro-azulado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "nictalopía": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ninfómana": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "no comprometido": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "no demostrado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "no excitable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "no pagar": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "no reconocido": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "no resbaladizo": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "no resbaloso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "no saludable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "no susceptible": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "no tradicional": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "novato": { "pos": "a", "pol": "-0.5", "std": "0.088" }, "nubarrón": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "nubes de guerra": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "obseso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "odiosidad": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ofenderse": { "pos": "v", "pol": "-0.5", "std": "0.088" }, "oftalmia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "oftalmía": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "orden de ejecución": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ordinariez": { "pos": "n", "pol": "-0.5", "std": "0.125" }, "oscurecido": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "osteoporosis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pajarraca": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pajarraco": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "palidecer": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "paludismo hemolítico": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pandear": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "parafilia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "paralogismo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "parquedad": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "parte inferior": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "patetismo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "patéticamente": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "patético": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "pejiguero": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "pelafustán": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pena capital": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pena de muerte": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "penitenciario": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "pequeño burgués": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "perecedero": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "perplejo": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "perro mestizo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "perrucho": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "picotada": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "picotazo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pifiado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "piloto de combate": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "piquetazo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "piromanía": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pirosis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "plomizo": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "poco cariñoso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "poco dispuesto": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "poco estimulante": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "poco excitable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "poco excitante": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "poco femenino": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "poco naturalmente": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "poco ortodoxo": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "poco saludable": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "poco simpatizante": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "poco solidario": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "poeta elegíaco": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "poltergeist": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ponerse tenso": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "por accidente": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "por ahora": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "por azar": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "posse comitatus": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "prevaricación": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "prodrómico": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "producción insuficiente": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "profanidad": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "profesor agregado": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pronóstico médico": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "proteinuria": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "provisionalmente": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "psicopatología": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "punch": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "punible": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "punitivo": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "punto débil": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "puñetazo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "puñete": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "puñetero": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "pájara": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pérdida del autocontrol": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "pícara": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "quebradero": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "quebradero de cabeza": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "queja constante": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "quejica": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "quejicoso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "quejosamente": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "quejumbre": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "quemadura de segundo grado": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "queratalgia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "querencia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "quijotesco": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "rarito": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "rascada": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "rascadura": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "rasposo": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "reclamar legalmente": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "recurrente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "redoble": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "reducción de precios": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "refocilo": { "pos": "n", "pol": "-0.5", "std": "0.265" }, "regodeo": { "pos": "n", "pol": "-0.5", "std": "0.265" }, "reino monera": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "rencoroso": { "pos": "a", "pol": "-0.5", "std": "0.125" }, "repelón": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "replegarse": { "pos": "v", "pol": "-0.5", "std": "0.177" }, "reprensión": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "requiescat": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "resabio": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "retraïdo": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "rookie": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "ropa de luto": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "rucio": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "rusticidad": { "pos": "n", "pol": "-0.5", "std": "0.177" }, "rutinario": { "pos": "a", "pol": "-0.5", "std": "0.265" }, "sabotaje": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "salobre": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "saturnino": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "scratch": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sin comprobar": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sin demostrar": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sin evidencia": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sin pruebas": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sin sentido": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "sobreexcitación": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sobresalto": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sociopático": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sofisma": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "sofocador": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sordera de transmisión": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sordo": { "pos": "a", "pol": "-0.3", "std": "0.088" }, "speakeasy": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "stogie": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "stogy": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "subalimentado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "subproducción": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "subyugado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "sueño eterno": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "suicidarse": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "superstición": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "síndrome de Cushing": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "sínfisis": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "taberna clandestina": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "tanatofobia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "teatro de revista": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "teniente de policía": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "terracota": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "terrorismo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "thuggee": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "tono áspero": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "tormenta": { "pos": "n", "pol": "-0.5", "std": "0.072" }, "torpedear": { "pos": "v", "pol": "-0.5", "std": "0.0" }, "toxicidad": { "pos": "n", "pol": "-0.5", "std": "0.088" }, "trabajo sucio": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "traducción incorrecta": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "trastornado": { "pos": "a", "pol": "-0.5", "std": "0.191" }, "trastorno de personalidad": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "trastorno metabólico": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "trato inhumano": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "traumático": { "pos": "a", "pol": "-0.5", "std": "0.177" }, "treno": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "tribunal superior": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "trifulca": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "tristemente": { "pos": "r", "pol": "-0.5", "std": "0.191" }, "tullido": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "tunco": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "turbador": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "tórtola": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "urodinia": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "vacunado": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vamos": { "pos": "r", "pol": "-0.5", "std": "0.0" }, "vena sigmoide": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "vencido": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "vermut dulce": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "vermú dulce": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "vermú negro": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "viciado": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "vieja bruja": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "vieja fea": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "viejuja": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "viento": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "vil": { "pos": "a", "pol": "-0.446", "std": "0.144" }, "vileza": { "pos": "n", "pol": "-0.5", "std": "0.144" }, "vituperioso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "vociferación": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "voluntariedad": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "voluntarismo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "volátil": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "víctima mortal": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "zambombo": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "zarrapastroso": { "pos": "a", "pol": "-0.5", "std": "0.0" }, "zona peligrosa": { "pos": "n", "pol": "-0.5", "std": "0.0" }, "abad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "abadesa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "abanderar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "abandonarse a algo": { "pos": "v", "pol": "0.375", "std": "0.0" }, "abatible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "abdicable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "abilidad": { "pos": "n", "pol": "0.313", "std": "0.088" }, "ablandado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "abonado": { "pos": "n", "pol": "0.375", "std": "0.0" }, "abonamiento": { "pos": "n", "pol": "0.375", "std": "0.0" }, "abotonar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "absorbible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "abstemio": { "pos": "a", "pol": "0.375", "std": "0.0" }, "absuelto": { "pos": "a", "pol": "0.375", "std": "0.0" }, "acallamiento": { "pos": "n", "pol": "0.375", "std": "0.0" }, "acatar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "accesibilidad": { "pos": "n", "pol": "0.417", "std": "0.191" }, "aceitunado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "achispado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "acierto": { "pos": "n", "pol": "0.375", "std": "0.354" }, "acomodación": { "pos": "n", "pol": "0.292", "std": "0.144" }, "acomodar": { "pos": "v", "pol": "0.469", "std": "0.157" }, "acompañante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "acoplado": { "pos": "a", "pol": "0.375", "std": "0.088" }, "acorazado": { "pos": "a", "pol": "0.313", "std": "0.0" }, "acorazonado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "acordado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "acordarse": { "pos": "v", "pol": "0.438", "std": "0.0" }, "acostumbrado": { "pos": "a", "pol": "0.333", "std": "0.072" }, "acristalado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "activado": { "pos": "a", "pol": "0.292", "std": "0.125" }, "actividad extracurricular": { "pos": "n", "pol": "0.375", "std": "0.0" }, "activista": { "pos": "a", "pol": "0.375", "std": "0.0" }, "activo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "activo de garantía": { "pos": "n", "pol": "0.375", "std": "0.0" }, "actuado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "acuerdo escrito": { "pos": "n", "pol": "0.375", "std": "0.0" }, "acullá": { "pos": "r", "pol": "0.375", "std": "0.0" }, "acumulativo": { "pos": "a", "pol": "0.375", "std": "0.088" }, "acústicamente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "adaptabilidad": { "pos": "n", "pol": "0.313", "std": "0.265" }, "adaptable": { "pos": "a", "pol": "0.313", "std": "0.088" }, "adaptar": { "pos": "v", "pol": "0.3", "std": "0.301" }, "adecuar": { "pos": "v", "pol": "0.281", "std": "0.188" }, "aderezar": { "pos": "v", "pol": "0.313", "std": "0.088" }, "adherente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "adiestrado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "adiestrar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "adoxografía": { "pos": "n", "pol": "0.375", "std": "0.0" }, "adquirible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "adulto": { "pos": "a", "pol": "0.375", "std": "0.088" }, "aerobio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aerotransportado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "afeminado": { "pos": "a", "pol": "0.313", "std": "0.0" }, "aficionarse": { "pos": "v", "pol": "0.375", "std": "0.0" }, "afilado": { "pos": "a", "pol": "0.375", "std": "0.086" }, "afinar": { "pos": "v", "pol": "0.304", "std": "0.36" }, "afluencia": { "pos": "n", "pol": "0.375", "std": "0.545" }, "agasajar": { "pos": "v", "pol": "0.333", "std": "0.072" }, "agil": { "pos": "a", "pol": "0.375", "std": "0.0" }, "agotable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "agregado": { "pos": "a", "pol": "0.458", "std": "0.25" }, "agua potable": { "pos": "n", "pol": "0.375", "std": "0.0" }, "aguafiestas": { "pos": "n", "pol": "0.375", "std": "0.0" }, "agudizar": { "pos": "v", "pol": "0.3", "std": "0.088" }, "ahusar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "ajustado": { "pos": "a", "pol": "0.375", "std": "0.112" }, "ajustar": { "pos": "v", "pol": "0.292", "std": "0.251" }, "alado": { "pos": "a", "pol": "0.313", "std": "0.088" }, "alcanzado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "alerta": { "pos": "a", "pol": "0.375", "std": "0.0" }, "alfabetismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "aliciente": { "pos": "n", "pol": "0.438", "std": "0.0" }, "aliento": { "pos": "n", "pol": "0.313", "std": "0.387" }, "alineado": { "pos": "a", "pol": "0.275", "std": "0.112" }, "allegro": { "pos": "n", "pol": "0.375", "std": "0.0" }, "allunyat": { "pos": "a", "pol": "0.375", "std": "0.0" }, "allá": { "pos": "r", "pol": "0.375", "std": "0.0" }, "alta fidelidad": { "pos": "n", "pol": "0.313", "std": "0.088" }, "altruísta": { "pos": "n", "pol": "0.375", "std": "0.0" }, "alucinante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "amaestrado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "amaestrar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "amamantar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "amarillo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "amarillo canario": { "pos": "a", "pol": "0.375", "std": "0.0" }, "amatista": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ambivalencia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ambivalente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ambrosiaco": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ambrosíaco": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ametista": { "pos": "a", "pol": "0.375", "std": "0.0" }, "amigo por correspondencia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "amor fraternal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "amotinador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ampliamente": { "pos": "r", "pol": "0.313", "std": "0.354" }, "amplio": { "pos": "a", "pol": "0.393", "std": "0.142" }, "anacoreta": { "pos": "n", "pol": "0.375", "std": "0.0" }, "anaerobio": { "pos": "a", "pol": "0.375", "std": "0.0" }, "anaeróbico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "analéptico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "anaranjado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "anchura": { "pos": "n", "pol": "0.292", "std": "0.191" }, "anejo": { "pos": "a", "pol": "0.438", "std": "0.354" }, "anexo": { "pos": "a", "pol": "0.344", "std": "0.237" }, "anfipróstilo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "anfiprótico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "anfípodo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "anfótero": { "pos": "a", "pol": "0.375", "std": "0.0" }, "angélico": { "pos": "a", "pol": "0.375", "std": "0.619" }, "aniñado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "antender": { "pos": "v", "pol": "0.375", "std": "0.0" }, "antheraea": { "pos": "n", "pol": "0.375", "std": "0.0" }, "antiadherente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "antiaéreo": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "antitóxico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "antiácido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "antropofagia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "anuencia": { "pos": "n", "pol": "0.313", "std": "0.177" }, "análogo": { "pos": "a", "pol": "0.292", "std": "0.125" }, "apaciguarse": { "pos": "v", "pol": "0.375", "std": "0.0" }, "aparato acústico": { "pos": "n", "pol": "0.375", "std": "0.0" }, "apetitoso": { "pos": "a", "pol": "0.292", "std": "0.243" }, "apical": { "pos": "a", "pol": "0.375", "std": "0.0" }, "aplacable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "aplacamiento": { "pos": "n", "pol": "0.469", "std": "0.237" }, "aplauso": { "pos": "n", "pol": "0.458", "std": "0.072" }, "aplicabilidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "apocárpico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "apología": { "pos": "n", "pol": "0.333", "std": "0.072" }, "apreciar": { "pos": "v", "pol": "0.375", "std": "0.246" }, "aprobación": { "pos": "n", "pol": "0.359", "std": "0.17" }, "aprobar formalmente": { "pos": "v", "pol": "0.375", "std": "0.0" }, "aprovechable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "aprovechar": { "pos": "v", "pol": "0.417", "std": "0.217" }, "arbitrable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "arbitrario": { "pos": "a", "pol": "0.313", "std": "0.0" }, "arcano": { "pos": "a", "pol": "0.25", "std": "0.0" }, "archimandita": { "pos": "n", "pol": "0.375", "std": "0.0" }, "archimandrita": { "pos": "n", "pol": "0.375", "std": "0.0" }, "argot": { "pos": "a", "pol": "0.375", "std": "0.0" }, "argénteo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "aristocrático": { "pos": "a", "pol": "0.438", "std": "0.088" }, "aristotelismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "aritméticamente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "arlequinada": { "pos": "n", "pol": "0.375", "std": "0.0" }, "armado": { "pos": "a", "pol": "0.333", "std": "0.072" }, "armonía": { "pos": "n", "pol": "0.3", "std": "0.311" }, "arrollador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "arte teatral": { "pos": "n", "pol": "0.375", "std": "0.0" }, "artefacto": { "pos": "n", "pol": "0.375", "std": "0.0" }, "artes": { "pos": "n", "pol": "0.375", "std": "0.0" }, "artesanal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "artesanía": { "pos": "n", "pol": "0.417", "std": "0.191" }, "artístico": { "pos": "a", "pol": "0.417", "std": "0.505" }, "ascendente": { "pos": "a", "pol": "0.375", "std": "0.177" }, "ascendiente": { "pos": "a", "pol": "0.417", "std": "0.191" }, "aseado": { "pos": "a", "pol": "0.313", "std": "0.088" }, "asegurado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "aserrar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "asesor": { "pos": "a", "pol": "0.25", "std": "0.0" }, "asesora": { "pos": "n", "pol": "0.375", "std": "0.0" }, "asibilación": { "pos": "n", "pol": "0.375", "std": "0.0" }, "asimilable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "asimilador": { "pos": "a", "pol": "0.375", "std": "0.177" }, "asintomático": { "pos": "a", "pol": "0.375", "std": "0.0" }, "asistido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "asociado": { "pos": "a", "pol": "0.313", "std": "0.088" }, "asombro": { "pos": "n", "pol": "0.375", "std": "0.402" }, "asombroso": { "pos": "a", "pol": "0.333", "std": "0.217" }, "astado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "asustadizo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "atado": { "pos": "a", "pol": "0.271", "std": "0.282" }, "ataráxico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ataviarse": { "pos": "v", "pol": "0.417", "std": "0.144" }, "atención de enfermería": { "pos": "n", "pol": "0.375", "std": "0.0" }, "atento": { "pos": "a", "pol": "0.341", "std": "0.141" }, "atestado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "atribuible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "atuendo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "atávico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "audibilidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "augusto": { "pos": "a", "pol": "0.375", "std": "0.265" }, "autentificar": { "pos": "v", "pol": "0.292", "std": "0.191" }, "autofecundado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "autogénesis": { "pos": "n", "pol": "0.375", "std": "0.0" }, "automatizado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "autopolinizado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "autorizado": { "pos": "a", "pol": "0.437", "std": "0.129" }, "auténtico": { "pos": "a", "pol": "0.268", "std": "0.213" }, "auxilio": { "pos": "v", "pol": "0.375", "std": "0.0" }, "avanzado": { "pos": "a", "pol": "0.281", "std": "0.249" }, "avanzarse": { "pos": "v", "pol": "0.375", "std": "0.53" }, "avançat": { "pos": "a", "pol": "0.375", "std": "0.177" }, "avispado": { "pos": "a", "pol": "0.458", "std": "0.072" }, "ayuda": { "pos": "v", "pol": "0.375", "std": "0.0" }, "ayuda exterior": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ayudado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ayudar": { "pos": "v", "pol": "0.275", "std": "0.112" }, "azul celeste": { "pos": "n", "pol": "0.25", "std": "0.0" }, "añadible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bactericida": { "pos": "a", "pol": "0.375", "std": "0.0" }, "balance final": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ballet clásico": { "pos": "n", "pol": "0.375", "std": "0.0" }, "balonvolea": { "pos": "n", "pol": "0.375", "std": "0.0" }, "barato": { "pos": "a", "pol": "0.292", "std": "0.0" }, "barrigudo": { "pos": "a", "pol": "0.292", "std": "0.072" }, "barrigón": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bastar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "beatitud": { "pos": "n", "pol": "0.375", "std": "0.0" }, "benchmark": { "pos": "n", "pol": "0.375", "std": "0.0" }, "beneficiar": { "pos": "v", "pol": "0.417", "std": "0.402" }, "beneficios": { "pos": "n", "pol": "0.375", "std": "0.0" }, "beneplácito": { "pos": "n", "pol": "0.313", "std": "0.177" }, "benignidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "benigno": { "pos": "a", "pol": "0.469", "std": "0.359" }, "bermejo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bienhablado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "billete de autobús": { "pos": "n", "pol": "0.375", "std": "0.0" }, "billete de tren": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bimestral": { "pos": "a", "pol": "0.313", "std": "0.088" }, "biologismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bioluminiscente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bioquímico": { "pos": "n", "pol": "0.375", "std": "0.0" }, "bipartido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "blasonado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bocón": { "pos": "a", "pol": "0.375", "std": "0.0" }, "bonanza": { "pos": "n", "pol": "0.417", "std": "0.072" }, "bondadoso": { "pos": "a", "pol": "0.357", "std": "0.152" }, "boquiabierto": { "pos": "a", "pol": "0.438", "std": "0.0" }, "borrable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "braco": { "pos": "a", "pol": "0.375", "std": "0.0" }, "brillante": { "pos": "a", "pol": "0.49", "std": "0.158" }, "bruno": { "pos": "a", "pol": "0.375", "std": "0.0" }, "brutal": { "pos": "a", "pol": "0.264", "std": "0.305" }, "brío": { "pos": "n", "pol": "0.313", "std": "0.177" }, "buena prenda": { "pos": "n", "pol": "0.375", "std": "0.0" }, "buena racha": { "pos": "n", "pol": "0.375", "std": "0.0" }, "buena suerte": { "pos": "n", "pol": "0.438", "std": "0.265" }, "buenas noticias": { "pos": "n", "pol": "0.375", "std": "0.0" }, "buenaventura": { "pos": "n", "pol": "0.438", "std": "0.265" }, "butiráceo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "caballerosidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "caballería medieval": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cabalístico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cachet": { "pos": "n", "pol": "0.375", "std": "0.0" }, "caer a plomo": { "pos": "v", "pol": "0.375", "std": "0.0" }, "calculado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "calcular cumulativamente": { "pos": "v", "pol": "0.375", "std": "0.0" }, "calentado": { "pos": "a", "pol": "0.313", "std": "0.088" }, "calentar el banquillo": { "pos": "v", "pol": "0.375", "std": "0.0" }, "caliente": { "pos": "a", "pol": "0.406", "std": "0.161" }, "caligrafía": { "pos": "n", "pol": "0.375", "std": "0.0" }, "calloso": { "pos": "a", "pol": "0.438", "std": "0.088" }, "calmante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cambiable": { "pos": "a", "pol": "0.313", "std": "0.0" }, "cambiante": { "pos": "a", "pol": "0.333", "std": "0.217" }, "caminito de rosas": { "pos": "n", "pol": "0.375", "std": "0.0" }, "camino de herradura": { "pos": "n", "pol": "0.375", "std": "0.0" }, "camino de rosas": { "pos": "n", "pol": "0.375", "std": "0.0" }, "campanilleo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "canción religiosa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "canibalismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "canon": { "pos": "n", "pol": "0.281", "std": "0.063" }, "canonizado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cantar las alabanzas": { "pos": "v", "pol": "0.438", "std": "0.088" }, "canto de villancicos": { "pos": "n", "pol": "0.375", "std": "0.0" }, "capacidad": { "pos": "n", "pol": "0.307", "std": "0.244" }, "capacitar": { "pos": "v", "pol": "0.438", "std": "0.12" }, "capado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "capital": { "pos": "a", "pol": "0.281", "std": "0.277" }, "carioca": { "pos": "n", "pol": "0.375", "std": "0.0" }, "carisma": { "pos": "n", "pol": "0.375", "std": "0.0" }, "carmesí": { "pos": "a", "pol": "0.375", "std": "0.0" }, "carminativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "carácter festivo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "casado": { "pos": "a", "pol": "0.438", "std": "0.0" }, "castigador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "castrado": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "casuística": { "pos": "n", "pol": "0.375", "std": "0.0" }, "casuístico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cata": { "pos": "n", "pol": "0.375", "std": "0.0" }, "catequesis": { "pos": "n", "pol": "0.313", "std": "0.088" }, "catequizar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "cañón antiaéreo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "celebración": { "pos": "n", "pol": "0.458", "std": "0.072" }, "celebridad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "centelleante": { "pos": "a", "pol": "0.375", "std": "0.177" }, "centralizar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "centrista": { "pos": "a", "pol": "0.313", "std": "0.088" }, "centro de actividades": { "pos": "n", "pol": "0.375", "std": "0.0" }, "centrípeto": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cepillado": { "pos": "a", "pol": "0.313", "std": "0.177" }, "ceremonia religiosa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ceremonial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cereza": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cerrar con pestillo": { "pos": "v", "pol": "0.375", "std": "0.0" }, "cerrar puntos": { "pos": "v", "pol": "0.375", "std": "0.0" }, "certificado": { "pos": "n", "pol": "0.313", "std": "0.088" }, "ceñido": { "pos": "a", "pol": "0.438", "std": "0.088" }, "chanchullero": { "pos": "n", "pol": "0.375", "std": "0.0" }, "charlotada": { "pos": "n", "pol": "0.375", "std": "0.0" }, "chauvinista": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cicatrizado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "científico espacial": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cigomorfo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cinta azul": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cintilar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "circunstancial": { "pos": "a", "pol": "0.313", "std": "0.088" }, "circunstanciar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "civil": { "pos": "a", "pol": "0.275", "std": "0.112" }, "clandestino": { "pos": "a", "pol": "0.375", "std": "0.0" }, "clarificativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "claro": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "clasista": { "pos": "a", "pol": "0.375", "std": "0.0" }, "claudicar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "clemente": { "pos": "a", "pol": "0.438", "std": "0.188" }, "clo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "clásico": { "pos": "a", "pol": "0.25", "std": "0.227" }, "coactivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cobrado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "codiciado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "coercitivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "coexistente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "coextensivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cognitivamente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "coherencia": { "pos": "n", "pol": "0.313", "std": "0.088" }, "coherente": { "pos": "a", "pol": "0.406", "std": "0.144" }, "coincidente": { "pos": "a", "pol": "0.292", "std": "0.125" }, "cojinete": { "pos": "n", "pol": "0.375", "std": "0.0" }, "colectivo": { "pos": "a", "pol": "0.313", "std": "0.217" }, "colorado": { "pos": "a", "pol": "0.375", "std": "0.088" }, "coloreado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "colosal": { "pos": "a", "pol": "0.375", "std": "0.072" }, "columnario": { "pos": "a", "pol": "0.313", "std": "0.0" }, "combinable": { "pos": "a", "pol": "0.438", "std": "0.088" }, "combinador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "combinatorio": { "pos": "a", "pol": "0.375", "std": "0.0" }, "comburente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "comerciable": { "pos": "a", "pol": "0.375", "std": "0.191" }, "como contestación": { "pos": "r", "pol": "0.375", "std": "0.0" }, "comodidades": { "pos": "n", "pol": "0.375", "std": "0.0" }, "compartimentado": { "pos": "a", "pol": "0.313", "std": "0.0" }, "compatibilidad": { "pos": "n", "pol": "0.313", "std": "0.177" }, "competencia": { "pos": "n", "pol": "0.344", "std": "0.277" }, "completado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "completo": { "pos": "a", "pol": "0.469", "std": "0.186" }, "comprensibilidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "comprensible": { "pos": "a", "pol": "0.375", "std": "0.191" }, "compresible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "comprobado": { "pos": "a", "pol": "0.333", "std": "0.072" }, "comprometido": { "pos": "a", "pol": "0.417", "std": "0.072" }, "compromiso matrimonial": { "pos": "n", "pol": "0.375", "std": "0.0" }, "comunicativo": { "pos": "a", "pol": "0.313", "std": "0.329" }, "comunidad de intereses": { "pos": "n", "pol": "0.375", "std": "0.0" }, "con bastante seguridad": { "pos": "r", "pol": "0.375", "std": "0.0" }, "con certeza": { "pos": "r", "pol": "0.375", "std": "0.0" }, "con colores": { "pos": "n", "pol": "0.375", "std": "0.0" }, "con seguridad": { "pos": "r", "pol": "0.375", "std": "0.0" }, "con vivacidad": { "pos": "r", "pol": "0.375", "std": "0.0" }, "concentrado": { "pos": "a", "pol": "0.268", "std": "0.177" }, "concepto": { "pos": "n", "pol": "0.375", "std": "0.0" }, "concertación": { "pos": "n", "pol": "0.375", "std": "0.0" }, "concienzudo": { "pos": "a", "pol": "0.292", "std": "0.144" }, "concierto benéfico": { "pos": "n", "pol": "0.375", "std": "0.0" }, "conciso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "concomitante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "condecorar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "conducido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "conector": { "pos": "a", "pol": "0.375", "std": "0.0" }, "confiabilidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "confiado": { "pos": "a", "pol": "0.375", "std": "0.144" }, "confidencial": { "pos": "a", "pol": "0.313", "std": "0.243" }, "confinado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "confirmar": { "pos": "v", "pol": "0.313", "std": "0.188" }, "confluente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "conforme": { "pos": "a", "pol": "0.375", "std": "0.12" }, "conformista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "confucionismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "confundido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "congratulación": { "pos": "n", "pol": "0.417", "std": "0.144" }, "conjeturable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "conjetural": { "pos": "a", "pol": "0.375", "std": "0.0" }, "conmemoración": { "pos": "n", "pol": "0.375", "std": "0.0" }, "conmemorativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "conmensurable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "conmovedor": { "pos": "a", "pol": "0.344", "std": "0.0" }, "conmutable": { "pos": "a", "pol": "0.292", "std": "0.144" }, "conmutativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "connivencia": { "pos": "n", "pol": "0.281", "std": "0.125" }, "conocedor": { "pos": "n", "pol": "0.375", "std": "0.0" }, "conocido": { "pos": "n", "pol": "0.25", "std": "0.0" }, "conocimiento general": { "pos": "n", "pol": "0.375", "std": "0.0" }, "conocimiento práctico": { "pos": "n", "pol": "0.375", "std": "0.0" }, "conquistable": { "pos": "a", "pol": "0.313", "std": "0.0" }, "consagrar": { "pos": "v", "pol": "0.438", "std": "0.161" }, "consagrarse": { "pos": "v", "pol": "0.292", "std": "0.315" }, "consciencia": { "pos": "n", "pol": "0.375", "std": "0.177" }, "consciente": { "pos": "n", "pol": "0.375", "std": "0.0" }, "consecuente": { "pos": "a", "pol": "0.458", "std": "0.315" }, "consenso": { "pos": "n", "pol": "0.292", "std": "0.144" }, "consideración": { "pos": "n", "pol": "0.341", "std": "0.256" }, "considerado": { "pos": "a", "pol": "0.425", "std": "0.088" }, "consolidado": { "pos": "a", "pol": "0.438", "std": "0.088" }, "consonante": { "pos": "a", "pol": "0.333", "std": "0.217" }, "consonante sibilante": { "pos": "n", "pol": "0.375", "std": "0.0" }, "constante": { "pos": "a", "pol": "0.344", "std": "0.299" }, "constatar": { "pos": "v", "pol": "0.375", "std": "0.177" }, "constitutivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "constrictivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "consultor": { "pos": "n", "pol": "0.375", "std": "0.0" }, "consultora": { "pos": "n", "pol": "0.375", "std": "0.0" }, "consumible": { "pos": "a", "pol": "0.375", "std": "0.177" }, "contagioso": { "pos": "a", "pol": "0.313", "std": "0.237" }, "contar con": { "pos": "v", "pol": "0.375", "std": "0.0" }, "contemplativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "contemporizador": { "pos": "n", "pol": "0.313", "std": "0.177" }, "contradecible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "contraer esponsales": { "pos": "v", "pol": "0.375", "std": "0.0" }, "contrato unilateral": { "pos": "n", "pol": "0.375", "std": "0.0" }, "control de calidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "contumaz": { "pos": "a", "pol": "0.375", "std": "0.0" }, "contundente": { "pos": "a", "pol": "0.333", "std": "0.125" }, "convencionalismo": { "pos": "n", "pol": "0.313", "std": "0.088" }, "convenido": { "pos": "a", "pol": "0.313", "std": "0.088" }, "convenir": { "pos": "v", "pol": "0.375", "std": "0.258" }, "convento de monjas": { "pos": "n", "pol": "0.375", "std": "0.0" }, "convertible": { "pos": "a", "pol": "0.333", "std": "0.072" }, "convidar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "convincente": { "pos": "a", "pol": "0.281", "std": "0.063" }, "cornudo": { "pos": "a", "pol": "0.313", "std": "0.088" }, "correctamente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "corredero": { "pos": "a", "pol": "0.375", "std": "0.0" }, "correspondiente": { "pos": "a", "pol": "0.292", "std": "0.171" }, "corroboración": { "pos": "n", "pol": "0.313", "std": "0.088" }, "corroborar": { "pos": "v", "pol": "0.275", "std": "0.143" }, "corruptivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "corruptor": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cortejar": { "pos": "v", "pol": "0.333", "std": "0.25" }, "cortejo": { "pos": "n", "pol": "0.375", "std": "0.331" }, "cortesía": { "pos": "n", "pol": "0.271", "std": "0.137" }, "cosmético": { "pos": "n", "pol": "0.25", "std": "0.0" }, "creación artística": { "pos": "n", "pol": "0.375", "std": "0.0" }, "credencial": { "pos": "n", "pol": "0.375", "std": "0.0" }, "credibilidad": { "pos": "n", "pol": "0.313", "std": "0.088" }, "creíble": { "pos": "a", "pol": "0.438", "std": "0.0" }, "cristiano": { "pos": "n", "pol": "0.25", "std": "0.0" }, "crujiente": { "pos": "a", "pol": "0.375", "std": "0.088" }, "cruzarse": { "pos": "v", "pol": "0.313", "std": "0.088" }, "crónico": { "pos": "a", "pol": "0.333", "std": "0.072" }, "cuadrado": { "pos": "a", "pol": "0.375", "std": "0.125" }, "cuadriculado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cualificar": { "pos": "v", "pol": "0.375", "std": "0.331" }, "cualitativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cuaresmal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cucufato": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cuerdo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cuidado": { "pos": "a", "pol": "0.375", "std": "0.088" }, "cultivado": { "pos": "a", "pol": "0.375", "std": "0.072" }, "culturalmente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "culturista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cum laude": { "pos": "r", "pol": "0.375", "std": "0.0" }, "cumplido": { "pos": "n", "pol": "0.458", "std": "0.072" }, "cumplidor": { "pos": "a", "pol": "0.438", "std": "0.088" }, "cumplir": { "pos": "v", "pol": "0.266", "std": "0.219" }, "cumulativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "cuneado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "curabilidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "curar": { "pos": "v", "pol": "0.35", "std": "0.185" }, "curiosidad": { "pos": "n", "pol": "0.375", "std": "0.177" }, "curso de extensión": { "pos": "n", "pol": "0.375", "std": "0.0" }, "curvilíneo": { "pos": "a", "pol": "0.458", "std": "0.125" }, "cívico": { "pos": "a", "pol": "0.313", "std": "0.368" }, "código ético": { "pos": "n", "pol": "0.375", "std": "0.0" }, "cómico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cóncavamente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "córner": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dacrón": { "pos": "n", "pol": "0.375", "std": "0.0" }, "danza ceremonial": { "pos": "n", "pol": "0.375", "std": "0.0" }, "danza ritual": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dar alojamiento": { "pos": "v", "pol": "0.313", "std": "0.088" }, "dar cuerpo": { "pos": "v", "pol": "0.375", "std": "0.0" }, "dar cuidados": { "pos": "v", "pol": "0.375", "std": "0.0" }, "dar de mamar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "dar derecho a": { "pos": "v", "pol": "0.375", "std": "0.0" }, "dar el chivatazo": { "pos": "v", "pol": "0.375", "std": "0.0" }, "dar el sustento": { "pos": "v", "pol": "0.375", "std": "0.0" }, "dar frutos": { "pos": "v", "pol": "0.375", "std": "0.0" }, "dar la palabra": { "pos": "v", "pol": "0.375", "std": "0.0" }, "dar pistas": { "pos": "v", "pol": "0.375", "std": "0.0" }, "dar tajos": { "pos": "v", "pol": "0.375", "std": "0.0" }, "dar una pista": { "pos": "v", "pol": "0.375", "std": "0.0" }, "darse cita": { "pos": "v", "pol": "0.375", "std": "0.0" }, "de acuerdo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "de forma espesa": { "pos": "r", "pol": "0.375", "std": "0.0" }, "de término": { "pos": "a", "pol": "0.375", "std": "0.0" }, "debido": { "pos": "a", "pol": "0.313", "std": "0.354" }, "decidido": { "pos": "a", "pol": "0.411", "std": "0.112" }, "decisivamente": { "pos": "r", "pol": "0.313", "std": "0.088" }, "declaración verdadera": { "pos": "n", "pol": "0.375", "std": "0.0" }, "declarado": { "pos": "a", "pol": "0.417", "std": "0.072" }, "definido": { "pos": "a", "pol": "0.438", "std": "0.215" }, "definitivo": { "pos": "a", "pol": "0.333", "std": "0.26" }, "degenerado": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dejar pasmado": { "pos": "v", "pol": "0.375", "std": "0.0" }, "delantera": { "pos": "n", "pol": "0.313", "std": "0.292" }, "delectación": { "pos": "n", "pol": "0.375", "std": "0.0" }, "deleitación": { "pos": "n", "pol": "0.375", "std": "0.0" }, "deleitar": { "pos": "v", "pol": "0.281", "std": "0.26" }, "deleite": { "pos": "n", "pol": "0.375", "std": "0.0" }, "deliberado": { "pos": "a", "pol": "0.458", "std": "0.072" }, "deliberativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "delicioso": { "pos": "a", "pol": "0.458", "std": "0.217" }, "delineado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "delinear": { "pos": "a", "pol": "0.375", "std": "0.0" }, "deltoide": { "pos": "a", "pol": "0.375", "std": "0.0" }, "demagogo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "demasiado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "democrático": { "pos": "a", "pol": "0.375", "std": "0.382" }, "demostrable": { "pos": "a", "pol": "0.313", "std": "0.0" }, "denominacionalmente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "densificar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "dependiente": { "pos": "a", "pol": "0.375", "std": "0.177" }, "depravado": { "pos": "a", "pol": "-0.375", "std": "0.26" }, "depresivo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "derecho a la libertad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "derecho de alimentos": { "pos": "n", "pol": "0.375", "std": "0.0" }, "derivado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "derivativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "desagraviar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "desarrollado": { "pos": "a", "pol": "0.438", "std": "0.088" }, "desbastado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "descentralizador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "desclasificar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "descollar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "desconectar": { "pos": "v", "pol": "0.271", "std": "0.292" }, "deseabilidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "desempañar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "desencaminado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "desencantado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "desencorvar": { "pos": "v", "pol": "0.438", "std": "0.088" }, "desestima": { "pos": "n", "pol": "0.375", "std": "0.0" }, "desfavorecido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "deshelar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "deshumanización": { "pos": "n", "pol": "0.375", "std": "0.0" }, "deshumano": { "pos": "a", "pol": "0.375", "std": "0.0" }, "desinfectante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "desintegrador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "desligado": { "pos": "a", "pol": "0.375", "std": "0.088" }, "deslizante": { "pos": "a", "pol": "0.313", "std": "0.0" }, "desmitificar": { "pos": "a", "pol": "0.375", "std": "0.0" }, "desobstruido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "despabilado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "despenalizar": { "pos": "v", "pol": "0.292", "std": "0.125" }, "despierto": { "pos": "a", "pol": "0.375", "std": "0.072" }, "desposar": { "pos": "v", "pol": "0.313", "std": "0.088" }, "desposorios": { "pos": "n", "pol": "0.375", "std": "0.0" }, "desprender": { "pos": "v", "pol": "0.281", "std": "0.217" }, "desprendido": { "pos": "a", "pol": "0.375", "std": "0.088" }, "destacado": { "pos": "a", "pol": "0.389", "std": "0.165" }, "destacarse": { "pos": "v", "pol": "0.375", "std": "0.0" }, "destetado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "destituible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "desvelado": { "pos": "a", "pol": "0.333", "std": "0.072" }, "desvitalización": { "pos": "n", "pol": "0.375", "std": "0.0" }, "detectable": { "pos": "a", "pol": "0.438", "std": "0.0" }, "determinado": { "pos": "a", "pol": "0.375", "std": "0.157" }, "determinante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "determinismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "diabático": { "pos": "a", "pol": "0.375", "std": "0.0" }, "diacrónico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "diagonalizable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "diario": { "pos": "a", "pol": "0.313", "std": "0.088" }, "dicynodontia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dieta equilibrada": { "pos": "n", "pol": "0.375", "std": "0.0" }, "diferenciado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dignarse": { "pos": "v", "pol": "0.375", "std": "0.0" }, "diligente": { "pos": "a", "pol": "0.438", "std": "0.063" }, "diminuir": { "pos": "v", "pol": "0.375", "std": "0.0" }, "dinámico": { "pos": "a", "pol": "0.286", "std": "0.213" }, "diplomático": { "pos": "a", "pol": "0.458", "std": "0.505" }, "directo": { "pos": "a", "pol": "0.26", "std": "0.16" }, "discernidor": { "pos": "a", "pol": "0.375", "std": "0.0" }, "disciplinado": { "pos": "a", "pol": "0.438", "std": "0.0" }, "discriminador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "discriminatorio": { "pos": "a", "pol": "0.313", "std": "0.354" }, "disculpable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "discutible": { "pos": "a", "pol": "0.275", "std": "0.105" }, "disoluble": { "pos": "a", "pol": "0.375", "std": "0.0" }, "disponible": { "pos": "a", "pol": "0.292", "std": "0.105" }, "dispositivo acústico": { "pos": "n", "pol": "0.375", "std": "0.0" }, "disputador": { "pos": "n", "pol": "0.375", "std": "0.0" }, "disyuntivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "divergente": { "pos": "a", "pol": "0.313", "std": "0.088" }, "diversión": { "pos": "n", "pol": "0.292", "std": "0.125" }, "divino": { "pos": "a", "pol": "0.438", "std": "0.194" }, "división de honor": { "pos": "n", "pol": "0.375", "std": "0.0" }, "divorciado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "divulgado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "divulgativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "diálisis": { "pos": "n", "pol": "0.375", "std": "0.0" }, "doctrina": { "pos": "n", "pol": "0.313", "std": "0.088" }, "documentado": { "pos": "a", "pol": "0.375", "std": "0.177" }, "domesticado": { "pos": "a", "pol": "0.333", "std": "0.0" }, "domesticar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "doméstico": { "pos": "a", "pol": "0.292", "std": "0.144" }, "doula": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dramático": { "pos": "a", "pol": "0.275", "std": "0.259" }, "dulzaino": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dulzarrón": { "pos": "a", "pol": "0.375", "std": "0.0" }, "dulzón": { "pos": "a", "pol": "0.438", "std": "0.0" }, "día de San Valentín": { "pos": "n", "pol": "0.375", "std": "0.0" }, "día de los enamorados": { "pos": "n", "pol": "0.375", "std": "0.0" }, "dócil": { "pos": "a", "pol": "0.396", "std": "0.102" }, "ebrio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "económico": { "pos": "a", "pol": "0.339", "std": "0.28" }, "ecrina": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ecuanimidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ecuménico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "editar": { "pos": "v", "pol": "0.292", "std": "0.26" }, "edén": { "pos": "n", "pol": "0.375", "std": "0.0" }, "eficacia": { "pos": "n", "pol": "0.375", "std": "0.354" }, "eficiente": { "pos": "a", "pol": "0.375", "std": "0.088" }, "ejemplar": { "pos": "a", "pol": "0.458", "std": "0.289" }, "ejercitado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "el único": { "pos": "a", "pol": "0.375", "std": "0.0" }, "elaborado": { "pos": "a", "pol": "0.313", "std": "0.177" }, "elasticidad": { "pos": "n", "pol": "0.313", "std": "0.265" }, "elegancia": { "pos": "n", "pol": "0.333", "std": "0.233" }, "elegante": { "pos": "a", "pol": "0.438", "std": "0.125" }, "elegido": { "pos": "a", "pol": "0.375", "std": "0.177" }, "elevado": { "pos": "a", "pol": "0.375", "std": "0.258" }, "elisión": { "pos": "n", "pol": "0.375", "std": "0.0" }, "elitista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "elogiador": { "pos": "n", "pol": "0.375", "std": "0.0" }, "elogiar": { "pos": "v", "pol": "0.438", "std": "0.088" }, "elogio": { "pos": "n", "pol": "0.417", "std": "0.072" }, "elucidativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "elíseo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "emancipado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "emasculado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "embriagado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "eminente": { "pos": "a", "pol": "0.417", "std": "0.0" }, "emocionado": { "pos": "a", "pol": "0.458", "std": "0.191" }, "emocional": { "pos": "a", "pol": "0.333", "std": "0.072" }, "emocionalmente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "empacado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "empaquetado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "emparentado": { "pos": "a", "pol": "0.313", "std": "0.088" }, "empatía": { "pos": "n", "pol": "0.375", "std": "0.088" }, "en consecuencia": { "pos": "r", "pol": "0.375", "std": "0.0" }, "en el clavo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "en respuesta": { "pos": "r", "pol": "0.375", "std": "0.0" }, "en términos acústicos": { "pos": "r", "pol": "0.375", "std": "0.0" }, "en términos culturales": { "pos": "r", "pol": "0.375", "std": "0.0" }, "en términos musicológicos": { "pos": "r", "pol": "0.375", "std": "0.0" }, "enaltecer": { "pos": "v", "pol": "0.344", "std": "0.12" }, "encantarse": { "pos": "v", "pol": "0.375", "std": "0.0" }, "encanto": { "pos": "n", "pol": "0.35", "std": "0.153" }, "encarecimiento": { "pos": "n", "pol": "0.313", "std": "0.088" }, "encargado de comedor": { "pos": "n", "pol": "0.375", "std": "0.0" }, "encargado de restaurante": { "pos": "n", "pol": "0.375", "std": "0.0" }, "encerrado": { "pos": "a", "pol": "0.281", "std": "0.237" }, "encojinado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "encomiasta": { "pos": "n", "pol": "0.375", "std": "0.0" }, "encomio": { "pos": "n", "pol": "0.375", "std": "0.0" }, "encriptado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "endosante por aval": { "pos": "n", "pol": "0.375", "std": "0.0" }, "endógamo": { "pos": "a", "pol": "0.313", "std": "0.088" }, "energía": { "pos": "n", "pol": "0.275", "std": "0.202" }, "enfocado": { "pos": "a", "pol": "0.375", "std": "0.177" }, "enfático": { "pos": "a", "pol": "0.313", "std": "0.125" }, "engordado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "engrandecimiento": { "pos": "n", "pol": "0.375", "std": "0.0" }, "engrilletar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "enhorabuena": { "pos": "n", "pol": "0.417", "std": "0.144" }, "enlazable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "enlazado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "enmoquetado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ennoblecer": { "pos": "v", "pol": "0.375", "std": "0.0" }, "enorme": { "pos": "a", "pol": "0.325", "std": "0.0" }, "enriquecer": { "pos": "v", "pol": "0.313", "std": "0.217" }, "enrojecido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ensalzar": { "pos": "v", "pol": "0.458", "std": "0.451" }, "ensimismado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "entendido": { "pos": "n", "pol": "0.375", "std": "0.0" }, "enternecido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "entero": { "pos": "a", "pol": "0.271", "std": "0.203" }, "entrenado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "entrenamiento autógeno": { "pos": "n", "pol": "0.375", "std": "0.0" }, "entusiasmado": { "pos": "a", "pol": "0.417", "std": "0.191" }, "envasado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "envolvente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "envolver para regalo": { "pos": "v", "pol": "0.375", "std": "0.0" }, "envuelto": { "pos": "a", "pol": "0.375", "std": "0.0" }, "enérgico": { "pos": "a", "pol": "0.342", "std": "0.118" }, "epizoótico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "equidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "equidistante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "equilibrado": { "pos": "a", "pol": "0.275", "std": "0.0" }, "equipado": { "pos": "a", "pol": "0.268", "std": "0.2" }, "equipar": { "pos": "v", "pol": "0.281", "std": "0.188" }, "equivalencia": { "pos": "n", "pol": "0.292", "std": "0.125" }, "equivalente": { "pos": "a", "pol": "0.292", "std": "0.25" }, "eremítico": { "pos": "a", "pol": "0.313", "std": "0.265" }, "eréctil": { "pos": "a", "pol": "0.313", "std": "0.088" }, "esbelto": { "pos": "a", "pol": "0.313", "std": "0.0" }, "escarlata": { "pos": "a", "pol": "0.375", "std": "0.0" }, "escenotecnia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "escrupulosidad": { "pos": "n", "pol": "0.438", "std": "0.354" }, "escrupuloso": { "pos": "a", "pol": "0.344", "std": "0.102" }, "escuela parroquial": { "pos": "n", "pol": "0.313", "std": "0.088" }, "escuela religiosa": { "pos": "n", "pol": "0.313", "std": "0.088" }, "escultural": { "pos": "a", "pol": "0.313", "std": "0.27" }, "esmerado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "espabilado": { "pos": "a", "pol": "0.406", "std": "0.063" }, "espacioso": { "pos": "a", "pol": "0.375", "std": "0.102" }, "especial": { "pos": "a", "pol": "0.411", "std": "0.25" }, "especialidad": { "pos": "n", "pol": "0.406", "std": "0.313" }, "especialista": { "pos": "a", "pol": "0.25", "std": "0.265" }, "especializarse": { "pos": "v", "pol": "0.375", "std": "0.0" }, "espectacular": { "pos": "a", "pol": "0.375", "std": "0.0" }, "específico": { "pos": "a", "pol": "0.292", "std": "0.315" }, "esplendor": { "pos": "n", "pol": "0.438", "std": "0.274" }, "esprint": { "pos": "n", "pol": "0.375", "std": "0.0" }, "estabilizarse": { "pos": "v", "pol": "0.281", "std": "0.188" }, "estar de acuerdo": { "pos": "v", "pol": "0.438", "std": "0.088" }, "estar dispuesto": { "pos": "v", "pol": "0.375", "std": "0.0" }, "estatal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "estereofónico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "estertoroso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "estratégicamente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "estroso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "estudios": { "pos": "n", "pol": "0.375", "std": "0.0" }, "estándar": { "pos": "a", "pol": "0.469", "std": "0.12" }, "estéreo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "eucariótico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "eulogio": { "pos": "n", "pol": "0.375", "std": "0.0" }, "evidente": { "pos": "a", "pol": "0.431", "std": "0.146" }, "evocador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "evocativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "exactitud": { "pos": "n", "pol": "0.3", "std": "0.112" }, "exaltante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "exaltar": { "pos": "v", "pol": "0.375", "std": "0.12" }, "excepcional": { "pos": "a", "pol": "0.271", "std": "0.32" }, "excitable": { "pos": "a", "pol": "0.438", "std": "0.265" }, "excitado": { "pos": "a", "pol": "0.3", "std": "0.153" }, "exclusivo": { "pos": "a", "pol": "0.313", "std": "0.088" }, "exculpado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "existente": { "pos": "a", "pol": "0.35", "std": "0.105" }, "exonerado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "exonerar": { "pos": "v", "pol": "0.406", "std": "0.375" }, "expectante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "experiencia": { "pos": "n", "pol": "0.333", "std": "0.125" }, "expiable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "explicativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "explicitar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "explotado": { "pos": "a", "pol": "0.375", "std": "0.088" }, "expositivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "expresivo": { "pos": "a", "pol": "0.375", "std": "0.072" }, "expreso": { "pos": "a", "pol": "0.292", "std": "0.125" }, "exquisitez": { "pos": "n", "pol": "0.281", "std": "0.12" }, "exquisito": { "pos": "a", "pol": "0.375", "std": "0.153" }, "extensible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "extenso": { "pos": "a", "pol": "0.406", "std": "0.189" }, "extrafino": { "pos": "a", "pol": "0.438", "std": "0.265" }, "extragrande": { "pos": "a", "pol": "0.375", "std": "0.0" }, "extralargo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "extraordinario": { "pos": "n", "pol": "0.25", "std": "0.0" }, "extravertido": { "pos": "n", "pol": "0.375", "std": "0.0" }, "extrovertido": { "pos": "n", "pol": "0.375", "std": "0.0" }, "exuberante": { "pos": "a", "pol": "0.3", "std": "0.271" }, "fabuloso": { "pos": "a", "pol": "0.333", "std": "0.361" }, "familiarizado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "fantasioso": { "pos": "a", "pol": "0.313", "std": "0.0" }, "favorito": { "pos": "a", "pol": "0.417", "std": "0.0" }, "federado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "felicitaciones": { "pos": "n", "pol": "0.417", "std": "0.144" }, "felicitación": { "pos": "n", "pol": "0.417", "std": "0.144" }, "felicitar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "fenómeno": { "pos": "n", "pol": "0.313", "std": "0.177" }, "festivo": { "pos": "a", "pol": "0.458", "std": "0.191" }, "fiabilidad": { "pos": "n", "pol": "0.313", "std": "0.088" }, "filatélico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "filetear": { "pos": "v", "pol": "0.375", "std": "0.0" }, "filogenéticamente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "filohelénico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "filosofía": { "pos": "n", "pol": "0.313", "std": "0.088" }, "filosóficamente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "finalizado": { "pos": "a", "pol": "0.313", "std": "0.177" }, "fino": { "pos": "a", "pol": "0.384", "std": "0.266" }, "finura": { "pos": "n", "pol": "0.313", "std": "0.102" }, "flexible": { "pos": "a", "pol": "0.341", "std": "0.238" }, "flexional": { "pos": "a", "pol": "0.375", "std": "0.088" }, "florecer": { "pos": "v", "pol": "0.281", "std": "0.483" }, "floreciente": { "pos": "a", "pol": "0.417", "std": "0.315" }, "fluido": { "pos": "a", "pol": "0.333", "std": "0.0" }, "flujo de trabajo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fluorescente": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fomentar": { "pos": "v", "pol": "0.281", "std": "0.4" }, "forense": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "formal": { "pos": "a", "pol": "0.398", "std": "0.236" }, "formalidad": { "pos": "n", "pol": "0.35", "std": "0.168" }, "formalidades": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fornido": { "pos": "a", "pol": "0.3", "std": "0.105" }, "fortificado": { "pos": "a", "pol": "0.313", "std": "0.088" }, "forzudo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fosforescente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "franco": { "pos": "a", "pol": "0.321", "std": "0.283" }, "fructífero": { "pos": "a", "pol": "0.375", "std": "0.0" }, "frugal": { "pos": "a", "pol": "0.292", "std": "0.072" }, "fuerza moral": { "pos": "n", "pol": "0.375", "std": "0.0" }, "funcional": { "pos": "a", "pol": "0.406", "std": "0.186" }, "furgoneta de reparto": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fé": { "pos": "n", "pol": "0.375", "std": "0.0" }, "fíat": { "pos": "n", "pol": "0.313", "std": "0.177" }, "físico": { "pos": "a", "pol": "0.286", "std": "0.173" }, "gacela persa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ganancia": { "pos": "n", "pol": "0.344", "std": "0.277" }, "garantía subsidiaria": { "pos": "n", "pol": "0.375", "std": "0.0" }, "garbo": { "pos": "n", "pol": "0.375", "std": "0.157" }, "gastrónomo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "genealogista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "generador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "generosidad": { "pos": "n", "pol": "0.325", "std": "0.056" }, "generoso": { "pos": "a", "pol": "0.438", "std": "0.125" }, "gentileza": { "pos": "n", "pol": "0.417", "std": "0.331" }, "genus antheraea": { "pos": "n", "pol": "0.375", "std": "0.0" }, "germicida": { "pos": "a", "pol": "0.375", "std": "0.0" }, "gesta": { "pos": "n", "pol": "0.375", "std": "0.0" }, "glamuroso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "glaseado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "glide": { "pos": "n", "pol": "0.375", "std": "0.0" }, "global": { "pos": "a", "pol": "0.347", "std": "0.246" }, "gloria": { "pos": "n", "pol": "0.333", "std": "0.0" }, "glorificado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "gluglú": { "pos": "n", "pol": "0.375", "std": "0.0" }, "glutinoso": { "pos": "a", "pol": "0.313", "std": "0.0" }, "gnóstico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "goce": { "pos": "n", "pol": "0.313", "std": "0.088" }, "golpe de efecto": { "pos": "n", "pol": "0.375", "std": "0.0" }, "golpe maestro": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gomoso": { "pos": "a", "pol": "0.333", "std": "0.0" }, "gorrear": { "pos": "v", "pol": "0.375", "std": "0.0" }, "gorronear": { "pos": "v", "pol": "0.375", "std": "0.088" }, "gourmet": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gozada": { "pos": "n", "pol": "0.375", "std": "0.0" }, "grado óptimo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "graficación": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gran": { "pos": "a", "pol": "0.338", "std": "0.195" }, "gran pureza": { "pos": "n", "pol": "0.375", "std": "0.0" }, "grana": { "pos": "a", "pol": "0.375", "std": "0.0" }, "grande": { "pos": "a", "pol": "0.292", "std": "0.132" }, "grandeza": { "pos": "n", "pol": "0.266", "std": "0.263" }, "grecófilo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "gregario": { "pos": "a", "pol": "0.333", "std": "0.125" }, "gritar de alegría": { "pos": "v", "pol": "0.375", "std": "0.0" }, "grácil": { "pos": "a", "pol": "0.438", "std": "0.088" }, "gurmet": { "pos": "n", "pol": "0.375", "std": "0.0" }, "gustoso": { "pos": "a", "pol": "0.438", "std": "0.0" }, "género Gobio": { "pos": "n", "pol": "0.375", "std": "0.0" }, "habilidad": { "pos": "n", "pol": "0.429", "std": "0.227" }, "habilidad manual": { "pos": "n", "pol": "0.313", "std": "0.088" }, "habilitar": { "pos": "v", "pol": "0.333", "std": "0.315" }, "habituado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "habitual": { "pos": "a", "pol": "0.304", "std": "0.152" }, "hablado": { "pos": "a", "pol": "0.313", "std": "0.265" }, "hacer disponible": { "pos": "v", "pol": "0.375", "std": "0.0" }, "hacer frente": { "pos": "v", "pol": "0.375", "std": "0.0" }, "hacer la vista gorda": { "pos": "v", "pol": "0.375", "std": "0.0" }, "hacer sonar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "hacer un dado": { "pos": "v", "pol": "0.375", "std": "0.0" }, "hallazgo fortuito": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hazaña": { "pos": "n", "pol": "0.313", "std": "0.0" }, "hebdomadario": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hechizador": { "pos": "a", "pol": "0.313", "std": "0.619" }, "hecho": { "pos": "a", "pol": "0.313", "std": "0.088" }, "hedonismo": { "pos": "n", "pol": "0.313", "std": "0.088" }, "hermético": { "pos": "a", "pol": "0.313", "std": "0.0" }, "heterosis": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hi-fi": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hidrófobo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hifi": { "pos": "n", "pol": "0.375", "std": "0.0" }, "higrofítico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "higrófilo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hiperactivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hiperpigmentación": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hipertiroidismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hipnotizador": { "pos": "a", "pol": "0.313", "std": "0.619" }, "hobby": { "pos": "n", "pol": "0.375", "std": "0.619" }, "hogareño": { "pos": "a", "pol": "0.375", "std": "0.0" }, "holgura": { "pos": "n", "pol": "0.292", "std": "0.304" }, "holometábolo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hombre de peso": { "pos": "n", "pol": "0.375", "std": "0.0" }, "homogéneo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "hondo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "honestidad": { "pos": "n", "pol": "0.313", "std": "0.088" }, "honesto": { "pos": "a", "pol": "0.438", "std": "0.146" }, "honorario": { "pos": "a", "pol": "0.25", "std": "0.0" }, "honorarios": { "pos": "n", "pol": "0.313", "std": "0.088" }, "hosanna": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hospedador": { "pos": "n", "pol": "0.375", "std": "0.0" }, "humanidades": { "pos": "n", "pol": "0.375", "std": "0.0" }, "humanista": { "pos": "a", "pol": "0.375", "std": "0.088" }, "humorada": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hápax": { "pos": "n", "pol": "0.375", "std": "0.0" }, "hídrico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "idolatrado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ileso": { "pos": "a", "pol": "0.375", "std": "0.063" }, "ilustrativo": { "pos": "a", "pol": "0.438", "std": "0.088" }, "imitativo": { "pos": "a", "pol": "0.292", "std": "0.072" }, "impecable": { "pos": "a", "pol": "0.375", "std": "0.088" }, "implicado": { "pos": "a", "pol": "0.417", "std": "0.125" }, "importancia": { "pos": "n", "pol": "0.354", "std": "0.166" }, "impregnar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "impresionado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "impresionante": { "pos": "a", "pol": "0.458", "std": "0.105" }, "impresionar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "imprimatur": { "pos": "n", "pol": "0.375", "std": "0.0" }, "imprimátur": { "pos": "n", "pol": "0.375", "std": "0.0" }, "impulsado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "impulsor": { "pos": "a", "pol": "0.375", "std": "0.0" }, "impune": { "pos": "a", "pol": "0.375", "std": "0.0" }, "in en contra": { "pos": "v", "pol": "0.375", "std": "0.0" }, "inalterado": { "pos": "a", "pol": "0.292", "std": "0.144" }, "incansable": { "pos": "a", "pol": "0.313", "std": "0.088" }, "incitador": { "pos": "a", "pol": "0.375", "std": "0.265" }, "inconfundible": { "pos": "a", "pol": "0.313", "std": "0.177" }, "incontrolado": { "pos": "a", "pol": "0.325", "std": "0.112" }, "incrementado": { "pos": "a", "pol": "0.438", "std": "0.354" }, "increíble": { "pos": "a", "pol": "0.458", "std": "0.217" }, "indemne": { "pos": "a", "pol": "0.417", "std": "0.072" }, "indicativo": { "pos": "a", "pol": "0.292", "std": "0.331" }, "individual": { "pos": "a", "pol": "0.3", "std": "0.163" }, "individualista": { "pos": "a", "pol": "0.313", "std": "0.177" }, "individualizado": { "pos": "a", "pol": "0.375", "std": "0.265" }, "indivisible": { "pos": "a", "pol": "0.313", "std": "0.0" }, "indulgente": { "pos": "a", "pol": "0.45", "std": "0.105" }, "industrializado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "industriar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "ineludible": { "pos": "a", "pol": "0.292", "std": "0.125" }, "inequívoco": { "pos": "a", "pol": "0.469", "std": "0.157" }, "inestimable": { "pos": "a", "pol": "0.375", "std": "0.177" }, "infantil": { "pos": "a", "pol": "0.275", "std": "0.227" }, "infatigable": { "pos": "a", "pol": "0.313", "std": "0.088" }, "infecto": { "pos": "a", "pol": "0.375", "std": "0.0" }, "inflacionista": { "pos": "a", "pol": "0.375", "std": "0.0" }, "inflamable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "influenciar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "influyente": { "pos": "a", "pol": "0.281", "std": "0.217" }, "informativo": { "pos": "a", "pol": "0.375", "std": "0.088" }, "infrabastecer": { "pos": "v", "pol": "0.375", "std": "0.0" }, "infrasónico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ingeniero espacial": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ingerir": { "pos": "v", "pol": "0.375", "std": "0.0" }, "inhibidor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inigualado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "inmaculado": { "pos": "a", "pol": "0.313", "std": "0.072" }, "inmanente": { "pos": "a", "pol": "0.438", "std": "0.177" }, "inmenso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "inocentada": { "pos": "n", "pol": "0.375", "std": "0.0" }, "inocente": { "pos": "a", "pol": "0.393", "std": "0.222" }, "inquiridor": { "pos": "a", "pol": "0.375", "std": "0.0" }, "inquisidor": { "pos": "a", "pol": "0.375", "std": "0.0" }, "inquisitorial": { "pos": "a", "pol": "0.375", "std": "0.0" }, "insonorizado": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "inspiracional": { "pos": "a", "pol": "0.375", "std": "0.0" }, "inspirador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "instantaneidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "institucionalizado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "institución docente": { "pos": "n", "pol": "0.375", "std": "0.0" }, "institución educacional": { "pos": "n", "pol": "0.375", "std": "0.0" }, "instructivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "instrumental": { "pos": "a", "pol": "0.313", "std": "0.442" }, "integrador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "integrante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "integridad": { "pos": "n", "pol": "0.333", "std": "0.125" }, "integridad personal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "inteligencia": { "pos": "n", "pol": "0.275", "std": "0.105" }, "intencionado": { "pos": "a", "pol": "0.438", "std": "0.12" }, "intencionalidad": { "pos": "n", "pol": "0.292", "std": "0.289" }, "intensional": { "pos": "a", "pol": "0.375", "std": "0.0" }, "interactivo": { "pos": "a", "pol": "0.375", "std": "0.177" }, "intercambiabilidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "intercambiable": { "pos": "a", "pol": "0.375", "std": "0.177" }, "interconfesional": { "pos": "a", "pol": "0.375", "std": "0.0" }, "interesado": { "pos": "a", "pol": "0.313", "std": "0.088" }, "interesar": { "pos": "v", "pol": "0.333", "std": "0.545" }, "intermolecular": { "pos": "a", "pol": "0.375", "std": "0.0" }, "internarse": { "pos": "v", "pol": "0.375", "std": "0.53" }, "interno": { "pos": "a", "pol": "0.281", "std": "0.231" }, "interpersonal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "interpretativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "intersexual": { "pos": "a", "pol": "0.313", "std": "0.088" }, "interés personal": { "pos": "n", "pol": "0.313", "std": "0.088" }, "interés simple": { "pos": "n", "pol": "0.375", "std": "0.0" }, "intrigante": { "pos": "a", "pol": "0.313", "std": "0.088" }, "introvertido": { "pos": "n", "pol": "0.25", "std": "0.0" }, "investigador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "involucrado": { "pos": "a", "pol": "0.313", "std": "0.088" }, "inyectable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ir contra": { "pos": "v", "pol": "0.375", "std": "0.0" }, "ir de gira": { "pos": "v", "pol": "0.313", "std": "0.088" }, "irremediable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "irreparable": { "pos": "a", "pol": "0.313", "std": "0.088" }, "irreprimibilidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "irreprimible": { "pos": "n", "pol": "0.375", "std": "0.0" }, "irrompible": { "pos": "a", "pol": "0.313", "std": "0.088" }, "isótropo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "izado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "jardín del Edén": { "pos": "n", "pol": "0.375", "std": "0.0" }, "jerga": { "pos": "a", "pol": "0.375", "std": "0.0" }, "jesuita": { "pos": "a", "pol": "0.375", "std": "0.0" }, "jesuítico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "jet set": { "pos": "n", "pol": "0.375", "std": "0.0" }, "jocosamente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "jocosidad": { "pos": "n", "pol": "0.275", "std": "0.265" }, "jodido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "jonrón": { "pos": "v", "pol": "0.375", "std": "0.0" }, "jubileo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "juntado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "junto": { "pos": "a", "pol": "0.375", "std": "0.0" }, "juramento hipocrático": { "pos": "n", "pol": "0.375", "std": "0.0" }, "jurar renunciar a": { "pos": "v", "pol": "0.375", "std": "0.0" }, "justificadamente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "lacrar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "lactar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "lacónico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "largo": { "pos": "a", "pol": "0.3", "std": "0.137" }, "lavable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "laxar": { "pos": "v", "pol": "0.375", "std": "0.619" }, "lazo azul": { "pos": "n", "pol": "0.375", "std": "0.0" }, "lechero": { "pos": "a", "pol": "0.375", "std": "0.0" }, "legible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "legitimar": { "pos": "v", "pol": "0.292", "std": "0.125" }, "legítimo": { "pos": "a", "pol": "0.411", "std": "0.125" }, "lejano": { "pos": "a", "pol": "0.292", "std": "0.105" }, "lente anastigmática": { "pos": "n", "pol": "0.375", "std": "0.0" }, "liberal": { "pos": "a", "pol": "0.438", "std": "0.12" }, "liberalidad": { "pos": "n", "pol": "0.313", "std": "0.177" }, "libertad de prensa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "libertario": { "pos": "n", "pol": "0.313", "std": "0.354" }, "licenciarse": { "pos": "v", "pol": "0.375", "std": "0.0" }, "lidiar con": { "pos": "v", "pol": "0.375", "std": "0.0" }, "lila": { "pos": "a", "pol": "0.375", "std": "0.0" }, "liliáceo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "limpiador": { "pos": "a", "pol": "0.313", "std": "0.177" }, "limpio": { "pos": "n", "pol": "0.375", "std": "0.0" }, "liquidado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "liquidador": { "pos": "n", "pol": "0.375", "std": "0.0" }, "lisonjear": { "pos": "v", "pol": "0.375", "std": "0.0" }, "listo": { "pos": "a", "pol": "0.387", "std": "0.15" }, "liviano": { "pos": "a", "pol": "0.375", "std": "0.0" }, "llegar al nivel": { "pos": "v", "pol": "0.375", "std": "0.0" }, "lleno": { "pos": "a", "pol": "0.321", "std": "0.134" }, "lloricoso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "llovido": { "pos": "n", "pol": "0.375", "std": "0.0" }, "lo certero": { "pos": "n", "pol": "0.375", "std": "0.0" }, "lo directo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "lob": { "pos": "n", "pol": "0.375", "std": "0.0" }, "longanimidad": { "pos": "n", "pol": "0.313", "std": "0.177" }, "longevo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "longitudinalmente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "loza china": { "pos": "n", "pol": "0.375", "std": "0.0" }, "lucrar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "lucrativo": { "pos": "a", "pol": "0.438", "std": "0.177" }, "lucro": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ludita": { "pos": "n", "pol": "0.375", "std": "0.0" }, "lugar de interés turístico": { "pos": "n", "pol": "0.375", "std": "0.0" }, "lugarteniente": { "pos": "n", "pol": "0.375", "std": "0.0" }, "lujoso": { "pos": "a", "pol": "0.375", "std": "0.313" }, "lujurioso": { "pos": "a", "pol": "0.3", "std": "0.19" }, "luminosidad": { "pos": "n", "pol": "0.417", "std": "0.144" }, "luminoso": { "pos": "a", "pol": "0.344", "std": "0.0" }, "lícito": { "pos": "a", "pol": "0.344", "std": "0.072" }, "líquido": { "pos": "a", "pol": "0.275", "std": "0.163" }, "lívido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "lógica": { "pos": "n", "pol": "0.292", "std": "0.281" }, "lúbrico": { "pos": "a", "pol": "0.313", "std": "0.177" }, "lúcido": { "pos": "a", "pol": "0.417", "std": "0.144" }, "madre superiora": { "pos": "n", "pol": "0.375", "std": "0.0" }, "maduro": { "pos": "a", "pol": "0.453", "std": "0.104" }, "maestría": { "pos": "n", "pol": "0.281", "std": "0.239" }, "magenta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "magnificencia": { "pos": "n", "pol": "0.35", "std": "0.326" }, "magnánimo": { "pos": "a", "pol": "0.438", "std": "0.088" }, "majeza": { "pos": "n", "pol": "0.438", "std": "0.354" }, "malcasarse": { "pos": "v", "pol": "0.375", "std": "0.0" }, "maleable": { "pos": "a", "pol": "0.375", "std": "0.217" }, "malva": { "pos": "a", "pol": "0.375", "std": "0.0" }, "manejabilidad": { "pos": "n", "pol": "0.333", "std": "0.072" }, "manicura": { "pos": "n", "pol": "0.375", "std": "0.0" }, "manifiesto": { "pos": "a", "pol": "0.354", "std": "0.094" }, "manso": { "pos": "a", "pol": "0.281", "std": "0.063" }, "mantenible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mantenido": { "pos": "a", "pol": "0.375", "std": "0.191" }, "mantenimiento del coche": { "pos": "n", "pol": "0.375", "std": "0.0" }, "manualidad": { "pos": "n", "pol": "0.313", "std": "0.088" }, "manzana silvestre": { "pos": "n", "pol": "0.375", "std": "0.0" }, "maravilla": { "pos": "n", "pol": "0.417", "std": "0.363" }, "marica": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mariquita": { "pos": "a", "pol": "0.375", "std": "0.0" }, "marrullería": { "pos": "n", "pol": "0.375", "std": "0.0" }, "marrón": { "pos": "a", "pol": "0.375", "std": "0.0" }, "masivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "masoquista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "masticable": { "pos": "a", "pol": "0.438", "std": "0.088" }, "matemáticamente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "maullido": { "pos": "n", "pol": "0.375", "std": "0.0" }, "maximizar": { "pos": "v", "pol": "0.313", "std": "0.177" }, "maña": { "pos": "n", "pol": "0.3", "std": "0.163" }, "mecanismo acústico": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mecenazgo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "medicar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "medicinar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "medidas": { "pos": "n", "pol": "0.375", "std": "0.0" }, "meditativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "megalomanía": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mejora": { "pos": "n", "pol": "0.328", "std": "0.297" }, "mejorado": { "pos": "a", "pol": "0.417", "std": "0.072" }, "mejorar": { "pos": "v", "pol": "0.281", "std": "0.189" }, "melódico": { "pos": "a", "pol": "0.313", "std": "0.53" }, "memorable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mendicante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mensual": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mental": { "pos": "a", "pol": "0.292", "std": "0.144" }, "mente": { "pos": "v", "pol": "0.375", "std": "0.0" }, "menudo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "merecer": { "pos": "v", "pol": "0.438", "std": "0.088" }, "meritocracia": { "pos": "n", "pol": "0.313", "std": "0.088" }, "mesomorfo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mesura": { "pos": "n", "pol": "0.375", "std": "0.0" }, "metalistería": { "pos": "n", "pol": "0.375", "std": "0.0" }, "meticuloso": { "pos": "a", "pol": "0.344", "std": "0.373" }, "metódico": { "pos": "a", "pol": "0.375", "std": "0.072" }, "miau": { "pos": "n", "pol": "0.375", "std": "0.0" }, "microfonación": { "pos": "n", "pol": "0.375", "std": "0.0" }, "milagroso": { "pos": "a", "pol": "0.375", "std": "0.265" }, "mimoso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mimético": { "pos": "a", "pol": "0.313", "std": "0.088" }, "mirmecófilo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "moderno": { "pos": "a", "pol": "0.328", "std": "0.176" }, "modestia": { "pos": "n", "pol": "0.313", "std": "0.0" }, "modificable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "modificado": { "pos": "a", "pol": "0.292", "std": "0.144" }, "momentáneo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mono": { "pos": "a", "pol": "0.469", "std": "0.298" }, "monosémico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "montado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "monárquico": { "pos": "a", "pol": "0.375", "std": "0.088" }, "monástico": { "pos": "a", "pol": "0.313", "std": "0.0" }, "moral": { "pos": "n", "pol": "0.25", "std": "0.072" }, "moralizar": { "pos": "v", "pol": "0.375", "std": "0.144" }, "motivador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "movible": { "pos": "a", "pol": "0.292", "std": "0.191" }, "muchachil": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mucho pedir": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mucilaginoso": { "pos": "a", "pol": "0.313", "std": "0.0" }, "mudra": { "pos": "n", "pol": "0.375", "std": "0.0" }, "muescar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "mugido": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mujer de peso": { "pos": "n", "pol": "0.375", "std": "0.0" }, "multiforme": { "pos": "a", "pol": "0.375", "std": "0.0" }, "mundial": { "pos": "a", "pol": "0.275", "std": "0.209" }, "musculoso": { "pos": "a", "pol": "0.375", "std": "0.088" }, "musical": { "pos": "a", "pol": "0.375", "std": "0.088" }, "musicológicamente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "mutabilidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "mérito": { "pos": "n", "pol": "0.417", "std": "0.217" }, "métrico": { "pos": "a", "pol": "0.313", "std": "0.088" }, "mímico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "móvil": { "pos": "a", "pol": "0.313", "std": "0.265" }, "música clásica": { "pos": "n", "pol": "0.375", "std": "0.0" }, "música pop": { "pos": "n", "pol": "0.375", "std": "0.0" }, "naranja": { "pos": "a", "pol": "0.375", "std": "0.0" }, "narrativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "negable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "neoliberal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "neto": { "pos": "a", "pol": "0.313", "std": "0.088" }, "nivelado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "no": { "pos": "n", "pol": "0.375", "std": "0.0" }, "no estreñido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "no sectario": { "pos": "a", "pol": "0.375", "std": "0.0" }, "nones": { "pos": "n", "pol": "0.375", "std": "0.0" }, "normal": { "pos": "a", "pol": "0.393", "std": "0.157" }, "normalidad": { "pos": "n", "pol": "0.292", "std": "0.144" }, "notoriedad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "novedoso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "numinoso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "nutricionalmente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "nutrir": { "pos": "v", "pol": "0.275", "std": "0.163" }, "nítido": { "pos": "a", "pol": "0.333", "std": "0.191" }, "nóstico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "obedecer": { "pos": "v", "pol": "0.375", "std": "0.395" }, "objetividad": { "pos": "n", "pol": "0.375", "std": "0.177" }, "objetivo": { "pos": "a", "pol": "0.313", "std": "0.217" }, "obsequioso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "observado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "observador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "obtenible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "obvia": { "pos": "a", "pol": "0.438", "std": "0.088" }, "obvio": { "pos": "a", "pol": "0.4", "std": "0.143" }, "occidentalizar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "ocioso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ocre": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ofertorio": { "pos": "n", "pol": "0.375", "std": "0.0" }, "oficina de empleo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "oficio": { "pos": "n", "pol": "0.333", "std": "0.279" }, "ok": { "pos": "n", "pol": "0.375", "std": "0.0" }, "okey": { "pos": "n", "pol": "0.375", "std": "0.0" }, "oliva": { "pos": "a", "pol": "0.375", "std": "0.0" }, "oliváceo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "oloroso": { "pos": "a", "pol": "0.375", "std": "0.439" }, "omitir": { "pos": "v", "pol": "0.313", "std": "0.265" }, "ondulante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "onomatopeico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "onomatopeya": { "pos": "n", "pol": "0.375", "std": "0.0" }, "operativo": { "pos": "a", "pol": "0.333", "std": "0.125" }, "operatorio": { "pos": "a", "pol": "0.375", "std": "0.0" }, "oratorio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ordenado": { "pos": "a", "pol": "0.292", "std": "0.102" }, "orgánico": { "pos": "a", "pol": "0.292", "std": "0.282" }, "orientación religiosa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "orientador": { "pos": "n", "pol": "0.375", "std": "0.0" }, "originalidad": { "pos": "n", "pol": "0.313", "std": "0.177" }, "ornamento arquitectónico": { "pos": "n", "pol": "0.375", "std": "0.0" }, "oro": { "pos": "a", "pol": "0.375", "std": "0.0" }, "otorgar una mitra": { "pos": "v", "pol": "0.375", "std": "0.0" }, "oxidativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pacificación": { "pos": "n", "pol": "0.333", "std": "0.0" }, "pacto": { "pos": "n", "pol": "0.281", "std": "0.072" }, "pacto de caballeros": { "pos": "n", "pol": "0.375", "std": "0.0" }, "palmear": { "pos": "v", "pol": "0.375", "std": "0.0" }, "pampa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "panegirista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "panóptico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "parable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "parangón": { "pos": "n", "pol": "0.375", "std": "0.0" }, "parchís": { "pos": "n", "pol": "0.375", "std": "0.0" }, "parecido": { "pos": "a", "pol": "0.344", "std": "0.063" }, "participante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "particular": { "pos": "a", "pol": "0.313", "std": "0.33" }, "partidista": { "pos": "a", "pol": "0.375", "std": "0.0" }, "partido": { "pos": "n", "pol": "0.292", "std": "0.52" }, "pasar sin dificultad": { "pos": "v", "pol": "0.375", "std": "0.0" }, "pase completo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "paseata": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pasiva": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pasivo": { "pos": "a", "pol": "0.313", "std": "0.354" }, "pasmoso": { "pos": "a", "pol": "0.313", "std": "0.177" }, "pastizal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pastura": { "pos": "n", "pol": "0.375", "std": "0.0" }, "paternalismo": { "pos": "n", "pol": "0.313", "std": "0.177" }, "paternalista": { "pos": "a", "pol": "0.375", "std": "0.0" }, "patidifuso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "patitieso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "patriotero": { "pos": "a", "pol": "0.25", "std": "0.0" }, "patrón oro": { "pos": "n", "pol": "0.313", "std": "0.265" }, "pedir": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pegadizo": { "pos": "a", "pol": "0.333", "std": "0.144" }, "peinado": { "pos": "a", "pol": "0.313", "std": "0.0" }, "penetrable": { "pos": "a", "pol": "0.333", "std": "0.072" }, "pensión alimenticia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pentecostalismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "percepción del sonido": { "pos": "n", "pol": "0.375", "std": "0.0" }, "perceptible": { "pos": "a", "pol": "0.344", "std": "0.072" }, "perdonable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "perfeccionamiento": { "pos": "n", "pol": "0.375", "std": "0.0" }, "perfeccionar": { "pos": "v", "pol": "0.425", "std": "0.105" }, "perfección": { "pos": "n", "pol": "0.281", "std": "0.204" }, "perfilado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "perfumado": { "pos": "a", "pol": "0.333", "std": "0.439" }, "pericia": { "pos": "n", "pol": "0.313", "std": "0.094" }, "perigeo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "permisible": { "pos": "a", "pol": "0.333", "std": "0.125" }, "permiso": { "pos": "n", "pol": "0.313", "std": "0.213" }, "perodicticus potto": { "pos": "n", "pol": "0.375", "std": "0.0" }, "persona emotiva": { "pos": "n", "pol": "0.375", "std": "0.0" }, "personificado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "perspicaz": { "pos": "a", "pol": "0.45", "std": "0.158" }, "perspicuidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "perspicuo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "persuasivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "pertinencia": { "pos": "n", "pol": "0.417", "std": "0.191" }, "pervertido": { "pos": "n", "pol": "0.375", "std": "0.0" }, "piano de media cola": { "pos": "n", "pol": "0.375", "std": "0.0" }, "picante": { "pos": "a", "pol": "0.292", "std": "0.246" }, "ping": { "pos": "n", "pol": "0.375", "std": "0.0" }, "placable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "placer": { "pos": "n", "pol": "0.304", "std": "0.318" }, "placer sexual": { "pos": "n", "pol": "0.375", "std": "0.0" }, "plan de emergencia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "plausibilidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "plausible": { "pos": "a", "pol": "0.313", "std": "0.12" }, "play-boy": { "pos": "n", "pol": "0.375", "std": "0.0" }, "playboy": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pleno": { "pos": "a", "pol": "0.438", "std": "0.088" }, "plus": { "pos": "n", "pol": "0.375", "std": "0.0" }, "polizón": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ponderable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "poner asientos": { "pos": "v", "pol": "0.375", "std": "0.0" }, "poner en movimiento": { "pos": "v", "pol": "0.375", "std": "0.0" }, "pop": { "pos": "n", "pol": "0.375", "std": "0.0" }, "popular": { "pos": "a", "pol": "0.375", "std": "0.157" }, "popularización": { "pos": "n", "pol": "0.375", "std": "0.0" }, "porcelana china": { "pos": "n", "pol": "0.313", "std": "0.088" }, "posesión ilegal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "positivista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "potable": { "pos": "a", "pol": "0.313", "std": "0.442" }, "potencia": { "pos": "n", "pol": "0.333", "std": "0.191" }, "potenciar": { "pos": "v", "pol": "0.375", "std": "0.53" }, "pragmatismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pragmático": { "pos": "a", "pol": "0.292", "std": "0.217" }, "preciarse": { "pos": "v", "pol": "0.375", "std": "0.0" }, "precisión": { "pos": "n", "pol": "0.406", "std": "0.161" }, "preconcertado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "preconizar": { "pos": "v", "pol": "0.313", "std": "0.265" }, "predigerido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "predilecto": { "pos": "n", "pol": "0.375", "std": "0.0" }, "predispuesto": { "pos": "a", "pol": "0.375", "std": "0.0" }, "predominante": { "pos": "a", "pol": "0.375", "std": "0.177" }, "preeminencia": { "pos": "n", "pol": "0.438", "std": "0.088" }, "prefabricado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "preferido": { "pos": "n", "pol": "0.375", "std": "0.0" }, "prejuzgado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "preliterario": { "pos": "a", "pol": "0.375", "std": "0.0" }, "premeditado": { "pos": "a", "pol": "0.417", "std": "0.072" }, "prestaciones": { "pos": "n", "pol": "0.375", "std": "0.0" }, "prestarse": { "pos": "v", "pol": "0.375", "std": "0.0" }, "presto": { "pos": "a", "pol": "0.313", "std": "0.277" }, "presumible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "presunto": { "pos": "a", "pol": "0.3", "std": "0.168" }, "prevalecer": { "pos": "v", "pol": "0.344", "std": "0.12" }, "prevenido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "previsible": { "pos": "a", "pol": "0.375", "std": "0.072" }, "primera división": { "pos": "n", "pol": "0.375", "std": "0.0" }, "primeros auxilios": { "pos": "n", "pol": "0.375", "std": "0.0" }, "primerísima calidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "primor": { "pos": "n", "pol": "0.375", "std": "0.0" }, "principal": { "pos": "a", "pol": "0.389", "std": "0.104" }, "principesco": { "pos": "a", "pol": "0.375", "std": "0.0" }, "principio del placer": { "pos": "n", "pol": "0.375", "std": "0.0" }, "priora": { "pos": "n", "pol": "0.375", "std": "0.0" }, "prisionero": { "pos": "a", "pol": "0.375", "std": "0.0" }, "privado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "privilegiar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "probable": { "pos": "a", "pol": "0.438", "std": "0.161" }, "procesado": { "pos": "a", "pol": "0.438", "std": "0.177" }, "procreador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "prodigio": { "pos": "n", "pol": "0.438", "std": "0.313" }, "prodigioso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "producción artística": { "pos": "n", "pol": "0.375", "std": "0.0" }, "profecía": { "pos": "n", "pol": "0.313", "std": "0.177" }, "profesión": { "pos": "n", "pol": "0.275", "std": "0.112" }, "proficiente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "profundo": { "pos": "a", "pol": "0.292", "std": "0.129" }, "profusión": { "pos": "n", "pol": "0.438", "std": "0.619" }, "programa de educación": { "pos": "n", "pol": "0.375", "std": "0.0" }, "programa educativo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "programa pedagógico": { "pos": "n", "pol": "0.375", "std": "0.0" }, "progresista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "proliferación": { "pos": "n", "pol": "0.281", "std": "0.415" }, "proliferar": { "pos": "v", "pol": "0.333", "std": "0.577" }, "prolongado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "prometer": { "pos": "v", "pol": "0.313", "std": "0.217" }, "prometerse": { "pos": "v", "pol": "0.375", "std": "0.0" }, "pronombre personal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pronto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pronunciable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "proporcionado": { "pos": "a", "pol": "0.35", "std": "0.168" }, "protector": { "pos": "a", "pol": "0.438", "std": "0.0" }, "provechoso": { "pos": "a", "pol": "0.417", "std": "0.072" }, "proveer de personal": { "pos": "v", "pol": "0.375", "std": "0.0" }, "providencial": { "pos": "a", "pol": "0.417", "std": "0.26" }, "pruebas circunstanciales": { "pos": "n", "pol": "0.375", "std": "0.0" }, "prístino": { "pos": "a", "pol": "0.313", "std": "0.088" }, "próstilo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "psicoterapéutico": { "pos": "a", "pol": "0.313", "std": "0.619" }, "pueblerino": { "pos": "a", "pol": "0.375", "std": "0.0" }, "puericultura": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pulcro": { "pos": "a", "pol": "0.375", "std": "0.072" }, "pulimiento": { "pos": "n", "pol": "0.375", "std": "0.0" }, "pulir": { "pos": "v", "pol": "0.417", "std": "0.459" }, "puntilloso": { "pos": "a", "pol": "0.281", "std": "0.361" }, "puntualidad": { "pos": "n", "pol": "0.375", "std": "0.088" }, "puro": { "pos": "a", "pol": "0.409", "std": "0.128" }, "purulento": { "pos": "a", "pol": "0.375", "std": "0.0" }, "putativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "público": { "pos": "a", "pol": "0.438", "std": "0.072" }, "quedar pasmado": { "pos": "v", "pol": "0.375", "std": "0.0" }, "quincenal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "quirúrgico": { "pos": "a", "pol": "0.375", "std": "0.191" }, "qì": { "pos": "n", "pol": "0.375", "std": "0.0" }, "racemoso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "racionalista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "racista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "radiante": { "pos": "a", "pol": "0.333", "std": "0.25" }, "rapidez mental": { "pos": "n", "pol": "0.375", "std": "0.0" }, "rascuñado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rasguear": { "pos": "v", "pol": "0.375", "std": "0.0" }, "rasgueo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "rasguñado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "raspado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ratificación": { "pos": "n", "pol": "0.313", "std": "0.088" }, "raudo": { "pos": "a", "pol": "0.438", "std": "0.088" }, "razonado": { "pos": "a", "pol": "0.333", "std": "0.26" }, "reactivado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reanimar": { "pos": "v", "pol": "0.266", "std": "0.323" }, "reavivado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rebasar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "rebosante": { "pos": "a", "pol": "0.313", "std": "0.265" }, "recabar": { "pos": "a", "pol": "0.375", "std": "0.0" }, "recaudo": { "pos": "n", "pol": "0.375", "std": "0.354" }, "rechino": { "pos": "n", "pol": "0.375", "std": "0.0" }, "recomendación": { "pos": "n", "pol": "0.275", "std": "0.056" }, "recomendar": { "pos": "v", "pol": "0.375", "std": "0.177" }, "recompensa al mérito": { "pos": "n", "pol": "0.375", "std": "0.0" }, "reconocible": { "pos": "a", "pol": "0.458", "std": "0.072" }, "reconocido": { "pos": "a", "pol": "0.429", "std": "0.236" }, "recrearse": { "pos": "v", "pol": "0.438", "std": "0.442" }, "rector": { "pos": "a", "pol": "0.375", "std": "0.0" }, "red de seguridad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "redefinir": { "pos": "v", "pol": "0.313", "std": "0.088" }, "redentor": { "pos": "a", "pol": "0.375", "std": "0.354" }, "redimible": { "pos": "a", "pol": "0.375", "std": "0.442" }, "redomado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reducible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reductible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reductor": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reemplazable": { "pos": "a", "pol": "0.438", "std": "0.0" }, "referendo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "referéndum": { "pos": "n", "pol": "0.375", "std": "0.0" }, "refinado": { "pos": "a", "pol": "0.361", "std": "0.121" }, "refinamiento": { "pos": "n", "pol": "0.4", "std": "0.338" }, "reformista": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reforzado": { "pos": "a", "pol": "0.375", "std": "0.277" }, "refrendación": { "pos": "n", "pol": "0.375", "std": "0.0" }, "refulgente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "regalonear": { "pos": "v", "pol": "0.375", "std": "0.0" }, "regenerado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "regenerador": { "pos": "a", "pol": "0.375", "std": "0.382" }, "regenerarse": { "pos": "v", "pol": "0.375", "std": "0.0" }, "regio": { "pos": "a", "pol": "0.406", "std": "0.125" }, "reglar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "regodearse": { "pos": "v", "pol": "0.313", "std": "0.177" }, "regulado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "regulador": { "pos": "a", "pol": "0.375", "std": "0.0" }, "regularidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "regularizar": { "pos": "v", "pol": "0.333", "std": "0.125" }, "rehabilitar": { "pos": "v", "pol": "0.313", "std": "0.217" }, "reinante": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reincidente": { "pos": "n", "pol": "0.375", "std": "0.0" }, "relajante": { "pos": "a", "pol": "0.313", "std": "0.0" }, "relinquir": { "pos": "v", "pol": "0.375", "std": "0.0" }, "reluciente": { "pos": "a", "pol": "0.438", "std": "0.063" }, "relucir": { "pos": "v", "pol": "0.275", "std": "0.143" }, "rememorar": { "pos": "v", "pol": "0.292", "std": "0.191" }, "remilgado": { "pos": "n", "pol": "0.375", "std": "0.0" }, "reminiscente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "remota": { "pos": "a", "pol": "0.375", "std": "0.0" }, "remunerado": { "pos": "a", "pol": "0.375", "std": "0.072" }, "remunerativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "renaciente": { "pos": "a", "pol": "0.375", "std": "0.0" }, "renombre": { "pos": "n", "pol": "0.375", "std": "0.0" }, "renovado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reparar": { "pos": "v", "pol": "0.292", "std": "0.072" }, "repique": { "pos": "n", "pol": "0.375", "std": "0.0" }, "reproductor": { "pos": "a", "pol": "0.375", "std": "0.0" }, "repuesto": { "pos": "a", "pol": "0.375", "std": "0.0" }, "repujado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reputar": { "pos": "v", "pol": "0.438", "std": "0.442" }, "requerido": { "pos": "a", "pol": "0.375", "std": "0.072" }, "requisición": { "pos": "n", "pol": "0.375", "std": "0.0" }, "rescatable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reservado": { "pos": "a", "pol": "0.375", "std": "0.088" }, "resituado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "resonante": { "pos": "a", "pol": "0.375", "std": "0.088" }, "respaldar": { "pos": "v", "pol": "0.275", "std": "0.209" }, "respeto": { "pos": "n", "pol": "0.354", "std": "0.234" }, "respetos": { "pos": "n", "pol": "0.375", "std": "0.0" }, "respuesta habilidosa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "restablecido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "restrictivo": { "pos": "a", "pol": "0.406", "std": "0.072" }, "resuelto": { "pos": "a", "pol": "0.472", "std": "0.108" }, "resumidamente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "retentivo": { "pos": "a", "pol": "0.292", "std": "0.315" }, "reticente": { "pos": "a", "pol": "0.313", "std": "0.088" }, "retratado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "retrotaer": { "pos": "v", "pol": "0.375", "std": "0.0" }, "retráctil": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reutilizable": { "pos": "a", "pol": "0.438", "std": "0.177" }, "revelado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "reverberante": { "pos": "a", "pol": "0.313", "std": "0.0" }, "reverdecimiento": { "pos": "n", "pol": "0.375", "std": "0.0" }, "reversible": { "pos": "a", "pol": "0.35", "std": "0.259" }, "revertido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "revocable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "revoltoso": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "revolucionario": { "pos": "a", "pol": "0.313", "std": "0.088" }, "rico": { "pos": "a", "pol": "0.356", "std": "0.185" }, "rigoroso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rimado": { "pos": "a", "pol": "0.375", "std": "0.177" }, "riqueza": { "pos": "n", "pol": "0.292", "std": "0.345" }, "rito religioso": { "pos": "n", "pol": "0.313", "std": "0.088" }, "robustez": { "pos": "n", "pol": "0.292", "std": "0.125" }, "robusto": { "pos": "a", "pol": "0.391", "std": "0.205" }, "rojo-rosado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rollizo": { "pos": "a", "pol": "0.438", "std": "0.0" }, "rosa": { "pos": "a", "pol": "0.292", "std": "0.125" }, "rosado": { "pos": "a", "pol": "0.292", "std": "0.072" }, "rosbif": { "pos": "n", "pol": "0.375", "std": "0.0" }, "rubicundez": { "pos": "n", "pol": "0.375", "std": "0.0" }, "runrún": { "pos": "n", "pol": "0.375", "std": "0.0" }, "rápido": { "pos": "a", "pol": "0.318", "std": "0.194" }, "réplica ingeniosa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "rítmico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "rústico": { "pos": "a", "pol": "0.292", "std": "0.072" }, "sabido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sabroso": { "pos": "a", "pol": "0.333", "std": "0.068" }, "sacafaltas": { "pos": "n", "pol": "0.313", "std": "0.0" }, "sacar partido": { "pos": "v", "pol": "0.375", "std": "0.0" }, "sacar una muestra": { "pos": "v", "pol": "0.375", "std": "0.0" }, "saciarse": { "pos": "v", "pol": "0.375", "std": "0.0" }, "sagrado": { "pos": "a", "pol": "0.438", "std": "0.063" }, "salero": { "pos": "n", "pol": "0.275", "std": "0.24" }, "salud": { "pos": "n", "pol": "0.375", "std": "0.265" }, "salvo": { "pos": "a", "pol": "0.313", "std": "0.088" }, "sanar": { "pos": "v", "pol": "0.35", "std": "0.198" }, "sanidad": { "pos": "n", "pol": "0.375", "std": "0.177" }, "sanitizar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "santificación": { "pos": "n", "pol": "0.375", "std": "0.0" }, "santificar": { "pos": "v", "pol": "0.292", "std": "0.0" }, "santurrón": { "pos": "a", "pol": "0.375", "std": "0.0" }, "satinado": { "pos": "a", "pol": "0.375", "std": "0.072" }, "satisfaciente": { "pos": "n", "pol": "0.375", "std": "0.0" }, "saturnales": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sazonado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "secundar": { "pos": "v", "pol": "0.292", "std": "0.315" }, "sedante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sedoso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "segado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "segregado": { "pos": "a", "pol": "0.375", "std": "0.177" }, "selección natural": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sello de aprobación": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sello distintivo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "semanal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "semanario": { "pos": "a", "pol": "0.375", "std": "0.0" }, "semejante": { "pos": "a", "pol": "0.354", "std": "0.065" }, "semestral": { "pos": "a", "pol": "0.375", "std": "0.0" }, "semiautomático": { "pos": "a", "pol": "0.313", "std": "0.088" }, "semivocal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "senil": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sensacional": { "pos": "a", "pol": "0.458", "std": "0.331" }, "sensatez": { "pos": "n", "pol": "0.357", "std": "0.094" }, "sensitivo": { "pos": "a", "pol": "0.313", "std": "0.0" }, "sensual": { "pos": "a", "pol": "0.417", "std": "0.125" }, "sentencia general": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sentido del bien y del mal": { "pos": "n", "pol": "0.375", "std": "0.0" }, "separable": { "pos": "a", "pol": "0.313", "std": "0.072" }, "separado": { "pos": "a", "pol": "0.275", "std": "0.144" }, "separatista": { "pos": "a", "pol": "0.375", "std": "0.0" }, "separativo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ser campeón": { "pos": "v", "pol": "0.375", "std": "0.0" }, "serendipismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "seriedad": { "pos": "n", "pol": "0.275", "std": "0.424" }, "serrar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "servicial": { "pos": "a", "pol": "0.469", "std": "0.359" }, "servicio de asesoramiento": { "pos": "n", "pol": "0.375", "std": "0.0" }, "servil": { "pos": "a", "pol": "0.313", "std": "0.12" }, "sesudo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sexy": { "pos": "a", "pol": "0.375", "std": "0.177" }, "shag": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sibilante": { "pos": "n", "pol": "0.375", "std": "0.0" }, "significación": { "pos": "n", "pol": "0.292", "std": "0.217" }, "silencioso": { "pos": "a", "pol": "0.375", "std": "0.072" }, "simetría": { "pos": "n", "pol": "0.292", "std": "0.144" }, "similar": { "pos": "a", "pol": "0.35", "std": "0.068" }, "simulado": { "pos": "a", "pol": "0.313", "std": "0.0" }, "simétrico": { "pos": "a", "pol": "0.375", "std": "0.265" }, "sin pretensiones": { "pos": "r", "pol": "0.375", "std": "0.0" }, "sin árboles": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sinceramente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "sinceridad": { "pos": "n", "pol": "0.313", "std": "0.243" }, "sinecdóquico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sinfónico": { "pos": "a", "pol": "0.313", "std": "0.53" }, "sinónimo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sistema de grabación": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sistema del gas": { "pos": "n", "pol": "0.375", "std": "0.0" }, "soberbio": { "pos": "a", "pol": "0.438", "std": "0.265" }, "sobrealimentado": { "pos": "a", "pol": "0.375", "std": "0.088" }, "sobrecogido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sobreexplotación": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sobresaliente": { "pos": "a", "pol": "0.406", "std": "0.472" }, "sobresaltado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sobreutilización": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sobrevalorar": { "pos": "v", "pol": "0.375", "std": "0.177" }, "sobrexcitado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "social": { "pos": "a", "pol": "0.393", "std": "0.278" }, "socializado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "socialmente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "sofisticado": { "pos": "a", "pol": "0.406", "std": "0.331" }, "soleado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "solemnidad": { "pos": "n", "pol": "0.292", "std": "0.289" }, "solicitado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "solicitar": { "pos": "a", "pol": "0.375", "std": "0.0" }, "solidez": { "pos": "n", "pol": "0.479", "std": "0.33" }, "solucionable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "solucionado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "solícito": { "pos": "a", "pol": "0.438", "std": "0.088" }, "sonido vocálico": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sonora": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sonoro": { "pos": "a", "pol": "0.292", "std": "0.125" }, "sonrisa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "sonrosado": { "pos": "a", "pol": "0.458", "std": "0.191" }, "sospechado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sprint": { "pos": "n", "pol": "0.375", "std": "0.0" }, "stigmatismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "suave al tacto": { "pos": "a", "pol": "0.375", "std": "0.0" }, "suavidad": { "pos": "n", "pol": "0.281", "std": "0.204" }, "subjetivo": { "pos": "a", "pol": "0.417", "std": "0.144" }, "substancia": { "pos": "n", "pol": "0.375", "std": "0.0" }, "substancial": { "pos": "a", "pol": "0.375", "std": "0.088" }, "substituible": { "pos": "a", "pol": "0.375", "std": "0.265" }, "substractivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "subsónico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sucintamente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "sucinto": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sugestionable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sugestivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sumiso": { "pos": "a", "pol": "0.475", "std": "0.153" }, "suntuoso": { "pos": "a", "pol": "0.375", "std": "0.361" }, "superable": { "pos": "a", "pol": "0.333", "std": "0.0" }, "superioridad": { "pos": "n", "pol": "0.406", "std": "0.2" }, "superrefinado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "supersensible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "supervisado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "suplementario": { "pos": "a", "pol": "0.333", "std": "0.072" }, "supositivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "supremo": { "pos": "a", "pol": "0.438", "std": "0.063" }, "suprimible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "suprimido": { "pos": "a", "pol": "0.375", "std": "0.088" }, "surtir": { "pos": "v", "pol": "0.375", "std": "0.0" }, "susceptible": { "pos": "a", "pol": "0.469", "std": "0.063" }, "suspicaz": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sustituible": { "pos": "a", "pol": "0.375", "std": "0.0" }, "sustractivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "suturar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "sólido": { "pos": "a", "pol": "0.292", "std": "0.329" }, "sónico": { "pos": "a", "pol": "0.375", "std": "0.088" }, "tal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "talante": { "pos": "n", "pol": "0.375", "std": "0.331" }, "talento": { "pos": "n", "pol": "0.458", "std": "0.451" }, "taoismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tapa de objetivo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "techie": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tecnológico": { "pos": "a", "pol": "0.313", "std": "0.265" }, "telescópico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tempestivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "tendencioso": { "pos": "a", "pol": "0.292", "std": "0.072" }, "tentable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "terapia autógena": { "pos": "n", "pol": "0.375", "std": "0.0" }, "terminable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "terroso": { "pos": "a", "pol": "0.313", "std": "0.088" }, "terso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "terylene": { "pos": "n", "pol": "0.375", "std": "0.0" }, "testado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ticket": { "pos": "n", "pol": "0.313", "std": "0.088" }, "tiempo reglamentario": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tintineante": { "pos": "a", "pol": "0.417", "std": "0.072" }, "tipicidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tique": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tirotoxicosis": { "pos": "n", "pol": "0.375", "std": "0.0" }, "titulado": { "pos": "a", "pol": "0.375", "std": "0.177" }, "titánico": { "pos": "a", "pol": "0.313", "std": "0.088" }, "tolerante": { "pos": "a", "pol": "0.3", "std": "0.153" }, "tomar para sí": { "pos": "v", "pol": "0.375", "std": "0.0" }, "tomarse": { "pos": "v", "pol": "0.375", "std": "0.0" }, "tostado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "traje de campaña": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tranquilizarse": { "pos": "v", "pol": "0.313", "std": "0.177" }, "transcendencia": { "pos": "n", "pol": "0.333", "std": "0.191" }, "transformable": { "pos": "a", "pol": "0.313", "std": "0.088" }, "transformado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "transitable": { "pos": "a", "pol": "0.313", "std": "0.088" }, "transmutable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "trasmutable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "trasparencia": { "pos": "n", "pol": "0.313", "std": "0.177" }, "tratado": { "pos": "n", "pol": "0.25", "std": "0.177" }, "tratado internacional": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tratamiento de belleza": { "pos": "n", "pol": "0.375", "std": "0.0" }, "trienal": { "pos": "a", "pol": "0.375", "std": "0.0" }, "trisecar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "trisectar": { "pos": "v", "pol": "0.375", "std": "0.0" }, "triunfar": { "pos": "v", "pol": "0.313", "std": "0.26" }, "tropismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "trípode de cámara": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tuerto": { "pos": "a", "pol": "0.375", "std": "0.0" }, "turista": { "pos": "n", "pol": "0.375", "std": "0.0" }, "tutelar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "técnicamente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "típico": { "pos": "a", "pol": "0.375", "std": "0.213" }, "tórrido": { "pos": "a", "pol": "0.313", "std": "0.177" }, "ultramoderno": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ultrasónico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "unanimidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ungidor": { "pos": "n", "pol": "0.375", "std": "0.0" }, "unido": { "pos": "a", "pol": "0.391", "std": "0.134" }, "unitario": { "pos": "a", "pol": "0.375", "std": "0.0" }, "universal": { "pos": "a", "pol": "0.271", "std": "0.188" }, "unión aduanera": { "pos": "n", "pol": "0.375", "std": "0.0" }, "urbanidad": { "pos": "n", "pol": "0.475", "std": "0.125" }, "usado": { "pos": "a", "pol": "0.281", "std": "0.144" }, "usura": { "pos": "n", "pol": "0.313", "std": "0.088" }, "utilitario": { "pos": "a", "pol": "0.375", "std": "0.0" }, "utilizable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "utopía": { "pos": "n", "pol": "0.313", "std": "0.237" }, "vacaciones": { "pos": "n", "pol": "0.375", "std": "0.0" }, "vajilla de porcelana": { "pos": "n", "pol": "0.375", "std": "0.0" }, "validación": { "pos": "n", "pol": "0.375", "std": "0.0" }, "validar": { "pos": "v", "pol": "0.469", "std": "0.102" }, "validez": { "pos": "n", "pol": "0.333", "std": "0.402" }, "vasto": { "pos": "a", "pol": "0.438", "std": "0.088" }, "vaticinio": { "pos": "n", "pol": "0.292", "std": "0.144" }, "vehemente": { "pos": "a", "pol": "0.438", "std": "0.0" }, "vendado": { "pos": "a", "pol": "0.375", "std": "0.0" }, "vendible": { "pos": "a", "pol": "0.438", "std": "0.12" }, "veneración": { "pos": "n", "pol": "0.313", "std": "0.0" }, "ventaja": { "pos": "n", "pol": "0.292", "std": "0.211" }, "veracidad": { "pos": "n", "pol": "0.313", "std": "0.088" }, "veraneante": { "pos": "n", "pol": "0.375", "std": "0.0" }, "verdad": { "pos": "n", "pol": "0.3", "std": "0.274" }, "verdaderamente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "verdadero": { "pos": "a", "pol": "0.453", "std": "0.188" }, "verde-amarillento": { "pos": "a", "pol": "0.375", "std": "0.0" }, "verde-amarillo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "verde jade": { "pos": "a", "pol": "0.375", "std": "0.0" }, "verde salvia": { "pos": "a", "pol": "0.375", "std": "0.0" }, "verdemar": { "pos": "a", "pol": "0.375", "std": "0.0" }, "verdigris": { "pos": "a", "pol": "0.375", "std": "0.0" }, "verdoso": { "pos": "a", "pol": "0.375", "std": "0.0" }, "verificable": { "pos": "a", "pol": "0.438", "std": "0.177" }, "verosímil": { "pos": "a", "pol": "0.333", "std": "0.072" }, "versátil": { "pos": "a", "pol": "0.417", "std": "0.289" }, "verídico": { "pos": "a", "pol": "0.458", "std": "0.402" }, "veste": { "pos": "n", "pol": "0.375", "std": "0.0" }, "vestido de cóctel": { "pos": "n", "pol": "0.375", "std": "0.0" }, "viabilidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "viaje de lujo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "viaje de placer": { "pos": "n", "pol": "0.375", "std": "0.0" }, "vigoroso": { "pos": "a", "pol": "0.417", "std": "0.177" }, "villancico": { "pos": "n", "pol": "0.313", "std": "0.0" }, "villancico de navidad": { "pos": "n", "pol": "0.375", "std": "0.0" }, "vino de misa": { "pos": "n", "pol": "0.375", "std": "0.0" }, "violable": { "pos": "a", "pol": "0.375", "std": "0.0" }, "virgen": { "pos": "a", "pol": "0.375", "std": "0.265" }, "virginal": { "pos": "a", "pol": "0.417", "std": "0.144" }, "virtual": { "pos": "a", "pol": "0.313", "std": "0.088" }, "virtuosismo": { "pos": "n", "pol": "0.375", "std": "0.0" }, "visar": { "pos": "v", "pol": "0.375", "std": "0.177" }, "viscoso": { "pos": "a", "pol": "0.281", "std": "0.063" }, "visible": { "pos": "a", "pol": "0.458", "std": "0.125" }, "visto bueno": { "pos": "n", "pol": "0.375", "std": "0.0" }, "vistoso": { "pos": "a", "pol": "0.313", "std": "0.265" }, "vital": { "pos": "a", "pol": "0.464", "std": "0.157" }, "vitalidad": { "pos": "n", "pol": "0.375", "std": "0.344" }, "vitalizar": { "pos": "v", "pol": "0.438", "std": "0.265" }, "vivace": { "pos": "a", "pol": "0.375", "std": "0.0" }, "vivacidad": { "pos": "n", "pol": "0.333", "std": "0.184" }, "vivaz": { "pos": "a", "pol": "0.469", "std": "0.146" }, "vivazmente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "viveza": { "pos": "n", "pol": "0.268", "std": "0.098" }, "vivificar": { "pos": "v", "pol": "0.438", "std": "0.265" }, "vivir a costa de": { "pos": "v", "pol": "0.375", "std": "0.0" }, "vivir de gorra": { "pos": "v", "pol": "0.375", "std": "0.0" }, "vivo": { "pos": "a", "pol": "0.33", "std": "0.188" }, "voleibol": { "pos": "n", "pol": "0.375", "std": "0.0" }, "volitivo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "voluminoso": { "pos": "a", "pol": "0.292", "std": "0.0" }, "volumétricamente": { "pos": "r", "pol": "0.375", "std": "0.0" }, "voluntario": { "pos": "n", "pol": "0.25", "std": "0.25" }, "vírgen": { "pos": "a", "pol": "0.375", "std": "0.0" }, "vítor": { "pos": "n", "pol": "0.375", "std": "0.088" }, "vítores": { "pos": "n", "pol": "0.375", "std": "0.0" }, "vívido": { "pos": "a", "pol": "0.375", "std": "0.0" }, "yang": { "pos": "n", "pol": "0.375", "std": "0.0" }, "yoga": { "pos": "n", "pol": "0.313", "std": "0.088" }, "zigomorfo": { "pos": "a", "pol": "0.375", "std": "0.0" }, "ágil": { "pos": "a", "pol": "0.479", "std": "0.094" }, "ángel custodio": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ángel de la guarda": { "pos": "n", "pol": "0.375", "std": "0.0" }, "área de conocimiento": { "pos": "n", "pol": "0.375", "std": "0.0" }, "épico": { "pos": "a", "pol": "0.375", "std": "0.354" }, "étnico": { "pos": "a", "pol": "0.375", "std": "0.0" }, "éxito": { "pos": "n", "pol": "0.3", "std": "0.143" }, "éxito absoluto": { "pos": "n", "pol": "0.375", "std": "0.0" }, "ídolo": { "pos": "n", "pol": "0.313", "std": "0.12" }, "índice de precios": { "pos": "n", "pol": "0.375", "std": "0.0" }, "único": { "pos": "a", "pol": "0.333", "std": "0.125" }, "a la defensiva": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "a primera vista": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "abalanzar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "abasia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "abenuz": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "abominable": { "pos": "a", "pol": "-0.375", "std": "0.354" }, "abominador": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aborrecedor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aborto inminente": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "abrumar": { "pos": "v", "pol": "-0.361", "std": "0.178" }, "absentista": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "abuchear": { "pos": "v", "pol": "-0.458", "std": "0.072" }, "abucheo": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "abusador": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "abusar": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "abuso": { "pos": "n", "pol": "-0.417", "std": "0.144" }, "abusón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acaudillar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "accidente cerebrovascular": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aceite de absenta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aceite de bacalao": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acero damasquino": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acherontia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "achicarse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "achicharrarse": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "acibarar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "acidia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acinesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acinesis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acondroplasia": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "acre": { "pos": "a", "pol": "-0.3", "std": "0.143" }, "acromegalia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "acromático": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "acuafobia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "adamantino": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "adefesio": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "adenomiosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "adenopatía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "adivinanza": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "adusto": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "adversidad": { "pos": "n", "pol": "-0.475", "std": "0.105" }, "adverso": { "pos": "a", "pol": "-0.375", "std": "0.217" }, "advertencia": { "pos": "n", "pol": "-0.344", "std": "0.125" }, "afasia visual": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "afear": { "pos": "v", "pol": "-0.333", "std": "0.144" }, "afonía": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "afrentar": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "afrontar": { "pos": "v", "pol": "-0.406", "std": "0.072" }, "afótico": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "agobiante": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "agrandado": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "agravamiento": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "agravarse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "agrazón": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "agreder": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "agresivo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "agresión": { "pos": "n", "pol": "-0.312", "std": "0.102" }, "agrio": { "pos": "a", "pol": "-0.425", "std": "0.163" }, "ahogado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "alar": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "alarmante": { "pos": "a", "pol": "-0.333", "std": "0.191" }, "alborotado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "alborotador": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "alero": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "alexia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "alfil": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "alfilerazo": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "algarabía": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "algarada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "alguacil": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "alguna parte": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "algún lugar": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "alifafe": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aliviado": { "pos": "a", "pol": "-0.333", "std": "0.125" }, "aljófar": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "almorranas": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "alocado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alpende": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "altanero": { "pos": "a", "pol": "-0.375", "std": "0.265" }, "alterar": { "pos": "v", "pol": "-0.321", "std": "0.067" }, "alucinación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "amanita mappa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "amargado": { "pos": "a", "pol": "-0.375", "std": "0.072" }, "amargo": { "pos": "a", "pol": "-0.375", "std": "0.12" }, "amañar": { "pos": "v", "pol": "-0.3", "std": "0.0" }, "ambiguo": { "pos": "a", "pol": "-0.312", "std": "0.157" }, "ambliopía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "amenaza": { "pos": "n", "pol": "-0.437", "std": "0.102" }, "amenaza de aborto": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "amenazadoramente": { "pos": "r", "pol": "-0.312", "std": "0.088" }, "amenazar": { "pos": "v", "pol": "-0.275", "std": "0.112" }, "amilanamiento": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "amiloidosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "amonestar": { "pos": "v", "pol": "-0.3", "std": "0.068" }, "amotinarse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "ampulosidad": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "ampuloso": { "pos": "a", "pol": "-0.375", "std": "0.217" }, "analfabeto": { "pos": "a", "pol": "-0.417", "std": "0.0" }, "analgesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "analgia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "andanada": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "andesita": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anemia perniciosa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anestésico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "anginas": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aniquilado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "aniquilador": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "anonadar": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "anosmia": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "antagonista": { "pos": "a", "pol": "-0.312", "std": "0.354" }, "antecocina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anticipador": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "antihigiénico": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "antiintelectual": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "antiprotón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "antracita": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "antracosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "anurético": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "anósmico": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "apalear": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "aparentar": { "pos": "v", "pol": "-0.375", "std": "0.144" }, "apatía": { "pos": "n", "pol": "-0.469", "std": "0.12" }, "apenas": { "pos": "r", "pol": "-0.312", "std": "0.088" }, "apestar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "aplastarse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "apocado": { "pos": "a", "pol": "-0.292", "std": "0.125" }, "apocalíptico": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "apocarse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "apoplejía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aprehensión": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "aprehensión inmediata": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aprisionamiento": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "apráctico": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "apráxico": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "apurar": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "apuñear": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "apuñetear": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "apático": { "pos": "a", "pol": "-0.281", "std": "0.12" }, "aquafobia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arduidad": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "argucia": { "pos": "n", "pol": "-0.458", "std": "0.072" }, "argumentos especiosos": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arreflexia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arrobar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "arrogante": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arruinar": { "pos": "v", "pol": "-0.319", "std": "0.088" }, "arseniato de plomo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arsina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arteria alveolar inferior": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "arteria labial inferior": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "articulación temporomandibular": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "articulatio temporomandibularis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "artificio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "artrálgico": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "asarum": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "asbestosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "asertividad": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "asesinato ritual": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "asesino a sueldo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "asistolia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "asonada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aspergilosis": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "asquerosidad": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "astenia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "astilar": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "astracanada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "atacar": { "pos": "v", "pol": "-0.3", "std": "0.163" }, "atacar por sorpresa": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "ataque": { "pos": "n", "pol": "-0.307", "std": "0.067" }, "ataque al corazón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ataque aéreo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ataxia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "atormentado": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "atosigador": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "atracción alternativa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "atraco": { "pos": "n", "pol": "-0.292", "std": "0.0" }, "atrapamoscas": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "atrapar": { "pos": "v", "pol": "-0.341", "std": "0.075" }, "atrevimiento": { "pos": "n", "pol": "-0.297", "std": "0.115" }, "atrocidad": { "pos": "n", "pol": "-0.328", "std": "0.104" }, "atufamiento": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "atufo": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "aturrullar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "aturullar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "atípico": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "audaz": { "pos": "a", "pol": "-0.333", "std": "0.144" }, "audífono": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "autería": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "auto de fe": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "autocastigo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "autoflagelación": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "autopsia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "avaricia": { "pos": "n", "pol": "-0.333", "std": "0.144" }, "avasallar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "aventura riesgosa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "aviso": { "pos": "n", "pol": "-0.271", "std": "0.068" }, "azabache": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "azoramiento": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "azotar": { "pos": "v", "pol": "-0.271", "std": "0.051" }, "babera": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "babucha": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bacteriología": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bacteriólisis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "badulaque": { "pos": "n", "pol": "-0.458", "std": "0.0" }, "baja calidad": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "baja deshonrosa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bajas presiones": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bajeza": { "pos": "n", "pol": "-0.375", "std": "0.125" }, "bajista": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bajura": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "baldón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "balizar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "bandido": { "pos": "n", "pol": "-0.292", "std": "0.0" }, "banshee": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "banteng": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "barahunda": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "barbarie": { "pos": "n", "pol": "-0.344", "std": "0.102" }, "barbarismo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "barbote": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "barbulla": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "barrera": { "pos": "n", "pol": "-0.292", "std": "0.144" }, "barrila": { "pos": "n", "pol": "-0.292", "std": "0.125" }, "bastardía": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "batahola": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "batalla campal": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "batalla de Brunanburh": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "batalla de Jena": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "befarse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "bemol": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bicho raro": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "bigardía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "blocao": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "blooper": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bloqueo mental": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bobales": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bobalicón": { "pos": "n", "pol": "-0.425", "std": "0.056" }, "bobo": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "bocanada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bolsa de aire": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bono basura": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "borrasca": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "borrascoso": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "borrico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bos javanicus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "botarate": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "boxeador de segunda": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bramar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "braquidactil": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "braquidactilia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "brazal": { "pos": "n", "pol": "-0.292", "std": "0.0" }, "brazalete de tobillo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "brega": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "bribón": { "pos": "n", "pol": "-0.469", "std": "0.102" }, "bronca": { "pos": "n", "pol": "-0.417", "std": "0.068" }, "brote": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "brusquedad": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "brutalidad": { "pos": "n", "pol": "-0.344", "std": "0.102" }, "bruto": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "buey salvaje indonesio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bujarra": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bujarrón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "bullanguero": { "pos": "n", "pol": "-0.312", "std": "0.072" }, "bulo": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "burguesía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "burro de carga": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "buscar defectos": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "butterscotch": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cabeceo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cabestrar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "cabeza abajo": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "cabeza de chorlito": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "cabeza hueca": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cabrón": { "pos": "n", "pol": "-0.446", "std": "0.061" }, "cacao": { "pos": "n", "pol": "-0.325", "std": "0.112" }, "cacería": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "cachete": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "cacodemónico": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "cagada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "calamidad": { "pos": "n", "pol": "-0.469", "std": "0.125" }, "calavera": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "calcitonina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "callosidad": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "calvario": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "calvatrueno": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "calzoncillo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "camandulero": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "camino de carro": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "camorra": { "pos": "n", "pol": "-0.281", "std": "0.102" }, "camorrista": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "canalla": { "pos": "n", "pol": "-0.312", "std": "0.092" }, "cansar": { "pos": "v", "pol": "-0.281", "std": "0.12" }, "cantada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "capataz": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "capital de las Vanuatu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cara dura": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carbonilla": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "carburo de hierro": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carbón": { "pos": "n", "pol": "-0.344", "std": "0.0" }, "carbón ardiente": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carbón vegetal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cardiomegalia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cardiomiopatía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carecer": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "cariado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "cariat": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "caries": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "carina fornicis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carlanca": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "carnicería": { "pos": "n", "pol": "-0.312", "std": "0.063" }, "carroña": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "carvedilol": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cascote": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "caseoso": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "casiterita": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "castigo": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "castigo corporal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cataclismo": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "catalepsia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "catastróficamente": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "catastrófico": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "catástrofe": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "cazador de ambulancias": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "caótico": { "pos": "a", "pol": "-0.333", "std": "0.217" }, "cefalalgia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cefalea": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "celecoxib": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cementita": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ceniciento": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "cenizo": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "cenizoso": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "censura": { "pos": "n", "pol": "-0.337", "std": "0.119" }, "ceporro": { "pos": "n", "pol": "-0.333", "std": "0.0" }, "cerdo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cerrar ruidosamente": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "certero": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "cerveza negra": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cetonuria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cetosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chabón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chalado": { "pos": "a", "pol": "-0.25", "std": "0.072" }, "chaleco": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "chancearse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "chancla": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chaparro": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "chapucear": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "chapucero": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "chapucería": { "pos": "n", "pol": "-0.333", "std": "0.191" }, "chapurreado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "chaqueta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "charrada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chen": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chiflado": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "chinela": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chirona": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chocar": { "pos": "v", "pol": "-0.275", "std": "0.1" }, "chotearse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "chulería": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chungearse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "chupa-chups": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "chupachups": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "churrete": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ciclotimia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ciclón": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "cilicio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cimbel": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "cinéreo": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "citólisis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "clamor": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "clase media": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "clinopodium": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "clámide": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "coadyuvar": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "cobarde": { "pos": "a", "pol": "-0.333", "std": "0.072" }, "cobardía": { "pos": "n", "pol": "-0.375", "std": "0.191" }, "codo de tenis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "coger al toro por los cuernos": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "coger frío": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "cojear": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "colgamiento": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "columbiforme": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "comadreja": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "complejidad": { "pos": "n", "pol": "-0.344", "std": "0.12" }, "con detalle": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "concepto erróneo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "condena": { "pos": "n", "pol": "-0.375", "std": "0.08" }, "condena por robo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "condena por violación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "condenación": { "pos": "n", "pol": "-0.344", "std": "0.12" }, "condenado": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "condenar": { "pos": "v", "pol": "-0.286", "std": "0.098" }, "conflictivo": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "confrontación": { "pos": "n", "pol": "-0.375", "std": "0.047" }, "congestivo": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "conminación": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "conmutación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "conmutar": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "conocimientos elementales": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "conservación del suelo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "consumirse": { "pos": "v", "pol": "-0.271", "std": "0.151" }, "contaminante": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "contenidamente": { "pos": "r", "pol": "-0.312", "std": "0.088" }, "contrabajo": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "contraerse": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "contratiempo": { "pos": "n", "pol": "-0.425", "std": "0.163" }, "control de daños": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "contusión": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "convicto": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cooperar": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "corea de Huntington": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "craso": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "crema agria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "crema ácida": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cremación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "criestesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "criminal de guerra": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "criticar": { "pos": "v", "pol": "-0.286", "std": "0.139" }, "crucificar": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "crucifixión": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "crudeza": { "pos": "n", "pol": "-0.458", "std": "0.125" }, "crudo": { "pos": "a", "pol": "-0.396", "std": "0.131" }, "cruz de Lorena": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "crítica insignificante": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cuerno inglés": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cuon": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cutrería": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cuón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cyberpunk": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "cyon": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "danza de la muerte": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dar punzadas": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "dar un escarmiento": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "dar un golpecito": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "dar un puñetazo": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "dar un rodeo": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "dar una paliza": { "pos": "v", "pol": "-0.312", "std": "0.072" }, "dar zarpazos": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "dañar": { "pos": "v", "pol": "-0.4", "std": "0.112" }, "daños colaterales": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "de agua dulce": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "de cualquier manera": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "de forma andrajosa": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "de forma cortante": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "de manera andrajosa": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "debacle": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "debilitado": { "pos": "a", "pol": "-0.304", "std": "0.086" }, "declarar demente": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "declarar fuera de combate": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "decrépito": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "dedil": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "defensividad": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "deformidad": { "pos": "n", "pol": "-0.333", "std": "0.144" }, "degenerarse": { "pos": "v", "pol": "-0.292", "std": "0.289" }, "degradar": { "pos": "v", "pol": "-0.375", "std": "0.102" }, "dejar inconsciente": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "dejar sin sentido": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "dejarse ir": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "dejarse llevar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "delación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "delatar": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "delincuencia juvenil": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "delincuente": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "deliquio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "delirantemente": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "demandar": { "pos": "v", "pol": "-0.3", "std": "0.105" }, "demoledor": { "pos": "a", "pol": "-0.406", "std": "0.12" }, "demoniaco": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "demonización": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "demoníaco": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "denigración": { "pos": "n", "pol": "-0.292", "std": "0.129" }, "depreciar": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "depósito de cadáveres": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "derogar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "derrisión": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "derroche de dinero": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "derrotado": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "derrumbarse": { "pos": "v", "pol": "-0.333", "std": "0.051" }, "desabrigo": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "desacato": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desaconsejable": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "desacostumbrado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "desacreditar": { "pos": "v", "pol": "-0.406", "std": "0.072" }, "desafiar": { "pos": "v", "pol": "-0.321", "std": "0.142" }, "desafío": { "pos": "n", "pol": "-0.275", "std": "0.125" }, "desagrupado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "desaliño": { "pos": "n", "pol": "-0.458", "std": "0.072" }, "desambiguación léxica": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desaparecer": { "pos": "v", "pol": "-0.281", "std": "0.063" }, "desaprobación": { "pos": "n", "pol": "-0.375", "std": "0.188" }, "desaprovechado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "desaseado": { "pos": "a", "pol": "-0.375", "std": "0.072" }, "desaseo": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "desastrado": { "pos": "a", "pol": "-0.375", "std": "0.072" }, "desastre": { "pos": "n", "pol": "-0.3", "std": "0.088" }, "desastroso": { "pos": "a", "pol": "-0.375", "std": "0.265" }, "desatento": { "pos": "a", "pol": "-0.292", "std": "0.184" }, "desazonado": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "desbarajuste": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "descamisado": { "pos": "n", "pol": "-0.292", "std": "0.125" }, "descoloración": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "descomponer": { "pos": "v", "pol": "-0.333", "std": "0.042" }, "descompuesto": { "pos": "a", "pol": "-0.437", "std": "0.265" }, "desconcertado": { "pos": "a", "pol": "-0.275", "std": "0.112" }, "desconocido": { "pos": "a", "pol": "-0.328", "std": "0.115" }, "desconocimiento": { "pos": "n", "pol": "-0.417", "std": "0.217" }, "desconsideración": { "pos": "n", "pol": "-0.417", "std": "0.217" }, "descontaminar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "descontento": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "descoordinado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "descortésmente": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "descuidadamente": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "desdeñoso": { "pos": "a", "pol": "-0.475", "std": "0.125" }, "desequilibrio psicosomático": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desertar": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "desertificación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desestabilizar": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "desfachatez": { "pos": "n", "pol": "-0.292", "std": "0.0" }, "desfigurar": { "pos": "v", "pol": "-0.325", "std": "0.068" }, "desgana": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "desgarrado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "desgarrar": { "pos": "v", "pol": "-0.375", "std": "0.072" }, "desgobierno": { "pos": "n", "pol": "-0.437", "std": "0.177" }, "desgracia": { "pos": "n", "pol": "-0.409", "std": "0.088" }, "deshabituado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "deshechos": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desierto": { "pos": "a", "pol": "-0.417", "std": "0.191" }, "desigual": { "pos": "a", "pol": "-0.273", "std": "0.113" }, "desigualdad": { "pos": "n", "pol": "-0.292", "std": "0.144" }, "desindustrializado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "desinformación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desintegrar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "desmadejamiento": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desmayarse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "desmayo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desmaña": { "pos": "n", "pol": "-0.333", "std": "0.144" }, "desnutrido": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "desobediente": { "pos": "a", "pol": "-0.292", "std": "0.072" }, "desobligar": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "desolación": { "pos": "n", "pol": "-0.417", "std": "0.146" }, "desorden inmunológico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desordenado": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "desordenar": { "pos": "v", "pol": "-0.437", "std": "0.063" }, "desorganización": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "desorganizado": { "pos": "a", "pol": "-0.458", "std": "0.144" }, "desorientación": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "despectivo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "despedido": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "desperdiciado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "desperdiciar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "despilfarrador": { "pos": "a", "pol": "-0.281", "std": "0.102" }, "despolarizar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "despreciativo": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "desprestigiar": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "desprestigio": { "pos": "n", "pol": "-0.406", "std": "0.217" }, "desprevenido": { "pos": "a", "pol": "-0.417", "std": "0.19" }, "desquitarse": { "pos": "v", "pol": "-0.375", "std": "0.072" }, "destechado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "destrozar": { "pos": "v", "pol": "-0.452", "std": "0.083" }, "destrozarse": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "destrozo": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "destruir": { "pos": "v", "pol": "-0.26", "std": "0.083" }, "desunión": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "desventura": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "desviar la mirada": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "detención ilegal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "deteriorado": { "pos": "a", "pol": "-0.375", "std": "0.191" }, "deterioro": { "pos": "n", "pol": "-0.287", "std": "0.079" }, "detrito": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "detritus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "devastación": { "pos": "n", "pol": "-0.446", "std": "0.142" }, "devastar": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "dextrocardia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "diablo": { "pos": "n", "pol": "-0.271", "std": "0.137" }, "diabético": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "didanosina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "difamación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "difteria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dilapidación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "diputado": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "disco duro": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disco duro extraíble": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "discordancia": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "discutirse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "disensión": { "pos": "n", "pol": "-0.344", "std": "0.063" }, "disentimiento": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "disfagia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disfonía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "disiparse": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "disminuido": { "pos": "a", "pol": "-0.312", "std": "0.072" }, "disosmia": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "disparates": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "dispendio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dispendioso": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "disputa": { "pos": "n", "pol": "-0.375", "std": "0.063" }, "disputar": { "pos": "v", "pol": "-0.417", "std": "0.072" }, "disturbio": { "pos": "n", "pol": "-0.3", "std": "0.068" }, "disuasión": { "pos": "n", "pol": "-0.292", "std": "0.217" }, "dividir en tres": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "dogfight": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dolce far niente": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dolencia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "doliente": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "dolo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dolor de cabeza": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "dolor de pecho": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dolor torácico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dolores del parto": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dosis letal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "draconiano": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "dracunculiasis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "droga de diseño": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "drogadicto": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "drogodependiente": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "duplicidad": { "pos": "n", "pol": "-0.292", "std": "0.125" }, "durabilidad": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "dureza": { "pos": "n", "pol": "-0.287", "std": "0.103" }, "débil": { "pos": "a", "pol": "-0.298", "std": "0.112" }, "ectopia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "edema": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "el más allá": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "el más malo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "el peor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "electrocutarse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "elegíaco": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "elucubración": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "eléboro fétido": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "embalsamar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "embarullar": { "pos": "v", "pol": "-0.333", "std": "0.072" }, "embaucamiento": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "embelesar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "embelezar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "embrocación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "embrollar": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "embullo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "embuste": { "pos": "n", "pol": "-0.275", "std": "0.112" }, "embustero": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "empeoramiento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "empeorar": { "pos": "v", "pol": "-0.281", "std": "0.144" }, "emperifollar vulgarmente": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "empetrum": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "empresa peligrosa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "en solitario": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "en vez de": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "enaguas": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "encabezado": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "encabritarse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "encefalitis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "encefalopatía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "encontronazo": { "pos": "n", "pol": "-0.45", "std": "0.177" }, "endeble": { "pos": "a", "pol": "-0.437", "std": "0.065" }, "endometriosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enemigo": { "pos": "n", "pol": "-0.333", "std": "0.144" }, "enervación": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "enfado": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "enfermedad": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "enfermedad celíaca": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enfermedad cerebral": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enfermedad de Addison": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enfermedad de la piel": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enfermedad genética": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enfermedad neurológica": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enfisema": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "enfisema pulmonar": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "engañado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "engañar": { "pos": "v", "pol": "-0.422", "std": "0.129" }, "engaño": { "pos": "n", "pol": "-0.261", "std": "0.118" }, "engañoso": { "pos": "a", "pol": "-0.333", "std": "0.177" }, "enmarañar": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "enredar": { "pos": "v", "pol": "-0.344", "std": "0.133" }, "enrevesado": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "ensañamiento": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ensuciamiento": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "entiznarse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "entrampar": { "pos": "v", "pol": "-0.458", "std": "0.0" }, "entredicho": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "epicondialgia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "epicondilitis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "epidemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "epididimitis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "epiglotitis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "epilepsia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "epilepsia jacksoniana": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "equisetales": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "equivocación": { "pos": "n", "pol": "-0.268", "std": "0.047" }, "equívoco": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "ergotismo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "erizar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "erizarse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "erosionado": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "error de pronunciación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "error garrafal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "escabroso": { "pos": "a", "pol": "-0.275", "std": "0.153" }, "escala beaufort": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "escaqueado": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "escaramuza": { "pos": "n", "pol": "-0.417", "std": "0.0" }, "escarchar": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "escarmentar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "escarnio": { "pos": "n", "pol": "-0.275", "std": "0.125" }, "escasamente": { "pos": "r", "pol": "-0.312", "std": "0.088" }, "escasez": { "pos": "n", "pol": "-0.417", "std": "0.105" }, "escoliosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "escombros": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "escritor a sueldo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "escándalo público": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "espantajo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "espasmódicamente": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "especioso": { "pos": "a", "pol": "-0.292", "std": "0.144" }, "espeluznante": { "pos": "a", "pol": "-0.446", "std": "0.159" }, "esperanza vana": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "espina": { "pos": "n", "pol": "-0.325", "std": "0.0" }, "esplenomegalia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "espástico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "espíritu maligno": { "pos": "n", "pol": "-0.375", "std": "0.191" }, "esquivo": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "estado natural": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "estado salvaje": { "pos": "n", "pol": "-0.417", "std": "0.0" }, "estafermo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "estampida": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "estancado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "esteatopigia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "estenosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "estornudar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "estrellar": { "pos": "v", "pol": "-0.271", "std": "0.065" }, "estrellarse": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "estremecimiento de dolor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "estresado": { "pos": "a", "pol": "-0.437", "std": "0.354" }, "estridencia": { "pos": "n", "pol": "-0.281", "std": "0.144" }, "estropear": { "pos": "v", "pol": "-0.35", "std": "0.112" }, "estropeo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "estúpido": { "pos": "a", "pol": "-0.375", "std": "0.232" }, "etiolación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "eunuco": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "excurso": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "exigüidad": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "exoneración": { "pos": "n", "pol": "-0.333", "std": "0.125" }, "explosionar": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "expoliación": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "expolio": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "expósito": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "exterminado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "exterminador": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "extralegal": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "extraño al acorde": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "faloplastia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "falsa oronja": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "falsedad": { "pos": "n", "pol": "-0.266", "std": "0.115" }, "falso": { "pos": "a", "pol": "-0.257", "std": "0.168" }, "falta de memoria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "familia Hydrobatidae": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "familia Machilidae": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fangal": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "farfulla": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "fascioliasis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fatuidad": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "fenecimiento": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fenilcetonuria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fenómeno natural": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fetidez": { "pos": "n", "pol": "-0.458", "std": "0.0" }, "ficus sycomorus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fiebre reumática": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "filariasis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "filisteo": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "finta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "flaccidez": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "flacidez": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "flacura": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "flegmasía alba dolens": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "flema": { "pos": "n", "pol": "-0.292", "std": "0.144" }, "flor salvaje": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "flor silvestre": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "flotar suavemente": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "fobofobia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "follón": { "pos": "n", "pol": "-0.375", "std": "0.068" }, "forajido": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "forcejear": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "formaldehido": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "formaldehído": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "forúnculo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fosgeno": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fotofobia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fracturar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "frambesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fraudulencia": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "frialdad": { "pos": "n", "pol": "-0.268", "std": "0.102" }, "frigidez": { "pos": "n", "pol": "-0.417", "std": "0.191" }, "frustrarse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "fuerza g": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "fulminación": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "fulminar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "funesto": { "pos": "a", "pol": "-0.375", "std": "0.161" }, "fustigar": { "pos": "v", "pol": "-0.292", "std": "0.0" }, "fúrunculo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gallina": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "gamberro": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "ganador inesperado": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ganso común": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "garambaina": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "garlopa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "garrafón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "garulla": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "garullada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gas tóxico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gasear": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "gastado": { "pos": "a", "pol": "-0.375", "std": "0.072" }, "gastar novatadas": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "gazapatón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gazapera": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus acherontia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus asarum": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus clinopodium": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus cuon": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus cyon": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus irvingia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus solenopsis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "genus zizania": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gesto irónico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "giardiasis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gimoteo": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "glacialmente": { "pos": "r", "pol": "-0.437", "std": "0.0" }, "glaucoma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "glumela": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "glumilla": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gnatostomados": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "golpe de gracia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "golpe mortal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "golpear violentamente": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "gordo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gozque": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "granizada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "granuja": { "pos": "n", "pol": "-0.275", "std": "0.105" }, "gratuito": { "pos": "a", "pol": "-0.281", "std": "0.188" }, "grave": { "pos": "a", "pol": "-0.396", "std": "0.19" }, "gravedad": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "graves consecuencias": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gregarismo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "greguería": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "gremlin": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "gris": { "pos": "a", "pol": "-0.325", "std": "0.153" }, "gris-metálico": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "gris ceniciento": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "gris ceniza": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "gris perla": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "gris plateado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "grita": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "griterío": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "grito": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "groseramente": { "pos": "r", "pol": "-0.312", "std": "0.0" }, "gruñido": { "pos": "n", "pol": "-0.333", "std": "0.191" }, "gruñón": { "pos": "a", "pol": "-0.375", "std": "0.265" }, "guachafita": { "pos": "n", "pol": "-0.281", "std": "0.102" }, "guardainfante": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "guerra fría": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "género Acherontia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "género Cuon": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "género Cyon": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "género Solenopsis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "género asarum": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "género irvingia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "género zizania": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "habón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hacer bascas": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "hacer erupción": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "hacer trampa": { "pos": "v", "pol": "-0.271", "std": "0.065" }, "hacerse polvo": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "halitosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hallux valgus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hampón": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "heder": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "hemoglobinemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hemoglobinopatía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hemorroides": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "herida accidental": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "herida superficial": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "herpes genital": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "herpes zoster": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "herrumbre": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hidrobátidos": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hidrofobia": { "pos": "n", "pol": "-0.281", "std": "0.125" }, "hidromorfona": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hidropesía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hipercalciuria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hipercolesterolemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hiperemesis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hipermetropía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hiperopía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hiperplasia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hipertrofia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hipocalcemia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hipocondriaco": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hipoglucémico": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "hiponimia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hipoparatiroidismo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hipospadias": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hipotensión": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hipotenso": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "hipotónico": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "hipócrita": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hipócritamente": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "histerismo": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "histerocatalepsia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "homicidio": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "horribilidad": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "horridez": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "horterada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "hostilidades": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "huracán": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "huérfano": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "háptico": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "iclonoclasta": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "ignominia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ilegal": { "pos": "a", "pol": "-0.313", "std": "0.094" }, "ilegalizar": { "pos": "v", "pol": "-0.437", "std": "0.0" }, "iletrado": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "imaginación": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "imbecilidad": { "pos": "n", "pol": "-0.417", "std": "0.144" }, "impacción dentaria": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "impagado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "impago": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "imparable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "impasibilidad": { "pos": "n", "pol": "-0.417", "std": "0.125" }, "imperceptivo": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "imperfecto": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "impertubabilidad": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "imponer un castigo": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "importuno": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "impostura": { "pos": "n", "pol": "-0.325", "std": "0.056" }, "impotente": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "impreciso": { "pos": "a", "pol": "-0.292", "std": "0.146" }, "imprevisible": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "improcedencia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "improcedente": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "impromptu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "impugnar": { "pos": "v", "pol": "-0.458", "std": "0.072" }, "impureza": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "impío": { "pos": "a", "pol": "-0.417", "std": "0.26" }, "inacabable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inaceptabilidad": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inaceptable": { "pos": "a", "pol": "-0.417", "std": "0.153" }, "inacostumbrado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inadaptable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inadecuación": { "pos": "n", "pol": "-0.312", "std": "0.265" }, "inadoptable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inalcanzable": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "inalienable": { "pos": "a", "pol": "-0.417", "std": "0.125" }, "inarmónico": { "pos": "a", "pol": "-0.312", "std": "0.12" }, "inasistencia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inatacable": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "incapacidad": { "pos": "n", "pol": "-0.469", "std": "0.182" }, "incapaz": { "pos": "a", "pol": "-0.321", "std": "0.112" }, "incauto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "incensar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "incomparecencia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "incompasivo": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "incompetente": { "pos": "a", "pol": "-0.339", "std": "0.183" }, "incongruencia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inconmensurado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inconmutable": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "inconocible": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "inconquistable": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "inconsciencia": { "pos": "n", "pol": "-0.469", "std": "0.063" }, "inconsciente": { "pos": "a", "pol": "-0.453", "std": "0.148" }, "inconsecuencia": { "pos": "n", "pol": "-0.312", "std": "0.265" }, "inconsistencia": { "pos": "n", "pol": "-0.281", "std": "0.12" }, "inconstancia": { "pos": "n", "pol": "-0.437", "std": "0.177" }, "inconstante": { "pos": "a", "pol": "-0.458", "std": "0.217" }, "inconvertible": { "pos": "a", "pol": "-0.333", "std": "0.125" }, "incorruptibilidad": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inculpar": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "incumplimiento de contrato": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "incurable": { "pos": "a", "pol": "-0.292", "std": "0.217" }, "indebido": { "pos": "a", "pol": "-0.292", "std": "0.125" }, "indefendible": { "pos": "a", "pol": "-0.437", "std": "0.188" }, "indefenso": { "pos": "a", "pol": "-0.292", "std": "0.072" }, "indefinible": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "indefinida": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "indelicadeza": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "indelicado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "indescriptible": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "indetectado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "indiferencia": { "pos": "n", "pol": "-0.325", "std": "0.143" }, "indigestibilidad": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "indiscernible": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "indisciplinado": { "pos": "a", "pol": "-0.3", "std": "0.088" }, "indiscreción": { "pos": "n", "pol": "-0.406", "std": "0.12" }, "indiscriminado": { "pos": "a", "pol": "-0.292", "std": "0.072" }, "indistinguible": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "indomable": { "pos": "a", "pol": "-0.292", "std": "0.125" }, "ineficaz": { "pos": "a", "pol": "-0.337", "std": "0.13" }, "ineptitud": { "pos": "n", "pol": "-0.375", "std": "0.26" }, "inepto": { "pos": "a", "pol": "-0.273", "std": "0.131" }, "inescrutable": { "pos": "a", "pol": "-0.375", "std": "0.265" }, "inexacto": { "pos": "a", "pol": "-0.344", "std": "0.228" }, "inexcusable": { "pos": "a", "pol": "-0.458", "std": "0.072" }, "inexorable": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "inexperto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inexplorado": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "inexpresivamente": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "inexpugnabilidad": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "infalible": { "pos": "a", "pol": "-0.375", "std": "0.213" }, "infamia": { "pos": "n", "pol": "-0.333", "std": "0.125" }, "infecundidad": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "infertilidad": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "infidencia": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "infiel": { "pos": "a", "pol": "-0.312", "std": "0.102" }, "inflagaitas": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inflexibilidad": { "pos": "n", "pol": "-0.45", "std": "0.163" }, "inflexible": { "pos": "a", "pol": "-0.281", "std": "0.2" }, "informal": { "pos": "a", "pol": "-0.304", "std": "0.168" }, "infortunio": { "pos": "n", "pol": "-0.4", "std": "0.088" }, "infructuoso": { "pos": "a", "pol": "-0.333", "std": "0.188" }, "ingenuo": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "inheredable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inhospitalario": { "pos": "a", "pol": "-0.375", "std": "0.265" }, "inicuo": { "pos": "a", "pol": "-0.312", "std": "0.354" }, "inidentificado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inigual": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inimaginable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "injustificable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "inmaduro": { "pos": "a", "pol": "-0.292", "std": "0.166" }, "inminencia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inmolación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "inmortal": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "inmortalidad": { "pos": "n", "pol": "-0.312", "std": "0.265" }, "innoble": { "pos": "a", "pol": "-0.292", "std": "0.125" }, "inpenetrable": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "inquietamente": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "inquietar": { "pos": "v", "pol": "-0.344", "std": "0.102" }, "insatisfacción": { "pos": "n", "pol": "-0.312", "std": "0.265" }, "insensatez": { "pos": "n", "pol": "-0.268", "std": "0.161" }, "insensato": { "pos": "a", "pol": "-0.333", "std": "0.191" }, "insensibilidad": { "pos": "n", "pol": "-0.375", "std": "0.191" }, "insignia de grado": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "insignia de rango": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "insipidez": { "pos": "n", "pol": "-0.275", "std": "0.112" }, "insociable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "insolencia": { "pos": "n", "pol": "-0.375", "std": "0.125" }, "insolente": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "insoluble": { "pos": "a", "pol": "-0.458", "std": "0.217" }, "insospechadamente": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "insospechado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "insubmergible": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "insubordinado": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "insuficiencia": { "pos": "n", "pol": "-0.417", "std": "0.072" }, "insuficiencia cardíaca": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "insuficiencia coronaria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "insulso": { "pos": "a", "pol": "-0.344", "std": "0.213" }, "insustancial": { "pos": "a", "pol": "-0.286", "std": "0.173" }, "interdicto": { "pos": "n", "pol": "-0.344", "std": "0.072" }, "intolerancia": { "pos": "n", "pol": "-0.312", "std": "0.217" }, "intransigencia": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "intransigente": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "intransitivo": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "intratable": { "pos": "a", "pol": "-0.292", "std": "0.072" }, "inutilidad": { "pos": "n", "pol": "-0.292", "std": "0.26" }, "inutilizable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "invalidez": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "invasor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "invectiva": { "pos": "n", "pol": "-0.333", "std": "0.125" }, "inviolable": { "pos": "a", "pol": "-0.281", "std": "0.237" }, "involuntariamente": { "pos": "r", "pol": "-0.312", "std": "0.088" }, "invulnerabilidad": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "inánime": { "pos": "a", "pol": "-0.344", "std": "0.161" }, "inútil": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "ir de puntillas": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "irracional": { "pos": "a", "pol": "-0.325", "std": "0.205" }, "irracionalidad": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "irreal": { "pos": "a", "pol": "-0.375", "std": "0.125" }, "irreverencia": { "pos": "n", "pol": "-0.312", "std": "0.265" }, "irreverente": { "pos": "a", "pol": "-0.333", "std": "0.26" }, "irreverentemente": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "irrisión": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "irritabilidad": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "irritable": { "pos": "a", "pol": "-0.479", "std": "0.129" }, "irvingia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "jitter": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "jorobar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "joyas de la corona": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "juego sucio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "jumento": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "junky": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "justificarse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "kernicterus": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "kitch": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lactoflavina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lamentarse": { "pos": "v", "pol": "-0.464", "std": "0.067" }, "lamento": { "pos": "n", "pol": "-0.475", "std": "0.068" }, "languidecer": { "pos": "v", "pol": "-0.417", "std": "0.072" }, "lanzar una ofensiva": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "lastimar": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "lechuzo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lentamente": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "lepiota morgani": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lepra": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "letal": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "letargo": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "leucocitosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "leucopenia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "levedad": { "pos": "n", "pol": "-0.375", "std": "0.265" }, "ley de Dalton": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ley del linchamiento": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ley marcial": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "liarse a puños": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "liberarse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "licencioso": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "ligeramente": { "pos": "r", "pol": "-0.292", "std": "0.072" }, "linchamiento": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "linimento": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "liposarcoma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lipotimia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "llanto": { "pos": "n", "pol": "-0.312", "std": "0.079" }, "lloriquear": { "pos": "v", "pol": "-0.281", "std": "0.072" }, "lloriqueo": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "lloro": { "pos": "n", "pol": "-0.281", "std": "0.063" }, "llovedera": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "loca": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "locatis": { "pos": "n", "pol": "-0.292", "std": "0.0" }, "loco": { "pos": "n", "pol": "-0.292", "std": "0.0" }, "lodacero": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "lorelei": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lovastatina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lunar postizo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lunático": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "luz de advertencia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "luz de alarma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lánguido": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "línea de batalla": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "lío": { "pos": "n", "pol": "-0.26", "std": "0.107" }, "machaca": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "machacón": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "macroglosia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "madriguera": { "pos": "n", "pol": "-0.312", "std": "0.12" }, "magrez": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "magrura": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mal de mar": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mal empleo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mal gusto": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mala memoria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mala pronunciación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "malabsorción": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "malacia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "malcontento": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "maledicencia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "maleducado": { "pos": "a", "pol": "-0.35", "std": "0.163" }, "maleficio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "malformación": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "maltratador": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "malvender": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "mancha": { "pos": "n", "pol": "-0.3", "std": "0.068" }, "manchurrón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "manchón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mandil": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "maniaco": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "manipular": { "pos": "v", "pol": "-0.286", "std": "0.119" }, "manosear": { "pos": "v", "pol": "-0.281", "std": "0.063" }, "maquinar": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "mareado": { "pos": "a", "pol": "-0.437", "std": "0.0" }, "maricón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mariposón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "marshal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "martingala": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mastelero": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "matachín": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "matanza": { "pos": "n", "pol": "-0.458", "std": "0.072" }, "matricidio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "matón": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "mañanita": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mecanismo de defensa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "medios": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "megalómano": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "megamuerte": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "melena": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "melodramáticamente": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "memo": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "mendacidad": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mentecato": { "pos": "n", "pol": "-0.333", "std": "0.125" }, "mentira": { "pos": "n", "pol": "-0.3", "std": "0.105" }, "mentón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "meralgia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "merluzo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mes a mes": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "mestizo": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "meterse con": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "mezquino": { "pos": "a", "pol": "-0.469", "std": "0.188" }, "michelín": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mildiu": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "militante": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "miocardiopatía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mirada desafiante": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mirada feroz": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mirada fulminante": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "miseria": { "pos": "n", "pol": "-0.292", "std": "0.125" }, "misión imposible": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mocoso": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "mohoso": { "pos": "a", "pol": "-0.312", "std": "0.177" }, "mohín": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "molestia": { "pos": "n", "pol": "-0.347", "std": "0.088" }, "monorquidia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "montería": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "morbosidad": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "moreno": { "pos": "a", "pol": "-0.417", "std": "0.051" }, "moretón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "morgue": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "moribundo": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "morirse": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "mortal": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "mortífero": { "pos": "a", "pol": "-0.375", "std": "0.072" }, "moverse estruendosamente": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "moña": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mudable": { "pos": "a", "pol": "-0.375", "std": "0.265" }, "mueca de dolor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "muerte cerebral": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "muerte de un millón de personas": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "muerto viviente": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "muflón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "multa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mundo de la fantasía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "muralla": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "murmurio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mustela": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "mutilar": { "pos": "v", "pol": "-0.304", "std": "0.061" }, "mutuamente": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "muñequera": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "mármol verde antiguo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "más allá": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "mórbido": { "pos": "a", "pol": "-0.292", "std": "0.26" }, "narcómano": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nata cortada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "naufragio": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "naupatía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "necromántico": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "necropsia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "negligencia": { "pos": "n", "pol": "-0.312", "std": "0.102" }, "negrito": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "negro azabache": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "negro carbón": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "negrura": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "neoplasia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neumoconiosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neumotórax": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neuralgia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neurasténico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "neuritis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neurosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neurospora": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "neurótico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ninchi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ninfomanía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "niño enmadrado": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "no atribuíble": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "no consumado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "no disponible": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "no financiado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "no heredable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "no identificado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "no redivivo": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "no renovado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "no requerido": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "no reservado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "no residencial": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "no residenciales": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "no solicitado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "no submarino": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "no sumergible": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "nocaut": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nocente": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "nocional": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "nociones": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "noqueador": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "nota amarga": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "numerario": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "número atómico 76": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "objeción": { "pos": "n", "pol": "-0.275", "std": "0.112" }, "objetar": { "pos": "v", "pol": "-0.375", "std": "0.125" }, "obliteración": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "obsceno": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "obsidiana": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "obstáculo de arena": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "oca azul": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ocultismo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ofendido": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "office": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "oler": { "pos": "v", "pol": "-0.281", "std": "0.0" }, "ondeante": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "onicosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "opción de bloqueo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "opresor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "oprobio": { "pos": "n", "pol": "-0.417", "std": "0.191" }, "ordinario": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "orquidalgia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ortiga": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "oscurantismo": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "oscuridad": { "pos": "n", "pol": "-0.359", "std": "0.058" }, "osteomalacia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "osteopetrosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "otosclerosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "paloteado": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "paloteo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "palurdo": { "pos": "n", "pol": "-0.312", "std": "0.072" }, "pancitopenia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pandearse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "pantufla": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "papila": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "papismo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "paralítico": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "parasitismo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "parco": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "paresia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "paresis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "parestesia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "parkinson": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "parmesano": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "paro cardíaco": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "parsimonia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "parvedad": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "patas arriba": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "patata caliente": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "patatús": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "patochada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "patricidio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "patulea": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "patán": { "pos": "n", "pol": "-0.344", "std": "0.072" }, "pavesa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "payasadas": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pebete": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pecadillo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pedregoso": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "pelea": { "pos": "n", "pol": "-0.406", "std": "0.063" }, "pelea a puñetazos": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pelearse": { "pos": "v", "pol": "-0.281", "std": "0.0" }, "peligrosidad": { "pos": "n", "pol": "-0.417", "std": "0.191" }, "pelotera": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "penal": { "pos": "a", "pol": "-0.417", "std": "0.125" }, "penalización": { "pos": "n", "pol": "-0.281", "std": "0.102" }, "pendencia": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "pendencieramente": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "penuria": { "pos": "n", "pol": "-0.344", "std": "0.072" }, "pequeña interrupción": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "percance": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "percebe": { "pos": "n", "pol": "-0.292", "std": "0.0" }, "percutir": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "perder el control": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "perdición": { "pos": "n", "pol": "-0.417", "std": "0.217" }, "perdonavidas": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "periodo de incubación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "perjuicio": { "pos": "n", "pol": "-0.333", "std": "0.144" }, "pernicioso": { "pos": "a", "pol": "-0.406", "std": "0.063" }, "perro": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "persistentemente": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "perturbación": { "pos": "n", "pol": "-0.266", "std": "0.08" }, "período de incubación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "período prodrómico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pesadez": { "pos": "n", "pol": "-0.286", "std": "0.139" }, "pescar": { "pos": "v", "pol": "-0.333", "std": "0.0" }, "peste": { "pos": "n", "pol": "-0.357", "std": "0.067" }, "pestilencia": { "pos": "n", "pol": "-0.275", "std": "0.068" }, "peyorativo": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "pian": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "picada de pulga": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "picadura de pulga": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "piernas": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pifia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pijama": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pinchazo": { "pos": "n", "pol": "-0.312", "std": "0.072" }, "piojoso": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "pira": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pira funeral": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pirado": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "piraña": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pirofobia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "piruleta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pirulí": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pitorrearse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "piyama": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pián": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "plañidera": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "pleonasmo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pleurodinia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "plexo aórtico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "poco": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "poco familiar": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "poco influyente": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "poco realista": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "poco reservado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "podrido": { "pos": "a", "pol": "-0.375", "std": "0.188" }, "polemizar": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "policía": { "pos": "n", "pol": "-0.292", "std": "0.0" }, "policía secreta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "polimiositis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "poliuria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pollino": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "polvorilla": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pomposidad": { "pos": "n", "pol": "-0.458", "std": "0.0" }, "poner en un aprieto": { "pos": "v", "pol": "-0.437", "std": "0.088" }, "poner objecciones": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "ponerse áspero": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "ponzoña": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "populacho": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "por el momento": { "pos": "r", "pol": "-0.312", "std": "0.088" }, "porfiria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "postrimería": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "presagiado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "presuntuoso": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pretencioso": { "pos": "a", "pol": "-0.312", "std": "0.258" }, "pretender": { "pos": "v", "pol": "-0.312", "std": "0.072" }, "priapismo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "primitivismo": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "procacidad": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "proctalgia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "profano": { "pos": "a", "pol": "-0.437", "std": "0.177" }, "profesor asociado": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "profético": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "promiscuo": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "pronunciación anómala": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pronunciación incorrecta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "proscribir": { "pos": "v", "pol": "-0.375", "std": "0.188" }, "proscrito": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "protegerse": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "protesta": { "pos": "n", "pol": "-0.26", "std": "0.113" }, "príncipe de las tinieblas": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "pródromo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "psiconeurosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "psicosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "psicosis maniacodepresiva": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "psicosomático": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "psicópata": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "psicótico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "psilotales": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "psoriasis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pudrir": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "puesta en práctica": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pugnacidad": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "pugnar": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "pulsera": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pulverización catódica": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "punto álgido": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "punzada": { "pos": "n", "pol": "-0.312", "std": "0.105" }, "punzar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "pusilánime": { "pos": "a", "pol": "-0.375", "std": "0.144" }, "puto": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "puñetazos": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "pájaro raro": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pérdida auditiva sensorineural": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "pícaro": { "pos": "n", "pol": "-0.292", "std": "0.144" }, "pútrido": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "que suaviza": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "que zumba": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "quebradizo": { "pos": "a", "pol": "-0.375", "std": "0.144" }, "quebrantar": { "pos": "v", "pol": "-0.375", "std": "0.177" }, "quebrarse": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "queer": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "quehacer": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "queja": { "pos": "n", "pol": "-0.321", "std": "0.112" }, "quejarse": { "pos": "v", "pol": "-0.417", "std": "0.079" }, "quejumbridad": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "quemadura": { "pos": "n", "pol": "-0.292", "std": "0.0" }, "queratitis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "querella": { "pos": "n", "pol": "-0.344", "std": "0.12" }, "queso rallado": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "quiltro": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "rabiar": { "pos": "v", "pol": "-0.417", "std": "0.072" }, "racheado": { "pos": "a", "pol": "-0.312", "std": "0.088" }, "rancidez": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rancio": { "pos": "a", "pol": "-0.458", "std": "0.166" }, "rapiñar": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "raptar": { "pos": "v", "pol": "-0.312", "std": "0.088" }, "raquitis": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "raquitismo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rasgado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "rayo-x": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "raído": { "pos": "a", "pol": "-0.325", "std": "0.153" }, "rebullicio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "recargamiento": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "receso": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "rechifla": { "pos": "n", "pol": "-0.375", "std": "0.125" }, "reciedumbre": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "recluta nuevo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "recochinearse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "recocina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "recriminación": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "redoblante": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "refajo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "refriega": { "pos": "n", "pol": "-0.406", "std": "0.0" }, "refunfuño": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "refunfuñón": { "pos": "a", "pol": "-0.375", "std": "0.265" }, "reivindicación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "relación de enfermos": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "renegado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "renguear": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "renquear": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "repaso": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "repelente": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "repipi": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "reprender": { "pos": "v", "pol": "-0.375", "std": "0.146" }, "reprimenda": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "reprobación": { "pos": "n", "pol": "-0.375", "std": "0.094" }, "reprobar": { "pos": "v", "pol": "-0.375", "std": "0.063" }, "reprobatorio": { "pos": "a", "pol": "-0.333", "std": "0.144" }, "repunta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "residuo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "retar": { "pos": "v", "pol": "-0.406", "std": "0.0" }, "retiro de tropas": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "reto": { "pos": "n", "pol": "-0.375", "std": "0.144" }, "retrogradar": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "reuma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "reumatismo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "reumatismo articular": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "reumático": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "reventarse": { "pos": "v", "pol": "-0.292", "std": "0.072" }, "reverbero": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "revertir": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "revocación": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "revuelco": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "reyerta": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "reñir": { "pos": "v", "pol": "-0.359", "std": "0.058" }, "reúma": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "riboflavina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rictus": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "rigidez": { "pos": "n", "pol": "-0.275", "std": "0.163" }, "rigor mortis": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "rigurosidad": { "pos": "n", "pol": "-0.375", "std": "0.191" }, "rimbombancia": { "pos": "n", "pol": "-0.437", "std": "0.0" }, "riña": { "pos": "n", "pol": "-0.375", "std": "0.065" }, "roce": { "pos": "n", "pol": "-0.312", "std": "0.102" }, "rocoso": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "rodófitos": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rofecoxib": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rojo vino": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rompe-huelga": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rompe-huelgas": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rompible": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "roña": { "pos": "n", "pol": "-0.292", "std": "0.125" }, "rudeza": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "rufián": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "rugosidad": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "rugoso": { "pos": "a", "pol": "-0.333", "std": "0.144" }, "ruinoso": { "pos": "a", "pol": "-0.375", "std": "0.088" }, "ràbia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "rígido": { "pos": "a", "pol": "-0.319", "std": "0.121" }, "sabotear": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "sacarse la espina": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "sacrificar": { "pos": "v", "pol": "-0.292", "std": "0.102" }, "sacrificio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "salvajada": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "salvajismo": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "sambenito": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sandeces": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "santalales": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "saprofítico": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "sapróbico": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "saprófago": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sarao": { "pos": "n", "pol": "-0.292", "std": "0.125" }, "sarasa": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sarcásticamente": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "sarna": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "sarracina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "satánico": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "saña": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "secreta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "seguir la corriente": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "seguro de salud": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "seguro médico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "seguro sanitario": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "self-service": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "semblanza": { "pos": "n", "pol": "-0.292", "std": "0.072" }, "sempiterno": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "sensiblería": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "sentencia condenatoria": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sentenciar a muerte": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "separar del servicio": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "sepulcral": { "pos": "a", "pol": "-0.458", "std": "0.072" }, "sepulcro": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ser espiritual": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ser fatal": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "severidad": { "pos": "n", "pol": "-0.333", "std": "0.151" }, "sicomoro": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sicosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sicosomático": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sicópata": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sicótico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "silicosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "simple": { "pos": "n", "pol": "-0.375", "std": "0.072" }, "sin ayuda": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "sin inagurar": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sin querer": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "sin reserva": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sin resolver": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sin solucionar": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sin vida": { "pos": "r", "pol": "-0.437", "std": "0.088" }, "sin vivacidad": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "sintomáticamente": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "sistema sensorial": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sitiador": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "snob": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sobado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sobrellevar": { "pos": "v", "pol": "-0.375", "std": "0.088" }, "socorro": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sofocado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "sojuzgar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "solenopsis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "solevantamiento": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "sollozar": { "pos": "v", "pol": "-0.4", "std": "0.068" }, "sollozo": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "sonotone": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "soplagaitas": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "soponcio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sordidez": { "pos": "n", "pol": "-0.292", "std": "0.0" }, "sordomudez": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sortilegio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "sosería": { "pos": "n", "pol": "-0.292", "std": "0.125" }, "soso": { "pos": "a", "pol": "-0.297", "std": "0.115" }, "subexposición": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "subgenus chen": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "subirse a": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "subirse al tren": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "subpoblado": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "subyacente": { "pos": "a", "pol": "-0.333", "std": "0.191" }, "suciedad": { "pos": "n", "pol": "-0.306", "std": "0.178" }, "sucio": { "pos": "a", "pol": "-0.281", "std": "0.141" }, "sufrir": { "pos": "v", "pol": "-0.273", "std": "0.123" }, "sugestibilidad": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "supersticioso": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "supervivencia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "suplicio": { "pos": "n", "pol": "-0.479", "std": "0.065" }, "suspicacia": { "pos": "n", "pol": "-0.312", "std": "0.177" }, "síncope": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tabardo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tacha": { "pos": "n", "pol": "-0.396", "std": "0.065" }, "tacto ligero": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tambaleante": { "pos": "a", "pol": "-0.312", "std": "0.125" }, "tambaleo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tanatorio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tapagujeros": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "tara": { "pos": "n", "pol": "-0.344", "std": "0.065" }, "tarado": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tarambana": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "tarantismo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tartajeo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tartamudeo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tartufo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tarugo": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "tembloroso": { "pos": "a", "pol": "-0.396", "std": "0.102" }, "temerario": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "temeridad": { "pos": "n", "pol": "-0.292", "std": "0.0" }, "tempestad": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "tempestad de lluvia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tempestuoso": { "pos": "a", "pol": "-0.469", "std": "0.188" }, "temporal de lluvias": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tender una trampa": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "tener angustia": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "tener ansias": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "tener aprensión": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "tener arcadas": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "tener desazón": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "tener náuseas": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "tensarse": { "pos": "v", "pol": "-0.417", "std": "0.072" }, "teras": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tergiversar": { "pos": "v", "pol": "-0.292", "std": "0.072" }, "termoestable": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "terquedad": { "pos": "n", "pol": "-0.344", "std": "0.157" }, "tibieza": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "tierra virgen": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tifus epidémico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tifus exantemático": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tifus petequial": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "timar": { "pos": "v", "pol": "-0.286", "std": "0.094" }, "tira y afloja": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tiritar": { "pos": "v", "pol": "-0.292", "std": "0.144" }, "tiritera": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tiritona": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tiroide": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "tiroideo": { "pos": "a", "pol": "-0.312", "std": "0.0" }, "tiroteo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tiznarse": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "tizne": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "tiznón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tizón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "toba volcánica": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tocado": { "pos": "a", "pol": "-0.292", "std": "0.072" }, "tocarse": { "pos": "v", "pol": "-0.312", "std": "0.0" }, "todo vale": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tole": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "tomentoso": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "tontaina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tonto": { "pos": "a", "pol": "-0.264", "std": "0.218" }, "tontorrón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "topar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "topetar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "topetear": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "tormenta violenta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tormenta ígnea": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tormentoso": { "pos": "a", "pol": "-0.469", "std": "0.188" }, "torpe": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "tortura": { "pos": "n", "pol": "-0.469", "std": "0.102" }, "torturador": { "pos": "n", "pol": "-0.437", "std": "0.088" }, "toscamente": { "pos": "r", "pol": "-0.375", "std": "0.0" }, "tosco": { "pos": "a", "pol": "-0.446", "std": "0.157" }, "toxicómano": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "toxoplasmosis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "trabajo previo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "trabalenguas": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tracoma": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "tragedia": { "pos": "n", "pol": "-0.312", "std": "0.063" }, "traicionero": { "pos": "a", "pol": "-0.458", "std": "0.125" }, "trampa de arena": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "trampa humana": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "trampa para ratones": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "transmigración": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "trapisonda": { "pos": "n", "pol": "-0.292", "std": "0.125" }, "trascocina": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "trasgo": { "pos": "n", "pol": "-0.375", "std": "0.177" }, "trasmigración": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "traspasar los límites": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "trasto": { "pos": "n", "pol": "-0.333", "std": "0.0" }, "trastornar": { "pos": "v", "pol": "-0.281", "std": "0.0" }, "trastorno cerebral": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "trastorno inmunológico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "trastorno nervioso": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "trastorno neurológico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tratar salvajemente": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "traumatismo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "treta": { "pos": "n", "pol": "-0.312", "std": "0.072" }, "tribunal de apelación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tribunal penal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "trifurcar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "trombocitopenia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "trágico": { "pos": "a", "pol": "-0.437", "std": "0.088" }, "tsaine": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tumor": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "tumulto": { "pos": "n", "pol": "-0.271", "std": "0.094" }, "tumultuoso": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "turbamulta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "turbio": { "pos": "a", "pol": "-0.375", "std": "0.191" }, "turbulencia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "turbulento": { "pos": "a", "pol": "-0.375", "std": "0.177" }, "turón": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "tósigo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ulalgia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ultraje": { "pos": "n", "pol": "-0.333", "std": "0.072" }, "umbrío": { "pos": "a", "pol": "-0.312", "std": "0.265" }, "un": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "uretritis": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vacío legal": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vago": { "pos": "a", "pol": "-0.268", "std": "0.142" }, "vaharada": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vandalismo": { "pos": "n", "pol": "-0.312", "std": "0.088" }, "vano": { "pos": "a", "pol": "-0.284", "std": "0.131" }, "variegación": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vejamen": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vena labial inferior": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vena ovárica": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vena porta": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vena tibial": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vena yugular anterior": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vendajes": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vendaval": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "veneno": { "pos": "n", "pol": "-0.333", "std": "0.0" }, "vengativo": { "pos": "a", "pol": "-0.375", "std": "0.144" }, "ventarrón": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "verdad a medias": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "verde botella": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "versar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "vestibular": { "pos": "a", "pol": "-0.375", "std": "0.0" }, "vibrisas": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "victima de robo": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vidrio": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "villano": { "pos": "n", "pol": "-0.312", "std": "0.063" }, "villanía": { "pos": "n", "pol": "-0.333", "std": "0.125" }, "vioxx": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "viruela": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "virulencia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "virulento": { "pos": "a", "pol": "-0.292", "std": "0.072" }, "visón americano": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vitamina B2": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vituperio": { "pos": "n", "pol": "-0.469", "std": "0.102" }, "vocería": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vomitar": { "pos": "v", "pol": "-0.375", "std": "0.0" }, "vulgar": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vulgaridad": { "pos": "n", "pol": "-0.4", "std": "0.163" }, "vulgariedad": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vulgarizador": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vulneración": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "vómer": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "woofer": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "xeroftalmia": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "xerostomía": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zalagarda": { "pos": "n", "pol": "-0.458", "std": "0.0" }, "zamarro": { "pos": "n", "pol": "-0.375", "std": "0.088" }, "zanguango": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zarandear": { "pos": "v", "pol": "-0.292", "std": "0.0" }, "zizania": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zombie": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zoquete": { "pos": "n", "pol": "-0.312", "std": "0.058" }, "zote": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "zurriburri": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ácaro de la sarna": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ácido butanoico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ácido butírico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ácido carbámico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ácido hidrazoico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ánade real": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "ántrax": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "áspero": { "pos": "a", "pol": "-0.344", "std": "0.188" }, "ébano": { "pos": "n", "pol": "-0.312", "std": "0.0" }, "óxido nítrico": { "pos": "n", "pol": "-0.375", "std": "0.0" }, "a cara descubierta": { "pos": "r", "pol": "0.25", "std": "0.0" }, "a la medida": { "pos": "n", "pol": "0.25", "std": "0.0" }, "a priori": { "pos": "a", "pol": "0.25", "std": "0.0" }, "a propósito": { "pos": "r", "pol": "0.25", "std": "0.0" }, "abandonado": { "pos": "a", "pol": "0.25", "std": "0.265" }, "abarrotado": { "pos": "a", "pol": "0.25", "std": "0.177" }, "abastecedor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abatida": { "pos": "a", "pol": "0.25", "std": "0.0" }, "abatis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abejarrón": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abejón": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ablandante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "abortivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aborto espontáneo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abracadabra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abrazadera real": { "pos": "n", "pol": "0.25", "std": "0.0" }, "abrevadero": { "pos": "n", "pol": "0.25", "std": "0.0" }, "absolvedor": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aburrirse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "acalorado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "acantión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acantonar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "acaparador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "acceleración": { "pos": "n", "pol": "0.25", "std": "0.0" }, "accesional": { "pos": "a", "pol": "0.25", "std": "0.0" }, "accionador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "acecinado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "acento circunflejo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acetificar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "acicalar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "acidular": { "pos": "v", "pol": "0.25", "std": "0.0" }, "aclamador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acolchado": { "pos": "a", "pol": "0.25", "std": "0.177" }, "acolchamiento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acostarse con cualquiera": { "pos": "v", "pol": "0.25", "std": "0.0" }, "acrobático": { "pos": "a", "pol": "0.25", "std": "0.265" }, "acromatínico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "acrídidos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acta notarial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "activa": { "pos": "a", "pol": "0.25", "std": "0.0" }, "activador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "actividad": { "pos": "n", "pol": "0.25", "std": "0.209" }, "actividad principal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "actividad social": { "pos": "n", "pol": "0.25", "std": "0.0" }, "acuartelar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "acuminado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "adaptador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adecuadamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "adelanto": { "pos": "n", "pol": "0.25", "std": "0.125" }, "adhesivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "adiestrador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aditivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "admitido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "adopción": { "pos": "n", "pol": "0.25", "std": "0.191" }, "adormecimiento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adrenalina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adsorbato": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adsorbible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "advice": { "pos": "n", "pol": "0.25", "std": "0.0" }, "adyacente": { "pos": "a", "pol": "0.25", "std": "0.088" }, "aerófilo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "afianzarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "afiladora": { "pos": "n", "pol": "0.25", "std": "0.0" }, "afiliado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "afinación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "afinamiento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aflautado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aforístico": { "pos": "a", "pol": "0.25", "std": "0.354" }, "africada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "afrutado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "agencia publicitaria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "agente del FBI": { "pos": "n", "pol": "0.25", "std": "0.0" }, "agilidad": { "pos": "n", "pol": "0.25", "std": "0.088" }, "agrandar": { "pos": "v", "pol": "0.25", "std": "0.265" }, "agua de fuego": { "pos": "n", "pol": "0.25", "std": "0.0" }, "agudeza visual": { "pos": "n", "pol": "0.25", "std": "0.0" }, "agujereado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "agujero negro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ahorquillado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ahumado": { "pos": "a", "pol": "0.25", "std": "0.177" }, "ahusado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aireado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "al-hakim": { "pos": "n", "pol": "0.25", "std": "0.0" }, "al corriente": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alacridad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alambre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alazán": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alborada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alborozo": { "pos": "n", "pol": "0.25", "std": "0.53" }, "alcalescente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alcalótico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alcanforado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alcanforar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "alcoholizado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alcohólico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alcotana": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alfiler": { "pos": "n", "pol": "0.25", "std": "0.0" }, "algoritmo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alguien": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alguno": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aliado": { "pos": "a", "pol": "0.25", "std": "0.289" }, "aliforme": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alifático": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alimento probiótico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alistado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alma gemela": { "pos": "n", "pol": "0.25", "std": "0.0" }, "almohada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alpenstock": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alternado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alternante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alterne": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alterno": { "pos": "a", "pol": "0.25", "std": "0.088" }, "alteza": { "pos": "n", "pol": "0.25", "std": "0.354" }, "altivez": { "pos": "n", "pol": "0.25", "std": "0.0" }, "altiveza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "alucinado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alucinógeno": { "pos": "a", "pol": "0.25", "std": "0.0" }, "alzado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "amalgamativo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "amanecida": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amarillento": { "pos": "a", "pol": "0.25", "std": "0.177" }, "amateur": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amigdala cerebral": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amniocentesis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amo de la casa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amoblar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "amonestaciones": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amor libre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "amotinado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "amueblado": { "pos": "a", "pol": "0.25", "std": "0.088" }, "amárico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anabaptismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anabolismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anaclisis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anagógico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "analgésico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "analgético": { "pos": "a", "pol": "0.25", "std": "0.0" }, "analizable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "analizado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "analizador diferencial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anamorfismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anasarcoso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "anatomista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anatomía aplicada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anatomía clínica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anatómicamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "andante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "anglohablante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "angloparlante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "angélicamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "animación": { "pos": "n", "pol": "0.25", "std": "0.227" }, "animadamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "animal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "animal colmilludo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "animal doméstico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "animal en cautividad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anotador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antebrazo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antena yagi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antiautoritario": { "pos": "a", "pol": "0.25", "std": "0.0" }, "anticiparse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "anticlimático": { "pos": "a", "pol": "0.25", "std": "0.0" }, "anticuario": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antifonal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antifonario": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antitanque": { "pos": "a", "pol": "0.25", "std": "0.0" }, "antiápex": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antropomórfico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "antroposofía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antílope": { "pos": "n", "pol": "0.25", "std": "0.0" }, "antípoda": { "pos": "a", "pol": "0.25", "std": "0.0" }, "antítesis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "anual": { "pos": "a", "pol": "0.25", "std": "0.125" }, "anverso": { "pos": "n", "pol": "0.25", "std": "0.0" }, "análisis metodológico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "análisis volumétrico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apadrinamiento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aparente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "apasionamiento": { "pos": "n", "pol": "0.25", "std": "0.088" }, "apelable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aplicarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "aplomar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "apocromático": { "pos": "a", "pol": "0.25", "std": "0.0" }, "apodar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "apoderamiento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apoyabrazos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apoyo logístico integrado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apoyo logístico internacional": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apreciable": { "pos": "a", "pol": "0.25", "std": "0.088" }, "aprestar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "aprestarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "apresurado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aprovisionador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aproximado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apátrida": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apócope": { "pos": "n", "pol": "0.25", "std": "0.0" }, "apócrifo": { "pos": "a", "pol": "0.25", "std": "0.354" }, "apófisis transversa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arbitrio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arcadiano": { "pos": "a", "pol": "0.25", "std": "0.0" }, "arcaísta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "area de jurisdicción": { "pos": "n", "pol": "0.25", "std": "0.0" }, "argentífero": { "pos": "a", "pol": "0.25", "std": "0.0" }, "aridad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ariete": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aritmética": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arminianismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arponear": { "pos": "v", "pol": "0.25", "std": "0.177" }, "arqueado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "arquitectura paisajista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arracimado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "arreglarse el pelo": { "pos": "v", "pol": "0.25", "std": "0.0" }, "arreglo personal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arriba": { "pos": "a", "pol": "0.25", "std": "0.0" }, "arrobamiento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arrullo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "art decó": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arteria cerebolosa superior": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arteria comunicante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arteria intestinal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arterias comunicantes": { "pos": "n", "pol": "0.25", "std": "0.0" }, "arácnido": { "pos": "n", "pol": "0.25", "std": "0.0" }, "asentista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aseo": { "pos": "n", "pol": "0.25", "std": "0.271" }, "asesoramiento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "asiento de palco": { "pos": "n", "pol": "0.25", "std": "0.0" }, "asignado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "asignatura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "asistencia postoperatoria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "asistencia social": { "pos": "n", "pol": "0.25", "std": "0.0" }, "asistente social": { "pos": "n", "pol": "0.25", "std": "0.0" }, "asombrado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "asonante": { "pos": "a", "pol": "0.25", "std": "0.177" }, "asordar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "aspirante": { "pos": "a", "pol": "0.25", "std": "0.442" }, "asterión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "astronave": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ataviado": { "pos": "a", "pol": "0.25", "std": "0.088" }, "atemperar": { "pos": "v", "pol": "0.25", "std": "0.088" }, "atendido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "atenuante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "atildar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "atlas lingüístico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "atlético": { "pos": "a", "pol": "0.25", "std": "0.188" }, "atonal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "atorar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "atorvastatina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "atracción de feria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "atractor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "atraíble": { "pos": "a", "pol": "0.25", "std": "0.0" }, "atribuirse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "atónito": { "pos": "a", "pol": "0.25", "std": "0.0" }, "audiovisual": { "pos": "n", "pol": "0.25", "std": "0.0" }, "aullar de risa": { "pos": "v", "pol": "0.25", "std": "0.0" }, "auspicio": { "pos": "n", "pol": "0.25", "std": "0.088" }, "autenticidad": { "pos": "n", "pol": "0.25", "std": "0.354" }, "autillo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "auto-gratificación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "autoadulación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "autobombo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "autocine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "autoengaño": { "pos": "n", "pol": "0.25", "std": "0.0" }, "autotrófica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "autovolquete": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ave": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ave canora": { "pos": "n", "pol": "0.25", "std": "0.0" }, "avenencia": { "pos": "n", "pol": "0.25", "std": "0.088" }, "avenirse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "avinagrar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "avistamiento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "axiología": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ayuda audiovisual": { "pos": "n", "pol": "0.25", "std": "0.0" }, "azitromicina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "azucarar": { "pos": "v", "pol": "0.25", "std": "0.354" }, "azul": { "pos": "a", "pol": "0.25", "std": "0.072" }, "azulado": { "pos": "a", "pol": "0.25", "std": "0.072" }, "aéreo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bacanales": { "pos": "n", "pol": "0.25", "std": "0.0" }, "balido": { "pos": "n", "pol": "0.25", "std": "0.0" }, "balón medicinal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "banas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bandeja de té": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bandeja del té": { "pos": "n", "pol": "0.25", "std": "0.0" }, "barrado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "barrenar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "barrera lingüística": { "pos": "n", "pol": "0.25", "std": "0.0" }, "basa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "basamento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "basofílico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bastón montañero": { "pos": "n", "pol": "0.25", "std": "0.0" }, "batea": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bateo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "beatificación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "beige": { "pos": "a", "pol": "0.25", "std": "0.0" }, "beldad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bella": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bendecir": { "pos": "v", "pol": "0.25", "std": "0.25" }, "bentos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "berberecho": { "pos": "n", "pol": "0.25", "std": "0.0" }, "berro mastuerzo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bestializar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "biblioteconomía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bicromatado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bienal": { "pos": "a", "pol": "0.25", "std": "0.177" }, "bienestar económico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bies": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bifurcado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bigenérico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bigémino": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bilabial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bilateral": { "pos": "a", "pol": "0.25", "std": "0.354" }, "bilineal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "billete de avión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "biodegradable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bioensayo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "biológicamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "bioscopio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bioterio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bioética": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bisílabo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bizantinismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "blanducho": { "pos": "a", "pol": "0.25", "std": "0.0" }, "blasfemador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "blasfemo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bloqueante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "boda civil": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bodhisatwa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bodijo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bofetón": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bola de melón": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bolchevizar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "bollo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bolsa de colofonia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bomba de demolición": { "pos": "n", "pol": "0.25", "std": "0.177" }, "boom": { "pos": "n", "pol": "0.25", "std": "0.0" }, "borriquete": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bote-vivienda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bote de regatas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "botella de Leyden": { "pos": "n", "pol": "0.25", "std": "0.0" }, "botón del ratón": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bracamante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brahmanismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "breve": { "pos": "n", "pol": "0.25", "std": "0.0" }, "breviario": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brindis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "brut": { "pos": "a", "pol": "0.25", "std": "0.0" }, "brámidos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "buen conversador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "buen sabor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "buena fortuna": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bufete de abogados": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bufónidos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "buril": { "pos": "n", "pol": "0.25", "std": "0.0" }, "butaca": { "pos": "n", "pol": "0.25", "std": "0.0" }, "butacón": { "pos": "n", "pol": "0.25", "std": "0.0" }, "bífido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "bíparo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "caballero blanco": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cabeza de serie": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cableado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cachivache": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cadenza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "café con leche": { "pos": "n", "pol": "0.25", "std": "0.0" }, "caja alta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "caja de pensiones": { "pos": "n", "pol": "0.25", "std": "0.0" }, "calaba": { "pos": "n", "pol": "0.25", "std": "0.0" }, "calamina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "calce": { "pos": "n", "pol": "0.25", "std": "0.0" }, "calculable": { "pos": "a", "pol": "0.25", "std": "0.177" }, "calculador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "calculista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "caldo de cultivo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "calefacción": { "pos": "n", "pol": "0.25", "std": "0.0" }, "calentarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "calidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "calidad de vida": { "pos": "n", "pol": "0.25", "std": "0.0" }, "callado": { "pos": "a", "pol": "0.25", "std": "0.191" }, "callarse": { "pos": "v", "pol": "0.25", "std": "0.088" }, "callista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "calophyllum longifolium": { "pos": "n", "pol": "0.25", "std": "0.0" }, "calorífero": { "pos": "n", "pol": "0.25", "std": "0.0" }, "calígrafo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cambalache": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cambiar el forro": { "pos": "v", "pol": "0.25", "std": "0.0" }, "cambio de color": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cambio de forma": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cambio de sentido": { "pos": "n", "pol": "0.25", "std": "0.0" }, "camión": { "pos": "n", "pol": "0.25", "std": "0.177" }, "camión basculante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "campechanería": { "pos": "n", "pol": "0.25", "std": "0.0" }, "campo de estudio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "camuesa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cancelar": { "pos": "a", "pol": "0.25", "std": "0.0" }, "canción de Navidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "canela": { "pos": "a", "pol": "0.25", "std": "0.0" }, "canje": { "pos": "n", "pol": "0.25", "std": "0.0" }, "canonista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "canonización": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cansarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "cantata": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cantillos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "canto nupcial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "capellán de cárcel": { "pos": "n", "pol": "0.25", "std": "0.0" }, "capilla ardiente": { "pos": "n", "pol": "0.25", "std": "0.0" }, "capital de España": { "pos": "n", "pol": "0.25", "std": "0.0" }, "capitulaciones matrimoniales": { "pos": "n", "pol": "0.25", "std": "0.0" }, "carales": { "pos": "n", "pol": "0.25", "std": "0.0" }, "carambolear": { "pos": "v", "pol": "0.25", "std": "0.0" }, "caramelo de azúcar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "caridad": { "pos": "n", "pol": "0.25", "std": "0.12" }, "carrera de fondo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "carrera de perros": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cartilla de ahorro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cartilla de ahorros": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cartón": { "pos": "n", "pol": "0.25", "std": "0.354" }, "casa-bote": { "pos": "n", "pol": "0.25", "std": "0.0" }, "casa de empeño": { "pos": "n", "pol": "0.25", "std": "0.0" }, "casa de empeños": { "pos": "n", "pol": "0.25", "std": "0.0" }, "casamiento desigual": { "pos": "n", "pol": "0.25", "std": "0.0" }, "casarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "caso de urgencia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "castaño": { "pos": "a", "pol": "0.25", "std": "0.0" }, "castaño rojizo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "castillo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "catacréstico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "catamita": { "pos": "n", "pol": "0.25", "std": "0.0" }, "catastro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "catatónico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cattleya": { "pos": "n", "pol": "0.25", "std": "0.0" }, "causa probable": { "pos": "n", "pol": "0.25", "std": "0.0" }, "causativo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cazador de ratones": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cañón automático antiaéreo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cebolleta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cefalópodo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cegador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "celeste": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cemento armado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cencerro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cenotafio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "censurado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "centro comercial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "centro docente": { "pos": "n", "pol": "0.25", "std": "0.0" }, "centro político": { "pos": "n", "pol": "0.25", "std": "0.0" }, "centrífugo": { "pos": "a", "pol": "0.25", "std": "0.088" }, "cenáculo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cephalopoda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cepillo de dientes": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cepillo de uñas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ceremoniero": { "pos": "a", "pol": "0.25", "std": "0.088" }, "ceremoniosidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ceremonioso": { "pos": "a", "pol": "0.25", "std": "0.088" }, "cereza al marrasquino": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cerradura de combinación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "certificable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "certitud": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cerúleo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cespitoso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cestero": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cetrería": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chalaneo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chantajear": { "pos": "v", "pol": "0.25", "std": "0.0" }, "chapuzas": { "pos": "a", "pol": "0.25", "std": "0.0" }, "charla íntima": { "pos": "n", "pol": "0.25", "std": "0.0" }, "charola": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chateau": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chavalongo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chicoleo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chifonier": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chimichurri": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chip de memoria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chiquitín": { "pos": "a", "pol": "0.25", "std": "0.0" }, "chismerío": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chiste visual": { "pos": "n", "pol": "0.25", "std": "0.0" }, "chovinista": { "pos": "a", "pol": "0.25", "std": "0.0" }, "chuparla": { "pos": "v", "pol": "0.25", "std": "0.0" }, "churra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ciencia-ficción": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ciencia aplicada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ciencia biomédica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ciencia ficción": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ciencia médica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "científico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cierre hermético": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cinta de audio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "circunflejo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "circunscrito": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ciruela": { "pos": "n", "pol": "0.25", "std": "0.177" }, "ciudad prospera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "civilizado": { "pos": "a", "pol": "0.25", "std": "0.088" }, "claristorio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "clase alta": { "pos": "n", "pol": "0.25", "std": "0.354" }, "climáticamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "club de atletismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "club de gimnasia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "club de yate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "clueca": { "pos": "n", "pol": "0.25", "std": "0.0" }, "clueco": { "pos": "a", "pol": "0.25", "std": "0.0" }, "clímax sexual": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coaxial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cobijar": { "pos": "v", "pol": "0.25", "std": "0.088" }, "cochino": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cochino lucro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "codorniz": { "pos": "n", "pol": "0.25", "std": "0.177" }, "coexistir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "cognado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cohesivo": { "pos": "a", "pol": "0.25", "std": "0.177" }, "cohesión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cohibido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cola de cometa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "colegio público": { "pos": "n", "pol": "0.25", "std": "0.0" }, "colimación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "colindante": { "pos": "a", "pol": "0.25", "std": "0.088" }, "collada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "colocar burlete": { "pos": "v", "pol": "0.25", "std": "0.0" }, "color crema": { "pos": "a", "pol": "0.25", "std": "0.0" }, "colores protectores": { "pos": "n", "pol": "0.25", "std": "0.0" }, "colorido": { "pos": "n", "pol": "0.25", "std": "0.0" }, "columpio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comedia-ballet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comedia de situación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comentario burlón": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comentario ingenioso": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comercializado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "comerciante de pornografía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comercio de armas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comestibilidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comité ético": { "pos": "n", "pol": "0.25", "std": "0.0" }, "como un angel": { "pos": "r", "pol": "0.25", "std": "0.0" }, "como un reloj": { "pos": "r", "pol": "0.25", "std": "0.0" }, "comoda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "compaginación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comparación imaginaria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comparecencia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "compañero de cama": { "pos": "n", "pol": "0.25", "std": "0.0" }, "compañero del alma": { "pos": "n", "pol": "0.25", "std": "0.0" }, "compañia telefónica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "compañía de teléfono": { "pos": "n", "pol": "0.25", "std": "0.0" }, "compenetrarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "compensación p": { "pos": "n", "pol": "0.25", "std": "0.0" }, "compensado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "competición atlética": { "pos": "n", "pol": "0.25", "std": "0.0" }, "competir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "complemento agente": { "pos": "n", "pol": "0.25", "std": "0.0" }, "complemento indirecto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "componer espondeos": { "pos": "v", "pol": "0.25", "std": "0.0" }, "composición literaria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comprador": { "pos": "n", "pol": "0.25", "std": "0.177" }, "compresibilidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "computador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "comunidad religiosa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "con gran placer": { "pos": "r", "pol": "0.25", "std": "0.0" }, "concebible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "concertar": { "pos": "v", "pol": "0.25", "std": "0.177" }, "concertarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "concienciar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "conclave": { "pos": "n", "pol": "0.25", "std": "0.0" }, "concluido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "concluirse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "concurso atlético": { "pos": "n", "pol": "0.25", "std": "0.0" }, "concéntrico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "condensado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "condensador eléctrico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "condicional": { "pos": "a", "pol": "0.25", "std": "0.0" }, "condilion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "confeccionar rápidamente": { "pos": "v", "pol": "0.25", "std": "0.0" }, "confederado": { "pos": "a", "pol": "0.25", "std": "0.354" }, "confesado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "confirmación": { "pos": "n", "pol": "0.25", "std": "0.094" }, "confirmado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "confortablemente": { "pos": "r", "pol": "0.25", "std": "0.177" }, "confraternización": { "pos": "n", "pol": "0.25", "std": "0.0" }, "congeniar": { "pos": "v", "pol": "0.25", "std": "0.217" }, "conglomerado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "conjuntivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "connatural": { "pos": "a", "pol": "0.25", "std": "0.265" }, "connotativo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "conocida": { "pos": "n", "pol": "0.25", "std": "0.0" }, "conocimiento científico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "conquista sexual": { "pos": "n", "pol": "0.25", "std": "0.0" }, "conscripción": { "pos": "n", "pol": "0.25", "std": "0.0" }, "consejera": { "pos": "n", "pol": "0.25", "std": "0.177" }, "conservatorio": { "pos": "n", "pol": "0.25", "std": "0.177" }, "considerable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "consistencia": { "pos": "n", "pol": "0.25", "std": "0.354" }, "consolador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "consolidador": { "pos": "a", "pol": "0.25", "std": "0.265" }, "consonante africada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "constreñirse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "constringente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "construir un desembarcadero": { "pos": "v", "pol": "0.25", "std": "0.0" }, "consuelda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "consultivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "consultor en dirección de empresas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "consumidor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contornar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "contraejemplo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contraer nupcias": { "pos": "v", "pol": "0.25", "std": "0.0" }, "contrafirmar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "contrarréplica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contraste BOLD": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contrastivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "contrasubversión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contrato aleatorio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contrato bilateral": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contrato condicional": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contrato de adhesión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contrato de matrimonio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contrato de seguro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contrato matrimonial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contrato prematrimonial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "contraído": { "pos": "a", "pol": "0.25", "std": "0.0" }, "controlado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "controvertido": { "pos": "a", "pol": "0.25", "std": "0.125" }, "contráctil": { "pos": "a", "pol": "0.25", "std": "0.0" }, "convalecer": { "pos": "v", "pol": "0.25", "std": "0.088" }, "conveniencia": { "pos": "n", "pol": "0.25", "std": "0.112" }, "convenio": { "pos": "n", "pol": "0.25", "std": "0.088" }, "conversador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "converso": { "pos": "n", "pol": "0.25", "std": "0.0" }, "convertibilidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cooperador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "coordinación": { "pos": "n", "pol": "0.25", "std": "0.347" }, "coordinante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "copiosamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "copérnico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "coqueteo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coreido": { "pos": "n", "pol": "0.25", "std": "0.0" }, "coronión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "corporativismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "corporativo": { "pos": "a", "pol": "0.25", "std": "0.26" }, "corpóreo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "correccional": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "corrección": { "pos": "n", "pol": "0.25", "std": "0.295" }, "corregir": { "pos": "v", "pol": "0.25", "std": "0.303" }, "correlativo": { "pos": "a", "pol": "0.25", "std": "0.177" }, "correr libre": { "pos": "v", "pol": "0.25", "std": "0.0" }, "cortapisa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cortar tela": { "pos": "v", "pol": "0.25", "std": "0.0" }, "corticalmente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "corvo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "corán": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cosa nostra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cosido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cosificación": { "pos": "n", "pol": "0.25", "std": "0.177" }, "cosmonave": { "pos": "n", "pol": "0.25", "std": "0.0" }, "costilla verdadera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "covarianza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "crapuloso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "crearse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "creencia": { "pos": "n", "pol": "0.25", "std": "0.191" }, "crepado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "crepitación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "creyente practicante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "criptográfico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "criptófito": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cristal veneciano": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cristalino": { "pos": "n", "pol": "0.25", "std": "0.0" }, "criterio selectivo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "croar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "cronológicamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "cronógrafo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "croquet": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cruciforme": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cruzado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cualidad maternal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cualidad paternal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cuark": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cubierto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cubierto completo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cubierto de trastos": { "pos": "r", "pol": "0.25", "std": "0.0" }, "cuca": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cucamonas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cuchillo de monte": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cuchufleta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cucú": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cuenta de ahorro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cuenta de ahorros": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cuenta inactiva": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cuerpo de ejército": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cuidados": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cultista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cura": { "pos": "n", "pol": "0.25", "std": "0.289" }, "curación": { "pos": "n", "pol": "0.25", "std": "0.265" }, "curarse": { "pos": "v", "pol": "0.25", "std": "0.265" }, "curculiónidos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cursiva": { "pos": "a", "pol": "0.25", "std": "0.0" }, "cursor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "curvado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "custodio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cuñado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cámara polaroid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cápsula espacial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cártel": { "pos": "n", "pol": "0.25", "std": "0.0" }, "célula de Weston": { "pos": "n", "pol": "0.25", "std": "0.0" }, "célula de cadmio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cíclopes": { "pos": "n", "pol": "0.25", "std": "0.0" }, "código secreto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cómic": { "pos": "n", "pol": "0.25", "std": "0.0" }, "cónclave": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dadaísmo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "daltoniano": { "pos": "a", "pol": "0.25", "std": "0.0" }, "daltónico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dama de noche": { "pos": "n", "pol": "0.25", "std": "0.0" }, "danza de la lluvia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "danza del sol": { "pos": "n", "pol": "0.25", "std": "0.0" }, "danza interpretativa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dar a": { "pos": "v", "pol": "0.25", "std": "0.0" }, "dar de desayunar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "dar el desayuno": { "pos": "v", "pol": "0.25", "std": "0.0" }, "dar el hacha": { "pos": "v", "pol": "0.25", "std": "0.0" }, "dar en el blanco": { "pos": "v", "pol": "0.25", "std": "0.0" }, "dar largas caminatas": { "pos": "v", "pol": "0.25", "std": "0.0" }, "dar llaves": { "pos": "v", "pol": "0.25", "std": "0.0" }, "dar trato de favor": { "pos": "v", "pol": "0.25", "std": "0.0" }, "dar un manotazo": { "pos": "v", "pol": "0.25", "std": "0.0" }, "dar una permanencia": { "pos": "v", "pol": "0.25", "std": "0.0" }, "dar una visa": { "pos": "v", "pol": "0.25", "std": "0.0" }, "darse cuenta": { "pos": "v", "pol": "0.25", "std": "0.0" }, "datable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de barrido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de carga": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de facto": { "pos": "a", "pol": "0.25", "std": "0.0" }, "de paso": { "pos": "r", "pol": "0.25", "std": "0.0" }, "de primos": { "pos": "a", "pol": "0.25", "std": "0.0" }, "deber noble": { "pos": "n", "pol": "0.25", "std": "0.0" }, "decadente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "decantación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dechado": { "pos": "n", "pol": "0.25", "std": "0.26" }, "decimal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "decisivo": { "pos": "a", "pol": "0.25", "std": "0.102" }, "declaración discreta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "declaración rectificatoria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "decorativo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "decrescendo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "decretado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "deducirse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "defensor": { "pos": "a", "pol": "0.25", "std": "0.0" }, "deferencia": { "pos": "n", "pol": "0.25", "std": "0.072" }, "deforestación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "deidad hindú": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dejar claro": { "pos": "v", "pol": "0.25", "std": "0.0" }, "del hipotálamo": { "pos": "r", "pol": "0.25", "std": "0.0" }, "delicuescente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "delimitado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "demulcente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "demótico": { "pos": "a", "pol": "0.25", "std": "0.177" }, "denominador común": { "pos": "n", "pol": "0.25", "std": "0.0" }, "densidad relativa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dentudo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dentón": { "pos": "a", "pol": "0.25", "std": "0.0" }, "departamento de servicios": { "pos": "n", "pol": "0.25", "std": "0.0" }, "depilado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "depravar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "derecho a la vida": { "pos": "n", "pol": "0.25", "std": "0.0" }, "derecho al voto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "derechos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "derechos civiles": { "pos": "n", "pol": "0.25", "std": "0.0" }, "derechos de propiedad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "derechoso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "derivacional": { "pos": "a", "pol": "0.25", "std": "0.0" }, "deriverse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "desaclopar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "desarticular": { "pos": "v", "pol": "0.25", "std": "0.354" }, "desatrancado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "desbalance": { "pos": "n", "pol": "0.25", "std": "0.0" }, "desbordado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "descambio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "descargarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "descartado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "descodificar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "descolonizar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "descomprimir": { "pos": "v", "pol": "0.25", "std": "0.265" }, "descomunal": { "pos": "a", "pol": "0.25", "std": "0.088" }, "descongelar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "descontrol": { "pos": "n", "pol": "0.25", "std": "0.0" }, "descorchar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "descuello": { "pos": "n", "pol": "0.25", "std": "0.0" }, "descuidarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "desecado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "desechado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "desengancharse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "desenvolverse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "desespero": { "pos": "n", "pol": "0.25", "std": "0.0" }, "desforestación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "desglosar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "deshacerse de": { "pos": "v", "pol": "0.25", "std": "0.0" }, "desheredar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "deshielado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "desmedido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "desmovilización": { "pos": "n", "pol": "0.25", "std": "0.0" }, "desnaturalizar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "despegado": { "pos": "a", "pol": "0.25", "std": "0.442" }, "despenalización": { "pos": "n", "pol": "0.25", "std": "0.0" }, "despeño": { "pos": "n", "pol": "0.25", "std": "0.0" }, "desplazado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "despoblación forestal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "destinado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "destreza manual": { "pos": "n", "pol": "0.25", "std": "0.0" }, "desvaloración": { "pos": "n", "pol": "0.25", "std": "0.0" }, "desvincular": { "pos": "v", "pol": "0.25", "std": "0.0" }, "detallar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "detalles": { "pos": "n", "pol": "0.25", "std": "0.0" }, "detectado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "detergente para lavadoras": { "pos": "n", "pol": "0.25", "std": "0.0" }, "detergente para lavavajillas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "determinación incansable": { "pos": "n", "pol": "0.25", "std": "0.0" }, "deuteranopía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diacrítico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dialéctico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diapiro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dibujo técnico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diccionario electrónico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dicho": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dicótomo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "didáctico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dietista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diferenciable": { "pos": "a", "pol": "0.25", "std": "0.265" }, "diflunisal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "difusor": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dilatado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "diminuendo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dinero de San Pedro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dinero sucio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dios del Mar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diploma": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diplomado en enfermería": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diplomatura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "diptongo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dirigente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dirk": { "pos": "n", "pol": "0.25", "std": "0.0" }, "discrecional": { "pos": "a", "pol": "0.25", "std": "0.088" }, "disfrute": { "pos": "n", "pol": "0.25", "std": "0.0" }, "disimulado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "disjunto": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dispar": { "pos": "a", "pol": "0.25", "std": "0.177" }, "dispersor": { "pos": "a", "pol": "0.25", "std": "0.0" }, "disponerse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "distanciado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "distintividad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "distribución binomial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "distribuidor": { "pos": "a", "pol": "0.25", "std": "0.0" }, "disyunto": { "pos": "a", "pol": "0.25", "std": "0.0" }, "divinidad hindú": { "pos": "n", "pol": "0.25", "std": "0.0" }, "divisorio": { "pos": "a", "pol": "0.25", "std": "0.0" }, "divorcio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "doble negación": { "pos": "n", "pol": "0.25", "std": "0.088" }, "doctor en educación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "doctor en investigación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "doctorado honoris causa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "doctrina religiosa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "doctrina teológica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "doctrinario": { "pos": "a", "pol": "0.25", "std": "0.0" }, "documentación": { "pos": "n", "pol": "0.25", "std": "0.177" }, "documentar": { "pos": "v", "pol": "0.25", "std": "0.177" }, "domesticación": { "pos": "n", "pol": "0.25", "std": "0.265" }, "domiciliar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "dominio absoluto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "doo wop": { "pos": "n", "pol": "0.25", "std": "0.0" }, "doparse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "dotar": { "pos": "v", "pol": "0.25", "std": "0.217" }, "doxología": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dracunculoideos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "drama musical": { "pos": "n", "pol": "0.25", "std": "0.0" }, "drenaje": { "pos": "n", "pol": "0.25", "std": "0.0" }, "drive-in": { "pos": "n", "pol": "0.25", "std": "0.0" }, "droga dura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "drogado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "dueño de la casa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "duodecimal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "duque": { "pos": "n", "pol": "0.25", "std": "0.0" }, "duración del servicio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "día solar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "dúmper": { "pos": "n", "pol": "0.25", "std": "0.0" }, "echarse el pollo": { "pos": "v", "pol": "0.25", "std": "0.0" }, "eclecticismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eco del eco": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ecoico": { "pos": "a", "pol": "0.25", "std": "0.177" }, "ecológicamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "ecosistema": { "pos": "n", "pol": "0.25", "std": "0.0" }, "educación": { "pos": "n", "pol": "0.25", "std": "0.129" }, "educación especial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "educación superior": { "pos": "n", "pol": "0.25", "std": "0.0" }, "edulcorar": { "pos": "v", "pol": "0.25", "std": "0.088" }, "eferente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "eje de mando": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eje motor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ejecutivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "el abominable hombre de las nieves": { "pos": "n", "pol": "0.25", "std": "0.0" }, "elación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "electivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "electrificación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "electrizante": { "pos": "a", "pol": "0.25", "std": "0.144" }, "electrodoméstico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "electroforesis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eligibilidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eliminable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "elite": { "pos": "n", "pol": "0.25", "std": "0.0" }, "elitismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "elucidar": { "pos": "v", "pol": "0.25", "std": "0.088" }, "emancipar": { "pos": "v", "pol": "0.25", "std": "0.177" }, "embelesamiento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "embellecer lo perfecto": { "pos": "v", "pol": "0.25", "std": "0.0" }, "embrujado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "emir": { "pos": "n", "pol": "0.25", "std": "0.0" }, "emisión termal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "emoliente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "emotividad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "empalagar": { "pos": "v", "pol": "0.25", "std": "0.177" }, "empantanar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "empatado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "empatizar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "empenachado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "empequeñecido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "emperejilar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "empeñado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "empiricismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "empollado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "empresa de contabilidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "empresa de subastas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "empírico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "emulgente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "en compañía": { "pos": "r", "pol": "0.25", "std": "0.0" }, "en flecha": { "pos": "a", "pol": "0.25", "std": "0.0" }, "en la diana": { "pos": "r", "pol": "0.25", "std": "0.0" }, "en la onda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "en la práctica": { "pos": "r", "pol": "0.25", "std": "0.0" }, "en realidad": { "pos": "r", "pol": "0.25", "std": "0.0" }, "en rojo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "en términos biológicos": { "pos": "r", "pol": "0.25", "std": "0.0" }, "en términos geométricos": { "pos": "r", "pol": "0.25", "std": "0.0" }, "en términos gráficos": { "pos": "r", "pol": "0.25", "std": "0.0" }, "en términos patológicos": { "pos": "r", "pol": "0.25", "std": "0.0" }, "en términos sexuales": { "pos": "r", "pol": "0.25", "std": "0.0" }, "en términos sociobiológicos": { "pos": "r", "pol": "0.25", "std": "0.0" }, "en términos sociolingüísticos": { "pos": "r", "pol": "0.25", "std": "0.0" }, "en uso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "enamorado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enanez": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enano": { "pos": "a", "pol": "0.25", "std": "0.0" }, "encaje de aplicación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "encarnado": { "pos": "a", "pol": "0.25", "std": "0.063" }, "encasquillar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "encerado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "enciclopedia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enciclopedista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "encogido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "encomendar": { "pos": "v", "pol": "0.25", "std": "0.191" }, "encortinado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "encortinar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "encuadernar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "encuentro multitudinario": { "pos": "n", "pol": "0.25", "std": "0.0" }, "encumbramiento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "endoenergético": { "pos": "a", "pol": "0.25", "std": "0.0" }, "endogamia": { "pos": "n", "pol": "0.25", "std": "0.177" }, "endorsement": { "pos": "n", "pol": "0.25", "std": "0.0" }, "endorso": { "pos": "n", "pol": "0.25", "std": "0.0" }, "endosante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "endoso": { "pos": "n", "pol": "0.25", "std": "0.0" }, "endulzado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "endulzar": { "pos": "v", "pol": "0.25", "std": "0.088" }, "enfadadizo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "enfortalecimiento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "engrosar": { "pos": "v", "pol": "0.25", "std": "0.265" }, "engruesar": { "pos": "v", "pol": "0.25", "std": "0.265" }, "engualdrapado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "enlazarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "enmaderado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "enología": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enrielar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ensanchador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enseñanza": { "pos": "n", "pol": "0.25", "std": "0.177" }, "enseñanza superior": { "pos": "n", "pol": "0.25", "std": "0.0" }, "entallado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "enterar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "entidad física": { "pos": "n", "pol": "0.25", "std": "0.0" }, "entono": { "pos": "n", "pol": "0.25", "std": "0.0" }, "entorpecedor": { "pos": "a", "pol": "0.25", "std": "0.0" }, "entreabierto": { "pos": "a", "pol": "0.25", "std": "0.0" }, "entrenador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "entrenadora": { "pos": "n", "pol": "0.25", "std": "0.0" }, "entretener": { "pos": "v", "pol": "0.25", "std": "0.213" }, "entrevía estándar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "envalentonamiento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "enverdecer": { "pos": "v", "pol": "0.25", "std": "0.0" }, "enverdecerse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "envigar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "eosinófilo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "epigrama": { "pos": "n", "pol": "0.25", "std": "0.0" }, "epimórfico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "epinefrina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "epistemología": { "pos": "n", "pol": "0.25", "std": "0.0" }, "equipo de defensa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "equipo de radioterapia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "equipotencial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ergotropismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erinaceidos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erogación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "erradicable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "error de hardware": { "pos": "n", "pol": "0.25", "std": "0.0" }, "escanciador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "escanciano": { "pos": "n", "pol": "0.25", "std": "0.0" }, "escarceo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "escorpiones": { "pos": "n", "pol": "0.25", "std": "0.0" }, "escote imperio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "escritura fiduciaria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "escrupulosamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "escuchar atentamente": { "pos": "v", "pol": "0.25", "std": "0.0" }, "escuela de baile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "escuela de música": { "pos": "n", "pol": "0.25", "std": "0.0" }, "escuela de pensamiento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "escuela pública": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esculpido": { "pos": "a", "pol": "0.25", "std": "0.088" }, "escurridera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "escurridero": { "pos": "n", "pol": "0.25", "std": "0.0" }, "escurridizo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "escénicamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "esgrima": { "pos": "n", "pol": "0.25", "std": "0.265" }, "esgrimista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esotérico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "espacial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "espadachín": { "pos": "n", "pol": "0.25", "std": "0.0" }, "espaldar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "espaldera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "espaldudo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "esparcido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "espatulado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "especializar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "especiero": { "pos": "n", "pol": "0.25", "std": "0.0" }, "espectrofotómetro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "espejito": { "pos": "n", "pol": "0.25", "std": "0.0" }, "espesado": { "pos": "a", "pol": "0.25", "std": "0.177" }, "espiritual negro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esponjoso": { "pos": "a", "pol": "0.25", "std": "0.072" }, "esposar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "espíritu de cuerpo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "espíritu de equipo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estabilizado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "estable": { "pos": "a", "pol": "0.25", "std": "0.182" }, "estabular": { "pos": "v", "pol": "0.25", "std": "0.0" }, "estado de guerra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estado libre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estadísticamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "estampido": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estampido sónico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estampilla": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estandarizar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "estandarte": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estar activo": { "pos": "v", "pol": "0.25", "std": "0.0" }, "estar despierto": { "pos": "v", "pol": "0.25", "std": "0.088" }, "estar lleno": { "pos": "v", "pol": "0.25", "std": "0.0" }, "estar seguro de": { "pos": "v", "pol": "0.25", "std": "0.0" }, "estatuario": { "pos": "a", "pol": "0.25", "std": "0.0" }, "estatus de antigüedad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estatus superior": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estelar": { "pos": "a", "pol": "0.25", "std": "0.354" }, "estentóreo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "estepa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esteticién": { "pos": "n", "pol": "0.25", "std": "0.0" }, "esthéticienne": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estilizado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "estilo arquitectónico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estilo libre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estimador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estipulado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "estomatópodo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estrella guía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estribera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estructurar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "estudios literarios": { "pos": "n", "pol": "0.25", "std": "0.0" }, "estupefacto": { "pos": "a", "pol": "0.25", "std": "0.0" }, "eterno enamorado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "etiquetado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "etnocentrismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "etnología": { "pos": "n", "pol": "0.25", "std": "0.0" }, "etosuximida": { "pos": "n", "pol": "0.25", "std": "0.0" }, "eugénico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "euritmia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "evadir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "evaluación crítica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "evaporable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "evento fortuito": { "pos": "n", "pol": "0.25", "std": "0.0" }, "evento social": { "pos": "n", "pol": "0.25", "std": "0.0" }, "evitación": { "pos": "n", "pol": "0.25", "std": "0.088" }, "exaltado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "examinar animales": { "pos": "v", "pol": "0.25", "std": "0.0" }, "exclamativo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "exclamatorio": { "pos": "a", "pol": "0.25", "std": "0.0" }, "exclusividad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "excusable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "exiliado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "existencialismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "existir": { "pos": "v", "pol": "0.25", "std": "0.228" }, "exoenergético": { "pos": "a", "pol": "0.25", "std": "0.0" }, "expandido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "expansible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "expansión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "experiencial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "expiar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "exposímetro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "expresionismo abstracto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "express": { "pos": "n", "pol": "0.25", "std": "0.0" }, "expurgado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "extensivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "externalidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "externar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "extinguible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "extra": { "pos": "r", "pol": "0.25", "std": "0.0" }, "extramatrimonial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "f": { "pos": "n", "pol": "0.25", "std": "0.0" }, "faceta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "factibilidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "factor de disponibilidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "factual": { "pos": "a", "pol": "0.25", "std": "0.265" }, "factura del teléfono": { "pos": "n", "pol": "0.25", "std": "0.0" }, "facultades": { "pos": "n", "pol": "0.25", "std": "0.0" }, "facultativo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "faetón": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fajina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "falce": { "pos": "n", "pol": "0.25", "std": "0.0" }, "falciforme": { "pos": "a", "pol": "0.25", "std": "0.0" }, "falseado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "falsificar elecciones": { "pos": "v", "pol": "0.25", "std": "0.0" }, "faltar a la palabra": { "pos": "v", "pol": "0.25", "std": "0.0" }, "falócrata": { "pos": "n", "pol": "0.25", "std": "0.0" }, "familia Bufonidae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "familia Crocodylidae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "familia Curculionidae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "familia Dracunculidae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "familia Erinaceidae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "familia Percidae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "familia Sepiidae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "familiarización": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fantasma": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "farde": { "pos": "n", "pol": "0.25", "std": "0.0" }, "farmacocinética": { "pos": "n", "pol": "0.25", "std": "0.0" }, "farmacológicamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "fasiánido": { "pos": "n", "pol": "0.25", "std": "0.0" }, "favor": { "pos": "n", "pol": "0.25", "std": "0.12" }, "fechable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fedelline": { "pos": "n", "pol": "0.25", "std": "0.0" }, "felicidad absoluta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fermento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fervor": { "pos": "n", "pol": "0.25", "std": "0.26" }, "festejar": { "pos": "v", "pol": "0.25", "std": "0.27" }, "festividad cristiana": { "pos": "n", "pol": "0.25", "std": "0.0" }, "festividad cristiana": { "pos": "n", "pol": "0.25", "std": "0.0" }, "festividad judía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "feudalismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fiesta": { "pos": "n", "pol": "0.25", "std": "0.144" }, "figurado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fijeza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "filial": { "pos": "a", "pol": "0.25", "std": "0.177" }, "filosofía empírica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "financiado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "financiar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "finitud": { "pos": "n", "pol": "0.25", "std": "0.0" }, "firmante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "flagrante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "flexión de pierna": { "pos": "n", "pol": "0.25", "std": "0.0" }, "flexuoso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "flipado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "flirt": { "pos": "n", "pol": "0.25", "std": "0.0" }, "flirteo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "floreado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fogata": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fonación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fondo de pensiones": { "pos": "n", "pol": "0.25", "std": "0.0" }, "forma de hablar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "formalizar": { "pos": "v", "pol": "0.25", "std": "0.177" }, "formulado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "forrado de madera": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fotoquímica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fotosfera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fotómetro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "foulard": { "pos": "n", "pol": "0.25", "std": "0.0" }, "foxterrier": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fragante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fraguar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "francófono": { "pos": "a", "pol": "0.25", "std": "0.0" }, "franela": { "pos": "n", "pol": "0.25", "std": "0.0" }, "franqueza": { "pos": "n", "pol": "0.25", "std": "0.2" }, "franquicia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fraseología": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fraternización": { "pos": "n", "pol": "0.25", "std": "0.0" }, "frazada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "frecuente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fuerza motriz": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fuerzas de seguridad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fulgurar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "funcionario público": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fundación privada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fundamentos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "fusiforme": { "pos": "a", "pol": "0.25", "std": "0.0" }, "fusil de juguete": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gabela": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gafete": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gag": { "pos": "n", "pol": "0.25", "std": "0.0" }, "galleta de pasas y nueces": { "pos": "n", "pol": "0.25", "std": "0.0" }, "galleta de uvas pasas y nueces": { "pos": "n", "pol": "0.25", "std": "0.0" }, "galvanómetro balístico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gambito": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ganancias": { "pos": "n", "pol": "0.25", "std": "0.088" }, "ganar neto": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ganoideos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "garantizador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "garla": { "pos": "n", "pol": "0.25", "std": "0.0" }, "garrucha": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gasolinera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gastos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "generativo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "genialidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gentil": { "pos": "a", "pol": "0.25", "std": "0.0" }, "genus bacillus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genus hyphantria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genus ipomoea": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genus nomia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genus pezophaps": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genus phthirius": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genus phthirus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genus rattus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "genético": { "pos": "a", "pol": "0.25", "std": "0.0" }, "geográficamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "geológicamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "geometría no-euclideana": { "pos": "n", "pol": "0.25", "std": "0.0" }, "geométricamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "geométrico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "geopolítica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "germanismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "germanoparlante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gestión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "geógrafo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gigantesco": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gimnasia rítmica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gimnasta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gimnástico": { "pos": "a", "pol": "0.25", "std": "0.265" }, "ginandromorfo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gincana": { "pos": "n", "pol": "0.25", "std": "0.0" }, "glamour": { "pos": "n", "pol": "0.25", "std": "0.0" }, "glasear": { "pos": "v", "pol": "0.25", "std": "0.442" }, "globalizar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "globo del ojo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "globo ocular": { "pos": "n", "pol": "0.25", "std": "0.0" }, "globoso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "globuloso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "glorificación": { "pos": "n", "pol": "0.25", "std": "0.177" }, "gluglutear": { "pos": "v", "pol": "0.25", "std": "0.0" }, "gobernante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gobernanza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "goleador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "golf": { "pos": "n", "pol": "0.25", "std": "0.0" }, "goteado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gramófono": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gravable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "gravamen": { "pos": "n", "pol": "0.25", "std": "0.0" }, "grogui": { "pos": "a", "pol": "0.25", "std": "0.0" }, "grua derrick": { "pos": "n", "pol": "0.25", "std": "0.0" }, "grupal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "guante de golf": { "pos": "n", "pol": "0.25", "std": "0.0" }, "guantes de cabritilla": { "pos": "n", "pol": "0.25", "std": "0.0" }, "guardia de banco": { "pos": "n", "pol": "0.25", "std": "0.0" }, "guillame": { "pos": "n", "pol": "0.25", "std": "0.0" }, "guitarra eléctrica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gula": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gymkhana": { "pos": "n", "pol": "0.25", "std": "0.0" }, "gárgaras": { "pos": "n", "pol": "0.25", "std": "0.0" }, "género Hyphantria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "género ipomoea": { "pos": "n", "pol": "0.25", "std": "0.0" }, "habilitado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "habitabilidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "habitación de hospital": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hacer amigos": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hacer autostop": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hacer concesiones": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hacer concesiones mutuas": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hacer descarrilar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hacer ejercicio": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hacer entender": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hacer formas aserradas": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hacer percibir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hacer un compromiso": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hacer un pase": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hacer un revés": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hacer un tour": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hacer un voto": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hacer voto": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hacerse amigo de": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hastiarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hechizado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hemostático": { "pos": "a", "pol": "0.25", "std": "0.0" }, "heredable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hereditable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hermetismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "herrerasauridae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "herrerasaurus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "heterodáctilo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "heterometábolo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "heterosexismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "heurística": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hialino": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hidrofítico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hidrogenar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hidrófilo": { "pos": "a", "pol": "0.25", "std": "0.088" }, "hierro ondulado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "higiene dental": { "pos": "n", "pol": "0.25", "std": "0.0" }, "higienizar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hinayanismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hincar el diente": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hinduismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hinduísmo ortodoxo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hiosciamina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hipercapnia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hipercrítico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hiperglucemia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hipertrofiado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "hipopnea": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hoguera de campamento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hoja de cuchilla": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hoja de cuchillo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hoja informativa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hombre del neanthertal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "homeotermo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "homilía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "homo sapiens": { "pos": "n", "pol": "0.25", "std": "0.0" }, "homocéntrico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "homocíclico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "homogeneidad": { "pos": "n", "pol": "0.25", "std": "0.265" }, "homosexualidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "homotermo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "honradez": { "pos": "n", "pol": "0.25", "std": "0.191" }, "horizonte sensible": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hormigón armado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hospital": { "pos": "n", "pol": "0.25", "std": "0.0" }, "huero": { "pos": "a", "pol": "0.25", "std": "0.0" }, "humanar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "humanizar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "humanístico": { "pos": "a", "pol": "0.25", "std": "0.191" }, "humeante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "humidificar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "hyphantria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hytrin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "hípica": { "pos": "n", "pol": "0.25", "std": "0.177" }, "iconfundible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "iconoscopio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "idea original": { "pos": "n", "pol": "0.25", "std": "0.0" }, "idealista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "identificado": { "pos": "a", "pol": "0.25", "std": "0.088" }, "idioma": { "pos": "n", "pol": "0.25", "std": "0.0" }, "imaginable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "imagismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "imitado": { "pos": "a", "pol": "0.25", "std": "0.191" }, "impenitente": { "pos": "a", "pol": "0.25", "std": "0.088" }, "impermeabilidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "impermeabilizante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "implantado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "imploración": { "pos": "n", "pol": "0.25", "std": "0.0" }, "implorante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "impoluto": { "pos": "a", "pol": "0.25", "std": "0.177" }, "impresionismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "in": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inadaptado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inadaptador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inapelabilidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inbuir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "incesto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "incidente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "incitativo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inconclusamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "incondicional": { "pos": "a", "pol": "0.25", "std": "0.217" }, "incontable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "incontrovertible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "incorrupto": { "pos": "a", "pol": "0.25", "std": "0.088" }, "inculcación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "indefectible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "independiente": { "pos": "a", "pol": "0.25", "std": "0.175" }, "indizar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "inducido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "industria de la moda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ineducable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inexpresivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "infalibilidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "infinto": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inflación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "influenciado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "influir": { "pos": "v", "pol": "0.25", "std": "0.217" }, "información interna": { "pos": "n", "pol": "0.25", "std": "0.0" }, "infrarrojo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "infructuosidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ingeniera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "iniciador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inigualable": { "pos": "a", "pol": "0.25", "std": "0.088" }, "inmemorable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inmencionable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inmensurable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inmodestia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inmovilista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "innombrable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "innumerable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inpronunciable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "insecto coreido": { "pos": "n", "pol": "0.25", "std": "0.0" }, "instalaciones recreativas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "instalación deportiva": { "pos": "n", "pol": "0.25", "std": "0.0" }, "instigador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "instinto paternal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "instrumentalismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "instrumento de percusión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "instrumento óptico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "insurrecto": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inteligibilidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "intemperadamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "interactuación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "intercalar": { "pos": "a", "pol": "0.25", "std": "0.0" }, "intercambio de favores": { "pos": "n", "pol": "0.25", "std": "0.0" }, "intercambio de pareja": { "pos": "n", "pol": "0.25", "std": "0.0" }, "interdependiente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "interdisciplinario": { "pos": "a", "pol": "0.25", "std": "0.0" }, "interpretación de roles": { "pos": "n", "pol": "0.25", "std": "0.0" }, "interrelacionarse": { "pos": "v", "pol": "0.25", "std": "0.177" }, "intersecarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "intersectar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "introductorio": { "pos": "a", "pol": "0.25", "std": "0.144" }, "intrínseco": { "pos": "a", "pol": "0.25", "std": "0.26" }, "intuicionismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "inundado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "inundarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "investigación empírica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "invitador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ionosfera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ipomoea": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ir de excursión": { "pos": "v", "pol": "0.25", "std": "0.088" }, "isocíclico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "isoniacida": { "pos": "n", "pol": "0.25", "std": "0.0" }, "isósceles": { "pos": "a", "pol": "0.25", "std": "0.0" }, "italohablante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "izquierdas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "izquierdo": { "pos": "a", "pol": "0.25", "std": "0.354" }, "jacobeo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jarra de Leyden": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jaspeación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jaspeado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jingoísta": { "pos": "a", "pol": "0.25", "std": "0.0" }, "jorge": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jornada": { "pos": "n", "pol": "0.25", "std": "0.354" }, "jornadas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "judicial": { "pos": "a", "pol": "0.25", "std": "0.191" }, "judío": { "pos": "n", "pol": "0.25", "std": "0.0" }, "judío conservador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "juego de mesa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "juego del tejo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jugo digestivo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "junta de accionistas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "junta de reclutamiento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "jurar el cargo": { "pos": "v", "pol": "0.25", "std": "0.0" }, "justicia": { "pos": "n", "pol": "0.25", "std": "0.12" }, "justificador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "justificante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "juvenil": { "pos": "a", "pol": "0.25", "std": "0.205" }, "koinonía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "la intelectualidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "laicado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "laicismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lampyridae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lanar": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lanceolado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lanuginoso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "largeza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "larguirucho": { "pos": "a", "pol": "0.25", "std": "0.088" }, "larvado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "laya": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lectura pública": { "pos": "n", "pol": "0.25", "std": "0.0" }, "legalización": { "pos": "n", "pol": "0.25", "std": "0.0" }, "legalizar": { "pos": "v", "pol": "0.25", "std": "0.161" }, "legato": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lengua natural": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lengua sánscrita": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lenguaje natural": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lenitivo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lente convexa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "leonado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lesbiana": { "pos": "a", "pol": "0.25", "std": "0.0" }, "letra bastardilla": { "pos": "n", "pol": "0.25", "std": "0.0" }, "letra corrida": { "pos": "n", "pol": "0.25", "std": "0.0" }, "letra cursiva": { "pos": "n", "pol": "0.25", "std": "0.0" }, "letra mayúscula": { "pos": "n", "pol": "0.25", "std": "0.0" }, "letrero": { "pos": "n", "pol": "0.25", "std": "0.0" }, "levantado": { "pos": "a", "pol": "0.25", "std": "0.125" }, "leíble": { "pos": "a", "pol": "0.25", "std": "0.0" }, "liberalismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "libertad de expresión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "libertad de religión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "libertador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "libertarismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "librador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "libre comercio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "librecambio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "libreta de ahorro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "libreta de ahorros": { "pos": "n", "pol": "0.25", "std": "0.0" }, "libro de conocimiento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "licantropía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "licitador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "licitud": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ligado": { "pos": "a", "pol": "0.25", "std": "0.144" }, "ligoteo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "limnología": { "pos": "n", "pol": "0.25", "std": "0.0" }, "limones": { "pos": "n", "pol": "0.25", "std": "0.0" }, "limpieza": { "pos": "n", "pol": "0.25", "std": "0.188" }, "limítrofe": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lindero": { "pos": "a", "pol": "0.25", "std": "0.0" }, "linebacker": { "pos": "n", "pol": "0.25", "std": "0.0" }, "liofilizado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "liquescente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lista negra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "listado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "llamada a filas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "llamada de teléfono": { "pos": "n", "pol": "0.25", "std": "0.0" }, "llamada telefónica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "llaneza": { "pos": "n", "pol": "0.25", "std": "0.088" }, "llegar hondo": { "pos": "v", "pol": "0.25", "std": "0.0" }, "llegar lejos": { "pos": "v", "pol": "0.25", "std": "0.0" }, "llevar a término": { "pos": "v", "pol": "0.25", "std": "0.354" }, "llevar al altar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "llevarse el pastel": { "pos": "v", "pol": "0.25", "std": "0.0" }, "llueca": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lo apetitoso": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lo delicioso": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lo gustoso": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lo sabroso": { "pos": "n", "pol": "0.25", "std": "0.0" }, "localizado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "locuaz": { "pos": "a", "pol": "0.25", "std": "0.088" }, "lucidez": { "pos": "n", "pol": "0.25", "std": "0.265" }, "lugar de moda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lugar de reunión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lugar estratégico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lugar imagianario": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lujuriar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "luminancia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lustrado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lábil": { "pos": "a", "pol": "0.25", "std": "0.0" }, "lámpara de Aladino": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lésbico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "límpido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "línea de salida": { "pos": "n", "pol": "0.25", "std": "0.0" }, "línea divisoria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lírico": { "pos": "a", "pol": "0.25", "std": "0.326" }, "lógica alética": { "pos": "n", "pol": "0.25", "std": "0.0" }, "lógica doxástica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "machista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "macroscópico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "macrón": { "pos": "n", "pol": "0.25", "std": "0.0" }, "madrás": { "pos": "n", "pol": "0.25", "std": "0.0" }, "maestrazgo": { "pos": "n", "pol": "0.25", "std": "0.354" }, "maestro cocinero": { "pos": "n", "pol": "0.25", "std": "0.0" }, "magnanimidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "magnético": { "pos": "a", "pol": "0.25", "std": "0.26" }, "mahayanismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "maitre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "malentendido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "manager": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mandarina": { "pos": "a", "pol": "0.25", "std": "0.0" }, "manguito": { "pos": "n", "pol": "0.25", "std": "0.0" }, "manipulabilidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mansedumbre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mansión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mansuetud": { "pos": "n", "pol": "0.25", "std": "0.0" }, "manumitir": { "pos": "v", "pol": "0.25", "std": "0.177" }, "manzana camuesa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "manzana reineta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "maqueta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marca de estilo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marca distintiva": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marcha militar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marginalidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "maria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marketing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marmolación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marrajo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "marrano": { "pos": "a", "pol": "0.25", "std": "0.0" }, "marrón-rojizo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "masajear": { "pos": "v", "pol": "0.25", "std": "0.177" }, "masculinidad": { "pos": "n", "pol": "0.25", "std": "0.125" }, "master en pedagogía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mastuerzo acuático": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mastuerzo de agua": { "pos": "n", "pol": "0.25", "std": "0.0" }, "masturbación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "matar de risa": { "pos": "v", "pol": "0.25", "std": "0.0" }, "matarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "matatenas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "materializado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "matiné": { "pos": "n", "pol": "0.25", "std": "0.0" }, "matrilineal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "matrimoniarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "maximización": { "pos": "n", "pol": "0.25", "std": "0.177" }, "mayúscula": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mediana": { "pos": "n", "pol": "0.25", "std": "0.0" }, "medicación con cuentagotas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "medida de contrapeso": { "pos": "n", "pol": "0.25", "std": "0.0" }, "medida provisional": { "pos": "n", "pol": "0.25", "std": "0.0" }, "medidas drásticas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "medido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "medio relieve": { "pos": "n", "pol": "0.25", "std": "0.0" }, "medirse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "melfalán": { "pos": "n", "pol": "0.25", "std": "0.0" }, "melódicamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "memoria volátil": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mención honorífica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mercadeo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mercado bursátil": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mercado de valores": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mercenario": { "pos": "a", "pol": "0.25", "std": "0.0" }, "merchandising": { "pos": "n", "pol": "0.25", "std": "0.0" }, "merecimiento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "merodeador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mesofítico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mesófilo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "metacarpo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metaconocimiento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metafísica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metafórico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "meteórico": { "pos": "a", "pol": "0.25", "std": "0.354" }, "metonímia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metonímico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "metotrexato": { "pos": "n", "pol": "0.25", "std": "0.0" }, "metrónomo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mezuzá": { "pos": "n", "pol": "0.25", "std": "0.0" }, "miasmático": { "pos": "a", "pol": "0.25", "std": "0.0" }, "microfotómetro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "microscopio electrónico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mientes": { "pos": "n", "pol": "0.25", "std": "0.0" }, "militarización": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mimado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mimetizar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "mina de oro": { "pos": "n", "pol": "0.25", "std": "0.354" }, "minado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ministerio de asuntos exteriores": { "pos": "n", "pol": "0.25", "std": "0.0" }, "miofibrilla": { "pos": "n", "pol": "0.25", "std": "0.0" }, "miradita": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mirar por": { "pos": "v", "pol": "0.25", "std": "0.0" }, "misil balístico intercontinental": { "pos": "n", "pol": "0.25", "std": "0.0" }, "misión religiosa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "misticismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mistificar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "mitologista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mitologo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mitólogo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "modelo a escala": { "pos": "n", "pol": "0.25", "std": "0.0" }, "modelo a imitar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "moderantismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "moderato": { "pos": "a", "pol": "0.25", "std": "0.0" }, "modicidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "modorra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mona": { "pos": "n", "pol": "0.25", "std": "0.0" }, "monosilábico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "monosílabo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "monoteísmo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "monsenor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "monseñor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "monte de piedad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "monumento a Washington": { "pos": "n", "pol": "0.25", "std": "0.0" }, "monumento nacional": { "pos": "n", "pol": "0.25", "std": "0.0" }, "moral sexual": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mordacidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "morganático": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mortinato": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mosca": { "pos": "n", "pol": "0.25", "std": "0.0" }, "motete": { "pos": "n", "pol": "0.25", "std": "0.0" }, "motilidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "motivación irracional": { "pos": "n", "pol": "0.25", "std": "0.0" }, "motricidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "movilidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "movilización militar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "movimiento gay": { "pos": "n", "pol": "0.25", "std": "0.0" }, "movimiento juvenil": { "pos": "n", "pol": "0.25", "std": "0.0" }, "movimiento libertario": { "pos": "n", "pol": "0.25", "std": "0.0" }, "movimiento obrero": { "pos": "n", "pol": "0.25", "std": "0.0" }, "movimiento religioso": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mozo de cuadra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mozo de establo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mueble de época": { "pos": "n", "pol": "0.25", "std": "0.0" }, "muerte civil": { "pos": "n", "pol": "0.25", "std": "0.0" }, "muestra de tela": { "pos": "n", "pol": "0.25", "std": "0.0" }, "muestreo": { "pos": "n", "pol": "0.25", "std": "0.177" }, "mujeril": { "pos": "a", "pol": "0.25", "std": "0.088" }, "mullido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "multiracial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "multiuso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mundano": { "pos": "n", "pol": "0.25", "std": "0.0" }, "munificencia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "munificente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "munificiencia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "munífico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "museo científico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "mutable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "mutante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "máchmetro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "máquina de rayos X": { "pos": "n", "pol": "0.25", "std": "0.0" }, "márketing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "máster en educación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "método de enseñanza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "método ecléctico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "método pedagógico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "métricamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "míster": { "pos": "n", "pol": "0.25", "std": "0.0" }, "místico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "módulo de mando": { "pos": "n", "pol": "0.25", "std": "0.0" }, "naciente": { "pos": "a", "pol": "0.25", "std": "0.191" }, "nacimiento del cabello": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nadaderas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "naltrexona": { "pos": "n", "pol": "0.25", "std": "0.0" }, "narcisista": { "pos": "a", "pol": "0.25", "std": "0.0" }, "narcotizado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nasión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "naturista": { "pos": "a", "pol": "0.25", "std": "0.0" }, "navaja automática": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nave espacial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "neanthertal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nebrina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "necio": { "pos": "a", "pol": "0.25", "std": "0.0" }, "negarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "negociación comercial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "negroide": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nemotecnia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "neoclasicismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "neostigmina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nervio troclear": { "pos": "n", "pol": "0.25", "std": "0.0" }, "neurobiológico": { "pos": "r", "pol": "0.25", "std": "0.0" }, "neuroléptico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ninfula": { "pos": "n", "pol": "0.25", "std": "0.0" }, "niqui": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nitrificarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "no apareado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "no comunicación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "no de primos": { "pos": "a", "pol": "0.25", "std": "0.0" }, "no elevado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "no esclarecedor": { "pos": "a", "pol": "0.25", "std": "0.0" }, "no iluminador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "no perecible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "no profético": { "pos": "a", "pol": "0.25", "std": "0.0" }, "no resinoso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nombre de fábrica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nomia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nominar": { "pos": "v", "pol": "0.25", "std": "0.125" }, "nostalgia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nota musical": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nublado": { "pos": "a", "pol": "0.25", "std": "0.177" }, "nudista": { "pos": "a", "pol": "0.25", "std": "0.0" }, "nuevas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nutricionista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nutrición autótrofa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "nutrimento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "número romano": { "pos": "n", "pol": "0.25", "std": "0.0" }, "números rojos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "obediencia": { "pos": "n", "pol": "0.25", "std": "0.144" }, "obelión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "objetificar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "objeto indirecto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "objetor de conciencia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "obligación noble": { "pos": "n", "pol": "0.25", "std": "0.0" }, "obra de consulta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "obra literaria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "obstructor": { "pos": "a", "pol": "0.25", "std": "0.0" }, "oceánico": { "pos": "a", "pol": "0.25", "std": "0.25" }, "oclusivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "octosilábico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "octosílabo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ocuparse": { "pos": "v", "pol": "0.25", "std": "0.191" }, "ocurrirse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "oferta de matrimonio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "offset": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oficial pagador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oficiante": { "pos": "n", "pol": "0.25", "std": "0.177" }, "oficinista": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ofrecer sexo": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ofrecimiento de matrimonio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ofrenda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ojiazul": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ojos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "olla para asar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "olvidable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ombrío": { "pos": "a", "pol": "0.25", "std": "0.0" }, "omnipresente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "omnisciencia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "omnisciente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "onda sonora": { "pos": "n", "pol": "0.25", "std": "0.0" }, "opalino": { "pos": "a", "pol": "0.25", "std": "0.0" }, "operacionalmente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "opistognato": { "pos": "a", "pol": "0.25", "std": "0.0" }, "opúsculo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oración interrogativa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "orante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "orden Scorpionida": { "pos": "n", "pol": "0.25", "std": "0.0" }, "orden religiosa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ordenancista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "orejero": { "pos": "n", "pol": "0.25", "std": "0.0" }, "organización benéfica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "organizado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "orgasmo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ornamentador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ornamental": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ornamentalista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "orto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "osado": { "pos": "a", "pol": "0.25", "std": "0.19" }, "oscilante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "oscilatorio": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ostensible": { "pos": "a", "pol": "0.25", "std": "0.125" }, "osteopatía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ostracodermos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ovacionador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "oxifenbutazona": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paciente": { "pos": "a", "pol": "0.25", "std": "0.088" }, "pagoda": { "pos": "n", "pol": "0.25", "std": "0.0" }, "palabra de honor": { "pos": "n", "pol": "0.25", "std": "0.177" }, "palabras amorosas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paleoantropología": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paleoantropológico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "palmeador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "palo de escoba": { "pos": "n", "pol": "0.25", "std": "0.0" }, "palpable": { "pos": "a", "pol": "0.25", "std": "0.088" }, "pan eucarístico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "panecillo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "panzudo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "papeleta de empeño": { "pos": "n", "pol": "0.25", "std": "0.0" }, "papelón": { "pos": "n", "pol": "0.25", "std": "0.265" }, "paprika": { "pos": "n", "pol": "0.25", "std": "0.0" }, "parada de camiones": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paraje": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pardo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "paripinado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "parir cerditos": { "pos": "v", "pol": "0.25", "std": "0.0" }, "parir puercos": { "pos": "v", "pol": "0.25", "std": "0.0" }, "parodia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "partes iguales": { "pos": "n", "pol": "0.25", "std": "0.0" }, "participar en": { "pos": "v", "pol": "0.25", "std": "0.0" }, "participio pasado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "partidaria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pasar de moda": { "pos": "v", "pol": "0.25", "std": "0.0" }, "pasar el rato": { "pos": "v", "pol": "0.25", "std": "0.0" }, "pasar la aspiradora": { "pos": "v", "pol": "0.25", "std": "0.0" }, "pase adelantado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pase lateral": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paseo en barco": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paseo en yate": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paso de baile": { "pos": "n", "pol": "0.25", "std": "0.0" }, "passeri": { "pos": "n", "pol": "0.25", "std": "0.0" }, "paternal": { "pos": "a", "pol": "0.25", "std": "0.228" }, "patilargo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "patito feo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "patológicamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "patrilineal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "patrocinado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "patronal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "patrullaje": { "pos": "n", "pol": "0.25", "std": "0.0" }, "patrullar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "paulatino": { "pos": "a", "pol": "0.25", "std": "0.0" }, "país de los sueños": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pedante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pedestal": { "pos": "n", "pol": "0.25", "std": "0.072" }, "pediatra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pedicura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pedicuro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "peinar con estilo": { "pos": "v", "pol": "0.25", "std": "0.0" }, "pelleja": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pelota de ping pong": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pelota de tenis": { "pos": "n", "pol": "0.25", "std": "0.0" }, "película amateur": { "pos": "n", "pol": "0.25", "std": "0.0" }, "penetrabilidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pensable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pensamiento sintético": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pensante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pentasilábico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pentasílabo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pequeña compañía de préstamo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pequeñito": { "pos": "a", "pol": "0.25", "std": "0.0" }, "per capita": { "pos": "a", "pol": "0.25", "std": "0.0" }, "perceptivamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "perceptivo": { "pos": "a", "pol": "0.25", "std": "0.375" }, "perciformes": { "pos": "n", "pol": "0.25", "std": "0.0" }, "perdurabilidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "peregrinaje": { "pos": "n", "pol": "0.25", "std": "0.0" }, "perihelio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "periodo histórico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "permeable": { "pos": "a", "pol": "0.25", "std": "0.177" }, "permiso de salida": { "pos": "n", "pol": "0.25", "std": "0.0" }, "persona grata": { "pos": "n", "pol": "0.25", "std": "0.0" }, "persona mayor": { "pos": "n", "pol": "0.25", "std": "0.177" }, "persona religiosa": { "pos": "n", "pol": "0.25", "std": "0.088" }, "personal de tierra": { "pos": "n", "pol": "0.25", "std": "0.0" }, "personalizado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "personalizar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "perspicacia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "persuasible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "persuasiva": { "pos": "n", "pol": "0.25", "std": "0.0" }, "período de descanso": { "pos": "n", "pol": "0.25", "std": "0.0" }, "período histórico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pesadamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "petición de mano": { "pos": "n", "pol": "0.25", "std": "0.0" }, "petrolífero": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pezophaps": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phthirius": { "pos": "n", "pol": "0.25", "std": "0.0" }, "phthirus": { "pos": "n", "pol": "0.25", "std": "0.0" }, "picogordo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pictográfico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pila Weston": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pila de cadmio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pilla-pilla": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pilote": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pimentón dulce": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pimiento verde": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pimpón": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pin": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ping-pong": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pinzón": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pinzón vulgar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pipa de la paz": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pirarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "piropos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "piroxicam": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pista de balonvolea": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pista de voleibol": { "pos": "n", "pol": "0.25", "std": "0.0" }, "placa giratoria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "placar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "planaria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "planariidae": { "pos": "n", "pol": "0.25", "std": "0.0" }, "plancton": { "pos": "n", "pol": "0.25", "std": "0.0" }, "planeado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "plantarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "platea": { "pos": "n", "pol": "0.25", "std": "0.0" }, "plaza pública": { "pos": "n", "pol": "0.25", "std": "0.0" }, "plebeyo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "plexo cardíaco": { "pos": "n", "pol": "0.25", "std": "0.0" }, "poco retórico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "poder de resolución": { "pos": "n", "pol": "0.25", "std": "0.0" }, "poderoso": { "pos": "a", "pol": "0.25", "std": "0.063" }, "poderío": { "pos": "n", "pol": "0.25", "std": "0.0" }, "podólogo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "poema sinfónico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "polaroid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "polisilábico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "polisílabo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "polisíndeton": { "pos": "n", "pol": "0.25", "std": "0.0" }, "poltrona": { "pos": "n", "pol": "0.25", "std": "0.0" }, "política de espera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "poner a punto": { "pos": "v", "pol": "0.25", "std": "0.088" }, "poner atención": { "pos": "v", "pol": "0.25", "std": "0.0" }, "poner en marcha": { "pos": "v", "pol": "0.25", "std": "0.0" }, "poner ramplón": { "pos": "v", "pol": "0.25", "std": "0.0" }, "poner terraza": { "pos": "v", "pol": "0.25", "std": "0.0" }, "poner un burlete": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ponerse de acuerdo": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ponerse de moda": { "pos": "v", "pol": "0.25", "std": "0.0" }, "popover": { "pos": "n", "pol": "0.25", "std": "0.0" }, "populismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "populista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "por cierto": { "pos": "r", "pol": "0.25", "std": "0.0" }, "por derecho": { "pos": "r", "pol": "0.25", "std": "0.0" }, "porcelana": { "pos": "n", "pol": "0.25", "std": "0.177" }, "porcelana fina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pormenor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "portento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "posible": { "pos": "a", "pol": "0.25", "std": "0.12" }, "posición estratégica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "posición militar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "posmodernismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "postoperatorio": { "pos": "a", "pol": "0.25", "std": "0.0" }, "postor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "postratamiento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pozo de gas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pozo surtido": { "pos": "n", "pol": "0.25", "std": "0.0" }, "practicante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "practicidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "precinto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "precipitante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "precognición": { "pos": "n", "pol": "0.25", "std": "0.0" }, "precoz": { "pos": "a", "pol": "0.25", "std": "0.265" }, "predecible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "predestinado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "predeterminado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "prednisolona": { "pos": "n", "pol": "0.25", "std": "0.0" }, "predominancia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "predominar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "preestreno": { "pos": "n", "pol": "0.25", "std": "0.0" }, "preguerra": { "pos": "a", "pol": "0.25", "std": "0.0" }, "prenatal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "prensil": { "pos": "a", "pol": "0.25", "std": "0.0" }, "preordenar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "prescindencia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prescindir de": { "pos": "v", "pol": "0.25", "std": "0.0" }, "presentación publica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "presentar una coartada": { "pos": "v", "pol": "0.25", "std": "0.0" }, "presente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "preservativo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "presión osmótica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "preso político": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prestar atención": { "pos": "v", "pol": "0.25", "std": "0.0" }, "prestar oído": { "pos": "v", "pol": "0.25", "std": "0.0" }, "prestatario": { "pos": "n", "pol": "0.25", "std": "0.0" }, "presteza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prestigio": { "pos": "n", "pol": "0.25", "std": "0.125" }, "presumido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "prevenible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "preventivo": { "pos": "a", "pol": "0.25", "std": "0.144" }, "principios": { "pos": "n", "pol": "0.25", "std": "0.0" }, "probabilidad": { "pos": "n", "pol": "0.25", "std": "0.088" }, "probidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "proceso de representación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "proceso geológico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "proclamado": { "pos": "a", "pol": "0.25", "std": "0.177" }, "procrastinar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "procreación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "productividad": { "pos": "n", "pol": "0.25", "std": "0.354" }, "producto de belleza": { "pos": "n", "pol": "0.25", "std": "0.0" }, "producto farmacéutico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "profesionalidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "profesionalismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "programa de instrucción": { "pos": "n", "pol": "0.25", "std": "0.0" }, "programa de lectura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "programa de servicio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "programa vocacional": { "pos": "n", "pol": "0.25", "std": "0.0" }, "progresismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "progresividad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "progresivo": { "pos": "a", "pol": "0.25", "std": "0.129" }, "progreso": { "pos": "n", "pol": "0.25", "std": "0.072" }, "prolijo": { "pos": "a", "pol": "0.25", "std": "0.177" }, "promulgado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "pronación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "propensión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "propio": { "pos": "a", "pol": "0.25", "std": "0.228" }, "propiocepción": { "pos": "n", "pol": "0.25", "std": "0.0" }, "proporcionable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "propuesta de matrimonio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "proselitismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "prospectar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "prostitución": { "pos": "n", "pol": "0.25", "std": "0.0" }, "protanopía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "protegido": { "pos": "n", "pol": "0.25", "std": "0.0" }, "proteico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "protogeométrico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "prototipo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "proverbio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "provisto de continajes": { "pos": "a", "pol": "0.25", "std": "0.0" }, "provisto de cortinajes": { "pos": "a", "pol": "0.25", "std": "0.0" }, "provisto de fondos": { "pos": "a", "pol": "0.25", "std": "0.0" }, "proxémica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pseudohermafrodita": { "pos": "a", "pol": "0.25", "std": "0.0" }, "psicoactivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "psicología aplicada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "psicología industrial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "puente peatonal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "puente voladizo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "puerta abierta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "puertaventana": { "pos": "n", "pol": "0.25", "std": "0.0" }, "puesto de primeros auxilios": { "pos": "n", "pol": "0.25", "std": "0.0" }, "puesto de socorro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pulidez": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pulimento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pulverulento": { "pos": "a", "pol": "0.25", "std": "0.0" }, "punta de alfiler": { "pos": "n", "pol": "0.25", "std": "0.0" }, "punta del alfiler": { "pos": "n", "pol": "0.25", "std": "0.0" }, "punteado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "punto celeste": { "pos": "n", "pol": "0.25", "std": "0.0" }, "punto cúlmine": { "pos": "n", "pol": "0.25", "std": "0.0" }, "punto de encuentro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "punto de intersección": { "pos": "n", "pol": "0.25", "std": "0.0" }, "punto destacado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "punto final": { "pos": "n", "pol": "0.25", "std": "0.0" }, "punto geográfico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "puritano": { "pos": "a", "pol": "0.25", "std": "0.382" }, "puro talento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "puzzle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pájaro cantor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pájaro pelágico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "párpado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "pérdidas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "quark": { "pos": "n", "pol": "0.25", "std": "0.0" }, "querubín": { "pos": "n", "pol": "0.25", "std": "0.0" }, "quid": { "pos": "n", "pol": "0.25", "std": "0.0" }, "quididad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "quinacrina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "quinceañero": { "pos": "n", "pol": "0.25", "std": "0.0" }, "quinidina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "quitapiedras": { "pos": "n", "pol": "0.25", "std": "0.0" }, "racimado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "racionalización": { "pos": "n", "pol": "0.25", "std": "0.144" }, "radiactivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "radioactivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ragtime": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ramoso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rango superior": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ranura de expansión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "raqueta de badminton": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rastafarianismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ratificado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ratón de biblioteca": { "pos": "n", "pol": "0.25", "std": "0.0" }, "razonabilidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "razonamiento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "razón social": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reaccionario": { "pos": "n", "pol": "0.25", "std": "0.0" }, "readmisión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reafirmación": { "pos": "n", "pol": "0.25", "std": "0.177" }, "reajustarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "realpolitik": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reargumentar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "reblandecerse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "rebosar": { "pos": "v", "pol": "0.25", "std": "0.177" }, "recablear": { "pos": "v", "pol": "0.25", "std": "0.0" }, "recalentado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "recauchutar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "recepcionar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "receptivo": { "pos": "a", "pol": "0.25", "std": "0.26" }, "rechonchez": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reciente": { "pos": "a", "pol": "0.25", "std": "0.125" }, "recinto ferial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "recluido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "recolección del heno": { "pos": "n", "pol": "0.25", "std": "0.0" }, "recompensado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "recompensar": { "pos": "v", "pol": "0.25", "std": "0.068" }, "recomponerse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "reconocimiento interescolar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "recorrer mundo": { "pos": "v", "pol": "0.25", "std": "0.0" }, "recortado": { "pos": "a", "pol": "0.25", "std": "0.191" }, "recursos minerales": { "pos": "n", "pol": "0.25", "std": "0.0" }, "recusable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "recíproco": { "pos": "a", "pol": "0.25", "std": "0.144" }, "reencarnado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "reencauchar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "reencuadernar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "reensamblar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "refacción": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reflexología": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reformación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reformador social": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reformismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "refractivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "refrendar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "refringente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "refrán": { "pos": "n", "pol": "0.25", "std": "0.0" }, "regalado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "regalarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "regla de oro": { "pos": "n", "pol": "0.25", "std": "0.177" }, "regularizarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "reharmonización": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reir a carcajadas": { "pos": "v", "pol": "0.25", "std": "0.0" }, "relacionado": { "pos": "a", "pol": "0.25", "std": "0.056" }, "relacionarse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "relaciones sexuales": { "pos": "n", "pol": "0.25", "std": "0.0" }, "relación ligera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "relevar": { "pos": "v", "pol": "0.25", "std": "0.088" }, "relinchar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "reloj de cuco": { "pos": "n", "pol": "0.25", "std": "0.0" }, "relojería": { "pos": "n", "pol": "0.25", "std": "0.0" }, "relumbrante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "relumbrar": { "pos": "v", "pol": "0.25", "std": "0.177" }, "remanente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rematadora": { "pos": "n", "pol": "0.25", "std": "0.0" }, "remediable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "reminiscencia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "remolcador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "remunerar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "renacimiento espiritual": { "pos": "n", "pol": "0.25", "std": "0.0" }, "renovable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rentar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "repartimiento": { "pos": "n", "pol": "0.25", "std": "0.0" }, "repensar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "repetido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "replantearse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "reposabrazos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "representado": { "pos": "a", "pol": "0.25", "std": "0.177" }, "representante comercial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "reps": { "pos": "n", "pol": "0.25", "std": "0.0" }, "requisito académico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "requisitos académicos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "resbaladizo": { "pos": "a", "pol": "0.25", "std": "0.088" }, "resbaloso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "rescindible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "reservable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "residente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "residual": { "pos": "a", "pol": "0.25", "std": "0.0" }, "respecto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "responder de": { "pos": "v", "pol": "0.25", "std": "0.0" }, "restallido": { "pos": "n", "pol": "0.25", "std": "0.0" }, "restringido": { "pos": "a", "pol": "0.25", "std": "0.105" }, "resueltamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "retardado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "retozo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "retroactivo": { "pos": "a", "pol": "0.25", "std": "0.177" }, "retumbante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "reverdecer": { "pos": "v", "pol": "0.25", "std": "0.0" }, "reverencia": { "pos": "n", "pol": "0.25", "std": "0.209" }, "reversibilidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "revisado": { "pos": "a", "pol": "0.25", "std": "0.177" }, "riada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ribavirina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ricura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rifar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "rinoplastia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rito": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ritual": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ritualista": { "pos": "a", "pol": "0.25", "std": "0.0" }, "roca volcánica vítrea": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rogativa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rojizo": { "pos": "a", "pol": "0.25", "std": "0.177" }, "rol": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rol social": { "pos": "n", "pol": "0.25", "std": "0.0" }, "roletear": { "pos": "v", "pol": "0.25", "std": "0.0" }, "rompehielos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rondalla": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ronronear": { "pos": "v", "pol": "0.25", "std": "0.088" }, "ropa de calle": { "pos": "n", "pol": "0.25", "std": "0.0" }, "rudimentos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ruego": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ruidoso": { "pos": "a", "pol": "0.25", "std": "0.102" }, "rutilar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "rutina recursiva": { "pos": "n", "pol": "0.25", "std": "0.0" }, "récord mundial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "saber divino": { "pos": "n", "pol": "0.25", "std": "0.0" }, "saborizar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "sabrosura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sacramental": { "pos": "a", "pol": "0.25", "std": "0.442" }, "sala de masajes": { "pos": "n", "pol": "0.25", "std": "0.0" }, "salaz": { "pos": "a", "pol": "0.25", "std": "0.088" }, "salir bien": { "pos": "v", "pol": "0.25", "std": "0.0" }, "salir pitando": { "pos": "v", "pol": "0.25", "std": "0.0" }, "salvación": { "pos": "n", "pol": "0.25", "std": "0.451" }, "salón de té": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sancionado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "santa maria": { "pos": "n", "pol": "0.25", "std": "0.0" }, "santa sede": { "pos": "n", "pol": "0.25", "std": "0.0" }, "santidad": { "pos": "n", "pol": "0.25", "std": "0.161" }, "santoral": { "pos": "n", "pol": "0.25", "std": "0.177" }, "saudade": { "pos": "n", "pol": "0.25", "std": "0.0" }, "saurios": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sazón": { "pos": "n", "pol": "0.25", "std": "0.0" }, "schola cantorum": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sector de ocupación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sector ocupacional": { "pos": "n", "pol": "0.25", "std": "0.0" }, "secuencial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "secularismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sedativo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "seleccionador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "selectividad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "semicircular": { "pos": "a", "pol": "0.25", "std": "0.0" }, "semicomatoso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "semiconsciente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "semicualificado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "semiempírico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "semiformal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "semioficial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "semiprocesado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "semitransparente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sensibilizador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sensualmente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "sentar tendencia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sentencia del árbitro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sentido del humor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sentido del olfato": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sentimental": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sentirse": { "pos": "v", "pol": "0.25", "std": "0.088" }, "ser promiscuo": { "pos": "v", "pol": "0.25", "std": "0.0" }, "ser testigo": { "pos": "v", "pol": "0.25", "std": "0.0" }, "serpentino": { "pos": "a", "pol": "0.25", "std": "0.088" }, "serrado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sertralina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "servicio de paquetes postales": { "pos": "n", "pol": "0.25", "std": "0.0" }, "servicio militar obligatorio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "servicio militar selectivo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "servicio público": { "pos": "n", "pol": "0.25", "std": "0.354" }, "servicio social": { "pos": "n", "pol": "0.25", "std": "0.0" }, "servicio telefónico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "servo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "servomecanismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sesquipedal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "setter": { "pos": "n", "pol": "0.25", "std": "0.0" }, "seudohermafrodita": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sex-appeal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sexista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sexo extramatrimonial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sexo ilícito": { "pos": "n", "pol": "0.25", "std": "0.0" }, "shock de Metrazol": { "pos": "n", "pol": "0.25", "std": "0.0" }, "shock de metrazol": { "pos": "n", "pol": "0.25", "std": "0.0" }, "shock insulínico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "signatario": { "pos": "n", "pol": "0.25", "std": "0.0" }, "significantemente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "significatividad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "signo característico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "signo diacrítico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "simbiótico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sin levadura": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sinclinal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sincronismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sincronizado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sincronía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sinfonizar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "sintonización": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sinusoidal": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sirdar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sistema de ventilación": { "pos": "n", "pol": "0.25", "std": "0.177" }, "sistema de vigilancia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sitcom": { "pos": "n", "pol": "0.25", "std": "0.0" }, "situado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "soberano": { "pos": "a", "pol": "0.25", "std": "0.177" }, "soberbia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sobrecalentado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sobreexposición": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sobreprotector": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sobrepuesto": { "pos": "a", "pol": "0.25", "std": "0.0" }, "socialité": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sociobiológicamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "sociolingüísticamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "soldar": { "pos": "v", "pol": "0.25", "std": "0.177" }, "soldar a tope": { "pos": "v", "pol": "0.25", "std": "0.0" }, "soldar por puntos": { "pos": "v", "pol": "0.25", "std": "0.0" }, "soluble": { "pos": "a", "pol": "0.25", "std": "0.265" }, "sombreado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sombroso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "someterse a": { "pos": "v", "pol": "0.25", "std": "0.0" }, "somnolencia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "somnoliento": { "pos": "a", "pol": "0.25", "std": "0.191" }, "somnífero": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sonetear": { "pos": "v", "pol": "0.25", "std": "0.354" }, "sonido consonante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sonido consonántico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sopapo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sorprendido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sostén principal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "soñador": { "pos": "a", "pol": "0.25", "std": "0.0" }, "soñolencia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sprechgesang": { "pos": "n", "pol": "0.25", "std": "0.0" }, "starets": { "pos": "n", "pol": "0.25", "std": "0.0" }, "stent": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suavizado": { "pos": "a", "pol": "0.25", "std": "0.088" }, "subcontinente": { "pos": "n", "pol": "0.25", "std": "0.0" }, "subcultura": { "pos": "n", "pol": "0.25", "std": "0.0" }, "subjetividad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sublevado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sublevar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "sublimidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suborden Lipotyphla": { "pos": "n", "pol": "0.25", "std": "0.0" }, "subsidiar": { "pos": "v", "pol": "0.25", "std": "0.088" }, "subvencionar": { "pos": "v", "pol": "0.25", "std": "0.072" }, "subyugable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sucesión ecológica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sudismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sufragio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sujetalibros": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sujetar con cabilla": { "pos": "v", "pol": "0.25", "std": "0.0" }, "sulfamida": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suma total": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sumatorio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suministrador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suntuario": { "pos": "a", "pol": "0.25", "std": "0.0" }, "superabundancia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "superdotada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "superdotado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "supergigante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "supervisor": { "pos": "a", "pol": "0.25", "std": "0.0" }, "suplente": { "pos": "a", "pol": "0.25", "std": "0.0" }, "supremacía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "supresivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "suscribir": { "pos": "v", "pol": "0.25", "std": "0.0" }, "suscripción": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suspensión cardán": { "pos": "n", "pol": "0.25", "std": "0.0" }, "suspensión de pagos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sustantivo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "swami": { "pos": "n", "pol": "0.25", "std": "0.0" }, "swing": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sábana bajera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sáfico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "sánscrito": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sépidos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "séptimo cielo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "séquito": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sínfito": { "pos": "n", "pol": "0.25", "std": "0.0" }, "sólidamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "súbito": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tabla de espiritismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tachuela": { "pos": "n", "pol": "0.25", "std": "0.0" }, "talar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "taller de encuadernación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tangibilidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tangible": { "pos": "a", "pol": "0.25", "std": "0.068" }, "tapado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tasajear": { "pos": "v", "pol": "0.25", "std": "0.0" }, "taxonómicamente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "tecnóloga": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tecnólogo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tejedura de punto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tejemaneje": { "pos": "n", "pol": "0.25", "std": "0.088" }, "tejido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tejido de punto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "telecomedia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "telefonazo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "telescopio de Newton": { "pos": "n", "pol": "0.25", "std": "0.0" }, "telescopio gregoriano": { "pos": "n", "pol": "0.25", "std": "0.0" }, "telescopio óptico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "teletransportar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "temperamental": { "pos": "a", "pol": "0.25", "std": "0.0" }, "temperamentalmente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "temperatura ambiente": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tendenciosidad": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tenencia de acciones": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tener suerte": { "pos": "v", "pol": "0.25", "std": "0.0" }, "tenis de mesa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "teoría de conjuntos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "teosofismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "terapia": { "pos": "n", "pol": "0.25", "std": "0.088" }, "terapia ocupacional": { "pos": "n", "pol": "0.25", "std": "0.0" }, "terazosina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "terciopelo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "terminado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "termoplástico": { "pos": "a", "pol": "0.25", "std": "0.0" }, "territorialmente": { "pos": "r", "pol": "0.25", "std": "0.0" }, "tesina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tesis doctoral": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tiempo de ocio": { "pos": "n", "pol": "0.25", "std": "0.177" }, "tiempo sincopado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tienda especializada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tirada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tirado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tocoferol": { "pos": "n", "pol": "0.25", "std": "0.0" }, "todo": { "pos": "a", "pol": "0.25", "std": "0.217" }, "tolazamida": { "pos": "n", "pol": "0.25", "std": "0.0" }, "toma de control": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tomar el aire": { "pos": "v", "pol": "0.25", "std": "0.0" }, "tomar nota": { "pos": "v", "pol": "0.25", "std": "0.0" }, "tomar parte en": { "pos": "v", "pol": "0.25", "std": "0.0" }, "tonificar": { "pos": "v", "pol": "0.25", "std": "0.088" }, "tonsurado": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tope": { "pos": "a", "pol": "0.25", "std": "0.0" }, "toque de corneta": { "pos": "n", "pol": "0.25", "std": "0.0" }, "toque de fajina": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tortuga boba": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trabajador calificado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trabajador cualificado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trabajador social": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trabajadora calificada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trabajadora cualificada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trabajo en equipo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tracto": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tragicomedia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tragicómico": { "pos": "a", "pol": "0.25", "std": "0.331" }, "tramitación": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trampantojo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "transferible": { "pos": "a", "pol": "0.25", "std": "0.191" }, "transimisible": { "pos": "a", "pol": "0.25", "std": "0.0" }, "transistor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "transitivizar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "transmundano": { "pos": "a", "pol": "0.25", "std": "0.0" }, "transparente": { "pos": "a", "pol": "0.25", "std": "0.191" }, "transplacentario": { "pos": "a", "pol": "0.25", "std": "0.0" }, "transporte por camión": { "pos": "n", "pol": "0.25", "std": "0.0" }, "transporte terrestre": { "pos": "n", "pol": "0.25", "std": "0.0" }, "transvasar": { "pos": "v", "pol": "0.25", "std": "0.0" }, "trascendencia": { "pos": "n", "pol": "0.25", "std": "0.177" }, "trasmundano": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tratado de paz": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tratado equitativo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tratar animales": { "pos": "v", "pol": "0.25", "std": "0.0" }, "trato equitativo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trato justo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "travestido": { "pos": "a", "pol": "0.25", "std": "0.0" }, "tribunal de justicia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "triclormetiazida": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tricotado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tridente": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tridimensional": { "pos": "a", "pol": "0.25", "std": "0.0" }, "triforio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trilobita": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trineo de vela": { "pos": "n", "pol": "0.25", "std": "0.0" }, "triquion": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tritanopía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trogon": { "pos": "n", "pol": "0.25", "std": "0.0" }, "truco": { "pos": "n", "pol": "0.25", "std": "0.0" }, "truco de magia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trueque": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trust": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tríplica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "trípode": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tubo acústico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tupé": { "pos": "n", "pol": "0.25", "std": "0.0" }, "turno": { "pos": "n", "pol": "0.25", "std": "0.177" }, "términos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "tímpano": { "pos": "n", "pol": "0.25", "std": "0.0" }, "títeres": { "pos": "n", "pol": "0.25", "std": "0.0" }, "título convertible": { "pos": "n", "pol": "0.25", "std": "0.0" }, "título cupón cero": { "pos": "n", "pol": "0.25", "std": "0.0" }, "título hipotecario": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ubicuo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ultraconservador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ultraderechista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ultravioleta": { "pos": "a", "pol": "0.25", "std": "0.0" }, "umbroso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "unidad de conductancia": { "pos": "n", "pol": "0.25", "std": "0.0" }, "unir en matrimonio": { "pos": "v", "pol": "0.25", "std": "0.0" }, "unirse en matrimonio": { "pos": "v", "pol": "0.25", "std": "0.0" }, "universo del discurso": { "pos": "n", "pol": "0.25", "std": "0.0" }, "unión consensual": { "pos": "n", "pol": "0.25", "std": "0.0" }, "urraca": { "pos": "n", "pol": "0.25", "std": "0.0" }, "usufructo": { "pos": "n", "pol": "0.25", "std": "0.177" }, "utilizado": { "pos": "a", "pol": "0.25", "std": "0.063" }, "utrículo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "utópico": { "pos": "a", "pol": "0.25", "std": "0.331" }, "vagaroso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "vahear": { "pos": "v", "pol": "0.25", "std": "0.0" }, "vaivén": { "pos": "n", "pol": "0.25", "std": "0.0" }, "valer la pena": { "pos": "v", "pol": "0.25", "std": "0.0" }, "valor no cotizado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "valoración crítica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "valorización crítica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vampirismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vaporizable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "vecino": { "pos": "a", "pol": "0.25", "std": "0.0" }, "velludo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vena cardinal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vena cava": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vena etmoidal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vena lacrimal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vena oftálmica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vena oftálmica superior": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vena pancreática": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vena posterior del ventrículo izquierdo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "venas epigástricas superiores": { "pos": "n", "pol": "0.25", "std": "0.0" }, "venas superiores epigástricas": { "pos": "n", "pol": "0.25", "std": "0.0" }, "venial": { "pos": "a", "pol": "0.25", "std": "0.0" }, "venta condicionada": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ventaja fiscal": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ventanilla": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ventrudo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "verboso": { "pos": "a", "pol": "0.25", "std": "0.0" }, "verde guisante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "verde mar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "verdear": { "pos": "v", "pol": "0.25", "std": "0.0" }, "verdecer": { "pos": "v", "pol": "0.25", "std": "0.0" }, "verosimilitud": { "pos": "n", "pol": "0.25", "std": "0.177" }, "verse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "vespertiliónidos": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vestido camisero": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vestirse": { "pos": "v", "pol": "0.25", "std": "0.0" }, "vez": { "pos": "n", "pol": "0.25", "std": "0.0" }, "viajante": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vida real": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vidrio de Murano": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vinculante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "vindicador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vitalista": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vitamina e": { "pos": "n", "pol": "0.25", "std": "0.0" }, "viviente": { "pos": "a", "pol": "0.25", "std": "0.088" }, "vocalización": { "pos": "n", "pol": "0.25", "std": "0.0" }, "volante": { "pos": "a", "pol": "0.25", "std": "0.0" }, "volatilizable": { "pos": "a", "pol": "0.25", "std": "0.0" }, "volquete": { "pos": "n", "pol": "0.25", "std": "0.0" }, "voltímetro electrónico": { "pos": "n", "pol": "0.25", "std": "0.0" }, "voluntad incansable": { "pos": "n", "pol": "0.25", "std": "0.0" }, "voyerismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "voyeurismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vulcanizador": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vágil": { "pos": "a", "pol": "0.25", "std": "0.0" }, "válvula semilunar": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vía ancha": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vía arterial": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vía estrecha": { "pos": "n", "pol": "0.25", "std": "0.0" }, "vía expresa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "wellerismo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "wica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "wicca": { "pos": "n", "pol": "0.25", "std": "0.0" }, "xerografía": { "pos": "n", "pol": "0.25", "std": "0.0" }, "yagi": { "pos": "n", "pol": "0.25", "std": "0.0" }, "yeti": { "pos": "n", "pol": "0.25", "std": "0.0" }, "yodar": { "pos": "v", "pol": "0.25", "std": "0.088" }, "yuxtapuesto": { "pos": "a", "pol": "0.25", "std": "0.0" }, "zanquilargo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "zapatilla de deporte": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zooide": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zurdera": { "pos": "n", "pol": "0.25", "std": "0.0" }, "zureo": { "pos": "n", "pol": "0.25", "std": "0.0" }, "záfiro": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ácimo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "ámbito aproximado": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ánimo": { "pos": "n", "pol": "0.25", "std": "0.262" }, "árbol motor": { "pos": "n", "pol": "0.25", "std": "0.0" }, "área de estudio": { "pos": "n", "pol": "0.25", "std": "0.0" }, "área temática": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ázimo": { "pos": "a", "pol": "0.25", "std": "0.0" }, "élite": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ópera bufa": { "pos": "n", "pol": "0.25", "std": "0.0" }, "ópera cómica": { "pos": "n", "pol": "0.25", "std": "0.0" }, "a capella": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "a pelo": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "a un lado": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "abducir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "aberrante": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "abierta": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "abogado del diablo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "abogaducho": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "abono orgánico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "abrasador": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "abrasividad": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "abrigadero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "absolutista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "absolver": { "pos": "v", "pol": "-0.25", "std": "0.063" }, "abultar": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "aburrido": { "pos": "a", "pol": "-0.25", "std": "0.186" }, "abusado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "abyección": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "abásico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "academia del aire": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acalorarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "acatexia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "accidente": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "accidente fatal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acción refleja": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aceite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acero de tungsteno": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acero de wolframio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acetaminofeno": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acetato de plomo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aclorhidria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aclorhídrico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "acobardado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "acometer": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "acondrita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acondroplástico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "acorralado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "acortarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "acosado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "acrilamida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acriminador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acroanestesia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acrofobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acrofóbico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "actinomicótico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "acto de terrorismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acto reflejo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "actuar violentamente": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "acuerdo viático": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acufeno": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acusación": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "acusador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "acuñador ilegal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "adicción a la cafeína": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "adormilarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "adormitarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "adquirido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "aeroembolismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aestesis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aethusa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aferente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "affenpinscher": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aficionado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "afrenta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "afta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "agarico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "agente de policía": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "agitprop": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "agorafobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "agorafóbico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "agreste": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "agrisado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "agrisar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "aguardiente de manzana": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aguas residuales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aguijoneo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "agárico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aherrumbrar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ahogadero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ailurofobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aire cargado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aire viciado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ajusticiar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "al contado": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "albayalde": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "albinismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alborotoso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alcoholismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aleatoriedad": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "aleatorizar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "algodón hidrófilo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "algolágnico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "aligerarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "allium porrum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "allium vineale": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "almendra garrapiñada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alopecia areata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alta traición": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alteridad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "alzaválvulas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "amargor": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "amaurosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "amaurótico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ambientalista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "amenazado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "amenorreico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ametralladora thompson": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "amigabilidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "amigdalina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aminoración": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "amiodarona": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "amnesia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "amnéstico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "amonítico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "amorfo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "amortecimiento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "amotinamiento": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "amétrope": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "anacantos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anadeo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anafrodisia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anaplasia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anaplásico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "anaplástico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "anastomus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anatómico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "andrajo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "androfobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anestésico total": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "angina de pecho": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "angiopatía": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "angioplastia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anglófobo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "angurria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anhidrosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anieblarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "animales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anión": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aniónico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "anopía": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anorexia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anosmático": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "anovulación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anoxemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anoxia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anteojos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anthonomus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antideportivo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "antihigiene": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antimacasar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antipirético": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antisemitismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "antisocial": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "antisubmarino": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "antracítico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "antro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anuresis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anuria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "anómalo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "anóxico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "aojar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "aojo": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "apagado": { "pos": "a", "pol": "-0.25", "std": "0.121" }, "apartadero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aparte": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "apetecido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "apetencia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "apetitivo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "apogámico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "apolar": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "apoptosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aporreo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "apostatar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "apresamiento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aprisionar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "apuro": { "pos": "n", "pol": "-0.25", "std": "0.105" }, "aquiescencia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aquí y allá": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "aracnofobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "arbusto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "archivo maestro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arco Tudor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arcoiris": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arginina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aristoloquiales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arma de fuego portátil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arma nuclear": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arma portátil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "armerol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aro de nariz": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arrapiezo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arrellanarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "arremeter": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "arrestar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "arriana": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arriano": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "arriar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "arrogancia": { "pos": "n", "pol": "-0.25", "std": "0.265" }, "arrojar la toalla": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "arteria circunfleja ilíaca": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "artería": { "pos": "n", "pol": "-0.25", "std": "0.354" }, "artificiosa": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "artritis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "artroscopia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asa fétida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asafétida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asaltador": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "asalto": { "pos": "n", "pol": "-0.25", "std": "0.044" }, "asalto a mano armada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ascidias": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ascítico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "asedio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asesina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asesino en serie": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asexualidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asindético": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "asirse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "asistente de hospital": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asno": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asno africano": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asno salvaje africano": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asno salvaje asiático": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "asomar la cabeza": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "aspereza": { "pos": "n", "pol": "-0.25", "std": "0.12" }, "asténico": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "ataque por tierra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atañer": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "atelectasia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atemperación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atencional": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "atesarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "atirantarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "atisbadero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atormentador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atraco a mano armada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "atrapado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "atreverse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "atribulación": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "atronador": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "atropellar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "audacia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ausencia de persuasión": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ausentismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ausentismo escolar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "autismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "auto de comparecencia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "autoconservación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "autodegradación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "autodisciplinado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "automortificación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "autopreservación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "autotomía": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "autócrata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ave de rapiña": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "aventurismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "avidez de sangre": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "avitaminosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "azidotimidina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "azul-púrpura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "azul de Prusia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "azul turquesa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "añorar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "aún no nacido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "babel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "babirusa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bacteriológico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bagel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bajá": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bala de mosquete": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bala dumdum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "baldío": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "balístico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bamboleo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "banquillo de los acusados": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barco de guerra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barra de cacahuetes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "barrillo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "basalto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "base": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "base de operaciones": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bastón ligero de paseo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "basáltico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bata de baño": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "batalla de Horcas Caudinas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "batalla de Ipso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "batalla de Ivry": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "batalla de Magenta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "batalla de Maratón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "batalla de Minden": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "batalla de Panipat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "batalla de Queronea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "batalla de Rocroi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "batalla de las Horcas Caudinas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "batalla del Somme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "batiborrillo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "batida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "batir a golpes": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "batín": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bauhinia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bañador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "baño de sangre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "behaviorista": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "belicosidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "belitre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bellaquería": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "berilio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bicoca": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bienes relictos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "billete de banco": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "biorremediación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bioterrorismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "biotita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "biotítico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bisbiseo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bizquera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blaia zimondal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blandengue": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bloc de notas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bloqueo mutuo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "blusa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bobadas": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "boca del estómago": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "body": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bofia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bogeyman": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bola de fuego": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bola de manteca": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bolonio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bomba centrífuga": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bomba de relojería": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "bombardeo": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "bombín": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "borrelia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boscaje": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bosta de vaca": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "botas camperas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "botija": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "botulismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "boxear": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "boxeo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brachystegia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bradicardia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "braquial": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "braquiuros": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bravuconada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bregante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brezo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "breña": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bribonería": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brillo": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "brisa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "broma de mal gusto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "broma telefónica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bromuro de metilo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bronco": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bronquedad": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "broza": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "brujería": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bruxismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bruza": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bubónico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bufete": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bulbar": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bulbo raquídeo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bumerang": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "buque hundido": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "buque naufragado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "burdo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "burka": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "buro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "busca y captura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "buscapleitos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "buscavidas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "bustier": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "butírico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "bálsamo del Perú": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "búmeran": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caballo de batalla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cabezadilla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caca de palomas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cacharro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cachondearse": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "caco": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cadáver": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caer violentamente": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cafeinomanía": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cafetera exprés": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cafeína": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cafeínico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "caftán": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cajón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caldera volcánica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cale": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "calor de condensación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "calumia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "camandulería": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "camilla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "camisa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "camisa de dormir": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "camisola": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "campaña naval": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "camperas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "campilotropo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "campo eléctrico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "campo gravitacional": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "campo magnético": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "canijo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "canillera": { "pos": "n", "pol": "-0.25", "std": "0.265" }, "canto de sirena": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caos": { "pos": "n", "pol": "-0.25", "std": "0.102" }, "capero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "capital del Tíbet": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caquético": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "cara de póker": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carapacho": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carbunco": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "carcelero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carcinoide": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carcomer": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cardamine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carencia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "careta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "careta antigás": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carga negativa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cargo imprevisible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "cargo irregular": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "carmelita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carnear": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "carnezuelo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carraspera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carretón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "carroza": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "cartilaginoso": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "cartujo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "carácter desagradable": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "casa de naipes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "casa de rancho": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "casanova": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cascar": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "casco del bateador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "casquivano": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "cassiope": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "castigado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "casulla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "catacaldos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "catetismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cateto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "causa perdida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caza de ratas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cazabombardero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cazar al acecho": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cazar con halcones": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cazar con halcón": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cazar con hurones": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cazar conejos": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cazar furtivamente": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cazatorpedero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "caído": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "cebolla silvestre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ceborrincha": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cefotaxima": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ceftriaxona": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ceguera objetiva": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "celinda": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cenizas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "censor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "centrospermo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cepillo de fregar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cepillo de púas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cerapteryx": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cerco": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cercosporella": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cereza Bing": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cereza picota": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chacota": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chacó": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chaladura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chamarasca": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chancroso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "changarro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chapa de identificación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chaparral": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "charlatanismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cheque": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cheviot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chevió": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chichón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chicoria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chifladura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chilaba": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chilindrina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chiste morboso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chiste negro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chiste étnico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chorizada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chorreces": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chupóptero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "chámara": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cicadófitos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cicatería": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ciclónico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ciego": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cieno": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cimarra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cimbreo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cinemática": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cinturón salvavidas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "circulativo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "circunstante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cirrosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cirrosis hepática": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ciruela damascena": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cistoplejía": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "clamoreo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "claramente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "clase baja": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "claustrofobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cleptomanía": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "clinch": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "clinodactilia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cobalto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "coccidioidomicosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "coccidioidosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cocculus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cocear": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "coche deportivo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cocido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "cocodrilo africano": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cocodrilo del Nilo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "coenzima": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cogotazo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cola cortada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "colaboracionista": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "colifato": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "colonia de conejos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "colonización": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "color acromático": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "combarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "combatiente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "combatividad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "combustión": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "comida recalentada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "common arrowhead": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "commutar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "comparativo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "competidor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "competidora": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "comprador compulsivo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "computar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "con curiosidad": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "con importancia": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "con indecisión": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "con intencionalidad": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "con voz sollozante": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "concernir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "concertina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "concluyentemente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "concusión": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "condenada a cadena perpétua": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "condenado a cadena perpétua": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "condicionamiento adverso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "conejal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "conejar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "conflagración": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "confrontacional": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "confutación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "congelamiento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "conglomerado de madera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "conjunción adversativa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "conminatorio": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "conocerse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "conquista normanda": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "conquistar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "conseguir con artimañas": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "conseja": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "conservacionista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "consolación": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "conspiración": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "contar cuentos": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "contraalmirante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "contrabandista de licores": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "contradecir": { "pos": "v", "pol": "-0.25", "std": "0.094" }, "contrainteligencia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "contralmirante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "contraproducente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "contrincante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "controversia": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "cookie": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "copiado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "copo de algodón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "coptis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "corajoso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "corbata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cordón de apertura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "corindón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "corona de laurel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "corpacho": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "corromperse": { "pos": "v", "pol": "-0.25", "std": "0.144" }, "corroído": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "cortar irregularmente": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cortavientos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "corteza de trigo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cortina rompeviento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cotarro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cresa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crescentia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cretinismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crimen de guerra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "criminal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "criminológico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "criofobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "criogenia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "criopatía": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "criptograma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cromatográfico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "cromoestesia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crucialidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cruzar el rostro": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "crítica constante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crítica maliciosa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "crítica textual": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cuadrilátero de boxeo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cuarcita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cuartazos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cuartearse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cucharada sopera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cuchichear": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "cuelgacapas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "culí": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "curiosamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "currar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "curruscar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "custodiar": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "cámara de tortura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "céfiro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "célula adiposa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "célula de Golgi": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "cólico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dar alivio": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "dar bastonazos": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "dar garrotazos": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "dar la tabarra": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "dar oropel": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "dar una patada": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "dar vueltas a": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "dar órdenes": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "de Sísifo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "de forma genérica": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "de forma inclinada": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "de forma penetrante": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "de la nada": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "de mala gana": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "de moneras": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "de poca fiabilidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "decaer": { "pos": "v", "pol": "-0.25", "std": "0.163" }, "decepción": { "pos": "n", "pol": "-0.25", "std": "0.265" }, "deceso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "decir entre dientes": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "decir verbalmente": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "declaración incorrecta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "defecto visual": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "defector": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "defender": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "defensa comercial": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "defervescente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "deficiencia auditiva": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deficiencia visual": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deforme": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "degollador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dejado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dejar suelto": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "del dictioptero": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "del mecóptero": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "delgadamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "delincuente habitual": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "delito informático": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "demonio": { "pos": "n", "pol": "-0.25", "std": "0.164" }, "demonio necrófano": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "demérito": { "pos": "n", "pol": "-0.25", "std": "0.191" }, "dendrita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dendroctonus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "denunciador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "denunciante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "denunciatorio": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "departamento de química": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deportivo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deprecar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "depresión distímica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "derecho del mar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "derecho marítimo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dermatitis atópica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dermatofitosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dermatomiositis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "derrochador": { "pos": "a", "pol": "-0.25", "std": "0.102" }, "derroche de energía": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "derrotamiento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "derruir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "derruirse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "derrumbar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "desaborido": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "desabotonado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desabrimiento": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "desacorde": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desafecto": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desafiante": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desaforado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desahucio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desaliñado": { "pos": "a", "pol": "-0.25", "std": "0.056" }, "desalmado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desamparado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desangrarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "desarreglado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desatinado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desbocado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desbridamiento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "descabellado": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "descalificar": { "pos": "v", "pol": "-0.25", "std": "0.265" }, "descalzo": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "descansadamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "descararse": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "descaro": { "pos": "n", "pol": "-0.25", "std": "0.127" }, "descendente": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "descerebrar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "descerrajar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "descoco": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "descolado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "descolorarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "desconfiar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "desconsoladamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "descontrolar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "descordar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "descruzado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desenredado": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "desenvueltamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "deseo sexual inhibido": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desequilibrio mental": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desescalada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desfallecer": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "desgajar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "desgastarse": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "desgrapar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "desgreñado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "deshaucio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desiderátum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "deslustrar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "desmaño": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desmejora": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desmelenado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desmemoriado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desmentir": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "desmerecimiento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desmotivado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desodorante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desoladamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "desorden gastrointestinal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "despeinado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "despeinar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "despellejarse": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "desperdicio de energía": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desperdicio de material": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "despojaron": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "despojarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "despojo": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "desproporción": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desprotegido": { "pos": "a", "pol": "-0.25", "std": "0.265" }, "destapar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "destructivamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "destruído": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "desvalorizar": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "desventurado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "desvergüenza": { "pos": "n", "pol": "-0.25", "std": "0.112" }, "desvitalizar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "deteriorarse": { "pos": "v", "pol": "-0.25", "std": "0.217" }, "deus ex machina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dhoti": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "diablillo": { "pos": "n", "pol": "-0.25", "std": "0.144" }, "diagnóstico médico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "diarrea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dicranales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "difracción": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "digitaria ischaemum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "diltiazem": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "diluído": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "dinamitar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "dingo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dipsnea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dipsomanía": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dipsosaurus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "discapacitar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "disconforme": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "disentería": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disfemismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disfuerzo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dislocación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disléxico": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "disnea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disolutamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "disparar un cañon": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "dispepsia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "displasia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dispnea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "distendido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "distimia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "distorsionado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "distrito policial": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "disturbio racial": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "diverticulitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dióxido de nitrógeno": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "domador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "dormán": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "driblar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "dubitativo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "délfico": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "día y noche": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "ebonita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eccema atópico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "echar a perder": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "echar abajo": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ecologista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ectrodactilia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "edentados": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "efectismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "electrocutar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "elefantiasis neuromatosa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "elemento no metálico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "elisio": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "elísio": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "embargo de nómina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "emboscar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "embotado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "embólico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "emitir un chillido": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "empacho": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "empeorado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "en cualquier instante": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "en cualquier momento": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "en círculos": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "en el acto": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "en general": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "en poco tiempo": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "en un instante": { "pos": "r", "pol": "-0.25", "std": "0.088" }, "enajenación mental": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "enanismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "encamisar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "encamisarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "encanecer": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "encefalitis letárgica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "encender(se)": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "enchaquetar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "enchaquetarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "encontrado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "encopresis infantil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "encostrarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "endeblez": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "endemoniado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "endiosamiento": { "pos": "n", "pol": "-0.25", "std": "0.265" }, "endocarpio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "endocarpo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "energía cinética": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "energía eólica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "energía radiante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "enervador": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "enfermedad cardiovascular": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "enfermedad del sudor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "enfermo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "enfermo incurable": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "enfrentarse a": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "engatusamiento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "engomar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "engrisecer": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "enhollinar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "enojadizo": { "pos": "a", "pol": "-0.25", "std": "0.354" }, "enrevesar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "enronquecimiento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "enseguida": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "ensordecedor": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ensordecido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "enterizo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "enterramiento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "entoloma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "entomofobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "entrecot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "entrecó": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "entregar mal": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "entremetido": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "enturbiado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "enturbiarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "envalentonado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "envenenamiento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "enviar un drive": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "envilecedor": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "envilecer": { "pos": "v", "pol": "-0.25", "std": "0.265" }, "eosinofilia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "epidemiología": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "epidemiológico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "epilepsia postraumática": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "epiléptico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "equipo de rescate": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "equus hemionus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "equus hemionus kiang": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "erosión costera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "error de interpretación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "error informático": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "erupción volcánica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escabrosidad": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "escafandra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escalar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escalofrío": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escandalizar": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "escaparsse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "escapismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escapulario": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escarabajo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escaramuzar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "escarnecer": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "escatología": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "escaño trasero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escoria": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "escorial": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escuadrón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "escuchar a escondidas": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "escudar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "escándalo": { "pos": "n", "pol": "-0.25", "std": "0.065" }, "esferocarpales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esmeril": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esnob": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esnobismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espada de Damocles": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espaldarón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esparadrapo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "especie humana": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espeluzno": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espinillera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espirar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "espiritismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espiritista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espiritualista": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "espontaneidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esprue": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "espíritu necrófago": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esquibob": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esquirol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esquirolaje": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esquivez": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "esquizoide": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "estacionario": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "estafilococo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estar abatido": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "estar al mando": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "estar deprimido": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "estar en la higuera": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "estar mal visto": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "estigmatizar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "estola": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estornudo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estrabismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estregar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "estreñimiento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estridente": { "pos": "a", "pol": "-0.25", "std": "0.205" }, "estrucioniformes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estructura defensiva": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estupideces": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "estupidez": { "pos": "n", "pol": "-0.25", "std": "0.141" }, "eurylaimidae": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eutanasia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "eutrofización": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "evacuación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "evacuado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "evasionismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "evidentemente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "exagerado elogio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "exantema": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "exculpatorio": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "exhorto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "exorcismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "expandirse": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "expediente termporal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "experiencia sensorial": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "expiatorio": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "exploración geográfica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "exterminable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "extralingüístico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "extrañar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "extremismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "facilidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "facineroso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "facochero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "falacia": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "falco rusticolus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "falconiforme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fallecimiento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "falsa": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "falsar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "falta de consideración": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "falta de educación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "falta de equivalencia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "falta de forma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "familia Haemulidae": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "familia Myrmecophagidae": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "familia melampsoráceas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fantasmada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fantasmagórico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "farsante": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fatigar": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "febrífugo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "felis silvestris": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fenestral": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ferula assafoetida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fervientemente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "fibrinólisis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fiebre de Texas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fiebre del ganado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fiebre paratifoidea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fiebre recurrente": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fiebre tifoidea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fieramente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "fiero": { "pos": "a", "pol": "-0.25", "std": "0.265" }, "figura retórica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fijarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "filicidio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fimosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "final de copa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fiscal general": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fisgón": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fisicalismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fisostigma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fisura del paladar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "flecar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "flojear": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "flojedad": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "flora": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "floresta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fluctuante": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "folclor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "folclore": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "folklore": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "follonero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fosforo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fox-trot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "foxtrot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "franciscano": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frangollar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "frangollón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "franja": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "franja de vuelo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frase pegadiza": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fraude fiscal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frenesí": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frescor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frigorífico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fringillidae": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frivolidad": { "pos": "n", "pol": "-0.25", "std": "0.102" }, "frufrú": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "frígido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "fuego antiaéreo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fuego preparado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fuegos artificiales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fuegos de artificio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fuera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fuerza centrífuga": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fugacidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fulminante": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "funcionario de prisiones": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "funeral": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "funerario": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "futilidad": { "pos": "n", "pol": "-0.25", "std": "0.137" }, "fábrica de armamento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fárrago": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "físicoterapeuta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "fútil": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "gafar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "gafas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gafas protectoras": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "galactosemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "galleta para perros": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gallinería": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gallumbos": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "galvanización": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gamberrismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gammaglobulina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ganar prosélitos": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "gandul": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "gangrena del tallo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gangrenarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "gangsterismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ganzúa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "garabato": { "pos": "n", "pol": "-0.25", "std": "0.068" }, "garantía del cumplimiento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "garranchuelo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gas nervioso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gastar una broma": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "gastritis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gastritis crónica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gato del desierto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gato maltés": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gato salvaje": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gato siamés": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gaviota": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gavión": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gaznápiro": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "gañido": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gegenschein": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gemelo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "gemir": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "generalmente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "genus aethusa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus amsinckia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus anastomus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus anchusa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus anthonomus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus antilope": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus bauhinia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus bos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus brachystegia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus cardamine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus cassiope": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus cerapteryx": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus cercosporella": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus cocculus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus coptis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus crescentia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus dendroctonus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus dipsosaurus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus empetrum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus entoloma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus lepiota": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus limenitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus monarda": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus ozonium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus physostigma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus phytophthora": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus pythium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus reticulitermes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus rosellinia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus scleroderma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus serrasalmus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus streptopelia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus syringa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus tussilago": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genus veratrum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "genéricamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "gilbert": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "glitch": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "glándula submaxilar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "glíptica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gobierno en el exilio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gobierno títere": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gola": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "golfante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "golpear duramente": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "golpearse contra": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "gonorrea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gordiano": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "gordinflón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gordito": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gorguera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gorjal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gorra de marinero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gorro de dormir": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gorro de ducha": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gran angular": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "gran vida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "granulomatosis crónica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "grasa poliinsaturada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gratis": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "grimorio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gris-pizarra": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "grisear": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "grisoso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "grisáceo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "grocería": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "grullo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "grunge": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guante de boxeo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guardafrenos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guardarse": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "guardia de prisión": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guasábara": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guerra bacteriológica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guili": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guilladura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guindo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guiñapo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "guripa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gustativo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "gustatorio": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "gálbano": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gángster": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "gánster": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "género Anastomus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "género Anthonomus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "género Antilope": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "género Cerapteryx": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "género Dipsosaurus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "género Latrodectus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "género Serrasalmus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "género Streptopelia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "género aethusa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "género bauhínia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "género cardamine": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "género empetrum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "género fisostigma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "género humano": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "género monarda": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "género ozonium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hacer añicos": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hacer baronet": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hacer caer": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hacer desaparecer": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hacer falta": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hacer gris": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hacer prosélitos": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hacer responsable": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hacer tongo": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hacer trizas": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hacer una apuesta": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hacerse con": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "hacerse humo": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "haiku": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "halcón gerifalte": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hallar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hamartia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "harapo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "harpía": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "hauberk": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hebefrenia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hebefrénico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hecho polvo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hematuria": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "hemiplejia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hemiplejía": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hemión": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hemoptisis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "heredero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "herida": { "pos": "n", "pol": "-0.25", "std": "0.105" }, "herida de guerra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "herido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "herradero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "herrumbrar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hibris": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hidrocefalia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hidrocele": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hidrofóbico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hidroxicina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hierro cinco": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "himenomicetes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hiperacusia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hiperinsulinismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hiperón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hipogammaglobulinemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hipogonadismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hipopotasemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "historia heroica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "historiador del arte": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hiyab": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hoja trifoliada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "holgado": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "holgazán": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hollín": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hombre del tiempo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hombre lobo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "homicidio involuntario": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "homicidio sin premeditación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hongo carbón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hongo del marchitamiento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "horas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "horririzar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "hortícola": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hospital de campaña": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hostigamiento": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "huelga": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "hurañía": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "husmeador": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "hábeas corpus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ictal": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ignífugo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ilegibilidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ilimitadamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "immunizar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "impactar": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "impedimento olfativo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "impenetrabilidad": { "pos": "n", "pol": "-0.25", "std": "0.265" }, "imperativo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "imperceptible": { "pos": "a", "pol": "-0.25", "std": "0.072" }, "impertinencia": { "pos": "n", "pol": "-0.25", "std": "0.105" }, "impetuosamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "imponibilidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "impopular": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "importunar": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "imposible": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "impostor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "impracticable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "impresentable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "impresión sensorial": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "imprevisto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "improductividad": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "impudencia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "impuesto de exportación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "impuesto de protección": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "impulsivamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "imágenes prediseñadas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "in flagrante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inabordable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inaccesibilidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inadmisibilidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inaplicable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inasistencia escolar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "incansablemente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "incapacitador": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "incauta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "incendiar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "incendiarismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "incendio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "incendio provocado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "incertitud": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "incoherencia": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "incompetentemente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "incomprendido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inconcreción": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "inconscientemente": { "pos": "r", "pol": "-0.25", "std": "0.072" }, "incontrolable": { "pos": "a", "pol": "-0.25", "std": "0.188" }, "incuria": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "incursionar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "indeciso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indefensable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "indefensible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "indefinición": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indelimitable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "indetectable": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "indeterminable": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "indigestión": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indiscutible": { "pos": "a", "pol": "-0.25", "std": "0.246" }, "indomabilidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indoméstico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "indumento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "indómito": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "inelegibilidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inerme": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inestabilidad": { "pos": "n", "pol": "-0.25", "std": "0.21" }, "inexpresable": { "pos": "a", "pol": "-0.25", "std": "0.191" }, "inextinguible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inextirpable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "infamador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "infame": { "pos": "a", "pol": "-0.25", "std": "0.12" }, "infanticidio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "infinitamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "inflado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inflamación": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "inflamarse": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "informalmente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "informe": { "pos": "a", "pol": "-0.25", "std": "0.072" }, "infravivienda": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "infundado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inharmónico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inhibirse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "inhumación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "injerto de piel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "injustamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "injustificado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inmanejable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inmarcesible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inmigrado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inmigrante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inmoderado": { "pos": "a", "pol": "-0.25", "std": "0.227" }, "inmoral": { "pos": "a", "pol": "-0.25", "std": "0.125" }, "inmudable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inmundicia": { "pos": "n", "pol": "-0.25", "std": "0.129" }, "inmunitario": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inocentón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inoculación": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "inodoro": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inositol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inpalpable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inprocedencia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inquisición": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inquisitivamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "insalubridad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insania": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insatisfactorio": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "insecticida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inservible": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "insidioso": { "pos": "a", "pol": "-0.25", "std": "0.072" }, "insignias": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insincera": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "inspector general": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "instantáneamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "instigador de odio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "instrumento de tortura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insuficiencia renal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insultos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "insurgente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "insípido": { "pos": "a", "pol": "-0.25", "std": "0.063" }, "insólito": { "pos": "a", "pol": "-0.25", "std": "0.125" }, "inteligencia táctica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "intensamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "intento de estafa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "interdicto permanente": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "interferencia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "interinidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "interino": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "interuniversitario": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "intoxicación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "intraducible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "intranquilizador": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "intranquilizar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "invencibilidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inviabilidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inviable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "invisibilidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "inédito": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ir a dormir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ir a rebufo": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ir en yate": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "iron número cinco": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "irrealizable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "irredimible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "irreligioso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "irreprimido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "irresoluble": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "irresoluto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "irreversibilidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "irse a pique": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "irse al catre": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "itraconazol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jacaranda": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jacarandá": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jaqueca": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "jarrete": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jeans": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jihadi": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "jorguinería": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jubón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "judío errante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "jumentoso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "juncoso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "juntamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "justiciero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "justillo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kaon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kart": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kaón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kiang": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kimono": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "kleenex": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "laceración": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "lactante": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ladrón": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ladrón de carretera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lama glama": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lambdacismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lamentable caso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lamentable ejemplo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lamentar": { "pos": "v", "pol": "-0.25", "std": "0.191" }, "lapidación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lapidar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "laringitis espasmódica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "larvicida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "las 24 horas": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "laterita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "latitud": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "latitud lunar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "latrodectus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lauréola": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lavarse las manos": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "leche pasteurizada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lecho de enfermo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lederhosen": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "leer la cartilla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "legionella": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lengua afilada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lengua cosmopolita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lengua mordaz": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lente de electrones": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lente granangular": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lentes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "leontina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "leptospira": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lesa majestad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lesión": { "pos": "n", "pol": "-0.25", "std": "0.12" }, "letalidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "leucemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "leucoencefalitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "levantar barricadas": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ley estatutaria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ley musulmana": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "leyenda fantástica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "liarse a puñetazos": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "libertinismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "libertino": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "libre": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "licántropo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lid": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lidiar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ligarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ligeros": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "lignificado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "liguero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ligón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "limenitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "limo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "linfadenoma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "linfogranuloma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lingualumina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lisiar": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "lisis": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "listeriosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "llamamiento": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "llevadero": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "llorica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lobreguez": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "locato": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "locuelo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "locura": { "pos": "n", "pol": "-0.25", "std": "0.102" }, "lodazal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "loza de barro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lucha libre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "luchador": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "luchar a puñetazos": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ludibrio": { "pos": "n", "pol": "-0.25", "std": "0.125" }, "luminiscencia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lumpemproletariado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "luna de cosecha": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "luz roja": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "lycopodiales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lámpara de neón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lástima": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "lúpulo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "machado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "madera de arce": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "madera de sicomoro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "madera de sicómoro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mafioso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "magia negra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "magisterial": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "magistratura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "magullar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "mal ejemplo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mal emparejado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "mal entendido": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mal viaje": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mala administración": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mala fama": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mala pata": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "malandrín": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malapropismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malaria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malcriador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maldecido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "maldiciente": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maleante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malformado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "malnutrición": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malogro": { "pos": "n", "pol": "-0.25", "std": "0.125" }, "malos modales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malos tratos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maltratar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "malus sylvestris": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "malvadamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "malversar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "malware": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mamotreto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mamporro": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "mancha de aceite": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mancha de barro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mancha de lodo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mancha de nacimiento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mancha de óxido": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mancillado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "mandante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mando hidráulico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "manga raglán": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "manganeso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mangueo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mangui": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "manotada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "manotazo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mantequilla de cacao": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mantilla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mantón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "manzano silvestre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "marattiales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "marcado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "marinero polémico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "marsala": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "masacrar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "masacre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mascara": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mascarada": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "mascullar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "masticador ruidoso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "masticar ruidosamente": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "mata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mataperros": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "matarratas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "material aislante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "material bélico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maton": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "maula": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mazmorra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mecanografiado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "medio de comunicación escrito": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "medioambientalista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "medula oblonga": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "melanismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "melanosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "melindre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "melopsittacus undulatus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "memoria a largo plazo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "memoria no volátil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mendaz": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "mendigo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "meningismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "meningitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mercadillo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mesa de despacho": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mesita de café": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mesías": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "metalepsis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "metano": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "metanol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "metijón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "meyótico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "mezquinamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "miastenia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "micronutriente": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "microonda": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mielatelia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "migraña": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "milano negro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "militancia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "militantismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "millettia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mineral de plomo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mini": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "minimoto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "minyán": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mirar a las musarañas": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "mirlo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mirmecófagos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mixomatosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moblaje": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moca": { "pos": "n", "pol": "-0.25", "std": "0.056" }, "mod": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mofa": { "pos": "n", "pol": "-0.25", "std": "0.063" }, "mofarse": { "pos": "v", "pol": "-0.25", "std": "0.065" }, "monario": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "monarquía": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mongolismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mongoloide": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "monoaural": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "montecillo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "monóxido de carbono": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mordida de perro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mordisco de perro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "moronidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mortificador": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "mortuorio": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "moto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "motín": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "movido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "moño": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mucosidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mucus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mudez": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "mueblaje": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mugre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mugriento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mujeriego": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mundo de fantasía": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mural": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "murmullo": { "pos": "n", "pol": "-0.25", "std": "0.068" }, "murriña": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "musitar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "muslera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "mustiar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "mustiarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "mártir": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "médico de cabecera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "médico generalista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "médula oblonga": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nada crítico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nada polémico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "narco": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "narcolepsia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "narcoleptico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "narcotraficante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "narcotráfico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "necrofilia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "necromancia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "necromanía": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "necrosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "necrótico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "negado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "negligé": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "negruzco": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "neolengua": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nerita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "neurastenia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "neurofibromatosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "neurotóxico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "neurálgico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "neutral": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "neutralidad": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "nevera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nevus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nick": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nicturia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nido de ardilla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nigromancia": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "nigromántico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nihilismo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nihilista": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nirvana": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nitrobenceno": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "no alistado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no astringente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no catalogado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no causativo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no cercada": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no cercado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no constreñido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no coronado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no deducible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no delineado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no explosivo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no extensible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no ficticio": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no fisible": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no investigador": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no ionizado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no iónico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no lavable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no metal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "no metálico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no portátil": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no recíproco": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no regenerado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no registrado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no retractil": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no seleccionado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no sindicalista": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "no vendido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "noble vitalicio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nocturnamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "nonato": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nosología": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "noticiario cinematográfico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "novela corta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "novela de aventuras": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "novelar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "novial": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nube corneal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nubloso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "nuez": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nuez de cola": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nuez moscada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "nuez muescada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "número atómico 22": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "número atómico 24": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "número atómico 25": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "número atómico 27": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "número atómico 34": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "número atómico 4": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "número atómico 73": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "obeso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "objetor": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "oboe de amore": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "obscurantista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "obsesivo": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "obstaculización": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "obstinarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "obviamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "octópodo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oda": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ofensiva": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oficial de la ley": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ojeroso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ojo de pez": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ola de protestas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "olla de barro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "olor corporal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "olvido": { "pos": "n", "pol": "-0.25", "std": "0.102" }, "olvido total": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "omatidio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "onagro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oncogén": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ondeo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "opaco": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "operación de inteligencia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "optez": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "orden de bacterias": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "orden de detención": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "orden del día": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "order phallales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "orfandad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "organizativo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "orquidales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ortopnea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "osar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "oscurantista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "osmosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "osqueocele": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "osteítis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "otitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "otredad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "out": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oveja negra": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "oxímoron": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ozonium": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "oído interno": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pachá": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "palabras": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "palabras de despedida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "palanquista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "palatalizado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "palatosquisis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paleopatología": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paliación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paliativo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "palmarla": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "paludismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pan negro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pancreatitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "panecillo de viena": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pantalones de montar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "panzazo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "papel carbón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "papel de carta": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "paperas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paracetamol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paralelo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paranoia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paraquat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "parecido mutuo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "parecido mútuo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pareo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "parque zoológico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "parricidio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "parte demandante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "partido político": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "partícula beta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "partícula elemental": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "parálisis cerebral": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "parésico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pasajero": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pasamano": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pasar por encima": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "pasar revista": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "pasma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "paso lento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pastelito relleno": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pasterización": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pasteurelosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pasteurización": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "patentemente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "patología animal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "patología vegetal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "patoso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "país de hadas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pañuelo de cabeza": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pañuelo de cuello": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pañuelo de papel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pañuelo del cuello": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pecable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pediculosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pedrisco": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pelagra": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pelea con cuchillos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pelear": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "pelear a puñetazos": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "peleón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "peligro sanitario": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pelota de golf": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "peluca gris": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "penetrantemente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "pensión de mala muerte": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "peoría": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "peplo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "perder intensidad": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "peridotita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "perifrástico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "perilla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "periodontitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "periquito australiano": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "perjudicar": { "pos": "v", "pol": "-0.25", "std": "0.068" }, "perlino": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "permanganato de potasa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "permitir fluctuar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "permitir la fluctuación": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "perniciosamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "perpetración": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "perplejidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "persona malhumorada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "persona odiada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "personalidad psicopática": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "perturbación mental": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pertussis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pestañada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "peste septicémica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pesticida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pezizales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "phallales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "philadelphus coronarius": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "physostigma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "phytophthora": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "piada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "piantado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "picada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "picada de abeja": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "picada de mosquito": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "picadura de abeja": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "picadura de mosquito": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "picardías": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pickelhaube": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "picor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "piel de gallina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pieza del ajedrez": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pigargo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pila galvánica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pillo": { "pos": "n", "pol": "-0.25", "std": "0.12" }, "pintamonas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pinza de corbata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "piperacilina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pirata informático": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "piridina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pirómetro óptico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pitufo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "piuria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "plaguicida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "planchar con máquina": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "planchazo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "plantador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "planímetro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "plañidero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pleitista": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "pluma blanca": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "plumbemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "plutócrata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pobretón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pobreza extrema": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "poca fiabilidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "poco convencido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "poco convincente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "poli": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "policia montado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "policía montada de Canadá": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "polizonte": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "polémica": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "política arriesgada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "política de agresión": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "política de la cuerda floja": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "política del borde del abismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "político estafador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pompón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "poner en peligro": { "pos": "v", "pol": "-0.25", "std": "0.265" }, "poner en tela de juicio": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "popularismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "portaligas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "portentoso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "poseso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "poseído": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "postillón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "postrado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "postulación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "practicamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "practicar esgrima": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "preaviso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "precautorio": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "preeclampsia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pregunta difícil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prejuzgar": { "pos": "v", "pol": "-0.25", "std": "0.177" }, "prenda de vestir": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prenderse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "prendimiento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "preocupante": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "prerrequisito": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "presbicia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "primogénito": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "problema difícil": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "problemas de oído": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "problemas de visión": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "procurarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "prodigar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "producir una conmoción cerebral": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "producto perecedero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "proferir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "prolijidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "propiciatorio": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "prostatitis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "protector del brazo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "protector del cuello": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "protestación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prueba de Schick": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prueba de fuego": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prueba de schick": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "prueba decisiva": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pseudoalucinación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pseudofloema": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "psicología clínica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "psicosis de angustia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "psicoterapeuta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "psilotáceas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "psiquiatría": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "psitacosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "psocópteros": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pteridosperma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ptosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pudibundez": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "puerto de montaña": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pugilismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pulmotor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pulmón de acero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pulsar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "punchar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "punto de golpe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "punto muerto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "puro cuento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "putrescencia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "putrescina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pythium debaryanum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pélvico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "pérdida de memoria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pérdida del conocimiento": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "pérfido": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "póliza abierta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "póliza flotante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "quedarse en blanco": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "queratocono": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "queso suizo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "quijote": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "quijotería": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "quijotismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "quimono": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "quinina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "quinquefoliado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "quinqui": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "quitarse de encima": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "rabicorto": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "rabona": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "racaneo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "racanería": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "randa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ranger": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rapaz": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rasguño": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "ratero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rayo beta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "raza humana": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "raíz rosada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reacción fisiológica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reaparecer": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "recelar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "receloso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rechazado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "recondenar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "reconditez": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reconfortar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "reconquistar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "recriminar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "recriminatorio": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "recuperador": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "recursos humanos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "recursos laborales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "recusante": { "pos": "a", "pol": "-0.25", "std": "0.265" }, "redistribuir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "reelección": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reencender": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "referencia anatómica": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reflejo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "reflejo incondicionado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reflejo innato": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reflejo instintivo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "refrigerador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "refutable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "regicidio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reglamentar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "regordete": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rehabilitación correccional": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reintegrarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "relación señal/ruido": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "relamerse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "relato de aventuras": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "relieve terrestre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "remilgo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reología": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reológico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "repartir mal": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "repetidamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "repolludo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "reposo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "requemarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "requisito previo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "requisitoria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "res adjudicata": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "residuo tóxico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "residuos": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "resonancia nuclear": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "respectar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "respuesta evasiva": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "respuesta refleja": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "restos mortales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "resurgir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "retaliar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "reticulitermes": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "retorcerse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "retraerse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "revoloteo": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "rezongar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "rickettsia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rickettsiosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rigatoni": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rijo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rijosidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rima visual": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ring de boxeo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rinoceronte negro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rival": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "robar": { "pos": "v", "pol": "-0.25", "std": "0.042" }, "robo armado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rodillera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rodillero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "romanal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rompehuelgas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "romper la crisma": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ronchar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ronco": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "rondador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ronquedad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ronquera": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ronzar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "ropa de playa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ropa de trabajo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ropa interior": { "pos": "n", "pol": "-0.25", "std": "0.177" }, "ropón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rosal silvestre": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rosellinia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "roseta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rotenona": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "roux": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "roñería": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "roñosería": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rubeola": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rubiales": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ruborizado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "rubéola": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ruego indirecto": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rufianería": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rufianismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ruido sordo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ruina": { "pos": "n", "pol": "-0.25", "std": "0.139" }, "ruinas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "rynchopidae": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "régimen títere": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "réquiem": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "río Somme": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "s/n": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sableador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sablista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sacudirse algo": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "salacot": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "salicilato de metilo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "salirse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "salol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "salteado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sanción pragmática": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sangre espesa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "saprobio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "saqueador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sarampión alemán": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sarcoma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sardónico": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "sarong": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sarong malayo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "satanista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "satiriasis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "saturnismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scam": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scat": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sciarida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scleroderma": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "scotland yard": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "seboso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "seca": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "secano": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "seclusión": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "secobarbital": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "secuestrar": { "pos": "v", "pol": "-0.25", "std": "0.056" }, "sed de sangre": { "pos": "n", "pol": "-0.25", "std": "0.144" }, "seguir en": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "seguro automotriz": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "seguro de incendios": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "seguro del coche": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "selenio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "semianalfabeto": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sensación de presión": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sense datum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sentido de la orientación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sentido de la responsabilidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sepelio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "septicemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sepultura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ser mítico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sermoneo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "serológico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "serpenteante": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "serrasalmus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "seudoalucinación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "seudoefedrina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "señal/ruido": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sharia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sharía": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shigelosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "shock anafiláctico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sicario": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "sicoterapeuta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "siesta liviana": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sifilítico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "signo dólar": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "similor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "simplista": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "simplon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sin alfombrar": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sin controversia": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sin corona": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sin cristales": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sin derretir": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sin diferencias": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sin dilación": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "sin dirección escrita": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sin explotar": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sin guión": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sin motivo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sin ocupar": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sin papeles": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sin polarizar": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sin recortar": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sin regenerar": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sin registrar": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sin resistencia": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sin techo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sin tejer": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sin vender": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sin ventilar": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sinestésico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sinrazón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sinverguenza": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "siquiatría": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "sirla": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sirte": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sistema auditivo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sistema de pesos y medidas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sistema de propulsión": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "skibob": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "slang": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "snobismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sobrefalda": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sobrenatural": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sobrenaturalidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sobrenaturalista": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sobrenaturalístico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sobreveste": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "socavón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "socio del apostador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "socio del estafador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "soga": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sojuzgador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "solaz": { "pos": "n", "pol": "-0.25", "std": "0.063" }, "soldados hostiles": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "solresol": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "somatosensorial": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sombrero de ala ancha": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sombrero de cowboy": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sombrero hongo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "somnifobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sonar a metal": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "sonsonete": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "soplo sistólico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "soplon": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "soportable": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sorprender": { "pos": "v", "pol": "-0.25", "std": "0.068" }, "sosegador": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "sospecha": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "sospechosamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "sospechoso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sospechoso de asesinato": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sospechoso de robo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sotana": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "spang": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "staphylococcus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "status asmaticus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "stout": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "streptopelia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "streptopelia turtur": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "subnormalidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "subrayado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "subsidio de enfermedad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "subversivo": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "subwoofer": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "subyugador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "succionar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "sudor frío": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "suelta": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "sueño del opio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sueño fantástico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sufridor": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "superar en estrategia": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "supernaturalista": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "superrealista": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "surrealista": { "pos": "a", "pol": "-0.25", "std": "0.177" }, "sustancia viscosa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sutilidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "syringa": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "sí": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "síndrome": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "síndrome de down": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "síndrome meníngeo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "síntoma": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "tabardillo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tacañería": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "taciturno": { "pos": "a", "pol": "-0.25", "std": "0.125" }, "taladro mecánico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "talidomida": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tanatología": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tantalio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tantarantán": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tantarán": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tapping": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "taqué": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tarasca": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tarifas de exportación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tarjar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tarántula": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tatuar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "taxabilidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tedioso": { "pos": "a", "pol": "-0.25", "std": "0.265" }, "tejanos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "temperatura baja": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tenebrosidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "teratología": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "terrorización": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "terópodos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tesarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "testamentaría": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tez morena": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tez tostada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "thriller": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tie-break": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tiesura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tifoidea": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tifus recurrente": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tirar la toalla": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tirar violentamente": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tirita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tiritón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "titanio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tiznadura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tiñoso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "toc!": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "toc toc": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tocar a": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tocar a difuntos": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tocar el clarín": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tocar suavemente": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tocón": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tomarse cinco minutos": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tombac": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "topero": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "topista": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "toque de bocina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tories": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "torpeza": { "pos": "n", "pol": "-0.25", "std": "0.125" }, "tortuosidad": { "pos": "n", "pol": "-0.25", "std": "0.125" }, "tos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tos ferina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "toser": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tozudo": { "pos": "a", "pol": "-0.25", "std": "0.105" }, "trabajo duro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "traficante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "traficante de armas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "traidor": { "pos": "a", "pol": "-0.25", "std": "0.088" }, "traje de baño": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "traje de buceo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "traje de cuartel": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "traje de faena": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "traje de vuelo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "traje espacial": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trampa para ratas": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trance religioso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tranquilamente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "tranquilidad de espíritu": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "transgredir": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "trasponer": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "trastorno auditivo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trastorno mental": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trastorno visual": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tratamiento paliativo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tratante de caballos": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tratarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "traumatofobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trepidación": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tributabilidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trickster": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tricloroetileno": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tricomoniasis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trifoliado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "triscaidecafobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "triunvirato": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "triunviro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "troglodytidae": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trompeadura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tropezar": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "tropo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "trucar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tsunami": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tubercular": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "tuberculós": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "tugurio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tularemia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tumbarse": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "tumbona": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tumescente": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "tumor benigno": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "turboembrague": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "turbonada": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "tussilago": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "táctico": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "tártaro emético": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ténue": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ufanía": { "pos": "n", "pol": "-0.25", "std": "0.265" }, "ulcerado": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ulceroso": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "ultramicroscopio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ultramontanismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "uniformidad": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "unilateralismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "universalmente": { "pos": "r", "pol": "-0.25", "std": "0.0" }, "uso indebido": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "uxoricidio": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vaccinia virus": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vacilante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vacuna": { "pos": "n", "pol": "-0.25", "std": "0.072" }, "vacunación": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "vaginismo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vaqueros": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "variabilidad": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "varicela": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vena ilíaca primitiva": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vengador": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vengar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "vengarse": { "pos": "v", "pol": "-0.25", "std": "0.088" }, "venirse abajo": { "pos": "v", "pol": "-0.25", "std": "0.072" }, "ventoso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ventriloquia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "veratrum": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "verdugado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "versículo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vesania": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vesanía": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vestido de novia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vestidura": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vestigial": { "pos": "a", "pol": "-0.25", "std": "0.0" }, "veto de bolsillo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "viaje en diligencia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "viaje pesado": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vicealmirante": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vieja": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vieja gruñona": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "viejo chocho": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "viento del nordeste": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "viento del noreste": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "villana": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "virtud cardinal": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "viruela ovina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vislumbre": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "viuda": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "viudo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "volver a condenar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "volver a encender": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "volver a fotografiar": { "pos": "v", "pol": "-0.25", "std": "0.0" }, "vulcanita": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vulnerabilidad": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vía muerta": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vía secundaria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "vía subsidiaria": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "víctima": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "whodunit": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xenofobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "xenolito": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zangarriana": { "pos": "n", "pol": "-0.25", "std": "0.088" }, "zidovudina": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ziti": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zoo": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zoofobia": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zoológico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zoonosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zorro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "zurcido": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ácido brómico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ácido crómico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ácido fumárico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ácido hipocloroso": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ácido maleico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ácido permangánico": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ázoe": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "óbito": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ópalo negro": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ósmosis": { "pos": "n", "pol": "-0.25", "std": "0.0" }, "ótico": { "pos": "a", "pol": "-0.25", "std": "0.0" } } ================================================ FILE: lib/natural/sentiment/index.d.ts ================================================ /* Copyright (c) 2022, Dylan R. E. Moonfire , Emily Marigold Klassen , Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import type { Stemmer } from '../stemmers' export type AfinnLanguageType = 'afinn' export type AfinnLanguage = 'English' | 'Spanish' | 'Portuguese' export type SenticonLanguageType = 'senticon' export type SenticonLanguage = 'Spanish' | 'English' | 'Galician' | 'Catalan' | 'Basque' export type PatternLanguageType = 'pattern' export type PatternLanguage = 'Dutch' | 'Italian' | 'English' | 'French' | 'German' export declare class SentimentAnalyzer { constructor (language: string, stemmer: Stemmer | undefined, type: string) getSentiment (words: string[]): number } ================================================ FILE: lib/natural/sentiment/index.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' exports.SentimentAnalyzer = require('./SentimentAnalyzer') ================================================ FILE: lib/natural/sentiment/tools/README.md ================================================ # Tools This folder contains some tools for manipulating vocabularies for the sentiment analyzer. ## `sentimentXmlParser` Transforms ML-Senticon XML files into JSON files. The JSON file contains a vocabulary that maps words to objects as follows: ```javascript "admirable": { "pos": "a", "pol": "1.0", "std": "0.0" } ``` Property `pol` is the sentiment of the word. ## `XmlParser4PatternData` Transforms vocabularies of the [Pattern project](https://www.clips.uantwerpen.be/pages/pattern) to JSON files. The JSON file contains a vocabulary that maps wordt to objects: ```javascript "aanraden": { "form": "aanraden", "cornetto_id": "", "cornetto_synset_id": "", "wordnet_id": "", "pos": "VB", "sense": "", "polarity": "0.2", "subjectivity": "0.0", "intensity": "1.0", "confidence": "0.9" } ``` Property `polarity` is the sentiment of the word. ================================================ FILE: lib/natural/sentiment/tools/XmlParser4PatternData.js ================================================ /* Copyright (c) 2019, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const fs = require('fs') const parseString = require('xml2js').parseString const baseFolder = '/home/hugo/Workspace/pattern/pattern/text/' // var inputFile = baseFolder + "nl/nl-sentiment.xml"; // var outputFile = baseFolder + "nl/nl-sentiment.json"; // var inputFile = baseFolder + "fr/fr-sentiment.xml"; // var outputFile = baseFolder + "fr/fr-sentiment.json"; // var inputFile = baseFolder + "en/en-sentiment.xml"; // var outputFile = baseFolder + "en/en-sentiment.json"; const inputFile = baseFolder + 'it/it-sentiment.xml' const outputFile = baseFolder + 'it/pattern-sentiment-it.json' const xml = fs.readFileSync(inputFile, 'utf8') const list = {} parseString(xml, function (err, result) { if (err) { console.log(err) return } // console.log(JSON.stringify(result, null, 2)); console.log(result.sentiment.word.length) for (let i = 0; i < result.sentiment.word.length; i++) { console.log(result.sentiment.word[i].$.form) list[result.sentiment.word[i].$.form] = result.sentiment.word[i].$ } }) console.log(Object.keys(list).length) fs.writeFileSync(outputFile, JSON.stringify(list, null, 2)) ================================================ FILE: lib/natural/sentiment/tools/sentimentXmlParser.js ================================================ /* Copyright (c) 2019, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const fs = require('fs') const parseString = require('xml2js').parseString const xml = fs.readFileSync('senticon.ca.xml', 'utf8') const list = {} parseString(xml, function (err, result) { if (err) { console.log(err) return } for (let i = 0; i < result.senticon.layer.length; i++) { for (let j = 0; j < result.senticon.layer[i].positive[0].lemma.length; j++) { // console.log(util.inspect(result.senticon.layer[i].negative[0].lemma[j], false, null)) list[result.senticon.layer[i].positive[0].lemma[j]._] = result.senticon.layer[i].positive[0].lemma[j].$ } for (let n = 0; n < result.senticon.layer[i].negative[0].lemma.length; n++) { list[result.senticon.layer[i].negative[0].lemma[n]._] = result.senticon.layer[i].negative[0].lemma[n].$ } } }) const listTrimmed = {} for (const token in list) { listTrimmed[token.replace(/ /gi, '').replace(/_/gi, ' ')] = list[token] } console.log(listTrimmed) // console.log(util.inspect(list, false, null)) console.log(Object.keys(listTrimmed).length) fs.writeFileSync('senticon_ca.json', JSON.stringify(listTrimmed, null, 2)) ================================================ FILE: lib/natural/spellcheck/index.d.ts ================================================ /* Copyright (c) 2022, Dylan R. E. Moonfire , Emily Marigold Klassen , Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ export declare class Spellcheck { constructor (wordlist: string[]) isCorrect (word: string): boolean getCorrections (word: string, maxDistance?: number): string[] edits (word: string): string[] editsWithMaxDistance (word: string, maxDistance: number): string[] } ================================================ FILE: lib/natural/spellcheck/index.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' exports.Spellcheck = require('./spellcheck') ================================================ FILE: lib/natural/spellcheck/spellcheck.js ================================================ /* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Trie = require('../trie/trie') // Probabilistic spellchecker based on http://norvig.com/spell-correct.html // The general idea is simple. Given a word, the spellchecker calculates all strings that are some user-defined edit distance away. Of those many candidates, it filters the ones that are not words and then returns an array of possible corrections in order of decreasing probability, based on the edit distance and the candidate's frequency in the input corpus // Words that are an edit distance of n away from the mispelled word are considered infinitely more probable than words that are of an edit distance >n // wordlist is a corpus (an array) from which word probabilities are calculated (so something like /usr/share/dict/words (on OSX) will work okay, but real world text will work better) class Spellcheck { constructor (wordlist) { this.trie = new Trie() this.trie.addStrings(wordlist) this.word2frequency = {} for (const i in wordlist) { if (!this.word2frequency[wordlist[i]]) { this.word2frequency[wordlist[i]] = 0 } this.word2frequency[wordlist[i]]++ } } isCorrect (word) { return this.trie.contains(word) } // Returns a list of suggested corrections, from highest to lowest probability // maxDistance is the maximum edit distance // According to Norvig, literature suggests that 80% to 95% of spelling errors are an edit distance of 1 away from the correct word. This is good, because there are roughly 54n+25 strings 1 edit distance away from any given string of length n. So after maxDistance = 2, this becomes very slow. getCorrections (word, maxDistance) { const self = this if (!maxDistance) maxDistance = 1 let edits = this.editsWithMaxDistance(word, maxDistance) edits = edits.slice(1, edits.length) edits = edits.map(function (editList) { return editList.filter(function (word) { return self.isCorrect(word) }) .map(function (word) { return [word, self.word2frequency[word]] }) .sort(function (a, b) { return a[1] > b[1] ? -1 : 1 }) .map(function (wordscore) { return wordscore[0] }) }) let flattened = [] for (const i in edits) { if (edits[i].length) { flattened = flattened.concat(edits[i]) } } return flattened.filter(function (v, i, a) { return a.indexOf(v) === i }) } // Returns all edits that are 1 edit-distance away from the input word edits (word) { const alphabet = 'abcdefghijklmnopqrstuvwxyz' let edits = [] for (let i = 0; i < word.length + 1; i++) { if (i > 0) edits.push(word.slice(0, i - 1) + word.slice(i, word.length)) // deletes if (i > 0 && i < word.length + 1) edits.push(word.slice(0, i - 1) + word.slice(i, i + 1) + word.slice(i - 1, i) + word.slice(i + 1, word.length)) // transposes for (let k = 0; k < alphabet.length; k++) { if (i > 0) edits.push(word.slice(0, i - 1) + alphabet[k] + word.slice(i, word.length)) // replaces edits.push(word.slice(0, i) + alphabet[k] + word.slice(i, word.length)) // inserts } } // Deduplicate edits edits = edits.filter(function (v, i, a) { return a.indexOf(v) === i }) return edits } // Returns all edits that are up to "distance" edit distance away from the input word editsWithMaxDistance (word, distance) { return this.editsWithMaxDistanceHelper(distance, [[word]]) } editsWithMaxDistanceHelper (distanceCounter, distance2edits) { if (distanceCounter === 0) return distance2edits const currentDepth = distance2edits.length - 1 const words = distance2edits[currentDepth] // const edits = this.edits(words[0]) distance2edits[currentDepth + 1] = [] for (const i in words) { distance2edits[currentDepth + 1] = distance2edits[currentDepth + 1].concat(this.edits(words[i])) } return this.editsWithMaxDistanceHelper(distanceCounter - 1, distance2edits) } } module.exports = Spellcheck ================================================ FILE: lib/natural/stemmers/Carry/index.js ================================================ /* Copyright (c) 2020, Johan Maupetit, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' // Integration with natural const Stemmer = require('../stemmer_fr') const CarryStemmer = new Stemmer() const stepConfs = require('./stepConfs') const { pipe } = require('./utils') const defaultConf = { steps: stepConfs, vowels: /[aeiouäâàéèëêïîöôùüûœ]/i } // count number of vowel-consonant groups const getWordSize = (word) => { let isPrevVowel = false let nbVCgroups = 0 for (let i = 0; i < word.length; i += 1) { const letter = word[i] const isVowel = defaultConf.vowels.test(letter) if (!isVowel && isPrevVowel) { nbVCgroups += 1 } isPrevVowel = isVowel } return nbVCgroups } const tranform = (word, stepConf) => { let newWord = null for ( let suffixLength = word.length - 1; suffixLength > 0 && !newWord; suffixLength -= 1 ) { const suffix = word.substr(-suffixLength) const baseWord = word.substr(0, word.length - suffixLength) for ( let minRadixSize = 0; minRadixSize <= 1 && !newWord; minRadixSize += 1 ) { const transformations = stepConf[minRadixSize] || {} const newSuffix = transformations[suffix] if (newSuffix === undefined) { continue } const candidate = `${baseWord}${newSuffix}` if (getWordSize(candidate) > minRadixSize) { newWord = candidate break } } } return newWord || word } function NodeCarry (userConf = defaultConf) { const conf = { ...defaultConf, ...userConf } this.steps = [0, 1, 2] .map((iStep) => (word) => tranform(word, conf.steps[iStep])) this.stem = pipe(...this.steps) }; // Create a Carry stemmer const nodeCarry = new NodeCarry() // Attach the Carry stemmer to natural's generic stemmer CarryStemmer.stem = nodeCarry.stem module.exports = CarryStemmer ================================================ FILE: lib/natural/stemmers/Carry/stepConfs.js ================================================ /* Copyright (c) 2020, Johan Maupetit Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const steps = [ // === Step 1 [ // Transformations with 1 as minimal radix { issaient: '', ellement: 'el', issement: '', alement: 'al', eraient: '', iraient: '', eassent: '', ussent: '', amment: '', emment: '', issant: '', issent: '', assent: '', eaient: '', issait: '', èrent: '', erent: '', irent: '', erait: '', irait: '', iront: '', eront: '', ement: '', aient: '', îrent: '', eont: '', eant: '', eait: '', ient: '', ent: '', ont: '', ant: '', eât: '', ait: '', at: '', ât: '', it: '', ît: '', t: '', uction: '', ition: '', tion: '', eur: '', ier: '', er: '', ir: '', r: '', eassiez: '', issiez: '', assiez: '', ussiez: '', issez: '', assez: '', eriez: '', iriez: '', erez: '', irez: '', iez: '', ez: '', erai: '', irai: '', eai: '', ai: '', i: '', ira: '', era: '', ea: '', a: '', f: 'v', yeux: 'oeil', eux: '', aux: 'al', x: '', issante: '', eresse: '', eante: '', easse: '', eure: '', esse: '', asse: '', ance: '', ence: '', aise: '', euse: '', oise: 'o', isse: '', ante: '', ouse: 'ou', ière: '', ete: '', ète: '', iere: '', aire: '', erie: '', étude: '', etude: '', itude: '', ade: '', isme: '', age: '', trice: '', cque: 'c', que: 'c', eille: 'eil', elle: '', able: '', iste: '', ulle: 'ul', gue: 'g', ette: '', nne: 'n', itée: '', ité: '', té: '', ée: '', é: '', usse: '', // aise: '', ate: '', ite: '', ee: '', e: '', issements: '', issantes: '', eassions: '', eresses: '', issions: '', assions: '', issants: '', ussions: '', ements: '', eantes: '', issons: '', assons: '', easses: '', études: '', etudes: '', itudes: '', issais: '', trices: '', eilles: 'eil', irions: '', erions: '', usses: '', tions: '', ances: '', entes: '', eants: '', ables: '', irons: '', irais: '', ences: '', ients: '', ieres: '', eures: '', aires: '', erons: '', esses: '', euses: '', ulles: 'ul', cques: 'c', elles: '', // ables: '', istes: '', aises: '', asses: '', isses: '', oises: 'o', // tions: '', ouses: 'ou', ières: '', eries: '', antes: '', ismes: '', erais: '', eâtes: '', eâmes: '', itées: '', ettes: '', ages: '', eurs: '', ents: '', ètes: '', etes: '', ions: '', ités: '', ites: '', ates: '', âtes: '', îtes: '', // eurs: '', iers: '', iras: '', eras: '', ants: '', îmes: '', ûmes: '', âmes: '', ades: '', eais: '', eons: '', ques: 'c', gues: 'g', nnes: 'n', ttes: '', // îtes: '', tés: '', ons: '', ais: '', ées: '', ees: '', ats: '', eas: '', ts: '', rs: '', as: '', es: '', fs: 'v', és: '', is: '', s: '', eau: '', au: '', // aire: '', ien: 'i' }, // Transformations with 2 as minimal radix { ication: '', iation: '', ation: '', ateur: '', teur: '', ure: '', ications: '', iations: '', ateurs: '', ations: '', teurs: '', ures: '' } ], // === Step 2 [ { i: '' }, { ent: '', ation: '', ition: '', tion: '', el: '' } ], // === Step 3 [ { ll: 'l', mm: 'm', nn: 'n', pp: 'p', tt: 't', ss: 's', y: '', t: '', qu: 'c' } ] ] module.exports = steps ================================================ FILE: lib/natural/stemmers/Carry/utils.js ================================================ /* Copyright (c) 2020, Johan Maupetit Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ const compose = (...fns) => (x) => fns.reduceRight((v, f) => f(v), x) const pipe = (...fns) => (x) => fns.reduce((v, f) => f(v), x) module.exports = { compose, pipe } ================================================ FILE: lib/natural/stemmers/index.d.ts ================================================ /* Copyright (c) 2022, Dylan R. E. Moonfire , Emily Marigold Klassen , Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ declare interface RegionsType { r1: number r2: number rv: number } export declare interface Stemmer { stem: (token: string, options?: any) => string addStopWord: (stopWord: string) => void addStopWords: (moreStopWords: string[]) => void removeStopWord: (stopWord: string) => void removeStopWords: (moreStopWords: string[]) => void tokenizeAndStem: (text: string, keepStops?: boolean) => string[] regions: (word: string) => RegionsType prelude: (token: string) => string endsinArr: (token: string, suffixes: string[]) => string categorizeGroups: (token: string) => string measure: (token: string) => number // Exposed for testing purposes: step1: (token: string) => string step1a: (token: string) => string step1b: (token: string) => string step1c: (token: string) => string step2: (token: string) => string step3: (token: string) => string step4: (token: string) => string step5a: (token: string) => string step5b: (token: string) => string } export let CarryStemmerFr: Stemmer export let LancasterStemmer: Stemmer export let PorterStemmer: Stemmer export let PorterStemmerDe: Stemmer export let PorterStemmerEs: Stemmer export let PorterStemmerFa: Stemmer export let PorterStemmerFr: Stemmer export let PorterStemmerIt: Stemmer export let PorterStemmerNl: Stemmer export let PorterStemmerNo: Stemmer export let PorterStemmerPt: Stemmer export let PorterStemmerUk: Stemmer export let PorterStemmerRu: Stemmer export let PorterStemmerSv: Stemmer export let StemmerId: Stemmer export let StemmerJa: Stemmer export declare type TokenCallback = (...args: number[]) => number[] | number export declare class Token { vowels: string[] | string regions: Record string: string original: string constructor (s: string) usingVowels (vowels: string | string[]): Token markRegion (region: string, args: number[] | number | null, callback?: TokenCallback, context?: unknown): Token replaceAll (find: string, replace: string): Token replaceSuffixInRegion (suffix: string, replace: string, region: string): Token hasVowelAtIndex (index: number): boolean nextVowelIndex (index: number): number nextConsonantIndex (index: number): number hasSuffix (suffix: string): number hasSuffixInRegion (suffix: string, region: string): boolean } ================================================ FILE: lib/natural/stemmers/index.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' exports.PorterStemmer = require('./porter_stemmer') exports.PorterStemmerFa = require('./porter_stemmer_fa') exports.PorterStemmerFr = require('./porter_stemmer_fr') exports.CarryStemmerFr = require('./Carry') exports.PorterStemmerDe = require('./porter_stemmer_de') exports.PorterStemmerUk = require('./porter_stemmer_uk') exports.PorterStemmerRu = require('./porter_stemmer_ru') exports.PorterStemmerEs = require('./porter_stemmer_es') exports.PorterStemmerIt = require('./porter_stemmer_it') exports.PorterStemmerNo = require('./porter_stemmer_no') exports.PorterStemmerSv = require('./porter_stemmer_sv') exports.PorterStemmerPt = require('./porter_stemmer_pt') exports.PorterStemmerNl = require('./porter_stemmer_nl') exports.LancasterStemmer = require('./lancaster_stemmer') exports.StemmerJa = require('./stemmer_ja') exports.StemmerId = require('./indonesian/stemmer_id') exports.Token = require('./token') ================================================ FILE: lib/natural/stemmers/indonesian/base_stemmer_id.js ================================================ /* Copyright (c) 2017, Alif Bhaskoro, Andy Librian, R. Kukuh (Reimplemented from https://github.com/sastrawi/sastrawi) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const stopwords = require('../../util/stopwords_id') const Tokenizer = require('../../tokenizers/aggressive_tokenizer_id') module.exports = function () { const stemmer = this stemmer.stem = function (token) { return token } stemmer.addStopWord = function (stopWord) { stopwords.words.push(stopWord) } stemmer.addStopWords = function (moreStopWords) { stopwords.words = stopwords.words.concat(moreStopWords) } stemmer.removeStopWord = function (stopWord) { this.removeStopWords([stopWord]) } stemmer.removeStopWords = function (moreStopWords) { moreStopWords.forEach(function (stopWord) { const idx = stopwords.words.indexOf(stopWord) if (idx >= 0) { stopwords.words.splice(idx, 1) } }) } stemmer.tokenizeAndStem = function (text, keepStops) { const stemmedTokens = [] const lowercaseText = text.toLowerCase() const tokens = new Tokenizer().tokenize(lowercaseText) if (keepStops) { tokens.forEach(function (token) { stemmedTokens.push(stemmer.stem(token)) }) } else { tokens.forEach(function (token) { if (stopwords.words.indexOf(token) === -1) { stemmedTokens.push(stemmer.stem(token)) } }) } return stemmedTokens } /* stemmer.attach = function () { String.prototype.stem = function () { return stemmer.stem(this) } String.prototype.tokenizeAndStem = function (keepStops) { return stemmer.tokenizeAndStem(this, keepStops) } } */ } ================================================ FILE: lib/natural/stemmers/indonesian/data/kata-dasar.json ================================================ [ "aba", "abad", "abadi", "abadiah", "abah", "abai", "abaimana", "abaka", "abaktinal", "abakus", "abal-abal", "aban", "abang", "abangan", "abangga", "abar", "abatoar", "abau", "abdas", "abdi", "abdikasi", "abdomen", "abdominal", "abdu", "abduksi", "abduktor", "abece", "aben", "aberasi", "abet", "abian", "abid", "abidin", "abilah", "abing", "abiogenesis", "abiosfer", "abiotik", "abis", "abisal", "abiseka", "abiturien", "abjad", "abjadiah", "ablasi", "ablaut", "ablepsia", "abnormal", "abnormalitas", "abnus", "aboi", "abolisi", "abon", "abonemen", "abong-abong", "aborsi", "abortif", "abortiva", "abortus", "abrak", "abrakadabra", "abrar", "abras", "abrasi", "abreaksi", "abrek", "abreviasi", "abrikos", "abrit-abrit", "abrosfer", "absah", "absen", "absensi", "absensia", "absente", "absenteisme", "abses", "absis", "absolusi", "absolut", "absolutisme", "absonan", "absorb", "absorben", "absorbir", "absorpsi", "absorpsiometer", "absorptif", "abstain", "abstinensi", "abstrak", "abstraksi", "absurd", "absurdisme", "abtar", "abu", "abuan", "abuh", "abuk", "abulhayat", "abulia", "abun-abun", "abur", "abus", "abyad", "acah", "acak", "acala", "acan", "acang", "acap", "acar", "acara", "acaram", "acat", "acau", "acawi", "acerang", "aci", "acik", "aco", "acu", "acuh", "acum", "acung", "ada", "adab", "adad", "adagio", "adagium", "adakala", "adakalanya", "adakan", "adaks", "adaktil", "adalah", "adalat", "adam", "adan", "adang", "adap", "adaptabel", "adaptabilitas", "adaptasi", "adaptif", "adaptometer", "adaptor", "adapun", "adar", "adas", "adat", "adati", "adegan", "adeh", "adekuat", "adem", "adempauze", "adendum", "adenoid", "adenoma", "adenosis", "adhesi", "adhesif", "adi", "adiabatik", "adiabatis", "adiaktinik", "adib", "adibangkit", "adibintang", "adiboga", "adibusana", "adicita", "adidaya", "adigang", "adiguna", "adigung", "adik", "adika", "adikara", "adikarya", "adikodrati", "adikong", "adiksi", "adiktif", "adikuasa", "adil", "adiluhung", "adimarga", "adinda", "ading", "adipati", "adipenghantar", "adiposa", "adipositas", "adipura", "adiraja", "adiratna", "adisi", "adisional", "adisiswa", "aditif", "aditokoh", "adiwangsa", "adiwarna", "adiwidia", "adjektif", "adjektiva", "adjektival", "adjuvan", "administrasi", "administratif", "administrator", "admiral", "admisi", "admitans", "adnan", "adolesens", "adon", "adopsi", "adoptif", "adpertensi", "adrenal", "adrenalin", "adrenergik", "adres", "adsorben", "adsorpi", "adsorpsi", "adstringen", "adu", "aduh", "aduhai", "aduk", "aduksi", "aduktor", "adun", "adveksi", "adven", "adventisia", "adventisius", "adverbia", "adverbial", "advertensi", "advis", "advokad", "advokasi", "advokat", "aerasi", "aerator", "aerob", "aerobatik", "aerobik", "aerobika", "aerodinamik", "aerodinamika", "aerofisika", "aerofisiologi", "aerofon", "aerogram", "aerolit", "aerologi", "aerometer", "aeromovel", "aeronautika", "aeroplangton", "aeroplankton", "aeroskop", "aerosol", "aerostat", "aerostatika", "aestetika", "afair", "afal", "afasia", "afdal", "afdeling", "afdruk", "afek", "afeksi", "afektif", "aferesis", "afiat", "afidavit", "afiks", "afiksasi", "afiliasi", "afinitas", "afirmasi", "afirmatif", "afonia", "aforisme", "afotik", "afrasia", "afrikat", "afrit", "afrodisiak", "afsun", "afwah", "aga", "agah", "agak", "agak-agih", "agal", "agalaksia", "agam", "agama", "agamais", "agamawi", "agamen", "agamet", "agami", "agamogenesis", "agan", "agape", "agar", "agas", "agen", "agenda", "agens", "agentif", "agih", "agil", "agio", "agiria", "agitasi", "agitatif", "agitator", "aglikon", "aglomerasi", "aglomerat", "aglutinasi", "aglutinat", "aglutinatif", "aglutinin", "agnosia", "agnostik", "agnostisisme", "agogo", "agometer", "agon", "agonia", "agonis", "agonistik", "agorafobia", "agradasi", "agrafia", "agraria", "agraris", "agregasi", "agregat", "agregatif", "agresi", "agresif", "agresivitas", "agresor", "agriologi", "agripnia", "agrisilvikultur", "agrobis", "agrobisnis", "agroekonomi", "agroekosistem", "agrogeologi", "agroikos", "agroindustri", "agrokimia", "agronom", "agronomi", "agrostologi", "agrowisata", "aguk", "agul", "agun", "agung", "agus", "agustus", "agut", "ahad", "ahadiat", "ahimsa", "ahistoris", "ahkam", "ahlan", "ahli", "ahlulbait", "ahlulkitab", "ahlulkubur", "ahlunujum", "ahlusuluk", "ahlusunah", "ahmak", "ahmar", "aho", "ahsan", "ahwal", "aib", "ain", "ainulbanat", "ainulyakin", "ainunjariah", "air", "aja", "ajab", "ajaib", "ajaibkhanah", "ajak", "ajal", "ajang", "ajar", "ajek", "ajektifa", "ajektiva", "ajengan", "aji", "ajigineng", "ajimumpung", "ajir", "ajisaka", "ajnabi", "ajnas", "ajojing", "ajre", "aju", "ajudan", "ajufan", "ajujah", "ajuk", "ajun", "ajung", "ajur", "ajuster", "akad", "akademi", "akademik", "akademikus", "akademis", "akademisi", "akaid", "akak", "akal", "akan", "akang", "akapela", "akar", "akas", "akasia", "akatalepsia", "akbar", "akene", "akeo", "akh", "akhbar", "akhir", "akhirat", "akhirulkalam", "akhlak", "akhlaki", "akhwan", "aki", "akibat", "akidah", "akik", "akikah", "akil", "aklamasi", "aklasia", "akli", "akliah", "aklimasi", "aklimatisasi", "akmal", "akolade", "akomodasi", "akomodatif", "akor", "akordeon", "akrab", "akrawati", "akreditasi", "akriflavina", "akrilat", "akrilik", "akrobat", "akrobatik", "akrofobia", "akromegali", "akrometer", "akromion", "akronim", "aksa", "aksara", "akseleran", "akselerasi", "akselerator", "akselerometer", "aksen", "aksentologi", "aksentuasi", "aksep", "akseptabel", "akseptabilitas", "akseptasi", "akseptor", "akses", "aksesibilitas", "aksesori", "aksi", "aksidental", "aksila", "aksiologi", "aksioma", "aksiomatis", "aksis", "akson", "aksostil", "akta", "aktentas", "aktif", "akting", "aktinida", "aktinik", "aktinisme", "aktinium", "aktinokimia", "aktinolit", "aktinometer", "aktiva", "aktivis", "aktivisme", "aktivitas", "aktor", "aktris", "aktual", "aktualisasi", "aktuaria", "aktuaris", "aku", "akua", "akuades", "akuaduk", "akuakultur", "akualung", "akuamarin", "akuan", "akuarel", "akuaris", "akuarium", "akuarius", "akuatik", "akuifer", "akuisisi", "akuk", "akulturasi", "akumulasi", "akumulatif", "akumulator", "akun", "akuntabel", "akuntabilitas", "akuntan", "akuntansi", "akupungtur", "akupungturis", "akupunktur", "akur", "akurasi", "akurat", "akusatif", "akustik", "akustika", "akut", "akwal", "ala", "alabangka", "alabio", "alaf", "alai", "alai-belai", "alaihisalam", "alaika", "alaikum", "alak", "alalia", "alam", "alamah", "alamak", "alamanda", "alamas", "alamat", "alamatulhayat", "alami", "alamiah", "alamin", "alan-alan", "alang", "alangkah", "alantois", "alap", "alarm", "alas", "alat", "alau", "alawar", "alazon", "albanat", "albas", "albatros", "albedo", "albedometer", "albinisme", "albino", "albinoid", "albit", "albuginea", "album", "albumen", "albumin", "albuminoit", "albuminometer", "albuminuria", "aldehida", "alegori", "alegoris", "aleksandrit", "aleksia", "aleksin", "alel", "alem", "alergen", "alergi", "alergis", "alf", "alfa", "alfabet", "alfabetis", "alfaktorius", "alfanumerik", "alferes", "alga", "algilik", "algoid", "algojo", "algologi", "algometer", "algoritme", "algrafi", "alhamdulillah", "alhasil", "ali", "aliansi", "alias", "aliase", "alibi", "alienasi", "alif", "alifatik", "alifbata", "alih", "alihragam", "alik", "alikuot", "alim", "alimbubu", "alimentasi", "alimenter", "alimiah", "alimiat", "alimun", "alin", "alinea", "aling", "alip", "alir", "alis", "alisiklik", "alit", "aliterasi", "alizarin", "aljabar", "aljalil", "alkabir", "alkadim", "alkadir", "alkah", "alkali", "alkalinitas", "alkalis", "alkaloid", "alkalometri", "alkamar", "alkana", "alkari", "alkasyaf", "alkausar", "alkena", "alkil", "alkimia", "alkisah", "alkitab", "alkohol", "alkoholis", "alkoholisasi", "alkoholisme", "alkoholometer", "alku", "alkuna", "alkus", "allah", "allahu", "allahuma", "almaktub", "almalik", "almalun", "almamater", "almanak", "almandin", "almandina", "almandit", "almarhum", "almarhumah", "almasih", "almuazam", "almukhlis", "alobar", "alofon", "alograf", "aloi", "alokasi", "alokron", "aloleks", "alomerisme", "alomorf", "alon", "alonim", "alopati", "alopesia", "alot", "alotropi", "alpa", "alpaka", "alperes", "alpukah", "alquran", "altar", "alter", "alteratif", "alternasi", "alternatif", "alternator", "altimeter", "alto", "altokumulus", "altostratus", "altruis", "altruisme", "altruistis", "alu", "alufiru", "alum", "alumina", "aluminium", "alumni", "alumnus", "alun", "alung", "alup", "alur", "alusi", "aluvial", "aluvium", "alveolar", "alveolum", "alveolus", "alwah", "alwasi", "alwasia", "ama", "amabakdu", "amah", "amai-amai", "amal", "amalgam", "amalgamasi", "amalgamator", "amaliah", "aman", "amanah", "amanat", "amandel", "amandemen", "amang", "amanitin", "amar", "amarilis", "amat", "amatir", "amatirisme", "amatol", "ambah", "ambah-ambah", "ambai", "ambai-ambai", "ambak", "ambal", "ambalang", "ambalela", "ambang", "ambar", "ambarau", "ambasade", "ambasador", "ambau", "ambeien", "ambek", "amben", "amberal", "ambergris", "amberit", "ambet", "ambi", "ambigu", "ambiguitas", "ambil", "ambilingual", "ambin", "ambing", "ambisi", "ambisius", "ambivalen", "ambivalensi", "amblas", "amblek", "ambles", "ambliobia", "amboi", "ambreng-ambrengan", "ambring", "ambrol", "ambruk", "ambu-ambu", "ambuh", "ambul", "ambulakral", "ambulans", "ambulatori", "ambung", "ambur", "amburadul", "ambyar", "ameba", "amebiasis", "ameboid", "amebosit", "ameliorasi", "amelioratif", "amen", "amendemen", "amenorea", "amensalisme", "amenta", "amerisium", "amerospora", "amerta", "ametabola", "ametis", "ametobola", "amfetamin", "amfiartrosis", "amfibi", "amfibol", "amfibolisme", "amfiston", "amfiteater", "amfoterik", "ami", "amigdalin", "amikal", "amil", "amilase", "amilopektin", "amin", "amina", "aminisasi", "amino", "amir", "amirulbahar", "amirulhaj", "amirulmukminin", "amis", "amit", "amitosir", "amko", "ammeter", "amnesia", "amnesti", "amnion", "amniotik", "amoi", "amonia", "amonifikasi", "amonit", "amonium", "amor", "amoral", "amorf", "amortisasi", "ampai", "ampang", "ampas", "ampat", "ampe", "ampean", "ampek", "ampel", "ampela", "ampelam", "ampelas", "ampere", "amperemeter", "amperometri", "ampisilin", "amplas", "amplifikasi", "amplitudo", "amplop", "ampo", "amprok", "amprung", "ampu", "ampuh", "ampuk", "ampul", "ampula", "ampun", "amput", "amputasi", "amra", "amril", "amsal", "amtenar", "amuba", "amuh", "amuk", "amulet", "amung", "amunisi", "ana", "anabasis", "anabiosis", "anabolisme", "anadrom", "anaerob", "anaerobik", "anafilaksis", "anafora", "anaforis", "anafrodisiak", "anaglif", "anai-anai", "anak", "anakoluton", "anakronisme", "anakronistis", "anakrus", "anal", "analekta", "analeptik", "analgesik", "analis", "analisis", "analitis", "analog", "analogi", "analseks", "analsit", "anamel", "anamnesis", "anamorfosis", "ananda", "anang", "anani", "anapes", "anaptiksis", "anarki", "anarkis", "anarkisme", "anarkistis", "anasional", "anasir", "anastomosis", "anatase", "anatomi", "anatomis", "anbia", "anca", "ancai", "ancak", "ancala", "ancam", "ancang", "ancar-ancar", "ancoa", "ancol", "ancuk", "anda", "andai", "andak", "andaka", "andal", "andalas", "andalusit", "andam", "andan", "andang", "andapita", "andar", "andarah", "andeng-andeng", "anderak", "andesit", "andewi", "andika", "andiko", "andil", "andilau", "andok", "andong", "andragogi", "andrawina", "androgen", "androgini", "androgogi", "androlog", "andrologi", "anduh", "andur", "aneh", "aneka", "anekdot", "aneksasi", "anemer", "anemia", "anemofili", "anemograf", "anemogram", "anemometer", "aneroid", "anestesi", "anestesia", "anestesiolog", "anestetis", "aneuploid", "aneurisme", "anfas", "angah", "angan", "angel", "angga", "anggai", "anggak", "anggal", "anggan", "anggap", "anggar", "anggara", "anggau", "anggerka", "anggit", "angglap", "anggorokasih", "anggota", "anggrek", "angguh", "angguk", "anggul", "anggun", "anggung", "anggung-anggip", "anggur", "anggut", "anghun", "angin", "angina", "angiogenesis", "angiologi", "angiosperma", "angit", "angka", "angkak", "angkal-angkal", "angkara", "angkasa", "angkat", "angkel", "angker", "angket", "angkin", "angkit", "angklung", "angkong", "angkring", "angku", "angkuh", "angkuk", "angkul-angkul", "angkup", "angkur", "angkus", "angkusa", "angkut", "angler", "anglo", "anglong", "anglung", "angon", "angop", "angot", "angpau", "angsa", "angsana", "angsoka", "angsu", "angsur", "angus", "angut", "anhidrosis", "ani", "aniaya", "anil", "anilina", "animasi", "animis", "animisme", "animo", "aning-aning", "anion", "aniridia", "anis", "anisogamet", "anisogami", "anisokoria", "anisotropis", "anja", "anjak", "anjal", "anjang", "anjangkarya", "anjangsana", "anjar", "anjiman", "anjing", "anjir", "anjlok", "anju", "anjung", "anjur", "ankilosis", "anoa", "anode", "anodin", "anofeles", "anoksemia", "anoksik", "anom", "anomali", "anomi", "anonim", "anonimitas", "anoreksia", "anorganik", "anorgastik", "anortopia", "anosmia", "anotasi", "ansa", "ansambel", "ansar", "ansari", "anta", "antagonis", "antagonisme", "antagonistis", "antah", "antah-berantah", "antakesuma", "antalas", "antalkali", "antamir", "antan", "antap", "antar", "antara", "antarbangsa", "antarbenua", "antardaerah", "antari", "antariksa", "antarkelompok", "antarlingkungan", "antarmaster", "antarmolekul", "antarmuka", "antarnegara", "antarplanet", "antarpribadi", "antarpulau", "antarras", "antarruang", "antarsel", "antarsuku", "antartika", "antarwilayah", "antasid", "antasida", "antawacana", "ante", "antedilivium", "antediluvium", "antefiks", "antek", "anteken", "antelas", "anteliks", "antelmintik", "antelop", "antem", "antemeridiem", "antena", "antenatal", "anteng", "antenul", "antep", "anter", "antera", "anteridium", "anterior", "antero", "anteseden", "anti", "antianemia", "antiartritik", "antibarion", "antibeku", "antibiosis", "antibiotik", "antibodi", "antidepresan", "antidioksida", "antidiuretik", "antidot", "antienzim", "antiflogistik", "antigen", "antigravitasi", "antih", "antihistamin", "antijasad", "antik", "antikarat", "antikatalis", "antiklimaks", "antiklin", "antiklinal", "antiklor", "antikonsepsi", "antikristus", "antikuari", "antikuariat", "antimateri", "antimetari", "antimonium", "antimuntah", "anting", "antinomi", "antinovel", "antipartikel", "antipati", "antipenawar", "antipiretik", "antipode", "antiproton", "antipruritik", "antisemitisme", "antisepsis", "antiseptik", "antisiklogenesis", "antisiklon", "antisiklonal", "antisiklonis", "antisimpul", "antisipasi", "antisipatif", "antitank", "antitesis", "antitoksin", "antitragus", "antiwirawan", "antizarah", "antoi", "antologi", "antonim", "antonimi", "antop", "antosian", "antraknosa", "antraks", "antrasena", "antrasian", "antrasit", "antre", "antri", "antromometer", "antromorfis", "antropobiologi", "antropoda", "antropofagi", "antropogeografi", "antropoid", "antropolog", "antropologi", "antropometer", "antropomorfisme", "antroponimi", "antroposentris", "antroposentrisme", "antroposofi", "antuk", "antul", "antun", "antung-antung", "antup", "anturium", "antusias", "antusiasme", "anu", "anual", "anugerah", "anuitas", "anulir", "anulus", "anumerta", "anunasika", "anuresis", "anuria", "anus", "anuswara", "anut", "anyak", "anyam", "anyang", "anyar", "anyel", "anyelir", "anyep", "anyes", "anyik", "anyir", "aorta", "apa", "apabila", "apak", "apakah", "apakala", "apalagi", "apam", "apanase", "apar", "aparat", "aparatur", "aparatus", "apartemen", "apartemenisasi", "apartheid", "apartotel", "apas", "apatah", "apati", "apatis", "apatride", "ape", "apek", "apel", "apelativa", "apendektomi", "apendiks", "apendisitis", "apepsi", "apersepsi", "apes", "aphelion", "apheliotropisme", "api", "apik", "apikal", "apikultur", "apilan", "aping", "apion", "apit", "apium", "apkir", "aplasi", "aplaus", "aplikasi", "aplikatif", "aplus", "apnea", "apo", "apodal", "apoenzim", "apogami", "apoge", "apograf", "apok", "apokalips", "apokaliptik", "apokope", "apokrifa", "apokrin", "apokromatik", "apolitis", "apologetika", "apologetis", "apologi", "apologia", "apomiksis", "apomorfin", "apopleksi", "aposematik", "aposiopesis", "aposisi", "aposisional", "apositif", "apostasi", "apostel", "aposteriori", "apostolik", "apostrof", "apotek", "apoteker", "apotik", "apraksi", "apraksia", "apresiasi", "apresiatif", "apresorium", "april", "apriori", "aprit", "apron", "apsara", "apsari", "aptasi", "aptiklus", "apu", "apuh", "apung", "apuran", "ara", "arab", "arababu", "arabahu", "arabes", "arabesk", "arabika", "aragonit", "arah", "arai", "arak", "araknitis", "araknoid", "aral", "aram", "aramba", "arang", "aransemen", "ararut", "aras", "arasy", "arau", "arbaa", "arbab", "arbei", "arbiter", "arbitrase", "arbitrer", "arboreal", "arboretum", "arborikultur", "arca", "arcas", "ardi", "are", "area", "areal", "arek", "arem-arem", "aren", "arena", "areografi", "areola", "areometer", "arerut", "ares", "arestasi", "areta", "argari", "argentit", "argentum", "argirodit", "argol", "argometer", "argon", "argot", "argumen", "argumentasi", "argumentatif", "ari", "aria", "aries", "arif", "arifin", "arih", "arik", "aril", "aring", "ariningsun", "arip", "aris", "arisan", "aristokrasi", "aristokrat", "aristokratis", "aristotipe", "arit", "aritenoid", "aritmetika", "arja", "arkade", "arkais", "arkaisme", "arkan", "arkati", "arkegonium", "arkeolog", "arkeologi", "arkeologis", "arkeozoikum", "arketipe", "arkian", "arkifonem", "arkileksem", "arkitraf", "arktika", "arku", "arloji", "armada", "arnal", "arogan", "arogansi", "aroma", "aromatik", "arombai", "aron", "arpus", "arsenal", "arsenik", "arsenikum", "arsip", "arsipelago", "arsir", "arsis", "arsitek", "arsitektur", "arta", "artefak", "arteri", "arteriografi", "arteriola", "arteriosklerosis", "artesis", "artetis", "arti", "articok", "artifak", "artifisial", "artik", "artikel", "artikulasi", "artikulator", "artileri", "artiodaktil", "artis", "artisan", "artistik", "artisyok", "artona", "artotek", "artrobrankium", "artropoda", "aru", "aruan", "aruda", "aruk", "arumba", "arun", "arung", "arus", "arwah", "arwana", "arya", "aryaduta", "arzak", "asa", "asabat", "asabiah", "asabiyah", "asad", "asah", "asai", "asak", "asal", "asali", "asam", "asan", "asana", "asap", "asar", "asas", "asasi", "asbak", "asbes", "asbut", "aseksual", "asemble", "asembling", "asepsis", "aseptik", "aseran", "asese", "aset", "asetabulum", "asetat", "asetilena", "asetimeter", "aseton", "asfal", "asfar", "asfiksia", "asi", "asibilan", "asibilasi", "asid", "asidimeter", "asidosis", "asih", "asiklik", "asil", "asilabis", "asimetris", "asimilasi", "asimilatif", "asimtot", "asimus", "asin", "asindeton", "asing", "asinyor", "asiri", "asisten", "asistensi", "askar", "askariasis", "askarid", "askese", "asket", "asketisisme", "askon", "askriptif", "asli", "asma", "asmara", "asmaradanta", "asmaragama", "asmaraloka", "asmarandana", "asnad", "aso", "asoi", "asonansi", "asong", "asor", "asortimen", "asosial", "asosiasi", "asosiatif", "aspal", "asparaga", "asparagus", "aspartame", "aspek", "asperses", "aspiran", "aspirasi", "aspirasional", "aspirat", "aspiratif", "aspirator", "aspirin", "asprak", "asrama", "asrar", "asri", "assalamualaikum", "asta", "astadikpala", "astaga", "astagfirullah", "astaka", "astakona", "astana", "astasia", "astatik", "astatin", "astenia", "astenik", "astenopia", "asteositoma", "aster", "asteroid", "astigmatis", "astra", "astral", "astringen", "astrofisika", "astrolab", "astrolog", "astrologi", "astronaut", "astronautika", "astronom", "astronomi", "astronomis", "astrosit", "asu", "asuh", "asumsi", "asumtif", "asung", "asurador", "asuransi", "asusila", "aswa", "aswad", "aswasada", "asyera", "asyik", "asytoret", "asyura", "atak", "ataksia", "atap", "atar", "atas", "atase", "atau", "atavisme", "atebrin", "ateis", "ateisme", "ateistis", "atelir", "atensi", "atenuasi", "ateret", "atfal", "ati", "atlas", "atlet", "atletik", "atma", "atman", "atmolisis", "atmologi", "atmometer", "atmosfer", "atmosferis", "ato", "atok", "atol", "atom", "atomisasi", "atomistis", "atop", "atos", "atowa", "atraksi", "atraktan", "atraktif", "atresia", "atret", "atribut", "atributif", "atrisi", "atrium", "atrofi", "atropin", "atung", "atur", "atus", "aubade", "audiensi", "audio", "audiofil", "audiofon", "audiograf", "audiogram", "audiolingual", "audiologi", "audiometer", "audiovisual", "audit", "auditor", "auditorium", "augmentatif", "auk", "auksanometer", "auksi", "auksin", "aula", "aulia", "aum", "aung", "aur", "aura", "aural", "aurat", "aurikularia", "aurora", "aurum", "aus", "auskultasi", "autad", "autarki", "autarkis", "autentik", "autentikasi", "autentisitas", "autisme", "autistik", "auto", "autobiograf", "autobiografi", "autodidak", "autodidaktik", "autodin", "autofon", "autogami", "autogen", "autograf", "autografi", "autogram", "autoklaf", "autoklastik", "autokrasi", "autokrat", "autokton", "autoktonos", "autolisis", "autolitograf", "autologi", "automaton", "automobil", "automotif", "autopsi", "autoskop", "autosom", "autotoksin", "autotrof", "autotrofik", "autotrop", "autotropik", "auzubillah", "avalans", "aven", "aversi", "avertebrata", "avesta", "avgas", "aviari", "aviasi", "aviator", "avifauna", "avikultur", "avirulen", "avitaminosis", "avokad", "avontur", "avonturir", "avtur", "avunkulokal", "awa", "awaair", "awaarang", "awabau", "awabeku", "awabulu", "awabusa", "awadara", "awah", "awahama", "awai", "awak", "awal", "awalengas", "awam", "awamineral", "awan", "awanama", "awang", "awar", "awaracun", "awas", "awasenjata", "awat", "awawarna", "awet", "awewe", "awi", "awik-awik", "awin", "awur", "awut", "ayah", "ayahan", "ayahanda", "ayak", "ayal", "ayam", "ayan", "ayanda", "ayang-ayang", "ayap", "ayar", "ayat", "ayatullah", "ayem", "ayeng", "ayid", "ayit", "ayo", "ayom", "ayu", "ayuk", "ayum", "ayun", "ayunda", "ayut", "azab", "azal", "azali", "azam", "azan", "azeotrop", "azimat", "azimut", "aziz", "azmat", "azoikum", "azospermi", "azurit", "bab", "baba", "babad", "babah", "babak", "babakan", "babal", "baban", "babang", "babar", "babaring", "babas", "babat", "babatan", "babe", "babesiasis", "babet", "babi", "babil", "babit", "bablas", "babon", "babu", "babun", "babur", "babut", "baca", "bacah", "bacak", "bacang", "bacar", "bacek", "bacem", "bacik", "bacin", "baco", "bacok", "bacot", "bacul", "bacut", "bad", "bada", "badai", "badak", "badal", "badam", "badan", "badang", "badani", "badar", "badari", "badasi", "badau", "bade", "badi", "badik", "badminton", "badong", "badui", "baduk", "badung", "badur", "badut", "baduyut", "bafta", "bagai", "bagaimana", "bagak", "bagal", "bagan", "bagang", "bagar", "bagas", "bagasi", "bagat", "bagau", "bagea", "bagi", "baginda", "bagong", "bagor", "baguk", "bagul", "bagur", "bagus", "bah", "bahadur", "bahaduri", "bahagia", "bahak", "bahala", "bahalan", "baham", "bahan", "bahana", "bahang", "bahar", "bahara", "bahari", "baharu", "bahas", "bahasa", "bahaya", "bahenol", "baheula", "bahimiah", "bahkan", "bahri", "bahrulhayat", "bahtera", "bahu", "bahuku", "bahwa", "bahwasanya", "baiat", "baid", "baiduri", "baik", "bain", "bainah", "bais", "bait", "baitulharam", "baitullah", "baitulmakdis", "baitulmakmur", "baitulmal", "baitulmukadas", "baitulmukadis", "baja", "bajaj", "bajak", "bajan", "bajang", "bajar", "bajau", "bajetah", "baji", "bajigur", "bajik", "bajing", "baju", "bajul", "bak", "baka", "bakak", "bakal", "bakalaureat", "bakam", "bakap", "bakar", "bakarat", "bakas", "bakat", "bakau", "bakda", "bakdahu", "bakdu", "bakdul", "bakelit", "bakero", "bakh", "bakhil", "baki", "bakiak", "bakik", "bakir", "bakmi", "bako", "bakpao", "bakpia", "baksi", "baksis", "bakso", "baktau", "bakteremia", "bakteri", "bakterin", "bakteriofag", "bakteriolisis", "bakteriolog", "bakteriologi", "bakteriostatik", "bakterisida", "bakti", "baku", "bakul", "bakung", "bakup", "bakut", "bakwan", "bal", "bala", "balabad", "balad", "balada", "balah", "balai", "balairung", "balak", "balalaika", "balam", "balan", "balang", "balangkep", "balans", "balap", "balar", "balas", "balau", "balela", "balen", "balerina", "balerong", "balet", "balgam", "balian", "balig", "baliho", "balik", "baling", "balistik", "balistika", "baliu", "balkas", "balkon", "balneologi", "balneoterapi", "balok", "balon", "balong", "balot", "balsam", "balseros", "balu", "baluarti", "baluh", "balui", "baluk", "balun", "balung", "balur", "balut", "bam", "bambam", "bambang", "bambu", "bambung", "ban", "bana", "banal", "banang", "banar", "banat", "bancak", "bancang", "bancar", "bancet", "banci", "bancik", "bancuh", "bancut", "banda", "bandan", "bandang", "bandar", "bandara", "bandarsah", "bandasrayan", "bandea", "bandel", "bandela", "bandeng", "bandering", "banderol", "banding", "bandit", "banditisme", "bando", "bandongan", "bandos", "bandot", "bandrek", "bandu", "bandul", "bandung", "bandusa", "bandut", "bang", "bangai", "bangan", "bangang", "bangar", "bangas", "bangat", "bangau", "bangbung", "banget", "bangga", "banggan", "bangir", "bangka", "bangkah", "bangkai", "bangkal", "bangkang", "bangkar", "bangkas", "bangkasan", "bangkeh", "bangket", "bangking", "bangkir", "bangkis", "bangkit", "bangkong", "bangkot", "bangkrut", "bangku", "bangkut", "banglas", "bangle", "banglo", "bango", "bangor", "bangpak", "bangsa", "bangsai", "bangsal", "bangsat", "bangsi", "bangun", "bangus", "bani", "banian", "baning", "banir", "banjang", "banjar", "banjaran", "banji", "banjir", "banjur", "bank", "bankir", "bantah", "bantai", "bantal", "bantam", "bantar", "bantaran", "bantat", "bantau", "banteng", "banter", "banting", "bantu", "bantun", "bantut", "banua", "banyak", "banyo", "banyol", "banyu", "banyun", "banzai", "bao", "bap", "bapa", "bapak", "bapakisme", "bapanda", "bapang", "bapet", "baplang", "baptis", "bar", "bara", "baraat", "baragajul", "barah", "barai", "barak", "barakat", "barakatuh", "baran", "barang", "barangan", "barangkali", "barap", "baras", "barat", "barau-barau", "barbar", "barbarisme", "barbel", "barber", "barbital", "barbiton", "barbiturat", "barbur", "bardi", "bare-bare", "barel", "bareng", "barep", "baret", "barga", "bari", "barid", "barier", "barik", "barikade", "baring", "baringan", "barion", "baris", "barisfer", "barit", "barita", "bariton", "barium", "barjad", "barkas", "barkometer", "barli", "barograf", "barogram", "barok", "barologi", "barometer", "barometri", "baron", "barong", "barongan", "barongsai", "baroskop", "barotermograf", "barso", "barter", "baru", "barua", "baruh", "baruje", "baruna", "barung-barung", "barusan", "barut", "barzakh", "barzanji", "bas", "basa", "basa-basi", "basah", "basal", "basalioma", "basanit", "basat", "basau", "basi", "basil", "basilari", "basilika", "basilus", "basin", "basir", "basirah", "basis", "basit", "baskara", "baskat", "basket", "baskom", "basmi", "bastar", "basuh", "basung", "basut", "bata", "batagor", "batai", "batak", "batako", "batal", "batalion", "batalyon", "batang", "batara", "batari", "batas", "batekeng", "batel", "batela", "baterai", "bati", "batih", "batik", "batil", "batila", "batimetri", "batin", "batiplankton", "batir-batir", "batis", "batisfer", "batok", "batolit", "baton", "batu", "batuk", "batun", "batung", "bau", "baud", "bauk", "bauksit", "baun", "baung", "baur", "baureksa", "bausastra", "bausuku", "baut", "bawa", "bawab", "bawah", "bawak", "bawal", "bawang", "bawasir", "bawat", "bawel", "bawon", "baya", "bayak", "bayam", "bayan", "bayang", "bayangkara", "bayangkari", "bayar", "bayas", "bayat", "bayata", "bayati", "bayem", "bayi", "bayonet", "bayong", "bayu", "bayuh", "bayun", "bayung", "bayur", "bazar", "bazoka", "bea", "beasiswa", "beatifikasi", "bebal", "beban", "bebandos", "bebang", "bebar", "bebaru", "bebas", "bebat", "bebe", "bebek", "bebekel", "bebekisme", "bebel", "bebenah", "beber", "beberapa", "beberas", "bebesaran", "bebi", "bebodoran", "bebotoh", "bebrek", "bebuyutan", "becak", "becek", "beceng", "becokok", "becuk", "becus", "beda", "bedah", "bedak", "bedal", "bedama", "bedan", "bedar", "bedaru", "bedawi", "bedaya", "bedebah", "bedegap", "bedegong", "bedel", "bedeng", "bedil", "bedinde", "bedo", "bedol", "bedudak", "beduk", "bedukang", "bedung", "beeng", "bega", "begadang", "begah", "begal", "begana", "begana-begini", "begandering", "begandring", "begap", "begar", "begawan", "begini", "begitu", "bego", "begonia", "begroting", "begu", "beguk", "begundal", "beha", "behandel", "behena", "bejana", "bejat", "bek", "beka", "bekah", "bekakak", "bekakas", "bekal", "bekam", "bekantan", "bekap", "bekas", "bekat", "bekatul", "bekel", "beken", "beker", "bekerma", "bekicot", "bekil", "beking", "bekisar", "bekleding", "bekles", "beklit", "beksan", "beku", "bekuk", "bekuku", "bekukung", "bel", "bela", "belabas", "belacak", "belacan", "belacu", "belada", "beladau", "beladu", "belah", "belahak", "belahong", "belai", "belak", "belaka", "belakang", "belako", "belalah", "belalai", "belalak", "belalang", "belam", "belambang", "belan", "belanak", "belanda", "belandang", "belandar", "belandong", "belandung", "belang", "belanga", "belangah", "belangir", "belangkas", "belangkin", "belangkon", "belanja", "belantai", "belantan", "belantara", "belantik", "belantika", "belantuk", "belar", "belarak", "belas", "belasah", "belasting", "belasungkawa", "belasut", "belat", "belat-belit", "belata", "belater", "belati", "belatik", "belatuk", "belatung", "belau", "belawan", "beldu", "belebas", "belebat", "belecak", "beleda", "beledang", "beledi", "beledu", "beleid", "belek", "belekek", "belekok", "belel", "belelang", "belembang", "belencong", "belendong", "belendung", "beleng", "belenggu", "belengket", "belengkok", "belengkong", "belengset", "belenting", "belentung", "belepas", "belera", "belerang", "belerong", "beleter", "beli", "belia", "beliak", "belian", "beliau", "belibas", "belibat", "belibis", "belida", "beligat", "beligo", "belik", "belikan", "belikat", "beliku", "belimbing", "belincong", "beling", "belingkang", "belingsat", "belingut", "belinjo", "belintang", "belis", "belit", "belitung", "beliung", "beliut", "beloan", "belobor", "belodok", "beloh", "belok", "belokok", "belolang", "belolok", "belolong", "belon", "belonggok", "belongkang", "belongkeng", "belongkot", "belongkotan", "belongsong", "belontang", "beloon", "belot", "belotong", "belu", "belu-belai", "beluam", "beluas", "belubu", "belubur", "beludak", "beludar", "beludru", "beluhan", "beluk", "belukap", "belukar", "beluku", "belukut", "belulang", "beluluk", "belulung", "belum", "belumpai", "belungkang", "belungkur", "belungsing", "belunjur", "beluntas", "beluru", "belus", "belusuk", "belut", "beluwek", "bembam", "bemban", "bembar", "bembarap", "bembet", "bemo", "bemper", "bena", "benah", "benak", "benalu", "benam", "benang", "benar", "benara", "benatu", "bencah", "bencana", "bencat", "benci", "bencol", "bencong", "benda", "bendahara", "bendahari", "bendala", "bendalu", "bendang", "bendar", "bendara", "bendari", "bendawat", "bendawi", "bende", "bendel", "bendela", "bendera", "benderang", "benderung", "bendesa", "bendi", "bendir", "bendo", "bendoro", "bendu", "benduan", "bendul", "bendung", "benefaktif", "bengah", "bengal", "bengang", "bengang-bengut", "bengap", "bengawan", "bengek", "bengep", "benggal", "benggala", "benggang", "benggil", "benggol", "bengis", "bengkah", "bengkak", "bengkal", "bengkal-bengkil", "bengkalai", "bengkang-bengkok", "bengkang-bengkong", "bengkang-bengkung", "bengkar", "bengkarak", "bengkarap", "bengkaras", "bengkarung", "bengkatak", "bengkawan", "bengkawang", "bengkayang", "bengkel", "bengkelai", "bengkeng", "bengker", "bengkerap", "bengkil", "bengkok", "bengkol", "bengkong", "bengkos", "bengku", "bengkuang", "bengkudu", "bengkunang", "bengkung", "bengoh", "bengok", "bengong", "bengot", "bengu", "benguk", "bengul", "bengung", "beni", "benian", "benih", "bening", "benitan", "benjol", "benjut", "benkap", "bensin", "benta", "bentak", "bentala", "bentan", "bentang", "bentangkan", "bentangur", "bentar", "bentara", "bentaus", "benteh", "benteng", "bentes", "bentet", "bentik", "bentoh", "bentok", "bentol", "bentong", "bentonit", "bentos", "bentrok", "bentuk", "bentul", "bentulu", "bentur", "benturung", "bentus", "benua", "benuang", "benuaron", "benulung", "benum", "benur", "benyai", "benyek", "benyoh", "benyot", "benzedrin", "benzena", "benzil", "benzoat", "benzoil", "benzoin", "benzol", "beo", "beol", "bera", "berabe", "beragan", "berahi", "berai", "beraja", "berak", "berakah", "beraksa", "beram", "berambang", "beramin", "beranang", "beranda", "berandal", "berandang", "berang", "berangai", "berangan", "berangas", "berangasan", "berangga", "berangkal", "berangkat", "berangsang", "berangta", "berangus", "berani", "beranta", "berantak", "berantas", "berapa", "beras", "berat", "bercak", "berdikari", "berdus", "berebes", "beredel", "berek-berek", "beremban", "berembang", "berendeng", "bereng-bereng", "berengau", "berenggil", "berengos", "berengsek", "berengut", "berentang", "bereo", "bererot", "beres", "beresok", "beret", "berewok", "bergajul", "bergas", "berguk", "berhala", "beri", "beriang", "beriani", "berida", "berik", "beril", "berilium", "berinda", "bering-bering", "beringas", "beringin", "beringsang", "berisik", "berita", "berkah", "berkas", "berkat", "berkelium", "berkik", "berkil", "berko", "berkung", "berlau", "berlian", "berma", "bermat", "bermi", "bernas", "bernga", "beroci", "beroga", "berok", "berokat", "beron", "beronang", "berondok", "berondong", "berong", "berongkos", "berongsang", "berongsong", "beronjong", "beronok", "beronsang", "berontak", "berosot", "beroti", "beroya", "bersat", "bersih", "bersil", "bersin", "bersit", "bersut", "bertam", "bertih", "beru", "beruang", "beruas", "berubuh", "berudu", "berui", "beruju", "berujul", "beruk", "berumbun", "berumbung", "berunai", "berunang", "berungut", "beruntus", "beruri", "berus", "berwari", "berzanji", "besalen", "besan", "besar", "besek", "besel", "besengek", "beser", "besero", "beset", "besi", "besikal", "besing", "besit", "beskal", "beskap", "beskat", "beslah", "beslit", "besok", "besot", "bestari", "bestek", "bestel", "bestialitas", "bestik", "bestir", "bestral", "besuk", "besusu", "besut", "besuta", "bet", "beta", "betah", "betahak", "betak-betak", "betang", "betapa", "betara", "betari", "betas", "betatas", "betatron", "betau", "betet", "beti", "betik", "betina", "beting", "betinga", "betis", "betok", "beton", "betonisasi", "betot", "betul", "betung", "betutu", "bewok", "bhayangkara", "biadab", "biadat", "biadi", "biah", "biak", "biang", "bianglala", "biaperi", "biar", "biara", "biarpet", "biarpun", "bias", "biasa", "biat", "biau", "biawak", "biawan", "biawas", "biaya", "bibel", "bibi", "bibinda", "bibir", "bibit", "biblio", "bibliografi", "bibliomania", "bibliotek", "bicana", "bicara", "bicokok", "bicu", "bida", "bidadari", "bidah", "bidai", "bidak", "bidal", "bidan", "bidang", "bidar", "bidara", "bidari", "bidas", "bidet", "bidik", "bido", "biduan", "biduanda", "biduanita", "biduk", "bidur", "biduri", "bienial", "biennale", "bifasial", "bifida", "bigair", "bigami", "bigamis", "bihi", "bihun", "bijak", "bijaksana", "bijan", "bijana", "biji", "bijih", "bik", "bikameral", "bikang", "bikarbonat", "bikin", "bikini", "bikir", "bikonkaf", "bikonveks", "bikromat", "biksah", "biksu", "biksuni", "biku", "bila", "bilabial", "bilah", "bilai", "bilakmata", "bilal", "bilamana", "bilamasa", "bilang", "bilas", "bilateral", "bilateralisme", "bilga", "bilhak", "biliar", "bilik", "bilineal", "bilingual", "bilingualisme", "bilis", "biliun", "billahi", "bilokal", "bilur", "bilyet", "bimasakti", "bimbang", "bimbing", "bimbit", "bimetal", "bin", "bina", "binal", "binar", "binara", "binaraga", "binasa", "binatak", "binatang", "binatu", "binawah", "binayah", "bincacak", "bincang", "bincang-bincut", "bincu", "bincul", "bincut", "bindam", "bindeng", "binder", "bindu", "bineka", "binen", "biner", "bingas", "bingit", "bingka", "bingkah", "bingkai", "bingkas", "bingkatak", "bingkis", "bingung", "bini", "binjai", "binjat", "binokular", "binomial", "bintak", "bintal", "bintalak", "bintan", "bintang", "bintara", "binti", "bintik", "bintil", "bintit", "bintul", "bintulbahar", "bintur", "binturung", "biodata", "biodin", "biofera", "biofilm", "biofilter", "biofisik", "biofisika", "biogas", "biogenesis", "biogenik", "biogeografi", "biografi", "biokimia", "bioklimatologi", "biola", "biolinguistik", "biolit", "biolog", "biologi", "biologis", "bioluminesensi", "biomassa", "biomekani", "biometeorologi", "biometri", "biometrika", "bionomika", "biopendar", "bioplasma", "biopsi", "bioritme", "bioritmik", "biosekuen", "biosfer", "biosida", "bioskop", "biostatika", "biota", "biotek", "bioteknologi", "biotik", "biotin", "biotoksin", "biotron", "bipatride", "bipolar", "bipolaritas", "bipolisentrisme", "biprisma", "bir", "birah", "birai", "biram", "birama", "birang", "biras", "birat", "biri-biri", "biring", "birit", "biro", "birofaks", "birokrasi", "birokrat", "birokratis", "birokratisasi", "birokratisme", "birsam", "biru", "bis", "bisa", "bisai", "bisan", "bisawab", "bisbol", "biseksual", "bisektris", "biseps", "bisik", "bising", "bisinosis", "biskuit", "bismillah", "bismut", "bisnis", "bison", "bissu", "bistik", "bisu", "bisul", "bit", "biti", "biting", "bitisik", "bitumen", "biuku", "biumbai", "bius", "biut", "bivak", "biverbal", "biyuh-biyuh", "bizurai", "blabar", "blabitisme", "blakblakan", "blangko", "blantik", "blantika", "blaster", "blastostil", "blazer", "blek", "blekek", "blekok", "blenda", "blender", "blepot", "blewah", "blirik", "blog", "bloger", "blok", "blokade", "blokir", "bloknot", "blong", "blower", "bludrek", "blues", "blus", "blustru", "bobato", "bobok", "bobol", "bobos", "bobot", "bobotok", "bobrok", "bocah", "bocok", "bocong", "bocor", "bodhi", "bodhisatwa", "bodi", "bodoh", "bodok", "bodong", "bodor", "boga", "bogam", "bogel", "bogem", "bogi", "bogol", "bogor", "bogot", "bohemian", "bohlam", "bohong", "bohorok", "bohsia", "boi", "boikot", "bois", "bokar", "bokca", "bokek", "boko", "bokoh", "bokong", "bokop", "bokor", "boks", "boksen", "bokser", "bokset", "boksu", "boku", "bol", "bola", "bolak", "bolak-balik", "bolang-baling", "boleh", "bolero", "bolide", "boling", "bolometer", "bolong", "bolos", "bolot", "bolotu", "bolpoin", "bolsak", "bolu", "bom", "bombai", "bombardemen", "bombardir", "bombas", "bombastis", "bomber", "bomoh", "bomseks", "bon", "bonafide", "bonafiditas", "bonang", "bonanza", "bonar", "bonbon", "boncel", "bonceng", "boncol", "boncong", "bondol", "bondong", "bondot", "boneka", "bonet", "bong", "bongak", "bonggol", "bongkah", "bongkak", "bongkar", "bongkar-bangkir", "bongkin", "bongko", "bongkol", "bongkong", "bongkor", "bongkot", "bongkrek", "bonglai", "bongmeh", "bongo", "bongok", "bongsang", "bongsor", "bonjol", "bonjor", "bonsai", "bontak", "bonto", "bontok", "bontot", "bonus", "bonyok", "bopeng", "boplang", "bopok", "bopong", "bor", "bora", "borak", "boraks", "borang", "borat", "borci", "border", "bordes", "bordil", "bordir", "bordu", "boreal", "boreh", "borek", "borgol", "borhan", "borjuasi", "borjuis", "borkol", "boro-boro", "borok", "boron", "borong", "boros", "bortel", "bos", "bosan", "boseta", "bosman", "boson", "bosor", "bosun", "bot", "bota", "botak", "botang", "botani", "botanikus", "botanis", "botelir", "botlir", "boto", "botoh", "botok", "botol", "botor", "botridium", "botulisme", "bowo", "boya", "boyak", "boyas", "boyo-boyo", "boyong", "boyongan", "bozah", "bradikardi", "brahma", "brahmana", "brahmani", "brahmi", "brahmin", "braille", "brakiasi", "brakilogi", "brakisefalik", "brakistokron", "brakiurus", "braktea", "bramacorah", "brambang", "brana", "brander", "brankar", "brankas", "branwir", "braseri", "brata", "bratawali", "bredel", "breksi", "breksia", "brem", "bren", "brendi", "brengsek", "bretel", "brevet", "brifing", "brigade", "brigadir", "brigidig", "briket", "brilian", "briofita", "briologi", "briozoa", "brisan", "broiler", "brokade", "brokat", "broker", "brokoli", "brom", "bromat", "bromida", "bromin", "bromisme", "brompit", "brongkos", "bronkioli", "bronkitis", "bronkodilator", "bronkotomi", "bronkus", "brontosaurus", "bros", "brosur", "browser", "bruder", "bruk", "brunai", "brutal", "brutalisme", "bruto", "bua", "buah", "buai", "buak", "bual", "buana", "buang", "buani", "buar", "buari", "buas", "buat", "buaya", "bubar", "bubo", "bubu", "bubuh", "bubuhan", "bubuk", "bubul", "bubun", "bubung", "bubur", "bubus", "bubut", "bucu", "budak", "budanco", "budaya", "buddha", "buddhis", "buddhisme", "bude", "budek", "budi", "budian", "budiman", "budu", "buduk", "budur", "bueng", "bufer", "bufet", "bugar", "bugenfil", "bugenvil", "bugi-bugi", "bugil", "buhuk", "buhul", "bui", "buih", "buil", "bujal", "bujam", "bujang", "bujangga", "bujet", "bujeter", "bujuk", "bujur", "bujut", "buk", "buka", "bukan", "bukankah", "bukantah", "bukat", "bukau", "buket", "bukit", "buklet", "bukti", "buku", "bukung", "bukur", "bukut", "bulai", "bulak", "bulan", "bulang", "bulang-baling", "bulangan", "bular", "bulat", "bulbul", "buldan", "buldog", "buldoser", "bule", "buleng", "buletin", "bulevar", "bulgur", "buli-buli", "bulian", "bulimia", "bulir", "bulsak", "bulu", "bulug", "buluh", "buluk", "bulur", "bulus", "bum", "bumantara", "bumban", "bumbu", "bumbun", "bumbung", "bumel", "bumerang", "bumi", "bumiah", "bumiputra", "bumper", "bumpet", "bumping", "bun", "buna", "bunbunan", "buncah", "buncak", "buncang", "buncis", "buncit", "bunda", "bundak", "bundar", "bundas", "bundel", "bunduk", "bundung", "bung", "bunga", "bungalo", "bungar", "bungkal", "bungkam", "bungkang", "bungkas", "bungker", "bungkil", "bungking", "bungkuk", "bungkul", "bungkus", "bunglai", "bunglon", "bungsil", "bungsu", "bungur", "buni", "bunian", "bunjai", "buntak", "buntal", "buntang", "buntar", "buntat", "buntek", "buntel", "buntet", "buntil", "bunting", "buntu", "buntung", "buntut", "bunuh", "bunut", "bunyi", "bupala", "bupati", "bupet", "bur", "bura", "burai", "burak", "burakah", "buraksa", "buram", "buras", "burat", "burayak", "burdah", "bureng", "buret", "burgundi", "burhan", "burik", "burit", "burjusumbulat", "burkak", "burnout", "buron", "bursa", "buru", "buruh", "buruj", "buruk", "burun", "burung", "burut", "bus", "busa", "busai", "busana", "busar", "buset", "bushido", "busi", "busik", "bustan", "buster", "busuk", "busung", "busur", "busut", "buta", "butadiena", "butala", "butana", "butang", "butarepan", "butbut", "butek", "butik", "butir", "butirat", "butongpai", "butuh", "butul", "butun", "butut", "buwuh", "buya", "buyar", "buyung", "buyur", "buyut", "byarpet", "caba", "cabai", "cabak", "cabang", "cabar", "cabau", "cabe", "cabik", "cabir", "cabo", "cabuh", "cabuk", "cabul", "cabur", "cabut", "caca", "cacah", "cacak", "cacap", "cacar", "cacat", "cacau", "caci", "cacibar", "cacil", "cacing", "cadai", "cadang", "cadar", "cadas", "cadel", "cadik", "cadok", "caduk", "cadung", "caem", "cagak", "cagar", "cagil", "cagu", "caguh", "cagun", "cagut", "cah", "cahang", "cahar", "cahari", "cahaya", "cahi", "cailah", "caima", "caing", "cair", "cais", "caisim", "cak", "cakah", "cakak", "cakalang", "cakalele", "cakap", "cakar", "cakawari", "cakela", "cakep", "caki", "cakiak", "cakil", "cakmar", "cako", "cakra", "cakrabirawa", "cakrabuana", "cakram", "cakrawala", "cakruk", "cakup", "cakur", "cakus", "cal", "calabikang", "caladi", "calak", "calang", "calar", "calecer", "calempong", "caling", "calir", "calit", "calo", "calon", "calui", "caluk", "calung", "calus", "cam", "camar", "camat", "camau", "cambahan", "cambang", "cambuk", "cambul", "cambung", "camca", "camil", "campa", "campah", "campak", "campang", "campin", "camping", "camplungan", "campuh", "campung", "campur", "camuk", "camur", "canai", "canak", "canang", "cancan", "cancang", "cancut", "canda", "candai", "candak", "candala", "candang", "candat", "candi", "candik", "candit", "candra", "candradimuka", "candramawa", "candrasa", "candrasengkala", "candu", "candung", "cang", "cangah", "cangak", "cangam", "cangap", "cangar", "cangcang", "cangga", "canggaan", "canggah", "canggai", "canggal", "cangget", "canggih", "canggu", "canggung", "cangkang", "cangkat", "cangkel", "cangkih", "cangking", "cangkir", "cangklong", "cangkok", "cangkol", "cangkrang", "cangkrim", "cangkriman", "cangkring", "cangkuk", "cangkul", "cangkulan", "cangkum", "cangkung", "cangkup", "canguk", "cangut", "cantas", "cante", "cantel", "canteng", "cantik", "canting", "cantol", "cantrik", "cantum", "caos", "cap", "capa", "capah", "capai", "capak", "capal", "capang", "capar", "capcai", "cape", "capek", "capelin", "capgome", "capik", "capil", "caping", "capit", "capjiki", "caplak", "caplok", "capuk", "capung", "cara", "carah", "carak", "caraka", "caram", "caran", "carang", "caren", "cari", "carik", "caring", "carter", "caruk", "carut", "cas", "casciscus", "cat", "catat", "catek", "catu", "catuk", "catur", "caturjalma", "caturlarik", "caturtunggal", "caturwangsa", "caturwarga", "caturwarna", "caturwulan", "catut", "caul", "caung", "cawai", "cawak", "cawan", "cawangan", "cawat", "cawe-cawe", "cawi", "cawis", "cebak", "ceban", "cebik", "cebikas", "cebil", "cebir", "cebis", "cebok", "cebol", "cebong", "cebur", "cecah", "cecak", "cecap", "cecar", "cecawi", "cece", "ceceh", "ceceng", "cecengklok", "cecer", "cecere", "cecok", "cecongor", "cecunguk", "cedal", "cedayam", "cedera", "ceding", "cedok", "cedong", "ceduk", "cegah", "cegak", "cegar", "cegat", "ceguk", "cek", "cekah", "cekak", "cekakak", "cekakan", "cekal", "cekam", "cekang", "cekarau", "cekat", "cekau", "cekcekcek", "cekcok", "cekdam", "cekdel", "cekek", "cekel", "ceker", "cekeram", "ceki", "cekibar", "cekih", "cekik", "cekikik", "ceking", "cekit", "ceklek", "cekluk", "cekok", "cekrem", "cekres", "ceku", "cekuh", "cekuk", "cekung", "cekup", "cekur", "cekut", "cela", "celaga", "celah", "celak", "celaka", "celampak", "celana", "celang", "celangak", "celangak-celinguk", "celangap", "celapak", "celar", "celari", "celas", "celas-celus", "celat", "celatuk", "cele", "celebuk", "celedang-celedok", "celek", "celekeh", "celemek", "celemotan", "celempong", "celempung", "celeng", "celengan", "celengkak-celengkok", "celengkang", "celentang", "celep", "celepik", "celepuk", "celetuk", "celi", "celih", "celik", "celinguk", "celingus", "celis", "celok", "celomes", "celomok", "celonok", "celopar", "celorot", "celoteh", "celsius", "celuk", "celum", "celung", "celup", "celupak", "celur", "celuring", "celurit", "celurut", "celus", "celutak", "celutuk", "cema", "cemani", "cemar", "cemara", "cemas", "cemat", "cembeng", "cemberut", "cembul", "cembung", "cemburu", "cemeeh", "cemeh", "cemek", "cemekian", "cemengkian", "cemer", "cemerlang", "cemeti", "cemetuk", "cemomot", "cemong", "cemooh", "cempa", "cempaka", "cempal", "cempala", "cempana", "cempe", "cempedak", "cempek", "cempelik", "cempelung", "cempeng", "cempera", "cemperai", "cemperling", "cempiang", "cempil", "cempin", "cemping", "cemplang", "cemplung", "cempor", "cempreng", "cempres", "cempuling", "cempung", "cempurit", "cemuas", "cemuk", "cena", "cenak", "cenal-cenil", "cenangau", "cenangga", "cenangkas", "cenayang", "cencala", "cencaluk", "cencang", "cencaru", "cencawan", "cencawi", "cendala", "cendana", "cendang", "cendawan", "cendekia", "cendera", "cenderai", "cenderasa", "cenderawasih", "cenderung", "cendok", "cendol", "cenduai", "cenela", "ceng", "cengal", "cengam", "cengang", "cengap", "cengar-cengir", "cengbeng", "cengeh", "cengek", "cengeng", "cengengesan", "cenggek", "cengger", "cenggeret", "cengi", "cengir-cengir", "cengis", "cengkal", "cengkam", "cengkar", "cengkaruk", "cengkau", "cengkedi", "cengkeh", "cengkek", "cengkelong", "cengkeram", "cengkerama", "cengkerawak", "cengkerik", "cengkering", "cengkerung", "cengki", "cengkiak", "cengkih", "cengking", "cengkir", "cengkiwing", "cengkok", "cengkol", "cengkong", "cengkung", "cengkurai", "cengli", "cengung", "cengut", "centang", "centangan", "centeng", "centet", "centil", "centong", "centung", "cenung", "cepak", "cepal", "cepat", "cepek", "cepeng", "cepengan", "ceper", "cepiau", "ceplas-ceplos", "ceples", "ceplok", "ceplos", "cepo", "cepol", "cepu", "cepuk", "cerabah", "cerabih", "cerabut", "ceracak", "ceracam", "ceracap", "ceracau", "cerah", "cerai", "cerai-berai", "cerak", "ceraka", "cerakin", "ceramah", "cerana", "cerancang", "cerang", "ceranggah", "cerangka", "cerap", "cerat", "ceratai", "ceratuk", "cerau", "cerawat", "cerbak", "cerca", "cercah", "cercak", "cercap", "cerdas", "cerdik", "cere", "cerecek", "cerek", "ceremai", "cerempung", "cerepu", "ceret", "cerewet", "cergas", "ceri", "ceria", "cericap", "cericau", "cericip", "ceriga", "cerih", "cerita", "ceriwis", "cerkam", "cerkau", "cerlang", "cerlih", "cerling", "cermai", "cermat", "cermin", "cerna", "ceroboh", "cerobong", "cerocok", "cerocos", "cerompong", "ceronggah", "ceropong", "ceroteh", "cerowok", "cerpelai", "cerpen", "cerpenis", "cerpu", "cerucuh", "cerucup", "ceruh", "ceruk", "cerun", "cerup", "cerut", "cerutu", "cespleng", "cetai", "cetak", "cetar", "cetek", "ceteng", "ceter", "cetera", "ceteri", "ceteria", "ceti", "cetok", "cetus", "ceuki", "cewang", "cewek", "ciak", "cialat", "ciap", "ciar", "cibir", "cibit", "ciblon", "cibuk", "cicik", "cicil", "cicinda", "cicip", "cicit", "cidomo", "ciduk", "cigak", "cih", "cihui", "cik", "cika", "cikadas", "cikal", "cikar", "cikok", "cikrak", "ciku", "cikun", "cikut", "cilap", "cilawagi", "cili", "cilik", "ciling", "cilok", "ciluk", "cilukba", "cimplong", "cina", "cincang", "cincau", "cincin", "cincong", "cincu", "cinda", "cindai", "cindaku", "cinde", "cindil", "cindur", "cing", "cingak", "cingam", "cingangah", "cingge", "cingkat", "cingkeh", "cingkrang", "cingur", "cinta", "cintamani", "cinteng", "cintrong", "cip", "cipai", "cipan", "ciplak", "cipok", "ciprat", "cipta", "cir", "circir", "ciri", "cirit", "ciriwangi", "cis", "cit", "cita", "citra", "citraleka", "ciu", "cium", "ciut", "coak", "coang", "coba", "coban", "cobar-cabir", "cobek", "coblos", "cocok", "cocol", "cocor", "codak", "codet", "codot", "cogah", "cogan", "cogok", "cok", "cokar", "cokek", "cokelat", "coket", "coklat", "cokmar", "coko", "cokok", "cokol", "cokor", "cokorda", "cola-cala", "colak", "colak-caling", "colang-caling", "colek", "coleng", "colet", "coli", "colok", "colong", "colot", "comat-comot", "comberan", "comblang", "combong", "comek", "comel", "comor", "comot", "compang-camping", "compeng", "compes", "compoh", "compreng", "comro", "concong", "condong", "conet", "congak", "congeh", "congek", "conggah-canggih", "congget", "conggok", "congkah-cangkih", "congkah-mangkih", "congkak", "congkel", "congki", "congklak", "congklang", "congkok", "congkong", "congo", "congok", "congol", "congor", "congsam", "contek", "conteng", "contoh", "contong", "cop", "copak-capik", "copet", "coplok", "copot", "cor", "corak", "corat-coret", "corek", "coreng", "coret", "coro", "corob", "corong", "corot", "cotet", "cotok", "cowok", "cowokan", "crat-crit", "criping", "cua", "cuaca", "cuai", "cuak", "cual", "cuang", "cuar", "cuat", "cubit", "cublik", "cubung", "cuca", "cucakrawa", "cuci", "cucu", "cucuh", "cucuk", "cucun", "cucunda", "cucung", "cucup", "cucur", "cucurut", "cucut", "cudang", "cuek", "cugat", "cuh", "cuik", "cuil", "cuit", "cuk", "cuka", "cukai", "cuki", "cukil", "cukimai", "cukin", "cukit", "cukong", "cuku", "cukup", "cukur", "cula", "culak", "culan", "culas", "culi", "culiah", "culik", "culika", "culim", "culun", "cuma", "cuman", "cumbu", "cumengkling", "cumepak", "cumi-cumi", "cumil", "cuming", "cun", "cunam", "cundang", "cundrik", "cunduk", "cung", "cungap", "cungkil", "cungkup", "cungo", "cungul", "cungur", "cunia", "cup", "cupai", "cupak", "cupang", "cupar", "cupet", "cuping", "cuplik", "cupu", "cupul", "cur", "cura", "curah", "curai", "curam", "curang", "curat", "cureng", "curi", "curiah", "curiga", "curik", "curna", "curu", "cus", "cut", "cutak", "cutbrai", "cutel", "cuti", "cuwil", "daayah", "dab", "daba", "dabak", "dabal", "dabat", "dabih", "dabik", "dabing", "dabir", "dabit", "dablek", "dabol", "dabung", "dabus", "dacin", "dad", "dada", "dadah", "dadaisme", "dadak", "dadal", "dadali", "dadap", "dadar", "dadek", "dadi", "dadih", "dading", "dadu", "daduh", "daduk", "dadung", "daeng", "daerah", "daerahisme", "dafnah", "daftar", "daga", "dagang", "dage", "dagel", "dagi", "daging", "dagu", "dah", "dahaga", "dahagi", "dahak", "daham", "dahan", "dahanam", "dahar", "dahi", "dahiat", "dahina", "dahlia", "dahriah", "dahsyat", "dahulu", "dai", "daidan", "daidanco", "daif", "daim", "daiman", "daing", "daitia", "dajal", "daka", "dakah", "dakaik", "dakar", "dakhil", "daki", "dakik", "dakocan", "dakon", "dakron", "daksa", "daksina", "daktil", "daktilitis", "daktilologi", "daktiloskopi", "daku", "dakwa", "dakwah", "dal", "dalal", "dalalah", "dalalat", "dalam", "dalang", "daldaru", "dalem", "dalfin", "dali-dali", "dalih", "dalil", "daltonisme", "dalu", "daluang", "dalung", "dam", "damah", "damai", "damak", "damal", "daman", "damar", "damaru", "damas", "damat", "damba", "dambin", "dambir", "dame", "damen", "dami", "damik", "damotin", "dampak", "dampal", "dampan", "dampar", "dampeng", "dampil", "damping", "dampit", "damprat", "dampung", "dan", "dana", "danau", "danawa", "danda", "dandan", "dandang", "dandanggula", "dandapati", "dandi", "dang", "dangai", "dangar", "dangau", "dangdut", "dange", "danghyang", "dangir", "dangka", "dangkal", "dangkap", "dangkar", "dangkung", "danguk", "dansa", "dansanak", "danta", "danuh", "danur", "danyang", "dap", "dapa", "dapar", "dapat", "dapra", "dapur", "dar", "dara", "darab", "darah", "daras", "darat", "darau", "dargah", "dari", "daripada", "darji", "darma", "darmabakti", "darmakelana", "darmasiswa", "darmatirta", "darmawisata", "daro", "darpana", "daru-daru", "darulaitam", "darulakhirat", "darulbaka", "darulfana", "daruljalal", "darun", "darunu", "darurat", "darusalam", "darwis", "das", "dasa", "dasalomba", "dasar", "dasarian", "dasasila", "dasatitah", "dasawarsa", "dasbor", "dasi", "dasin", "daster", "dasun", "data", "datang", "datar", "datatamak", "dati", "datif", "datu", "datuk", "datum", "datung", "dauk", "daulat", "daun", "daur", "dawai", "dawan", "dawat", "dawet", "daya", "dayah", "dayang", "dayu", "dayuh", "dayuk", "dayung", "dayus", "dealat", "deaneksasi", "debah", "debak", "debam", "debap", "debar", "debarkasi", "debas", "debat", "debet", "debik", "debil", "debing", "debirokratisasi", "debit", "debitase", "debitor", "debitur", "debris", "debu", "debug", "debuk", "debum", "debun", "debung", "debup", "debur", "debus", "debut", "decak", "decap", "deceh", "decing", "decit", "decup", "decur", "decut", "dedah", "dedai", "dedak", "dedal", "dedalu", "dedap", "dedar", "dedara", "dedare", "dedas", "dedau", "dedek", "dedel", "dedemit", "dedengkot", "deder", "dederuk", "dedes", "dedikasi", "dedikatif", "deduksi", "deduktif", "dedulang", "deeskalasi", "defaitisme", "defekasi", "defender", "defensi", "defensif", "deferens", "defile", "definisi", "definit", "definitif", "defisien", "defisit", "deflagrasi", "deflagrator", "deflasi", "defleksi", "deflorasi", "defoliasi", "defolisasi", "defonologisasi", "deforestasi", "deformasi", "deformatif", "deg", "degam", "degan", "degap", "degar", "degen", "degenerasi", "degeneratif", "degil", "deging", "degradasi", "degresi", "deguk", "degum", "degung", "degup", "deh", "deham", "dehem", "dehidrasi", "dehidrat", "dehidrogenasi", "dehumanisasi", "deideologisasi", "deifikasi", "deiksis", "deiktis", "deislamisasi", "deisme", "dek", "dekade", "dekaden", "dekadensi", "dekagram", "dekah", "dekak", "dekaliter", "dekam", "dekameter", "dekan", "dekanal", "dekantasi", "dekap", "dekapoda", "dekar", "dekare", "dekat", "dekik", "dekil", "deking", "deklamasi", "deklamator", "deklarasi", "deklaratif", "deklasifikasi", "deklerer", "deklinasi", "deklinometer", "dekode", "dekoder", "dekolonisasi", "dekomposer", "dekomposisi", "dekompresi", "dekongestan", "dekonsentrasi", "dekontekstualisasi", "dekor", "dekorasi", "dekoratif", "dekorator", "dekosistem", "dekremeter", "dekreolisasi", "dekret", "dekriminalisasi", "deksa", "dekstrin", "dekstrosa", "deksura", "deku", "dekunci", "dekung", "dekus", "dekut", "delabialisasi", "delah", "delamak", "delan", "delap", "delapan", "delas", "delat", "delegasi", "delegat", "delegitimasi", "delepak", "deler", "delik", "delikan", "delikat", "delikates", "delima", "delineasi", "delinkuen", "delinkuensi", "delirium", "delman", "delong", "delongop", "delta", "deltoid", "delu", "delusi", "delusif", "demabrasi", "demagog", "demagogi", "demagogis", "demah", "demam", "demang", "demap", "demarkasi", "dembai", "dembam", "dembun", "demek", "demen", "demes", "demi", "demik", "demikian", "demiliterisasi", "demineralisasi", "demisioner", "demo", "demobilisan", "demobilisasi", "demograf", "demografi", "demografis", "demokrasi", "demokrat", "demokratis", "demokratisasi", "demon", "demoniak", "demonopolisasi", "demonstran", "demonstrasi", "demonstratif", "demonstrativa", "demoralisasi", "demosi", "dempak", "dempam", "dempang", "demper", "dempet", "dempir", "demplon", "dempok", "dempuk", "dempul", "dempung", "demung", "den", "dena", "denah", "denai", "denak", "denasalisasi", "denasionalisasi", "denawa", "dencang", "dencing", "denda", "dendam", "dendang", "dendeng", "dendi", "dendrokronologi", "dendrologi", "denervasi", "dengak", "dengan", "dengap", "dengar", "dengih", "denging", "dengkang", "dengkel", "dengki", "dengkik", "dengking", "dengkol", "dengkul", "dengkung", "dengkur", "dengkus", "dengu", "dengue", "denguk", "dengung", "dengus", "dengut", "denim", "denok", "denominal", "denominasi", "denotasi", "denotatif", "densimeter", "densitas", "densitometer", "densitometri", "densometer", "dental", "dentam", "dentang", "dentat", "dentin", "denting", "dentum", "dentung", "dentur", "denudasi", "denuklirisasi", "denyar", "denyit", "denyut", "deodoran", "deoknumisasi", "deontologi", "depa", "depak", "depalatalisasi", "depan", "depang", "depap", "deparpolisasi", "departemen", "departemental", "departementalisasi", "dependen", "dependensi", "depersonalisasi", "depersonifikasi", "depigmentasi", "depilasi", "deplesi", "depo", "depolarisasi", "depolitisasi", "deponir", "depopulasi", "deportasi", "deposan", "deposit", "deposito", "depot", "depresi", "depresiasi", "depresor", "deprok", "deprotonasi", "depun", "depus", "deputasi", "deputi", "dera", "deragem", "derai", "derajah", "derajang", "derajat", "derak", "deram", "deran", "derana", "derang", "derap", "deras", "derau", "derawa", "derebar", "deregulasi", "derek", "derel", "derep", "deres", "deresi", "deret", "dergama", "derik", "dering", "deringo", "deris", "derit", "derita", "deritaan", "derivasi", "derivat", "derivatif", "derji", "derma", "dermaga", "derman", "dermatitis", "dermatofitosis", "dermatolog", "dermatologi", "dermatom", "dermis", "dermoid", "dersana", "dersik", "deru", "deruji", "deruk", "derum", "derun", "derung", "derup", "derus", "derut", "desa", "desah", "desain", "desainer", "desak", "desakralisasi", "desalinasi", "desaneksasi", "desar", "desas-desus", "desau", "desegregasi", "deselerasi", "desember", "desensitisasi", "desentralisasi", "deserebrasi", "desersi", "desertir", "desibel", "desidua", "desigram", "desih", "desik", "desikan", "desikator", "desil", "desiliter", "desiliun", "desimal", "desimeter", "desinens", "desinfeksi", "desinfektan", "desing", "desintegrasi", "desir", "desis", "desit", "deskripsi", "deskriptif", "deskuamasi", "desmonem", "desmoplasia", "desmosom", "desorientasi", "desorpsi", "despot", "despotik", "despotisme", "destabilisasi", "destar", "destinasi", "destroyer", "destruksi", "destruktif", "destruktor", "desuk", "desulfurisasi", "desup", "desur", "desus", "desut", "detail", "detak", "detap", "detar", "detas", "detasemen", "detasering", "detasir", "deteksi", "detektif", "detektofon", "detektor", "detenidos", "detensi", "detente", "detergen", "deteriorasi", "determinan", "determinasi", "determinatif", "determinator", "determinis", "determinisme", "detik", "deting", "detoksifikasi", "detonasi", "detonator", "detritus", "detrusor", "detup", "detus", "deuterium", "deuterokanonika", "deuteron", "deutranomalopia", "deutranopia", "devaluasi", "developer", "deverbal", "deviasi", "devisa", "devosi", "dewa", "dewadaru", "dewala", "dewan", "dewana", "dewanagari", "dewangga", "dewasa", "dewata", "dewe", "dewi", "dia", "diabetes", "diad", "diadem", "diafon", "diaforetik", "diafragma", "diagenesis", "diagnosis", "diagnostik", "diagometer", "diagonal", "diagram", "diaken", "diakon", "diakones", "diakonia", "diakritik", "diakronis", "dialek", "dialektal", "dialektik", "dialektika", "dialektis", "dialektologi", "dialinguistik", "dialisis", "dialog", "dialogis", "diam", "diamagnetisme", "diameter", "diametral", "diamorf", "dian", "diang", "diaper", "diapositif", "diar", "diare", "dias", "diasistem", "diaspora", "diastase", "diastole", "diat", "diaterman", "diatermi", "diatermik", "diatesis", "diatipe", "diatom", "diatomit", "diatonik", "diatopik", "diayah", "dibasa", "didaktik", "didaktikus", "didaktis", "didih", "didik", "didis", "didong", "dielektrik", "diensefalon", "dies", "diesel", "diet", "dietetika", "difabel", "diferensial", "diferensiasi", "difluens", "difluensi", "difraksi", "difteri", "diftong", "difusi", "digdaya", "digenesis", "digestif", "digit", "digital", "digitalin", "digitalis", "digitalisasi", "diglosia", "digraf", "digresi", "digul", "dihedral", "dihidroksil", "dik", "dikara", "dikau", "dikit", "diklorida", "dikotil", "dikotomi", "dikroisme", "dikromat", "dikromatik", "diksa", "diksi", "diktat", "diktator", "diktatorial", "diktatoris", "dikte", "diktum", "dil", "dila", "dilak", "dilam", "dilasi", "dilatasi", "dilatometer", "dilema", "dilematik", "diler", "diletan", "diluvium", "dim", "dimensi", "dimer", "diminutif", "dimorfik", "dimorfisme", "din", "dina", "dinamik", "dinamika", "dinamis", "dinamisator", "dinamisme", "dinamit", "dinamo", "dinamometer", "dinar", "dinas", "dinasti", "dinding", "dingin", "dingkis", "dingkit", "dingklang", "dingklik", "dingo", "dini", "diniah", "diniyah", "dinosaurus", "dinul-islam", "diode", "dioesis", "dioksida", "dioksin", "diopsida", "dioptase", "dioptri", "diorama", "diorit", "dioses", "dipan", "diplo", "diploid", "diploma", "diplomasi", "diplomat", "diplomatik", "diplomatis", "dipsomania", "diptera", "diptotos", "dirah", "diraja", "direk", "direksi", "direktorat", "direktorium", "direktris", "direktur", "dirgahayu", "dirgantara", "dirham", "diri", "dirigen", "diris", "dirus", "disagio", "disain", "disainer", "disakarida", "disastria", "disbursemen", "disdrometer", "disekuilibrium", "disel", "disensus", "disentri", "disertasi", "disfonia", "disfungsi", "disharmoni", "disiden", "disilabik", "disimilasi", "disinfektan", "disinformasi", "disinsentif", "disintegrasi", "disiplin", "disjoki", "disjungsi", "disjungtif", "diska", "disket", "diskiasis", "disklimaks", "disko", "diskoid", "diskon", "diskontinu", "diskontinuitas", "diskonto", "diskordans", "diskorobik", "diskotek", "diskredit", "diskrepansi", "diskresi", "diskriminasi", "diskriminatif", "diskriminator", "diskualifikasi", "diskulpasi", "diskursif", "diskus", "diskusi", "dislalia", "disleksia", "dislokasi", "dismembrasio", "dismenorea", "dismutasi", "disolventia", "disonansi", "disoperasi", "disorder", "disorganisasi", "disorientasi", "disosiasi", "dispareunia", "disparitas", "dispensasi", "dispenser", "dispepsia", "dispersal", "dispersi", "disposisi", "disposotio", "disprosium", "disrupsi", "distabilitas", "distal", "distansi", "distikiasis", "distikon", "distilasi", "distilator", "distingsi", "distingtif", "distoma", "distorsi", "distosia", "distribusi", "distributor", "distrik", "disuasi", "disuria", "dito", "ditransitif", "diuresis", "diuretik", "diurnal", "divergen", "divergensi", "diversifikasi", "diversitas", "divestasi", "dividen", "divisi", "diwala", "doa", "doang", "dobel", "dobi", "doblangan", "doble", "dobol", "dobolo", "dobrak", "dodekagon", "dodekahedron", "dodet", "dodok", "dodol", "dodong", "dodor", "dodos", "dodot", "doeloe", "dog", "dogel", "dogeng", "doger", "dogma", "dogmatik", "dogmatis", "dogmatisme", "dogol", "dohok", "dohyo", "doi", "dok", "dokar", "doko", "dokoh", "dokok-dokok", "doksologi", "dokter", "doktor", "doktoranda", "doktorandus", "doktrin", "doku", "dokumen", "dokumentasi", "dokumenter", "dol", "dolak-dalik", "dolan", "dolar", "doldrum", "dolfin", "dolikosepalik", "dolmen", "dolok", "dolomit", "dom", "domain", "domba", "domblong", "domein", "domestik", "domestikasi", "dominan", "dominansi", "dominasi", "domine", "dominggo", "dominion", "domino", "domisili", "domot", "dompak", "dompet", "domplang", "dompleng", "dompol", "don", "donasi", "donat", "donatur", "doncang", "dondang", "donder", "dondon", "dong", "dongak", "dongan", "dongbret", "dongeng", "dongkak", "dongkel", "dongkok", "dongkol", "dongkrak", "dongkrok", "dongok", "dongpan", "dongsok", "doni", "donor", "donto", "dop", "doping", "dopis", "dor", "dorang", "dorbi", "dorbia", "dorman", "dormansi", "dorna", "dorong", "dorsal", "dorslah", "dorsopalatal", "dorsovelar", "dorsum", "dortrap", "dos", "dosa", "dosen", "dosin", "dosir", "dosis", "dot", "dowel", "dower", "doyak", "doyan", "doyang", "doyo", "doyong", "draf", "dragon", "drai", "drainase", "drakula", "dram", "drama", "dramatik", "dramatikus", "dramatis", "dramatisasi", "dramaturg", "dramaturgi", "draperi", "drastis", "drat", "drel", "dresoar", "dresur", "dribel", "drif", "dril", "drip", "drop", "droping", "dropsi", "drum", "drumben", "drumer", "druwe", "dua", "duafa", "duai", "duaja", "dualis", "dualisme", "dualistis", "duane", "duang", "duangsom", "dub", "dubalang", "dubelir", "dubes", "dubila", "dubing", "dubius", "duble", "dublir", "dubuk", "dubur", "duda", "duduk", "dudur", "dudus", "duel", "duet", "duga", "dugal", "dugang", "dugas", "dugdeng", "dugder", "duh", "duha", "duhai", "duhe", "duhu", "duilah", "duit", "duk", "duka", "dukacarita", "dukacita", "dukan", "dukana", "dukat", "dukaten", "duktulus", "duktus", "duku", "dukuh", "dukun", "dukung", "dula", "dulag", "dulang", "dulang-dulang", "duli", "dulur", "dum", "dumdum", "dumi", "dumping", "dumung", "dunah", "dunak", "dung", "dungas", "dungkelan", "dungkul", "dungu", "dungun", "dunia", "duniawi", "duodenum", "duodesimal", "duodrama", "duopoli", "dup", "dupa", "dupak", "dupleks", "duplik", "duplikasi", "duplikat", "duplikator", "duplisitas", "duplo", "dur", "dura", "duralumin", "duramater", "durasi", "durat", "duratif", "duren", "dureng", "durhaka", "duri", "durian", "durias", "duriat", "durja", "durjana", "durjasa", "durkarsa", "durma", "durna", "durno", "durnois", "durnoisme", "durometer", "dursila", "duru", "duruwiksa", "dus", "dusin", "dusta", "dustur", "dusun", "duta", "duwegan", "duwet", "duyun", "duyung", "dwiarti", "dwibahasa", "dwidarma", "dwidasawarsa", "dwifungsi", "dwiganda", "dwiguna", "dwilingga", "dwimatra", "dwiminggu", "dwimuka", "dwiperan", "dwipurwa", "dwisegi", "dwitarung", "dwitunggal", "dwiwarna", "dzal", "ebam", "eban", "ebek", "ebi", "eboni", "ebonit", "ebro", "eburina", "ecek", "eceng", "ecer", "eco", "edafik", "edafit", "edafologi", "edafon", "edan", "edar", "edema", "edentat", "edisi", "edit", "editor", "editorial", "edukasi", "edukatif", "efedrina", "efek", "efektif", "efektivitas", "efektor", "efelis", "efendi", "efisien", "efisiensi", "efloresensi", "eforus", "efusi", "egah", "egalisasi", "egalitarian", "egalitarianisme", "egalitarisme", "egaliter", "egat", "ego", "egois", "egoisme", "egoistis", "egol", "egomania", "egos", "egosentris", "egosentrisitas", "egosentrisme", "egrang", "egresif", "ehe", "eidetik", "eigendom", "eikosan", "einsteinium", "eja", "ejakulasi", "ejan", "ejawantah", "ejek", "ejektif", "ejektor", "ekabahasa", "ekad", "ekajati", "ekakarsa", "ekamatra", "ekang", "ekaristi", "ekatantri", "ekbalium", "ekdemik", "ekderon", "ekdisis", "ekeh", "ekimosis", "ekiofit", "eklektik", "eklektikus", "eklektis", "eklektisisme", "eklektisme", "eklips", "ekliptika", "ekliptis", "eklosi", "ekofisiologi", "ekofraksia", "ekofrasia", "ekografi", "ekogrup", "ekoklimat", "ekoklimatologi", "ekokronologi", "ekolabel", "ekolalia", "ekologi", "ekologis", "ekon", "ekonom", "ekonometri", "ekonomi", "ekonomis", "ekopolitik", "ekopraksia", "ekor", "ekornia", "ekosfer", "ekosistem", "ekosistematika", "ekospesies", "ekostratigrafi", "ekotipe", "ekotipifikasi", "ekoturisme", "ekozona", "ekrin", "ekrinologi", "eks", "eksak", "eksakta", "eksaltasi", "eksamen", "eksaminasi", "eksaminator", "eksantem", "eksantropus", "eksarasi", "eksegesis", "ekseget", "eksekusi", "eksekutif", "eksekutor", "eksem", "eksemplar", "eksenterasi", "eksentrik", "eksepsi", "ekseptor", "ekses", "eksesif", "eksfoliasi", "ekshalasi", "ekshibisi", "ekshibisionis", "ekshibisionisme", "ekshibitum", "eksikator", "eksin", "eksipien", "eksisi", "eksistensi", "eksistensialis", "eksistensialisme", "eksit", "eksitasi", "eksitus", "ekskavasi", "ekskavator", "eksklave", "eksklusif", "eksklusivisme", "ekskomunikasi", "ekskresi", "ekskreta", "ekskursi", "ekskursif", "eksobiologi", "eksobiotik", "eksodermis", "eksodos", "eksodus", "eksoenzim", "eksoergik", "eksofasia", "eksofora", "eksoftalmia", "eksoftalmos", "eksoftalmus", "eksogam", "eksogami", "eksogen", "eksogin", "eksoisogami", "eksordium", "eksorsis", "eksosfer", "eksospora", "eksostosis", "eksoterik", "eksotermik", "eksotik", "eksotis", "eksotisme", "ekspansi", "ekspansif", "ekspansionis", "ekspansionisme", "ekspansionistis", "ekspatriasi", "ekspatriat", "ekspedisi", "ekspeditor", "ekspektoran", "eksper", "eksperimen", "eksperimental", "ekspirasi", "eksplan", "eksplikasi", "eksplisit", "eksploit", "eksploitasi", "eksploitir", "eksplorasi", "eksploratif", "eksplorator", "eksplosi", "eksplosif", "ekspo", "eksponen", "eksponensial", "ekspor", "eksportir", "ekspos", "ekspose", "eksposisi", "ekspres", "ekspresi", "ekspresif", "ekspresionisme", "ekspresionistik", "ekspresivitas", "ekstase", "ekstasi", "ekstensi", "ekstensif", "ekstensifikasi", "ekstensor", "eksterior", "eksteriorisasi", "eksteritorialitas", "ekstern", "eksternal", "ekstin", "ekstra", "ekstradisi", "ekstrak", "ekstrakardial", "ekstraksi", "ekstraktif", "ekstrakurikuler", "ekstralinguistis", "ekstramarital", "ekstranei", "ekstraparlementer", "ekstrapolasi", "ekstraseluler", "ekstraterestrial", "ekstrateritorialitas", "ekstrauterin", "ekstraversi", "ekstrem", "ekstremis", "ekstremitas", "ekstrinsik", "ekstrospeksi", "ekstrover", "ekstrusi", "eksudasi", "eksudat", "ektoblas", "ektoderm", "ektohormon", "ektoparasit", "ektoplasma", "ektoterm", "ektotermik", "ekualitas", "ekuatif", "ekuator", "ekuilibrium", "ekuinoks", "ekuitas", "ekuiti", "ekuivalen", "ekuivalensi", "ekuivokasi", "ekumene", "ekumenis", "ekumenisme", "ela", "elaborasi", "elak", "elan", "elang", "elastik", "elastin", "elastis", "elastisitas", "elastomer", "elatif", "elefantiasis", "elegan", "elegansi", "elegi", "elektif", "elektorat", "elektret", "elektrifikasi", "elektrik", "elektris", "elektro", "elektrode", "elektrodinamika", "elektroensefalogram", "elektroforesis", "elektrokardiogram", "elektrokimia", "elektrokoagulasi", "elektrokusi", "elektrolisi", "elektrolisis", "elektrolit", "elektromagnet", "elektromagnetik", "elektromagnetisme", "elektrometalurgi", "elektromiografi", "elektromotif", "elektron", "elektronegatif", "elektronik", "elektronika", "elektronis", "elektropatologi", "elektropositif", "elektroskop", "elektrostatika", "elektroteknik", "elektroterapeutika", "elektroterapi", "elektrotipe", "elektrum", "elemen", "elementer", "elemi", "eleng", "elevasi", "elevator", "eliksir", "eliminasi", "eliminir", "eling", "elips", "elipsis", "elipsoid", "elipsometer", "elipsometri", "eliptis", "elite", "elitis", "elitron", "elo", "elok", "elokuensi", "elon", "elongasi", "elpiji", "eltor", "elu", "eluat", "eluen", "elung", "elus", "elusi", "elusian", "elusif", "elutriasi", "eluvial", "eluviasi", "eluvium", "email", "emanasi", "emang", "emansipasi", "emas", "emaskulasi", "emat", "embacang", "embah", "embak", "embal", "embalase", "embalau", "emban", "embar", "embara", "embarau", "embargo", "embarkasi", "embaru", "embat", "embek", "embel", "ember", "embih", "embik", "emblem", "embok", "embol", "emboli", "embolisme", "embolus", "embosur", "embrat", "embrio", "embriogenesis", "embriologi", "embrionik", "embuai", "embuh", "embun", "embung", "embus", "embut", "emendasi", "emeraldin", "emeritus", "emetik", "emetina", "emfisema", "emigran", "emigrasi", "eminen", "eminensi", "emir", "emirat", "emis", "emisi", "emisivitas", "emitans", "emiten", "emoh", "emol", "emolumen", "emong", "emosi", "emosional", "emosionalisme", "emotif", "empal", "empang", "empap", "empar", "empas", "empat", "empati", "empedal", "empedu", "empek", "empela", "empelas", "empenak", "empeng", "emper", "empet", "empiema", "empik", "emping", "empiri", "empiris", "empirisme", "emplasemen", "emplek", "employe", "empo", "empoh", "empok", "emporium", "empos", "empot", "emprak", "empu", "empuan", "empuk", "empul", "empulur", "empunya", "emrat", "emulasi", "emulator", "emulsi", "emulsifikasi", "emut", "enak", "enam", "enamel", "enap", "enartrosis", "enas", "enau", "encal", "encang", "enceh", "encek", "encel", "encer", "encik", "encim", "encit", "encok", "encot", "endak", "endal", "endang", "endap", "endas", "endasan", "endemi", "endemis", "endilau", "endoderm", "endoderma", "endodermis", "endofit", "endogami", "endogen", "endokardia", "endokrin", "endokrinologi", "endolimfa", "endometriosis", "endometrium", "endomiksis", "endomiokarditis", "endomisium", "endon", "endong", "endoparasit", "endoplasma", "endorfin", "endosemen", "endosentris", "endoskeleton", "endoskop", "endoskopi", "endosmosis", "endosperma", "endotel", "endoterm", "endotermal", "endotermis", "endotoksin", "endrin", "enduk", "endul", "enduro", "endus", "endut", "enek", "eneng", "energetik", "energi", "energik", "enes", "enfitotik", "engah", "engap-engap", "engas", "enggak", "enggan", "enggang", "engget", "enggil", "enggok", "engkah", "engkak", "engkang", "engkau", "engket-engket", "engkoh", "engkol", "engkong", "engku", "engkuk", "engsel", "enigma", "enjak", "enjal", "enjambemen", "enjelai", "enjin", "enjut", "enkapsulasi", "enklave", "enklitik", "enkode", "enkripsi", "enkulturasi", "enologi", "enom", "ensambel", "ensefalitis", "ensefalitogen", "ensefalograf", "ensefalografi", "ensefalogram", "ensefalomielitis", "ensefalon", "ensiform", "ensiklik", "ensiklopedia", "ensiklopedis", "ensopor", "entah", "entak", "entalpi", "entar", "entas", "ente", "enten", "enteng", "entente", "enteritis", "enterograf", "enterologi", "enteron", "enteropati", "enterosel", "enterostomi", "enterotoksin", "enterovirus", "entit", "entitas", "entoderm", "entogenus", "entok", "entomofili", "entomolog", "entomologi", "entong", "entot", "entozoa", "entozoik", "entre", "entrepot", "entri", "entropi", "enukleasi", "enumerasi", "enuresis", "envoi", "enyah", "enyak", "enzim", "enzimolisis", "enzimologi", "enzootik", "eolit", "eon", "eosen", "eosin", "eozoikum", "epak", "epek", "epentesis", "epibentos", "epidemi", "epidemiologi", "epidermis", "epidiaskop", "epifaring", "epifil", "epifiotik", "epifisis", "epifit", "epifiton", "epifora", "epigastrium", "epigenesis", "epiglotis", "epigon", "epigraf", "epigrafi", "epigram", "epik", "epikotil", "epikuris", "epilepsi", "epileptik", "epilog", "epimisium", "epinasti", "epinefrina", "epinurim", "episentrum", "episiklik", "episiotomi", "episkopal", "episkopat", "episode", "episodik", "epispora", "epistaksis", "epistel", "epistemologi", "epistola", "epitaf", "epitaksi", "epitel", "epitelioma", "epitermal", "epitet", "epizoik", "epizootik", "epok", "epoksi", "epolet", "eponim", "epos", "epsilon", "era", "eradikasi", "eradiksi", "erak", "eram", "erang", "erat", "erata", "erbis", "erbium", "ercis", "ereh", "erek-erek", "ereksi", "erektor", "ereng", "erepsin", "eret", "erg", "ergasiofit", "ergonomi", "ergonomika", "ergonomis", "ergosterol", "ergot", "ergoterapi", "erik", "ering", "erisipelas", "eritema", "eritroblas", "eritrosit", "erong", "eror", "erosentrisme", "erosi", "erot", "erotik", "erotika", "erotis", "erotisisme", "erotisme", "erpah", "erpak", "erti", "eru", "erupsi", "es", "esa", "esai", "esais", "esak", "esek", "eselon", "esembling", "esens", "esensi", "esensial", "esensialitas", "eskader", "eskadron", "eskalasi", "eskalator", "eskapisme", "eskas", "eskatologi", "eskatologis", "esofagus", "esok", "esot", "esoteris", "estafet", "ester", "estesia", "estetik", "estetika", "estetikus", "estetis", "estimasi", "estriol", "estrogen", "estron", "estrus", "estuari", "estuarin", "eta", "etalase", "etana", "etanol", "etape", "etatisme", "etek", "eter", "eteris", "eternit", "etik", "etika", "etiket", "etil", "etilena", "etimologi", "etimologis", "etimon", "etiolin", "etiologi", "etis", "etmoid", "etnik", "etnis", "etnobotani", "etnograf", "etnografi", "etnografis", "etnolinguistik", "etnolog", "etnologi", "etnologis", "etnomusikolog", "etnomusikologi", "etnopolitik", "etnosentrisme", "etologi", "etos", "etsa", "eudaemonisme", "eufemisme", "eufemistis", "eufoni", "eufonium", "euforia", "euforian", "eugenetika", "eugenika", "eugenol", "eukaliptol", "eukaliptus", "eukarion", "eukariota", "eulogi", "euploid", "eurasia", "eurihalin", "europium", "eurosentris", "euseksual", "eusinantropus", "eutanasia", "eutektik", "eutenika", "eutrofikasi", "evakuasi", "evaluasi", "evaluatif", "evangeli", "evangelis", "evaporasi", "evaporator", "evaporimeter", "evapotranspirasi", "eversi", "eviden", "eviserasi", "evokasi", "evokatif", "evolusi", "evolusioner", "evolusionisme", "ewa", "eyang", "eyel", "faal", "faali", "fabel", "fabula", "faden", "fadihat", "fadil", "fadilat", "faedah", "fafa", "fagosit", "fagositosis", "fagot", "fahombe", "fahrenheit", "fahsya", "fail", "fajar", "fakih", "fakir", "faks", "faksi", "faksimile", "fakta", "faktif", "faktitius", "faktor", "faktual", "faktur", "fakultas", "fakultatif", "falah", "falaj", "falak", "falakiah", "falsafah", "falsafi", "fam", "famili", "familia", "familier", "familiisme", "familisme", "fana", "fanatik", "fanatisme", "fanfare", "fani", "fantasi", "fantastis", "fantom", "farad", "faraid", "faraj", "farak", "fardu", "farik", "faring", "faringal", "faringalisasi", "faringitis", "farisi", "farji", "farmakodinamika", "farmakokinetika", "farmakolog", "farmakologi", "farmakologis", "farmakope", "farmakoseutika", "farmasi", "farsakh", "fasad", "fasakh", "fase", "faset", "fasia", "fasid", "fasih", "fasihat", "fasik", "fasilitas", "fasilitator", "fasis", "fasisme", "fastabikhulkhairat", "fatah", "fatal", "fatala", "fatalis", "fatalisme", "fatalitas", "fatamorgana", "fatanah", "fatihah", "fatimah", "fatir", "fatom", "fatometer", "fatri", "fatsun", "fatur", "fatwa", "fauna", "faunistik", "favorit", "favoritisme", "febrin", "februari", "federal", "federalis", "federalisme", "federalistis", "federasi", "feko", "fekundasi", "fekunditas", "felon", "felspar", "feminin", "feminisme", "fenakit", "fengsui", "fenit", "fenol", "fenologi", "fenomena", "fenomenal", "fenomenalisme", "fenomenologi", "fenosis", "fenotipe", "feodal", "feodalisme", "feodalistis", "feral", "feri", "feritin", "fermen", "fermentasi", "fermion", "fermium", "feromagnetik", "feromagnetisme", "feromon", "feronikel", "fertil", "fertilasi", "fertilisasi", "fertilitas", "fertilizin", "ferum", "feses", "festival", "fetis", "fetor", "fetus", "fiasko", "fiat", "fiber", "fibrasi", "fibriblas", "fibril", "fibrilasi", "fibrin", "fibrinogen", "fibrokistik", "fidah", "fider", "fidiah", "fidusia", "fidyah", "figur", "figuran", "figuratif", "fiil", "fikih", "fikli", "fikologi", "fikrah", "fiksasi", "fiksi", "fiktif", "fikus", "filamen", "filantrop", "filantropi", "filantropis", "filaria", "filariasis", "filateli", "filatelik", "filatelis", "filharmoni", "filial", "filibuster", "film", "filmis", "filo", "filodendron", "filogenesis", "filogeni", "filolog", "filologi", "filologis", "filopur", "filosof", "filosofi", "filosofis", "filsafat", "filsuf", "filter", "filtrasi", "filtrat", "filum", "fimbria", "final", "finansial", "finir", "finis", "fiolaks", "firajullah", "firasat", "firauniah", "firdaus", "firdausi", "firjatullah", "firkah", "firma", "firman", "firn", "fisi", "fisibel", "fisibilitas", "fisik", "fisika", "fisiognomi", "fisiognomis", "fisiologi", "fisiologis", "fisioterapi", "fisis", "fiskal", "fit", "fiting", "fitnah", "fitofag", "fitofogus", "fitogeni", "fitogeografi", "fitokimia", "fitologi", "fitometer", "fiton", "fitopatologi", "fitosanitasi", "fitososiologi", "fitosterol", "fitostrot", "fitotoksin", "fitotoksoid", "fitotopografi", "fitotron", "fitrah", "fitri", "flakon", "flamboyan", "flamingo", "flanel", "flat", "flegma", "flegmatis", "fleksi", "fleksibel", "fleksibilitas", "fleksor", "flensa", "flip-plop", "flis", "floem", "flop", "flora", "floret", "flotasi", "flotet", "flu", "fluensi", "fluida", "fluks", "fluktuasi", "fluktuatif", "fluor", "fluoresen", "fluoresens", "fluorin", "fluorit", "fobia", "fokimeter", "fokstrot", "fokus", "folder", "foli", "folikel", "folio", "folklor", "folksong", "fon", "fonasi", "fondamen", "fondasi", "fonds", "fonem", "fonemik", "fonemis", "fonetik", "fonetis", "fonik", "fonis", "fonograf", "fonografi", "fonologi", "fonologis", "fonon", "fonotaktik", "fonotipi", "foramen", "foraminifera", "forensik", "forklif", "forma", "formal", "formalin", "formalistis", "formalitas", "forman", "formasi", "format", "formatif", "formatir", "formatur", "formika", "formula", "formulasi", "formulator", "formulir", "fornifikasi", "fornikasi", "forsep", "forsir", "forsit", "forte", "fortifikasi", "fortin", "forum", "fosfat", "fosfina", "fosfit", "fosfor", "fosforesens", "fosforilase", "fosforus", "fosgen", "fosil", "foto", "fotodiode", "fotoelektron", "fotoemisi", "fotogenik", "fotograf", "fotografer", "fotografi", "fotografis", "fotograver", "fotogravur", "fotokimia", "fotokonduksi", "fotokonduktivitas", "fotokonduktor", "fotokopi", "fotokromi", "fotokromik", "fotolisis", "fotolitografi", "fotometer", "fotometri", "fotomikrografi", "fotomodel", "foton", "fotoperiodisme", "fotosel", "fotosfer", "fotosintesis", "fotostat", "fototaksis", "fototropis", "fototustel", "fovea", "foya", "fragmen", "fragmentaris", "fragmentasi", "fraksi", "fraksinasi", "fraktur", "fraktus", "frambusia", "fransium", "frasa", "frase", "fraseologi", "frater", "fraternitas", "freatofit", "fregat", "frekuen", "frekuensi", "frekuentatif", "frenologi", "freon", "frib", "frigid", "frigorigraf", "frigorimeter", "frikatif", "friksi", "fron", "front", "frontal", "fruktosa", "frustrasi", "fuad", "fugasitas", "fujur", "fukaha", "fukara", "fuksina", "fulgurit", "fuli", "fulminat", "fulus", "fumarol", "fumigan", "fumigasi", "fumigator", "fundamen", "fundamental", "fundamentalis", "fundamentalisme", "fundamentalistis", "fungi", "fungibel", "fungisida", "fungistatik", "fungoid", "fungsi", "fungsional", "fungsionalisasi", "fungsionalisme", "fungsionalitas", "fungsionaris", "fungus", "furfural", "furkan", "furnitur", "furqan", "furuk", "fusi", "fusta", "fusuk", "futual", "futur", "futurisme", "futuristik", "futuristis", "futurolog", "futurologi", "futurologis", "fyord", "gaba-gaba", "gabah", "gabai", "gabak", "gabardin", "gabas", "gabir", "gableg", "gablek", "gabor", "gabro", "gabruk", "gabuk", "gabung", "gabus", "gaco", "gacok", "gacong", "gada", "gadai", "gadamala", "gadang", "gading", "gadis", "gado", "gadolinit", "gadolinium", "gadon", "gaduh", "gaduk", "gadung", "gadungan", "gaek", "gaet", "gafar", "gaflah", "gaflat", "gaftar", "gafur", "gaga", "gagah", "gagai", "gagak", "gagal", "gagang", "gagap", "gagas", "gagau", "gagu", "gaguk", "gah", "gaham", "gahar", "gahara", "gahari", "gaharu", "gai", "gaib", "gail", "gain", "gaing", "gairah", "gait", "gajah", "gajak", "gaji", "gajih", "gajul", "gajus", "gakang", "gakari", "gala", "galaba", "galaganjur", "galagasi", "galah", "galai", "galak", "galaksi", "galaktometer", "galaktorea", "galaktosa", "galaktosemia", "galaktosuria", "galan", "galang", "galanggasi", "galar", "galas", "galat", "galau", "galbani", "galeng", "galeri", "galgal", "gali", "galias", "galib", "galibut", "galih", "galiot", "galir", "galium", "galiung", "galon", "galu-galu", "galuh", "galung", "galungan", "galur", "galvanis", "galvanisasi", "galvanometer", "galvanometri", "galvanoskop", "galyas", "gam", "gama", "gamak", "gamal", "gamalisasi", "gamam", "gaman", "gamang", "gamat", "gambang", "gambar", "gambas", "gambir", "gamblang", "gambling", "gambuh", "gambus", "gambut", "gambyong", "gamelan", "gamet", "gametangium", "gametofit", "gametogenesis", "gametosit", "gamik", "gamis", "gamit", "gamma", "gamopetal", "gamosepal", "gampang", "gampar", "gamparan", "gamping", "gamuh", "gana", "gana-gini", "ganal", "ganang", "ganar", "ganas", "gancang", "gancar", "ganco", "gancu", "ganda", "gandal", "gandapura", "gandar", "gandaria", "gandarukem", "gandarusa", "gandarwa", "gandasturi", "gandasuli", "gandek", "gandem", "ganden", "gandeng", "gandes", "gandewa", "gandi", "gandik", "gandin", "ganding", "gandok", "gandola", "gandos", "gandringan", "gandrung", "gandu", "ganduh", "gandul", "gandum", "gandung", "gang", "ganggam", "ganggang", "ganggu", "ganggut", "ganglion", "gangsa", "gangsal", "gangsar", "gangsi", "gangsir", "gangster", "gani", "ganih", "ganimah", "ganja", "ganjak", "ganjal", "ganjar", "ganjat", "ganjen", "ganjil", "ganjing", "ganjling", "ganjur", "ganoid", "gantal", "gantang", "gantar", "gantel", "ganteng", "ganti", "gantih", "gantilan", "ganting", "gantol", "gantole", "gantung", "ganyah", "ganyang", "ganyar", "ganyong", "ganyut", "gaok", "gap", "gapah", "gapah-gopoh", "gapai", "gapil", "gapit", "gaple", "gaplek", "gaplok", "gapuk", "gapura", "gar", "gara-gara", "garah", "garai", "garam", "garan", "garang", "garangan", "garansi", "garap", "garasi", "garau", "garba", "garbarata", "garbis", "garda", "gardan", "gardu", "garebek", "gari", "garib", "garindin", "garing", "garis", "garit", "garizah", "garmen", "garnet", "garnis", "garnisun", "garong", "garpu", "garu", "garuda", "garuk", "garung", "garut", "garwa", "gas", "gasab", "gasak", "gasal", "gasang", "gasatrin", "gasifikasi", "gasing", "gasket", "gasolin", "gasometer", "gaster", "gastrektomi", "gastrin", "gastritis", "gastroenteritis", "gastroenterolog", "gastroenterologi", "gastrointestinal", "gastronomi", "gastrula", "gastrulasi", "gatal", "gatot", "gatra", "gatrik", "gatuk", "gauk", "gaukang", "gaul", "gaun", "gaung", "gaut", "gawai", "gawal", "gawan", "gawang", "gawar", "gawat", "gawir", "gaya", "gayal", "gayam", "gayang", "gayat", "gayau", "gayem", "gayeng", "gayuh", "gayuk", "gayun", "gayung", "gayut", "gaz", "gazal", "gebah", "gebang", "gebar", "gebeng", "geber", "geblak", "geblek", "geblok", "gebogan", "gebok", "gebos", "gebot", "gebrak", "gebu", "gebuk", "gebung", "gebyah-uyah", "gebyar", "gebyur", "gecar", "gecek", "gecer", "gecul", "gedabah", "gedana-gedini", "gedang", "gede", "gedebak-gedebuk", "gedebar-gedebur", "gedebeg", "gedebok", "gedebuk", "gedebung", "gedek", "gedembai", "gedembal", "gedempol", "gedeng", "gedi", "gedik", "gedok", "gedombak", "gedombrongan", "gedong", "gedor", "gedubang", "gedung", "geduyut", "gegabah", "gegadan", "gegai", "gegak", "gegala", "gegaman", "gegana", "gegaokan", "gegap", "gegar", "gegares", "gegas", "gegat", "gegau", "gegep", "geger", "gegetar", "gegetun", "gegisik", "gegua", "geiger", "geiser", "gejah", "gejala", "gejolak", "gejos", "gejuju", "gel", "gela", "gelabah", "gelabir", "gelabur", "geladak", "geladeri", "geladi", "geladir", "geladrah", "gelagah", "gelagap", "gelagar", "gelagat", "gelak", "gelakak", "gelalar", "gelam", "gelama", "gelamai", "gelambir", "gelandang", "gelandot", "gelang", "gelanggang", "gelangsar", "gelantang", "gelanting", "gelantung", "gelap", "gelapung", "gelar", "gelas", "gelasak", "gelasir", "gelatak", "gelatik", "gelatin", "gelatuk", "gelayangan", "gelayar", "gelayut", "gelebah", "gelebap", "gelebar", "geleber", "gelebuk", "geleca", "gelecik", "geledah", "geledang", "geledek", "geleding", "geledur", "gelegah", "gelegak", "gelegar", "gelegata", "gelek", "gelekak", "gelekek", "gelema", "gelemat", "gelemberan", "gelembong", "gelembung", "gelembur", "gelempang", "gelemprang", "gelenang", "gelendo", "gelendong", "gelendot", "geleng", "gelenggang", "gelentang", "gelenting", "gelenyar", "gelepai", "gelepar", "gelepek", "gelepot", "gelepung", "gelepur", "geler", "gelesek", "geleser", "gelesot", "geleta", "geletak", "geletar", "geletek", "geletik", "geleting", "geletis", "geletuk", "geli", "geliang", "geliat", "gelibir", "gelicik", "geliga", "geligi", "geligin", "geligis", "geligit", "gelignit", "gelimang", "gelimantang", "gelimbir", "gelimir", "gelimpang", "gelimun", "gelincir", "gelincuh", "gelinding", "gelinggam", "gelinggaman", "gelinggang", "gelingsir", "gelinjang", "gelintang", "gelintar", "gelintin", "gelinting", "gelintir", "gelipar", "gelisah", "gelita", "gelitar", "gelitik", "gelo", "gelobak", "gelobok", "gelocak", "gelodar", "gelodok", "gelogok", "gelohok", "gelojoh", "gelomang", "gelombang", "gelompar", "gelondong", "geloneng", "gelonggong", "gelongsor", "gelontor", "gelopak", "gelora", "gelosang", "geloso", "gelosok", "gelotak", "geluduk", "geluga", "gelugu", "gelugur", "gelugut", "geluh", "geluk", "gelulur", "gelumang", "gelumat", "geluncur", "gelundung", "gelung", "gelup", "gelupur", "gelut", "gema", "gemah", "gemak", "gemal", "geman", "gemang", "gemap", "gemar", "gemas", "gemaung", "gemawan", "gembak", "gembala", "gembar-gembor", "gembel", "gembeng", "gembil", "gembili", "gembira", "gemblak", "gembleng", "gemblong", "gemblung", "gembok", "gembol", "gembolo", "gembong", "gembor", "gembos", "gembreng", "gembrot", "gembul", "gembung", "gembur", "gembus", "gembut", "gemebyar", "gemelentam", "gemeletak", "gemeletap", "gemeletek", "gemeletuk", "gemelugut", "gementam", "gementar", "gemercak", "gemercik", "gemerencang", "gemerencik", "gemerencing", "gemerencung", "gemeresak", "gemeresik", "gemeretak", "gemeretuk", "gemeretup", "gemerlap", "gemertak", "gemertuk", "gemerusuk", "gemetar", "gemi", "gemik", "gemilang", "gemilap", "geming", "gemini", "gemintang", "geminte", "gemirang", "gempa", "gempal", "gempar", "gempil", "gempita", "gempol", "gempor", "gempul-gempul", "gempur", "gemrobyos", "gemuk", "gemul", "gemulai", "gemulung", "gemuntur", "gemuruh", "gen", "gena", "genah", "genahar", "genang", "genap", "gencar", "gencat", "gencel", "gencer", "gencet", "gencir", "gendak", "gendala", "gendam", "gendang", "gendar", "gendarmeri", "gendeng", "gender", "genderang", "genderuwo", "gendewa", "gending", "gendis", "gendon", "gendong", "genduk", "gendut", "genealogi", "genealogis", "genegin", "geneng", "generalis", "generalisasi", "generalisimo", "generasi", "generatif", "generator", "generik", "genesis", "genetika", "genetis", "geng", "genggam", "genggang", "genggong", "gengsah", "gengsi", "gengsot", "genial", "genialitas", "genikulum", "genis", "genit", "genital", "genitalia", "genitif", "genius", "genjah", "genjang", "genjang-genjot", "genjer", "genjik", "genjot", "genjrang", "genjring", "genjur", "genom", "genosida", "genotipe", "genre", "genta", "gentala", "gentar", "gentas", "gentat", "gentayang", "gentel", "genteng", "gentian", "genting", "gentong", "gentrifikasi", "gentur", "gentus", "genus", "genyot", "geobotani", "geodesi", "geofisika", "geofisis", "geofon", "geognosi", "geografi", "geografis", "geohidrologi", "geokimia", "geokronologi", "geolog", "geologi", "geologis", "geomansi", "geometri", "geometris", "geomorfologi", "geonomi", "geopolitik", "geosentris", "geosinkronis", "geostasioner", "geostatika", "geoteknik", "geoteknologi", "geotermal", "geotermi", "geotermometer", "gepeng", "gepit", "geplak", "gepok", "geprak", "gepuk", "gera", "gerabah", "gerabak", "gerabang", "geradi", "geragai", "geragap", "geragas", "geragau", "geragih", "geragot", "geraguk", "gerah", "geraham", "gerai", "gerak", "geram", "geraman", "geramang", "geramsut", "geramus", "gerang", "gerangan", "geranggang", "geranium", "gerantak", "gerantang", "geranyam", "gerapai", "gerapu", "gerat", "geratak", "geratih", "gerau", "gerawan", "gerawat", "gerayah", "gerayang", "gerbak", "gerbang", "gerbas-gerbus", "gerbera", "gerbong", "gerbus", "gerda", "gerdam", "gerdan", "gerdum", "gerebek", "gerecak", "gerecok", "gereget", "gereh", "gereja", "gerejani", "gerejawi", "gerek", "geremet", "gerempang", "gerencang", "gerendel", "gerendeng", "gerenek", "gereneng", "gereng-gereng", "gerengseng", "gerenik", "gerenjeng", "gerenjet", "gerentang", "gerenyau", "gerenyeng", "gerenyet", "gerenying", "gerenyit", "gerenyot", "gerepe", "gerepek", "gerepes", "geresek", "geret", "geretak", "geretang", "gergaji", "gergajul", "gergasi", "gergeran", "gerha", "gerhana", "geriak", "geriak-geriuk", "geriap", "geriatrik", "geribik", "gericau", "geridip", "geridit", "geriditpidit", "gerigi", "gerigik", "gerigis", "gerih", "gerik", "gerilya", "gerim", "gerimis", "gerincing", "gerinda", "gerindin", "gerinding", "gering", "geringging", "geringgingan", "geringsing", "gerinjal", "gerinjam", "gerinting", "gerinyau", "gerip", "geripir", "geripis", "gerisik", "gerising", "gerit", "geriuk", "gerlap", "gerlip", "germang", "germanium", "germinal", "germisida", "germo", "germut", "gero", "geroak", "gerobak", "gerobok", "gerobyak", "gerocok", "gerodak", "gerogol", "gerogot", "gerohok", "gerohong", "gerojok", "gerombol", "gerombong", "gerompok", "gerong", "geronggang", "geronium", "gerontokrasi", "gerontol", "gerontologi", "geronyot", "geropes", "geropyok", "geros", "gerosak", "gerot-gerot", "gerowong", "gerowot", "gerpol", "gersak", "gersang", "gersik", "gertak", "gertik", "gertuk", "geru", "gerugut", "geruh", "geruit", "gerumit", "gerumpung", "gerumuk", "gerumut", "gerun", "gerundang", "gerundel", "gerung", "gerunggung", "gerunyam", "gerup", "gerupis", "gerupuk", "gerus", "gerut", "gerutu", "gerutup", "gerutus", "gesa", "gesek", "gesel", "geser", "gesit", "gesper", "gestikulasi", "geta", "getah", "getak-getuk", "getang", "getap", "getar", "getas", "getek", "getem-getem", "geti-geti", "getik", "getil", "getir", "getis", "getok", "getol", "getu", "getuk", "getun", "geulis", "gewang", "gial", "giam", "giat", "gibah", "gibang", "gibas", "giblet", "gibtah", "gidik", "gigahertz", "gigantisme", "gigi", "gigih", "gigil", "gigir", "gigis", "gigit", "gigolo", "gila", "gilang", "gilap", "gilas", "gilbet", "gili", "gilik", "giling", "gilir", "gim", "gimbal", "gimnasium", "gimnastik", "gimpal", "gin", "ginang", "gincu", "ginding", "ginekolog", "ginekologi", "ginekomasti", "ginesium", "gingivitis", "ginglimus", "gingsir", "gingsul", "ginjal", "ginjean", "ginkang", "ginogenesis", "ginseng", "gips", "gipsi", "gir", "girah", "giral", "girang", "girap-girap", "giras", "girasol", "giri", "girik", "girikan", "giring", "giris", "giro", "giroskop", "girostat", "girostatika", "gisar", "gisik", "gisil", "gita", "gitapati", "gitar", "gitaris", "gites", "gitik", "gitok", "giuk", "giur", "giwang", "gizi", "glabela", "gladiator", "gladiol", "glamor", "glandula", "glans", "glasial", "glasir", "glasnos", "glaukoma", "glegek", "glenik", "glenoid", "gletser", "glidik", "glikogen", "glikogenesis", "glikogenolisis", "glikol", "glikolisis", "glikosid", "glikosida", "glikosidasa", "glikosidase", "glikosuria", "gliserida", "gliserol", "global", "globalisasi", "globalisme", "globe", "globulin", "globus", "glokidium", "glomerulus", "glomus", "glosarium", "glosem", "glosematik", "glositas", "glositis", "glotal", "glotalisasi", "glotis", "glukagon", "glukosa", "glukosan", "glukosida", "gluten", "gnomon", "goak", "gob", "goba", "gobak", "gobang", "gobar", "gobek", "gobet", "goblok", "gocap", "gocek", "gocoh", "goda", "godak", "godam", "godek", "godok", "godong", "godot", "goel", "gogoh", "gogok", "gogos", "gogrok", "gohok", "gohong", "gojek", "gojlok", "gokar", "gol", "golak", "golak-galik", "golbi", "golek", "goleng", "goler", "golf", "golok", "golong", "golput", "gom", "gombak", "gombal", "gombang", "gombeng", "gombrang", "gombroh", "gombyok", "gompal", "gompiok", "gonad", "gondang", "gondas-gandes", "gondok", "gondol", "gondola", "gondong", "gondorukem", "gondrong", "gong", "gonggo", "gonggok", "gonggong", "gongli", "gongseng", "gongyo", "goni", "gonidium", "goniometri", "gonjak", "gonjang", "gonjang-ganjing", "gonjing", "gonjlang", "gonjlang-ganjling", "gonjok", "gonjong", "gonokokus", "gonore", "gonrang", "gontaganti", "gontai", "gontok", "gonyak", "gonyeh", "gonyel", "gonyoh", "gopek", "gopoh", "gorap", "gorden", "gorek", "goreng", "gores", "gori", "gorila", "gorilya", "goroh", "gorok", "gorong-gorong", "gosan", "gosip", "gosok", "gosong", "gospel", "got", "gotes", "gotik", "gotong", "gotri", "gotrok", "gotun", "gowok", "goyah", "goyak", "goyang", "grabadan", "grad", "gradasi", "gradien", "gradual", "gradualisme", "graf", "grafem", "grafemik", "grafemis", "grafetik", "grafik", "grafika", "grafis", "grafit", "grafitasi", "grafolog", "grafologi", "graha", "grahita", "gram", "gramatika", "gramatikal", "grambyang", "gramofon", "granat", "granit", "granolitik", "granula", "granulasi", "granulosit", "grapyak", "grasi", "gratak", "gratifikasi", "gratis", "gravel", "graver", "gravimeter", "gravitas", "gravitasi", "grecok", "gregarius", "grehon", "grempel", "gres", "gresek-gresek", "gria", "grip", "griya", "grogi", "gronjong", "gros", "grosir", "grup", "gruwung", "gua", "gual", "guam", "guanidina", "guanin", "guanina", "guano", "guar", "gubah", "gubal", "gubang", "gubel", "gubernemen", "gubernur", "gubit", "gubris", "gubuk", "guci", "gudam", "gudang", "gudangan", "gude", "gudeg", "guderi", "gudi", "gudik", "gudu-gudu", "gue", "gugah", "gugat", "gugu", "guguh", "guguk", "gugup", "gugur", "gugus", "guit", "gujirak", "gujirat", "gukakas", "gul", "gula", "gulah", "gulai", "gulali", "gulam", "gulambai", "gulana", "gulang-gulang", "gulat", "guli", "guliga", "guling", "gulir", "gulita", "gulma", "gulud", "gulung", "gulut", "gum", "guma", "gumal", "gumam", "gumba", "gumbaan", "gumbang", "gumbar", "gumboro", "gumbuk", "gumebruk", "gumelaran", "gumpal", "gumpil", "gumuk", "gumul", "gumun", "gun", "guna", "gunawan", "guncang", "gunci", "gundah", "gundal", "gundala", "gundang", "gundar", "gundi", "gundik", "gundu", "gunduk", "gundul", "gung", "gunggung", "gunjai", "gunjing", "gunolugu", "gunrit", "gunseikan", "guntai", "guntak", "guntang", "guntil", "gunting", "guntung", "guntur", "gunung", "gunyam", "gup", "gurab", "gurah", "guram", "gurami", "gurat", "gurau", "gurdan", "gurdi", "guri", "gurih", "gurik", "gurindam", "guring", "gurit", "gurita", "gurnadur", "guru", "gurub", "guruh", "guruk", "gurun", "gurung", "gurur", "gus", "gusah", "gusar", "gusel", "gusi", "gusrek", "gusti", "gusul", "gusur", "gutasi", "gutik", "gutuk", "guyon", "guyub", "guyur", "habenula", "habib", "habibi", "habibulah", "habibullah", "habis", "habitat", "habituasi", "habitus", "habluk", "hablun", "hablur", "habsyi", "habuan", "habuk", "habung", "had", "hadanah", "hadap", "hadas", "hadat", "hadiah", "hadir", "hadirat", "hadirin", "hadis", "hadron", "hafal", "hafiz", "hafnium", "hagiografi", "hahnium", "hai", "haid", "haik", "haiking", "haiku", "hail", "hailai", "haj", "hajah", "hajar", "hajat", "haji", "hajib", "hajim", "hajis", "hak", "hakaik", "hakam", "hakikat", "hakiki", "hakim", "hakimah", "hakul", "hakulah", "hakulyakin", "hal", "hala", "halai-balai", "halaik", "halakah", "halal", "halalbihalal", "halaman", "halang", "halau", "halazon", "halba", "haleluya", "halia", "halilintar", "halim", "halimbubu", "halimun", "halimunan", "halipan", "halitosis", "halkah", "halma", "halo", "halobion", "halofili", "halofit", "halofita", "halofob", "halogen", "halogenasi", "halotan", "halsduk", "halte", "halter", "haluan", "halus", "halusinasi", "halusinogen", "halwa", "ham", "hama", "hamal", "hamatum", "hamba", "hambali", "hambar", "hambat", "hambur", "hamburger", "hamdalah", "hamdu", "hamik", "hamil", "haminte", "hampa", "hampang", "hampar", "hampir", "hamud", "hamulus", "hamun", "hamzah", "hana", "hanacaraka", "hanafi", "hancing", "hancur", "handai", "handam", "handaruan", "handasah", "handelar", "handuk", "hang", "hangar", "hangat", "hanger", "hanggar", "hangit", "hangus", "hanif", "hanjuang", "hansop", "hantai", "hantam", "hantap", "hantar", "hantir", "hantu", "hanya", "hanyut", "hap", "hapetan", "haplografi", "haploid", "haplologi", "hapus", "hara", "harak", "harakah", "harakat", "harakiri", "haram", "harap", "harawan", "harbi", "hardik", "harem", "harendong", "harfiah", "harga", "hari", "haribaan", "harimau", "haring", "harini", "haris", "harisah", "harit", "harkat", "harmoni", "harmonik", "harmonika", "harmonis", "harmonisasi", "harmonium", "harnet", "harpa", "harpis", "harpun", "hart", "harta", "hartal", "haru", "haruan", "harum", "harungguan", "harus", "has", "hasab", "hasad", "hasai", "hasan", "hasar", "hasib", "hasid", "hasil", "hasrat", "hasta", "hasta-wara", "hasud", "hasut", "hasyiah", "hasyis", "hati", "hatif", "hatta", "hatur", "haud", "haudah", "haukalah", "haul", "haur", "hauri", "haus", "haustorium", "haver", "hawa", "hawar", "hawari", "hawiah", "hayat", "hayati", "hayo", "heban", "hebat", "heboh", "hebras", "hebring", "hedonis", "hedonisme", "hegelianisme", "hegemoni", "hegemonik", "hegemonisme", "hegemonnisme", "heiho", "heksadesimal", "heksagon", "heksahedron", "heksaklorida", "heksameter", "heksana", "heksapoda", "hektar", "hektare", "hektograf", "hektogram", "hektoliter", "hektometer", "hela", "helah", "helai", "helat", "helicak", "helikopter", "heling", "heliofit", "heliofobi", "heliograf", "heliogram", "heliometer", "heliosentrik", "helioskop", "heliotaksis", "helioterapi", "heliotrop", "heliotropisme", "helipad", "helium", "helm", "helmintologi", "hem", "hemat", "hematit", "hematite", "hematofobia", "hematologi", "hematom", "hematometra", "hematuri", "hembak", "hembalang", "hembus", "hemeralopi", "hemikordat", "hemiplegia", "hemisfer", "hemodialisis", "hemofilia", "hemoglobin", "hemolisis", "hemopoiesis", "hemopteran", "hemoragi", "hemoroid", "hemosit", "hemositometer", "hemostasis", "hemostatik", "hempap", "hempas", "hendak", "hendam", "hendel", "heng", "hengit", "hengkang", "hening", "henoteisme", "henry", "hentar", "henti", "henyak", "hepar", "hepatitis", "heptagon", "heptahedron", "heptameter", "heptana", "heraldik", "heran", "herba", "herbarium", "herbisida", "herbivor", "herbivora", "herder", "hereditas", "herediter", "heregistrasi", "heresi", "hering", "hermafrodit", "hermafroditisme", "hermetis", "hernia", "hero", "heroik", "heroin", "heroisme", "herpes", "herpetolog", "herpetologi", "hertz", "hesperidin", "heterodin", "heterodoks", "heterofemi", "heterofil", "heterofit", "heterogamet", "heterogami", "heterogen", "heterogenitas", "heterograf", "heterografi", "heteroklitus", "heteronim", "heteronimi", "heteronomi", "heteroseksual", "heteroseksualitas", "heterosfer", "heterosiklis", "heterosis", "heterospora", "heterostili", "heterotrof", "heterozigot", "heuristis", "hewan", "hewani", "hia", "hialin", "hialit", "hias", "hiatus", "hibah", "hibal", "hibat", "hibernasi", "hibiskus", "hibob", "hibrida", "hibridis", "hibridisasi", "hibuk", "hibur", "hidang", "hidatod", "hidayah", "hidayat", "hidrasi", "hidrat", "hidraulik", "hidraulika", "hidraulis", "hidrida", "hidrodinamika", "hidrofili", "hidrofit", "hidrofobia", "hidrofoil", "hidrofon", "hidrogen", "hidrogenasi", "hidrogeologi", "hidrograf", "hidrografi", "hidrogram", "hidrokarbon", "hidroklorida", "hidrokori", "hidroksida", "hidroksil", "hidrolika", "hidrolisis", "hidrologi", "hidrometeorologi", "hidrometer", "hidrometri", "hidromini", "hidronan", "hidropati", "hidroperoksida", "hidroponik", "hidropsoma", "hidrosfer", "hidrosiklon", "hidroskop", "hidrostatika", "hidrostatis", "hidroterapi", "hidrotermal", "hidu", "hidung", "hidup", "hiena", "hierarki", "hierarkis", "hieroglif", "hifa", "higiene", "higienis", "higrograf", "higrogram", "higrometer", "higrometri", "higroskop", "higroskopis", "higrotermograf", "higrotermogram", "hijab", "hijaiah", "hijau", "hijrah", "hijriah", "hikayat", "hikmah", "hikmat", "hilal", "hilang", "hilap", "hilau", "hilir", "hilofagus", "himanga", "himar", "himen", "himenium", "himne", "himpun", "hina", "hinap", "hinayana", "hindar", "hindi", "hindu", "hinduisme", "hingga", "hinggap", "hinggut", "hio", "hiosiamina", "hiosin", "hip", "hipantium", "hiperaktif", "hiperamnesi", "hiperbarik", "hiperbol", "hiperbolis", "hiperemia", "hiperestesia", "hipergami", "hiperkelas", "hiperkinesis", "hiperklas", "hiperkorek", "hiperkritis", "hiperlipemia", "hipermetropia", "hiperon", "hiperopia", "hiperparasit", "hiperplasia", "hiperseks", "hiperseksual", "hipersensitif", "hipersonik", "hipersonika", "hipertensi", "hipertonik", "hipertradisional", "hipertrikosis", "hipertrofi", "hipervitaminosis", "hipnosis", "hipnoterapi", "hipnotis", "hipnotisme", "hipoblas", "hipodermis", "hipodermoklisis", "hipodrom", "hipofisis", "hipofremia", "hipogen", "hipoglikemia", "hipokondria", "hipokotil", "hipokrisi", "hipokrit", "hipokritis", "hipolimnion", "hipomastia", "hipomnesia", "hiponim", "hipopituitarisme", "hipoplankton", "hipoplasia", "hipopotamus", "hiposentrum", "hipotaksis", "hipotek", "hipotensi", "hipotenusa", "hipotermia", "hipotesis", "hipotetis", "hipotiroid", "hipotiroidisme", "hipotonik", "hipovitaminosis", "hipsometer", "hipui", "hirap", "hirau", "hirsutisme", "hiru-biru", "hiru-hara", "hirudin", "hiruk", "hirup", "his", "hisab", "histamina", "histerektomi", "histeria", "histeris", "histerisis", "histidina", "histogeni", "histokimia", "histologi", "histon", "histopatologi", "histori", "historikus", "historiografi", "historis", "historisisme", "historisitas", "hit", "hitam", "hitung", "hiu", "hiyayat", "hobat", "hobi", "hobo", "hodadoda", "hodah", "hodometer", "hoi", "hokah", "hoki", "hol", "holi", "holisme", "holistis", "holmium", "holobentos", "holoenzim", "holofit", "holofitik", "holofrasis", "hologamet", "hologami", "holograf", "holografis", "hologram", "holokrim", "holokrin", "holoplankton", "holosen", "holozoik", "homeostasis", "homili", "hominid", "hominoid", "homo", "homofon", "homofoni", "homogami", "homogen", "homogeni", "homogenitas", "homograf", "homografi", "homogram", "homoiotermal", "homolog", "homologi", "homonim", "homonimi", "homorgan", "homoseks", "homoseksual", "homoseksualisme", "homoseksualitas", "homosfer", "homospora", "homoterm", "homozigot", "honae", "honcoe", "honji", "honor", "honorarium", "honorer", "honorifik", "hop", "hopagen", "hopbiro", "hopkantor", "hopyes", "horak", "horas", "hore", "horizon", "horizontal", "hormat", "hormon", "hornblenda", "horor", "horoskop", "hortikultura", "hortikulturis", "hoskut", "hospital", "hostel", "hostes", "hosti", "hot", "hotel", "howitzer", "huakiau", "hubar", "hubaya-hubaya", "hububan", "hubulwatan", "hubung", "huda", "hudai", "hudhud", "hudud", "hufaz", "huh", "hujah", "hujaj", "hujan", "hujat", "huji", "hujin", "hujung", "hukah", "hukama", "hukum", "hula-hula", "hulam", "huler", "hulu", "hulubalang", "hulul", "hulur", "huma", "human", "humaniora", "humanis", "humanisasi", "humanisme", "humanistis", "humanitas", "humaniter", "humas", "humbalang", "humektan", "humerus", "humidifikasi", "humiditas", "humifikasi", "humin", "humor", "humoris", "humoristis", "humorolog", "humus", "hun", "huncue", "huni", "hunjam", "hunjuk", "hunkue", "hunus", "hura-hura", "hurah", "huria", "huriah", "hurikan", "huru-hara", "huruf", "hus", "husnulkhatimah", "hut", "hutan", "hutang", "huyung", "ialah", "iambus", "iatrogenik", "iba", "ibadah", "ibadat", "ibadurahman", "iban", "ibar-ibar", "ibarat", "ibayuh", "ibid", "ibidem", "ibing", "iblis", "ibni", "ibnu", "ibra", "ibrit", "ibtida", "ibtidaiah", "ibu", "ibul", "ibun", "ibunda", "ibung", "ibus", "icak-icak", "ida", "idafi", "idah", "idam", "idap", "idarah", "idas", "ide", "ideal", "idealis", "idealisasi", "idealisme", "idealistis", "idem", "identifikasi", "identik", "identitas", "ideofon", "ideograf", "ideografi", "ideografis", "ideogram", "ideologi", "ideologis", "ideosinkretik", "idep", "idiil", "idiolek", "idiom", "idiomatis", "idiomatologi", "idiosi", "idiosinkrasi", "idiosinkretik", "idiot", "idola", "idrak", "idu", "iduladha", "idulfitri", "ifah", "ifrit", "iftar", "iftitah", "iga", "igal", "igau", "iglo", "ihdad", "ihram", "ihsan", "ihsanat", "ihsas", "ihtifal", "ihtikar", "ihtilam", "ihtimal", "ihwal", "ijab", "ijabat", "ijajil", "ijarah", "ijas", "ijazah", "ijbar", "ijeman", "ijil", "ijmak", "ijmal", "ijon", "ijtihad", "ijtimaiah", "ijtimak", "ijuk", "ikab", "ikal", "ikamah", "ikan", "ikat", "ikebana", "ikhbar", "ikhlas", "ikhtiar", "ikhtiari", "ikhtilaf", "ikhtiogeografi", "ikhtiosarkotoksisme", "ikhtiotoksisme", "ikhtisar", "ikhwan", "iklan", "iklim", "ikon", "ikonis", "ikonograf", "ikonografi", "ikonoklasme", "ikonometer", "ikrab", "ikram", "ikrar", "iktibar", "iktidal", "iktikad", "iktikaf", "iktiografi", "iktiolit", "iktiologi", "iktiologis", "iktirad", "iktiraf", "iktisab", "ikuh", "ikut", "ilafi", "ilah", "ilahi", "ilahiah", "ilahiat", "ilai", "ilak", "ilam-ilam", "ilanun", "ilar", "ilas", "ilat", "ilegal", "iler", "iles", "ileum", "ilham", "ili", "ilian", "iling", "ilmiah", "ilmu", "ilu", "iluminasi", "ilusi", "ilusif", "ilusionis", "ilustrasi", "ilustratif", "ilustrator", "imago", "imaji", "imajinasi", "imajinatif", "imajiner", "imak", "imam", "imamah", "imamologi", "iman", "imanen", "imanensi", "imani", "imbak", "imbal", "imbang", "imbas", "imbau", "imbesil", "imbesilitas", "imbibisi", "imbit", "imbuh", "imigran", "imigrasi", "iming-iming", "imitasi", "imitatif", "imitator", "imkan", "imla", "imlek", "imobilisasi", "impak", "impas", "impase", "impedans", "impedansi", "impek", "imperatif", "imperfek", "imperfeksi", "imperial", "imperialis", "imperialisme", "imperium", "impersonal", "impersonalia", "impersonalitas", "impi", "impit", "implan", "implantasi", "implemen", "implementasi", "implikasi", "implisit", "implosif", "implosit", "impor", "importasi", "importir", "impoten", "impotensi", "impregnasi", "impresariat", "impresario", "impresi", "impresif", "impresionis", "impresionisme", "impresionistik", "imprimatur", "improvisasi", "impuls", "impulsif", "imsak", "imsakiah", "imtihan", "imun", "imunisasi", "imunitas", "imunokimia", "imunokompromi", "imunologi", "imunologis", "imunosupresi", "imunoterapi", "ina", "inadaptabilitas", "inai", "inang", "inangda", "inap", "inartikulat", "inas", "inaugurasi", "inayat", "inca", "incang-incut", "incar", "inci", "incit", "incling", "incrit", "incu", "incut", "indah", "indang", "indap", "indarus", "indayang", "indebitum", "indehoi", "indekos", "indeks", "inden", "independen", "inderawasih", "indeterminisme", "indigenos", "indigo", "indik", "indikan", "indikasi", "indikatif", "indikator", "inding", "indisipliner", "indium", "individu", "individual", "individualis", "individualisasi", "individualisme", "individualistis", "individualitas", "individuasi", "indoktrinasi", "indolen", "indolensi", "indologi", "indonesia", "indonesianisasi", "indra", "indraloka", "indranila", "indria", "indriawi", "indu", "induk", "induksi", "induktans", "induktansi", "induktif", "induktor", "indung", "indusemen", "industri", "inefisiensi", "inersia", "infak", "infanteri", "infantil", "infantilisasi", "infantilisme", "infarktus", "infeksi", "inferensi", "inferensial", "inferior", "inferioritas", "inferno", "infertil", "infertilitas", "infiks", "infiltrasi", "infiltrometer", "infinitif", "infiradi", "inflamasi", "inflasi", "inflatoar", "infleksi", "infleksibel", "infleksif", "infloresen", "infloresens", "influensa", "influenza", "info", "informal", "informan", "informasi", "informatif", "informatika", "inframerah", "infrasonik", "infrastruktur", "infus", "inga", "ingar", "ingat", "ingau", "inggang-inggung", "inggris", "inggu", "inggung", "ingin", "ingkah", "ingkar", "ingkir", "ingresif", "ingsar", "ingsun", "ingsut", "ingus", "inheren", "inhibisi", "inhibitor", "ini", "inisial", "inisiasi", "inisiatif", "inisiator", "injak", "injap", "injeksi", "injil", "injin", "inkarnasi", "inkarserasi", "inkarsunah", "inkaso", "inklaring", "inklinasi", "inklinometer", "inklusif", "inkognito", "inkompabilitas", "inkompatibilitas", "inkompeten", "inkomplet", "inkonfeso", "inkonsisten", "inkonsistensi", "inkonstitusional", "inkonvensional", "inkorporasi", "inkremental", "inkubasi", "inkubator", "inkulturasi", "inlander", "inohong", "inokulasi", "inovasi", "inovatif", "inovator", "insaf", "insan", "insanan", "insang", "insani", "insanulkamil", "insar", "insek", "insekta", "insektari", "insektisida", "insektivor", "insektivora", "insektologi", "inseminasi", "insentif", "insersi", "inses", "inset", "insiden", "insidental", "insinerator", "insinuasi", "insinuatif", "insinye", "insinyur", "inskripsi", "inslan", "insolven", "insomnia", "inspeksi", "inspektorat", "inspektur", "inspirasi", "instabilitas", "instalasi", "instalatur", "instan", "instansi", "insting", "instingtif", "institusi", "institusional", "institut", "instruksi", "instruksional", "instruktif", "instruktur", "instrumen", "instrumental", "instrumentalia", "instrumentalis", "instrumentasi", "insubordinasi", "insulator", "insuler", "insulin", "insulinde", "insya", "intai", "intan", "integral", "integralistik", "integrasi", "integrasionis", "integritas", "integumen", "intel", "intelek", "intelektual", "intelektualisasi", "intelektualisme", "inteligen", "inteligensi", "inteligensia", "intelijen", "intendans", "intens", "intensi", "intensif", "intensifikasi", "intensional", "intensitas", "interaksi", "interaksionistik", "interaktif", "interdepartemental", "interdependen", "interdiksi", "interdisipliner", "interegnum", "interelasi", "interen", "interes", "interesan", "interetnik", "interferens", "interferensi", "interferometer", "interferon", "interglasial", "interim", "interinsuler", "interior", "interjeksi", "interkom", "interkoneksi", "interkonsonantal", "interkontinental", "interlokal", "interlokutor", "interlud", "intermeso", "intermezo", "intermolekuler", "intern", "internal", "internalisasi", "internasional", "internasionalisasi", "internat", "internir", "internis", "internuntius", "interogasi", "interogatif", "interogator", "interpelan", "interpelasi", "interpelator", "interpiu", "interpolasi", "interpretasi", "interpretatif", "interpretator", "interpreter", "intersepsi", "intertestial", "intertidal", "interupsi", "interval", "intervensi", "intervensionisme", "interviu", "interzona", "inti", "intifadah", "intiha", "intikad", "intim", "intima", "intimasi", "intimidasi", "intip", "intipati", "intisari", "intoksikasi", "intoleran", "intonasi", "intradermal", "intrakalimat", "intrakurikuler", "intralinguistis", "intramembran", "intramolekul", "intramuskuler", "intransitif", "intraseluler", "intrauniversiter", "intravaskuler", "intravena", "intrik", "intrinsik", "intro", "introduksi", "introjeksi", "introspeksi", "introver", "intrusi", "intuisi", "intuitif", "intumesensi", "invaginasi", "invalid", "invasi", "invensi", "inventaris", "inventarisasi", "inventif", "inventor", "inventori", "inventoriminat", "inversi", "invertebrata", "investasi", "investigasi", "investigatif", "investor", "invitasi", "invois", "involusi", "inyik", "inzar", "inziaj", "iodin", "ion", "ionisasi", "ionosfer", "iota", "ipar", "ipis", "ipon", "iprit", "ipuh", "ipuk", "ipung", "iqamat", "iqra", "ira", "iradat", "iradiasi", "irafah", "irah-irahan", "iram", "irama", "iras", "irasional", "irasionalitas", "iri", "iridium", "irigasi", "irigator", "irik", "iring", "iris", "irit", "iritabilitas", "iritasi", "iritatif", "ironi", "ironis", "irsyad", "irung", "irus", "isa", "isak", "isalohipse", "isap", "isbat", "iseng", "isentropik", "isi", "isim", "isis", "isit", "iskemia", "islah", "islam", "islami", "islamiah", "islamis", "islamisasi", "islamisme", "islamologi", "isoaglutinin", "isobar", "isobarik", "isobat", "isobron", "isodin", "isodinamik", "isofase", "isofen", "isofet", "isoflor", "isofon", "isogamet", "isogami", "isoglos", "isogon", "isogram", "isohalin", "isohel", "isohiet", "isohips", "isokal", "isokalori", "isokemi", "isokeraunik", "isokor", "isokorik", "isokronisme", "isolasi", "isolasionisme", "isolatif", "isolator", "isoleks", "isolemen", "isolir", "isomer", "isometrik", "isomorf", "isomorfis", "isomorfisme", "isonefel", "isonomi", "isopal", "isopiestik", "isoplet", "isoriza", "isosilabisme", "isotah", "isoterm", "isotermal", "isotop", "isotrop", "isotropik", "isovolumik", "isra", "israf", "istal", "istan", "istana", "istanggi", "istaz", "istazah", "istiadat", "istianah", "istiazah", "istibdad", "istibra", "istidlal", "istidraj", "istifham", "istigasah", "istigfar", "istihadah", "istihsan", "istikamah", "istikharah", "istikhlaf", "istiklal", "istikmal", "istilah", "istima", "istimaiah", "istimewa", "istimna", "istimtak", "istinggar", "istinja", "istiqlal", "istirahat", "istislah", "istislam", "istisna", "istitaah", "istiwa", "istri", "isu", "isya", "isyarat", "isytiak", "isyu", "italik", "item", "iterasi", "iterbium", "itibak", "itibar", "itidal", "itifak", "itihad", "itik", "itikad", "itikaf", "itil", "itisal", "itlak", "itrium", "itu", "iudisasi", "iur", "iwad", "iya", "izah", "izin", "jaat", "jab", "jabal", "jabang", "jabar", "jabariah", "jabat", "jabir", "jables", "jabrik", "jabung", "jadah", "jadam", "jadayat", "jadi", "jaduk", "jadwal", "jaga", "jagabaya", "jagabela", "jagal", "jagang", "jagapati", "jagaraga", "jagat", "jagawana", "jago", "jagra", "jagrak", "jaguar", "jagung", "jagur", "jah", "jaha", "jahan", "jahanam", "jahar", "jaharu", "jahat", "jahe", "jahil", "jahiliah", "jahiriah", "jahit", "jahul", "jail", "jainisme", "jaipong", "jais", "jaiz", "jaja", "jajah", "jajak", "jajal", "jajan", "jajar", "jaka", "jakal", "jakas", "jaket", "jaksa", "jaksi", "jakun", "jala", "jalabria", "jalad", "jalak", "jalal", "jalan", "jalang", "jalangkote", "jalangkung", "jalar", "jali", "jalibut", "jalil", "jalin", "jalma", "jalu", "jalur", "jam", "jamaah", "jamadat", "jamah", "jamak", "jamal", "jaman", "jamang", "jambak", "jambal", "jamban", "jambang", "jambar", "jambat", "jambe", "jambiah", "jambian", "jamblang", "jambon", "jambore", "jambret", "jambu", "jambul", "jambulan", "jambur", "jamhur", "jamiah", "jamiatul", "jamik", "jamil", "jamin", "jamis", "jamiyah", "jamiyatul", "jampal", "jampen", "jampi", "jampuk", "jamrah", "jamrud", "jamu", "jamung", "jamur", "janabah", "janabijana", "janah", "janat", "janda", "jangak", "jangan", "jangar", "jangat", "janggal", "janggelan", "janggi", "janggolan", "janggung", "janggut", "jangka", "jangkah", "jangkang", "jangkap", "jangkar", "jangkat", "jangkau", "jangki", "jangkih", "jangkih-mangkih", "jangking", "jangkir", "jangkit", "jangkrik", "jangkung", "jangla", "jangol", "jani", "janik", "janin", "janjang", "janji", "jantan", "jantang", "jantina", "jantuk", "jantung", "jantur", "janturan", "januari", "janubi", "janur", "jap", "japan", "japin", "japu", "japuk", "jara", "jarab", "jarah", "jarak", "jaram", "jaran", "jaranan", "jarang", "jaras", "jarem", "jargon", "jari", "jariah", "jariji", "jarimah", "jaring", "jarit", "jarjau", "jaro", "jarotan", "jarum", "jarwa", "jas", "jasa", "jasad", "jasadi", "jasmani", "jasmaniah", "jasus", "jaswadi", "jatah", "jatayu", "jati", "jatilan", "jatmika", "jatuh", "jatukrama", "jauh", "jauhar", "jauhari", "jauza", "jawab", "jawang", "jawanisasi", "jawara", "jawat", "jawawut", "jawer", "jawi", "jawil", "jaya", "jayacihna", "jayapatra", "jayasong", "jayastamba", "jayeng", "jaz", "jazam", "jazirah", "jazirat", "jebab", "jebah", "jebai", "jebak", "jebang", "jebar", "jebat", "jeblok", "jeblos", "jebluk", "jebol", "jebor", "jebrol", "jebuh", "jebung", "jebur", "jeda", "jeding", "jedot", "jegal", "jegang", "jegil", "jegogan", "jegung", "jejabah", "jejak", "jejaka", "jejal", "jejap", "jejas", "jejengkok", "jejer", "jejunum", "jejuri", "jeket", "jeksi", "jel", "jela", "jelabak", "jelabir", "jeladan", "jeladren", "jeladri", "jelaga", "jelagra", "jelah", "jelai", "jelajah", "jelak", "jelalat", "jelamprang", "jelanak", "jelang", "jelangak", "jelangkung", "jelantah", "jelapak", "jelapang", "jelar", "jelarang", "jelas", "jelata", "jelatang", "jelau", "jelawat", "jelejeh", "jelek", "jelempah", "jelengar", "jelentik", "jelepak", "jelepok", "jeli", "jelih", "jelijih", "jelimet", "jelimpat", "jeling", "jelir", "jelit", "jelita", "jelma", "jelu", "jeluak", "jeluang", "jelujur", "jeluk", "jelum", "jelungkap", "jeluntung", "jelunut", "jelur-jelir", "jelus", "jelut", "jelutung", "jem", "jemaah", "jemaat", "jemah", "jemala", "jemang", "jemari", "jemaring", "jemawa", "jemba", "jembak", "jembalang", "jembar", "jembatan", "jembel", "jember", "jembiah", "jembrana", "jembut", "jemeki", "jemerlang", "jempalik", "jempalit", "jempana", "jemparing", "jempol", "jempul", "jemput", "jemu", "jemuas", "jemuju", "jemur", "jenahar", "jenak", "jenaka", "jenama", "jenang", "jenangau", "jenat", "jenawi", "jenayah", "jenazah", "jendal", "jendala", "jendel", "jendela", "jendera", "jenderal", "jendol", "jendul", "jenela", "jeneng", "jenewer", "jeng", "jengah", "jengang", "jengat", "jengek", "jenggala", "jenggar", "jengger", "jengget", "jengglong", "jenggot", "jengguk", "jenggul", "jenggut", "jengit", "jengkal", "jengkang", "jengkek", "jengkel", "jengkelit", "jengkeng", "jengker", "jengket", "jengki", "jengking", "jengkit", "jengkol", "jengkolet", "jengkot", "jenglong", "jenguh", "jenguk", "jengul", "jenis", "jenius", "jenjam", "jenjang", "jenjeng", "jentaka", "jentang", "jentayu", "jentelmen", "jentera", "jentik", "jentur", "jenu", "jenuh", "jepa", "jepet", "jepit", "jeprat", "jepret", "jepun", "jeput", "jera", "jerabai", "jeradik", "jeragih", "jerah", "jerahak", "jerahap", "jerait", "jeram", "jeramah", "jerambah", "jerambai", "jerambang", "jerambung", "jerami", "jeran", "jerang", "jerangan", "jerangau", "jerangkah", "jerangkak", "jerangkang", "jerangkong", "jerap", "jerapah", "jerat", "jerau", "jeraus", "jerawat", "jerba", "jerbak", "jereket", "jeremak", "jeremba", "jerembap", "jerembat", "jerembet", "jerembun", "jerempak", "jereng", "jerepet", "jeri", "jeriau", "jerigen", "jerih", "jeriji", "jeriken", "jering", "jeringing", "jerit", "jerjak", "jerkah", "jerkat", "jermal", "jermang", "jernang", "jernih", "jero", "jeroan", "jerohok", "jerojol", "jerongkang", "jerongkes", "jerongkok", "jerongkong", "jerubung", "jeruji", "jeruju", "jeruk", "jerukun", "jerukup", "jerum", "jerumat", "jerumbai", "jerumun", "jerumus", "jerun", "jerung", "jerungkau", "jerungkis", "jerungkung", "jerunuk", "jerupih", "jesben", "jet", "jetis", "jetsam", "jetset", "jewer", "jiawang", "jib", "jibaku", "jibilah", "jibrail", "jibril", "jibti", "jibun", "jicap", "jicapgo", "jicing", "jidal", "jidar", "jidat", "jidur", "jigong", "jigrah", "jih", "jihad", "jihat", "jijik", "jijit", "jijitsu", "jika", "jikalau", "jil", "jila", "jilah", "jilam", "jilat", "jilbab", "jilid", "jim", "jimahir", "jimak", "jimakir", "jimat", "jimawal", "jimbit", "jimpit", "jin", "jinak", "jinayah", "jindra", "jinem", "jineman", "jineng", "jingap", "jingau", "jingga", "jinggring", "jingkat", "jingkik", "jingkrak", "jingo", "jingoisme", "jingu", "jinjang", "jinjing", "jinjit", "jinsom", "jintan", "jip", "jipang", "jiplak", "jipro", "jir", "jirak", "jiran", "jirat", "jirian", "jirus", "jisim", "jitah", "jitak", "jitok", "jitu", "jiwa", "jiwat", "jiwatman", "jiwit", "jizyah", "jlegur", "joang", "jobak", "jobong", "jodang", "jodoh", "jodong", "jogan", "jogar", "joget", "joging", "joglo", "johan", "johar", "johari", "jojing", "jojol", "jok", "joki", "jolak", "jolek", "joli", "jolok", "jolong", "jolor", "jombang", "jomlo", "jompak", "jompo", "jongang", "jonget", "jongga", "jonggol", "jonggolan", "jongjorang", "jongkang", "jongkar-jangkir", "jongkat-jangkit", "jongki", "jongko", "jongkok", "jongkong", "jongos", "jonjot", "jontoh", "jontor", "jontrot", "joran", "joreng", "jori", "jorjoran", "jorok", "jorong", "josna", "jota", "jotang", "jotos", "joule", "jrambah", "jreng", "jua", "juadah", "juak", "jual", "juan", "juandang", "juang", "juar", "juara", "jubah", "jubel", "jubin", "jublag", "jublek", "judek", "judes", "judi", "judo", "judogi", "judoka", "judul", "juek", "juga", "juhi", "juhut", "juih", "juita", "juja", "jujah", "jujai", "jujitsu", "juju", "jujuh", "jujur", "jujuran", "jujut", "jukstaposisi", "jukut", "julab", "julai", "julang", "julat", "juli", "juling", "julir", "julo", "juluk", "julung", "julur", "jumadilakhir", "jumadilawal", "jumantan", "jumantara", "jumat", "jumbai", "jumbil", "jumbo", "jumbuh", "jumbul", "jumeneng", "jumhur", "jumjumah", "jumlah", "jumpa", "jumpalit", "jumpang", "jumpelang", "jumpul", "jumput", "jumrah", "jumud", "jun", "junam", "jundai", "jung", "jungat", "junggang", "jungkal", "jungkang", "jungkar", "jungkat", "jungkir", "jungkit", "jungkol", "jungur", "jungut", "juni", "junior", "junjung", "junta", "juntai", "juntrung", "junub", "junun", "jupang", "jura", "juragan", "jurai", "jurang", "juri", "jurik", "juring", "juris", "jurit", "jurnal", "jurnalis", "jurnalisme", "jurnalistik", "juru", "juruh", "jurung", "jurus", "jus", "justifikasi", "justru", "juta", "jute", "juvenil", "juz", "kaabah", "kaba", "kabah", "kabak", "kabang-kabang", "kabar", "kabaret", "kabat", "kabau", "kabel", "kabihat", "kabil", "kabilah", "kabin", "kabinet", "kabir", "kabisat", "kabit", "kaboi", "kabriolet", "kabruk", "kabu-kabu", "kabuki", "kabul", "kabumbu", "kabung", "kabupaten", "kabur", "kabus", "kabut", "kaca", "kacak", "kacam", "kacamata", "kacang", "kacapiring", "kacapuri", "kacar", "kacau", "kacau-balau", "kacauan", "kacek", "kacer", "kaci", "kacici", "kacip", "kacir", "kaco", "kacrek", "kacu", "kacuk", "kacukan", "kacung", "kad", "kada", "kadahajat", "kadal", "kadam", "kadang", "kadar", "kadariah", "kadas", "kadaster", "kadasteral", "kadastral", "kadaver", "kade", "kademat", "kadensa", "kader", "kadera", "kaderisasi", "kades", "kadet", "kadi", "kadim", "kadipaten", "kadir", "kadiriah", "kadmium", "kado", "kadofor", "kadok", "kadru", "kadung", "kadut", "kaedah", "kaf", "kafaah", "kafah", "kafan", "kafarat", "kafe", "kafeina", "kafetaria", "kafi", "kafil", "kafilah", "kafir", "kafiri", "kaftan", "kagak", "kaget", "kagok", "kagum", "kah", "kahaf", "kahak", "kahan", "kahang", "kahar", "kahat", "kahin", "kahrab", "kahwa", "kahwaji", "kahyangan", "kaidah", "kaifiah", "kaifiat", "kail", "kailalo", "kaimat", "kain", "kaing", "kainit", "kainofobia", "kais", "kaisar", "kait", "kajai", "kajang", "kajangan", "kajen", "kaji", "kak", "kakaban", "kakafoni", "kakagau", "kakah", "kakak", "kakaktua", "kakanda", "kakang", "kakao", "kakap", "kakas", "kakawin", "kakbah", "kakek", "kakerlak", "kaki", "kakodil", "kakofoni", "kakografi", "kakok", "kakologi", "kakostokrasi", "kakrupukan", "kaksa", "kaktus", "kaku", "kakuminal", "kakus", "kala", "kalah", "kalai", "kalajengking", "kalaka", "kalakanji", "kalakati", "kalakeran", "kalakian", "kalam", "kalamba", "kalamdan", "kalamin", "kalamisani", "kalamkari", "kalandar", "kalander", "kalang", "kalap", "kalar", "kalas", "kalat", "kalau", "kalaupun", "kalawija", "kalaza", "kalbi", "kalbu", "kaldera", "kaldron", "kaldu", "kalebas", "kaleidoskop", "kaleidoskopis", "kalem", "kalempagi", "kalender", "kaleng", "kali", "kalian", "kaliber", "kalibit", "kalibrasi", "kalibut", "kalicau", "kalifornium", "kaligraf", "kaligrafi", "kaligrafis", "kalih", "kalikausar", "kaliki", "kalimah", "kalimantang", "kalimat", "kalimatullah", "kalimatusyahadat", "kalimayah", "kalimpanang", "kalingan", "kalio", "kaliper", "kalipso", "kaliptra", "kalis", "kalistenik", "kalium", "kalk", "kalkalah", "kalkarium", "kalkasar", "kalkausar", "kalkopirit", "kalkosium", "kalkulasi", "kalkulator", "kalkulus", "kalkun", "kalo", "kalomel", "kalong", "kalongwese", "kalongwewe", "kalor", "kalori", "kalorimeter", "kalorimetri", "kalorisitas", "kalowatan", "kalpataru", "kalsedon", "kalsiferol", "kalsifikasi", "kalsinasi", "kalsit", "kalsium", "kalui", "kalumet", "kalung", "kalus", "kalut", "kam", "kama", "kamajaya", "kamal", "kamalir", "kamantuhu", "kamar", "kamarban", "kamariah", "kamas", "kamat", "kamba", "kamban", "kambang", "kambar", "kambeh", "kambeli", "kamber", "kambi", "kambing", "kambium", "kambrik", "kambrium", "kambuh", "kambus", "kambut", "kamelia", "kamera", "kamerad", "kamfana", "kamfer", "kamfor", "kamhar", "kami", "kamikaze", "kamil", "kamilmukamil", "kamir", "kamis", "kamisa", "kamisol", "kamisosolen", "kamit", "kamitua", "kamka", "kamkama", "kamomil", "kamp", "kampa", "kampai", "kampalogi", "kampanologi", "kampanye", "kampas", "kampemen", "kamper", "kampil", "kamping", "kampiun", "kampos", "kampret", "kampuh", "kampul", "kampung", "kampus", "kamrad", "kamsen", "kamsia", "kamu", "kamuflase", "kamus", "kan", "kana", "kanaah", "kanaat", "kanabis", "kanak-kanak", "kanal", "kanalisasi", "kanan", "kanang", "kancah", "kancap", "kanceh", "kancera", "kancil", "kancing", "kancung", "kancut", "kanda", "kandang", "kandar", "kandas", "kandel", "kandela", "kandi", "kandidat", "kandidiasis", "kandil", "kandis", "kandul", "kandung", "kandut", "kane", "kang", "kangar", "kangen", "kangka", "kangkang", "kangkung", "kangmas", "kangsa", "kangsar", "kangtau", "kanguru", "kanibal", "kanibalisasi", "kanibalisme", "kanigara", "kanilem", "kanina", "kanisah", "kanjal", "kanjang", "kanjar", "kanjeng", "kanji", "kanker", "kano", "kanoman", "kanon", "kanonir", "kanonis", "kanopi", "kans", "kansel", "kanselari", "kanselir", "kanser", "kanstof", "kanta", "kantan", "kantang", "kantar", "kantata", "kanti", "kantih", "kantil", "kantilever", "kantin", "kanto", "kantong", "kantor", "kantuk", "kantung", "kanun", "kanvas", "kanya", "kanyon", "kaok", "kaolin", "kaon", "kaos", "kaotis", "kap", "kapa", "kapabel", "kapah", "kapai", "kapak", "kapal", "kapan", "kapang", "kapar", "kaparinyo", "kapas", "kapasitans", "kapasitas", "kapasitor", "kapat", "kapel", "kapela", "kaper", "kapi", "kapilaritas", "kapiler", "kapiran", "kapis", "kapisa", "kapit", "kapita", "kapital", "kapitalis", "kapitalisme", "kapitalistis", "kapitan", "kapitol", "kapitulasi", "kapitulum", "kaplares", "kaplars", "kapling", "kaplok", "kapok", "kapon", "kaporit", "kappa", "kaprah", "kapri", "kaprikornus", "kapsalon", "kapsel", "kapstan", "kapster", "kapstok", "kapsul", "kapten", "kapu", "kapuk", "kapung", "kapur", "kapurancang", "kara", "karabin", "karaeng", "karaf", "karagen", "karah", "karahah", "karakter", "karakterisasi", "karakteristik", "karakterologi", "karam", "karamba", "karambol", "karamel", "karang", "karangkitri", "karangwulu", "karantina", "karaoke", "karap", "karapaks", "karapan", "karar", "karas", "karat", "karate", "karategi", "karateka", "karau", "karavan", "karawitan", "karbiah", "karbid", "karbida", "karbohidrase", "karbohidrat", "karboksil", "karbol", "karbolat", "karbolik", "karbon", "karbonado", "karbonan", "karbonat", "karbonil", "karbonisasi", "karborundum", "karburasi", "karburator", "karcis", "kardamunggu", "kardan", "kardia", "kardiak", "kardigan", "kardil", "kardinal", "kardiograf", "kardiografi", "kardiogram", "kardiolog", "kardiologi", "kardiovaskular", "karditis", "kardus", "karel", "karembong", "karena", "karengga", "kareseh-peseh", "karet", "kargo", "kari", "karib", "karibu", "karier", "karies", "karih", "karikatur", "karikatural", "karikaturis", "karil", "karim", "karimah", "karina", "karinasi", "karisma", "karismatik", "karismatis", "karitas", "karitatif", "karkas", "karkata", "karkum", "karkun", "karma", "karmina", "karminatif", "karnaval", "karnivor", "karosel", "karoseri", "karotena", "karotenoid", "karotis", "karpai", "karpel", "karper", "karpet", "karpopodil", "karsa", "karsinogen", "karsinogenik", "karsinologi", "karsinoma", "karst", "karteker", "kartel", "karti", "kartika", "kartilago", "kartografi", "kartogram", "karton", "kartonase", "kartotek", "kartu", "kartun", "kartunis", "karu", "karuan", "karuhun", "karun", "karung", "karunia", "karunkel", "karusi", "karut", "karya", "karyah", "karyasiswa", "karyat", "karyawisata", "kas", "kasa", "kasab", "kasabandiah", "kasad", "kasah", "kasai", "kasak-kusuk", "kasam", "kasang", "kasap", "kasar", "kasasi", "kasatmata", "kasau", "kasdu", "kasein", "kasemat", "kasemek", "kasep", "kaserin", "kaserol", "kaset", "kasi", "kasid", "kasidah", "kasih", "kasihan", "kasiku", "kasim", "kasima", "kasino", "kasintu", "kasip", "kasir", "kasiterit", "kaskade", "kaskaya", "kasmaran", "kasmir", "kasmutik", "kaspe", "kasrah", "kasregister", "kassia", "kasta", "kastal", "kastanyet", "kastel", "kasti", "kastrasi", "kastroli", "kasturi", "kasual", "kasualisme", "kasualitas", "kasuari", "kasuarina", "kasui", "kasuis", "kasuistik", "kasur", "kasus", "kasut", "kaswah", "kata", "katabalik", "katabatik", "katabolisme", "katadrom", "katafalk", "katafora", "katah", "katai", "katak", "kataka", "katakana", "kataklisme", "katakomba", "katalase", "katalepsi", "katalina", "katalis", "katalisasi", "katalisator", "katalisis", "katalisit", "katalog", "katalogisasi", "katalogus", "katamaran", "katang-katang", "katapel", "katar", "katarak", "katarsis", "katartik", "katastrofe", "katatoni", "katatonia", "katawi", "kate", "katebelece", "katedral", "kategori", "kategorial", "kategoris", "kategorisasi", "katek", "katekese", "katekis", "katekisasi", "katekismus", "katekumen", "katel", "katelum", "kater", "katering", "kates", "kateter", "katetometer", "kati", "katib", "katibin", "katifah", "katifan", "katik", "katil", "katimaha", "katimumul", "kation", "katir", "katirah", "katiti", "katode", "katok", "katolik", "katrol", "katuk", "katul", "katun", "katung", "katup", "katut", "katvanga", "katwal", "kau", "kaukab", "kaukasoid", "kaukus", "kaul", "kaula", "kauli", "kaum", "kaung", "kaupui", "kaus", "kausa", "kausal", "kausalitas", "kausatif", "kaustik", "kaustiksoda", "kaut", "kavaleri", "kaveling", "kaver", "kaviar", "kawa-kawa", "kawah", "kawak", "kawal", "kawan", "kawang", "kawanua", "kawasan", "kawat", "kawi", "kawih", "kawijayan", "kawin", "kawista", "kawruh", "kawuk", "kawula", "kawung", "kaya", "kayai", "kayak", "kayambang", "kayan", "kayang", "kayangan", "kayau", "kayu", "kayuh", "kayun", "kebab", "kebabal", "kebah", "kebaji", "kebal", "kebam", "kebas", "kebat", "kebaya", "kebayan", "kebel", "kebelet", "kebembem", "kebin", "kebiri", "keblangsak", "keblinger", "kebo", "kebon", "kebuk", "kebul", "kebuli", "kebun", "kebur", "keburu", "kebut", "kebyar", "kecai", "kecak", "kecalingan", "kecam", "kecambah", "kecamuk", "kecandan", "kecantol", "kecap", "kecapi", "kecar", "kece", "kecebong", "kecek", "kecele", "keceng", "kecepek", "kecer", "kecewa", "keci", "keciak", "kecibak", "kecibeling", "kecik", "kecil", "kecimik", "kecimpring", "kecimpung", "kecimus", "kecipak", "kecipir", "kecipuk", "kecit", "keciut", "kecoak", "kecoh", "kecombrang", "kecong", "kecrek", "kecu", "kecuali", "kecubung", "kecuh-kecah", "kecumik", "kecundang", "kecup", "kecut", "kedabu", "kedadak", "kedah", "kedai", "kedak", "kedal", "kedaluwarsa", "kedam", "kedang", "kedangkai", "kedangkan", "kedangsa", "kedap", "kedasih", "kedau", "kedaung", "kedayan", "kedebong", "kedek", "kedekai", "kedeki", "kedekik", "kedekut", "kedelai", "kedele", "kedemat", "kedemplung", "kedempung", "kedengkang", "kedengkik", "keder", "kedera", "kederang", "kedewaga", "kedi", "kedidi", "kedik", "kedikit", "kedip", "kedodoran", "kedok", "kedondong", "kedongdong", "kedongkok", "kedot", "keduduk", "keduk", "kedul", "kedumung", "kedung", "kedut", "keferdom", "kehel", "keibodan", "kejai", "kejam", "kejamas", "kejan", "kejang", "kejap", "kejar", "kejat", "kejawen", "kejen", "kejer", "keji", "kejibeling", "kejip", "kejolak", "kejora", "keju", "kejuju", "kejur", "kejut", "kek", "kekah", "kekal", "kekam", "kekandi", "kekang", "kekapas", "kekar", "kekara", "kekas", "kekat", "kekau", "kekawin", "kekeba", "kekebik", "kekeh", "kekek", "kekel", "kekemben", "kekep", "keker", "keki", "kekitir", "kekok", "kekol", "kekrupukan", "kelab", "kelabak", "kelabang", "kelabat", "kelabau", "kelabu", "keladak", "keladan", "keladau", "keladi", "kelah", "kelahi", "kelai", "kelak", "kelak-kelik", "kelak-keluk", "kelakah", "kelakanji", "kelakar", "kelalang", "kelam", "kelamai", "kelamarin", "kelambai", "kelambir", "kelambit", "kelambu", "kelambur", "kelamin", "kelamkari", "kelana", "kelandera", "kelang", "kelang-kelok", "kelangkan", "kelangkang", "kelanjar", "kelantang", "kelap", "kelapa", "kelar", "kelara", "kelarah", "kelarai", "kelaras", "kelari", "kelas", "kelasa", "kelasah", "kelasak", "kelasi", "kelat", "kelati", "kelawan", "kelayan", "kelayang", "kelayu", "kelder", "kelebat", "kelebek", "kelebet", "kelebu", "kelebuk", "kelebut", "keledai", "keledang", "keledar", "keledek", "kelejat", "kelek", "kelekap", "kelekatu", "kelelap", "kelelawar", "kelelesa", "kelelot", "kelemak-kelemek", "kelemantang", "kelemayar", "kelemayuh", "kelembahang", "kelembai", "kelembak", "kelemban", "kelembuai", "kelempai", "kelemping", "kelemton", "kelemumur", "kelemur", "kelencer", "kelendara", "keleneng", "kelengar", "kelenggara", "kelengkeng", "kelengkiak", "kelening", "kelenjar", "kelentang", "kelenteng", "kelentik", "kelenting", "kelentit", "kelentong", "kelentung", "kelenung", "kelenyit", "kelep", "kelepai", "kelepak", "kelepat", "kelepek", "kelepet", "kelepik", "kelepir", "kelepit", "kelepuk", "kelepur", "keler", "kelereng", "kelesa", "kelesah", "keleseh", "kelesek", "kelesot", "keletah", "keletak", "keletang", "keletar", "keleti", "keletik", "keletuk", "keletung", "kelewang", "keli", "kelian", "keliar", "kelibang", "kelibat", "kelicap", "kelici", "kelicik", "kelih", "kelijak", "kelik", "kelika", "kelikah", "kelikat", "keliki", "kelikih", "kelikik", "kelikir", "keliling", "kelilip", "kelim", "kelimat", "kelimpanan", "kelimpungan", "kelimun", "kelimut", "kelinci", "kelincir", "kelindan", "keling", "kelingking", "kelingsir", "kelining", "kelinjat", "kelintang", "kelintar", "kelinting", "kelip", "kelipat", "kelir", "keliru", "kelis", "kelisera", "kelisere", "kelit", "keliti", "kelitik", "keliwon", "kelobot", "kelobotisme", "kelocak", "keloceh", "kelodan", "keloelektrovolt", "keloid", "kelojot", "kelok", "kelokak", "kelola", "kelolong", "kelom", "kelombeng", "kelompang", "kelompen", "kelompok", "kelon", "keloneng", "kelonet", "kelong", "kelongkong", "kelongsong", "kelontang", "kelontang-kelantung", "kelontong", "kelonyo", "kelop", "kelopak", "kelor", "kelorak", "kelos", "kelosok", "kelotok", "keloyak", "keloyang", "keloyor", "kelp", "kelu", "kelua", "keluai", "keluak", "keluan", "keluang", "keluangsa", "keluar", "keluarga", "kelubak", "kelubi", "keluburan", "keluh", "kelui", "keluih", "keluk", "kelukup", "kelukur", "keluli", "kelulu", "kelulus", "kelulut", "kelumit", "kelumpang", "kelumun", "kelun", "keluna", "kelunak", "kelung", "kelupas", "kelupur", "keluron", "keluruk", "kelurut", "kelus", "kelusuh-kelasah", "kelut", "kelutum", "keluwung", "keluyuk", "keluyur", "kemah", "kemal", "kemala", "kemam", "kemamang", "keman", "kemandang", "kemandoran", "kemang", "kemangi", "kemarau", "kemari", "kemarin", "kemaruk", "kemas", "kemat", "kematu", "kematus", "kemayu", "kembal", "kembali", "kemban", "kembang", "kembar", "kembara", "kembatu", "kembayat", "kembeng", "kembera", "kembili", "kemboja", "kembol", "kembu", "kembuk", "kembung", "kembur", "kembut", "kemeja", "kemejan", "kemekmek", "kemelut", "kemenakan", "kemendalam", "kemendang", "kemendur", "kementam", "kemenyan", "kemerakan", "kemesu", "kemi", "kemih", "kemik", "kemilap", "kemiluminesens", "kemiri", "kemit", "kemlaka", "kemlandingan", "kemloko", "kemoceng", "kemokinesis", "kemon", "kemopsikiatri", "kemoterapi", "kempa", "kempal", "kempang", "kempas", "kempek", "kempes", "kempetai", "kempis", "kempit", "kemplang", "kempot", "kempu", "kempuh", "kempul", "kempunan", "kempung", "kemput", "kempyang", "kemu", "kemucing", "kemudi", "kemudian", "kemudu", "kemukus", "kemul", "kemumu", "kemuncak", "kemuncup", "kemundir", "kemung", "kemungkus", "kemuning", "kemunting", "kemurgi", "kemut", "kemutul", "ken", "kena", "kenaf", "kenal", "kenan", "kenang", "kenanga", "kenap", "kenapa", "kenapang", "kenari", "kenas", "kencan", "kencana", "kencang", "kencar", "kenceng", "kencing", "kencit", "kencong", "kencrang-kencring", "kencreng", "kencung", "kencur", "kendaga", "kendal", "kendala", "kendali", "kendana", "kendang", "kendara", "kendati", "kendayakan", "kendeka", "kenderi", "kendi", "kendil", "kendit", "kendo", "kendong", "kenduduk", "kendung", "kendungan", "kendur", "kenduri", "kenek", "keneker", "kenem", "kenematik", "kenes", "keng", "kengkang", "kengkeng", "kenidai", "kenikir", "kening", "kenohong", "kenong", "kenop", "kensel", "kental", "kentang", "kentar", "kentara", "kenteng", "kentrung", "kentung", "kentut", "kenur", "kenya", "kenyal", "kenyam", "kenyang", "kenyat", "kenyat-kenyit", "kenyet-kenyut", "kenyi", "kenyih", "kenyir", "kenyit", "kenyut", "keok", "keong", "kep", "kepada", "kepah", "kepai", "kepak", "kepal", "kepala", "kepalang", "kepam", "kepang", "kepar", "keparat", "kepayang", "kepecong", "kepek", "kepel", "kepencong", "kepeng", "keper", "keperancak", "kepet", "kepetang", "kepialu", "kepiat", "kepik", "kepil", "kepincut", "kepinding", "keping", "kepingin", "kepinis", "kepinjal", "kepiri", "kepis", "kepit", "kepiting", "keplak", "kepleset", "keplok", "kepodang", "kepoh", "kepol", "kepompong", "keponakan", "kepot", "keprak", "keprek", "kepret", "kepris", "kepruk", "kepuh", "kepuk", "kepul", "kepulaga", "kepundan", "kepundung", "kepung", "kepurun", "keputren", "kepuyuk", "kera", "kerabang", "kerabat", "kerabik", "kerabu", "keracak", "keracap", "keraeng", "kerah", "kerahi", "kerai", "kerajang", "kerajat", "kerak", "kerakah", "kerakal", "kerakap", "kerakeling", "keram", "kerama", "keraman", "keramas", "keramat", "keramba", "kerambil", "kerambit", "keramboja", "keramik", "keramikus", "kerampagi", "kerampang", "keramunting", "keran", "kerancang", "keranda", "kerang", "kerang-keroh", "kerangas", "kerangka", "kerangkai", "kerangkeng", "kerani", "keranjang", "keranjat", "keranji", "keranjingan", "keranta", "kerantong", "kerap", "kerapu", "keras", "kerasan", "kerat", "keratabasa", "keratin", "keratitis", "keratoelastin", "keraton", "kerau", "kerawai", "kerawak", "kerawang", "kerawat", "kerawit", "kerbang", "kerbat", "kerbau", "kerbuk", "kercap-kercip", "kercap-kercup", "kercing", "kercit", "kercup", "kercut", "kerdak", "kerdam", "kerdil", "kerdom", "kerdut", "kere", "kerebok", "kereceng", "kerecik", "keredak", "keredep", "keredok", "keredong", "kerek", "kereket", "kerekot", "kerekut", "keremi", "keremot", "kerempagi", "kerempeng", "kerempung", "keremus", "keren", "kerencang", "kerencung", "kerendang", "kereneng", "kereng", "kerengga", "kerenggamunggu", "kerengkam", "kerengkiang", "kerentam", "kerentang", "kerenting", "kerenyam", "kerenyot", "kerepas", "kerepek", "kerepes", "kerepot", "kerepyak", "kerese", "kerese-pese", "keresek", "kereseng", "keresot", "kereta", "keretan", "keretek", "keretot", "keretut", "kereweng", "keri", "keriang-keriut", "keriap", "kerias", "keriau", "kerical", "kericau", "keridas", "keridik", "kerih", "kerik", "kerikal", "kerikam", "kerikil", "kerikit", "kerimut", "kerinan", "kerincing", "kerinding", "kering", "keringat", "keriningan", "kerinjal", "kerinjang", "kerinjing", "kerintil", "kerinting", "kerip", "keripik", "keriput", "keris", "kerisi", "kerisik", "kerising", "kerisut", "kerit", "keritik", "keriting", "keriuk", "keriut", "kerja", "kerjang", "kerjantara", "kerjap", "kerkah", "kerkak", "kerkap", "kerkau", "kerkop", "kerkup", "kerlap", "kerling", "kerlip", "kermak", "kermanici", "kermi", "kernai", "kerneli", "kernet", "kernu", "kernyat-kernyut", "kernyau", "kernyih", "kernying", "kernyit", "kernyut", "kero", "kerobak", "kerobat", "kerobek", "keroco", "kerocok", "kerogen", "keroh", "kerok", "kerokot", "keromong", "keron", "keroncang", "keroncong", "keroncor", "kerong", "kerongkongan", "kerongsang", "kerontang", "kerop", "keropak", "keropas-keropis", "keropeng", "keropok", "keropong", "keropos", "kerosak", "kerosek", "kerosi", "kerosin", "kerosok", "kerosong", "kerot", "kerotak", "kerotot", "keroyok", "kerpai", "kerpak", "kerpas", "kerpubesi", "kerpuk", "kerpus", "kers", "kersai", "kersak", "kersang", "kersani", "kersen", "kersik", "kersuk", "kertaaji", "kertah", "kertak", "kertang", "kertap", "kertas", "kertau", "kertuk", "kertus", "keruan", "kerubim", "kerubin", "kerubung", "kerubut", "kerucil", "kerucut", "kerudung", "keruh", "keruing", "keruit", "keruk", "kerukut", "kerul", "keruma", "kerumit", "kerumuk", "kerumun", "kerumus", "kerun", "kerung", "kerunkel", "keruntang-pungkang", "kerunting", "keruntung", "kerunyut", "kerup", "kerupuk", "kerut", "kerutak", "kerutup", "keruyuk", "kes", "kesah", "kesak", "kesal", "kesam", "kesambet", "kesambi", "kesan", "kesana", "kesandung", "kesang", "kesangsang", "kesap-kesip", "kesasar", "kesat", "kesatria", "kesek", "kesel", "keselak", "keseleo", "kesemek", "kesengsem", "keseran", "keseser", "keset", "kesi", "kesiap", "kesik", "kesima", "kesimbukan", "kesini", "kesip", "kesitu", "kesiur", "keskul", "kesmaran", "kesohor", "kesomplok", "kesongo", "kesot", "kesrakat", "kesting", "kesturi", "kesu-kesi", "kesuh-kesih", "kesuk-kesik", "kesuma", "kesumat", "kesumba", "kesup", "kesusu", "kesut", "keta", "ketaban", "ketai", "ketak", "ketakar", "ketakong", "ketal", "ketam", "ketambak", "ketampi", "ketan", "ketang", "ketap", "ketapak", "ketapang", "ketapek", "ketar", "ketarap", "ketat", "ketaton", "ketawa", "ketaya", "ketayap", "ketegar", "ketek", "ketel", "ketela", "ketemu", "keten", "ketena", "keteng", "ketepel", "ketepeng", "keter", "ketes", "keteter", "ketgat", "keti", "ketiak", "ketial", "ketiap", "ketiau", "ketiban", "ketiding", "ketik", "ketika", "ketil", "ketilang", "ketimbang", "ketimbis", "ketimbul", "ketimbung", "keting", "ketinjau", "ketinting", "ketip", "ketiplak", "ketipung", "ketirah", "ketis", "ketitir", "ketlingsut", "ketogenesis", "ketok", "ketola", "ketombe", "keton", "ketonemia", "ketonggeng", "ketonuria", "ketopong", "ketoprak", "ketosa", "ketrek", "ketu", "ketua", "ketuat", "ketuban", "ketuir", "ketuk", "ketul", "ketumbar", "ketumbi", "ketumbit", "ketumbu", "ketumpang", "ketun", "ketungging", "ketup", "ketupa", "ketupat", "ketupuk", "ketur", "ketus", "kev", "kewalahan", "keweni", "kewer", "kewes", "kewuh", "kha", "khabis", "khadam", "khadim", "khafi", "khair", "khairat", "khalas", "khalayak", "khali", "khalifah", "khalifatulah", "khalifatullah", "khalik", "khalikah", "khalikul", "khalil", "khalilullah", "khalis", "khalwat", "khamar", "khamir", "khamsin", "khamzab", "khanjar", "kharab", "khas", "khasi", "khasiat", "khat", "khatam", "khatib", "khatifah", "khatimah", "khatulistiwa", "khauf", "khaul", "khawas", "khawasulkhawas", "khawatir", "khayal", "khayali", "khazanah", "khi", "khianat", "khiar", "khidaah", "khidmah", "khidmat", "khilaf", "khilafiah", "khinzir", "khisit", "khitah", "khitan", "khitbah", "khizanatulkitab", "khoja", "khojah", "khotbah", "khuduk", "khulafa", "khuldi", "khuluk", "khunsa", "khurafat", "khusuf", "khusus", "khusyuk", "kia", "kiah", "kiai", "kiak", "kial", "kiam", "kiamat", "kiambang", "kian", "kiang-kiut", "kiani", "kiap", "kiar", "kiara", "kias", "kiasi", "kiasmus", "kiat", "kiaupau", "kibang", "kibar", "kibas", "kibernetika", "kibir", "kiblat", "kiblik", "kibriah", "kibul", "kicang-kecoh", "kicang-kicu", "kicau", "kici", "kicik", "kicu", "kicuh", "kicut", "kida-kida", "kidal", "kidam", "kidang", "kidar", "kidul", "kidung", "kifayah", "kifoskaliose", "kifoskaliosis", "kihanat", "kijai", "kijang", "kijil", "kijing", "kikih", "kikik", "kikil", "kikir", "kikis", "kikitir", "kikuk", "kikus", "kila", "kilah", "kilai", "kilan", "kilang", "kilap", "kilar", "kilas", "kilat", "kilau", "kili", "kilik", "kilir", "kiln", "kilo", "kilogram", "kilohertz", "kilokalori", "kiloliter", "kilometer", "kiloton", "kilovolt", "kilowatt", "kilowattjam", "kilus", "kim", "kima", "kimah", "kimantu", "kimar", "kimbah", "kimbang", "kimbul", "kimia", "kimiawi", "kimkha", "kimlo", "kimo", "kimograf", "kimono", "kimpal", "kimpul", "kimpus", "kimput", "kimus", "kina", "kinang", "kinantan", "kinanti", "kinasa", "kinasih", "kinca", "kincah", "kincak", "kincang", "kincau", "kincir", "kincit", "kincung", "kincup", "kindap", "kinematika", "kinematograf", "kinesika", "kinesimeter", "kineskop", "kinestesia", "kinestesiometer", "kinestesis", "kinetik", "kinetika", "kinetokardiografi", "kingking", "kingkip", "kingkit", "kingkong", "kini", "kinine", "kinja", "kinjat", "kinjeng", "kinred", "kintaka", "kintal", "kinte", "kintil", "kinyang", "kio", "kios", "kipa", "kipai", "kipang", "kipas", "kiper", "kiprah", "kiprat", "kipsiau", "kipu", "kir", "kira", "kiraah", "kiraat", "kirab", "kirai", "kiramat", "kiran", "kirana", "kirap", "kiras", "kirau", "kirbat", "kiri", "kirik", "kirim", "kirinyu", "kirip", "kiris", "kirita", "kirmizi", "kiru", "kiruh", "kirung", "kisa", "kisah", "kisai", "kisar", "kisas", "kisat", "kisi", "kisik", "kismat", "kismis", "kisruh", "kista", "kisut", "kiswah", "kit", "kita", "kitab", "kitabulah", "kitang", "kitar", "kitik", "kitin", "kiting", "kitir", "kitorang", "kitri", "kits", "kiu", "kiuk", "kiwari", "kiwi", "kizib", "klaim", "klakklik", "klakson", "klamidospora", "klan", "klandestin", "klangenan", "klante", "klarifikasi", "klarinet", "klasemen", "klasifikasi", "klasik", "klasikal", "klasis", "klasisisme", "klausa", "klaustrofobia", "klaustrum", "klausul", "klaver", "klavikor", "klavikula", "klaviola", "kleder", "kleidotomi", "kleistogami", "klem", "klemensi", "klen", "klenengan", "klengkeng", "klenik", "klenteng", "klep", "klepon", "klepsidra", "kleptofobi", "kleptoman", "kleptomania", "kleptomaniak", "klerek", "klerikal", "klerikus", "klerus", "klien", "klik", "kliker", "klimaks", "klimakterium", "klimaktorium", "klimatografi", "klimatolog", "klimatologi", "klimis", "klimograf", "klimosekuen", "klimoskop", "klin", "klinik", "klining", "klinis", "klinisi", "klinometer", "klip", "kliping", "klir", "kliring", "klise", "klistron", "klitelum", "klitik", "klitoris", "kliwon", "kliyengan", "kloaka", "klon", "klona", "kloning", "klonograf", "klonus", "klop", "klor", "kloral", "kloramina", "klorat", "klorida", "kloridimeter", "klorin", "klorinasi", "klorit", "klorobenzena", "klorofil", "kloroform", "kloroformat", "klorokuin", "klorolignin", "kloroplas", "kloroprena", "klorosis", "kloset", "klub", "kluntang-kluntung", "klusium", "knalpot", "knop", "knot", "koa", "koagel", "koagregasi", "koagulan", "koagulasi", "koak", "koaksi", "koaksial", "koala", "koalisi", "koana", "koar", "kobah", "kobak", "kobalamin", "kobalt", "kobar", "kober", "koboi", "koboisme", "kobok", "kobol", "kobongan", "kobra", "kocah-kacih", "kocak", "kocar-kacir", "kocek", "koci", "kocilembik", "kocoh", "kocok", "kocolan", "kocong", "kocor", "koda", "kodak", "kode", "kodein", "kodeks", "kodi", "kodifikasi", "kodok", "kodominan", "kodrat", "kodrati", "koe", "koedukasi", "koefisien", "koeksistensi", "koenzim", "koersi", "koersif", "kofaktor", "kofein", "kofermen", "kognat", "kognatif", "kognisi", "kognitif", "koh", "kohabitasi", "koheren", "koherensi", "kohesi", "kohesif", "kohir", "kohlea", "kohol", "kohong", "kohor", "koil", "koin", "koinseden", "koinsiden", "koinsidensi", "koipuk", "koit", "koitus", "koja", "kojah", "kojang", "kojoh", "kojol", "kojor", "kok", "koka", "kokah", "kokaina", "kokainisasi", "kokainisme", "kokang", "kokarde", "kokas", "koki", "kokila", "koklea", "kokoa", "kokoh", "kokok", "kokokbeluk", "kokol", "kokon", "kokosan", "kokot", "kokpit", "koksa", "koktail", "kokurikuler", "kokus", "kol", "kola", "kolaborasi", "kolaborator", "kolagen", "kolak", "kolam", "kolang-kaling", "kolaps", "kolaret", "kolase", "kolateral", "kolator", "kolega", "kolegial", "kolegialitas", "koleh-koleh", "kolek", "koleksi", "kolekte", "kolektif", "kolektivis", "kolektivisasi", "kolektivisme", "kolektivitas", "kolektor", "kolembeng", "kolemia", "koleng", "koleoptil", "kolera", "kolese", "kolesom", "kolesterin", "kolesterol", "koli", "kolibri", "koligasi", "kolik", "kolimasi", "kolina", "kolintang", "koliseng", "kolitis", "kolkhoz", "kolodion", "kolofon", "kologen", "koloid", "koloidal", "kolok", "kolokasi", "kolokium", "kolom", "kolomben", "kolon", "kolone", "kolonel", "kolong", "koloni", "kolonial", "kolonialis", "kolonialisme", "kolonis", "kolonisasi", "kolonoskop", "kolonye", "kolor", "kolorimeter", "kolorimetri", "kolosal", "kolosom", "kolostomi", "kolostrum", "kolot", "kolportir", "kolt", "kolum", "kolumela", "kolumnis", "kolumnus", "kolusi", "koluvium", "kom", "koma", "komaliwan", "koman", "komandan", "komandemen", "komanditer", "komando", "komaran", "komat-kamit", "kombat", "kombinasi", "kombo", "kombor", "kombusio", "komedi", "komedian", "komendur", "komeng", "komensal", "komensalisme", "komentar", "komentator", "komersial", "komersialisasi", "komet", "komfortabel", "komidi", "komik", "komikal", "komikus", "kominusi", "komis", "komisar", "komisariat", "komisaris", "komisi", "komisioner", "komisura", "komit", "komite", "komitmen", "komkoma", "komoditas", "komodo", "komodor", "kompak", "kompanyon", "komparasi", "komparatif", "komparator", "kompartemen", "kompas", "kompatibel", "kompatibilitas", "kompatriot", "kompendium", "kompeni", "kompensasi", "kompes", "kompeten", "kompetensi", "kompetisi", "kompetitif", "kompetitor", "kompi", "kompilasi", "kompilator", "komplain", "kompleks", "kompleksitas", "komplemen", "komplementer", "komplet", "komplikasi", "komplikatif", "komplimen", "komplot", "kompon", "komponen", "kompong", "komponis", "kompor", "kompos", "komposer", "komposisi", "komposit", "kompositum", "komprador", "komprang", "komprehensif", "kompres", "kompresi", "kompresor", "kompromi", "kompromistis", "kompulsi", "kompulsif", "komputer", "komputerisasi", "komtabilitas", "komunal", "komunalisme", "komunalistik", "komune", "komuni", "komunikabilitas", "komunikan", "komunikasi", "komunikatif", "komunikator", "komunike", "komunis", "komunisme", "komunistis", "komunistofobi", "komunistofobia", "komunitas", "komutator", "komuter", "konan", "konco", "koncoisme", "kondang", "kondangan", "konde", "kondektur", "kondensasi", "kondensat", "kondensator", "kondensor", "kondilus", "kondisi", "kondom", "kondominium", "kondomisasi", "kondor", "kondrin", "kondroblas", "konduite", "konduksi", "konduktans", "konduktimeter", "konduktivitas", "konduktor", "kondusif", "koneksi", "koneksitas", "konektor", "konfederasi", "konfeksi", "konferensi", "konfesi", "konfigurasi", "konfiks", "konfirmasi", "konflik", "konform", "konformitas", "konfrontasi", "konfrontatif", "kongenital", "kongesti", "kongkalikong", "kongko", "kongkoan", "kongkong", "kongkret", "konglomerasi", "konglomerat", "kongregasi", "kongres", "kongresis", "kongsi", "konifera", "konis", "konjugan", "konjugasi", "konjungsi", "konjungter", "konjungtif", "konjungtiva", "konjungtivitis", "konjungtor", "konjungtur", "konkaf", "konklaf", "konklusi", "konklusif", "konkologi", "konkomitan", "konkordansi", "konkordat", "konkresi", "konkret", "konkretisasi", "konkuisnador", "konkuren", "konkurensi", "konkurs", "konoid", "konon", "konosemen", "konotasi", "konotatif", "konperensi", "konsekrasi", "konsekuen", "konsekuensi", "konsekutif", "konseli", "konseling", "konselor", "konsensus", "konsentrasi", "konsentrat", "konsentrik", "konsentris", "konsep", "konsepsi", "konsepsional", "konseptor", "konseptual", "konseptualisasi", "konser", "konsertina", "konserto", "konservasi", "konservasionis", "konservatif", "konservatisme", "konservator", "konservatori", "konservatorium", "konsesi", "konsesif", "konsesional", "konsiderans", "konsiderasi", "konsili", "konsiliasi", "konsinyasi", "konsinyatir", "konsisten", "konsistensi", "konsistori", "konsol", "konsolasi", "konsolidasi", "konsonan", "konsonansi", "konsonantal", "konsorsium", "konspirasi", "konspiratif", "konspirator", "konstabel", "konstan", "konstanta", "konstantagravitasi", "konstatasi", "konstatatif", "konstatir", "konstelasi", "konstipasi", "konstituante", "konstituen", "konstitusi", "konstitusional", "konstitusionalisme", "konstriksi", "konstriktor", "konstruksi", "konstruktif", "konstruktivisme", "konsul", "konsulat", "konsulen", "konsuler", "konsultan", "konsultasi", "konsumen", "konsumer", "konsumerisme", "konsumsi", "konsumtif", "kontak", "kontal-kantil", "kontaminasi", "kontan", "kontang-kanting", "konte", "konteks", "kontekstual", "kontekstualisme", "kontemplasi", "kontemplatif", "kontemporer", "konten", "konter", "kontes", "kontestan", "kontet", "kontiguitas", "kontinen", "kontinental", "kontingen", "kontinu", "kontinuitas", "kontinum", "kontoid", "kontol", "kontra", "kontrabande", "kontrabas", "kontradiksi", "kontradiktif", "kontraindikasi", "kontrak", "kontraksi", "kontraktor", "kontraktual", "kontraproduktif", "kontras", "kontrasepsi", "kontraseptif", "kontravensi", "kontribusi", "kontributor", "kontrol", "kontrolir", "kontroversi", "kontroversial", "kontur", "konus", "konveks", "konveksi", "konvektif", "konvensi", "konvensional", "konvergen", "konvergensi", "konversasi", "konversi", "konveyor", "konvoi", "konvolusi", "konvulsan", "konvulsi", "konyak", "konyal", "konyan", "konyol", "kooperasi", "kooperatif", "kooperativisme", "kooperator", "kooptasi", "koordinasi", "koordinat", "koordinatif", "koordinator", "kop", "kopah", "kopaiba", "kopak", "kopal", "kopat-kapit", "kopbal", "kopek", "kopel", "kopelrim", "koper", "koperasi", "kopet", "kopi", "kopiah", "kopilot", "kopling", "koplo", "kopok", "kopolimer", "kopong", "kopra", "koprafagia", "koprak", "kopral", "koprok", "koprol", "koprolit", "kopula", "kopulasi", "kopulatif", "kopyok", "kopyor", "kor", "koral", "koralit", "koran", "korano", "korban", "korden", "kordial", "kordit", "kordon", "korduroi", "kored", "koreferensialitas", "korek", "koreke", "koreksi", "korektif", "korektor", "korelasi", "korelatif", "korenah", "koreng", "koreograf", "koreografer", "koreografi", "koreografis", "kores", "koresponden", "korespondensi", "koret", "koridor", "korion", "kornea", "kornel", "korner", "kornet", "koroh", "koroid", "korok", "korologi", "korona", "koronal", "koroner", "korong", "korosi", "korosif", "korporasi", "korporat", "korporatif", "korporatisme", "korps", "korpulensi", "korpus", "korsase", "korsel", "korselet", "korset", "korsleting", "korteks", "kortikulus", "korting", "kortison", "korugator", "korundum", "korup", "korupsi", "koruptif", "koruptor", "korve", "korvet", "kosak-kasik", "kosakata", "kosar", "kosbas", "kosek", "kosekan", "kosel", "kosen", "koset", "kosinus", "kosmetik", "kosmetilogi", "kosmetolog", "kosmetologi", "kosmetologis", "kosmis", "kosmogoni", "kosmografi", "kosmologi", "kosmologis", "kosmonaut", "kosmopolit", "kosmopolitan", "kosmopolitanisme", "kosmos", "kosmotron", "kosokbali", "kosong", "kostum", "kota", "kotah", "kotai", "kotak", "kotak-katik", "kotaklema", "kotek", "koteka", "koteks", "koteng", "koterek", "kotes", "kotiledon", "kotipa", "kotok", "kotong", "kotor", "kotrek", "kovalensi", "kover", "kowan", "kowek", "koyak", "koyam", "koyan", "koyok", "krai", "krakal", "kram", "krama", "kranapaksa", "krangeyan", "kraniologi", "kraniometri", "kraniotomi", "kranium", "krans", "krasis", "krayon", "kreasi", "kreatif", "kreativitas", "kreator", "krebo", "krecek", "kredibilitas", "kredit", "kreditabel", "kreditor", "kredo", "krem", "kremasi", "krematori", "krematorium", "kreol", "kreolin", "kreolisasi", "kreosol", "kresendo", "kresol", "kretin", "kribo", "kricak", "krida", "krifoli", "krim", "kriminal", "kriminalis", "kriminalisasi", "kriminalitas", "kriminolog", "kriminologi", "kriminologis", "kring", "krio", "kriofil", "kriofit", "kriogen", "kriogenika", "krioterapi", "kripta", "kriptogam", "kriptografi", "kriptogram", "kriptol", "kripton", "krisan", "krisantemum", "krisis", "krisma", "krisoberil", "krisofil", "krisolit", "krisopras", "krista", "kristal", "kristalisasi", "kristalografi", "kristaloid", "kristalosa", "kristen", "kristiani", "kristus", "kriteria", "kriterium", "kritik", "kritikus", "kritis", "kritisi", "kriya", "krobongan", "kroco", "kroket", "krol", "krom", "kromat", "kromatid", "kromatika", "kromatin", "kromatis", "kromatofor", "kromatografi", "kromit", "kromium", "kromo", "kromofil", "kromofob", "kromogen", "kromong", "kromosfer", "kromosom", "kromotropi", "krompyang", "kronem", "kroni", "kronik", "kroniometri", "kronis", "kronisme", "kronobiologi", "kronogram", "kronologi", "kronologis", "kronometer", "kronosekuen", "kronoskop", "krosboi", "kroto", "kru", "kruistik", "kruk", "krukat", "krusial", "krustasea", "ksatria", "ksi", "kuaci", "kuadran", "kuadrat", "kuadratika", "kuadratur", "kuadratus", "kuadrenium", "kuadriliun", "kuadripartit", "kuadrisep", "kuadrupel", "kuadrupleks", "kuadruplet", "kuah", "kuai", "kuak", "kuala", "kualat", "kuali", "kualifikasi", "kualitas", "kualitatif", "kualon", "kuang", "kuangkiut", "kuangwung", "kuantifikasi", "kuantitas", "kuantitatif", "kuantum", "kuap", "kuar", "kuari", "kuarik", "kuark", "kuarsa", "kuarsit", "kuart", "kuartal", "kuarter", "kuarterner", "kuartet", "kuartil", "kuarto", "kuas", "kuasa", "kuasar", "kuasi", "kuat", "kuatren", "kuau", "kuaya", "kuayah", "kuayan", "kubah", "kubak", "kubang", "kubik", "kubil", "kubin", "kubis", "kubisme", "kubistik", "kubit", "kuboid", "kubra", "kubti", "kubu", "kubul", "kubung", "kubur", "kubus", "kucai", "kucak", "kucam", "kucandan", "kucar-kacir", "kucek", "kucel", "kucica", "kucil", "kucindan", "kucing", "kucir", "kucup", "kucur", "kuda", "kudai", "kudang", "kudap", "kudeta", "kudi", "kudian", "kudis", "kudu", "kuduk", "kudung", "kudup", "kudus", "kue", "kueni", "kuesioner", "kuetiau", "kufu", "kufur", "kui", "kuih", "kuil", "kuilu", "kuin", "kuing", "kuini", "kuinina", "kuintal", "kuintesens", "kuintet", "kuintil", "kuintiliun", "kuintuplet", "kuir", "kuis", "kuit", "kuitansi", "kujang", "kujarat", "kujung", "kujur", "kujut", "kuk", "kukabura", "kukai", "kukang", "kukila", "kuku", "kukuh", "kukuk", "kukul", "kukup", "kukur", "kukuruyuk", "kukus", "kulah", "kulai", "kulak", "kulakasar", "kulan", "kulansing", "kulasentana", "kulat", "kulawangsa", "kuli", "kuliah", "kulik-kulik", "kulikat", "kulim", "kulimat", "kuliner", "kulintang", "kulir", "kulit", "kulkas", "kulminasi", "kulon", "kulot", "kult", "kultivar", "kultivasi", "kultur", "kultural", "kulturisasi", "kultus", "kulub", "kuluk", "kulum", "kulup", "kulur", "kulut", "kulzum", "kuma-kuma", "kumai", "kumal", "kuman", "kumandang", "kumanga", "kumat", "kumba", "kumbah", "kumbang", "kumbar", "kumbik", "kumbu", "kumbuh", "kumena", "kumico", "kuminter", "kumis", "kumkuma", "kumpai", "kumpal", "kumpar", "kumpi", "kumpul", "kumuh", "kumulasi", "kumulatif", "kumulonimbus", "kumulus", "kumur", "kumus", "kumut", "kunang-kunang", "kunani", "kunar-kunar", "kunarpa", "kunca", "kuncah", "kuncen", "kunci", "kuncir", "kuncit", "kuncung", "kuncup", "kundai", "kundang", "kundi", "kundur", "kunduran", "kunfayakun", "kung", "kungfu", "kungkang", "kungki", "kungkum", "kungkung", "kuning", "kuningan", "kunjung", "kuno", "kunta", "kuntau", "kuntilanak", "kuntit", "kuntuan", "kuntul", "kuntum", "kuntung", "kunut", "kunyah", "kunyam", "kunyit", "kunyuk", "kuorum", "kuosien", "kuota", "kup", "kupa", "kupahan", "kupak", "kupang", "kupas", "kupat", "kupat-kapit", "kupe", "kupel", "kupi", "kupil", "kuping", "kupir", "kuplet", "kupluk", "kupnat", "kupon", "kuproprotein", "kuprum", "kupu-kupu", "kupui", "kupur", "kur", "kura", "kurai", "kurambit", "kurang", "kurap", "kuras", "kurasani", "kurasao", "kuratif", "kurator", "kuratorium", "kurau", "kurawal", "kurban", "kurcaci", "kuren", "kuret", "kuretase", "kuria", "kuricak", "kurigram", "kurik", "kurikuler", "kurikulum", "kuring", "kuriositas", "kuripan", "kurir", "kuririk", "kurium", "kurkatovium", "kurkuma", "kurltase", "kurma", "kurs", "kursemangat", "kursi", "kursif", "kursor", "kursus", "kurtase", "kurun", "kurung", "kurus", "kuruyuk", "kurva", "kurvalinier", "kurvatur", "kus", "kusa", "kusal", "kusam", "kusanin", "kusat-mesat", "kusau", "kusen", "kusik", "kusir", "kuskus", "kuspis", "kusruk", "kusta", "kusu", "kusuf", "kusuk", "kusuma", "kusut", "kuta", "kutaha", "kutak", "kutang", "kutat", "kutat-kutet", "kuteks", "kuteri", "kuti", "kutik", "kutikula", "kutil", "kutin", "kuting", "kutip", "kutu", "kutub", "kutubaru", "kutubusitah", "kutuk", "kutung", "kutut", "kuud", "kuwu", "kuwuk", "kuwung-kuwung", "kuwur", "kuya", "kuyang", "kuyu", "kuyuh", "kuyup", "kwartet", "kwartir", "kwasiorkor", "kweni", "kwetiau", "kwosien", "laal", "lab", "laba", "labah-labah", "labak", "labang", "labas", "label", "labelum", "laberang", "labi-labi", "labial", "labialisasi", "labil", "labiodental", "labiovelar", "labirin", "labium", "laboran", "laboratoris", "laboratorium", "labrak", "labrakan", "labrang", "labres", "labrum", "labu", "labuda", "labuh", "labun", "labur", "labut", "lacak", "laci", "lacur", "lacut", "lada", "ladah", "ladam", "ladan", "ladang", "laden", "ladi", "lading", "ladu", "ladung", "lafal", "laga", "lagak", "lagam", "lagan", "lagang", "lagau", "lagi", "lagiah", "lago", "lagonder", "lagu", "laguh-lagah", "laguna", "lagwu", "lah", "lahab", "lahad", "lahak", "lahan", "lahang", "lahap", "lahar", "lahir", "lahiriah", "lai", "laici", "laif", "laik", "lailah", "lailatulkadar", "lain", "lais", "laja", "lajak", "lajang", "lajat", "lajnah", "laju", "lajur", "lak", "lakab", "lakak", "lakar", "lakara", "laken", "lakeri", "laki", "laklak", "laklakan", "lakmus", "laknat", "laknatullah", "lakon", "lakonik", "lakonisme", "lakrimator", "laksa", "laksamana", "laksana", "laksatif", "laksmi", "laktase", "laktasi", "laktat", "laktogen", "laktoglobulin", "laktometer", "lakton", "laktosa", "laku", "lakum", "lakuna", "lakur", "lakustrin", "lala", "lalah", "lalai", "lalak", "lalandak", "lalang", "lalap", "lalat", "lalau", "laler", "lali", "lalim", "lalu", "lalu-lalang", "lam", "lama", "lamalif", "laman", "lamang", "lamar", "lamat-lamat", "lambai", "lambak", "lamban", "lambang", "lambar", "lambat", "lambda", "lambe", "lambert", "lambit", "lambo", "lambu", "lambuk", "lambung", "lambur", "lamdukpai", "lamela", "lamender", "lamin", "lamina", "laminah", "laminasi", "laminating", "lampai", "lampam", "lampan", "lampang", "lampar", "lampas", "lampau", "lampeni", "lampes", "lampias", "lampik", "lampin", "lamping", "lampion", "lampir", "lampit", "lampok", "lampor", "lampu", "lampung", "lampus", "lamtoro", "lamtoronisasi", "lamun", "lamur", "lamusir", "lana", "lanang", "lanar", "lanau", "lanbau", "lanca", "lancang", "lancap", "lancar", "lancia", "lancing", "lancip", "lancit", "lancong", "lancung", "lancur", "lancut", "landa", "landahur", "landai", "landak", "landang", "landap", "landas", "landau", "landors", "landrad", "landuk", "landung", "landur", "lang", "langah", "langak-languk", "langau", "langen", "langendrian", "langenswara", "langgah", "langgai", "langgam", "langgan", "langgang", "langgar", "langgas", "langgayan", "langgeng", "langguk", "langgung", "langi", "langir", "langis", "langit", "langka", "langkah", "langkai", "langkan", "langkang", "langkap", "langkara", "langkas", "langkat", "langkau", "langking", "langkisan", "langkitang", "langkong", "langkup", "langlai", "langlang", "langsai", "langsam", "langsang", "langsar", "langsat", "langse", "langseng", "langsep", "langsi", "langsing", "langsir", "langsuir", "langsung", "langu", "langut", "lanhir", "lanja", "lanjai", "lanjak", "lanjam", "lanjang", "lanjar", "lanjau", "lanji", "lanjuk", "lanjung", "lanjur", "lanjut", "lanolin", "lanset", "lansia", "lansir", "lanskap", "lantah", "lantai", "lantak", "lantam", "lantan", "lantang", "lantanum", "lantar", "lantas", "lantera", "lantesari", "lantik", "lantin", "lanting", "lantip", "lantun", "lantung", "lantur", "lanugo", "lanun", "lanus", "lanyah", "lanyak", "lanyau", "laocu", "laos", "laoteng", "lap", "lapah", "lapak", "lapang", "lapar", "laparoskop", "laparoskopi", "lapat-lapat", "lapektomi", "lapel", "lapih", "lapik", "lapili", "lapir", "lapis", "lapislazuli", "lapo", "lapor", "laptop", "lapuk", "lapun", "lapur", "lara", "larah", "larai", "larak", "laram", "larang", "larap", "laras", "larat", "larau", "largisimo", "largo", "lari", "larih", "larik", "laring", "laringal", "laringitis", "laringoskop", "laris", "larnaks", "laron", "lars", "laru", "larung", "larut", "larva", "larvarium", "las", "lasa", "lasah", "lasak", "lasana", "lasat", "laser", "lasi", "lasinia", "laskar", "laso", "lasparaginase", "lasuh", "lat", "lata", "latah", "latak", "latam", "latar", "latas", "lateks", "laten", "latensi", "lateral", "laterit", "latif", "latifundium", "latih", "lating", "latis", "latma", "latosol", "latuh", "latuk", "latung", "latur", "lauh", "lauk", "laun", "laung", "laur", "laut", "lauya", "lava", "lavase", "lavendel", "lavender", "lawa", "lawah", "lawak", "lawalata", "lawamah", "lawan", "lawang", "lawar", "lawas", "lawat", "lawazim", "lawe", "lawean", "lawi", "lawina", "lawon", "lawrensium", "layah", "layak", "layam", "layan", "layang", "layap", "layar", "layas", "layat", "layer", "layon", "layu", "layuh", "layuk", "layung", "layur", "layut", "laza", "lazim", "lazuardi", "leak", "lebah", "lebai", "lebak", "lebam", "leban", "lebang", "lebap", "lebar", "lebaran", "lebas", "lebat", "leber", "lebih", "lebuh", "lebuk", "lebum", "lebun", "lebung", "lebur", "lecah", "lecak", "lecap", "lecat", "leceh", "lecek", "lecer", "lecet", "leci", "lecit", "leco", "lecok", "lecuh", "lecun", "lecup", "lecur", "lecut", "ledak", "ledang", "ledek", "ledeng", "ledes", "leding", "ledos", "ledre", "leduk", "ledung", "lefa", "lega", "legak-legok", "legal", "legalisasi", "legalitas", "legam", "legap", "legar", "legasi", "legasteni", "legat", "legataris", "legato", "legator", "lege", "legek", "legen", "legenda", "legendaris", "leger", "leges", "leghorn", "legi", "legih", "legio", "legislasi", "legislatif", "legislator", "legisme", "legit", "legitimaris", "legitimas", "legitimasi", "legitimitas", "legiun", "lego", "legok", "legong", "legu", "legum", "legunder", "legundi", "legung", "legup-legup", "leha-leha", "lehar", "leher", "lei", "leja", "lejang", "lejar", "lejas", "lejit", "lejok", "leka", "lekah", "lekak-lekuk", "lekam", "lekang", "lekap", "lekap-lekup", "lekar", "lekas", "lekat", "lekemia", "lekir", "lekit", "lekok", "lekosit", "leksem", "leksikal", "leksikograf", "leksikografi", "leksikografis", "leksikolog", "leksikologi", "leksikon", "leksikostatistik", "leksis", "lekton", "lektor", "lektur", "leku", "lekuh-lekih", "lekuk", "lekum", "lekun", "lekung", "lekup-lekap", "lela", "lelabah", "lelah", "lelai", "lelaki", "lelancur", "lelang", "lelangon", "lelangse", "lelap", "lelar", "lelas", "lelat", "lelatu", "lelawa", "lele", "leleh", "lelembut", "lelemuku", "lelep", "leler", "leles", "lelet", "lelewa", "leli", "lelonobroto", "leluasa", "lelucon", "leluhur", "leluing", "lelung", "lelungit", "leluri", "lem", "lema", "lemah", "lemak", "lemang", "lemari", "lemas", "lemata", "lemau", "lembaga", "lembah", "lembai", "lembak", "lembam", "lemban", "lembang", "lembap", "lembar", "lembayung", "lembega", "lembek", "lembeng", "lembidang", "lembing", "lembok", "lembora", "lembu", "lembung", "lembur", "lemburu", "lembut", "lemena", "lemender", "lemes", "lemidi", "lemo", "lemon", "lempah", "lempai", "lempang", "lempap", "lempar", "lempari", "lempaung", "lempem", "lempenai", "lempeng", "lemper", "lemping", "lempit", "lempoh", "lempuh", "lempuk", "lempung", "lempuyang", "lempuyangan", "lemur", "lemuru", "lemusir", "lena", "lenan", "lencana", "lencang", "lenceng", "lencet", "lenci", "lencir", "lencit", "lencong", "lencun", "lenda", "lendaian", "lendeh", "lender", "lendir", "lendot", "lendung", "lendut", "leng", "lenga", "lengah", "lengai", "lengak", "lengan", "lengang", "lengar", "lengas", "lengat", "lenge", "lenggak", "lenggana", "lengganan", "lenggang", "lenggara", "lenggek", "lengger", "lenggok", "lenggong", "lenggor", "lenggundi", "lenggut", "lengit", "lengkai", "lengkanas", "lengkang", "lengkap", "lengkara", "lengkeng", "lengkesa", "lengket", "lengkiang", "lengking", "lengkitang", "lengkok", "lengkong", "lengkuas", "lengkung", "lengkur", "lengoh", "lengong", "lengos", "lengseng", "lengser", "lengset", "lenguh", "lengung", "lening", "lenis", "lenitrik", "lenja", "lenjan", "lenjaran", "lenjing", "lenjuang", "lenong", "lenor", "lens", "lensa", "lenser", "lenset", "lenso", "lentam-lentum", "lentang", "lentang-lentok", "lenteng", "lentera", "lentik", "lenting", "lentisel", "lentoid", "lentok", "lentong", "lentuk", "lentum", "lentung", "lentur", "lentus", "lenung", "lenyah", "lenyai", "lenyak", "lenyap", "lenyau", "lenyeh", "lenyet", "lenyut", "leo", "leonid", "leontin", "leot", "lepa", "lepai", "lepak", "lepang", "lepap", "lepas", "lepat", "lepau", "lepe", "lepek", "leper", "leperi", "lepes", "lepet", "lepih", "lepik", "lepit", "leplap", "lepoh", "lepok", "lepot", "lepra", "leproma", "lepromin", "leproseri", "leptodos", "leptoskop", "leptosom", "lepu", "lepuh", "lepuk", "lepur", "lerah", "lerai", "lerak", "lerang", "lerap", "lereng", "leret", "lerok", "lerot", "lerum", "les", "lesa", "lesak", "lesan", "lesang", "lesap", "lesat", "lesbi", "lesbian", "lesbianisme", "leseh", "lesek", "leset", "lesi", "lesing", "lesir", "lesit", "lesitin", "lesitina", "lesnar", "lesot", "lesplang", "lestari", "lestek", "lesterung", "lesu", "lesung", "lesus", "lesut", "leta", "letai", "letak", "letal", "letalitas", "letang", "letargi", "lete-lete", "letek", "leter", "leterseter", "letih", "letik", "leting", "letis", "letnan", "letoi", "letos", "letraset", "letuk", "letum", "letung", "letup", "letur", "letus", "leuca", "leukemia", "leukoderma", "leukofit", "leukoma", "leukonisia", "leukopenia", "leukoplakia", "leukore", "leukorea", "leukosit", "leukositometer", "leukositosis", "level", "lever", "leveransir", "levertran", "levirat", "levitin", "levulosa", "lewa", "lewah", "lewar", "lewat", "lewisid", "lewu", "leyeh", "leyot", "lezat", "liabilitas", "lian", "liana", "liang", "liangliong", "liar", "lias", "liat", "liau", "libas", "libat", "libei", "liberal", "liberalis", "liberalisasi", "liberalisme", "liberalistis", "liberasi", "liberator", "libero", "libidis", "libido", "libitum", "libra", "librasi", "libreto", "libur", "licak", "licau", "lici", "licik", "licin", "licurai", "lid", "lidah", "lidas", "lidi", "lidid", "lifo", "lift", "lifter", "liga", "ligamen", "ligan", "ligar", "ligas", "ligasi", "ligat", "ligatur", "ligih", "lignin", "lignit", "lignoselulosa", "lignosulfonat", "lignotuber", "lihai", "lihat", "lik", "likantropi", "likas", "likat", "likir", "liku", "likuid", "likuida", "likuidasi", "likuiditas", "likur", "likut", "lil", "lila", "lilah", "lilan", "lilau", "lili", "lilin", "liliput", "lilit", "lillahi", "lima", "liman", "limar", "limas", "limau", "limbah", "limbai", "limbak", "limban", "limbang", "limbat", "limbing", "limbubu", "limbuk", "limbung", "limbur", "limfa", "limfadema", "limfadenitis", "limfadenoma", "limfadenosis", "limfaderitis", "limfangioma", "limfatik", "limfoblartoma", "limfoblas", "limfoblastoma", "limfografi", "limfoma", "limfonodus", "limfopenia", "limfosit", "limfositopenia", "limfositosis", "limit", "limitasi", "limitatif", "limnetik", "limnologi", "limnoplankton", "limpa", "limpah", "limpap", "limpapas", "limpas", "limpau", "limpit", "limpoh", "limpung", "limun", "limusin", "limut", "lin", "linang", "linau", "lincah", "lincak", "lincam", "lincir", "lincun", "lindak", "lindang", "lindap", "lindas", "lindik", "lindis", "lindu", "lindung", "lindur", "linear", "linen", "ling", "lingar", "lingat", "lingga", "linggam", "linggata", "linggayuran", "linggi", "linggis", "lingkap", "lingkar", "lingkawa", "lingkis", "lingkung", "lingkup", "linglung", "lingsa", "lingsang", "lingsir", "lingsu", "lingua", "linguafon", "linguis", "linguistik", "lini", "linier", "linimen", "lining", "linjak", "linoleum", "linsang", "lintabung", "lintadu", "lintah", "lintang", "lintap", "lintar", "lintas", "lintibang", "linting", "lintir", "lintuh", "lintup", "linu", "linuhung", "linyak", "linyar", "lio", "liofilisasi", "liong", "liontin", "lipai", "lipan", "lipas", "lipase", "lipat", "lipektomi", "lipemia", "lipid", "lipiodol", "lipit", "liplap", "lipoksidase", "lipolisis", "lipoprotein", "lipstik", "lipu", "lipur", "liput", "lir", "lira", "lirida", "lirih", "lirik", "liris", "lis", "lisah", "lisan", "lisani", "lisensi", "lisimeter", "lisis", "lisol", "lisong", "lisplang", "lister", "listeria", "listrik", "lisu", "lisus", "lisut", "litah", "litak", "litani", "liter", "literator", "literer", "litium", "litografi", "litologi", "litoral", "litosfer", "litotes", "litotomi", "litsus", "liturgi", "liturgis", "liuk", "liung-liung", "liur", "liut", "liver", "liwa", "liwan", "liwat", "liwet", "loak", "lob", "loba", "lobak", "loban", "loberci", "lobi", "lobster", "locok", "locot", "lodan", "lodeh", "lodoh", "lodong", "log", "logam", "logaritma", "logat", "logawiah", "logika", "logis", "logistik", "logo", "logogram", "logopedia", "logotip", "loh", "loha", "lohok", "lohor", "loji", "lok", "loka", "lokacipta", "lokakarya", "lokal", "lokalis", "lokalisasi", "lokan", "lokananta", "lokap", "lokasi", "lokastiti", "lokatif", "lokatikranta", "lokatraya", "lokawarta", "lokawidura", "lokawigna", "lokawiruda", "lokawisata", "lokcuan", "lokek", "lokeswara", "loket", "loki", "lokia", "lokika", "lokio", "loklok", "lokomobil", "lokomotif", "lokos", "loksek", "loksun", "loktong", "lokus", "lokusi", "lolak", "loleng", "loloh", "lolohan", "lolong", "lolos", "lomba", "lombar", "lombok", "lombong", "lomek", "lomot", "lompat", "lompayang", "lompok", "lompong", "lonan", "loncat", "loncek", "lonceng", "loncer", "lonco", "loncos", "londang", "londong", "loneng", "long", "longak-longok", "longdres", "longgar", "longgok", "longgor", "longitudinal", "longo", "longok", "longong", "longser", "longsor", "longtorso", "lonjak", "lonjong", "lonjor", "lonsong", "lontai", "lontang-lanting", "lontang-lantung", "lontar", "lontara", "lonte", "lontok", "lontong", "lonyok", "lop", "lopak", "lopek", "loper", "lopis", "lopor", "lor", "lorah", "loran", "lorat", "lorber", "lorek", "loreng", "lori", "lornyet", "lorong", "lorot", "los", "lose", "losin", "losion", "losmen", "loso", "losong", "lot", "lota", "lotak", "lotek", "loteng", "lotis", "lotong", "lotre", "lotus", "lowong", "loya", "loyak", "loyal", "loyalis", "loyalitas", "loyang", "loyar", "loyo", "loyong", "lozenge", "luah", "luak", "luang", "luap", "luar", "luas", "luat", "luban", "lubang", "luber", "lubuk", "lucah", "lucu", "lucup", "lucut", "ludah", "ludat", "ludes", "luding", "ludruk", "lues", "lugas", "lugu", "lugut", "luhak", "luhmahful", "luhung", "luhur", "luih", "luik", "luing", "luk", "luka", "lukah", "lukat", "lukeh", "lukis", "luks", "luku", "lukut", "lulai", "luli", "luluh", "luluk", "lulum", "lulup", "lulur", "lulus", "lulut", "lum", "lumai", "lumang", "lumar", "lumas", "lumat", "lumayan", "lumba-lumba", "lumbal", "lumbu", "lumbung", "lumen", "lumer", "lumi-lumi", "luminositas", "lumpang", "lumpektomi", "lumpia", "lumping", "lumpuh", "lumpuk", "lumpur", "lumrah", "lumsum", "lumuh", "lumur", "lumus", "lumut", "lunak", "lunas", "lunau", "luncai", "luncas", "luncung", "luncur", "lundang", "lundi", "lundu", "luner", "lung", "lungguh", "lungkah", "lungkang", "lungkum", "lunglai", "lunglung", "lungsar", "lungse", "lungsin", "lungsung", "lungsur", "lungun", "lunjur", "lunta", "luntang", "luntang-lantung", "luntas", "luntur", "lunyah", "lunyai", "lup", "lupa", "lupat", "lupi", "lupuh", "lupuk", "lupung", "lupus", "luput", "lurah", "lurik", "luru", "lurub", "luruh", "lurus", "lurut", "lus", "lusa", "lusin", "lustrum", "lusuh", "lut", "lutetium", "luti", "lutu", "lutung", "lutut", "luweng", "luwes", "luyak", "luyu", "luyut", "maab", "maaf", "mabriuk", "mabrur", "mabuh", "mabuk", "mabul", "macakal", "macam", "macan", "macapat", "mace", "macet", "macis", "mad", "mada", "madah", "madali", "madam", "madang", "madani", "madar", "madat", "madewi", "madi", "madia", "madik", "madinding", "madmadah", "mado", "madona", "madras", "madrasah", "madu", "madukara", "madumangsa", "madya", "maesan", "maesenas", "maestro", "mafela", "mafhum", "mafia", "mafioso", "mafsadah", "mafsadat", "mag", "magainin", "magalah", "magandi", "magang", "magasin", "magel", "magenta", "magersari", "magfirah", "magfirat", "magi", "magis", "magister", "magistrat", "maglub", "magma", "magnesium", "magnesol", "magnet", "magnetik", "magnetika", "magnetis", "magnetisme", "magnetit", "magnetometer", "magnetor", "magnetostatika", "magnitudo", "magrib", "magribi", "magrur", "magun", "mah", "maha", "mahabah", "mahabintang", "mahadewa", "mahadewi", "mahaduta", "mahaguru", "mahah", "mahajana", "mahakala", "mahakarya", "mahakuasa", "mahal", "mahamen", "mahamenteri", "mahamulia", "mahang", "mahaparana", "mahapatih", "mahar", "maharaja", "maharajalela", "maharana", "maharani", "mahardika", "maharesi", "maharupa", "mahasiswa", "mahasiswi", "mahasuci", "mahatahu", "mahatma", "mahatur", "mahayana", "mahbub", "mahbubah", "mahbubat", "mahdi", "maherat", "mahesa", "maheswara", "mahfuz", "mahia", "mahimahi", "mahir", "mahkamah", "mahkota", "mahligai", "mahmud", "mahoni", "mahraj", "mahram", "mahsul", "mahsyar", "mahwu", "mahyong", "mahzurat", "mai", "maido", "maimun", "main", "mair", "mairat", "maizena", "maja", "majaan", "majakane", "majakaya", "majakeling", "majal", "majalah", "majas", "majasi", "majati", "majedub", "majekeling", "majelis", "majemuk", "majenun", "majikan", "majir", "majizat", "majong", "maju", "majuh", "majuj", "majun", "majung", "majusi", "maka", "makadam", "makadasang", "makadok", "makalah", "makalangkang", "makam", "makan", "makantah", "makantuh", "makanya", "makao", "makaopo", "makar", "makara", "makaroni", "makas", "makbud", "makbul", "makcik", "makcomblang", "makda", "makdan", "makelar", "makerel", "maket", "makhdum", "makhluk", "makhraj", "maki", "makin", "making", "makiyah", "makjuj", "maklaf", "maklum", "maklumat", "maklun", "makmal", "makmum", "makmur", "makna", "maknawi", "makramat", "makrame", "makrifat", "makrifatullah", "makro", "makroekonomi", "makrofita", "makrofotografi", "makroftalmus", "makrogametosit", "makrohistori", "makrokosmos", "makrokriminologi", "makrolinguistik", "makromelia", "makrometeorologi", "makromolekul", "makrosefalik", "makroskopis", "makrosmatik", "makrosmatis", "makrososiologi", "makruf", "makruh", "maksi", "maksiat", "maksila", "maksim", "maksimal", "maksimum", "maksud", "maksum", "maktab", "maktub", "makua", "makul", "makula", "makulat", "makurung", "makuta", "makyong", "makzul", "mal", "mala", "malabau", "malabsorpsi", "malafide", "malafungsi", "malagandang", "malagizi", "malah", "malai", "malaik", "malaikat", "malaikatulmaut", "malaise", "malak", "malaka", "malakama", "malakat", "malakit", "malakofili", "malakologi", "malakut", "malam", "malan", "malang", "malangbang", "malap", "malapari", "malapetaka", "malapraktek", "malapraktik", "malar", "malaria", "malas", "malasia", "malasuai", "malatindak", "malau", "maldistribusi", "male", "maleman", "maleo", "maleolus", "mali-mali", "maligai", "malih", "malik", "maliki", "malikuljabar", "malikulmuluk", "malim", "maling", "malis", "malisol", "malka", "malnutrisi", "maloklusi", "malt", "maltase", "maltosa", "malu", "malun", "malung", "mam", "mama", "mamah", "mamai", "mamak", "mamalia", "maman", "mamanah", "mamanda", "mamang", "mamano", "mamat", "mambang", "mambek", "mambo", "mambruk", "mambu", "mambung", "mamduhah", "mami", "mamik", "mamlakat", "mamografi", "mampai", "mampat", "mampir", "mampu", "mampung", "mampus", "mamut", "man", "mana", "manah", "manai", "manajemen", "manajer", "manajerial", "manakala", "manakan", "manakib", "manalagi", "manasik", "manasongo", "manasuka", "manau", "mancanegara", "mancawarna", "manci", "mancis", "mancung", "mancur", "manda", "mandah", "mandai", "mandala", "mandalika", "mandam", "mandar", "mandarin", "mandat", "mandataris", "mandau", "mandeh", "mandek", "mandelevium", "mandi", "mandibula", "mandil", "mandir", "mandiri", "mandolin", "mandor", "mandraguna", "mandril", "mandrin", "mandul", "mandung", "maneken", "manerisme", "manfaat", "mang", "mangan", "mangap", "mangas", "mangau", "mangayubagya", "mangga", "manggah", "manggala", "manggar", "manggis", "manggung", "mangir", "mangkak", "mangkanya", "mangkar", "mangkas", "mangkat", "mangkel", "mangkih", "mangkir", "mangkok", "mangkubumi", "mangkuk", "mangkus", "mangsa", "mangsi", "mangu", "mangun", "mangut", "mani", "mania", "maniak", "manifes", "manifestasi", "manifesto", "manik", "manik-depresif", "manikam", "manikdepresi", "manikmaya", "manikur", "manila", "manimba", "manipol", "manipulasi", "manipulatif", "manipulator", "manira", "manis", "manise", "manja", "manjapada", "manjau", "manjeri", "manjing", "manjung", "manjur", "manol", "manometer", "manora", "manostat", "manset", "mansiang", "mansukh", "manta", "mantan", "mantap", "mantari", "mantel", "manten", "manti", "mantik", "mantiki", "mantisa", "mantissa", "mantra", "mantram", "mantri", "mantu", "mantuk", "manual", "manufaktur", "manufakturing", "manuk", "manumisio", "manumpak", "manunggal", "manusia", "manusiawi", "manuskrip", "manut", "manuver", "manuwa", "manyala", "manyar", "manzil", "manzilah", "maois", "map", "mapak", "mapalus", "mapan", "mar", "mara", "marah", "maraja", "marak", "marakas", "marambung", "maramus", "maranta", "marapulai", "maras", "maraton", "marbling", "marbut", "marcapada", "mardatilah", "mardatillah", "mardud", "mare", "marem", "maret", "marfuk", "marga", "margalit", "margarin", "margasatwa", "margin", "marginal", "marginalisasi", "marginalisme", "margrit", "marhaban", "marhaen", "marhaenis", "marhaenisme", "marhum", "marhumah", "mari", "maria", "marikan", "marikh", "marikultur", "marimu", "marina", "marinade", "marine", "marinir", "marinyo", "marinyu", "marital", "maritim", "mariyuana", "marjik", "marjinal", "mark", "marka", "markado", "markah", "markas", "markasit", "marketri", "markis", "markisa", "markoni", "markonis", "markusip", "marlin", "marmelade", "marmer", "marmot", "maro", "marpaud", "mars", "marsaoleh", "marsekal", "marsepen", "marsose", "martabak", "martaban", "martabat", "martandang", "martil", "martini", "martir", "maru", "marus", "marut", "marwas", "marxisme", "marzipan", "mas", "masa", "masai", "masak", "masakan", "masakat", "masala", "masalah", "masam", "masap", "masase", "masayu", "masbuk", "masdar", "masehi", "masektomi", "maser", "maserasi", "mashaf", "masif", "masih", "masin", "masinal", "masing-masing", "masinis", "masir", "masjid", "masjidilaksa", "masjidilharam", "maskanat", "maskapai", "maskara", "maskat", "maskawin", "masker", "maskodok", "maskon", "maskot", "maskulin", "maskulinitas", "maskumambang", "maslahat", "masnawi", "masohi", "masoi", "masokhis", "masokhisme", "masokisme", "mason", "masori", "masrum", "massa", "massal", "mastautin", "mastektomi", "master", "masterplan", "mastik", "mastitis", "mastodon", "mastuli", "masturbasi", "masuk", "masuliah", "masya", "masyakah", "masyarakat", "masygul", "masyhadat", "masyhur", "masyrik", "masyuk", "mat", "mata", "matador", "matahari", "matakao", "matalamat", "matan", "matang", "mate", "matematika", "matematikus", "matematis", "materi", "material", "materialistis", "materiil", "mati", "matine", "matlak", "matoa", "maton", "matra", "matras", "matres", "matriarkal", "matriarkat", "matriks", "matrikulasi", "matrilineal", "matrilokal", "matris", "matronim", "matros", "matu", "matur", "maturasi", "maturitas", "mau", "mauizah", "maujud", "maujudat", "maukhid", "maukif", "maukuf", "maula", "maulai", "maulana", "maulhayat", "maulid", "maulidurasul", "maulud", "maung", "maupun", "mausoleum", "maut", "mauz", "mawadah", "mawar", "mawas", "maweda", "mawin", "mawon", "mawut", "maya", "mayam", "mayang", "mayangda", "mayapada", "mayas", "mayat", "mayeng", "mayokratio", "mayones", "mayor", "mayoret", "mayoritas", "mayung", "mayur", "mazarin", "mazbah", "mazhab", "mazi", "mazkur", "mazmumah", "mazmur", "mbah", "mbak", "mbakyu", "mbeling", "mbok", "mbokmas", "meander", "mebel", "mecis", "medali", "medalion", "medan", "medang", "mede", "media", "medial", "median", "mediasi", "mediastinum", "mediator", "medik", "medikamentosa", "medikasi", "mediko", "medikolegal", "medikus", "medil", "medio", "medis", "medisinal", "medit", "meditasi", "mediterania", "medium", "medok", "medu", "medula", "medusa", "mega", "megabyte", "megafon", "megah", "megak", "megakredit", "megal-megol", "megalit", "megalitikum", "megalomania", "megalomaniak", "megalopolis", "megalosit", "megamerger", "megan", "megaohm", "megap-megap", "megapolis", "megaproyek", "megar", "megaspora", "megasporangium", "megasporofil", "megat", "megaton", "megatren", "megatruh", "megawatt", "meger", "megrek-megrek", "mei", "meiosis", "meja", "mejam", "mejan", "mejana", "mejeng", "mek", "mekanik", "mekanika", "mekanikgraha", "mekanis", "mekanisasi", "mekanisme", "mekanolinguistik", "mekap", "mekar", "meko", "mekonium", "mel", "melabuai", "melambang", "melamin", "melanesia", "melangkup", "melanin", "melanisme", "melankolia", "melankolis", "melankonis", "melanoderma", "melar", "melarat", "melas", "melase", "melasma", "melati", "melawah", "melayu", "melek", "melela", "melempem", "meleng", "meler", "melesek", "meleset", "melik", "melilin", "melinjo", "melintir", "melit", "melitofili", "meliwis", "melodi", "melodika", "melodius", "melodrama", "melodramatik", "melodramatis", "melompong", "melon", "melor", "melotot", "melpari", "melukut", "melulu", "melur", "mem", "memang", "memar", "membal", "memble", "membran", "memedi", "memek", "memelas", "memo", "memoar", "memorabilia", "memorandum", "memorat", "memori", "memorial", "mempan", "mempelai", "mempelam", "mempelas", "mempelasari", "mempening", "memper", "mempitis", "memplak", "mempurung", "memutah", "mena", "menaga", "menak", "menampun", "menang", "menantu", "menara", "menat", "mencak", "mencelat", "menceng", "menceret", "mencit", "mencla-mencle", "menclok", "mencok", "mencong", "mencos", "mencret", "mendak", "mendap", "mendapa", "mendeleka", "mendelevium", "mendeng", "mendiang", "mendikai", "mending", "mendira", "mendoan", "mendonan", "mendong", "mendreng", "mendu", "mendung", "mendur", "mendura", "mendut", "menep", "menepaat", "mengah", "mengangah", "mengap", "mengapa", "mengapmendam", "mengeh", "mengerawan", "mengerna", "menget", "mengga", "menggala", "menggusta", "mengi", "mengiang", "mengicip", "mengirat", "mengkal", "mengkali", "mengkara", "mengkaras", "mengkelan", "mengkerang", "mengkeret", "mengking", "mengkirai", "mengkirik", "mengkis", "mengkona", "mengkuang", "mengkudu", "mengok", "mengor", "mengot", "mengsol", "mengsong", "mengung", "menhir", "meni", "meningitis", "menir", "meniran", "meniskus", "menit", "menjangan", "menong", "menopause", "menor", "menoragia", "menostaksis", "mens", "menserendahi", "mensiang", "menstruasi", "mensurasi", "mentah", "mentak", "mental", "mentalitas", "mentang", "mentari", "mentaruh", "mentas", "mentaus", "mentega", "menteleng", "menteng", "mentereng", "menteri", "mentibu", "mentifakta", "mentigi", "mentilau", "mentimun", "mentis", "mentok", "mentol", "mentolo", "mentor", "mentora", "mentua", "mentul", "menu", "menuet", "menung", "menur", "meong", "mepet", "meracang", "meraga", "meragi", "merah", "merajak", "merak", "merakan", "meralgia", "merambai", "merambung", "merana", "merang", "meranggi", "merangsi", "merangu", "meranti", "merapu", "merat", "merawal", "merawan", "merbah", "merbau", "merbaya", "merbuk", "merbulan", "mercak-mercik", "mercon", "mercu", "mercusuar", "merdangga", "merdeka", "merdesa", "merdinah", "merdu", "merduk", "mere", "merek", "mereka", "merem", "merembung", "mereng", "meres", "mergat", "merger", "mergul", "meri", "meriam", "meriang", "merica", "meridian", "merih", "merik", "merikan", "merikarp", "merinding", "mering", "meristem", "merjan", "merkah", "merkantilisme", "merkubang", "merkuri", "merkurium", "merkurius", "merkuro", "merkurokrom", "merlilin", "merlimau", "merogoni", "merosot", "merot", "merpati", "merpaud", "merpitis", "merpoyan", "merserisasi", "mersik", "merta", "mertamu", "mertapal", "mertayam", "mertega", "mertelu", "mertua", "meru", "meruap", "merubi", "merunggai", "merut", "merwatin", "mes", "mesa", "mesan", "mesara", "mesem", "mesin", "mesiu", "mesjid", "meskalin", "meskalina", "meski", "mesmerisme", "mesoderm", "mesodermik", "mesofili", "mesofit", "mesolitik", "mesolitikum", "mesometeorologi", "mesomorf", "meson", "mesopause", "mesosfer", "mesotel", "mesotoraks", "mesozoa", "mesozoikum", "mesra", "mester", "mesti", "mestika", "mestizo", "mesui", "mesum", "mesut", "meta", "metabahasa", "metabolik", "metabolis", "metabolisme", "metabolit", "metafil", "metafisik", "metafisika", "metafora", "metaforis", "metah", "metai", "metal", "metalik", "metalinguistik", "metalografi", "metaloid", "metalurgi", "metalurgis", "metamorf", "metamorfis", "metamorfisme", "metamorfosis", "metana", "metanefros", "metanol", "metari", "metasenter", "metastasis", "metatarsus", "metatesis", "metazoa", "mete", "meteor", "meteorit", "meteorograf", "meteorogram", "meteoroid", "meteorologi", "meteorologis", "meter", "meterai", "metil", "metode", "metodik", "metodis", "metodologi", "metonimi", "metonimia", "metrik", "metris", "metro", "metrologi", "metromini", "metronimik", "metronom", "metronomis", "metropolis", "metropolisasi", "metropolitan", "metroragia", "metrum", "meunasah", "mewah", "mewari", "mewek", "mezanin", "mezbah", "mezosopran", "mi", "miak", "miana", "miang", "miap", "miasma", "midar", "midi", "midik", "midodareni", "mieloma", "migrain", "migran", "migrasi", "migren", "mihrab", "mihun", "miiofili", "mijil", "miju", "mik", "mika", "mikat", "mikologi", "mikoprotein", "mikosis", "mikotoksin", "mikraj", "mikro", "mikroanalisis", "mikroangiopati", "mikrob", "mikrobe", "mikrobiologi", "mikrobiologis", "mikrobisida", "mikrobus", "mikroekonomi", "mikroelektronika", "mikroelemen", "mikrofag", "mikrofarad", "mikrofilm", "mikrofita", "mikrofon", "mikrofotografi", "mikrogelombang", "mikrograf", "mikrografika", "mikrogram", "mikrohabitat", "mikrohistori", "mikrohm", "mikroklimat", "mikrokomputer", "mikrokosmos", "mikrolet", "mikrolinguistik", "mikrolit", "mikrom", "mikromanipulasi", "mikrometer", "mikrometri", "mikron", "mikroorganisme", "mikroprosesor", "mikrosefalia", "mikrosekon", "mikroskop", "mikroskopis", "mikrospora", "mikrotom", "mikrovilus", "mikrowatt", "mikser", "miksoedema", "mil", "milad", "milenium", "miliampere", "miliar", "miliarder", "miliaria", "milibar", "milieu", "miligram", "milik", "mililiter", "milimeter", "milimikron", "milimol", "milioner", "milir", "milisi", "militan", "militansi", "militer", "militerisme", "militeristis", "miliun", "miliuner", "milivolt", "milu", "mim", "mimbar", "mimeograf", "mimesis", "mimi", "mimik", "mimikri", "mimis", "mimisan", "mimosa", "mimpi", "min", "mina", "minangsraya", "minat", "minder", "mindi", "mindoan", "mindring", "mineral", "mineralisasi", "mineralogi", "mineralogis", "minggat", "minggir", "minggu", "minhaj", "mini", "miniatur", "minibasket", "minibus", "minikar", "minikata", "minikomputer", "minim", "minimal", "minimarket", "minimum", "minium", "minor", "minoritas", "minta", "mintak", "mintakat", "mintakulburuj", "mintal", "minterat", "mintuna", "minum", "minus", "minyak", "mioglobin", "miokardia", "mioma", "miop", "miopia", "miosis", "miotik", "mipis", "mirah", "mirai", "mirakel", "mirat", "miriapod", "mirih", "mirik", "miring", "mirip", "miris", "mirmekofag", "mirmekofili", "mirmekologi", "misa", "misai", "misal", "misan", "misantrop", "misbah", "misdinar", "misi", "misil", "misiologi", "misionaris", "misioner", "miskal", "miskin", "miskram", "misoa", "misofobia", "misogami", "misoginis", "mispersepsi", "miss", "mistar", "mister", "misteri", "misterius", "mistik", "mistis", "mistisisme", "mistri", "misuh", "miswat", "mitasi", "mite", "mitisida", "mitogen", "mitologi", "mitologis", "mitos", "mitosis", "mitra", "mitraliur", "mizab", "mizan", "mnemonik", "moa", "mob", "mobil", "mobilet", "mobilisasi", "mobilisator", "mobilitas", "moblong", "mobokrasi", "mochi", "modal", "modalitas", "modar", "mode", "model", "modeling", "modem", "moderamen", "moderat", "moderato", "moderator", "modern", "modernisasi", "modernisme", "modernitas", "modernomaniak", "modifikasi", "modifikatif", "modin", "modis", "modiste", "modol", "modul", "modular", "modulasi", "modulator", "modus", "mofet", "moga", "mogok", "mohair", "mohon", "mohor", "mojah", "mojang", "mok", "moka", "mokal", "moke", "moko", "moksa", "mol", "mola", "molar", "mole", "molek", "molekul", "molekuler", "moler", "moles", "molibden", "molibdenum", "molor", "molos", "molotov", "moluska", "momen", "momental", "momentum", "momok", "momong", "momot", "monarki", "moncong", "moncor", "mondar-mandir", "mondeling", "mondial", "mondok", "mondolan", "mondong", "monel", "moneter", "mong", "monggo", "monggol", "mongkok", "mongmong", "mongolisme", "mongoloid", "monisme", "monitor", "mono", "monoatom", "monodi", "monodrama", "monofag", "monofobia", "monofonir", "monogam", "monogami", "monogini", "monografi", "monogram", "monokarpa", "monokel", "monokini", "monoklin", "monoklinal", "monokotil", "monokotiledon", "monokrasi", "monokrom", "monokromatis", "monokromator", "monoksida", "monokultur", "monolingual", "monolit", "monolitik", "monolog", "monoloyalitas", "monomania", "monomer", "monoploid", "monopoli", "monopolistik", "monopsoni", "monorel", "monosakarida", "monosem", "monosemantik", "monosemi", "monosilabel", "monosilabisme", "monosit", "monospermi", "monoteis", "monoteisme", "monotipe", "monoton", "monsinyur", "monster", "monstera", "monsun", "montase", "montering", "montir", "montit", "montok", "monumen", "monumental", "monyet", "monyong", "monyos", "mop", "mopela", "mopit", "morak", "moral", "moralis", "moralisasi", "moralisme", "moralistis", "moralitas", "morat-marit", "moratorium", "morbiditas", "morbili", "mordan", "moreng", "mores", "morf", "morfem", "morfemik", "morfemis", "morfin", "morfinis", "morfofonem", "morfofonemik", "morfofonemis", "morfofonologi", "morfogenesis", "morfologi", "mori", "moril", "mormon", "moron", "morong", "morse", "mortalitas", "mortar", "mortir", "mosaik", "mosi", "mosok", "moster", "mota", "motel", "motif", "motivasi", "motivator", "moto", "motor", "motorik", "motoris", "motorisasi", "motorsaikel", "moyang", "mozah", "mozaik", "mu", "mua", "muadin", "muai", "muak", "muakadah", "mual", "mualaf", "mualamat", "mualif", "mualim", "muamalah", "muamalat", "muanas", "muara", "muarikh", "muas", "muasasah", "muasir", "muat", "muazam", "muazin", "mubah", "mubalig", "mubaligah", "mubarak", "mubarat", "mubazir", "mubtadi", "mubut", "mucikari", "mud", "muda", "mudah", "mudakar", "mudarabah", "mudarat", "mudasir", "mudat", "mudigah", "mudik", "mudra", "mudun", "mufaham", "mufakat", "mufarik", "mufasal", "mufasir", "muflis", "mufrad", "mufsidin", "mufti", "mugabat", "muhabah", "muhadarah", "muhadat", "muhajat", "muhajir", "muhajirin", "muhal", "muhalil", "muhami", "muhammad", "muharam", "muhasabah", "muhib", "muhibah", "muhit", "muhlikah", "muhrim", "muhsin", "muhtasyam", "muih", "mujadalah", "mujadid", "mujahadat", "mujahid", "mujahidin", "mujair", "mujang", "mujarab", "mujarad", "mujari", "mujbir", "mujtahid", "mujtamak", "mujur", "muk", "muka", "mukabalah", "mukadam", "mukadas", "mukadim", "mukadimah", "mukadin", "mukadis", "mukah", "mukalaf", "mukalid", "mukaram", "mukatabah", "mukena", "mukhabarah", "mukhalaf", "mukhalafah", "mukhalif", "mukhalis", "mukhlis", "mukhtasar", "mukibat", "mukim", "mukimin", "mukjizat", "mukmin", "mukminat", "mukminin", "mukoprotein", "mukosa", "mukositis", "muktabar", "muktamad", "muktamar", "muktamirin", "muktazilah", "mukun", "mula", "mulai", "mulakat", "mulamasah", "mulas", "mulat", "mulato", "mulazamah", "mulhid", "mulia", "mullah", "mulsa", "multazam", "multibahasa", "multidimensi", "multidisipliner", "multietnik", "multifaset", "multifungsi", "multigravida", "multiguna", "multikompleks", "multikrisis", "multikultur", "multikulturalisme", "multilateral", "multilingual", "multilingualisme", "multimedia", "multimeter", "multimilioner", "multinasional", "multinegara", "multiorgan", "multipara", "multipel", "multipleks", "multiplikasi", "multiplikator", "multipolar", "multiprosesor", "multirasial", "multirasialisme", "multiseluler", "multivalen", "multivalensi", "multivitamin", "muluk", "mulur", "mulus", "mulut", "mumayiz", "mumbang", "mumbul", "mumbung", "mumet", "mumi", "mumifikasi", "mumpung", "mumpuni", "mumuk", "mumur", "mumut", "munafik", "munafikin", "munajat", "munajim", "munasabah", "muncang", "munci", "muncikari", "muncrat", "muncul", "muncus", "mundam", "munding", "mundu", "mundur", "mung", "munggu", "munggur", "mungil", "mungkar", "mungkin", "mungkir", "mungkum", "mungkur", "mungmung", "mungsi", "mungut", "munib", "munjung", "muno", "munsyi", "muntaber", "muntah", "muntaha", "muntu", "muntul", "muntup", "munyuk", "muon", "mupaham", "muparik", "mupus", "mur", "mura", "murad", "muradif", "murah", "murai", "murakab", "murakabi", "mural", "muram", "murang", "muras", "murba", "murbei", "murca", "muri", "murid", "muring", "muris", "murka", "murni", "mursal", "mursyid", "murtad", "muruah", "murung", "murup", "murus", "mus", "musaadah", "musabab", "musabaqah", "musafir", "musafirin", "musakat", "musala", "musang", "musara", "museolog", "museologi", "museum", "mushaf", "musibah", "musik", "musikal", "musikalisasi", "musikalitas", "musikolog", "musikologi", "musikologis", "musikus", "musim", "musisi", "muskil", "muskovit", "muslih", "muslihat", "muslim", "muslimat", "muslimin", "muslin", "musnah", "muspra", "mustahak", "mustahik", "mustahil", "mustaid", "mustajab", "mustak", "mustaka", "mustakim", "mustamik", "mustang", "musuh", "musyarakah", "musyarakat", "musyarik", "musyawarah", "musyawarat", "musyrik", "musyrikin", "musytak", "musytari", "mutabar", "mutagen", "mutah", "mutakadim", "mutakalim", "mutakhir", "mutaki", "mutalaah", "mutamad", "mutan", "mutasawif", "mutasi", "mutawif", "mute", "mutiara", "mutih", "mutilasi", "mutisme", "mutlak", "mutmainah", "mutu", "mutualisme", "mutung", "muwafakat", "muwahid", "muwajahah", "muwakal", "muwakil", "muwari", "muzah", "muzakar", "muzakarah", "muzaki", "muzamil", "muzawir", "muzhab", "naam", "nabatah", "nabati", "nabi", "nabtun", "nabu", "nada", "nadi", "nadim", "nadir", "naf", "nafar", "nafas", "nafi", "nafiri", "nafkah", "nafsi", "nafsu", "nafta", "naftal", "naftalena", "naftena", "naftol", "naga", "nagam", "nagara", "nagari", "nagasari", "nahak", "nahas", "nahdiyin", "nahi", "nahkoda", "nahu", "naib", "naif", "naik", "naim", "najam", "najasah", "najasat", "najis", "nak", "naka", "nakal", "nakara", "nakhoda", "nal", "nala", "nalam", "nalar", "nali", "nalih", "naluri", "naluriah", "nama", "namaskara", "namatad", "namatium", "nambi", "namnam", "nampan", "namun", "nan", "nanah", "nanang", "nanap", "nanaplankton", "nanar", "nanas", "nandu", "nandung", "nang", "nangka", "nangkoda", "nangkring", "nangui", "naning", "nanofarad", "nanofosil", "nanogram", "nanometer", "nanti", "napal", "napalm", "napas", "napuh", "naqal", "naqli", "nara", "narablog", "narapati", "narapidana", "narapraja", "narasi", "narasumber", "naratif", "narator", "narkolepsi", "narkomaniak", "narkose", "narkosis", "narkotik", "narpati", "narsis", "narsisisme", "narsisme", "narwastu", "nas", "nasab", "nasabah", "nasakh", "nasal", "nasalisasi", "nasar", "nasehat", "nasel", "nasi", "nasib", "nasihat", "nasion", "nasional", "nasionalis", "nasionalisasi", "nasionalisme", "nasionalistis", "nasionisme", "naskah", "nasofaring", "nasrani", "nasti", "nasut", "natal", "natalis", "natalitas", "natang", "natar", "natijah", "nativis", "nativisme", "nativistik", "natolokal", "natrium", "natur", "natura", "natural", "naturalis", "naturalisasi", "naturalisme", "naturalistis", "naturopatis", "naung", "nauplius", "nausea", "nautik", "nautika", "nautikal", "nautilus", "nauzubillah", "navigasi", "navigator", "nawa", "nawaitu", "nawala", "nawalapradata", "nayaka", "nayam", "nayap", "nazam", "nazar", "nazi", "naziisme", "nazim", "nazir", "ndoro", "ndoroisme", "neala", "nealogi", "nebeng", "nebula", "nebulium", "neces", "necis", "nefoskop", "nefrektomi", "nefridium", "nefrit", "nefritis", "nefroblastoma", "nefrologi", "nefron", "nefrosis", "negara", "negasi", "negatif", "negativisme", "negativistik", "neger", "negeri", "negosi", "negosiasi", "negosiator", "negrito", "negro", "negroid", "negus", "neka", "nekad", "nekara", "nekat", "nekel", "neko", "nekrofag", "nekrofagus", "nekrofili", "nekrofilia", "nekrogeografi", "nekrolog", "nekrologi", "nekromansi", "nekropolis", "nekropsi", "nekrosis", "neksus", "nektar", "nelangsa", "nelayan", "nemagon", "nematoda", "nematologi", "nematosida", "nematosis", "nenda", "nendatan", "nenek", "nenekanda", "nenen", "nenenda", "nener", "nenes", "neng", "neodarwinisme", "neodimium", "neofeodalisme", "neofeodalistis", "neoiknologi", "neoimpresionisme", "neokarpi", "neoklasik", "neoklasisisme", "neoklasisme", "neokolonialisme", "neoliberalisme", "neolit", "neolitik", "neolitikum", "neologi", "neologisme", "neolokal", "neon", "neonatal", "neonatus", "neontologi", "neoplasma", "neoplatonisme", "neoprena", "neositosis", "neotipologi", "neovirus", "neozoikum", "nepotis", "nepotisme", "neptunium", "neptunus", "neraca", "nerak", "neraka", "neritik", "neritopelagik", "neritoplankton", "neroglia", "nervasi", "nervur", "nesa", "nestapa", "nestor", "net", "neting", "neto", "netra", "netral", "netralis", "netralisasi", "netralisme", "netralitas", "neural", "neuralgia", "neurastenia", "neuritis", "neuroblastoma", "neuroglia", "neurolinguistik", "neurolog", "neurologi", "neurologis", "neuron", "neurosis", "neurotik", "neurotransmiter", "neustonologi", "neutrino", "neutron", "newton", "ngabei", "ngaben", "ngablak", "ngabur", "ngakngikngok", "ngalau", "ngalor-ngidul", "nganga", "ngap-ngap", "ngapain", "ngarai", "ngeang", "ngebet", "ngebut", "ngeceng", "ngeden", "ngedumel", "ngelindur", "ngemil", "ngenas", "ngengat", "ngenyek", "ngeong", "ngeres", "ngeri", "ngiang", "ngilu", "ngoko", "ngos-ngosan", "ngot-ngotan", "ngowos", "ngoyo", "ngung", "nia", "niaga", "nian", "niasin", "niat", "nibung", "nica", "nidasi", "nidera", "nidikola", "nidulus", "nifak", "nifas", "nih", "nihil", "nihilis", "nihilisme", "nijas", "nik", "nikah", "nikel", "nikmat", "nikotin", "niktigami", "nila", "nilai", "nilakandi", "nilam", "nilau", "nilon", "nimbostratus", "nimbrung", "nimfomania", "ninabobo", "ning", "ningnong", "ningrat", "nini", "ninik", "ninitowok", "niobium", "nipah", "nipis", "nira", "niraksara", "nirgagasan", "nirgesekan", "nirguna", "nirkabel", "nirlaba", "nirleka", "nirmala", "nirselera", "nirwana", "nirwarta", "nisab", "nisan", "nisbah", "nisbi", "niscaya", "niskala", "nista", "nistagmus", "nistatin", "nitrat", "nitrifikasi", "nitrobenzena", "nitrofili", "nitrofit", "nitrogen", "nitrogliserin", "nitroselulosa", "niyaga", "noa", "nobat", "nobelium", "noda", "nodulus", "nodus", "noem", "noja", "noken", "noktah", "nokturia", "nokturnal", "nol", "nomad", "nomenklatur", "nomina", "nominal", "nominalisasi", "nominalisme", "nominasi", "nominatif", "nominator", "nomine", "nomogram", "nomokrasi", "nomor", "nomplok", "non", "nona", "nonagresi", "nonaktif", "nonblok", "nondepartemen", "nondepartemental", "none", "nonekonomi", "noneksakta", "nonfiksi", "nonformal", "nong-nong", "nongol", "nongrata", "nonhistoris", "noni", "nonilium", "nonindustri", "nonintervensi", "nonius", "nonkimia", "nonkombatan", "nonkonvensional", "nonkooperasi", "nonkooperatif", "nonmedis", "nonmigas", "nonmiliter", "nonok", "nonol", "nonong", "nonpatogenik", "nonpemerintah", "nonpolitik", "nonpredikatif", "nonpribumi", "nonproduktif", "nonprofit", "nonprotein", "nonsens", "nonsilabis", "nonstandar", "nonstop", "nonteknis", "nontradisional", "nonverbal", "nopek", "norak", "norit", "norma", "normal", "normalisasi", "normatif", "nosologi", "nostalgia", "nostrum", "not", "nota", "notabene", "notariat", "notaris", "notasi", "notes", "notifikasi", "notok", "notula", "notulis", "nova", "novel", "novela", "novelet", "novelis", "november", "novena", "novokaina", "nrima", "nuansa", "nubuat", "nudis", "nudisme", "nugat", "nugraha", "nujum", "nukil", "nukleat", "nukleolus", "nukleon", "nukleoprotein", "nukleus", "nuklida", "nuklir", "nulipara", "numeralia", "numerik", "numeris", "numismatika", "nun", "nunatak", "nung", "nunsius", "nunut", "nur", "nuraga", "nurani", "nurbisa", "nuri", "nuriah", "nus", "nusa", "nusaindah", "nusakambangan", "nusantara", "nusyu", "nusyus", "nutan", "nutasi", "nutfah", "nutriea", "nutrisi", "nutrisionis", "nutrisisme", "nuzul", "nuzulul", "nyai", "nyak", "nyala", "nyalang", "nyalar", "nyalawadi", "nyale", "nyali", "nyaman", "nyambing", "nyamik", "nyamleng", "nyampang", "nyamplung", "nyamuk", "nyamur", "nyana", "nyang", "nyanya", "nyanyah", "nyanyang", "nyanyar", "nyanyi", "nyanyu", "nyanyuk", "nyapang", "nyapnyap", "nyarang", "nyarik", "nyaring", "nyaris", "nyata", "nyatuh", "nyawa", "nyawang", "nyelekit", "nyemplong", "nyentrik", "nyenyai", "nyenyak", "nyenyat", "nyenyeh", "nyenyep", "nyenyet", "nyepi", "nyeri", "nyerocos", "nyi", "nyilih", "nyingnying", "nyinyir", "nyiri", "nyiru", "nyit", "nyiur", "nyolnyolan", "nyolo", "nyoman", "nyong", "nyonya", "nyonyeh", "nyonyong", "nyonyor", "nyungsung", "nyunyut", "nyureng", "nyut", "oase", "oasis", "obar", "obat", "obduksi", "obelisk", "obeng", "obesitas", "obi", "obituarium", "objek", "objektif", "objektivisme", "objektivitas", "oblak", "oblasi", "obligasi", "oblong", "obo", "obor", "obral", "obras", "obrol", "obrus", "observasi", "observatorium", "obsesi", "obsesif", "obsidian", "obsolet", "obstetri", "obstruen", "obstruksi", "obversi", "obviatif", "obyek", "obyektif", "obyektivisme", "obyektivitas", "oceh", "odalan", "ode", "odekolonye", "odinometer", "oditur", "odoh", "odol", "odometer", "odontoblas", "odontoid", "odontologi", "odoran", "oedipus-kompleks", "oersted", "ofensif", "oferte", "ofisial", "ofset", "oftalmia", "oftalmoskop", "oga", "ogah", "ogah-agih", "ogak-agik", "ogak-ogak", "ogam", "ogel", "ogok", "ogonium", "ohm", "ohmmeter", "oikumene", "oja", "ojeg", "ojek", "ojok", "okarina", "oke", "oker", "oklokrasi", "oklusi", "oklusif", "oknum", "okok", "oksalat", "oksiasetilena", "oksida", "oksidan", "oksidasi", "oksidator", "oksigen", "oksigenase", "oksimoron", "oksitetrasiklin", "oksiton", "oktaf", "oktagon", "oktahedron", "oktal", "oktana", "oktet", "oktober", "oktroi", "okulasi", "okuler", "okulis", "okultis", "okultisme", "okupasi", "okupasional", "olah", "olahraga", "olak", "olak-alik", "olanda", "olang-aling", "oleander", "olefin", "oleh", "olek", "oleng", "oleografi", "oleometer", "oleovitamin", "oles", "olet", "oleum", "oli", "olia", "oligarki", "oligofagus", "oligofrenia", "oligopoli", "oligopolistis", "oligopsoni", "oligosen", "oligositemia", "oligotrofik", "oliman", "olimpiade", "oliva", "olivin", "olok", "olong-olong", "om", "oma", "ombak", "ombang-ambing", "ombyok", "omega", "omel", "omikron", "omnibus", "omnivor", "omnivora", "omong", "ompol", "ompong", "ompreng", "omprong", "ompu", "omset", "omslah", "omzet", "onagata", "onak", "onani", "onar", "oncat", "once", "oncek", "oncen", "oncer", "oncom", "oncor", "onde-onde", "ondel-ondel", "onder", "onderdil", "onderdistrik", "onderneming", "onderok", "ondo", "ondoafi", "ondok", "ondos", "oneng-oneng", "ong", "ongahangih", "ongeh", "onggok", "ongji", "ongkang", "ongkok", "ongkos", "ongok", "ongol-ongol", "oniks", "onkogen", "onkologi", "onomasiologi", "onomastika", "onomatologi", "onomatope", "ons", "onslah", "ontogeni", "ontologi", "ontologis", "ontran-ontran", "onyah-anyih", "onyak-anyik", "onyang", "onyok", "onyot", "oogenesis", "oolit", "opa", "opak", "opak-apik", "opal", "opalesen", "opas", "opasitas", "opelet", "open", "opendim", "openkap", "oper", "opera", "operasi", "operasional", "operasionalisasi", "operatif", "operator", "operet", "operkulum", "opini", "opisometer", "opium", "oplah", "oplet", "oplos", "opmak", "opname", "oponen", "opor", "oportunis", "oportunisme", "oportunistis", "oportunitas", "oposan", "oposisi", "oppo", "opsen", "opseter", "opsi", "opsin", "opsinder", "opsiner", "opsional", "opsir", "opstal", "optatif", "optik", "optika", "optimal", "optimalisasi", "optimis", "optimisme", "optimistis", "optimum", "optis", "optisien", "optoelektronika", "optometri", "optometris", "opus", "orak", "orak-arik", "orakel", "oral", "oralit", "orang", "orang-aring", "oranye", "orasi", "orat-oret", "orator", "oratoria", "oratoris", "oratorium", "orbit", "orbita", "orbital", "orde", "order", "ordi", "ordinal", "ordinasi", "ordinat", "ordiner", "ordner", "ordo", "ordonans", "ordonansi", "oren", "oreng", "oreol", "oret", "organ", "organdi", "organel", "organik", "organis", "organisasi", "organisator", "organisatoris", "organisir", "organisme", "organismus", "organogram", "organon", "orgasme", "orgasmik", "orgel", "orien", "oriental", "orientalis", "orientasi", "origami", "orion", "orisinal", "orisinalitas", "orkes", "orkestra", "orkestrasi", "ornamen", "ornamental", "ornamentasi", "ornitologi", "ornitologis", "ornitosis", "orografi", "orografik", "orografis", "orok", "orong-orong", "ortodidaktik", "ortodoks", "ortodoksi", "ortodrom", "ortoepi", "ortografi", "ortografis", "ortoklas", "ortopedagogik", "ortopedi", "ortopedis", "ose", "osean", "oseanarium", "oseanografi", "oseanologi", "osifikasi", "osikel", "osilasi", "osilator", "osilograf", "osilogram", "osiloskop", "oskilator", "oskulum", "osmium", "osmometer", "osmoregulasi", "osmose", "osmosis", "osomosis", "ostentasi", "osteoblas", "osteoklas", "osteologi", "osteopati", "osteoporosis", "ostium", "otak", "otak-atik", "otak-otak", "otar", "otek", "otentik", "oto", "otobus", "otofon", "otologi", "otomat", "otomatis", "otomatisasi", "otomobil", "otomotif", "otonom", "otonomi", "otopet", "otorisasi", "otoritas", "otoriter", "otoritet", "otoskop", "otot", "ototipi", "oval", "ovarium", "ovasi", "oven", "over", "overaktif", "overakting", "overal", "overdosis", "overkompensasi", "overpopulasi", "overproduksi", "oversimplifikasi", "overste", "oviduk", "ovipar", "oviparitas", "ovipositor", "ovitesis", "ovovivipar", "ovulasi", "ovulum", "ovum", "oyak", "oyek", "oyok", "oyong", "oyot", "ozokerit", "ozon", "ozonisasi", "ozonisator", "ozonometer", "pabean", "pabrik", "pabrikan", "pabrikasi", "pacai", "pacak", "pacal", "pacangan", "pacar", "pacat", "pacau", "pace", "pacek", "paceklik", "pacet", "pacih", "pacik", "pacok", "pacu", "pacuk", "pacul", "pada", "padah", "padahal", "padak", "padam", "padan", "padang", "padas", "padasan", "padat", "padepokan", "padi", "padma", "padmasana", "padmi", "padri", "padu", "padudan", "paduk", "paduka", "paduraksa", "paedofil", "paes", "pagan", "paganisme", "pagar", "pagas", "pagebluk", "pagelaran", "pagi", "pagina", "pagoda", "pagon", "pagositosis", "pagu", "pagun", "pagupon", "pagut", "paguyuban", "pah", "paha", "pahala", "paham", "pahang", "pahar", "pahat", "paheman", "pahit", "pahlawan", "pahter", "pai", "paidon", "pail", "pailit", "paing", "paip", "pair", "pais", "paitua", "paja", "pajak", "pajan", "pajang", "pajuan", "pajuh", "pakai", "pakal", "pakan", "pakanira", "pakansi", "pakar", "pakaryan", "pakat", "pakau", "pakcik", "pakde", "pakem", "paket", "pakihang", "pakihi", "paking", "pakis", "paklik", "pakma", "pakpui", "pakpung", "paksa", "paksi", "paksina", "pakta", "pakter", "paku", "pakuh", "pakuk", "pakuncen", "pakus", "pal", "pala", "paladium", "palagan", "palai", "palak", "palaka", "palam", "palamarta", "palang", "palapa", "palar", "palari", "palas", "palasik", "palat", "palatabilitas", "palatal", "palatalisasi", "palatografi", "palatogram", "palatum", "palau", "palawa", "palawija", "paldu", "pale", "palem", "palen", "paleoantropologi", "paleobotani", "paleoekologi", "paleogeografi", "paleografi", "paleografis", "paleoklimatologi", "paleolitik", "paleolitikum", "paleontologi", "paleosen", "paleozoikum", "pales", "palet", "pali", "paliatif", "paliatip", "palindrom", "paling", "palinologi", "palis", "palit", "palka", "pallawa", "palmarosa", "palmin", "palmistri", "palmit", "palmitat", "palolo", "palpasi", "palsu", "paltu", "palu", "paluh", "palun", "palung", "palut", "pamah", "paman", "pameget", "pamer", "pamflet", "pamit", "pamong", "pamor", "pampa", "pampan", "pampang", "pampas", "pampat", "pamper", "pampiniform", "pamrih", "pamungkas", "pan", "pana", "panah", "panai", "panakawan", "panar", "panas", "panasea", "panau", "panca", "pancabicara", "pancabuta", "pancacita", "pancadarma", "pancaindera", "pancaindra", "pancaka", "pancakara", "pancakembar", "pancal", "pancalima", "pancalogam", "pancalomba", "pancalongok", "pancamarga", "pancamuka", "pancang", "pancaniti", "pancapersada", "pancar", "pancaragam", "pancarajadiraja", "pancaroba", "pancarona", "pancasila", "pancasilais", "pancasona", "pancasuara", "pancasuda", "pancausaha", "pancawalikrama", "pancawara", "pancawarna", "pancawarsa", "panci", "pancing", "pancir", "pancit", "panco", "pancong", "pancung", "pancur", "pancut", "pandai", "pandak", "pandam", "pandan", "pandang", "pandau", "pandawa", "pandega", "pandemi", "pandemik", "pandialektal", "pandir", "pandit", "pandom", "pandu", "panekuk", "panel", "panelis", "panembahan", "panembrama", "panen", "panewu", "pangabekti", "pangah", "pangan", "pangeran", "pangestu", "panggak", "panggal", "panggang", "panggar", "panggau", "panggih", "panggil", "panggon", "panggu", "panggul", "panggung", "pangkah", "pangkai", "pangkal", "pangkas", "pangkat", "pangkek", "pangkin", "pangking", "pangkon", "pangku", "pangkung", "pangkur", "panglima", "pangling", "panglong", "pangolat", "pangonan", "pangpet", "pangpung", "pangreh", "pangrehpraja", "pangrukti", "pangsa", "pangsek", "pangsi", "pangsit", "panguk", "pangur", "pangus", "panik", "paniki", "panil", "panili", "paninggil", "paningset", "panir", "paniradia", "panitera", "panitia", "panja", "panjak", "panjang", "panjar", "panjarwala", "panjat", "panjer", "panji", "panjing", "panjul", "panjunan", "panjut", "pankreas", "pankromatis", "pankronis", "panlektal", "panleukapema", "panleukopenia", "panoptikum", "panorama", "panser", "pantai", "pantak", "pantalon", "pantang", "pantar", "pantas", "pantat", "pantau", "panteis", "panteisme", "panteistis", "pantek", "pantekosta", "panteon", "panter", "panti", "pantik", "panting", "pantis", "panto", "pantofel", "pantograf", "pantomim", "pantri", "pantul", "pantun", "panus", "panutan", "panyembrama", "pao-pao", "papa", "papacang", "papah", "papain", "papak", "papakerma", "papan", "papar", "paparazi", "papas", "papat", "papatong", "papi", "papil", "papila", "papirus", "papras", "paprika", "papui", "par", "para", "parab", "parabasis", "parabel", "parabiosis", "parabola", "paradam", "parade", "paradigma", "paradigmatis", "paradiso", "paradoks", "paradoksal", "parados", "paraf", "parafasia", "parafemia", "parafin", "parafrasa", "parafrase", "parafrenia", "paragaster", "paragog", "paragon", "paragraf", "parah", "parak", "paralaks", "paraldehida", "paralel", "paralelisasi", "paralelisme", "paralelogram", "paralgesia", "paralinguistik", "paralinguistis", "paralipsis", "paralisis", "paralitis", "param", "paramaarta", "paramarta", "paramasastra", "paramedis", "paramen", "parameter", "paramiliter", "parampara", "paran", "parang", "paranoia", "paranoid", "paranormal", "paranpara", "parap", "parapalatal", "parapati", "paraplasme", "paraplegia", "parapodium", "parapsikolog", "parapsikologi", "paras", "parasetamol", "parasintesis", "parasit", "parasitisme", "parasitoid", "parasitologi", "parasitoma", "parasitopolis", "parasut", "parasutis", "parataksis", "parataktis", "paratesis", "paratifus", "paratiroid", "parau", "pare", "parenial", "parenkim", "parental", "parentesis", "parestesia", "parewa", "parfum", "parga", "parhelion", "pari", "paria", "parididimis", "parih", "parik", "parikan", "paring", "paripurna", "paris", "parit", "paritas", "pariwara", "pariwisata", "parji", "parka", "parket", "parkinson", "parkinsonisme", "parkir", "parkit", "parlemen", "parlementaria", "parlementarisme", "parlementer", "parmitu", "paro", "parodi", "paroki", "parokial", "parokialisme", "parolfaktori", "paron", "paronim", "paronisia", "paronomasia", "parotitis", "pars", "parser", "parsi", "parsial", "partai", "partenogenesis", "partial", "partikel", "partikelir", "partikularisme", "partisan", "partisi", "partisipan", "partisipasi", "partitif", "partitur", "partner", "partus", "paru", "paruh", "parun", "parut", "parvenu", "parwa", "pas", "pasah", "pasai", "pasak", "pasal", "pasang", "pasanggiri", "pasar", "pasara", "pasaraya", "pasase", "pasasir", "pasat", "pascabedah", "pascadoktoral", "pascajual", "pascakawin", "pascakrisis", "pascalahir", "pascalarva", "pascalikuidasi", "pascamodern", "pascamodernisme", "pascaoperasi", "pascapanen", "pascaperang", "pascaproduksi", "pascareformasi", "pascasarjana", "pascausaha", "pascayuwana", "paseban", "paser", "paset", "pasfoto", "pasi", "pasien", "pasif", "pasifikasi", "pasifisme", "pasigrafi", "pasik", "pasilan", "pasim", "pasimologi", "pasir", "pasirah", "pasit", "pasiva", "paskah", "pasmat", "pasmen", "pasok", "pasowan", "paspor", "pasrah", "pasta", "pastel", "pasteur", "pasteurisasi", "pasti", "pastiles", "pastor", "pastoral", "pastoran", "pastur", "pastura", "pasu", "pasuel", "pasuk", "pasumandan", "pasung", "patah", "pataka", "patam", "patang", "patar", "patek", "patela", "paten", "pater", "patera", "pateram", "paternalis", "paternalisme", "paternalistis", "patet", "patetis", "patgulipat", "pati", "patih", "patik", "patikim", "patil", "patin", "patina", "pating", "patio", "patirasa", "patiseri", "patka", "patogen", "patogenesis", "patogenik", "patois", "patok", "patokimia", "patol", "patola", "patolog", "patologi", "patologis", "patolopolis", "patos", "patra", "patrap", "patri", "patriark", "patriarkat", "patrilineal", "patrimonium", "patriot", "patriotik", "patriotisme", "patroli", "patron", "patronasi", "patrun", "patuh", "patuk", "patung", "patungan", "patut", "pauh", "pauhi", "pauk", "paul", "paun", "paung", "paus", "pause", "paut", "paviliun", "pawai", "pawak", "pawaka", "pawana", "pawang", "pawiyatan", "pawukon", "paya", "payah", "payang", "payar", "payau", "payet", "payon", "payu", "payudara", "payung", "peang", "pecah", "pecai", "pecak", "pecal", "pecara", "pecat", "pece", "pecel", "peci", "pecicilan", "pecinan", "pecok", "pecuk", "pecun", "pecut", "peda", "pedada", "pedadah", "pedagog", "pedagogi", "pedagogis", "pedak", "pedaka", "pedal", "pedanda", "pedang", "pedapa", "pedar", "pedas", "pedati", "pedel", "pedena", "pedendang", "pedengan", "pedepokan", "pedestrian", "pedet", "pedewakan", "pediatri", "pedih", "pedikur", "pedis", "pedisel", "pedogenesis", "pedok", "pedologi", "pedoman", "pedometer", "pedongkang", "pedot", "peduli", "pedunkel", "pedusi", "pedut", "pegagang", "pegah", "pegal", "pegan", "pegang", "pegar", "pegari", "pegas", "pegat", "pegawai", "pego", "pegoh", "pegon", "peguam", "pegun", "pehong", "pei", "pejajaran", "pejaka", "pejal", "pejam", "pejatian", "pejera", "pek", "peka", "pekaja", "pekak", "pekakak", "pekan", "pekarang", "pekasam", "pekaseh", "pekat", "pekatu", "pekatul", "pekau", "pekerti", "pekik", "peking", "pekir", "pekis", "pekiwan", "pekojan", "peksi", "pektik", "pektil", "pektin", "peku", "pekuk", "pekulun", "pekung", "pekur", "pel", "pelabi", "pelabur", "pelaga", "pelagas", "pelagis", "pelagra", "pelah", "pelak", "pelalah", "pelamin", "pelampang", "pelampung", "pelan", "pelana", "pelancar", "pelanduk", "pelang", "pelangai", "pelanggi", "pelangi", "pelangkin", "pelangpang", "pelantar", "pelanting", "pelas", "pelasah", "pelasik", "pelaspas", "pelasuh", "pelat", "pelata", "pelatuk", "pelawa", "pelayon", "pelbagai", "pelbak", "pelbet", "pelebat", "pelebaya", "pelebegu", "pelebon", "pelecet", "pelecok", "peleh", "pelek", "pelekat", "pelekok", "pelekuk", "pelembaya", "pelencit", "pelengak", "pelengan", "pelengset", "pelepah", "peles", "pelesat", "peleset", "pelesir", "pelesit", "pelet", "peletek", "peletik", "peleting", "peleton", "pelias", "pelihara", "pelik", "pelikan", "pelikel", "pelinggam", "pelinteng", "pelintir", "pelipir", "pelipis", "pelir", "pelisir", "pelisit", "pelit", "pelita", "pelitur", "pelo", "pelog", "peloh", "pelojok", "pelonco", "pelong", "pelopor", "pelor", "pelorot", "pelosok", "pelosot", "pelota", "pelotaris", "pelotot", "pelples", "pelpolisi", "pels", "peluang", "peluh", "peluit", "peluk", "peluluk", "pelulut", "pelumpung", "pelungpung", "pelupuh", "pelupuk", "peluru", "peluruh", "pelus", "pelvis", "pemair", "pemali", "pemarip", "pematah", "pematang", "pemayang", "pembarap", "pembayan", "pemendak", "pemeo", "pemetikan", "pemidang", "pemindang", "peminggir", "pempek", "pemuda", "pemudi", "pemuras", "pen", "pena", "penak", "penaka", "penalti", "penampan", "penampang", "penanggah", "penaram", "penasaran", "penat", "penatu", "penatua", "penca", "pencak", "pencalang", "pencar", "pencet", "pencil", "pencok", "pencong", "pencu", "pencut", "penda", "pendaga", "pendahan", "pendak", "pendam", "pendapa", "pendar", "pendaringan", "pendek", "pendekar", "pendet", "pendeta", "pending", "pendok", "pendongkok", "pendopo", "pendua", "penduk", "pendulum", "penembahan", "penes", "penetrasi", "penetron", "penewu", "pengalasan", "penganak", "penganan", "pengang", "pengantin", "pengap", "pengapuh", "pengar", "pengaruh", "pengat", "pengatu", "pengawinan", "pengeng", "pengerih", "pengga", "penggaga", "penggah", "penggal", "penggar", "penggawa", "penghulu", "pengin", "pengkal", "pengkar", "pengki", "pengkis", "pengkol", "pengkor", "pengos", "penguin", "pengulun", "peni", "peniaram", "pening", "peningset", "penis", "penisilin", "penisilinat", "penitensi", "peniti", "penjajap", "penjalin", "penjara", "penjaruman", "penjor", "penjuna", "penjura", "penjuru", "penmes", "penologi", "penomah", "pensi", "pensil", "pensiun", "pentagin", "pentagon", "pentagor", "pentagram", "pentahedron", "pental", "pentameter", "pentan", "pentana", "pentang", "pentar", "pentas", "pentatonik", "pentil", "pentilasi", "penting", "pentode", "pentol", "pentosa", "pentotal", "pentung", "penuh", "penyap", "penyek", "penyet", "penyok", "penyu", "peok", "peot", "pepagan", "pepah", "pepak", "pepaku", "peparu", "pepas", "pepat", "pepatah", "pepaya", "pepe", "pepek", "pepeling", "peper", "pepermin", "pepes", "pepet", "pepindan", "peplum", "pepsin", "pepsina", "pepsinogen", "peptida", "peptidase", "peptik", "pepton", "pepuju", "pepunden", "pepung", "peputut", "per", "pera", "perabot", "perabung", "perada", "peragat", "perah", "perahu", "perai", "peraji", "perak", "peraka", "peram", "perambut", "peran", "perancah", "perang", "perangah", "perangai", "peranggang", "peranggu", "peranggul", "perangin", "perangkap", "perangkat", "peranjat", "peranti", "peranye", "perap", "peras", "peras-perus", "perasat", "perasukan", "perat", "perata", "perawan", "perawas", "perawi", "perawis", "perbal", "perban", "perbani", "perbatin", "perbawa", "perbegu", "perbekel", "perca", "percaya", "percik", "percis", "percit", "percul", "percuma", "perdah", "perdana", "perdata", "perdeo", "perdikan", "perdom", "perdu", "pere", "peredus", "pereh", "perei", "perek", "perekik", "perempuan", "perencah", "perenggan", "perengkat", "perengus", "perengut", "perenial", "perenkum", "perenyak", "perenyuk", "perepat", "peres", "peresau", "peresih", "perestroika", "peretel", "perewa", "perfek", "perfeksi", "perfeksionis", "perfeksionisme", "perfektif", "perforasi", "perforator", "performa", "pergam", "pergat", "pergata", "pergedel", "pergi", "pergok", "pergol", "pergola", "perhati", "peri", "peria", "perian", "periang", "periantium", "peribahasa", "periboga", "peribudi", "peridi", "perifer", "periferal", "periferalis", "periferi", "perifiton", "perifrasa", "perifrase", "perifrastis", "perige", "perigel", "perigi", "perih", "perihal", "perihelion", "perikarditis", "perikardium", "perikemanusiaan", "perikondrium", "periksa", "perilaku", "perimbas", "perimeter", "perimisium", "perimpin", "perimping", "perinci", "perincit", "perineorium", "perineum", "perineurium", "pering", "peringgan", "peringgi", "peringgitan", "peringis", "peringkat", "perintah", "periodat", "periode", "periodik", "periodisasi", "periodonsium", "periodontium", "periorbita", "periosteum", "perirana", "perisa", "perisai", "periskop", "perispora", "peristalsis", "peristaltik", "peristerit", "peristiwa", "peristonium", "perit", "peritoneum", "peritonitis", "periuk", "perivaskuler", "perjaka", "perji", "perkakas", "perkale", "perkamen", "perkara", "perkasa", "perkedel", "perkelang", "perkolar", "perkolasi", "perkolator", "perkoler", "perkosa", "perkusi", "perkutut", "perlahan", "perlak", "perlambang", "perleng", "perlente", "perlenteh", "perli", "perlina", "perling", "perlintih", "perlip", "perlit", "perlop", "perlu", "perlup", "perlus", "permadani", "permai", "permaisuri", "permak", "permalin", "permana", "permanen", "permanganat", "permasan", "permata", "permeabel", "permeabilitas", "permen", "permil", "permisi", "permisif", "permutasi", "pernah", "pernak", "pernekel", "pernik", "pernikel", "pernis", "perogol", "perohong", "peroi", "peroksida", "peroksidase", "peroksisom", "peroksisoma", "peroman", "perompak", "peron", "peroneal", "peronyok", "perop", "perosok", "perosot", "perot", "perpatih", "perpetuasi", "perponding", "pers", "persada", "persangga", "persegi", "persekot", "persekusi", "persen", "persentase", "persentil", "persepsi", "perseptif", "perseptivitas", "persero", "persetan", "perseus", "perseverasi", "persih", "persik", "persil", "persis", "persisi", "perslah", "persneling", "person", "persona", "personal", "personalia", "personalisme", "personalitas", "personel", "personifikasi", "perspektif", "perspektivisme", "persuasi", "persuasif", "pertal", "pertama", "pertepel", "pertiwi", "pertua", "perturbasi", "pertusis", "peruak", "peruan", "peruang", "perubalsem", "perudang", "peruk", "perum", "perumpung", "perun", "perunggu", "perunjung", "perupuk", "perus", "perusi", "perut", "perversi", "perwara", "perwira", "pes", "pesa", "pesai", "pesak", "pesakin", "pesam", "pesan", "pesanggrahan", "pesantren", "pesara", "pesat", "pesawat", "pese", "peseh", "pesek", "peser", "pesero", "peset", "pesi", "pesiar", "pesimis", "pesimisme", "pesimistis", "pesing", "pesirah", "pesisir", "pesok", "pesolot", "pesona", "pesong", "pesta", "pestaka", "pestisida", "pestol", "pesuk", "pesut", "pet", "peta", "petah", "petai", "petak", "petaka", "petal", "petala", "petaling", "petam", "petamari", "petan", "petanen", "petang", "petaram", "petarang", "petarangan", "petaruan", "petas", "petatang-peteteng", "petatus", "petegian", "petek", "petel", "petenteng", "petepete", "peterana", "peterseli", "petes", "peti", "petia", "petik", "petikrah", "petikut", "petilan", "peting", "petinggi", "petiolus", "petir", "petis", "petisi", "petitih", "petitum", "petogram", "petola", "petopan", "petor", "petrodolar", "petrografi", "petrogram", "petrokimia", "petrol", "petrolatum", "petroleum", "petrologi", "petromaks", "petsai", "petuah", "petuding", "petuduh", "petuk", "petunia", "peturun", "petus", "petut", "pewaka", "pewat", "peyek", "peyorasi", "peyot", "phi", "piadah", "piagam", "piah", "piak", "pial", "piala", "pialang", "pialing", "pialu", "piama", "piang", "pianggang", "pianggu", "pianika", "pianis", "piano", "pianola", "piantan", "piara", "piarit", "pias", "piaster", "piat", "piatu", "piawai", "pica", "picah", "picik", "picing", "picis", "picit", "pico", "picu", "picung", "pidana", "pidato", "pidi", "piezoelektrik", "piezoelektrisitas", "piezometer", "pigmen", "pigmentasi", "pigmi", "pigura", "pihak", "pijah", "pijak", "pijar", "pijat", "pijin", "pijinasi", "pijit", "pika", "pikap", "pikat", "pikau", "pike", "piket", "pikir", "piknik", "piknometer", "pikofarad", "pikogram", "pikolo", "piktografi", "piktogram", "pikul", "pikun", "pikup", "pil", "pilah", "pilak", "pilang", "pilar", "pilas", "pilaster", "pilau", "pileh", "pilek", "pileren", "pilih", "pilin", "pilis", "pilon", "pilong", "pilorus", "pilositas", "pilot", "pilsener", "pilu", "pilus", "pimpel", "pimpin", "pimping", "pin", "pina-pina", "pinak", "pinang", "pinar", "pincang", "pincuk", "pincut", "pinda", "pindah", "pindai", "pindang", "pines", "pinga", "pingai", "pinggah", "pinggan", "pinggang", "pinggir", "pinggul", "pingit", "pingkal", "pingkau", "pingpong", "pingsan", "pingul", "pinis", "pinisepuh", "pinisi", "pinjal", "pinjam", "pinjung", "pinset", "pinta", "pintal", "pintan", "pintang", "pintar", "pintas", "pintil", "pintu", "pintur", "pinus", "piogenik", "pion", "pioner", "piong", "pionir", "pipa", "pipet", "pipi", "pipih", "pipil", "pipis", "pipit", "pir", "pirai", "piramid", "piramida", "piramidal", "pirang", "piranograf", "piranogram", "piranometer", "pirasat", "pirau", "pireksia", "pirektik", "piretrum", "pirian", "piriform", "pirik", "piring", "pirit", "pirofilit", "pirofobia", "piroksen", "pirolisis", "piromania", "pirometalurgi", "pirometer", "piroteknik", "pirsa", "piruet", "pirus", "pis", "pisah", "pisang", "pisau", "pises", "pisiformis", "pisik", "pisin", "pisit", "pisitan", "pisovonus", "pispot", "pistol", "pistom", "piston", "pisuh", "pit", "pita", "pitak", "pitam", "pitanggang", "pitar", "pitarah", "pitawat", "piting", "pitiriasis", "pitis", "pitometer", "piton", "pitot", "pitut", "piuh", "piung", "piut", "piutang", "pivot", "piwulang", "piyik", "piza", "plafon", "plagiarisme", "plagiat", "plagiator", "plagioklas", "plakat", "plaket", "plaksegel", "plamir", "plan", "planaria", "planel", "planet", "planetarium", "planetoid", "plang", "plangkan", "planimeter", "planimetri", "planing", "planisfer", "plankton", "plano", "planologi", "planologis", "planospora", "plantase", "planula", "plasenta", "plaser", "plasma", "plasmodium", "plasmosis", "plastid", "plastik", "plastin", "plastis", "plastisitas", "plastogami", "plastometer", "plastron", "platelet", "platform", "platina", "platinoid", "platinum", "platisma", "plato", "platonik", "platonisme", "plaza", "plebisit", "pleidoi", "pleiogami", "pleistosen", "pleksus", "plengkung", "pleno", "pleonasme", "pleopod", "plerem", "plester", "pletora", "pleura", "plinplan", "plintat-plintut", "plinteng", "plintit", "pliosaurus", "pliosen", "ploi", "ploidi", "plombir", "plonci", "plonco", "plong", "plonga-plongo", "plontos", "plosif", "plot", "plug", "plumbago", "plumbum", "plumbung", "plural", "pluralis", "pluralisme", "pluralistis", "pluriform", "plus", "pluto", "plutokrasi", "plutonik", "plutonium", "pluvial", "pluviograf", "pluviometer", "pneumatika", "pneumatofos", "pneumatokista", "pneumonia", "poal", "poces", "poci", "pocok", "pocong", "podemporem", "podikal", "podium", "poetika", "pof", "pogrom", "pohon", "poikilohalin", "poikiloterm", "poin", "point", "poise", "poiseuille", "pojok", "pok", "pokah", "pokeng", "poker", "poket", "poko", "pokok", "pokrol", "poksai", "pokta", "pol", "pola", "polah", "polan", "polang", "polarimeter", "polarimetri", "polaris", "polarisasi", "polaritas", "poldan", "polder", "polemik", "polemis", "polen", "poleng", "polenter", "poler", "poles", "polet", "poliandri", "poliantus", "poliester", "polifagia", "polifase", "polifoni", "poligam", "poligami", "poligini", "poliglot", "poliglotisme", "poligon", "poligraf", "polihalin", "polikel", "poliket", "poliklinik", "polikrom", "polikultur", "polimer", "polimerisasi", "polinia", "polio", "polip", "polipeptida", "polipetal", "poliploid", "polipropilena", "polis", "polisakarida", "polisemi", "polisentrisme", "polisepal", "polisi", "polisiklis", "polisilogisme", "polisindeton", "polisional", "polispermi", "polister", "politbiro", "politeis", "politeisme", "politeistis", "politeknik", "politena", "politik", "politika", "politikus", "politis", "politisasi", "poliuretan", "polivini", "polizoa", "polka", "polkadot", "polmah", "polo", "polok", "polones", "polong", "polonium", "polonter", "polos", "polusi", "polutan", "polutif", "poma", "pomade", "pomologi", "pompa", "pompang", "pompon", "pompong", "pon", "ponakan", "ponco", "pondamen", "pondar", "ponderabilitas", "pondik", "pondoh", "pondok", "pondong", "pongah", "ponggang", "ponggok", "pongkol", "pongsu", "poni", "ponil", "ponok", "ponor", "pons", "pontang-panting", "ponten", "pontoh", "ponton", "poo", "pop", "popelin", "popi", "popok", "popor", "popularisasi", "popularitas", "populasi", "populer", "populis", "populisme", "pora", "porah", "porak-parik", "porak-peranda", "porak-poranda", "porfiria", "pori", "porisitas", "porno", "pornografi", "pornografis", "porok", "porong", "poros", "porositas", "porot", "porselen", "porsi", "porta", "portabel", "portal", "portepel", "portik", "portir", "porto", "portofolio", "pos", "pose", "poser", "posesif", "posisi", "positif", "positivisme", "positivistik", "positron", "positronium", "poskar", "poso", "posologi", "postar", "poster", "posterior", "postulat", "postur", "pot", "potas", "potasium", "potator", "potehi", "potel", "potensi", "potensial", "potensiometer", "potia", "potlot", "potol", "potong", "potret", "poundal", "poyang", "praanggapan", "praba", "prabu", "pradana", "pradesa", "pradesain", "pradini", "praduga", "pragmatik", "pragmatika", "pragmatis", "pragmatisme", "prah", "prahara", "prahoto", "prairi", "praja", "prajaksa", "prajurit", "prakala", "prakarsa", "prakarya", "prakata", "prakilang", "prakira", "prakondisi", "prakonsepsi", "praksis", "praktek", "praktik", "praktikan", "praktikum", "praktis", "praktisi", "pralahir", "pramenstruasi", "prameswari", "pramodern", "pramubakti", "pramubarang", "pramubayi", "pramudi", "pramugara", "pramugari", "pramujasa", "pramuka", "pramukamar", "pramuniaga", "pramupintu", "pramuria", "pramusaji", "pramusiwi", "pramutamu", "pramuwisata", "pramuwisma", "pranala", "pranata", "pranatacara", "pranatal", "prangas", "prangko", "pranikah", "prapalatal", "prapatan", "prapendapat", "praperadilan", "prapromosi", "prapuber", "prapubertas", "prapuna", "prapustaka", "prarasa", "prarekam", "praremaja", "prasaja", "prasangka", "prasaran", "prasarana", "prasasti", "prasawya", "prasejahtera", "prasejarah", "prasekolah", "praseminar", "praseodimium", "prasetia", "prasi", "prasmanan", "prastudi", "prasyarat", "pratersier", "pratinjau", "prawacana", "prawira", "prayang", "prayitna", "prayojana", "prayuwana", "preadvis", "preambul", "preantena", "preasetabulum", "predasi", "predator", "predestinasi", "predikat", "predikatif", "prediksi", "predisposisi", "preferensi", "prefiks", "prehistori", "prei", "prekositas", "prekursor", "preliminer", "prelude", "preman", "prematur", "premi", "premis", "premium", "premolar", "prenatal", "prenjak", "preparat", "preposisi", "prepotensi", "prerogatif", "pres", "presbiopia", "presbiterium", "preseden", "presensi", "presentabel", "presentasi", "presentil", "preservasi", "presesi", "presiden", "presidensial", "presidentil", "presidium", "presiositas", "presipitasi", "presisi", "preskripsi", "preskriptif", "prestasi", "prestise", "prestisius", "presto", "presumsi", "pretel", "pretensi", "prevalensi", "preventif", "preview", "prewangan", "pria", "priagung", "priayi", "pribadi", "pribumi", "prihatin", "prima", "primadona", "primas", "primata", "primbon", "primer", "primitif", "primogenetur", "primordial", "primordialisme", "primpen", "pringas-pringis", "pringgitan", "prinsip", "prinsipiil", "prioritas", "pripih", "pris", "prisma", "prit", "privasi", "privat", "privatisasi", "prive", "privilese", "pro", "proaktif", "probabilitas", "problem", "problematik", "procot", "prodemokrasi", "prodeo", "produk", "produksi", "produktif", "produktivitas", "produsen", "produser", "proenzim", "prof", "profan", "profanitas", "profase", "profesi", "profesional", "profesionalisme", "profesionalitas", "profesor", "profetik", "profil", "profilaksis", "profit", "profitabel", "profitabilitas", "proforma", "progeni", "progesteron", "prognosis", "program", "programa", "progres", "progresif", "progresivitas", "prohibisi", "proklamasi", "proklamator", "proklitik", "proksimal", "proksimat", "prokurasi", "prokurator", "prolat", "prolegomena", "proleksem", "proletar", "proletariat", "proletarisasi", "proliferasi", "prolog", "promenade", "prometium", "prominen", "prominensia", "promiskuitas", "promontorium", "promosi", "promotif", "promotor", "promovendus", "pronomina", "pronominal", "pronominalisasi", "prop", "propaganda", "propagandis", "propana", "propelan", "propeler", "properti", "propfan", "propilena", "propinsi", "proporsi", "proporsional", "proposal", "proposisi", "propulsi", "prosa", "prosais", "prosede", "prosedur", "prosedural", "prosenium", "proses", "prosesi", "prosesor", "proskonion", "proskriptivisme", "prosodi", "prosodis", "prospek", "prospeksi", "prospektif", "prospektus", "prostaglandin", "prostat", "prostitusi", "protagonis", "protaktinium", "protandri", "protandris", "protasis", "proteid", "protein", "proteinuria", "proteksi", "proteksionisme", "protektif", "protektorat", "proteolisis", "proteolitik", "protes", "protese", "protesis", "protestan", "protestantisme", "protista", "proto", "protofon", "protogenesis", "protokol", "protokoler", "protolisis", "protolitik", "proton", "protoneolitik", "protoplasma", "protoraks", "prototipe", "protozoa", "protrombin", "protuberansia", "provinsi", "provinsialisme", "provisi", "provisional", "provitamin", "provokasi", "provokatif", "provokator", "provokatur", "provos", "proyek", "proyeksi", "proyektil", "proyektor", "prudensial", "prurigo", "psalm", "psamolitoral", "pseudo", "pseudokata", "pseudomorf", "pseudonim", "psi", "psike", "psikiater", "psikiatri", "psikis", "psikoanalisis", "psikodrama", "psikofarmakologi", "psikofisiologis", "psikokinesis", "psikolepsi", "psikolinguistik", "psikolog", "psikologi", "psikologis", "psikometri", "psikometrika", "psikomotor", "psikomotorik", "psikoneurosis", "psikopat", "psikopati", "psikopatologi", "psikosastra", "psikoseksual", "psikosis", "psikosomatik", "psikoteknik", "psikoteknis", "psikoterapi", "psikotes", "psikotropika", "psikrofili", "psikrometer", "psikrometri", "psitakosis", "psoriasis", "pterodaktil", "pteropoda", "ptialin", "ptomaina", "puadai", "puah", "puak", "puaka", "pual", "pualam", "puan", "puas", "puasa", "puatang", "pub", "puber", "pubertas", "pubesens", "publik", "publikasi", "publisis", "publisistik", "publisitas", "pucang", "pucat", "pucik", "pucuk", "pucung", "pudar", "pudat", "pudel", "puder", "pudi", "puding", "pudur", "puerpera", "puerperium", "pugak", "pugar", "pugas", "puguh", "puih", "puing", "puisi", "puitis", "puitisasi", "puja", "pujangga", "puji", "pujuk", "pujur", "pujut", "pukah", "pukal", "pukang", "pukas", "pukat", "pukau", "puki", "pukul", "pul", "pula", "pulai", "pulan", "pulang", "pulas", "pulasan", "pulasari", "pulau", "pulen", "pulih", "pulik", "pulover", "pulp", "pulpa", "pulpen", "pulper", "pulsa", "pulsar", "pulsasi", "puluh", "pulun", "pulung", "pulut", "puma", "pumpun", "pun", "punah", "punai", "punakawan", "punar", "punat", "punca", "puncak", "punci", "pundak", "punden", "pundi", "punding", "punduh", "punduk", "pundung", "pung", "pungak-pinguk", "punggah", "punggai", "punggal", "punggawa", "pungguk", "punggung", "punggur", "pungkah", "pungkang", "pungkas", "pungkur", "pungli", "pungsi", "pungtuasi", "punguk", "pungut", "punia", "punjul", "punjung", "punjut", "punk", "puntal", "punti", "puntianak", "puntir", "puntuk", "puntul", "puntung", "punuk", "punya", "pupa", "pupil", "pupu", "pupuan", "pupuh", "pupuk", "pupur", "pupus", "puput", "pura", "purba", "purbakala", "purbani", "purbasangka", "purbawisesa", "purdah", "pure", "purgatif", "puri", "purifikasi", "purik", "puring", "puris", "purisme", "puristis", "puritan", "puritanisme", "purna", "purnabakti", "purnaintegrasi", "purnajabatan", "purnajual", "purnakarya", "purnama", "purnapugar", "purnasarjana", "purnatugas", "purnawaktu", "purpura", "purser", "puruk", "puruk-parak", "purun", "purus", "purusa", "purut", "purwa", "purwakanti", "purwapada", "purwarupa", "pus", "pusa", "pusak", "pusaka", "pusang", "pusar", "pusara", "pusat", "puser", "pusing", "puskesmas", "puso", "puspa", "puspadana", "puspadanta", "puspamala", "pusparagam", "puspas", "puspawarna", "puspita", "pusta", "pustaha", "pustaka", "pustakaloka", "pusu", "pusung", "pusut", "putar", "putat", "puter", "puti", "putih", "putik", "puting", "putra", "putranda", "putrawali", "putrefaksi", "putresin", "putri", "putriditas", "putu", "putus", "putut", "puvi-puvi", "puyan", "puyeng", "puyer", "puyonghai", "puyu", "puyuh", "qaf", "qari", "qariah", "qasar", "qiamulail", "qiraah", "qiraat", "qudsi", "quran", "raba", "raba-rubu", "rabak", "raban", "rabana", "rabani", "rabas", "rabat", "rabet", "rabi", "rabies", "rabik", "rabit", "rabiulakhir", "rabiulawal", "rabotase", "rabu", "rabuk", "rabulizat", "rabun", "rabung", "rabut", "racak", "racau", "racik", "racuh", "racun", "rad", "rada", "radaah", "radah", "radai", "radak", "radang", "radar", "radas", "raden", "rades", "radi", "radiah", "radial", "radian", "radians", "radiasi", "radiator", "radif", "radikal", "radikalisasi", "radikalisme", "radiks", "radikula", "radin", "radio", "radioaktif", "radioaktivitas", "radiogenetika", "radiogoniometer", "radiogoniometri", "radiograf", "radiografi", "radiogram", "radioisotop", "radiokarbon", "radiokimia", "radiolisis", "radiolog", "radiologi", "radiolokasi", "radiometer", "radiosonde", "radiotelefoni", "radiotelegrafi", "radiotelegrafis", "radioterapi", "radis", "radium", "radius", "radon", "radu", "radurisasi", "rafak", "rafaksi", "rafe", "rafi", "rafia", "rafidi", "rafik", "raflesia", "raga", "ragam", "ragang", "ragas", "ragawi", "ragi", "ragib", "ragil", "ragu", "raguk", "ragum", "ragung", "ragut", "rahak", "rahang", "rahap", "raharja", "rahasia", "rahat", "rahayu", "rahib", "rahim", "rahimakallah", "rahimakumullah", "rahmah", "rahman", "rahmat", "rahmatullah", "rahu", "rai", "raib", "raigedeg", "raih", "raimuna", "rais", "raja", "rajab", "rajabiah", "rajah", "rajalela", "rajam", "rajang", "rajapati", "rajawali", "rajim", "rajin", "rajok", "rajuk", "rajul", "rajungan", "rajut", "rak", "raka", "rakaat", "rakah", "rakanita", "rakap", "rakat", "rakawira", "rakbol", "raket", "rakila", "rakis", "rakit", "rakitis", "rakna", "raksa", "raksabumi", "raksasa", "raksi", "rakuk", "rakung", "rakus", "rakut", "rakyat", "rakyu", "ralat", "ralip", "ram", "rama", "rama-rama", "ramadan", "ramah", "ramai", "ramal", "ramanda", "ramania", "rambah", "rambai", "rambak", "ramban", "rambang", "rambat", "rambeh", "rambih", "rambu", "rambun", "rambung", "rambut", "rambutan", "rambuti", "rames", "rami", "ramin", "ramirezi", "rampa", "rampai", "rampak", "rampang", "rampas", "rampat", "ramping", "rampok", "rampuh", "rampung", "rampus", "ramu", "ramus", "rana", "ranah", "ranai", "ranap", "ranca", "rancah", "rancak", "rancam", "rancang", "rancap", "rancau", "rancu", "rancung", "randa", "randa-rondo", "randah", "randai", "randajawan", "randak", "randat", "randau", "randek", "randi", "randu", "randuk", "randung", "rang", "rangah", "rangai", "rangak", "rangam", "rangas", "rangga", "ranggah", "ranggak", "ranggas", "ranggeh", "ranggi", "ranggit", "ranggul", "ranggung", "rangin", "rangina", "rangka", "rangkai", "rangkak", "rangkam", "rangkang", "rangkap", "rangkaya", "rangket", "rangkiang", "rangkik", "rangking", "rangkit", "rangkok", "rangkul", "rangkum", "rangkung", "rangkup", "rangkus", "rangkut", "rango-rango", "rangrang", "rangrangan", "rangsang", "rangu", "rangum", "rangup", "rani", "ranjah", "ranjang", "ranjau", "ranji", "ranjing", "rankine", "ransel", "ransum", "rantai", "rantam", "rantang", "rantas", "rantau", "rante", "ranti", "ranting", "rantuk", "rantus", "ranum", "ranyah", "ranyang", "ranyau", "ranyun", "rap", "rapah", "rapai", "rapak", "rapal", "rapang", "rapat", "rapel", "rapi", "rapiah", "rapik", "rapor", "rapsodi", "rapu", "rapuh", "rapun", "rapung", "rapus", "raraha", "rarai", "rarak", "rarangan", "raras", "ras", "rasa", "rasai", "rasam", "rasamala", "rasan", "rasau", "rasberi", "rase", "rasem", "rasi", "rasia", "rasial", "rasialis", "rasialisme", "rasian", "rasio", "rasional", "rasionalis", "rasionalisasi", "rasionalisme", "rasionalitas", "rasisme", "raster", "rasuk", "rasul", "rasuli", "rasulullah", "rasyid", "rasywah", "rat", "rata", "ratah", "ratap", "ratib", "ratifikasi", "ratna", "ratu", "ratus", "rau", "raudah", "raudatul", "raudatulatfal", "raum", "raun", "raung", "raup", "raut", "rawa", "rawah", "rawai", "rawak", "rawan", "rawang", "rawat", "rawatib", "rawi", "rawin", "rawit", "rawon", "rawuh", "raya", "rayah", "rayan", "rayang", "rayap", "rayau", "rayon", "rayonisasi", "rayu", "razia", "reagen", "reagensia", "reak", "reaksi", "reaksioner", "reaktan", "reaktans", "reaktansi", "reaktif", "reaktivitas", "reakton", "reaktor", "reaktualisasi", "real", "realis", "realisasi", "realisme", "realistis", "realitas", "realokasi", "realpolitik", "reasuransi", "reaumur", "reba", "rebab", "rebah", "rebak", "reban", "rebana", "rebas", "rebat", "rebeh", "rebek", "rebes", "rebet", "rebewes", "reboisasi", "rebon", "rebu", "rebuk", "rebung", "rebus", "rebut", "reca", "recak", "receh", "recet", "recik", "recok", "recup", "reda", "redah", "redaksi", "redaksional", "redaktur", "redam", "redang", "redap", "redefinisi", "redih", "redik", "redoks", "reduksi", "reduksionisme", "redum", "redup", "reduplikasi", "redusir", "redut", "reedukasi", "reekspor", "referat", "referen", "referendaris", "referendum", "referensi", "referensial", "reflasi", "refleks", "refleksi", "reflektif", "reflektor", "reformasi", "reformis", "refraksi", "refraktometer", "refraktor", "refrein", "refrigerator", "regah", "regan", "regang", "regas", "regat", "regata", "regel", "regen", "regenarasi", "regenerasi", "reges", "regi", "regio", "region", "regional", "regionalisme", "register", "registrasi", "regisur", "reglemen", "reglementer", "regol", "regresi", "regresif", "regu", "reguk", "regularisasi", "regulasi", "regulatif", "regulator", "reguler", "regup", "rehab", "rehabilitasi", "rehabilitatif", "rehal", "rehat", "rehidrasi", "reideologisasi", "reindoktrinasi", "reinkarnasi", "reintegrasi", "reinterpretasi", "reinvestasi", "reja", "rejab", "rejah", "rejan", "rejang", "rejasa", "rejeh", "rejeng", "rejuk", "rek", "reka", "rekah", "rekal", "rekalkulasi", "rekalsitran", "rekam", "rekan", "rekanalisasi", "rekanita", "rekap", "rekapangan", "rekapitalisasi", "rekapitulasi", "rekat", "rekata", "rekayasa", "reken", "rekening", "rekes", "rekisitor", "rekisitur", "reklamasi", "reklame", "reklasering", "reklasifikasi", "rekognisi", "rekoleksi", "rekombinan", "rekombinasi", "rekomendasi", "rekonsiliasi", "rekonstruksi", "rekonstruktif", "rekonvensi", "rekor", "rekreasi", "rekrut", "rekrutmen", "reksa", "rekstok", "rektifikasi", "rekto", "rektor", "rekuiem", "rekuisisi", "rekuisitor", "rekurs", "rel", "rela", "relai", "relaks", "relaksasi", "relang", "relap", "relas", "relasi", "relatif", "relativisasi", "relativisme", "relativitas", "relau", "relban", "relevan", "relevansi", "reli", "reliabel", "reliabilitas", "relief", "religi", "religiositas", "religius", "relik", "relikui", "relikwi", "relokasi", "reluk", "relung", "rem", "rema", "remah", "remai", "remaja", "remak", "remanen", "remang", "remas", "rematik", "rematisme", "rematoid", "rembah", "rembang", "rembas", "rembat", "rembega", "rembes", "rembet", "rembih", "rembuk", "rembulan", "rembunai", "remburs", "rembut", "remedi", "remedial", "remediasi", "remeh", "remenia", "remet", "remi", "remiak", "remiling", "reminisensi", "remis", "remisi", "remoh", "rempa", "rempah", "rempak", "rempela", "rempelas", "rempenai", "rempeyek", "rempong", "rempuh", "rempuk", "rempus", "remujung", "remuk", "remunerasi", "remunggai", "rena", "renah", "renai", "renaisans", "renal", "renang", "rencah", "rencak", "rencam", "rencana", "rencang", "rencat", "renceh", "renceng", "rencet", "rencong", "renda", "rendabel", "rendah", "rendam", "rendang", "rendemen", "rendeng", "rendet", "rendong", "renegosiasi", "renek", "renes", "reng", "rengadean", "rengap", "rengas", "rengat", "rengeh", "rengek", "rengeng", "rengga", "renggam", "renggang", "renggat", "renggek", "rengges", "rengginang", "renggut", "rengit", "rengkah", "rengkam", "rengkeh", "rengket", "rengkit", "rengkong", "rengkudah", "rengkuh", "rengrengan", "rengsa", "rengus", "rengut", "renik", "renin", "renium", "renjana", "renjatan", "renjeng", "renjis", "renjong", "renjul", "renkinang", "renovasi", "renta", "rentabilitas", "rentak", "rentaka", "rental", "rentan", "rentang", "rentap", "rentas", "rente", "renteng", "rentenir", "rentet", "renti", "rentik", "renumerasi", "renung", "renvoi", "renyah", "renyai", "renyam", "renyang", "renyap", "renyau", "renyeh", "renyek", "renyem", "renyuk", "renyut", "reog", "reol", "reologi", "reometri", "reorganisasi", "reorientasi", "reostat", "reot", "rep-repan", "repang", "reparasi", "repas", "repatrian", "repatriasi", "repek", "repertoar", "repertorium", "repes", "repet", "repeten", "repetisi", "repetitif", "repetitor", "repih", "replik", "replika", "repolarisasi", "repormir", "reportase", "reporter", "reposisi", "repot", "representasi", "representatif", "represi", "represif", "reproduksi", "reprografi", "reptil", "reptilia", "republik", "republiken", "repuh", "repui", "reput", "reputasi", "rerak", "rerangka", "reranting", "reras", "rerata", "reresanan", "rerongkong", "rerot", "rerugi", "reruntuk", "resa", "resah", "resak", "resam", "resan", "resap", "resbang", "resek", "resensi", "resensor", "resep", "resepsi", "resepsionis", "reseptif", "reseptor", "reserse", "resersir", "reservat", "reserve", "reservoir", "reses", "resesi", "resi", "residen", "residivis", "residivisme", "residivistis", "residu", "resik", "resiko", "resimen", "resin", "resinol", "resipien", "resiprok", "resiprokal", "resistan", "resistans", "resistansi", "resistor", "resital", "resitasi", "resmi", "resolusi", "resonan", "resonansi", "resonator", "resor", "resorpsi", "resorsinol", "resosialisasi", "respek", "respirasi", "respirator", "responden", "respons", "responsi", "responsif", "restan", "restiformis", "restitusi", "restoran", "restorasi", "restriksi", "restriktif", "restrukturisasi", "restu", "restung", "resu", "resultan", "resume", "resurjensi", "ret", "reta", "retail", "retak", "retardasi", "retas", "retek", "retenidos", "retensi", "retet", "retih", "retikuler", "retina", "retinakulum", "retinitis", "retok", "retorik", "retorika", "retoris", "retorsi", "retradisionalisasi", "retreatisme", "retret", "retribusi", "retro", "retroaktif", "retrofleks", "retrofleksi", "retrogresi", "retrogresif", "retrolingual", "retromamal", "retromandibuler", "retrospeksi", "retur", "retus", "reumatismos", "reuni", "reunifikasi", "revaksinasi", "revaluasi", "revans", "reverberasi", "revisi", "revisibilitas", "revisionis", "revitalisasi", "revolusi", "revolusioner", "revolver", "rewak", "rewan", "rewanda", "rewang", "rewel", "rewet", "reyal", "reyot", "rezeki", "rezim", "rho", "ria", "riadat", "riah", "riak", "rial", "riam", "rian", "riang", "riap", "rias", "riba", "ribang", "ribat", "ribatat", "riben", "riboflavin", "ribosom", "ribu", "ribut", "rica", "ricau", "ricik", "ricuh", "rida", "ridan", "ridi", "riding", "ridip", "ridu", "rigai", "rigi-rigi", "rihat", "rihlah", "riil", "rijal", "rijalugaib", "rijalulgaib", "rijang", "rikuh", "rileks", "rilis", "rim", "rima", "rimas", "rimata", "rimba", "rimbas", "rimbat", "rimbawan", "rimbun", "rime", "rimis", "rimpang", "rimpel", "rimpi", "rimpuh", "rimpung", "rinai", "rincih", "rincis", "rincu", "rindang", "rinding", "rindu", "ring", "ringan", "ringgit", "ringih", "ringik", "ringin", "ringis", "ringkai", "ringkas", "ringkih", "ringkik", "ringking", "ringkuk", "ringkus", "ringsek", "ringsing", "rini", "rinitis", "rinjing", "rinoskop", "rintang", "rintas", "rintih", "rintik", "rintis", "rinyai", "riol", "ripit", "ripta", "ripuh", "ripuk", "ririt", "risa", "risak", "risalah", "risau", "riset", "risi", "risik", "risiko", "risit", "riskan", "rit", "ritel", "ritma", "ritme", "ritmis", "ritual", "ritul", "ritus", "riuh", "riuk", "riung", "rival", "rivalitas", "riwan", "riwayat", "robak-rabik", "robat-rabit", "robek", "roboh", "robok", "robot", "robotika", "rocet", "roda", "rodan", "rodat", "rodensial", "rodentisida", "rodi", "rodium", "rodok", "rodolit", "rodong", "roga", "rogoh", "rogok", "rogol", "roh", "rohani", "rohaniah", "rohmat", "rohulkudus", "roi", "rojeng", "rojol", "rok", "rokade", "roker", "roket", "roki", "rokok", "rol", "rolet", "rolpres", "roma", "roman", "romanistik", "romansa", "romantik", "romantika", "romantikus", "romantis", "romantisisme", "romawi", "rombak", "rombang-rambing", "rombeng", "rombik", "rombohedron", "romboid", "rombok", "rombong", "rombus", "romet", "romok", "romol-romol", "romong", "rompak", "rompal", "rompang", "rompeng", "rompes", "rompi", "rompoh", "rompok", "rompong", "rompyok", "romsus", "romusa", "rona", "ronce", "roncet", "ronda", "rondah-rondih", "ronde", "rondo", "rondok", "roneo", "rong", "rongak", "rongga", "ronggang", "ronggeng", "ronggok", "ronggong", "rongkoh", "rongkok", "rongkol", "rongkong", "rongos", "rongrong", "rongseng", "rongsok", "ronta", "rontek", "rontgen", "rontok", "ronyeh", "ronyok", "ropak-rapik", "rorehe", "rorod", "ros", "rosario", "rosbang", "rosela", "roseng", "roseola", "roset", "rosin", "rosok", "rosot", "rotan", "rotasi", "rotator", "roti", "rotograf", "rotok", "rowa", "rowot", "royak", "royal", "royalti", "royan", "royemen", "royer", "royong", "rua", "ruadat", "ruah", "ruai", "ruak", "ruam", "ruang", "ruap", "ruas", "ruat", "ruaya", "ruba-ruba", "rubah", "rubai", "rubaiat", "ruban", "rubanat", "rubel", "rubela", "rubeola", "rubiah", "rubidium", "rubik", "rubin", "rubing", "rubrik", "rubu", "rubung", "rucah", "rudah", "rudal", "rudapaksa", "rudi", "rudimen", "rudin", "rudu", "rudus", "rugbi", "rugi", "ruh", "ruhbahnat", "ruhban", "ruhbanat", "ruhbaniat", "ruilslag", "ruing", "ruit", "rujah", "rujak", "ruji", "rujuk", "rukam", "rukhsah", "rukiah", "ruko", "ruku", "rukuh", "rukuk", "rukun", "rukyat", "rukyatulhilal", "rum", "rumah", "rumal", "rumba", "rumbah", "rumbai", "rumbia", "rumbing", "rumbu", "rumen", "rumenia", "rumi", "rumin", "ruminansi", "ruminansia", "rumit", "rumor", "rumpakan", "rumpang", "rumpi", "rumpil", "rumpon", "rumpun", "rumput", "rumrum", "rumuk", "rumung", "rumus", "runcing", "runcit", "runding", "rundu-rundu", "runduk", "rundung", "rungau", "runggas", "runggu", "runggu-rangga", "rungguh", "runggut", "rungkau", "rungkuh", "rungkun", "rungkup", "rungu", "rungus", "rungut", "runjam", "runjang", "runjau", "runjung", "runtai", "runtang-runtung", "runtas", "runti", "runtih", "runtuh", "runtun", "runtut", "runut", "runyam", "runyut", "ruok", "rupa", "rupee", "rupiah", "rurut", "rusa", "rusak", "rusuh", "rusuk", "rutab", "rute", "rutenium", "ruterfordium", "rutin", "rutuk", "rutup", "ruwah", "ruwat", "ruwet", "ruyak", "ruyap", "ruyung", "ruyup", "saadah", "saadin", "saanen", "saat", "sab-sab", "saba", "sabah", "sabak", "saban", "sabana", "sabang", "sabar", "sabas", "sabasani", "sabat", "sabatikal", "sabda", "sabel", "saben", "sabet", "sabi", "sabil", "sabilillah", "sabit", "sabitah", "sableng", "sablon", "sabo", "sabot", "sabotase", "sabsab", "sabtu", "sabuk", "sabun", "sabung", "sabur", "sabut", "sad", "sadah", "sadai", "sadak", "sadang", "sadap", "sadar", "sadariah", "sadarulkalam", "sadarusalam", "sadau", "sadel", "sadik", "sadin", "sading", "sadir", "sadis", "sadisme", "sadistis", "sado", "sadrah", "sadran", "sadu", "sadur", "saf", "safa", "safar", "safari", "safi", "safih", "safinah", "safinatunajah", "safir", "safrah", "safron", "safsaf", "safsah", "saga", "sagai", "sagang", "sagar", "sagitarius", "sagon", "sagu", "saguer", "sagur", "sah", "sahabat", "sahaja", "saham", "sahan", "sahang", "sahap", "sahara", "saharah", "sahaya", "sahayanda", "sahda", "sahdu", "sahi", "sahib", "sahibulbait", "sahibulhajat", "sahibulhikayat", "sahifah", "sahih", "sahir", "sahkan", "sahmura", "sahur", "sahut", "sai", "saif", "sailan", "sailo", "saing", "sains", "saintis", "sair", "sais", "saja", "sajadah", "sajak", "sajang", "sajen", "saji", "sak", "saka", "sakai", "sakal", "sakang", "sakap", "sakar", "sakarida", "sakarimeter", "sakarin", "sakarosa", "sakat", "sake", "sakelar", "sakelek", "sakhawat", "sakhi", "sakhrat", "sakhsi", "saki", "sakinah", "saking", "sakit", "saklek", "sakral", "sakramen", "sakramental", "sakramentalia", "sakratulmaut", "sakrilegi", "sakristi", "sakrokoksigeal", "sakrolumbal", "sakrum", "saksama", "saksang", "saksi", "saksofon", "sakti", "saku", "sakura", "sal", "sala", "salaf", "salah", "salai", "salak", "salam", "salang", "salar", "salaris", "salasal", "salat", "salatin", "saldo", "sale", "saleh", "salem", "salep", "sali", "salib", "salihah", "salim", "salin", "salina", "salindia", "salindra", "saling", "salinisasi", "salinitas", "salinometer", "salip", "salir", "salira", "salivasi", "salju", "salmon", "salmonela", "salon", "salpeter", "salping", "saltasi", "salto", "saluir", "saluk", "salung", "salur", "salut", "salvarsan", "salvo", "sama", "samad", "samak", "saman", "samanera", "samaniah", "samapta", "samar", "samara", "samarium", "samas", "samawi", "samba", "sambal", "sambalewa", "sambang", "sambangan", "sambar", "sambat", "sambau", "samben", "sambet", "sambi", "sambil", "sambiloto", "sambit", "sambuk", "sambung", "sambur", "sambut", "sami", "samidra", "samijaga", "samin", "samir", "samo-samo", "samovar", "sampa", "sampah", "sampai", "sampak", "sampakan", "sampan", "sampang", "sampanye", "sampar", "samparan", "sampat", "sampean", "sampek", "sampel", "samper", "sampeyan", "sampil", "sampilik", "samping", "sampir", "sampling", "samplok", "sampo", "sampu", "sampuk", "sampul", "sampur", "samsak", "samsam", "samseng", "samsir", "samsiti", "samsu", "samudra", "samuh", "samum", "samun", "samurai", "sana", "sanad", "sanak", "sanat", "sanatogen", "sanatorium", "sanatulhijriah", "sanatulmiladiah", "sanawiah", "sanca", "sanda", "sandal", "sandang", "sandar", "sandel", "sandera", "sandi", "sanding", "sandiwara", "sando", "sandung", "sandungan", "sanering", "sang", "sanga", "sangai", "sangan", "sangar", "sangat", "sangau", "sangga", "sanggah", "sanggam", "sanggama", "sanggan", "sanggang", "sanggar", "sanggarunggi", "sanggat", "sanggep", "sanggerah", "sangging", "sanggit", "sanggrah", "sanggraloka", "sanggul", "sanggup", "sanggurdi", "sangha", "sangih", "sangir", "sangit", "sangka", "sangkak", "sangkakala", "sangkal", "sangkala", "sangkan", "sangkar", "sangkil", "sangku", "sangkul", "sangkur", "sangkuriang", "sangkut", "sangkut-paut", "sangli", "sangling", "sanglir", "sangon", "sangrai", "sangsai", "sangsam", "sangsang", "sangsi", "sangu", "sanguifikasi", "sangulun", "sangyang", "sani", "sanik", "sanitas", "sanitasi", "saniter", "sanjai", "sanjak", "sanjang", "sanjung", "sanksi", "sano", "sansai", "sanseviera", "sanskerta", "santa", "santai", "santak", "santam", "santan", "santap", "santase", "santau", "santer", "santet", "santiaji", "santing", "santir", "santo", "santonin", "santri", "santun", "santung", "sanubari", "sap", "sapa", "sapai", "saparantu", "sapat", "sapau", "sapersi", "sapi", "sapih", "sapir", "sapit", "sapogenin", "saponin", "saprofit", "sapta", "saptadarma", "saptamarga", "saptapesona", "sapu", "saput", "saputangan", "sar", "sara", "saradasi", "saraf", "sarak", "saran", "sarana", "sarang", "sarangan", "sarap", "sarasehan", "sarat", "sarau", "sarden", "sardencis", "sarean", "sareh", "sarekat", "saren", "sarengat", "sarhad", "sari", "saridele", "sarik", "sarikan", "saring", "sarira", "sarirah", "sarit", "sarjana", "sarju", "sarkasme", "sarkastis", "sarkode", "sarkoderma", "sarkofagus", "sarkolema", "sarkologi", "sarkoma", "sarkoplasma", "saron", "sarsaparila", "sartan", "saru", "saruk", "sarung", "sarut", "sarwa", "sasa", "sasak", "sasakala", "sasana", "sasando", "sasap", "sasar", "sasau", "sasi", "sasian", "sasis", "sasmita", "sastra", "sasus", "sat", "satai", "satak", "satang", "satanologi", "satar", "sate", "satelit", "satih", "satin", "satinet", "satir", "satire", "satiris", "sato", "satori", "satpam", "satria", "satron", "satu", "saturnus", "saturometer", "satwa", "satyagraha", "satyalencana", "satyawacana", "sau", "saudagar", "saudara", "saudari", "sauh", "saujana", "sauk", "saum", "sauna", "saung", "saur", "saus", "saut", "sauvinis", "sauvinisme", "sauvinistis", "saw", "sawa", "sawab", "sawah", "sawai", "sawala", "sawan", "sawang", "sawangan", "sawar", "sawat", "sawer", "sawi", "sawit", "sawo", "sawut", "saya", "sayak", "sayang", "sayap", "sayat", "sayembara", "sayet", "sayib", "sayid", "sayidani", "sayidi", "sayidina", "sayu", "sayung", "sayup", "sayur", "seba", "sebab", "sebahat", "sebai", "sebak", "sebal", "sebam", "sebar", "sebarang", "sebarau", "sebasah", "sebat", "sebaur", "sebekah", "sebel", "sebelas", "sebeng", "sebentar", "seberang", "seberhana", "sebet", "sebit", "seblang", "sebrot", "sebu", "sebuk", "sebum", "sebun", "sebura", "seburas", "seburu", "seburus", "seburut", "sebut", "secang", "seceng", "secerek", "secina", "sedahan", "sedak", "sedam", "sedan", "sedang", "sedap", "sedat", "sedatif", "sedativa", "sedawai", "sedekah", "sedekap", "sedelinggam", "sedeng", "sederhana", "sederum", "sedia", "sediakala", "sedih", "sedikit", "sedimen", "sedimentasi", "sedimenter", "sedingin", "sedong", "sedot", "sedu", "seduayah", "seduh", "sefalopoda", "sefalotoraks", "seg", "sega", "segah", "segak", "segala", "segan", "seganda", "segani", "segar", "segara", "segata", "segeger", "segeh", "segel", "segenap", "segera", "segi", "segianya", "segitiga", "segmen", "segmental", "segmentasi", "segregasi", "seguna", "seh", "seharah", "sehat", "sehingga", "seia", "seilometer", "sein", "seismik", "seismograf", "seismogram", "seismolog", "seismologi", "seismometer", "sejahtera", "sejajar", "sejak", "sejarah", "sejarawan", "sejari", "sejat", "sejati", "sejingkat", "sejuk", "sek", "seka", "sekadar", "sekah", "sekak", "sekakar", "sekakmat", "sekal", "sekala", "sekali", "sekaligus", "sekalipun", "sekalor", "sekam", "sekan", "sekang", "sekap", "sekapar", "sekar", "sekarang", "sekarat", "sekat", "sekata", "sekaten", "sekati", "sekaut", "sekeber", "sekebun", "sekedeng", "sekeduduk", "sekedup", "sekelat", "sekelebatan", "sekelian", "sekema", "sekendal", "sekendi", "sekengkeng", "sekepat", "sekeram", "sekeri", "sekerindangan", "sekering", "sekesel", "seketeng", "sekh", "sekian", "sekilwak", "sekip", "sekira", "sekiram", "sekitar", "seko", "sekoci", "sekoi", "sekolah", "sekon", "sekongkol", "sekonyong-konyong", "sekop", "sekopong", "sekoteng", "sekrap", "sekresi", "sekret", "sekreta", "sekretariat", "sekretaris", "sekretin", "sekring", "sekrip", "sekrup", "seks", "seksi", "seksmaniak", "seksolog", "seksologi", "seksologis", "sekstan", "sekstet", "seksual", "seksualitas", "sektarian", "sektarianisme", "sekte", "sektor", "sektoral", "sekuas", "sekui", "sekul", "sekularis", "sekularisasi", "sekularisme", "sekularitas", "sekuler", "sekulir", "sekunar", "sekunder", "sekunyit", "sekuritas", "sekuriti", "sekutu", "sel", "sela", "selabar", "selaber", "selaberak", "selada", "seladang", "seladon", "selagi", "selai", "selain", "selaju", "selak", "selaka", "selakarang", "selaku", "selalu", "selam", "selamat", "selamba", "selampai", "selampe", "selampek", "selampit", "selan", "selancak", "selancang", "selancar", "selang", "selangat", "selangka", "selangkang", "selangkup", "selanting", "selap", "selapan", "selaput", "selar", "selara", "selarak", "selaras", "selarung", "selasa", "selasar", "selasih", "selat", "selatan", "selawah", "selawat", "selawe", "selaya", "selayun", "selayur", "sele", "selebaran", "selebran", "selebrasi", "selebritas", "selebriti", "selebu", "seleder", "selederi", "seledri", "seleguri", "selekeh", "selekoh", "selekor", "seleksi", "selekta", "selektif", "selektivitas", "seleler", "selembana", "selembubu", "selempada", "selempang", "selempukau", "selempuri", "selendang", "selender", "selendro", "selenggara", "selengkatan", "selenium", "selenografi", "selenologi", "selentang-selenting", "selentik", "selenting", "seleo", "selepa", "selepang", "selepat", "selepe", "seleper", "selepetan", "selepi", "selera", "selerak", "selerang", "seleret", "selesa", "selesai", "selesma", "seletuk", "seleweng", "selia", "seliap", "selibat", "selibu", "selibut", "selidik", "seligi", "seligit", "selimang", "selimpang", "selimpat", "selimut", "selinap", "selindung", "seling", "selingar", "selingkit", "selingkuh", "selingkup", "selip", "selipar", "selir", "selira", "selirak", "selirat", "seliri", "selisih", "selisik", "selisip", "selisir", "selit", "seliwer", "selo", "selofan", "selok", "seloka", "selokan", "seloki", "selom", "selomot", "selompret", "selon", "selonding", "selong", "selongkar", "selongsong", "selonjor", "selonong", "selop", "seloroh", "selot", "seloyak", "seloyong", "selter", "seluang", "seluar", "selubung", "seludang", "seludu", "seluduk", "seludup", "selui", "seluk", "seluk-beluk", "selukat", "selukung", "seluler", "seluloid", "selulosa", "selulup", "selulur", "selumar", "selumbar", "selumbari", "selumbat", "selumu", "selumur", "seluncur", "selundat", "selundup", "selungkang", "selungkup", "selup", "selupan", "selupat", "selurah", "seluru", "seluruh", "selusuh", "selusup", "selusur", "selut", "sema", "semadi", "semafor", "semah", "semai", "semaja", "semak", "semalu", "semambu", "semampai", "semampang", "semampat", "seman", "semanak", "semandan", "semandarasa", "semandarasah", "semandera", "semang", "semangat", "semanggi", "semangka", "semangkok", "semangkuk", "semantan", "semantik", "semantis", "semantung", "semaput", "semara", "semarai", "semarak", "semaram", "semarmendem", "semat", "semata", "semawang", "semawar", "semaya", "semayam", "semayi", "sembab", "sembabat", "sembada", "sembagi", "sembah", "sembahyang", "sembai", "sembak", "sembam", "sembap", "sembar", "sembarang", "sembari", "sembat", "sembawang", "sembayan", "sembelih", "sembelit", "sember", "semberap", "semberip", "sembesi", "sembeta", "sembiang", "sembilan", "sembilang", "sembilik", "sembilu", "sembir", "sembirat", "semboyan", "sembrani", "sembrono", "sembuang", "sembuh", "sembul", "sembung", "sembunyi", "sembur", "semburat", "semburit", "semecah", "semedera", "semejana", "semeleh", "sememeh", "semen", "semena", "semenanjung", "semenda", "semendarasa", "semenggah", "semenjak", "semenjana", "sementang", "sementara", "sementasi", "sementelah", "sementung", "semerawang", "semerbak", "semerdanta", "semesta", "semester", "semi", "semiang", "semidiurnal", "semifinal", "semifinalis", "semiidiom", "semikonduktor", "semilat", "seminai", "seminar", "seminari", "seminaris", "seminau", "semiologi", "semiotik", "semiotika", "semipermanen", "semir", "semitisme", "semivokal", "semok", "sempada", "sempadan", "sempak", "sempal", "sempalai", "sempana", "sempang", "sempat", "sempelah", "sempena", "sempil", "sempit", "semplak", "sempoyong", "sempoyongan", "semprit", "semprong", "semprot", "sempul", "sempur", "sempuras", "sempurna", "semrawut", "semringah", "semsem", "semu", "semua", "semunding", "semunian", "semur", "semut", "sen", "sena", "senak", "senam", "senamaki", "senandika", "senandung", "senang", "senangin", "senantan", "senantiasa", "senapan", "senapati", "senar", "senarai", "senario", "senat", "senator", "senawan", "senawar", "senawat", "senawi", "senda", "sendal", "sendalu", "sendam", "sendang", "sendar", "sendarat", "sendaren", "sendat", "sendawa", "sendayan", "sendayang", "sendel", "sendeng", "sender", "senderik", "senderung", "senderut", "sendi", "sending", "sendiri", "sendocong", "sendok", "sendon", "sendorong", "sendratari", "sendu", "senduduk", "senduk", "senen", "senewen", "seng", "sengaja", "sengal", "sengam", "sengangar", "sengangkar", "sengap", "sengar", "sengar-sengir", "sengarat", "sengaring", "sengat", "sengau", "sengelat", "senget", "senggak", "senggang", "senggara", "senggat", "senggau", "senggayut", "senggerahan", "senggeruk", "sengget", "senggiling", "senggol", "senggora", "senggugu", "senggugut", "sengguk", "senggulung", "senggut", "sengih", "sengingih", "sengir", "sengit", "sengkak", "sengkal", "sengkalan", "sengkang", "sengkar", "sengkarut", "sengkawang", "sengkayan", "sengked", "sengkedan", "sengkek", "sengkela", "sengkelang", "sengkelat", "sengkeling", "sengkelit", "sengkenit", "sengker", "sengketa", "sengkil", "sengkilit", "sengkuang", "sengkuap", "sengon", "sengsai", "sengsam", "sengsara", "sengsem", "sengsurit", "senguk", "sengungut", "sengut", "seni", "senigai", "senil", "senilitas", "seniman", "senin", "senior", "senioritas", "senja", "senjak", "senjang", "senjata", "senjolong", "senjong", "senohong", "senonoh", "senoyong", "sensasi", "sensasional", "sensibel", "sensibilitas", "sensitif", "sensitivitas", "sensor", "sensoris", "sensual", "sensualisme", "sensualitas", "sensur", "sensus", "senta", "sentada", "sentadu", "sentagi", "sentak", "sentaka", "sental", "sentali", "sentana", "sentap", "sentara", "senteng", "senter", "senterpor", "senti", "sentiare", "sentiasa", "sentigram", "sentil", "sentiliter", "sentimen", "sentimental", "sentimentalitas", "sentimentil", "sentimeter", "senting", "sentiong", "sentiung", "sentol", "sentong", "sentosa", "sentra", "sentral", "sentralisasi", "sentralistis", "sentrifugal", "sentripetal", "sentrum", "sentuh", "sentuk", "sentul", "sentung", "senu", "senuh", "senuk", "senunggang", "senur", "senyampang", "senyap", "senyar", "senyawa", "senyum", "senyur", "seok", "seolah-olah", "sep", "sepada", "sepah", "sepai", "sepak", "sepakat", "sepal", "sepala-pala", "sepam", "sepan", "sepanar", "sepandri", "sepang", "sepangkalan", "separasi", "separatis", "separatisme", "separbang", "sepasin", "sepat", "sepatbor", "sepatu", "sepeda", "sepedas", "sepegoh", "sepekuk", "sepel", "sepele", "sepeling", "sepen", "sepenuh", "seperah", "seperantu", "sepersi", "seperti", "sepesan", "sepet", "sepetir", "sepi", "sepih", "sepiker", "sepir", "sepit", "seples", "sepoi", "seprai", "seprei", "sepsis", "september", "septima", "septum", "sepuh", "sepuit", "sepuk", "sepukal", "sepul", "sepulih", "sepuluh", "sepupu", "sepur", "seput", "sera", "serabi", "serabut", "serabutan", "seraga", "seragam", "serah", "serahi", "serai", "serak", "serakah", "seram", "serama", "serambi", "serampang", "serampin", "serampu", "serampuk", "seran", "serana", "seranah", "serandang", "serandau", "serandib", "serandung", "serang", "serangga", "serangguh", "seranggung", "serangkak", "serangsang", "serani", "seranograf", "seranometer", "seranta", "serap", "serapah", "serapat", "serasa", "serasah", "serasi", "serat", "seratah", "serati", "seratung", "serau", "seraumeter", "seraut", "serawak", "serawal", "seraya", "serba", "serbaada", "serbaakal", "serbabaru", "serbabisa", "serbadua", "serbaemas", "serbaguna", "serbah-serbih", "serbaindah", "serbak", "serbakeemasan", "serbakurang", "serbamacam", "serban", "serbaneka", "serbaputih", "serbarumah", "serbasalah", "serbasama", "serbasusah", "serbat", "serbausaha", "serbet", "serbi", "serbu", "serbuk", "serdadu", "serdak", "serdam", "serdang", "serdawa", "serdi", "serdih", "serealia", "serealin", "sereat", "serebral", "serebrospinal", "serebrum", "seregang", "sereh", "serembah-serembih", "seremban", "seremoni", "seremonial", "serempak", "serempet", "serempu", "serendah", "serendeng", "sereng", "serengam", "serengeh", "serengit", "serenjak", "serenjang", "serenta", "serentak", "serep", "seresin", "seret", "sergah", "sergam", "sergap", "sergut", "seri", "serial", "seriap", "seriat", "seriawan", "seribulan", "seriding", "serigading", "serigala", "serigunting", "serik", "serikat", "serikaya", "serimala", "serimpet", "serimpi", "serimpung", "serindai", "serindit", "sering", "seringai", "seringing", "seriosa", "serit", "serium", "serius", "serkah", "serkai", "serkap", "serkup", "serlah", "serling", "sermangin", "sermet", "sernak", "sero", "serobeh", "serobok", "serobot", "serografi", "seroja", "serok", "serologi", "serombong", "serompok", "serondeng", "serondok", "serondol", "serondong", "serong", "seronok", "seroplastik", "seropot", "serositas", "serosoh", "serot", "seroyong", "serpentina", "serpih", "sersan", "serse", "sersi", "serta", "sertifikasi", "sertifikat", "sertu", "seru", "seruak", "seruas", "seruda", "serudi", "seruduk", "serugah", "serugat", "seruh", "serui", "seruit", "seruk", "serul", "seruling", "serum", "serumat", "serumen", "serumpu", "serun", "serunai", "serunda", "serundang", "serundeng", "seruni", "serunjang", "seruntun", "serupih", "seruput", "seruru", "serut", "serutu", "seruyuk", "servis", "sesah", "sesai", "sesaing", "sesajen", "sesak", "sesal", "sesam", "sesamoid", "sesanti", "sesap", "sesar", "sesat", "sesawi", "sesenap", "seser", "sesi", "sesil", "sesira", "sesium", "sesoca", "sespan", "sestina", "sesuai", "sesuatu", "sesumbar", "set", "seta", "setabelan", "setagen", "setai", "setaka", "setakona", "setal", "setambun", "setan", "setana", "setang", "setangan", "setanggi", "setapak", "setaria", "setat", "setawar", "setebal", "seteger", "seteheng", "setek", "seteker", "setel", "setela", "seteleng", "setem", "setempel", "seten", "setenggar", "seter", "seteranah", "seteru", "setewel", "seti", "setia", "setiabu", "setiar", "setiga", "setik", "setin", "setinggi", "setip", "setir", "setirman", "setiwel", "setoka", "setokin", "setolop", "setom", "seton", "setop", "setoples", "setor", "setori", "setoter", "setra", "setrap", "setrat", "setren", "setreng", "setrik", "setrika", "setrimin", "setrip", "setruk", "setrum", "setrup", "setti", "setu", "setuil", "setum", "setung", "setup", "seturi", "seturu", "seudati", "sewa", "sewah", "sewaka", "sewal", "sewar", "sewat", "sewot", "sewu", "sfenoidal", "sferoid", "sferometer", "sfigmograf", "sfigmomanometer", "sfikmograf", "sfingofili", "sfingter", "sfinks", "sia", "siaga", "siah", "siak", "siakap", "siakon", "sial", "sialang", "sialit", "siam", "siamang", "sian", "sianamida", "sianang", "siang", "sianggit", "sianida", "sianometer", "sianometri", "sianosis", "siantan", "siap", "siap-sedia", "siap-siaga", "siapa", "siapuh", "siar", "siarah", "siarat", "siasat", "siat", "siau", "sibak", "sibar", "sibernetika", "sibilan", "sibir", "sibuk", "sibur", "sibusuk", "sice", "sicerek", "sida", "sidai", "sidamukti", "sidang", "sidat", "siderit", "sidi", "sidik", "siding", "sidomukti", "sidratulmuntaha", "siduga", "siduk", "sif", "sifat", "sifatullah", "sifer", "sifilis", "sifilobia", "sifiloid", "sifir", "sifon", "sigai", "sigak", "sigando", "sigap", "sigar", "sigaret", "sigasir", "sigenting", "siger", "sigi", "sigilografi", "sigma", "signifikan", "signifikansi", "signifikasi", "sigot", "sigung", "sih", "sihir", "sijik", "sijil", "sika", "sikah", "sikai", "sikak", "sikap", "sikari", "sikas", "sikat", "sikedempung", "sikeras", "sikik", "sikikih", "sikin", "sikit", "siklik", "siklis", "sikloid", "siklon", "sikloparafin", "siklotron", "siklus", "siksa", "siku", "sikudidi", "sikudomba", "sikut", "sil", "sila", "silabel", "silabis", "silabus", "silah", "silalatu", "silam", "silampukau", "silang", "silap", "silara", "silase", "silat", "silaturahmi", "silau", "silengah", "silet", "silih", "silik", "silika", "silikat", "silikon", "silikona", "silikosis", "silinder", "silindris", "silindroid", "silir", "silium", "silo", "silogisme", "silok", "silologi", "silometer", "siloptik", "silsilah", "silt", "silu", "siluet", "siluk", "siluman", "silungkang", "silvika", "silvikultur", "silvisida", "simak", "simalakama", "simalu", "simaung", "simbah", "simbai", "simbang", "simbar", "simbat", "simbion", "simbiosis", "simbiotis", "simbiou", "simbok", "simbol", "simbolis", "simbolisme", "simbukan", "simbur", "simetri", "simetris", "simfisis", "simfoni", "simifisis", "simile", "simpai", "simpak", "simpan", "simpang", "simpang-siur", "simpanse", "simpat", "simpati", "simpatik", "simpatisan", "simpel", "simpetal", "simping", "simpir", "simpleks", "simplifikasi", "simplistis", "simposium", "simpuh", "simpuk", "simpul", "simpur", "simtom", "simtomatis", "simtomatologi", "simulasi", "simulator", "simulfiks", "simultan", "simuntu", "sin", "sinaga", "sinagoga", "sinagoge", "sinambung", "sinanaga", "sinansari", "sinar", "sinatan", "sinau", "sinawar", "sindap", "sinden", "sinder", "sindeton", "sindikalisme", "sindikasi", "sindikat", "sindir", "sindrom", "sindur", "sineas", "sinekdoke", "sinektika", "sinema", "sinemapleks", "sinemaskop", "sinematik", "sinematograf", "sinematografi", "sinematografis", "sinemikrografik", "sineol", "sinepleks", "sinergi", "sinergis", "sinergisme", "sineskop", "sinestesia", "sinetron", "sing", "singa", "singahak", "singelar", "singga", "singgah", "singgan", "singgang", "singgasana", "singgel", "singgir", "singgit", "singgul", "singgung", "singit", "singkak", "singkang", "singkap", "singkat", "singkeh", "singkek", "singkil", "singkir", "singkong", "singkup", "singkur", "singlet", "singsat", "singse", "singset", "singsing", "singularis", "singulum", "singulun", "singunen", "sini", "sinis", "sinisme", "sinjang", "sinklin", "sinkonina", "sinkope", "sinkretis", "sinkretisasi", "sinkretisme", "sinkron", "sinkronis", "sinkronisasi", "sinkronisme", "sinode", "sinolog", "sinologi", "sinom", "sinoman", "sinonim", "sinonimi", "sinopsis", "sinoptis", "sinovia", "sinovial", "sinovitas", "sinovitis", "sinrili", "sinse", "sintagma", "sintagmatis", "sintaksis", "sintaktis", "sintal", "sintar", "sintas", "sinter", "sinterklas", "sintese", "sintesis", "sintetik", "sintetis", "sinting", "sintir", "sintonik", "sintren", "sintua", "sintuk", "sintulang", "sintung", "sinu", "sinuhun", "sinus", "sinusal", "sinusitis", "sinusoid", "sinyal", "sinyalemen", "sinyalir", "sinyo", "sinyokolas", "sio", "sioca", "siong", "siongka", "sip", "sipahi", "sipai", "sipangkalan", "sipat", "sipatung", "sipedas", "sipesan", "sipi", "sipil", "sipir", "sipit", "sipolan", "sipongang", "sipu", "sipulut", "siput", "sir", "sira", "sirah", "siram", "sirangkak", "sirap", "sirat", "siratalmustakim", "siraut", "sirene", "sirep", "siri", "siriasis", "sirib", "sirih", "sirik", "siring", "siringitis", "sirip", "sirkam", "sirke", "sirkol", "sirkuit", "sirkulasi", "sirkuler", "sirkumfiks", "sirkumfleks", "sirkus", "sirlak", "sirna", "sirokumulus", "sirop", "sirostratus", "sirsak", "siru", "sirup", "sirus", "sis", "sisa", "sisal", "sisalak", "sisi", "sisih", "sisik", "sisip", "sisir", "sista", "sistaltik", "sistem", "sistematik", "sistematika", "sistematis", "sistematisasi", "sistematisir", "sistemis", "sistemisasi", "sisterna", "sistitis", "sistole", "sistolik", "sisurut", "siswa", "siswi", "sit", "sita", "sitak", "sitat", "siter", "siti", "sitinggil", "sitir", "sitokrom", "sitolilis", "sitolisis", "sitologi", "sitoplasma", "sitrat", "sitrin", "sitrun", "situ", "situasi", "situasional", "situn", "situs", "siuh", "siuk", "siul", "siuman", "siung", "siur", "siut", "sivilisasi", "siwalan", "siwaratri", "siwer", "sizigi", "skafa", "skala", "skalanisasi", "skalar", "skalop", "skandal", "skandium", "skarifikasi", "skatola", "skatologi", "skedul", "skelet", "skema", "skematis", "skenario", "skene", "skeptis", "skeptisisme", "sketsa", "ski", "skiameter", "skiatika", "skilot", "skip", "skiping", "skisma", "skizofrenia", "skizoid", "sklerenkima", "sklerosis", "skleroterapi", "skolastik", "skolastikus", "skolastisi", "skolastisisme", "skombroid", "skop", "skopometer", "skor", "skorbut", "skorpio", "skors", "skorsing", "skrin", "skrining", "skrip", "skripsi", "skrobikulus", "skrotum", "skuadron", "skuas", "skuat", "skuos", "skuter", "slagorde", "slah", "slang", "slebor", "slendro", "sling", "slintat-slintut", "slip", "slof", "slogan", "smes", "smokel", "snob", "snobisme", "soak", "soal", "soang", "soarma", "soba", "soban", "sobat", "sobek", "sobok", "soda", "sodet", "sodium", "sodok", "sodomasosisme", "sodomi", "sodomia", "sodor", "soe", "sofa", "sofis", "sofisme", "sofistri", "sofitel", "soga", "sogan", "sogang", "sogo", "sogok", "sohar", "sohib", "sohor", "sohun", "soja", "sok", "soka", "sokah", "soker", "soket", "sokom", "sokong", "sol", "solah", "solak", "solang", "solanina", "solar", "solarimeter", "solder", "solek", "solempis", "solenoide", "solfatar", "solfatara", "solid", "solidaritas", "solider", "soliditas", "solilokui", "solinometer", "solipsisme", "solis", "soliter", "solo", "solois", "solok", "solokan", "solot", "solum", "solusi", "solvabilitas", "solven", "som", "soma", "somah", "somasi", "somatis", "somatomegali", "sombok", "sombol", "sombong", "sombrero", "someng", "somnambulis", "somnambulisme", "sompek", "sompeng", "somplak", "somplok", "sompoh", "sompok", "sompong", "sompret", "sonar", "sonata", "sonatina", "sondai", "sondanco", "sondang", "sondase", "sondek", "sonder", "sondok", "sondong", "soneta", "songar", "songel", "songgeng", "songket", "songkok", "songkro", "songong", "songsong", "sonik", "sono", "sonogram", "sonokeling", "sonor", "sonoran", "sontak", "sontek", "sontok", "sontoloyo", "sop", "sopak", "sopan", "sopek", "sopi", "sopir", "soporifik", "sopran", "sorak", "sorang", "sorban", "sorbet", "sore", "sorek", "soren", "sorgum", "sori", "sorog", "sorok", "sorong", "sorot", "sortir", "sosi", "sosial", "sosialis", "sosialisasi", "sosialisme", "sosialistis", "sosio", "sosio-kultural", "sosiobiolog", "sosiodemokrasi", "sosiodrama", "sosiokultural", "sosiolek", "sosiolinguistik", "sosiolog", "sosiologi", "sosiologis", "sosiometri", "sosionasional", "sosiopat", "sosis", "sositet", "sosoh", "sosok", "sosor", "soto", "sotoh", "sotong", "sotor", "soun", "sowan", "sowang", "soyak", "spageti", "spalasi", "span", "spanduk", "spaning", "sparing", "spasi", "spasial", "spasmodis", "spasmus", "spastik", "spatbor", "spatula", "spedometer", "spektakel", "spektakuler", "spektator", "spektograf", "spektogram", "spektrograf", "spektrogram", "spektrokimia", "spektrometer", "spektroskop", "spektrum", "spekuk", "spekulan", "spekulasi", "spekulatif", "spekulator", "speleologi", "spelter", "sperma", "spermaseti", "spermatid", "spermatofora", "spermatogenesis", "spermatosit", "spermatozoa", "spermatozoid", "spesial", "spesialis", "spesialisasi", "spesialistis", "spesies", "spesifik", "spesifikasi", "spesimen", "spidol", "spidometer", "spikul", "spil", "spina", "spion", "spionase", "spiral", "spiralisasi", "spirilum", "spirit", "spiritis", "spiritisme", "spiritual", "spiritualisasi", "spiritualisme", "spiritus", "spirometer", "spons", "sponsor", "spontan", "spontanitas", "spora", "sporadis", "sporangium", "sporofil", "sport", "sportif", "sportivitas", "spring", "sprint", "sprinter", "sputnik", "sputum", "sreg", "sregep", "srempet", "sri", "srigading", "srigunggu", "srigunting", "srikandi", "srikaya", "srimanganti", "sripah", "sripanggung", "sriti", "stabil", "stabilisasi", "stabilisator", "stabilitas", "stabilizer", "stadion", "stadium", "staf", "stafilitis", "stagnan", "stagnasi", "staking", "stalagmit", "stalagmometri", "stalaktit", "stalinisme", "stalon", "stamba", "stambon", "stambuk", "stambul", "stamen", "stamina", "stan", "standar", "standardisasi", "stanplat", "stanum", "stanza", "stapler", "staples", "start", "starter", "stasi", "stasioner", "stasis", "stasiun", "statis", "statistik", "statistika", "statistis", "stator", "status", "statuta", "statuter", "stearat", "stearin", "steatit", "steatosis", "stegodon", "steik", "stek", "steker", "stela", "steling", "stema", "stemma", "stempel", "sten", "stengun", "steno", "stenografer", "stenografi", "stenogram", "stensil", "step", "stepa", "stepler", "steradian", "stereo", "stereofoni", "stereofonik", "stereognosis", "stereograf", "stereografi", "stereoisomerisme", "stereokimia", "stereometri", "stereoskop", "stereotip", "stereotipikal", "steril", "sterilisasi", "sterilitas", "steroid", "steroidal", "sterol", "stetoskop", "stevador", "stibium", "stigma", "stigmata", "stik", "stiker", "stilbestrol", "stilir", "stilistika", "stilograf", "stimulan", "stimulans", "stimulasi", "stimulatif", "stimulator", "stimulus", "stipendium", "stipulasi", "stirena", "stoikiometri", "stok", "stokastik", "stoker", "stol", "stoliditas", "stolon", "stomata", "stomatitis", "stomatogastrik", "stomatoskop", "stop", "stoper", "stopkeran", "stopkontak", "stoples", "stori", "stormking", "strabotomi", "strata", "strategem", "strategi", "strategis", "stratifikasi", "stratigrafi", "strato", "stratokumulus", "stratopause", "stratopouse", "stratosfer", "stratum", "stratus", "streng", "streptokokus", "streptomisin", "stres", "striker", "strimin", "strip", "striptis", "stroberi", "strobila", "stroboskop", "stroke", "stromking", "strontium", "struktur", "struktural", "strukturalisasi", "strukturalisme", "struma", "studen", "studi", "studio", "stuko", "stupa", "sua", "suah", "suai", "suak", "suaka", "suam", "suami", "suaminda", "suang", "suangi", "suap", "suar", "suara", "suarang", "suargaloka", "suari", "suasa", "suasana", "suat", "suatu", "sub", "subak", "subal", "subam", "suban", "subang", "subbab", "subbagian", "subdirektorat", "subentri", "suberat", "suberin", "subetnik", "subfilum", "subgeneralisasi", "subgenus", "subhana", "subhanallah", "subhat", "subirigasi", "subjek", "subjektif", "subjektivisme", "subkategorisasi", "subkelas", "subklas", "subkontraktor", "subkultur", "sublema", "subletal", "sublim", "sublimasi", "sublimat", "submarine", "submukosa", "subordinasi", "subordinat", "suborganisasi", "subsider", "subsidi", "subskrip", "subsonik", "substandar", "substansi", "substansial", "substantif", "substitusi", "substitutif", "substrat", "subtil", "subtonik", "subtropik", "subuco", "subuh", "subunit", "subur", "subversi", "subversif", "subyek", "subyektif", "subyektivisme", "suceng", "suci", "suda", "sudah", "sudet", "sudi", "sudip", "sudoriferus", "sudra", "sudu", "suduayah", "suduk", "sudung", "sudut", "suf", "sufah", "sufal", "sufi", "sufiks", "sufisme", "sufrah", "sugar", "sugesti", "sugi", "sugih", "suguh", "sugul", "sugun", "suh", "suhad", "suhian", "suhu", "suhuf", "suhun", "suiseki", "suit", "sujana", "sujen", "suji", "sujud", "suka", "sukacita", "sukade", "sukamandi", "sukan", "sukar", "sukarela", "sukaria", "sukat", "sukduf", "suke", "suket", "suki", "suklapaksa", "sukma", "sukrosa", "sukses", "suksesi", "suksesif", "suku", "sukuisme", "sukun", "sula", "sulah", "sulalah", "sulalat", "sulam", "sulang", "sulap", "sulat-sulit", "sulbi", "sulfanasi", "sulfanilamida", "sulfat", "sulfhidril", "sulfolipid", "sulfonamida", "sulfur", "sulfurasi", "suli", "sulih", "suling", "sulit", "sultan", "sultanat", "sultani", "suluh", "suluk", "sulung", "sulur", "sulut", "sum", "sumah", "sumarah", "sumare", "sumasi", "sumba", "sumbang", "sumbangsih", "sumbar", "sumbat", "sumbel", "sumber", "sumbi", "sumbing", "sumbu", "sumbuk", "sumbul", "sumbung", "sumbur", "sumbut", "sumeh", "sumengit", "sumilir", "sumir", "sumirat", "sumo", "sumpah", "sumpal", "sumpek", "sumpel", "sumping", "sumpit", "sumsum", "sumur", "sumurung", "sun", "sunah", "sunam", "sunan", "sunat", "sunatullah", "sunbulat", "sundai", "sundak", "sundal", "sundang", "sundari", "sundep", "sunduk", "sundul", "sundus", "sundusin", "sundut", "sungai", "sungga", "sunggi", "sungging", "sunggit", "sungguh", "sungguhpun", "sungil", "sungkah", "sungkai", "sungkal", "sungkan", "sungkap", "sungkawa", "sungkem", "sungkit", "sungkuk", "sungkum", "sungkup", "sungkur", "sungkuran", "sungsang", "sungu", "sungut", "suni", "sunjam", "sunti", "suntiabu", "suntih", "suntik", "sunting", "suntuk", "sunu", "sunukung", "sunyata", "sunyi", "sup", "supa", "supai", "supaya", "supel", "super", "superblok", "supercepat", "superfisial", "superfosfat", "superheterodin", "superinfeksi", "superintenden", "superior", "superioritas", "superjet", "superkomputer", "superkonduktivitas", "superkonduktor", "superlatif", "superlativisme", "superlunar", "supermarket", "supermen", "supernatural", "supernova", "superskrip", "superskripsi", "supersonik", "superstar", "superstruktur", "supervisi", "supervisor", "suplai", "suplemen", "suplementasi", "suplesi", "supletoar", "suporter", "suportif", "supra", "supraalami", "suprafiks", "supramolekuler", "supranasional", "suprarene", "suprarenoma", "suprasasti", "suprasegmental", "supremasi", "supresif", "supresor", "surah", "surahi", "surai", "suralaya", "suraloka", "suram", "surat", "surati", "surau", "suraya", "surealis", "surealisme", "suren", "surfaktan", "surga", "surgaloka", "surgawi", "suri", "surian", "surih", "surili", "surjan", "surogat", "surplus", "suruh", "suruk", "surup", "surut", "survei", "surya", "suryakanta", "suryani", "sus", "susah", "susastra", "suseptibilitas", "susila", "susilat", "suspender", "suspensi", "suster", "susu", "susuh", "susuk", "susul", "susun", "susung", "susup", "susur", "susut", "sut", "sutan", "suten", "sutil", "sutra", "sutradara", "sutura", "suul", "suun", "suuzan", "suvenir", "suwarnabumi", "suwarnadwipa", "suwir", "suwita", "svedberg", "swa", "swabakar", "swabela", "swadana", "swadarma", "swadaya", "swadesi", "swadidik", "swadisiplin", "swagriya", "swahara", "swaharga", "swaimbas", "swak", "swakaji", "swakarsa", "swakarya", "swakelola", "swakendali", "swakontradiksi", "swalayan", "swanama", "swanggi", "swapraja", "swarabakti", "swasembada", "swasensor", "swasraya", "swasta", "swastanisasi", "swastiastu", "swastika", "swatabur", "swatantra", "swausaha", "sweter", "swike", "swimpak", "swipoa", "syabah", "syabas", "syafaat", "syafakat", "syafii", "syah", "syahadat", "syahadatain", "syahbandar", "syahda", "syahdan", "syahdu", "syahid", "syahriah", "syahsiah", "syahwat", "syair", "syairi", "syajar", "syajarah", "syak", "syaka", "syakban", "syakduf", "syakhsi", "syakir", "syal", "syala", "syam", "syamali", "syaman", "syamanisme", "syamsi", "syamsiah", "syamsir", "syamsu", "syantung", "syar", "syarab", "syarah", "syarak", "syarat", "syarbat", "syarekat", "syariat", "syarif", "syarifah", "syarik", "syarikat", "syatar", "syaulam", "syawal", "syeir", "syekh", "syeti", "syiar", "syikak", "syin", "syirik", "syiwa", "syiwaratri", "syogun", "syok", "syubhat", "syuhada", "syukur", "syumuliah", "syur", "syura", "syurah", "syuriah", "syuruk", "syuting", "taajul", "taala", "taaruf", "taasub", "taat", "taawud", "taazur", "tabah", "tabak", "tabal", "taban", "tabar-tabar", "tabarak", "tabaruk", "tabayun", "tabe", "tabel", "tabela", "tabelaris", "tabernakel", "tabia", "tabiat", "tabib", "tabii", "tabiin", "tabik", "tabir", "tablet", "tablig", "tablo", "tabloid", "tabo", "tabok", "tabrak", "tabu", "tabuh", "tabuhan", "tabula", "tabulasi", "tabulator", "tabulatur", "tabun", "tabung", "tabur", "tabut", "tabzir", "taci", "tadabur", "tadah", "tadaruk", "tadarus", "tadbir", "tadi", "tadir", "tadung", "tadwin", "taekwondo", "taeniasis", "taf", "tafadal", "tafahus", "tafakur", "tafeta", "tafsir", "tagak", "tagal", "tagan", "tagar", "tageh", "tagih", "tago", "tagut", "tahajud", "tahak", "tahal", "tahalul", "tahan", "tahana", "tahang", "tahap", "tahar", "taharah", "tahbis", "tahi", "tahiat", "tahil", "tahir", "tahkik", "tahkim", "tahlil", "tahmid", "tahniah", "tahnik", "tahsil", "tahu", "tahun", "taib", "taifun", "taiga", "taiko", "taipan", "tais", "taiso", "taja", "tajak", "tajali", "tajam", "tajarud", "tajau", "tajdid", "tajen", "taji", "tajin", "tajnis", "tajribah", "taju", "tajuk", "tajung", "tajur", "tajusalatin", "tajwid", "tak", "takabur", "takaful", "takah", "takak", "takal", "takang-takik", "takar", "takarir", "takarub", "takat", "takbir", "takbiratulihram", "takdim", "takdir", "takdis", "takeh", "takel", "takeyari", "takhayul", "takhlik", "takhsis", "takhta", "taki", "takigrafi", "takik", "takimeter", "takir", "takisme", "takjil", "takjub", "taklid", "taklif", "taklik", "taklikat", "taklim", "taklimat", "takluk", "takma", "takmurni", "takoah", "takol", "takometer", "takraw", "takrif", "takrim", "takrir", "taksa", "taksasi", "taksem", "taksi", "taksidermi", "taksimeter", "taksin", "taksir", "taksologi", "takson", "taksonomi", "taktik", "taktil", "taktis", "takuh", "takuk", "takung", "takur", "takut", "takwa", "takwil", "takwim", "takwin", "takyin", "takziah", "takzim", "takzir", "tal", "tala", "talabiah", "talah", "talak", "talam", "talang", "talar", "talas", "talasemia", "talasofit", "talbiah", "talek", "talempong", "talen", "talenan", "talenta", "tali", "talib", "talibun", "talium", "talk", "talkin", "talon", "talu", "talun", "talupuh", "talut", "tam", "tamadun", "tamah", "tamak", "tamam", "taman", "tamar", "tamarinda", "tamasya", "tamat", "tamatulkalam", "tambah", "tambak", "tambakan", "tambal", "tamban", "tambang", "tambar", "tambat", "tamber", "tambera", "tambi", "tambo", "tamborin", "tambuh", "tambul", "tambun", "tambung", "tambur", "tambus", "tameng", "tamimah", "tampah", "tampak", "tampal", "tampan", "tampang", "tampar", "tampas", "tampel", "tampi", "tampik", "tampil", "tampin", "tamping", "tampon", "tamponade", "tampuk", "tampung", "tampus", "tamsil", "tamtam", "tamtama", "tamu", "tamuk", "tamyiz", "tan", "tanah", "tanai", "tanak", "tanam", "tanang", "tanau", "tanazul", "tanbiat", "tanbihat", "tancang", "tancap", "tanda", "tandak", "tandan", "tandang", "tandas", "tandem", "tandik", "tandikat", "tandil", "tanding", "tandon", "tandu", "tanduk", "tandun", "tandur", "tandus", "tanfiziah", "tang", "tangan", "tangap", "tangar", "tangas", "tangeh", "tangen", "tangga", "tanggah", "tanggal", "tanggam", "tanggang", "tanggap", "tanggar", "tanggetong", "tangguh", "tangguk", "tanggul", "tanggulang", "tanggung", "tangis", "tangkah", "tangkai", "tangkaian", "tangkal", "tangkap", "tangkar", "tangkas", "tangki", "tangkil", "tangkis", "tangkue", "tangkuk", "tangkul", "tangkup", "tangkur", "tangkut", "tanglung", "tango", "tangsa", "tangsel", "tangsi", "tani", "tania", "tanin", "tanjak", "tanji", "tanjidor", "tanju", "tanjul", "tanjung", "tanjur", "tank", "tanker", "tanpa", "tansi", "tantang", "tante", "tanti", "tantiem", "tantrisme", "tanur", "tanwin", "tanwir", "tanwujud", "tanya", "tanzih", "tanzil", "taocang", "taoci", "taoco", "taoge", "taoisme", "taoke", "taosi", "tap", "tapa", "tapai", "tapak", "tapal", "tapang", "tapestri", "tapi", "tapih", "tapin", "tapioka", "tapir", "tapis", "taplak", "taprofit", "taptibau", "taptu", "tapui", "tapuk", "tapung", "tapus", "tar", "tara", "taraf", "tarah", "tarak", "taraksasin", "taram", "tarang", "tarantisme", "tarantula", "tarap", "taraqi", "tarasul", "tarawangsa", "tarawih", "tarbiah", "tarbil", "tarbus", "tarcis", "tarekat", "target", "tarhim", "tari", "tarif", "tarik", "tarikat", "tarikh", "taring", "taris", "tarjih", "tarkas", "tarling", "tarmak", "tarpaulin", "tarsus", "tartar", "tartil", "tartir", "tartrat", "taruh", "taruk", "taruko", "tarum", "tarung", "tarup", "tarzan", "tas", "tasa", "tasai", "tasak", "tasalsul", "tasamuh", "tasaruf", "tasawuf", "tasbeh", "tasbih", "tasdik", "tasel", "tashih", "tasik", "taslim", "tasmik", "tasrif", "tasrih", "taswir", "tasyahud", "tasyakur", "tasyaum", "tasyayuh", "tasybih", "tasydid", "tasyhid", "tasyrih", "tasyrik", "tata", "tataganing", "tatah", "tatai", "tatak", "tatal", "tatami", "tatanan", "tatang", "tatap", "tatar", "tatih", "tating", "tatkala", "tato", "tau", "taubat", "taucang", "taufah", "taufik", "tauhid", "tauhidiah", "tauke", "taul", "tauliah", "taun", "taung", "taur", "taurat", "tauret", "taurus", "taut", "tautofoni", "tautologi", "tautomerisme", "tautonimi", "tautonomi", "tawa", "tawadu", "tawaduk", "tawaf", "tawajuh", "tawak", "tawakal", "tawan", "tawang", "tawar", "tawarik", "tawaruk", "tawas", "tawasul", "tawes", "tawon", "tawur", "tayamum", "tayang", "tayib", "tayibah", "tayub", "tayum", "tazkirah", "tean", "teater", "teatris", "tebah", "tebak", "tebal", "teban", "tebang", "tebar", "tebas", "tebat", "tebeng", "teberau", "tebing", "tebok", "tebon", "tebu", "tebuhar", "tebuk", "tebung", "tebus", "tedak", "tedarus", "tedas", "tedeng", "tedong", "teduh", "tedung", "tefrit", "tega", "tegah", "tegak", "tegal", "tegang", "tegap", "tegar", "tegari", "tegarun", "tegas", "tegel", "tegil", "tegmen", "teguh", "teguk", "tegun", "tegur", "teh", "teisme", "teja", "teji", "teka", "tekaan", "tekad", "tekah", "tekak", "tekalak", "tekam", "tekan", "tekang", "tekap", "tekar", "tekat", "tekek", "tekel", "teken", "teker", "teki", "tekidanto", "tekik", "tekis", "teklek", "teklok", "teknifon", "teknik", "teknikus", "teknis", "teknisi", "teknokrasi", "teknokrat", "teknokratik", "teknokratisme", "teknologi", "teknonim", "teknonimi", "teko", "tekoan", "tekoh", "tekokak", "tekong", "tekor", "tekoran", "tekpi", "teks", "tekstil", "tekstur", "tekstural", "tekte", "tektek", "tektit", "tektogenesa", "tektonik", "tektonis", "tektum", "tekua", "tekuk", "tekukur", "tekun", "tekung", "tekur", "tel", "tela", "telaah", "telabang", "telabat", "telacak", "teladan", "teladas", "telaga", "telah", "telajak", "telak", "telakup", "telampung", "telan", "telancang", "telang", "telangkai", "telangkup", "telanjang", "telanjur", "telantar", "telap", "telapak", "telas", "telat", "telatah", "telatap", "telaten", "telau", "tele", "telearsika", "teledek", "teledor", "teledrama", "telefon", "telefoni", "telefoto", "telegenik", "telegraf", "telegrafi", "telegrafis", "telegram", "telegrap", "telekan", "telekap", "telekinesis", "telekomedi", "telekomunikasi", "teleks", "teleku", "telekung", "telelensa", "telemeter", "telemetri", "telempap", "telempong", "teleng", "telenovela", "telentang", "teleologi", "teleost", "telepati", "telepok", "telepon", "teleprinter", "telepromter", "telepuk", "teler", "telerang", "teles", "teleskop", "telestesia", "televisi", "telgram", "telik", "telikung", "telimpuh", "telinak", "telinga", "telingkah", "telingkung", "teliti", "telmotofit", "telop", "telor", "telotak", "telpon", "teluh", "teluk", "teluki", "telungkup", "telunjuk", "telur", "telurat", "telurit", "telus", "telusuk", "telusur", "telut", "telutuh", "telutur", "telutut", "tem", "tema", "temaah", "temabur", "temaha", "temahak", "temak", "temalang", "temali", "teman", "temangau", "temangga", "temanten", "temara", "temaram", "temas", "tematik", "tematis", "tematisasi", "temayun", "tembadau", "tembaga", "tembak", "tembakang", "tembakau", "tembakul", "tembam", "tembang", "tembarau", "tembatar", "tembatu", "tembek", "tembekar", "tembel", "tembelang", "tembelian", "tembeliung", "tembelok", "tembem", "tembera", "temberam", "temberang", "temberas", "temberek", "tembereng", "temberih", "temberos", "tembesu", "tembiang", "tembikai", "tembikar", "tembilang", "tembilar", "tembiring", "tembis", "tembok", "tembolok", "tembong", "tembosa", "tembra", "tembu", "tembuk", "tembuku", "tembung", "tembuni", "tembus", "tembusu", "temegun", "temeh", "temengalan", "temenggung", "temenung", "temesar", "temetu", "temiang", "temilang", "temin", "temokus", "temoleh", "tempa", "tempah", "tempala", "tempan", "tempang", "tempap", "tempat", "tempaus", "tempawak", "tempawan", "tempayak", "tempayan", "tempayung", "tempe", "tempek", "tempel", "tempelak", "tempeleng", "temperamen", "temperamental", "temperas", "temperatur", "temperau", "tempiar", "tempias", "tempik", "tempilai", "tempinah", "tempinis", "templek", "templok", "tempo", "tempoh", "tempolong", "temponek", "tempong", "temporal", "temporer", "tempoyak", "tempoyan", "tempua", "tempuh", "tempui", "tempuling", "tempunai", "tempunik", "tempur", "tempurung", "tempus", "tempuyung", "temu", "temucut", "temukut", "temungkul", "temuras", "temurat", "temut-temut", "tenaga", "tenahak", "tenak", "tenam", "tenang", "tenar", "tenat", "tenda", "tendang", "tendas", "tendensi", "tendensius", "tender", "tendinitis", "tendo", "tendon", "tener", "teng", "tengadah", "tengah", "tengak", "tengalan", "tengar", "tengara", "tengas", "tenggadai", "tenggak", "tenggala", "tenggalung", "tenggan", "tenggang", "tenggara", "tenggarang", "tenggat", "tenggayun", "tenggayung", "tenggehem", "tenggek", "tenggelam", "tengger", "tenggiling", "tenggiri", "tenggiring", "tenggok", "tenggorok", "tengguli", "tengik", "tengil", "tengkalak", "tengkalang", "tengkaluk", "tengkam", "tengkang", "tengkar", "tengkarah", "tengkarap", "tengkaras", "tengkawang", "tengkek", "tengkel", "tengkelek", "tengker", "tengkerong", "tengkes", "tengking", "tengkoh", "tengkolok", "tengkorak", "tengku", "tengkujuh", "tengkuk", "tengkulak", "tengkuluk", "tengkurap", "tengkuyung", "tengok", "tengteng", "tengu", "tenis", "tenjet", "tenok", "tenong", "tenor", "tensi", "tentakel", "tentamen", "tentang", "tentara", "tentatif", "tentawan", "tenteng", "tenteram", "tentir", "tentu", "tenuk", "tenun", "tenung", "teodolit", "teokrasi", "teokratis", "teolog", "teologi", "teologis", "teoretikus", "teoretis", "teori", "teorisasi", "teosofi", "teosofis", "tepa", "tepak", "tepam", "tepas", "tepat", "tepeh", "tepek", "tepekong", "teperam", "tepes", "tepet", "tepi", "tepik", "tepis", "teplok", "tepo", "tepok", "tepos", "teptibau", "tepu", "tepuk", "tepung", "tepurang", "tepus", "ter", "tera", "teracak", "terada", "terajam", "teraju", "terak", "terakota", "terakup", "teral", "terala", "terali", "teraling", "teramisin", "terampil", "teran", "teranas", "terang", "terap", "terapang", "terapeutik", "terapi", "terarium", "teras", "terasi", "teraso", "terasul", "teratai", "teratak", "teratap", "teratologi", "teratu", "terau", "terawang", "teraweh", "terban", "terbang", "terbis", "terbit", "terbium", "terbul", "terbut", "terein", "terem", "terenang", "terendak", "terenen", "terentang", "terenyuh", "teres", "teret", "teretet", "teri", "teriak", "teriba", "terigu", "terik", "terika", "terikit", "teriko", "terima", "terin", "terindil", "tering", "teripang", "terista", "teritih", "teritik", "teritip", "teritis", "teritorial", "teritorium", "teriujung", "terjal", "terjang", "terjemah", "terjun", "terka", "terkadang", "terkam", "terkap", "terkul", "terkup", "terlak", "terlalu", "terlut", "term", "termaestesia", "termal", "termin", "terminal", "terminasi", "terminografi", "terminologi", "termion", "termionika", "termistor", "termodinamika", "termodinamis", "termoelektris", "termoelektrisitas", "termofili", "termofilik", "termofosforesens", "termograf", "termogram", "termohigrograf", "termokimia", "termoklin", "termolabil", "termolisis", "termolistrik", "termoluminesens", "termometer", "termonuklir", "termoplastik", "termos", "termosfer", "termostat", "terna", "ternak", "terobos", "terok", "teroka", "terombol", "teromol", "terompah", "terompet", "terondol", "terong", "terongko", "teropong", "teror", "teroris", "terorisme", "terowongan", "terpa", "terpal", "terpana", "terpedo", "terpentin", "tersier", "tertawa", "tertib", "terubuk", "terubus", "terucuk", "terucukan", "teruk", "terum", "terumba", "terumbu", "terumbuk", "teruna", "terung", "terungku", "teruntum", "terup", "terus", "terusi", "terwelu", "terzina", "tes", "tesaurus", "tesis", "tesmak", "testa", "testamen", "tester", "testes", "testikel", "testimonium", "testing", "testis", "testosteron", "teta", "tetak", "tetal", "tetampan", "tetamu", "tetangga", "tetanus", "tetap", "tetapi", "tetar", "tetas", "teteguk", "teteh", "tetek", "tetelan", "tetelo", "teter", "teterapan", "tetes", "tetibar", "tetibau", "tetikus", "tetirah", "tetiron", "tetoron", "tetra", "tetrahidrokanabinol", "tetrahidron", "tetraklorida", "tetraploid", "tetris", "tetua", "tetuang", "tewas", "teyan", "tezi", "theta", "tiada", "tiaga", "tiam", "tian", "tiang", "tiangui", "tiap", "tiara", "tiarap", "tib", "tiba", "tiban", "tidak", "tidur", "tifa", "tifus", "tiga", "tigari", "tigas", "tihul", "tijaniah", "tik", "tika", "tikai", "tikam", "tikar", "tikas", "tike", "tiket", "tikim", "tikpi", "tikung", "tikus", "tilam", "tilan", "tilang", "tilap", "tilas", "tilawah", "tilde", "tilik", "tim", "timah", "timang", "timarah", "timba", "timbal", "timbang", "timbau", "timbel", "timbil", "timbo", "timbre", "timbrung", "timbuk", "timbul", "timbun", "timburu", "timbus", "timi", "timol", "timpa", "timpal", "timpang", "timpani", "timpanitis", "timpanum", "timpas", "timpuh", "timpuk", "timpus", "timu-timu", "timun", "timur", "timus", "tin", "tindak", "tindan", "tindas", "tindawan", "tindih", "tindik", "tindis", "tiner", "ting", "tinggal", "tinggam", "tinggi", "tinggung", "tingi", "tingkah", "tingkal", "tingkalak", "tingkap", "tingkar", "tingkarang", "tingkarung", "tingkas", "tingkat", "tingkeb", "tingkis", "tingkrang", "tingkuh", "tingting", "tingtong", "tingtur", "tinja", "tinjak", "tinjau", "tinju", "tinta", "tinting", "tintir", "tinulat", "tip", "tipar", "tipe", "tipi", "tipikal", "tipis", "tipograf", "tipografi", "tipologi", "tipologis", "tipu", "tir", "tirah", "tirai", "tirakat", "tiram", "tiran", "tirani", "tiras", "tiraton", "tirau", "tiri", "tiris", "tirkah", "tiroid", "tiroiditis", "tiroksin", "tirta", "tiru", "tirus", "tis", "tisik", "tisotropi", "tisu", "titah", "titanium", "titar", "titel", "titer", "titi", "titik", "titilasi", "titimangsa", "titinada", "titip", "titir", "titis", "titisara", "titit", "titrasi", "titrimetri", "tituler", "tiung", "tiup", "tiwah", "tiwikrama", "tiwul", "tmesis", "toapekong", "toas", "tobak", "tobang", "tobat", "toblos", "toboh", "tobong", "tobralko", "todak", "todong", "toga", "togan", "toge", "togel", "togok", "toh", "tohok", "tohor", "toilet", "tok", "tokak", "tokcer", "toke", "tokek", "toko", "tokoh", "tokok", "tokong", "toksemia", "toksikogenik", "toksikolog", "toksikologi", "toksin", "toktok", "tol", "tolak", "tolan", "tolap", "toleh", "toleran", "toleransi", "tolerir", "tolok", "tolol", "tolong", "toluena", "tom", "toman", "tomang", "tomat", "tombak", "tomboi", "tombok", "tombol", "tombola", "tombong", "tombru", "tomong", "tompel", "ton", "tona", "tonase", "tonem", "tonetika", "tong", "tonggak", "tonggara", "tonggek", "tonggeret", "tonggok", "tonggong", "tonggos", "tongkah", "tongkang", "tongkat", "tongkeng", "tongkol", "tongkor", "tongkrong", "tongol", "tongong", "tongpes", "tongsan", "tongseng", "tongsit", "tongtong", "tonik", "tonikum", "tonil", "tonis", "tonisitas", "tonit", "tonjok", "tonjol", "tonometer", "tonsil", "tonton", "tonus", "top", "topan", "topang", "topas", "topdal", "topek", "topeng", "topes", "tophit", "topi", "topiari", "topik", "topikalisasi", "topikalitas", "topo", "topografi", "topografis", "topong", "toponimi", "torak", "toraks", "torani", "toreh", "torek", "tores", "torida", "torium", "tornado", "torne", "toro", "torpedo", "torpedor", "torsi", "torso", "tortor", "torus", "tos", "tosan", "toserba", "total", "totalisator", "totalitas", "totaliter", "totaliterisme", "totau", "totem", "totemisme", "totemproparte", "totok", "totol", "towel", "toya", "toyor", "tra", "trabekula", "tradisi", "tradisional", "tradisionalisme", "trafo", "tragedi", "tragikomedi", "tragis", "tragus", "trailer", "trakeid", "trakom", "traksi", "traktasi", "traktat", "traktir", "traktor", "traktus", "trama", "trampolin", "trans", "transaksi", "transduksi", "transek", "transeksual", "transenden", "transendental", "transfer", "transfigurasi", "transformasi", "transformasionalis", "transformatif", "transformator", "transfusi", "transgenik", "transisi", "transistor", "transit", "transitif", "transkrip", "transkripsi", "translasi", "transliterasi", "translokasi", "translusens", "transmigran", "transmigrasi", "transmisi", "transmiter", "transmogrifikasi", "transmutasi", "transnasional", "transonik", "transparan", "transparansi", "transpirasi", "transplantasi", "transpor", "transportasi", "transposisi", "transversal", "transvetisme", "trap", "trapesium", "trapezoid", "tras", "trauler", "trauma", "traumatis", "travesti", "trawler", "trayek", "trek", "trekbal", "trem", "trema", "trematoda", "trembesi", "tremer", "tremor", "tren", "trendi", "trengginas", "trenyuh", "tres", "tresna", "tri", "trias", "triatlon", "tribokelistrikan", "tribologi", "tribrata", "tribunal", "tribune", "tributa", "trica", "tridarma", "tridentat", "trienial", "triennale", "trifoliat", "triftong", "trigatra", "trigemius", "trigliserida", "trigonometri", "trigraf", "trihidrik", "trik", "triko", "trikotomi", "trikuspid", "tril", "trilateral", "trilingga", "trilipat", "triliun", "trilogi", "trilomba", "trim", "trimatra", "trimurti", "trinil", "trinitas", "trinitrotoluena", "trio", "triode", "trip", "tripartit", "tripleks", "triplet", "triplik", "tripod", "triprasetia", "trips", "tripsin", "tripsinogen", "triptofan", "triptotos", "trisep", "trisula", "tritunggal", "triturasi", "triumvirat", "trivalen", "trivialitas", "triwangsa", "triwindu", "triwulan", "trofi", "trofoblas", "troi", "troika", "trokanter", "trokea", "troli", "trombin", "trombon", "trombosis", "trombosit", "trombus", "tromol", "trompet", "trompong", "tropik", "tropika", "tropis", "tropisme", "tropopause", "troposfer", "tropus", "tros", "trotoar", "trubadur", "truf", "truk", "truntum", "trusa", "tsar", "tsunami", "tsuru", "tua", "tuah", "tuai", "tuak", "tual", "tuala", "tualang", "tuam", "tuan", "tuang", "tuangku", "tuanku", "tuap", "tuar", "tuarang", "tuas", "tuba", "tubagus", "tuban", "tube", "tubektomi", "tuberkulosis", "tubi", "tubin", "tubir", "tubruk", "tubuh", "tuding", "tuduh", "tudung", "tufa", "tufah", "tugal", "tugar", "tugas", "tugi", "tugu", "tugur", "tuhan", "tuhfah", "tuhfahlulajnas", "tuhfahtulajnas", "tuhfat", "tuhmah", "tuhu", "tuidi", "tuil", "tuit", "tujah", "tuji", "tuju", "tujuh", "tujul", "tuk", "tukai", "tukak", "tukal", "tukam", "tukang", "tukar", "tukas", "tukik", "tukil", "tukmis", "tuksedo", "tuku", "tukuk", "tukul", "tukun", "tukung", "tukup", "tula", "tulah", "tulak", "tulang", "tular", "tulat", "tule", "tulen", "tuli", "tulis", "tulium", "tulu", "tulup", "tulus", "tum", "tuma", "tuman", "tumang", "tumbakan", "tumbal", "tumbang", "tumbas", "tumben", "tumbu", "tumbuh", "tumbuk", "tumbung", "tumenggung", "tumika", "tumis", "tumit", "tumor", "tumpah", "tumpak", "tumpal", "tumpang", "tumpang-tindih", "tumpas", "tumpat", "tumpeng", "tumper", "tumpil", "tumplak", "tumplek", "tumpu", "tumpuk", "tumpul", "tumpur", "tumtam", "tumu", "tumungkul", "tumus", "tun", "tuna", "tunaaksara", "tunabusana", "tunadaksa", "tunaganda", "tunagizi", "tunagrahita", "tunai", "tunak", "tunakarya", "tunalaras", "tunam", "tunan", "tunanetra", "tunang", "tunapolitik", "tunarungu", "tunas", "tunasosial", "tunasusila", "tunatenaga", "tunawicara", "tunawisma", "tunda", "tundan", "tundang", "tundra", "tunduk", "tundun", "tundung", "tung", "tungau", "tunggak", "tunggal", "tungganai", "tunggang", "tunggik", "tungging", "tunggu", "tunggul", "tungkahan", "tungkai", "tungkak", "tungkap", "tungku", "tungkul", "tungkup", "tungkus", "tungro", "tungsten", "tungu", "tunik", "tunjal", "tunjam", "tunjang", "tunjuk", "tunjung", "tuntas", "tuntun", "tuntung", "tuntut", "tunu", "tupai", "tur", "tura", "turang", "turangga", "turap", "turas", "turba", "turbiditas", "turbin", "turbogenerator", "turbojet", "turbulen", "turbulensi", "turfat", "turgor", "turi", "turiang", "turinisasi", "turis", "turisme", "turistik", "turkuois", "turmalin", "turnamen", "turne", "turnoi", "tursi", "turun", "turus", "turut", "tus", "tusam", "tusir", "tuslah", "tustel", "tusuk", "tuter", "tutor", "tutorial", "tuts", "tutu", "tutuh", "tutuk", "tutul", "tutung", "tutup", "tutur", "tutut", "tuwuhan", "tuwung", "tuyuk", "tuyul", "uai", "uak", "uan", "uanda", "uang", "uap", "uar", "uba", "ubah", "uban", "ubang", "ubar", "ubat", "ubek", "ubel", "uber", "ubet", "ubi", "ubikuitas", "ubin", "ubit", "ubrak-abrik", "ubub", "ubudiah", "ubun-ubun", "ubung", "ubur-ubur", "ubyang-ubyung", "ucap", "ucek", "uci-uci", "ucis", "ucok", "ucu", "ucus", "uda", "udak", "udam", "udang", "udani", "udap", "udar", "udara", "ude", "udek", "udel", "udeng", "udet", "udi", "udik", "udim", "udo", "udu", "uduh", "uduk", "udut", "uek", "ufti", "ufuk", "ugahari", "ugal-ugalan", "ugem", "uger", "uget-uget", "ugut", "uhu", "uih", "uik", "uir-uir", "uis", "uit", "ujana", "ujang", "ujar", "uji", "uju", "ujub", "ujud", "ujuk", "ujul", "ujung", "ukas", "ukhrawi", "ukhuwah", "ukik", "ukir", "uktab", "ukulele", "ukup", "ukur", "ula-ula", "ulah", "ulak", "ulam", "ulama", "ulan", "ulang", "ulang-alik", "ulang-aling", "ulap-ulap", "ular", "ulas", "ulat", "ulayah", "ulayat", "ulek", "ulem", "ulen", "ules", "ulet", "uli", "ulik", "ulin", "uling", "ulir", "ulit", "ulna", "ulos", "ultima", "ultimatum", "ultimo", "ultimogenitur", "ultra", "ultrafilter", "ultramarin", "ultramikroskopik", "ultramikroskopiks", "ultramodern", "ultrasonik", "ultrasonika", "ultrasonografi", "ultraungu", "ultraviolet", "ulu", "uluk", "ulun", "ulung", "ulup", "ulur", "uma", "umak", "uman", "umang-umang", "umara", "umat", "umbai", "umbalan", "umban", "umbang", "umbang-ambing", "umbar", "umbara", "umbi", "umbilikus", "umbin", "umbisi", "umbo", "umbra", "umbu", "umbuk", "umbul", "umbur-umbur", "umbut", "umi", "umlaut", "umpak", "umpama", "umpan", "umpat", "umpet", "umpil", "umpuk", "umpun", "umput", "umrah", "umu", "umuk", "umum", "umun", "umur", "unam", "uncang", "uncang-uncit", "uncit", "uncu", "uncue", "uncui", "unda", "undagi", "undak", "undan", "undang", "undi", "unduh", "unduk-unduk", "undung-undung", "undur", "unek-unek", "ungah-angih", "ungam", "ungar", "unggah", "unggal", "unggang-anggit", "unggas", "unggat-unggit", "unggis", "unggit", "unggul", "unggun", "unggut", "ungka", "ungkah", "ungkai", "ungkak", "ungkal", "ungkap", "ungkat", "ungkau", "ungkil", "ungkir", "ungkit", "ungkul", "ungkur", "ungsi", "ungti", "ungu", "unguis", "uni", "uniat", "unifikasi", "uniform", "uniformitas", "unik", "unilateral", "unilineal", "unilinear", "union", "uniseks", "uniseluler", "unit", "unitaris", "unitarisme", "univalen", "universal", "universalia", "universalisme", "universalitas", "universiade", "universitas", "universiter", "universitet", "universum", "unjuk", "unjun", "unjung", "unjur", "unjut", "unsur", "unsuri", "unta", "untai", "untal", "untang-anting", "unti", "until", "unting", "untir", "untuk", "untun", "untung", "untut", "unun", "unyai", "upa", "upaboga", "upacara", "upaduta", "upah", "upajiwa", "upak", "upakara", "upakarti", "upam", "upan", "upanishad", "upar", "upau", "upawasa", "upaya", "upet", "upeti", "upih", "upik", "upil", "upsilon", "ura-ura", "uraemia", "urah", "urai", "urak", "urakus", "uran-uran", "uranisme", "uranium", "uranologi", "uranus", "urap", "uras", "urat", "urban", "urbanisasi", "urbanisme", "urdu", "urea", "uremia", "ureter", "uretra", "uretritis", "urgen", "urgensi", "uri", "urian", "uribang", "urik", "urinalisis", "urine", "uring", "urinoar", "urinometer", "urip", "uris", "urit", "urita", "uritan", "urna", "urolog", "urologi", "uroskopi", "uruk", "urun", "urung", "urup", "urus", "urut", "usada", "usah", "usaha", "usai", "usak", "usali", "usam", "usang", "usap", "usar", "usat", "user-user", "usia", "usik", "usil", "usir", "uskup", "usrek", "ustad", "ustaz", "ustazah", "usuk", "usul", "usuluddin", "usung", "usur", "usus", "usut", "uswah", "utak-atik", "utama", "utang", "utar-utar", "utara", "utarid", "utas", "uterus", "utih", "utik", "utilitas", "utopia", "utopis", "utopisme", "utrikel", "utrolokal", "utuh", "utus", "uvula", "uvular", "uwar", "uwungan", "uwur", "uyuh", "uzlah", "uzur", "vagina", "vak", "vakansi", "vakasi", "vakatur", "vakbon", "vaksin", "vaksinasi", "vakum", "vakuol", "vakuola", "valas", "valensi", "valentin", "valentine", "valeria", "valid", "validitas", "valis", "valium", "valorisasi", "valuta", "vampir", "vanadium", "vandal", "vandalisme", "vandalistis", "vandel", "vanili", "varia", "variabel", "variabilitas", "varian", "variansi", "variasi", "variatif", "varietas", "variola", "varises", "vas", "vasal", "vasektomi", "vaselin", "vaskular", "vaskularisasi", "vaskuler", "vaskulum", "vasodilasi", "vasodilator", "vasomotor", "vatikan", "vaucer", "vedda", "veddoid", "veem", "vegetarian", "vegetarir", "vegetaris", "vegetarisme", "vegetasi", "vektor", "velamentum", "velar", "velarisasi", "velodrom", "velositas", "velum", "vena", "venal", "venalitas", "vendeta", "vendor", "ventilasi", "ventilator", "ventrikel", "ventrikulus", "venus", "verba", "verbal", "verbalisan", "verbalisasi", "verbalisme", "verbalistis", "verbatim", "verbena", "verdigris", "verifikasi", "verifikatur", "veritisme", "verkoper", "vermilium", "vermiliun", "vermiseli", "vermisida", "vernis", "veronal", "verset", "versi", "verso", "verstek", "versus", "vertebra", "vertebrata", "vertikal", "verzet", "vespa", "veste", "vestibul", "vestibula", "vestibulum", "vet", "veter", "veteran", "veterinarian", "veteriner", "vetiver", "veto", "vetsin", "via", "viabel", "viabilitas", "viaduk", "vibran", "vibrasi", "vibrator", "vibrio", "vide", "video", "videofon", "videoklip", "videoteks", "vigia", "vigili", "vignet", "vikariat", "vikaris", "vila", "vinil", "vinyet", "viol", "viola", "violces", "violet", "violin", "violinis", "violis", "virga", "virginia", "virgo", "virilis", "virilisme", "virilitas", "virilokal", "virologi", "virtual", "virtuoso", "virulen", "virulensi", "virus", "visa", "visera", "visi", "visibel", "visibilitas", "visioner", "visitasi", "visitator", "visiun", "viskometer", "viskose", "viskositas", "vista", "visual", "visualisasi", "visum", "visus", "vitakultur", "vital", "vitalitas", "vitamin", "vitelin", "vitiligo", "vitreositas", "vitrifikasi", "vitriol", "vivarium", "vivifikasi", "vivipar", "vla", "vlek", "voal", "vodka", "vokabularium", "vokabuler", "vokal", "vokalia", "vokalis", "vokasional", "vokatif", "vokoid", "volatil", "volatilitas", "voli", "volt", "voltameter", "voltase", "volume", "volumeter", "volumetri", "volunter", "vonis", "vopo", "vorteks", "voting", "votum", "vrah", "vrahoto", "vulgar", "vulgata", "vulger", "vulkan", "vulkanis", "vulkanisasi", "vulkanolog", "vulkanologi", "vulkavit", "vulpen", "vulva", "vulvektomi", "vuring", "waad", "waadat", "wabah", "wabakdu", "wabarakatuh", "wacana", "wadah", "wadak", "wadal", "wadam", "wadat", "wadi", "wadon", "waduh", "waduk", "wadung", "wafa", "wafak", "wafat", "wage", "wagon", "wagu", "wah", "wahah", "wahai", "waham", "wahana", "wahdah", "wahdaniah", "wahdiah", "wahib", "wahid", "wahyu", "wai", "waid", "waima", "waisak", "waisya", "waitankung", "wajah", "wajan", "wajar", "wajib", "wajik", "wak", "wakaf", "wakil", "waktu", "wakun", "wakwak", "walabi", "walad", "walafiat", "walah", "walak", "walakhir", "walakin", "walang", "walangkopo", "walango", "walat", "walau", "walaupun", "waledan", "waleh", "walet", "walhal", "walhasil", "wali", "walikukun", "walimah", "walimana", "waliullah", "wallahi", "wallahualam", "wals", "waluh", "waluku", "wambrau", "wan", "wana", "wanara", "wanawisata", "wanda", "wandu", "wang", "wangi", "wangkang", "wangsa", "wangsit", "wani", "wanita", "wanodya", "wantah", "wantek", "wanti-wanti", "wantilan", "wara", "warak", "warakawuri", "waralaba", "warangan", "waranggana", "warangka", "waras", "warasah", "warawiri", "wardi", "warga", "wari", "waria", "warid", "waringin", "waris", "warita", "warkat", "warna", "warna-warni", "warok", "warsa", "warta", "waru", "waruga", "waruna", "warung", "warwar", "wasahlan", "wasak", "wasal", "wasalam", "wasangka", "wasi", "wasiat", "wasilah", "wasir", "wasit", "wasitah", "waskita", "waskom", "waslah", "waslap", "waspada", "wastafel", "waswas", "watak", "watan", "watang", "watas", "watase", "watermantel", "watermark", "waterpas", "waterpruf", "watt", "watu", "wau", "wawa", "wawancara", "wawanmuka", "wawanrembuk", "wawas", "wawu", "wayang", "wayuh", "wazari", "wazir", "weda", "wedam", "wedana", "wedang", "wedani", "wedar", "wede", "wedel", "weduk", "wegah", "weh", "weharima", "wejang", "wekel", "weker", "welahar", "welas", "weling", "welirang", "welit", "welter", "welut", "wenang", "wenter", "werak", "werangka", "werda", "werdatama", "were", "werek", "wereng", "werit", "werst", "wese", "wesel", "weselbor", "wesi", "wesket", "westernis", "westernisasi", "wet", "wetan", "weton", "wewarah", "wewaton", "wewe", "wibawa", "wicaksana", "wicara", "widi", "widiaiswara", "widiwasa", "widodari", "widoro", "widuri", "widyaiswara", "widyawisata", "wig", "wigata", "wihara", "wijaya", "wijayakusuma", "wijayamala", "wijayamulia", "wijdaniah", "wijen", "wiji", "wijik", "wikalat", "wiku", "wiladah", "wilah", "wilangon", "wilayah", "wilis", "wilwatikta", "wimana", "winaya", "windu", "wing", "wingit", "winglet", "winter", "wira", "wirabank", "wiracarita", "wiraga", "wirakarya", "wirang", "wiraniaga", "wirasuara", "wiraswasta", "wirid", "wiru", "wisa", "wisal", "wisata", "wisaya", "wisesa", "wisik", "wiski", "wisma", "wisnu", "wisuda", "witir", "wiwaha", "wiweka", "wiyaga", "wiyata", "wizurai", "wodka", "wol", "wolanda", "wolfram", "wombat", "won", "wong", "wora-wari", "wortel", "wosi", "wotogal-agil", "wrang", "wreda", "wredatama", "wregu", "wrisaba", "wudani", "wudu", "wuduk", "wujud", "wuker", "wukerar", "wuku", "wukuf", "wulan", "wulang", "wulu", "wulung", "wungon", "wungu", "wuwungan", "xantat", "xantena", "xantofil", "xenia", "xenofili", "xenofobia", "xenoglosia", "xenograf", "xenokrasi", "xenolit", "xenomania", "xenon", "xerofil", "xerofit", "xeroftalmia", "xerografi", "xerosis", "xifoid", "xilem", "xilena", "xilofon", "xilograf", "xilografi", "xiloid", "xiloidina", "xilol", "xilologi", "xilonit", "xilosa", "yad", "yahud", "yahudi", "yahudiah", "yahwe", "yais", "yaitu", "yakin", "yakis", "yakitori", "yakjuj", "yakni", "yaksa", "yakun", "yakut", "yamtuan", "yang", "yantra", "yard", "yargon", "yasan", "yasmin", "yasti", "yatim", "yaum", "yaumudin", "yaumulakhir", "yaumulaza", "yaumuljamak", "yaumuljaza", "yaumulkiamah", "yaumulmahsyar", "yayasan", "yayi", "yayu", "yehova", "yel", "yen", "yeyunum", "yodium", "yoga", "yoghurt", "yogi", "yogia", "yohimbina", "yojana", "yokal", "yolk", "yos", "yosong", "yoyo", "yubileum", "yuda", "yudikatif", "yudisial", "yudisium", "yudo", "yudoka", "yuk", "yunani", "yunda", "yunior", "yunta", "yupa", "yupiter", "yura", "yuran", "yuridis", "yuris", "yurisdiksi", "yurisprudensi", "yustisi", "yute", "yuvenil", "yuwana", "yuwaraja", "yuyitsu", "yuyu", "zabah", "zabaniah", "zabarjad", "zabib", "zabur", "zadah", "zahid", "zai", "zaim", "zair", "zaitun", "zakar", "zakat", "zakelek", "zakiah", "zakum", "zal", "zalim", "zalir", "zaman", "zamin", "zamindar", "zamrud", "zamzam", "zan", "zanggi", "zantara", "zarafah", "zarah", "zaratit", "zariah", "zariat", "zat", "zatua", "zawal", "zawiat", "zebra", "zebu", "zelot", "zen", "zend-avesta", "zendeling", "zending", "zeni", "zenit", "zeolit", "zeoponik", "zero", "zet", "zeta", "ziadah", "ziarah", "zib", "zig-zag", "zigomorf", "zigot", "zikir", "zilullah", "zimase", "zimi", "zimogen", "zimolisis", "zimosis", "zimotik", "zimurgi", "zina", "zindik", "zink", "zinkografi", "zion", "zionis", "zionisme", "zirafah", "zirah", "zirbad", "zirkonia", "zirkonium", "zirnikh", "ziter", "zodiak", "zoetrop", "zohal", "zohrah", "zohrat", "zona", "zonasi", "zonder", "zone", "zoning", "zoofit", "zoofobia", "zoogani", "zoogeografi", "zoologi", "zoonosis", "zoosemiotika", "zuama", "zuhud", "zuhur", "zulfikar", "zulhijah", "zulkaidah", "zulmat", "zulu", "zurafah", "zuriah", "zus", "" ] ================================================ FILE: lib/natural/stemmers/indonesian/prefix_rules.js ================================================ /* Copyright (c) 2017, Alif Bhaskoro, Andy Librian, R. Kukuh (Reimplemented from https://github.com/sastrawi/sastrawi) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ // a list of commonly used words that have little meaning and can be excluded // from analysis. const Removal = require('./removal') // Make global variable for dictionary const dictionary = loadDictionary() function loadDictionary () { const fin = require('./data/kata-dasar.json') return new Set(fin.filter(Boolean)) } // Find certain word in dictionary function find (word) { return dictionary.has(word) } function PrefixRules () { const PrefixRules = this this.removal = undefined this.currentWord = undefined // Run the array of disambiguate rules on input word function runDisambiguator (disambiguateRules, word) { let result for (const i in disambiguateRules) { result = disambiguateRules[i](word) if (find(result)) { break } } if (result === undefined) { this.currentWord = word this.removal = undefined return this } return createResultObject(result, word, 'DP') } function createResultObject (result, word, type) { const removedPart = word.replace(result, '') const removal = new Removal(word, result, removedPart, type) this.removal = removal this.currentWord = result return this } PrefixRules.RemovePlainPrefix = function (word) { const result = word.replace(/^(di|ke|se)/, '') if (result !== word) { const removedPart = word.replace(result, '') const removal = new Removal(word, result, removedPart, 'DP') this.removal = removal } else { this.removal = undefined } this.currentWord = result return this } // RULE 1 function disambiguateRule1A (word) { // Rule 1a : berV -> ber-V const matches = word.match(/^ber([aiueo].*)$/) if (matches) { return matches[1] } } function disambiguateRule1B (word) { // Rule 1b : berV -> be-rV const matches = word.match(/^ber([aiueo].*)$/) if (matches) { return 'r' + matches[1] } } PrefixRules.DisambiguatorPrefixRule1 = function (word) { // Push rules 1A & 1B const disambiguateRules = [] disambiguateRules.push(disambiguateRule1A) disambiguateRules.push(disambiguateRule1B) return runDisambiguator(disambiguateRules, word) } // RULE 2 function disambiguateRule2 (word) { // Rule 2 : berCAP -> ber-CAP where C != 'r' AND P != 'er' const matches = word.match(/^ber([bcdfghjklmnpqrstvwxyz])([a-z])(.*)/) if (matches) { if (matches[3].match(/^er(.*)$/)) { return } return matches[1] + matches[2] + matches[3] } } PrefixRules.DisambiguatorPrefixRule2 = function (word) { // Push rule 2 const disambiguateRules = [] disambiguateRules.push(disambiguateRule2) return runDisambiguator(disambiguateRules, word) } // RULE 3 function disambiguateRule3 (word) { // Rule 3 : berCAerV -> ber-CAerV where C != 'r' const matches = word.match(/ber([bcdfghjklmnpqrstvwxyz])([a-z])er([aiueo])(.*)/) if (matches) { if (matches[1] === 'r') { return } return matches[1] + matches[2] + 'er' + matches[3] + matches[4] } } PrefixRules.DisambiguatorPrefixRule3 = function (word) { // Push rule 3 const disambiguateRules = [] disambiguateRules.push(disambiguateRule3) return runDisambiguator(disambiguateRules, word) } // RULE 4 function disambiguateRule4 (word) { // Rule 4 : belajar -> ajar if (word === 'belajar') { return 'ajar' } } PrefixRules.DisambiguatorPrefixRule4 = function (word) { // Push rule 4 const disambiguateRules = [] disambiguateRules.push(disambiguateRule4) return runDisambiguator(disambiguateRules, word) } // RULE 5 function disambiguateRule5 (word) { // Rule 5 : beC1erC2 -> be-C1erC2 where C1 != 'r' const matches = word.match(/be([bcdfghjklmnpqstvwxyz])(er[bcdfghjklmnpqrstvwxyz])(.*)$/) if (matches) { return matches[1] + matches[2] + matches[3] } } PrefixRules.DisambiguatorPrefixRule5 = function (word) { // Push rule 5 const disambiguateRules = [] disambiguateRules.push(disambiguateRule5) return runDisambiguator(disambiguateRules, word) } // RULE 6 function disambiguateRule6a (word) { // Rule 6a : terV -> ter-V const matches = word.match(/^ter([aiueo].*)$/) if (matches) { return matches[1] } } function disambiguateRule6b (word) { // Rule 6b : terV -> te-rV const matches = word.match(/^ter([aiueo].*)$/) if (matches) { return 'r' + matches[1] } } PrefixRules.DisambiguatorPrefixRule6 = function (word) { // Push rule 6 const disambiguateRules = [] disambiguateRules.push(disambiguateRule6a) disambiguateRules.push(disambiguateRule6b) return runDisambiguator(disambiguateRules, word) } // RULE 7 function disambiguateRule7 (word) { // Rule 7 : terCerv -> ter-CerV where C != 'r' const matches = word.match(/^ter([bcdfghjklmnpqrstvwxyz])er([aiueo].*)$/) if (matches) { if (matches[1] === 'r') { return } return matches[1] + 'er' + matches[2] } } PrefixRules.DisambiguatorPrefixRule7 = function (word) { // Push rule 7 const disambiguateRules = [] disambiguateRules.push(disambiguateRule7) return runDisambiguator(disambiguateRules, word) } // RULE 8 function disambiguateRule8 (word) { // Rule 8 : terCP -> ter-CP where C != 'r' and P != 'er' const matches = word.match(/^ter([bcdfghjklmnpqrstvwxyz])(.*)$/) if (matches) { if (matches[1] === 'r' || matches[2].match(/^er(.*)$/)) { return } return matches[1] + matches[2] } } PrefixRules.DisambiguatorPrefixRule8 = function (word) { // Push rule 8 const disambiguateRules = [] disambiguateRules.push(disambiguateRule8) return runDisambiguator(disambiguateRules, word) } // RULE 9 function disambiguateRule9 (word) { // Rule 9 : te-C1erC2 -> te-C1erC2 where C1 != 'r' const matches = word.match(/^te([bcdfghjklmnpqrstvwxyz])er([bcdfghjklmnpqrstvwxyz])(.*)$/) if (matches) { if (matches[1] === 'r') { return } return matches[1] + 'er' + matches[2] + matches[3] } } PrefixRules.DisambiguatorPrefixRule9 = function (word) { // Push rule 9 const disambiguateRules = [] disambiguateRules.push(disambiguateRule9) return runDisambiguator(disambiguateRules, word) } // RULE 10 function disambiguateRule10 (word) { // Rule 10 : me{l|r|w|y}V -> me-{l|r|w|y}V const matches = word.match(/^me([lrwy])([aiueo])(.*)$/) if (matches) { return matches[1] + matches[2] + matches[3] } } PrefixRules.DisambiguatorPrefixRule10 = function (word) { // Push rule 10 const disambiguateRules = [] disambiguateRules.push(disambiguateRule10) return runDisambiguator(disambiguateRules, word) } // RULE 11 function disambiguateRule11 (word) { // Rule 11 : mem{b|f|v} -> mem-{b|f|v} const matches = word.match(/^mem([bfv])(.*)$/) if (matches) { return matches[1] + matches[2] } } PrefixRules.DisambiguatorPrefixRule11 = function (word) { // Push rule 11 const disambiguateRules = [] disambiguateRules.push(disambiguateRule11) return runDisambiguator(disambiguateRules, word) } // RULE 12 function disambiguateRule12 (word) { // Nazief and Adriani Rule 12 : beC1erC2 -> be-C1erC2 where C1 != 'r' // Modified by Jelita Asian's CS Rule 12 : mempe -> mem-pe to stem mempengaruhi const matches = word.match(/^mempe(.*)$/) if (matches) { return 'pe' + matches[1] } } PrefixRules.DisambiguatorPrefixRule12 = function (word) { // Push rule 12 const disambiguateRules = [] disambiguateRules.push(disambiguateRule12) return runDisambiguator(disambiguateRules, word) } // RULE 13 function disambiguateRule13a (word) { // Rule 13a : mem{rV|V} -> me-m{rV|V} const matches = word.match(/^mem([aiueo])(.*)$/) if (matches) { return 'm' + matches[1] + matches[2] } } function disambiguateRule13b (word) { // Rule 13b : mem{rV|V} -> me-p{rV|V} const matches = word.match(/^mem([aiueo])(.*)$/) if (matches) { return 'p' + matches[1] + matches[2] } } PrefixRules.DisambiguatorPrefixRule13 = function (word) { // Push rule 13 const disambiguateRules = [] disambiguateRules.push(disambiguateRule13a) disambiguateRules.push(disambiguateRule13b) return runDisambiguator(disambiguateRules, word) } // RULE 14 function disambiguateRule14 (word) { /* Rule 14 modified by Andy Librian : men{c|d|j|s|t|z} -> men-{c|d|j|s|t|z} in order to stem mentaati Rule 14 modified by ECS: men{c|d|j|s|z} -> men-{c|d|j|s|z} in order to stem mensyaratkan, mensyukuri Original CS Rule no 14 was : men{c|d|j|z} -> men-{c|d|j|z} */ const matches = word.match(/^men([cdjstz])(.*)$/) if (matches) { return matches[1] + matches[2] } } PrefixRules.DisambiguatorPrefixRule14 = function (word) { // Push rule 14 const disambiguateRules = [] disambiguateRules.push(disambiguateRule14) return runDisambiguator(disambiguateRules, word) } // RULE 15 function disambiguateRule15a (word) { // Rule 15a : men{V} -> me-n{V} const matches = word.match(/^men([aiueo])(.*)$/) if (matches) { return 'n' + matches[1] + matches[2] } } function disambiguateRule15b (word) { // Rule 15b : men{V} -> me-t{V} const matches = word.match(/^men([aiueo])(.*)$/) if (matches) { return 't' + matches[1] + matches[2] } } PrefixRules.DisambiguatorPrefixRule15 = function (word) { // Push rule 15 const disambiguateRules = [] disambiguateRules.push(disambiguateRule15a) disambiguateRules.push(disambiguateRule15b) return runDisambiguator(disambiguateRules, word) } // RULE 16 function disambiguateRule16 (word) { // Original Nazief and Adriani's Rule 16 : meng{g|h|q} -> meng-{g|h|q} // Modified Jelita Asian's CS Rule 16 : meng{g|h|q|k} -> meng-{g|h|q|k} to stem mengkritik const matches = word.match(/^meng([g|h|q|k])(.*)$/) if (matches) { return matches[1] + matches[2] } } PrefixRules.DisambiguatorPrefixRule16 = function (word) { // Push rule 16 const disambiguateRules = [] disambiguateRules.push(disambiguateRule16) return runDisambiguator(disambiguateRules, word) } // RULE 17 function disambiguateRule17a (word) { // Rule 17a : mengV -> meng-V const matches = word.match(/^meng([aiueo])(.*)$/) if (matches) { return matches[1] + matches[2] } } function disambiguateRule17b (word) { // Rule 17b : mengV -> meng-kV const matches = word.match(/^meng([aiueo])(.*)$/) if (matches) { return 'k' + matches[1] + matches[2] } } function disambiguateRule17c (word) { // Rule 17c : mengV -> meng-V- where V = 'e' const matches = word.match(/^menge(.*)$/) if (matches) { return matches[1] } } function disambiguateRule17d (word) { // Rule 17d : mengV -> me-ngV const matches = word.match(/^meng([aiueo])(.*)$/) if (matches) { return 'ng' + matches[1] + matches[2] } } PrefixRules.DisambiguatorPrefixRule17 = function (word) { // Push rule 17 const disambiguateRules = [] disambiguateRules.push(disambiguateRule17a) disambiguateRules.push(disambiguateRule17b) disambiguateRules.push(disambiguateRule17c) disambiguateRules.push(disambiguateRule17d) return runDisambiguator(disambiguateRules, word) } // RULE 18 function disambiguateRule18a (word) { // Rule 18a : menyV -> me-nyV to stem menyala -> nyala const matches = word.match(/^meny([aiueo])(.*)$/) if (matches) { return 'ny' + matches[1] + matches[2] } } function disambiguateRule18b (word) { // Original Rule 18b : menyV -> meny-sV // Modified by CC (shifted into 18b, see also 18a) const matches = word.match(/^meny([aiueo])(.*)$/) if (matches) { return 's' + matches[1] + matches[2] } } PrefixRules.DisambiguatorPrefixRule18 = function (word) { // Push rule 18 const disambiguateRules = [] disambiguateRules.push(disambiguateRule18a) disambiguateRules.push(disambiguateRule18b) return runDisambiguator(disambiguateRules, word) } // RULE 19 function disambiguateRule19 (word) { // Original Rule 19 : mempV -> mem-pV where V != 'e' // Modified Rule 19 by ECS : mempA -> mem-pA where A != 'e' in order to stem memproteksi const matches = word.match(/^memp([abcdfghijklmopqrstuvwxyz])(.*)$/) if (matches) { return 'p' + matches[1] + matches[2] } } PrefixRules.DisambiguatorPrefixRule19 = function (word) { // Push rule 19 const disambiguateRules = [] disambiguateRules.push(disambiguateRule19) return runDisambiguator(disambiguateRules, word) } // RULE 20 function disambiguateRule20 (word) { // Rule 20 : pe{w|y}V -> pe-{w|y}V const matches = word.match(/^pe([wy])([aiueo])(.*)$/) if (matches) { return matches[1] + matches[2] + matches[3] } } PrefixRules.DisambiguatorPrefixRule20 = function (word) { // Push rule 20 const disambiguateRules = [] disambiguateRules.push(disambiguateRule20) return runDisambiguator(disambiguateRules, word) } // RULE 21 function disambiguateRule21a (word) { // Rule 21a : perV -> per-V const matches = word.match(/^per([aiueo])(.*)$/) if (matches) { return matches[1] + matches[2] } } function disambiguateRule21b (word) { // Rule 21b : perV -> pe-rV const matches = word.match(/^pe(r[aiueo])(.*)$/) if (matches) { return matches[1] + matches[2] } } PrefixRules.DisambiguatorPrefixRule21 = function (word) { // Push rule 21 const disambiguateRules = [] disambiguateRules.push(disambiguateRule21a) disambiguateRules.push(disambiguateRule21b) return runDisambiguator(disambiguateRules, word) } // RULE 23 function disambiguateRule23 (word) { // Rule 23 : perCAP -> per-CAP where C != 'r' AND P != 'er' const matches = word.match(/^per([bcdfghjklmnpqrstvwxyz])([a-z])(.*)$/) if (matches) { if (matches[3].match(/^er(.*)$/)) { return } return matches[1] + matches[2] + matches[3] } } PrefixRules.DisambiguatorPrefixRule23 = function (word) { // Push rule 23 const disambiguateRules = [] disambiguateRules.push(disambiguateRule23) return runDisambiguator(disambiguateRules, word) } // RULE 24 function disambiguateRule24 (word) { // Rule 24 : perCAerV -> per-CAerV where C != 'r' const matches = word.match(/^per([bcdfghjklmnpqrstvwxyz])([a-z])er([aiueo])(.*)$/) if (matches) { if (matches[1] === 'r') { return } return matches[1] + matches[2] + 'er' + matches[3] + matches[4] } } PrefixRules.DisambiguatorPrefixRule24 = function (word) { // Push rule 24 const disambiguateRules = [] disambiguateRules.push(disambiguateRule24) return runDisambiguator(disambiguateRules, word) } // RULE 25 function disambiguateRule25 (word) { // Rule 25 : pem{b|f|v} -> pem-{b|f|v} const matches = word.match(/^pem([bfv])(.*)$/) if (matches) { return matches[1] + matches[2] } } PrefixRules.DisambiguatorPrefixRule25 = function (word) { // Push rule 25 const disambiguateRules = [] disambiguateRules.push(disambiguateRule25) return runDisambiguator(disambiguateRules, word) } // RULE 26 function disambiguateRule26a (word) { // Rule 26a : pem{rV|V} -> pe-m{rV|V} const matches = word.match(/^pem([aiueo])(.*)$/) if (matches) { return 'm' + matches[1] + matches[2] } } function disambiguateRule26b (word) { // Rule 26b : pem{rV|V} -> pe-p{rV|V} const matches = word.match(/^pem([aiueo])(.*)$/) if (matches) { return 'p' + matches[1] + matches[2] } } PrefixRules.DisambiguatorPrefixRule26 = function (word) { // Push rule 26 const disambiguateRules = [] disambiguateRules.push(disambiguateRule26a) disambiguateRules.push(disambiguateRule26b) return runDisambiguator(disambiguateRules, word) } // RULE 27 function disambiguateRule27 (word) { // Rule 27 : pen{c|d|j|s|t|z} -> pen-{c|d|j|s|t|z} const matches = word.match(/^pen([cdjstz])(.*)$/) if (matches) { return matches[1] + matches[2] } } PrefixRules.DisambiguatorPrefixRule27 = function (word) { // Push rule 27 const disambiguateRules = [] disambiguateRules.push(disambiguateRule27) return runDisambiguator(disambiguateRules, word) } // RULE 28 function disambiguateRule28a (word) { // Rule 28a : pen{V} -> pe-n{V} const matches = word.match(/^pen([aiueo])(.*)$/) if (matches) { return 'n' + matches[1] + matches[2] } } function disambiguateRule28b (word) { // Rule 28b : pen{V} -> pe-t{V} const matches = word.match(/^pen([aiueo])(.*)$/) if (matches) { return 't' + matches[1] + matches[2] } } PrefixRules.DisambiguatorPrefixRule28 = function (word) { // Push rule 28 const disambiguateRules = [] disambiguateRules.push(disambiguateRule28a) disambiguateRules.push(disambiguateRule28b) return runDisambiguator(disambiguateRules, word) } // RULE 29 function disambiguateRule29 (word) { // Rule 29 by ECS : pengC -> peng-C const matches = word.match(/^peng([bcdfghjklmnpqrstvwxyz])(.*)$/) if (matches) { return matches[1] + matches[2] } } PrefixRules.DisambiguatorPrefixRule29 = function (word) { // Push rule 29 const disambiguateRules = [] disambiguateRules.push(disambiguateRule29) return runDisambiguator(disambiguateRules, word) } // RULE 30 function disambiguateRule30a (word) { // Rule 30a : pengV -> peng-V const matches = word.match(/^peng([aiueo])(.*)$/) if (matches) { return matches[1] + matches[2] } } function disambiguateRule30b (word) { // Rule 30b : pengV -> peng-kV const matches = word.match(/^peng([aiueo])(.*)$/) if (matches) { return 'k' + matches[1] + matches[2] } } function disambiguateRule30c (word) { // Rule 30c : pengV -> pengV- where V = 'e' const matches = word.match(/^penge(.*)$/) if (matches) { return matches[1] } } PrefixRules.DisambiguatorPrefixRule30 = function (word) { // Push rule 30 const disambiguateRules = [] disambiguateRules.push(disambiguateRule30a) disambiguateRules.push(disambiguateRule30b) disambiguateRules.push(disambiguateRule30c) return runDisambiguator(disambiguateRules, word) } // RULE 31 function disambiguateRule31a (word) { // Rule 31a : penyV -> pe-nyV const matches = word.match(/^peny([aiueo])(.*)$/) if (matches) { return 'ny' + matches[1] + matches[2] } } function disambiguateRule31b (word) { // Original Rule 31 : penyV -> peny-sV const matches = word.match(/^peny([aiueo])(.*)$/) if (matches) { return 's' + matches[1] + matches[2] } } PrefixRules.DisambiguatorPrefixRule31 = function (word) { // Push rule 31 const disambiguateRules = [] disambiguateRules.push(disambiguateRule31a) disambiguateRules.push(disambiguateRule31b) return runDisambiguator(disambiguateRules, word) } // RULE 32 function disambiguateRule32 (word) { // Rule 32 : pelV -> pe-lV except pelajar -> ajar if (word === 'pelajar') { return 'ajar' } const matches = word.match(/^pe(l[aiueo])(.*)/) if (matches) { return matches[1] + matches[2] } } PrefixRules.DisambiguatorPrefixRule32 = function (word) { // Push rule 32 const disambiguateRules = [] disambiguateRules.push(disambiguateRule32) return runDisambiguator(disambiguateRules, word) } // RULE 34 function disambiguateRule34 (word) { // Rule 34 : peCP -> pe-CP where C != {r|w|y|l|m|n} and P != 'er' const matches = word.match(/^pe([bcdfghjklmnpqrstvwxyz])(.*)$/) if (matches) { if (matches[2].match(/^er(.*)$/)) { return } return matches[1] + matches[2] } } PrefixRules.DisambiguatorPrefixRule34 = function (word) { // Push rule 34 const disambiguateRules = [] disambiguateRules.push(disambiguateRule34) return runDisambiguator(disambiguateRules, word) } // RULE 35 function disambiguateRule35 (word) { // Rule 35 : terC1erC2 -> ter-C1erC2 where C1 != {r} const matches = word.match(/^ter([bcdfghjkpqstvxz])(er[bcdfghjklmnpqrstvwxyz])(.*)$/) if (matches) { return matches[1] + matches[2] + matches[3] } } PrefixRules.DisambiguatorPrefixRule35 = function (word) { // Push rule 35 const disambiguateRules = [] disambiguateRules.push(disambiguateRule35) return runDisambiguator(disambiguateRules, word) } // RULE 36 function disambiguateRule36 (word) { // Rule 36 : peC1erC2 -> pe-C1erC2 where C1 != {r|w|y|l|m|n} const matches = word.match(/^pe([bcdfghjkpqstvxz])(er[bcdfghjklmnpqrstvwxyz])(.*)$/) if (matches) { return matches[1] + matches[2] + matches[3] } } PrefixRules.DisambiguatorPrefixRule36 = function (word) { // Push rule 36 const disambiguateRules = [] disambiguateRules.push(disambiguateRule36) return runDisambiguator(disambiguateRules, word) } // RULE 37 function disambiguateRule37a (word) { // Rule 37a : CerV -> CerV const matches = word.match(/^([bcdfghjklmnpqrstvwxyz])(er[aiueo])(.*)$/) if (matches) { return matches[1] + matches[2] + matches[3] } } function disambiguateRule37b (word) { // Rule 37b : CerV -> CV const matches = word.match(/^([bcdfghjklmnpqrstvwxyz])er([aiueo])(.*)$/) if (matches) { return matches[1] + matches[2] + matches[3] } } PrefixRules.DisambiguatorPrefixRule37 = function (word) { // Push rule 37 const disambiguateRules = [] disambiguateRules.push(disambiguateRule37a) disambiguateRules.push(disambiguateRule37b) return runDisambiguator(disambiguateRules, word) } // RULE 38 function disambiguateRule38a (word) { // Rule 38a : CelV -> CelV const matches = word.match(/^([bcdfghjklmnpqrstvwxyz])(el[aiueo])(.*)$/) if (matches) { return matches[1] + matches[2] + matches[3] } } function disambiguateRule38b (word) { // Rule 38b : CelV -> CV const matches = word.match(/^([bcdfghjklmnpqrstvwxyz])el([aiueo])(.*)$/) if (matches) { return matches[1] + matches[2] + matches[3] } } PrefixRules.DisambiguatorPrefixRule38 = function (word) { // Push rule 38 const disambiguateRules = [] disambiguateRules.push(disambiguateRule38a) disambiguateRules.push(disambiguateRule38b) return runDisambiguator(disambiguateRules, word) } // RULE 39 function disambiguateRule39a (word) { // Rule 39a : CemV -> CemV const matches = word.match(/^([bcdfghjklmnpqrstvwxyz])(em[aiueo])(.*)$/) if (matches) { return matches[1] + matches[2] + matches[3] } } function disambiguateRule39b (word) { // Rule 39b : CemV -> CV const matches = word.match(/^([bcdfghjklmnpqrstvwxyz])em([aiueo])(.*)$/) if (matches) { return matches[1] + matches[2] + matches[3] } } PrefixRules.DisambiguatorPrefixRule39 = function (word) { // Push rule 39 const disambiguateRules = [] disambiguateRules.push(disambiguateRule39a) disambiguateRules.push(disambiguateRule39b) return runDisambiguator(disambiguateRules, word) } // RULE 40 function disambiguateRule40a (word) { // Rule 40a : CinV -> CinV const matches = word.match(/^([bcdfghjklmnpqrstvwxyz])(in[aiueo])(.*)$/) if (matches) { return matches[1] + matches[2] + matches[3] } } function disambiguateRule40b (word) { // Rule 40b : CinV -> CV const matches = word.match(/^([bcdfghjklmnpqrstvwxyz])in([aiueo])(.*)$/) if (matches) { return matches[1] + matches[2] + matches[3] } } PrefixRules.DisambiguatorPrefixRule40 = function (word) { // Push rule 40 const disambiguateRules = [] disambiguateRules.push(disambiguateRule40a) disambiguateRules.push(disambiguateRule40b) return runDisambiguator(disambiguateRules, word) } // RULE 41 function disambiguateRule41 (word) { // Rule 41 : kuA -> ku-A const matches = word.match(/^ku(.*)$/) if (matches) { return matches[1] } } PrefixRules.DisambiguatorPrefixRule41 = function (word) { // Push rule 41 const disambiguateRules = [] disambiguateRules.push(disambiguateRule41) return runDisambiguator(disambiguateRules, word) } // RULE 42 function disambiguateRule42 (word) { // Rule 42 : kauA -> kau-A const matches = word.match(/^kau(.*)$/) if (matches) { return matches[1] } } PrefixRules.DisambiguatorPrefixRule42 = function (word) { // Push rule 42 const disambiguateRules = [] disambiguateRules.push(disambiguateRule42) return runDisambiguator(disambiguateRules, word) } } module.exports = PrefixRules // Initalize prefix rules array const rules = [] const pr = new PrefixRules() // Push all rules rules.push(pr.RemovePlainPrefix) rules.push(pr.DisambiguatorPrefixRule1) rules.push(pr.DisambiguatorPrefixRule2) rules.push(pr.DisambiguatorPrefixRule3) rules.push(pr.DisambiguatorPrefixRule4) rules.push(pr.DisambiguatorPrefixRule5) rules.push(pr.DisambiguatorPrefixRule6) rules.push(pr.DisambiguatorPrefixRule7) rules.push(pr.DisambiguatorPrefixRule8) rules.push(pr.DisambiguatorPrefixRule9) rules.push(pr.DisambiguatorPrefixRule10) rules.push(pr.DisambiguatorPrefixRule11) rules.push(pr.DisambiguatorPrefixRule12) rules.push(pr.DisambiguatorPrefixRule13) rules.push(pr.DisambiguatorPrefixRule14) rules.push(pr.DisambiguatorPrefixRule15) rules.push(pr.DisambiguatorPrefixRule16) rules.push(pr.DisambiguatorPrefixRule17) rules.push(pr.DisambiguatorPrefixRule18) rules.push(pr.DisambiguatorPrefixRule19) rules.push(pr.DisambiguatorPrefixRule20) rules.push(pr.DisambiguatorPrefixRule21) rules.push(pr.DisambiguatorPrefixRule23) rules.push(pr.DisambiguatorPrefixRule24) rules.push(pr.DisambiguatorPrefixRule25) rules.push(pr.DisambiguatorPrefixRule26) rules.push(pr.DisambiguatorPrefixRule27) rules.push(pr.DisambiguatorPrefixRule28) rules.push(pr.DisambiguatorPrefixRule29) rules.push(pr.DisambiguatorPrefixRule30) rules.push(pr.DisambiguatorPrefixRule31) rules.push(pr.DisambiguatorPrefixRule32) rules.push(pr.DisambiguatorPrefixRule34) rules.push(pr.DisambiguatorPrefixRule35) rules.push(pr.DisambiguatorPrefixRule36) rules.push(pr.DisambiguatorPrefixRule37) rules.push(pr.DisambiguatorPrefixRule38) rules.push(pr.DisambiguatorPrefixRule39) rules.push(pr.DisambiguatorPrefixRule40) rules.push(pr.DisambiguatorPrefixRule41) rules.push(pr.DisambiguatorPrefixRule42) PrefixRules.rules = rules ================================================ FILE: lib/natural/stemmers/indonesian/removal.js ================================================ /* Copyright (c) 2017, Alif Bhaskoro, Andy Librian, R. Kukuh (Reimplemented from https://github.com/sastrawi/sastrawi) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ // a list of commonly used words that have little meaning and can be excluded // from analysis. function Removal (originalWord, result, removedPart, affixType) { this.originalWord = originalWord this.result = result this.removedPart = removedPart this.affixType = affixType } Removal.prototype.getOriginalWord = function () { return this.originalWord } Removal.prototype.getResult = function () { return this.result } Removal.prototype.getRemovedPart = function () { return this.removedPart } Removal.prototype.getAffixType = function () { return this.affixType } module.exports = Removal ================================================ FILE: lib/natural/stemmers/indonesian/stemmer_id.js ================================================ /* Copyright (c) 2017, Alif Bhaskoro, Andy Librian, R. Kukuh (Reimplemented from https://github.com/sastrawi/sastrawi) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ const BaseStemmer = require('./base_stemmer_id') const stemmer = new BaseStemmer() // Dictionary const dictionary = loadDictionary() // Rules const SuffixRules = require('./suffix_rules') const PrefixRules = require('./prefix_rules') const suffixRules = SuffixRules.rules const prefixRules = PrefixRules.rules // Removals let removals = null // Words let originalWord = null let currentWord = null module.exports = stemmer // perform full stemming algorithm on a single word stemmer.stem = function (token) { // Cache stemmer not yet implemented // Set to lowercase token = token.toLowerCase() // Initiate everything removals = [] if (isPlural(token)) { return stemPluralWord(token) } else { return stemSingularWord(token) } } // Stem for plural word function stemPluralWord (pluralWord) { let matches = pluralWord.match(/^(.*)-(.*)$/) if (!matches) { return pluralWord } const words = [matches[1], matches[2]] // malaikat-malaikat-nya -> malaikat malaikat-nya const suffix = words[1] const suffixes = ['ku', 'mu', 'nya', 'lah', 'kah', 'tah', 'pun'] matches = words[0].match(/^(.*)-(.*)$/) if (suffixes.indexOf(suffix) !== -1 && matches) { words[0] = matches[1] words[1] = matches[2] + '-' + suffix } // berbalas-balasan -> balas const rootWord1 = stemSingularWord(words[0]) let rootWord2 = stemSingularWord(words[1]) // meniru-nirukan -> tiru if (!find(words[1]) && rootWord2 === words[1]) { rootWord2 = stemSingularWord('me' + words[1]) } if (rootWord1 === rootWord2) { return rootWord1 } else { return pluralWord } } // Stem for singular word function stemSingularWord (word) { originalWord = word // Save the original word for reverting later currentWord = word // Step 1 if (currentWord.length > 3) { // Step 2-5 stemmingProcess() } // Step 6 if (find(currentWord)) { return currentWord } else { return originalWord } } // Return true if word is in plural form ex: gelas-gelas, else false function isPlural (token) { const matches = token.match(/^(.*)-(ku|mu|nya|lah|kah|tah|pun)$/) if (matches) { return matches[1].search('-') !== -1 } return token.search('-') !== -1 } // Find certain word in dictionary function find (word) { return dictionary.has(word) } function loadDictionary () { const fin = require('./data/kata-dasar.json') return new Set(fin.filter(Boolean)) } // Stemming from step 2-5 function stemmingProcess () { if (find(currentWord)) { return } // Confix Stripping // Try to remove prefixes first before suffixes if the specification is met if (precedenceAdjustmentSpecification(originalWord)) { // Step 4, 5 removePrefixes() if (find(currentWord)) { return } // Step 2, 3 removeSuffixes() if (find(currentWord)) { return } else { // if the trial is failed, restore the original word // and continue to normal rule precedence (suffix first, prefix afterwards) currentWord = originalWord removals = [] } } // Step 2, 3 removeSuffixes() if (find(currentWord)) { return } // Step 4, 5 removePrefixes() if (find(currentWord)) { return } // ECS Loop Restore Prefixes loopRestorePrefixes() } // Remove Suffixes function removeSuffixes () { for (const i in suffixRules) { const resultObj = suffixRules[i](currentWord) // Add result to variable if (resultObj.removal !== undefined) { removals.push(resultObj.removal) } currentWord = resultObj.currentWord if (find(currentWord)) { return currentWord } } } // Remove Prefixes function removePrefixes () { for (let i = 0; i < 3; i++) { checkPrefixRules() if (find(currentWord)) { return currentWord } } } function checkPrefixRules () { const removalCount = removals.length let j = 0 for (j = 0; j < prefixRules.length; j++) { const resultObj = prefixRules[j](currentWord) // Add result to variable if (resultObj.removal !== undefined) { removals.push(resultObj.removal) } currentWord = resultObj.currentWord if (find(currentWord)) { return currentWord } if (removals.length > removalCount) { return } } } // Loop Restore Prefixes function loopRestorePrefixes () { restorePrefix() const reversedRemovals = removals.reverse() const tempCurrentWord = currentWord for (const i in reversedRemovals) { const currentRemoval = reversedRemovals[i] if (!isSuffixRemovals(currentRemoval)) { continue } if (currentRemoval.getRemovedPart() === 'kan') { currentWord = currentRemoval.getResult() + 'k' // Step 4, 5 removePrefixes() if (find(currentWord)) { return } currentWord = currentRemoval.getResult() + 'kan' } else { currentWord = currentRemoval.getOriginalWord() } // Step 4, 5 removePrefixes() if (find(currentWord)) { return } currentWord = tempCurrentWord } } function isSuffixRemovals (removal) { const type = removal.getAffixType() if (type === 'DS' || type === 'PP' || type === 'P') { return true } return false } function restorePrefix () { for (let i = 0; i < removals.length; i++) { currentWord = removals[i].getOriginalWord() // break } for (let i = 0; i < removals.length; i++) { if (removals[i].getAffixType() === 'DP') { removals.splice(i, 1) i-- } } } // Check if word require precedence adjustment or not // Adjustment means remove prefix then suffix instead of remove suffix then prefix function precedenceAdjustmentSpecification (word) { const regexRules = [ /^be(.*)lah$/, /^be(.*)an$/, /^me(.*)i$/, /^di(.*)i$/, /^pe(.*)i$/, /^ter(.*)i$/ ] for (const i in regexRules) { if (word.match(regexRules[i])) { return true } } return false } // exports for tests stemmer.isPlural = isPlural stemmer.dictionary = Array.from(dictionary) stemmer.a = suffixRules[0] ================================================ FILE: lib/natural/stemmers/indonesian/suffix_rules.js ================================================ /* Copyright (c) 2017, Alif Bhaskoro, Andy Librian, R. Kukuh (Reimplemented from https://github.com/sastrawi/sastrawi) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ // a list of commonly used words that have little meaning and can be excluded // from analysis. const Removal = require('./removal') function SuffixRules () { const SuffixRules = this this.removal = undefined this.currentWord = undefined function createResultObject (result, word, type) { if (result !== word) { const removedPart = word.replace(result, '') const removal = new Removal(word, result, removedPart, type) this.removal = removal } else { this.removal = undefined } this.currentWord = result return this } SuffixRules.RemoveInflectionalParticle = function (word) { const result = word.replace(/-*(lah|kah|tah|pun)$/, '') return createResultObject(result, word, 'P') } SuffixRules.RemoveInflectionalPossessivePronoun = function (word) { const result = word.replace(/-*(ku|mu|nya)$/, '') return createResultObject(result, word, 'PP') } SuffixRules.RemoveDerivationalSuffix = function (word) { const result = word.replace(/(is|isme|isasi|i|kan|an)$/, '') return createResultObject(result, word, 'DS') } } module.exports = SuffixRules // Initalize suffix rules array const rules = [] const sr = new SuffixRules() rules.push(sr.RemoveInflectionalParticle) rules.push(sr.RemoveInflectionalPossessivePronoun) rules.push(sr.RemoveDerivationalSuffix) SuffixRules.rules = rules ================================================ FILE: lib/natural/stemmers/lancaster_rules.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' exports.rules = { a: [ { continuation: false, intact: true, pattern: 'ia', size: '2' }, { continuation: false, intact: true, pattern: 'a', size: '1' } ], b: [ { continuation: false, intact: false, pattern: 'bb', size: '1' } ], c: [ { appendage: 's', continuation: false, intact: false, pattern: 'ytic', size: '3' }, { continuation: true, intact: false, pattern: 'ic', size: '2' }, { appendage: 't', continuation: true, intact: false, pattern: 'nc', size: '1' } ], d: [ { continuation: false, intact: false, pattern: 'dd', size: '1' }, { appendage: 'y', continuation: true, intact: false, pattern: 'ied', size: '3' }, { appendage: 'ss', continuation: false, intact: false, pattern: 'ceed', size: '2' }, { continuation: false, intact: false, pattern: 'eed', size: '1' }, { continuation: true, intact: false, pattern: 'ed', size: '2' }, { continuation: true, intact: false, pattern: 'hood', size: '4' } ], e: [ { continuation: true, intact: false, pattern: 'e', size: '1' } ], f: [ { appendage: 'v', continuation: false, intact: false, pattern: 'lief', size: '1' }, { continuation: true, intact: false, pattern: 'if', size: '2' } ], g: [ { continuation: true, intact: false, pattern: 'ing', size: '3' }, { appendage: 'y', continuation: false, intact: false, pattern: 'iag', size: '3' }, { continuation: true, intact: false, pattern: 'ag', size: '2' }, { continuation: false, intact: false, pattern: 'gg', size: '1' } ], h: [ { continuation: false, intact: true, pattern: 'th', size: '2' }, { appendage: 'ct', continuation: false, intact: false, pattern: 'guish', size: '5' }, { continuation: true, intact: false, pattern: 'ish', size: '3' } ], i: [ { continuation: false, intact: true, pattern: 'i', size: '1' }, { appendage: 'y', continuation: true, intact: false, pattern: 'i', size: '1' } ], j: [ { appendage: 'd', continuation: false, intact: false, pattern: 'ij', size: '1' }, { appendage: 's', continuation: false, intact: false, pattern: 'fuj', size: '1' }, { appendage: 'd', continuation: false, intact: false, pattern: 'uj', size: '1' }, { appendage: 'd', continuation: false, intact: false, pattern: 'oj', size: '1' }, { appendage: 'r', continuation: false, intact: false, pattern: 'hej', size: '1' }, { appendage: 't', continuation: false, intact: false, pattern: 'verj', size: '1' }, { appendage: 't', continuation: false, intact: false, pattern: 'misj', size: '2' }, { appendage: 'd', continuation: false, intact: false, pattern: 'nj', size: '1' }, { appendage: 's', continuation: false, intact: false, pattern: 'j', size: '1' } ], l: [ { continuation: false, intact: false, pattern: 'ifiabl', size: '6' }, { appendage: 'y', continuation: false, intact: false, pattern: 'iabl', size: '4' }, { continuation: true, intact: false, pattern: 'abl', size: '3' }, { continuation: false, intact: false, pattern: 'ibl', size: '3' }, { appendage: 'l', continuation: true, intact: false, pattern: 'bil', size: '2' }, { continuation: false, intact: false, pattern: 'cl', size: '1' }, { appendage: 'y', continuation: false, intact: false, pattern: 'iful', size: '4' }, { continuation: true, intact: false, pattern: 'ful', size: '3' }, { continuation: false, intact: false, pattern: 'ul', size: '2' }, { continuation: true, intact: false, pattern: 'ial', size: '3' }, { continuation: true, intact: false, pattern: 'ual', size: '3' }, { continuation: true, intact: false, pattern: 'al', size: '2' }, { continuation: false, intact: false, pattern: 'll', size: '1' } ], m: [ { continuation: false, intact: false, pattern: 'ium', size: '3' }, { continuation: false, intact: true, pattern: 'um', size: '2' }, { continuation: true, intact: false, pattern: 'ism', size: '3' }, { continuation: false, intact: false, pattern: 'mm', size: '1' } ], n: [ { appendage: 'j', continuation: true, intact: false, pattern: 'sion', size: '4' }, { appendage: 'ct', continuation: false, intact: false, pattern: 'xion', size: '4' }, { continuation: true, intact: false, pattern: 'ion', size: '3' }, { continuation: true, intact: false, pattern: 'ian', size: '3' }, { continuation: true, intact: false, pattern: 'an', size: '2' }, { continuation: false, intact: false, pattern: 'een', size: '0' }, { continuation: true, intact: false, pattern: 'en', size: '2' }, { continuation: false, intact: false, pattern: 'nn', size: '1' } ], p: [ { continuation: true, intact: false, pattern: 'ship', size: '4' }, { continuation: false, intact: false, pattern: 'pp', size: '1' } ], r: [ { continuation: true, intact: false, pattern: 'er', size: '2' }, { continuation: false, intact: false, pattern: 'ear', size: '0' }, { continuation: false, intact: false, pattern: 'ar', size: '2' }, { continuation: true, intact: false, pattern: 'or', size: '2' }, { continuation: true, intact: false, pattern: 'ur', size: '2' }, { continuation: false, intact: false, pattern: 'rr', size: '1' }, { continuation: true, intact: false, pattern: 'tr', size: '1' }, { appendage: 'y', continuation: true, intact: false, pattern: 'ier', size: '3' } ], s: [ { appendage: 'y', continuation: true, intact: false, pattern: 'ies', size: '3' }, { continuation: false, intact: false, pattern: 'sis', size: '2' }, { continuation: true, intact: false, pattern: 'is', size: '2' }, { continuation: true, intact: false, pattern: 'ness', size: '4' }, { continuation: false, intact: false, pattern: 'ss', size: '0' }, { continuation: true, intact: false, pattern: 'ous', size: '3' }, { continuation: false, intact: true, pattern: 'us', size: '2' }, { continuation: true, intact: true, pattern: 's', size: '1' }, { continuation: false, intact: false, pattern: 's', size: '0' } ], t: [ { appendage: 'y', continuation: false, intact: false, pattern: 'plicat', size: '4' }, { continuation: true, intact: false, pattern: 'at', size: '2' }, { continuation: true, intact: false, pattern: 'ment', size: '4' }, { continuation: true, intact: false, pattern: 'ent', size: '3' }, { continuation: true, intact: false, pattern: 'ant', size: '3' }, { appendage: 'b', continuation: false, intact: false, pattern: 'ript', size: '2' }, { appendage: 'b', continuation: false, intact: false, pattern: 'orpt', size: '2' }, { continuation: false, intact: false, pattern: 'duct', size: '1' }, { continuation: false, intact: false, pattern: 'sumpt', size: '2' }, { appendage: 'iv', continuation: false, intact: false, pattern: 'cept', size: '2' }, { appendage: 'v', continuation: false, intact: false, pattern: 'olut', size: '2' }, { continuation: false, intact: false, pattern: 'sist', size: '0' }, { continuation: true, intact: false, pattern: 'ist', size: '3' }, { continuation: false, intact: false, pattern: 'tt', size: '1' } ], u: [ { continuation: false, intact: false, pattern: 'iqu', size: '3' }, { continuation: false, intact: false, pattern: 'ogu', size: '1' } ], v: [ { appendage: 'j', continuation: true, intact: false, pattern: 'siv', size: '3' }, { continuation: false, intact: false, pattern: 'eiv', size: '0' }, { continuation: true, intact: false, pattern: 'iv', size: '2' } ], y: [ { continuation: true, intact: false, pattern: 'bly', size: '1' }, { appendage: 'y', continuation: true, intact: false, pattern: 'ily', size: '3' }, { continuation: false, intact: false, pattern: 'ply', size: '0' }, { continuation: true, intact: false, pattern: 'ly', size: '2' }, { continuation: false, intact: false, pattern: 'ogy', size: '1' }, { continuation: false, intact: false, pattern: 'phy', size: '1' }, { continuation: false, intact: false, pattern: 'omy', size: '1' }, { continuation: false, intact: false, pattern: 'opy', size: '1' }, { continuation: true, intact: false, pattern: 'ity', size: '3' }, { continuation: true, intact: false, pattern: 'ety', size: '3' }, { continuation: false, intact: false, pattern: 'lty', size: '2' }, { continuation: false, intact: false, pattern: 'istry', size: '5' }, { continuation: true, intact: false, pattern: 'ary', size: '3' }, { continuation: true, intact: false, pattern: 'ory', size: '3' }, { continuation: false, intact: false, pattern: 'ify', size: '3' }, { appendage: 't', continuation: true, intact: false, pattern: 'ncy', size: '2' }, { continuation: true, intact: false, pattern: 'acy', size: '3' } ], z: [ { continuation: true, intact: false, pattern: 'iz', size: '2' }, { appendage: 's', continuation: false, intact: false, pattern: 'yz', size: '1' } ] } ================================================ FILE: lib/natural/stemmers/lancaster_stemmer.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Stemmer = require('./stemmer') const ruleTable = require('./lancaster_rules').rules function acceptable (candidate) { if (candidate.match(/^[aeiou]/)) { return (candidate.length > 1) } else { return (candidate.length > 2 && candidate.match(/[aeiouy]/)) } } // take a token, look up the applicatble rule section and attempt some stemming! function applyRuleSection (token, intact) { const section = token.substr(-1) const rules = ruleTable[section] if (rules) { for (let i = 0; i < rules.length; i++) { if ((intact || !rules[i].intact) && // only apply intact rules to intact tokens token.substr(0 - rules[i].pattern.length) === rules[i].pattern) { // hack off only as much as the rule indicates let result = token.substr(0, token.length - rules[i].size) // if the rules wants us to apply an appendage do so if (rules[i].appendage) { result += rules[i].appendage } if (acceptable(result)) { token = result // see what the rules wants to do next if (rules[i].continuation) { // this rule thinks there still might be stem left. keep at it. // since we've applied a change we'll pass false in for intact return applyRuleSection(result, false) } else { // the rule thinks we're done stemming. drop out. return result } } } } } return token } const LancasterStemmer = new Stemmer() module.exports = LancasterStemmer LancasterStemmer.stem = function (token) { return applyRuleSection(token.toLowerCase(), true) } ================================================ FILE: lib/natural/stemmers/porter_stemmer.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Stemmer = require('./stemmer') // denote groups of consecutive consonants with a C and consecutive vowels // with a V. function categorizeGroups (token) { return token.replace(/[^aeiouy]+y/g, 'CV').replace(/[aeiou]+/g, 'V').replace(/[^V]+/g, 'C') } // denote single consonants with a C and single vowels with a V function categorizeChars (token) { return token.replace(/[^aeiouy]y/g, 'CV').replace(/[aeiou]/g, 'V').replace(/[^V]/g, 'C') } // calculate the "measure" M of a word. M is the count of VC sequences dropping // an initial C if it exists and a trailing V if it exists. function measure (token) { if (!token) { return -1 } return categorizeGroups(token).replace(/^C/, '').replace(/V$/, '').length / 2 } // determine if a token end with a double consonant i.e. happ function endsWithDoublCons (token) { return token.match(/([^aeiou])\1$/) } // replace a pattern in a word. if a replacement occurs an optional callback // can be called to post-process the result. if no match is made NULL is // returned. function attemptReplace (token, pattern, replacement, callback) { let result = null if ((typeof pattern === 'string') && token.substr(0 - pattern.length) === pattern) { result = token.replace(new RegExp(pattern + '$'), replacement) } else if ((pattern instanceof RegExp) && token.match(pattern)) { result = token.replace(pattern, replacement) } if (result && callback) { return callback(result) } else { return result } } // attempt to replace a list of patterns/replacements on a token for a minimum // measure M. function attemptReplacePatterns (token, replacements, measureThreshold) { let replacement = token for (let i = 0; i < replacements.length; i++) { if (measureThreshold == null || measure(attemptReplace(token, replacements[i][0], replacements[i][1])) > measureThreshold) { replacement = attemptReplace(replacement, replacements[i][0], replacements[i][2]) || replacement } } return replacement } // replace a list of patterns/replacements on a word. if no match is made return // the original token. function replacePatterns (token, replacements, measureThreshold) { return attemptReplacePatterns(token, replacements, measureThreshold) || token } // TODO: this should replace all of the messy replacement stuff above function replaceRegex (token, regex, includeParts, minimumMeasure) { let parts let result = '' if (regex.test(token)) { parts = regex.exec(token) includeParts.forEach(function (i) { result += parts[i] }) } if (measure(result) > minimumMeasure) { return result } return null } // step 1a as defined for the porter stemmer algorithm. function step1a (token) { if (token.match(/(ss|i)es$/)) { return token.replace(/(ss|i)es$/, '$1') } if (token.substr(-1) === 's' && token.substr(-2, 1) !== 's' && token.length > 2) { return token.replace(/s?$/, '') } return token } // step 1b as defined for the porter stemmer algorithm. function step1b (token) { let result if (token.substr(-3) === 'eed') { if (measure(token.substr(0, token.length - 3)) > 0) { return token.replace(/eed$/, 'ee') } } else { result = attemptReplace(token, /(ed|ing)$/, '', function (token) { if (categorizeGroups(token).indexOf('V') >= 0) { result = attemptReplacePatterns(token, [['at', '', 'ate'], ['bl', '', 'ble'], ['iz', '', 'ize']]) if (result !== token) { return result } else { if (endsWithDoublCons(token) && token.match(/[^lsz]$/)) { return token.replace(/([^aeiou])\1$/, '$1') } if (measure(token) === 1 && categorizeChars(token).substr(-3) === 'CVC' && token.match(/[^wxy]$/)) { return token + 'e' } } return token } return null }) if (result) { return result } } return token } // step 1c as defined for the porter stemmer algorithm. function step1c (token) { const categorizedGroups = categorizeGroups(token) if (token.substr(-1) === 'y' && categorizedGroups.substr(0, categorizedGroups.length - 1).indexOf('V') > -1) { return token.replace(/y$/, 'i') } return token } // step 2 as defined for the porter stemmer algorithm. function step2 (token) { token = replacePatterns(token, [['ational', '', 'ate'], ['tional', '', 'tion'], ['enci', '', 'ence'], ['anci', '', 'ance'], ['izer', '', 'ize'], ['abli', '', 'able'], ['bli', '', 'ble'], ['alli', '', 'al'], ['entli', '', 'ent'], ['eli', '', 'e'], ['ousli', '', 'ous'], ['ization', '', 'ize'], ['ation', '', 'ate'], ['ator', '', 'ate'], ['alism', '', 'al'], ['iveness', '', 'ive'], ['fulness', '', 'ful'], ['ousness', '', 'ous'], ['aliti', '', 'al'], ['iviti', '', 'ive'], ['biliti', '', 'ble'], ['logi', '', 'log']], 0) return token } // step 3 as defined for the porter stemmer algorithm. function step3 (token) { return replacePatterns(token, [['icate', '', 'ic'], ['ative', '', ''], ['alize', '', 'al'], ['iciti', '', 'ic'], ['ical', '', 'ic'], ['ful', '', ''], ['ness', '', '']], 0) } // step 4 as defined for the porter stemmer algorithm. function step4 (token) { return replaceRegex(token, /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/, [1], 1) || replaceRegex(token, /^(.+?)(s|t)(ion)$/, [1, 2], 1) || token } // step 5a as defined for the porter stemmer algorithm. function step5a (token) { const m = measure(token.replace(/e$/, '')) if (m > 1 || (m === 1 && !(categorizeChars(token).substr(-4, 3) === 'CVC' && token.match(/[^wxy].$/)))) { token = token.replace(/e$/, '') } return token } // step 5b as defined for the porter stemmer algorithm. function step5b (token) { if (measure(token) > 1) { return token.replace(/ll$/, 'l') } return token } const PorterStemmer = new Stemmer() module.exports = PorterStemmer // perform full stemming algorithm on a single word PorterStemmer.stem = function (token) { if (token.length < 3) return token.toString() return step5b(step5a(step4(step3(step2(step1c(step1b(step1a(token.toLowerCase())))))))).toString() } // exports for tests PorterStemmer.categorizeGroups = categorizeGroups PorterStemmer.measure = measure PorterStemmer.step1a = step1a PorterStemmer.step1b = step1b PorterStemmer.step1c = step1c PorterStemmer.step2 = step2 PorterStemmer.step3 = step3 PorterStemmer.step4 = step4 PorterStemmer.step5a = step5a PorterStemmer.step5b = step5b ================================================ FILE: lib/natural/stemmers/porter_stemmer_de.js ================================================ /* * Original author: Joder Illi * Integration in Natural by Hugo W.L. ter Doest * * Copyright (c) 2010, FormBlitz AG * All rights reserved. * Implementation of the stemming algorithm from http://snowball.tartarus.org/algorithms/german/stemmer.html * Copyright of the algorithm is: Copyright (c) 2001, Dr Martin Porter and can be found at http://snowball.tartarus.org/license.php * * Redistribution and use in source and binary forms, with or without * modification, is covered by the standard BSD license. * */ 'use strict' const Stemmer = require('./stemmer_de') const PorterStemmer = new Stemmer() PorterStemmer.stem = stemm module.exports = PorterStemmer /* by Joder Illi, Snowball mailing list */ function stemm (word, options = {}) { /* Put u and y between vowels into upper case */ word = word.replace(/([aeiouyäöü])u([aeiouyäöü])/g, '$1U$2') word = word.replace(/([aeiouyäöü])y([aeiouyäöü])/g, '$1Y$2') /* and then do the following mappings, (a) replace ß with ss, (a) replace ae with ä, Not doing these, have trouble with diphtongs (a) replace oe with ö, Not doing these, have trouble with diphtongs (a) replace ue with ü unless preceded by q. Not doing these, have trouble with diphtongs So in quelle, ue is not mapped to ü because it follows q, and in feuer it is not mapped because the first part of the rule changes it to feUer, so the u is not found. */ word = word.replace(/ß/g, 'ss') // word = word.replace(/ae/g, 'ä'); // word = word.replace(/oe/g, 'ö'); // word = word.replace(/([^q])ue/g, '$1ü'); /* R1 and R2 are first set up in the standard way (see the note on R1 and R2), but then R1 is adjusted so that the region before it contains at least 3 letters. R1 is the region after the first non-vowel following a vowel, or is the null region at the end of the word if there is no such non-vowel. R2 is the region after the first non-vowel following a vowel in R1, or is the null region at the end of the word if there is no such non-vowel. */ let r1Index = word.search(/[aeiouyäöü][^aeiouyäöü]/) let r1 = '' if (r1Index !== -1) { r1Index += 2 r1 = word.substring(r1Index) } let r2Index = -1 // let r2 = '' if (r1Index !== -1) { r2Index = r1.search(/[aeiouyäöü][^aeiouyäöü]/) if (r2Index !== -1) { r2Index += 2 // r2 = r1.substring(r2Index) r2Index += r1Index } else { // r2 = '' } } if (r1Index !== -1 && r1Index < 3) { r1Index = 3 r1 = word.substring(r1Index) } /* Define a valid s-ending as one of b, d, f, g, h, k, l, m, n, r or t. Define a valid st-ending as the same list, excluding letter r. */ /* Do each of steps 1, 2 and 3. */ /* Step 1: Search for the longest among the following suffixes, (a) em ern er (b) e en es (c) s (preceded by a valid s-ending) */ const a1Index = word.search(/(em|ern|er)$/g) const b1Index = word.search(/(e|en|es)$/g) let c1Index = word.search(/([bdfghklmnrt]s)$/g) if (c1Index !== -1) { c1Index++ } let index1 = 10000 let optionUsed1 = '' if (a1Index !== -1 && a1Index < index1) { optionUsed1 = 'a' index1 = a1Index } if (b1Index !== -1 && b1Index < index1) { optionUsed1 = 'b' index1 = b1Index } if (c1Index !== -1 && c1Index < index1) { optionUsed1 = 'c' index1 = c1Index } /* and delete if in R1. (Of course the letter of the valid s-ending is not necessarily in R1.) If an ending of group (b) is deleted, and the ending is preceded by niss, delete the final s. (For example, äckern -> äck, ackers -> acker, armes -> arm, bedürfnissen -> bedürfnis) */ if (index1 !== 10000 && r1Index !== -1) { if (index1 >= r1Index) { word = word.substring(0, index1) if (optionUsed1 === 'b') { if (word.search(/niss$/) !== -1) { word = word.substring(0, word.length - 1) } } } } /* Step 2: Search for the longest among the following suffixes, (a) en er est (b) st (preceded by a valid st-ending, itself preceded by at least 3 letters) */ const a2Index = word.search(/(en|er|est)$/g) let b2Index = word.search(/(.{3}[bdfghklmnt]st)$/g) if (b2Index !== -1) { b2Index += 4 } let index2 = 10000 // const optionUsed2 = '' if (a2Index !== -1 && a2Index < index2) { // optionUsed2 = 'a' index2 = a2Index } if (b2Index !== -1 && b2Index < index2) { // optionUsed2 = 'b' index2 = b2Index } /* and delete if in R1. (For example, derbsten -> derbst by step 1, and derbst -> derb by step 2, since b is a valid st-ending, and is preceded by just 3 letters) */ if (index2 !== 10000 && r1Index !== -1) { if (index2 >= r1Index) { word = word.substring(0, index2) } } /* Step 3: d-suffixes (*) Search for the longest among the following suffixes, and perform the action indicated. end ung delete if in R2 if preceded by ig, delete if in R2 and not preceded by e ig ik isch delete if in R2 and not preceded by e lich heit delete if in R2 if preceded by er or en, delete if in R1 keit delete if in R2 if preceded by lich or ig, delete if in R2 */ const a3Index = word.search(/(end|ung)$/g) let b3Index = word.search(/[^e](ig|ik|isch)$/g) const c3Index = word.search(/(lich|heit)$/g) const d3Index = word.search(/(keit)$/g) if (b3Index !== -1) { b3Index++ } let index3 = 10000 let optionUsed3 = '' if (a3Index !== -1 && a3Index < index3) { optionUsed3 = 'a' index3 = a3Index } if (b3Index !== -1 && b3Index < index3) { optionUsed3 = 'b' index3 = b3Index } if (c3Index !== -1 && c3Index < index3) { optionUsed3 = 'c' index3 = c3Index } if (d3Index !== -1 && d3Index < index3) { optionUsed3 = 'd' index3 = d3Index } if (index3 !== 10000 && r2Index !== -1) { if (index3 >= r2Index) { word = word.substring(0, index3) let optionIndex = -1 // const optionSubsrt = '' if (optionUsed3 === 'a') { optionIndex = word.search(/[^e](ig)$/) if (optionIndex !== -1) { optionIndex++ if (optionIndex >= r2Index) { word = word.substring(0, optionIndex) } } } else if (optionUsed3 === 'c') { optionIndex = word.search(/(er|en)$/) if (optionIndex !== -1) { if (optionIndex >= r1Index) { word = word.substring(0, optionIndex) } } } else if (optionUsed3 === 'd') { optionIndex = word.search(/(lich|ig)$/) if (optionIndex !== -1) { if (optionIndex >= r2Index) { word = word.substring(0, optionIndex) } } } } } /* Finally, turn U and Y back into lower case, and remove the umlaut accent from a, o and u. */ word = word.replace(/U/g, 'u') word = word.replace(/Y/g, 'y') if (options.preserveUmlauts) { return word } word = word.replace(/ä/g, 'a') word = word.replace(/ö/g, 'o') word = word.replace(/ü/g, 'u') return word } ================================================ FILE: lib/natural/stemmers/porter_stemmer_es.js ================================================ /* Copyright (c) 2018, Domingo Martín Mancera Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Stemmer = require('./stemmer_es') // Inherit from the utility class in stemmer_es class PorterStemmer extends Stemmer { isVowel (c) { const regex = /[aeiouáéíóú]/gi return regex.test(c) } nextVowelPosition (word, start = 0) { const length = word.length for (let position = start; position < length; position++) { if (this.isVowel(word[position])) { return position } } return length } nextConsonantPosition (word, start = 0) { const length = word.length for (let position = start; position < length; position++) { if (!this.isVowel(word[position])) { return position } } return length } endsIn (word, suffix) { if (word.length < suffix.length) { return false } return (word.slice(-suffix.length) === suffix) } endsInArr (word, suffixes) { const matches = [] for (const i in suffixes) { if (this.endsIn(word, suffixes[i])) { matches.push(suffixes[i]) } } const longest = matches.sort(function (a, b) { return b.length - a.length })[0] if (longest) { return longest } else { return '' } } removeAccent (word) { const accentedVowels = ['á', 'é', 'í', 'ó', 'ú'] const vowels = ['a', 'e', 'i', 'o', 'u'] for (const i in accentedVowels) { word = word.replace(accentedVowels[i], vowels[i]) } return word } stem (word) { const length = word.length word.toLowerCase() if (length < 2) { return this.removeAccent(word) } let r1, r2, rv r1 = length r2 = length rv = length // R1 is the region after the first non-vowel following a vowel, or is the null region // at the end of the word if there is no such non-vowel. for (let i = 0; i < (length - 1) && r1 === length; i++) { if (this.isVowel(word[i]) && !this.isVowel(word[i + 1])) { r1 = i + 2 } } // R2 is the region after the first non-vowel following a vowel in R1, // or is the null region at the end of the word if there is no such non-vowel. for (let i = r1; i < (length - 1) && r2 === length; i++) { if (this.isVowel(word[i]) && !this.isVowel(word[i + 1])) { r2 = i + 2 } } if (length > 3) { if (!this.isVowel(word[1])) { rv = this.nextVowelPosition(word, 2) + 1 } else if (this.isVowel(word[0]) && this.isVowel(word[1])) { rv = this.nextConsonantPosition(word, 2) + 1 } else { rv = 3 } } let r1Text = word.slice(r1) let r2Text = word.slice(r2) let rvText = word.slice(rv) const originalWord = word // Step 0: Attached pronoun const pronounSuffix = ['me', 'se', 'sela', 'selo', 'selas', 'selos', 'la', 'le', 'lo', 'las', 'les', 'los', 'nos'] const pronounSuffixPre1 = ['iéndo', 'ándo', 'ár', 'ér', 'ír'] const pronounSuffixPre2 = ['iendo', 'ando', 'ar', 'er', 'ir'] const suffix = this.endsInArr(word, pronounSuffix) if (suffix !== '') { let preSuffix = this.endsInArr(rvText.slice(0, -suffix.length), pronounSuffixPre1) if (preSuffix !== '') { word = this.removeAccent(word.slice(0, -suffix.length)) } else { preSuffix = this.endsInArr(rvText.slice(0, -suffix.length), pronounSuffixPre2) if (preSuffix !== '' || (this.endsIn(word.slice(0, -suffix.length), 'uyendo'))) { word = word.slice(0, -suffix.length) } } } if (word !== originalWord) { r1Text = word.slice(r1) r2Text = word.slice(r2) rvText = word.slice(rv) } const wordAfter0 = word let suf = null if ((suf = this.endsInArr(r2Text, ['anza', 'anzas', 'ico', 'ica', 'icos', 'icas', 'ismo', 'ismos', 'able', 'ables', 'ible', 'ibles', 'ista', 'istas', 'oso', 'osa', 'osos', 'osas', 'amiento', 'amientos', 'imiento', 'imientos'])) !== '') { word = word.slice(0, -suf.length) } else if ((suf = this.endsInArr(r2Text, ['icadora', 'icador', 'icación', 'icadoras', 'icadores', 'icaciones', 'icante', 'icantes', 'icancia', 'icancias', 'adora', 'ador', 'ación', 'adoras', 'adores', 'aciones', 'ante', 'antes', 'ancia', 'ancias'])) !== '') { word = word.slice(0, -suf.length) } else if ((suf = this.endsInArr(r2Text, ['logía', 'logías'])) !== '') { word = word.slice(0, -suf.length) + 'log' } else if ((suf = this.endsInArr(r2Text, ['ución', 'uciones'])) !== '') { word = word.slice(0, -suf.length) + 'u' } else if ((suf = this.endsInArr(r2Text, ['encia', 'encias'])) !== '') { word = word.slice(0, -suf.length) + 'ente' } else if ((suf = this.endsInArr(r2Text, ['ativamente', 'ivamente', 'osamente', 'icamente', 'adamente'])) !== '') { word = word.slice(0, -suf.length) } else if ((suf = this.endsInArr(r1Text, ['amente'])) !== '') { word = word.slice(0, -suf.length) } else if ((suf = this.endsInArr(r2Text, ['antemente', 'ablemente', 'iblemente', 'mente'])) !== '') { word = word.slice(0, -suf.length) } else if ((suf = this.endsInArr(r2Text, ['abilidad', 'abilidades', 'icidad', 'icidades', 'ividad', 'ividades', 'idad', 'idades'])) !== '') { word = word.slice(0, -suf.length) } else if ((suf = this.endsInArr(r2Text, ['ativa', 'ativo', 'ativas', 'ativos', 'iva', 'ivo', 'ivas', 'ivos'])) !== '') { word = word.slice(0, -suf.length) } if (word !== wordAfter0) { r1Text = word.slice(r1) r2Text = word.slice(r2) rvText = word.slice(rv) } const wordAfter1 = word if (wordAfter0 === wordAfter1) { // Do step 2a if no ending was removed by step 1. suf = this.endsInArr(rvText, ['ya', 'ye', 'yan', 'yen', 'yeron', 'yendo', 'yo', 'yó', 'yas', 'yes', 'yais', 'yamos']) if (suf !== '' && (word.slice(-suf.length - 1, -suf.length) === 'u')) { word = word.slice(0, -suf.length) } if (word !== wordAfter1) { r1Text = word.slice(r1) r2Text = word.slice(r2) rvText = word.slice(rv) } const wordAfter2a = word // Do Step 2b if step 2a was done, but failed to remove a suffix. if (wordAfter2a === wordAfter1) { if ((suf = this.endsInArr(rvText, ['arían', 'arías', 'arán', 'arás', 'aríais', 'aría', 'aréis', 'aríamos', 'aremos', 'ará', 'aré', 'erían', 'erías', 'erán', 'erás', 'eríais', 'ería', 'eréis', 'eríamos', 'eremos', 'erá', 'eré', 'irían', 'irías', 'irán', 'irás', 'iríais', 'iría', 'iréis', 'iríamos', 'iremos', 'irá', 'iré', 'aba', 'ada', 'ida', 'ía', 'ara', 'iera', 'ad', 'ed', 'id', 'ase', 'iese', 'aste', 'iste', 'an', 'aban', 'ían', 'aran', 'ieran', 'asen', 'iesen', 'aron', 'ieron', 'ado', 'ido', 'ando', 'iendo', 'ió', 'ar', 'er', 'ir', 'as', 'abas', 'adas', 'idas', 'ías', 'aras', 'ieras', 'ases', 'ieses', 'ís', 'áis', 'abais', 'íais', 'arais', 'ierais', ' aseis', 'ieseis', 'asteis', 'isteis', 'ados', 'idos', 'amos', 'ábamos', 'íamos', 'imos', 'áramos', 'iéramos', 'iésemos', 'ásemos'])) !== '') { word = word.slice(0, -suf.length) } else if ((suf = this.endsInArr(rvText, ['en', 'es', 'éis', 'emos'])) !== '') { word = word.slice(0, -suf.length) if (this.endsIn(word, 'gu')) { word = word.slice(0, -1) } } } } r1Text = word.slice(r1) r2Text = word.slice(r2) rvText = word.slice(rv) if ((suf = this.endsInArr(rvText, ['os', 'a', 'o', 'á', 'í', 'ó'])) !== '') { word = word.slice(0, -suf.length) } else if ((this.endsInArr(rvText, ['e', 'é'])) !== '') { word = word.slice(0, -1) rvText = word.slice(rv) if (this.endsIn(rvText, 'u') && this.endsIn(word, 'gu')) { word = word.slice(0, -1) } } return this.removeAccent(word) } } module.exports = new PorterStemmer() ================================================ FILE: lib/natural/stemmers/porter_stemmer_fa.js ================================================ /* Copyright (c) 2011, Chris Umbel Farsi Porter Stemmer by Fardin Koochaki Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Stemmer = require('./stemmer_fa') const PorterStemmer = new Stemmer() module.exports = PorterStemmer // disabled stemming for Farsi // Farsi stemming will be supported soon PorterStemmer.stem = function (token) { return token } ================================================ FILE: lib/natural/stemmers/porter_stemmer_fr.js ================================================ /* Copyright (c) 2014, Ismaël Héry Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /* * Spec for the French Porter Stemmer can be found at: * http://snowball.tartarus.org/algorithms/french/stemmer.html */ 'use strict' const Stemmer = require('./stemmer_fr') const PorterStemmer = new Stemmer() module.exports = PorterStemmer // Export PorterStemmer.stem = stem // Exports for test purpose PorterStemmer.prelude = prelude PorterStemmer.regions = regions PorterStemmer.endsinArr = endsinArr /** * Stem a word thanks to Porter Stemmer rules * @param {String} token Word to be stemmed * @return {String} Stemmed word */ function stem (token) { token = prelude(token.toLowerCase()) if (token.length === 1) { return token } const regs = regions(token) let r1txt, r2txt, rvtxt r1txt = token.substring(regs.r1) r2txt = token.substring(regs.r2) rvtxt = token.substring(regs.rv) // Step 1 const beforeStep1 = token let suf, letterBefore, letter2Before, i let doStep2a = false if ((suf = endsinArr(r2txt, ['ance', 'iqUe', 'isme', 'able', 'iste', 'eux', 'ances', 'iqUes', 'ismes', 'ables', 'istes'])) !== '') { token = token.slice(0, -suf.length) // delete } else if ((suf = endsinArr(token, ['icatrice', 'icateur', 'ication', 'icatrices', 'icateurs', 'ications'])) !== '') { if (endsinArr(r2txt, ['icatrice', 'icateur', 'ication', 'icatrices', 'icateurs', 'ications']) !== '') { token = token.slice(0, -suf.length) // delete } else { token = token.slice(0, -suf.length) + 'iqU' // replace by iqU } } else if ((suf = endsinArr(r2txt, ['atrice', 'ateur', 'ation', 'atrices', 'ateurs', 'ations'])) !== '') { token = token.slice(0, -suf.length) // delete } else if ((suf = endsinArr(r2txt, ['logie', 'logies'])) !== '') { token = token.slice(0, -suf.length) + 'log' // replace with log } else if ((suf = endsinArr(r2txt, ['usion', 'ution', 'usions', 'utions'])) !== '') { token = token.slice(0, -suf.length) + 'u' // replace with u } else if ((suf = endsinArr(r2txt, ['ence', 'ences'])) !== '') { token = token.slice(0, -suf.length) + 'ent' // replace with ent } else if ((suf = endsinArr(r1txt, ['issement', 'issements'])) !== '') { if (!isVowel(token[token.length - suf.length - 1])) { token = token.slice(0, -suf.length) // delete r1txt = token.substring(regs.r1) r2txt = token.substring(regs.r2) rvtxt = token.substring(regs.rv) } } else if ((suf = endsinArr(r2txt, ['ativement', 'ativements'])) !== '') { token = token.slice(0, -suf.length) // delete } else if ((suf = endsinArr(r2txt, ['ivement', 'ivements'])) !== '') { token = token.slice(0, -suf.length) // delete } else if ((suf = endsinArr(token, ['eusement', 'eusements'])) !== '') { if ((suf = endsinArr(r2txt, ['eusement', 'eusements'])) !== '') { token = token.slice(0, -suf.length) } else if ((suf = endsinArr(r1txt, ['eusement', 'eusements'])) !== '') { token = token.slice(0, -suf.length) + 'eux' } else if ((suf = endsinArr(rvtxt, ['ement', 'ements'])) !== '') { token = token.slice(0, -suf.length) } // delete } else if ((suf = endsinArr(r2txt, ['ablement', 'ablements', 'iqUement', 'iqUements'])) !== '') { token = token.slice(0, -suf.length) // delete } else if ((suf = endsinArr(rvtxt, ['ièrement', 'ièrements', 'Ièrement', 'Ièrements'])) !== '') { token = token.slice(0, -suf.length) + 'i' // replace by i } else if ((suf = endsinArr(rvtxt, ['ement', 'ements'])) !== '') { token = token.slice(0, -suf.length) // delete } else if ((suf = endsinArr(token, ['icité', 'icités'])) !== '') { if (endsinArr(r2txt, ['icité', 'icités']) !== '') { token = token.slice(0, -suf.length) } else { token = token.slice(0, -suf.length) + 'iqU' } } else if ((suf = endsinArr(token, ['abilité', 'abilités'])) !== '') { if (endsinArr(r2txt, ['abilité', 'abilités']) !== '') { token = token.slice(0, -suf.length) } else { token = token.slice(0, -suf.length) + 'abl' } } else if ((suf = endsinArr(r2txt, ['ité', 'ités'])) !== '') { token = token.slice(0, -suf.length) // delete if in R2 } else if ((suf = endsinArr(token, ['icatif', 'icative', 'icatifs', 'icatives'])) !== '') { if ((suf = endsinArr(r2txt, ['icatif', 'icative', 'icatifs', 'icatives'])) !== '') { token = token.slice(0, -suf.length) // delete r2txt = token.substring(regs.r2) rvtxt = token.substring(regs.rv) } if ((suf = endsinArr(r2txt, ['atif', 'ative', 'atifs', 'atives'])) !== '') { token = token.slice(0, -suf.length - 2) + 'iqU' // replace with iqU r2txt = token.substring(regs.r2) rvtxt = token.substring(regs.rv) } } else if ((suf = endsinArr(r2txt, ['atif', 'ative', 'atifs', 'atives'])) !== '') { token = token.slice(0, -suf.length) // delete } else if ((suf = endsinArr(r2txt, ['if', 'ive', 'ifs', 'ives'])) !== '') { token = token.slice(0, -suf.length) // delete } else if ((suf = endsinArr(token, ['eaux'])) !== '') { token = token.slice(0, -suf.length) + 'eau' // replace by eau } else if ((suf = endsinArr(r1txt, ['aux'])) !== '') { token = token.slice(0, -suf.length) + 'al' // replace by al } else if ((suf = endsinArr(r2txt, ['euse', 'euses'])) !== '') { token = token.slice(0, -suf.length) // delete } else if ((suf = endsinArr(r1txt, ['euse', 'euses'])) !== '') { token = token.slice(0, -suf.length) + 'eux' // replace by eux } else if ((suf = endsinArr(rvtxt, ['amment'])) !== '') { token = token.slice(0, -suf.length) + 'ant' // replace by ant doStep2a = true } else if ((suf = endsinArr(rvtxt, ['emment'])) !== '') { token = token.slice(0, -suf.length) + 'ent' // replace by ent doStep2a = true } else if ((suf = endsinArr(rvtxt, ['ment', 'ments'])) !== '') { // letter before must be a vowel in RV letterBefore = token[token.length - suf.length - 1] if (isVowel(letterBefore) && endsin(rvtxt, letterBefore + suf)) { token = token.slice(0, -suf.length) // delete doStep2a = true } } // re compute regions r1txt = token.substring(regs.r1) r2txt = token.substring(regs.r2) rvtxt = token.substring(regs.rv) // Step 2a const beforeStep2a = token let step2aDone = false if (beforeStep1 === token || doStep2a) { step2aDone = true if ((suf = endsinArr(rvtxt, ['îmes', 'ît', 'îtes', 'i', 'ie', 'Ie', 'ies', 'ir', 'ira', 'irai', 'iraIent', 'irais', 'irait', 'iras', 'irent', 'irez', 'iriez', 'irions', 'irons', 'iront', 'is', 'issaIent', 'issais', 'issait', 'issant', 'issante', 'issantes', 'issants', 'isse', 'issent', 'isses', 'issez', 'issiez', 'issions', 'issons', 'it'])) !== '') { letterBefore = token[token.length - suf.length - 1] if (!isVowel(letterBefore) && endsin(rvtxt, letterBefore + suf)) { token = token.slice(0, -suf.length) } // delete } } // Step 2b if (step2aDone && token === beforeStep2a) { if ((suf = endsinArr(rvtxt, ['é', 'ée', 'ées', 'és', 'èrent', 'er', 'era', 'erai', 'eraIent', 'erais', 'erait', 'eras', 'erez', 'eriez', 'erions', 'erons', 'eront', 'ez', 'iez', 'Iez'])) !== '') { token = token.slice(0, -suf.length) // delete r2txt = token.substring(regs.r2) rvtxt = token.substring(regs.rv) } else if ((suf = endsinArr(rvtxt, ['ions'])) !== '' && endsinArr(r2txt, ['ions'])) { token = token.slice(0, -suf.length) // delete r2txt = token.substring(regs.r2) rvtxt = token.substring(regs.rv) } else if ((suf = endsinArr(rvtxt, ['âmes', 'ât', 'âtes', 'a', 'ai', 'aIent', 'ais', 'ait', 'ant', 'ante', 'antes', 'ants', 'as', 'asse', 'assent', 'asses', 'assiez', 'assions'])) !== '') { token = token.slice(0, -suf.length) // delete letterBefore = token[token.length - 1] if (letterBefore === 'e' && endsin(rvtxt, 'e' + suf)) { token = token.slice(0, -1) } r2txt = token.substring(regs.r2) rvtxt = token.substring(regs.rv) } } // Step 3 if (!(token === beforeStep1)) { if (token[token.length - 1] === 'Y') { token = token.slice(0, -1) + 'i' } if (token[token.length - 1] === 'ç') { token = token.slice(0, -1) + 'c' } } else { // Step 4 letterBefore = token[token.length - 1] letter2Before = token[token.length - 2] if (letterBefore === 's' && ['a', 'i', 'o', 'u', 'è', 's'].indexOf(letter2Before) === -1) { token = token.slice(0, -1) r1txt = token.substring(regs.r1) r2txt = token.substring(regs.r2) rvtxt = token.substring(regs.rv) } if ((suf = endsinArr(r2txt, ['ion'])) !== '') { letterBefore = token[token.length - suf.length - 1] if (letterBefore === 's' || letterBefore === 't') { token = token.slice(0, -suf.length) // delete r1txt = token.substring(regs.r1) r2txt = token.substring(regs.r2) rvtxt = token.substring(regs.rv) } } if ((suf = endsinArr(rvtxt, ['ier', 'ière', 'Ier', 'Ière'])) !== '') { token = token.slice(0, -suf.length) + 'i' // replace by i r1txt = token.substring(regs.r1) r2txt = token.substring(regs.r2) rvtxt = token.substring(regs.rv) } if ((suf = endsinArr(rvtxt, 'e')) !== '') { token = token.slice(0, -suf.length) // delete r1txt = token.substring(regs.r1) r2txt = token.substring(regs.r2) rvtxt = token.substring(regs.rv) } if ((suf = endsinArr(rvtxt, 'ë')) !== '') { if (token.slice(token.length - 3, -1) === 'gu') { token = token.slice(0, -suf.length) } // delete } } // Step 5 if ((suf = endsinArr(token, ['enn', 'onn', 'ett', 'ell', 'eill'])) !== '') { token = token.slice(0, -1) // delete last letter } // Step 6 i = token.length - 1 while (i > 0) { if (!isVowel(token[i])) { i-- } else if (i !== token.length - 1 && (token[i] === 'é' || token[i] === 'è')) { token = token.substring(0, i) + 'e' + token.substring(i + 1, token.length) break } else { break } } return token.toLowerCase() }; /** * Compute r1, r2, rv regions as required by french porter stemmer algorithm * @param {String} token Word to compute regions on * @return {Object} Regions r1, r2, rv as offsets from the begining of the word */ function regions (token) { let r1, r2, rv, len // var i r1 = r2 = rv = len = token.length // R1 is the region after the first non-vowel following a vowel, for (let i = 0; i < len - 1 && r1 === len; i++) { if (isVowel(token[i]) && !isVowel(token[i + 1])) { r1 = i + 2 } } // Or is the null region at the end of the word if there is no such non-vowel. // R2 is the region after the first non-vowel following a vowel in R1 for (let i = r1; i < len - 1 && r2 === len; i++) { if (isVowel(token[i]) && !isVowel(token[i + 1])) { r2 = i + 2 } } // Or is the null region at the end of the word if there is no such non-vowel. // RV region const three = token.slice(0, 3) if (isVowel(token[0]) && isVowel(token[1])) { rv = 3 } if (three === 'par' || three === 'col' || three === 'tap') { rv = 3 } else { // the region after the first vowel not at the beginning of the word or null for (let i = 1; i < len - 1 && rv === len; i++) { if (isVowel(token[i])) { rv = i + 1 } } } return { r1: r1, r2: r2, rv: rv } }; /** * Pre-process/prepare words as required by french porter stemmer algorithm * @param {String} token Word to be prepared * @return {String} Prepared word */ function prelude (token) { token = token.toLowerCase() let result = '' let i = 0 // special case for i = 0 to avoid '-1' index if (token[i] === 'y' && isVowel(token[i + 1])) { result += token[i].toUpperCase() } else { result += token[i] } for (i = 1; i < token.length; i++) { if ((token[i] === 'u' || token[i] === 'i') && isVowel(token[i - 1]) && isVowel(token[i + 1])) { result += token[i].toUpperCase() } else if (token[i] === 'y' && (isVowel(token[i - 1]) || isVowel(token[i + 1]))) { result += token[i].toUpperCase() } else if (token[i] === 'u' && token[i - 1] === 'q') { result += token[i].toUpperCase() } else { result += token[i] } } return result }; /** * Return longest matching suffixes for a token or '' if no suffix match * @param {String} token Word to find matching suffix * @param {Array} suffixes Array of suffixes to test matching * @return {String} Longest found matching suffix or '' */ function endsinArr (token, suffixes) { let i; let longest = '' for (i = 0; i < suffixes.length; i++) { if (endsin(token, suffixes[i]) && suffixes[i].length > longest.length) { longest = suffixes[i] } } return longest }; function isVowel (letter) { return (letter === 'a' || letter === 'e' || letter === 'i' || letter === 'o' || letter === 'u' || letter === 'y' || letter === 'â' || letter === 'à' || letter === 'ë' || letter === 'é' || letter === 'ê' || letter === 'è' || letter === 'ï' || letter === 'î' || letter === 'ô' || letter === 'û' || letter === 'ù') }; function endsin (token, suffix) { if (token.length < suffix.length) return false return (token.slice(-suffix.length) === suffix) }; ================================================ FILE: lib/natural/stemmers/porter_stemmer_it.js ================================================ /* Copyright (c) 2012, Leonardo Fenu, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Stemmer = require('./stemmer_it') const PorterStemmer = new Stemmer() module.exports = PorterStemmer function isVowel (letter) { return (letter === 'a' || letter === 'e' || letter === 'i' || letter === 'o' || letter === 'u' || letter === 'à' || letter === 'è' || letter === 'ì' || letter === 'ò' || letter === 'ù') } function getNextVowelPos (token, start) { start = start + 1 const length = token.length for (let i = start; i < length; i++) { if (isVowel(token[i])) { return i } } return length } function getNextConsonantPos (token, start) { const length = token.length for (let i = start; i < length; i++) { if (!isVowel(token[i])) return i } return length } function endsin (token, suffix) { if (token.length < suffix.length) return false return (token.slice(-suffix.length) === suffix) } function endsinArr (token, suffixes) { for (let i = 0; i < suffixes.length; i++) { if (endsin(token, suffixes[i])) return suffixes[i] } return '' } function replaceAcute (token) { let str = token.replace(/á/gi, 'à') str = str.replace(/é/gi, 'è') str = str.replace(/í/gi, 'ì') str = str.replace(/ó/gi, 'ò') str = str.replace(/ú/gi, 'ù') return str } function vowelMarking (token) { function replacer (match, p1, p2, p3) { return p1 + p2.toUpperCase() + p3 } const str = token.replace(/([aeiou])(i|u)([aeiou])/g, replacer) return str } // perform full stemming algorithm on a single word PorterStemmer.stem = function (token) { token = token.toLowerCase() token = replaceAcute(token) token = token.replace(/qu/g, 'qU') token = vowelMarking(token) if (token.length < 3) { return token } let r1 = token.length let r2 = token.length let rv = token.length const len = token.length // R1 is the region after the first non-vowel following a vowel, for (let i = 0; i < token.length - 1 && r1 === len; i++) { if (isVowel(token[i]) && !isVowel(token[i + 1])) { r1 = i + 2 } } // Or is the null region at the end of the word if there is no such non-vowel. // R2 is the region after the first non-vowel following a vowel in R1 for (let i = r1; i < token.length - 1 && r2 === len; i++) { if (isVowel(token[i]) && !isVowel(token[i + 1])) { r2 = i + 2 } } // Or is the null region at the end of the word if there is no such non-vowel. // If the second letter is a consonant, RV is the region after the next following vowel, // RV as follow if (len > 3) { if (!isVowel(token[1])) { // If the second letter is a consonant, RV is the region after the next following vowel rv = getNextVowelPos(token, 1) + 1 } else if (isVowel(token[0]) && isVowel(token[1])) { // or if the first two letters are vowels, RV is the region after the next consonant rv = getNextConsonantPos(token, 2) + 1 } else { // otherwise (consonant-vowel case) RV is the region after the third letter. But RV is the end of the word if these positions cannot be found. rv = 3 } } let r1txt = token.substring(r1) let r2txt = token.substring(r2) let rvtxt = token.substring(rv) const tokenOrig = token // Step 0: Attached pronoun const pronounSuf = ['glieli', 'glielo', 'gliene', 'gliela', 'gliele', 'sene', 'tene', 'cela', 'cele', 'celi', 'celo', 'cene', 'vela', 'vele', 'veli', 'velo', 'vene', 'mela', 'mele', 'meli', 'melo', 'mene', 'tela', 'tele', 'teli', 'telo', 'gli', 'ci', 'la', 'le', 'li', 'lo', 'mi', 'ne', 'si', 'ti', 'vi'] const pronounSufPre1 = ['ando', 'endo'] const pronounSufPre2 = ['ar', 'er', 'ir'] let suf = endsinArr(token, pronounSuf) if (suf !== '') { const preSuff1 = endsinArr(rvtxt.slice(0, -suf.length), pronounSufPre1) const preSuff2 = endsinArr(rvtxt.slice(0, -suf.length), pronounSufPre2) if (preSuff1 !== '') { token = token.slice(0, -suf.length) } if (preSuff2 !== '') { token = token.slice(0, -suf.length) + 'e' } } if (token !== tokenOrig) { r1txt = token.substring(r1) r2txt = token.substring(r2) rvtxt = token.substring(rv) } const tokenAfter0 = token // Step 1: Standard suffix removal if ((suf = endsinArr(r2txt, ['ativamente', 'abilamente', 'ivamente', 'osamente', 'icamente'])) !== '') { token = token.slice(0, -suf.length) // delete } else if ((suf = endsinArr(r2txt, ['icazione', 'icazioni', 'icatore', 'icatori', 'azione', 'azioni', 'atore', 'atori'])) !== '') { token = token.slice(0, -suf.length) // delete } else if ((suf = endsinArr(r2txt, ['logia', 'logie'])) !== '') { token = token.slice(0, -suf.length) + 'log' // replace with log } else if ((suf = endsinArr(r2txt, ['uzione', 'uzioni', 'usione', 'usioni'])) !== '') { token = token.slice(0, -suf.length) + 'u' // replace with u } else if ((suf = endsinArr(r2txt, ['enza', 'enze'])) !== '') { token = token.slice(0, -suf.length) + 'ente' // replace with ente } else if ((suf = endsinArr(rvtxt, ['amento', 'amenti', 'imento', 'imenti'])) !== '') { token = token.slice(0, -suf.length) // delete } else if ((suf = endsinArr(r1txt, ['amente'])) !== '') { token = token.slice(0, -suf.length) // delete } else if ((suf = endsinArr(r2txt, ['atrice', 'atrici', 'abile', 'abili', 'ibile', 'ibili', 'mente', 'ante', 'anti', 'anza', 'anze', 'iche', 'ichi', 'ismo', 'ismi', 'ista', 'iste', 'isti', 'istà', 'istè', 'istì', 'ico', 'ici', 'ica', 'ice', 'oso', 'osi', 'osa', 'ose'])) !== '') { token = token.slice(0, -suf.length) // delete } else if ((suf = endsinArr(r2txt, ['abilità', 'icità', 'ività', 'ità'])) !== '') { token = token.slice(0, -suf.length) // delete } else if ((suf = endsinArr(r2txt, ['icativa', 'icativo', 'icativi', 'icative', 'ativa', 'ativo', 'ativi', 'ative', 'iva', 'ivo', 'ivi', 'ive'])) !== '') { token = token.slice(0, -suf.length) } if (token !== tokenAfter0) { r1txt = token.substring(r1) r2txt = token.substring(r2) rvtxt = token.substring(rv) } const tokenAfter1 = token // Step 2: Verb suffixes if (tokenAfter0 === tokenAfter1) { if ((suf = endsinArr(rvtxt, ['erebbero', 'irebbero', 'assero', 'assimo', 'eranno', 'erebbe', 'eremmo', 'ereste', 'eresti', 'essero', 'iranno', 'irebbe', 'iremmo', 'ireste', 'iresti', 'iscano', 'iscono', 'issero', 'arono', 'avamo', 'avano', 'avate', 'eremo', 'erete', 'erono', 'evamo', 'evano', 'evate', 'iremo', 'irete', 'irono', 'ivamo', 'ivano', 'ivate', 'ammo', 'ando', 'asse', 'assi', 'emmo', 'enda', 'ende', 'endi', 'endo', 'erai', 'Yamo', 'iamo', 'immo', 'irai', 'irei', 'isca', 'isce', 'isci', 'isco', 'erei', 'uti', 'uto', 'ita', 'ite', 'iti', 'ito', 'iva', 'ivi', 'ivo', 'ono', 'uta', 'ute', 'ano', 'are', 'ata', 'ate', 'ati', 'ato', 'ava', 'avi', 'avo', 'erà', 'ere', 'erò', 'ete', 'eva', 'evi', 'evo', 'irà', 'ire', 'irò', 'ar', 'ir'])) !== '') { token = token.slice(0, -suf.length) } } r1txt = token.substring(r1) r2txt = token.substring(r2) rvtxt = token.substring(rv) // Always do step 3. if ((suf = endsinArr(rvtxt, ['ia', 'ie', 'ii', 'io', 'ià', 'iè', 'iì', 'iò', 'a', 'e', 'i', 'o', 'à', 'è', 'ì', 'ò'])) !== '') { token = token.slice(0, -suf.length) } r1txt = token.substring(r1) r2txt = token.substring(r2) rvtxt = token.substring(rv) if ((suf = endsinArr(rvtxt, ['ch'])) !== '') { token = token.slice(0, -suf.length) + 'c' // replace with c } else if ((suf = endsinArr(rvtxt, ['gh'])) !== '') { token = token.slice(0, -suf.length) + 'g' // replace with g } r1txt = token.substring(r1) r2txt = token.substring(r2) rvtxt = token.substring(rv) return token.toLowerCase() } ================================================ FILE: lib/natural/stemmers/porter_stemmer_nl.js ================================================ /* Copyright (c) 2018, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /* * Spec for the Dutch Porter Stemmer can be found at: * http://snowball.tartarus.org/algorithms/dutch/stemmer.html */ 'use strict' const Stemmer = require('./stemmer_nl') const DEBUG = false const vowels = 'aeiouèy' function isVowel (x) { return vowels.indexOf(x) > -1 } // * Return longest matching suffixes for a token or '' if no suffix match function endsinArr (str, suffixes) { let i let longest = '' for (i = 0; i < suffixes.length; i++) { if (endsin(str, suffixes[i]) && suffixes[i].length > longest.length) { longest = suffixes[i] } } if (DEBUG && longest !== '') { console.log('Matched suffix: ' + longest) } return longest } // Returns true if token has suffix function endsin (str, suffix) { if (str.length < suffix.length) return false return (str.slice(-suffix.length) === suffix) } // Removes a suffix of len characters and returns the string function removeSuffix (str, len) { return str.substr(0, str.length - len) } // Define undoubling the ending as removing the last letter if the word ends kk, dd or tt. function undoubleEnding (str) { if (str.substr(-2) === 'kk' || str.substr(-2) === 'tt' || str.substr(-2) === 'dd') { return str.substr(0, str.length - 1) } else { return str } } class PorterStemmer extends Stemmer { replaceAccentedCharacters (word) { const accentedCharactersMapping = { ä: 'a', ë: 'e', ï: 'i', ö: 'o', ü: 'u', á: 'a', é: 'e', í: 'i', ó: 'o', ú: 'u' } let result = word for (const x in accentedCharactersMapping) { result = result.replace(new RegExp(x, 'g'), accentedCharactersMapping[x]) } if (DEBUG) { console.log('replaceAccentedCharacters: ' + result) } return result } // Put initial y, y after a vowel, and i between vowels into upper case. handleYI (word) { // Initial y let result = word.replace(/^y/, 'Y') if (DEBUG) { console.log('handleYI: initial y: ' + result) } // y after vowel result = result.replace(/([aeioué])y/g, '$1Y') if (DEBUG) { console.log('handleYI: y after vowel: ' + result) } // i between vowels result = result.replace(/([aeioué])i([aeioué])/g, '$1I$2') if (DEBUG) { console.log('handleYI: i between vowels:' + result) } return result } // Determines R1 and R2; adapted from the French Porter Stemmer markRegions (token) { let r1, r2, len r1 = r2 = len = token.length // R1 is the region after the first non-vowel following a vowel, for (let i = 0; i < len - 1 && r1 === len; i++) { if (isVowel(token[i]) && !isVowel(token[i + 1])) { r1 = i + 2 } } // Or is the null region at the end of the word if there is no such non-vowel. // R1 is adjusted such that the region before it contains at least 3 characters if (r1 !== len) { // R1 is not null if (r1 < 3) { // Region before does not contain at least 3 characters if (len > 3) { r1 = 3 // Now R1 contains at least 3 characters } else { // It is not possible to make the region before long enough r1 = len } } } // R2 is the region after the first non-vowel following a vowel in R1 for (let i = r1; i < len - 1 && r2 === len; i++) { if (isVowel(token[i]) && !isVowel(token[i + 1])) { r2 = i + 2 } } // Or is the null region at the end of the word if there is no such non-vowel. if (DEBUG) { console.log('Regions r1 = ' + r1 + ' r2 = ' + r2) } this.r1 = r1 this.r2 = r2 } prelude (word) { let result = this.replaceAccentedCharacters(word) result = this.handleYI(result) this.markRegions(result) if (DEBUG) { console.log('Prelude: ' + result) } return result } // (1b) en ene => delete if in R1 and preceded by a valid en-ending, and then undouble the ending // Define a valid en-ending as a non-vowel, and not gem. // Define undoubling the ending as removing the last letter if the word ends kk, dd or tt. step1b (word, suffixes) { let result = word const match = endsinArr(result, suffixes) if (match !== '') { const pos = result.length - match.length if (pos >= this.r1) { // check the character before the matched en/ene AND check for gem if (!isVowel(result[pos - 1]) && result.substr(pos - 3, 3) !== 'gem') { // delete result = removeSuffix(result, match.length) // Undouble the ending result = undoubleEnding(result) } } } if (DEBUG) { console.log('step 1b: ' + result) } return result } step1 (word) { let result = word // (1a) heden => replace with heid if in R1 if (endsin(result, 'heden') && result.length - 5 >= this.r1) { result = removeSuffix(result, 5) result += 'heid' } if (DEBUG) { console.log('step 1a: ' + result) } result = this.step1b(result, ['en', 'ene']) // (1c) s se => delete if in R1 and preceded by a valid s-ending // Define a valid s-ending as a non-vowel other than j. const match = endsinArr(result, ['se', 's']) if (match !== '') { const pos = result.length - match.length if (pos >= this.r1) { // check the character before the matched s/se // HtD: if there is a s before the s/se the suffix should stay // if (!isVowel(result[pos - 1]) && result[pos - 1] != "j") { if (!isVowel(result[pos - 1]) && !result.match(/[js]se?$/)) { result = removeSuffix(result, match.length) } } } if (DEBUG) { console.log('step 1c: ' + result) } return result } // Delete suffix e if in R1 and preceded by a non-vowel, and then undouble the ending step2 (word) { let result = word if (endsin(result, 'e') && this.r1 < result.length) { if (result.length > 1 && !isVowel(result[result.length - 2])) { // Delete result = removeSuffix(result, 1) this.suffixeRemoved = true // Undouble the ending result = undoubleEnding(result) } } if (DEBUG) { console.log('step2: ' + result) } return result } // Step 3a: heid => delete heid if in R2 and not preceded by c, and treat a preceding en as in step 1(b) step3a (word) { let result = word if (endsin(result, 'heid') && result.length - 4 >= this.r2 && result[result.length - 5] !== 'c') { // Delete result = removeSuffix(result, 4) // Treat a preceding en as in step 1b result = this.step1b(result, ['en']) } if (DEBUG) { console.log('step 3a: ' + result) } return result } // d suffixes: Search for the longest among the following suffixes, and perform the action indicated. step3b (word) { let result = word // end ing => delete if in R2; if preceded by ig, delete if in R2 and not preceded by e, otherwise undouble the ending const suf = endsinArr(result, ['end', 'ing']) if (suf) { if ((result.length - 3) >= this.r2) { // Delete suffix result = removeSuffix(result, 3) // this.regions(result); if (endsin(result, 'ig') && (result.length - 2 >= this.r2) && result[result.length - 3] !== 'e') { // Delete suffix result = removeSuffix(result, 2) } else { result = undoubleEnding(result) } } } // ig => delete if in R2 and not preceded by e if (endsin(result, 'ig') && this.r2 <= result.length - 2 && result[result.length - 3] !== 'e') { result = removeSuffix(result, 2) } // lijk => delete if in R2, and then repeat step 2 if (endsin(result, 'lijk') && this.r2 <= result.length - 4) { result = removeSuffix(result, 4) // repeat step 2 result = this.step2(result) } // baar => delete if in R2 if (endsin(result, 'baar') && this.r2 <= result.length - 4) { result = removeSuffix(result, 4) } // bar => delete if in R2 and if step 2 actually removed an e if (endsin(result, 'bar') && this.r2 <= result.length - 3 && this.suffixeRemoved) { result = removeSuffix(result, 3) } if (DEBUG) { console.log('step 3b: ' + result) } return result } // undouble vowel => If the words ends CVD, where C is a non-vowel, // D is a non-vowel other than I, and V is double a, e, o or u, // remove one of the vowels from V (for example, maan -> man, brood -> brod) step4 (word) { let result = word if (result.match(/[bcdfghjklmnpqrstvwxz](aa|ee|oo|uu)[bcdfghjklmnpqrstvwxz]$/)) { result = result.substr(0, result.length - 2) + result[result.length - 1] } if (DEBUG) { console.log('step4: ' + result) } return result } // Turn I and Y back into lower case. postlude (word) { return word.toLowerCase() } stem (word) { return this.postlude(this.step4(this.step3b(this.step3a(this.step2(this.step1(this.prelude(word))))))) } } module.exports = new PorterStemmer() ================================================ FILE: lib/natural/stemmers/porter_stemmer_no.js ================================================ /* Copyright (c) 2014, Kristoffer Brabrand Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Stemmer = require('./stemmer_no') // Get the part of the token after the first non-vowel following a vowel function getR1 (token) { const match = token.match(/[aeiouyæåø]{1}[^aeiouyæåø]([A-Za-z0-9_æøåÆØÅäÄöÖüÜ]+)/) if (match) { const preR1Length = match.index + 2 if (preR1Length < 3 && preR1Length > 0) { return token.slice(3) } else if (preR1Length >= 3) { return match[1] } else { return token } } return null } function step1 (token) { // Perform step 1a-c const step1aResult = step1a(token) const step1bResult = step1b(token) const step1cResult = step1c(token) // Returne the shortest result string (from 1a, 1b and 1c) if (step1aResult.length < step1bResult.length) { return (step1aResult.length < step1cResult.length) ? step1aResult : step1cResult } else { return (step1bResult.length < step1cResult.length) ? step1bResult : step1cResult } } // step 1a as defined for the porter stemmer algorithm. function step1a (token) { const r1 = getR1(token) if (!r1) { return token } const r1Match = r1.match(/(a|e|ede|ande|ende|ane|ene|hetene|en|heten|ar|er|heter|as|es|edes|endes|enes|hetenes|ens|hetens|ers|ets|et|het|ast)$/) if (r1Match) { return token.replace(new RegExp(r1Match[1] + '$'), '') } return token } // step 1b as defined for the porter stemmer algorithm. function step1b (token) { const r1 = getR1(token) if (!r1) { return token } if (token.match(/(b|c|d|f|g|h|j|l|m|n|o|p|r|t|v|y|z)s$/)) { return token.slice(0, -1) } if (token.match(/([^aeiouyæåø]k)s$/)) { return token.slice(0, -1) } return token } // step 1c as defined for the porter stemmer algorithm. function step1c (token) { const r1 = getR1(token) if (!r1) { return token } if (r1.match(/(erte|ert)$/)) { return token.replace(/(erte|ert)$/, 'er') } return token } // step 2 as defined for the porter stemmer algorithm. function step2 (token) { const r1 = getR1(token) if (!r1) { return token } if (r1.match(/(d|v)t$/)) { return token.slice(0, -1) } return token } // step 3 as defined for the porter stemmer algorithm. function step3 (token) { const r1 = getR1(token) if (!r1) { return token } const r1Match = r1.match(/(leg|eleg|ig|eig|lig|elig|els|lov|elov|slov|hetslov)$/) if (r1Match) { return token.replace(new RegExp(r1Match[1] + '$'), '') } return token } const PorterStemmer = new Stemmer() module.exports = PorterStemmer // perform full stemming algorithm on a single word PorterStemmer.stem = function (token) { return step3(step2(step1(token.toLowerCase()))).toString() } // exports for tests PorterStemmer.getR1 = getR1 PorterStemmer.step1 = step1 PorterStemmer.step1a = step1a PorterStemmer.step1b = step1b PorterStemmer.step1c = step1c PorterStemmer.step2 = step2 PorterStemmer.step3 = step3 ================================================ FILE: lib/natural/stemmers/porter_stemmer_pt.js ================================================ /* Copyright (c) 2015, Luís Rodrigues Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' module.exports = (function () { const Stemmer = require('./stemmer_pt') const Token = require('./token') const PorterStemmer = new Stemmer() /** * Marks a region after the first non-vowel following a vowel, or the * null region at the end of the word if there is no such non-vowel. * * @param {Object} token Token to stem. * @param {Number} start Start index (defaults to 0). * @param {Number} Region start index. */ const markRegionN = function (start) { let index = start || 0 const length = this.string.length let region = length while (index < length - 1 && region === length) { if (this.hasVowelAtIndex(index) && !this.hasVowelAtIndex(index + 1)) { region = index + 2 } index++ } return region } /** * Mark RV. * * @param {Object} token Token to stem. * @return {Number} Region start index. */ const markRegionV = function () { let rv = this.string.length if (rv > 3) { if (!this.hasVowelAtIndex(1)) { rv = this.nextVowelIndex(2) + 1 } else if (this.hasVowelAtIndex(0) && this.hasVowelAtIndex(1)) { rv = this.nextConsonantIndex(2) + 1 } else { rv = 3 } } return rv } /** * Prelude. * * Nasalised vowel forms should be treated as a vowel followed by a consonant. * * @param {String} token Word to stem. * @return {String} Stemmed token. */ function prelude (token) { return token .replaceAll('ã', 'a~') .replaceAll('õ', 'o~') } /** * Step 1: Standard suffix removal. * * This step should always be performed. * * @param {Token} token Word to stem. * @return {Token} Stemmed token. */ function standardSuffix (token) { token.replaceSuffixInRegion([ 'amentos', 'imentos', 'aço~es', 'adoras', 'adores', 'amento', 'imento', 'aça~o', 'adora', 'ância', 'antes', 'ismos', 'istas', 'ador', 'ante', 'ável', 'ezas', 'icas', 'icos', 'ismo', 'ista', 'ível', 'osas', 'osos', 'eza', 'ica', 'ico', 'osa', 'oso' ], '', 'r2') token.replaceSuffixInRegion(['logias', 'logia'], 'log', 'r2') // token.replaceSuffixInRegion(['uço~es', 'uça~o'], 'u', 'r1'); token.replaceSuffixInRegion(['ências', 'ência'], 'ente', 'r2') token.replaceSuffixInRegion([ 'ativamente', 'icamente', 'ivamente', 'osamente', 'adamente' ], '', 'r2') token.replaceSuffixInRegion('amente', '', 'r1') token.replaceSuffixInRegion([ 'antemente', 'avelmente', 'ivelmente', 'mente' ], '', 'r2') token.replaceSuffixInRegion([ 'abilidades', 'abilidade', 'icidades', 'icidade', 'ividades', 'ividade', 'idades', 'idade' ], '', 'r2') token.replaceSuffixInRegion([ 'ativas', 'ativos', 'ativa', 'ativo', 'ivas', 'ivos', 'iva', 'ivo' ], '', 'r2') if (token.hasSuffix('eiras') || token.hasSuffix('eira')) { token.replaceSuffixInRegion(['iras', 'ira'], 'ir', 'rv') } return token } /** * Step 2: Verb suffix removal. * * Perform this step if no ending was removed in step 1. * * @param {Token} token Token to stem. * @return {Token} Stemmed token. */ function verbSuffix (token) { token.replaceSuffixInRegion([ 'aríamos', 'ássemos', 'eríamos', 'êssemos', 'iríamos', 'íssemos', 'áramos', 'aremos', 'aríeis', 'ásseis', 'ávamos', 'éramos', 'eremos', 'eríeis', 'ésseis', 'íramos', 'iremos', 'iríeis', 'ísseis', 'ara~o', 'ardes', 'areis', 'áreis', 'ariam', 'arias', 'armos', 'assem', 'asses', 'astes', 'áveis', 'era~o', 'erdes', 'ereis', 'éreis', 'eriam', 'erias', 'ermos', 'essem', 'esses', 'estes', 'íamos', 'ira~o', 'irdes', 'ireis', 'íreis', 'iriam', 'irias', 'irmos', 'issem', 'isses', 'istes', 'adas', 'ados', 'amos', 'ámos', 'ando', 'aram', 'aras', 'arás', 'arei', 'arem', 'ares', 'aria', 'asse', 'aste', 'avam', 'avas', 'emos', 'endo', 'eram', 'eras', 'erás', 'erei', 'erem', 'eres', 'eria', 'esse', 'este', 'idas', 'idos', 'íeis', 'imos', 'indo', 'iram', 'iras', 'irás', 'irei', 'irem', 'ires', 'iria', 'isse', 'iste', 'ada', 'ado', 'ais', 'ara', 'ará', 'ava', 'eis', 'era', 'erá', 'iam', 'ias', 'ida', 'ido', 'ira', 'irá', 'am', 'ar', 'as', 'ei', 'em', 'er', 'es', 'eu', 'ia', 'ir', 'is', 'iu', 'ou' ], '', 'rv') return token } /** * Step 3: Delete suffix i. * * Perform this step if the word was changed, in RV and preceded by c. * * @param {Token} token Token to stem. * @return {Token} Stemmed token. */ function iPrecededByCSuffix (token) { if (token.hasSuffix('ci')) { token.replaceSuffixInRegion('i', '', 'rv') } return token } /** * Step 4: Residual suffix. * * Perform this step if steps 1 and 2 did not alter the word. * * @param {Token} token Token to stem. * @return {Token} Stemmed token. */ function residualSuffix (token) { token.replaceSuffixInRegion(['os', 'a', 'i', 'o', 'á', 'í', 'ó'], '', 'rv') return token } /** * Step 5: Residual form. * * This step should always be performed. * * @param {Token} token Token to stem. * @return {Token} Stemmed token. */ function residualForm (token) { const tokenString = token.string if (token.hasSuffix('gue') || token.hasSuffix('gué') || token.hasSuffix('guê')) { token.replaceSuffixInRegion(['ue', 'ué', 'uê'], '', 'rv') } if (token.hasSuffix('cie') || token.hasSuffix('cié') || token.hasSuffix('ciê')) { token.replaceSuffixInRegion(['ie', 'ié', 'iê'], '', 'rv') } if (tokenString === token.string) { token.replaceSuffixInRegion(['e', 'é', 'ê'], '', 'rv') } token.replaceSuffixInRegion('ç', 'c', 'all') return token } /** * Postlude. * * Turns a~, o~ back into ã, õ. * * @param {String} token Word to stem. * @return {String} Stemmed token. */ function postlude (token) { return token .replaceAll('a~', 'ã') .replaceAll('o~', 'õ') } /** * Stems a word using a Porter stemmer algorithm. * * @param {String} word Word to stem. * @return {String} Stemmed token. */ PorterStemmer.stem = function (word) { let token = new Token(word.toLowerCase()) token = prelude(token) token.usingVowels('aeiouáéíóúâêôàãõ') .markRegion('all', 0) .markRegion('r1', null, markRegionN) .markRegion('r2', token.regions.r1, markRegionN) .markRegion('rv', null, markRegionV) const original = token.string // Always do step 1. token = standardSuffix(token) // Do step 2 if no ending was removed by step 1. if (token.string === original) { token = verbSuffix(token) } // If the last step to be obeyed — either step 1 or 2 — altered the word, // do step 3. Alternatively, if neither steps 1 nor 2 altered the word, do // step 4. token = token.string !== original ? iPrecededByCSuffix(token) : residualSuffix(token) // Always do step 5. token = residualForm(token) token = postlude(token) return token.string } return PorterStemmer })() ================================================ FILE: lib/natural/stemmers/porter_stemmer_ru.js ================================================ /* Copyright (c) 2012, Polyakov Vladimir, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Stemmer = require('./stemmer_ru') const PorterStemmer = new Stemmer() module.exports = PorterStemmer function attemptReplacePatterns (token, patterns) { let replacement = null let i = 0; let isReplaced = false while ((i < patterns.length) && !isReplaced) { if (patterns[i][0].test(token)) { replacement = token.replace(patterns[i][0], patterns[i][1]) isReplaced = true } i++ } return replacement } function perfectiveGerund (token) { const result = attemptReplacePatterns(token, [ [/[ая]в(ши|шись)$/g, ''], [/(ив|ивши|ившись|ывши|ывшись|ыв)$/g, ''] ]) return result } function adjectival (token) { let result = adjective(token) if (result != null) { const pariticipleResult = participle(result) result = pariticipleResult || result } return result } function adjective (token) { const result = attemptReplacePatterns(token, [ [/(ее|ие|ые|ое|ими|ыми|ей|ий|ый|ой|ем|им|ым|ом|его|ого|ему|ому|их|ых|ую|юю|ая|яя|ою|ею)$/g, ''] ]) return result } function participle (token) { const result = attemptReplacePatterns(token, [ [/([ая])(ем|нн|вш|ющ|щ)$/g, '$1'], [/(ивш|ывш|ующ)$/g, ''] ]) return result } function reflexive (token) { const result = attemptReplacePatterns(token, [ [/(ся|сь)$/g, ''] ]) return result } function verb (token) { const result = attemptReplacePatterns(token, [ [/([ая])(ла|на|ете|йте|ли|й|л|ем|н|ло|но|ет|ют|ны|ть|ешь|нно)$/g, '$1'], [/(ила|ыла|ена|ейте|уйте|ите|или|ыли|ей|уй|ил|ыл|им|ым|ен|ило|ыло|ено|ят|ует|ит|ыт|ены|ить|ыть|ишь|ую|ю)$/g, ''] ]) return result } function noun (token) { const result = attemptReplacePatterns(token, [ [/(а|ев|ов|ие|ье|е|иями|ями|ами|еи|ии|и|ией|ей|ой|ий|й|иям|ям|ием|ем|ам|ом|о|у|ах|иях|ях|ы|ь|ию|ью|ю|ия|ья|я)$/g, ''] ]) return result } function superlative (token) { const result = attemptReplacePatterns(token, [ [/(ейш|ейше)$/g, ''] ]) return result } function derivational (token) { const result = attemptReplacePatterns(token, [ [/(ост|ость)$/g, ''] ]) return result } // perform full stemming algorithm on a single word PorterStemmer.stem = function (token) { token = token.toLowerCase().replace(/ё/g, 'е') const volwesRegexp = /^(.*?[аеиоюяуыиэ])(.*)$/g let RV = volwesRegexp.exec(token) if (!RV || RV.length < 3) { return token } const head = RV[1] RV = RV[2] volwesRegexp.lastIndex = 0 const R2 = volwesRegexp.exec(RV) let result = perfectiveGerund(RV) if (result === null) { const resultReflexive = reflexive(RV) || RV result = adjectival(resultReflexive) if (result === null) { result = verb(resultReflexive) if (result === null) { result = noun(resultReflexive) if (result === null) { result = resultReflexive } } } } result = result.replace(/и$/g, '') let derivationalResult = result if (R2 && R2[2]) { derivationalResult = derivational(R2[2]) if (derivationalResult != null) { derivationalResult = derivational(result) } else { derivationalResult = result } } let superlativeResult = superlative(derivationalResult) || derivationalResult superlativeResult = superlativeResult.replace(/(н)н/g, '$1') superlativeResult = superlativeResult.replace(/ь$/g, '') return head + superlativeResult } ================================================ FILE: lib/natural/stemmers/porter_stemmer_sv.js ================================================ /* Copyright (c) 2017, Dogan Yazar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Stemmer = require('./stemmer_sv') // Get R1 region function getRegions (str) { const match = str.match(/[aeiouyäåö][^aeiouyäåö]([a-zåäö]+)/) let r1 = '' if (match && match[1]) { r1 = match[1] if (match.index + 2 < 3) { // Not clear why we need this! Algorithm does not describe this part! r1 = str.slice(3) } } return { r1, rest: str.slice(0, str.length - r1.length) } } function step1a (str, regions = getRegions(str)) { const r1 = regions.r1 if (!r1) { return str } const regEx = /(heterna|hetens|anden|andes|andet|arens|arnas|ernas|heten|heter|ornas|ande|ades|aren|arna|arne|aste|erna|erns|orna|ade|are|ast|ens|ern|het|ad|ar|as|at|en|er|es|or|a|e)$/ const match = r1.match(regEx) return match ? regions.rest + r1.slice(0, match.index) : str } function step1b (str, regions = getRegions(str)) { if (regions.r1 && str.match(/(b|c|d|f|g|h|j|k|l|m|n|o|p|r|t|v|y)s$/)) { return str.slice(0, -1) } return str } function step1 (str) { const regions = getRegions(str) const resA = step1a(str, regions) const resB = step1b(str, regions) return resA.length < resB.length ? resA : resB } function step2 (str, regions = getRegions(str)) { const r1 = regions.r1 if (r1 && r1.match(/(dd|gd|nn|dt|gt|kt|tt)$/)) { return str.slice(0, -1) } return str } function step3 (str, regions = getRegions(str)) { const r1 = regions.r1 if (r1) { if (r1.match(/(lös|full)t$/)) { return str.slice(0, -1) } const match = r1.match(/(lig|ig|els)$/) return match ? regions.rest + r1.slice(0, match.index) : str } return str } function stem (_str) { const str = _str.toLowerCase() return step3(step2(step1(str))) } const PorterStemmer = new Stemmer() module.exports = PorterStemmer // perform full stemming algorithm on a single word PorterStemmer.stem = stem ================================================ FILE: lib/natural/stemmers/porter_stemmer_uk.js ================================================ 'use strict' const Stemmer = require('./stemmer_uk') const PorterStemmer = new Stemmer() module.exports = PorterStemmer function attemptReplacePatterns (token, patterns) { let replacement = null let i = 0; let isReplaced = false while ((i < patterns.length) && !isReplaced) { if (patterns[i][0].test(token)) { replacement = token.replace(patterns[i][0], patterns[i][1]) isReplaced = true } i++ } return replacement } function perfectiveGerund (token) { const result = attemptReplacePatterns(token, [ [/[ая]в(ши|шись)$/g, ''], [/(ив|ивши|ившись)$/g, ''] ]) return result } function adjectival (token) { let result = adjective(token) if (result != null) { const pariticipleResult = participle(result) result = pariticipleResult || result } return result } function adjective (token) { const result = attemptReplacePatterns(token, [ [/(ими|ій|ий|а|е|ова|ове|ів|є|їй|єє|еє|я|ім|ем|им|ім|их|іх|ою|йми|іми|у|ю|ого|ому|ої)$/g, ''] ]) return result } function participle (token) { // edit const result = attemptReplacePatterns(token, [ [/(ий|ого|ому|им|ім|а|ій|у|ою|ій|і|их|йми|их)$/g, ''] ]) return result } function reflexive (token) { const result = attemptReplacePatterns(token, [ [/(с[яьи])$/g, ''] ]) return result } function verb (token) { const result = attemptReplacePatterns(token, [ [/(сь|ся|ив|ать|ять|у|ю|ав|али|учи|ячи|вши|ши|е|ме|ати|яти|є)$/g, ''] ]) return result } function noun (token) { const result = attemptReplacePatterns(token, [ [/(а|ев|ов|е|ями|ами|еи|и|ей|ой|ий|й|иям|ям|ием|ем|ам|ом|о|у|ах|иях|ях|ы|ь|ию|ью|ю|ия|ья|я|і|ові|ї|ею|єю|ою|є|еві|ем|єм|ів|їв|ю)$/g, ''] ]) return result } function superlative (token) { const result = attemptReplacePatterns(token, [ [/(ейш|ейше)$/g, ''] ]) return result } function derivational (token) { const result = attemptReplacePatterns(token, [ [/[^аеиоуюяіїє][аеиоуюяіїє]+[^аеиоуюяіїє]+[аеиоуюяіїє].*(?<=о)сть?$/g, ''] ]) return result } // perform full stemming algorithm on a single word PorterStemmer.stem = function (token) { token = token.toLowerCase() const volwesRegexp = /^(.*?[аеиоуюяіїє])(.*)$/g let RV = volwesRegexp.exec(token) if (!RV || RV.length < 3) { return token } const head = RV[1] RV = RV[2] volwesRegexp.lastIndex = 0 const R2 = volwesRegexp.exec(RV) let result = perfectiveGerund(RV) if (result === null) { const resultReflexive = reflexive(RV) || RV result = adjectival(resultReflexive) if (result === null) { result = verb(resultReflexive) if (result === null) { result = noun(resultReflexive) if (result === null) { result = resultReflexive } } } } result = result.replace(/и$/g, '') let derivationalResult = result if (R2 && R2[2]) { derivationalResult = derivational(R2[2]) if (derivationalResult != null) { derivationalResult = derivational(result) } else { derivationalResult = result } } let superlativeResult = superlative(derivationalResult) || derivationalResult superlativeResult = superlativeResult.replace(/(н)н/g, '$1') superlativeResult = superlativeResult.replace(/ь$/g, '') return head + superlativeResult } ================================================ FILE: lib/natural/stemmers/stemmer.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const stopwords = require('../util/stopwords') const Tokenizer = require('../tokenizers/aggressive_tokenizer') module.exports = function () { const stemmer = this stemmer.stem = function (token) { return token } stemmer.addStopWord = function (stopWord) { stopwords.words.push(stopWord) } stemmer.addStopWords = function (moreStopWords) { stopwords.words = stopwords.words.concat(moreStopWords) } stemmer.removeStopWord = function (stopWord) { this.removeStopWords([stopWord]) } stemmer.removeStopWords = function (moreStopWords) { moreStopWords.forEach(function (stopWord) { const idx = stopwords.words.indexOf(stopWord) if (idx >= 0) { stopwords.words.splice(idx, 1) } }) } stemmer.tokenizeAndStem = function (text, keepStops) { const stemmedTokens = [] const lowercaseText = text.toLowerCase() const tokens = new Tokenizer().tokenize(lowercaseText) if (keepStops) { tokens.forEach(function (token) { stemmedTokens.push(stemmer.stem(token)) }) } else { tokens.forEach(function (token) { if (stopwords.words.indexOf(token) === -1) { stemmedTokens.push(stemmer.stem(token)) } }) } return stemmedTokens } /* stemmer.attach = function () { String.prototype.stem = function () { return stemmer.stem(this) } String.prototype.tokenizeAndStem = function (keepStops) { return stemmer.tokenizeAndStem(this, keepStops) } } */ } ================================================ FILE: lib/natural/stemmers/stemmer_de.js ================================================ /* Copyright (c) 2023, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const stopwords = require('stopwords-iso') const englishStopWords = stopwords.de const Tokenizer = require('../tokenizers/aggressive_tokenizer_de') class Stemmer { stem (token) { return token } tokenizeAndStem (text, keepStops) { const stemmedTokens = [] const that = this new Tokenizer().tokenize(text).forEach(function (token) { if (keepStops || englishStopWords.indexOf(token) === -1) { let resultToken = token.toLowerCase() // if (resultToken.match(new RegExp('[a-záéíóúüñ0-9]+', 'gi'))) { if (resultToken.match(/[a-záéíóúüñ0-9]+/gi)) { resultToken = that.stem(resultToken) } stemmedTokens.push(resultToken) } }) return stemmedTokens } } module.exports = Stemmer ================================================ FILE: lib/natural/stemmers/stemmer_es.js ================================================ /* Copyright (c) 2012, 2018 David Przybilla, Chris Umbel, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const stopwords = require('../util/stopwords_es') const Tokenizer = require('../tokenizers/aggressive_tokenizer_es') class Stemmer { stem (token) { return token } tokenizeAndStem (text, keepStops) { const stemmedTokens = [] const that = this new Tokenizer().tokenize(text).forEach(function (token) { if (keepStops || stopwords.words.indexOf(token) === -1) { let resultToken = token.toLowerCase() // if (resultToken.match(new RegExp('[a-záéíóúüñ0-9]+', 'gi'))) { if (resultToken.match(/[a-záéíóúüñ0-9]+/gi)) { resultToken = that.stem(resultToken) } stemmedTokens.push(resultToken) } }) return stemmedTokens } /* attach () { const that = this String.prototype.stem = function () { return that.stem(this) } String.prototype.tokenizeAndStem = function (keepStops) { return that.tokenizeAndStem(this, keepStops) } } */ } module.exports = Stemmer ================================================ FILE: lib/natural/stemmers/stemmer_fa.js ================================================ /* Copyright (c) 2011, Chris Umbel Farsi Stemmer by Fardin Koochaki Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const stopwords = require('../util/stopwords_fa') const Tokenizer = require('../tokenizers/aggressive_tokenizer_fa') module.exports = function () { const stemmer = this stemmer.stem = function (token) { return token } stemmer.tokenizeAndStem = function (text, keepStops) { const stemmedTokens = [] new Tokenizer().tokenize(text).forEach(function (token) { if (keepStops || stopwords.words.indexOf(token) === -1) { stemmedTokens.push(stemmer.stem(token)) } }) return stemmedTokens } /* stemmer.attach = function () { String.prototype.stem = function () { return stemmer.stem(this) } String.prototype.tokenizeAndStem = function (keepStops) { return stemmer.tokenizeAndStem(this, keepStops) } } */ } ================================================ FILE: lib/natural/stemmers/stemmer_fr.js ================================================ /* Copyright (c) 2014, Ismaël Héry Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const stopwords = require('../util/stopwords_fr') const Tokenizer = require('../tokenizers/aggressive_tokenizer_fr') module.exports = function () { const stemmer = this stemmer.stem = function (token) { return token } stemmer.tokenizeAndStem = function (text, keepStops) { const stemmedTokens = [] new Tokenizer().tokenize(text).forEach(function (token) { let resultToken = token.toLowerCase() if (keepStops || stopwords.words.indexOf(resultToken) === -1) { // var resultToken = token.toLowerCase(); if (resultToken.match(/[a-zâàëéêèïîôûùç0-9]/gi)) { resultToken = stemmer.stem(resultToken) } stemmedTokens.push(resultToken) } }) return stemmedTokens } /* stemmer.attach = function () { String.prototype.stem = function () { return stemmer.stem(this) } String.prototype.tokenizeAndStem = function (keepStops) { return stemmer.tokenizeAndStem(this, keepStops) } } */ } ================================================ FILE: lib/natural/stemmers/stemmer_it.js ================================================ /* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const stopwords = require('../util/stopwords_it') const Tokenizer = require('../tokenizers/aggressive_tokenizer_it') module.exports = function () { const stemmer = this stemmer.stem = function (token) { return token } stemmer.tokenizeAndStem = function (text, keepStops) { const stemmedTokens = [] new Tokenizer().tokenize(text).forEach(function (token) { if (keepStops || stopwords.words.indexOf(token) === -1) { let resultToken = token.toLowerCase() if (resultToken.match(/[a-zàèìòù0-9]/gi)) { resultToken = stemmer.stem(resultToken) } stemmedTokens.push(resultToken) } }) return stemmedTokens } /* stemmer.attach = function () { String.prototype.stem = function () { return stemmer.stem(this) } String.prototype.tokenizeAndStem = function (keepStops) { return stemmer.tokenizeAndStem(this, keepStops) } } */ } ================================================ FILE: lib/natural/stemmers/stemmer_ja.js ================================================ /* Copyright (c) 2012, Guillaume Marty Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' /** * A very basic stemmer that performs the following steps: * * Stem katakana. * Inspired by: * http://svn.apache.org/repos/asf/lucene/dev/trunk/lucene/analysis/kuromoji/src/java/org/apache/lucene/analysis/ja/JapaneseKatakanaStemFilter.java * * This script assumes input is normalized using normalizer_ja(). * * \@todo Use .bind() in StemmerJa.prototype.attach(). */ const Tokenizer = require('../tokenizers/tokenizer_ja') const stopwords = require('../util/stopwords_ja').words /** * @constructor */ const StemmerJa = function () { } /** * Tokenize and stem a text. * Stop words are excluded except if the second argument is true. * * @param {string} text * @param {boolean} keepStops Whether to keep stop words from the output or not. * @return {Array.} */ StemmerJa.prototype.tokenizeAndStem = function (text, keepStops) { const self = this const stemmedTokens = [] const tokens = new Tokenizer().tokenize(text) // This is probably faster than an if at each iteration. if (keepStops) { tokens.forEach(function (token) { let resultToken = token.toLowerCase() resultToken = self.stem(resultToken) stemmedTokens.push(resultToken) }) } else { tokens.forEach(function (token) { if (stopwords.indexOf(token) === -1) { let resultToken = token.toLowerCase() resultToken = self.stem(resultToken) stemmedTokens.push(resultToken) } }) } return stemmedTokens } /** * Stem a term. * * @param {string} token * @return {string} */ StemmerJa.prototype.stem = function (token) { token = this.stemKatakana(token) return token } /** * Remove the final prolonged sound mark on katakana if length is superior to * a threshold. * * @param {string} token A katakana string to stem. * @return {string} A katakana string stemmed. */ StemmerJa.prototype.stemKatakana = function (token) { const HIRAGANA_KATAKANA_PROLONGED_SOUND_MARK = 'ー' const DEFAULT_MINIMUM_LENGTH = 4 if (token.length >= DEFAULT_MINIMUM_LENGTH && token.slice(-1) === HIRAGANA_KATAKANA_PROLONGED_SOUND_MARK && this.isKatakana(token)) { token = token.slice(0, token.length - 1) } return token } /** * Is a string made of fullwidth katakana only? * This implementation is the fastest I know: * http://jsperf.com/string-contain-katakana-only/2 * * @param {string} str A string. * @return {boolean} True if the string has katakana only. */ StemmerJa.prototype.isKatakana = function (str) { return !!str.match(/^[゠-ヿ]+$/) } /* // Expose an attach function that will patch String with new methods. StemmerJa.prototype.attach = function () { const self = this String.prototype.stem = function () { return self.stem(this) } String.prototype.tokenizeAndStem = function (keepStops) { return self.tokenizeAndStem(this, keepStops) } } */ module.exports = new StemmerJa() ================================================ FILE: lib/natural/stemmers/stemmer_nl.js ================================================ /* Copyright (c) 2018 Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const stopwords = require('../util/stopwords_nl') const Tokenizer = require('../tokenizers/aggressive_tokenizer_nl') class Stemmer { stem (token) { return token }; tokenizeAndStem (text, keepStops) { const stemmedTokens = [] const that = this new Tokenizer().tokenize(text).forEach(function (token) { if (keepStops || stopwords.words.indexOf(token) === -1) { let resultToken = token.toLowerCase() // if (resultToken.match(new RegExp('[a-zäëïöüáéíóúè0-9]+', 'gi'))) { if (resultToken.match(/[a-zäëïöüáéíóúè0-9]+/gi)) { resultToken = that.stem(resultToken) } stemmedTokens.push(resultToken) } }) return stemmedTokens }; /* attach () { const that = this String.prototype.stem = function () { return that.stem(this) } String.prototype.tokenizeAndStem = function (keepStops) { return that.tokenizeAndStem(this, keepStops) } } */ } module.exports = Stemmer ================================================ FILE: lib/natural/stemmers/stemmer_no.js ================================================ /* Copyright (c) 2014, Kristoffer Brabrand Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const stopwords = require('../util/stopwords_no') const Tokenizer = require('../tokenizers/aggressive_tokenizer_no') module.exports = function () { const stemmer = this stemmer.stem = function (token) { return token } stemmer.addStopWord = function (stopWord) { stopwords.words.push(stopWord) } stemmer.addStopWords = function (moreStopWords) { stopwords.words = stopwords.words.concat(moreStopWords) } stemmer.tokenizeAndStem = function (text, keepStops) { const stemmedTokens = [] new Tokenizer().tokenize(text).forEach(function (token) { if (keepStops || stopwords.words.indexOf(token.toLowerCase()) === -1) { stemmedTokens.push(stemmer.stem(token)) } }) return stemmedTokens } /* stemmer.attach = function () { String.prototype.stem = function () { return stemmer.stem(this) } String.prototype.tokenizeAndStem = function (keepStops) { return stemmer.tokenizeAndStem(this, keepStops) } } */ } ================================================ FILE: lib/natural/stemmers/stemmer_pl.js ================================================ /* Copyright (c) 2013, Paweł Łaskarzewski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const stopwords = require('../util/stopwords_pl') const Tokenizer = require('../tokenizers/aggressive_tokenizer_pl') module.exports = function () { const stemmer = this stemmer.stem = function (token) { return token } stemmer.tokenizeAndStem = function (text, keepStops) { const stemmedTokens = [] new Tokenizer().tokenize(text).forEach(function (token) { if (keepStops || stopwords.words.indexOf(token) === -1) { let resultToken = token.toLowerCase() // if (resultToken.match(new RegExp('[a-zążśźęćńół0-9]+', 'gi'))) { if (resultToken.match(/'[a-zążśźęćńół0-9]+/gi)) { resultToken = stemmer.stem(resultToken) } stemmedTokens.push(resultToken) } }) return stemmedTokens } /* stemmer.attach = function () { String.prototype.stem = function () { return stemmer.stem(this) } String.prototype.tokenizeAndStem = function (keepStops) { return stemmer.tokenizeAndStem(this, keepStops) } } */ } ================================================ FILE: lib/natural/stemmers/stemmer_pt.js ================================================ /* Copyright (c) 2014, Ismaël Héry Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' module.exports = function () { const Stemmer = this const stopwords = require('../util/stopwords_pt') const Tokenizer = require('../tokenizers/aggressive_tokenizer_pt') Stemmer.stem = function (token) { return token } Stemmer.addStopWords = function (word) { stopwords.words.push(word) } Stemmer.addStopWords = function (words) { stopwords.words = stopwords.words.concat(words) } Stemmer.tokenizeAndStem = function (text, keepStops) { const stemmedTokens = [] const tokenStemmer = function (token) { if (keepStops || stopwords.words.indexOf(token.toLowerCase()) === -1) { stemmedTokens.push(Stemmer.stem(token)) } } new Tokenizer().tokenize(text).forEach(tokenStemmer) return stemmedTokens } /* Stemmer.attach = function () { String.prototype.stem = function () { return Stemmer.stem(this) } String.prototype.tokenizeAndStem = function (keepStops) { return Stemmer.tokenizeAndStem(this, keepStops) } } */ } ================================================ FILE: lib/natural/stemmers/stemmer_ru.js ================================================ /* Copyright (c) 2012, Polyakov Vladimir, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const stopwords = require('../util/stopwords_ru') const Tokenizer = require('../tokenizers/aggressive_tokenizer_ru') module.exports = function () { const stemmer = this stemmer.stem = function (token) { return token } stemmer.tokenizeAndStem = function (text, keepStops) { const stemmedTokens = [] new Tokenizer().tokenize(text).forEach(function (token) { if (keepStops || stopwords.words.indexOf(token) === -1) { let resultToken = token.toLowerCase() // if (resultToken.match(new RegExp('[а-яё0-9]+', 'gi'))) { if (resultToken.match(/[а-яё0-9]+/gi)) { resultToken = stemmer.stem(resultToken) } stemmedTokens.push(resultToken) } }) return stemmedTokens } /* stemmer.attach = function () { String.prototype.stem = function () { return stemmer.stem(this) } String.prototype.tokenizeAndStem = function (keepStops) { return stemmer.tokenizeAndStem(this, keepStops) } } */ } ================================================ FILE: lib/natural/stemmers/stemmer_sv.js ================================================ /* Copyright (c) 2017, Dogan Yazar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const stopwords = require('../util/stopwords_sv') const Tokenizer = require('../tokenizers/aggressive_tokenizer_sv') module.exports = function () { const stemmer = this stemmer.stem = function (token) { return token } stemmer.addStopWord = function (stopWord) { stopwords.words.push(stopWord) } stemmer.addStopWords = function (moreStopWords) { stopwords.words = stopwords.words.concat(moreStopWords) } stemmer.tokenizeAndStem = function (text, keepStops) { const stemmedTokens = [] new Tokenizer().tokenize(text).forEach(function (token) { if (keepStops || stopwords.words.indexOf(token.toLowerCase()) === -1) { stemmedTokens.push(stemmer.stem(token)) } }) return stemmedTokens } /* stemmer.attach = function () { String.prototype.stem = function () { return stemmer.stem(this) } String.prototype.tokenizeAndStem = function (keepStops) { return stemmer.tokenizeAndStem(this, keepStops) } } */ } ================================================ FILE: lib/natural/stemmers/stemmer_uk.js ================================================ 'use strict' const stopwords = require('../util/stopwords_uk') const Tokenizer = require('../tokenizers/aggressive_tokenizer_uk') module.exports = function () { const stemmer = this stemmer.stem = function (token) { return token } stemmer.tokenizeAndStem = function (text, keepStops) { const stemmedTokens = [] new Tokenizer().tokenize(text).forEach(function (token) { if (keepStops || stopwords.words.indexOf(token) === -1) { let resultToken = token.toLowerCase() if (resultToken.match(/[а-яґєії0-9]+/gi)) { resultToken = stemmer.stem(resultToken) } stemmedTokens.push(resultToken) } }) return stemmedTokens } } ================================================ FILE: lib/natural/stemmers/token.js ================================================ /* Copyright (c) 2015, Luís Rodrigues Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' /** * Stemmer token constructor. * * @param {String} string Token string. */ function Token (string) { this.vowels = '' this.regions = {} this.string = string this.original = string } /** * Set vowels. * * @param {String|Array} vowels List of vowels. * @return {Token} Token instance. */ Token.prototype.usingVowels = function (vowels) { this.vowels = vowels return this } /** * Marks a region by defining its starting index or providing a callback * function that does. * * @param {String} region Region name. * @param {Array|Number} args Callback arguments or region start index. * @param {Function} callback Function that determines the start index (optional). * @param {Object} context Callback context (optional, defaults to this). * @return {Token} Token instance. */ Token.prototype.markRegion = function (region, args, callback, context) { if (typeof callback === 'function') { // this.regions[region] = callback.apply(context || this, [].concat(args)) this.regions[region] = callback.apply(context || this, [].concat(args)) } else if (!isNaN(args)) { this.regions[region] = args } return this } /** * Replaces all instances of a string with another. * * @param {String} find String to be replaced. * @param {String} replace Replacement string. * @return {Token} Token instance. */ Token.prototype.replaceAll = function (find, replace) { this.string = this.string.split(find).join(replace) return this } /** * Replaces the token suffix if in a region. * * @param {String} suffix Suffix to replace. * @param {String} replace Replacement string. * @param {String} region Region name. * @return {Token} Token instance. */ Token.prototype.replaceSuffixInRegion = function (suffix, replace, region) { const suffixes = [].concat(suffix) for (let i = 0; i < suffixes.length; i++) { if (this.hasSuffixInRegion(suffixes[i], region)) { this.string = this.string.slice(0, -suffixes[i].length) + replace return this } } return this } /** * Determines whether the token has a vowel at the provided index. * * @param {Integer} index Character index. * @return {Boolean} Whether the token has a vowel at the provided index. */ Token.prototype.hasVowelAtIndex = function (index) { return this.vowels.indexOf(this.string[index]) !== -1 } /** * Finds the next vowel in the token. * * @param {Integer} start Starting index offset. * @return {Integer} Vowel index, or the end of the string. */ Token.prototype.nextVowelIndex = function (start) { let index = (start >= 0 && start < this.string.length) ? start : this.string.length while (index < this.string.length && !this.hasVowelAtIndex(index)) { index++ } return index } /** * Finds the next consonant in the token. * * @param {Integer} start Starting index offset. * @return {Integer} Consonant index, or the end of the string. */ Token.prototype.nextConsonantIndex = function (start) { let index = (start >= 0 && start < this.string.length) ? start : this.string.length while (index < this.string.length && this.hasVowelAtIndex(index)) { index++ } return index } /** * Determines whether the token has the provided suffix. * @param {String} suffix Suffix to match. * @return {Boolean} Whether the token string ends in suffix. */ Token.prototype.hasSuffix = function (suffix) { return this.string.slice(-suffix.length) === suffix } /** * Determines whether the token has the provided suffix within the specified * region. * * @param {String} suffix Suffix to match. * @param {String} region Region name. * @return {Boolean} Whether the token string ends in suffix. */ Token.prototype.hasSuffixInRegion = function (suffix, region) { const regionStart = this.regions[region] || 0 const suffixStart = this.string.length - suffix.length return this.hasSuffix(suffix) && suffixStart >= regionStart } module.exports = Token ================================================ FILE: lib/natural/tfidf/index.d.ts ================================================ /* Copyright (c) 2022, Dylan R. E. Moonfire , Emily Marigold Klassen , Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import type { Tokenizer } from '../tokenizers' declare type TfIdfCallback = (i: number, measure: number, key?: string | Record) => void declare interface TfIdfTerm { term: string tf: number idf: number tfidf: number } declare type TfIdfDocument = Record export class TfIdf { documents: TfIdfDocument[] _idfCache: Record constructor (deserialized?: Record) idf (term: string, force?: boolean): number addDocument (document: string | string[] | Record, key?: Record | any, restoreCache?: boolean): void removeDocument (key: any): boolean addFileSync (path: string, encoding?: string, key?: string, restoreCache?: boolean): void tfidf (terms: string | string[], d: number): number tfidfs (terms: string | string[], callback?: TfIdfCallback): number[] listTerms (d: number): TfIdfTerm[] setTokenizer (t: Tokenizer): void setStopwords (customStopwords: string[]): boolean static tf (term: string, document: TfIdfDocument): number } ================================================ FILE: lib/natural/tfidf/index.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' exports.TfIdf = require('./tfidf') ================================================ FILE: lib/natural/tfidf/tfidf.js ================================================ /* Copyright (c) 2011, Rob Ellis, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ const _ = require('underscore') const Tokenizer = require('../tokenizers/regexp_tokenizer').WordTokenizer let tokenizer = new Tokenizer() let stopwords = require('../util/stopwords').words const fs = require('fs') // Returns a frequency map of word to frequency // Key is the document key and stored in the map that is returned as __keys function buildDocument (text, key) { let stopOut if (typeof text === 'string') { text = tokenizer.tokenize(text.toLowerCase()) stopOut = true } else if (!_.isArray(text)) { stopOut = false return text } return text.reduce(function (document, term) { // next line solves https://github.com/NaturalNode/natural/issues/119 if (typeof document[term] === 'function') { document[term] = 0 } if (!stopOut || stopwords.indexOf(term) < 0) { document[term] = (document[term] ? document[term] + 1 : 1) } return document }, { __key: key }) } function documentHasTerm (term, document) { return document[term] && document[term] > 0 } // backwards compatibility for < node 0.10 function isEncoding (encoding) { if (typeof Buffer.isEncoding !== 'undefined') { return Buffer.isEncoding(encoding) } switch ((encoding + '').toLowerCase()) { case 'hex': case 'utf8': case 'utf-8': case 'ascii': case 'binary': case 'base64': case 'ucs2': case 'ucs-2': case 'utf16le': case 'utf-16le': case 'raw': return true } return false } class TfIdf { constructor (deserialized) { if (deserialized) { this.documents = deserialized.documents } else { this.documents = [] } this._idfCache = {} } static tf (term, document) { return document[term] ? document[term] : 0 } // Returns the inverse document frequency of the term // If force is true the cache will be invalidated and recomputed idf (term, force) { // Lookup the term in the New term-IDF caching, // this will cut search times down exponentially on large document sets. // if (this._idfCache[term] && this._idfCache.hasOwnProperty(term) && force !== true) { return this._idfCache[term] } if (this._idfCache[term] && force !== true) { return this._idfCache[term] } // Count the number of documents that contain the term const docsWithTerm = this.documents.reduce(function (count, document) { return count + (documentHasTerm(term, document) ? 1 : 0) }, 0) // Compute the inverse document frequency const idf = 1 + Math.log((this.documents.length) / (1 + docsWithTerm)) // Add the idf to the term cache and return it this._idfCache[term] = idf return idf } // If restoreCache is set to true, all terms idf scores currently cached will be recomputed. // Otherwise, the cache will just be wiped clean addDocument (document, key, restoreCache) { this.documents.push(buildDocument(document, key)) // make sure the cache is invalidated when new documents arrive if (restoreCache === true) { for (const term in this._idfCache) { // invoking idf with the force option set will // force a recomputation of the idf, and it will // automatically refresh the cache value. this.idf(term, true) } } else { // this._idfCache = {} // so that we do not have trouble with terms that match property names this._idfCache = Object.create(null) } } // Remove a document from the corpus // Returns true if the document was found // Returns false if the document was not found removeDocument (key) { // Find the document const index = this.documents.findIndex(function (document) { return document.__key === key }) // If found, remove it if (index > -1) { this.documents.splice(index, 1) // Invalidate the cache this._idfCache = Object.create(null) return true } return false } // If restoreCache is set to true, all terms idf scores currently cached will be recomputed. // Otherwise, the cache will just be wiped clean addFileSync (path, encoding, key, restoreCache) { if (!encoding) { encoding = 'utf8' } if (!isEncoding(encoding)) { throw new Error('Invalid encoding: ' + encoding) } const document = fs.readFileSync(path, encoding) this.documents.push(buildDocument(document, key)) // make sure the cache is invalidated when new documents arrive if (restoreCache === true) { for (const term in this._idfCache) { // invoking idf with the force option set will // force a recomputation of the idf, and it will // automatically refresh the cache value. this.idf(term, true) } } else { this._idfCache = {} } } tfidf (terms, d) { const _this = this if (!_.isArray(terms)) { terms = tokenizer.tokenize(terms.toString().toLowerCase()) } return terms.reduce(function (value, term) { let idf = _this.idf(term) idf = idf === Infinity ? 0 : idf return value + (TfIdf.tf(term, _this.documents[d]) * idf) }, 0.0) } listTerms (d) { const terms = [] const _this = this for (const term in this.documents[d]) { if (this.documents[d]) { if (term !== '__key') { terms.push({ term, tf: TfIdf.tf(term, _this.documents[d]), idf: _this.idf(term), tfidf: _this.tfidf([term], d) }) } } } return terms.sort(function (x, y) { return y.tfidf - x.tfidf }) } tfidfs (terms, callback) { const tfidfs = new Array(this.documents.length) for (let i = 0; i < this.documents.length; i++) { tfidfs[i] = this.tfidf(terms, i) if (callback) { callback(i, tfidfs[i], this.documents[i].__key) } } return tfidfs } // Define a tokenizer other than the default "WordTokenizer" setTokenizer (t) { if (!_.isFunction(t.tokenize)) { throw new Error('Expected a valid Tokenizer') } tokenizer = t } // Define a stopwords other than the default setStopwords (customStopwords) { if (!Array.isArray(customStopwords)) { return false } let wrongElement = false customStopwords.forEach(stopword => { if ((typeof stopword) !== 'string') { wrongElement = true } }) if (wrongElement) { return false } stopwords = customStopwords return true } } module.exports = TfIdf ================================================ FILE: lib/natural/tokenizers/aggressive_tokenizer.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Tokenizer = require('./tokenizer') class AggressiveTokenizer extends Tokenizer { tokenize (text) { // break a string up into an array of tokens by anything non-word // underscore is considered to be non word character // Old splitter: // return this.trim(text.split(/[\W|_]+/)) // New splitter: // Explicitly mentions which characters make up words. // So words may contain hyphen -, single quote ' and slash / return this.trim(text.split(/[^a-zA-Z0-9'\-/]+/)) } } module.exports = AggressiveTokenizer ================================================ FILE: lib/natural/tokenizers/aggressive_tokenizer_de.js ================================================ /* Copyright (c) 2011, Chris Umbel, Martijn de Boer Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Tokenizer = require('./tokenizer') class AggressiveTokenizer extends Tokenizer { tokenize (text) { // break a string up into an array of tokens by anything non-word return this.trim(text.split(/[^a-zA-Z0-9ßäöü_'-]+/)) } } module.exports = AggressiveTokenizer ================================================ FILE: lib/natural/tokenizers/aggressive_tokenizer_es.js ================================================ /* Copyright (c) 2011, Chris Umbel,David Przybilla Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Tokenizer = require('./tokenizer') class AggressiveTokenizer extends Tokenizer { tokenize (text) { // break a string up into an array of tokens by anything non-word return this.trim(text.split(/[^a-zA-Zá-úÁ-ÚñÑüÜ]+/)) } } module.exports = AggressiveTokenizer ================================================ FILE: lib/natural/tokenizers/aggressive_tokenizer_fa.js ================================================ /* Copyright (c) 2011, Chris Umbel Farsi Aggressive Tokenizer by Fardin Koochaki Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Tokenizer = require('./tokenizer') class AggressiveTokenizer extends Tokenizer { clearEmptyString (array) { return array.filter(function (a) { return a !== '' }) } clearText (text) { return text.replace(/.:\+-=\(\)"'!\?،,؛;/g, ' ') } tokenize (text) { // break a string up into an array of tokens by anything non-word text = this.clearText(text) return this.clearEmptyString(text.split(/\s+/)) } } module.exports = AggressiveTokenizer ================================================ FILE: lib/natural/tokenizers/aggressive_tokenizer_fr.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Tokenizer = require('./tokenizer') class AggressiveTokenizer extends Tokenizer { tokenize (text) { // break a string up into an array of tokens by anything non-word return this.trim(text.split(/[^a-z0-9äâàéèëêïîöôùüûœç-]+/i)) } } module.exports = AggressiveTokenizer ================================================ FILE: lib/natural/tokenizers/aggressive_tokenizer_hi.js ================================================ /* file aggressive_tokenizer_hi.js , located at lib\natural\tokenizers\aggressive_tokenizer_hi.js is licensed as follows: - (The MIT License) - Copyright (c) 2023 Mukesh Singh Bisht Permission is hereby granted, free of charge, to any person or entity obtaining a copy of file aggressive_tokenizer_hi.js and its content(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: 1. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 2. Proper credit must be given to the original author Mukesh Singh Bisht, along with the date of authorship specified as July 23, 2023, in any usage, distribution, or modification of the Software. THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Tokenizer = require('./tokenizer') /* To know more on hindi Important links: 1.https://viahindi.in/hindi-vyakaran/%E0%A4%B8%E0%A4%AE%E0%A4%BE%E0%A4%B8-samas-in-hindi 2.https://hindigrammar.in/ 3.https://www.unicode.org/charts/PDF/U0900.pdf */ class AggressiveTokenizer extends Tokenizer { tokenize (text) { const response = this.trim(text.replace(/[\u0964\u0965...?,]/g, '').split(/\s+|(?![\u0900-\u097F\u0020-\u007F])./u)).filter(Boolean) return response } } module.exports = AggressiveTokenizer ================================================ FILE: lib/natural/tokenizers/aggressive_tokenizer_id.js ================================================ /* Copyright (c) 2017, Alif Bhaskoro, Andy Librian, R. Kukuh (Reimplemented from https://github.com/sastrawi/sastrawi) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Tokenizer = require('./tokenizer') class AggressiveTokenizer extends Tokenizer { // Remove all non alphanumeric characters except '-' // Replace more than one space character to ' ' normalizeText (text) { const result = text.replace(/[^a-z0-9 -]/g, ' ').replace(/( +)/g, ' ') return result } tokenize (text) { // break a string up into an array of tokens by space text = this.normalizeText(text) return this.trim(text.split(' ')) } } module.exports = AggressiveTokenizer ================================================ FILE: lib/natural/tokenizers/aggressive_tokenizer_it.js ================================================ /* Copyright (c) 2011, Chris Umbel,David Przybilla Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Tokenizer = require('./tokenizer') class AggressiveTokenizer extends Tokenizer { tokenize (text) { // break a string up into an array of tokens by anything non-word return this.trim(text.split(/\W+/)) } } module.exports = AggressiveTokenizer ================================================ FILE: lib/natural/tokenizers/aggressive_tokenizer_nl.js ================================================ /* Copyright (c) 2011, Chris Umbel, Martijn de Boer Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Tokenizer = require('./tokenizer') class AggressiveTokenizer extends Tokenizer { tokenize (text) { // break a string up into an array of tokens by anything non-word return this.trim(text.split(/[^a-zA-Z0-9_'-]+/)) } } module.exports = AggressiveTokenizer ================================================ FILE: lib/natural/tokenizers/aggressive_tokenizer_no.js ================================================ /* Copyright (c) 2014, Kristoffer Brabrand Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Tokenizer = require('./tokenizer') const normalizer = require('../normalizers/normalizer_no') class AggressiveTokenizer extends Tokenizer { tokenize (text) { text = normalizer.removeDiacritics(text) // break a string up into an array of tokens by anything non-word return this.trim(text.split(/[^A-Za-z0-9_æøåÆØÅäÄöÖüÜ]+/)) } } module.exports = AggressiveTokenizer ================================================ FILE: lib/natural/tokenizers/aggressive_tokenizer_pl.js ================================================ /* Copyright (c) 2013, Paweł Łaskarzewski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Tokenizer = require('./tokenizer') class AggressiveTokenizer extends Tokenizer { withoutEmpty (array) { return array.filter(function (a) { return a }) } clearText (text) { return text.replace(/[^a-zążśźęćńół0-9]/gi, ' ').replace(/[\s\n]+/g, ' ').trim() } tokenize (text) { // break a string up into an array of tokens by anything non-word return this.withoutEmpty(this.clearText(text).split(' ')) } } module.exports = AggressiveTokenizer ================================================ FILE: lib/natural/tokenizers/aggressive_tokenizer_pt.js ================================================ /* Copyright (c) 2011, Chris Umbel,David Przybilla Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Tokenizer = require('./tokenizer') class AggressiveTokenizer extends Tokenizer { withoutEmpty (array) { return array.filter(function (a) { return a }) } tokenize (text) { // break a string up into an array of tokens by anything non-word return this.withoutEmpty(this.trim(text.split(/[^a-zA-Zà-úÀ-Ú]/))) } } module.exports = AggressiveTokenizer ================================================ FILE: lib/natural/tokenizers/aggressive_tokenizer_ru.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Tokenizer = require('./tokenizer') class AggressiveTokenizer extends Tokenizer { withoutEmpty (array) { return array.filter(function (a) { return a }) } clearText (text) { return text.replace(/[^a-zа-яё0-9]/gi, ' ').replace(/[\s\n]+/g, ' ').trim() } tokenize (text) { // break a string up into an array of tokens by anything non-word return this.withoutEmpty(this.clearText(text).split(' ')) } } module.exports = AggressiveTokenizer ================================================ FILE: lib/natural/tokenizers/aggressive_tokenizer_sv.js ================================================ /* Copyright (c) 2017, Dogan Yazar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Tokenizer = require('./tokenizer') const normalizer = require('../normalizers/normalizer_sv') class AggressiveTokenizer extends Tokenizer { tokenize (text) { text = normalizer.removeDiacritics(text) // break a string up into an array of tokens by anything non-word // Ü is not part of swedish alphabet but there are words using it like müsli and München return this.trim(text.split(/[^A-Za-z0-9_åÅäÄöÖüÜ-]+/)) } } module.exports = AggressiveTokenizer ================================================ FILE: lib/natural/tokenizers/aggressive_tokenizer_uk.js ================================================ /* Copyright (c) 2023, Pluto Rotegott Tokenizer for Ukrainian Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Tokenizer = require('./tokenizer') class AggressiveTokenizer extends Tokenizer { withoutEmpty (array) { return array.filter(function (a) { return a }) } clearText (text) { return text.replace(/[^a-zа-яґєії0-9]/gi, ' ').replace(/[\s\n]+/g, ' ').trim() } tokenize (text) { // break a string up into an array of tokens by anything non-word return this.withoutEmpty(this.clearText(text).split(' ')) } } module.exports = AggressiveTokenizer ================================================ FILE: lib/natural/tokenizers/aggressive_tokenizer_vi.js ================================================ /* Copyright (c) 2018, Javis1205 (Github account name) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Tokenizer = require('./tokenizer') class AggressiveTokenizer extends Tokenizer { // break a string up into an array of tokens by anything non-word tokenize (text) { return this.trim(text.split(/[^a-z0-9àáảãạăắằẳẵặâấầẩẫậéèẻẽẹêếềểễệíìỉĩịóòỏõọôốồổỗộơớờởỡợúùủũụưứừửữựýỳỷỹỵđ]+/i)) } } module.exports = AggressiveTokenizer ================================================ FILE: lib/natural/tokenizers/index.d.ts ================================================ /* Copyright (c) 2022, Dylan R. E. Moonfire , Emily Marigold Klassen , Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ declare class Tokenizer { trim: (array: string[]) => string[] } export class AggressiveTokenizerNl extends Tokenizer { tokenize (text: string): string[] } export class AggressiveTokenizerFa extends Tokenizer { clearEmptyString (array: string[]): string[] clearText (text: string): string tokenize (text: string): string[] } export class AggressiveTokenizerFr extends Tokenizer { tokenize (text: string): string[] } export class AggressiveTokenizerDe extends Tokenizer { tokenize (text: string): string[] } export class AggressiveTokenizerRu extends Tokenizer { withoutEmpty (array: string[]): string[] clearText (text: string): string tokenize (text: string): string[] } export class AggressiveTokenizerEs extends Tokenizer { tokenize (text: string): string[] } export class AggressiveTokenizerIt extends Tokenizer { tokenize (text: string): string[] } export class AggressiveTokenizerPl extends Tokenizer { withoutEmpty (array: string[]): string[] clearText (text: string): string tokenize (text: string): string[] } export class AggressiveTokenizerPt extends Tokenizer { withoutEmpty (array: string[]): string[] tokenize (text: string): string[] } export class AggressiveTokenizerNo extends Tokenizer { tokenize (text: string): string[] } export class AggressiveTokenizerSv extends Tokenizer { tokenize (text: string): string[] } export class AggressiveTokenizerVi extends Tokenizer { tokenize (text: string): string[] } export class AggressiveTokenizerId extends Tokenizer { tokenize (text: string): string[] } export class AggressiveTokenizerHi extends Tokenizer { tokenize (text: string): string[] } export class AggressiveTokenizerUk extends Tokenizer { tokenize (text: string): string[] } export class AggressiveTokenizer extends Tokenizer { tokenize (text: string): string[] } export class CaseTokenizer extends Tokenizer { tokenize (text: string, preserveApostrophe?: boolean): string[] } declare interface RegexTokenizerOptions { pattern?: RegExp discardEmpty?: boolean gaps?: boolean } export class RegexpTokenizer extends Tokenizer { constructor (opts?: RegexTokenizerOptions) tokenize (text: string): string[] } declare interface OrthographyTokenizerOptions extends RegexTokenizerOptions { language: string } export class OrthographyTokenizer extends RegexpTokenizer { constructor (options: OrthographyTokenizerOptions) } export class WordTokenizer extends RegexpTokenizer { constructor (options?: RegexTokenizerOptions) } export class WordPunctTokenizer extends RegexpTokenizer { constructor (options?: RegexTokenizerOptions) } export class TreebankWordTokenizer extends Tokenizer { tokenize (text: string): string[] } export class TokenizerJa extends Tokenizer { removePuncTokens (tokens: string[]): string[] tokenize (text: string): string[] } export class SentenceTokenizer extends Tokenizer { constructor (abbreviations: string[], sentenceDemarkers?: string[]) tokenize (text: string): string[] } ================================================ FILE: lib/natural/tokenizers/index.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' exports.AggressiveTokenizerNl = require('./aggressive_tokenizer_nl') exports.AggressiveTokenizerFa = require('./aggressive_tokenizer_fa') exports.AggressiveTokenizerFr = require('./aggressive_tokenizer_fr') exports.AggressiveTokenizerDe = require('./aggressive_tokenizer_de') exports.AggressiveTokenizerRu = require('./aggressive_tokenizer_ru') exports.AggressiveTokenizerEs = require('./aggressive_tokenizer_es') exports.AggressiveTokenizerIt = require('./aggressive_tokenizer_it') exports.AggressiveTokenizerPl = require('./aggressive_tokenizer_pl') exports.AggressiveTokenizerPt = require('./aggressive_tokenizer_pt') exports.AggressiveTokenizerNo = require('./aggressive_tokenizer_no') exports.AggressiveTokenizerSv = require('./aggressive_tokenizer_sv') exports.AggressiveTokenizerVi = require('./aggressive_tokenizer_vi') exports.AggressiveTokenizerId = require('./aggressive_tokenizer_id') exports.AggressiveTokenizerHi = require('./aggressive_tokenizer_hi') exports.AggressiveTokenizerUk = require('./aggressive_tokenizer_uk') exports.AggressiveTokenizer = require('./aggressive_tokenizer') exports.CaseTokenizer = require('./tokenizer_case') exports.RegexpTokenizer = require('./regexp_tokenizer').RegexpTokenizer exports.OrthographyTokenizer = require('./regexp_tokenizer').OrthographyTokenizer exports.WordTokenizer = require('./regexp_tokenizer').WordTokenizer exports.WordPunctTokenizer = require('./regexp_tokenizer').WordPunctTokenizer exports.TreebankWordTokenizer = require('./treebank_word_tokenizer') exports.TokenizerJa = require('./tokenizer_ja') exports.SentenceTokenizer = require('./sentence_tokenizer') exports.SentenceTokenizerNew = require('./sentence_tokenizer') ================================================ FILE: lib/natural/tokenizers/orthography_matchers.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*** * RegExp definitions for tokenizing text in a specific language based * on its alphabet. Each language is keyed by the two-letter code per * ISO 639-1, and defines a RegExp that excludes alphabetic characters. */ 'use strict' const matchers = { fi: /[^A-Za-zÅåÄäÖö]/ } module.exports = matchers ================================================ FILE: lib/natural/tokenizers/regexp_tokenizer.js ================================================ /* Copyright (c) 2011, Rob Ellis, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const DEBUG = false const Tokenizer = require('./tokenizer') const _ = require('underscore') class RegexpTokenizer extends Tokenizer { constructor (opts) { super(opts) const options = opts || {} this._pattern = options.pattern || this._pattern this.discardEmpty = options.discardEmpty || true // Match and split on GAPS not the actual WORDS this._gaps = options.gaps if (this._gaps === undefined) { this._gaps = true } } tokenize (s) { let results if (this._gaps) { results = s.split(this._pattern) return (this.discardEmpty) ? _.without(results, '', ' ') : results } else { return s.match(this._pattern) } } } exports.RegexpTokenizer = RegexpTokenizer const orthographyMatchers = require('./orthography_matchers') class OrthographyTokenizer { constructor (options) { const pattern = orthographyMatchers[options.language] DEBUG && console.log(pattern) if (!pattern) { this.tokenizer = new WordTokenizer() } else { this.tokenizer = new RegexpTokenizer(options) this.tokenizer._pattern = pattern DEBUG && console.log(this.tokenizer) } } tokenize (text) { return this.tokenizer.tokenize(text) } } exports.OrthographyTokenizer = OrthographyTokenizer /*** * A tokenizer that divides a text into sequences of alphabetic and * non-alphabetic characters. E.g.: * * >>> WordTokenizer().tokenize("She said 'hello'.") * ['She', 'said', 'hello'] * */ class WordTokenizer extends RegexpTokenizer { constructor (options) { super(options) this._pattern = /[^A-Za-zА-Яа-я0-9_]+/ } } exports.WordTokenizer = WordTokenizer /*** * A tokenizer that divides a text into sequences of alphabetic and * non-alphabetic characters. E.g.: * * >>> WordPunctTokenizer().tokenize("She said 'hello'.") * ["She","said","'","hello","'","."] * */ class WordPunctTokenizer extends RegexpTokenizer { constructor (options) { if (!options) { options = {} } options.pattern = /([A-Za-zÀ-ÿ-]+|[0-9._]+|.|!|\?|'|"|:|;|,|-)/i super(options) } } exports.WordPunctTokenizer = WordPunctTokenizer ================================================ FILE: lib/natural/tokenizers/sentence_tokenizer.js ================================================ /* Copyright (c) 2024, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ const Tokenizer = require('./tokenizer') // Strings that will be used to create placeholders const NUM = 'NUMBER' const DELIM = 'DELIM' const URI = 'URI' const ABBREV = 'ABBREV' const DEBUG = false function generateUniqueCode (base, index) { // Surround the placeholder with {{}} to prevent shorter numbers to be recognized // in larger numbers return `{{${base}_${index}}}` } function escapeRegExp (string) { return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&') } class SentenceTokenizer extends Tokenizer { constructor (abbreviations, trimSentences) { super() if (abbreviations) { this.abbreviations = abbreviations } else { this.abbreviations = [] } if (trimSentences === undefined) { this.trimSentences = true } else { this.trimSentences = trimSentences } this.replacementMap = null this.replacementCounter = 0 } replaceUrisWithPlaceholders (text) { const urlPattern = /(https?:\/\/\S+|www\.\S+|ftp:\/\/\S+|(mailto:)?[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}|file:\/\/\S+)/gi const modifiedText = text.replace(urlPattern, (match) => { const placeholder = generateUniqueCode(URI, this.replacementCounter++) this.replacementMap.set(placeholder, match) return placeholder }) return modifiedText } replaceAbbreviations (text) { if (this.abbreviations.length === 0) { return text } const pattern = new RegExp(`(${this.abbreviations.map(abbrev => escapeRegExp(abbrev)).join('|')})`, 'gi') const replacedText = text.replace(pattern, match => { const code = generateUniqueCode(ABBREV, this.replacementCounter++) this.replacementMap.set(code, match) return code }) return replacedText } replaceDelimitersWithPlaceholders (text) { // Regular expression for sentence delimiters optionally followed by a bracket or quote // Multiple delimiters with spaces in between are allowed // The expression makes sure that the sentence delimiter group ends with a sentence delimiter const delimiterPattern = /([.?!… ]*)([.?!…])(["'”’)}\]]?)/g const modifiedText = text.replace(delimiterPattern, (match, p1, p2, p3) => { const placeholder = generateUniqueCode(DELIM, this.replacementCounter++) this.delimiterMap.set(placeholder, p1 + p2 + p3) return placeholder }) return modifiedText } splitOnPlaceholders (text, placeholders) { if (this.delimiterMap.size === 0) { return [text] } const keys = Array.from(this.delimiterMap.keys()) const pattern = new RegExp(`(${keys.map(escapeRegExp).join('|')})`) const parts = text.split(pattern) const sentences = [] for (let i = 0; i < parts.length; i += 2) { const sentence = parts[i] const placeholder = parts[i + 1] || '' sentences.push(sentence + placeholder) } return sentences } replaceNumbersWithCode (text) { // Regular expression to match numbers, including decimal points and commas const numberPattern = /\b\d{1,3}(?:,\d{3})*(?:\.\d+)?\b/g const replacedText = text.replace(numberPattern, match => { const code = generateUniqueCode(NUM, this.replacementCounter++) this.replacementMap.set(code, match) return code }) return replacedText } revertReplacements (text) { let originalText = text for (const [placeholder, replacement] of this.replacementMap.entries()) { const pattern = new RegExp(escapeRegExp(placeholder), 'g') originalText = originalText.replace(pattern, replacement) } return originalText } revertDelimiters (text) { let originalText = text for (const [placeholder, replacement] of this.delimiterMap.entries()) { const pattern = new RegExp(escapeRegExp(placeholder), 'g') originalText = originalText.replace(pattern, replacement) } return originalText } tokenize (text) { this.replacementCounter = 0 this.replacementMap = new Map() this.delimiterMap = new Map() DEBUG && console.log('---Start of sentence tokenization-----------------------') DEBUG && console.log('Original input: >>>' + text + '<<<') // Replace abbreviations const result1 = this.replaceAbbreviations(text) DEBUG && console.log('Phase 1: replacing abbreviations: ' + JSON.stringify(result1)) // Replace URIs const result2 = this.replaceUrisWithPlaceholders(result1) DEBUG && console.log('Phase 2: replacing URIs: ' + JSON.stringify(result2)) // Replace delimiters followed by optional quotes, brackets, and braces const result3 = this.replaceNumbersWithCode(result2) DEBUG && console.log('Phase 3: replacing numbers with placeholders: ' + JSON.stringify(result3)) // Replace delimiters followed by optional quotes, brackets, and braces const result4 = this.replaceDelimitersWithPlaceholders(result3) DEBUG && console.log('Phase 4: replacing delimiters with placeholders: ' + JSON.stringify(result4)) // Split on placeholders for sentence delimiters const sentences = this.splitOnPlaceholders(result4) DEBUG && console.log('Phase 5: splitting into sentences on placeholders: ' + JSON.stringify(sentences)) // Replace back all abbreviations, URIs, and delimiters const newSentences = sentences.map(s => { const s1 = this.revertReplacements(s) return this.revertDelimiters(s1) }) DEBUG && console.log('Phase 6: replacing back abbreviations, URIs, numbers and delimiters: ' + JSON.stringify(newSentences)) const trimmedSentences = this.trim(newSentences) DEBUG && console.log('Phase 7: trimming array of empty sentences: ' + JSON.stringify(trimmedSentences)) const trimmedSentences2 = trimmedSentences.map(sent => this.trimSentences ? sent.trim() : sent) DEBUG && console.log('Phase 8: trimming sentences from surrounding whitespace: ' + JSON.stringify(trimmedSentences2)) DEBUG && console.log('---End of sentence tokenization--------------------------') DEBUG && console.log('---Replacement map---------------------------------------') DEBUG && console.log([...this.replacementMap.entries()]) DEBUG && console.log('---Delimiter map-----------------------------------------') DEBUG && console.log([...this.delimiterMap.entries()]) DEBUG && console.log('---------------------------------------------------------') return trimmedSentences2 } } module.exports = SentenceTokenizer ================================================ FILE: lib/natural/tokenizers/sentence_tokenizer_deprecated.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Tokenizer = require('./tokenizer') const DEBUG = false class SentenceTokenizer extends Tokenizer { tokenize (text) { // Break string up in to sentences based on punctation and quotation marks // See https://gist.github.com/Hugo-ter-Doest/4ed21fb7eb5077814d998fa61a726566 // for a breakdown of the regular expression let tokens = text.match(/(?<=\s+|^)["'‘“'"[({⟨]?(.*?[.?!…]|.+)(\s[.?!…])*["'’”'"\])}⟩]?(?=\s+|$)/g) DEBUG && console.log('SentenceTokenizer.tokenize: ' + tokens) if (!tokens) { return [text] } // remove unecessary white space tokens = tokens.map(Function.prototype.call, String.prototype.trim) DEBUG && console.log('SentenceTokenizer.tokenize: tokens after removing whitespace ' + tokens) return this.trim(tokens) } } module.exports = SentenceTokenizer ================================================ FILE: lib/natural/tokenizers/tokenizer.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' class Tokenizer { trim (array) { while (array[array.length - 1] === '') { array.pop() } while (array[0] === '') { array.shift() } return array } } module.exports = Tokenizer ================================================ FILE: lib/natural/tokenizers/tokenizer_case.js ================================================ /* Copyright (c) 2011, Chris Umbel, Alex Langberg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ const Tokenizer = require('./tokenizer') // Idea from Seagull: http://stackoverflow.com/a/26482650 class CaseTokenizer extends Tokenizer { tokenize (text, preserveApostrophe) { const whitelist = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'] const lower = text.toLowerCase() const upper = text.toUpperCase() let result = '' let i for (i = 0; i < lower.length; ++i) { if (lower[i] !== upper[i] || whitelist.indexOf(lower[i]) > -1 || (text[i] === '\'' && preserveApostrophe)) { result += text[i] } else { result += ' ' } } return this.trim(result.replace(/\s+/g, ' ').split(' ')) } } module.exports = CaseTokenizer ================================================ FILE: lib/natural/tokenizers/tokenizer_ja.js ================================================ // Original copyright: /* Copyright (c) 2008, Taku Kudo All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ // This version: /* Copyright (c) 2012, Guillaume Marty Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ // TinySegmenter 0.1 -- Super compact Japanese tokenizer in Javascript // (c) 2008 Taku Kudo // TinySegmenter is freely distributable under the terms of a new BSD licence. // For details, see http://chasen.org/~taku/software/TinySegmenter/LICENCE.txt 'use strict' const Tokenizer = require('./tokenizer') const normalize = require('../normalizers/normalizer_ja').normalizeJa const util = require('util') /** * @constructor */ const TokenizerJa = function () { this.chartype_ = [ [/[〇一二三四五六七八九十百千万億兆]/, 'M'], [/[一-鿌〆]/, 'H'], [/[ぁ-ゟ]/, 'I'], [/[゠-ヿ]/, 'K'], [/[a-zA-Z]/, 'A'], [/[0-9]/, 'N'] ] this.BIAS__ = -332 this.BC1__ = { HH: 6, II: 2461, KH: 406, OH: -1378 } this.BC2__ = { AA: -3267, AI: 2744, AN: -878, HH: -4070, HM: -1711, HN: 4012, HO: 3761, IA: 1327, IH: -1184, II: -1332, IK: 1721, IO: 5492, KI: 3831, KK: -8741, MH: -3132, MK: 3334, OO: -2920 } this.BC3__ = { HH: 996, HI: 626, HK: -721, HN: -1307, HO: -836, IH: -301, KK: 2762, MK: 1079, MM: 4034, OA: -1652, OH: 266 } this.BP1__ = { BB: 295, OB: 304, OO: -125, UB: 352 } this.BP2__ = { BO: 60, OO: -1762 } this.BQ1__ = { BHH: 1150, BHM: 1521, BII: -1158, BIM: 886, BMH: 1208, BNH: 449, BOH: -91, BOO: -2597, OHI: 451, OIH: -296, OKA: 1851, OKH: -1020, OKK: 904, OOO: 2965 } this.BQ2__ = { BHH: 118, BHI: -1159, BHM: 466, BIH: -919, BKK: -1720, BKO: 864, OHH: -1139, OHM: -181, OIH: 153, UHI: -1146 } this.BQ3__ = { BHH: -792, BHI: 2664, BII: -299, BKI: 419, BMH: 937, BMM: 8335, BNN: 998, BOH: 775, OHH: 2174, OHM: 439, OII: 280, OKH: 1798, OKI: -793, OKO: -2242, OMH: -2402, OOO: 11699 } this.BQ4__ = { BHH: -3895, BIH: 3761, BII: -4654, BIK: 1348, BKK: -1806, BMI: -3385, BOO: -12396, OAH: 926, OHH: 266, OHK: -2036, ONN: -973 } this.BW1__ = { ',と': 660, ',同': 727, B1あ: 1404, B1同: 542, '、と': 660, '、同': 727, '」と': 1682, あっ: 1505, いう: 1743, いっ: -2055, いる: 672, うし: -4817, うん: 665, から: 3472, がら: 600, こう: -790, こと: 2083, こん: -1262, さら: -4143, さん: 4573, した: 2641, して: 1104, すで: -3399, そこ: 1977, それ: -871, たち: 1122, ため: 601, った: 3463, つい: -802, てい: 805, てき: 1249, でき: 1127, です: 3445, では: 844, とい: -4915, とみ: 1922, どこ: 3887, ない: 5713, なっ: 3015, など: 7379, なん: -1113, にし: 2468, には: 1498, にも: 1671, に対: -912, の一: -501, の中: 741, ませ: 2448, まで: 1711, まま: 2600, まる: -2155, やむ: -1947, よっ: -2565, れた: 2369, れで: -913, をし: 1860, を見: 731, 亡く: -1886, 京都: 2558, 取り: -2784, 大き: -2604, 大阪: 1497, 平方: -2314, 引き: -1336, 日本: -195, 本当: -2423, 毎日: -2113, 目指: -724 } this.BW2__ = { 11: -669, '..': -11822, '――': -5730, '−−': -13175, いう: -1609, うか: 2490, かし: -1350, かも: -602, から: -7194, かれ: 4612, がい: 853, がら: -3198, きた: 1941, くな: -1597, こと: -8392, この: -4193, させ: 4533, され: 13168, さん: -3977, しい: -1819, しか: -545, した: 5078, して: 972, しな: 939, その: -3744, たい: -1253, たた: -662, ただ: -3857, たち: -786, たと: 1224, たは: -939, った: 4589, って: 1647, っと: -2094, てい: 6144, てき: 3640, てく: 2551, ては: -3110, ても: -3065, でい: 2666, でき: -1528, でし: -3828, です: -4761, でも: -4203, とい: 1890, とこ: -1746, とと: -2279, との: 720, とみ: 5168, とも: -3941, ない: -2488, なが: -1313, など: -6509, なの: 2614, なん: 3099, にお: -1615, にし: 2748, にな: 2454, によ: -7236, に対: -14943, に従: -4688, に関: -11388, のか: 2093, ので: -7059, のに: -6041, のの: -6125, はい: 1073, はが: -1033, はず: -2532, ばれ: 1813, まし: -1316, まで: -6621, まれ: 5409, めて: -3153, もい: 2230, もの: -10713, らか: -944, らし: -1611, らに: -1897, りし: 651, りま: 1620, れた: 4270, れて: 849, れば: 4114, ろう: 6067, われ: 7901, を通: -11877, んだ: 728, んな: -4115, 一人: 602, 一方: -1375, 一日: 970, 一部: -1051, 上が: -4479, 会社: -1116, 出て: 2163, 分の: -7758, 同党: 970, 同日: -913, 大阪: -2471, 委員: -1250, 少な: -1050, 年度: -8669, 年間: -1626, 府県: -2363, 手権: -1982, 新聞: -4066, 日新: -722, 日本: -7068, 日米: 3372, 曜日: -601, 朝鮮: -2355, 本人: -2697, 東京: -1543, 然と: -1384, 社会: -1276, 立て: -990, 第に: -1612, 米国: -4268 } this.BW3__ = { あた: -2194, あり: 719, ある: 3846, 'い.': -1185, 'い。': -1185, いい: 5308, いえ: 2079, いく: 3029, いた: 2056, いっ: 1883, いる: 5600, いわ: 1527, うち: 1117, うと: 4798, えと: 1454, 'か.': 2857, 'か。': 2857, かけ: -743, かっ: -4098, かに: -669, から: 6520, かり: -2670, 'が,': 1816, 'が、': 1816, がき: -4855, がけ: -1127, がっ: -913, がら: -4977, がり: -2064, きた: 1645, けど: 1374, こと: 7397, この: 1542, ころ: -2757, さい: -714, さを: 976, 'し,': 1557, 'し、': 1557, しい: -3714, した: 3562, して: 1449, しな: 2608, しま: 1200, 'す.': -1310, 'す。': -1310, する: 6521, 'ず,': 3426, 'ず、': 3426, ずに: 841, そう: 428, 'た.': 8875, 'た。': 8875, たい: -594, たの: 812, たり: -1183, たる: -853, 'だ.': 4098, 'だ。': 4098, だっ: 1004, った: -4748, って: 300, てい: 6240, てお: 855, ても: 302, です: 1437, でに: -1482, では: 2295, とう: -1387, とし: 2266, との: 541, とも: -3543, どう: 4664, ない: 1796, なく: -903, など: 2135, 'に,': -1021, 'に、': -1021, にし: 1771, にな: 1906, には: 2644, 'の,': -724, 'の、': -724, の子: -1000, 'は,': 1337, 'は、': 1337, べき: 2181, まし: 1113, ます: 6943, まっ: -1549, まで: 6154, まれ: -793, らし: 1479, られ: 6820, るる: 3818, 'れ,': 854, 'れ、': 854, れた: 1850, れて: 1375, れば: -3246, れる: 1091, われ: -605, んだ: 606, んで: 798, カ月: 990, 会議: 860, 入り: 1232, 大会: 2217, 始め: 1681, 市: 965, 新聞: -5055, '日,': 974, '日、': 974, 社会: 2024 } this.TC1__ = { AAA: 1093, HHH: 1029, HHM: 580, HII: 998, HOH: -390, HOM: -331, IHI: 1169, IOH: -142, IOI: -1015, IOM: 467, MMH: 187, OOI: -1832 } this.TC2__ = { HHO: 2088, HII: -1023, HMM: -1154, IHI: -1965, KKH: 703, OII: -2649 } this.TC3__ = { AAA: -294, HHH: 346, HHI: -341, HII: -1088, HIK: 731, HOH: -1486, IHH: 128, IHI: -3041, IHO: -1935, IIH: -825, IIM: -1035, IOI: -542, KHH: -1216, KKA: 491, KKH: -1217, KOK: -1009, MHH: -2694, MHM: -457, MHO: 123, MMH: -471, NNH: -1689, NNO: 662, OHO: -3393 } this.TC4__ = { HHH: -203, HHI: 1344, HHK: 365, HHM: -122, HHN: 182, HHO: 669, HIH: 804, HII: 679, HOH: 446, IHH: 695, IHO: -2324, IIH: 321, III: 1497, IIO: 656, IOO: 54, KAK: 4845, KKA: 3386, KKK: 3065, MHH: -405, MHI: 201, MMH: -241, MMM: 661, MOM: 841 } this.TQ1__ = { BHHH: -227, BHHI: 316, BHIH: -132, BIHH: 60, BIII: 1595, BNHH: -744, BOHH: 225, BOOO: -908, OAKK: 482, OHHH: 281, OHIH: 249, OIHI: 200, OIIH: -68 } this.TQ2__ = { BIHH: -1401, BIII: -1033, BKAK: -543, BOOO: -5591 } this.TQ3__ = { BHHH: 478, BHHM: -1073, BHIH: 222, BHII: -504, BIIH: -116, BIII: -105, BMHI: -863, BMHM: -464, BOMH: 620, OHHH: 346, OHHI: 1729, OHII: 997, OHMH: 481, OIHH: 623, OIIH: 1344, OKAK: 2792, OKHH: 587, OKKA: 679, OOHH: 110, OOII: -685 } this.TQ4__ = { BHHH: -721, BHHM: -3604, BHII: -966, BIIH: -607, BIII: -2181, OAAA: -2763, OAKK: 180, OHHH: -294, OHHI: 2446, OHHO: 480, OHIH: -1573, OIHH: 1935, OIHI: -493, OIIH: 626, OIII: -4007, OKAK: -8156 } this.TW1__ = { につい: -4681, 東京都: 2026 } this.TW2__ = { ある程: -2049, いった: -1256, ころが: -2434, しょう: 3873, その後: -4430, だって: -1049, ていた: 1833, として: -4657, ともに: -4517, もので: 1882, 一気に: -792, 初めて: -1512, 同時に: -8097, 大きな: -1255, 対して: -2721, 社会党: -3216 } this.TW3__ = { いただ: -1734, してい: 1314, として: -4314, につい: -5483, にとっ: -5989, に当た: -6247, 'ので,': -727, 'ので、': -727, のもの: -600, れから: -3752, 十二月: -2287 } this.TW4__ = { 'いう.': 8576, 'いう。': 8576, からな: -2348, してい: 2958, 'たが,': 1516, 'たが、': 1516, ている: 1538, という: 1349, ました: 5543, ません: 1097, ようと: -4258, よると: 5865 } this.UC1__ = { A: 484, K: 93, M: 645, O: -505 } this.UC2__ = { A: 819, H: 1059, I: 409, M: 3987, N: 5775, O: 646 } this.UC3__ = { A: -1370, I: 2311 } this.UC4__ = { A: -2643, H: 1809, I: -1032, K: -3450, M: 3565, N: 3876, O: 6646 } this.UC5__ = { H: 313, I: -1238, K: -799, M: 539, O: -831 } this.UC6__ = { H: -506, I: -253, K: 87, M: 247, O: -387 } this.UP1__ = { O: -214 } this.UP2__ = { B: 69, O: 935 } this.UP3__ = { B: 189 } this.UQ1__ = { BH: 21, BI: -12, BK: -99, BN: 142, BO: -56, OH: -95, OI: 477, OK: 410, OO: -2422 } this.UQ2__ = { BH: 216, BI: 113, OK: 1759 } this.UQ3__ = { BA: -479, BH: 42, BI: 1913, BK: -7198, BM: 3160, BN: 6427, BO: 14761, OI: -827, ON: -3212 } this.UW1__ = { ',': 156, '、': 156, '「': -463, あ: -941, う: -127, が: -553, き: 121, こ: 505, で: -201, と: -547, ど: -123, に: -789, の: -185, は: -847, も: -466, や: -470, よ: 182, ら: -292, り: 208, れ: 169, を: -446, ん: -137, '・': -135, 主: -402, 京: -268, 区: -912, 午: 871, 国: -460, 大: 561, 委: 729, 市: -411, 日: -141, 理: 361, 生: -408, 県: -386, 都: -718 } this.UW2__ = { ',': -829, '、': -829, 〇: 892, '「': -645, '」': 3145, あ: -538, い: 505, う: 134, お: -502, か: 1454, が: -856, く: -412, こ: 1141, さ: 878, ざ: 540, し: 1529, す: -675, せ: 300, そ: -1011, た: 188, だ: 1837, つ: -949, て: -291, で: -268, と: -981, ど: 1273, な: 1063, に: -1764, の: 130, は: -409, ひ: -1273, べ: 1261, ま: 600, も: -1263, や: -402, よ: 1639, り: -579, る: -694, れ: 571, を: -2516, ん: 2095, ア: -587, カ: 306, キ: 568, ッ: 831, 三: -758, 不: -2150, 世: -302, 中: -968, 主: -861, 事: 492, 人: -123, 会: 978, 保: 362, 入: 548, 初: -3025, 副: -1566, 北: -3414, 区: -422, 大: -1769, 天: -865, 太: -483, 子: -1519, 学: 760, 実: 1023, 小: -2009, 市: -813, 年: -1060, 強: 1067, 手: -1519, 揺: -1033, 政: 1522, 文: -1355, 新: -1682, 日: -1815, 明: -1462, 最: -630, 朝: -1843, 本: -1650, 東: -931, 果: -665, 次: -2378, 民: -180, 気: -1740, 理: 752, 発: 529, 目: -1584, 相: -242, 県: -1165, 立: -763, 第: 810, 米: 509, 自: -1353, 行: 838, 西: -744, 見: -3874, 調: 1010, 議: 1198, 込: 3041, 開: 1758, 間: -1257 } this.UW3__ = { 1: -800, ',': 4889, '−': -1723, '、': 4889, 々: -2311, 〇: 5827, '」': 2670, '〓': -3573, あ: -2696, い: 1006, う: 2342, え: 1983, お: -4864, か: -1163, が: 3271, く: 1004, け: 388, げ: 401, こ: -3552, ご: -3116, さ: -1058, し: -395, す: 584, せ: 3685, そ: -5228, た: 842, ち: -521, っ: -1444, つ: -1081, て: 6167, で: 2318, と: 1691, ど: -899, な: -2788, に: 2745, の: 4056, は: 4555, ひ: -2171, ふ: -1798, へ: 1199, ほ: -5516, ま: -4384, み: -120, め: 1205, も: 2323, や: -788, よ: -202, ら: 727, り: 649, る: 5905, れ: 2773, わ: -1207, を: 6620, ん: -518, ア: 551, グ: 1319, ス: 874, ッ: -1350, ト: 521, ム: 1109, ル: 1591, ロ: 2201, ン: 278, '・': -3794, 一: -1619, 下: -1759, 世: -2087, 両: 3815, 中: 653, 主: -758, 予: -1193, 二: 974, 人: 2742, 今: 792, 他: 1889, 以: -1368, 低: 811, 何: 4265, 作: -361, 保: -2439, 元: 4858, 党: 3593, 全: 1574, 公: -3030, 六: 755, 共: -1880, 円: 5807, 再: 3095, 分: 457, 初: 2475, 別: 1129, 前: 2286, 副: 4437, 力: 365, 動: -949, 務: -1872, 化: 1327, 北: -1038, 区: 4646, 千: -2309, 午: -783, 協: -1006, 口: 483, 右: 1233, 各: 3588, 合: -241, 同: 3906, 和: -837, 員: 4513, 国: 642, 型: 1389, 場: 1219, 外: -241, 妻: 2016, 学: -1356, 安: -423, 実: -1008, 家: 1078, 小: -513, 少: -3102, 州: 1155, 市: 3197, 平: -1804, 年: 2416, 広: -1030, 府: 1605, 度: 1452, 建: -2352, 当: -3885, 得: 1905, 思: -1291, 性: 1822, 戸: -488, 指: -3973, 政: -2013, 教: -1479, 数: 3222, 文: -1489, 新: 1764, 日: 2099, 旧: 5792, 昨: -661, 時: -1248, 曜: -951, 最: -937, 月: 4125, 期: 360, 李: 3094, 村: 364, 東: -805, 核: 5156, 森: 2438, 業: 484, 氏: 2613, 民: -1694, 決: -1073, 法: 1868, 海: -495, 無: 979, 物: 461, 特: -3850, 生: -273, 用: 914, 町: 1215, 的: 7313, 直: -1835, 省: 792, 県: 6293, 知: -1528, 私: 4231, 税: 401, 立: -960, 第: 1201, 米: 7767, 系: 3066, 約: 3663, 級: 1384, 統: -4229, 総: 1163, 線: 1255, 者: 6457, 能: 725, 自: -2869, 英: 785, 見: 1044, 調: -562, 財: -733, 費: 1777, 車: 1835, 軍: 1375, 込: -1504, 通: -1136, 選: -681, 郎: 1026, 郡: 4404, 部: 1200, 金: 2163, 長: 421, 開: -1432, 間: 1302, 関: -1282, 雨: 2009, 電: -1045, 非: 2066, 駅: 1620 } this.UW4__ = { ',': 3930, '.': 3508, '―': -4841, '、': 3930, '。': 3508, 〇: 4999, '「': 1895, '」': 3798, '〓': -5156, あ: 4752, い: -3435, う: -640, え: -2514, お: 2405, か: 530, が: 6006, き: -4482, ぎ: -3821, く: -3788, け: -4376, げ: -4734, こ: 2255, ご: 1979, さ: 2864, し: -843, じ: -2506, す: -731, ず: 1251, せ: 181, そ: 4091, た: 5034, だ: 5408, ち: -3654, っ: -5882, つ: -1659, て: 3994, で: 7410, と: 4547, な: 5433, に: 6499, ぬ: 1853, ね: 1413, の: 7396, は: 8578, ば: 1940, ひ: 4249, び: -4134, ふ: 1345, へ: 6665, べ: -744, ほ: 1464, ま: 1051, み: -2082, む: -882, め: -5046, も: 4169, ゃ: -2666, や: 2795, ょ: -1544, よ: 3351, ら: -2922, り: -9726, る: -14896, れ: -2613, ろ: -4570, わ: -1783, を: 13150, ん: -2352, カ: 2145, コ: 1789, セ: 1287, ッ: -724, ト: -403, メ: -1635, ラ: -881, リ: -541, ル: -856, ン: -3637, '・': -4371, ー: -11870, 一: -2069, 中: 2210, 予: 782, 事: -190, 井: -1768, 人: 1036, 以: 544, 会: 950, 体: -1286, 作: 530, 側: 4292, 先: 601, 党: -2006, 共: -1212, 内: 584, 円: 788, 初: 1347, 前: 1623, 副: 3879, 力: -302, 動: -740, 務: -2715, 化: 776, 区: 4517, 協: 1013, 参: 1555, 合: -1834, 和: -681, 員: -910, 器: -851, 回: 1500, 国: -619, 園: -1200, 地: 866, 場: -1410, 塁: -2094, 士: -1413, 多: 1067, 大: 571, 子: -4802, 学: -1397, 定: -1057, 寺: -809, 小: 1910, 屋: -1328, 山: -1500, 島: -2056, 川: -2667, 市: 2771, 年: 374, 庁: -4556, 後: 456, 性: 553, 感: 916, 所: -1566, 支: 856, 改: 787, 政: 2182, 教: 704, 文: 522, 方: -856, 日: 1798, 時: 1829, 最: 845, 月: -9066, 木: -485, 来: -442, 校: -360, 業: -1043, 氏: 5388, 民: -2716, 気: -910, 沢: -939, 済: -543, 物: -735, 率: 672, 球: -1267, 生: -1286, 産: -1101, 田: -2900, 町: 1826, 的: 2586, 目: 922, 省: -3485, 県: 2997, 空: -867, 立: -2112, 第: 788, 米: 2937, 系: 786, 約: 2171, 経: 1146, 統: -1169, 総: 940, 線: -994, 署: 749, 者: 2145, 能: -730, 般: -852, 行: -792, 規: 792, 警: -1184, 議: -244, 谷: -1000, 賞: 730, 車: -1481, 軍: 1158, 輪: -1433, 込: -3370, 近: 929, 道: -1291, 選: 2596, 郎: -4866, 都: 1192, 野: -1100, 銀: -2213, 長: 357, 間: -2344, 院: -2297, 際: -2604, 電: -878, 領: -1659, 題: -792, 館: -1984, 首: 1749, 高: 2120 } this.UW5__ = { 1: -514, ',': 465, '.': -299, E2: -32768, ']': -2762, '、': 465, '。': -299, '「': 363, あ: 1655, い: 331, う: -503, え: 1199, お: 527, か: 647, が: -421, き: 1624, ぎ: 1971, く: 312, げ: -983, さ: -1537, し: -1371, す: -852, だ: -1186, ち: 1093, っ: 52, つ: 921, て: -18, で: -850, と: -127, ど: 1682, な: -787, に: -1224, の: -635, は: -578, べ: 1001, み: 502, め: 865, ゃ: 3350, ょ: 854, り: -208, る: 429, れ: 504, わ: 419, を: -1264, ん: 327, イ: 241, ル: 451, ン: -343, 中: -871, 京: 722, 会: -1153, 党: -654, 務: 3519, 区: -901, 告: 848, 員: 2104, 大: -1296, 学: -548, 定: 1785, 嵐: -1304, 市: -2991, 席: 921, 年: 1763, 思: 872, 所: -814, 挙: 1618, 新: -1682, 日: 218, 月: -4353, 査: 932, 格: 1356, 機: -1508, 氏: -1347, 田: 240, 町: -3912, 的: -3149, 相: 1319, 省: -1052, 県: -4003, 研: -997, 社: -278, 空: -813, 統: 1955, 者: -2233, 表: 663, 語: -1073, 議: 1219, 選: -1018, 郎: -368, 長: 786, 間: 1191, 題: 2368, 館: -689 } this.UW6__ = { 1: -270, ',': 227, '.': 808, E1: 306, '、': 227, '。': 808, あ: -307, う: 189, か: 241, が: -73, く: -121, こ: -200, じ: 1782, す: 383, た: -428, っ: 573, て: -1014, で: 101, と: -105, な: -253, に: -149, の: -417, は: -236, も: -206, り: 187, る: -135, を: 195, ル: -673, ン: -496, 一: -277, 中: 201, 件: -800, 会: 624, 前: 302, 区: 1792, 員: -1212, 委: 798, 学: -960, 市: 887, 広: -695, 後: 535, 業: -697, 相: 753, 社: -507, 福: 974, 空: -822, 者: 1811, 連: 463, 郎: 1082 } return this } util.inherits(TokenizerJa, Tokenizer) /** * @param {string} str * @return {string} * @private */ TokenizerJa.prototype.ctype_ = function (str) { for (let i = 0, length = this.chartype_.length; i < length; i++) { if (str.match(this.chartype_[i][0])) { return this.chartype_[i][1] } } return 'O' } /** * @param {string} v * @return {number} * @private */ TokenizerJa.prototype.ts_ = function (v) { if (v) { return v } return 0 } /** * Remove punctuations signs from tokens. * * @param {Array.} tokens An array of tokens. * @return {Array.} An array of tokens. * @private */ TokenizerJa.prototype.removePuncTokens = function (tokens) { return tokens .map(function (token) { return token.replace(/[_-・,、;:!?.。()[]{}「」@*\/&#%`^+<=>|~≪≫─$"_\-・,、;:!?.。()[\]{}「」@*/&#%`^+<=>|~«»$"\s]+/g, '') }) .filter(function (token) { return token !== '' }) } /** * @param {string} text * @return {Array.} */ TokenizerJa.prototype.tokenize = function (text) { if (text === null || text === undefined || text === '') { return [] } text = normalize(text) let result = [] const seg = ['B3', 'B2', 'B1'] const ctype = ['O', 'O', 'O'] const o = text.split('') let i let length for (i = 0, length = o.length; i < length; ++i) { seg.push(o[i]) ctype.push(this.ctype_(o[i])) } seg.push('E1') seg.push('E2') seg.push('E3') ctype.push('O') ctype.push('O') ctype.push('O') let word = seg[3] let p1 = 'U' let p2 = 'U' let p3 = 'U' for (i = 4, length = seg.length - 3; i < length; ++i) { let score = this.BIAS__ const w1 = seg[i - 3] const w2 = seg[i - 2] const w3 = seg[i - 1] const w4 = seg[i] const w5 = seg[i + 1] const w6 = seg[i + 2] const c1 = ctype[i - 3] const c2 = ctype[i - 2] const c3 = ctype[i - 1] const c4 = ctype[i] const c5 = ctype[i + 1] const c6 = ctype[i + 2] score += this.ts_(this.UP1__[p1]) score += this.ts_(this.UP2__[p2]) score += this.ts_(this.UP3__[p3]) score += this.ts_(this.BP1__[p1 + p2]) score += this.ts_(this.BP2__[p2 + p3]) score += this.ts_(this.UW1__[w1]) score += this.ts_(this.UW2__[w2]) score += this.ts_(this.UW3__[w3]) score += this.ts_(this.UW4__[w4]) score += this.ts_(this.UW5__[w5]) score += this.ts_(this.UW6__[w6]) score += this.ts_(this.BW1__[w2 + w3]) score += this.ts_(this.BW2__[w3 + w4]) score += this.ts_(this.BW3__[w4 + w5]) score += this.ts_(this.TW1__[w1 + w2 + w3]) score += this.ts_(this.TW2__[w2 + w3 + w4]) score += this.ts_(this.TW3__[w3 + w4 + w5]) score += this.ts_(this.TW4__[w4 + w5 + w6]) score += this.ts_(this.UC1__[c1]) score += this.ts_(this.UC2__[c2]) score += this.ts_(this.UC3__[c3]) score += this.ts_(this.UC4__[c4]) score += this.ts_(this.UC5__[c5]) score += this.ts_(this.UC6__[c6]) score += this.ts_(this.BC1__[c2 + c3]) score += this.ts_(this.BC2__[c3 + c4]) score += this.ts_(this.BC3__[c4 + c5]) score += this.ts_(this.TC1__[c1 + c2 + c3]) score += this.ts_(this.TC2__[c2 + c3 + c4]) score += this.ts_(this.TC3__[c3 + c4 + c5]) score += this.ts_(this.TC4__[c4 + c5 + c6]) // score += this.ts_(this.TC5__[c4 + c5 + c6]); score += this.ts_(this.UQ1__[p1 + c1]) score += this.ts_(this.UQ2__[p2 + c2]) score += this.ts_(this.UQ3__[p3 + c3]) score += this.ts_(this.BQ1__[p2 + c2 + c3]) score += this.ts_(this.BQ2__[p2 + c3 + c4]) score += this.ts_(this.BQ3__[p3 + c2 + c3]) score += this.ts_(this.BQ4__[p3 + c3 + c4]) score += this.ts_(this.TQ1__[p2 + c1 + c2 + c3]) score += this.ts_(this.TQ2__[p2 + c2 + c3 + c4]) score += this.ts_(this.TQ3__[p3 + c1 + c2 + c3]) score += this.ts_(this.TQ4__[p3 + c2 + c3 + c4]) let p = 'O' if (score > 0) { result.push(word) word = '' p = 'B' } p1 = p2 p2 = p3 p3 = p word += seg[i] } result.push(word) result = this.removePuncTokens(result) return result } module.exports = TokenizerJa ================================================ FILE: lib/natural/tokenizers/treebank_word_tokenizer.js ================================================ /* Copyright (c) 2011, Rob Ellis, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ const Tokenizer = require('./tokenizer') const util = require('util') const _ = require('underscore') const contractions2 = [ /(.)('ll|'re|'ve|n't|'s|'m|'d)\b/ig, /\b(can)(not)\b/ig, /\b(D)('ye)\b/ig, /\b(Gim)(me)\b/ig, /\b(Gon)(na)\b/ig, /\b(Got)(ta)\b/ig, /\b(Lem)(me)\b/ig, /\b(Mor)('n)\b/ig, /\b(T)(is)\b/ig, /\b(T)(was)\b/ig, /\b(Wan)(na)\b/ig] const contractions3 = [ /\b(Whad)(dd)(ya)\b/ig, /\b(Wha)(t)(cha)\b/ig ] const TreebankWordTokenizer = function () { } util.inherits(TreebankWordTokenizer, Tokenizer) TreebankWordTokenizer.prototype.tokenize = function (text) { contractions2.forEach(function (regexp) { text = text.replace(regexp, '$1 $2') }) contractions3.forEach(function (regexp) { text = text.replace(regexp, '$1 $2 $3') }) // most punctuation text = text.replace(/([^\w.'\-/+<>,&])/g, ' $1 ') // commas if followed by space text = text.replace(/(,\s)/g, ' $1') // single quotes if followed by a space text = text.replace(/('\s)/g, ' $1') // periods before newline or end of string text = text.replace(/\. *(\n|$)/g, ' . ') return _.without(text.split(/\s+/), '') } module.exports = TreebankWordTokenizer ================================================ FILE: lib/natural/transliterators/index.d.ts ================================================ /* Copyright (c) 2022, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ export let TransliterateJa: (s: string) => string ================================================ FILE: lib/natural/transliterators/index.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' exports.TransliterateJa = require('./ja') ================================================ FILE: lib/natural/transliterators/ja/index.js ================================================ /* Copyright (c) 2012, Guillaume Marty Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' /** * A transliteration of Katakana & Hiragana to roman characters using the * modified Hepburn system. * Rules based on CLDR transform rule set `Katakana-Latin-BGN.xml` but with * several bugs fixed: * * Missing ū * * Missing tsu + voiced kana * * typos on my~ transliterations * * support for long vowel sign * * support for final small tsu * * support for u + small vowels * * support for su/shi/ji + small vowels * * support for tchi/tsu/te/to + small vowels * * support for fu + small vowels * * support for katakana middle dot * * \@todo Take iteration marks into account. */ const replacer = require('../../util/utils').replacer const transliterationTable1 = { ウァ: 'wa', // KATAKANA LETTER U + SMALL A ウィ: 'wi', // KATAKANA LETTER U + SMALL I ウェ: 'we', // KATAKANA LETTER U + SMALL E ウォ: 'wo', // KATAKANA LETTER U + SMALL O ウー: 'ū', // KATAKANA LETTER VU + PROLONGED SOUND MARK ヴァ: 'va', // KATAKANA LETTER VU + SMALL A ヴィ: 'vi', // KATAKANA LETTER VU + SMALL I ヴェ: 've', // KATAKANA LETTER VU + SMALL E ヴォ: 'vo', // KATAKANA LETTER VU + SMALL O ヴュ: 'vyu', // KATAKANA LETTER VU + SMALL YU うぁ: 'wa', // HIRAGANA LETTER U + SMALL A うぃ: 'wi', // HIRAGANA LETTER U + SMALL I うぇ: 'we', // HIRAGANA LETTER U + SMALL E うぉ: 'wo', // HIRAGANA LETTER U + SMALL O うー: 'ū', // HIRAGANA LETTER VU + PROLONGED SOUND MARK ゔぁ: 'va', // HIRAGANA LETTER VU + SMALL A ゔぃ: 'vi', // HIRAGANA LETTER VU + SMALL I ゔぇ: 've', // HIRAGANA LETTER VU + SMALL E ゔぉ: 'vo', // HIRAGANA LETTER VU + SMALL O ゔゅ: 'vyu' // HIRAGANA LETTER VU + SMALL YU } const transliterationTable2 = { イェ: 'ye', // KATAKANA LETTER I + SMALL E ア: 'a', // KATAKANA LETTER A イ: 'i', // KATAKANA LETTER I ウウ: 'ū', // KATAKANA LETTER U + U ウ: 'u', // KATAKANA LETTER U エ: 'e', // KATAKANA LETTER E オウ: 'ō', // KATAKANA LETTER O + U オ: 'o', // KATAKANA LETTER O クァ: 'kwa', // KATAKANA LETTER KU + SMALL A クィ: 'kwi', // KATAKANA LETTER KU + SMALL I クェ: 'kwe', // KATAKANA LETTER KU + SMALL E クォ: 'kwo', // KATAKANA LETTER KU + SMALL O カ: 'ka', // KATAKANA LETTER KA キョウ: 'kyō', // KATAKANA LETTER KI + SMALL YO + U キュウ: 'kyū', // KATAKANA LETTER KI + SMALL YU + U キャ: 'kya', // KATAKANA LETTER KI + SMALL YA キョ: 'kyo', // KATAKANA LETTER KI + SMALL YO キュ: 'kyu', // KATAKANA LETTER KI + SMALL YU キ: 'ki', // KATAKANA LETTER KI ク: 'ku', // KATAKANA LETTER KU ケ: 'ke', // KATAKANA LETTER KE コウ: 'kō', // KATAKANA LETTER KO + U コ: 'ko', // KATAKANA LETTER KO シェ: 'she', // KATAKANA LETTER SI + SMALL E スィ: 'si', // KATAKANA LETTER SU + SMALL I サ: 'sa', // KATAKANA LETTER SA ショウ: 'shō', // KATAKANA LETTER SI + SMALL YO + U シュウ: 'shū', // KATAKANA LETTER SI + SMALL YU + U シャ: 'sha', // KATAKANA LETTER SI + SMALL YA ショ: 'sho', // KATAKANA LETTER SI + SMALL YO シュ: 'shu', // KATAKANA LETTER SI + SMALL YU シ: 'shi', // KATAKANA LETTER SI スウ: 'sū', // KATAKANA LETTER SU + U ス: 'su', // KATAKANA LETTER SU セ: 'se', // KATAKANA LETTER SE ソウ: 'sō', // KATAKANA LETTER SO + U ソ: 'so', // KATAKANA LETTER SO チェ: 'che', // KATAKANA LETTER TI + SMALL E ツァ: 'tsa', // KATAKANA LETTER TU + SMALL A ツィ: 'tsi', // KATAKANA LETTER TU + SMALL I ツェ: 'tse', // KATAKANA LETTER TU + SMALL E ツォ: 'tso', // KATAKANA LETTER TU + SMALL O ティ: 'ti', // KATAKANA LETTER TE + SMALL I ディ: 'di', // KATAKANA LETTER DE + SMALL I テュ: 'tyu', // KATAKANA LETTER TE + SMALL YU デュ: 'dyu', // KATAKANA LETTER DE + SMALL YU トィ: 'twi', // KATAKANA LETTER TO + SMALL I トゥ: 'tu', // KATAKANA LETTER TO + SMALL U ドィ: 'dwi', // KATAKANA LETTER DO + SMALL I ドゥ: 'du', // KATAKANA LETTER DO + SMALL U タ: 'ta', // KATAKANA LETTER TA チョウ: 'chō', // KATAKANA LETTER TI + SMALL YO + U チュウ: 'chū', // KATAKANA LETTER TI + SMALL YU + U チャ: 'cha', // KATAKANA LETTER TI + SMALL YA チョ: 'cho', // KATAKANA LETTER TI + SMALL YO チュ: 'chu', // KATAKANA LETTER TI + SMALL YU チ: 'chi', // KATAKANA LETTER TI ツウ: 'tsū', // KATAKANA LETTER TU + U ツ: 'tsu', // KATAKANA LETTER TU テ: 'te', // KATAKANA LETTER TE トウ: 'tō', // KATAKANA LETTER TO + U ト: 'to', // KATAKANA LETTER TO ナ: 'na', // KATAKANA LETTER NA ニョウ: 'nyō', // KATAKANA LETTER NI + SMALL YO + U ニュウ: 'nyū', // KATAKANA LETTER NI + SMALL YU + U ニャ: 'nya', // KATAKANA LETTER NI + SMALL YA ニョ: 'nyo', // KATAKANA LETTER NI + SMALL YO ニュ: 'nyu', // KATAKANA LETTER NI + SMALL YU ニ: 'ni', // KATAKANA LETTER NI ヌウ: 'nū', // KATAKANA LETTER NU + U ヌ: 'nu', // KATAKANA LETTER NU ネ: 'ne', // KATAKANA LETTER NE ノウ: 'nō', // KATAKANA LETTER NO + U ノ: 'no', // KATAKANA LETTER NO ファ: 'fa', // KATAKANA LETTER HU + SMALL A フィ: 'fi', // KATAKANA LETTER HU + SMALL I // 'フゥ': 'fu', // KATAKANA LETTER HU + SMALL U フェ: 'fe', // KATAKANA LETTER HU + SMALL E フォ: 'fo', // KATAKANA LETTER HU + SMALL O フュ: 'fyu', // KATAKANA LETTER HU + SMALL YU ホェ: 'hwe', // KATAKANA LETTER HO + SMALL E ハ: 'ha', // KATAKANA LETTER HA ヒョウ: 'hyō', // KATAKANA LETTER HI + SMALL YO + U ヒュウ: 'hyū', // KATAKANA LETTER HI + SMALL YU + U ヒャ: 'hya', // KATAKANA LETTER HI + SMALL YA ヒョ: 'hyo', // KATAKANA LETTER HI + SMALL YO ヒュ: 'hyu', // KATAKANA LETTER HI + SMALL YU ヒ: 'hi', // KATAKANA LETTER HI フウ: 'fū', // KATAKANA LETTER HU + U フ: 'fu', // KATAKANA LETTER HU ヘ: 'he', // KATAKANA LETTER HE ホウ: 'hō', // KATAKANA LETTER HO + U ホ: 'ho', // KATAKANA LETTER HO マ: 'ma', // KATAKANA LETTER MA ミョウ: 'myō', // KATAKANA LETTER MI + SMALL YO + U ミュウ: 'myū', // KATAKANA LETTER MI + SMALL YU + U ミャ: 'mya', // KATAKANA LETTER MI + SMALL YA ミョ: 'myo', // KATAKANA LETTER MI + SMALL YO ミュ: 'myu', // KATAKANA LETTER MI + SMALL YU ミ: 'mi', // KATAKANA LETTER MI ムウ: 'mū', // KATAKANA LETTER MU + U ム: 'mu', // KATAKANA LETTER MU メ: 'me', // KATAKANA LETTER ME モウ: 'mō', // KATAKANA LETTER MO + U モ: 'mo', // KATAKANA LETTER MO ヤ: 'ya', // KATAKANA LETTER YA ユウ: 'yū', // KATAKANA LETTER YU + U ユ: 'yu', // KATAKANA LETTER YU ヨウ: 'yō', // KATAKANA LETTER YO + U ヨ: 'yo', // KATAKANA LETTER YO リェ: 'rye', // KATAKANA LETTER RI + SMALL E ラ: 'ra', // KATAKANA LETTER RA リョウ: 'ryō', // KATAKANA LETTER RI + SMALL YO + U リュウ: 'ryū', // KATAKANA LETTER RI + SMALL YU + U リャ: 'rya', // KATAKANA LETTER RI + SMALL YA リョ: 'ryo', // KATAKANA LETTER RI + SMALL YO リュ: 'ryu', // KATAKANA LETTER RI + SMALL YU リ: 'ri', // KATAKANA LETTER RI ルウ: 'rū', // KATAKANA LETTER RU + U ル: 'ru', // KATAKANA LETTER RU レ: 're', // KATAKANA LETTER RE ロウ: 'rō', // KATAKANA LETTER RO + U ロ: 'ro', // KATAKANA LETTER RO ワ: 'wa', // KATAKANA LETTER WA ヰ: 'i', // KATAKANA LETTER WI ヱ: 'e', // KATAKANA LETTER WE ヲ: 'o', // KATAKANA LETTER WO ン: 'n', // KATAKANA LETTER N グァ: 'gwa', // KATAKANA LETTER GU + SMALL A グィ: 'gwi', // KATAKANA LETTER GU + SMALL I グェ: 'gwe', // KATAKANA LETTER GU + SMALL E グォ: 'gwo', // KATAKANA LETTER GU + SMALL O ガ: 'ga', // KATAKANA LETTER GA ギョウ: 'gyō', // KATAKANA LETTER GI + SMALL YO + U ギュウ: 'gyū', // KATAKANA LETTER GI + SMALL YU + U ギャ: 'gya', // KATAKANA LETTER GI + SMALL YA ギョ: 'gyo', // KATAKANA LETTER GI + SMALL YO ギュ: 'gyu', // KATAKANA LETTER GI + SMALL YU ギ: 'gi', // KATAKANA LETTER GI グウ: 'gū', // KATAKANA LETTER GU + U グ: 'gu', // KATAKANA LETTER GU ゲ: 'ge', // KATAKANA LETTER GE ゴウ: 'gō', // KATAKANA LETTER GO + U ゴ: 'go', // KATAKANA LETTER GO ジェ: 'je', // KATAKANA LETTER ZI + SMALL E ズィ: 'zi', // KATAKANA LETTER ZU + SMALL I ザ: 'za', // KATAKANA LETTER ZA ジョウ: 'jō', // KATAKANA LETTER ZI + SMALL YO + U ジュウ: 'jū', // KATAKANA LETTER ZI + SMALL YU + U ジャ: 'ja', // KATAKANA LETTER ZI + SMALL YA ジョ: 'jo', // KATAKANA LETTER ZI + SMALL YO ジュ: 'ju', // KATAKANA LETTER ZI + SMALL YU ジ: 'ji', // KATAKANA LETTER ZI ズウ: 'zū', // KATAKANA LETTER ZU + U ズ: 'zu', // KATAKANA LETTER ZU ゼ: 'ze', // KATAKANA LETTER ZE ゾウ: 'zō', // KATAKANA LETTER ZO + U ゾ: 'zo', // KATAKANA LETTER ZO ダ: 'da', // KATAKANA LETTER DA ヂ: 'ji', // KATAKANA LETTER DI ヅウ: 'zū', // KATAKANA LETTER DU + U ヅ: 'zu', // KATAKANA LETTER DU デ: 'de', // KATAKANA LETTER DE ドウ: 'dō', // KATAKANA LETTER DO + U ド: 'do', // KATAKANA LETTER DO ブュ: 'byu', // KATAKANA LETTER BU + SMALL YU バ: 'ba', // KATAKANA LETTER BA ビョウ: 'byō', // KATAKANA LETTER BI + SMALL YO + U ビュウ: 'byū', // KATAKANA LETTER BI + SMALL YU + U ビャ: 'bya', // KATAKANA LETTER BI + SMALL YA ビョ: 'byo', // KATAKANA LETTER BI + SMALL YO ビュ: 'byu', // KATAKANA LETTER BI + SMALL YU ビ: 'bi', // KATAKANA LETTER BI ブウ: 'bū', // KATAKANA LETTER BU + U ブ: 'bu', // KATAKANA LETTER BU ベ: 'be', // KATAKANA LETTER BE ボウ: 'bō', // KATAKANA LETTER BO + U ボ: 'bo', // KATAKANA LETTER BO パ: 'pa', // KATAKANA LETTER PA ピョウ: 'pyō', // KATAKANA LETTER PI + SMALL YO + U ピュウ: 'pyū', // KATAKANA LETTER PI + SMALL YU + U ピャ: 'pya', // KATAKANA LETTER PI + SMALL YA ピョ: 'pyo', // KATAKANA LETTER PI + SMALL YO ピュ: 'pyu', // KATAKANA LETTER PI + SMALL YU ピ: 'pi', // KATAKANA LETTER PI プウ: 'pū', // KATAKANA LETTER PU + U プ: 'pu', // KATAKANA LETTER PU ペ: 'pe', // KATAKANA LETTER PE ポウ: 'pō', // KATAKANA LETTER PO + U ポ: 'po', // KATAKANA LETTER PO ヴ: 'v', // KATAKANA LETTER VU '・': ' ', // KATAKANA MIDDLE DOT いぇ: 'ye', // HIRAGANA LETTER I + SMALL E あ: 'a', // HIRAGANA LETTER A い: 'i', // HIRAGANA LETTER I うう: 'ū', // HIRAGANA LETTER U + U う: 'u', // HIRAGANA LETTER U え: 'e', // HIRAGANA LETTER E おう: 'ō', // HIRAGANA LETTER O + U お: 'o', // HIRAGANA LETTER O くぁ: 'kwa', // HIRAGANA LETTER KU + SMALL A くぃ: 'kwi', // HIRAGANA LETTER KU + SMALL I くぇ: 'kwe', // HIRAGANA LETTER KU + SMALL E くぉ: 'kwo', // HIRAGANA LETTER KU + SMALL O か: 'ka', // HIRAGANA LETTER KA きょう: 'kyō', // HIRAGANA LETTER KI + SMALL YO + U きゅう: 'kyū', // HIRAGANA LETTER KI + SMALL YU + U きゃ: 'kya', // HIRAGANA LETTER KI + SMALL YA きょ: 'kyo', // HIRAGANA LETTER KI + SMALL YO きゅ: 'kyu', // HIRAGANA LETTER KI + SMALL YU き: 'ki', // HIRAGANA LETTER KI くう: 'kū', // HIRAGANA LETTER KU + U く: 'ku', // HIRAGANA LETTER KU け: 'ke', // HIRAGANA LETTER KE こう: 'kō', // HIRAGANA LETTER KO + U こ: 'ko', // HIRAGANA LETTER KO しぇ: 'she', // HIRAGANA LETTER SI + SMALL E すぃ: 'si', // HIRAGANA LETTER SU + SMALL I さ: 'sa', // HIRAGANA LETTER SA しょう: 'shō', // HIRAGANA LETTER SI + SMALL YO + U しゅう: 'shū', // HIRAGANA LETTER SI + SMALL YU + U しゃ: 'sha', // HIRAGANA LETTER SI + SMALL YA しょ: 'sho', // HIRAGANA LETTER SI + SMALL YO しゅ: 'shu', // HIRAGANA LETTER SI + SMALL YU し: 'shi', // HIRAGANA LETTER SI すう: 'sū', // HIRAGANA LETTER SU + U す: 'su', // HIRAGANA LETTER SU せ: 'se', // HIRAGANA LETTER SE そう: 'sō', // HIRAGANA LETTER SO + U そ: 'so', // HIRAGANA LETTER SO ちぇ: 'che', // HIRAGANA LETTER TI + SMALL E つぁ: 'tsa', // HIRAGANA LETTER TU + SMALL A つぃ: 'tsi', // HIRAGANA LETTER TU + SMALL I つぇ: 'tse', // HIRAGANA LETTER TU + SMALL E つぉ: 'tso', // HIRAGANA LETTER TU + SMALL O てぃ: 'ti', // HIRAGANA LETTER TE + SMALL I でぃ: 'di', // HIRAGANA LETTER DE + SMALL I てゅ: 'tyu', // HIRAGANA LETTER TE + SMALL YU でゅ: 'dyu', // HIRAGANA LETTER DE + SMALL YU とぃ: 'twi', // HIRAGANA LETTER TO + SMALL I とぅ: 'tu', // HIRAGANA LETTER TO + SMALL U どぃ: 'dwi', // HIRAGANA LETTER DO + SMALL I どぅ: 'du', // HIRAGANA LETTER DO + SMALL U た: 'ta', // HIRAGANA LETTER TA ちょう: 'chō', // HIRAGANA LETTER TI + SMALL YO + U ちゅう: 'chū', // HIRAGANA LETTER TI + SMALL YU + U ちゃ: 'cha', // HIRAGANA LETTER TI + SMALL YA ちょ: 'cho', // HIRAGANA LETTER TI + SMALL YO ちゅ: 'chu', // HIRAGANA LETTER TI + SMALL YU ち: 'chi', // HIRAGANA LETTER TI つう: 'tsū', // HIRAGANA LETTER TU + U つ: 'tsu', // HIRAGANA LETTER TU て: 'te', // HIRAGANA LETTER TE とう: 'tō', // HIRAGANA LETTER TO + U と: 'to', // HIRAGANA LETTER TO な: 'na', // HIRAGANA LETTER NA にょう: 'nyō', // HIRAGANA LETTER NI + SMALL YO + U にゅう: 'nyū', // HIRAGANA LETTER NI + SMALL YU + U にゃ: 'nya', // HIRAGANA LETTER NI + SMALL YA にょ: 'nyo', // HIRAGANA LETTER NI + SMALL YO にゅ: 'nyu', // HIRAGANA LETTER NI + SMALL YU に: 'ni', // HIRAGANA LETTER NI ぬう: 'nū', // HIRAGANA LETTER NU + U ぬ: 'nu', // HIRAGANA LETTER NU ね: 'ne', // HIRAGANA LETTER NE のう: 'nō', // HIRAGANA LETTER NO + U の: 'no', // HIRAGANA LETTER NO ふぁ: 'fa', // HIRAGANA LETTER HU + SMALL A ふぃ: 'fi', // HIRAGANA LETTER HU + SMALL I // 'ふぅ': 'fu', // HIRAGANA LETTER HU + SMALL U ふぇ: 'fe', // HIRAGANA LETTER HU + SMALL E ふぉ: 'fo', // HIRAGANA LETTER HU + SMALL O ふゅ: 'fyu', // HIRAGANA LETTER HU + SMALL YU ほぇ: 'hwe', // HIRAGANA LETTER HO + SMALL E は: 'ha', // HIRAGANA LETTER HA ひょう: 'hyō', // HIRAGANA LETTER HI + SMALL YO + U ひゅう: 'hyū', // HIRAGANA LETTER HI + SMALL YU + U ひゃ: 'hya', // HIRAGANA LETTER HI + SMALL YA ひょ: 'hyo', // HIRAGANA LETTER HI + SMALL YO ひゅ: 'hyu', // HIRAGANA LETTER HI + SMALL YU ひ: 'hi', // HIRAGANA LETTER HI ふう: 'fū', // HIRAGANA LETTER HU + U ふ: 'fu', // HIRAGANA LETTER HU へ: 'he', // HIRAGANA LETTER HE ほう: 'hō', // HIRAGANA LETTER HO + U ほ: 'ho', // HIRAGANA LETTER HO ま: 'ma', // HIRAGANA LETTER MA みょう: 'myō', // HIRAGANA LETTER MI + SMALL YO + U みゅう: 'myū', // HIRAGANA LETTER MI + SMALL YU + U みゃ: 'mya', // HIRAGANA LETTER MI + SMALL YA みょ: 'myo', // HIRAGANA LETTER MI + SMALL YO みゅ: 'myu', // HIRAGANA LETTER MI + SMALL YU み: 'mi', // HIRAGANA LETTER MI むう: 'mū', // HIRAGANA LETTER MU + U む: 'mu', // HIRAGANA LETTER MU め: 'me', // HIRAGANA LETTER ME もう: 'mō', // HIRAGANA LETTER MO + U も: 'mo', // HIRAGANA LETTER MO や: 'ya', // HIRAGANA LETTER YA ゆう: 'yū', // HIRAGANA LETTER YU + U ゆ: 'yu', // HIRAGANA LETTER YU よう: 'yō', // HIRAGANA LETTER YO + U よ: 'yo', // HIRAGANA LETTER YO りぇ: 'rye', // HIRAGANA LETTER RI + SMALL E ら: 'ra', // HIRAGANA LETTER RA りょう: 'ryō', // HIRAGANA LETTER RI + SMALL YO + U りゅう: 'ryū', // HIRAGANA LETTER RI + SMALL YU + U りゃ: 'rya', // HIRAGANA LETTER RI + SMALL YA りょ: 'ryo', // HIRAGANA LETTER RI + SMALL YO りゅ: 'ryu', // HIRAGANA LETTER RI + SMALL YU り: 'ri', // HIRAGANA LETTER RI るう: 'rū', // HIRAGANA LETTER RU + U る: 'ru', // HIRAGANA LETTER RU れ: 're', // HIRAGANA LETTER RE ろう: 'rō', // HIRAGANA LETTER RO + U ろ: 'ro', // HIRAGANA LETTER RO わ: 'wa', // HIRAGANA LETTER WA ゐ: 'i', // HIRAGANA LETTER WI ゑ: 'e', // HIRAGANA LETTER WE を: 'o', // HIRAGANA LETTER WO ん: 'n', // HIRAGANA LETTER N ぐぁ: 'gwa', // HIRAGANA LETTER GU + SMALL A ぐぃ: 'gwi', // HIRAGANA LETTER GU + SMALL I ぐぇ: 'gwe', // HIRAGANA LETTER GU + SMALL E ぐぉ: 'gwo', // HIRAGANA LETTER GU + SMALL O が: 'ga', // HIRAGANA LETTER GA ぎょう: 'gyō', // HIRAGANA LETTER GI + SMALL YO + U ぎゅう: 'gyū', // HIRAGANA LETTER GI + SMALL YU + U ぎゃ: 'gya', // HIRAGANA LETTER GI + SMALL YA ぎょ: 'gyo', // HIRAGANA LETTER GI + SMALL YO ぎゅ: 'gyu', // HIRAGANA LETTER GI + SMALL YU ぎ: 'gi', // HIRAGANA LETTER GI ぐう: 'gū', // HIRAGANA LETTER GU + U ぐ: 'gu', // HIRAGANA LETTER GU げ: 'ge', // HIRAGANA LETTER GE ごう: 'gō', // HIRAGANA LETTER GO + U ご: 'go', // HIRAGANA LETTER GO じぇ: 'je', // HIRAGANA LETTER ZI + SMALL E ずぃ: 'zi', // HIRAGANA LETTER ZU + SMALL I ざ: 'za', // HIRAGANA LETTER ZA じょう: 'jō', // HIRAGANA LETTER ZI + SMALL YO + U じゅう: 'jū', // HIRAGANA LETTER ZI + SMALL YU + U じゃ: 'ja', // HIRAGANA LETTER ZI + SMALL YA じょ: 'jo', // HIRAGANA LETTER ZI + SMALL YO じゅ: 'ju', // HIRAGANA LETTER ZI + SMALL YU じ: 'ji', // HIRAGANA LETTER ZI ずう: 'zū', // HIRAGANA LETTER ZU + U ず: 'zu', // HIRAGANA LETTER ZU ぜ: 'ze', // HIRAGANA LETTER ZE ぞう: 'zō', // HIRAGANA LETTER ZO + U ぞ: 'zo', // HIRAGANA LETTER ZO だ: 'da', // HIRAGANA LETTER DA ぢ: 'ji', // HIRAGANA LETTER DI づう: 'zū', // HIRAGANA LETTER DU + U づ: 'zu', // HIRAGANA LETTER DU で: 'de', // HIRAGANA LETTER DE どう: 'dō', // HIRAGANA LETTER DO + U ど: 'do', // HIRAGANA LETTER DO ぶゅ: 'byu', // HIRAGANA LETTER BU + SMALL YU ば: 'ba', // HIRAGANA LETTER BA びょう: 'byō', // HIRAGANA LETTER BI + SMALL YO + U びゅう: 'byū', // HIRAGANA LETTER BI + SMALL YU + U びゃ: 'bya', // HIRAGANA LETTER BI + SMALL YA びょ: 'byo', // HIRAGANA LETTER BI + SMALL YO びゅ: 'byu', // HIRAGANA LETTER BI + SMALL YU び: 'bi', // HIRAGANA LETTER BI ぶう: 'bū', // HIRAGANA LETTER BU + U ぶ: 'bu', // HIRAGANA LETTER BU べ: 'be', // HIRAGANA LETTER BE ぼう: 'bō', // HIRAGANA LETTER BO + U ぼ: 'bo', // HIRAGANA LETTER BO ぱ: 'pa', // HIRAGANA LETTER PA ぴょう: 'pyō', // HIRAGANA LETTER PI + SMALL YO + U ぴゅう: 'pyū', // HIRAGANA LETTER PI + SMALL YU + U ぴゃ: 'pya', // HIRAGANA LETTER PI + SMALL YA ぴょ: 'pyo', // HIRAGANA LETTER PI + SMALL YO ぴゅ: 'pyu', // HIRAGANA LETTER PI + SMALL YU ぴ: 'pi', // HIRAGANA LETTER PI ぷう: 'pū', // HIRAGANA LETTER PU + U ぷ: 'pu', // HIRAGANA LETTER PU ぺ: 'pe', // HIRAGANA LETTER PE ぽう: 'pō', // HIRAGANA LETTER PO + U ぽ: 'po', // HIRAGANA LETTER PO ゔ: 'v' // HIRAGANA LETTER VU } const transliterationTable3 = { aァ: 'ā', aぁ: 'ā', iィー: 'ī', iィ: 'ī', iぃー: 'ī', iぃ: 'ī', aー: 'ā', iー: 'ī', uー: 'ū', eー: 'ē', oー: 'ō', // Fallback for small vowels ァ: 'a', ィ: 'i', ゥ: 'u', ェ: 'e', ォ: 'o', ぁ: 'a', ぃ: 'i', ぅ: 'u', ぇ: 'e', ぉ: 'o' } const replace1 = replacer(transliterationTable1) const replace2 = replacer(transliterationTable2) const replace3 = replacer(transliterationTable3) module.exports = function (str) { str = replace1(str) str = str .replace(/ッ(?=[ン])/g, 'n')// KATAKANA LETTER SMALL TU .replace(/っ(?=[ん])/g, 'n')// HIRAGANA LETTER SMALL TU .replace(/ン(?=[バビブベボパピプペポマミムメモ])/g, 'm')// KATAKANA LETTER N .replace(/ん(?=[ばびぶべぼぱぴぷぺぽまみむめも])/g, 'm')// HIRAGANA LETTER N .replace(/ン(?=[ヤユヨアイウエオ])/g, "n'")// KATAKANA LETTER N .replace(/ん(?=[やゆよあいうえお])/g, "n'")// HIRAGANA LETTER N str = str .replace(/ッ(?=[カキクケコ])/g, 'k')// KATAKANA LETTER SMALL TU .replace(/っ(?=[かきくけこ])/g, 'k')// HIRAGANA LETTER SMALL TU .replace(/ッ(?=[ガギグゲゴ])/g, 'g')// KATAKANA LETTER SMALL TU .replace(/っ(?=[がぎぐげご])/g, 'g')// HIRAGANA LETTER SMALL TU .replace(/ッ(?=[サシスセソ])/g, 's')// KATAKANA LETTER SMALL TU .replace(/っ(?=[さしすせそ])/g, 's')// HIRAGANA LETTER SMALL TU .replace(/ッ(?=[ザズゼゾ])/g, 'z')// KATAKANA LETTER SMALL TU .replace(/っ(?=[ざずぜぞ])/g, 'z')// HIRAGANA LETTER SMALL TU .replace(/ッ(?=[ジ])/g, 'j')// KATAKANA LETTER SMALL TU .replace(/っ(?=[じ])/g, 'j')// HIRAGANA LETTER SMALL TU .replace(/ッ(?=[タチツテト])/g, 't')// KATAKANA LETTER SMALL TU .replace(/っ(?=[たちつてと])/g, 't')// HIRAGANA LETTER SMALL TU .replace(/ッ(?=[ダヂヅデド])/g, 't')// KATAKANA LETTER SMALL TU .replace(/っ(?=[だぢづでど])/g, 't')// HIRAGANA LETTER SMALL TU .replace(/ッ(?=[ハヒヘホ])/g, 'h')// KATAKANA LETTER SMALL TU .replace(/っ(?=[はひへほ])/g, 'h')// HIRAGANA LETTER SMALL TU .replace(/ッ(?=[フ])/g, 'f')// KATAKANA LETTER SMALL TU .replace(/っ(?=[ふ])/g, 'f')// HIRAGANA LETTER SMALL TU .replace(/ッ(?=[バビブベボ])/g, 'b')// KATAKANA LETTER SMALL TU .replace(/っ(?=[ばびぶべぼ])/g, 'b')// HIRAGANA LETTER SMALL TU .replace(/ッ(?=[パピプペポ])/g, 'p')// KATAKANA LETTER SMALL TU .replace(/っ(?=[ぱぴぷぺぽ])/g, 'p')// HIRAGANA LETTER SMALL TU .replace(/ッ(?=[ラリルレロ])/g, 'r')// KATAKANA LETTER SMALL TU .replace(/っ(?=[らりるれろ])/g, 'r')// HIRAGANA LETTER SMALL TU str = replace2(str) str = replace3(str) str = str .replace(/(ッ|っ)\B/g, 't')// FINAL KATAKANA LETTER SMALL TU return str } ================================================ FILE: lib/natural/trie/index.d.ts ================================================ /* Copyright (c) 2022, Dylan R. E. Moonfire , Emily Marigold Klassen , Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ export class Trie { constructor (caseSensitive?: boolean) addString (string: string): boolean addStrings (list: string[]): void contains (string: string): boolean findPrefix (search: string): Array findMatchesOnPath (search: string): string[] keysWithPrefix (prefix: string): string[] getSize (): number } ================================================ FILE: lib/natural/trie/index.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' exports.Trie = require('./trie') ================================================ FILE: lib/natural/trie/trie.js ================================================ /* Copyright (c) 2014 Ken Koch Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' /** * The basis of the TRIE structure. **/ class Trie { constructor (caseSensitive) { this.dictionary = Object.create(null) // {} this.$ = false if (typeof caseSensitive === 'undefined') { caseSensitive = true } this.cs = caseSensitive } /** * Add a single string to the TRIE, returns true if the word was already in the * trie. **/ addString (string) { if (this.cs === false) { string = string.toLowerCase() } // If the string has only one letter, mark this as a word. if (string.length === 0) { const wasWord = this.$ this.$ = true return wasWord } // Make sure theres a Trie node in our dictionary let next = this.dictionary[string[0]] if (!next) { this.dictionary[string[0]] = new Trie(this.cs) next = this.dictionary[string[0]] } // Continue adding the string return next.addString(string.substring(1)) } /** * Add multiple strings to the TRIE **/ addStrings (list) { for (const i in list) { this.addString(list[i]) } } /** * A function to search the TRIE and return an array of * words which have same prefix * for example if we had the following words in our database: * a, ab, bc, cd, abc, abd * and we search the string: a * we will get : * [a, ab, abc, abd] **/ keysWithPrefix (prefix) { if (this.caseSensitive === false) { prefix = prefix.toLowerCase() } function isEmpty (object) { for (const key in object) if (object[key]) return false return true } function get (node, word) { if (!node) return null if (word.length === 0) return node return get(node.dictionary[word[0]], word.substring(1)) } function recurse (node, stringAgg, resultsAgg) { if (!node) return // Check if this is a word if (node.$) { resultsAgg.push(stringAgg) } if (isEmpty(node.dictionary)) { return } for (const c in node.dictionary) { recurse(node.dictionary[c], stringAgg + c, resultsAgg) } } const results = [] recurse(get(this, prefix), prefix, results) return results } /** * A function to search the given string and return true if it lands * on on a word. Essentially testing if the word exists in the database. **/ contains (string) { if (this.cs === false) { string = string.toLowerCase() } if (string.length === 0) { return this.$ } // Otherwise, we need to continue searching const firstLetter = string[0] const next = this.dictionary[firstLetter] // If we don't have a node, this isn't a word if (!next) { return false } // Otherwise continue the search at the next node return next.contains(string.substring(1)) } /** * A function to search the TRIE and return an array of words which were encountered along the way. * This will only return words with full prefix matches. * for example if we had the following words in our database: * a, ab, bc, cd, abc * and we searched the string: abcd * we would get only: * [a, ab, abc] **/ findMatchesOnPath (search) { if (this.cs === false) { search = search.toLowerCase() } function recurse (node, search, stringAgg, resultsAgg) { // Check if this is a word. if (node.$) { resultsAgg.push(stringAgg) } // Check if the have completed the seearch if (search.length === 0) { return resultsAgg } // Otherwise, continue searching const next = node.dictionary[search[0]] if (!next) { return resultsAgg } return recurse(next, search.substring(1), stringAgg + search[0], resultsAgg) }; return recurse(this, search, '', []) } /** * Returns the longest match and the remaining part that could not be matched. * inspired by [NLTK containers.trie.find_prefix](http://nltk.googlecode.com/svn-/trunk/doc/api/nltk.containers.Trie-class.html). **/ findPrefix (search) { if (this.cs === false) { search = search.toLowerCase() } function recurse (node, search, stringAgg, lastWord) { // Check if this is a word if (node.$) { lastWord = stringAgg } // Check if we have no more to search if (search.length === 0) { return [lastWord, search] } // Continue searching const next = node.dictionary[search[0]] if (!next) { return [lastWord, search] } return recurse(next, search.substring(1), stringAgg + search[0], lastWord) }; return recurse(this, search, '', null) } /** * Computes the number of actual nodes from this node to the end. * Note: This involves traversing the entire structure and may not be * good for frequent use. **/ getSize () { let total = 1 for (const c in this.dictionary) { total += this.dictionary[c].getSize() } return total } } /** * EXPORT THE TRIE **/ module.exports = Trie ================================================ FILE: lib/natural/util/abbreviations_en.js ================================================ const knownAbbreviations = [ 'approx.', 'appt.', 'apt.', 'A.S.A.P.', 'B.Y.O.B.', 'c/o', 'dept.', 'D.I.Y.', 'Dr.', 'e.g.', 'est.', 'E.T.A.', 'Inc.', 'min.', 'misc.', 'Mr.', 'Mrs.', 'no.', 'R.S.V.P.', 'tel.', 'temp.', 'vet.', 'vs.', 'i.e.' ] exports.knownAbbreviations = knownAbbreviations ================================================ FILE: lib/natural/util/abbreviations_es.js ================================================ const knownAbbreviations = [ // Titles (Sir, Doctor, etc) 'Sr.', 'Sra.', 'Srta.', 'Srs.', 'Sras.', 'Dr.', 'Dra.', 'Drs.', 'Dras.', 'Lic.', 'Licda.', 'Licdo.', 'Licds.', 'Ings.', 'Ing.', 'Arq.', 'Arqs.', 'Prof.', 'Profa.', 'Profs.', 'Profas.', // Generals 'etc.', 'e.g.', 'i.e.', 'p.ej.', 'p.e.', 'a.m.', 'p.m.', 'núm.', 'núms.', 'n.os', 'n.os.', 'ud.', 'uds.', 'c/ap.', 'c/u.', 's/n.', 'av.', 'pto.', 'ptos.', 'pág.', 'págs.', 'vol.', 'vols.', 'ed.', 'eds.', 'cap.', 'caps.', 'mín.', 'máx.', 'aprox.', 'ant.', 'sig.', 'hist.', 'biol.', 'quím.', 'mat.', 'psic.', 'adj.', 'adv.', 'art.', 'arts.', 'vb.', 'vbs.', 'sust.', 'susts.', 'prep.', 'preps.', // Legal written in Spanish 'Art.', 'Arts.', 'Inc.', 'Incs.', 'const.', 'Cód.', 'Códs.', 'C.C.', 'C.P.', 'C.N.', 'DNU.', 'DTO.', 'Res.', 'Disp.', 'Disps.', 'C.P.C.C.', 'C.C.Y.C.', 'expte.', 'exptes.', 'fs.', 'fjs.', 'op.', 'cf.', 'cit.', 'loc. cit.', 'ut supra.', 'vgr.', 'ap.', 'cfr.', 'ss.', // Latin-legal written in Spanish 'et al.', 'ibid.', 'ibíd.', 'op. cit.', 'loc. cit.', 'id.', 'vs.', 'a priori.', 'a posteriori.', 'sine die.' ] exports.knownAbbreviations = knownAbbreviations ================================================ FILE: lib/natural/util/bag.js ================================================ /* Copyright (c) 2014, Lee Wenzhu Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' class Bag { constructor () { this.dictionary = [] this.nElement = 0 } add (element) { this.dictionary.push(element) this.nElement++ return this } isEmpty () { return this.nElement > 0 } contains (item) { return this.dictionary.indexOf(item) >= 0 } /** * unpack the bag , and get all items */ unpack () { // return a copy is better than original return this.dictionary.slice() } } module.exports = Bag ================================================ FILE: lib/natural/util/directed_edge.js ================================================ /* Copyright (c) 2014, Lee Wenzhu Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ const util = require('util') class DirectedEdge { constructor (start, end, weight) { this.start = start this.end = end this.weight = weight } weight () { return this.weight } from () { return this.start } to () { return this.end } toString () { return util.format('%s -> %s, %s', this.start, this.end, this.weight) } } module.exports = DirectedEdge ================================================ FILE: lib/natural/util/edge_weighted_digraph.js ================================================ /* Copyright (c) 2014, Lee Wenzhu Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const Bag = require('./bag') const DirectedEdge = require('./directed_edge') class EdgeWeightedDigraph { constructor () { this.edgesNum = 0 this.adj = [] // adjacency list } /** * the number of vertexs saved. */ v () { return this.adj.length } /** * the number of edges saved. */ e () { return this.edgesNum } add (start, end, weight) { const e = new DirectedEdge(start, end, weight) this.addEdge(e) } addEdge (e) { if (!this.adj[e.from()]) { this.adj[e.from()] = new Bag() } this.adj[e.from()].add(e) this.edgesNum++ } /** * use callback on all edges from v. */ getAdj (v) { if (!this.adj[v]) return [] return this.adj[v].unpack() } /** * use callback on all edges. */ edges () { const adj = this.adj const list = new Bag() for (const i in adj) { adj[i].unpack().forEach(function (item) { list.add(item) }) } return list.unpack() } toString () { const result = [] const list = this.edges() list.forEach(function (edge) { result.push(edge.toString()) }) return result.join('\n') } } module.exports = EdgeWeightedDigraph ================================================ FILE: lib/natural/util/index.d.ts ================================================ /* Copyright (c) 2022, Dylan R. E. Moonfire , Emily Marigold Klassen , Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ export let stopwords: string[] export let abbreviations: string[] export let abbreviationsEs: string[] declare class Bag { add (element: T): Bag isEmpty (): boolean contains (item: T): boolean unpack (): T[] } declare class DirectedEdge { constructor (start: number, end: number, weight: number) weight (): number from (): number to (): number toString (): string } export class EdgeWeightedDigraph { edgesNum: number adj: Array> add (start: number, end: number, weight: number): void addEdge (e: DirectedEdge): void v (): number e (): number getAdj (v: number): DirectedEdge[] edges (): DirectedEdge[] toString (): string } export class ShortestPathTree { constructor (diagraph: EdgeWeightedDigraph, start: number) relaxEdge (e: DirectedEdge): void relaxVertex (digraph: EdgeWeightedDigraph, vertex: number, tree: ShortestPathTree): void getDistTo (vertex: number): number hasPathTo (vertex: number): boolean pathTo (vertex: number): number[] } export class LongestPathTree { constructor (diagraph: EdgeWeightedDigraph, start: number) relaxEdge (e: DirectedEdge): void relaxVertex (digraph: EdgeWeightedDigraph, vertex: number, tree: LongestPathTree): void getDistTo (vertex: number): number hasPathTo (vertex: number): boolean pathTo (vertex: number): number[] } export class Topological { constructor (digraph: EdgeWeightedDigraph) isDAG (): boolean order (): number[] } export * from './storage' ================================================ FILE: lib/natural/util/index.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' exports.stopwords = require('./stopwords').words exports.abbreviations = require('./abbreviations_en').knownAbbreviations exports.abbreviations_es = require('./abbreviations_es').knownAbbreviations exports.ShortestPathTree = require('./shortest_path_tree') exports.LongestPathTree = require('./longest_path_tree') exports.DirectedEdge = require('./directed_edge') exports.EdgeWeightedDigraph = require('./edge_weighted_digraph') exports.Topological = require('./topological') exports.StorageBackend = require('./storage') ================================================ FILE: lib/natural/util/longest_path_tree.js ================================================ /* Copyright (c) 2014, Lee Wenzhu Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' // const EdgeWeightedDigraph = require('./edge_weighted_digraph') const Topological = require('./topological') /** * The LongestPathTree represents a data type for solving the * single-source longest paths problem in edge-weighted directed * acyclic graphs (DAGs). The edge weights can be positive, negative, or zero. * This implementation uses a topological-sort based algorithm. * the distTo() and hasPathTo() methods take * constant time and the pathTo() method takes time proportional to the * number of edges in the longest path returned. */ class LongestPathTree { constructor (digraph, start) { const _this = this this.edgeTo = [] this.distTo = [] this.distTo[start] = 0.0 this.start = start this.top = new Topological(digraph) this.top.order().forEach(function (vertex) { _this.relaxVertex(digraph, vertex, _this) }) } relaxEdge (e) { const distTo = this.distTo const edgeTo = this.edgeTo const v = e.from(); const w = e.to() if (distTo[w] < distTo[v] + e.weight) { distTo[w] = distTo[v] + e.weight edgeTo[w] = e } } /** * relax a vertex v in the specified digraph g * @param {EdgeWeightedDigraph} the apecified digraph * @param {Vertex} v vertex to be relaxed */ relaxVertex (digraph, vertex, tree) { const distTo = tree.distTo const edgeTo = tree.edgeTo digraph.getAdj(vertex).forEach(function (edge) { const w = edge.to() distTo[w] = distTo[w] || 0.0 distTo[vertex] = distTo[vertex] || 0.0 if (distTo[w] < distTo[vertex] + edge.weight) { // in case of the result of 0.28+0.34 is 0.62000001 distTo[w] = parseFloat((distTo[vertex] + edge.weight).toFixed(2)) edgeTo[w] = edge } }) } getDistTo (v) { return this.distTo[v] } hasPathTo (v) { return !!this.distTo[v] } pathTo (v) { if (!this.hasPathTo(v)) return [] const path = [] const edgeTo = this.edgeTo for (let e = edgeTo[v]; e; e = edgeTo[e.from()]) { path.push(e.to()) } path.push(this.start) return path.reverse() } } module.exports = LongestPathTree ================================================ FILE: lib/natural/util/shortest_path_tree.js ================================================ /* Copyright (c) 2014, Lee Wenzhu Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' // const EdgeWeightedDigraph = require('./edge_weighted_digraph') const Topological = require('./topological') /** * The ShortestPathTree represents a data type for solving the * single-source shortest paths problem in edge-weighted directed * acyclic graphs (DAGs). The edge weights can be positive, negative, or zero. * This implementation uses a topological-sort based algorithm. * the distTo() and hasPathTo() methods take * constant time and the pathTo() method takes time proportional to the * number of edges in the longest path returned. */ class ShortestPathTree { constructor (digraph, start) { const _this = this this.edgeTo = [] this.distTo = [] this.distTo[start] = 0.0 this.start = start this.top = new Topological(digraph) this.top.order().forEach(function (vertex) { _this.relaxVertex(digraph, vertex, _this) }) } relaxEdge (e) { const distTo = this.distTo const edgeTo = this.edgeTo const v = e.from(); const w = e.to() if (distTo[w] > distTo[v] + e.weight) { distTo[w] = distTo[v] + e.weight edgeTo[w] = e } } /** * relax a vertex v in the specified digraph g * @param {EdgeWeightedDigraph} the apecified digraph * @param {Vertex} v vertex to be relaxed */ relaxVertex (digraph, vertex, tree) { const distTo = tree.distTo const edgeTo = tree.edgeTo digraph.getAdj(vertex).forEach(function (edge) { const w = edge.to() distTo[w] = /\d/.test(distTo[w]) ? distTo[w] : Number.MAX_VALUE distTo[vertex] = distTo[vertex] || 0 if (distTo[w] > distTo[vertex] + edge.weight) { // in case of the result of 0.28+0.34 is 0.62000001 distTo[w] = parseFloat((distTo[vertex] + edge.weight).toFixed(2)) edgeTo[w] = edge } }) } getDistTo (v) { return this.distTo[v] } hasPathTo (v) { const dist = this.distTo[v] if (v === this.start) return false return /\d/.test(dist) ? dist !== Number.MAX_VALUE : false } pathTo (v) { if (!this.hasPathTo(v) || v === this.start) return [] const path = [] const edgeTo = this.edgeTo for (let e = edgeTo[v]; e; e = edgeTo[e.from()]) { path.push(e.to()) } path.push(this.start) return path.reverse() } } module.exports = ShortestPathTree ================================================ FILE: lib/natural/util/stopwords.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' // a list of commonly used words that have little meaning and can be excluded // from analysis. const words = [ 'about', 'above', 'after', 'again', 'all', 'also', 'am', 'an', 'and', 'another', 'any', 'are', 'as', 'at', 'be', 'because', 'been', 'before', 'being', 'below', 'between', 'both', 'but', 'by', 'came', 'can', 'cannot', 'come', 'could', 'did', 'do', 'does', 'doing', 'during', 'each', 'few', 'for', 'from', 'further', 'get', 'got', 'has', 'had', 'he', 'have', 'her', 'here', 'him', 'himself', 'his', 'how', 'if', 'in', 'into', 'is', 'it', 'its', 'itself', 'like', 'make', 'many', 'me', 'might', 'more', 'most', 'much', 'must', 'my', 'myself', 'never', 'now', 'of', 'on', 'only', 'or', 'other', 'our', 'ours', 'ourselves', 'out', 'over', 'own', 'said', 'same', 'see', 'she', 'should', 'since', 'so', 'some', 'still', 'such', 'take', 'than', 'that', 'the', 'their', 'theirs', 'them', 'themselves', 'then', 'there', 'these', 'they', 'this', 'those', 'through', 'to', 'too', 'under', 'until', 'up', 'very', 'was', 'way', 'we', 'well', 'were', 'what', 'where', 'when', 'which', 'while', 'who', 'whom', 'with', 'would', 'why', 'you', 'your', 'yours', 'yourself', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '$', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '_'] // tell the world about the noise words. exports.words = words ================================================ FILE: lib/natural/util/stopwords_es.js ================================================ /* Copyright (c) 2011, David Przybilla, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' // a list of commonly used words that have little meaning and can be excluded // from analysis. const words = [ 'a', 'un', 'el', 'ella', 'y', 'sobre', 'de', 'la', 'que', 'en', 'los', 'del', 'se', 'las', 'por', 'un', 'para', 'con', 'no', 'una', 'su', 'al', 'lo', 'como', 'más', 'pero', 'sus', 'le', 'ya', 'o', 'porque', 'cuando', 'muy', 'sin', 'sobre', 'también', 'me', 'hasta', 'donde', 'quien', 'desde', 'nos', 'durante', 'uno', 'ni', 'contra', 'ese', 'eso', 'mí', 'qué', 'otro', 'él', 'cual', 'poco', 'mi', 'tú', 'te', 'ti', 'sí', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '_'] // tell the world about the noise words. exports.words = words ================================================ FILE: lib/natural/util/stopwords_fa.js ================================================ /* Copyright (c) 2011, Chris Umbel Farsi Stop Words by Fardin Koochaki Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' // a list of commonly used words that have little meaning and can be excluded // from analysis. const words = [ // Words 'از', 'با', 'یه', 'برای', 'و', 'باید', 'شاید', // Symbols '؟', '!', '٪', '.', '،', '؛', ':', ';', ',', // Numbers '۱', '۲', '۳', '۴', '۵', '۶', '۷', '۸', '۹', '۰' ] // tell the world about the noise words. exports.words = words ================================================ FILE: lib/natural/util/stopwords_fr.js ================================================ /* Copyright (c) 2014, Ismaël Héry Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ // A list of commonly used french words that have little meaning and can be excluded // from analysis. 'use strict' const words = ['être', 'avoir', 'faire', 'a', 'au', 'aux', 'avec', 'ce', 'ces', 'dans', 'de', 'des', 'du', 'elle', 'en', 'et', 'eux', 'il', 'je', 'la', 'le', 'leur', 'lui', 'ma', 'mais', 'me', 'même', 'mes', 'moi', 'mon', 'ne', 'nos', 'notre', 'nous', 'on', 'ou', 'où', 'par', 'pas', 'pour', 'qu', 'que', 'qui', 'sa', 'se', 'ses', 'son', 'sur', 'ta', 'te', 'tes', 'toi', 'ton', 'tu', 'un', 'une', 'vos', 'votre', 'vous', 'c', 'd', 'j', 'l', 'à', 'm', 'n', 's', 't', 'y', 'été', 'étée', 'étées', 'étés', 'étant', 'suis', 'es', 'est', 'sommes', 'êtes', 'sont', 'serai', 'seras', 'sera', 'serons', 'serez', 'seront', 'serais', 'serait', 'serions', 'seriez', 'seraient', 'étais', 'était', 'étions', 'étiez', 'étaient', 'fus', 'fut', 'fûmes', 'fûtes', 'furent', 'sois', 'soit', 'soyons', 'soyez', 'soient', 'fusse', 'fusses', 'fût', 'fussions', 'fussiez', 'fussent', 'ayant', 'eu', 'eue', 'eues', 'eus', 'ai', 'as', 'avons', 'avez', 'ont', 'aurai', 'auras', 'aura', 'aurons', 'aurez', 'auront', 'aurais', 'aurait', 'aurions', 'auriez', 'auraient', 'avais', 'avait', 'avions', 'aviez', 'avaient', 'eut', 'eûmes', 'eûtes', 'eurent', 'aie', 'aies', 'ait', 'ayons', 'ayez', 'aient', 'eusse', 'eusses', 'eût', 'eussions', 'eussiez', 'eussent', 'ceci', 'cela', 'cet', 'cette', 'ici', 'ils', 'les', 'leurs', 'quel', 'quels', 'quelle', 'quelles', 'sans', 'soi' ] exports.words = words ================================================ FILE: lib/natural/util/stopwords_id.js ================================================ /* Copyright (c) 2017, Alif Bhaskoro, Andy Librian, R. Kukuh (Reimplemented from https://github.com/sastrawi/sastrawi) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ // a list of commonly used words that have little meaning and can be excluded // from analysis. 'use strict' const words = ['a', 'ada', 'adalah', 'adanya', 'adapun', 'agak', 'agaknya', 'agar', 'akan', 'akankah', 'akhir', 'akhiri', 'akhirnya', 'aku', 'akulah', 'amat', 'amatlah', 'anda', 'andalah', 'antar', 'antara', 'antaranya', 'apa', 'apaan', 'apabila', 'apakah', 'apalagi', 'apatah', 'arti', 'artinya', 'asal', 'asalkan', 'atas', 'atau', 'ataukah', 'ataupun', 'awal', 'awalnya', 'b', 'bagai', 'bagaikan', 'bagaimana', 'bagaimanakah', 'bagaimanapun', 'bagainamakah', 'bagi', 'bagian', 'bahkan', 'bahwa', 'bahwasannya', 'bahwasanya', 'baik', 'baiklah', 'bakal', 'bakalan', 'balik', 'banyak', 'bapak', 'baru', 'bawah', 'beberapa', 'begini', 'beginian', 'beginikah', 'beginilah', 'begitu', 'begitukah', 'begitulah', 'begitupun', 'bekerja', 'belakang', 'belakangan', 'belum', 'belumlah', 'benar', 'benarkah', 'benarlah', 'berada', 'berakhir', 'berakhirlah', 'berakhirnya', 'berapa', 'berapakah', 'berapalah', 'berapapun', 'berarti', 'berawal', 'berbagai', 'berdatangan', 'beri', 'berikan', 'berikut', 'berikutnya', 'berjumlah', 'berkali-kali', 'berkata', 'berkehendak', 'berkeinginan', 'berkenaan', 'berlainan', 'berlalu', 'berlangsung', 'berlebihan', 'bermacam', 'bermacam-macam', 'bermaksud', 'bermula', 'bersama', 'bersama-sama', 'bersiap', 'bersiap-siap', 'bertanya', 'bertanya-tanya', 'berturut', 'berturut-turut', 'bertutur', 'berujar', 'berupa', 'besar', 'betul', 'betulkah', 'biasa', 'biasanya', 'bila', 'bilakah', 'bisa', 'bisakah', 'boleh', 'bolehkah', 'bolehlah', 'buat', 'bukan', 'bukankah', 'bukanlah', 'bukannya', 'bulan', 'bung', 'c', 'cara', 'caranya', 'cukup', 'cukupkah', 'cukuplah', 'cuma', 'd', 'dahulu', 'dalam', 'dan', 'dapat', 'dari', 'daripada', 'datang', 'dekat', 'demi', 'demikian', 'demikianlah', 'dengan', 'depan', 'di', 'dia', 'diakhiri', 'diakhirinya', 'dialah', 'diantara', 'diantaranya', 'diberi', 'diberikan', 'diberikannya', 'dibuat', 'dibuatnya', 'didapat', 'didatangkan', 'digunakan', 'diibaratkan', 'diibaratkannya', 'diingat', 'diingatkan', 'diinginkan', 'dijawab', 'dijelaskan', 'dijelaskannya', 'dikarenakan', 'dikatakan', 'dikatakannya', 'dikerjakan', 'diketahui', 'diketahuinya', 'dikira', 'dilakukan', 'dilalui', 'dilihat', 'dimaksud', 'dimaksudkan', 'dimaksudkannya', 'dimaksudnya', 'diminta', 'dimintai', 'dimisalkan', 'dimulai', 'dimulailah', 'dimulainya', 'dimungkinkan', 'dini', 'dipastikan', 'diperbuat', 'diperbuatnya', 'dipergunakan', 'diperkirakan', 'diperlihatkan', 'diperlukan', 'diperlukannya', 'dipersoalkan', 'dipertanyakan', 'dipunyai', 'diri', 'dirinya', 'disampaikan', 'disebut', 'disebutkan', 'disebutkannya', 'disini', 'disinilah', 'ditambahkan', 'ditandaskan', 'ditanya', 'ditanyai', 'ditanyakan', 'ditegaskan', 'ditujukan', 'ditunjuk', 'ditunjuki', 'ditunjukkan', 'ditunjukkannya', 'ditunjuknya', 'dituturkan', 'dituturkannya', 'diucapkan', 'diucapkannya', 'diungkapkan', 'dong', 'dua', 'dulu', 'e', 'empat', 'enak', 'enggak', 'enggaknya', 'entah', 'entahlah', 'f', 'g', 'guna', 'gunakan', 'h', 'hadap', 'hai', 'hal', 'halo', 'hallo', 'hampir', 'hanya', 'hanyalah', 'hari', 'harus', 'haruslah', 'harusnya', 'helo', 'hello', 'hendak', 'hendaklah', 'hendaknya', 'hingga', 'i', 'ia', 'ialah', 'ibarat', 'ibaratkan', 'ibaratnya', 'ibu', 'ikut', 'ingat', 'ingat-ingat', 'ingin', 'inginkah', 'inginkan', 'ini', 'inikah', 'inilah', 'itu', 'itukah', 'itulah', 'j', 'jadi', 'jadilah', 'jadinya', 'jangan', 'jangankan', 'janganlah', 'jauh', 'jawab', 'jawaban', 'jawabnya', 'jelas', 'jelaskan', 'jelaslah', 'jelasnya', 'jika', 'jikalau', 'juga', 'jumlah', 'jumlahnya', 'justru', 'k', 'kadar', 'kala', 'kalau', 'kalaulah', 'kalaupun', 'kali', 'kalian', 'kami', 'kamilah', 'kamu', 'kamulah', 'kan', 'kapan', 'kapankah', 'kapanpun', 'karena', 'karenanya', 'kasus', 'kata', 'katakan', 'katakanlah', 'katanya', 'ke', 'keadaan', 'kebetulan', 'kecil', 'kedua', 'keduanya', 'keinginan', 'kelamaan', 'kelihatan', 'kelihatannya', 'kelima', 'keluar', 'kembali', 'kemudian', 'kemungkinan', 'kemungkinannya', 'kena', 'kenapa', 'kepada', 'kepadanya', 'kerja', 'kesampaian', 'keseluruhan', 'keseluruhannya', 'keterlaluan', 'ketika', 'khusus', 'khususnya', 'kini', 'kinilah', 'kira', 'kira-kira', 'kiranya', 'kita', 'kitalah', 'kok', 'kurang', 'l', 'lagi', 'lagian', 'lah', 'lain', 'lainnya', 'laku', 'lalu', 'lama', 'lamanya', 'langsung', 'lanjut', 'lanjutnya', 'lebih', 'lewat', 'lihat', 'lima', 'luar', 'm', 'macam', 'maka', 'makanya', 'makin', 'maksud', 'malah', 'malahan', 'mampu', 'mampukah', 'mana', 'manakala', 'manalagi', 'masa', 'masalah', 'masalahnya', 'masih', 'masihkah', 'masing', 'masing-masing', 'masuk', 'mata', 'mau', 'maupun', 'melainkan', 'melakukan', 'melalui', 'melihat', 'melihatnya', 'memang', 'memastikan', 'memberi', 'memberikan', 'membuat', 'memerlukan', 'memihak', 'meminta', 'memintakan', 'memisalkan', 'memperbuat', 'mempergunakan', 'memperkirakan', 'memperlihatkan', 'mempersiapkan', 'mempersoalkan', 'mempertanyakan', 'mempunyai', 'memulai', 'memungkinkan', 'menaiki', 'menambahkan', 'menandaskan', 'menanti', 'menanti-nanti', 'menantikan', 'menanya', 'menanyai', 'menanyakan', 'mendapat', 'mendapatkan', 'mendatang', 'mendatangi', 'mendatangkan', 'menegaskan', 'mengakhiri', 'mengapa', 'mengatakan', 'mengatakannya', 'mengenai', 'mengerjakan', 'mengetahui', 'menggunakan', 'menghendaki', 'mengibaratkan', 'mengibaratkannya', 'mengingat', 'mengingatkan', 'menginginkan', 'mengira', 'mengucapkan', 'mengucapkannya', 'mengungkapkan', 'menjadi', 'menjawab', 'menjelaskan', 'menuju', 'menunjuk', 'menunjuki', 'menunjukkan', 'menunjuknya', 'menurut', 'menuturkan', 'menyampaikan', 'menyangkut', 'menyatakan', 'menyebutkan', 'menyeluruh', 'menyiapkan', 'merasa', 'mereka', 'merekalah', 'merupakan', 'meski', 'meskipun', 'meyakini', 'meyakinkan', 'minta', 'mirip', 'misal', 'misalkan', 'misalnya', 'mohon', 'mula', 'mulai', 'mulailah', 'mulanya', 'mungkin', 'mungkinkah', 'n', 'nah', 'naik', 'namun', 'nanti', 'nantinya', 'nya', 'nyaris', 'nyata', 'nyatanya', 'o', 'oleh', 'olehnya', 'orang', 'p', 'pada', 'padahal', 'padanya', 'pak', 'paling', 'panjang', 'pantas', 'para', 'pasti', 'pastilah', 'penting', 'pentingnya', 'per', 'percuma', 'perlu', 'perlukah', 'perlunya', 'pernah', 'persoalan', 'pertama', 'pertama-tama', 'pertanyaan', 'pertanyakan', 'pihak', 'pihaknya', 'pukul', 'pula', 'pun', 'punya', 'q', 'r', 'rasa', 'rasanya', 'rupa', 'rupanya', 's', 'saat', 'saatnya', 'saja', 'sajalah', 'salam', 'saling', 'sama', 'sama-sama', 'sambil', 'sampai', 'sampai-sampai', 'sampaikan', 'sana', 'sangat', 'sangatlah', 'sangkut', 'satu', 'saya', 'sayalah', 'se', 'sebab', 'sebabnya', 'sebagai', 'sebagaimana', 'sebagainya', 'sebagian', 'sebaik', 'sebaik-baiknya', 'sebaiknya', 'sebaliknya', 'sebanyak', 'sebegini', 'sebegitu', 'sebelum', 'sebelumnya', 'sebenarnya', 'seberapa', 'sebesar', 'sebetulnya', 'sebisanya', 'sebuah', 'sebut', 'sebutlah', 'sebutnya', 'secara', 'secukupnya', 'sedang', 'sedangkan', 'sedemikian', 'sedikit', 'sedikitnya', 'seenaknya', 'segala', 'segalanya', 'segera', 'seharusnya', 'sehingga', 'seingat', 'sejak', 'sejauh', 'sejenak', 'sejumlah', 'sekadar', 'sekadarnya', 'sekali', 'sekali-kali', 'sekalian', 'sekaligus', 'sekalipun', 'sekarang', 'sekaranglah', 'sekecil', 'seketika', 'sekiranya', 'sekitar', 'sekitarnya', 'sekurang-kurangnya', 'sekurangnya', 'sela', 'selain', 'selaku', 'selalu', 'selama', 'selama-lamanya', 'selamanya', 'selanjutnya', 'seluruh', 'seluruhnya', 'semacam', 'semakin', 'semampu', 'semampunya', 'semasa', 'semasih', 'semata', 'semata-mata', 'semaunya', 'sementara', 'semisal', 'semisalnya', 'sempat', 'semua', 'semuanya', 'semula', 'sendiri', 'sendirian', 'sendirinya', 'seolah', 'seolah-olah', 'seorang', 'sepanjang', 'sepantasnya', 'sepantasnyalah', 'seperlunya', 'seperti', 'sepertinya', 'sepihak', 'sering', 'seringnya', 'serta', 'serupa', 'sesaat', 'sesama', 'sesampai', 'sesegera', 'sesekali', 'seseorang', 'sesuatu', 'sesuatunya', 'sesudah', 'sesudahnya', 'setelah', 'setempat', 'setengah', 'seterusnya', 'setiap', 'setiba', 'setibanya', 'setidak-tidaknya', 'setidaknya', 'setinggi', 'seusai', 'sewaktu', 'siap', 'siapa', 'siapakah', 'siapapun', 'sini', 'sinilah', 'soal', 'soalnya', 'suatu', 'sudah', 'sudahkah', 'sudahlah', 'supaya', 't', 'tadi', 'tadinya', 'tahu', 'tak', 'tambah', 'tambahnya', 'tampak', 'tampaknya', 'tandas', 'tandasnya', 'tanpa', 'tanya', 'tanyakan', 'tanyanya', 'tapi', 'tegas', 'tegasnya', 'telah', 'tempat', 'tentang', 'tentu', 'tentulah', 'tentunya', 'tepat', 'terakhir', 'terasa', 'terbanyak', 'terdahulu', 'terdapat', 'terdiri', 'terhadap', 'terhadapnya', 'teringat', 'teringat-ingat', 'terjadi', 'terjadilah', 'terjadinya', 'terkira', 'terlalu', 'terlebih', 'terlihat', 'termasuk', 'ternyata', 'tersampaikan', 'tersebut', 'tersebutlah', 'tertentu', 'tertuju', 'terus', 'terutama', 'tetap', 'tetapi', 'tiap', 'tiba', 'tiba-tiba', 'tidak', 'tidakkah', 'tidaklah', 'tiga', 'toh', 'tuju', 'tunjuk', 'turut', 'tutur', 'tuturnya', 'u', 'ucap', 'ucapnya', 'ujar', 'ujarnya', 'umumnya', 'ungkap', 'ungkapnya', 'untuk', 'usah', 'usai', 'v', 'w', 'waduh', 'wah', 'wahai', 'waktunya', 'walau', 'walaupun', 'wong', 'x', 'y', 'ya', 'yaitu', 'yakin', 'yakni', 'yang', 'z'] // tell the world about the noise words. exports.words = words ================================================ FILE: lib/natural/util/stopwords_it.js ================================================ /* Copyright (c) 2011, David Przybilla, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' // a list of commonly used words that have little meaning and can be excluded // from analysis. const words = [ 'ad', 'al', 'allo', 'ai', 'agli', 'all', 'agl', 'alla', 'alle', 'con', 'col', 'coi', 'da', 'dal', 'dallo', 'dai', 'dagli', 'dall', 'dagl', 'dalla', 'dalle', 'di', 'del', 'dello', 'dei', 'degli', 'dell', 'degl', 'della', 'delle', 'in', 'nel', 'nello', 'nei', 'negli', 'nell', 'negl', 'nella', 'nelle', 'su', 'sul', 'sullo', 'sui', 'sugli', 'sull', 'sugl', 'sulla', 'sulle', 'per', 'tra', 'contro', 'io', 'tu', 'lui', 'lei', 'noi', 'voi', 'loro', 'mio', 'mia', 'miei', 'mie', 'tuo', 'tua', 'tuoi', 'tue', 'suo', 'sua', 'suoi', 'sue', 'nostro', 'nostra', 'nostri', 'nostre', 'vostro', 'vostra', 'vostri', 'vostre', 'mi', 'ti', 'ci', 'vi', 'lo', 'la', 'li', 'le', 'gli', 'ne', 'il', 'un', 'uno', 'una', 'ma', 'ed', 'se', 'perché', 'anche', 'come', 'dov', 'dove', 'che', 'chi', 'cui', 'non', 'più', 'quale', 'quanto', 'quanti', 'quanta', 'quante', 'quello', 'quelli', 'quella', 'quelle', 'questo', 'questi', 'questa', 'queste', 'si', 'tutto', 'tutti', 'a', 'c', 'e', 'i', 'l', 'o', 'ho', 'hai', 'ha', 'abbiamo', 'avete', 'hanno', 'abbia', 'abbiate', 'abbiano', 'avrò', 'avrai', 'avrà', 'avremo', 'avrete', 'avranno', 'avrei', 'avresti', 'avrebbe', 'avremmo', 'avreste', 'avrebbero', 'avevo', 'avevi', 'aveva', 'avevamo', 'avevate', 'avevano', 'ebbi', 'avesti', 'ebbe', 'avemmo', 'aveste', 'ebbero', 'avessi', 'avesse', 'avessimo', 'avessero', 'avendo', 'avuto', 'avuta', 'avuti', 'avute', 'sono', 'sei', 'è', 'siamo', 'siete', 'sia', 'siate', 'siano', 'sarò', 'sarai', 'sarà', 'saremo', 'sarete', 'saranno', 'sarei', 'saresti', 'sarebbe', 'saremmo', 'sareste', 'sarebbero', 'ero', 'eri', 'era', 'eravamo', 'eravate', 'erano', 'fui', 'fosti', 'fu', 'fummo', 'foste', 'furono', 'fossi', 'fosse', 'fossimo', 'fossero', 'essendo', 'faccio', 'fai', 'facciamo', 'fanno', 'faccia', 'facciate', 'facciano', 'farò', 'farai', 'farà', 'faremo', 'farete', 'faranno', 'farei', 'faresti', 'farebbe', 'faremmo', 'fareste', 'farebbero', 'facevo', 'facevi', 'faceva', 'facevamo', 'facevate', 'facevano', 'feci', 'facesti', 'fece', 'facemmo', 'faceste', 'fecero', 'facessi', 'facesse', 'facessimo', 'facessero', 'facendo', 'sto', 'stai', 'sta', 'stiamo', 'stanno', 'stia', 'stiate', 'stiano', 'starò', 'starai', 'starà', 'staremo', 'starete', 'staranno', 'starei', 'staresti', 'starebbe', 'staremmo', 'stareste', 'starebbero', 'stavo', 'stavi', 'stava', 'stavamo', 'stavate', 'stavano', 'stetti', 'stesti', 'stette', 'stemmo', 'steste', 'stettero', 'stessi', 'stesse', 'stessimo', 'stessero', 'stando', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '_'] // tell the world about the noise words. exports.words = words ================================================ FILE: lib/natural/util/stopwords_ja.js ================================================ // Original copyright: /* Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ // This version: /* Copyright (c) 2012, Guillaume Marty Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' // a list of commonly used words that have little meaning and can be excluded // from analysis. // Original location: // http://svn.apache.org/repos/asf/lucene/dev/trunk/lucene/analysis/kuromoji/src/resources/org/apache/lucene/analysis/ja/stopwords.txt const words = ['の', 'に', 'は', 'を', 'た', 'が', 'で', 'て', 'と', 'し', 'れ', 'さ', 'ある', 'いる', 'も', 'する', 'から', 'な', 'こと', 'として', 'い', 'や', 'れる', 'など', 'なっ', 'ない', 'この', 'ため', 'その', 'あっ', 'よう', 'また', 'もの', 'という', 'あり', 'まで', 'られ', 'なる', 'へ', 'か', 'だ', 'これ', 'によって', 'により', 'おり', 'より', 'による', 'ず', 'なり', 'られる', 'において', 'ば', 'なかっ', 'なく', 'しかし', 'について', 'せ', 'だっ', 'その後', 'できる', 'それ', 'う', 'ので', 'なお', 'のみ', 'でき', 'き', 'つ', 'における', 'および', 'いう', 'さらに', 'でも', 'ら', 'たり', 'その他', 'に関する', 'たち', 'ます', 'ん', 'なら', 'に対して', '特に', 'せる', '及び', 'これら', 'とき', 'では', 'にて', 'ほか', 'ながら', 'うち', 'そして', 'とともに', 'ただし', 'かつて', 'それぞれ', 'または', 'お', 'ほど', 'ものの', 'に対する', 'ほとんど', 'と共に', 'といった', 'です', 'とも', 'ところ', 'ここ'] // tell the world about the noise words. exports.words = words ================================================ FILE: lib/natural/util/stopwords_nl.js ================================================ /* Copyright (c) 2011, Chris Umbel, Martijn de Boer, Damien van Holten Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' // a list of commonly used words that have little meaning and can be excluded // from analysis. // This dutch wordlist has been parsed from a list created by Damien van Holten // source: http://www.damienvanholten.com/blog/dutch-stop-words/ const words = [ 'aan', 'af', 'al', 'alles', 'als', 'altijd', 'andere', 'ben', 'bij', 'daar', 'dan', 'dat', 'de', 'der', 'deze', 'die', 'dit', 'doch', 'doen', 'door', 'dus', 'een', 'eens', 'en', 'er', 'ge', 'geen', 'geweest', 'haar', 'had', 'heb', 'hebben', 'heeft', 'hem', 'het', 'hier', 'hij', 'hoe', 'hun', 'iemand', 'iets', 'ik', 'in', 'is', 'ja', 'je ', 'kan', 'kon', 'kunnen', 'maar', 'me', 'meer', 'men', 'met', 'mij', 'mijn', 'moet', 'na', 'naar', 'niet', 'niets', 'nog', 'nu', 'of', 'om', 'omdat', 'ons', 'ook', 'op', 'over', 'reeds', 'te', 'tegen', 'toch', 'toen', 'tot', 'u', 'uit', 'uw', 'van', 'veel', 'voor', 'want', 'waren', 'was', 'wat', 'we', 'wel', 'werd', 'wezen', 'wie', 'wij', 'wil', 'worden', 'zal', 'ze', 'zei', 'zelf', 'zich', 'zij', 'zijn', 'zo', 'zonder', 'zou', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '$', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '_', '-'] // tell the world about the noise words. exports.words = words ================================================ FILE: lib/natural/util/stopwords_no.js ================================================ /* Copyright (c) 2014, Kristoffer Brabrand Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' // a list of commonly used words that have little meaning and can be excluded // from analysis. const words = [ 'og', 'i', 'jeg', 'det', 'at', 'en', 'et', 'den', 'til', 'er', 'som', 'på', 'de', 'med', 'han', 'av', 'ikke', 'der', 'så', 'var', 'meg', 'seg', 'men', 'ett', 'har', 'om', 'vi', 'min', 'mitt', 'ha', 'hadde', 'hun', 'nå', 'over', 'da', 'ved', 'fra', 'du', 'ut', 'sin', 'dem', 'oss', 'opp', 'man', 'kan', 'hans', 'hvor', 'eller', 'hva', 'skal', 'selv', 'sjøl', 'her', 'alle', 'vil', 'bli', 'ble', 'blitt', 'kunne', 'inn', 'når', 'være', 'kom', 'noen', 'noe', 'ville', 'dere', 'som', 'deres', 'kun', 'ja', 'etter', 'ned', 'skulle', 'denne', 'for', 'deg', 'si', 'sine', 'sitt', 'mot', 'å', 'meget', 'hvorfor', 'dette', 'disse', 'uten', 'hvordan', 'ingen', 'din', 'ditt', 'blir', 'samme', 'hvilken', 'hvilke', 'sånn', 'inni', 'mellom', 'vår', 'hver', 'hvem', 'vors', 'hvis', 'både', 'bare', 'enn', 'fordi', 'før', 'mange', 'også', 'slik', 'vært', 'være', 'begge', 'siden', 'henne', 'hennar', 'hennes', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '_'] // tell the world about the noise words. exports.words = words ================================================ FILE: lib/natural/util/stopwords_pl.js ================================================ /* Copyright (c) 2013, Paweł Łaskarzewski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' // a list of commonly used words that have little meaning and can be excluded // from analysis. // list based on: http://pl.wikipedia.org/wiki/Wikipedia:Stopwords const words = [ 'a', 'aby', 'ach', 'acz', 'aczkolwiek', 'aj', 'albo', 'ale', 'ależ', 'ani', 'aż', 'bardziej', 'bardzo', 'bo', 'bowiem', 'by', 'byli', 'bynajmniej', 'być', 'był', 'była', 'było', 'były', 'będzie', 'będą', 'cali', 'cała', 'cały', 'ci', 'cię', 'ciebie', 'co', 'cokolwiek', 'coś', 'czasami', 'czasem', 'czemu', 'czy', 'czyli', 'daleko', 'dla', 'dlaczego', 'dlatego', 'do', 'dobrze', 'dokąd', 'dość', 'dużo', 'dwa', 'dwaj', 'dwie', 'dwoje', 'dziś', 'dzisiaj', 'gdy', 'gdyby', 'gdyż', 'gdzie', 'gdziekolwiek', 'gdzieś', 'i', 'ich', 'ile', 'im', 'inna', 'inne', 'inny', 'innych', 'iż', 'ja', 'ją', 'jak', 'jakaś', 'jakby', 'jaki', 'jakichś', 'jakie', 'jakiś', 'jakiż', 'jakkolwiek', 'jako', 'jakoś', 'je', 'jeden', 'jedna', 'jedno', 'jednak', 'jednakże', 'jego', 'jej', 'jemu', 'jest', 'jestem', 'jeszcze', 'jeśli', 'jeżeli', 'już', 'ją', 'każdy', 'kiedy', 'kilka', 'kimś', 'kto', 'ktokolwiek', 'ktoś', 'która', 'które', 'którego', 'której', 'który', 'których', 'którym', 'którzy', 'ku', 'lat', 'lecz', 'lub', 'ma', 'mają', 'mało', 'mam', 'mi', 'mimo', 'między', 'mną', 'mnie', 'mogą', 'moi', 'moim', 'moja', 'moje', 'może', 'możliwe', 'można', 'mój', 'mu', 'musi', 'my', 'na', 'nad', 'nam', 'nami', 'nas', 'nasi', 'nasz', 'nasza', 'nasze', 'naszego', 'naszych', 'natomiast', 'natychmiast', 'nawet', 'nią', 'nic', 'nich', 'nie', 'niech', 'niego', 'niej', 'niemu', 'nigdy', 'nim', 'nimi', 'niż', 'no', 'o', 'obok', 'od', 'około', 'on', 'ona', 'one', 'oni', 'ono', 'oraz', 'oto', 'owszem', 'pan', 'pana', 'pani', 'po', 'pod', 'podczas', 'pomimo', 'ponad', 'ponieważ', 'powinien', 'powinna', 'powinni', 'powinno', 'poza', 'prawie', 'przecież', 'przed', 'przede', 'przedtem', 'przez', 'przy', 'roku', 'również', 'sam', 'sama', 'są', 'się', 'skąd', 'sobie', 'sobą', 'sposób', 'swoje', 'ta', 'tak', 'taka', 'taki', 'takie', 'także', 'tam', 'te', 'tego', 'tej', 'temu', 'ten', 'teraz', 'też', 'to', 'tobą', 'tobie', 'toteż', 'trzeba', 'tu', 'tutaj', 'twoi', 'twoim', 'twoja', 'twoje', 'twym', 'twój', 'ty', 'tych', 'tylko', 'tym', 'u', 'w', 'wam', 'wami', 'was', 'wasz', 'zaś', 'wasza', 'wasze', 'we', 'według', 'wiele', 'wielu', 'więc', 'więcej', 'tę', 'wszyscy', 'wszystkich', 'wszystkie', 'wszystkim', 'wszystko', 'wtedy', 'wy', 'właśnie', 'z', 'za', 'zapewne', 'zawsze', 'ze', 'zł', 'znowu', 'znów', 'został', 'żaden', 'żadna', 'żadne', 'żadnych', 'że', 'żeby', '$', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '_'] // tell the world about the noise words. exports.words = words ================================================ FILE: lib/natural/util/stopwords_pt.js ================================================ /* Copyright (c) 2011, Luís Rodrigues Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' // a list of commonly used words that have little meaning and can be excluded // from analysis. const words = [ 'a', 'à', 'ao', 'aos', 'aquela', 'aquelas', 'aquele', 'aqueles', 'aquilo', 'as', 'às', 'até', 'com', 'como', 'da', 'das', 'de', 'dela', 'delas', 'dele', 'deles', 'depois', 'do', 'dos', 'e', 'ela', 'elas', 'ele', 'eles', 'em', 'entre', 'essa', 'essas', 'esse', 'esses', 'esta', 'estas', 'este', 'estes', 'eu', 'isso', 'isto', 'já', 'lhe', 'lhes', 'mais', 'mas', 'me', 'mesmo', 'meu', 'meus', 'minha', 'minhas', 'muito', 'muitos', 'na', 'não', 'nas', 'nem', 'no', 'nos', 'nós', 'nossa', 'nossas', 'nosso', 'nossos', 'num', 'nuns', 'numa', 'numas', 'o', 'os', 'ou', 'para', 'pela', 'pelas', 'pelo', 'pelos', 'por', 'quais', 'qual', 'quando', 'que', 'quem', 'se', 'sem', 'seu', 'seus', 'só', 'sua', 'suas', 'também', 'te', 'teu', 'teus', 'tu', 'tua', 'tuas', 'um', 'uma', 'umas', 'você', 'vocês', 'vos', 'vosso', 'vossos', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '_' ] // tell the world about the noise words. exports.words = words ================================================ FILE: lib/natural/util/stopwords_ru.js ================================================ /* Copyright (c) 2011, Polyakov Vladimir, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' // a list of commonly used words that have little meaning and can be excluded // from analysis. const words = [ 'о', 'после', 'все', 'также', 'и', 'другие', 'все', 'как', 'во', 'быть', 'потому', 'был', 'до', 'являюсь', 'между', 'все', 'но', 'от', 'иди', 'могу', 'подойди', 'мог', 'делал', 'делаю', 'каждый', 'для', 'откуда', 'иметь', 'имел', 'он', 'имеет', 'её', 'здесь', 'его', 'как', 'если', 'в', 'оно', 'за', 'делать', 'много', 'я', 'может быть', 'более', 'самый', 'должен', 'мой', 'никогда', 'сейчас', 'из', 'на', 'только', 'или', 'другой', 'другая', 'другое', 'наше', 'вне', 'конец', 'сказал', 'сказала', 'также', 'видел', 'c', 'немного', 'все еще', 'так', 'затем', 'тот', 'их', 'там', 'этот', 'они', 'те', 'через', 'тоже', 'под', 'над', 'очень', 'был', 'путь', 'мы', 'хорошо', 'что', 'где', 'который', 'пока', 'кто', 'с кем', 'хотел бы', 'ты', 'твои', 'а', 'б', 'в', 'г', 'д', 'е', 'ё', 'ж', 'з', 'и', 'й', 'к', 'л', 'м', 'н', 'o', 'п', 'р', 'с', 'т', 'у', 'ф', 'х', 'ц', 'ч', 'ш', 'щ', 'ъ', 'ы', 'ь', 'э', 'ю', 'я', '$', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '_'] // tell the world about the noise words. exports.words = words ================================================ FILE: lib/natural/util/stopwords_sv.js ================================================ /* Copyright (c) 2017, Dogan Yazar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' // a list of commonly used words that have little meaning and can be excluded // from analysis. const words = ['aderton', 'adertonde', 'adjö', 'aldrig', 'alla', 'allas', 'allt', 'alltid', 'alltså', 'andra', 'andras', 'annan', 'annat', 'artonde', 'artonn', 'att', 'av', 'bakom', 'bara', 'behöva', 'behövas', 'behövde', 'behövt', 'beslut', 'beslutat', 'beslutit', 'bland', 'blev', 'bli', 'blir', 'blivit', 'bort', 'borta', 'bra', 'bäst', 'bättre', 'båda', 'bådas', 'dag', 'dagar', 'dagarna', 'dagen', 'de', 'del', 'delen', 'dem', 'den', 'denna', 'deras', 'dess', 'dessa', 'det', 'detta', 'dig', 'din', 'dina', 'dit', 'ditt', 'dock', 'dom', 'du', 'där', 'därför', 'då', 'e', 'efter', 'eftersom', 'ej', 'elfte', 'eller', 'elva', 'emot', 'en', 'enkel', 'enkelt', 'enkla', 'enligt', 'ens', 'er', 'era', 'ers', 'ert', 'ett', 'ettusen', 'fanns', 'fem', 'femte', 'femtio', 'femtionde', 'femton', 'femtonde', 'fick', 'fin', 'finnas', 'finns', 'fjorton', 'fjortonde', 'fjärde', 'fler', 'flera', 'flesta', 'fram', 'framför', 'från', 'fyra', 'fyrtio', 'fyrtionde', 'få', 'får', 'fått', 'följande', 'för', 'före', 'förlåt', 'förra', 'första', 'genast', 'genom', 'gick', 'gjorde', 'gjort', 'god', 'goda', 'godare', 'godast', 'gott', 'gälla', 'gäller', 'gällt', 'gärna', 'gå', 'går', 'gått', 'gör', 'göra', 'ha', 'hade', 'haft', 'han', 'hans', 'har', 'heller', 'hellre', 'helst', 'helt', 'henne', 'hennes', 'hit', 'hon', 'honom', 'hundra', 'hundraen', 'hundraett', 'hur', 'här', 'hög', 'höger', 'högre', 'högst', 'i', 'ibland', 'icke', 'idag', 'igen', 'igår', 'imorgon', 'in', 'inför', 'inga', 'ingen', 'ingenting', 'inget', 'innan', 'inne', 'inom', 'inte', 'inuti', 'ja', 'jag', 'jo', 'ju', 'just', 'jämfört', 'kan', 'kanske', 'knappast', 'kom', 'komma', 'kommer', 'kommit', 'kr', 'kunde', 'kunna', 'kunnat', 'kvar', 'legat', 'ligga', 'ligger', 'lika', 'likställd', 'likställda', 'lilla', 'lite', 'liten', 'litet', 'länge', 'längre', 'längst', 'lätt', 'lättare', 'lättast', 'långsam', 'långsammare', 'långsammast', 'långsamt', 'långt', 'låt', 'man', 'med', 'mej', 'mellan', 'men', 'mer', 'mera', 'mest', 'mig', 'min', 'mina', 'mindre', 'minst', 'mitt', 'mittemot', 'mot', 'mycket', 'många', 'måste', 'möjlig', 'möjligen', 'möjligt', 'möjligtvis', 'ned', 'nederst', 'nedersta', 'nedre', 'nej', 'ner', 'ni', 'nio', 'nionde', 'nittio', 'nittionde', 'nitton', 'nittonde', 'nog', 'noll', 'nr', 'nu', 'nummer', 'när', 'nästa', 'någon', 'någonting', 'något', 'några', 'nån', 'nånting', 'nåt', 'nödvändig', 'nödvändiga', 'nödvändigt', 'nödvändigtvis', 'och', 'också', 'ofta', 'oftast', 'olika', 'olikt', 'om', 'oss', 'på', 'rakt', 'redan', 'rätt', 'sa', 'sade', 'sagt', 'samma', 'sedan', 'senare', 'senast', 'sent', 'sex', 'sextio', 'sextionde', 'sexton', 'sextonde', 'sig', 'sin', 'sina', 'sist', 'sista', 'siste', 'sitt', 'sitta', 'sju', 'sjunde', 'sjuttio', 'sjuttionde', 'sjutton', 'sjuttonde', 'själv', 'sjätte', 'ska', 'skall', 'skulle', 'slutligen', 'små', 'smått', 'snart', 'som', 'stor', 'stora', 'stort', 'större', 'störst', 'säga', 'säger', 'sämre', 'sämst', 'så', 'sådan', 'sådana', 'sådant', 'ta', 'tack', 'tar', 'tidig', 'tidigare', 'tidigast', 'tidigt', 'till', 'tills', 'tillsammans', 'tio', 'tionde', 'tjugo', 'tjugoen', 'tjugoett', 'tjugonde', 'tjugotre', 'tjugotvå', 'tjungo', 'tolfte', 'tolv', 'tre', 'tredje', 'trettio', 'trettionde', 'tretton', 'trettonde', 'två', 'tvåhundra', 'under', 'upp', 'ur', 'ursäkt', 'ut', 'utan', 'utanför', 'ute', 'va', 'vad', 'var', 'vara', 'varför', 'varifrån', 'varit', 'varje', 'varken', 'vars', 'varsågod', 'vart', 'vem', 'vems', 'verkligen', 'vi', 'vid', 'vidare', 'viktig', 'viktigare', 'viktigast', 'viktigt', 'vilka', 'vilkas', 'vilken', 'vilket', 'vill', 'väl', 'vänster', 'vänstra', 'värre', 'vår', 'våra', 'vårt', 'än', 'ännu', 'är', 'även', 'åt', 'åtminstone', 'åtta', 'åttio', 'åttionde', 'åttonde', 'över', 'övermorgon', 'överst', 'övre', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0'] // tell the world about the noise words. exports.words = words ================================================ FILE: lib/natural/util/stopwords_uk.js ================================================ 'use strict' // a list of commonly used words that have little meaning and can be excluded // from analysis. const words = [ 'о', 'після', 'всі', 'також', 'і', 'інші', 'все', 'як', 'в', 'бути', 'тому', 'був', 'до', 'є', 'між', 'вся', 'але', 'від', 'іди', 'можу', 'підійди', 'міг', 'робив', 'роблю', 'кожен', 'для', 'звідки', 'мав', 'він', 'має', 'її', 'тут', 'його', 'якщо', 'у', 'воно', 'за', 'робити', 'багато', 'може бути', 'самий', 'повинен', 'мій', 'ніколи', 'зараз', 'із', 'на', 'тільки', 'або', 'наше', 'поза', 'кінець', 'сказав', 'сказала', 'бачив', 'з', 'трохи', 'все ще', 'так', 'потім', 'той', 'їх', 'там', 'цей', 'вони', 'те', 'через', 'теж', 'під', 'над', 'дуже', 'був', 'добре', 'що', 'де', 'який', 'доки', 'хто', 'хотів би', 'а', 'б', 'в', 'г', 'ґ', 'д', 'е', 'є', 'ж', 'з', 'и', 'і', 'й', 'ї', 'к', 'л', 'м', 'н', 'o', 'п', 'р', 'с', 'т', 'у', 'ф', 'х', 'ц', 'ч', 'ш', 'щ', 'ь', 'ю', 'я', '$', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '_'] // tell the world about the noise words. exports.words = words ================================================ FILE: lib/natural/util/stopwords_zh.js ================================================ /* Copyright (c) 2011, David Przybilla, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' // a list of commonly used words that have little meaning and can be excluded // from analysis. const words = [ '的', '地', '得', '和', '跟', '与', '及', '向', '并', '等', '更', '已', '含', '做', '我', '你', '他', '她', '们', '某', '该', '各', '每', '这', '那', '哪', '什', '么', '谁', '年', '月', '日', '时', '分', '秒', '几', '多', '来', '在', '就', '又', '很', '呢', '吧', '吗', '了', '嘛', '哇', '儿', '哼', '啊', '嗯', '是', '着', '都', '不', '说', '也', '看', '把', '还', '个', '有', '小', '到', '一', '为', '中', '于', '对', '会', '之', '第', '此', '或', '共', '按', '请' ] // tell the world about the noise words. exports.words = words ================================================ FILE: lib/natural/util/storage/File.js ================================================ /* Copyright (c) 2024, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ require('dotenv').config() const { v4: uuidv4 } = require('uuid') const fs = require('fs').promises const path = process.env.FS_PATH // Class for creating file-based storage class FilePlugin { async store (object, options) { const key = uuidv4() const data = JSON.stringify(object) await fs.writeFile(path + '/' + key + '.json', data) return key } async retrieve (key, options) { const data = await fs.readFile(path + '/' + key + '.json', 'utf8') return JSON.parse(data) } } module.exports = FilePlugin ================================================ FILE: lib/natural/util/storage/Memcached.js ================================================ /* Copyright (c) 2024, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ const { v4: uuidv4 } = require('uuid') require('dotenv').config() const memjs = require('memjs') const memCachedConnectionString = process.env.MEM_HOST + ':' + process.env.MEM_PORT const memCachedExpiration = process.env.MEM_EXPIRES || 2 // Class for creating memcached client including store and retrieve methods class MemcachedPlugin { constructor () { this.client = memjs.Client.create(memCachedConnectionString) } async store (object, options) { const key = uuidv4() const data = JSON.stringify(object) const isStored = await this.client.set(key, data, { expires: memCachedExpiration }) return isStored ? key : null } async retrieve (key, options) { const result = await this.client.get(key) return JSON.parse(result.value.toString()) } } module.exports = MemcachedPlugin ================================================ FILE: lib/natural/util/storage/MongoDB.js ================================================ /* Copyright (c) 2024, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ require('dotenv').config() const mongoose = require('mongoose') const mongoDBConnectionString = 'mongodb://' + process.env.MONGO_HOST + ':' + process.env.MONGO_PORT + '/' + process.env.MONGO_DATABASE const objectModelName = process.env.MONGO_OBJECTMODEL class MongoDBPlugin { constructor () { mongoose.connect(mongoDBConnectionString, {}) if (!mongoose.models[objectModelName]) { // We do not enforce a schema with MongoDB this.ObjectModel = mongoose.model(objectModelName, new mongoose.Schema({}, { strict: false, versionKey: false })) } else { this.ObjectModel = mongoose.models[objectModelName] } } async store (object, options) { // To make sure the payload is stored as a whole and nog merged with the id object const objectToStore = { naturalObject: object } const storedObject = await this.ObjectModel.create(objectToStore) return storedObject._id } async retrieve (key, options) { const retrievedObject = await this.ObjectModel.findById(key) return retrievedObject.naturalObject } } module.exports = MongoDBPlugin ================================================ FILE: lib/natural/util/storage/Postgres.js ================================================ /* Copyright (c) 2024, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ const postgres = require('pg') require('dotenv').config() class PostgresPlugin { constructor () { this.postgresClient = null } async configPostgres () { // Initialize connection to Postgres const client = new postgres.Client({ user: process.env.POSTGRES_USER, host: process.env.POSTGRES_HOST, database: process.env.POSTGRES_DB, password: process.env.POSTGRES_PASSWORD, port: process.env.POSTGRES_PORT }) this.postgresClient = client this.postgresTableName = process.env.POSTGRES_TABLE // Connect to the database await client.connect() // Call the function to create the table await this.createTableIfNotExists(client, this.postgresTableName) // Don't forget to close the connection when done // await client.end() } // Function to create the table async createTableIfNotExists (client, tableName) { // Check if the table exists const query = `SELECT to_regclass('${tableName}')` const result = await client.query(query) if (result.rows[0].to_regclass === null) { // Table does not exist, create it const createTableQuery = ` CREATE TABLE ${tableName} ( id SERIAL PRIMARY KEY, data JSONB ); ` await client.query(createTableQuery) console.log('table created') } } // Function to insert a JavaScript object by key // Returns the id generated by the database async store (object, options) { try { const query = `INSERT INTO ${this.postgresTableName} (data) VALUES ($1) RETURNING id;` const result = await this.postgresClient.query(query, [object]) if (result.rowCount > 0) { return result.rows[0].id } else { return null } } catch (error) { console.error('Error inserting object:', error) } } // Function to retrieve a JavaScript object by key async retrieve (key, options) { try { const query = `SELECT data FROM ${this.postgresTableName} WHERE id = $1` const result = await this.postgresClient.query(query, [key]) if (result.rows.length > 0) { return result.rows[0].data } else { console.log('No object found with the specified key') return null } } catch (error) { console.error('Error retrieving object:', error) return null } } } module.exports = PostgresPlugin ================================================ FILE: lib/natural/util/storage/Redis.js ================================================ /* Copyright (c) 2024, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ const { v4: uuidv4 } = require('uuid') require('dotenv').config() const redis = require('redis') const redisConnectionString = 'redis://' + process.env.REDIS_HOST + ':' + process.env.REDIS_PORT class RedisPlugin { constructor () { this.configRedis() } async configRedis () { this.redisClient = await redis.createClient(redisConnectionString) this.redisClient .on('error', err => console.log('Redis Client Error', err)) .connect() } async store (object, options) { const key = uuidv4() const data = JSON.stringify(object) await this.redisClient.set(key, data) return key } async retrieve (key, options) { const result = await this.redisClient.get(key) return JSON.parse(result) } } module.exports = RedisPlugin ================================================ FILE: lib/natural/util/storage/StorageBackend.js ================================================ /* Copyright (c) 2024, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ const PostgresPlugin = require('./Postgres') const MongoDBPlugin = require('./MongoDB') const RedisPlugin = require('./Redis') const MemcachedPlugin = require('./Memcached') const FilePlugin = require('./File') // Enum for different types of storage backends that can be used const STORAGE_TYPES = { POSTGRES: 'POSTGRES', REDIS: 'REDIS', MONGODB: 'MONGODB', MEMCACHED: 'MEMCACHED', FILE: 'FILE' } // Standard behaviour of the backend is: // - Javascript in and out, so JSON.stringify and JSON.parse is done here. // - A key is returned after storing an object. // - The key is determined by the storage method, if possible: MongoDB and Postgres can do this. // If not, a uuid is created. // - File-based storage is no different: a uuid is created and used as filename: uuid.json class StorageBackend { constructor (storageType, options) { if (storageType) { this.setStorageType(storageType, options) } } // Sets the storage type. Valid values are POSTGRES, REDIS, MONGODB, MEMCACHED, FILE async setStorageType (storageType) { if (!storageType) { throw new Error('No storage type specified') } if (this.storageType) { throw new Error('Storage type already set') } this.storageType = storageType switch (storageType) { case STORAGE_TYPES.POSTGRES: this.client = new PostgresPlugin() await this.client.configPostgres() break case STORAGE_TYPES.REDIS: this.client = new RedisPlugin() break case STORAGE_TYPES.MONGODB: this.client = new MongoDBPlugin() break case STORAGE_TYPES.MEMCACHED: this.client = new MemcachedPlugin() break case STORAGE_TYPES.FILE: this.client = new FilePlugin() break default: throw new Error('Invalid storage type') } } // Stores value to the selected storage type. async store (object) { if (this.storageType && this.client) { return await this.client.store(object) } else { throw new Error('Storage type or client not set') } } async retrieve (key) { if (this.storageType && this.client) { return await this.client.retrieve(key) } else { throw new Error('Storage type or client not set') } } } module.exports = { StorageBackend, STORAGE_TYPES } ================================================ FILE: lib/natural/util/storage/docker-compose.yml ================================================ version: '3' services: postgres: image: postgres:latest environment: POSTGRES_DB: naturaldb POSTGRES_USER: user POSTGRES_PASSWORD: password ports: - "5432:5432" mongodb: image: mongo:latest environment: MONGO_INITDB_DATABASE: naturaldb ports: - "27017:27017" redis: image: redis:latest ports: - "6379:6379" memcached: image: memcached:latest ports: - "11211:11211" ================================================ FILE: lib/natural/util/storage/index.d.ts ================================================ /* Copyright (c) 2024, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ export declare enum STORAGE_TYPES { POSTGRES = 'POSTGRES', REDIS = 'REDIS', MONGODB = 'MONGODB', MEMCACHED = 'MEMCACHED', FILE = 'FILE' } export class StorageBackend { private readonly storageType: STORAGE_TYPES private readonly client: any constructor (type: STORAGE_TYPES) setStorageType (storageType: STORAGE_TYPES): void store (key: string, value: any): Promise retrieve (key: string): Promise } ================================================ FILE: lib/natural/util/storage/index.js ================================================ /* Copyright (c) 2024, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ exports.StorageBackend = require('./StorageBackend') ================================================ FILE: lib/natural/util/topological.js ================================================ /* Copyright (c) 2014, Lee Wenzhu Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' /** * a topo sort for a digraph * @param {Digraph} */ class Topological { constructor (g) { this.isDag = true this.sorted = topoSort(uniqueVertexs(g.edges()), g.edges()) } isDAG () { return this.isDag } /** * get ordered vertexs of digraph */ order () { return this.sorted.slice() } } /** * @param {Array} all vertex in digraph * @param {Object} all edges in the digraph */ function topoSort (vertexs, edges) { const sorted = [] let cursor = vertexs.length const visited = {} let i = cursor while (i--) { if (!visited[i]) visit(vertexs[i], i, []) } return sorted.reverse() function visit (vertex, i, predecessors) { if (predecessors.indexOf(vertex) >= 0) { throw new Error('Cyclic dependency:' + JSON.stringify(vertex)) } if (visited[i]) return visited[i] = true const outgoing = edges.filter(function (edge) { return edge.to() === vertex }) let preds = [] if (outgoing.length > 0) { preds = predecessors.concat(vertex) } let from outgoing.forEach(function (edge) { from = edge.from() visit(from, vertexs.indexOf(from), preds) }) sorted[--cursor] = vertex } } function uniqueVertexs (edges) { const vertexs = [] let from, to edges.forEach(function (edge) { from = edge.from() to = edge.to() if (vertexs.indexOf(from) < 0) vertexs.push(from) if (vertexs.indexOf(to) < 0) vertexs.push(to) }) return vertexs } module.exports = Topological ================================================ FILE: lib/natural/util/utils.js ================================================ /* Copyright (c) 2012, Guillaume Marty Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' /** * Generate a replacing function given a table of patterns. Inspired by: * http://code.google.com/p/jslibs/wiki/JavascriptTips#String_converter * The order of elements is significant. Longer elements should be listed first. * @see Speed test http://jsperf.com/build-a-regexp-table * * @param {Object.} translationTable The translation table of key value. * @return {function(string): string} A translating function. */ function replacer (translationTable) { /** * An array of translationTable keys. * @type {Array.} */ const pattern = [] /** * Used to iterate over translationTable. * @type {string} */ let key for (key in translationTable) { // Escaping regexp special chars. // @see Speed test for type casting to string http://jsperf.com/string-type-casting/2 // @see http://closure-library.googlecode.com/svn/docs/closure_goog_string_string.js.source.html#line956 /* eslint-disable no-control-regex */ const key1 = ('' + key).replace(/([-()[\]{}+?*.$^|,:#} obj An object of strings. * @return {Object.} An object of strings. */ function flip (obj) { const newObj = Object.create(null) let key for (key in obj) { newObj[obj[key]] = key } return newObj } /** * Merge several objects. Properties from earlier objects are overwritten by * laters's in case of conflict. * * @param {...Object.} var_args One or more objects of strings. * @return {!Object.} An object of strings. */ function merge (varArgs) { const args = [].slice.call(arguments) const newObj = Object.create(null) let id = 0; let key while (args[id]) { for (key in args[id]) { newObj[key] = args[id][key] } id++ } return newObj } exports.replacer = replacer exports.flip = flip exports.merge = merge ================================================ FILE: lib/natural/wordnet/data_file.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const WordNetFile = require('./wordnet_file') const util = require('util') function get (location, callbackFunction) { const buff = Buffer.alloc(4096) this.open(function (err, fd, done) { if (err) { console.log(err) return } WordNetFile.appendLineChar(fd, location, 0, buff, function (line) { done() const data = line.split('| ') const tokens = data[0].split(/\s+/) const ptrs = [] const wCnt = parseInt(tokens[3], 16) const synonyms = [] for (let i = 0; i < wCnt; i++) { synonyms.push(tokens[4 + i * 2]) } const ptrOffset = (wCnt - 1) * 2 + 6 for (let i = 0; i < parseInt(tokens[ptrOffset], 10); i++) { ptrs.push({ pointerSymbol: tokens[ptrOffset + 1 + i * 4], synsetOffset: parseInt(tokens[ptrOffset + 2 + i * 4], 10), pos: tokens[ptrOffset + 3 + i * 4], sourceTarget: tokens[ptrOffset + 4 + i * 4] }) } // break "gloss" into definition vs. examples const glossArray = data[1].split('; ') const definition = glossArray[0] const examples = glossArray.slice(1) for (let k = 0; k < examples.length; k++) { examples[k] = examples[k].replace(/"/g, '').replace(/\s\s+/g, '') } callbackFunction({ synsetOffset: parseInt(tokens[0], 10), lexFilenum: parseInt(tokens[1], 10), pos: tokens[2], wCnt: wCnt, lemma: tokens[4], synonyms: synonyms, lexId: tokens[5], ptrs: ptrs, gloss: data[1], def: definition, exp: examples }) }) }) } const DataFile = function (dataDir, name) { WordNetFile.call(this, dataDir, 'data.' + name) } util.inherits(DataFile, WordNetFile) DataFile.prototype.get = get module.exports = DataFile ================================================ FILE: lib/natural/wordnet/index.d.ts ================================================ /* Copyright (c) 2022, Dylan R. E. Moonfire , Emily Marigold Klassen , Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ declare interface DataPtr { pointerSymbol: string synsetOffset: number pos: string sourceTarget: string } declare interface DataRecord { synsetOffset: number lexFilenum: number pos: string wCnt: number lemma: string synonyms: string[] lexId: string ptrs: DataPtr[] gloss: string def: string exp: string[] } declare type DataRecordCallback = (results: DataRecord) => void declare type DataRecordsCallback = (results: DataRecord[]) => void declare class DataFile { constructor (dataDir: string, name: string) get (location: number, callback: DataRecordCallback): void } declare interface IndexRecord { lemma: string pos: string ptrSymbol: string[] senseCnt: number tagsenseCnt: number synsetOffset: number[] } declare type IndexRecordCallback = (results: IndexRecord) => void declare interface IndexFind { status: string key: string line: string tokens: string[] } declare type IndexFindCallback = (results: IndexFind) => void declare class IndexFile { constructor (dataDir: string, name: string) lookup (word: string, callback: IndexRecordCallback): void lookupFromFile (word: string, callback: IndexRecordCallback): void find (word: string, callback: IndexFindCallback): void } declare interface WordNetLookupFile { index: IndexFile data: DataFile } export class WordNet { constructor (dataDir?: string) get (synsetOffset: number, pos: string, callback: DataRecordCallback): void lookup (word: string, callback: DataRecordsCallback): void lookupFromFiles (files: WordNetLookupFile[], results: DataRecord[], word: string, callback: DataRecordsCallback): void pushResults (data: DataFile, results: DataRecord[], offsets: number[], callback: DataRecordsCallback): void loadResultSynonyms (synonyms: DataRecord[], results: DataRecord[], callback: DataRecordsCallback): void loadSynonyms (synonyms: DataRecord[], results: DataRecord[], ptrs: DataPtr[], callback: DataRecordsCallback): void lookupSynonyms (word: string, callback: DataRecordsCallback): void getSynonyms (record: DataRecord, callback: DataRecordsCallback): void getDataFile (pos: string): DataFile } ================================================ FILE: lib/natural/wordnet/index.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' exports.WordNet = require('./wordnet') ================================================ FILE: lib/natural/wordnet/index_file.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const WordNetFile = require('./wordnet_file') const fs = require('fs') const util = require('util') function getFileSize (path) { const stat = fs.statSync(path) return stat.size } function findPrevEOL (fd, pos, callbackFunction) { const buff = Buffer.alloc(1024) if (pos === 0) { callbackFunction(0) } else { fs.read(fd, buff, 0, 1, pos, function (err, count) { if (err) { console.log(err) return } if (buff[0] === 10) { callbackFunction(pos + 1) } else { findPrevEOL(fd, pos - 1, callbackFunction) } }) } } function readLine (fd, pos, callback) { const buff = Buffer.alloc(1024) findPrevEOL(fd, pos, function (pos) { WordNetFile.appendLineChar(fd, pos, 0, buff, callback) }) } function miss (callbackFunction) { callbackFunction({ status: 'miss' }) } function findAt (fd, size, pos, lastPos, adjustment, searchKey, callbackFunction, lastKey) { if (lastPos === pos || pos >= size) { miss(callbackFunction) } else { readLine(fd, pos, function (line) { const tokens = line.split(/\s+/) const key = tokens[0] if (key === searchKey) { callbackFunction({ status: 'hit', key: key, line: line, tokens: tokens }) } else if (adjustment === 1 || key === lastKey) { miss(callbackFunction) } else { adjustment = Math.ceil(adjustment * 0.5) if (key < searchKey) { findAt(fd, size, pos + adjustment, pos, adjustment, searchKey, callbackFunction, key) } else { findAt(fd, size, pos - adjustment, pos, adjustment, searchKey, callbackFunction, key) } } }) } } function find (searchKey, callback) { const indexFile = this indexFile.open(function (err, fd, done) { if (err) { console.log(err) } else { const size = getFileSize(indexFile.filePath) - 1 const pos = Math.ceil(size / 2) findAt(fd, size, pos, null, pos, searchKey, function (result) { callback(result); done() }) } }) } function lookupFromFile (word, callback) { this.find(word, function (record) { let indexRecord = null if (record.status === 'hit') { const ptrs = []; const offsets = [] for (let i = 0; i < parseInt(record.tokens[3]); i++) { ptrs.push(record.tokens[i]) } for (let i = 0; i < parseInt(record.tokens[2]); i++) { offsets.push(parseInt(record.tokens[ptrs.length + 6 + i], 10)) } indexRecord = { lemma: record.tokens[0], pos: record.tokens[1], ptrSymbol: ptrs, senseCnt: parseInt(record.tokens[ptrs.length + 4], 10), tagsenseCnt: parseInt(record.tokens[ptrs.length + 5], 10), synsetOffset: offsets } } callback(indexRecord) }) } function lookup (word, callback) { this.lookupFromFile(word, callback) } const IndexFile = function (dataDir, name) { WordNetFile.call(this, dataDir, 'index.' + name) } util.inherits(IndexFile, WordNetFile) IndexFile.prototype.lookupFromFile = lookupFromFile IndexFile.prototype.lookup = lookup IndexFile.prototype.find = find IndexFile.prototype._findAt = findAt module.exports = IndexFile ================================================ FILE: lib/natural/wordnet/wordnet.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const IndexFile = require('./index_file') const DataFile = require('./data_file') function pushResults (data, results, offsets, callback) { const wordnet = this if (offsets.length === 0) { callback(results) } else { data.get(offsets.pop(), function (record) { results.push(record) wordnet.pushResults(data, results, offsets, callback) }) } } function lookupFromFiles (files, results, word, callback) { const wordnet = this if (files.length === 0) { callback(results) } else { const file = files.pop() file.index.lookup(word, function (record) { if (record) { wordnet.pushResults(file.data, results, record.synsetOffset, function () { wordnet.lookupFromFiles(files, results, word, callback) }) } else { wordnet.lookupFromFiles(files, results, word, callback) } }) } } function lookup (word, callback) { word = word.toLowerCase().replace(/\s+/g, '_') this.lookupFromFiles([ { index: this.nounIndex, data: this.nounData }, { index: this.verbIndex, data: this.verbData }, { index: this.adjIndex, data: this.adjData }, { index: this.advIndex, data: this.advData } ], [], word, callback) } function get (synsetOffset, pos, callback) { const dataFile = this.getDataFile(pos) dataFile.get(synsetOffset, function (result) { callback(result) }) } function getDataFile (pos) { switch (pos) { case 'n': return this.nounData case 'v': return this.verbData case 'a': case 's': return this.adjData case 'r': return this.advData } } function loadSynonyms (synonyms, results, ptrs, callback) { const wordnet = this if (ptrs.length > 0) { const ptr = ptrs.pop() this.get(ptr.synsetOffset, ptr.pos, function (result) { synonyms.push(result) wordnet.loadSynonyms(synonyms, results, ptrs, callback) }) } else { wordnet.loadResultSynonyms(synonyms, results, callback) } } function loadResultSynonyms (synonyms, results, callback) { const wordnet = this if (results.length > 0) { const result = results.pop() wordnet.loadSynonyms(synonyms, results, result.ptrs, callback) } else { callback(synonyms) } } function lookupSynonyms (word, callback) { const wordnet = this wordnet.lookup(word, function (results) { wordnet.loadResultSynonyms([], results, callback) }) } function getSynonyms () { const wordnet = this const callback = arguments[2] ? arguments[2] : arguments[1] const pos = arguments[0].pos ? arguments[0].pos : arguments[1] const synsetOffset = arguments[0].synsetOffset ? arguments[0].synsetOffset : arguments[0] this.get(synsetOffset, pos, function (result) { wordnet.loadSynonyms([], [], result.ptrs, callback) }) } function WordNet (dataDir) { let WNdb = null if (!dataDir) { try { WNdb = require('wordnet-db') } catch (e) { console.error("Please 'npm install wordnet-db' before using WordNet module or specify a dict directory.") throw e } dataDir = WNdb.path } this.nounIndex = new IndexFile(dataDir, 'noun') this.verbIndex = new IndexFile(dataDir, 'verb') this.adjIndex = new IndexFile(dataDir, 'adj') this.advIndex = new IndexFile(dataDir, 'adv') this.nounData = new DataFile(dataDir, 'noun') this.verbData = new DataFile(dataDir, 'verb') this.adjData = new DataFile(dataDir, 'adj') this.advData = new DataFile(dataDir, 'adv') this.get = get this.lookup = lookup this.lookupFromFiles = lookupFromFiles this.pushResults = pushResults this.loadResultSynonyms = loadResultSynonyms this.loadSynonyms = loadSynonyms this.lookupSynonyms = lookupSynonyms this.getSynonyms = getSynonyms this.getDataFile = getDataFile } module.exports = WordNet ================================================ FILE: lib/natural/wordnet/wordnet_file.js ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' const fs = require('fs') function appendLineChar (fd, pos, buffPos, buff, callbackFunction) { if (buffPos >= buff.length) { const newBuff = Buffer.alloc(buff.length * 2) buff.copy(newBuff, 0, 0, buff.length) buff = newBuff } fs.read(fd, buff, buffPos, 1, pos, function (err, count) { if (err) { console.log(err) } else { if (buff[buffPos] === 10 || buffPos === buff.length) { callbackFunction(buff.slice(0, buffPos).toString('UTF-8')) } else { appendLineChar(fd, pos + 1, buffPos + 1, buff, callbackFunction) } } }) } function open (callback) { const filePath = this.filePath fs.open(filePath, 'r', null, function (err, fd) { if (err) { console.log('Unable to open %s', filePath) return } callback(err, fd, function () { fs.close(fd, function (error) { if (error) { throw error } }) }) }) } const WordNetFile = function (dataDir, fileName) { this.dataDir = dataDir this.fileName = fileName this.filePath = require('path').join(this.dataDir, this.fileName) } WordNetFile.prototype.open = open WordNetFile.appendLineChar = appendLineChar module.exports = WordNetFile ================================================ FILE: package.json ================================================ { "name": "natural", "description": "General natural language (tokenizing, stemming (English, Russian, Spanish), part-of-speech tagging, sentiment analysis, classification, inflection, phonetics, tfidf, WordNet, jaro-winkler, Levenshtein distance, Dice's Coefficient) facilities for node.", "version": "8.1.1", "homepage": "https://github.com/NaturalNode/natural", "repository": { "type": "git", "url": "git://github.com/NaturalNode/natural.git" }, "engines": { "node": ">=0.4.10" }, "dependencies": { "afinn-165": "^2.0.2", "afinn-165-financialmarketnews": "^3.0.0", "apparatus": "^0.0.10", "dotenv": "^17.3.1", "memjs": "^1.3.2", "mongoose": "^9.2.1", "pg": "^8.18.0", "redis": "^5.11.0", "safe-stable-stringify": "^2.5.0", "stopwords-iso": "^1.1.0", "sylvester": "^0.0.21", "underscore": "^1.13.0", "uuid": "^13.0.0", "wordnet-db": "^3.1.14" }, "devDependencies": { "@rollup/plugin-commonjs": "^29.0.0", "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "^16.0.3", "@types/jasmine": "^6.0.0", "@types/node": "^25.2.3", "@typescript-eslint/eslint-plugin": "^6.21.0", "cross-env": "^10.1.0", "eslint": "^8.57.0", "eslint-config-standard-with-typescript": "^43.0.1", "eslint-plugin-import": "^2.32.0", "eslint-plugin-n": "^16.6.2", "eslint-plugin-promise": "^6.6.0", "jasmine": "^6.0.0", "jasmine-core": "^6.0.0", "ncp": "^2.0.0", "nyc": "^15.1.0", "pegjs": "^0.10.0", "proxyquire": "^2.1.3", "rimraf": "^5.0.0", "rollup": "^4.57.1", "sinon": "^17.0.0", "source-map-support": "^0.5.21", "ts-node": "^10.9.2", "typescript": "^5.9.3" }, "jscpd": { "ignore": [ "lib/natural/brill_pos_tagger/lib/TF_Parser.js", "lib/natural/tokenizers/parser_sentence_tokenizer.js" ] }, "scripts": { "benchmark": "node benchmarks", "build": "npm run build:tests & npm run build:esm", "build:esm": "rollup -c", "build:tests": "tsc", "clean": "rimraf *~ #* *classifier.json dist io_spec/tmp/*.json coverage", "test_io": "jasmine --random=false io_spec/*_spec.js", "test": "cross-env NODE_PATH=. jasmine --random=false dist/cjs/spec/*_spec.js", "smoke:esm": "node spec/esm/smoke.mjs", "coverage": "nyc --no-clean npm run test && nyc --no-clean npm run test_io", "lint": "eslint . --ext .ts" }, "license": "MIT", "author": "Chris Umbel ", "keywords": [ "natural language processing", "artifical intelligence", "statistics", "Porter stemmer", "Lancaster stemmer", "tokenizer", "bigram", "trigram", "quadgram", "ngram", "stemmer", "bayes", "classifier", "phonetic", "metaphone", "inflector", "Wordnet", "tf-idf", "logistic regression", "doublemetaphone", "double", "jaro-winkler distance", "levenshtein distance", "string distance", "part-of-speech tagger", "Eric Brill", "Brill tagger", "sentiment analysis", "maximum entropy modelling" ], "main": "./lib/natural/index.js", "types": "./lib/natural/index.d.ts", "maintainers": [ { "name": "Chris Umbel", "email": "chris@chrisumbel.com", "web": "http://www.chrisumbel.com" }, { "name": "Rob Ellis", "email": "rob@silentrob.me" }, { "name": "Ken Koch", "email": "kkoch986@gmail.com" }, { "name": "Hugo W.L. ter Doest", "email": "hwl.ter.doest@gmail.com" } ] } ================================================ FILE: rollup.config.mjs ================================================ import resolve from '@rollup/plugin-node-resolve' import commonjs from '@rollup/plugin-commonjs' import json from '@rollup/plugin-json' import { builtinModules, createRequire } from 'node:module' const require = createRequire(import.meta.url) const pkg = require('./package.json') const deps = Object.keys(pkg.dependencies || {}) const peerDeps = Object.keys(pkg.peerDependencies || {}) const jsonEntryDeps = new Set( deps.filter((dep) => { try { return require.resolve(dep).endsWith('.json') } catch { return false } }) ) const nodeBuiltins = builtinModules.flatMap((name) => ( name.startsWith('node:') ? [name, name.slice(5)] : [name, `node:${name}`] )) const external = (id) => ( nodeBuiltins.includes(id) || deps.some((dep) => (id === dep || id.startsWith(`${dep}/`)) && !jsonEntryDeps.has(dep)) || peerDeps.some((dep) => id === dep || id.startsWith(`${dep}/`)) ) export default { input: 'lib/natural/index.js', // Your entry point external, output: { dir: 'dist/esm', // Output directory for ESM build format: 'esm', // Output format as ESM sourcemap: true, // Optional: generate source maps preserveModules: true, preserveModulesRoot: 'lib/natural' }, plugins: [ resolve({ preferBuiltins: true // Prefer Node.js built-in modules over local modules }), // Resolve modules from node_modules commonjs({ esmExternals: (id) => !nodeBuiltins.includes(id), requireReturnsDefault: 'auto' }), // Convert CommonJS modules to ES modules json() // Add the JSON plugin to handle JSON imports ] } ================================================ FILE: spec/MaxEntClassifier_spec.ts ================================================ /* Unit test of Classifier Copyright (C) 2018 Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { Context, FeatureSet, Sample, MaxEntClassifier as Classifier, SEElement } from 'lib/natural' import type { Element } from 'lib/natural' const classifierFilename = 'classifier.json' const minImprovement = 0.01 const nrIterations = 20 let sample: Sample let featureSet: FeatureSet let classifier: Classifier const DEBUG = false describe('The MaxEnt module', function () { it('The Sample class creates a sample', function () { sample = new Sample() sample.addElement(new SEElement('x', new Context('0'))) sample.addElement(new SEElement('x', new Context('0'))) sample.addElement(new SEElement('x', new Context('0'))) sample.addElement(new SEElement('y', new Context('0'))) sample.addElement(new SEElement('y', new Context('0'))) sample.addElement(new SEElement('y', new Context('0'))) sample.addElement(new SEElement('x', new Context('1'))) sample.addElement(new SEElement('y', new Context('1'))) sample.addElement(new SEElement('y', new Context('1'))) sample.addElement(new SEElement('y', new Context('1'))) expect(sample.size()).toBe(10) }) it('The FeatureSet class creates a feature set', function () { featureSet = new FeatureSet() sample.generateFeatures(featureSet) expect(featureSet.size()).toBe(2) }) it('The Classifier class creates a classifier', function () { // Create a classifier classifier = new Classifier(featureSet, sample) expect(classifier).toBeDefined() }) it('Classifier does not need a correction feature', function () { }) it('The classifier stops training after a specified number or iterations ' + 'or when the minimum improvement in likelihood is reached', function () { classifier.train(nrIterations, minImprovement) expect(classifier.scaler.iteration).toBeLessThan(nrIterations + 1) if (classifier.scaler.iteration < nrIterations) { expect(classifier.scaler.improvement).toBeLessThan(minImprovement) } }) it('Save classifer to a file', function (done) { classifier.save(classifierFilename, function (err, c) { if (err !== null) { console.log(err) } else { DEBUG && console.log('Classifier saved to ' + classifierFilename) } done() }) }) let newClassifier: Classifier it('Load classifer', function (done) { classifier.load(classifierFilename, SEElement as unknown as Element, function (err, c) { if (err !== null) { console.log(err) } else if (c !== undefined) { DEBUG && console.log('Classifier loaded from ' + classifierFilename) newClassifier = c } done() }) if (newClassifier !== undefined) { classifier = newClassifier } }) it('The classifier classifies events', function () { let context = new Context('0') DEBUG && console.log('Classes plus scores ' + JSON.stringify(classifier.getClassifications(context))) let classification = classifier.classify(context) expect(classification).toBe('x') context = new Context('1') DEBUG && console.log('Classes plus scores ' + JSON.stringify(classifier.getClassifications(context))) classification = classifier.classify(context) expect(classification).toBe('y') }) }) ================================================ FILE: spec/SentimentAnalyzer_spec.ts ================================================ /* Copyright (c) 2019, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { SentimentAnalyzer as Analyzer, PorterStemmer, PorterStemmerPt, PorterStemmerNl, PorterStemmerEs, PorterStemmerFr, PorterStemmerIt } from 'lib/natural' import type { Stemmer } from 'lib/natural' const testConfigurations = [ { language: 'Basque', stemmer: '', vocabularyType: 'senticon', testSentences: [ { sentence: '2018ko martxoaren 30ean, Baionako Etxepare Lizeoko ikasleek Axut !-en, Artedrama eta Le Petit Théâtre de Pain antzerki taldeen "Zazpi senideko" obra berria ikusteko parada izanen dute. Aitzineko bi egunetan ere, hainbat tailerretan parte hartzeko parada ukanen dute. Sorkuntza laguntzeaz gain, Euskal kultur erakundeak lizeoan iraganen diren mediazio tailer batzuk sustatzen ditu.', score: 0.014705882352941176 }, { sentence: 'Xiberuan, beste antzerki mota bat bada, kanpoan kantatzen eta dantzatzen dena: maskarada. Dantza ikusgarria eta "predikua" uztartzen dituen ihauterietako besta bat da. Xiberutarrak bizitzeko kostaldera joatearekin gelditu baldin baziren ere, berriki berriz bizi-bizi hasi dira, tradizioa eta modernismoa nahasten jakin duten tokiko jendeei esker.', score: 0.01490909090909091 }, { sentence: 'Luzaz talde amateurrak bakarrik izan ondoan, orain profesionalak ere agertu dira. Hautatzen dituzten testuak euskal idazleenak ala egokipenak dira (Brecht, Réza, Koltès...).', score: -0.011363636363636364 }, { sentence: 'Euskaldunok gure kulturarekiko erakutsi dugun maitasunari esker, ohiturazko dantza errepertorio aberats eta ikusgarria gorde dugu, eta gizarte aldaketei egokitu ahal izateko bere burua berritzen asmatu du.', score: -0.012 }, { sentence: 'Uda zoragarri bat igaro nahi duzu Donostian, Euskal Herriko hiririk ederrenetako batean? Euskal Herriko Unibertsitatea liderra da euskal unibertsitate sisteman, eta aukera ematen dizu "Basque Culture II. International Summer School" ikastaro erakargarrian parte hartzeko 2017ko uztailaren 3tik 14ra. Ikastaroa mundu osoan izen handia duten profesionalek emango dute, eta akademikoki aukera paregabea da euskal gizartea gertutik ezagutzeko eta aldi berean hemengo hizkuntza eta ohiturak ikasteko.', score: 0.00390625 } ] }, { language: 'Catalan', stemmer: '', vocabularyType: 'senticon', testSentences: [ { sentence: 'Un total de 18 entitats catalanes entre empreses, festivals, institucions i un programa de ràdio especialitzat en jazz participaran amb l’estand català a Jazzahead!, la fira internacional de jazz que tindrà lloc del 19 al 22 d’abril a Bremen, Alemanya. La presència catalana a Bremen es concentrarà a l’estand del Departament de Cultura, organitzat per l’Institut Català de les Empreses Culturals (ICEC), sota la seva marca d’internacionalització, Catalan Arts - Music, que oferirà una imatge conjunta del sector i servirà als professionals com a punt de trobada i de negoci on desenvolupar les seves activitats a la fira amb les màximes facilitats. A més, amb l’objectiu de fomentar el networking entre els professionals catalans i els delegats internacionals acreditats a la fira, s’oferirà una recepció a l’estand català divendres 20 a les 18:00h.', score: 0.009398496240601503 }, { sentence: 'La setmana passada parlàvem del projecte cinematogràfic de Pep Puig, 40 hectàrees. La terra i el pagès, format per deu peces audiovisuals de quinze minuts accessibles a Penedès Televisió. Pep Puig el resumeix en tres grans aspectes. El primer: ‘Parlen els pagesos. Els pagesos ben poques vegades ocupen un paper protagonista quan ens referim a la vinya i el vi. Aquest poc protagonisme pagès, segurament el podríem fer extensiu també als pagesos que treballen els altres conreus. El relat sempre ve dels elaboradors, dels enòlegs, dels publicistes. Mai, o quasi mai, dels pagesos. També, quan es parla del camp o del món rural, la interpretació que se’n fa ve donada majoritàriament des de la ciutat.’', score: 0.006521739130434782 }, { sentence: 'El premi Nobel de Literatura Bob Dylan ha actuat aquesta nit al gran teatre del Liceu de Barcelona, on ha presentat el darrer àlbum, Triplicate, un disc triple en què repassa trenta grans peces de la música nord-americana del segle XX. Tot i que Dylan s’ha limitat a tocar i no ha fet cap discurs, havent acabat el concert, el públic ha cridat a favor de l’alliberament dels presos polítics catalans de les butaques del Liceu estant. Vegeu-ne ací el moment:', score: 0.009950617283950617 }, { sentence: 'Les mones que fa Rosselló a la pastisseria, Pa i Dolços Rosselló, són elaborades amb farina, mantega, sucre i ous. Les corona amb un ou dur i, en algunes ocasions, amb un de xocolata. ‘Per fer-la atractiva per als xiquets, això que fem de vegades és donar alguna forma divertida a la massa. Les més habituals són d’animals: tortugues, granotes, cocodrils…’ explica Rosselló. Perquè la mona, que tradicionalment regalen els padrins, és important que sigui atractiva per als fillols, i això ha fet que, sobretot al Principat, depengui molt de les modes del moment.', score: 0.004180851063829787 }, { sentence: 'El manifest ha estat escrit a sis mans. L’han redactat els historiadors Manuel Loff i Fernando Rosas i el politòleg André Freire. El signen, entre més, Alfredo Barroso, fundador del Partit socialista i ex-cap de la Casa civil, un òrgan d’assessorament polític, durant la presidència de Mário Soares; André Silva, diputat de Persones-Animals-Natura; Ascenso Simões, Isabel Moreira, Maria da Luz Rosinha i Tiago Barbosa Ribeiro, diputats socialistes; Joana Mortágua, José Soeiro, Luís Monteiro i Mariana Mortágua, diputats del Bloc d’esquerres; Ulisses Pereira, diputat socialdemòcrata i Rui Sá, membre de l’Assemblea Municipal de Porto de la Coalició Democràtica Unitària.', score: -0.002551020408163265 } ] }, { language: 'Dutch', stemmer: 'PorterStemmerNl', vocabularyType: 'pattern', testSentences: [ { sentence: 'Zo wordt het verhaal in een grappig sausje gerold, maar niet té grappig. De rondreis door Europa was leuk, hoewel Amsterdam wel erg cliché overkwam. Maar dit is misschien ook wel hoe toeristen het beleven, dat kan heel goed. Connie blijft het hele verhaal wat op de achtergrond waardoor we meer over haar in het verleden leren, dan over hoe ze nu is. Hun relatiegeschiedenis wordt in stukjes en beetjes verteld en daaruit merk je hoeveel Douglas van Connie houdt, en hoe onwaarschijnlijk het is dat ze uit elkaar zullen gaan. Als personage in de huidige tijd telt Connie minder mee dan Albie, de zoon. De relatie tussen vader en zoon wordt dus eigenlijk meer uitgediept dan die tussen man en vrouw. Maar vooral is het een boek waarin een man van middelbare leeftijd zichzelf leert kennen.', score: 0.007299270072992698 }, { sentence: 'Wat Het Diner toch de moeite waard maakt is het spel van Jacob Derwig. Deze Derwig bewijst zich een ‘natural’, een acteur die met slechts een verveelde blik de camera weet te veroveren. Er is maar één term voor dergelijk charisma: filmster. En nee, dat indrukwekkende spel is niet te danken is aan Meyes’ acteursregie, want alle andere rollen zijn tenenkrommend. Dus. Laten ze die 20 miljoen aan Derwig geven, zodat hij kan verkassen naar Hollywood om daar in de remake te stralen. Kan ie doen wat Meyes had willen doen en wat Van Gogh had moeten doen. Ontsnappen aan onze schouderklopjes.', score: 0.024509803921568627 }, { sentence: 'Als vrouwenfilms voor mutsenfilms uitgemaakt kunnen worden is Jackie er zeker een. Maar ‘mutsenfilm’ is natuurlijk gewoon een eufemisme voor ‘slechte film’. Gelukkig kent, zoals iedere slechte film, ook Jackie één geweldig moment. Als de gezusters Van Houten voorin de camper luidkeels meezingen met de denderende soundtrack, zonder te acteren, zonder te mutsen, zonder leuk te doen, vangen we een glimp op van de meiden waar Jackie eigenlijk over had moeten gaan. En die waren bij zo’n mutsenfilm allang opgestapt.', score: 0.043750000000000004 }, { sentence: 'En het is maar helemaal de vraag of de jeugd van tegenwoordig zich laat inpakken door hoofdrolspeelster Zoe Saldana. Overtuigend als ze was als blauwe alien in Avatar, live is deze spriet, hoe lenig door haar balletachtergrond ook en hoe streng kijkend-want-getraumatiseerd ook, bepaald niet een sexy killer van het kaliber Angelina Jolie in Salt. Ze heeft iets freakerigs, mede omdat ze stunts moet uithalen die zoveel acrobatie en slangemenselijkheid vereisen dat ze uit een Mission: Impossible geschrapt zouden zijn. Misschien dat ze meer tot haar recht komt als Besson zich gaat vergrijpen aan een game over een killer alien die in de steegjes van Bogota zoveel mogelijk kartelleden moet platrijden.', score: -0.009009009009009007 }, { sentence: "De tweede helft van de film is minder meeslepend omdat de plot dan uitgewerkt moet worden met vermoeiende actie. En ja, het is dan ook delivery time, niet Abrahams sterkste punt. Verder moet Spielberg zo nodig tranen afdwingen met onder meer een medaillon van een dooie (lees: heilige) moeder. Maar deze film is niet gemaakt voor Abrahams pizza of Spielbergs complex. Dit is genieten van een dik jongetje dat om de haverklap 'production value!' roept als hij iets ziet wat voor zijn film gebruikt kan worden, of het nu een treinramp is of een militaire bezetting. Super 8 is een ode aan de jeugd van twee filmmakers die nooit volwassen hebben willen geworden en daar met recht trots op zijn.", score: 0.0066666666666666645 } ] }, { language: 'English', stemmer: 'PorterStemmer', vocabularyType: 'afinn', testSentences: [ { sentence: "So is Gemini a joke, you ask? You're never sure whether Andrew Reed's cinematography is straight borrowing from Michael Mann's cool-blue visuals from Heat or mocking the sort of Angelenos that would watch that heist film and see nothing but a decor schematic for every single interior. Or, for that matter, whether composer Keegan DeWitt's is parodying the sax-heavy scores of Skinemax thrillers past or simply copying one in between icy techno interludes. The fact that the performers, especially the exceptional Kirke, keep their tongues firmly planted in their cheeks helps ground things, as does the fact that the jabs are featherweight enough to pass as shrugs. It may feel insubstantial at times, but somewhere out there, there's a twin of this film that lays on the L.A. Self-Owns Itself mojo in thick clumps. Gemini is the good-sibling version. It's worth a whirl.", score: -0.027972027972027972 }, { sentence: "Sadly, stereotypes are this film’s stock in trade. Is Melinda a victim or a warrior or just batshit crazy? The movie can't or won’t decide. Taraji will rise again, she always does. But enduing a full 120 minutes of this shitstorm takes its toll. Bitterness, anger, malice, bad blood – that’s acrimony, baby. And that's what you'll feel if you blow the price of ticket on this hack job.", score: -0.10144927536231885 }, { sentence: "But as soon as Vic decides to hit the road to Knoxville, his birthplace, sentiment infects the film like a virus. Writer-director Adam Rifkin clearly has affection for his star, but he's put him in a leaky vehicle that sinks way before the journey ends. Sam Elliott handled a similar role with more style, emotion and dramatic heft in last year's The Hero. But Reynolds, let's not forget, really is a movie star. And a great one. The pleasure of his company is still an exuberant gift. He deserves more than an opportunity missed.", score: -0.06382978723404255 }, { sentence: "Sadly, stereotypes are this film’s stock in trade. Is Melinda a victim or a warrior or just batshit crazy? The movie can't or won’t decide. Taraji will rise again, she always does. But enduing a full 120 minutes of this shitstorm takes its toll. Bitterness, anger, malice, bad blood – that’s acrimony, baby. And that's what you'll feel if you blow the price of ticket on this hack job.", score: -0.10144927536231885 }, { sentence: 'G-Eazy released his expansive third album, The Beautiful & Damned, in December with hit singles "No Limit" and "Him & I." The album featured guest appearances from Cardi B, A$AP Rocky, Charlie Puth and Halsey, and debuted at Number Three on the Billboard 200.', score: 0.06818181818181818 } ] }, { language: 'English', stemmer: 'PorterStemmer', vocabularyType: 'senticon', testSentences: [ { sentence: "So is Gemini a joke, you ask? You're never sure whether Andrew Reed's cinematography is straight borrowing from Michael Mann's cool-blue visuals from Heat or mocking the sort of Angelenos that would watch that heist film and see nothing but a decor schematic for every single interior. Or, for that matter, whether composer Keegan DeWitt's is parodying the sax-heavy scores of Skinemax thrillers past or simply copying one in between icy techno interludes. The fact that the performers, especially the exceptional Kirke, keep their tongues firmly planted in their cheeks helps ground things, as does the fact that the jabs are featherweight enough to pass as shrugs. It may feel insubstantial at times, but somewhere out there, there's a twin of this film that lays on the L.A. Self-Owns Itself mojo in thick clumps. Gemini is the good-sibling version. It's worth a whirl.", score: -0.02696503496503496 }, { sentence: "Sadly, stereotypes are this film’s stock in trade. Is Melinda a victim or a warrior or just batshit crazy? The movie can't or won’t decide. Taraji will rise again, she always does. But enduing a full 120 minutes of this shitstorm takes its toll. Bitterness, anger, malice, bad blood – that’s acrimony, baby. And that's what you'll feel if you blow the price of ticket on this hack job.", score: 0.037159420289855076 }, { sentence: "But as soon as Vic decides to hit the road to Knoxville, his birthplace, sentiment infects the film like a virus. Writer-director Adam Rifkin clearly has affection for his star, but he's put him in a leaky vehicle that sinks way before the journey ends. Sam Elliott handled a similar role with more style, emotion and dramatic heft in last year's The Hero. But Reynolds, let's not forget, really is a movie star. And a great one. The pleasure of his company is still an exuberant gift. He deserves more than an opportunity missed.", score: 0.009042553191489356 }, { sentence: "Sadly, stereotypes are this film’s stock in trade. Is Melinda a victim or a warrior or just batshit crazy? The movie can't or won’t decide. Taraji will rise again, she always does. But enduing a full 120 minutes of this shitstorm takes its toll. Bitterness, anger, malice, bad blood – that’s acrimony, baby. And that's what you'll feel if you blow the price of ticket on this hack job.", score: 0.037159420289855076 }, { sentence: 'G-Eazy released his expansive third album, The Beautiful & Damned, in December with hit singles "No Limit" and "Him & I." The album featured guest appearances from Cardi B, A$AP Rocky, Charlie Puth and Halsey, and debuted at Number Three on the Billboard 200.', score: 0.04025 } ] }, { language: 'English', stemmer: 'PorterStemmer', vocabularyType: 'pattern', testSentences: [ { sentence: "So is Gemini a joke, you ask? You're never sure whether Andrew Reed's cinematography is straight borrowing from Michael Mann's cool-blue visuals from Heat or mocking the sort of Angelenos that would watch that heist film and see nothing but a decor schematic for every single interior. Or, for that matter, whether composer Keegan DeWitt's is parodying the sax-heavy scores of Skinemax thrillers past or simply copying one in between icy techno interludes. The fact that the performers, especially the exceptional Kirke, keep their tongues firmly planted in their cheeks helps ground things, as does the fact that the jabs are featherweight enough to pass as shrugs. It may feel insubstantial at times, but somewhere out there, there's a twin of this film that lays on the L.A. Self-Owns Itself mojo in thick clumps. Gemini is the good-sibling version. It's worth a whirl.", score: -0.007692307692307693 }, { sentence: "Sadly, stereotypes are this film’s stock in trade. Is Melinda a victim or a warrior or just batshit crazy? The movie can't or won’t decide. Taraji will rise again, she always does. But enduing a full 120 minutes of this shitstorm takes its toll. Bitterness, anger, malice, bad blood – that’s acrimony, baby. And that's what you'll feel if you blow the price of ticket on this hack job.", score: -0.010144927536231883 }, { sentence: "But as soon as Vic decides to hit the road to Knoxville, his birthplace, sentiment infects the film like a virus. Writer-director Adam Rifkin clearly has affection for his star, but he's put him in a leaky vehicle that sinks way before the journey ends. Sam Elliott handled a similar role with more style, emotion and dramatic heft in last year's The Hero. But Reynolds, let's not forget, really is a movie star. And a great one. The pleasure of his company is still an exuberant gift. He deserves more than an opportunity missed.", score: -0.026595744680851064 }, { sentence: "Sadly, stereotypes are this film’s stock in trade. Is Melinda a victim or a warrior or just batshit crazy? The movie can't or won’t decide. Taraji will rise again, she always does. But enduing a full 120 minutes of this shitstorm takes its toll. Bitterness, anger, malice, bad blood – that’s acrimony, baby. And that's what you'll feel if you blow the price of ticket on this hack job.", score: -0.010144927536231883 }, { sentence: 'G-Eazy released his expansive third album, The Beautiful & Damned, in December with hit singles "No Limit" and "Him & I." The album featured guest appearances from Cardi B, A$AP Rocky, Charlie Puth and Halsey, and debuted at Number Three on the Billboard 200.', score: 0.022727272727272728 }, { sentence: 'constructor hasOwnProperty toString setPrototypeOf', score: 0 } ] }, { language: 'French', stemmer: 'PorterStemmerFr', vocabularyType: 'pattern', testSentences: [ { sentence: 'La décision provoquait des réactions contrastées sur les réseaux sociaux, où certains rappelaient le mode d’action spectaculaire qui était la signature d’Act Up dans les années 1990 (préservatif géant sur l’obélisque de la Concorde à Paris, jets de faux sang ou de vraies cendres de militants…)', score: 0.0021739130434782596 }, { sentence: '« How’s your mug ? » Un simple tour de voix et c’est le rire assuré dans le public : la « Théière anglaise » Michel Sénéchal vient de s’adresser ce 29 février 2004 à la Tasse chinoise dans L’Enfant et les sortilèges de Ravel au Théâtre des Champs-Elysées. Le ténor français, que sa voix aux aigus faciles et bien projetés, son sens de la comédie et son irrésistible charisme avaient destiné aux « rôles » de caractère, cette aptitude à camper des personnages à la fois émouvants et ridicules, s’est éteint le 1er avril à l’âge de 91 ans à l’hôpital d’Eaubonne, dans le Val-d’Oise.', score: 0.021132075471698115 }, { sentence: 'C’est vrai. Mais cela correspond vraiment à la conjonction de ma passion du cinéma et de la musique de film. Etant français, je pouvais m’identifier à ces deux compositeurs très lyriques, qui avaient écrit la musique de films majeurs pour de grands metteurs en scène, et qui étaient partis à Hollywood. J’avais une fascination pour la Californie. Ils réunissaient tous les rêves que je pouvais...', score: 0.018923076923076924 }, { sentence: 'Après Scarlatti, Bach et Haendel dont il a joué les œuvres ou qui ont inspiré ses improvisations, le pianiste italien Enrico Pieranunzi rend hommage à Claude Debussy, dont on célèbre le centenaire de la mort. Complété par le batteur André Ceccarelli et le contrebassiste Diego Imbert, le trio forme l’ossature sur laquelle se greffent selon les morceaux la chanteuse italienne Simona Severini, entendue dans l’album du pianiste My Songbook (Via Veneto Jazz), ou le saxophoniste ténor David El Malek. Une configuration inhabituelle dans la discographie de Pieranunzi. Tour à tour alerte et virevoltant (Passepied, L’Autre Ballade, Cheveux), lâchant les chevaux (Blues for Claude, Mr. Golliwogg) ou tout en délicatesse (Nuit d’étoiles, Romance) jusqu’à ce moment de poésie qu’est L’Adieu, Enrico Pieranunzi et ses complices enchantent. Paul Benkimoun', score: 0.009291338582677165 }, { sentence: 'A la fin de l’année 2017, Spotify comptait 159 millions d’utilisateurs actifs, dont 58 millions en Europe, contre 52 millions en Amérique du Nord. Ce chiffre est presque le double de celui de son plus proche concurrent, Apple Music, comme indiqué dans son rapport auprès de la Securities and Exchange Commission (SEC), l’autorité de surveillance des marchés américains.Le marché européen des introductions a été robuste l’année dernière, avec une valeur totale de 43,9 milliards d’euros', score: -0.001733333333333333 } ] }, { language: 'Galician', stemmer: '', vocabularyType: 'senticon', testSentences: [ { sentence: 'A decisión da proxección deste filme non foi doada, por tratarse dun filme rodado por dous estadounidenses ó redor dun sinistro suceso, sen embargo, Santoalla é moito máis que o relato dunha crónica negra. É a historia dun soño truncado, é a mirada que doe, é o abandono do rural e sobre todo, é a procura do fogar. Lingüisticamente -ó igual que no GFF- nel conviven o inglés e o galego e nel, están reflectidos dous modos distintos de ver o mundo – o do que chega de fóra e do que sempre estivo-. Santoalla constrúe dende o concreto unha historia universal e convértese nun incómodo retrato sociolóxico dunha Galiza en vías de extinción mais non extinta.', score: 0.01852136752136752 }, { sentence: 'A nova edición do Galician Film Forum (e van oito!) xa está en marcha así que ide reservando a data e hora nas vosas axendas. Vémonos o venres 23 de marzo para a estrea en Londres de Santoalla, un filme dos estadounidenses Andrew Becker e Daniel Mehrer. A proxección vai ser na universidade King´s College de Londres [18:45 h, Strand Campus, Edmond J Safra Theatre WC2R 2LS] e a entrada será gratuíta, pero cómpre reservala con antelación nesta ligazón. Como en edicións anteriores, contamos co apoio do departamento de Spanish, Portuguese and Latin American Studies do King´s College. Grazas! Deixámosvos co tráiler da película e animándovos a reservar axiña as entradas. Vémonos nun chisco!', score: 0.008771929824561403 }, { sentence: 'ras a boa acollida da primeira proxección do ciclo ‘O cinema galego hoxe’ de Oxford que estamos a organizar co The John Rutherford Centre for Galician Studies, estamos moi contentos de anunciar a segunda xornada que vai ser o venres 19 de xaneiro na Main Hall da Taylor Institution ás 17 horas. Desta volta, ides poder gozar da película ‘Os fenómenos’ dirixida por Alfonso Zarauza. O evento terá entrada gratuita pero será preciso reservar a entrada con anterioridade. Xa vos avisaremos polas redes cando estean dispoñibles 😉', score: 0.022632183908045975 }, { sentence: 'O que acontece é que o Galician Film Forum non ten financiamento. Polo de agora contamos co apoio do King’s College, que acolle as nosas proxeccións, e de Dinahosting, que patrocina o hosting da nosa web. Os outros gastos páganse coas achegas dos membros do GFF e co que recadamos nas proxeccións. Por iso é máis importante ca nunca contar coas vosas doazóns! Grazas!', score: 0.005859375 }, { sentence: 'A fortaleza e dignidade dos habitantes de Aceredo, que durante anos se enfrontaron ao poder no seu intento de preservar o seu lar, son dignos de admiración e engádenlle forza a esta peza audiovisual. En definitiva, esta película documental, máis aló do seu carácter íntimo, logra conservar a memoria de algo que, de non ser así, estaría condenado a desaparecer no tempo, presente só nas lembranzas dos veciños.', score: 0.012867647058823529 } ] }, { language: 'Italian', stemmer: 'PorterStemmerIt', vocabularyType: 'pattern', testSentences: [ { sentence: "Merito del film, è quello di provare a fornire allo spettatore una visione ampia e obiettiva sui motivi dell'odio, facendo parlare le persone, oltre che le immagini. Nonostante le fiamme, destinate ad aumentare fin dall'incipit, divampino furiosamente. Come nella scena dell'impiccagione, quando un uomo di colore viene appeso a un albero mentre la sua casa brucia alle spalle. E una voce extradiegetica intona una preghiera triste e piena di rabbia.", score: 0.004428571428571428 }, { sentence: "Apparso di sbieco solo in un paio di sceneggiati tv, Karl Marx entra qui in scena, per la prima volta da protagonista, nel film di Raoul Peck, con il volto e il corpo di August Diehl. Un interprete in parte ma sopra le righe, a volte troppo compiaciuto, che tuttavia serve a perfezione l'obiettivo: rappresentare Marx come uomo prima che come filosofo, come artista prima che come teorico, raccontarlo arrabbiato, innamorato, umiliato, ubriaco, come fosse una persona normale.", score: -0.0016666666666666668 }, { sentence: "Mario Cavallaro non è un uomo cattivo; è fondamentalmente un uomo solo che ha fatto del non cambiamento uno scudo protettivo che si costella di aculei quando si trova davanti coloro che finiscono con il tentare, con il loro modo di vivere, non di distruggerlo ma solo di scalfirlo. Come tanti di noi risponde in modo infastidito alle richieste di oboli o acquisti di vario genere che gli vengono avanzate da venditori ambulanti che hanno la pelle di un colore diverso dal suo. Non sa che in Africa si dice che \"chiedere non è rubare\" ma sperimenta solo l'insistenza nella richiesta che può fare la differenza.", score: 0.010754716981132074 }, { sentence: "Teen-movie sentimentale e notturno, gravato da una malattia genetica ereditaria che predispone all'insorgenza di carcinomi, Il sole a mezzanotte - Midnight Sun fa il suo lavoro e lo fa bene, esplorando l'abbagliamento del primo amore e applicando senza cadute i codici del genere: il montaggio spensierato a colpi di baci sotto le stelle, sotto i capelli sciolti e le lune piene, dentro bagni lunari e contro ostacoli drammatici che riconducono al duro principio di realtà. Diretto da Scott Speer, il romantic-drama di Katie e Charlie elude l'overdose e il côté sciropposo, le trappole della disgrazia e quelle della compassione, seguendo un'educazione sentimentale piena e fatale che ha voglia di vivere al di là delle difficoltà incontrate o imposte dalla sorte. Lui ha le spalle larghe (da nuotatore) e la mascella serrata, lei un candore verginale e una dolcezza risplendente più del sole che la uccide.", score: -0.0010344827586206884 }, { sentence: "Scritto per se stessa molto bene, il personaggio di Maria ha il pregio di una grazia non comune che naturalmente collide con il caos endogeno di una Roma sempre più degradata, anche umanamente. La donna mostra gentilezza ed empatia verso tutti, specie verso gli emarginati che sanno di verità e contrastano con il vuoto del jet set cinematografico romacentrico: il contrasto mai retorico non fa che aumentare lo spessore della protagonista. Scritto senza banalità, con notevole ironia (alcuni siparietti sono veramente irresistibili) e girato con garbo, il film resta tuttavia sulla linea della premessa che non della riuscita nel momento in cui non sembra mai veramente decollare. I sentieri narrativi abbozzati sono interessanti ma appaiono ancorati a un sommerso che stenta ad evolversi. L'auspicio è che lo sguardo indubbiamente sensibile di Karen Di Porto possa presto posarsi su un plot più sofisticato e ambizioso.", score: 0.024097222222222225 } ] }, { language: 'Spanish', stemmer: 'PorterStemmerEs', vocabularyType: 'afinn', testSentences: [ { sentence: 'Pues, en efecto, es solo el plano y lo que muestra aquello que interesa a Zemeckis. Y también aquello que, finalmente, acaba evocando una cierta fantasmagoría que está detrás de muchas de las películas del cineasta, ese espacio entre las cosas que se dedica a atisbar desde su cámara, o desde el avión de El vuelo, o desde la isla de Náufrago, el aire y el agua, o simplemente la presencia imponente de las Torres Gemelas que aquí se transforma poco a poco en ausencia inquietante, mezcla de pasado y presente, hasta el punto de que El desafío podría ser también una película política. ¿Estamos ya en condiciones de equiparar todo lo dicho con el metraje encontrado de Forrest Gump, al fin y al cabo otra celebración de ese espacio inmaterial, de ese tiempo suspendido que es la Historia? ', score: 0.05 }, { sentence: 'En este sentido, El insulto, una de las cintas nominadas al Oscar a la Mejor película de habla no inglesa en los pasados Premios de la Academia, también subraya lo rápido que olvidamos los traumas de nuestra historia reciente, sepultados por los distintos discursos e ideologías agitadoras del odio. Tal vez Doueiri haya simplificado un conflicto complejo, pero los estereotipos que aparecen en El insulto explican bastante bien cómo funcionamos cuando la rabia nos corroe.', score: 0.04 }, { sentence: 'Su actriz principal es una niña, y sus compañeras de reparto bailan como lo harían las dos amigas de La boda de mi mejor amiga. La pátina irónica de la propuesta no impide que Dumont elabore el lirismo del texto y la belleza del paisaje. Jeannette es una película con los pies en la tierra y con la mirada hacia el cielo, una película que parte de lo físico (epicentro del cine de Dumont) para elevarse hacia la espiritualidad.', score: 0.012658227848101266 }, { sentence: 'El poco miedo a parecer estúpida, por otra parte, hace de esta incursión en las debilidades masculinas un retrato divertido a la par que honesto, e incluso cuando se sitúa en espacios más frívolos sabe encontrar los resortes adecuados para hacer que del chiste broten risas ácidas.', score: 0.02127659574468085 }, { sentence: 'Hay imágenes en Ready Player One realmente ingeniosas, así como set pieces abrumadores (que mejor no desvelar para no estropear el visionado); aunque el conglomerado de citas no siempre acaba funcionando, y la mezcla, por tanto, se transforma en mezcolanza: en un abigarrado fresco de todas esas cosas que han molado en los últimos 40 años, apelotonadas sin demasiado rigor ni pensamiento. Poca duda cabe de que Spielberg ha pulido mucho la literatura de Cline (es notorio en el último tramo del largometraje), pero aún y así el toque mágico del Rey Midas se resiente (algo), sobre todo cuando nos damos cuenta de que debajo de los adoquines, esa pátina espectacular de píxeles destellantes, no está escondida la playa. Ni nada que se le parezca.', score: 0.008 } ] }, { language: 'Spanish', stemmer: 'PorterStemmerEs', vocabularyType: 'senticon', testSentences: [ { sentence: 'Pues, en efecto, es solo el plano y lo que muestra aquello que interesa a Zemeckis. Y también aquello que, finalmente, acaba evocando una cierta fantasmagoría que está detrás de muchas de las películas del cineasta, ese espacio entre las cosas que se dedica a atisbar desde su cámara, o desde el avión de El vuelo, o desde la isla de Náufrago, el aire y el agua, o simplemente la presencia imponente de las Torres Gemelas que aquí se transforma poco a poco en ausencia inquietante, mezcla de pasado y presente, hasta el punto de que El desafío podría ser también una película política. ¿Estamos ya en condiciones de equiparar todo lo dicho con el metraje encontrado de Forrest Gump, al fin y al cabo otra celebración de ese espacio inmaterial, de ese tiempo suspendido que es la Historia? ', score: 0.007957142857142857 }, { sentence: 'En este sentido, El insulto, una de las cintas nominadas al Oscar a la Mejor película de habla no inglesa en los pasados Premios de la Academia, también subraya lo rápido que olvidamos los traumas de nuestra historia reciente, sepultados por los distintos discursos e ideologías agitadoras del odio. Tal vez Doueiri haya simplificado un conflicto complejo, pero los estereotipos que aparecen en El insulto explican bastante bien cómo funcionamos cuando la rabia nos corroe.', score: 0.0020133333333333327 }, { sentence: 'Su actriz principal es una niña, y sus compañeras de reparto bailan como lo harían las dos amigas de La boda de mi mejor amiga. La pátina irónica de la propuesta no impide que Dumont elabore el lirismo del texto y la belleza del paisaje. Jeannette es una película con los pies en la tierra y con la mirada hacia el cielo, una película que parte de lo físico (epicentro del cine de Dumont) para elevarse hacia la espiritualidad.', score: 0.00511392405063291 }, { sentence: 'El poco miedo a parecer estúpida, por otra parte, hace de esta incursión en las debilidades masculinas un retrato divertido a la par que honesto, e incluso cuando se sitúa en espacios más frívolos sabe encontrar los resortes adecuados para hacer que del chiste broten risas ácidas.', score: 0.00719148936170213 }, { sentence: 'Hay imágenes en Ready Player One realmente ingeniosas, así como set pieces abrumadores (que mejor no desvelar para no estropear el visionado); aunque el conglomerado de citas no siempre acaba funcionando, y la mezcla, por tanto, se transforma en mezcolanza: en un abigarrado fresco de todas esas cosas que han molado en los últimos 40 años, apelotonadas sin demasiado rigor ni pensamiento. Poca duda cabe de que Spielberg ha pulido mucho la literatura de Cline (es notorio en el último tramo del largometraje), pero aún y así el toque mágico del Rey Midas se resiente (algo), sobre todo cuando nos damos cuenta de que debajo de los adoquines, esa pátina espectacular de píxeles destellantes, no está escondida la playa. Ni nada que se le parezca.', score: -0.00584 } ] }, { language: 'Portuguese', stemmer: 'PorterStemmerPt', vocabularyType: 'afinn', testSentences: [ { sentence: 'Juan Carlos prepara regresso a Espanha. Victoria Federica, neta do rei emérito, confirmou a informação à imprensa.', score: 0 }, { sentence: 'fortalecimento', score: 2 }, { sentence: 'fortalecimento controverso', score: 0 } ] } ] function detStemmer (st: string): Stemmer | undefined { switch (st) { case 'PorterStemmerPt': return PorterStemmerPt case 'PorterStemmerEs': return PorterStemmerEs case 'PorterStemmerIt': return PorterStemmerIt case 'PorterStemmerFr': return PorterStemmerFr case 'PorterStemmerNl': return PorterStemmerNl case 'PorterStemmer': return PorterStemmer default: return undefined } } describe('The sentiment analyzer analyzes the sentiment of sentences in multiple languages using different types of vocabularies', function () { testConfigurations.forEach((config, index) => { it('Should analyze a set of sentences with each configuration ' + '(' + config.language + ', ' + config.vocabularyType + ', ' + (config.stemmer ?? 'without stemmer') + ')', function () { // Create the stemmer const stemmer = detStemmer(config.stemmer) // Create analyzer const analyzer = new Analyzer(config.language, stemmer, config.vocabularyType) config.testSentences.forEach(sentencePlusScore => { const words = sentencePlusScore.sentence.split(/\s+/) const score = analyzer.getSentiment(words) expect(score).toEqual(sentencePlusScore.score) if (score !== sentencePlusScore.score) { console.log(`Wrong score for sentence ${sentencePlusScore.sentence}: \ expected ${sentencePlusScore.score} but got \ ${score}.Sentence: sentencePlusScore.sentence`) } }) }) }) }) ================================================ FILE: spec/WordPunctTokenizer_spec.ts ================================================ /* Copyright (c) 2018, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { WordPunctTokenizer } from 'lib/natural' const tokenizer = new WordPunctTokenizer() const sentences = [ 'Knot: geldpers aanzetten is paardenmiddel voor half procent inflatie', 'De president van De Nederlandsche Bank, Klaas Knot, vindt de geldinjectie in de Europese economie van ruim 1.100 miljard euro veel te hoog voor het beoogde resultaat: een half procent inflatie in 2016.', "'Oftewel 50 basispunten, dat zijn heel dure basispunten', zei Knot donderdag in de Tweede Kamer.", 'Door: Robert Giebels 5 februari 2015, 21:55 Bron: ANP', 'De financiële specialisten onder de Kamerleden hadden Knot gevraagd uitleg te geven over het ECB-besluit van 22 januari.;', 'Hoe gaat de tokenizer om met? vraagtekens ?', 'Verbindingsstreepje in een woord: ECB-besluit', 'Gedachtestreepje in een zin met spaties eromheen - dit is de gedachte na het streepje ! ' ] const expectedResults = [ ['Knot', ':', 'geldpers', 'aanzetten', 'is', 'paardenmiddel', 'voor', 'half', 'procent', 'inflatie'], ['De', 'president', 'van', 'De', 'Nederlandsche', 'Bank', ',', 'Klaas', 'Knot', ',', 'vindt', 'de', 'geldinjectie', 'in', 'de', 'Europese', 'economie', 'van', 'ruim', '1.100', 'miljard', 'euro', 'veel', 'te', 'hoog', 'voor', 'het', 'beoogde', 'resultaat', ':', 'een', 'half', 'procent', 'inflatie', 'in', '2016.'], ["'", 'Oftewel', '50', 'basispunten', ',', 'dat', 'zijn', 'heel', 'dure', 'basispunten', "'", ',', 'zei', 'Knot', 'donderdag', 'in', 'de', 'Tweede', 'Kamer', '.'], ['Door', ':', 'Robert', 'Giebels', '5', 'februari', '2015', ',', '21', ':', '55', 'Bron', ':', 'ANP'], ['De', 'financiële', 'specialisten', 'onder', 'de', 'Kamerleden', 'hadden', 'Knot', 'gevraagd', 'uitleg', 'te', 'geven', 'over', 'het', 'ECB-besluit', 'van', '22', 'januari', '.', ';'], ['Hoe', 'gaat', 'de', 'tokenizer', 'om', 'met', '?', 'vraagtekens', '?'], ['Verbindingsstreepje', 'in', 'een', 'woord', ':', 'ECB-besluit'], ['Gedachtestreepje', 'in', 'een', 'zin', 'met', 'spaties', 'eromheen', '-', 'dit', 'is', 'de', 'gedachte', 'na', 'het', 'streepje', '!'] ] describe('Word Punctuation Tokenizer', function () { it('should correctly tokenize words and punctuation symbols', function () { sentences.forEach((sentence, index) => { const result = tokenizer.tokenize(sentence) expect(result).toEqual(expectedResults[index]) }) }) }) ================================================ FILE: spec/aggressive_tokenizer_de_spec.ts ================================================ /* Copyright (c) 2023, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { AggressiveTokenizerDe } from 'lib/natural' const tokenizer = new AggressiveTokenizerDe() describe('aggressive_tokenizer (de)', function () { it('should tokenize strings with diacritics ä, ö and ü, and esszet ß', function () { expect(tokenizer.tokenize('Es werden nur Maßnahmen gefördert, die nicht aufgrund einer Rechtsvorschrift umgesetzt werden müssen.')).toEqual( ['Es', 'werden', 'nur', 'Maßnahmen', 'gefördert', 'die', 'nicht', 'aufgrund', 'einer', 'Rechtsvorschrift', 'umgesetzt', 'werden', 'müssen']) expect(tokenizer.tokenize('Anträge sind vor Beginn der jeweiligen Maßnahme zu stellen.')).toEqual( ['Anträge', 'sind', 'vor', 'Beginn', 'der', 'jeweiligen', 'Maßnahme', 'zu', 'stellen']) }) }) ================================================ FILE: spec/aggressive_tokenizer_es_spec.ts ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this softwé and associated documentation files (the "Softwé"), to deal in the Softwé without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Softwé, and to permit persons to whom the Softwé 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 Softwé. THE SOFTWé IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWé OR THE USE OR OTHER DEALINGS IN THE SOFTWé. */ 'use strict' import { AggressiveTokenizerEs } from 'lib/natural' const tokenizer = new AggressiveTokenizerEs() describe('aggressive_tokenizer (es)', function () { it('should tokenize strings', function () { expect(tokenizer.tokenize('hola yo me llamo eduardo y esudié ingeniería')).toEqual(['hola', 'yo', 'me', 'llamo', 'eduardo', 'y', 'esudié', 'ingeniería']) }) /* it('should tokenize strings via attached string method', function() { tokenizer.attach(); expect('hola yo me llamo eduardo y esudié ingeniería'.tokenize()).toEqual(['hola', 'yo', 'me', 'llamo', 'eduardo', 'y', 'esudié', 'ingeniería']); }); */ }) ================================================ FILE: spec/aggressive_tokenizer_fr_spec.ts ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this softwé and associated documentation files (the "Softwé"), to deal in the Softwé without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Softwé, and to permit persons to whom the Softwé 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 Softwé. THE SOFTWé IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWé OR THE USE OR OTHER DEALINGS IN THE SOFTWARE */ 'use strict' import { AggressiveTokenizerFr } from 'lib/natural' const tokenizer = new AggressiveTokenizerFr() const text = "Affectueusement surnommé « Gabo » dans toute l'Amérique latine, le Colombien Gabriel Garcia Marquez, prix Nobel de littérature 1982, l'un des plus grands écrivains du XXe siècle, est mort À son domicile de Mexico jeudi 17 avril. Il était âgé de 87 ans. Son Œuvre a été traduite dans toutes les langues ou presque, et vendue à quelque 50 millions d'exemplaires." const tokenized = ['Affectueusement', 'surnommé', 'Gabo', 'dans', 'toute', 'l', 'Amérique', 'latine', 'le', 'Colombien', 'Gabriel', 'Garcia', 'Marquez', 'prix', 'Nobel', 'de', 'littérature', '1982', 'l', 'un', 'des', 'plus', 'grands', 'écrivains', 'du', 'XXe', 'siècle', 'est', 'mort', 'À', 'son', 'domicile', 'de', 'Mexico', 'jeudi', '17', 'avril', 'Il', 'était', 'âgé', 'de', '87', 'ans', 'Son', 'Œuvre', 'a', 'été', 'traduite', 'dans', 'toutes', 'les', 'langues', 'ou', 'presque', 'et', 'vendue', 'à', 'quelque', '50', 'millions', 'd', 'exemplaires'] describe('aggressive_tokenizer (fr)', function () { it('should tokenize strings', function () { expect(tokenizer.tokenize(text)).toEqual(tokenized) }) it('should handle hyphens in words correctly', function () { const sentence = 'Des sous-pages dans le sous-bois de la ville de Paris' const res = tokenizer.tokenize(sentence) const expectedRes = ['Des', 'sous-pages', 'dans', 'le', 'sous-bois', 'de', 'la', 'ville', 'de', 'Paris'] expect(res).toEqual(expectedRes) }) /* it('should tokenize strings via attached string method', function() { tokenizer.attach(); expect(text.tokenize()).toEqual(tokenized); }); */ }) ================================================ FILE: spec/aggressive_tokenizer_hi_spec.ts ================================================ /* file aggressive_tokenizer_hi_spec.js , located at spec\aggressive_tokenizer_hi_spec.js is licensed as follows: - (The MIT License) - Copyright (c) 2023 Mukesh Singh Bisht Permission is hereby granted, free of charge, to any person or entity obtaining a copy of file aggressive_tokenizer_hi_spec.js and its content(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: 1. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 2. Proper credit must be given to the original author Mukesh Singh Bisht, along with the date of authorship specified as July 23, 2023, in any usage, distribution, or modification of the Software. THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { AggressiveTokenizerHi } from 'lib/natural' const tokenizer = new AggressiveTokenizerHi() describe('aggressive_tokenizer (hi)', function () { it('should tokenize strings', function () { const string = 'स्वतंत्रता दिवस की हार्दिक शुभकामनाएं' const expectedArray = ['स्वतंत्रता', 'दिवस', 'की', 'हार्दिक', 'शुभकामनाएं'] expect(tokenizer.tokenize(string)).toEqual(expectedArray) }) it('should tokenize strings including english words', function () { const string = 'स्वतंत्रता दिवस की हार्दिक शुभकामनाएं congrats mukesh' const expectedArray = ['स्वतंत्रता', 'दिवस', 'की', 'हार्दिक', 'शुभकामनाएं', 'congrats', 'mukesh'] expect(tokenizer.tokenize(string)).toEqual(expectedArray) }) it('should swallow viram(stop) symbols', function () { const string = 'स्वतंत्रता दिवस की हार्दिक शुभकामनाएं । congrats mukesh' const expectedArray = ['स्वतंत्रता', 'दिवस', 'की', 'हार्दिक', 'शुभकामनाएं', 'congrats', 'mukesh'] expect(tokenizer.tokenize(string)).toEqual(expectedArray) }) it('should swallow dirgh viram(stop) symbols', function () { const string = 'राजा बाजीराव ॥ ' const expectedArray = ['राजा', 'बाजीराव'] expect(tokenizer.tokenize(string)).toEqual(expectedArray) }) it('should swallow trailing off symbols', function () { const string = 'राजा बाजीराव ...' const expectedArray = ['राजा', 'बाजीराव'] expect(tokenizer.tokenize(string)).toEqual(expectedArray) }) it('should swallow question mark symbols', function () { const string = 'राजा बाजीराव ?' const expectedArray = ['राजा', 'बाजीराव'] expect(tokenizer.tokenize(string)).toEqual(expectedArray) }) it('should swallow comma mark symbols', function () { const string = 'राजा, बाजीराव' const expectedArray = ['राजा', 'बाजीराव'] expect(tokenizer.tokenize(string)).toEqual(expectedArray) }) }) ================================================ FILE: spec/aggressive_tokenizer_nl_spec.ts ================================================ /* Copyright (c) 2011, Chris Umbel, Martijn de Boer Permission is hereby granted, free of charge, to any person obtaining a copy of this softwé and associated documentation files (the "Softwé"), to deal in the Softwé without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Softwé, and to permit persons to whom the Softwé 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 Softwé. THE SOFTWé IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWé OR THE USE OR OTHER DEALINGS IN THE SOFTWé. */ 'use strict' import { AggressiveTokenizerNl } from 'lib/natural' const tokenizer = new AggressiveTokenizerNl() describe('aggressive_tokenizer (nl)', function () { it('should tokenize strings', function () { expect(tokenizer.tokenize('\'s Morgens is het nog erg koud, vertelde de weerman over een van de radio\'s')).toEqual(['\'s', 'Morgens', 'is', 'het', 'nog', 'erg', 'koud', 'vertelde', 'de', 'weerman', 'over', 'een', 'van', 'de', 'radio\'s']) }) it('should handle hyphens in words correctly', function () { const sentence = 'clearing-systeem front-office-automatisering christelijk-historisch mond-op-mond, kant-en-klaar, kruidje-roer-me-niet, doe-het-zelver' const res = tokenizer.tokenize(sentence) const expectedRes = ['clearing-systeem', 'front-office-automatisering', 'christelijk-historisch', 'mond-op-mond', 'kant-en-klaar', 'kruidje-roer-me-niet', 'doe-het-zelver'] expect(res).toEqual(expectedRes) }) }) ================================================ FILE: spec/aggressive_tokenizer_pt_spec.ts ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this softwé and associated documentation files (the "Softwé"), to deal in the Softwé without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Softwé, and to permit persons to whom the Softwé 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 Softwé. THE SOFTWé IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWé OR THE USE OR OTHER DEALINGS IN THE SOFTWé. */ 'use strict' import { AggressiveTokenizerPt } from 'lib/natural' const tokenizer = new AggressiveTokenizerPt() describe('aggressive_tokenizer (pt)', function () { it('should tokenize strings', function () { expect(tokenizer.tokenize('isso é coração')).toEqual(['isso', 'é', 'coração']) }) it('should swallow punctuation', function () { expect(tokenizer.tokenize('isso é coração, no')).toEqual(['isso', 'é', 'coração', 'no']) }) it('should swallow final punctuation', function () { expect(tokenizer.tokenize('isso é coração, no?')).toEqual(['isso', 'é', 'coração', 'no']) }) it('should swallow initial punctuation', function () { expect(tokenizer.tokenize('.isso é coração, no')).toEqual(['isso', 'é', 'coração', 'no']) }) it('should swallow duplicate punctuation', function () { expect(tokenizer.tokenize('eu vou... pause')).toEqual(['eu', 'vou', 'pause']) }) }) ================================================ FILE: spec/aggressive_tokenizer_spec.ts ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { AggressiveTokenizer } from 'lib/natural' const tokenizer = new AggressiveTokenizer() describe('aggressive_tokenizer (en)', function () { it('should tokenize strings', function () { expect(tokenizer.tokenize('these are things')).toEqual(['these', 'are', 'things']) }) it('should swallow punctuation', function () { expect(tokenizer.tokenize('these are things, no')).toEqual(['these', 'are', 'things', 'no']) }) it('should swallow final punctuation', function () { expect(tokenizer.tokenize('these are things, no?')).toEqual(['these', 'are', 'things', 'no']) }) it('should swallow initial punctuation', function () { expect(tokenizer.tokenize('.these are things, no')).toEqual(['these', 'are', 'things', 'no']) }) it('should swallow duplicate punctuation', function () { expect(tokenizer.tokenize('i shal... pause')).toEqual(['i', 'shal', 'pause']) }) it('should remove underscores', function () { expect(tokenizer.tokenize('_ hi_this_is_a_test_case_ for__removing___underscores_')).toEqual(['hi', 'this', 'is', 'a', 'test', 'case', 'for', 'removing', 'underscores']) }) it('should handle the use of hyphen inside words (issue #656)', function () { expect(tokenizer.tokenize('links text-based opposed image-based links/CTA\'s')).toEqual( ['links', 'text-based', 'opposed', 'image-based', 'links/CTA\'s']) }) }) ================================================ FILE: spec/aggressive_tokenizer_sv_spec.ts ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { AggressiveTokenizerSv } from 'lib/natural' const tokenizer = new AggressiveTokenizerSv() describe('aggressive_tokenizer (sv)', function () { it('should tokenize strings', function () { expect(tokenizer.tokenize('Ett tu tre')).toEqual(['Ett', 'tu', 'tre']) }) it('should swallow punctuation', function () { expect(tokenizer.tokenize('Ett, tu, tre')).toEqual(['Ett', 'tu', 'tre']) }) it('should swallow final punctuation', function () { expect(tokenizer.tokenize('Ett, tu, tre?')).toEqual(['Ett', 'tu', 'tre']) }) it('should swallow initial punctuation', function () { expect(tokenizer.tokenize('.Ett, tu, tre')).toEqual(['Ett', 'tu', 'tre']) }) it('should swallow duplicate punctuation', function () { expect(tokenizer.tokenize('Ett, tu... tre')).toEqual(['Ett', 'tu', 'tre']) }) it('should not split on hyphen or Swedish letters', function () { expect(tokenizer.tokenize('It-bolaget ägs av en 30-åring')).toEqual(['It-bolaget', 'ägs', 'av', 'en', '30-åring']) }) }) ================================================ FILE: spec/aggressive_tokenizer_vi_spec.ts ================================================ /* Copyright (c) 2018, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this softwé and associated documentation files (the "Softwé"), to deal in the Softwé without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Softwé, and to permit persons to whom the Softwé 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 Softwé. THE SOFTWé IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWé OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { AggressiveTokenizerVi } from 'lib/natural' const tokenizer = new AggressiveTokenizerVi() describe('aggressive_tokenizer (vi)', function () { it('should tokenize strings', function () { expect(tokenizer.tokenize('Tôi bị lạc')).toEqual(['Tôi', 'bị', 'lạc']) }) it('should swallow final punctuation', function () { expect(tokenizer.tokenize('Làm ơn đợi một lát!')).toEqual(['Làm', 'ơn', 'đợi', 'một', 'lát']) expect(tokenizer.tokenize('Tôi đang tìm John.')).toEqual(['Tôi', 'đang', 'tìm', 'John']) }) it('should swallow initial punctuation', function () { expect(tokenizer.tokenize('.Đi thẳng, sau đó rẽ trái / phải')).toEqual(['Đi', 'thẳng', 'sau', 'đó', 'rẽ', 'trái', 'phải']) }) it('should swallow duplicate punctuation', function () { expect(tokenizer.tokenize('.Xin giữ máy!')).toEqual(['Xin', 'giữ', 'máy']) }) }) ================================================ FILE: spec/bayes_classifier_spec.ts ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { BayesClassifier, PorterStemmer } from 'lib/natural' function setupClassifier (): BayesClassifier { const classifier = new BayesClassifier() classifier.addDocument(['fix', 'box'], 'computing') classifier.addDocument(['write', 'code'], 'computing') classifier.addDocument(['script', 'code'], 'computing') classifier.addDocument(['write', 'book'], 'literature') classifier.addDocument(['read', 'book'], 'literature') classifier.addDocument(['study', 'book'], 'literature') return classifier } describe('bayes classifier', function () { describe('classifier', function () { it('should classify with arrays', function () { const classifier = setupClassifier() classifier.train() expect(classifier.classify(['bug', 'code'])).toBe('computing') expect(classifier.classify(['read', 'thing'])).toBe('literature') }) it('should classify with parallel training', function () { const classifier = setupClassifier() // Check for parallel method if (classifier.Threads !== null) { classifier.trainParallel(2, function (err) { if (err !== null) { console.log(err) return } expect(classifier.classify(['bug', 'code'])).toBe('computing') expect(classifier.classify(['read', 'thing'])).toBe('literature') }) } }) it('should classify with parallel batched training', function () { const classifier = setupClassifier() // Check for parallel method if (classifier.Threads !== null) { classifier.on('doneTraining', function () { expect(classifier.classify(['bug', 'code'])).toBe('computing') expect(classifier.classify(['read', 'thing'])).toBe('literature') // asyncSpecDone(); }) classifier.trainParallelBatches({ numThreads: 2, batchSize: 2 }) } }) it('should provide all classification scores', function () { const classifier = setupClassifier() classifier.train() expect(classifier.getClassifications('i write code')[0].label).toBe('computing') expect(classifier.getClassifications('i write code')[1].label).toBe('literature') }) function setupClassifierWithSentences (): BayesClassifier { const classifier = new BayesClassifier() classifier.addDocument('i fixed the box', 'computing') classifier.addDocument('i write code', 'computing') classifier.addDocument('nasty script code', 'computing') classifier.addDocument('write a book', 'literature') classifier.addDocument('read a book', 'literature') classifier.addDocument('study the books', 'literature') return classifier } it('should classify with strings', function () { const classifier = setupClassifierWithSentences() classifier.train() expect(classifier.classify('a bug in the code')).toBe('computing') expect(classifier.classify('read all the books')).toBe('literature') }) it('should classify and re-classify after document-removal', function () { const classifier = new BayesClassifier() const classifications = new Map() // Add some good/bad docs and train classifier.addDocument('foo bar baz', 'good') classifier.addDocument('qux zooby', 'bad') classifier.addDocument('asdf qwer', 'bad') classifier.train() expect(classifier.classify('foo')).toBe('good') expect(classifier.classify('qux')).toBe('bad') // Remove one of the bad docs, retrain classifier.removeDocument('qux zooby', 'bad') classifier.retrain() // Simple `classify` will still return a single result, even if // ratio for each side is equal -- have to compare actual values in // the classifications, should be equal since qux is unclassified const arr = classifier.getClassifications('qux') let item: { label: string, value: number } for (let i = 0, ii = arr.length; i < ii; i++) { item = arr[i] classifications.set(item.label, item.value) } expect(classifications.get('good')).toEqual(classifications.get('bad')) // Re-classify as good, retrain classifier.addDocument('qux zooby', 'good') classifier.retrain() // Should now be good, original docs should be unaffected expect(classifier.classify('foo')).toBe('good') expect(classifier.classify('qux')).toBe('good') }) it('should serialize and deserialize a working classifier', function () { const classifier = setupClassifierWithSentences() const objAsString = JSON.stringify(classifier) const obj: Record = JSON.parse(objAsString) const newClassifier = BayesClassifier.restore(obj) newClassifier.addDocument('kick a ball', 'sports') newClassifier.addDocument('hit some balls', 'sports') newClassifier.addDocument('kick and punch', 'sports') newClassifier.train() expect(newClassifier.classify('a bug in the code')).toBe('computing') expect(newClassifier.classify('read all the books')).toBe('literature') expect(newClassifier.classify('kick butt')).toBe('sports') }) it('should accept an optional smoothing parameter for the Bayesian estimates', function () { const defaultClassifier = new BayesClassifier() const newClassifier1 = new BayesClassifier(PorterStemmer) const newClassifier2 = new BayesClassifier(PorterStemmer, 0.1) expect(defaultClassifier.classifier.smoothing).toBe(1.0) expect(newClassifier1.classifier.smoothing).toBe(1.0) expect(newClassifier2.classifier.smoothing).toBe(0.1) }) }) }) ================================================ FILE: spec/brill_pos_tagger_spec.ts ================================================ /* Unit test for Brill's POS Tagger: test against the pos module Copyright (C) 2019 Hugo W.L. ter Doest 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 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ 'use strict' import { WordTokenizer, Lexicon, RuleSet, BrillPOSTagger } from 'lib/natural' import type { Sentence, TagResults } from 'lib/natural' import * as englishSentences from '../spec/test_data/NYT-20150205-picassos-granddaughter-plans-to-sell-art-worrying-the-market.json' import jsonData from '../spec/test_data/NYT-20150205-picassos-granddaughter-plans_expected_tag_results.json' import * as dutchSentences from '../spec/test_data/Volkskrant-20150205-Knot-geldpers-aanzetten-is-paardenmiddel-voor-half-procent-inflatie.json' const englishTagResults: TagResults = jsonData as TagResults const DEBUG = false // Compares two tagged sentences. First one is in the old POSJS format, i.e. // an array of two position arrays. The second one is a Sentence object // that holds an array of objects for each position {token: "string", tag: "string"} function compareTaggedSentences (sentenceInOldFormat: string[][], sentenceInNewFormat: Sentence): boolean { let equal = true sentenceInOldFormat.forEach(function (wordPlusTag: string[], index: number) { equal = equal && (wordPlusTag[1] === sentenceInNewFormat.taggedWords[index].tag) DEBUG && console.log(wordPlusTag[1] + ' ' + sentenceInNewFormat.taggedWords[index].tag) }) return equal } describe('Brill\'s POS Tagger', function () { let brillPOSTagger: BrillPOSTagger let lexicon: Lexicon let ruleSet: RuleSet const tokenizer = new WordTokenizer() it('should process an English newspaper article just like the dariusk/pos-js module', function () { lexicon = new Lexicon('EN', 'NN') expect(lexicon.nrEntries()).toBeGreaterThan(0) ruleSet = new RuleSet('EN') expect(ruleSet.nrRules()).toBeGreaterThan(0) brillPOSTagger = new BrillPOSTagger(lexicon, ruleSet) englishSentences.sentences.forEach(function (sentence: string, index: number) { const tokenizedSentence = tokenizer.tokenize(sentence) const taggedSentence = brillPOSTagger.tag(tokenizedSentence) expect(compareTaggedSentences(englishTagResults.results[index], taggedSentence)).toBe(true) }) }) it('should tag a Dutch news paper article', function () { lexicon = new Lexicon('DU', 'N') expect(lexicon.nrEntries()).toBeGreaterThan(0) const ruleSet = new RuleSet('DU') expect(ruleSet.nrRules()).toBeGreaterThan(0) brillPOSTagger = new BrillPOSTagger(lexicon, ruleSet) dutchSentences.sentences.forEach(function (sentence, index) { const tokenizedSentence = tokenizer.tokenize(sentence) const taggedSentence = brillPOSTagger.tag(tokenizedSentence) expect(tokenizedSentence.length).toEqual(taggedSentence.taggedWords.length) }) }) }) ================================================ FILE: spec/brill_pos_trainer_spec.ts ================================================ /* Unit test for Brill's POS Trainer Copyright (C) 2019 Hugo W.L. ter Doest 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 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ 'use strict' import { Corpus, ruleTemplates, RuleTemplate, Sentence, BrillPOSTrainer, BrillPOSTagger, BrillPOSTester } from 'lib/natural' import type { Lexicon, RuleSet } from 'lib/natural' // Import a JSON file with the brown corpus import brownCorpus from '../spec/test_data/browntag_nolines_excerpt.json' const DEBUG = false const JSON_FLAG = 2 function selectRuleTemplates (templateNames: string[]): RuleTemplate[] { const templates: RuleTemplate[] = [] templateNames.forEach(function (name: string) { if (ruleTemplates[name] !== undefined) { const template = new RuleTemplate(name, ruleTemplates[name]) templates.push(template) } }) return templates } describe('Brill\'s POS Trainer', function () { let corpus = null let corpora: Corpus[] const percentageTrain = 60 let trainLexicon: Lexicon // Templates consider only tags, no words const templateNames = [ 'NEXT-TAG', 'PREV-TAG', 'PREV-1-OR-2-OR-3-TAG', 'PREV-1-OR-2-TAG', 'NEXT1OR2TAG', 'NEXT1OR2OR3TAG', 'SURROUNDTAG', 'PREV2TAG', 'NEXT2TAG' ] let templates: RuleTemplate[] let trainer = null let ruleSet: RuleSet it('should split the corpus in a training and testing corpus', function () { corpus = new Corpus(brownCorpus, JSON_FLAG, Sentence) DEBUG && console.log('Corpus: ' + JSON.stringify(corpus, null, 2)) corpora = corpus.splitInTrainAndTest(percentageTrain) expect(corpora[0].nrSentences() + corpora[1].nrSentences()).toEqual(corpus.nrSentences()) }) it('should build a lexicon from the training corpus', function () { trainLexicon = corpora[0].buildLexicon() // Set default category to noun (NN) // and default category for capitalised words to proper noun (NP) trainLexicon.setDefaultCategories('NN', 'NP') expect(trainLexicon.nrEntries()).not.toEqual(0) }) it('should set up the rule templates', function () { templates = selectRuleTemplates(templateNames) expect(templates.length).toEqual(templateNames.length) }) it('should train on the training corpus to derive transformation rules', function () { trainer = new BrillPOSTrainer(1) ruleSet = trainer.train(corpora[0], templates, trainLexicon) expect(ruleSet.nrRules()).toBeGreaterThan(0) expect(trainer.printRulesWithScores()).not.toEqual('') }) it('should test the derived transformation rules on the test corpus', function () { const tagger = new BrillPOSTagger(trainLexicon, ruleSet) const tester = new BrillPOSTester() const scores = tester.test(corpora[1], tagger) expect(scores[1]).toBeGreaterThan(0) }) }) ================================================ FILE: spec/carry_stemmer_fr_spec.ts ================================================ /* Copyright (c) 2020, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { CarryStemmerFr as stemmer } from 'lib/natural' // const snowBallDict = require('spec/test_data/snowball_fr.json') const tests = [ { input: 'action', output: 'ac' }, { input: 'acteur', output: 'ac' }, { input: 'actrices', output: 'ac' }, { input: 'Dleyton', output: 'Dleyton' }, { input: 'volera', output: 'vol' } ] const testSentences = [ { input: 'Le petit cheval de manège', output: ['pet', 'cheval', 'manèg'] } ] describe('Carry stemmer', function () { tests.forEach(test => { it('stems ' + test.input + ' correctly', function () { expect(stemmer.stem(test.input)).toBe(test.output) }) }) testSentences.forEach(test => { it('tokenizes and stems ' + test.input + ' correctly', function () { expect(stemmer.tokenizeAndStem(test.input)).toEqual(test.output) }) }) /* it('should perform stemming on a lot of words', function() { var ok = []; var ko = []; Object.keys(snowBallDict).forEach(word => { var stemmed = stemmer.stem(word); var expectedStem = snowBallDict[word]; if (stemmed === expectedStem) { ok.push(word); } else { ko.push({ word: word, expected: expectedStem, actual: stemmed }); } }); expect(ko.length).toBe(0); }); */ }) ================================================ FILE: spec/classifier_spec.ts ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { BayesClassifier } from 'lib/natural' describe('classifier', function () { describe('addDocument', function () { it('should ignore an empty document', function () { const classifier = new BayesClassifier() classifier.addDocument('', 'philosophy') expect(classifier.docs.length).toBe(0) }) it('should increment features', function () { const classifier = new BayesClassifier() classifier.addDocument('foo', '') classifier.addDocument('foo', '') classifier.addDocument('bar', '') classifier.addDocument('bar', '') classifier.addDocument('bar', '') classifier.addDocument('baz', '') expect(classifier.docs.length).toBe(6) expect(classifier.features.foo).toBe(2) expect(classifier.features.bar).toBe(3) expect(classifier.features.baz).toBe(1) }) }) describe('Classifier - part 1', function () { const pushedEvents: any[] = [] function eventRegister (obj: any): void { pushedEvents.push(obj) } function assertEventResults (): void { expect(pushedEvents[0].index).toBe(0) expect(pushedEvents[0].total).toBe(6) expect(pushedEvents.length).toBe(6) } it('should emit events when documents are added or training is finished', function () { const classifier = new BayesClassifier() classifier.on('trainedWithDocument', eventRegister) classifier.on('doneTraining', assertEventResults) classifier.addDocument('i fixed the box', 'computing') classifier.addDocument('i write code', 'computing') classifier.addDocument('nasty script code', 'computing') classifier.addDocument('write a book', 'literature') classifier.addDocument('read a book', 'literature') classifier.addDocument('study the books', 'literature') classifier.train() classifier.removeListener('trainedWithDocument', eventRegister) classifier.removeListener('doneTraining', assertEventResults) }) }) describe('Classifier - part 2', function () { let classifier: BayesClassifier beforeEach(function () { classifier = new BayesClassifier() classifier.addDocument('i fixed the box', 'computing') classifier.addDocument('i write code', 'computing') classifier.addDocument('write a book', 'literature') classifier.addDocument('study the books', 'literature') }) it('should do nothing if text is not a string', function () { expect(classifier.docs.length).toBe(4) classifier.removeDocument(['write a book'], 'literature') classifier.removeDocument(['study the books'], 'literature') expect(classifier.docs.length).toBe(4) }) it('should do nothing if text is not a match', function () { expect(classifier.docs.length).toBe(4) classifier.removeDocument('something else', 'literature') classifier.removeDocument('another thing', 'literature') expect(classifier.docs.length).toBe(4) }) }) }) ================================================ FILE: spec/count_inflector_fr_spec.ts ================================================ /* Copyright (c) 2012, Guillaume Marty Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { CountInflectorFr } from 'lib/natural' const inflector = new CountInflectorFr() describe('count_inflector (fr)', function () { it('should handle 1er cases', function () { expect(inflector.nth(1)).toBe('1er') }) it('should handle the 2e cases', function () { expect(inflector.nth(0)).toBe('0e') expect(inflector.nth(2)).toBe('2e') expect(inflector.nth(3)).toBe('3e') expect(inflector.nth(5)).toBe('5e') expect(inflector.nth(11)).toBe('11e') expect(inflector.nth(100)).toBe('100e') expect(inflector.nth(999)).toBe('999e') }) it('should handle roman numerals', function () { expect(inflector.nth('I')).toBe('Ier') expect(inflector.nth('XX')).toBe('XXe') }) }) ================================================ FILE: spec/count_inflector_spec.ts ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { CountInflector } from 'lib/natural' const inflector = new CountInflector() describe('count_inflector (en)', function () { it('should handle 1st cases', function () { expect(inflector.nth(1)).toBe('1st') expect(inflector.nth(101)).toBe('101st') expect(inflector.nth(11)).not.toBe('11st') expect(inflector.nth(111)).not.toBe('111st') }) it('should handle the 12th cases', function () { expect(inflector.nth(12)).toBe('12th') expect(inflector.nth(112)).toBe('112th') expect(inflector.nth(1112)).toBe('1112th') }) it('should handle the 11th cases', function () { expect(inflector.nth(11)).toBe('11th') expect(inflector.nth(111)).toBe('111th') expect(inflector.nth(1111)).toBe('1111th') }) it('should handle the 13th cases', function () { expect(inflector.nth(13)).toBe('13th') expect(inflector.nth(113)).toBe('113th') expect(inflector.nth(1113)).toBe('1113th') }) it('should handle the th cases', function () { expect(inflector.nth(10)).toBe('10th') expect(inflector.nth(4)).toBe('4th') expect(inflector.nth(400)).toBe('400th') expect(inflector.nth(404)).toBe('404th') expect(inflector.nth(5)).toBe('5th') expect(inflector.nth(5000)).toBe('5000th') expect(inflector.nth(5005)).toBe('5005th') expect(inflector.nth(9)).toBe('9th') expect(inflector.nth(90009)).toBe('90009th') expect(inflector.nth(90000)).toBe('90000th') }) it('should handle 2nd cases', function () { expect(inflector.nth(2)).toBe('2nd') expect(inflector.nth(12)).not.toBe('12nd') }) it('should handle 3rd cases', function () { expect(inflector.nth(3)).toBe('3rd') expect(inflector.nth(13)).not.toBe('13rd') }) }) ================================================ FILE: spec/damerau_levenshtein_spec.ts ================================================ 'use strict' import { DamerauLevenshteinDistance, DamerauLevenshteinDistanceSearch } from 'lib/natural' describe('DamerauLevenshtein', function () { describe('default', function () { it('should be 0 when given equal strings', function () { expect(DamerauLevenshteinDistance('test', 'test')).toBe(0) }) it('should calculate 1 for adjacent transposition', function () { expect(DamerauLevenshteinDistance('za', 'az')).toBe(1) expect(DamerauLevenshteinDistance('Tomato', 'oTmato')).toBe(1) }) it('should handle custom transposition_cost', function () { expect(DamerauLevenshteinDistance('za', 'az', { transposition_cost: 0 })).toBe(0) }) it('should calculate 2 when there are 2 transpositions', function () { expect(DamerauLevenshteinDistance('tomato', 'otmaot')).toBe(2) }) it('should calculate 2 for 1 transposition and 1 insertion', function () { expect(DamerauLevenshteinDistance('CA', 'ABC')).toBe(2) expect(DamerauLevenshteinDistance('a cat', 'a abct')).toBe(2) }) }) describe('options.restricted = true', function () { const restricted = { restricted: true } it('should calculate 0 for equal strings', function () { expect(DamerauLevenshteinDistance('identity', 'identity', restricted)).toBe(0) }) it('should calculate 1 for an adjacent transposition', function () { expect(DamerauLevenshteinDistance('za', 'az', restricted)).toBe(1) }) it('should not count transposition more than 1 char away', function () { expect(DamerauLevenshteinDistance('CA', 'ABC', restricted)).toBe(3) }) }) it('should combine search with Damerau', function () { const source = 'The RainCoat BookStore' const target = 'All the best books are here at the Rain Coats Book Store' const result = DamerauLevenshteinDistanceSearch(source, target) expect(result).toEqual({ substring: 'the Rain Coats Book Store', distance: 4, offset: 31 }) }) }) ================================================ FILE: spec/dice_coefficient_spec.ts ================================================ 'use strict' import { DiceCoefficient as dice } from 'lib/natural' import text1 from '../spec/test_data/Wikipedia_EN_FrenchRevolution.json' import text2 from '../spec/test_data/Wikipedia_EN_InfluenceOfTheFrenchRevolution.json' describe('dice', function () { it('should handle exact matches', function () { expect(dice('john', 'john')).toBe(1) }) it('should match single character words', function () { expect(dice('a', 'a')).toBe(1) expect(dice('a', 'b')).toBe(0) }) it('should handle total mis-matches', function () { expect(dice('john', 'matt')).toBe(0) }) // Example from http://en.wikipedia.org/wiki/Dice's_coefficient it('should handle a typical case', function () { expect(dice('night', 'nacht')).toBe(0.25) }) it('should sanitize case', function () { expect(dice('night', 'NIGHT')).toBe(1) }) it('should sanitize spacing', function () { expect(dice('the space', 'the space')).toBe(1) }) it('should compare complete texts', function () { expect(dice(text1.text, text2.text)).toBe(0.7939374395356337) }) }) ================================================ FILE: spec/double_metaphone_spec.ts ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { DoubleMetaphone } from 'lib/natural' const doubleMetaphone = new DoubleMetaphone() describe('double metaphone', function () { describe('vowels', function () { it('should consider initial vowels to be A', function () { let encodings = doubleMetaphone.process('England') expect(encodings[0]).toMatch(/^A/) expect(encodings[1]).toMatch(/^A/) encodings = doubleMetaphone.process('astromech') expect(encodings[0]).toMatch(/^A/) expect(encodings[1]).toMatch(/^A/) encodings = doubleMetaphone.process('être') expect(encodings[0]).toMatch(/^A/) expect(encodings[1]).toMatch(/^A/) encodings = doubleMetaphone.process('éte') expect(encodings[0]).toMatch(/^A/) expect(encodings[1]).toMatch(/^A/) }) }) describe('B', function () { it('should encode B to P', function () { const encodings = doubleMetaphone.process('berry') expect(encodings[0]).toMatch(/^P/) expect(encodings[1]).toMatch(/^P/) }) it('should encode BB to P', function () { const encodings = doubleMetaphone.process('tabby') expect(encodings[0]).toContain('P') expect(encodings[0]).not.toContain('PP') expect(encodings[0]).not.toContain('PB') expect(encodings[1]).toContain('P') expect(encodings[1]).not.toContain('PP') expect(encodings[1]).not.toContain('PB') }) }) describe('C', function () { it("should encode MACHER's C to K", function () { const encodings = doubleMetaphone.process('stomacher') expect(encodings[0]).toContain('K') expect(encodings[1]).toContain('K') }) it("should encode CEASAR's C to S", function () { const encodings = doubleMetaphone.process('ceasar') expect(encodings[0]).toMatch(/^S/) expect(encodings[1]).toMatch(/S/) }) it("should encode chianti's C to K", function () { const encodings = doubleMetaphone.process('chianti') expect(encodings[0]).toMatch(/^K/) expect(encodings[1]).toMatch(/^K/) }) it('should encode CHAE to K,X', function () { const encodings = doubleMetaphone.process('archaeology') expect(encodings[0]).toContain('K') expect(encodings[1]).toContain('X') }) it('should encode CHarac to K', function () { const encodings = doubleMetaphone.process('character') expect(encodings[0]).toMatch(/^K/) expect(encodings[1]).toMatch(/^K/) }) it('should encode C after von to K', function () { const encodings = doubleMetaphone.process('von Chor') expect(encodings[0]).toMatch(/^..K/) expect(encodings[1]).toMatch(/^..K/) }) it('should encode some CH to K', function () { const encodings = doubleMetaphone.process('orchestrational') expect(encodings[0]).toMatch(/^..K/) expect(encodings[1]).toMatch(/^..K/) }) it('should encode CH before some cons as K', function () { const encodings = doubleMetaphone.process('chthonic') expect(encodings[0]).toMatch(/^K/) expect(encodings[1]).toMatch(/^K/) }) it('should encode Irish mC to K', function () { const encodings = doubleMetaphone.process('McHenry') expect(encodings[0]).toMatch(/^.K/) expect(encodings[1]).toMatch(/^.K/) }) it('should encode CH to X,K generally', function () { const encodings = doubleMetaphone.process('achievement') expect(encodings[0]).toMatch(/^.X/) expect(encodings[1]).toMatch(/^.K/) }) it('shoud encode Polish WICZ to S,X', function () { const encodings = doubleMetaphone.process('markiewicz') expect(encodings[0]).toMatch(/S$/) expect(encodings[1]).toMatch(/X$/) }) it('should encode CIA to X', function () { const encodings = doubleMetaphone.process('indicia') expect(encodings[0]).toMatch(/X$/) expect(encodings[1]).toMatch(/X$/) }) it('should encode Italian CCI to X', function () { const encodings = doubleMetaphone.process('bacci') expect(encodings[0]).toContain('X') expect(encodings[1]).toContain('X') }) it('should encode some CCes to K', function () { const encodings = doubleMetaphone.process('success') expect(encodings[0]).toMatch(/^SKS/) expect(encodings[1]).toMatch(/^SKS/) }) it('should encode some CC to K', function () { const encodings = doubleMetaphone.process('yucca') expect(encodings[0]).toMatch(/K$/) expect(encodings[1]).toMatch(/K$/) }) it('should encode CQ to K', function () { const encodings = doubleMetaphone.process('racquetball') expect(encodings[0]).toMatch(/^.K/) expect(encodings[1]).toMatch(/^.K/) }) it('should encode CIO to S,X', function () { const encodings = doubleMetaphone.process('sociopath') expect(encodings[0]).toMatch(/^.S/) expect(encodings[1]).toMatch(/^.X/) }) it('should encode CI to S', function () { const encodings = doubleMetaphone.process('city') expect(encodings[0]).toMatch(/^S/) expect(encodings[1]).toMatch(/^S/) }) it('should encode Scotch maC to K', function () { const encodings = doubleMetaphone.process('Mac Ghille dhuibh') expect(encodings[0]).toMatch(/^MK/) expect(encodings[1]).toMatch(/^MK/) }) }) describe('Ç', function () { it('should encode case Ç (French) to S', function () { const encodings = doubleMetaphone.process('leçon') expect(encodings[0]).toContain('S') expect(encodings[1]).toContain('S') }) }) describe('D', function () { it('should encode D to T', function () { const encodings = doubleMetaphone.process('double') expect(encodings[0]).toMatch(/^T/) expect(encodings[1]).toMatch(/^T/) }) it('should encode DD to T', function () { const encodings = doubleMetaphone.process('fiddle') expect(encodings[0]).toContain('T') expect(encodings[0]).not.toContain('TT') expect(encodings[0]).not.toContain('D') expect(encodings[1]).toContain('T') expect(encodings[1]).not.toContain('TT') expect(encodings[1]).not.toContain('D') }) it('should encode DG to J', function () { const encodings = doubleMetaphone.process('ledge') expect(encodings[0]).toContain('J') expect(encodings[0]).not.toContain('T') expect(encodings[1]).toContain('J') expect(encodings[1]).not.toContain('T') }) it('should encode DT to T', function () { const encodings = doubleMetaphone.process('bundt') expect(encodings[0]).toMatch(/[^D]T$/) expect(encodings[1]).toMatch(/[^D]T$/) }) }) describe('F', function () { it('should encode F', function () { const encodings = doubleMetaphone.process('far') expect(encodings[0]).toContain('F') expect(encodings[1]).toContain('F') }) it('should encode FF to F', function () { const encodings = doubleMetaphone.process('effect') expect(encodings[0]).toContain('F') expect(encodings[0]).not.toContain('FF') expect(encodings[1]).toContain('F') expect(encodings[1]).not.toContain('FF') }) }) describe('G', function () { it('should encode G to F following U and 4 after certain cons', function () { const encodings = doubleMetaphone.process('tough') expect(encodings[0]).toMatch('F$') expect(encodings[1]).toMatch('F$') }) it('should encode G to K', function () { const encodings = doubleMetaphone.process('gift') expect(encodings[0]).toMatch('^K') expect(encodings[1]).toMatch('^K') }) it('should ignore G a few letters after D, H, B', function () { const encodings = doubleMetaphone.process('fig') expect(encodings[0]).toMatch('K$') expect(encodings[1]).toMatch('K$') const encodings2 = doubleMetaphone.process('hugh') expect(encodings2[0]).toBe('H') expect(encodings2[1]).toBe('H') }) it('should encode G to J when staring a word whose 3rd legger is I', function () { const encodings = doubleMetaphone.process('ghislaine') expect(encodings[0]).toMatch(/^J/) expect(encodings[1]).toMatch(/^J/) }) it('should encode G to K when staring words whose 3rd letter is not I', function () { const encodings = doubleMetaphone.process('consign') expect(encodings[0]).toMatch(/N$/) expect(encodings[1]).toMatch(/KN$/) }) it('should encode GH to K if not succeeding a cons', function () { const encodings = doubleMetaphone.process('Afghani') expect(encodings[0]).toContain('K') expect(encodings[1]).toContain('K') }) it('should encode GN to N/KN generally', function () { const encodings = doubleMetaphone.process('consign') expect(encodings[0]).toMatch(/N$/) expect(encodings[1]).toMatch(/KN$/) }) it('should encode G to KN/N for the second letter following vowels', function () { const encodings = doubleMetaphone.process('agnosia') expect(encodings[0]).toMatch(/^.KN/) expect(encodings[1]).toMatch(/^.N/) }) it('should encode G to K,J when starting some words', function () { const encodings = doubleMetaphone.process('germany') expect(encodings[0]).toMatch(/^K/) expect(encodings[1]).toMatch(/^J/) }) it('should encode GL to KL, L', function () { const encodings = doubleMetaphone.process('taglianetti') expect(encodings[0]).toMatch(/KL/) expect(encodings[1]).toMatch(/[^K]L/) }) it('should encode GG to K', function () { const encodings = doubleMetaphone.process('daggers') expect(encodings[0]).toContain('K') expect(encodings[0]).not.toContain('KK') expect(encodings[1]).toContain('K') expect(encodings[1]).not.toContain('KK') }) }) describe('H', function () { it('should keep initial Hs', function () { const encodings = doubleMetaphone.process('hardly') expect(encodings[0]).toMatch(/^H/) expect(encodings[1]).toMatch(/^H/) }) it('should keep Hs between vowels', function () { const encodings = doubleMetaphone.process('ahoi') expect(encodings[0]).toContain('H') expect(encodings[1]).toContain('H') }) it('should drop Hs in words if not surrounded by vowels or starting', function () { const encodings = doubleMetaphone.process('charlie') expect(encodings[0]).not.toContain('H') expect(encodings[1]).not.toContain('H') }) }) describe('J', function () { it('should encode spainish Js to Hs in the middle of words', function () { const encodings = doubleMetaphone.process('bajador') expect(encodings[0]).toMatch(/^.J/) expect(encodings[1]).toMatch(/^.H/) }) it('should encode J to J,A', function () { const encodings = doubleMetaphone.process('jumble') expect(encodings[0]).toMatch(/^J/) expect(encodings[1]).toMatch(/^A/) }) it('should encode J to J," " at the end of words', function () { const encodings = doubleMetaphone.process('hadj') expect(encodings[0]).toMatch(/J$/) expect(encodings[1]).toMatch(/\s$/) }) it('should encode JJ to J', function () { const encodings = doubleMetaphone.process('hajj') expect(encodings[0]).toMatch(/J$/) expect(encodings[1]).toMatch(/J$/) }) it('should encode J to H in saint names (cities)', function () { const encodings = doubleMetaphone.process('san juan') expect(encodings[0]).toContain('H') expect(encodings[1]).toContain('H') }) }) describe('L', function () { it('should encode L', function () { const encodings = doubleMetaphone.process('last') expect(encodings[0]).toMatch(/^L/) expect(encodings[1]).toMatch(/^L/) }) it('should encode L to LL', function () { const encodings = doubleMetaphone.process('functionally') expect(encodings[0]).toContain('L') expect(encodings[0]).not.toContain('LL') expect(encodings[1]).toContain('L') expect(encodings[1]).not.toContain('LL') }) it('should encode ignore spainish-style LL entirely in secondary', function () { const encodings = doubleMetaphone.process('cabrillo') expect(encodings[0]).toContain('L') expect(encodings[1]).not.toContain('LL') }) }) describe('M', function () { it('should encode M', function () { const encodings = doubleMetaphone.process('meter') expect(encodings[0]).toMatch(/^M/) // expect(encodings[1]).not.toContain(/^M/) }) it('should skip B after M', function () { const encodings = doubleMetaphone.process('thumb') expect(encodings[0]).toMatch(/M$/) // expect(encodings[1]).not.toContain(/M$/) }) }) describe('N', function () { it('should encode Ns', function () { const encodings = doubleMetaphone.process('natural') expect(encodings[0]).toContain('N') expect(encodings[1]).toContain('N') }) it('should encode NN to N', function () { const encodings = doubleMetaphone.process('fanny') expect(encodings[0]).toContain('N') expect(encodings[1]).toContain('N') expect(encodings[0]).not.toContain('NN') expect(encodings[1]).not.toContain('NN') }) it('should treat a spainish Ñ as a N', function () { const encodings = doubleMetaphone.process('jalapeño') expect(encodings[0]).toContain('N') expect(encodings[1]).toContain('N') }) }) describe('P', function () { it('should encode PH to F', function () { const encodings = doubleMetaphone.process('phone') expect(encodings[0]).toMatch(/^F/) expect(encodings[1]).toMatch(/^F/) }) it('should encode P', function () { const encodings = doubleMetaphone.process('party') expect(encodings[0]).toContain('P') expect(encodings[1]).toContain('P') }) it('should encode PP to P', function () { const encodings = doubleMetaphone.process('sappy') expect(encodings[0]).toContain('P') expect(encodings[0]).not.toContain('PP') expect(encodings[1]).toContain('P') expect(encodings[1]).not.toContain('PP') }) /* jscpd:ignore-start */ it('should skip P before B i.e. raspberry', function () { const encodings = doubleMetaphone.process('raspberry') expect(encodings[0]).toContain('P') expect(encodings[0]).not.toContain('PP') expect(encodings[0]).not.toContain('PB') expect(encodings[1]).toContain('P') expect(encodings[1]).not.toContain('PP') expect(encodings[1]).not.toContain('PB') }) /* jscpd:ignore-end */ }) describe('Q', function () { it('should encode Q to K', function () { const encodings = doubleMetaphone.process('quarry') expect(encodings[0]).toContain('K') expect(encodings[1]).toContain('K') }) }) describe('R', function () { it('should encode R', function () { const encodings = doubleMetaphone.process('raspberry') expect(encodings[0]).toMatch(/^R/) expect(encodings[1]).toMatch(/^R/) }) it('should ignore trailing French Rs', function () { const encodings = doubleMetaphone.process('papier') expect(encodings[0]).toMatch(/[^R]$/) expect(encodings[1]).toMatch(/R$/) }) }) describe('S', function () { it('should skip S between I and L', function () { const encodings = doubleMetaphone.process('isle') expect(encodings[0]).toMatch(/^AL/) expect(encodings[1]).toMatch(/^AL/) }) it("should encode sugar's S to X", function () { const encodings = doubleMetaphone.process('sugar') expect(encodings[0]).toMatch(/^X/) expect(encodings[1]).toMatch(/^S/) }) it('should encode general SH to X', function () { const encodings = doubleMetaphone.process('share') expect(encodings[0]).toMatch(/^X/) expect(encodings[1]).toMatch(/^X/) }) it('should encode certain germanic SHs to S', function () { const encodings = doubleMetaphone.process('Sholmer') expect(encodings[0]).toMatch(/^S/) expect(encodings[1]).toMatch(/^S/) }) it('should encode SION to S,X generally', function () { const encodings = doubleMetaphone.process('tension') expect(encodings[0]).toContain('S') expect(encodings[1]).toContain('X') }) it('should encode SCHool to SK', function () { const encodings = doubleMetaphone.process('school') expect(encodings[0]).toMatch(/^SK/) expect(encodings[1]).toMatch(/^SK/) }) it('should encode SCHER to X,SK', function () { const encodings = doubleMetaphone.process('scherzando') expect(encodings[0]).toMatch(/^X/) expect(encodings[1]).toMatch(/^SK/) }) it('should encode SCHL to X,S', function () { const encodings = doubleMetaphone.process('schlump') expect(encodings[0]).toMatch(/^X/) expect(encodings[1]).toMatch(/^S/) }) it('should encode SC to SK generally', function () { const encodings = doubleMetaphone.process('scumbag') expect(encodings[0]).toMatch(/^SK/) expect(encodings[1]).toMatch(/^SK/) }) }) describe('T', function () { it('should encode TION to XN', function () { const encodings = doubleMetaphone.process('nation') expect(encodings[0]).toMatch(/XN$/) expect(encodings[1]).toMatch(/XN$/) }) it('should encode CH sounds to X', function () { const encodings = doubleMetaphone.process('thatch') expect(encodings[0]).toMatch(/X$/) expect(encodings[1]).toMatch(/X$/) }) it('should encode hard TH to T', function () { const encodings = doubleMetaphone.process('thomas') expect(encodings[0]).toMatch(/^T/) expect(encodings[1]).toMatch(/^T/) }) it('should encode soft TH to 0,T', function () { const encodings = doubleMetaphone.process('this') expect(encodings[0]).toMatch(/^0/) expect(encodings[1]).toMatch(/^T/) }) it('should encode TT to T', function () { const encodings = doubleMetaphone.process('matta') expect(encodings[0]).toMatch(/[^T]T/) expect(encodings[1]).toMatch(/[^T]T/) }) it('should encode TD to T', function () { const encodings = doubleMetaphone.process('countdown') expect(encodings[0]).toContain('T') expect(encodings[0]).not.toContain('D') expect(encodings[1]).toContain('T') expect(encodings[1]).not.toContain('D') }) }) describe('V', function () { it('should encode V to F', function () { const encodings = doubleMetaphone.process('very') expect(encodings[0]).toContain('F') expect(encodings[1]).toContain('F') }) it('should encode VV to F', function () { const encodings = doubleMetaphone.process('savvy') expect(encodings[0]).toContain('F') expect(encodings[0]).not.toContain('FF') expect(encodings[0]).not.toContain('FV') expect(encodings[1]).toContain('F') expect(encodings[1]).not.toContain('FF') expect(encodings[1]).not.toContain('FV') }) }) describe('W', function () { it('should encode WR to R', function () { const encodings = doubleMetaphone.process('wrong') expect(encodings[0]).toMatch('^R') expect(encodings[1]).toMatch('^R') }) it('should encode WH to A at the start of a word', function () { const encodings = doubleMetaphone.process('wheat') expect(encodings[0]).toMatch('^A') expect(encodings[1]).toMatch('^A') }) it('should encode WH to A,F if followed by a vowel at start', function () { const encodings = doubleMetaphone.process('wolfgang') expect(encodings[0]).toMatch('^A') expect(encodings[1]).toMatch('^F') }) it('should encode OWSKY alternately to F(V)', function () { const encodings = doubleMetaphone.process('lebowski') expect(encodings[0]).not.toContain('F') expect(encodings[1]).toContain('F') }) it('should encode WICZ', function () { const encodings = doubleMetaphone.process('Lowicz') expect(encodings[0]).toMatch('TS$') expect(encodings[1]).toMatch('FX$') }) }) describe('X', function () { it('should encode X as S at start', function () { const encodings = doubleMetaphone.process('xenophobia') expect(encodings[0]).toMatch(/^S/) expect(encodings[1]).toMatch(/^S/) }) it('should encode X as KS at end for non-French words', function () { const encodings = doubleMetaphone.process('box') expect(encodings[0]).toMatch(/KS$/) expect(encodings[1]).toMatch(/KS$/) }) it('should skip X end for French words', function () { const encodings = doubleMetaphone.process('lemieux') expect(encodings[0]).not.toMatch(/KS$/) expect(encodings[1]).not.toMatch(/KS$/) }) }) describe('Z', function () { it('should encode Z to S', function () { const encodings = doubleMetaphone.process('zookeeper') expect(encodings[0]).toMatch(/^S/) expect(encodings[1]).toMatch(/^S/) }) it('should encode Chinese ZH to J', function () { const encodings = doubleMetaphone.process('zheng') expect(encodings[0]).toMatch(/^J/) expect(encodings[1]).toMatch(/^J/) }) it('should encode ZZA to S, TS', function () { const encodings = doubleMetaphone.process('pizza') expect(encodings[0]).toContain('S') expect(encodings[1]).toContain('TS') }) }) describe('general', function () { it('should detect vowels', function () { expect(doubleMetaphone.isVowel('a')).toBeTruthy() expect(doubleMetaphone.isVowel('e')).toBeTruthy() expect(doubleMetaphone.isVowel('b')).toBeFalsy() }) it('should encode general words', function () { let encodings = doubleMetaphone.process('complete') expect(encodings[0]).toMatch(/KMPLT/) expect(encodings[1]).toMatch(/KMPLT/) encodings = doubleMetaphone.process('Matrix') expect(encodings[0]).toMatch(/MTRKS/) expect(encodings[1]).toMatch(/MTRKS/) encodings = doubleMetaphone.process('appropriate') expect(encodings[0]).toMatch(/APRPRT/) expect(encodings[1]).toMatch(/APRPRT/) encodings = doubleMetaphone.process('intervention') expect(encodings[0]).toBe('ANTRFNXN') expect(encodings[1]).toBe('ANTRFNXN') encodings = doubleMetaphone.process('Français') expect(encodings[0]).toBe('FRNS') expect(encodings[1]).toBe('FRNSS') }) it('should truncate codes if specified', function () { let encodings = doubleMetaphone.process('Matrix', 4) expect(encodings[0]).toBe('MTRK') expect(encodings[1]).toBe('MTRK') encodings = doubleMetaphone.process('Français', 4) expect(encodings[0]).toBe('FRNS') expect(encodings[1]).toBe('FRNS') }) it('should not truncate code is shorter than specification', function () { let encodings = doubleMetaphone.process('Matrix', 32) expect(encodings[0]).toBe('MTRKS') expect(encodings[1]).toBe('MTRKS') encodings = doubleMetaphone.process('Français', 5) expect(encodings[0]).toBe('FRNS') expect(encodings[1]).toBe('FRNSS') }) it('should compare', function () { expect(doubleMetaphone.compare('love', 'hate')).toBeFalsy() expect(doubleMetaphone.compare('love', 'luv')).toBeTruthy() }) }) describe('issue #34', function () { it('terminate words ending in H', function () { expect(doubleMetaphone.process('ptah')).toEqual(['PT', 'PT']) }) }) describe('issue #173', function () { it('handle initial cons correctly', function () { expect(doubleMetaphone.process('ceasar')).toEqual(['SSR', 'SSR']) expect(doubleMetaphone.process('ach')).toEqual(['AK', 'AK']) expect(doubleMetaphone.process('chemical')).toEqual(['KMKL', 'KMKL']) expect(doubleMetaphone.process('choral')).toEqual(['KRL', 'KRL']) }) }) }) ================================================ FILE: spec/esm/smoke.mjs ================================================ const naturalModuleUrl = new URL('../../dist/esm/index.js', import.meta.url) try { const { default: natural } = await import(naturalModuleUrl.href) const result = natural?.PorterStemmer?.stem('running') if (result !== 'run') { throw new Error(`Unexpected stem result: ${result}`) } console.log('ESM smoke test: OK') } catch (error) { console.error('ESM smoke test: FAIL') console.error(error) process.exitCode = 1 } ================================================ FILE: spec/hamming_distance_spec.ts ================================================ /* Copyright (c) 2018, Hugo ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { HammingDistance as hammingDistance } from 'lib/natural' // Convert the following to a Javascript object const stringsToCompare = [{ string1: 'karolin', string2: 'kathrin', ignoreCase: false, expected: 3 }, { string1: 'karolin', string2: 'kerstin', ignoreCase: false, expected: 3 }, { string1: '1011101', string2: '1001001', ignoreCase: false, expected: 2 }, { string1: '2173896', string2: '2233796', ignoreCase: false, expected: 3 }, { string1: 'different', string2: 'length', ignoreCase: false, expected: -1 }, { string1: 'ignorecase', string2: 'IgnoreCase', ignoreCase: true, expected: 0 }] describe('The Hamming distance function compares strings of equal length', function () { stringsToCompare.forEach(function (record, index) { it(`should calculate the difference between two strings correctly ${index}`, function () { expect(hammingDistance(record.string1, record.string2, record.ignoreCase)).toEqual(record.expected) }) }) }) ================================================ FILE: spec/jaro-winkler_spec.ts ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { JaroWinklerDistance } from 'lib/natural' /* Do not change the prototype of native types Number.prototype.approxEql = function (val) { return Math.abs(this - val) < 1e-5 } */ function approxEql (val1: number, val2: number): boolean { return Math.abs(val1 - val2) < 1e-5 } describe('jaro-winkler', function () { it('should evaluate string similarity', function () { expect(approxEql(JaroWinklerDistance('DIXON', 'DICKSONX', {}), 0.81333)).toBeTruthy() expect(approxEql(JaroWinklerDistance('DWAYNE', 'DUANE', {}), 0.84)).toBeTruthy() }) it('should handle exact matches', function () { expect(JaroWinklerDistance('RICK', 'RICK', {})).toBe(1) expect(JaroWinklerDistance('abc', 'abc', {})).toBe(1) expect(JaroWinklerDistance('abcd', 'abcd', {})).toBe(1) expect(JaroWinklerDistance('seddon', 'seddon', {})).toBe(1) }) it('should handle total mis-matches', function () { expect(JaroWinklerDistance('NOT', 'SAME', {})).toBe(0) }) it('should handle partial mis-matches', function () { expect(approxEql(JaroWinklerDistance('aaa', 'abcd', {}), 0.575)).toBeTruthy() }) it('should handle transpositions', function () { expect(approxEql(JaroWinklerDistance('MARTHA', 'MARHTA', {}), 0.96111)).toBeTruthy() }) it('should handle transpositions regardless of string order', function () { expect(approxEql(JaroWinklerDistance('class', 'clams', {}), 0.90666)).toBeTruthy() expect(approxEql(JaroWinklerDistance('clams', 'class', {}), 0.90666)).toBeTruthy() }) it('should ignore case when asked to', function () { expect(JaroWinklerDistance('aaa', 'aAa', { ignoreCase: true })).toEqual(JaroWinklerDistance('aaa', 'aaa', {})) expect(JaroWinklerDistance('aaa', 'aAa', {})).not.toEqual(JaroWinklerDistance('aaa', 'aaa', {})) expect(JaroWinklerDistance('dixon', 'DICKSONX', { ignoreCase: true })).toEqual(JaroWinklerDistance('DIXON', 'DICKSONX', {})) expect(JaroWinklerDistance('seddon', 'SEDDON', { ignoreCase: true })).toEqual(JaroWinklerDistance('SEDDON', 'SEDDON', {})) expect(approxEql(JaroWinklerDistance('MARTHA', 'MARHTA', { ignoreCase: true }), 0.96111)).toBeTruthy() expect(JaroWinklerDistance('abcd', 'ABCD', { ignoreCase: true })).toBe(1) }) it('should not fail while passing no options', function () { expect(approxEql(JaroWinklerDistance('check', 'chakk'), 0.78666)).toBeTruthy() }) }) ================================================ FILE: spec/lancaster_stemmer_spec.ts ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { LancasterStemmer as stemmer } from 'lib/natural' describe('lancaster_stemmer', function () { it('should stem', function () { expect(stemmer.stem('marks')).toBe('mark') expect(stemmer.stem('MARKs')).toBe('mark') }) it('should stop running rules where appropriate', function () { expect(stemmer.stem('living')).toBe('liv') expect(stemmer.stem('thing')).toBe('thing') expect(stemmer.stem('ear')).toBe('ear') expect(stemmer.stem('string')).toBe('string') }) it('should only pop the size specified by the rule', function () { expect(stemmer.stem('triplicate')).toBe('triply') expect(stemmer.stem('triPlicAte')).toBe('triply') }) it('should stem and append and recurse', function () { expect(stemmer.stem('classified')).toBe('class') expect(stemmer.stem('ClaSsiFied')).toBe('class') }) it('should apply intact rules only to intact string', function () { expect(stemmer.stem('maximum')).toBe('maxim') expect(stemmer.stem('presumably')).toBe('presum') expect(stemmer.stem('MAXIMUM')).toBe('maxim') expect(stemmer.stem('PRESUMABLY')).toBe('presum') }) it('#171 and #174, exceed, anguish, affluxion, discept', function () { expect(stemmer.stem('exceed')).toBe('excess') expect(stemmer.stem('anguish')).toBe('anct') expect(stemmer.stem('affluxion')).toBe('affluct') expect(stemmer.stem('discept')).toBe('disceiv') }) }) ================================================ FILE: spec/levenshtein_spec.ts ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { LevenshteinDistance as levenshteinDistance, LevenshteinDistanceSearch as levenshteinDistanceSearch } from 'lib/natural/distance/levenshtein_distance' describe('levenshtein_distance', function () { describe('options.search = true', function () { it('should find cheapest substring', function () { expect(levenshteinDistanceSearch('kitten', 'sitting')) .toEqual({ substring: 'sittin', distance: 2, offset: 0 }) }) it('should find 0 cost substring in target', function () { expect(levenshteinDistanceSearch('doctor', 'the doctor is in')) .toEqual({ substring: 'doctor', distance: 0, offset: 4 }) }) it('should find 1 cost substring in target', function () { expect(levenshteinDistanceSearch('doctor', 'the doktor is in')) .toEqual({ substring: 'doktor', distance: 1, offset: 4 }) }) it('should return empty substring when that is cleapest match', function () { expect(levenshteinDistanceSearch('doctor', '000000000000')) .toEqual({ substring: '', distance: 6, offset: 0 }) }) it('different insertion costs should work', function () { // delete 10 0's at cost 1 and insert the letters for doctor at cost -1 expect(levenshteinDistanceSearch('0000000000', 'doctor', { insertion_cost: -1 })) .toEqual({ substring: 'doctor', distance: 4, offset: 0 }) }) it('different deletion costs should work', function () { // delete 10 0's at cost -10 expect(levenshteinDistanceSearch('0000000000', 'doctor', { deletion_cost: -1 })) .toEqual({ substring: '', distance: -10, offset: 0 }) }) }) describe('default / options.search = false', function () { it('should replace 2', function () { expect(levenshteinDistance('doctor', 'doktor')).toBe(1) }) it('should allow altering replacement value', function () { expect(levenshteinDistance('doctor', 'doktor', { substitution_cost: 1 })).toBe(1) }) it('should delete 1', function () { expect(levenshteinDistance('doctor', 'docto')).toBe(1) }) it('should insert 1', function () { expect(levenshteinDistance('flat', 'flats')).toBe(1) }) it('should combine operations', function () { expect(levenshteinDistance('flad', 'flaten')).toBe(3) expect(levenshteinDistance('flaten', 'flad')).toBe(3) }) it('should consider perfect matches 0', function () { expect(levenshteinDistance('one', 'one')).toBe(0) }) it('different deletion cost should work', function () { expect(levenshteinDistance('ones', 'one', { deletion_cost: 3 })).toBe(3) }) it('different insertion cost should work', function () { expect(levenshteinDistance('one', 'ones', { deletion_cost: 3, insertion_cost: 5 })).toBe(5) }) it('delete all characters with -ve cost', function () { expect(levenshteinDistance('delete', '', { deletion_cost: -1 })).toBe(-6) }) it('insert all characters', function () { expect(levenshteinDistance('', 'insert')).toBe(6) }) }) }) ================================================ FILE: spec/logistic_regression_classifier_spec.ts ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { LogisticRegressionClassifier } from 'lib/natural' describe('logistic regression', function () { it('should classify with individually trained documents', function () { const classifier = new LogisticRegressionClassifier() classifier.addDocument(['have', 'computer'], 'IT') classifier.addDocument(['have', 'phone'], 'IT') classifier.addDocument(['computer', 'suck'], 'IT') classifier.addDocument(['field', 'goal'], 'sports') classifier.addDocument(['score', 'goal'], 'sports') classifier.addDocument(['great', 'speed'], 'sports') classifier.train() expect(classifier.classify(['hate', 'computer'])).toBe('IT') expect(classifier.classify(['score', 'please'])).toBe('sports') }) it('should provide all classification scores', function () { const classifier = new LogisticRegressionClassifier() classifier.addDocument(['fix', 'box'], 'computing') classifier.addDocument(['write', 'code'], 'computing') classifier.addDocument(['script', 'code'], 'computing') classifier.addDocument(['write', 'book'], 'literature') classifier.addDocument(['read', 'book'], 'literature') classifier.addDocument(['study', 'book'], 'literature') classifier.train() expect(classifier.getClassifications('i write code')[0].label).toBe('computing') expect(classifier.getClassifications('i write code')[1].label).toBe('literature') }) function createClassifier (): LogisticRegressionClassifier { const classifier = new LogisticRegressionClassifier() classifier.addDocument('i fixed the box', 'computing') classifier.addDocument('i write code', 'computing') classifier.addDocument('nasty script code', 'computing') classifier.addDocument('write a book', 'literature') classifier.addDocument('read a book', 'literature') classifier.addDocument('study the books', 'literature') return classifier } it('should classify with arrays', function () { const classifier = createClassifier() classifier.train() expect(classifier.classify('a bug in the code')).toBe('computing') expect(classifier.classify('read all the books')).toBe('literature') }) it('should serialize and deserialize a working classifier', function () { const classifier = createClassifier() const objString = JSON.stringify(classifier) const obj: Record = JSON.parse(objString) const newClassifier = LogisticRegressionClassifier.restore(obj) newClassifier.addDocument('kick a ball', 'sports') newClassifier.addDocument('hit some balls', 'sports') newClassifier.addDocument('kick and punch', 'sports') newClassifier.train() expect(newClassifier.classify('a bug in the code')).toBe('computing') expect(newClassifier.classify('read all the books')).toBe('literature') expect(newClassifier.classify('kick butt')).toBe('sports') }) }) ================================================ FILE: spec/longest_path_tree_spec.ts ================================================ /* Copyright (c) 2014, Lee Wenzhu Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { LongestPathTree as LPT, Topological, EdgeWeightedDigraph } from 'lib/natural' describe('shortest path tree', function () { const digraph = new EdgeWeightedDigraph() digraph.add(5, 4, 0.35) digraph.add(4, 7, 0.37) digraph.add(5, 7, 0.28) digraph.add(5, 1, 0.32) digraph.add(4, 0, 0.38) digraph.add(0, 2, 0.26) digraph.add(3, 7, 0.39) digraph.add(1, 3, 0.29) digraph.add(7, 2, 0.34) digraph.add(6, 2, 0.40) digraph.add(3, 6, 0.52) digraph.add(6, 0, 0.58) digraph.add(6, 4, 0.93) describe('edge weighted digraph normal operations', function () { it('should get the numbers of vertexs', function () { expect(digraph.v()).toBe(8) }) it('should get the numbers of edges', function () { expect(digraph.e()).toBe(13) }) it('should print all item in digraph', function () { expect(digraph.toString()).toBe('0 -> 2, 0.26\n' + '1 -> 3, 0.29\n' + '3 -> 7, 0.39\n' + '3 -> 6, 0.52\n' + '4 -> 7, 0.37\n' + '4 -> 0, 0.38\n' + '5 -> 4, 0.35\n' + '5 -> 7, 0.28\n' + '5 -> 1, 0.32\n' + '6 -> 2, 0.4\n' + '6 -> 0, 0.58\n' + '6 -> 4, 0.93\n' + '7 -> 2, 0.34') }) }) describe('topo sort for digraph', function () { it('should sort all the vertexs', function () { const topoSort = new Topological(digraph) expect(topoSort.isDAG()).toBe(true) expect(topoSort.order()).toEqual([5, 1, 3, 6, 4, 7, 0, 2]) }) }) describe('shortest path tree normal operations', function () { const lpt = new LPT(digraph, 5) it('should determine existence of paths', function () { expect(lpt.hasPathTo(0)).toBe(true) expect(lpt.hasPathTo(1)).toBe(true) expect(lpt.hasPathTo(2)).toBe(true) expect(lpt.hasPathTo(3)).toBe(true) expect(lpt.hasPathTo(4)).toBe(true) expect(lpt.hasPathTo(5)).toBe(false) expect(lpt.hasPathTo(6)).toBe(true) expect(lpt.hasPathTo(7)).toBe(true) }) it('should determine paths', function () { expect(lpt.pathTo(0)).toEqual([5, 1, 3, 6, 4, 0]) expect(lpt.pathTo(1)).toEqual([5, 1]) expect(lpt.pathTo(2)).toEqual([5, 1, 3, 6, 4, 7, 2]) expect(lpt.pathTo(3)).toEqual([5, 1, 3]) expect(lpt.pathTo(4)).toEqual([5, 1, 3, 6, 4]) expect(lpt.pathTo(5)).toEqual([]) expect(lpt.pathTo(6)).toEqual([5, 1, 3, 6]) expect(lpt.pathTo(7)).toEqual([5, 1, 3, 6, 4, 7]) }) it('should calculate distances', function () { expect(lpt.getDistTo(0)).toBe(2.44) expect(lpt.getDistTo(1)).toBe(0.32) expect(lpt.getDistTo(2)).toBe(2.77) expect(lpt.getDistTo(3)).toBe(0.61) expect(lpt.getDistTo(4)).toBe(2.06) expect(lpt.getDistTo(5)).toBe(0) expect(lpt.getDistTo(6)).toBe(1.13) expect(lpt.getDistTo(7)).toBe(2.43) }) }) }) ================================================ FILE: spec/metaphone_spec.ts ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { Metaphone } from 'lib/natural' const metaphone = new Metaphone() describe('metaphone', function () { it('should drop duplicate adjacent letters, except C', function () { expect(metaphone.dedup('dropping')).toBe('droping') }) it('should not drop duplicat C', function () { expect(metaphone.dedup('accelerate')).toBe('accelerate') }) it('should drop some initial letters', function () { expect(metaphone.dropInitialLetters('knuth')).toBe('nuth') expect(metaphone.dropInitialLetters('gnat')).toBe('nat') expect(metaphone.dropInitialLetters('aegis')).toBe('egis') expect(metaphone.dropInitialLetters('pneumatic')).toBe('neumatic') expect(metaphone.dropInitialLetters('wrack')).toBe('rack') }) it('should not drop other initial letters', function () { expect(metaphone.dropInitialLetters('garbage')).toBe('garbage') }) it('should b if if words end with mb', function () { expect(metaphone.dropBafterMAtEnd('dumb')).toBe('dum') }) it('should not drop b after m if not at end of word', function () { expect(metaphone.dropBafterMAtEnd('dumbo')).toBe('dumbo') }) it('should replace CH to X', function () { expect(metaphone.cTransform('change')).toBe('xhange') }) it('should not replace CH to X if part of SCH', function () { expect(metaphone.cTransform('discharger')).toBe('diskharger') }) it('should replace CIA to X', function () { expect(metaphone.cTransform('aesthetician')).toBe('aesthetixian') }) it('C should become S if followed by I, E, or Y', function () { expect(metaphone.cTransform('cieling')).toBe('sieling') }) it('should transform other C\'s to K', function () { expect(metaphone.cTransform('cuss')).toBe('kuss') }) it('should transform D to J if followed by GE, GY, GI', function () { expect(metaphone.dTransform('abridge')).toBe('abrijge') }) it('should transform D to T if not followed by GE, GY, GI', function () { expect(metaphone.dTransform('bid')).toBe('bit') }) it('should drop G before H if not at the end or before vowell', function () { expect(metaphone.dropG('alight')).toBe('aliht') expect(metaphone.dropG('fright')).toBe('friht') }) it('should drop G if followed by N or NED at the end', function () { expect(metaphone.dropG('aligned')).toBe('alined') expect(metaphone.dropG('align')).toBe('alin') }) it('should transform G to J if followed by I, E or Y and not preceeded by G', function () { expect(metaphone.transformG('age')).toBe('aje') expect(metaphone.transformG('gin')).toBe('jin') }) it('should transform G to K', function () { expect(metaphone.transformG('august')).toBe('aukust') }) it('should reduce GG to G before turning to K', function () { expect(metaphone.transformG('aggrade')).toBe('akrade') }) it('should drop H if after vowell and not before vowell', function () { expect(metaphone.dropH('alriht')).toBe('alrit') }) it('should not drop H if after vowell', function () { expect(metaphone.dropH('that')).toBe('that') }) it('should not drop H if not before vowell', function () { expect(metaphone.dropH('chump')).toBe('chump') }) it('should transform CK to K', function () { expect(metaphone.transformCK('check')).toBe('chek') }) it('should transform PH to F', function () { expect(metaphone.transformPH('phone')).toBe('fone') }) it('should transform Q to K', function () { expect(metaphone.transformQ('quack')).toBe('kuack') }) it('should transform S to X if followed by H, IO, or IA', function () { expect(metaphone.transformS('shack')).toBe('xhack') expect(metaphone.transformS('sialagogues')).toBe('xialagogues') expect(metaphone.transformS('asia')).toBe('axia') }) it('should not transform S to X if not followed by H, IO, or IA', function () { expect(metaphone.transformS('substance')).toBe('substance') }) it('should transform T to X if followed by IA or IO', function () { expect(metaphone.transformT('dementia')).toBe('demenxia') expect(metaphone.transformT('abbreviation')).toBe('abbreviaxion') }) it('should transform TH to 0', function () { expect(metaphone.transformT('that')).toBe('0at') }) it('should drop T if followed by CH', function () { expect(metaphone.dropT('backstitch')).toBe('backstich') }) it('should transform V to F', function () { expect(metaphone.transformV('vestige')).toBe('festige') }) it('should transform WH to W if at beginning', function () { expect(metaphone.transformWH('whisper')).toBe('wisper') }) it('should drop W if not followed by vowell', function () { expect(metaphone.dropW('bowl')).toBe('bol') expect(metaphone.dropW('warsaw')).toBe('warsa') }) it('should transform X to S if at beginning', function () { expect(metaphone.transformX('xenophile')).toBe('senophile') }) it('should transform X to KS if not at beginning', function () { expect(metaphone.transformX('admixed')).toBe('admiksed') }) it('should drop Y of not followed by a vowell', function () { expect(metaphone.dropY('analyzer')).toBe('analzer') expect(metaphone.dropY('specify')).toBe('specif') }) it('should not drop Y of followed by a vowell', function () { expect(metaphone.dropY('allying')).toBe('allying') }) it('should transform Z to S', function () { expect(metaphone.transformZ('blaze')).toBe('blase') }) it('should drop all vowels except initial', function () { expect(metaphone.dropVowels('ablaze')).toBe('ablz') expect(metaphone.dropVowels('adamantium')).toBe('admntm') }) it('should do all', function () { expect(metaphone.process('ablaze')).toBe('ABLS') expect(metaphone.process('transition')).toBe('TRNSXN') expect(metaphone.process('astronomical')).toBe('ASTRNMKL') expect(metaphone.process('buzzard')).toBe('BSRT') expect(metaphone.process('wonderer')).toBe('WNTRR') expect(metaphone.process('district')).toBe('TSTRKT') expect(metaphone.process('hockey')).toBe('HK') expect(metaphone.process('capital')).toBe('KPTL') expect(metaphone.process('penguin')).toBe('PNKN') expect(metaphone.process('garbonzo')).toBe('KRBNS') expect(metaphone.process('lightning')).toBe('LTNNK') expect(metaphone.process('light')).toBe('LT') }) it('should compare strings', function () { expect(metaphone.compare('phonetics', 'fonetix')).toBeTruthy() expect(metaphone.compare('phonetics', 'garbonzo')).toBeFalsy() expect(metaphone.compare('PHONETICS', 'fonetix')).toBeTruthy() expect(metaphone.compare('PHONETICS', 'garbonzo')).toBeFalsy() }) /* it('#173', function () { expect(metaphone.process('caesar')).toBe('KSR') expect(metaphone.process('chemical')).toBe('KMKL') }) */ /* it('should compare strings with string patch', function() { metaphone.attach(); expect('phonetics'.soundsLike('fonetix')).toBeTruthy(); expect('phonetics'.soundsLike('garbonzo')).toBeFalsy(); expect('PHONETICS'.soundsLike('fonetix')).toBeTruthy(); expect('PHONETICS'.soundsLike('garbonzo')).toBeFalsy(); }); it('should return string phonetics with string patch', function() { metaphone.attach(); expect('phonetics'.phonetics()).toBe('FNTKS'); expect('PHONETICS'.phonetics()).toBe('FNTKS'); }); it('should transform PH to F #169', function() { expect('pharaoh'.phonetics()).toBe('FR'); expect('tough'.phonetics()).toBe('TF'); }); it('should tokenize and return string phonetics with string patch', function() { metaphone.attach(); expect('phonetics'.tokenizeAndPhoneticize()).toEqual(['FNTKS']); expect('phonetics garbonzo'.tokenizeAndPhoneticize()).toEqual(['FNTKS', 'KRBNS']); expect('phonetics garbonzo lightning'.tokenizeAndPhoneticize()).toEqual(['FNTKS', 'KRBNS', 'LTNNK']); }); */ it('should truncate to length specified if code exceeds', function () { expect(metaphone.process('phonetics', 4)).toBe('FNTK') }) it('should not truncate to length specified if code does not exceed', function () { expect(metaphone.process('phonetics', 8)).toBe('FNTKS') }) }) ================================================ FILE: spec/ngram_spec.ts ================================================ /* Copyright (c) 2019, Rob Ellis, Chris Umbel, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { NGrams, AggressiveTokenizerFr, AggressiveTokenizer } from 'lib/natural' import text from '../spec/test_data/NYT-20150205-picassos-granddaughter-plans-to-sell-art-worrying-the-market.json' describe('ngrams', function () { it('should bigram a string via ngrams', function () { expect(NGrams.ngrams('these are some words', 2)).toEqual([['these', 'are'], ['are', 'some'], ['some', 'words']]) }) it('should bigram an array via ngrams', function () { expect(NGrams.ngrams(['these', 'are', 'some', 'words'], 2)).toEqual([['these', 'are'], ['are', 'some'], ['some', 'words']]) }) it('should trigram a string via ngrams', function () { expect(NGrams.ngrams('these are some words', 3)).toEqual([['these', 'are', 'some'], ['are', 'some', 'words']]) }) it('should trigram an array via ngrams', function () { expect(NGrams.ngrams(['these', 'are', 'some', 'words'], 3)).toEqual([['these', 'are', 'some'], ['are', 'some', 'words']]) }) describe('bigrams', function () { it('should bigram a string', function () { expect(NGrams.bigrams('these are some words')).toEqual([['these', 'are'], ['are', 'some'], ['some', 'words']]) }) it('should bigram an array', function () { expect(NGrams.bigrams(['these', 'are', 'some', 'words'])).toEqual([['these', 'are'], ['are', 'some'], ['some', 'words']]) }) }) describe('trigrams', function () { it('should bigram a string', function () { expect(NGrams.trigrams('these are some words')).toEqual([['these', 'are', 'some'], ['are', 'some', 'words']]) }) it('should bigram an array', function () { expect(NGrams.trigrams(['these', 'are', 'some', 'words'])).toEqual([['these', 'are', 'some'], ['are', 'some', 'words']]) }) }) // New Start/End Symbols Feature it('should bigram a string with start and end symbols', function () { expect(NGrams.ngrams('these are some words', 2, '[start]', '[end]')).toEqual([ ['[start]', 'these'], ['these', 'are'], ['are', 'some'], ['some', 'words'], ['words', '[end]'] ]) }) it('should bigram a string with start symbols only', function () { expect(NGrams.ngrams('these are some words', 2, '[start]')).toEqual([ ['[start]', 'these'], ['these', 'are'], ['are', 'some'], ['some', 'words'] ]) }) it('should bigram a string with end symbols only', function () { expect(NGrams.ngrams('these are some words', 2, null, '[end]')).toEqual([ ['these', 'are'], ['are', 'some'], ['some', 'words'], ['words', '[end]'] ]) }) it('should trigram a string with start and end symbols', function () { expect(NGrams.ngrams('these are some words', 3, '[start]', '[end]')).toEqual([ ['[start]', '[start]', 'these'], ['[start]', 'these', 'are'], ['these', 'are', 'some'], ['are', 'some', 'words'], ['some', 'words', '[end]'], ['words', '[end]', '[end]'] ]) }) it('should 4-gram a string with start and end symbols', function () { expect(NGrams.ngrams('these are some words', 4, '[start]', '[end]')).toEqual([ ['[start]', '[start]', '[start]', 'these'], ['[start]', '[start]', 'these', 'are'], ['[start]', 'these', 'are', 'some'], ['these', 'are', 'some', 'words'], ['are', 'some', 'words', '[end]'], ['some', 'words', '[end]', '[end]'], ['words', '[end]', '[end]', '[end]'] ]) }) it('should use french tokenizer', function () { const t = new AggressiveTokenizerFr() NGrams.setTokenizer(t) expect(NGrams.ngrams('Un Éléphant rouge', 2)).toEqual([['Un', 'Éléphant'], ['Éléphant', 'rouge']]) }) it('should trigram a string via ngrams including statistics', function () { const t = new AggressiveTokenizer() NGrams.setTokenizer(t) text.sentences.forEach(sentence => { const result = NGrams.ngrams(sentence, 3, null, null, true) let nrNgrams = 0 Object.keys(result.Nr).forEach(function (f) { const n = parseInt(f, 10) nrNgrams += result.Nr[n] * n }) expect(nrNgrams).toEqual(result.numberOfNgrams) }) }) }) ================================================ FILE: spec/ngram_zh_spec.ts ================================================ /* Copyright (c) 2014, Lee Wenzhu Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { NGramsZH } from 'lib/natural' describe('ngrams (zh)', function () { it('should bigram a string via ngrams', function () { expect(NGramsZH.ngrams('中文文本测试', 2)).toEqual([['中', '文'], ['文', '文'], ['文', '本'], ['本', '测'], ['测', '试']]) }) it('should bigram an array via ngrams', function () { expect(NGramsZH.ngrams(['中', '文', '文', '本', '测', '试'], 2)).toEqual([['中', '文'], ['文', '文'], ['文', '本'], ['本', '测'], ['测', '试']]) }) it('should trigram a string via ngrams', function () { expect(NGramsZH.ngrams('中文文本测试', 3)).toEqual([['中', '文', '文'], ['文', '文', '本'], ['文', '本', '测'], ['本', '测', '试']]) }) it('should trigram an array via ngrams', function () { expect(NGramsZH.ngrams(['中', '文', '文', '本', '测', '试'], 3)).toEqual([['中', '文', '文'], ['文', '文', '本'], ['文', '本', '测'], ['本', '测', '试']]) }) describe('bigrams', function () { it('should bigram a string', function () { expect(NGramsZH.bigrams('中文文本测试')).toEqual([['中', '文'], ['文', '文'], ['文', '本'], ['本', '测'], ['测', '试']]) }) it('should bigram an array', function () { expect(NGramsZH.bigrams(['中', '文', '文', '本', '测', '试'])).toEqual([['中', '文'], ['文', '文'], ['文', '本'], ['本', '测'], ['测', '试']]) }) }) describe('trigrams', function () { /* it('should trigram a string', function () { expect(NGramsZH.ngrams('中文文本测试', 3)).toEqual([['中', '文', '文'], ['文', '文', '本'], ['文', '本', '测'], ['本', '测', '试']]) }) */ it('should bigram an array', function () { expect(NGramsZH.ngrams(['中', '文', '文', '本', '测', '试'], 3)).toEqual([['中', '文', '文'], ['文', '文', '本'], ['文', '本', '测'], ['本', '测', '试']]) }) }) it('should bigram a string with start and end symbols', function () { expect(NGramsZH.ngrams('中文测试', 2, '[start]', '[end]')).toEqual([ ['[start]', '中'], ['中', '文'], ['文', '测'], ['测', '试'], ['试', '[end]'] ]) }) it('should bigram a string with start symbols only', function () { expect(NGramsZH.ngrams('中文测试', 2, '[start]')).toEqual([ ['[start]', '中'], ['中', '文'], ['文', '测'], ['测', '试'] ]) }) it('should bigram a string with end symbols only', function () { expect(NGramsZH.ngrams('中文测试', 2, null, '[end]')).toEqual([ ['中', '文'], ['文', '测'], ['测', '试'], ['试', '[end]'] ]) }) it('should trigram a string with start and end symbols', function () { expect(NGramsZH.ngrams('中文测试', 3, '[start]', '[end]')).toEqual([ ['[start]', '[start]', '中'], ['[start]', '中', '文'], ['中', '文', '测'], ['文', '测', '试'], ['测', '试', '[end]'], ['试', '[end]', '[end]'] ]) }) it('should 4-gram a string with start and end symbols', function () { expect(NGramsZH.ngrams('中文测试', 4, '[start]', '[end]')).toEqual([ ['[start]', '[start]', '[start]', '中'], ['[start]', '[start]', '中', '文'], ['[start]', '中', '文', '测'], ['中', '文', '测', '试'], ['文', '测', '试', '[end]'], ['测', '试', '[end]', '[end]'], ['试', '[end]', '[end]', '[end]'] ]) }) }) ================================================ FILE: spec/normalizer_ja_spec.ts ================================================ /* Copyright (c) 2012, Guillaume Marty Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { normalizeJa, Converters } from 'lib/natural' const converters = new Converters() describe('normalizeJa', function () { it('should fix badly formed hiragana', function () { expect(normalizeJa('う゛か゛き゛く゛は゜ひ゜ふ゜')).toEqual('ゔがぎぐぱぴぷ') expect(normalizeJa('ゔがぎぐぱぴぷ')).toEqual('ゔがぎぐぱぴぷ') expect(normalizeJa('まっなか')).toEqual('まんなか') }) it('should fix badly formed fullwidth katakana', function () { expect(normalizeJa('ウ゛カ゛キ゛ク゛ハ゜ヒ゜フ゜')).toEqual('ヴガギグパピプ') expect(normalizeJa('ヴガギグパピプ')).toEqual('ヴガギグパピプ') }) it('should fix badly formed halfwidth katakana', function () { expect(normalizeJa('ウ゛カ゛キ゛ク゛ハ゜ヒ゜フ゜')).toEqual('ヴガギグパピプ') expect(normalizeJa('ヴガギグパピプ')).toEqual('ヴガギグパピプ') }) it('should transform halfwidth katakana to fullwidth', function () { expect(normalizeJa('カタカナ')).toEqual('カタカナ') }) it('should transform fullwidth alphanumerical characters to halfwidth', function () { expect(normalizeJa('ABC123')).toEqual('ABC123') }) it('should transform fullwidth spaces to halfwidth', function () { expect(normalizeJa('空 空 空')).toEqual('空 空 空') }) it('should transform halfwidth punctuation signs to fullwidth', function () { // Taken from http://unicode.org/cldr/trac/browser/trunk/common/main/ja.xml expect(normalizeJa('〜 ・ ・ 、、 。。 「「 」」')) .toEqual('〜 ・ ・ 、、 。。 「「 」」') }) it('should transform fullwidth symbols to halfwidth', function () { // Taken from http://unicode.org/cldr/trac/browser/trunk/common/main/ja.xml expect(normalizeJa('‾ __ -- ‐ — ― ,, ;; :: !! ?? .. ‥ … '\ ‘ ’ "" “ ” (( )) [[ ]] {{ }} 〈 〉 《 》 『 』 【 】 〔 〕 ‖ § ¶ @@ ++ ^^ $$ ** // \\\ && ## %% ‰ † ‡ ′ ″ 〃 ※')) .toEqual('‾ __ -- ‐ — ― ,, ;; :: !! ?? .. ‥ … '\\ ‘ ’ "" “ ” (( )) [[ ]] {{ }} 〈 〉 《 》 『 』 【 】 〔 〕 ‖ § ¶ @@ ++ ^^ $$ ** // \\\\ && ## %% ‰ † ‡ ′ ″ 〃 ※') }) it('should replace repeat characters', function () { expect(normalizeJa('時々刻々')).toEqual('時時刻刻') expect(normalizeJa('甲斐々々しい')).toEqual('甲斐甲斐しい') }) it('should replace composite symbols', function () { expect(normalizeJa('㍼54年㋃㏪')).toEqual('昭和54年4月11日') expect(normalizeJa('㍧〜㍬')).toEqual('15点〜20点') expect(normalizeJa('カンパニー㍿')).toEqual('カンパニー株式会社') expect(normalizeJa('100㌫')).toEqual('100パーセント') expect(normalizeJa('70㌔')).toEqual('70キロ') expect(normalizeJa('㍇')).toEqual('マンション') }) }) const sample = 'ABC ABC 123123.,-.,-ゔあいうえおはばぱカキクケコハバパヴカキクケコハバパ' describe('converters', function () { it('should all be reversible', function () { const sample = '半角カナ(はんかくカナ)とは、JIS X 0208など片仮名を含む他の文字集合と同時に運用される場合におけるJIS X 0201の片仮名文字集合の通称である。漢字を含む文字集合で定義された片仮名に対して、半分の文字幅で表示されることが一般的であったためこのように呼ばれる。JIS X 0201で規定される8ビット符号化およびShift_JISにおいて0xA1-0xDFの範囲の1バイト文字がこれにあたる。また、Shift_JISやEUC-JPなどの符号化方式やUnicodeでも互換性の目的でこの文字集合をもっている。' expect(converters.alphabetHF(converters.alphabetFH(sample))).toEqual(converters.alphabetHF(sample)) expect(converters.alphabetFH(converters.alphabetHF(sample))).toEqual(converters.alphabetFH(sample)) expect(converters.numbersHF(converters.numbersFH(sample))).toEqual(converters.numbersHF(sample)) expect(converters.numbersFH(converters.numbersHF(sample))).toEqual(converters.numbersFH(sample)) expect(converters.punctuationHF(converters.punctuationFH(sample))).toEqual(converters.punctuationHF(sample)) expect(converters.punctuationFH(converters.punctuationHF(sample))).toEqual(converters.punctuationFH(sample)) expect(converters.katakanaHF(converters.katakanaFH(sample))).toEqual(converters.katakanaHF(sample)) expect(converters.katakanaFH(converters.katakanaHF(sample))).toEqual(converters.katakanaFH(sample)) }) describe('.fullwidthToHalfwidth', function () { describe('.alphabet', function () { it('should transform fullwidth roman characters and space to halfwidth', function () { expect(converters.alphabetFH(sample)).toEqual('ABC ABC 123123.,-.,-ゔあいうえおはばぱカキクケコハバパヴカキクケコハバパ') }) }) describe('.numbers', function () { it('should transform fullwidth numerical characters to halfwidth', function () { expect(converters.numbersFH(sample)).toEqual('ABC ABC 123123.,-.,-ゔあいうえおはばぱカキクケコハバパヴカキクケコハバパ') }) }) describe('.punctuation', function () { it('should transform fullwidth punctuation signs to halfwidth', function () { expect(converters.punctuationFH(sample)).toEqual('ABC ABC 123123.,-.,-ゔあいうえおはばぱカキクケコハバパヴカキクケコハバパ') }) }) describe('.katakana', function () { it('should transform fullwidth katakana to halfwidth', function () { expect(converters.katakanaFH(sample)).toEqual('ABC ABC 123123.,-.,-ゔあいうえおはばぱカキクケコハバパヴカキクケコハバパ') }) }) }) describe('.halfwidthToFullwidth', function () { describe('.alphabet', function () { it('should transform halfwidth roman characters and space to fullwidth', function () { expect(converters.alphabetHF(sample)).toEqual('ABC ABC 123123.,-.,-ゔあいうえおはばぱカキクケコハバパヴカキクケコハバパ') }) }) describe('.numbers', function () { it('should transform halfwidth numerical characters to fullwidth', function () { expect(converters.numbersHF(sample)).toEqual('ABC ABC 123123.,-.,-ゔあいうえおはばぱカキクケコハバパヴカキクケコハバパ') }) }) describe('.punctuation', function () { it('should transform halfwidth punctuation signs to fullwidth', function () { expect(converters.punctuationHF(sample)).toEqual('ABC ABC 123123.,─.,─ゔあいうえおはばぱカキクケコハバパヴカキクケコハバパ') }) }) describe('.katakana', function () { it('should transform halfwidth katakana to fullwidth', function () { expect(converters.katakanaHF(sample)).toEqual('ABC ABC 123123.,-.,-ゔあいうえおはばぱカキクケコハバパヴカキクケコハバパ') }) }) }) describe('.hiraganaToKatakana', function () { it('should transform hiragana to katakana', function () { expect(converters.hiraganaToKatakana(sample)).toEqual('ABC ABC 123123.,-.,-ヴアイウエオハバパカキクケコハバパヴカキクケコハバパ') }) }) describe('.katakanaToHiragana', function () { it('should transform katakana to hiragana', function () { expect(converters.katakanaToHiragana(sample)).toEqual('ABC ABC 123123.,-.,-ゔあいうえおはばぱかきくけこはばぱゔかきくけこはばぱ') }) }) }) ================================================ FILE: spec/normalizer_no_spec.ts ================================================ /* Copyright (c) 2014, Kristoffer Brabrand Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { normalizeNo as normalizer } from 'lib/natural' describe('normalizer_no', function () { /** * Test character normalization **/ describe('Normalization of diacritical marks', function () { it("should leave uppercase and lowercase ä's untouched", function () { expect(normalizer('ä')).toBe('ä') expect(normalizer('Ä')).toBe('Ä') }) it("should leave uppercase and lowercase ö's untouched", function () { expect(normalizer('ö')).toBe('ö') expect(normalizer('Ö')).toBe('Ö') }) it("should leave uppercase and lowercase ü's untouched", function () { expect(normalizer('ü')).toBe('ü') expect(normalizer('Ü')).toBe('Ü') }) it("should correctly normalize uppercase and lowercase a's with grave accents", function () { expect(normalizer('à')).toBe('a') expect(normalizer('À')).toBe('A') }) it("should correctly normalize uppercase and lowercase a's with acute accents", function () { expect(normalizer('á')).toBe('a') expect(normalizer('Á')).toBe('A') }) it("should correctly normalize uppercase and lowercase a's with circumflex accents", function () { expect(normalizer('â')).toBe('a') expect(normalizer('Â')).toBe('A') }) it("should correctly normalize uppercase and lowercase c's with cedillas", function () { expect(normalizer('ç')).toBe('c') expect(normalizer('Ç')).toBe('C') }) it("should correctly normalize uppercase and lowercase e's with grave accents", function () { expect(normalizer('è')).toBe('e') expect(normalizer('È')).toBe('E') }) it("should correctly normalize uppercase and lowercase e's with acute accents", function () { expect(normalizer('é')).toBe('e') expect(normalizer('É')).toBe('E') }) it("should correctly normalize uppercase and lowercase e's with circumflex accents", function () { expect(normalizer('ê')).toBe('e') expect(normalizer('Ê')).toBe('E') }) it("should correctly normalize uppercase and lowercase i's with circumflex accents", function () { expect(normalizer('î')).toBe('i') expect(normalizer('Î')).toBe('I') }) it("should correctly normalize uppercase and lowercase n's with tildes", function () { expect(normalizer('ñ')).toBe('n') expect(normalizer('Ñ')).toBe('N') }) it("should correctly normalize uppercase and lowercase o's with acute accents", function () { expect(normalizer('ó')).toBe('o') expect(normalizer('Ó')).toBe('O') }) it("should correctly normalize uppercase and lowercase o's with circumflex accents", function () { expect(normalizer('ô')).toBe('o') expect(normalizer('Ô')).toBe('O') }) it("should correctly normalize uppercase and lowercase u's with circumflex accents", function () { expect(normalizer('û')).toBe('u') expect(normalizer('Û')).toBe('U') }) it("should correctly normalize uppercase and lowercase s's with caron/wedge accents", function () { expect(normalizer('š')).toBe('s') expect(normalizer('Š')).toBe('S') }) }) }) ================================================ FILE: spec/normalizer_spec.ts ================================================ /* Copyright (c) 2013, Ken Koch Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { normalize as normalizer } from 'lib/natural' describe('normalizer', function () { /** * Test Normal Execution. This tests that the basic rules are sound and does not consider special cases. **/ describe('normal operations (rule execution)', function () { it("should correctly normalize n't as not", function () { expect(JSON.stringify(normalizer(["hasn't"]))).toBe(JSON.stringify(['has', 'not'])) expect(JSON.stringify(normalizer(["hadn't"]))).toBe(JSON.stringify(['had', 'not'])) expect(JSON.stringify(normalizer(["haven't"]))).toBe(JSON.stringify(['have', 'not'])) }) it("should correctly normalize 's as is", function () { expect(JSON.stringify(normalizer(["it's"]))).toBe(JSON.stringify(['it', 'is'])) expect(JSON.stringify(normalizer(["he's"]))).toBe(JSON.stringify(['he', 'is'])) expect(JSON.stringify(normalizer(["here's"]))).toBe(JSON.stringify(['here', 'is'])) }) it("should correctly normalize 'll as will", function () { expect(JSON.stringify(normalizer(["we'll"]))).toBe(JSON.stringify(['we', 'will'])) expect(JSON.stringify(normalizer(["he'll"]))).toBe(JSON.stringify(['he', 'will'])) expect(JSON.stringify(normalizer(["I'll"]))).toBe(JSON.stringify(['I', 'will'])) }) it("should correctly normalize 're as are", function () { expect(JSON.stringify(normalizer(["we're"]))).toBe(JSON.stringify(['we', 'are'])) expect(JSON.stringify(normalizer(["how're"]))).toBe(JSON.stringify(['how', 'are'])) }) it("should correctly normalize 'd as would", function () { expect(JSON.stringify(normalizer(["he'd"]))).toBe(JSON.stringify(['he', 'would'])) expect(JSON.stringify(normalizer(["I'd"]))).toBe(JSON.stringify(['I', 'would'])) }) }) /** * Test special case execution, this ensures that special cases are correctly normalized. **/ describe('special cases', function () { it("should convert can't to cannot", function () { expect(JSON.stringify(normalizer(["can't"]))).toBe(JSON.stringify(['can', 'not'])) }) it("should convert couldn't've as could not have", function () { expect(JSON.stringify(normalizer(["couldn't've"]))).toBe(JSON.stringify(['could', 'not', 'have'])) }) it("should convert how'd to how did", function () { expect(JSON.stringify(normalizer(["how'd"]))).toBe(JSON.stringify(['how', 'did'])) }) it("should correctly normalize I'm as I am", function () { expect(JSON.stringify(normalizer(["I'm"]))).toBe(JSON.stringify(['I', 'am'])) }) }) /** * Test some basic properties of the normailization. **/ describe('basic properties', function () { it('should handle different cases on special case conversion', function () { expect(JSON.stringify(normalizer(["I'm"]))).toBe(JSON.stringify(['I', 'am'])) expect(JSON.stringify(normalizer(["i'm"]))).toBe(JSON.stringify(['I', 'am'])) expect(JSON.stringify(normalizer(["can't"]))).toBe(JSON.stringify(['can', 'not'])) expect(JSON.stringify(normalizer(["Can't"]))).toBe(JSON.stringify(['can', 'not'])) expect(JSON.stringify(normalizer(["CaN'T"]))).toBe(JSON.stringify(['can', 'not'])) expect(JSON.stringify(normalizer(["how'd"]))).toBe(JSON.stringify(['how', 'did'])) expect(JSON.stringify(normalizer(["how'D"]))).toBe(JSON.stringify(['how', 'did'])) expect(JSON.stringify(normalizer(["HOw'd"]))).toBe(JSON.stringify(['how', 'did'])) expect(JSON.stringify(normalizer(["COULDN't've"]))).toBe(JSON.stringify(['could', 'not', 'have'])) expect(JSON.stringify(normalizer(["couldn'T've"]))).toBe(JSON.stringify(['could', 'not', 'have'])) expect(JSON.stringify(normalizer(["couldn't'VE"]))).toBe(JSON.stringify(['could', 'not', 'have'])) }) // Note: In rule-based conversion, case will be preserved on the base word. it('should handle different cases on rule-based conversion', function () { expect(JSON.stringify(normalizer(["Hasn't"]))).toBe(JSON.stringify(['Has', 'not'])) expect(JSON.stringify(normalizer(["HAsn't"]))).toBe(JSON.stringify(['HAs', 'not'])) expect(JSON.stringify(normalizer(["hasn'T"]))).toBe(JSON.stringify(['has', 'not'])) expect(JSON.stringify(normalizer(["It's"]))).toBe(JSON.stringify(['It', 'is'])) expect(JSON.stringify(normalizer(["IT's"]))).toBe(JSON.stringify(['IT', 'is'])) expect(JSON.stringify(normalizer(["it'S"]))).toBe(JSON.stringify(['it', 'is'])) expect(JSON.stringify(normalizer(["We'll"]))).toBe(JSON.stringify(['We', 'will'])) expect(JSON.stringify(normalizer(["WE'll"]))).toBe(JSON.stringify(['WE', 'will'])) expect(JSON.stringify(normalizer(["we'Ll"]))).toBe(JSON.stringify(['we', 'will'])) expect(JSON.stringify(normalizer(["How're"]))).toBe(JSON.stringify(['How', 'are'])) expect(JSON.stringify(normalizer(["hOW're"]))).toBe(JSON.stringify(['hOW', 'are'])) expect(JSON.stringify(normalizer(["how'RE"]))).toBe(JSON.stringify(['how', 'are'])) expect(JSON.stringify(normalizer(["I'd"]))).toBe(JSON.stringify(['I', 'would'])) expect(JSON.stringify(normalizer(["i'd"]))).toBe(JSON.stringify(['i', 'would'])) expect(JSON.stringify(normalizer(["I'D"]))).toBe(JSON.stringify(['I', 'would'])) }) it('should convert a string to an array for normalization', function () { expect(JSON.stringify(normalizer("I'D"))).toBe(JSON.stringify(['I', 'would'])) }) it('should simply tokenize a string that does not match a rule', function () { expect(JSON.stringify(normalizer(['Has', 'not']))).toBe(JSON.stringify(['Has', 'not'])) expect(JSON.stringify(normalizer(['HAs', 'not']))).toBe(JSON.stringify(['HAs', 'not'])) expect(JSON.stringify(normalizer(['has', 'noT']))).toBe(JSON.stringify(['has', 'noT'])) expect(JSON.stringify(normalizer(['It', 'is']))).toBe(JSON.stringify(['It', 'is'])) expect(JSON.stringify(normalizer(['IT', 'is']))).toBe(JSON.stringify(['IT', 'is'])) expect(JSON.stringify(normalizer(['it', 'iS']))).toBe(JSON.stringify(['it', 'iS'])) expect(JSON.stringify(normalizer(['We', 'will']))).toBe(JSON.stringify(['We', 'will'])) expect(JSON.stringify(normalizer(['WE', 'will']))).toBe(JSON.stringify(['WE', 'will'])) expect(JSON.stringify(normalizer(['we', 'wiLl']))).toBe(JSON.stringify(['we', 'wiLl'])) expect(JSON.stringify(normalizer(['How', 'are']))).toBe(JSON.stringify(['How', 'are'])) expect(JSON.stringify(normalizer(['hOW', 'are']))).toBe(JSON.stringify(['hOW', 'are'])) expect(JSON.stringify(normalizer(['how', 'aRE']))).toBe(JSON.stringify(['how', 'aRE'])) expect(JSON.stringify(normalizer(['I', 'would']))).toBe(JSON.stringify(['I', 'would'])) expect(JSON.stringify(normalizer(['i', 'would']))).toBe(JSON.stringify(['i', 'would'])) expect(JSON.stringify(normalizer(['I', 'woulD']))).toBe(JSON.stringify(['I', 'woulD'])) }) }) }) ================================================ FILE: spec/noun_inflector_fr_spec.ts ================================================ /* Copyright (c) 2012, Guillaume Marty Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { NounInflectorFr } from 'lib/natural' const inflector = new NounInflectorFr() describe('NounInflector (fr)', function () { describe('.pluralize()', function () { it('should pluralize exception nouns ending by -al', function () { expect(inflector.pluralize('carnaval')).toBe('carnavals') expect(inflector.pluralize('narval')).toBe('narvals') expect(inflector.pluralize('récital')).toBe('récitals') }) it('should pluralize regular nouns ending by -al', function () { expect(inflector.pluralize('amiral')).toBe('amiraux') expect(inflector.pluralize('cheval')).toBe('chevaux') expect(inflector.pluralize('général')).toBe('généraux') }) it('should pluralize exception nouns ending by -ail', function () { expect(inflector.pluralize('bail')).toBe('baux') expect(inflector.pluralize('vitrail')).toBe('vitraux') expect(inflector.pluralize('émail')).toBe('émaux') }) it('should pluralize regular nouns ending by -ail', function () { expect(inflector.pluralize('détail')).toBe('détails') expect(inflector.pluralize('poitrail')).toBe('poitrails') expect(inflector.pluralize('chandail')).toBe('chandails') }) it('should pluralize exception nouns ending by -il', function () { expect(inflector.pluralize('ciel')).toBe('cieux') expect(inflector.pluralize('œil')).toBe('yeux') }) it('should pluralize exception nouns ending by -ou', function () { expect(inflector.pluralize('bijou')).toBe('bijoux') expect(inflector.pluralize('joujou')).toBe('joujoux') expect(inflector.pluralize('hibou')).toBe('hiboux') }) it('should pluralize regular nouns ending by -ou', function () { expect(inflector.pluralize('trou')).toBe('trous') expect(inflector.pluralize('bambou')).toBe('bambous') expect(inflector.pluralize('toutou')).toBe('toutous') }) it('should pluralize exception nouns ending by -au', function () { expect(inflector.pluralize('berimbau')).toBe('berimbaus') expect(inflector.pluralize('landau')).toBe('landaus') expect(inflector.pluralize('pilau')).toBe('pilaus') }) it('should pluralize regular nouns ending by -au', function () { expect(inflector.pluralize('cadeau')).toBe('cadeaux') expect(inflector.pluralize('beau')).toBe('beaux') expect(inflector.pluralize('étau')).toBe('étaux') }) it('should pluralize exception nouns ending by -eu', function () { expect(inflector.pluralize('bleu')).toBe('bleus') expect(inflector.pluralize('émeu')).toBe('émeus') expect(inflector.pluralize('pneu')).toBe('pneus') }) it('should pluralize regular nouns ending by -eu', function () { expect(inflector.pluralize('pieu')).toBe('pieux') expect(inflector.pluralize('lieu')).toBe('lieux') expect(inflector.pluralize('feu')).toBe('feux') }) it('should pluralize regular nouns ending by -eau', function () { expect(inflector.pluralize('eau')).toBe('eaux') expect(inflector.pluralize('manteau')).toBe('manteaux') expect(inflector.pluralize('arbrisseau')).toBe('arbrisseaux') }) it('should pluralize regular nouns ending by -œu', function () { expect(inflector.pluralize('vœu')).toBe('vœux') }) it('should pluralize regular nouns ending by -s, -x or -z', function () { expect(inflector.pluralize('os')).toBe('os') expect(inflector.pluralize('cas')).toBe('cas') expect(inflector.pluralize('rhinocéros')).toBe('rhinocéros') expect(inflector.pluralize('houx')).toBe('houx') expect(inflector.pluralize('lynx')).toBe('lynx') expect(inflector.pluralize('roux')).toBe('roux') expect(inflector.pluralize('gaz')).toBe('gaz') expect(inflector.pluralize('quartz')).toBe('quartz') expect(inflector.pluralize('quiz')).toBe('quiz') }) it('should pluralize exception nouns', function () { expect(inflector.pluralize('ail')).toBe('aulx') expect(inflector.pluralize('bétail')).toBe('bestiaux') }) it('should pluralize regular nouns', function () { expect(inflector.pluralize('chai')).toBe('chais') expect(inflector.pluralize('vérité')).toBe('vérités') expect(inflector.pluralize('orange')).toBe('oranges') }) }) describe('.singularize() - part 1', function () { it('should singularize regular nouns ending by -aux', function () { expect(inflector.singularize('amiraux')).toBe('amiral') expect(inflector.singularize('chevaux')).toBe('cheval') expect(inflector.singularize('généraux')).toBe('général') expect(inflector.singularize('baux')).toBe('bail') expect(inflector.singularize('vitraux')).toBe('vitrail') expect(inflector.singularize('émaux')).toBe('émail') expect(inflector.singularize('cadeaux')).toBe('cadeau') expect(inflector.singularize('beaux')).toBe('beau') expect(inflector.singularize('étaux')).toBe('étau') }) it('should singularize nouns with multiple plural forms', function () { expect(inflector.singularize('ails')).toBe('ail') expect(inflector.singularize('aulx')).toBe('ail') expect(inflector.singularize('ciels')).toBe('ciel') expect(inflector.singularize('cieux')).toBe('ciel') expect(inflector.singularize('œils')).toBe('œil') expect(inflector.singularize('yeux')).toBe('œil') expect(inflector.singularize('aïeuls')).toBe('aïeul') // Regular expect(inflector.singularize('aïeux')).toBe('aïeul') expect(inflector.singularize('bisaïeuls')).toBe('bisaïeul') // Regular expect(inflector.singularize('bisaïeux')).toBe('bisaïeul') expect(inflector.singularize('craus')).toBe('crau') expect(inflector.singularize('craux')).toBe('crau') expect(inflector.singularize('graus')).toBe('grau') expect(inflector.singularize('graux')).toBe('grau') expect(inflector.singularize('sénaus')).toBe('sénau') expect(inflector.singularize('sénaux')).toBe('sénau') expect(inflector.singularize('tussaus')).toBe('tussau') expect(inflector.singularize('tussaux')).toBe('tussau') expect(inflector.singularize('emposieus')).toBe('emposieu') expect(inflector.singularize('emposieux')).toBe('emposieu') expect(inflector.singularize('richelieus')).toBe('richelieu') expect(inflector.singularize('richelieux')).toBe('richelieu') // expect(inflector.singularize('feus')).toBe('feu'); // This one is an adjective. expect(inflector.singularize('feux')).toBe('feu') expect(inflector.singularize('lieus')).toBe('lieu') // Fish expect(inflector.singularize('lieux')).toBe('lieu') expect(inflector.singularize('corails')).toBe('corail') expect(inflector.singularize('coraux')).toBe('corail') }) it('should singularize exception nouns ending by -oux', function () { expect(inflector.singularize('bijoux')).toBe('bijou') expect(inflector.singularize('joujoux')).toBe('joujou') expect(inflector.singularize('hiboux')).toBe('hibou') }) it('should singularize exception nouns ending by -eus', function () { expect(inflector.singularize('bleus')).toBe('bleu') expect(inflector.singularize('émeus')).toBe('émeu') expect(inflector.singularize('pneus')).toBe('pneu') }) it('should singularize regular nouns ending by -eux', function () { expect(inflector.singularize('pieux')).toBe('pieu') expect(inflector.singularize('lieux')).toBe('lieu') expect(inflector.singularize('feux')).toBe('feu') }) it('should singularize regular nouns ending by -eaux', function () { expect(inflector.singularize('eaux')).toBe('eau') expect(inflector.singularize('manteaux')).toBe('manteau') expect(inflector.singularize('arbrisseaux')).toBe('arbrisseau') }) it('should singularize regular nouns ending by -œux', function () { expect(inflector.singularize('vœux')).toBe('vœu') }) it('should singularize regular nouns ending by -s, -x or -z', function () { expect(inflector.singularize('cas')).toBe('cas') expect(inflector.singularize('os')).toBe('os') expect(inflector.singularize('rhinocéros')).toBe('rhinocéros') expect(inflector.singularize('houx')).toBe('houx') expect(inflector.singularize('lynx')).toBe('lynx') expect(inflector.singularize('roux')).toBe('roux') expect(inflector.singularize('gaz')).toBe('gaz') expect(inflector.singularize('quartz')).toBe('quartz') expect(inflector.singularize('quiz')).toBe('quiz') }) it('should singularize exception nouns', function () { expect(inflector.singularize('bestiaux')).toBe('bétail') }) it('should singularize regular nouns', function () { expect(inflector.singularize('chais')).toBe('chai') expect(inflector.singularize('vérités')).toBe('vérité') expect(inflector.singularize('oranges')).toBe('orange') // Exception nouns ending by -als expect(inflector.singularize('carnavals')).toBe('carnaval') expect(inflector.singularize('narvals')).toBe('narval') expect(inflector.singularize('récitals')).toBe('récital') // Regular nouns ending by -ails expect(inflector.singularize('détails')).toBe('détail') expect(inflector.singularize('poitrails')).toBe('poitrail') expect(inflector.singularize('chandails')).toBe('chandail') // Regular nouns ending by -ous expect(inflector.singularize('trous')).toBe('trou') expect(inflector.singularize('bambous')).toBe('bambou') expect(inflector.singularize('toutous')).toBe('toutou') // Exception nouns ending by -aus expect(inflector.singularize('berimbaus')).toBe('berimbau') expect(inflector.singularize('landaus')).toBe('landau') expect(inflector.singularize('pilaus')).toBe('pilau') }) }) /* These tests ensure pluralizing plurals or singularizing singulars won't lead to wrong results. */ describe('pluralize()', function () { it('should pluralize exception nouns ending by -al', function () { expect(inflector.pluralize('carnavals')).toBe('carnavals') expect(inflector.pluralize('narvals')).toBe('narvals') expect(inflector.pluralize('récitals')).toBe('récitals') }) it('should pluralize regular nouns ending by -al', function () { expect(inflector.pluralize('amiraux')).toBe('amiraux') expect(inflector.pluralize('chevaux')).toBe('chevaux') expect(inflector.pluralize('généraux')).toBe('généraux') }) it('should pluralize exception nouns ending by -ail', function () { expect(inflector.pluralize('baux')).toBe('baux') expect(inflector.pluralize('vitraux')).toBe('vitraux') expect(inflector.pluralize('émaux')).toBe('émaux') }) it('should pluralize regular nouns ending by -ail', function () { expect(inflector.pluralize('détails')).toBe('détails') expect(inflector.pluralize('poitrails')).toBe('poitrails') expect(inflector.pluralize('chandails')).toBe('chandails') }) it('should pluralize exception nouns ending by -il', function () { expect(inflector.pluralize('cieux')).toBe('cieux') expect(inflector.pluralize('yeux')).toBe('yeux') }) it('should pluralize exception nouns ending by -ou', function () { expect(inflector.pluralize('bijoux')).toBe('bijoux') expect(inflector.pluralize('joujoux')).toBe('joujoux') expect(inflector.pluralize('hiboux')).toBe('hiboux') }) it('should pluralize regular nouns ending by -ou', function () { expect(inflector.pluralize('trous')).toBe('trous') expect(inflector.pluralize('bambous')).toBe('bambous') expect(inflector.pluralize('toutous')).toBe('toutous') }) it('should pluralize exception nouns ending by -au', function () { expect(inflector.pluralize('berimbaus')).toBe('berimbaus') expect(inflector.pluralize('landaus')).toBe('landaus') expect(inflector.pluralize('pilaus')).toBe('pilaus') }) it('should pluralize regular nouns ending by -au', function () { expect(inflector.pluralize('cadeaux')).toBe('cadeaux') expect(inflector.pluralize('beaux')).toBe('beaux') expect(inflector.pluralize('étaux')).toBe('étaux') }) it('should pluralize exception nouns ending by -eu', function () { expect(inflector.pluralize('bleus')).toBe('bleus') expect(inflector.pluralize('émeus')).toBe('émeus') expect(inflector.pluralize('pneus')).toBe('pneus') }) it('should pluralize regular nouns ending by -eu', function () { expect(inflector.pluralize('pieux')).toBe('pieux') expect(inflector.pluralize('lieux')).toBe('lieux') expect(inflector.pluralize('feux')).toBe('feux') }) it('should pluralize regular nouns ending by -eau', function () { expect(inflector.pluralize('eaux')).toBe('eaux') expect(inflector.pluralize('manteaux')).toBe('manteaux') expect(inflector.pluralize('arbrisseaux')).toBe('arbrisseaux') }) it('should pluralize regular nouns ending by -œu', function () { expect(inflector.pluralize('vœux')).toBe('vœux') }) /* it('should pluralize regular nouns ending by -s, -x or -z', function () { expect(inflector.pluralize('os')).toBe('os') expect(inflector.pluralize('cas')).toBe('cas') expect(inflector.pluralize('rhinocéros')).toBe('rhinocéros') expect(inflector.pluralize('houx')).toBe('houx') expect(inflector.pluralize('lynx')).toBe('lynx') expect(inflector.pluralize('roux')).toBe('roux') expect(inflector.pluralize('gaz')).toBe('gaz') expect(inflector.pluralize('quartz')).toBe('quartz') expect(inflector.pluralize('quiz')).toBe('quiz') }) */ it('should pluralize exception nouns', function () { expect(inflector.pluralize('aulx')).toBe('aulx') expect(inflector.pluralize('bestiaux')).toBe('bestiaux') }) it('should pluralize regular nouns', function () { expect(inflector.pluralize('chais')).toBe('chais') expect(inflector.pluralize('vérités')).toBe('vérités') expect(inflector.pluralize('oranges')).toBe('oranges') }) }) describe('.singularize() - part 2', function () { it('should singularize regular nouns ending by -aux', function () { expect(inflector.singularize('amiral')).toBe('amiral') expect(inflector.singularize('cheval')).toBe('cheval') expect(inflector.singularize('général')).toBe('général') expect(inflector.singularize('bail')).toBe('bail') expect(inflector.singularize('vitrail')).toBe('vitrail') expect(inflector.singularize('émail')).toBe('émail') expect(inflector.singularize('cadeau')).toBe('cadeau') expect(inflector.singularize('beau')).toBe('beau') expect(inflector.singularize('étau')).toBe('étau') }) it('should singularize nouns with multiple plural forms', function () { expect(inflector.singularize('ail')).toBe('ail') expect(inflector.singularize('ciel')).toBe('ciel') expect(inflector.singularize('œil')).toBe('œil') expect(inflector.singularize('aïeul')).toBe('aïeul') expect(inflector.singularize('bisaïeul')).toBe('bisaïeul') expect(inflector.singularize('crau')).toBe('crau') expect(inflector.singularize('grau')).toBe('grau') expect(inflector.singularize('sénau')).toBe('sénau') expect(inflector.singularize('tussau')).toBe('tussau') expect(inflector.singularize('emposieu')).toBe('emposieu') expect(inflector.singularize('richelieu')).toBe('richelieu') expect(inflector.singularize('feu')).toBe('feu') expect(inflector.singularize('lieu')).toBe('lieu') // Fish expect(inflector.singularize('corail')).toBe('corail') }) it('should singularize exception nouns ending by -oux', function () { expect(inflector.singularize('bijou')).toBe('bijou') expect(inflector.singularize('joujou')).toBe('joujou') expect(inflector.singularize('hibou')).toBe('hibou') }) it('should singularize exception nouns ending by -eus', function () { expect(inflector.singularize('bleu')).toBe('bleu') expect(inflector.singularize('émeu')).toBe('émeu') expect(inflector.singularize('pneu')).toBe('pneu') }) it('should singularize regular nouns ending by -eux', function () { expect(inflector.singularize('pieu')).toBe('pieu') expect(inflector.singularize('lieu')).toBe('lieu') expect(inflector.singularize('feu')).toBe('feu') }) it('should singularize regular nouns ending by -eaux', function () { expect(inflector.singularize('eau')).toBe('eau') expect(inflector.singularize('manteau')).toBe('manteau') expect(inflector.singularize('arbrisseau')).toBe('arbrisseau') }) it('should singularize regular nouns ending by -œux', function () { expect(inflector.singularize('vœu')).toBe('vœu') }) /* it('should singularize regular nouns ending by -s, -x or -z', function () { expect(inflector.singularize('cas')).toBe('cas') expect(inflector.singularize('os')).toBe('os') expect(inflector.singularize('rhinocéros')).toBe('rhinocéros') expect(inflector.singularize('houx')).toBe('houx') expect(inflector.singularize('lynx')).toBe('lynx') expect(inflector.singularize('roux')).toBe('roux') expect(inflector.singularize('gaz')).toBe('gaz') expect(inflector.singularize('quartz')).toBe('quartz') expect(inflector.singularize('quiz')).toBe('quiz') }) */ it('should singularize exception nouns', function () { expect(inflector.singularize('bétail')).toBe('bétail') }) it('should singularize regular nouns', function () { expect(inflector.singularize('chai')).toBe('chai') expect(inflector.singularize('vérité')).toBe('vérité') expect(inflector.singularize('orange')).toBe('orange') // Exception nouns ending by -als expect(inflector.singularize('carnaval')).toBe('carnaval') expect(inflector.singularize('narval')).toBe('narval') expect(inflector.singularize('récital')).toBe('récital') // Regular nouns ending by -ails expect(inflector.singularize('détail')).toBe('détail') expect(inflector.singularize('poitrail')).toBe('poitrail') expect(inflector.singularize('chandail')).toBe('chandail') // Regular nouns ending by -ous expect(inflector.singularize('trou')).toBe('trou') expect(inflector.singularize('bambou')).toBe('bambou') expect(inflector.singularize('toutou')).toBe('toutou') // Exception nouns ending by -aus expect(inflector.singularize('berimbau')).toBe('berimbau') expect(inflector.singularize('landau')).toBe('landau') expect(inflector.singularize('pilau')).toBe('pilau') }) }) }) ================================================ FILE: spec/noun_inflector_ja_spec.ts ================================================ /* Copyright (c) 2012, Guillaume Marty Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { NounInflectorJa } from 'lib/natural' const inflector = new NounInflectorJa() describe('NounInflector (ja)', function () { describe('.pluralize()', function () { it('should pluralize nouns', function () { expect(inflector.pluralize('ひと')).toBe('ひとたち') expect(inflector.pluralize('わたし')).toBe('わたしたち') expect(inflector.pluralize('私')).toBe('私たち') }) it('should not pluralize exceptions', function () { expect(inflector.pluralize('ともだち')).toBe('ともだち') expect(inflector.pluralize('友だち')).toBe('友だち') expect(inflector.pluralize('友達')).toBe('友達') }) it('should pluralize archaic forms', function () { expect(inflector.pluralize('神')).toBe('神神') expect(inflector.pluralize('人')).toBe('人人') expect(inflector.pluralize('我')).toBe('我我') }) }) describe('.singularize()', function () { it('should singularize regular nouns ending by -tachi in Hiragana', function () { expect(inflector.singularize('わたしたち')).toBe('わたし') expect(inflector.singularize('人たち')).toBe('人') expect(inflector.singularize('りかたち')).toBe('りか') }) it('should not singularize exception nouns ending by -tachi in Hiragana', function () { expect(inflector.singularize('ついたち')).toBe('ついたち') expect(inflector.singularize('かたち')).toBe('かたち') expect(inflector.singularize('はたち')).toBe('はたち') }) it('should singularize regular nouns ending by -tachi in Kanji', function () { expect(inflector.singularize('わたし達')).toBe('わたし') expect(inflector.singularize('人達')).toBe('人') expect(inflector.singularize('日伊達')).toBe('日伊') }) it('should not singularize exception nouns ending by -tachi in Kanji', function () { expect(inflector.singularize('上達')).toBe('上達') expect(inflector.singularize('配達')).toBe('配達') expect(inflector.singularize('発達')).toBe('発達') }) it('should singularize regular nouns ending by -ra in Kanji', function () { expect(inflector.singularize('僕等')).toBe('僕') expect(inflector.singularize('貴様等')).toBe('貴様') expect(inflector.singularize('圭一等')).toBe('圭一') }) it('should not singularize exception nouns ending by -ra in Kanji', function () { expect(inflector.singularize('下等')).toBe('下等') expect(inflector.singularize('初等')).toBe('初等') expect(inflector.singularize('一等')).toBe('一等') }) it('should singularize regular nouns ending by -gata', function () { expect(inflector.singularize('神様方')).toBe('神様') expect(inflector.singularize('先生方')).toBe('先生') expect(inflector.singularize('あなたがた')).toBe('あなた') }) it('should singularize regular nouns ending by -domo', function () { expect(inflector.singularize('人間共')).toBe('人間') expect(inflector.singularize('野郎共')).toBe('野郎') expect(inflector.singularize('ガキども')).toBe('ガキ') }) it('should pluralize archaic forms', function () { expect(inflector.singularize('神神')).toBe('神') expect(inflector.singularize('人人')).toBe('人') expect(inflector.singularize('我我')).toBe('我') }) }) /* describe('.attach()', function() { it('should attach new methods to String', function() { inflector.attach(); expect('私'.pluralizeNoun()).toBe('私たち'); expect('私たち'.singularizeNoun()).toBe('私'); expect('人'.pluralizeNoun()).toBe('人人'); expect('人人'.singularizeNoun()).toBe('人'); }); }); */ }) ================================================ FILE: spec/noun_inflector_spec.ts ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { NounInflector } from 'lib/natural' const inflector = new NounInflector() describe('noun inflector (en)', function () { describe('singularization', function () { it('should drop an S by default', function () { expect(inflector.singularize('rrrs')).toBe('rrr') expect(inflector.singularize('hackers')).toBe('hacker') expect(inflector.singularize('movies')).toBe('movie') // MAN cases that don't pluralize to MEN expect(inflector.singularize('talismans')).toBe('talisman') expect(inflector.singularize('humans')).toBe('human') expect(inflector.singularize('prehumans')).toBe('prehuman') }) it('should handle ambiguous form', function () { expect(inflector.singularize('deer')).toBe('deer') expect(inflector.singularize('fish')).toBe('fish') expect(inflector.singularize('series')).toBe('series') expect(inflector.singularize('sheep')).toBe('sheep') expect(inflector.singularize('trout')).toBe('trout') }) it('should convert plurals ending SES to S', function () { expect(inflector.singularize('statuses')).toBe('status') expect(inflector.singularize('buses')).toBe('bus') }) it('should match irregulars', function () { expect(inflector.singularize('people')).toBe('person') expect(inflector.singularize('children')).toBe('child') expect(inflector.singularize('oxen')).toBe('ox') expect(inflector.singularize('clothes')).toBe('cloth') expect(inflector.singularize('heroes')).toBe('hero') expect(inflector.singularize('torsi')).toBe('torso') }) it('should handle IX cases', function () { expect(inflector.singularize('matrices')).toBe('matrix') expect(inflector.singularize('indices')).toBe('index') expect(inflector.singularize('cortices')).toBe('cortex') // our pluralizer won''t cause this form of appendix (appendicies) // but we should handle it expect(inflector.singularize('appendices')).toBe('appendix') }) it('should regulars to ES', function () { expect(inflector.singularize('churches')).toBe('church') expect(inflector.singularize('appendixes')).toBe('appendix') expect(inflector.singularize('messes')).toBe('mess') expect(inflector.singularize('quizes')).toBe('quiz') expect(inflector.singularize('shoes')).toBe('shoe') expect(inflector.singularize('funguses')).toBe('fungus') }) it('should handle SIS cases', function () { expect(inflector.singularize('synopses')).toBe('synopsis') expect(inflector.singularize('parentheses')).toBe('parenthesis') }) it('should handle special OES cases', function () { expect(inflector.singularize('tomatoes')).toBe('tomato') }) it('should handle I cases', function () { expect(inflector.singularize('octopi')).toBe('octopus') expect(inflector.singularize('stimuli')).toBe('stimulus') expect(inflector.singularize('radii')).toBe('radius') expect(inflector.singularize('nuclei')).toBe('nucleus') expect(inflector.singularize('fungi')).toBe('fungus') expect(inflector.singularize('cacti')).toBe('cactus') expect(inflector.singularize('alumni')).toBe('alumnus') expect(inflector.singularize('calculi')).toBe('calculus') expect(inflector.singularize('hippopotami')).toBe('hippopotamus') expect(inflector.singularize('macrofungi')).toBe('macrofungus') expect(inflector.singularize('phoeti')).toBe('phoetus') expect(inflector.singularize('syllabi')).toBe('syllabus') expect(inflector.singularize('trophi')).toBe('trophus') }) it('should handle IVES cases', function () { expect(inflector.singularize('lives')).toBe('life') expect(inflector.singularize('knives')).toBe('knife') }) it('should handle Y cases', function () { expect(inflector.singularize('parties')).toBe('party') expect(inflector.singularize('flies')).toBe('fly') expect(inflector.singularize('victories')).toBe('victory') expect(inflector.singularize('monstrosities')).toBe('monstrosity') }) it('should handle SS cases', function () { expect(inflector.singularize('dresses')).toBe('dress') expect(inflector.singularize('dress')).toBe('dress') expect(inflector.singularize('messes')).toBe('mess') }) it('should handle MAN->MAN cases', function () { expect(inflector.singularize('men')).toBe('man') expect(inflector.singularize('women')).toBe('woman') expect(inflector.singularize('workmen')).toBe('workman') expect(inflector.singularize('riflemen')).toBe('rifleman') }) it('should handle irregular cases', function () { expect(inflector.singularize('feet')).toBe('foot') expect(inflector.singularize('geese')).toBe('goose') expect(inflector.singularize('teeth')).toBe('tooth') expect(inflector.singularize('ephemerides')).toBe('ephemeris') }) it('should handle AE cases', function () { expect(inflector.singularize('antennae')).toBe('antenna') expect(inflector.singularize('formulae')).toBe('formula') expect(inflector.singularize('nebulae')).toBe('nebula') expect(inflector.singularize('vertebrae')).toBe('vertebra') expect(inflector.singularize('vitae')).toBe('vita') }) it('should allow AE cases to be S', function () { expect(inflector.singularize('antennas')).toBe('antenna') expect(inflector.singularize('formulas')).toBe('formula') }) }) describe('pluralization', function () { it('should append an S by default', function () { expect(inflector.pluralize('rrr')).toBe('rrrs') expect(inflector.pluralize('hacker')).toBe('hackers') expect(inflector.pluralize('movie')).toBe('movies') }) it('should handle ambiguous form', function () { expect(inflector.pluralize('deer')).toBe('deer') expect(inflector.pluralize('fish')).toBe('fish') expect(inflector.pluralize('series')).toBe('series') expect(inflector.pluralize('sheep')).toBe('sheep') expect(inflector.pluralize('trout')).toBe('trout') }) it('should convert singulars ending s to ses', function () { expect(inflector.pluralize('status')).toBe('statuses') expect(inflector.pluralize('bus')).toBe('buses') }) it('should match irregulars', function () { expect(inflector.pluralize('person')).toBe('people') expect(inflector.pluralize('child')).toBe('children') expect(inflector.pluralize('ox')).toBe('oxen') }) it('should maintain case of irregulars', function () { expect(inflector.pluralize('OX')).toBe('OXEN') expect(inflector.pluralize('Person')).toBe('People') expect(inflector.pluralize('child')).toBe('children') expect(inflector.pluralize('cloth')).toBe('clothes') }) it('should handle IX cases', function () { expect(inflector.pluralize('matrix')).toBe('matrices') expect(inflector.pluralize('index')).toBe('indices') expect(inflector.pluralize('cortex')).toBe('cortices') }) it('should regulars to ES', function () { expect(inflector.pluralize('church')).toBe('churches') expect(inflector.pluralize('appendix')).toBe('appendixes') expect(inflector.pluralize('mess')).toBe('messes') expect(inflector.pluralize('quiz')).toBe('quizes') expect(inflector.pluralize('shoe')).toBe('shoes') }) it('should handle SIS cases', function () { expect(inflector.pluralize('synopsis')).toBe('synopses') expect(inflector.pluralize('parenthesis')).toBe('parentheses') }) it('should handle special OES cases', function () { expect(inflector.pluralize('tomato')).toBe('tomatoes') expect(inflector.pluralize('buffalo')).toBe('buffaloes') expect(inflector.pluralize('tornado')).toBe('tornadoes') }) it('should handle I cases', function () { expect(inflector.pluralize('radius')).toBe('radii') expect(inflector.pluralize('octopus')).toBe('octopi') expect(inflector.pluralize('stimulus')).toBe('stimuli') expect(inflector.pluralize('nucleus')).toBe('nuclei') expect(inflector.pluralize('fungus')).toBe('fungi') expect(inflector.pluralize('cactus')).toBe('cacti') }) it('should handle IVES cases', function () { expect(inflector.pluralize('knife')).toBe('knives') expect(inflector.pluralize('life')).toBe('lives') }) it('should handle Y cases', function () { expect(inflector.pluralize('party')).toBe('parties') expect(inflector.pluralize('fly')).toBe('flies') expect(inflector.pluralize('victory')).toBe('victories') expect(inflector.pluralize('monstrosity')).toBe('monstrosities') }) it('should handle [aeiou]Y cases', function () { expect(inflector.pluralize('day')).toBe('days') expect(inflector.pluralize('toy')).toBe('toys') expect(inflector.pluralize('journey')).toBe('journeys') }) it('should handle SS cases', function () { expect(inflector.pluralize('dress')).toBe('dresses') expect(inflector.pluralize('dresses')).toBe('dresses') expect(inflector.pluralize('mess')).toBe('messes') }) it('should handle MAN->MEN cases', function () { expect(inflector.pluralize('man')).toBe('men') expect(inflector.pluralize('woman')).toBe('women') expect(inflector.pluralize('workman')).toBe('workmen') expect(inflector.pluralize('rifleman')).toBe('riflemen') }) it('should handle irregular cases', function () { expect(inflector.pluralize('foot')).toBe('feet') expect(inflector.pluralize('goose')).toBe('geese') expect(inflector.pluralize('tooth')).toBe('teeth') expect(inflector.pluralize('ephemeris')).toBe('ephemerides') // MAN cases that don't pluralize to MEN expect(inflector.pluralize('talisman')).toBe('talismans') expect(inflector.pluralize('human')).toBe('humans') expect(inflector.pluralize('prehuman')).toBe('prehumans') }) it('should handle AE cases', function () { expect(inflector.pluralize('antenna')).toBe('antennae') expect(inflector.pluralize('formula')).toBe('formulae') expect(inflector.pluralize('nebula')).toBe('nebulae') expect(inflector.pluralize('vertebra')).toBe('vertebrae') expect(inflector.pluralize('vita')).toBe('vitae') }) }) it('should pluralize and singularize string from patch', function () { expect(inflector.pluralize('synopsis')).toBe('synopses') expect(inflector.singularize('synopses')).toBe('synopsis') expect(inflector.pluralize('mess')).toBe('messes') expect(inflector.singularize('messes')).toBe('mess') }) describe('custom inflections', function () { it('should pluralize and singularize custom forms', function () { const myInflector = new NounInflector() myInflector.addPlural(/(code|ware)/i, '$1z') myInflector.addSingular(/(code|ware)z/i, '$1') expect(myInflector.pluralize('code')).toBe('codez') expect(myInflector.pluralize('ware')).toBe('warez') expect(myInflector.singularize('codez')).toBe('code') expect(myInflector.singularize('warez')).toBe('ware') }) it('should not break regular forms', function () { const myInflector = new NounInflector() myInflector.addPlural(/(code|ware)/i, '$1z') myInflector.addSingular(/(code|ware)z/i, '$1') expect(myInflector.pluralize('bus')).toBe('buses') expect(myInflector.singularize('buses')).toBe('bus') }) }) describe('should handle words ending in f, ff, ffe', function () { it('should handle words ending in ff and ffe', function () { const myInflector = new NounInflector() expect(myInflector.pluralize('sherriff')).toBe('sherriffs') expect(myInflector.pluralize('giraffe')).toBe('giraffes') expect(myInflector.singularize('sherriffs')).toBe('sherriff') expect(myInflector.singularize('giraffes')).toBe('giraffe') }) it('should handle words ending in f', function () { const myInflector = new NounInflector() expect(myInflector.pluralize('roof')).toBe('roofs') expect(myInflector.pluralize('chief')).toBe('chiefs') expect(myInflector.pluralize('oaf')).toBe('oafs') expect(myInflector.singularize('roofs')).toBe('roof') expect(myInflector.singularize('chiefs')).toBe('chief') expect(myInflector.singularize('oafs')).toBe('oaf') }) it('should handle words ending in f or fe', function () { const myInflector = new NounInflector() expect(myInflector.pluralize('leaf')).toBe('leaves') expect(myInflector.pluralize('wolf')).toBe('wolves') expect(myInflector.pluralize('calf')).toBe('calves') expect(myInflector.pluralize('half')).toBe('halves') expect(myInflector.pluralize('knife')).toBe('knives') expect(myInflector.pluralize('loaf')).toBe('loaves') expect(myInflector.pluralize('life')).toBe('lives') expect(myInflector.pluralize('wife')).toBe('wives') expect(myInflector.pluralize('shelf')).toBe('shelves') expect(myInflector.pluralize('thief')).toBe('thieves') expect(myInflector.pluralize('yourself')).toBe('yourselves') expect(myInflector.singularize('leaves')).toBe('leaf') expect(myInflector.singularize('wolves')).toBe('wolf') expect(myInflector.singularize('calves')).toBe('calf') expect(myInflector.singularize('halves')).toBe('half') expect(myInflector.singularize('knives')).toBe('knife') expect(myInflector.singularize('loaves')).toBe('loaf') expect(myInflector.singularize('lives')).toBe('life') expect(myInflector.singularize('wives')).toBe('wife') expect(myInflector.singularize('shelves')).toBe('shelf') expect(myInflector.singularize('thieves')).toBe('thief') expect(myInflector.singularize('yourselves')).toBe('yourself') }) it('should handle words ending in rf', function () { const myInflector = new NounInflector() expect(myInflector.pluralize('scarf')).toBe('scarfs') expect(myInflector.pluralize('dwarf')).toBe('dwarfs') expect(myInflector.pluralize('handkerchief')).toBe('handkerchiefs') expect(myInflector.pluralize('wharf')).toBe('wharfs') expect(myInflector.singularize('scarfs')).toBe('scarf') expect(myInflector.singularize('dwarfs')).toBe('dwarf') expect(myInflector.singularize('wharfs')).toBe('wharf') expect(myInflector.singularize('handkerchiefs')).toBe('handkerchief') expect(myInflector.singularize('scarves')).toBe('scarf') expect(myInflector.singularize('dwarves')).toBe('dwarf') expect(myInflector.singularize('wharves')).toBe('wharf') expect(myInflector.singularize('handkerchieves')).toBe('handkerchief') expect(myInflector.singularize('expenses')).toBe('expense') expect(myInflector.singularize('defenses')).toBe('defense') expect(myInflector.pluralize('expense')).toBe('expenses') expect(myInflector.pluralize('defense')).toBe('defenses') }) }) }) ================================================ FILE: spec/orthography_tokenizer_spec.ts ================================================ /* Copyright (c) 2018, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { OrthographyTokenizer } from 'lib/natural' const sentencesInFinnish = [ 'Mikä sinun nimesi on?', 'Hyvää kiitos, entä sinulle?', 'Tämä herrasmies maksaa kaiken' ] const results = [ ['Mikä', 'sinun', 'nimesi', 'on'], ['Hyvää', 'kiitos', 'entä', 'sinulle'], ['Tämä', 'herrasmies', 'maksaa', 'kaiken'] ] describe('The orthography tokenizer tokenizes sentences in Finnish', function () { const tokenizer = new OrthographyTokenizer({ language: 'fi' }) sentencesInFinnish.forEach(function (sentence, index) { it('It should correctly tokenize the following sentence: ' + sentence, function () { // console.log(tokenizer.tokenize(sentencePlusResult[0])); expect(tokenizer.tokenize(sentence)).toEqual(results[index]) }) }) }) ================================================ FILE: spec/porter_stemmer_de_spec.ts ================================================ /* Copyright (c) 2023, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { PorterStemmerDe as stemmer } from 'lib/natural' import rawJson from '../spec/test_data/snowball_de.json' const snowBallDict = rawJson as Record const DEBUG = false describe('porter_stemmer (de)', function () { it('should perform stemming on a lot of words', function () { const ok = [] const ko = [] Object.keys(snowBallDict).forEach(word => { const stemmed = stemmer.stem(word) const expectedStem = snowBallDict[word] DEBUG && console.log(word + ' -> ' + stemmed) if (stemmed === expectedStem) { ok.push(word) } else { ko.push({ word, expected: expectedStem, actual: stemmed }) } }) expect(ko.length).toBe(0) }) it('should preserve umlauts when the option is set', function () { const word = 'fröhlich' const stemmed = stemmer.stem(word, { preserveUmlauts: true }) expect(stemmed).toBe('fröhlich') }) }) ================================================ FILE: spec/porter_stemmer_es_spec.ts ================================================ /* Copyright (c) 2019, Luís Rodrigues (adapted for Spanish stemmer), Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { PorterStemmerEs as PorterStemmer } from 'lib/natural' import rawJson from '../spec/test_data/snowball_es.json' const snowBallDict = rawJson as Record const DEBUG = false describe('porter_stemmer (es)', function () { it('should perform stemming on a lot of words', function () { const errors = [] Object.keys(snowBallDict).forEach(word => { const stemmed = PorterStemmer.stem(word) const expectedStem = snowBallDict[word] if (stemmed !== snowBallDict[word]) { DEBUG && console.log('Error:', word, 'Expected:', expectedStem, 'Got:', stemmed) errors.push({ word, expected: expectedStem, actual: stemmed }) } }) expect(errors.length).toBe(0) }) it('should tokenize a piece of text', function () { expect(PorterStemmer.tokenizeAndStem('Pues, en efecto, es solo el plano y lo que muestra aquello que interesa a Zemeckis.', true)).toEqual( ['pues', 'en', 'efect', 'es', 'sol', 'el', 'plan', 'y', 'lo', 'que', 'muestr', 'aquell', 'que', 'interes', 'a', 'zemeckis']) }) /* it('should work with the attached notation', function() { PorterStemmer.attach(); expect("efecto".stem()).toEqual("efect"); expect("Pues, en efecto, es solo el plano y lo que muestra aquello que interesa a Zemeckis.".tokenizeAndStem(true)).toEqual( [ 'pues', 'en', 'efect', 'es', 'sol', 'el', 'plan', 'y', 'lo', 'que', 'muestr', 'aquell', 'que', 'interes', 'a', 'zemeckis' ]); }); */ }) ================================================ FILE: spec/porter_stemmer_fr_spec.ts ================================================ /* Copyright (c) 2019, Ismaël Héry, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { PorterStemmerFr as stemmer } from 'lib/natural' import rawJson from '../spec/test_data/snowball_fr.json' const snowBallDict = rawJson as Record describe('porter_stemmer (fr)', function () { it('should prelude', function () { expect(stemmer.prelude('JOUER')).toBe('joUer') expect(stemmer.prelude('ennuie')).toBe('ennuIe') expect(stemmer.prelude('yeux')).toBe('Yeux') expect(stemmer.prelude('quand')).toBe('qUand') }) it('should compute regions', function () { expect(stemmer.regions('fameusement').r1).toBe(3) expect(stemmer.regions('fameusement').r2).toBe(6) expect(stemmer.regions('taii').r1).toBe(4) expect(stemmer.regions('taii').r2).toBe(4) expect(stemmer.regions('parade').rv).toBe(3) expect(stemmer.regions('colet').rv).toBe(3) expect(stemmer.regions('tapis').rv).toBe(3) expect(stemmer.regions('aimer').rv).toBe(3) expect(stemmer.regions('adorer').rv).toBe(3) expect(stemmer.regions('voler').rv).toBe(2) expect(stemmer.regions('tue').rv).toBe(2) }) it('should compute longest suffix ends in Arr', function () { expect(stemmer.endsinArr('voudriez', ['ez', 'iez', 'z'])).toBe('iez') }) it('should stem some word', function () { expect(stemmer.stem('volera')).toBe('vol') expect(stemmer.stem('volerait')).toBe('vol') expect(stemmer.stem('subitement')).toBe('subit') expect(stemmer.stem('tempérament')).toBe('temper') expect(stemmer.stem('voudriez')).toBe('voudr') expect(stemmer.stem('vengeait')).toBe('veng') expect(stemmer.stem('saisissement')).toBe('sais') expect(stemmer.stem('transatlantique')).toBe('transatlant') expect(stemmer.stem('premièrement')).toBe('premi') expect(stemmer.stem('instruments')).toBe('instrument') expect(stemmer.stem('trouverions')).toBe('trouv') expect(stemmer.stem('voyiez')).toBe('voi') expect(stemmer.stem('publicité')).toBe('publiqu') expect(stemmer.stem('pitoyable')).toBe('pitoi') }) it('should perform stemming on a lot of words', function () { const ok = [] const ko = [] Object.keys(snowBallDict).forEach(word => { const stemmed = stemmer.stem(word) const expectedStem = snowBallDict[word] const regs = stemmer.regions(word) const txtRegions = { r1: word.substring(regs.r1), r2: word.substring(regs.r2), rv: word.substring(regs.rv) } if (stemmed === expectedStem) { ok.push(word) } else { ko.push({ word, expected: expectedStem, actual: stemmed, regions: txtRegions }) } }) expect(ko.length).toBe(0) }) }) ================================================ FILE: spec/porter_stemmer_it_spec.ts ================================================ /* Copyright (c) 2019, Leonardo Fenu, Chris Umbel, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { PorterStemmerIt as stemmer } from 'lib/natural' import rawJson from '../spec/test_data/snowball_it.json' const snowBallDict = rawJson as Record describe('porter_stemmer (it)', function () { it('should perform stem', function () { const errors = [] Object.keys(snowBallDict).forEach(word => { const stemmed = stemmer.stem(word) const expectedStem = snowBallDict[word] if (stemmed !== snowBallDict[word]) { console.log('Error:', word, 'Expected:', expectedStem, 'Got:', stemmed) errors.push({ word, expected: expectedStem, actual: stemmed }) } }) expect(errors.length).toEqual(0) }) /* it('should tokenize and stem attached', function() { stemmer.attach(); expect('SOPRA la panca la capra CAMPA'.tokenizeAndStem()).toEqual([ 'sopr', 'panc', 'capr', 'camp' ]); expect('SOTTO la panca la capra CREPA'.tokenizeAndStem()).toEqual([ 'sott', 'panc', 'capr', 'crep' ]); }); */ }) ================================================ FILE: spec/porter_stemmer_nl_spec.ts ================================================ /* Copyright (c) 2019, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { PorterStemmerNl as stemmer } from 'lib/natural' import rawObj from '../spec/test_data/snowball_nl.json' const snowBallDict = rawObj as Record // const dutchSentences = require('spec/test_data/Volkskrant-20150205-Knot-geldpers-aanzetten-is-paardenmiddel-voor-half-procent-inflatie.json') // const dutchStemResults = require('spec/test_data/dutchStemResults.json') const DEBUG = false describe('porter_stemmer (nl)', function () { it('should perform stemming on a lot of words', function () { const errors = [] Object.keys(snowBallDict).forEach(word => { const stemmed = stemmer.stem(word) const expectedStem = snowBallDict[word] if (stemmed !== snowBallDict[word]) { DEBUG && console.log('Error:', word, 'Expected:', expectedStem, 'Got:', stemmed) errors.push({ word, expected: expectedStem, actual: stemmed }) } }) // The stemmer has an error count of 237 against the snowball list for nl that has 45669 entries expect(errors.length).toEqual(237) }) // Commented out because hyphens are not processed correctly in the expected results /* it('should tokenize a piece of text', function () { dutchSentences.sentences.forEach((sentence, index) => { const result = stemmer.tokenizeAndStem(sentence, true) DEBUG && console.log(result) expect(result).toEqual(dutchStemResults.results[index]) }) }) */ /* it('should work with the attached notation', function() { stemmer.attach(); expect("mogelijkheid".stem()).toEqual("mogelijk"); expect("Knot: geldpers aanzetten is paardenmiddel voor half procent inflatie".tokenizeAndStem(true)).toEqual( [ 'knot', 'geldper', 'aanzet', 'is', 'paardenmiddel', 'vor', 'half', 'procent', 'inflatie' ]); }); */ }) ================================================ FILE: spec/porter_stemmer_no_spec.ts ================================================ /* Copyright (c) 2019, Kristoffer Brabrand, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { PorterStemmerNo as stemmer } from 'lib/natural' import rawObj from '../spec/test_data/snowball_no.json' const snowBallDict = rawObj as Record describe('porter_stemmer (no)', function () { it('should perform step 1a', function () { expect(stemmer.step1a('forenkla')).toBe('forenkl') expect(stemmer.step1a('aase')).toBe('aas') expect(stemmer.step1a('allerede')).toBe('aller') expect(stemmer.step1a('aukande')).toBe('auk') expect(stemmer.step1a('avbøtende')).toBe('avbøt') expect(stemmer.step1a('avdelingane')).toBe('avdeling') expect(stemmer.step1a('avgiftene')).toBe('avgift') expect(stemmer.step1a('havnevirksomhetene')).toBe('havnevirksom') expect(stemmer.step1a('heimelen')).toBe('heimel') expect(stemmer.step1a('hovedvirksomheten')).toBe('hovedvirksom') expect(stemmer.step1a('hovudreglar')).toBe('hovudregl') expect(stemmer.step1a('hugger')).toBe('hugg') expect(stemmer.step1a('importvirksomheter')).toBe('importvirksom') expect(stemmer.step1a('ivaretas')).toBe('ivaret') expect(stemmer.step1a('iverksettes')).toBe('iverksett') expect(stemmer.step1a('konsekvensutredes')).toBe('konsekvensutr') expect(stemmer.step1a('oversendes')).toBe('overs') expect(stemmer.step1a('pensjonenes')).toBe('pensjon') expect(stemmer.step1a('myndighetenes')).toBe('myndig') expect(stemmer.step1a('møteleiarens')).toBe('møteleiar') expect(stemmer.step1a('virksomhetens')).toBe('virksom') expect(stemmer.step1a('aktørers')).toBe('aktør') expect(stemmer.step1a('arbeidslivets')).toBe('arbeidsliv') expect(stemmer.step1a('arbeidskapasitet')).toBe('arbeidskapasit') expect(stemmer.step1a('arealknapphet')).toBe('arealknapp') expect(stemmer.step1a('attgjevast')).toBe('attgjev') }) it('should perform step 1b', function () { expect(stemmer.step1b('hinder')).toBe('hinder') expect(stemmer.step1b('erwerbs')).toBe('erwerb') expect(stemmer.step1b('alltids')).toBe('alltid') }) it('should perform step 1c', function () { expect(stemmer.step1c('akkumulerte')).toBe('akkumuler') expect(stemmer.step1c('akseptert')).toBe('aksepter') }) it('should perform step 1 (a-c)', function () { expect(stemmer.step1('andelar')).toBe('andel') expect(stemmer.step1('andeleigar')).toBe('andeleig') expect(stemmer.step1('andeleigarane')).toBe('andeleigar') expect(stemmer.step1('andeleigarbok')).toBe('andeleigarbok') expect(stemmer.step1('andelen')).toBe('andel') expect(stemmer.step1('andelene')).toBe('andel') expect(stemmer.step1('andeler')).toBe('andel') expect(stemmer.step1('andelsbevis')).toBe('andelsbevis') expect(stemmer.step1('andelsbok')).toBe('andelsbok') expect(stemmer.step1('andelsboka')).toBe('andelsbok') expect(stemmer.step1('andelsboligforening')).toBe('andelsboligforening') expect(stemmer.step1('andelsboligforeninger')).toBe('andelsboligforening') expect(stemmer.step1('andelsboligorganisation')).toBe('andelsboligorganisation') expect(stemmer.step1('andelsboligorganisationer')).toBe('andelsboligorganisation') expect(stemmer.step1('andelsbrev')).toBe('andelsbrev') }) it('should perform step 2', function () { expect(stemmer.step2('hvorvidt')).toBe('hvorvid') expect(stemmer.step2('innovativt')).toBe('innovativ') }) it('should perform step 3', function () { expect(stemmer.step3('lovleg')).toBe('lov') expect(stemmer.step3('konkurranseskadeleg')).toBe('konkurranseskad') expect(stemmer.step3('lystig')).toBe('lyst') expect(stemmer.step3('utrolig')).toBe('utro') expect(stemmer.step3('utrøstelig')).toBe('utrøst') expect(stemmer.step3('boliglov')).toBe('bolig') expect(stemmer.step3('samvirkelov')).toBe('samvirk') expect(stemmer.step3('arveavgiftslov')).toBe('arveavgift') }) it('should perform stemming on a lot of words', function () { const ok = [] const ko = [] Object.keys(snowBallDict).forEach(word => { const stemmed = stemmer.stem(word) const expectedStem = snowBallDict[word] if (stemmed === expectedStem) { ok.push(word) } else { ko.push({ word, expected: expectedStem, actual: stemmed }) } }) expect(ko.length).toBe(0) }) it('should perform complete stemming', function () { /* expect(stemmer.step1a('forenkla')).toBe('forenkl') expect(stemmer.step1a('aase')).toBe('aas') expect(stemmer.step1a('allerede')).toBe('aller') expect(stemmer.step1a('aukande')).toBe('auk') */ expect(stemmer.step1a('avbøtende')).toBe('avbøt') expect(stemmer.step1b('hinder')).toBe('hinder') expect(stemmer.step1b('erwerbs')).toBe('erwerb') expect(stemmer.step3('boliglov')).toBe('bolig') expect(stemmer.step3('samvirkelov')).toBe('samvirk') expect(stemmer.step3('arveavgiftslov')).toBe('arveavgift') }) /* it('should tokenize and stem attached', function() { stemmer.attach(); expect('forebygger vedlikeholdsbehovene'.tokenizeAndStem()).toEqual(['forebygg', 'vedlikeholdsbehov']); expect('FOREBYGGER VEDLIKEHOLDSBEHOVENE'.tokenizeAndStem()).toEqual(['forebygg', 'vedlikeholdsbehov']); }); */ }) ================================================ FILE: spec/porter_stemmer_pt_spec.ts ================================================ /* Copyright (c) 2019, Luís Rodrigues, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { PorterStemmerPt as stemmer } from 'lib/natural' import rawObj from '../spec/test_data/snowball_pt.json' const snowBallDict = rawObj as Record const DEBUG = false describe('porter_stemmer (pt)', function () { it('should perform stemming on a lot of words', function () { const errors = [] Object.keys(snowBallDict).forEach(word => { const stemmed = stemmer.stem(word) const expectedStem = snowBallDict[word] if (stemmed !== snowBallDict[word]) { DEBUG && console.log('Error:', word, 'Expected:', expectedStem, 'Got:', stemmed) errors.push({ word, expected: expectedStem, actual: stemmed }) } }) expect(errors.length).toEqual(0) }) }) ================================================ FILE: spec/porter_stemmer_ru_spec.ts ================================================ /* Copyright (c) 2011, Polyakov Vladimir, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { PorterStemmerRu as stemmer } from 'lib/natural' const test = [ 'в', 'вавиловка', 'вагнера', 'вагон', 'вагона', 'вагоне', 'вагонов', 'вагоном', 'вагоны', 'важная', 'важнее', 'важнейшие', 'важнейшими', 'важничал', 'важно', 'важного', 'важное', 'важной', 'важном', 'важному', 'важности', 'важностию', 'важность', 'важностью', 'важную', 'важны', 'важные', 'важный', 'важным', 'важных', 'вазах', 'вазы', 'вакса', 'вакханка', 'вал', 'валандался', 'валентина', 'валериановых', 'валерию', 'валетами', 'вали', 'валил', 'валился', 'валится', 'валов', 'вальдшнепа', 'вальс', 'вальса', 'вальсе', 'вальсишку', 'вальтера', 'валяется', 'валялась', 'валялись', 'валялось', 'валялся', 'валять', 'валяются', 'вам', 'вами', 'п', 'па', 'пава', 'павел', 'павильон', 'павильонам', 'павла', 'павлиний', 'павлиньи', 'павлиньим', 'павлович', 'павловна', 'павловне', 'павловной', 'павловну', 'павловны', 'павловцы', 'павлыч', 'павлыча', 'пагубная', 'падает', 'падай', 'падал', 'падала', 'падаль', 'падать', 'падаю', 'падают', 'падающего', 'падающие', 'падеж', 'падение', 'падением', 'падении', 'падений', 'падения', 'паденье', 'паденья', 'падет', 'падут', 'падучая', 'падчерицей', 'падчерицы', 'падшая', 'падшей', 'падшему', 'падший', 'падшим', 'падших', 'падшую', 'паек', 'пазухи', 'пазуху', 'пай', 'пакет', 'пакетом', 'пакеты', 'пакостей', 'пакостно', 'пал'] const testResult = [ 'в', 'вавиловк', 'вагнер', 'вагон', 'вагон', 'вагон', 'вагон', 'вагон', 'вагон', 'важн', 'важн', 'важн', 'важн', 'важнича', 'важн', 'важн', 'важн', 'важн', 'важн', 'важн', 'важност', 'важност', 'важност', 'важност', 'важн', 'важн', 'важн', 'важн', 'важн', 'важн', 'ваз', 'ваз', 'вакс', 'вакханк', 'вал', 'валанда', 'валентин', 'валерианов', 'валер', 'валет', 'вал', 'вал', 'вал', 'вал', 'вал', 'вальдшнеп', 'вальс', 'вальс', 'вальс', 'вальсишк', 'вальтер', 'валя', 'валя', 'валя', 'валя', 'валя', 'валя', 'валя', 'вам', 'вам', 'п', 'па', 'пав', 'павел', 'павильон', 'павильон', 'павл', 'павлин', 'павлин', 'павлин', 'павлович', 'павловн', 'павловн', 'павловн', 'павловн', 'павловн', 'павловц', 'павлыч', 'павлыч', 'пагубн', 'пада', 'пада', 'пада', 'пада', 'падал', 'пада', 'пада', 'пада', 'пада', 'пада', 'падеж', 'паден', 'паден', 'паден', 'паден', 'паден', 'паден', 'паден', 'падет', 'падут', 'падуч', 'падчериц', 'падчериц', 'падш', 'падш', 'падш', 'падш', 'падш', 'падш', 'падш', 'паек', 'пазух', 'пазух', 'па', 'пакет', 'пакет', 'пакет', 'пакост', 'пакостн', 'пал'] describe('porter_stemmer (ru)', function () { it('should permof stem', function () { for (let i = 0; i < test.length; i++) { expect(stemmer.stem(test[i])).toBe(testResult[i]) } })/*, it('should tokenize and stem attached', function() { stemmer.attach(); expect('мама мыла раму'.tokenizeAndStem()).toEqual(['мам', 'мыл', 'рам']); expect('МАМА МЫЛА РАМУ'.tokenizeAndStem()).toEqual(['мам', 'мыл', 'рам']); }); */ }) ================================================ FILE: spec/porter_stemmer_spec.ts ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { PorterStemmer as stemmer, stopwords } from 'lib/natural' describe('porter_stemmer (en)', function () { it('should categorizeGroups', function () { expect(stemmer.categorizeGroups('syllog')).toBe('CVCVC') expect(stemmer.categorizeGroups('gypsy')).toBe('CVCV') }) it('should measure', function () { expect(stemmer.measure('syllog')).toBe(2) }) it('should perform step 1a', function () { expect(stemmer.step1a('caresses')).toBe('caress') expect(stemmer.step1a('ponies')).toBe('poni') expect(stemmer.step1a('ties')).toBe('ti') expect(stemmer.step1a('caress')).toBe('caress') expect(stemmer.step1a('cats')).toBe('cat') }) it('should perform step 1b', function () { expect(stemmer.step1b('feed')).toBe('feed') expect(stemmer.step1b('agreed')).toBe('agree') expect(stemmer.step1b('plastered')).toBe('plaster') expect(stemmer.step1b('bled')).toBe('bled') expect(stemmer.step1b('motoring')).toBe('motor') expect(stemmer.step1b('sing')).toBe('sing') }) it('should perform step 1c', function () { expect(stemmer.step1c('happy')).toBe('happi') expect(stemmer.step1c('sky')).toBe('sky') }) it('should perform step 2', function () { expect(stemmer.step2('relational')).toBe('relate') expect(stemmer.step2('conditional')).toBe('condition') expect(stemmer.step2('rational')).toBe('rational') expect(stemmer.step2('valenci')).toBe('valence') expect(stemmer.step2('hesitanci')).toBe('hesitance') expect(stemmer.step2('digitizer')).toBe('digitize') expect(stemmer.step2('conformabli')).toBe('conformable') expect(stemmer.step2('radicalli')).toBe('radical') expect(stemmer.step2('differentli')).toBe('different') expect(stemmer.step2('vileli')).toBe('vile') expect(stemmer.step2('analogousli')).toBe('analogous') expect(stemmer.step2('vietnamization')).toBe('vietnamize') expect(stemmer.step2('predication')).toBe('predicate') expect(stemmer.step2('operator')).toBe('operate') expect(stemmer.step2('feudalism')).toBe('feudal') expect(stemmer.step2('decisiveness')).toBe('decisive') expect(stemmer.step2('hopefulness')).toBe('hopeful') expect(stemmer.step2('callousness')).toBe('callous') expect(stemmer.step2('formaliti')).toBe('formal') expect(stemmer.step2('sensitiviti')).toBe('sensitive') expect(stemmer.step2('sensibiliti')).toBe('sensible') }) it('should perform step 3', function () { expect(stemmer.step3('triplicate')).toBe('triplic') expect(stemmer.step3('formative')).toBe('form') expect(stemmer.step3('formalize')).toBe('formal') expect(stemmer.step3('electriciti')).toBe('electric') expect(stemmer.step3('electrical')).toBe('electric') expect(stemmer.step3('hopeful')).toBe('hope') expect(stemmer.step3('goodness')).toBe('good') }) it('should perform step 4', function () { expect(stemmer.step4('revival')).toBe('reviv') expect(stemmer.step4('allowance')).toBe('allow') expect(stemmer.step4('inference')).toBe('infer') expect(stemmer.step4('airliner')).toBe('airlin') expect(stemmer.step4('gyroscopic')).toBe('gyroscop') expect(stemmer.step4('adjustable')).toBe('adjust') expect(stemmer.step4('defensible')).toBe('defens') expect(stemmer.step4('irritant')).toBe('irrit') expect(stemmer.step4('replacement')).toBe('replac') expect(stemmer.step4('adjustment')).toBe('adjust') expect(stemmer.step4('dependent')).toBe('depend') expect(stemmer.step4('adoption')).toBe('adopt') expect(stemmer.step4('homologou')).toBe('homolog') expect(stemmer.step4('communism')).toBe('commun') expect(stemmer.step4('activate')).toBe('activ') expect(stemmer.step4('angulariti')).toBe('angular') expect(stemmer.step4('homologous')).toBe('homolog') expect(stemmer.step4('effective')).toBe('effect') expect(stemmer.step4('bowdlerize')).toBe('bowdler') }) it('should perform step 5a', function () { expect(stemmer.step5a('probate')).toBe('probat') expect(stemmer.step5a('rate')).toBe('rate') expect(stemmer.step5a('cease')).toBe('ceas') }) it('should perform step5b', function () { expect(stemmer.step5b('controll')).toBe('control') expect(stemmer.step5b('roll')).toBe('roll') }) it('should perform complete stemming', function () { expect(stemmer.stem('scoring')).toBe('score') expect(stemmer.stem('scored')).toBe('score') expect(stemmer.stem('scores')).toBe('score') expect(stemmer.stem('score')).toBe('score') expect(stemmer.stem('SCORING')).toBe('score') expect(stemmer.stem('SCORED')).toBe('score') expect(stemmer.stem('SCORES')).toBe('score') expect(stemmer.stem('SCORE')).toBe('score') expect(stemmer.stem('nationals')).toBe('nation') expect(stemmer.stem('doing')).toBe('do') }) it('should perform stem animated to anim', function () { expect(stemmer.stem('animated')).toBe('anim') }) it('issue 176 - attemptReplace ed|ing', function () { expect(stemmer.stem('aedile')).toBe('aedil') expect(stemmer.stem('adoptedly')).toBe('adoptedli') }) it('issue 176 - minimum length for final e', function () { expect(stemmer.stem('ace')).toBe('ac') }) it('issue 176 - minimum length for final s', function () { expect(stemmer.stem('yes')).toBe('ye') }) it('issue 176 - s/tion measure', function () { expect(stemmer.stem('invasion')).toBe('invas') }) it('issue 176 - vehement - step 4', function () { expect(stemmer.stem('vehement')).toBe('vehement') expect(stemmer.stem('syllogism')).toBe('syllog') expect(stemmer.stem('gypsy')).toBe('gypsi') }) it('issue 176 step 2', function () { expect(stemmer.stem('terribly')).toBe('terribl') expect(stemmer.stem('apology')).toBe('apolog') }) it('issue 176 - step 5a', function () { expect(stemmer.stem('type')).toBe('type') }) it('issue 176 - corruptiblity', function () { expect(stemmer.stem('corruptibility')).toBe('corrupt') }) /* it('should tokenize and stem attached', function() { stemmer.attach(); expect('scoring stinks'.tokenizeAndStem()).toEqual(['score', 'stink']); expect('SCORING STINKS'.tokenizeAndStem()).toEqual(['score', 'stink']); }); */ it('should tokenize and stem ignoring stopwords', function () { expect(stemmer.tokenizeAndStem('My dog is very fun TO play with And another thing, he is A poodle.')).toEqual(['dog', 'fun', 'plai', 'thing', 'poodl']) }) it('should tokenize and stem ignoring all capital stopwords', function () { const allCapitalStopwords: string = stopwords.join(' ').toUpperCase() expect(stemmer.tokenizeAndStem(allCapitalStopwords)).toEqual([]) }) it('should tokenize and stem including stopwords', function () { expect(stemmer.tokenizeAndStem('My dog is very fun TO play with And another thing, he is A poodle.', true)).toEqual(['my', 'dog', 'is', 'veri', 'fun', 'to', 'plai', 'with', 'and', 'anoth', 'thing', 'he', 'is', 'a', 'poodl']) }) }) ================================================ FILE: spec/porter_stemmer_sv_spec.ts ================================================ /* Copyright (c) 2017, Dogan Yazar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { PorterStemmerSv as stemmer } from 'lib/natural' import { words, stemmedWords } from '../spec/test_data/sv_stemmer_sample.js' describe('porter_stemmer_sv', function () { it('Stem whole sample data', function () { const res = words.map(w => stemmer.stem(w)) expect(res).toEqual(stemmedWords) }) /* it('should tokenize and stem attached', function() { stemmer.attach(); expect('björks jaktbössa'.tokenizeAndStem()).toEqual(['björk', 'jaktböss']) expect('bJöRks JaKtböSsa'.tokenizeAndStem()).toEqual(['björk', 'jaktböss']) }) */ }) ================================================ FILE: spec/present_verb_inflector_spec.ts ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import { PresentVerbInflector } from 'lib/natural' const inflector = new PresentVerbInflector() describe('present verb inflector', function () { describe('singularization', function () { it('should singularize regular ES forms', function () { expect(inflector.singularize('catch')).toBe('catches') expect(inflector.singularize('do')).toBe('does') expect(inflector.singularize('go')).toBe('goes') }) it('should handle [CS]HES forms', function () { expect(inflector.singularize('cash')).toBe('cashes') expect(inflector.singularize('ach')).toBe('aches') }) it('should ignore XES forms', function () { expect(inflector.singularize('annex')).toBe('annexes') }) it('should handle SSES forms', function () { expect(inflector.singularize('access')).toBe('accesses') }) it('should ignore ZZES forms', function () { expect(inflector.singularize('buzz')).toBe('buzzes') }) it('should singularize regular S forms', function () { expect(inflector.singularize('claim')).toBe('claims') expect(inflector.singularize('drink')).toBe('drinks') expect(inflector.singularize('become')).toBe('becomes') }) it('should singularize irregular forms', function () { expect(inflector.singularize('are')).toBe('is') expect(inflector.singularize('were')).toBe('was') expect(inflector.singularize('have')).toBe('has') }) it('should singularize ies forms', function () { expect(inflector.singularize('fly')).toBe('flies') expect(inflector.singularize('try')).toBe('tries') }) it('should handle ambiguous forms', function () { expect(inflector.singularize('will')).toBe('will') }) }) describe('pluralization', function () { it('should pluralize regular ES forms', function () { expect(inflector.pluralize('catches')).toBe('catch') expect(inflector.pluralize('does')).toBe('do') expect(inflector.pluralize('goes')).toBe('go') }) it('should handle [CS]HES forms', function () { expect(inflector.pluralize('cashes')).toBe('cash') expect(inflector.pluralize('aches')).toBe('ach') }) it('should handle XES forms', function () { expect(inflector.pluralize('annexes')).toBe('annex') }) it('should handle SSES forms', function () { expect(inflector.pluralize('accesses')).toBe('access') }) it('should handle ZZES forms', function () { expect(inflector.pluralize('buzzes')).toBe('buzz') }) it('should pluralize regular S forms that done drop e', function () { expect(inflector.pluralize('becomes')).toBe('become') }) it('should pluralize regular S forms', function () { expect(inflector.pluralize('drinks')).toBe('drink') expect(inflector.pluralize('claims')).toBe('claim') }) it('should pluralize irregular forms', function () { expect(inflector.pluralize('was')).toBe('were') expect(inflector.pluralize('is')).toBe('are') expect(inflector.pluralize('am')).toBe('are') expect(inflector.pluralize('has')).toBe('have') }) it('should pluralize ies forms', function () { expect(inflector.pluralize('flies')).toBe('fly') expect(inflector.pluralize('tries')).toBe('try') }) it('should handle ambiguous forms', function () { expect(inflector.pluralize('will')).toBe('will') }) }) it('should pluralize and singularize string', function () { expect(inflector.pluralize('becomes')).toBe('become') expect(inflector.singularize('become')).toBe('becomes') }) }) ================================================ FILE: spec/remove_diacritics_spec.ts ================================================ /* Copyright (c) 2013, Ken Koch Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import { removeDiacritics } from 'lib/natural' describe('remove_diacritics', function () { it('should correctly remove diacritics', function () { const originalPhrase = 'piñon ça va über résumé œdipe' expect(removeDiacritics(originalPhrase)).toEqual('pinon ca va uber resume oedipe') }) }) ================================================ FILE: spec/sentence_analyzer_spec.ts ================================================ /* Copyright (c) 2011, Rob Ellis, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' /* eslint-disable no-new */ import { SentenceAnalyzer } from 'lib/natural' import { SenType } from 'lib/natural/analyzers/SenType' import type { TaggedSentence, TaggedWord, PunctuationFunction, PunctuationMapping, CallbackFunction } from 'lib/natural' declare type Tests = Array<{ token?: string result: string | boolean argument?: string index?: string }> describe('sentence analyzer', function () { function testSentenceAnalyzer (sentenceTags: TaggedWord[], tests: Tests, callback: CallbackFunction): void { new SentenceAnalyzer({ tags: sentenceTags, punct: function () { return [] } }, function (analyzer) { analyzer.part(function (part) { const posTags = part.posObj.tags for (let tagNum = 0; tagNum < posTags.length; tagNum++) { const posTag = posTags[tagNum] tests.forEach(t => { if (posTag.token === t.token && t.argument !== undefined) { expect(posTag[t.argument]).toEqual(t.result) } }) } const lastTagNum = posTags.length - 1 tests.forEach(t => { if (t.index !== undefined && t.argument !== undefined) { expect(posTags[lastTagNum][t.argument]).toEqual(t.result) } }) }) callback(analyzer) }) } it('should determine PP and SP, given a POS', function () { const sentenceTags: TaggedWord[] = [ { token: 'The', pos: 'DT' }, { token: 'angry', pos: 'JJ' }, { token: 'bear', pos: 'NN' }, { token: 'chased', pos: 'VB' }, { token: 'the', pos: 'DT' }, { token: 'frightened', pos: 'JJ' }, { token: 'little', pos: 'JJ' }, { token: 'squirrel', pos: 'NN' } ] const tests: Tests = [ { token: 'angry', argument: 'spos', result: 'SP' }, { token: 'squirrel', argument: 'spos', result: 'PP' } ] testSentenceAnalyzer(sentenceTags, tests, function (analyzer) { expect(analyzer.subjectToString().trim()).toEqual('The angry bear') expect(analyzer.predicateToString().trim()).toEqual('chased the frightened little squirrel') expect(analyzer.toString().trim()).toEqual('The angry bear chased the frightened little squirrel') expect(analyzer.implicitYou()).toEqual(false) }) }) it('should determine PP and SP given a POS that begins with a verb', function () { const sentenceTags = [ { token: 'Vote', pos: 'VB' }, { token: 'for', pos: 'IN' }, { token: 'me', pos: 'PRP' } ] const tests: Tests = [ { token: 'Vote', argument: 'spos', result: 'PP' }, { token: 'me', argument: 'pp', result: true }, { index: 'LAST', argument: 'token', result: 'You' }, { index: 'LAST', argument: 'pos', result: 'PRP' }, { index: 'LAST', argument: 'added', result: true } ] testSentenceAnalyzer(sentenceTags, tests, function (analyzer) { expect(analyzer.implicitYou()).toEqual(true) }) }) it('should look for EX before VB', function () { const sentenceTags = [ { token: 'There', pos: 'EX' }, { token: 'is', pos: 'VB' }, { token: 'a', pos: 'DT' }, { token: 'house', pos: 'NN' }, { token: 'in', pos: 'IN' }, { token: 'the', pos: 'DT' }, { token: 'valley', pos: 'DT' } ] const tests = [ { token: 'There', argument: 'spos', result: 'SP' }, { token: 'is', argument: 'spos', result: 'SP' } ] testSentenceAnalyzer(sentenceTags, tests, function (analyzer) { expect(analyzer.subjectToString().trim()).toEqual('There is a house') expect(analyzer.predicateToString().trim()).toEqual('') expect(analyzer.toString().trim()).toEqual('There is a house in the valley') expect(analyzer.implicitYou()).toEqual(false) }) }) function testSentenceType (args: TaggedSentence, sentenceType: SenType, callback: CallbackFunction | null): void { new SentenceAnalyzer(args, function (analyzer) { analyzer.part(function () { analyzer.type(function (type) { expect(analyzer.senType).toEqual(sentenceType) }) }) if (callback !== null) { callback(analyzer) } }) } describe('#type', function () { it('should determine a command without punctuation', function () { const sentenceTags = [ { token: 'Vote', pos: 'VB' }, { token: 'for', pos: 'IN' }, { token: 'me', pos: 'PRP' } ] const punct: PunctuationFunction = function (): PunctuationMapping { return [] } testSentenceType({ tags: sentenceTags, punct }, SenType.Command, null) }) it('should determine an interrogative beginning with who', function () { const sentenceTags = [ { token: 'Who', pos: 'WP' }, { token: 'voted', pos: 'VB' } ] const punct: PunctuationFunction = function (): PunctuationMapping { return [] } testSentenceType({ tags: sentenceTags, punct }, SenType.Interrogative, null) }) it('should determine an interrogative ending with a personal pronoun', function () { const sentenceTags = [ { token: 'Should', pos: 'MD' }, { token: 'we', pos: 'PRP' } ] const punct: PunctuationFunction = function (): PunctuationMapping { return '' } testSentenceType({ tags: sentenceTags, punct }, SenType.Interrogative, null) }) it('should classify other sentences as unknown', function () { const sentenceTags = [ { token: 'I', pos: 'PRP' }, { token: 'am', pos: 'VB' }, { token: 'unsure', pos: 'JJ' } ] const punct: PunctuationFunction = function (): PunctuationMapping { return '' } testSentenceType({ tags: sentenceTags, punct }, SenType.Unknown, null) }) it('should determine an interrogative ending with a question mark', function () { const sentenceTags = [ { token: 'Do', pos: 'VB' }, { token: 'I', pos: 'PRP' }, { token: 'care', pos: 'VB' } ] const punct: PunctuationFunction = function (): PunctuationMapping { return [{ token: '?', pos: '.' }] } testSentenceType({ tags: sentenceTags, punct }, SenType.Interrogative, null) }) const taggedSentForCommand = [ { token: 'Vote', pos: 'VB' }, { token: 'for', pos: 'IN' }, { token: 'me', pos: 'PRP' } ] it('should determine a command ending in an exclamation point', function () { const punct: PunctuationFunction = function (): PunctuationMapping { return [{ token: '!', pos: '.' }] } testSentenceType({ tags: taggedSentForCommand, punct }, SenType.Command, null) }) it('should determine a command ending with .', function () { const punct: PunctuationFunction = function (): PunctuationMapping { return [{ token: '.', pos: '.' }] } testSentenceType({ tags: taggedSentForCommand, punct }, SenType.Command, null) }) const taggedSentenceForExclam = [ { token: 'We', pos: 'PRP' }, { token: 'like', pos: 'VB' }, { token: 'sheep', pos: 'NN' } ] it('should determine an exclamation ending in an exclamation point', function () { const punct: PunctuationFunction = function (): PunctuationMapping { return [{ token: '!', pos: '.' }] } testSentenceType({ tags: taggedSentenceForExclam, punct }, SenType.Exclamatory, null) }) it('should determine a declaration ending with a .', function () { const punct: PunctuationFunction = function (): PunctuationMapping { return [{ token: '.', pos: '.' }] } testSentenceType({ tags: taggedSentenceForExclam, punct }, SenType.Declarative, null) }) }) }) ================================================ FILE: spec/sentence_tokenizer_spec.ts ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { SentenceTokenizer as Tokenizer } from 'lib/natural' const testData = [ { it: 'should tokenize strings and trim whitespace', input: 'This is a sentence. This is another sentence.', output: ['This is a sentence.', 'This is another sentence.'] }, { it: 'should include quotation marks', input: '"This is a sentence." This is another sentence.', output: ['"This is a sentence."', 'This is another sentence.'] }, { it: 'should include brackets', input: 'This is a sentence. [This is another sentence.]', output: ['This is a sentence.', '[This is another sentence.]'] }, { it: 'should handle repetitive punctuation', input: 'I love you!! Do you love me??', output: ['I love you!!', 'Do you love me??'] }, { it: 'should handle repetitive punctuation with space', input: 'I love you! ! Do you love me? ?', output: ['I love you! !', 'Do you love me? ?'] }, { it: 'should handle decimal points in numbers', input: 'Pi is approximately equal to 3.14.', output: ['Pi is approximately equal to 3.14.'] }, { it: 'should tokenize text with a number like "1)" present ', input: "This is a sentence that can't 1) be parsed with SentenceTokenizerNew. Here is another sentence.", output: [ "This is a sentence that can't 1) be parsed with SentenceTokenizerNew.", 'Here is another sentence.' ] }, { it: 'should handle periods in email addresses', input: 'My email address is batman@example.com.', output: ['My email address is batman@example.com.'] }, { it: 'should handle periods in web addresses', input: 'My twitter feed can be found at https://twitter.com/user1.', output: ['My twitter feed can be found at https://twitter.com/user1.'] }, { it: 'should handle an ellipsis followed by punctuation', input: 'Is this the end for our heroes...?', output: ['Is this the end for our heroes...?'] }, { it: 'should handle multiple spaces separating sentences', input: 'Tune in tomorrow and find out! Same Bat-Time! Same Bat-Channel!', output: [ 'Tune in tomorrow and find out!', 'Same Bat-Time!', 'Same Bat-Channel!' ] }, { it: 'should handle braces and quotes (issue #591) part 1', input: 'Teste. Test test. Test test: “Test.”', output: [ 'Teste.', 'Test test.', 'Test test: “Test.”' ] }, { it: 'should handle braces and quotes (issue #591) part 2', input: 'Test Test. Test test, test test (test test) test: “Test.”', output: [ 'Test Test.', 'Test test, test test (test test) test: “Test.”' ] }, { it: 'should handle braces and quotes (issue #591) part 3', input: 'Test Test. Test test, test (test) test (test test) test: “Test.”', output: [ 'Test Test.', 'Test test, test (test) test (test test) test: “Test.”' ] }, { it: 'should handle braces and quotes (issue #591) part 4', input: 'Test: Test (test) test “Test.”', output: ['Test: Test (test) test “Test.”'] }, { it: 'Should handle text with the ellipsis symbol … (issue #648)', input: 'We’re heading for a catastrophic global temperature rise… Fires are blazing from the Amazon to the Arctic.', output: [ 'We’re heading for a catastrophic global temperature rise…', 'Fires are blazing from the Amazon to the Arctic.' ] }, { it: 'It should handle last sentence without punctuation (issue #648)', input: 'We’re heading for a catastrophic global temperature rise. Fires are blazing from the Amazon to the Arctic', output: [ 'We’re heading for a catastrophic global temperature rise.', 'Fires are blazing from the Amazon to the Arctic' ] }, { it: 'It should handle the example from issue #689 correctly', input: `This is some test content. We're trying to figure out variations in versions of the package.`, output: [ 'This is some test content.', 'We\'re trying to figure out variations in versions of the package.' ] }, { it: 'should handle abbreviations correctly 1', input: 'i.e.', output: ['i.e.'] }, { it: 'should handle abbreviations correctly 2', input: 'Acme, Inc. is creating exciting products. Use at your own risk.', output: [ 'Acme, Inc. is creating exciting products.', 'Use at your own risk.' ] }, { it: 'should handle abbreviations correctly 3', input: 'I need the parts A.S.A.P. please. Send them when they are ready', // input: 'I A.S.A.P. read', output: [ 'I need the parts A.S.A.P. please.', 'Send them when they are ready' ] }, { it: 'should handle abbreviations correctly 4', input: 'I need the parts from Inc.. Send them when they are ready!', output: [ 'I need the parts from Inc..', 'Send them when they are ready!' ] }, { it: 'It should handle the example from issue #750 correctly', input: '"A card must be of uniform thickness and made of unfolded and uncreased paper or cardstock of approximately the quality and weight of a stamped card (i.e., a card available from USPS)."', output: ['"A card must be of uniform thickness and made of unfolded and uncreased paper or cardstock of approximately the quality and weight of a stamped card (i.e., a card available from USPS)."'] }, { it: 'should handle a sentence that does not end with punctuation (issue #549))', input: 'This is a sentence. But is this also one', output: [ 'This is a sentence.', 'But is this also one' ] }, { it: 'should handle a sentence that contains a quoted phrase (issue #550 but with . and ’ reversed))', input: 'This is a sentence. And another where ‘Someone says something’.', output: [ 'This is a sentence.', 'And another where ‘Someone says something’.' ] }, { it: 'Should correctly parse multiple sentences with a subset of the sentences surrounded with quotes', input: '"All ticketed passengers should now be in the Blue Concourse sleep lounge. Make sure your validation papers are in order. Thank you." The upstairs lounge was not at all grungy.', output: [ '"All ticketed passengers should now be in the Blue Concourse sleep lounge.', 'Make sure your validation papers are in order.', 'Thank you."', 'The upstairs lounge was not at all grungy.' ] } ] describe('sentence_tokenizer', function () { let tokenizer: Tokenizer beforeAll(function () { tokenizer = new Tokenizer(['i.e.', 'etc.', 'vs.', 'Inc.', 'A.S.A.P.'], ['.', '!', '?', '\n', '\r', '...', '…']) }) testData.forEach(({ it: description, input, output }) => { it(description, function () { expect(tokenizer.tokenize(input)).toEqual(output) }) }) }) // describe('sentence_tokenizer with trimSentences set to false', function () { // let tokenizer: Tokenizer // beforeAll(function () { // tokenizer = new Tokenizer(['i.e.', 'etc.', 'vs.', 'Inc.', 'A.S.A.P.'], // ['.', '!', '?', '\n', '\r', '...', '…'], false) // }) // it('should tokenize strings but not trim whitespace if trimSentences is false', function () { // expect(tokenizer.tokenize('This is a sentence. This is another sentence.')).toEqual(['This is a sentence. ', 'This is another sentence.']) // }) // }) ================================================ FILE: spec/shortest_path_tree_spec.ts ================================================ /* Copyright (c) 2014, Lee Wenzhu Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { ShortestPathTree as SPT, Topological, EdgeWeightedDigraph } from 'lib/natural' describe('shortest path tree (1)', function () { const digraph = new EdgeWeightedDigraph() digraph.add(5, 4, 0.35) digraph.add(4, 7, 0.37) digraph.add(5, 7, 0.28) digraph.add(5, 1, 0.32) digraph.add(4, 0, 0.38) digraph.add(0, 2, 0.26) digraph.add(3, 7, 0.39) digraph.add(1, 3, 0.29) digraph.add(7, 2, 0.34) digraph.add(6, 2, 0.40) digraph.add(3, 6, 0.52) digraph.add(6, 0, 0.58) digraph.add(6, 4, 0.93) describe('edge weighted digraph normal operations', function () { it('should get the numbers of vertexs', function () { expect(digraph.v()).toBe(8) }) it('should get the numbers of edges', function () { expect(digraph.e()).toBe(13) }) it('should print all item in digraph', function () { expect(digraph.toString()).toBe('0 -> 2, 0.26\n' + '1 -> 3, 0.29\n' + '3 -> 7, 0.39\n' + '3 -> 6, 0.52\n' + '4 -> 7, 0.37\n' + '4 -> 0, 0.38\n' + '5 -> 4, 0.35\n' + '5 -> 7, 0.28\n' + '5 -> 1, 0.32\n' + '6 -> 2, 0.4\n' + '6 -> 0, 0.58\n' + '6 -> 4, 0.93\n' + '7 -> 2, 0.34') }) }) describe('topo sort for digraph', function () { it('should sort all the vertexs', function () { const topoSort = new Topological(digraph) expect(topoSort.isDAG()).toBe(true) expect(topoSort.order()).toEqual([5, 1, 3, 6, 4, 7, 0, 2]) }) }) describe('shortest path tree normal operations', function () { const lpt = new SPT(digraph, 5) it('should determine existence of paths', function () { expect(lpt.hasPathTo(0)).toBe(true) expect(lpt.hasPathTo(1)).toBe(true) expect(lpt.hasPathTo(2)).toBe(true) expect(lpt.hasPathTo(3)).toBe(true) expect(lpt.hasPathTo(4)).toBe(true) expect(lpt.hasPathTo(5)).toBe(false) expect(lpt.hasPathTo(6)).toBe(true) expect(lpt.hasPathTo(7)).toBe(true) }) it('should determine paths', function () { expect(lpt.pathTo(0)).toEqual([5, 4, 0]) expect(lpt.pathTo(1)).toEqual([5, 1]) expect(lpt.pathTo(2)).toEqual([5, 7, 2]) expect(lpt.pathTo(3)).toEqual([5, 1, 3]) expect(lpt.pathTo(4)).toEqual([5, 4]) expect(lpt.pathTo(5)).toEqual([]) expect(lpt.pathTo(6)).toEqual([5, 1, 3, 6]) expect(lpt.pathTo(7)).toEqual([5, 7]) }) it('should calculate distances', function () { expect(lpt.getDistTo(0)).toBe(0.73) expect(lpt.getDistTo(1)).toBe(0.32) expect(lpt.getDistTo(2)).toBe(0.62) expect(lpt.getDistTo(3)).toBe(0.61) expect(lpt.getDistTo(4)).toBe(0.35) expect(lpt.getDistTo(5)).toBe(0) expect(lpt.getDistTo(6)).toBe(1.13) expect(lpt.getDistTo(7)).toBe(0.28) }) }) /** * Check the issue #150 **/ describe('lightest weight path', function () { it('should find the lightest weight path - part 1', function () { const digraph = new EdgeWeightedDigraph() digraph.add(1, 3, 0.29) digraph.add(1, 6, 0) digraph.add(3, 6, 0) const spt = new SPT(digraph, 1) const path = spt.pathTo(6) expect(path).toEqual([1, 6]) }) it('should find the lightest weight path - part 2', function () { const digraph = new EdgeWeightedDigraph() digraph.add(1, 3, -1) digraph.add(1, 6, 0) digraph.add(3, 6, 0) const spt = new SPT(digraph, 1) const path = spt.pathTo(6) const hasPath = spt.hasPathTo(6) expect(hasPath).toBe(true) expect(path).toEqual([1, 3, 6]) }) }) }) ================================================ FILE: spec/soundex_spec.ts ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { SoundEx } from 'lib/natural' const soundex = new SoundEx() describe('soundex', function () { describe('transformLipps', function () { it('should replace B, F, P, and V with 1', function () { expect(soundex.transformLipps('bopper')).toBe('1o11er') expect(soundex.transformLipps('valumf')).toBe('1alum1') }) }) describe('transformThroats', function () { it('should replace C, G, J, K, Q, S, X, Z with 2', function () { expect(soundex.transformLipps('bopper')).toBe('1o11er') expect(soundex.transformLipps('valumf')).toBe('1alum1') }) }) describe('transformTongue', function () { it('should replace D and T with 3', function () { expect(soundex.transformToungue('dat')).toBe('3a3') }) }) describe('transformL', function () { it('should replace L with 4', function () { expect(soundex.transformL('lala')).toBe('4a4a') }) }) describe('transformHum', function () { it('should replace M and N with 5', function () { expect(soundex.transformHum('mummification')).toBe('5u55ificatio5') }) }) describe('transformR', function () { it('should replace R with 6', function () { expect(soundex.transformR('render')).toBe('6ende6') }) }) describe('condense', function () { it('sound condense sequences', function () { expect(soundex.condense('11222556')).toBe('1256') }) }) describe('padRight0', function () { it('sound padd zeros on the right to a lenght of 3', function () { expect(soundex.padRight0('1')).toBe('100') expect(soundex.padRight0('11')).toBe('110') expect(soundex.padRight0('111')).toBe('111') }) }) it('should not code the first character', function () { expect(soundex.process('render').charAt(0)).toBe('R') }) it('should pad right with zeros', function () { expect(soundex.process('super')).toBe('S160') expect(soundex.process('butt')).toBe('B300') expect(soundex.process('a')).toBe('A000') expect(soundex.process('but')).toBe('B300') }) it('should perform soundex', function () { expect(soundex.process('BLACKBERRY')).toBe('B421') expect(soundex.process('blackberry')).toBe('B421') expect(soundex.process('calculate')).toBe('C424') expect(soundex.process('CALCULATE')).toBe('C424') expect(soundex.process('fox')).toBe('F200') expect(soundex.process('FOX')).toBe('F200') expect(soundex.process('jump')).toBe('J510') expect(soundex.process('JUMP')).toBe('J510') expect(soundex.process('phonetics')).toBe('P532') expect(soundex.process('PHONETICS')).toBe('P532') }) it('should perform soundex via compare method', function () { expect(soundex.compare('ant', 'and')).toBeTruthy() expect(soundex.compare('ant', 'anne')).toBeFalsy() expect(soundex.compare('band', 'bant')).toBeTruthy() expect(soundex.compare('band', 'gand')).toBeFalsy() }) /* it('should perform soundex via attached soundsLike String patch', function() { soundex.attach(); expect('ant'.soundsLike('ant')).toBeTruthy(); expect('ant'.soundsLike('anne')).toBeFalsy(); expect('band'.soundsLike('bant')).toBeTruthy(); expect('band'.soundsLike('gand')).toBeFalsy(); }); it('should return string phonetics with string patch', function() { soundex.attach(); expect('phonetics'.phonetics()).toBe('P532'); expect('PHONETICS'.phonetics()).toBe('P532'); }); it('issue 221 -- inital vowels that duplicate cons codes', function() { soundex.attach(); expect('Lloyd'.phonetics()).toBe('L300'); expect('Pfister'.phonetics()).toBe('P236'); expect('manhattan'.phonetics()).toBe('M535'); expect('Lukasiewicz'.phonetics()).toBe('L222'); expect('Gauss'.phonetics()).toBe('G200'); expect('Tymczak'.phonetics()).toBe('T522'); expect('Jackson'.phonetics()).toBe('J250'); }); it('should tokenize and return string phonetics with string patch', function() { soundex.attach(); expect('phonetics'.tokenizeAndPhoneticize()).toEqual(['P532']); expect('phonetics jump'.tokenizeAndPhoneticize()).toEqual(['P532', 'J510']); expect('phonetics jump calculate'.tokenizeAndPhoneticize()).toEqual(['P532', 'J510', 'C424']); }); */ it('should max out at four characters long by default', function () { expect(soundex.process('supercalifragilisticexpialidocious').length).toBe(4) }) it('should truncate to specified length if maxLength passed', function () { expect(soundex.process('supercalifragilisticexpialidocious', 8).length).toBe(8) }) it('should handle a maxLength beyond code length', function () { expect(soundex.process('JUMP', 8)).toBe('J510') }) }) ================================================ FILE: spec/spellcheck_spec.ts ================================================ /* Copyright (c) 2011 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { Spellcheck } from 'lib/natural' describe('spellcheck', function () { describe('distance 1 corrections', function () { const spellcheck = new Spellcheck(['something']) it('should fix deletions', function () { expect(spellcheck.getCorrections('smething')).toContain('something') }) it('should fix insertions', function () { expect(spellcheck.getCorrections('somethhing')).toContain('something') }) it('should fix transpositions', function () { expect(spellcheck.getCorrections('somehting')).toContain('something') }) it('should fix replacements', function () { expect(spellcheck.getCorrections('sometzing')).toContain('something') }) }) describe('distance 2 corrections', function () { const spellcheck = new Spellcheck(['something']) it('should fix a deletion then a transposition', function () { expect(spellcheck.getCorrections('smtehing', 2)).toContain('something') }) }) describe('edits', function () { const spellcheck = new Spellcheck([]) const edits = spellcheck.edits('ab') it('should compute insertions', function () { const insertions = ['xab', 'axb', 'abx'] insertions.forEach(insertion => { expect(edits.indexOf(insertion)).toBeGreaterThan(-1) }) }) it('should compute deletions', function () { const deletions = ['a', 'b'] deletions.forEach(deletion => { expect(edits.indexOf(deletion)).toBeGreaterThan(-1) }) }) it('should compute transpositions', function () { const transpositions = ['ba'] transpositions.forEach(transposition => { expect(edits.indexOf(transposition)).toBeGreaterThan(-1) }) }) it('should compute replacements', function () { const replacements = ['zb', 'af'] replacements.forEach(replacement => { expect(edits.indexOf(replacement)).toBeGreaterThan(-1) }) }) }) describe('edits up to distance', function () { const spellcheck = new Spellcheck([]) it('should correctly compute edits at distance', function () { const edits = spellcheck.editsWithMaxDistance('abc', 2) expect(edits[1].indexOf('abzc')).toBeGreaterThan(-1) // 1 insertion expect(edits[2].indexOf('a')).toBeGreaterThan(-1) // 2 deletions }) }) describe('boolean spellcheck', function () { const spellcheck = new Spellcheck(['cat']) it('should consider cat a word', function () { expect(spellcheck.isCorrect('cat')).toBe(true) }) it('should not consider dog a word', function () { expect(spellcheck.isCorrect('dog')).toBe(false) }) }) describe('special cases', function () { const spellcheck = new Spellcheck(['cat']) it('should return the input word as the most probable correction if it is already correct', function () { expect(spellcheck.getCorrections('cat').indexOf('cat')).toBe(0) }) }) }) ================================================ FILE: spec/stemmer_id_spec.ts ================================================ /* Copyright (c) 2018 Permission is hereby granted, free of charge, to any person obtaining a copy of this softwé and associated documentation files (the "Softwé"), to deal in the Softwé without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Softwé, and to permit persons to whom the Softwé 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 Softwé. THE SOFTWé IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWé OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' // Adapted from original Mocha test script in tests folder import { StemmerId as Stemmer } from 'lib/natural' declare type Tests = Array<[string, string]> const data: Tests = [] // THE TESTCASES // don't stem short words data.push(['mei', 'mei']) data.push(['bui', 'bui']) // lookup up the dictionary, to prevent overstemming // don't stem nilai to nila data.push(['nilai', 'nilai']) // lah|kah|tah|pun data.push(['hancurlah', 'hancur']) // data.push(['benarkah', 'benar']); // data.push(['apatah', 'apa']); // data.push(['siapapun', 'siapa']); // ku|mu|nya data.push(['jubahku', 'jubah']) data.push(['bajumu', 'baju']) data.push(['celananya', 'celana']) // i|kan|an data.push(['hantui', 'hantu']) // data.push(['belikan', 'beli']); data.push(['jualan', 'jual']) // combination of suffixes data.push(['bukumukah', 'buku']) // gagal karena -ku dianggap suffix dan dihilangkan data.push(['miliknyalah', 'milik']) data.push(['kulitkupun', 'kulit']) // gagal karena -ku dianggap suffix dan dihilangkan data.push(['berikanku', 'beri']) data.push(['sakitimu', 'sakit']) data.push(['beriannya', 'beri']) data.push(['kasihilah', 'kasih']) // plain prefix data.push(['dibuang', 'buang']) data.push(['kesakitan', 'sakit']) data.push(['sesuap', 'suap']) // data.push(['teriakanmu', 'teriak']); // wtf? kok jadi ria? // teriakanmu -> te-ria-kan-mu // template formulas for derivation prefix rules (disambiguation) // // rule 1a : berV -> ber-V data.push(['beradu', 'adu']) // rule 1b : berV -> be-rV data.push(['berambut', 'rambut']) // rule 2 : berCAP -> ber-CAP data.push(['bersuara', 'suara']) // rule 3 : berCAerV -> ber-CAerV where C != 'r' data.push(['berdaerah', 'daerah']) // rule 4 : belajar -> bel-ajar data.push(['belajar', 'ajar']) // rule 5 : beC1erC2 -> be-C1erC2 where C1 != {'r'|'l'} // data.push(['bekerja', 'kerja']); data.push(['beternak', 'ternak']) // rule 6a : terV -> ter-V data.push(['terasing', 'asing']) // rule 6b : terV -> te-rV data.push(['teraup', 'raup']) // rule 7 : terCerV -> ter-CerV where C != 'r' data.push(['tergerak', 'gerak']) // rule 8 : terCP -> ter-CP where C != 'r' and P != 'er' data.push(['terpuruk', 'puruk']) // rule 9 : teC1erC2 -> te-C1erC2 where C1 != 'r' data.push(['teterbang', 'terbang']) // rule 10 : me{l|r|w|y}V -> me-{l|r|w|y}V data.push(['melipat', 'lipat']) data.push(['meringkas', 'ringkas']) data.push(['mewarnai', 'warna']) // data.push(['meyakinkan', 'yakin']); // rule 11 : mem{b|f|v} -> mem-{b|f|v} data.push(['membangun', 'bangun']) data.push(['memfitnah', 'fitnah']) data.push(['memvonis', 'vonis']) // rule 12 : mempe{r|l} -> mem-pe data.push(['memperbarui', 'baru']) data.push(['mempelajari', 'ajar']) // rule 13a : mem{rV|V} -> mem{rV|V} data.push(['meminum', 'minum']) // rule 13b : mem{rV|V} -> me-p{rV|V} data.push(['memukul', 'pukul']) // rule 14 : men{c|d|j|z} -> men-{c|d|j|z} data.push(['mencinta', 'cinta']) data.push(['mendua', 'dua']) data.push(['menjauh', 'jauh']) data.push(['menziarah', 'ziarah']) // rule 15a : men{V} -> me-n{V} data.push(['menuklir', 'nuklir']) // rule 15b : men{V} -> me-t{V} data.push(['menangkap', 'tangkap']) // rule 16 : meng{g|h|q} -> meng-{g|h|q} data.push(['menggila', 'gila']) data.push(['menghajar', 'hajar']) data.push(['mengqasar', 'qasar']) // rule 17a : mengV -> meng-V data.push(['mengudara', 'udara']) // rule 17b : mengV -> meng-kV data.push(['mengupas', 'kupas']) // rule 18 : menyV -> meny-sV data.push(['menyuarakan', 'suara']) // rule 19 : mempV -> mem-pV where V != 'e' data.push(['mempopulerkan', 'populer']) // rule 20 : pe{w|y}V -> pe-{w|y}V data.push(['pewarna', 'warna']) data.push(['peyoga', 'yoga']) // rule 21a : perV -> per-V data.push(['peradilan', 'adil']) // rule 21b : perV -> pe-rV data.push(['perumahan', 'rumah']) // rule 22 is missing in the document? // rule 23 : perCAP -> per-CAP where C != 'r' and P != 'er' data.push(['permuka', 'muka']) // rule 24 : perCAerV -> per-CAerV where C != 'r' data.push(['perdaerah', 'daerah']) // rule 25 : pem{b|f|v} -> pem-{b|f|v} data.push(['pembangun', 'bangun']) data.push(['pemfitnah', 'fitnah']) data.push(['pemvonis', 'vonis']) // rule 26a : pem{rV|V} -> pe-m{rV|V} data.push(['peminum', 'minum']) // rule 26b : pem{rV|V} -> pe-p{rV|V} data.push(['pemukul', 'pukul']) // rule 27 : men{c|d|j|z} -> men-{c|d|j|z} data.push(['pencinta', 'cinta']) data.push(['pendahulu', 'dahulu']) data.push(['penjarah', 'jarah']) data.push(['penziarah', 'ziarah']) // rule 28a : pen{V} -> pe-n{V} data.push(['penasihat', 'nasihat']) // rule 28b : pen{V} -> pe-t{V} data.push(['penangkap', 'tangkap']) // rule 29 : peng{g|h|q} -> peng-{g|h|q} data.push(['penggila', 'gila']) data.push(['penghajar', 'hajar']) data.push(['pengqasar', 'qasar']) // rule 30a : pengV -> peng-V data.push(['pengudara', 'udara']) // rule 30b : pengV -> peng-kV data.push(['pengupas', 'kupas']) // rule 31 : penyV -> peny-sV data.push(['penyuara', 'suara']) // rule 32 : pelV -> pe-lV except pelajar -> ajar data.push(['pelajar', 'ajar']) data.push(['pelabuhan', 'labuh']) // rule 33 : peCerV -> per-erV where C != {r|w|y|l|m|n} // TODO : find the examples // rule 34 : peCP -> pe-CP where C != {r|w|y|l|m|n} and P != 'er' data.push(['petarung', 'tarung']) // CS additional rules // rule 35 : terC1erC2 -> ter-C1erC2 where C1 != 'r' data.push(['terpercaya', 'percaya']) // rule 36 : peC1erC2 -> pe-C1erC2 where C1 != {r|w|y|l|m|n} data.push(['pekerja', 'kerja']) data.push(['peserta', 'serta']) // CS modify rule 12 data.push(['mempengaruhi', 'pengaruh']) // CS modify rule 16 data.push(['mengkritik', 'kritik']) // CS adjusting rule precedence data.push(['bersekolah', 'sekolah']) // gagal sekolah -> seko why? data.push(['bertahan', 'tahan']) data.push(['mencapai', 'capai']) // gagal mencapai -> capa // data.push(['dimulai', 'mulai']); data.push(['petani', 'tani']) // gagal petani -> petan data.push(['terabai', 'abai']) // gagal terabai -> aba // ECS data.push(['mensyaratkan', 'syarat']) data.push(['mensyukuri', 'syukur']) data.push(['mengebom', 'bom']) data.push(['mempromosikan', 'promosi']) data.push(['memproteksi', 'proteksi']) data.push(['memprediksi', 'prediksi']) data.push(['pengkajian', 'kaji']) data.push(['pengebom', 'bom']) // ECS loop pengembalian akhiran data.push(['bersembunyi', 'sembunyi']) data.push(['bersembunyilah', 'sembunyi']) data.push(['pelanggan', 'langgan']) data.push(['pelaku', 'laku']) data.push(['pelangganmukah', 'langgan']) data.push(['pelakunyalah', 'laku']) data.push(['perbaikan', 'baik']) data.push(['kebaikannya', 'baik']) data.push(['bisikan', 'bisik']) // data.push(['menerangi', 'terang']); // data.push(['berimanlah', 'iman']); // data.push(['memuaskan', 'puas']); data.push(['berpelanggan', 'langgan']) data.push(['bermakanan', 'makan']) // CC (Modified ECS) data.push(['menyala', 'nyala']) data.push(['menyanyikan', 'nyanyi']) data.push(['menyatakannya', 'nyata']) data.push(['penyanyi', 'nyanyi']) data.push(['penyawaan', 'nyawa']) // CC infix // data.push(['rerata', 'rata']); // data.push(['lelembut', 'lembut']); data.push(['lemigas', 'ligas']) data.push(['kinerja', 'kerja']) // plurals data.push(['buku-buku', 'buku']) data.push(['berbalas-balasan', 'balas']) data.push(['bolak-balik', 'bolak-balik']) // combination of prefix + suffix data.push(['bertebaran', 'tebar']) data.push(['terasingkan', 'asing']) data.push(['membangunkan', 'bangun']) data.push(['mencintai', 'cinta']) data.push(['menduakan', 'dua']) data.push(['menjauhi', 'jauh']) data.push(['menggilai', 'gila']) data.push(['pembangunan', 'bangun']) // return the word if not found in the dictionary data.push(['marwan', 'marwan']) data.push(['subarkah', 'subarkah']) // recursively remove prefix data.push(['memberdayakan', 'daya']) data.push(['persemakmuran', 'makmur']) data.push(['keberuntunganmu', 'untung']) data.push(['kesepersepuluhnya', 'sepuluh']) // test stem sentence // data.push(['siapakah memberdayakan pembangunan', 'siapa daya bangun']); // issues data.push(['Perekonomian', 'ekonomi']) data.push(['menahan', 'tahan']) // test stem multiple sentences // var multipleSentence1 = 'Cinta telah bertebaran.Keduanya saling mencintai.'; // var multipleSentence2 = "(Cinta telah bertebaran)\n\n\n\nKeduanya saling mencintai."; // data.push([multipleSentence1, 'cinta telah tebar dua saling cinta']); // data.push([multipleSentence2, 'cinta telah tebar dua saling cinta']); // failed on other method / algorithm but we should succeed data.push(['peranan', 'peran']) // data.push(['memberikan', 'beri']); data.push(['medannya', 'medan']) // TODO: // data.push(['sebagai', 'bagai']); // data.push(['bagian', 'bagian']); data.push(['berbadan', 'badan']) data.push(['abdullah', 'abdullah']) // adopted foreign suffixes // data.push(['budayawan', 'budaya']); // data.push(['karyawati', 'karya']); // data.push(['idealis', 'ideal']); // data.push(['idealisme', 'ideal']); data.push(['finalisasi', 'final']) // sastrawi additional rules data.push(['penstabilan', 'stabil']) data.push(['pentranskripsi', 'transkripsi']) data.push(['mentaati', 'taat']) data.push(['meniru-nirukan', 'tiru']) data.push(['menyepak-nyepak', 'sepak']) data.push(['melewati', 'lewat']) data.push(['menganga', 'nganga']) data.push(['kupukul', 'pukul']) data.push(['kauhajar', 'hajar']) data.push(['kuasa-Mu', 'kuasa']) data.push(['malaikat-malaikat-Nya', 'malaikat']) data.push(['nikmat-Ku', 'nikmat']) data.push(['allah-lah', 'allah']) describe('Indonesian stemmer', function () { data.forEach(function (testPair) { it('should correctly tokenize and stem ' + testPair[0] + ' to ' + testPair[1], function () { const output = Stemmer.tokenizeAndStem(testPair[0]) const outputConcat = output.join(' ') // console.log(output); expect(outputConcat).toEqual(testPair[1]) }) }) }) ================================================ FILE: spec/stemmer_ja_spec.ts ================================================ /* Copyright (c) 2012, Guillaume Marty Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { StemmerJa as stemmer } from 'lib/natural' const test = ['コピー', 'コーヒー', 'タクシー', 'パーティー', 'パーティ', 'ヘルプ・センター'] const testResult = ['コピー', 'コーヒ', 'タクシ', 'パーティ', 'パーティ', 'ヘルプ・センタ'] const text = '明後日パーティーに行く予定がある。図書館で資料をコピーしました。' describe('StemmerJa', function () { it('should stem words', function () { for (let i = 0; i < test.length; i++) { expect(stemmer.stem(test[i])).toBe(testResult[i]) } }) it('should not tokenize halfwidth katakana', function () { expect(stemmer.stem('タクシー')).toEqual('タクシー') }) it('should tokenize, stem and exclude stop words (default behavior)', function () { const tokens = [ '明後日', 'パーティ', '行く', '予定', // パーティー should be stemmed '図書館', '資料', 'コピー', 'まし'] expect(stemmer.tokenizeAndStem(text)).toEqual(tokens) expect(stemmer.tokenizeAndStem(text, false)).toEqual(tokens) }) it('should tokenize, stem and keep stop words', function () { expect(stemmer.tokenizeAndStem(text, true)).toEqual([ '明後日', 'パーティ', 'に', '行く', '予定', 'が', 'ある', '図書館', 'で', '資料', 'を', 'コピー', 'し', 'まし', 'た']) }) /* it('should attach new methods to String', function() { stemmer.attach(); expect('コーヒー'.stem()).toEqual('コーヒ'); expect('コピー'.stem()).toEqual('コピー'); expect('図書館で資料をコピーしました。'.tokenizeAndStem()).toEqual([ '図書館', '資料', 'コピー', 'まし']); expect('図書館で資料をコピーしました。'.tokenizeAndStem(false)).toEqual([ '図書館', '資料', 'コピー', 'まし']); expect('図書館で資料をコピーしました。'.tokenizeAndStem(true)).toEqual([ '図書館', 'で', '資料', 'を', 'コピー', 'し', 'まし', 'た']); }); */ }) ================================================ FILE: spec/stemmer_token_spec.ts ================================================ /* Copyright (c) 2014, Luís Rodrigues Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { Token } from 'lib/natural' describe('stemmer token', function () { it('should receive a string', function () { const string = 'test' const token = new Token(string) expect(token.string).toBe(string) }) it('should hold the original token string', function () { const string = 'test' const token = new Token(string) expect(token.original).toBe(string) }) it('should replace all instances of a string', function () { const string = 'tester' const token = new Token(string) token.replaceAll('e', 'a') expect(token.string).toBe('tastar') token.replaceAll('ar', 'er') expect(token.string).toBe('taster') token.replaceAll('r', '') expect(token.string).toBe('taste') }) it('should allow vowels to be set', function () { const vowels = 'aeiou' const vowelsArray = vowels.split('') const token = new Token('') token.usingVowels(vowels) expect(token.vowels).toBe(vowels) token.usingVowels(vowelsArray) expect(token.vowels).toBe(vowelsArray) }) it('should check for vowels', function () { const vowels = 'aeiou' const token = new Token('test') token.usingVowels(vowels) expect(token.hasVowelAtIndex(0)).toBe(false) expect(token.hasVowelAtIndex(1)).toBe(true) expect(token.hasVowelAtIndex(99)).toBe(false) token.usingVowels(vowels.split('')) expect(token.hasVowelAtIndex(0)).toBe(false) expect(token.hasVowelAtIndex(1)).toBe(true) expect(token.hasVowelAtIndex(99)).toBe(false) }) it('should find the next vowel', function () { const token = new Token('tester').usingVowels('aeiou') expect(token.nextVowelIndex(0)).toBe(1) expect(token.nextVowelIndex(1)).toBe(1) expect(token.nextVowelIndex(2)).toBe(4) expect(token.nextVowelIndex(5)).toBe(6) expect(token.nextVowelIndex(99)).toBe(6) expect(token.nextVowelIndex(-1)).toBe(6) }) it('should find the next consonant', function () { const token = new Token('testee').usingVowels('aeiou') expect(token.nextConsonantIndex(0)).toBe(0) expect(token.nextConsonantIndex(1)).toBe(2) expect(token.nextConsonantIndex(5)).toBe(6) expect(token.nextConsonantIndex(99)).toBe(6) expect(token.nextConsonantIndex(-1)).toBe(6) }) it('should mark regions', function () { const token = new Token('tester') token.markRegion('test', 1) expect(token.regions.test).toBe(1) }) it('should mark regions with a callback', function () { const token = new Token('tester') const context = { value: 99 } token.markRegion('test', 1, function (arg) { return arg }) expect(token.regions.test).toBe(1) token.markRegion('test', [1], function (arg) { return arg }) expect(token.regions.test).toBe(1) token.markRegion('test', [1, 1], function (a1, a2) { return a1 + a2 }) expect(token.regions.test).toBe(2) token.markRegion('test', null, function (this: Token) { return this.string.length }) expect(token.regions.test).toBe(6) token.markRegion('test', null, function (this: any) { return this.value }, context) expect(token.regions.test).toBe(99) }) it('should check for suffixes', function () { const token = new Token('tester') expect(token.hasSuffix('er')).toBeTruthy() expect(token.hasSuffix('st')).toBeFalsy() }) it('should check for suffixes within a region', function () { const token = new Token('tester').markRegion('region', 2) expect(token.hasSuffixInRegion('st', 'region')).toBe(false) expect(token.hasSuffixInRegion('ster', 'region')).toBe(true) expect(token.hasSuffixInRegion('ester', 'region')).toBe(false) }) it('should replace the suffix within a region', function () { const t1 = new Token('tester').markRegion('region', 4) const t2 = new Token('tester').markRegion('region', 0) t1.replaceSuffixInRegion('ter', '', 'region') expect(t1.string).toBe('tester') t1.replaceSuffixInRegion('er', '', 'region') expect(t1.string).toBe('test') t2.replaceSuffixInRegion('protester', '', 'region') expect(t2.string).toBe('tester') }) }) ================================================ FILE: spec/support/count_tests.js ================================================ const fs = require('fs') const path = require('path') function countTests (filePath) { const fileContent = fs.readFileSync(filePath, 'utf8') // const itRegex = /it\((.*?)\)/g // const describeRegex = /describe\((.*?)\)/g const expectRegex = /expect\((.*?)\)/g // const itCount = (fileContent.match(itRegex) || []).length // const describeCount = (fileContent.match(describeRegex) || []).length const expectCount = (fileContent.match(expectRegex) || []).length return expectCount } function countTestsInSpecFiles (specFilesPath, extension) { const specFiles = fs.readdirSync(specFilesPath) const testCounts = {} specFiles.forEach(file => { const filePath = path.join(specFilesPath, file) const stats = fs.statSync(filePath) if (stats.isFile() && path.extname(file) === extension) { const parsedPath = path.parse(file) const filenameWithoutExtension = parsedPath.name const testCount = countTests(filePath) testCounts[filenameWithoutExtension] = testCount } }) return testCounts } const specFilesPath = path.resolve(__dirname, '..') console.log(specFilesPath) const testCountsJs = countTestsInSpecFiles(specFilesPath, '.ts') console.log(testCountsJs) ================================================ FILE: spec/support/jasmine.json ================================================ { "spec_dir": "spec", "spec_files": [ "**/*[sS]pec.js" ], "helpers": [], "stopSpecOnExpectationFailure": false, "random": false, "forbidDuplicateNames": false } ================================================ FILE: spec/test_data/ConvertSnowballDict.js ================================================ /* Copyright (c) 2023, Hugo W.L. ter Doest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ // Converts a diff file from snowball.tartarus.org to a JSON file const fs = require('fs') const filenameIn = './snowball-de-diffs.txt' const dict = {} const filenameOut = './snowball_de.json' fs.readFile(filenameIn, 'utf8', function (err, data) { if (err) { console.log(err) } else { console.log('Raw data read from ' + filenameIn) const lines = data.split(/[\r\n]+/) lines.forEach(line => { const pair = line.split(/\s+/) dict[pair[0]] = pair[1] }) } fs.writeFile(filenameOut, JSON.stringify(dict, null, 2), null, function (err) { if (err) { console.log(err) } else { console.log('Dictionary written to ' + filenameOut) } }) }) ================================================ FILE: spec/test_data/NYT-20150205-picassos-granddaughter-plans-to-sell-art-worrying-the-market.json ================================================ { "sentences": [ "MARSEILLE, France", "Since Marina Picasso was a child, living on the edge of poverty and lingering at the gates of a French villa with her father to plead for an allowance from her grandfather, Pablo Picasso, she has struggled with the burden of that artist’s towering legacy.", "When she was in her 20s and inherited the 19th-century villa, La Californie, as well as a vast trove of Picasso’s art treasures, she turned the paintings to face the walls in resentment. ", "Through 15 years of therapy, she dissected bitter family memories of her grandfather’s perceived indifference and her brother’s suicide. ", "In her 2001 memoir, “Picasso: My Grandfather,” she bared her pain and anger at the Picasso clan.", "Now 64, Ms. Picasso acknowledges that she is expanding her rebellion by preparing to sell off many of his artworks to finance and broaden her philanthropy — aid for a pediatric hospital in Vietnam and projects in France and Switzerland benefiting the elderly and troubled teenagers.", "And her unconventional sales approach is reverberating through international art markets, worrying dealers and auctioneers accustomed to playing key — and lucrative — roles in the sale of renowned art. ", "In an interview, Ms. Picasso said she would sell works privately and would judge “one by one, based on need,” how many, and which, of the remaining Picasso works, of about 10,000 that she inherited, she would put up for sale.", "Ms. Picasso has been regularly selling her grandfather’s works for years to support herself and her charities.", "And since the death of her longtime dealer in 2008, she has tried various strategies in the market — auctioning two major paintings in 2013 and displaying a collection of nude drawings by her grandfather at Sotheby’s in Paris last year.", "But her decision to sell them on her own suggests a more aggressive effort to purge herself of her legacy. ", "And while other Picasso heirs have occasionally sold works, Marina Picasso is the only one who seems to be “accelerating” the sale of art objects, said Enrique Mallen, an art history professor at Sam Houston State University in Texas who created the Online Picasso Project to track the art.", "“It’s better for me to sell my works and preserve the money to redistribute to humanitarian causes,” Ms. Picasso said, speaking publicly about her new strategy for the first time while inspecting a hospital site in Marseille, where she is funding a psychiatric unit for teenagers in crisis. ", "“I have paintings, of course, that I can use to support these projects.”", "The news of her unusual strategy is spreading in select circles by word of mouth, generating rumors and misinformation — including a recent tabloid report that she planned to sell off her grandfather’s villa and seven major works. ", "That is leading to speculation that she could flood the market and depress prices. ", "“Instead of having a dealer show them, it’s been an open secret that there are works for sale and people have been asking other people if they would be interested,” said John Richardson, a Picasso historian and biographer in New York. ", "“I’ve been asked by odd people who tell me, ‘We are in on a great deal, and Marina is selling all her stuff.’ ”", "While bypassing dealers and auction houses in the sale of major works is not unusual, sellers going it alone can be at a disadvantage in trying to estimate the value of their own works and to vet the buyers and their source of funds. ", "At the same time, with some auction houses increasing their fees, it can be a smart move in the end for a seller eager to make more money.", "Ms. Picasso, who inherited about 300 paintings among those 10,000 Picasso artworks — ceramics, drawings, etchings and sculptures are among the others — said she had not decided on the number to be sold and had no plan to put the villa on the market. ", "But she knows which piece she will sell first: “La Famille,” a 1935 portrait of a family surrounded by an arid landscape.", "“It’s symbolic because I was born in a great family, but it was a family that was not a family,” Ms. Picasso said. ", "By the time of his death in 1973, Picasso had created some 50,000 artworks and left behind a tangled brood of four children and eight grandchildren, as well as wives and muses, who have had a long-running battle over his estate and his legacy. ", "Ms. Picasso is the daughter of Picasso’s son Paulo, and she has long kept her distance from the rest of the family. ", "For years she was guided in her sales by Jan Krugier, a Swiss art dealer who curated and sold off many of the best works in her collection until he died in 2008.", "She was disappointed, she said, by other sales routes, such as a 2013 Sotheby’s auction of two major paintings, including “Femme Assise en Robe Grise.” ", "The works drew $6.8 million, according to Sotheby’s in Paris, but Ms. Picasso said she had expected more because buyers knew the money was going to support her charities.", "Her timing is good: Last year, auction sales of Picassos were second only to those of Andy Warhol — $449 million last year in a $16.1 billion international market, according to Artnet, the New York-based art researcher.", "But while the sales will broaden Ms. Picasso’s philanthropy, they will also help her move on from the burden of her family history, she said.", "Ms. Picasso said that she had no photos of herself with her grandfather and had none of his works until she received her inheritance. ", "She recalled that he would fashion flowers out of paper for her, but she was never allowed to keep the trinkets.", "Her father, Paulo, was the son of Picasso and his first wife, Olga Khokhlova, a Russian ballerina. ", "Ms. Picasso said she still suffered from the memories of Paulo serving as her grandfather’s chauffeur, among other lowly roles, and begging for money.", "Her mother, Emiliénne, split from her father after a brief marriage and struggled with alcoholism. ", "She relied on handouts from her ex-husband to raise Marina and her older brother, Pablito. “I saw my father very little,” Ms. Picasso said. ", "“I didn’t have a grandfather.”", "Her alienation from her grandfather and his entourage intensified after her brother was barred from Picasso’s funeral in 1973 by the artist’s second wife, Jacqueline Roque. ", "A few days later her brother committed suicide by drinking bleach. ", "Contributions from friends paid for Pablito’s funeral, according to Ms. Picasso, who supported herself then by working in a hospice for autistic and mentally ill children.", "Picasso left no will when he died at 91, setting off a bitter struggle among his widow, children and grandchildren. ", "Unexpectedly, Marina Picasso was named an heir and inherited a fifth of the estate, including the villa.", "“People say I should appreciate my inheritance and I do,” Ms. Picasso said, “but it is an inheritance without love.”", "In the end, she learned from her past. “It was really difficult to carry this celebrated name and to have a difficult financial life,” Ms. Picasso said. ", "“I think because of it I developed my sense of humanity and my desire to help others.”", "Olivier Widmaier Picasso, a grandson descended from the artist’s mistress Marie-Thérèse Walter, who published his own biography of Picasso, holds a more benign view of his grandfather’s legacy. ", "As for Marina, with whom he tangled when he tried to brand Citroën cars with Picasso’s name, he said he sympathizes with her pain, but thinks it is misplaced.", "“We need to be honest,” he said. ", "“Pablo Picasso was not the cause of all of this. Her mother had exclusive custody. ", "Picasso didn’t want to give money to her mother because he worried she wouldn’t spend it on the children. ", "So he paid directly for their schooling.”", "He said he was surprised to learn about Ms. Picasso’s sales approach. ", "“All the heirs have always worked with major dealers, like Picasso did in his life,” he said. ", "“They know the market and the buyers and work to avoid any bad moves.”", "In the 1970s, when the estate was divided to pay off taxes, “La Famille” was considered one of the most valuable because its realistic style was so unusual, he said.", "Ms. Picasso has not publicly disclosed what she is hoping to earn.", "“The scale is enormous and it is obviously an important work,” said James Roundell, a dealer with Simon Dickinson Fine Art in London, who says it is worth “in the millions” of dollars.", "Ms. Picasso, who has five children, three of them adopted from Vietnam, said that selling more of Picasso’s art to expand her charities is a fitting use. ", "In just the last year, she has donated 1.5 million euros, roughly $1.7 million, to the Hospital Foundation of Paris and France. ", "Some of that went to the psychiatric emergency unit for teenagers, and Ms. Picasso also financed a project for elderly patients in long-term hospital care.", "“I live now in the present,” she said. ", "“The past rests in the past. ", "But I will never forget, never. ", "I respect my grandfather and his stature as an artist. ", "I was his grandchild and his heir, but never the grandchild of his heart.”", "Correction: February 4, 2015", "An earlier version of this article included an erroneous reference to Marina Picasso's marital status. ", "She has never married, thus it is not the case that she is divorced." ] } ================================================ FILE: spec/test_data/NYT-20150205-picassos-granddaughter-plans_expected_tag_results.json ================================================ { "results": [ [ [ "MARSEILLE", "NN" ], [ "France", "NNP" ] ], [ [ "Since", "IN" ], [ "Marina", "NNP" ], [ "Picasso", "NNP" ], [ "was", "VBD" ], [ "a", "DT" ], [ "child", "NN" ], [ "living", "VBG" ], [ "on", "IN" ], [ "the", "DT" ], [ "edge", "NN" ], [ "of", "IN" ], [ "poverty", "NN" ], [ "and", "CC" ], [ "lingering", "VBG" ], [ "at", "IN" ], [ "the", "DT" ], [ "gates", "NNS" ], [ "of", "IN" ], [ "a", "DT" ], [ "French", "JJ" ], [ "villa", "NN" ], [ "with", "IN" ], [ "her", "PRP$" ], [ "father", "NN" ], [ "to", "TO" ], [ "plead", "VB" ], [ "for", "IN" ], [ "an", "DT" ], [ "allowance", "NN" ], [ "from", "IN" ], [ "her", "PRP$" ], [ "grandfather", "NN" ], [ "Pablo", "NNP" ], [ "Picasso", "NNP" ], [ "she", "PRP" ], [ "has", "VBZ" ], [ "struggled", "VBD" ], [ "with", "IN" ], [ "the", "DT" ], [ "burden", "NN" ], [ "of", "IN" ], [ "that", "IN" ], [ "artist", "NN" ], [ "s", "PRP" ], [ "towering", "JJ" ], [ "legacy", "NN" ] ], [ [ "When", "WRB" ], [ "she", "PRP" ], [ "was", "VBD" ], [ "in", "IN" ], [ "her", "PRP$" ], [ "20s", "CD" ], [ "and", "CC" ], [ "inherited", "VBN" ], [ "the", "DT" ], [ "19th", "CD" ], [ "century", "NN" ], [ "villa", "NN" ], [ "La", "NNP" ], [ "Californie", "NN" ], [ "as", "IN" ], [ "well", "RB" ], [ "as", "IN" ], [ "a", "DT" ], [ "vast", "JJ" ], [ "trove", "NN" ], [ "of", "IN" ], [ "Picasso", "NNP" ], [ "s", "PRP" ], [ "art", "NN" ], [ "treasures", "NNS" ], [ "she", "PRP" ], [ "turned", "VBD" ], [ "the", "DT" ], [ "paintings", "NNS" ], [ "to", "TO" ], [ "face", "NN" ], [ "the", "DT" ], [ "walls", "NNS" ], [ "in", "IN" ], [ "resentment", "NN" ] ], [ [ "Through", "IN" ], [ "15", "CD" ], [ "years", "NNS" ], [ "of", "IN" ], [ "therapy", "NN" ], [ "she", "PRP" ], [ "dissected", "VBD" ], [ "bitter", "JJ" ], [ "family", "RB" ], [ "memories", "NNS" ], [ "of", "IN" ], [ "her", "PRP$" ], [ "grandfather", "NN" ], [ "s", "PRP" ], [ "perceived", "VBN" ], [ "indifference", "NN" ], [ "and", "CC" ], [ "her", "PRP$" ], [ "brother", "NN" ], [ "s", "PRP" ], [ "suicide", "NN" ] ], [ [ "In", "IN" ], [ "her", "PRP$" ], [ "2001", "CD" ], [ "memoir", "NN" ], [ "Picasso", "NNP" ], [ "My", "PRP$" ], [ "Grandfather", "NN" ], [ "she", "PRP" ], [ "bared", "VBD" ], [ "her", "PRP$" ], [ "pain", "NN" ], [ "and", "CC" ], [ "anger", "NN" ], [ "at", "IN" ], [ "the", "DT" ], [ "Picasso", "NNP" ], [ "clan", "NN" ] ], [ [ "Now", "RB" ], [ "64", "CD" ], [ "Ms", "NNP" ], [ "Picasso", "NNP" ], [ "acknowledges", "VBZ" ], [ "that", "IN" ], [ "she", "PRP" ], [ "is", "VBZ" ], [ "expanding", "VBG" ], [ "her", "PRP$" ], [ "rebellion", "NN" ], [ "by", "IN" ], [ "preparing", "VBG" ], [ "to", "TO" ], [ "sell", "VB" ], [ "off", "IN" ], [ "many", "JJ" ], [ "of", "IN" ], [ "his", "PRP$" ], [ "artworks", "NNS" ], [ "to", "TO" ], [ "finance", "NN" ], [ "and", "CC" ], [ "broaden", "VB" ], [ "her", "PRP$" ], [ "philanthropy", "NN" ], [ "aid", "NN" ], [ "for", "IN" ], [ "a", "DT" ], [ "pediatric", "JJ" ], [ "hospital", "JJ" ], [ "in", "IN" ], [ "Vietnam", "NNP" ], [ "and", "CC" ], [ "projects", "NNS" ], [ "in", "IN" ], [ "France", "NNP" ], [ "and", "CC" ], [ "Switzerland", "NNP" ], [ "benefiting", "VBG" ], [ "the", "DT" ], [ "elderly", "RB" ], [ "and", "CC" ], [ "troubled", "JJ" ], [ "teenagers", "NNS" ] ], [ [ "And", "CC" ], [ "her", "PRP$" ], [ "unconventional", "JJ" ], [ "sales", "NNS" ], [ "approach", "NN" ], [ "is", "VBZ" ], [ "reverberating", "VBG" ], [ "through", "IN" ], [ "international", "JJ" ], [ "art", "NN" ], [ "markets", "NNS" ], [ "worrying", "VBG" ], [ "dealers", "NNS" ], [ "and", "CC" ], [ "auctioneers", "NNS" ], [ "accustomed", "VBN" ], [ "to", "TO" ], [ "playing", "VBG" ], [ "key", "JJ" ], [ "and", "CC" ], [ "lucrative", "JJ" ], [ "roles", "NNS" ], [ "in", "IN" ], [ "the", "DT" ], [ "sale", "NN" ], [ "of", "IN" ], [ "renowned", "JJ" ], [ "art", "NN" ] ], [ [ "In", "IN" ], [ "an", "DT" ], [ "interview", "NN" ], [ "Ms", "NNP" ], [ "Picasso", "NNP" ], [ "said", "VBD" ], [ "she", "PRP" ], [ "would", "MD" ], [ "sell", "VB" ], [ "works", "NNS" ], [ "privately", "RB" ], [ "and", "CC" ], [ "would", "MD" ], [ "judge", "VB" ], [ "one", "NN" ], [ "by", "IN" ], [ "one", "NN" ], [ "based", "VBN" ], [ "on", "IN" ], [ "need", "VBN" ], [ "how", "WRB" ], [ "many", "JJ" ], [ "and", "CC" ], [ "which", "WDT" ], [ "of", "IN" ], [ "the", "DT" ], [ "remaining", "VBG" ], [ "Picasso", "NNP" ], [ "works", "NNS" ], [ "of", "IN" ], [ "about", "IN" ], [ "10", "CD" ], [ "000", "CD" ], [ "that", "IN" ], [ "she", "PRP" ], [ "inherited", "VBN" ], [ "she", "PRP" ], [ "would", "MD" ], [ "put", "VB" ], [ "up", "IN" ], [ "for", "IN" ], [ "sale", "NN" ] ], [ [ "Ms", "NNP" ], [ "Picasso", "NNP" ], [ "has", "VBZ" ], [ "been", "VBN" ], [ "regularly", "RB" ], [ "selling", "VBG" ], [ "her", "PRP$" ], [ "grandfather", "NN" ], [ "s", "PRP" ], [ "works", "NNS" ], [ "for", "IN" ], [ "years", "NNS" ], [ "to", "TO" ], [ "support", "NN" ], [ "herself", "PRP" ], [ "and", "CC" ], [ "her", "PRP$" ], [ "charities", "NNS" ] ], [ [ "And", "CC" ], [ "since", "IN" ], [ "the", "DT" ], [ "death", "NN" ], [ "of", "IN" ], [ "her", "PRP$" ], [ "longtime", "JJ" ], [ "dealer", "NN" ], [ "in", "IN" ], [ "2008", "CD" ], [ "she", "PRP" ], [ "has", "VBZ" ], [ "tried", "VBD" ], [ "various", "JJ" ], [ "strategies", "NNS" ], [ "in", "IN" ], [ "the", "DT" ], [ "market", "NN" ], [ "auctioning", "VBG" ], [ "two", "NN" ], [ "major", "JJ" ], [ "paintings", "NNS" ], [ "in", "IN" ], [ "2013", "CD" ], [ "and", "CC" ], [ "displaying", "VBG" ], [ "a", "DT" ], [ "collection", "NN" ], [ "of", "IN" ], [ "nude", "JJ" ], [ "drawings", "NNS" ], [ "by", "IN" ], [ "her", "PRP$" ], [ "grandfather", "NN" ], [ "at", "IN" ], [ "Sotheby", "NNP" ], [ "s", "PRP" ], [ "in", "IN" ], [ "Paris", "NNP" ], [ "last", "JJ" ], [ "year", "NN" ] ], [ [ "But", "CC" ], [ "her", "PRP$" ], [ "decision", "NN" ], [ "to", "TO" ], [ "sell", "VB" ], [ "them", "PRP" ], [ "on", "IN" ], [ "her", "PRP$" ], [ "own", "JJ" ], [ "suggests", "VBZ" ], [ "a", "DT" ], [ "more", "JJR" ], [ "aggressive", "JJ" ], [ "effort", "NN" ], [ "to", "TO" ], [ "purge", "NN" ], [ "herself", "PRP" ], [ "of", "IN" ], [ "her", "PRP$" ], [ "legacy", "NN" ] ], [ [ "And", "CC" ], [ "while", "IN" ], [ "other", "JJ" ], [ "Picasso", "NNP" ], [ "heirs", "NNS" ], [ "have", "VBP" ], [ "occasionally", "RB" ], [ "sold", "VBN" ], [ "works", "NNS" ], [ "Marina", "NNP" ], [ "Picasso", "NNP" ], [ "is", "VBZ" ], [ "the", "DT" ], [ "only", "RB" ], [ "one", "NN" ], [ "who", "WP" ], [ "seems", "VBZ" ], [ "to", "TO" ], [ "be", "VB" ], [ "accelerating", "VBG" ], [ "the", "DT" ], [ "sale", "NN" ], [ "of", "IN" ], [ "art", "NN" ], [ "objects", "NNS" ], [ "said", "VBD" ], [ "Enrique", "NNP" ], [ "Mallen", "NN" ], [ "an", "DT" ], [ "art", "NN" ], [ "history", "NN" ], [ "professor", "NN" ], [ "at", "IN" ], [ "Sam", "NNP" ], [ "Houston", "NNP" ], [ "State", "NNP" ], [ "University", "NNP" ], [ "in", "IN" ], [ "Texas", "NNP" ], [ "who", "WP" ], [ "created", "VBN" ], [ "the", "DT" ], [ "Online", "NNP" ], [ "Picasso", "NNP" ], [ "Project", "NNP" ], [ "to", "TO" ], [ "track", "NN" ], [ "the", "DT" ], [ "art", "NN" ] ], [ [ "It", "PRP" ], [ "s", "PRP" ], [ "better", "JJR" ], [ "for", "IN" ], [ "me", "PRP" ], [ "to", "TO" ], [ "sell", "VB" ], [ "my", "PRP$" ], [ "works", "NNS" ], [ "and", "CC" ], [ "preserve", "VB" ], [ "the", "DT" ], [ "money", "NN" ], [ "to", "TO" ], [ "redistribute", "VB" ], [ "to", "TO" ], [ "humanitarian", "JJ" ], [ "causes", "NNS" ], [ "Ms", "NNP" ], [ "Picasso", "NNP" ], [ "said", "VBD" ], [ "speaking", "VBG" ], [ "publicly", "RB" ], [ "about", "IN" ], [ "her", "PRP$" ], [ "new", "JJ" ], [ "strategy", "NN" ], [ "for", "IN" ], [ "the", "DT" ], [ "first", "NN" ], [ "time", "NN" ], [ "while", "IN" ], [ "inspecting", "VBG" ], [ "a", "DT" ], [ "hospital", "JJ" ], [ "site", "NN" ], [ "in", "IN" ], [ "Marseille", "NN" ], [ "where", "WRB" ], [ "she", "PRP" ], [ "is", "VBZ" ], [ "funding", "VBG" ], [ "a", "DT" ], [ "psychiatric", "JJ" ], [ "unit", "NN" ], [ "for", "IN" ], [ "teenagers", "NNS" ], [ "in", "IN" ], [ "crisis", "NN" ] ], [ [ "I", "NN" ], [ "have", "VBP" ], [ "paintings", "NNS" ], [ "of", "IN" ], [ "course", "NN" ], [ "that", "IN" ], [ "I", "NN" ], [ "can", "MD" ], [ "use", "NN" ], [ "to", "TO" ], [ "support", "NN" ], [ "these", "DT" ], [ "projects", "NNS" ] ], [ [ "The", "DT" ], [ "news", "NNS" ], [ "of", "IN" ], [ "her", "PRP$" ], [ "unusual", "JJ" ], [ "strategy", "NN" ], [ "is", "VBZ" ], [ "spreading", "VBG" ], [ "in", "IN" ], [ "select", "VB" ], [ "circles", "NNS" ], [ "by", "IN" ], [ "word", "NN" ], [ "of", "IN" ], [ "mouth", "NN" ], [ "generating", "VBG" ], [ "rumors", "NNS" ], [ "and", "CC" ], [ "misinformation", "NN" ], [ "including", "VBG" ], [ "a", "DT" ], [ "recent", "JJ" ], [ "tabloid", "NN" ], [ "report", "NN" ], [ "that", "IN" ], [ "she", "PRP" ], [ "planned", "VBN" ], [ "to", "TO" ], [ "sell", "VB" ], [ "off", "IN" ], [ "her", "PRP$" ], [ "grandfather", "NN" ], [ "s", "PRP" ], [ "villa", "NN" ], [ "and", "CC" ], [ "seven", "NN" ], [ "major", "JJ" ], [ "works", "NNS" ] ], [ [ "That", "DT" ], [ "is", "VBZ" ], [ "leading", "VBG" ], [ "to", "TO" ], [ "speculation", "NN" ], [ "that", "IN" ], [ "she", "PRP" ], [ "could", "MD" ], [ "flood", "NN" ], [ "the", "DT" ], [ "market", "NN" ], [ "and", "CC" ], [ "depress", "VB" ], [ "prices", "NNS" ] ], [ [ "Instead", "RB" ], [ "of", "IN" ], [ "having", "VBG" ], [ "a", "DT" ], [ "dealer", "NN" ], [ "show", "NN" ], [ "them", "PRP" ], [ "it", "PRP" ], [ "s", "PRP" ], [ "been", "VBN" ], [ "an", "DT" ], [ "open", "JJ" ], [ "secret", "JJ" ], [ "that", "IN" ], [ "there", "EX" ], [ "are", "VBP" ], [ "works", "NNS" ], [ "for", "IN" ], [ "sale", "NN" ], [ "and", "CC" ], [ "people", "NNS" ], [ "have", "VBP" ], [ "been", "VBN" ], [ "asking", "VBG" ], [ "other", "JJ" ], [ "people", "NNS" ], [ "if", "IN" ], [ "they", "PRP" ], [ "would", "MD" ], [ "be", "VB" ], [ "interested", "JJ" ], [ "said", "VBD" ], [ "John", "NNP" ], [ "Richardson", "NNP" ], [ "a", "DT" ], [ "Picasso", "NNP" ], [ "historian", "NN" ], [ "and", "CC" ], [ "biographer", "NN" ], [ "in", "IN" ], [ "New", "NNP" ], [ "York", "NNP" ] ], [ [ "I", "NN" ], [ "ve", "NN" ], [ "been", "VBN" ], [ "asked", "VBD" ], [ "by", "IN" ], [ "odd", "JJ" ], [ "people", "NNS" ], [ "who", "WP" ], [ "tell", "VB" ], [ "me", "PRP" ], [ "We", "PRP" ], [ "are", "VBP" ], [ "in", "IN" ], [ "on", "IN" ], [ "a", "DT" ], [ "great", "JJ" ], [ "deal", "JJ" ], [ "and", "CC" ], [ "Marina", "NNP" ], [ "is", "VBZ" ], [ "selling", "VBG" ], [ "all", "DT" ], [ "her", "PRP$" ], [ "stuff", "NN" ] ], [ [ "While", "IN" ], [ "bypassing", "VBG" ], [ "dealers", "NNS" ], [ "and", "CC" ], [ "auction", "NN" ], [ "houses", "NNS" ], [ "in", "IN" ], [ "the", "DT" ], [ "sale", "NN" ], [ "of", "IN" ], [ "major", "JJ" ], [ "works", "NNS" ], [ "is", "VBZ" ], [ "not", "RB" ], [ "unusual", "JJ" ], [ "sellers", "NNS" ], [ "going", "VBG" ], [ "it", "PRP" ], [ "alone", "RB" ], [ "can", "MD" ], [ "be", "VB" ], [ "at", "IN" ], [ "a", "DT" ], [ "disadvantage", "NN" ], [ "in", "IN" ], [ "trying", "VBG" ], [ "to", "TO" ], [ "estimate", "NN" ], [ "the", "DT" ], [ "value", "NN" ], [ "of", "IN" ], [ "their", "PRP$" ], [ "own", "JJ" ], [ "works", "NNS" ], [ "and", "CC" ], [ "to", "TO" ], [ "vet", "NN" ], [ "the", "DT" ], [ "buyers", "NNS" ], [ "and", "CC" ], [ "their", "PRP$" ], [ "source", "NN" ], [ "of", "IN" ], [ "funds", "NNS" ] ], [ [ "At", "IN" ], [ "the", "DT" ], [ "same", "JJ" ], [ "time", "NN" ], [ "with", "IN" ], [ "some", "DT" ], [ "auction", "NN" ], [ "houses", "NNS" ], [ "increasing", "VBG" ], [ "their", "PRP$" ], [ "fees", "NNS" ], [ "it", "PRP" ], [ "can", "MD" ], [ "be", "VB" ], [ "a", "DT" ], [ "smart", "JJ" ], [ "move", "NN" ], [ "in", "IN" ], [ "the", "DT" ], [ "end", "NN" ], [ "for", "IN" ], [ "a", "DT" ], [ "seller", "NN" ], [ "eager", "JJ" ], [ "to", "TO" ], [ "make", "VB" ], [ "more", "JJR" ], [ "money", "NN" ] ], [ [ "Ms", "NNP" ], [ "Picasso", "NNP" ], [ "who", "WP" ], [ "inherited", "VBN" ], [ "about", "IN" ], [ "300", "CD" ], [ "paintings", "NNS" ], [ "among", "IN" ], [ "those", "DT" ], [ "10", "CD" ], [ "000", "CD" ], [ "Picasso", "NNP" ], [ "artworks", "NNS" ], [ "ceramics", "NNS" ], [ "drawings", "NNS" ], [ "etchings", "NNS" ], [ "and", "CC" ], [ "sculptures", "NNS" ], [ "are", "VBP" ], [ "among", "IN" ], [ "the", "DT" ], [ "others", "NNS" ], [ "said", "VBD" ], [ "she", "PRP" ], [ "had", "VBD" ], [ "not", "RB" ], [ "decided", "VBD" ], [ "on", "IN" ], [ "the", "DT" ], [ "number", "NN" ], [ "to", "TO" ], [ "be", "VB" ], [ "sold", "VBN" ], [ "and", "CC" ], [ "had", "VBD" ], [ "no", "DT" ], [ "plan", "NN" ], [ "to", "TO" ], [ "put", "VB" ], [ "the", "DT" ], [ "villa", "NN" ], [ "on", "IN" ], [ "the", "DT" ], [ "market", "NN" ] ], [ [ "But", "CC" ], [ "she", "PRP" ], [ "knows", "VBZ" ], [ "which", "WDT" ], [ "piece", "NN" ], [ "she", "PRP" ], [ "will", "MD" ], [ "sell", "VB" ], [ "first", "NN" ], [ "La", "NNP" ], [ "Famille", "FW" ], [ "a", "DT" ], [ "1935", "CD" ], [ "portrait", "NN" ], [ "of", "IN" ], [ "a", "DT" ], [ "family", "RB" ], [ "surrounded", "VBN" ], [ "by", "IN" ], [ "an", "DT" ], [ "arid", "JJ" ], [ "landscape", "NN" ] ], [ [ "It", "PRP" ], [ "s", "PRP" ], [ "symbolic", "JJ" ], [ "because", "IN" ], [ "I", "NN" ], [ "was", "VBD" ], [ "born", "VBN" ], [ "in", "IN" ], [ "a", "DT" ], [ "great", "JJ" ], [ "family", "RB" ], [ "but", "CC" ], [ "it", "PRP" ], [ "was", "VBD" ], [ "a", "DT" ], [ "family", "RB" ], [ "that", "IN" ], [ "was", "VBD" ], [ "not", "RB" ], [ "a", "DT" ], [ "family", "RB" ], [ "Ms", "NNP" ], [ "Picasso", "NNP" ], [ "said", "VBD" ] ], [ [ "By", "IN" ], [ "the", "DT" ], [ "time", "NN" ], [ "of", "IN" ], [ "his", "PRP$" ], [ "death", "NN" ], [ "in", "IN" ], [ "1973", "CD" ], [ "Picasso", "NNP" ], [ "had", "VBD" ], [ "created", "VBN" ], [ "some", "DT" ], [ "50", "CD" ], [ "000", "CD" ], [ "artworks", "NNS" ], [ "and", "CC" ], [ "left", "VBN" ], [ "behind", "IN" ], [ "a", "DT" ], [ "tangled", "JJ" ], [ "brood", "NN" ], [ "of", "IN" ], [ "four", "NN" ], [ "children", "NNS" ], [ "and", "CC" ], [ "eight", "NN" ], [ "grandchildren", "NNS" ], [ "as", "IN" ], [ "well", "RB" ], [ "as", "IN" ], [ "wives", "NNS" ], [ "and", "CC" ], [ "muses", "VBZ" ], [ "who", "WP" ], [ "have", "VBP" ], [ "had", "VBD" ], [ "a", "DT" ], [ "long", "JJ" ], [ "running", "VBG" ], [ "battle", "NN" ], [ "over", "IN" ], [ "his", "PRP$" ], [ "estate", "NN" ], [ "and", "CC" ], [ "his", "PRP$" ], [ "legacy", "NN" ] ], [ [ "Ms", "NNP" ], [ "Picasso", "NNP" ], [ "is", "VBZ" ], [ "the", "DT" ], [ "daughter", "NN" ], [ "of", "IN" ], [ "Picasso", "NNP" ], [ "s", "PRP" ], [ "son", "NN" ], [ "Paulo", "NNP" ], [ "and", "CC" ], [ "she", "PRP" ], [ "has", "VBZ" ], [ "long", "JJ" ], [ "kept", "VBD" ], [ "her", "PRP$" ], [ "distance", "NN" ], [ "from", "IN" ], [ "the", "DT" ], [ "rest", "NN" ], [ "of", "IN" ], [ "the", "DT" ], [ "family", "RB" ] ], [ [ "For", "IN" ], [ "years", "NNS" ], [ "she", "PRP" ], [ "was", "VBD" ], [ "guided", "VBN" ], [ "in", "IN" ], [ "her", "PRP$" ], [ "sales", "NNS" ], [ "by", "IN" ], [ "Jan", "NNP" ], [ "Krugier", "NN" ], [ "a", "DT" ], [ "Swiss", "JJ" ], [ "art", "NN" ], [ "dealer", "NN" ], [ "who", "WP" ], [ "curated", "VBN" ], [ "and", "CC" ], [ "sold", "VBN" ], [ "off", "IN" ], [ "many", "JJ" ], [ "of", "IN" ], [ "the", "DT" ], [ "best", "JJS" ], [ "works", "NNS" ], [ "in", "IN" ], [ "her", "PRP$" ], [ "collection", "NN" ], [ "until", "IN" ], [ "he", "PRP" ], [ "died", "VBD" ], [ "in", "IN" ], [ "2008", "CD" ] ], [ [ "She", "PRP" ], [ "was", "VBD" ], [ "disappointed", "VBN" ], [ "she", "PRP" ], [ "said", "VBD" ], [ "by", "IN" ], [ "other", "JJ" ], [ "sales", "NNS" ], [ "routes", "NNS" ], [ "such", "JJ" ], [ "as", "IN" ], [ "a", "DT" ], [ "2013", "CD" ], [ "Sotheby", "NNP" ], [ "s", "PRP" ], [ "auction", "NN" ], [ "of", "IN" ], [ "two", "NN" ], [ "major", "JJ" ], [ "paintings", "NNS" ], [ "including", "VBG" ], [ "Femme", "FW" ], [ "Assise", "NN" ], [ "en", "IN" ], [ "Robe", "NN" ], [ "Grise", "NN" ] ], [ [ "The", "DT" ], [ "works", "NNS" ], [ "drew", "VBD" ], [ "6", "CD" ], [ "8", "CD" ], [ "million", "NN" ], [ "according", "VBG" ], [ "to", "TO" ], [ "Sotheby", "NNP" ], [ "s", "PRP" ], [ "in", "IN" ], [ "Paris", "NNP" ], [ "but", "CC" ], [ "Ms", "NNP" ], [ "Picasso", "NNP" ], [ "said", "VBD" ], [ "she", "PRP" ], [ "had", "VBD" ], [ "expected", "VBN" ], [ "more", "JJR" ], [ "because", "IN" ], [ "buyers", "NNS" ], [ "knew", "VBD" ], [ "the", "DT" ], [ "money", "NN" ], [ "was", "VBD" ], [ "going", "VBG" ], [ "to", "TO" ], [ "support", "NN" ], [ "her", "PRP$" ], [ "charities", "NNS" ] ], [ [ "Her", "PRP$" ], [ "timing", "VBG" ], [ "is", "VBZ" ], [ "good", "JJ" ], [ "Last", "JJ" ], [ "year", "NN" ], [ "auction", "NN" ], [ "sales", "NNS" ], [ "of", "IN" ], [ "Picassos", "NNPS" ], [ "were", "VBD" ], [ "second", "NN" ], [ "only", "RB" ], [ "to", "TO" ], [ "those", "DT" ], [ "of", "IN" ], [ "Andy", "NNP" ], [ "Warhol", "NNP" ], [ "449", "CD" ], [ "million", "NN" ], [ "last", "JJ" ], [ "year", "NN" ], [ "in", "IN" ], [ "a", "DT" ], [ "16", "CD" ], [ "1", "CD" ], [ "billion", "NN" ], [ "international", "JJ" ], [ "market", "NN" ], [ "according", "VBG" ], [ "to", "TO" ], [ "Artnet", "NN" ], [ "the", "DT" ], [ "New", "NNP" ], [ "York", "NNP" ], [ "based", "VBN" ], [ "art", "NN" ], [ "researcher", "NN" ] ], [ [ "But", "CC" ], [ "while", "IN" ], [ "the", "DT" ], [ "sales", "NNS" ], [ "will", "MD" ], [ "broaden", "VB" ], [ "Ms", "NNP" ], [ "Picasso", "NNP" ], [ "s", "PRP" ], [ "philanthropy", "NN" ], [ "they", "PRP" ], [ "will", "MD" ], [ "also", "RB" ], [ "help", "VB" ], [ "her", "PRP$" ], [ "move", "NN" ], [ "on", "IN" ], [ "from", "IN" ], [ "the", "DT" ], [ "burden", "NN" ], [ "of", "IN" ], [ "her", "PRP$" ], [ "family", "RB" ], [ "history", "NN" ], [ "she", "PRP" ], [ "said", "VBD" ] ], [ [ "Ms", "NNP" ], [ "Picasso", "NNP" ], [ "said", "VBD" ], [ "that", "IN" ], [ "she", "PRP" ], [ "had", "VBD" ], [ "no", "DT" ], [ "photos", "NNS" ], [ "of", "IN" ], [ "herself", "PRP" ], [ "with", "IN" ], [ "her", "PRP$" ], [ "grandfather", "NN" ], [ "and", "CC" ], [ "had", "VBD" ], [ "none", "NN" ], [ "of", "IN" ], [ "his", "PRP$" ], [ "works", "NNS" ], [ "until", "IN" ], [ "she", "PRP" ], [ "received", "VBD" ], [ "her", "PRP$" ], [ "inheritance", "NN" ] ], [ [ "She", "PRP" ], [ "recalled", "VBD" ], [ "that", "IN" ], [ "he", "PRP" ], [ "would", "MD" ], [ "fashion", "VB" ], [ "flowers", "NNS" ], [ "out", "IN" ], [ "of", "IN" ], [ "paper", "NN" ], [ "for", "IN" ], [ "her", "PRP$" ], [ "but", "CC" ], [ "she", "PRP" ], [ "was", "VBD" ], [ "never", "RB" ], [ "allowed", "VBN" ], [ "to", "TO" ], [ "keep", "VB" ], [ "the", "DT" ], [ "trinkets", "NNS" ] ], [ [ "Her", "PRP$" ], [ "father", "NN" ], [ "Paulo", "NNP" ], [ "was", "VBD" ], [ "the", "DT" ], [ "son", "NN" ], [ "of", "IN" ], [ "Picasso", "NNP" ], [ "and", "CC" ], [ "his", "PRP$" ], [ "first", "NN" ], [ "wife", "NN" ], [ "Olga", "NNP" ], [ "Khokhlova", "NN" ], [ "a", "DT" ], [ "Russian", "NNP" ], [ "ballerina", "NN" ] ], [ [ "Ms", "NNP" ], [ "Picasso", "NNP" ], [ "said", "VBD" ], [ "she", "PRP" ], [ "still", "RB" ], [ "suffered", "VBD" ], [ "from", "IN" ], [ "the", "DT" ], [ "memories", "NNS" ], [ "of", "IN" ], [ "Paulo", "NNP" ], [ "serving", "VBG" ], [ "as", "IN" ], [ "her", "PRP$" ], [ "grandfather", "NN" ], [ "s", "PRP" ], [ "chauffeur", "NN" ], [ "among", "IN" ], [ "other", "JJ" ], [ "lowly", "RB" ], [ "roles", "NNS" ], [ "and", "CC" ], [ "begging", "VBG" ], [ "for", "IN" ], [ "money", "NN" ] ], [ [ "Her", "PRP$" ], [ "mother", "NN" ], [ "Emili", "NN" ], [ "nne", "NN" ], [ "split", "NN" ], [ "from", "IN" ], [ "her", "PRP$" ], [ "father", "NN" ], [ "after", "IN" ], [ "a", "DT" ], [ "brief", "JJ" ], [ "marriage", "NN" ], [ "and", "CC" ], [ "struggled", "VBD" ], [ "with", "IN" ], [ "alcoholism", "NN" ] ], [ [ "She", "PRP" ], [ "relied", "VBN" ], [ "on", "IN" ], [ "handouts", "NNS" ], [ "from", "IN" ], [ "her", "PRP$" ], [ "ex", "FW" ], [ "husband", "NN" ], [ "to", "TO" ], [ "raise", "VB" ], [ "Marina", "NNP" ], [ "and", "CC" ], [ "her", "PRP$" ], [ "older", "JJR" ], [ "brother", "NN" ], [ "Pablito", "NN" ], [ "I", "NN" ], [ "saw", "VBD" ], [ "my", "PRP$" ], [ "father", "NN" ], [ "very", "RB" ], [ "little", "JJ" ], [ "Ms", "NNP" ], [ "Picasso", "NNP" ], [ "said", "VBD" ] ], [ [ "I", "NN" ], [ "didn", "VBD" ], [ "t", "NN" ], [ "have", "VBP" ], [ "a", "DT" ], [ "grandfather", "NN" ] ], [ [ "Her", "PRP$" ], [ "alienation", "NN" ], [ "from", "IN" ], [ "her", "PRP$" ], [ "grandfather", "NN" ], [ "and", "CC" ], [ "his", "PRP$" ], [ "entourage", "NN" ], [ "intensified", "VBN" ], [ "after", "IN" ], [ "her", "PRP$" ], [ "brother", "NN" ], [ "was", "VBD" ], [ "barred", "VBN" ], [ "from", "IN" ], [ "Picasso", "NNP" ], [ "s", "PRP" ], [ "funeral", "JJ" ], [ "in", "IN" ], [ "1973", "CD" ], [ "by", "IN" ], [ "the", "DT" ], [ "artist", "NN" ], [ "s", "PRP" ], [ "second", "NN" ], [ "wife", "NN" ], [ "Jacqueline", "NNP" ], [ "Roque", "NN" ] ], [ [ "A", "DT" ], [ "few", "JJ" ], [ "days", "NNS" ], [ "later", "RB" ], [ "her", "PRP$" ], [ "brother", "NN" ], [ "committed", "VBN" ], [ "suicide", "NN" ], [ "by", "IN" ], [ "drinking", "VBG" ], [ "bleach", "NN" ] ], [ [ "Contributions", "NNS" ], [ "from", "IN" ], [ "friends", "NNS" ], [ "paid", "VBN" ], [ "for", "IN" ], [ "Pablito", "NN" ], [ "s", "PRP" ], [ "funeral", "JJ" ], [ "according", "VBG" ], [ "to", "TO" ], [ "Ms", "NNP" ], [ "Picasso", "NNP" ], [ "who", "WP" ], [ "supported", "VBN" ], [ "herself", "PRP" ], [ "then", "RB" ], [ "by", "IN" ], [ "working", "VBG" ], [ "in", "IN" ], [ "a", "DT" ], [ "hospice", "NN" ], [ "for", "IN" ], [ "autistic", "JJ" ], [ "and", "CC" ], [ "mentally", "RB" ], [ "ill", "JJ" ], [ "children", "NNS" ] ], [ [ "Picasso", "NNP" ], [ "left", "VBN" ], [ "no", "DT" ], [ "will", "MD" ], [ "when", "WRB" ], [ "he", "PRP" ], [ "died", "VBD" ], [ "at", "IN" ], [ "91", "CD" ], [ "setting", "VBG" ], [ "off", "IN" ], [ "a", "DT" ], [ "bitter", "JJ" ], [ "struggle", "NN" ], [ "among", "IN" ], [ "his", "PRP$" ], [ "widow", "NN" ], [ "children", "NNS" ], [ "and", "CC" ], [ "grandchildren", "NNS" ] ], [ [ "Unexpectedly", "RB" ], [ "Marina", "NNP" ], [ "Picasso", "NNP" ], [ "was", "VBD" ], [ "named", "VBN" ], [ "an", "DT" ], [ "heir", "NN" ], [ "and", "CC" ], [ "inherited", "VBN" ], [ "a", "DT" ], [ "fifth", "JJ" ], [ "of", "IN" ], [ "the", "DT" ], [ "estate", "NN" ], [ "including", "VBG" ], [ "the", "DT" ], [ "villa", "NN" ] ], [ [ "People", "NNS" ], [ "say", "VBP" ], [ "I", "NN" ], [ "should", "MD" ], [ "appreciate", "VB" ], [ "my", "PRP$" ], [ "inheritance", "NN" ], [ "and", "CC" ], [ "I", "NN" ], [ "do", "VBP" ], [ "Ms", "NNP" ], [ "Picasso", "NNP" ], [ "said", "VBD" ], [ "but", "CC" ], [ "it", "PRP" ], [ "is", "VBZ" ], [ "an", "DT" ], [ "inheritance", "NN" ], [ "without", "IN" ], [ "love", "NN" ] ], [ [ "In", "IN" ], [ "the", "DT" ], [ "end", "NN" ], [ "she", "PRP" ], [ "learned", "VBD" ], [ "from", "IN" ], [ "her", "PRP$" ], [ "past", "JJ" ], [ "It", "PRP" ], [ "was", "VBD" ], [ "really", "RB" ], [ "difficult", "JJ" ], [ "to", "TO" ], [ "carry", "VB" ], [ "this", "DT" ], [ "celebrated", "VBN" ], [ "name", "NN" ], [ "and", "CC" ], [ "to", "TO" ], [ "have", "VBP" ], [ "a", "DT" ], [ "difficult", "JJ" ], [ "financial", "JJ" ], [ "life", "NN" ], [ "Ms", "NNP" ], [ "Picasso", "NNP" ], [ "said", "VBD" ] ], [ [ "I", "NN" ], [ "think", "VBP" ], [ "because", "IN" ], [ "of", "IN" ], [ "it", "PRP" ], [ "I", "NN" ], [ "developed", "VBN" ], [ "my", "PRP$" ], [ "sense", "NN" ], [ "of", "IN" ], [ "humanity", "NN" ], [ "and", "CC" ], [ "my", "PRP$" ], [ "desire", "NN" ], [ "to", "TO" ], [ "help", "VB" ], [ "others", "NNS" ] ], [ [ "Olivier", "NNP" ], [ "Widmaier", "NN" ], [ "Picasso", "NNP" ], [ "a", "DT" ], [ "grandson", "NN" ], [ "descended", "VBD" ], [ "from", "IN" ], [ "the", "DT" ], [ "artist", "NN" ], [ "s", "PRP" ], [ "mistress", "NN" ], [ "Marie", "NNP" ], [ "Th", "DT" ], [ "r", "NN" ], [ "se", "FW" ], [ "Walter", "NNP" ], [ "who", "WP" ], [ "published", "VBN" ], [ "his", "PRP$" ], [ "own", "JJ" ], [ "biography", "NN" ], [ "of", "IN" ], [ "Picasso", "NNP" ], [ "holds", "VBZ" ], [ "a", "DT" ], [ "more", "JJR" ], [ "benign", "JJ" ], [ "view", "NN" ], [ "of", "IN" ], [ "his", "PRP$" ], [ "grandfather", "NN" ], [ "s", "PRP" ], [ "legacy", "NN" ] ], [ [ "As", "IN" ], [ "for", "IN" ], [ "Marina", "NNP" ], [ "with", "IN" ], [ "whom", "WP" ], [ "he", "PRP" ], [ "tangled", "JJ" ], [ "when", "WRB" ], [ "he", "PRP" ], [ "tried", "VBD" ], [ "to", "TO" ], [ "brand", "NN" ], [ "Citro", "NN" ], [ "n", "NN" ], [ "cars", "NNS" ], [ "with", "IN" ], [ "Picasso", "NNP" ], [ "s", "PRP" ], [ "name", "NN" ], [ "he", "PRP" ], [ "said", "VBD" ], [ "he", "PRP" ], [ "sympathizes", "NN" ], [ "with", "IN" ], [ "her", "PRP$" ], [ "pain", "NN" ], [ "but", "CC" ], [ "thinks", "VBZ" ], [ "it", "PRP" ], [ "is", "VBZ" ], [ "misplaced", "VBN" ] ], [ [ "We", "PRP" ], [ "need", "VBN" ], [ "to", "TO" ], [ "be", "VB" ], [ "honest", "JJ" ], [ "he", "PRP" ], [ "said", "VBD" ] ], [ [ "Pablo", "NNP" ], [ "Picasso", "NNP" ], [ "was", "VBD" ], [ "not", "RB" ], [ "the", "DT" ], [ "cause", "NN" ], [ "of", "IN" ], [ "all", "DT" ], [ "of", "IN" ], [ "this", "DT" ], [ "Her", "PRP$" ], [ "mother", "NN" ], [ "had", "VBD" ], [ "exclusive", "JJ" ], [ "custody", "NN" ] ], [ [ "Picasso", "NNP" ], [ "didn", "VBD" ], [ "t", "NN" ], [ "want", "VBP" ], [ "to", "TO" ], [ "give", "VB" ], [ "money", "NN" ], [ "to", "TO" ], [ "her", "PRP$" ], [ "mother", "NN" ], [ "because", "IN" ], [ "he", "PRP" ], [ "worried", "VBN" ], [ "she", "PRP" ], [ "wouldn", "NN" ], [ "t", "NN" ], [ "spend", "VB" ], [ "it", "PRP" ], [ "on", "IN" ], [ "the", "DT" ], [ "children", "NNS" ] ], [ [ "So", "RB" ], [ "he", "PRP" ], [ "paid", "VBN" ], [ "directly", "RB" ], [ "for", "IN" ], [ "their", "PRP$" ], [ "schooling", "VBG" ] ], [ [ "He", "PRP" ], [ "said", "VBD" ], [ "he", "PRP" ], [ "was", "VBD" ], [ "surprised", "VBN" ], [ "to", "TO" ], [ "learn", "VB" ], [ "about", "IN" ], [ "Ms", "NNP" ], [ "Picasso", "NNP" ], [ "s", "PRP" ], [ "sales", "NNS" ], [ "approach", "NN" ] ], [ [ "All", "DT" ], [ "the", "DT" ], [ "heirs", "NNS" ], [ "have", "VBP" ], [ "always", "RB" ], [ "worked", "VBD" ], [ "with", "IN" ], [ "major", "JJ" ], [ "dealers", "NNS" ], [ "like", "IN" ], [ "Picasso", "NNP" ], [ "did", "VBD" ], [ "in", "IN" ], [ "his", "PRP$" ], [ "life", "NN" ], [ "he", "PRP" ], [ "said", "VBD" ] ], [ [ "They", "PRP" ], [ "know", "VB" ], [ "the", "DT" ], [ "market", "NN" ], [ "and", "CC" ], [ "the", "DT" ], [ "buyers", "NNS" ], [ "and", "CC" ], [ "work", "NN" ], [ "to", "TO" ], [ "avoid", "VB" ], [ "any", "DT" ], [ "bad", "JJ" ], [ "moves", "NNS" ] ], [ [ "In", "IN" ], [ "the", "DT" ], [ "1970s", "CD" ], [ "when", "WRB" ], [ "the", "DT" ], [ "estate", "NN" ], [ "was", "VBD" ], [ "divided", "VBN" ], [ "to", "TO" ], [ "pay", "VB" ], [ "off", "IN" ], [ "taxes", "NNS" ], [ "La", "NNP" ], [ "Famille", "FW" ], [ "was", "VBD" ], [ "considered", "VBN" ], [ "one", "NN" ], [ "of", "IN" ], [ "the", "DT" ], [ "most", "RBS" ], [ "valuable", "JJ" ], [ "because", "IN" ], [ "its", "PRP$" ], [ "realistic", "JJ" ], [ "style", "NN" ], [ "was", "VBD" ], [ "so", "RB" ], [ "unusual", "JJ" ], [ "he", "PRP" ], [ "said", "VBD" ] ], [ [ "Ms", "NNP" ], [ "Picasso", "NNP" ], [ "has", "VBZ" ], [ "not", "RB" ], [ "publicly", "RB" ], [ "disclosed", "VBN" ], [ "what", "WP" ], [ "she", "PRP" ], [ "is", "VBZ" ], [ "hoping", "VBG" ], [ "to", "TO" ], [ "earn", "VB" ] ], [ [ "The", "DT" ], [ "scale", "NN" ], [ "is", "VBZ" ], [ "enormous", "JJ" ], [ "and", "CC" ], [ "it", "PRP" ], [ "is", "VBZ" ], [ "obviously", "RB" ], [ "an", "DT" ], [ "important", "JJ" ], [ "work", "NN" ], [ "said", "VBD" ], [ "James", "NNP" ], [ "Roundell", "NN" ], [ "a", "DT" ], [ "dealer", "NN" ], [ "with", "IN" ], [ "Simon", "NNP" ], [ "Dickinson", "NNP" ], [ "Fine", "NNP" ], [ "Art", "NNP" ], [ "in", "IN" ], [ "London", "NNP" ], [ "who", "WP" ], [ "says", "VBZ" ], [ "it", "PRP" ], [ "is", "VBZ" ], [ "worth", "JJ" ], [ "in", "IN" ], [ "the", "DT" ], [ "millions", "NNS" ], [ "of", "IN" ], [ "dollars", "NNS" ] ], [ [ "Ms", "NNP" ], [ "Picasso", "NNP" ], [ "who", "WP" ], [ "has", "VBZ" ], [ "five", "NN" ], [ "children", "NNS" ], [ "three", "NN" ], [ "of", "IN" ], [ "them", "PRP" ], [ "adopted", "VBN" ], [ "from", "IN" ], [ "Vietnam", "NNP" ], [ "said", "VBD" ], [ "that", "IN" ], [ "selling", "VBG" ], [ "more", "JJR" ], [ "of", "IN" ], [ "Picasso", "NNP" ], [ "s", "PRP" ], [ "art", "NN" ], [ "to", "TO" ], [ "expand", "VB" ], [ "her", "PRP$" ], [ "charities", "NNS" ], [ "is", "VBZ" ], [ "a", "DT" ], [ "fitting", "JJ" ], [ "use", "NN" ] ], [ [ "In", "IN" ], [ "just", "RB" ], [ "the", "DT" ], [ "last", "JJ" ], [ "year", "NN" ], [ "she", "PRP" ], [ "has", "VBZ" ], [ "donated", "VBN" ], [ "1", "CD" ], [ "5", "CD" ], [ "million", "NN" ], [ "euros", "NNS" ], [ "roughly", "RB" ], [ "1", "CD" ], [ "7", "CD" ], [ "million", "NN" ], [ "to", "TO" ], [ "the", "DT" ], [ "Hospital", "NNP" ], [ "Foundation", "NNP" ], [ "of", "IN" ], [ "Paris", "NNP" ], [ "and", "CC" ], [ "France", "NNP" ] ], [ [ "Some", "DT" ], [ "of", "IN" ], [ "that", "IN" ], [ "went", "VBD" ], [ "to", "TO" ], [ "the", "DT" ], [ "psychiatric", "JJ" ], [ "emergency", "NN" ], [ "unit", "NN" ], [ "for", "IN" ], [ "teenagers", "NNS" ], [ "and", "CC" ], [ "Ms", "NNP" ], [ "Picasso", "NNP" ], [ "also", "RB" ], [ "financed", "VBN" ], [ "a", "DT" ], [ "project", "NN" ], [ "for", "IN" ], [ "elderly", "RB" ], [ "patients", "NNS" ], [ "in", "IN" ], [ "long", "JJ" ], [ "term", "NN" ], [ "hospital", "JJ" ], [ "care", "NN" ] ], [ [ "I", "NN" ], [ "live", "VB" ], [ "now", "RB" ], [ "in", "IN" ], [ "the", "DT" ], [ "present", "JJ" ], [ "she", "PRP" ], [ "said", "VBD" ] ], [ [ "The", "DT" ], [ "past", "JJ" ], [ "rests", "VBZ" ], [ "in", "IN" ], [ "the", "DT" ], [ "past", "JJ" ] ], [ [ "But", "CC" ], [ "I", "NN" ], [ "will", "MD" ], [ "never", "RB" ], [ "forget", "VB" ], [ "never", "RB" ] ], [ [ "I", "NN" ], [ "respect", "NN" ], [ "my", "PRP$" ], [ "grandfather", "NN" ], [ "and", "CC" ], [ "his", "PRP$" ], [ "stature", "NN" ], [ "as", "IN" ], [ "an", "DT" ], [ "artist", "NN" ] ], [ [ "I", "NN" ], [ "was", "VBD" ], [ "his", "PRP$" ], [ "grandchild", "NN" ], [ "and", "CC" ], [ "his", "PRP$" ], [ "heir", "NN" ], [ "but", "CC" ], [ "never", "RB" ], [ "the", "DT" ], [ "grandchild", "NN" ], [ "of", "IN" ], [ "his", "PRP$" ], [ "heart", "NN" ] ], [ [ "Correction", "NN" ], [ "February", "NNP" ], [ "4", "CD" ], [ "2015", "CD" ] ], [ [ "An", "DT" ], [ "earlier", "RBR" ], [ "version", "NN" ], [ "of", "IN" ], [ "this", "DT" ], [ "article", "NN" ], [ "included", "VBD" ], [ "an", "DT" ], [ "erroneous", "JJ" ], [ "reference", "NN" ], [ "to", "TO" ], [ "Marina", "NNP" ], [ "Picasso", "NNP" ], [ "s", "PRP" ], [ "marital", "JJ" ], [ "status", "NN" ] ], [ [ "She", "PRP" ], [ "has", "VBZ" ], [ "never", "RB" ], [ "married", "VBN" ], [ "thus", "RB" ], [ "it", "PRP" ], [ "is", "VBZ" ], [ "not", "RB" ], [ "the", "DT" ], [ "case", "NN" ], [ "that", "IN" ], [ "she", "PRP" ], [ "is", "VBZ" ], [ "divorced", "VBN" ] ] ] } ================================================ FILE: spec/test_data/Volkskrant-20150205-Knot-geldpers-aanzetten-is-paardenmiddel-voor-half-procent-inflatie.json ================================================ { "sentences": [ "Knot: geldpers aanzetten is paardenmiddel voor half procent inflatie", "De president van De Nederlandsche Bank, Klaas Knot, vindt de geldinjectie in de Europese economie van ruim 1.100 miljard euro veel te hoog voor het beoogde resultaat: een half procent inflatie in 2016. ", "'Oftewel 50 basispunten, dat zijn heel dure basispunten', zei Knot donderdag in de Tweede Kamer.", "Door: Robert Giebels 5 februari 2015, 21:55 Bron: ANP", "De financiële specialisten onder de Kamerleden hadden Knot gevraagd uitleg te geven over het ECB-besluit van 22 januari. ", "De centrale bank van de eurozone gaat voor 60 miljard euro per maand staatsschulden opkopen. ", "Dat komt neer op het aanzetten van de geldpers om de inflatie en de economie aan te jagen.", "Het ECB-bestuur, de presidenten van de nationale centrale banken van evenzoveel eurolanden en zes vaste bestuurders, besloot daartoe met 20 voor en 5 tegen. ", "Vrij uitzonderlijk was dat Knot bekendmaakte een van de vijf tegenstemmers te zijn. ", "Hij vindt de zogenoemde kwantitatieve verruiming noodzakelijk noch effectief.", "Maar, zei Knot gisteren tot de Kamer, dat besluit is een gegeven. ", "'Nu gaan bespreken of het een goed of slecht besluit was, is mosterd na de maaltijd.' ", "In het vervolg van zijn betoog kon Knot zich evenwel niet losmaken van zijn weerzin ertegen.", "De DNB-president maakte duidelijk dat het op grote schaal aanzetten van de geldpers vooral een sprong in het diepe is. ", "'Het is geen flauwekul, maar het is ook niet de silver bullet - de oplossing van alle kwalen.'", "Deflatiespook", "Eén komma één triljoen euro voor een half procent inflatie", "Het effect van de geldinjectie is dan ook een kwestie van appreciatie, meent Knot: 'Welk risico acht je het grootst.' ", "De meerderheid van de ECB vindt het risico van deflatie het grootst - de economie komt tot stilstand omdat iedereen denkt dat alles later goedkoper wordt en op dat 'later' gaat wachten.", "Om dat deflatiespook enigszins buiten de deur te houden wordt, zo constateert Knot, een paardenmiddel ingezet: 'Eén komma één triljoen euro voor een half procent inflatie.'", "De tegenstemmers zoals Knot vinden het risico van deflatie niet groot. ", "'Ongeveer 60 procent van de dalende prijzen komt door de lage olieprijs en dat is tijdelijk', zei hij. ", "Het risico op bijvoorbeeld zeepbellen op de beurs en in de huizenmarkt acht Knot veel reëler.", "De kwantitatieve verruiming jaagt de prijzen van aandelen, obligaties en vastgoed op tot een niveau dat volgens Knot losstaat van de economische werkelijkheid. ", "Dat vergroot de verschillen tussen vermogenden en minder vermogenden.", "Geen risico, maar een vaststaand negatief effect 'van de kunstmatig lage rente' door de geldpers aan te zetten, is volgens Knot bovendien dat landen door de actie van de ECB minder gemotiveerd zullen zijn economisch en monetair te hervormen." ] } ================================================ FILE: spec/test_data/Wikipedia_EN_FrenchRevolution.json ================================================ { "text": "{{Short description|Revolution in France from 1789 to 1799}}\r\n{{other uses|French Revolution (disambiguation)|La r\u00E9volution fran\u00E7aise (disambiguation)}}\r\n{{pp-semi-indef}}\r\n{{pp-move-indef}}\r\n{{Use dmy dates|date=January 2019}}\r\n{{Use British English|date=September 2016}}\r\n{{Infobox historical event\r\n|Event_Name = French Revolution\r\n|partof = the [[Atlantic Revolutions]]\r\n|Image_Name = Anonymous - Prise de la Bastille.jpg\r\n|Image_Caption = The [[Storming of the Bastille]], 14 July 1789\r\n|Location = [[Kingdom of France]]\r\n|Date = {{start and end dates|1789|5|5|1799|11|9|df=yes}}
({{Age in months, weeks and days|month1=05|day1=5|year1=1789|month2=11|day2=9|year2=1799}})\r\n|Result =\r\n* Abolition of the ''[[Ancien R\u00E9gime]]'' and creation of [[constitutional monarchy]]\r\n* Proclamation of [[First French Republic]] in September 1792\r\n* [[Reign of Terror]] and [[Execution of Louis XVI]]\r\n* Radical social and political change\r\n* [[French Revolutionary Wars]]\r\n* Establishment of the [[French Consulate]] in November 1799\r\n}}\r\n{{history of France}}\r\n{{revolution sidebar}}\r\n{{monarchism}}\r\n{{republicanism sidebar}}\r\nThe '''French Revolution''' ({{Lang-fr|R\u00E9volution fran\u00E7aise}} {{IPA-fr|\u0281ev\u0254lysj\u0254\u0303 f\u0281\u0251\u0303s\u025B\u02D0z|}}) was a period of [[revolution|fundamental political and societal change]] in [[France]] that began with the [[Estates General of 1789]] and ended in [[coup of 18 Brumaire|November 1799]] with the formation of the [[French Consulate]]. Many of its ideas are considered fundamental principles of [[Western culture|Western]] [[liberal democracy]].{{sfn|Livesey|2001|p=19}}\r\n\r\nBetween 1700 and 1789, the French population increased from 18 million to 26 million, leading to large numbers of unemployed, accompanied by sharp increases in [[food prices]] caused by years of bad harvests.{{sfn|Fursenko|McArthur|1976|p=484}} Widespread social distress led to the [[convocation]] of the Estates General in May 1789, the first since 1614. In June, the Estates were converted into a [[National Assembly (French Revolution)|National Assembly]], which passed a series of radical measures, among them the [[Abolition of feudalism in France|abolition of feudalism]], state control of the [[Catholic Church in France|Catholic Church]] and extending the right to vote.\r\n\r\nThe next three years were dominated by the struggle for political control, exacerbated by [[economic depression]] and [[social unrest]]. External powers like [[Habsburg Monarchy|Austria]], [[Kingdom of Great Britain|Britain]] and [[Kingdom of Prussia|Prussia]] viewed the Revolution as a threat, leading to the outbreak of the [[French Revolutionary Wars]] in April 1792. Disillusionment with [[Louis XVI of France|Louis XVI]] led to the establishment of the [[First French Republic]] on 22 September 1792, followed by his [[Execution of Louis XVI|execution]] in January 1793. In June, [[Insurrection of 31 May \u2013 2 June 1793|an uprising in Paris]] replaced the [[Girondins]] who dominated the [[National Legislative Assembly (France)|National Assembly]] with the [[Committee of Public Safety]], headed by [[Maximilien Robespierre]].\r\n\r\nThis sparked the [[Reign of Terror]], an attempt to eradicate alleged \"[[counter-revolutionaries]]\"; by the time it [[Thermidorian Reaction|ended in July 1794]], over 16,600 had been executed in Paris and the provinces. As well as external enemies, the Republic faced a series of internal Royalist and [[Jacobin]] revolts; in order to deal with these, the [[French Directory]] took power in November 1795. Despite military success, the war led to [[economic stagnation]] and internal divisions, and in November 1799 the Directory was replaced by the Consulate.\r\n\r\nMany Revolutionary symbols such as ''[[La Marseillaise]]'' and phrases like ''[[Libert\u00E9, \u00E9galit\u00E9, fraternit\u00E9]]'' reappeared in other revolts, such as the 1917 [[Russian Revolution]].{{sfn|Shlapentokh|1996|pp=61\u201376}} Over the next two centuries, its key principles like equality would inspire campaigns for [[abolitionism|the abolition of slavery]] and [[universal suffrage]].{{sfn|Desan|Hunt|Nelson|2013|pp=3,8,10}} Its values and institutions dominate French politics to this day, and many historians regard the Revolution as one of the most important events in Western history.{{sfn|Feh\u00E9r|1990|pp=117\u2013130}}\r\n\r\n== Causes ==\r\n[[File:Antoine-Fran\u00E7ois Callet - Louis XVI, roi de France et de Navarre (1754-1793), rev\u00EAtu du grand costume royal en 1779 - Google Art Project.jpg|thumb|left|upright=0.8|[[Louis XVI of France|Louis XVI]], who came to the throne in 1774]]\r\n{{Main|Causes of the French Revolution}}\r\n\r\nHistorians generally view the underlying [[causes of the French Revolution]] as the result of the ''[[Ancien R\u00E9gime]]'s'' failure to manage [[Social inequality|social]] and [[economic inequality]]. Rapid population growth and the inability to adequately finance [[government debt]] resulted in economic depression, unemployment and high food prices.{{sfn|Sargent|Velde|1995|pp=474\u2013518}} These combined with a [[regressive tax]] system and resistance to reform by the ruling elite to produce a crisis [[Louis XVI of France|Louis XVI]] proved unable to manage.{{sfn|Baker|1978|pp=279\u2013303}}{{sfn|Jordan|2004|pp=11\u201312}}\r\n\r\nFrom the late 17th century on, political and cultural debate became part of wider European society, rather than being confined to a small [[elite]]. This took different forms, such as the English '[[English coffeehouses in the 17th and 18th centuries|coffeehouse culture]]', and extended to areas colonised by Europeans, particularly [[British North America]]. Contacts between diverse groups in [[Edinburgh]], [[Geneva]], [[Boston]], [[Amsterdam]], [[Paris]], [[London]] or [[Vienna]] were much greater than often appreciated.{{sfn|Jourdan|2007|pp=184-185}}\r\n\r\nTransnational elites who shared ideas and styles were not new; what changed was their extent and the numbers involved.{{sfn|Jourdan|2007|p=187}} Under [[Louis XIV of France|Louis XIV]], the Court at [[Palace of Versailles|Versailles]] was the centre of culture, fashion and political power. Improvements in education and literacy over the course of the 18th century meant larger audiences for newspapers and journals, with [[Masonic lodges]], coffee houses and reading clubs providing areas where people could debate and discuss ideas. The emergence of this so-called \"[[public sphere]]\" led to Paris replacing Versailles as the cultural and intellectual centre, leaving the Court isolated and less able to influence opinion.{{sfn|Blanning|1997|p=26}}\r\n\r\nIn addition to these social changes, the French population grew from 18 million in 1700 to 26 million in 1789, making it the most populous state in Europe; Paris had over 600,000 inhabitants, of whom roughly one third were either unemployed or had no regular work.{{sfn|Garrioch|1994|p=524}} Inefficient agricultural methods meant domestic farmers could not support these numbers, while primitive transportation networks made it hard to maintain supplies even when there was sufficient. As a result, food prices rose by 65% between 1770 and 1790, yet real wages increased by only 22%.{{sfn|Hufton|1983|p=304}} Food shortages were particularly damaging for the regime, since many blamed price increases on government failure to prevent profiteering.{{sfn|Tilly|1983|p=333}} By the spring of 1789, a poor harvest followed by a severe winter had created a rural [[Peasant|peasantry]] with nothing to sell, and an urban [[proletariat]] whose purchasing power had collapsed.{{sfn|Tilly|1983|p=337}}\r\n\r\n[[File:Europe 1783-1792 en.png|thumb|right|upright=1.0|By 1789, France was the [[Demographics of France|most populous]] country in Europe.]]\r\n\r\nThe other major drag on the economy was state debt. Traditional views of the French Revolution often attribute the financial crisis to the costs of the [[Anglo-French War (1778\u20131783)|1778\u20131783 Anglo-French War]], but modern economic studies show this is only a partial explanation. In 1788, the ratio of debt to [[gross national income]] in France was 55.6%, compared to 181.8% in Britain, and although French borrowing costs were higher, the percentage of revenue devoted to interest payments was roughly the same in both countries.{{sfn|Weir|1989|p=98}} One historian concludes \"neither the level of French state debt in 1788, or its previous history, can be considered an explanation for the outbreak of revolution in 1789\".{{sfn|Weir|1989|p=101}}\r\n\r\nThe problem was French taxes were predominantly paid by the urban and rural poor, while attempts to share the burden more equally were blocked by the regional ''[[parlement]]s'' which controlled financial policy.{{sfn|Doyle|2002|pp=45\u201349}} The resulting impasse in the face of widespread economic distress led to the calling of the [[Estates General of 1789|Estates-General]], which became radicalised by the struggle for control of public finances.{{sfn|Weir|1989|p=96}}\r\n\r\nAlthough not indifferent to the crisis, when faced with opposition Louis XVI tended to back down.{{sfn|Doyle|2002|p=48}} The court became the target of popular anger, especially Queen [[Marie-Antoinette]], who was viewed as a spendthrift [[Habsburg Monarchy|Austrian]] spy, and blamed for the dismissal of 'progressive' ministers like [[Jacques Necker]]. For their opponents, [[Age of Enlightenment|Enlightenment]] ideas on equality and democracy provided an intellectual framework for dealing with these issues, while the [[American Revolution]] was seen as confirmation of their practical application.{{sfn|Doyle|2002|pp=73\u201374}}\r\n\r\n== Crisis of the ''Ancien R\u00E9gime'' ==\r\n=== Financial crisis ===\r\n[[File:Parliaments and Sovereign Councils of the Kingdom of France in 1789 (fr).png|left|thumb|upright=1.0|The regional ''Parlements'' in 1789; note area covered by the [[Parlement de Paris]]]]\r\n\r\nThe French state faced a series of budgetary crises during the 18th century, caused primarily by structural deficiencies rather than lack of resources. Unlike Britain, where [[Parliament of Great Britain|Parliament]] determined both expenditures and taxes, in France, the Crown controlled spending, but not revenue.{{sfn|White|1995|p=229}} National taxes could only be approved by the [[Estates General (France)|Estates-General]], which had not sat since 1614; its revenue functions had been assumed by regional ''[[parlement]]s'', the most powerful being the ''[[Parlement de Paris]]' (see Map).{{sfn|Schama|1989|pp=109-112}}\r\n\r\nAlthough willing to authorise one-time taxes, these bodies were reluctant to pass long-term measures, while collection was outsourced to [[Ferme g\u00E9n\u00E9rale#The Ferme g\u00E9n\u00E9rale (1726\u201390)|private individuals]]. This significantly reduced the yield from those that were approved and as a result, France struggled to service its debt despite being larger and wealthier than Britain.{{sfn|White|1995|p=229}} Following partial [[Default (finance)|default]] in 1770, reforms were instituted by [[Anne Robert Jacques Turgot, Baron de Laune|Turgot]], the [[Controller-General of Finances|Finance Minister]], which by 1776 had balanced the budget and reduced government borrowing costs from 12% per year to under 6%. Despite this success, he was dismissed in May 1776 after arguing France could not afford intervention in North America.{{sfn|White|1995|p=230}}\r\n\r\nHe was succeeded by Swiss Protestant [[Jacques Necker]], who was replaced in 1781 by [[Charles Alexandre de Calonne|Charles de Calonne]].{{sfn|Hibbert|1982|p=35}} The war was financed by state debt, creating a large ''[[Rentier capitalism|rentier]]'' class who lived on the interest, primarily members of the French nobility or commercial classes. By 1785 the government was struggling to cover these payments and since default would ruin much of French society, this meant increasing taxes. When the ''parlements'' refused to comply, Calonne persuaded Louis to summon the [[Assembly of Notables]], an advisory council dominated by the upper nobility. The council refused, arguing this could only be approved by the Estates, and in May 1787 Calonne was replaced by the man responsible, [[\u00C9tienne Charles de Lom\u00E9nie de Brienne|de Brienne]], a former [[archbishop of Toulouse]].{{sfn|Schama|1989|pp=287-292}} {{efn|In 1781, Louis allegedly refused to appoint him Archbishop of Paris on the grounds 'an Archbishop should at least believe in God'.{{sfn|Bredin|1988|p=42}}}} By 1788, debt owed by the French Crown totalled an unprecedented 4.5 billion [[Livre tournois|livres]], while devaluing the coinage caused runaway inflation.{{sfn|Gershoy|1957|p=16-17, 23}} In an effort to resolve the crisis, Necker was re-appointed Finance Minister in August 1788 but was unable to reach an agreement on how to increase revenue and in May 1789 Louis summoned the [[Estates General of 1789 in France|Estates-General]] for the first time in over a hundred and fifty years.{{sfn|Doyle|1990|p=93}}\r\n\r\n=== Estates-General of 1789 ===\r\n{{main|Estates General of 1789 in France}}\r\n[[File:Troisordres.jpg|thumb|right|upright=0.7|Caricature of the Third Estate carrying the First Estate (clergy) and the Second Estate (nobility) on its back]]\r\n\r\nThe Estates-General was divided into three parts; the [[Estates of the realm#First Estate|First]] for members of the clergy, [[Estates of the realm#Second Estate|Second]] for the nobility, and [[Estates of the realm#Third Estate|Third]] for the \"commons\".{{sfn|Hunt|1984|pp=6-10}} Each sat separately, enabling the First and Second Estates to outvote the Third, despite representing less than 5% of the population, while both were largely exempt from tax.{{sfn|Schama|1989|p=115}}\r\n\r\nIn the 1789 elections, the First Estate returned 303 deputies, representing 100,000 Catholic clergy; nearly 10% of French lands were owned directly by individual bishops and monasteries, in addition to [[tithes]] paid by peasants.{{sfn|Doyle|1990|p=59}} More than two-thirds of the clergy lived on less than 500 livres per year, and were often closer to the urban and rural poor than those elected for the Third Estate, where voting was restricted to male French taxpayers, aged 25 or over.{{sfn|Schama|1989|p=335}} As a result, half of the 610 deputies elected to the Third Estate in 1789 were lawyers or local officials, nearly a third businessmen, while fifty-one were wealthy land owners.{{sfn|Doyle|1990|pp=99-101}}\r\n\r\nThe Second Estate elected 291 deputies, representing about 400,000 men and women, who owned about 25% of the land and collected seigneurial dues and rents from their tenants. Like the clergy, this was not a uniform body, and was divided into the ''[[Nobles of the Sword|noblesse d'\u00E9p\u00E9e]]'', or traditional aristocracy, and the ''[[Nobles of the robe|noblesse de robe]]''. The latter derived rank from judicial or administrative posts and tended to be hard-working professionals, who dominated the regional ''parlements'' and were often intensely socially conservative.{{sfn|Schama|1989|pp=116-117}}\r\n\r\nTo assist delegates, each region completed a list of grievances, known as ''[[Cahiers de dol\u00E9ances]]''.{{sfn|Frey|Frey|2004|pp=4-5}} Although they contained ideas that would have seemed radical only months before, most supported the monarchy, and assumed the Estates-General would agree to financial reforms, rather than fundamental constitutional change.{{sfn|Doyle|2001|p=38}} The lifting of press censorship allowed widespread distribution of political writings, mostly written by liberal members of the aristocracy and upper middle-class.{{sfn|Neely|2008|p=56}} [[Abb\u00E9 Siey\u00E8s]], a political theorist and priest elected to the Third Estate, argued it should take precedence over the other two as it represented 95% of the population.{{sfn|Furet|1995|p=45}}\r\n\r\nThe Estates-General convened in the [[Menus-Plaisirs du Roi]] on 5 May 1789, near the [[Palace of Versailles]] rather than in Paris; the choice of location was interpreted as an attempt to control their debates. As was customary, each Estate assembled in separate rooms, whose furnishings and opening ceremonies deliberately emphasised the superiority of the First and Second Estates. They also insisted on enforcing the rule that only those who owned land could sit as deputies for the Second Estate, and thus excluded the immensely popular [[Honor\u00E9 Gabriel Riqueti, comte de Mirabeau|Comte de Mirabeau]].{{sfn|Schama|1989|p=343}}\r\n\r\n[[File:Estatesgeneral.jpg|thumb|left|upright=1.0|Meeting of the Estates General on 5 May 1789 at Versailles]]\r\n\r\nAs separate assemblies meant the Third Estate could always be outvoted by the other two, Siey\u00E8s sought to combine all three. His method was to require all deputies be approved by the Estates-General as a whole, instead of each Estate verifying its own members. Since this meant the legitimacy of deputies derived from the Estates-General, they would have to continue sitting as one body.{{sfn|Hibbert|1982|p=54}} After an extended stalemate, on 10 June the Third Estate proceeded to verify its own deputies, a process completed on 17 June; two days later, they were joined by over 100 members of the First Estate, and declared themselves the [[National Assembly (French Revolution)|National Assembly]]. The remaining deputies from the other two Estates were invited to join, but the Assembly made it clear they intended to legislate with or without their support.{{sfn|Schama|1989|pp=354-355}}\r\n\r\nIn an attempt to prevent the Assembly from convening, Louis XVI ordered the ''Salle des \u00C9tats'' closed down, claiming it needed to be prepared for a royal speech. On 20 June, the Assembly met in a tennis court outside Versailles and [[Tennis Court Oath|swore]] not to disperse until a new constitution had been agreed. Messages of support poured in from Paris and other cities; by 27 June, they had been joined by the majority of the First Estate, plus forty-seven members of the Second, and Louis backed down.{{sfn|Schama|1989|p=356}}\r\n\r\n== Constitutional monarchy (July 1789 \u2013 September 1792) ==\r\n=== Abolition of the ''Ancien R\u00E9gime'' ===\r\n{{main|Storming of the Bastille}}\r\nEven these limited reforms went too far for Marie Antoinette and Louis' younger brother the [[Charles X of France|Comte d'Artois]]; on their advice, Louis dismissed Necker again as chief minister on 11 July.{{sfn|Schama|1989|pp=357-358}} On 12 July, the Assembly went into a non-stop session after rumours circulated he was planning to use the [[Swiss Guards]] to force it to close. The news brought crowds of protestors into the streets, and soldiers of the elite ''[[Gardes Fran\u00E7aises]]'' regiment refused to disperse them.{{sfn|Schama|1989|pp=380-382}}\r\n\r\nOn the 14th, many of these soldiers joined the mob in attacking the [[Bastille]], a royal fortress with large stores of arms and ammunition. The governor [[Bernard-Ren\u00E9 de Launay|de Launay]] surrendered after several hours of fighting that cost the lives of 83 attackers. Taken to the ''[[H\u00F4tel de Ville, Paris|H\u00F4tel de Ville]]'', he was executed, his head placed on a pike and paraded around the city; the fortress was then torn down in a remarkably short time. Although rumoured to hold many prisoners, the Bastille held only seven: four forgers, two noblemen held for \"immoral behaviour\", and a murder suspect. Nevertheless, as a potent symbol of the ''[[Ancien R\u00E9gime]]'', its destruction was viewed as a triumph and [[Bastille Day]] is still celebrated every year.{{sfn|Schama|1989|pp=404-405}}\r\n\r\n[[File:Prise de la Bastille.jpg|thumb|right|upright=1.0|The [[Storming of the Bastille]] on 14 July 1789; the iconic event of the Revolution, still commemorated each year as [[Bastille Day]]]]\r\n\r\nAlarmed by the prospect of losing control of the capital, Louis appointed [[Gilbert du Motier, Marquis de Lafayette|Lafayette]] commander of the [[Garde Nationale|National Guard]], with [[Jean-Sylvain Bailly]] as head of a new administrative structure known as the [[Paris Commune (French Revolution)|Commune]]. On 17 July, he visited Paris accompanied by 100 deputies, where he was greeted by Bailly and accepted a [[Flag of France|tricolore]] [[cockade]] to loud cheers. However, it was clear power had shifted from his court; he was welcomed as 'Louis XVI, father of the French and king of a free people.'{{sfn|Schama|1989|pp=423-424}}\r\n\r\nThe short-lived unity enforced on the Assembly by a common threat quickly dissipated. Deputies argued over constitutional forms, while civil authority rapidly deteriorated. On 22 July, former Finance Minister [[Joseph Foullon de Dou\u00E9|Joseph Foullon]] and his son were lynched by a Parisian mob, and neither Bailly nor Lafayette could prevent it. In rural areas, wild rumours and paranoia resulted in the formation of militia and an agrarian insurrection known as ''[[Great Fear|la Grande Peur]]''.{{sfn|Hibbert|1982|p=93}} The breakdown of law and order and frequent attacks on aristocratic property led much of the nobility to flee abroad. These ''[[\u00E9migr\u00E9]]s'' funded reactionary forces within France and urged foreign monarchs to back a [[counter-revolution]].{{sfn|Lefebvre|1962|pp=187\u2013188}}\r\n\r\nIn response, the Assembly published the [[August Decrees]] which [[Abolition of feudalism in France|abolished feudalism]] and other privileges held by the nobility, notably exemption from tax. Other decrees included equality before the law, opening public office to all, freedom of worship, and cancellation of special privileges held by provinces and towns.{{sfn|Lefebvre|1962|p=130}} Over 25% of French farmland was subject to [[Manorialism|feudal dues]], which provided most of the income for large landowners; these were now cancelled, along with [[tithe]]s due to the church. The intention was for tenants to pay compensation for these losses but the majority refused to comply and the obligation was cancelled in 1793.{{sfn|Forster|1967|pp=71\u201386}}\r\n\r\nWith the suspension of the 13 regional ''parlements'' in November, the key institutional pillars of the old regime had all been abolished in less than four months. From its early stages, the Revolution therefore displayed signs of its radical nature; what remained unclear was the constitutional mechanism for turning intentions into practical applications.{{sfn|Furet|Ozouf|1989|p=112}}\r\n\r\n=== Creating a new constitution ===\r\nAssisted by [[Thomas Jefferson]], Lafayette prepared a draft constitution known as the [[Declaration of the Rights of Man and of the Citizen]], which echoed some of the provisions of the [[United States Declaration of Independence|Declaration of Independence]]. However France had reached no consensus on the role of the Crown, and until this question was settled, it was impossible to create political institutions. When presented to the legislative committee on 11 July, it was rejected by pragmatists such as [[Jean Joseph Mounier]], President of the Assembly, who feared creating expectations that could not be satisfied.{{sfn|Schama|1989|pp=442-444}}\r\n\r\n[[File:Declaration of Human Rights.jpg|thumb|left|upright=0.8|The [[Declaration of the Rights of Man and of the Citizen]] of 26 August 1789]]\r\n\r\nAfter editing by Mirabeau, it was published on 26 August as a statement of principle.{{sfn|Baker|1995|pp=154-196}} It contained provisions considered radical in any European society, let alone 1789 France, and while historians continue to debate responsibility for its wording, most agree the reality is a mix. Although Jefferson made major contributions to Lafayette's draft, he himself acknowledged an intellectual debt to [[Montesquieu]], and the final version was significantly different.{{sfn|Ludwikowski|1990|pp=452-453}} French historian [[Georges Lefebvre]] argues that combined with the elimination of privilege and [[feudalism]], it \"highlighted equality in a way the (American Declaration of Independence) did not\".{{sfn|Lefebvre|1962|p=146}}\r\n\r\nMore importantly, the two differed in intent; Jefferson saw the [[Constitution of the United States|US Constitution]] and [[United States Bill of Rights|Bill of Rights]] as fixing the political system at a specific point in time, claiming they 'contained no original thought...but expressed the American mind' at that stage.{{sfn|Jefferson|1903|p=May 8, 1825}} The 1791 French Constitution was viewed as a starting point, the Declaration providing an aspirational vision, a key difference between the two Revolutions. Attached as a preamble to the [[French Constitution of 1791]], and that of the 1870 to 1940 [[French Third Republic]], it was incorporated into the current [[Constitution of France]] in 1958.{{sfn|Fremont-Barnes|2007|p=190}}\r\n\r\nDiscussions continued. Mounier, supported by conservatives like [[G\u00E9rard de Lally-Tollendal]], wanted a [[bicameral]] system, with an [[upper house]] appointed by the king, who would have the right of veto. On 10 September, the majority led by Siey\u00E8s and [[Charles Maurice de Talleyrand-P\u00E9rigord|Talleyrand]] rejected this in favour of a single assembly, while Louis retained only a \"[[suspensive veto]]\"; this meant he could delay the implementation of a law, but not block it. On this basis, a new committee was convened to agree on a constitution; the most controversial issue was [[citizenship]], linked to the debate on the balance between individual rights and obligations. Ultimately, the 1791 Constitution distinguished between 'active citizens' who held political rights, defined as French males over the age of 25, who paid direct taxes equal to three days' labour, and 'passive citizens', who were restricted to 'civil rights'. As a result, it was never fully accepted by radicals in the [[Jacobin club]].{{sfn|Ludwikowski|1990|pp=456-457}}\r\n\r\nFood shortages and the worsening economy caused frustration at the lack of progress, and the Parisian working-class, or ''[[sans culottes]]'', became increasingly restive. This came to a head in late September, when the Flanders Regiment arrived in Versailles to take over as the royal bodyguard and in line with normal practice were welcomed with a ceremonial banquet. Popular anger was fuelled by press descriptions of this as a 'gluttonous orgy', and claims the tricolor cockade had been abused. The arrival of these troops was also viewed as an attempt to intimidate the Assembly.{{sfn|Schama|1989|pp=459-460}}\r\n\r\nOn 5 October 1789, crowds of women assembled outside the [[H\u00F4tel de Ville, Paris|H\u00F4tel de Ville]], urging action to reduce prices and improve bread supplies.{{sfn|Doyle|1990|p=121}} These protests quickly turned political, and after seizing weapons stored at the H\u00F4tel de Ville, some 7,000 [[Women's March on Versailles|marched on Versailles]], where they entered the Assembly to present their demands. They were followed by 15,000 members of the National Guard under Lafayette, who tried to dissuade them, but took command when it became clear they would desert if he did not grant their request.{{sfn|Schama|1989|pp=460-463}}\r\n\r\nWhen the National Guard arrived later that evening, Lafayette persuaded Louis the safety of his family required relocation to Paris. Next morning, some of the protestors broke into the Royal apartments, searching for Marie Antoinette, who escaped. They ransacked the palace, killing several guards. Although the situation remained tense, order was eventually restored, and the Royal family and Assembly left for Paris, escorted by the National Guard.{{sfn|Doyle|1990|p=122}} Announcing his acceptance of the August Decrees and the Declaration, Louis committed to [[constitutional monarchy]], and his official title changed from 'King of France' to 'King of the French'.{{sfn|Schama|1989|p=470}}\r\n\r\n=== Revolution and the church ===\r\n\r\nHistorian [[John McManners]] argues \"in eighteenth-century France, throne and altar were commonly spoken of as in close alliance; their simultaneous collapse ... would one day provide the final proof of their interdependence.\" One suggestion is that after a century of persecution, some [[Huguenots|French Protestants]] actively supported an anti-Catholic regime, a resentment fuelled by Enlightenment thinkers such as [[Voltaire]].{{sfn|Censer|Hunt|2001|p=16}} Philosopher [[Jean-Jacques Rousseau]] wrote it was \"manifestly contrary to the law of nature... that a handful of people should gorge themselves with superfluities while the hungry multitude goes in want of necessities.\"{{sfn|Hunt|Martin|Rosenwein|2003|p=625}}\r\n\r\n[[File:Decret de l'Assembl\u00E9e National qui supprime les Ordres Religieux et Religieuses.jpg|thumb|right|upright=1.0|In this caricature, monks and nuns enjoy their new freedom after the decree of 16 February 1790.]]\r\n\r\nThe Revolution caused a massive shift of power from the Catholic Church to the state; although the extent of religious belief has been questioned, elimination of tolerance for religious minorities meant by 1789 being French also meant being Catholic.{{sfn|Betros|2010|pp=16\u201321}} The church was the largest individual landowner in France, controlling nearly 10% of all estates and levied [[tithe]]s, effectively a 10% tax on income, collected from peasant farmers in the form of crops. In return, it provided a minimal level of social support.{{sfn|Censer|Hunt|2001|p=4}}\r\n\r\nThe August decrees abolished tithes, and on 2 November the Assembly confiscated all church property, the value of which was used to back a new paper currency known as ''[[assignats]]''. In return, the state assumed responsibilities such as paying the clergy and caring for the poor, the sick and the orphaned.{{sfn|McManners|1969|p=27}} On 13 February 1790, religious orders and [[monasteries]] were dissolved, while [[monk]]s and [[nun]]s were encouraged to return to private life.{{sfn|Censer|Hunt|2001|p=92}}\r\n\r\nThe [[Civil Constitution of the Clergy]] of 12 July 1790 made them employees of the state, as well as establishing rates of pay and a system for electing priests and bishops. [[Pope Pius VI]] and many French Catholics objected to this since it denied the authority of the [[Pope]] over the French Church. In October, thirty [[Bishop (Catholic Church)|bishops]] wrote a declaration denouncing the law, further fuelling opposition.{{sfn|Shusterman|2013|pp=58-87}}\r\n\r\nWhen clergy were required to swear loyalty to the Civil Constitution in November 1790, it split the church between the 24% who complied, and the majority who refused.{{sfn|Kennedy|1989|p=151}} This stiffened popular resistance against state interference, especially in traditionally Catholic areas such as [[Normandy]], [[Brittany (administrative region)|Brittany]] and the [[Vend\u00E9e]], where only a few priests took the oath and the civilian population turned against the revolution.{{sfn|Shusterman|2013|pp=58-87}} The result was state-led persecution of \"[[Refractory clergy]]\", many of whom were forced into exile, deported, or executed.{{sfn|Censer|Hunt|2001|p=61}}\r\n\r\n===Political divisions===\r\nThe period from October 1789 to spring 1791 is usually seen as one of relative tranquility, when some of the most important legislative reforms were enacted. While certainly true, many provincial areas experienced conflict over the source of legitimate authority, where officers of the ''Ancien R\u00E9gime'' had been swept away, but new structures were not yet in place. This was less obvious in Paris, since the formation of the National Guard made it the best policed city in Europe, but growing disorder in the provinces inevitably affected members of the Assembly.{{sfn|Scott|1975|pp=861-863}}\r\n\r\n[[File:Federation.jpg|thumb|left|upright=1.0|The ''[[F\u00EAte de la F\u00E9d\u00E9ration]]'' on 14 July 1790 celebrated the establishment of the constitutional monarchy.]]\r\n\r\nCentrists led by Siey\u00E8s, Lafayette, Mirabeau and Bailly created a majority by forging consensus with ''monarchiens'' like Mounier, and independents including [[Adrien Duport]], [[Antoine Pierre Joseph Marie Barnave|Barnave]] and [[Alexandre Lameth]]. At one end of the political spectrum, reactionaries like [[Jacques Antoine Marie de Cazal\u00E8s|Cazal\u00E8s]] and [[Jean-Sifrein Maury|Maury]] denounced the Revolution in all its forms, with extremists like [[Maximilien Robespierre]] at the other. He and [[Jean-Paul Marat]] gained increasing support for opposing the criteria for 'active citizens', which had disenfranchised much of the Parisian proletariat. In January 1790, the National Guard tried to arrest Marat for denouncing Lafayette and Bailly as 'enemies of the people'.{{sfn|Schama|1989|pp=498-499}}\r\n\r\nOn 14 July 1790, celebrations were held throughout France commemorating the fall of the Bastille, with participants swearing an oath of fidelity to 'the nation, the law and the king.' The ''[[F\u00EAte de la F\u00E9d\u00E9ration]]'' in Paris was attended by Louis XVI and his family, with [[Charles Maurice de Talleyrand-P\u00E9rigord|Talleyrand]] performing a [[mass (liturgy)|mass]]. Despite this show of unity, the Assembly was increasingly divided, while external players like the Paris Commune and National Guard competed for power. One of the most significant was the [[Jacobin]] club; originally a forum for general debate, by August 1790 it had over 150 members, split into different factions.{{sfn|Schama|1989|pp=527-529}}\r\n\r\nThe Assembly continued to develop new institutions; in September 1790, the regional ''Parlements'' were abolished and their legal functions replaced by a new independent judiciary, with [[jury trial]]s for criminal cases. However, moderate deputies were uneasy at popular demands for universal suffrage, labour unions and cheap bread, and over the winter of 1790 and 1791, they passed a series of measures intended to disarm popular radicalism. These included exclusion of poorer citizens from the National Guard, limits on use of petitions and posters, and the June 1791 [[Le Chapelier Law 1791|Le Chapelier Law]] suppressing trade guilds and any form of worker organisation.{{sfn|Tackett|2003|p=478}}\r\n\r\nThe traditional force for preserving law and order was the army, which was increasingly divided between officers, who largely came from the nobility, and ordinary soldiers. In August 1790, the loyalist General [[Fran\u00E7ois Claude Amour, marquis de Bouill\u00E9|Bouill\u00E9]] suppressed a serious mutiny at [[Nancy, France|Nancy]]; although congratulated by the Assembly, he was criticised by Jacobin radicals for the severity of his actions. Growing disorder meant many professional officers either left or became \u00E9migr\u00E9s, further destabilising the institution.{{sfn|Doyle|2009|pp=334\u2013336}}\r\n\r\n===Varennes and after===\r\n{{main|Flight to Varennes}}\r\nHeld in the [[Tuileries Palace]] under virtual house arrest, Louis XVI was urged by his brother and wife to re-assert his independence by taking refuge with Bouill\u00E9, who was based at [[Montm\u00E9dy]] with 10,000 soldiers considered loyal to the Crown.{{sfn|Price|2003|p=170}} The royal family left the palace in disguise on the night of 20 June 1791; late the next day, Louis was recognised as he passed through [[Varennes]], arrested and taken back to Paris. The attempted escape had a profound impact on public opinion; since it was clear Louis had been seeking refuge in Austria, the Assembly now demanded oaths of loyalty to the regime, and began preparing for war, while fear of 'spies and traitors' became pervasive.{{sfn|Tackett|2003|p=473}}\r\n\r\n[[File:Retour Varennes 1791.jpg|thumb|right|upright=1.3|After the [[Flight to Varennes]]; the Royal family are escorted back to Paris]]\r\n\r\nDespite calls to replace the monarchy with a republic, Louis retained his position but was generally regarded with acute suspicion and forced to swear allegiance to the constitution. A new decree stated retracting this oath, making war upon the nation, or permitting anyone to do so in his name would be considered abdication. However, radicals led by [[Jacques Pierre Brissot]] prepared a petition demanding his deposition, and on 17 July, an immense crowd gathered in the [[Champ de Mars]] to sign. Led by Lafayette, the National Guard was ordered to \"preserve public order\" and responded to a barrage of stones by [[Champ de Mars massacre|firing into the crowd]], killing between 13 and 50 people.{{sfn|Tackett|2004|pp=148-150}}\r\n\r\nThe massacre badly damaged Lafayette's reputation; the authorities responded by closing radical clubs and newspapers, while their leaders went into exile or hiding, including Marat. {{sfn|Conner|2012|pp=83-85}} On 27 August, [[Leopold II, Holy Roman Emperor|Emperor Leopold II]] and [[Frederick William II of Prussia]] issued the [[Declaration of Pillnitz]] declaring their support for Louis, and hinting at an invasion of France on his behalf. In reality, Leopold and Frederick had met to discuss the [[Partitions of Poland]], and the Declaration was primarily made to satisfy Comte d'Artois and other \u00E9migr\u00E9s. Nevertheless, the threat rallied popular support behind the regime.{{sfn|Soboul|1975|pp=226\u2013227}}\r\n\r\nBased on a motion proposed by Robespierre, existing deputies were barred from [[1791 French legislative election|elections]] held in early September for the [[French Legislative Assembly]]. Although Robespierre himself was one of those excluded, his support in the clubs gave him a political power base not available to Lafayette and Bailly, who resigned respectively as head of the National Guard and the Paris Commune. The new laws were gathered together in the [[French Constitution of 1791|1791 Constitution]], and submitted to Louis XVI, who pledged to defend it \"from enemies at home and abroad\". On 30 September, the Constituent Assembly was dissolved, and the Legislative Assembly convened the next day.{{sfn|Lefebvre|1962|p=212}}\r\n\r\n===Fall of the monarchy===\r\n\r\nThe Legislative Assembly is often dismissed by historians as an ineffective body, compromised by divisions over the role of the monarchy which were exacerbated by Louis' resistance to limitations on his powers and attempts to reverse them using external support.{{sfn|Lyons|1975|p=5}} Restricting the franchise to those who paid a minimum amount of tax meant only 4 out of 6 million Frenchmen over 25 were able to vote; it largely excluded the ''sans culottes'' or urban working class, who increasingly saw the new regime as failing to meet their demands for bread and work.{{sfn|Mitchell|1984|pp=356-360}}\r\n\r\nThis meant the new constitution was opposed by significant elements inside and outside the Assembly, itself split into three main groups. 245 members were affiliated with Barnave's ''[[Feuillant (political group)|Feuillants]]'', constitutional monarchists who considered the Revolution had gone far enough, while another 136 were Jacobin leftists who supported a republic, led by Brissot and usually referred to as ''Brissotins''.{{sfn|Schama|1989|p=582}} The remaining 345 belonged to ''[[The Plain|La Plaine]]'', a central faction who switched votes depending on the issue; many of whom shared ''Brissotins'' suspicions as to Louis' commitment to the Revolution.{{sfn|Schama|1989|p=582}} After Louis officially accepted the new Constitution, one response was recorded as being \"''Vive le roi, s'il est de bon foi!''\", or \"Long live the king \u2013 if he keeps his word\".{{sfn|Thompson|1932|p=77}}\r\n\r\nAlthough a minority, the ''Brissotins'' control of key committees allowed them to focus on two issues, both intended to portray Louis as hostile to the Revolution by provoking him into using his veto. The first concerned \u00E9migr\u00E9s; between October and November, the Assembly approved measures confiscating their property and threatening them with the death penalty.{{sfn|Schama|1989|pp=586-587}} The second was non-juring priests, whose opposition to the Civil Constitution led to a state of near civil war in southern France, which Bernave tried to defuse by relaxing the more punitive provisions. On 29 November, the Assembly passed a decree giving refractory clergy eight days to comply, or face charges of 'conspiracy against the nation', which even Robespierre viewed as too far, too soon. As expected, Louis vetoed both.{{sfn|Schama|1989|pp=585-586}}\r\n\r\n[[File:Jacques Bertaux - Prise du palais des Tuileries - 1793.jpg|thumb|upright=1.0|left|The storming of the Tuileries Palace, 10 August 1792]]\r\n\r\nAccompanying this was a campaign for war against Austria and Prussia, also led by Brissot, whose aims have been interpreted as a mixture of cynical calculation and revolutionary idealism. While exploiting popular anti-Austrianism, it reflected a genuine belief in exporting the values of political liberty and popular sovereignty.{{sfn|Lalev\u00E9e|2019|pp=67-70}} Ironically, Marie Antoinette headed a faction within the court that also favoured war, seeing it as a way to win control of the military, and restore royal authority. In December 1791, Louis made a speech in the Assembly giving foreign powers a month to disband the \u00E9migr\u00E9s or face war, which was greeted with enthusiasm by supporters and suspicion from opponents.{{sfn|Schama|1989|p=586}}\r\n\r\nBernave's inability to build a consensus in the Assembly resulted in the appointment of a new government, chiefly composed of ''Brissotins''. On 20 April 1792 the [[French Revolutionary Wars]] began when France armies attacked Austrian and Prussian forces along their borders, before suffering a series of [[Louis XVI and the Legislative Assembly#The initial disasters of war|disastrous defeats]]. In an effort to mobilise popular support, the government ordered non-juring priests to swear the oath or be deported, dissolved the [[Constitutional Guard]] and replaced it with 20,000 ''f\u00E9d\u00E9r\u00E9s''; Louis agreed to disband the Guard, but vetoed the other two proposals, while Lafayette called on the Assembly to suppress the clubs.{{sfn|Shusterman|2013|pp=88-117}}\r\n\r\nPopular anger increased when details of the [[Brunswick Manifesto]] reached Paris on 1 August, threatening 'unforgettable vengeance' should any oppose the Allies in seeking to restore the power of the monarchy. [[Insurrection of 10 August 1792|On the morning of 10 August]], a combined force of Parisian National Guard and provincial f\u00E9d\u00E9r\u00E9s attacked the Tuileries Palace, killing many of the [[Swiss Guards|Swiss Guard]] protecting it.{{sfn|Dwyer|2008|pp=99-100}} Louis and his family took refuge with the Assembly and shortly after 11:00 am, the deputies present voted to 'temporarily relieve the king', effectively suspending the monarchy.{{sfn|McPhee|2012|pp=164\u2013166}}\r\n\r\n== First Republic (1792\u20131795) ==\r\n=== Proclamation of the First Republic ===\r\n{{main|National Convention}}\r\n[[File:Execution of Louis XVI.jpg|thumb|right|upright=1.0|[[Execution of Louis XVI]] in the [[Place de la Concorde]], facing the empty pedestal where the statue of his grandfather, [[Louis XV]] previously stood]]\r\n\r\nIn late August, [[1792 French National Convention election|elections]] were held for the [[National Convention]]; voter restrictions meant those cast fell to 3.3 million, versus 4 million in 1791, while intimidation was widespread.{{sfn|Crook|1996 |p=94}} The former ''Brissotins'' now split into moderate ''[[Girondins]]'' led by Brissot, and radical ''[[Montagnard (French Revolution)|Montagnards]]'', headed by [[Maximilien Robespierre]], [[Georges Danton]] and [[Jean-Paul Marat]]. While loyalties constantly shifted, around 160 of the 749 deputies were Girondists, 200 Montagnards and 389 members of ''La Plaine''. Led by [[Bertrand Bar\u00E8re]], [[Pierre Joseph Cambon]] and [[Lazare Carnot]], as before this central faction acted as a [[swing vote]].{{sfn|Shusterman|2013|pp=223-269}}\r\n\r\nIn the [[September Massacres]], between 1,100 to 1,600 prisoners held in Parisian jails were [[extrajudicial killings|summarily executed]], the vast majority of whom were common criminals.{{sfn|Lewis|2002|p=38}} A response to the capture of [[Longwy]] and [[Verdun]] by Prussia, the perpetrators were largely National Guard members and ''[[f\u00E9d\u00E9r\u00E9s]]'' on their way to the front. Responsibility is disputed, but even moderates expressed sympathy for the action, which soon spread to the provinces; the killings reflected widespread concern over social disorder {{sfn|Tackett|2011|pp=54-55}}\r\n\r\nOn 20 September, the French army won a stunning victory over the Prussians at [[Battle of Valmy|Valmy]]. Emboldened by this, on 22 September the Convention replaced the monarchy with the [[French First Republic]] and introduced a new [[French Republican Calendar|calendar]], with 1792 becoming \"Year One\".{{sfn|Bakker|2008|p=49}} The next few months were taken up with the trial of ''Citoyen Louis Capet'', formerly Louis XVI. While the Convention was evenly divided on the question of his guilt, members were increasingly influenced by radicals centred in the Jacobin clubs and Paris Commune. The [[Brunswick Manifesto]] made it easy to portray Louis as a threat to the Revolution, apparently confirmed when extracts from his [[Armoire de fer|personal correspondence]] were published showed him conspiring with Royalist exiles serving in the Prussian and Austrian armies.{{sfn|Barton|1967|pp=146-160}}\r\n\r\nOn 17 January 1793, the Assembly condemned Louis to death for \"conspiracy against public liberty and general safety\", by 361 to 288; another 72 members voted to execute him subject to a variety of delaying conditions. The sentence was carried out on 21 January on the ''Place de la R\u00E9volution'', now the [[Place de la Concorde]].{{sfn|Doyle|1990|p=196}} Horrified conservatives across Europe called for the destruction of revolutionary France; in February the Convention anticipated this by declaring war on [[Kingdom of Great Britain|Britain]] and the [[Dutch Republic]]; these countries were later joined by [[Enlightenment Spain|Spain]], [[Portuguese Empire|Portugal]], [[Kingdom of Naples|Naples]] and the [[Grand Duchy of Tuscany|Tuscany]] in the [[War of the First Coalition]].{{sfn|Wasson|2009|p=118}}\r\n\r\n=== Political crisis and fall of the Girondins ===\r\n\r\nThe Girondins hoped war would unite the people behind the government and provide an excuse for rising prices and food shortages, but found themselves the target of popular anger. Many left for the provinces. The first conscription measure or ''[[lev\u00E9e en masse]]'' on 24 February sparked riots in Paris and other regional centres. Already unsettled by changes imposed on the church, in March the traditionally conservative and royalist [[Vend\u00E9e]] rose in revolt. On 18th, [[Charles Fran\u00E7ois Dumouriez|Dumouriez]] was defeated at [[Battle of Neerwinden (1793)|Neerwinden]] and defected to the Austrians. Uprisings followed in [[Bordeaux]], [[Lyon]], [[Toulon]], [[Marseilles]] and [[Caen]]. The Republic seemed on the verge of collapse.{{sfn|Shusterman|2013|pp=143-173}}\r\n\r\nThe crisis led to the creation on 6 April 1793 of the [[Committee of Public Safety]], an executive committee accountable to the convention.{{sfn|Shusterman|2013|pp=271-312}} The Girondins made a fatal political error by indicting Marat before the [[Revolutionary Tribunal]] for allegedly directing the September massacres; he was quickly acquitted, further isolating the Girondins from the ''sans-culottes''. When [[Jacques H\u00E9bert]] called for a popular revolt against the \"henchmen of Louis Capet\" on 24 May, he was arrested by the [[Commission of Twelve]], a Girondin-dominated tribunal set up to expose 'plots'. In response to protests by the Commune, the Commission warned \"if by your incessant rebellions something befalls the representatives of the nation,...Paris will be obliterated\".{{sfn|Shusterman|2013|pp=143-173}}\r\n\r\n[[File:Jacques-Louis David - La Mort de Marat.jpg|thumb|left|upright=0.8|''[[The Death of Marat]]'' by [[Jacques-Louis David]] (1793)]]\r\n\r\nGrowing discontent allowed the clubs to mobilise against the Girondins. Backed by the Commune and elements of the National Guard, on 31 May they attempted to seize power in a [[Insurrection of 31 May-2 June 1793|coup]]. Although the coup failed, on 2 June the convention was surrounded by a crowd of up to 80,000, demanding cheap bread, unemployment pay and political reforms, including restriction of the vote to the ''sans-culottes'', and the right to remove deputies at will.{{sfn|Schama|1989|p=724}} Ten members of the commission and another twenty-nine members of the Girondin faction were arrested, and on 10 June, the Montagnards took over the Committee of Public Safety.{{sfn|Schama|1989|pp=725-726}}\r\n\r\nMeanwhile, a committee led by Robespierre's close ally [[Louis Antoine de Saint-Just|Saint-Just]] was tasked with preparing a new [[French Constitution of 1793|Constitution]]. Completed in only eight days, it was ratified by the convention on 24 June, and contained radical reforms, including [[universal male suffrage]] and abolition of slavery in French colonies. However, normal legal processes were suspended following the assassination of Marat on 13 July by the Girondist [[Charlotte Corday]], which the Committee of Public Safety used as an excuse to take control. The 1793 Constitution itself was suspended indefinitely in October.{{sfn|Kennedy|2000|p=53}}\r\n\r\nKey areas of focus for the new government included creating a new state ideology, economic regulation and winning the war.{{sfn|Schama|1989|p=756}} The urgent task of suppressing internal dissent was helped by divisions among their opponents; while areas like the Vend\u00E9e and [[Brittany]] wanted to restore the monarchy, most supported the Republic but opposed the regime in Paris. On 17 August, the Convention voted a second ''lev\u00E9e en masse''; despite initial problems in equipping and supplying such large numbers, by mid-October Republican forces had re-taken Lyon, Marseilles and Bordeaux, while defeating Coalition armies at [[Battle of Hondschoote|Hondschoote]] and [[Battle of Wattignies|Wattignies]].{{sfn|Schama|1989|p=766}}\r\n\r\n=== Reign of Terror ===\r\n{{Main|Reign of Terror}}\r\n[[File:Octobre 1793, supplice de 9 \u00E9migr\u00E9s.jpg|thumb|Nine ''[[French emigration (1789\u20131815)|\u00E9migr\u00E9s]]'' are executed by [[guillotine]], 1793]]\r\nThe [[Reign of Terror]] began as a way to harness revolutionary fervour, but quickly degenerated into the settlement of personal grievances. At the end of July, the Convention set [[General maximum|price controls]] over a wide range of goods, with the death penalty for hoarders, and on 9 September 'revolutionary groups' were established to enforce them. On 17th, the [[Law of Suspects]] ordered the arrest of suspected \"enemies of freedom\", initiating what became known as the \"Terror\". According to archival records, from September 1793 to July 1794 some 16,600 people were executed on charges of counter-revolutionary activity; another 40,000 may have been summarily executed or died awaiting trial.{{sfn|Gough|1998|p=77}}\r\n\r\nFixed prices, death for 'hoarders' or 'profiteers', and confiscation of grain stocks by groups of armed workers meant that by early September Paris was suffering acute food shortages. However, France's biggest challenge was servicing the huge public debt inherited from the former regime, which continued to expand due to the war. Initially the debt was financed by sales of confiscated property, but this was hugely inefficient; since few would buy assets that might be repossessed, fiscal stability could only be achieved by continuing the war until French counter-revolutionaries had been defeated. As internal and external threats to the Republic increased, the position worsened; dealing with this by printing ''[[assignats]]'' led to inflation and higher prices.{{sfn|White|1995|p=242}}\r\n\r\nOn 10 October, the Convention recognised the Committee of Public Safety as the supreme [[National Convention#Revolutionary government|Revolutionary Government]], and suspended the Constitution until peace was achieved.{{sfn|Kennedy|2000|p=53}} In mid-October, Marie Antoinette was found guilty of a long list of crimes and guillotined; two weeks later, the Girondist leaders arrested in June were also executed, along with [[Louis Philippe II, Duke of Orl\u00E9ans|Philippe \u00C9galit\u00E9]]. Terror was not confined to Paris; over 2,000 were killed after the recapture of Lyons.{{sfn|Schama|1989|p=784}}\r\n\r\n[[File:Georges Danton.jpg|thumb|left|upright=0.8|[[Georges Danton]]; Robespierre's close friend and ''Montagnard'' leader, executed 5 April 1794]]\r\n\r\nAt [[Second Battle of Cholet|Cholet]] on 17 October, the Republican army won a decisive victory over the [[War in the Vend\u00E9e|Vend\u00E9e rebels]], and the survivors escaped into Brittany. Another defeat at [[Battle of Le Mans (1793)|Le Mans]] on 23 December ended the rebellion as a major threat, although the insurgency continued until 1796. The extent of the brutal repression that followed has been debated by French historians since the mid-19th century.{{sfn|Cough|1987|pp=977-988}} Between November 1793 to February 1794, over 4,000 were [[Drownings at Nantes|drowned in the Loire at Nantes]] under the supervision of [[Jean-Baptiste Carrier]]. Historian Reynald Secher claims that as many as 117,000 died between 1793 and 1796. Although those numbers have been challenged, [[Fran\u00E7ois Furet]] concluded it \"not only revealed massacre and destruction on an unprecedented scale, but a zeal so violent that it has bestowed as its legacy much of the region's identity.\"{{sfn|Furet, Ozouf|1989|p=175}} {{efn|Other estimates of the death toll range from 170,000 {{sfn|Hussenet|2007|p=148}} to 200,000\u2013250,000 {{sfn|Martin|1987|p=?}}}}\r\n\r\nAt the height of the Terror, the slightest hint of counter-revolutionary thought could place one under suspicion, and even its supporters were not immune. Under the pressure of events, splits appeared within the ''Montagnard'' faction, with violent disagreements between radical ''[[H\u00E9bertists]]'' and moderates led by Danton.{{efn|In one exchange, a H\u00E9bertist named Vadier threatened to 'gut that fat [[turbot]], Danton', who replied that if he tried, he (Danton) would 'eat his brains and shit in his skull'.{{sfn|Schama|1989|p=814}}}} Robespierre saw their dispute as de-stabilising the regime, and, as a [[deist]], he objected to the [[Dechristianization of France during the French Revolution|anti-religious policies]] advocated by the [[atheist]] H\u00E9bert, who was arrested and executed on 24 March with 19 of his colleagues, including Carrier.{{sfn|Schama|1989|p=816}} To retain the loyalty of the remaining H\u00E9bertists, Danton was arrested and executed on 5 April with [[Camille Desmoulins]], after a [[show trial]] that arguably did more damage to Robespierre than any other act in this period.{{sfn|Schama|1989|p=819}}\r\n\r\nThe [[Law of 22 Prairial]] (10 June) denied \"enemies of the people\" the right to defend themselves. Those arrested in the provinces were now sent to Paris for judgement; from March to July, executions in Paris increased from five to twenty-six a day.{{sfn|Schama|1989|p=837}} Many Jacobins ridiculed the festival of the [[Cult of the Supreme Being]] on 8 June, a lavish and expensive ceremony led by Robespierre, who was also accused of circulating claims he was a second Messiah. Relaxation of [[price controls]] and rampant inflation caused increasing unrest among the ''sans-culottes'', but the [[Flanders Campaign#The French counter-offensive|improved military situation]] reduced fears the Republic was in danger. Many feared their own survival depended on Robespierre's removal; during a meeting on 29 June, three members of the Committee of Public Safety called him a dictator in his face.{{sfn|Schama|1989|p=838}}\r\n\r\n[[File:Execution robespierre, saint just....jpg|thumb|right|upright=1.15|The execution of Robespierre on 28 July 1794 marked the end of the [[Reign of Terror]].]]\r\n\r\nRobespierre responded by not attending sessions, allowing his opponents to build a coalition against him. In a speech made to the convention on 26 July, he claimed certain members were conspiring against the Republic, an almost certain death sentence if confirmed. When he refused to give names, the session broke up in confusion. That evening he made the same speech at the Jacobins club, where it was greeted with huge applause and demands for execution of the 'traitors'. It was clear if his opponents did not act, he would; in the Convention next day, [[9 Thermidor (Fall of Robespierre)|Robespierre and his allies]] were shouted down. His voice failed when he tried to speak, a deputy crying \"The blood of Danton chokes him!\"{{sfn|Schama|1989|p=844}}\r\n\r\nThe Convention authorised [[Maximilien Robespierre#Arrest|his arrest]]; he and his supporters took refuge in the Hotel de Ville, defended by the National Guard. That evening, units loyal to the Convention stormed the building, and Robespierre was arrested after a failed suicide attempt. He was executed on 28 July with 19 colleagues, including Saint-Just and [[Georges Couthon]], followed by 83 members of the Commune.{{sfn|Schama|1989|p=845}} The Law of 22 Prairial was repealed, any surviving Girondists reinstated as deputies, and the Jacobin Club was closed and banned.{{sfn|Soboul|1975|pp=425\u2013428}}\r\n\r\nThere are various interpretations of the Terror and the violence with which it was conducted; Marxist historian [[Albert Soboul]] saw it as essential to defend the Revolution from external and internal threats. [[Fran\u00E7ois Furet]] argues the intense ideological commitment of the revolutionaries and their utopian goals required the extermination of any opposition.{{sfn|Furet|1989|p=222}} A middle position suggests violence was not inevitable but the product of a series of complex internal events, exacerbated by war.{{sfn|Hanson|2009|p=?}}\r\n\r\n=== Thermidorean reaction ===\r\nThe bloodshed did not end with the death of Robespierre; [[Southern France]] saw a wave of [[First White Terror|revenge killings]], directed against alleged Jacobins, Republican officials and Protestants. Although the victors of Thermidor asserted control over the Commune by executing their leaders, some of the leading \"terrorists\"{{citation needed|date=November 2020}} retained their positions. They included [[Paul Barras]], later chief executive of the [[French Directory]], and [[Joseph Fouch\u00E9]], director of the killings in Lyon who served as [[Minister of Police (France)|Minister of Police]] under the Directory, the Consulate and [[First French Empire|Empire]]. Others were exiled or prosecuted, a process that took several months.{{sfn|Andress|2006|p=237}}\r\n\r\n[[File:Paul Barras directeur.jpg|left|thumb|upright=0.8|Former Viscount and Montagnard [[Paul Barras]], who took part in the Thermidorean reaction and later headed the [[French Directory]]]]\r\n\r\nThe December 1794 [[Treaty of La Jaunaye]] ended the [[Chouannerie]] in western France by allowing freedom of worship and the return of non-juring priests.{{sfn|Andress|2006|p=354}} This was accompanied by military success; in January 1795, French forces helped the Dutch [[Patriottentijd|Patriots]] set up the [[Batavian Republic]], securing their northern border.{{sfn|Schama|1977|pp=178\u2013192}} The war with Prussia was concluded in favour of France by the [[Peace of Basel]] in April 1795, while Spain made peace shortly thereafter.{{sfn|Hargreaves-Mawdsley|1968|pp=175-176}}\r\n\r\nHowever, the Republic still faced a crisis at home. Food shortages arising from a poor 1794 harvest were exacerbated in Northern France by the need to supply the army in [[Flanders]], while the winter was the worst since 1709.{{sfn|Lyons|1975|p=15}} By April 1795, people were starving and the ''assignat'' was worth only 8% of its face value; in desperation, the Parisian poor [[Insurrection of 12 Germinal, Year III|rose again]].{{sfn|Woronoff|1984|p=10}} They were quickly dispersed and the main impact was another round of arrests, while Jacobin prisoners in Lyon were summarily executed.{{sfn|Woronoff|1984|p=15}}\r\n\r\nA committee drafted a new [[Constitution of the Year III|constitution]], approved by [[plebiscite]] on 23 September 1795 and put into place on 27th.{{sfn|Doyle|1989|p=320}} Largely designed by [[Pierre Claude Fran\u00E7ois Daunou|Pierre Daunou]] and [[Fran\u00E7ois Antoine de Boissy d'Anglas|Boissy d'Anglas]], it established a [[bicameral legislature]], intended to slow down the legislative process, ending the wild swings of policy under the previous unicameral systems. The [[Council of 500]] was responsible for drafting legislation, which was reviewed and approved by the [[Council of Ancients]], an upper house containing 250 men over the age of 40. Executive power was in the hands of five Directors, selected by the Council of Ancients from a list provided by the lower house, with a five-year mandate.{{sfn|Lyons|1975|pp=18-19}}\r\n\r\nDeputies were chosen by indirect election, a total franchise of around 5 million voting in primaries for 30,000 electors, or 0.6% of the population. Since they were also subject to stringent property qualification, it guaranteed the return of conservative or moderate deputies. In addition, rather than dissolving the previous legislature as in 1791 and 1792, the so-called 'law of two-thirds' ruled only 150 new deputies would be elected each year. The remaining 600 ''Conventionnels'' kept their seats, a move intended to ensure stability.{{sfn|Lyons|1975|p=19}}\r\n\r\n== Directory (1795\u20131799) ==\r\n{{main|French Directory}}\r\n[[File:Attaque de la Convention nationale, 1790.jpg|thumb|right|upright=1.0|Troops under [[Napoleon]] fire on Royalist insurgents in Paris, [[13 Vend\u00E9miaire|5 October 1795]]]]\r\n\r\nThe Directory has a poor reputation amongst historians; for Jacobin sympathisers, it represented the betrayal of the Revolution, while Bonapartists emphasised its corruption to portray Napoleon in a better light.{{sfn|Lyons|1975|p=2}} Although these criticisms were certainly valid, it also faced internal unrest, a stagnating economy and an expensive war, while hampered by the impracticality of the constitution. Since the Council of 500 controlled legislation and finance, they could paralyse government at will, and as the Directors had no power to call new elections, the only way to break a deadlock was to rule by decree or use force. As a result, the Directory was characterised by \"chronic violence, ambivalent forms of justice, and repeated recourse to heavy-handed repression.\"{{sfn|Brown|2006|p=1}}\r\n\r\nRetention of the ''Conventionnels'' ensured the [[Thermidorians]] held a majority in the legislature and three of the five Directors, but they faced an increasing challenge from the right. On 5 October, Convention troops led by [[Napoleon]] put down a [[13 Vend\u00E9miaire|royalist rising]] in Paris; when the first [[1795 French Directory election|elections]] were held two weeks later, over 100 of the 150 new deputies were royalists of some sort.{{sfn|Lyons|1975|pp=19-20}} The power of the Parisian ''san culottes'' had been broken by the suppression of the May 1795 revolt; relieved of pressure from below, the Jacobins became natural supporters of the Directory against those seeking to restore the monarchy.{{sfn|Lyons|1975|pp=27-28}}\r\n\r\nRemoval of price controls and a collapse in the value of the ''assignat'' led to inflation and soaring food prices. By April 1796, over 500,000 Parisians were reportedly in need of relief, resulting in the May insurrection known as the [[Conspiracy of the Equals]]. Led by the revolutionary [[Fran\u00E7ois-No\u00EBl Babeuf]], their demands included the implementation of the 1793 Constitution and a more equitable distribution of wealth. Despite limited support from sections of the military, it was easily crushed, with Babeuf and other leaders executed.{{sfn|Lyons|1975|pp=32-33}} Nevertheless, by 1799 the economy had been stabilised and important reforms made allowing steady expansion of French industry; many remained in place for much of the 19th century.{{sfn|Lyons|1975|p=175}}\r\n\r\nPrior to 1797, three of the five Directors were firmly Republican; Barras, [[Louis Marie de La R\u00E9velli\u00E8re-L\u00E9peaux|R\u00E9velli\u00E8re-L\u00E9peaux]] and [[Jean-Fran\u00E7ois Rewbell]], as were around 40% of the legislature. The same percentage were broadly [[Club de Clichy|centrist]] or unaffiliated, along with two Directors, [[\u00C9tienne-Fran\u00E7ois Letourneur]] and [[Lazare Carnot]]. Although only 20% were committed Royalists, many centrists supported the restoration of the exiled [[Louis XVIII of France|Louis XVIII]] in the belief this would end the [[War of the First Coalition]] with Britain and Austria.{{sfn|McLynn|1997|p=151}} The elections of May 1797 resulted in significant gains for the right, with Royalists [[Jean-Charles Pichegru]] elected President of the Council of 500, and [[Fran\u00E7ois-Marie, marquis de Barth\u00E9lemy|Barth\u00E9lemy]] appointed a Director.{{sfn|McLynn|1997|p=150}}\r\n\r\n[[File:Bouchot - Le general Bonaparte au Conseil des Cinq-Cents.jpg|thumb|left|upright=0.8|[[Napol\u00E9on Bonaparte]] in the Council of 500 during [[18 Brumaire]], 9 November 1799]]\r\n\r\nWith Royalists apparently on the verge of power, the Republicans staged a [[Coup of 18 Fructidor|coup on 4 September]]. Using troops from Bonaparte's [[Army of Italy (France)|Army of Italy]] under [[Pierre Augereau]], the Council of 500 was forced to approve the arrest of Barth\u00E9lemy, Pichegru and Carnot. The election results were cancelled, sixty-three leading royalists deported to [[French Guiana]] and new laws passed against \u00E9migr\u00E9s, Royalists and ultra-Jacobins. Although the power of the monarchists had been destroyed, it opened the way for direct conflict between Barras and his opponents on the left.{{sfn|McLynn|1997|p=155}}\r\n\r\nDespite general war weariness, fighting continued and the [[1798 French Directory election|1798 elections]] saw a resurgence in Jacobin strength. The [[French campaign in Egypt and Syria|invasion of Egypt]] in July 1798 confirmed European fears of French expansionism, and the [[War of the Second Coalition]] began in November. Without a majority in the legislature, the Directors relied on the army to enforcing decrees and extract revenue from conquered territories. This made generals like Bonaparte and [[Barth\u00E9lemy Catherine Joubert|Joubert]] essential political players, while both the army and the Directory became notorious for their corruption.{{sfn|McLynn|1997|p=208}}\r\n\r\nIt has been suggested the Directory did not collapse for economic or military reasons, but because by 1799, many 'preferred the uncertainties of authoritarian rule to the continuing ambiguities of parliamentary politics'.{{sfn|Hunt|Lansky|Hanson|1979|p=735-736}} The architect of its end was Siey\u00E8s, who when asked what he had done during the Terror allegedly answered \"I survived\". Nominated to the Directory, his first action was removing Barras, using a coalition that included Talleyrand and former Jacobin [[Lucien Bonaparte]], Napoleon's brother and president of the Council of 500.{{sfn|McLynn|1997|p=211}} On 9 November 1799, the [[Coup of 18 Brumaire]] replaced the five Directors with the [[French Consulate]], which consisted of three members, Bonaparte, Siey\u00E8s, and [[Roger Ducos]]; most historians consider this the end point of the French Revolution.{{sfn|McLynn|1997|p=219}}\r\n\r\n== French Revolutionary Wars ==\r\n[[File:Valmy Battle painting.jpg|thumb|right|upright=1.0|French victory at the [[Battle of Valmy]] on 20 September 1792 validated the Revolutionary idea of armies composed of citizens]]\r\n\r\nThe Revolution initiated a series of conflicts that began in 1792 and ended only with Napoleon's defeat at [[Battle of Waterloo|Waterloo]] in 1815. In its early stages, this seemed unlikely; the 1791 Constitution specifically disavowed \"war for the purpose of conquest\", and although traditional tensions between France and Austria re-emerged in the 1780s, [[Joseph II, Holy Roman Emperor|Emperor Joseph]] cautiously welcomed the reforms. Austria was [[Austro-Turkish War (1788\u20131791)|at war with the Ottomans]], as were [[Russo-Turkish War (1787\u20131792)|the Russians]], while both were negotiating with Prussia over [[Partitions of Poland|partitioning Poland]]. Most importantly, Britain preferred peace, and as Emperor [[Leopold II, Holy Roman Emperor|Leopold]] stated after the Declaration of Pillnitz, \"without England, there is no case\".{{sfn|Rothenberg|1988|pp=779-780}}\r\n\r\nIn late 1791, factions within the Assembly came to see war as a way to unite the country and secure the Revolution by eliminating hostile forces on its borders and establishing its \"natural frontiers\".{{sfn|Hayworth|2015|p=89}} France declared war on Austria in April 1792 and issued the first [[lev\u00E9e en masse|conscription]] orders, with recruits serving for twelve months. By the time peace finally came in 1815, the conflict had involved every major European power as well as the United States, redrawn the map of Europe and expanded into the [[Americas]], the [[Middle East]] and [[Indian Ocean]].{{sfn|Rothenberg|1988|p=772}}\r\n\r\nFrom 1701 to 1801, the population of Europe grew from 118 to 187 million; combined with new mass production techniques, this allowed belligerents to support large armies, requiring the mobilisation of national resources. It was a different kind of war, fought by nations rather than kings, intended to destroy their opponents' ability to resist, but also to implement deep-ranging social change. While all wars are political to some degree, this period was remarkable for the emphasis placed on reshaping boundaries and the creation of entirely new European states.{{sfn|Rothenberg|1988|pp=772-773}}\r\n\r\nIn April 1792, French armies invaded the [[Austrian Netherlands]] but suffered a series of setbacks before victory over an Austrian-Prussian army at Valmy in September. After defeating a second Austrian army at [[Battle of Jemappes|Jemappes]] on 6 November, they occupied the Netherlands, areas of the [[Rhineland]], [[County of Nice|Nice]] and [[County of Savoy|Savoy]]. Emboldened by this success, in February 1793 France declared war on the [[Dutch Republic]], Spain and Britain, beginning the [[War of the First Coalition]].{{sfn|Rothenberg|1988|p=785}} However, the expiration of the 12-month term for the 1792 recruits forced the French to relinquish their conquests. In August, new conscription measures were passed and by May 1794 the French army had between 750,000 and 800,000 men.{{sfn|Blanning|1996|pp=120-121}} Despite high rates of desertion, this was large enough to manage multiple internal and external threats; for comparison, the combined Prussian-Austrian army was less than 90,000.{{sfn|Brown|1995|p=35}}\r\n\r\n[[File:La Bataille du Pont d'Arcole.jpg|thumb|left|upright=1.0|Napoleon's [[Italian campaigns of the French Revolutionary Wars#Bonaparte's war|Italian campaigns]] reshaped the map of Italy]]\r\n\r\nBy February 1795, France had annexed the Austrian Netherlands, established their frontier on the left bank of the Rhine and replaced the Dutch Republic with the [[Batavian Republic]], a satellite state. These victories led to the collapse of the anti-French coalition; Prussia made peace in April 1795, followed soon after by Spain, leaving Britain and Austria as the only major powers still in the war.{{sfn|Hayworth|2015|p=256}} In October 1797, a series of defeats by Bonaparte in Italy led Austria to agree to the [[Treaty of Campo Formio]], in which they formally ceded the Netherlands and recognised the [[Cisalpine Republic]].{{sfn|McLynn|1997|p=157}}\r\n\r\nFighting continued for two reasons; first, French state finances had come to rely on indemnities levied on their defeated opponents. Second, armies were primarily loyal to their generals, for whom the wealth achieved by victory and the status it conferred became objectives in themselves. Leading soldiers like Hoche, Pichegru and Carnot wielded significant political influence and often set policy; [[Campo Formio]] was approved by Bonaparte, not the Directory, which strongly objected to terms it considered too lenient.{{sfn|McLynn|1997|p=157}}\r\n\r\nDespite these concerns, the Directory never developed a realistic peace programme, fearing the destabilising effects of peace and the consequent demobilisation of hundreds of thousands of young men. As long as the generals and their armies stayed away from Paris, they were happy to allow them to continue fighting, a key factor behind sanctioning Bonaparte's [[French campaign in Egypt and Syria|invasion of Egypt]]. This resulted in aggressive and opportunistic policies, leading to the War of the Second Coalition in November 1798.{{sfn|Rothenberg|1988|p=787}}\r\n\r\n==French colonial policy==\r\n[[File:Fire in Saint-Domingo 1791, German copper engraving.jpg|thumb|right|upright=1.0|The [[Haitian Revolution|Saint-Domingue]] slave revolt in 1791]]\r\n\r\nAlthough the French Revolution had a dramatic impact in numerous areas of Europe,{{cite web |title=The National Archives - Homepage |url=https:\/\/www.nationalarchives.gov.uk\/education\/resources\/french-revolution\/ |website=The National Archives |access-date=25 January 2021}}<\/ref> the French colonies felt a particular influence. As the [[Martinique|Martinican]] author [[Aim\u00E9 C\u00E9saire]] put it, \"there was in each French colony a specific revolution, that occurred on the occasion of the French Revolution, in tune with it.\"{{sfn|Dorginy|2003|pp=167\u2013180}}\r\n\r\nThe [[Haitian Revolution|Revolution]] in [[Saint-Domingue]] was the most notable example of [[Slave rebellion|slave uprisings]] in [[French colonial empire|French colonies]]. In the 1780s, Saint-Domingue was France's wealthiest possession, producing more sugar than all the [[British West Indies]] islands combined. In February 1794, the National Convention voted to abolish slavery, several months after rebels in Saint-Domingue had already seized control.{{sfn|James|1963|pp=141-142}} However, the 1794 decree was only implemented in Saint-Domingue, [[Guadeloupe]] and [[Guyane]], and was a dead letter in [[Senegal]], [[Mauritius]], [[R\u00E9union]] and [[Martinique]], the last of which had been captured by the British, and as such remained unaffected by French law.Sue Peabody, ''French Emancipation'' https:\/\/www.oxfordbibliographies.com\/view\/document\/obo-9780199730414\/obo-9780199730414-0253.xml Accessed 27 October 2019.<\/ref>\r\n\r\n== Media and symbolism ==\r\n{{main|Symbolism in the French Revolution}}\r\n\r\n=== Newspapers ===\r\n[[File:L'Ami du peuple 1.jpg|thumb|left|upright=0.8|A copy of ''L'Ami du peuple'' stained with the blood of Marat]]\r\n\r\nNewspapers and pamphlets played a central role in stimulating and defining the Revolution. Prior to 1789, there have been a small number of heavily censored newspapers that needed a royal licence to operate, but the Estates-General created an enormous demand for news, and over 130 newspapers appeared by the end of the year. Among the most significant were Marat's ''[[L'Ami du peuple]]'' and [[Elys\u00E9e Loustallot]]'s ''{{ILL|Revolutions de Paris|fr}}''.{{cite web |title=Illustrations from R\u00E9volutions de Paris |url=https:\/\/history.dartmouth.edu\/research\/student-research\/illustrations-revolutions-de-paris |website=Department of History |access-date=25 January 2021 |language=en |date=24 January 2014}}<\/ref> Over the next decade, more than 2,000 newspapers were founded, 500 in Paris alone. Most lasted only a matter of weeks but they became the main communication medium, combined with the very large pamphlet literature.{{sfn|Chisick|1993|pp=149\u2013166}}\r\n\r\nNewspapers were read aloud in taverns and clubs, and circulated hand to hand. There was a widespread assumption that writing was a vocation, not a business, and the role of the press was the advancement of civic republicanism.{{sfn|Chapman|2005|pp= 7\u201312}} By 1793 the radicals were most active but initially the royalists flooded the country with their publication the \"{{ILL|L'Ami du Roi|fr}}\" (Friends of the King) until they were suppressed.{{sfn|Chisick|1988|pp=623\u2013645}}\r\n\r\n===Revolutionary symbols===\r\nTo illustrate the differences between the new Republic and the old regime, the leaders needed to implement a new set of symbols to be celebrated instead of the old religious and monarchical symbols. To this end, symbols were borrowed from historic cultures and redefined, while those of the old regime were either destroyed or reattributed acceptable characteristics. These revised symbols were used to instil in the public a new sense of tradition and reverence for the Enlightenment and the Republic.Censer and Hunt, \"How to Read Images\" LEF CD-ROM<\/ref>\r\n\r\n====La Marseillaise====\r\n{{main|La Marseillaise}}\r\n{{Listen\r\n |filename = La Marseillaise.ogg\r\n |title = La Marseillaise\r\n |description = The French national anthem ''La Marseillaise''; text in French.}}\r\n\r\n\"[[La Marseillaise]]\" ({{IPA-fr|la ma\u0281s\u025Bj\u025B\u02D0z}}) became the [[national anthem]] of France. The song was written and composed in 1792 by [[Claude Joseph Rouget de Lisle]], and was originally titled \"''Chant de guerre pour l'Arm\u00E9e du Rhin''\". The [[French National Convention]] adopted it as the [[French First Republic|First Republic's]] anthem in 1795. It acquired its nickname after being sung in Paris by [[F\u00E9d\u00E9r\u00E9|volunteers]] from [[Marseille]] marching on the capital.\r\n\r\nThe song is the first example of the \"European march\" anthemic style, while the evocative melody and lyrics led to its widespread use as a song of revolution and incorporation into many pieces of classical and popular music. De Lisle was instructed to 'produce a hymn which conveys to the soul of the people the enthusiasm which it (the music) suggests.'{{sfn|Cerulo|1993|pp=243\u2013271}}\r\n\r\n====Guillotine====\r\n[[File:Cruikshank - The Radical's Arms.png|thumb|left|upright=0.6|Cartoon attacking the excesses of the Revolution as symbolised by the guillotine]]\r\n\r\nThe guillotine remains \"the principal symbol of the Terror in the French Revolution.\"{{sfn|Hanson|2007|p=151}} Invented by a physician during the Revolution as a quicker, more efficient and more distinctive form of execution, the guillotine became a part of popular culture and historic memory. It was celebrated on the left as the people's avenger, for example in the revolutionary song ''[[La guillotine permanente]]'',{{Sfn|Delon|Levayer|1989|pp=153\u2013154}} and cursed as the symbol of the Terror by the right.{{sfn|Hunt|Martin|Rosenwein|2003|p=664}}\r\n\r\nIts operation became a popular entertainment that attracted great crowds of spectators. Vendors sold programmes listing the names of those scheduled to die. Many people came day after day and vied for the best locations from which to observe the proceedings; knitting women ([[tricoteuse]]s) formed a cadre of hardcore regulars, inciting the crowd. Parents often brought their children. By the end of the Terror, the crowds had thinned drastically. Repetition had staled even this most grisly of entertainments, and audiences grew bored.R.F. Opie, ''Guillotine'' (2003)<\/ref>\r\n\r\n====Cockade, ''tricolore'' and liberty cap====\r\n[[File:Sans-culotte.jpg|thumb|right|upright=0.7|A ''[[sans-culotte]]'' and Tricoloure]]\r\n\r\n[[Cockade]]s were widely worn by revolutionaries beginning in 1789. They now pinned the blue-and-red cockade of Paris onto the white cockade of the ''Ancien R\u00E9gime''. [[Camille Desmoulins]] asked his followers to wear green cockades on 12 July 1789. The Paris militia, formed on 13 July, adopted a blue and red cockade. Blue and red are the traditional colours of Paris, and they are used on the city's coat of arms. Cockades with various colour schemes were used during the storming of the Bastille on 14 July.{{sfn|Crowdy|2004|p=42}}\r\n\r\nThe Liberty cap, also known as the [[Phrygian cap]], or [[Pileus (hat)|pileus]], is a brimless, felt cap that is conical in shape with the tip pulled forward. It reflects Roman republicanism and liberty, alluding to the Roman ritual of [[manumission]], in which a freed slave receives the bonnet as a symbol of his newfound liberty.{{sfn|Harden|1995|pp=66\u2013102}}\r\n\r\n== Role of women ==\r\n{{main|Women in the French Revolution|Militant feminism in the French Revolution}}\r\n[[File:Ch\u00E9rieux - Club des femmes patriotes dans une \u00E9glise - 1793.jpg|thumb|left|upright=0.8|Club of patriotic women in a church]]\r\n\r\nThe role of women in the Revolution has long been a topic of debate. Deprived of political rights under the ''Ancien Regime'', the 1791 Constitution classed them as \"passive\" citizens, leading to demands for social and political equality for women and an end to male domination. They expressed these demands using pamphlets and clubs such as the ''[[Society of the Friends of Truth|Cercle Social]]'', whose largely male members viewed themselves as contemporary feminists.{{sfn|Hunt|1996|p=123}} However, in October 1793, the Assembly banned all women's clubs and the movement was crushed; this was driven by the emphasis on masculinity in a wartime situation, antagonism towards feminine \"interference\" in state affairs due to Marie Antoinette, and traditional male supremacy.{{sfn|Devance|1977|pp=341\u2013376}} A decade later the [[Napoleonic Code]] confirmed and perpetuated women's second-class status.{{sfn|Abray|1975|pp=43\u201362}}\r\n\r\nAt the beginning of the Revolution, women took advantage of events to force their way into the political sphere, swore oaths of loyalty, \"solemn declarations of patriotic allegiance, [and] affirmations of the political responsibilities of citizenship.\" Activists included Girondists like [[Olympe de Gouges]], author of the [[Declaration of the Rights of Woman and of the Female Citizen]], and [[Charlotte Corday]], the killer of Marat. Others like [[Th\u00E9roigne de M\u00E9ricourt]], [[Pauline L\u00E9on]] and the [[Society of Revolutionary Republican Women]] supported the Jacobins, staged demonstrations in the National Assembly and took part in the October 1789 March to Versailles. Despite this, the constitutions of 1791 and 1793 denied them political rights and democratic citizenship.{{sfn|Melzer|Rabine|1992|p=79}}\r\n\r\nOn 20 June 1792 a number of armed women took part in a procession that \"passed through the halls of the Legislative Assembly, into the [[Tuileries Garden]], and then through the King's residence.\"{{sfn|Melzer|Rabine|1992|p=91}} Women also assumed a special role in the funeral of Marat, following his murder on 13 July 1793 by Corday; as part of the funeral procession, they carried the bathtub in which he died, as well as a shirt stained with his blood.{{sfn|Hufton|1992|p=31}} On 20 May 1793 women were in the forefront of a crowd demanding \"bread and the Constitution of 1793\"; when they went unnoticed, they began \"sacking shops, seizing grain and kidnapping officials.\"{{sfn|McMillan|1999|p=24}}\r\n\r\n[[File:Olympe de Gouges.png|thumb|right|upright=0.8|[[Olympe de Gouges]], Girondist author of the [[Declaration of the Rights of Woman and of the Female Citizen]], executed in November 1793]]\r\n\r\nThe [[Society of Revolutionary Republican Women]], a militant group on the far left, demanded a law in 1793 that would compel all women to wear the tricolour cockade to demonstrate their loyalty to the Republic. They also demanded vigorous price controls to keep bread \u2013 the major food of the poor people \u2013 from becoming too expensive. After the Convention passed the law in September 1793, the Revolutionary Republican Women demanded vigorous enforcement, but were countered by market women, former servants, and religious women who adamantly opposed price controls (which would drive them out of business) and resented attacks on the aristocracy and on religion. Fist fights broke out in the streets between the two factions of women.\r\n\r\nMeanwhile, the men who controlled the Jacobins rejected the Revolutionary Republican Women as dangerous rabble-rousers. At this point the Jacobins controlled the government; they dissolved the Society of Revolutionary Republican Women, and decreed that all women's clubs and associations were illegal. They sternly reminded women to stay home and tend to their families by leaving public affairs to the men. Organised women were permanently shut out of the French Revolution after 30 October 1793.{{sfn|Levy|Applewhite |Johnson|1979|pp=143\u2013149}}\r\n\r\n=== Prominent women ===\r\n[[Olympe de Gouges]] wrote a number of plays, short stories, and novels. Her publications emphasised that women and men are different, but this shouldn't prevent equality under the law. In her [[Declaration of the Rights of Woman and of the Female Citizen]] she insisted that women deserved rights, especially in areas concerning them directly, such as divorce and recognition of illegitimate children.De Gouges \"Writings\" 564\u201368<\/ref>\r\n\r\n[[Madame Roland]] (a.k.a. Manon or Marie Roland) was another important female activist. Her political focus was not specifically on women or their liberation. She focused on other aspects of the government, but was a feminist by virtue of the fact that she was a woman working to influence the world. Her personal letters to leaders of the Revolution influenced policy; in addition, she often hosted political gatherings of the Brissotins, a political group which allowed women to join. As she was led to the scaffold, Madame Roland shouted \"O liberty! What crimes are committed in thy name!\"{{sfn|Dalton|2001|pp=262\u2013267}} Many activists were punished for their actions, while some were executed for \"conspiring against the unity and the indivisibility of the Republic\".{{sfn|Beckstrand|2009|p=20}}\r\n\r\n=== Counter-revolutionary women ===\r\nCounter-revolutionary women resisted what they saw as the increasing intrusion of the state into their lives.{{sfn|Hufton|1992|p=104}} One major consequence was the [[Dechristianization of France during the French Revolution|dechristianisation]] of France, a movement strongly rejected by many devout people; especially for women living in rural areas, the closing of the churches meant a loss of normality.{{sfn|Hufton|1992|pp=106\u2013107}} This sparked a counter-revolutionary movement led by women; while supporting other political and social changes, they opposed the dissolution of the Catholic Church and revolutionary cults like the [[Cult of the Supreme Being]].{{sfn|Desan|Hunt|Nelson|2013|p=452}} [[Olwen Hufton]] argues some wanted to protect the Church from heretical changes enforced by revolutionaries, viewing themselves as \"defenders of faith\".{{sfn|Hufton|1998|p=303}}\r\n\r\nEconomically, many peasant women refused to sell their goods for [[assignats]] because this form of currency was unstable and was backed by the sale of confiscated Church property. By far the most important issue to counter-revolutionary women was the passage and the enforcement of the [[Civil Constitution of the Clergy]] in 1790. In response to this measure, women in many areas began circulating anti-oath pamphlets and refused to attend masses held by priests who had sworn oaths of loyalty to the Republic. These women continued to adhere to traditional practices such as Christian burials and naming their children after saints in spite of revolutionary decrees to the contrary.{{sfn|Hufton|1998|pp=303\u2013304}}\r\n\r\n== Economic policies ==\r\n[[File:France-500Livres-1790-uni.jpg|thumb|upright=1.0| Early ''Assignat'' of 29 September 1790: 500 [[French livres|livres]]]]\r\n\r\nThe Revolution abolished many economic constraints imposed by the ''Ancien r\u00E9gime'', including church tithes and feudal dues although tenants often paid higher rents and taxes.{{sfn|Sutherland|2002|pp=1\u201324}} All church lands were nationalised, along with those owned by Royalist exiles, which were used to back paper currency known as [[assignats]], and the feudal [[guild]] system eliminated.{{sfn|Vardi|1988|pp=704\u2013717}} It also abolished the highly inefficient system of [[Ferme g\u00E9n\u00E9rale|tax farming]], whereby private individuals would collect taxes for a hefty fee. The government seized the foundations that had been set up (starting in the 13th century) to provide an annual stream of revenue for hospitals, poor relief, and education. The state sold the lands but typically local authorities did not replace the funding and so most of the nation's charitable and [[History of education in France#Revolution|school systems were massively disrupted]]{{sfn|Palmer|1986|pp=181\u2013197}}\r\n\r\nBetween 1790 to 1796, industrial and agricultural output dropped, foreign trade plunged, and prices soared, forcing the government to finance expenditure by issuing ever increasing quantities ''assignats''. When this resulted in escalating inflation, the response was to impose price controls and persecute private speculators and traders, creating a [[Black market]]. Between 1789 to 1793, the annual deficit increased from 10% to 64% of gross national product, while annual inflation reached 3,500% after a poor harvest in 1794 and the removal of price controls. The assignats were withdrawn in 1796 but inflation continued until the introduction of the gold-based ''Franc germinal'' in 1803.{{sfn|Brezis|Crouzet|1995|pp=7\u201340}}\r\n\r\n== Long-term impact ==\r\n{{main|Influence of the French Revolution}}\r\n\r\nThe French Revolution had a major impact on European and Western history, by ending feudalism and creating the path for future advances in broadly defined individual freedoms.{{sfn|Frey|Frey| 2004|p=?}}{{sfn|Palmer|Colton|1995|p=341}}{{sfn|Feh\u00E9r|1990|pp=117\u2013130}} Its impact on [[French nationalism]] was profound, while also stimulating nationalist movements throughout Europe.{{sfn|Dann|Dinwiddy|1988|p=13}} Its influence was great in the hundreds of small German states and elsewhere, where it{{clarify|reason=refers to \"its influence\" but intended meaning was probably \"events in that place\"|date=November 2020}} was either inspired by the French example or in reaction against it.{{sfn|Keitner|2007|p=12}}\r\n\r\n=== France ===\r\nThe impact of the Revolution on French society was enormous and led to numerous changes, some of which were widely accepted, while others continue to be debated.{{sfn|Stewart|1951|pp=783\u201394}} Under Louis XIV, political power was centralised at Versailles and controlled by the monarch, whose power derived from immense personal wealth, control over the army and appointment of clergy, provincial governors, lawyers and judges.{{sfn|Thompson|1952|p=22}} In less than a year, the king was reduced to a figurehead, the nobility deprived of titles and estates and the church of its monasteries and property. Clergy, judges and magistrates were controlled by the state, and the army sidelined, with military power placed held by the revolutionary National Guard. The central elements of 1789 were the slogan \"Liberty, Equality and Fraternity\" and \"[[The Declaration of the Rights of Man and the Citizen]]\", which Lefebvre calls \"the incarnation of the Revolution as a whole.\"{{sfn|Lefebvre|1947|p=212}}\r\n\r\nThe long-term impact on France was profound, shaping politics, society, religion and ideas, and polarising politics for more than a century. Historian [[Fran\u00E7ois Victor Alphonse Aulard|Fran\u00E7ois Aulard]] writes:\r\n\r\n
\"From the social point of view, the Revolution consisted in the suppression of what was called the feudal system, in the emancipation of the individual, in greater division of landed property, the abolition of the privileges of noble birth, the establishment of equality, the simplification of life.... The French Revolution differed from other revolutions in being not merely national, for it aimed at benefiting all humanity.\"Aulard in Arthur Tilley, ed. (1922) p. 115<\/ref>{{Title missing|reason=Unverifiable; what is \"Tilley (1922)\"? |talk=Question about Aulard quotation|date=November 2020}}<\/blockquote>\r\n\r\n==== Status of the Catholic church ====\r\nOne of the most heated controversies during the Revolution was the status of the Catholic Church.{{sfn|Kennedy|1989|pp=145\u2013167}} In 1788, it held a dominant position within society; to be French meant to be a Catholic. By 1799, much of its property and institutions had been confiscated and its senior leaders dead or in exile. Its cultural influence was also under attack, with efforts made to remove such as Sundays, holy days, saints, prayers, rituals and ceremonies. Ultimately these attempts not only failed but aroused a furious reaction among the pious; opposition to these changes was a key factor behind the revolt in the Vend\u00E9e.{{sfn|Kennedy|1989|pp=338\u2013353}}\r\n\r\n[[File:Le Bataillon Carr\u00E9, Affaire de Foug\u00E8res 1793 (Square Battalion).jpg|thumb|upright=1.0|left|The 1793 [[War in the Vend\u00E9e]] was in part sparked by opposition to state persecution of the Catholic church]]\r\n\r\nOver the centuries, charitable foundations had been set up to fund hospitals, poor relief, and schools; when these were confiscated and sold off, the funding was not replaced, causing massive disruption to these support systems.{{sfn|Sutherland|2002|pp=1-24}} Under the ''Ancien r\u00E9gime'', medical assistance for the rural poor was often provided by nuns, acting as nurses but also physicians, surgeons, and apothecaries; the Revolution abolished most of these orders without replacing organised nursing support.{{sfn|McHugh|2012|pp=428\u2013456}} Demand remained strong and after 1800 nuns resumed their work in hospitals and on rural estates. They were tolerated by officials because they had widespread support and were a link between elite male physicians and distrustful peasants who needed help.{{sfn|L\u00E9onard|1977|pp=887\u2013907}}\r\n\r\nThe church was a primary target during the Terror, due to its association with \"counter-revolutionary\" elements, resulting in the persecution of priests and destruction of churches and religious images throughout France. An effort was made to replace the Catholic Church altogether with the [[Cult of Reason]], and with civic festivals replacing religious ones, leading to attacks by locals on state officials. These policies were promoted by the atheist H\u00E9bert and opposed by the deist Robespierre, who denounced the campaign and replaced the Cult of Reason with the [[Cult of the Supreme Being]].{{sfn|Censer|Hunt|2001|pp=92\u201394}}\r\n\r\nThe [[Concordat of 1801]] established the rules for a relationship between the Catholic Church and French State that lasted until it was abrogated by the [[French Third Republic]] on 11 December 1905. The Concordat was a compromise that restored some of the Church's traditional roles but not its power, lands or monasteries; the clergy became public officials controlled by Paris, not Rome, while Protestants and Jews gained equal rights.{{sfn|Ellis|1997|pp=235-255}} However, debate continues into the present over the role of religion in the public sphere and related issues such as church-controlled schools. Recent arguments over the use of Muslim religious symbols in schools, such as wearing headscarves, have been explicitly linked to the conflict over Catholic rituals and symbols during the Revolution.{{sfn| Soper|Fetzer|2003|pp=39\u201359}}\r\n\r\n==== Economics ====\r\nTwo thirds of France was employed in agriculture, which was transformed by the Revolution. With the breakup of large estates controlled by the Church and the nobility and worked by hired hands, rural France became more a land of small independent farms. Harvest taxes were ended, such as the tithe and seigneurial dues, much to the relief of the peasants. [[Primogeniture]] was ended both for nobles and peasants, thereby weakening the family patriarch. Because all the children had a share in the family's property, there was a declining birth rate.{{cite book |author=P.M. Jones |title=The Peasantry in the French Revolution |url=https:\/\/books.google.com\/books?id=s4x9_2uIoroC&pg=PA252 |year=1988 |publisher=Cambridge UP |pages=251\u201354, 265 |isbn=978-0-521-33070-1}}<\/ref>Crane Brinton, ''A decade of revolution, 1789\u20131799'' (1934) pp. 277\u201378<\/ref> Cobban says the Revolution bequeathed to the nation \"a ruling class of landowners.\"{{sfn|Cobban|1964|p=89}}\r\n\r\nIn the cities, entrepreneurship on a small scale flourished, as restrictive monopolies, privileges, barriers, rules, taxes and guilds gave way. However, the British blockade virtually ended overseas and colonial trade, hurting the cities and their supply chains. Overall, the Revolution did not greatly change the French business system, and probably helped freeze in place the horizons of the small business owner. The typical businessman owned a small store, mill or shop, with family help and a few paid employees; large-scale industry was less common than in other industrialising nations.{{sfn|Cobban|1964|pp=68-80}}\r\n\r\nA 2017 [[National Bureau of Economic Research]] paper found that the emigration of more than 100,000 individuals (predominantly supporters of the old regime) during the Revolution had a significant negative impact on income per capita in the 19th century (due to the fragmentation of agricultural holdings) but became positive in the second half of the 20th century onward (because it facilitated the rise in human capital investments).{{cite journal |last1=Franck |first1=Rapha\u00EBl |last2=Michalopoulos |first2=Stelios |s2cid=134086399 |date=October 2017 |title=Emigration during the French Revolution: Consequences in the Short and Longue Dur\u00E9e |journal=NBER Working Paper No. 23936 |doi=10.3386\/w23936 |url=https:\/\/www.minneapolisfed.org\/institute\/working-papers-institute\/iwp2.pdf|doi-access=free }}<\/ref> Another 2017 paper found that the redistribution of land had a positive impact on agricultural productivity, but that these gains gradually declined over the course of the 19th century.{{cite web |url=http:\/\/voxeu.org\/article\/economic-consequences-revolutions |title=Economic consequences of revolutions: Evidence from the 1789 French Revolution |last1=Finley |first1=Theresa |last2=Franck |first2=Raphael |date=2 December 2017 |website=VoxEU.org |access-date=2 December 2017 |last3=Johnson |first3=Noel}}<\/ref>{{cite journal |last1=Finley |first1=Theresa |last2=Franck |first2=Raphael |last3=Johnson |first3=Noel |date=6 September 2017 |title=The Effects of Land Redistribution: Evidence from the French Revolution |location=Rochester, NY |ssrn=3033094}}<\/ref>\r\n\r\n==== Constitutionalism ====\r\nThe Revolution meant an end to arbitrary royal rule and held out the promise of rule by law under a constitutional order, but it did not rule out a monarch. Napoleon as emperor set up a constitutional system (although he remained in full control), and the restored Bourbons were forced to go along with one. After the abdication of Napoleon III in 1871, the monarchists probably had a voting majority, but they were so factionalised they could not agree on who should be king, and instead the [[French Third Republic]] was launched with a deep commitment to upholding the ideals of the Revolution.Furet, ed., ''A Critical Dictionary of the French Revolution,'' pp. 479\u201393<\/ref>Robert Tombs, \"Inventing politics: from Bourbon Restoration to republican monarchy,\" in Martin S. Alexander, ed., ''French history since Napoleon'' (1999), pp. 59\u201379<\/ref> The conservative Catholic enemies of the Revolution came to power in [[Vichy France]] (1940\u201344), and tried with little success to undo its heritage, but they kept it a republic. Vichy denied the principle of equality and tried to replace the Revolutionary watchwords \"[[Libert\u00E9, \u00E9galit\u00E9, fraternit\u00E9|Liberty, Equality, Fraternity]]\" with \"Work, Family, and Fatherland.\" However, there were no efforts by the Bourbons, Vichy or anyone else to restore the privileges that had been stripped away from the nobility in 1789. France permanently became a society of equals under the law.{{sfn|Hanson|2009|p=189}}\r\n\r\n=== Communism ===\r\nThe [[Jacobin]] cause was picked up by [[Marxism|Marxists]] in the mid-19th century and became an element of [[Communism|communist thought]] around the world. In the [[Soviet Union]], \"[[Gracchi|Gracchus]]\" [[Fran\u00E7ois-No\u00EBl Babeuf|Babeuf]] was regarded as a hero.{{cite book |last1=Ko\u0142akowski |first1=Leszek |title=Main Currents of Marxism: The Founders, the Golden Age, the Breakdown |url=https:\/\/books.google.com\/books?id=qUCxpznbkaoC&pg=PA152 |year=1978 |publisher=W.W. Norton |pages=152\u201354 |isbn=978-0-393-06054-6}}<\/ref>\r\n\r\n=== Europe outside France ===\r\nEconomic historians Dan Bogart, Mauricio Drelichman, Oscar Gelderblom, and Jean-Laurent Rosenthal described [[Codification (law)|codified law]] as the French Revolution's \"most significant export.\" They wrote, \"While restoration returned most of their power to the absolute monarchs who had been deposed by Napoleon, only the most recalcitrant ones, such as Ferdinand VII of Spain, went to the trouble of completely reversing the legal innovations brought on by the French.\"{{cite journal |title=State and private institutions (Chapter 3) \u2013 The Cambridge Economic History of Modern Europe |website=Cambridge Core |date=June 2010 |doi=10.1017\/CBO9780511794834.005}}<\/ref> They also note that the French Revolution and the Napoleonic Wars caused England, Spain, Prussia and the Dutch Republic to centralize their fiscal systems to an unprecedented extent in order to finance the military campaigns of the Napoleonic Wars.\r\n\r\nAccording to [[Daron Acemoglu]], Davide Cantoni, [[Simon Johnson (economist)|Simon Johnson]], and [[James A. Robinson (economist)|James A. Robinson]] the French Revolution had long-term effects in Europe. They suggest that \"areas that were occupied by the French and that underwent radical institutional reform experienced more rapid [[urbanization]] and economic growth, especially after 1850. There is no evidence of a negative effect of French invasion.\"{{cite journal |last1=Acemoglu |first1=Daron |last2=Cantoni |first2=Davide |last3=Johnson |first3=Simon |last4=Robinson |first4=James A. |s2cid=157790320 |title=The Consequences of Radical Reform: The French Revolution |journal=[[American Economic Review]] |date=2011 |volume=101 |issue=7 |pages=3286\u20133307 |doi=10.1257\/aer.101.7.3286 |hdl=10419\/37516 |url=http:\/\/www.nber.org\/papers\/w14831.pdf}}<\/ref>\r\n\r\nA 2016 study in the ''[[European Economic Review]]'' found that the areas of Germany that were occupied by France in the 19th century and in which the Code Napoleon was applied have higher levels of trust and cooperation today.{{cite journal |last1=Buggle |first1=Johannes C. |date=1 August 2016 |title=Law and social capital: Evidence from the Code Napoleon in Germany |journal=European Economic Review |volume=87 |issue=Supplement C |pages=148\u201375 |doi=10.1016\/j.euroecorev.2016.05.003 |hdl=10419\/78237 |url=http:\/\/www.diw.de\/documents\/publikationen\/73\/diw_01.c.424945.de\/diw_sp0566.pdf}}<\/ref>\r\n\r\n==== Britain ====\r\nOn 16 July 1789, two days after the [[Storming of the Bastille]], [[John Frederick Sackville]], serving as ambassador to France, reported to [[Secretary of State for Foreign Affairs]] [[Francis Osborne, 5th Duke of Leeds]], \"Thus, my Lord, the greatest revolution that we know anything of has been effected with, comparatively speaking \u2013 if the magnitude of the event is considered \u2013 the loss of very few lives. From this moment we may consider France as a free country, the King a very limited monarch, and the nobility as reduced to a level with the rest of the nation.{{cite wikisource |last1=Alger |first1=John Goldworth |author-link1=John Goldworth Alger |title=Englishmen in the French Revolution |wslink=Englishmen in the French Revolution\/Chapter II |year=1889 |publisher=Ballantyne Press |location=London |plainchapter=Chapter II. At the Embassy |chapter=Chapter II |language=en}}<\/ref>\" Yet in Britain the majority, especially among the aristocracy, strongly opposed the French Revolution. Britain led and funded the series of coalitions that fought France from 1793 to 1815, and then restored the Bourbons.\r\n\r\nPhilosophically and politically, Britain was in debate over the rights and wrongs of revolution, in the abstract and in practicalities. The [[Revolution Controversy]] was a \"[[pamphlet war]]\" set off by the publication of ''[[A Discourse on the Love of Our Country]]'', a speech given by [[Richard Price]] to the [[Revolution Society]] on 4 November 1789, supporting the French Revolution (as he had the [[American Revolution]]), and saying that patriotism actually centers around loving the people and principles of a nation, not its ruling class. [[Edmund Burke]] responded in November 1790 with his own pamphlet, ''[[Reflections on the Revolution in France]]'', attacking the French Revolution as a threat to the aristocracy of all countries.Emma Vincent Macleod, ''A War of Ideas: British Attitudes to the War against Revolutionary France, 1792\u20131802'' (1999)<\/ref>Palmer, ''The Age of the Democratic Revolution: The Struggle, Volume II'' (1970) pp. 459\u2013505<\/ref> [[William Coxe (MP)|William Coxe]] opposed Price's premise that one's country is principles and people, not the State itself.{{cite book |last1=Clark |first1=J.C.D. |author-link=J. C. D. Clark |title=English Society: 1660\u20131832; Religion, Ideology and Politics During the Ancient Regime |url=https:\/\/books.google.com\/books?id=JAV-pVZkC7MC&pg=PA233 |access-date=16 June 2013 |year=2000 |publisher=Cambridge University Press |isbn=978-0-521-66627-5 |page=233}}<\/ref>\r\n\r\nConversely, two seminal political pieces of political history were written in Price's favour, supporting the general right of the French people to replace their State. One of the first of these \"[[Pamphlet#History|pamphlets]]\" into print was ''[[A Vindication of the Rights of Men]]'' by [[Mary Wollstonecraft]] (better known for her later treatise, sometimes described as the first feminist text, ''[[A Vindication of the Rights of Woman]]''); Wollstonecraft's title was echoed by [[Thomas Paine]]'s ''[[Rights of Man]]'', published a few months later. In 1792 [[Christopher Wyvill]] published ''Defence of Dr. Price and the Reformers of England'', a plea for reform and moderation.Graham, pp. 297\u201398.<\/ref>\r\n\r\nThis exchange of ideas has been described as \"one of the great political debates in British history\".{{cite book |last1=Crowe |first1=Ian |title=An Imaginative Whig: Reassessing the Life and Thought of Edmund Burke |url=https:\/\/books.google.com\/books?id=a3-oIBwZvFcC&pg=PA93 |access-date=17 June 2013 |year=2005 |publisher=University of Missouri Press |isbn=978-0-8262-6419-0 |page=93}}<\/ref> Even in France, there was a varying degree of agreement during this debate, English participants generally opposing the violent means that the Revolution bent itself to for its ends.On the French reception of Price's ''Discourse'' and the Revolution Society, see {{cite book |first1=R\u00E9my |last1=Duthille |chapter=1688\u20131789. Au carrefour des r\u00E9volutions : les c\u00E9l\u00E9brations de la r\u00E9volution anglaise de 1688 en Grande-Bretagne apr\u00E8s 1789 |chapter-url=http:\/\/www.pur-editions.fr\/detail.php?idOuv=2305 |title=Du Bon Usage des comm\u00E9morations : histoire, m\u00E9moire, identit\u00E9, XVIe \u2013 XVIIIe si\u00E8cles |editor-first=Bernard |editor-last=Cottret |editor2-first=Lauric |editor2-last=Henneton |location=Rennes |publisher=Presses Universitaires de Rennes |year=2010 |pages=107\u201320 |language=fr}}<\/ref>\r\n\r\nIn Ireland, the effect was to transform what had been an attempt by Protestant settlers to gain some autonomy into a mass movement led by the [[Society of United Irishmen]] involving Catholics and Protestants. It stimulated the demand for further reform throughout Ireland, especially in [[Ulster]]. The upshot was a revolt in 1798, led by [[Wolfe Tone]], that was crushed by Britain.{{cite book |last1=Pelling |first1=Nick |title=Anglo-Irish Relations: 1798 1922 |url=https:\/\/books.google.com\/books?id=ttSsGEWW3tcC&pg=PA5 |year=2002 |publisher=Routledge |pages=5\u201310 |isbn=978-0-203-98655-4}}<\/ref>\r\n\r\n==== Germany ====\r\nGerman reaction to the Revolution swung from favourable to antagonistic. At first it brought liberal and democratic ideas, the end of guilds, serfdom and the Jewish ghetto. It brought economic freedoms and agrarian and legal reform. Above all the antagonism helped stimulate and shape [[German nationalism]].{{cite book |author=Theodore S. Hamerow |title=Restoration, Revolution, Reaction: Economics and Politics in Germany, 1815\u20131871 |url=https:\/\/books.google.com\/books?id=IPNXfV2-DhcC&pg=PA22 |year=1958 |publisher=Princeton UP |pages=22\u201324, 44\u201345 |isbn=978-0-691-00755-7}}<\/ref>\r\n\r\n==== Switzerland ====\r\n{{main|Helvetic Republic}}\r\n\r\nThe French invaded Switzerland and turned it into the \"[[Helvetic Republic]]\" (1798\u20131803), a French puppet state. French interference with localism and traditions was deeply resented in Switzerland, although some reforms took hold and survived in the later [[Restoration and Regeneration in Switzerland|period of restoration]].Marc H. Lerner, \"The Helvetic Republic: An Ambivalent Reception of French Revolutionary Liberty,\" ''French History'' (2004) 18#1 pp. 50\u201375.<\/ref>Palmer, ''The Age of the Democratic Revolution'' 2:394\u2013421<\/ref>\r\n\r\n==== Belgium ====\r\n{{main|French period}}\r\n[[File:Paul-Jacob Laminit (inc.) Jahann Voeltz (dis.) Combat dans les rues de Gand, nov\u00E9mbre 1789.JPG|thumb|The [[Brabant Revolution]] broke out in the [[Austrian Netherlands]] in October 1789, inspired by the revolution in neighbouring France, but had collapsed by the end of 1790.]]\r\n\r\nThe region of modern-day Belgium was divided between two polities: the [[Austrian Netherlands]] and [[Prince-Bishopric of Li\u00E8ge]]. Both territories experienced revolutions in 1789. In the Austrian Netherlands, the [[Brabant Revolution]] succeeded in expelling Austrian forces and established the new [[United States of Belgium|United Belgian States]]. The [[Li\u00E8ge Revolution]] expelled the tyrannical Prince-Bishop and installed [[Republic of Li\u00E8ge|a republic]]. Both failed to attract international support. By December 1790, the Brabant revolution had been crushed and Li\u00E8ge was subdued the following year.\r\n\r\nDuring the Revolutionary Wars, the French invaded and occupied the region between 1794 and 1814, a time known as the [[French period]]. The new government enforced new reforms, incorporating the region into France itself. New rulers were sent in by Paris. Belgian men were drafted into the French wars and heavily taxed. Nearly everyone was Catholic, but the Church was repressed. Resistance was strong in every sector, as Belgian nationalism emerged to oppose French rule. The French legal system, however, was adopted, with its equal legal rights, and abolition of class distinctions. Belgium now had a government bureaucracy selected by merit.{{cite book |first1=E.H. |last1=Kossmann |title=The Low Countries: 1780\u20131940 |location=Oxford |publisher=Clarendon Press |year=1978 |pages=65\u201381, 101\u201302 |isbn=978-0-19-822108-1}}<\/ref>\r\n\r\n[[Antwerp]] regained access to the sea and grew quickly as a major port and business centre. France promoted commerce and capitalism, paving the way for the ascent of the [[bourgeoisie]] and the rapid growth of manufacturing and mining. In economics, therefore, the nobility declined while middle-class Belgian entrepreneurs flourished because of their inclusion in a large market, paving the way for Belgium's leadership role after 1815 in the [[Industrial Revolution]] on the Continent.Bernard A. Cook, ''Belgium'' (2005) pp. 49\u201354<\/ref>{{cite journal |first1=Samuel |last1=Clark |title=Nobility, Bourgeoisie and the Industrial Revolution in Belgium |journal=Past & Present |year=1984 |volume=105 |issue=105 |pages=140\u201375 |jstor=650548 |doi=10.1093\/past\/105.1.140}}<\/ref>\r\n\r\n==== Scandinavia ====\r\n{{main|History of Denmark#Reforms}}\r\n\r\nThe Kingdom of Denmark adopted liberalising reforms in line with those of the French Revolution, with no direct contact. Reform was gradual and the regime itself carried out [[agrarian reform]]s that had the effect of weakening absolutism by creating a class of independent peasant [[Freehold (law)|freeholder]]s. Much of the initiative came from well-organised liberals who directed political change in the first half of the 19th century.{{cite journal |first1=Henrik |last1=Horstboll |first2=Uffe |last2=Osterg\u00E5rd |title=Reform and Revolution: The French Revolution and the Case of Denmark |journal=Scandinavian Journal of History |year=1990 |volume=15 |issue=3 |pages=155\u201379 |doi=10.1080\/03468759008579195}}<\/ref>\r\n\r\n=== North America ===\r\n==== Canada ====\r\nThe press in the [[Province of Quebec (1763\u20131791)|colony of Quebec]] initially viewed the events of the Revolution positively.{{sfn|Greenwood|1993|p=57}} Press coverage in Quebec on the Revolution was reflective of public opinion in London, with the colony's press reliant on newspapers and reprints from journals from the British Isles.{{sfn|Greenwood|1993|p=58}} The early positive reception of the French Revolution had made it politically difficult to justify withholding electoral institutions from the colony to both the British and Quebec public; with the British [[Home Secretary]] [[William Grenville]] remarking how it was hardly possible to \"maintain with success,\" the denial \"to so large a body of British Subjects, the benefits of the British Constitution\".{{sfn|Greenwood|1993|p=63}} Governmental reforms introduced in the ''[[Constitutional Act 1791]]'' split Quebec into two separate colonies, [[Lower Canada]], and [[Upper Canada]]; and introduced electoral institutions to the two colonies.{{sfn|Greenwood|1993|p=63}}\r\n\r\nFrench migration to the Canadas was decelerated significantly during, and after the French Revolution; with only a small number of artisans, professionals, and religious emigres from France permitted to settle in the Canadas during that period.{{cite encyclopedia |url=https:\/\/www.thecanadianencyclopedia.ca\/en\/article\/french-immigration-in-canada |title=French Immigration in Canada |last1=Dupuis |first1=Serge |date=26 February 2018 |access-date=3 January 2020 |encyclopedia=The Canadian Encyclopedia |publisher=Historica Canada}}<\/ref> Most of these migrants moved to [[Montreal]] or [[Quebec City]], although French nobleman [[Joseph-Genevi\u00E8ve de Puisaye]] also led a small group of French royalists to settle lands north of [[York, Upper Canada|York]] (present day [[Toronto]]). The influx of religious migrants from France reinvigorated the Roman Catholic Church in the Canadas, with the refectory priests who moved to the colonies being responsible for the establishment of a number of parishes throughout the Canadas.\r\n\r\n==== United States ====\r\nThe French Revolution deeply polarised American politics, and this polarisation led to the creation of the [[First Party System]]. In 1793, as war broke out in Europe, the [[Democratic-Republican Party]] led by former [[United States Ambassador to France|American minister to France]] [[Thomas Jefferson]] favored revolutionary France and pointed to the 1778 treaty that was still in effect. [[George Washington]] and his unanimous cabinet, including Jefferson, decided that the treaty did not bind the United States to enter the war. Washington [[Proclamation of Neutrality|proclaimed neutrality]] instead.Susan Dunn, ''Sister Revolutions: French Lightning, American Light'' (2000)<\/ref> Under President [[John Adams]], a [[Federalist Party|Federalist]], an undeclared naval war took place with France from 1798 until 1799, often called the \"[[Quasi War]]\". Jefferson became president in 1801, but was hostile to Napoleon as a dictator and emperor. However, the two entered negotiations over the [[Louisiana Territory]] and agreed to the [[Louisiana Purchase]] in 1803, an acquisition that substantially increased the size of the United States.\r\n\r\n== Historiography ==\r\n{{main|Historiography of the French Revolution}}\r\n\r\nThe French Revolution has received enormous amounts of historical attention, both from the general public and from scholars and academics. The views of historians, in particular, have been characterised as falling along ideological lines, with disagreement over the significance and the major developments of the Revolution.Rude pp. 12\u201314<\/ref> [[Alexis de Tocqueville]] argued that the Revolution was a manifestation of a more prosperous middle class becoming conscious of its social importance.Rude, p. 15<\/ref>\r\n\r\nOther thinkers, like the conservative [[Edmund Burke]], maintained that the Revolution was the product of a few conspiratorial individuals who brainwashed the masses into subverting the old order, a claim rooted in the belief that the revolutionaries had no legitimate complaints.Rude, p. 12<\/ref> Other historians, influenced by [[Marxism|Marxist]] thinking, have emphasised the importance of the peasants and the urban workers in presenting the Revolution as a gigantic [[class struggle]].Rude, p. 17<\/ref> In general, scholarship on the French Revolution initially studied the political ideas and developments of the era, but it has gradually shifted towards [[social history]] that analyses the impact of the Revolution on individual lives.Rude, pp. 12\u201320<\/ref>\r\n\r\nHistorians until the late 20th century emphasised class conflicts from a largely Marxist perspective as the fundamental driving cause of the Revolution.Soboul, Albert. ''La R\u00E9volution fran\u00E7aise'', pp. 45\u201348<\/ref> The central theme of this argument was that the Revolution emerged from the rising bourgeoisie, with support from the [[sans-culottes]], who fought to destroy the aristocracy.{{cite book |author=George C. Comninel |title=Rethinking the French Revolution: Marxism and the Revisionist Challenge |url=https:\/\/books.google.com\/books?id=z9HR3ALvUXoC&pg=PA31 |year=1987 |publisher=Verso |page=31 |isbn=978-0-86091-890-5}}<\/ref> However, Western scholars largely abandoned Marxist interpretations in the 1990s. By the year 2000 many historians were saying that the field of the French Revolution was in intellectual disarray. The old model or paradigm focusing on class conflict has been discredited, and no new explanatory model had gained widespread support.{{cite journal |first1=Rebecca L. |last1=Spang |s2cid=161878110 |title=Paradigms and Paranoia: How modern Is the French Revolution? |journal=American Historical Review |year=2003 |volume=108 |issue=1 |pages=119\u201347 [esp p. 120] |doi=10.1086\/ahr\/108.1.119}}<\/ref>{{cite journal |first1=David A. |last1=Bell |s2cid=144241323 |title=Class, consciousness, and the fall of the bourgeois revolution |journal=Critical Review |year=2004 |volume=16 |issue=2\u20133 |pages=323\u201351 |doi=10.1080\/08913810408443613}}<\/ref> Nevertheless, as Spang has shown, there persists a very widespread agreement that the French Revolution was the watershed between the premodern and modern eras of Western history, and one of the most important events in history.\r\n\r\nIt marks the end of the [[early modern period]], which started around 1500 and is often seen as marking the \"dawn of the [[modern history|modern era]]\".Frey, \"Preface\"<\/ref> Within France itself, the Revolution permanently crippled the power of the aristocracy and drained the wealth of the Church, although the two institutions survived despite the damage they sustained. After the collapse of the [[First French Empire|First Empire]] in 1815, the French public lost the rights and privileges earned since the Revolution, but they remembered the participatory politics that characterised the period, with one historian commenting: \"Thousands of men and even many women gained firsthand experience in the political arena: they talked, read, and listened in new ways; they voted; they joined new organisations; and they marched for their political goals. Revolution became a tradition, and [[republicanism]] an enduring option.\"{{sfn|Hanson|2009|p=189}}\r\n\r\nSome historians argue that the French people underwent a fundamental transformation in self-identity, evidenced by the elimination of privileges and their replacement by [[Human rights|rights]] as well as the growing decline in social deference that highlighted the principle of equality throughout the Revolution.Hanson, p. 191<\/ref> The Revolution represented the most significant and dramatic challenge to political absolutism up to that point in history and spread democratic ideals throughout Europe and ultimately the world.{{cite book |last1=Riemer |first1=Neal |last2=Simon |first2=Douglas |title=The New World of Politics: An Introduction to Political Science |url=https:\/\/books.google.com\/books?id=gKa3FTpH49oC&pg=PA106 |year=1997 |publisher=Rowman & Littlefield |isbn=978-0-939693-41-2 |page=106}}<\/ref> Throughout the 19th century, the revolution was heavily analysed by economists and political scientists, who saw the [[Social class|class]] nature of the revolution as a fundamental aspect in understanding human social evolution itself. This, combined with the egalitarian values introduced by the revolution, gave rise to a classless and co-operative model for society called \"[[socialism]]\" which profoundly influenced future revolutions in France and around the world.\r\n\r\n== See also ==\r\n* [[Age of Revolution]]\r\n* [[Cordeliers]]\r\n* [[Glossary of the French Revolution]]\r\n* [[History of France]]\r\n* [[List of people associated with the French Revolution]]\r\n* [[List of political groups in the French Revolution]]\r\n* [[Mus\u00E9e de la R\u00E9volution fran\u00E7aise]]\r\n* [[Paris in the 18th Century]]\r\n* [[Timeline of the French Revolution]]\r\n\r\n== Notes ==\r\n{{notelist}}\r\n\r\n== References ==\r\n{{reflist|20em}}\r\n\r\n== Sources ==\r\n{{refbegin|40em}}\r\n* {{cite journal |last1=Abray |first1=Jane|title=Feminism in the French Revolution |journal=The American Historical Review |volume=80 |issue=1|year=1975 |pages=43\u201362|doi=10.2307\/1859051|jstor=1859051 }}\r\n* {{cite book |last=Andress |first=David |title=The Terror: The Merciless War for Freedom in Revolutionary France |publisher=Farrar Straus Giroux |year=2006 |isbn=978-0-374-27341-5}}\r\n* {{cite journal |last=Baker |first=Michael |title=French political thought at the accession of Louis XVI |journal=Journal of Modern History |year=1978 |volume=50 |issue=2 |pages=279\u2013303 |doi=10.1086\/241697 |jstor=1877422|s2cid=222427515 }}\r\n* {{cite book |author-last=Baker |author-first=Keith |editor-last=Van Kley |editor-first=Dale |title=The Idea of a Declaration of Rights in ''The French Idea of Freedom: The Old Regime and the Declaration of Rights of 1789'' |year=1995 |publisher=Stanford University Press |isbn=978-0-8047-2355-8}}\r\n* {{cite journal |last1=Barton |first1=HA |title=The Origins of the Brunswick Manifesto|journal=French Historical Studies |date=1967 |volume=5 |issue=2 |pages=146\u2013169 |doi=10.2307\/286173 |jstor=286173}}\r\n* {{cite book|last=Beckstrand|first=Lisa|title=Deviant women of the French Revolution and the rise of feminism|year=2009|publisher=Fairleigh Dickinson University Press|isbn=978-1611474008}}\r\n* {{cite book |last1=Bell |first1=David Avrom |title=The First Total War: Napoleon's Europe and the Birth of Warfare as We Know It |publisher=Mariner Books |year=2007 |isbn=978-0-618-91981-9}}\r\n* {{cite journal |last=Betros |first=Gemma |title=The French Revolution and the Catholic Church |journal=History Today |year=2010 |issue=68 |url=https:\/\/www.historytoday.com\/archive\/french-revolution-and-catholic-church}}\r\n* {{cite book |last=Blanning |first=Timothy C. W |year=1997 |title=The French Revolution: Class War or Culture Clash? |publisher=Palgrave Macmillan |isbn=978-0-333-67064-4}}\r\n* {{cite book|last1=Blanning|first1=Timothy C. W.|title=The French Revolutionary Wars: 1787\u20131802|date=1996|publisher=Hodder Arnold|isbn=978-0-340-64533-8}}\r\n* {{cite book |last=Bredin |first=Jean-Denis |title=Sieyes; la cl\u00E9 de la R\u00E9volution fran\u00E7aise |publisher=Fallois |year=1988 |language=FR}}\r\n* {{cite journal|last1=Brezis|first1=Elise S|last2=Crouzet|first2=Fran\u00E7ois|title=The role of assignats during the French Revolution: An evil or a rescuer?|journal=Journal of European Economic History|year=1995|volume=24|issue=1}}\r\n* {{cite book |last=Brown|first=Howard G|title=Ending the French Revolution: Violence, Justice, and Repression from the Terror to Napoleon |year=2006 |publisher=University of Virginia Press|isbn=978-0-8139-2546-2}}\r\n* {{cite book|last1=Brown|first1=Howard G.|title=War, Revolution, and the Bureaucratic State Politics and Army Administration in France, 1791-1799|date=1995|publisher=OUP|isbn=978-0-19-820542-5}}\r\n* {{cite journal |last1=Cerulo |first1=Karen A. |s2cid=144023960 |year=1993 |title=Symbols and the world system: national anthems and flags |journal=Sociological Forum |volume=8 |issue=2|pages=243\u2013271 |doi=10.1007\/BF01115492}}\r\n* {{cite book |last1=Censer |first1=Jack |last2=Hunt |first2=Lynn |title=Liberty, Equality, Fraternity: Exploring the French Revolution |year=2001|isbn=978-0-271-02088-4 |publisher=Pennsylvania State University Press}}\r\n* {{cite book |last1=Censer |first1=Jack |editor-last1=Klaits |editor-first1=Joseph |editor-last2=Haltzel |editor-first2=Michael |title=The French Revolution after 200 Years in ''Global Ramifications of the French Revolution'' |year=2002 |publisher=Cambridge UP |isbn=978-0-521-52447-6}}\r\n* {{cite journal|last=Chapman|first=Jane|title=Republican citizenship, ethics and the French revolutionary press|journal=Ethical Space: The International Journal of Communication Ethics|year=2005|volume=2|issue=1}}\r\n* {{cite journal|last=Chisick|first=Harvey|title=The pamphlet literature of the French revolution: An overview|journal=History of European Ideas|year=1993|volume=17|issue=2|pages=149\u2013166|doi=10.1016\/0191-6599(93)90289-3}}\r\n* {{cite journal |last=Chisick|first=Harvey|title=Pamphlets and Journalism in the Early French Revolution: The Offices of the Ami du Roi of the Abb\u00E9 Royou as a Center of Royalist Propaganda |journal=French Historical Studies |volume=15 |issue=4|year=1988 |pages=623\u2013645|doi=10.2307\/286549|jstor=286549}}\r\n* {{cite book|last=Cobban|first=Alan|title=The Social Interpretation of the French Revolution|year=1964|edition=1999|publisher=Cambridge University Press|isbn=978-0521661515}}\r\n* {{cite book |last1=Cole |first1=Alistair |last2=Campbell |first2=Peter |title=French electoral systems and elections since 1789 |year=1989 |isbn=978-0-566-05696-3}}\r\n* {{cite book |last1=Conner |first1=Clifford |title=Jean-Paul Marat: Tribune of the French Revolution |date=2012 |publisher=Pluto Press |isbn=978-0-7453-3193-5}}\r\n* {{cite journal |last=Cough |first=Hugh |title=Genocide and the Bicentenary: the French Revolution and the Revenge of the Vendee |journal=Historical Journal |volume=30 |issue=4 |year=1987|pages=977\u2013988 |doi=10.1017\/S0018246X00022433 }}\r\n* {{cite book |last1=Crook |first1=Malcolm |title=Elections in the French Revolution: An Apprenticeship in Democracy, 1789-1799 |date=1996 |publisher=Cambridge University Press |isbn=978-0-521-45191-8}}\r\n* {{cite book|last=Crowdy|first=Terry|title=French Revolutionary Infantry 1789\u20131802|year=2004|publisher=Osprey|isbn=978-1-84176-660-7}}\r\n* {{cite journal|last=Dalton|first=Susan|title=Gender and the Shifting Ground of Revolutionary Politics: The Case of Madame Roland|journal=Canadian Journal of History|volume=36|issue=2|year=2001|pages=259\u2013282|doi=10.3138\/cjh.36.2.259|pmid=18711850}}\r\n* {{cite book |last1=Dann |first1=Otto |last2=Dinwiddy |first2=John |title=Nationalism in the Age of the French Revolution |year=1988 |publisher=Continuum |isbn=978-0-907628-97-2 |ref={{harvid|Dann, Dinwiddy|1988}}}}\r\n* {{Cite book|last=Delon|first=Michel|last2=Levayer|first2=Paul-\u00C9douard|title=Chansonnier r\u00E9volutionnaire|publisher=\u00C9ditions Gallimard|date=1989|language=fr|isbn=2-07-032530-X}}\r\n* {{cite book|last1=Desan|first1=Suzanne|last2=Hunt|first2=Lynn|last3=Nelson|first3=William|title=The French Revolution in Global Perspective|year=2013|publisher=Cornell University Press|isbn=978-0801450969}}\r\n* {{cite journal |last1=Devance |first1=Louis|title=Le F\u00E9minisme pendant la R\u00E9volution Fran\u00E7aise|journal=Annales Historiques de la R\u00E9volution Fran\u00E7aise|volume=49 |issue=3|year=1977 |language=FR}}\r\n* {{cite book|last=Dorginy|first=Marcel|title=The Abolitions of Slavery: From L.F. Sonthonax to Victor Schoelcher, 1793, 1794, 1848|publisher=Berghahn Books|year=2003|isbn=978-1571814326}}\r\n* {{cite book |last1=Doyle |first1=William |title=The Oxford History of the French Revolution |year=1990 |publisher=Oxford University Press |edition=2002 |isbn=978-0-19-160829-2}}\r\n* {{cite book |last=Doyle |first=William |title=The French Revolution: A very short introduction |year=2001 |publisher=Oxford University Press |isbn=978-0-19-285396-7}}\r\n* {{cite book |last1=Doyle |first1=William |title=Aristocracy and its Enemies in the Age of Revolution|year=2009 |publisher=Oxford UP |isbn=978-0-19-160971-8}}\r\n* {{cite book |last1=Dwyer |first1=Philip |title=Napoleon: The Path to Power 1769\u20131799|year=2008 |publisher=Yale University Press |isbn=978-0-300-14820-6}}\r\n* {{cite book|last=Ellis|first=Geoffrey|editor-last1=Aston|editor-first1=Nigel|title=Religion according to Napoleon; the limitations of pragmatism in ''Religious Change in Europe 1650-1914: Essays for John McManners''|publisher=Clarendon Press|year= 1997|isbn=978-0198205968}}\r\n* {{cite book |last=Feh\u00E9r|first=Ferenc |title=The French Revolution and the Birth of Modernity |year=1990 |edition=1992|publisher=University of California Press|isbn=978-0520071209}}\r\n* {{cite journal |last1=Forster |first1=Robert |title=The Survival of the Nobility during the French Revolution |journal=Past & Present |volume=37 |issue=37 |year=1967 |pages=71\u201386 |doi=10.1093\/past\/37.1.71 |jstor=650023}}\r\n* {{cite book |last=Fremont-Barnes |first=Gregory |title=Encyclopedia of the Age of Political Revolutions and New Ideologies, 1760\u20131815 |year=2007 |publisher=Greenwood |isbn=978-0-313-04951-4}}\r\n* {{cite book |last1=Frey|first1=Linda|last2=Frey|first2=Marsha|title=The French Revolution |year=2004 |publisher=Greenwood Press |isbn=978-0-313-32193-1}}\r\n* {{cite book |title=Interpreting the French Revolution |year=1981 |publisher=Cambridge UP |first1=Fran\u00E7ois |last1=Furet}}\r\n* {{cite book |last=Furet |first=Fran\u00E7ois |title=Revolutionary France, 1770\u20131880 |year=1995 |publisher=Blackwell Publishing |isbn=978-0-631-19808-6}}\r\n* {{cite book |last=Furet |first=Fran\u00E7ois |editor-last=Kafker |editor-first=Frank |title=A Deep-rooted Ideology as Well as Circumstance in ''The French Revolution: Conflicting Interpretations'' |year=1989 |edition=2002 |publisher=Krieger Publishing Company |isbn=978-1-57524-092-3}}\r\n* {{cite book |last1=Furet |first1=Fran\u00E7ois |last2=Ozouf |first2=Mona |title=A Critical Dictionary of the French Revolution |year=1989 |publisher=Harvard University Press |isbn=978-0-674-17728-4}}\r\n* {{cite journal |last1=Fursenko |first1=A.A |last2=McArthur |first2=Gilbert |title=The American and French Revolutions Compared: The View from the U.S.S.R. |journal=The William and Mary Quarterly |date=1976 |volume=33 |issue=3 |page=481 |doi=10.2307\/1921544 |jstor=1921544}}\r\n* {{cite journal |last1=Garrioch |first1=David |title=The People of Paris and Their Police in the Eighteenth Century. Reflections on the introduction of a 'modern' police force. |journal=European History Quarterly |date=1994 |volume=24 |issue=4 |pages=511\u2013535 |doi=10.1177\/026569149402400402|s2cid=144460864 }}\r\n* {{cite book |last1=Gershoy |first1=Leo |title=The Era of the French Revolution |date=1957 |publisher=Van Nostrand |location=New York |isbn=978-0898747188 |pages=16\u201317, 23}}\r\n* {{cite book |last=Goldhammer |first=Jesse |title=The headless republic : sacrificial violence in modern French thought |date=2005 |publisher=Cornell University Press |isbn=978-0-8014-4150-9 |oclc=783283094}}\r\n* {{cite book|last=Gough |first=Hugh |title=The Terror in the French Revolution |year=1998 |edition=2010|isbn=978-0-230-20181-1 |publisher=Palgrave}}\r\n* {{cite book |last1=Greenwood |first1=Frank Murray |title=Legacies of Fear: Law and Politics in Quebec in the Era of the French Revolution |publisher=University of Toronto Press |year=1993 |isbn=978-0-8020-6974-0}}\r\n* {{cite book |last1=Hampson |first1=Norman |title=A Social History of the French Revolution |year=1988 |publisher=University of Toronto Press |location=Routledge |isbn=978-0-7100-6525-4}}\r\n* {{cite book|last=Hanson |first=Paul|title=Contesting the French Revolution |year=2009 |publisher=Blackwell Publishing |isbn=978-1-4051-6083-4}}\r\n* {{cite book|last=Hanson|first=Paul|title=The A to Z of the French Revolution|year=2007|publisher=Scarecrow Press|isbn=978-1-4617-1606-8}}\r\n* {{cite journal|last=Harden|first=David J|title=Liberty Caps and Liberty Trees|journal=Past & Present|year=1995 |volume=146|issue=146|pages=66\u2013102|doi=10.1093\/past\/146.1.66|jstor=651152}}\r\n* {{cite book|last=Hargreaves-Mawdsley|first=William |title=Spain under the Bourbons, 1700\u20131833|publisher=Palgrave Macmillan |year=1968}}\r\n* {{cite thesis|last=Hayworth|first=Justin|title=Conquering the natural frontier: French expansion to the Rhine during the War of the First Coalition 1792-1797|publisher=North Texas University|type=PHD|year=2015|url=https:\/\/digital.library.unt.edu\/ark:\/67531\/metadc822845\/m2\/1\/high_res_d\/dissertation.pdf}}\r\n* {{cite book |last1=Hibbert |first1=Christopher |title=The Days of the French Revolution |year=1980 |publisher=Quill, William Morrow |isbn=978-0-688-03704-8}}\r\n* {{cite book |last=Hibbert |first=Christopher |title=The French Revolution |publisher=Penguin |year=1982 |isbn=978-0-14-004945-9}}\r\n* {{cite journal |last1=Hufton |first1=Olwen |title=Social Conflict and the Grain Supply in Eighteenth-Century France |journal=The Journal of Interdisciplinary History |date=1983 |volume=14 |issue=2 |pages=303\u2013331 |doi=10.2307\/203707 |jstor=203707}}\r\n* {{cite book|last1=Hufton |first1=Olwen |title=Women and the Limits of Citizenship in the French Revolution|publisher=University of Toronto Press|date=1992|isbn=978-0-8020-6837-8}}\r\n* {{cite book|last1=Hunt|first1=Lynn|title=The French Revolution and Human Rights |publisher=Bedford\/St Martins |year=1996|edition=2016|isbn=978-1-319-04903-4}}\r\n* {{cite book |last=Hunt |first=Lynn |title=Politics, Culture, and Class in the French Revolution |year=1984 |publisher=University of California Press}}\r\n* {{cite journal|last1=Hunt|first1=Lynn|last2=Lansky|first2=David|last3=Hanson|first3=Paul|title=The Failure of the Liberal Republic in France, 1795-1799: The Road to Brumaire|journal=The Journal of Modern History|date=1979|volume=51|issue=4 |pages=734\u2013759|doi=10.1086\/241988|jstor=1877164|s2cid=154019725}}\r\n* {{cite book |last1=Hunt |first1=Lynn |last2=Martin |first2=Thomas R |last3=Rosenwein |first3=Barbara H. |title=The Making of the West; Volume II |publisher=Bedford Press |year=2003 |isbn=978-0-312-55460-6 |edition=2010}}\r\n* {{cite book |last1=Hussenet |first1=Jacques |title=''D\u00E9truisez la Vend\u00E9e !\" Regards crois\u00E9s sur les victimes et destructions de la guerre de Vend\u00E9e |date=2007 |publisher=Centre vend\u00E9en de recherches historiques |language=Fr}}\r\n* {{cite book|last=James|first=C. L. R.|title=The Black Jacobins: Toussaint L'Ouverture and the San Domingo Revolution|year=1963| publisher=Penguin Books|edition=2001}}\r\n* {{cite book |author-last1=Jefferson |author-first1=Thomas |editor-last1=Ford |editor-first1=Paul |title=The Works of Thomas Jefferson, Vol. XII: Correspondence and Papers 1808\u20131816 |date=1903 |publisher=Cosimo Classics |isbn=978-1-61640-215-0 |edition=2010}}\r\n* {{cite book |last=Jordan |first=David |title=The King's Trial: The French Revolution versus Louis XVI |year=2004 |publisher=University of California Press |isbn=978-0-520-23697-4}}\r\n* {{cite journal |last=Jourdan |first=Annie |date=2007 |title=The \"Alien Origins\" of the French Revolution: American, Scottish, Genevan, and Dutch Influences |journal=The Western Society for French History |volume=35 |issue=2 |publisher=University of Amsterdam |hdl=2027\/spo.0642292.0035.012 |url=http:\/\/hdl.handle.net\/2027\/spo.0642292.0035.012}}\r\n* {{cite book |last=Kennedy |first=Emmet |title=A Cultural History of the French Revolution |year=1989 |isbn=978-0-300-04426-3 |publisher=Yale University Press}}\r\n* {{cite book |last=Kennedy |first=Michael |title=The Jacobin Clubs in the French Revolution: 1793\u20131795 |year=2000 |isbn=978-1-57181-186-8 |publisher=Berghahn Books}}\r\n* {{cite book |last1=Keitner |first1=Chimene I |title=The Paradoxes of Nationalism: The French Revolution and Its Meaning for Contemporary Nation Building |year=2007 |publisher=SUNY Press |isbn=978-0-7914-6958-3}}\r\n* {{cite book |last1=Ko\u0142akowski |first1=Leszek |title=Main Currents of Marxism: The Founders, the Golden Age, the Breakdown |year=1978 |publisher=W.W. Norton|isbn=978-0-393-06054-6}}\r\n* {{cite thesis |last1=Lalev\u00E9e |first1=Thomas J |title=National Pride and Republican grandezza: Brissot's New Language for International Politics in the French Revolution|year=2019|publisher=Australian National University|type=PHD |url=https:\/\/h-france.net\/rude\/wp-content\/uploads\/2017\/08\/LaleveeVol6.pdf}}\r\n* {{cite book |last1=Lefebvre |first1=Georges |title=The French Revolution: From Its Origins to 1793 |year=1962 |publisher=Columbia University Press |isbn=978-0-231-08598-4}}\r\n* {{cite book |last1=Lefebvre |first1=Georges |title=The French Revolution: from 1793 to 1799 |year=1963 |volume=vol. II |publisher=Columbia University Press |location=New York |isbn=978-0-231-02519-5 }}\r\n* {{cite book |last1=Lefebvre |first1=Georges |title=The Thermidorians & the Directory |year=1964 |publisher=Random House}}\r\n* {{cite book |last1=Lefebvre |first1=Georges |title=The Coming of the French Revolution |year=1947 |edition=2005 |publisher=Princeton UP|isbn=978-0-691-12188-8}}\r\n* {{cite journal|last=L\u00E9onard|first=Jacques|title=Femmes, Religion et M\u00E9decine: Les Religieuses qui Soignent, en France au XIXe Si\u00E8cle|journal=Annales: Economies, Societes, Civilisations|year=1977|volume=32|issue=55|language=FR}}\r\n* {{cite book|editor-last1=Levy|editor-first1=Darline Gay|editor-last2=Applewhite|editor-first2=Harriet Branson|editor-last3=Johnson|editor-first3=Mary Durham|title=Women in Revolutionary Paris, 1789\u20131795|publisher=University of Illinois Press|year=1979|isbn=978-0252004094}}\r\n* {{cite book |last=Lewis |first=Gwynne |title=The French Revolution: Rethinking the Debate |year=2002 |publisher=Routledge |isbn=978-0-203-40991-6}}\r\n* {{cite book |last=Livesey |first=James |title=Making Democracy in the French Revolution |year=2001 |publisher=Harvard University Press |isbn=978-0-674-00624-9}}\r\n* {{cite journal |last1=Ludwikowski |first1=Rhett |title=The French Declaration of the Rights of Man and Citizen and the American Constitutional Development |journal=The American Journal of Comparative Law |date=1990 |volume=2 |pages=445\u2013462 |doi=10.2307\/840552 |jstor=840552|url=https:\/\/ruj.uj.edu.pl\/xmlui\/handle\/item\/151153 }}\r\n* {{cite book |last1=Lyons |first1=Martyn |title=France under the Directory |date=1975 |publisher=Cambridge University Press |isbn=978-0-521-09950-9 |edition=2008}}\r\n* {{cite book |last=Martin |first=Jean-Cl\u00E9ment |title=La Vend\u00E9e et la France |year=1987 |publisher=\u00C9ditions du Seuil |language=Fr}}\r\n* {{cite journal|last=McHugh|first=Tim|title=Expanding Women's Rural Medical Work in Early Modern Brittany: The Daughters of the Holy Spirit|journal=History of Medicine and Allied Sciences|year=2012|volume=67|issue=3|pages=428\u2013456|doi=10.1093\/jhmas\/jrr032|pmid=21724643|pmc=3376001}}\r\n* {{cite book |last1=McLynn |first1=Frank |title=Napoleon |date=1997 |edition=1998|publisher=Pimlico |isbn=978-0-7126-6247-5}}\r\n* {{cite book |last1=McManners |first=John |title=The French Revolution and the Church |year=1969 |isbn=978-0-313-23074-5 |publisher=Praeger |edition=1982}}\r\n* {{cite book|last=McMillan|first=James H|title=France and women, 1789\u20131914: gender, society and politics|publisher=Routledge|year=1999|isbn=978-0-415-22602-8}}\r\n* {{cite book |editor-last1=Melzer|editor-first1=Sarah|editor-last2=Rabine|editor-first2=Leslie|title=Rebel Daughters: Women and the French Revolution|year=1992 |publisher=Oxford University Press Inc|isbn=978-0-19-506886-3}}\r\n* {{cite book |editor-last=McPhee|editor-first=Peter|title=A Companion to the French Revolution|year=2012 |publisher=Wiley-Blackwell|isbn=978-1-4443-3564-4}}\r\n* {{cite journal |last1=Mitchell |first1=CJ |title=Political Divisions within the Legislative Assembly of 1791 |journal=French Historical Studies |date=1984|volume=13|issue=3|pages=356\u2013389 |doi=10.2307\/286298 |jstor=286298}}\r\n* {{cite book |last1=Neely |first1=Sylvia|title=A Concise History of the French Revolution |year=2008 |publisher=Rowman & Littlefield |isbn=978-0-7425-3411-7}}\r\n* {{cite journal|last1=Palmer|first1=RR|jstor=368736|title=How Five Centuries of Educational Philanthropy Disappeared in the French Revolution|journal=History of Education Quarterly|volume=26|issue=2|year=1986|pages=181\u2013197|doi=10.2307\/368736}}\r\n* {{cite book |last1=Palmer |first1=Robert |last2=Colton |first2=Joel |title=A History of the Modern World |year=1995 |isbn=978-0-679-43253-1 |publisher=Alfred A Knopf}}\r\n* {{cite book |last1=Price |first1=Munro |title=The Road from Versailles: Louis XVI, Marie Antoinette, and the Fall of the French Monarchy |date=2003 |publisher=St Martins Press |isbn=978-0-312-26879-4}}\r\n* {{cite book |last1=Rossignol |first1=Marie-Jeanne |title=The American Revolution in France: Under the Shadow of the French Revolution in ''Europe's American Revolution'' |date=2006 |isbn=978-0-230-28845-4}}\r\n* {{cite journal |last1=Rothenberg |first1=Gunter |title=The Origins, Causes, and Extension of the Wars of the French Revolution and Napoleon |journal=The Journal of Interdisciplinary History |date=1988 |volume=18 |issue=4 |pages=771\u2013793 |doi=10.2307\/204824 |jstor=204824}}\r\n* {{cite book |title=The French Revolution: Its Causes, Its History and Its Legacy After 200 Years |year=1991 |publisher=Grove Press |isbn=978-0-8021-3272-7 |last1=Rude |first1=George |url=https:\/\/books.google.com\/books?id=f1pMIbvzKckC}}\r\n* {{cite journal |last1=Sargent |first1=Thomas J |last2=Velde |first2=Francois R |title=Macroeconomic features of the French Revolution |journal=Journal of Political Economy |volume=103 |issue=3 |year=1995|pages=474\u2013518 |doi=10.1086\/261992 |s2cid=153904650 }}\r\n* {{cite book |last1=Schama |first1=Simon |author-link=Simon Schama|title=Citizens, A Chronicle of The French Revolution |publisher=Penguin |year=1989 |edition=2004 |isbn=978-0-14-101727-3}}\r\n* {{cite book |last1=Schama |first1=Simon |publisher=Harper Collins |year=1977 |isbn=978-0-00-216701-7 |title=Patriots and Liberators: Revolution in the Netherlands, 1780\u20131813}}\r\n* {{cite journal|last=Shlapentokh|first=Dmitry|title=A problem in self-identity: Russian intellectual thought in the context of the French Revolution|journal=European Studies|year=1996|volume=26|issue=1|pages=061\u201376|doi=10.1177\/004724419602600104|s2cid=145177231}}\r\n* {{cite journal |last1=Scott |first1=Samuel |title=Problems of Law and Order during 1790, the \"Peaceful\" Year of the French Revolution |journal=The American Historical Review |date=1975 |volume=80 |issue=4|pages=859\u2013888 |doi=10.2307\/1867442 | jstor=1867442}}\r\n* {{cite book |last=Shusterman |first=Noah |title=The French Revolution; Faith, Desire, and Politics |year=2013 |publisher=Routledge |isbn=978-0-415-66021-1}}\r\n* {{cite book |last1=Soboul |first1=Albert |author-link=Albert Soboul|title=The French Revolution 1787\u20131799|year=1975 |publisher=Vintage|isbn=978-0-394-71220-8}}\r\n* {{cite book |last1=Soboul |first1=Albert |author-link=Albert Soboul|title=A short history of the French Revolution: 1789\u20131799 |year=1977 |publisher=University of California Press, Ltd |isbn=978-0-520-03419-8 |others=Geoffrey Symcox}}\r\n* {{cite journal|last1=Soper|first1=J. Christopher|last2=Fetzer|first2=Joel S|title=Explaining the accommodation of Muslim religious practices in France, Britain, and Germany|journal=French Politics|year=2003|volume=1|issue=1|pages=39\u201359|doi=10.1057\/palgrave.fp.8200018|s2cid=145008815}}\r\n* {{cite book|last=Stewart|first=John|title=A Documentary Survey of the French revolution|publisher=Macmillan|year=1951}}\r\n* {{cite journal |last1=Sutherland |first1=D. M. G.|jstor=2697970 |title=Peasants, Lords, and Leviathan: Winners and Losers from the Abolition of French Feudalism, 1780\u20131820 |journal=The Journal of Economic History |volume=62 |issue=1 |year=2002|pages=1\u201324}}\r\n* {{cite journal |last1=Tackett |first1=Timothy |title=The Flight to Varennes and the Coming of the Terror |journal=Historical Reflections \/ R\u00E9flexions Historiques |date=2003 |volume=29 |issue=3 |pages=469\u2013493 |jstor=41299285}}\r\n* {{cite book|last1=Tackett|first1=Timothy|title=When the King Took Flight|date=2004|publisher=Harvard University Press|isbn= 978-0-674-01642-2}}\r\n* {{cite journal|last1=Tackett|first1=Timothy |title=Rumor and Revolution: The Case of the September Massacres|journal=French History and Civilization|date=2011 |volume=4|url=https:\/\/h-france.net\/rude\/wp-content\/uploads\/2017\/08\/TackettVol4.pdf}}\r\n* {{cite book |last1=Thompson |first1=J.M. |title=The French Revolution |year=1959 |publisher=Basil Blackwell}}\r\n* {{cite book |last1=Thompson |first1=J.M. |title=Robespierre and the French Revolution|year=1952 |publisher=The English Universities Press|isbn= 978-0340083697}}\r\n* {{cite journal |last1=Tilly |first1=Louise |title=Food Entitlement, Famine, and Conflict |journal=The Journal of Interdisciplinary History |date=1983 |volume=14 |issue=2 |pages=333\u2013349 |doi=10.2307\/203708 |jstor=203708}}\r\n* {{cite book |last1=Tombs |first1=Robert |last2=Tombs |first2=Isabelle |year=2007 |title=That Sweet Enemy: The French and the British from the Sun King to the Present |publisher=Random House |isbn=978-1-4000-4024-7}}\r\n* {{cite journal |last1=Vardi |first1=Liana|jstor=286554 |title=The Abolition of the Guilds during the French Revolution |journal=French Historical Studies |volume=15 |issue=4|year=1988 |pages=704\u2013717|doi=10.2307\/286554}}\r\n* {{cite book |last1=Wasson |first1=Ellis |title=A History of Modern Britain: 1714 to the Present |year=2009 |publisher=John Wiley & Sons |isbn=978-1-4051-3935-9}}\r\n* {{cite journal |last1=Weir |first1=David |title=Tontines, Public Finance, and Revolution in France and England, 1688\u20131789 |journal=The Journal of Economic History |date=1989 |volume=49 |issue=1 |pages=95\u2013124 |doi=10.1017\/S002205070000735X |jstor=2121419}}\r\n* {{cite journal |last1=White |first1=Eugene Nelson |title=The French Revolution and the Politics of Government Finance, 1770\u20131815 |journal=The Journal of Economic History |date=1995 |volume=55 |issue=2 |pages=227\u2013255 |doi=10.1017\/S0022050700041048 |jstor=2123552}}\r\n* {{cite book |last1=Woronoff |first1=Denis |title=The Thermidorean regime and the directory: 1794\u20131799 |year=1984 |publisher=Cambridge University Press |isbn=978-0-521-28917-7 }}\r\n{{refend}}\r\n\r\n== Bibliography ==\r\n{{see also|Historiography of the French Revolution}}\r\n{{refbegin}}\r\n\r\n=== Surveys and reference ===\r\n* Andress, David, ed. ''The Oxford Handbook of the French Revolution'' (Oxford University Press, 2015). [https:\/\/www.amazon.com\/Oxford-Handbook-French-Revolution-Handbooks\/dp\/0199639744\/ excerpt], 714 pp; 37 articles by experts\r\n* Aulard, Fran\u00E7ois-Alphonse. ''The French Revolution, a Political History, 1789\u20131804'' (4 vol. 1910); famous classic; [https:\/\/archive.org\/details\/frenchrevolutio02mialgoog volume 1 1789\u20131792 online]; [https:\/\/archive.org\/details\/bub_gb_UJMJAQAAIAAJ Volume 2 1792\u201395 online]\r\n* [[Joxe Azurmendi|Azurmendi, Joxe]] (1997). [https:\/\/web.archive.org\/web\/20160303184957\/http:\/\/basque.criticalstew.org\/wp-content\/uploads\/The-democrats-and-the-violent.pdf ''The democrats and the violent. Mirande's critique of the French Revolution'']. Philosophical viewpoint. (Original: ''Demokratak eta biolentoak'', Donostia: Elkar {{ISBN|978-84-7917-744-7}}).\r\n* Ballard, Richard. ''A New Dictionary of the French Revolution'' (2011) [https:\/\/www.amazon.com\/New-Dictionary-French-Revolution\/dp\/184885465X\/ excerpt and text search]\r\n* Bosher, J.F. ''The French Revolution'' (1989) 365 pp\r\n* Davies, Peter. ''The French Revolution: A Beginner's Guide'' (2009), 192 pp\r\n* Gershoy, Leo. ''The French Revolution and Napoleon'' (1945) 585 pp\r\n* Gershoy, Leo. ''The Era of the French Revolution, 1789\u20131799'' (1957), brief summary with some primary sources\r\n* Gottschalk, Louis R. ''The Era of the French Revolution'' (1929), cover 1780s to 1815\r\n* Hanson, Paul R. ''The A to Z of the French Revolution'' (2013)\r\n** Hanson, Paul R. ''Historical dictionary of the French Revolution'' (2015) [https:\/\/archive.org\/details\/historicaldictio0ed2hans online]\r\n* {{cite book |last=Jaur\u00E8s |first=Jean |author-link=Jean Jaur\u00E8s |title=A Socialist History of the French Revolution |year=1903 |publisher=[[Pluto Press]] |edition=2015 |isbn=978-0-7453-3500-1}}; inspiration for Soboul and Lefebvre, one of the most important accounts of the Revolution in terms of shaping perspectives;\r\n* Jones, Colin. ''The Longman Companion to the French Revolution'' (1989)\r\n* Jones, Colin. ''The Great Nation: France from Louis XV to Napoleon'' (2002) [https:\/\/www.amazon.com\/Great-Nation-Napoleon-Penguin-History\/dp\/0140130934\/ excerpt and text search]\r\n* {{cite book |author=McPhee, Peter, ed. |title=A Companion to the French Revolution |url=https:\/\/books.google.com\/books?id=Hj9dY-JAzw0C&pg=PR15 |year=2012 |publisher=Wiley |isbn=978-1-118-31641-2}}\r\n* [[Louis Madelin|Madelin, Louis.]] ''The French Revolution'' (1916); textbook by leading French scholar. [https:\/\/archive.org\/details\/cu31924024309704 online]\r\n* Paxton, John. ''Companion to the French Revolution'' (1987), 234 pp; hundreds of short entries.\r\n* Popkin, Jeremy D. ''A Short History of the French Revolution'' (5th ed. 2009) 176 pp\r\n* {{cite journal|last=Popkin|first=Jeremy D|title=The Press and the French Revolution after Two Hundred Years|journal=French Historical Studies |year=1990|volume=16|issue=3|pages=664\u2013683|doi=10.2307\/286493|jstor=286493}}\r\n* Scott, Samuel F. and Barry Rothaus, eds. ''Historical Dictionary of the French Revolution, 1789\u20131799'' (2 vol 1984), short essays by scholars [https:\/\/www.questia.com\/library\/1349250\/historical-dictionary-of-the-french-revolution-1789-1799 vol. 1 online]; [https:\/\/www.questia.com\/read\/71902167\/historical-dictionary-of-the-french-revolution-1789-1799 vol 2 online]\r\n* Sutherland, D.M.G. ''France 1789\u20131815. Revolution and Counter-Revolution'' (2nd ed. 2003, 430 pp [https:\/\/www.amazon.com\/French-Revolution-Empire-Quest-Civic\/dp\/0631233636\/ excerpts and online search from Amazon.com]\r\n\r\n=== European and Atlantic History ===\r\n* Amann, Peter H., ed. ''The eighteenth-century revolution: French or Western?'' (Heath, 1963) readings from historians\r\n* Brinton, Crane. ''A Decade of Revolution 1789\u20131799'' (1934) the Revolution in European context\r\n* Desan, Suzanne, et al. eds. ''The French Revolution in Global Perspective'' (2013)\r\n* Fremont-Barnes, Gregory. ed. ''The Encyclopedia of the French Revolutionary and Napoleonic Wars: A Political, Social, and Military History'' (ABC-CLIO: 3 vol 2006)\r\n* Goodwin, A., ed. '' The New Cambridge Modern History, Vol. 8: The American and French Revolutions, 1763\u201393'' (1965), 764 pp\r\n* Palmer, R.R. \"The World Revolution of the West: 1763\u20131801,\" ''Political Science Quarterly'' (1954) 69#1 pp. 1\u201314 {{JSTOR|2145054}}\r\n* Palmer, Robert R. ''The Age of the Democratic Revolution: A Political History of Europe and America, 1760\u20131800.'' (2 vol 1959), highly influential comparative history; [https:\/\/www.questia.com\/read\/22790906 vol 1 online]\r\n* Rude, George F. and Harvey J. Kaye. ''Revolutionary Europe, 1783\u20131815'' (2000), scholarly survey [https:\/\/www.amazon.com\/Revolutionary-Europe-Blackwell-Classic-Histories\/dp\/0631221905\/ excerpt and text search]\r\n\r\n=== Politics and wars ===\r\n* Andress, David. ''The terror: Civil war in the French revolution'' (2006).\r\n* ed. [[Baker, Keith M.]] ''The French Revolution and the Creation of Modern Political Culture'' (Oxford, 1987\u201394) ''vol 1: The Political Culture of the Old Regime,'' ed. K.M. Baker (1987); ''vol. 2: The Political Culture of the French Revolution,'' ed. C. Lucas (1988); ''vol. 3: The Transformation of Political Culture, 1789\u20131848,'' eds. F. Furet & M. Ozouf (1989); ''vol. 4: The Terror,'' ed. K.M. Baker (1994). [https:\/\/www.amazon.com\/French-Revolution-Creation-Political-Culture\/dp\/0080413870\/ excerpt and text search vol 4]\r\n* [[Blanning, T.C.W.]] ''The French Revolutionary Wars 1787\u20131802'' (1996).\r\n* [[Desan, Suzanne]]. \"Internationalizing the French Revolution,\" ''[[French Politics, Culture & Society]]'' (2011) 29#2 pp. 137\u201360.\r\n* [[William Doyle (historian)|Doyle, William]]. ''Origins of the French Revolution'' (3rd ed. 1999) [https:\/\/www.questia.com\/library\/book\/origins-of-the-french-revolution-by-william-doyle.jsp online edition]\r\n* Englund, Steven. ''Napoleon: A Political Life.'' (2004). 575 pp; emphasis on politics [https:\/\/www.amazon.com\/Napoleon-Political-Life-Steven-Englund\/dp\/0674018036\/ excerpt and text search]\r\n* Fremont-Barnes, Gregory. ''The French Revolutionary Wars'' (2013), 96 pp; [https:\/\/www.amazon.com\/French-Revolutionary-Wars-Essential-Histories-ebook\/dp\/B00DSLXXKM\/ excerpt and text search]\r\n* [[Griffith, Paddy]]. ''The Art of War of Revolutionary France 1789\u20131802,'' (1998); 304 pp; [https:\/\/www.amazon.com\/Art-War-Revolutionary-France-1789-1802\/dp\/1853673358\/ excerpt and text search]\r\n* {{cite journal |author-link=Gunther E. Rothenberg |last1=Rothenberg |first1=Gunther E. |title=The Origins, Causes, and Extension of the Wars of the French Revolution and Napoleon |journal=[[Journal of Interdisciplinary History]] |volume=18 |number=4 |date=Spring 1988 |pages=771\u201393 |jstor=204824 |doi=10.2307\/204824}}\r\n* Hardman, John. ''Louis XVI: The Silent King'' (2nd ed. 2016) 500 pp; much expanded new edition; now the standard scholarly biography; (1st ed. 1994) 224; older scholarly biography\r\n* [[Schroeder, Paul]]. ''The Transformation of European Politics, 1763\u20131848.'' 1996; Thorough coverage of diplomatic history; hostile to Napoleon; [https:\/\/www.questia.com\/library\/book\/the-transformation-of-european-politics-1763-1848-by-paul-w-schroeder.jsp online edition]\r\n* {{cite book |last1=Wahnich |first1=Sophie |date=2016 |title=In Defence of the Terror: Liberty or Death in the French Revolution |publisher=Verso |edition=Reprint |isbn=978-1-78478-202-3}}\r\n\r\n=== Economy and society ===\r\n* Anderson, James Maxwell. ''Daily life during the French Revolution'' (2007)\r\n* Andress, David. ''French Society in Revolution, 1789\u20131799'' (1999)\r\n* Kennedy, Emmet. ''A Cultural History of the French Revolution'' (1989)\r\n* McPhee, Peter. \"The French Revolution, Peasants, and Capitalism,\" ''American Historical Review'' (1989) 94#5 pp. 1265\u201380 {{JSTOR|906350}}\r\n* Tackett, Timothy, \"The French Revolution and religion to 1794,\" and Suzanne Desan, \"The French Revolution and religion, 1795\u20131815,\" in Stewart J. Brown and Timothy Tackett, eds. ''The Cambridge History of Christianity'' vol. 7 (Cambridge UP, 2006).\r\n\r\n==== Women ====\r\n* Dalton, Susan. \"Gender and the Shifting Ground of Revolutionary Politics: The Case of Madame Roland.\" ''Canadian journal of history'' (2001) 36#2\r\n* Godineau, Dominique. ''The Women of Paris and Their French Revolution'' (1998) 440 pp 1998\r\n* Hufton, Olwen. \"Women in Revolution 1789\u20131796\" ''Past & Present'' (1971) No. 53 pp. 90\u2013108 {{JSTOR|650282}}\r\n* Hufton, Olwen. \"In Search of Counter-Revolutionary Women.\" ''The French Revolution: Recent debates and New Controversies'' Ed. [[Gary Kates]]. (1998) pp. 302\u201336\r\n* Kelly, Linda. ''Women of the French Revolution'' (1987) 192 pp. biographical portraits or prominent writers and activists\r\n* Landes, Joan B. ''Women and the Public Sphere in the Age of the French Revolution'' (Cornell University Press, 1988) [https:\/\/www.amazon.com\/Women-Public-Sphere-French-Revolution\/dp\/0801494818\/ excerpt and text search]\r\n* Melzer, Sara E., and Leslie W. Rabine, eds. ''Rebel daughters: women and the French Revolution'' (Oxford University Press, 1992)\r\n* Proctor, Candice E. ''Women, Equality, and the French Revolution'' (Greenwood Press, 1990) [https:\/\/www.questia.com\/read\/14219316\/women-equality-and-the-french-revolution online]\r\n* Roessler, Shirley Elson. ''Out of the Shadows: Women and Politics in the French Revolution, 1789\u201395'' (Peter Lang, 1998) [https:\/\/www.questia.com\/read\/53103857\/out-of-the-shadows-women-and-politics-in-the-french online]\r\n\r\n=== Historiography and memory ===\r\n{{main|Historiography of the French Revolution}}\r\n* Andress, David. \"Interpreting the French Revolution,\" ''Teaching History'' (2013), Issue 150, pp. 28\u201329, very short summary\r\n* Censer, Jack R. \"Amalgamating the Social in the French Revolution.\" ''Journal of Social History 2003'' 37(1): 145\u201350. [http:\/\/muse.jhu.edu\/login?auth=0&type=summary&url=\/journals\/journal_of_social_history\/v037\/37.1censer.html online]\r\n* Cox, Marvin R. ''The Place of the French Revolution in History'' (1997) 288 pp\r\n* Desan, Suzanne. \"What's after Political Culture? Recent French Revolutionary Historiography,\" ''French Historical Studies'' (2000) 23#1 pp. 163\u201396.\r\n* Furet, Fran\u00E7ois and Mona Ozouf, eds. ''A Critical Dictionary of the French Revolution'' (1989), 1120 pp; long essays by scholars; strong on history of ideas and historiography (esp pp. 881\u20131034 [https:\/\/www.amazon.com\/Critical-Dictionary-French-Revolution\/dp\/0674177282\/ excerpt and text search]\r\n* Furet, Fran\u00E7ois. ''Interpreting the French revolution'' (1981).\r\n* Germani, Ian, and Robin Swayles. ''Symbols, myths and images of the French Revolution''. University of Regina Publications. 1998. {{ISBN|978-0-88977-108-6}}\r\n* Geyl, Pieter. ''Napoleon for and Against'' (1949), 477 pp; summarizes views of major historians on controversial issues\r\n* Hanson, Paul R. ''Contesting the French Revolution'' (2009). 248 pp.\r\n* Kafker, Frank A. and James M. Laux, eds. ''The French Revolution: Conflicting Interpretations'' (5th ed. 2002), articles by scholars\r\n* Kaplan, Steven Laurence. ''Farewell, Revolution: The Historians' Feud, France, 1789\/1989'' (1996), focus on historians [https:\/\/www.amazon.com\/Farewell-Revolution-Historians-Feud-France\/dp\/0801482712\/ excerpt and text search]\r\n* Kaplan, Steven Laurence. ''Farewell, Revolution: Disputed Legacies, France, 1789\/1989'' (1995); focus on bitter debates re 200th anniversary [https:\/\/www.amazon.com\/Farewell-Revolution-Disputed-Legacies-France\/dp\/0801427185\/ excerpt and text search]\r\n* [[Kates, Gary]], ed. ''The French Revolution: Recent Debates and New Controversies'' (2nd ed. 2005) [https:\/\/www.amazon.com\/French-Revolution-Controversies-Rewriting-Histories\/dp\/0415358337\/ excerpt and text search]\r\n* Lewis, Gwynne. ''The French Revolution: Rethinking the Debate'' (1993) [https:\/\/www.questia.com\/library\/103416378\/the-french-revolution-rethinking-the-debate online]; 142 pp.\r\n* {{cite book |author=McPhee, Peter, ed. |title=A Companion to the French Revolution |url=https:\/\/books.google.com\/books?id=Hj9dY-JAzw0C&pg=PR15 |year=2012 |publisher=Wiley |isbn=978-1-118-31641-2}}; 540 pp; 30 essays by experts; emphasis on historiography and memory\r\n* Reichardt, Rolf: [http:\/\/nbn-resolving.de\/urn:nbn:de:0159-2012082703 ''The French Revolution as a European Media Event''], [[European History Online]], Mainz: [[Institute of European History]], 2010, retrieved: 17 December 2012.\r\n* Ross, Steven T., ed. ''The French Revolution: conflict or continuity?'' (1971) 131 pp; excerpt from historians [http:\/\/trove.nla.gov.au\/work\/11449740?selectedversion=NBD535017 table of contents]\r\n\r\n=== Primary sources ===\r\n{{Wikisource portal|French Revolution}}\r\n* {{cite book |author=Anderson, F.M. |title=The constitutions and other select documents illustrative of the history of France, 1789\u20131901 |publisher=The H. W. Wilson company 1904. |url=https:\/\/archive.org\/details\/constitutionsan02andegoog |year=1904}}, complete text online\r\n* {{cite journal |last1=Burke |first1=Edmund |title=Reflections on the Revolution in France |journal=The Physics Teacher |volume=25 |issue=2 |page=72 |date=1790 |title-link=Reflections on the Revolution in France |bibcode=1987PhTea..25...72F |doi=10.1119\/1.2342155}}\r\n* Dwyer, Philip G. and Peter McPhee, eds. '' The French Revolution and Napoleon: A Sourcebook'' (2002) 235 pp; [https:\/\/www.questia.com\/library\/108790015\/the-french-revolution-and-napoleon-a-sourcebook online]\r\n* Legg, L.G. Wickham, ed. ''Select Documents Illustrative of the History of the French Revolution'' (2 Volumes, 1905) 630 pp [https:\/\/archive.org\/details\/cu31924024309985 vol 1 online free]; in French (not translated)\r\n* Levy, Darline Gay, et al. eds. ''Women in Revolutionary Paris, 1789\u20131795'' (1981) 244 pp [https:\/\/www.amazon.com\/Women-Revolutionary-Paris-1789-1795-Darline\/dp\/0252008553\/ excerpt and text search]\r\n* Mason, Laura, and Tracey Rizzo, eds. ''The French Revolution: A Document Collection'' (1998) 334 pp [https:\/\/www.amazon.com\/The-French-Revolution-Document-Collection\/dp\/0669417807\/ excerpt and text search]\r\n* Stewart, John Hall, ed. ''A Documentary Survey of the French Revolution'' (1951), 818 pp\r\n* Thompson, J.M., ed. ''The French revolution: Documents, 1789\u201394'' (1948), 287 pp\r\n* {{Mignet}}\r\n{{refend}}\r\n\r\n== External links ==\r\n{{Commons category}}\r\n{{Wikiquote}}\r\n{{Library resources box|onlinebooks=yes|label=the French Revolution}}\r\n* [http:\/\/www.domaine-vizille.fr\/ Museum of the French Revolution] (French)\r\n* [http:\/\/www.fordham.edu\/halsall\/mod\/modsbook13.html Primary source documents] from The Internet Modern History Sourcebook.\r\n* [http:\/\/chnm.gmu.edu\/revolution\/ Liberty, Equality, Fraternity: Exploring the French Revolution], a collaborative site by the Center for History and New Media (George Mason University) and the American Social History Project (City University of New York).\r\n* Vancea, S. [https:\/\/web.archive.org\/web\/20151114165139\/http:\/\/cliojournal.wikispaces.com\/The%20Cahiers%20de%20Doleances%20of%201789 The Cahiers de Doleances of 1789], Clio History Journal, 2008.\r\n* [https:\/\/web.archive.org\/web\/20140130232229\/http:\/\/frda-stage.stanford.edu\/en\/images French Revolution Digital Archive] a collaboration of the Stanford University Libraries and the Biblioth\u00E8que nationale de France, containing 12000 digitised images\r\n* [http:\/\/les.guillotines.free.fr\/ The guillotined of the French Revolution] factsheets of all the sentenced to death of the French Revolution\r\n* [http:\/\/hdl.library.upenn.edu\/1017\/d\/ead\/upenn_rbml_MsColl515 Jean-Baptiste Lingaud papers], Kislak Center for Special Collections, Rare Books and Manuscripts, University of Pennsylvania. Includes a vast number of name lists and secret surveillance records as well as arrest warrants for aristocrats and their sympathisers. Most notable in this part of the collection are letters and documents from the Revolutionary Committee and the Surveillance Committee.\r\n* [http:\/\/purl.lib.ua.edu\/18375 French Revolution Pamphlets], Division of Special Collections, University of Alabama Libraries. Over 300 digitised pamphlets, from writers including Robespierre, St. Juste, Desmoulins, and Danton.\r\n* [http:\/\/www.bbc.co.uk\/programmes\/p00547gg \"The French Revolution's Legacy\"] BBC Radio 4 discussion with Stefan Collini, Anne Janowitz and Andrew Roberts (''In Our Time'', 14 June 2001)\r\n\r\n{{S-start}}\r\n{{s-bef|before=[[Ancien R\u00E9gime in France|Ancien R\u00E9gime (Old Regime)]]}}\r\n{{s-ttl|title=French Revolution|years=1789\u20131792}}\r\n{{s-aft|after=[[French First Republic]]}}\r\n{{S-end}}\r\n\r\n{{French revolution footer}}\r\n{{France topics}}\r\n{{History of Europe}}\r\n{{History of the Catholic Church}}\r\n\r\n{{Authority control}}\r\n\r\n[[Category:French Revolution| ]]\r\n[[Category:1789 in France]]\r\n[[Category:1790s in France]]\r\n[[Category:18th-century rebellions]]\r\n[[Category:18th-century revolutions]]\r\n[[Category:Conflicts in 1789]]\r\n[[Category:Conflicts in 1790]]\r\n[[Category:Conflicts in 1791]]\r\n[[Category:Conflicts in 1792]]\r\n[[Category:Modern history of France]]\r\n[[Category:Republicanism in France]]\r\n" } ================================================ FILE: spec/test_data/Wikipedia_EN_InfluenceOfTheFrenchRevolution.json ================================================ { "text": "The [[French Revolution]] had a major impact on Europe and the New World. Historians widely regard the Revolution as one of the most important events in European history.Linda S. Frey and Marsha L. Frey, ''The French Revolution'' (2004), Foreword.<\/ref>R.R. Palmer and Joel Colton, ''A History of the Modern World'' (5th ed. 1978), p. 341<\/ref>Ferenc Feh\u00E9r, ''The French Revolution and the Birth of Modernity'', (1990) pp. 117-30<\/ref> In the short-term, France lost thousands of its countrymen in the form of [[\u00E9migr\u00E9s]], or emigrants who wished to escape political tensions and save their lives. A number of individuals settled in the neighboring countries (chiefly Great Britain, Germany and Austria), while some settled in Russia, and quite a few also went to the United States. The displacement of these Frenchmen led to a spread of French culture, policies regulating immigration, and a safe haven for [[Royalist (France)|Royalists]] and other counterrevolutionaries to outlast the violence of the French Revolution. The long-term impact on France was profound, shaping politics, society, religion and ideas, and politics for more than a century. The closer other countries were, the greater and deeper was the French impact, bringing [[liberalism]] and the end of many feudal or traditional laws and practices.Mike Rapport and Peter McPhee. \"The International Repercussions of the French Revolution\", in ''A Companion to the French Revolution'' (2013), pp 379\u201396.<\/ref>{{cite book|last1=Klaits|first1=Joseph|last2=Haltzel|first2=Michael H.|last3=Haltzel|first3=Michael|title=Global Ramifications of the American Revolution|url=https:\/\/books.google.com\/books?id=vVilfUkW5usC|year=2002|publisher=Cambridge UP|isbn=9780521524476}}<\/ref> However, there was also a [[Conservativism in France|conservative counter-reaction]] that defeated [[Napoleon]], [[Bourbon Restoration in France|reinstalled the Bourbon kings]], and in some ways reversed the new reforms.Frederick B. Artz, ''Reaction & Revolution: 1814\u20131832'' (Rise of Modern Europe) (1934), pp. 142\u201343<\/ref>\r\n\r\nMost of the new nations created by France were abolished and returned to prewar owners in 1814. However, Frederick Artz emphasizes the benefits the Italians gained from the French Revolution:\r\n:For nearly two decades the Italians had the excellent codes of law, a fair system of taxation, a better economic situation, and more religious and intellectual toleration than they had known for centuries.... Everywhere old physical, economic, and intellectual barriers had been thrown down and the Italians had begun to be aware of a common nationality.\r\n\r\nLikewise in [[History of Switzerland|Switzerland]] the long-term impact of the French Revolution has been assessed by Martin:\r\n:It proclaimed the equality of citizens before the law, equality of languages, freedom of thought and faith; it created a Swiss citizenship, basis of our modern nationality, and the separation of powers, of which the old regime had no conception; it suppressed internal tariffs and other economic restraints; it unified weights and measures, reformed civil and penal law, authorized mixed marriages (between Catholics and Protestants), suppressed torture and improved justice; it developed education and public works.William Martin, ''Histoire de la Suisse'' (Paris, 1926), pp 187\u201388, quoted in Crane Brinson, ''A Decade of Revolution: 1789\u20131799'' (1934), p. 235.<\/ref>\r\n\r\nThe greatest impact came in France itself. In addition to effects similar to those in Italy and Switzerland, France saw the introduction of the principle of legal equality, and the downgrading of the once powerful and rich Catholic Church to just a bureau controlled by the government. Power became centralized in Paris, with its strong bureaucracy and an army supplied by conscripting all young men. French politics were permanently polarized\u2014'left' and 'right' were the new terms for the supporters and opponents of the principles of the Revolution.\r\n\r\n==Impact on France==\r\n{{Main|French Revolution#France}}\r\nThe changes in France were enormous; some were widely accepted and others were bitterly contested into the late 20th century.John Hall Stewart, ''A Documentary Survey of the french revolution'' (1951) pp 783\u201394<\/ref> Before the Revolution, the people had little power or voice. The kings had so thoroughly centralized the system that most nobles spent their time at Versailles, and played only a small direct role in their home districts. Thompson says that the kings had:\r\n:ruled by virtue of their personal wealth, their patronage of the nobility, their disposal of ecclesiastical offices, their provincial governors (''intendants''), their control over the judges and magistrates, and their command of the Army.J.M. Thompson, ''Robespierre and the French Revolution'' (1962), p. 22<\/ref>\r\n\r\nAfter the first year of revolution, this power had been stripped away. The king was a figurehead, the nobility had lost all their titles and most of their land, the Church lost its monasteries and farmlands, bishops, judges and magistrates were elected by the people, the army was almost helpless, with military power in the hands of the new revolutionary National Guard. The central elements of 1789 were the slogan \"''[[Libert\u00E9, \u00E9galit\u00E9, fraternit\u00E9]]''\" and the [[Declaration of the Rights of Man and of the Citizen]], which Lefebvre calls \"the incarnation of the Revolution as a whole.\"{{cite book|author=Georges Lefebvre|title=The Coming of the French Revolution|url=https:\/\/books.google.com\/books?id=P4EYuia7buUC&pg=PA212|orig-year=1947|year=2005|publisher=Princeton UP|page=212|isbn=0691121885}}<\/ref>\r\n\r\nThe long-term impact on France was profound, shaping politics, society, religion and ideas, and polarizing politics for more than a century. [[Fran\u00E7ois Victor Alphonse Aulard|Historian Fran\u00E7ois Aulard]] writes:\r\n:From the social point of view, the Revolution consisted in the suppression of what was called the feudal system, in the emancipation of the individual, in greater division of landed property, the abolition of the privileges of noble birth, the establishment of equality, the simplification of life.... The French Revolution differed from other revolutions in being not merely national, for it aimed at benefiting all humanity.\"{{cite book|author=A. Aulard in Arthur Tilley, ed.|title= Modern France. A Companion to French Studies|url=https:\/\/archive.org\/details\/modernfrancecomp00tilluoft|year=1922|publisher=Cambridge UP|page=[https:\/\/archive.org\/details\/modernfrancecomp00tilluoft\/page\/115 115]}}<\/ref>\r\n\r\n==Impact on Europe==\r\n\r\nEurope was wracked by two decades of war revolving around France's efforts to spread its revolutionary ideals, and the opposition of reactionary royalty by the members of the anti-French coalitions. Napoleon was finally defeated and reactionaries took over France. Even so there were many deep results in terms of political ideas and institutions.Annie Jourdan, \"Napoleon and Europe: the legacy of the French Revolution.\" in ''The Routledge Companion to the French Revolution in World History'' (Routledge, 2015) pp. 221-238.<\/ref>\r\n\r\n===French emigration===\r\n{{Main|French emigration (1789\u20131815)}}To escape political tensions and save their lives, a number of individuals, mostly men, emigrated from France. Many settled in neighboring countries (chiefly Great Britain, Germany, Austria, and Prussia), and quite a few went to the United States. The presence of these thousands of Frenchmen of varying socioeconomic backgrounds who had just fled a hotbed of revolutionary activity posed a problem for the nations that extended refuge to the migrants. The fear was that they brought with them a plot to disrupt the political order, which did lead to increased regulation and documentation of the influx of immigrants in neighboring countries. Still, most nations such as Britain remained magnanimous and welcomed the French.\r\n\r\n===French conquests===\r\nIn foreign affairs, the French Army at first was quite successful. It conquered the [[Austrian Netherlands]] (approximately modern-day Belgium) and turned it into another province of France. It conquered the [[Dutch Republic]] (the present Netherlands), and made it a puppet state. It took control of the German areas on the left bank of the Rhine River and set up a puppet regime. It conquered Switzerland and most of Italy, setting up a series of puppet states. The result was glory for France, and an infusion of much needed money from the conquered lands, which also provided direct support to the French Army. However the enemies of France, led by Britain and funded by the British Treasury, formed a Second Coalition in 1799 (with Britain joined by Russia, the Ottoman Empire, and Austria). It scored a series of victories that rolled back French successes, and the French Army became trapped in Egypt. Napoleon himself slipped through the British blockade in October 1799, returning to Paris.William Doyle, ''The Oxford History of the French Revolution'' (1989), pp 341\u201368.<\/ref>\r\n\r\nNapoleon conquered most of Italy in the name of the French Revolution in 1797\u201399. He consolidated old units and split up Austria's holdings. He set up a series of new republics, complete with new codes of law and abolition of old feudal privileges. Napoleon's [[Cisalpine Republic]] was centered on Milan. Genoa the city became a republic while its hinterland became the [[Ligurian Republic]]. The [[Roman Republic (18th century)|Roman Republic]] was formed out of the papal holdings while the pope himself was sent to France. The [[Neapolitan Republic (1799)|Neapolitan Republic]] was formed around Naples, but it lasted only five months before the enemy forces of the Coalition recaptured it.Steven T. Ross, ''European Diplomatic History, 1789\u20131815: France Against Europe'' (1969)<\/ref>\r\n\r\nIn 1805 he formed the [[Kingdom of Italy (Napoleonic)|Kingdom of Italy]], with himself as king and his stepson as viceroy. In addition, France turned the Netherlands into the [[Batavian Republic]], and Switzerland into the [[Helvetic Republic]]. All these new countries were satellites of France and had to pay large subsidies to Paris, as well as provide military support for Napoleon's wars. Their political and administrative systems were modernized, the metric system introduced, and trade barriers reduced. Jewish ghettos were abolished. Belgium and Piedmont became integral parts of France.Alexander Grab, ''Napoleon and the Transformation of Europe'' (2003) pp 62\u201365, 78\u201379, 88\u201396, 115\u201317, 154\u201359<\/ref>Palmer, ''The Age of the Democratic Revolution'' 2:293\u2013326, 365\u201394<\/ref>
The new nations were abolished and returned to prewar owners in 1814. However, Artz emphasizes the benefits the Italians gained from the French Revolution:\r\n:For nearly two decades the Italians had the excellent codes of law, a fair system of taxation, a better economic situation, and more religious and intellectual toleration than they had known for centuries.... Everywhere old physical, economic, and intellectual barriers had been thrown down and the Italians had begun to be aware of a common nationality.\r\n\r\n===Nationalism===\r\nOtto Dann and John Dinwiddy report, \"It has long been almost a truism of European history that the French Revolution gave a great\r\nstimulus to the growth of modern nationalism.\"{{cite book|last1=Dann|first1=Otto|last2=Dinwiddy|first2=John|title=Nationalism in the Age of the French Revolution|url=https:\/\/books.google.com\/books?id=qrujM36H7qUC&pg=PP13|year=1988|publisher=Continuum|page=13|isbn=9780907628972}}<\/ref> Nationalism was emphasized by historian [[Carlton J.H. Hayes]] as a major result of the French Revolution across Europe. The impact on French nationalism was profound. Napoleon became such a heroic symbol of the nation that the glory was easily picked up by his nephew, who was overwhelmingly elected president (and later became Emperor Napoleon III).Beatrice Fry Hyslop, ''French Nationalism in 1789'' (1968) especially chap. 7<\/ref> The influence was great in the hundreds of small German states and elsewhere, where it was either inspired by the French example or in reaction against it.Carlton J. H. Hayes, ''The Historical Evolution of Modern Nationalism'' (1931), ch 2\u20133<\/ref>{{cite book|last=Keitner|first=Chimene I.|title=The Paradoxes of Nationalism: The French Revolution and Its Meaning for Contemporary Nation Building|url=https:\/\/books.google.com\/books?id=4MYLwpOJMnUC|year=2007|publisher=SUNY Press|page=12|isbn=9780791469583}}<\/ref>\r\n\r\n===Britain===\r\n{{See also|Revolution Controversy|Aliens Act 1793|1794 Treason Trials}}\r\nAt the beginning of the Revolution, Britain supported the new [[constitutional monarchy]] in France, up until the regicide of [[Louis XVI]]. The majority of the British establishment were strongly opposed to the revolution. Britain, guided by [[Pitt the Younger]], led and funded the series of coalitions that fought France from 1793 to 1815, and with the deposition of [[Napoleon Bonaparte]] culminated with the (temporary) restoration of the Bourbons. [[Edmund Burke]] wrote ''[[Reflections on the Revolution in France]]'', a pamphlet notable for its defence of the principle of constitutional monarchy; the events surrounding the [[London Corresponding Society]] were an example of the fevered times.Emma Vincent Macleod, ''A War of Ideas: British Attitudes to the War against Revolutionary France, 1792\u20131802'' (1999)<\/ref>Palmer, ''The Age of the Democratic Revolution: The Struggle, Volume II'' (1970), pp 459\u2013505.<\/ref>\r\n\r\n===Ireland===\r\nIn Ireland, the effect was to transform what had been an attempt by the [[Protestant Ascendancy]] to gain some autonomy into a mass movement led by the [[Society of United Irishmen]] consisting of both Catholics and Protestants. It stimulated the demand for further reform throughout Ireland, especially in Ulster. These efforts culminated in the [[Irish Rebellion of 1798]], which was quickly suppressed.{{cite book|author=Nick Pelling|title=Anglo-Irish Relations: 1798 1922|url=https:\/\/books.google.com\/books?id=ttSsGEWW3tcC&pg=PA5|year=2002|publisher=Routledge|pages=5\u201310|isbn=9780203986554}}<\/ref>Palmer, ''The Age of the Democratic Revolution'' 2: 491\u2013508.<\/ref> This revolt is seen as the foundation for [[Irish republicanism]], which eventually led to the independence and [[partition of Ireland]] and the establishment of an [[Republic of Ireland|Irish republic]].\r\n\r\n===Germany===\r\n{{More citations needed section|date=December 2015}}\r\n{{Main|History of Germany#French Revolution 1789\u20131815}}\r\nGerman reaction to the Revolution swung from favorable at first to antagonistic. At first it brought liberal and democratic ideas, the end of guilds, of serfdom and of the Jewish ghetto. It brought economic freedoms and agrarian and legal reform. German intellectuals celebrated the outbreak, hoping to see the triumph of Reason and The Enlightenment. There were enemies as well, as the royal courts in Vienna and Berlin denounced the overthrow of the king and the threatened spread of notions of liberty, equality, and fraternity.\r\n\r\nBy 1793, the [[Execution of Louis XVI|execution of the French king]] and the onset of [[Reign of Terror|the Terror]] disillusioned the \"Bildungsb\u00FCrgertum\" (educated middle classes). Reformers said the solution was to have faith in the ability of Germans to reform their laws and institutions in peaceful fashion.James J. Sheehan, ''German History, 1770\u20131866'' (1993), pp. 207\u2013322.<\/ref>Palmer, ''The Age of the Democratic Revolution'' 2:425-58<\/ref>Blanning Blanning, \"The French Revolution and the Modernization of Germany\", in ''Central European History'' (1989) 22#2, pp 109\u201329.<\/ref>\r\n\r\n[[File:Rheinbund 1812, political map.png|thumb|300px|The [[Confederation of the Rhine]], composed of client states under Napoleon's control, 1806 to 1813; most German states belonged except Prussia (in the northeast) and Austria (in the southeast). The map text is in German]]\r\nAfter Prussia was humiliated by Napoleon opinion swung against France and stimulated and shaped German nationalism.{{cite book|author=Theodore S. Hamerow|title=Restoration, Revolution, Reaction: Economics and Politics in Germany, 1815\u20131871|url=https:\/\/books.google.com\/books?id=IPNXfV2-DhcC&pg=PA22|year=1958|publisher=Princeton UP|pages=22\u201324, 44\u201345|isbn=0691007551}}<\/ref>\r\n\r\nFrance took direct control of the Rhineland 1794\u20131814 and radically and permanently liberalized the government, society and economy.T. C. W. Blanning, ''The French Revolution in Germany: Occupation and Resistance in the Rhineland 1792\u20131802'' (1983)<\/ref>\r\n\r\nThe French swept away centuries worth of outmoded restrictions and introduced unprecedented levels of efficiency. The chaos and barriers in a land divided and subdivided among many different petty principalities gave way to a rational, simplified, centralized system controlled by Paris and run by Napoleon's relatives. The most important impact came from the abolition of all feudal privileges and historic taxes, the introduction of legal reforms of the Napoleonic Code, and the reorganization of the judicial and local administrative systems. The economic integration of the Rhineland with France increased prosperity, especially in industrial production, while business accelerated with the new efficiency and lowered trade barriers. The Jews were liberated from the ghetto. One sour point was the hostility of the French officials toward the Roman Catholic Church, the choice of most of the residents. Much of South Germany felt a similar but more muted influence of the French Revolution, while in Prussia and areas to the east there was far less impact.Hajo Holborn, ''A History of Modern Germany, 1648\u20131840 (1964), pp 386\u201387.<\/ref> The reforms were permanent. Decades later workers and peasants in the Rhineland often appealed to Jacobinism to oppose unpopular government programs, while the intelligentsia demanded the maintenance of the Napoleonic Code (which was stayed in effect for a century).Michael Rowe, ''From Reich to state: the Rhineland in the revolutionary age, 1780\u20131830'' (2003)<\/ref>\r\n\r\n=== Poland ===\r\n{{Main| Duchy of Warsaw}}\r\n\r\nWhen the French invaded Russia, Prussia and Austria, Napoleon carved out a Polish state allied to the French known as The Duchy of Warsaw, the Polish had had their first glimpse of independence for 200 years since the partitions of Poland by Russia Austria and Prussia. This also led to an increase in Polish nationalism that would persist throughout the 19th and 20th century.\r\n\r\n===Switzerland===\r\n{{Main|Helvetic Republic}}\r\nThe French invaded Switzerland and turned it into an ally known as the \"[[Helvetic Republic]]\" (1798\u20131803). The interference with localism and traditional liberties was deeply resented, although some modernizing reforms took place.Lerner, Marc H. Lerner, \"The Helvetic Republic: An Ambivalent Reception of French Revolutionary Liberty\", ''French History'' (2004) 18#1, pp 50\u201375.<\/ref>R.R. Palmer, ''The Age of the Democratic Revolution'' 2: 394\u2013421<\/ref> Resistance was strongest in the more traditional Catholic bastions, with armed uprisings breaking out in spring 1798 in the central part of Switzerland. Alois Von Reding, a powerful Swiss general, led an army of 10,000 men from the Cantons of Uri, Schwyz and Nidwalden against the French. This resulted in the Swiss regaining control of Lucerne, however due to the sheer greatness in size of the French army, Von Reding's movement was eventually suppressed. The French Army suppressed the uprisings but support for revolutionary ideals steadily declined, as the Swiss resented their loss of local democracy, the new taxes, the centralization, and the hostility to religion.{{cite book|author=Otto Dann and John Dinwiddy|title=Nationalism in the Age of the French Revolution|url=https:\/\/books.google.com\/books?id=qrujM36H7qUC&pg=PA194|year=1988|publisher=Continuum|pages=190\u201398|isbn=9780907628972}}<\/ref>\r\n\r\nThe instability of France resulted in the creation of two different revolutionary groups with different ideologies of revolt: The aristocrats, seeking the restoration of the Old Swiss Confederacy and a section of the population wanting a coup. Furthermore, Switzerland became a battleground between the armies of France, Austria and Russia. Ultimately, this instability, frequent coups within the government and the eventual Bourla-papey forced Napoleon to sign the Act of Medallion which led to the fall of the Helvetic Republic and the restoration of the Confederacy.\r\n\r\nThe long-term impact of the French Revolution has been assessed by Martin:\r\n:It proclaimed the equality of citizens before the law, equality of languages, freedom of thought and faith; it created a Swiss citizenship, basis of our modern nationality, and the separation of powers, of which the old regime had no conception; it suppressed internal tariffs and other economic restraints; it unified weights and measures, reformed civil and penal law, authorized mixed marriages (between Catholics and Protestants), suppressed torture and improved justice; it developed education and public works.William Martin, ''Histoire de la Suisse'' (Paris, 1926), pp 187\u201388, quoted in Crane Brinson, ''A Decade of Revolution: 1789\u20131799'' (1934), p. 235.<\/ref>\r\n:\r\n\r\n===Belgium===\r\n{{Main|Belgium in the long nineteenth century#French rule}}\r\nFrench invaded the territory of modern-day Belgium and controlled it between 1794\u20131814. The French imposed reforms and incorporated the territory into France. New rulers were sent in by Paris. Belgian men were drafted into the French wars and heavily taxed. Nearly everyone was Catholic, but the Church was repressed. Resistance was strong in every sector, as Belgian nationalism emerged to oppose French rule. The French legal system, however, was adopted, with its equal legal rights, and abolition of class distinctions. Belgium now had a government bureaucracy selected by merit.E.H. Kossmann, ''The Low Countries: 1780\u20131940'' (1978) pp 65\u201381, 101\u201302.<\/ref>\r\n\r\n[[Antwerp]] regained access to the sea and grew quickly as a major port and business center. France promoted commerce and capitalism, paving the way for the ascent of the bourgeoisie and the rapid growth of manufacturing and mining. In economics, therefore, the nobility declined while the middle class Belgian entrepreneurs flourished because of their inclusion in a large market, paving the way for Belgium's leadership role after 1815 in the [[Industrial Revolution]] on the Continent.Bernard A. Cook, ''Belgium'' (2005) pp 49\u201354<\/ref>Samuel Clark, \"Nobility, Bourgeoisie and the Industrial Revolution in Belgium,\" ''Past & Present'' (1984) # 105 pp. 140\u2013175; [https:\/\/www.jstor.org\/stable\/650548 in JSTOR]<\/ref>\r\n\r\n===Netherlands===\r\n{{Main|Batavian Republic}}\r\nFrance turned the Netherlands into a puppet state that had to pay large indemnities.Palmer, ''The Age of the Democratic Revolution'' 2: 394\u2013421<\/ref>\r\n\r\n===Denmark, Norway and Sweden===\r\n{{Main|History of Denmark#Reforms}}\r\nThe Kingdom of Denmark (which included Norway) adopted liberalizing reforms in line with those of the French Revolution, with no direct contact. Danes were aware of French ideas and agreed with them, as it moved from Danish absolutism to a liberal constitutional system between 1750\u20131850. The change of government in 1784 was caused by a power vacuum created when King Christian VII took ill, and power shifted to the crown prince (who later became King Frederik VI) and reform-oriented landowners. In contrast to Old Regime France, agricultural reform was intensified in Denmark, serfdom was abolished and civil rights were extended to the peasants, the finances of the Danish state were healthy, and there were no external or internal crises. That is, reform was gradual and the regime itself carried out agrarian reforms that had the effect of weakening absolutism by creating a class of independent peasant freeholders. Much of the initiative came from well-organized liberals who directed political change in the first half of the 19th century.Henrik Horstboll, and Uffe Osterg\u00E5rd, \"Reform and Revolution: The French Revolution and the Case of Denmark,\" ''Scandinavian Journal of History'' (1990) 15#3 pp 155\u201379<\/ref>H. Arnold Barton, ''Scandinavia in the Revolutionary Era, 1760\u20131815'' (1986)<\/ref>\r\n\r\nIn Sweden, King [[Gustav III of Sweden|Gustav III]] (reigned 1771\u201392) was an enlightened despot, who weakened the nobility and promoted numerous major social reforms. He felt the Swedish monarchy could survive and flourish by achieving a coalition with the newly emerged middle classes against the nobility. He was close to King Louis XVI so he was disgusted with French radicalism. Nevertheless, he decided to promote additional antifeudal reforms to strengthen his hand among the middle classes.Munro Price, \"Louis XVI and Gustavus III: Secret Diplomacy and Counter-Revolution, 1791\u20131792,\" ''Historical Journal'' (1999) 42#2 pp. 435\u2013466 [https:\/\/www.jstor.org\/stable\/3020995 in JSTOR]<\/ref> When the king was assassinated in 1792 his brother [[Charles XIII of Sweden|Charles]] became regent, but real power was with [[Gustaf Adolf Reuterholm]], who bitterly opposed the French Revolution and all its supporters. Under [[Gustav IV Adolf of Sweden|King Gustav IV Adolf]], Sweden joined various coalitions against Napoleon, but was badly defeated and lost much of its territory, especially Finland and Pomerania. The king was overthrown by the army, which in 1810 decided to bring in one of Napoleon's marshals, [[Charles XIV John of Sweden|Bernadotte]], as the heir apparent and army commander. He had a Jacobin background and was well-grounded in revolutionary principles, but put Sweden in the coalition that opposed Napoleon. Bernadotte served as a quite conservative king Charles XIV John of Sweden (1818\u201344),Alan Palmer, ''Bernadotte: Napoleon's Marshal, Sweden's King'' (1991)<\/ref> and his realm included Norway, taken from Denmark in 1814.\r\n\r\n==Impact outside Europe==\r\n===Middle East===\r\nThe impact of the French Revolution on the Middle East came in terms of the political and military impact of Napoleon's invasion; and in the eventual influence of revolutionary and liberal ideas and revolutionary movements or rebellions. In terms of Napoleon's invasion in 1798, the response by Ottoman officials was highly negative. They warned that traditional religion would be overthrown. Long-standing Ottoman friendship with France ended. Sultan [[Selim III]] immediately realized how far behind his empire was, and started to modernize both his army and his governmental system. In Egypt itself, the ruling elite of [[Mamluk#Egypt|Mamluks]] was permanently displaced, speeding the reforms. In intellectual terms, the immediate impact of the French Revolutionary ideas was nearly invisible, but there was a long-range influence on liberal ideas and the ideal of legal equality, as well as the notion of opposition to a tyrannical government. In this regard, the French Revolution brought such influential themes as constitutionalism, parliamentarianism, individual liberty, legal equality, and the sense of ethnic nationalism. These came to fruition about 1876.Nikki R. Keddied, \"The French Revolution in the Middle East\", in Joseph Klaits and Michael Haltzel, eds. ''Global Ramifications of the French Revolution'' (2002), pp 140\u201357.<\/ref>\r\n\r\n===Northern America===\r\n\r\n====British North America====\r\nThe press in the [[Province of Quebec (1763\u20131791)|colony of Quebec]] initially viewed the events of the Revolution positively.{{sfn|Greenwood|1993|p=57}} Press coverage in Quebec on the Revolution was reliant, and reflective of public opinion in London, with the colony's press reliant on newspapers and reprints from journals from the British Isles.{{sfn|Greenwood|1993|p=58}} The early positive reception of the French Revolution had made it politically difficult to justify withholding electoral institutions from the colony to both the British and Quebec public; with the British [[Home Secretary]] [[William Grenville]] remarking how it was hardly \"possible to 'maintain with success' the denial 'to so large a body of British Subjects, the benefits of the British Constitution'.{{sfn|Greenwood|1993|p=63}} Governmental reforms introduced in the ''[[Constitutional Act 1791]]'' split Quebec into two separate colonies, [[Lower Canada]], and [[Upper Canada]]; and introduced electoral institutions to the two colonies.{{sfn|Greenwood|1993|p=63}}\r\n\r\nOpposition to the French Revolution in Quebec first emerged from its clergy, after the French government confiscated the [[S\u00E9minaire de Qu\u00E9bec]]'s properties in France. However, most of the clergy in Quebec did not voice their opposition to the Revolution in its initial years, aware of the prevailing opinion of the colony at that time.{{sfn|Greenwood|1993|p=63}} Public opinion in Quebec began to shift against the Revolution after the Flight to Varennes, and as popular accounts of disturbances in France in 1791 made its way to the colony.{{sfn|Greenwood|1993|p=57}} After the September Massacres, and the subsequent execution of Louis XVI in January 1793, members of the Canadian clergy, and seigneurs began to openly voice opposition against the Revolution.{{sfn|Greenwood|1993|p=65}} A shift in public opinion was also apparent in the first session of the [[Legislative Assembly of Lower Canada]], with the legislature voting against several bills inspired by the French Revolution.{{sfn|Greenwood|1993|p=66}} By 1793, nearly all of the legislative assembly's members refused to be identified as \"democrats,\" a term that was used by supporters of the Revolution.{{sfn|Greenwood|1993|p=70}} By the end of 1793, the clergy, seigneurs, and the bourgeoisie of the Canadas were openly opposed to the Revolution.{{sfn|Greenwood|1993|p=72}} Similar sentiments were also found with the \"second class of Canadians,\" who lauded \"the French revolution for its principles but detests the crimes it has spawned\".{{sfn|Greenwood|1993|p=73}}\r\n\r\nFrench migration to the Canadas was decelerated significantly during, and after the French Revolution; with only a small number of artisans, professionals, and religious emigres from France permitted to settle in the Canadas during that period.{{cite encyclopedia|url=https:\/\/www.thecanadianencyclopedia.ca\/en\/article\/french-immigration-in-canada|title=French Immigration in Canada|last=Dupuis|first=Serge|date=26 February 2018|access-date=3 January 2020|encyclopedia=The Canadian Encyclopedia|publisher=Historica Canada}}<\/ref> Most of these migrants moved to [[Montreal]] or [[Quebec City]], although French nobleman [[Joseph-Genevi\u00E8ve de Puisaye]] also led a small group of French royalists to settle lands north of [[York, Upper Canada|York]] (present day [[Toronto]]). The influx of religious migrants from France reinvigorated the Roman Catholic Church in the Canadas, with the refectory priests who moved to the colonies being responsible for the establishment of a number of parishes throughout [[the Canadas]].\r\n\r\n====United States====\r\nThe French Revolution found widespread American support in its early phase, but when the king was executed it polarized American opinion and played a major role in shaping American politics.{{cite book|author=Charles Downer Hazen|title=Contemporary American Opinion of the French Revolution|url=https:\/\/archive.org\/details\/bub_gb_1s0z2bOEUFwC|year=1897|publisher=Johns Hopkins UP}}<\/ref> President George Washington declared neutrality in the European wars, but the polarization shaped the [[First Party System]]. In 1793, the first [[Democratic-Republican Societies|\"Democratic societies\"]] were formed. They supported the French Revolution in the wake of the execution of the king. The word \"democrat\" was proposed by French Ambassador [[Citizen Genet]] for the societies, which he was secretly subsidizing. The emerging [[Federalist party|Federalists]] led by [[Alexander Hamilton]] began to ridicule the supporters of [[Thomas Jefferson]] as \"democrats\". Genet now began mobilizing American voters using French money, for which he was expelled by President Washington.Genet would have been executed if he returned to Paris; he stayed in New York, became an American citizen, and married the daughter of the governor of New York. Eugene R. Sheridan, \"The Recall of Edmond Charles Genet: A Study in Transatlantic Politics and Diplomacy\", ''Diplomatic History'' (1994) 18#4 pp: 463\u201388.<\/ref>\r\n\r\nAfter President Washington denounced the societies as unrepublican, they faded away. In 1793, as war broke out in Europe, the [[Democratic-Republican Party|Jeffersonian Republican Party]] favored France and pointed to the 1778 treaty that was still in effect. Washington and his unanimous cabinet (including Jefferson) decided the treaty did not bind the U.S. to enter the war, since they stopped being in favor of the Revolution after they executed the King; instead Washington proclaimed neutrality.Susan Dunn, ''Sister Revolutions: French Lightning, American Light'' (2000)<\/ref> Under President Adams, a Federalist, an undeclared naval war took place with France in 1798\u201399, called the \"[[Quasi War]]\". Jefferson became president in 1801, but was hostile to Napoleon as a dictator and emperor. Nevertheless, he did seize the opportunity to [[Louisiana Purchase|purchase Louisiana in 1803]].Lawrence S. Kaplan, \"Jefferson, the Napoleonic Wars, and the Balance of Power\", ''William and Mary Quarterly'' (1957) 14#2 pp. 196\u2013217 [https:\/\/www.jstor.org\/stable\/1922110 in JSTOR]<\/ref>\r\n\r\nThe broad similarities but different experiences between the French and American revolutions lead to a certain kinship between France and the United States, with both countries seeing themselves as pioneers of liberty and promoting republican ideals.{{cite web|title=Similarities Between the American and French Revolutions : Western Civilization II Guides|url=http:\/\/westerncivguides.umwblogs.org\/2012\/04\/16\/similarities-between-the-american-and-french-revolutions\/|website=Western Civilization II Guides|access-date=28 January 2017}}<\/ref> This bond manifested itself in such exchanges as the gift of the [[Statue of Liberty]] by France.{{cite web|title=The French Connection - Statue Of Liberty National Monument (U.S. National Park Service)|url=https:\/\/www.nps.gov\/stli\/learn\/historyculture\/the-french-connection.htm|website=www.nps.gov|access-date=28 January 2017|language=en}}<\/ref>\r\n\r\n===Latin America===\r\nThe call for modification of society was influenced by the revolution in France, and once the hope for change found a place in the hearts of the Haitian people, there was no stopping the radical reformation that was occurring.Rand, David. \"The Haitian Revolution.\" The Haitian Revolution. Accessed March 25, 2015. http:\/\/scholar.library.miami.edu\/slaves\/san_domingo_revolution\/{{dead link|date=November 2017 |bot=InternetArchiveBot |fix-attempted=yes }} individual_essay\/david.html.<\/ref> The Enlightenment ideals and the initiation of the French Revolution were enough to inspire the [[Haitian Revolution]], which evolved into the most successful and comprehensive slave rebellion. Just as the French were successful in transforming their society, so were the Haitians. On April 4, 1792, The French National Assembly granted freedom to slaves in HaitiGhachem, Malick W. The Old Regime and the Haitian Revolution. Cambridge: Cambridge University Press, 2012.<\/ref> and the revolution culminated in 1804; Haiti was an independent nation solely of freed peoples.Akamefula, Tiye, Camille Newsom, Burgey Marcos, and Jong Ho. \"Causes of the Haitian Revolution.\" Haitian Revolution. September 1, 2012. Accessed March 25, 2015. {{cite web |url=http:\/\/haitianrevolutionfblock.weebly.com\/causes-of-the-haitian-revolution.html |title=Archived copy |access-date=2015-03-26 |url-status = dead|archive-url=https:\/\/web.archive.org\/web\/20150402133248\/http:\/\/haitianrevolutionfblock.weebly.com\/causes-of-the-haitian-revolution.html |archive-date=2015-04-02 }}.<\/ref> The activities of the revolutions sparked change across the world. France's transformation was most influential in Europe, and Haiti's influence spanned across every location that continued to practice slavery. John E. Baur honors Haiti as home of the most influential Revolution in history.Baur, John. \"International Repercussions of the Haitian Revolution.\" The Americas 26, no. 4 (1970).<\/ref>\r\n\r\nAs early as 1810, the term \"liberal\" was coined in Spanish politics to indicate supporters of the French Revolution. This usage passed to Latin America and animated the independence movement against Spain. In the nineteenth century \"Liberalism\" was the dominant element in Latin American political thought. French liberal ideas were especially influential in Mexico, particularly as seen through the writings of [[Alexis de Tocqueville]], [[Benjamin Constant]] and [[\u00C9douard Ren\u00E9 de Laboulaye]]. The Latin American political culture oscillated between two opposite poles: the ''traditional'', as based on highly specific personal and family ties to kin groups, communities, and religious identity; and the ''modern'', based on impersonal ideals of individualism, equality, legal rights, and secularism or anti-clericalism. The French Revolutionary model was the basis for the modern viewpoint, as explicated in Mexico in the writings of [[Jos\u00E9 Mar\u00EDa Luis Mora]] (1794\u20131850).\r\n\r\nIn Mexico, modern liberalism was best expressed in the [[Liberal Party (Mexico)|Liberal Party]], the [[Federal Constitution of the United Mexican States of 1857|Constitution of 1857]], the policies of [[Benito Ju\u00E1rez]], and finally by [[Francisco I. Madero]]'s democratic movement leading to the Revolution of 1911.Charles A. Hale, \"The revival of political history and the French Revolution in Mexico\", in Joseph Klaits and Michael Haltzel, eds. ''Global Ramifications of the French Revolution'' (2002), pp 158\u201376.<\/ref>\r\n\r\n==See also==\r\n* [[Edmund Burke#French Revolution: 1688 versus 1789]]\r\n* [[French Revolution and the English Gothic Novel]]\r\n* [[Liberalism#French revolution]]\r\n* [[Romanticism and the French Revolution]]\r\n* [[Papal States#French Revolution and Napoleonic era]]\r\n\r\n==References==\r\n{{Reflist}}\r\n\r\n==Further reading==\r\n* Amann, Peter H., ed. ''The Eighteenth-Century Revolution: French or Western?'' (Heath, 1963) readings from historians\r\n* Acemoglu, Daron; et al. ''The consequences of radical reform: the French Revolution'' (MIT Dept. of Economics, 2009] [https:\/\/archive.org\/details\/consequencesofra00acem online free]\r\n* Artz, Frederick B. ''Reaction & Revolution: 1814\u20131832'' (Rise of Modern Europe) (1934) [https:\/\/archive.org\/details\/in.ernet.dli.2015.499217\/page\/n5 online free]\r\n* {{cite journal|author=Bilici, Faruk|title=La R\u00E9volution Fran\u00E7aise dans l'Historiographie Turque (1789-1927) |language=fr|journal=[[Annales historiques de la R\u00E9volution fran\u00E7aise]]|publisher=[[Armand Colin]]|issue=286|date=October\u2013December 1991|pages=539\u2013549|jstor=41914720}} - Discusses how the ideals of the French Revolution affected the [[Young Turks]]\r\n* Brinton, Crane. ''A Decade of Revolution 1789\u20131799'' (1934) the Revolution in European context\r\n* [[Suzanne Desan|Desan, Suzanne]], et al. eds. ''The French Revolution in Global Perspective'' (2013)\r\n* Desan, Suzanne. \"Internationalizing the French Revolution,\" ''French Politics, Culture & Society'' (2011) 29#2 pp 137\u2013160.\r\n* Fremont-Barnes, Gregory. ed. ''The Encyclopedia of the French Revolutionary and Napoleonic Wars: A Political, Social, and Military History'' (ABC-CLIO: 3 vol 2006)\r\n* Goodwin, A., ed. '' The New Cambridge Modern History, Vol. 8: The American and French Revolutions, 1763\u201393'' (1965), 764pp\r\n* Grab, Alexander. ''Napoleon and the Transformation of Europe'' (Macmillan, 2003), country by country analysis\r\n* {{cite book |last1=Greenwood |first1=Frank Murray |title=Legacies of Fear: Law and Politics in Quebec in the Era of the French Revolution |publisher=University of Toronto Press |year=1993 |isbn=978-0-8020-6974-0}}\r\n* Mazlish, Bruce. \"The French Revolution in Comparative Perspective,\" ''Political Science Quarterly'' (1970) 85#2 pp. 240\u2013258 [https:\/\/www.jstor.org\/stable\/2146945 in JSTOR]\r\n* Mikaberidze, Alexander. \"The Napoleonic Wars: A Global History,\" (Oxford: Oxford University Press, 2020).\r\n* Palmer, R. R. \"The World Revolution of the West: 1763\u20131801,\" ''Political Science Quarterly'' (1954) 69#1 pp. 1\u201314 [https:\/\/www.jstor.org\/stable\/2145054 in JSTOR]\r\n* Palmer, Robert R. ''The Age of the Democratic Revolution: A Political History of Europe and America, 1760\u20131800.'' (2 vol 1959), highly influential comparative history; [https:\/\/www.questia.com\/read\/22790906 vol 1 online]\r\n* Rapport, Mike, and Peter McPhee. \"The International Repercussions of the French Revolution.\" in ''A Companion to the French Revolution'' (2013) pp: 379\u2013396.\r\n* Ross, Steven T. ''European Diplomatic History, 1789\u20131815: France Against Europe'' (1969)\r\n*{{cite journal|author-link=Gunther E. Rothenberg|last=Rothenberg |first=Gunther E.|title=The Origins, Causes, and Extension of the Wars of the French Revolution and Napoleon|journal=[[Journal of Interdisciplinary History]]|volume=18|number=4|date=Spring 1988|pages=771\u201393|jstor=204824|doi=10.2307\/204824 }}\r\n* Rowe, Michael. \"The French revolution, Napoleon, and nationalism in Europe.\" in ''The Oxford handbook of the history of nationalism'' (2013).\r\n* Rude, George F. and Harvey J. Kaye. ''Revolutionary Europe, 1783\u20131815'' (2000), scholarly survey [https:\/\/www.amazon.com\/Revolutionary-Europe-Blackwell-Classic-Histories\/dp\/0631221905\/ excerpt and text search]; also [https:\/\/archive.org\/details\/revolutionaryeur00rudg free to borrow full text]\r\n* Schroeder, Paul. ''The Transformation of European Politics, 1763\u20131848.'' 1996; Thorough coverage of diplomatic history; hostile to Napoleon; [https:\/\/www.questia.com\/library\/book\/the-transformation-of-european-politics-1763-1848-by-paul-w-schroeder.jsp online edition]\r\n* Skocpol, Theda. ''States and social revolutions: A comparative analysis of France, Russia and China'' (Cambridge University Press, 1979.) influential sociological comparison\r\n* von Guttner, Darius. \"The French revolution and Europe-its echoes, its influence, its impact.\" ''Agora'' 51.1 (2016): 34\u201342. [https:\/\/www.researchgate.net\/profile\/Darius_Von_Guettner2\/publication\/305612507_DVG_FrenchRev_Agora_vol_51_1\/links\/5795574908aed51475d8df97\/DVG-FrenchRev-Agora-vol-51-1.pdf online]\r\n* Zamoyski, Adam., ''Phantom Terror: The Threat of Revolution and the Repression of Liberty, 1789\u20131848'' (London: William Collins, 2014).\r\n\r\n{{French Revolution navbox}}\r\n{{Authority control}}\r\n\r\n[[Category:French Revolution]]\r\n[[Category:Impact of revolutions|French revolution]]\r\n" } ================================================ FILE: spec/test_data/browntag_nolines_excerpt.json ================================================ { "wordCount": 1421, "sentences": [ { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "Fulton", "tag": "NP" }, { "token": "County", "tag": "NN" }, { "token": "Grand", "tag": "JJ" }, { "token": "Jury", "tag": "NN" }, { "token": "said", "tag": "VBD" }, { "token": "Friday", "tag": "NR" }, { "token": "an", "tag": "AT" }, { "token": "investigation", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "Atlanta's", "tag": "NP$" }, { "token": "recent", "tag": "JJ" }, { "token": "primary", "tag": "NN" }, { "token": "election", "tag": "NN" }, { "token": "produced", "tag": "VBD" }, { "token": "no", "tag": "AT" }, { "token": "evidence", "tag": "NN" }, { "token": "that", "tag": "CS" }, { "token": "any", "tag": "DTI" }, { "token": "irregularities", "tag": "NNS" }, { "token": "took", "tag": "VBD" }, { "token": "place", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "jury", "tag": "NN" }, { "token": "further", "tag": "RBR" }, { "token": "said", "tag": "VBD" }, { "token": "in", "tag": "IN" }, { "token": "term-end", "tag": "NN" }, { "token": "presentments", "tag": "NNS" }, { "token": "that", "tag": "CS" }, { "token": "the", "tag": "AT" }, { "token": "City", "tag": "NN" }, { "token": "Executive", "tag": "JJ" }, { "token": "Committee", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "which", "tag": "WDT" }, { "token": "had", "tag": "HVD" }, { "token": "over-all", "tag": "JJ" }, { "token": "charge", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "election", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "deserves", "tag": "VBZ" }, { "token": "the", "tag": "AT" }, { "token": "praise", "tag": "NN" }, { "token": "and", "tag": "CC" }, { "token": "thanks", "tag": "NNS" }, { "token": "of", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "City", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "Atlanta", "tag": "NP" }, { "token": "for", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "manner", "tag": "NN" }, { "token": "in", "tag": "IN" }, { "token": "which", "tag": "WDT" }, { "token": "the", "tag": "AT" }, { "token": "election", "tag": "NN" }, { "token": "was", "tag": "BEDZ" }, { "token": "conducted", "tag": "VBN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "September-October", "tag": "NP" }, { "token": "term", "tag": "NN" }, { "token": "jury", "tag": "NN" }, { "token": "had", "tag": "HVD" }, { "token": "been", "tag": "BEN" }, { "token": "charged", "tag": "VBN" }, { "token": "by", "tag": "IN" }, { "token": "Fulton", "tag": "NP" }, { "token": "Superior", "tag": "JJ" }, { "token": "Court", "tag": "NN" }, { "token": "Judge", "tag": "NN" }, { "token": "Durwood", "tag": "NP" }, { "token": "Pye", "tag": "NP" }, { "token": "to", "tag": "TO" }, { "token": "investigate", "tag": "VB" }, { "token": "reports", "tag": "NNS" }, { "token": "of", "tag": "IN" }, { "token": "possible", "tag": "JJ" }, { "token": "irregularities", "tag": "NNS" }, { "token": "in", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "hard-fought", "tag": "JJ" }, { "token": "primary", "tag": "NN" }, { "token": "which", "tag": "WDT" }, { "token": "was", "tag": "BEDZ" }, { "token": "won", "tag": "VBN" }, { "token": "by", "tag": "IN" }, { "token": "Mayor-nominate", "tag": "NN" }, { "token": "Ivan", "tag": "NP" }, { "token": "Allen", "tag": "NP" }, { "token": "Jr.", "tag": "NP" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "only", "tag": "RB" }, { "token": "a", "tag": "AT" }, { "token": "relative", "tag": "JJ" }, { "token": "handful", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "such", "tag": "JJ" }, { "token": "reports", "tag": "NNS" }, { "token": "was", "tag": "BEDZ" }, { "token": "received", "tag": "VBN" }, { "token": ",", "tag": "," }, { "token": "the", "tag": "AT" }, { "token": "jury", "tag": "NN" }, { "token": "said", "tag": "VBD" }, { "token": ",", "tag": "," }, { "token": "considering", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "widespread", "tag": "JJ" }, { "token": "interest", "tag": "NN" }, { "token": "in", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "election", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "the", "tag": "AT" }, { "token": "number", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "voters", "tag": "NNS" }, { "token": "and", "tag": "CC" }, { "token": "the", "tag": "AT" }, { "token": "size", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "this", "tag": "DT" }, { "token": "city", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "jury", "tag": "NN" }, { "token": "said", "tag": "VBD" }, { "token": "it", "tag": "PPS" }, { "token": "did", "tag": "DOD" }, { "token": "find", "tag": "VB" }, { "token": "that", "tag": "CS" }, { "token": "many", "tag": "AP" }, { "token": "of", "tag": "IN" }, { "token": "Georgia's", "tag": "NP$" }, { "token": "registration", "tag": "NN" }, { "token": "and", "tag": "CC" }, { "token": "election", "tag": "NN" }, { "token": "laws", "tag": "NNS" }, { "token": "are", "tag": "BER" }, { "token": "outmoded", "tag": "JJ" }, { "token": "or", "tag": "CC" }, { "token": "inadequate", "tag": "JJ" }, { "token": "and", "tag": "CC" }, { "token": "often", "tag": "RB" }, { "token": "ambiguous", "tag": "JJ" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "it", "tag": "PPS" }, { "token": "recommended", "tag": "VBD" }, { "token": "that", "tag": "CS" }, { "token": "Fulton", "tag": "NP" }, { "token": "legislators", "tag": "NNS" }, { "token": "act", "tag": "VB" }, { "token": "to", "tag": "TO" }, { "token": "have", "tag": "HV" }, { "token": "these", "tag": "DTS" }, { "token": "laws", "tag": "NNS" }, { "token": "studied", "tag": "VBN" }, { "token": "and", "tag": "CC" }, { "token": "revised", "tag": "VBN" }, { "token": "to", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "end", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "modernizing", "tag": "VBG" }, { "token": "and", "tag": "CC" }, { "token": "improving", "tag": "VBG" }, { "token": "them", "tag": "PPO" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "grand", "tag": "JJ" }, { "token": "jury", "tag": "NN" }, { "token": "commented", "tag": "VBD" }, { "token": "on", "tag": "IN" }, { "token": "a", "tag": "AT" }, { "token": "number", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "other", "tag": "AP" }, { "token": "topics", "tag": "NNS" }, { "token": ",", "tag": "," }, { "token": "among", "tag": "IN" }, { "token": "them", "tag": "PPO" }, { "token": "the", "tag": "AT" }, { "token": "Atlanta", "tag": "NP" }, { "token": "and", "tag": "CC" }, { "token": "Fulton", "tag": "NP" }, { "token": "County", "tag": "NN" }, { "token": "purchasing", "tag": "VBG" }, { "token": "departments", "tag": "NNS" }, { "token": "which", "tag": "WDT" }, { "token": "it", "tag": "PPS" }, { "token": "said", "tag": "VBD" }, { "token": "are", "tag": "BER" }, { "token": "well", "tag": "QL" }, { "token": "operated", "tag": "VBN" }, { "token": "and", "tag": "CC" }, { "token": "follow", "tag": "VB" }, { "token": "generally", "tag": "RB" }, { "token": "accepted", "tag": "VBN" }, { "token": "practices", "tag": "NNS" }, { "token": "which", "tag": "WDT" }, { "token": "inure", "tag": "VB" }, { "token": "to", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "best", "tag": "JJT" }, { "token": "interest", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "both", "tag": "ABX" }, { "token": "governments", "tag": "NNS" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "merger", "tag": "NN" }, { "token": "proposed", "tag": "VBN" } ] }, { "taggedWords": [ { "token": "however", "tag": "WRB" }, { "token": ",", "tag": "," }, { "token": "the", "tag": "AT" }, { "token": "jury", "tag": "NN" }, { "token": "said", "tag": "VBD" }, { "token": "it", "tag": "PPS" }, { "token": "believes", "tag": "VBZ" }, { "token": "these", "tag": "DTS" }, { "token": "two", "tag": "CD" }, { "token": "offices", "tag": "NNS" }, { "token": "should", "tag": "MD" }, { "token": "be", "tag": "BE" }, { "token": "combined", "tag": "VBN" }, { "token": "to", "tag": "TO" }, { "token": "achieve", "tag": "VB" }, { "token": "greater", "tag": "JJR" }, { "token": "efficiency", "tag": "NN" }, { "token": "and", "tag": "CC" }, { "token": "reduce", "tag": "VB" }, { "token": "the", "tag": "AT" }, { "token": "cost", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "administration", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "City", "tag": "NN" }, { "token": "Purchasing", "tag": "VBG" }, { "token": "Department", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "the", "tag": "AT" }, { "token": "jury", "tag": "NN" }, { "token": "said", "tag": "VBD" }, { "token": ",", "tag": "," }, { "token": "is", "tag": "BEZ" }, { "token": "lacking", "tag": "VBG" }, { "token": "in", "tag": "IN" }, { "token": "experienced", "tag": "VBN" }, { "token": "clerical", "tag": "JJ" }, { "token": "personnel", "tag": "NNS" }, { "token": "as", "tag": "CS" }, { "token": "a", "tag": "AT" }, { "token": "result", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "city", "tag": "NN" }, { "token": "personnel", "tag": "NNS" }, { "token": "policies", "tag": "NNS" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "it", "tag": "PPS" }, { "token": "urged", "tag": "VBD" }, { "token": "that", "tag": "CS" }, { "token": "the", "tag": "AT" }, { "token": "city", "tag": "NN" }, { "token": "take", "tag": "VB" }, { "token": "steps", "tag": "NNS" }, { "token": "to", "tag": "TO" }, { "token": "remedy", "tag": "VB" }, { "token": "this", "tag": "DT" }, { "token": "problem", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "implementation", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "Georgia's", "tag": "NP$" }, { "token": "automobile", "tag": "NN" }, { "token": "title", "tag": "NN" }, { "token": "law", "tag": "NN" }, { "token": "was", "tag": "BEDZ" }, { "token": "also", "tag": "RB" }, { "token": "recommended", "tag": "VBN" }, { "token": "by", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "outgoing", "tag": "JJ" }, { "token": "jury", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "it", "tag": "PPS" }, { "token": "urged", "tag": "VBD" }, { "token": "that", "tag": "CS" }, { "token": "the", "tag": "AT" }, { "token": "next", "tag": "AP" }, { "token": "Legislature", "tag": "NN" }, { "token": "provide", "tag": "VB" }, { "token": "enabling", "tag": "VBG" }, { "token": "funds", "tag": "NNS" }, { "token": "and", "tag": "CC" }, { "token": "re-set", "tag": "VB" }, { "token": "the", "tag": "AT" }, { "token": "effective", "tag": "JJ" }, { "token": "date", "tag": "NN" }, { "token": "so", "tag": "CS" }, { "token": "that", "tag": "CS" }, { "token": "an", "tag": "AT" }, { "token": "orderly", "tag": "JJ" }, { "token": "implementation", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "law", "tag": "NN" }, { "token": "may", "tag": "MD" }, { "token": "be", "tag": "BE" }, { "token": "effected", "tag": "VBN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "grand", "tag": "JJ" }, { "token": "jury", "tag": "NN" }, { "token": "took", "tag": "VBD" }, { "token": "a", "tag": "AT" }, { "token": "swipe", "tag": "NN" }, { "token": "at", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "State", "tag": "NN" }, { "token": "Welfare", "tag": "NN" }, { "token": "Department's", "tag": "NN$" }, { "token": "handling", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "federal", "tag": "JJ" }, { "token": "funds", "tag": "NNS" }, { "token": "granted", "tag": "VBN" }, { "token": "for", "tag": "IN" }, { "token": "child", "tag": "NN" }, { "token": "welfare", "tag": "NN" }, { "token": "services", "tag": "NNS" }, { "token": "in", "tag": "IN" }, { "token": "foster", "tag": "JJ" }, { "token": "homes", "tag": "NNS" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "this", "tag": "DT" }, { "token": "is", "tag": "BEZ" }, { "token": "one", "tag": "CD" }, { "token": "of", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "major", "tag": "JJ" }, { "token": "items", "tag": "NNS" }, { "token": "in", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "Fulton", "tag": "NP" }, { "token": "County", "tag": "NN" }, { "token": "general", "tag": "JJ" }, { "token": "assistance", "tag": "NN" }, { "token": "program", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "the", "tag": "AT" }, { "token": "jury", "tag": "NN" }, { "token": "said", "tag": "VBD" }, { "token": ",", "tag": "," }, { "token": "but", "tag": "CC" }, { "token": "the", "tag": "AT" }, { "token": "State", "tag": "NN" }, { "token": "Welfare", "tag": "NN" }, { "token": "Department", "tag": "NN" }, { "token": "has", "tag": "HVZ" }, { "token": "seen", "tag": "VBN" }, { "token": "fit", "tag": "JJ" }, { "token": "to", "tag": "TO" }, { "token": "distribute", "tag": "VB" }, { "token": "these", "tag": "DTS" }, { "token": "funds", "tag": "NNS" }, { "token": "through", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "welfare", "tag": "NN" }, { "token": "departments", "tag": "NNS" }, { "token": "of", "tag": "IN" }, { "token": "all", "tag": "ABN" }, { "token": "the", "tag": "AT" }, { "token": "counties", "tag": "NNS" }, { "token": "in", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "state", "tag": "NN" }, { "token": "with", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "exception", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "Fulton", "tag": "NP" }, { "token": "County", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "which", "tag": "WDT" }, { "token": "receives", "tag": "VBZ" }, { "token": "none", "tag": "PN" }, { "token": "of", "tag": "IN" }, { "token": "this", "tag": "DT" }, { "token": "money", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "jurors", "tag": "NNS" }, { "token": "said", "tag": "VBD" }, { "token": "they", "tag": "PPSS" }, { "token": "realize", "tag": "VB" }, { "token": "a", "tag": "AT" }, { "token": "proportionate", "tag": "JJ" }, { "token": "distribution", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "these", "tag": "DTS" }, { "token": "funds", "tag": "NNS" }, { "token": "might", "tag": "MD" }, { "token": "disable", "tag": "VB" }, { "token": "this", "tag": "DT" }, { "token": "program", "tag": "NN" }, { "token": "in", "tag": "IN" }, { "token": "our", "tag": "PP$" }, { "token": "less", "tag": "QL" }, { "token": "populous", "tag": "JJ" }, { "token": "counties", "tag": "NNS" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "nevertheless", "tag": "RB" }, { "token": ",", "tag": "," }, { "token": "we", "tag": "PPSS" }, { "token": "feel", "tag": "VB" }, { "token": "that", "tag": "CS" }, { "token": "in", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "future", "tag": "NN" }, { "token": "Fulton", "tag": "NP" }, { "token": "County", "tag": "NN" }, { "token": "should", "tag": "MD" }, { "token": "receive", "tag": "VB" }, { "token": "some", "tag": "DTI" }, { "token": "portion", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "these", "tag": "DTS" }, { "token": "available", "tag": "JJ" }, { "token": "funds", "tag": "NNS" }, { "token": ",", "tag": "," }, { "token": "the", "tag": "AT" }, { "token": "jurors", "tag": "NNS" }, { "token": "said", "tag": "VBD" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "failure", "tag": "NN" }, { "token": "to", "tag": "TO" }, { "token": "do", "tag": "DO" }, { "token": "this", "tag": "DT" }, { "token": "will", "tag": "MD" }, { "token": "continue", "tag": "VB" }, { "token": "to", "tag": "TO" }, { "token": "place", "tag": "VB" }, { "token": "a", "tag": "AT" }, { "token": "disproportionate", "tag": "JJ" }, { "token": "burden", "tag": "NN" }, { "token": "on", "tag": "IN" }, { "token": "Fulton", "tag": "NP" }, { "token": "taxpayers", "tag": "NNS" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "jury", "tag": "NN" }, { "token": "also", "tag": "RB" }, { "token": "commented", "tag": "VBD" }, { "token": "on", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "Fulton", "tag": "NP" }, { "token": "ordinary's", "tag": "NN$" }, { "token": "court", "tag": "NN" }, { "token": "which", "tag": "WDT" }, { "token": "has", "tag": "HVZ" }, { "token": "been", "tag": "BEN" }, { "token": "under", "tag": "IN" }, { "token": "fire", "tag": "NN" }, { "token": "for", "tag": "IN" }, { "token": "its", "tag": "PP$" }, { "token": "practices", "tag": "NNS" }, { "token": "in", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "appointment", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "appraisers", "tag": "NNS" }, { "token": ",", "tag": "," }, { "token": "guardians", "tag": "NNS" }, { "token": "and", "tag": "CC" }, { "token": "administrators", "tag": "NNS" }, { "token": "and", "tag": "CC" }, { "token": "the", "tag": "AT" }, { "token": "awarding", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "fees", "tag": "NNS" }, { "token": "and", "tag": "CC" }, { "token": "compensation", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "wards", "tag": "NNS" }, { "token": "protected", "tag": "VBN" } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "jury", "tag": "NN" }, { "token": "said", "tag": "VBD" }, { "token": "it", "tag": "PPS" }, { "token": "found", "tag": "VBD" }, { "token": "the", "tag": "AT" }, { "token": "court", "tag": "NN" }, { "token": "has", "tag": "HVZ" }, { "token": "incorporated", "tag": "VBN" }, { "token": "into", "tag": "IN" }, { "token": "its", "tag": "PP$" }, { "token": "operating", "tag": "VBG" }, { "token": "procedures", "tag": "NNS" }, { "token": "the", "tag": "AT" }, { "token": "recommendations", "tag": "NNS" }, { "token": "of", "tag": "IN" }, { "token": "two", "tag": "CD" }, { "token": "previous", "tag": "JJ" }, { "token": "grand", "tag": "JJ" }, { "token": "juries", "tag": "NNS" }, { "token": ",", "tag": "," }, { "token": "the", "tag": "AT" }, { "token": "Atlanta", "tag": "NP" }, { "token": "Bar", "tag": "NN" }, { "token": "Association", "tag": "NN" }, { "token": "and", "tag": "CC" }, { "token": "an", "tag": "AT" }, { "token": "interim", "tag": "NN" }, { "token": "citizens", "tag": "NNS" }, { "token": "committee", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "these", "tag": "DTS" }, { "token": "actions", "tag": "NNS" }, { "token": "should", "tag": "MD" }, { "token": "serve", "tag": "VB" }, { "token": "to", "tag": "TO" }, { "token": "protect", "tag": "VB" }, { "token": "in", "tag": "IN" }, { "token": "fact", "tag": "NN" }, { "token": "and", "tag": "CC" }, { "token": "in", "tag": "IN" }, { "token": "effect", "tag": "NN" }, { "token": "the", "tag": "AT" }, { "token": "court's", "tag": "NN$" }, { "token": "wards", "tag": "NNS" }, { "token": "from", "tag": "IN" }, { "token": "undue", "tag": "JJ" }, { "token": "costs", "tag": "NNS" }, { "token": "and", "tag": "CC" }, { "token": "its", "tag": "PP$" }, { "token": "appointed", "tag": "VBN" }, { "token": "and", "tag": "CC" }, { "token": "elected", "tag": "VBN" }, { "token": "servants", "tag": "NNS" }, { "token": "from", "tag": "IN" }, { "token": "unmeritorious", "tag": "JJ" }, { "token": "criticisms", "tag": "NNS" }, { "token": ",", "tag": "," }, { "token": "the", "tag": "AT" }, { "token": "jury", "tag": "NN" }, { "token": "said", "tag": "VBD" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "regarding", "tag": "IN" }, { "token": "Atlanta's", "tag": "NP$" }, { "token": "new", "tag": "JJ" }, { "token": "multi-million-dollar", "tag": "JJ" }, { "token": "airport", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "the", "tag": "AT" }, { "token": "jury", "tag": "NN" }, { "token": "recommended", "tag": "VBD" }, { "token": "that", "tag": "CS" }, { "token": "when", "tag": "WRB" }, { "token": "the", "tag": "AT" }, { "token": "new", "tag": "JJ" }, { "token": "management", "tag": "NN" }, { "token": "takes", "tag": "VBZ" }, { "token": "charge", "tag": "NN" }, { "token": "Jan.", "tag": "NP" }, { "token": "1", "tag": "CD" }, { "token": "the", "tag": "AT" }, { "token": "airport", "tag": "NN" }, { "token": "be", "tag": "BE" }, { "token": "operated", "tag": "VBN" }, { "token": "in", "tag": "IN" }, { "token": "a", "tag": "AT" }, { "token": "manner", "tag": "NN" }, { "token": "that", "tag": "WPS" }, { "token": "will", "tag": "MD" }, { "token": "eliminate", "tag": "VB" }, { "token": "political", "tag": "JJ" }, { "token": "influences", "tag": "NNS" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "jury", "tag": "NN" }, { "token": "did", "tag": "DOD" }, { "token": "not", "tag": "*" }, { "token": "elaborate", "tag": "VB" }, { "token": ",", "tag": "," }, { "token": "but", "tag": "CC" }, { "token": "it", "tag": "PPS" }, { "token": "added", "tag": "VBD" }, { "token": "that", "tag": "CS" }, { "token": "there", "tag": "EX" }, { "token": "should", "tag": "MD" }, { "token": "be", "tag": "BE" }, { "token": "periodic", "tag": "JJ" }, { "token": "surveillance", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "pricing", "tag": "VBG" }, { "token": "practices", "tag": "NNS" }, { "token": "of", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "concessionaires", "tag": "NNS" }, { "token": "for", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "purpose", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "keeping", "tag": "VBG" }, { "token": "the", "tag": "AT" }, { "token": "prices", "tag": "NNS" }, { "token": "reasonable", "tag": "JJ" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "ask", "tag": "VB" }, { "token": "jail", "tag": "NN" }, { "token": "deputies", "tag": "NNS" } ] }, { "taggedWords": [ { "token": "on", "tag": "IN" }, { "token": "other", "tag": "AP" }, { "token": "matters", "tag": "NNS" }, { "token": ",", "tag": "," }, { "token": "the", "tag": "AT" }, { "token": "jury", "tag": "NN" }, { "token": "recommended", "tag": "VBD" }, { "token": "that", "tag": "CS" }, { "token": ":", "tag": ":" }, { "token": "1", "tag": "CD" }, { "token": "four", "tag": "CD" }, { "token": "additional", "tag": "JJ" }, { "token": "deputies", "tag": "NNS" }, { "token": "be", "tag": "BE" }, { "token": "employed", "tag": "VBN" }, { "token": "at", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "Fulton", "tag": "NP" }, { "token": "County", "tag": "NN" }, { "token": "Jail", "tag": "NN" }, { "token": "and", "tag": "CC" }, { "token": "a", "tag": "AT" }, { "token": "doctor", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "medical", "tag": "JJ" }, { "token": "intern", "tag": "NN" }, { "token": "or", "tag": "CC" }, { "token": "extern", "tag": "NN" }, { "token": "be", "tag": "BE" }, { "token": "employed", "tag": "VBN" }, { "token": "for", "tag": "IN" }, { "token": "night", "tag": "NN" }, { "token": "and", "tag": "CC" }, { "token": "weekend", "tag": "NN" }, { "token": "duty", "tag": "NN" }, { "token": "at", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "jail", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "2", "tag": "CD" }, { "token": "Fulton", "tag": "NP" }, { "token": "legislators", "tag": "NNS" }, { "token": "work", "tag": "VB" }, { "token": "with", "tag": "IN" }, { "token": "city", "tag": "NN" }, { "token": "officials", "tag": "NNS" }, { "token": "to", "tag": "TO" }, { "token": "pass", "tag": "VB" }, { "token": "enabling", "tag": "VBG" }, { "token": "legislation", "tag": "NN" }, { "token": "that", "tag": "WPS" }, { "token": "will", "tag": "MD" }, { "token": "permit", "tag": "VB" }, { "token": "the", "tag": "AT" }, { "token": "establishment", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "a", "tag": "AT" }, { "token": "fair", "tag": "JJ" }, { "token": "and", "tag": "CC" }, { "token": "equitable", "tag": "JJ" }, { "token": "pension", "tag": "NN" }, { "token": "plan", "tag": "NN" }, { "token": "for", "tag": "IN" }, { "token": "city", "tag": "NN" }, { "token": "employes", "tag": "NNS" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "jury", "tag": "NN" }, { "token": "praised", "tag": "VBD" }, { "token": "the", "tag": "AT" }, { "token": "administration", "tag": "NN" }, { "token": "and", "tag": "CC" }, { "token": "operation", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "Atlanta", "tag": "NP" }, { "token": "Police", "tag": "NNS" }, { "token": "Department", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "the", "tag": "AT" }, { "token": "Fulton", "tag": "NP" }, { "token": "Tax", "tag": "NN" }, { "token": "Commissioner's", "tag": "NN$" }, { "token": "Office", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "the", "tag": "AT" }, { "token": "Bellwood", "tag": "NP" }, { "token": "and", "tag": "CC" }, { "token": "Alpharetta", "tag": "NP" }, { "token": "prison", "tag": "NN" }, { "token": "farms", "tag": "NNS" }, { "token": ",", "tag": "," }, { "token": "Grady", "tag": "NP" }, { "token": "Hospital", "tag": "NN" }, { "token": "and", "tag": "CC" }, { "token": "the", "tag": "AT" }, { "token": "Fulton", "tag": "NP" }, { "token": "Health", "tag": "NN" }, { "token": "Department", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "Mayor", "tag": "NN" }, { "token": "William", "tag": "NP" }, { "token": "B.", "tag": "NP" }, { "token": "Hartsfield", "tag": "NP" }, { "token": "filed", "tag": "VBD" }, { "token": "suit", "tag": "NN" }, { "token": "for", "tag": "IN" }, { "token": "divorce", "tag": "NN" }, { "token": "from", "tag": "IN" }, { "token": "his", "tag": "PP$" }, { "token": "wife", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "Pearl", "tag": "NP" }, { "token": "Williams", "tag": "NP" }, { "token": "Hartsfield", "tag": "NP" }, { "token": ",", "tag": "," }, { "token": "in", "tag": "IN" }, { "token": "Fulton", "tag": "NP" }, { "token": "Superior", "tag": "JJ" }, { "token": "Court", "tag": "NN" }, { "token": "Friday", "tag": "NR" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "his", "tag": "PP$" }, { "token": "petition", "tag": "NN" }, { "token": "charged", "tag": "VBD" }, { "token": "mental", "tag": "JJ" }, { "token": "cruelty", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "couple", "tag": "NN" }, { "token": "was", "tag": "BEDZ" }, { "token": "married", "tag": "VBN" }, { "token": "Aug.", "tag": "NP" }, { "token": "2", "tag": "CD" }, { "token": ",", "tag": "," }, { "token": "1913", "tag": "CD" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "they", "tag": "PPSS" }, { "token": "have", "tag": "HV" }, { "token": "a", "tag": "AT" }, { "token": "son", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "William", "tag": "NP" }, { "token": "Berry", "tag": "NP" }, { "token": "Jr.", "tag": "NP" }, { "token": ",", "tag": "," }, { "token": "and", "tag": "CC" }, { "token": "a", "tag": "AT" }, { "token": "daughter", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "Mrs.", "tag": "NP" }, { "token": "J.", "tag": "NP" }, { "token": "M.", "tag": "NP" }, { "token": "Cheshire", "tag": "NP" }, { "token": "of", "tag": "IN" }, { "token": "Griffin", "tag": "NP" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "attorneys", "tag": "NNS" }, { "token": "for", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "mayor", "tag": "NN" }, { "token": "said", "tag": "VBD" }, { "token": "that", "tag": "CS" }, { "token": "an", "tag": "AT" }, { "token": "amicable", "tag": "JJ" }, { "token": "property", "tag": "NN" }, { "token": "settlement", "tag": "NN" }, { "token": "has", "tag": "HVZ" }, { "token": "been", "tag": "BEN" }, { "token": "agreed", "tag": "VBN" }, { "token": "upon", "tag": "RB" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "petition", "tag": "NN" }, { "token": "listed", "tag": "VBD" }, { "token": "the", "tag": "AT" }, { "token": "mayor's", "tag": "NN$" }, { "token": "occupation", "tag": "NN" }, { "token": "as", "tag": "CS" }, { "token": "attorney", "tag": "NN" }, { "token": "and", "tag": "CC" }, { "token": "his", "tag": "PP$" }, { "token": "age", "tag": "NN" }, { "token": "as", "tag": "CS" }, { "token": "71", "tag": "CD" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "it", "tag": "PPS" }, { "token": "listed", "tag": "VBD" }, { "token": "his", "tag": "PP$" }, { "token": "wife's", "tag": "NN$" }, { "token": "age", "tag": "NN" }, { "token": "as", "tag": "CS" }, { "token": "74", "tag": "CD" }, { "token": "and", "tag": "CC" }, { "token": "place", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "birth", "tag": "NN" }, { "token": "as", "tag": "CS" }, { "token": "Opelika", "tag": "NP" }, { "token": ",", "tag": "," }, { "token": "Ala.", "tag": "NP" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "petition", "tag": "NN" }, { "token": "said", "tag": "VBD" }, { "token": "that", "tag": "CS" }, { "token": "the", "tag": "AT" }, { "token": "couple", "tag": "NN" }, { "token": "has", "tag": "HVZ" }, { "token": "not", "tag": "*" }, { "token": "lived", "tag": "VBN" }, { "token": "together", "tag": "RB" }, { "token": "as", "tag": "CS" }, { "token": "man", "tag": "NN" }, { "token": "and", "tag": "CC" }, { "token": "wife", "tag": "NN" }, { "token": "for", "tag": "IN" }, { "token": "more", "tag": "AP" }, { "token": "than", "tag": "IN" }, { "token": "a", "tag": "AT" }, { "token": "year", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "Hartsfield", "tag": "NP" }, { "token": "home", "tag": "NR" }, { "token": "is", "tag": "BEZ" }, { "token": "at", "tag": "IN" }, { "token": "637", "tag": "CD" }, { "token": "E.", "tag": "NP" }, { "token": "Pelham", "tag": "NP" }, { "token": "Rd.", "tag": "NN" }, { "token": "J", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "Henry", "tag": "NP" }, { "token": "L.", "tag": "NP" }, { "token": "Bowden", "tag": "NP" }, { "token": "was", "tag": "BEDZ" }, { "token": "listed", "tag": "VBN" }, { "token": "on", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "petition", "tag": "NN" }, { "token": "as", "tag": "CS" }, { "token": "the", "tag": "AT" }, { "token": "mayor's", "tag": "NN$" }, { "token": "attorney", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "Hartsfield", "tag": "NP" }, { "token": "has", "tag": "HVZ" }, { "token": "been", "tag": "BEN" }, { "token": "mayor", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "Atlanta", "tag": "NP" }, { "token": ",", "tag": "," }, { "token": "with", "tag": "IN" }, { "token": "exception", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "one", "tag": "CD" }, { "token": "brief", "tag": "JJ" }, { "token": "interlude", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "since", "tag": "IN" }, { "token": "1937", "tag": "CD" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "his", "tag": "PP$" }, { "token": "political", "tag": "JJ" }, { "token": "career", "tag": "NN" }, { "token": "goes", "tag": "VBZ" }, { "token": "back", "tag": "RB" }, { "token": "to", "tag": "IN" }, { "token": "his", "tag": "PP$" }, { "token": "election", "tag": "NN" }, { "token": "to", "tag": "IN" }, { "token": "city", "tag": "NN" }, { "token": "council", "tag": "NN" }, { "token": "in", "tag": "IN" }, { "token": "1923", "tag": "CD" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "mayor's", "tag": "NN$" }, { "token": "present", "tag": "JJ" }, { "token": "term", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "office", "tag": "NN" }, { "token": "expires", "tag": "VBZ" }, { "token": "Jan.", "tag": "NP" }, { "token": "1", "tag": "CD" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "he", "tag": "PPS" }, { "token": "will", "tag": "MD" }, { "token": "be", "tag": "BE" }, { "token": "succeeded", "tag": "VBN" }, { "token": "by", "tag": "IN" }, { "token": "Ivan", "tag": "NP" }, { "token": "Allen", "tag": "NP" }, { "token": "Jr.", "tag": "NP" }, { "token": ",", "tag": "," }, { "token": "who", "tag": "WPS" }, { "token": "became", "tag": "VBD" }, { "token": "a", "tag": "AT" }, { "token": "candidate", "tag": "NN" }, { "token": "in", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "Sept.", "tag": "NP" }, { "token": "13", "tag": "CD" }, { "token": "primary", "tag": "NN" }, { "token": "after", "tag": "CS" }, { "token": "Mayor", "tag": "NN" }, { "token": "Hartsfield", "tag": "NP" }, { "token": "announced", "tag": "VBD" }, { "token": "that", "tag": "CS" }, { "token": "he", "tag": "PPS" }, { "token": "would", "tag": "MD" }, { "token": "not", "tag": "*" }, { "token": "run", "tag": "VB" }, { "token": "for", "tag": "IN" }, { "token": "reelection", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "Georgia", "tag": "NP" }, { "token": "Republicans", "tag": "NPS" }, { "token": "are", "tag": "BER" }, { "token": "getting", "tag": "VBG" }, { "token": "strong", "tag": "JJ" }, { "token": "encouragement", "tag": "NN" }, { "token": "to", "tag": "TO" }, { "token": "enter", "tag": "VB" }, { "token": "a", "tag": "AT" }, { "token": "candidate", "tag": "NN" }, { "token": "in", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "1962", "tag": "CD" }, { "token": "governor's", "tag": "NN$" }, { "token": "race", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "a", "tag": "AT" }, { "token": "top", "tag": "JJS" }, { "token": "official", "tag": "NN" }, { "token": "said", "tag": "VBD" }, { "token": "Wednesday", "tag": "NR" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "Robert", "tag": "NP" }, { "token": "Snodgrass", "tag": "NP" }, { "token": ",", "tag": "," }, { "token": "state", "tag": "NN" }, { "token": "J", "tag": "NN" }, { "token": "chairman", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "said", "tag": "VBD" }, { "token": "a", "tag": "AT" }, { "token": "meeting", "tag": "NN" }, { "token": "held", "tag": "VBN" }, { "token": "Tuesday", "tag": "NR" }, { "token": "night", "tag": "NN" }, { "token": "in", "tag": "IN" }, { "token": "Blue", "tag": "JJ" }, { "token": "Ridge", "tag": "NN" }, { "token": "brought", "tag": "VBD" }, { "token": "enthusiastic", "tag": "JJ" }, { "token": "responses", "tag": "NNS" }, { "token": "from", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "audience", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "State", "tag": "NN" }, { "token": "Party", "tag": "NN" }, { "token": "Chairman", "tag": "NN" }, { "token": "James", "tag": "NP" }, { "token": "W.", "tag": "NP" }, { "token": "Dorsey", "tag": "NP" }, { "token": "added", "tag": "VBD" }, { "token": "that", "tag": "CS" }, { "token": "enthusiasm", "tag": "NN" }, { "token": "was", "tag": "BEDZ" }, { "token": "picking", "tag": "VBG" }, { "token": "up", "tag": "RP" }, { "token": "for", "tag": "IN" }, { "token": "a", "tag": "AT" }, { "token": "state", "tag": "NN" }, { "token": "rally", "tag": "NN" }, { "token": "to", "tag": "TO" }, { "token": "be", "tag": "BE" }, { "token": "held", "tag": "VBN" }, { "token": "Sept.", "tag": "NP" }, { "token": "8", "tag": "CD" }, { "token": "in", "tag": "IN" }, { "token": "Savannah", "tag": "NP" }, { "token": "at", "tag": "IN" }, { "token": "which", "tag": "WDT" }, { "token": "newly", "tag": "RB" }, { "token": "elected", "tag": "VBN" }, { "token": "Texas", "tag": "NP" }, { "token": "Sen.", "tag": "NN" }, { "token": "John", "tag": "NP" }, { "token": "Tower", "tag": "NP" }, { "token": "will", "tag": "MD" }, { "token": "be", "tag": "BE" }, { "token": "the", "tag": "AT" }, { "token": "featured", "tag": "VBN" }, { "token": "speaker", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "in", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "Blue", "tag": "JJ" }, { "token": "Ridge", "tag": "NN" }, { "token": "meeting", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "the", "tag": "AT" }, { "token": "audience", "tag": "NN" }, { "token": "was", "tag": "BEDZ" }, { "token": "warned", "tag": "VBN" }, { "token": "that", "tag": "CS" }, { "token": "entering", "tag": "VBG" }, { "token": "a", "tag": "AT" }, { "token": "candidate", "tag": "NN" }, { "token": "for", "tag": "IN" }, { "token": "governor", "tag": "NN" }, { "token": "would", "tag": "MD" }, { "token": "force", "tag": "VB" }, { "token": "it", "tag": "PPO" }, { "token": "to", "tag": "TO" }, { "token": "take", "tag": "VB" }, { "token": "petitions", "tag": "NNS" }, { "token": "out", "tag": "RP" }, { "token": "into", "tag": "IN" }, { "token": "voting", "tag": "VBG" }, { "token": "precincts", "tag": "NNS" }, { "token": "to", "tag": "TO" }, { "token": "obtain", "tag": "VB" }, { "token": "the", "tag": "AT" }, { "token": "signatures", "tag": "NNS" }, { "token": "of", "tag": "IN" }, { "token": "registered", "tag": "VBN" }, { "token": "voters", "tag": "NNS" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "despite", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "warning", "tag": "VBG" }, { "token": ",", "tag": "," }, { "token": "there", "tag": "EX" }, { "token": "was", "tag": "BEDZ" }, { "token": "a", "tag": "AT" }, { "token": "unanimous", "tag": "JJ" }, { "token": "vote", "tag": "NN" }, { "token": "to", "tag": "TO" }, { "token": "enter", "tag": "VB" }, { "token": "a", "tag": "AT" }, { "token": "candidate", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "according", "tag": "IN" }, { "token": "to", "tag": "IN" }, { "token": "Republicans", "tag": "NPS" }, { "token": "who", "tag": "WPS" }, { "token": "attended", "tag": "VBD" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "when", "tag": "WRB" }, { "token": "the", "tag": "AT" }, { "token": "crowd", "tag": "NN" }, { "token": "was", "tag": "BEDZ" }, { "token": "asked", "tag": "VBN" }, { "token": "whether", "tag": "CS" }, { "token": "it", "tag": "PPS" }, { "token": "wanted", "tag": "VBD" }, { "token": "to", "tag": "TO" }, { "token": "wait", "tag": "VB" }, { "token": "one", "tag": "CD" }, { "token": "more", "tag": "AP" }, { "token": "term", "tag": "NN" }, { "token": "to", "tag": "TO" }, { "token": "make", "tag": "VB" }, { "token": "the", "tag": "AT" }, { "token": "race", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "it", "tag": "PPS" }, { "token": "voted", "tag": "VBD" }, { "token": "no", "tag": "RB" }, { "token": "--", "tag": "--" }, { "token": "and", "tag": "CC" }, { "token": "there", "tag": "EX" }, { "token": "were", "tag": "BED" }, { "token": "no", "tag": "AT" }, { "token": "dissents", "tag": "NNS" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "largest", "tag": "JJT" }, { "token": "hurdle", "tag": "NN" }, { "token": "the", "tag": "AT" }, { "token": "Republicans", "tag": "NPS" }, { "token": "would", "tag": "MD" }, { "token": "have", "tag": "HV" }, { "token": "to", "tag": "TO" }, { "token": "face", "tag": "VB" }, { "token": "is", "tag": "BEZ" }, { "token": "a", "tag": "AT" }, { "token": "state", "tag": "NN" }, { "token": "law", "tag": "NN" }, { "token": "which", "tag": "WDT" }, { "token": "says", "tag": "VBZ" }, { "token": "that", "tag": "CS" }, { "token": "before", "tag": "CS" }, { "token": "making", "tag": "VBG" }, { "token": "a", "tag": "AT" }, { "token": "first", "tag": "OD" }, { "token": "race", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "one", "tag": "CD" }, { "token": "of", "tag": "IN" }, { "token": "two", "tag": "CD" }, { "token": "alternative", "tag": "JJ" }, { "token": "courses", "tag": "NNS" }, { "token": "must", "tag": "MD" }, { "token": "be", "tag": "BE" }, { "token": "taken", "tag": "VBN" }, { "token": ":", "tag": ":" }, { "token": "1", "tag": "CD" }, { "token": "five", "tag": "CD" }, { "token": "per", "tag": "IN" }, { "token": "cent", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "voters", "tag": "NNS" }, { "token": "in", "tag": "IN" }, { "token": "each", "tag": "DT" }, { "token": "county", "tag": "NN" }, { "token": "must", "tag": "MD" }, { "token": "sign", "tag": "VB" }, { "token": "petitions", "tag": "NNS" }, { "token": "requesting", "tag": "VBG" }, { "token": "that", "tag": "CS" }, { "token": "the", "tag": "AT" }, { "token": "Republicans", "tag": "NPS" }, { "token": "be", "tag": "BE" }, { "token": "allowed", "tag": "VBN" }, { "token": "to", "tag": "TO" }, { "token": "place", "tag": "VB" }, { "token": "names", "tag": "NNS" }, { "token": "of", "tag": "IN" }, { "token": "candidates", "tag": "NNS" }, { "token": "on", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "general", "tag": "JJ" }, { "token": "election", "tag": "NN" }, { "token": "ballot", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "or", "tag": "CC" }, { "token": "2", "tag": "CD" }, { "token": "the", "tag": "AT" }, { "token": "Republicans", "tag": "NPS" }, { "token": "must", "tag": "MD" }, { "token": "hold", "tag": "VB" }, { "token": "a", "tag": "AT" }, { "token": "primary", "tag": "NN" }, { "token": "under", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "county", "tag": "NN" }, { "token": "unit", "tag": "NN" }, { "token": "system", "tag": "NN" }, { "token": "--", "tag": "--" }, { "token": "a", "tag": "AT" }, { "token": "system", "tag": "NN" }, { "token": "which", "tag": "WDT" }, { "token": "the", "tag": "AT" }, { "token": "party", "tag": "NN" }, { "token": "opposes", "tag": "VBZ" }, { "token": "in", "tag": "IN" }, { "token": "its", "tag": "PP$" }, { "token": "platform", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "Sam", "tag": "NP" }, { "token": "Caldwell", "tag": "NP" }, { "token": ",", "tag": "," }, { "token": "State", "tag": "NN" }, { "token": "Highway", "tag": "NN" }, { "token": "Department", "tag": "NN" }, { "token": "public", "tag": "JJ" }, { "token": "relations", "tag": "NNS" }, { "token": "director", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "resigned", "tag": "VBD" }, { "token": "Tuesday", "tag": "NR" }, { "token": "to", "tag": "TO" }, { "token": "work", "tag": "VB" }, { "token": "for", "tag": "IN" }, { "token": "Lt.", "tag": "NN" }, { "token": "Gov.", "tag": "NN" }, { "token": "Garland", "tag": "NP" }, { "token": "Byrd's", "tag": "NP$" }, { "token": "campaign", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "Caldwell's", "tag": "NP$" }, { "token": "resignation", "tag": "NN" }, { "token": "had", "tag": "HVD" }, { "token": "been", "tag": "BEN" }, { "token": "expected", "tag": "VBN" }, { "token": "for", "tag": "IN" }, { "token": "some", "tag": "DTI" }, { "token": "time", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "he", "tag": "PPS" }, { "token": "will", "tag": "MD" }, { "token": "be", "tag": "BE" }, { "token": "succeeded", "tag": "VBN" }, { "token": "by", "tag": "IN" }, { "token": "Rob", "tag": "NP" }, { "token": "Ledford", "tag": "NP" }, { "token": "of", "tag": "IN" }, { "token": "Gainesville", "tag": "NP" }, { "token": ",", "tag": "," }, { "token": "who", "tag": "WPS" }, { "token": "has", "tag": "HVZ" }, { "token": "been", "tag": "BEN" }, { "token": "an", "tag": "AT" }, { "token": "assistant", "tag": "NN" }, { "token": "more", "tag": "AP" }, { "token": "than", "tag": "IN" }, { "token": "three", "tag": "CD" }, { "token": "years", "tag": "NNS" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "when", "tag": "WRB" }, { "token": "the", "tag": "AT" }, { "token": "gubernatorial", "tag": "JJ" }, { "token": "campaign", "tag": "NN" }, { "token": "starts", "tag": "VBZ" }, { "token": ",", "tag": "," }, { "token": "Caldwell", "tag": "NP" }, { "token": "is", "tag": "BEZ" }, { "token": "expected", "tag": "VBN" }, { "token": "to", "tag": "TO" }, { "token": "become", "tag": "VB" }, { "token": "a", "tag": "AT" }, { "token": "campaign", "tag": "NN" }, { "token": "coordinator", "tag": "NN" }, { "token": "for", "tag": "IN" }, { "token": "Byrd", "tag": "NP" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "Georgia", "tag": "NP" }, { "token": "Legislature", "tag": "NN" }, { "token": "will", "tag": "MD" }, { "token": "wind", "tag": "VB" }, { "token": "up", "tag": "RP" }, { "token": "its", "tag": "PP$" }, { "token": "1961", "tag": "CD" }, { "token": "session", "tag": "NN" }, { "token": "Monday", "tag": "NR" }, { "token": "and", "tag": "CC" }, { "token": "head", "tag": "VB" }, { "token": "for", "tag": "IN" }, { "token": "home", "tag": "NR" }, { "token": "--", "tag": "--" }, { "token": "where", "tag": "WRB" }, { "token": "some", "tag": "DTI" }, { "token": "of", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "highway", "tag": "NN" }, { "token": "bond", "tag": "NN" }, { "token": "money", "tag": "NN" }, { "token": "it", "tag": "PPS" }, { "token": "approved", "tag": "VBD" }, { "token": "will", "tag": "MD" }, { "token": "follow", "tag": "VB" }, { "token": "shortly", "tag": "RB" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "before", "tag": "IN" }, { "token": "adjournment", "tag": "NN" }, { "token": "Monday", "tag": "NR" }, { "token": "afternoon", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "the", "tag": "AT" }, { "token": "Senate", "tag": "NN" }, { "token": "is", "tag": "BEZ" }, { "token": "expected", "tag": "VBN" }, { "token": "to", "tag": "TO" }, { "token": "approve", "tag": "VB" }, { "token": "a", "tag": "AT" }, { "token": "study", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "number", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "legislators", "tag": "NNS" }, { "token": "allotted", "tag": "VBN" }, { "token": "to", "tag": "IN" }, { "token": "rural", "tag": "JJ" }, { "token": "and", "tag": "CC" }, { "token": "urban", "tag": "JJ" }, { "token": "areas", "tag": "NNS" }, { "token": "to", "tag": "TO" }, { "token": "determine", "tag": "VB" }, { "token": "what", "tag": "WDT" }, { "token": "adjustments", "tag": "NNS" }, { "token": "should", "tag": "MD" }, { "token": "be", "tag": "BE" }, { "token": "made", "tag": "VBN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "Gov.", "tag": "NN" }, { "token": "Vandiver", "tag": "NP" }, { "token": "is", "tag": "BEZ" }, { "token": "expected", "tag": "VBN" }, { "token": "to", "tag": "TO" }, { "token": "make", "tag": "VB" }, { "token": "the", "tag": "AT" }, { "token": "traditional", "tag": "JJ" }, { "token": "visit", "tag": "NN" }, { "token": "to", "tag": "IN" }, { "token": "both", "tag": "ABX" }, { "token": "chambers", "tag": "NNS" }, { "token": "as", "tag": "CS" }, { "token": "they", "tag": "PPSS" }, { "token": "work", "tag": "VB" }, { "token": "toward", "tag": "IN" }, { "token": "adjournment", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "Vandiver", "tag": "NP" }, { "token": "likely", "tag": "RB" }, { "token": "will", "tag": "MD" }, { "token": "mention", "tag": "VB" }, { "token": "the", "tag": "AT" }, { "token": "$100", "tag": "NNS" }, { "token": "million", "tag": "CD" }, { "token": "highway", "tag": "NN" }, { "token": "bond", "tag": "NN" }, { "token": "issue", "tag": "NN" }, { "token": "approved", "tag": "VBN" }, { "token": "earlier", "tag": "RBR" }, { "token": "in", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "session", "tag": "NN" }, { "token": "as", "tag": "CS" }, { "token": "his", "tag": "PP$" }, { "token": "first", "tag": "OD" }, { "token": "priority", "tag": "NN" }, { "token": "item", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "construction", "tag": "NN" }, { "token": "bonds", "tag": "NNS" } ] }, { "taggedWords": [ { "token": "meanwhile", "tag": "RB" }, { "token": ",", "tag": "," }, { "token": "it", "tag": "PPS" }, { "token": "was", "tag": "BEDZ" }, { "token": "learned", "tag": "VBN" }, { "token": "the", "tag": "AT" }, { "token": "State", "tag": "NN" }, { "token": "Highway", "tag": "NN" }, { "token": "Department", "tag": "NN" }, { "token": "is", "tag": "BEZ" }, { "token": "very", "tag": "QL" }, { "token": "near", "tag": "RB" }, { "token": "being", "tag": "BEG" }, { "token": "ready", "tag": "JJ" }, { "token": "to", "tag": "TO" }, { "token": "issue", "tag": "VB" }, { "token": "the", "tag": "AT" }, { "token": "first", "tag": "OD" }, { "token": "$30", "tag": "NNS" }, { "token": "million", "tag": "CD" }, { "token": "worth", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "highway", "tag": "NN" }, { "token": "reconstruction", "tag": "NN" }, { "token": "bonds", "tag": "NNS" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "bond", "tag": "NN" }, { "token": "issue", "tag": "NN" }, { "token": "will", "tag": "MD" }, { "token": "go", "tag": "VB" }, { "token": "to", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "state", "tag": "NN" }, { "token": "courts", "tag": "NNS" }, { "token": "for", "tag": "IN" }, { "token": "a", "tag": "AT" }, { "token": "friendly", "tag": "JJ" }, { "token": "test", "tag": "NN" }, { "token": "suit", "tag": "NN" }, { "token": "to", "tag": "TO" }, { "token": "test", "tag": "VB" }, { "token": "the", "tag": "AT" }, { "token": "validity", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "act", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "and", "tag": "CC" }, { "token": "then", "tag": "RB" }, { "token": "the", "tag": "AT" }, { "token": "sales", "tag": "NNS" }, { "token": "will", "tag": "MD" }, { "token": "begin", "tag": "VB" }, { "token": "and", "tag": "CC" }, { "token": "contracts", "tag": "NNS" }, { "token": "let", "tag": "VBN" }, { "token": "for", "tag": "IN" }, { "token": "repair", "tag": "NN" }, { "token": "work", "tag": "NN" }, { "token": "on", "tag": "IN" }, { "token": "some", "tag": "DTI" }, { "token": "of", "tag": "IN" }, { "token": "Georgia's", "tag": "NP$" }, { "token": "most", "tag": "QL" }, { "token": "heavily", "tag": "RB" }, { "token": "traveled", "tag": "VBN" }, { "token": "highways", "tag": "NNS" }, { "token": ".", "tag": "." } ] } ] } ================================================ FILE: spec/test_data/browntag_nolines_excerpt_maxent.json ================================================ { "wordCount": 264, "sentences": [ { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "Fulton", "tag": "NP" }, { "token": "County", "tag": "NN" }, { "token": "Grand", "tag": "JJ" }, { "token": "Jury", "tag": "NN" }, { "token": "said", "tag": "VBD" }, { "token": "Friday", "tag": "NR" }, { "token": "an", "tag": "AT" }, { "token": "investigation", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "Atlanta's", "tag": "NP$" }, { "token": "recent", "tag": "JJ" }, { "token": "primary", "tag": "NN" }, { "token": "election", "tag": "NN" }, { "token": "produced", "tag": "VBD" }, { "token": "no", "tag": "AT" }, { "token": "evidence", "tag": "NN" }, { "token": "that", "tag": "CS" }, { "token": "any", "tag": "DTI" }, { "token": "irregularities", "tag": "NNS" }, { "token": "took", "tag": "VBD" }, { "token": "place", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "jury", "tag": "NN" }, { "token": "further", "tag": "RBR" }, { "token": "said", "tag": "VBD" }, { "token": "in", "tag": "IN" }, { "token": "term-end", "tag": "NN" }, { "token": "presentments", "tag": "NNS" }, { "token": "that", "tag": "CS" }, { "token": "the", "tag": "AT" }, { "token": "City", "tag": "NN" }, { "token": "Executive", "tag": "JJ" }, { "token": "Committee", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "which", "tag": "WDT" }, { "token": "had", "tag": "HVD" }, { "token": "over-all", "tag": "JJ" }, { "token": "charge", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "election", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "deserves", "tag": "VBZ" }, { "token": "the", "tag": "AT" }, { "token": "praise", "tag": "NN" }, { "token": "and", "tag": "CC" }, { "token": "thanks", "tag": "NNS" }, { "token": "of", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "City", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "Atlanta", "tag": "NP" }, { "token": "for", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "manner", "tag": "NN" }, { "token": "in", "tag": "IN" }, { "token": "which", "tag": "WDT" }, { "token": "the", "tag": "AT" }, { "token": "election", "tag": "NN" }, { "token": "was", "tag": "BEDZ" }, { "token": "conducted", "tag": "VBN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "September-October", "tag": "NP" }, { "token": "term", "tag": "NN" }, { "token": "jury", "tag": "NN" }, { "token": "had", "tag": "HVD" }, { "token": "been", "tag": "BEN" }, { "token": "charged", "tag": "VBN" }, { "token": "by", "tag": "IN" }, { "token": "Fulton", "tag": "NP" }, { "token": "Superior", "tag": "JJ" }, { "token": "Court", "tag": "NN" }, { "token": "Judge", "tag": "NN" }, { "token": "Durwood", "tag": "NP" }, { "token": "Pye", "tag": "NP" }, { "token": "to", "tag": "TO" }, { "token": "investigate", "tag": "VB" }, { "token": "reports", "tag": "NNS" }, { "token": "of", "tag": "IN" }, { "token": "possible", "tag": "JJ" }, { "token": "irregularities", "tag": "NNS" }, { "token": "in", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "hard-fought", "tag": "JJ" }, { "token": "primary", "tag": "NN" }, { "token": "which", "tag": "WDT" }, { "token": "was", "tag": "BEDZ" }, { "token": "won", "tag": "VBN" }, { "token": "by", "tag": "IN" }, { "token": "Mayor-nominate", "tag": "NN" }, { "token": "Ivan", "tag": "NP" }, { "token": "Allen", "tag": "NP" }, { "token": "Jr.", "tag": "NP" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "only", "tag": "RB" }, { "token": "a", "tag": "AT" }, { "token": "relative", "tag": "JJ" }, { "token": "handful", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "such", "tag": "JJ" }, { "token": "reports", "tag": "NNS" }, { "token": "was", "tag": "BEDZ" }, { "token": "received", "tag": "VBN" }, { "token": ",", "tag": "," }, { "token": "the", "tag": "AT" }, { "token": "jury", "tag": "NN" }, { "token": "said", "tag": "VBD" }, { "token": ",", "tag": "," }, { "token": "considering", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "widespread", "tag": "JJ" }, { "token": "interest", "tag": "NN" }, { "token": "in", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "election", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "the", "tag": "AT" }, { "token": "number", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "voters", "tag": "NNS" }, { "token": "and", "tag": "CC" }, { "token": "the", "tag": "AT" }, { "token": "size", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "this", "tag": "DT" }, { "token": "city", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "jury", "tag": "NN" }, { "token": "said", "tag": "VBD" }, { "token": "it", "tag": "PPS" }, { "token": "did", "tag": "DOD" }, { "token": "find", "tag": "VB" }, { "token": "that", "tag": "CS" }, { "token": "many", "tag": "AP" }, { "token": "of", "tag": "IN" }, { "token": "Georgia's", "tag": "NP$" }, { "token": "registration", "tag": "NN" }, { "token": "and", "tag": "CC" }, { "token": "election", "tag": "NN" }, { "token": "laws", "tag": "NNS" }, { "token": "are", "tag": "BER" }, { "token": "outmoded", "tag": "JJ" }, { "token": "or", "tag": "CC" }, { "token": "inadequate", "tag": "JJ" }, { "token": "and", "tag": "CC" }, { "token": "often", "tag": "RB" }, { "token": "ambiguous", "tag": "JJ" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "it", "tag": "PPS" }, { "token": "recommended", "tag": "VBD" }, { "token": "that", "tag": "CS" }, { "token": "Fulton", "tag": "NP" }, { "token": "legislators", "tag": "NNS" }, { "token": "act", "tag": "VB" }, { "token": "to", "tag": "TO" }, { "token": "have", "tag": "HV" }, { "token": "these", "tag": "DTS" }, { "token": "laws", "tag": "NNS" }, { "token": "studied", "tag": "VBN" }, { "token": "and", "tag": "CC" }, { "token": "revised", "tag": "VBN" }, { "token": "to", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "end", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "modernizing", "tag": "VBG" }, { "token": "and", "tag": "CC" }, { "token": "improving", "tag": "VBG" }, { "token": "them", "tag": "PPO" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "grand", "tag": "JJ" }, { "token": "jury", "tag": "NN" }, { "token": "commented", "tag": "VBD" }, { "token": "on", "tag": "IN" }, { "token": "a", "tag": "AT" }, { "token": "number", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "other", "tag": "AP" }, { "token": "topics", "tag": "NNS" }, { "token": ",", "tag": "," }, { "token": "among", "tag": "IN" }, { "token": "them", "tag": "PPO" }, { "token": "the", "tag": "AT" }, { "token": "Atlanta", "tag": "NP" }, { "token": "and", "tag": "CC" }, { "token": "Fulton", "tag": "NP" }, { "token": "County", "tag": "NN" }, { "token": "purchasing", "tag": "VBG" }, { "token": "departments", "tag": "NNS" }, { "token": "which", "tag": "WDT" }, { "token": "it", "tag": "PPS" }, { "token": "said", "tag": "VBD" }, { "token": "are", "tag": "BER" }, { "token": "well", "tag": "QL" }, { "token": "operated", "tag": "VBN" }, { "token": "and", "tag": "CC" }, { "token": "follow", "tag": "VB" }, { "token": "generally", "tag": "RB" }, { "token": "accepted", "tag": "VBN" }, { "token": "practices", "tag": "NNS" }, { "token": "which", "tag": "WDT" }, { "token": "inure", "tag": "VB" }, { "token": "to", "tag": "IN" }, { "token": "the", "tag": "AT" }, { "token": "best", "tag": "JJT" }, { "token": "interest", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "both", "tag": "ABX" }, { "token": "governments", "tag": "NNS" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "merger", "tag": "NN" }, { "token": "proposed", "tag": "VBN" } ] }, { "taggedWords": [ { "token": "however", "tag": "WRB" }, { "token": ",", "tag": "," }, { "token": "the", "tag": "AT" }, { "token": "jury", "tag": "NN" }, { "token": "said", "tag": "VBD" }, { "token": "it", "tag": "PPS" }, { "token": "believes", "tag": "VBZ" }, { "token": "these", "tag": "DTS" }, { "token": "two", "tag": "CD" }, { "token": "offices", "tag": "NNS" }, { "token": "should", "tag": "MD" }, { "token": "be", "tag": "BE" }, { "token": "combined", "tag": "VBN" }, { "token": "to", "tag": "TO" }, { "token": "achieve", "tag": "VB" }, { "token": "greater", "tag": "JJR" }, { "token": "efficiency", "tag": "NN" }, { "token": "and", "tag": "CC" }, { "token": "reduce", "tag": "VB" }, { "token": "the", "tag": "AT" }, { "token": "cost", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "administration", "tag": "NN" }, { "token": ".", "tag": "." } ] }, { "taggedWords": [ { "token": "the", "tag": "AT" }, { "token": "City", "tag": "NN" }, { "token": "Purchasing", "tag": "VBG" }, { "token": "Department", "tag": "NN" }, { "token": ",", "tag": "," }, { "token": "the", "tag": "AT" }, { "token": "jury", "tag": "NN" }, { "token": "said", "tag": "VBD" }, { "token": ",", "tag": "," }, { "token": "is", "tag": "BEZ" }, { "token": "lacking", "tag": "VBG" }, { "token": "in", "tag": "IN" }, { "token": "experienced", "tag": "VBN" }, { "token": "clerical", "tag": "JJ" }, { "token": "personnel", "tag": "NNS" }, { "token": "as", "tag": "CS" }, { "token": "a", "tag": "AT" }, { "token": "result", "tag": "NN" }, { "token": "of", "tag": "IN" }, { "token": "city", "tag": "NN" }, { "token": "personnel", "tag": "NNS" }, { "token": "policies", "tag": "NNS" }, { "token": ".", "tag": "." } ] } ] } ================================================ FILE: spec/test_data/dutchStemResults.json ================================================ { "results": [ [ "knot", "geldper", "aanzet", "is", "paardenmiddel", "vor", "half", "procent", "inflatie" ], [ "de", "president", "van", "de", "nederlandsch", "bank", "klas", "knot", "vindt", "de", "geldinjectie", "in", "de", "europes", "economie", "van", "ruim", "1", "100", "miljard", "euro", "vel", "te", "hog", "vor", "het", "beoogd", "resultat", "een", "half", "procent", "inflatie", "in", "2016" ], [ "oftewel", "50", "basispunt", "dat", "zijn", "hel", "dur", "basispunt", "zei", "knot", "donderdag", "in", "de", "twed", "kamer" ], [ "dor", "robert", "giebel", "5", "februari", "2015", "21", "55", "bron", "anp" ], [ "de", "financi", "le", "specialist", "onder", "de", "kamerled", "had", "knot", "gevraagd", "uitleg", "te", "gev", "over", "het", "ecb", "besluit", "van", "22", "januari" ], [ "de", "central", "bank", "van", "de", "eurozon", "gat", "vor", "60", "miljard", "euro", "per", "maand", "staatsschuld", "opkop" ], [ "dat", "komt", "ner", "op", "het", "aanzet", "van", "de", "geldper", "om", "de", "inflatie", "en", "de", "economie", "aan", "te", "jag" ], [ "het", "ecb", "bestur", "de", "president", "van", "de", "national", "central", "bank", "van", "evenzovel", "euroland", "en", "zes", "vast", "bestuurder", "beslot", "daartoe", "met", "20", "vor", "en", "5", "teg" ], [ "vrij", "uitzonder", "was", "dat", "knot", "bekendmaakt", "een", "van", "de", "vijf", "tegenstemmer", "te", "zijn" ], [ "hij", "vindt", "de", "zogenoemd", "kwantitatiev", "verruim", "noodzak", "noch", "effectief" ], [ "mar", "zei", "knot", "gister", "tot", "de", "kamer", "dat", "besluit", "is", "een", "gegev" ], [ "nu", "gan", "besprek", "of", "het", "een", "goed", "of", "slecht", "besluit", "was", "is", "mosterd", "na", "de", "maaltijd" ], [ "in", "het", "vervolg", "van", "zijn", "betog", "kon", "knot", "zich", "evenwel", "niet", "losmak", "van", "zijn", "weerzin", "erteg" ], [ "de", "dnb", "president", "maakt", "duidelijk", "dat", "het", "op", "grot", "schal", "aanzet", "van", "de", "geldper", "vooral", "een", "sprong", "in", "het", "diep", "is" ], [ "het", "is", "gen", "flauwekul", "mar", "het", "is", "ook", "niet", "de", "silver", "bullet", "de", "oploss", "van", "all", "kwal" ], ["deflatiespok"], [ "e", "n", "komma", "n", "triljoen", "euro", "vor", "een", "half", "procent", "inflatie" ], [ "het", "effect", "van", "de", "geldinjectie", "is", "dan", "ook", "een", "kwestie", "van", "appreciatie", "meent", "knot", "welk", "risico", "acht", "je", "het", "grootst" ], [ "de", "meerder", "van", "de", "ecb", "vindt", "het", "risico", "van", "deflatie", "het", "grootst", "de", "economie", "komt", "tot", "stilstand", "omdat", "iederen", "denkt", "dat", "alles", "later", "goedkoper", "wordt", "en", "op", "dat", "later", "gat", "wacht" ], [ "om", "dat", "deflatiespok", "enigszin", "buit", "de", "deur", "te", "houd", "wordt", "zo", "constateert", "knot", "een", "paardenmiddel", "ingezet", "e", "n", "komma", "n", "triljoen", "euro", "vor", "een", "half", "procent", "inflatie" ], [ "de", "tegenstemmer", "zoal", "knot", "vind", "het", "risico", "van", "deflatie", "niet", "grot" ], [ "ongever", "60", "procent", "van", "de", "dalend", "prijz", "komt", "dor", "de", "lag", "olieprijs", "en", "dat", "is", "tijdelijk", "zei", "hij" ], [ "het", "risico", "op", "bijvoorbeeld", "zeepbell", "op", "de", "beur", "en", "in", "de", "huizenmarkt", "acht", "knot", "vel", "re", "ler" ], [ "de", "kwantitatiev", "verruim", "jaagt", "de", "prijz", "van", "aandel", "obligaties", "en", "vastgoed", "op", "tot", "een", "niveau", "dat", "volgen", "knot", "losstat", "van", "de", "economisch", "werkelijk" ], [ "dat", "vergrot", "de", "verschill", "tuss", "vermog", "en", "minder", "vermog" ], [ "gen", "risico", "mar", "een", "vaststaand", "negatief", "effect", "van", "de", "kunstmat", "lag", "rent", "dor", "de", "geldper", "aan", "te", "zet", "is", "volgen", "knot", "bovendien", "dat", "land", "dor", "de", "actie", "van", "de", "ecb", "minder", "gemotiveerd", "zull", "zijn", "economisch", "en", "monetair", "te", "hervorm" ] ] } ================================================ FILE: spec/test_data/index.document1.txt ================================================ this document is about node. ================================================ FILE: spec/test_data/snowball_de.json ================================================ { "a": "a", "aa": "aa", "aalglatten": "aalglatt", "aargau": "aargau", "aargauer": "aargau", "aasen": "aas", "aasgeruch": "aasgeruch", "aashöllen": "aasholl", "ab": "ab", "abaddon": "abaddon", "abarten": "abart", "abbeisst": "abbeisst", "abbild": "abbild", "abbildung": "abbild", "abbiss": "abbiss", "abbrechen": "abbrech", "abbruch": "abbruch", "abend": "abend", "abendbrot": "abendbrot", "abenddämmerung": "abenddammer", "abenddunklen": "abenddunkl", "abende": "abend", "abendessen": "abendess", "abendherren": "abendherr", "abendhimmel": "abendhimmel", "abendländischem": "abendland", "abendländischen": "abendland", "abendlichen": "abend", "abendlichte": "abendlicht", "abendluft": "abendluft", "abendmahl": "abendmahl", "abendröte": "abendrot", "abends": "abend", "abendschein": "abendschein", "abendscheine": "abendschein", "abendschöppchen": "abendschoppch", "abendsonne": "abendsonn", "abendstern": "abend", "abendtanz": "abendtanz", "abendwind": "abendwind", "abendzeit": "abendzeit", "abenteuer": "abenteu", "abenteuerlich": "abenteu", "abenteuerliche": "abenteu", "abenteuerlichem": "abenteu", "abenteuerliches": "abenteu", "abenteuern": "abenteu", "abenteuers": "abenteu", "abenteuerspielplätzen": "abenteuerspielplatz", "abenteurer": "abenteur", "aber": "aber", "aberglaube": "aberglaub", "aberglauben": "aberglaub", "abermalige": "abermal", "abermaligen": "abermal", "abermals": "abermal", "abertausend": "abertaus", "aberwitzigen": "aberwitz", "abfahrt": "abfahrt", "abfall": "abfall", "abfallen": "abfall", "abfällige": "abfall", "abfallkorb": "abfallkorb", "abfällsel": "abfallsel", "abfällt": "abfallt", "abfeuernd": "abfeuernd", "abfielen": "abfiel", "abfinden": "abfind", "abflughalle": "abflughall", "abfressen": "abfress", "abfuhr": "abfuhr", "abführung": "abfuhr", "abgab": "abgab", "abgabe": "abgab", "abgaben": "abgab", "abgang": "abgang", "abge": "abg", "abgebe": "abgeb", "abgeben": "abgeb", "abgebildet": "abgebildet", "abgebracht": "abgebracht", "abgebrannten": "abgebrannt", "abgebrochen": "abgebroch", "abgebrochene": "abgebroch", "abgebrochenes": "abgebroch", "abgebürstet": "abgeburstet", "abgedient": "abgedient", "abgedruckt": "abgedruckt", "abgefallen": "abgefall", "abgefangen": "abgefang", "abgefertigt": "abgefertigt", "abgeführt": "abgefuhrt", "abgefunden": "abgefund", "abgegebene": "abgegeb", "abgegrenzt": "abgegrenzt", "abgegriffene": "abgegriff", "abgehalten": "abgehalt", "abgehandelt": "abgehandelt", "abgehandelten": "abgehandelt", "abgehängen": "abgehang", "abgehärmte": "abgeharmt", "abgehärteten": "abgehartet", "abgehauen": "abgehau", "abgehen": "abgeh", "abgeholt": "abgeholt", "abgehört": "abgehort", "abgeht": "abgeht", "abgekauft": "abgekauft", "abgekommen": "abgekomm", "abgeladen": "abgelad", "abgelagertes": "abgelagert", "abgelassen": "abgelass", "abgelaufen": "abgelauf", "abgelebte": "abgelebt", "abgelegenen": "abgeleg", "abgelegt": "abgelegt", "abgelehnt": "abgelehnt", "abgeleitet": "abgeleitet", "abgeleitete": "abgeleitet", "abgeleiteten": "abgeleitet", "abgeleitetes": "abgeleitet", "abgelenkt": "abgelenkt", "abgeleugnet": "abgeleugnet", "abgelöst": "abgelost", "abgemagert": "abgemagert", "abgemessenheit": "abgemess", "abgenagten": "abgenagt", "abgeneigt": "abgeneigt", "abgenommen": "abgenomm", "abgenutzten": "abgenutzt", "abgeödet": "abgeodet", "abgeödete": "abgeodet", "abgeordnetenversammlung": "abgeordnetenversamml", "abgeordneter": "abgeordnet", "abgepfändet": "abgepfandet", "abgepflückt": "abgepfluckt", "abgeplatzt": "abgeplatzt", "abgeraten": "abgerat", "abgerieben": "abgerieb", "abgerissen": "abgeriss", "abgerissenen": "abgeriss", "abgesandt": "abgesandt", "abgeschabtes": "abgeschabt", "abgescheuert": "abgescheuert", "abgeschieden": "abgeschied", "abgeschiedenen": "abgeschied", "abgeschlagen": "abgeschlag", "abgeschliffen": "abgeschliff", "abgeschmolzen": "abgeschmolz", "abgeschnitten": "abgeschnitt", "abgeschossenes": "abgeschoss", "abgeschreckt": "abgeschreckt", "abgeschwächt": "abgeschwacht", "abgesehen": "abgeseh", "abgesessen": "abgesess", "abgesondert": "abgesondert", "abgesonderten": "abgesondert", "abgespannt": "abgespannt", "abgesperrt": "abgesperrt", "abgesprochen": "abgesproch", "abgesprungen": "abgespr", "abgestellt": "abgestellt", "abgestohlene": "abgestohl", "abgestossene": "abgestoss", "abgestritten": "abgestritt", "abgetan": "abgetan", "abgeteilt": "abgeteilt", "abgeteilten": "abgeteilt", "abgetötet": "abgetotet", "abgetreten": "abgetret", "abgewandt": "abgewandt", "abgewandte": "abgewandt", "abgewandtem": "abgewandt", "abgewartet": "abgewartet", "abgewaschen": "abgewasch", "abgewendet": "abgewendet", "abgewetzte": "abgewetzt", "abgewetzten": "abgewetzt", "abgewichen": "abgewich", "abgewickelt": "abgewickelt", "abgewinnen": "abgewinn", "abgewirtschaftet": "abgewirtschaftet", "abgewogen": "abgewog", "abgewöhnen": "abgewohn", "abgewürdigt": "abgewurdigt", "abgezäunt": "abgezaunt", "abgezehrt": "abgezehrt", "abgezirkelten": "abgezirkelt", "abgezogen": "abgezog", "abgezogene": "abgezog", "abgezogenen": "abgezog", "abgezogenheit": "abgezog", "abgibt": "abgibt", "abglitten": "abglitt", "abgötterei": "abgotterei", "abgöttereien": "abgotterei", "abgöttisches": "abgott", "abgrund": "abgrund", "abgrunde": "abgrund", "abgründe": "abgrund", "abgründen": "abgrund", "abgrundes": "abgrund", "abgrunds": "abgrund", "abhalten": "abhalt", "abhandlung": "abhandl", "abhang": "abhang", "abhange": "abhang", "abhänge": "abhang", "abhängen": "abhang", "abhängend": "abhang", "abhängig": "abhang", "abhängigen": "abhang", "abhängiger": "abhang", "abhängigkeit": "abhang", "abhängt": "abhangt", "abhauen": "abhau", "abhaut": "abhaut", "abhebenden": "abheb", "abhelfen": "abhelf", "abhielten": "abhielt", "abhob": "abhob", "abhoben": "abhob", "abholen": "abhol", "abholt": "abholt", "abhören": "abhor", "abi": "abi", "abiasaph": "abiasaph", "abigrissen": "abigriss", "abigstiegen": "abigstieg", "abihu": "abihu", "abimelech": "abimelech", "abirrung": "abirr", "abirrungen": "abirr", "abjagen": "abjag", "abkartelt": "abkartelt", "abkaufen": "abkauf", "abkehr": "abkehr", "abklärungen": "abklar", "abkommens": "abkomm", "abkühlendes": "abkuhl", "abkühlung": "abkuhl", "abkunft": "abkunft", "ablasse": "ablass", "ablassen": "ablass", "ablässt": "ablasst", "abläßt": "ablasst", "ablauf": "ablauf", "ablaufen": "ablauf", "ablaufende": "ablauf", "abläutete": "ablautet", "ablegen": "ableg", "ablehnen": "ablehn", "ablehnung": "ablehn", "ableiten": "ableit", "ableiter": "ableit", "ableitet": "ableitet", "ableitungen": "ableit", "ablenken": "ablenk", "ablenkend": "ablenk", "ablesen": "ables", "ablesend": "ables", "ablief": "ablief", "abliefe": "ablief", "ablösung": "ablos", "ablutschen": "ablutsch", "abmarschiert": "abmarschiert", "abmühten": "abmuht", "abnahm": "abnahm", "abnahme": "abnahm", "abnehmen": "abnehm", "abnehmende": "abnehm", "abnehmenden": "abnehm", "abneigung": "abneig", "abnimmt": "abnimmt", "abnutzen": "abnutz", "aböden": "abod", "abödet": "abodet", "abödung": "abod", "abödungen": "abod", "abolent": "abolent", "abonnieren": "abonni", "about": "about", "abquälen": "abqual", "abraham": "abraham", "abrahams": "abraham", "abram": "abram", "abrams": "abram", "abraten": "abrat", "abrechnen": "abrechn", "abrede": "abred", "abreiben": "abreib", "abreise": "abreis", "abreissen": "abreiss", "abreißen": "abreiss", "abrisse": "abriss", "abrufen": "abruf", "abrundung": "abrund", "absage": "absag", "absalon": "absalon", "absatz": "absatz", "abschaffen": "abschaff", "abschaffung": "abschaff", "abschaum": "abschaum", "abscheu": "abscheu", "abscheuern": "abscheu", "abscheues": "abscheu", "abscheulich": "abscheulich", "abscheuliche": "abscheulich", "abscheulichen": "abscheulich", "abscheulicher": "abscheulich", "abscheulicheres": "abscheulich", "abscheuliches": "abscheulich", "abscheulichste": "abscheulich", "abscheus": "abscheus", "abschied": "abschied", "abschiedes": "abschied", "abschiessen": "abschiess", "abschlagen": "abschlag", "abschlägt": "abschlagt", "abschliessen": "abschliess", "abschliessender": "abschliess", "abschliesst": "abschliesst", "abschließt": "abschliesst", "abschliessung": "abschliess", "abschließung": "abschliess", "abschloss": "abschloss", "abschlug": "abschlug", "abschluss": "abschluss", "abschluß": "abschluss", "abschneiden": "abschneid", "abschneidung": "abschneid", "abschnitt": "abschnitt", "abschnitte": "abschnitt", "abschnitten": "abschnitt", "abschnitts": "abschnitt", "abschrecken": "abschreck", "abschrieb": "abschrieb", "abschrift": "abschrift", "abschüsse": "abschuss", "abschüssigen": "abschuss", "abschütteln": "abschutteln", "abschüttelten": "abschuttelt", "abschwächt": "abschwacht", "abschweifungen": "abschweif", "abschwenken": "abschwenk", "absehbar": "absehbar", "absehen": "abseh", "absehlichen": "abseh", "abseits": "abseit", "absenden": "absend", "absender": "absend", "absetzen": "absetz", "absetzte": "absetzt", "absicht": "absicht", "absichten": "absicht", "absichtlich": "absicht", "absieht": "absieht", "absingung": "absing", "absolut": "absolut", "absolute": "absolut", "absolutes": "absolut", "absolviert": "absolviert", "absolvierte": "absolviert", "absonderliche": "absond", "absonderlichen": "absond", "absonderlicher": "absond", "absondert": "absondert", "absonderungen": "absonder", "abspenstig": "abspenst", "abspielten": "abspielt", "absprang": "absprang", "abspringend": "abspring", "abspülen": "abspul", "abstahl": "abstahl", "abstamme": "abstamm", "abstammen": "abstamm", "abstammenden": "abstamm", "abstammte": "abstammt", "abstammten": "abstammt", "abstammung": "abstamm", "abstammungen": "abstamm", "abstatten": "abstatt", "abstechend": "abstech", "abstecher": "abstech", "abstehen": "absteh", "absteht": "absteht", "absteigen": "absteig", "abstellte": "abstellt", "abstimmung": "abstimm", "abstimmungdie": "abstimmungdi", "abstirbt": "abstirbt", "abstossendes": "abstoss", "abstoßendes": "abstoss", "abstracto": "abstracto", "abstrahieren": "abstrahi", "abstrahiert": "abstrahiert", "abstrakt": "abstrakt", "abstrakten": "abstrakt", "abstrakter": "abstrakt", "abstraktion": "abstraktion", "abstreiten": "abstreit", "abstufungen": "abstuf", "abstumpfung": "abstumpf", "absturz": "absturz", "abstürze": "absturz", "abstürzen": "absturz", "absuchen": "absuch", "absuchte": "absucht", "absurden": "absurd", "abteilung": "abteil", "abteilungen": "abteil", "abtraten": "abtrat", "abtreiben": "abtreib", "abtreten": "abtret", "abtun": "abtun", "aburteilen": "aburteil", "abwandte": "abwandt", "abwarten": "abwart", "abwärts": "abwart", "abwärtsrichtung": "abwartsricht", "abwaschbaren": "abwaschbar", "abwaschen": "abwasch", "abwaschung": "abwasch", "abwechselnd": "abwechselnd", "abwechselndem": "abwechselnd", "abwechselnder": "abwechselnd", "abwechselung": "abwechsel", "abwechslung": "abwechsl", "abwege": "abweg", "abwehr": "abwehr", "abwehrend": "abwehr", "abwehrendes": "abwehr", "abwehrmassnahme": "abwehrmassnahm", "abwehrung": "abwehr", "abweichen": "abweich", "abweicht": "abweicht", "abweichung": "abweich", "abweiden": "abweid", "abweisen": "abweis", "abweisend": "abweis", "abweist": "abweist", "abweisung": "abweis", "abwende": "abwend", "abwenden": "abwend", "abwendend": "abwend", "abwendet": "abwendet", "abwendig": "abwend", "abwendung": "abwend", "abwerfen": "abwerf", "abwesend": "abwes", "abwesenden": "abwes", "abwesenheit": "abwes", "abwich": "abwich", "abwickeln": "abwickeln", "abwinkte": "abwinkt", "abwischen": "abwisch", "abwischte": "abwischt", "abwürdigten": "abwurdigt", "abwusch": "abwusch", "abzehrung": "abzehr", "abziehen": "abzieh", "abziehenden": "abzieh", "abzielen": "abziel", "abzielt": "abzielt", "abzubeuteln": "abzubeuteln", "abzubinden": "abzubind", "abzubringen": "abzubring", "abzufinden": "abzufind", "abzuflauen": "abzuflau", "abzug": "abzug", "abzuge": "abzug", "abzugeben": "abzugeb", "abzugewinnen": "abzugewinn", "abzugsgräben": "abzugsgrab", "abzugsschnur": "abzugsschnur", "abzuhalten": "abzuhalt", "abzuholen": "abzuhol", "abzuhören": "abzuhor", "abzukühlen": "abzukuhl", "abzukürzen": "abzukurz", "abzuladen": "abzulad", "abzulassen": "abzulass", "abzulaufen": "abzulauf", "abzulauschen": "abzulausch", "abzulegen": "abzuleg", "abzulehnenden": "abzulehn", "abzuleugnen": "abzuleugn", "abzumachen": "abzumach", "abzupflücken": "abzupfluck", "abzureisen": "abzureis", "abzureissen": "abzureiss", "abzuschicken": "abzuschick", "abzuschlagen": "abzuschlag", "abzuschliessen": "abzuschliess", "abzuschrecken": "abzuschreck", "abzuschütteln": "abzuschutteln", "abzusehen": "abzuseh", "abzusprengen": "abzuspreng", "abzustehen": "abzusteh", "abzustreiten": "abzustreit", "abzustumpfen": "abzustumpf", "abzutreten": "abzutret", "abzuwarten": "abzuwart", "abzuwehren": "abzuwehr", "abzuwenden": "abzuw", "abzuwischen": "abzuw", "abzuziehen": "abzuzieh", "abzweckt": "abzweckt", "abzweckung": "abzweck", "accidens": "accid", "ach": "ach", "achias": "achias", "achijas": "achijas", "achis": "achis", "achitophel": "achitophel", "achseln": "achseln", "achselzucken": "achselzuck", "achselzuckend": "achselzuck", "acht": "acht", "achtbarsten": "achtbarst", "achte": "acht", "achten": "acht", "achtes": "acht", "achtet": "achtet", "achtete": "achtet", "achteten": "achtet", "achtgab": "achtgab", "achtgeben": "achtgeb", "achtgegeben": "achtgegeb", "achthundert": "achthundert", "achtjähriges": "achtjahr", "achtliche": "achtlich", "achtlos": "achtlos", "achtlose": "achtlos", "achtsam": "achtsam", "achtsamkeit": "achtsam", "achtundvierzig": "achtundvierz", "achtundzwanzig": "achtundzwanz", "achtung": "achtung", "achtungsvoller": "achtungsvoll", "achtungsvolles": "achtungsvoll", "achtungswerten": "achtungswert", "achtzehn": "achtzehn", "achtzehnjährigem": "achtzehnjahr", "achtzehnjährigen": "achtzehnjahr", "achtzig": "achtzig", "achtziger": "achtzig", "achtzugeben": "achtzugeb", "ächzen": "achz", "ächzendes": "achzend", "acker": "ack", "äcker": "ack", "ackerfeld": "ackerfeld", "ackerland": "ackerland", "ackerleute": "ackerleut", "äckern": "ack", "ackers": "ack", "ackersmann": "ackersmann", "ackerstein": "ackerstein", "ackerstreifen": "ackerstreif", "ackerwirtschaft": "ackerwirtschaft", "ackerzipfel": "ackerzipfel", "ackerzipfelchen": "ackerzipfelch", "ad": "ad", "ada": "ada", "adah": "adah", "adam": "adam", "adamah": "adamah", "adams": "adam", "adamshof": "adamshof", "adäquat": "adaquat", "adäquaten": "adaquat", "ade": "ade", "adel": "adel", "adelaide": "adelaid", "adele": "adel", "adelsgespons": "adelsgespon", "adelsherrn": "adelsherrn", "adelshochmut": "adelshochmut", "adelsliebchen": "adelsliebch", "adepten": "adept", "ader": "ader", "aderlassen": "aderlass", "aderlassmännchen": "aderlassmannch", "adern": "adern", "adieu": "adieu", "adjektiv": "adjektiv", "adler": "adl", "adlerflügeln": "adlerflugeln", "adlerweibchen": "adlerweibch", "adn": "adn", "adoration": "adoration", "adresse": "adress", "advanced": "advanced", "advokat": "advokat", "advokaten": "advokat", "advokatenarbeit": "advokatenarbeit", "advokatenkreisen": "advokatenkreis", "advokatenzimmer": "advokatenzimm", "aeternitatis": "aeternitatis", "affäre": "affar", "äffchen": "affch", "affe": "aff", "affectio": "affectio", "affectiones": "affection", "affekt": "affekt", "affen": "aff", "äffen": "aff", "affenschwänze": "affenschwanz", "affinitates": "affinitat", "affizierenden": "affizier", "affiziert": "affiziert", "affizierten": "affiziert", "afrika": "afrika", "afrikanischen": "afrikan", "aftermiete": "aftermiet", "againdabei": "againdabei", "agathon": "agathon", "agck": "agck", "agent": "agent", "agenten": "agent", "ager": "ager", "agnetendorfer": "agnetendorf", "agwnistikon": "agwnistikon", "ägypten": "agypt", "ägyptenland": "agyptenland", "ägyptenlandes": "agyptenland", "ägyptenlands": "agyptenland", "ägyptens": "agypt", "ägypter": "agypt", "ägyptern": "agypt", "ägypters": "agypt", "ägyptischen": "agypt", "ägyptischer": "agypt", "ah": "ah", "aharon": "aharon", "aharons": "aharon", "ahmten": "ahmt", "ahndung": "ahndung", "ahne": "ahn", "ahnen": "ahn", "ahnherr": "ahnherr", "ahnl": "ahnl", "ähnlich": "ahnlich", "ähnliche": "ahnlich", "ähnlichem": "ahnlich", "ähnlichen": "ahnlich", "ähnlicher": "ahnlich", "ahnliches": "ahnlich", "ähnliches": "ahnlich", "ähnlichkeit": "ahnlich", "ähnlichkeiten": "ahnlich", "ahnt": "ahnt", "ahnte": "ahnt", "ahnung": "ahnung", "ahnungen": "ahnung", "ahnungslos": "ahnungslos", "ahornbäume": "ahornbaum", "ahornstämmchen": "ahornstammch", "ähre": "ahr", "ähren": "ahr", "ai": "ai", "aimer": "aim", "airfares": "airfar", "airline": "airlin", "aiso": "aiso", "akazien": "akazi", "akkommodements": "akkommodement", "akkompagnierend": "akkompagnier", "akkorde": "akkord", "akkorden": "akkord", "akkordes": "akkord", "akkusativ": "akkusativ", "akkusative": "akkusativ", "akrat": "akrat", "akt": "akt", "akten": "akt", "aktendiebstählen": "aktendiebstahl", "aktien": "akti", "aktienbierbrauerei": "aktienbierbrauerei", "aktienbrauerei": "aktienbrauerei", "aktienhopfenpflanzung": "aktienhopfenpflanz", "aktienschwindels": "aktienschwindel", "aktion": "aktion", "aktionen": "aktion", "aktivdienstgeneration": "aktivdienstgeneration", "aktiven": "aktiv", "aktivitäten": "aktivitat", "aktuell": "aktuell", "akustik": "akust", "akustikfreien": "akustikfrei", "akustische": "akust", "akustisehen": "akustiseh", "akzeptiert": "akzeptiert", "akzidentell": "akzidentell", "alar": "alar", "alarm": "alarm", "alarmknopf": "alarmknopf", "alato": "alato", "albern": "alb", "albernen": "albern", "albernes": "albern", "albernheit": "albern", "album": "album", "alcopops": "alcopops", "aleviten": "alevit", "alex": "alex", "alfred": "alfred", "alga": "alga", "algen": "alg", "algier": "algi", "alhjeia": "alhjeia", "aliud": "aliud", "alkali": "alkali", "alkohol": "alkohol", "alkoholgesetz": "alkoholgesetz", "alkoholhaltige": "alkoholhalt", "alkoholiker": "alkohol", "alkoholischer": "alkohol", "alkoholkonsum": "alkoholkonsum", "alkoholverwaltung": "alkoholverwalt", "all": "all", "allabendlich": "allabend", "allabentlich": "allabent", "allbereits": "allbereit", "allda": "allda", "alldem": "alld", "alle": "all", "alledem": "alled", "allee": "alle", "alleebäumen": "alleebaum", "allegorie": "allegori", "allein": "allein", "alleinherrschaft": "alleinherrschaft", "alleinige": "allein", "alleinigen": "allein", "allem": "all", "allemal": "allemal", "allen": "all", "allendlich": "allend", "allenfalls": "allenfall", "allenthalben": "allenthalb", "aller": "all", "allerallgemeinste": "allerallgemein", "allerallgemeinsten": "allerallgemein", "alleräusserlichste": "allerauss", "allerbescheidenstes": "allerbescheiden", "allerdings": "allerding", "allerdurchtriebenste": "allerdurchtrieben", "allereinzelnsten": "allereinzeln", "allerengsten": "allereng", "allerentferntesten": "allerentfernt", "allererst": "allererst", "allerersten": "allererst", "allergelindeste": "allergelind", "allergrösste": "allergrosst", "allerhand": "allerhand", "allerheiligste": "allerheil", "allerherzlichste": "allerherz", "allerkleinsten": "allerklein", "allerkleinstes": "allerklein", "allerkostbarsten": "allerkostbarst", "allerkürzeste": "allerkurz", "allerlei": "allerlei", "allerletzt": "allerletzt", "allerliebste": "allerlieb", "allerliebstes": "allerlieb", "allernächster": "allernach", "allerniederträchtigstes": "allerniedertracht", "allerorten": "allerort", "allerschlimmste": "allerschlimm", "allerschlimmsten": "allerschlimm", "allerschönste": "allerschon", "allerschönsten": "allerschon", "allerseits": "allerseit", "allerseltsamsten": "allerseltsam", "allerunheimlichste": "allerunheim", "allerunterste": "allerunterst", "allerverkehrteste": "allerverkehrt", "allervernünftigsten": "allervernunft", "allerwegen": "allerweg", "allerweissesten": "allerweiss", "allerwenigsten": "allerwen", "alles": "all", "allezeit": "allezeit", "allfort": "allfort", "allgegenwart": "allgegenwart", "allgegenwärtig": "allgegenwart", "allgemein": "allgemein", "allgemeine": "allgemein", "allgemeinem": "allgemein", "allgemeinen": "allgemein", "allgemeiner": "allgemein", "allgemeinere": "allgemein", "allgemeineren": "allgemein", "allgemeines": "allgemein", "allgemeingültigkeit": "allgemeingult", "allgemeinheit": "allgemein", "allgemeinste": "allgemein", "allgemeinsten": "allgemein", "allgemeinstes": "allgemein", "allgewaltige": "allgewalt", "allgewaltigen": "allgewalt", "allgütigkeit": "allgut", "allherbstlich": "allherbst", "allhier": "allhi", "alljährlich": "alljahr", "allmacht": "allmacht", "allmächtig": "allmacht", "allmächtige": "allmacht", "allmächtigen": "allmacht", "allmählich": "allmah", "allmähliche": "allmah", "allmählig": "allmahl", "allmal": "allmal", "allnächtlich": "allnacht", "allnirgends": "allnirg", "allobrogische": "allobrog", "allobrogischen": "allobrog", "alls": "all", "alltag": "alltag", "alltäglich": "alltag", "alltägliche": "alltag", "allumfassende": "allumfass", "allumfassenden": "allumfass", "allwaltende": "allwalt", "allwärts": "allwart", "allweg": "allweg", "allweil": "allweil", "allwissend": "allwiss", "allwissenheit": "allwiss", "allwo": "allwo", "allwöchentlich": "allwochent", "allzeit": "allzeit", "allzu": "allzu", "allzulange": "allzulang", "allzumal": "allzumal", "allzunahen": "allzunah", "allzusehr": "allzusehr", "alm": "alm", "almen": "alm", "almrausch": "almrausch", "alpennatur": "alpennatur", "als": "als", "alsbald": "alsbald", "alsdann": "alsdann", "also": "also", "alsobald": "alsobald", "alsogleich": "alsogleich", "alt": "alt", "altar": "altar", "altare": "altar", "altäre": "altar", "altären": "altar", "altars": "altar", "altbekannten": "altbekannt", "alte": "alt", "altem": "alt", "alten": "alt", "alter": "alt", "älter": "alt", "ältere": "alt", "älteren": "alt", "älterer": "alt", "ältern": "alt", "alternative": "alternativ", "alternativen": "alternativ", "alternativpolitik": "alternativpolit", "alternde": "alternd", "alternden": "alternd", "alters": "alt", "altersleiden": "altersleid", "altersschwäche": "altersschwach", "altert": "altert", "altertum": "altertum", "altertümlichen": "altertum", "altertums": "altertum", "altes": "alt", "älteste": "alt", "ältesten": "alt", "alteweibersommers": "alteweibersomm", "altjungferngesicht": "altjungferngesicht", "ältliche": "altlich", "altmodisch": "altmod", "altranning": "altranning", "alts": "alt", "altstimme": "altstimm", "altväterische": "altvater", "altväterischer": "altvater", "alumnus": "alumnus", "am": "am", "amal": "amal", "amalek": "amalek", "amalie": "amali", "amazonenhafter": "amazonenhaft", "ambiente": "ambient", "ambros": "ambros", "ameise": "ameis", "ameisen": "ameis", "amen": "amen", "amer": "amer", "amerika": "amerika", "amerikaner": "amerikan", "amerikanern": "amerikan", "amerikanische": "amerikan", "amerikanischen": "amerikan", "amhag": "amhag", "amiga": "amiga", "amme": "amm", "amminadabs": "amminadab", "ammoniter": "ammonit", "ammons": "ammon", "amnestie": "amnesti", "amnesty": "amnesty", "amol": "amol", "amor": "amor", "amörchen": "amorch", "amores": "amor", "amoribus": "amoribus", "amoriter": "amorit", "amoriters": "amorit", "amos": "amos", "amour": "amour", "amrain": "amrain", "amram": "amram", "amrans": "amran", "amsterdam": "amsterdam", "amt": "amt", "ämtchen": "amtch", "amte": "amt", "ämter": "amt", "amtes": "amt", "amtleute": "amtleut", "amtleuten": "amtleut", "amtlich": "amtlich", "amtsdauer": "amtsdau", "amtsdauern": "amtsdau", "amtsgeheimnisse": "amtsgeheimnis", "amtsrat": "amtsrat", "amtsrates": "amtsrat", "amtsrats": "amtsrat", "amtssprache": "amtssprach", "amtsstube": "amtsstub", "amüsant": "amusant", "amüsieren": "amusi", "amüsiert": "amusiert", "an": "an", "anaks": "anak", "analogie": "analogi", "analogisch": "analog", "analogon": "analogon", "analysierbarer": "analysierbar", "analysieren": "analysi", "analyticis": "analyticis", "analytik": "analyt", "analytisch": "analyt", "analytischen": "analyt", "anap": "anap", "anarchie": "anarchi", "anarchischen": "anarch", "anaskeuazein": "anaskeuazein", "anaskeuazomen": "anaskeuazom", "anaxagoras": "anaxagoras", "anbaueten": "anbauet", "anbeginn": "anbeginn", "anbehalten": "anbehalt", "anbelangt": "anbelangt", "anbellte": "anbellt", "anbeten": "anbet", "anbeter": "anbet", "anbetern": "anbet", "anbetet": "anbetet", "anbetete": "anbetet", "anbeteten": "anbetet", "anbetrifft": "anbetrifft", "anbetung": "anbet", "anbey": "anbey", "anbieten": "anbiet", "anbietend": "anbiet", "anbietet": "anbietet", "anbildet": "anbildet", "anbinden": "anbind", "anbindung": "anbind", "anbissen": "anbiss", "anblick": "anblick", "anblicke": "anblick", "anblicken": "anblick", "anblicks": "anblick", "anblickte": "anblickt", "anbot": "anbot", "anböten": "anbot", "anbringen": "anbring", "anbruch": "anbruch", "and": "and", "andacht": "andacht", "andächtig": "andacht", "andächtige": "andacht", "andächtigen": "andacht", "andächtiger": "andacht", "andauernde": "andauernd", "andenken": "andenk", "andenkens": "andenk", "ander": "and", "anderau": "anderau", "anderckens": "anderck", "andere": "and", "anderem": "and", "anderen": "and", "anderer": "and", "andererseits": "andererseit", "anderes": "and", "anderl": "anderl", "anderls": "anderl", "anderm": "anderm", "andern": "and", "ändern": "and", "anders": "and", "anderseits": "anderseit", "anderswo": "anderswo", "anderswoher": "anderswoh", "anderswohin": "anderswohin", "ändert": "andert", "änderte": "andert", "anderthalb": "anderthalb", "änderung": "ander", "änderungen": "ander", "anderwärts": "anderwart", "anderweis": "anderweis", "anderweitig": "anderweit", "anderweitige": "anderweit", "anderweitigen": "anderweit", "andeutet": "andeutet", "andeutungsweise": "andeutungsweis", "andre": "andr", "andreas": "andreas", "andrer": "andr", "andrerseits": "andrerseit", "andres": "andr", "andringling": "andringling", "androhung": "androh", "androhungen": "androh", "aneignen": "aneign", "aneignet": "aneignet", "aneignete": "aneignet", "aneigneten": "aneignet", "aneignung": "aneign", "aneinander": "aneinand", "aneinandergebracht": "aneinandergebracht", "aneinandergelehnt": "aneinandergelehnt", "aneinandergeschmiegt": "aneinandergeschmiegt", "anerbieten": "anerbiet", "anererbtem": "anererbt", "anererbten": "anererbt", "anererbtes": "anererbt", "anerkannt": "anerkannt", "anerkannte": "anerkannt", "anerkannten": "anerkannt", "anerkanntesten": "anerkannt", "anerkenne": "anerkenn", "anerkennen": "anerkenn", "anerkennt": "anerkennt", "anerkennung": "anerkenn", "anfahren": "anfahr", "anfall": "anfall", "anfälle": "anfall", "anfällen": "anfall", "anfang": "anfang", "anfange": "anfang", "anfänge": "anfang", "anfangen": "anfang", "anfängen": "anfang", "anfangend": "anfang", "anfanges": "anfang", "anfänglich": "anfang", "anfangs": "anfang", "anfängt": "anfangt", "anfassen": "anfass", "anfechten": "anfecht", "anfechtende": "anfecht", "anfechtenden": "anfecht", "anfechter": "anfecht", "anfechtern": "anfecht", "anfechtung": "anfecht", "anfechtungen": "anfecht", "anfeinden": "anfeind", "anfertigen": "anfert", "anficht": "anficht", "anfing": "anfing", "anfinge": "anfing", "anfingen": "anfing", "anflehen": "anfleh", "anflehend": "anfleh", "anfleht": "anfleht", "anflehte": "anfleht", "anflug": "anflug", "anfocht": "anfocht", "anfochten": "anfocht", "anforderungen": "anforder", "anforderungsprofil": "anforderungsprofil", "anfrage": "anfrag", "anfragen": "anfrag", "anführen": "anfuhr", "anfüllen": "anfull", "anfüllte": "anfullt", "ang": "ang", "angab": "angab", "angabe": "angab", "angaben": "angab", "angafften": "angafft", "angähnte": "angahnt", "angeb": "angeb", "angebaut": "angebaut", "angeben": "angeb", "angebetet": "angebetet", "angebissene": "angebiss", "angeblich": "angeb", "angeblichen": "angeb", "angeblicher": "angeb", "angeboren": "angebor", "angeborenen": "angebor", "angeborener": "angebor", "angeborne": "angeborn", "angebornen": "angeborn", "angebot": "angebot", "angebote": "angebot", "angeboten": "angebot", "angebotenem": "angebot", "angebotenen": "angebot", "angebotenes": "angebot", "angebotes": "angebot", "angebracht": "angebracht", "angebrannt": "angebrannt", "angebrochen": "angebroch", "angebunden": "angebund", "angebundenen": "angebund", "angedeutet": "angedeutet", "angedreht": "angedreht", "angedroht": "angedroht", "angeeignet": "angeeignet", "angefangen": "angefang", "angefangenen": "angefang", "angefasst": "angefasst", "angefaßt": "angefasst", "angefeindet": "angefeindet", "angefeuert": "angefeuert", "angefleht": "angefleht", "angefochten": "angefocht", "angefragt": "angefragt", "angeführt": "angefuhrt", "angeführten": "angefuhrt", "angefüllt": "angefullt", "angefüllten": "angefullt", "angegeben": "angegeb", "angegebenen": "angegeb", "angegriffen": "angegriff", "angehaftet": "angehaftet", "angehalten": "angehalt", "angehängt": "angehangt", "angehängte": "angehangt", "angehängten": "angehangt", "angehe": "angeh", "angehende": "angeh", "angehenden": "angeh", "angehoben": "angehob", "angehör": "angehor", "angehöre": "angehor", "angehören": "angehor", "angehörend": "angehor", "angehöret": "angehoret", "angehörig": "angehor", "angehörige": "angehor", "angehörigen": "angehor", "angehöriges": "angehor", "angehört": "angehort", "angehörte": "angehort", "angehörten": "angehort", "angeht": "angeht", "angekauften": "angekauft", "angeklagt": "angeklagt", "angeklagte": "angeklagt", "angeklagten": "angeklagt", "angeklagter": "angeklagt", "angeklammert": "angeklammert", "angeklatschtem": "angeklatscht", "angeklebt": "angeklebt", "angeklebte": "angeklebt", "angekleidet": "angekleidet", "angeknüpft": "angeknupft", "angeknurrt": "angeknurrt", "angekommen": "angekomm", "angekündigt": "angekundigt", "angel": "angel", "angelangt": "angelangt", "angelaufen": "angelauf", "angelegenen": "angeleg", "angelegenheit": "angeleg", "angelegenheiten": "angeleg", "angelegentlich": "angelegent", "angelegentlichen": "angelegent", "angelegentlicher": "angelegent", "angelegentlichste": "angelegent", "angelegt": "angelegt", "angelegten": "angelegt", "angelegtes": "angelegt", "angeleitet": "angeleitet", "angelika": "angelika", "angeln": "angeln", "angelrute": "angelrut", "angelte": "angelt", "angemachten": "angemacht", "angemasst": "angemasst", "angemaßt": "angemasst", "angemassten": "angemasst", "angemessen": "angemess", "angemessene": "angemess", "angemessenen": "angemess", "angemessener": "angemess", "angemessenheit": "angemess", "angenagelt": "angenagelt", "angenehm": "angenehm", "angenehme": "angenehm", "angenehmen": "angenehm", "angenehmer": "angenehm", "angenehmeres": "angenehm", "angenehmes": "angenehm", "angenehmste": "angenehm", "angenehmsten": "angenehm", "angenommen": "angenomm", "angenommene": "angenomm", "angenommenen": "angenomm", "angenommenes": "angenomm", "angeordnet": "angeordnet", "angepasst": "angepasst", "angepaßt": "angepasst", "angepflanzt": "angepflanzt", "angeplanscht": "angeplanscht", "angepumpt": "angepumpt", "anger": "ang", "angeredet": "angeredet", "angeregt": "angeregt", "angeregter": "angeregt", "angereist": "angereist", "angerichtet": "angerichtet", "angeriemten": "angeriemt", "angerufen": "angeruf", "angerührt": "angeruhrt", "angesagteste": "angesagt", "angesammelte": "angesammelt", "angeschafft": "angeschafft", "angeschaut": "angeschaut", "angeschickt": "angeschickt", "angeschlossen": "angeschloss", "angeschlurft": "angeschlurft", "angeschrieben": "angeschrieb", "angeschrien": "angeschri", "angeschwollen": "angeschwoll", "angesehen": "angeseh", "angesehensten": "angesehen", "angesetzt": "angesetzt", "angesicht": "angesicht", "angesichte": "angesicht", "angesichten": "angesicht", "angesichter": "angesicht", "angesichtern": "angesicht", "angesichtes": "angesicht", "angesichts": "angesicht", "angesiedelt": "angesiedelt", "angesprochen": "angesproch", "angesteckt": "angesteckt", "angestellt": "angestellt", "angestellte": "angestellt", "angestellten": "angestellt", "angestellter": "angestellt", "angestiert": "angestiert", "angestrengt": "angestrengt", "angestrengten": "angestrengt", "angestrengter": "angestrengt", "angestrengteste": "angestrengt", "angestrichen": "angestrich", "angestrichene": "angestrich", "angetan": "angetan", "angetane": "angetan", "angetastet": "angetastet", "angetrieben": "angetrieb", "angetroffen": "angetroff", "angewachsen": "angewachs", "angewandt": "angewandt", "angewandte": "angewandt", "angewendet": "angewendet", "angewiesen": "angewies", "angewöhnt": "angewohnt", "angezeigt": "angezeigt", "angezogen": "angezog", "angezogene": "angezog", "angezündet": "angezundet", "angezweckt": "angezweckt", "angfangt": "angfangt", "anghört": "anghort", "angibt": "angibt", "anging": "anging", "angreifen": "angreif", "angreifenden": "angreif", "angreifern": "angreif", "angrenzenden": "angrenz", "angriff": "angriff", "angriffe": "angriff", "angschaut": "angschaut", "angst": "angst", "ängste": "angst", "angstfrühstück": "angstfruhstuck", "ängstigte": "angstigt", "ängstlich": "angstlich", "angstvoll": "angstvoll", "anguckte": "anguckt", "anguckten": "anguckt", "angues": "angu", "angustia": "angustia", "anhabe": "anhab", "anhaben": "anhab", "anhaftende": "anhaft", "anhaltend": "anhalt", "anhaltende": "anhalt", "anhaltenden": "anhalt", "anhaltender": "anhalt", "anhaltst": "anhalt", "anhang": "anhang", "anhangen": "anhang", "anhängen": "anhang", "anhänger": "anhang", "anhängerinnen": "anhangerinn", "anhänglich": "anhang", "anhänglichkeit": "anhang", "anhängsel": "anhangsel", "anhängt": "anhangt", "anhat": "anhat", "anhäuft": "anhauft", "anhäuften": "anhauft", "anhebt": "anhebt", "anheilte": "anheilt", "anheim": "anheim", "anheimfallen": "anheimfall", "anheimfällt": "anheimfallt", "anheimfiel": "anheimfiel", "anheimgegeben": "anheimgegeb", "anher": "anh", "anhieb": "anhieb", "anhielt": "anhielt", "anhing": "anhing", "anhinge": "anhing", "anhingen": "anhing", "anhöhe": "anhoh", "anhören": "anhor", "anhört": "anhort", "anhörte": "anhort", "anhörten": "anhort", "anima": "anima", "animadvertentia": "animadvertentia", "animalia": "animalia", "animalium": "animalium", "animi": "animi", "anjene": "anj", "anjetzt": "anjetzt", "ankam": "ankam", "ankäme": "ankam", "ankamen": "ankam", "ankara": "ankara", "ankäufe": "ankauf", "anker": "ank", "anklage": "anklag", "anklagen": "anklag", "anklagend": "anklag", "anklagepunkte": "anklagepunkt", "anklageschrift": "anklageschrift", "anklagt": "anklagt", "anklagte": "anklagt", "anklagten": "anklagt", "ankleben": "ankleb", "anklebenden": "ankleb", "anklebte": "anklebt", "anklopfen": "anklopf", "anknabbern": "anknabb", "ankomme": "ankomm", "ankommen": "ankomm", "ankommender": "ankomm", "ankömmlingen": "ankommling", "ankommt": "ankommt", "ankündigen": "ankund", "ankündigte": "ankundigt", "ankündigung": "ankund", "ankunft": "ankunft", "ankunfthalle": "ankunfthall", "anlächelte": "anlachelt", "anlachen": "anlach", "anlachte": "anlacht", "anlage": "anlag", "anlagen": "anlag", "anlangt": "anlangt", "anlangte": "anlangt", "anlass": "anlass", "anlaß": "anlass", "anlässe": "anlass", "anlaufstelle": "anlaufstell", "anläuft": "anlauft", "anlegen": "anleg", "anlegte": "anlegt", "anlegten": "anlegt", "anlegung": "anleg", "anlehnung": "anlehn", "anleitung": "anleit", "anleitungen": "anleit", "anliegen": "anlieg", "anliegendes": "anlieg", "anlockte": "anlockt", "anlockungen": "anlock", "anlügt": "anlugt", "anm": "anm", "anmassen": "anmass", "anmaßen": "anmass", "anmasst": "anmasst", "anmassung": "anmass", "anmassungen": "anmass", "anmelden": "anmeld", "anmerkung": "anmerk", "anmerkungen": "anmerk", "anmut": "anmut", "anmutig": "anmut", "anmutige": "anmut", "anmutigen": "anmut", "anmutiger": "anmut", "anmutiges": "anmut", "anmutigste": "anmut", "anmutungen": "anmut", "anna": "anna", "annäherung": "annaher", "annäherungsweise": "annaherungsweis", "annahm": "annahm", "annahme": "annahm", "annähme": "annahm", "annahmen": "annahm", "anne": "ann", "annehmbaren": "annehmbar", "annehme": "annehm", "annehmen": "annehm", "annehmlich": "annehm", "annehmlichkeit": "annehm", "annehmung": "annehm", "annelieschen": "anneliesch", "anneliese": "annelies", "annelieses": "annelies", "annimmst": "annimm", "annimmt": "annimmt", "annneliese": "annnelies", "anno": "anno", "anordnung": "anordn", "anpacken": "anpack", "anpackt": "anpackt", "anprallen": "anprall", "anpreisen": "anpreis", "anpumpen": "anpump", "anrätig": "anrat", "anratungswürdiger": "anratungswurd", "anreden": "anred", "anredete": "anredet", "anregen": "anreg", "anregend": "anreg", "anregt": "anregt", "anregung": "anreg", "anregungen": "anreg", "anreihte": "anreiht", "anreizen": "anreiz", "anrichten": "anricht", "anrichtete": "anrichtet", "anrief": "anrief", "anruf": "anruf", "anrufbeantworter": "anrufbeantwort", "anrufen": "anruf", "anrufung": "anruf", "anrühren": "anruhr", "anrührte": "anruhrt", "ans": "ans", "ansagen": "ansag", "ansah": "ansah", "ansähe": "ansah", "ansahen": "ansah", "ansammelten": "ansammelt", "ansammlungen": "ansamml", "ansatz": "ansatz", "anschafft": "anschafft", "anschauen": "anschau", "anschauend": "anschau", "anschaulich": "anschaulich", "anschaun": "anschaun", "anschaut": "anschaut", "anschauung": "anschau", "anschauungen": "anschau", "anschauungsfähigkeit": "anschauungsfah", "anschauungsweise": "anschauungsweis", "anschein": "anschein", "anscheine": "anschein", "anscheinend": "anschein", "anscheinender": "anschein", "anschlag": "anschlag", "anschlagen": "anschlag", "anschlägt": "anschlagt", "anschliessen": "anschliess", "anschließen": "anschliess", "anschliessend": "anschliess", "anschliesst": "anschliesst", "anschließt": "anschliesst", "anschloss": "anschloss", "anschloß": "anschloss", "anschluss": "anschluss", "anschluß": "anschluss", "anschneiden": "anschneid", "ansehe": "anseh", "ansehen": "anseh", "ansehn": "ansehn", "ansehnliche": "ansehn", "ansehnlicher": "ansehn", "ansehnliches": "ansehn", "ansehung": "anseh", "ansicht": "ansicht", "ansichten": "ansicht", "ansieht": "ansieht", "ansitz": "ansitz", "ansitzen": "ansitz", "ansonst": "anson", "ansonsten": "anson", "anspannen": "anspann", "anspielte": "anspielt", "anspielung": "anspiel", "anspielungen": "anspiel", "anspornung": "ansporn", "ansprache": "ansprach", "ansprechen": "ansprech", "ansprechend": "ansprech", "ansprechende": "ansprech", "anspricht": "anspricht", "anspringt": "anspringt", "anspruch": "anspruch", "ansprüche": "anspruch", "anspruchlosen": "anspruchlos", "anspruchlosesten": "anspruchlos", "anspruchsvollen": "anspruchsvoll", "anstach": "anstach", "anstalt": "anstalt", "anstalten": "anstalt", "anstand": "anstand", "anständig": "anstand", "anständige": "anstand", "anständigen": "anstand", "anständiger": "anstand", "anständigere": "anstand", "anständiges": "anstand", "anstarren": "anstarr", "anstatt": "anstatt", "ansteckend": "ansteck", "anstehe": "ansteh", "ansteht": "ansteht", "ansteigende": "ansteig", "ansteigenden": "ansteig", "anstelle": "anstell", "anstellen": "anstell", "anstellig": "anstell", "anstellte": "anstellt", "anstiess": "anstiess", "anstoss": "anstoss", "anstoß": "anstoss", "anstösse": "anstoss", "anstöße": "anstoss", "anstossen": "anstoss", "anstoßen": "anstoss", "anstosses": "anstoss", "anstoßes": "anstoss", "anstösst": "anstosst", "anstößt": "anstosst", "anstrengend": "anstreng", "anstrengende": "anstreng", "anstrengenden": "anstreng", "anstrengung": "anstreng", "anstrengungen": "anstreng", "anstrich": "anstrich", "anstürmen": "ansturm", "antat": "antat", "anteil": "anteil", "anteilhaber": "anteilhab", "anteils": "anteil", "antelephoniert": "antelephoniert", "anthropomorphismen": "anthropomorphism", "anthropomorphismus": "anthropomorphismus", "anthropomorphistisch": "anthropomorphist", "anthropomorphistische": "anthropomorphist", "anti": "anti", "antikeimenon": "antikeimenon", "antin": "antin", "antinomie": "antinomi", "antipathie": "antipathi", "antlitz": "antlitz", "antorten": "antort", "anträfe": "antraf", "anträge": "antrag", "antragsteller": "antragstell", "antreffen": "antreff", "antreiben": "antreib", "antreibend": "antreib", "antreibt": "antreibt", "antretet": "antretet", "antrieb": "antrieb", "antriebe": "antrieb", "antrieben": "antrieb", "antriebs": "antrieb", "antrifft": "antrifft", "antritt": "antritt", "antun": "antun", "antut": "antut", "antwort": "antwort", "antworte": "antwort", "antworten": "antwort", "antwortet": "antwortet", "antwortete": "antwortet", "antworteten": "antwortet", "anvertraue": "anvertrau", "anvertrauet": "anvertrauet", "anvertraute": "anvertraut", "anvertrauten": "anvertraut", "anverwandten": "anverwandt", "anvisierte": "anvisiert", "anwachs": "anwach", "anwachsen": "anwachs", "anwälten": "anwalt", "anwandeln": "anwandeln", "anwandlung": "anwandl", "anwandten": "anwandt", "anweisung": "anweis", "anweisungen": "anweis", "anwendbar": "anwendbar", "anwendbare": "anwendbar", "anwenden": "anwend", "anwendet": "anwendet", "anwendeten": "anwendet", "anwendung": "anwend", "anwerben": "anwerb", "anwesen": "anwes", "anwesend": "anwes", "anwesenden": "anwes", "anwesenheit": "anwes", "anwünscht": "anwunscht", "anzahl": "anzahl", "anzeichen": "anzeich", "anzeige": "anzeig", "anzeigen": "anzeig", "anzeigete": "anzeiget", "anzengruber": "anzengrub", "anziehen": "anzieh", "anziehend": "anzieh", "anziehende": "anzieh", "anziehungskraft": "anziehungskraft", "anzog": "anzog", "anzogen": "anzog", "anzublicken": "anzublick", "anzudrehen": "anzudreh", "anzuerkennen": "anzuerkenn", "anzufahren": "anzufahr", "anzufangen": "anzufang", "anzufechten": "anzufecht", "anzufertigen": "anzufert", "anzuführen": "anzufuhr", "anzug": "anzug", "anzuge": "anzug", "anzüge": "anzug", "anzugeben": "anzugeb", "anzugreifen": "anzugreif", "anzuhalten": "anzuhalt", "anzuhängen": "anzuhang", "anzuheben": "anzuheb", "anzukämpfen": "anzukampf", "anzukaufen": "anzukauf", "anzuklingen": "anzukling", "anzuklopfen": "anzuklopf", "anzukünden": "anzukund", "anzulachen": "anzulach", "anzulegen": "anzuleg", "anzumassen": "anzumass", "anzünden": "anzund", "anzündet": "anzundet", "anzündete": "anzundet", "anzunehmen": "anzunehm", "anzupeilen": "anzupeil", "anzurufen": "anzuruf", "anzuschauen": "anzuschau", "anzuschauenden": "anzuschau", "anzuschliessen": "anzuschliess", "anzuschließen": "anzuschliess", "anzusehen": "anzuseh", "anzusetzen": "anzusetz", "anzusiedeln": "anzusiedeln", "anzuspannen": "anzuspann", "anzusprechen": "anzusprech", "anzustellen": "anzustell", "anzutreffen": "anzutreff", "anzutreiben": "anzutreib", "anzuweisen": "anzuweis", "anzuwenden": "anzuw", "anzuzeigen": "anzuzeig", "anzuzetteln": "anzuzetteln", "anzuziehen": "anzuzieh", "apfel": "apfel", "äpfel": "apfel", "apfelbaum": "apfelbaum", "apfelbäumchens": "apfelbaumch", "apfelbaumes": "apfelbaum", "apfelblüten": "apfelblut", "apfelblütenhauchen": "apfelblutenhauch", "äpfelchen": "apfelch", "äpfeln": "apfeln", "apfelsaft": "apfelsaft", "aphras": "aphras", "apodiktisch": "apodikt", "apodiktischen": "apodikt", "apodiktischer": "apodikt", "apodiktisches": "apodikt", "apokrisewv": "apokrisewv", "apollyon": "apollyon", "apologie": "apologi", "apostel": "apostel", "apostolische": "apostol", "apparat": "apparat", "apparentia": "apparentia", "apparet": "apparet", "appartement": "appartement", "appell": "appell", "appetimus": "appetimus", "appetit": "appetit", "applaus": "applaus", "applicat": "applicat", "approbation": "approbation", "aprikosen": "aprikos", "april": "april", "aquarien": "aquari", "ara": "ara", "arabien": "arabi", "arabiens": "arabi", "arabische": "arab", "arbeit": "arbeit", "arbeite": "arbeit", "arbeiten": "arbeit", "arbeitenden": "arbeit", "arbeiter": "arbeit", "arbeiterkittel": "arbeiterkittel", "arbeitern": "arbeit", "arbeitet": "arbeitet", "arbeitete": "arbeitet", "arbeiteten": "arbeitet", "arbeitsam": "arbeitsam", "arbeitsamen": "arbeitsam", "arbeitsaufnahme": "arbeitsaufnahm", "arbeitsbeschaffung": "arbeitsbeschaff", "arbeitserfolge": "arbeitserfolg", "arbeitserlaubnis": "arbeitserlaubnis", "arbeitsfähigkeit": "arbeitsfah", "arbeitsgemeinschaft": "arbeitsgemeinschaft", "arbeitsgemeinschaften": "arbeitsgemeinschaft", "arbeitsgeminschaft": "arbeitsgeminschaft", "arbeitskraft": "arbeitskraft", "arbeitslohn": "arbeitslohn", "arbeitslosigkeit": "arbeitslos", "arbeitsplatzes": "arbeitsplatz", "arbeitsschurz": "arbeitsschurz", "arbeitsstelle": "arbeitsstell", "arbeitsstrenge": "arbeitsstreng", "arbeitsstube": "arbeitsstub", "arbeitsteilung": "arbeitsteil", "arbeitstreue": "arbeitstreu", "arbeitsverkehr": "arbeitsverkehr", "arbeitsvermittlung": "arbeitsvermittl", "arbeitsvertrag": "arbeitsvertrag", "arbeitsvolles": "arbeitsvoll", "arbeitszimmer": "arbeitszimm", "arbeitszimmers": "arbeitszimm", "arbet": "arbet", "archetypa": "archetypa", "architekt": "architekt", "archiv": "archiv", "arg": "arg", "arge": "arg", "argen": "arg", "ärger": "arg", "ärgere": "arg", "ärgeren": "arg", "ärgerlich": "arg", "ärgerlichen": "arg", "ärgern": "arg", "ärgernis": "argernis", "ärgernisse": "argernis", "ärgert": "argert", "ärgerte": "argert", "ärgerten": "argert", "arges": "arg", "arglos": "arglos", "arglosen": "arglos", "argloser": "arglos", "argloses": "arglos", "ärgste": "argst", "ärgsten": "argst", "arguet": "arguet", "argument": "argument", "argumentation": "argumentation", "argumente": "argument", "argumentiert": "argumentiert", "argwohn": "argwohn", "aristokraten": "aristokrat", "aristokratie": "aristokrati", "aristokratischer": "aristokrat", "aristoteles": "aristotel", "aristotelischen": "aristotel", "arm": "arm", "armbändern": "armband", "armbrust": "armbrust", "ärmchen": "armch", "arme": "arm", "armee": "arme", "armeeabschaffungsinitiative": "armeeabschaffungsinitiativ", "armen": "arm", "armenisch": "armen", "armenpfleger": "armenpfleg", "armenti": "armenti", "armer": "arm", "ärmere": "arm", "armes": "arm", "armhöhe": "armhoh", "armin": "armin", "armkraft": "armkraft", "ärmlich": "armlich", "ärmlichen": "armlich", "ärmlicher": "armlich", "arms": "arm", "armselige": "armsel", "armseligste": "armsel", "ärmste": "armst", "ärmsten": "armst", "armut": "armut", "army": "army", "arphachsad": "arphachsad", "arrnbrust": "arrnbrust", "arrogantia": "arrogantia", "arroganz": "arroganz", "art": "art", "arten": "art", "artes": "art", "arthur": "arthur", "artig": "artig", "artige": "artig", "artigen": "artig", "artiger": "artig", "artiges": "artig", "artigkeit": "artig", "artikel": "artikel", "artikeln": "artikeln", "artikulierten": "artikuliert", "artilleriegeneral": "artilleriegeneral", "artilleriewesen": "artilleriewes", "artlich": "artlich", "arts": "art", "arznei": "arznei", "arzneimittel": "arzneimittel", "arzneimittelvertreter": "arzneimittelvertret", "ärzte": "arzt", "ärztliche": "arztlich", "ärztlicher": "arztlich", "ascendenten": "ascendent", "asche": "asch", "aschen": "asch", "aschenbecher": "aschenbech", "aschenbechern": "aschenbech", "ascher": "asch", "aschgraue": "aschgrau", "aschur": "aschur", "aschurs": "aschur", "aseka": "aseka", "äsen": "asen", "äsend": "asend", "äser": "aser", "asiatische": "asiat", "asien": "asi", "aspekt": "aspekt", "aspekte": "aspekt", "aspides": "aspid", "aspik": "aspik", "ass": "ass", "aß": "ass", "assen": "ass", "aßen": "ass", "ässen": "ass", "äßen": "ass", "assertorisch": "assertor", "assir": "assir", "assistieren": "assisti", "associated": "associated", "associe": "associ", "assoziationen": "assoziation", "assoziativer": "assoziativ", "assoziierung": "assoziier", "assyrer": "assyr", "ast": "ast", "aste": "ast", "äste": "ast", "asten": "ast", "ästen": "ast", "aster": "ast", "astern": "ast", "ästhetik": "asthet", "ästhetisch": "asthet", "ästhetische": "asthet", "ästhetischen": "asthet", "ästhetisches": "asthet", "aststümpchen": "aststumpch", "asung": "asung", "atak": "atak", "atelier": "ateli", "ateliers": "ateli", "atem": "atem", "atemlos": "atemlos", "atemlose": "atemlos", "atemlosen": "atemlos", "atemnot": "atemnot", "atemzug": "atemzug", "atemzüge": "atemzug", "atemzügen": "atemzug", "atheist": "atheist", "äther": "ath", "ätherglast": "atherglast", "ätherglocke": "atherglock", "ätherisches": "ather", "ätherlüfte": "atherluft", "äthiopien": "athiopi", "äthiopiens": "athiopi", "äthiopier": "athiopi", "atlantischen": "atlant", "atmen": "atm", "atmend": "atmend", "atmens": "atm", "atmet": "atmet", "atmete": "atmet", "atmeten": "atmet", "atmosphäre": "atmosphar", "atmungsbeschwerde": "atmungsbeschwerd", "atome": "atom", "ätsch": "atsch", "attribute": "attribut", "au": "au", "auch": "auch", "aue": "aue", "auen": "auen", "auerhahn": "auerhahn", "auf": "auf", "aufatmen": "aufatm", "aufatmend": "aufatm", "aufatmenden": "aufatm", "aufatmete": "aufatmet", "aufbau": "aufbau", "aufbauen": "aufbau", "aufbaute": "aufbaut", "aufbauten": "aufbaut", "aufbehalten": "aufbehalt", "aufbewahren": "aufbewahr", "aufbewahrerin": "aufbewahrerin", "aufbewahrt": "aufbewahrt", "aufbewahrte": "aufbewahrt", "aufbewahrten": "aufbewahrt", "aufbewahrung": "aufbewahr", "aufbietung": "aufbiet", "aufblicken": "aufblick", "aufblickte": "aufblickt", "aufblies": "aufbli", "aufblitzen": "aufblitz", "aufblitzte": "aufblitzt", "aufblühende": "aufbluh", "aufblühenden": "aufbluh", "aufblühten": "aufbluht", "aufbrechen": "aufbrech", "aufbrennenden": "aufbrenn", "aufbringen": "aufbring", "aufbrochen": "aufbroch", "aufbruch": "aufbruch", "aufbürdete": "aufburdet", "aufdeckte": "aufdeckt", "aufdermauer": "aufdermau", "aufdringen": "aufdring", "aufdringlich": "aufdring", "aufdringt": "aufdringt", "aufeinander": "aufeinand", "aufeinanderbiss": "aufeinanderbiss", "aufeinanderfolge": "aufeinanderfolg", "aufeinanderfolgen": "aufeinanderfolg", "aufeinanderfolgend": "aufeinanderfolg", "aufeinanderfolgende": "aufeinanderfolg", "aufeinanderfolgenden": "aufeinanderfolg", "aufeinanderfolgender": "aufeinanderfolg", "aufeinanderfolgt": "aufeinanderfolgt", "aufeinanderfolgten": "aufeinanderfolgt", "aufeinanderschlügen": "aufeinanderschlug", "aufenthalt": "aufenthalt", "aufenthalten": "aufenthalt", "aufenthaltes": "aufenthalt", "auferlegen": "auferleg", "auferlegt": "auferlegt", "auferlegten": "auferlegt", "auferstand": "auferstand", "auferstanden": "auferstand", "auferstehen": "aufersteh", "aufersteht": "aufersteht", "auferstehung": "aufersteh", "auferstünde": "auferstund", "auferwecken": "auferweck", "auferweckt": "auferweckt", "auferzogen": "auferzog", "aufessen": "aufess", "auffa": "auffa", "auffallen": "auffall", "auffallend": "auffall", "auffallenden": "auffall", "auffallender": "auffall", "auffällig": "auffall", "auffälligen": "auffall", "auffälliges": "auffall", "auffassen": "auffass", "auffasst": "auffasst", "auffaßt": "auffasst", "auffassung": "auffass", "auffassungsvermögen": "auffassungsvermog", "auffi": "auffi", "auffiel": "auffiel", "auffinden": "auffind", "auffindung": "auffind", "aufflammt": "aufflammt", "aufforderden": "aufforderd", "auffordern": "aufford", "aufforderte": "auffordert", "aufforderung": "aufforder", "auffrass": "auffrass", "auffraß": "auffrass", "auffressen": "auffress", "auffuhren": "auffuhr", "aufführen": "auffuhr", "aufführung": "auffuhr", "aufg": "aufg", "aufgab": "aufgab", "aufgabe": "aufgab", "aufgaben": "aufgab", "aufgabenfeld": "aufgabenfeld", "aufgang": "aufgang", "aufgange": "aufgang", "aufgangs": "aufgang", "aufgearbeitet": "aufgearbeitet", "aufgebaut": "aufgebaut", "aufgebe": "aufgeb", "aufgeben": "aufgeb", "aufgebläht": "aufgeblaht", "aufgeblasen": "aufgeblas", "aufgebracht": "aufgebracht", "aufgebrachte": "aufgebracht", "aufgebrachter": "aufgebracht", "aufgebrochen": "aufgebroch", "aufgedeckt": "aufgedeckt", "aufgedrungenes": "aufgedr", "aufgefahren": "aufgefahr", "aufgefallen": "aufgefall", "aufgefangen": "aufgefang", "aufgefasst": "aufgefasst", "aufgefaßt": "aufgefasst", "aufgefressen": "aufgefress", "aufgeführt": "aufgefuhrt", "aufgefunden": "aufgefund", "aufgegangen": "aufgegang", "aufgegeben": "aufgegeb", "aufgegebenen": "aufgegeb", "aufgegessen": "aufgegess", "aufgehalten": "aufgehalt", "aufgehängt": "aufgehangt", "aufgehäuft": "aufgehauft", "aufgehellt": "aufgehellt", "aufgehen": "aufgeh", "aufgehenden": "aufgeh", "aufgehoben": "aufgehob", "aufgehobene": "aufgehob", "aufgehört": "aufgehort", "aufgeht": "aufgeht", "aufgeklärt": "aufgeklart", "aufgeklärten": "aufgeklart", "aufgekommen": "aufgekomm", "aufgekommenen": "aufgekomm", "aufgeladen": "aufgelad", "aufgelegt": "aufgelegt", "aufgelegte": "aufgelegt", "aufgelesen": "aufgeles", "aufgelöset": "aufgeloset", "aufgelöst": "aufgelost", "aufgemacht": "aufgemacht", "aufgemerkt": "aufgemerkt", "aufgemuntert": "aufgemuntert", "aufgenommen": "aufgenomm", "aufgepasst": "aufgepasst", "aufgepflanzt": "aufgepflanzt", "aufgepluschtem": "aufgepluscht", "aufgeplusterten": "aufgeplustert", "aufgeräumt": "aufgeraumt", "aufgereckt": "aufgereckt", "aufgeregt": "aufgeregt", "aufgeregten": "aufgeregt", "aufgeregter": "aufgeregt", "aufgeregtes": "aufgeregt", "aufgereihten": "aufgereiht", "aufgerichtet": "aufgerichtet", "aufgerieben": "aufgerieb", "aufgerissen": "aufgeriss", "aufgerissenen": "aufgeriss", "aufgerüttelt": "aufgeruttelt", "aufgesammelt": "aufgesammelt", "aufgeschaltet": "aufgeschaltet", "aufgeschichtet": "aufgeschichtet", "aufgeschlagen": "aufgeschlag", "aufgeschlossen": "aufgeschloss", "aufgeschossener": "aufgeschoss", "aufgeschreckt": "aufgeschreckt", "aufgeschrieben": "aufgeschrieb", "aufgeschürzt": "aufgeschurzt", "aufgesehen": "aufgeseh", "aufgesperrten": "aufgesperrt", "aufgesprungen": "aufgespr", "aufgestachelt": "aufgestachelt", "aufgestanden": "aufgestand", "aufgestapelt": "aufgestapelt", "aufgestellt": "aufgestellt", "aufgestellte": "aufgestellt", "aufgestellten": "aufgestellt", "aufgestiegen": "aufgestieg", "aufgetan": "aufgetan", "aufgetaucht": "aufgetaucht", "aufgeteilt": "aufgeteilt", "aufgetragen": "aufgetrag", "aufgewachsen": "aufgewachs", "aufgeweckt": "aufgeweckt", "aufgeweckten": "aufgeweckt", "aufgeworfene": "aufgeworf", "aufgeworfenen": "aufgeworf", "aufgezählt": "aufgezahlt", "aufgezehrt": "aufgezehrt", "aufgezeichnet": "aufgezeichnet", "aufgezettelt": "aufgezettelt", "aufging": "aufging", "aufginge": "aufging", "aufgreifen": "aufgreif", "aufgriff": "aufgriff", "aufgrund": "aufgrund", "aufgschnauft": "aufgschnauft", "aufgsprungen": "aufgsprung", "aufhalsen": "aufhals", "aufhält": "aufhalt", "aufhalte": "aufhalt", "aufhalten": "aufhalt", "aufhängen": "aufhang", "aufhäuften": "aufhauft", "aufheben": "aufheb", "aufhebt": "aufhebt", "aufhebung": "aufheb", "aufheiternde": "aufheiternd", "aufhellen": "aufhell", "aufheulen": "aufheul", "aufheulend": "aufheul", "aufhielt": "aufhielt", "aufhob": "aufhob", "aufhorchte": "aufhorcht", "aufhören": "aufhor", "aufhört": "aufhort", "aufhörte": "aufhort", "aufhörten": "aufhort", "aufkam": "aufkam", "aufkeimt": "aufkeimt", "aufklappte": "aufklappt", "aufklärte": "aufklart", "aufklärung": "aufklar", "aufkomme": "aufkomm", "aufkommen": "aufkomm", "aufkroch": "aufkroch", "aufkrochen": "aufkroch", "auflachen": "auflach", "auflachten": "auflacht", "auflage": "auflag", "auflas": "auflas", "aufläufen": "auflauf", "auflegen": "aufleg", "aufleuchtende": "aufleucht", "aufleuchtenden": "aufleucht", "auflösen": "auflos", "auflösung": "auflos", "aufmache": "aufmach", "aufmachen": "aufmach", "aufmachte": "aufmacht", "aufmerken": "aufmerk", "aufmerkend": "aufmerk", "aufmerkende": "aufmerk", "aufmerkens": "aufmerk", "aufmerksam": "aufmerksam", "aufmerksame": "aufmerksam", "aufmerksamen": "aufmerksam", "aufmerksamer": "aufmerksam", "aufmerksamkeit": "aufmerksam", "aufmerksamkeiten": "aufmerksam", "aufmerkt": "aufmerkt", "aufmerkte": "aufmerkt", "aufmunterung": "aufmunter", "aufnahm": "aufnahm", "aufnahme": "aufnahm", "aufnahmegefäss": "aufnahmegefass", "aufnahmegefäß": "aufnahmegefass", "aufnahmegefässe": "aufnahmegefass", "aufnahmegefäße": "aufnahmegefass", "aufnahmen": "aufnahm", "aufnahmeprüfungen": "aufnahmepruf", "aufnahmsfähig": "aufnahmsfah", "aufnahmsfähigkeit": "aufnahmsfah", "aufnahmsorgan": "aufnahmsorgan", "aufnehme": "aufnehm", "aufnehmen": "aufnehm", "aufnehmende": "aufnehm", "aufnehmenden": "aufnehm", "aufnehmendes": "aufnehm", "äufner": "aufn", "äufnete": "aufnet", "aufnimmt": "aufnimmt", "aufopfernd": "aufopfernd", "aufopferung": "aufopfer", "aufpassen": "aufpass", "aufpasser": "aufpass", "aufpasst": "aufpasst", "aufpassten": "aufpasst", "aufpflanzte": "aufpflanzt", "aufputz": "aufputz", "aufragen": "aufrag", "aufrappeln": "aufrappeln", "aufräume": "aufraum", "aufrechnen": "aufrechn", "aufrecht": "aufrecht", "aufrechten": "aufrecht", "aufrechterhalten": "aufrechterhalt", "aufregen": "aufreg", "aufregende": "aufreg", "aufregendsten": "aufreg", "aufreger": "aufreg", "aufregung": "aufreg", "aufregungen": "aufreg", "aufreiben": "aufreib", "aufreissend": "aufreiss", "aufreißend": "aufreiss", "aufrichten": "aufricht", "aufrichtete": "aufrichtet", "aufrichteten": "aufrichtet", "aufrichtig": "aufricht", "aufrichtige": "aufricht", "aufrichtigen": "aufricht", "aufrichtiger": "aufricht", "aufrichtigkeit": "aufricht", "aufriss": "aufriss", "aufriß": "aufriss", "aufrissen": "aufriss", "aufrollten": "aufrollt", "aufrufe": "aufruf", "aufruhr": "aufruhr", "aufrühren": "aufruhr", "aufrührend": "aufruhr", "aufs": "auf", "aufsagen": "aufsag", "aufsah": "aufsah", "aufsätze": "aufsatz", "aufschauten": "aufschaut", "aufschichtete": "aufschichtet", "aufschieben": "aufschieb", "aufschlag": "aufschlag", "aufschlagen": "aufschlag", "aufschlug": "aufschlug", "aufschlugen": "aufschlug", "aufschluss": "aufschluss", "aufschluß": "aufschluss", "aufschlüsse": "aufschluss", "aufschrei": "aufschrei", "aufschreiben": "aufschreib", "aufschreiende": "aufschreiend", "aufschriften": "aufschrift", "aufschub": "aufschub", "aufschwung": "aufschwung", "aufsehen": "aufseh", "aufseher": "aufseh", "aufsetzen": "aufsetz", "aufsetzte": "aufsetzt", "aufseufzte": "aufseufzt", "aufsicht": "aufsicht", "aufsperrte": "aufsperrt", "aufspielen": "aufspiel", "aufspielt": "aufspielt", "aufspiessen": "aufspiess", "aufspießen": "aufspiess", "aufsprang": "aufsprang", "aufsprangen": "aufsprang", "aufspringen": "aufspring", "aufspringenden": "aufspring", "aufsprossen": "aufspross", "aufsprosst": "aufsprosst", "aufsproßt": "aufsprosst", "aufsprosste": "aufsprosst", "aufsproßte": "aufsprosst", "aufstand": "aufstand", "aufstanden": "aufstand", "aufstehen": "aufsteh", "aufstehend": "aufsteh", "aufstehn": "aufstehn", "aufsteht": "aufsteht", "aufsteigen": "aufsteig", "aufsteigendem": "aufsteig", "aufsteigenden": "aufsteig", "aufsteigt": "aufsteigt", "aufstellen": "aufstell", "aufstellt": "aufstellt", "aufstellte": "aufstellt", "aufstellung": "aufstell", "aufstieg": "aufstieg", "aufstiegsangebote": "aufstiegsangebot", "aufstiegschancen": "aufstiegschanc", "aufstiess": "aufstiess", "aufstieß": "aufstiess", "aufstöhnend": "aufstohn", "aufsuchen": "aufsuch", "aufsucht": "aufsucht", "aufsuchte": "aufsucht", "auftat": "auftat", "auftaucht": "auftaucht", "auftauchten": "auftaucht", "auftrag": "auftrag", "auftrage": "auftrag", "aufträge": "auftrag", "auftrags": "auftrag", "auftragt": "auftragt", "auftreiben": "auftreib", "auftreten": "auftret", "auftrieb": "auftrieb", "auftrieben": "auftrieb", "auftritt": "auftritt", "auftritten": "auftritt", "auftrittslied": "auftrittslied", "auftut": "auftut", "aufwach": "aufwach", "aufwachst": "aufwach", "aufwachte": "aufwacht", "aufwachten": "aufwacht", "aufwallten": "aufwallt", "aufwallung": "aufwall", "aufwallungen": "aufwall", "aufwand": "aufwand", "aufwarten": "aufwart", "aufwartenden": "aufwart", "aufwärter": "aufwart", "aufwärts": "aufwart", "aufweist": "aufweist", "aufwendige": "aufwend", "aufwüchse": "aufwuchs", "aufwuchsen": "aufwuchs", "aufzählt": "aufzahlt", "aufzählung": "aufzahl", "aufzehren": "aufzehr", "aufzeichnung": "aufzeichn", "aufzeigen": "aufzeig", "aufziehenden": "aufzieh", "aufzuatmen": "aufzuatm", "aufzubauen": "aufzubau", "aufzublasen": "aufzublas", "aufzublicken": "aufzublick", "aufzubrauchen": "aufzubrauch", "aufzubrechen": "aufzubrech", "aufzubringen": "aufzubring", "aufzubürden": "aufzuburd", "aufzuckt": "aufzuckt", "aufzuessen": "aufzuess", "aufzufassen": "aufzufass", "aufzuführen": "aufzufuhr", "aufzug": "aufzug", "aufzuge": "aufzug", "aufzugeben": "aufzugeb", "aufzugskabine": "aufzugskabin", "aufzuhalsen": "aufzuhals", "aufzuhalten": "aufzuhalt", "aufzuheben": "aufzuheb", "aufzuheitern": "aufzuheit", "aufzuhören": "aufzuhor", "aufzukommen": "aufzukomm", "aufzulösen": "aufzulos", "aufzumachen": "aufzumach", "aufzumuntern": "aufzumunt", "aufzunehmen": "aufzunehm", "aufzupassen": "aufzupass", "aufzuraffen": "aufzuraff", "aufzurollen": "aufzuroll", "aufzuschlagen": "aufzuschlag", "aufzuschreiben": "aufzuschreib", "aufzusehen": "aufzuseh", "aufzusparen": "aufzuspar", "aufzuspringen": "aufzuspring", "aufzustellen": "aufzustell", "aufzustellende": "aufzustell", "aufzusuchen": "aufzusuch", "aufzutragen": "aufzutrag", "aufzutreiben": "aufzutreib", "aufzutun": "aufzutun", "aufzuwecken": "aufzuweck", "aufzuweisen": "aufzuweis", "aufzuwerten": "aufzuwert", "aufzuwiegen": "aufzuwieg", "aug": "aug", "auge": "aug", "äugelchen": "augelch", "äugelein": "augelein", "augen": "aug", "augenaufschlag": "augenaufschlag", "augenblick": "augenblick", "augenblicke": "augenblick", "augenblicken": "augenblick", "augenblicklich": "augenblick", "augenblicklichen": "augenblick", "augenbogen": "augenbog", "augenbraunen": "augenbraun", "äugender": "augend", "augenlider": "augenlid", "augenmerk": "augenmerk", "augenschein": "augenschein", "augenscheinlich": "augenschein", "augenscheinliche": "augenschein", "augenscheinlicher": "augenschein", "augenschwache": "augenschwach", "augenwinkel": "augenwinkel", "auges": "aug", "äuglein": "auglein", "augsburg": "augsburg", "augst": "augst", "august": "august", "aura": "aura", "aus": "aus", "ausarbeiten": "ausarbeit", "ausartet": "ausartet", "ausartung": "ausart", "ausbesserung": "ausbesser", "ausbeutete": "ausbeutet", "ausbeutung": "ausbeut", "ausbilden": "ausbild", "ausbildete": "ausbildet", "ausbildung": "ausbild", "ausblase": "ausblas", "ausbleiben": "ausbleib", "ausbleibt": "ausbleibt", "ausblick": "ausblick", "ausbrach": "ausbrach", "ausbreche": "ausbrech", "ausbrechen": "ausbrech", "ausbrechend": "ausbrech", "ausbrechendem": "ausbrech", "ausbrechenden": "ausbrech", "ausbreite": "ausbreit", "ausbreiten": "ausbreit", "ausbreitet": "ausbreitet", "ausbreitete": "ausbreitet", "ausbreiteten": "ausbreitet", "ausbreitung": "ausbreit", "ausbricht": "ausbricht", "ausbruch": "ausbruch", "ausbrüten": "ausbrut", "ausbund": "ausbund", "ausdachte": "ausdacht", "ausdauer": "ausdau", "ausdauernd": "ausdauernd", "ausdehnen": "ausdehn", "ausdehnt": "ausdehnt", "ausdehnung": "ausdehn", "ausdenken": "ausdenk", "ausdeuteten": "ausdeutet", "ausdruck": "ausdruck", "ausdrucke": "ausdruck", "ausdrücke": "ausdruck", "ausdrücken": "ausdruck", "ausdrücklich": "ausdruck", "ausdrückliche": "ausdruck", "ausdrucks": "ausdruck", "ausdrucksweise": "ausdrucksweis", "ausdrückt": "ausdruckt", "ausdrückte": "ausdruckt", "ausdrückten": "ausdruckt", "ausdünstet": "ausdunstet", "ausdünstungen": "ausdunst", "auseinander": "auseinand", "auseinanderfahren": "auseinanderfahr", "auseinanderfalteten": "auseinanderfaltet", "auseinandergeschnitten": "auseinandergeschnitt", "auseinanderhuschten": "auseinanderhuscht", "auseinanderjagte": "auseinanderjagt", "auseinanderschneiden": "auseinanderschneid", "auseinandersetzen": "auseinandersetz", "auseinandersetzt": "auseinandersetzt", "auseinandersetzung": "auseinandersetz", "auseinanderteilte": "auseinanderteilt", "auseinanderzugehen": "auseinanderzugeh", "auseinanderzukeilen": "auseinanderzukeil", "auseinanderzusetzen": "auseinanderzusetz", "ausersehen": "auserseh", "auserwählen": "auserwahl", "auserwählt": "auserwahlt", "auserwählte": "auserwahlt", "auserwählten": "auserwahlt", "auserwähltes": "auserwahlt", "ausfallen": "ausfall", "ausfiel": "ausfiel", "ausfiele": "ausfiel", "ausfindig": "ausfind", "ausfliesst": "ausfliesst", "ausfließt": "ausfliesst", "ausflucht": "ausflucht", "ausflüge": "ausflug", "ausflüsse": "ausfluss", "ausflüssen": "ausfluss", "ausforschen": "ausforsch", "ausführen": "ausfuhr", "ausführlich": "ausfuhr", "ausführlichen": "ausfuhr", "ausführlicher": "ausfuhr", "ausführlichere": "ausfuhr", "ausführlichst": "ausfuhr", "ausführst": "ausfuhrst", "ausführt": "ausfuhrt", "ausführte": "ausfuhrt", "ausführung": "ausfuhr", "ausfüllen": "ausfull", "ausg": "ausg", "ausgab": "ausgab", "ausgabe": "ausgab", "ausgaben": "ausgab", "ausgäben": "ausgab", "ausgang": "ausgang", "ausgangs": "ausgang", "ausgangspunkt": "ausgangspunkt", "ausgearbeitet": "ausgearbeitet", "ausgeben": "ausgeb", "ausgebeutet": "ausgebeutet", "ausgebildet": "ausgebildet", "ausgebildete": "ausgebildet", "ausgeblasen": "ausgeblas", "ausgeblasene": "ausgeblas", "ausgeblieben": "ausgeblieb", "ausgebliebenen": "ausgeblieb", "ausgeboren": "ausgebor", "ausgebrannt": "ausgebrannt", "ausgebreitet": "ausgebreitet", "ausgebrüteten": "ausgebrutet", "ausgedacht": "ausgedacht", "ausgedehnt": "ausgedehnt", "ausgedehnten": "ausgedehnt", "ausgedehntes": "ausgedehnt", "ausgediente": "ausgedient", "ausgedienten": "ausgedient", "ausgedientes": "ausgedient", "ausgedörrten": "ausgedorrt", "ausgedörrtes": "ausgedorrt", "ausgedrückt": "ausgedruckt", "ausgedruckte": "ausgedruckt", "ausgefallen": "ausgefall", "ausgeflossen": "ausgefloss", "ausgeforscht": "ausgeforscht", "ausgefragt": "ausgefragt", "ausgeführt": "ausgefuhrt", "ausgefüllt": "ausgefullt", "ausgegangen": "ausgegang", "ausgegangene": "ausgegang", "ausgegeben": "ausgegeb", "ausgegebendie": "ausgegebendi", "ausgeglichen": "ausgeg", "ausgegossen": "ausgegoss", "ausgegraben": "ausgegrab", "ausgehaucht": "ausgehaucht", "ausgehauen": "ausgehau", "ausgehe": "ausgeh", "ausgeheckt": "ausgeheckt", "ausgehen": "ausgeh", "ausgehend": "ausgeh", "ausgehende": "ausgeh", "ausgehenden": "ausgeh", "ausgehn": "ausgehn", "ausgehorcht": "ausgehorcht", "ausgeht": "ausgeht", "ausgehungerte": "ausgehungert", "ausgehungertes": "ausgehungert", "ausgeklügelt": "ausgeklugelt", "ausgekratzt": "ausgekratzt", "ausgelacht": "ausgelacht", "ausgelassen": "ausgelass", "ausgelassene": "ausgelass", "ausgelassenheit": "ausgelass", "ausgelassenste": "ausgelassen", "ausgelassensten": "ausgelassen", "ausgelastet": "ausgelastet", "ausgelegt": "ausgelegt", "ausgelöscht": "ausgeloscht", "ausgelöschte": "ausgeloscht", "ausgemacht": "ausgemacht", "ausgemachte": "ausgemacht", "ausgemalten": "ausgemalt", "ausgemittelt": "ausgemittelt", "ausgenommen": "ausgenomm", "ausgenommene": "ausgenomm", "ausgenossen": "ausgenoss", "ausgenutzt": "ausgenutzt", "ausgepeitscht": "ausgepeitscht", "ausgepustet": "ausgepustet", "ausgeputzt": "ausgeputzt", "ausgequetschten": "ausgequetscht", "ausgerechnet": "ausgerechnet", "ausgereckt": "ausgereckt", "ausgereiften": "ausgereift", "ausgerichtet": "ausgerichtet", "ausgerissen": "ausgeriss", "ausgeritten": "ausgeritt", "ausgerottet": "ausgerottet", "ausgerückt": "ausgeruckt", "ausgerufen": "ausgeruf", "ausgerufenen": "ausgeruf", "ausgerüstet": "ausgerustet", "ausgesagt": "ausgesagt", "ausgesandt": "ausgesandt", "ausgesandte": "ausgesandt", "ausgeschaltet": "ausgeschaltet", "ausgeschickt": "ausgeschickt", "ausgeschieden": "ausgeschied", "ausgeschlachtet": "ausgeschlachtet", "ausgeschlafen": "ausgeschlaf", "ausgeschlagen": "ausgeschlag", "ausgeschlossen": "ausgeschloss", "ausgeschnitzt": "ausgeschnitzt", "ausgeschoben": "ausgeschob", "ausgeschrieben": "ausgeschrieb", "ausgeschrieen": "ausgeschrie", "ausgeschüttet": "ausgeschuttet", "ausgeschweiften": "ausgeschweift", "ausgesehen": "ausgeseh", "ausgesetzt": "ausgesetzt", "ausgesetzte": "ausgesetzt", "ausgesondert": "ausgesondert", "ausgesonnen": "ausgesonn", "ausgespannt": "ausgespannt", "ausgespart": "ausgespart", "ausgesprochen": "ausgesproch", "ausgesprochenen": "ausgesproch", "ausgestaltung": "ausgestalt", "ausgestattet": "ausgestattet", "ausgestatteter": "ausgestattet", "ausgesteckt": "ausgesteckt", "ausgesteckten": "ausgesteckt", "ausgestellt": "ausgestellt", "ausgestorben": "ausgestorb", "ausgestossen": "ausgestoss", "ausgestoßen": "ausgestoss", "ausgestrahlt": "ausgestrahlt", "ausgestreckt": "ausgestreckt", "ausgestreckte": "ausgestreckt", "ausgestrecktem": "ausgestreckt", "ausgestreckten": "ausgestreckt", "ausgesuchte": "ausgesucht", "ausgesuchten": "ausgesucht", "ausgetauscht": "ausgetauscht", "ausgeteilt": "ausgeteilt", "ausgeteilte": "ausgeteilt", "ausgetilgt": "ausgetilgt", "ausgetragen": "ausgetrag", "ausgetreten": "ausgetret", "ausgetretene": "ausgetret", "ausgetrieben": "ausgetrieb", "ausgetrocknet": "ausgetrocknet", "ausgeübt": "ausgeubt", "ausgewandert": "ausgewandert", "ausgeweidet": "ausgeweidet", "ausgewischt": "ausgewischt", "ausgewogen": "ausgewog", "ausgeworfen": "ausgeworf", "ausgezackten": "ausgezackt", "ausgezeichnet": "ausgezeichnet", "ausgezeichnete": "ausgezeichnet", "ausgezeichneten": "ausgezeichnet", "ausgezeichnetes": "ausgezeichnet", "ausgezeichnetrückbesinnung": "ausgezeichnetruckbesinn", "ausgeziechnet": "ausgeziechnet", "ausgezogen": "ausgezog", "ausgezogene": "ausgezog", "ausgezogenen": "ausgezog", "ausgiebigen": "ausgieb", "ausgiebigkeit": "ausgieb", "ausgiessen": "ausgiess", "ausgießen": "ausgiess", "ausging": "ausging", "ausginge": "ausging", "ausgingen": "ausging", "ausgmacht": "ausgmacht", "ausgoss": "ausgoss", "ausgoß": "ausgoss", "ausgredt": "ausgredt", "ausgstossen": "ausgstoss", "ausgwichen": "ausgwich", "ausgworfen": "ausgworf", "aushalt": "aushalt", "aushält": "aushalt", "aushalten": "aushalt", "ausharren": "ausharr", "aushauchte": "aushaucht", "aushauen": "aushau", "aushielt": "aushielt", "aushilfe": "aushilf", "ausholend": "aushol", "aushungern": "aushung", "auskennen": "auskenn", "ausklang": "ausklang", "auskneifer": "auskneif", "auskommen": "auskomm", "auskommens": "auskomm", "auskröchen": "auskroch", "auskunft": "auskunft", "auslachen": "auslach", "auslachte": "auslacht", "ausladungen": "auslad", "auslagen": "auslag", "ausland": "ausland", "ausländischen": "ausland", "auslassen": "auslass", "auslaufen": "auslauf", "ausläuft": "auslauft", "auslebte": "auslebt", "ausleeren": "ausle", "auslegen": "ausleg", "auslegt": "auslegt", "auslegung": "ausleg", "ausliesse": "ausliess", "ausließe": "ausliess", "auslöschen": "auslosch", "auslöscht": "ausloscht", "auslöschte": "ausloscht", "auslöschung": "auslosch", "ausmache": "ausmach", "ausmachen": "ausmach", "ausmacht": "ausmacht", "ausmachte": "ausmacht", "ausmachten": "ausmacht", "ausmass": "ausmass", "ausmaß": "ausmass", "ausmündung": "ausmund", "ausnahme": "ausnahm", "ausnähme": "ausnahm", "ausnahmen": "ausnahm", "ausnahmsweise": "ausnahmsweis", "ausnehmen": "ausnehm", "ausnehmend": "ausnehm", "ausnutzen": "ausnutz", "auspfiff": "auspfiff", "ausräumen": "ausraum", "ausrecken": "ausreck", "ausreden": "ausred", "ausreichenden": "ausreich", "ausreicht": "ausreicht", "ausreissen": "ausreiss", "ausrichten": "ausricht", "ausrichtet": "ausrichtet", "ausrief": "ausrief", "ausrotten": "ausrott", "ausrottet": "ausrottet", "ausrücken": "ausruck", "ausrückt": "ausruckt", "ausruf": "ausruf", "ausrufe": "ausruf", "ausruhen": "ausruh", "ausruhet": "ausruhet", "ausrüstung": "ausrust", "ausrüstungsgegenständen": "ausrustungsgegenstand", "aussaat": "aussaat", "aussage": "aussag", "aussagen": "aussag", "aussagenden": "aussag", "aussah": "aussah", "aussähe": "aussah", "aussahen": "aussah", "aussatz": "aussatz", "aussatzes": "aussatz", "aussätzig": "aussatz", "aussätzige": "aussatz", "aussätzigen": "aussatz", "ausschalten": "ausschalt", "ausschicken": "ausschick", "ausschied": "ausschied", "ausschlag": "ausschlag", "ausschließen": "ausschliess", "ausschliesslich": "ausschliess", "ausschließlich": "ausschliess", "ausschliessliches": "ausschliess", "ausschließliches": "ausschliess", "ausschliesst": "ausschliesst", "ausschliessungsweise": "ausschliessungsweis", "ausschlugen": "ausschlug", "ausschmückten": "ausschmuckt", "ausschneiden": "ausschneid", "ausschnitt": "ausschnitt", "ausschnitte": "ausschnitt", "ausschuss": "ausschuss", "ausschütten": "ausschutt", "ausschwenkend": "ausschwenk", "aussehe": "ausseh", "aussehen": "ausseh", "aussehender": "ausseh", "aussehens": "ausseh", "aussen": "auss", "außen": "auss", "aussenden": "aussend", "aussendung": "aussend", "aussenminister": "aussenminist", "aussenpolitik": "aussenpolit", "aussenwerke": "aussenwerk", "außenwerke": "aussenwerk", "ausser": "auss", "außer": "auss", "ausserdem": "ausserd", "außerdem": "ausserd", "äussere": "auss", "äußere": "auss", "äusserem": "auss", "äußerem": "auss", "äusseren": "auss", "äußeren": "auss", "äusserer": "auss", "äußerer": "auss", "äusseres": "auss", "äußeres": "auss", "aussergewöhnliche": "aussergewohn", "außergewöhnliche": "aussergewohn", "aussergewöhnliches": "aussergewohn", "ausserhalb": "ausserhalb", "außerhalb": "ausserhalb", "äusserlich": "auss", "äußerlich": "auss", "äusserliche": "auss", "äußerliche": "auss", "äusserlichen": "auss", "äußerlichen": "auss", "äusserlicher": "auss", "äußerlicher": "auss", "äusserliches": "auss", "äußerliches": "auss", "äusserlichkeiten": "ausser", "äußerlichkeiten": "ausser", "äusserlichsten": "auss", "äußerlichsten": "auss", "äussern": "auss", "äußern": "auss", "äussernden": "aussernd", "ausserordentlich": "ausserordent", "außerordentlich": "ausserordent", "ausserordentliche": "ausserordent", "ausserordentlichen": "ausserordent", "außerordentlichen": "ausserordent", "äusserst": "ausserst", "äußerst": "ausserst", "äusserste": "ausserst", "äußerste": "ausserst", "äussersten": "ausserst", "äußersten": "ausserst", "äusserster": "ausserst", "äußerster": "ausserst", "äusserstes": "ausserst", "äußerstes": "ausserst", "äussert": "aussert", "äußert": "aussert", "äusserung": "ausser", "äußerung": "ausser", "äusserungen": "ausser", "äußerungen": "ausser", "aussetzen": "aussetz", "aussetzend": "aussetz", "aussetzte": "aussetzt", "aussetzten": "aussetzt", "aussi": "aussi", "aussicht": "aussicht", "aussichten": "aussicht", "aussichtslos": "aussichtslos", "aussichtspunkte": "aussichtspunkt", "aussiehst": "aussieh", "aussieht": "aussieht", "aussigraspelt": "aussigraspelt", "aussigsprungen": "aussigspr", "aussiheiret": "aussiheiret", "aussilassen": "aussilass", "aussinnen": "aussinn", "aussischickt": "aussischickt", "aussizahlt": "aussizahlt", "ausspähenden": "ausspah", "ausspannen": "ausspann", "ausspannt": "ausspannt", "ausspannung": "ausspann", "ausspielen": "ausspiel", "aussprach": "aussprach", "aussprache": "aussprach", "aussprachen": "aussprach", "aussprechen": "aussprech", "ausspricht": "ausspricht", "ausspruch": "ausspruch", "ausspruche": "ausspruch", "aussprüchen": "ausspruch", "ausspuckend": "ausspuck", "ausspüren": "ausspur", "ausstand": "ausstand", "ausstarb": "ausstarb", "ausstattung": "ausstatt", "ausstehen": "aussteh", "ausstehendes": "aussteh", "aussteigen": "aussteig", "ausstellung": "ausstell", "aussteuer": "aussteu", "ausstieg": "ausstieg", "ausstiess": "ausstiess", "ausstieß": "ausstiess", "ausstossen": "ausstoss", "ausstoßen": "ausstoss", "ausstrahlen": "ausstrahl", "ausstrahlt": "ausstrahlt", "ausstrahlung": "ausstrahl", "ausstrecke": "ausstreck", "ausstrecken": "ausstreck", "ausstreckt": "ausstreckt", "ausstreckte": "ausstreckt", "ausstreckung": "ausstreck", "ausströmen": "ausstrom", "aussuchst": "aussuch", "austausch": "austausch", "austauschen": "austausch", "austauschte": "austauscht", "austeilende": "austeil", "austellers": "austell", "austern": "aust", "austilgten": "austilgt", "australien": "australi", "austraten": "austrat", "austreibe": "austreib", "austrinken": "austrink", "austritte": "austritt", "austrittstrenddie": "austrittstrenddi", "austrittswelle": "austrittswell", "austrocknen": "austrockn", "austrocknet": "austrocknet", "austrocknete": "austrocknet", "ausübe": "ausub", "ausüben": "ausub", "ausübt": "ausubt", "ausübung": "ausub", "auswahl": "auswahl", "auswandern": "auswand", "auswanderung": "auswander", "auswanderungsziel": "auswanderungsziel", "auswarf": "auswarf", "auswärtige": "auswart", "auswärtigem": "auswart", "auswärtigen": "auswart", "auswärts": "auswart", "ausweg": "ausweg", "auswege": "ausweg", "ausweis": "ausweis", "ausweisen": "ausweis", "ausweiset": "ausweiset", "ausweisst": "ausweisst", "auswendig": "auswend", "auswendige": "auswend", "auswendigere": "auswend", "auswendigeren": "auswend", "auswendigeres": "auswend", "auswendiges": "auswend", "auswendiglernen": "auswendiglern", "auswendigsten": "auswend", "auswerfen": "auswerf", "auswichen": "auswich", "auswirft": "auswirft", "auswüchse": "auswuchs", "auswuchsen": "auswuchs", "auszahlen": "auszahl", "auszahlte": "auszahlt", "auszählung": "auszahl", "auszehrung": "auszehr", "auszeichnen": "auszeichn", "auszeichnender": "auszeichn", "auszeichnet": "auszeichnet", "auszeichnung": "auszeichn", "ausziehen": "auszieh", "ausziehenden": "auszieh", "auszieht": "auszieht", "ausziehtisch": "auszieht", "auszog": "auszog", "auszogen": "auszog", "auszuarbeiten": "auszuarbeit", "auszubauen": "auszubau", "auszubilden": "auszubild", "auszudehnen": "auszudehn", "auszudrücken": "auszudruck", "auszufahren": "auszufahr", "auszuführen": "auszufuhr", "auszufüllen": "auszufull", "auszug": "auszug", "auszüge": "auszug", "auszugeben": "auszugeb", "auszugehen": "auszugeh", "auszügen": "auszug", "auszuhalten": "auszuhalt", "auszuklagen": "auszuklag", "auszukneifen": "auszukneif", "auszukochen": "auszukoch", "auszukosten": "auszukost", "auszulachen": "auszulach", "auszulassen": "auszulass", "auszulöschen": "auszulosch", "auszumachen": "auszumach", "auszunutzen": "auszunutz", "auszupacken": "auszupack", "auszuputzen": "auszuputz", "auszureissen": "auszureiss", "auszureuten": "auszureut", "auszurichten": "auszuricht", "auszurotten": "auszurott", "auszurücken": "auszuruck", "auszurufen": "auszuruf", "auszuruhen": "auszuruh", "auszurüsten": "auszurust", "auszuschlagen": "auszuschlag", "auszuschliessen": "auszuschliess", "auszuschmücken": "auszuschmuck", "auszuschreiten": "auszuschreit", "auszusehen": "auszuseh", "auszusetzen": "auszusetz", "auszusinnen": "auszusinn", "auszuspannen": "auszuspann", "auszusperren": "auszusperr", "auszusprechen": "auszusprech", "auszustaffieren": "auszustaffi", "auszustossen": "auszustoss", "auszustrecken": "auszustreck", "auszuteilen": "auszuteil", "auszuweichen": "auszuweich", "auszuziehen": "auszuzieh", "auto": "auto", "autokratischen": "autokrat", "automatisch": "automat", "automobil": "automobil", "autonomie": "autonomi", "autor": "autor", "autorität": "autoritat", "autos": "autos", "autoverkäufen": "autoverkauf", "available": "availabl", "avancierte": "avanciert", "avanti": "avanti", "aven": "aven", "aversamur": "aversamur", "axt": "axt", "äxten": "axt", "aydin": "aydin", "b": "b", "baam": "baam", "baaselbieterdütsch": "baaselbieterdutsch", "babel": "babel", "babels": "babel", "baby": "baby", "babylon": "babylon", "babylonische": "babylon", "bacchanal": "bacchanal", "bach": "bach", "bache": "bach", "bäche": "bach", "bächen": "bach", "baches": "bach", "bachforellen": "bachforell", "bächlein": "bachlein", "bachs": "bach", "bachtal": "bachtal", "bachweiden": "bachweid", "bachwellen": "bachwell", "backbirnen": "backbirn", "bäckchen": "backch", "backe": "back", "backen": "back", "backenbärtchen": "backenbartch", "bäcker": "back", "backofen": "backof", "backsteinplatte": "backsteinplatt", "backtröge": "backtrog", "backwerk": "backwerk", "baco": "baco", "bad": "bad", "bademantels": "bademantel", "baden": "bad", "badeplatz": "badeplatz", "badepüppchen": "badepuppch", "badewanne": "badewann", "badische": "badisch", "bagatellwechseln": "bagatellwechseln", "bagels": "bagel", "bah": "bah", "bahn": "bahn", "bahnbrechenden": "bahnbrech", "bahnen": "bahn", "bahnhof": "bahnhof", "bahnhofes": "bahnhof", "bahnte": "bahnt", "bahrtuch": "bahrtuch", "bajonett": "bajonett", "balaenae": "balaena", "balance": "balanc", "bald": "bald", "baldige": "baldig", "balester": "bal", "balken": "balk", "balkone": "balkon", "balkonen": "balkon", "ball": "ball", "ballade": "ballad", "balles": "ball", "balsam": "balsam", "balsamfläschchen": "balsamflaschch", "band": "band", "bandapparat": "bandapparat", "bändchen": "bandch", "bande": "band", "bände": "band", "bandelier": "bandeli", "bandeliere": "bandeli", "banden": "band", "bänder": "band", "bändern": "band", "bandgerät": "bandgerat", "bändigen": "bandig", "bändigung": "bandig", "banditenähnlichen": "banditenahn", "bandschnippel": "bandschnippel", "bang": "bang", "bange": "bang", "bangen": "bang", "banger": "bang", "bangigkeit": "bangig", "bänglich": "banglich", "bank": "bank", "bankbeamte": "bankbeamt", "bankbeamten": "bankbeamt", "bankel": "bankel", "banken": "bank", "bänken": "bank", "bankett": "bankett", "bankgeschäft": "bankgeschaft", "bankhause": "bankhaus", "bankier": "banki", "bankiere": "banki", "bankiers": "banki", "bankiervereinigung": "bankierverein", "bankkonto": "bankkonto", "bankl": "bankl", "bänklein": "banklein", "banknote": "banknot", "bankratib": "bankratib", "bankraub": "bankraub", "bankräuber": "bankraub", "bankräuberin": "bankrauberin", "banküberfall": "bankuberfall", "banküberfällen": "bankuberfall", "bann": "bann", "bar": "bar", "bär": "bar", "barauslage": "barauslag", "barbaren": "barbar", "barbarischen": "barbar", "barbiergesellen": "barbiergesell", "bare": "bar", "baren": "bar", "bären": "bar", "bärenfell": "barenfell", "bärenschinken": "barenschink", "bärenstall": "barenstall", "bärentanz": "barentanz", "bares": "bar", "barfuss": "barfuss", "barfuß": "barfuss", "barg": "barg", "barhäuptig": "barhaupt", "barmherzig": "barmherz", "barmherziger": "barmherz", "barmherzigkeit": "barmherz", "barmherzigkeiten": "barmherz", "bars": "bar", "barsängerin": "barsangerin", "barsch": "barsch", "barschaft": "barschaft", "barsche": "barsch", "barsches": "barsch", "bart": "bart", "barte": "bart", "bartes": "bart", "barthaare": "barthaar", "barthel": "barthel", "bartholomaios": "bartholomaios", "bartstrahn": "bartstrahn", "bartwichse": "bartwichs", "baschans": "baschan", "bäschen": "basch", "base": "bas", "basel": "basel", "baselder": "baseld", "baseler": "basel", "baselland": "baselland", "basellandschäftler": "basellandschaftl", "basilisk": "basilisk", "basilisken": "basilisk", "basiliskeneier": "basiliskenei", "basis": "basis", "basler": "basl", "bass": "bass", "bassewitz": "bassewitz", "bassgeige": "bassgeig", "bassgeigenkonzert": "bassgeigenkonzert", "bassgeiger": "bassgeig", "bassstimme": "bassstimm", "baßstimme": "bassstimm", "bast": "bast", "basteln": "basteln", "bastelten": "bastelt", "basthaar": "basthaar", "bat": "bat", "baten": "bat", "bath": "bath", "batley": "batley", "batterie": "batteri", "batzen": "batz", "bau": "bau", "bauamtsleiter": "bauamtsleit", "bauart": "bauart", "bauch": "bauch", "bauche": "bauch", "bäuchen": "bauch", "bauches": "bauch", "bauchflasche": "bauchflasch", "bäuchlein": "bauchlein", "bauchschmerzen": "bauchschmerz", "bauchwitz": "bauchwitz", "baudenweibe": "baudenweib", "bauen": "bau", "bauer": "bau", "bäuerin": "bauerin", "bäuerinnen": "bauerinn", "bäuerlein": "bauerlein", "bäuerliche": "bau", "bäuerlichen": "bau", "bäuerlicher": "bau", "bauern": "bau", "bauerngehöftes": "bauerngehoft", "bauernhand": "bauernhand", "bauernhause": "bauernhaus", "bauernhof": "bauernhof", "bauernhöfe": "bauernhof", "bauernklotzes": "bauernklotz", "bauernknecht": "bauernknecht", "bauernmadl": "bauernmadl", "bauernpack": "bauernpack", "bauernregeln": "bauernregeln", "bauernsohn": "bauernsohn", "bauernstube": "bauernstub", "bauernwirt": "bauernwirt", "bauers": "bau", "bauersleute": "bauersleut", "bauersmann": "bauersmann", "bauerssohn": "bauerssohn", "baues": "bau", "bauet": "bauet", "bauete": "bauet", "baufälliges": "baufall", "baulichkeiten": "baulich", "baum": "baum", "baumast": "baumast", "baumblätter": "baumblatt", "bäumchen": "baumch", "baume": "baum", "bäume": "baum", "baumeln": "baumeln", "baumelnd": "baumelnd", "baumelte": "baumelt", "bäumen": "baum", "baumes": "baum", "baumgespenster": "baumgespen", "baumhöhe": "baumhoh", "baumklötze": "baumklotz", "baumknospen": "baumknosp", "baumstamm": "baumstamm", "baumstamme": "baumstamm", "baumstöcke": "baumstock", "baumstumpf": "baumstumpf", "baumwipfel": "baumwipfel", "baumwipfeln": "baumwipfeln", "baumwolle": "baumwoll", "baumwollene": "baumwoll", "baumwurzel": "baumwurzel", "bäurin": "baurin", "baut": "baut", "baute": "baut", "bauten": "baut", "bauverständiger": "bauverstand", "bauwerk": "bauwerk", "bauz": "bauz", "bayer": "bay", "bayerischer": "bayer", "bayern": "bay", "bayers": "bay", "baz": "baz", "bdellium": "bdellium", "be": "be", "bea": "bea", "beabsichtige": "beabsicht", "beabsichtigen": "beabsicht", "beabsichtigt": "beabsichtigt", "beabsichtigte": "beabsichtigt", "beabsichtigten": "beabsichtigt", "beachte": "beacht", "beachten": "beacht", "beachtet": "beachtet", "beachtete": "beachtet", "beachteten": "beachtet", "beachtung": "beachtung", "beamte": "beamt", "beamten": "beamt", "beamtenschaft": "beamtenschaft", "beamtenstellen": "beamtenstell", "beamtenwelt": "beamtenwelt", "beamter": "beamt", "beängstigt": "beangstigt", "beängstigung": "beangstig", "beanstanden": "beanstand", "beantworten": "beantwort", "beantwortete": "beantwortet", "beantwortung": "beantwort", "bearbeiten": "bearbeit", "bearbeitend": "bearbeit", "bearbeitet": "bearbeitet", "bearbeitung": "bearbeit", "beatrix": "beatrix", "beaufsichtigen": "beaufsicht", "beaufsichtigungsrecht": "beaufsichtigungsrecht", "beauftragen": "beauftrag", "beauftragt": "beauftragt", "beauftragte": "beauftragt", "beauftragter": "beauftragt", "bebauen": "bebau", "bebaut": "bebaut", "bebaute": "bebaut", "bebauung": "bebau", "beben": "beb", "bebend": "bebend", "beblühte": "bebluht", "bebte": "bebt", "becher": "bech", "becken": "beck", "bedacht": "bedacht", "bedachte": "bedacht", "bedachtem": "bedacht", "bedächtig": "bedacht", "bedachtlosen": "bedachtlos", "bedachtsam": "bedachtsam", "bedanke": "bedank", "bedanken": "bedank", "bedankt": "bedankt", "bedankten": "bedankt", "bedarf": "bedarf", "bedauere": "bedau", "bedauerlich": "bedau", "bedauern": "bedau", "bedauernswerter": "bedauernswert", "bedauerte": "bedauert", "bedecken": "bedeck", "bedeckt": "bedeckt", "bedeckte": "bedeckt", "bedeckten": "bedeckt", "bedeckung": "bedeck", "bedenke": "bedenk", "bedenken": "bedenk", "bedenkendie": "bedenkendi", "bedenklich": "bedenk", "bedenkliche": "bedenk", "bedenklichen": "bedenk", "bedenklicher": "bedenk", "bedenklichsten": "bedenk", "bedenkt": "bedenkt", "bedeute": "bedeut", "bedeuten": "bedeut", "bedeutend": "bedeut", "bedeutende": "bedeut", "bedeutenden": "bedeut", "bedeutendsten": "bedeut", "bedeutet": "bedeutet", "bedeutete": "bedeutet", "bedeuteten": "bedeutet", "bedeutsam": "bedeutsam", "bedeutsames": "bedeutsam", "bedeutsamkeit": "bedeutsam", "bedeutsamsten": "bedeutsam", "bedeutung": "bedeut", "bedeutungen": "bedeut", "bedeutungslos": "bedeutungslos", "bedeutungslose": "bedeutungslos", "bedeutungsvollen": "bedeutungsvoll", "bediene": "bedi", "bedienen": "bedi", "bedient": "bedient", "bediente": "bedient", "bedienten": "bedient", "bedienung": "bedien", "bedinge": "beding", "bedingt": "bedingt", "bedingte": "bedingt", "bedingten": "bedingt", "bedingter": "bedingt", "bedingung": "beding", "bedingungen": "beding", "bedrängen": "bedrang", "bedrängt": "bedrangt", "bedrängte": "bedrangt", "bedrohete": "bedrohet", "bedroht": "bedroht", "bedrohung": "bedroh", "bedrücken": "bedruck", "bedrückende": "bedruck", "bedrückt": "bedruckt", "bedrückten": "bedruckt", "beduinen": "beduin", "bedünken": "bedunk", "bedünkte": "bedunkt", "bedürfe": "bedurf", "bedürfen": "bedurf", "bedürfnis": "bedurfnis", "bedürfnisse": "bedurfnis", "bedürfnissen": "bedurfnis", "bedürfnisses": "bedurfnis", "bedurfte": "bedurft", "bedurften": "bedurft", "bedürftig": "bedurft", "bedürftige": "bedurft", "bedürftiger": "bedurft", "bedürftiges": "bedurft", "beeile": "beeil", "beeilen": "beeil", "beeilte": "beeilt", "beeilten": "beeilt", "beeindruckendsten": "beeindruck", "beeindruckt": "beeindruckt", "beeindruckte": "beeindruckt", "beeinflusst": "beeinflusst", "beeinflußt": "beeinflusst", "beeinträchtigen": "beeintracht", "beenden": "beend", "beendet": "beendet", "beendigt": "beendigt", "beendigung": "beendig", "beengte": "beengt", "beengung": "beengung", "beer": "beer", "beerchen": "beerch", "beerdigt": "beerdigt", "beerdigungsinstitutes": "beerdigungsinstitut", "beere": "beer", "beeren": "beer", "beerenkraut": "beerenkraut", "beerensträucher": "beerenstrauch", "beerensträuchern": "beerenstrauch", "beerscheba": "beerscheba", "beet": "beet", "beete": "beet", "beethovens": "beethov", "befähigt": "befahigt", "befahl": "befahl", "befahlen": "befahl", "befällt": "befallt", "befand": "befand", "befanden": "befand", "befänden": "befand", "befangen": "befang", "befangenheit": "befang", "befassen": "befass", "befassend": "befass", "befassete": "befasset", "befasst": "befasst", "befehden": "befehd", "befehl": "befehl", "befehle": "befehl", "befehlen": "befehl", "befehls": "befehl", "befehlsartig": "befehlsart", "befehlshaber": "befehlshab", "befehlt": "befehlt", "befestigen": "befest", "befestigt": "befestigt", "befestigte": "befestigt", "befestigten": "befestigt", "befiel": "befiel", "befinde": "befind", "befinden": "befind", "befindet": "befindet", "befindliche": "befind", "befindlichen": "befind", "befleckt": "befleckt", "befleissigt": "befleissigt", "befleissigte": "befleissigt", "beflissen": "befliss", "beflügeltes": "beflugelt", "befohlen": "befohl", "befolgen": "befolg", "befolgt": "befolgt", "befolgte": "befolgt", "befolgten": "befolgt", "befolgung": "befolg", "beförderlich": "beford", "befördern": "beford", "befördert": "befordert", "beförderung": "beforder", "beförderungsmittel": "beforderungsmittel", "befrachten": "befracht", "befrage": "befrag", "befragen": "befrag", "befragt": "befragt", "befragungen": "befrag", "befreie": "befrei", "befreien": "befrei", "befreit": "befreit", "befreite": "befreit", "befreiung": "befreiung", "befremden": "befremd", "befremdet": "befremdet", "befreundet": "befreundet", "befriedigen": "befried", "befriedigt": "befriedigt", "befriedigte": "befriedigt", "befriedigten": "befriedigt", "befriedigung": "befried", "befristet": "befristet", "befruchten": "befrucht", "befruchtet": "befruchtet", "befruchtung": "befrucht", "befruchtungen": "befrucht", "befugnis": "befugnis", "befugnisse": "befugnis", "befugt": "befugt", "befühlt": "befuhlt", "befühlten": "befuhlt", "befunden": "befund", "befürchten": "befurcht", "befürchtend": "befurcht", "befürchtete": "befurchtet", "befürchteten": "befurchtet", "befürchtung": "befurcht", "befürchtungen": "befurcht", "begab": "begab", "begaben": "begab", "begabt": "begabt", "begabteste": "begabt", "begangen": "begang", "begangene": "begang", "begangenen": "begang", "begann": "begann", "begannen": "begann", "begeben": "begeb", "begebend": "begeb", "begebenheit": "begeb", "begebenheiten": "begeb", "begegnen": "begegn", "begegnet": "begegnet", "begegnete": "begegnet", "begegneten": "begegnet", "begegnung": "begegn", "begegnungen": "begegn", "begehen": "begeh", "begehre": "begehr", "begehren": "begehr", "begehrens": "begehr", "begehrenswert": "begehrenswert", "begehret": "begehret", "begehrlichkeit": "begehr", "begehrt": "begehrt", "begehrte": "begehrt", "begehrten": "begehrt", "begehrung": "begehr", "begehrungen": "begehr", "begehrungs": "begehr", "begehrungsvermögen": "begehrungsvermog", "begehrungsvermögens": "begehrungsvermog", "begeht": "begeht", "begeistert": "begeistert", "begeisterung": "begeister", "begeisterungsstürmen": "begeisterungssturm", "begib": "begib", "begibt": "begibt", "begiedren": "begiedr", "begierde": "begierd", "begierden": "begierd", "begierig": "begier", "begierigen": "begier", "begieriger": "begier", "begiessen": "begiess", "begine": "begin", "beging": "beging", "beginn": "beginn", "beginne": "beginn", "beginnen": "beginn", "beginnt": "beginnt", "beglaubigen": "beglaub", "beglaubigt": "beglaubigt", "beglaubigte": "beglaubigt", "begleiten": "begleit", "begleitend": "begleit", "begleiter": "begleit", "begleitern": "begleit", "begleiters": "begleit", "begleitet": "begleitet", "begleitete": "begleitet", "begleiteten": "begleitet", "begleitherren": "begleitherr", "begleitung": "begleit", "beglücken": "begluck", "beglückte": "begluckt", "beglückwünschen": "begluckwunsch", "begnüge": "begnug", "begnügt": "begnugt", "begnügte": "begnugt", "begonnen": "begonn", "begoss": "begoss", "begossenen": "begoss", "begraben": "begrab", "begräbnis": "begrabnis", "begräbnisse": "begrabnis", "begrasten": "begrast", "begreif": "begreif", "begreife": "begreif", "begreifen": "begreif", "begreiflich": "begreif", "begreiflichen": "begreif", "begreiflicher": "begreif", "begreiflichkeit": "begreif", "begreift": "begreift", "begrenzen": "begrenz", "begrenzt": "begrenzt", "begrenzte": "begrenzt", "begrenztheit": "begrenzt", "begrenzung": "begrenz", "begriff": "begriff", "begriffe": "begriff", "begriffen": "begriff", "begriffener": "begriff", "begriffenes": "begriff", "begriffes": "begriff", "begriffs": "begriff", "begriffsstutziger": "begriffsstutz", "begriffsverhältnisse": "begriffsverhaltnis", "begrub": "begrub", "begruben": "begrub", "begründe": "begrund", "begründen": "begrund", "begründendem": "begrund", "begründendes": "begrund", "begründet": "begrundet", "begründete": "begrundet", "begründeten": "begrundet", "begründung": "begrund", "begründungen": "begrund", "begrüssen": "begruss", "begrüßen": "begruss", "begrüssend": "begruss", "begrüssenden": "begruss", "begrüsst": "begrusst", "begrüßt": "begrusst", "begrüsste": "begrusst", "begrüssten": "begrusst", "begrüssung": "begruss", "begrüßung": "begruss", "begrüssungsknicks": "begrussungsknick", "begucken": "beguck", "beguckten": "beguckt", "begünstigen": "begunst", "begünstigt": "begunstigt", "begünstigte": "begunstigt", "begünstigung": "begunst", "begürtet": "begurtet", "begürtete": "begurtet", "begüterte": "begutert", "behaarung": "behaar", "behaftet": "behaftet", "behagen": "behag", "behaglich": "behag", "behaglicher": "behag", "behagliches": "behag", "behaglichkeit": "behag", "behagte": "behagt", "behagten": "behagt", "behält": "behalt", "behalte": "behalt", "behalten": "behalt", "behälter": "behalt", "behältern": "behalt", "behaltet": "behaltet", "behältnis": "behaltnis", "behältnisse": "behaltnis", "behandeln": "behandeln", "behandelt": "behandelt", "behandelte": "behandelt", "behandelten": "behandelt", "behandle": "behandl", "behandlung": "behandl", "behängt": "behangt", "beharre": "beharr", "beharren": "beharr", "beharrlich": "beharr", "beharrlichkeit": "beharr", "beharrt": "beharrt", "beharrte": "beharrt", "beharrungsvermögen": "beharrungsvermog", "behauchten": "behaucht", "behaupte": "behaupt", "behaupten": "behaupt", "behauptend": "behaupt", "behauptet": "behauptet", "behauptete": "behauptet", "behaupteten": "behauptet", "behauptung": "behaupt", "behauptungen": "behaupt", "behausung": "behaus", "behelfen": "behelf", "behende": "behend", "beherbergen": "beherberg", "beherbergte": "beherbergt", "beherrschen": "beherrsch", "beherrschend": "beherrsch", "beherrschenden": "beherrsch", "beherrscht": "beherrscht", "beherrschte": "beherrscht", "beherrschung": "beherrsch", "beherzten": "beherzt", "beherzter": "beherzt", "behielt": "behielt", "behilflich": "behilf", "behindern": "behind", "behindert": "behindert", "behörde": "behord", "behörden": "behord", "behuf": "behuf", "behufe": "behuf", "behufs": "behuf", "behüt": "behut", "behüte": "behut", "behüten": "behut", "behütet": "behutet", "behutsam": "behutsam", "behutsames": "behutsam", "bei": "bei", "beibehalten": "beibehalt", "beibehaltender": "beibehalt", "beibrachte": "beibracht", "beibringen": "beibring", "beichte": "beicht", "beichtete": "beichtet", "beichtstuhl": "beichtstuhl", "beide": "beid", "beiden": "beid", "beider": "beid", "beiderlei": "beiderlei", "beiderseitig": "beiderseit", "beiderseits": "beiderseit", "beides": "beid", "beieinander": "beieinand", "beifall": "beifall", "beifälligem": "beifall", "beifälliges": "beifall", "beifallklatschen": "beifallklatsch", "beifalls": "beifall", "beifallsgeschrei": "beifallsgeschrei", "beifügen": "beifug", "beifügten": "beifugt", "beigebracht": "beigebracht", "beigefallen": "beigefall", "beigefügt": "beigefugt", "beigegeben": "beigegeb", "beigegebene": "beigegeb", "beigegebenes": "beigegeb", "beigelegt": "beigelegt", "beigemessen": "beigemess", "beigemischt": "beigemischt", "beigeordnet": "beigeordnet", "beigesellen": "beigesell", "beigesellet": "beigesellet", "beigesellt": "beigesellt", "beigesellte": "beigesellt", "beigesellten": "beigesellt", "beigesellung": "beigesell", "beigesetzt": "beigesetzt", "beigesteckt": "beigesteckt", "beigestimmt": "beigestimmt", "beigewohnt": "beigewohnt", "beihilfe": "beihilf", "beikommen": "beikomm", "beile": "beil", "beilege": "beileg", "beilegen": "beileg", "beilegt": "beilegt", "beilegte": "beilegt", "beilegung": "beileg", "beileib": "beileib", "beiliegend": "beilieg", "beim": "beim", "beimessen": "beimess", "beimischung": "beimisch", "bein": "bein", "beinah": "beinah", "beinahe": "beinah", "beinamen": "beinam", "beinchen": "beinch", "beinchenende": "beinchen", "beincheneroberung": "beinchenerober", "beinchengeschichte": "beinchengeschicht", "beinchens": "beinch", "beine": "bein", "beinen": "bein", "beines": "bein", "beinkleider": "beinkleid", "beinkleidern": "beinkleid", "beinwerks": "beinwerk", "beirrte": "beirrt", "beisammen": "beisamm", "beisatz": "beisatz", "beiseit": "beiseit", "beiseite": "beiseit", "beispiel": "beispiel", "beispiele": "beispiel", "beispielen": "beispiel", "beispielsweise": "beispielsweis", "beissbares": "beissbar", "beissen": "beiss", "beißen": "beiss", "beissend": "beissend", "beißend": "beissend", "beissenden": "beissend", "beisst": "beisst", "beißt": "beisst", "beistand": "beistand", "beistehen": "beisteh", "beisteher": "beisteh", "beistimmendes": "beistimm", "beistimmt": "beistimmt", "beistimmte": "beistimmt", "beistimmung": "beistimm", "beitrag": "beitrag", "beitragen": "beitrag", "beitritt": "beitritt", "beitritte": "beitritt", "beiwohnen": "beiwohn", "beizeiten": "beizeit", "beizte": "beizt", "beizubringen": "beizubring", "beizulegen": "beizuleg", "beizuspringen": "beizuspring", "beizustehen": "beizusteh", "beizusteuern": "beizusteu", "beizutragen": "beizutrag", "beizutreiben": "beizutreib", "beizutreten": "beizutret", "beizuwohnen": "beizuwohn", "bejahend": "bejah", "bejahrten": "bejahrt", "bejahung": "bejah", "bekam": "bekam", "bekäme": "bekam", "bekamen": "bekam", "bekämen": "bekam", "bekämpfen": "bekampf", "bekämpft": "bekampft", "bekämpfung": "bekampf", "bekannt": "bekannt", "bekannte": "bekannt", "bekannten": "bekannt", "bekanntgeworden": "bekanntgeword", "bekanntlich": "bekannt", "bekanntschaft": "bekanntschaft", "bekanntschaften": "bekanntschaft", "bekehre": "bekehr", "bekehren": "bekehr", "bekehrer": "bekehr", "bekehret": "bekehret", "bekehrt": "bekehrt", "bekehrten": "bekehrt", "bekehrung": "bekehr", "bekenne": "bekenn", "bekennen": "bekenn", "bekennt": "bekennt", "bekenntnis": "bekenntnis", "bekenntnisse": "bekenntnis", "bekenntnissen": "bekenntnis", "bekir": "bekir", "beklagen": "beklag", "beklagenswert": "beklagenswert", "beklagt": "beklagt", "beklagte": "beklagt", "beklebt": "beklebt", "bekleiden": "bekleid", "bekleidet": "bekleidet", "bekleidete": "bekleidet", "bekleidung": "bekleid", "beklemmung": "beklemm", "beklommen": "beklomm", "beklommenheit": "beklomm", "bekomm": "bekomm", "bekomme": "bekomm", "bekommen": "bekomm", "bekommst": "bekomm", "bekommt": "bekommt", "beköstigung": "bekost", "bekräftigt": "bekraftigt", "bekräftigung": "bekraft", "bekräftigungen": "bekraft", "bekränzt": "bekranzt", "bekreuzte": "bekreuzt", "bekreuzten": "bekreuzt", "bekriegten": "bekriegt", "bekümmern": "bekumm", "bekümmert": "bekummert", "bekümmerte": "bekummert", "beladen": "belad", "beladenes": "belad", "belagern": "belag", "belagert": "belagert", "belagerung": "belager", "belanglos": "belanglos", "belangloseste": "belanglos", "belangt": "belangt", "belassen": "belass", "belastend": "belast", "belastet": "belastet", "belastete": "belastet", "belästigen": "belast", "belästigt": "belastigt", "belästigte": "belastigt", "belastung": "belast", "belaubte": "belaubt", "belaubter": "belaubt", "belebbar": "belebbar", "belebe": "beleb", "beleben": "beleb", "belebende": "beleb", "belebt": "belebt", "belebte": "belebt", "belebtes": "belebt", "belege": "beleg", "belegen": "beleg", "belegexemplar": "belegexemplar", "belegt": "belegt", "belehren": "belehr", "belehrt": "belehrt", "belehrte": "belehrt", "belehrung": "belehr", "beleibt": "beleibt", "beleibtheit": "beleibt", "beleidigen": "beleid", "beleidigend": "beleid", "beleidigender": "beleid", "beleidigendste": "beleid", "beleidigt": "beleidigt", "beleidigte": "beleidigt", "beleidigten": "beleidigt", "beleidigung": "beleid", "beleidigungen": "beleid", "beleidung": "beleid", "beleuchtet": "beleuchtet", "beleuchtete": "beleuchtet", "beleuchteten": "beleuchtet", "beleuchtung": "beleucht", "belial": "belial", "belieben": "belieb", "beliebig": "belieb", "beliebige": "belieb", "beliebigen": "belieb", "beliebt": "beliebt", "beliebte": "beliebt", "beliebten": "beliebt", "beliefen": "belief", "bellen": "bell", "bellkommando": "bellkommando", "bellprobe": "bellprob", "bellstrophe": "bellstroph", "bellte": "bellt", "belobt": "belobt", "belobte": "belobt", "belog": "belog", "belohnen": "belohn", "belohnt": "belohnt", "belohnung": "belohn", "belud": "belud", "beluden": "belud", "belüftung": "beluft", "belügst": "belug", "belustigen": "belust", "belustigt": "belustigt", "belustigten": "belustigt", "belustigung": "belust", "bemächtigen": "bemacht", "bemalt": "bemalt", "bemalte": "bemalt", "bemalten": "bemalt", "bemaltes": "bemalt", "bemassen": "bemass", "bemerke": "bemerk", "bemerken": "bemerk", "bemerklich": "bemerk", "bemerkt": "bemerkt", "bemerkte": "bemerkt", "bemerkten": "bemerkt", "bemerkung": "bemerk", "bemerkungen": "bemerk", "bemesset": "bemesset", "bemitleiden": "bemitleid", "bemoosten": "bemoost", "bemühen": "bemuh", "bemühet": "bemuhet", "bemüht": "bemuht", "bemühte": "bemuht", "bemühung": "bemuh", "bemühungen": "bemuh", "ben": "ben", "benachbarte": "benachbart", "benachbarten": "benachbart", "benahm": "benahm", "benahmen": "benahm", "benannt": "benannt", "benannten": "benannt", "benediktinerpater": "benediktinerpat", "benediktus": "benediktus", "benefizanlass": "benefizanlass", "benehmen": "benehm", "benehmens": "benehm", "beneiden": "beneid", "beneidenswürdige": "beneidenswurd", "beneidet": "beneidet", "beneidete": "beneidet", "benennen": "benenn", "benennens": "benenn", "benennung": "benenn", "benennungen": "benenn", "benetzt": "benetzt", "benetzte": "benetzt", "benieselt": "benieselt", "benimm": "benimm", "benimmt": "benimmt", "benjamin": "benjamin", "benkert": "benkert", "benommen": "benomm", "benötigen": "benot", "benötigt": "benotigt", "benötigte": "benotigt", "benötigten": "benotigt", "benutzen": "benutz", "benutzt": "benutzt", "benutzte": "benutzt", "benützte": "benutzt", "benutzten": "benutzt", "benützten": "benutzt", "benützung": "benutz", "beobachte": "beobacht", "beobachten": "beobacht", "beobachtens": "beobacht", "beobachter": "beobacht", "beobachtet": "beobachtet", "beobachtete": "beobachtet", "beobachteten": "beobachtet", "beobachtung": "beobacht", "beobachtungen": "beobacht", "beordert": "beordert", "bepackt": "bepackt", "bepflanzt": "bepflanzt", "bequem": "bequ", "bequeme": "bequem", "bequemen": "bequem", "bequemer": "bequem", "bequemes": "bequem", "bequemliche": "bequem", "bequemlichkeit": "bequem", "bequemlichkeiten": "bequem", "bequemte": "bequemt", "beranger": "berang", "beraten": "berat", "berater": "berat", "beratschlagen": "beratschlag", "beratschlagt": "beratschlagt", "beratung": "berat", "beratungen": "berat", "beratungsstelle": "beratungsstell", "beratungsstellen": "beratungsstell", "berauben": "beraub", "beraubt": "beraubt", "beraubte": "beraubt", "beraubten": "beraubt", "beraubter": "beraubt", "beraubung": "beraub", "berauscht": "berauscht", "berchtesgaden": "berchtesgad", "berchtesgadenerland": "berchtesgadenerland", "berechnet": "berechnet", "berechnung": "berechn", "berechtigen": "berecht", "berechtigt": "berechtigt", "berechtigung": "berecht", "bereden": "bered", "beredet": "beredet", "beredete": "beredet", "beredeten": "beredet", "beredsamkeit": "beredsam", "beredt": "beredt", "beredten": "beredt", "beredteste": "beredt", "beredung": "bered", "beredungen": "bered", "beredungsglauben": "beredungsglaub", "beredungsglaubens": "beredungsglaub", "beredungswahrheit": "beredungswahr", "bereffend": "bereff", "bereich": "bereich", "bereichern": "bereich", "bereichert": "bereichert", "bereicherten": "bereichert", "bereicherung": "bereicher", "bereiften": "bereift", "bereit": "bereit", "bereiten": "bereit", "bereitet": "bereitet", "bereitete": "bereitet", "bereiteten": "bereitet", "bereitlagen": "bereitlag", "bereitliege": "bereitlieg", "bereits": "bereit", "bereitschaft": "bereitschaft", "bereitstand": "bereitstand", "bereitstellen": "bereitstell", "bereitung": "bereit", "bereitwillig": "bereitwill", "bereitwilligkeit": "bereitwill", "bereue": "bereu", "bereust": "bereust", "bereut": "bereut", "bereute": "bereut", "berg": "berg", "bergamsel": "bergamsel", "berge": "berg", "bergen": "berg", "bergend": "bergend", "berges": "berg", "bergfeuer": "bergfeu", "bergfeuern": "bergfeu", "berggeist": "berggeist", "berggipfel": "berggipfel", "berggipfels": "berggipfel", "berghalde": "berghald", "berghang": "berghang", "bergherz": "bergherz", "berghöhlen": "berghohl", "bergier": "bergi", "bergigen": "bergig", "bergkessel": "bergkessel", "bergkräuter": "bergkraut", "bergland": "bergland", "berglüften": "bergluft", "bergmann": "bergmann", "bergnase": "bergnas", "bergnebel": "bergnebel", "bergraben": "bergrab", "bergschatten": "bergschatt", "bergschenke": "bergschenk", "bergschlucht": "bergschlucht", "bergschluchten": "bergschlucht", "bergstämmen": "bergstamm", "bergsteiger": "bergsteig", "bergstimmen": "bergstimm", "bergstock": "bergstock", "bergwald": "bergwald", "bergwaldes": "bergwald", "bergwand": "bergwand", "bergwasser": "bergwass", "bergweg": "bergweg", "bergwege": "bergweg", "bergwegen": "bergweg", "bergwellen": "bergwell", "bergwerk": "bergwerk", "bergwiesen": "bergwies", "bergwind": "bergwind", "bergzinne": "bergzinn", "berhren": "berhr", "bericht": "bericht", "berichte": "bericht", "berichten": "bericht", "berichtet": "berichtet", "berichtete": "berichtet", "berichtigung": "bericht", "beriechen": "beriech", "berief": "berief", "berieselt": "berieselt", "berieten": "beriet", "berlin": "berlin", "berliner": "berlin", "berlinfergus": "berlinfergus", "bern": "bern", "bernan": "bernan", "bernard": "bernard", "berner": "bern", "bernischen": "bernisch", "berns": "bern", "bernstein": "bernstein", "bernwas": "bernwas", "berthold": "berthold", "berücken": "beruck", "berücksichtigen": "berucksicht", "berücksichtigt": "berucksichtigt", "berückt": "beruckt", "beruf": "beruf", "berufen": "beruf", "berufenen": "beruf", "beruflichen": "beruf", "berufsabsichten": "berufsabsicht", "berufsgenossen": "berufsgenoss", "berufsmäßigen": "berufsmass", "berufsmäßiger": "berufsmass", "berufsschulen": "berufsschul", "berufssoldat": "berufssoldat", "berufswunsch": "berufswunsch", "berufung": "beruf", "beruhe": "beruh", "beruhen": "beruh", "beruhenden": "beruh", "beruhet": "beruhet", "beruhigen": "beruh", "beruhigend": "beruh", "beruhigenden": "beruh", "beruhigt": "beruhigt", "beruhigte": "beruhigt", "beruhigten": "beruhigt", "beruhigung": "beruh", "beruhigungsmittel": "beruhigungsmittel", "berühmen": "beruhm", "berühmt": "beruhmt", "berühmte": "beruhmt", "berühmten": "beruhmt", "berühmtesten": "beruhmt", "berühmtheit": "beruhmt", "berühre": "beruhr", "berühren": "beruhr", "berührende": "beruhr", "berührt": "beruhrt", "berührte": "beruhrt", "berührten": "beruhrt", "berührung": "beruhr", "beruht": "beruht", "beruhte": "beruht", "berusstem": "berusst", "besäen": "besa", "besäest": "besa", "besäet": "besaet", "besagt": "besagt", "besagte": "besagt", "besagtem": "besagt", "besagten": "besagt", "besagtes": "besagt", "besah": "besah", "besahen": "besah", "besamen": "besam", "besamende": "besam", "besamt": "besamt", "besänftigen": "besanft", "besänftigt": "besanftigt", "besänftigte": "besanftigt", "besänftigung": "besanft", "besann": "besann", "besannen": "besann", "besass": "besass", "besaß": "besass", "besässe": "besass", "besassen": "besass", "besaßen": "besass", "besät": "besat", "besaufen": "besauf", "beschädigen": "beschad", "beschädigt": "beschadigt", "beschädigte": "beschadigt", "beschädigten": "beschadigt", "beschaffen": "beschaff", "beschaffenen": "beschaff", "beschaffenheit": "beschaff", "beschäftige": "beschaft", "beschäftigen": "beschaft", "beschäftigt": "beschaftigt", "beschäftigte": "beschaftigt", "beschäftigten": "beschaftigt", "beschäftigter": "beschaftigt", "beschäftigung": "beschaft", "beschämen": "bescham", "beschämt": "beschamt", "beschämte": "beschamt", "beschattet": "beschattet", "beschaulich": "beschaulich", "beschaulichen": "beschaulich", "beschaulichkeit": "beschaulich", "beschaust": "beschaust", "beschaute": "beschaut", "bescheid": "bescheid", "bescheiden": "bescheid", "bescheidend": "bescheid", "bescheidenem": "bescheid", "bescheidenen": "bescheid", "bescheidener": "bescheid", "bescheidenere": "bescheiden", "bescheidenes": "bescheid", "bescheidenheit": "bescheid", "bescheinen": "beschein", "beschenkt": "beschenkt", "bescherung": "bescher", "beschieden": "beschied", "beschien": "beschi", "beschienenen": "beschien", "beschimmelten": "beschimmelt", "beschimpft": "beschimpft", "beschimpfte": "beschimpft", "beschimpfung": "beschimpf", "beschirmt": "beschirmt", "beschirmung": "beschirm", "beschlag": "beschlag", "beschlagnahmt": "beschlagnahmt", "beschleunigen": "beschleun", "beschleunigt": "beschleunigt", "beschleunigte": "beschleunigt", "beschleunigung": "beschleun", "beschlich": "beschlich", "beschliessen": "beschliess", "beschloss": "beschloss", "beschloß": "beschloss", "beschlossen": "beschloss", "beschlossenen": "beschloss", "beschluss": "beschluss", "beschmiert": "beschmiert", "beschmierte": "beschmiert", "beschneiden": "beschneid", "beschneidung": "beschneid", "beschneit": "beschneit", "beschnitt": "beschnitt", "beschnitten": "beschnitt", "beschnüffelte": "beschnuffelt", "beschönigen": "beschon", "beschönigt": "beschonigt", "beschränken": "beschrank", "beschränkt": "beschrankt", "beschränkte": "beschrankt", "beschränkteste": "beschrankt", "beschränktheit": "beschrankt", "beschreiben": "beschreib", "beschreibt": "beschreibt", "beschreibung": "beschreib", "beschrieb": "beschrieb", "beschriebe": "beschrieb", "beschrieben": "beschrieb", "beschriebene": "beschrieb", "beschriebenen": "beschrieb", "beschritt": "beschritt", "beschuhte": "beschuht", "beschuldigungen": "beschuld", "beschützen": "beschutz", "beschützer": "beschutz", "beschützern": "beschutz", "beschützt": "beschutzt", "beschweige": "beschweig", "beschweigen": "beschweig", "beschwer": "beschw", "beschwerden": "beschwerd", "beschweren": "beschw", "beschwerliche": "beschw", "beschwerlichkeiten": "beschwer", "beschwert": "beschwert", "beschwerte": "beschwert", "beschwerung": "beschwer", "beschwichtigen": "beschwicht", "beschwor": "beschwor", "beschworen": "beschwor", "beschwören": "beschwor", "beschwörer": "beschwor", "beschwörung": "beschwor", "beschwörungen": "beschwor", "beseelt": "beseelt", "beseelte": "beseelt", "beseeltes": "beseelt", "besehen": "beseh", "besehn": "besehn", "beseitigen": "beseit", "beseitigt": "beseitigt", "beseitigung": "beseit", "besen": "bes", "besens": "bes", "besenstiel": "besenstiel", "besessen": "besess", "besessener": "besess", "besetzen": "besetz", "besetzerkneipen": "besetzerkneip", "besetzerleben": "besetzerleb", "besetzt": "besetzt", "besetzten": "besetzt", "besichtigen": "besicht", "besichtigung": "besicht", "besiegen": "besieg", "besiegt": "besiegt", "besiegte": "besiegt", "besinne": "besinn", "besinnen": "besinn", "besinnt": "besinnt", "besinnung": "besinn", "besinnungslose": "besinnungslos", "besitz": "besitz", "besitze": "besitz", "besitzen": "besitz", "besitzer": "besitz", "besitzerin": "besitzerin", "besitzes": "besitz", "besitzlustige": "besitzlust", "besitzstände": "besitzstand", "besitzt": "besitzt", "besitztum": "besitztum", "besitztume": "besitztum", "besitztümer": "besitztum", "besitzungen": "besitz", "besoldet": "besoldet", "besondere": "besond", "besonderem": "besond", "besonderen": "besond", "besonderer": "besond", "besonderes": "besond", "besonderheiten": "besond", "besondern": "besond", "besonders": "besond", "besonnen": "besonn", "besonnener": "besonn", "besonnenheit": "besonn", "besonnten": "besonnt", "besonnter": "besonnt", "besorgen": "besorg", "besorgnis": "besorgnis", "besorgnisse": "besorgnis", "besorgt": "besorgt", "besorgte": "besorgt", "besorgten": "besorgt", "besorgter": "besorgt", "besorgtes": "besorgt", "bespannt": "bespannt", "bespanntes": "bespannt", "besponnen": "besponn", "besprechen": "besprech", "besprechungen": "besprech", "besprengung": "bespreng", "besprochen": "besproch", "besprochene": "besproch", "besser": "bess", "bessere": "bess", "besseren": "bess", "besserer": "bess", "besseres": "bess", "bessern": "bess", "bessers": "bess", "bessert": "bessert", "besserte": "bessert", "besserung": "besser", "besserungen": "besser", "besserungswerk": "besserungswerk", "best": "best", "bestand": "bestand", "bestände": "bestand", "bestanden": "bestand", "beständig": "bestand", "beständiger": "bestand", "beständiges": "bestand", "bestandstück": "bestandstuck", "bestandstücks": "bestandstuck", "bestandteile": "bestandteil", "bestandteilen": "bestandteil", "bestani": "bestani", "bestärken": "bestark", "bestärkt": "bestarkt", "bestärkte": "bestarkt", "bestärkung": "bestark", "bestätigen": "bestat", "bestätigend": "bestat", "bestätigenden": "bestat", "bestätigt": "bestatigt", "bestätigte": "bestatigt", "bestätigten": "bestatigt", "bestätigung": "bestat", "bestätigungen": "bestat", "bestätigungsgründe": "bestatigungsgrund", "bestaunten": "bestaunt", "beste": "best", "besteche": "bestech", "bestechen": "bestech", "bestechende": "bestech", "bestechliche": "bestech", "bestechung": "bestech", "bestechungssumme": "bestechungssumm", "besteck": "besteck", "besteckt": "besteckt", "bestehe": "besteh", "bestehen": "besteh", "bestehend": "besteh", "bestehende": "besteh", "bestehendes": "besteh", "besteht": "besteht", "besteigen": "besteig", "bestellen": "bestell", "bestellt": "bestellt", "bestellte": "bestellt", "bestellung": "bestell", "bestellungen": "bestell", "bestem": "best", "besten": "best", "bestenfalls": "bestenfall", "bestens": "best", "bester": "best", "bestia": "bestia", "bestiae": "bestia", "besticht": "besticht", "bestickt": "bestickt", "bestie": "besti", "bestieg": "bestieg", "bestiegen": "bestieg", "bestien": "besti", "bestiis": "bestiis", "bestimmbar": "bestimmbar", "bestimmbare": "bestimmbar", "bestimmbaren": "bestimmbar", "bestimmbares": "bestimmbar", "bestimmbarkeit": "bestimmbar", "bestimme": "bestimm", "bestimmen": "bestimm", "bestimmende": "bestimm", "bestimmenden": "bestimm", "bestimmt": "bestimmt", "bestimmte": "bestimmt", "bestimmten": "bestimmt", "bestimmter": "bestimmt", "bestimmtes": "bestimmt", "bestimmtesten": "bestimmt", "bestimmtheit": "bestimmt", "bestimmung": "bestimm", "bestimmungen": "bestimm", "bestimmungsgrund": "bestimmungsgrund", "bestimmungsgrunde": "bestimmungsgrund", "bestimmungsgründe": "bestimmungsgrund", "bestimmungsgründen": "bestimmungsgrund", "bestimmungsgrundes": "bestimmungsgrund", "bestirnte": "bestirnt", "bestmöglichst": "bestmog", "bestochen": "bestoch", "bestrafen": "bestraf", "bestraft": "bestraft", "bestrafung": "bestraf", "bestrafungen": "bestraf", "bestreben": "bestreb", "bestrebt": "bestrebt", "bestrebung": "bestreb", "bestrebungen": "bestreb", "bestreift": "bestreift", "bestreiten": "bestreit", "bestreitet": "bestreitet", "bestreut": "bestreut", "bestreuten": "bestreut", "bestritt": "bestritt", "bestünde": "bestund", "bestürmte": "besturmt", "bestürmten": "besturmt", "bestürzt": "besturzt", "bestürzten": "besturzt", "besuch": "besuch", "besuche": "besuch", "besuchen": "besuch", "besucher": "besuch", "besucht": "besucht", "besuchte": "besucht", "besuchten": "besucht", "besudelt": "besudelt", "besudelten": "besudelt", "betaste": "betast", "betasten": "betast", "betastete": "betastet", "betätigt": "betatigt", "betäuben": "betaub", "betäubt": "betaubt", "betäubung": "betaub", "betbüchl": "betbuchl", "beteiligt": "beteiligt", "beteiligten": "beteiligt", "beten": "bet", "betend": "betend", "betet": "betet", "betete": "betet", "beteten": "betet", "beteuerte": "beteuert", "beth": "beth", "bethesda": "bethesda", "betitelt": "betitelt", "betont": "betont", "betörenden": "betor", "betört": "betort", "betracht": "betracht", "betrachte": "betracht", "betrachten": "betracht", "betrachtend": "betracht", "betrachtet": "betrachtet", "betrachtete": "betrachtet", "betrachteten": "betrachtet", "beträchtlich": "betracht", "beträchtliche": "betracht", "betrachtung": "betracht", "betrachtungen": "betracht", "betraf": "betraf", "beträfe": "betraf", "betragen": "betrag", "betragens": "betrag", "beträgt": "betragt", "betrat": "betrat", "betraten": "betrat", "betraut": "betraut", "betrauten": "betraut", "betreff": "betreff", "betreffen": "betreff", "betreffend": "betreff", "betreffende": "betreff", "betreffenden": "betreff", "betreffs": "betreff", "betreiben": "betreib", "betreibt": "betreibt", "betreibung": "betreib", "betresst": "betresst", "betreßt": "betresst", "betreten": "betret", "betreuen": "betreu", "betrieb": "betrieb", "betrieben": "betrieb", "betrifft": "betrifft", "betritt": "betritt", "betroffen": "betroff", "betrogen": "betrog", "betrogene": "betrog", "betrogenen": "betrog", "betrübe": "betrub", "betrüblich": "betrub", "betrübnis": "betrubnis", "betrübt": "betrubt", "betrübte": "betrubt", "betrübten": "betrubt", "betrug": "betrug", "betrüge": "betrug", "betrügen": "betrug", "betrüger": "betrug", "betrügereien": "betrugerei", "betrügerisch": "betruger", "betrügerisches": "betruger", "betrüglich": "betrug", "betrügst": "betrug", "betrunken": "betrunk", "betrunkenen": "betrunk", "betrunkener": "betrunk", "bett": "bett", "bettchen": "bettch", "bette": "bett", "bettelei": "bettelei", "betteljunge": "bettelj", "betteln": "betteln", "bettelte": "bettelt", "betten": "bett", "bettentruhe": "bettentruh", "bettes": "bett", "betteten": "bettet", "bettlächrig": "bettlachr", "bettstatt": "bettstatt", "bettstelle": "bettstell", "bettzeug": "bettzeug", "betupft": "betupft", "beugen": "beug", "beugt": "beugt", "beugte": "beugt", "beugten": "beugt", "beule": "beul", "beulen": "beul", "beunruhigen": "beunruh", "beunruhigende": "beunruh", "beunruhigt": "beunruhigt", "beunruhigung": "beunruh", "beurkundet": "beurkundet", "beurkundete": "beurkundet", "beurlaube": "beurlaub", "beurlaubten": "beurlaubt", "beurlaubung": "beurlaub", "beurteilen": "beurteil", "beurteilenden": "beurteil", "beurteilt": "beurteilt", "beurteilte": "beurteilt", "beurteilung": "beurteil", "beurteilungen": "beurteil", "beute": "beut", "beutel": "beutel", "beutelchen": "beutelch", "beuten": "beut", "bevölkert": "bevolkert", "bevölkerung": "bevolker", "bevor": "bevor", "bevorhautet": "bevorhautet", "bevorhautete": "bevorhautet", "bevorstand": "bevorstand", "bevorstehenden": "bevorsteh", "bevorsteht": "bevorsteht", "bewachsen": "bewachs", "bewachsenen": "bewachs", "bewaffnet": "bewaffnet", "bewaffnete": "bewaffnet", "bewaffneten": "bewaffnet", "bewaffneter": "bewaffnet", "bewahre": "bewahr", "bewahren": "bewahr", "bewähren": "bewahr", "bewahrt": "bewahrt", "bewährt": "bewahrt", "bewahrte": "bewahrt", "bewährte": "bewahrt", "bewährter": "bewahrt", "bewährtes": "bewahrt", "bewahrtest": "bewahrt", "bewahrung": "bewahr", "bewältigen": "bewalt", "bewandt": "bewandt", "bewandtnis": "bewandtnis", "bewarben": "bewarb", "bewässern": "bewass", "bewässert": "bewassert", "bewässerte": "bewassert", "bewässerten": "bewassert", "bewässerter": "bewassert", "bewege": "beweg", "bewegen": "beweg", "bewegende": "beweg", "bewegenden": "beweg", "beweggründe": "beweggrund", "beweglich": "beweg", "bewegliche": "beweg", "beweglichkeit": "beweg", "bewegt": "bewegt", "bewegte": "bewegt", "bewegten": "bewegt", "bewegtes": "bewegt", "bewegung": "beweg", "bewegungen": "beweg", "bewegungsgrund": "bewegungsgrund", "bewegungsgrunde": "bewegungsgrund", "bewegungsgründe": "bewegungsgrund", "bewegungsgründen": "bewegungsgrund", "bewegursache": "bewegursach", "bewegursachen": "bewegursach", "beweis": "beweis", "beweise": "beweis", "beweisen": "beweis", "beweisend": "beweis", "beweises": "beweis", "beweiset": "beweiset", "beweisführende": "beweisfuhr", "beweisgründen": "beweisgrund", "beweist": "beweist", "beweistümer": "beweistum", "bewerben": "bewerb", "bewerbung": "bewerb", "bewerkstelligte": "bewerkstelligt", "bewies": "bewi", "bewiesen": "bewies", "bewilligen": "bewill", "bewilligt": "bewilligt", "bewimpelt": "bewimpelt", "bewirbt": "bewirbt", "bewirke": "bewirk", "bewirken": "bewirk", "bewirkt": "bewirkt", "bewirkte": "bewirkt", "bewirkten": "bewirkt", "bewirkung": "bewirk", "bewirte": "bewirt", "bewirtete": "bewirtet", "bewirtung": "bewirt", "bewogen": "bewog", "bewohnen": "bewohn", "bewohner": "bewohn", "bewohnern": "bewohn", "bewohners": "bewohn", "bewohnt": "bewohnt", "bewohnte": "bewohnt", "bewohnten": "bewohnt", "bewölkten": "bewolkt", "bewundern": "bewund", "bewundernd": "bewundernd", "bewunderten": "bewundert", "bewunderung": "bewunder", "bewurf": "bewurf", "bewusst": "bewusst", "bewußt": "bewusst", "bewusste": "bewusst", "bewußte": "bewusst", "bewussten": "bewusst", "bewußten": "bewusst", "bewusster": "bewusst", "bewusstlos": "bewusstlos", "bewusstlosen": "bewusstlos", "bewusstsein": "bewusstsein", "bewußtsein": "bewusstsein", "bewusstseins": "bewusstsein", "bewußtseins": "bewusstsein", "bezahlbarer": "bezahlbar", "bezahlen": "bezahl", "bezahlt": "bezahlt", "bezahlte": "bezahlt", "bezahlung": "bezahl", "bezähmt": "bezahmt", "bezaleel": "bezaleel", "bezankenden": "bezank", "bezaubern": "bezaub", "bezeichne": "bezeichn", "bezeichnen": "bezeichn", "bezeichnend": "bezeichn", "bezeichnende": "bezeichn", "bezeichnendes": "bezeichn", "bezeichnet": "bezeichnet", "bezeichnete": "bezeichnet", "bezeichneten": "bezeichnet", "bezeichnung": "bezeichn", "bezeichnungen": "bezeichn", "bezeigen": "bezeig", "bezeigten": "bezeigt", "bezeugen": "bezeug", "bezeugst": "bezeug", "bezeugten": "bezeugt", "beziehe": "bezieh", "beziehen": "bezieh", "bezieht": "bezieht", "beziehung": "bezieh", "beziehungen": "bezieh", "beziehungsweise": "beziehungsweis", "beziele": "beziel", "bezielt": "bezielt", "bezirk": "bezirk", "bezirke": "bezirk", "bezirksrat": "bezirksrat", "bezirksversammlung": "bezirksversamml", "bezog": "bezog", "bezogen": "bezog", "bezug": "bezug", "bezüglich": "bezug", "bezüglichen": "bezug", "bezwang": "bezwang", "bezwecken": "bezweck", "bezweckt": "bezweckt", "bezweckte": "bezweckt", "bezweifeln": "bezweifeln", "bezweifle": "bezweifl", "bezwingen": "bezwing", "bezwingt": "bezwingt", "bezwingung": "bezwing", "bezwungen": "bezwung", "bfu": "bfu", "bibberten": "bibbert", "bibel": "bibel", "bibelan": "bibelan", "bibelgesellschaft": "bibelgesellschaft", "biberach": "biberach", "bibliothek": "bibliothek", "bibliotheken": "bibliothek", "biblische": "biblisch", "biedenkopf": "biedenkopf", "biederen": "bied", "biederer": "bied", "biegen": "bieg", "biegung": "biegung", "biene": "bien", "bienen": "bien", "bienenwachs": "bienenwach", "bier": "bier", "bieranstalt": "bieranstalt", "bierkrug": "bierkrug", "bierkrügen": "bierkrug", "bierkutscher": "bierkutsch", "biertrinken": "biertrink", "biertrinker": "biertrink", "biest": "biest", "biestigen": "biestig", "bieten": "biet", "bietend": "bietend", "bietet": "bietet", "bild": "bild", "bildchen": "bildch", "bilde": "bild", "bilden": "bild", "bildende": "bildend", "bilder": "bild", "bilderbücher": "bilderbuch", "bilderbücherwiese": "bilderbucherwies", "bilderchen": "bilderch", "bildern": "bild", "bildet": "bildet", "bildete": "bildet", "bildeten": "bildet", "bildner": "bildn", "bildsauber": "bildsaub", "bildsaubre": "bildsaubr", "bildsäule": "bildsaul", "bildschöne": "bildschon", "bildschönes": "bildschon", "bildung": "bildung", "bildungen": "bildung", "bildungschancen": "bildungschanc", "bildungsgut": "bildungsgut", "bildzeitung": "bildzeit", "bileam": "bileam", "bileams": "bileam", "billige": "billig", "billigen": "billig", "billigenden": "billig", "billiger": "billig", "billigkeit": "billig", "billigste": "billig", "billigung": "billig", "bimmelglöcklein": "bimmelglocklein", "bin": "bin", "bind": "bind", "binde": "bind", "binden": "bind", "bindet": "bindet", "bindfaden": "bindfad", "binse": "bins", "biographien": "biographi", "birgt": "birgt", "birke": "birk", "birkenzweiglein": "birkenzweiglein", "birnen": "birn", "birnenstiel": "birnenstiel", "bis": "bis", "bischof": "bischof", "bischöfe": "bischof", "bischofs": "bischof", "bischofskonferenz": "bischofskonferenz", "bischofswiesen": "bischofswies", "bisher": "bish", "bisherige": "bisher", "bisherigen": "bisher", "bisheriges": "bisher", "bislang": "bislang", "biss": "biss", "bisschen": "bissch", "bißchen": "bissch", "bissel": "bissel", "bissen": "biss", "bisserl": "bisserl", "bissl": "bissl", "bist": "bist", "bistum": "bistum", "bisweilen": "bisweil", "bitt": "bitt", "bitte": "bitt", "bitten": "bitt", "bittend": "bittend", "bittenden": "bittend", "bitter": "bitt", "bittere": "bitt", "bitteren": "bitt", "bitterer": "bitt", "bitteres": "bitt", "bitterkalten": "bitterkalt", "bitterkeit": "bitter", "bitterlich": "bitt", "bitterlicher": "bitt", "bittern": "bitt", "bitterste": "bitterst", "bittersten": "bitterst", "bittest": "bitt", "bittet": "bittet", "biwakspässe": "biwakspass", "biwakspäße": "biwakspass", "blachfeld": "blachfeld", "blagen": "blag", "blähet": "blahet", "blähte": "blaht", "blank": "blank", "blanke": "blank", "blanken": "blank", "blanker": "blank", "blankes": "blank", "blankgepanzerte": "blankgepanzert", "bläschen": "blasch", "blase": "blas", "blasebalg": "blasebalg", "blasebälgen": "blasebalg", "blasen": "blas", "blasensteigen": "blasensteig", "blasiert": "blasiert", "blasierten": "blasiert", "blasinstrument": "blasinstrument", "blasinstrumente": "blasinstrument", "blass": "blass", "blaß": "blass", "blasse": "blass", "blässe": "blass", "blassen": "blass", "blasser": "blass", "blasses": "blass", "bläst": "blast", "blatt": "blatt", "blättchen": "blattch", "blatte": "blatt", "blatteln": "blatteln", "blatten": "blatt", "blätter": "blatt", "blattern": "blatt", "blättern": "blatt", "blatterngeschwüre": "blatterngeschwur", "blätterreste": "blatterr", "blätterte": "blattert", "blätterten": "blattert", "blattes": "blatt", "blau": "blau", "blaue": "blau", "blauem": "blau", "blauen": "blau", "blaues": "blau", "blauesten": "blau", "blaufärber": "blaufarb", "blaugefärbter": "blaugefarbt", "blaugrün": "blaugrun", "bläulich": "blaulich", "bläulichen": "blaulich", "blausamt": "blausamt", "blauseidenen": "blauseid", "blauweissen": "blauweiss", "bleamerln": "bleamerln", "blech": "blech", "blecherne": "blechern", "blechkerl": "blechkerl", "blechlöffeln": "blechloffeln", "blechmusik": "blechmus", "blechschachtel": "blechschachtel", "blechschilde": "blechschild", "blei": "blei", "bleib": "bleib", "bleibe": "bleib", "bleiben": "bleib", "bleibend": "bleibend", "bleibende": "bleibend", "bleibenden": "bleibend", "bleibender": "bleibend", "bleibendes": "bleibend", "bleibestätten": "bleibestatt", "bleibet": "bleibet", "bleibn": "bleibn", "bleibst": "bleib", "bleibt": "bleibt", "bleich": "bleich", "bleiche": "bleich", "bleichen": "bleich", "bleicher": "bleich", "bleihände": "bleihand", "bleikugeln": "bleikugeln", "bleischweren": "bleischw", "bleistift": "bleistift", "bleistifte": "bleistift", "blendend": "blendend", "blendenden": "blendend", "blendendes": "blendend", "blendendweisse": "blendendweiss", "blendet": "blendet", "blendlaterne": "blendlatern", "blendwerk": "blendwerk", "blessierter": "blessiert", "blick": "blick", "blicke": "blick", "blicken": "blick", "blickend": "blickend", "blickenden": "blickend", "blickes": "blick", "blickt": "blickt", "blickte": "blickt", "blickten": "blickt", "blieb": "blieb", "bliebe": "blieb", "blieben": "blieb", "bliebn": "bliebn", "bliem": "bliem", "blies": "blies", "bliesen": "blies", "blind": "blind", "blinde": "blind", "blinden": "blind", "blinder": "blind", "blindes": "blind", "blindgeborenen": "blindgebor", "blindlings": "blindling", "blinkend": "blinkend", "blinkenden": "blinkend", "blinkten": "blinkt", "blinzeln": "blinzeln", "blinzelnd": "blinzelnd", "blinzelte": "blinzelt", "blitz": "blitz", "blitzblank": "blitzblank", "blitze": "blitz", "blitzeblank": "blitzeblank", "blitzen": "blitz", "blitzend": "blitzend", "blitzende": "blitzend", "blitzenden": "blitzend", "blitzender": "blitzend", "blitzendes": "blitzend", "blitzhexe": "blitzhex", "blitzschnell": "blitzschnell", "blitzschnelle": "blitzschnell", "blitzschnellen": "blitzschnell", "blitzschrecken": "blitzschreck", "blitzt": "blitzt", "blitzten": "blitzt", "block": "block", "blöcke": "block", "blockiert": "blockiert", "blocksberg": "blocksberg", "blödigkeit": "blodig", "blödsinne": "blodsinn", "blödsinnig": "blodsinn", "blödsinnige": "blodsinn", "blökende": "blokend", "blökender": "blokend", "blond": "blond", "blonden": "blond", "blondes": "blond", "blondhaar": "blondhaar", "bloss": "bloss", "bloß": "bloss", "blosse": "bloss", "bloße": "bloss", "blösse": "bloss", "blöße": "bloss", "blossem": "bloss", "blossen": "bloss", "bloßen": "bloss", "blosser": "bloss", "bloßer": "bloss", "blosses": "bloss", "bloßes": "bloss", "blossfüssiger": "blossfuss", "bloßfüßiger": "blossfuss", "blosslegung": "blossleg", "bloßlegung": "blossleg", "blouse": "blous", "blousengestalt": "blousengestalt", "blousenmann": "blousenmann", "blousenmannes": "blousenmann", "blubber": "blubb", "blubberquacks": "blubberquack", "bluet": "bluet", "blühen": "bluh", "blühend": "bluhend", "blühendem": "bluhend", "blühenden": "bluhend", "blühendes": "bluhend", "blühendsten": "bluhend", "blühn": "bluhn", "blüht": "bluht", "blühte": "bluht", "blühten": "bluht", "blümchen": "blumch", "blume": "blum", "blumen": "blum", "blumenbouquets": "blumenbouquet", "blumenduft": "blumenduft", "blumengeschmückte": "blumengeschmuckt", "blumenglas": "blumenglas", "blumenhaufen": "blumenhauf", "blumenköpfe": "blumenkopf", "blumenkränzen": "blumenkranz", "blumenstrauss": "blumenstrauss", "blumenstrauß": "blumenstrauss", "blumentöpfe": "blumentopf", "blut": "blut", "blutarmen": "blutarm", "blutbräutigam": "blutbrautigam", "blutbräutigams": "blutbrautigam", "blutdürstige": "blutdurst", "blute": "blut", "blüte": "blut", "blüten": "blut", "blütenknopsen": "blutenknops", "blutes": "blut", "blutete": "blutet", "blütezeit": "blutezeit", "blutgericht": "blutgericht", "blutgeruch": "blutgeruch", "blutgestank": "blutgestank", "blutgieriges": "blutgier", "blutig": "blutig", "blutigel": "blutigel", "blutigen": "blutig", "blutlose": "blutlos", "blutmensch": "blutmensch", "blutrot": "blutrot", "blutroten": "blutrot", "blutschlangen": "blutschlang", "blutschulden": "blutschuld", "blutsfreundschaft": "blutsfreundschaft", "blutsfreundschaften": "blutsfreundschaft", "blutstropfen": "blutstropf", "blutsverwandten": "blutsverwandt", "blutumlauf": "blutumlauf", "blutungen": "blutung", "blutwelle": "blutwell", "bm": "bm", "bock": "bock", "böckchen": "bockch", "bocke": "bock", "böcke": "bock", "bockelt": "bockelt", "böcken": "bock", "bockes": "bock", "bockreiter": "bockreit", "bocksbeutel": "bocksbeutel", "bocksgemäcker": "bocksgemack", "bockt": "bockt", "boden": "bod", "bodenraum": "bodenraum", "bodens": "bod", "boell": "boell", "bog": "bog", "bogen": "bog", "böhmerwald": "bohmerwald", "bohnen": "bohn", "bohnenstangen": "bohnenstang", "bohnenwäldchen": "bohnenwaldch", "böhni": "bohni", "bohrt": "bohrt", "bohrten": "bohrt", "bold": "bold", "bolen": "bol", "böll": "boll", "böllerschüsse": "bollerschuss", "bollwerk": "bollwerk", "bologna": "bologna", "bologneser": "bolognes", "bolzenburg": "bolzenburg", "bombardierte": "bombardiert", "bomben": "bomb", "bombenschlag": "bombenschlag", "bona": "bona", "bonbonbüchse": "bonbonbuchs", "bonbonknospen": "bonbonknosp", "bonbons": "bonbon", "bonbonsträucher": "bonbonstrauch", "bondevik": "bondev", "boni": "boni", "bonum": "bonum", "bonus": "bonus", "boot": "boot", "bootes": "boot", "bordeaux": "bordeaux", "borden": "bord", "borer": "bor", "born": "born", "börse": "bors", "borste": "borst", "bös": "bos", "bösartig": "bosart", "bösartiger": "bosart", "bösartigkeit": "bosart", "böschung": "boschung", "böse": "bos", "bösem": "bos", "bösen": "bos", "böser": "bos", "böses": "bos", "bösestun": "bosestun", "bösewicht": "bosewicht", "bösewichte": "bosewicht", "boshafte": "boshaft", "boshaftes": "boshaft", "bosheit": "bosheit", "bössein": "bossein", "böswillige": "boswill", "böswilliges": "boswill", "böswilligkeit": "boswill", "bot": "bot", "bote": "bot", "boten": "bot", "botschaft": "botschaft", "botschafter": "botschaft", "botschafters": "botschaft", "botta": "botta", "böttcher": "bottch", "bouffonerie": "bouffoneri", "boutique": "boutiqu", "boykottieren": "boykotti", "brabanter": "brabant", "brach": "brach", "brachen": "brach", "brachlägen": "brachlag", "bracht": "bracht", "brächt": "bracht", "brachte": "bracht", "brächte": "bracht", "brachten": "bracht", "brächten": "bracht", "bracken": "brack", "braffs": "braff", "brand": "brand", "brande": "brand", "brände": "brand", "branden": "brand", "brandenburg": "brandenburg", "brandgefilde": "brandgefild", "brandmauern": "brandmau", "brandopfer": "brandopf", "brandopfern": "brandopf", "brandroten": "brandrot", "brandrotes": "brandrot", "brandschnur": "brandschnur", "brandung": "brandung", "brannte": "brannt", "brannten": "brannt", "bratapfel": "bratapfel", "brate": "brat", "braten": "brat", "bratenfett": "bratenfett", "bratenspässen": "bratenspass", "bratenspiess": "bratenspiess", "bratenspieß": "bratenspiess", "bratspiess": "bratspiess", "bratwurst": "bratwurst", "brauch": "brauch", "brauchbar": "brauchbar", "brauchbaren": "brauchbar", "brauchbarer": "brauchbar", "brauche": "brauch", "brauchen": "brauch", "brauchet": "brauchet", "brauchst": "brauch", "braucht": "braucht", "brauchte": "braucht", "brauchten": "braucht", "brauchtet": "brauchtet", "brauen": "brau", "brauervieh": "brauervieh", "braun": "braun", "braune": "braun", "braunem": "braun", "braunen": "braun", "brauner": "braun", "braunes": "braun", "braungebranntem": "braungebrannt", "braungoldene": "braungold", "braunkariertes": "braunkariert", "bräunliche": "braunlich", "bräunlichen": "braunlich", "braunrotes": "braunrot", "braunschweig": "braunschweig", "brausen": "braus", "brauste": "braust", "brausten": "braust", "braut": "braut", "brautbett": "brautbett", "brautgeschenke": "brautgeschenk", "bräutigam": "brautigam", "bräutigams": "brautigam", "bräutlein": "brautlein", "brautpaar": "brautpaar", "brautwesen": "brautwes", "brav": "brav", "brave": "brav", "braven": "brav", "braver": "brav", "braves": "brav", "bravo": "bravo", "breche": "brech", "brechen": "brech", "brechend": "brechend", "brechenden": "brechend", "brei": "brei", "breies": "breies", "breit": "breit", "breite": "breit", "breiten": "breit", "breiter": "breit", "breites": "breit", "breitet": "breitet", "breitete": "breitet", "breiteten": "breitet", "breitgerissenen": "breitgeriss", "breitgewordenen": "breitgeword", "breitkrempigen": "breitkremp", "breitschultrige": "breitschultr", "breitspurigkeit": "breitspur", "bremner": "bremn", "brenne": "brenn", "brennen": "brenn", "brennend": "brennend", "brennendem": "brennend", "brennenden": "brennend", "brennendes": "brennend", "brennt": "brennt", "brenzelte": "brenzelt", "brenzlig": "brenzlig", "brett": "brett", "brette": "brett", "bretter": "brett", "bretternägel": "bretternagel", "bricht": "bricht", "bridge": "bridg", "bridgefreundinnen": "bridgefreundinn", "brief": "brief", "briefe": "brief", "briefes": "brief", "brieflich": "brieflich", "briefstelle": "briefstell", "briefsteller": "briefstell", "brieftasche": "brieftasch", "briet": "briet", "brille": "brill", "bring": "bring", "bringe": "bring", "bringen": "bring", "bringenden": "bringend", "bringet": "bringet", "bringt": "bringt", "brite": "brit", "briten": "brit", "britische": "britisch", "britischen": "britisch", "brits": "brit", "brochen": "broch", "bröckeln": "brockeln", "bröckelt": "brockelt", "brocken": "brock", "brokatene": "brokat", "broldin": "broldin", "brosamen": "brosam", "broschek": "broschek", "broscheks": "broschek", "broschüre": "broschur", "brot": "brot", "brotbissen": "brotbiss", "brötchen": "brotch", "brote": "brot", "broten": "brot", "brotes": "brot", "brotessen": "brotess", "brotlaib": "brotlaib", "brotrinde": "brotrind", "brots": "brot", "brotteller": "brottell", "brrrrrrrr": "brrrrrrrr", "brsg": "brsg", "bruch": "bruch", "brüche": "bruch", "bruchstückweise": "bruchstuckweis", "bruchus": "bruchus", "bruchwand": "bruchwand", "brücke": "bruck", "brückenbauer": "bruckenbau", "brudder": "brudd", "bruder": "brud", "brüder": "brud", "brüderlich": "brud", "brüdern": "brud", "bruders": "brud", "bruderschaft": "bruderschaft", "brüderschaft": "bruderschaft", "bruderschaften": "bruderschaft", "brühe": "bruh", "brüllen": "brull", "brüllend": "brullend", "brüller": "brull", "brüllet": "brullet", "brüllte": "brullt", "brumm": "brumm", "brummbass": "brummbass", "brummbässe": "brummbass", "brummbassgezeter": "brummbassgezet", "brummbaßgezeter": "brummbassgezet", "brummen": "brumm", "brummend": "brummend", "brummenden": "brummend", "brummkonzert": "brummkonzert", "brummt": "brummt", "brummte": "brummt", "brunnen": "brunn", "brunnenbank": "brunnenbank", "brunnens": "brunn", "brunnenschwengel": "brunnenschwengel", "brunnenschwengeln": "brunnenschwengeln", "brunnenstrahl": "brunnenstrahl", "brünstig": "brunstig", "brünstigem": "brunstig", "brüssel": "brussel", "brust": "brust", "brustbildern": "brustbild", "brüste": "brust", "brustfleck": "brustfleck", "brustgewand": "brustgewand", "brustkorb": "brustkorb", "brustlatz": "brustlatz", "brustschild": "brustschild", "brustschildlein": "brustschildlein", "brusttasche": "brusttasch", "brüstung": "brustung", "brustwehr": "brustwehr", "brütend": "brutend", "brüteten": "brutet", "brütige": "brutig", "bschlachter": "bschlacht", "bscht": "bscht", "bsorgen": "bsorg", "bsucht": "bsucht", "bua": "bua", "bub": "bub", "bübchen": "bubch", "buben": "bub", "bubenmädchen": "bubenmadch", "bübisch": "bubisch", "buch": "buch", "buchbinder": "buchbind", "buchbindergesellen": "buchbindergesell", "buchbinders": "buchbind", "buche": "buch", "büchelchen": "buchelch", "buchen": "buch", "buchenast": "buchenast", "buchenholz": "buchenholz", "buchenknorren": "buchenknorr", "buchenlaub": "buchenlaub", "buchenwäldchen": "buchenwaldch", "buchenwipfel": "buchenwipfel", "bücher": "buch", "büchereien": "bucherei", "büchern": "buch", "bücherschränken": "bucherschrank", "buches": "buch", "buchhalter": "buchhalt", "buchhandlungen": "buchhandl", "büchlein": "buchlein", "büchschen": "buchsch", "büchse": "buchs", "büchsen": "buchs", "büchsenlicht": "buchsenlicht", "büchsenmacher": "buchsenmach", "büchsenmacherei": "buchsenmacherei", "büchsenschmied": "buchsenschmied", "büchsenschuss": "buchsenschuss", "büchsenstein": "buchsenstein", "büchsflinte": "buchsflint", "buchstabe": "buchstab", "buchstaben": "buchstab", "buchstabens": "buchstab", "buchstabensinn": "buchstabensinn", "buchstabensinne": "buchstabensinn", "buchstabensinns": "buchstabensinn", "buchstäbliche": "buchstab", "buchstäblichen": "buchstab", "buchungsbelegen": "buchungsbeleg", "bücke": "buck", "buckel": "buckel", "bücken": "buck", "bucklige": "bucklig", "buckligen": "bucklig", "buckliger": "bucklig", "buckliges": "bucklig", "buckskin": "buckskin", "bückt": "buckt", "bückte": "buckt", "buden": "bud", "budgetiert": "budgetiert", "büfettier": "bufetti", "büffel": "buffel", "büffet": "buffet", "bügeleisen": "bugeleis", "bügelgestemmte": "bugelgestemmt", "bügelte": "bugelt", "buhlerisches": "buhler", "buhlerlohn": "buhlerlohn", "buhleten": "buhlet", "bühnenmanagerin": "buhnenmanagerin", "bujv": "bujv", "bulle": "bull", "bullern": "bull", "bullerte": "bullert", "bum": "bum", "bums": "bum", "bund": "bund", "bunde": "bund", "bünde": "bund", "bündel": "bundel", "bündelchen": "bundelch", "bündelein": "bundelein", "bündeln": "bundeln", "bündelturme": "bundelturm", "bündelweise": "bundelweis", "bundes": "bund", "bundesebene": "bundeseb", "bundesgenossen": "bundesgenoss", "bundesgetz": "bundesgetz", "bundeslade": "bundeslad", "bundesland": "bundesland", "bundeslandes": "bundesland", "bundesleben": "bundesleb", "bundespräsident": "bundesprasident", "bundesrat": "bundesrat", "bundesräte": "bundesrat", "bundessache": "bundessach", "bundesverwaltung": "bundesverwalt", "bundeswehr": "bundeswehr", "bündner": "bundn", "bündnis": "bundnis", "bündnisse": "bundnis", "bündnissen": "bundnis", "bünger": "bung", "bunt": "bunt", "buntbemalte": "buntbemalt", "bunte": "bunt", "buntem": "bunt", "bunten": "bunt", "bunter": "bunt", "buntes": "bunt", "buntesten": "bunt", "buntester": "bunt", "buntscheckigen": "buntscheck", "bünzli": "bunzli", "bünzlin": "bunzlin", "buomberger": "buomberg", "bur": "bur", "bureau": "bureau", "bureaus": "bureaus", "burg": "burg", "burgen": "burg", "bürger": "burg", "bürgerhut": "burgerhut", "bürgerinnen": "burgerinn", "bürgerkriegen": "burgerkrieg", "bürgerlich": "burg", "bürgerliche": "burg", "bürgerlichem": "burg", "bürgerlichen": "burg", "bürgermeister": "burgermeist", "bürgern": "burg", "bürgernest": "burgern", "bürgerrock": "burgerrock", "bürgerschaft": "burgerschaft", "bürgersinn": "burgersinn", "bürgertugend": "burgertug", "burgfenster": "burgfen", "burghofe": "burghof", "bürgschaft": "burgschaft", "burgtor": "burgtor", "burnus": "burnus", "burnusträgern": "burnustrag", "büro": "buro", "bürokratischer": "burokrat", "büroräume": "buroraum", "büros": "buros", "bürozeit": "burozeit", "bursch": "bursch", "bürschchen": "burschch", "bursche": "bursch", "burschen": "bursch", "burschikosen": "burschikos", "bürschlein": "burschlein", "bürstchen": "burstch", "bürste": "burst", "bürstete": "burstet", "bürstner": "burstn", "bürstners": "burstn", "bus": "bus", "busch": "busch", "büsche": "busch", "büschel": "buschel", "büschen": "busch", "buschigem": "buschig", "buschigen": "buschig", "buschwerk": "buschwerk", "busen": "bus", "busens": "bus", "busse": "buss", "buße": "buss", "büste": "bust", "bütte": "butt", "butter": "butt", "butterblume": "butterblum", "butterbrot": "butterbrot", "butterfett": "butterfett", "buttertopf": "buttertopf", "byssus": "byssus", "bz": "bz", "bzw": "bzw", "ca": "ca", "cabaret": "cabaret", "cadens": "cad", "café": "café", "camelia": "camelia", "canaille": "canaill", "canailles": "canaill", "canoro": "canoro", "capua": "capua", "care": "car", "caritas": "caritas", "carl": "carl", "carriere": "carri", "castor": "castor", "catigo": "catigo", "causa": "causa", "causam": "causam", "causas": "causas", "cd": "cd", "cdu": "cdu", "cenis": "cenis", "center": "cent", "central": "central", "centre": "centr", "ch": "ch", "chaldäer": "chalda", "chaldäern": "chalda", "cham": "cham", "chambery": "chambery", "champagner": "champagn", "champagnerflasche": "champagnerflasch", "champagnerkelch": "champagnerkelch", "chance": "chanc", "chancen": "chanc", "channa": "channa", "chanoch": "chanoch", "chanochs": "chanoch", "chaos": "chaos", "chaotischen": "chaotisch", "character": "charact", "charakter": "charakt", "charakterisieren": "charakterisi", "charakteristik": "charakterist", "charakteristisch": "charakterist", "charakteristische": "charakterist", "charakters": "charakt", "charakterzug": "charakterzug", "charitas": "charitas", "chateau": "chateau", "chaussee": "chausse", "chavah": "chavah", "chavillah": "chavillah", "chazors": "chazor", "che": "che", "chebron": "chebron", "check": "check", "checque": "checqu", "cheese": "chees", "chef": "chef", "cheflektor": "cheflektor", "chemie": "chemi", "chemikalien": "chemikali", "chemist": "chemist", "chen": "chen", "cheres": "cher", "cherub": "cherub", "cherube": "cherub", "cheruben": "cherub", "cherubim": "cherubim", "cherubs": "cherub", "chethiterin": "chethiterin", "chezron": "chezron", "chiddekel": "chiddekel", "chigen": "chig", "chimärische": "chimar", "china": "china", "chinesischen": "chines", "chinesischer": "chines", "chips": "chips", "chirurgen": "chirurg", "chirurgiegehilfen": "chirurgiegehilf", "chirurgische": "chirurg", "choke": "chok", "choleriker": "choler", "chomer": "chom", "chomers": "chom", "chöre": "chor", "chören": "chor", "chp": "chp", "christ": "christ", "christa": "christa", "christdemokratischen": "christdemokrat", "christen": "christ", "christenglauben": "christenglaub", "christenheit": "christ", "christentum": "christentum", "christentums": "christentum", "christi": "christi", "christian": "christian", "christinnen": "christinn", "christkindchen": "christkindch", "christkindchens": "christkindch", "christl": "christl", "christlich": "christlich", "christliche": "christlich", "christlichen": "christlich", "christlicher": "christlich", "christlicherseits": "christlicherseit", "christls": "christl", "christo": "christo", "christoph": "christoph", "christopher": "christoph", "christus": "christus", "chronik": "chronik", "chronischen": "chronisch", "chrysopras": "chrysopras", "cicero": "cicero", "citi": "citi", "city": "city", "claire": "clair", "claude": "claud", "close": "clos", "club": "club", "co": "co", "coeleste": "coel", "coelesti": "coelesti", "coelestis": "coelestis", "cogitare": "cogitar", "coles": "col", "college": "colleg", "colores": "color", "comedian": "comedian", "committee": "committe", "communia": "communia", "communique": "communiqu", "comparationis": "comparationis", "computer": "comput", "computern": "comput", "computertomographie": "computertomographi", "concreto": "concreto", "condito": "condito", "conference": "conferenc", "conjugio": "conjugio", "consatant": "consatant", "consummatum": "consummatum", "continens": "contin", "contraria": "contraria", "contrarias": "contrarias", "copulatus": "copulatus", "copy": "copy", "corpora": "corpora", "corporis": "corporis", "corpus": "corpus", "cosmic": "cosmic", "costum": "costum", "cotti": "cotti", "couch": "couch", "council": "council", "couplet": "couplet", "cream": "cream", "credos": "credos", "crescenz": "crescenz", "crossair": "crossair", "csp": "csp", "cultores": "cultor", "cum": "cum", "customer": "custom", "cutta": "cutta", "cylinderhut": "cylinderhut", "cyperwein": "cyperwein", "d": "d", "da": "da", "dabei": "dabei", "dabeistand": "dabeistand", "dabeizusein": "dabeizusein", "dableiben": "dableib", "dach": "dach", "dachboden": "dachbod", "dache": "dach", "dächer": "dach", "dächern": "dach", "daches": "dach", "dachorganisation": "dachorganisation", "dachrinne": "dachrinn", "dachs": "dach", "dachse": "dachs", "dachsfell": "dachsfell", "dachsfellen": "dachsfell", "dachte": "dacht", "dachten": "dacht", "dächten": "dacht", "dachtraufe": "dachtrauf", "dachtürmchen": "dachturmch", "dackel": "dackel", "dackeln": "dackeln", "dackels": "dackel", "dackelzüchterei": "dackelzuchterei", "dadrauf": "dadrauf", "dadurch": "dadurch", "dafür": "dafur", "dag": "dag", "dageblieben": "dageblieb", "dagegen": "dageg", "dagesessen": "dagesess", "dagestanden": "dagestand", "dagewesen": "dagewes", "daheim": "daheim", "daher": "dah", "dahergefahren": "dahergefahr", "dahergerannt": "dahergerannt", "dahergeschlenkert": "dahergeschlenkert", "daherging": "daherging", "daherkam": "daherkam", "daherkommenden": "daherkomm", "daherkommt": "daherkommt", "daherspringen": "daherspring", "dahi": "dahi", "dahin": "dahin", "dahinfährt": "dahinfahrt", "dahinfuhr": "dahinfuhr", "dahingerafft": "dahingerafft", "dahingezogen": "dahingezog", "dahingingen": "dahinging", "dahinschritt": "dahinschritt", "dahinter": "dahint", "dahinterkomme": "dahinterkomm", "dahintersteckte": "dahintersteckt", "dahinzog": "dahinzog", "dalag": "dalag", "daliegen": "dalieg", "daliegende": "dalieg", "daliegenden": "dalieg", "daliessest": "daliess", "damal": "damal", "damalige": "damal", "damaligen": "damal", "damaliger": "damal", "damals": "damal", "damaskus": "damaskus", "damc": "damc", "dame": "dam", "damen": "dam", "damenbesuch": "damenbesuch", "damenuhr": "damenuhr", "damenwelt": "damenwelt", "damit": "damit", "dämme": "damm", "dämmerigen": "dammer", "dämmeriges": "dammer", "dämmerlicht": "dammerlicht", "dämmern": "damm", "dämmerschein": "dammerschein", "dämmerte": "dammert", "dämmerung": "dammer", "dämmrigen": "dammrig", "dämon": "damon", "dämonen": "damon", "dämonische": "damon", "dampfenden": "dampfend", "dampfstrahl": "dampfstrahl", "dämpfte": "dampft", "dan": "dan", "danach": "danach", "daneben": "daneb", "dänemark": "danemark", "danggen": "dangg", "daniel": "daniel", "dänischen": "danisch", "dank": "dank", "dankbar": "dankbar", "dankbare": "dankbar", "dankbarer": "dankbar", "dankbares": "dankbar", "dankbarkeit": "dankbar", "dankbarst": "dankbarst", "danke": "dank", "danken": "dank", "dankes": "dank", "danket": "danket", "dankte": "dankt", "dann": "dann", "dannen": "dann", "dantine": "dantin", "dar": "dar", "daran": "daran", "darangehen": "darangeh", "darangesetzt": "darangesetzt", "darauf": "darauf", "darauffolgenden": "darauffolg", "daraufstellen": "daraufstell", "daraus": "daraus", "darben": "darb", "darbieten": "darbiet", "darbietende": "darbiet", "darbietendes": "darbiet", "darbietet": "darbietet", "darbrachte": "darbracht", "darbrachten": "darbracht", "darbringen": "darbring", "darbringt": "darbringt", "darbringung": "darbring", "darein": "darein", "darf": "darf", "darfst": "darf", "därfst": "darf", "dargebracht": "dargebracht", "dargelegt": "dargelegt", "dargereicht": "dargereicht", "dargestellt": "dargestellt", "dargetan": "dargetan", "darin": "darin", "darinnen": "darinn", "darlegen": "darleg", "darlegt": "darlegt", "darlehen": "darleh", "darling": "darling", "darnach": "darnach", "darnieder": "darnied", "darniederliegen": "darniederlieg", "darreichen": "darreich", "darreichte": "darreicht", "darstelle": "darstell", "darstellen": "darstell", "darstellenden": "darstell", "darstelleten": "darstellet", "darstellt": "darstellt", "darstellte": "darstellt", "darstellten": "darstellt", "darstellung": "darstell", "darstellungsbild": "darstellungsbild", "dartun": "dartun", "dartust": "dartust", "darüber": "darub", "darüberhinaus": "daruberhinaus", "darum": "darum", "darunter": "darunt", "darzustellen": "darzustell", "das": "das", "dasass": "dasass", "dasassen": "dasass", "dasaßen": "dasass", "daschiesst": "daschiesst", "daseiende": "daseiend", "dasein": "dasein", "daseins": "dasein", "daselbst": "daselb", "dasige": "dasig", "dasitzen": "dasitz", "dasitzenden": "dasitz", "dasjenige": "dasjen", "dasmal": "dasmal", "dass": "dass", "daß": "dass", "dasselbe": "dasselb", "dastand": "dastand", "dastehen": "dasteh", "dasteht": "dasteht", "data": "data", "datis": "datis", "dativ": "dativ", "dative": "dativ", "dativen": "dativ", "dato": "dato", "datum": "datum", "dauer": "dau", "dauerhaft": "dauerhaft", "dauerhafte": "dauerhaft", "dauerhaftem": "dauerhaft", "dauerhaften": "dauerhaft", "dauerhaftigkeit": "dauerhaft", "dauern": "dau", "dauernd": "dauernd", "dauernde": "dauernd", "dauernden": "dauernd", "dauert": "dauert", "dauerte": "dauert", "dauerten": "dauert", "daumen": "daum", "daumschrauben": "daumschraub", "david": "david", "davids": "david", "davon": "davon", "davonfuhr": "davonfuhr", "davongangen": "davongang", "davongegangen": "davongegang", "davonging": "davonging", "davonkäme": "davonkam", "davonlief": "davonlief", "davonrannte": "davonrannt", "davonzureisen": "davonzureis", "davonzutragen": "davonzutrag", "davor": "davor", "dawider": "dawid", "dazu": "dazu", "dazua": "dazua", "dazubleiben": "dazubleib", "dazumal": "dazumal", "dazustehen": "dazusteh", "dazutun": "dazutun", "dazwischen": "dazwisch", "dazwischenliegender": "dazwischenlieg", "ddr": "ddr", "de": "de", "deandl": "deandl", "deanerl": "deanerl", "debatte": "debatt", "debatten": "debatt", "deberjackl": "deberjackl", "december": "decemb", "deckbett": "deckbett", "deckchen": "deckch", "decke": "deck", "deckel": "deckel", "decken": "deck", "deckte": "deckt", "deckten": "deckt", "deckung": "deckung", "deduktion": "deduktion", "deduzieren": "deduzi", "defekt": "defekt", "definieren": "defini", "definiert": "definiert", "definition": "definition", "definitum": "definitum", "degen": "deg", "degengehänge": "degengehang", "degradieren": "degradi", "dehne": "dehn", "dehnt": "dehnt", "dehnte": "dehnt", "dehnten": "dehnt", "dei": "dei", "deiche": "deich", "dein": "dein", "deine": "dein", "deinem": "dein", "deinen": "dein", "deiner": "dein", "deines": "dein", "deinetwillen": "deinetwill", "deinigen": "deinig", "dekalog": "dekalog", "dekalogs": "dekalog", "dekalogus": "dekalogus", "deklinierbuch": "deklinierbuch", "delegationen": "delegation", "delegieren": "delegi", "delegiertenversammlungen": "delegiertenversamml", "delicatessen": "delicatess", "delikaten": "delikat", "delikatesse": "delikatess", "delikt": "delikt", "delphin": "delphin", "dem": "dem", "demgemäss": "demgemass", "demgemäß": "demgemass", "demjenigen": "demjen", "demnach": "demnach", "demokratische": "demokrat", "demokrit": "demokrit", "demoliert": "demoliert", "demolierten": "demoliert", "demonstration": "demonstration", "demselben": "demselb", "demselbigen": "demselb", "demut": "demut", "demütig": "demut", "demütige": "demut", "demütigen": "demut", "demütigend": "demut", "demütiger": "demut", "demütigt": "demutigt", "demütigte": "demutigt", "demütigung": "demut", "demutshaltung": "demutshalt", "demutvollen": "demutvoll", "demzufolge": "demzufolg", "den": "den", "dene": "den", "denen": "den", "denjenigen": "denjen", "denk": "denk", "denkbar": "denkbar", "denkbaren": "denkbar", "denkbarer": "denkbar", "denke": "denk", "denken": "denk", "denkende": "denkend", "denkens": "denk", "denker": "denk", "denket": "denket", "denkmal": "denkmal", "denkst": "denk", "denkt": "denkt", "denkungsart": "denkungsart", "denkvorstellung": "denkvorstell", "denkvorstellungen": "denkvorstell", "denkweise": "denkweis", "denn": "denn", "dennoch": "dennoch", "denselben": "denselb", "dep": "dep", "departements": "departement", "departementschef": "departementschef", "deperditum": "deperditum", "depeschen": "depesch", "deponierten": "deponiert", "depot": "depot", "depressionen": "depression", "der": "der", "derart": "derart", "derartig": "derart", "derartige": "derart", "derartigen": "derart", "derartiger": "derart", "derartiges": "derart", "derbarmt": "derbarmt", "derbe": "derb", "derben": "derb", "derbknochige": "derbknoch", "derbsten": "derb", "dereinst": "derein", "deren": "der", "derentweg": "derentweg", "derentwillen": "derentwill", "derer": "der", "dergestalt": "dergestalt", "dergibt": "dergibt", "dergl": "dergl", "dergleichen": "dergleich", "derheim": "derheim", "derjenige": "derjen", "derjenigen": "derjen", "derleb": "derleb", "derlebt": "derlebt", "derlei": "derlei", "derleiden": "derleid", "dermassen": "dermass", "dern": "dern", "dero": "dero", "derschlagen": "derschlag", "derselbe": "derselb", "derselben": "derselb", "derwart": "derwart", "derweil": "derweil", "derwischt": "derwischt", "des": "des", "desdemona": "desdemona", "deserteur": "deserteur", "deserteure": "deserteur", "desertion": "desertion", "desgleichen": "desgleich", "deshalb": "deshalb", "deshalben": "deshalb", "design": "design", "designer": "design", "desinteressiert": "desinteressiert", "desjenigen": "desjen", "desna": "desna", "desolatio": "desolatio", "desolationes": "desolation", "desselben": "desselb", "dessen": "dess", "dessentwegen": "dessentweg", "dessentwillen": "dessentwill", "dessert": "dessert", "desto": "desto", "deswegen": "desweg", "deswillen": "deswill", "detailliert": "detailliert", "details": "detail", "determinatum": "determinatum", "detonation": "detonation", "deuchte": "deucht", "deuschland": "deuschland", "deut": "deut", "deutbare": "deutbar", "deuten": "deut", "deutete": "deutet", "deutlich": "deutlich", "deutliche": "deutlich", "deutlichen": "deutlich", "deutlicher": "deutlich", "deutlichere": "deutlich", "deutliches": "deutlich", "deutlichkeit": "deutlich", "deutlichste": "deutlich", "deutsch": "deutsch", "deutsche": "deutsch", "deutschen": "deutsch", "deutscher": "deutsch", "deutschland": "deutschland", "deutschlands": "deutschland", "deutschlehrerin": "deutschlehrerin", "deutschschweiz": "deutschschweiz", "deutschsein": "deutschsein", "deutseher": "deutseh", "deza": "deza", "dezember": "dezemb", "dezenz": "dezenz", "dgl": "dgl", "di": "di", "diabolischen": "diabol", "diademe": "diadem", "diademen": "diadem", "diakonie": "diakoni", "diakoniekapitel": "diakoniekapitel", "dialectica": "dialectica", "dialekt": "dialekt", "dialektik": "dialekt", "dialektikh": "dialektikh", "dialektisch": "dialekt", "dialektische": "dialekt", "dialektischen": "dialekt", "dialektliedern": "dialektlied", "dialog": "dialog", "dialogorientierung": "dialogorientier", "dialogs": "dialog", "diamant": "diamant", "diamanten": "diamant", "diamantenschimmer": "diamantenschimm", "dich": "dich", "dicht": "dicht", "dichte": "dicht", "dichtem": "dicht", "dichten": "dicht", "dichter": "dicht", "dichtes": "dicht", "dichteste": "dicht", "dichtesten": "dicht", "dichtester": "dicht", "dichtgeschlossenen": "dichtgeschloss", "dichtheit": "dichtheit", "dick": "dick", "dickbauch": "dickbauch", "dicke": "dick", "dickem": "dick", "dicken": "dick", "dicker": "dick", "dickeren": "dick", "dickicht": "dickicht", "dickichts": "dickicht", "dickleibig": "dickleib", "dicks": "dick", "dicksten": "dick", "dickung": "dickung", "dictamen": "dictam", "dictavit": "dictavit", "didac": "didac", "dideldudeldei": "dideldudeldei", "dideldumdei": "dideldumdei", "die": "die", "dieb": "dieb", "diebe": "dieb", "diebin": "diebin", "diebshehler": "diebshehl", "diebstahl": "diebstahl", "diefer": "dief", "diejenige": "diejen", "diejenigen": "diejen", "diele": "diel", "diemal": "diemal", "diene": "dien", "dienen": "dien", "dienend": "dienend", "diener": "dien", "dienern": "dien", "dienerschaft": "dienerschaft", "dienerten": "dienert", "dienet": "dienet", "dienete": "dienet", "dienlich": "dienlich", "dienst": "dien", "dienstag": "dienstag", "dienstagmorgen": "dienstagmorg", "dienstbar": "dienstbar", "dienstbarer": "dienstbar", "dienstbarkeit": "dienstbar", "dienstbarkeiten": "dienstbar", "dienstboten": "dienstbot", "dienstbuben": "dienstbub", "dienste": "dien", "diensten": "dien", "dienstes": "dien", "dienstfertig": "dienstfert", "dienstleistung": "dienstleist", "dienstleistungen": "dienstleist", "dienstliche": "dienstlich", "dienstmädchen": "dienstmadch", "dienstmägde": "dienstmagd", "dienstmägden": "dienstmagd", "dienstmänner": "dienstmann", "dienstrevier": "dienstrevi", "dienstverkehr": "dienstverkehr", "dienstvorschriften": "dienstvorschrift", "dienstzeit": "dienstzeit", "dient": "dient", "diente": "dient", "dienten": "dient", "dies": "dies", "diesbezüglich": "diesbezug", "diese": "dies", "dieselbe": "dieselb", "dieselben": "dieselb", "diesem": "dies", "diesen": "dies", "diesenging": "diesenging", "dieser": "dies", "diesergestalt": "diesergestalt", "dieserhalb": "dieserhalb", "dieses": "dies", "diesjährigen": "diesjahr", "diesmal": "diesmal", "diesseitigen": "diesseit", "dietegen": "dieteg", "dietrich": "dietrich", "dieweil": "dieweil", "differenz": "differenz", "differenzen": "differenz", "differenzierter": "differenziert", "differieren": "differi", "dimension": "dimension", "dimensionen": "dimension", "ding": "ding", "dinge": "ding", "dingen": "ding", "dinger": "ding", "dinges": "ding", "dinkel": "dinkel", "dinkels": "dinkel", "dinte": "dint", "diog": "diog", "diogenes": "diog", "diplom": "diplom", "dir": "dir", "diras": "diras", "direkt": "direkt", "direkten": "direkt", "direktion": "direktion", "direktionszimmer": "direktionszimm", "direktor": "direktor", "direktorium": "direktorium", "direktors": "direktor", "dirn": "dirn", "dirnchen": "dirnch", "dirndl": "dirndl", "dirne": "dirn", "discover": "discov", "diskursiv": "diskursiv", "diskussion": "diskussion", "diskussionen": "diskussion", "diskutieren": "diskuti", "diskutierend": "diskutier", "diskutiert": "diskutiert", "disneyland": "disneyland", "disposition": "disposition", "disputation": "disputation", "disputieren": "disputi", "disputierende": "disputier", "disputierens": "disputier", "disputiert": "disputiert", "distel": "distel", "disteln": "disteln", "distelstauden": "distelstaud", "distinktionen": "distinktion", "disziplin": "disziplin", "disziplinarverfahren": "disziplinarverfahr", "dithyrambische": "dithyramb", "divergieren": "divergi", "diversa": "diversa", "diverse": "divers", "dntt": "dntt", "do": "do", "dö": "do", "docet": "docet", "doch": "doch", "docht": "docht", "doctrina": "doctrina", "doctrinalia": "doctrinalia", "document": "document", "dogder": "dogd", "dogmata": "dogmata", "doktor": "doktor", "dokumentieren": "dokumenti", "dolmetscherin": "dolmetscherin", "dolmusfahrer": "dolmusfahr", "dom": "dom", "domes": "dom", "domini": "domini", "dominicus": "dominicus", "dominierten": "dominiert", "dominikus": "dominikus", "domplatz": "domplatz", "domui": "domui", "domus": "domus", "don": "don", "donner": "donn", "donnerbrummen": "donnerbrumm", "dönnerchen": "donnerch", "donnergetümmel": "donnergetummel", "donnermann": "donnermann", "donnern": "donn", "donnernd": "donnernd", "donnerndes": "donnernd", "donnerriese": "donnerries", "donnerriesen": "donnerries", "donners": "donn", "donnerschlag": "donnerschlag", "donnerstag": "donnerstag", "donnerstimmen": "donnerstimm", "donnerte": "donnert", "donnerwetter": "donnerwett", "doppelbüchse": "doppelbuchs", "doppelgänger": "doppelgang", "doppelglas": "doppelglas", "doppelkinns": "doppelkinn", "doppelt": "doppelt", "doppelte": "doppelt", "doppelten": "doppelt", "doppelter": "doppelt", "dorf": "dorf", "dörfchens": "dorfch", "dorfe": "dorf", "dörfer": "dorf", "dörfern": "dorf", "dorfes": "dorf", "dorfgenossen": "dorfgenoss", "dorfhange": "dorfhang", "dorfköter": "dorfkot", "dorfkretscham": "dorfkretscham", "dörfler": "dorfl", "dörflerische": "dorfler", "dorfschaften": "dorfschaft", "dorfschönen": "dorfschon", "dorfschulmeistern": "dorfschulmeist", "dorfschützer": "dorfschutz", "dorfschützern": "dorfschutz", "dorfspaziergängen": "dorfspaziergang", "dorfvorsteher": "dorfvorsteh", "dorfvorstehers": "dorfvorsteh", "dorn": "dorn", "dornbusch": "dornbusch", "dornbusche": "dornbusch", "dornbusches": "dornbusch", "dornbuschs": "dornbusch", "dornen": "dorn", "dornengesträuch": "dornengestrauch", "dornenrüstung": "dornenrust", "dornsträucher": "dornstrauch", "dort": "dort", "dorthin": "dorthin", "dortige": "dortig", "dortigen": "dortig", "dortiger": "dortig", "dös": "dos", "döschen": "dosch", "dose": "dos", "doxa": "doxa", "dozentin": "dozentin", "dr": "dr", "drache": "drach", "drachen": "drach", "drachengift": "drachengift", "drachenknopf": "drachenknopf", "drachenschlange": "drachenschlang", "draht": "draht", "drahtig": "drahtig", "dramatischen": "dramat", "dran": "dran", "drang": "drang", "drange": "drang", "drangegeben": "drangegeb", "drangen": "drang", "drängen": "drang", "drangsal": "drangsal", "drängt": "drangt", "drängte": "drangt", "drängten": "drangt", "drapierte": "drapiert", "drauf": "drauf", "draufging": "draufging", "draus": "draus", "draussen": "drauss", "draußen": "drauss", "dreck": "dreck", "drehen": "dreh", "drehend": "drehend", "drehscheibe": "drehscheib", "dreht": "dreht", "drehte": "dreht", "drehten": "dreht", "drei": "drei", "dreiangel": "dreiangel", "dreibeinigen": "dreibein", "dreieck": "dreieck", "dreiecke": "dreieck", "dreieckes": "dreieck", "dreieckiger": "dreieckig", "dreieinige": "dreieinig", "dreieinigkeit": "dreieinig", "dreien": "dreien", "dreier": "dreier", "dreifach": "dreifach", "dreifache": "dreifach", "dreifachen": "dreifach", "dreihundert": "dreihundert", "dreihundertfünfzig": "dreihundertfunfz", "dreihundertfünfzigtausend": "dreihundertfunfzigtaus", "dreimal": "dreimal", "drein": "drein", "dreingeb": "dreingeb", "dreinsah": "dreinsah", "dreinschicken": "dreinschick", "dreiröhrenhut": "dreirohrenhut", "dreissig": "dreissig", "dreißig": "dreissig", "dreissiger": "dreissig", "dreissigster": "dreissig", "dreißigster": "dreissig", "dreißiig": "dreissiig", "dreist": "dreist", "dreiundachtzig": "dreiundachtz", "dreiundzwanzigstem": "dreiundzwanz", "dreizackigen": "dreizack", "dreizehn": "dreizehn", "dreschen": "dresch", "dresden": "dresd", "drewes": "drew", "drfe": "drfe", "drin": "drin", "dringen": "dring", "dringend": "dringend", "dringende": "dringend", "dringendes": "dringend", "dringendste": "dringend", "dringlich": "dringlich", "dringt": "dringt", "drinks": "drink", "drinnen": "drinn", "drisch": "drisch", "dritt": "dritt", "dritte": "dritt", "drittehalb": "drittehalb", "drittel": "drittel", "drittem": "dritt", "dritten": "dritt", "drittenmal": "drittenmal", "drittens": "dritt", "dritter": "dritt", "drittes": "dritt", "dritthalb": "dritthalb", "droben": "drob", "drogenpolitik": "drogenpolit", "drohen": "droh", "drohend": "drohend", "drohende": "drohend", "drohenden": "drohend", "drohendes": "drohend", "drohete": "drohet", "dröhnend": "drohnend", "dröhnte": "drohnt", "droht": "droht", "drohte": "droht", "drohten": "droht", "drohungen": "drohung", "drollig": "drollig", "drollige": "drollig", "drolligen": "drollig", "drolliges": "drollig", "dromedare": "dromedar", "drüben": "drub", "drüber": "drub", "druck": "druck", "drucke": "druck", "drücken": "druck", "drückend": "druckend", "drückenden": "druckend", "druckes": "druck", "drucks": "druck", "drucksorten": "drucksort", "druckt": "druckt", "drückte": "druckt", "drückten": "druckt", "drum": "drum", "drunt": "drunt", "drunten": "drunt", "drüppelei": "druppelei", "drüppeln": "druppeln", "drüppelü": "druppelu", "drüsen": "drus", "du": "du", "ducken": "duck", "duckmäuser": "duckmaus", "duckt": "duckt", "duckte": "duckt", "duckten": "duckt", "dudlerei": "dudlerei", "duell": "duell", "duft": "duft", "duftende": "duftend", "duftenden": "duftend", "duftet": "duftet", "duftete": "duftet", "duftgewebe": "duftgeweb", "duftig": "duftig", "duftwolken": "duftwolk", "duht": "duht", "dukaten": "dukat", "dulden": "duld", "dulderin": "dulderin", "duldete": "duldet", "duldeten": "duldet", "duldsamkeit": "duldsam", "duldung": "duldung", "dumm": "dumm", "dumme": "dumm", "dummen": "dumm", "dummer": "dumm", "dümmer": "dumm", "dummes": "dumm", "dummglotzenden": "dummglotz", "dummheit": "dummheit", "dummheiten": "dummheit", "dummkopf": "dummkopf", "dummköpfe": "dummkopf", "dummköpfen": "dummkopf", "dümmling": "dummling", "dumms": "dumm", "dumpf": "dumpf", "dumpfem": "dumpf", "dumpfen": "dumpf", "dumpfhallend": "dumpfhall", "dunggestank": "dunggestank", "dunkel": "dunkel", "dunkelblau": "dunkelblau", "dunkelblauen": "dunkelblau", "dunkelbraunen": "dunkelbraun", "dunkele": "dunkel", "dunkelgrauen": "dunkelgrau", "dunkelgrüne": "dunkelgrun", "dunkelgrünen": "dunkelgrun", "dunkelhaariges": "dunkelhaar", "dunkelheit": "dunkel", "dunkelheiten": "dunkel", "dunkeln": "dunkeln", "dunkelrot": "dunkelrot", "dunkelrotem": "dunkelrot", "dunkelrotes": "dunkelrot", "dunkels": "dunkel", "dunkeltal": "dunkeltal", "dunkelte": "dunkelt", "dünkelvoller": "dunkelvoll", "dünken": "dunk", "dünkenden": "dunkend", "dunkle": "dunkl", "dunklem": "dunkl", "dunklen": "dunkl", "dunkler": "dunkl", "dunkleren": "dunkl", "dunkleres": "dunkl", "dunkles": "dunkl", "dünkt": "dunkt", "dünkte": "dunkt", "dünkten": "dunkt", "dünn": "dunn", "dünne": "dunn", "dünnen": "dunn", "dünner": "dunn", "dünnes": "dunn", "dunst": "dunst", "dünste": "dunst", "dünsten": "dunst", "dunstwölkchen": "dunstwolkch", "durch": "durch", "durcharbeiten": "durcharbeit", "durchaus": "durchaus", "durchblättern": "durchblatt", "durchblätterte": "durchblattert", "durchblicken": "durchblick", "durchbohrt": "durchbohrt", "durchbohrte": "durchbohrt", "durchbohrten": "durchbohrt", "durchbohrter": "durchbohrt", "durchbohrung": "durchbohr", "durchbrechen": "durchbrech", "durchbrochen": "durchbroch", "durchbrochenem": "durchbroch", "durchbruch": "durchbruch", "durchdacht": "durchdacht", "durchdrang": "durchdrang", "durchdringen": "durchdring", "durchdrungen": "durchdrung", "durchduftete": "durchduftet", "durcheinander": "durcheinand", "durcheinanderhingen": "durcheinanderhing", "durcheinanderliefen": "durcheinanderlief", "durcheinanderwimmelnden": "durcheinanderwimmelnd", "durcheinanderwirbelte": "durcheinanderwirbelt", "durchfallen": "durchfall", "durchfliessen": "durchfliess", "durchfließen": "durchfliess", "durchforscht": "durchforscht", "durchfuhr": "durchfuhr", "durchfuhren": "durchfuhr", "durchführte": "durchfuhrt", "durchführung": "durchfuhr", "durchgackerten": "durchgackert", "durchgang": "durchgang", "durchgängig": "durchgang", "durchgängigen": "durchgang", "durchgangsasyl": "durchgangsasyl", "durchgeführt": "durchgefuhrt", "durchgegeben": "durchgegeb", "durchgehechelt": "durchgehechelt", "durchgehen": "durchgeh", "durchgeht": "durchgeht", "durchgekämpft": "durchgekampft", "durchgekaute": "durchgekaut", "durchgelassen": "durchgelass", "durchgelaufen": "durchgelauf", "durchgereist": "durchgereist", "durchgeschleppt": "durchgeschleppt", "durchgreifende": "durchgreif", "durchkommen": "durchkomm", "durchläuft": "durchlauft", "durchleben": "durchleb", "durchlief": "durchlief", "durchliess": "durchliess", "durchlöchern": "durchloch", "durchmass": "durchmass", "durchmustern": "durchmust", "durchmusterte": "durchmustert", "durchquerte": "durchquert", "durchs": "durch", "durchschauerte": "durchschauert", "durchschaute": "durchschaut", "durchschauten": "durchschaut", "durchscheinen": "durchschein", "durchscheinend": "durchschein", "durchscheinenden": "durchschein", "durchschimmern": "durchschimm", "durchschimmerte": "durchschimmert", "durchschlagen": "durchschlag", "durchschneiden": "durchschneid", "durchschnittenen": "durchschnitt", "durchschnittsleben": "durchschnittsleb", "durchschritten": "durchschritt", "durchschwemmt": "durchschwemmt", "durchsetzen": "durchsetz", "durchsetzt": "durchsetzt", "durchsetzung": "durchsetz", "durchsichtig": "durchsicht", "durchsichtige": "durchsicht", "durchsichtigem": "durchsicht", "durchsichtigen": "durchsicht", "durchsichtiger": "durchsicht", "durchsichtigkeit": "durchsicht", "durchsickern": "durchsick", "durchsonnte": "durchsonnt", "durchstrichen": "durchstrich", "durchströmt": "durchstromt", "durchsuchen": "durchsuch", "durchsucht": "durchsucht", "durchsuchte": "durchsucht", "durchsuchten": "durchsucht", "durchsuchungen": "durchsuch", "durchtrieben": "durchtrieb", "durchtriebener": "durchtrieb", "durchwanderten": "durchwandert", "durchweg": "durchweg", "durchwegs": "durchweg", "durchweicht": "durchweicht", "durchzogen": "durchzog", "durchzogener": "durchzog", "durchzuckte": "durchzuckt", "durchzulesen": "durchzules", "durchzuschlagen": "durchzuschlag", "durchzusehen": "durchzuseh", "durchzuwandern": "durchzuwand", "dürfe": "durf", "dürfen": "durf", "dürfet": "durfet", "dürft": "durft", "durfte": "durft", "dürfte": "durft", "durften": "durft", "dürften": "durft", "dürftet": "durftet", "dürftig": "durftig", "dürftige": "durftig", "dürftigem": "durftig", "dürftigen": "durftig", "dürftigkeit": "durftig", "dürr": "durr", "dürre": "durr", "dürrem": "durr", "dürren": "durr", "dürrer": "durr", "dürres": "durr", "durst": "durst", "dürste": "durst", "dursten": "durst", "dürsten": "durst", "dürstende": "durstend", "dürstenden": "durstend", "durstet": "durstet", "dürsteten": "durstet", "durstige": "durstig", "durstiger": "durstig", "duselnden": "duselnd", "duselt": "duselt", "düster": "dust", "düstere": "dust", "düsterem": "dust", "düsterer": "dust", "düte": "dut", "düten": "dut", "dutzend": "dutzend", "dutzenden": "dutzend", "dutzendmal": "dutzendmal", "dutzendweise": "dutzendweis", "dv": "dv", "dynamischen": "dynam", "dyp": "dyp", "e": "e", "eahm": "eahm", "eandemque": "eandemqu", "earth": "earth", "easy": "easy", "ebbes": "ebb", "eben": "eben", "ebenbild": "ebenbild", "ebenbürtig": "ebenburt", "ebenbürtigen": "ebenburt", "ebendaher": "ebendah", "ebendamit": "ebendamit", "ebendarum": "ebendarum", "ebendaselbst": "ebendaselb", "ebendasselbe": "ebendasselb", "ebendenselben": "ebendenselb", "ebenderselben": "ebenderselb", "ebendiese": "ebendies", "ebendieselbe": "ebendieselb", "ebendieselben": "ebendieselb", "ebendort": "ebendort", "ebene": "eben", "ebenen": "eben", "ebenerdige": "ebenerd", "ebenfahls": "ebenfahl", "ebenfalls": "ebenfall", "ebenso": "ebenso", "ebensogut": "ebensogut", "ebensoviel": "ebensoviel", "ebensowenig": "ebensowen", "ebensowohl": "ebensowohl", "eber": "eber", "ebereschen": "eberesch", "ebne": "ebn", "ebnete": "ebnet", "ecclesiae": "ecclesia", "echo": "echo", "echt": "echt", "echte": "echt", "echten": "echt", "echter": "echt", "ecke": "eck", "ecken": "eck", "eckig": "eckig", "ecksäulen": "ecksaul", "eckzimmer": "eckzimm", "ectypa": "ectypa", "eda": "eda", "edel": "edel", "edelgeformten": "edelgeformt", "edelherr": "edelherr", "edelherren": "edelherr", "edelherrn": "edelherrn", "edelmann": "edelmann", "edelmanns": "edelmann", "edelmannstracht": "edelmannstracht", "edelmütig": "edelmut", "edelpferden": "edelpferd", "edelste": "edel", "edelstein": "edelstein", "edelsteine": "edelstein", "edelsteinen": "edelstein", "edelsten": "edel", "edelweib": "edelweib", "edelweiss": "edelweiss", "eden": "eden", "edens": "eden", "ediert": "ediert", "edith": "edith", "edle": "edl", "edlem": "edl", "edlen": "edl", "edler": "edl", "edlere": "edl", "edleren": "edl", "edleres": "edl", "edles": "edl", "edom": "edom", "edoms": "edom", "eeccs": "eeccs", "eerv": "eerv", "efeu": "efeu", "effekt": "effekt", "efficere": "effic", "effigies": "effigi", "egal": "egal", "eglaim": "eglaim", "eh": "eh", "ehandelt": "ehandelt", "ehe": "ehe", "ehebrechen": "ehebrech", "ehebrecher": "ehebrech", "ehebrechers": "ehebrech", "ehebruch": "ehebruch", "ehebrüche": "ehebruch", "ehebruchs": "ehebruch", "ehedem": "ehed", "ehefrau": "ehefrau", "ehegemahls": "ehegemahl", "ehegesponsin": "ehegesponsin", "eheherren": "eheherr", "eheleuten": "eheleut", "eheliche": "ehelich", "ehelichen": "ehelich", "ehemalige": "ehemal", "ehemaligen": "ehemal", "ehemaliger": "ehemal", "ehemaliges": "ehemal", "ehemals": "ehemal", "ehemann": "ehemann", "ehemannes": "ehemann", "ehen": "ehen", "ehepaar": "ehepaar", "eher": "eher", "eherne": "ehern", "ehesten": "ehest", "ehestens": "ehest", "eheweiber": "eheweib", "ehr": "ehr", "ehrbar": "ehrbar", "ehrbare": "ehrbar", "ehrbarem": "ehrbar", "ehrbaren": "ehrbar", "ehrbarer": "ehrbar", "ehrbareres": "ehrbar", "ehrbares": "ehrbar", "ehrbarkeit": "ehrbar", "ehre": "ehr", "ehren": "ehr", "ehrenamtliche": "ehrenamt", "ehrenbürgerin": "ehrenburgerin", "ehrenbürgerinfür": "ehrenburgerinfur", "ehrenbürgerrecht": "ehrenburgerrecht", "ehrend": "ehrend", "ehrenfest": "ehrenf", "ehrenfesten": "ehrenf", "ehrennamen": "ehrennam", "ehrenplatz": "ehrenplatz", "ehrenreich": "ehrenreich", "ehrenstellen": "ehrenstell", "ehrenstellung": "ehrenstell", "ehrentitel": "ehrentitel", "ehrenwerte": "ehrenwert", "ehrerbietig": "ehrerbiet", "ehrerbietung": "ehrerbiet", "ehrest": "ehr", "ehrfurcht": "ehrfurcht", "ehrfurchtsvolle": "ehrfurchtsvoll", "ehrgeizigen": "ehrgeiz", "ehrgeiziger": "ehrgeiz", "ehrlich": "ehrlich", "ehrliche": "ehrlich", "ehrlichen": "ehrlich", "ehrlicher": "ehrlich", "ehrlichkeit": "ehrlich", "ehrsame": "ehrsam", "ehrsames": "ehrsam", "ehrt": "ehrt", "ehrte": "ehrt", "ehrvergessenen": "ehrvergess", "ehrwürdig": "ehrwurd", "ehrwürdige": "ehrwurd", "ehrwürdiger": "ehrwurd", "ei": "ei", "eia": "eia", "eibenbäumchen": "eibenbaumch", "eiche": "eich", "eichen": "eich", "eichenast": "eichenast", "eichendorff": "eichendorff", "eichenen": "eich", "eichenstämme": "eichenstamm", "eichentisch": "eichent", "eichhörnchen": "eichhornch", "eichkatzl": "eichkatzl", "eichwald": "eichwald", "eiden": "eid", "eidgenossenschaft": "eidgenossenschaft", "eidgenössische": "eidgenoss", "eidgenössischen": "eidgenoss", "eier": "eier", "eierbecher": "eierbech", "eierbrot": "eierbrot", "eierkuchen": "eierkuch", "eierkuchens": "eierkuch", "eierlast": "eierlast", "eiern": "eiern", "eiertanz": "eiertanz", "eifer": "eif", "eifers": "eif", "eifersucht": "eifersucht", "eifersüchtig": "eifersucht", "eiferten": "eifert", "eiffelturm": "eiffelturm", "eifrig": "eifrig", "eifrige": "eifrig", "eifrigen": "eifrig", "eifriger": "eifrig", "eifrigsten": "eifrig", "eigen": "eig", "eigenanteile": "eigenanteil", "eigenartige": "eigenart", "eigendünkel": "eigendunkel", "eigene": "eig", "eigenem": "eig", "eigenen": "eig", "eigener": "eig", "eigenes": "eig", "eigenhändig": "eigenhand", "eigenheiten": "eig", "eigenliebe": "eigenlieb", "eigenliebige": "eigenlieb", "eigenname": "eigennam", "eigennutz": "eigennutz", "eigennützige": "eigennutz", "eigennützigen": "eigennutz", "eigennütziger": "eigennutz", "eigens": "eig", "eigenschafren": "eigenschafr", "eigenschaft": "eigenschaft", "eigenschaften": "eigenschaft", "eigenschaftung": "eigenschaft", "eigensinn": "eigensinn", "eigensinnig": "eigensinn", "eigensinnigen": "eigensinn", "eigensinniger": "eigensinn", "eigenst": "eigen", "eigenste": "eigen", "eigensten": "eigen", "eigenstes": "eigen", "eigensüchtigen": "eigensucht", "eigentlich": "eigent", "eigentliche": "eigent", "eigentlichen": "eigent", "eigentliches": "eigent", "eigentlichst": "eigent", "eigentlichste": "eigent", "eigentum": "eigentum", "eigentümer": "eigentum", "eigentümers": "eigentum", "eigentümlich": "eigentum", "eigentümliche": "eigentum", "eigentümlichem": "eigentum", "eigentümlichen": "eigentum", "eigentümlicher": "eigentum", "eigentümlicherweise": "eigentumlicherweis", "eigentümliches": "eigentum", "eigentümlichkeit": "eigentum", "eigentümlichkeiten": "eigentum", "eigentums": "eigentum", "eigenwillen": "eigenwill", "eigne": "eign", "eignen": "eign", "eignet": "eignet", "eignungsprüfung": "eignungspruf", "eil": "eil", "eilanden": "eiland", "eile": "eil", "eilen": "eil", "eilend": "eilend", "eilenden": "eilend", "eilender": "eilend", "eilendes": "eilend", "eilends": "eilend", "eilet": "eilet", "eilfertig": "eilfert", "eilig": "eilig", "eiligen": "eilig", "eiligst": "eilig", "eilt": "eilt", "eilte": "eilt", "eilten": "eilt", "eim": "eim", "eimer": "eim", "eimern": "eim", "eimers": "eim", "ein": "ein", "einander": "einand", "einband": "einband", "einbanddeckel": "einbanddeckel", "einberufung": "einberuf", "einbilde": "einbild", "einbilden": "einbild", "einbildete": "einbildet", "einbildeten": "einbildet", "einbildung": "einbild", "einbildungen": "einbild", "einbildungskraft": "einbildungskraft", "einblick": "einblick", "einbrächten": "einbracht", "einbrechende": "einbrech", "einbringen": "einbring", "einbringt": "einbringt", "einbringung": "einbring", "einbruch": "einbruch", "einbürgern": "einburg", "einbusse": "einbuss", "einbuße": "einbuss", "einbüssung": "einbuss", "einchecken": "eincheck", "eincheckens": "eincheck", "eindeutig": "eindeut", "eindrang": "eindrang", "eindringe": "eindring", "eindringen": "eindring", "eindringendsten": "eindring", "eindringlich": "eindring", "eindringlichen": "eindring", "eindringlichkeit": "eindring", "eindringlinge": "eindringling", "eindringt": "eindringt", "eindruck": "eindruck", "eindrücken": "eindruck", "eine": "ein", "eineinviertel": "eineinviertel", "einem": "ein", "einen": "ein", "einer": "ein", "einerlei": "einerlei", "einerleiheit": "einerlei", "einernten": "einernt", "einerseits": "einerseit", "eines": "ein", "einesteils": "einesteil", "einfach": "einfach", "einfachbauweise": "einfachbauweis", "einfache": "einfach", "einfachen": "einfach", "einfacher": "einfach", "einfaches": "einfach", "einfachheit": "einfach", "einfachste": "einfach", "einfachsten": "einfach", "einfahrt": "einfahrt", "einfall": "einfall", "einfälle": "einfall", "einfallen": "einfall", "einfällt": "einfallt", "einfalt": "einfalt", "einfältig": "einfalt", "einfältige": "einfalt", "einfältigem": "einfalt", "einfältigen": "einfalt", "einfältiger": "einfalt", "einfältiges": "einfalt", "einfand": "einfand", "einfanden": "einfand", "einfange": "einfang", "einfangen": "einfang", "einfasste": "einfasst", "einfenstrige": "einfenstr", "einfenstriges": "einfenstr", "einfiel": "einfiel", "einfinden": "einfind", "einfindet": "einfindet", "einfliesse": "einfliess", "einfließe": "einfliess", "einfliessen": "einfliess", "einfließen": "einfliess", "einfliessende": "einfliess", "einfließende": "einfliess", "einfliessenden": "einfliess", "einfließenden": "einfliess", "einfliessendes": "einfliess", "einfließendes": "einfliess", "einfliesst": "einfliesst", "einfließt": "einfliesst", "einfloss": "einfloss", "einfloß": "einfloss", "einflösse": "einfloss", "einflöße": "einfloss", "einflössen": "einfloss", "einflößen": "einfloss", "einflösst": "einflosst", "einflößt": "einflosst", "einflössten": "einflosst", "einflößten": "einflosst", "einflössung": "einfloss", "einflößung": "einfloss", "einfluss": "einfluss", "einfluß": "einfluss", "einflusse": "einfluss", "einflüsse": "einfluss", "einflusses": "einfluss", "einflussreiche": "einflussreich", "einflußreiche": "einflussreich", "einflussreichen": "einflussreich", "einflußreichen": "einflussreich", "einflüstern": "einflust", "einförmig": "einform", "einförmige": "einform", "einfühlungsvermögen": "einfuhlungsvermog", "einfuhr": "einfuhr", "einführen": "einfuhr", "einführung": "einfuhr", "eingab": "eingab", "eingabe": "eingab", "eingaben": "eingab", "eingang": "eingang", "eingange": "eingang", "eingänge": "eingang", "eingangen": "eingang", "eingängen": "eingang", "eingangstor": "eingangstor", "eingangstür": "eingangstur", "eingeäscherten": "eingeaschert", "eingebildet": "eingebildet", "eingebildete": "eingebildet", "eingebildeten": "eingebildet", "eingebildetes": "eingebildet", "eingeblasen": "eingeblas", "eingebogen": "eingebog", "eingeborene": "eingebor", "eingeborenen": "eingebor", "eingebracht": "eingebracht", "eingebunden": "eingebund", "eingebung": "eingeb", "eingebüsst": "eingebusst", "eingedämmt": "eingedammt", "eingedenk": "eingedenk", "eingedrückten": "eingedruckt", "eingefahren": "eingefahr", "eingefallen": "eingefall", "eingefasst": "eingefasst", "eingefaßt": "eingefasst", "eingefleischten": "eingefleischt", "eingeflochten": "eingeflocht", "eingeflösst": "eingeflosst", "eingeflößt": "eingeflosst", "eingeflösste": "eingeflosst", "eingeflößte": "eingeflosst", "eingeflösstes": "eingeflosst", "eingeflößtes": "eingeflosst", "eingefügt": "eingefugt", "eingeführt": "eingefuhrt", "eingefunden": "eingefund", "eingegangen": "eingegang", "eingegangenen": "eingegang", "eingegeben": "eingegeb", "eingegebnen": "eingegebn", "eingegitterten": "eingegittert", "eingegraben": "eingegrab", "eingehandelt": "eingehandelt", "eingehängt": "eingehangt", "eingehaucht": "eingehaucht", "eingehen": "eingeh", "eingehenden": "eingeh", "eingehet": "eingehet", "eingeholt": "eingeholt", "eingeht": "eingeht", "eingehüllt": "eingehullt", "eingekauft": "eingekauft", "eingeklebt": "eingeklebt", "eingekleidet": "eingekleidet", "eingeklemmt": "eingeklemmt", "eingekniffenem": "eingekniff", "eingeladen": "eingelad", "eingelassen": "eingelass", "eingelassenen": "eingelass", "eingelassenwerden": "eingelassenwerd", "eingelegt": "eingelegt", "eingelegte": "eingelegt", "eingeleitet": "eingeleitet", "eingeleitete": "eingeleitet", "eingemachte": "eingemacht", "eingemengt": "eingemengt", "eingemischt": "eingemischt", "eingenommen": "eingenomm", "eingenommenen": "eingenomm", "eingepackt": "eingepackt", "eingepackten": "eingepackt", "eingepferchte": "eingepfercht", "eingepflanzt": "eingepflanzt", "eingepflanzte": "eingepflanzt", "eingepflanzten": "eingepflanzt", "eingepflanztes": "eingepflanzt", "eingepfropfte": "eingepfropft", "eingeprägt": "eingepragt", "eingeräumt": "eingeraumt", "eingeräumte": "eingeraumt", "eingeredet": "eingeredet", "eingeredeten": "eingeredet", "eingereiht": "eingereiht", "eingerichtet": "eingerichtet", "eingerichteten": "eingerichtet", "eingerichtetes": "eingerichtet", "eingerissenes": "eingeriss", "eingesät": "eingesat", "eingeschenkten": "eingeschenkt", "eingeschlafen": "eingeschlaf", "eingeschlagen": "eingeschlag", "eingeschlagenen": "eingeschlag", "eingeschlossen": "eingeschloss", "eingeschlossene": "eingeschloss", "eingeschlossenen": "eingeschloss", "eingeschmiert": "eingeschmiert", "eingeschossen": "eingeschoss", "eingeschränkt": "eingeschrankt", "eingeschränkten": "eingeschrankt", "eingeschrieben": "eingeschrieb", "eingeschriebene": "eingeschrieb", "eingeschüchterten": "eingeschuchtert", "eingeschult": "eingeschult", "eingesehen": "eingeseh", "eingesetzt": "eingesetzt", "eingesperrt": "eingesperrt", "eingeständlich": "eingestand", "eingestehe": "eingesteh", "eingestehen": "eingesteh", "eingestellt": "eingestellt", "eingestreut": "eingestreut", "eingetan": "eingetan", "eingeteilt": "eingeteilt", "eingetragen": "eingetrag", "eingetreten": "eingetret", "eingetrieben": "eingetrieb", "eingetrockneten": "eingetrocknet", "eingetroffen": "eingetroff", "eingetürmt": "eingeturmt", "eingeübt": "eingeubt", "eingeübten": "eingeubt", "eingeweide": "eingeweid", "eingeweiden": "eingeweid", "eingeweiht": "eingeweiht", "eingeweihten": "eingeweiht", "eingewickelte": "eingewickelt", "eingewirkt": "eingewirkt", "eingewobene": "eingewob", "eingeworfene": "eingeworf", "eingewurzelt": "eingewurzelt", "eingewurzelte": "eingewurzelt", "eingezogen": "eingezog", "eingezogenheit": "eingezog", "eingezwängt": "eingezwangt", "eingiessen": "eingiess", "eingießen": "eingiess", "eingingen": "einging", "eingoss": "eingoss", "eingoß": "eingoss", "eingossen": "eingoss", "eingraben": "eingrab", "eingreifen": "eingreif", "eingreifens": "eingreif", "eingriff": "eingriff", "eingschlafen": "eingschlaf", "eingsperrt": "eingsperrt", "eingstanden": "eingstand", "einhängen": "einhang", "einhauchen": "einhauch", "einheimische": "einheim", "einheimsen": "einheims", "einheit": "einheit", "einheiten": "einheit", "einheitenkillenden": "einheitenkill", "einhellig": "einhell", "einher": "einh", "einherfährt": "einherfahrt", "einhergejagt": "einhergejagt", "einherging": "einherging", "einherkrabbelte": "einherkrabbelt", "einherliefen": "einherlief", "einherschritt": "einherschritt", "einherspringen": "einherspring", "einhertanzten": "einhertanzt", "einholen": "einhol", "einhorn": "einhorn", "einhundertvierunddreißigmal": "einhundertvierunddreissigmal", "einhundertzwanzig": "einhundertzwanz", "eini": "eini", "einifoahrn": "einifoahrn", "einig": "einig", "einige": "einig", "einigem": "einig", "einigemal": "einigemal", "einigen": "einig", "einiger": "einig", "einigermassen": "einigermass", "einigermaßen": "einigermass", "einiges": "einig", "einigkeit": "einig", "einigsprungen": "einigspr", "einigten": "einigt", "einikommt": "einikommt", "einischütten": "einischutt", "einispringen": "einispring", "einjagt": "einjagt", "einjährige": "einjahr", "einkassierte": "einkassiert", "einkauf": "einkauf", "einkäufe": "einkauf", "einkaufen": "einkauf", "einkaufszentrum": "einkaufszentrum", "einkaufszentrumdie": "einkaufszentrumdi", "einkehr": "einkehr", "einkehren": "einkehr", "einkleben": "einkleb", "einkommen": "einkomm", "einkommens": "einkomm", "einkommensunterschiede": "einkommensunterschied", "einkrümmung": "einkrumm", "einkünfte": "einkunft", "einladend": "einlad", "einladung": "einlad", "einlassen": "einlass", "einlässt": "einlasst", "einläßt": "einlasst", "einlaufen": "einlauf", "einlegte": "einlegt", "einleitenden": "einleit", "einleitendes": "einleit", "einleitung": "einleit", "einlenkte": "einlenkt", "einleuchten": "einleucht", "einleuchtend": "einleucht", "einlud": "einlud", "einluden": "einlud", "einmal": "einmal", "einmalige": "einmal", "einmaliger": "einmal", "einmengende": "einmeng", "einmischt": "einmischt", "einmischte": "einmischt", "einnahm": "einnahm", "einnahmen": "einnahm", "einnahmenüberschuss": "einnahmenuberschuss", "einnehme": "einnehm", "einnehmen": "einnehm", "einnimmt": "einnimmt", "einöde": "einod", "einöden": "einod", "einpersonenhaushalte": "einpersonenhaushalt", "einpflanzt": "einpflanzt", "einpflanzte": "einpflanzt", "einpflanzung": "einpflanz", "einpfropfung": "einpfropf", "einprägte": "einpragt", "einprägten": "einpragt", "einquartierungen": "einquartier", "einräumen": "einraum", "einräumte": "einraumt", "einreden": "einred", "einredet": "einredet", "einreissen": "einreiss", "einreisst": "einreisst", "einrichten": "einricht", "einrichtet": "einrichtet", "einrichtung": "einricht", "einrichtungen": "einricht", "einrichtungsfanatikern": "einrichtungsfanat", "einrückte": "einruckt", "eins": "ein", "einsah": "einsah", "einsähe": "einsah", "einsam": "einsam", "einsame": "einsam", "einsamen": "einsam", "einsames": "einsam", "einsamkeit": "einsam", "einsamkeiten": "einsam", "einsammeln": "einsammeln", "einsamsten": "einsam", "einsatz": "einsatz", "einsatze": "einsatz", "einsaugt": "einsaugt", "einschätzung": "einschatz", "einschenken": "einschenk", "einschlafen": "einschlaf", "einschläft": "einschlaft", "einschlagen": "einschlag", "einschleichen": "einschleich", "einschlief": "einschlief", "einschliefen": "einschlief", "einschliessen": "einschliess", "einschließen": "einschliess", "einschliesst": "einschliesst", "einschließt": "einschliesst", "einschlossen": "einschloss", "einschlug": "einschlug", "einschmeichelnd": "einschmeichelnd", "einschmeichelndsten": "einschmeichelnd", "einschmuggelten": "einschmuggelt", "einschränke": "einschrank", "einschränken": "einschrank", "einschränkende": "einschrank", "einschränkenden": "einschrank", "einschränkt": "einschrankt", "einschränkung": "einschrank", "einschränkungen": "einschrank", "einschreiten": "einschreit", "einsehen": "einseh", "einseht": "einseht", "einseitige": "einseit", "einsetzen": "einsetz", "einsetzte": "einsetzt", "einsetzung": "einsetz", "einsicht": "einsicht", "einsichten": "einsicht", "einsichtsfähigkeit": "einsichtsfah", "einsichtsvoll": "einsichtsvoll", "einsichtsvolle": "einsichtsvoll", "einsichtsvollen": "einsichtsvoll", "einsichtsvolleren": "einsichtsvoll", "einsiedler": "einsiedl", "einsieht": "einsieht", "einsilbig": "einsilb", "einsilbigen": "einsilb", "einsilbiger": "einsilb", "einsilbiges": "einsilb", "einsinkt": "einsinkt", "einsmals": "einsmal", "einsogen": "einsog", "einspänner": "einspann", "einsperrte": "einsperrt", "einsprache": "einsprach", "einsprechen": "einsprech", "einst": "einst", "einsteckte": "einsteckt", "einstellen": "einstell", "einstellt": "einstellt", "einstiges": "einstig", "einstimmen": "einstimm", "einstimmig": "einstimm", "einstimmige": "einstimm", "einstimmung": "einstimm", "einstudierten": "einstudiert", "einstündige": "einstund", "einstweilen": "einstweil", "einstweilige": "einstweil", "eintägigen": "eintag", "eintauche": "eintauch", "eintausend": "eintaus", "einteilen": "einteil", "einteilenden": "einteil", "einteilung": "einteil", "eintönig": "einton", "eintönigen": "einton", "eintöniger": "einton", "eintraccht": "eintraccht", "eintracht": "eintracht", "einträchtig": "eintracht", "einträchtiger": "eintracht", "eintrafen": "eintraf", "eintrag": "eintrag", "eintragt": "eintragt", "eintrat": "eintrat", "eintraten": "eintrat", "eintreffen": "eintreff", "eintreiben": "eintreib", "eintrete": "eintret", "eintreten": "eintret", "eintretende": "eintret", "eintretenden": "eintret", "eintretens": "eintret", "eintrieb": "eintrieb", "eintrieben": "eintrieb", "eintrinken": "eintrink", "eintritt": "eintritt", "eintritte": "eintritt", "eintrittskarte": "eintrittskart", "einunddreissigsten": "einunddreiss", "einunddreißigsten": "einunddreiss", "einundsechzigjährige": "einundsechzigjahr", "einverleibt": "einverleibt", "einvernahme": "einvernahm", "einvernahmen": "einvernahm", "einverstanden": "einverstand", "einverständnis": "einverstandnis", "einwand": "einwand", "einwände": "einwand", "einwanderer": "einwand", "einwanderungsland": "einwanderungsland", "einwandfrei": "einwandfrei", "einwandfreien": "einwandfrei", "einwärts": "einwart", "einweihen": "einweih", "einweihung": "einweih", "einweihungen": "einweih", "einwende": "einwend", "einwendung": "einwend", "einwendungen": "einwend", "einwickelpapier": "einwickelpapi", "einwilligung": "einwill", "einwirken": "einwirk", "einwirkt": "einwirkt", "einwirkte": "einwirkt", "einwirkung": "einwirk", "einwohner": "einwohn", "einwohnerin": "einwohnerin", "einwürfe": "einwurf", "einwurzelt": "einwurzelt", "einzahl": "einzahl", "einzahlen": "einzahl", "einzelfragen": "einzelfrag", "einzelheit": "einzel", "einzelheiten": "einzel", "einzeln": "einzeln", "einzelne": "einzeln", "einzelnen": "einzeln", "einzelner": "einzeln", "einzelnes": "einzeln", "einzelnheiten": "einzeln", "einzelnste": "einzeln", "einzelnsten": "einzeln", "einziehen": "einzieh", "einzig": "einzig", "einzige": "einzig", "einzigem": "einzig", "einzigen": "einzig", "einziger": "einzig", "einziges": "einzig", "einzog": "einzog", "einzubalsamieren": "einzubalsami", "einzubilden": "einzubild", "einzubohren": "einzubohr", "einzubürgern": "einzuburg", "einzudringen": "einzudring", "einzufinden": "einzufind", "einzuflössen": "einzufloss", "einzuflößen": "einzufloss", "einzuführen": "einzufuhr", "einzug": "einzug", "einzugehen": "einzugeh", "einzugehn": "einzugehn", "einzuges": "einzug", "einzugestehen": "einzugesteh", "einzugreifen": "einzugreif", "einzuhängen": "einzuhang", "einzuholen": "einzuhol", "einzuknöpfen": "einzuknopf", "einzulassen": "einzulass", "einzuräumen": "einzuraum", "einzureichen": "einzureich", "einzureiten": "einzureit", "einzuschlagen": "einzuschlag", "einzuschüchtern": "einzuschucht", "einzusehen": "einzuseh", "einzusperren": "einzusperr", "einzustehen": "einzusteh", "einzutreffen": "einzutreff", "einzutreten": "einzutret", "einzuwenden": "einzuw", "einzuwerfen": "einzuwerf", "einzuwirken": "einzuwirk", "einzuwühlen": "einzuwuhl", "einzuziehen": "einzuzieh", "eis": "eis", "eisbärenmässig": "eisbarenmass", "eisblumensträusschen": "eisblumenstraussch", "eisekalt": "eisekalt", "eisen": "eis", "eisenbahn": "eisenbahn", "eisenbahnkönige": "eisenbahnkon", "eisengeschienten": "eisengeschient", "eisenhaken": "eisenhak", "eisenhut": "eisenhut", "eisenketten": "eisenkett", "eisenkörben": "eisenkorb", "eisens": "eis", "eisenschimmel": "eisenschimmel", "eisenstange": "eisenstang", "eisenwerk": "eisenwerk", "eiserne": "eisern", "eiserner": "eisern", "eisgeschwister": "eisgeschwist", "eisgeschwistern": "eisgeschwist", "eisgraue": "eisgrau", "eisgrauer": "eisgrau", "eisig": "eisig", "eiskalten": "eiskalt", "eiskalter": "eiskalt", "eiskristallen": "eiskristall", "eismax": "eismax", "eisschloss": "eisschloss", "eitel": "eitel", "eitelkeit": "eitel", "eitelkeiten": "eitel", "eiteln": "eiteln", "eitle": "eitl", "eitlen": "eitl", "eitler": "eitl", "eitles": "eitl", "eitrig": "eitrig", "ekd": "ekd", "ekelhafter": "ekelhaft", "ekeln": "ekeln", "ekels": "ekel", "ekelte": "ekelt", "ekkehard": "ekkehard", "elastisch": "elast", "elastisches": "elast", "elater": "elat", "eleasar": "eleasar", "elefant": "elefant", "elefanten": "elefant", "elefantenzähnen": "elefantenzahn", "elegant": "elegant", "elegante": "elegant", "elegantem": "elegant", "eleganten": "elegant", "elektrische": "elektr", "elektrischen": "elektr", "elektrizität": "elektrizitat", "element": "element", "elementarbegriffe": "elementarbegriff", "elementare": "elementar", "elementarfeuer": "elementarfeu", "elementarlehre": "elementarlehr", "elemente": "element", "elements": "element", "elenchis": "elenchis", "elend": "elend", "elende": "elend", "elenden": "elend", "elender": "elend", "elenderfüllten": "elenderfullt", "elendern": "elend", "elendes": "elend", "elendiglich": "elendig", "elends": "elend", "elf": "elf", "elfenbein": "elfenbein", "elfenbeinfarbenen": "elfenbeinfarb", "elfjährigen": "elfjahr", "elften": "elft", "elias": "elias", "elisa": "elisa", "elisabeth": "elisabeth", "elisabethen": "elisabeth", "elisabethenkrankenhaus": "elisabethenkrankenhaus", "eliseba": "eliseba", "elkanah": "elkanah", "ellbög": "ellbog", "ellbogen": "ellbog", "elle": "ell", "ellen": "ell", "ellenbogen": "ellenbog", "elmsfeuerchen": "elmsfeuerch", "elohim": "elohim", "eltern": "elt", "elternhauses": "elternhaus", "elternpaar": "elternpaar", "elzaphan": "elzaphan", "emanuel": "emanuel", "emanuela": "emanuela", "emes": "emes", "emigranten": "emigrant", "emigrierten": "emigriert", "emim": "emim", "emin": "emin", "eminenten": "eminent", "eminonü": "eminonu", "emmeline": "emmelin", "empfahl": "empfahl", "empfand": "empfand", "empfanden": "empfand", "empfänden": "empfand", "empfang": "empfang", "empfangen": "empfang", "empfangene": "empfang", "empfangenen": "empfang", "empfänglichkeit": "empfang", "empfängnis": "empfangnis", "empfängnisse": "empfangnis", "empfangszimmer": "empfangszimm", "empfängt": "empfangt", "empfehlen": "empfehl", "empfehlende": "empfehl", "empfehlung": "empfehl", "empfiehlt": "empfiehlt", "empfinde": "empfind", "empfinden": "empfind", "empfindenden": "empfind", "empfindet": "empfindet", "empfindlich": "empfind", "empfindliches": "empfind", "empfindsamen": "empfindsam", "empfindsamkeit": "empfindsam", "empfindung": "empfind", "empfindungen": "empfind", "empfindungszustand": "empfindungszustand", "empfing": "empfing", "empfingen": "empfing", "empfmg": "empfmg", "empfohlen": "empfohl", "empfunden": "empfund", "emphatisch": "emphat", "empirisch": "empir", "empirische": "empir", "empirischen": "empir", "empirischer": "empir", "empirisches": "empir", "empirismus": "empirismus", "empor": "empor", "empörend": "empor", "empörender": "empor", "emporgehoben": "emporgehob", "emporgeschossene": "emporgeschoss", "emporgestiegen": "emporgestieg", "emporhebt": "emporhebt", "emporhob": "emporhob", "emporkommen": "emporkomm", "emporkömmlinge": "emporkommling", "emporragte": "emporragt", "emporragten": "emporragt", "emporschwangen": "emporschwang", "emporschwimmt": "emporschwimmt", "emporstarren": "emporstarr", "empört": "emport", "emportauchen": "emportauch", "empörter": "emport", "emportürmte": "emporturmt", "emporzuheben": "emporzuheb", "emporzutragen": "emporzutrag", "emsig": "emsig", "emsigkeit": "emsig", "emsigsten": "emsig", "en": "en", "enakim": "enakim", "enaks": "enak", "end": "end", "endchen": "endch", "ende": "end", "enden": "end", "endete": "endet", "endgültig": "endgult", "endgültige": "endgult", "endgültigen": "endgult", "endigen": "endig", "endigt": "endigt", "endigte": "endigt", "endlich": "endlich", "endliche": "endlich", "endlichen": "endlich", "endlicher": "endlich", "endliches": "endlich", "endlichkeit": "endlich", "endlos": "endlos", "endlosen": "endlos", "endoxa": "endoxa", "endpunkt": "endpunkt", "endpunkte": "endpunkt", "endstücke": "endstuck", "endzweck": "endzweck", "enen": "enen", "energie": "energi", "energisch": "energ", "energischer": "energ", "energisches": "energ", "eng": "eng", "engadiner": "engadin", "engagement": "engagement", "engagieren": "engagi", "engagiert": "engagiert", "engagierte": "engagiert", "engagierter": "engagiert", "enge": "eng", "engedi": "engedi", "engel": "engel", "engelartig": "engelart", "engelchören": "engelchor", "engelgeister": "engelgeist", "engelgeistes": "engelgeist", "engelische": "engel", "engelischen": "engel", "engelland": "engelland", "engeln": "engeln", "engels": "engel", "engelscharen": "engelschar", "engelsgeistern": "engelsgeist", "engelshimmel": "engelshimmel", "engelsrede": "engelsred", "engelstimmchen": "engelstimmch", "engelswesen": "engelswes", "engen": "eng", "enger": "eng", "engere": "eng", "engeren": "eng", "engerer": "eng", "england": "england", "engländer": "england", "engländern": "england", "englisch": "englisch", "englische": "englisch", "englischen": "englisch", "englischer": "englisch", "englisches": "englisch", "englischlehrerin": "englischlehrerin", "englischsprachige": "englischsprach", "englischsprachigen": "englischsprach", "english": "english", "engschlucht": "engschlucht", "engste": "engst", "engsten": "engst", "engtälern": "engtal", "enim": "enim", "enk": "enk", "enkel": "enkel", "enkelin": "enkelin", "enosch": "enosch", "enoschs": "enosch", "ent": "ent", "entartung": "entart", "entbehren": "entbehr", "entbehrlich": "entbehr", "entbehrt": "entbehrt", "entbehrte": "entbehrt", "entbehrung": "entbehr", "entblösst": "entblosst", "entblößt": "entblosst", "entbrannt": "entbrannt", "entbrannte": "entbrannt", "entbrannten": "entbrannt", "entbrennen": "entbrenn", "entdecken": "entdeck", "entdecker": "entdeck", "entdeckt": "entdeckt", "entdeckte": "entdeckt", "entdeckten": "entdeckt", "entdeckung": "entdeck", "entehrt": "entehrt", "enten": "ent", "entenadler": "entenadl", "entenfüssen": "entenfuss", "enterben": "enterb", "entfallen": "entfall", "entfalten": "entfalt", "entfaltet": "entfaltet", "entfaltete": "entfaltet", "entfärbt": "entfarbt", "entferne": "entfern", "entfernen": "entfern", "entfernet": "entfernet", "entfernst": "entfern", "entfernt": "entfernt", "entfernte": "entfernt", "entfernten": "entfernt", "entfernter": "entfernt", "entfernteres": "entfernt", "entferntesten": "entfernt", "entferntwerden": "entferntwerd", "entfernung": "entfern", "entfernungen": "entfern", "entfessle": "entfessl", "entfeßle": "entfessl", "entflammen": "entflamm", "entfliehen": "entflieh", "entfloh": "entfloh", "entflohen": "entfloh", "entflohene": "entfloh", "entflohenen": "entfloh", "entfremdet": "entfremdet", "entfremdete": "entfremdet", "entfremdetem": "entfremdet", "entfremdeten": "entfremdet", "entfremdung": "entfremd", "entführten": "entfuhrt", "entgangen": "entgang", "entgegen": "entgeg", "entgegenarbeiten": "entgegenarbeit", "entgegenbringen": "entgegenbring", "entgegeneilen": "entgegeneil", "entgegenflossen": "entgegenfloss", "entgegengefahren": "entgegengefahr", "entgegengehen": "entgegengeh", "entgegengekehrt": "entgegengekehrt", "entgegengesetzt": "entgegengesetzt", "entgegengesetzte": "entgegengesetzt", "entgegengesetzten": "entgegengesetzt", "entgegengesetzter": "entgegengesetzt", "entgegengesetztes": "entgegengesetzt", "entgegengetreten": "entgegengetret", "entgegenhandle": "entgegenhandl", "entgegenhielt": "entgegenhielt", "entgegenkam": "entgegenkam", "entgegenkommen": "entgegenkomm", "entgegenkommende": "entgegenkomm", "entgegennehmen": "entgegennehm", "entgegensetzen": "entgegensetz", "entgegensetzt": "entgegensetzt", "entgegensetzung": "entgegensetz", "entgegenstehende": "entgegensteh", "entgegensteht": "entgegensteht", "entgegenstellen": "entgegenstell", "entgegenstellte": "entgegenstellt", "entgegenstreckte": "entgegenstreckt", "entgegenstrich": "entgegenstrich", "entgegentrat": "entgegentrat", "entgegenwandernd": "entgegenwandernd", "entgegenzusehen": "entgegenzuseh", "entgegnete": "entgegnet", "entgehe": "entgeh", "entgehen": "entgeh", "entgeht": "entgeht", "entgeld": "entgeld", "entging": "entging", "entgleiten": "entgleit", "enthält": "enthalt", "enthalte": "enthalt", "enthalten": "enthalt", "enthaltende": "enthalt", "enthaltenden": "enthalt", "enthaltene": "enthalt", "enthaltsam": "enthaltsam", "enthaltsamkeit": "enthaltsam", "entheiligt": "entheiligt", "entheiligung": "entheil", "entheiligungen": "entheil", "enthielt": "enthielt", "enthielte": "enthielt", "enthielten": "enthielt", "enthoben": "enthob", "enthüllen": "enthull", "enthüllt": "enthullt", "enthusiasmus": "enthusiasmus", "enthusiasten": "enthusiast", "entkam": "entkam", "entkleidet": "entkleidet", "entkleidete": "entkleidet", "entkleideten": "entkleidet", "entkommen": "entkomm", "entkommene": "entkomm", "entkorkten": "entkorkt", "entkräften": "entkraft", "entkräfteter": "entkraftet", "entlang": "entlang", "entlanggerast": "entlanggerast", "entlass": "entlass", "entlaß": "entlass", "entlasse": "entlass", "entlassen": "entlass", "entlässest": "entlass", "entlässet": "entlasset", "entlässt": "entlasst", "entläßt": "entlasst", "entlassung": "entlass", "entlassungen": "entlass", "entlastet": "entlastet", "entlastetder": "entlastetd", "entledigen": "entled", "entledigt": "entledigt", "entledigung": "entled", "entleeren": "entle", "entleerte": "entleert", "entleerten": "entleert", "entlegene": "entleg", "entlegenen": "entleg", "entlegenste": "entlegen", "entlehnen": "entlehn", "entlehnten": "entlehnt", "entliess": "entliess", "entließ": "entliess", "entliessen": "entliess", "entlocken": "entlock", "entlockte": "entlockt", "entlohnen": "entlohn", "entnahm": "entnahm", "entnehmen": "entnehm", "entnommen": "entnomm", "entpuppte": "entpuppt", "entränne": "entrann", "entreissen": "entreiss", "entreißen": "entreiss", "entrinnen": "entrinn", "entriss": "entriss", "entrissen": "entriss", "entronnenen": "entronn", "entrüstet": "entrustet", "entrüstung": "entrust", "entsage": "entsag", "entsagen": "entsag", "entsagens": "entsag", "entsagung": "entsag", "entsagungsfähigkeit": "entsagungsfah", "entsandet": "entsandet", "entschädigen": "entschad", "entschädigung": "entschad", "entscheiden": "entscheid", "entscheidend": "entscheid", "entscheidende": "entscheid", "entscheidenden": "entscheid", "entscheidender": "entscheid", "entscheidendes": "entscheid", "entscheidet": "entscheidet", "entscheidung": "entscheid", "entscheidungen": "entscheid", "entscheidungsgrund": "entscheidungsgrund", "entscheidungskampf": "entscheidungskampf", "entschiede": "entschied", "entschieden": "entschied", "entschiedene": "entschied", "entschiedenen": "entschied", "entschiedenheit": "entschied", "entschlafen": "entschlaf", "entschlief": "entschlief", "entschliessen": "entschliess", "entschliessung": "entschliess", "entschließung": "entschliess", "entschliessungen": "entschliess", "entschloss": "entschloss", "entschloß": "entschloss", "entschlossen": "entschloss", "entschlossene": "entschloss", "entschlossenen": "entschloss", "entschlossener": "entschloss", "entschlossenes": "entschloss", "entschlossenheit": "entschloss", "entschlüpfe": "entschlupf", "entschlüpfen": "entschlupf", "entschluss": "entschluss", "entschluß": "entschluss", "entschlusse": "entschluss", "entschuldige": "entschuld", "entschuldigen": "entschuld", "entschuldigende": "entschuld", "entschuldigt": "entschuldigt", "entschuldigung": "entschuld", "entschwand": "entschwand", "entschwebte": "entschwebt", "entschwindet": "entschwindet", "entschwunden": "entschwund", "entseelt": "entseelt", "entsetzen": "entsetz", "entsetzlich": "entsetz", "entsetzliche": "entsetz", "entsetzlichen": "entsetz", "entsetzliches": "entsetz", "entsetzt": "entsetzt", "entsinne": "entsinn", "entsinnen": "entsinn", "entsinnst": "entsinn", "entsittlichung": "entsittlich", "entspann": "entspann", "entspannt": "entspannt", "entsprach": "entsprach", "entspränge": "entsprang", "entsprangen": "entsprang", "entspreche": "entsprech", "entsprechen": "entsprech", "entsprechend": "entsprech", "entsprechende": "entsprech", "entsprechenden": "entsprech", "entsprechender": "entsprech", "entsprechendes": "entsprech", "entsprechung": "entsprech", "entsprechungen": "entsprech", "entsprechungsverhältnis": "entsprechungsverhaltnis", "entspricht": "entspricht", "entspringe": "entspring", "entspringen": "entspring", "entspringend": "entspring", "entspringt": "entspringt", "entsprungen": "entsprung", "entstand": "entstand", "entstände": "entstand", "entstanden": "entstand", "entstehe": "entsteh", "entstehen": "entsteh", "entstehende": "entsteh", "entstehens": "entsteh", "entstehn": "entstehn", "entsteht": "entsteht", "entstehung": "entsteh", "entstehungsursache": "entstehungsursach", "entstehungsursachen": "entstehungsursach", "entströmen": "entstrom", "entströmten": "entstromt", "entsündigen": "entsund", "entsündigung": "entsund", "enttäuschend": "enttausch", "enttäuschung": "enttausch", "enttäuschungen": "enttausch", "entvölkerte": "entvolkert", "entwaffnet": "entwaffnet", "entwand": "entwand", "entwarf": "entwarf", "entweder": "entwed", "entweicht": "entweicht", "entweihe": "entweih", "entweihen": "entweih", "entweiher": "entweih", "entweihern": "entweih", "entweiht": "entweiht", "entweihte": "entweiht", "entweihten": "entweiht", "entweihtes": "entweiht", "entweihung": "entweih", "entweihungen": "entweih", "entwendet": "entwendet", "entwendete": "entwendet", "entwerfen": "entwerf", "entwich": "entwich", "entwichen": "entwich", "entwichene": "entwich", "entwichenen": "entwich", "entwickeln": "entwickeln", "entwickelt": "entwickelt", "entwickelte": "entwickelt", "entwickelten": "entwickelt", "entwickelung": "entwickel", "entwicklung": "entwickl", "entwicklungen": "entwickl", "entwicklungsstufe": "entwicklungsstuf", "entwinden": "entwind", "entwirft": "entwirft", "entwischen": "entwisch", "entwischest": "entwisch", "entwöhnt": "entwohnt", "entwölkte": "entwolkt", "entworfen": "entworf", "entworfenen": "entworf", "entwürdigend": "entwurd", "entwurfes": "entwurf", "entziehen": "entzieh", "entziehung": "entzieh", "entzog": "entzog", "entzogen": "entzog", "entzögen": "entzog", "entzücken": "entzuck", "entzückend": "entzuck", "entzückt": "entzuckt", "entzünden": "entzund", "entzündete": "entzundet", "entzündliches": "entzund", "entzwei": "entzwei", "entzweigesägt": "entzweigesagt", "entzweiging": "entzweiging", "eorum": "eorum", "epd": "epd", "epha": "epha", "ephas": "ephas", "ephod": "ephod", "ephode": "ephod", "ephods": "ephod", "ephraim": "ephraim", "epidermis": "epidermis", "epijumhtikon": "epijumhtikon", "epikur": "epikur", "epikureer": "epikure", "epods": "epod", "er": "er", "erbarme": "erbarm", "erbarmen": "erbarm", "erbarmer": "erbarm", "erbärmlich": "erbarm", "erbärmliche": "erbarm", "erbärmlichen": "erbarm", "erbärmliches": "erbarm", "erbärmlichsten": "erbarm", "erbarmt": "erbarmt", "erbarmte": "erbarmt", "erbarmung": "erbarm", "erbarmungen": "erbarm", "erbarmungslosen": "erbarmungslos", "erbat": "erbat", "erbauer": "erbau", "erbaulich": "erbaulich", "erbaulichen": "erbaulich", "erbaulicher": "erbaulich", "erbauliches": "erbaulich", "erbaut": "erbaut", "erbaute": "erbaut", "erbauungsbuch": "erbauungsbuch", "erbböse": "erbbos", "erbbösen": "erbbos", "erbböses": "erbbos", "erbe": "erb", "erbeben": "erbeb", "erbebt": "erbebt", "erbebte": "erbebt", "erben": "erb", "erbes": "erb", "erbeten": "erbet", "erbetenen": "erbet", "erbeutete": "erbeutet", "erbeuteten": "erbeutet", "erbeutung": "erbeut", "erbfeind": "erbfeind", "erbgrafen": "erbgraf", "erbgüter": "erbgut", "erbherren": "erbherr", "erbherrn": "erbherrn", "erbinnen": "erbinn", "erbittere": "erbitt", "erbittert": "erbittert", "erblassen": "erblass", "erblasste": "erblasst", "erblassten": "erblasst", "erbleichende": "erbleich", "erbleichte": "erbleicht", "erblich": "erblich", "erbliche": "erblich", "erblicke": "erblick", "erblicken": "erblick", "erblickt": "erblickt", "erblickte": "erblickt", "erblindeten": "erblindet", "erbost": "erbost", "erboste": "erbost", "erbosten": "erbost", "erboster": "erbost", "erbracht": "erbracht", "erbrechen": "erbrech", "erbringen": "erbring", "erbschaft": "erbschaft", "erbschaften": "erbschaft", "erbsen": "erbs", "erbsenkost": "erbsenkost", "erbte": "erbt", "erbteil": "erbteil", "erbtum": "erbtum", "erdacht": "erdacht", "erdachten": "erdacht", "erdball": "erdball", "erdbeben": "erdbeb", "erdbeere": "erdbe", "erdboden": "erdbod", "erdbodens": "erdbod", "erde": "erd", "erden": "erd", "erdenken": "erdenk", "erdenklichen": "erdenk", "erdgeruch": "erdgeruch", "erdgeschoss": "erdgeschoss", "erdgeschoßwerkstätten": "erdgeschosswerkstatt", "erdharz": "erdharz", "erdharzes": "erdharz", "erdichten": "erdicht", "erdichtete": "erdichtet", "erdichtetem": "erdichtet", "erdichteten": "erdichtet", "erdichtetes": "erdichtet", "erdkreis": "erdkreis", "erdkreises": "erdkreis", "erdmolch": "erdmolch", "erdreich": "erdreich", "erdrosselt": "erdrosselt", "erdulden": "erduld", "erduldet": "erduldet", "erdwelle": "erdwell", "ereignen": "ereign", "ereignenden": "ereign", "ereignet": "ereignet", "ereignete": "ereignet", "ereignis": "ereignis", "ereignisse": "ereignis", "ereignissen": "ereignis", "ereignisses": "ereignis", "ererbt": "ererbt", "ererbten": "ererbt", "erfahre": "erfahr", "erfahren": "erfahr", "erfahrene": "erfahr", "erfahrenern": "erfahr", "erfahrner": "erfahrn", "erfährt": "erfahrt", "erfahrung": "erfahr", "erfahrungen": "erfahr", "erfahrungsbeweise": "erfahrungsbeweis", "erfahrungsfalle": "erfahrungsfall", "erfahrungsfolgen": "erfahrungsfolg", "erfahrungsgegenstände": "erfahrungsgegenstand", "erfahrungsgemäss": "erfahrungsgemass", "erfahrungsgemäß": "erfahrungsgemass", "erfahrungsurteilen": "erfahrungsurteil", "erfand": "erfand", "erfanden": "erfand", "erfassen": "erfass", "erfasst": "erfasst", "erfaßt": "erfasst", "erfasste": "erfasst", "erfinde": "erfind", "erfinden": "erfind", "erfindung": "erfind", "erfindungsgabe": "erfindungsgab", "erfindungsgenie": "erfindungsgeni", "erfindungsreiche": "erfindungsreich", "erfindungsreiches": "erfindungsreich", "erflehen": "erfleh", "erfolg": "erfolg", "erfolge": "erfolg", "erfolgen": "erfolg", "erfolgenden": "erfolg", "erfolges": "erfolg", "erfolglos": "erfolglos", "erfolglosen": "erfolglos", "erfolgreich": "erfolgreich", "erfolgsrezept": "erfolgsrezept", "erfolgt": "erfolgt", "erfolgte": "erfolgt", "erforderlich": "erford", "erforderliche": "erford", "erforderlichen": "erford", "erfordern": "erford", "erfordert": "erfordert", "erforderte": "erfordert", "erforsche": "erforsch", "erforschen": "erforsch", "erforscht": "erforscht", "erforschten": "erforscht", "erforschung": "erforsch", "erforschungen": "erforsch", "erfreuen": "erfreu", "erfreuete": "erfreuet", "erfreulich": "erfreulich", "erfreuliche": "erfreulich", "erfreut": "erfreut", "erfreute": "erfreut", "erfreuten": "erfreut", "erfrischen": "erfrisch", "erfrischte": "erfrischt", "erfrischung": "erfrisch", "erfroren": "erfror", "erfrorenen": "erfror", "erfuhr": "erfuhr", "erfuhren": "erfuhr", "erfüllen": "erfull", "erfüllet": "erfullet", "erfüllt": "erfullt", "erfüllte": "erfullt", "erfüllten": "erfullt", "erfüllung": "erfull", "erfunden": "erfund", "erfundenen": "erfund", "ergab": "ergab", "ergaben": "ergab", "ergangen": "ergang", "ergänzen": "erganz", "ergänzenden": "erganz", "ergänzt": "erganzt", "ergänzte": "erganzt", "ergänzung": "erganz", "ergänzungsband": "erganzungsband", "ergebe": "ergeb", "ergeben": "ergeb", "ergebenen": "ergeb", "ergebenheit": "ergeb", "ergebenst": "ergeben", "ergebnis": "ergebnis", "ergebnisse": "ergebnis", "ergebnissen": "ergebnis", "ergebung": "ergeb", "ergebungsvoll": "ergebungsvoll", "ergehen": "ergeh", "ergeht": "ergeht", "ergibt": "ergibt", "ergiebiger": "ergieb", "ergiessen": "ergiess", "ergießen": "ergiess", "ergiessung": "ergiess", "ergießung": "ergiess", "erging": "erging", "erglänzten": "erglanzt", "erglühen": "ergluh", "ergoss": "ergoss", "ergoß": "ergoss", "ergötzen": "ergotz", "ergötzlich": "ergotz", "ergötzt": "ergotzt", "ergötzte": "ergotzt", "ergötzten": "ergotzt", "ergötzung": "ergotz", "ergötzungen": "ergotz", "ergraute": "ergraut", "ergrauten": "ergraut", "ergreife": "ergreif", "ergreifen": "ergreif", "ergreifend": "ergreif", "ergreift": "ergreift", "ergriff": "ergriff", "ergriffen": "ergriff", "ergrimmt": "ergrimmt", "ergrübeln": "ergrubeln", "ergründen": "ergrund", "erhaben": "erhab", "erhabene": "erhab", "erhabenes": "erhab", "erhabenheit": "erhab", "erhabnen": "erhabn", "erhalt": "erhalt", "erhält": "erhalt", "erhalte": "erhalt", "erhalten": "erhalt", "erhaltende": "erhalt", "erhalter": "erhalt", "erhältst": "erhalt", "erhaltung": "erhalt", "erhandelt": "erhandelt", "erhängt": "erhangt", "erhängte": "erhangt", "erhärtet": "erhartet", "erhaschen": "erhasch", "erhebe": "erheb", "erheben": "erheb", "erhebend": "erheb", "erhebenden": "erheb", "erheblich": "erheb", "erheblichen": "erheb", "erheblichkeit": "erheb", "erhebst": "erheb", "erhebt": "erhebt", "erhebung": "erheb", "erhebungen": "erheb", "erheischt": "erheischt", "erhellen": "erhell", "erhellt": "erhellt", "erhellte": "erhellt", "erheucheltes": "erheuchelt", "erhielt": "erhielt", "erhielten": "erhielt", "erhieltst": "erhielt", "erhitzen": "erhitz", "erhitzt": "erhitzt", "erhitzten": "erhitzt", "erhob": "erhob", "erhoben": "erhob", "erhobenen": "erhob", "erhobener": "erhob", "erhofft": "erhofft", "erhofften": "erhofft", "erhöhen": "erhoh", "erhöht": "erhoht", "erhöhte": "erhoht", "erhöhten": "erhoht", "erhöhter": "erhoht", "erhöhung": "erhoh", "erholt": "erholt", "erholte": "erholt", "erholten": "erholt", "erholung": "erhol", "erholungspause": "erholungspaus", "erhörest": "erhor", "erhört": "erhort", "erich": "erich", "erinnere": "erinn", "erinnerlich": "erinn", "erinnern": "erinn", "erinnernd": "erinnernd", "erinnert": "erinnert", "erinnerte": "erinnert", "erinnerten": "erinnert", "erinnerung": "erinner", "erinnerungen": "erinner", "erinnerungskräfte": "erinnerungskraft", "eristica": "eristica", "eristik": "erist", "eristikouv": "eristikouv", "eristische": "erist", "eristischen": "erist", "eriugena": "eriugena", "erjagen": "erjag", "erjebenst": "erjeben", "erkämpfen": "erkampf", "erkannt": "erkannt", "erkannte": "erkannt", "erkannten": "erkannt", "erkaufen": "erkauf", "erkennbar": "erkennbar", "erkennbarem": "erkennbar", "erkennbaren": "erkennbar", "erkenne": "erkenn", "erkennen": "erkenn", "erkennenden": "erkenn", "erkennest": "erkenn", "erkennet": "erkennet", "erkennst": "erkenn", "erkennt": "erkennt", "erkenntnis": "erkenntnis", "erkenntnisgründe": "erkenntnisgrund", "erkenntnisgründen": "erkenntnisgrund", "erkenntnisse": "erkenntnis", "erkenntnissen": "erkenntnis", "erkenntnisses": "erkenntnis", "erkenntnisvermögen": "erkenntnisvermog", "erkenntnisvermögens": "erkenntnisvermog", "erkennung": "erkenn", "erker": "erk", "erkläre": "erklar", "erklären": "erklar", "erklärlich": "erklar", "erklärliche": "erklar", "erklärst": "erklarst", "erklärt": "erklart", "erklärte": "erklart", "erklärten": "erklart", "erklärung": "erklar", "erklärungen": "erklar", "erklärungsgrund": "erklarungsgrund", "erklärungsweise": "erklarungsweis", "erkleckliche": "erkleck", "erklecklichen": "erkleck", "erkleckliches": "erkleck", "erkletterten": "erklettert", "erkundigt": "erkundigt", "erkundigte": "erkundigt", "erkünstelt": "erkunstelt", "erlahmten": "erlahmt", "erlangen": "erlang", "erlangende": "erlang", "erlangte": "erlangt", "erlassen": "erlass", "erlassung": "erlass", "erlaube": "erlaub", "erlauben": "erlaub", "erlaubnis": "erlaubnis", "erlaubt": "erlaubt", "erlaubte": "erlaubt", "erlaubten": "erlaubt", "erlaucht": "erlaucht", "erlauchte": "erlaucht", "erlauchten": "erlaucht", "erläutert": "erlautert", "erläuterung": "erlauter", "erle": "erl", "erlebe": "erleb", "erleben": "erleb", "erlebnis": "erlebnis", "erlebnisse": "erlebnis", "erlebnissen": "erlebnis", "erlebt": "erlebt", "erlebte": "erlebt", "erledigen": "erled", "erledigt": "erledigt", "erledigung": "erled", "erlegt": "erlegt", "erlegten": "erlegt", "erlegung": "erleg", "erleichtern": "erleicht", "erleichternder": "erleichternd", "erleichtert": "erleichtert", "erleichterte": "erleichtert", "erleiden": "erleid", "erlenzeilen": "erlenzeil", "erlernen": "erlern", "erlernt": "erlernt", "erlernte": "erlernt", "erleuchte": "erleucht", "erleuchten": "erleucht", "erleuchtet": "erleuchtet", "erleuchtete": "erleuchtet", "erleuchteten": "erleuchtet", "erleuchtung": "erleucht", "erleuchtungen": "erleucht", "erlitt": "erlitt", "erlitten": "erlitt", "erlittenen": "erlitt", "erlös": "erlos", "erloschen": "erlosch", "erlöschen": "erlosch", "erlöse": "erlos", "erlösen": "erlos", "erlöser": "erlos", "erlöset": "erloset", "erlöst": "erlost", "erlösten": "erlost", "erlösung": "erlos", "erlösungsgelder": "erlosungsgeld", "erlösungswerk": "erlosungswerk", "erlustigen": "erlust", "ermächtigt": "ermachtigt", "ermahne": "ermahn", "ermahnen": "ermahn", "ermahnt": "ermahnt", "ermahnte": "ermahnt", "ermahnung": "ermahn", "ermahnungen": "ermahn", "ermangelte": "ermangelt", "ermangelung": "ermangel", "ermannen": "ermann", "ermannte": "ermannt", "ermattetes": "ermattet", "ermattung": "ermatt", "ermessens": "ermess", "ermessensspielraum": "ermessensspielraum", "ermesset": "ermesset", "ermöglichen": "ermog", "ermöglicht": "ermoglicht", "ermordet": "ermordet", "ermordete": "ermordet", "ermordeten": "ermordet", "ermüden": "ermud", "ermüdenden": "ermud", "ermüdet": "ermudet", "ermüdeten": "ermudet", "ermüdetes": "ermudet", "ermuntern": "ermunt", "ermunterte": "ermuntert", "ermunterten": "ermuntert", "ermutigungen": "ermut", "erna": "erna", "ernähren": "ernahr", "ernährer": "ernahr", "ernährt": "ernahrt", "ernährung": "ernahr", "ernährungsmethode": "ernahrungsmethod", "ernannt": "ernannt", "ernannte": "ernannt", "ernennung": "ernenn", "erneuere": "erneu", "erneuern": "erneu", "erneuerst": "erneuerst", "erneuert": "erneuert", "erneuerte": "erneuert", "erneuerung": "erneuer", "erneure": "erneur", "erniedrige": "erniedr", "erniedrigen": "erniedr", "erniedrigten": "erniedrigt", "erniedrigung": "erniedr", "ernst": "ernst", "ernste": "ernst", "ernsten": "ernst", "ernster": "ernst", "ernstes": "ernst", "ernstesten": "ernst", "ernsthaft": "ernsthaft", "ernsthafte": "ernsthaft", "ernsthaften": "ernsthaft", "ernsthafter": "ernsthaft", "ernsthaftes": "ernsthaft", "ernstlich": "ernstlich", "ernstliche": "ernstlich", "ernte": "ernt", "erntesegen": "ernteseg", "erntete": "erntet", "erobern": "erob", "erobert": "erobert", "eroberung": "erober", "eroberungen": "erober", "eröffnen": "eroffn", "eröffnet": "eroffnet", "eröffnete": "eroffnet", "eröffnung": "eroffn", "erörtert": "erortert", "erörterten": "erortert", "erproben": "erprob", "erprüften": "erpruft", "erquicken": "erquick", "erquickt": "erquickt", "erquickte": "erquickt", "erquickung": "erquick", "erraten": "errat", "erregen": "erreg", "erregend": "erreg", "erregt": "erregt", "erregte": "erregt", "erregten": "erregt", "erregung": "erreg", "erregungen": "erreg", "erreichbar": "erreichbar", "erreichbare": "erreichbar", "erreiche": "erreich", "erreichen": "erreich", "erreicht": "erreicht", "erreichte": "erreicht", "erreichten": "erreicht", "erreichung": "erreich", "errette": "errett", "erretten": "errett", "errettet": "errettet", "errichten": "erricht", "errichtet": "errichtet", "errichtete": "errichtet", "errichteten": "errichtet", "errichtung": "erricht", "erriet": "erriet", "erringen": "erring", "erröte": "errot", "erröten": "errot", "errötend": "errot", "errötete": "errotet", "erröteten": "errotet", "errungenschaft": "errungenschaft", "ersah": "ersah", "ersann": "ersann", "ersannen": "ersann", "ersatz": "ersatz", "ersäufen": "ersauf", "ersäuft": "ersauft", "erschaffen": "erschaff", "erschaffenden": "erschaff", "erschaffene": "erschaff", "erschaffenen": "erschaff", "erschauten": "erschaut", "erscheine": "erschein", "erscheinen": "erschein", "erscheinende": "erschein", "erscheinenden": "erschein", "erscheinens": "erschein", "erscheint": "erscheint", "erscheinung": "erschein", "erscheinungen": "erschein", "erscheinungsformen": "erscheinungsform", "erschien": "erschi", "erschiene": "erschi", "erschienen": "erschi", "erschienenen": "erschien", "erschlage": "erschlag", "erschlagen": "erschlag", "erschlagener": "erschlag", "erschleichens": "erschleich", "erschlichen": "erschlich", "erschlichene": "erschlich", "erschliessen": "erschliess", "erschließen": "erschliess", "erschlüge": "erschlug", "erschnappt": "erschnappt", "erscholl": "erscholl", "erschöpfen": "erschopf", "erschöpfend": "erschopf", "erschöpft": "erschopft", "erschossen": "erschoss", "erschrak": "erschrak", "erschrecken": "erschreck", "erschrecklicher": "erschreck", "erschreckt": "erschreckt", "erschreckte": "erschreckt", "erschreckter": "erschreckt", "erschrocken": "erschrock", "erschrockenen": "erschrock", "erschrockener": "erschrock", "erschüttern": "erschutt", "erschütternd": "erschutternd", "erschüttert": "erschuttert", "erschütterte": "erschuttert", "erschütterten": "erschuttert", "erschütterung": "erschutter", "erschwert": "erschwert", "ersehe": "erseh", "ersehen": "erseh", "ersehnt": "ersehnt", "ersehnte": "ersehnt", "ersehnten": "ersehnt", "ersetzen": "ersetz", "ersetzt": "ersetzt", "ersetzte": "ersetzt", "ersichtlich": "ersicht", "ersieht": "ersieht", "ersinnen": "ersinn", "ersonnen": "ersonn", "erspähen": "erspah", "erspähend": "erspah", "erspäht": "erspaht", "erspare": "erspar", "ersparen": "erspar", "ersparnis": "ersparnis", "ersparnisse": "ersparnis", "ersparnissen": "ersparnis", "erspart": "erspart", "ersparten": "erspart", "erspriesslich": "erspriess", "ersprießlich": "erspriess", "erspriessliche": "erspriess", "erspriessliches": "erspriess", "erst": "erst", "erstand": "erstand", "erstanden": "erstand", "erstandenen": "erstand", "erstarben": "erstarb", "erstarken": "erstark", "erstarkt": "erstarkt", "erstarrt": "erstarrt", "erstarrten": "erstarrt", "erstarrung": "erstarr", "erstatte": "erstatt", "erstattet": "erstattet", "erstattete": "erstattet", "erstaunen": "erstaun", "erstaunlich": "erstaun", "erstaunlichen": "erstaun", "erstaunt": "erstaunt", "erstaunte": "erstaunt", "erstaunten": "erstaunt", "erstauntes": "erstaunt", "erstdruck": "erstdruck", "erste": "erst", "erstehen": "ersteh", "ersteht": "ersteht", "erstellt": "erstellt", "erstellung": "erstell", "erstemal": "erstemal", "ersten": "erst", "erstenmal": "erstenmal", "erstens": "erst", "erster": "erst", "erstere": "erst", "ersteren": "erst", "ersterer": "erst", "ersterm": "ersterm", "erstern": "erst", "erstes": "erst", "erstgeborene": "erstgebor", "erstgeborenen": "erstgebor", "erstgeborener": "erstgebor", "erstgeburt": "erstgeburt", "erstgeburten": "erstgeburt", "ersticken": "erstick", "erstickend": "erstick", "erstickenden": "erstick", "erstickt": "erstickt", "erstickte": "erstickt", "erstickung": "erstick", "erstige": "erstig", "erstirbt": "erstirbt", "erstlich": "erstlich", "erstlinge": "erstling", "erstmals": "erstmal", "erstochene": "erstoch", "erstreckt": "erstreckt", "erstreckte": "erstreckt", "erstreckten": "erstreckt", "erstritt": "erstritt", "ersuche": "ersuch", "ersucht": "ersucht", "ersuchten": "ersucht", "ertappen": "ertapp", "ertappte": "ertappt", "erteilen": "erteil", "erteilt": "erteilt", "erteilte": "erteilt", "ertönen": "erton", "ertönt": "ertont", "ertönte": "ertont", "ertönten": "ertont", "ertötet": "ertotet", "ertrag": "ertrag", "ertrage": "ertrag", "ertragen": "ertrag", "ertragener": "ertrag", "erträglichen": "ertrag", "erträglicher": "ertrag", "erträgliches": "ertrag", "erträgt": "ertragt", "ertrank": "ertrank", "ertrinkens": "ertrink", "ertrotzen": "ertrotz", "ertrug": "ertrug", "ertrugen": "ertrug", "erwachend": "erwach", "erwachende": "erwach", "erwachendem": "erwach", "erwachenden": "erwach", "erwachender": "erwach", "erwachsen": "erwachs", "erwachsene": "erwachs", "erwachsenem": "erwachs", "erwachsenen": "erwachs", "erwachsener": "erwachs", "erwächst": "erwach", "erwacht": "erwacht", "erwachte": "erwacht", "erwachten": "erwacht", "erwägen": "erwag", "erwägt": "erwagt", "erwählen": "erwahl", "erwählet": "erwahlet", "erwählt": "erwahlt", "erwählten": "erwahlt", "erwählung": "erwahl", "erwähnen": "erwahn", "erwähnt": "erwahnt", "erwähnte": "erwahnt", "erwähnten": "erwahnt", "erwähnung": "erwahn", "erwähnungen": "erwahn", "erwarb": "erwarb", "erwärmt": "erwarmt", "erwarte": "erwart", "erwarten": "erwart", "erwartest": "erwart", "erwartet": "erwartet", "erwartete": "erwartet", "erwarteten": "erwartet", "erwartung": "erwart", "erwartungen": "erwart", "erwartungsvollem": "erwartungsvoll", "erwecken": "erweck", "erweckt": "erweckt", "erweckte": "erweckt", "erweckten": "erweckt", "erweicht": "erweicht", "erweisen": "erweis", "erweislichen": "erweis", "erweisung": "erweis", "erweitern": "erweit", "erweiternd": "erweiternd", "erweiterndes": "erweiternd", "erweitert": "erweitert", "erweiterte": "erweitert", "erweiterten": "erweitert", "erweiterung": "erweiter", "erweiterungen": "erweiter", "erwerb": "erwerb", "erwerben": "erwerb", "erwerbende": "erwerb", "erwerbenden": "erwerb", "erwerbmittel": "erwerbmittel", "erwerbs": "erwerb", "erwidern": "erwid", "erwiderte": "erwidert", "erwiderung": "erwider", "erwies": "erwi", "erwiesen": "erwies", "erwiesenermassen": "erwiesenermass", "erwirbt": "erwirbt", "erwischen": "erwisch", "erwischt": "erwischt", "erwischte": "erwischt", "erwogen": "erwog", "erworben": "erworb", "erworbene": "erworb", "erworbenen": "erworb", "erwthsewv": "erwthsewv", "erwünscht": "erwunscht", "erwünschte": "erwunscht", "erwürge": "erwurg", "erwürgen": "erwurg", "erwürgt": "erwurgt", "erwürgte": "erwurgt", "erz": "erz", "erzähl": "erzahl", "erzähle": "erzahl", "erzählen": "erzahl", "erzählende": "erzahl", "erzähler": "erzahl", "erzählest": "erzahl", "erzählet": "erzahlet", "erzählst": "erzahl", "erzählt": "erzahlt", "erzählte": "erzahlt", "erzählten": "erzahlt", "erzähltwerden": "erzahltwerd", "erzählung": "erzahl", "erzählungen": "erzahl", "erzeigen": "erzeig", "erzeigt": "erzeigt", "erzengel": "erzengel", "erzes": "erz", "erzeugen": "erzeug", "erzeuger": "erzeug", "erzeugerin": "erzeugerin", "erzeugnis": "erzeugnis", "erzeugnisse": "erzeugnis", "erzeugnisses": "erzeugnis", "erzeugt": "erzeugt", "erzeugte": "erzeugt", "erziehen": "erzieh", "erzieher": "erzieh", "erzieherei": "erzieherei", "erzieherin": "erzieherin", "erzieherisch": "erzieher", "erziehung": "erzieh", "erziehungskunst": "erziehungskun", "erziehungsleute": "erziehungsleut", "erziehungsmassregeln": "erziehungsmassregeln", "erziehungsmühe": "erziehungsmuh", "erziehungsresultat": "erziehungsresultat", "erziehungswerk": "erziehungswerk", "erziele": "erziel", "erzielen": "erziel", "erzielt": "erzielt", "erzittere": "erzitt", "erzittern": "erzitt", "erzitterte": "erzittert", "erzog": "erzog", "erzogen": "erzog", "erzürnt": "erzurnt", "erzürnte": "erzurnt", "erzwungene": "erzwung", "erzwungenen": "erzwung", "es": "es", "esau": "esau", "esaus": "esaus", "eschenstab": "eschenstab", "esel": "esel", "eselein": "eselein", "eselfüllen": "eselfull", "eseln": "eseln", "esels": "esel", "esers": "eser", "espenlaub": "espenlaub", "essangelegenheiten": "essangeleg", "essayistischen": "essayist", "essbare": "essbar", "essbares": "essbar", "essbegierige": "essbegier", "essbestecke": "essbesteck", "esse": "ess", "essen": "ess", "essend": "essend", "essens": "ess", "esser": "ess", "esset": "esset", "essig": "essig", "essighafen": "essighaf", "esst": "esst", "eßt": "esst", "esszimmer": "esszimm", "eßzimmer": "esszimm", "esszimmers": "esszimm", "eßzimmers": "esszimm", "est": "est", "estherchen": "estherch", "estherchens": "estherch", "estherlein": "estherlein", "esti": "esti", "estrich": "estrich", "estrichs": "estrich", "et": "et", "etc": "etc", "ethische": "ethisch", "ethnographischer": "ethnograph", "etliche": "etlich", "etlicher": "etlich", "etwa": "etwa", "etwaigen": "etwaig", "etwanigen": "etwan", "etwas": "etwas", "euch": "euch", "euer": "euer", "euere": "euer", "euerm": "euerm", "euern": "euern", "eule": "eul", "eulen": "eul", "eulenspiegelei": "eulenspiegelei", "eulenvogel": "eulenvogel", "euphrat": "euphrat", "eure": "eur", "eurem": "eur", "euren": "eur", "eurer": "eur", "eures": "eur", "euretwegen": "euretweg", "europa": "europa", "europäern": "europa", "europäische": "europa", "europäischen": "europa", "europapokal": "europapokal", "europas": "europas", "eustachius": "eustachius", "eva": "eva", "evangelii": "evangelii", "evangelikale": "evangelikal", "evangelikalen": "evangelikal", "evangelikalenin": "evangelikalenin", "evangelisch": "evangel", "evangelische": "evangel", "evangelischen": "evangel", "evangelischer": "evangel", "evangelisches": "evangel", "evangelium": "evangelium", "eventuelle": "eventuell", "evident": "evident", "evidenz": "evidenz", "ewig": "ewig", "ewige": "ewig", "ewigem": "ewig", "ewigen": "ewig", "ewiger": "ewig", "ewiges": "ewig", "ewigkeit": "ewig", "ewigkeiten": "ewig", "ewiglich": "ewig", "ex": "ex", "exakte": "exakt", "exakten": "exakt", "excitatur": "excitatur", "exekutive": "exekutiv", "exempel": "exempel", "exemplar": "exemplar", "exerzieren": "exerzi", "exerziermeistern": "exerziermeist", "exil": "exil", "existat": "existat", "existentialsatz": "existentialsatz", "existentiellen": "existentiell", "existenz": "existenz", "existenzminimum": "existenzminimum", "existiere": "existi", "existieren": "existi", "existierenden": "existier", "existiert": "existiert", "existit": "existit", "exit": "exit", "exklusi": "exklusi", "exklusives": "exklusiv", "exkrementen": "exkrement", "expedition": "expedition", "experientia": "experientia", "experiment": "experiment", "expertenkommission": "expertenkommission", "explorare": "explorar", "explosion": "explosion", "explosiv": "explosiv", "explosive": "explosiv", "expressen": "express", "extra": "extra", "extrapostillion": "extrapostillion", "extras": "extras", "extraurlaub": "extraurlaub", "exzellenz": "exzellenz", "ezw": "ezw", "f": "f", "fabelhafte": "fabelhaft", "fabelhaftes": "fabelhaft", "fabeln": "fabeln", "fabrik": "fabrik", "fabrikant": "fabrikant", "fabrikanten": "fabrikant", "fabriken": "fabrik", "fächern": "fach", "faciles": "facil", "facit": "facit", "fackel": "fackel", "fackeln": "fackeln", "facto": "facto", "factor": "factor", "faden": "fad", "fäden": "fad", "fadendünnen": "fadendunn", "fadenscheinigen": "fadenschein", "fades": "fad", "fähig": "fahig", "fähiger": "fahig", "fähigkeit": "fahig", "fähigkeiten": "fahig", "fahl": "fahl", "fahlen": "fahl", "fahler": "fahl", "fahne": "fahn", "fahnen": "fahn", "fähnlein": "fahnlein", "fähnleins": "fahnlein", "fahr": "fahr", "fahren": "fahr", "fahrenden": "fahrend", "fahrendes": "fahrend", "fahrenzum": "fahrenzum", "fahrer": "fahr", "fahrhabe": "fahrhab", "fährlichkeit": "fahrlich", "fahrst": "fahrst", "fahrt": "fahrt", "fährt": "fahrt", "fährte": "fahrt", "fahrten": "fahrt", "fährten": "fahrt", "fahrwasser": "fahrwass", "fahrweg": "fahrweg", "fahrzeit": "fahrzeit", "fahrzeug": "fahrzeug", "fahrzeugs": "fahrzeug", "fair": "fair", "faktischen": "faktisch", "faktotum": "faktotum", "faktum": "faktum", "fakultät": "fakultat", "fall": "fall", "falle": "fall", "fälle": "fall", "fallen": "fall", "fällen": "fall", "fallend": "fallend", "fallende": "fallend", "fallenden": "fallend", "falles": "fall", "fallet": "fallet", "falliert": "falliert", "fallimentes": "falliment", "falliten": "fallit", "falls": "fall", "fallstrick": "fallstrick", "fallstricke": "fallstrick", "fallt": "fallt", "fällt": "fallt", "falsch": "falsch", "falsche": "falsch", "falschem": "falsch", "falschen": "falsch", "falscher": "falsch", "falsches": "falsch", "falschesten": "falsch", "falschheit": "falschheit", "falschheiten": "falschheit", "fälschlich": "falschlich", "fälschungen": "falschung", "falte": "falt", "falten": "falt", "falter": "falt", "faltete": "faltet", "falteten": "faltet", "faltigen": "faltig", "fameses": "fames", "familie": "famili", "familien": "famili", "familienerbstück": "familienerbstuck", "familiengeschichte": "familiengeschicht", "familienglück": "familiengluck", "familienvater": "familienvat", "familienverfolgung": "familienverfolg", "famosen": "famos", "fanatisierten": "fanatisiert", "fanatizismus": "fanatizismus", "fanchon": "fanchon", "fand": "fand", "fände": "fand", "fanden": "fand", "fanfaren": "fanfar", "fang": "fang", "fangen": "fang", "fanges": "fang", "fangnetze": "fangnetz", "fängst": "fang", "fangt": "fangt", "fängt": "fangt", "fantasie": "fantasi", "fantastischen": "fantast", "farbe": "farb", "farben": "farb", "färbende": "farbend", "farbenwesen": "farbenwes", "farbigen": "farbig", "farbiges": "farbig", "farblosen": "farblos", "farbtupfer": "farbtupf", "fare": "far", "farnblättern": "farnblatt", "farnen": "farn", "farren": "farr", "fas": "fas", "fasching": "fasching", "faselnackt": "faselnackt", "faseriges": "faser", "fasern": "fas", "fass": "fass", "fässchen": "fassch", "fasse": "fass", "fassen": "fass", "fässer": "fass", "fasset": "fasset", "fasslich": "fasslich", "faßlich": "fasslich", "fasst": "fasst", "faßt": "fasst", "fasste": "fasst", "faßte": "fasst", "fassten": "fasst", "faßten": "fasst", "fassung": "fassung", "fassungen": "fassung", "fassungskraft": "fassungskraft", "fast": "fast", "fasten": "fast", "fastenopfer": "fastenopf", "fastnacht": "fastnacht", "fastnachtslüge": "fastnachtslug", "fastnachtszeit": "fastnachtszeit", "fasziniert": "fasziniert", "fatale": "fatal", "fatalen": "fatal", "fatum": "fatum", "fauchende": "fauchend", "fauchte": "faucht", "faul": "faul", "faule": "faul", "faulenzen": "faulenz", "fauler": "faul", "faulheit": "faulheit", "faust": "faust", "fäustchen": "faustch", "fäuste": "faust", "fäusten": "faust", "faustgrosse": "faustgross", "faustrechtes": "faustrecht", "fauteuil": "fauteuil", "fauteuils": "fauteuil", "fax": "fax", "faxen": "fax", "fazit": "fazit", "feature": "featur", "febr": "febr", "februar": "februar", "fecht": "fecht", "fechten": "fecht", "fechtenden": "fechtend", "fechtkunst": "fechtkun", "fechtmeister": "fechtmeist", "fechtschul": "fechtschul", "feder": "fed", "federführung": "federfuhr", "federhüte": "federhut", "federkraft": "federkraft", "federlesens": "federles", "federn": "fed", "fee": "fee", "feenhafte": "feenhaft", "fegefeuer": "fegefeu", "fegenden": "fegend", "fegezeit": "fegezeit", "fehl": "fehl", "fehle": "fehl", "fehlen": "fehl", "fehler": "fehl", "fehlern": "fehl", "fehlete": "fehlet", "fehlschlug": "fehlschlug", "fehlschusses": "fehlschuss", "fehlt": "fehlt", "fehlte": "fehlt", "fehlten": "fehlt", "feier": "feier", "feierabend": "feierab", "feiere": "feier", "feierlich": "feierlich", "feierliche": "feierlich", "feierlichen": "feierlich", "feierlicher": "feierlich", "feierliches": "feierlich", "feiern": "feiern", "feiert": "feiert", "feiertage": "feiertag", "feiertagen": "feiertag", "feiertagsgwand": "feiertagsgwand", "feiertagsröcken": "feiertagsrock", "feierte": "feiert", "feierten": "feiert", "feig": "feig", "feige": "feig", "feigen": "feig", "feigenbaum": "feigenbaum", "feigenbäume": "feigenbaum", "feigenbaumes": "feigenbaum", "feigenbaums": "feigenbaum", "feigenblätter": "feigenblatt", "feigern": "feig", "feigheit": "feigheit", "feigling": "feigling", "feigwarzen": "feigwarz", "feilenstaub": "feilenstaub", "fein": "fein", "feind": "feind", "feinde": "feind", "feinden": "feind", "feindes": "feind", "feindin": "feindin", "feindlich": "feindlich", "feindlichen": "feindlich", "feindschaft": "feindschaft", "feindselig": "feindsel", "feindseligen": "feindsel", "feindseligkeit": "feindsel", "feindseligkeiten": "feindsel", "feine": "fein", "feinem": "fein", "feinen": "fein", "feiner": "fein", "feinere": "fein", "feineren": "fein", "feinern": "fein", "feines": "fein", "feinfühlend": "feinfuhl", "feinschaft": "feinschaft", "feinschmecker": "feinschmeck", "feinsten": "fein", "feist": "feist", "feistes": "feist", "feisthirsch": "feisthirsch", "feistzeit": "feistzeit", "feixt": "feixt", "feld": "feld", "felde": "feld", "felder": "feld", "feldern": "feld", "felderzeugnis": "felderzeugnis", "feldes": "feld", "feldfrüchte": "feldfrucht", "feldfutter": "feldfutt", "feldgeschrei": "feldgeschrei", "feldherde": "feldherd", "feldherr": "feldherr", "feldleutnant": "feldleutnant", "feldprediger": "feldpred", "feldrande": "feldrand", "feldseite": "feldseit", "feldsteinen": "feldstein", "feldwebelsgang": "feldwebelsgang", "feldweg": "feldweg", "feldzug": "feldzug", "feldzuges": "feldzug", "felix": "felix", "fell": "fell", "fellchen": "fellch", "felle": "fell", "felleisen": "felleis", "felleisenfuhrwerke": "felleisenfuhrwerk", "felleisens": "felleis", "fellen": "fell", "fels": "fel", "felsan": "felsan", "felsblock": "felsblock", "felsblöcke": "felsblock", "felsen": "fels", "felsenkette": "felsenkett", "felsennase": "felsennas", "felsentor": "felsentor", "felsgestalten": "felsgestalt", "felsgetürme": "felsgeturm", "felskegel": "felskegel", "felskolossen": "felskoloss", "felsmassen": "felsmass", "felsnase": "felsnas", "felsplateau": "felsplateau", "felsplatte": "felsplatt", "felsplatten": "felsplatt", "felssteine": "felsstein", "felstisch": "felstisch", "felswand": "felswand", "felswänden": "felswand", "felszacke": "felszack", "femgesehen": "femgeseh", "fenn": "fenn", "fenster": "fenst", "fensterbrett": "fensterbrett", "fensterchen": "fensterch", "fensterflügel": "fensterflugel", "fenstern": "fenst", "fensternische": "fenstern", "fensterrand": "fensterrand", "fensters": "fenst", "fensterscheiben": "fensterscheib", "fenstersimse": "fenstersims", "fenstervorhänge": "fenstervorhang", "fergus": "fergus", "ferien": "feri", "ferienjob": "ferienjob", "ferienstübchens": "ferienstubch", "feris": "feris", "ferkelgequiek": "ferkelgequiek", "fern": "fern", "fernab": "fernab", "ferne": "fern", "fernem": "fern", "fernen": "fern", "ferner": "fern", "fernere": "fern", "ferneren": "fern", "ferneres": "fern", "fernerhin": "fernerhin", "fernes": "fern", "fernher": "fernh", "fernrohr": "fernrohr", "fernrohrs": "fernrohr", "fernsehen": "fernseh", "fernsichtige": "fernsicht", "fernsten": "fern", "ferse": "fers", "fersen": "fers", "fertig": "fertig", "fertigbrachte": "fertigbracht", "fertige": "fertig", "fertigen": "fertig", "fertiggestellt": "fertiggestellt", "fertigzubringen": "fertigzubring", "fesseln": "fesseln", "fesselte": "fesselt", "fest": "fest", "festband": "festband", "feste": "fest", "festem": "fest", "festen": "fest", "fester": "fest", "festerem": "fest", "festes": "fest", "festgebannt": "festgebannt", "festgebauten": "festgebaut", "festgebunden": "festgebund", "festgehalten": "festgehalt", "festgeklebt": "festgeklebt", "festgeklemmt": "festgeklemmt", "festgelegt": "festgelegt", "festgemachte": "festgemacht", "festgesetzte": "festgesetzt", "festgestellt": "festgestellt", "festgottesdienst": "festgottesdien", "festhalten": "festhalt", "festivitatum": "festivitatum", "festland": "festland", "festlich": "festlich", "festlichen": "festlich", "festmal": "festmal", "festnahme": "festnahm", "festnehmen": "festnehm", "festpredigt": "festpredigt", "festsaale": "festsaal", "festschmaus": "festschmaus", "festsetzt": "festsetzt", "festsetzte": "festsetzt", "festsetzten": "festsetzt", "feststehende": "feststeh", "feststellen": "feststell", "feststellt": "feststellt", "feststellung": "feststell", "festung": "festung", "festungen": "festung", "festzuhalten": "festzuhalt", "festzusetzen": "festzusetz", "festzustellen": "festzustell", "fett": "fett", "fette": "fett", "fetten": "fett", "fetter": "fett", "fettes": "fett", "fettigkeit": "fettig", "fettigkeiten": "fettig", "fettwerden": "fettwerd", "fetzchen": "fetzch", "fetzel": "fetzel", "fetzen": "fetz", "feucht": "feucht", "feuchten": "feucht", "feuchtes": "feucht", "feuer": "feu", "feuerbauche": "feuerbauch", "feuerberg": "feuerberg", "feuerchen": "feuerch", "feuerduft": "feuerduft", "feuerfarben": "feuerfarb", "feuerflamme": "feuerflamm", "feuerflammen": "feuerflamm", "feuerglanz": "feuerglanz", "feuerherde": "feuerherd", "feuerhölle": "feuerholl", "feuerkohlen": "feuerkohl", "feuern": "feu", "feuerofen": "feuerof", "feuerpfuhl": "feuerpfuhl", "feuerrot": "feuerrot", "feuerröte": "feuerrot", "feuers": "feu", "feuersäule": "feuersaul", "feuersbrünsten": "feuersbrun", "feuerschlacht": "feuerschlacht", "feuerschlange": "feuerschlang", "feuerspeienden": "feuerspei", "feuerstrom": "feuerstrom", "feuerung": "feuer", "feuerwaffen": "feuerwaff", "feuerwehrmann": "feuerwehrmann", "feuerwerk": "feuerwerk", "feuerzungen": "feuerz", "feurig": "feurig", "feurige": "feurig", "feurigem": "feurig", "feurigen": "feurig", "feuriges": "feurig", "feurigsten": "feurig", "fiber": "fib", "fiberchen": "fiberch", "fibern": "fib", "ficht": "ficht", "fichten": "ficht", "fichtenast": "fichtenast", "fichtenbusch": "fichtenbusch", "fichtenbüschlein": "fichtenbuschlein", "fichtengebüsche": "fichtengebusch", "fichtengestrüpp": "fichtengestrupp", "fichtenwipfel": "fichtenwipfel", "fichtenzweigen": "fichtenzweig", "fidel": "fidel", "fieber": "fieb", "fieberhaft": "fieberhaft", "fieberhaften": "fieberhaft", "fiebernde": "fiebernd", "fiebernder": "fiebernd", "fieberte": "fiebert", "fiedelmann": "fiedelmann", "fiel": "fiel", "fiele": "fiel", "fielen": "fiel", "figur": "figur", "figürchen": "figurch", "figuren": "figur", "filiale": "filial", "film": "film", "filmfestival": "filmfestival", "filmfirma": "filmfirma", "filmversion": "filmversion", "filz": "filz", "filzhütchen": "filzhutch", "filzkleider": "filzkleid", "finanziell": "finanziell", "finanzielle": "finanziell", "finanziellen": "finanziell", "finanzieren": "finanzi", "finanziert": "finanziert", "finanzleistungen": "finanzleist", "finanzpolitisches": "finanzpolit", "finanzstadt": "finanzstadt", "find": "find", "finde": "find", "finden": "find", "findende": "findend", "finder": "find", "findest": "find", "findet": "findet", "findige": "findig", "findt": "findt", "fing": "fing", "fingen": "fing", "finger": "fing", "fingerabdruck": "fingerabdruck", "fingerchen": "fingerch", "fingerhut": "fingerhut", "fingern": "fing", "fingers": "fing", "fingerspitzen": "fingerspitz", "fingerstellung": "fingerstell", "fink": "fink", "finken": "fink", "finster": "finst", "finstere": "finst", "finsteren": "finst", "finsteres": "finst", "finsterm": "finsterm", "finstern": "finst", "finsternis": "finsternis", "finsternissen": "finsternis", "finten": "fint", "fir": "fir", "firlefanz": "firlefanz", "firma": "firma", "firmen": "firm", "first": "first", "firste": "first", "firti": "firti", "fisch": "fisch", "fischblattern": "fischblatt", "fischchen": "fischch", "fische": "fisch", "fischeimer": "fischeim", "fischen": "fisch", "fischer": "fisch", "fischerei": "fischerei", "fischergeräte": "fischergerat", "fischern": "fisch", "fisches": "fisch", "fischesser": "fischess", "fischest": "fisch", "fischgattungen": "fischgatt", "fischlein": "fischlein", "fish": "fish", "fittiche": "fittich", "fittichen": "fittich", "fittichs": "fittich", "fixe": "fix", "fixen": "fix", "fläche": "flach", "flachen": "flach", "flächen": "flach", "flächendeckend": "flachendeck", "flachs": "flach", "flächsenen": "flachs", "flachses": "flachs", "flackernde": "flackernd", "flackerten": "flackert", "fladenkuchen": "fladenkuch", "flair": "flair", "flämmchen": "flammch", "flamme": "flamm", "flammen": "flamm", "flammenbart": "flammenbart", "flammende": "flammend", "flammenden": "flammend", "flammendes": "flammend", "flammenmeer": "flammenme", "flanke": "flank", "fläschchen": "flaschch", "flasche": "flasch", "flaschen": "flasch", "flats": "flat", "flattergeräusch": "flattergerausch", "flattern": "flatt", "flatternde": "flatternd", "flatternden": "flatternd", "flatterspiel": "flatterspiel", "flatterte": "flattert", "flatterten": "flattert", "flaum": "flaum", "flaumkissen": "flaumkiss", "flavio": "flavio", "flechte": "flecht", "flechtenfelde": "flechtenfeld", "flechtengetrümmer": "flechtengetrumm", "fleck": "fleck", "fleckchen": "fleckch", "flecken": "fleck", "fledermäuschen": "fledermausch", "flegelei": "flegelei", "flehen": "fleh", "flehend": "flehend", "flehenden": "flehend", "flehens": "fleh", "flehet": "flehet", "fleht": "fleht", "flehte": "fleht", "fleisch": "fleisch", "fleischbrühe": "fleischbruh", "fleische": "fleisch", "fleischer": "fleisch", "fleischermesser": "fleischermess", "fleisches": "fleisch", "fleischigem": "fleischig", "fleischlich": "fleischlich", "fleischliche": "fleischlich", "fleischlichen": "fleischlich", "fleiss": "fleiss", "fleiß": "fleiss", "fleissig": "fleissig", "fleißig": "fleissig", "fleissigen": "fleissig", "fleissiger": "fleissig", "fleißiger": "fleissig", "fleissigsten": "fleissig", "fleißigsten": "fleissig", "fletschte": "fletscht", "flicht": "flicht", "flickte": "flickt", "fliederbusch": "fliederbusch", "fliederwerk": "fliederwerk", "fliege": "flieg", "fliegeliedchen": "fliegeliedch", "fliegen": "flieg", "fliegend": "fliegend", "fliegende": "fliegend", "fliegenden": "fliegend", "fliegender": "fliegend", "fliegenmutter": "fliegenmutt", "fliegt": "fliegt", "fliehen": "flieh", "fliehet": "fliehet", "flieht": "flieht", "fliese": "flies", "fliesen": "flies", "fliessen": "fliess", "fließen": "fliess", "fliessende": "fliessend", "fliessendes": "fliessend", "fliesst": "fliesst", "fließt": "fliesst", "flimmerte": "flimmert", "flink": "flink", "flinke": "flink", "flinker": "flink", "flinkfüssigen": "flinkfuss", "flinten": "flint", "flittchen": "flittch", "flittergoldes": "flittergold", "flitterstaat": "flitterstaat", "flocht": "flocht", "flochten": "flocht", "flocke": "flock", "flocken": "flock", "flog": "flog", "flogen": "flog", "flögen": "flog", "floh": "floh", "flohen": "floh", "flor": "flor", "florenz": "florenz", "florian": "florian", "floss": "floss", "floß": "floss", "flossen": "floss", "flössen": "floss", "flößen": "floss", "flösste": "flosst", "flöte": "flot", "flöten": "flot", "flötenden": "flotend", "flötenspieler": "flotenspiel", "flottmachen": "flottmach", "fluch": "fluch", "flüche": "fluch", "fluchen": "fluch", "fluchens": "fluch", "flucht": "flucht", "fluchte": "flucht", "fluchten": "flucht", "flüchteten": "fluchtet", "fluchtgedanken": "fluchtgedank", "fluchtgelder": "fluchtgeld", "flüchtig": "fluchtig", "flüchtige": "fluchtig", "flüchtigem": "fluchtig", "flüchtigen": "fluchtig", "flüchtiger": "fluchtig", "flüchtiges": "fluchtig", "flüchtigsten": "fluchtig", "flüchtling": "fluchtling", "flüchtlinge": "fluchtling", "flüchtlingscamp": "fluchtlingscamp", "flüchtlingslager": "fluchtlingslag", "flüchtlingslagers": "fluchtlingslag", "fluchtriss": "fluchtriss", "flug": "flug", "fluge": "flug", "flügel": "flugel", "flügelchen": "flugelch", "flügelein": "flugelein", "flügelmann": "flugelmann", "flügeln": "flugeln", "flügelschläge": "flugelschlag", "flügeltüren": "flugeltur", "flügelzuge": "flugelzug", "fluggästen": "fluggast", "flügge": "flugg", "flüggen": "flugg", "fluggesellschaft": "fluggesellschaft", "flughafen": "flughaf", "flughafengebäude": "flughafengebaud", "flughafenpolizei": "flughafenpolizei", "flughafens": "flughaf", "flugmaschinchen": "flugmaschinch", "flugmaschinen": "flugmaschin", "flugplatz": "flugplatz", "flugs": "flug", "flugzeug": "flugzeug", "fluktuationsrate": "fluktuationsrat", "flur": "flur", "flure": "flur", "fluren": "flur", "fluss": "fluss", "fluß": "fluss", "flusse": "fluss", "flüsse": "fluss", "flüssen": "fluss", "flusses": "fluss", "flüstern": "flust", "flüsternde": "flusternd", "flüstert": "flustert", "flüsterte": "flustert", "flüsterten": "flustert", "flut": "flut", "fluten": "flut", "focht": "focht", "focis": "focis", "fodern": "fod", "foemina": "foemina", "föhnstiefel": "fohnstiefel", "föhre": "fohr", "föhrenstrunke": "fohrenstrunk", "folg": "folg", "folge": "folg", "folgen": "folg", "folgend": "folgend", "folgende": "folgend", "folgendem": "folgend", "folgenden": "folgend", "folgender": "folgend", "folgendermassen": "folgendermass", "folgendermaßen": "folgendermass", "folgendes": "folgend", "folgern": "folg", "folgerung": "folger", "folgerungen": "folger", "folget": "folget", "folgezeit": "folgezeit", "folglich": "folglich", "folgsam": "folgsam", "folgsames": "folgsam", "folgsamkeit": "folgsam", "folgt": "folgt", "folgte": "folgt", "folgten": "folgt", "folie": "foli", "folter": "folt", "foltern": "folt", "fonds": "fond", "fontenelle": "fontenell", "foppe": "fopp", "for": "for", "force": "forc", "fordere": "ford", "förderer": "ford", "fordern": "ford", "fördern": "ford", "fordert": "fordert", "forderten": "fordert", "forderung": "forder", "forderungen": "forder", "forelle": "forell", "forellen": "forell", "foren": "for", "form": "form", "formal": "formal", "formalen": "formal", "formaler": "formal", "formalien": "formali", "formationen": "formation", "formel": "formel", "formell": "formell", "formelle": "formell", "formeln": "formeln", "formen": "form", "formenwesens": "formenwes", "formierte": "formiert", "formierten": "formiert", "förmig": "formig", "förmlich": "formlich", "förmliche": "formlich", "förmlichen": "formlich", "förmlichkeit": "formlich", "formulieren": "formuli", "formulierung": "formulier", "forschen": "forsch", "forschend": "forschend", "forschende": "forschend", "forscherin": "forscherin", "forschung": "forschung", "forschungen": "forschung", "förster": "forst", "försterbart": "forsterbart", "försterin": "forsterin", "forstgehilfen": "forstgehilf", "forsthaus": "forsthaus", "forsthauses": "forsthaus", "forstmannsuniformen": "forstmannsuniform", "forstmeister": "forstmeist", "forstverwaltung": "forstverwalt", "fort": "fort", "fortan": "fortan", "fortbestand": "fortbestand", "fortbestehen": "fortbesteh", "fortbetrieb": "fortbetrieb", "fortbewegte": "fortbewegt", "fortdauer": "fortdau", "fortdauern": "fortdau", "fortdauernde": "fortdauernd", "fortdauernden": "fortdauernd", "fortdauert": "fortdauert", "fortdauerten": "fortdauert", "fortfahren": "fortfahr", "fortfahrend": "fortfahr", "fortflog": "fortflog", "fortfuhr": "fortfuhr", "fortführte": "fortfuhrt", "fortgang": "fortgang", "fortgange": "fortgang", "fortgeführt": "fortgefuhrt", "fortgegangen": "fortgegang", "fortgeh": "fortgeh", "fortgehen": "fortgeh", "fortgehend": "fortgeh", "fortgehender": "fortgeh", "fortgejagt": "fortgejagt", "fortgeleitet": "fortgeleitet", "fortgepflanzt": "fortgepflanzt", "fortgepustet": "fortgepustet", "fortgeritten": "fortgeritt", "fortgerückt": "fortgeruckt", "fortgesetzt": "fortgesetzt", "fortgesetzte": "fortgesetzt", "fortgesetzten": "fortgesetzt", "fortgetrieben": "fortgetrieb", "fortgeworfen": "fortgeworf", "fortgezogen": "fortgezog", "fortging": "fortging", "fortkomme": "fortkomm", "fortkommen": "fortkomm", "fortlassen": "fortlass", "fortlaufend": "fortlauf", "fortlaufende": "fortlauf", "fortlaufenden": "fortlauf", "fortleben": "fortleb", "fortlebend": "fortleb", "fortpflanzung": "fortpflanz", "fortpflanzungen": "fortpflanz", "fortreisst": "fortreisst", "fortreißt": "fortreisst", "fortriss": "fortriss", "fortriß": "fortriss", "fortschickte": "fortschickt", "fortschreite": "fortschreit", "fortschreiten": "fortschreit", "fortschreitend": "fortschreit", "fortschreitende": "fortschreit", "fortschreitens": "fortschreit", "fortschreitet": "fortschreitet", "fortschreitung": "fortschreit", "fortschritt": "fortschritt", "fortschritte": "fortschritt", "fortschritten": "fortschritt", "fortsetzen": "fortsetz", "fortsetzte": "fortsetzt", "fortsetzung": "fortsetz", "forttragen": "forttrag", "forttreiben": "forttreib", "fortuna": "fortuna", "fortwährend": "fortwahr", "fortwährende": "fortwahr", "fortwährenden": "fortwahr", "fortwährender": "fortwahr", "fortwährendes": "fortwahr", "fortwarf": "fortwarf", "fortwuchern": "fortwuch", "fortzeugen": "fortzeug", "fortzog": "fortzog", "fortzubewegen": "fortzubeweg", "fortzureissen": "fortzureiss", "fortzuscheuchen": "fortzuscheuch", "fortzusetzen": "fortzusetz", "forum": "forum", "forumein": "forumein", "fotografiert": "fotografiert", "fotomodell": "fotomodell", "fotos": "fotos", "foyer": "foy", "frack": "frack", "frag": "frag", "frage": "frag", "fragebogen": "fragebog", "fragen": "frag", "fragend": "fragend", "fraget": "fraget", "fragliche": "fraglich", "fraglichen": "fraglich", "fragsucht": "fragsucht", "fragt": "fragt", "fragte": "fragt", "fragten": "fragt", "françois": "françois", "frank": "frank", "franken": "frank", "frankfurt": "frankfurt", "frankierten": "frankiert", "frankreich": "frankreich", "frankreichs": "frankreich", "fransen": "frans", "franz": "franz", "franzens": "franz", "franziskus": "franziskus", "franzl": "franzl", "franzosen": "franzos", "französisch": "franzos", "französische": "franzos", "französischen": "franzos", "französischer": "franzos", "frass": "frass", "frassen": "frass", "fraßen": "frass", "frau": "frau", "frauchen": "frauch", "frauen": "frau", "frauenbild": "frauenbild", "frauenbund": "frauenbund", "frauenbusen": "frauenbus", "frauenfahrzeug": "frauenfahrzeug", "frauengemütes": "frauengemut", "frauengesichter": "frauengesicht", "frauenhilfe": "frauenhilf", "frauenkirche": "frauenkirch", "frauenkleider": "frauenkleid", "frauenmund": "frauenmund", "frauennamen": "frauennam", "frauensarg": "frauensarg", "frauensleute": "frauensleut", "frauensperson": "frauensperson", "frauenstimmen": "frauenstimm", "frauentums": "frauentum", "frauenzimmer": "frauenzimm", "frauenzimmerchen": "frauenzimmerch", "frauenzimmern": "frauenzimm", "frauenzimmers": "frauenzimm", "fräulein": "fraulein", "fräuleins": "fraulein", "freakszene": "freaksz", "frech": "frech", "freche": "frech", "frechen": "frech", "frecher": "frech", "freches": "frech", "frechheit": "frechheit", "frechheiten": "frechheit", "frechste": "frech", "frechstem": "frech", "frechsten": "frech", "free": "free", "frei": "frei", "freiblieb": "freiblieb", "freiburg": "freiburg", "freiburger": "freiburg", "freie": "freie", "freiem": "freiem", "freien": "freien", "freier": "freier", "freiern": "freiern", "freiersleuten": "freiersleut", "freies": "freies", "freigebe": "freigeb", "freigeben": "freigeb", "freigebig": "freigeb", "freigebiger": "freigeb", "freigegeben": "freigegeb", "freigelassen": "freigelass", "freiheit": "freiheit", "freiheiten": "freiheit", "freiheitliche": "freiheit", "freilassen": "freilass", "freilich": "freilich", "freiliessen": "freiliess", "freiließen": "freiliess", "freimännin": "freimannin", "freimanns": "freimann", "freimannsenkelin": "freimannsenkelin", "freimannshäusl": "freimannshausl", "freischaren": "freischar", "freischärler": "freischarl", "freisinnig": "freisinn", "freisinnigen": "freisinn", "freisinnigkeit": "freisinn", "freitag": "freitag", "freitreppe": "freitrepp", "freiwillig": "freiwill", "freiwillige": "freiwill", "freiwilligem": "freiwill", "freiwilligen": "freiwill", "freiwilliger": "freiwill", "freiwilliges": "freiwill", "freiwilligkeit": "freiwill", "freizügern": "freizug", "freizulassen": "freizulass", "freizustellen": "freizustell", "frelmännin": "frelmannin", "fremd": "fremd", "fremdartig": "fremdart", "fremdartigen": "fremdart", "fremdartiger": "fremdart", "fremdartigkeit": "fremdart", "fremde": "fremd", "fremden": "fremd", "fremder": "fremd", "fremdes": "fremd", "fremdling": "fremdling", "fremdlinge": "fremdling", "freskomalereien": "freskomalerei", "fress": "fress", "fresse": "fress", "fressen": "fress", "fresser": "fress", "freud": "freud", "freude": "freud", "freuden": "freud", "freudenähnliches": "freudenahn", "freudenberg": "freudenberg", "freudenfest": "freudenf", "freudenreichen": "freudenreich", "freudenruf": "freudenruf", "freudenrufs": "freudenruf", "freudenschüsse": "freudenschuss", "freudentage": "freudentag", "freudentanz": "freudentanz", "freudestrahlend": "freudestrahl", "freudig": "freudig", "freudigem": "freudig", "freudigen": "freudig", "freudiger": "freudig", "freudigkeit": "freudig", "freue": "freu", "freuen": "freu", "freuend": "freuend", "freuet": "freuet", "freuete": "freuet", "freund": "freund", "freunde": "freund", "freunden": "freund", "freundes": "freund", "freundesarme": "freundesarm", "freundin": "freundin", "freundinnen": "freundinn", "freundlich": "freundlich", "freundliche": "freundlich", "freundlichem": "freundlich", "freundlichen": "freundlich", "freundlicher": "freundlich", "freundliches": "freundlich", "freundlichkeit": "freundlich", "freundlichste": "freundlich", "freundnachbarliche": "freundnachbar", "freundschaft": "freundschaft", "freundschaftlich": "freundschaft", "freundschaftlichen": "freundschaft", "freut": "freut", "freute": "freut", "freuten": "freut", "frevel": "frevel", "frevelhaft": "frevelhaft", "frevels": "frevel", "fridolin": "fridolin", "fridolins": "fridolin", "friede": "fried", "frieden": "fried", "friedens": "fried", "friedensbewegung": "friedensbeweg", "friedensbruch": "friedensbruch", "friedensbund": "friedensbund", "friedensopfers": "friedensopf", "friedensprodukte": "friedensprodukt", "friedensrichter": "friedensricht", "friedensruhe": "friedensruh", "friedenszeiten": "friedenszeit", "friedfertig": "friedfert", "friedfertigen": "friedfert", "friedfertiges": "friedfert", "friedfertigkeit": "friedfert", "friedhofscafe": "friedhofscaf", "friedhofsmauer": "friedhofsmau", "friedlich": "friedlich", "friedliche": "friedlich", "friedlichen": "friedlich", "friedliches": "friedlich", "friedlichsten": "friedlich", "friedliebende": "friedlieb", "friedrich": "friedrich", "friends": "friend", "frierenden": "frierend", "friert": "friert", "friher": "frih", "frisch": "frisch", "frischduftende": "frischduft", "frische": "frisch", "frischen": "frisch", "frischer": "frisch", "frisches": "frisch", "frisierten": "frisiert", "friss": "friss", "frissest": "friss", "frisst": "frisst", "frißt": "frisst", "frist": "frist", "fristen": "frist", "fristeten": "fristet", "fritz": "fritz", "fritzchen": "fritzch", "fritzens": "fritz", "froh": "froh", "frohe": "froh", "frohen": "froh", "fröhlich": "frohlich", "fröhliche": "frohlich", "fröhlichen": "frohlich", "fröhlicher": "frohlich", "fröhliches": "frohlich", "fröhlichkeit": "frohlich", "fröhlichste": "frohlich", "fröhlichsten": "frohlich", "frohlocken": "frohlock", "frohsinn": "frohsinn", "fromm": "fromm", "fromme": "fromm", "frommen": "fromm", "frommer": "fromm", "frommes": "fromm", "frömmigkeit": "frommig", "frömmlichen": "frommlich", "frommt": "frommt", "fronen": "fron", "frönen": "fron", "front": "front", "frönte": "front", "fronten": "front", "frontpage": "frontpag", "fronvögte": "fronvogt", "froren": "fror", "frosch": "frosch", "froscharme": "froscharm", "frösche": "frosch", "fröschen": "frosch", "froschmaul": "froschmaul", "froschmäulig": "froschmaul", "frost": "frost", "froste": "frost", "fröstelte": "frostelt", "frucht": "frucht", "fruchtbar": "fruchtbar", "fruchtbaren": "fruchtbar", "fruchtbarer": "fruchtbar", "fruchtbaum": "fruchtbaum", "früchte": "frucht", "fruchten": "frucht", "früchten": "frucht", "fruchtlos": "fruchtlos", "fruchtsaft": "fruchtsaft", "früh": "fruh", "frühaufsteher": "fruhaufsteh", "frühe": "fruh", "frühen": "fruh", "früher": "fruh", "frühere": "fruh", "früheren": "fruh", "früherer": "fruh", "früheres": "fruh", "frühesten": "fruh", "frühester": "fruh", "frühjahr": "fruhjahr", "frühleben": "fruhleb", "frühlicht": "fruhlicht", "frühling": "fruhling", "frühlings": "fruhling", "frühlingsanfang": "fruhlingsanfang", "frühlingsbäche": "fruhlingsbach", "frühlingshimmel": "fruhlingshimmel", "frühlingslebens": "fruhlingsleb", "frühlingslicht": "fruhlingslicht", "frühlingslied": "fruhlingslied", "frühlingslüftlein": "fruhlingsluftlein", "frühlingsmorgen": "fruhlingsmorg", "frühlingsritt": "fruhlingsritt", "frühlingsritter": "fruhlingsritt", "frühlingssonne": "fruhlingssonn", "frühlingssonnenwelt": "fruhlingssonnenwelt", "frühlingstag": "fruhlingstag", "frühlingstage": "fruhlingstag", "frühlingstagen": "fruhlingstag", "frühlingstages": "fruhlingstag", "frühlingswärme": "fruhlingswarm", "frühpirsch": "fruhpirsch", "frühreifen": "fruhreif", "frührot": "fruhrot", "frühschoppen": "fruhschopp", "frühstück": "fruhstuck", "frühstücken": "fruhstuck", "frühstücks": "fruhstuck", "frühstücksei": "fruhstucksei", "frühstücksgeschirr": "fruhstucksgeschirr", "frühwolken": "fruhwolk", "frumm": "frumm", "frummen": "frumm", "frustra": "frustra", "fuchs": "fuch", "füchs": "fuch", "füchse": "fuchs", "fuchsen": "fuchs", "füchsin": "fuchsin", "fuchsriegeln": "fuchsriegeln", "fuchtelnd": "fuchtelnd", "fuchtelte": "fuchtelt", "fuerunt": "fuerunt", "fufzg": "fufzg", "füge": "fug", "fügen": "fug", "fügt": "fugt", "fügte": "fugt", "fügung": "fugung", "fühlbar": "fuhlbar", "fühlbare": "fuhlbar", "fühle": "fuhl", "fühlen": "fuhl", "fühlend": "fuhlend", "fühlenden": "fuhlend", "fühlerhörnchen": "fuhlerhornch", "fühlern": "fuhl", "fühlhörnchen": "fuhlhornch", "fühlhörner": "fuhlhorn", "fühllosen": "fuhllos", "fühllosigkeit": "fuhllos", "fühlst": "fuhl", "fühlt": "fuhlt", "fühlte": "fuhlt", "fühlten": "fuhlt", "fuhr": "fuhr", "fuhre": "fuhr", "führe": "fuhr", "fuhren": "fuhr", "führen": "fuhr", "führende": "fuhrend", "führenden": "fuhrend", "führer": "fuhr", "führerschein": "fuhrerschein", "führest": "fuhr", "führet": "fuhret", "führete": "fuhret", "fuhrknecht": "fuhrknecht", "fuhrleute": "fuhrleut", "führt": "fuhrt", "führte": "fuhrt", "führten": "fuhrt", "führung": "fuhrung", "führungsleute": "fuhrungsleut", "führungszeugnis": "fuhrungszeugnis", "fuhrwerk": "fuhrwerk", "fuhrwerke": "fuhrwerk", "fuhrwerklein": "fuhrwerklein", "füll": "full", "fülle": "full", "füllen": "full", "füllenden": "fullend", "füllet": "fullet", "füllfederhalter": "fullfederhalt", "füllt": "fullt", "füllte": "fullt", "füllten": "fullt", "fummelt": "fummelt", "fun": "fun", "fundament": "fundament", "fundamente": "fundament", "funden": "fund", "fundenseetauern": "fundenseetau", "fundiert": "fundiert", "fünf": "funf", "fünfbeiniges": "funfbein", "fünfe": "funf", "fünfen": "funf", "fünfer": "funf", "fünfhundert": "funfhundert", "fünfhundertmarkscheine": "funfhundertmarkschein", "fünfhundertmarkscheinen": "funfhundertmarkschein", "fünfjähriges": "funfjahr", "fünfte": "funft", "fünftelminute": "funftelminut", "fünften": "funft", "fünftes": "funft", "fünfunddreissigjährigen": "funfunddreissigjahr", "fünfunddreißigmal": "funfunddreissigmal", "fünfundneunzig": "funfundneunz", "fünfundsechzig": "funfundsechz", "fünfundvierziger": "funfundvierz", "fünfundzwanzig": "funfundzwanz", "fünfzehn": "funfzehn", "fünfzehnmal": "funfzehnmal", "fünfzehnten": "funfzehnt", "fünfzig": "funfzig", "fünfziger": "funfzig", "fünfzigjährigen": "funfzigjahr", "fünfzigsten": "funfzig", "fungiert": "fungiert", "funk": "funk", "fünkchen": "funkch", "funkelhelle": "funkelhell", "funkeln": "funkeln", "funkelnden": "funkelnd", "funkelte": "funkelt", "funkelten": "funkelt", "funken": "funk", "funkendampf": "funkendampf", "funkenknopf": "funkenknopf", "funkhaus": "funkhaus", "funkhauses": "funkhaus", "funkleute": "funkleut", "funktion": "funktion", "funktionen": "funktion", "funktionieren": "funktioni", "funktionierende": "funktionier", "funktionierte": "funktioniert", "fur": "fur", "für": "fur", "fürbass": "furbass", "fürbaß": "furbass", "fürbittbuch": "furbittbuch", "fürbitte": "furbitt", "fürbittgebet": "furbittgebet", "fürbringen": "furbring", "furche": "furch", "furchen": "furch", "furcht": "furcht", "fürcht": "furcht", "furchtbar": "furchtbar", "furchtbare": "furchtbar", "furchtbarem": "furchtbar", "furchtbaren": "furchtbar", "furchtbarste": "furchtbarst", "fürchte": "furcht", "fürchten": "furcht", "fürchtende": "furchtend", "fürchtenden": "furchtend", "fürchterlich": "furcht", "fürchterliche": "furcht", "fürchterlichen": "furcht", "fürchterliches": "furcht", "fürchtet": "furchtet", "fürchtete": "furchtet", "fürchteten": "furchtet", "furchtlosigkeit": "furchtlos", "furchtsam": "furchtsam", "furchtsamen": "furchtsam", "furchtsames": "furchtsam", "fürder": "furd", "fürdere": "furd", "füreinander": "fureinand", "fürgschützt": "furgschutzt", "fürgstreckt": "furgstreckt", "fürnehmere": "furnehm", "fürplärren": "furplarr", "fürs": "fur", "fürschlag": "furschlag", "fürsichtige": "fursicht", "fürst": "furst", "fürsten": "furst", "fürstenhochzeit": "furstenhochzeit", "fürstenmantel": "furstenmantel", "fürstentodes": "furstentod", "fürstlich": "furstlich", "fürstlichen": "furstlich", "fürstpröpstlichen": "furstpropst", "furt": "furt", "furtghadert": "furtghadert", "fürwahr": "furwahr", "fürwahrhalten": "furwahrhalt", "fürwahrhaltens": "furwahrhalt", "fuss": "fuss", "fuß": "fuss", "füss": "fuss", "fussball": "fussball", "fussballteam": "fussballteam", "fussballverein": "fussballverein", "fussboden": "fussbod", "fußboden": "fussbod", "füsschen": "fussch", "fusse": "fuss", "fuße": "fuss", "füsse": "fuss", "füße": "fuss", "füssen": "fuss", "füßen": "fuss", "fussende": "fussend", "fusses": "fuss", "fußes": "fuss", "fussgänger": "fussgang", "fusspfad": "fusspfad", "fussschemelchen": "fussschemelch", "fusssohle": "fusssohl", "fußsohle": "fusssohl", "fusssohlen": "fusssohl", "fußsohlen": "fusssohl", "fussspitze": "fussspitz", "fußspitze": "fussspitz", "fussspitzen": "fussspitz", "fußspitzen": "fussspitz", "fusstritt": "fusstritt", "fusstritten": "fusstritt", "futter": "futt", "futterbarren": "futterbarr", "füttere": "futt", "füttern": "futt", "füttert": "futtert", "g": "g", "gab": "gab", "gäb": "gab", "gabe": "gab", "gäbe": "gab", "gabel": "gabel", "gabelhirsch": "gabelhirsch", "gaben": "gab", "gäbst": "gabst", "gackernden": "gackernd", "gad": "gad", "gaffen": "gaff", "gaffende": "gaffend", "gaffer": "gaff", "gahlings": "gahling", "gähnte": "gahnt", "galantinen": "galantin", "galerie": "galeri", "galgen": "galg", "galgenhund": "galgenhund", "galgenlaune": "galgenlaun", "galion": "galion", "galions": "galion", "galle": "gall", "gallen": "gall", "galler": "gall", "gallige": "gallig", "galligen": "gallig", "galopp": "galopp", "galoppierte": "galoppiert", "galt": "galt", "gälte": "galt", "galten": "galt", "gamsbart": "gamsbart", "gan": "gan", "gang": "gang", "gangbar": "gangbar", "gangbaren": "gangbar", "gange": "gang", "gänge": "gang", "gängelband": "gangelband", "gangen": "gang", "gängen": "gang", "gans": "gan", "gäns": "gan", "gänse": "gans", "gänsen": "gans", "gänsestall": "gansestall", "ganz": "ganz", "ganze": "ganz", "ganzem": "ganz", "ganzen": "ganz", "ganzer": "ganz", "ganzes": "ganz", "gänzlich": "ganzlich", "gänzliche": "ganzlich", "gänzlichen": "ganzlich", "gänzlicher": "ganzlich", "gar": "gar", "garantie": "garanti", "garaus": "garaus", "garben": "garb", "garderobe": "garderob", "garderobestücken": "garderobestuck", "gardine": "gardin", "gardinen": "gardin", "gardinenstange": "gardinenstang", "gare": "gar", "gärende": "garend", "gärenden": "garend", "garn": "garn", "garne": "garn", "garnflechten": "garnflecht", "garniert": "garniert", "garnsbock": "garnsbock", "garstig": "garstig", "garstige": "garstig", "garstiger": "garstig", "garstiges": "garstig", "garten": "gart", "gärten": "gart", "garteng": "garteng", "gartenhäuschen": "gartenhausch", "gartenmitte": "gartenmitt", "gartens": "gart", "gartenwege": "gartenweg", "gartenzaun": "gartenzaun", "gärtner": "gartn", "gässchen": "gassch", "gasse": "gass", "gassen": "gass", "gassenbuben": "gassenbub", "gassenjunge": "gassenj", "gassenjungen": "gassenj", "gassenmädchen": "gassenmadch", "gast": "gast", "gaste": "gast", "gäste": "gast", "gästen": "gast", "gastes": "gast", "gastfreunde": "gastfreund", "gastfreundlichen": "gastfreund", "gastgebenden": "gastgeb", "gastgeber": "gastgeb", "gastgebers": "gastgeb", "gasthaus": "gasthaus", "gasthause": "gasthaus", "gasthauses": "gasthaus", "gasthof": "gasthof", "gasthofe": "gasthof", "gasthofes": "gasthof", "gastliche": "gastlich", "gastlichen": "gastlich", "gastmahle": "gastmahl", "gastspiel": "gastspiel", "gaststube": "gaststub", "gaststuben": "gaststub", "gastwirt": "gastwirt", "gates": "gat", "gatte": "gatt", "gatten": "gatt", "gattentreue": "gattentreu", "gattin": "gattin", "gattung": "gattung", "gattungen": "gattung", "gattungs": "gattung", "gau": "gau", "gaukelei": "gaukelei", "gäule": "gaul", "gaumen": "gaum", "gazegewänder": "gazegewand", "gazeschleier": "gazeschlei", "gb": "gb", "ge": "ge", "geachtet": "geachtet", "geädert": "geadert", "geahnt": "geahnt", "gealterten": "gealtert", "gealttätige": "gealttat", "geändert": "geandert", "geängstigtes": "geangstigt", "geantwortet": "geantwortet", "gearbeitet": "gearbeitet", "gearbeiteten": "gearbeitet", "geärgert": "geargert", "geartet": "geartet", "geäussert": "geaussert", "geäußert": "geaussert", "geb": "geb", "gebacken": "geback", "gebackene": "geback", "gebackenen": "geback", "gebadet": "gebadet", "gebahnt": "gebahnt", "gebälks": "gebalk", "geballt": "geballt", "geballte": "geballt", "gebar": "gebar", "gebärde": "gebard", "gebärden": "gebard", "gebärdend": "gebard", "gebärdenden": "gebard", "gebärdenspiel": "gebardenspiel", "gebärdet": "gebardet", "gebärdete": "gebardet", "gebären": "gebar", "gebärerin": "gebarerin", "gebäude": "gebaud", "gebauet": "gebauet", "gebaumelt": "gebaumelt", "gebaut": "gebaut", "gebaute": "gebaut", "gebe": "geb", "gebein": "gebein", "gebeine": "gebein", "gebeinen": "gebein", "gebell": "gebell", "gebellt": "gebellt", "geben": "geb", "gebend": "gebend", "gebessert": "gebessert", "gebest": "geb", "gebet": "gebet", "gebetbuch": "gebetbuch", "gebete": "gebet", "gebeten": "gebet", "gebetet": "gebetet", "gebetläuten": "gebetlaut", "gebetskapelle": "gebetskapell", "gebettet": "gebettet", "gebeugt": "gebeugt", "gebeugte": "gebeugt", "gebeugtes": "gebeugt", "gebiert": "gebiert", "gebiet": "gebiet", "gebiete": "gebiet", "gebieten": "gebiet", "gebietenden": "gebiet", "gebieter": "gebiet", "gebieterin": "gebieterin", "gebieterisch": "gebieter", "gebietes": "gebiet", "gebietet": "gebietet", "gebilde": "gebild", "gebilden": "gebild", "gebildet": "gebildet", "gebildeten": "gebildet", "gebildeter": "gebildet", "gebirg": "gebirg", "gebirge": "gebirg", "gebirges": "gebirg", "gebirgsflecken": "gebirgsfleck", "gebirgskräutermilch": "gebirgskrautermilch", "gebirgsweib": "gebirgsweib", "gebirgswildnis": "gebirgswildnis", "gebissen": "gebiss", "geblähten": "geblaht", "gebläuter": "geblaut", "geblendet": "geblendet", "geblickt": "geblickt", "geblieben": "geblieb", "gebliebener": "geblieb", "geblüt": "geblut", "geblüte": "geblut", "geblütes": "geblut", "gebogen": "gebog", "gebogenen": "gebog", "gebohntem": "gebohnt", "geboren": "gebor", "geborene": "gebor", "geborener": "gebor", "geborgen": "geborg", "geborgene": "geborg", "geborgt": "geborgt", "gebot": "gebot", "gebote": "gebot", "geboten": "gebot", "gebotene": "gebot", "gebotenen": "gebot", "gebots": "gebot", "gebrach": "gebrach", "gebracht": "gebracht", "gebrachte": "gebracht", "gebrannt": "gebrannt", "gebraten": "gebrat", "gebratene": "gebrat", "gebratenen": "gebrat", "gebrauch": "gebrauch", "gebrauche": "gebrauch", "gebräuche": "gebrauch", "gebrauchen": "gebrauch", "gebräuchen": "gebrauch", "gebrauches": "gebrauch", "gebräuchlich": "gebrauch", "gebräuchlicher": "gebrauch", "gebrauchs": "gebrauch", "gebraucht": "gebraucht", "gebrauchte": "gebraucht", "gebrauchten": "gebraucht", "gebräunte": "gebraunt", "gebräunten": "gebraunt", "gebräuntes": "gebraunt", "gebreitet": "gebreitet", "gebremst": "gebrem", "gebricht": "gebricht", "gebrochen": "gebroch", "gebrochener": "gebroch", "gebrüll": "gebrull", "gebrumm": "gebrumm", "gebrummt": "gebrummt", "gebt": "gebt", "gebückt": "gebuckt", "gebühr": "gebuhr", "gebührend": "gebuhr", "gebührt": "gebuhrt", "gebührte": "gebuhrt", "gebumst": "gebum", "gebunden": "gebund", "gebundenen": "gebund", "gebundenes": "gebund", "gebürsteten": "geburstet", "geburt": "geburt", "geburten": "geburt", "gebürtig": "geburt", "geburtsorte": "geburtsort", "geburtsschein": "geburtsschein", "geburtstag": "geburtstag", "geburtstage": "geburtstag", "geburtstages": "geburtstag", "geburtstags": "geburtstag", "gebüsch": "gebusch", "gebüsche": "gebusch", "gebüsst": "gebusst", "gedacht": "gedacht", "gedachte": "gedacht", "gedachten": "gedacht", "gedächten": "gedacht", "gedächtnis": "gedachtnis", "gedächtnisglauben": "gedachtnisglaub", "gedächtnisse": "gedachtnis", "gedächtnissen": "gedachtnis", "gedächtnisses": "gedachtnis", "gedämpft": "gedampft", "gedämpftes": "gedampft", "gedanke": "gedank", "gedanken": "gedank", "gedankenaustausch": "gedankenaustausch", "gedankenform": "gedankenform", "gedankengang": "gedankengang", "gedankenlos": "gedankenlos", "gedankenlose": "gedankenlos", "gedankenlosen": "gedankenlos", "gedankenlosigkeit": "gedankenlos", "gedankenplanes": "gedankenplan", "gedankenreichen": "gedankenreich", "gedankenreihen": "gedankenreih", "gedankens": "gedank", "gedankenspäne": "gedankenspan", "gedankenspielen": "gedankenspiel", "gedankensprung": "gedankenspr", "gedeckt": "gedeckt", "gedeckten": "gedeckt", "gedehnt": "gedehnt", "gedeihen": "gedeih", "gedeihens": "gedeih", "gedeihliche": "gedeih", "gedeihlichste": "gedeih", "gedeiht": "gedeiht", "gedemütigt": "gedemutigt", "gedenk": "gedenk", "gedenke": "gedenk", "gedenken": "gedenk", "gedenket": "gedenket", "gedenkfeiern": "gedenkfei", "gedenkmedaille": "gedenkmedaill", "gedenkst": "gedenk", "gedenkt": "gedenkt", "gedenktag": "gedenktag", "gedicht": "gedicht", "gedichten": "gedicht", "gediegenes": "gedieg", "gediegne": "gediegn", "gedieh": "gedieh", "gediehen": "gedieh", "gedient": "gedient", "gediente": "gedient", "gedonnerkracht": "gedonnerkracht", "gedörrt": "gedorrt", "gedörrte": "gedorrt", "gedörrten": "gedorrt", "gedränge": "gedrang", "gedrängt": "gedrangt", "gedreht": "gedreht", "gedrehter": "gedreht", "gedruckt": "gedruckt", "gedrückt": "gedruckt", "gedruckten": "gedruckt", "gedrucktes": "gedruckt", "gedrücktes": "gedruckt", "gedrücktheit": "gedruckt", "geduld": "geduld", "geduldet": "geduldet", "geduldig": "geduld", "geduldigen": "geduld", "geduldspiel": "geduldspiel", "geduscht": "geduscht", "geehrt": "geehrt", "geehrtam": "geehrtam", "geehrte": "geehrt", "geehrten": "geehrt", "geehrter": "geehrt", "geeignet": "geeignet", "geeigneten": "geeignet", "geeigneter": "geeignet", "geeilt": "geeilt", "geeinten": "geeint", "geendet": "geendet", "geendigt": "geendigt", "geerbt": "geerbt", "geerntet": "geerntet", "gefahr": "gefahr", "gefährde": "gefahrd", "gefährdet": "gefahrdet", "gefährdung": "gefahrd", "gefahren": "gefahr", "gefährlich": "gefahr", "gefährliche": "gefahr", "gefährlichen": "gefahr", "gefährlicher": "gefahr", "gefährliches": "gefahr", "gefährlichkeit": "gefahr", "gefahrlos": "gefahrlos", "gefährt": "gefahrt", "gefährte": "gefahrt", "gefährten": "gefahrt", "gefährtin": "gefahrtin", "gefallen": "gefall", "gefällig": "gefall", "gefälligkeit": "gefall", "gefälligst": "gefall", "gefällt": "gefallt", "gefälschte": "gefalscht", "gefälseht": "gefalseht", "gefaltet": "gefaltet", "gefalteten": "gefaltet", "gefangen": "gefang", "gefangene": "gefang", "gefangenen": "gefang", "gefangener": "gefang", "gefangennahme": "gefangennahm", "gefangennehmung": "gefangennehm", "gefangenschaft": "gefangenschaft", "gefangenschaften": "gefangenschaft", "gefängnis": "gefangnis", "gefängnisses": "gefangnis", "gefärbt": "gefarbt", "gefärbte": "gefarbt", "gefärbten": "gefarbt", "gefäss": "gefass", "gefäß": "gefass", "gefässe": "gefass", "gefäße": "gefass", "gefässen": "gefass", "gefäßen": "gefass", "gefasst": "gefasst", "gefaßt": "gefasst", "gefasste": "gefasst", "gefassten": "gefasst", "gefastet": "gefastet", "gefecht": "gefecht", "gefechtlärmens": "gefechtlarm", "gefegt": "gefegt", "gefehlt": "gefehlt", "gefeiert": "gefeiert", "gefeierte": "gefeiert", "gefeit": "gefeit", "gefertigt": "gefertigt", "gefesselt": "gefesselt", "gefiel": "gefiel", "gefilde": "gefild", "gefilmt": "gefilmt", "gefilzt": "gefilzt", "geflammten": "geflammt", "geflecht": "geflecht", "geflochten": "geflocht", "geflogen": "geflog", "geflohen": "gefloh", "geflüchtet": "gefluchtet", "geflügelte": "geflugelt", "geflügelten": "geflugelt", "gefolge": "gefolg", "gefolgt": "gefolgt", "gefordert": "gefordert", "gefördert": "gefordert", "geformt": "geformt", "geformte": "geformt", "geformten": "geformt", "geformtes": "geformt", "gefragt": "gefragt", "gefressen": "gefress", "gefrorener": "gefror", "gefrühstückt": "gefruhstuckt", "gefühl": "gefuhl", "gefühle": "gefuhl", "gefühlen": "gefuhl", "gefühllos": "gefuhllos", "gefühllosigkeit": "gefuhllos", "gefühls": "gefuhl", "gefühlt": "gefuhlt", "gefühlvoller": "gefuhlvoll", "geführet": "gefuhret", "geführt": "gefuhrt", "gefüllt": "gefullt", "gefüllte": "gefullt", "gefunden": "gefund", "gefundenen": "gefund", "gefundenes": "gefund", "gefurchte": "gefurcht", "gefurchten": "gefurcht", "gefürchtet": "gefurchtet", "gefürchtete": "gefurchtet", "gefüttert": "gefuttert", "gegangen": "gegang", "gegangenen": "gegang", "gegeben": "gegeb", "gegebene": "gegeb", "gegebenen": "gegeb", "gegebenheiten": "gegeb", "gegen": "geg", "gegenargument": "gegenargument", "gegenbild": "gegenbild", "gegend": "gegend", "gegenden": "gegend", "gegeneinander": "gegeneinand", "gegenfinanzierung": "gegenfinanzier", "gegengewichts": "gegengewicht", "gegengründe": "gegengrund", "gegenliebe": "gegenlieb", "gegensatz": "gegensatz", "gegensatze": "gegensatz", "gegensätze": "gegensatz", "gegensätzen": "gegensatz", "gegenseitig": "gegenseit", "gegenseitige": "gegenseit", "gegenseitigkeit": "gegenseit", "gegenstand": "gegenstand", "gegenstande": "gegenstand", "gegenstände": "gegenstand", "gegenständen": "gegenstand", "gegenstandes": "gegenstand", "gegenteil": "gegenteil", "gegenüber": "gegenub", "gegenüberliegende": "gegenuberlieg", "gegenüberliegenden": "gegenuberlieg", "gegenüberstanden": "gegenuberstand", "gegenüberstehende": "gegenubersteh", "gegenwart": "gegenwart", "gegenwärtig": "gegenwart", "gegenwärtige": "gegenwart", "gegenwärtigem": "gegenwart", "gegenwärtigen": "gegenwart", "gegenwärtiger": "gegenwart", "gegenwärtigeren": "gegenwart", "gegenwehr": "gegenwehr", "gegenwirkung": "gegenwirk", "gegessen": "gegess", "gegewelt": "gegewelt", "geglänzt": "geglanzt", "geglättete": "geglattet", "geglätteten": "geglattet", "geglaubt": "geglaubt", "geglückt": "gegluckt", "geglückte": "gegluckt", "geglückten": "gegluckt", "geglüht": "gegluht", "gegner": "gegn", "gegnerische": "gegner", "gegnern": "gegn", "gegners": "gegn", "gegolten": "gegolt", "gegönnt": "gegonnt", "gegraben": "gegrab", "gegröl": "gegrol", "gegrübelt": "gegrubelt", "gegründet": "gegrundet", "gegründeten": "gegrundet", "gegrüsst": "gegrusst", "geguckt": "geguckt", "geh": "geh", "gehabt": "gehabt", "gehaftet": "gehaftet", "gehalt": "gehalt", "gehalten": "gehalt", "gehaltene": "gehalt", "gehaltenes": "gehalt", "gehaltlosigkeiten": "gehaltlos", "gehalts": "gehalt", "gehaltvollste": "gehaltvoll", "gehandelt": "gehandelt", "gehänge": "gehang", "gehangen": "gehang", "gehängen": "gehang", "gehängt": "gehangt", "gehängten": "gehangt", "gehänselt": "gehanselt", "geharrt": "geharrt", "gehässigkeiten": "gehass", "gehasst": "gehasst", "gehaßt": "gehasst", "gehassten": "gehasst", "gehätschelt": "gehatschelt", "gehaucht": "gehaucht", "gehauen": "gehau", "gehauenen": "gehau", "gehäuft": "gehauft", "gehäufte": "gehauft", "gehäuften": "gehauft", "gehaust": "gehaust", "gehe": "geh", "geheftet": "geheftet", "gehefteten": "geheftet", "gehege": "geheg", "geheiliget": "geheiliget", "geheiligt": "geheiligt", "geheiligte": "geheiligt", "geheilt": "geheilt", "geheim": "geheim", "geheime": "geheim", "geheimen": "geheim", "geheimer": "geheim", "geheimes": "geheim", "geheimnis": "geheimnis", "geheimnisse": "geheimnis", "geheimnissen": "geheimnis", "geheimnisses": "geheimnis", "geheimnisvoll": "geheimnisvoll", "geheimnisvolle": "geheimnisvoll", "geheimnisvollen": "geheimnisvoll", "geheimnisvoller": "geheimnisvoll", "geheimnisvolles": "geheimnisvoll", "geheimnisvollste": "geheimnisvoll", "geheimsten": "geheim", "geheiratet": "geheiratet", "geheissen": "geheiss", "geheißen": "geheiss", "geheizt": "geheizt", "gehemmt": "gehemmt", "gehen": "geh", "gehend": "gehend", "gehenden": "gehend", "gehenkter": "gehenkt", "gehet": "gehet", "gehetzt": "gehetzt", "gehetzten": "gehetzt", "geheuer": "geheu", "gehilfe": "gehilf", "gehilfenprüfung": "gehilfenpruf", "gehindert": "gehindert", "gehirn": "gehirn", "gehirne": "gehirn", "gehirns": "gehirn", "gehn": "gehn", "gehoben": "gehob", "gehofft": "gehofft", "gehoffte": "gehofft", "gehöften": "gehoft", "geholfen": "geholf", "geholt": "geholt", "gehölz": "geholz", "gehölze": "geholz", "gehölzes": "geholz", "gehör": "gehor", "gehorchen": "gehorch", "gehorchend": "gehorch", "gehorchet": "gehorchet", "gehorchst": "gehorch", "gehorcht": "gehorcht", "gehorchten": "gehorcht", "gehöre": "gehor", "gehören": "gehor", "gehörig": "gehor", "gehörige": "gehor", "gehörigen": "gehor", "gehöriger": "gehor", "gehöriges": "gehor", "gehörnte": "gehornt", "gehörs": "gehor", "gehorsam": "gehorsam", "gehörst": "gehorst", "gehört": "gehort", "gehörte": "gehort", "gehörten": "gehort", "gehörtest": "gehort", "gehrock": "gehrock", "gehröcken": "gehrock", "gehst": "gehst", "geht": "geht", "gehüllt": "gehullt", "gehuret": "gehuret", "gehuscht": "gehuscht", "gehütet": "gehutet", "geige": "geig", "geigelein": "geigelein", "geigen": "geig", "geigender": "geigend", "geigensumsemann": "geigensumsemann", "geiger": "geig", "geigers": "geig", "geigte": "geigt", "geirrt": "geirrt", "geiss": "geiss", "geissel": "geissel", "geißel": "geissel", "geist": "geist", "geiste": "geist", "geister": "geist", "geisterblaue": "geisterblau", "geistergesellschaft": "geistergesellschaft", "geistergrauen": "geistergrau", "geisterheere": "geisterhe", "geistern": "geist", "geisterrede": "geisterred", "geistersprache": "geistersprach", "geisterwelt": "geisterwelt", "geistes": "geist", "geistesgaben": "geistesgab", "geistesgegenwart": "geistesgegenwart", "geisteskräfte": "geisteskraft", "geisteskranke": "geisteskrank", "geistestalente": "geistestalent", "geistesübung": "geistesub", "geistig": "geistig", "geistige": "geistig", "geistigem": "geistig", "geistigen": "geistig", "geistiger": "geistig", "geistigeren": "geistig", "geistigeres": "geistig", "geistiges": "geistig", "geistigkeit": "geistig", "geistigste": "geistig", "geistigsten": "geistig", "geistlich": "geistlich", "geistliche": "geistlich", "geistlichen": "geistlich", "geistlichkeit": "geistlich", "geistlose": "geistlos", "geistreich": "geistreich", "geistreiches": "geistreich", "geistreichste": "geistreich", "geiz": "geiz", "gejagt": "gejagt", "gekämmt": "gekammt", "gekämpft": "gekampft", "gekannt": "gekannt", "gekauft": "gekauft", "gekauften": "gekauft", "gekehrt": "gekehrt", "gekeltert": "gekeltert", "gekerbt": "gekerbt", "gekitzelt": "gekitzelt", "gekläff": "geklaff", "geklagt": "geklagt", "geklammert": "geklammert", "geklappert": "geklappert", "geklaut": "geklaut", "geklebt": "geklebt", "geklebten": "geklebt", "gekleidet": "gekleidet", "gekleideten": "gekleidet", "gekleidetes": "gekleidet", "geklemmt": "geklemmt", "geklettert": "geklettert", "gekneift": "gekneift", "geknurre": "geknurr", "gekocht": "gekocht", "gekommen": "gekomm", "gekonnt": "gekonnt", "geköpft": "gekopft", "gekostet": "gekostet", "gekränkt": "gekrankt", "gekräuselte": "gekrauselt", "gekreisst": "gekreisst", "gekreißt": "gekreisst", "gekreuzigt": "gekreuzigt", "gekreuzt": "gekreuzt", "gekreuzten": "gekreuzt", "gekriegt": "gekriegt", "gekrönt": "gekront", "gekrönten": "gekront", "gekühlt": "gekuhlt", "gelächelt": "gelachelt", "gelacht": "gelacht", "gelächter": "gelacht", "gelächters": "gelacht", "geladen": "gelad", "geladenen": "gelad", "gelage": "gelag", "gelagen": "gelag", "gelagerten": "gelagert", "gelähmte": "gelahmt", "gelähmten": "gelahmt", "gelände": "geland", "geländer": "geland", "gelandet": "gelandet", "gelang": "gelang", "gelänge": "gelang", "gelangen": "gelang", "gelangest": "gelang", "gelangt": "gelangt", "gelangte": "gelangt", "gelangten": "gelangt", "gelangung": "gelang", "gelangweilt": "gelangweilt", "gelass": "gelass", "gelassen": "gelass", "gelassenen": "gelass", "gelassener": "gelass", "gelassenheit": "gelass", "gelaufe": "gelauf", "gelaufen": "gelauf", "gelaunt": "gelaunt", "gelauscht": "gelauscht", "geläute": "gelaut", "geläutet": "gelautet", "gelb": "gelb", "gelbe": "gelb", "gelben": "gelb", "gelber": "gelb", "gelbes": "gelb", "gelbleuchtende": "gelbleucht", "gelblich": "gelblich", "geld": "geld", "geldabfluss": "geldabfluss", "geldaufzählens": "geldaufzahl", "geldbeutel": "geldbeutel", "geldbörse": "geldbors", "geldbürgschaft": "geldburgschaft", "geldbussen": "geldbuss", "geldchen": "geldch", "gelde": "geld", "gelder": "geld", "geldes": "geld", "geldgier": "geldgi", "geldklemme": "geldklemm", "geldmachen": "geldmach", "geldmännern": "geldmann", "geldmittel": "geldmittel", "geldmitteln": "geldmitteln", "geldnöten": "geldnot", "geldstück": "geldstuck", "geldsummen": "geldsumm", "geldtransfer": "geldtransf", "gelebt": "gelebt", "geleckten": "geleckt", "geleert": "geleert", "gelees": "gele", "gelegen": "geleg", "gelegenen": "geleg", "gelegenheit": "geleg", "gelegenheiten": "geleg", "gelegentlich": "gelegent", "gelegentliche": "gelegent", "gelegt": "gelegt", "gelegtes": "gelegt", "gelehnt": "gelehnt", "gelehret": "gelehret", "gelehrsamkeit": "gelehrsam", "gelehrt": "gelehrt", "gelehrte": "gelehrt", "gelehrten": "gelehrt", "gelehrter": "gelehrt", "gelehrteste": "gelehrt", "geleistet": "geleistet", "geleit": "geleit", "geleitet": "geleitet", "geleitete": "geleitet", "gelenkchen": "gelenkch", "gelenken": "gelenk", "gelenkige": "gelenk", "gelenkt": "gelenkt", "gelernt": "gelernt", "gelesen": "geles", "geleuchtet": "geleuchtet", "geleugnet": "geleugnet", "geliebet": "geliebet", "geliebt": "geliebt", "geliebte": "geliebt", "geliebten": "geliebt", "geliebter": "geliebt", "geliebtesten": "geliebt", "geliefert": "geliefert", "geliehen": "gelieh", "gelinde": "gelind", "gelinden": "gelind", "gelindert": "gelindert", "gelindes": "gelind", "gelindesten": "gelind", "gelingen": "geling", "gelingens": "geling", "gelingt": "gelingt", "gelitten": "gelitt", "gellend": "gellend", "gellenden": "gellend", "gellte": "gellt", "gelobet": "gelobet", "gelobt": "gelobt", "gelobte": "gelobt", "gelockt": "gelockt", "gelogen": "gelog", "gelöscht": "geloscht", "gelöst": "gelost", "gelt": "gelt", "gelte": "gelt", "gelten": "gelt", "geltend": "geltend", "geltende": "geltend", "geltenden": "geltend", "geltendmachen": "geltendmach", "geltens": "gelt", "gelübde": "gelubd", "gelübden": "gelubd", "gelungen": "gelung", "gelungene": "gelung", "gelungenen": "gelung", "gelüste": "gelust", "gelüsten": "gelust", "gelüstig": "gelust", "gelüstigkeit": "gelust", "gemach": "gemach", "gemächer": "gemach", "gemächern": "gemach", "gemächlich": "gemach", "gemächliches": "gemach", "gemachs": "gemach", "gemacht": "gemacht", "gemachten": "gemacht", "gemachter": "gemacht", "gemahl": "gemahl", "gemahle": "gemahl", "gemahlin": "gemahlin", "gemahnt": "gemahnt", "gemahnte": "gemahnt", "gemähte": "gemaht", "gemähtes": "gemaht", "gemälde": "gemald", "gemalt": "gemalt", "gemalten": "gemalt", "gemarterten": "gemartert", "gemäss": "gemass", "gemäß": "gemass", "gemässe": "gemass", "gemässes": "gemass", "gemäßes": "gemass", "gemässigt": "gemassigt", "gemäßigt": "gemassigt", "gemästet": "gemastet", "gemästeten": "gemastet", "gemäuer": "gemau", "gemecker": "gemeck", "gemehret": "gemehret", "gemein": "gemein", "gemeinde": "gemeind", "gemeindeammann": "gemeindeammann", "gemeindedienste": "gemeindedien", "gemeindegliedern": "gemeindeglied", "gemeindegutes": "gemeindegut", "gemeinden": "gemeind", "gemeindepfarrer": "gemeindepfarr", "gemeindepräsident": "gemeindeprasident", "gemeindeschreiber": "gemeindeschreib", "gemeindespritze": "gemeindespritz", "gemeine": "gemein", "gemeinen": "gemein", "gemeiner": "gemein", "gemeingut": "gemeingut", "gemeinheit": "gemein", "gemeinhin": "gemeinhin", "gemeiniglich": "gemeinig", "gemeinnützig": "gemeinnutz", "gemeinnützige": "gemeinnutz", "gemeinsam": "gemeinsam", "gemeinsame": "gemeinsam", "gemeinsamen": "gemeinsam", "gemeinsamkeiten": "gemeinsam", "gemeinschaft": "gemeinschaft", "gemeinschaften": "gemeinschaft", "gemeinschaftlich": "gemeinschaft", "gemeinschaftliche": "gemeinschaft", "gemeinschaftlichen": "gemeinschaft", "gemeinschaftliches": "gemeinschaft", "gemeinschaftsbadezimmern": "gemeinschaftsbadezimm", "gemeinste": "gemein", "gemeinsten": "gemein", "gemeint": "gemeint", "gemeinte": "gemeint", "gemeinwesen": "gemeinwes", "gemeisselt": "gemeisselt", "gemeldet": "gemeldet", "gemengt": "gemengt", "gemerkt": "gemerkt", "gemessene": "gemess", "gemessenen": "gemess", "gemessener": "gemess", "gemieden": "gemied", "gemiedene": "gemied", "gemieteten": "gemietet", "gemildert": "gemildert", "gemindert": "gemindert", "gemisch": "gemisch", "gemischt": "gemischt", "gemischten": "gemischt", "gemischtes": "gemischt", "gemordet": "gemordet", "gemsbart": "gemsbart", "gemsbärte": "gemsbart", "gemshorn": "gemshorn", "gemüllhaufen": "gemullhauf", "gemurrt": "gemurrt", "gemüse": "gemus", "gemüsegarten": "gemusegart", "gemüsegartens": "gemusegart", "gemüseplatz": "gemuseplatz", "gemusst": "gemusst", "gemüt": "gemut", "gemüte": "gemut", "gemüter": "gemut", "gemütes": "gemut", "gemütlich": "gemut", "gemütliche": "gemut", "gemütlichen": "gemut", "gemütlicher": "gemut", "gemütlichkeit": "gemut", "gemüts": "gemut", "gemütsanlage": "gemutsanlag", "gemütsart": "gemutsart", "gemütsbeschaffenheit": "gemutsbeschaff", "gemütskräfte": "gemutskraft", "gemütsverfassung": "gemutsverfass", "gemütswesen": "gemutswes", "gemütvolle": "gemutvoll", "gen": "gen", "genagelt": "genagelt", "genähert": "genahert", "genährt": "genahrt", "genannt": "genannt", "genannte": "genannt", "genanntem": "genannt", "genannten": "genannt", "genarrtes": "genarrt", "genau": "genau", "genaue": "genau", "genauen": "genau", "genauer": "genau", "genauere": "genau", "genaueres": "genau", "genaues": "genau", "genaueste": "genau", "genauso": "genauso", "genausten": "genaust", "genehm": "genehm", "genehmigt": "genehmigt", "geneigt": "geneigt", "geneigte": "geneigt", "geneigtem": "geneigt", "geneigter": "geneigt", "geneigtheit": "geneigt", "genera": "genera", "general": "general", "generäle": "general", "generalen": "general", "generalsekretär": "generalsekretar", "generalstreik": "generalstreik", "generalsynode": "generalsynod", "generation": "generation", "generell": "generell", "generelles": "generell", "genesen": "genes", "genesis": "genesis", "genesung": "genes", "genf": "genf", "genfer": "genf", "genialen": "genial", "genick": "genick", "genickt": "genickt", "genie": "geni", "genien": "geni", "genieren": "geni", "geniert": "geniert", "genies": "geni", "genieschwüngen": "genieschwung", "geniessen": "geniess", "genießen": "geniess", "geniessest": "geniess", "geniesst": "geniesst", "genießt": "geniesst", "genitiv": "genitiv", "genitive": "genitiv", "genius": "genius", "genommen": "genomm", "genommnen": "genommn", "genoss": "genoss", "genoß": "genoss", "genosse": "genoss", "genossen": "genoss", "genossene": "genoss", "genossenen": "genoss", "genossin": "genossin", "genötigt": "genotigt", "gens": "gen", "gentliche": "gentlich", "genug": "genug", "genüge": "genug", "genügen": "genug", "genügend": "genug", "genügenden": "genug", "genügender": "genug", "genugsam": "genugsam", "genügsam": "genugsam", "genugsamem": "genugsam", "genugsamer": "genugsam", "genügsamkeit": "genugsam", "genügt": "genugt", "genügte": "genugt", "genugtuung": "genugtu", "genus": "genus", "genuss": "genuss", "genuß": "genuss", "genussarten": "genussart", "genusse": "genuss", "genüsse": "genuss", "genüssen": "genuss", "genusses": "genuss", "genussreich": "genussreich", "genußreich": "genussreich", "genützt": "genutzt", "geoffenbart": "geoffenbart", "geoffenbarte": "geoffenbart", "geoffenbartem": "geoffenbart", "geoffenbarten": "geoffenbart", "geöffnet": "geoffnet", "geöffnete": "geoffnet", "geöffneten": "geoffnet", "geöffnetwerden": "geoffnetwerd", "geographiebuch": "geographiebuch", "geographiebuche": "geographiebuch", "geographiebuches": "geographiebuch", "geohrfeigt": "geohrfeigt", "geölte": "geolt", "geometer": "geomet", "geometrie": "geometri", "geometrische": "geometr", "geometrischen": "geometr", "geopfert": "geopfert", "geordnet": "geordnet", "georg": "georg", "gepaart": "gepaart", "gepäck": "gepack", "gepäckes": "gepack", "gepackt": "gepackt", "gepäckwagen": "gepackwag", "gepanzerter": "gepanzert", "gepasst": "gepasst", "gepaßt": "gepasst", "gepeinigt": "gepeinigt", "gepeinigter": "gepeinigt", "gepeitscht": "gepeitscht", "gepfeife": "gepfeif", "gepflanzt": "gepflanzt", "gepflanzte": "gepflanzt", "gepflasterten": "gepflastert", "gepflegt": "gepflegt", "gepflegte": "gepflegt", "gepflegter": "gepflegt", "gepflogen": "gepflog", "gepflückt": "gepfluckt", "gepflügt": "gepflugt", "gepfropft": "gepfropft", "geplagt": "geplagt", "geplante": "geplant", "geplanten": "geplant", "geplättet": "geplattet", "geplauder": "geplaud", "geplünderten": "geplundert", "gepolsterter": "gepolstert", "geprägt": "gepragt", "gepränge": "geprang", "gepredigt": "gepredigt", "gepressten": "gepresst", "gepresster": "gepresst", "gepriesen": "gepries", "geprüft": "gepruft", "geprügelt": "geprugelt", "geprügelten": "geprugelt", "geputzt": "geputzt", "geputzte": "geputzt", "geputzter": "geputzt", "gequält": "gequalt", "gequälten": "gequalt", "gerächt": "geracht", "gerade": "gerad", "geraden": "gerad", "gerader": "gerad", "geradeso": "geradeso", "geradewegs": "geradeweg", "geradezu": "geradezu", "geradheit": "gerad", "geradso": "geradso", "gerannt": "gerannt", "gerassel": "gerassel", "gerasselt": "gerasselt", "gerast": "gerast", "gerastet": "gerastet", "gerät": "gerat", "geraten": "gerat", "gerätes": "gerat", "geratewohl": "geratewohl", "gerattere": "geratt", "gerauft": "gerauft", "geraume": "geraum", "geraumer": "geraum", "geräumige": "geraum", "geräumigen": "geraum", "geräusch": "gerausch", "geräusches": "gerausch", "geräuschlosen": "gerauschlos", "geräuschvollen": "gerauschvoll", "geräuschvollsten": "gerauschvoll", "gerdt": "gerdt", "gerechnet": "gerechnet", "gerecht": "gerecht", "gerechte": "gerecht", "gerechten": "gerecht", "gerechter": "gerecht", "gerechtfertigt": "gerechtfertigt", "gerechtfertigter": "gerechtfertigt", "gerechtigkeit": "gerecht", "gerechtigkeitsformen": "gerechtigkeitsform", "gerede": "gered", "geredet": "geredet", "geregnet": "geregnet", "gereicht": "gereicht", "gereigte": "gereigt", "gereimtes": "gereimt", "gereinigt": "gereinigt", "gereinigten": "gereinigt", "gereist": "gereist", "gereizt": "gereizt", "gereiztheit": "gereizt", "gerettet": "gerettet", "gerettete": "gerettet", "geretteten": "gerettet", "gereue": "gereu", "gereuen": "gereu", "gereuend": "gereu", "gereut": "gereut", "gereute": "gereut", "gereuungen": "gereu", "gericht": "gericht", "gerichte": "gericht", "gerichten": "gericht", "gerichtes": "gericht", "gerichtet": "gerichtet", "gerichtete": "gerichtet", "gerichtetes": "gerichtet", "gerichtlich": "gericht", "gerichts": "gericht", "gerichtsbeamten": "gerichtsbeamt", "gerichtsbeschluss": "gerichtsbeschluss", "gerichtsbeschluß": "gerichtsbeschluss", "gerichtsdiener": "gerichtsdi", "gerichtshöfe": "gerichtshof", "gerichtshöfen": "gerichtshof", "gerichtskanzleien": "gerichtskanzlei", "gerichtsorganisation": "gerichtsorganisation", "gerichtsorganismus": "gerichtsorganismus", "gerichtssache": "gerichtssach", "gerichtsschranken": "gerichtsschrank", "gerichtsschriften": "gerichtsschrift", "gerichtsverhandlung": "gerichtsverhandl", "gerichtswesens": "gerichtswes", "gerichtszimmer": "gerichtszimm", "gerieben": "gerieb", "geriebener": "gerieb", "geriegelt": "geriegelt", "geriet": "geriet", "gerieten": "geriet", "gering": "gering", "geringe": "gering", "geringem": "gering", "geringen": "gering", "geringer": "gering", "geringere": "gering", "geringerer": "gering", "geringeres": "gering", "geringes": "gering", "geringfügig": "geringfug", "geringfügige": "geringfug", "geringfügigsten": "geringfug", "geringgeschätzt": "geringgeschatzt", "geringschätzig": "geringschatz", "geringschätzung": "geringschatz", "geringste": "gering", "geringsten": "gering", "gerinnen": "gerinn", "gerippe": "geripp", "geripptes": "gerippt", "gerissen": "geriss", "geritten": "geritt", "german": "german", "germanen": "german", "germanischen": "german", "gern": "gern", "gerne": "gern", "gerochen": "geroch", "geröllhalde": "gerollhald", "geröllhalden": "gerollhald", "geröllhang": "gerollhang", "geröstete": "gerostet", "gerösteten": "gerostet", "geröstetes": "gerostet", "gerötet": "gerotet", "gerötete": "gerotet", "geröteter": "gerotet", "gersom": "gersom", "gerson": "gerson", "gersons": "gerson", "gerste": "gerst", "gerstenbrot": "gerstenbrot", "gerte": "gert", "geruch": "geruch", "gerüche": "geruch", "geruches": "geruch", "geruchs": "geruch", "gerücht": "gerucht", "gerüchte": "gerucht", "gerüchteweise": "geruchteweis", "gerüchtweise": "geruchtweis", "gerufen": "geruf", "gerufenwerdens": "gerufenwerd", "gerührt": "geruhrt", "gerührter": "geruhrt", "geruhsamen": "geruhsam", "geruht": "geruht", "gerumpel": "gerumpel", "gerümpel": "gerumpel", "gerümpelfuhre": "gerumpelfuhr", "gerüste": "gerust", "gerüstet": "gerustet", "gerüsteten": "gerustet", "gerutscht": "gerutscht", "gerüttelt": "geruttelt", "gerütteltes": "geruttelt", "gesäet": "gesaet", "gesagt": "gesagt", "gesagten": "gesagt", "gesäht": "gesaht", "gesalbt": "gesalbt", "gesalbte": "gesalbt", "gesalbten": "gesalbt", "gesalzenem": "gesalz", "gesammelt": "gesammelt", "gesammelte": "gesammelt", "gesammeltes": "gesammelt", "gesamt": "gesamt", "gesamtanschauung": "gesamtanschau", "gesamte": "gesamt", "gesamten": "gesamt", "gesamtheit": "gesamt", "gesamtlage": "gesamtlag", "gesamtleistung": "gesamtleist", "gesandt": "gesandt", "gesandte": "gesandt", "gesandten": "gesandt", "gesandtschaft": "gesandtschaft", "gesang": "gesang", "gesänge": "gesang", "gesängen": "gesang", "gesanges": "gesang", "gesangs": "gesang", "gesangsstimmen": "gesangsstimm", "gesät": "gesat", "gesättigt": "gesattigt", "gesäuberten": "gesaubert", "gesäugt": "gesaugt", "gesaust": "gesaust", "geschadet": "geschadet", "geschaffen": "geschaff", "geschaffene": "geschaff", "geschaffenen": "geschaff", "geschaffenes": "geschaff", "geschafft": "geschafft", "geschäft": "geschaft", "geschäfte": "geschaft", "geschäften": "geschaft", "geschäftes": "geschaft", "geschäftig": "geschaft", "geschäftige": "geschaft", "geschäftigkeit": "geschaft", "geschäftliche": "geschaft", "geschäftlichen": "geschaft", "geschäftsauslagen": "geschaftsauslag", "geschäftsbuch": "geschaftsbuch", "geschäftsfragen": "geschaftsfrag", "geschäftsfreund": "geschaftsfreund", "geschäftsführung": "geschaftsfuhr", "geschäftsjahren": "geschaftsjahr", "geschäftsleiter": "geschaftsleit", "geschäftsleuten": "geschaftsleut", "geschäftsmann": "geschaftsmann", "geschäftsmänner": "geschaftsmann", "geschäftsmännern": "geschaftsmann", "geschäftsprüfungskommission": "geschaftsprufungskommission", "geschäftsreise": "geschaftsreis", "geschäftsschwankung": "geschaftsschwank", "geschäftsstelle": "geschaftsstell", "geschäftsweg": "geschaftsweg", "geschah": "geschah", "geschahen": "geschah", "geschändete": "geschandet", "geschärft": "gescharft", "geschärftes": "gescharft", "geschätzt": "geschatzt", "geschätzten": "geschatzt", "geschaut": "geschaut", "geschehe": "gescheh", "geschehen": "gescheh", "geschehene": "gescheh", "geschehenen": "gescheh", "geschehnisse": "geschehnis", "gescheit": "gescheit", "gescheitert": "gescheitert", "gescheites": "gescheit", "gescheiteste": "gescheit", "geschenk": "geschenk", "geschenke": "geschenk", "geschenken": "geschenk", "geschenkt": "geschenkt", "gescherzt": "gescherzt", "gescheucht": "gescheucht", "gescheuchten": "gescheucht", "gescheuerte": "gescheuert", "geschichtartig": "geschichtart", "geschichtartigen": "geschichtart", "geschichte": "geschicht", "geschichten": "geschicht", "geschichtliche": "geschicht", "geschichtlichen": "geschicht", "geschichtliches": "geschicht", "geschichts": "geschicht", "geschick": "geschick", "geschicke": "geschick", "geschickes": "geschick", "geschicklichkeit": "geschick", "geschickt": "geschickt", "geschickte": "geschickt", "geschickten": "geschickt", "geschickter": "geschickt", "geschieden": "geschied", "geschiedenen": "geschied", "geschiedener": "geschied", "geschiedenes": "geschied", "geschieht": "geschieht", "geschielt": "geschielt", "geschildert": "geschildert", "geschirr": "geschirr", "geschirre": "geschirr", "geschirrkasten": "geschirrkast", "geschlafen": "geschlaf", "geschlagen": "geschlag", "geschlagener": "geschlag", "geschlagenes": "geschlag", "geschlecht": "geschlecht", "geschlechte": "geschlecht", "geschlechter": "geschlecht", "geschlechtern": "geschlecht", "geschlechtes": "geschlecht", "geschlechts": "geschlecht", "geschlechtsverzeichnis": "geschlechtsverzeichnis", "geschleift": "geschleift", "geschleudert": "geschleudert", "geschlossen": "geschloss", "geschlossene": "geschloss", "geschlossenen": "geschloss", "geschlossener": "geschloss", "geschlungen": "geschlung", "geschmack": "geschmack", "geschmacke": "geschmack", "geschmacklos": "geschmacklos", "geschmacks": "geschmack", "geschmacksgründen": "geschmacksgrund", "geschmackvolle": "geschmackvoll", "geschmackvollen": "geschmackvoll", "geschmälerten": "geschmalert", "geschmeckt": "geschmeckt", "geschmeichelt": "geschmeichelt", "geschmeidigen": "geschmeid", "geschmerzt": "geschmerzt", "geschmiedetes": "geschmiedet", "geschmiegt": "geschmiegt", "geschmissen": "geschmiss", "geschmolzenes": "geschmolz", "geschmückt": "geschmuckt", "geschmückten": "geschmuckt", "geschmücktes": "geschmuckt", "geschnappt": "geschnappt", "geschnatterwesen": "geschnatterwes", "geschnaubt": "geschnaubt", "geschneit": "geschneit", "geschniegelten": "geschniegelt", "geschnitten": "geschnitt", "geschnittenen": "geschnitt", "geschnitzte": "geschnitzt", "geschnitzten": "geschnitzt", "geschnürt": "geschnurt", "geschoben": "geschob", "gescholten": "gescholt", "geschöpf": "geschopf", "geschöpfchen": "geschopfch", "geschöpfe": "geschopf", "geschöpfen": "geschopf", "geschöpfes": "geschopf", "geschöpfs": "geschopf", "geschöpft": "geschopft", "geschoren": "geschor", "geschossen": "geschoss", "geschrei": "geschrei", "geschreis": "geschreis", "geschrieben": "geschrieb", "geschriebene": "geschrieb", "geschriebenen": "geschrieb", "geschriebenes": "geschrieb", "geschrieen": "geschrie", "geschrien": "geschri", "geschrumpft": "geschrumpft", "geschulten": "geschult", "geschüttelt": "geschuttelt", "geschüttet": "geschuttet", "geschützt": "geschutzt", "geschwächt": "geschwacht", "geschwächten": "geschwacht", "geschwader": "geschwad", "geschwänzelt": "geschwanzelt", "geschwärzt": "geschwarzt", "geschwätz": "geschwatz", "geschwätzig": "geschwatz", "geschwätzigen": "geschwatz", "geschwätzigkeit": "geschwatz", "geschwatzt": "geschwatzt", "geschwebt": "geschwebt", "geschweifte": "geschweift", "geschweige": "geschweig", "geschwiegen": "geschwieg", "geschwind": "geschwind", "geschwindigkeit": "geschwind", "geschwister": "geschwist", "geschwistern": "geschwist", "geschwollen": "geschwoll", "geschwollnen": "geschwolln", "geschworen": "geschwor", "geschwulst": "geschwul", "geschwunden": "geschwund", "geschwungen": "geschwung", "geschwungener": "geschwung", "geschwür": "geschwur", "geschwüre": "geschwur", "geschwüren": "geschwur", "geschwürs": "geschwur", "gesegnen": "gesegn", "gesegnet": "gesegnet", "gesegneten": "gesegnet", "gesegnetes": "gesegnet", "gesehen": "geseh", "gesehene": "geseh", "gesehn": "gesehn", "gesehnt": "gesehnt", "gesell": "gesell", "geselle": "gesell", "gesellen": "gesell", "gesellenschritt": "gesellenschritt", "gesellschaft": "gesellschaft", "gesellschaften": "gesellschaft", "gesellschafter": "gesellschaft", "gesellschaftliche": "gesellschaft", "gesellschaftlichen": "gesellschaft", "gesellschafts": "gesellschaft", "gesellt": "gesellt", "gesellte": "gesellt", "gesellten": "gesellt", "gesendet": "gesendet", "gesenkt": "gesenkt", "gesenktem": "gesenkt", "gesenkten": "gesenkt", "gesessen": "gesess", "gesetz": "gesetz", "gesetzbücher": "gesetzbuch", "gesetze": "gesetz", "gesetzen": "gesetz", "gesetzes": "gesetz", "gesetzesstelle": "gesetzesstell", "gesetzestreue": "gesetzestreu", "gesetzesübertretungen": "gesetzesubertret", "gesetzgebend": "gesetzgeb", "gesetzgebenden": "gesetzgeb", "gesetzgeber": "gesetzgeb", "gesetzgeberin": "gesetzgeberin", "gesetzgebung": "gesetzgeb", "gesetzlich": "gesetz", "gesetzliche": "gesetz", "gesetzlichen": "gesetz", "gesetzmässig": "gesetzmass", "gesetzmässige": "gesetzmass", "gesetzmässigen": "gesetzmass", "gesetzmässigkeit": "gesetzmass", "gesetzsammlung": "gesetzsamml", "gesetzt": "gesetzt", "gesetzte": "gesetzt", "gesetzwidrig": "gesetzwidr", "gesichert": "gesichert", "gesicherte": "gesichert", "gesicht": "gesicht", "gesichtchen": "gesichtch", "gesichte": "gesicht", "gesichter": "gesicht", "gesichtern": "gesicht", "gesichtes": "gesicht", "gesichts": "gesicht", "gesichtsart": "gesichtsart", "gesichtsfarbe": "gesichtsfarb", "gesichtskreis": "gesichtskreis", "gesichtskreise": "gesichtskreis", "gesichtspunkt": "gesichtspunkt", "gesichtszüge": "gesichtszug", "gesichtszügen": "gesichtszug", "gesiegt": "gesiegt", "gesimse": "gesims", "gesimsen": "gesims", "gesind": "gesind", "gesinde": "gesind", "gesindehaus": "gesindehaus", "gesindel": "gesindel", "gesindes": "gesind", "gesinnt": "gesinnt", "gesinnung": "gesinn", "gesinnungen": "gesinn", "gesinnungsart": "gesinnungsart", "gesinnungslosigkeit": "gesinnungslos", "gesoffen": "gesoff", "gesonnen": "gesonn", "gesorgt": "gesorgt", "gespann": "gespann", "gespannt": "gespannt", "gespannte": "gespannt", "gespannten": "gespannt", "gespannter": "gespannt", "gespart": "gespart", "gespeistwerden": "gespeistwerd", "gespenst": "gespen", "gespenste": "gespen", "gespensterbäume": "gespensterbaum", "gespenstisch": "gespenst", "gesperrt": "gesperrt", "gespickt": "gespickt", "gespickten": "gespickt", "gespielt": "gespielt", "gespiesen": "gespies", "gespitzt": "gespitzt", "gesplittertes": "gesplittert", "gesponnen": "gesponn", "gespornt": "gespornt", "gespornten": "gespornt", "gespött": "gespott", "gespötte": "gespott", "gespräch": "gesprach", "gespräche": "gesprach", "gesprächen": "gesprach", "gesprächigkeit": "gesprach", "gesprächs": "gesprach", "gesprächskapitel": "gesprachskapitel", "gesprächsthema": "gesprachsthema", "gespreizt": "gespreizt", "gespreizten": "gespreizt", "gesprengt": "gesprengt", "gesprenkelte": "gesprenkelt", "gespritzt": "gespritzt", "gesprochen": "gesproch", "gesprochenen": "gesproch", "gesprochenes": "gesproch", "gesprosst": "gesprosst", "gesproßt": "gesprosst", "gesprungen": "gesprung", "gessen": "gess", "gestalt": "gestalt", "gestalten": "gestalt", "gestaltet": "gestaltet", "gestaltete": "gestaltet", "gestaltung": "gestalt", "gestand": "gestand", "gestanden": "gestand", "geständnis": "gestandnis", "geständnisse": "gestandnis", "gestank": "gestank", "gestärkt": "gestarkt", "gestatten": "gestatt", "gestattet": "gestattet", "gestattete": "gestattet", "geste": "gest", "gesteckt": "gesteckt", "gesteckten": "gesteckt", "gestehen": "gesteh", "gestehn": "gestehn", "gesteigert": "gesteigert", "gesteigertem": "gesteigert", "gestein": "gestein", "gesteinigt": "gesteinigt", "gestellt": "gestellt", "gestellter": "gestellt", "gestemmt": "gestemmt", "gestern": "gest", "gestiefelt": "gestiefelt", "gestiefelten": "gestiefelt", "gestiegen": "gestieg", "gestiftet": "gestiftet", "gestikulieren": "gestikuli", "gestimmt": "gestimmt", "gestirn": "gestirn", "gestirne": "gestirn", "gestirnes": "gestirn", "gestochen": "gestoch", "gestohlen": "gestohl", "gestohlenen": "gestohl", "gestopft": "gestopft", "gestorben": "gestorb", "gestört": "gestort", "gestossen": "gestoss", "gestoßen": "gestoss", "gestraft": "gestraft", "gestrahlt": "gestrahlt", "gesträuch": "gestrauch", "gesträuche": "gestrauch", "gestrebt": "gestrebt", "gestreckt": "gestreckt", "gestreckten": "gestreckt", "gestreift": "gestreift", "gestreifte": "gestreift", "gestreiften": "gestreift", "gestrenge": "gestreng", "gestrengen": "gestreng", "gestressten": "gestresst", "gestreut": "gestreut", "gestrichen": "gestrich", "gestrichenen": "gestrich", "gestrickte": "gestrickt", "gestrige": "gestrig", "gestrigen": "gestrig", "gestritten": "gestritt", "gestrüpp": "gestrupp", "gesturm": "gesturm", "gestürzt": "gesturzt", "gestützt": "gestutzt", "gesuch": "gesuch", "gesucht": "gesucht", "gesuchten": "gesucht", "gesuchter": "gesucht", "gesumm": "gesumm", "gesund": "gesund", "gesunde": "gesund", "gesunden": "gesund", "gesunder": "gesund", "gesünderen": "gesund", "gesünderer": "gesund", "gesundes": "gesund", "gesundheit": "gesund", "gesundheitsamt": "gesundheitsamt", "gesündigt": "gesundigt", "gesungen": "gesung", "gesungenen": "gesung", "gesunken": "gesunk", "getäfelten": "getafelt", "getan": "getan", "getändelt": "getandelt", "getanzt": "getanzt", "getauchte": "getaucht", "getauchten": "getaucht", "getauft": "getauft", "getauften": "getauft", "getaumelt": "getaumelt", "getauscht": "getauscht", "getäuscht": "getauscht", "geteilt": "geteilt", "gethsemane": "gethseman", "getier": "geti", "getilgt": "getilgt", "getöne": "geton", "getönt": "getont", "getöse": "getos", "getötet": "getotet", "getöteten": "getotet", "getöteter": "getotet", "getragen": "getrag", "getragene": "getrag", "getragenen": "getrag", "geträllert": "getrallert", "getränk": "getrank", "getränke": "getrank", "getränkemischungen": "getrankemisch", "getränken": "getrank", "getränkes": "getrank", "getränkt": "getrankt", "getränkter": "getrankt", "getrauert": "getrauert", "geträumt": "getraumt", "geträumte": "getraumt", "getraut": "getraut", "getraute": "getraut", "getreide": "getreid", "getrennt": "getrennt", "getrennte": "getrennt", "getrennten": "getrennt", "getrennter": "getrennt", "getreten": "getret", "getreu": "getreu", "getreue": "getreu", "getreuen": "getreu", "getreulich": "getreulich", "getriebe": "getrieb", "getrieben": "getrieb", "getriebene": "getrieb", "getriebenes": "getrieb", "getroffen": "getroff", "getroffenen": "getroff", "getrost": "getrost", "getröstet": "getrostet", "getrübt": "getrubt", "getrunken": "getrunk", "gets": "get", "getupf": "getupf", "geübt": "geubt", "geübter": "geubt", "geurteilt": "geurteilt", "gevatter": "gevatt", "gevatterschaften": "gevatterschaft", "gevattersfrau": "gevattersfrau", "gewächs": "gewach", "gewächse": "gewachs", "gewachsen": "gewachs", "gewachsenes": "gewachs", "gewacht": "gewacht", "gewagt": "gewagt", "gewählt": "gewahlt", "gewählte": "gewahlt", "gewählten": "gewahlt", "gewähltfranks": "gewahltfrank", "gewähnt": "gewahnt", "gewahren": "gewahr", "gewähren": "gewahr", "gewahrend": "gewahr", "gewahrsam": "gewahrsam", "gewahrt": "gewahrt", "gewährt": "gewahrt", "gewahrte": "gewahrt", "gewährte": "gewahrt", "gewahrten": "gewahrt", "gewährten": "gewahrt", "gewalt": "gewalt", "gewaltder": "gewaltd", "gewalthabende": "gewalthab", "gewaltig": "gewalt", "gewaltige": "gewalt", "gewaltigem": "gewalt", "gewaltigen": "gewalt", "gewaltiger": "gewalt", "gewaltiges": "gewalt", "gewaltigsten": "gewalt", "gewaltlos": "gewaltlos", "gewaltlosen": "gewaltlos", "gewaltsam": "gewaltsam", "gewaltsamer": "gewaltsam", "gewalttat": "gewalttat", "gewalttätigen": "gewalttat", "gewalttätiger": "gewalttat", "gewalttätigkeit": "gewalttat", "gewand": "gewand", "gewande": "gewand", "gewandelt": "gewandelt", "gewänder": "gewand", "gewandert": "gewandert", "gewandes": "gewand", "gewandt": "gewandt", "gewandte": "gewandt", "gewandten": "gewandt", "gewandtheit": "gewandt", "gewann": "gewann", "gewannen": "gewann", "gewarnt": "gewarnt", "gewartet": "gewartet", "gewärtig": "gewart", "gewärtigen": "gewart", "gewaschen": "gewasch", "gewaschene": "gewasch", "gewässer": "gewass", "gewässerter": "gewassert", "gewebe": "geweb", "gewebeproben": "gewebeprob", "gewechselt": "gewechselt", "geweckt": "geweckt", "gewehlbe": "gewehlb", "gewehr": "gewehr", "gewehre": "gewehr", "gewehren": "gewehr", "gewehrlauf": "gewehrlauf", "geweigert": "geweigert", "geweih": "geweih", "geweihbildung": "geweihbild", "geweihes": "geweih", "geweihete": "geweihet", "geweissagt": "geweissagt", "geweisst": "geweisst", "geweisstes": "geweisst", "gewendet": "gewendet", "gewendeter": "gewendet", "gewerbe": "gewerb", "gewerkschaft": "gewerkschaft", "gewerkschaftsdemonstration": "gewerkschaftsdemonstration", "gewesen": "gewes", "gewesenen": "gewes", "gewichen": "gewich", "gewicht": "gewicht", "gewichtigen": "gewicht", "gewickelt": "gewickelt", "gewiegter": "gewiegt", "gewiesen": "gewies", "gewildes": "gewild", "gewillt": "gewillt", "gewinn": "gewinn", "gewinne": "gewinn", "gewinnen": "gewinn", "gewinnende": "gewinn", "gewinnes": "gewinn", "gewinnt": "gewinnt", "gewirkt": "gewirkt", "gewiss": "gewiss", "gewiß": "gewiss", "gewisse": "gewiss", "gewissem": "gewiss", "gewissen": "gewiss", "gewissenhaft": "gewissenhaft", "gewissenhafter": "gewissenhaft", "gewissenlos": "gewissenlos", "gewissenloser": "gewissenlos", "gewissenlosigkeit": "gewissenlos", "gewissenlosigkeiten": "gewissenlos", "gewissens": "gewiss", "gewissensangst": "gewissensang", "gewissensbedenken": "gewissensbedenk", "gewissensbisse": "gewissensbiss", "gewissensbürde": "gewissensburd", "gewissensfreien": "gewissensfrei", "gewissensgründen": "gewissensgrund", "gewissenskonflikt": "gewissenskonflikt", "gewissenskonfliktes": "gewissenskonflikt", "gewissenspein": "gewissenspein", "gewissensqualen": "gewissensqual", "gewisser": "gewiss", "gewissermassen": "gewissermass", "gewissermaßen": "gewissermass", "gewisses": "gewiss", "gewisseste": "gewiss", "gewissesten": "gewiss", "gewissheit": "gewiss", "gewißheit": "gewiss", "gewisslich": "gewiss", "gewißlich": "gewiss", "gewitter": "gewitt", "gewitterregen": "gewitterreg", "gewitterstürme": "gewittersturm", "gewitterwolken": "gewitterwolk", "gewitzter": "gewitzt", "gewogen": "gewog", "gewogt": "gewogt", "gewöhnen": "gewohn", "gewohnheit": "gewohn", "gewohnheiten": "gewohn", "gewöhnlich": "gewohn", "gewöhnliche": "gewohn", "gewöhnlichen": "gewohn", "gewöhnlicher": "gewohn", "gewöhnlichste": "gewohn", "gewöhnlichsten": "gewohn", "gewohnt": "gewohnt", "gewöhnt": "gewohnt", "gewöhnte": "gewohnt", "gewohnten": "gewohnt", "gewohnterweise": "gewohnterweis", "gewöhnung": "gewohn", "gewölk": "gewolk", "gewollt": "gewollt", "gewönne": "gewonn", "gewonnen": "gewonn", "gewonnenen": "gewonn", "geworben": "geworb", "geworden": "geword", "gewordene": "geword", "gewordenen": "geword", "gewordener": "geword", "geworfen": "geworf", "geworfene": "geworf", "geworfenen": "geworf", "gewühl": "gewuhl", "gewunden": "gewund", "gewundene": "gewund", "gewünschtdie": "gewunschtdi", "gewünschten": "gewunscht", "gewünschtes": "gewunscht", "gewürdigt": "gewurdigt", "gewürfelte": "gewurfelt", "gewürm": "gewurm", "gewürme": "gewurm", "gewürms": "gewurm", "gewurzelt": "gewurzelt", "gewürzen": "gewurz", "gewürzes": "gewurz", "gewürzmörser": "gewurzmors", "gewürznägelein": "gewurznagelein", "gewürzt": "gewurzt", "gewusst": "gewusst", "gewußt": "gewusst", "gezählt": "gezahlt", "gezahnten": "gezahnt", "gezaubert": "gezaubert", "gezecht": "gezecht", "gezeichnet": "gezeichnet", "gezeigt": "gezeigt", "gezeigten": "gezeigt", "gezerrt": "gezerrt", "gezeugt": "gezeugt", "gezielt": "gezielt", "geziemenden": "geziem", "geziemender": "geziem", "geziemt": "geziemt", "geziere": "gezi", "geziert": "geziert", "gezierten": "geziert", "gezimmerte": "gezimmert", "gezittert": "gezittert", "gezogen": "gezog", "gezogene": "gezog", "gezogenen": "gezog", "gezücht": "gezucht", "gezüchtet": "gezuchtet", "gezüchtigt": "gezuchtigt", "gezweig": "gezweig", "gezwitscher": "gezwitsch", "gezwungen": "gezwung", "gezwungene": "gezwung", "gfahln": "gfahln", "gfallen": "gfall", "gfallt": "gfallt", "gflickt": "gflickt", "gfressen": "gfress", "gfunden": "gfund", "ghabt": "ghabt", "ghear": "ghear", "gheart": "gheart", "ghört": "ghort", "gian": "gian", "gib": "gib", "gibeon": "gibeon", "gibeoniten": "gibeonit", "gibeoniter": "gibeonit", "gibst": "gibst", "gibt": "gibt", "gibts": "gibt", "gichon": "gichon", "gichtschmerzen": "gichtschmerz", "gideon": "gideon", "gier": "gier", "gierig": "gierig", "gierigkeit": "gierig", "gierten": "giert", "giessbach": "giessbach", "gießbach": "giessbach", "giessbäche": "giessbach", "gießbäche": "giessbach", "giesse": "giess", "gieße": "giess", "giessen": "giess", "giesskanne": "giesskann", "giesst": "giesst", "gießt": "giesst", "gift": "gift", "gifte": "gift", "giftes": "gift", "giftig": "giftig", "giftige": "giftig", "giftigen": "giftig", "giftmischerinnen": "giftmischerinn", "giftpilzen": "giftpilz", "gilead": "gilead", "gilt": "gilt", "ging": "ging", "ginge": "ging", "gingen": "ging", "gipfel": "gipfel", "gipfeln": "gipfeln", "gipfelpunkt": "gipfelpunkt", "gipsarbeiter": "gipsarbeit", "gissgen": "gissg", "gitarre": "gitarr", "gitarrebegleiten": "gitarrebegleit", "gitter": "gitt", "gitterchen": "gitterch", "glacht": "glacht", "gladiolos": "gladiolos", "glanz": "glanz", "glanzalter": "glanzalt", "glanze": "glanz", "glänzen": "glanz", "glänzend": "glanzend", "glänzende": "glanzend", "glänzendem": "glanzend", "glänzenden": "glanzend", "glänzender": "glanzend", "glänzendes": "glanzend", "glänzendsten": "glanzend", "glanzlosen": "glanzlos", "glänzt": "glanzt", "glänzte": "glanzt", "glänzten": "glanzt", "glanzzeit": "glanzzeit", "glas": "glas", "gläschen": "glasch", "glase": "glas", "glaser": "glas", "gläser": "glas", "gläsern": "glas", "gläserne": "glasern", "gläsernen": "glasern", "glasglöckchen": "glasglockch", "glashelle": "glashell", "glaskanzel": "glaskanzel", "glaskästchen": "glaskastch", "glaskeulen": "glaskeul", "glaskutsche": "glaskutsch", "glasperlen": "glasperl", "glasschneiden": "glasschneid", "glassteinchen": "glassteinch", "glasstoff": "glasstoff", "glaswand": "glaswand", "glasziegeln": "glasziegeln", "glatt": "glatt", "glätte": "glatt", "glatten": "glatt", "glätten": "glatt", "glättete": "glattet", "glaub": "glaub", "glaube": "glaub", "glauben": "glaub", "glaubenden": "glaubend", "glaubens": "glaub", "glaubensartikel": "glaubensartikel", "glaubensbekenntnis": "glaubensbekenntnis", "glaubenserkenntnisse": "glaubenserkenntnis", "glaubenserkenntnissen": "glaubenserkenntnis", "glaubensfragen": "glaubensfrag", "glaubensgeheimnis": "glaubensgeheimnis", "glaubensgeheimnisse": "glaubensgeheimnis", "glaubensguten": "glaubensgut", "glaubensleben": "glaubensleb", "glaubenslebens": "glaubensleb", "glaubenslehre": "glaubenslehr", "glaubenslehren": "glaubenslehr", "glaubenssache": "glaubenssach", "glaubenssachen": "glaubenssach", "glaubensüberreste": "glaubensuberr", "glaubensvorschriften": "glaubensvorschrift", "glaubenswahre": "glaubenswahr", "glaubenswahren": "glaubenswahr", "glaubenswahres": "glaubenswahr", "glaubenswahrheit": "glaubenswahr", "glaubenswahrheiten": "glaubenswahr", "glaubenswissenschaft": "glaubenswissenschaft", "glaubest": "glaub", "glaubet": "glaubet", "gläubige": "glaubig", "gläubigen": "glaubig", "gläubiger": "glaubig", "gläubigern": "glaubig", "glaubst": "glaub", "glaubt": "glaubt", "glaubte": "glaubt", "glaubten": "glaubt", "glaubtet": "glaubtet", "glaubwürdig": "glaubwurd", "glaubwürdige": "glaubwurd", "glaubwürdigkeit": "glaubwurd", "glegen": "gleg", "glegenheit": "gleg", "gleich": "gleich", "gleichartig": "gleichart", "gleichartiges": "gleichart", "gleichbedeutend": "gleichbedeut", "gleiche": "gleich", "gleichem": "gleich", "gleichen": "gleich", "gleichentags": "gleichentag", "gleicher": "gleich", "gleichermassen": "gleichermass", "gleicherzeit": "gleicherzeit", "gleiches": "gleich", "gleichfalls": "gleichfall", "gleichförmig": "gleichform", "gleichgeschätzt": "gleichgeschatzt", "gleichgesetzt": "gleichgesetzt", "gleichgewicht": "gleichgewicht", "gleichgültig": "gleichgult", "gleichgültigkeit": "gleichgult", "gleichgültigste": "gleichgult", "gleichheit": "gleichheit", "gleichmass": "gleichmass", "gleichmaß": "gleichmass", "gleichmässig": "gleichmass", "gleichmässige": "gleichmass", "gleichmässigen": "gleichmass", "gleichmut": "gleichmut", "gleichmütig": "gleichmut", "gleichnis": "gleichnis", "gleichnissen": "gleichnis", "gleichsah": "gleichsah", "gleichsam": "gleichsam", "gleichsehend": "gleichseh", "gleichstellte": "gleichstellt", "gleicht": "gleicht", "gleichung": "gleichung", "gleichviel": "gleichviel", "gleichwie": "gleichwi", "gleichwohl": "gleichwohl", "gleichzeitig": "gleichzeit", "gleichzeitigen": "gleichzeit", "gleichzumachen": "gleichzumach", "gleis": "gleis", "gleise": "gleis", "gleissnerei": "gleissnerei", "gleitet": "gleitet", "glesen": "gles", "glich": "glich", "glichen": "glich", "glied": "glied", "glieder": "glied", "gliederlein": "gliederlein", "gliedern": "glied", "glimmenden": "glimmend", "glimmrigen": "glimmrig", "glitt": "glitt", "glitten": "glitt", "glitzernde": "glitzernd", "glitzernden": "glitzernd", "glöckchen": "glockch", "glocke": "glock", "glocken": "glock", "glockengeläute": "glockengelaut", "glockenschläge": "glockenschlag", "glockenschnur": "glockenschnur", "glockenschönen": "glockenschon", "glockenspiel": "glockenspiel", "glockenstimme": "glockenstimm", "glöcklein": "glocklein", "gloria": "gloria", "glorie": "glori", "glorreichen": "glorreich", "glotzäugelchen": "glotzaugelch", "glotzaugen": "glotzaug", "glotzäugig": "glotzaug", "glotzte": "glotzt", "glotzten": "glotzt", "glück": "gluck", "glücke": "gluck", "glückes": "gluck", "glückhaften": "gluckhaft", "glücklich": "glucklich", "glückliche": "glucklich", "glücklichen": "glucklich", "glücklicher": "glucklich", "glücklicheren": "glucklich", "glücklichern": "glucklich", "glücklicherweise": "glucklicherweis", "glücklichste": "glucklich", "glücklichsten": "glucklich", "glücks": "gluck", "glückselig": "glucksel", "glückselige": "glucksel", "glückseligen": "glucksel", "glückseliger": "glucksel", "glückseligkeit": "glucksel", "glückseligkeitslehre": "gluckseligkeitslehr", "glückseligkeitsprinzip": "gluckseligkeitsprinzip", "glückseligkeitsprinzips": "gluckseligkeitsprinzips", "glucksen": "glucks", "glücksfall": "glucksfall", "glücksgefühle": "glucksgefuhl", "glückskind": "gluckskind", "glückt": "gluckt", "glückwunsch": "gluckwunsch", "glühen": "gluh", "glühend": "gluhend", "glühende": "gluhend", "glühenden": "gluhend", "glühender": "gluhend", "glühendes": "gluhend", "glühendrot": "gluhendrot", "glühendste": "gluhend", "glühlampe": "gluhlamp", "glühte": "gluht", "glühten": "gluht", "glühwürmchen": "gluhwurmch", "glupft": "glupft", "glut": "glut", "gmacht": "gmacht", "gmeint": "gmeint", "gmerkt": "gmerkt", "gnade": "gnad", "gnaden": "gnad", "gnadenbrot": "gnadenbrot", "gnadensonne": "gnadensonn", "gnadenstuhl": "gnadenstuhl", "gnadenstuhls": "gnadenstuhl", "gnädig": "gnadig", "gnädige": "gnadig", "gnädiger": "gnadig", "gnädiglich": "gnadig", "gnädigste": "gnadig", "gnante": "gnant", "gnau": "gnau", "gnommen": "gnomm", "gnug": "gnug", "gockelhahn": "gockelhahn", "gockelhahns": "gockelhahn", "goethe": "goeth", "gog": "gog", "göhl": "gohl", "gold": "gold", "goldach": "goldach", "goldacher": "goldach", "goldbecher": "goldbech", "goldbefrackter": "goldbefrackt", "goldbestecke": "goldbesteck", "goldbeutel": "goldbeutel", "goldblatt": "goldblatt", "goldblätter": "goldblatt", "goldblonden": "goldblond", "goldbörtchen": "goldbortch", "goldbuchstaben": "goldbuchstab", "golddress": "golddress", "golddreß": "golddress", "golddukaten": "golddukat", "golde": "gold", "goldene": "gold", "goldenem": "gold", "goldenen": "gold", "goldener": "gold", "goldenes": "gold", "goldes": "gold", "goldfische": "goldfisch", "goldfuchs": "goldfuch", "goldfuchse": "goldfuchs", "goldgelbes": "goldgelb", "goldgeschäfte": "goldgeschaft", "goldgrube": "goldgrub", "goldgülden": "goldguld", "goldhäubchen": "goldhaubch", "goldhelm": "goldhelm", "goldig": "goldig", "goldigen": "goldig", "goldketten": "goldkett", "goldkieswege": "goldkiesweg", "goldknechte": "goldknecht", "goldkugeln": "goldkugeln", "goldlack": "goldlack", "goldne": "goldn", "goldnen": "goldn", "goldpapier": "goldpapi", "goldreserven": "goldreserv", "goldscheibe": "goldscheib", "goldschlangen": "goldschlang", "goldschmied": "goldschmied", "goldschnüren": "goldschnur", "goldstickereien": "goldstickerei", "goldstück": "goldstuck", "goldstücke": "goldstuck", "goldtaler": "goldtal", "goldtalern": "goldtal", "goldtresse": "goldtress", "goldwaage": "goldwaag", "gölte": "golt", "gomorrah": "gomorrah", "gomorrahs": "gomorrah", "gönne": "gonn", "gönnen": "gonn", "gönner": "gonn", "gönnte": "gonnt", "goodbye": "goodby", "gopher": "goph", "gosen": "gos", "goss": "goss", "goß": "goss", "gotisches": "gotisch", "gott": "gott", "götter": "gott", "götterbilder": "gotterbild", "göttern": "gott", "gottes": "gott", "gottesdienst": "gottesdien", "gottesdienstbesucher": "gottesdienstbesuch", "gottesdienste": "gottesdien", "gottesdiensten": "gottesdien", "gottesdienstes": "gottesdien", "gottesgelehrten": "gottesgelehrt", "gottesgelehrter": "gottesgelehrt", "gottesgläubig": "gottesglaub", "gotteslästerlichsten": "gotteslast", "gottesmannes": "gottesmann", "gottesverehrung": "gottesverehr", "gottfried": "gottfried", "gotthard": "gotthard", "gottheit": "gottheit", "göttin": "gottin", "göttlich": "gottlich", "göttliche": "gottlich", "göttlichen": "gottlich", "göttlicher": "gottlich", "göttliches": "gottlich", "gottlose": "gottlos", "gottlosen": "gottlos", "gottloser": "gottlos", "gotts": "gott", "gottsnamen": "gottsnam", "gottverfluchts": "gottverflucht", "gottverlassene": "gottverlass", "götzen": "gotz", "götzenbild": "gotzenbild", "götzenbilder": "gotzenbild", "götzenbildes": "gotzenbild", "götzendienerisch": "gotzendiener", "götzendienerische": "gotzendiener", "götzendienerischen": "gotzendiener", "götzendienerisches": "gotzendiener", "götzendienst": "gotzendien", "götzensteine": "gotzenstein", "gouvernement": "gouvernement", "gouverneur": "gouverneur", "gouverneurs": "gouverneur", "grab": "grab", "grabbegleitung": "grabbegleit", "grabe": "grab", "graben": "grab", "gräben": "grab", "gräber": "grab", "gräbern": "grab", "grabesstill": "grabesstill", "grabtuch": "grabtuch", "grabtuchs": "grabtuch", "grad": "grad", "gradaus": "gradaus", "gradausfahrendes": "gradausfahr", "grade": "grad", "graden": "grad", "grades": "grad", "gradezu": "gradezu", "gradheit": "gradheit", "gradlinigen": "gradlin", "graf": "graf", "grafen": "graf", "grafenrock": "grafenrock", "grafensohn": "grafensohn", "gräfin": "grafin", "gräfliche": "graflich", "gräflichem": "graflich", "gräflichen": "graflich", "gram": "gram", "grämen": "gram", "grammaticale": "grammatical", "grammatik": "grammat", "grammophon": "grammophon", "gramvollen": "gramvoll", "granatbaum": "granatbaum", "granatblütenstrauss": "granatblutenstrauss", "granatwerfer": "granatwerf", "granen": "gran", "granitklotz": "granitklotz", "gras": "gras", "grase": "gras", "grasen": "gras", "gräser": "gras", "gräsern": "gras", "grashälmchen": "grashalmch", "grasigen": "grasig", "grasreich": "grasreich", "grasreichen": "grasreich", "gräßlich": "grasslich", "grässliche": "grasslich", "gräßliche": "grasslich", "grässlichen": "grasslich", "gräßlichen": "grasslich", "grässlichsten": "grasslich", "grasten": "grast", "grasteufeln": "grasteufeln", "grasüberwachsene": "grasuberwachs", "grat": "grat", "gratis": "gratis", "gratulierte": "gratuliert", "grau": "grau", "graubärtigen": "graubart", "graublauen": "graublau", "graue": "grau", "grauem": "grau", "grauen": "grau", "grauendem": "grauend", "grauenvollen": "grauenvoll", "grauer": "grau", "graues": "grau", "graumeliertes": "graumeliert", "grausam": "grausam", "grausamen": "grausam", "grausamerweise": "grausamerweis", "grausames": "grausam", "grausamkeit": "grausam", "grauschwarzen": "grauschwarz", "grausen": "graus", "grausens": "graus", "graute": "graut", "grauweiss": "grauweiss", "grauweissen": "grauweiss", "grauzone": "grauzon", "gravierende": "gravier", "gravierenden": "gravier", "gravität": "gravitat", "gravitätisch": "gravitat", "grazilsten": "grazil", "gredt": "gredt", "grehm": "grehm", "greifen": "greif", "greifenden": "greifend", "greifliche": "greiflich", "greift": "greift", "greinige": "greinig", "greinstimme": "greinstimm", "greis": "greis", "greise": "greis", "greisen": "greis", "greisenalter": "greisenalt", "greisengestalt": "greisengestalt", "greisenhafter": "greisenhaft", "greisenhaftigkeit": "greisenhaft", "greisentums": "greisentum", "grell": "grell", "grellen": "grell", "gremium": "gremium", "grendelmeier": "grendelmei", "grenz": "grenz", "grenzbauden": "grenzbaud", "grenzbestimmung": "grenzbestimm", "grenzbezirk": "grenzbezirk", "grenze": "grenz", "grenzen": "grenz", "grenzenlos": "grenzenlos", "grenzenlose": "grenzenlos", "grenzenlosen": "grenzenlos", "grenzscheide": "grenzscheid", "grenzschenke": "grenzschenk", "grenzt": "grenzt", "grenzte": "grenzt", "grete": "gret", "greuel": "greuel", "greuelhafte": "greuelhaft", "greuelhaftes": "greuelhaft", "greueln": "greueln", "greuels": "greuel", "greueltaten": "greueltat", "greulich": "greulich", "greuliche": "greulich", "greulichem": "greulich", "greulichen": "greulich", "greulicher": "greulich", "greuliches": "greulich", "greve": "grev", "griechen": "griech", "griechenland": "griechenland", "griechische": "griechisch", "griechischem": "griechisch", "griechischen": "griechisch", "griff": "griff", "griffen": "griff", "grille": "grill", "grillen": "grill", "grimassen": "grimass", "grimm": "grimm", "grimmig": "grimmig", "grimmige": "grimmig", "grimmigem": "grimmig", "grimmigen": "grimmig", "grimmiger": "grimmig", "grimmiges": "grimmig", "grimmigste": "grimmig", "grimms": "grimm", "grind": "grind", "gringsten": "gring", "grinsend": "grinsend", "grinste": "grin", "grissen": "griss", "grissend": "grissend", "grob": "grob", "grobe": "grob", "grobem": "grob", "groben": "grob", "grober": "grob", "gröber": "grob", "gröberen": "grob", "gröbern": "grob", "grobes": "grob", "grobheit": "grobheit", "gröblich": "groblich", "gröbsten": "grob", "grölen": "grol", "groll": "groll", "grolle": "groll", "grollend": "grollend", "grollendem": "grollend", "grollenden": "grollend", "grollte": "grollt", "groove": "groov", "gross": "gross", "groß": "gross", "grossartig": "grossart", "großartig": "grossart", "grossartige": "grossart", "großartige": "grossart", "grossartiger": "grossart", "großartiger": "grossart", "großartiges": "grossart", "grossartigte": "grossartigt", "grossaupa": "grossaupa", "großaupa": "grossaupa", "grossbanken": "grossbank", "grossblumigen": "grossblum", "grossbritannien": "grossbritanni", "grosse": "gross", "große": "gross", "grösse": "gross", "größe": "gross", "grossem": "gross", "großem": "gross", "grossen": "gross", "großen": "gross", "grössen": "gross", "grosser": "gross", "großer": "gross", "grösser": "gross", "größer": "gross", "grössere": "gross", "größere": "gross", "grösserem": "gross", "größerem": "gross", "grösseren": "gross", "größeren": "gross", "grösserer": "gross", "größerer": "gross", "grösseres": "gross", "größeres": "gross", "grösserm": "grosserm", "grössern": "gross", "grosses": "gross", "großes": "gross", "grossherrn": "grossherrn", "großkariertes": "grosskariert", "grosskhan": "grosskhan", "grossknecht": "grossknecht", "grossmächtige": "grossmacht", "grossmächtigen": "grossmacht", "grossmächtiges": "grossmacht", "grossmut": "grossmut", "grossmütige": "grossmut", "grossmütigen": "grossmut", "grossmutter": "grossmutt", "großmutter": "grossmutt", "großmütter": "grossmutt", "grossratsmitglied": "grossratsmitglied", "großstadt": "grossstadt", "grossstädte": "grossstadt", "grösste": "grosst", "größte": "grosst", "grössten": "grosst", "größten": "grosst", "grösstenteils": "grosstenteil", "größtenteils": "grosstenteil", "grösster": "grosst", "grösstes": "grosst", "größtes": "grosst", "grösstmögliche": "grosstmog", "grosstuerei": "grosstuerei", "grossvater": "grossvat", "großvater": "grossvat", "grossvaters": "grossvat", "großvaters": "grossvat", "grossvaterstuhl": "grossvaterstuhl", "grosszügigen": "grosszug", "grosszuziehen": "grosszuzieh", "grub": "grub", "grubach": "grubach", "grube": "grub", "grübeleien": "grubelei", "grübelt": "grubelt", "grübelte": "grubelt", "gruben": "grub", "grubenkessel": "grubenkessel", "grüblerisch": "grubler", "grüblerische": "grubler", "grumpelt": "grumpelt", "grün": "grun", "grünbemaltes": "grunbemalt", "grund": "grund", "grundbegriff": "grundbegriff", "grundbesitzer": "grundbesitz", "grunddienst": "grunddien", "grunde": "grund", "gründe": "grund", "gründen": "grund", "gründende": "grundend", "gründer": "grund", "grundes": "grund", "gründet": "grundet", "gründete": "grundet", "grundfalschen": "grundfalsch", "grundfesten": "grundf", "grundgesetz": "grundgesetz", "grundgesetzes": "grundgesetz", "grundherrlichen": "grundherr", "grundlage": "grundlag", "grundlagen": "grundlag", "grundlegenden": "grundleg", "gründlich": "grundlich", "gründlichen": "grundlich", "gründliches": "grundlich", "gründlinge": "grundling", "grundlos": "grundlos", "grundlose": "grundlos", "grundmauern": "grundmau", "gründonnerstag": "grundonnerstag", "grundsatz": "grundsatz", "grundsatze": "grundsatz", "grundsätze": "grundsatz", "grundsätzen": "grundsatz", "grundsatzes": "grundsatz", "grundsätzlich": "grundsatz", "grundsprache": "grundsprach", "grundstein": "grundstein", "grundtext": "grundtext", "grundtone": "grundton", "gründung": "grundung", "grüne": "grun", "grünem": "grun", "grünen": "grun", "grüner": "grun", "grünes": "grun", "grünfräckiger": "grunfrack", "grünliche": "grunlich", "grünlichen": "grunlich", "grünrot": "grunrot", "grünseidenen": "grunseid", "grünspecht": "grunspecht", "grünst": "grun", "grunzen": "grunz", "grunzend": "grunzend", "gruppe": "grupp", "gruppen": "grupp", "gruppenweise": "gruppenweis", "gruseligen": "grusel", "gruss": "gruss", "gruß": "gruss", "grüss": "gruss", "grussadresse": "grussadress", "grusse": "gruss", "grüsse": "gruss", "grüße": "gruss", "grüssen": "gruss", "grüssend": "grussend", "grüßend": "grussend", "grüsste": "grusst", "grüßte": "grusst", "grüssten": "grusst", "grüßten": "grusst", "grusswort": "grusswort", "gsagt": "gsagt", "gsangl": "gsangl", "gsangln": "gsangln", "gschäft": "gschaft", "gscheid": "gscheid", "gscheids": "gscheid", "gschicht": "gschicht", "gschieht": "gschieht", "gschwind": "gschwind", "gschwister": "gschwist", "gsessen": "gsess", "gsetzt": "gsetzt", "gsicht": "gsicht", "gspart": "gspart", "gsperrt": "gsperrt", "gspitzt": "gspitzt", "gstanden": "gstand", "gstanzln": "gstanzln", "gstorben": "gstorb", "gstorbener": "gstorb", "gstritten": "gstritt", "gsucht": "gsucht", "gsungen": "gsung", "guck": "guck", "gucken": "guck", "guckfenster": "guckfen", "guckt": "guckt", "guckte": "guckt", "guckten": "guckt", "guet": "guet", "guillotine": "guillotin", "guisan": "guisan", "gulden": "guld", "gültbrief": "gultbrief", "gültig": "gultig", "gültige": "gultig", "gültiges": "gultig", "gültigkeit": "gultig", "gummi": "gummi", "gummigegend": "gummigeg", "gummiteich": "gummiteich", "gummiteichen": "gummiteich", "gündem": "gund", "gungeline": "gungelin", "gunnar": "gunnar", "gunst": "gunst", "gunsten": "gunst", "günstig": "gunstig", "günstige": "gunstig", "günstigem": "gunstig", "günstigen": "gunstig", "günstiger": "gunstig", "günstiges": "gunstig", "gür": "gur", "gurgel": "gurgel", "gurgeln": "gurgeln", "gurgelnden": "gurgelnd", "gurken": "gurk", "gürpinar": "gurpinar", "gurren": "gurr", "gurt": "gurt", "gürtel": "gurtel", "gürteln": "gurteln", "gürten": "gurt", "gürteten": "gurtet", "gussbild": "gussbild", "gußbild": "gussbild", "gut": "gut", "gutartig": "gutart", "gutartige": "gutart", "gutbesorgten": "gutbesorgt", "gutdünkt": "gutdunkt", "gute": "gut", "güte": "gut", "gutem": "gut", "guten": "gut", "gutenacht": "gutenacht", "gutenmorgenkuss": "gutenmorgenkuss", "guter": "gut", "güter": "gut", "gütern": "gut", "gutes": "gut", "gutestun": "gutestun", "gutgesinntheit": "gutgesinnt", "gutheiten": "gutheit", "gütige": "gutig", "gütigen": "gutig", "gütiges": "gutig", "gütigkeit": "gutig", "gütigst": "gutig", "gütlich": "gutlich", "gutmachen": "gutmach", "gutmütig": "gutmut", "gutmütige": "gutmut", "gutmütigkeit": "gutmut", "gutnacht": "gutnacht", "guts": "gut", "gutsherren": "gutsherr", "gutsherrn": "gutsherrn", "güzel": "guzel", "gwalt": "gwalt", "gwaltsame": "gwaltsam", "gwart": "gwart", "gweint": "gweint", "gwesen": "gwes", "gwitter": "gwitt", "gwöhnen": "gwohn", "gwöhnt": "gwohnt", "gymnasiastin": "gymnasiastin", "gynäkologen": "gynakolog", "h": "h", "ha": "ha", "haar": "haar", "haarbürste": "haarburst", "haardenkmal": "haardenkmal", "haare": "haar", "haaren": "haar", "haares": "haar", "haarflechten": "haarflecht", "haarige": "haarig", "haarschnitt": "haarschnitt", "haarwild": "haarwild", "haarwuchs": "haarwuch", "hab": "hab", "habe": "hab", "habel": "habel", "habels": "habel", "haben": "hab", "habenichts": "habenicht", "häberlin": "haberlin", "habermus": "habermus", "habet": "habet", "habhaft": "habhaft", "habicht": "habicht", "habit": "habit", "habitus": "habitus", "habs": "hab", "habseliges": "habsel", "habseligkeit": "habsel", "habseligkeiten": "habsel", "habsucht": "habsucht", "habt": "habt", "haci": "haci", "hacken": "hack", "hackn": "hackn", "häcksel": "hacksel", "hackte": "hackt", "hadad": "hadad", "hadep": "hadep", "hader": "had", "haderlumpen": "haderlump", "hadern": "had", "haemorrheos": "haemorrheos", "häfelein": "hafelein", "haferbrei": "haferbrei", "haft": "haft", "hafte": "haft", "haften": "haft", "haftet": "haftet", "häftlein": "haftlein", "haftstrafen": "haftstraf", "hag": "hag", "hagel": "hagel", "hagelflut": "hagelflut", "hagelhans": "hagelhan", "hageln": "hageln", "hagelperlen": "hagelperl", "hagelregen": "hagelreg", "hagelregens": "hagelreg", "hagels": "hagel", "hagelschlag": "hagelschlag", "hagelstein": "hagelstein", "hagelsteine": "hagelstein", "hagelsteinen": "hagelstein", "hagelstücke": "hagelstuck", "hagen": "hag", "hagere": "hag", "hagerer": "hag", "haggai": "haggai", "haha": "haha", "hahahaha": "hahahaha", "häher": "hah", "hahn": "hahn", "hähnekrähen": "hahnekrah", "haider": "haid", "hain": "hain", "hains": "hain", "häkchen": "hakch", "haken": "hak", "hakkari": "hakkari", "häklich": "haklich", "häklichen": "haklich", "halb": "halb", "halbbogen": "halbbog", "halbdunkel": "halbdunkel", "halbe": "halb", "halbem": "halb", "halben": "halb", "halber": "halb", "halbes": "halb", "halbfinal": "halbfinal", "halbfinalder": "halbfinald", "halbgeschlossenen": "halbgeschloss", "halbheit": "halbheit", "halbjährigen": "halbjahr", "halbkreis": "halbkreis", "halbkreise": "halbkreis", "halbkugel": "halbkugel", "halbkugeln": "halbkugeln", "halblange": "halblang", "halblauten": "halblaut", "halblauter": "halblaut", "halbreife": "halbreif", "halbring": "halbring", "halbschatten": "halbschatt", "halbstummen": "halbstumm", "halbstündigen": "halbstund", "halbstündiger": "halbstund", "halbtagsjob": "halbtagsjob", "halbtot": "halbtot", "halbtotes": "halbtot", "halbträumender": "halbtraum", "halbvermoderte": "halbvermodert", "halbvollendeten": "halbvollendet", "halbwegs": "halbweg", "halbwüchsige": "halbwuchs", "halden": "hald", "half": "half", "halfen": "half", "hälfte": "halft", "hall": "hall", "halle": "hall", "hallen": "hall", "halleo": "halleo", "hallo": "hallo", "hallunkischen": "hallunk", "halm": "halm", "halmen": "halm", "hals": "hal", "halsband": "halsband", "halse": "hals", "hälse": "hals", "halskette": "halskett", "halskragen": "halskrag", "halstuch": "halstuch", "halstüchelchen": "halstuchelch", "halt": "halt", "hält": "halt", "haltbare": "haltbar", "haltbaren": "haltbar", "halte": "halt", "halten": "halt", "haltend": "haltend", "haltenden": "haltend", "haltet": "haltet", "haltlosen": "haltlos", "haltrufen": "haltruf", "haltrufer": "haltruf", "hältst": "halt", "haltung": "haltung", "halunkische": "halunk", "ham": "ham", "hamburg": "hamburg", "hamburger": "hamburg", "hämisch": "hamisch", "hamlet": "hamlet", "hammelbraten": "hammelbrat", "hammelkeule": "hammelkeul", "hammer": "hamm", "hämmern": "hamm", "hämmerte": "hammert", "hämmerten": "hammert", "hammerwerk": "hammerwerk", "hampelhänschen": "hampelhansch", "hampelmann": "hampelmann", "hampelmänner": "hampelmann", "hampelmännern": "hampelmann", "hand": "hand", "handbewegung": "handbeweg", "handbibel": "handbibel", "handbuch": "handbuch", "händchen": "handch", "hände": "hand", "händeklatschen": "handeklatsch", "handel": "handel", "händel": "handel", "händelführer": "handelfuhr", "handeln": "handeln", "händeln": "handeln", "handelnde": "handelnd", "händels": "handel", "handelsabkommen": "handelsabkomm", "handelsanfang": "handelsanfang", "handelserwerb": "handelserwerb", "handelsfreunden": "handelsfreund", "handelsgeschäfte": "handelsgeschaft", "handelsgeschäften": "handelsgeschaft", "handelskrisen": "handelskris", "handelsleute": "handelsleut", "handelsstadt": "handelsstadt", "handelsvertretungen": "handelsvertret", "handelt": "handelt", "handelte": "handelt", "händen": "hand", "händereibend": "handereib", "handfeste": "handf", "handfester": "handf", "handfestes": "handf", "handgelenken": "handgelenk", "handgreiflichen": "handgreif", "handgriffe": "handgriff", "handgrosses": "handgross", "handhabe": "handhab", "handhaben": "handhab", "handhabte": "handhabt", "handhabten": "handhabt", "handkarren": "handkarr", "handkuss": "handkuss", "handkuß": "handkuss", "handle": "handl", "händler": "handl", "händlerin": "handlerin", "handlich": "handlich", "handlichen": "handlich", "handlichkeit": "handlich", "handlung": "handlung", "handlungen": "handlung", "handlungsart": "handlungsart", "handlungsschwanger": "handlungsschwang", "handlungsschwangerer": "handlungsschwang", "handlungsstarke": "handlungsstark", "handlungsweise": "handlungsweis", "handreibungen": "handreib", "handreichung": "handreich", "handschrift": "handschrift", "handschuh": "handschuh", "handschuhe": "handschuh", "handschuhen": "handschuh", "handstreich": "handstreich", "handstreiche": "handstreich", "handtäschchen": "handtaschch", "handtasche": "handtasch", "handumdrehen": "handumdreh", "handvoll": "handvoll", "handwerk": "handwerk", "handwerksbursch": "handwerksbursch", "handwerksburschen": "handwerksbursch", "handwerksgesell": "handwerksgesell", "handwerksgesellen": "handwerksgesell", "handzwehle": "handzwehl", "hanfschnüren": "hanfschnur", "hang": "hang", "hange": "hang", "hänge": "hang", "hangen": "hang", "hängen": "hang", "hängend": "hangend", "hängenden": "hangend", "hängengeblieben": "hangengeblieb", "hanges": "hang", "hängt": "hangt", "hängte": "hangt", "hängten": "hangt", "hannibal": "hannibal", "hans": "han", "hänse": "hans", "hansnarren": "hansnarr", "hantierte": "hantiert", "hantierung": "hantier", "hantierungen": "hantier", "hapert": "hapert", "hapertes": "hapert", "happening": "happening", "happs": "happs", "happy": "happy", "harald": "harald", "harbst": "harb", "häretische": "haret", "harfe": "harf", "harfen": "harf", "harfenspieler": "harfenspiel", "harfentöne": "harfenton", "harkenstiel": "harkenstiel", "harmlos": "harmlos", "harmlose": "harmlos", "harmlosen": "harmlos", "harmloser": "harmlos", "harmlosigkeit": "harmlos", "harmlosigkeiten": "harmlos", "harmonie": "harmoni", "harmonien": "harmoni", "harmonikaförmigen": "harmonikaform", "harmonisch": "harmon", "harmonische": "harmon", "harmonists": "harmonist", "härmte": "harmt", "harnisch": "harnisch", "harnischreste": "harnischr", "harren": "harr", "harrend": "harrend", "harrten": "harrt", "hart": "hart", "harte": "hart", "härte": "hart", "hartem": "hart", "harten": "hart", "harter": "hart", "härter": "hart", "härtere": "hart", "härteres": "hart", "hartes": "hart", "härteste": "hart", "hartherzige": "hartherz", "hartherzigem": "hartherz", "hartherzigen": "hartherz", "hartherzigkeiten": "hartherz", "hartmann": "hartmann", "hartnäckig": "hartnack", "hartnäckige": "hartnack", "hartnäckigen": "hartnack", "hartnäckiger": "hartnack", "hartnäckigeren": "hartnack", "hartnäckigkeit": "hartnack", "hartnäckigste": "hartnack", "hartwerden": "hartwerd", "harz": "harz", "hasan": "hasan", "hasardspiel": "hasardspiel", "haschen": "hasch", "häschen": "hasch", "haschte": "hascht", "haselanten": "haselant", "haselnussstauden": "haselnussstaud", "haselwanter": "haselwant", "hasen": "has", "haserl": "haserl", "häslein": "haslein", "haslers": "hasl", "haspelte": "haspelt", "hass": "hass", "haß": "hass", "hasse": "hass", "hassen": "hass", "hasser": "hass", "haßerfüllten": "hasserfullt", "hasses": "hass", "hässiges": "hassig", "hässlich": "hasslich", "häßlich": "hasslich", "hässliche": "hasslich", "häßliche": "hasslich", "hässlichen": "hasslich", "häßlichen": "hasslich", "hässlicheres": "hasslich", "häßlicheres": "hasslich", "hässliches": "hasslich", "häßliches": "hasslich", "hässlichsten": "hasslich", "hasst": "hasst", "haßt": "hasst", "hasste": "hasst", "haßte": "hasst", "hast": "hast", "hasterer": "hast", "hastig": "hastig", "hastige": "hastig", "hastigen": "hastig", "hat": "hat", "hatr": "hatr", "hats": "hat", "hätschelte": "hatschelt", "hatschen": "hatsch", "hatt": "hatt", "hätt": "hatt", "hatte": "hatt", "hätte": "hatt", "hatten": "hatt", "hätten": "hatt", "hättens": "hatt", "hattest": "hatt", "hättest": "hatt", "hättet": "hattet", "hau": "hau", "haube": "haub", "hauben": "haub", "hauch": "hauch", "hauchen": "hauch", "hauchte": "haucht", "hauchten": "haucht", "hauen": "hau", "häufchen": "haufch", "haufe": "hauf", "haufen": "hauf", "häufen": "hauf", "haufenweise": "haufenweis", "häufig": "haufig", "häufige": "haufig", "häufiger": "haufig", "häuflein": "hauflein", "häuft": "hauft", "haupt": "haupt", "hauptaufgabe": "hauptaufgab", "hauptbeschäftigung": "hauptbeschaft", "hauptbestandteil": "hauptbestandteil", "hauptbürde": "hauptburd", "hauptchristen": "hauptchrist", "haupte": "haupt", "haupteingang": "haupteingang", "häupten": "haupt", "häupter": "haupt", "häuptern": "haupt", "hauptes": "haupt", "hauptgattungen": "hauptgatt", "hauptgebäude": "hauptgebaud", "hauptgegenstände": "hauptgegenstand", "hauptliebhaberei": "hauptliebhaberei", "häuptling": "hauptling", "häuptlingen": "hauptling", "hauptmann": "hauptmann", "hauptmittel": "hauptmittel", "hauptort": "hauptort", "hauptperson": "hauptperson", "hauptpunkte": "hauptpunkt", "hauptpunkten": "hauptpunkt", "hauptquartier": "hauptquarti", "hauptredaktor": "hauptredaktor", "hauptsache": "hauptsach", "hauptsachen": "hauptsach", "hauptsächlich": "hauptsach", "hauptsächlichstes": "hauptsach", "hauptschmuckes": "hauptschmuck", "hauptsitzung": "hauptsitz", "hauptspass": "hauptspass", "hauptstadt": "hauptstadt", "hauptstrasse": "hauptstrass", "hauptstück": "hauptstuck", "hauptstücke": "hauptstuck", "haupttafel": "haupttafel", "haupttätigkeit": "haupttat", "haupttreppe": "haupttrepp", "hauptursache": "hauptursach", "hauptveränderung": "hauptverander", "hauptverkehrsstrasse": "hauptverkehrsstrass", "hauptwahlen": "hauptwahl", "hauptwechsel": "hauptwechsel", "hauptweg": "hauptweg", "hauptwert": "hauptwert", "hauptziel": "hauptziel", "hauptzierde": "hauptzierd", "hauptzweck": "hauptzweck", "haus": "haus", "hausapotheke": "hausapothek", "hausbackenes": "hausback", "hausbau": "hausbau", "hausbesetzer": "hausbesetz", "häuschen": "hausch", "hausdurchsuchungen": "hausdurchsuch", "hause": "haus", "hausecke": "hauseck", "hausehre": "hausehr", "hausen": "haus", "häuser": "haus", "häusermauer": "hausermau", "häusermauern": "hausermau", "häusern": "haus", "hauses": "haus", "hausflur": "hausflur", "hausfrau": "hausfrau", "hausfreund": "hausfreund", "hausgebrauch": "hausgebrauch", "hausgeister": "hausgeist", "hausgenossin": "hausgenossin", "hausglocke": "hausglock", "haushalte": "haushalt", "hausherr": "hausherr", "hausknecht": "hausknecht", "hausknechte": "hausknecht", "häusl": "hausl", "häuslich": "hauslich", "häusliche": "hauslich", "häuslichen": "hauslich", "hausmütterlich": "hausmutt", "hausrat": "hausrat", "hausschlüssel": "hausschlussel", "hausschwelle": "hausschwell", "hausstande": "hausstand", "hauste": "haust", "haustierchen": "haustierch", "haustracht": "haustracht", "haustür": "haustur", "haustüre": "haustur", "haustüren": "haustur", "hausvater": "hausvat", "hauswesen": "hauswes", "haut": "haut", "häutchen": "hautch", "häute": "haut", "hautfalte": "hautfalt", "hautfarbe": "hautfarb", "häutige": "hautig", "hautnah": "hautnah", "hazim": "hazim", "hazims": "hazim", "hc": "hc", "hebe": "heb", "heben": "heb", "hebend": "hebend", "hebet": "hebet", "hebopfer": "hebopf", "hebr": "hebr", "hebräer": "hebra", "hebräerinnen": "hebraerinn", "hebräisch": "hebraisch", "hebräische": "hebraisch", "hebräischen": "hebraisch", "hebt": "hebt", "hecht": "hecht", "hechtbauche": "hechtbauch", "hechte": "hecht", "hechtes": "hecht", "hechtseiten": "hechtseit", "hecken": "heck", "heer": "heer", "heere": "heer", "heeren": "heer", "heeres": "heer", "heerhaufen": "heerhauf", "heerlager": "heerlag", "hefe": "hef", "heft": "heft", "heften": "heft", "heftete": "heftet", "heftig": "heftig", "heftige": "heftig", "heftigem": "heftig", "heftigen": "heftig", "heftiger": "heftig", "heftiges": "heftig", "heftigkeit": "heftig", "heftigste": "heftig", "heftigsten": "heftig", "hege": "heg", "hegen": "heg", "hegt": "hegt", "hegte": "hegt", "hegten": "hegt", "hehr": "hehr", "hei": "hei", "heiden": "heid", "heidengeld": "heidengeld", "heidi": "heidi", "heidnischen": "heidnisch", "heiducken": "heiduck", "heil": "heil", "heiland": "heiland", "heilbar": "heilbar", "heile": "heil", "heilig": "heilig", "heilige": "heilig", "heiligem": "heilig", "heiligen": "heilig", "heiligenschein": "heiligenschein", "heiliger": "heilig", "heiliges": "heilig", "heiligkeit": "heilig", "heiligste": "heilig", "heiligsten": "heilig", "heiligte": "heiligt", "heiligtum": "heiligtum", "heiligtümer": "heiligtum", "heiligung": "heilig", "heiligungen": "heilig", "heillosen": "heillos", "heils": "heil", "heilsamer": "heilsam", "heilsamkeit": "heilsam", "heilstoll": "heilstoll", "heilt": "heilt", "heilte": "heilt", "heilung": "heilung", "heim": "heim", "heimat": "heimat", "heimatdorf": "heimatdorf", "heimatkunde": "heimatkund", "heimatlich": "heimat", "heimatlichen": "heimat", "heimatlosen": "heimatlos", "heimatschein": "heimatschein", "heimatsrecht": "heimatsrecht", "heimattal": "heimattal", "heimgalopp": "heimgalopp", "heimgebracht": "heimgebracht", "heimgekehrt": "heimgekehrt", "heimgekommen": "heimgekomm", "heimgeschickt": "heimgeschickt", "heimgeschickten": "heimgeschickt", "heimgesucht": "heimgesucht", "heimisch": "heimisch", "heimischen": "heimisch", "heimkam": "heimkam", "heimkehr": "heimkehr", "heimkommen": "heimkomm", "heimkommt": "heimkommt", "heimlaufen": "heimlauf", "heimlich": "heimlich", "heimliche": "heimlich", "heimlichem": "heimlich", "heimlichen": "heimlich", "heimlicher": "heimlich", "heimlicherweise": "heimlicherweis", "heimliches": "heimlich", "heimschicken": "heimschick", "heimsuchen": "heimsuch", "heimsuchung": "heimsuch", "heimtückisch": "heimtuck", "heimtückische": "heimtuck", "heimwärts": "heimwart", "heimweg": "heimweg", "heimwege": "heimweg", "heimwegs": "heimweg", "heimweh": "heimweh", "heimzog": "heimzog", "heimzukehren": "heimzukehr", "heimzusuchen": "heimzusuch", "heimzuweisen": "heimzuweis", "heinrich": "heinrich", "heinrichs": "heinrich", "heinze": "heinz", "heinzer": "heinz", "heirat": "heirat", "heiraten": "heirat", "heiratest": "heirat", "heiratet": "heiratet", "heiratete": "heiratet", "heiratsabsichten": "heiratsabsicht", "heiratsfrage": "heiratsfrag", "heiratsgut": "heiratsgut", "heiratslustigen": "heiratslust", "heiratssachen": "heiratssach", "heiret": "heiret", "heiss": "heiss", "heiß": "heiss", "heisse": "heiss", "heiße": "heiss", "heissen": "heiss", "heißen": "heiss", "heisser": "heiss", "heisses": "heiss", "heisset": "heisset", "heißet": "heisset", "heisshunger": "heisshung", "heissmachen": "heissmach", "heisst": "heisst", "heißt": "heisst", "heiter": "heit", "heitere": "heit", "heiteren": "heit", "heiterer": "heit", "heiterkeit": "heiter", "heiterm": "heiterm", "heizen": "heiz", "heizet": "heizet", "heks": "hek", "hektik": "hektik", "hektor": "hektor", "helas": "helas", "helbart": "helbart", "helbarte": "helbart", "held": "held", "helden": "held", "heldenhaftes": "heldenhaft", "heldenwerk": "heldenwerk", "helena": "helena", "helfe": "helf", "helfen": "helf", "helfet": "helfet", "hell": "hell", "hellauf": "hellauf", "helldunklen": "helldunkl", "helle": "hell", "hellem": "hell", "hellen": "hell", "heller": "hell", "hellerleuchteten": "hellerleuchtet", "hellerlichten": "hellerlicht", "helles": "hell", "hellgrüner": "hellgrun", "hellichten": "hellicht", "hellsehend": "hellseh", "hellsehenden": "hellseh", "hellste": "hell", "helmspitze": "helmspitz", "helmzier": "helmzi", "helvetas": "helvetas", "hemd": "hemd", "hemdärmel": "hemdarmel", "hemdärmeln": "hemdarmeln", "hemdärmliche": "hemdarm", "hemdchen": "hemdch", "hemde": "hemd", "hemdenmätze": "hemdenmatz", "hemdenmätzen": "hemdenmatz", "hemdkragen": "hemdkrag", "hemdzipfelchen": "hemdzipfelch", "hemmen": "hemm", "hendeln": "hendeln", "henkel": "henkel", "henken": "henk", "henker": "henk", "henkers": "henk", "henne": "henn", "hennensteigen": "hennensteig", "henrici": "henrici", "henriettental": "henriettental", "hep": "hep", "her": "her", "herab": "herab", "herabfallen": "herabfall", "herabfliesst": "herabfliesst", "herabfließt": "herabfliesst", "herabgebracht": "herabgebracht", "herabgekommen": "herabgekomm", "herabgekommener": "herabgekomm", "herabgelassen": "herabgelass", "herabgeworfen": "herabgeworf", "herabhing": "herabhing", "herabkam": "herabkam", "herabkommen": "herabkomm", "herabkommt": "herabkommt", "herablassen": "herablass", "herablassend": "herablass", "herablässt": "herablasst", "herabläßt": "herablasst", "herabredete": "herabredet", "herabregnen": "herabregn", "herabsehend": "herabseh", "herabsetzt": "herabsetzt", "herabsinken": "herabsink", "herabsinkt": "herabsinkt", "herabstimmen": "herabstimm", "herabzusetzen": "herabzusetz", "herabzustimmen": "herabzustimm", "heran": "heran", "heranbrach": "heranbrach", "heranbrüllte": "heranbrullt", "herandrängte": "herandrangt", "heranfuhren": "heranfuhr", "herangebraust": "herangebraust", "herangeflogen": "herangeflog", "herangeholt": "herangeholt", "herangekommen": "herangekomm", "herangesaust": "herangesaust", "herangeschwänzelt": "herangeschwanzelt", "herangetanzt": "herangetanzt", "herangetreten": "herangetret", "herangewachsen": "herangewachs", "herankommen": "herankomm", "heranmachten": "heranmacht", "herannahen": "herannah", "heranrollte": "heranrollt", "heranrutschte": "heranrutscht", "heranschwoll": "heranschwoll", "herantobenden": "herantob", "herantritt": "herantritt", "heranziehen": "heranzieh", "heranzubilden": "heranzubild", "heranzukommen": "heranzukomm", "heranzuwehen": "heranzuweh", "herauf": "herauf", "heraufbeförderte": "heraufbefordert", "heraufbeschworen": "heraufbeschwor", "heraufbringen": "heraufbring", "heraufführen": "herauffuhr", "heraufgefahren": "heraufgefahr", "heraufgewundenen": "heraufgewund", "heraufkäme": "heraufkam", "heraufkamen": "heraufkam", "heraufkommen": "heraufkomm", "heraufsteigen": "heraufsteig", "heraufsteigt": "heraufsteigt", "heraufziehen": "heraufzieh", "heraufzuholen": "heraufzuhol", "heraufzusäuseln": "heraufzusauseln", "heraus": "heraus", "herausbrachte": "herausbracht", "herausbringen": "herausbring", "herausbrüllten": "herausbrullt", "herausfischen": "herausf", "herausfliegen": "herausflieg", "herausforderung": "herausforder", "herausführen": "herausfuhr", "herausführt": "herausfuhrt", "herausgeben": "herausgeb", "herausgefordert": "herausgefordert", "herausgeführt": "herausgefuhrt", "herausgegeben": "herausgegeb", "herausgegriffen": "herausgegriff", "herausgehen": "herausgeh", "herausgeholt": "herausgeholt", "herausgekommen": "herausgekomm", "herausgelassen": "herausgelass", "herausgelesen": "herausgeles", "herausgenommen": "herausgenomm", "herausgereicht": "herausgereicht", "herausgeschnitten": "herausgeschnitt", "herausgestellt": "herausgestellt", "herausgezaubert": "herausgezaubert", "herausgezogen": "herausgezog", "herausgezupft": "herausgezupft", "herausguckten": "herausguckt", "heraushilft": "heraushilft", "herausholen": "heraushol", "herauskam": "herauskam", "herauskamen": "herauskam", "herausklauben": "herausklaub", "herauskommen": "herauskomm", "herauskommt": "herauskommt", "herauskriegen": "herauskrieg", "herauslügens": "herauslug", "herausmachen": "herausmach", "herausnehmen": "herausnehm", "herausnimmt": "herausnimmt", "herausplatzt": "herausplatzt", "herauspurzelten": "herauspurzelt", "herausreisst": "herausreisst", "herausreißt": "herausreisst", "herausschneiden": "herausschneid", "herausschrieb": "herausschrieb", "heraussen": "herauss", "herausspritzte": "herausspritzt", "heraussteigt": "heraussteigt", "herausstellen": "herausstell", "herausstellt": "herausstellt", "herausstiess": "herausstiess", "heraustauchte": "heraustaucht", "heraustraten": "heraustrat", "heraustritt": "heraustritt", "herausziehen": "herauszieh", "herauszubringen": "herauszubring", "herauszufordern": "herauszuford", "herauszufragen": "herauszufrag", "herauszuführen": "herauszufuhr", "herauszugehen": "herauszugeh", "herauszukommen": "herauszukomm", "herauszuschneiden": "herauszuschneid", "herauszuschreiben": "herauszuschreib", "herauszustreichen": "herauszustreich", "herauszwingen": "herauszwing", "herbe": "herb", "herbei": "herbei", "herbeibringen": "herbeibring", "herbeieilenden": "herbeieil", "herbeiführe": "herbeifuhr", "herbeiführt": "herbeifuhrt", "herbeiführte": "herbeifuhrt", "herbeiführung": "herbeifuhr", "herbeigebracht": "herbeigebracht", "herbeigeführt": "herbeigefuhrt", "herbeigeführte": "herbeigefuhrt", "herbeigekommen": "herbeigekomm", "herbeigelaufen": "herbeigelauf", "herbeigetragen": "herbeigetrag", "herbeigezogen": "herbeigezog", "herbeikam": "herbeikam", "herbeikamen": "herbeikam", "herbeikommen": "herbeikomm", "herbeikommt": "herbeikommt", "herbeiströmen": "herbeistrom", "herbeizuführen": "herbeizufuhr", "herbeizuholen": "herbeizuhol", "herbeizuschaffen": "herbeizuschaff", "herberge": "herberg", "herbergskammern": "herbergskamm", "herbeste": "herb", "herbringen": "herbring", "herbst": "herb", "herbstabendhimmel": "herbstabendhimmel", "herbstabends": "herbstab", "herbsteigen": "herbsteig", "herbstes": "herb", "herbstmorgens": "herbstmorg", "herbstnachmittag": "herbstnachmittag", "herbstnebel": "herbstnebel", "herbstsonnenschein": "herbstsonnenschein", "herbstwetter": "herbstwett", "herchen": "herch", "herd": "herd", "herde": "herd", "herden": "herd", "herdfeuer": "herdfeu", "herein": "herein", "hereinbräche": "hereinbrach", "hereinbrächen": "hereinbrach", "hereinbrechen": "hereinbrech", "hereinbricht": "hereinbricht", "hereingebrachte": "hereingebracht", "hereingebrachtes": "hereingebracht", "hereingepeitscht": "hereingepeitscht", "hereingesendet": "hereingesendet", "hereingetölpelt": "hereingetolpelt", "hereingeworfenes": "hereingeworf", "hereinguckte": "hereinguckt", "hereinkam": "hereinkam", "hereinkommen": "hereinkomm", "hereinragte": "hereinragt", "hereinwatschelte": "hereinwatschelt", "hereinzukommen": "hereinzukomm", "heresibus": "heresibus", "herfahren": "herfahr", "herflatterte": "herflattert", "herflatterten": "herflattert", "herg": "herg", "hergeben": "hergeb", "hergefahren": "hergefahr", "hergeführt": "hergefuhrt", "hergegeben": "hergegeb", "hergehen": "hergeh", "hergehend": "hergeh", "hergehst": "hergeh", "hergeht": "hergeht", "hergekommen": "hergekomm", "hergeleitet": "hergeleitet", "hergeleuchtet": "hergeleuchtet", "hergemacht": "hergemacht", "hergenommen": "hergenomm", "hergerufen": "hergeruf", "hergesagt": "hergesagt", "hergesandt": "hergesandt", "hergestellt": "hergestellt", "hergestellten": "hergestellt", "hergetrieben": "hergetrieb", "hergewandert": "hergewandert", "hergezogen": "hergezog", "herging": "herging", "hering": "hering", "heringe": "hering", "heringen": "hering", "herjagte": "herjagt", "herkam": "herkam", "herkämen": "herkam", "herkomme": "herkomm", "herkommen": "herkomm", "herkommenden": "herkomm", "herkommt": "herkommt", "herkunft": "herkunft", "hermann": "hermann", "hermarschiert": "hermarschiert", "hermsdorf": "hermsdorf", "hernach": "hernach", "hernahm": "hernahm", "hernehmen": "hernehm", "hernehmt": "hernehmt", "hernieder": "hernied", "herniederregneten": "herniederregnet", "herniedersahen": "herniedersah", "herniedersank": "herniedersank", "hernimmt": "hernimmt", "heroisch": "heroisch", "heroischer": "heroisch", "heroismus": "heroismus", "heros": "heros", "herr": "herr", "herreden": "herred", "herren": "herr", "herrengesellschaften": "herrengesellschaft", "herrenhaus": "herrenhaus", "herrenlos": "herrenlos", "herrenlose": "herrenlos", "herrenlosen": "herrenlos", "herrenrointhütte": "herrenrointhutt", "herrentafel": "herrentafel", "herrentross": "herrentross", "herrentroß": "herrentross", "herrgott": "herrgott", "herrgottswinkel": "herrgottswinkel", "herrin": "herrin", "herrisch": "herrisch", "herrlich": "herrlich", "herrliche": "herrlich", "herrlichem": "herrlich", "herrlichen": "herrlich", "herrlicher": "herrlich", "herrliches": "herrlich", "herrlichkeit": "herrlich", "herrlichkeiten": "herrlich", "herrlichste": "herrlich", "herrlichsten": "herrlich", "herrn": "herrn", "herrsch": "herrsch", "herrschaft": "herrschaft", "herrschaften": "herrschaft", "herrschaftlichen": "herrschaft", "herrschaftlicher": "herrschaft", "herrsche": "herrsch", "herrschen": "herrsch", "herrschend": "herrschend", "herrschende": "herrschend", "herrschenden": "herrschend", "herrschens": "herrsch", "herrscherinnen": "herrscherinn", "herrschest": "herrsch", "herrschet": "herrschet", "herrscht": "herrscht", "herrschte": "herrscht", "herrschten": "herrscht", "herrühre": "herruhr", "herrührt": "herruhrt", "herrührten": "herruhrt", "herschritt": "herschritt", "herstammend": "herstamm", "herstammende": "herstamm", "herstammenden": "herstamm", "herstammt": "herstammt", "herstammte": "herstammt", "herstammten": "herstammt", "herstelle": "herstell", "herstellen": "herstell", "hersteller": "herstell", "herstellung": "herstell", "herüber": "herub", "herübergeworfen": "herubergeworf", "herüberkommen": "heruberkomm", "herüberzukommen": "heruberzukomm", "herum": "herum", "herumbiegend": "herumbieg", "herumfliegt": "herumfliegt", "herumflog": "herumflog", "herumführte": "herumfuhrt", "herumgeflogen": "herumgeflog", "herumgefuchtelt": "herumgefuchtelt", "herumgehen": "herumgeh", "herumgeschlagen": "herumgeschlag", "herumgeschlüpft": "herumgeschlupft", "herumgeschnitten": "herumgeschnitt", "herumgesprochen": "herumgesproch", "herumgetrieben": "herumgetrieb", "herumging": "herumging", "herumhing": "herumhing", "herumhocken": "herumhock", "herumhuschten": "herumhuscht", "herumkollerte": "herumkollert", "herumlagen": "herumlag", "herumlaufe": "herumlauf", "herumlaufen": "herumlauf", "herumlief": "herumlief", "herumliefe": "herumlief", "herumliegen": "herumlieg", "herumlungern": "heruml", "herumlungerns": "herumlungern", "herumplätscherte": "herumplatschert", "herumrutschten": "herumrutscht", "herumsäete": "herumsaet", "herumscharrten": "herumscharrt", "herumschleichen": "herumschleich", "herumschleppte": "herumschleppt", "herumschlichen": "herumsch", "herumschlug": "herumschlug", "herumschlugen": "herumschlug", "herumschweben": "herumschweb", "herumschweifen": "herumschweif", "herumschwenken": "herumschwenk", "herumspazieren": "herumspazi", "herumsprang": "herumsprang", "herumsprangen": "herumsprang", "herumstand": "herumstand", "herumstanden": "herumstand", "herumständern": "herumstand", "herumstocherte": "herumstochert", "herumstreicht": "herumstreicht", "herumstreifende": "herumstreif", "herumstreifte": "herumstreift", "herumstreite": "herumstreit", "herumstrich": "herumstrich", "herumtänzeln": "herumtanzeln", "herumtappt": "herumtappt", "herumtragen": "herumtrag", "herumtreibe": "herumtreib", "herumtreiben": "herumtreib", "herumtreiber": "herumtreib", "herumtrug": "herumtrug", "herumtrüge": "herumtrug", "herumtummelte": "herumtummelt", "herumwälzte": "herumwalzt", "herumwandle": "herumwandl", "herumwarf": "herumwarf", "herumzerrt": "herumzerrt", "herumzerrte": "herumzerrt", "herumziehende": "herumzieh", "herumzuärgern": "herumzuarg", "herumzufuchteln": "herumzufuchteln", "herumzukreuzen": "herumzukreuz", "herumzurasen": "herumzuras", "herumzuschweifen": "herumzuschweif", "herumzustreichen": "herumzustreich", "herumzusummen": "herumzusumm", "herumzutummeln": "herumzutummeln", "herumzuturnen": "herumzuturn", "herumzuziehen": "herumzuzieh", "herunter": "herunt", "herunterblickte": "herunterblickt", "herunterfinden": "herunterfind", "herunterflog": "herunterflog", "heruntergebracht": "heruntergebracht", "heruntergebrannt": "heruntergebrannt", "heruntergekommen": "heruntergekomm", "heruntergekommene": "heruntergekomm", "herunterholen": "herunterhol", "herunterkam": "herunterkam", "herunterkommen": "herunterkomm", "herunternehmen": "herunternehm", "herunterpurzeln": "herunterpurzeln", "herunterpurzelten": "herunterpurzelt", "herunterstreifte": "herunterstreift", "herunterwarf": "herunterwarf", "herunterwehte": "herunterweht", "herunterwickelte": "herunterwickelt", "herunterziehen": "herunterzieh", "herunterzuholen": "herunterzuhol", "herunterzuschlagen": "herunterzuschlag", "herunterzustossen": "herunterzustoss", "hervor": "hervor", "hervorblitzte": "hervorblitzt", "hervorbrach": "hervorbrach", "hervorbrachte": "hervorbracht", "hervorbrechen": "hervorbrech", "hervorbrechenden": "hervorbrech", "hervorbricht": "hervorbricht", "hervorbringe": "hervorbring", "hervorbringen": "hervorbring", "hervorbringt": "hervorbringt", "hervorbringung": "hervorbring", "hervorfliessen": "hervorfliess", "hervorfließen": "hervorfliess", "hervorgebracht": "hervorgebracht", "hervorgebrochen": "hervorgebroch", "hervorgegangen": "hervorgegang", "hervorgegangene": "hervorgegang", "hervorgehen": "hervorgeh", "hervorgehende": "hervorgeh", "hervorgehenden": "hervorgeh", "hervorgeholt": "hervorgeholt", "hervorgeht": "hervorgeht", "hervorgerufen": "hervorgeruf", "hervorgetan": "hervorgetan", "hervorgetreten": "hervorgetret", "hervorgewandelt": "hervorgewandelt", "hervorgezogen": "hervorgezog", "hervorgingen": "hervorging", "hervorheben": "hervorheb", "hervorholen": "hervorhol", "hervorholten": "hervorholt", "hervorkehrte": "hervorkehrt", "hervorkommt": "hervorkommt", "hervorkriechen": "hervorkriech", "hervorleuchtet": "hervorleuchtet", "hervorleuchtete": "hervorleuchtet", "hervornahm": "hervornahm", "hervorquillt": "hervorquillt", "hervorragender": "hervorrag", "hervorragten": "hervorragt", "hervorsahen": "hervorsah", "hervorschielte": "hervorschielt", "hervorschimmern": "hervorschimm", "hervorschimmerten": "hervorschimmert", "hervorsprang": "hervorsprang", "hervorsprossen": "hervorspross", "hervorsprudeln": "hervorsprudeln", "hervorstechend": "hervorstech", "hervorstrahlende": "hervorstrahl", "hervorstrahlt": "hervorstrahlt", "hervorstrahlte": "hervorstrahlt", "hervorsuchte": "hervorsucht", "hervortaten": "hervortat", "hervortrat": "hervortrat", "hervortraten": "hervortrat", "hervortreten": "hervortret", "hervortritt": "hervortritt", "hervortrittst": "hervortritt", "hervortut": "hervortut", "hervorwallenden": "hervorwall", "hervorwimmeln": "hervorwimmeln", "hervorziehen": "hervorzieh", "hervorzog": "hervorzog", "hervorzubringen": "hervorzubring", "hervorzuheben": "hervorzuheb", "hervorzuholen": "hervorzuhol", "hervorzutreten": "hervorzutret", "herwachsen": "herwachs", "herweg": "herweg", "herz": "herz", "herze": "herz", "herzeleid": "herzeleid", "herzen": "herz", "herzens": "herz", "herzensfröhlichkeit": "herzensfroh", "herzensgründen": "herzensgrund", "herzensgutes": "herzensgut", "herzenshärtigkeit": "herzenshart", "herzensqual": "herzensqual", "herzensunterwerfung": "herzensunterwerf", "herzensweh": "herzensweh", "herzerl": "herzerl", "herzhafte": "herzhaft", "herziehen": "herzieh", "herziehens": "herzieh", "herziges": "herzig", "herzigs": "herzig", "herzklopfen": "herzklopf", "herzlich": "herzlich", "herzliche": "herzlich", "herzlichen": "herzlich", "herzlos": "herzlos", "herzloser": "herzlos", "herzmanndi": "herzmanndi", "herzmannskerl": "herzmannskerl", "herzmannski": "herzmannski", "herzmannskis": "herzmannskis", "herzog": "herzog", "herzogin": "herzogin", "herzogs": "herzog", "herzschlag": "herzschlag", "herzschlägen": "herzschlag", "herzu": "herzu", "herzufallen": "herzufall", "herzuführen": "herzufuhr", "herzugeben": "herzugeb", "herzugebrachten": "herzugebracht", "herzugeritten": "herzugeritt", "herzugetragen": "herzugetrag", "herzunahen": "herzunah", "herzurühren": "herzuruhr", "herzuschaffen": "herzuschaff", "herzustellen": "herzustell", "herzutragen": "herzutrag", "herzuträte": "herzutrat", "herzutreten": "herzutret", "hes": "hes", "hesekiel": "hesekiel", "heteronomie": "heteronomi", "hethiter": "hethit", "hettlinger": "hettling", "hetze": "hetz", "hetzen": "hetz", "hetzjagd": "hetzjagd", "hetzte": "hetzt", "heu": "heu", "heuboden": "heubod", "heuchelei": "heuchelei", "heucheln": "heucheln", "heuchelt": "heuchelt", "heuchler": "heuchl", "heuchlerischem": "heuchler", "heugabel": "heugabel", "heulen": "heul", "heulend": "heulend", "heulender": "heulend", "heulet": "heulet", "heult": "heult", "heulte": "heult", "heulten": "heult", "heuschiff": "heuschiff", "heuschrecke": "heuschreck", "heuschrecken": "heuschreck", "heuschreckenschwarm": "heuschreckenschwarm", "heuss": "heuss", "heustock": "heustock", "heut": "heut", "heute": "heut", "heutige": "heutig", "heutigen": "heutig", "heutiges": "heutig", "heutzutage": "heutzutag", "heviter": "hevit", "heviters": "hevit", "hexe": "hex", "hexen": "hex", "hexenküche": "hexenkuch", "hexenmeister": "hexenmeist", "hexenmeisters": "hexenmeist", "hexenwerk": "hexenwerk", "hexer": "hex", "hexerei": "hexerei", "hg": "hg", "hie": "hie", "hieb": "hieb", "hiebe": "hieb", "hiebei": "hiebei", "hieber": "hieb", "hiedurch": "hiedurch", "hiefür": "hiefur", "hiegegen": "hiegeg", "hieher": "hieh", "hielt": "hielt", "hielte": "hielt", "hielten": "hielt", "hiemit": "hiemit", "hienach": "hienach", "hier": "hier", "hieran": "hieran", "hierarchie": "hierarchi", "hierauf": "hierauf", "hieraus": "hieraus", "hierbei": "hierbei", "hierbleiben": "hierbleib", "hierdurch": "hierdurch", "hierfür": "hierfur", "hierher": "hierh", "hierhergekommen": "hierhergekomm", "hierherkamen": "hierherkam", "hierherzukommen": "hierherzukomm", "hierhin": "hierhin", "hierin": "hierin", "hierlassen": "hierlass", "hiermit": "hiermit", "hieroglyphen": "hieroglyph", "hierüber": "hierub", "hierunter": "hierunt", "hiervon": "hiervon", "hierzu": "hierzu", "hierzubleiben": "hierzubleib", "hierzulande": "hierzuland", "hiesigen": "hiesig", "hiess": "hiess", "hieß": "hiess", "hiesse": "hiess", "hieße": "hiess", "hiessen": "hiess", "hießen": "hiess", "hievon": "hievon", "hiezu": "hiezu", "hiifsregisseur": "hiifsregisseur", "hildegard": "hildegard", "hildesheim": "hildesheim", "hilf": "hilf", "hilfe": "hilf", "hilflos": "hilflos", "hilflosigkeit": "hilflos", "hilfsbereitschaft": "hilfsbereitschaft", "hilfsbremser": "hilfsbrems", "hilfskräfte": "hilfskraft", "hilfsmittel": "hilfsmittel", "hilfsquellen": "hilfsquell", "hilfsregisseur": "hilfsregisseur", "hilfsregisseurs": "hilfsregisseur", "hilfswerk": "hilfswerk", "hilfswerke": "hilfswerk", "hilft": "hilft", "himmel": "himmel", "himmelbett": "himmelbett", "himmelblaue": "himmelblau", "himmelblauen": "himmelblau", "himmelblaues": "himmelblau", "himmelerschütterndem": "himmelerschutternd", "himmelhoch": "himmelhoch", "himmelhohe": "himmelhoh", "himmelhohen": "himmelhoh", "himmeln": "himmeln", "himmelreich": "himmelreich", "himmels": "himmel", "himmelsbesen": "himmelsbes", "himmelsbewohnern": "himmelsbewohn", "himmelschoten": "himmelschot", "himmelschreiendes": "himmelschrei", "himmelsfeste": "himmelsf", "himmelsfürst": "himmelsfurst", "himmelsgeheimnissen": "himmelsgeheimnis", "himmelsgestirn": "himmelsgestirn", "himmelsgrund": "himmelsgrund", "himmelsheeren": "himmelshe", "himmelsheim": "himmelsheim", "himmelshöhen": "himmelshoh", "himmelskühe": "himmelskuh", "himmelslicht": "himmelslicht", "himmelslichtes": "himmelslicht", "himmelsraketenmässig": "himmelsraketenmass", "himmelsraum": "himmelsraum", "himmelsraums": "himmelsraum", "himmelsrichtungen": "himmelsricht", "himmelsschön": "himmelsschon", "himmelssphäre": "himmelssphar", "himmelsweide": "himmelsweid", "himmelswiese": "himmelswies", "himmelszelt": "himmelszelt", "himmelsziegen": "himmelszieg", "himmelsziegenhörnchen": "himmelsziegenhornch", "himmelwärts": "himmelwart", "himmelweit": "himmelweit", "himmlisch": "himmlisch", "himmlische": "himmlisch", "himmlischem": "himmlisch", "himmlischen": "himmlisch", "himmlischer": "himmlisch", "himmlisches": "himmlisch", "hin": "hin", "hinab": "hinab", "hinabfahren": "hinabfahr", "hinabfuhr": "hinabfuhr", "hinabgegangen": "hinabgegang", "hinabgelassen": "hinabgelass", "hinabgerissen": "hinabgeriss", "hinabgesprungen": "hinabgespr", "hinabgestossen": "hinabgestoss", "hinabgestoßen": "hinabgestoss", "hinabgestürzt": "hinabgesturzt", "hinabgeworfen": "hinabgeworf", "hinabgingen": "hinabging", "hinabkommen": "hinabkomm", "hinablassen": "hinablass", "hinabsanken": "hinabsank", "hinabsankst": "hinabsank", "hinabsausten": "hinabsaust", "hinabsenkt": "hinabsenkt", "hinabsinken": "hinabsink", "hinabspringen": "hinabspring", "hinabsteigen": "hinabsteig", "hinabstossen": "hinabstoss", "hinabstoßen": "hinabstoss", "hinabtauchte": "hinabtaucht", "hinabtreibend": "hinabtreib", "hinabversetzt": "hinabversetzt", "hinabwerfen": "hinabwerf", "hinabziehen": "hinabzieh", "hinabzog": "hinabzog", "hinabzugehen": "hinabzugeh", "hinabzusteigen": "hinabzusteig", "hinabzustürzen": "hinabzusturz", "hinan": "hinan", "hinanfuhren": "hinanfuhr", "hinangeleiten": "hinangeleit", "hinanstieg": "hinanstieg", "hinauf": "hinauf", "hinaufbringen": "hinaufbring", "hinaufführen": "hinauffuhr", "hinaufführte": "hinauffuhrt", "hinauffuhrwerkte": "hinauffuhrwerkt", "hinaufgefahren": "hinaufgefahr", "hinaufgehen": "hinaufgeh", "hinaufgehoben": "hinaufgehob", "hinaufgeschossen": "hinaufgeschoss", "hinaufgestiegen": "hinaufgestieg", "hinaufgestrauchelt": "hinaufgestrauchelt", "hinaufgetrieben": "hinaufgetrieb", "hinaufging": "hinaufging", "hinaufkommen": "hinaufkomm", "hinauflief": "hinauflief", "hinaufrufen": "hinaufruf", "hinaufspähte": "hinaufspaht", "hinaufsprang": "hinaufsprang", "hinaufsteigen": "hinaufsteig", "hinaufstieg": "hinaufstieg", "hinaufstreckte": "hinaufstreckt", "hinaufstürmte": "hinaufsturmt", "hinaufwollte": "hinaufwollt", "hinaufzuführen": "hinaufzufuhr", "hinaufzukommen": "hinaufzukomm", "hinaufzutreiben": "hinaufzutreib", "hinaus": "hinaus", "hinausarbeiten": "hinausarbeit", "hinausbefördert": "hinausbefordert", "hinausbegleiten": "hinausbegleit", "hinausfliehen": "hinausflieh", "hinausg": "hinausg", "hinausgebauten": "hinausgebaut", "hinausgeführt": "hinausgefuhrt", "hinausgegangen": "hinausgegang", "hinausgehe": "hinausgeh", "hinausgehen": "hinausgeh", "hinausgeht": "hinausgeht", "hinausgeleitet": "hinausgeleitet", "hinausgerücktes": "hinausgeruckt", "hinausgeschafft": "hinausgeschafft", "hinausgeschlichen": "hinausgesch", "hinausgeschnitten": "hinausgeschnitt", "hinausgesetzt": "hinausgesetzt", "hinausgesprengt": "hinausgesprengt", "hinausgeworfen": "hinausgeworf", "hinausginge": "hinausging", "hinausgingen": "hinausging", "hinauskommen": "hinauskomm", "hinauskomplementiert": "hinauskomplementiert", "hinausläuft": "hinauslauft", "hinaussahen": "hinaussah", "hinausschallte": "hinausschallt", "hinausschauen": "hinausschau", "hinausschaute": "hinausschaut", "hinausschieben": "hinausschieb", "hinausschrie": "hinausschri", "hinausschweift": "hinausschweift", "hinaussieht": "hinaussieht", "hinausspringen": "hinausspring", "hinausspringenden": "hinausspring", "hinausstossen": "hinausstoss", "hinausstoßen": "hinausstoss", "hinaustrat": "hinaustrat", "hinaustreten": "hinaustret", "hinaustrollte": "hinaustrollt", "hinauswandern": "hinauswand", "hinauswillst": "hinauswill", "hinauszufliegen": "hinauszuflieg", "hinauszustossen": "hinauszustoss", "hinauszustoßen": "hinauszustoss", "hinauszuziehen": "hinauszuzieh", "hinbeugte": "hinbeugt", "hinblicken": "hinblick", "hinblickte": "hinblickt", "hindern": "hind", "hindernis": "hindernis", "hindernisse": "hindernis", "hindernisses": "hindernis", "hindert": "hindert", "hinderte": "hindert", "hindin": "hindin", "hindinnen": "hindinn", "hindostanische": "hindostan", "hindu": "hindu", "hindurch": "hindurch", "hindurchfliessen": "hindurchfliess", "hindurchfließen": "hindurchfliess", "hindurchfliessens": "hindurchfliess", "hindurchfließens": "hindurchfliess", "hindurchfliesst": "hindurchfliesst", "hindurchfließt": "hindurchfliesst", "hindurchfloss": "hindurchfloss", "hindurchfloß": "hindurchfloss", "hindurchführte": "hindurchfuhrt", "hindurchgegangen": "hindurchgegang", "hindurchgehende": "hindurchgeh", "hindurchgeht": "hindurchgeht", "hindurchgeschlüpft": "hindurchgeschlupft", "hindurchging": "hindurchging", "hineilte": "hineilt", "hinein": "hinein", "hineinbringen": "hineinbring", "hineinfahren": "hineinfahr", "hineinfällt": "hineinfallt", "hineingebaut": "hineingebaut", "hineingebracht": "hineingebracht", "hineingefahren": "hineingefahr", "hineingegangen": "hineingegang", "hineingehen": "hineingeh", "hineingeht": "hineingeht", "hineingekrochen": "hineingekroch", "hineingeladen": "hineingelad", "hineingelegten": "hineingelegt", "hineingeraten": "hineingerat", "hineingesehen": "hineingeseh", "hineingesperrt": "hineingesperrt", "hineingeworfen": "hineingeworf", "hineingeworfene": "hineingeworf", "hineinging": "hineinging", "hineingrub": "hineingrub", "hineinkleben": "hineinkleb", "hineinkomme": "hineinkomm", "hineinkommen": "hineinkomm", "hineinladen": "hineinlad", "hineinlegen": "hineinleg", "hineinliess": "hineinliess", "hineinritt": "hineinritt", "hineinschien": "hineinschi", "hineinschrie": "hineinschri", "hineinsprang": "hineinsprang", "hineinstellte": "hineinstellt", "hineinstrecken": "hineinstreck", "hineinträgt": "hineintragt", "hineintrugen": "hineintrug", "hineinversetzen": "hineinversetz", "hineinversetzt": "hineinversetzt", "hineinwerfen": "hineinwerf", "hineinwuchs": "hineinwuch", "hineinzukleben": "hineinzukleb", "hineinzulassen": "hineinzulass", "hineinzuschreiten": "hineinzuschreit", "hineinzusehen": "hineinzuseh", "hineinzuspringen": "hineinzuspring", "hineinzuwandeln": "hineinzuwandeln", "hinfiel": "hinfiel", "hinfort": "hinfort", "hinführen": "hinfuhr", "hing": "hing", "hingabe": "hingab", "hingaben": "hingab", "hingeben": "hingeb", "hingebettet": "hingebettet", "hingebung": "hingeb", "hingebungsvoll": "hingebungsvoll", "hingeführt": "hingefuhrt", "hingegangen": "hingegang", "hingegeben": "hingegeb", "hingegebenes": "hingegeb", "hingegen": "hingeg", "hingehalten": "hingehalt", "hingehen": "hingeh", "hingekommen": "hingekomm", "hingeleiten": "hingeleit", "hingelenkt": "hingelenkt", "hingen": "hing", "hingenommen": "hingenomm", "hingerissen": "hingeriss", "hingeschickt": "hingeschickt", "hingeschieden": "hingeschied", "hingesehen": "hingeseh", "hingestellt": "hingestellt", "hingestreckt": "hingestreckt", "hingestreut": "hingestreut", "hingetragen": "hingetrag", "hingetreten": "hingetret", "hingewandert": "hingewandert", "hingewandt": "hingewandt", "hingewendet": "hingewendet", "hingewiesen": "hingewies", "hingeworfen": "hingeworf", "hinging": "hinging", "hinglitt": "hinglitt", "hinhalten": "hinhalt", "hinhältst": "hinhalt", "hinirren": "hinirr", "hinkam": "hinkam", "hinken": "hink", "hinkenden": "hinkend", "hinkendes": "hinkend", "hinklopft": "hinklopft", "hinkommen": "hinkomm", "hinkt": "hinkt", "hinlänglich": "hinlang", "hinlängliche": "hinlang", "hinleg": "hinleg", "hinlegen": "hinleg", "hinlief": "hinlief", "hinnahm": "hinnahm", "hinnehmen": "hinnehm", "hinneigen": "hinneig", "hinneigt": "hinneigt", "hinneigten": "hinneigt", "hinnen": "hinn", "hinrasen": "hinras", "hinreiche": "hinreich", "hinreichen": "hinreich", "hinreichend": "hinreich", "hinreichende": "hinreich", "hinreichenden": "hinreich", "hinreichender": "hinreich", "hinreichte": "hinreicht", "hinreissen": "hinreiss", "hinreißen": "hinreiss", "hinreissend": "hinreiss", "hinsah": "hinsah", "hinsandte": "hinsandt", "hinschauten": "hinschaut", "hinscheiden": "hinscheid", "hinschiessenden": "hinschiess", "hinschnitt": "hinschnitt", "hinschob": "hinschob", "hinschritt": "hinschritt", "hinschwebte": "hinschwebt", "hinsehen": "hinseh", "hinsetzend": "hinsetz", "hinsicht": "hinsicht", "hinsichtlich": "hinsicht", "hinsieht": "hinsieht", "hinsingt": "hinsingt", "hinspediert": "hinspediert", "hinstellen": "hinstell", "hinstellte": "hinstellt", "hinsterben": "hinsterb", "hinstreckten": "hinstreckt", "hinstürzt": "hinsturzt", "hinstürzte": "hinsturzt", "hinten": "hint", "hintendrein": "hintendrein", "hinter": "hint", "hintereinander": "hintereinand", "hinteren": "hint", "hinterfragen": "hinterfrag", "hinterfragt": "hinterfragt", "hinterfüsse": "hinterfuss", "hintergehen": "hintergeh", "hintergestell": "hintergestell", "hintergrund": "hintergrund", "hintergrunde": "hintergrund", "hintergrundes": "hintergrund", "hintergrundregelmässig": "hintergrundregelmass", "hinterhalt": "hinterhalt", "hinterher": "hinterh", "hinterhoftheater": "hinterhoftheat", "hinterlassen": "hinterlass", "hinterlegten": "hinterlegt", "hinterliess": "hinterliess", "hinterlist": "hinterlist", "hinterlistigen": "hinterlist", "hintern": "hint", "hinterrücks": "hinterruck", "hinters": "hint", "hinterstübchen": "hinterstubch", "hintertreiben": "hintertreib", "hintrat": "hintrat", "hintreten": "hintret", "hintri": "hintri", "hinüber": "hinub", "hinübergehen": "hinubergeh", "hinübergetragen": "hinubergetrag", "hinübergewandt": "hinubergewandt", "hinüberkommen": "hinuberkomm", "hinüberreiten": "hinuberreit", "hinüberrudern": "hinuberrud", "hinübersah": "hinubersah", "hinüberschritten": "hinuberschritt", "hinübersehen": "hinuberseh", "hinübertragen": "hinubertrag", "hinunter": "hinunt", "hinunterblicken": "hinunterblick", "hinunterfahren": "hinunterfahr", "hinunterführte": "hinunterfuhrt", "hinuntergebeugt": "hinuntergebeugt", "hinuntergesprungen": "hinuntergespr", "hinuntergestossen": "hinuntergestoss", "hinuntergestoßen": "hinuntergestoss", "hinunterging": "hinunterging", "hinunterhängenden": "hinunterhang", "hinunterkommen": "hinunterkomm", "hinunterlachte": "hinunterlacht", "hinunterrutschen": "hinunterrutsch", "hinuntersah": "hinuntersah", "hinunterschaute": "hinunterschaut", "hinuntersenkte": "hinuntersenkt", "hinunterstossen": "hinunterstoss", "hinunterstoßen": "hinunterstoss", "hinuntertragen": "hinuntertrag", "hinunterwerfen": "hinunterwerf", "hinunterzerrte": "hinunterzerrt", "hinwandelt": "hinwandelt", "hinwanderten": "hinwandert", "hinwandte": "hinwandt", "hinweg": "hinweg", "hinweggegangen": "hinweggegang", "hinweggehen": "hinweggeh", "hinweggeholfen": "hinweggeholf", "hinweggerattert": "hinweggerattert", "hinwegkommen": "hinwegkomm", "hinwegliefen": "hinweglief", "hinwegnehmen": "hinwegnehm", "hinwegschaffen": "hinwegschaff", "hinweise": "hinweis", "hinweisen": "hinweis", "hinwenden": "hinwend", "hinwendung": "hinwend", "hinwerfen": "hinwerf", "hinwerfung": "hinwerf", "hinwieder": "hinwied", "hinziehen": "hinzieh", "hinzog": "hinzog", "hinzogen": "hinzog", "hinzu": "hinzu", "hinzubegeben": "hinzubegeb", "hinzublicken": "hinzublick", "hinzufüge": "hinzufug", "hinzufügen": "hinzufug", "hinzufügt": "hinzufugt", "hinzuführen": "hinzufuhr", "hinzugefügt": "hinzugefugt", "hinzugehen": "hinzugeh", "hinzugekommen": "hinzugekomm", "hinzugesetzt": "hinzugesetzt", "hinzugetan": "hinzugetan", "hinzuhalten": "hinzuhalt", "hinzukommen": "hinzukomm", "hinzukommenden": "hinzukomm", "hinzulegen": "hinzuleg", "hinzuschielen": "hinzuschiel", "hinzuschleichen": "hinzuschleich", "hinzusehen": "hinzuseh", "hinzustrecken": "hinzustreck", "hinzustürzen": "hinzusturz", "hinzutraten": "hinzutrat", "hinzutreten": "hinzutret", "hinzutun": "hinzutun", "hinzuweisen": "hinzuweis", "hinzuzufügen": "hinzuzufug", "hiob": "hiob", "hirn": "hirn", "hirngespenstern": "hirngespen", "hirngespinst": "hirngespin", "hirngespinste": "hirngespin", "hirnhäute": "hirnhaut", "hirnschale": "hirnschal", "hirsch": "hirsch", "hirsche": "hirsch", "hirschen": "hirsch", "hirsches": "hirsch", "hirschgeweih": "hirschgeweih", "hirschkuh": "hirschkuh", "hirt": "hirt", "hirte": "hirt", "hirten": "hirt", "historie": "histori", "historiker": "histor", "historikerin": "historikerin", "historikers": "histor", "historisch": "histor", "historische": "histor", "historischen": "histor", "historischer": "histor", "hitler": "hitl", "hitlerrede": "hitlerred", "hitz": "hitz", "hitze": "hitz", "hitzige": "hitzig", "hitzigen": "hitzig", "hitziger": "hitzig", "hitzkopf": "hitzkopf", "hm": "hm", "hmmm": "hmmm", "ho": "ho", "hob": "hob", "hobelbänke": "hobelbank", "hoben": "hob", "hoc": "hoc", "hoch": "hoch", "hochachtung": "hochacht", "hochachtungsvohlst": "hochachtungsvohl", "hochamt": "hochamt", "hochaufatmend": "hochaufatm", "hochdeutsch": "hochdeutsch", "hochebene": "hocheb", "hochfahrenden": "hochfahr", "hochfuhr": "hochfuhr", "hochgebettete": "hochgebettet", "hochgebrochenen": "hochgebroch", "hochgefahren": "hochgefahr", "hochgehoben": "hochgehob", "hochgelegen": "hochgeleg", "hochgenuss": "hochgenuss", "hochgepriesene": "hochgepries", "hochgeschäfteten": "hochgeschaftet", "hochgewölbten": "hochgewolbt", "hochgipfel": "hochgipfel", "hochheilig": "hochheil", "hochheilige": "hochheil", "hochheiliges": "hochheil", "hochkam": "hochkam", "hochklingenden": "hochkling", "höchlich": "hochlich", "hochmoore": "hochmoor", "hochmut": "hochmut", "hochmütig": "hochmut", "hochmütige": "hochmut", "hochnäsig": "hochnas", "hochnäsige": "hochnas", "hochpreisungen": "hochpreis", "hochsahen": "hochsah", "hochschätzung": "hochschatz", "hochsitze": "hochsitz", "hochsommer": "hochsomm", "höchst": "hoch", "hochstämmige": "hochstamm", "hochstapfen": "hochstapf", "höchste": "hoch", "höchstem": "hoch", "höchsten": "hoch", "höchstens": "hochst", "höchster": "hoch", "höchstes": "hoch", "höchstnötig": "hochstnot", "hochtrabende": "hochtrab", "hochverpönt": "hochverpont", "hochverpönte": "hochverpont", "hochverpöntes": "hochverpont", "hochverrat": "hochverrat", "hochwild": "hochwild", "hochzeit": "hochzeit", "hochzeitbett": "hochzeitbett", "hochzeiten": "hochzeit", "hochzeiter": "hochzeit", "hochzeitgäste": "hochzeitgast", "hochzeitgeleite": "hochzeitgeleit", "hochzeitkammer": "hochzeitkamm", "hochzeitmahl": "hochzeitmahl", "hochzeitmorgen": "hochzeitmorg", "hochzeitpaar": "hochzeitpaar", "hochzeitstruhe": "hochzeitstruh", "hochzet": "hochzet", "hochzubrüllen": "hochzubrull", "hockte": "hockt", "hockten": "hockt", "hof": "hof", "hofe": "hof", "höfe": "hof", "höfen": "hof", "hofes": "hof", "hoffart": "hoffart", "hoffärtigen": "hoffart", "hoffärtiger": "hoffart", "hoffe": "hoff", "hoffen": "hoff", "hoffend": "hoffend", "hoffenster": "hoffen", "hoffentlich": "hoffent", "hoffmann": "hoffmann", "hoffmannstropfen": "hoffmannstropf", "hoffnung": "hoffnung", "hoffnungen": "hoffnung", "hoffnungsarme": "hoffnungsarm", "hoffnungsfaser": "hoffnungsfas", "hoffnungsfreudig": "hoffnungsfreud", "hoffnungslos": "hoffnungslos", "hoffnungslose": "hoffnungslos", "hoffnungsloser": "hoffnungslos", "hoffnungslosigkeit": "hoffnungslos", "hoffnungsreichem": "hoffnungsreich", "hoffnungsvolle": "hoffnungsvoll", "hoffte": "hofft", "hofhaltung": "hofhalt", "hofleben": "hofleb", "hofleute": "hofleut", "höflich": "hoflich", "höfliche": "hoflich", "höflichem": "hoflich", "höflichen": "hoflich", "höflicher": "hoflich", "höflichkeit": "hoflich", "höflichkeiten": "hoflich", "hofrat": "hofrat", "hofraum": "hofraum", "hofstaats": "hofstaat", "höft": "hoft", "hofwinkels": "hofwinkel", "höh": "hoh", "hohe": "hoh", "höhe": "hoh", "hoheit": "hoheit", "hohem": "hoh", "hohen": "hoh", "höhen": "hoh", "höhenflüge": "hohenflug", "höhenlüften": "hohenluft", "höhenstrichen": "hohenstrich", "höhepunktes": "hohepunkt", "hoher": "hoh", "höher": "hoh", "höhere": "hoh", "höherem": "hoh", "höheren": "hoh", "höherer": "hoh", "höheres": "hoh", "höhern": "hoh", "hohes": "hoh", "hohfentlich": "hohfent", "hohle": "hohl", "hohlem": "hohl", "hohlen": "hohl", "höhlen": "hohl", "hohler": "hohl", "hohles": "hohl", "höhlung": "hohlung", "hohlziegel": "hohlziegel", "hohn": "hohn", "höhnisch": "hohnisch", "höhnischen": "hohnisch", "höhnisches": "hohnisch", "höhnten": "hohnt", "hoho": "hoho", "höi": "hoi", "hol": "hol", "hold": "hold", "holde": "hold", "holden": "hold", "holdes": "hold", "holdselig": "holdsel", "holdseligste": "holdsel", "hole": "hol", "holen": "hol", "holimanns": "holimann", "holla": "holla", "holle": "holl", "hölle": "holl", "höllen": "holl", "höllenfeuer": "hollenfeu", "höllengeister": "hollengeist", "höllengeistern": "hollengeist", "höllenlärm": "hollenlarm", "höllisch": "hollisch", "höllische": "hollisch", "höllischem": "hollisch", "höllischen": "hollisch", "höllischer": "hollisch", "höllisches": "hollisch", "holocaust": "holocaust", "holsteiner": "holstein", "holt": "holt", "holte": "holt", "holten": "holt", "holterdiepolter": "holterdiepolt", "holunderbäume": "holunderbaum", "holz": "holz", "holzbank": "holzbank", "hölzchen": "holzch", "holzdieb": "holzdieb", "holze": "holz", "hölzerne": "holzern", "hölzernen": "holzern", "hölzerner": "holzern", "hölzernes": "holzern", "holzes": "holz", "holzgetäfel": "holzgetafel", "holzhauer": "holzhau", "holzkannen": "holzkann", "holzkeil": "holzkeil", "holzknecht": "holzknecht", "holzknechte": "holzknecht", "holzkreuz": "holzkreuz", "holzscheite": "holzscheit", "holzschwert": "holzschwert", "holzstall": "holzstall", "holzstoss": "holzstoss", "holztisch": "holztisch", "holztreppe": "holztrepp", "home": "hom", "homepage": "homepag", "homers": "hom", "hon": "hon", "honecker": "honeck", "honetter": "honett", "honig": "honig", "honigfässchen": "honigfassch", "honigfäßchen": "honigfassch", "honigs": "honig", "honigscheibe": "honigscheib", "honneurs": "honneur", "honorar": "honorar", "hooch": "hooch", "hopp": "hopp", "hoppelt": "hoppelt", "hoppla": "hoppla", "hopsele": "hopsel", "hör": "hor", "hörbar": "horbar", "horche": "horch", "horchen": "horch", "horcht": "horcht", "horchte": "horcht", "horchten": "horcht", "höre": "hor", "horeb": "horeb", "hören": "hor", "hörend": "horend", "hörende": "horend", "hörer": "hor", "hörerbrief": "horerbrief", "hörerin": "horerin", "hörest": "hor", "höret": "horet", "hörfolge": "horfolg", "horizonte": "horizont", "horlinger": "horling", "horn": "horn", "hornbläsern": "hornblas", "hörnchen": "hornch", "hörner": "horn", "hörnern": "horn", "hornstriegeln": "hornstriegeln", "horon": "horon", "hörrohr": "horrohr", "hörspielabteilung": "horspielabteil", "horst": "horst", "hörst": "horst", "horste": "horst", "hört": "hort", "hörte": "hort", "hörten": "hort", "hörtest": "hort", "hos": "hos", "hosas": "hosas", "hose": "hos", "hosen": "hos", "hosengürtel": "hosengurtel", "hosenträgern": "hosentrag", "hosianna": "hosianna", "hospiz": "hospiz", "hospizgruppe": "hospizgrupp", "hotel": "hotel", "hoteltür": "hoteltur", "hub": "hub", "hüben": "hub", "huber": "hub", "hubertus": "hubertus", "hubertusjüngern": "hubertusjung", "hübsch": "hubsch", "hübsche": "hubsch", "hübschen": "hubsch", "hübscher": "hubsch", "hübsches": "hubsch", "huckepack": "huckepack", "huckige": "huckig", "hudelkopf": "hudelkopf", "hudelvölkchen": "hudelvolkch", "huf": "huf", "hufe": "huf", "hufeisentreppe": "hufeisentrepp", "hufen": "huf", "hüfte": "huft", "hüften": "huft", "hügel": "hugel", "hügelchen": "hugelch", "hügeligen": "hugel", "hügeliges": "hugel", "hügeln": "hugeln", "hügels": "hugel", "huglieme": "hugliem", "huhn": "huhn", "hühner": "huhn", "hühnerjagd": "huhnerjagd", "hühnern": "huhn", "hühnerschwärmen": "huhnerschwarm", "huhnes": "huhn", "huhu": "huhu", "hui": "hui", "huld": "huld", "huldigten": "huldigt", "huldreich": "huldreich", "huldreichen": "huldreich", "hülfe": "hulf", "hülflos": "hulflos", "hülle": "hull", "hüllen": "hull", "hüllte": "hullt", "hülse": "huls", "humane": "human", "humanen": "human", "humanismus": "humanismus", "humanistischen": "humanist", "humanitäre": "humanitar", "humanitären": "humanitar", "hume": "hum", "humes": "hum", "humische": "humisch", "humkoke": "humkok", "hummeln": "hummeln", "humor": "humor", "humorlose": "humorlos", "humus": "humus", "hund": "hund", "hunde": "hund", "hunden": "hund", "hunderl": "hunderl", "hundert": "hundert", "hundertdreiunddreissig": "hundertdreiunddreiss", "hundertdreiunddreißig": "hundertdreiunddreiss", "hunderte": "hundert", "hunderten": "hundert", "hunderterlei": "hunderterlei", "hundertfach": "hundertfach", "hundertfacher": "hundertfach", "hundertfältig": "hundertfalt", "hundertmal": "hundertmal", "hundertsiebenunddreissig": "hundertsiebenunddreiss", "hundertsiebenunddreißig": "hundertsiebenunddreiss", "hundertsten": "hundert", "hundertstimmigem": "hundertstimm", "hunderttausend": "hunderttaus", "hunderttausende": "hunderttaus", "hundertundfünfzig": "hundertundfunfz", "hundertvierundvierzig": "hundertvierundvierz", "hundertvierzig": "hundertvierz", "hundertzwanzig": "hundertzwanz", "hundes": "hund", "hundeseele": "hundeseel", "hundl": "hundl", "hündlein": "hundlein", "hundsfott": "hundsfott", "hundsseele": "hundsseel", "hunger": "hung", "hungerlohn": "hungerlohn", "hungern": "hung", "hungers": "hung", "hungerte": "hungert", "hungrig": "hungrig", "hungrige": "hungrig", "hungrigen": "hungrig", "hungriger": "hungrig", "hüpfende": "hupfend", "hüpfenden": "hupfend", "hüpfte": "hupft", "hupften": "hupft", "hüpften": "hupft", "hupschi": "hupschi", "hürde": "hurd", "hürden": "hurd", "hure": "hur", "hurend": "hurend", "hurerei": "hurerei", "hurereien": "hurerei", "hurra": "hurra", "hurtig": "hurtig", "husaren": "husar", "husch": "husch", "huschen": "husch", "huschte": "huscht", "huschten": "huscht", "hüseyin": "huseyin", "hüstelte": "hustelt", "husten": "hust", "hut": "hut", "hüt": "hut", "hütchen": "hutch", "hute": "hut", "hüte": "hut", "hüten": "hut", "hüter": "hut", "hüterbub": "huterbub", "hütet": "hutet", "hütete": "hutet", "hüteten": "hutet", "hütl": "hutl", "hütte": "hutt", "hütten": "hutt", "hüttenfest": "huttenf", "huwiler": "huwil", "hv": "hv", "hyazinth": "hyazinth", "hyazinthfarbe": "hyazinthfarb", "hypochondrischen": "hypochondr", "hypothekschulden": "hypothekschuld", "hypothese": "hypothes", "hypothesen": "hypothes", "hypothetische": "hypothet", "hysterisch": "hyster", "i": "i", "iang": "iang", "ich": "ich", "ichs": "ich", "idea": "idea", "ideal": "ideal", "ideale": "ideal", "idealisch": "ideal", "idealischen": "ideal", "idee": "ide", "ideen": "ide", "ideenkiste": "ideenkist", "ideenulrich": "ideenulrich", "identische": "ident", "identität": "identitat", "identitizierung": "identitizier", "ideologisierung": "ideologisier", "idion": "idion", "idioten": "idiot", "ieh": "ieh", "ierte": "iert", "igel": "igel", "igelbürste": "igelburst", "ignorieren": "ignori", "ihd": "ihd", "ihm": "ihm", "ihn": "ihn", "ihnen": "ihn", "ihr": "ihr", "ihre": "ihr", "ihrem": "ihr", "ihren": "ihr", "ihrer": "ihr", "ihres": "ihr", "ihrethalben": "ihrethalb", "ihretwegen": "ihretweg", "ihrige": "ihrig", "ihrigen": "ihrig", "ihro": "ihro", "ii": "ii", "iii": "iii", "ikea": "ikea", "illa": "illa", "ille": "ill", "illegal": "illegal", "illegalen": "illegal", "illud": "illud", "illumination": "illumination", "illusion": "illusion", "illusorisch": "illusor", "im": "im", "image": "imag", "imago": "imago", "imbiss": "imbiss", "imgleichen": "imgleich", "immanent": "immanent", "immanuel": "immanuel", "immaterielle": "immateriell", "immateriellen": "immateriell", "immenstand": "immenstand", "immer": "imm", "immerdar": "immerdar", "immerfort": "immerfort", "immergrünen": "immergrun", "immerhin": "immerhin", "immerwährend": "immerwahr", "immerwährende": "immerwahr", "immerwährendes": "immerwahr", "immerzu": "immerzu", "imogen": "imog", "imperativ": "imperativ", "imperative": "imperativ", "imperativen": "imperativ", "imperativs": "imperativs", "impressum": "impressum", "impulse": "impuls", "imstande": "imstand", "in": "in", "inan": "inan", "inbegriff": "inbegriff", "inbesondere": "inbesond", "inbrunst": "inbrun", "inbrünstig": "inbrunst", "indem": "ind", "indes": "ind", "indessen": "indess", "indianer": "indian", "indie": "indi", "indien": "indi", "indiennekleid": "indiennekleid", "indierinnen": "indierinn", "indifferent": "indifferent", "indirekt": "indirekt", "indischen": "indisch", "indobritischen": "indobrit", "indoles": "indol", "indulgent": "indulgent", "industrie": "industri", "ineinander": "ineinand", "ineinandergefahren": "ineinandergefahr", "inernet": "inernet", "infam": "infam", "infanteriegewehr": "infanteriegewehr", "infanteriekaserne": "infanteriekasern", "inferiore": "inferior", "inferiorität": "inferioritat", "info": "info", "infolge": "infolg", "infolgedessen": "infolgedess", "information": "information", "informationen": "information", "informationsbeauftragte": "informationsbeauftragt", "informieren": "informi", "informiert": "informiert", "infos": "infos", "ingenio": "ingenio", "ingrimm": "ingrimm", "ingwer": "ingw", "inhaber": "inhab", "inhalt": "inhalt", "inhalte": "inhalt", "inhaltlich": "inhalt", "inhalts": "inhalt", "inhaltsverzeichnissen": "inhaltsverzeichnis", "initiative": "initiativ", "inland": "inland", "inländischen": "inland", "inlandsarbeit": "inlandsarbeit", "inmitten": "inmitt", "inne": "inn", "innegewordene": "innegeword", "innegewordenen": "innegeword", "innehalten": "innehalt", "innehat": "innehat", "innehielt": "innehielt", "innehielten": "innehielt", "innen": "inn", "innere": "inn", "innerem": "inn", "inneren": "inn", "innerer": "inn", "inneres": "inn", "innerhalb": "innerhalb", "innerlich": "inn", "innerliche": "inn", "innerlichen": "inn", "innerlicher": "inn", "innerlichere": "inn", "innerlicheres": "inn", "innerliches": "inn", "innern": "inn", "innerste": "innerst", "innerstem": "innerst", "innersten": "innerst", "innerster": "innerst", "innerstes": "innerst", "innewerden": "innewerd", "innewerdend": "innewerd", "innewerdende": "innewerd", "innewerdens": "innewerd", "innewerdungen": "innewerd", "innewohnen": "innewohn", "innewohnend": "innewohn", "innewohnt": "innewohnt", "innewohnte": "innewohnt", "innewurde": "innewurd", "innezuwerden": "innezuwerd", "innig": "innig", "innige": "innig", "innigen": "innig", "inniger": "innig", "innigere": "innig", "innigkeit": "innig", "inniglich": "innig", "innigsten": "innig", "inningst": "inning", "innre": "innr", "ins": "ins", "insbesondere": "insbesond", "insbesondereeine": "insbesondereein", "insbesonders": "insbesond", "inschrift": "inschrift", "insekt": "insekt", "insekten": "insekt", "insektenbefall": "insektenbefall", "insel": "insel", "inselgruppe": "inselgrupp", "inseln": "inseln", "inseratenkampagne": "inseratenkampagn", "inservit": "inservit", "insgeheim": "insgeheim", "insgesamt": "insgesamt", "insitam": "insitam", "insofern": "insof", "insonderheit": "insond", "insonderlich": "insond", "insoweit": "insoweit", "inspiration": "inspiration", "instant": "instant", "instinkt": "instinkt", "instinkte": "instinkt", "instinkten": "instinkt", "instinktiv": "instinktiv", "institut": "institut", "institution": "institution", "institutionen": "institution", "instituts": "institut", "instrument": "instrument", "instrumente": "instrument", "instrumenten": "instrument", "inszenierte": "inszeniert", "integration": "integration", "intellecta": "intellecta", "intellectuales": "intellectual", "intellektuell": "intellektuell", "intellektuelle": "intellektuell", "intellektuellem": "intellektuell", "intellektuellen": "intellektuell", "intellektuelles": "intellektuell", "intelligent": "intelligent", "intelligente": "intelligent", "intelligenz": "intelligenz", "intelligenzen": "intelligenz", "intelligibele": "intelligibel", "intelligibelen": "intelligibel", "intendant": "intendant", "intendanten": "intendant", "intensivität": "intensivitat", "inter": "int", "interessant": "interessant", "interessante": "interessant", "interessanten": "interessant", "interessanter": "interessant", "interessanterweise": "interessanterweis", "interessantes": "interessant", "interesse": "interess", "interessen": "interess", "interessenvertretung": "interessenvertret", "interesses": "interess", "interessieren": "interessi", "interessiert": "interessiert", "interessierte": "interessiert", "interessierten": "interessiert", "interesssant": "interesssant", "interiori": "interiori", "interius": "interius", "intermezzo": "intermezzo", "international": "international", "internationale": "international", "internationalen": "international", "internes": "intern", "internet": "internet", "internetdie": "internetdi", "interneteine": "internetein", "internetseiten": "internetseit", "internetsurfenam": "internetsurfenam", "interpretation": "interpretation", "interpretieren": "interpreti", "interview": "interview", "intimeren": "intim", "inwendig": "inwend", "inwendige": "inwend", "inwendigem": "inwend", "inwendigen": "inwend", "inwendiger": "inwend", "inwendigere": "inwend", "inwendigerem": "inwend", "inwendigeren": "inwend", "inwendigeres": "inwend", "inwendiges": "inwend", "inwendigst": "inwend", "inwendigste": "inwend", "inwendigsten": "inwend", "inwendigster": "inwend", "inwieweit": "inwieweit", "inzichten": "inzicht", "inzwischen": "inzwisch", "ipso": "ipso", "irad": "irad", "irard": "irard", "irdene": "ird", "irdenen": "ird", "irdisch": "irdisch", "irdische": "irdisch", "irdischen": "irdisch", "irdisches": "irdisch", "irdisdien": "irdisdi", "irgend": "irgend", "irgendein": "irgendein", "irgendeine": "irgendein", "irgendeinem": "irgendein", "irgendeinen": "irgendein", "irgendeiner": "irgendein", "irgendeines": "irgendein", "irgendetwas": "irgendetwas", "irgendwann": "irgendwann", "irgendwelche": "irgendwelch", "irgendwelchen": "irgendwelch", "irgendwelches": "irgendwelch", "irgendwie": "irgendwi", "irgendwo": "irgendwo", "irland": "irland", "irländischen": "irland", "irn": "irn", "ironie": "ironi", "ironisch": "iron", "ironischen": "iron", "irre": "irr", "irreführendem": "irrefuhr", "irregeführt": "irregefuhrt", "irregeführte": "irregefuhrt", "irreleitend": "irreleit", "irren": "irr", "irrenden": "irrend", "irret": "irret", "irrgänger": "irrgang", "irrlehre": "irrlehr", "irrlehren": "irrlehr", "irrlichter": "irrlicht", "irrlichterfischchen": "irrlichterfischch", "irrsinnig": "irrsinn", "irrt": "irrt", "irrte": "irrt", "irrten": "irrt", "irrtum": "irrtum", "irrtümer": "irrtum", "irrtümern": "irrtum", "irrwegen": "irrweg", "is": "is", "isabelle": "isabell", "isabellen": "isabell", "isabellengespann": "isabellengespann", "isabellenpferden": "isabellenpferd", "isgard": "isgard", "isherwood": "isherwood", "ismail": "ismail", "isolation": "isolation", "isolationistische": "isolationist", "isoliert": "isoliert", "israel": "israel", "israeliten": "israelit", "israelitische": "israelit", "israelitischen": "israelit", "israels": "israel", "iss": "iss", "issest": "iss", "isset": "isset", "isst": "isst", "ißt": "isst", "ist": "ist", "istanbul": "istanbul", "istanbuler": "istanbul", "ists": "ist", "italian": "italian", "italien": "itali", "italiener": "itali", "italienisch": "italien", "italienische": "italien", "italienischen": "italien", "italienisches": "italien", "item": "item", "ithamar": "ithamar", "iv": "iv", "ix": "ix", "izmir": "izmir", "j": "j", "ja": "ja", "jaaa": "jaaa", "jabal": "jabal", "jaccoud": "jaccoud", "jach": "jach", "jache": "jach", "jachen": "jach", "jachenau": "jachenau", "jachenauer": "jachenau", "jacher": "jach", "jachin": "jachin", "jachsten": "jach", "jacke": "jack", "jacobi": "jacobi", "jadwiga": "jadwiga", "jaels": "jael", "jagd": "jagd", "jagdart": "jagdart", "jagdaufseher": "jagdaufseh", "jagdausflügen": "jagdausflug", "jagdausrüstung": "jagdausrust", "jagdführer": "jagdfuhr", "jagdgast": "jagdgast", "jagdgebieten": "jagdgebiet", "jagdgehilf": "jagdgehilf", "jagdgehilfe": "jagdgehilf", "jagdgehilfen": "jagdgehilf", "jagdgeräte": "jagdgerat", "jagdgeschichten": "jagdgeschicht", "jagdgrenze": "jagdgrenz", "jagdgrund": "jagdgrund", "jagdherr": "jagdherr", "jagdhütte": "jagdhutt", "jagdkarte": "jagdkart", "jagdtrophäen": "jagdtropha", "jagdwagen": "jagdwag", "jagen": "jag", "jagend": "jagend", "jagender": "jagend", "jager": "jag", "jäger": "jag", "jägerarbeit": "jagerarbeit", "jägerei": "jagerei", "jägerheim": "jagerheim", "jagerischen": "jager", "jägerlatein": "jagerlatein", "jägerleben": "jagerleb", "jägermässigem": "jagermass", "jagern": "jag", "jägern": "jag", "jägerohren": "jagerohr", "jägerruhe": "jagerruh", "jägers": "jag", "jägersleute": "jagersleut", "jägersmann": "jagersmann", "jägersmanne": "jagersmann", "jägersprache": "jagersprach", "jägerssohn": "jagerssohn", "jaget": "jaget", "jagt": "jagt", "jagte": "jagt", "jah": "jah", "jäh": "jah", "jähen": "jah", "jähes": "jah", "jählings": "jahling", "jahr": "jahr", "jahraus": "jahraus", "jährchen": "jahrch", "jahre": "jahr", "jahrein": "jahrein", "jahrelang": "jahrelang", "jahren": "jahr", "jahres": "jahr", "jahresbericht": "jahresbericht", "jahresrechnung": "jahresrechn", "jahresrente": "jahresrent", "jahrestagung": "jahrestag", "jahreszahlen": "jahreszahl", "jahreszeit": "jahreszeit", "jahrhundert": "jahrhundert", "jahrhunderte": "jahrhundert", "jahrhunderten": "jahrhundert", "jahrhunderts": "jahrhundert", "jährige": "jahrig", "jährigen": "jahrig", "jahrl": "jahrl", "jährlich": "jahrlich", "jährliche": "jahrlich", "jahrln": "jahrln", "jahrmarkt": "jahrmarkt", "jahrmärkte": "jahrmarkt", "jahrs": "jahr", "jahrshoffnungen": "jahrshoffn", "jahrszeit": "jahrszeit", "jahrtausendwende": "jahrtausendw", "jahrzahlen": "jahrzahl", "jahrzehnten": "jahrzehnt", "jähsten": "jahst", "jähzorn": "jahzorn", "jähzornig": "jahzorn", "jähzornige": "jahzorn", "jähzornigen": "jahzorn", "jähzorniger": "jahzorn", "jaja": "jaja", "jakob": "jakob", "jakobiner": "jakobin", "jakobs": "jakob", "jakobsbrunnen": "jakobsbrunn", "jamin": "jamin", "jammer": "jamm", "jammerbild": "jammerbild", "jammerfalten": "jammerfalt", "jammergeschrei": "jammergeschrei", "jämmerlich": "jamm", "jämmerlichem": "jamm", "jämmerlichen": "jamm", "jämmerlicher": "jamm", "jämmerliches": "jamm", "jämmerlichste": "jamm", "jammern": "jamm", "jammernd": "jammernd", "jammerpipps": "jammerpipps", "jammerte": "jammert", "januar": "januar", "janzer": "janz", "japanischer": "japan", "japheth": "japheth", "jappender": "jappend", "jared": "jared", "jareds": "jared", "jaspis": "jaspis", "jätete": "jatet", "jatz": "jatz", "jauchzen": "jauchz", "jauchzend": "jauchzend", "jauchzende": "jauchzend", "jauchzer": "jauchz", "jauchzet": "jauchzet", "jaulte": "jault", "javan": "javan", "jawohl": "jawohl", "je": "je", "jean": "jean", "jebusiter": "jebusit", "jebusiters": "jebusit", "jede": "jed", "jedem": "jed", "jeden": "jed", "jedenfalls": "jedenfall", "jeder": "jed", "jedermann": "jedermann", "jederzeit": "jederzeit", "jedes": "jed", "jedesmal": "jedesmal", "jedoch": "jedoch", "jedsmal": "jedsmal", "jedweden": "jedwed", "jedweder": "jedwed", "jefreut": "jefreut", "jegliche": "jeglich", "jeglichem": "jeglich", "jeglichen": "jeglich", "jeglicher": "jeglich", "jegliches": "jeglich", "jeher": "jeh", "jehorsamst": "jehorsam", "jehova": "jehova", "jehovah": "jehovah", "jehovahs": "jehovah", "jehovas": "jehovas", "jehovih": "jehovih", "jehudah": "jehudah", "jehudahs": "jehudah", "jehus": "jehus", "jekühlte": "jekuhlt", "jelek": "jelek", "jemals": "jemal", "jemand": "jemand", "jemandem": "jemand", "jemanden": "jemand", "jemandes": "jemand", "jemands": "jemand", "jemuel": "jemuel", "jene": "jen", "jenem": "jen", "jenen": "jen", "jener": "jen", "jenes": "jen", "jenseitigen": "jenseit", "jenseits": "jenseit", "jereist": "jereist", "jerem": "jer", "jeremias": "jeremias", "jerusalem": "jerusal", "jerusalems": "jerusalem", "jes": "jes", "jesaja": "jesaja", "jesajas": "jesajas", "jesses": "jess", "jesu": "jesu", "jesum": "jesum", "jesus": "jesus", "jethro": "jethro", "jethros": "jethros", "jetzigen": "jetzig", "jetziges": "jetzig", "jetzo": "jetzo", "jetzt": "jetzt", "jeweilige": "jeweil", "jeweiligen": "jeweil", "jeweils": "jeweil", "jewish": "jewish", "jewriav": "jewriav", "jez": "jez", "jezuweilen": "jezuweil", "jhdt": "jhdt", "jim": "jim", "jisaschar": "jisaschar", "jischak": "jischak", "jischaks": "jischak", "jischmael": "jischmael", "jischmaels": "jischmael", "jizhar": "jizhar", "jizhars": "jizhar", "jletscherhafter": "jletscherhaft", "jobbt": "jobbt", "jobbte": "jobbt", "jobs": "job", "jobst": "jobst", "jobsten": "jobst", "jobstens": "jobst", "joch": "joch", "jochebed": "jochebed", "joches": "joch", "jochs": "joch", "jodelläufen": "jodellauf", "jodler": "jodl", "joel": "joel", "joh": "joh", "johann": "johann", "johannes": "johann", "johannis": "johannis", "johlend": "johlend", "john": "john", "jon": "jon", "jona": "jona", "jonas": "jonas", "jonathan": "jonathan", "jöppchens": "joppch", "joppe": "jopp", "joppentasche": "joppentasch", "jordan": "jordan", "jordans": "jordan", "jörg": "jorg", "jos": "jos", "josef": "josef", "joseph": "joseph", "josephs": "joseph", "josias": "josias", "josua": "josua", "josuas": "josuas", "jota": "jota", "journalisten": "journalist", "jreuliche": "jreulich", "juan": "juan", "jubal": "jubal", "jubel": "jubel", "jubelfeier": "jubelfei", "jubelfreude": "jubelfreud", "jubelnd": "jubelnd", "jubelnder": "jubelnd", "jubelsang": "jubelsang", "jubelschrei": "jubelschrei", "jubelt": "jubelt", "jubelten": "jubelt", "jubilieren": "jubili", "jubilierende": "jubilier", "juble": "jubl", "juchezt": "juchezt", "juchheen": "juchhe", "juchhei": "juchhei", "juchzend": "juchzend", "jückt": "juckt", "judah": "judah", "judas": "judas", "jude": "jud", "juden": "jud", "judentum": "judentum", "jüdisch": "judisch", "jüdische": "judisch", "jüdischen": "judisch", "jüdischer": "judisch", "jüdisches": "judisch", "judith": "judith", "judithsie": "judithsi", "jugend": "jugend", "jugendarbeit": "jugendarbeit", "jugendgarten": "jugendgart", "jugendgespielen": "jugendgespiel", "jugendheimat": "jugendheimat", "jugendliche": "jugend", "jugendlichen": "jugend", "jugendlicher": "jugend", "jugendlichkeit": "jugend", "jugendschutzmassnahmen": "jugendschutzmassnahm", "jugendweihe": "jugendweih", "jugendzeit": "jugendzeit", "juju": "juju", "juli": "juli", "julia": "julia", "julie": "juli", "julimonat": "julimonat", "julisonne": "julisonn", "julitag": "julitag", "julius": "julius", "juliusstrasse": "juliusstrass", "juliusstraße": "juliusstrass", "jumoeidev": "jumoeidev", "jung": "jung", "junge": "jung", "jungem": "jung", "jungen": "jung", "jungeninternat": "jungeninternat", "junger": "jung", "jünger": "jung", "jüngere": "jung", "jüngern": "jung", "junges": "jung", "jungfer": "jungf", "jungfern": "jungf", "jungfilmer": "jungfilm", "jungfrau": "jungfrau", "jungfrauen": "jungfrau", "jungfrauenalters": "jungfrauenalt", "jungfräulein": "jungfraulein", "jungfrauschaft": "jungfrauschaft", "junggesellen": "junggesell", "jungholz": "jungholz", "jüngling": "jungling", "jünglinge": "jungling", "jünglings": "jungling", "jünglingsalter": "junglingsalt", "jüngste": "jung", "jüngsten": "jung", "jüngster": "jung", "jungunternehmer": "jungunternehm", "jungweibe": "jungweib", "juni": "juni", "junker": "junk", "jüppe": "jupp", "jürgen": "jurg", "juristen": "jurist", "juristische": "jurist", "juristischen": "jurist", "just": "just", "juvenes": "juv", "k": "k", "kabine": "kabin", "kabylen": "kabyl", "kachelofen": "kachelof", "käfer": "kaf", "käferchen": "kaferch", "käferherzens": "kaferherz", "käferlein": "kaferlein", "käfermann": "kafermann", "käfermatz": "kafermatz", "käfern": "kaf", "käfertierchen": "kafertierch", "kaffee": "kaffe", "kaffeegesellschaften": "kaffeegesellschaft", "kaffeehaus": "kaffeehaus", "kaffeehauses": "kaffeehaus", "kaffeekanne": "kaffeekann", "kaffeekannen": "kaffeekann", "kaffeeklatsch": "kaffeeklatsch", "kaffeelöffelchen": "kaffeeloffelch", "kaffeetasse": "kaffeetass", "käfig": "kafig", "kafka": "kafka", "kahl": "kahl", "kahle": "kahl", "kahlen": "kahl", "kahlköpfiger": "kahlkopf", "kahn": "kahn", "kähnchens": "kahnch", "kahne": "kahn", "kai": "kai", "kain": "kain", "kainiten": "kainit", "kains": "kain", "kaiser": "kais", "kaiserlichen": "kais", "kaiserreich": "kaiserreich", "kaiserstadt": "kaiserstadt", "kakan": "kakan", "kakaobüchse": "kakaobuchs", "kalaschnikows": "kalaschnikows", "kalb": "kalb", "kalben": "kalb", "kälbern": "kalb", "kälberstücke": "kalberstuck", "kalbes": "kalb", "kalender": "kalend", "kalifornien": "kaliforni", "kalk": "kalk", "kalkerde": "kalkerd", "kalmus": "kalmus", "kalt": "kalt", "kaltblütig": "kaltblut", "kalte": "kalt", "kälte": "kalt", "kalten": "kalt", "kaltenkellerschlag": "kaltenkellerschlag", "kalter": "kalt", "kälter": "kalt", "kaltes": "kalt", "kam": "kam", "käm": "kam", "kämbel": "kambel", "käme": "kam", "kamel": "kamel", "kamele": "kamel", "kamelen": "kamel", "kamelhaaren": "kamelhaar", "kamen": "kam", "kämen": "kam", "kameraden": "kamerad", "kameraderie": "kameraderi", "kameradinnen": "kameradinn", "kamet": "kamet", "kaminer": "kamin", "kaminfeger": "kaminfeg", "kamins": "kamin", "kamm": "kamm", "kämma": "kamma", "kammacher": "kammach", "kammachergeschäft": "kammachergeschaft", "kammachergeschäfts": "kammachergeschaft", "kammachermeister": "kammachermeist", "kämme": "kamm", "kämmen": "kamm", "kammer": "kamm", "kammerbodens": "kammerbod", "kämmerchen": "kammerch", "kammerdiener": "kammerdi", "kammerfrau": "kammerfrau", "kammerjungfer": "kammerjungf", "kammern": "kamm", "kämmet": "kammet", "kammfabrikchen": "kammfabrikch", "kammgräsern": "kammgras", "kammhöhe": "kammhoh", "kammmacher": "kammmach", "kämmte": "kammt", "kammwaren": "kammwar", "kammwiesen": "kammwies", "kampagne": "kampagn", "kampf": "kampf", "kampfe": "kampf", "kämpfe": "kampf", "kämpfen": "kampf", "kämpfende": "kampfend", "kämpfer": "kampf", "kampfes": "kampf", "kampflust": "kampflust", "kampfplatz": "kampfplatz", "kampfplatze": "kampfplatz", "kämpft": "kampft", "kampftages": "kampftag", "kämpfte": "kampft", "kampfwahlen": "kampfwahl", "kampierten": "kampiert", "kanaan": "kanaan", "kanaaniter": "kanaanit", "kanaanitin": "kanaanitin", "kanaans": "kanaan", "kanal": "kanal", "kanäle": "kanal", "kanapee": "kanape", "kanarienkäficht": "kanarienkaficht", "kandidat": "kandidat", "kaninchen": "kaninch", "kann": "kann", "kännchen": "kannch", "kanne": "kann", "kannegiesser": "kannegiess", "kannegiesserin": "kannegiesserin", "kannegiessern": "kannegiess", "kannen": "kann", "kannst": "kann", "kannt": "kannt", "kannte": "kannt", "kannten": "kannt", "kanone": "kanon", "kanonenkügelchen": "kanonenkugelch", "kanonenkugeln": "kanonenkugeln", "kanonenlauf": "kanonenlauf", "kanonenmündung": "kanonenmund", "kanonenrohres": "kanonenrohr", "kanonenwischer": "kanonenw", "kanonik": "kanon", "kant": "kant", "kante": "kant", "kanten": "kant", "kantine": "kantin", "kantinenraumes": "kantinenraum", "kanton": "kanton", "kantonalkirche": "kantonalkirch", "kantonalkirchen": "kantonalkirch", "kantonalsouveränetät": "kantonalsouveranetat", "kantone": "kanton", "kantons": "kanton", "kantonsrats": "kantonsrat", "kanzel": "kanzel", "kanzlei": "kanzlei", "kanzleidirektor": "kanzleidirektor", "kanzleien": "kanzlei", "kap": "kap", "kapital": "kapital", "kapitale": "kapital", "kapitalist": "kapitalist", "kapitaltier": "kapitalti", "kapitän": "kapitan", "kapitel": "kapitel", "kapiteln": "kapiteln", "kapitels": "kapitel", "kapitelsherren": "kapitelsherr", "kappe": "kapp", "kappenzipfel": "kappenzipfel", "käpplein": "kapplein", "kapriolen": "kapriol", "kapsel": "kapsel", "kaputt": "kaputt", "kaputtgehen": "kaputtgeh", "karaffe": "karaff", "karaffen": "karaff", "karbonarimantel": "karbonarimantel", "kardinäle": "kardinal", "karfunkelsteinen": "karfunkelstein", "karikiere": "kariki", "karl": "karl", "karmi": "karmi", "karneolfarbigen": "karneolfarb", "karneval": "karneval", "karpfen": "karpf", "karpfenururgrosspapa": "karpfenururgrosspapa", "karren": "karr", "karriere": "karri", "karten": "kart", "kartenschlagen": "kartenschlag", "kartoffel": "kartoffel", "kartoffelacker": "kartoffelack", "kartoffelbrei": "kartoffelbrei", "kartoffelfeld": "kartoffelfeld", "kartoffelgebirge": "kartoffelgebirg", "kartoffeln": "kartoffeln", "kartoffelsuppe": "kartoffelsupp", "karton": "karton", "kartons": "karton", "karussell": "karussell", "käse": "kas", "käsen": "kas", "kasia": "kasia", "kaspar": "kaspar", "kasparn": "kasparn", "käsrinde": "kasrind", "kassberger": "kassberg", "kasse": "kass", "kassieren": "kassi", "kassierer": "kassi", "kastanie": "kastani", "kastanien": "kastani", "kastanienbäume": "kastanienbaum", "kastanienblättern": "kastanienblatt", "kastanienritter": "kastanienritt", "kästchen": "kastch", "kästchens": "kastch", "kasten": "kast", "kastens": "kast", "kasuale": "kasual", "kasualverschiebung": "kasualverschieb", "kasus": "kasus", "kasweiss": "kasweiss", "katalog": "katalog", "kataskeuazein": "kataskeuazein", "kataskeuazomen": "kataskeuazom", "katastrophal": "katastrophal", "katastrophe": "katastroph", "katastrophen": "katastroph", "katastropheneinsatz": "katastropheneinsatz", "katechismus": "katechismus", "kategorie": "kategori", "kategorien": "kategori", "kategorisch": "kategor", "kategorische": "kategor", "kategorischen": "kategor", "kategorischer": "kategor", "kater": "kat", "katerliede": "katerlied", "katern": "kat", "katers": "kat", "käthchen": "kathch", "kathedrale": "kathedral", "kathinka": "kathinka", "katholik": "kathol", "katholische": "kathol", "katholischen": "kathol", "katholischer": "kathol", "kattun": "kattun", "kattunhalstücher": "kattunhalstuch", "katz": "katz", "kätzchen": "katzch", "kätzchens": "katzch", "katze": "katz", "katzen": "katz", "katzenschmer": "katzenschm", "katzensprung": "katzenspr", "katzenwürde": "katzenwurd", "kätzin": "katzin", "kätzlein": "katzlein", "katzmann": "katzmann", "kauen": "kau", "kauerte": "kauert", "kauf": "kauf", "kaufe": "kauf", "kaufen": "kauf", "käufer": "kauf", "kauffahrer": "kauffahr", "kaufherr": "kaufherr", "kaufleute": "kaufleut", "käuflich": "kauflich", "kaufmann": "kaufmann", "kaufmanns": "kaufmann", "kaufmannschaft": "kaufmannschaft", "kaufmannsnamen": "kaufmannsnam", "kaufpreis": "kaufpreis", "kaufpreises": "kaufpreis", "kaufst": "kauf", "kauft": "kauft", "kaufte": "kauft", "kaum": "kaum", "kausalbegriffe": "kausalbegriff", "kausalität": "kausalitat", "kausalverbindung": "kausalverbind", "kausalverhältnisse": "kausalverhaltnis", "kaute": "kaut", "kaution": "kaution", "käuze": "kauz", "käuzen": "kauz", "käuzlein": "kauzlein", "kavalier": "kavali", "kavaliere": "kavali", "kaweida": "kaweida", "kdv": "kdv", "keck": "keck", "kecken": "keck", "keckes": "keck", "kedars": "kedar", "kegel": "kegel", "kegelbahn": "kegelbahn", "kegelbahnen": "kegelbahn", "kegelpartie": "kegelparti", "kegelspiel": "kegelspiel", "kehath": "kehath", "kehaths": "kehath", "kehats": "kehat", "kehle": "kehl", "kehlen": "kehl", "kehr": "kehr", "kehre": "kehr", "kehren": "kehr", "kehret": "kehret", "kehricht": "kehricht", "kehrseite": "kehrseit", "kehrt": "kehrt", "kehrte": "kehrt", "kehrten": "kehrt", "kei": "kei", "keim": "keim", "kein": "kein", "keine": "kein", "keinem": "kein", "keinen": "kein", "keiner": "kein", "keinerlei": "keinerlei", "keines": "kein", "keinesfalls": "keinesfall", "keineswegs": "keinesweg", "keins": "kein", "keksdose": "keksdos", "kelch": "kelch", "keller": "kell", "kellereien": "kellerei", "kellerhals": "kellerhal", "kellerpflanzen": "kellerpflanz", "kellner": "kelln", "kellnerin": "kellnerin", "kellnerinnen": "kellnerinn", "kelter": "kelt", "keltern": "kelt", "kenan": "kenan", "kenans": "kenan", "kenn": "kenn", "kennbar": "kennbar", "kenne": "kenn", "kennen": "kenn", "kennenlernen": "kennenlern", "kennens": "kenn", "kennenzulernen": "kennenzulern", "kenner": "kenn", "kennerblicken": "kennerblick", "kennest": "kenn", "kennete": "kennet", "kennst": "kenn", "kennt": "kennt", "kenntlich": "kenntlich", "kenntnis": "kenntnis", "kenntnisse": "kenntnis", "kenntnissen": "kenntnis", "kennzeichen": "kennzeich", "kerbholz": "kerbholz", "kerker": "kerk", "kerkern": "kerk", "kerl": "kerl", "kerlchen": "kerlch", "kerls": "kerl", "kern": "kern", "kernpunkt": "kernpunkt", "kerstin": "kerstin", "kerze": "kerz", "kerzen": "kerz", "kesselflicken": "kesselflick", "kesselförmiges": "kesselform", "kesseltal": "kesseltal", "kesselvolk": "kesselvolk", "kette": "kett", "ketten": "kett", "kettlein": "kettlein", "ketzer": "ketz", "ketzerei": "ketzerei", "ketzereien": "ketzerei", "ketzerische": "ketzer", "ketzerischen": "ketzer", "keuchend": "keuchend", "keuchenden": "keuchend", "keuchte": "keucht", "keulenkörner": "keulenkorn", "keuschheit": "keuschheit", "kg": "kg", "kichern": "kich", "kids": "kid", "kiel": "kiel", "kielwasser": "kielwass", "kienholzgefüllten": "kienholzgefullt", "kiepenheuer": "kiepenheu", "kiesel": "kiesel", "kieseln": "kieseln", "kieselstein": "kieselstein", "kiesige": "kiesig", "kieswege": "kiesweg", "kikeriki": "kikeriki", "kilo": "kilo", "kilometer": "kilomet", "kind": "kind", "kindchen": "kindch", "kinde": "kind", "kinder": "kind", "kinderaugen": "kinderaug", "kinderchen": "kinderch", "kinderfest": "kinderf", "kindergärten": "kindergart", "kinderjahren": "kinderjahr", "kinderkehlen": "kinderkehl", "kinderlein": "kinderlein", "kinderlos": "kinderlos", "kinderlosigkeit": "kinderlos", "kindern": "kind", "kinderschar": "kinderschar", "kinderspiel": "kinderspiel", "kinderstimmengelächter": "kinderstimmengelacht", "kinderstube": "kinderstub", "kinderstühlchen": "kinderstuhlch", "kindertaufen": "kindertauf", "kinderwägelchen": "kinderwagelch", "kinderwäsche": "kinderwasch", "kinderzeit": "kinderzeit", "kinderzimmerchen": "kinderzimmerch", "kindes": "kind", "kindesbeinen": "kindesbein", "kindesgedanken": "kindesgedank", "kindesstatt": "kindesstatt", "kindestreue": "kindestreu", "kindheit": "kindheit", "kindisch": "kindisch", "kindische": "kindisch", "kindischer": "kindisch", "kindlein": "kindlein", "kindlich": "kindlich", "kindliche": "kindlich", "kindlichen": "kindlich", "kindliches": "kindlich", "kindlichkeit": "kindlich", "kindskopf": "kindskopf", "kinn": "kinn", "kinnbacken": "kinnback", "kinnbart": "kinnbart", "kino": "kino", "kippe": "kipp", "kippen": "kipp", "kippod": "kippod", "kirch": "kirch", "kirchbankeck": "kirchbankeck", "kirchdorf": "kirchdorf", "kirche": "kirch", "kirchedie": "kirchedi", "kirchemit": "kirchemit", "kirchen": "kirch", "kirchenauftritt": "kirchenauftritt", "kirchenbesuch": "kirchenbesuch", "kirchenbund": "kirchenbund", "kirchenbundes": "kirchenbund", "kirchenbundesdie": "kirchenbundesdi", "kirchenerhaltdie": "kirchenerhaltdi", "kirchenführer": "kirchenfuhr", "kirchenglocken": "kirchenglock", "kirchenkritiker": "kirchenkrit", "kirchenlehre": "kirchenlehr", "kirchenlied": "kirchenlied", "kirchenmaus": "kirchenmaus", "kirchenmitglieder": "kirchenmitglied", "kirchenmitgliedschaft": "kirchenmitgliedschaft", "kirchennahen": "kirchennah", "kirchenpatronin": "kirchenpatronin", "kirchenpflegemitglieder": "kirchenpflegemitglied", "kirchenpflegen": "kirchenpfleg", "kirchenpresse": "kirchenpress", "kirchenrates": "kirchenrat", "kirchenrechtlich": "kirchenrecht", "kirchenrechtlichen": "kirchenrecht", "kirchensteuer": "kirchensteu", "kirchensteuerpflicht": "kirchensteuerpflicht", "kirchenstreit": "kirchenstreit", "kirchensynoden": "kirchensynod", "kirchentag": "kirchentag", "kirchentage": "kirchentag", "kirchentagen": "kirchentag", "kirchentages": "kirchentag", "kirchenverantwortlichen": "kirchenverantwort", "kirchenwesen": "kirchenwes", "kirchenzeit": "kirchenzeit", "kirchenzeitung": "kirchenzeit", "kirchgang": "kirchgang", "kirchgemeinde": "kirchgemeind", "kirchgemeinden": "kirchgemeind", "kirchgemeinderäte": "kirchgemeinderat", "kirchgemeinderäten": "kirchgemeinderat", "kirchhof": "kirchhof", "kirchlich": "kirchlich", "kirchliche": "kirchlich", "kirchlichen": "kirchlich", "kirchliches": "kirchlich", "kirchstühl": "kirchstuhl", "kirchtürme": "kirchturm", "kirchturmspitz": "kirchturmspitz", "kirchweih": "kirchweih", "kirkgesit": "kirkgesit", "kirschen": "kirsch", "kirschenlippen": "kirschenlipp", "kirschgeist": "kirschgeist", "kirschkern": "kirschk", "kirschlorbeerwasser": "kirschlorbeerwass", "kirschrot": "kirschrot", "kirschrote": "kirschrot", "kirschrotem": "kirschrot", "kirschroten": "kirschrot", "kissen": "kiss", "kiste": "kist", "kisten": "kist", "kitschige": "kitschig", "kitschiges": "kitschig", "kittel": "kittel", "kitz": "kitz", "kitzelt": "kitzelt", "kitzlein": "kitzlein", "klack": "klack", "kläffer": "klaff", "klage": "klag", "klagel": "klagel", "klagen": "klag", "klagend": "klagend", "klagenden": "klagend", "kläger": "klag", "klagetönen": "klageton", "kläglich": "klaglich", "klägliche": "klaglich", "kläglicher": "klaglich", "klaglosen": "klaglos", "klagt": "klagt", "klagte": "klagt", "klagten": "klagt", "klammerarmen": "klammerarm", "klammernd": "klammernd", "klammerte": "klammert", "klang": "klang", "klange": "klang", "klänge": "klang", "klangen": "klang", "klanglos": "klanglos", "klangvolle": "klangvoll", "klangvoller": "klangvoll", "klapperig": "klapper", "klappern": "klapp", "klappernden": "klappernd", "klapperte": "klappert", "klappte": "klappt", "klaps": "klaps", "klar": "klar", "klare": "klar", "klaren": "klar", "klarer": "klar", "klareren": "klar", "klares": "klar", "klarheit": "klarheit", "klarstellung": "klarstell", "klarsten": "klarst", "klärt": "klart", "klass": "klass", "klasse": "klass", "klassen": "klass", "klassikers": "klassik", "klassische": "klassisch", "klatschen": "klatsch", "klatschend": "klatschend", "klatschereien": "klatscherei", "klatschrose": "klatschros", "klatschrosen": "klatschros", "klatschte": "klatscht", "klatschten": "klatscht", "klaubte": "klaubt", "klaue": "klau", "klauen": "klau", "klavierstunde": "klavierstund", "klebe": "kleb", "kleben": "kleb", "klebet": "klebet", "klebt": "klebt", "klebte": "klebt", "klebten": "klebt", "klecks": "kleck", "kleckschen": "klecksch", "kleckse": "klecks", "klecksigen": "klecksig", "klee": "klee", "kleeblatt": "kleeblatt", "kleesamen": "kleesam", "kleid": "kleid", "kleide": "kleid", "kleiden": "kleid", "kleider": "kleid", "kleiderbedarf": "kleiderbedarf", "kleiderkasten": "kleiderkast", "kleidern": "kleid", "kleiderschrank": "kleiderschrank", "kleides": "kleid", "kleidete": "kleidet", "kleidung": "kleidung", "kleidungsstück": "kleidungsstuck", "kleie": "kleie", "kleiekörner": "kleiekorn", "klein": "klein", "kleine": "klein", "kleinedelmann": "kleinedelmann", "kleinedelmanne": "kleinedelmann", "kleinem": "klein", "kleinen": "klein", "kleiner": "klein", "kleinere": "klein", "kleineren": "klein", "kleinern": "klein", "kleines": "klein", "kleinheit": "kleinheit", "kleinigkeit": "kleinig", "kleinigkeiten": "kleinig", "kleinlaut": "kleinlaut", "kleinlich": "kleinlich", "kleinliche": "kleinlich", "kleinlichen": "kleinlich", "kleinlicher": "kleinlich", "kleinlichsten": "kleinlich", "kleinmachnow": "kleinmachnow", "kleinmütig": "kleinmut", "kleinod": "kleinod", "kleinstädterinnen": "kleinstadterinn", "kleinste": "klein", "kleinsten": "klein", "kleinster": "klein", "kleinstes": "klein", "kleinviehs": "kleinvieh", "klemme": "klemm", "klemmte": "klemmt", "kletterns": "klettern", "kletterte": "klettert", "kletterten": "klettert", "klickklackklecks": "klickklackkleck", "klicks": "klick", "klient": "klient", "klingel": "klingel", "klingelte": "klingelt", "klingen": "kling", "klingende": "klingend", "klingenden": "klingend", "klingender": "klingend", "klingt": "klingt", "klinke": "klink", "klippe": "klipp", "klippen": "klipp", "klirren": "klirr", "klirrenden": "klirrend", "klirrrr": "klirrrr", "klirrte": "klirrt", "klirrten": "klirrt", "kloan": "kloan", "klopfen": "klopf", "klopfendem": "klopfend", "klopfenden": "klopfend", "klopfte": "klopft", "klösschen": "klossch", "kloster": "klost", "klöster": "klost", "klosters": "klost", "klotziger": "klotzig", "kluft": "kluft", "klüfteten": "kluftet", "klug": "klug", "kluge": "klug", "klugen": "klug", "kluger": "klug", "klüger": "klug", "kluges": "klug", "klugheit": "klugheit", "klugheitsregel": "klugheitsregel", "klüglich": "kluglich", "klügste": "klug", "klümpchen": "klumpch", "klumpen": "klump", "knab": "knab", "knabbern": "knabb", "knäbchen": "knabch", "knabe": "knab", "knaben": "knab", "knabenalter": "knabenalt", "knäblein": "knablein", "knäbleins": "knablein", "knackende": "knackend", "knall": "knall", "knallen": "knall", "knallgelber": "knallgelb", "knallt": "knallt", "knapp": "knapp", "knarrte": "knarrt", "knatter": "knatt", "knäuel": "knauel", "knäufen": "knauf", "knauserig": "knauser", "knebel": "knebel", "knecht": "knecht", "knechtchen": "knechtch", "knechte": "knecht", "knechten": "knecht", "knechtes": "knecht", "knechtisch": "knechtisch", "knechts": "knecht", "knechtschaft": "knechtschaft", "kneipchen": "kneipch", "kneipe": "kneip", "kneipen": "kneip", "kneipentisch": "kneipent", "kneten": "knet", "knicks": "knick", "knickse": "knicks", "knickste": "knick", "knickte": "knickt", "knickten": "knickt", "knie": "knie", "kniee": "kniee", "knieen": "knieen", "knieholzäste": "knieholzast", "kniehosen": "kniehos", "knien": "knien", "kniete": "kniet", "knieten": "kniet", "kniff": "kniff", "knirschen": "knirsch", "knirschend": "knirschend", "knisternd": "knisternd", "knisternden": "knisternd", "knisterte": "knistert", "knisterten": "knistert", "knitternden": "knitternd", "knobeln": "knobeln", "knobelten": "knobelt", "knöchel": "knochel", "knochen": "knoch", "knochengerippe": "knochengeripp", "knochenjobs": "knochenjob", "knöchern": "knoch", "knöchernes": "knochern", "knochige": "knochig", "knochiges": "knochig", "knopf": "knopf", "knöpfe": "knopf", "knöpfen": "knopf", "knopfmacher": "knopfmach", "knopfmacherei": "knopfmacherei", "knorpel": "knorpel", "knorrige": "knorrig", "knospen": "knosp", "knospenden": "knospend", "knösperl": "knosperl", "knoten": "knot", "knotige": "knotig", "knüffe": "knuff", "knüffen": "knuff", "knüllte": "knullt", "knüpfen": "knupf", "knüpfend": "knupfend", "knüpfte": "knupft", "knüpperte": "knuppert", "knusprig": "knusprig", "knutenpeitsche": "knutenpeitsch", "koalitionskrise": "koalitionskris", "koalitionssystem": "koalitionssyst", "koalitionsversuche": "koalitionsversuch", "koan": "koan", "kobold": "kobold", "koch": "koch", "kochen": "koch", "kochherd": "kochherd", "köchin": "kochin", "kocht": "kocht", "kochte": "kocht", "kock": "kock", "koffer": "koff", "kognak": "kognak", "kohl": "kohl", "kohle": "kohl", "kohlen": "kohl", "kohlenbrennern": "kohlenbrenn", "kohlkräuter": "kohlkraut", "kokette": "kokett", "koketterie": "koketteri", "kolben": "kolb", "kollaboration": "kollaboration", "kollaboriert": "kollaboriert", "kollakowsky": "kollakowsky", "kollakowskys": "kollakowskys", "kollege": "kolleg", "kollegen": "kolleg", "kollegium": "kollegium", "kollekteur": "kollekteur", "köllen": "koll", "koller": "koll", "kollerte": "kollert", "kölner": "koln", "kölnischem": "kolnisch", "kolonne": "kolonn", "kolorit": "kolorit", "kolossal": "kolossal", "kolossale": "kolossal", "kolossales": "kolossal", "kolumbus": "kolumbus", "kom": "kom", "kombattant": "kombattant", "kombinationen": "kombination", "kombinierten": "kombiniert", "komet": "komet", "kometenkohl": "kometenkohl", "komiker": "komik", "komikergrinsen": "komikergrins", "komikers": "komik", "komisch": "komisch", "komische": "komisch", "komischen": "komisch", "komitee": "komite", "komm": "komm", "kommandeur": "kommandeur", "kommandieren": "kommandi", "kommando": "kommando", "kommandowort": "kommandowort", "komme": "komm", "kommen": "komm", "kommend": "kommend", "kommende": "kommend", "kommenden": "kommend", "kommendes": "kommend", "kommens": "komm", "kommentar": "kommentar", "kommet": "kommet", "kommission": "kommission", "kommissionen": "kommission", "kommode": "kommod", "kommr": "kommr", "kommst": "komm", "kommt": "kommt", "kommunalverwaltung": "kommunalverwalt", "kommunikationshindernis": "kommunikationshindernis", "komödie": "komodi", "komödien": "komodi", "kompagnie": "kompagni", "kompagnien": "kompagni", "kompagnon": "kompagnon", "kompaniechef": "kompaniechef", "kompass": "kompass", "kompensation": "kompensation", "komplikationen": "komplikation", "kompliment": "kompliment", "komplimenten": "kompliment", "komplimentierten": "komplimentiert", "komponiert": "komponiert", "komptoirs": "komptoir", "kon": "kon", "kön": "kon", "konfekt": "konfekt", "konfirmationsschein": "konfirmationsschein", "konfirmationsunterrichte": "konfirmationsunterricht", "konfirmiert": "konfirmiert", "konfisziert": "konfisziert", "konflikt": "konflikt", "konflikten": "konflikt", "konfrontiert": "konfrontiert", "konfundieren": "konfundi", "konfus": "konfus", "könig": "konig", "könige": "konig", "königen": "konig", "königin": "konigin", "königinnen": "koniginn", "königl": "konigl", "königlich": "konig", "königliche": "konig", "königlichen": "konig", "königlichsten": "konig", "königreich": "konigreich", "königreichen": "konigreich", "königreiches": "konigreich", "königs": "konig", "königsmantel": "konigsmantel", "königspaar": "konigspaar", "königsschiessen": "konigsschiess", "königssee": "konigsse", "königsseer": "konigsse", "königssohn": "konigssohn", "konjunktiv": "konjunktiv", "konkreten": "konkret", "konkurse": "konkurs", "könn": "konn", "könne": "konn", "können": "konn", "könnet": "konnet", "konnt": "konnt", "könnt": "konnt", "konnte": "konnt", "könnte": "konnt", "konnten": "konnt", "könnten": "konnt", "könntest": "konnt", "konsequent": "konsequent", "konsequente": "konsequent", "konservatismus": "konservatismus", "konservativ": "konservativ", "konservativen": "konservativ", "konservativer": "konservativ", "konserviert": "konserviert", "konstantinopel": "konstantinopel", "konstellationen": "konstellation", "konstitutiv": "konstitutiv", "konstruiert": "konstruiert", "konstruktion": "konstruktion", "konsum": "konsum", "konsumenten": "konsument", "konsumieren": "konsumi", "konsumiert": "konsumiert", "konsumkredit": "konsumkredit", "konsumwelle": "konsumwell", "kontakt": "kontakt", "kontakte": "kontakt", "kontemplative": "kontemplativ", "kontinent": "kontinent", "kontinental": "kontinental", "kontinuierlichen": "kontinui", "konto": "konto", "kontorstuhl": "kontorstuhl", "kontradiktorisch": "kontradiktor", "kontrakt": "kontrakt", "kontraktwidrigen": "kontraktwidr", "kontrast": "kontrast", "kontrastierte": "kontrastiert", "kontraventionsbusse": "kontraventionsbuss", "kontrolliert": "kontrolliert", "kontroverse": "kontrovers", "konventikel": "konventikel", "konvertiert": "konvertiert", "konzentriert": "konzentriert", "konzert": "konzert", "kooperation": "kooperation", "koordiniert": "koordiniert", "kopf": "kopf", "köpfchen": "kopfch", "kopfe": "kopf", "köpfe": "kopf", "köpfen": "kopf", "kopfes": "kopf", "kopfhängen": "kopfhang", "kopfkissen": "kopfkiss", "köpflings": "kopfling", "kopfnicken": "kopfnick", "kopfputz": "kopfputz", "kopfschmerzen": "kopfschmerz", "kopfschüttelnd": "kopfschuttelnd", "kopftuches": "kopftuch", "kopfüber": "kopfub", "kopfweh": "kopfweh", "kopfwendung": "kopfwend", "kopfzerbrechen": "kopfzerbrech", "kopien": "kopi", "kopiermaschinen": "kopiermaschin", "koppe": "kopp", "koppelpferde": "koppelpferd", "koppenhöhe": "koppenhoh", "koppenluft": "koppenluft", "koppenplan": "koppenplan", "koppenplanes": "koppenplan", "kopulieren": "kopuli", "kor": "kor", "korah": "korah", "korahiten": "korahit", "korahs": "korah", "korallenschnur": "korallenschnur", "korb": "korb", "körbchen": "korbch", "korbe": "korb", "körbe": "korb", "körben": "korb", "korbträgern": "korbtrag", "korn": "korn", "kornähre": "kornahr", "kornblumen": "kornblum", "korne": "korn", "kornes": "korn", "kornfeld": "kornfeld", "kornsäcken": "kornsack", "körper": "korp", "körperbau": "korperbau", "körperlich": "korp", "körperliche": "korp", "körperlichen": "korp", "körperlicher": "korp", "körperliches": "korp", "körpern": "korp", "körpers": "korp", "körpersinne": "korpersinn", "korrekt": "korrekt", "korrekturen": "korrektur", "korrespondenz": "korrespondenz", "korrespondiere": "korrespondi", "korrespondieren": "korrespondi", "korrespondierend": "korrespondier", "korrespondierende": "korrespondier", "korrespondierendes": "korrespondier", "korrespondiert": "korrespondiert", "korridor": "korridor", "korrigieren": "korrigi", "korrigiert": "korrigiert", "kosenamen": "kosenam", "kosmiseher": "kosmiseh", "kosmologische": "kosmolog", "kost": "kost", "kostbar": "kostbar", "kostbare": "kostbar", "kostbaren": "kostbar", "kostbarer": "kostbar", "kostbares": "kostbar", "kostbarsten": "kostbarst", "kosten": "kost", "kostenfreien": "kostenfrei", "kostenpunkt": "kostenpunkt", "kostet": "kostet", "kostete": "kostet", "kosteten": "kostet", "köstlich": "kostlich", "köstliche": "kostlich", "köstlichen": "kostlich", "köstliches": "kostlich", "köstlichkeiten": "kostlich", "köstlichste": "kostlich", "kostspieliges": "kostspiel", "kostümierte": "kostumiert", "kot": "kot", "kotelettes": "kotelett", "köter": "kot", "kothöllen": "kotholl", "krabbelige": "krabbel", "krabbelte": "krabbelt", "krach": "krach", "krachen": "krach", "krachend": "krachend", "krachmandel": "krachmandel", "krachmandelkies": "krachmandelki", "kracht": "kracht", "krachte": "kracht", "krächzen": "krachz", "krächzende": "krachzend", "krack": "krack", "kraft": "kraft", "kraftanwendung": "kraftanwend", "kräfte": "kraft", "kräften": "kraft", "kräftig": "kraftig", "kräftige": "kraftig", "kräftigem": "kraftig", "kräftigen": "kraftig", "kräftiger": "kraftig", "kräftigere": "kraftig", "kräftigst": "kraftig", "kraftmänner": "kraftmann", "kragen": "krag", "krähe": "krah", "krähen": "krah", "kräht": "kraht", "krähte": "kraht", "krakacks": "krakack", "kram": "kram", "krämer": "kram", "kramladen": "kramlad", "krammetsvogel": "krammetsvogel", "krammetsvögel": "krammetsvogel", "krammetsvogels": "krammetsvogel", "krampf": "krampf", "krampfhaft": "krampfhaft", "krampfhaften": "krampfhaft", "krampfhafter": "krampfhaft", "krank": "krank", "kranke": "krank", "kränkelnder": "krankelnd", "kränkelt": "krankelt", "kranken": "krank", "kränken": "krank", "krankenbett": "krankenbett", "krankenbette": "krankenbett", "krankenbettes": "krankenbett", "kränkend": "krankend", "kränkenden": "krankend", "krankenstand": "krankenstand", "krankenversicherung": "krankenversicher", "krankenwärter": "krankenwart", "krankhafter": "krankhaft", "krankheit": "krankheit", "krankheiten": "krankheit", "krankheitsbildern": "krankheitsbild", "kränkt": "krankt", "kränkte": "krankt", "kränkung": "krankung", "kranz": "kranz", "kranze": "kranz", "kränzen": "kranz", "kratz": "kratz", "krätze": "kratz", "kratzen": "kratz", "kratzfuss": "kratzfuss", "kratzfüsschen": "kratzfussch", "kratzte": "kratzt", "kratzten": "kratzt", "krault": "krault", "kraus": "kraus", "krause": "kraus", "kräuselhaare": "krauselhaar", "kräuselten": "krauselt", "krausen": "kraus", "kraut": "kraut", "kräutchen": "krautch", "kräuter": "kraut", "kräutermann": "krautermann", "kräutern": "kraut", "kräutersäcke": "krautersack", "kräuterwuchs": "krauterwuch", "kräuterwust": "krauterwust", "krautes": "kraut", "krauts": "kraut", "kravatte": "kravatt", "kreatur": "kreatur", "kreaturen": "kreatur", "krebs": "kreb", "krebspatienten": "krebspatient", "krebsscheren": "krebssch", "kredit": "kredit", "kredite": "kredit", "kredites": "kredit", "kreditgetzes": "kreditgetz", "kreideblass": "kreideblass", "kreis": "kreis", "kreischen": "kreisch", "kreischenden": "kreischend", "kreischte": "kreischt", "kreise": "kreis", "kreiselndes": "kreiselnd", "kreiselte": "kreiselt", "kreisen": "kreis", "kreises": "kreis", "kreislauf": "kreislauf", "kreisläufe": "kreislauf", "kreisrunde": "kreisrund", "kreissen": "kreiss", "kreißen": "kreiss", "kreissenden": "kreissend", "kreißenden": "kreissend", "kreissest": "kreiss", "kreißest": "kreiss", "kreisst": "kreisst", "kreißt": "kreisst", "kreiswehrersatzamt": "kreiswehrersatzamt", "kreizer": "kreiz", "kreizl": "kreizl", "kresse": "kress", "kretinismus": "kretinismus", "kreucht": "kreucht", "kreuz": "kreuz", "kreuzberger": "kreuzberg", "kreuze": "kreuz", "kreuzen": "kreuz", "kreuzenden": "kreuzend", "kreuzer": "kreuz", "kreuzes": "kreuz", "kreuzfahrers": "kreuzfahr", "kreuzl": "kreuzl", "kreuzritterzuge": "kreuzritterzug", "kreuzspinnen": "kreuzspinn", "kreuzstrasse": "kreuzstrass", "kreuzte": "kreuzt", "kreuzten": "kreuzt", "kreuzweg": "kreuzweg", "kreuzwegbäu": "kreuzwegbau", "kreuzwegbauer": "kreuzwegbau", "kreuzweghof": "kreuzweghof", "kreuzweghofbauer": "kreuzweghofbau", "kreuzweis": "kreuzweis", "kribbeln": "kribbeln", "krick": "krick", "kriechen": "kriech", "kriechend": "kriechend", "kriechende": "kriechend", "kriechenden": "kriechend", "kriechendes": "kriechend", "kriecht": "kriecht", "kriechtier": "kriechti", "kriechtiere": "kriechti", "kriechtieren": "kriechti", "krieg": "krieg", "kriege": "krieg", "kriegen": "krieg", "krieger": "krieg", "kriegerisch": "krieger", "kriegerischen": "krieger", "krieges": "krieg", "krieget": "krieget", "kriegsdienst": "kriegsdien", "kriegsdienste": "kriegsdien", "kriegsdienstes": "kriegsdien", "kriegsdienstverweigerer": "kriegsdienstverweig", "kriegsdienstverweigerung": "kriegsdienstverweiger", "kriegsführung": "kriegsfuhr", "kriegsgetümmel": "kriegsgetummel", "kriegsheeren": "kriegshe", "kriegskameraden": "kriegskamerad", "kriegskasse": "kriegskass", "kriegskleid": "kriegskleid", "kriegsleute": "kriegsleut", "kriegslied": "kriegslied", "kriegslist": "kriegslist", "kriegsmann": "kriegsmann", "kriegsmänner": "kriegsmann", "kriegsmannes": "kriegsmann", "kriegsmöglichkeiten": "kriegsmog", "kriegsoberst": "kriegsoberst", "kriegsstrapazen": "kriegsstrapaz", "kriegsvölker": "kriegsvolk", "kriegswaffen": "kriegswaff", "kriegswesen": "kriegswes", "kriegswichtigen": "kriegswicht", "kriegt": "kriegt", "kriegte": "kriegt", "krieje": "kriej", "kriminalverbrechen": "kriminalverbrech", "kriminell": "kriminell", "kriminelle": "kriminell", "kriminelles": "kriminell", "krise": "kris", "krisen": "kris", "kristall": "kristall", "kristalle": "kristall", "kritik": "kritik", "kritikpunkt": "kritikpunkt", "kritisch": "kritisch", "kritische": "kritisch", "kritischen": "kritisch", "kritischer": "kritisch", "kritisieren": "kritisi", "kritisiert": "kritisiert", "kroch": "kroch", "krochen": "kroch", "krochy": "krochy", "krokodil": "krokodil", "krönchen": "kronch", "krone": "kron", "kronen": "kron", "krönen": "kron", "kronleuchtern": "kronleucht", "krönte": "kront", "kropf": "kropf", "kropfige": "kropfig", "kropfigen": "kropfig", "kropfiger": "kropfig", "kropfschlinge": "kropfschling", "kröten": "krot", "kruge": "krug", "krügelchen": "krugelch", "krümel": "krumel", "krumm": "krumm", "krummbeinige": "krummbein", "krumme": "krumm", "krummen": "krumm", "krümmen": "krumm", "krummholz": "krummholz", "krummholzbusche": "krummholzbusch", "krummholzbuschwerk": "krummholzbuschwerk", "krummholzzweigen": "krummholzzweig", "krummrückiger": "krummruck", "krümmte": "krummt", "krümmten": "krummt", "krümmung": "krummung", "krüppel": "kruppel", "krustengebirge": "krustengebirg", "kruzifix": "kruzifix", "kts": "kts", "kuba": "kuba", "kübel": "kubel", "kübler": "kubl", "küche": "kuch", "kuchen": "kuch", "kuchenappetit": "kuchenappetit", "kuchenbacken": "kuchenback", "küchenchef": "kuchenchef", "kuchenduft": "kuchenduft", "küchenjungen": "kuchenj", "küchenlampe": "kuchenlamp", "kuchenpäckchen": "kuchenpackch", "kuchenteller": "kuchentell", "küchentüre": "kuchentur", "kuckuck": "kuckuck", "kugel": "kugel", "kugeln": "kugeln", "kugelrund": "kugelrund", "kugelrunde": "kugelrund", "kugelrunden": "kugelrund", "kugelrundes": "kugelrund", "kugelschreiber": "kugelschreib", "kugelstift": "kugelstift", "kuh": "kuh", "küh": "kuh", "kühe": "kuh", "kuhgespann": "kuhgespann", "kuhknecht": "kuhknecht", "kuhknechte": "kuhknecht", "kühl": "kuhl", "kühle": "kuhl", "kühlen": "kuhl", "kühler": "kuhl", "kühlten": "kuhlt", "kuhmagd": "kuhmagd", "kühn": "kuhn", "kühne": "kuhn", "kühnen": "kuhn", "kühnere": "kuhn", "kühneren": "kuhn", "kühnheit": "kuhnheit", "kühnlich": "kuhnlich", "kühnrich": "kuhnrich", "kühnsten": "kuhn", "kuhpfluge": "kuhpflug", "kulisse": "kuliss", "kullerbällchen": "kullerballch", "kullerten": "kullert", "kullich": "kullich", "kultivieren": "kultivi", "kultivierte": "kultiviert", "kultur": "kultur", "kulturell": "kulturell", "kulturelle": "kulturell", "kulturellen": "kulturell", "kulturen": "kultur", "kulturvereine": "kulturverein", "kulturwort": "kulturwort", "kummen": "kumm", "kummer": "kumm", "kümmerlich": "kumm", "kümmerliche": "kumm", "kümmerlichen": "kumm", "kümmerlicher": "kumm", "kümmern": "kumm", "kümmernis": "kummernis", "kümmernisse": "kummernis", "kümmerst": "kummerst", "kümmert": "kummert", "kümmerte": "kummert", "kümmerten": "kummert", "kummervoll": "kummervoll", "kumpan": "kumpan", "kumpane": "kumpan", "kund": "kund", "kunde": "kund", "kunden": "kund", "kundgab": "kundgab", "kundgetan": "kundgetan", "kundig": "kundig", "kundigen": "kundig", "kündigen": "kundig", "kündigte": "kundigt", "kündigten": "kundigt", "kündigung": "kundig", "kundin": "kundin", "kundschaft": "kundschaft", "kundschafter": "kundschaft", "künftig": "kunftig", "künftige": "kunftig", "künftigen": "kunftig", "küng": "kung", "kunnt": "kunnt", "kunnten": "kunnt", "kunst": "kunst", "kunstdenkmäler": "kunstdenkmal", "künste": "kunst", "künsten": "kunst", "kunstfertigkeit": "kunstfert", "kunstgriff": "kunstgriff", "kunstgriffe": "kunstgriff", "kunsthistorische": "kunsthistor", "künstler": "kunstl", "künstlerische": "kunstler", "künstlerischen": "kunstler", "künstlers": "kunstl", "künstlich": "kunstlich", "künstliche": "kunstlich", "künstlichem": "kunstlich", "künstlichen": "kunstlich", "künstlicher": "kunstlich", "kunstliebhaber": "kunstliebhab", "kunstlos": "kunstlos", "kunstpfeifer": "kunstpfeif", "kunstreichen": "kunstreich", "kunstreicher": "kunstreich", "kunstreiches": "kunstreich", "kunststück": "kunststuck", "kunststückchen": "kunststuckch", "kunststücke": "kunststuck", "kunstverständigen": "kunstverstand", "kunstvoll": "kunstvoll", "kunstvoller": "kunstvoll", "kunstwerke": "kunstwerk", "kunstwerken": "kunstwerk", "kunterbunt": "kunterbunt", "küpe": "kup", "kupfer": "kupf", "kupfern": "kupf", "kupferstiche": "kupferstich", "kuppel": "kuppel", "kuppeln": "kuppeln", "kuppen": "kupp", "kuppler": "kuppl", "kur": "kur", "kurasch": "kurasch", "kürassiere": "kurassi", "kürassiers": "kurassi", "kürbisse": "kurbiss", "kurden": "kurd", "kurdisch": "kurdisch", "kurdische": "kurdisch", "kurdischen": "kurdisch", "kurdistan": "kurdistan", "kurfürsten": "kurfurst", "kurieren": "kuri", "kurierte": "kuriert", "kurrenten": "kurrent", "kurs": "kur", "kursus": "kursus", "kurt": "kurt", "kurubas": "kurubas", "kurwochen": "kurwoch", "kurz": "kurz", "kürz": "kurz", "kurzatmiger": "kurzatm", "kurzbesuch": "kurzbesuch", "kurze": "kurz", "kürze": "kurz", "kurzem": "kurz", "kurzen": "kurz", "kurzer": "kurz", "kürzer": "kurz", "kürzere": "kurz", "kurzerhand": "kurzerhand", "kurzes": "kurz", "kurzfristig": "kurzfrist", "kurzgeschoren": "kurzgeschor", "kurzhörspiel": "kurzhorspiel", "kürzlich": "kurzlich", "kurzsichtig": "kurzsicht", "kurzum": "kurzum", "kurzweg": "kurzweg", "kurzweil": "kurzweil", "kurzweilig": "kurzweil", "kurzweiligen": "kurzweil", "kurzweiliges": "kurzweil", "kurzweiligste": "kurzweil", "kusch": "kusch", "kuschs": "kusch", "kuss": "kuss", "kuß": "kuss", "küss": "kuss", "küsschen": "kussch", "küsse": "kuss", "küssen": "kuss", "küssend": "kussend", "küsserei": "kusserei", "kusshändchen": "kusshandch", "küsslein": "kusslein", "küsst": "kusst", "küßt": "kusst", "küsste": "kusst", "küßte": "kusst", "küssten": "kusst", "küsten": "kust", "küstern": "kust", "kutsche": "kutsch", "kutscher": "kutsch", "kutschers": "kutsch", "kutschieren": "kutschi", "kutschierte": "kutschiert", "kutte": "kutt", "kuv": "kuv", "l": "l", "la": "la", "laban": "laban", "labe": "lab", "label": "label", "laboratorium": "laboratorium", "labyrinth": "labyrinth", "labyrinthe": "labyrinth", "lachchors": "lachchor", "lächeln": "lacheln", "lächelnd": "lachelnd", "lächelnde": "lachelnd", "lächelndem": "lachelnd", "lächelnden": "lachelnd", "lächelnder": "lachelnd", "lächelt": "lachelt", "lächelte": "lachelt", "lächelten": "lachelt", "lachen": "lach", "lachend": "lachend", "lachende": "lachend", "lachendem": "lachend", "lachenden": "lachend", "lachendes": "lachend", "lächerlich": "lach", "lächerlichen": "lach", "lächerliches": "lach", "lächerlichkeit": "lacher", "lächerlichsten": "lach", "lachkrampf": "lachkrampf", "lachs": "lach", "lacht": "lacht", "lachte": "lacht", "lachten": "lacht", "lachtest": "lacht", "lachtöne": "lachton", "lackieren": "lacki", "lackiert": "lackiert", "lackierten": "lackiert", "lackl": "lackl", "lädchen": "ladch", "lädchens": "ladch", "lade": "lad", "laden": "lad", "läden": "lad", "ladend": "ladend", "ladendiebin": "ladendiebin", "ladenkasse": "ladenkass", "ladentür": "ladentur", "ladies": "ladi", "lädt": "ladt", "ladung": "ladung", "lady": "lady", "laert": "laert", "laertius": "laertius", "lag": "lag", "lage": "lag", "läge": "lag", "lagen": "lag", "lägen": "lag", "lager": "lag", "lagern": "lag", "lagernd": "lagernd", "lagers": "lag", "lagerstätte": "lagerstatt", "lagert": "lagert", "lagerte": "lagert", "lahme": "lahm", "lahmen": "lahm", "lahmgewordenen": "lahmgeword", "lahnstreif": "lahnstreif", "laie": "laie", "laien": "laien", "lallt": "lallt", "lamech": "lamech", "lamechs": "lamech", "lamentieren": "lamenti", "lamentierte": "lamentiert", "lamm": "lamm", "lämmchen": "lammch", "lamme": "lamm", "lämmer": "lamm", "lämmerwölkchen": "lammerwolkch", "lammes": "lamm", "lammgeduld": "lammgeduld", "lämmlein": "lammlein", "lämpchen": "lampch", "lampe": "lamp", "lamperl": "lamperl", "lanciert": "lanciert", "land": "land", "landarmee": "landarme", "landauer": "landau", "landbursche": "landbursch", "ländchen": "landch", "ländchens": "landch", "lande": "land", "landen": "land", "länder": "land", "länderfernen": "landerfern", "ländern": "land", "landes": "land", "landesautoritäten": "landesautoritat", "landesfürst": "landesfurst", "landeskirche": "landeskirch", "landeskirchen": "landeskirch", "landeskirchliche": "landeskirch", "landesmehrheit": "landesmehr", "landesüblichen": "landesub", "landesverteidigung": "landesverteid", "landeswohl": "landeswohl", "landete": "landet", "landeten": "landet", "landflüchtige": "landflucht", "landfrau": "landfrau", "landfriedenbrecher": "landfriedenbrech", "landgericht": "landgericht", "landhaus": "landhaus", "landläufige": "landlauf", "landleben": "landleb", "landleute": "landleut", "landleuten": "landleut", "ländliche": "landlich", "ländlichen": "landlich", "landmädchen": "landmadch", "landmann": "landmann", "landmänner": "landmann", "landpartie": "landparti", "landpartien": "landparti", "landrock": "landrock", "landschaft": "landschaft", "landschaften": "landschaft", "landsitz": "landsitz", "landsleute": "landsleut", "landsmann": "landsmann", "landsmannes": "landsmann", "landstrasse": "landstrass", "landstrassen": "landstrass", "landstraßen": "landstrass", "landstreicher": "landstreich", "landstrich": "landstrich", "landstriches": "landstrich", "landsturm": "landsturm", "landungsstelle": "landungsstell", "landvolk": "landvolk", "landvolkes": "landvolk", "landwirtschaft": "landwirtschaft", "lang": "lang", "langbeinen": "langbein", "lange": "lang", "länge": "lang", "langem": "lang", "langen": "lang", "langer": "lang", "länger": "lang", "längere": "lang", "längeren": "lang", "längerer": "lang", "langes": "lang", "langeweile": "langeweil", "langgezogenen": "langgezog", "langhingestreckte": "langhingestreckt", "langjährige": "langjahr", "langjährigen": "langjahr", "längliche": "langlich", "länglichen": "langlich", "längliches": "langlich", "langmut": "langmut", "langmütig": "langmut", "langriemige": "langriem", "langrollende": "langroll", "langsam": "langsam", "langsame": "langsam", "langsamen": "langsam", "langsamer": "langsam", "langsamkeit": "langsam", "längst": "lang", "längste": "lang", "längsten": "lang", "längstens": "langst", "langstündige": "langstund", "langte": "langt", "langweilen": "langweil", "langweilig": "langweil", "langweilige": "langweil", "langweiligen": "langweil", "lanz": "lanz", "lanze": "lanz", "läppische": "lappisch", "lärchenstämmchen": "larchenstammch", "largo": "largo", "larifari": "larifari", "lärm": "larm", "lärmen": "larm", "lärmende": "larmend", "lärmendes": "larmend", "lärmten": "larmt", "las": "las", "lasen": "las", "lass": "lass", "laß": "lass", "lasse": "lass", "lassen": "lass", "lässest": "lass", "lasset": "lasset", "lässig": "lassig", "lasst": "lasst", "laßt": "lasst", "lässt": "lasst", "läßt": "lasst", "last": "last", "lasten": "last", "laster": "last", "lasterhaften": "lasterhaft", "lästerliche": "last", "lästerliches": "last", "lästerlichstem": "last", "lastern": "last", "lästern": "last", "lästerns": "lastern", "lästert": "lastert", "lästerte": "lastert", "lästerten": "lastert", "lästerung": "laster", "lästerungen": "laster", "lastete": "lastet", "lastfuhren": "lastfuhr", "lästig": "lastig", "lästige": "lastig", "lastschlitten": "lastschlitt", "lat": "lat", "lateiner": "latein", "lateinerte": "lateinert", "lateinisch": "latein", "lateinische": "latein", "lateinischen": "latein", "lateinschuljahr": "lateinschuljahr", "laternchen": "laternch", "laterne": "latern", "laternen": "latern", "lattenzaunes": "lattenzaun", "lattichblatt": "lattichblatt", "laub": "laub", "laube": "laub", "lauben": "laub", "laubhütten": "laubhutt", "laubmassen": "laubmass", "lauen": "lau", "lauer": "lau", "lauerten": "lauert", "lauf": "lauf", "laufbahn": "laufbahn", "laufe": "lauf", "laufen": "lauf", "laufend": "laufend", "laufendem": "laufend", "laufenden": "laufend", "läufer": "lauf", "laufes": "lauf", "laufet": "laufet", "laufs": "lauf", "lauft": "lauft", "läuft": "lauft", "laune": "laun", "launen": "laun", "launigen": "launig", "laurens": "laur", "lausanne": "lausann", "lauschend": "lauschend", "lauschens": "lausch", "lauscher": "lausch", "lauschte": "lauscht", "lauschten": "lauscht", "läuse": "laus", "lausekerl": "lausekerl", "läusen": "laus", "laut": "laut", "laute": "laut", "lautem": "laut", "lauten": "laut", "läuten": "laut", "lauter": "laut", "lautere": "laut", "lauterem": "laut", "lauteren": "laut", "lauterkeit": "lauter", "läutern": "laut", "läuternd": "lauternd", "lautes": "laut", "lautet": "lautet", "läutet": "lautet", "lautete": "lautet", "läutete": "lautet", "lautlos": "lautlos", "lautlose": "lautlos", "lautloser": "lautlos", "lautsprecher": "lautsprech", "lautsprechern": "lautsprech", "lautstarke": "lautstark", "lazare": "lazar", "lazarus": "lazarus", "le": "le", "leah": "leah", "leb": "leb", "lebe": "leb", "leben": "leb", "lebend": "lebend", "lebende": "lebend", "lebenden": "lebend", "lebendes": "lebend", "lebendig": "lebend", "lebendige": "lebend", "lebendigem": "lebend", "lebendigen": "lebend", "lebendiger": "lebend", "lebendiges": "lebend", "lebendigsten": "lebend", "lebens": "leb", "lebensabschnitt": "lebensabschnitt", "lebensähnliches": "lebensahn", "lebensalter": "lebensalt", "lebensart": "lebensart", "lebensbedingungen": "lebensbeding", "lebensbedürfnis": "lebensbedurfnis", "lebensbeschreibung": "lebensbeschreib", "lebensbuche": "lebensbuch", "lebenselixier": "lebenselixi", "lebensfahrt": "lebensfahrt", "lebensfeuer": "lebensfeu", "lebensformen": "lebensform", "lebensfreude": "lebensfreud", "lebensfroh": "lebensfroh", "lebensgefühl": "lebensgefuhl", "lebensgeister": "lebensgeist", "lebensgeschichte": "lebensgeschicht", "lebensglück": "lebensgluck", "lebensglücke": "lebensgluck", "lebensguten": "lebensgut", "lebenshelfer": "lebenshelf", "lebensjahr": "lebensjahr", "lebenskatastrophe": "lebenskatastroph", "lebenskraft": "lebenskraft", "lebenskräftig": "lebenskraft", "lebenslanges": "lebenslang", "lebenslauf": "lebenslauf", "lebensläufen": "lebenslauf", "lebenslicht": "lebenslicht", "lebenslust": "lebenslust", "lebenslustigen": "lebenslust", "lebensmittel": "lebensmittel", "lebensmittelembargos": "lebensmittelembargos", "lebensmitteln": "lebensmitteln", "lebensmut": "lebensmut", "lebensordnung": "lebensordn", "lebensordnungen": "lebensordn", "lebensregeln": "lebensregeln", "lebensretter": "lebensrett", "lebenssache": "lebenssach", "lebenssachverhalten": "lebenssachverhalt", "lebensseligkeit": "lebenssel", "lebenssituation": "lebenssituation", "lebensstunde": "lebensstund", "lebenstagen": "lebenstag", "lebenstrieb": "lebenstrieb", "lebenswandel": "lebenswandel", "lebenswandels": "lebenswandel", "lebenswasser": "lebenswass", "lebensweg": "lebensweg", "lebensweise": "lebensweis", "lebensweisen": "lebensweis", "lebensweisheit": "lebensweis", "lebenszustand": "lebenszustand", "lebenszustände": "lebenszustand", "leber": "leb", "leberwurst": "leberwurst", "lebest": "leb", "lebewohl": "lebewohl", "lebhaft": "lebhaft", "lebhafte": "lebhaft", "lebhaftem": "lebhaft", "lebhaften": "lebhaft", "lebhafter": "lebhaft", "lebhaftesten": "lebhaft", "lebhaftigkeit": "lebhaft", "lebkuchen": "lebkuch", "leblos": "leblos", "leblose": "leblos", "leblosen": "leblos", "lebloses": "leblos", "lebst": "lebst", "lebt": "lebt", "lebtag": "lebtag", "lebte": "lebt", "lebten": "lebt", "lebzeiten": "lebzeit", "lechleitner": "lechleitn", "lechneitner": "lechneitn", "lechzt": "lechzt", "lechzte": "lechzt", "lechzten": "lechzt", "lecken": "leck", "lecker": "leck", "leckerbissen": "leckerbiss", "leckere": "leck", "leckeren": "leck", "leckeres": "leck", "leckermäuler": "leckermaul", "leckte": "leckt", "leder": "led", "lederkäppchen": "lederkappch", "lederkleidung": "lederkleid", "ledernen": "ledern", "lederpantoffeln": "lederpantoffeln", "ledersäckchen": "ledersackch", "ledersofa": "ledersofa", "ledertapeten": "ledertapet", "lederzeug": "lederzeug", "ledig": "ledig", "ledige": "ledig", "lediglich": "ledig", "leer": "leer", "leere": "leer", "leeren": "leer", "leerer": "leer", "leeres": "leer", "leerheit": "leerheit", "leerraum": "leerraum", "leerstehende": "leersteh", "leerte": "leert", "leg": "leg", "legalität": "legalitat", "lege": "leg", "legen": "leg", "legendenbildung": "legendenbild", "leget": "leget", "legislative": "legislativ", "legitimation": "legitimation", "legitimationspapier": "legitimationspapi", "legitimationspapiere": "legitimationspapi", "legt": "legt", "legte": "legt", "legten": "legt", "lehmann": "lehmann", "lehmiger": "lehmig", "lehne": "lehn", "lehnsessel": "lehnsessel", "lehnt": "lehnt", "lehnte": "lehnt", "lehnten": "lehnt", "lehr": "lehr", "lehramtes": "lehramt", "lehrbegriff": "lehrbegriff", "lehrbegriffe": "lehrbegriff", "lehrbestimmungen": "lehrbestimm", "lehre": "lehr", "lehren": "lehr", "lehrende": "lehrend", "lehrenden": "lehrend", "lehrens": "lehr", "lehrer": "lehr", "lehrerin": "lehrerin", "lehrern": "lehr", "lehrerpult": "lehrerpult", "lehret": "lehret", "lehrgegenstände": "lehrgegenstand", "lehrjahren": "lehrjahr", "lehrling": "lehrling", "lehrlinge": "lehrling", "lehrmeinungen": "lehrmein", "lehrpunkte": "lehrpunkt", "lehrreichen": "lehrreich", "lehrreicher": "lehrreich", "lehrreiches": "lehrreich", "lehrsatz": "lehrsatz", "lehrsätze": "lehrsatz", "lehrsätzen": "lehrsatz", "lehrstück": "lehrstuck", "lehrstücke": "lehrstuck", "lehrt": "lehrt", "lehrte": "lehrt", "lehrten": "lehrt", "lehrwahrheiten": "lehrwahr", "leib": "leib", "leibarzt": "leibarzt", "leibe": "leib", "leiber": "leib", "leibes": "leib", "leibesgestalt": "leibesgestalt", "leibesleben": "leibesleb", "leibesnahrung": "leibesnahr", "leibesorgane": "leibesorgan", "leibesübungen": "leibesub", "leibgericht": "leibgericht", "leibgerichte": "leibgericht", "leibhafte": "leibhaft", "leibhaftige": "leibhaft", "leibhornisten": "leibhornist", "leibjäger": "leibjag", "leibjägern": "leibjag", "leiblich": "leiblich", "leibliche": "leiblich", "leiblichen": "leiblich", "leiblicher": "leiblich", "leibliches": "leiblich", "leibpferd": "leibpferd", "leibröcke": "leibrock", "leibsessel": "leibsessel", "leibt": "leibt", "leibte": "leibt", "leibteller": "leibtell", "leiche": "leich", "leichen": "leich", "leichenbegängnis": "leichenbegangnis", "leichengestank": "leichengestank", "leichenschmaus": "leichenschmaus", "leichnam": "leichnam", "leichname": "leichnam", "leichnamen": "leichnam", "leicht": "leicht", "leichtbeschwingte": "leichtbeschwingt", "leichte": "leicht", "leichten": "leicht", "leichter": "leicht", "leichtere": "leicht", "leichtes": "leicht", "leichtfertige": "leichtfert", "leichtfertigem": "leichtfert", "leichtfertiges": "leichtfert", "leichthin": "leichthin", "leichtigkeit": "leichtig", "leichtlich": "leichtlich", "leichtsinn": "leichtsinn", "leichtsinnig": "leichtsinn", "leichtsinnige": "leichtsinn", "leichtsinnigen": "leichtsinn", "leichtsinniger": "leichtsinn", "leichtsinnigkeit": "leichtsinn", "leichtsinns": "leichtsinn", "leid": "leid", "leide": "leid", "leiden": "leid", "leidend": "leidend", "leidende": "leidend", "leidenden": "leidend", "leidendes": "leidend", "leidens": "leid", "leidenschaft": "leidenschaft", "leidenschaften": "leidenschaft", "leidenschaftlich": "leidenschaft", "leidenschaftliche": "leidenschaft", "leidenschaftlicher": "leidenschaft", "leidenschaftlichkeit": "leidenschaft", "leidensgenossen": "leidensgenoss", "leidentlich": "leident", "leider": "leid", "leides": "leid", "leidet": "leidet", "leidige": "leidig", "leidlich": "leidlich", "leids": "leid", "leierkasten": "leierkast", "leiermann": "leiermann", "leiermänner": "leiermann", "leihen": "leih", "leim": "leim", "leimrute": "leimrut", "lein": "lein", "leine": "lein", "leinen": "lein", "leinene": "lein", "leinenen": "lein", "leinentüchern": "leinentuch", "leins": "lein", "leinwand": "leinwand", "leinwandbinde": "leinwandbind", "leinwandgewändern": "leinwandgewand", "leinwandne": "leinwandn", "leinwandstreifen": "leinwandstreif", "leipzig": "leipzig", "leis": "leis", "leisbewegte": "leisbewegt", "leise": "leis", "leisen": "leis", "leiser": "leis", "leises": "leis", "leiseste": "leis", "leisten": "leist", "leistet": "leistet", "leistete": "leistet", "leisteten": "leistet", "leistung": "leistung", "leistungen": "leistung", "leistungsfähigen": "leistungsfah", "leit": "leit", "leite": "leit", "leiten": "leit", "leiter": "leit", "leiterchen": "leiterch", "leiterin": "leiterin", "leiters": "leit", "leitest": "leit", "leitet": "leitet", "leitete": "leitet", "leitner": "leitn", "leitnermali": "leitnermali", "leitseil": "leitseil", "leitstern": "leit", "leitung": "leitung", "leitwort": "leitwort", "lenden": "lend", "leni": "leni", "lenis": "lenis", "lenken": "lenk", "lenkerin": "lenkerin", "lenkt": "lenkt", "lenkte": "lenkt", "lenzlichte": "lenzlicht", "lenzwind": "lenzwind", "leopard": "leopard", "lerche": "lerch", "lerchen": "lerch", "lerne": "lern", "lernen": "lern", "lernens": "lern", "lernt": "lernt", "lernte": "lernt", "lesebücher": "lesebuch", "lesen": "les", "leser": "les", "leserforum": "leserforum", "lestungen": "lestung", "lettern": "lett", "letzt": "letzt", "letzte": "letzt", "letzten": "letzt", "letztenmal": "letztenmal", "letzter": "letzt", "letztere": "letzt", "letzterem": "letzt", "letzteren": "letzt", "letzterer": "letzt", "letzteres": "letzt", "letztern": "letzt", "letztes": "letzt", "letztesmal": "letztesmal", "letzthin": "letzthin", "letztlich": "letztlich", "leuchte": "leucht", "leuchten": "leucht", "leuchtend": "leuchtend", "leuchtende": "leuchtend", "leuchtendem": "leuchtend", "leuchtenden": "leuchtend", "leuchtender": "leuchtend", "leuchter": "leucht", "leuchtern": "leucht", "leuchtet": "leuchtet", "leuchtete": "leuchtet", "leuchteten": "leuchtet", "leuchtkäfer": "leuchtkaf", "leugnen": "leugn", "leugnet": "leugnet", "leugneten": "leugnet", "leugnung": "leugnung", "leut": "leut", "leutchen": "leutch", "leute": "leut", "leuten": "leut", "leutlein": "leutlein", "leutnants": "leutnant", "leutselig": "leutsel", "leutseligkeit": "leutsel", "levi": "levi", "leviathan": "leviathan", "leviathans": "leviathan", "levis": "levis", "levit": "levit", "levite": "levit", "leviten": "levit", "lex": "lex", "lhrem": "lhrem", "libanon": "libanon", "libanons": "libanon", "libellen": "libell", "liber": "lib", "liberale": "liberal", "liberalen": "liberal", "liberaler": "liberal", "libero": "libero", "libni": "libni", "libyer": "liby", "lich": "lich", "liche": "lich", "licht": "licht", "lichtarten": "lichtart", "lichtbahn": "lichtbahn", "lichtbraunes": "lichtbraun", "lichte": "licht", "lichtecke": "lichteck", "lichtem": "licht", "lichten": "licht", "lichter": "licht", "lichterchen": "lichterch", "lichteren": "licht", "lichterloh": "lichterloh", "lichtern": "licht", "lichtes": "licht", "lichtete": "lichtet", "lichtfeld": "lichtfeld", "lichtflocken": "lichtflock", "lichtpünktchen": "lichtpunktch", "lichts": "licht", "lichtstrahlen": "lichtstrahl", "lichtstrahlungen": "lichtstrahl", "lichtung": "lichtung", "lichtungen": "lichtung", "lichtvoll": "lichtvoll", "lider": "lid", "lieb": "lieb", "liebchen": "liebch", "liebe": "lieb", "liebegutes": "liebegut", "lieben": "lieb", "liebende": "liebend", "liebenden": "liebend", "liebenswürdig": "liebenswurd", "liebenswürdige": "liebenswurd", "liebenswürdigen": "liebenswurd", "liebenswürdiger": "liebenswurd", "liebenswürdigkeit": "liebenswurd", "liebenswürdigste": "liebenswurd", "lieber": "lieb", "lieberasenden": "lieberas", "liebes": "lieb", "liebesaffäre": "liebesaffar", "liebesarten": "liebesart", "liebesbezeugungen": "liebesbezeug", "liebesbriefe": "liebesbrief", "liebeserklärung": "liebeserklar", "liebeserklärungen": "liebeserklar", "liebesfeuer": "liebesfeu", "liebesfurcht": "liebesfurcht", "liebesgedanken": "liebesgedank", "liebesgeschichte": "liebesgeschicht", "liebesgeschwellten": "liebesgeschwellt", "liebesgetändel": "liebesgetandel", "liebesglut": "liebesglut", "liebesgschicht": "liebesgschicht", "liebeshandel": "liebeshandel", "liebeshaus": "liebeshaus", "liebeslauten": "liebeslaut", "liebesliebe": "liebeslieb", "liebesliteratur": "liebesliteratur", "liebeslocken": "liebeslock", "liebesneigungen": "liebesneig", "liebespflicht": "liebespflicht", "liebestolle": "liebestoll", "liebestriebe": "liebestrieb", "liebestrieben": "liebestrieb", "liebeswerke": "liebeswerk", "liebeswerken": "liebeswerk", "liebet": "liebet", "liebevoll": "liebevoll", "liebevollen": "liebevoll", "liebfrauenkirche": "liebfrauenkirch", "liebhaben": "liebhab", "liebhaber": "liebhab", "liebhabern": "liebhab", "liebkosen": "liebkos", "liebkosendes": "liebkos", "liebkost": "liebkost", "liebkoste": "liebkost", "liebkosungen": "liebkos", "lieblich": "lieblich", "liebliche": "lieblich", "lieblichem": "lieblich", "lieblichen": "lieblich", "lieblicher": "lieblich", "liebliches": "lieblich", "lieblichkeit": "lieblich", "lieblichste": "lieblich", "lieblichsten": "lieblich", "liebling": "liebling", "lieblingsbilder": "lieblingsbild", "lieblos": "lieblos", "liebreich": "liebreich", "liebreizenden": "liebreiz", "liebs": "lieb", "liebsleut": "liebsleut", "liebst": "lieb", "liebste": "lieb", "liebsten": "lieb", "liebster": "lieb", "liebstes": "lieb", "liebt": "liebt", "liebtätigkeit": "liebtat", "liebtätigkeitswerke": "liebtatigkeitswerk", "liebte": "liebt", "liebten": "liebt", "lied": "lied", "liedchen": "liedch", "liede": "lied", "lieder": "lied", "liederbuch": "liederbuch", "liederchen": "liederch", "liedergäste": "liedergast", "liederlich": "lied", "liederlichen": "lied", "liederlicher": "lied", "liedern": "lied", "liedes": "lied", "liedl": "liedl", "liedln": "liedln", "lief": "lief", "liefe": "lief", "liefen": "lief", "liefern": "lief", "liefert": "liefert", "lieferung": "liefer", "lieg": "lieg", "liege": "lieg", "liegen": "lieg", "liegend": "liegend", "liegende": "liegend", "liegenden": "liegend", "liegendes": "liegend", "liegengeblieben": "liegengeblieb", "liegengelassen": "liegengelass", "liegenlassen": "liegenlass", "liegst": "lieg", "liegt": "liegt", "lieh": "lieh", "lieschen": "liesch", "liese": "lies", "liess": "liess", "ließ": "liess", "liesse": "liess", "ließe": "liess", "liessen": "liess", "ließen": "liess", "liest": "liest", "liestal": "liestal", "life": "lif", "liked": "liked", "limonade": "limonad", "limonaden": "limonad", "lind": "lind", "linde": "lind", "linden": "lind", "lindenblättchen": "lindenblattch", "lindenbolz": "lindenbolz", "lindengebüsches": "lindengebusch", "lindenkranze": "lindenkranz", "lindern": "lind", "lineal": "lineal", "linie": "lini", "linien": "lini", "linienschiffe": "linienschiff", "linke": "link", "linken": "link", "linker": "link", "linkes": "link", "linkische": "linkisch", "links": "link", "linnen": "linn", "linum": "linum", "lipp": "lipp", "lippe": "lipp", "lippen": "lipp", "lippenbeissen": "lippenbeiss", "lippenbeißen": "lippenbeiss", "lippenbewegungen": "lippenbeweg", "lipps": "lipps", "liquidierte": "liquidiert", "lischer": "lisch", "lischsprachiges": "lischsprach", "lispeln": "lispeln", "lissabon": "lissabon", "list": "list", "liste": "list", "listen": "list", "listig": "listig", "listige": "listig", "listigen": "listig", "listiger": "listig", "listigerweise": "listigerweis", "listiges": "listig", "liter": "lit", "literatur": "literatur", "literaturliste": "literaturlist", "litt": "litt", "litte": "litt", "litten": "litt", "living": "living", "livius": "livius", "livree": "livre", "ln": "ln", "lndikativ": "lndikativ", "load": "load", "lob": "lob", "lobe": "lob", "loben": "lob", "lobenden": "lobend", "lobet": "lobet", "lobgesang": "lobgesang", "löblicher": "loblich", "lobpreisen": "lobpreis", "lobpreisung": "lobpreis", "lobsingen": "lobsing", "lobsinget": "lobsinget", "lobt": "lobt", "lobte": "lobt", "loch": "loch", "löchelchen": "lochelch", "löcher": "loch", "loci": "loci", "locis": "locis", "löckchen": "lockch", "locken": "lock", "lockend": "lockend", "lockenden": "lockend", "lockenhaar": "lockenhaar", "lockenkopfe": "lockenkopf", "lockerten": "lockert", "lockort": "lockort", "lockruf": "lockruf", "lockte": "lockt", "locus": "locus", "lodenmantel": "lodenmantel", "loeb": "loeb", "löffel": "loffel", "löffeln": "loffeln", "log": "log", "loge": "log", "logik": "logik", "logisch": "logisch", "logische": "logisch", "logischen": "logisch", "logouv": "logouv", "logwn": "logwn", "lohe": "loh", "lohender": "lohend", "lohengrin": "lohengrin", "lohete": "lohet", "lohn": "lohn", "lohne": "lohn", "lohnes": "lohn", "lohnkutscher": "lohnkutsch", "lohnt": "lohnt", "lohnte": "lohnt", "lohnverhältnis": "lohnverhaltnis", "lokal": "lokal", "lokale": "lokal", "lokalen": "lokal", "lokomotive": "lokomotiv", "london": "london", "londoner": "london", "lorbeeren": "lorbe", "lorbeerkränze": "lorbeerkranz", "los": "los", "lösche": "losch", "löschen": "losch", "löschpapierne": "loschpapiern", "löscht": "loscht", "lose": "los", "lösegeld": "losegeld", "lösen": "los", "lösenden": "losend", "losfahren": "losfahr", "losgebrochen": "losgebroch", "losgebrochener": "losgebroch", "losgehen": "losgeh", "losgerissen": "losgeriss", "losgeschlagen": "losgeschlag", "losgetrennt": "losgetrennt", "loskaufen": "loskauf", "loskettete": "loskettet", "loskommen": "loskomm", "loslassen": "loslass", "losmachen": "losmach", "losreissen": "losreiss", "losrennen": "losrenn", "lossagung": "lossag", "losschlug": "losschlug", "löst": "lost", "löste": "lost", "lösten": "lost", "losung": "losung", "lösung": "losung", "loswinden": "loswind", "loszubinden": "loszubind", "loszubrennen": "loszubrenn", "loszubringen": "loszubring", "loszukaufen": "loszukauf", "loszukommen": "loszukomm", "loszulassen": "loszulass", "loszumachen": "loszumach", "loszureissen": "loszureiss", "loszuschlagen": "loszuschlag", "loszuschreien": "loszuschrei", "loszuspringen": "loszuspring", "lot": "lot", "lotterie": "lotteri", "lotteriemann": "lotteriemann", "lotterien": "lotteri", "lotteriespiel": "lotteriespiel", "lotterieverkehr": "lotterieverkehr", "lotterige": "lotter", "lotterleben": "lotterleb", "lotterneste": "lottern", "louisdors": "louisdor", "louison": "louison", "louisons": "louison", "love": "lov", "low": "low", "löwe": "low", "löwen": "low", "löwenhaut": "lowenhaut", "löwenjagd": "lowenjagd", "löwin": "lowin", "lucelle": "lucell", "lucinde": "lucind", "lücke": "luck", "lücken": "luck", "lückenbüsser": "luckenbuss", "lückenhaft": "luckenhaft", "lud": "lud", "luden": "lud", "luder": "lud", "ludwig": "ludwig", "luft": "luft", "luftballon": "luftballon", "luftballons": "luftballon", "luftblasen": "luftblas", "lüftchen": "luftch", "luftdrucks": "luftdruck", "lüfte": "luft", "lüften": "luft", "lufterscheinung": "lufterschein", "lüftete": "luftet", "luftgebilde": "luftgebild", "lufthauch": "lufthauch", "luftig": "luftig", "luftige": "luftig", "luftigen": "luftig", "luftjagd": "luftjagd", "luftlosen": "luftlos", "luftraum": "luftraum", "luftsänger": "luftsang", "luftschloss": "luftschloss", "luftschlösser": "luftschloss", "luga": "luga", "lüge": "lug", "lügen": "lug", "lügenberichten": "lugenbericht", "lügenhaft": "lugenhaft", "lügenhafte": "lugenhaft", "lügner": "lugn", "lügnerin": "lugnerin", "lügners": "lugn", "lugst": "lugst", "lügst": "lugst", "lügt": "lugt", "luitpold": "luitpold", "luk": "luk", "lukas": "lukas", "lukasevangelium": "lukasevangelium", "luke": "luk", "lümmel": "lummel", "lümmelte": "lummelt", "lumpen": "lump", "lumpenhund": "lumpenhund", "lumpenhunde": "lumpenhund", "lumpenkleider": "lumpenkleid", "lumpenkleidung": "lumpenkleid", "lunch": "lunch", "lunge": "lung", "lungen": "lung", "lungenflügel": "lungenflugel", "lungenschuss": "lungenschuss", "lust": "lust", "lustbarkeit": "lustbar", "lustbarkeiten": "lustbar", "lüste": "lust", "lüstern": "lust", "lüsternem": "lustern", "lüsternheit": "lustern", "lustig": "lustig", "lustige": "lustig", "lustigen": "lustig", "lustiger": "lustig", "lustiges": "lustig", "lustigkeit": "lustig", "lustigsten": "lustig", "lustreiz": "lustreiz", "lustreize": "lustreiz", "lustreizen": "lustreiz", "lustspielen": "lustspiel", "lustwald": "lustwald", "lustwälder": "lustwald", "lustwandelnden": "lustwandelnd", "lustwandelte": "lustwandelt", "lutherisch": "luther", "lutherische": "luther", "lutherischem": "luther", "lutherischen": "luther", "lutherischer": "luther", "lutherland": "lutherland", "lutherstädte": "lutherstadt", "lutum": "lutum", "lütütü": "lututu", "lux": "lux", "luxerl": "luxerl", "luxerls": "luxerl", "luxuriösen": "luxurios", "luzifer": "luzif", "lwb": "lwb", "lydia": "lydia", "lydias": "lydias", "lydier": "lydi", "lyon": "lyon", "lyra": "lyra", "lyrik": "lyrik", "m": "m", "ma": "ma", "maastricht": "maastricht", "maastrichter": "maastricht", "macbeth": "macbeth", "macbeths": "macbeth", "mach": "mach", "mache": "mach", "machen": "mach", "machend": "machend", "machenden": "machend", "macher": "mach", "machers": "mach", "machet": "machet", "macheten": "machet", "machiavelli": "machiavelli", "machli": "machli", "machst": "mach", "macht": "macht", "machte": "macht", "mächte": "macht", "machten": "macht", "mächten": "macht", "machtest": "macht", "machthabenden": "machthab", "machthaber": "machthab", "mächtig": "machtig", "mächtige": "machtig", "mächtigen": "machtig", "mächtiger": "machtig", "mächtiges": "machtig", "mächtigste": "machtig", "machtlos": "machtlos", "machtmittel": "machtmittel", "machtvoll": "machtvoll", "mad": "mad", "mädchen": "madch", "mädchenhaft": "madchenhaft", "mädchenhaften": "madchenhaft", "mädchens": "madch", "madehen": "madeh", "mädel": "madel", "madeleine": "madelein", "mädels": "madel", "madl": "madl", "madln": "madln", "mag": "mag", "magazin": "magazin", "magd": "magd", "mägde": "magd", "mägden": "magd", "magen": "mag", "mager": "mag", "magere": "mag", "mageren": "mag", "magerer": "mag", "magerkeit": "mager", "magerten": "magert", "magi": "magi", "magica": "magica", "magie": "magi", "magier": "magi", "magiern": "magi", "magisch": "magisch", "magische": "magisch", "magischen": "magisch", "mäglein": "maglein", "magnaten": "magnat", "magnet": "magnet", "magnetgebirge": "magnetgebirg", "magst": "magst", "mahal": "mahal", "mahalalel": "mahalalel", "mahalalels": "mahalalel", "mahl": "mahl", "mahle": "mahl", "mahlen": "mahl", "mahles": "mahl", "mählich": "mahlich", "mahlzeit": "mahlzeit", "mahlzeiten": "mahlzeit", "mahm": "mahm", "mähne": "mahn", "mahnte": "mahnt", "mahnung": "mahnung", "mahomets": "mahomet", "mai": "mai", "maigesang": "maigesang", "maiglöckchenblatt": "maiglockchenblatt", "maikäfer": "maikaf", "maikäferballade": "maikaferballad", "maikäferbein": "maikaferbein", "maikäferbeinchen": "maikaferbeinch", "maikäferhafte": "maikaferhaft", "maikäferherz": "maikaferherz", "maikäferlein": "maikaferlein", "maikäfermann": "maikafermann", "maikäfern": "maikaf", "maikäfertänzchen": "maikafertanzch", "maikäfertänze": "maikafertanz", "mail": "mail", "mailand": "mailand", "mailänder": "mailand", "mailändischen": "mailand", "main": "main", "maison": "maison", "maisonne": "maisonn", "majestät": "majestat", "majestätisch": "majestat", "majorität": "majoritat", "makaber": "makab", "makarius": "makarius", "mal": "mal", "male": "mal", "malen": "mal", "maler": "mal", "malerei": "malerei", "malerisch": "maler", "malerische": "maler", "mali": "mali", "malis": "malis", "malottke": "malottk", "malottkes": "malottk", "malte": "malt", "malum": "malum", "malzeichen": "malzeich", "man": "man", "manch": "manch", "manche": "manch", "manchem": "manch", "manchen": "manch", "mancher": "manch", "mancherlei": "mancherlei", "manches": "manch", "manchesterjacke": "manchesterjack", "manchmal": "manchmal", "mandat": "mandat", "mandelkern": "mandelk", "mandeln": "mandeln", "mandeltorte": "mandeltort", "mandieren": "mandi", "manfred": "manfred", "mangel": "mangel", "mängel": "mangel", "mangelhaft": "mangelhaft", "mangelhafte": "mangelhaft", "mangelhaftem": "mangelhaft", "mangelndes": "mangelnd", "mangelt": "mangelt", "mangelte": "mangelt", "manier": "mani", "manieren": "mani", "manierlich": "mani", "mann": "mann", "manna": "manna", "mannbares": "mannbar", "männchen": "mannch", "männchens": "mannch", "manndi": "manndi", "manne": "mann", "männer": "mann", "männern": "mann", "männerstimme": "mannerstimm", "mannes": "mann", "mannesalter": "mannesalt", "mannesbilde": "mannesbild", "mannestränen": "mannestran", "mannestugend": "mannestug", "mannhaft": "mannhaft", "mannhaftigkeit": "mannhaft", "mannichfachen": "mannichfach", "mannichfaltigkeit": "mannichfalt", "mannigfach": "mannigfach", "mannigfachem": "mannigfach", "mannigfacher": "mannigfach", "mannigfaltige": "mannigfalt", "mannigfaltigen": "mannigfalt", "mannigfaltigkeit": "mannigfalt", "mannigfaltigkeiten": "mannigfalt", "mannigfaltigsten": "mannigfalt", "männin": "mannin", "männlein": "mannlein", "mannlich": "mannlich", "männlich": "mannlich", "männliche": "mannlich", "männlichen": "mannlich", "männlichkeit": "mannlich", "mannschaft": "mannschaft", "mannshohen": "mannshoh", "mannsleute": "mannsleut", "mannstiefen": "mannstief", "manoah": "manoah", "manövriert": "manovriert", "manschetten": "manschett", "mantel": "mantel", "mantels": "mantel", "mantelsack": "mantelsack", "mantelträger": "manteltrag", "manuskript": "manuskript", "manuskripte": "manuskript", "manuskripten": "manuskript", "manz": "manz", "manzen": "manz", "manzens": "manz", "manzin": "manzin", "mar": "mar", "marah": "marah", "march": "march", "märchen": "march", "marcs": "marcs", "mard": "mard", "marderdreck": "marderdreck", "mardin": "mardin", "maria": "maria", "mariand": "mariand", "marienbild": "marienbild", "marienkäferkinderchen": "marienkaferkinderch", "marinelli": "marinelli", "mario": "mario", "marionettenspiel": "marionettenspiel", "maritata": "maritata", "mark": "mark", "markierte": "markiert", "markln": "markln", "marks": "mark", "markstückl": "markstuckl", "marksubstanz": "marksubstanz", "markt": "markt", "marktplatz": "marktplatz", "marktsegment": "marktsegment", "marktwirtschaft": "marktwirtschaft", "marmor": "marmor", "marotte": "marott", "marquis": "marquis", "marsala": "marsala", "marsch": "marsch", "märsche": "marsch", "marschiert": "marschiert", "marschierte": "marschiert", "marschierten": "marschiert", "marschrichtung": "marschricht", "marseilingen": "marseiling", "marseille": "marseill", "marterl": "marterl", "marterleib": "marterleib", "marterls": "marterl", "marti": "marti", "martialischen": "martial", "martin": "martin", "martis": "martis", "märtyrer": "martyr", "marx": "marx", "märz": "marz", "marzipan": "marzipan", "marzipanschweinezüchterei": "marzipanschweinezuchterei", "marzipanstrassen": "marzipanstrass", "märzwoche": "marzwoch", "maschen": "masch", "maschine": "maschin", "maschinengewehren": "maschinengewehr", "maschinenwerk": "maschinenwerk", "maschinenwesen": "maschinenwes", "masculus": "masculus", "maske": "mask", "masken": "mask", "maskenfahrt": "maskenfahrt", "maskenzuges": "maskenzug", "maskerade": "maskerad", "maskiert": "maskiert", "mass": "mass", "maß": "mass", "masse": "mass", "maße": "mass", "massen": "mass", "maßen": "mass", "massenhaft": "massenhaft", "masses": "mass", "maßes": "mass", "massgabe": "massgab", "maßgabe": "massgab", "massgebenden": "massgeb", "maßgebenden": "massgeb", "mässig": "massig", "mässige": "massig", "mässigen": "massig", "mässiger": "massig", "mäßiger": "massig", "mässigkeit": "massig", "mässigt": "massigt", "mäßigt": "massigt", "mässigte": "massigt", "mässigung": "massig", "mäßigung": "massig", "massiv": "massiv", "massive": "massiv", "massiven": "massiv", "massiver": "massiv", "maßlos": "masslos", "massnahmen": "massnahm", "massnehmen": "massnehm", "massregeln": "massregeln", "massstab": "massstab", "maßstab": "massstab", "massstabe": "massstab", "maßstabe": "massstab", "maßstäbe": "massstab", "masste": "masst", "maßte": "masst", "mastbaum": "mastbaum", "masterminded": "masterminded", "mästung": "mastung", "mastvieh": "mastvieh", "material": "material", "materiale": "material", "materialen": "material", "materialer": "material", "materie": "materi", "materiell": "materiell", "materielle": "materiell", "materiellen": "materiell", "materieller": "materiell", "materielles": "materiell", "mathäus": "mathaus", "mathematik": "mathemat", "mathematisch": "mathemat", "mathematische": "mathemat", "mathematischen": "mathemat", "matrose": "matros", "matt": "matt", "matten": "matt", "matth": "matth", "matthias": "matthias", "mattigkeit": "mattig", "mauer": "mau", "mauern": "mau", "mauertür": "mauertur", "mauerwerk": "mauerwerk", "mauerwinkel": "mauerwinkel", "maul": "maul", "maulaffen": "maulaff", "maulbeerbäume": "maulbeerbaum", "mäulchen": "maulch", "maule": "maul", "mäuler": "maul", "mäulern": "maul", "maulkorb": "maulkorb", "maultasche": "maultasch", "maulvoll": "maulvoll", "maulwurf": "maulwurf", "maurienne": "maurienn", "maus": "maus", "mäuschen": "mausch", "mäuschenstill": "mauschenstill", "mäuse": "maus", "mäusefallen": "mausefall", "mausen": "maus", "mäuslein": "mauslein", "mauslöchern": "mausloch", "maxime": "maxim", "maximen": "maxim", "mechanisch": "mechan", "mechanismus": "mechanismus", "mechujael": "mechujael", "meckern": "meck", "meckerndes": "meckernd", "meckerte": "meckert", "meckerten": "meckert", "mecklenburg": "mecklenburg", "medaille": "medaill", "medaillon": "medaillon", "medien": "medi", "medikament": "medikament", "meditativen": "meditativ", "medizin": "medizin", "medizinisch": "medizin", "meer": "meer", "meerblauen": "meerblau", "meere": "meer", "meeren": "meer", "meeres": "meer", "meeresgewächs": "meeresgewach", "meerestiefen": "meerestief", "meergrünen": "meergrun", "meerschiffe": "meerschiff", "meerwasser": "meerwass", "meerwunder": "meerwund", "mehr": "mehr", "mehre": "mehr", "mehren": "mehr", "mehrenteils": "mehrenteil", "mehrer": "mehr", "mehrere": "mehr", "mehrerem": "mehr", "mehreren": "mehr", "mehrerer": "mehr", "mehreres": "mehr", "mehrertrag": "mehrertrag", "mehresten": "mehr", "mehret": "mehret", "mehrfach": "mehrfach", "mehrfache": "mehrfach", "mehrfachen": "mehrfach", "mehrheit": "mehrheit", "mehrheitsfähig": "mehrheitsfah", "mehrjährige": "mehrjahr", "mehrmals": "mehrmal", "mehrstimmiges": "mehrstimm", "mehrte": "mehrt", "mehrten": "mehrt", "mehrzahl": "mehrzahl", "mei": "mei", "meiden": "meid", "meilen": "meil", "meilenstein": "meilenstein", "meilensteine": "meilenstein", "mein": "mein", "meine": "mein", "meineidbauer": "meineidbau", "meineidiger": "meineid", "meinem": "mein", "meinen": "mein", "meiner": "mein", "meines": "mein", "meinetwegen": "meinetweg", "meinetwillen": "meinetwill", "meinige": "meinig", "meinigen": "meinig", "meins": "mein", "meinst": "mein", "meint": "meint", "meinte": "meint", "meinten": "meint", "meinung": "meinung", "meinungen": "meinung", "meisen": "meis", "meisseln": "meisseln", "meist": "meist", "meistbietenden": "meistbiet", "meiste": "meist", "meisten": "meist", "meistens": "meist", "meistenteils": "meistenteil", "meister": "meist", "meisterhaft": "meisterhaft", "meisterhand": "meisterhand", "meisterin": "meisterin", "meisterinnen": "meisterinn", "meisterlich": "meist", "meistern": "meist", "meisters": "meist", "meisterschaft": "meisterschaft", "meitli": "meitli", "melancholisch": "melanchol", "melancholische": "melanchol", "melancholischen": "melanchol", "melcher": "melch", "melchior": "melchior", "melde": "meld", "melden": "meld", "meldet": "meldet", "meldete": "meldet", "meldung": "meldung", "melodie": "melodi", "melzergrunde": "melzergrund", "memorandum": "memorandum", "memorierungen": "memorier", "menasse": "menass", "menge": "meng", "mengen": "meng", "meninges": "mening", "mensch": "mensch", "menschen": "mensch", "menschenähnliches": "menschenahn", "menschenähnlichkeit": "menschenahn", "menschenalter": "menschenalt", "menschenauge": "menschenaug", "menschenfeindlich": "menschenfeind", "menschenfresser": "menschenfress", "menschenführung": "menschenfuhr", "menschengeistes": "menschengeist", "menschengeschlecht": "menschengeschlecht", "menschengeschlechte": "menschengeschlecht", "menschengeschlechts": "menschengeschlecht", "menschengesichter": "menschengesicht", "menschenhaut": "menschenhaut", "menschenherde": "menschenherd", "menschenkenntnis": "menschenkenntnis", "menschenkind": "menschenkind", "menschenleben": "menschenleb", "menschenleeren": "menschenle", "menschenliebe": "menschenlieb", "menschenmenge": "menschenmeng", "menschenmörder": "menschenmord", "menschensamen": "menschensam", "menschenseele": "menschenseel", "menschensohn": "menschensohn", "menschensöhne": "menschensohn", "menschenvernunft": "menschenvernunft", "menschenverstand": "menschenverstand", "menschenverstande": "menschenverstand", "menschenverstandes": "menschenverstand", "menschenwohnungen": "menschenwohn", "menschgeschlecht": "menschgeschlecht", "menschheit": "menschheit", "menschlein": "menschlein", "menschlich": "menschlich", "menschliche": "menschlich", "menschlichen": "menschlich", "menschlicher": "menschlich", "menschliches": "menschlich", "menschlichkeit": "menschlich", "menschlichkeiten": "menschlich", "menseh": "menseh", "mentale": "mental", "mentalitat": "mentalitat", "menü": "menu", "mer": "mer", "merari": "merari", "meraris": "meraris", "merk": "merk", "merke": "merk", "merken": "merk", "merklich": "merklich", "merklichem": "merklich", "merkmal": "merkmal", "merkmale": "merkmal", "merkt": "merkt", "merkte": "merkt", "merkten": "merkt", "merkwürdig": "merkwurd", "merkwürdige": "merkwurd", "merkwürdigen": "merkwurd", "merkwürdiger": "merkwurd", "merkwürdigerweise": "merkwurdigerweis", "merkwürdiges": "merkwurd", "merkwürdigkeit": "merkwurd", "merkwürdigkeiten": "merkwurd", "merkwürdigste": "merkwurd", "merkwürdigsten": "merkwurd", "meschech": "meschech", "mesmer": "mesm", "mess": "mess", "messe": "mess", "messen": "mess", "messer": "mess", "messias": "messias", "messiaschristlich": "messiaschrist", "messiasfrage": "messiasfrag", "messingdrahtes": "messingdraht", "messmer": "messm", "messrohr": "messrohr", "meßrohr": "messrohr", "messung": "messung", "metall": "metall", "metalle": "metall", "metaphysik": "metaphys", "metaphysische": "metaphys", "metaphysischen": "metaphys", "meter": "met", "meterlang": "meterlang", "meterlange": "meterlang", "methode": "method", "methoden": "method", "methodenlehre": "methodenlehr", "methodisch": "method", "methodische": "method", "methodischen": "method", "methuschael": "methuschael", "methuschelach": "methuschelach", "methuschelachs": "methuschelach", "metier": "meti", "metropole": "metropol", "metropolitane": "metropolitan", "metzger": "metzg", "metzgerwägelchen": "metzgerwagelch", "meuchelmörder": "meuchelmord", "meusal": "meusal", "mfs": "mfs", "mi": "mi", "miau": "miau", "miauend": "miauend", "mich": "mich", "micha": "micha", "microsoftboss": "microsoftboss", "midian": "midian", "midianiter": "midianit", "midians": "midian", "mieder": "mied", "mielke": "mielk", "miene": "mien", "mienen": "mien", "mierte": "miert", "miesen": "mies", "miete": "miet", "mieter": "miet", "mietern": "miet", "mietete": "mietet", "miethäuser": "miethaus", "mietsmann": "mietsmann", "migros": "migros", "mikrofon": "mikrofon", "mikrofons": "mikrofon", "milch": "milch", "milchbäume": "milchbaum", "milchgesichtern": "milchgesicht", "milchkannen": "milchkann", "milchmachens": "milchmach", "milchstrasse": "milchstrass", "milchstrassen": "milchstrass", "milchstrassenhonig": "milchstrassenhon", "milchstrassenmann": "milchstrassenmann", "milchstrassenmannes": "milchstrassenmann", "milchstrassenschlagsahne": "milchstrassenschlagsahn", "milchtöpfe": "milchtopf", "milde": "mild", "mildem": "mild", "milden": "mild", "milder": "mild", "milderen": "mild", "milderes": "mild", "mildert": "mildert", "mildes": "mild", "mildesten": "mild", "militär": "militar", "militärdienst": "militardien", "militärgelände": "militargeland", "militärhistoriker": "militarhistor", "militärisch": "militar", "militärische": "militar", "militärischer": "militar", "militärperson": "militarperson", "militärs": "militar", "militärzeit": "militarzeit", "milliarden": "milliard", "million": "million", "millionär": "millionar", "millionärin": "millionarin", "millionen": "million", "mimische": "mimisch", "mincha": "mincha", "minder": "mind", "mindere": "mind", "minderheit": "mind", "minderheiten": "mind", "minderheitensituation": "minderheitensituation", "minderjährige": "minderjahr", "mindern": "mind", "minderte": "mindert", "minderwertigkeit": "minderwert", "mindeste": "mind", "mindesten": "mind", "mindestens": "mindest", "minimum": "minimum", "ministerpräsident": "ministerprasident", "ministerpräsidenten": "ministerprasident", "minna": "minna", "minnespiel": "minnespiel", "minnig": "minnig", "minorität": "minoritat", "minute": "minut", "minuten": "minut", "minutenlang": "minutenlang", "minutenlangen": "minutenlang", "minutenzeiger": "minutenzeig", "mir": "mir", "mirakels": "mirakel", "mirl": "mirl", "mischael": "mischael", "mischen": "misch", "mischt": "mischt", "mischte": "mischt", "mischten": "mischt", "mischung": "mischung", "miserabligs": "miserabl", "miss": "miss", "miß": "miss", "missbrauch": "missbrauch", "mißbrauch": "missbrauch", "missbräuche": "missbrauch", "mißbräuche": "missbrauch", "missbrauchen": "missbrauch", "mißbrauchen": "missbrauch", "missbrauchsdebatte": "missbrauchsdebatt", "missbrauchten": "missbraucht", "mißbrauchten": "missbraucht", "missdeutung": "missdeut", "missdeutungen": "missdeut", "missen": "miss", "missetat": "missetat", "missetaten": "missetat", "missetäter": "missetat", "mißfallen": "missfall", "missfällig": "missfall", "mißfällig": "missfall", "missfiel": "missfiel", "missfielen": "missfiel", "missgeschick": "missgeschick", "missgestaltetes": "missgestaltet", "mißgestaltetes": "missgestaltet", "mißglückte": "missgluckt", "missgriff": "missgriff", "missgunst": "missgun", "misshandeln": "misshandeln", "misshandelt": "misshandelt", "mißhandelt": "misshandelt", "misshandelte": "misshandelt", "misshandle": "misshandl", "misshandlung": "misshandl", "mission": "mission", "missionarisch": "missionar", "missionieren": "missioni", "missioniert": "missioniert", "missionsfeld": "missionsfeld", "missionsgesellschaft": "missionsgesellschaft", "missionswille": "missionswill", "misslang": "misslang", "misslich": "misslich", "missliebig": "misslieb", "misslungenen": "misslung", "missmanagement": "missmanagement", "missmutig": "missmut", "misst": "misst", "mißt": "misst", "misste": "misst", "misstrauen": "misstrau", "misstrauisch": "misstrau", "mißtrauisch": "misstrau", "misstrauischem": "misstrau", "misstrauischen": "misstrau", "mißtrauischer": "misstrau", "misstrauten": "misstraut", "missvergnügt": "missvergnugt", "missverstande": "missverstand", "missverstanden": "missverstand", "mißverstanden": "missverstand", "missverständlich": "missverstand", "mißverständlich": "missverstand", "missverständlichen": "missverstand", "mißverständlichen": "missverstand", "missverständnis": "missverstandnis", "mißverständnis": "missverstandnis", "missverständnisse": "missverstandnis", "mißverständnisse": "missverstandnis", "missverstehen": "missversteh", "mißverstehen": "missversteh", "missversteht": "missversteht", "misswachs": "misswach", "mistbauer": "mistbau", "mistviech": "mistviech", "mit": "mit", "mitanand": "mitanand", "mitarbeit": "mitarbeit", "mitarbeitenden": "mitarbeit", "mitarbeiter": "mitarbeit", "mitarbeiterinnen": "mitarbeiterinn", "mitarbeitern": "mitarbeit", "mitass": "mitass", "mitaß": "mitass", "mitbegreifen": "mitbegreif", "mitbesitzer": "mitbesitz", "mitbrachte": "mitbracht", "mitbrächte": "mitbracht", "mitbrachten": "mitbracht", "mitbringen": "mitbring", "mitbringt": "mitbringt", "mitbürger": "mitburg", "mitbürgern": "mitburg", "miteinand": "miteinand", "miteinander": "miteinand", "miteinzubeziehen": "miteinzubezieh", "miterleben": "miterleb", "mitfahren": "mitfahr", "mitfahrer": "mitfahr", "mitführt": "mitfuhrt", "mitführte": "mitfuhrt", "mitg": "mitg", "mitgeben": "mitgeb", "mitgebracht": "mitgebracht", "mitgedachte": "mitgedacht", "mitgeführt": "mitgefuhrt", "mitgegeben": "mitgegeb", "mitgehen": "mitgeh", "mitgeht": "mitgeht", "mitgenommen": "mitgenomm", "mitgerechnet": "mitgerechnet", "mitgerissen": "mitgeriss", "mitgesandt": "mitgesandt", "mitgesellen": "mitgesell", "mitgestaltet": "mitgestaltet", "mitgesungen": "mitges", "mitgetan": "mitgetan", "mitgeteilt": "mitgeteilt", "mitgewirkt": "mitgewirkt", "mitgift": "mitgift", "mitginge": "mitging", "mitglied": "mitglied", "mitglieder": "mitglied", "mitgliedern": "mitglied", "mitgliederversammlung": "mitgliederversamml", "mitgliedkirchen": "mitgliedkirch", "mitgliedskirchen": "mitgliedskirch", "mithalten": "mithalt", "mithelfen": "mithelf", "mithilfe": "mithilf", "mithin": "mithin", "mithumpeln": "mithumpeln", "mititium": "mititium", "mitkommen": "mitkomm", "mitkommt": "mitkommt", "mitlachen": "mitlach", "mitleid": "mitleid", "mitleidenschaft": "mitleidenschaft", "mitleidig": "mitleid", "mitleids": "mitleid", "mitmachte": "mitmacht", "mitmanaged": "mitmanaged", "mitmenschen": "mitmensch", "mitn": "mitn", "mitnahm": "mitnahm", "mitnähme": "mitnahm", "mitnahmen": "mitnahm", "mitnehmen": "mitnehm", "mitnichten": "mitnicht", "mitschuldig": "mitschuld", "mitschuldigen": "mitschuld", "mitspielen": "mitspiel", "mitstreiten": "mitstreit", "mitstritten": "mitstritt", "mitt": "mitt", "mittag": "mittag", "mittagbrot": "mittagbrot", "mittagessen": "mittagess", "mittags": "mittag", "mittagseite": "mittagseit", "mittagshelle": "mittagshell", "mittagsmahl": "mittagsmahl", "mittagspausen": "mittagspaus", "mittagsschläfchen": "mittagsschlafch", "mittagssonne": "mittagssonn", "mittagsstunde": "mittagsstund", "mittagszeit": "mittagszeit", "mitte": "mitt", "mitteilen": "mitteil", "mitteilsam": "mitteilsam", "mitteilsamer": "mitteilsam", "mitteilt": "mitteilt", "mitteilte": "mitteilt", "mitteilten": "mitteilt", "mitteilung": "mitteil", "mittel": "mittel", "mittelalter": "mittelalt", "mittelbar": "mittelbar", "mittelbare": "mittelbar", "mittelbaren": "mittelbar", "mittelbarer": "mittelbar", "mittelchen": "mittelch", "mittelding": "mittelding", "mittelgrosses": "mittelgross", "mittelgroßes": "mittelgross", "mittelmässigkeit": "mittelmass", "mitteln": "mitteln", "mittelpunkt": "mittelpunkt", "mittelpunkte": "mittelpunkt", "mittels": "mittel", "mittelsmann": "mittelsmann", "mittelsperson": "mittelsperson", "mittelst": "mittel", "mittelzustande": "mittelzustand", "mittelzwecke": "mittelzweck", "mitten": "mitt", "mittendrin": "mittendrin", "mittenwald": "mittenwald", "mitternacht": "mitternacht", "mitternachts": "mitternacht", "mitternachtsessen": "mitternachtsess", "mitternachtsgottesdiensten": "mitternachtsgottesdien", "mittler": "mittl", "mittleramt": "mittleramt", "mittlere": "mittl", "mittleren": "mittl", "mittlerer": "mittl", "mittleres": "mittl", "mittlern": "mittl", "mittlerweile": "mittlerweil", "mittun": "mittun", "mittwoch": "mittwoch", "mitverursacht": "mitverursacht", "mitwandern": "mitwand", "mitwirken": "mitwirk", "mitwirkung": "mitwirk", "mitzubringen": "mitzubring", "mitzufahren": "mitzufahr", "mitzugehen": "mitzugeh", "mitzuhelfen": "mitzuhelf", "mitzumachen": "mitzumach", "mitzunehmen": "mitzunehm", "mitzuteilen": "mitzuteil", "mitzuzählen": "mitzuzahl", "mitzwanzigerin": "mitzwanzigerin", "mixer": "mix", "mo": "mo", "moab": "moab", "moabiter": "moabit", "moabs": "moab", "möbel": "mobel", "möbeln": "mobeln", "möbelpacker": "mobelpack", "möbelstück": "mobelstuck", "mobile": "mobil", "mobilisieren": "mobilisi", "möcht": "mocht", "mochte": "mocht", "möchte": "mocht", "mochten": "mocht", "möchten": "mocht", "möchtest": "mocht", "möchtet": "mochtet", "modalitäten": "modalitat", "mode": "mod", "modell": "modell", "moder": "mod", "moderdunst": "moderdun", "modern": "mod", "moderne": "modern", "moderner": "modern", "modified": "modified", "modifikationen": "modifikation", "modifiziert": "modifiziert", "mödite": "modit", "möge": "mog", "mögen": "mog", "mögest": "mog", "möget": "moget", "möglich": "moglich", "mögliche": "moglich", "möglichen": "moglich", "möglicher": "moglich", "möglicherweise": "moglicherweis", "möglichkeit": "moglich", "möglichkeiten": "moglich", "möglichst": "moglich", "möglichstem": "moglich", "möglichster": "moglich", "mögt": "mogt", "mohammedaner": "mohammedan", "mohnblume": "mohnblum", "mohnblumen": "mohnblum", "mohnrosen": "mohnros", "molche": "molch", "molestierten": "molestiert", "molliger": "mollig", "moment": "moment", "momentan": "momentan", "momente": "moment", "momenten": "moment", "mon": "mon", "monat": "monat", "monate": "monat", "monaten": "monat", "monatlich": "monat", "monatszeitschrift": "monatszeitschrift", "mönch": "monch", "mönchsgesicht": "monchsgesicht", "mond": "mond", "mondbeglänzten": "mondbeglanzt", "mondberg": "mondberg", "mondberges": "mondberg", "mondbeschienene": "mondbeschien", "mondblumen": "mondblum", "mondbuch": "mondbuch", "mondbutter": "mondbutt", "monde": "mond", "mondes": "mond", "mondfahrt": "mondfahrt", "mondgegend": "mondgeg", "mondhelle": "mondhell", "mondhügel": "mondhugel", "mondkälber": "mondkalb", "mondkälbern": "mondkalb", "mondkanone": "mondkanon", "mondkrone": "mondkron", "mondkruste": "mondkrust", "mondland": "mondland", "mondlandschaft": "mondlandschaft", "mondlederstiefel": "mondlederstiefel", "mondlicht": "mondlicht", "mondlichtes": "mondlicht", "mondmann": "mondmann", "mondmanns": "mondmann", "mondnächte": "mondnacht", "mondschäfchen": "mondschafch", "mondschein": "mondschein", "mondscheinfladen": "mondscheinflad", "mondschlitten": "mondschlitt", "mondsichel": "mondsichel", "mondspinat": "mondspinat", "mondstaub": "mondstaub", "mondstich": "mondstich", "mondstrahlen": "mondstrahl", "mondwüste": "mondwust", "money": "money", "monokel": "monokel", "monokelherr": "monokelherr", "monsieur": "monsieur", "monstra": "monstra", "mont": "mont", "montag": "montag", "montagnachmittag": "montagnachmittag", "montarcy": "montarcy", "montsalvatsch": "montsalvatsch", "montur": "montur", "monument": "monument", "moorlache": "moorlach", "moorwiesen": "moorwies", "moorzotteln": "moorzotteln", "moos": "moos", "moose": "moos", "moosfasern": "moosfas", "moosgraben": "moosgrab", "moosgrund": "moosgrund", "moosigen": "moosig", "moosklee": "mooskle", "moosplatte": "moosplatt", "moph": "moph", "moral": "moral", "moralisch": "moral", "moralischbesseren": "moralischbess", "moralische": "moral", "moralischen": "moral", "moralischer": "moral", "moralisches": "moral", "moralität": "moralitat", "moralphilosoph": "moralphilosoph", "mord": "mord", "mordbrenner": "mordbrenn", "morden": "mord", "mörder": "mord", "mörderisch": "morder", "mörderischen": "morder", "mörderlich": "mord", "mörders": "mord", "mordio": "mordio", "mordtat": "mordtat", "mordversuchs": "mordversuch", "more": "mor", "morgen": "morg", "morgenbrot": "morgenbrot", "morgende": "morgend", "morgenden": "morgend", "morgenferne": "morgenfern", "morgenlande": "morgenland", "morgenlandes": "morgenland", "morgenländischen": "morgenland", "morgenlands": "morgenland", "morgenliedchen": "morgenliedch", "morgenluft": "morgenluft", "morgenmantel": "morgenmantel", "morgenpirsch": "morgenpirsch", "morgenrot": "morgenrot", "morgenröte": "morgenrot", "morgens": "morg", "morgensonne": "morgensonn", "morgenstern": "morgen", "morgensterne": "morgenstern", "morgental": "morgental", "morgenwindchen": "morgenwindch", "morgigen": "morgig", "moring": "moring", "moritz": "moritz", "morose": "moros", "morosität": "morositat", "morsche": "morsch", "morschen": "morsch", "morscher": "morsch", "mörser": "mors", "mörserchen": "morserch", "mörtelbrocken": "mortelbrock", "moscheh": "moscheh", "moschus": "moschus", "mose": "mos", "moses": "mos", "moskau": "moskau", "most": "most", "mostes": "most", "motion": "motion", "motionen": "motion", "motitans": "motitan", "motiv": "motiv", "motive": "motiv", "motor": "motor", "motorradclub": "motorradclub", "motorräder": "motorrad", "motto": "motto", "mozartsche": "mozartsch", "mta": "mta", "mücke": "muck", "mücken": "muck", "mucksen": "mucks", "muckser": "mucks", "muckwitz": "muckwitz", "müde": "mud", "müden": "mud", "müdes": "mud", "müdigkeit": "mudig", "muess": "muess", "müesst": "muesst", "mühe": "muh", "mühelosigkeit": "muhelos", "mühen": "muh", "mühevoll": "muhevoll", "mühevolle": "muhevoll", "mühevoller": "muhevoll", "mühlsteine": "muhlstein", "muhme": "muhm", "mühsal": "muhsal", "mühsam": "muhsam", "mühsame": "muhsam", "mühselig": "muhsel", "mühseligen": "muhsel", "mühseligkeit": "muhsel", "müht": "muht", "mühten": "muht", "mul": "mul", "mulack": "mulack", "mulde": "muld", "mullack": "mullack", "müllerjungen": "mullerj", "multext": "multext", "multikulturelle": "multikulturell", "multipliziert": "multipliziert", "multis": "multis", "münchen": "munch", "münchener": "munch", "mund": "mund", "mundart": "mundart", "mundbärtchen": "mundbartch", "mündchen": "mundch", "munde": "mund", "munden": "mund", "mundes": "mund", "mündet": "mundet", "mündete": "mundet", "mundeten": "mundet", "mundgefässe": "mundgefass", "mundgefäße": "mundgefass", "mundkoch": "mundkoch", "mündlich": "mundlich", "mündlichkeit": "mundlich", "mundraub": "mundraub", "mundtot": "mundtot", "mündung": "mundung", "mundwerk": "mundwerk", "mundwinkel": "mundwinkel", "mundwinkeln": "mundwinkeln", "münsingen": "munsing", "munter": "munt", "muntere": "munt", "munteren": "munt", "munterkeit": "munter", "muntern": "munt", "munterte": "muntert", "münze": "munz", "münzen": "munz", "mürb": "murb", "mürbe": "murb", "murke": "murk", "murkes": "murk", "murmelkugeln": "murmelkugeln", "murmeln": "murmeln", "murmelte": "murmelt", "murmeltier": "murmelti", "murmeltiere": "murmelti", "murren": "murr", "mürrisch": "murrisch", "murrkopf": "murrkopf", "murrte": "murrt", "murrten": "murrt", "mus": "mus", "muschelförmige": "muschelform", "muscheln": "muscheln", "muschelschiff": "muschelschiff", "muschi": "muschi", "museum": "museum", "musik": "musik", "musikalisch": "musikal", "musikalisches": "musikal", "musikanten": "musikant", "musikbusiness": "musikbusiness", "musiker": "musik", "musikindustrie": "musikindustri", "musikstück": "musikstuck", "musikszene": "musiksz", "musizierende": "musizier", "musizierte": "musiziert", "muskelfasern": "muskelfas", "muskete": "musket", "muskulatur": "muskulatur", "muss": "muss", "muß": "muss", "musse": "muss", "müsse": "muss", "musselinhalstuch": "musselinhalstuch", "müssen": "muss", "mussestunden": "mussestund", "müssig": "mussig", "müßig": "mussig", "müssige": "mussig", "müssigen": "mussig", "müßigen": "mussig", "müssiges": "mussig", "müssiggang": "mussiggang", "müssiggange": "mussiggang", "müssiggänger": "mussiggang", "müssigganges": "mussiggang", "musst": "musst", "mußt": "musst", "müsst": "musst", "müßt": "musst", "musste": "musst", "mußte": "musst", "müsste": "musst", "müßte": "musst", "mussten": "musst", "mußten": "musst", "müssten": "musst", "müßten": "musst", "müsstest": "musst", "muster": "must", "mustergültig": "mustergult", "musterkarte": "musterkart", "musterte": "mustert", "musterung": "muster", "mut": "mut", "mütchen": "mutch", "mute": "mut", "mutes": "mut", "mutesäusserung": "mutesausser", "mutig": "mutig", "mutige": "mutig", "mutigen": "mutig", "mütlichen": "mutlich", "mutlos": "mutlos", "mutmassen": "mutmass", "mutmassliche": "mutmass", "mutoid": "mutoid", "muttchen": "muttch", "mutter": "mutt", "mütterchen": "mutterch", "mutterdurchbruch": "mutterdurchbruch", "muttergottes": "muttergott", "mutterkirche": "mutterkirch", "mutterleib": "mutterleib", "mutterleibe": "mutterleib", "mütterlichen": "mutt", "mütterlicher": "mutt", "mütterliches": "mutt", "mutterliebe": "mutterlieb", "muttern": "mutt", "müttern": "mutt", "mutterseelenallein": "mutterseelenallein", "muttersprache": "muttersprach", "muttersprachler": "muttersprachl", "mutterwitz": "mutterwitz", "mutvoll": "mutvoll", "mutwillen": "mutwill", "mutwillens": "mutwill", "mutwillig": "mutwill", "mutwillige": "mutwill", "mutwilligen": "mutwill", "mutwilliges": "mutwill", "mutwilligsten": "mutwill", "mütze": "mutz", "mützen": "mutz", "mützenabnehmen": "mutzenabnehm", "myriaden": "myriad", "myrrhen": "myrrh", "mysterien": "mysteri", "mystica": "mystica", "mystiker": "mystik", "mystizismus": "mystizismus", "mythen": "myth", "mythos": "mythos", "n": "n", "na": "na", "naamah": "naamah", "nabel": "nabel", "nach": "nach", "nacha": "nacha", "nachäffen": "nachaff", "nachäffte": "nachafft", "nachahmer": "nachahm", "nachahmt": "nachahmt", "nachahmung": "nachahm", "nachassons": "nachasson", "nachbar": "nachbar", "nachbaräckern": "nachbarack", "nachbaren": "nachbar", "nachbarhäuser": "nachbarhaus", "nachbarin": "nachbarin", "nachbarkirche": "nachbarkirch", "nachbarn": "nachbarn", "nachbarregierung": "nachbarregier", "nachbars": "nachbar", "nachbarschaft": "nachbarschaft", "nachbarsleute": "nachbarsleut", "nachbilden": "nachbild", "nachbildeten": "nachbildet", "nachblickend": "nachblick", "nachdachte": "nachdacht", "nachdem": "nachd", "nachdenken": "nachdenk", "nachdenkende": "nachdenk", "nachdenkens": "nachdenk", "nachdenklich": "nachdenk", "nachdenklichkeit": "nachdenk", "nachdenkt": "nachdenkt", "nachdruck": "nachdruck", "nachdrücklichen": "nachdruck", "nacheiferten": "nacheifert", "nacheiferung": "nacheifer", "nacheinander": "nacheinand", "nacheinanderfolgende": "nacheinanderfolg", "nachen": "nach", "nacher": "nach", "nachernte": "nachernt", "nachflogen": "nachflog", "nachfolgende": "nachfolg", "nachfolgenden": "nachfolg", "nachfolgt": "nachfolgt", "nachforschen": "nachforsch", "nachforscht": "nachforscht", "nachforschte": "nachforscht", "nachforschten": "nachforscht", "nachforschung": "nachforsch", "nachforschungen": "nachforsch", "nachfrage": "nachfrag", "nachfragen": "nachfrag", "nachfühlte": "nachfuhlt", "nachg": "nachg", "nachgangen": "nachgang", "nachgeahmten": "nachgeahmt", "nachgeben": "nachgeb", "nachgebildet": "nachgebildet", "nachgebildete": "nachgebildet", "nachgedacht": "nachgedacht", "nachgefolgt": "nachgefolgt", "nachgehen": "nachgeh", "nachgehn": "nachgehn", "nachgeht": "nachgeht", "nachgekommen": "nachgekomm", "nachgeschaut": "nachgeschaut", "nachgeschickte": "nachgeschickt", "nachgeschlagen": "nachgeschlag", "nachgesehen": "nachgeseh", "nachgesetzt": "nachgesetzt", "nachgestiegen": "nachgestieg", "nachgewiesen": "nachgewies", "nachgezählt": "nachgezahlt", "nachgiebigkeit": "nachgieb", "nachging": "nachging", "nachgingen": "nachging", "nachgrübelte": "nachgrubelt", "nachhaltig": "nachhalt", "nachhausefahren": "nachhausefahr", "nachhausewege": "nachhauseweg", "nachher": "nachh", "nachherigen": "nachher", "nachhinein": "nachhinein", "nachholen": "nachhol", "nachjagend": "nachjag", "nachkam": "nachkam", "nachkommen": "nachkomm", "nachkommenschaft": "nachkommenschaft", "nachkommenschaften": "nachkommenschaft", "nachlass": "nachlass", "nachlaß": "nachlass", "nachlassen": "nachlass", "nachlässig": "nachlass", "nachlässigkeit": "nachlass", "nachlaufen": "nachlauf", "nachlese": "nachles", "nachlesen": "nachles", "nachliefen": "nachlief", "nachmachen": "nachmach", "nachmalen": "nachmal", "nachmals": "nachmal", "nachmittag": "nachmittag", "nachmittage": "nachmittag", "nachmittags": "nachmittag", "nachmittagsunterhaltung": "nachmittagsunterhalt", "nachricht": "nachricht", "nachrichten": "nachricht", "nachrichtenagentur": "nachrichtenagentur", "nachrichtenlosen": "nachrichtenlos", "nachrichtenmagazin": "nachrichtenmagazin", "nachsagen": "nachsag", "nachsah": "nachsah", "nachschau": "nachschau", "nachschauen": "nachschau", "nachschaute": "nachschaut", "nachschicken": "nachschick", "nachsehe": "nachseh", "nachsehen": "nachseh", "nachsicht": "nachsicht", "nachsichtig": "nachsicht", "nachsinnen": "nachsinn", "nachspiele": "nachspiel", "nachspringen": "nachspring", "nächst": "nach", "nächstbeste": "nachstb", "nächstbesten": "nachstb", "nächstdem": "nachstd", "nächste": "nach", "nächsten": "nach", "nächstenliebe": "nachstenlieb", "nächstens": "nachst", "nächster": "nach", "nächstgelegene": "nachstgeleg", "nächstliegenden": "nachstlieg", "nacht": "nacht", "nachtarbeit": "nachtarbeit", "nachtcafe": "nachtcaf", "nachtcafé": "nachtcafé", "nachtclub": "nachtclub", "nächte": "nacht", "nachteil": "nachteil", "nachteile": "nachteil", "nachteiligen": "nachteil", "nächten": "nacht", "nachtessen": "nachtess", "nachteulen": "nachteul", "nachtfahne": "nachtfahn", "nachtfalter": "nachtfalt", "nachtfaltern": "nachtfalt", "nachtfee": "nachtfe", "nachtgebet": "nachtgebet", "nachtgejaide": "nachtgejaid", "nachthäubchen": "nachthaubch", "nachthemd": "nachthemd", "nachthemdchen": "nachthemdch", "nachthimmel": "nachthimmel", "nachtig": "nachtig", "nachtigall": "nachtigall", "nachtigallen": "nachtigall", "nachtisch": "nachtisch", "nachtjoppe": "nachtjopp", "nachtklee": "nachtkle", "nächtlich": "nachtlich", "nächtliche": "nachtlich", "nächtlichen": "nachtlich", "nächtlicher": "nachtlich", "nachtluft": "nachtluft", "nachtmützen": "nachtmutz", "nachtnebel": "nachtnebel", "nachtragen": "nachtrag", "nachträglich": "nachtrag", "nachtrauern": "nachtrau", "nachts": "nacht", "nachtschmetterlinge": "nachtschmetterling", "nachtschwarzen": "nachtschwarz", "nachtstillen": "nachtstill", "nachttau": "nachttau", "nachtwächter": "nachtwacht", "nachtwächtern": "nachtwacht", "nachtwandel": "nachtwandel", "nachtwandler": "nachtwandl", "nachvollziehen": "nachvollzieh", "nachwandelten": "nachwandelt", "nachwelt": "nachwelt", "nachwuchs": "nachwuch", "nachzählte": "nachzahlt", "nachzottelte": "nachzottelt", "nachzuahmen": "nachzuahm", "nachzubilden": "nachzubild", "nachzublicken": "nachzublick", "nachzudenken": "nachzudenk", "nachzufahren": "nachzufahr", "nachzufragen": "nachzufrag", "nachzufüllen": "nachzufull", "nachzugehen": "nachzugeh", "nachzuhängen": "nachzuhang", "nachzuholen": "nachzuhol", "nachzurufen": "nachzuruf", "nachzuschauen": "nachzuschau", "nachzusehen": "nachzuseh", "nachzuspüren": "nachzuspur", "nachzustreben": "nachzustreb", "nachzusuchen": "nachzusuch", "nachzuweisen": "nachzuweis", "nacken": "nack", "nacketes": "nacket", "nackt": "nackt", "nackte": "nackt", "nackten": "nackt", "nacktheit": "nacktheit", "nadab": "nadab", "nadel": "nadel", "nadelbüchse": "nadelbuchs", "nadelgras": "nadelgras", "nadelöhr": "nadelohr", "nadelzunge": "nadelz", "nagel": "nagel", "nägelein": "nagelein", "nägeln": "nageln", "nagelschuhe": "nagelschuh", "nagende": "nagend", "nagerln": "nagerln", "nagerlstock": "nagerlstock", "nah": "nah", "nahe": "nah", "nähe": "nah", "nahegelegenen": "nahegeleg", "nahegelegt": "nahegelegt", "nahekommen": "nahekomm", "naheliegendste": "nahelieg", "nahen": "nah", "nahend": "nahend", "nahende": "nahend", "nahenden": "nahend", "naher": "nah", "näher": "nah", "näheren": "nah", "näherer": "nah", "näheres": "nah", "nähern": "nah", "nähert": "nahert", "näherte": "nahert", "näherten": "nahert", "nähertreten": "nahertret", "nähete": "nahet", "näheten": "nahet", "nahezu": "nahezu", "nahm": "nahm", "nähme": "nahm", "nahmen": "nahm", "nähmen": "nahm", "nähren": "nahr", "nahrhaft": "nahrhaft", "nährmitteln": "nahrmitteln", "nährte": "nahrt", "nahrung": "nahrung", "nahrungsmittel": "nahrungsmittel", "naht": "naht", "nahtbeflissenen": "nahtbefliss", "nahte": "naht", "nähten": "naht", "nahum": "nahum", "nai": "nai", "naiv": "naiv", "näm": "nam", "name": "nam", "namen": "nam", "namenlose": "namenlos", "namenlosen": "namenlos", "namens": "nam", "namenstag": "namenstag", "namenstage": "namenstag", "namentlich": "nament", "namevor": "namevor", "namhafte": "namhaft", "nämlich": "namlich", "nämliche": "namlich", "nämlichen": "namlich", "nannte": "nannt", "nannten": "nannt", "nanu": "nanu", "näpheg": "napheg", "naphthali": "naphthali", "napoleon": "napoleon", "napoleonischen": "napoleon", "napoleons": "napoleon", "napoleonsbild": "napoleonsbild", "narben": "narb", "narbenbein": "narbenbein", "narr": "narr", "närrchen": "narrch", "narren": "narr", "narrenspossen": "narrensposs", "narret": "narret", "narretei": "narretei", "narrheit": "narrheit", "närrin": "narrin", "närrische": "narrisch", "närrischem": "narrisch", "närrischen": "narrisch", "närrischer": "narrisch", "naschen": "nasch", "näschen": "nasch", "nascherei": "nascherei", "naschhaftigkeit": "naschhaft", "nase": "nas", "nasegrün": "nasegrun", "nasen": "nas", "nasenringe": "nasenring", "nasenspitze": "nasenspitz", "nasenstüber": "nasenstub", "nasenwurzel": "nasenwurzel", "nashorn": "nashorn", "nass": "nass", "naß": "nass", "nassauer": "nassau", "nasse": "nass", "nässe": "nass", "nassen": "nass", "nati": "nati", "nation": "nation", "nationalbank": "nationalbank", "nationaldenkmal": "nationaldenkmal", "nationale": "national", "nationalen": "national", "nationalhelden": "nationalheld", "nationalrat": "nationalrat", "nationalräte": "nationalrat", "nationalrätliche": "nationalrat", "nationen": "nation", "natur": "natur", "natura": "natura", "naturae": "natura", "naturanstalt": "naturanstalt", "naturbedürfnis": "naturbedurfnis", "naturbegriffe": "naturbegriff", "naturbetrachtung": "naturbetracht", "natureinfalt": "natureinfalt", "natureinrichtungen": "natureinricht", "naturen": "natur", "naturerkenntnis": "naturerkenntnis", "naturerscheinungen": "naturerschein", "naturfreund": "naturfreund", "naturgabe": "naturgab", "naturgange": "naturgang", "naturganzes": "naturganz", "naturgegenstände": "naturgegenstand", "naturgeheimnisse": "naturgeheimnis", "naturgeister": "naturgeist", "naturgeistern": "naturgeist", "naturgesetz": "naturgesetz", "naturgesetze": "naturgesetz", "naturgesetzen": "naturgesetz", "naturgesetzes": "naturgesetz", "naturgewalten": "naturgewalt", "naturkenntnis": "naturkenntnis", "naturkette": "naturkett", "naturkräfte": "naturkraft", "naturlaufe": "naturlauf", "natürlich": "natur", "natürliche": "natur", "natürlichem": "natur", "natürlichen": "natur", "natürlicher": "natur", "natürliches": "natur", "natürlichkeit": "natur", "natürlichste": "natur", "natürlieh": "naturlieh", "naturmechanismus": "naturmechanismus", "naturnotwendigkeit": "naturnotwend", "naturordnung": "naturordn", "naturspiel": "naturspiel", "naturursachen": "naturursach", "naturvergötterung": "naturvergotter", "naturverknüpfung": "naturverknupf", "naturvermögen": "naturvermog", "naturvollkommenheit": "naturvollkomm", "naturwege": "naturweg", "naturwissenschaft": "naturwissenschaft", "naturwissenschafter": "naturwissenschaft", "naturwüchsige": "naturwuchs", "naus": "naus", "nauszahlen": "nauszahl", "nazi": "nazi", "nazigold": "nazigold", "nazimi": "nazimi", "nazis": "nazis", "ne": "ne", "neapel": "neapel", "neb": "neb", "nebajoths": "nebajoth", "nebel": "nebel", "nebelfahnen": "nebelfahn", "nebelfetzen": "nebelfetz", "nebelfrauen": "nebelfrau", "nebelhafte": "nebelhaft", "nebelkrähe": "nebelkrah", "nebelluft": "nebelluft", "nebelmassen": "nebelmass", "nebeln": "nebeln", "nebelspalter": "nebelspalt", "nebelstreif": "nebelstreif", "nebelweg": "nebelweg", "nebelwind": "nebelwind", "nebelzug": "nebelzug", "neben": "neb", "nebenämter": "nebenamt", "nebenan": "nebenan", "nebenbei": "nebenbei", "nebenbestimmungen": "nebenbestimm", "nebenbuhler": "nebenbuhl", "nebenbuhlern": "nebenbuhl", "nebeneinander": "nebeneinand", "nebeneinanderliegende": "nebeneinanderlieg", "nebengebäuden": "nebengebaud", "nebengesellen": "nebengesell", "nebenherlaufen": "nebenherlauf", "nebenmenschen": "nebenmensch", "nebensache": "nebensach", "nebenstube": "nebenstub", "nebenzimmer": "nebenzimm", "nebenzimmers": "nebenzimm", "nebst": "nebst", "nebukadnezar": "nebukadnezar", "nebukadnezars": "nebukadnezar", "necesse": "necess", "neckt": "neckt", "neckte": "neckt", "nefas": "nefas", "neffe": "neff", "neffen": "neff", "negativ": "negativ", "negative": "negativ", "negativen": "negativ", "negatives": "negativ", "nehme": "nehm", "nehmen": "nehm", "nehmend": "nehmend", "nehmenden": "nehmend", "nehmet": "nehmet", "nehmt": "nehmt", "neid": "neid", "neides": "neid", "neideswut": "neideswut", "neidisch": "neidisch", "neigen": "neig", "neigend": "neigend", "neiget": "neiget", "neigt": "neigt", "neigte": "neigt", "neigten": "neigt", "neigung": "neigung", "neigungen": "neigung", "nein": "nein", "nelke": "nelk", "nem": "nem", "nen": "nen", "nenne": "nenn", "nennen": "nenn", "nennest": "nenn", "nennete": "nennet", "nennst": "nenn", "nennt": "nennt", "nephaim": "nephaim", "nephalim": "nephalim", "nephilim": "nephilim", "ner": "ner", "nervenden": "nervend", "nervenfieber": "nervenfieb", "nervös": "nervos", "nervöse": "nervos", "nervösem": "nervos", "nervöser": "nervos", "nessel": "nessel", "nesseln": "nesseln", "nest": "nest", "neste": "nest", "nesterchen": "nesterch", "nestes": "nest", "net": "net", "netscape": "netscap", "nett": "nett", "nettchen": "nettch", "nettchens": "nettch", "nette": "nett", "netten": "nett", "netter": "nett", "nettes": "nett", "netz": "netz", "netze": "netz", "netzwerk": "netzwerk", "neu": "neu", "neuangekommene": "neuangekomm", "neuaufbau": "neuaufbau", "neubauten": "neubaut", "neubebaute": "neubebaut", "neubelebung": "neubeleb", "neubesetzung": "neubesetz", "neue": "neu", "neuem": "neu", "neuen": "neu", "neuer": "neu", "neuerdings": "neuerding", "neueren": "neu", "neuerliche": "neu", "neuern": "neu", "neues": "neu", "neuesdas": "neuesdas", "neueste": "neu", "neuesten": "neu", "neugeborene": "neugebor", "neugeborenen": "neugebor", "neugegründeten": "neugegrundet", "neugeschaffen": "neugeschaff", "neugesprochenen": "neugesproch", "neugestählter": "neugestahlt", "neugier": "neugi", "neugierde": "neugierd", "neugierig": "neugier", "neugierigen": "neugier", "neugieriger": "neugier", "neugotischem": "neugot", "neuigkeit": "neuig", "neulich": "neulich", "neumonde": "neumond", "neun": "neun", "neunhundert": "neunhundert", "neunte": "neunt", "neunten": "neunt", "neuntes": "neunt", "neunundneunzig": "neunundneunz", "neunundsechzig": "neunundsechz", "neunundsiebzig": "neunundsiebz", "neunundvierzigsten": "neunundvierz", "neunzehn": "neunzehn", "neunzig": "neunzig", "neutestamentler": "neutestamentl", "neutrale": "neutral", "neuübersetzung": "neuubersetz", "neuwahlen": "neuwahl", "neuyork": "neuyork", "new": "new", "newroz": "newroz", "nich": "nich", "nichs": "nich", "nicht": "nicht", "nichtachtung": "nichtacht", "nichtadligen": "nichtadl", "nichtanfechtung": "nichtanfecht", "nichtannahme": "nichtannahm", "nichtanwendung": "nichtanwend", "nichtaussprechen": "nichtaussprech", "nichtbefreiung": "nichtbefrei", "nichten": "nicht", "nichtglauben": "nichtglaub", "nichtglaubens": "nichtglaub", "nichtgute": "nichtgut", "nichtig": "nichtig", "nichtige": "nichtig", "nichtigen": "nichtig", "nichtigkeiten": "nichtig", "nichtinnewerden": "nichtinnewerd", "nichtmaterielle": "nichtmateriell", "nichtmediziner": "nichtmedizin", "nichtmerken": "nichtmerk", "nichtökonomische": "nichtokonom", "nichtregistrierung": "nichtregistrier", "nichts": "nicht", "nichtsdestominder": "nichtsdestomind", "nichtsdestoweniger": "nichtsdestowen", "nichtsehender": "nichtseh", "nichtsein": "nichtsein", "nichtsnutzigen": "nichtsnutz", "nichtsnutzigsten": "nichtsnutz", "nichtssagend": "nichtssag", "nichtssagende": "nichtssag", "nichtssagenden": "nichtssag", "nichtstun": "nichtstun", "nichtswürdige": "nichtswurd", "nichtswürdigkeit": "nichtswurd", "nichttaten": "nichttat", "nichtwähler": "nichtwahl", "nichtwahren": "nichtwahr", "nichtwahrheiten": "nichtwahr", "nichtwahrnehmen": "nichtwahrnehm", "nicken": "nick", "nickend": "nickend", "nickt": "nickt", "nickte": "nickt", "nickten": "nickt", "nidit": "nidit", "nie": "nie", "nieder": "nied", "niederbeugen": "niederbeug", "niederbeugend": "niederbeug", "niederblickend": "niederblick", "niederdrücken": "niederdruck", "niederdrückt": "niederdruckt", "niedere": "nied", "niederen": "nied", "niederfiel": "niederfiel", "niederfielen": "niederfiel", "niederfloss": "niederfloss", "niederfloß": "niederfloss", "niedergang": "niedergang", "niedergänge": "niedergang", "niedergebeugt": "niedergebeugt", "niedergebrannt": "niedergebrannt", "niedergefahren": "niedergefahr", "niedergefallen": "niedergefall", "niedergehend": "niedergeh", "niedergelassen": "niedergelass", "niedergelegt": "niedergelegt", "niedergeschlagen": "niedergeschlag", "niedergeschlagenen": "niedergeschlag", "niedergestiegen": "niedergestieg", "niedergeworfen": "niedergeworf", "niederging": "niederging", "niedergleiten": "niedergleit", "niedergschlagen": "niedergschlag", "niederhängt": "niederhangt", "niederklatschen": "niederklatsch", "niederknien": "niederkni", "niederkniend": "niederkni", "niederknieten": "niederkniet", "niederkommen": "niederkomm", "niederlächelnd": "niederlachelnd", "niederlage": "niederlag", "niederlagen": "niederlag", "niederlassen": "niederlass", "niederliess": "niederliess", "niederließ": "niederliess", "niederregneten": "niederregnet", "niederschlagen": "niederschlag", "niederschlägt": "niederschlagt", "niederschlug": "niederschlug", "niederschmetternder": "niederschmetternd", "niederschoss": "niederschoss", "niedersetzte": "niedersetzt", "niederstäubte": "niederstaubt", "niederste": "niederst", "niedersten": "niederst", "niederstes": "niederst", "niederstrich": "niederstrich", "niederträchtige": "niedertracht", "niederträchtigen": "niedertracht", "niedertritt": "niedertritt", "niedertropften": "niedertropft", "niederwärts": "niederwart", "niederwerfen": "niederwerf", "niederzubeugen": "niederzubeug", "niederzulassen": "niederzulass", "niedlich": "niedlich", "niedliche": "niedlich", "niedlichen": "niedlich", "niedlicher": "niedlich", "niedrig": "niedrig", "niedrige": "niedrig", "niedrigen": "niedrig", "niedriger": "niedrig", "niedrigere": "niedrig", "niedrigeren": "niedrig", "niedrigerer": "niedrig", "niedrigkeit": "niedrig", "niedrigre": "niedrigr", "niedrigste": "niedrig", "niedrigsten": "niedrig", "niemals": "niemal", "niemand": "niemand", "niemandem": "niemand", "niemanden": "niemand", "niemands": "niemand", "niemandsland": "niemandsland", "nieren": "nier", "nierenfett": "nierenfett", "niesen": "nies", "nieste": "niest", "nietzsche": "nietzsch", "nievergelt": "nievergelt", "nigen": "nig", "niggli": "niggli", "nihil": "nihil", "nikodemus": "nikodemus", "nikolaus": "nikolaus", "nikosia": "nikosia", "nils": "nil", "nimm": "nimm", "nimmer": "nimm", "nimmermehr": "nimmermehr", "nimmst": "nimm", "nimmt": "nimmt", "nimrien": "nimri", "nimriens": "nimri", "ninive": "niniv", "ninives": "niniv", "nippte": "nippt", "nirgend": "nirgend", "nirgends": "nirgend", "nirgendwo": "nirgendwo", "nische": "nisch", "nisi": "nisi", "nisten": "nist", "nisteten": "nistet", "nit": "nit", "nitrit": "nitrit", "nitritkapsel": "nitritkapsel", "nitroglyzerin": "nitroglyzerin", "nivellierung": "nivellier", "nix": "nix", "no": "no", "noaaaaaa": "noaaaaaa", "noach": "noach", "noachs": "noach", "nobel": "nobel", "noblen": "nobl", "nobler": "nobl", "noch": "noch", "nochmal": "nochmal", "nochmals": "nochmal", "nod": "nod", "nominationskommission": "nominationskommission", "nominative": "nominativ", "nominativen": "nominativ", "nommen": "nomm", "non": "non", "nonnenartiger": "nonnenart", "nord": "nord", "nordamerikanischen": "nordamerikan", "norddeutschland": "norddeutschland", "norden": "nord", "nordengland": "nordengland", "nordischen": "nordisch", "nordlondon": "nordlondon", "nordpol": "nordpol", "nordwärts": "nordwart", "nordwestschweiz": "nordwestschweiz", "nordzypern": "nordzyp", "normal": "normal", "normale": "normal", "normalen": "normal", "normalerweise": "normalerweis", "norwegische": "norweg", "norwegischen": "norweg", "nostalgie": "nostalgi", "not": "not", "notar": "notar", "notaufnahme": "notaufnahm", "notburga": "notburga", "notdürftig": "notdurft", "notdürftigsten": "notdurft", "note": "not", "nöten": "not", "notenbank": "notenbank", "notenblätter": "notenblatt", "notenlinien": "notenlini", "notfall": "notfall", "notfällen": "notfall", "notfalls": "notfall", "notgezwungenen": "notgezw", "notieren": "noti", "notiert": "notiert", "notierte": "notiert", "nötig": "notig", "nötige": "notig", "nötigen": "notig", "nötiger": "notig", "nötigte": "notigt", "nötigung": "notig", "notizbuch": "notizbuch", "notizbücher": "notizbuch", "notizen": "notiz", "notlüge": "notlug", "notpfennige": "notpfenn", "notrfälle": "notrfall", "notstand": "notstand", "notwehr": "notwehr", "notwendig": "notwend", "notwendige": "notwend", "notwendigen": "notwend", "notwendiger": "notwend", "notwendigere": "notwend", "notwendigerweise": "notwendigerweis", "notwendiges": "notwend", "notwendigkeit": "notwend", "notwendigkeiten": "notwend", "notwendigste": "notwend", "noumen": "noum", "noumenen": "noum", "noumenon": "noumenon", "novellen": "novell", "november": "novemb", "novembertage": "novembertag", "novum": "novum", "nr": "nr", "nu": "nu", "nuance": "nuanc", "nüber": "nub", "nüchtern": "nucht", "nüchternen": "nuchtern", "nüchternes": "nuchtern", "nücken": "nuck", "null": "null", "nummer": "numm", "nun": "nun", "nunmehr": "nunmehr", "nur": "nur", "nürnberg": "nurnberg", "nuss": "nuss", "nussbaumholz": "nussbaumholz", "nussbaumlade": "nussbaumlad", "nussbaumschrank": "nussbaumschrank", "nüsschen": "nussch", "nüsse": "nuss", "nüssen": "nuss", "nutz": "nutz", "nutzbare": "nutzbar", "nutzbringende": "nutzbring", "nütze": "nutz", "nutzen": "nutz", "nützen": "nutz", "nutzens": "nutz", "nutzenschaffen": "nutzenschaff", "nutzenschaffens": "nutzenschaff", "nutzleistungen": "nutzleist", "nützlich": "nutzlich", "nützliche": "nutzlich", "nützlichen": "nutzlich", "nützlicher": "nutzlich", "nützlichere": "nutzlich", "nützlicheres": "nutzlich", "nützlichkeit": "nutzlich", "nützlichste": "nutzlich", "nutzlos": "nutzlos", "nutzlose": "nutzlos", "nutzloses": "nutzlos", "nutzniessung": "nutzniess", "nutzt": "nutzt", "nützt": "nutzt", "nutzwirkungen": "nutzwirk", "nutzzwecke": "nutzzweck", "nutzzwecken": "nutzzweck", "nutzzwecks": "nutzzweck", "nzz": "nzz", "o": "o", "oam": "oam", "oan": "oan", "ob": "ob", "obacht": "obacht", "obdach": "obdach", "oben": "oben", "obenauf": "obenauf", "obendrein": "obendrein", "obenein": "obenein", "obenhin": "obenhin", "obenhinaus": "obenhinaus", "ober": "ober", "oberbayrischer": "oberbayr", "oberbehörde": "oberbehord", "oberduffendorf": "oberduffendorf", "obere": "ober", "oberen": "ober", "oberes": "ober", "oberfläche": "oberflach", "oberflächen": "oberflach", "oberflächlich": "oberflach", "oberflächlicher": "oberflach", "oberflächlichkeit": "oberflach", "oberförster": "oberforst", "oberhalb": "oberhalb", "oberhand": "oberhand", "oberhaupt": "oberhaupt", "oberherrschaft": "oberherrschaft", "oberkirchenrat": "oberkirchenrat", "oberlippe": "oberlipp", "obern": "obern", "oberpriester": "oberpri", "obersatze": "obersatz", "oberst": "oberst", "oberste": "oberst", "obersten": "oberst", "oberstes": "oberst", "oberstleutnants": "oberstleutnant", "obgleich": "obgleich", "obhut": "obhut", "obige": "obig", "obigem": "obig", "obigen": "obig", "obiger": "obig", "objective": "objectiv", "objekt": "objekt", "objekte": "objekt", "objekten": "objekt", "objektiv": "objektiv", "objektive": "objektiv", "objektivem": "objektiv", "objektiven": "objektiv", "objektiver": "objektiv", "objekts": "objekt", "oblag": "oblag", "obliegende": "oblieg", "obliegenheit": "oblieg", "obligationen": "obligation", "obristen": "obrist", "obschon": "obschon", "observantione": "observantion", "obsiegen": "obsieg", "obst": "obst", "obstbäumen": "obstbaum", "obste": "obst", "obsthändler": "obsthandl", "obstinatio": "obstinatio", "obwohl": "obwohl", "obzwar": "obzwar", "ocak": "ocak", "ochak": "ochak", "ochs": "och", "ochse": "ochs", "ochsen": "ochs", "ochsenhorn": "ochsenhorn", "ochsenkopfe": "ochsenkopf", "odd": "odd", "öde": "ode", "odem": "odem", "öden": "oden", "oder": "oder", "ödungen": "odung", "of": "of", "ofen": "ofen", "öfen": "ofen", "ofenruss": "ofenruss", "ofenruß": "ofenruss", "ofens": "ofen", "off": "off", "offen": "off", "offenb": "offenb", "offenbach": "offenbach", "offenbar": "offenbar", "offenbare": "offenbar", "offenbaren": "offenbar", "offenbarende": "offenbar", "offenbarer": "offenbar", "offenbarlich": "offenbar", "offenbart": "offenbart", "offenbarung": "offenbar", "offenbarungen": "offenbar", "offene": "off", "offenekirche": "offenekirch", "offenem": "off", "offenen": "off", "offener": "off", "offenes": "off", "offengebliebene": "offengeblieb", "offenheit": "off", "offenkundigen": "offenkund", "offensichtlich": "offensicht", "offensiv": "offensiv", "offenstehe": "offensteh", "offenstehend": "offensteh", "offenstehende": "offensteh", "offenstehenden": "offensteh", "öffentlich": "offent", "öffentliche": "offent", "öffentlichen": "offent", "öffentlicher": "offent", "öffentliches": "offent", "öffentlichkeit": "offent", "offizielle": "offiziell", "offiziellen": "offiziell", "offizier": "offizi", "offiziere": "offizi", "offizieren": "offizi", "offnen": "offn", "öffnen": "offn", "öffnet": "offnet", "öffnete": "offnet", "öffneten": "offnet", "oft": "oft", "öfter": "oft", "öftere": "oft", "öfteren": "oft", "öftern": "oft", "öfters": "oft", "oftmals": "oftmal", "oh": "oh", "ohad": "ohad", "ohn": "ohn", "ohne": "ohn", "ohnedem": "ohned", "ohnedies": "ohnedi", "ohnehin": "ohnehin", "ohnmacht": "ohnmacht", "ohnmächtig": "ohnmacht", "oho": "oho", "ohr": "ohr", "ohre": "ohr", "ohren": "ohr", "ohrenbetäubener": "ohrenbetaub", "ohres": "ohr", "ohrfeige": "ohrfeig", "ohrfeigen": "ohrfeig", "ohrfeigte": "ohrfeigt", "ohrlappen": "ohrlapp", "oke": "oke", "ökono": "okono", "ökonomisch": "okonom", "ökonomischen": "okonom", "ökonomisches": "okonom", "oktober": "oktob", "ökumene": "okum", "ökumenische": "okumen", "ökumenischen": "okumen", "öl": "ol", "ölbaumes": "olbaum", "oldenburg": "oldenburg", "oldenburger": "oldenburg", "oleander": "oleand", "oleandergebüsch": "oleandergebusch", "ölfarbe": "olfarb", "olgemälde": "olgemald", "ölig": "olig", "öls": "ols", "ombudsmann": "ombudsmann", "omni": "omni", "omnium": "omnium", "on": "on", "onan": "onan", "onkel": "onkel", "onkels": "onkel", "ontologia": "ontologia", "ontologischen": "ontolog", "oooh": "oooh", "oooooh": "oooooh", "opera": "opera", "operation": "operation", "opes": "opes", "opfer": "opf", "opfere": "opf", "opfergabe": "opfergab", "opfergaben": "opfergab", "opfern": "opf", "opfers": "opf", "opfert": "opfert", "opferte": "opfert", "ophir": "ophir", "ophirs": "ophir", "opposition": "opposition", "optimismus": "optimismus", "optischen": "optisch", "orangeblüten": "orangeblut", "orangefarbenen": "orangefarb", "orangen": "orang", "orangenbäume": "orangenbaum", "orangenhaine": "orangenhain", "orangensaft": "orangensaft", "orbitz": "orbitz", "ordentlich": "ordent", "ordentliche": "ordent", "ordentlichen": "ordent", "ordentlicher": "ordent", "ordentliches": "ordent", "ordinäre": "ordinar", "ordinärsten": "ordinarst", "ordiniertdem": "ordiniertd", "ordne": "ordn", "ordnen": "ordn", "ordnende": "ordnend", "ordnet": "ordnet", "ordnete": "ordnet", "ordneten": "ordnet", "ordnung": "ordnung", "ordnungen": "ordnung", "ordnungs": "ordnung", "ordnungsgemäss": "ordnungsgemass", "ordnungsgemässe": "ordnungsgemass", "ordnungsgesetz": "ordnungsgesetz", "ordnungsliebe": "ordnungslieb", "ordnungssinn": "ordnungssinn", "ordonnanzgewehre": "ordonnanzgewehr", "organ": "organ", "organe": "organ", "organen": "organ", "organisation": "organisation", "organisationen": "organisation", "organische": "organ", "organischen": "organ", "organisieren": "organisi", "organisiert": "organisiert", "organisierte": "organisiert", "organismen": "organism", "organismus": "organismus", "orgel": "orgel", "orgelkasten": "orgelkast", "orgelspieler": "orgelspiel", "orgelspielers": "orgelspiel", "orientieren": "orienti", "orientteppiche": "orientteppich", "original": "original", "originalität": "originalitat", "originalkorrespondenz": "originalkorrespondenz", "originarium": "originarium", "originelles": "originell", "orione": "orion", "örk": "ork", "orkan": "orkan", "ort": "ort", "orte": "ort", "orten": "ort", "örter": "ort", "ortes": "ort", "orthodoxe": "orthodox", "orthodoxen": "orthodox", "ortlichkeiten": "ortlich", "ortsansäs": "ortsansas", "ortschaft": "ortschaft", "ortschaften": "ortschaft", "ortsvorschlägen": "ortsvorschlag", "oslo": "oslo", "ost": "ost", "ostberlin": "ostberlin", "ostberliner": "ostberlin", "ostdeutschen": "ostdeutsch", "ostdeutschland": "ostdeutschland", "osten": "ost", "ostens": "ost", "osteransprache": "osteransprach", "osterei": "osterei", "ostereier": "osterei", "osterfest": "osterf", "osterfestgebete": "osterfestgebet", "osterhäschen": "osterhasch", "ostern": "ost", "osternacht": "osternacht", "osternest": "ostern", "osternestes": "ostern", "österreich": "osterreich", "österreichern": "osterreich", "osteuropa": "osteuropa", "ostindien": "ostindi", "ostindischen": "ostind", "ostländischen": "ostland", "östlich": "ostlich", "östliche": "ostlich", "östlichen": "ostlich", "ostrolenka": "ostrolenka", "ostschweiz": "ostschweiz", "ostschweizer": "ostschweiz", "ostwind": "ostwind", "ostwindes": "ostwind", "ottenschlag": "ottenschlag", "otter": "ott", "ottern": "ott", "otterngezüchte": "otterngezucht", "otterngift": "otterngift", "out": "out", "overview": "overview", "oxford": "oxford", "ozean": "ozean", "özgur": "ozgur", "p": "p", "paar": "paar", "paare": "paar", "paaren": "paar", "paares": "paar", "paarmal": "paarmal", "paarung": "paarung", "paarweise": "paarweis", "pacht": "pacht", "pachtzins": "pachtzin", "pack": "pack", "päckchen": "packch", "packen": "pack", "päcklein": "packlein", "packt": "packt", "packte": "packt", "packten": "packt", "pädagogik": "padagog", "paddeln": "paddeln", "paffte": "pafft", "pagen": "pag", "pair": "pair", "paket": "paket", "paketchen": "paketch", "palast": "palast", "paläste": "palast", "palästen": "palast", "palea": "palea", "paleae": "palea", "pallu": "pallu", "palme": "palm", "palmen": "palm", "palmzweige": "palmzweig", "palmzweigen": "palmzweig", "panamahut": "panamahut", "panier": "pani", "pankraz": "pankraz", "pankräzchens": "pankrazch", "pankrazens": "pankraz", "pankrazius": "pankrazius", "pankräzlein": "pankrazlein", "panorama": "panorama", "panspfeife": "panspfeif", "pantinengänger": "pantinengang", "pantoffelfüssen": "pantoffelfuss", "pantoffeln": "pantoffeln", "panzer": "panz", "panzerfahrzeugen": "panzerfahrzeug", "panzerreiter": "panzerreit", "papa": "papa", "papagei": "papagei", "papier": "papi", "papiere": "papi", "papieren": "papi", "papierne": "papiern", "papierstauden": "papierstaud", "papparbeit": "papparbeit", "pappel": "pappel", "pappkartons": "pappkarton", "pappkästchen": "pappkastch", "papst": "papst", "papstes": "papst", "paradies": "paradi", "paradiese": "paradies", "paradiesgärtchen": "paradiesgartch", "paradiesgärtels": "paradiesgartel", "paradiesgärtlein": "paradiesgartlein", "paradiesische": "paradies", "paradiesvogel": "paradiesvogel", "paraklet": "paraklet", "parallele": "parallel", "paralogismen": "paralogism", "parapluie": "paraplui", "parat": "parat", "pärchen": "parch", "pardel": "pardel", "parfümiert": "parfumiert", "parieren": "pari", "paris": "paris", "pariser": "paris", "park": "park", "parke": "park", "parkett": "parkett", "parks": "park", "parsimoniae": "parsimonia", "parte": "part", "partei": "partei", "parteien": "partei", "parteigänger": "parteigang", "parteigenossen": "parteigenoss", "parteiischen": "parteiisch", "parteileute": "parteileut", "partie": "parti", "partien": "parti", "partners": "partn", "parvulus": "parvulus", "pascha": "pascha", "pascher": "pasch", "paspeliert": "paspeliert", "pass": "pass", "passable": "passabl", "passah": "passah", "passahfest": "passahf", "passahtieres": "passahti", "passanten": "passant", "passargument": "passargument", "pässe": "pass", "passen": "pass", "passend": "passend", "passende": "passend", "passenden": "passend", "passender": "passend", "passendes": "passend", "passeten": "passet", "passieren": "passi", "passiert": "passiert", "passierte": "passiert", "passiertem": "passiert", "passierten": "passiert", "passivem": "passiv", "passt": "passt", "paßt": "passt", "passte": "passt", "passten": "passt", "pastete": "pastet", "pasteten": "pastet", "patent": "patent", "patentierung": "patentier", "pater": "pat", "paternoster": "paternost", "paternosteraufzug": "paternosteraufzug", "paternosters": "paternost", "paters": "pat", "pathologisch": "patholog", "pathologischen": "patholog", "patieneen": "patiene", "patienten": "patient", "patriarch": "patriarch", "patriarchen": "patriarch", "patron": "patron", "patronen": "patron", "patronhilsen": "patronhils", "patrontasche": "patrontasch", "patrouille": "patrouill", "patrouillen": "patrouill", "patsch": "patsch", "patsche": "patsch", "patschelte": "patschelt", "patschnass": "patschnass", "pauke": "pauk", "pauken": "pauk", "paukenbegleitung": "paukenbegleit", "paukenden": "paukend", "paukenklöppel": "paukenkloppel", "paukenkonzert": "paukenkonzert", "paukenstock": "paukenstock", "paul": "paul", "pausbäckige": "pausback", "pause": "paus", "pausen": "paus", "pavia": "pavia", "pavillon": "pavillon", "pavillons": "pavillon", "pech": "pech", "pechdunkeln": "pechdunkeln", "peche": "pech", "pechfinster": "pechfin", "pechnarben": "pechnarb", "pechs": "pech", "pechschwarz": "pechschwarz", "pechschwarzen": "pechschwarz", "pechsiedern": "pechsied", "pechstreif": "pechstreif", "pechverbandes": "pechverband", "pecoris": "pecoris", "pedanten": "pedant", "pedanterie": "pedanteri", "pegasus": "pegasus", "pein": "pein", "peinigen": "peinig", "peiniger": "peinig", "peinigt": "peinigt", "peinigte": "peinigt", "peinlich": "peinlich", "peinliche": "peinlich", "peinlicher": "peinlich", "peinlichste": "peinlich", "peinlichsten": "peinlich", "peinvoll": "peinvoll", "peirastik": "peirast", "peitsche": "peitsch", "peitschen": "peitsch", "peitschenknall": "peitschenknall", "peleg": "peleg", "pelz": "pelz", "pelzen": "pelz", "pelzes": "pelz", "pelzmütze": "pelzmutz", "pelzverbrämten": "pelzverbramt", "pelzwerk": "pelzwerk", "pension": "pension", "pentarchie": "pentarchi", "pepiniere": "pepini", "per": "per", "perceptio": "perceptio", "perceptiones": "perception", "perceptionis": "perceptionis", "perceptivum": "perceptivum", "percipere": "percip", "perez": "perez", "perfectissimum": "perfectissimum", "peri": "peri", "periode": "period", "perioden": "period", "periodischen": "period", "perlen": "perl", "perlenband": "perlenband", "perlmutter": "perlmutt", "permanenter": "permanent", "perpetuum": "perpetuum", "persifliert": "persifliert", "person": "person", "personen": "person", "persönlich": "person", "persönliche": "person", "persönlichem": "person", "persönlichen": "person", "persönlichkeit": "person", "persönlichkeiten": "person", "perspektive": "perspektiv", "perspicacia": "perspicacia", "persuasiones": "persuasion", "pest": "pest", "pestischer": "pestisch", "petent": "petent", "peter": "pet", "peterchen": "peterch", "peterchens": "peterch", "petersburg": "petersburg", "petitpierre": "petitpierr", "petrarum": "petrarum", "petrus": "petrus", "petschiert": "petschiert", "petz": "petz", "petzbären": "petzbar", "pfad": "pfad", "pfade": "pfad", "pfaden": "pfad", "pfades": "pfad", "pfaffen": "pfaff", "pfäfflein": "pfafflein", "pfahl": "pfahl", "pfahles": "pfahl", "pfännchen": "pfannch", "pfanne": "pfann", "pfannen": "pfann", "pfarr": "pfarr", "pfarrämter": "pfarramt", "pfarreien": "pfarrei", "pfarrer": "pfarr", "pfarrerdie": "pfarrerdi", "pfarrerstochter": "pfarrerstocht", "pfarrerweiterbildung": "pfarrerweiterbild", "pfarrpersonen": "pfarrperson", "pfarrverein": "pfarrverein", "pfauenfedern": "pfauenfed", "pfeffer": "pfeff", "pfefferkuchen": "pfefferkuch", "pfefferkuchenbäume": "pfefferkuchenbaum", "pfefferkuchenmännchen": "pfefferkuchenmannch", "pfefferkuchenpäckchen": "pfefferkuchenpackch", "pfefferkuchensprüche": "pfefferkuchenspruch", "pfefferkuchenzweigen": "pfefferkuchenzweig", "pfefferminzplätzchen": "pfefferminzplatzch", "pfefferminztee": "pfefferminzte", "pfeifchen": "pfeifch", "pfeife": "pfeif", "pfeifen": "pfeif", "pfeifend": "pfeifend", "pfeifenden": "pfeifend", "pfeifenköpfen": "pfeifenkopf", "pfeifmelodie": "pfeifmelodi", "pfeil": "pfeil", "pfeile": "pfeil", "pfennig": "pfennig", "pfennige": "pfennig", "pferchen": "pferch", "pferd": "pferd", "pferdchen": "pferdch", "pferde": "pferd", "pferdeäpfel": "pferdeapfel", "pferdehufen": "pferdehuf", "pferdekräfte": "pferdekraft", "pferden": "pferd", "pferdes": "pferd", "pfiff": "pfiff", "pfiffe": "pfiff", "pfiffige": "pfiffig", "pfiffigem": "pfiffig", "pfingstsonntag": "pfingstsonntag", "pflänzchen": "pflanzch", "pflanze": "pflanz", "pflanzen": "pflanz", "pflanzensamen": "pflanzensam", "pflanzerzigarre": "pflanzerzigarr", "pflanzt": "pflanzt", "pflanzte": "pflanzt", "pflanzung": "pflanzung", "pflanzungen": "pflanzung", "pflaster": "pflast", "pflaume": "pflaum", "pflaumen": "pflaum", "pflaumenaug": "pflaumenaug", "pflaumenkern": "pflaumenk", "pflege": "pfleg", "pflegen": "pfleg", "pflegst": "pfleg", "pflegt": "pflegt", "pflegte": "pflegt", "pflegten": "pflegt", "pflicht": "pflicht", "pflichtbewußtsein": "pflichtbewusstsein", "pflichten": "pflicht", "pflichterfüllung": "pflichterfull", "pflichtgemäss": "pflichtgemass", "pflichtgemäß": "pflichtgemass", "pflichtgemässe": "pflichtgemass", "pflichtmässig": "pflichtmass", "pflichtmässigen": "pflichtmass", "pflichtveranstaltung": "pflichtveranstalt", "pflichtvergessene": "pflichtvergess", "pflug": "pflug", "pfluge": "pflug", "pflüge": "pflug", "pflügen": "pflug", "pflüger": "pflug", "pflügte": "pflugt", "pflügten": "pflugt", "pflugviehs": "pflugvieh", "pflugzüge": "pflugzug", "pforte": "pfort", "pforten": "pfort", "pförtlein": "pfortlein", "pfötchen": "pfotch", "pfote": "pfot", "pfoten": "pfot", "pfründe": "pfrund", "pfüet": "pfuet", "pfuhl": "pfuhl", "pfühl": "pfuhl", "pfui": "pfui", "pfülmen": "pfulm", "pfund": "pfund", "pfuschern": "pfusch", "pfuschte": "pfuscht", "pfütze": "pfutz", "pfützen": "pfutz", "pfütznassen": "pfutznass", "phäakenaufschwung": "phaakenaufschw", "phaethon": "phaethon", "phänomene": "phanom", "phänomenen": "phanom", "phantasie": "phantasi", "phantasielos": "phantasielos", "phantasien": "phantasi", "phantasierte": "phantasiert", "phantasterei": "phantasterei", "phantastisch": "phantast", "pharao": "pharao", "pharaos": "pharaos", "pharisäer": "pharisa", "pharisäern": "pharisa", "pheresiter": "pheresit", "pheresiters": "pheresit", "philanthropie": "philanthropi", "philautia": "philautia", "philipp": "philipp", "philippus": "philippus", "philistäa": "philistaa", "philister": "philist", "philisterhafter": "philisterhaft", "philisterhaftigkeit": "philisterhaft", "philistern": "philist", "philisterseelen": "philisterseel", "philoso": "philoso", "philosoph": "philosoph", "philosophen": "philosoph", "philosophie": "philosophi", "philosophiert": "philosophiert", "philosophin": "philosophin", "philosophisch": "philosoph", "philosophischem": "philosoph", "philosophischen": "philosoph", "philosophischer": "philosoph", "philosophisches": "philosoph", "phische": "phisch", "photographien": "photographi", "phrasen": "phras", "phrath": "phrath", "physik": "physik", "physische": "physisch", "physischen": "physisch", "pianisten": "pianist", "pick": "pick", "piepen": "piep", "pietätlosigkeit": "pietatlos", "pijanon": "pijanon", "pikierten": "pikiert", "pilatus": "pilatus", "pilgerfahrten": "pilgerfahrt", "pilgerstab": "pilgerstab", "pilotprojekt": "pilotprojekt", "pilze": "pilz", "pinehas": "pinehas", "pineiss": "pineiss", "pineissens": "pineiss", "pinsel": "pinsel", "pipsernden": "pipsernd", "pirsch": "pirsch", "pirsche": "pirsch", "pirschgang": "pirschgang", "pirschwetter": "pirschwett", "pischon": "pischon", "pispernd": "pispernd", "pistole": "pistol", "pistolen": "pistol", "pistolengeschütz": "pistolengeschutz", "pithom": "pithom", "pitschnassen": "pitschnass", "plafonds": "plafond", "plage": "plag", "plagen": "plag", "plagten": "plagt", "plakat": "plakat", "plakate": "plakat", "plakaten": "plakat", "plan": "plan", "plane": "plan", "pläne": "plan", "planet": "planet", "planeten": "planet", "plangemäss": "plangemass", "plankenzaun": "plankenzaun", "plant": "plant", "plappermaul": "plappermaul", "platane": "platan", "platanen": "platan", "plato": "plato", "platonis": "platonis", "platos": "platos", "platschte": "platscht", "platte": "platt", "plattenproduzent": "plattenproduzent", "plättete": "plattet", "plattform": "plattform", "plattner": "plattn", "platz": "platz", "plätzchen": "platzch", "plätzchens": "platzch", "platze": "platz", "plätze": "platz", "platzen": "platz", "plätzen": "platz", "platzes": "platz", "platzl": "platzl", "platzregen": "platzreg", "platzt": "platzt", "platzten": "platzt", "plauderei": "plauderei", "plaudern": "plaud", "plaudernd": "plaudernd", "plaudert": "plaudert", "plauderte": "plaudert", "plauderten": "plaudert", "plausibel": "plausibel", "plausibilität": "plausibilitat", "playactors": "playactor", "plebejisch": "plebej", "plötzlich": "plotzlich", "plötzliche": "plotzlich", "plötzlichen": "plotzlich", "plötzlicher": "plotzlich", "plötzliches": "plotzlich", "plötzlichkeit": "plotzlich", "plump": "plump", "plumpe": "plump", "plumpen": "plump", "plumpheit": "plumpheit", "plumsdibums": "plumsdibum", "plunder": "plund", "plündergut": "plundergut", "plündern": "plund", "plus": "plus", "plusterröcken": "plusterrock", "plusterte": "plustert", "pochen": "poch", "pochenden": "pochend", "pochte": "pocht", "podium": "podium", "podiums": "podium", "podiumsgespräch": "podiumsgesprach", "poesie": "poesi", "pokalsieger": "pokalsieg", "polacke": "polack", "polackei": "polackei", "polacken": "polack", "polarkreises": "polarkreis", "polen": "pol", "polenmütze": "polenmutz", "poliert": "poliert", "polierten": "poliert", "politik": "polit", "politiker": "polit", "politisch": "polit", "politische": "polit", "politischen": "polit", "politischer": "polit", "politisieren": "politisi", "polizei": "polizei", "polizeiakten": "polizeiakt", "polizeianstalt": "polizeianstalt", "polizeiliches": "polizei", "polizeimann": "polizeimann", "polizeistation": "polizeistation", "polizeiwagen": "polizeiwag", "polizist": "polizist", "polizisten": "polizist", "pollux": "pollux", "polnisch": "polnisch", "polnische": "polnisch", "polnischen": "polnisch", "polnischer": "polnisch", "polnisches": "polnisch", "polster": "polst", "polstersessel": "polstersessel", "polsterstuhle": "polsterstuhl", "polsterstühle": "polsterstuhl", "polterabend": "polterab", "poltern": "polt", "polterte": "poltert", "pomade": "pomad", "pomphafte": "pomphaft", "pönitenz": "ponitenz", "pontius": "pontius", "pop": "pop", "popanze": "popanz", "populäres": "popular", "popularitätstief": "popularitatstief", "populismus": "populismus", "portier": "porti", "portiers": "porti", "portierte": "portiert", "portierten": "portiert", "portion": "portion", "portionen": "portion", "portionenweise": "portionenweis", "porto": "porto", "portokosten": "portokost", "porträt": "portrat", "porträts": "portrat", "porzellan": "porzellan", "porzellanköpfchen": "porzellankopfch", "porzellansplitter": "porzellansplitt", "porzia": "porzia", "posaunen": "posaun", "posaunenbläser": "posaunenblas", "posaunenschall": "posaunenschall", "posaunensturmstimme": "posaunensturmstimm", "posaunt": "posaunt", "posaunte": "posaunt", "position": "position", "positionen": "position", "positiv": "positiv", "positive": "positiv", "positiven": "positiv", "positiver": "positiv", "positives": "positiv", "positur": "positur", "possen": "poss", "possierliche": "possi", "possierlichen": "possi", "possierlichkeit": "possier", "post": "post", "postabschluss": "postabschluss", "postabschluß": "postabschluss", "posten": "post", "postfach": "postfach", "posthorntönen": "posthornton", "postieren": "posti", "postulat": "postulat", "postulate": "postulat", "postulaten": "postulat", "postulats": "postulat", "postulieren": "postuli", "postuliert": "postuliert", "postwendend": "postwend", "potsdam": "potsdam", "potz": "potz", "poularde": "poulard", "prä": "pra", "pracht": "pracht", "prächtig": "prachtig", "prächtige": "prachtig", "prächtigen": "prachtig", "prächtiger": "prachtig", "prächtiges": "prachtig", "prächtigste": "prachtig", "prachtkleid": "prachtkleid", "prachtvoll": "prachtvoll", "prachtvolle": "prachtvoll", "prädikat": "pradikat", "prädikate": "pradikat", "praedestinatione": "praedestination", "praedestinationes": "praedestination", "prag": "prag", "praga": "praga", "pragmateia": "pragmateia", "prägten": "pragt", "prahlen": "prahl", "prahler": "prahl", "prahlerisch": "prahler", "prahlerischen": "prahler", "prahlerischer": "prahler", "präjudizien": "prajudizi", "praktikum": "praktikum", "praktisch": "praktisch", "praktische": "praktisch", "praktischem": "praktisch", "praktischen": "praktisch", "praktischer": "praktisch", "praktisches": "praktisch", "praktizierende": "praktizier", "prälaten": "pralat", "präludium": "praludium", "prangt": "prangt", "prangte": "prangt", "präparaten": "praparat", "präpariere": "prapari", "prarrerschaft": "prarrerschaft", "prarrkapitel": "prarrkapitel", "präsent": "prasent", "präsentiert": "prasentiert", "präsentierteller": "prasentiertell", "präses": "pras", "präsident": "prasident", "präsidenten": "prasident", "präsidentin": "prasidentin", "präsidierte": "prasidiert", "prasselten": "prasselt", "präventiven": "praventiv", "predigen": "predig", "prediger": "predig", "prediget": "prediget", "predigt": "predigt", "predigten": "predigt", "preis": "preis", "preisausschreiben": "preisausschreib", "preisen": "preis", "preises": "preis", "preiset": "preiset", "preisgegeben": "preisgegeb", "preisgibt": "preisgibt", "preisträger": "preistrag", "preiszugeben": "preiszugeb", "prenzlauer": "prenzlau", "presse": "press", "pressedienst": "pressedien", "pressedienstes": "pressedien", "pressemiteilung": "pressemiteil", "pressemitteilung": "pressemitteil", "pressemittteilung": "pressemittteil", "pressieren": "pressi", "presste": "presst", "prester": "prest", "prickelte": "prickelt", "pries": "pries", "priester": "priest", "priestern": "priest", "priesters": "priest", "priesterstöchter": "priesterstocht", "priestertalar": "priestertalar", "priestertum": "priestertum", "priestertume": "priestertum", "priestertums": "priestertum", "primat": "primat", "primate": "primat", "principia": "principia", "principiis": "principiis", "prinz": "prinz", "prinzen": "prinz", "prinzess": "prinzess", "prinzip": "prinzip", "prinzipien": "prinzipi", "prinzips": "prinzips", "priori": "priori", "priorität": "prioritat", "prioritäten": "prioritat", "prisen": "pris", "prius": "prius", "private": "privat", "privaten": "privat", "privates": "privat", "privatgeschäfte": "privatgeschaft", "privatleidenschaft": "privatleidenschaft", "privatneigungen": "privatneig", "privatpersonen": "privatperson", "privilegien": "privilegi", "pro": "pro", "probabilia": "probabilia", "probe": "prob", "probemetall": "probemetall", "probesprechen": "probesprech", "probieren": "probi", "probiert": "probiert", "probierte": "probiert", "probierten": "probiert", "problem": "probl", "problematisch": "problemat", "problematischen": "problemat", "problematischer": "problemat", "probleme": "problem", "problemen": "problem", "problems": "problem", "problemwelle": "problemwell", "produkt": "produkt", "produkte": "produkt", "produktion": "produktion", "produktionsassistentin": "produktionsassistentin", "produktionsverbot": "produktionsverbot", "produzent": "produzent", "produzentin": "produzentin", "produzieren": "produzi", "profession": "profession", "professionelle": "professionell", "professor": "professor", "profi": "profi", "profil": "profil", "profitieren": "profiti", "programm": "programm", "programmheft": "programmheft", "progressiv": "progressiv", "progressus": "progressus", "prohibet": "prohibet", "project": "project", "projekt": "projekt", "projektarbeit": "projektarbeit", "projekte": "projekt", "projektes": "projekt", "prokurist": "prokurist", "prokuristen": "prokurist", "promenaden": "promenad", "promovet": "promovet", "promoviert": "promoviert", "prophet": "prophet", "propheten": "prophet", "prophetenbildern": "prophetenbild", "prophetische": "prophet", "prophetischen": "prophet", "prophezeiungen": "prophezei", "propinquitates": "propinquitat", "proportion": "proportion", "proportionierlich": "proportioni", "proportionierte": "proportioniert", "proportionierten": "proportioniert", "proprium": "proprium", "prosdialegomenwn": "prosdialegomenwn", "prospekte": "prospekt", "protestant": "protestant", "protestantismus": "protestantismus", "protestieren": "protesti", "protestierte": "protestiert", "protestschreien": "protestschrei", "protokoll": "protokoll", "provenzalischen": "provenzal", "proviant": "proviant", "provinz": "provinz", "provinzen": "provinz", "provision": "provision", "provisorischen": "provisor", "provozieren": "provozi", "provoziert": "provoziert", "prozent": "prozent", "prozentsatz": "prozentsatz", "prozess": "prozess", "prozeß": "prozess", "prozesse": "prozess", "prozesses": "prozess", "prozessstadien": "prozessstadi", "prozeßstadien": "prozessstadi", "prozessstadium": "prozessstadium", "prozeßstadium": "prozessstadium", "prüfe": "pruf", "prüfen": "pruf", "prüfend": "prufend", "prüfenden": "prufend", "prüfte": "pruft", "prüften": "pruft", "prüfung": "prufung", "prüfungslauf": "prufungslauf", "prüfungsmerkmal": "prufungsmerkmal", "prüfungsraum": "prufungsraum", "prügel": "prugel", "prügelfertig": "prugelfert", "prügeln": "prugeln", "prügelstrafe": "prugelstraf", "prügelte": "prugelt", "prügle": "prugl", "prügler": "prugl", "prunkbauten": "prunkbaut", "prunkenden": "prunkend", "prunkendes": "prunkend", "prunkwagen": "prunkwag", "prusten": "prust", "prustend": "prustend", "prustete": "prustet", "prutzeln": "prutzeln", "ps": "ps", "psalmen": "psalm", "psyche": "psych", "psychischen": "psychisch", "psychologie": "psychologi", "psychologisch": "psycholog", "psychologische": "psycholog", "psychologischen": "psycholog", "psychologischer": "psycholog", "puah": "puah", "publikationen": "publikation", "publikum": "publikum", "pudel": "pudel", "pudelhund": "pudelhund", "pudelmütze": "pudelmutz", "puerulus": "puerulus", "püffe": "puff", "puffen": "puff", "püffen": "puff", "puffte": "pufft", "puh": "puh", "puls": "pul", "pult": "pult", "pulver": "pulv", "pulverdampf": "pulverdampf", "pulverrauch": "pulverrauch", "pumpe": "pump", "pumpender": "pumpend", "punkt": "punkt", "pünktchen": "punktch", "punkte": "punkt", "punkten": "punkt", "punktionen": "punktion", "pünktlich": "punktlich", "pünktlichen": "punktlich", "pünktlichkeit": "punktlich", "pünktlichste": "punktlich", "punktum": "punktum", "punsch": "punsch", "pupille": "pupill", "püppchen": "puppch", "puppe": "pupp", "puppen": "pupp", "puppengarten": "puppengart", "puppenkind": "puppenkind", "puppenshow": "puppenshow", "puppenstube": "puppenstub", "purpur": "purpur", "purpurlippen": "purpurlipp", "purpurrose": "purpurros", "purpurroten": "purpurrot", "purzelbaum": "purzelbaum", "purzelbäumchen": "purzelbaumch", "purzelbäume": "purzelbaum", "purzeln": "purzeln", "purzelnd": "purzelnd", "purzelte": "purzelt", "purzelten": "purzelt", "pusterohr": "pusterohr", "pustete": "pustet", "puteo": "puteo", "puterrot": "puterrot", "puth": "puth", "putiels": "putiel", "putsch": "putsch", "pütschli": "putschli", "putschpitschpatsch": "putschpitschpatsch", "puttperwutt": "puttperwutt", "putz": "putz", "putzen": "putz", "putzer": "putz", "putzläppchen": "putzlappch", "putzte": "putzt", "pyramide": "pyramid", "pyrop": "pyrop", "pyropen": "pyrop", "qm": "qm", "qua": "qua", "quacken": "quack", "quae": "quae", "quakend": "quakend", "quaksend": "quaksend", "quakte": "quakt", "qual": "qual", "quale": "qual", "quäle": "qual", "quälen": "qual", "quälend": "qualend", "quälenden": "qualend", "quälerei": "qualerei", "qualifikation": "qualifikation", "qualität": "qualitat", "qualm": "qualm", "quält": "qualt", "quälte": "qualt", "quälten": "qualt", "quantität": "quantitat", "quartierbewohnern": "quartierbewohn", "quartiere": "quarti", "quasi": "quasi", "quax": "quax", "quell": "quell", "quelle": "quell", "quellen": "quell", "quellenangabe": "quellenangab", "quellenden": "quellend", "quentchen": "quentch", "quer": "quer", "querbalken": "querbalk", "quere": "quer", "querhölzchen": "querholzch", "querköpfigkeiten": "querkopf", "quertäler": "quertal", "quiekend": "quiekend", "quiekenden": "quiekend", "quiekte": "quiekt", "quietschte": "quietscht", "quint": "quint", "quintessenz": "quintessenz", "quirlige": "quirlig", "quirlte": "quirlt", "quod": "quod", "quoll": "quoll", "quollen": "quoll", "quoque": "quoqu", "r": "r", "raamas": "raamas", "raamses": "raams", "rabbi": "rabbi", "raben": "rab", "rabenschwarzes": "rabenschwarz", "rabensteiner": "rabenstein", "race": "rac", "rache": "rach", "rachegefühl": "rachegefuhl", "rachel": "rachel", "rachen": "rach", "rächen": "rach", "rachgier": "rachgi", "rachgierigen": "rachgier", "rachsucht": "rachsucht", "rachsüchtigen": "rachsucht", "rächte": "racht", "rächten": "racht", "rad": "rad", "rädelsführer": "radelsfuhr", "rademacher": "rademach", "räder": "rad", "räderchen": "raderch", "rädergerassels": "radergerassel", "rädern": "rad", "radfahrlegitimation": "radfahrlegitimation", "radikales": "radikal", "radikalismus": "radikalismus", "radio": "radio", "radiosender": "radios", "radmantel": "radmantel", "radotiert": "radotiert", "raffiniert": "raffiniert", "rafft": "rafft", "raffte": "rafft", "rage": "rag", "ragte": "ragt", "ragten": "ragt", "rahm": "rahm", "rahmen": "rahm", "rahmschüsseln": "rahmschusseln", "rain": "rain", "raines": "rain", "raka": "raka", "räkelte": "rakelt", "ramsau": "ramsau", "ran": "ran", "rand": "rand", "rande": "rand", "rang": "rang", "rangen": "rang", "rangordnung": "rangordn", "ränke": "rank", "ranken": "rank", "rankte": "rankt", "rankten": "rankt", "rann": "rann", "rannte": "rannt", "rannten": "rannt", "ränzchen": "ranzch", "ränzel": "ranzel", "ranzen": "ranz", "raphael": "raphael", "rappeln": "rappeln", "rappelte": "rappelt", "rapps": "rapps", "rar": "rar", "rasanter": "rasant", "rasch": "rasch", "rasche": "rasch", "rascheln": "rascheln", "raschelnden": "raschelnd", "raschelt": "raschelt", "raschelte": "raschelt", "raschem": "rasch", "raschen": "rasch", "rascher": "rasch", "rasches": "rasch", "rasen": "ras", "rasenbrocken": "rasenbrock", "rasend": "rasend", "rasender": "rasend", "rasendes": "rasend", "rasenfelder": "rasenfeld", "raset": "raset", "rasierapparat": "rasierapparat", "rasieren": "rasi", "räsonnieren": "rasonni", "rasselfritzen": "rasselfritz", "rasseln": "rasseln", "rasselns": "rasseln", "rasselte": "rasselt", "rasselten": "rasselt", "raste": "rast", "rastlos": "rastlos", "rastlosen": "rastlos", "rastloses": "rastlos", "rat": "rat", "rate": "rat", "raten": "rat", "rates": "rat", "ratgeber": "ratgeb", "ratgebern": "ratgeb", "rathaus": "rathaus", "rathause": "rathaus", "ratio": "ratio", "ratiocinari": "ratiocinari", "ration": "ration", "rationale": "rational", "rationalen": "rational", "rationales": "rational", "rationalismus": "rationalismus", "ratione": "ration", "rationelle": "rationell", "rationes": "ration", "ratlos": "ratlos", "ratlosen": "ratlos", "rats": "rat", "ratsam": "ratsam", "ratschläge": "ratschlag", "ratschlägen": "ratschlag", "ratschlagten": "ratschlagt", "rätsel": "ratsel", "rätselhafte": "ratselhaft", "ratsherren": "ratsherr", "ratsvorsitzende": "ratsvorsitz", "ratszimmer": "ratszimm", "raub": "raub", "rauben": "raub", "räuber": "raub", "räubereien": "rauberei", "räuberhauptmann": "rauberhauptmann", "räuberhöhle": "rauberhohl", "räubern": "raub", "raubersbestie": "raubersbesti", "raubkunst": "raubkun", "raubt": "raubt", "raubte": "raubt", "raubtier": "raubti", "raubtiere": "raubti", "raubversuch": "raubversuch", "rauch": "rauch", "rauche": "rauch", "rauchen": "rauch", "rauchend": "rauchend", "rauchende": "rauchend", "rauchenden": "rauchend", "rauchendes": "rauchend", "räucherig": "raucher", "rauchern": "rauch", "rauchfaden": "rauchfad", "rauchsäulen": "rauchsaul", "rauchtabak": "rauchtabak", "rauchte": "raucht", "rauchten": "raucht", "rauchtisch": "rauchtisch", "rauchwerk": "rauchwerk", "rauchwerks": "rauchwerk", "rauchwolken": "rauchwolk", "rauchzeug": "rauchzeug", "räude": "raud", "raufereien": "rauferei", "rauheit": "rauheit", "rauhen": "rauh", "rauhes": "rauh", "raum": "raum", "raume": "raum", "räume": "raum", "räumen": "raum", "raumes": "raum", "räumliche": "raumlich", "räumlichkeiten": "raumlich", "räumt": "raumt", "raupe": "raup", "raus": "raus", "rausch": "rausch", "rausche": "rausch", "rauschen": "rausch", "rauschend": "rauschend", "rauschende": "rauschend", "rauschenden": "rauschend", "rauscht": "rauscht", "rauschte": "rauscht", "rauschten": "rauscht", "rausg": "rausg", "rausgeschmissen": "rausgeschmiss", "rausschneiden": "rausschneid", "rauszuschneiden": "rauszuschneid", "ravensburg": "ravensburg", "re": "re", "reader": "read", "reagieren": "reagi", "real": "real", "reale": "real", "realen": "real", "reales": "real", "realisier": "realisi", "realisieren": "realisi", "realisiert": "realisiert", "realisierung": "realisier", "realistisch": "realist", "realität": "realitat", "rebecka": "rebecka", "rebellischen": "rebell", "rebenlaube": "rebenlaub", "rebenschossen": "rebenschoss", "rebhühner": "rebhuhn", "rebhühnern": "rebhuhn", "rebhuhnpastete": "rebhuhnpastet", "rechen": "rech", "rechenbuch": "rechenbuch", "rechenmeister": "rechenmeist", "rechenschaft": "rechenschaft", "recherchieren": "recherchi", "rechne": "rechn", "rechnen": "rechn", "rechnereien": "rechnerei", "rechnet": "rechnet", "rechnete": "rechnet", "rechnung": "rechnung", "rechnungen": "rechnung", "rechnungsabschluss": "rechnungsabschluss", "rechobs": "rechob", "recht": "recht", "rechtbehalten": "rechtbehalt", "rechte": "recht", "rechten": "recht", "rechter": "recht", "rechtes": "recht", "rechtfertige": "rechtfert", "rechtfertigen": "rechtfert", "rechtfertigende": "rechtfert", "rechtfertigt": "rechtfertigt", "rechtfertigung": "rechtfert", "rechtfertigungserklärung": "rechtfertigungserklar", "rechtfertigungserklärungder": "rechtfertigungserklarungd", "rechtfertigungslehre": "rechtfertigungslehr", "rechthaben": "rechthab", "rechtlich": "rechtlich", "rechtliche": "rechtlich", "rechtlichen": "rechtlich", "rechtlicher": "rechtlich", "rechtliches": "rechtlich", "rechtlichkeit": "rechtlich", "rechtmässig": "rechtmass", "rechtmässige": "rechtmass", "rechtmässigem": "rechtmass", "rechtmässigen": "rechtmass", "rechts": "recht", "rechtsangelegenheit": "rechtsangeleg", "rechtsbewusstsein": "rechtsbewusstsein", "rechtschaffen": "rechtschaff", "rechtschaffene": "rechtschaff", "rechtschaffenen": "rechtschaff", "rechtschaffener": "rechtschaff", "rechtschaffenheit": "rechtschaff", "rechtskräftig": "rechtskraft", "rechtsordnungen": "rechtsordn", "rechtssinn": "rechtssinn", "rechtsstaat": "rechtsstaat", "rechtswissenschaft": "rechtswissenschaft", "rechtzeitig": "rechtzeit", "recke": "reck", "recken": "reck", "reckend": "reckend", "reckte": "reckt", "red": "red", "redakteur": "redakteur", "redaktion": "redaktion", "redaktorin": "redaktorin", "rede": "red", "reden": "red", "redend": "redend", "redende": "redend", "redenden": "redend", "redendes": "redend", "redens": "red", "redensart": "redensart", "redensarten": "redensart", "redesätze": "redesatz", "redest": "red", "redet": "redet", "redete": "redet", "redeten": "redet", "redeweise": "redeweis", "redewendung": "redewend", "redezeichen": "redezeich", "redigiert": "redigiert", "redigierte": "redigiert", "redlich": "redlich", "redliche": "redlich", "redlichen": "redlich", "redlicher": "redlich", "redlichkeit": "redlich", "redner": "redn", "rednerische": "redner", "redselig": "redsel", "redt": "redt", "réduit": "réduit", "reduktion": "reduktion", "reduktionen": "reduktion", "reeder": "reed", "refa": "refa", "refah": "refah", "referent": "referent", "referenz": "referenz", "reflektieren": "reflekti", "reflektiert": "reflektiert", "reflexion": "reflexion", "reform": "reform", "reformation": "reformation", "reformen": "reform", "reformierte": "reformiert", "reformierten": "reformiert", "refutieren": "refuti", "regal": "regal", "rege": "reg", "regel": "regel", "regelmässig": "regelmass", "regelmäßig": "regelmass", "regelmässige": "regelmass", "regelmässigen": "regelmass", "regelmässiger": "regelmass", "regelmässigkeit": "regelmass", "regeln": "regeln", "regelrecht": "regelrecht", "regelrechte": "regelrecht", "regen": "reg", "regenbogen": "regenbog", "regende": "regend", "regenden": "regend", "regenfritz": "regenfritz", "regenfritzen": "regenfritz", "regengüssen": "regenguss", "regenhose": "regenhos", "regennacht": "regennacht", "regennassen": "regennass", "regenrauschen": "regenrausch", "regens": "reg", "regenschirm": "regenschirm", "regentagen": "regentag", "regentropfen": "regentropf", "regentschaft": "regentschaft", "regenwasserfass": "regenwasserfass", "regenwurm": "regenwurm", "regenwürmer": "regenwurm", "regiere": "regi", "regieren": "regi", "regierende": "regier", "regierenden": "regier", "regierer": "regi", "regierers": "regier", "regiert": "regiert", "regierte": "regiert", "regierung": "regier", "regierungskrisedie": "regierungskrisedi", "regierungsrat": "regierungsrat", "regiment": "regiment", "regimente": "regiment", "regimentes": "regiment", "regimentskommandeurs": "regimentskommandeur", "region": "region", "regionalstelle": "regionalstell", "regionen": "region", "registrieren": "registri", "registriert": "registriert", "reglos": "reglos", "reglosen": "reglos", "regnat": "regnat", "regnen": "regn", "regnerische": "regner", "regnerischer": "regner", "regnete": "regnet", "regt": "regt", "regte": "regt", "reguel": "reguel", "reguels": "reguel", "regula": "regula", "regulären": "regular", "regulative": "regulativ", "regulieren": "reguli", "reguliert": "reguliert", "regulos": "regulos", "regung": "regung", "regungen": "regung", "regungslos": "regungslos", "regungslosen": "regungslos", "reh": "reh", "rehabilitiert": "rehabilitiert", "rehbock": "rehbock", "rehböcken": "rehbock", "rehcherl": "rehcherl", "rehe": "reh", "rehen": "reh", "rehes": "reh", "rehfussgriff": "rehfussgriff", "rehgeiss": "rehgeiss", "reiben": "reib", "reich": "reich", "reiche": "reich", "reichem": "reich", "reichen": "reich", "reichenhall": "reichenhall", "reicher": "reich", "reichere": "reich", "reiches": "reich", "reichgekleidete": "reichgekleidet", "reichhaltiges": "reichhalt", "reichlich": "reichlich", "reichliche": "reichlich", "reichlichem": "reichlich", "reichlichen": "reichlich", "reichlichere": "reichlich", "reichlicheres": "reichlich", "reichs": "reich", "reichsfeind": "reichsfeind", "reichskristallnacht": "reichskristallnacht", "reichspogrom": "reichspogrom", "reichste": "reich", "reichsten": "reich", "reicht": "reicht", "reichte": "reicht", "reichten": "reicht", "reichtstag": "reichtstag", "reichtum": "reichtum", "reichtümer": "reichtum", "reichtümern": "reichtum", "reif": "reif", "reife": "reif", "reifen": "reif", "reifende": "reifend", "reifenden": "reifend", "reiflich": "reiflich", "reifrocke": "reifrock", "reifte": "reift", "reigen": "reig", "reihe": "reih", "reihen": "reih", "reihenfolge": "reihenfolg", "reiher": "reih", "reihte": "reiht", "reime": "reim", "reimt": "reimt", "rein": "rein", "reine": "rein", "reinem": "rein", "reinen": "rein", "reiner": "rein", "reinerem": "rein", "reineren": "rein", "reines": "rein", "reinheit": "reinheit", "reinhold": "reinhold", "reinigen": "reinig", "reinigend": "reinig", "reinigkeit": "reinig", "reinigung": "reinig", "reinigungen": "reinig", "reinlich": "reinlich", "reinliche": "reinlich", "reinlichen": "reinlich", "reinliches": "reinlich", "reinlichkeit": "reinlich", "reinreichen": "reinreich", "reinsten": "rein", "reinzukleben": "reinzukleb", "reis": "reis", "reise": "reis", "reiseanzügen": "reiseanzug", "reisebegleiter": "reisebegleit", "reisebeschreibung": "reisebeschreib", "reisebüro": "reiseburo", "reisebürofrau": "reiseburofrau", "reisegefährten": "reisegefahrt", "reisegeld": "reisegeld", "reisen": "reis", "reisenden": "reisend", "reisender": "reisend", "reisern": "reis", "reiset": "reiset", "reisetasche": "reisetasch", "reisete": "reiset", "reisetruhe": "reisetruh", "reiseveranstalter": "reiseveranstalt", "reisewagen": "reisewag", "reisig": "reisig", "reisigbündel": "reisigbundel", "reissaus": "reissaus", "reisse": "reiss", "reiße": "reiss", "reissen": "reiss", "reißen": "reiss", "reissende": "reissend", "reissenden": "reissend", "reißenden": "reissend", "reissender": "reissend", "reißender": "reissend", "reisst": "reisst", "reist": "reist", "reiste": "reist", "reiten": "reit", "reiter": "reit", "reiterei": "reiterei", "reitergesellschaft": "reitergesellschaft", "reitern": "reit", "reitertrupps": "reitertrupps", "reitet": "reitet", "reitpeitsche": "reitpeitsch", "reitpeitschen": "reitpeitsch", "reittier": "reitti", "reiz": "reiz", "reizbar": "reizbar", "reize": "reiz", "reizen": "reiz", "reizend": "reizend", "reizende": "reizend", "reizendem": "reizend", "reizenden": "reizend", "reizender": "reizend", "reizendes": "reizend", "reizte": "reizt", "reizvolle": "reizvoll", "rekruten": "rekrut", "rekrutiert": "rekrutiert", "relativ": "relativ", "relativen": "relativ", "relativiert": "relativiert", "religion": "religion", "religionen": "religion", "religionreligionsunterricht": "religionreligionsunterricht", "religions": "religion", "religionsgebräuche": "religionsgebrauch", "religionsgemeinschaft": "religionsgemeinschaft", "religionslehre": "religionslehr", "religionsleuten": "religionsleut", "religiös": "religios", "religiöse": "religios", "religiösen": "religios", "reliquiae": "reliquia", "remalja": "remalja", "remaljas": "remaljas", "reminiszenz": "reminiszenz", "rempelte": "rempelt", "rennen": "renn", "rennens": "renn", "renner": "renn", "rennern": "renn", "rennt": "rennt", "renntier": "rennti", "renommierten": "renommiert", "renoviert": "renoviert", "renovierte": "renoviert", "renten": "rent", "rephaim": "rephaim", "reporter": "report", "repräsentanten": "reprasentant", "repräsentantinnennach": "reprasentantinnennach", "republik": "republ", "republikaner": "republikan", "reserve": "reserv", "residenz": "residenz", "residenzstadt": "residenzstadt", "resolut": "resolut", "resoluten": "resolut", "respekt": "respekt", "respektablen": "respektabl", "respektieren": "respekti", "respekts": "respekt", "ressiert": "ressiert", "ressort": "ressort", "rest": "rest", "restchen": "restch", "reste": "rest", "resten": "rest", "restitution": "restitution", "restlichen": "restlich", "resultat": "resultat", "resultate": "resultat", "resümiert": "resumiert", "reto": "reto", "rette": "rett", "retten": "rett", "rettende": "rettend", "rettenden": "rettend", "retter": "rett", "retterin": "retterin", "rettete": "rettet", "rettung": "rettung", "rettungsanker": "rettungsank", "rettungsgedanken": "rettungsgedank", "rettungsgesellschaft": "rettungsgesellschaft", "reue": "reu", "reuen": "reu", "reuet": "reuet", "reuete": "reuet", "reulos": "reulos", "reuss": "reuss", "reut": "reut", "reute": "reut", "revier": "revi", "revolution": "revolution", "revolutionäre": "revolutionar", "rezept": "rezept", "rezepten": "rezept", "rezeptivität": "rezeptivitat", "rezin": "rezin", "rezins": "rezin", "rhauderfehn": "rhauderfehn", "rhein": "rhein", "rheinische": "rheinisch", "rheinstrom": "rheinstrom", "rhetorik": "rhetor", "rhetorischen": "rhetor", "richard": "richard", "richt": "richt", "richte": "richt", "richten": "richt", "richter": "richt", "richteramt": "richteramt", "richterlichen": "richt", "richtern": "richt", "richters": "richt", "richterstuhl": "richterstuhl", "richtes": "richt", "richtet": "richtet", "richtete": "richtet", "richteten": "richtet", "richtig": "richtig", "richtige": "richtig", "richtigem": "richtig", "richtigen": "richtig", "richtiger": "richtig", "richtiges": "richtig", "richtigkeit": "richtig", "richtigs": "richtig", "richtigsten": "richtig", "richtscheit": "richtscheit", "richtschnur": "richtschnur", "richtung": "richtung", "richtungen": "richtung", "rieb": "rieb", "rieben": "rieb", "riechen": "riech", "riechschwämmchen": "riechschwammch", "riecht": "riecht", "rief": "rief", "riefen": "rief", "riegel": "riegel", "riegelte": "riegelt", "riemen": "riem", "riese": "ries", "rieseln": "rieseln", "rieselt": "rieselt", "rieselte": "rieselt", "rieselten": "rieselt", "riesen": "ries", "riesenfülle": "riesenfull", "riesengebirge": "riesengebirg", "riesengebirges": "riesengebirg", "riesengross": "riesengross", "riesengrosse": "riesengross", "riesengrosser": "riesengross", "riesengrosses": "riesengross", "riesengrund": "riesengrund", "riesenhafte": "riesenhaft", "riesenhafter": "riesenhaft", "riesenhund": "riesenhund", "riesenkamme": "riesenkamm", "riesenkanone": "riesenkanon", "riesenköpfige": "riesenkopf", "riesenkraft": "riesenkraft", "riesenlanges": "riesenlang", "riesenmade": "riesenmad", "riesenmässiger": "riesenmass", "riesenpferde": "riesenpferd", "riesenzacken": "riesenzack", "riesige": "riesig", "riesigen": "riesig", "riesiger": "riesig", "riet": "riet", "rieten": "riet", "rin": "rin", "rina": "rina", "rinde": "rind", "rindenklunsen": "rindenkluns", "rindensubstanz": "rindensubstanz", "rindensubstanzen": "rindensubstanz", "rinder": "rind", "rindern": "rind", "rinderwahn": "rinderwahn", "rindes": "rind", "rindfleisch": "rindfleisch", "rindvieh": "rindvieh", "rindviehs": "rindvieh", "ring": "ring", "ringe": "ring", "ringelchen": "ringelch", "ringellocken": "ringellock", "ringelreih": "ringelreih", "ringelten": "ringelt", "ringen": "ring", "ringenden": "ringend", "ringern": "ring", "ringes": "ring", "ringetausch": "ringetausch", "ringgeschmückten": "ringgeschmuckt", "ringier": "ringi", "ringlein": "ringlein", "ringmauer": "ringmau", "ringmauern": "ringmau", "rings": "ring", "ringsherum": "ringsherum", "ringsum": "ringsum", "ringsumher": "ringsumh", "ringvorlesung": "ringvorles", "rinne": "rinn", "rinnen": "rinn", "rinnt": "rinnt", "rippe": "ripp", "rippen": "ripp", "rippenbrüche": "rippenbruch", "rippenstösse": "rippenstoss", "risiken": "risik", "risiko": "risiko", "riskiert": "riskiert", "riss": "riss", "riß": "riss", "risse": "riss", "rissen": "riss", "risses": "riss", "rith": "rith", "ritikül": "ritikul", "ritt": "ritt", "ritten": "ritt", "ritter": "ritt", "ritterdienst": "ritterdien", "ritterherr": "ritterherr", "ritterherrlichen": "ritterherr", "ritterlich": "ritt", "ritterliche": "ritt", "ritterlichen": "ritt", "ritterlichkeit": "ritter", "rittern": "ritt", "ritternase": "ritternas", "ritterrüstung": "ritterrust", "ritters": "ritt", "ritterschaft": "ritterschaft", "rittersherr": "rittersherr", "rittersherrn": "rittersherrn", "rittersmann": "rittersmann", "ritterstab": "ritterstab", "rittes": "ritt", "rittlings": "rittling", "rituale": "ritual", "ritus": "ritus", "ritzen": "ritz", "rivalen": "rival", "rnit": "rnit", "road": "road", "robespierre": "robespierr", "roch": "roch", "röche": "roch", "rock": "rock", "röck": "rock", "rockärmel": "rockarmel", "röckchen": "rockch", "rocke": "rock", "röcke": "rock", "röcken": "rock", "rockes": "rock", "rockschlippchenende": "rockschlippchen", "rockschoss": "rockschoss", "rocktasche": "rocktasch", "rocktaschen": "rocktasch", "rodeten": "rodet", "roh": "roh", "rohe": "roh", "roheiten": "roheit", "rohen": "roh", "roher": "roh", "rohes": "roh", "rohesten": "roh", "rohr": "rohr", "rohrdurchwachsenen": "rohrdurchwachs", "röhre": "rohr", "rohrstock": "rohrstock", "rolf": "rolf", "rolle": "roll", "rollen": "roll", "rollenden": "rollend", "rollendes": "rollend", "rollfeld": "rollfeld", "rollsteine": "rollstein", "rollt": "rollt", "rollte": "rollt", "rollten": "rollt", "rollwalze": "rollwalz", "rom": "rom", "roman": "roman", "romane": "roman", "romanes": "roman", "romanhelden": "romanheld", "romanshorn": "romanshorn", "romantische": "romant", "romantischer": "romant", "romantisches": "romant", "romeo": "romeo", "römisch": "romisch", "römischen": "romisch", "rosafarbenes": "rosafarb", "rosan": "rosan", "röschen": "rosch", "rose": "ros", "rosen": "ros", "rosenbäumchen": "rosenbaumch", "rosenbüsche": "rosenbusch", "rosengärtchen": "rosengartch", "rosenroten": "rosenrot", "rosenroter": "rosenrot", "rosenschimmer": "rosenschimm", "rosental": "rosental", "rosenwäldchen": "rosenwaldch", "rosiges": "rosig", "rosigster": "rosig", "rosine": "rosin", "rosinen": "rosin", "röslein": "roslein", "rosmarin": "rosmarin", "rosmaringärtchen": "rosmaringartch", "rosoli": "rosoli", "ross": "ross", "roß": "ross", "rosse": "ross", "rosselenker": "rosselenk", "rossen": "ross", "rosstäuscher": "rosstausch", "roßtäuscher": "rosstausch", "rost": "rost", "rostige": "rostig", "rostigen": "rostig", "rostiger": "rostig", "rostiges": "rostig", "rot": "rot", "rotbäckigen": "rotback", "rotbäckiger": "rotback", "rotbäckiges": "rotback", "rotbekleidete": "rotbekleidet", "rote": "rot", "röte": "rot", "rotem": "rot", "roten": "rot", "roter": "rot", "rotes": "rot", "rotgelbem": "rotgelb", "rotgelben": "rotgelb", "rothaarig": "rothaar", "rothaarige": "rothaar", "rothaarigen": "rothaar", "rothäutigen": "rothaut", "rotieren": "roti", "rötliche": "rotlich", "rötlichem": "rotlich", "rötlichen": "rotlich", "rötlicher": "rotlich", "rötliches": "rotlich", "rotseidenes": "rotseid", "rotte": "rott", "rottenweise": "rottenweis", "rotwein": "rotwein", "roulierende": "roulier", "routine": "routin", "routinesendung": "routinesend", "rpd": "rpd", "ruben": "rub", "rüben": "rub", "rubens": "rub", "rübezahl": "rubezahl", "rübezahls": "rubezahl", "rubin": "rubin", "rubinfunken": "rubinfunk", "rubrik": "rubrik", "rubriken": "rubrik", "rübzählischen": "rubzahl", "ruchbar": "ruchbar", "ruchlosen": "ruchlos", "ruchlosigkeit": "ruchlos", "ruck": "ruck", "rückantwortcouverts": "ruckantwortcouvert", "rücke": "ruck", "ruckelt": "ruckelt", "rücken": "ruck", "rückfall": "ruckfall", "rückflug": "ruckflug", "rückgängig": "ruckgang", "rückgesetzten": "ruckgesetzt", "rückhalt": "ruckhalt", "rückhaltlos": "ruckhaltlos", "rückhaltlose": "ruckhaltlos", "rückhaltlosen": "ruckhaltlos", "rückhaltlosigkeit": "ruckhaltlos", "rückkehr": "ruckkehr", "rucksack": "rucksack", "rucksäcken": "rucksack", "rückschauen": "ruckschau", "rückschluss": "ruckschluss", "rückseiten": "ruckseit", "rücksicht": "rucksicht", "rücksichten": "rucksicht", "rücksichtslos": "rucksichtslos", "rücksichtsloser": "rucksichtslos", "rücksichtsloseste": "rucksichtslos", "rücksichtslosigkeit": "rucksichtslos", "rücksitze": "rucksitz", "rückspiel": "ruckspiel", "rückt": "ruckt", "rückte": "ruckt", "rücktritt": "rucktritt", "rücktritten": "rucktritt", "rücktrittszahlen": "rucktrittszahl", "rückübertragung": "ruckubertrag", "rückwärtigen": "ruckwart", "rückwärts": "ruckwart", "rückwechsel": "ruckwechsel", "rückweg": "ruckweg", "rückwege": "ruckweg", "rückwirkungen": "ruckwirk", "rückzahlungsrate": "ruckzahlungsrat", "rückzug": "ruckzug", "rudel": "rudel", "rudeln": "rudeln", "rudels": "rudel", "ruder": "rud", "ruderbank": "ruderbank", "rudern": "rud", "ruderte": "rudert", "rudi": "rudi", "rüdiger": "rudig", "rue": "rue", "ruedi": "ruedi", "ruf": "ruf", "rufe": "ruf", "rufen": "ruf", "rufende": "rufend", "rufenden": "rufend", "rufens": "ruf", "rufes": "ruf", "rufet": "rufet", "ruft": "ruft", "rüge": "rug", "ruh": "ruh", "ruhe": "ruh", "ruhekissen": "ruhekiss", "ruhen": "ruh", "ruhende": "ruhend", "ruhepunkten": "ruhepunkt", "ruhet": "ruhet", "ruhete": "ruhet", "ruhevoll": "ruhevoll", "ruhig": "ruhig", "ruhige": "ruhig", "ruhigem": "ruhig", "ruhigen": "ruhig", "ruhiger": "ruhig", "ruhigeren": "ruhig", "ruhiges": "ruhig", "ruhigste": "ruhig", "ruhigsten": "ruhig", "ruhm": "ruhm", "ruhme": "ruhm", "rühmen": "ruhm", "rühmenswerte": "ruhmenswert", "ruhmes": "ruhm", "rühmt": "ruhmt", "rühmte": "ruhmt", "ruhn": "ruhn", "rühre": "ruhr", "rühren": "ruhr", "rührend": "ruhrend", "rührenden": "ruhrend", "rührender": "ruhrend", "rühret": "ruhret", "ruhrgebiet": "ruhrgebiet", "rühriger": "ruhrig", "rührigkeit": "ruhrig", "rührt": "ruhrt", "rührte": "ruhrt", "rührten": "ruhrt", "rührung": "ruhrung", "ruht": "ruht", "ruhte": "ruht", "ruhten": "ruht", "ruine": "ruin", "ruiniert": "ruiniert", "ruinierte": "ruiniert", "rum": "rum", "rumgebrumsel": "rumgebrumsel", "rummelplatz": "rummelplatz", "rumorte": "rumort", "rumpelkammer": "rumpelkamm", "rumpfe": "rumpf", "rümpfte": "rumpft", "rumrennen": "rumrenn", "rund": "rund", "runde": "rund", "runden": "rund", "runder": "rund", "rundes": "rund", "rundfunk": "rundfunk", "rundfunks": "rundfunk", "rundgang": "rundgang", "rundheit": "rundheit", "rundlich": "rundlich", "rundlichen": "rundlich", "rundschrift": "rundschrift", "rundung": "rundung", "runge": "rung", "runterbracht": "runterbracht", "runzeln": "runzeln", "runzelreiche": "runzelreich", "runzlige": "runzlig", "runzligen": "runzlig", "russ": "russ", "ruß": "russ", "russenpeitsche": "russenpeitsch", "russes": "russ", "rußes": "russ", "russgesichtige": "russgesicht", "russigen": "russig", "russiger": "russig", "russisch": "russisch", "russland": "russland", "rüstet": "rustet", "rüstig": "rustig", "rüstige": "rustig", "rüstigen": "rustig", "rüstiger": "rustig", "rüstigkeit": "rustig", "rüstung": "rustung", "rute": "rut", "ruten": "rut", "rutenhieb": "rutenhieb", "rutenstreiche": "rutenstreich", "rutenwald": "rutenwald", "rutschbahn": "rutschbahn", "rutschbahnen": "rutschbahn", "rutschte": "rutscht", "rütteln": "rutteln", "rüttelte": "ruttelt", "rüttelten": "ruttelt", "s": "s", "saal": "saal", "saale": "saal", "saales": "saal", "saalhälfte": "saalhalft", "saat": "saat", "saaten": "saat", "saatfeld": "saatfeld", "sabbath": "sabbath", "sabbathe": "sabbath", "sabbaths": "sabbath", "sabbattollen": "sabbattoll", "säbel": "sabel", "säbelhieben": "sabelhieb", "säbels": "sabel", "sabine": "sabin", "sacconex": "sacconex", "sach": "sach", "sache": "sach", "sachen": "sach", "sacherklärungen": "sacherklar", "sachgemäss": "sachgemass", "sachgemässen": "sachgemass", "sachlage": "sachlag", "sachliche": "sachlich", "sachs": "sach", "sachse": "sachs", "sachsen": "sachs", "sächsische": "sachsisch", "sächsischen": "sachsisch", "sacht": "sacht", "sachte": "sacht", "sachten": "sacht", "sachverständigen": "sachverstand", "sachzusammenhang": "sachzusammenhang", "sack": "sack", "säckchen": "sackch", "säcke": "sack", "säcken": "sack", "sackgasse": "sackgass", "sackuhr": "sackuhr", "sacrosanctum": "sacrosanctum", "saeculi": "saeculi", "säet": "saet", "saffianschuhe": "saffianschuh", "saft": "saft", "sag": "sag", "sage": "sag", "sagen": "sag", "sägespäneleib": "sagespaneleib", "saget": "saget", "sagst": "sagst", "sagt": "sagt", "sägt": "sagt", "sagte": "sagt", "sagten": "sagt", "sah": "sah", "sähe": "sah", "sahen": "sah", "sähen": "sah", "sahest": "sah", "sahet": "sahet", "sähet": "sahet", "saint": "saint", "saiten": "sait", "saiteninstrument": "saiteninstrument", "saiteninstrumente": "saiteninstrument", "saitenspieler": "saitenspiel", "sakra": "sakra", "sakramente": "sakrament", "sakramenten": "sakrament", "sakramentsverwaltung": "sakramentsverwalt", "säkular": "sakular", "salami": "salami", "salat": "salat", "salatblatt": "salatblatt", "salbte": "salbt", "salbung": "salbung", "salbungsvoll": "salbungsvoll", "säle": "sal", "sali": "sali", "salis": "salis", "salomo": "salomo", "salomon": "salomon", "salomos": "salomos", "salutieren": "saluti", "salutierend": "salutier", "salvieren": "salvi", "salz": "salz", "salzbüchsl": "salzbuchsl", "salzburg": "salzburg", "salzburger": "salzburg", "salze": "salz", "salzgeist": "salzgeist", "salzknappe": "salzknapp", "salzknappen": "salzknapp", "sam": "sam", "sämann": "samann", "samaria": "samaria", "same": "sam", "samen": "sam", "samenkörner": "samenkorn", "samenkraut": "samenkraut", "samenreste": "samenr", "samens": "sam", "samm": "samm", "sammelaktion": "sammelaktion", "sammeln": "sammeln", "sammelnd": "sammelnd", "sammelt": "sammelt", "sammelte": "sammelt", "sammelten": "sammelt", "sammet": "sammet", "sammetfutter": "sammetfutt", "sammetkleide": "sammetkleid", "sammetrasen": "sammetras", "sammetschärpe": "sammetscharp", "sammetweste": "sammetw", "sammle": "samml", "sammlung": "sammlung", "sammlungen": "sammlung", "sample": "sampl", "samstag": "samstag", "samstagabend": "samstagab", "samt": "samt", "sämtlich": "samtlich", "sämtliche": "samtlich", "sämtlichen": "samtlich", "sämtlicher": "samtlich", "samtwämschen": "samtwamsch", "samuel": "samuel", "samuels": "samuel", "sand": "sand", "sande": "sand", "sandes": "sand", "sandige": "sandig", "sandkörnern": "sandkorn", "sandmann": "sandmann", "sandmännchen": "sandmannch", "sandmännchens": "sandmannch", "sandmännchenschlitten": "sandmannchenschlitt", "sandmanns": "sandmann", "sandsiegel": "sandsiegel", "sandstein": "sandstein", "sandte": "sandt", "sandten": "sandt", "sanft": "sanft", "sanfte": "sanft", "sänfte": "sanft", "sanftem": "sanft", "sanften": "sanft", "sänften": "sanft", "sanfter": "sanft", "sanftes": "sanft", "sanftesten": "sanft", "sanftleuchtenden": "sanftleucht", "sanftmut": "sanftmut", "sanftmütige": "sanftmut", "sanftmütiger": "sanftmut", "sanftsäuselndes": "sanftsauselnd", "sang": "sang", "sänge": "sang", "sangen": "sang", "sängen": "sang", "sänger": "sang", "sängerin": "sangerin", "sangesbrüder": "sangesbrud", "sank": "sank", "sänke": "sank", "sanken": "sank", "sankt": "sankt", "sanktionen": "sanktion", "sanktionslos": "sanktionslos", "sann": "sann", "saphir": "saphir", "saphirstein": "saphirstein", "saphirsteines": "saphirstein", "saphirsteins": "saphirstein", "sapperlöter": "sapperlot", "sappermenter": "sapperment", "sarah": "sarah", "sardes": "sard", "sarg": "sarg", "sarge": "sarg", "särgen": "sarg", "sarnen": "sarn", "sass": "sass", "saß": "sass", "sässe": "sass", "sassen": "sass", "saßen": "sass", "sässen": "sass", "sät": "sat", "satan": "satan", "satanischen": "satan", "satansunternehmen": "satansunternehm", "säte": "sat", "satellitenschüssel": "satellitenschussel", "satirisch": "satir", "satirische": "satir", "satrap": "satrap", "satt": "satt", "sattelbandage": "sattelbandag", "satteln": "satteln", "sätteln": "satteln", "sattgegessen": "sattgegess", "sättigen": "sattig", "sättigst": "sattig", "sättigung": "sattig", "sattsam": "sattsam", "sattzuessen": "sattzuess", "saturnalien": "saturnali", "satz": "satz", "satze": "satz", "sätze": "satz", "sätzen": "satz", "satzes": "satz", "satzung": "satzung", "satzungen": "satzung", "sau": "sau", "sauber": "saub", "saubere": "saub", "sauberen": "saub", "säuberlich": "saub", "säubernde": "saubernd", "sauberste": "sauberst", "säuberte": "saubert", "säubrer": "saubr", "sauer": "sau", "sauereien": "sauerei", "sauerkraut": "sauerkraut", "sauersüss": "sauersuss", "säugamme": "saugamm", "säugammen": "saugamm", "säuge": "saug", "saugen": "saug", "säugen": "saug", "säugende": "saugend", "säugenden": "saugend", "säugendes": "saugend", "säugerin": "saugerin", "saugeröhrchen": "saugerohrch", "sauget": "sauget", "säugling": "saugling", "säuglinge": "saugling", "säuglings": "saugling", "säugt": "saugt", "säugte": "saugt", "säugung": "saugung", "saul": "saul", "säule": "saul", "säulen": "saul", "säulengängen": "saulengang", "saum": "saum", "saume": "saum", "säume": "saum", "säumend": "saumend", "saumensch": "saumensch", "säumet": "saumet", "säumnis": "saumnis", "säumte": "saumt", "saus": "saus", "sauschwab": "sauschwab", "säuseln": "sauseln", "säuselte": "sauselt", "sausen": "saus", "sausendem": "sausend", "sauser": "saus", "sausergelüste": "sausergelust", "sausers": "saus", "sauste": "saust", "sausten": "saust", "sautopf": "sautopf", "savoyarde": "savoyard", "savoyarden": "savoyard", "savoyardenkinder": "savoyardenkind", "savoyardenkindern": "savoyardenkind", "savoyardin": "savoyardin", "savoyen": "savoy", "savoyens": "savoy", "savoyische": "savoy", "savoyischen": "savoy", "schabernack": "schabernack", "schäbig": "schabig", "schäbige": "schabig", "schabracken": "schabrack", "schach": "schach", "schachtel": "schachtel", "schächtelchen": "schachtelch", "schachteln": "schachteln", "schad": "schad", "schaddai": "schaddai", "schaddais": "schaddais", "schade": "schad", "schädel": "schadel", "schädelplatte": "schadelplatt", "schaden": "schad", "schäden": "schad", "schadenfreude": "schadenfreud", "schadenfrohem": "schadenfroh", "schadet": "schadet", "schadete": "schadet", "schadhaft": "schadhaft", "schädlich": "schadlich", "schadlos": "schadlos", "schaf": "schaf", "schäfchen": "schafch", "schäfchenhimmel": "schafchenhimmel", "schäfchenstall": "schafchenstall", "schafe": "schaf", "schafen": "schaf", "schäfer": "schaf", "schäferhunde": "schaferhund", "schafes": "schaf", "schaff": "schaff", "schaffen": "schaff", "schaffl": "schaffl", "schafft": "schafft", "schaffte": "schafft", "schafherde": "schafherd", "schafhirt": "schafhirt", "schafotte": "schafott", "schafsköpf": "schafskopf", "schafspelz": "schafspelz", "schaft": "schaft", "schakale": "schakal", "schäkernd": "schakernd", "schäkerte": "schakert", "schal": "schal", "schale": "schal", "schalen": "schal", "schälen": "schal", "schalkhafter": "schalkhaft", "schalkheit": "schalkheit", "schalksblick": "schalksblick", "schall": "schall", "schallen": "schall", "schallenden": "schallend", "schallplatte": "schallplatt", "schalt": "schalt", "schalter": "schalt", "schalterraum": "schalterraum", "schalterschluß": "schalterschluss", "schaltete": "schaltet", "scham": "scham", "schäme": "scham", "schämen": "scham", "schamhaft": "schamhaft", "schamlosigkeit": "schamlos", "schämst": "scham", "schämt": "schamt", "schämte": "schamt", "schämten": "schamt", "schand": "schand", "schande": "schand", "schändlich": "schandlich", "schändliche": "schandlich", "schar": "schar", "scharen": "schar", "scharf": "scharf", "scharfe": "scharf", "schärfe": "scharf", "scharfen": "scharf", "schärfen": "scharf", "scharfer": "scharf", "schärfer": "scharf", "scharfes": "scharf", "scharfsichtig": "scharfsicht", "scharfsinn": "scharfsinn", "scharfsinnig": "scharfsinn", "scharfsinnige": "scharfsinn", "scharfsinniger": "scharfsinn", "scharfsinnigkeit": "scharfsinn", "scharlach": "scharlach", "scharlachuniform": "scharlachuniform", "scharren": "scharr", "scharrten": "scharrt", "scharten": "schart", "schatten": "schatt", "schattenbilder": "schattenbild", "schattendunklen": "schattendunkl", "schattenreichen": "schattenreich", "schattens": "schatt", "schattenseite": "schattenseit", "schattige": "schattig", "schattigen": "schattig", "schattiger": "schattig", "schatz": "schatz", "schätzbarste": "schatzbarst", "schätzchen": "schatzch", "schatze": "schatz", "schätze": "schatz", "schätzen": "schatz", "schatzerl": "schatzerl", "schatzgräber": "schatzgrab", "schatzhause": "schatzhaus", "schatzhäuser": "schatzhaus", "schatzhäusern": "schatzhaus", "schatzkästlein": "schatzkastlein", "schätzt": "schatzt", "schätzte": "schatzt", "schätzten": "schatzt", "schatzung": "schatzung", "schau": "schau", "schaubrote": "schaubrot", "schaubroten": "schaubrot", "schaubühne": "schaubuhn", "schauder": "schaud", "schauderhaft": "schauderhaft", "schauderhaften": "schauderhaft", "schaudern": "schaud", "schaudert": "schaudert", "schaue": "schau", "schauen": "schau", "schauer": "schau", "schauergeschichten": "schauergeschicht", "schauerlich": "schau", "schauerlichen": "schau", "schauerte": "schauert", "schauet": "schauet", "schaukelpferd": "schaukelpferd", "schaukelpferdchen": "schaukelpferdch", "schaukelte": "schaukelt", "schaukelten": "schaukelt", "schaum": "schaum", "schäumend": "schaumend", "schäumenden": "schaumend", "schaumigen": "schaumig", "schäumt": "schaumt", "schauplatz": "schauplatz", "schauplatze": "schauplatz", "schaurig": "schaurig", "schauspiel": "schauspiel", "schauspiele": "schauspiel", "schauspieler": "schauspiel", "schauspielerin": "schauspielerin", "schauspielern": "schauspiel", "schauspielkunst": "schauspielkun", "schauspielschule": "schauspielschul", "schaust": "schaust", "schaustellung": "schaustell", "schaustellungen": "schaustell", "schaut": "schaut", "schautanz": "schautanz", "schaute": "schaut", "schauten": "schaut", "scheba": "scheba", "schebas": "schebas", "scheelen": "scheel", "scheht": "scheht", "scheibe": "scheib", "scheiben": "scheib", "scheibenberaubten": "scheibenberaubt", "scheibenstand": "scheibenstand", "scheide": "scheid", "scheidebrief": "scheidebrief", "scheidekünstler": "scheidekunstl", "scheiden": "scheid", "scheidendes": "scheidend", "scheidet": "scheidet", "scheidewege": "scheideweg", "scheidung": "scheidung", "scheidungsritual": "scheidungsritual", "schein": "schein", "scheinbar": "scheinbar", "scheinbare": "scheinbar", "scheinbarem": "scheinbar", "scheinbaren": "scheinbar", "scheinbarer": "scheinbar", "scheinbarere": "scheinbar", "scheinbares": "scheinbar", "scheinbarkeiten": "scheinbar", "scheine": "schein", "scheinen": "schein", "scheinende": "scheinend", "scheinendes": "scheinend", "scheines": "schein", "scheinet": "scheinet", "scheinfürsten": "scheinfurst", "scheingründe": "scheingrund", "scheingutem": "scheingut", "scheinheilig": "scheinheil", "scheins": "schein", "scheint": "scheint", "scheintoten": "scheintot", "scheinverkehr": "scheinverkehr", "scheinwahrem": "scheinwahr", "scheißkasten": "scheisskast", "scheit": "scheit", "scheitel": "scheitel", "scheiterhaufen": "scheiterhauf", "scheiterte": "scheitert", "schelach": "schelach", "schellenklang": "schellenklang", "schellenspiel": "schellenspiel", "schellte": "schellt", "schelm": "schelm", "schelme": "schelm", "schelmenkind": "schelmenkind", "schelmische": "schelmisch", "scheloniten": "schelonit", "schelten": "schelt", "scheltende": "scheltend", "scheltens": "schelt", "schem": "schem", "schema": "schema", "schemata": "schemata", "schemate": "schemat", "schemel": "schemel", "schemelchen": "schemelch", "schemen": "schem", "schenk": "schenk", "schenke": "schenk", "schenkeläufer": "schenkelauf", "schenkeln": "schenkeln", "schenken": "schenk", "schenkst": "schenk", "schenkstuben": "schenkstub", "schenkte": "schenkt", "schenkwirtes": "schenkwirt", "schenkwirtschaft": "schenkwirtschaft", "scherben": "scherb", "schere": "scher", "scherz": "scherz", "scherze": "scherz", "scherzen": "scherz", "scherzend": "scherzend", "scherzhafte": "scherzhaft", "scherzhafterweise": "scherzhafterweis", "scherzreden": "scherzred", "scheth": "scheth", "scheths": "scheth", "scheu": "scheu", "scheuchen": "scheuch", "scheuchte": "scheucht", "scheue": "scheu", "scheuen": "scheu", "scheuer": "scheu", "scheuernden": "scheuernd", "scheuert": "scheuert", "scheuerte": "scheuert", "scheuete": "scheuet", "scheunchen": "scheunch", "scheune": "scheun", "scheunenböden": "scheunenbod", "scheunentor": "scheunentor", "scheusale": "scheusal", "scheusslich": "scheusslich", "scheusslichen": "scheusslich", "scheußlichen": "scheusslich", "scheut": "scheut", "scheuten": "scheut", "schichors": "schichor", "schichten": "schicht", "schick": "schick", "schicken": "schick", "schickende": "schickend", "schicklich": "schicklich", "schicklichen": "schicklich", "schicklicher": "schicklich", "schicksal": "schicksal", "schicksalhaft": "schicksalhaft", "schicksals": "schicksal", "schicksalsrufe": "schicksalsruf", "schicksalswendungen": "schicksalswend", "schickt": "schickt", "schickte": "schickt", "schickten": "schickt", "schiebend": "schiebend", "schiebt": "schiebt", "schiechen": "schiech", "schied": "schied", "schieden": "schied", "schief": "schief", "schiefe": "schief", "schiefer": "schief", "schiefertafeln": "schiefertafeln", "schiefes": "schief", "schieläugigen": "schielaug", "schielen": "schiel", "schielten": "schielt", "schien": "schien", "schiene": "schien", "schienen": "schien", "schier": "schier", "schiess": "schiess", "schiessbaumwolle": "schiessbaumwoll", "schiessbaumwollpatrone": "schiessbaumwollpatron", "schiessen": "schiess", "schießen": "schiess", "schiessend": "schiessend", "schiessenden": "schiessend", "schiessn": "schiessn", "schiessprügel": "schiessprugel", "schiesst": "schiesst", "schiff": "schiff", "schiffbaren": "schiffbar", "schiffe": "schiff", "schiffen": "schiff", "schiffer": "schiff", "schiffern": "schiff", "schiffleute": "schiffleut", "schiffshauptmann": "schiffshauptmann", "schiffslände": "schiffsland", "schiffsleuten": "schiffsleut", "schild": "schild", "schilde": "schild", "schildern": "schild", "schildert": "schildert", "schilderten": "schildert", "schilderung": "schilder", "schildkröte": "schildkrot", "schildkrötenbouillon": "schildkrotenbouillon", "schildkrötschalen": "schildkrotschal", "schildpattgewölbe": "schildpattgewolb", "schildpattkämme": "schildpattkamm", "schilf": "schilf", "schilfkeulen": "schilfkeul", "schilfmeer": "schilfme", "schilfmeeres": "schilfme", "schilfrohr": "schilfrohr", "schilfrohrs": "schilfrohr", "schilfs": "schilf", "schilfstöckchen": "schilfstockch", "schilfwiesen": "schilfwies", "schillernden": "schillernd", "schillers": "schill", "schimeon": "schimeon", "schimeons": "schimeon", "schimmel": "schimmel", "schimmer": "schimm", "schimmern": "schimm", "schimmernd": "schimmernd", "schimmernde": "schimmernd", "schimmernden": "schimmernd", "schimmernder": "schimmernd", "schimmert": "schimmert", "schimmerte": "schimmert", "schimmerten": "schimmert", "schimpf": "schimpf", "schimpfen": "schimpf", "schimpfendes": "schimpfend", "schimpflichen": "schimpflich", "schimpfworten": "schimpfwort", "schindanger": "schindang", "schinde": "schind", "schindeldach": "schindeldach", "schinden": "schind", "schinken": "schink", "schiphra": "schiphra", "schirm": "schirm", "schirren": "schirr", "schirrl": "schirrl", "schla": "schla", "schlacht": "schlacht", "schlachte": "schlacht", "schlachten": "schlacht", "schlachtheeren": "schlachthe", "schlachtopfer": "schlachtopf", "schlachtopfern": "schlachtopf", "schlachtung": "schlachtung", "schlaf": "schlaf", "schlafe": "schlaf", "schläfe": "schlaf", "schlafen": "schlaf", "schläfen": "schlaf", "schlafend": "schlafend", "schlafende": "schlafend", "schlafenden": "schlafend", "schlafender": "schlafend", "schlafes": "schlaf", "schlaffen": "schlaff", "schlafgefährten": "schlafgefahrt", "schlafkammer": "schlafkamm", "schlafkammern": "schlafkamm", "schlafkappen": "schlafkapp", "schlaflied": "schlaflied", "schlaflose": "schlaflos", "schlafloser": "schlaflos", "schlaflust": "schlaflust", "schläfrig": "schlafrig", "schlafrock": "schlafrock", "schlafrockzipfel": "schlafrockzipfel", "schläfst": "schlaf", "schläft": "schlaft", "schlaftrunken": "schlaftrunk", "schlafwandel": "schlafwandel", "schlafzimmer": "schlafzimm", "schlag": "schlag", "schläg": "schlag", "schlage": "schlag", "schläge": "schlag", "schlagen": "schlag", "schlägen": "schlag", "schlagend": "schlagend", "schlager": "schlag", "schlages": "schlag", "schlaget": "schlaget", "schlagfertig": "schlagfert", "schlagn": "schlagn", "schlagsahne": "schlagsahn", "schlagsahnenkegel": "schlagsahnenkegel", "schlagschatten": "schlagschatt", "schlägst": "schlag", "schlägt": "schlagt", "schlang": "schlang", "schlange": "schlang", "schlängeln": "schlangeln", "schlängelte": "schlangelt", "schlangen": "schlang", "schlangengifte": "schlangengift", "schlangenstirn": "schlangenstirn", "schlänglein": "schlanglein", "schlank": "schlank", "schlankaufgerichtet": "schlankaufgerichtet", "schlanke": "schlank", "schlankem": "schlank", "schlanken": "schlank", "schlanker": "schlank", "schlankere": "schlank", "schlankes": "schlank", "schlankgewachsenes": "schlankgewachs", "schlankheit": "schlankheit", "schlappen": "schlapp", "schlappschuhen": "schlappschuh", "schlau": "schlau", "schlauchboot": "schlauchboot", "schlaucherl": "schlaucherl", "schlaue": "schlau", "schlauen": "schlau", "schlauer": "schlau", "schlaues": "schlau", "schlauheit": "schlauheit", "schlauheiten": "schlauheit", "schlecht": "schlecht", "schlechte": "schlecht", "schlechtem": "schlecht", "schlechten": "schlecht", "schlechter": "schlecht", "schlechterdings": "schlechterding", "schlechteren": "schlecht", "schlechteres": "schlecht", "schlechtes": "schlecht", "schlechteste": "schlecht", "schlechtesten": "schlecht", "schlechthin": "schlechthin", "schlechtigkeit": "schlechtig", "schlechtigkeitsmesser": "schlechtigkeitsmess", "schlechtweg": "schlechtweg", "schlecken": "schleck", "schleckerfritze": "schleckerfritz", "schlegel": "schlegel", "schlegelschuss": "schlegelschuss", "schleiche": "schleich", "schleichen": "schleich", "schleichenden": "schleichend", "schleicher": "schleich", "schleichst": "schleich", "schleicht": "schleicht", "schleier": "schleier", "schleifen": "schleif", "schleifte": "schleift", "schleiften": "schleift", "schlemmen": "schlemm", "schlemmer": "schlemm", "schlendernd": "schlendernd", "schlenderte": "schlendert", "schlenkerte": "schlenkert", "schleppe": "schlepp", "schleppen": "schlepp", "schleppenden": "schleppend", "schlepptau": "schlepptau", "schleppte": "schleppt", "schleppten": "schleppt", "schlesier": "schlesi", "schleswig": "schleswig", "schleuder": "schleud", "schleudern": "schleud", "schleuderte": "schleudert", "schleunig": "schleunig", "schleunigst": "schleunig", "schleuse": "schleus", "schleusen": "schleus", "schlich": "schlich", "schlichen": "schlich", "schlicht": "schlicht", "schlichte": "schlicht", "schlichten": "schlicht", "schlichtesten": "schlicht", "schlichtet": "schlichtet", "schlickversteckens": "schlickversteck", "schlief": "schlief", "schliefen": "schlief", "schliess": "schliess", "schließ": "schliess", "schliesse": "schliess", "schliessen": "schliess", "schließen": "schliess", "schliessend": "schliessend", "schliesslich": "schliesslich", "schließlich": "schliesslich", "schliesslichen": "schliesslich", "schließlichen": "schliesslich", "schliesst": "schliesst", "schließt": "schliesst", "schlimm": "schlimm", "schlimme": "schlimm", "schlimmen": "schlimm", "schlimmer": "schlimm", "schlimmere": "schlimm", "schlimmeres": "schlimm", "schlimmern": "schlimm", "schlimmes": "schlimm", "schlimmste": "schlimm", "schlimmsten": "schlimm", "schlinge": "schling", "schlingen": "schling", "schlingt": "schlingt", "schlitten": "schlitt", "schlittenbahn": "schlittenbahn", "schlittenfahrt": "schlittenfahrt", "schlittens": "schlitt", "schlittenzierat": "schlittenzierat", "schlittenzug": "schlittenzug", "schlohweissseidenen": "schlohweissseid", "schlohweißseidenen": "schlohweissseid", "schloss": "schloss", "schloß": "schloss", "schlosse": "schloss", "schlossen": "schloss", "schlösser": "schloss", "schlosses": "schloss", "schlossgesellschaft": "schlossgesellschaft", "schloßgesellschaft": "schlossgesellschaft", "schlosshof": "schlosshof", "schloßhof": "schlosshof", "schlossstall": "schlossstall", "schloßstall": "schlossstall", "schlossstil": "schlossstil", "schloßstil": "schlossstil", "schlosstor": "schlosstor", "schloßtor": "schlosstor", "schlottrig": "schlottrig", "schlottrige": "schlottrig", "schlucht": "schlucht", "schluchten": "schlucht", "schluchzend": "schluchzend", "schluchzte": "schluchzt", "schluchzten": "schluchzt", "schluck": "schluck", "schluckend": "schluckend", "schlücklein": "schlucklein", "schluckte": "schluckt", "schlug": "schlug", "schlugen": "schlug", "schlummerlosen": "schlummerlos", "schlummertrunkenen": "schlummertrunk", "schlund": "schlund", "schlüpfen": "schlupf", "schlüpferig": "schlupfer", "schlüpft": "schlupft", "schlüpfte": "schlupft", "schlüpften": "schlupft", "schlupfwinkel": "schlupfwinkel", "schlupfwinkeln": "schlupfwinkeln", "schlurfen": "schlurf", "schlürft": "schlurft", "schluss": "schluss", "schluß": "schluss", "schlussabrechnung": "schlussabrechn", "schlußabrechnung": "schlussabrechn", "schlusse": "schluss", "schlüsse": "schluss", "schlüssel": "schlussel", "schlüsselblumen": "schlusselblum", "schlüsselloch": "schlusselloch", "schlüssen": "schluss", "schlusses": "schluss", "schlussfolgerungen": "schlussfolger", "schlußfolgerungen": "schlussfolger", "schlussform": "schlussform", "schlußform": "schlussform", "schlusshandlung": "schlusshandl", "schlüssig": "schlussig", "schlusspunkt": "schlusspunkt", "schlußpunkt": "schlusspunkt", "schlusspunkte": "schlusspunkt", "schlußpunkte": "schlusspunkt", "schlusssatze": "schlusssatz", "schmach": "schmach", "schmachten": "schmacht", "schmachtend": "schmachtend", "schmachtet": "schmachtet", "schmachtete": "schmachtet", "schmächtig": "schmachtig", "schmächtige": "schmachtig", "schmäher": "schmah", "schmählich": "schmahlich", "schmählichste": "schmahlich", "schmal": "schmal", "schmale": "schmal", "schmalem": "schmal", "schmalen": "schmal", "schmaler": "schmal", "schmäler": "schmal", "schmales": "schmal", "schmatzend": "schmatzend", "schmatzte": "schmatzt", "schmauchend": "schmauchend", "schmaucht": "schmaucht", "schmauchte": "schmaucht", "schmeckt": "schmeckt", "schmeckte": "schmeckt", "schmeckten": "schmeckt", "schmeichel": "schmeichel", "schmeichelei": "schmeichelei", "schmeichelhaft": "schmeichelhaft", "schmeichelhafter": "schmeichelhaft", "schmeicheln": "schmeicheln", "schmeichelnder": "schmeichelnd", "schmeichelt": "schmeichelt", "schmeichelte": "schmeichelt", "schmeichelten": "schmeichelt", "schmeißt": "schmeisst", "schmelzend": "schmelzend", "schmelzende": "schmelzend", "schmelzer": "schmelz", "schmelzers": "schmelz", "schmelzt": "schmelzt", "schmer": "schmer", "schmerz": "schmerz", "schmerze": "schmerz", "schmerzen": "schmerz", "schmerzens": "schmerz", "schmerzes": "schmerz", "schmerzhaft": "schmerzhaft", "schmerzhaften": "schmerzhaft", "schmerzhafter": "schmerzhaft", "schmerzhaftesten": "schmerzhaft", "schmerzlich": "schmerzlich", "schmerzlichen": "schmerzlich", "schmerzlicher": "schmerzlich", "schmerzlos": "schmerzlos", "schmerzlose": "schmerzlos", "schmerzt": "schmerzt", "schmerzte": "schmerzt", "schmerzten": "schmerzt", "schmerzvollen": "schmerzvoll", "schmetterlinge": "schmetterling", "schmetternde": "schmetternd", "schmetternden": "schmetternd", "schmetterten": "schmettert", "schmid": "schmid", "schmied": "schmied", "schmiedeberg": "schmiedeberg", "schmiegsam": "schmiegsam", "schmiegt": "schmiegt", "schmiegte": "schmiegt", "schmiegten": "schmiegt", "schmierseife": "schmierseif", "schmierte": "schmiert", "schmirgel": "schmirgel", "schmolle": "schmoll", "schmollen": "schmoll", "schmollend": "schmollend", "schmollende": "schmollend", "schmollenden": "schmollend", "schmollendes": "schmollend", "schmollens": "schmoll", "schmoller": "schmoll", "schmollerei": "schmollerei", "schmollkunst": "schmollkun", "schmollte": "schmollt", "schmollwesen": "schmollwes", "schmolz": "schmolz", "schmuck": "schmuck", "schmucke": "schmuck", "schmucken": "schmuck", "schmücken": "schmuck", "schmucker": "schmuck", "schmuckes": "schmuck", "schmuckkämme": "schmuckkamm", "schmucks": "schmuck", "schmückte": "schmuckt", "schmunzeln": "schmunzeln", "schmunzelnd": "schmunzelnd", "schmunzelte": "schmunzelt", "schmutz": "schmutz", "schmutzig": "schmutzig", "schmutzige": "schmutzig", "schmutzigem": "schmutzig", "schmutzigen": "schmutzig", "schmutziges": "schmutzig", "schnäbel": "schnabel", "schnäbelchen": "schnabelch", "schnabulieren": "schnabuli", "schnabulierte": "schnabuliert", "schnallen": "schnall", "schnallte": "schnallt", "schnalzenden": "schnalzend", "schnalzte": "schnalzt", "schnappen": "schnapp", "schnappende": "schnappend", "schnappte": "schnappt", "schnappten": "schnappt", "schnaps": "schnaps", "schnäpschen": "schnapsch", "schnäpse": "schnaps", "schnarrte": "schnarrt", "schnaubte": "schnaubt", "schnaubten": "schnaubt", "schnaufen": "schnauf", "schnaufend": "schnaufend", "schnaufender": "schnaufend", "schnaufte": "schnauft", "schnauze": "schnauz", "schnäuzer": "schnauz", "schnauzte": "schnauzt", "schnecken": "schneck", "schnee": "schnee", "schneebällchen": "schneeballch", "schneeberge": "schneeberg", "schneeflocken": "schneeflock", "schneegeschichten": "schneegeschicht", "schneegestöber": "schneegestob", "schneegestöbers": "schneegestob", "schneeglanz": "schneeglanz", "schneegrube": "schneegrub", "schneegrubenwand": "schneegrubenwand", "schneehaarige": "schneehaar", "schneeige": "schneeig", "schneeiges": "schneeig", "schneeliedem": "schneelied", "schneelieder": "schneelied", "schneemeer": "schneeme", "schneesendungen": "schneesend", "schneeweiss": "schneeweiss", "schneeweisse": "schneeweiss", "schneeweissem": "schneeweiss", "schneeweissen": "schneeweiss", "schneeweißen": "schneeweiss", "schneeweisser": "schneeweiss", "schneeweisses": "schneeweiss", "schneide": "schneid", "schneiden": "schneid", "schneidend": "schneidend", "schneidenden": "schneidend", "schneider": "schneid", "schneiderberufe": "schneiderberuf", "schneiderblütchen": "schneiderblutch", "schneiderfestzug": "schneiderfestzug", "schneidergesellen": "schneidergesell", "schneidergruppen": "schneidergrupp", "schneiderlein": "schneiderlein", "schneidermässig": "schneidermass", "schneidermeister": "schneidermeist", "schneidermeisters": "schneidermeist", "schneiders": "schneid", "schneidersleute": "schneidersleut", "schneiderwelt": "schneiderwelt", "schneiderwesen": "schneiderwes", "schneidest": "schneid", "schneidet": "schneidet", "schneidigste": "schneidig", "schneien": "schneien", "schneit": "schneit", "schneite": "schneit", "schnell": "schnell", "schnelläufer": "schnellauf", "schnelle": "schnell", "schnellen": "schnell", "schneller": "schnell", "schnelles": "schnell", "schnelligkeit": "schnellig", "schnellsten": "schnell", "schnellte": "schnellt", "schnepfe": "schnepf", "schnepfen": "schnepf", "schnepfengarn": "schnepfengarn", "schnepflein": "schnepflein", "schnepper": "schnepp", "schneppers": "schnepp", "schneuz": "schneuz", "schneuzen": "schneuz", "schnippchen": "schnippch", "schnippel": "schnippel", "schnippeln": "schnippeln", "schnippisch": "schnippisch", "schnitt": "schnitt", "schnitthaaren": "schnitthaar", "schnitzarbeit": "schnitzarbeit", "schnitzbild": "schnitzbild", "schnitzbildern": "schnitzbild", "schnitzelten": "schnitzelt", "schnitzereien": "schnitzerei", "schnitzwerk": "schnitzwerk", "schnöde": "schnod", "schnöden": "schnod", "schnöder": "schnod", "schnödes": "schnod", "schnörkel": "schnorkel", "schnörkels": "schnorkel", "schnüffelnd": "schnuffelnd", "schnüffelte": "schnuffelt", "schnupfen": "schnupf", "schnupfennase": "schnupfennas", "schnupft": "schnupft", "schnupftuch": "schnupftuch", "schnuppengestöber": "schnuppengestob", "schnuppern": "schnupp", "schnupperte": "schnuppert", "schnur": "schnur", "schnürchen": "schnurch", "schnüre": "schnur", "schnüren": "schnur", "schnürlein": "schnurlein", "schnurr": "schnurr", "schnurrbart": "schnurrbart", "schnurrbärtchen": "schnurrbartch", "schnürst": "schnurst", "schnürte": "schnurt", "schnürten": "schnurt", "schob": "schob", "schoben": "schob", "schoham": "schoham", "schokolade": "schokolad", "schokoladenplätzchen": "schokoladenplatzch", "schokoladenplätzchenkies": "schokoladenplatzchenki", "schokoladenwege": "schokoladenweg", "scholl": "scholl", "schollen": "scholl", "schon": "schon", "schön": "schon", "schöne": "schon", "schönem": "schon", "schonen": "schon", "schönen": "schon", "schonende": "schonend", "schöner": "schon", "schönere": "schon", "schöneres": "schon", "schönern": "schon", "schöners": "schon", "schönes": "schon", "schöngebautes": "schongebaut", "schöngelegenes": "schongeleg", "schönheit": "schonheit", "schonn": "schonn", "schöns": "schon", "schönst": "schon", "schönste": "schon", "schönsten": "schon", "schönstes": "schon", "schonung": "schonung", "schonungslos": "schonungslos", "school": "school", "schopenhauer": "schopenhau", "schopenhauers": "schopenhau", "schöpfe": "schopf", "schöpfen": "schopf", "schöpfer": "schopf", "schöpft": "schopft", "schöpfte": "schopft", "schöpften": "schopft", "schöpfung": "schopfung", "schöpfungstage": "schopfungstag", "schöppchen": "schoppch", "schoppen": "schopp", "schöpsenfleisch": "schopsenfleisch", "schorf": "schorf", "schornstein": "schornstein", "schornsteinfeger": "schornsteinfeg", "schoss": "schoss", "schoß": "schoss", "schosse": "schoss", "schoße": "schoss", "schossen": "schoss", "schoten": "schot", "schottischen": "schottisch", "schrabenhauser": "schrabenhaus", "schräg": "schrag", "schräger": "schrag", "schrak": "schrak", "schrammelquartett": "schrammelquartett", "schrammen": "schramm", "schrank": "schrank", "schränke": "schrank", "schranken": "schrank", "schrankes": "schrank", "schrauben": "schraub", "schraubte": "schraubt", "schreck": "schreck", "schreckbare": "schreckbar", "schreckbarste": "schreckbarst", "schrecken": "schreck", "schreckens": "schreck", "schreckensherrschaft": "schreckensherrschaft", "schrecket": "schrecket", "schrecklich": "schrecklich", "schreckliche": "schrecklich", "schrecklichen": "schrecklich", "schrecklicher": "schrecklich", "schreckmittel": "schreckmittel", "schrei": "schrei", "schreibart": "schreibart", "schreibe": "schreib", "schreiben": "schreib", "schreiber": "schreib", "schreibereien": "schreiberei", "schreibmaschinenfräulein": "schreibmaschinenfraulein", "schreibpapier": "schreibpapi", "schreibt": "schreibt", "schreibtafel": "schreibtafel", "schreibtisch": "schreibtisch", "schreibtischs": "schreibtisch", "schreibzeug": "schreibzeug", "schreien": "schreien", "schreiend": "schreiend", "schreiende": "schreiend", "schreit": "schreit", "schreiten": "schreit", "schreitendes": "schreitend", "schreitet": "schreitet", "schrie": "schrie", "schrieb": "schrieb", "schrieben": "schrieb", "schrieen": "schrieen", "schrift": "schrift", "schriften": "schrift", "schriftgelehrten": "schriftgelehrt", "schriftgelehrter": "schriftgelehrt", "schriftlich": "schriftlich", "schriftlicher": "schriftlich", "schriftsteller": "schriftstell", "schriftstellern": "schriftstell", "schriftstücke": "schriftstuck", "schrill": "schrill", "schrille": "schrill", "schrillem": "schrill", "schrillend": "schrillend", "schriller": "schrill", "schritt": "schritt", "schritte": "schritt", "schritten": "schritt", "schrittes": "schritt", "schrofen": "schrof", "schroffe": "schroff", "schroffes": "schroff", "schröpfköpfe": "schropfkopf", "schrörschnauzaschenbecher": "schrorschnauzaschenbech", "schrörschnauzaschenbechern": "schrorschnauzaschenbech", "schrotkörner": "schrotkorn", "schrott": "schrott", "schubert": "schubert", "schuberts": "schubert", "schublade": "schublad", "schubladen": "schublad", "schüchtern": "schucht", "schüchterne": "schuchtern", "schüchternen": "schuchtern", "schüchternheit": "schuchtern", "schuchzend": "schuchzend", "schuf": "schuf", "schuft": "schuft", "schufte": "schuft", "schuh": "schuh", "schuhe": "schuh", "schuhen": "schuh", "schuhläden": "schuhlad", "schuhmacher": "schuhmach", "schuhnägeln": "schuhnageln", "schuhsohlen": "schuhsohl", "schul": "schul", "schulbücher": "schulbuch", "schuld": "schuld", "schulden": "schuld", "schuldenschreiber": "schuldenschreib", "schuldenverkehrs": "schuldenverkehr", "schuldenwesen": "schuldenwes", "schuldig": "schuldig", "schuldige": "schuldig", "schuldigen": "schuldig", "schuldigkeit": "schuldig", "schuldlos": "schuldlos", "schuldlosen": "schuldlos", "schuldnern": "schuldn", "schuldopfers": "schuldopf", "schuldscheinen": "schuldschein", "schuldverhältnis": "schuldverhaltnis", "schuldverschreibungen": "schuldverschreib", "schule": "schul", "schulen": "schul", "schüler": "schul", "schulgehilfe": "schulgehilf", "schulgehilfen": "schulgehilf", "schulgerecht": "schulgerecht", "schulgerechter": "schulgerecht", "schulkind": "schulkind", "schulknaben": "schulknab", "schullehrer": "schullehr", "schulmässig": "schulmass", "schulmäßig": "schulmass", "schulmeister": "schulmeist", "schulpflichtigen": "schulpflicht", "schulstaub": "schulstaub", "schulten": "schult", "schulter": "schult", "schultern": "schult", "schulterstücken": "schulterstuck", "schultheisse": "schultheiss", "schuppen": "schupp", "schur": "schur", "schurke": "schurk", "schürze": "schurz", "schürzen": "schurz", "schürzenband": "schurzenband", "schürzte": "schurzt", "schuss": "schuss", "schusse": "schuss", "schüsse": "schuss", "schüssel": "schussel", "schüsseln": "schusseln", "schusses": "schuss", "schusslinie": "schusslini", "schussplatz": "schussplatz", "schuster": "schust", "schusterten": "schustert", "schutte": "schutt", "schütteln": "schutteln", "schüttelt": "schuttelt", "schüttelte": "schuttelt", "schüttelten": "schuttelt", "schütteren": "schutt", "schüttet": "schuttet", "schüttete": "schuttet", "schütteten": "schuttet", "schutz": "schutz", "schutzdienst": "schutzdien", "schutze": "schutz", "schütze": "schutz", "schützen": "schutz", "schützend": "schutzend", "schützende": "schutzend", "schützendem": "schutzend", "schützengraben": "schutzengrab", "schützenwaffe": "schutzenwaff", "schützer": "schutz", "schutzschürze": "schutzschurz", "schützt": "schutzt", "schützte": "schutzt", "schützten": "schutzt", "schutzumschlag": "schutzumschlag", "schwaar": "schwaar", "schwabbelgegend": "schwabbelgeg", "schwäbchen": "schwabch", "schwäbchens": "schwabch", "schwabe": "schwab", "schwaben": "schwab", "schwäbische": "schwabisch", "schwäbischen": "schwabisch", "schwäblein": "schwablein", "schwach": "schwach", "schwache": "schwach", "schwäche": "schwach", "schwachen": "schwach", "schwacher": "schwach", "schwächer": "schwach", "schwächere": "schwach", "schwaches": "schwach", "schwachheit": "schwachheit", "schwachheiten": "schwachheit", "schwachkopf": "schwachkopf", "schwachköpfe": "schwachkopf", "schwächlichsten": "schwachlich", "schwachnervigen": "schwachnerv", "schwachsinnig": "schwachsinn", "schwächt": "schwacht", "schwächte": "schwacht", "schwaden": "schwad", "schwäher": "schwah", "schwähers": "schwah", "schwalbennest": "schwalbenn", "schwamm": "schwamm", "schwammen": "schwamm", "schwane": "schwan", "schwang": "schwang", "schwange": "schwang", "schwangeren": "schwang", "schwänke": "schwank", "schwanken": "schwank", "schwankend": "schwankend", "schwankende": "schwankend", "schwankenden": "schwankend", "schwankes": "schwank", "schwankhafte": "schwankhaft", "schwankt": "schwankt", "schwankte": "schwankt", "schwankten": "schwankt", "schwanz": "schwanz", "schwänzchen": "schwanzch", "schwanze": "schwanz", "schwänze": "schwanz", "schwänzelnd": "schwanzelnd", "schwänzelte": "schwanzelt", "schwänzen": "schwanz", "schwanzes": "schwanz", "schwanzflosse": "schwanzfloss", "schwänzlein": "schwanzlein", "schwapp": "schwapp", "schwärme": "schwarm", "schwärmen": "schwarm", "schwärmende": "schwarmend", "schwärmenden": "schwarmend", "schwärmer": "schwarm", "schwärmerei": "schwarmerei", "schwärmerisches": "schwarmer", "schwärmern": "schwarm", "schwärmte": "schwarmt", "schwärmten": "schwarmt", "schwartenhälse": "schwartenhals", "schwarz": "schwarz", "schwarzbrot": "schwarzbrot", "schwarze": "schwarz", "schwärze": "schwarz", "schwarzem": "schwarz", "schwarzen": "schwarz", "schwärzen": "schwarz", "schwarzer": "schwarz", "schwarzes": "schwarz", "schwarzgekleideter": "schwarzgekleidet", "schwarzgelbes": "schwarzgelb", "schwärzliche": "schwarzlich", "schwärzlichen": "schwarzlich", "schwarzmeerküste": "schwarzmeerkust", "schwarzseidenes": "schwarzseid", "schwärzt": "schwarzt", "schwärzte": "schwarzt", "schwarzwollene": "schwarzwoll", "schwatze": "schwatz", "schwatzen": "schwatz", "schwatzend": "schwatzend", "schwätzer": "schwatz", "schwätzerei": "schwatzerei", "schwatzt": "schwatzt", "schwatzte": "schwatzt", "schwatzten": "schwatzt", "schwebe": "schweb", "schweben": "schweb", "schwebend": "schwebend", "schwebt": "schwebt", "schwebte": "schwebt", "schwebten": "schwebt", "schweden": "schwed", "schwedenkönigs": "schwedenkon", "schwefel": "schwefel", "schwefelduft": "schwefelduft", "schwefelgelb": "schwefelgelb", "schwefelgelbe": "schwefelgelb", "schwefelgelbem": "schwefelgelb", "schwefelgestank": "schwefelgestank", "schwefelholz": "schwefelholz", "schwefelhölzl": "schwefelholzl", "schwefelig": "schwefel", "schwefels": "schwefel", "schwefelstoff": "schwefelstoff", "schweifen": "schweif", "schweifte": "schweift", "schweig": "schweig", "schweige": "schweig", "schweigen": "schweig", "schweigend": "schweigend", "schweigende": "schweigend", "schweigenden": "schweigend", "schweigsam": "schweigsam", "schweinchen": "schweinch", "schweine": "schwein", "schweinerei": "schweinerei", "schweinestall": "schweinestall", "schweinigel": "schweinigel", "schweinsborste": "schweinsborst", "schweiss": "schweiss", "schweiß": "schweiss", "schweisse": "schweiss", "schweiße": "schweiss", "schweisses": "schweiss", "schweißes": "schweiss", "schweissfleckigen": "schweissfleck", "schweisshund": "schweisshund", "schweisstriefend": "schweisstrief", "schweißtröpfchen": "schweisstropfch", "schweißtropfen": "schweisstropf", "schweiz": "schweiz", "schweizer": "schweiz", "schweizerdegen": "schweizerdeg", "schweizerische": "schweizer", "schweizerischen": "schweizer", "schweizerlande": "schweizerland", "schweizerorten": "schweizerort", "schweizerstadtkirche": "schweizerstadtkirch", "schweizin": "schweizin", "schwelle": "schwell", "schwellt": "schwellt", "schwellte": "schwellt", "schwendling": "schwendling", "schwenken": "schwenk", "schwenkend": "schwenkend", "schwenkte": "schwenkt", "schwenkten": "schwenkt", "schwer": "schwer", "schwere": "schwer", "schwerem": "schwer", "schweren": "schwer", "schwerenöter": "schwerenot", "schwerer": "schwer", "schweres": "schwer", "schwerfällig": "schwerfall", "schwerfälliges": "schwerfall", "schwerfälligkeit": "schwerfall", "schwergeschmiedeten": "schwergeschmiedet", "schwerhörig": "schwerhor", "schwerlich": "schwerlich", "schwermut": "schwermut", "schwermütig": "schwermut", "schwermütigen": "schwermut", "schwermütiges": "schwermut", "schwert": "schwert", "schwerte": "schwert", "schwerter": "schwert", "schwertern": "schwert", "schwertes": "schwert", "schwertfeger": "schwertfeg", "schwerts": "schwert", "schwerwiegende": "schwerwieg", "schwester": "schwest", "schwesterchen": "schwesterch", "schwestern": "schwest", "schwieg": "schwieg", "schwiegen": "schwieg", "schwiegermutter": "schwiegermutt", "schwiegersohn": "schwiegersohn", "schwiegersöhne": "schwiegersohn", "schwiegertochter": "schwiegertocht", "schwiegertöchter": "schwiegertocht", "schwieligen": "schwielig", "schwierig": "schwierig", "schwierige": "schwierig", "schwierigen": "schwierig", "schwieriger": "schwierig", "schwierigkeit": "schwierig", "schwierigkeiten": "schwierig", "schwierigsten": "schwierig", "schwimmen": "schwimm", "schwimmende": "schwimmend", "schwimmenden": "schwimmend", "schwindel": "schwindel", "schwindelanfall": "schwindelanfall", "schwindelanfällen": "schwindelanfall", "schwinden": "schwind", "schwindet": "schwindet", "schwindler": "schwindl", "schwindlig": "schwindlig", "schwingen": "schwing", "schwingend": "schwingend", "schwippte": "schwippt", "schwirrte": "schwirrt", "schwitzen": "schwitz", "schwitzte": "schwitzt", "schwitzten": "schwitzt", "schwoll": "schwoll", "schwor": "schwor", "schwör": "schwor", "schwöre": "schwor", "schwören": "schwor", "schwört": "schwort", "schwül": "schwul", "schwüler": "schwul", "schwules": "schwul", "schwüles": "schwul", "schwung": "schwung", "schwunge": "schwung", "schwüngen": "schwung", "schwupp": "schwupp", "schwur": "schwur", "schwuren": "schwur", "scil": "scil", "scotus": "scotus", "se": "se", "sebas": "sebas", "sebastian": "sebastian", "sebulon": "sebulon", "sechs": "sech", "sechsfache": "sechsfach", "sechsmal": "sechsmal", "sechste": "sech", "sechsten": "sech", "sechster": "sech", "sechstes": "sech", "sechsunddreissig": "sechsunddreiss", "sechsundsiebenzig": "sechsundsiebenz", "sechszehn": "sechszehn", "sechzehn": "sechzehn", "sechzehnjährigen": "sechzehnjahr", "sechzehnten": "sechzehnt", "sechzig": "sechzig", "sechzigste": "sechzig", "second": "second", "sed": "sed", "see": "see", "seegrund": "seegrund", "seehäfen": "seehaf", "seejungfern": "seejungf", "seekrank": "seekrank", "seel": "seel", "seele": "seel", "seeleitner": "seeleitn", "seeleitnerhauses": "seeleitnerhaus", "seeleitnersbuben": "seeleitnersbub", "seeleitnersleut": "seeleitnersleut", "seeleitnersleute": "seeleitnersleut", "seelen": "seel", "seelenallein": "seelenallein", "seelenerhebung": "seelenerheb", "seelengrösse": "seelengross", "seelenkämpfe": "seelenkampf", "seelenkräfte": "seelenkraft", "seelenkunde": "seelenkund", "seelenleiden": "seelenleid", "seelenruhe": "seelenruh", "seelenschwäche": "seelenschwach", "seelenstärke": "seelenstark", "seelenvergnügt": "seelenvergnugt", "seelenvoll": "seelenvoll", "seelenvolle": "seelenvoll", "seeleute": "seeleut", "seelon": "seelon", "seelsorge": "seelsorg", "seen": "seen", "sees": "sees", "seespiegel": "seespiegel", "seetal": "seetal", "seetang": "seetang", "seetiere": "seeti", "seeufer": "seeuf", "seeungeheuer": "seeungeheu", "segel": "segel", "segelboot": "segelboot", "segelte": "segelt", "segen": "seg", "segens": "seg", "segensreiche": "segensreich", "segensspruch": "segensspruch", "segn": "segn", "segne": "segn", "segnen": "segn", "segnender": "segnend", "segnet": "segnet", "segnete": "segnet", "segnungen": "segnung", "seh": "seh", "sehe": "seh", "sehen": "seh", "sehend": "sehend", "sehende": "sehend", "sehenden": "sehend", "sehendie": "sehendi", "sehenswürdigkeiten": "sehenswurd", "sehest": "seh", "sehet": "sehet", "sehn": "sehn", "sehnen": "sehn", "sehnippel": "sehnippel", "sehnlich": "sehnlich", "sehnsucht": "sehnsucht", "sehnsuchten": "sehnsucht", "sehnsüchtig": "sehnsucht", "sehnsüchtige": "sehnsucht", "sehnsüchtiger": "sehnsucht", "sehnsüchtiges": "sehnsucht", "sehnte": "sehnt", "sehnten": "sehnt", "sehr": "sehr", "seht": "seht", "sehvermögen": "sehvermog", "sei": "sei", "seicht": "seicht", "seichte": "seicht", "seichten": "seicht", "seichter": "seicht", "seichtigkeit": "seichtig", "seid": "seid", "seide": "seid", "seiden": "seid", "seidenartig": "seidenart", "seidendamast": "seidendamast", "seidene": "seid", "seidenen": "seid", "seidenes": "seid", "seidenfäden": "seidenfad", "seidenfarben": "seidenfarb", "seidengewand": "seidengewand", "seidenkleid": "seidenkleid", "seidens": "seid", "seidenzeug": "seidenzeug", "seider": "seid", "seien": "seien", "seiest": "seiest", "seife": "seif", "seifenblasen": "seifenblas", "seifengalerie": "seifengaleri", "seifenschaum": "seifenschaum", "seifensieder": "seifensied", "seifenstücken": "seifenstuck", "seigneur": "seigneur", "seile": "seil", "sein": "sein", "seine": "sein", "seinem": "sein", "seinen": "sein", "seiner": "sein", "seinerseits": "seinerseit", "seinerzeit": "seinerzeit", "seines": "sein", "seinesgleichen": "seinesgleich", "seinetwegen": "seinetweg", "seinige": "seinig", "seinigen": "seinig", "seins": "sein", "seir": "seir", "seist": "seist", "seit": "seit", "seitdem": "seitd", "seite": "seit", "seiten": "seit", "seitenblick": "seitenblick", "seiteneingang": "seiteneingang", "seitengang": "seitengang", "seitengasse": "seitengass", "seitenplätzchen": "seitenplatzch", "seitenschiff": "seitenschiff", "seitenschiffe": "seitenschiff", "seitenstrassen": "seitenstrass", "seitenstück": "seitenstuck", "seitental": "seitental", "seitentälern": "seitental", "seitenwegen": "seitenweg", "seither": "seith", "seitlich": "seitlich", "seitwärts": "seitwart", "sek": "sek", "sekelbewahrer": "sekelbewahr", "sekretariat": "sekretariat", "sekretärin": "sekretarin", "sekten": "sekt", "sektierern": "sekti", "sekunde": "sekund", "sekunden": "sekund", "sekundenlange": "sekundenlang", "sekundenzeiger": "sekundenzeig", "sel": "sel", "selbe": "selb", "selbem": "selb", "selben": "selb", "selber": "selb", "selbige": "selbig", "selbigen": "selbig", "selbiger": "selbig", "selbiges": "selbig", "selbigsmal": "selbigsmal", "selbst": "selb", "selbständig": "selbstand", "selbständige": "selbstand", "selbständigen": "selbstand", "selbständigkeit": "selbstand", "selbstanklagen": "selbstanklag", "selbstbeherrschung": "selbstbeherrsch", "selbstberedung": "selbstbered", "selbstberedungen": "selbstbered", "selbstbewussten": "selbstbewusst", "selbstbewusstsein": "selbstbewusstsein", "selbstentäusserung": "selbstentausser", "selbsterkenntnis": "selbsterkenntnis", "selbsterniedrigung": "selbsterniedr", "selbstgefälligkeit": "selbstgefall", "selbstgemacht": "selbstgemacht", "selbstgenugsamkeit": "selbstgenugsam", "selbstgerechtigkeit": "selbstgerecht", "selbstgeschaffenem": "selbstgeschaff", "selbstgewählten": "selbstgewahlt", "selbstgezogen": "selbstgezog", "selbstherrlichkeit": "selbstherr", "selbstigen": "selbstig", "selbstliebe": "selbstlieb", "selbstmord": "selbstmord", "selbstprüfung": "selbstpruf", "selbstregierung": "selbstregier", "selbstschätzung": "selbstschatz", "selbstsucht": "selbstsucht", "selbstsüchtige": "selbstsucht", "selbsttätige": "selbsttat", "selbsttätigen": "selbsttat", "selbstverantwortung": "selbstverantwort", "selbstverdammung": "selbstverdamm", "selbstvergessen": "selbstvergess", "selbstvergessenheit": "selbstvergess", "selbstvergnügten": "selbstvergnugt", "selbstverherrlichung": "selbstverherrlich", "selbstverständlich": "selbstverstand", "selbstverständlichen": "selbstverstand", "selbstvertrauen": "selbstvertrau", "selbstverwalteten": "selbstverwaltet", "selbstzufrieden": "selbstzufried", "selbstzufriedenheit": "selbstzufried", "seldwyl": "seldwyl", "seldwyla": "seldwyla", "seldwyler": "seldwyl", "seldwylerinnen": "seldwylerinn", "seldwylern": "seldwyl", "seldwylers": "seldwyl", "seldwylertagen": "seldwylertag", "selig": "selig", "selige": "selig", "seligem": "selig", "seligen": "selig", "seliges": "selig", "seligkeit": "selig", "seligkeiten": "selig", "seligmachende": "seligmach", "seligmachenden": "seligmach", "seligmachung": "seligmach", "seligwerden": "seligwerd", "selk": "selk", "selm": "selm", "selten": "selt", "seltene": "selt", "seltenen": "selt", "seltener": "selt", "seltenheit": "selt", "seltensten": "selten", "seltsam": "seltsam", "seltsame": "seltsam", "seltsamem": "seltsam", "seltsamen": "seltsam", "seltsamer": "seltsam", "seltsamerweise": "seltsamerweis", "seltsames": "seltsam", "seltsamkeit": "seltsam", "seltsamlich": "seltsam", "sem": "sem", "semen": "sem", "semester": "sem", "semmelbröseln": "semmelbroseln", "sende": "send", "sendeminute": "sendeminut", "senden": "send", "sender": "send", "sendest": "send", "sendet": "sendet", "sendlinge": "sendling", "sendung": "sendung", "sendungen": "sendung", "senf": "senf", "senfkorn": "senfkorn", "senke": "senk", "senken": "senk", "senkend": "senkend", "senket": "senket", "senkrecht": "senkrecht", "senkt": "senkt", "senkte": "senkt", "senkten": "senkt", "senkung": "senkung", "sennerin": "sennerin", "sennhütte": "sennhutt", "sensatio": "sensatio", "sense": "sens", "sentimentale": "sentimental", "september": "septemb", "septembergegend": "septembergeg", "septembermorgen": "septembermorg", "sequentium": "sequentium", "serach": "serach", "serie": "seri", "serpentum": "serpentum", "service": "servic", "servieren": "servi", "serviert": "serviert", "servierter": "serviert", "serviette": "serviett", "servietten": "serviett", "sessel": "sessel", "sesselchen": "sesselch", "sesselkleber": "sesselkleb", "sessellehne": "sessellehn", "sesshaft": "sesshaft", "sesshaften": "sesshaft", "settember": "settemb", "setz": "setz", "setze": "setz", "setzen": "setz", "setzet": "setzet", "setzt": "setzt", "setzte": "setzt", "setzten": "setzt", "seu": "seu", "seuchengefahr": "seuchengefahr", "seufzen": "seufz", "seufzend": "seufzend", "seufzens": "seufz", "seufzer": "seufz", "seufzern": "seufz", "seufzt": "seufzt", "seufzte": "seufzt", "seufzten": "seufzt", "sexologie": "sexologi", "sexuelle": "sexuell", "shakespeare": "shakespear", "shoa": "shoa", "shylocks": "shylock", "si": "si", "sialiquid": "sialiquid", "sich": "sich", "sichbearbeiten": "sichbearbeit", "sicheln": "sicheln", "sicher": "sich", "sichere": "sich", "sicheren": "sich", "sicherer": "sich", "sicheres": "sich", "sichergehenden": "sichergeh", "sicherheit": "sich", "sicherheitsbeamten": "sicherheitsbeamt", "sicherheitsbehörden": "sicherheitsbehord", "sicherheitshalber": "sicherheitshalb", "sicherheitskontrolle": "sicherheitskontroll", "sicherheitskräfte": "sicherheitskraft", "sicherheitskräften": "sicherheitskraft", "sicherheitsleute": "sicherheitsleut", "sicherheitspolizei": "sicherheitspolizei", "sicherheitsregeln": "sicherheitsregeln", "sicherheitsstation": "sicherheitsstation", "sicherlich": "sich", "sichern": "sich", "sicherste": "sicherst", "sichersten": "sicherst", "sicherte": "sichert", "sicherung": "sicher", "sichniederwerfen": "sichniederwerf", "sichri": "sichri", "sichs": "sich", "sicht": "sicht", "sichtbar": "sichtbar", "sichtbare": "sichtbar", "sichtbaren": "sichtbar", "sichtende": "sichtend", "sichtlich": "sichtlich", "sichtlichen": "sichtlich", "sichtlicher": "sichtlich", "sichtweite": "sichtweit", "sickert": "sickert", "sicut": "sicut", "sie": "sie", "sieben": "sieb", "siebenfach": "siebenfach", "siebenfältig": "siebenfalt", "siebenhundert": "siebenhundert", "siebenköpfigen": "siebenkopf", "siebenmal": "siebenmal", "siebensächelchen": "siebensachelch", "siebensachen": "siebensach", "siebente": "siebent", "siebenten": "siebent", "siebenter": "siebent", "siebentes": "siebent", "siebenundachtzig": "siebenundachtz", "siebenundsiebzig": "siebenundsiebz", "siebenundwanzig": "siebenundwanz", "siebenundzwanzig": "siebenundzwanz", "siebenundzwanzigmal": "siebenundzwanzigmal", "siebenundzwanzigmalige": "siebenundzwanzigmal", "siebenzahl": "siebenzahl", "siebenzig": "siebenz", "siebenzigmal": "siebenzigmal", "siebsten": "sieb", "siebte": "siebt", "siebzehn": "siebzehn", "siebzehnten": "siebzehnt", "siebzig": "siebzig", "siebziger": "siebzig", "siebzigmal": "siebzigmal", "siech": "siech", "siede": "sied", "siedeln": "siedeln", "siedende": "siedend", "siedendheiss": "siedendheiss", "sieg": "sieg", "siege": "sieg", "siegel": "siegel", "siegellack": "siegellack", "siegeln": "siegeln", "siegelring": "siegelring", "siegen": "sieg", "siegende": "siegend", "sieger": "sieg", "sieges": "sieg", "sieghafte": "sieghaft", "sieghaften": "sieghaft", "siegte": "siegt", "sieh": "sieh", "siehe": "sieh", "siehst": "sieh", "sieht": "sieht", "siena": "siena", "sige": "sig", "signal": "signal", "silbe": "silb", "silber": "silb", "silberbechern": "silberbech", "silberborten": "silberbort", "silberbschlagene": "silberbschlag", "silberbügel": "silberbugel", "silbergewölk": "silbergewolk", "silberglöckchen": "silberglockch", "silbergrauen": "silbergrau", "silberhaarige": "silberhaar", "silberhelle": "silberhell", "silberkleidern": "silberkleid", "silberlicht": "silberlicht", "silbermesser": "silbermess", "silberne": "silbern", "silbernem": "silbern", "silbernen": "silbern", "silberner": "silbern", "silbernes": "silbern", "silberreinen": "silberrein", "silbers": "silb", "silbersand": "silbersand", "silberschleiern": "silberschlei", "silberschüssel": "silberschussel", "silberseidigsten": "silberseid", "silberstimmchen": "silberstimmch", "silberwolle": "silberwoll", "silbrige": "silbrig", "siloam": "siloam", "simei": "simei", "similitudo": "similitudo", "simmsen": "simms", "simon": "simon", "simpel": "simpel", "simple": "simpl", "simsen": "sims", "simson": "simson", "simus": "simus", "sinai": "sinai", "sind": "sind", "sine": "sin", "sing": "sing", "singbuch": "singbuch", "singe": "sing", "singen": "sing", "singend": "singend", "singende": "singend", "singenden": "singend", "singender": "singend", "singerei": "singerei", "singet": "singet", "singst": "sing", "singt": "singt", "sinken": "sink", "sinkende": "sinkend", "sinkendem": "sinkend", "sinkenden": "sinkend", "sinkens": "sink", "sinkt": "sinkt", "sinn": "sinn", "sinnbild": "sinnbild", "sinnbilder": "sinnbild", "sinnbildern": "sinnbild", "sinne": "sinn", "sinnen": "sinn", "sinnend": "sinnend", "sinnenwelt": "sinnenwelt", "sinnenwesens": "sinnenwes", "sinnes": "sinn", "sinnesart": "sinnesart", "sinnesarten": "sinnesart", "sinnestäuschungen": "sinnestausch", "sinnesvorstellungen": "sinnesvorstell", "sinneswahrnehmung": "sinneswahrnehm", "sinnet": "sinnet", "sinngebung": "sinngeb", "sinniert": "sinniert", "sinnig": "sinnig", "sinnige": "sinnig", "sinnlich": "sinnlich", "sinnlichbedingten": "sinnlichbedingt", "sinnliche": "sinnlich", "sinnlichem": "sinnlich", "sinnlichen": "sinnlich", "sinnlicher": "sinnlich", "sinnliches": "sinnlich", "sinnlichkeit": "sinnlich", "sinnlos": "sinnlos", "sinnlose": "sinnlos", "sinnlosem": "sinnlos", "sinnloser": "sinnlos", "sinnloses": "sinnlos", "sinnlosigkeit": "sinnlos", "sinnorganen": "sinnorgan", "sinnorganes": "sinnorgan", "sinnreich": "sinnreich", "sinnreiche": "sinnreich", "sinnreichen": "sinnreich", "sinns": "sinn", "sinnstiftung": "sinnstift", "sinnt": "sinnt", "sinnverwirrter": "sinnverwirrt", "sinnvoll": "sinnvoll", "sinnvolle": "sinnvoll", "sinnvollere": "sinnvoll", "sinnwidrigen": "sinnwidr", "sinnzusammenhang": "sinnzusammenhang", "sirnak": "sirnak", "sirrr": "sirrr", "sirrrrrrr": "sirrrrrrr", "sithri": "sithri", "sitte": "sitt", "sitten": "sitt", "sittengesetz": "sittengesetz", "sittengesetze": "sittengesetz", "sittengesetzes": "sittengesetz", "sittenlehre": "sittenlehr", "sittig": "sittig", "sittlich": "sittlich", "sittliche": "sittlich", "sittlichen": "sittlich", "sittlicher": "sittlich", "sittlichguten": "sittlichgut", "sittlichkeit": "sittlich", "sittsam": "sittsam", "sittsamkeit": "sittsam", "situation": "situation", "situationen": "situation", "sitz": "sitz", "sitze": "sitz", "sitzen": "sitz", "sitzende": "sitzend", "sitzerei": "sitzerei", "sitzest": "sitz", "sitzgegend": "sitzgeg", "sitzgelegenheit": "sitzgeleg", "sitzplatz": "sitzplatz", "sitzt": "sitzt", "sitzung": "sitzung", "sitzungssaal": "sitzungssaal", "sitzungstagen": "sitzungstag", "sitzungszimmer": "sitzungszimm", "sitzungszimmers": "sitzungszimm", "skeptisch": "skeptisch", "skeptizismus": "skeptizismus", "skf": "skf", "skizziert": "skizziert", "sklave": "sklav", "skorpionen": "skorpion", "skribenten": "skribent", "skrupel": "skrupel", "slangs": "slang", "smaragd": "smaragd", "smidt": "smidt", "smyrna": "smyrna", "smyrnateppich": "smyrnateppich", "so": "so", "sö": "so", "sobald": "sobald", "social": "social", "sociantis": "sociantis", "socinianer": "socinian", "socken": "sock", "sodalitia": "sodalitia", "sodann": "sodann", "sodass": "sodass", "sodom": "sodom", "sodoms": "sodom", "soeben": "soeb", "sofa": "sofa", "sofern": "sof", "sofort": "sofort", "sofortige": "sofort", "sog": "sog", "sogar": "sogar", "sogen": "sog", "sogenannte": "sogenannt", "sogenannten": "sogenannt", "sogenannter": "sogenannt", "sogenanntes": "sogenannt", "sogleich": "sogleich", "sohle": "sohl", "sohlen": "sohl", "sohn": "sohn", "söhnchen": "sohnch", "sohne": "sohn", "söhne": "sohn", "söhnen": "sohn", "sohnes": "sohn", "sohnessohn": "sohnessohn", "söhnlein": "sohnlein", "sokrates": "sokrat", "solang": "solang", "solange": "solang", "solch": "solch", "solche": "solch", "solchem": "solch", "solchen": "solch", "solchenen": "solch", "solcher": "solch", "solcherart": "solcherart", "solchergestalt": "solchergestalt", "solcherlei": "solcherlei", "solcherweise": "solcherweis", "solches": "solch", "sold": "sold", "soldat": "soldat", "soldaten": "soldat", "soldatengesicht": "soldatengesicht", "soldatenhaufen": "soldatenhauf", "soldatenlebens": "soldatenleb", "soldatenrock": "soldatenrock", "soldatentum": "soldatentum", "soldateska": "soldateska", "solde": "sold", "soli": "soli", "solid": "solid", "solidarische": "solidar", "solidarisierung": "solidarisier", "solidaritässtiftung": "solidaritasstift", "solidarität": "solidaritat", "solidaritätsbeiträge": "solidaritatsbeitrag", "solidaritätsfonds": "solidaritatsfond", "solidaritätsstiftung": "solidaritatsstift", "soliden": "solid", "solider": "solid", "solipsismus": "solipsismus", "soll": "soll", "solle": "soll", "sollen": "soll", "söller": "soll", "sollet": "sollet", "sollst": "soll", "sollt": "sollt", "sollte": "sollt", "sollten": "sollt", "solltest": "sollt", "solution": "solution", "somit": "somit", "sommer": "somm", "sommerabend": "sommerab", "sommerbier": "sommerbi", "sommerbieres": "sommerbi", "sommerferien": "sommerferi", "sommerfrische": "sommerfr", "sommerhell": "sommerhell", "sommerhirsch": "sommerhirsch", "sommerhitz": "sommerhitz", "sommerkleid": "sommerkleid", "sommernachmittag": "sommernachmittag", "sommernacht": "sommernacht", "sommerrehe": "sommerreh", "sommerruhe": "sommerruh", "sommers": "somm", "sommersaison": "sommersaison", "sommersonne": "sommersonn", "sommerspass": "sommerspass", "sommerspaß": "sommerspass", "sommerszeit": "sommerszeit", "sommertag": "sommertag", "sommertage": "sommertag", "sommervergnügen": "sommervergnug", "sonach": "sonach", "sonderbar": "sonderbar", "sonderbare": "sonderbar", "sonderbaren": "sonderbar", "sonderbarer": "sonderbar", "sonderbarerweise": "sonderbarerweis", "sonderbares": "sonderbar", "sonderbarste": "sonderbarst", "sonderbarsten": "sonderbarst", "sonderlich": "sond", "sonderliche": "sond", "sonderlichen": "sond", "sonderliches": "sond", "sonderling": "sonderling", "sondern": "sond", "sonders": "sond", "sonderschau": "sonderschau", "sonderweg": "sonderweg", "sonn": "sonn", "sonnbeschienen": "sonnbeschi", "sonne": "sonn", "sonnen": "sonn", "sonnenartig": "sonnenart", "sonnenauf": "sonnenauf", "sonnenaufgang": "sonnenaufgang", "sonnenberg": "sonnenberg", "sonnenblick": "sonnenblick", "sonnenbrand": "sonnenbrand", "sonnenbraunes": "sonnenbraun", "sonnenbrille": "sonnenbrill", "sonnenfeuer": "sonnenfeu", "sonnenglut": "sonnenglut", "sonnenhelle": "sonnenhell", "sonnenhöhe": "sonnenhoh", "sonnenland": "sonnenland", "sonnenlicht": "sonnenlicht", "sonnenluft": "sonnenluft", "sonnennebel": "sonnennebel", "sonnennebeln": "sonnennebeln", "sonnenringel": "sonnenringel", "sonnenschein": "sonnenschein", "sonnenscheine": "sonnenschein", "sonnenschirmchen": "sonnenschirmch", "sonnenstrahl": "sonnenstrahl", "sonnenstrahlen": "sonnenstrahl", "sonnenuhr": "sonnenuhr", "sonnenuntergang": "sonnenuntergang", "sonnenwärme": "sonnenwarm", "sonngebräunten": "sonngebraunt", "sonnige": "sonnig", "sonnigen": "sonnig", "sonniger": "sonnig", "sonnigsten": "sonnig", "sonntag": "sonntag", "sonntagabend": "sonntagab", "sonntage": "sonntag", "sonntagen": "sonntag", "sonntäglich": "sonntag", "sonntäglichen": "sonntag", "sonntagmorgen": "sonntagmorg", "sonntagnachmittag": "sonntagnachmittag", "sonntagnachmittags": "sonntagnachmittag", "sonntags": "sonntag", "sonntagskleid": "sonntagskleid", "sonntagskleide": "sonntagskleid", "sonntagsrock": "sonntagsrock", "sonntagsschlafrock": "sonntagsschlafrock", "sonntagsschuhe": "sonntagsschuh", "sonntagsstaat": "sonntagsstaat", "sonntagsstille": "sonntagsstill", "sonntagvormittag": "sonntagvormittag", "sonnte": "sonnt", "sono": "sono", "sonst": "sonst", "sonstige": "sonstig", "sonstigen": "sonstig", "sonstwie": "sonstwi", "sonstwo": "sonstwo", "sony": "sony", "sooft": "sooft", "sopha": "sopha", "sophienstrasse": "sophienstrass", "sophismata": "sophismata", "sophisterei": "sophisterei", "sophisticis": "sophisticis", "sophistik": "sophist", "sophistische": "sophist", "sophistischen": "sophist", "sorge": "sorg", "sorgen": "sorg", "sorgenbefreite": "sorgenbefreit", "sorgende": "sorgend", "sorgenlos": "sorgenlos", "sorgenvolle": "sorgenvoll", "sorgfalt": "sorgfalt", "sorgfältig": "sorgfalt", "sorgfältigste": "sorgfalt", "sorgfältigsten": "sorgfalt", "sorglich": "sorglich", "sorglicher": "sorglich", "sorglos": "sorglos", "sorglosem": "sorglos", "sorgloser": "sorglos", "sorglosigkeit": "sorglos", "sorgsam": "sorgsam", "sorgte": "sorgt", "sorry": "sorry", "sorte": "sort", "sosehr": "sosehr", "soubrette": "soubrett", "soundso": "soundso", "souper": "soup", "sous": "sous", "souterrain": "souterrain", "souverän": "souveran", "soviel": "soviel", "sowas": "sowas", "soweit": "soweit", "sowenig": "sowen", "sowie": "sowi", "sowieso": "sowieso", "sowohl": "sowohl", "sozialarbeit": "sozialarbeit", "soziale": "sozial", "sozialen": "sozial", "soziales": "sozial", "sozialhilfe": "sozialhilf", "sozialisten": "sozialist", "sozialsystem": "sozialsyst", "sozinianern": "sozinian", "sozusagen": "sozusag", "spähen": "spah", "spähend": "spahend", "spähete": "spahet", "spähte": "spaht", "spalt": "spalt", "spalten": "spalt", "spaltet": "spaltet", "spaltung": "spaltung", "späne": "span", "spanien": "spani", "spaniern": "spani", "spaniolen": "spaniol", "spanische": "spanisch", "spann": "spann", "spanne": "spann", "spannende": "spannend", "spannender": "spannend", "spannt": "spannt", "spannte": "spannt", "spannten": "spannt", "spannung": "spannung", "spannungen": "spannung", "spannungsgeladen": "spannungsgelad", "spannungsvolle": "spannungsvoll", "sparbüchse": "sparbuchs", "spare": "spar", "sparen": "spar", "spargel": "spargel", "sparkasse": "sparkass", "spärliche": "sparlich", "spärlichen": "sparlich", "sparpfennig": "sparpfenn", "sparsam": "sparsam", "sparsame": "sparsam", "sparsamer": "sparsam", "sparsamkeit": "sparsam", "sparte": "spart", "spass": "spass", "spaß": "spass", "spasse": "spass", "spässe": "spass", "späße": "spass", "spasshaft": "spasshaft", "spasshafte": "spasshaft", "spasshaften": "spasshaft", "spassig": "spassig", "spassiges": "spassig", "spät": "spat", "späten": "spat", "später": "spat", "spätere": "spat", "späterhin": "spaterhin", "spätesten": "spat", "spätestens": "spatest", "spätregen": "spatreg", "spatzen": "spatz", "spazier": "spazi", "spazieren": "spazi", "spazierengeflogen": "spazierengeflog", "spazierengehen": "spazierengeh", "spazierenzugehen": "spazierenzugeh", "spazierest": "spazier", "spaziergang": "spaziergang", "spaziergange": "spaziergang", "spaziergänger": "spaziergang", "spazierstock": "spazierstock", "spazierstöckchen": "spazierstockch", "spazierstöckl": "spazierstockl", "spazierte": "spaziert", "spe": "spe", "spechtes": "specht", "speciem": "speci", "species": "speci", "speck": "speck", "speckriemchen": "speckriemch", "speckseite": "speckseit", "spediteure": "spediteur", "speeres": "speer", "speichel": "speichel", "speichern": "speich", "speise": "speis", "speisedüfte": "speiseduft", "speisen": "speis", "speisesaal": "speisesaal", "speiset": "speiset", "speisete": "speiset", "speisetisch": "speiset", "speisewagen": "speisewag", "speisezettel": "speisezettel", "speisopfer": "speisopf", "speisopfern": "speisopf", "speiste": "speist", "spektakel": "spektakel", "spektrum": "spektrum", "spekulant": "spekulant", "spekulanten": "spekulant", "spekulation": "spekulation", "spekulationsbetätigung": "spekulationsbetat", "spekulativ": "spekulativ", "spekulative": "spekulativ", "spekulativen": "spekulativ", "spekulativer": "spekulativ", "spekulatives": "spekulativ", "spekulierten": "spekuliert", "spelt": "spelt", "spelts": "spelt", "spelunke": "spelunk", "spelunkelein": "spelunkelein", "spenden": "spend", "spendierte": "spendiert", "spenser": "spens", "sperling": "sperling", "sperlinge": "sperling", "sperrmäuler": "sperrmaul", "sperrte": "sperrt", "sperrten": "sperrt", "spezereien": "spezerei", "spezialfonds": "spezialfond", "speziellen": "speziell", "spezielles": "speziell", "spezies": "spezi", "spezifisch": "spezif", "sphäre": "sphar", "sphären": "sphar", "spieen": "spieen", "spiegel": "spiegel", "spiegelbild": "spiegelbild", "spiegelchen": "spiegelch", "spiegelein": "spiegelein", "spiegels": "spiegel", "spiegelt": "spiegelt", "spiegelte": "spiegelt", "spiegelwände": "spiegelwand", "spiel": "spiel", "spielchen": "spielch", "spiele": "spiel", "spielen": "spiel", "spielend": "spielend", "spielenden": "spielend", "spielerei": "spielerei", "spielet": "spielet", "spielgelde": "spielgeld", "spielgesellen": "spielgesell", "spielkameraden": "spielkamerad", "spielkugel": "spielkugel", "spielraum": "spielraum", "spielregeln": "spielregeln", "spielschulden": "spielschuld", "spielstätte": "spielstatt", "spielt": "spielt", "spielte": "spielt", "spielten": "spielt", "spieltisch": "spieltisch", "spielwerke": "spielwerk", "spielzeug": "spielzeug", "spielzeuglandschaft": "spielzeuglandschaft", "spielzeugmaikäfer": "spielzeugmaikaf", "spielzeugvögelchen": "spielzeugvogelch", "spielzeugwaffen": "spielzeugwaff", "spiess": "spiess", "spiesse": "spiess", "spiessen": "spiess", "spinne": "spinn", "spinnen": "spinn", "spinnenlied": "spinnenlied", "spinnerei": "spinnerei", "spinneweben": "spinneweb", "spinnrädchen": "spinnradch", "spinnrocken": "spinnrock", "spinnweben": "spinnweb", "spion": "spion", "spiraculim": "spiraculim", "spirieren": "spiri", "spirituale": "spiritual", "spiritualis": "spiritualis", "spiritus": "spiritus", "spiritusfeuer": "spiritusfeu", "spitakl": "spitakl", "spital": "spital", "spittel": "spittel", "spitting": "spitting", "spitz": "spitz", "spitzbart": "spitzbart", "spitzbauch": "spitzbauch", "spitzbube": "spitzbub", "spitzbuben": "spitzbub", "spitze": "spitz", "spitzen": "spitz", "spitzenkandidat": "spitzenkandidat", "spitzes": "spitz", "spitzfindigkeiten": "spitzfind", "spitzgras": "spitzgras", "spitzig": "spitzig", "spitzige": "spitzig", "spitzigen": "spitzig", "spitzigsten": "spitzig", "spitzte": "spitzt", "splitternackt": "splitternackt", "sponton": "sponton", "sporen": "spor", "spornstreichs": "spornstreich", "spornte": "spornt", "sport": "sport", "spott": "spott", "spotten": "spott", "spötter": "spott", "spottet": "spottet", "spottete": "spottet", "spottgeburten": "spottgeburt", "spöttisch": "spottisch", "spöttische": "spottisch", "spöttischem": "spottisch", "spöttischen": "spottisch", "spottlaus": "spottlaus", "spottlust": "spottlust", "spp": "spp", "sprach": "sprach", "sprache": "sprach", "spräche": "sprach", "sprachen": "sprach", "sprächest": "sprach", "sprachgebrauche": "sprachgebrauch", "sprachigen": "sprachig", "sprachlehre": "sprachlehr", "sprachrohr": "sprachrohr", "sprachst": "sprach", "sprang": "sprang", "sprangen": "sprang", "spreche": "sprech", "sprechen": "sprech", "sprechend": "sprechend", "sprechenden": "sprechend", "sprechender": "sprechend", "sprechens": "sprech", "sprecht": "sprecht", "sprechzeit": "sprechzeit", "spree": "spree", "spreemetropole": "spreemetropol", "spreizen": "spreiz", "spreizte": "spreizt", "sprengen": "spreng", "sprengkapseln": "sprengkapseln", "sprengt": "sprengt", "sprengte": "sprengt", "spreu": "spreu", "sprich": "sprich", "sprichst": "sprich", "spricht": "spricht", "sprichwort": "sprichwort", "sprichwörter": "sprichwort", "sprichwortes": "sprichwort", "spring": "spring", "springen": "spring", "springer": "spring", "springt": "springt", "spritze": "spritz", "spritzen": "spritz", "spröde": "sprod", "sprödeste": "sprod", "sprödigkeit": "sprodig", "spross": "spross", "sproß": "spross", "sprosse": "spross", "sprossen": "spross", "sprossend": "sprossend", "sprossenden": "sprossend", "sprösslinge": "sprossling", "sprößlinge": "sprossling", "sprosste": "sprosst", "sproßte": "sprosst", "spruch": "spruch", "sprüche": "spruch", "spruches": "spruch", "sprüchlein": "spruchlein", "spruchversen": "spruchvers", "spruchweise": "spruchweis", "sprudel": "sprudel", "sprudelflasche": "sprudelflasch", "sprühende": "spruhend", "sprung": "sprung", "sprungbrett": "sprungbrett", "sprunge": "sprung", "sprünge": "sprung", "sprüngen": "sprung", "spucke": "spuck", "spuckte": "spuckt", "spuk": "spuk", "spülte": "spult", "spur": "spur", "spür": "spur", "spürbar": "spurbar", "spuren": "spur", "spüren": "spur", "spürte": "spurt", "sputet": "sputet", "sputete": "sputet", "squat": "squat", "sr": "sr", "st": "st", "staat": "staat", "staate": "staat", "staaten": "staat", "staates": "staat", "staatlich": "staatlich", "staatliche": "staatlich", "staatlicher": "staatlich", "staatlicherseits": "staatlicherseit", "staatsanwalt": "staatsanwalt", "staatsbürgerbewußtsein": "staatsburgerbewusstsein", "staatskirche": "staatskirch", "staatskirchen": "staatskirch", "staatskleid": "staatskleid", "staatsknete": "staatsknet", "staatsprüfungen": "staatspruf", "staatsschuld": "staatsschuld", "staatssicherheits": "staatssich", "staatsverschuldung": "staatsverschuld", "staatswesen": "staatswes", "stab": "stab", "stäbchen": "stabch", "stabe": "stab", "stäbe": "stab", "stäben": "stab", "stabes": "stab", "stabil": "stabil", "stabilisierend": "stabilisier", "stabilisierende": "stabilisier", "stabsoffiziere": "stabsoffizi", "stach": "stach", "stachel": "stachel", "stachelgesträuch": "stachelgestrauch", "stachelgewächs": "stachelgewach", "stacheln": "stacheln", "stachelstrauch": "stachelstrauch", "stachen": "stach", "stachlige": "stachlig", "stachligen": "stachlig", "stad": "stad", "stadien": "stadi", "stadium": "stadium", "stadt": "stadt", "städtchen": "stadtch", "städtchens": "stadtch", "städte": "stadt", "städten": "stadt", "städter": "stadt", "stadtfrau": "stadtfrau", "stadtgesetze": "stadtgesetz", "stadthexenmeister": "stadthexenmeist", "städtisch": "stadtisch", "städtischen": "stadtisch", "städtlein": "stadtlein", "stadtmauer": "stadtmau", "stadtname": "stadtnam", "stadtpfarrer": "stadtpfarr", "stadtrand": "stadtrand", "stadtschreiber": "stadtschreib", "stadtschule": "stadtschul", "stadtteil": "stadtteil", "stadtviertel": "stadtviertel", "stadtvierteln": "stadtvierteln", "stadtwohnung": "stadtwohn", "stadtzürcher": "stadtzurch", "staffiert": "staffiert", "stagnation": "stagnation", "stahl": "stahl", "stahlblauen": "stahlblau", "stählen": "stahl", "stak": "stak", "stäken": "stak", "staketen": "staket", "stall": "stall", "stalle": "stall", "ställe": "stall", "stallkette": "stallkett", "stallknechte": "stallknecht", "stalltür": "stalltur", "stalsett": "stalsett", "stamina": "stamina", "stamm": "stamm", "stämmchen": "stammch", "stamme": "stamm", "stämme": "stamm", "stammelte": "stammelt", "stammen": "stamm", "stämmen": "stamm", "stammende": "stammend", "stammenden": "stammend", "stammlokal": "stammlokal", "stammschlosses": "stammschloss", "stammt": "stammt", "stammtafel": "stammtafel", "stammte": "stammt", "stammten": "stammt", "stammtischfeierlichkeit": "stammtischfeier", "stammväter": "stammvat", "stammvaters": "stammvat", "stampfe": "stampf", "stampfen": "stampf", "stampfens": "stampf", "stand": "stand", "ständchen": "standch", "stande": "stand", "stände": "stand", "standen": "stand", "standenes": "stand", "ständerat": "standerat", "standhalten": "standhalt", "ständig": "standig", "ständige": "standig", "standort": "standort", "standpunkt": "standpunkt", "standpunkte": "standpunkt", "standrecht": "standrecht", "stange": "stang", "stangen": "stang", "stank": "stank", "stänker": "stank", "stapften": "stapft", "starb": "starb", "starben": "starb", "stärger": "starg", "stark": "stark", "starke": "stark", "stärke": "stark", "starkem": "stark", "starken": "stark", "stärken": "stark", "starker": "stark", "stärker": "stark", "stärkere": "stark", "stärkeren": "stark", "stärkern": "stark", "starkes": "stark", "stärkest": "stark", "stärkste": "stark", "stärksten": "stark", "stärkte": "starkt", "stärkung": "starkung", "starnberg": "starnberg", "starnberger": "starnberg", "starr": "starr", "starre": "starr", "starren": "starr", "starrkopf": "starrkopf", "starrte": "starrt", "starrten": "starrt", "starten": "start", "statdanzeiger": "statdanzeig", "station": "station", "statistik": "statist", "statistisch": "statist", "statt": "statt", "stattdessen": "stattdess", "stätte": "statt", "statten": "statt", "stattfand": "stattfand", "stattfände": "stattfand", "stattfanden": "stattfand", "stattfinde": "stattfind", "stattfinden": "stattfind", "stattfindenden": "stattfind", "stattfindet": "stattfindet", "stattgefunden": "stattgefund", "statthatte": "statthatt", "stattlich": "stattlich", "stattliche": "stattlich", "stattlichen": "stattlich", "stattliches": "stattlich", "stattlichkeit": "stattlich", "statue": "statu", "status": "status", "statuta": "statuta", "statutum": "statutum", "staub": "staub", "stäubchen": "staubch", "staube": "staub", "staubes": "staub", "staubhemden": "staubhemd", "staubigen": "staubig", "staubte": "staubt", "staubwolke": "staubwolk", "staude": "staud", "stauden": "staud", "staune": "staun", "staunen": "staun", "staunend": "staunend", "staunte": "staunt", "stechen": "stech", "stechend": "stechend", "stechender": "stechend", "stechpalme": "stechpalm", "stecke": "steck", "stecken": "steck", "steckenblieb": "steckenblieb", "steckend": "steckend", "steckenden": "steckend", "steckengeblieben": "steckengeblieb", "steckleinspringer": "steckleinspring", "stecknadel": "stecknadel", "stecknadelaugen": "stecknadelaug", "steckt": "steckt", "steckte": "steckt", "steckten": "steckt", "steg": "steg", "stege": "steg", "stegemann": "stegemann", "stegreif": "stegreif", "steh": "steh", "stehe": "steh", "stehen": "steh", "stehenbleiben": "stehenbleib", "stehenbleibend": "stehenbleib", "stehenbleibens": "stehenbleib", "stehenbleibt": "stehenbleibt", "stehenblieb": "stehenblieb", "stehend": "stehend", "stehenden": "stehend", "stehender": "stehend", "stehengeblieben": "stehengeblieb", "stehenliess": "stehenliess", "stehens": "steh", "stehest": "steh", "stehet": "stehet", "stehle": "stehl", "stehlen": "stehl", "stehn": "stehn", "stehnblieben": "stehnblieb", "stehst": "steh", "steht": "steht", "steif": "steif", "steifbeinig": "steifbein", "steife": "steif", "steifen": "steif", "steifendem": "steifend", "steifer": "steif", "steig": "steig", "steigbügel": "steigbugel", "steige": "steig", "steigen": "steig", "steigend": "steigend", "steigende": "steigend", "steigern": "steig", "steigerte": "steigert", "steigerung": "steiger", "steiget": "steiget", "steigt": "steigt", "steil": "steil", "steile": "steil", "steilen": "steil", "stein": "stein", "steinbeschwerte": "steinbeschwert", "steinblöcke": "steinblock", "steinboden": "steinbod", "steinbruch": "steinbruch", "steinbrüche": "steinbruch", "steinbruches": "steinbruch", "steinchen": "steinch", "steindinge": "steinding", "steine": "stein", "steineiche": "steineich", "steinen": "stein", "steinerne": "steinern", "steinernen": "steinern", "steinernes": "steinern", "steinfleckes": "steinfleck", "steingeröll": "steingeroll", "steingraue": "steingrau", "steinhaufen": "steinhauf", "steinige": "steinig", "steinigen": "steinig", "steinigens": "steinig", "steiniges": "steinig", "steinigung": "steinig", "steinkamm": "steinkamm", "steinklotz": "steinklotz", "steinlagern": "steinlag", "steinlasten": "steinlast", "steinmasse": "steinmass", "steinpieper": "steinpiep", "steinpiepers": "steinpiep", "steinrand": "steinrand", "steins": "stein", "steinwerk": "steinwerk", "stell": "stell", "stelle": "stell", "stelledie": "stelledi", "stellen": "stell", "stelleninhaber": "stelleninhab", "stellenleiters": "stellenleit", "stellt": "stellt", "stellte": "stellt", "stellten": "stellt", "stellung": "stellung", "stellungen": "stellung", "stellungnahmen": "stellungnahm", "stellvertretende": "stellvertret", "stellvertreter": "stellvertret", "stellvertreters": "stellvertret", "stelzten": "stelzt", "stemmte": "stemmt", "stempel": "stempel", "stemraketen": "stemraket", "sten": "sten", "stengel": "stengel", "steppen": "stepp", "sterbe": "sterb", "sterbebegleiterdie": "sterbebegleiterdi", "sterbebegleitungs": "sterbebegleit", "sterbebette": "sterbebett", "sterbeforscherin": "sterbeforscherin", "sterbeforschung": "sterbeforsch", "sterben": "sterb", "sterbend": "sterbend", "sterbenden": "sterbend", "sterbendes": "sterbend", "sterbenswörtchen": "sterbenswortch", "sterbet": "sterbet", "sterblichen": "sterblich", "sterblicher": "sterblich", "sterbn": "sterbn", "sterbstund": "sterbstund", "stern": "stern", "sternbild": "sternbild", "sternbilder": "sternbild", "sternblumen": "sternblum", "sternblumenklee": "sternblumenkle", "sternblumenwiese": "sternblumenwies", "sternchen": "sternch", "sternchenkuss": "sternchenkuss", "sterndeutung": "sterndeut", "sterne": "stern", "sternen": "stern", "sternenbilde": "sternenbild", "sternenhimmel": "sternenhimmel", "sternenkinder": "sternenkind", "sternenkindern": "sternenkind", "sternenmädchen": "sternenmadch", "sternenmädchens": "sternenmadch", "sternenschule": "sternenschul", "sternenstühlchen": "sternenstuhlch", "sternenwiese": "sternenwies", "sternlein": "sternlein", "sternpünktchen": "sternpunktch", "sternschnuppen": "sternschnupp", "sternschnuppengemüse": "sternschnuppengemus", "sternschnuppenwolke": "sternschnuppenwolk", "sterzenbacher": "sterzenbach", "stete": "stet", "steten": "stet", "stetig": "stetig", "stetige": "stetig", "stets": "stet", "stett": "stett", "steuer": "steu", "steuerausfalls": "steuerausfall", "steuerbeleg": "steuerbeleg", "steuerhinterziehung": "steuerhinterzieh", "steuern": "steu", "steuersünder": "steuersund", "steuert": "steuert", "steuerte": "steuert", "steward": "steward", "steyrerhut": "steyrerhut", "steyrerhute": "steyrerhut", "stibitzt": "stibitzt", "stich": "stich", "sticheln": "sticheln", "stickerei": "stickerei", "stickstoffgehaltes": "stickstoffgehalt", "stickstoffhaltige": "stickstoffhalt", "stiebten": "stiebt", "stiefel": "stiefel", "stiefeln": "stiefeln", "stiefelsohlen": "stiefelsohl", "stiefmütterlich": "stiefmutt", "stieg": "stieg", "stiegen": "stieg", "stiehlt": "stiehlt", "stiel": "stiel", "stielen": "stiel", "stier": "stier", "stiere": "stier", "stierer": "stier", "stierte": "stiert", "stiess": "stiess", "stieß": "stiess", "stiessen": "stiess", "stießen": "stiess", "stiften": "stift", "stifter": "stift", "stiftern": "stift", "stiftsdamen": "stiftsdam", "stiftshütte": "stiftshutt", "stiftung": "stiftung", "stiftungen": "stiftung", "stigma": "stigma", "stil": "stil", "stile": "stil", "stiles": "stil", "still": "still", "stillblaue": "stillblau", "stille": "still", "stillen": "still", "stiller": "still", "stilles": "still", "stillgewordenen": "stillgeword", "stillhalten": "stillhalt", "stillhielt": "stillhielt", "stillschweigend": "stillschweig", "stillschweigende": "stillschweig", "stillstand": "stillstand", "stillständer": "stillstand", "stimmabgabe": "stimmabgab", "stimmberechtigten": "stimmberechtigt", "stimmbezirke": "stimmbezirk", "stimmchen": "stimmch", "stimme": "stimm", "stimmen": "stimm", "stimmenzähler": "stimmenzahl", "stimmenzählern": "stimmenzahl", "stimmfähig": "stimmfah", "stimmlisten": "stimmlist", "stimmt": "stimmt", "stimmte": "stimmt", "stimmten": "stimmt", "stimmung": "stimmung", "stimmungen": "stimmung", "stimmzettel": "stimmzettel", "stingel": "stingel", "stinke": "stink", "stinken": "stink", "stinkend": "stinkend", "stinkenden": "stinkend", "stinkige": "stinkig", "stinkt": "stinkt", "stirb": "stirb", "stirbt": "stirbt", "stirn": "stirn", "stirnband": "stirnband", "stirne": "stirn", "stirnen": "stirn", "stob": "stob", "stoben": "stob", "stöberte": "stobert", "stocherte": "stochert", "stock": "stock", "stöckchen": "stockch", "stocke": "stock", "stöcke": "stock", "stöcken": "stock", "stockender": "stockend", "stöckerte": "stockert", "stockfinsteren": "stockfinst", "stocksteife": "stocksteif", "stockte": "stockt", "stockten": "stockt", "stockungeheuer": "stockungeheu", "stockwerk": "stockwerk", "stockwerke": "stockwerk", "stockwerkes": "stockwerk", "stockwerks": "stockwerk", "stockzähnen": "stockzahn", "stoff": "stoff", "stoffe": "stoff", "stöhnend": "stohnend", "stöhnte": "stohnt", "stoiker": "stoik", "stoikern": "stoik", "stoische": "stoisch", "stoischer": "stoisch", "stollen": "stoll", "stollenkleider": "stollenkleid", "stolperte": "stolpert", "stolperten": "stolpert", "stolz": "stolz", "stolze": "stolz", "stolzen": "stolz", "stolzer": "stolz", "stolzes": "stolz", "stolzieren": "stolzi", "stolzierten": "stolziert", "stonsdorfer": "stonsdorf", "stopfte": "stopft", "stoppelbart": "stoppelbart", "stoppeln": "stoppeln", "storb": "storb", "störche": "storch", "störe": "stor", "stören": "stor", "störend": "storend", "störenden": "storend", "störenfried": "storenfried", "störenfriedes": "storenfried", "storren": "storr", "störrig": "storrig", "stört": "stort", "störte": "stort", "störung": "storung", "störungen": "storung", "stoss": "stoss", "stoß": "stoss", "stössel": "stossel", "stossen": "stoss", "stoßen": "stoss", "stossend": "stossend", "stösst": "stosst", "stößt": "stosst", "stotternder": "stotternd", "stotterte": "stottert", "strack": "strack", "stracks": "strack", "strafe": "straf", "strafen": "straf", "straff": "straff", "strafgerichte": "strafgericht", "strafgerichtes": "strafgericht", "strafgesetzes": "strafgesetz", "strafkolonie": "strafkoloni", "strafpredigt": "strafpredigt", "strafprozess": "strafprozess", "strafprozeß": "strafprozess", "straft": "straft", "strafte": "straft", "strafübel": "strafubel", "strafwürdig": "strafwurd", "strafwürdigen": "strafwurd", "strahl": "strahl", "strahle": "strahl", "strahlen": "strahl", "strahlend": "strahlend", "strahlenden": "strahlend", "strahlender": "strahlend", "strahlenkrone": "strahlenkron", "strahlenkronen": "strahlenkron", "strahlt": "strahlt", "strahlte": "strahlt", "strahlten": "strahlt", "strähnig": "strahnig", "stramen": "stram", "straminis": "straminis", "stramm": "stramm", "strampampelt": "strampampelt", "strampelei": "strampelei", "strampelte": "strampelt", "strampelten": "strampelt", "strapazierst": "strapazierst", "strapinski": "strapinski", "strapinskis": "strapinskis", "strass": "strass", "strassburg": "strassburg", "strässchen": "strassch", "strasse": "strass", "straße": "strass", "strassen": "strass", "straßen": "strass", "straßenbahn": "strassenbahn", "strassenecke": "strasseneck", "straßenecke": "strasseneck", "strassenfestes": "strassenf", "strassengraben": "strassengrab", "strassenkörper": "strassenkorp", "strassenmann": "strassenmann", "strassenniveau": "strassenniveau", "straßenniveau": "strassenniveau", "strassenrand": "strassenrand", "strassenschlachten": "strassenschlacht", "strassenseite": "strassenseit", "straßenseite": "strassenseit", "strassenverkehr": "strassenverkehr", "straßenverkehr": "strassenverkehr", "strassl": "strassl", "stratagemata": "stratagemata", "strategischen": "strateg", "sträubte": "straubt", "strauch": "strauch", "straucheln": "straucheln", "strauchelt": "strauchelt", "sträucher": "strauch", "sträuchern": "strauch", "strauchwitz": "strauchwitz", "strauss": "strauss", "strausse": "strauss", "sträusserl": "strausserl", "streben": "streb", "strebens": "streb", "strebsamer": "strebsam", "strebt": "strebt", "strebte": "strebt", "strebten": "strebt", "strecke": "streck", "strecken": "streck", "streckt": "streckt", "streckte": "streckt", "streckten": "streckt", "streich": "streich", "streiche": "streich", "streicheln": "streicheln", "streichelt": "streichelt", "streichelte": "streichelt", "streichelten": "streichelt", "streichen": "streich", "streichholz": "streichholz", "streicht": "streicht", "streif": "streif", "streifen": "streif", "streift": "streift", "streifte": "streift", "streiften": "streift", "streifzug": "streifzug", "streifzügen": "streifzug", "streit": "streit", "streiten": "streit", "streitende": "streitend", "streitenden": "streitend", "streiter": "streit", "streites": "streit", "streitet": "streitet", "streitige": "streitig", "streitigen": "streitig", "streitigkeiten": "streitig", "streits": "streit", "streng": "streng", "strenge": "streng", "strengem": "streng", "strengen": "streng", "strenger": "streng", "strenges": "streng", "strenggenommen": "strenggenomm", "strenggeschnittenen": "strenggeschnitt", "strengste": "streng", "strengsten": "streng", "streßgeplagt": "stressgeplagt", "streue": "streu", "streuen": "streu", "streut": "streut", "streute": "streut", "strich": "strich", "strichen": "strich", "striches": "strich", "strichlein": "strichlein", "strichweise": "strichweis", "strick": "strick", "stricke": "strick", "stricken": "strick", "stricklein": "stricklein", "strickmaschine": "strickmaschin", "strickschlingen": "strickschling", "strickzeug": "strickzeug", "stritten": "stritt", "strittigen": "strittig", "stroh": "stroh", "strohhut": "strohhut", "strohhüte": "strohhut", "strohköpfe": "strohkopf", "strohpuppe": "strohpupp", "strohs": "stroh", "strolche": "strolch", "strom": "strom", "stromaufwärts": "stromaufwart", "strome": "strom", "ströme": "strom", "strömen": "strom", "stromes": "strom", "stroms": "strom", "strömt": "stromt", "strömte": "stromt", "strömten": "stromt", "strömung": "stromung", "strophe": "stroph", "strotzende": "strotzend", "strub": "strub", "strudel": "strudel", "strukturen": "struktur", "strukturwandlungen": "strukturwandl", "strumpf": "strumpf", "strumpfe": "strumpf", "strümpfe": "strumpf", "strümpfen": "strumpf", "strumpfes": "strumpf", "strunk": "strunk", "strychnin": "strychnin", "strychninbrocken": "strychninbrock", "stübchen": "stubch", "stübchens": "stubch", "stube": "stub", "stuben": "stub", "stubenreinheit": "stubenrein", "stubenschlüssel": "stubenschlussel", "stubentür": "stubentur", "stubentüre": "stubentur", "stück": "stuck", "stückchen": "stuckch", "stücke": "stuck", "stücken": "stuck", "stücklein": "stucklein", "stücks": "stuck", "studen": "stud", "student": "student", "studenten": "student", "studentenmütze": "studentenmutz", "studentin": "studentin", "studie": "studi", "studien": "studi", "studieren": "studi", "studiert": "studiert", "studierte": "studiert", "studierten": "studiert", "studio": "studio", "studios": "studios", "studium": "studium", "stufe": "stuf", "stufen": "stuf", "stufenweise": "stufenweis", "stuhl": "stuhl", "stuhlbeine": "stuhlbein", "stühlchen": "stuhlch", "stuhle": "stuhl", "stühle": "stuhl", "stühlen": "stuhl", "stuhles": "stuhl", "stukkaturarbeiten": "stukkaturarbeit", "stumm": "stumm", "stumme": "stumm", "stummen": "stumm", "stummer": "stumm", "stümperhaft": "stumperhaft", "stumpf": "stumpf", "stumpfbesen": "stumpfbes", "stumpfheit": "stumpfheit", "stumpfnäschen": "stumpfnasch", "stumpfsinn": "stumpfsinn", "stumpfsinnig": "stumpfsinn", "stumpfsinniges": "stumpfsinn", "stund": "stund", "stündchen": "stundch", "stunde": "stund", "stünde": "stund", "stündel": "stundel", "stunden": "stund", "stünden": "stund", "stundenlang": "stundenlang", "stundenlange": "stundenlang", "stundenlangen": "stundenlang", "stundenweit": "stundenweit", "stundenzeiger": "stundenzeig", "stündleins": "stundlein", "stündlich": "stundlich", "stupender": "stupend", "sturm": "sturm", "stürme": "sturm", "stürmen": "sturm", "sturmflockenwirbel": "sturmflockenwirbel", "sturmhusche": "sturmhusch", "stürmisch": "sturmisch", "stürmischer": "sturmisch", "sturmriese": "sturmries", "sturmriesen": "sturmries", "stürmte": "sturmt", "stürmten": "sturmt", "sturmwind": "sturmwind", "sturz": "sturz", "sturze": "sturz", "stürze": "sturz", "stürzen": "sturz", "stürzet": "sturzet", "stürzt": "sturzt", "stürzte": "sturzt", "stürzten": "sturzt", "stuttgart": "stuttgart", "stuttgarter": "stuttgart", "stütze": "stutz", "stutzen": "stutz", "stützen": "stutz", "stützend": "stutzend", "stutzerhaft": "stutzerhaft", "stützt": "stutzt", "stutzte": "stutzt", "stützte": "stutzt", "stützten": "stutzt", "sub": "sub", "subjectis": "subjectis", "subjekt": "subjekt", "subjekte": "subjekt", "subjekten": "subjekt", "subjektiv": "subjektiv", "subjektive": "subjektiv", "subjektiven": "subjektiv", "subjektiver": "subjektiv", "subjekts": "subjekt", "subkultur": "subkultur", "sublimsten": "sublim", "subreptionis": "subreptionis", "substantielle": "substantiell", "substantiellen": "substantiell", "substanz": "substanz", "substanzen": "substanz", "subsumtion": "subsumtion", "subtil": "subtil", "subtile": "subtil", "subtilen": "subtil", "subtiler": "subtil", "subtilste": "subtil", "success": "success", "successiva": "successiva", "suche": "such", "suchen": "such", "suchenden": "suchend", "suchet": "suchet", "suchst": "such", "sucht": "sucht", "suchtbereitschaft": "suchtbereitschaft", "suchte": "sucht", "suchten": "sucht", "suchtforscher": "suchtforsch", "süchtig": "suchtig", "suchtmittelkonsum": "suchtmittelkonsum", "süd": "sud", "süditalien": "suditali", "südliches": "sudlich", "südlondon": "sudlondon", "südseite": "sudseit", "südwärts": "sudwart", "südwestfunk": "sudwestfunk", "sühnen": "suhn", "sultan": "sultan", "sülzpastete": "sulzpastet", "summ": "summ", "summarisch": "summar", "sümmchen": "summch", "summe": "summ", "summen": "summ", "summende": "summend", "summte": "summt", "sumpfig": "sumpfig", "sumpfigen": "sumpfig", "sumpflöcher": "sumpfloch", "sumsemann": "sumsemann", "sumsemännchen": "sumsemannch", "sumsemänner": "sumsemann", "sumsemännern": "sumsemann", "sumsemanns": "sumsemann", "sumsiselsei": "sumsiselsei", "sünde": "sund", "sünden": "sund", "sündenlose": "sundenlos", "sünder": "sund", "sündflut": "sundflut", "sündhafte": "sundhaft", "sündigen": "sundig", "sündigt": "sundigt", "sunntäg": "sunntag", "sunt": "sunt", "superlativ": "superlativ", "superstition": "superstition", "suph": "suph", "suppe": "supp", "suppenkelle": "suppenkell", "suppentopf": "suppentopf", "supremum": "supremum", "surfen": "surf", "surfstation": "surfstation", "suspendierten": "suspendiert", "süss": "suss", "süß": "suss", "süsse": "suss", "süße": "suss", "süssem": "suss", "süssen": "suss", "süßen": "suss", "süsser": "suss", "süsses": "suss", "süsseste": "suss", "süssigkeit": "sussig", "süssigkeiten": "sussig", "süsslich": "susslich", "suyu": "suyu", "sweetheart": "sweetheart", "swissaid": "swissaid", "swissair": "swissair", "sykomoren": "sykomor", "sylvia": "sylvia", "symbol": "symbol", "symbola": "symbola", "symbole": "symbol", "symmetrie": "symmetri", "sympathielage": "sympathielag", "sympathien": "sympathi", "sympathiestränge": "sympathiestrang", "sympathische": "sympath", "sympathischen": "sympath", "sympathischer": "sympath", "symposium": "symposium", "synkretistischen": "synkretist", "synodalrat": "synodalrat", "synodalrätin": "synodalratin", "synode": "synod", "synonyme": "synonym", "synthesis": "synthesis", "synthetisch": "synthet", "synthetische": "synthet", "synthetischen": "synthet", "synthetischer": "synthet", "syrien": "syri", "syriens": "syri", "system": "syst", "systematisch": "systemat", "systematische": "systemat", "systematischen": "systemat", "systemen": "system", "sz": "sz", "szene": "szen", "t": "t", "ta": "ta", "tabak": "tabak", "tabaks": "tabak", "tabaksqualme": "tabaksqualm", "tabaksteig": "tabaksteig", "tadel": "tadel", "tadelloser": "tadellos", "tadeln": "tadeln", "tadelswürdig": "tadelswurd", "tadelte": "tadelt", "tafel": "tafel", "tafeldecker": "tafeldeck", "tafeldeckern": "tafeldeck", "tafelgeschenke": "tafelgeschenk", "tafeln": "tafeln", "tafelseite": "tafelseit", "tafeltuch": "tafeltuch", "taferlklass": "taferlklass", "taft": "taft", "tag": "tag", "täg": "tag", "tage": "tag", "tagelang": "tagelang", "tagelohn": "tagelohn", "tagelöhner": "tagelohn", "tagelöhnermädchen": "tagelohnermadch", "tagen": "tag", "tagereisen": "tagereis", "tages": "tag", "tagesanbruch": "tagesanbruch", "tagesanzeiger": "tagesanzeig", "tagesgäste": "tagesgast", "tageshelle": "tageshell", "tageskasse": "tageskass", "tageslauf": "tageslauf", "tageslicht": "tageslicht", "tagesordnung": "tagesordn", "tageszeiten": "tageszeit", "tagewerk": "tagewerk", "tagi": "tagi", "täglich": "taglich", "tägliche": "taglich", "täglichen": "taglich", "taglicht": "taglicht", "taglöhners": "taglohn", "tagreisen": "tagreis", "tags": "tag", "tagtäglich": "tagtag", "tagträumen": "tagtraum", "taiga": "taiga", "takt": "takt", "takte": "takt", "taktik": "taktik", "taktischen": "taktisch", "tal": "tal", "talar": "talar", "tale": "tal", "talent": "talent", "taler": "tal", "täler": "tal", "talern": "tal", "talerstücke": "talerstuck", "tales": "tal", "talglichten": "talglicht", "talgrunde": "talgrund", "talhängen": "talhang", "tals": "tal", "talwärts": "talwart", "tambour": "tambour", "tamburin": "tamburin", "tan": "tan", "tändle": "tandl", "tanne": "tann", "tannebaum": "tannebaum", "tannen": "tann", "tannenbäumchen": "tannenbaumch", "tannenbusch": "tannenbusch", "tannenen": "tann", "tannengestrüpp": "tannengestrupp", "tannengetäfels": "tannengetafel", "tannenhähers": "tannenhah", "tannenwäldchen": "tannenwaldch", "tante": "tant", "tanz": "tanz", "tanzbein": "tanzbein", "tanze": "tanz", "tänze": "tanz", "tänzelnden": "tanzelnd", "tänzelte": "tanzelt", "tanzen": "tanz", "tanzende": "tanzend", "tanzenden": "tanzend", "tanzendes": "tanzend", "tanzmusik": "tanzmus", "tanzplatz": "tanzplatz", "tanzsaal": "tanzsaal", "tanzsaales": "tanzsaal", "tanzschritten": "tanzschritt", "tanzt": "tanzt", "tanzte": "tanzt", "tanzten": "tanzt", "tapet": "tapet", "tapete": "tapet", "tapfer": "tapf", "tapfere": "tapf", "tapferen": "tapf", "tapferes": "tapf", "tapferkeit": "tapfer", "tapfern": "tapf", "tappen": "tapp", "tapper": "tapp", "täppet": "tappet", "tappte": "tappt", "tasche": "tasch", "taschen": "tasch", "taschengeld": "taschengeld", "taschentuch": "taschentuch", "taschentüchern": "taschentuch", "taschenuhr": "taschenuhr", "task": "task", "tasse": "tass", "tassen": "tass", "tasten": "tast", "tasteten": "tastet", "tat": "tat", "tät": "tat", "täte": "tat", "taten": "tat", "täten": "tat", "tatendrang": "tatendrang", "tatendranges": "tatendrang", "tatendurst": "tatendurst", "täter": "tat", "tätig": "tatig", "tätige": "tatig", "tätigen": "tatig", "tätiger": "tatig", "tätiges": "tatig", "tätigkeit": "tatig", "tätigkeiten": "tatig", "tätigkeitsbereiche": "tatigkeitsbereich", "tätigkeitstriebe": "tatigkeitstrieb", "tatkraft": "tatkraft", "tatkräftige": "tatkraft", "tatkräftiges": "tatkraft", "tatlust": "tatlust", "tatsache": "tatsach", "tatsachen": "tatsach", "tatsächlich": "tatsach", "tatsächlichen": "tatsach", "tätschelten": "tatschelt", "tatwirklichkeiten": "tatwirk", "tatzen": "tatz", "tau": "tau", "taub": "taub", "taube": "taub", "tauben": "taub", "tauchen": "tauch", "taucht": "taucht", "tauchte": "taucht", "tauchten": "taucht", "taufe": "tauf", "taufen": "tauf", "täufer": "tauf", "taufnamen": "taufnam", "taufschein": "taufschein", "taufstein": "taufstein", "taufzettel": "taufzettel", "taugen": "taug", "taugenichts": "taugenicht", "tauglich": "tauglich", "taugliche": "tauglich", "tauglichen": "tauglich", "tauglicheres": "tauglich", "tauglichkeit": "tauglich", "tauglichsten": "tauglich", "taugt": "taugt", "tauige": "tauig", "tauigen": "tauig", "taumariechen": "taumariech", "taumariechens": "taumariech", "taumeln": "taumeln", "taumelnd": "taumelnd", "taumelnder": "taumelnd", "taumelte": "taumelt", "taunassen": "taunass", "tauschen": "tausch", "täuschen": "tausch", "täuschender": "tauschend", "täuscht": "tauscht", "täuschte": "tauscht", "täuschung": "tauschung", "täuschungen": "tauschung", "tauschwitz": "tauschwitz", "tausee": "tause", "tausees": "tause", "tausend": "tausend", "tausende": "tausend", "tausenden": "tausend", "tausendfachem": "tausendfach", "tausendfältigen": "tausendfalt", "tausendkünstlern": "tausendkunstl", "tausendmal": "tausendmal", "tausendsgeschichten": "tausendsgeschicht", "tausendskerl": "tausendskerl", "tausendskind": "tausendskind", "tausendsmensch": "tausendsmensch", "tausendste": "tausend", "tausig": "tausig", "taverne": "tavern", "tax": "tax", "taxen": "tax", "taxi": "taxi", "taxifahrer": "taxifahr", "technicus": "technicus", "techniker": "technik", "technisch": "technisch", "technischen": "technisch", "technisches": "technisch", "techno": "techno", "teckel": "teckel", "tecnh": "tecnh", "tee": "tee", "teebeutel": "teebeutel", "teekanne": "teekann", "teelöffel": "teeloffel", "tees": "tees", "teich": "teich", "teiche": "teich", "teifi": "teifi", "teig": "teig", "teigs": "teig", "teil": "teil", "teile": "teil", "teilen": "teil", "teilete": "teilet", "teilhaben": "teilhab", "teilhaft": "teilhaft", "teilhaftig": "teilhaft", "teilnahm": "teilnahm", "teilnahme": "teilnahm", "teilnahmlos": "teilnahmlos", "teilnehmen": "teilnehm", "teilnehmende": "teilnehm", "teilnehmer": "teilnehm", "teilnehmung": "teilnehm", "teilnimmt": "teilnimmt", "teils": "teil", "teilt": "teilt", "teilte": "teilt", "teilten": "teilt", "teilung": "teilung", "teilweise": "teilweis", "teilzunehmen": "teilzunehm", "tel": "tel", "telefon": "telefon", "telefonanrufe": "telefonanruf", "telefone": "telefon", "telefonen": "telefon", "telefonhörer": "telefonhor", "telefoniert": "telefoniert", "telefonierte": "telefoniert", "telefonisch": "telefon", "telegrafisch": "telegraf", "telegramm": "telegramm", "telegraphisch": "telegraph", "telepathische": "telepath", "telephonieren": "telephoni", "telephonierten": "telephoniert", "telephonisch": "telephon", "telephonische": "telephon", "telephonischen": "telephon", "telephonischer": "telephon", "teller": "tell", "tellerleckerei": "tellerleckerei", "tellers": "tell", "tempel": "tempel", "tempels": "tempel", "temperatur": "temperatur", "tempora": "tempora", "tendenz": "tendenz", "tendenzen": "tendenz", "tennen": "tenn", "tenöre": "tenor", "teppich": "teppich", "teppichartigen": "teppichart", "teppiche": "teppich", "teppichen": "teppich", "teppichweber": "teppichweb", "termin": "termin", "terminantur": "terminantur", "terminus": "terminus", "terra": "terra", "terrasse": "terrass", "terrassen": "terrass", "territorium": "territorium", "terroristisch": "terrorist", "terroristischen": "terrorist", "terroristischer": "terrorist", "tertium": "tertium", "tessiner": "tessin", "testament": "testament", "testamentarisch": "testamentar", "testaments": "testament", "teuer": "teu", "teueren": "teu", "teuerste": "teuerst", "teufel": "teufel", "teufels": "teufel", "teufelsbrücke": "teufelsbruck", "teufelsgeduld": "teufelsgeduld", "teufelshexlein": "teufelshexlein", "teufelshörner": "teufelshorn", "teufelskünste": "teufelskun", "teufelsreitern": "teufelsreit", "teuflisch": "teuflisch", "teuflische": "teuflisch", "teuflischen": "teuflisch", "teure": "teur", "texas": "texas", "text": "text", "thachpanches": "thachpanch", "thamar": "thamar", "tharschisch": "tharschisch", "the": "the", "theater": "theat", "theaterbillet": "theaterbillet", "theatergruppe": "theatergrupp", "theaterkarten": "theaterkart", "theaterprinzessin": "theaterprinzessin", "theaterprospekt": "theaterprospekt", "theaterszene": "theatersz", "theke": "thek", "thema": "thema", "thematisiert": "thematisiert", "themen": "them", "themse": "thems", "theodor": "theodor", "theologe": "theolog", "theologen": "theolog", "theologie": "theologi", "theologin": "theologin", "theologinnen": "theologinn", "theologisch": "theolog", "theologische": "theolog", "theologischen": "theolog", "theophrastos": "theophrastos", "theoretisch": "theoret", "theoretische": "theoret", "theoretischen": "theoret", "theoretischer": "theoret", "theoretisches": "theoret", "theorie": "theori", "theorien": "theori", "theosophen": "theosoph", "theosophische": "theosoph", "theresa": "theresa", "thesen": "thes", "thesis": "thesis", "thiel": "thiel", "thomas": "thomas", "thron": "thron", "throne": "thron", "thronen": "thron", "thrones": "thron", "throns": "thron", "thronstufen": "thronstuf", "thront": "thront", "thronte": "thront", "thubal": "thubal", "thubalkain": "thubalkain", "thubalkains": "thubalkain", "thurgau": "thurgau", "thv": "thv", "ti": "ti", "ticket": "ticket", "tief": "tief", "tiefblauem": "tiefblau", "tiefblauen": "tiefblau", "tiefe": "tief", "tiefem": "tief", "tiefen": "tief", "tiefer": "tief", "tiefere": "tief", "tieferen": "tief", "tiefern": "tief", "tiefes": "tief", "tiefpunkt": "tiefpunkt", "tiefschwarzes": "tiefschwarz", "tiefsinnig": "tiefsinn", "tiefsinnigen": "tiefsinn", "tiefsinniges": "tiefsinn", "tiefste": "tief", "tiefsten": "tief", "tiefster": "tief", "tieftönenden": "tiefton", "tier": "tier", "tierarzt": "tierarzt", "tierchen": "tierch", "tiere": "tier", "tieren": "tier", "tieres": "tier", "tierfabel": "tierfabel", "tiergattungen": "tiergatt", "tierheit": "tierheit", "tierische": "tierisch", "tierischen": "tierisch", "tierklaue": "tierklau", "tierlebens": "tierleb", "tierlein": "tierlein", "tiernatur": "tiernatur", "tiersamen": "tiersam", "tierschutzverein": "tierschutzverein", "tierseele": "tierseel", "tierwelt": "tierwelt", "tiger": "tig", "tigern": "tig", "tiiid": "tiiid", "tilgen": "tilg", "tinte": "tint", "tinten": "tint", "tintenflaschen": "tintenflasch", "tintenstrichen": "tintenstrich", "tippte": "tippt", "tirilieren": "tirili", "tirilierte": "tiriliert", "tisch": "tisch", "tischbeins": "tischbein", "tischchen": "tischch", "tische": "tisch", "tischen": "tisch", "tisches": "tisch", "tischgebet": "tischgebet", "tischlade": "tischlad", "tischler": "tischl", "tischplatte": "tischplatt", "tischtuch": "tischtuch", "tischwein": "tischwein", "titel": "titel", "titelblatt": "titelblatt", "titeln": "titeln", "titelt": "titelt", "tl": "tl", "to": "to", "toaste": "toast", "toasts": "toast", "toben": "tob", "tobende": "tobend", "tobenden": "tobend", "tobendes": "tobend", "tobias": "tobias", "tobt": "tobt", "tobte": "tobt", "tochter": "tocht", "töchter": "tocht", "töchtern": "tocht", "tod": "tod", "todbette": "todbett", "todbringend": "todbring", "tode": "tod", "todes": "tod", "todesangst": "todesang", "todesaussichten": "todesaussicht", "todesfurcht": "todesfurcht", "todeskampf": "todeskampf", "todeskandidaten": "todeskandidat", "todesschattens": "todesschatt", "todesschrecken": "todesschreck", "todesschwadronen": "todesschwadron", "todesstrafe": "todesstraf", "todesstrafen": "todesstraf", "todesstunde": "todesstund", "todesurteil": "todesurteil", "todeswerkzeuge": "todeswerkzeug", "tödlich": "todlich", "tödliche": "todlich", "tödlichen": "todlich", "tödlicher": "todlich", "todsünd": "todsund", "todsündigen": "todsund", "todvollste": "todvoll", "töff": "toff", "töfffahrer": "tofffahr", "toile": "toil", "toilette": "toilett", "toilettenstücke": "toilettenstuck", "toilettenwerkzeug": "toilettenwerkzeug", "tokaier": "tokai", "tol": "tol", "toll": "toll", "tolle": "toll", "tollen": "toll", "toller": "toll", "tolleren": "toll", "tolles": "toll", "tollhaus": "tollhaus", "tollhäusler": "tollhausl", "tollheit": "tollheit", "tollkühnen": "tollkuhn", "tollste": "toll", "tollsten": "toll", "tollte": "tollt", "tolpatsch": "tolpatsch", "tolpatschig": "tolpatsch", "tölpel": "tolpel", "tölpelhafter": "tolpelhaft", "tölpeln": "tolpeln", "tölz": "tolz", "tombakschnalle": "tombakschnall", "ton": "ton", "tonart": "tonart", "tonbandschnippel": "tonbandschnippel", "tone": "ton", "töne": "ton", "tönen": "ton", "tönende": "tonend", "tonfall": "tonfall", "tonfetzen": "tonfetz", "toni": "toni", "tons": "ton", "tönt": "tont", "tönte": "tont", "tönten": "tont", "top": "top", "topas": "topas", "topf": "topf", "topfbodens": "topfbod", "töpfchen": "topfch", "töpfe": "topf", "töpfen": "topf", "töpfer": "topf", "töpfergeschirre": "topfergeschirr", "töpfers": "topf", "topfwagens": "topfwag", "topheth": "topheth", "topi": "topi", "topica": "topica", "topicis": "topicis", "topik": "topik", "topoi": "topoi", "topov": "topov", "topus": "topus", "tor": "tor", "torbogen": "torbog", "tore": "tor", "toreinfahrt": "toreinfahrt", "toren": "tor", "torenwerk": "torenwerk", "tores": "tor", "torgau": "torgau", "torheit": "torheit", "torheiten": "torheit", "töricht": "toricht", "törichte": "toricht", "törichten": "toricht", "torkelte": "torkelt", "tornister": "tornist", "tort": "tort", "torte": "tort", "tosende": "tosend", "tot": "tot", "total": "total", "totale": "total", "totalen": "total", "totalität": "totalitat", "tote": "tot", "töte": "tot", "toten": "tot", "töten": "tot", "totenbahre": "totenbahr", "totenbleich": "totenbleich", "tötendes": "totend", "totengebeine": "totengebein", "totenmusik": "totenmus", "tötens": "tot", "totenstill": "totenstill", "toter": "tot", "totes": "tot", "tötet": "totet", "tötete": "totet", "töteten": "totet", "totgemacht": "totgemacht", "totgeprügelt": "totgeprugelt", "totgeschlagen": "totgeschlag", "totgestellt": "totgestellt", "totlachen": "totlach", "totmachen": "totmach", "totmachte": "totmacht", "totschlag": "totschlag", "totschlagen": "totschlag", "totstellen": "totstell", "tottrat": "tottrat", "tötung": "totung", "touv": "touv", "traam": "traam", "trab": "trab", "trabe": "trab", "tracht": "tracht", "trachten": "tracht", "trachtet": "trachtet", "trachtete": "trachtet", "trachteten": "trachtet", "tradition": "tradition", "traditionellen": "traditionell", "traditionen": "tradition", "traf": "traf", "trafen": "traf", "trag": "trag", "träg": "trag", "tragbar": "tragbar", "trage": "trag", "träge": "trag", "tragen": "trag", "trägen": "trag", "tragend": "tragend", "tragenden": "tragend", "träger": "trag", "trägerschaft": "tragerschaft", "trägheit": "tragheit", "tragik": "tragik", "tragisch": "tragisch", "tragische": "tragisch", "tragischen": "tragisch", "trägt": "tragt", "training": "training", "traktätchen": "traktatch", "traktatus": "traktatus", "trällern": "trall", "tranchierens": "tranchier", "träne": "tran", "tränen": "tran", "tränenbrot": "tranenbrot", "trank": "trank", "tranken": "trank", "tränken": "trank", "tränket": "tranket", "trankopfer": "trankopf", "trankst": "trank", "tränkst": "trank", "tränkte": "trankt", "tranlämpchen": "tranlampch", "transzendent": "transzendent", "transzendental": "transzendental", "transzendentale": "transzendental", "transzendentalen": "transzendental", "transzendentales": "transzendental", "transzendente": "transzendent", "transzendenten": "transzendent", "transzendenz": "transzendenz", "trapfenden": "trapfend", "trapfhirsch": "trapfhirsch", "trat": "trat", "traten": "trat", "trau": "trau", "traube": "traub", "trauben": "traub", "trauen": "trau", "trauer": "trau", "trauere": "trau", "trauergang": "trauergang", "trauerkapelle": "trauerkapell", "trauern": "trau", "trauernd": "trauernd", "trauernde": "trauernd", "trauernden": "trauernd", "trauernder": "trauernd", "trauerspiel": "trauerspiel", "trauerspielen": "trauerspiel", "trauert": "trauert", "trauerte": "trauert", "trauerzeit": "trauerzeit", "trauet": "trauet", "traufe": "trauf", "träufeln": "traufeln", "träufelt": "traufelt", "träufelten": "traufelt", "traulich": "traulich", "traulichen": "traulich", "traum": "traum", "traumberuf": "traumberuf", "traumbüchlein": "traumbuchlein", "traume": "traum", "träume": "traum", "träumen": "traum", "träumenden": "traumend", "träumereien": "traumerei", "träumerisch": "traumer", "träumerischen": "traumer", "traumhafter": "traumhaft", "traumlicht": "traumlicht", "traumseligkeit": "traumsel", "träumst": "traum", "träumt": "traumt", "träumte": "traumt", "träumten": "traumt", "traurig": "traurig", "traurige": "traurig", "traurigen": "traurig", "trauriger": "traurig", "trauriges": "traurig", "traurigkeit": "traurig", "traurigs": "traurig", "traurigste": "traurig", "traut": "traut", "traute": "traut", "trauten": "traut", "trautes": "traut", "trauung": "trauung", "treffe": "treff", "treffen": "treff", "treffenden": "treffend", "trefflich": "trefflich", "trefflichen": "trefflich", "trefflicher": "trefflich", "treffliches": "trefflich", "treib": "treib", "treiben": "treib", "treibend": "treibend", "treibenden": "treibend", "treiber": "treib", "treibern": "treib", "treibst": "treib", "treibt": "treibt", "tremolierte": "tremoliert", "trend": "trend", "trennen": "trenn", "trennt": "trennt", "trennte": "trennt", "trennten": "trennt", "trennung": "trennung", "trennungen": "trennung", "treppe": "trepp", "treppen": "trepp", "treppenabsatz": "treppenabsatz", "treppenaufgänge": "treppenaufgang", "treppengeländer": "treppengeland", "treppenhaus": "treppenhaus", "treppenstufen": "treppenstuf", "trete": "tret", "treten": "tret", "tretet": "tretet", "treu": "treu", "treue": "treu", "treuem": "treu", "treuen": "treu", "treuer": "treu", "treuere": "treu", "treues": "treu", "treugeliebter": "treugeliebt", "treuherzig": "treuherz", "treuherzige": "treuherz", "treuherzigen": "treuherz", "treuherziges": "treuherz", "treulich": "treulich", "treulos": "treulos", "treulosen": "treulos", "treuloser": "treulos", "treulosigkeit": "treulos", "treuste": "treust", "triangel": "triangel", "tribut": "tribut", "trieb": "trieb", "triebe": "trieb", "trieben": "trieb", "triebene": "trieb", "triebfeder": "triebfed", "triebfedern": "triebfed", "triefaugen": "triefaug", "triefend": "triefend", "triefenden": "triefend", "triefendes": "triefend", "triefigen": "triefig", "trieften": "trieft", "trifft": "trifft", "triften": "trift", "triller": "trill", "trillernde": "trillernd", "trinken": "trink", "trinkenden": "trinkend", "trinkest": "trink", "trinkgeld": "trinkgeld", "trinkhallen": "trinkhall", "trinkschale": "trinkschal", "trinkt": "trinkt", "tritt": "tritt", "trittbrett": "trittbrett", "tritte": "tritt", "tritten": "tritt", "trittst": "tritt", "triumph": "triumph", "triumphe": "triumph", "triumphieren": "triumphi", "triumphierend": "triumphier", "triviale": "trivial", "trivialität": "trivialitat", "trivialitäten": "trivialitat", "trocken": "trock", "trockene": "trock", "trockenen": "trock", "trockener": "trock", "trockenes": "trock", "trockenstangen": "trockenstang", "trocknen": "trockn", "trocknend": "trocknend", "trocknete": "trocknet", "trockneten": "trocknet", "troddel": "troddel", "troddeln": "troddeln", "trog": "trog", "troge": "trog", "trollen": "troll", "trollt": "trollt", "trommel": "trommel", "trommelfell": "trommelfell", "trommeln": "trommeln", "trommelte": "trommelt", "trompeten": "trompet", "trompeter": "trompet", "trompeters": "trompet", "tropf": "tropf", "tröpfe": "tropf", "tropfen": "tropf", "tropfensaum": "tropfensaum", "tropfenschweren": "tropfenschw", "tröpflein": "tropflein", "tropft": "tropft", "tropften": "tropft", "trophäe": "tropha", "tross": "tross", "troß": "tross", "trosse": "tross", "trossknechte": "trossknecht", "troßknechte": "trossknecht", "trost": "trost", "tröst": "trost", "trösten": "trost", "tröstende": "trostend", "tröstenden": "trostend", "tröster": "trost", "trostes": "trost", "tröstet": "trostet", "tröstete": "trostet", "trostlos": "trostlos", "trostlose": "trostlos", "trostlosen": "trostlos", "trostlosesten": "trostlos", "trostlosigkeit": "trostlos", "tröstungen": "trostung", "trottel": "trottel", "trottete": "trottet", "trotz": "trotz", "trotzdem": "trotzd", "trotzig": "trotzig", "trotzige": "trotzig", "trotzigen": "trotzig", "trotziges": "trotzig", "trotzten": "trotzt", "trübe": "trub", "trubel": "trubel", "trüben": "trub", "trüber": "trub", "trübes": "trub", "trübsal": "trubsal", "trübsale": "trubsal", "trübselig": "trubsel", "trübselige": "trubsel", "trübseligen": "trubsel", "trübseliger": "trubsel", "trübt": "trubt", "trübte": "trubt", "trüffeln": "truffeln", "trug": "trug", "trüge": "trug", "trugen": "trug", "trügerische": "truger", "trügerischer": "truger", "truggestalten": "truggestalt", "truggründe": "truggrund", "trüglich": "truglich", "trüglicher": "truglich", "trüglichkeit": "truglich", "trugvoll": "trugvoll", "trummen": "trumm", "trümmer": "trumm", "trümmerhaufen": "trummerhauf", "trümmern": "trumm", "trunken": "trunk", "trunkenen": "trunk", "trunkener": "trunk", "trupp": "trupp", "trüppchen": "truppch", "truppe": "trupp", "truppen": "trupp", "trupps": "trupps", "trutzig": "trutzig", "tu": "tu", "tü": "tu", "tubalkain": "tubalkain", "tuch": "tuch", "tuche": "tuch", "tüchel": "tuchel", "tücher": "tuch", "tuchhose": "tuchhos", "tüchl": "tuchl", "tüchtig": "tuchtig", "tüchtige": "tuchtig", "tüchtigem": "tuchtig", "tüchtigen": "tuchtig", "tüchtiger": "tuchtig", "tüchtiges": "tuchtig", "tüchtigkeit": "tuchtig", "tücke": "tuck", "tücken": "tuck", "tückischer": "tuckisch", "tue": "tue", "tuest": "tuest", "tüftelte": "tuftelt", "tugend": "tugend", "tugenden": "tugend", "tugendgesinnung": "tugendgesinn", "tugendhaft": "tugendhaft", "tugendhafte": "tugendhaft", "tugendhaften": "tugendhaft", "tugendhafter": "tugendhaft", "tugendhafteste": "tugendhaft", "tugendsame": "tugendsam", "tummel": "tummel", "tummelte": "tummelt", "tümpel": "tumpel", "tumult": "tumult", "tun": "tun", "tünche": "tunch", "tünchen": "tunch", "tundra": "tundra", "tunika": "tunika", "tunlich": "tunlich", "tunlichkeit": "tunlich", "tuns": "tun", "tüp": "tup", "tür": "tur", "turbane": "turban", "türe": "tur", "türen": "tur", "türflügel": "turflugel", "türfüllung": "turfull", "turin": "turin", "turiner": "turin", "turkelte": "turkelt", "türken": "turk", "türkisch": "turkisch", "türkische": "turkisch", "türkischem": "turkisch", "türkischen": "turkisch", "türkischer": "turkisch", "türklinke": "turklink", "turm": "turm", "turmartigen": "turmart", "türmchen": "turmch", "turme": "turm", "türme": "turm", "türmen": "turm", "turmknöpfe": "turmknopf", "turmstube": "turmstub", "türmte": "turmt", "turmuhr": "turmuhr", "turnübung": "turnub", "türöffner": "turoffn", "türöffners": "turoffn", "türschloss": "turschloss", "türseite": "turseit", "turteltäubchen": "turteltaubch", "turteltauben": "turteltaub", "tuscheln": "tuscheln", "tust": "tust", "tut": "tut", "tvn": "tvn", "typen": "typ", "typik": "typik", "typisches": "typisch", "typus": "typus", "tyrannei": "tyrannei", "tyrannen": "tyrann", "tyrus": "tyrus", "u": "u", "uax": "uax", "üb": "ub", "übel": "ubel", "übelgenommen": "ubelgenomm", "übelgeruch": "ubelgeruch", "übelgerüche": "ubelgeruch", "übelklänge": "ubelklang", "übeln": "ubeln", "übels": "ubel", "übeltäter": "ubeltat", "übeltun": "ubeltun", "übelwollend": "ubelwoll", "übelzunehmen": "ubelzunehm", "üben": "uben", "über": "uber", "uberall": "uberall", "überall": "uberall", "überallhin": "uberallhin", "überaus": "uberaus", "überbelegt": "uberbelegt", "überbieten": "uberbiet", "überbleibsel": "uberbleibsel", "überbleibseln": "uberbleibseln", "überbleibsels": "uberbleibsel", "überblick": "uberblick", "überbot": "uberbot", "überboten": "uberbot", "überbracht": "uberbracht", "überbrachte": "uberbracht", "überbringen": "uberbring", "überbringenden": "uberbring", "überbringer": "uberbring", "überdachte": "uberdacht", "überdachten": "uberdacht", "überdeckt": "uberdeckt", "überdem": "uberd", "überdies": "uberdi", "überdimensionalen": "uberdimensional", "überdruss": "uberdruss", "überdruß": "uberdruss", "überdrusses": "uberdruss", "überdrüssig": "uberdruss", "übereilen": "ubereil", "übereilung": "ubereil", "überein": "uberein", "übereinand": "ubereinand", "übereinander": "ubereinand", "übereinandergestellten": "ubereinandergestellt", "übereinstimmen": "ubereinstimm", "übereinstimmende": "ubereinstimm", "übereinstimmt": "ubereinstimmt", "übereinstimmte": "ubereinstimmt", "übereinstimmung": "ubereinstimm", "übereinstimmungen": "ubereinstimm", "übereinwirkten": "ubereinwirkt", "übereinzustimmen": "ubereinzustimm", "überempfindlich": "uberempfind", "überfahren": "uberfahr", "überfall": "uberfall", "überfalle": "uberfall", "überfallen": "uberfall", "überfein": "uberfein", "überfiel": "uberfiel", "überfliessendes": "uberfliess", "überfließendes": "uberfliess", "überflog": "uberflog", "überfloss": "uberfloss", "überflügeln": "uberflugeln", "überfluss": "uberfluss", "überfluß": "uberfluss", "überflusse": "uberfluss", "überflüssig": "uberfluss", "überflüssige": "uberfluss", "überflüssigkeit": "uberfluss", "überfluten": "uberflut", "überflutenden": "uberflut", "überflutender": "uberflut", "überflutung": "uberflut", "überfordern": "uberford", "überfüllten": "uberfullt", "übergab": "ubergab", "übergang": "ubergang", "übergange": "ubergang", "übergänge": "ubergang", "übergangsdomizil": "ubergangsdomizil", "übergangsphase": "ubergangsphas", "übergeben": "ubergeb", "übergegangen": "ubergegang", "übergehen": "ubergeh", "übergeht": "ubergeht", "übergeleitet": "ubergeleitet", "übergeordneten": "ubergeordnet", "übergepanscht": "ubergepanscht", "übergepflanzt": "ubergepflanzt", "übergeschnappt": "ubergeschnappt", "übergewicht": "ubergewicht", "übergingen": "uberging", "überglücklich": "ubergluck", "übergossen": "ubergoss", "übergossenen": "ubergoss", "übergriffe": "ubergriff", "übergrosse": "ubergross", "übergrünten": "ubergrunt", "überhasten": "uberhast", "überhäuft": "uberhauft", "überhäufte": "uberhauft", "überhaupt": "uberhaupt", "überheben": "uberheb", "überhebung": "uberheb", "überholte": "uberholt", "überholten": "uberholt", "überhöre": "uberhor", "überhören": "uberhor", "überhört": "uberhort", "überhörte": "uberhort", "überhuschten": "uberhuscht", "überkam": "uberkam", "überkamen": "uberkam", "überkollerte": "uberkollert", "überkommen": "uberkomm", "überlagerung": "uberlager", "überlasse": "uberlass", "überlassen": "uberlass", "überlasset": "uberlasset", "überlasst": "uberlasst", "überlässt": "uberlasst", "überläßt": "uberlasst", "überlaufenem": "uberlauf", "überlaufenes": "uberlauf", "überleben": "uberleb", "überlebenstechnischen": "uberlebenstechn", "überlebt": "uberlebt", "überleg": "uberleg", "überlegen": "uberleg", "überlegend": "uberleg", "überlegene": "uberleg", "überlegenheit": "uberleg", "überlegt": "uberlegt", "überlegte": "uberlegt", "überlegten": "uberlegt", "überlegung": "uberleg", "überlegungen": "uberleg", "überlieferungen": "uberliefer", "überliess": "uberliess", "überließ": "uberliess", "überliesse": "uberliess", "überliessen": "uberliess", "überlistet": "uberlistet", "überlud": "uberlud", "überm": "uberm", "übermacht": "ubermacht", "übermächtigen": "ubermacht", "übermannt": "ubermannt", "übermässig": "ubermass", "übermäßig": "ubermass", "übermorgen": "ubermorg", "übermüdet": "ubermudet", "übermüdeten": "ubermudet", "übermut": "ubermut", "übermütig": "ubermut", "übermütige": "ubermut", "übermütigem": "ubermut", "übermütigen": "ubermut", "übermütiger": "ubermut", "übernachten": "ubernacht", "übernahm": "ubernahm", "übernamen": "ubernam", "übernehmen": "ubernehm", "übernimmt": "ubernimmt", "übernommen": "ubernomm", "überparteiliche": "uberpartei", "überprüfe": "uberpruf", "überprüfen": "uberpruf", "überquer": "uberqu", "überquert": "uberquert", "überragte": "uberragt", "überrasche": "uberrasch", "überraschen": "uberrasch", "überraschend": "uberrasch", "überraschenden": "uberrasch", "überraschenderweise": "uberraschenderweis", "überrascht": "uberrascht", "überraschte": "uberrascht", "überraschten": "uberrascht", "überraschung": "uberrasch", "überreden": "uberred", "überredet": "uberredet", "überredung": "uberred", "überredungen": "uberred", "überredungsgiften": "uberredungsgift", "überreichen": "uberreich", "überreicht": "uberreicht", "überreizung": "uberreiz", "überrest": "uberr", "überreste": "uberr", "überresten": "uberr", "überrock": "uberrock", "überrocks": "uberrock", "überrumpeln": "uberrumpeln", "übers": "uber", "übersäete": "ubersaet", "übersandt": "ubersandt", "übersät": "ubersat", "überschattet": "uberschattet", "überschatteten": "uberschattet", "überschätzt": "uberschatzt", "überschauen": "uberschau", "überschauend": "uberschau", "überschaute": "uberschaut", "überschigg": "uberschigg", "überschlagend": "uberschlag", "überschlug": "uberschlug", "überschreiten": "uberschreit", "überschrieben": "uberschrieb", "überschrift": "uberschrift", "überschriften": "uberschrift", "überschritten": "uberschritt", "überschwemmt": "uberschwemmt", "überschwemmung": "uberschwemm", "überschwemmungen": "uberschwemm", "überschwenglich": "uberschweng", "überschwengliche": "uberschweng", "überschwenglichen": "uberschweng", "überschwengliches": "uberschweng", "übersee": "uberse", "übersehbaren": "ubersehbar", "übersehen": "uberseh", "übersehenden": "uberseh", "übersetzen": "ubersetz", "übersetzt": "ubersetzt", "übersetzte": "ubersetzt", "übersetzung": "ubersetz", "übersiedeln": "ubersiedeln", "übersiedelt": "ubersiedelt", "übersiedelte": "ubersiedelt", "übersiedelten": "ubersiedelt", "übersiedlung": "ubersiedl", "übersinnlich": "ubersinn", "übersinnliche": "ubersinn", "übersinnlichen": "ubersinn", "übersinnlicher": "ubersinn", "übersinnliches": "ubersinn", "überspannt": "uberspannt", "übersponnen": "ubersponn", "übersprang": "ubersprang", "überstanden": "uberstand", "überstehen": "ubersteh", "übersteigt": "ubersteigt", "überstieg": "uberstieg", "überstiegen": "uberstieg", "überstrapaziert": "uberstrapaziert", "überstrichen": "uberstrich", "überströmendem": "uberstrom", "überströmender": "uberstrom", "überstürzend": "ubersturz", "übertönen": "uberton", "übertrage": "ubertrag", "übertragen": "ubertrag", "übertragenen": "ubertrag", "übertreibe": "ubertreib", "übertreiben": "ubertreib", "übertreibungen": "ubertreib", "übertreten": "ubertret", "übertretung": "ubertret", "übertretungen": "ubertret", "übertrieb": "ubertrieb", "übertrieben": "ubertrieb", "übertriebener": "ubertrieb", "übertrifft": "ubertrifft", "übertroffen": "ubertroff", "überverdienstlicher": "uberverdienst", "übervölkert": "ubervolkert", "übervorteilen": "ubervorteil", "übervorteilend": "ubervorteil", "überwachen": "uberwach", "überwachsen": "uberwachs", "überwacht": "uberwacht", "überwachte": "uberwacht", "überwachung": "uberwach", "überwältigen": "uberwalt", "überwältigt": "uberwaltigt", "überwand": "uberwand", "überweisen": "uberweis", "überwiegend": "uberwieg", "überwiegender": "uberwieg", "überwiegt": "uberwiegt", "überwies": "uberwi", "überwiesen": "uberwies", "überwinden": "uberwind", "überwinder": "uberwind", "überwindet": "uberwindet", "überwindung": "uberwind", "überwog": "uberwog", "überworfen": "uberworf", "überwuchert": "uberwuchert", "überwucherte": "uberwuchert", "überwunden": "uberwund", "überwundener": "uberwund", "überzeuge": "uberzeug", "überzeugen": "uberzeug", "überzeugend": "uberzeug", "überzeugende": "uberzeug", "überzeugt": "uberzeugt", "überzeugte": "uberzeugt", "überzeugten": "uberzeugt", "überzeugung": "uberzeug", "überzeugungen": "uberzeug", "überzieht": "uberzieht", "überzogen": "uberzog", "überzogenen": "uberzog", "überzuspringen": "uberzuspring", "übet": "ubet", "üble": "ubl", "üblen": "ubl", "übler": "ubl", "übles": "ubl", "üblich": "ublich", "übliche": "ublich", "übrig": "ubrig", "übrigbleiben": "ubrigbleib", "übrigbleibt": "ubrigbleibt", "übrigblieb": "ubrigblieb", "übrigblieben": "ubrigblieb", "übrige": "ubrig", "übrigen": "ubrig", "übrigens": "ubrig", "übriger": "ubrig", "übriges": "ubrig", "übriggeblieben": "ubriggeblieb", "übriggebliebene": "ubriggeblieb", "übriggebliebenen": "ubriggeblieb", "übriggelassen": "ubriggelass", "übriglassen": "ubriglass", "übriglasset": "ubriglasset", "übriglässt": "ubriglasst", "übt": "ubt", "übte": "ubt", "übung": "ubung", "übungen": "ubung", "uchtenhagen": "uchtenhag", "uf": "uf", "ufer": "ufer", "uferloche": "uferloch", "ufern": "ufern", "ufers": "ufer", "uff": "uff", "ufhangen": "ufhang", "ugelassen": "ugelass", "uhr": "uhr", "uhren": "uhr", "uhrenmacher": "uhrenmach", "uhrfeder": "uhrfed", "uhrgehäuse": "uhrgehaus", "uhrkette": "uhrkett", "uhrmacher": "uhrmach", "uhrwerk": "uhrwerk", "ulla": "ulla", "ulm": "ulm", "ulmen": "ulm", "um": "um", "umanandhocken": "umanandhock", "umänderung": "umander", "umarmen": "umarm", "umarmt": "umarmt", "umarmte": "umarmt", "umarmten": "umarmt", "umarmung": "umarm", "umarmungen": "umarm", "umband": "umband", "umbarmherziger": "umbarmherz", "umbildung": "umbild", "umblühet": "umbluhet", "umbringen": "umbring", "umbruchgewinnler": "umbruchgewinnl", "umdrehen": "umdreh", "umdrehte": "umdreht", "umdrehungen": "umdreh", "umeinander": "umeinand", "umfallen": "umfall", "umfang": "umfang", "umfange": "umfang", "umfangen": "umfang", "umfanges": "umfang", "umfassen": "umfass", "umfassender": "umfass", "umfasst": "umfasst", "umfaßt": "umfasst", "umfasste": "umfasst", "umfaßte": "umfasst", "umfassten": "umfasst", "umfeld": "umfeld", "umfing": "umfing", "umfingen": "umfing", "umflochten": "umflocht", "umflossen": "umfloss", "umfuhr": "umfuhr", "umfunkelt": "umfunkelt", "umg": "umg", "umgab": "umgab", "umgäbe": "umgab", "umgaben": "umgab", "umgang": "umgang", "umgange": "umgang", "umgänglich": "umgang", "umgarnt": "umgarnt", "umgeändert": "umgeandert", "umgebe": "umgeb", "umgeben": "umgeb", "umgebenden": "umgeb", "umgebildet": "umgebildet", "umgebracht": "umgebracht", "umgebung": "umgeb", "umgebungen": "umgeb", "umgefallen": "umgefall", "umgefallenen": "umgefall", "umgehängt": "umgehangt", "umgehen": "umgeh", "umgehende": "umgeh", "umgehendes": "umgeh", "umgeht": "umgeht", "umgekehrt": "umgekehrt", "umgekehrte": "umgekehrt", "umgekehrten": "umgekehrt", "umgekehrter": "umgekehrt", "umgekommen": "umgekomm", "umgekommenen": "umgekomm", "umgepflügt": "umgepflugt", "umgeschlagen": "umgeschlag", "umgesehen": "umgeseh", "umgesehn": "umgesehn", "umgespritzt": "umgespritzt", "umgespritzten": "umgespritzt", "umgestülpt": "umgestulpt", "umgestürzten": "umgesturzt", "umgetan": "umgetan", "umgewandelt": "umgewandelt", "umgewandte": "umgewandt", "umgeworfene": "umgeworf", "umgezogen": "umgezog", "umgibt": "umgibt", "umgrenzen": "umgrenz", "umgriffen": "umgriff", "umgsprungen": "umgsprung", "umgürtet": "umgurtet", "umgürtete": "umgurtet", "umhalste": "umhal", "umhalsten": "umhal", "umhang": "umhang", "umhangen": "umhang", "umhegten": "umhegt", "umher": "umh", "umherbieten": "umherbiet", "umherblickt": "umherblickt", "umherfloss": "umherfloss", "umhergehen": "umhergeh", "umhergeworfene": "umhergeworf", "umherging": "umherging", "umherhupfte": "umherhupft", "umherirren": "umherirr", "umherirrenden": "umherirr", "umherlaufen": "umherlauf", "umherlief": "umherlief", "umherrollenden": "umherroll", "umherschweifen": "umherschweif", "umherschweiften": "umherschweift", "umhersprangen": "umhersprang", "umherstreute": "umherstreut", "umhertrat": "umhertrat", "umhertrieb": "umhertrieb", "umherwatschelte": "umherwatschelt", "umherzubieten": "umherzubiet", "umherzublicken": "umherzublick", "umhin": "umhin", "umhing": "umhing", "umkamen": "umkam", "umkehren": "umkehr", "umkehrt": "umkehrt", "umkehrte": "umkehrt", "umkehrung": "umkehr", "umklammert": "umklammert", "umklammerte": "umklammert", "umkleidende": "umkleid", "umkleidete": "umkleidet", "umkleideter": "umkleidet", "umkommen": "umkomm", "umkrallung": "umkrall", "umkreis": "umkreis", "umkreise": "umkreis", "umlagert": "umlagert", "umlagerte": "umlagert", "umlagerung": "umlager", "umlauf": "umlauf", "umlenken": "umlenk", "umliegenden": "umlieg", "umliegender": "umlieg", "ummi": "ummi", "ummifahren": "ummifahr", "ummifahret": "ummifahret", "ummiglacht": "ummiglacht", "ummispring": "ummispring", "umpfiffen": "umpfiff", "umreissen": "umreiss", "umreißen": "umreiss", "umringen": "umring", "umringt": "umringt", "umringten": "umringt", "umrisse": "umriss", "umrührten": "umruhrt", "ums": "ums", "umsahen": "umsah", "umsatz": "umsatz", "umschifft": "umschifft", "umschlag": "umschlag", "umschläge": "umschlag", "umschlägt": "umschlagt", "umschlang": "umschlang", "umschleierte": "umschleiert", "umschliessen": "umschliess", "umschließen": "umschliess", "umschliesst": "umschliesst", "umschliessung": "umschliess", "umschließung": "umschliess", "umschlingen": "umschling", "umschloss": "umschloss", "umschlug": "umschlug", "umschlungen": "umschlung", "umschweben": "umschweb", "umschwebt": "umschwebt", "umschweife": "umschweif", "umschwunges": "umschwung", "umsehen": "umseh", "umsehend": "umseh", "umsetzwohnung": "umsetzwohn", "umsicht": "umsicht", "umsichtige": "umsicht", "umsieht": "umsieht", "umso": "umso", "umsonst": "umson", "umsonstdas": "umsonstdas", "umspannte": "umspannt", "umspielten": "umspielt", "umstand": "umstand", "umstände": "umstand", "umstanden": "umstand", "umständen": "umstand", "umständlich": "umstand", "umständlichen": "umstand", "umstehenden": "umsteh", "umstellung": "umstell", "umstiess": "umstiess", "umstossen": "umstoss", "umstoßen": "umstoss", "umstossend": "umstoss", "umstoßend": "umstoss", "umstösst": "umstosst", "umstößt": "umstosst", "umstrittenen": "umstritt", "umstrittensten": "umstritten", "umsturz": "umsturz", "umtreiben": "umtreib", "umtriebe": "umtrieb", "umtrieben": "umtrieb", "umtun": "umtun", "umundum": "umundum", "umverteilen": "umverteil", "umverteilung": "umverteil", "umverteilungssystem": "umverteilungssyst", "umwanden": "umwand", "umwandlung": "umwandl", "umwarf": "umwarf", "umweg": "umweg", "umwegen": "umweg", "umweltbewegung": "umweltbeweg", "umwerfen": "umwerf", "umwerfend": "umwerf", "umwickelt": "umwickelt", "umwickelte": "umwickelt", "umwogt": "umwogt", "umwunden": "umwund", "umzingelt": "umzingelt", "umzublasen": "umzublas", "umzubringen": "umzubring", "umzuckte": "umzuckt", "umzugehen": "umzugeh", "umzugsfirma": "umzugsfirma", "umzukehren": "umzukehr", "umzusehen": "umzuseh", "umzustossen": "umzustoss", "umzustoßen": "umzustoss", "un": "un", "unabänderlich": "unaband", "unabänderliche": "unaband", "unabhängig": "unabhang", "unabhängige": "unabhang", "unabhängigen": "unabhang", "unabhängiges": "unabhang", "unabhängigkeit": "unabhang", "unablässig": "unablass", "unabsehbare": "unabsehbar", "unabsehbaren": "unabsehbar", "unabsehlich": "unabseh", "unabtrennlich": "unabtrenn", "unähnlich": "unahn", "unähnlichkeit": "unahn", "unam": "unam", "unangebautes": "unangebaut", "unangemeldet": "unangemeldet", "unangenehm": "unangenehm", "unangenehme": "unangenehm", "unangenehmen": "unangenehm", "unangesehen": "unangeseh", "unangetastet": "unangetastet", "unangezündet": "unangezundet", "unannehmlichkeit": "unannehm", "unannehmlichkeiten": "unannehm", "unansehnliche": "unansehn", "unansehnlicher": "unansehn", "unanständig": "unanstand", "unanständiges": "unanstand", "unanständigsten": "unanstand", "unappetitlichen": "unappetit", "unappetitliches": "unappetit", "unart": "unart", "unartig": "unart", "unartikuliertes": "unartikuliert", "unästhetischem": "unasthet", "unaufgedeckte": "unaufgedeckt", "unaufgelösete": "unaufgeloset", "unaufhaltsam": "unaufhaltsam", "unaufhörlich": "unaufhor", "unaufhörliche": "unaufhor", "unaufhörlichen": "unaufhor", "unauflöslich": "unauflos", "unauflösliches": "unauflos", "unaufmerksam": "unaufmerksam", "unaufmerksamkeit": "unaufmerksam", "unausbleiblich": "unausbleib", "unausgefüllt": "unausgefullt", "unausgesprochen": "unausgesproch", "unauslöschlicher": "unauslosch", "unaussprechlich": "unaussprech", "unaussprechliche": "unaussprech", "unaussprechlichen": "unaussprech", "unaussprechlicher": "unaussprech", "unaussprechliches": "unaussprech", "unausstehlich": "unaussteh", "unausstehliche": "unaussteh", "unbändig": "unband", "unbarmherzig": "unbarmherz", "unbarmherziger": "unbarmherz", "unbarmherzigere": "unbarmherz", "unbarmherzigkeit": "unbarmherz", "unbe": "unb", "unbeachtete": "unbeachtet", "unbebautes": "unbebaut", "unbedacht": "unbedacht", "unbedachten": "unbedacht", "unbedenklich": "unbedenk", "unbedeutend": "unbedeut", "unbedeutende": "unbedeut", "unbedeutenden": "unbedeut", "unbedingt": "unbedingt", "unbedingte": "unbedingt", "unbedingten": "unbedingt", "unbedingterweise": "unbedingterweis", "unbefangen": "unbefang", "unbefangene": "unbefang", "unbefangenen": "unbefang", "unbefangenes": "unbefang", "unbefangenheit": "unbefang", "unbegreiflich": "unbegreif", "unbegreifliche": "unbegreif", "unbegreiflichen": "unbegreif", "unbegreiflicher": "unbegreif", "unbegreifliches": "unbegreif", "unbegrenzte": "unbegrenzt", "unbegrenztes": "unbegrenzt", "unbegründet": "unbegrundet", "unbehagen": "unbehag", "unbehaglich": "unbehag", "unbehaglicher": "unbehag", "unbehagliches": "unbehag", "unbeholfen": "unbeholf", "unbekannnten": "unbekannnt", "unbekannt": "unbekannt", "unbekannte": "unbekannt", "unbekannten": "unbekannt", "unbekannter": "unbekannt", "unbekanntes": "unbekannt", "unbekümmert": "unbekummert", "unbelebt": "unbelebt", "unbeliebt": "unbeliebt", "unbemerkt": "unbemerkt", "unbemittelte": "unbemittelt", "unbemittelten": "unbemittelt", "unbenutzt": "unbenutzt", "unbenutzten": "unbenutzt", "unbeobachtet": "unbeobachtet", "unbequem": "unbequ", "unbequemen": "unbequem", "unbequemlichkeit": "unbequem", "unberechenbare": "unberechenbar", "unbeschädigt": "unbeschadigt", "unbeschäftigt": "unbeschaftigt", "unbeschäftigter": "unbeschaftigt", "unbescheidener": "unbescheid", "unbescheidenheit": "unbescheid", "unbeschnitten": "unbeschnitt", "unbeschnittene": "unbeschnitt", "unbeschnittenen": "unbeschnitt", "unbeschnittenes": "unbeschnitt", "unbescholtenheit": "unbescholt", "unbeschränkt": "unbeschrankt", "unbeschränkte": "unbeschrankt", "unbeschreiblich": "unbeschreib", "unbeschreibliche": "unbeschreib", "unbeschreiblicher": "unbeschreib", "unbeschreibliches": "unbeschreib", "unbeschwert": "unbeschwert", "unbeseelt": "unbeseelt", "unbeseeltes": "unbeseelt", "unbesonnenen": "unbesonn", "unbesonnenheit": "unbesonn", "unbestimmbar": "unbestimmbar", "unbestimmt": "unbestimmt", "unbestimmte": "unbestimmt", "unbestimmter": "unbestimmt", "unbeteiligt": "unbeteiligt", "unbewachten": "unbewacht", "unbeweglich": "unbeweg", "unbewohnte": "unbewohnt", "unbewusst": "unbewusst", "unbewusste": "unbewusst", "unbewussten": "unbewusst", "unbezähmbare": "unbezahmbar", "unbezweifeltes": "unbezweifelt", "unbezwinglicher": "unbezwing", "unbiegsam": "unbiegsam", "unbillige": "unbill", "unbrauchbar": "unbrauchbar", "unbrauchbare": "unbrauchbar", "unbrauchbarkeit": "unbrauchbar", "und": "und", "undank": "undank", "undenklichen": "undenk", "undenklicher": "undenk", "undeutlich": "undeut", "unding": "unding", "undurchsichtige": "undurchsicht", "uneben": "uneb", "unebene": "uneb", "unebenheiten": "uneb", "unecht": "unecht", "unechte": "unecht", "unechter": "unecht", "unedel": "unedel", "unedler": "unedl", "unehre": "unehr", "uneigennützig": "uneigennutz", "uneigennützige": "uneigennutz", "uneigennützigen": "uneigennutz", "uneigennützigkeit": "uneigennutz", "uneigennützigste": "uneigennutz", "uneigentlich": "uneigent", "uneingeschränktheit": "uneingeschrankt", "uneinigkeit": "unein", "unempfindlichen": "unempfind", "unendlich": "unend", "unendliche": "unend", "unendlichen": "unend", "unendlichkeit": "unend", "unentbehrlich": "unentbehr", "unentbehrlichen": "unentbehr", "unentbehrliches": "unentbehr", "unentschieden": "unentschied", "unentschlossen": "unentschloss", "unentwegten": "unentwegt", "unerachtet": "unerachtet", "unerbittlich": "unerbitt", "unerbittliche": "unerbitt", "unerbittlicher": "unerbitt", "unerfahren": "unerfahr", "unerfahrene": "unerfahr", "unerfahrener": "unerfahr", "unerfahrenheit": "unerfahr", "unerfindlichen": "unerfind", "unerfindlicher": "unerfind", "unerforschliche": "unerforsch", "unergründliche": "unergrund", "unergründlichkeit": "unergrund", "unerhört": "unerhort", "unerhörte": "unerhort", "unerhörten": "unerhort", "unerhörter": "unerhort", "unerhörtes": "unerhort", "unerklärlichen": "unerklar", "unerklärliches": "unerklar", "unerläßlich": "unerlass", "unerlaubt": "unerlaubt", "unerlaubtes": "unerlaubt", "unermesslich": "unermess", "unermeßlich": "unermess", "unermessliche": "unermess", "unermeßliche": "unermess", "unermüdlich": "unermud", "unermüdlicher": "unermud", "unerreichbar": "unerreichbar", "unerreichbare": "unerreichbar", "unerreichbaren": "unerreichbar", "unersättlich": "unersatt", "unerschöpfliche": "unerschopf", "unerschöpflicher": "unerschopf", "unerschrocken": "unerschrock", "unerschrockene": "unerschrock", "unerschrockenen": "unerschrock", "unerschrockenheit": "unerschrock", "unerschütterlich": "unerschutt", "unerschütterliche": "unerschutt", "unerschüttert": "unerschuttert", "unersteiglicher": "unersteig", "unerträglich": "unertrag", "unerträgliche": "unertrag", "unerwachsenen": "unerwachs", "unerwartet": "unerwartet", "unerwartete": "unerwartet", "unerwarteter": "unerwartet", "unerwarteterweise": "unerwarteterweis", "unerwartetes": "unerwartet", "unfähig": "unfah", "unfähigkeit": "unfah", "unfallopfern": "unfallopf", "unfallverhütung": "unfallverhut", "unfehlbar": "unfehlbar", "unfehlbare": "unfehlbar", "unfehlbares": "unfehlbar", "unfern": "unf", "unflat": "unflat", "unfreiheit": "unfreiheit", "unfreisinn": "unfreisinn", "unfreundlich": "unfreund", "unfreundlichen": "unfreund", "unfreundlichkeit": "unfreund", "unfriede": "unfried", "unfruchtbar": "unfruchtbar", "unfruchtbare": "unfruchtbar", "unfug": "unfug", "ungangbar": "ungangbar", "ungeachtet": "ungeachtet", "ungebahnten": "ungebahnt", "ungebärdig": "ungebard", "ungebildet": "ungebildet", "ungebildeter": "ungebildet", "ungebildetes": "ungebildet", "ungebraucht": "ungebraucht", "ungebrochen": "ungebroch", "ungebrochener": "ungebroch", "ungeduld": "ungeduld", "ungeduldig": "ungeduld", "ungeduldigen": "ungeduld", "ungeduldigeren": "ungeduld", "ungeeignete": "ungeeignet", "ungefahr": "ungefahr", "ungefähr": "ungefahr", "ungefährdet": "ungefahrdet", "ungefälliger": "ungefall", "ungefärbten": "ungefarbt", "ungefügen": "ungefug", "ungefüger": "ungefug", "ungefügigen": "ungefug", "ungefunden": "ungefund", "ungehalten": "ungehalt", "ungeheuer": "ungeheu", "ungeheure": "ungeheur", "ungeheuren": "ungeheur", "ungeheures": "ungeheur", "ungehindert": "ungehindert", "ungehörige": "ungehor", "ungehöriger": "ungehor", "ungehöriges": "ungehor", "ungehorsam": "ungehorsam", "ungeistig": "ungeist", "ungeistigen": "ungeist", "ungekämmten": "ungekammt", "ungelegener": "ungeleg", "ungelegten": "ungelegt", "ungelehrt": "ungelehrt", "ungelenk": "ungelenk", "ungelesen": "ungeles", "ungelinden": "ungelind", "ungemein": "ungemein", "ungemütlich": "ungemut", "ungenossen": "ungenoss", "ungenügende": "ungenug", "ungerächet": "ungerachet", "ungerechnet": "ungerechnet", "ungerecht": "ungerecht", "ungerechte": "ungerecht", "ungerechten": "ungerecht", "ungerechterweise": "ungerechterweis", "ungerechtes": "ungerecht", "ungerechtigkeit": "ungerecht", "ungerechtigkeiten": "ungerecht", "ungereimt": "ungereimt", "ungern": "ung", "ungesäuerten": "ungesauert", "ungesäumt": "ungesaumt", "ungeschehen": "ungescheh", "ungeschicklichkeit": "ungeschick", "ungeschickt": "ungeschickt", "ungeschickte": "ungeschickt", "ungeschickten": "ungeschickt", "ungeschickterweise": "ungeschickterweis", "ungeschicktes": "ungeschickt", "ungeschoren": "ungeschor", "ungeschorene": "ungeschor", "ungesehen": "ungeseh", "ungesehene": "ungeseh", "ungesetzliche": "ungesetz", "ungestört": "ungestort", "ungestörter": "ungestort", "ungestörtheit": "ungestort", "ungestraften": "ungestraft", "ungestüm": "ungestum", "ungestüme": "ungestum", "ungestümes": "ungestum", "ungesungenen": "unges", "ungeteilt": "ungeteilt", "ungetrübte": "ungetrubt", "ungetüm": "ungetum", "ungeübten": "ungeubt", "ungewiss": "ungewiss", "ungewiß": "ungewiss", "ungewisser": "ungewiss", "ungewissheit": "ungewiss", "ungewöhnlich": "ungewohn", "ungewöhnliche": "ungewohn", "ungewöhnlichem": "ungewohn", "ungewöhnlichen": "ungewohn", "ungewöhnliches": "ungewohn", "ungewohnt": "ungewohnt", "ungewohnte": "ungewohnt", "ungewohnten": "ungewohnt", "ungezählten": "ungezahlt", "ungeziefer": "ungezief", "ungeziefers": "ungezief", "ungezweifelt": "ungezweifelt", "ungezweifelten": "ungezweifelt", "unglaube": "unglaub", "unglauben": "unglaub", "unglaubens": "unglaub", "ungläubig": "unglaub", "unglaublich": "unglaub", "unglaubliche": "unglaub", "unglaublichen": "unglaub", "unglaubliches": "unglaub", "unglaubwürdige": "unglaubwurd", "ungleich": "ungleich", "ungleichartig": "ungleichart", "ungleichartigen": "ungleichart", "ungleichartiger": "ungleichart", "ungleichartigkeit": "ungleichart", "ungleiche": "ungleich", "ungleichen": "ungleich", "ungleichheit": "ungleich", "unglück": "ungluck", "unglückes": "ungluck", "unglücklich": "ungluck", "unglückliche": "ungluck", "unglücklichen": "ungluck", "unglücklicher": "ungluck", "unglücklicherweise": "unglucklicherweis", "unglücks": "ungluck", "unglückseligen": "unglucksel", "unglücksfällen": "unglucksfall", "unglücksfelde": "unglucksfeld", "unglücksstätte": "unglucksstatt", "ungünstig": "ungunst", "ungünstigen": "ungunst", "ungut": "ungut", "unguten": "ungut", "ungwohnte": "ungwohnt", "unheil": "unheil", "unheilbar": "unheilbar", "unheilig": "unheil", "unheilige": "unheil", "unheiligem": "unheil", "unheiligen": "unheil", "unheiliges": "unheil", "unheilvolle": "unheilvoll", "unheimlich": "unheim", "unheimliche": "unheim", "unheimlichen": "unheim", "unheimliches": "unheim", "unheimlichsten": "unheim", "unhöflich": "unhof", "unhöflichen": "unhof", "unhöfliches": "unhof", "unhöflichkeit": "unhof", "unhold": "unhold", "unholdes": "unhold", "unhörbar": "unhorbar", "unifomierter": "unifomiert", "uniform": "uniform", "uniformen": "uniform", "uniformierten": "uniformiert", "uninteressiert": "uninteressiert", "union": "union", "uniondie": "uniondi", "universalis": "universalis", "universaliter": "universalit", "universalsprache": "universalsprach", "universelle": "universell", "universellen": "universell", "universeller": "universell", "universelles": "universell", "universität": "universitat", "universum": "universum", "unjewöhnliche": "unjewohn", "unken": "unk", "unkenntnis": "unkenntnis", "unkindlichkeit": "unkind", "unklar": "unklar", "unklug": "unklug", "unkluge": "unklug", "unkonventionell": "unkonventionell", "unkonventionellen": "unkonventionell", "unkosten": "unkost", "unkraut": "unkraut", "unkräutern": "unkraut", "unkriegerisches": "unkrieger", "unkultivierte": "unkultiviert", "unkunde": "unkund", "unlauterkeit": "unlauter", "unleugbar": "unleugbar", "unleugbare": "unleugbar", "unliebenswürdigen": "unliebenswurd", "unliebliche": "unlieb", "unliebsamen": "unliebsam", "unlust": "unlust", "unlustigen": "unlust", "unmännlich": "unmann", "unmässig": "unmass", "unmässige": "unmass", "unmenschen": "unmensch", "unmenschlich": "unmensch", "unmenschliche": "unmensch", "unmenschlichste": "unmensch", "unmerklich": "unmerk", "unmittelbar": "unmittelbar", "unmittelbare": "unmittelbar", "unmittelbaren": "unmittelbar", "unmittelbarer": "unmittelbar", "unmittelbares": "unmittelbar", "unmittelbarste": "unmittelbarst", "unmöglich": "unmog", "unmögliche": "unmog", "unmöglicher": "unmog", "unmögliches": "unmog", "unmöglichkeit": "unmog", "unmut": "unmut", "unmutig": "unmut", "unmutigen": "unmut", "unmutiges": "unmut", "unnachahmlich": "unnachahm", "unnachlasslich": "unnachlass", "unnachlasslichen": "unnachlass", "unnachsichtlich": "unnachsicht", "unnachsichtlichen": "unnachsicht", "unnahbar": "unnahbar", "unnatürlich": "unnatur", "unnötig": "unnot", "unnötige": "unnot", "unnötigerweise": "unnotigerweis", "unnütz": "unnutz", "unnütze": "unnutz", "unnützen": "unnutz", "unnützes": "unnutz", "unordentlich": "unordent", "unordentliche": "unordent", "unordnung": "unordn", "unorthodoxe": "unorthodox", "unparteiischen": "unpartei", "unparteiischer": "unpartei", "unparteilichkeit": "unpartei", "unrasiert": "unrasiert", "unrecht": "unrecht", "unrechte": "unrecht", "unrechten": "unrecht", "unrechtes": "unrecht", "unrechtleider": "unrechtleid", "unrechtliche": "unrecht", "unrechtliches": "unrecht", "unrechtmässig": "unrechtmass", "unrechtmässige": "unrechtmass", "unrechts": "unrecht", "unredliche": "unred", "unredlichen": "unred", "unredlichkeit": "unred", "unregelmässigkeit": "unregelmass", "unregelmässigkeiten": "unregelmass", "unreif": "unreif", "unreifen": "unreif", "unrein": "unrein", "unreine": "unrein", "unreinem": "unrein", "unreinen": "unrein", "unreiner": "unrein", "unreines": "unrein", "unreinigkeit": "unrein", "unrichtig": "unricht", "unruh": "unruh", "unruhe": "unruh", "unruhig": "unruh", "unruhige": "unruh", "unruhigen": "unruh", "uns": "uns", "unsäglich": "unsag", "unsägliche": "unsag", "unsäglicher": "unsag", "unsaubere": "unsaub", "unsauberen": "unsaub", "unsauberer": "unsaub", "unsauberes": "unsaub", "unsauberkeiten": "unsauber", "unsaubern": "unsaub", "unschädlich": "unschad", "unschädlichen": "unschad", "unscheinbare": "unscheinbar", "unscheinbaren": "unscheinbar", "unscheinbares": "unscheinbar", "unscheinbarste": "unscheinbarst", "unschicklich": "unschick", "unschicklichkeiten": "unschick", "unschlüssig": "unschluss", "unschön": "unschon", "unschöne": "unschon", "unschönen": "unschon", "unschuld": "unschuld", "unschuldig": "unschuld", "unschuldige": "unschuld", "unschuldigen": "unschuld", "unschuldiger": "unschuld", "unschuldigeren": "unschuld", "unschuldiges": "unschuld", "unselige": "unsel", "unseligkeit": "unsel", "unser": "uns", "unsere": "uns", "unsereinen": "unserein", "unsereiner": "unserein", "unserem": "uns", "unseren": "uns", "unserer": "uns", "unseres": "uns", "unseresgleichen": "unseresgleich", "unserm": "unserm", "unsern": "uns", "unsers": "uns", "unsicher": "unsich", "unsicherer": "unsich", "unsicherheit": "unsich", "unsichern": "unsich", "unsichtbar": "unsichtbar", "unsichtbaren": "unsichtbar", "unsichtbarer": "unsichtbar", "unsinn": "unsinn", "unsinnig": "unsinn", "unsinnige": "unsinn", "unsinnigen": "unsinn", "unsinniger": "unsinn", "unsinniges": "unsinn", "unsinnigkeit": "unsinn", "unsinnigkeiten": "unsinn", "unsinnigsten": "unsinn", "unsittlich": "unsitt", "unsittliche": "unsitt", "unsittlicher": "unsitt", "unsittlichkeit": "unsitt", "unsre": "unsr", "unsrer": "unsr", "unsres": "unsr", "unsrige": "unsrig", "unstäte": "unstat", "unsterblich": "unsterb", "unsterbliche": "unsterb", "unsterblichkeit": "unsterb", "unstern": "unst", "unsterns": "unstern", "unstet": "unstet", "unstetes": "unstet", "unsträflich": "unstraf", "unstreitig": "unstreit", "unsympathisch": "unsympath", "untat": "untat", "untätig": "untat", "untauglich": "untaug", "untaugliche": "untaug", "unteilbar": "unteilbar", "unteilbare": "unteilbar", "unteilbares": "unteilbar", "unten": "unt", "unter": "unt", "unterabteilung": "unterabteil", "unterarten": "unterart", "unterbezahlt": "unterbezahlt", "unterbrach": "unterbrach", "unterbrachen": "unterbrach", "unterbreche": "unterbrech", "unterbrechend": "unterbrech", "unterbreiten": "unterbreit", "unterbringen": "unterbring", "unterbrochen": "unterbroch", "unterbrochenen": "unterbroch", "unterdessen": "unterdess", "unterdrücken": "unterdruck", "unterdrückend": "unterdruck", "unterdrückt": "unterdruckt", "unterdrückte": "unterdruckt", "unterdrückten": "unterdruckt", "unterdrückter": "unterdruckt", "unterdrücktes": "unterdruckt", "unterdrückung": "unterdruck", "unterdrückungen": "unterdruck", "untere": "unt", "untereinander": "untereinand", "unterem": "unt", "unteren": "unt", "unteres": "unt", "unterfand": "unterfand", "unterfangen": "unterfang", "untergang": "untergang", "untergange": "untergang", "unterganges": "untergang", "untergangs": "untergang", "untergebene": "untergeb", "untergebenen": "untergeb", "untergebenheit": "untergeb", "untergebracht": "untergebracht", "untergegangen": "untergegang", "untergehen": "untergeh", "untergehende": "untergeh", "untergeht": "untergeht", "untergekommen": "untergekomm", "untergelegt": "untergelegt", "untergeordnet": "untergeordnet", "untergeordnete": "untergeordnet", "untergeordneten": "untergeordnet", "untergeordneter": "untergeordnet", "untergeordnetere": "untergeordnet", "untergeschoben": "untergeschob", "unterging": "unterging", "unterginge": "unterging", "untergingen": "unterging", "unterhalb": "unterhalb", "unterhält": "unterhalt", "unterhalten": "unterhalt", "unterhaltung": "unterhalt", "unterhaltungen": "unterhalt", "unterhaltungsabteilung": "unterhaltungsabteil", "unterhaltungsminute": "unterhaltungsminut", "unterhaltungsspieles": "unterhaltungsspiel", "unterhändlern": "unterhandl", "unterhandlungen": "unterhandl", "unterhielt": "unterhielt", "unterhielten": "unterhielt", "unterichtsstunden": "unterichtsstund", "unterjochen": "unterjoch", "unterjocht": "unterjocht", "unterjochung": "unterjoch", "unterjochungsbestreben": "unterjochungsbestreb", "unterkiefer": "unterkief", "unterköchen": "unterkoch", "unterkommen": "unterkomm", "unterkommst": "unterkomm", "unterlage": "unterlag", "unterlagen": "unterlag", "unterlass": "unterlass", "unterlaß": "unterlass", "unterlassen": "unterlass", "unterlassest": "unterlass", "unterlaufen": "unterlauf", "unterlegen": "unterleg", "unterlegt": "unterlegt", "unterlegten": "unterlegt", "unterlehrer": "unterlehr", "unterliege": "unterlieg", "unterliegen": "unterlieg", "unterliegt": "unterliegt", "unterliessen": "unterliess", "unterlippe": "unterlipp", "unterm": "unterm", "unterminierte": "unterminiert", "unternahm": "unternahm", "unternähme": "unternahm", "unternahmen": "unternahm", "unternehmen": "unternehm", "unternehmend": "unternehm", "unternehmender": "unternehm", "unternehmer": "unternehm", "unternehmung": "unternehm", "unternehmungen": "unternehm", "unternehmungsgeist": "unternehmungsgeist", "unternehmungslust": "unternehmungslust", "unternehmungslustigen": "unternehmungslust", "unternommen": "unternomm", "unteroffizier": "unteroffizi", "unteroffizieren": "unteroffizi", "unteroffiziers": "unteroffizi", "unterordnung": "unterordn", "unterpfand": "unterpfand", "unterredung": "unterred", "unterricht": "unterricht", "unterrichten": "unterricht", "unterrichtet": "unterrichtet", "unterröcke": "unterrock", "untersatze": "untersatz", "untersberges": "untersberg", "unterscheiden": "unterscheid", "unterscheidend": "unterscheid", "unterscheidet": "unterscheidet", "unterscheidung": "unterscheid", "unterscheidungsgrund": "unterscheidungsgrund", "unterscheidungszeichen": "unterscheidungszeich", "unterschiebt": "unterschiebt", "unterschied": "unterschied", "unterschiede": "unterschied", "unterschieden": "unterschied", "unterschiedene": "unterschied", "unterschiedenem": "unterschied", "unterschiedenen": "unterschied", "unterschiedenes": "unterschied", "unterschiedes": "unterschied", "unterschiedlichdie": "unterschiedlichdi", "unterschiedliche": "unterschied", "unterschiedlicher": "unterschied", "unterschiedlichkeiten": "unterschied", "unterschleif": "unterschleif", "unterschleife": "unterschleif", "unterschreiben": "unterschreib", "unterschrift": "unterschrift", "unterst": "unterst", "unterstand": "unterstand", "unterste": "unterst", "unterstein": "unterstein", "unterstellen": "unterstell", "unterstellt": "unterstellt", "untersten": "unterst", "unterstes": "unterst", "unterstützen": "unterstutz", "unterstützt": "unterstutzt", "unterstützte": "unterstutzt", "unterstützung": "unterstutz", "untersuchen": "untersuch", "untersuchend": "untersuch", "untersucht": "untersucht", "untersuchte": "untersucht", "untersuchten": "untersucht", "untersuchung": "untersuch", "untersuchungen": "untersuch", "untersuchungsansätzen": "untersuchungsansatz", "untersuchungskommission": "untersuchungskommission", "untersuchungsraum": "untersuchungsraum", "untersuchungsrichter": "untersuchungsricht", "untersuchungsrichtern": "untersuchungsricht", "untersuchungsrichters": "untersuchungsricht", "untersuchungstag": "untersuchungstag", "untersuchungszimmer": "untersuchungszimm", "untersuchungszimmers": "untersuchungszimm", "untertan": "untertan", "untertanen": "untertan", "untertänigkeit": "untertan", "untertaucht": "untertaucht", "untertrat": "untertrat", "untertreten": "untertret", "unterwarf": "unterwarf", "unterwarfen": "unterwarf", "unterweges": "unterweg", "unterwegs": "unterweg", "unterweisen": "unterweis", "unterweisend": "unterweis", "unterweisung": "unterweis", "unterwelt": "unterwelt", "unterwerfen": "unterwerf", "unterwerfung": "unterwerf", "unterwies": "unterwi", "unterwiesen": "unterwies", "unterworfen": "unterworf", "unterwürfigkeit": "unterwurf", "unterzeichnet": "unterzeichnet", "unterzeichnete": "unterzeichnet", "unterziehe": "unterzieh", "unterziehen": "unterzieh", "unterzog": "unterzog", "unterzogen": "unterzog", "unterzubringen": "unterzubring", "unterzukommen": "unterzukomm", "untiefe": "untief", "untier": "unti", "untrennbar": "untrennbar", "untreu": "untreu", "untreue": "untreu", "untreuen": "untreu", "untröstlich": "untrost", "unübertrefflich": "unubertreff", "unüberwindliche": "unuberwind", "unum": "unum", "unumgänglich": "unumgang", "ununterbrochen": "ununterbroch", "ununterbrochene": "ununterbroch", "ununterbrochener": "ununterbroch", "unverabredet": "unverabredet", "unveränderlich": "unverand", "unveränderliche": "unverand", "unveränderlichem": "unverand", "unveränderlichen": "unverand", "unverändert": "unverandert", "unverbrüchlichen": "unverbruch", "unverdächtige": "unverdacht", "unverdaulichkeit": "unverdau", "unverdorbener": "unverdorb", "unverdrossen": "unverdross", "unvereinbar": "unvereinbar", "unverfänglich": "unverfang", "unvergleichlich": "unvergleich", "unvergoldete": "unvergoldet", "unverhehlt": "unverhehlt", "unverhehlter": "unverhehlt", "unverheiratet": "unverheiratet", "unverhofft": "unverhofft", "unverhoffte": "unverhofft", "unverhoffter": "unverhofft", "unverhofftes": "unverhofft", "unverkennbar": "unverkennbar", "unverletzlich": "unverletz", "unverletzliche": "unverletz", "unverletzliches": "unverletz", "unverletzlichkeit": "unverletz", "unvermeidlich": "unvermeid", "unvermeidliche": "unvermeid", "unvermeidlichen": "unvermeid", "unvermeidlicher": "unvermeid", "unvermengt": "unvermengt", "unvermerkt": "unvermerkt", "unvermögend": "unvermog", "unvermögens": "unvermog", "unvermutet": "unvermutet", "unvernünftig": "unvernunft", "unvernünftige": "unvernunft", "unvernünftigen": "unvernunft", "unvernünftiger": "unvernunft", "unverputzte": "unverputzt", "unverrückbaren": "unverruckbar", "unverschämt": "unverschamt", "unverschämte": "unverschamt", "unverschämtheit": "unverschamt", "unverschlossen": "unverschloss", "unversehens": "unverseh", "unversehrt": "unversehrt", "unversehrter": "unversehrt", "unversiegbare": "unversiegbar", "unversöhnlich": "unversohn", "unversöhnlicher": "unversohn", "unverstande": "unverstand", "unverständigen": "unverstand", "unverständlich": "unverstand", "unverständliche": "unverstand", "unverständlichen": "unverstand", "unvertilgbaren": "unvertilgbar", "unverwahrt": "unverwahrt", "unverwandt": "unverwandt", "unverweilt": "unverweilt", "unverwüstliche": "unverwust", "unverwüstlichen": "unverwust", "unverzagt": "unverzagt", "unverzeihliches": "unverzeih", "unverzeihlichsten": "unverzeih", "unverzichtbar": "unverzichtbar", "unverzichtbare": "unverzichtbar", "unverzüglich": "unverzug", "unvollkommene": "unvollkomm", "unvollkommenen": "unvollkomm", "unvordenklichen": "unvordenk", "unvorhergesehene": "unvorhergeseh", "unvorsichtig": "unvorsicht", "unvorsichtigkeit": "unvorsicht", "unwahr": "unwahr", "unwahrscheinlich": "unwahrschein", "unwahrscheinliche": "unwahrschein", "unwahrscheinlichen": "unwahrschein", "unwandelbar": "unwandelbar", "unwandelbaren": "unwandelbar", "unwandelbarkeit": "unwandelbar", "unweidmännischen": "unweidmann", "unweise": "unweis", "unweiser": "unweis", "unweit": "unweit", "unwert": "unwert", "unwerter": "unwert", "unwesen": "unwes", "unwetter": "unwett", "unwichtig": "unwicht", "unwichtigen": "unwicht", "unwiderleglich": "unwiderleg", "unwiderruflich": "unwiderruf", "unwiderrufliches": "unwiderruf", "unwidersprechlich": "unwidersprech", "unwiderstehlich": "unwidersteh", "unwiderstehliche": "unwidersteh", "unwiderstehlichen": "unwidersteh", "unwiederbringlicher": "unwiederbring", "unwillen": "unwill", "unwillig": "unwill", "unwillkommen": "unwillkomm", "unwillkürlich": "unwillkur", "unwillkürliche": "unwillkur", "unwirksam": "unwirksam", "unwirsch": "unwirsch", "unwissend": "unwiss", "unwissende": "unwiss", "unwissenden": "unwiss", "unwissenheit": "unwiss", "unwohl": "unwohl", "unwohlsein": "unwohlsein", "unwohnlichen": "unwohn", "unwort": "unwort", "unwürdig": "unwurd", "unwürdige": "unwurd", "unwürdigen": "unwurd", "unwürdiger": "unwurd", "unzählig": "unzahl", "unzählige": "unzahl", "unzähligem": "unzahl", "unzähligemal": "unzahligemal", "unzähligen": "unzahl", "unzähliger": "unzahl", "unzähligere": "unzahl", "unzähliges": "unzahl", "unzeit": "unzeit", "unzersplittertes": "unzersplittert", "unzertrennlich": "unzertrenn", "unzertrennliche": "unzertrenn", "unziemlich": "unziem", "unziemliche": "unziem", "unziemliches": "unziem", "unziemlichsten": "unziem", "unzucht": "unzucht", "unzufrieden": "unzufried", "unzufriedenheit": "unzufried", "unzugänglich": "unzugang", "unzugängliche": "unzugang", "unzukömmlichkeit": "unzukomm", "unzukömmlichkeiten": "unzukomm", "unzulänglichkeit": "unzulang", "unzulässig": "unzulass", "unzureichend": "unzureich", "unzusammenhängend": "unzusammenhang", "unzusammenhängendes": "unzusammenhang", "unzweckmässigkeit": "unzweckmass", "unzweifelhaft": "unzweifelhaft", "unzweifelhafte": "unzweifelhaft", "unzweifelhafteste": "unzweifelhaft", "uphas": "uphas", "üppig": "uppig", "üppige": "uppig", "üppigen": "uppig", "ur": "ur", "urahn": "urahn", "uralte": "uralt", "uralten": "uralt", "uralter": "uralt", "urbeginn": "urbeginn", "urbild": "urbild", "urbilder": "urbild", "urbildliche": "urbild", "urenkel": "urenkel", "urfeld": "urfeld", "urfelder": "urfeld", "urgrossvater": "urgrossvat", "urgroßvater": "urgrossvat", "urgrossvaters": "urgrossvat", "urgroßvaters": "urgrossvat", "urgrunde": "urgrund", "urgrundes": "urgrund", "urheber": "urheb", "urhebers": "urheb", "urkirche": "urkirch", "urlaub": "urlaub", "urmensch": "urmensch", "urmenschen": "urmensch", "urne": "urn", "urplötzlich": "urplotz", "ursache": "ursach", "ursachen": "ursach", "ursächlich": "ursach", "ursächlichen": "ursach", "ursprung": "ursprung", "ursprunge": "ursprung", "ursprunges": "ursprung", "ursprünglich": "ursprung", "ursprüngliche": "ursprung", "ursprünglichen": "ursprung", "ursprüngliches": "ursprung", "ursprungs": "ursprung", "ursprungsort": "ursprungsort", "urteil": "urteil", "urteile": "urteil", "urteilen": "urteil", "urteilenden": "urteil", "urteils": "urteil", "urteilskraft": "urteilskraft", "urteilt": "urteilt", "ururgrosspapa": "ururgrosspapa", "ururgrossvater": "ururgrossvat", "ururgroßvater": "ururgrossvat", "urvater": "urvat", "urväter": "urvat", "urwald": "urwald", "urwesen": "urwes", "urwesens": "urwes", "urzeit": "urzeit", "usa": "usa", "usf": "usf", "ussiel": "ussiel", "ussiels": "ussiel", "usurpator": "usurpator", "usw": "usw", "utopien": "utopi", "uxor": "uxor", "uxores": "uxor", "v": "v", "vagantur": "vagantur", "vagari": "vagari", "vagus": "vagus", "vakant": "vakant", "vallotton": "vallotton", "vamp": "vamp", "van": "van", "varia": "varia", "variationen": "variation", "vasallentreue": "vasallentreu", "vaschwör": "vaschwor", "vastatio": "vastatio", "vastationes": "vastation", "vater": "vat", "väter": "vat", "vaterhaus": "vaterhaus", "vaterhause": "vaterhaus", "vaterhäusern": "vaterhaus", "vaterland": "vaterland", "vaterlande": "vaterland", "vaterlandes": "vaterland", "väterliche": "vat", "väterlichen": "vat", "väterliches": "vat", "vatermörder": "vatermord", "vätern": "vat", "vaters": "vat", "vaterunser": "vateruns", "vatet": "vatet", "vatikan": "vatikan", "vaudevilletheatern": "vaudevilletheat", "veb": "veb", "vehikel": "vehikel", "veigerl": "veigerl", "veilchen": "veilch", "veilchenblaue": "veilchenblau", "veilchenburg": "veilchenburg", "veilchenkoppe": "veilchenkopp", "veilchenzeit": "veilchenzeit", "veit": "veit", "vemünftiger": "vemunft", "ven": "ven", "venedig": "vened", "venezianischen": "venezian", "ver": "ver", "vera": "vera", "verab": "verab", "verabredet": "verabredet", "verabredeten": "verabredet", "verabredung": "verabred", "verabreichten": "verabreicht", "verabscheuen": "verabscheu", "verabscheuungsvermögens": "verabscheuungsvermog", "verabschiedet": "verabschiedet", "verabschiedete": "verabschiedet", "verabschiedeten": "verabschiedet", "verachte": "veracht", "verachten": "veracht", "verachtet": "verachtet", "verachtete": "verachtet", "verachteten": "verachtet", "verächtlich": "veracht", "verächtlichen": "veracht", "verachtung": "veracht", "verähnlicht": "verahnlicht", "verähnlichten": "verahnlicht", "veraltet": "veraltet", "verändere": "verand", "veränderlichkeit": "verander", "verändern": "verand", "verändert": "verandert", "veränderte": "verandert", "veränderten": "verandert", "verändertes": "verandert", "veränderung": "verander", "veränderungen": "verander", "veränderungsleistung": "veranderungsleist", "verängstigt": "verangstigt", "veranlassen": "veranlass", "veranlasst": "veranlasst", "veranlaßt": "veranlasst", "veranlasste": "veranlasst", "veranlasster": "veranlasst", "veranlassung": "veranlass", "veranschaulichung": "veranschaulich", "veranstalten": "veranstalt", "veranstaltet": "veranstaltet", "veranstaltete": "veranstaltet", "veranstalteten": "veranstaltet", "veranstaltung": "veranstalt", "veranstaltungen": "veranstalt", "verantworten": "verantwort", "verantwortete": "verantwortet", "verantwortlich": "verantwort", "verantwortlichen": "verantwort", "verantwortung": "verantwort", "verarbeitet": "verarbeitet", "verarmten": "verarmt", "verarmung": "verarm", "verbal": "verbal", "verbale": "verbal", "verband": "verband", "verbanden": "verband", "verbandes": "verband", "verbannt": "verbannt", "verbannung": "verbann", "verbarg": "verbarg", "verbargen": "verbarg", "verbat": "verbat", "verbereitung": "verbereit", "verbergen": "verberg", "verberget": "verberget", "verbesserlichkeit": "verbesser", "verbessern": "verbess", "verbesserte": "verbessert", "verbesserungen": "verbesser", "verbesserungsbedürftigkeit": "verbesserungsbedurft", "verbesserungsvorschläge": "verbesserungsvorschlag", "verbeugend": "verbeug", "verbeugte": "verbeugt", "verbeugten": "verbeugt", "verbeugung": "verbeug", "verbeugungen": "verbeug", "verbeulten": "verbeult", "verbiegt": "verbiegt", "verbiete": "verbiet", "verbieten": "verbiet", "verbinde": "verbind", "verbinden": "verbind", "verbindet": "verbindet", "verbindlichkeit": "verbind", "verbindlichkeiten": "verbind", "verbindung": "verbind", "verbindungen": "verbind", "verbindungsmittel": "verbindungsmittel", "verbirg": "verbirg", "verbirgst": "verbirg", "verbirgt": "verbirgt", "verbis": "verbis", "verbissen": "verbiss", "verbissenheit": "verbiss", "verbittert": "verbittert", "verbitterte": "verbittert", "verbitterten": "verbittert", "verbittertwerden": "verbittertwerd", "verbleib": "verbleib", "verbleibe": "verbleib", "verbleiben": "verbleib", "verbleibt": "verbleibt", "verblenden": "verblend", "verblendet": "verblendet", "verblendeten": "verblendet", "verblendung": "verblend", "verblichen": "verblich", "verblichenen": "verblich", "verbliebe": "verblieb", "verblieben": "verblieb", "verbliebenen": "verblieb", "verblüffen": "verbluff", "verblüfft": "verblufft", "verblüfften": "verblufft", "verblüfftesten": "verblufft", "verblüffung": "verbluff", "verblüht": "verbluht", "verblümt": "verblumt", "verblümtes": "verblumt", "verborgen": "verborg", "verborgene": "verborg", "verborgenen": "verborg", "verborgener": "verborg", "verborgenes": "verborg", "verborgenheit": "verborg", "verborgenheiten": "verborg", "verborgenwerden": "verborgenwerd", "verbot": "verbot", "verboten": "verbot", "verbracht": "verbracht", "verbrachte": "verbracht", "verbrachtem": "verbracht", "verbrachten": "verbracht", "verbrämt": "verbramt", "verbrannt": "verbrannt", "verbrannte": "verbrannt", "verbrannten": "verbrannt", "verbraucht": "verbraucht", "verbrechen": "verbrech", "verbrecherischen": "verbrecher", "verbreiten": "verbreit", "verbreitet": "verbreitet", "verbreitete": "verbreitet", "verbrennen": "verbrenn", "verbrennt": "verbrennt", "verbrennung": "verbrenn", "verbringe": "verbring", "verbringen": "verbring", "verbringt": "verbringt", "verbrüderung": "verbruder", "verbrühen": "verbruh", "verbuhltes": "verbuhlt", "verbum": "verbum", "verbunden": "verbund", "verbundene": "verbund", "verbundenen": "verbund", "verbundenes": "verbund", "verdacht": "verdacht", "verdachte": "verdacht", "verdächtig": "verdacht", "verdächtiges": "verdacht", "verdächtigt": "verdachtigt", "verdamme": "verdamm", "verdammen": "verdamm", "verdammlich": "verdamm", "verdammnis": "verdammnis", "verdammt": "verdammt", "verdammte": "verdammt", "verdammtem": "verdammt", "verdammten": "verdammt", "verdammungen": "verdamm", "verdampften": "verdampft", "verdanke": "verdank", "verdanken": "verdank", "verdankt": "verdankt", "verdarb": "verdarb", "verdarben": "verdarb", "verdauen": "verdau", "verdeckt": "verdeckt", "verdeckte": "verdeckt", "verdenken": "verdenk", "verderbe": "verderb", "verderben": "verderb", "verderbende": "verderb", "verderbenden": "verderb", "verderber": "verderb", "verderblich": "verderb", "verderbliche": "verderb", "verderblichen": "verderb", "verderbnis": "verderbnis", "verderbt": "verderbt", "verderbtheit": "verderbt", "verdichtet": "verdichtet", "verdienen": "verdi", "verdienst": "verdien", "verdienste": "verdien", "verdienstlich": "verdienst", "verdienstlichen": "verdienst", "verdienstlicher": "verdienst", "verdient": "verdient", "verdiente": "verdient", "verdientermassen": "verdientermass", "verdientermaßen": "verdientermass", "verdingen": "verding", "verdirbt": "verdirbt", "verdoppelt": "verdoppelt", "verdoppeltem": "verdoppelt", "verdoppelten": "verdoppelt", "verdorben": "verdorb", "verdorbene": "verdorb", "verdorbenen": "verdorb", "verdorbenerweise": "verdorbenerweis", "verdorren": "verdorr", "verdorrt": "verdorrt", "verdorrte": "verdorrt", "verdorrter": "verdorrt", "verdrängen": "verdrang", "verdrängt": "verdrangt", "verdrehen": "verdreh", "verdrehend": "verdreh", "verdreht": "verdreht", "verdrehte": "verdreht", "verdrehten": "verdreht", "verdrehter": "verdreht", "verdrehtheit": "verdreht", "verdreifachen": "verdreifach", "verdriesslich": "verdriess", "verdrießlich": "verdriess", "verdrossen": "verdross", "verdruss": "verdruss", "verdruß": "verdruss", "verdunkeln": "verdunkeln", "verdunkelt": "verdunkelt", "verdunkelte": "verdunkelt", "verdunkelten": "verdunkelt", "verdunkelung": "verdunkel", "verdunklung": "verdunkl", "verdursten": "verdurst", "verdutzt": "verdutzt", "verdutzte": "verdutzt", "verdutztes": "verdutzt", "veredelt": "veredelt", "verehelichen": "verehe", "verehelicht": "verehelicht", "verehren": "verehr", "verehrer": "verehr", "verehrt": "verehrt", "verehrte": "verehrt", "verehrten": "verehrt", "verehrung": "verehr", "verehrungswürdig": "verehrungswurd", "verein": "verein", "vereinbarung": "vereinbar", "vereine": "verein", "vereinicht": "vereinicht", "vereinigen": "verein", "vereinigende": "verein", "vereinigt": "vereinigt", "vereinigte": "vereinigt", "vereinigung": "verein", "vereins": "verein", "vereinsversammlung": "vereinsversamml", "vereint": "vereint", "vereinte": "vereint", "vereinten": "vereint", "vereinzelte": "vereinzelt", "vereinzelten": "vereinzelt", "vereinzeltes": "vereinzelt", "vereiteln": "vereiteln", "vereitelt": "vereitelt", "verena": "verena", "verendet": "verendet", "vererbt": "vererbt", "vererbten": "vererbt", "vererbung": "vererb", "verfahre": "verfahr", "verfahren": "verfahr", "verfahrens": "verfahr", "verfahrensweisen": "verfahrensweis", "verfährt": "verfahrt", "verfall": "verfall", "verfalle": "verfall", "verfallen": "verfall", "verfällt": "verfallt", "verfälschen": "verfalsch", "verfälscher": "verfalsch", "verfälscht": "verfalscht", "verfälschte": "verfalscht", "verfälschtem": "verfalscht", "verfälschten": "verfalscht", "verfälschtes": "verfalscht", "verfälschung": "verfalsch", "verfälschungen": "verfalsch", "verfängliche": "verfang", "verfänglichen": "verfang", "verfasser": "verfass", "verfasst": "verfasst", "verfaßt": "verfasst", "verfassten": "verfasst", "verfassung": "verfass", "verfassungs": "verfass", "verfassungsänderung": "verfassungsander", "verfassungsrevisoren": "verfassungsrevisor", "verfaulen": "verfaul", "verfeature": "verfeatur", "verfeaturt": "verfeaturt", "verfechten": "verfecht", "verfehlt": "verfehlt", "verfehlter": "verfehlt", "verfeinden": "verfeind", "verfeindet": "verfeindet", "verfeindeten": "verfeindet", "verfertigen": "verfert", "verfertigt": "verfertigt", "verfertigte": "verfertigt", "verfertigten": "verfertigt", "verfertigung": "verfert", "verfiel": "verfiel", "verfielen": "verfiel", "verfilztes": "verfilzt", "verfing": "verfing", "verfinstern": "verfin", "verfinstert": "verfinstert", "verfinsterte": "verfinstert", "verfinsterten": "verfinstert", "verfinstertwerden": "verfinstertwerd", "verflacht": "verflacht", "verfliegt": "verfliegt", "verflochtenen": "verflocht", "verflogen": "verflog", "verfloss": "verfloss", "verflossen": "verfloss", "verfluche": "verfluch", "verfluchen": "verfluch", "verfluchend": "verfluch", "verflucht": "verflucht", "verfluchte": "verflucht", "verfluchten": "verflucht", "verflüchtigt": "verfluchtigt", "verfolgen": "verfolg", "verfolger": "verfolg", "verfolgern": "verfolg", "verfolgt": "verfolgt", "verfolgte": "verfolgt", "verfolgten": "verfolgt", "verfolgung": "verfolg", "verfremdung": "verfremd", "verfriere": "verfri", "verfügen": "verfug", "verfügt": "verfugt", "verfügte": "verfugt", "verfügung": "verfug", "verfügungsrecht": "verfugungsrecht", "verfuhr": "verfuhr", "verfuhren": "verfuhr", "verführen": "verfuhr", "verführer": "verfuhr", "verführerische": "verfuhrer", "verführerischen": "verfuhrer", "verführt": "verfuhrt", "verführte": "verfuhrt", "vergabte": "vergabt", "vergangen": "vergang", "vergangene": "vergang", "vergangenen": "vergang", "vergangenheit": "vergang", "vergänglich": "vergang", "vergänglichkeit": "vergang", "vergass": "vergass", "vergaß": "vergass", "vergassen": "vergass", "vergaßen": "vergass", "vergeben": "vergeb", "vergebens": "vergeb", "vergeblich": "vergeb", "vergebliche": "vergeb", "vergeblichen": "vergeb", "vergebliches": "vergeb", "vergeblichkeit": "vergeb", "vergebung": "vergeb", "vergegenwärtigte": "vergegenwartigt", "vergehen": "vergeh", "vergehet": "vergehet", "vergehn": "vergehn", "vergeht": "vergeht", "vergelten": "vergelt", "vergelts": "vergelt", "vergeltung": "vergelt", "vergessen": "vergess", "vergessend": "vergess", "vergessene": "vergess", "vergessener": "vergess", "vergessenheit": "vergess", "vergesslichkeit": "vergess", "vergeßlichkeit": "vergess", "vergesst": "vergesst", "vergeuden": "vergeud", "vergib": "vergib", "vergibst": "vergib", "vergiessen": "vergiess", "vergießen": "vergiess", "vergiessend": "vergiess", "vergiesst": "vergiesst", "vergießt": "vergiesst", "vergiftet": "vergiftet", "vergilbter": "vergilbt", "vergilt": "vergilt", "verging": "verging", "vergingen": "verging", "vergiss": "vergiss", "vergissest": "vergiss", "vergissmeinnicht": "vergissmeinnicht", "vergissmeinnichtschnäpschen": "vergissmeinnichtschnapsch", "vergissmeinnichtschnäpse": "vergissmeinnichtschnaps", "vergisst": "vergisst", "vergleich": "vergleich", "vergleiche": "vergleich", "vergleichen": "vergleich", "vergleichsfällen": "vergleichsfall", "vergleichskriterium": "vergleichskriterium", "vergleichsweise": "vergleichsweis", "vergleicht": "vergleicht", "vergleichung": "vergleich", "vergleichungen": "vergleich", "verglichen": "verglich", "vergnügen": "vergnug", "vergnügenden": "vergnug", "vergnügens": "vergnug", "vergnüglich": "vergnug", "vergnüglichen": "vergnug", "vergnügliches": "vergnug", "vergnügt": "vergnugt", "vergnügte": "vergnugt", "vergnügtem": "vergnugt", "vergnügten": "vergnugt", "vergnügter": "vergnugt", "vergnügteste": "vergnugt", "vergnügtheit": "vergnugt", "vergnügungen": "vergnug", "vergnügungslokalen": "vergnugungslokal", "vergnügungssucht": "vergnugungssucht", "vergnügungstagen": "vergnugungstag", "vergoldet": "vergoldet", "vergoldete": "vergoldet", "vergoldetem": "vergoldet", "vergoldeten": "vergoldet", "vergoldeter": "vergoldet", "vergoldetes": "vergoldet", "vergolten": "vergolt", "vergönnt": "vergonnt", "vergoss": "vergoss", "vergoß": "vergoss", "vergossen": "vergoss", "vergöttert": "vergottert", "vergraben": "vergrab", "vergrämt": "vergramt", "vergrössern": "vergross", "vergrößern": "vergross", "vergrössert": "vergrossert", "vergrub": "vergrub", "vergüten": "vergut", "verhaftbefehl": "verhaftbefehl", "verhaften": "verhaft", "verhaftet": "verhaftet", "verhafteten": "verhaftet", "verhaftung": "verhaft", "verhalf": "verhalf", "verhallende": "verhall", "verhallte": "verhallt", "verhält": "verhalt", "verhalte": "verhalt", "verhalten": "verhalt", "verhaltend": "verhalt", "verhaltenen": "verhalt", "verhaltener": "verhalt", "verhaltens": "verhalt", "verhältnis": "verhaltnis", "verhältnismässig": "verhaltnismass", "verhältnismäßig": "verhaltnismass", "verhältnisse": "verhaltnis", "verhältnissen": "verhaltnis", "verhältnisses": "verhaltnis", "verhandeln": "verhandeln", "verhandelte": "verhandelt", "verhandlung": "verhandl", "verhandlungen": "verhandl", "verhängnis": "verhangnis", "verhängnisvollen": "verhangnisvoll", "verhängnisvollste": "verhangnisvoll", "verhärmten": "verharmt", "verharre": "verharr", "verharrte": "verharrt", "verhärten": "verhart", "verhärtet": "verhartet", "verhärtete": "verhartet", "verhärteten": "verhartet", "verhärtung": "verhart", "verhasst": "verhasst", "verhassten": "verhasst", "verhasster": "verhasst", "verheerenden": "verheer", "verheert": "verheert", "verheerung": "verheer", "verhehlten": "verhehlt", "verheimlichen": "verheim", "verheiraten": "verheirat", "verheiratet": "verheiratet", "verheiratete": "verheiratet", "verheirateten": "verheiratet", "verheiratetes": "verheiratet", "verheissen": "verheiss", "verheißen": "verheiss", "verheissende": "verheiss", "verheißende": "verheiss", "verheisst": "verheisst", "verheissung": "verheiss", "verheißung": "verheiss", "verhelfen": "verhelf", "verherrliche": "verherr", "verherrlichen": "verherr", "verherrlichet": "verherrlichet", "verherrlicht": "verherrlicht", "verherrlichten": "verherrlicht", "verherrlichung": "verherrlich", "verhext": "verhext", "verhielt": "verhielt", "verhielten": "verhielt", "verhindere": "verhind", "verhindern": "verhind", "verhindert": "verhindert", "verhinderte": "verhindert", "verhinderten": "verhindert", "verhofften": "verhofft", "verhöhnen": "verhohn", "verhöhnt": "verhohnt", "verhöhnung": "verhohn", "verholfen": "verholf", "verhör": "verhor", "verhöre": "verhor", "verhören": "verhor", "verhülle": "verhull", "verhüllt": "verhullt", "verhüllte": "verhullt", "verhüllung": "verhull", "verhundertfacht": "verhundertfacht", "verhungert": "verhungert", "verhungertes": "verhungert", "verhüten": "verhut", "verhütet": "verhutet", "verint": "verint", "verirren": "verirr", "verirrt": "verirrt", "verirrte": "verirrt", "verirrung": "verirr", "veritas": "veritas", "verjährt": "verjahrt", "verjährte": "verjahrt", "verkauf": "verkauf", "verkaufen": "verkauf", "verkaufssumme": "verkaufssumm", "verkauft": "verkauft", "verkauften": "verkauft", "verkehr": "verkehr", "verkehren": "verkehr", "verkehrs": "verkehr", "verkehrt": "verkehrt", "verkehrte": "verkehrt", "verkehrten": "verkehrt", "verkehrtes": "verkehrt", "verkehrtheit": "verkehrt", "verkehrtheiten": "verkehrt", "verkehrung": "verkehr", "verkehrungen": "verkehr", "verkennen": "verkenn", "verkennt": "verkennt", "verklammert": "verklammert", "verklang": "verklang", "verklärt": "verklart", "verklärten": "verklart", "verklärtes": "verklart", "verklebe": "verkleb", "verklebt": "verklebt", "verklebte": "verklebt", "verkleiden": "verkleid", "verkleidet": "verkleidet", "verkleidung": "verkleid", "verkleinern": "verklein", "verklungen": "verklung", "verkneifen": "verkneif", "verkniff": "verkniff", "verkniffen": "verkniff", "verkniffenen": "verkniff", "verknüpfe": "verknupf", "verknüpfen": "verknupf", "verknüpft": "verknupft", "verknüpfte": "verknupft", "verknüpften": "verknupft", "verknüpfung": "verknupf", "verknüpfungen": "verknupf", "verkommenen": "verkomm", "verkommenheit": "verkomm", "verkriecht": "verkriecht", "verkrochen": "verkroch", "verkrümmelten": "verkrummelt", "verkrüppelt": "verkruppelt", "verkühlung": "verkuhl", "verkünden": "verkund", "verkündet": "verkundet", "verkündete": "verkundet", "verkündeten": "verkundet", "verkündige": "verkund", "verkündigen": "verkund", "verkündigt": "verkundigt", "verkündigte": "verkundigt", "verkündigung": "verkund", "verkünstelt": "verkunstelt", "verkürzen": "verkurz", "verlachen": "verlach", "verlacht": "verlacht", "verlag": "verlag", "verlages": "verlag", "verlagsmitteilung": "verlagsmitteil", "verlange": "verlang", "verlangen": "verlang", "verlangend": "verlang", "verlängern": "verlang", "verlängert": "verlangert", "verlängerten": "verlangert", "verlangst": "verlang", "verlangt": "verlangt", "verlangte": "verlangt", "verlangten": "verlangt", "verlas": "verlas", "verlass": "verlass", "verlassen": "verlass", "verlassene": "verlass", "verlassenen": "verlass", "verlassener": "verlass", "verlassenes": "verlass", "verlassenheit": "verlass", "verlasset": "verlasset", "verlässet": "verlasset", "verlässt": "verlasst", "verläßt": "verlasst", "verlaub": "verlaub", "verlauf": "verlauf", "verlaufe": "verlauf", "verlaufen": "verlauf", "verlaufende": "verlauf", "verlaufs": "verlauf", "verläuft": "verlauft", "verlauten": "verlaut", "verlebten": "verlebt", "verlegen": "verleg", "verlegenen": "verleg", "verlegener": "verleg", "verlegenheit": "verleg", "verleger": "verleg", "verlegt": "verlegt", "verlegte": "verlegt", "verlegten": "verlegt", "verleihe": "verleih", "verleihen": "verleih", "verleiht": "verleiht", "verleiten": "verleit", "verleitet": "verleitet", "verleitete": "verleitet", "verletze": "verletz", "verletzen": "verletz", "verletzt": "verletzt", "verletzte": "verletzt", "verletzten": "verletzt", "verletztheit": "verletzt", "verletzung": "verletz", "verleugne": "verleugn", "verleugnet": "verleugnet", "verleugnete": "verleugnet", "verleumden": "verleumd", "verleumdern": "verleumd", "verleumdet": "verleumdet", "verleumdungswesen": "verleumdungswes", "verlieben": "verlieb", "verliebt": "verliebt", "verliebte": "verliebt", "verliebten": "verliebt", "verliebter": "verliebt", "verliebtheit": "verliebt", "verlief": "verlief", "verlieh": "verlieh", "verliehen": "verlieh", "verlieren": "verli", "verliert": "verliert", "verliess": "verliess", "verließ": "verliess", "verlobt": "verlobt", "verlobung": "verlob", "verlocken": "verlock", "verlockend": "verlock", "verlockendes": "verlock", "verlockt": "verlockt", "verlockte": "verlockt", "verlockung": "verlock", "verlockungen": "verlock", "verlogenen": "verlog", "verlogenes": "verlog", "verlor": "verlor", "verlöre": "verlor", "verloren": "verlor", "verlorene": "verlor", "verlorenen": "verlor", "verlorener": "verlor", "verlorenes": "verlor", "verlorengegangen": "verlorengegang", "verlorengehe": "verlorengeh", "verlorengehen": "verlorengeh", "verlorengeht": "verlorengeht", "verlorenging": "verlorenging", "verlorengingen": "verlorenging", "verlorensein": "verlorensein", "verlöschen": "verlosch", "verlotterten": "verlottert", "verlumpete": "verlumpet", "verlumpte": "verlumpt", "verlumpungen": "verlump", "verlust": "verlust", "verlustig": "verlust", "verlusts": "verlust", "vermachte": "vermacht", "vermag": "vermag", "vermählt": "vermahlt", "vermählte": "vermahlt", "vermählten": "vermahlt", "vermähltes": "vermahlt", "vermählung": "vermahl", "vermählungen": "vermahl", "vermahnen": "vermahn", "vermauern": "vermau", "vermehren": "vermehr", "vermehrt": "vermehrt", "vermehrten": "vermehrt", "vermehrter": "vermehrt", "vermehrung": "vermehr", "vermehrungen": "vermehr", "vermeiden": "vermeid", "vermeidung": "vermeid", "vermeinte": "vermeint", "vermeinten": "vermeint", "vermeinter": "vermeint", "vermeintlich": "vermeint", "vermeldete": "vermeldet", "vermengt": "vermengt", "vermerkt": "vermerkt", "vermied": "vermied", "vermieden": "vermied", "vermieter": "vermiet", "vermindern": "vermind", "vermindernden": "vermindernd", "vermindert": "vermindert", "verminderung": "verminder", "vermischen": "vermisch", "vermischt": "vermischt", "vermischte": "vermischt", "vermischten": "vermischt", "vermischung": "vermisch", "vermischungen": "vermisch", "vermissen": "vermiss", "vermisst": "vermisst", "vermisste": "vermisst", "vermißte": "vermisst", "vermittelnde": "vermittelnd", "vermittelndes": "vermittelnd", "vermittels": "vermittel", "vermittelst": "vermittel", "vermittlerin": "vermittlerin", "vermittlung": "vermittl", "vermittlungen": "vermittl", "vermocht": "vermocht", "vermochte": "vermocht", "vermöchte": "vermocht", "vermochten": "vermocht", "vermöge": "vermog", "vermögen": "vermog", "vermögend": "vermog", "vermögenden": "vermog", "vermögens": "vermog", "vermögensstand": "vermogensstand", "vermute": "vermut", "vermuten": "vermut", "vermutet": "vermutet", "vermutete": "vermutet", "vermutlich": "vermut", "vermutlichen": "vermut", "vermutung": "vermut", "vermutungen": "vermut", "vernachlässige": "vernachlass", "vernachlässigt": "vernachlassigt", "vernachlässigte": "vernachlassigt", "vernachlässigten": "vernachlassigt", "vernachlässigung": "vernachlass", "vernagelt": "vernagelt", "vernagelten": "vernagelt", "vernahm": "vernahm", "vernähme": "vernahm", "vernahmen": "vernahm", "vernarbendes": "vernarb", "vernarren": "vernarr", "vernarrt": "vernarrt", "vernehmbar": "vernehmbar", "vernehmbare": "vernehmbar", "vernehmen": "vernehm", "vernehmet": "vernehmet", "vernehmlassungsverfahrens": "vernehmlassungsverfahr", "vernehmlichem": "vernehm", "vernehmlichen": "vernehm", "vernehmnisse": "vernehmnis", "verneigen": "verneig", "verneigend": "verneig", "verneigt": "verneigt", "verneigte": "verneigt", "verneinen": "vernein", "verneinenden": "vernein", "verneinung": "vernein", "verneinungen": "vernein", "verneunfacht": "verneunfacht", "vernichte": "vernicht", "vernichten": "vernicht", "vernichtet": "vernichtet", "vernichteten": "vernichtet", "vernichtung": "vernicht", "vernichtungsgenie": "vernichtungsgeni", "vernimmt": "vernimmt", "vernommen": "vernomm", "vernunft": "vernunft", "vernunftähnliches": "vernunftahn", "vernunftanschauungen": "vernunftanschau", "vernunftbedingung": "vernunftbeding", "vernunftbedürfnis": "vernunftbedurfnis", "vernunftbegriffe": "vernunftbegriff", "vernunftbegriffen": "vernunftbegriff", "vernunftbestimmung": "vernunftbestimm", "vernunfteinsicht": "vernunfteinsicht", "vernünftelei": "vernunftelei", "vernünfteleien": "vernunftelei", "vernünfteln": "vernunfteln", "vernünftelnde": "vernunftelnd", "vernünftelt": "vernunftelt", "vernünftelten": "vernunftelt", "vernunfterkenntnisse": "vernunfterkenntnis", "vernunfterkenntnisses": "vernunfterkenntnis", "vernunftgebote": "vernunftgebot", "vernunftgebots": "vernunftgebot", "vernunftgebrauch": "vernunftgebrauch", "vernunftgebrauche": "vernunftgebrauch", "vernunftgebrauchs": "vernunftgebrauch", "vernunftgemässe": "vernunftgemass", "vernunftgemässen": "vernunftgemass", "vernunftgesetz": "vernunftgesetz", "vernunftgesetze": "vernunftgesetz", "vernunftglaube": "vernunftglaub", "vernunftglaubens": "vernunftglaub", "vernunftgründe": "vernunftgrund", "vernunftgründen": "vernunftgrund", "vernunftidee": "vernunftide", "vernunftideen": "vernunftide", "vernünftig": "vernunft", "vernünftige": "vernunft", "vernünftigen": "vernunft", "vernünftiger": "vernunft", "vernünftiges": "vernunft", "vernünftigkeit": "vernunft", "vernünftigsein": "vernunftigsein", "vernunftkraft": "vernunftkraft", "vernünftler": "vernunftl", "vernünftlern": "vernunftl", "vernunftlos": "vernunftlos", "vernunftmässiges": "vernunftmass", "vernunftmäßiges": "vernunftmass", "vernunftprinzip": "vernunftprinzip", "vernunftschlüsse": "vernunftschluss", "vernunftschlusses": "vernunftschluss", "vernunfttheologie": "vernunfttheologi", "vernunftverhältnisse": "vernunftverhaltnis", "vernunftvermögen": "vernunftvermog", "vernunftvermögens": "vernunftvermog", "vernunftvorstellungen": "vernunftvorstell", "vernunftwahres": "vernunftwahr", "vernunftwahrheiten": "vernunftwahr", "vernunftwillens": "vernunftwill", "vernunftwissenschaften": "vernunftwissenschaft", "verödenden": "verod", "verödet": "verodet", "verödeten": "verodet", "verödung": "verod", "verödungen": "verod", "veröffentlicht": "veroffentlicht", "veröffentlichung": "veroffentlich", "verordnung": "verordn", "verordnungen": "verordn", "verorientieren": "verorienti", "verpachteten": "verpachtet", "verpacken": "verpack", "verpackt": "verpackt", "verpfändet": "verpfandet", "verpfändeten": "verpfandet", "verpflichten": "verpflicht", "verpflichtet": "verpflichtet", "verpflichtung": "verpflicht", "verpflichtungen": "verpflicht", "verpichen": "verpich", "verpicht": "verpicht", "verpichtwerden": "verpichtwerd", "verpichung": "verpich", "verplaudern": "verplaud", "verpönt": "verpont", "verpustete": "verpustet", "verrannt": "verrannt", "verrät": "verrat", "verraten": "verrat", "verrechnen": "verrechn", "verregnet": "verregnet", "verreisen": "verreis", "verreiste": "verreist", "verrenkungen": "verrenk", "verrichten": "verricht", "verrichtet": "verrichtet", "verrichtete": "verrichtet", "verrichteten": "verrichtet", "verrichtung": "verricht", "verrichtungen": "verricht", "verriet": "verriet", "verriete": "verriet", "verrieten": "verriet", "verringern": "verring", "verringert": "verringert", "verrollen": "verroll", "verrostetes": "verrostet", "verrückt": "verruckt", "verruckte": "verruckt", "verrückte": "verruckt", "verrufen": "verruf", "verrufenen": "verruf", "vers": "ver", "versagender": "versag", "versagt": "versagt", "versagte": "versagt", "versagten": "versagt", "versah": "versah", "versammeln": "versammeln", "versammelt": "versammelt", "versammelte": "versammelt", "versammelten": "versammelt", "versammle": "versamml", "versammlung": "versamml", "versammlungszimmer": "versammlungszimm", "versandet": "versandet", "versandt": "versandt", "versank": "versank", "versanken": "versank", "versäumen": "versaum", "versäumt": "versaumt", "versäumte": "versaumt", "verschaffe": "verschaff", "verschaffen": "verschaff", "verschafft": "verschafft", "verschaffte": "verschafft", "verschämt": "verschamt", "verschärfung": "verscharf", "verschärfungen": "verscharf", "verschattung": "verschatt", "verschäumte": "verschaumt", "verschen": "versch", "verschenken": "verschenk", "verscherzt": "verscherzt", "verscheuchen": "verscheuch", "verscheuchten": "verscheucht", "verschiebung": "verschieb", "verschieden": "verschied", "verschiedenartig": "verschiedenart", "verschiedenartigen": "verschiedenart", "verschiedenartiges": "verschiedenart", "verschiedenartigste": "verschiedenart", "verschiedene": "verschied", "verschiedenem": "verschied", "verschiedenen": "verschied", "verschiedener": "verschied", "verschiedenes": "verschied", "verschiedenheit": "verschied", "verschiedenheiten": "verschied", "verschiedenste": "verschieden", "verschiedensten": "verschieden", "verschiedentlich": "verschiedent", "verschlafen": "verschlaf", "verschlage": "verschlag", "verschlagen": "verschlag", "verschlang": "verschlang", "verschlangen": "verschlang", "verschlechterung": "verschlechter", "verschleiern": "verschlei", "verschleiert": "verschleiert", "verschleudert": "verschleudert", "verschliessen": "verschliess", "verschließen": "verschliess", "verschlimmern": "verschlimm", "verschlimmert": "verschlimmert", "verschlinge": "verschling", "verschlingen": "verschling", "verschlingungen": "verschling", "verschloss": "verschloss", "verschlossen": "verschloss", "verschlossenen": "verschloss", "verschlossenes": "verschloss", "verschluckt": "verschluckt", "verschlungen": "verschlung", "verschlungenen": "verschlung", "verschluss": "verschluss", "verschlusses": "verschluss", "verschmachten": "verschmacht", "verschmähe": "verschmah", "verschmähen": "verschmah", "verschmähst": "verschmah", "verschmäht": "verschmaht", "verschmähte": "verschmaht", "verschmähten": "verschmaht", "verschmelzen": "verschmelz", "verschmerzen": "verschmerz", "verschmierten": "verschmiert", "verschmitzt": "verschmitzt", "verschmitztheit": "verschmitzt", "verschnaufen": "verschnauf", "verschnaufte": "verschnauft", "verschnittene": "verschnitt", "verschnittenen": "verschnitt", "verschnürte": "verschnurt", "verschob": "verschob", "verschollene": "verscholl", "verschollenen": "verscholl", "verschonen": "verschon", "verschönert": "verschonert", "verschont": "verschont", "verschossen": "verschoss", "verschränkung": "verschrank", "verschulden": "verschuld", "verschuldet": "verschuldet", "verschuldung": "verschuld", "verschuldungen": "verschuld", "verschustern": "verschust", "verschüttet": "verschuttet", "verschwammen": "verschwamm", "verschwand": "verschwand", "verschwanden": "verschwand", "verschweigen": "verschweig", "verschwenden": "verschwend", "verschwenderisch": "verschwender", "verschwendet": "verschwendet", "verschwendung": "verschwend", "verschwieg": "verschwieg", "verschwiegenes": "verschwieg", "verschwinde": "verschwind", "verschwinden": "verschwind", "verschwindet": "verschwindet", "verschworen": "verschwor", "verschworene": "verschwor", "verschwunden": "verschwund", "verschwundene": "verschwund", "verschwundenen": "verschwund", "verse": "vers", "versehen": "verseh", "versehn": "versehn", "versen": "vers", "versengen": "verseng", "versenken": "versenk", "versenkt": "versenkt", "versenkte": "versenkt", "versenkten": "versenkt", "versenkung": "versenk", "versenkungen": "versenk", "versessen": "versess", "versetze": "versetz", "versetzen": "versetz", "versetzt": "versetzt", "versetzte": "versetzt", "versetzung": "versetz", "versichern": "versich", "versichert": "versichert", "versicherte": "versichert", "versicherten": "versichert", "versicherung": "versicher", "versiegelt": "versiegelt", "versiegen": "versieg", "versiegle": "versiegl", "versiegt": "versiegt", "versiert": "versiert", "versilbert": "versilbert", "versimpelter": "versimpelt", "versinke": "versink", "versinken": "versink", "versinkt": "versinkt", "versinnlichung": "versinnlich", "version": "version", "versöhnen": "versohn", "versöhnlichen": "versohn", "versöhnt": "versohnt", "versöhnung": "versohn", "versöhnungsversuch": "versohnungsversuch", "versorgen": "versorg", "versorgt": "versorgt", "versorgten": "versorgt", "verspart": "verspart", "verspätet": "verspatet", "verspätetes": "verspatet", "verspätung": "verspat", "verspeist": "verspeist", "versperren": "versperr", "versperrt": "versperrt", "versperrte": "versperrt", "verspotten": "verspott", "versprach": "versprach", "versprachen": "versprach", "verspreche": "versprech", "versprechen": "versprech", "verspricht": "verspricht", "versprochen": "versproch", "versprochene": "versproch", "verspüren": "verspur", "verspürt": "verspurt", "verspürte": "verspurt", "verspürten": "verspurt", "verstand": "verstand", "verstande": "verstand", "verstanden": "verstand", "verstandes": "verstand", "verstandesbegriff": "verstandesbegriff", "verstandesbegriffe": "verstandesbegriff", "verstandesbegriffen": "verstandesbegriff", "verstandesbegriffs": "verstandesbegriff", "verstandesform": "verstandesform", "verstandesgebiet": "verstandesgebiet", "verstandesgebietes": "verstandesgebiet", "verstandesglauben": "verstandesglaub", "verstandeskräfte": "verstandeskraft", "verstandeslicht": "verstandeslicht", "verstandesvermögen": "verstandesvermog", "verstandesvermögens": "verstandesvermog", "verstandeswelt": "verstandeswelt", "verstandeswesen": "verstandeswes", "verständig": "verstand", "verständige": "verstand", "verständigen": "verstand", "verständiger": "verstand", "verständiges": "verstand", "verständigkeit": "verstand", "verständigste": "verstand", "verständigt": "verstandigt", "verständigte": "verstandigt", "verständigung": "verstand", "verständlich": "verstand", "verständlicher": "verstand", "verständlicherweise": "verstandlicherweis", "verständlichkeit": "verstand", "verständnis": "verstandnis", "verständnisinnig": "verstandnisinn", "verständnisinnigkeit": "verstandnisinn", "verständnislosen": "verstandnislos", "verständnisse": "verstandnis", "verständnisses": "verstandnis", "verstandnisvoll": "verstandnisvoll", "verständnisvoll": "verstandnisvoll", "verständnisvoller": "verstandnisvoll", "verstänkert": "verstankert", "verstärkt": "verstarkt", "verstärkte": "verstarkt", "verstärkter": "verstarkt", "verstatte": "verstatt", "verstatten": "verstatt", "verstattet": "verstattet", "verstecke": "versteck", "verstecken": "versteck", "versteckspielen": "versteckspiel", "versteckt": "versteckt", "versteckte": "versteckt", "verstecktes": "versteckt", "versteh": "versteh", "verstehe": "versteh", "verstehen": "versteh", "verstehens": "versteh", "verstehet": "verstehet", "verstehn": "verstehn", "verstehst": "versteh", "versteht": "versteht", "versteigerung": "versteiger", "versteinert": "versteinert", "versteinerte": "versteinert", "verstellen": "verstell", "verstellte": "verstellt", "verstellten": "verstellt", "verstellter": "verstellt", "verstellung": "verstell", "verstimmt": "verstimmt", "verstimmter": "verstimmt", "verstocke": "verstock", "verstocken": "verstock", "verstockt": "verstockt", "verstockte": "verstockt", "verstocktes": "verstockt", "verstocktwerdens": "verstocktwerd", "verstockung": "verstock", "verstohlen": "verstohl", "verstohlener": "verstohl", "verstopfe": "verstopf", "verstopfen": "verstopf", "verstopft": "verstopft", "verstopfte": "verstopft", "verstorben": "verstorb", "verstorbene": "verstorb", "verstorbenen": "verstorb", "verstört": "verstort", "verstörten": "verstort", "verstörtes": "verstort", "verstösse": "verstoss", "verstossen": "verstoss", "verstoßen": "verstoss", "verstossenen": "verstoss", "verstossener": "verstoss", "verstossung": "verstoss", "verstoßung": "verstoss", "verstreichen": "verstreich", "verstummte": "verstummt", "verstummten": "verstummt", "verstünde": "verstund", "versuch": "versuch", "versuche": "versuch", "versuchen": "versuch", "versuchend": "versuch", "versuchsweise": "versuchsweis", "versucht": "versucht", "versuchte": "versucht", "versuchten": "versucht", "versuchteste": "versucht", "versuchung": "versuch", "versuchungen": "versuch", "versuchungsschmerzen": "versuchungsschmerz", "versündigt": "versundigt", "versunken": "versunk", "versunkene": "versunk", "versunkenes": "versunk", "vertäfelung": "vertafel", "vertauschen": "vertausch", "vertauscht": "vertauscht", "vertausendfacht": "vertausendfacht", "verteidige": "verteid", "verteidigen": "verteid", "verteidiger": "verteid", "verteidigern": "verteid", "verteidigt": "verteidigt", "verteidigte": "verteidigt", "verteidigung": "verteid", "verteidigungsschrift": "verteidigungsschrift", "verteilen": "verteil", "verteilt": "verteilt", "verteilungsgerechtigkeit": "verteilungsgerecht", "verteuerung": "verteuer", "vertiefen": "vertief", "vertieft": "vertieft", "vertiefte": "vertieft", "vertiefung": "vertief", "vertilge": "vertilg", "vertilgen": "vertilg", "vertilgt": "vertilgt", "vertilgte": "vertilgt", "vertilgung": "vertilg", "vertrackt": "vertrackt", "vertrackten": "vertrackt", "vertrag": "vertrag", "vertragen": "vertrag", "vertrages": "vertrag", "verträglich": "vertrag", "vertragsbestimmungen": "vertragsbestimm", "vertragsmässig": "vertragsmass", "vertragsmässige": "vertragsmass", "verträgt": "vertragt", "vertraten": "vertrat", "vertraue": "vertrau", "vertrauen": "vertrau", "vertrauensmann": "vertrauensmann", "vertraulich": "vertraulich", "verträulich": "vertraulich", "vertrauliche": "vertraulich", "vertrauliches": "vertraulich", "verträumten": "vertraumt", "vertraut": "vertraut", "vertraute": "vertraut", "vertrauten": "vertraut", "vertrauter": "vertraut", "vertrautester": "vertraut", "vertreiben": "vertreib", "vertreibenden": "vertreib", "vertreibung": "vertreib", "vertreter": "vertret", "vertretern": "vertret", "vertretung": "vertret", "vertrieb": "vertrieb", "vertrieben": "vertrieb", "vertriebenen": "vertrieb", "vertrocknen": "vertrockn", "vertrocknet": "vertrocknet", "vertrockneten": "vertrocknet", "vertrödeln": "vertrodeln", "vertrösten": "vertrost", "vertröstete": "vertrostet", "vertrug": "vertrug", "vertrunkenen": "vertrunk", "vertuschen": "vertusch", "verüben": "verub", "verübt": "verubt", "verübte": "verubt", "verulamio": "verulamio", "verunglückt": "verungluckt", "verunglückten": "verungluckt", "verunreinigen": "verunrein", "verunreinigt": "verunreinigt", "verunreinigungen": "verunrein", "verunsichert": "verunsichert", "verunstalten": "verunstalt", "verunstaltet": "verunstaltet", "verursache": "verursach", "verursachen": "verursach", "verursacht": "verursacht", "verursachte": "verursacht", "verurteilt": "verurteilt", "verurteilung": "verurteil", "vervielfältigen": "vervielfalt", "vervielfältigend": "vervielfalt", "vervielfältigt": "vervielfaltigt", "vervielfältigten": "vervielfaltigt", "vervielfältigungen": "vervielfalt", "vervollkommnen": "vervollkommn", "vervollkommnet": "vervollkommnet", "vervollständigen": "vervollstand", "verwahrt": "verwahrt", "verwahrte": "verwahrt", "verwahrung": "verwahr", "verwaist": "verwaist", "verwalten": "verwalt", "verwaltend": "verwalt", "verwaltenden": "verwalt", "verwalter": "verwalt", "verwaltete": "verwaltet", "verwaltung": "verwalt", "verwaltungen": "verwalt", "verwaltungsmann": "verwaltungsmann", "verwaltungsräte": "verwaltungsrat", "verwaltungsrechnung": "verwaltungsrechn", "verwandeln": "verwandeln", "verwandelt": "verwandelt", "verwandelte": "verwandelt", "verwandelten": "verwandelt", "verwandle": "verwandl", "verwandlung": "verwandl", "verwandt": "verwandt", "verwandte": "verwandt", "verwandten": "verwandt", "verwandter": "verwandt", "verwandtschaft": "verwandtschaft", "verwandtschaften": "verwandtschaft", "verwandtschaftsverhältnissen": "verwandtschaftsverhaltnis", "verwarf": "verwarf", "verwarfen": "verwarf", "verwaschen": "verwasch", "verwaschenen": "verwasch", "verwaschenes": "verwasch", "verwässert": "verwassert", "verwebt": "verwebt", "verwechselt": "verwechselt", "verwechselten": "verwechselt", "verwegen": "verweg", "verwegene": "verweg", "verwegenen": "verweg", "verwehenden": "verweh", "verwehrt": "verwehrt", "verweht": "verweht", "verwehten": "verweht", "verweichlichen": "verweich", "verweigern": "verweig", "verweigert": "verweigert", "verweigerte": "verweigert", "verweigerten": "verweigert", "verweigerung": "verweiger", "verweilen": "verweil", "verweilt": "verweilt", "verweilte": "verweilt", "verweinte": "verweint", "verweis": "verweis", "verweise": "verweis", "verweisend": "verweis", "verweist": "verweist", "verweisung": "verweis", "verwelken": "verwelk", "verwelkt": "verwelkt", "verwenden": "verwend", "verwendet": "verwendet", "verwendete": "verwendet", "verwendeten": "verwendet", "verwendung": "verwend", "verwerfen": "verwerf", "verwerfung": "verwerf", "verwickeln": "verwickeln", "verwickelt": "verwickelt", "verwickelte": "verwickelt", "verwickelten": "verwickelt", "verwickelter": "verwickelt", "verwiesen": "verwies", "verwilderte": "verwildert", "verwildertem": "verwildert", "verwilderten": "verwildert", "verwildertes": "verwildert", "verwilderung": "verwilder", "verwinden": "verwind", "verwirft": "verwirft", "verwirklicht": "verwirklicht", "verwirklichung": "verwirklich", "verwirren": "verwirr", "verwirrende": "verwirr", "verwirret": "verwirret", "verwirrt": "verwirrt", "verwirrte": "verwirrt", "verwirrtem": "verwirrt", "verwirrten": "verwirrt", "verwirrung": "verwirr", "verwirrungen": "verwirr", "verwirrungsrecht": "verwirrungsrecht", "verwischt": "verwischt", "verwittert": "verwittert", "verwitterte": "verwittert", "verwitterter": "verwittert", "verwittertes": "verwittert", "verworfen": "verworf", "verworfene": "verworf", "verworfnen": "verworfn", "verworrene": "verworr", "verworrenen": "verworr", "verworrenes": "verworr", "verwucherten": "verwuchert", "verwunden": "verwund", "verwunderlicher": "verwund", "verwundern": "verwund", "verwundert": "verwundert", "verwunderten": "verwundert", "verwunderung": "verwunder", "verwundet": "verwundet", "verwundr": "verwundr", "verwunschenen": "verwunsch", "verwünschte": "verwunscht", "verwünschten": "verwunscht", "verwünschungen": "verwunsch", "verwüste": "verwust", "verwüsten": "verwust", "verwüstende": "verwust", "verwüster": "verwust", "verwüstet": "verwustet", "verwüstete": "verwustet", "verwüsteten": "verwustet", "verwüstung": "verwust", "verwüstungen": "verwust", "verzagen": "verzag", "verzagt": "verzagt", "verzagte": "verzagt", "verzählen": "verzahl", "verzählt": "verzahlt", "verzäuner": "verzaun", "verzehren": "verzehr", "verzehrende": "verzehr", "verzehrenden": "verzehr", "verzehrender": "verzehr", "verzehrendes": "verzehr", "verzehrer": "verzehr", "verzehret": "verzehret", "verzehrt": "verzehrt", "verzehrte": "verzehrt", "verzehrten": "verzehrt", "verzeichnen": "verzeichn", "verzeichnet": "verzeichnet", "verzeichnete": "verzeichnet", "verzeichnis": "verzeichnis", "verzeih": "verzeih", "verzeihen": "verzeih", "verzeihliche": "verzeih", "verzeihst": "verzeih", "verzeiht": "verzeiht", "verzeihung": "verzeih", "verzerrten": "verzerrt", "verzicht": "verzicht", "verzichten": "verzicht", "verzichtet": "verzichtet", "verzichtete": "verzichtet", "verzieh": "verzieh", "verziehen": "verzieh", "verziert": "verziert", "verzierte": "verziert", "verzierungen": "verzier", "verzog": "verzog", "verzogen": "verzog", "verzogene": "verzog", "verzögert": "verzogert", "verzögerte": "verzogert", "verzweifelt": "verzweifelt", "verzweifelte": "verzweifelt", "verzweifelten": "verzweifelt", "verzweifeltsten": "verzweifelt", "verzweiflung": "verzweifl", "verzweiflungsvolles": "verzweiflungsvoll", "verzwickten": "verzwickt", "vesperbrote": "vesperbrot", "vesperkaffees": "vesperkaffe", "vestalinnen": "vestalinn", "vesuvius": "vesuvius", "veterinärschul": "veterinarschul", "veto": "veto", "vetsch": "vetsch", "vetter": "vett", "vetters": "vett", "vexieren": "vexi", "vexiergasse": "vexiergass", "vfb": "vfb", "vi": "vi", "vicomtesse": "vicomtess", "victory": "victory", "vide": "vid", "videofilmer": "videofilm", "videokamera": "videokamera", "viecherl": "viecherl", "vieh": "vieh", "viehhandel": "viehhandel", "viehherden": "viehherd", "viehhürdenbewohner": "viehhurdenbewohn", "viehs": "vieh", "viehzucht": "viehzucht", "viel": "viel", "vielbesucht": "vielbesucht", "viele": "viel", "vielem": "viel", "vielen": "viel", "vieler": "viel", "vielerlei": "vielerlei", "vieles": "viel", "vielfach": "vielfach", "vielfache": "vielfach", "vielfaches": "vielfach", "vielfalt": "vielfalt", "vielfältig": "vielfalt", "vielfältige": "vielfalt", "vielfältiger": "vielfalt", "vielgestaltige": "vielgestalt", "vielgewordene": "vielgeword", "vieljährige": "vieljahr", "vielköpfigen": "vielkopf", "vielle": "viell", "vielleicht": "vielleicht", "vielmals": "vielmal", "vielmehr": "vielmehr", "vielverschlungenen": "vielverschl", "vielweniger": "vielwen", "vier": "vier", "viereckig": "viereck", "viereckigen": "viereck", "viereckiger": "viereck", "viereinhalb": "viereinhalb", "vieren": "vier", "vierhundertdrei": "vierhundertdrei", "vierhundertdreissig": "vierhundertdreiss", "vierhundertdreißig": "vierhundertdreiss", "vierhundertertundzweimal": "vierhundertertundzweimal", "vierjährigen": "vierjahr", "vierköpfige": "vierkopf", "viermal": "viermal", "vierschrötige": "vierschrot", "vierspännige": "vierspann", "vierspännigen": "vierspann", "vierstündige": "vierstund", "viertägige": "viertag", "vierte": "viert", "viertel": "viertel", "vierteljahr": "vierteljahr", "vierteljährchen": "vierteljahrch", "vierteljahrhundert": "vierteljahrhundert", "viertelstündchen": "viertelstundch", "viertelstunde": "viertelstund", "viertelstündl": "viertelstundl", "viertelswandseite": "viertelswandseit", "vierten": "viert", "viertes": "viert", "vierunddreißig": "vierunddreiss", "vierundzwanzig": "vierundzwanz", "vierundzwanzigstündiger": "vierundzwanzigstund", "vierzehn": "vierzehn", "vierzehnten": "vierzehnt", "vierzig": "vierzig", "vierzigjähriger": "vierzigjahr", "vierzigste": "vierzig", "vii": "vii", "viii": "viii", "villarson": "villarson", "vim": "vim", "violettes": "violett", "viper": "vip", "vipern": "vip", "vipernarten": "vipernart", "virginien": "virgini", "virtuelle": "virtuell", "virtuosen": "virtuos", "visiers": "visi", "vision": "vision", "visir": "visir", "visit": "visit", "visitenstuben": "visitenstub", "vita": "vita", "vital": "vital", "vitale": "vital", "vitalen": "vital", "vitaler": "vital", "vitalitat": "vitalitat", "vitalität": "vitalitat", "vitaminreiche": "vitaminreich", "vitium": "vitium", "vivificandum": "vivificandum", "vogel": "vogel", "vögel": "vogel", "vogelbeerbüscheln": "vogelbeerbuscheln", "vogelbeeren": "vogelbe", "vögelchen": "vogelch", "vögeln": "vogeln", "vogels": "vogel", "vogelstellers": "vogelstell", "vogelstimmen": "vogelstimm", "vöglein": "voglein", "vögte": "vogt", "vögten": "vogt", "vokabeln": "vokabeln", "vokabular": "vokabular", "vokativ": "vokativ", "vokative": "vokativ", "volcker": "volck", "volk": "volk", "völkchen": "volkch", "volke": "volk", "völker": "volk", "völkern": "volk", "völkerschaft": "volkerschaft", "völkerschaften": "volkerschaft", "völkerstrich": "volkerstrich", "völkerwanderung": "volkerwander", "volkes": "volk", "völklein": "volklein", "volks": "volk", "volksfest": "volksf", "volkskircheflavio": "volkskircheflavio", "volksliedchen": "volksliedch", "volkslieder": "volkslied", "volksliedes": "volkslied", "volkssänger": "volkssang", "volksversammlung": "volksversamml", "volksweisen": "volksweis", "voll": "voll", "vollauf": "vollauf", "vollbart": "vollbart", "vollbesetzt": "vollbesetzt", "vollbestand": "vollbestand", "vollbracht": "vollbracht", "vollbrachte": "vollbracht", "vollbrachten": "vollbracht", "vollbrachter": "vollbracht", "vollbrachtes": "vollbracht", "vollbringen": "vollbring", "vollbringung": "vollbring", "volle": "voll", "vollem": "voll", "vollen": "voll", "vollenden": "vollend", "vollendet": "vollendet", "vollendete": "vollendet", "vollendeten": "vollendet", "vollends": "vollend", "vollendung": "vollend", "voller": "voll", "völlerei": "vollerei", "vollführt": "vollfuhrt", "vollführte": "vollfuhrt", "vollgepfropften": "vollgepfropft", "vollgestopft": "vollgestopft", "völlig": "vollig", "völlige": "vollig", "völligem": "vollig", "völligen": "vollig", "völliger": "vollig", "vollkommen": "vollkomm", "vollkommene": "vollkomm", "vollkommenen": "vollkomm", "vollkommener": "vollkomm", "vollkommenere": "vollkommen", "vollkommeneren": "vollkommen", "vollkommenerer": "vollkommen", "vollkommeneres": "vollkommen", "vollkommenheit": "vollkomm", "vollkommenheiten": "vollkomm", "vollkommenste": "vollkommen", "vollkommensten": "vollkommen", "vollmacht": "vollmacht", "vollmond": "vollmond", "vollständig": "vollstand", "vollständige": "vollstand", "vollständigen": "vollstand", "vollständiger": "vollstand", "vollständiges": "vollstand", "vollständigkeit": "vollstand", "vollsten": "voll", "vollster": "voll", "vollstreckung": "vollstreck", "vollzählig": "vollzahl", "vollziehend": "vollzieh", "vollziehest": "vollzieh", "vollzogen": "vollzog", "vollzupacken": "vollzupack", "voluntaria": "voluntaria", "voluntarium": "voluntarium", "vom": "vom", "von": "von", "voneinander": "voneinand", "vonstatten": "vonstatt", "vor": "vor", "vorabend": "vorab", "vorabendan": "vorabendan", "voran": "voran", "vorangehen": "vorangeh", "vorangeht": "vorangeht", "vorangestellt": "vorangestellt", "voranging": "voranging", "voranschickung": "voranschick", "voranstellte": "voranstellt", "vorantrug": "vorantrug", "voranzuschicken": "voranzuschick", "voraus": "voraus", "vorausfliegen": "vorausflieg", "vorausgefahrenen": "vorausgefahr", "vorausgehen": "vorausgeh", "vorausgehende": "vorausgeh", "vorausgeht": "vorausgeht", "vorausgeigen": "vorausgeig", "vorausgesagt": "vorausgesagt", "vorausgeschickt": "vorausgeschickt", "vorausgeschickten": "vorausgeschickt", "vorausgesehen": "vorausgeseh", "vorausgesetzt": "vorausgesetzt", "vorausnehmen": "vorausnehm", "voraussah": "voraussah", "voraussahen": "voraussah", "voraussehen": "vorausseh", "voraussetze": "voraussetz", "voraussetzen": "voraussetz", "voraussetzet": "voraussetzet", "voraussetzt": "voraussetzt", "voraussetzte": "voraussetzt", "voraussetzung": "voraussetz", "voraussetzungen": "voraussetz", "voraussicht": "voraussicht", "voraussichtlich": "voraussicht", "vorauswissen": "vorauswiss", "vorauszufahren": "vorauszufahr", "vorauszuschickenden": "vorauszuschick", "vorauszusehen": "vorauszuseh", "vorauszusetzen": "vorauszusetz", "vorbedacht": "vorbedacht", "vorbedachten": "vorbedacht", "vorbei": "vorbei", "vorbeigehn": "vorbeigehn", "vorbeikam": "vorbeikam", "vorbeireitens": "vorbeireit", "vorbeistob": "vorbeistob", "vorbeizogen": "vorbeizog", "vorbemerkungen": "vorbemerk", "vorbereitender": "vorbereit", "vorbereitet": "vorbereitet", "vorbereitete": "vorbereitet", "vorbereitung": "vorbereit", "vorbereitungen": "vorbereit", "vorberg": "vorberg", "vorbestimmt": "vorbestimmt", "vorbeugen": "vorbeug", "vorbild": "vorbild", "vorbilde": "vorbild", "vorbilden": "vorbild", "vorbildende": "vorbild", "vorbilder": "vorbild", "vorbildern": "vorbild", "vorbildet": "vorbildet", "vorbildete": "vorbildet", "vorbildeten": "vorbildet", "vorbildlich": "vorbild", "vorbildliche": "vorbild", "vorbildlichen": "vorbild", "vorbildliches": "vorbild", "vorbildung": "vorbild", "vorbildungen": "vorbild", "vorbrachte": "vorbracht", "vorbrechenden": "vorbrech", "vorbringen": "vorbring", "vordem": "vord", "vordere": "vord", "vorderen": "vord", "vordergrund": "vordergrund", "vorderhand": "vorderhand", "vorderkrällchen": "vorderkrallch", "vorderriss": "vorderriss", "vordersten": "vorderst", "vorderster": "vorderst", "vordringen": "vordring", "voreilig": "voreil", "voreiligen": "voreil", "voreinander": "voreinand", "voreingenommenheit": "voreingenomm", "voreltern": "vorelt", "vorenthalten": "vorenthalt", "vorenthielt": "vorenthielt", "vorerst": "vorerst", "vorfahren": "vorfahr", "vorfall": "vorfall", "vorfalle": "vorfall", "vorfälle": "vorfall", "vorfalles": "vorfall", "vorfand": "vorfand", "vorfiel": "vorfiel", "vorfielen": "vorfiel", "vorfinden": "vorfind", "vorfindet": "vorfindet", "vorg": "vorg", "vorgab": "vorgab", "vorgang": "vorgang", "vorgänger": "vorgang", "vorganges": "vorgang", "vorgeben": "vorgeb", "vorgebeugt": "vorgebeugt", "vorgebildet": "vorgebildet", "vorgebildete": "vorgebildet", "vorgebildeten": "vorgebildet", "vorgebogenem": "vorgebog", "vorgebracht": "vorgebracht", "vorgebrachten": "vorgebracht", "vorgefahren": "vorgefahr", "vorgefassten": "vorgefasst", "vorgefaßten": "vorgefasst", "vorgefühl": "vorgefuhl", "vorgegangen": "vorgegang", "vorgehalten": "vorgehalt", "vorgehe": "vorgeh", "vorgehen": "vorgeh", "vorgehenden": "vorgeh", "vorgeht": "vorgeht", "vorgeladen": "vorgelad", "vorgelassen": "vorgelass", "vorgelegt": "vorgelegt", "vorgelegten": "vorgelegt", "vorgemacht": "vorgemacht", "vorgenommen": "vorgenomm", "vorgenommene": "vorgenomm", "vorgerückt": "vorgeruckt", "vorgerückteren": "vorgeruckt", "vorgesagt": "vorgesagt", "vorgeschlagen": "vorgeschlag", "vorgeschoben": "vorgeschob", "vorgeschrieben": "vorgeschrieb", "vorgeschriebene": "vorgeschrieb", "vorgesehen": "vorgeseh", "vorgesehene": "vorgeseh", "vorgesetzt": "vorgesetzt", "vorgesetzte": "vorgesetzt", "vorgesetzten": "vorgesetzt", "vorgesetzter": "vorgesetzt", "vorgesetztes": "vorgesetzt", "vorgesteckt": "vorgesteckt", "vorgestellet": "vorgestellet", "vorgestellt": "vorgestellt", "vorgestern": "vorg", "vorgestreckten": "vorgestreckt", "vorgetragen": "vorgetrag", "vorgezogen": "vorgezog", "vorgezogene": "vorgezog", "vorging": "vorging", "vorhabe": "vorhab", "vorhaben": "vorhab", "vorhabenden": "vorhab", "vorhalle": "vorhall", "vorhält": "vorhalt", "vorhalten": "vorhalt", "vorhanden": "vorhand", "vorhandenen": "vorhand", "vorhang": "vorhang", "vorhänge": "vorhang", "vorhangs": "vorhang", "vorhast": "vorhast", "vorhat": "vorhat", "vorhatte": "vorhatt", "vorhatten": "vorhatt", "vorhaut": "vorhaut", "vorhemdchen": "vorhemdch", "vorhemden": "vorhemd", "vorher": "vorh", "vorherbestimmt": "vorherbestimmt", "vorherbestimmten": "vorherbestimmt", "vorherbestimmung": "vorherbestimm", "vorhergegangen": "vorhergegang", "vorhergehen": "vorhergeh", "vorhergehend": "vorhergeh", "vorhergehende": "vorhergeh", "vorhergehenden": "vorhergeh", "vorhergehendes": "vorhergeh", "vorhergehn": "vorhergehn", "vorhergeht": "vorhergeht", "vorhergenannten": "vorhergenannt", "vorhergesagt": "vorhergesagt", "vorhergesehen": "vorhergeseh", "vorherging": "vorherging", "vorherigen": "vorher", "vorherrschaft": "vorherrschaft", "vorherrschende": "vorherrsch", "vorherrscht": "vorherrscht", "vorhersage": "vorhersag", "vorhersah": "vorhersah", "vorhersehe": "vorherseh", "vorhersehen": "vorherseh", "vorhersehung": "vorherseh", "vorhersieht": "vorhersieht", "vorherverkündigung": "vorherverkund", "vorhielte": "vorhielt", "vorhin": "vorhin", "vorhof": "vorhof", "vorhöfe": "vorhof", "vorhöfen": "vorhof", "vorhofes": "vorhof", "vorhofs": "vorhof", "vorige": "vorig", "vorigen": "vorig", "voriger": "vorig", "vorkam": "vorkam", "vorkamen": "vorkam", "vorkomme": "vorkomm", "vorkommen": "vorkomm", "vorkommenden": "vorkomm", "vorkommendenfalls": "vorkommendenfall", "vorkommt": "vorkommt", "vorläßt": "vorlasst", "vorläufer": "vorlauf", "vorläufererfahrungen": "vorlaufererfahr", "vorläufig": "vorlauf", "vorläufigen": "vorlauf", "vorlaut": "vorlaut", "vorlegen": "vorleg", "vorlegung": "vorleg", "vorlesen": "vorles", "vorlesung": "vorles", "vorlieb": "vorlieb", "vorliebe": "vorlieb", "vorliegenden": "vorlieg", "vorliegt": "vorliegt", "vormachen": "vormach", "vormachte": "vormacht", "vormals": "vormal", "vormittag": "vormittag", "vormittags": "vormittag", "vormittagsarbeit": "vormittagsarbeit", "vormittagsimbiss": "vormittagsimbiss", "vormittagsstunden": "vormittagsstund", "vormöge": "vormog", "vormund": "vormund", "vormünder": "vormund", "vormundschaftliche": "vormundschaft", "vorn": "vorn", "vornahm": "vornahm", "vorne": "vorn", "vorneherein": "vorneherein", "vornehm": "vornehm", "vornehme": "vornehm", "vornehmen": "vornehm", "vornehmer": "vornehm", "vornehmes": "vornehm", "vornehmheit": "vornehm", "vornehmlich": "vornehm", "vornehmste": "vornehm", "vornehmsten": "vornehm", "vornherein": "vornherein", "vornüber": "vornub", "vorort": "vorort", "vorragendste": "vorrag", "vorrang": "vorrang", "vorrat": "vorrat", "vorräte": "vorrat", "vorratshause": "vorratshaus", "vorratshäuser": "vorratshaus", "vorratshäusern": "vorratshaus", "vorratslager": "vorratslag", "vorraum": "vorraum", "vorrecht": "vorrecht", "vorrechte": "vorrecht", "vorrede": "vorred", "vorrichtungen": "vorricht", "vors": "vor", "vorsagen": "vorsag", "vorsagte": "vorsagt", "vorsatz": "vorsatz", "vorsatze": "vorsatz", "vorsätzlich": "vorsatz", "vorsätzliche": "vorsatz", "vorschein": "vorschein", "vorschlag": "vorschlag", "vorschläge": "vorschlag", "vorschlagen": "vorschlag", "vorschlug": "vorschlug", "vorschneider": "vorschneid", "vorschreibt": "vorschreibt", "vorschrift": "vorschrift", "vorschriften": "vorschrift", "vorschub": "vorschub", "vorschulalter": "vorschulalt", "vorschule": "vorschul", "vorschussmilliarde": "vorschussmilliard", "vorschützen": "vorschutz", "vorsehen": "vorseh", "vorsehung": "vorseh", "vorsetzen": "vorsetz", "vorsetzlich": "vorsetz", "vorsetzt": "vorsetzt", "vorsetzte": "vorsetzt", "vorsicht": "vorsicht", "vorsichtig": "vorsicht", "vorsichtigem": "vorsicht", "vorsichtiger": "vorsicht", "vorsieht": "vorsieht", "vorsingen": "vorsing", "vorsitz": "vorsitz", "vorsitze": "vorsitz", "vorsitzender": "vorsitz", "vorsorge": "vorsorg", "vorspannt": "vorspannt", "vorspiegelungen": "vorspiegel", "vorspiel": "vorspiel", "vorsprung": "vorsprung", "vorstadt": "vorstadt", "vorstadtstrasse": "vorstadtstrass", "vorstadtstraße": "vorstadtstrass", "vorstand": "vorstand", "vorstandes": "vorstand", "vorstehenden": "vorsteh", "vorsteherin": "vorsteherin", "vorstelle": "vorstell", "vorstellen": "vorstell", "vorstellend": "vorstell", "vorstelleten": "vorstellet", "vorstellte": "vorstellt", "vorstellten": "vorstellt", "vorstellung": "vorstell", "vorstellungen": "vorstell", "vorstellungsart": "vorstellungsart", "vorstellungsweise": "vorstellungsweis", "vorsündflutlichen": "vorsundflut", "vorteil": "vorteil", "vorteile": "vorteil", "vorteilen": "vorteil", "vorteilhaft": "vorteilhaft", "vorteilhaften": "vorteilhaft", "vorteilhaftes": "vorteilhaft", "vorteilhaftesten": "vorteilhaft", "vorteils": "vorteil", "vortrag": "vortrag", "vortrage": "vortrag", "vorträge": "vortrag", "vortragen": "vortrag", "vorträgen": "vortrag", "vorträgt": "vortragt", "vortrefflich": "vortreff", "vortreffliche": "vortreff", "vortrefflichen": "vortreff", "vortrefflicher": "vortreff", "vortrefflichkeit": "vortreff", "vortrefflichste": "vortreff", "vortritt": "vortritt", "vortrug": "vortrug", "vortuch": "vortuch", "vortuchbandeln": "vortuchbandeln", "vorüber": "vorub", "vorüberdrehte": "voruberdreht", "vorübergegangen": "vorubergegang", "vorübergehen": "vorubergeh", "vorübergehend": "vorubergeh", "vorübergehenden": "vorubergeh", "vorübergehendste": "vorubergeh", "vorübergeht": "vorubergeht", "vorüberging": "voruberging", "vorübergingen": "voruberging", "vorüberkam": "voruberkam", "vorüberkamen": "voruberkam", "vorüberlässt": "voruberlasst", "vorüberreiten": "voruberreit", "vorüberschwebte": "voruberschwebt", "vorüberwallte": "voruberwallt", "vorüberwehen": "voruberweh", "vorüberzieht": "voruberzieht", "vorurteilen": "vorurteil", "vorverhandlungen": "vorverhandl", "vorversammlungen": "vorversamml", "vorwalten": "vorwalt", "vorwaltender": "vorwalt", "vorwaltet": "vorwaltet", "vorwand": "vorwand", "vorwärts": "vorwart", "vorwärtsgehen": "vorwartsgeh", "vorwärtszukommen": "vorwartszukomm", "vorwegstiehlt": "vorwegstiehlt", "vorweihnachtlichen": "vorweihnacht", "vorweisen": "vorweis", "vorwelt": "vorwelt", "vorwerfen": "vorwerf", "vorwiegend": "vorwieg", "vorwort": "vorwort", "vorwurf": "vorwurf", "vorwürfe": "vorwurf", "vorwürfen": "vorwurf", "vorzeichen": "vorzeich", "vorzeichnung": "vorzeichn", "vorzeit": "vorzeit", "vorziehen": "vorzieh", "vorzieht": "vorzieht", "vorzimmer": "vorzimm", "vorzimmern": "vorzimm", "vorzimmers": "vorzimm", "vorzog": "vorzog", "vorzogen": "vorzog", "vorzubereiten": "vorzubereit", "vorzubilden": "vorzubild", "vorzubringen": "vorzubring", "vorzufliegen": "vorzuflieg", "vorzug": "vorzug", "vorzuge": "vorzug", "vorzüge": "vorzug", "vorzugeben": "vorzugeb", "vorzügen": "vorzug", "vorzuges": "vorzug", "vorzüglich": "vorzug", "vorzügliche": "vorzug", "vorzüglichen": "vorzug", "vorzügliches": "vorzug", "vorzüglichste": "vorzug", "vorzüglichsten": "vorzug", "vorzüglichstes": "vorzug", "vorzugsweise": "vorzugsweis", "vorzuhalten": "vorzuhalt", "vorzumachen": "vorzumach", "vorzunehmen": "vorzunehm", "vorzurücken": "vorzuruck", "vorzuschlagen": "vorzuschlag", "vorzuspielen": "vorzuspiel", "vorzustellen": "vorzustell", "vorzuwerfen": "vorzuwerf", "vorzuziehen": "vorzuzieh", "vox": "vox", "vreeli": "vreeli", "vrenchen": "vrench", "vrenchens": "vrench", "vrenches": "vrench", "vrenggel": "vrenggel", "vroni": "vroni", "vulgo": "vulgo", "vulkan": "vulkan", "w": "w", "waadtländer": "waadtland", "waage": "waag", "waagwirt": "waagwirt", "waagwirtes": "waagwirt", "waar": "waar", "wach": "wach", "wachdienst": "wachdien", "wache": "wach", "wachen": "wach", "wachenden": "wachend", "wachender": "wachend", "wacherhalten": "wacherhalt", "wachet": "wachet", "wacholderkraut": "wacholderkraut", "wachs": "wach", "wachsam": "wachsam", "wachsames": "wachsam", "wachsen": "wachs", "wachsende": "wachsend", "wachsenden": "wachsend", "wachsender": "wachsend", "wachskerzen": "wachskerz", "wachsleinwand": "wachsleinwand", "wachslichter": "wachslicht", "wächst": "wach", "wachstum": "wachstum", "wachsweissem": "wachsweiss", "wacht": "wacht", "wachte": "wacht", "wachtel": "wachtel", "wachteln": "wachteln", "wächter": "wacht", "wächtern": "wacht", "wächters": "wacht", "wachtmeister": "wachtmeist", "wackeligen": "wackel", "wackeln": "wackeln", "wackelte": "wackelt", "wacker": "wack", "wackere": "wack", "wackeren": "wack", "wackeres": "wack", "wackern": "wack", "waden": "wad", "wadenmuskeln": "wadenmuskeln", "wadenstrümpfen": "wadenstrumpf", "waffe": "waff", "waffeleisen": "waffeleis", "waffen": "waff", "waffenstillstand": "waffenstillstand", "wägelchen": "wagelch", "wagemutes": "wagemut", "wagen": "wag", "wagenpolster": "wagenpol", "wagens": "wag", "wagenschmiere": "wagenschmi", "wagenverkehr": "wagenverkehr", "wagerl": "wagerl", "wäget": "waget", "waghalsigen": "waghals", "wagner": "wagn", "wagt": "wagt", "wagte": "wagt", "wagten": "wagt", "wahl": "wahl", "wahlablauf": "wahlablauf", "wahlbehinderung": "wahlbehinder", "wahlbenachrichtigung": "wahlbenachricht", "wahlbeobachter": "wahlbeobacht", "wahlbeobachterinnen": "wahlbeobachterinn", "wahlbeobachtung": "wahlbeobacht", "wahlberechtigte": "wahlberechtigt", "wahlberechtigten": "wahlberechtigt", "wahlberechtigung": "wahlberecht", "wahlberliner": "wahlberlin", "wahlbezirken": "wahlbezirk", "wahlbüro": "wahlburo", "wahlbüros": "wahlburos", "wähle": "wahl", "wahlen": "wahl", "wählen": "wahl", "wählenden": "wahlend", "wähler": "wahl", "wahlergebnis": "wahlergebnis", "wahlergebnisse": "wahlergebnis", "wählerinnen": "wahlerinn", "wählete": "wahlet", "wahlgeschäft": "wahlgeschaft", "wahlhandlung": "wahlhandl", "wahlhelfer": "wahlhelf", "wählig": "wahlig", "wähligem": "wahlig", "wahljahr": "wahljahr", "wahlkabine": "wahlkabin", "wahlkampagne": "wahlkampagn", "wahlkampf": "wahlkampf", "wahlkampfes": "wahlkampf", "wahlkommission": "wahlkommission", "wahlkommissionen": "wahlkommission", "wahlkreis": "wahlkreis", "wahlkundgebung": "wahlkundgeb", "wahlleiter": "wahlleit", "wahlleiters": "wahlleit", "wahlliste": "wahllist", "wahllisten": "wahllist", "wahllokal": "wahllokal", "wahlmorgen": "wahlmorg", "wahlspruch": "wahlspruch", "wählt": "wahlt", "wahltag": "wahltag", "wahltage": "wahltag", "wählte": "wahlt", "wählten": "wahlt", "wahlumschlag": "wahlumschlag", "wahlunregelmässigkeiten": "wahlunregelmass", "wahlurnen": "wahlurn", "wahlvorgang": "wahlvorgang", "wahlvorgängen": "wahlvorgang", "wahlzettel": "wahlzettel", "wahn": "wahn", "wahne": "wahn", "wähnen": "wahn", "wähnend": "wahnend", "wahnsinn": "wahnsinn", "wahnsinnig": "wahnsinn", "wahnsinns": "wahnsinn", "wähnt": "wahnt", "wähnte": "wahnt", "wähnten": "wahnt", "wahr": "wahr", "wahre": "wahr", "währe": "wahr", "wahrem": "wahr", "wahren": "wahr", "während": "wahrend", "währenddessen": "wahrenddess", "wahrer": "wahr", "wahres": "wahr", "währete": "wahret", "wahrgenommen": "wahrgenomm", "wahrhaft": "wahrhaft", "wahrhafte": "wahrhaft", "wahrhaftig": "wahrhaft", "wahrhaftige": "wahrhaft", "wahrhaftiger": "wahrhaft", "wahrhaftigkeit": "wahrhaft", "wahrhaftigsten": "wahrhaft", "wahrheit": "wahrheit", "wahrheiten": "wahrheit", "wahrlich": "wahrlich", "wahrnahm": "wahrnahm", "wahrnehmbar": "wahrnehmbar", "wahrnehmbarer": "wahrnehmbar", "wahrnehme": "wahrnehm", "wahrnehmen": "wahrnehm", "wahrnehmung": "wahrnehm", "wahrnehmungen": "wahrnehm", "wahrnimmt": "wahrnimmt", "wahrsagen": "wahrsag", "wahrsager": "wahrsag", "wahrsagern": "wahrsag", "wahrschein": "wahrschein", "wahrscheinlich": "wahrschein", "wahrscheinlicherweise": "wahrscheinlicherweis", "wahrscheinlichkeit": "wahrschein", "wahrscheinlichste": "wahrschein", "währt": "wahrt", "wahrte": "wahrt", "währte": "wahrt", "währungsunion": "wahrungsunion", "wahrzeichen": "wahrzeich", "wahrzunehmen": "wahrzunehm", "waisen": "wais", "waisenfelde": "waisenfeld", "waisenkind": "waisenkind", "waisenvogt": "waisenvogt", "walchensee": "walchense", "walchental": "walchental", "wald": "wald", "waldboden": "waldbod", "wäldchen": "waldch", "walde": "wald", "waldecke": "waldeck", "wälder": "wald", "wäldern": "wald", "waldes": "wald", "waldesel": "waldesel", "waldflächen": "waldflach", "waldfrevel": "waldfrevel", "waldfrohen": "waldfroh", "waldgras": "waldgras", "waldgrund": "waldgrund", "waldhorn": "waldhorn", "waldhornbläser": "waldhornblas", "waldigen": "waldig", "waldmoose": "waldmoos", "waldpfade": "waldpfad", "waldpfades": "waldpfad", "waldrand": "waldrand", "waldrevier": "waldrevi", "waldrücken": "waldruck", "waldsaum": "waldsaum", "waldstämme": "waldstamm", "waldsträsschen": "waldstrassch", "waldstrasse": "waldstrass", "waldtiere": "waldti", "waldungen": "waldung", "waldwegen": "waldweg", "waldweges": "waldweg", "walfisch": "walfisch", "walfische": "walfisch", "wall": "wall", "wallen": "wall", "wallende": "wallend", "wallte": "wallt", "walten": "walt", "waltende": "waltend", "waltet": "waltet", "waltete": "waltet", "wälze": "walz", "wälzen": "walz", "walzer": "walz", "wälzte": "walzt", "wammen": "wamm", "wams": "wam", "wämsern": "wams", "wand": "wand", "wände": "wand", "wandel": "wandel", "wandellose": "wandellos", "wandeln": "wandeln", "wandelnd": "wandelnd", "wandelnde": "wandelnd", "wandelnden": "wandelnd", "wandelndes": "wandelnd", "wandels": "wandel", "wandelt": "wandelt", "wandelte": "wandelt", "wandelten": "wandelt", "wänden": "wand", "wanderbuch": "wanderbuch", "wanderbücher": "wanderbuch", "wanderbum": "wanderbum", "wanderburn": "wanderburn", "wanderer": "wand", "wandergeräte": "wandergerat", "wanderjünglinge": "wanderjungling", "wandern": "wand", "wanderschaft": "wanderschaft", "wandert": "wandert", "wanderte": "wandert", "wanderten": "wandert", "wanderung": "wander", "wanderungen": "wander", "wanderzeit": "wanderzeit", "wandle": "wandl", "wandrer": "wandr", "wandschränkchen": "wandschrankch", "wandte": "wandt", "wandten": "wandt", "wanduhr": "wanduhr", "wandwinkel": "wandwinkel", "wange": "wang", "wangen": "wang", "wanke": "wank", "wanken": "wank", "wann": "wann", "wanne": "wann", "wannenbreit": "wannenbreit", "wanze": "wanz", "wanzen": "wanz", "wapp": "wapp", "wappen": "wapp", "war": "war", "wär": "war", "ward": "ward", "ware": "war", "wäre": "war", "waren": "war", "wären": "war", "warenlager": "warenlag", "warenmagazinen": "warenmagazin", "wärest": "war", "wäret": "waret", "warf": "warf", "warfen": "warf", "warm": "warm", "warme": "warm", "wärme": "warm", "warmen": "warm", "wärmen": "warm", "warmer": "warm", "wärmer": "warm", "warmes": "warm", "wärmsten": "warm", "warne": "warn", "warnend": "warnend", "warnenden": "warnend", "warnt": "warnt", "warnung": "warnung", "warnungsruf": "warnungsruf", "warst": "warst", "wärst": "warst", "wart": "wart", "warte": "wart", "wartei": "wartei", "warteliste": "wartelist", "warten": "wart", "wartendes": "wartend", "wartet": "wartet", "wartete": "wartet", "warteten": "wartet", "wartst": "wart", "warum": "warum", "was": "was", "waschbottich": "waschbottich", "waschbündel": "waschbundel", "wäsche": "wasch", "waschen": "wasch", "wäschepacken": "waschepack", "wäscherei": "wascherei", "wäscherin": "wascherin", "wäschestück": "waschestuck", "waschtisch": "waschtisch", "waschungen": "waschung", "washingtoner": "washington", "wasser": "wass", "wasseramsel": "wasseramsel", "wasseraugen": "wasseraug", "wasserblaue": "wasserblau", "wasserdünste": "wasserdun", "wassereimer": "wassereim", "wasserfläche": "wasserflach", "wasserflut": "wasserflut", "wasserfluten": "wasserflut", "wasserfrau": "wasserfrau", "wasserfürsten": "wasserfurst", "wassergegend": "wassergeg", "wassergewimmels": "wassergewimmel", "wasserhose": "wasserhos", "wasserhosen": "wasserhos", "wässerig": "wasser", "wässeriger": "wasser", "wässerlein": "wasserlein", "wasserleitung": "wasserleit", "wasserleitungen": "wasserleit", "wassermann": "wassermann", "wassermanns": "wassermann", "wassern": "wass", "wässern": "wass", "wässerndem": "wassernd", "wassernixen": "wassernix", "wasserpfuscherei": "wasserpfuscherei", "wasserpolacken": "wasserpolack", "wasserquelle": "wasserquell", "wasserquellen": "wasserquell", "wasserrosen": "wasserros", "wassers": "wass", "wasserscheu": "wasserscheu", "wasserschlange": "wasserschlang", "wasserschlangen": "wasserschlang", "wassersee": "wasserse", "wasserseen": "wasserse", "wasserspritzen": "wasserspritz", "wasserstar": "wasserstar", "wasserstrahl": "wasserstrahl", "wasserstreif": "wasserstreif", "wassersturz": "wassersturz", "wässert": "wassert", "wässerte": "wassert", "wasserträger": "wassertrag", "wassertrog": "wassertrog", "wassertropfen": "wassertropf", "wassertümpel": "wassertumpel", "waste": "wast", "watteweissen": "watteweiss", "wattierten": "wattiert", "watzmann": "watzmann", "we": "we", "web": "web", "weben": "web", "weber": "web", "weberschiffchen": "weberschiffch", "website": "websit", "webt": "webt", "webte": "webt", "wechsel": "wechsel", "wechselbalg": "wechselbalg", "wechselbriefe": "wechselbrief", "wechselgesang": "wechselgesang", "wechseln": "wechseln", "wechselnden": "wechselnd", "wechselseitig": "wechselseit", "wechselt": "wechselt", "wechselte": "wechselt", "wechselten": "wechselt", "weck": "weck", "wecken": "weck", "weckt": "weckt", "weckte": "weckt", "weckten": "weckt", "wedelnden": "wedelnd", "weder": "wed", "weg": "weg", "wegbereit": "wegbereit", "wegbiegung": "wegbieg", "wegbleiben": "wegbleib", "wegblendete": "wegblendet", "wegblickt": "wegblickt", "wegbringen": "wegbring", "wege": "weg", "wegekrautes": "wegekraut", "wegen": "weg", "weges": "weg", "wegfahren": "wegfahr", "wegfliegen": "wegflieg", "wegführe": "wegfuhr", "wegführen": "wegfuhr", "wegg": "wegg", "weggebracht": "weggebracht", "weggefahren": "weggefahr", "weggefallen": "weggefall", "weggefegt": "weggefegt", "weggeflogen": "weggeflog", "weggeführt": "weggefuhrt", "weggegangen": "weggegang", "weggehen": "weggeh", "weggehoben": "weggehob", "weggeholt": "weggeholt", "weggekommen": "weggekomm", "weggeleugnet": "weggeleugnet", "weggenommen": "weggenomm", "weggerafft": "weggerafft", "weggerissen": "weggeriss", "weggeschafft": "weggeschafft", "weggeschoben": "weggeschob", "weggespült": "weggespult", "weggestorben": "weggestorb", "weggetrieben": "weggetrieb", "weggewendet": "weggewendet", "weggeworfen": "weggeworf", "weggezerrt": "weggezerrt", "weggezogen": "weggezog", "weggingest": "wegging", "weggucht": "weggucht", "wegkommen": "wegkomm", "wegliessen": "wegliess", "wegmachen": "wegmach", "wegmarschierte": "wegmarschiert", "wegnahme": "wegnahm", "wegnehme": "wegnehm", "wegnehmen": "wegnehm", "wegnimmt": "wegnimmt", "wegräumung": "wegraum", "wegrichtung": "wegricht", "wegsah": "wegsah", "wegschaffen": "wegschaff", "wegschaffung": "wegschaff", "wegsetzt": "wegsetzt", "wegsortiert": "wegsortiert", "wegspringen": "wegspring", "wegstiesse": "wegstiess", "wegstrebten": "wegstrebt", "wegströmte": "wegstromt", "wegstunde": "wegstund", "wegtragen": "wegtrag", "wegtreiben": "wegtreib", "wegtreibt": "wegtreibt", "wegtrieb": "wegtrieb", "wegtrieben": "wegtrieb", "wegvernünfteln": "wegvernunfteln", "wegwenden": "wegwend", "wegwerfen": "wegwerf", "wegwerfend": "wegwerf", "wegwischen": "wegwisch", "wegwürfe": "wegwurf", "wegzogen": "wegzog", "wegzubringen": "wegzubring", "wegzufahren": "wegzufahr", "wegzufangen": "wegzufang", "wegzugehen": "wegzugeh", "wegzuheben": "wegzuheb", "wegzuholen": "wegzuhol", "wegzukommen": "wegzukomm", "wegzumachen": "wegzumach", "wegzunehmen": "wegzunehm", "wegzupraktizieren": "wegzupraktizi", "wegzuraffen": "wegzuraff", "wegzuschaffen": "wegzuschaff", "wegzuschicken": "wegzuschick", "weh": "weh", "wehe": "weh", "wehen": "weh", "wehendem": "wehend", "wehenden": "wehend", "wehes": "weh", "wehet": "wehet", "wehetuender": "wehetu", "wehklage": "wehklag", "wehklagen": "wehklag", "wehklagenden": "wehklag", "wehmut": "wehmut", "wehmütig": "wehmut", "wehmütige": "wehmut", "wehmutsvoll": "wehmutsvoll", "wehmutter": "wehmutt", "wehmütter": "wehmutt", "wehmüttern": "wehmutt", "weho": "weho", "wehr": "wehr", "wehrbaren": "wehrbar", "wehrbarkeit": "wehrbar", "wehrdienst": "wehrdien", "wehren": "wehr", "wehrend": "wehrend", "wehret": "wehret", "wehrhaft": "wehrhaft", "wehrhaften": "wehrhaft", "wehrlos": "wehrlos", "wehrlosen": "wehrlos", "wehrte": "wehrt", "wehselig": "wehsel", "weht": "weht", "wehte": "weht", "wehten": "weht", "wehtun": "wehtun", "wehwehchen": "wehwehch", "weib": "weib", "weibchen": "weibch", "weibe": "weib", "weibel": "weibel", "weiber": "weib", "weibergut": "weibergut", "weibergute": "weibergut", "weibergutes": "weibergut", "weiberhaare": "weiberhaar", "weiberkleidern": "weiberkleid", "weiberl": "weiberl", "weiberlaunischen": "weiberlaun", "weibern": "weib", "weibernücken": "weibernuck", "weiberschuhe": "weiberschuh", "weibervolk": "weibervolk", "weibes": "weib", "weiblein": "weiblein", "weibleins": "weiblein", "weiblich": "weiblich", "weibliche": "weiblich", "weiblichen": "weiblich", "weiblicher": "weiblich", "weibliches": "weiblich", "weiblichkeit": "weiblich", "weibsbild": "weibsbild", "weibsbilder": "weibsbild", "weibsleut": "weibsleut", "weibsleute": "weibsleut", "weibsperson": "weibsperson", "weibstück": "weibstuck", "weich": "weich", "weiche": "weich", "weichen": "weich", "weicher": "weich", "weicheren": "weich", "weiches": "weich", "weichet": "weichet", "weichherzigen": "weichherz", "weichlichen": "weichlich", "weichquark": "weichquark", "weichsel": "weichsel", "weichste": "weich", "weicht": "weicht", "weide": "weid", "weiden": "weid", "weidenbaum": "weidenbaum", "weidenden": "weidend", "weidenringe": "weidenring", "weidenröschen": "weidenrosch", "weidenrosen": "weidenros", "weidenstauden": "weidenstaud", "weidet": "weidet", "weidete": "weidet", "weidgerechteste": "weidgerecht", "weidlich": "weidlich", "weidmann": "weidmann", "weidmannes": "weidmann", "weidmannsfreude": "weidmannsfreud", "weidmannspech": "weidmannspech", "weidmannstod": "weidmannstod", "weidwerk": "weidwerk", "weidwund": "weidwund", "weigern": "weig", "weigerst": "weigerst", "weigert": "weigert", "weigerung": "weiger", "weih": "weih", "weihbischof": "weihbischof", "weihe": "weih", "weihen": "weih", "weihevollen": "weihevoll", "weihnachten": "weihnacht", "weihnachtsbäumchen": "weihnachtsbaumch", "weihnachtsbäumen": "weihnachtsbaum", "weihnachtsengelchen": "weihnachtsengelch", "weihnachtsgarten": "weihnachtsgart", "weihnachtslied": "weihnachtslied", "weihnachtsmann": "weihnachtsmann", "weihnachtsnüsse": "weihnachtsnuss", "weihnachtsstube": "weihnachtsstub", "weihnachtssüssigkeiten": "weihnachtssuss", "weihnachtstisch": "weihnachtst", "weihnachtsvesper": "weihnachtsvesp", "weihnachtswiese": "weihnachtswies", "weihrauch": "weihrauch", "weil": "weil", "weilchen": "weilch", "weile": "weil", "weilen": "weil", "weilt": "weilt", "weilte": "weilt", "wein": "wein", "weinbeere": "weinbe", "weinberg": "weinberg", "weinberge": "weinberg", "weinbergswachteln": "weinbergswachteln", "weine": "wein", "weinen": "wein", "weinend": "weinend", "weinendes": "weinend", "weinerlich": "wein", "weines": "wein", "weinet": "weinet", "weinflaschen": "weinflasch", "weingärtner": "weingartn", "weingefässe": "weingefass", "weingefäße": "weingefass", "weinreben": "weinreb", "weinrot": "weinrot", "weins": "wein", "weinsorten": "weinsort", "weinstock": "weinstock", "weint": "weint", "weinte": "weint", "weinten": "weint", "weintrinken": "weintrink", "weintrinker": "weintrink", "weise": "weis", "weisen": "weis", "weiser": "weis", "weisesten": "weis", "weisheit": "weisheit", "weisheiten": "weisheit", "weisheitslehre": "weisheitslehr", "weisheitslehrer": "weisheitslehr", "weislich": "weislich", "weiss": "weiss", "weiß": "weiss", "weissage": "weissag", "weissagen": "weissag", "weissagenden": "weissag", "weissagt": "weissagt", "weissagte": "weissagt", "weissagung": "weissag", "weissbefilzte": "weissbefilzt", "weißbefilzte": "weissbefilzt", "weissbrot": "weissbrot", "weisse": "weiss", "weiße": "weiss", "weissem": "weiss", "weißem": "weiss", "weissen": "weiss", "weißen": "weiss", "weisser": "weiss", "weißer": "weiss", "weisseren": "weiss", "weisses": "weiss", "weißes": "weiss", "weissgetünchten": "weissgetuncht", "weißgetünchten": "weissgetuncht", "weissgetüpfeltem": "weissgetupfelt", "weissglasierte": "weissglasiert", "weisshaarige": "weisshaar", "weißhaarige": "weisshaar", "weisshaupt": "weisshaupt", "weisskohl": "weisskohl", "weissleinen": "weisslein", "weißleinen": "weisslein", "weissseidenen": "weissseid", "weißseidenen": "weissseid", "weisst": "weisst", "weißt": "weisst", "weist": "weist", "weisung": "weisung", "weisungen": "weisung", "weisungsbefugnisse": "weisungsbefugnis", "weit": "weit", "weite": "weit", "weitem": "weit", "weiten": "weit", "weitentlegenen": "weitentleg", "weiter": "weit", "weitere": "weit", "weiterem": "weit", "weiteren": "weit", "weiterer": "weit", "weiteres": "weit", "weiterfliehen": "weiterflieh", "weiterführen": "weiterfuhr", "weitergang": "weitergang", "weitergebildet": "weitergebildet", "weitergebracht": "weitergebracht", "weitergegangen": "weitergegang", "weitergegeben": "weitergegeb", "weitergehen": "weitergeh", "weitergezogen": "weitergezog", "weiterhin": "weiterhin", "weiterjagte": "weiterjagt", "weitern": "weit", "weiterrutschte": "weiterrutscht", "weiters": "weit", "weiterschritten": "weiterschritt", "weitersprach": "weitersprach", "weiterverkauft": "weiterverkauft", "weiterziehen": "weiterzieh", "weiterzogen": "weiterzog", "weiterzuführen": "weiterzufuhr", "weiterzureden": "weiterzured", "weites": "weit", "weitesten": "weit", "weitgedehnte": "weitgedehnt", "weitgehend": "weitgeh", "weitgespannten": "weitgespannt", "weitherausstehenden": "weitheraussteh", "weithin": "weithin", "weithingestreckt": "weithingestreckt", "weitläufig": "weitlauf", "weitläufige": "weitlauf", "weitläufigen": "weitlauf", "weitschwingende": "weitschwing", "weizen": "weiz", "weizenbrot": "weizenbrot", "weizenmehl": "weizenmehl", "weizens": "weiz", "welch": "welch", "welche": "welch", "welchem": "welch", "welchen": "welch", "welcher": "welch", "welcherart": "welcherart", "welcherlei": "welcherlei", "welches": "welch", "welk": "welk", "welken": "welk", "welkenden": "welkend", "well": "well", "welle": "well", "wellen": "well", "wellenfurchen": "wellenfurch", "welt": "welt", "weltall": "weltall", "weltalls": "weltall", "weltanschauung": "weltanschau", "weltanschauungfragen": "weltanschauungfrag", "weltbau": "weltbau", "weltbegebenheiten": "weltbegeb", "weltbetrachtung": "weltbetracht", "weltbewegenden": "weltbeweg", "weltbund": "weltbund", "weltbundes": "weltbund", "welten": "welt", "weltenmenge": "weltenmeng", "weltenraum": "weltenraum", "weltgebäudes": "weltgebaud", "weltkongress": "weltkongress", "weltkörper": "weltkorp", "weltkreis": "weltkreis", "weltkreises": "weltkreis", "weltkrieg": "weltkrieg", "weltkriegs": "weltkrieg", "weltlich": "weltlich", "weltliche": "weltlich", "weltlichen": "weltlich", "weltlicher": "weltlich", "weltliches": "weltlich", "weltlicht": "weltlicht", "weltliebe": "weltlieb", "weltmann": "weltmann", "weltmeers": "weltme", "weltnacht": "weltnacht", "weltordnung": "weltordn", "weltregierer": "weltregi", "weltschmerzlich": "weltschmerz", "weltschöpfer": "weltschopf", "weltstrome": "weltstrom", "weltteilen": "weltteil", "welturheber": "welturheb", "welturhebers": "welturheb", "weltursachen": "weltursach", "weltverantwortung": "weltverantwort", "weltweisheit": "weltweis", "weltweit": "weltweit", "wem": "wem", "wen": "wen", "wende": "wend", "wenden": "wend", "wendend": "wendend", "wendenden": "wendend", "wendet": "wendet", "wendete": "wendet", "wendeten": "wendet", "wendrich": "wendrich", "wendung": "wendung", "wendungen": "wendung", "wenig": "wenig", "wenige": "wenig", "wenigem": "wenig", "wenigen": "wenig", "weniger": "wenig", "wenigere": "wenig", "weniges": "wenig", "wenigsten": "wenig", "wenigstens": "wenigst", "wenn": "wenn", "wenngleich": "wenngleich", "wenzel": "wenzel", "wer": "wer", "werbebeschränkungen": "werbebeschrank", "werben": "werb", "werd": "werd", "werde": "werd", "werden": "werd", "werdend": "werdend", "werdende": "werdend", "werdenden": "werdend", "werdest": "werd", "werdet": "werdet", "werfe": "werf", "werfen": "werf", "werften": "werft", "werg": "werg", "wergg": "wergg", "werk": "werk", "werke": "werk", "werkeltagskleider": "werkeltagskleid", "werken": "werk", "werkes": "werk", "werkführer": "werkfuhr", "werkführers": "werkfuhr", "werkmeister": "werkmeist", "werkstatt": "werkstatt", "werktag": "werktag", "werktagen": "werktag", "werktagsmontur": "werktagsmontur", "werktätigen": "werktat", "werktätigkeit": "werktat", "werkzeug": "werkzeug", "werkzeuge": "werkzeug", "werkzeugliches": "werkzeug", "wert": "wert", "werte": "wert", "werten": "wert", "werterziehung": "werterzieh", "werteste": "wert", "werteverfall": "werteverfall", "wertlos": "wertlos", "wertlose": "wertlos", "wertlosigkeit": "wertlos", "werts": "wert", "wertvoll": "wertvoll", "wertvolle": "wertvoll", "wertvollen": "wertvoll", "wertvollste": "wertvoll", "wes": "wes", "wesen": "wes", "wesenlosen": "wesenlos", "wesens": "wes", "wesentlich": "wesent", "wesentliche": "wesent", "wesentlichen": "wesent", "wesentlicher": "wesent", "wesentliches": "wesent", "wesentlichste": "wesent", "weshalb": "weshalb", "wespe": "wesp", "wessen": "wess", "west": "west", "westdeutschen": "westdeutsch", "westdeutscher": "westdeutsch", "westdeutschland": "westdeutschland", "weste": "west", "westen": "west", "westenstoff": "westenstoff", "westenstreifen": "westenstreif", "westfalen": "westfal", "westfirmen": "westfirm", "westlertum": "westlertum", "westlichen": "westlich", "westliches": "westlich", "westschweizer": "westschweiz", "westtürkischen": "westturk", "westwind": "westwind", "westwindes": "westwind", "weswegen": "wesweg", "wette": "wett", "wetteifern": "wetteif", "wetteiferten": "wetteifert", "wetten": "wett", "wetter": "wett", "wetterbeschädigten": "wetterbeschadigt", "wetternacht": "wetternacht", "wetters": "wett", "wetterwendisch": "wetterwend", "wetterwind": "wetterwind", "wettkampf": "wettkampf", "wettlauf": "wettlauf", "wettlaufens": "wettlauf", "wettstreit": "wettstreit", "wetzend": "wetzend", "wetzte": "wetzt", "wich": "wich", "wichen": "wich", "wichte": "wicht", "wichtig": "wichtig", "wichtige": "wichtig", "wichtigem": "wichtig", "wichtigen": "wichtig", "wichtiger": "wichtig", "wichtigere": "wichtig", "wichtigeren": "wichtig", "wichtiges": "wichtig", "wichtigkeit": "wichtig", "wichtigste": "wichtig", "wichtigsten": "wichtig", "wichtigtuerei": "wichtigtuerei", "wickelkindchen": "wickelkindch", "wickelte": "wickelt", "widder": "widd", "widderfellen": "widderfell", "widdern": "widd", "widders": "widd", "wide": "wid", "wider": "wid", "widerfahre": "widerfahr", "widerfahren": "widerfahr", "widerfährt": "widerfahrt", "widerfuhr": "widerfuhr", "widergehallt": "widergehallt", "widergöttlich": "widergott", "widerhaarig": "widerhaar", "widerhall": "widerhall", "widerhallte": "widerhallt", "widerhallten": "widerhallt", "widerlegen": "widerleg", "widerlegt": "widerlegt", "widerlegung": "widerleg", "widerlegungen": "widerleg", "widerlich": "wid", "widerlichen": "wid", "widerred": "widerred", "widerrede": "widerred", "widersacher": "widersach", "widerschein": "widerschein", "widersetzen": "widersetz", "widersetzlichkeit": "widersetz", "widersetzt": "widersetzt", "widersetzte": "widersetzt", "widersetzten": "widersetzt", "widersetzung": "widersetz", "widersinnig": "widersinn", "widersinnisch": "widersinn", "widerspenstig": "widerspenst", "widerspenstige": "widerspenst", "widerspenstigsten": "widerspenst", "widerspiele": "widerspiel", "widersprach": "widersprach", "widerspreche": "widersprech", "widersprechen": "widersprech", "widersprechend": "widersprech", "widersprechende": "widersprech", "widersprechenden": "widersprech", "widersprechender": "widersprech", "widerspricht": "widerspricht", "widerspruch": "widerspruch", "widersprüche": "widerspruch", "widerspruchs": "widerspruch", "widerstand": "widerstand", "widerstande": "widerstand", "widerstanden": "widerstand", "widerstandes": "widerstand", "widerstandslos": "widerstandslos", "widerstehen": "widersteh", "widerstehende": "widersteh", "widerstehendes": "widersteh", "widersteht": "widersteht", "widerstrebe": "widerstreb", "widerstreben": "widerstreb", "widerstrebend": "widerstreb", "widerstrebt": "widerstrebt", "widerstrebte": "widerstrebt", "widerstrebung": "widerstreb", "widerstreit": "widerstreit", "widerstreiten": "widerstreit", "widerstreitende": "widerstreit", "widerstreitet": "widerstreitet", "widerstreits": "widerstreit", "widertönen": "widerton", "widerwärtig": "widerwart", "widerwärtige": "widerwart", "widerwärtiger": "widerwart", "widerwärtigsten": "widerwart", "widerwillen": "widerwill", "widerwillens": "widerwill", "widerwillig": "widerwill", "widerwilliges": "widerwill", "widmen": "widm", "widmet": "widmet", "widmete": "widmet", "widrig": "widrig", "widrige": "widrig", "widrigen": "widrig", "widrigenfalls": "widrigenfall", "wie": "wie", "wieder": "wied", "wiederaufbaus": "wiederaufbaus", "wiederaufleben": "wiederaufleb", "wiederaufnahmen": "wiederaufnahm", "wiederaufrichtungen": "wiederaufricht", "wiederbekam": "wiederbekam", "wiederbekomme": "wiederbekomm", "wiederbelebt": "wiederbelebt", "wiederbringer": "wiederbring", "wiederentdeckung": "wiederentdeck", "wiedererlangte": "wiedererlangt", "wiederfanden": "wiederfand", "wiederfinden": "wiederfind", "wiederfindens": "wiederfind", "wiedergabe": "wiedergab", "wiedergebären": "wiedergebar", "wiedergebärer": "wiedergebar", "wiedergebärers": "wiedergebar", "wiedergebiert": "wiedergebiert", "wiedergeboren": "wiedergebor", "wiedergeborene": "wiedergebor", "wiedergeborenen": "wiedergebor", "wiedergeburt": "wiedergeburt", "wiedergefunden": "wiedergefund", "wiedergekehrten": "wiedergekehrt", "wiedergekommen": "wiedergekomm", "wiedergewann": "wiedergewann", "wiedergewinnen": "wiedergewinn", "wiedergewonnenen": "wiedergewonn", "wiedergutmachung": "wiedergutmach", "wiederhergestellt": "wiederhergestellt", "wiederherstellung": "wiederherstell", "wiederherzustellen": "wiederherzustell", "wiederhole": "wiederhol", "wiederholen": "wiederhol", "wiederholt": "wiederholt", "wiederholte": "wiederholt", "wiederholten": "wiederholt", "wiederholung": "wiederhol", "wiederkam": "wiederkam", "wiederkäme": "wiederkam", "wiederkehr": "wiederkehr", "wiederkehren": "wiederkehr", "wiederkehrenden": "wiederkehr", "wiederkehrt": "wiederkehrt", "wiederklingen": "wiederkling", "wiederkommen": "wiederkomm", "wiederkommt": "wiederkommt", "wiedersehen": "wiederseh", "wiederum": "wiederum", "wiedervereinigung": "wiederverein", "wiedervergeltung": "wiedervergelt", "wiederzufinden": "wiederzufind", "wiederzugebärenden": "wiederzugebar", "wiederzukehren": "wiederzukehr", "wiege": "wieg", "wiegen": "wieg", "wiegt": "wiegt", "wiegte": "wiegt", "wiehernde": "wiehernd", "wiehernden": "wiehernd", "wien": "wien", "wiener": "wien", "wies": "wies", "wiese": "wies", "wiesen": "wies", "wiesenblühenden": "wiesenbluh", "wiesenfleck": "wiesenfleck", "wiesengarten": "wiesengart", "wiesengrunde": "wiesengrund", "wiesengründe": "wiesengrund", "wiesenrande": "wiesenrand", "wieserl": "wieserl", "wieso": "wieso", "wieviel": "wieviel", "wieviele": "wieviel", "wiewohl": "wiewohl", "wild": "wild", "wildbach": "wildbach", "wildbäche": "wildbach", "wilddieb": "wilddieb", "wilddieben": "wilddieb", "wilde": "wild", "wilden": "wild", "wilder": "wild", "wilderer": "wild", "wildes": "wild", "wildeste": "wild", "wildesten": "wild", "wildester": "wild", "wildfänge": "wildfang", "wildfremde": "wildfremd", "wildfremden": "wildfremd", "wildgarten": "wildgart", "wildheit": "wildheit", "wildnis": "wildnis", "wildnisse": "wildnis", "wildschütz": "wildschutz", "wildschützen": "wildschutz", "wildschwein": "wildschwein", "wildtauben": "wildtaub", "wildwechseln": "wildwechseln", "wildwegen": "wildweg", "wilfriede": "wilfried", "wilhelmine": "wilhelmin", "wilhelminenburg": "wilhelminenburg", "will": "will", "wille": "will", "willem": "will", "willen": "will", "willenbestimmend": "willenbestimm", "willenlos": "willenlos", "willens": "will", "willensanstrengung": "willensanstreng", "willensbestimmung": "willensbestimm", "willensbestimmungen": "willensbestimm", "willensgebiet": "willensgebiet", "willensgebietes": "willensgebiet", "willensleben": "willensleb", "willensvermögen": "willensvermog", "willfahren": "willfahr", "willfährig": "willfahr", "willfährigkeit": "willfahr", "willig": "willig", "willige": "willig", "willigen": "willig", "williges": "willig", "willigte": "willigt", "willkommen": "willkomm", "willkommene": "willkomm", "willkommenen": "willkomm", "willkür": "willkur", "willkürlich": "willkur", "willkürliche": "willkur", "willst": "will", "wimmeln": "wimmeln", "wimmelt": "wimmelt", "wimmelte": "wimmelt", "wimmelten": "wimmelt", "wimpern": "wimp", "wind": "wind", "windbruchfläche": "windbruchflach", "winde": "wind", "winden": "wind", "windend": "windend", "windes": "wind", "windeswehen": "windesweh", "windet": "windet", "windfahne": "windfahn", "windfaust": "windfaust", "windhauch": "windhauch", "windliese": "windlies", "windlüfte": "windluft", "windspiele": "windspiel", "windstillen": "windstill", "windstoss": "windstoss", "windstoß": "windstoss", "wink": "wink", "winke": "wink", "winkel": "winkel", "winkeladvokaten": "winkeladvokat", "winkelei": "winkelei", "winkeleien": "winkelei", "winkelförmig": "winkelform", "winkelmass": "winkelmass", "winkeln": "winkeln", "winkelschenke": "winkelschenk", "winken": "wink", "winkliges": "winklig", "winkt": "winkt", "winkte": "winkt", "winkten": "winkt", "winktest": "winkt", "winseln": "winseln", "winter": "wint", "winterfelder": "winterfeld", "winterfest": "winterf", "winterkohlköpfe": "winterkohlkopf", "winterlichen": "wint", "winterlicht": "winterlicht", "winterprogramm": "winterprogramm", "winters": "wint", "winterszeit": "winterszeit", "wintervormittag": "wintervormittag", "winterwetter": "winterwett", "winzig": "winzig", "winzige": "winzig", "winzigen": "winzig", "winziger": "winzig", "winziges": "winzig", "winzigsten": "winzig", "wipfel": "wipfel", "wipfeln": "wipfeln", "wipp": "wipp", "wippespiel": "wippespiel", "wippte": "wippt", "wir": "wir", "wirbel": "wirbel", "wirbelquirlen": "wirbelquirl", "wirbelte": "wirbelt", "wirbelwind": "wirbelwind", "wirbt": "wirbt", "wird": "wird", "wirf": "wirf", "wirft": "wirft", "wirke": "wirk", "wirken": "wirk", "wirkende": "wirkend", "wirkenden": "wirkend", "wirkender": "wirkend", "wirkens": "wirk", "wirket": "wirket", "wirklich": "wirklich", "wirkliche": "wirklich", "wirklichen": "wirklich", "wirklicher": "wirklich", "wirkliches": "wirklich", "wirklichgemacht": "wirklichgemacht", "wirklichkeit": "wirklich", "wirklichmachung": "wirklichmach", "wirklichwerden": "wirklichwerd", "wirklichzumachen": "wirklichzumach", "wirksame": "wirksam", "wirksamen": "wirksam", "wirksamkeit": "wirksam", "wirkt": "wirkt", "wirkte": "wirkt", "wirkung": "wirkung", "wirkungen": "wirkung", "wirkungskreis": "wirkungskreis", "wirkungsstätten": "wirkungsstatt", "wirrbärte": "wirrbart", "wirrem": "wirr", "wirrsal": "wirrsal", "wirrwarr": "wirrwarr", "wirst": "wirst", "wirt": "wirt", "wirte": "wirt", "wirten": "wirt", "wirtes": "wirt", "wirtin": "wirtin", "wirtliche": "wirtlich", "wirtschaft": "wirtschaft", "wirtschaftliche": "wirtschaft", "wirtschaftlichen": "wirtschaft", "wirtschaftlicher": "wirtschaft", "wirtschafts": "wirtschaft", "wirtschaftsmobiliar": "wirtschaftsmobiliar", "wirtschaftsplatz": "wirtschaftsplatz", "wirtschaftspolitische": "wirtschaftspolit", "wirtschaftswachstum": "wirtschaftswachstum", "wirtshaus": "wirtshaus", "wirtshause": "wirtshaus", "wirtshäuser": "wirtshaus", "wirtshäusern": "wirtshaus", "wirtshauses": "wirtshaus", "wirtshausfenstern": "wirtshausfen", "wirtshausrechnungen": "wirtshausrechn", "wirtstisch": "wirtstisch", "wirtstochter": "wirtstocht", "wischen": "wisch", "wischer": "wisch", "wischt": "wischt", "wischte": "wischt", "wischten": "wischt", "wisperte": "wispert", "wiss": "wiss", "wissbegierde": "wissbegierd", "wißbegierde": "wissbegierd", "wisse": "wiss", "wissen": "wiss", "wissend": "wissend", "wissende": "wissend", "wissenden": "wissend", "wissender": "wissend", "wissens": "wiss", "wissenschaft": "wissenschaft", "wissenschaften": "wissenschaft", "wissenschaftler": "wissenschaftl", "wissenschaftlich": "wissenschaft", "wissenschaftliche": "wissenschaft", "wissenschaftlichem": "wissenschaft", "wissenschaftlichen": "wissenschaft", "wissenschaftliches": "wissenschaft", "wissest": "wiss", "wisset": "wisset", "wisst": "wisst", "wißt": "wisst", "wisstümlich": "wisstum", "wißtümlich": "wisstum", "wisstümliche": "wisstum", "wißtümliche": "wisstum", "wisstümlichem": "wisstum", "wißtümlichem": "wisstum", "wisstümlichen": "wisstum", "wißtümlichen": "wisstum", "wisstümlicher": "wisstum", "wißtümlicher": "wisstum", "wisstümliches": "wisstum", "wißtümliches": "wisstum", "witsch": "witsch", "wittenberg": "wittenberg", "wittern": "witt", "witterte": "wittert", "witterten": "wittert", "witterung": "witter", "witterungsvermögen": "witterungsvermog", "witwe": "witw", "witwen": "witw", "witwengehalt": "witwengehalt", "witwenschaft": "witwenschaft", "witwer": "witw", "witz": "witz", "witze": "witz", "witzelt": "witzelt", "witzen": "witz", "witzig": "witzig", "witziger": "witzig", "witzigste": "witzig", "witzigsten": "witzig", "wizenmann": "wizenmann", "wo": "wo", "woanders": "woand", "woass": "woass", "wobei": "wobei", "woch": "woch", "woche": "woch", "wochen": "woch", "wochenlang": "wochenlang", "wochenzeitschrift": "wochenzeitschrift", "wochenzeitung": "wochenzeit", "wodurch": "wodurch", "wofern": "wof", "wofür": "wofur", "wogegen": "wogeg", "wogenden": "wogend", "wogt": "wogt", "wogte": "wogt", "woher": "woh", "wohin": "wohin", "wohl": "wohl", "wohlakzentuierte": "wohlakzentuiert", "wohlan": "wohlan", "wohlanständigen": "wohlanstand", "wohlauf": "wohlauf", "wohlbebaut": "wohlbebaut", "wohlbefinden": "wohlbefind", "wohlbegütert": "wohlbegutert", "wohlbehagen": "wohlbehag", "wohlbekannte": "wohlbekannt", "wohlbekannten": "wohlbekannt", "wohlbeschaffenes": "wohlbeschaff", "wohlbesorgte": "wohlbesorgt", "wohlbestellte": "wohlbestellt", "wohlbestellten": "wohlbestellt", "wohlbewaffnet": "wohlbewaffnet", "wohlbewusster": "wohlbewusst", "wohldenkenden": "wohldenk", "wohlduftende": "wohlduft", "wohldurchgebildeter": "wohldurchgebildet", "wohler": "wohl", "wohlergehen": "wohlergeh", "wohlergehens": "wohlergeh", "wohlerhaltenes": "wohlerhalt", "wohlerworbenes": "wohlerworb", "wohlerzogenen": "wohlerzog", "wohlfahrtsbeamten": "wohlfahrtsbeamt", "wohlfeil": "wohlfeil", "wohlfeiles": "wohlfeil", "wohlgeartet": "wohlgeartet", "wohlgeartete": "wohlgeartet", "wohlgeborgen": "wohlgeborg", "wohlgefallen": "wohlgefall", "wohlgefallens": "wohlgefall", "wohlgefällig": "wohlgefall", "wohlgefällige": "wohlgefall", "wohlgefälliges": "wohlgefall", "wohlgefälligsten": "wohlgefall", "wohlgefällt": "wohlgefallt", "wohlgefiel": "wohlgefiel", "wohlgefüllten": "wohlgefullt", "wohlgefütterten": "wohlgefuttert", "wohlgekleideten": "wohlgekleidet", "wohlgelehrt": "wohlgelehrt", "wohlgelungenen": "wohlgel", "wohlgemeinte": "wohlgemeint", "wohlgemerkt": "wohlgemerkt", "wohlgemut": "wohlgemut", "wohlgemute": "wohlgemut", "wohlgenährten": "wohlgenahrt", "wohlgeordneten": "wohlgeordnet", "wohlgepflegte": "wohlgepflegt", "wohlgeputzte": "wohlgeputzt", "wohlgeratener": "wohlgerat", "wohlgeratenes": "wohlgerat", "wohlgeruch": "wohlgeruch", "wohlgerüche": "wohlgeruch", "wohlgesalzener": "wohlgesalz", "wohlgesicherte": "wohlgesichert", "wohlgesinneten": "wohlgesinnet", "wohlgesinnte": "wohlgesinnt", "wohlgestaltete": "wohlgestaltet", "wohlgestaltetes": "wohlgestaltet", "wohlhabende": "wohlhab", "wohlhabender": "wohlhab", "wohlhabenheit": "wohlhab", "wohlhergestellten": "wohlhergestellt", "wohligen": "wohlig", "wohliger": "wohlig", "wohliges": "wohlig", "wohlklang": "wohlklang", "wohlklingenden": "wohlkling", "wohllaut": "wohllaut", "wohllautenden": "wohllaut", "wohlleben": "wohlleb", "wohlmeinenden": "wohlmein", "wohlrasierten": "wohlrasiert", "wohlriechenden": "wohlriech", "wohlschmeckenden": "wohlschmeck", "wohlseins": "wohlsein", "wohlstand": "wohlstand", "wohlständchen": "wohlstandch", "wohlstandes": "wohlstand", "wohltat": "wohltat", "wohltaten": "wohltat", "wohltätigem": "wohltat", "wohltätigen": "wohltat", "wohltätigkeit": "wohltat", "wohltätigste": "wohltat", "wohltuend": "wohltuend", "wohltun": "wohltun", "wohltuns": "wohltun", "wohlverdienten": "wohlverdient", "wohlverhalten": "wohlverhalt", "wohlverhaltens": "wohlverhalt", "wohlversehen": "wohlverseh", "wohlverstanden": "wohlverstand", "wohlweisen": "wohlweis", "wohlwillst": "wohlwill", "wohlwollen": "wohlwoll", "wohlwollend": "wohlwoll", "wohlwollende": "wohlwoll", "wohlwollenden": "wohlwoll", "wohlwollender": "wohlwoll", "wohlwollendste": "wohlwoll", "wohlwollens": "wohlwoll", "wohlwollte": "wohlwollt", "wohlzutun": "wohlzutun", "wohne": "wohn", "wohnen": "wohn", "wohnend": "wohnend", "wohnenden": "wohnend", "wohnet": "wohnet", "wohnheim": "wohnheim", "wohnlich": "wohnlich", "wohnlichen": "wohnlich", "wohnraum": "wohnraum", "wohnstätte": "wohnstatt", "wohnstube": "wohnstub", "wohnt": "wohnt", "wohnte": "wohnt", "wohnten": "wohnt", "wohnung": "wohnung", "wohnungen": "wohnung", "wohnungstür": "wohnungstur", "wohnzimmer": "wohnzimm", "wölbten": "wolbt", "wölbung": "wolbung", "wolf": "wolf", "wölfe": "wolf", "wolff": "wolff", "wolhyniens": "wolhyni", "wölkchen": "wolkch", "wolke": "wolk", "wolken": "wolk", "wolkenbase": "wolkenbas", "wolkenberge": "wolkenberg", "wolkenbruch": "wolkenbruch", "wolkenfenster": "wolkenfen", "wolkenfrau": "wolkenfrau", "wolkenhülle": "wolkenhull", "wolkenkuppel": "wolkenkuppel", "wolkenlos": "wolkenlos", "wolkenriss": "wolkenriss", "wolkensäule": "wolkensaul", "wolkenschiff": "wolkenschiff", "wolkenschneider": "wolkenschneid", "wolkenwände": "wolkenwand", "woll": "woll", "wolle": "woll", "wollen": "woll", "wollende": "wollend", "wollenden": "wollend", "wollendes": "wollend", "wollenen": "woll", "wollens": "woll", "wollet": "wollet", "wollt": "wollt", "wollte": "wollt", "wollten": "wollt", "wolltest": "wollt", "wolltet": "wolltet", "wollust": "wollust", "wollüste": "wollust", "wollüstig": "wollust", "womit": "womit", "womöglich": "womog", "wonach": "wonach", "wonne": "wonn", "wonnegefühl": "wonnegefuhl", "wonnen": "wonn", "wonnevoll": "wonnevoll", "wonnevolle": "wonnevoll", "wonnigen": "wonnig", "woran": "woran", "worauf": "worauf", "woraus": "woraus", "worbs": "worb", "word": "word", "worden": "word", "worfen": "worf", "worin": "worin", "workshops": "workshops", "world": "world", "wort": "wort", "wortbedeutung": "wortbedeut", "wortbeiträge": "wortbeitrag", "worte": "wort", "worten": "wort", "wörter": "wort", "wörterbuch": "worterbuch", "wörtern": "wort", "wörtersprache": "wortersprach", "wortes": "wort", "wortkarg": "wortkarg", "wortkarge": "wortkarg", "wörtl": "wortl", "wortlaut": "wortlaut", "wörtlein": "wortlein", "wörtlich": "wortlich", "wortlos": "wortlos", "wortlosen": "wortlos", "wortschatz": "wortschatz", "wortstreit": "wortstreit", "wortwechsel": "wortwechsel", "wortwechselte": "wortwechselt", "worüber": "worub", "worum": "worum", "worunter": "worunt", "wos": "wos", "wovon": "wovon", "wozu": "wozu", "wuchernden": "wuchernd", "wucherte": "wuchert", "wucherten": "wuchert", "wuchs": "wuch", "wuchsen": "wuchs", "wuchses": "wuchs", "wucht": "wucht", "wühlen": "wuhl", "wühlte": "wuhlt", "wulla": "wulla", "wunde": "wund", "wunden": "wund", "wunder": "wund", "wunderbar": "wunderbar", "wunderbare": "wunderbar", "wunderbaren": "wunderbar", "wunderbarer": "wunderbar", "wunderbares": "wunderbar", "wunderbarste": "wunderbarst", "wunderbarsten": "wunderbarst", "wundere": "wund", "wunderkur": "wunderkur", "wunderlich": "wund", "wunderliche": "wund", "wunderlichen": "wund", "wunderlicher": "wund", "wunderlicherweise": "wunderlicherweis", "wunderlichste": "wund", "wunderlieben": "wunderlieb", "wundermächtige": "wundermacht", "wundern": "wund", "wunders": "wund", "wundersam": "wundersam", "wundersame": "wundersam", "wundersamen": "wundersam", "wundersamer": "wundersam", "wundersames": "wundersam", "wunderschön": "wunderschon", "wunderschöne": "wunderschon", "wunderschönen": "wunderschon", "wunderschönes": "wunderschon", "wundert": "wundert", "wunderte": "wundert", "wunderten": "wundert", "wundertiefen": "wundertief", "wundertier": "wunderti", "wundervoll": "wundervoll", "wundervolle": "wundervoll", "wundervoller": "wundervoll", "wundervolles": "wundervoll", "wunderzeichen": "wunderzeich", "wundre": "wundr", "wundzudrücken": "wundzudruck", "wunsch": "wunsch", "wünsch": "wunsch", "wünschbare": "wunschbar", "wünschbarsten": "wunschbarst", "wunsche": "wunsch", "wünsche": "wunsch", "wünschen": "wunsch", "wünschenswert": "wunschenswert", "wünschenswerten": "wunschenswert", "wunsches": "wunsch", "wünschet": "wunschet", "wünscht": "wunscht", "wünschte": "wunscht", "wünschten": "wunscht", "wunsiedel": "wunsiedel", "wunsiedels": "wunsiedel", "wupp": "wupp", "würd": "wurd", "wurde": "wurd", "würde": "wurd", "wurden": "wurd", "würden": "wurd", "wurdest": "wurd", "würdest": "wurd", "würdet": "wurdet", "würdig": "wurdig", "würdige": "wurdig", "würdigen": "wurdig", "würdiger": "wurdig", "würdigkeit": "wurdig", "würdigte": "wurdigt", "würdst": "wurd", "würfeln": "wurfeln", "würfen": "wurf", "würgen": "wurg", "würgte": "wurgt", "wurm": "wurm", "würmchen": "wurmch", "würmer": "wurm", "wurmisierte": "wurmisiert", "wurst": "wurst", "würstchen": "wurstch", "würtembergischen": "wurtemberg", "würze": "wurz", "wurzel": "wurzel", "wurzelknorren": "wurzelknorr", "wurzeln": "wurzeln", "wurzelstock": "wurzelstock", "wurzelstöcke": "wurzelstock", "wurzelt": "wurzelt", "würzigen": "wurzig", "würzkrämer": "wurzkram", "würzte": "wurzt", "wurzweg": "wurzweg", "wusch": "wusch", "wuschelig": "wuschel", "wusst": "wusst", "wusste": "wusst", "wußte": "wusst", "wüsste": "wusst", "wüßte": "wusst", "wussten": "wusst", "wußten": "wusst", "wüssten": "wusst", "wüßten": "wusst", "wüsstens": "wusst", "wusstest": "wusst", "wüßtest": "wusst", "wüsstet": "wusstet", "wüßtet": "wusstet", "wüst": "wust", "wüste": "wust", "wüsten": "wust", "wüstenei": "wustenei", "wüsteneien": "wustenei", "wüstensand": "wustensand", "wüstenwirbelwetterhut": "wustenwirbelwetterhut", "wüster": "wust", "wut": "wut", "wüten": "wut", "wütend": "wutend", "wütenden": "wutend", "wütender": "wutend", "wütendere": "wutend", "wutentbrannt": "wutentbrannt", "www": "www", "x": "x", "yeni": "yeni", "yet": "yet", "york": "york", "z": "z", "zacken": "zack", "zackenwasser": "zackenwass", "zackige": "zackig", "zadoks": "zadok", "zagen": "zag", "zagend": "zagend", "zaghaft": "zaghaft", "zaghaftigkeit": "zaghaft", "zäh": "zah", "zähe": "zah", "zahl": "zahl", "zähl": "zahl", "zahle": "zahl", "zähle": "zahl", "zahlen": "zahl", "zählen": "zahl", "zahlende": "zahlend", "zähler": "zahl", "zahllos": "zahllos", "zahllose": "zahllos", "zahllosen": "zahllos", "zahlloser": "zahllos", "zahlrei": "zahlrei", "zahlreich": "zahlreich", "zahlreiche": "zahlreich", "zahlreichen": "zahlreich", "zahlreicher": "zahlreich", "zahlreichsten": "zahlreich", "zahlt": "zahlt", "zählt": "zahlt", "zahlte": "zahlt", "zählte": "zahlt", "zahlungen": "zahlung", "zahm": "zahm", "zahmen": "zahm", "zähmen": "zahm", "zahnbürste": "zahnburst", "zähnchen": "zahnch", "zähne": "zahn", "zähnefletschend": "zahnefletsch", "zähneklappernd": "zahneklappernd", "zähnen": "zahn", "zahnperlen": "zahnperl", "zamm": "zamm", "zammklauben": "zammklaub", "zammraumen": "zammraum", "zammtreffen": "zammtreff", "zängchen": "zangch", "zank": "zank", "zanken": "zank", "zänkereien": "zankerei", "zankes": "zank", "zänkischen": "zankisch", "zanklaute": "zanklaut", "zankt": "zankt", "zankte": "zankt", "zankten": "zankt", "zapfenbrett": "zapfenbrett", "zappeln": "zappeln", "zappelte": "zappelt", "zarge": "zarg", "zargen": "zarg", "zart": "zart", "zartem": "zart", "zarten": "zart", "zarter": "zart", "zarteren": "zart", "zartes": "zart", "zarteste": "zart", "zartesten": "zart", "zartgefühles": "zartgefuhl", "zartheit": "zartheit", "zärtlich": "zartlich", "zärtliche": "zartlich", "zärtlichen": "zartlich", "zärtliches": "zartlich", "zärtlichkeit": "zartlich", "zärtlichkeiten": "zartlich", "zärtlichste": "zartlich", "zaster": "zast", "zauber": "zaub", "zauberei": "zauberei", "zaubereien": "zauberei", "zauberer": "zaub", "zauberern": "zaub", "zauberfrau": "zauberfrau", "zauberhaften": "zauberhaft", "zauberhafter": "zauberhaft", "zauberhaftes": "zauberhaft", "zauberin": "zauberin", "zauberische": "zauber", "zauberkünste": "zauberkun", "zauberlaterne": "zauberlatern", "zaubermacht": "zaubermacht", "zaubermeister": "zaubermeist", "zaubern": "zaub", "zauberschlage": "zauberschlag", "zauberstab": "zauberstab", "zauberstabe": "zauberstab", "zauberstücke": "zauberstuck", "zauberwege": "zauberweg", "zauberworte": "zauberwort", "zauberzartes": "zauberzart", "zaum": "zaum", "zaume": "zaum", "zaun": "zaun", "zäune": "zaun", "zaunes": "zaun", "zaunlatten": "zaunlatt", "zausen": "zaus", "zebaoth": "zebaoth", "zeche": "zech", "zechen": "zech", "zechgelage": "zechgelag", "zechten": "zecht", "zedekia": "zedekia", "zeder": "zed", "zedern": "zed", "zedernholz": "zedernholz", "zehen": "zeh", "zehenspitzen": "zehenspitz", "zehenten": "zehent", "zehn": "zehn", "zehnfache": "zehnfach", "zehnjährige": "zehnjahr", "zehnjährigen": "zehnjahr", "zehnmal": "zehnmal", "zehnsaitigen": "zehnsait", "zehntausend": "zehntaus", "zehntausende": "zehntaus", "zehnte": "zehnt", "zehnten": "zehnt", "zehntes": "zehnt", "zehnzahl": "zehnzahl", "zehren": "zehr", "zehrpfennig": "zehrpfenn", "zehrte": "zehrt", "zehrung": "zehrung", "zeichen": "zeich", "zeichens": "zeich", "zeichne": "zeichn", "zeichners": "zeichn", "zeichnete": "zeichnet", "zeichnung": "zeichnung", "zeichnungen": "zeichnung", "zeid": "zeid", "zeiding": "zeiding", "zeig": "zeig", "zeige": "zeig", "zeigefinger": "zeigefing", "zeigen": "zeig", "zeiger": "zeig", "zeigst": "zeig", "zeigt": "zeigt", "zeigte": "zeigt", "zeigten": "zeigt", "zeile": "zeil", "zeiserl": "zeiserl", "zeisig": "zeisig", "zeit": "zeit", "zeitabläufe": "zeitablauf", "zeitabschnitte": "zeitabschnitt", "zeitalter": "zeitalt", "zeitaltern": "zeitalt", "zeitangabe": "zeitangab", "zeitaufwand": "zeitaufwand", "zeitbedingung": "zeitbeding", "zeitbegriff": "zeitbegriff", "zeiten": "zeit", "zeitenwechsel": "zeitenwechsel", "zeitgenossen": "zeitgenoss", "zeitlang": "zeitlang", "zeitlauf": "zeitlauf", "zeitläufe": "zeitlauf", "zeitlaufes": "zeitlauf", "zeitlaufs": "zeitlauf", "zeitlebens": "zeitleb", "zeitliche": "zeitlich", "zeitlichen": "zeitlich", "zeitlicherem": "zeitlich", "zeitmangel": "zeitmangel", "zeitminute": "zeitminut", "zeitpunkt": "zeitpunkt", "zeitpunkte": "zeitpunkt", "zeitpunkten": "zeitpunkt", "zeitraum": "zeitraum", "zeitraume": "zeitraum", "zeiträume": "zeitraum", "zeiträumen": "zeitraum", "zeitrechnung": "zeitrechn", "zeitschrift": "zeitschrift", "zeitschriften": "zeitschrift", "zeitung": "zeitung", "zeitungen": "zeitung", "zeitungsläden": "zeitungslad", "zeitverhältnisse": "zeitverhaltnis", "zeitverlauf": "zeitverlauf", "zeitvertreib": "zeitvertreib", "zeitvertreiber": "zeitvertreib", "zeitverwendung": "zeitverwend", "zeitweilig": "zeitweil", "zeitweiligen": "zeitweil", "zeitweise": "zeitweis", "zelebriert": "zelebriert", "zelt": "zelt", "zeltbewohners": "zeltbewohn", "zelte": "zelt", "zelten": "zelt", "zeltes": "zelt", "zeltlager": "zeltlag", "zen": "zen", "zentnerlast": "zentnerlast", "zentnern": "zentn", "zentnerschwer": "zentnerschw", "zentralbüro": "zentralburo", "zentraldorf": "zentraldorf", "zentralsekretär": "zentralsekretar", "zentralsekretärs": "zentralsekretar", "zentralstelle": "zentralstell", "zeph": "zeph", "zephanja": "zephanja", "zeppelinballons": "zeppelinballon", "zepter": "zept", "zerbläuen": "zerblau", "zerbrach": "zerbrach", "zerbräche": "zerbrach", "zerbreche": "zerbrech", "zerbrechen": "zerbrech", "zerbrechend": "zerbrech", "zerbrechlich": "zerbrech", "zerbricht": "zerbricht", "zerbrochen": "zerbroch", "zerbrochene": "zerbroch", "zerbrochenen": "zerbroch", "zerdrückt": "zerdruckt", "zerdrückte": "zerdruckt", "zerdrückten": "zerdruckt", "zeremonie": "zeremoni", "zeremoniell": "zeremoniell", "zerfahrenen": "zerfahr", "zerfallenden": "zerfall", "zerfallene": "zerfall", "zerfallenen": "zerfall", "zerfegte": "zerfegt", "zerfetzt": "zerfetzt", "zerfliesse": "zerfliess", "zerfliessen": "zerfliess", "zerfließen": "zerfliess", "zerfliesst": "zerfliesst", "zerfließt": "zerfliesst", "zerflog": "zerflog", "zerfressenen": "zerfress", "zergeht": "zergeht", "zergliedern": "zerglied", "zergliederung": "zerglieder", "zerhaue": "zerhau", "zerhauen": "zerhau", "zerhauend": "zerhau", "zerknicken": "zerknick", "zerknickten": "zerknickt", "zerknirscht": "zerknirscht", "zerknitterten": "zerknittert", "zerknittertes": "zerknittert", "zerkratzten": "zerkratzt", "zerlegte": "zerlegt", "zerlegung": "zerleg", "zermalme": "zermalm", "zermalmen": "zermalm", "zermalmend": "zermalm", "zermalmest": "zermalm", "zermalmt": "zermalmt", "zernagte": "zernagt", "zerraufte": "zerrauft", "zerreibend": "zerreib", "zerreissen": "zerreiss", "zerreißen": "zerreiss", "zerreissenden": "zerreiss", "zerreißenden": "zerreiss", "zerreisst": "zerreisst", "zerreißt": "zerreisst", "zerren": "zerr", "zerrieben": "zerrieb", "zerriss": "zerriss", "zerriß": "zerriss", "zerrissen": "zerriss", "zerrissene": "zerriss", "zerrissenen": "zerriss", "zerrt": "zerrt", "zerrte": "zerrt", "zerschellen": "zerschell", "zerschellt": "zerschellt", "zerschlagen": "zerschlag", "zerschlagener": "zerschlag", "zerschlitzt": "zerschlitzt", "zerschlug": "zerschlug", "zerschlugen": "zerschlug", "zerschmettert": "zerschmettert", "zerschnitten": "zerschnitt", "zerschnittenien": "zerschnitteni", "zerschossenen": "zerschoss", "zerspaltet": "zerspaltet", "zerspellten": "zerspellt", "zerspringen": "zerspring", "zerstampfen": "zerstampf", "zerstäubung": "zerstaub", "zerstibten": "zerstibt", "zerstieben": "zerstieb", "zerstoben": "zerstob", "zerstochen": "zerstoch", "zerstochene": "zerstoch", "zerstöre": "zerstor", "zerstören": "zerstor", "zerstörend": "zerstor", "zerstörende": "zerstor", "zerstört": "zerstort", "zerstörte": "zerstort", "zerstörten": "zerstort", "zerstörung": "zerstor", "zerstossen": "zerstoss", "zerstoßen": "zerstoss", "zerstossene": "zerstoss", "zerstoßene": "zerstoss", "zerstreuen": "zerstreu", "zerstreut": "zerstreut", "zerstreute": "zerstreut", "zerstreuten": "zerstreut", "zerstreutheit": "zerstreut", "zerstreuung": "zerstreu", "zerteilt": "zerteilt", "zerteilten": "zerteilt", "zertrennt": "zertrennt", "zertreten": "zertret", "zertretenen": "zertret", "zertrümmert": "zertrummert", "zertrümmerte": "zertrummert", "zertrümmerten": "zertrummert", "zertrümmertes": "zertrummert", "zerwühlt": "zerwuhlt", "zerzausten": "zerzaust", "zerzauster": "zerzaust", "zerzaustheit": "zerzaust", "zeter": "zet", "zettel": "zettel", "zettelchen": "zettelch", "zeug": "zeug", "zeuge": "zeug", "zeugen": "zeug", "zeugenaussagen": "zeugenaussag", "zeughäuser": "zeughaus", "zeughäusern": "zeughaus", "zeugin": "zeugin", "zeugnis": "zeugnis", "zeugnisse": "zeugnis", "zeugnisses": "zeugnis", "zeugschmied": "zeugschmied", "zeugschmiedgesell": "zeugschmiedgesell", "zeugte": "zeugt", "zeugten": "zeugt", "zeugung": "zeugung", "zeugungen": "zeugung", "zeugungsgliedern": "zeugungsglied", "zh": "zh", "zichorierte": "zichoriert", "zickzack": "zickzack", "zickzacklinien": "zickzacklini", "zidon": "zidon", "zidons": "zidon", "ziedern": "zied", "ziedert": "ziedert", "ziegel": "ziegel", "ziegelmachen": "ziegelmach", "ziegeln": "ziegeln", "ziegelofen": "ziegelof", "ziegelsteine": "ziegelstein", "ziegelsteinen": "ziegelstein", "ziegen": "zieg", "ziegenbart": "ziegenbart", "ziegenbock": "ziegenbock", "ziegenböcken": "ziegenbock", "ziegenkadaver": "ziegenkadav", "zieh": "zieh", "ziehbrunnen": "ziehbrunn", "ziehe": "zieh", "ziehen": "zieh", "ziehenden": "ziehend", "ziehet": "ziehet", "zieht": "zieht", "ziel": "ziel", "ziele": "ziel", "zielen": "ziel", "zieles": "ziel", "zielgewehren": "zielgewehr", "ziell": "ziell", "zielort": "zielort", "ziels": "ziel", "zielsicher": "zielsich", "zielte": "zielt", "ziemergerichte": "ziemergericht", "ziemern": "ziem", "ziemet": "ziemet", "ziemlich": "ziemlich", "ziemliche": "ziemlich", "ziemt": "ziemt", "ziemte": "ziemt", "ziepziep": "ziepziep", "zier": "zier", "zierde": "zierd", "zierden": "zierd", "zieren": "zier", "zierende": "zierend", "ziererei": "ziererei", "ziergewächs": "ziergewach", "zierlich": "zierlich", "zierliche": "zierlich", "zierlichem": "zierlich", "zierlichen": "zierlich", "zierlicher": "zierlich", "zierliches": "zierlich", "zierlichkeit": "zierlich", "zierlichste": "zierlich", "zierte": "ziert", "zierten": "ziert", "ziervolles": "ziervoll", "ziffer": "ziff", "zifferblatt": "zifferblatt", "ziffern": "ziff", "zigarette": "zigarett", "zigaretten": "zigarett", "zigarettenasche": "zigarettenasch", "zigarettendose": "zigarettendos", "zigarettenschachtel": "zigarettenschachtel", "zigarettenschachteln": "zigarettenschachteln", "zigarre": "zigarr", "zigarren": "zigarr", "zigarrenbengel": "zigarrenbengel", "zige": "zig", "zigeunerbande": "zigeunerband", "zillah": "zillah", "zillen": "zill", "zimbel": "zimbel", "zimbeln": "zimbeln", "zimmer": "zimm", "zimmerdecke": "zimmerdeck", "zimmergewehr": "zimmergewehr", "zimmern": "zimm", "zimmers": "zimm", "zimmervermieterin": "zimmervermieterin", "zimmet": "zimmet", "zimmetbüchschen": "zimmetbuchsch", "zimperlich": "zimp", "zimperlichen": "zimp", "zinn": "zinn", "zinne": "zinn", "zinnen": "zinn", "zinnernen": "zinnern", "zinnoberbergwerk": "zinnoberbergwerk", "zinnoberroten": "zinnoberrot", "zinsen": "zins", "zion": "zion", "zions": "zion", "zipfel": "zipfel", "zipfelhaube": "zipfelhaub", "zipfelkappe": "zipfelkapp", "zipfelkappen": "zipfelkapp", "zipfelmütze": "zipfelmutz", "zipfeln": "zipfeln", "zippora": "zippora", "zirka": "zirka", "zirkel": "zirkel", "zirkelte": "zirkelt", "zirkuliert": "zirkuliert", "zirkulierten": "zirkuliert", "zirpedirp": "zirpedirp", "zirpen": "zirp", "zisch": "zisch", "zischelndem": "zischelnd", "zischen": "zisch", "zischende": "zischend", "zischlauten": "zischlaut", "zischte": "zischt", "zisterzienserpater": "zisterzienserpat", "zitaten": "zitat", "zither": "zith", "zithern": "zith", "zitherspiel": "zitherspiel", "zitherspieler": "zitherspiel", "zitherspielern": "zitherspiel", "zitieren": "ziti", "zitiert": "zitiert", "zitronenschale": "zitronenschal", "zittern": "zitt", "zitternd": "zitternd", "zitternde": "zitternd", "zitternden": "zitternd", "zittert": "zittert", "zitterte": "zittert", "zitterten": "zittert", "zitty": "zitty", "zivildienst": "zivildien", "zivildienstleistende": "zivildienstleist", "zivildienstleistenden": "zivildienstleist", "zivildienstleistender": "zivildienstleist", "zivildienststelle": "zivildienststell", "zivildienststellen": "zivildienststell", "zivildiensttreffpunkt": "zivildiensttreffpunkt", "zivildienstzeit": "zivildienstzeit", "zivilgesellschaft": "zivilgesellschaft", "zivilpolizei": "zivilpolizei", "zivilpolizist": "zivilpolizist", "zivilpolizisten": "zivilpolizist", "zivis": "zivis", "zoba": "zoba", "zochar": "zochar", "zog": "zog", "zöge": "zog", "zogen": "zog", "zögern": "zog", "zögernd": "zogernd", "zögerte": "zogert", "zögerten": "zogert", "zöglinge": "zogling", "zöglingen": "zogling", "zölibat": "zolibat", "zollmass": "zollmass", "zollstock": "zollstock", "zoni": "zoni", "zony": "zony", "zoo": "zoo", "zoodirektor": "zoodirektor", "zoologen": "zoolog", "zopf": "zopf", "zöpfchen": "zopfch", "zöpfe": "zopf", "zorn": "zorn", "zorne": "zorn", "zornerregt": "zornerregt", "zornes": "zorn", "zornig": "zornig", "zornigen": "zornig", "zorniger": "zornig", "zorns": "zorn", "zottelig": "zottel", "zotteln": "zotteln", "zottelte": "zottelt", "zruck": "zruck", "zruckfahren": "zruckfahr", "zu": "zu", "zubereitet": "zubereitet", "zubereitungen": "zubereit", "zubrachte": "zubracht", "zubringen": "zubring", "zucht": "zucht", "zuchthaus": "zuchthaus", "zuchthauskost": "zuchthauskost", "züchtig": "zuchtig", "züchtigen": "zuchtig", "züchtiger": "zuchtig", "zuckbewegungen": "zuckbeweg", "zuckenden": "zuckend", "zucker": "zuck", "zuckerbäcker": "zuckerback", "zuckerbeck": "zuckerbeck", "zuckerbrot": "zuckerbrot", "zuckerbrücken": "zuckerbruck", "zuckerguss": "zuckerguss", "zuckerreste": "zuckerr", "zuckerwasser": "zuckerwass", "zuckerwerk": "zuckerwerk", "zuckte": "zuckt", "zuckten": "zuckt", "zudem": "zud", "zudringlich": "zudring", "zudringlichen": "zudring", "zudringlicher": "zudring", "zudringlichkeiten": "zudring", "zudringlichsten": "zudring", "zueigne": "zueign", "zueignen": "zueign", "zueilte": "zueilt", "zueilten": "zueilt", "zueinander": "zueinand", "zuerkannt": "zuerkannt", "zuerst": "zuerst", "zufall": "zufall", "zufalle": "zufall", "zufälle": "zufall", "zufällig": "zufall", "zufällige": "zufall", "zufälligen": "zufall", "zufälliger": "zufall", "zufälligerweise": "zufalligerweis", "zufälliges": "zufall", "zufälligkeit": "zufall", "zufalls": "zufall", "zufliessen": "zufliess", "zufließen": "zufliess", "zuflucht": "zuflucht", "zufluss": "zufluss", "zufluß": "zufluss", "zuflusses": "zufluss", "zufolge": "zufolg", "zufrieden": "zufried", "zufriedenem": "zufried", "zufriedener": "zufried", "zufriedenheit": "zufried", "zufriedenstellend": "zufriedenstell", "zufüge": "zufug", "zufügen": "zufug", "zufügt": "zufugt", "zuführen": "zufuhr", "zuführt": "zufuhrt", "zug": "zug", "zugabe": "zugab", "zugang": "zugang", "zugäng": "zugang", "zugangen": "zugang", "zuge": "zug", "züge": "zug", "zugeben": "zugeb", "zugebracht": "zugebracht", "zugebundenen": "zugebund", "zugedacht": "zugedacht", "zugedachte": "zugedacht", "zugedeckt": "zugedeckt", "zugeeignet": "zugeeignet", "zugefügt": "zugefugt", "zugeführt": "zugefuhrt", "zugegangen": "zugegang", "zugegebenermassen": "zugegebenermass", "zugegen": "zugeg", "zugegriffen": "zugegriff", "zugehen": "zugeh", "zugehörige": "zugehor", "zugehört": "zugehort", "zugeklappt": "zugeklappt", "zügel": "zugel", "zugelassen": "zugelass", "zügellosen": "zugellos", "zügellosigkeit": "zugellos", "zügelt": "zugelt", "zugemutet": "zugemutet", "zügen": "zug", "zugeneigt": "zugeneigt", "zugereist": "zugereist", "zugerichtet": "zugerichtet", "zugerufen": "zugeruf", "zugesagt": "zugesagt", "zugeschaut": "zugeschaut", "zugeschlagen": "zugeschlag", "zugeschneite": "zugeschneit", "zugeschoben": "zugeschob", "zugeschrieben": "zugeschrieb", "zugeschrieen": "zugeschrie", "zugesehen": "zugeseh", "zugesprochen": "zugesproch", "zugesprungen": "zugespr", "zugestanden": "zugestand", "zugestehen": "zugesteh", "zugestimmt": "zugestimmt", "zugestossen": "zugestoss", "zugetan": "zugetan", "zugetragen": "zugetrag", "zugetraut": "zugetraut", "zugewandt": "zugewandt", "zugewandten": "zugewandt", "zugewendet": "zugewendet", "zugewendetes": "zugewendet", "zugewiesene": "zugewies", "zugeworfen": "zugeworf", "zugezogen": "zugezog", "zugibt": "zugibt", "zuging": "zuging", "zugingen": "zuging", "zugleich": "zugleich", "zugnetz": "zugnetz", "zugreifen": "zugreif", "zugriff": "zugriff", "zugrunde": "zugrund", "zugrundegehen": "zugrundegeh", "zugrundeliegende": "zugrundelieg", "zugschlagen": "zugschlag", "zugunsten": "zugun", "zugut": "zugut", "zugute": "zugut", "zuhälterin": "zuhalterin", "zuhielt": "zuhielt", "zuhilfenahme": "zuhilfenahm", "zuhinterst": "zuhinterst", "zuhören": "zuhor", "zuhörer": "zuhor", "zuhörerinnen": "zuhorerinn", "zuhörers": "zuhor", "zuhörte": "zuhort", "zukam": "zukam", "zukehrte": "zukehrt", "zuknöpfte": "zuknopft", "zukomme": "zukomm", "zukommen": "zukomm", "zukommt": "zukommt", "zukunft": "zukunft", "zukünftige": "zukunft", "zukünftigen": "zukunft", "zulächelt": "zulachelt", "zulange": "zulang", "zulangen": "zulang", "zulänglichkeit": "zulang", "zulangt": "zulangt", "zulasse": "zulass", "zulassen": "zulass", "zulässigkeit": "zulass", "zulässt": "zulasst", "zuläßt": "zulasst", "zulassung": "zulass", "zulasten": "zulast", "zulauf": "zulauf", "zulegen": "zuleg", "zuleid": "zuleid", "zuleide": "zuleid", "zuletzt": "zuletzt", "zulief": "zulief", "zum": "zum", "zumachen": "zumach", "zumal": "zumal", "zumeist": "zumeist", "zumessen": "zumess", "zumindest": "zumind", "zumut": "zumut", "zumute": "zumut", "zumuten": "zumut", "zumutung": "zumut", "zumutungen": "zumut", "zunächst": "zunach", "zunahm": "zunahm", "zunahme": "zunahm", "zunahmen": "zunahm", "zünden": "zund", "zündet": "zundet", "zündete": "zundet", "zündschnur": "zundschnur", "zunehmen": "zunehm", "zunehmend": "zunehm", "zunehmende": "zunehm", "zunehmenden": "zunehm", "zunehmender": "zunehm", "zuneigung": "zuneig", "zunge": "zung", "züngelten": "zungelt", "zungen": "zung", "zungenfertigkeit": "zungenfert", "zungenspitze": "zungenspitz", "zünglein": "zunglein", "zunichte": "zunicht", "zunimmt": "zunimmt", "zuoberst": "zuoberst", "zupfen": "zupf", "zupfte": "zupft", "zur": "zur", "zürcher": "zurch", "zurecht": "zurecht", "zurechtfinden": "zurechtfind", "zurechtgelegt": "zurechtgelegt", "zurechtgerückt": "zurechtgeruckt", "zurechtgesetzt": "zurechtgesetzt", "zurechtgewiesen": "zurechtgewies", "zurechtschneiderte": "zurechtschneidert", "zurechtweisen": "zurechtweis", "zurechtweisung": "zurechtweis", "zurechtzufinden": "zurechtzufind", "zurechtzulegen": "zurechtzuleg", "zurechtzumachen": "zurechtzumach", "zurede": "zured", "zureden": "zured", "zureichend": "zureich", "zureichende": "zureich", "zureichenden": "zureich", "zürich": "zurich", "zurichten": "zuricht", "zurief": "zurief", "zürne": "zurn", "zürnen": "zurn", "zürnet": "zurnet", "zürnt": "zurnt", "zurück": "zuruck", "zurückbeziehen": "zuruckbezieh", "zurückbleiben": "zuruckbleib", "zurückbleibt": "zuruckbleibt", "zurückblicken": "zuruckblick", "zurückblieb": "zuruckblieb", "zurückbogen": "zuruckbog", "zurückbringe": "zuruckbring", "zurückbringen": "zuruckbring", "zurückdrängen": "zuruckdrang", "zurückdrängt": "zuruckdrangt", "zurückerhalten": "zuruckerhalt", "zurückerstatten": "zuruckerstatt", "zurückfällt": "zuruckfallt", "zurückfliehen": "zuruckflieh", "zurückfragen": "zuruckfrag", "zurückfuhr": "zuruckfuhr", "zurückführen": "zuruckfuhr", "zurückführte": "zuruckfuhrt", "zurückgeben": "zuruckgeb", "zurückgeblieben": "zuruckgeblieb", "zurückgebliebene": "zuruckgeblieb", "zurückgebliebenen": "zuruckgeblieb", "zurückgebracht": "zuruckgebracht", "zurückgedrängt": "zuruckgedrangt", "zurückgefallen": "zuruckgefall", "zurückgeführt": "zuruckgefuhrt", "zurückgeführte": "zuruckgefuhrt", "zurückgefunden": "zuruckgefund", "zurückgegangen": "zuruckgegang", "zurückgegeben": "zuruckgegeb", "zurückgehalten": "zuruckgehalt", "zurückgehen": "zuruckgeh", "zurückgehn": "zuruckgehn", "zurückgekehrt": "zuruckgekehrt", "zurückgekehrten": "zuruckgekehrt", "zurückgekommen": "zuruckgekomm", "zurückgelassen": "zuruckgelass", "zurückgelegt": "zuruckgelegt", "zurückgerufen": "zuruckgeruf", "zurückgeschlagen": "zuruckgeschlag", "zurückgeschlendert": "zuruckgeschlendert", "zurückgeschwunden": "zuruckgeschwund", "zurückgesetzt": "zuruckgesetzt", "zurückgestellt": "zuruckgestellt", "zurückgestossen": "zuruckgestoss", "zurückgestoßen": "zuruckgestoss", "zurückgetreten": "zuruckgetret", "zurückgewichen": "zuruckgewich", "zurückgewiesen": "zuruckgewies", "zurückgewinkt": "zuruckgewinkt", "zurückging": "zuruckging", "zurückhalte": "zuruckhalt", "zurückhalten": "zuruckhalt", "zurückhaltend": "zuruckhalt", "zurückhaltender": "zuruckhalt", "zurückhältst": "zuruckhalt", "zurückhaltung": "zuruckhalt", "zurückkam": "zuruckkam", "zurückkamen": "zuruckkam", "zurückkehren": "zuruckkehr", "zurückkehrst": "zuruckkehrst", "zurückkehrte": "zuruckkehrt", "zurückkehrten": "zuruckkehrt", "zurückkommen": "zuruckkomm", "zurücklassen": "zurucklass", "zurückliessen": "zuruckliess", "zurückreichten": "zuruckreicht", "zurückschaudert": "zuruckschaudert", "zurückschieben": "zuruckschieb", "zurücksehen": "zuruckseh", "zurücksehnte": "zurucksehnt", "zurücksprang": "zurucksprang", "zurückstehende": "zurucksteh", "zurücksteht": "zurucksteht", "zurückstossen": "zuruckstoss", "zurückstoßen": "zuruckstoss", "zurückstrahlte": "zuruckstrahlt", "zurückströmte": "zuruckstromt", "zurücktreten": "zurucktret", "zurücktritt": "zurucktritt", "zurückwandte": "zuruckwandt", "zurückwarf": "zuruckwarf", "zurückweichen": "zuruckweich", "zurückweichens": "zuruckweich", "zurückwenden": "zuruckw", "zurückwendend": "zuruckwend", "zurückziehen": "zuruckzieh", "zurückzog": "zuruckzog", "zurückzubringen": "zuruckzubring", "zurückzuerobern": "zuruckzuerob", "zurückzuführen": "zuruckzufuhr", "zurückzugeben": "zuruckzugeb", "zurückzuhalten": "zuruckzuhalt", "zurückzukehren": "zuruckzukehr", "zurückzukommen": "zuruckzukomm", "zurückzureisen": "zuruckzureis", "zurückzuziehen": "zuruckzuzieh", "zuruf": "zuruf", "zurufe": "zuruf", "zurufen": "zuruf", "züs": "zus", "zusag": "zusag", "zusagen": "zusag", "zusagt": "zusagt", "zusagte": "zusagt", "zusah": "zusah", "zusahen": "zusah", "zusammen": "zusamm", "zusammenarbeit": "zusammenarbeit", "zusammenbrachte": "zusammenbracht", "zusammenbringen": "zusammenbring", "zusammenfassten": "zusammenfasst", "zusammenfaßten": "zusammenfasst", "zusammenfassung": "zusammenfass", "zusammenfiel": "zusammenfiel", "zusammenfügen": "zusammenfug", "zusammenfügte": "zusammenfugt", "zusammengeballt": "zusammengeballt", "zusammengeballtes": "zusammengeballt", "zusammengeben": "zusammengeb", "zusammengebracht": "zusammengebracht", "zusammengebunden": "zusammengebund", "zusammengebundene": "zusammengebund", "zusammengedichtete": "zusammengedichtet", "zusammengedrängt": "zusammengedrangt", "zusammengefalteten": "zusammengefaltet", "zusammengefasst": "zusammengefasst", "zusammengefügt": "zusammengefugt", "zusammengehalten": "zusammengehalt", "zusammengekehrt": "zusammengekehrt", "zusammengeknöpften": "zusammengeknopft", "zusammengelebt": "zusammengelebt", "zusammengenommen": "zusammengenomm", "zusammengepasst": "zusammengepasst", "zusammengepaßt": "zusammengepasst", "zusammengerollt": "zusammengerollt", "zusammengerollter": "zusammengerollt", "zusammengeschrumpft": "zusammengeschrumpft", "zusammengesetzt": "zusammengesetzt", "zusammengesetzte": "zusammengesetzt", "zusammengesetzten": "zusammengesetzt", "zusammengestellt": "zusammengestellt", "zusammengeströmt": "zusammengestromt", "zusammengesucht": "zusammengesucht", "zusammengetan": "zusammengetan", "zusammengetragen": "zusammengetrag", "zusammengewürfelten": "zusammengewurfelt", "zusammengezogen": "zusammengezog", "zusammengezogenen": "zusammengezog", "zusammenhalten": "zusammenhalt", "zusammenhang": "zusammenhang", "zusammenhängend": "zusammenhang", "zusammenhängende": "zusammenhang", "zusammenhängenden": "zusammenhang", "zusammenhanges": "zusammenhang", "zusammenhangs": "zusammenhang", "zusammenhängt": "zusammenhangt", "zusammenhielt": "zusammenhielt", "zusammenhing": "zusammenhing", "zusammenhingen": "zusammenhing", "zusammenkaufte": "zusammenkauft", "zusammenknüllte": "zusammenknullt", "zusammenkommen": "zusammenkomm", "zusammenkommens": "zusammenkomm", "zusammenkunft": "zusammenkunft", "zusammenleben": "zusammenleb", "zusammenleimte": "zusammenleimt", "zusammenliefen": "zusammenlief", "zusammennähen": "zusammennah", "zusammennahm": "zusammennahm", "zusammennähten": "zusammennaht", "zusammennehme": "zusammennehm", "zusammennehmen": "zusammennehm", "zusammennehmend": "zusammennehm", "zusammenpasse": "zusammenpass", "zusammenreimt": "zusammenreimt", "zusammenschlagen": "zusammenschlag", "zusammenschmelzt": "zusammenschmelzt", "zusammenschrumpften": "zusammenschrumpft", "zusammensein": "zusammensein", "zusammenseins": "zusammensein", "zusammensetzen": "zusammensetz", "zusammensetzten": "zusammensetzt", "zusammensetzung": "zusammensetz", "zusammenspeisen": "zusammenspeis", "zusammenspeisungen": "zusammenspeis", "zusammensteckte": "zusammensteckt", "zusammenstellte": "zusammenstellt", "zusammenstellung": "zusammenstell", "zusammenstiessen": "zusammenstiess", "zusammenstimmen": "zusammenstimm", "zusammenstimmt": "zusammenstimmt", "zusammenstimmte": "zusammenstimmt", "zusammenstimmung": "zusammenstimm", "zusammenstoppeln": "zusammenstoppeln", "zusammenstoppelt": "zusammenstoppelt", "zusammenstoss": "zusammenstoss", "zusammenstoß": "zusammenstoss", "zusammenstösst": "zusammenstosst", "zusammenstößt": "zusammenstosst", "zusammenströmen": "zusammenstrom", "zusammensuchend": "zusammensuch", "zusammentrafen": "zusammentraf", "zusammentreffen": "zusammentreff", "zusammenwirken": "zusammenwirk", "zusammenwohnen": "zusammenwohn", "zusammenzählte": "zusammenzahlt", "zusammenziehen": "zusammenzieh", "zusammenzieht": "zusammenzieht", "zusammenzog": "zusammenzog", "zusammenzogen": "zusammenzog", "zusammenzu": "zusammenzu", "zusammenzubringen": "zusammenzubring", "zusammenzuckte": "zusammenzuckt", "zusammenzuhalten": "zusammenzuhalt", "zusammenzuraffen": "zusammenzuraff", "zusammenzustellen": "zusammenzustell", "zusammenzutreffen": "zusammenzutreff", "zuschanden": "zuschand", "zuschauer": "zuschau", "zuschauern": "zuschau", "zuschauers": "zuschau", "zuschaute": "zuschaut", "zuschauten": "zuschaut", "zuschlagen": "zuschlag", "zuschloss": "zuschloss", "zuschnitt": "zuschnitt", "zuschnüren": "zuschnur", "zuschreiben": "zuschreib", "zuschreibt": "zuschreibt", "zuschrieben": "zuschrieb", "zuschritt": "zuschritt", "zuschulden": "zuschuld", "zuschüsse": "zuschuss", "zusehen": "zuseh", "zusehends": "zuseh", "zusendung": "zusend", "züsens": "zus", "zusetzen": "zusetz", "zusetzt": "zusetzt", "züsi": "zusi", "züsis": "zusis", "zuspätkommens": "zuspatkomm", "zusprangen": "zusprang", "zustand": "zustand", "zustande": "zustand", "zustände": "zustand", "zuständen": "zustand", "zustandes": "zustand", "zuständig": "zustand", "zustands": "zustand", "zustandsveränderung": "zustandsverander", "zustandsveränderungen": "zustandsverander", "zustandswechsel": "zustandswechsel", "zustatten": "zustatt", "zusteht": "zusteht", "zustimme": "zustimm", "zustimmt": "zustimmt", "zustimmung": "zustimm", "zustürzte": "zusturzt", "zutage": "zutag", "zutageförderung": "zutageforder", "zutat": "zutat", "zuteil": "zuteil", "zutragen": "zutrag", "zutragend": "zutrag", "zuträgern": "zutrag", "zuträglich": "zutrag", "zuträgliche": "zutrag", "zuträglichkeit": "zutrag", "zuträgt": "zutragt", "zutrat": "zutrat", "zutrauen": "zutrau", "zutraulich": "zutraulich", "zutraulicher": "zutraulich", "zutreffen": "zutreff", "zutreffend": "zutreff", "zutreffende": "zutreff", "zutrifft": "zutrifft", "zutrug": "zutrug", "zutulich": "zutulich", "zutulicher": "zutulich", "zutulichkeit": "zutulich", "zutütchen": "zututch", "zuunterst": "zuunterst", "zuverlässig": "zuverlass", "zuverlässigen": "zuverlass", "zuverlässiger": "zuverlass", "zuversicht": "zuversicht", "zuversichtlich": "zuversicht", "zuviel": "zuviel", "zuvor": "zuvor", "zuvörderst": "zuvorderst", "zuvorkommend": "zuvorkomm", "zuvorzutun": "zuvorzutun", "zuwachs": "zuwach", "zuwachses": "zuwachs", "zuwandte": "zuwandt", "zuwarf": "zuwarf", "zuweg": "zuweg", "zuwege": "zuweg", "zuweilen": "zuweil", "zuwenden": "zuwend", "zuwendend": "zuwend", "zuwendet": "zuwendet", "zuwendeten": "zuwendet", "zuwider": "zuwid", "zuwinken": "zuwink", "zuwinkte": "zuwinkt", "zuwinkten": "zuwinkt", "zuzeiten": "zuzeit", "zuziehen": "zuzieh", "zuzog": "zuzog", "zuzogen": "zuzog", "zuzuflüstern": "zuzuflust", "zuzufügen": "zuzufug", "zuzug": "zuzug", "zuzüge": "zuzug", "zuzügerwesen": "zuzugerwes", "zuzuhören": "zuzuhor", "zuzunehmen": "zuzunehm", "zuzureden": "zuzured", "zuzurichten": "zuzuricht", "zuzuschauen": "zuzuschau", "zuzuschlagen": "zuzuschlag", "zuzusehen": "zuzuseh", "zuzustutzen": "zuzustutz", "zuzuwenden": "zuzuw", "zwa": "zwa", "zwackt": "zwackt", "zwang": "zwang", "zwange": "zwang", "zwangen": "zwang", "zwanges": "zwang", "zwangslage": "zwangslag", "zwangsläufig": "zwangslauf", "zwanzig": "zwanzig", "zwanzigjährigen": "zwanzigjahr", "zwanzigjähriger": "zwanzigjahr", "zwanzigmal": "zwanzigmal", "zwar": "zwar", "zweck": "zweck", "zweckdienliche": "zweckdi", "zwecke": "zweck", "zwecken": "zweck", "zweckentfremdete": "zweckentfremdet", "zweckes": "zweck", "zwecklos": "zwecklos", "zwecklose": "zwecklos", "zweckmässig": "zweckmass", "zweckmäßig": "zweckmass", "zweckmässigen": "zweckmass", "zweckmässiger": "zweckmass", "zweckmäßiger": "zweckmass", "zweckmässiges": "zweckmass", "zweckmässigkeit": "zweckmass", "zwecks": "zweck", "zweckwidrig": "zweckwidr", "zwei": "zwei", "zweideutig": "zweideut", "zweideutige": "zweideut", "zweideutiger": "zweideut", "zweideutigkeit": "zweideut", "zweien": "zweien", "zweier": "zweier", "zweierlei": "zweierlei", "zweifel": "zweifel", "zweifelhaft": "zweifelhaft", "zweifelhafter": "zweifelhaft", "zweifellehre": "zweifellehr", "zweifellos": "zweifellos", "zweifeln": "zweifeln", "zweifelsfreien": "zweifelsfrei", "zweifelsohne": "zweifelsohn", "zweifelten": "zweifelt", "zweifelvollen": "zweifelvoll", "zweifenstriges": "zweifenstr", "zweifler": "zweifl", "zweig": "zweig", "zweigchen": "zweigch", "zweige": "zweig", "zweigen": "zweig", "zweiges": "zweig", "zweiglein": "zweiglein", "zweihändigen": "zweihand", "zweihundert": "zweihundert", "zweihundertachtundfünfzig": "zweihundertachtundfunfz", "zweijährigen": "zweijahr", "zweikampf": "zweikampf", "zweimal": "zweimal", "zweimonatszeitschrift": "zweimonatszeitschrift", "zweischneidiges": "zweischneid", "zweispännigen": "zweispann", "zweispra": "zweispra", "zweit": "zweit", "zweitägige": "zweitag", "zweitausend": "zweitaus", "zweite": "zweit", "zweitem": "zweit", "zweiten": "zweit", "zweitenmal": "zweitenmal", "zweitens": "zweit", "zweiter": "zweit", "zweites": "zweit", "zweithöchsten": "zweithoch", "zweiundachtzig": "zweiundachtz", "zweiunddreissig": "zweiunddreiss", "zweiundfünfzig": "zweiundfunfz", "zweiundsechzig": "zweiundsechz", "zweiundvierzig": "zweiundvierz", "zweiundzwanzig": "zweiundzwanz", "zwerge": "zwerg", "zwergfinken": "zwergfink", "zwickten": "zwickt", "zwieback": "zwieback", "zwiegespräch": "zwiegesprach", "zwiegsang": "zwiegsang", "zwiespalt": "zwiespalt", "zwiespaltes": "zwiespalt", "zwiesprache": "zwiesprach", "zwillich": "zwillich", "zwillingsmilchflasche": "zwillingsmilchflasch", "zwingen": "zwing", "zwingend": "zwingend", "zwinger": "zwing", "zwingt": "zwingt", "zwinkert": "zwinkert", "zwinkerte": "zwinkert", "zwirchkammer": "zwirchkamm", "zwirn": "zwirn", "zwirnfabrik": "zwirnfabr", "zwischen": "zwisch", "zwischendurch": "zwischendurch", "zwischenräumen": "zwischenraum", "zwischenzeitlich": "zwischenzeit", "zwitschermusik": "zwitschermus", "zwitschern": "zwitsch", "zwitschernd": "zwitschernd", "zwitscherte": "zwitschert", "zwoa": "zwoa", "zwölf": "zwolf", "zwölferstangen": "zwolferstang", "zwölfhundert": "zwolfhundert", "zwölfjährigen": "zwolfjahr", "zwölfmal": "zwolfmal", "zwölfte": "zwolft", "zwungen": "zwung", "zylinder": "zylind", "zylinderhut": "zylinderhut", "zylinderhüte": "zylinderhut", "zylinderhüten": "zylinderhut", "zyniker": "zynik", "zynischen": "zynisch", "zyperns": "zypern", "zypressen": "zypress" } ================================================ FILE: spec/test_data/snowball_es.json ================================================ { "a": "a", "aarón": "aaron", "abaco": "abac", "abajo": "abaj", "abandera": "abander", "abandona": "abandon", "abandonada": "abandon", "abandonadas": "abandon", "abandonado": "abandon", "abandonados": "abandon", "abandonamos": "abandon", "abandonan": "abandon", "abandonar": "abandon", "abandonarlo": "abandon", "abandonaron": "abandon", "abandono": "abandon", "abandonó": "abandon", "abaratar": "abarat", "abarca": "abarc", "abarcamos": "abarc", "abarcan": "abarc", "abarcar": "abarc", "abarcará": "abarc", "abarcarán": "abarc", "abarcaría": "abarc", "abarcó": "abarc", "abaroa": "abaro", "abarroteros": "abarroter", "abarrotó": "abarrot", "abastece": "abastec", "abastecedora": "abastecedor", "abastecer": "abastec", "abastecimiento": "abastec", "abastecimientos": "abastec", "abasto": "abast", "abatares": "abatar", "abatida": "abat", "abatido": "abat", "abatidos": "abat", "abatimiento": "abat", "abatió": "abat", "abatir": "abat", "abatirnos": "abat", "abatirse": "abat", "abba": "abba", "abbud": "abbud", "abc": "abc", "abdicación": "abdic", "abdicar": "abdic", "abeba": "abeb", "abedrop": "abedrop", "abel": "abel", "abelardo": "abelard", "aberración": "aberr", "aberrante": "aberr", "abidjan": "abidj", "abiel": "abiel", "abierta": "abiert", "abiertamente": "abiert", "abiertas": "abiert", "abierto": "abiert", "abiertos": "abiert", "abigeo": "abige", "abimael": "abimael", "abióticos": "abiot", "abismo": "abism", "ablandar": "abland", "ablandó": "abland", "abluciones": "ablucion", "abnegación": "abneg", "aboagay": "aboagay", "abocó": "aboc", "abogada": "abog", "abogadas": "abog", "abogadete": "abogadet", "abogadillo": "abogadill", "abogado": "abog", "abogados": "abog", "abolición": "abolicion", "abolirá": "abol", "abominan": "abomin", "abono": "abon", "abonos": "abon", "aborda": "abord", "abordaban": "abord", "abordada": "abord", "abordadas": "abord", "abordan": "abord", "abordando": "abord", "abordar": "abord", "abordará": "abord", "abordarán": "abord", "abordaron": "abord", "aborde": "abord", "abordo": "abord", "abordó": "abord", "abortados": "abort", "abortiva": "abort", "aborto": "abort", "abortos": "abort", "abra": "abra", "abraham": "abraham", "abrasivo": "abras", "abrazarlo": "abraz", "abrazarse": "abraz", "abrazo": "abraz", "abre": "abre", "abrego": "abreg", "abren": "abren", "abreu": "abreu", "abreviar": "abrevi", "abrían": "abri", "abridor": "abridor", "abriendo": "abriend", "abrieron": "abrieron", "abrigan": "abrig", "abrigo": "abrig", "abrigos": "abrig", "abril": "abril", "abriles": "abril", "abrio": "abri", "abrió": "abri", "abrir": "abrir", "abrira": "abrir", "abrirá": "abrir", "abrirán": "abriran", "abriría": "abrir", "abrirla": "abrirl", "abrirlos": "abrirl", "abrirnos": "abrirn", "abrirse": "abrirs", "abrogación": "abrog", "abrogados": "abrog", "abrogar": "abrog", "abrupto": "abrupt", "abs": "abs", "absoletas": "absolet", "absoluta": "absolut", "absolutamente": "absolut", "absoluto": "absolut", "absolutoria": "absolutori", "absolvió": "absolv", "absorba": "absorb", "absorber": "absorb", "absorbiendo": "absorb", "absorver": "absorv", "abstencionismo": "abstencion", "abstendrá": "abstendr", "abstenga": "absteng", "abstengan": "absteng", "abstenido": "absten", "abstracción": "abstraccion", "abstracta": "abstract", "abstractos": "abstract", "abstuviera": "abstuv", "absuelto": "absuelt", "absurdas": "absurd", "absurdo": "absurd", "abucheado": "abuch", "abuchear": "abuch", "abuchearon": "abuch", "abucheo": "abuche", "abucheos": "abuche", "abuela": "abuel", "abuelas": "abuel", "abuelita": "abuelit", "abuelitas": "abuelit", "abuelito": "abuelit", "abuelitos": "abuelit", "abuelo": "abuel", "abuelos": "abuel", "abultar": "abult", "abunda": "abund", "abundan": "abund", "abundancia": "abund", "abundante": "abund", "abundantes": "abund", "abundar": "abund", "abundaron": "abund", "abundó": "abund", "abur": "abur", "aburridas": "aburr", "abuso": "abus", "abusos": "abus", "acá": "aca", "acaba": "acab", "acababa": "acab", "acabado": "acab", "acabados": "acab", "acabamos": "acab", "acaban": "acab", "acabando": "acab", "acabar": "acab", "acabará": "acab", "acabaría": "acab", "acabaron": "acab", "acabe": "acab", "acabo": "acab", "acabó": "acab", "academia": "academi", "académica": "academ", "académicamente": "academ", "académicas": "academ", "académico": "academ", "académicos": "academ", "academik": "academik", "academy": "academy", "acaeció": "acaec", "acallando": "acall", "acallar": "acall", "acámbaro": "acambar", "acampar": "acamp", "acapara": "acap", "acaparado": "acapar", "acaparadores": "acapar", "acaparar": "acapar", "acaparó": "acapar", "acapulco": "acapulc", "acariciarte": "acariciart", "acarreado": "acarr", "acarreadores": "acarr", "acarreados": "acarr", "acarrear": "acarr", "acaso": "acas", "acatar": "acat", "acataré": "acat", "acatarlas": "acat", "acaten": "acat", "acaudaladas": "acaudal", "accedan": "acced", "accede": "acced", "acceder": "acced", "accederán": "acced", "accedido": "acced", "accedieron": "acced", "accesará": "acces", "accesible": "acces", "accesibles": "acces", "acceso": "acces", "accesorio": "accesori", "accesorios": "accesori", "accesos": "acces", "accidentado": "accident", "accidentados": "accident", "accidental": "accidental", "accidentarnos": "accident", "accidente": "accident", "accidentes": "accident", "accion": "accion", "acción": "accion", "accionar": "accion", "accionaria": "accionari", "accionarias": "accionari", "accionario": "accionari", "accione": "accion", "acciones": "accion", "accionista": "accion", "accionistas": "accion", "accival": "accival", "accra": "accra", "aceite": "aceit", "aceites": "aceit", "aceleradas": "aceler", "acelerado": "aceler", "acelerar": "aceler", "acelerara": "aceler", "acelerará": "aceler", "acelerarse": "aceler", "aceleró": "aceler", "acendrada": "acendr", "acentuada": "acentu", "acentuadas": "acentu", "acentuar": "acentu", "acentuó": "acentu", "acepta": "acept", "aceptaba": "acept", "aceptaban": "acept", "aceptable": "acept", "aceptación": "acept", "aceptada": "acept", "aceptadas": "acept", "aceptado": "acept", "aceptados": "acept", "aceptamos": "acept", "aceptan": "acept", "aceptar": "acept", "aceptara": "acept", "aceptarían": "acept", "aceptarla": "acept", "aceptaron": "acept", "aceptas": "acept", "acepte": "acept", "acepté": "acept", "acepten": "acept", "acepto": "acept", "aceptó": "acept", "acer": "acer", "acera": "acer", "acerca": "acerc", "acercaba": "acerc", "acercaban": "acerc", "acercado": "acerc", "acercamiento": "acerc", "acercamientos": "acerc", "acercan": "acerc", "acercando": "acerc", "acercándonos": "acerc", "acercándose": "acerc", "acercar": "acerc", "acercarán": "acerc", "acercaría": "acerc", "acercarnos": "acerc", "acercaron": "acerc", "acercarse": "acerc", "acercó": "acerc", "acereras": "acerer", "acereros": "acerer", "acero": "acer", "acerque": "acerqu", "acerqué": "acerqu", "acerquen": "acerqu", "acertada": "acert", "acertadamente": "acert", "acertado": "acert", "acervo": "acerv", "acetato": "acetat", "acevedo": "aceved", "aceves": "acev", "achacan": "achac", "achacar": "achac", "achacaron": "achac", "achacársela": "achac", "achaques": "achaqu", "acheson": "acheson", "achichincles": "achichincl", "achieve": "achiev", "achique": "achiqu", "achy": "achy", "acicalar": "acical", "acicate": "acicat", "ácida": "acid", "ácidas": "acid", "acidez": "acidez", "ácido": "acid", "ácidos": "acid", "acierto": "aciert", "aciertos": "aciert", "aclamada": "aclam", "aclamado": "aclam", "aclara": "aclar", "aclaración": "aclar", "aclaraciones": "aclar", "aclarado": "aclar", "aclaramos": "aclar", "aclarando": "aclar", "aclarar": "aclar", "aclarara": "aclar", "aclararon": "aclar", "aclaratorias": "aclaratori", "aclaren": "aclar", "aclaró": "aclar", "aclimatado": "aclimat", "aclimatándose": "aclimat", "acne": "acne", "acné": "acne", "acogida": "acog", "acojan": "acoj", "acomete": "acomet", "acomodado": "acomod", "acomodados": "acomod", "acomodar": "acomod", "acomodarse": "acomod", "acompaña": "acompañ", "acompañaba": "acompañ", "acompañaban": "acompañ", "acompañada": "acompañ", "acompañadas": "acompañ", "acompañado": "acompañ", "acompañados": "acompañ", "acompañan": "acompañ", "acompañando": "acompañ", "acompañante": "acompañ", "acompañantes": "acompañ", "acompañar": "acompañ", "acompañará": "acompañ", "acompañarán": "acompañ", "acompañaría": "acompañ", "acompañarían": "acompañ", "acompañaron": "acompañ", "acompañe": "acompañ", "acompañó": "acompañ", "acomplejados": "acomplej", "acondicionadas": "acondicion", "acondicionados": "acondicion", "acondicionamiento": "acondicion", "acongoje": "acongoj", "aconseja": "aconsej", "aconsejan": "aconsej", "aconsejar": "aconsej", "aconsejará": "aconsej", "aconsejaron": "aconsej", "aconséjeme": "aconsejem", "aconsejó": "aconsej", "acontecer": "acontec", "acontecimiento": "acontec", "acontecimientos": "acontec", "aconteció": "acontec", "acopio": "acopi", "acoplamiento": "acopl", "acoplamientos": "acopl", "acoplando": "acopl", "acordada": "acord", "acordado": "acord", "acordados": "acord", "acordaron": "acord", "acorde": "acord", "acordé": "acord", "acordes": "acord", "acordó": "acord", "acorraló": "acorral", "acortado": "acort", "acortaron": "acort", "acortó": "acort", "acoso": "acos", "acosta": "acost", "acostada": "acost", "acostumbra": "acostumbr", "acostumbraba": "acostumbr", "acostumbraban": "acostumbr", "acostumbradas": "acostumbr", "acostumbrado": "acostumbr", "acostumbrados": "acostumbr", "acostumbramos": "acostumbr", "acostumbran": "acostumbr", "acostumbrando": "acostumbr", "acostumbrar": "acostumbr", "acostumbrarme": "acostumbr", "acostumbrarnos": "acostumbr", "acota": "acot", "acotamiento": "acot", "acrecentarlo": "acrecent", "acrecienta": "acrecient", "acredita": "acredit", "acreditable": "acredit", "acreditación": "acredit", "acreditada": "acredit", "acreditado": "acredit", "acreditados": "acredit", "acreditó": "acredit", "acreedor": "acreedor", "acreedores": "acreedor", "acribillado": "acribill", "acribillan": "acribill", "acrobacias": "acrobaci", "acróbata": "acrobat", "acta": "acta", "actas": "actas", "actitud": "actitud", "actitudes": "actitud", "activa": "activ", "activación": "activ", "activamente": "activ", "activas": "activ", "actividad": "activ", "actividades": "activ", "activista": "activ", "activistas": "activ", "activo": "activ", "activos": "activ", "acto": "acto", "actor": "actor", "actoral": "actoral", "actores": "actor", "actos": "actos", "actrices": "actric", "actriz": "actriz", "actúa": "actu", "actuaba": "actu", "actuación": "actuacion", "actuaciones": "actuacion", "actuado": "actu", "actual": "actual", "actuales": "actual", "actualice": "actualic", "actualidad": "actual", "actualización": "actualiz", "actualizaciones": "actualiz", "actualizada": "actualiz", "actualizando": "actualiz", "actualizar": "actualiz", "actualmente": "actual", "actúan": "actu", "actuando": "actu", "actuar": "actu", "actuará": "actu", "actuarán": "actu", "actuaron": "actu", "actúe": "actu", "actúen": "actu", "actuó": "actu", "acuarios": "acuari", "acuática": "acuat", "acuciantes": "acuci", "acuda": "acud", "acudan": "acud", "acude": "acud", "acuden": "acud", "acudí": "acud", "acudía": "acud", "acudían": "acud", "acudido": "acud", "acudiera": "acud", "acudieron": "acud", "acudió": "acud", "acudir": "acud", "acudirá": "acud", "acudirán": "acud", "acudiremos": "acud", "acudirían": "acud", "acueducto": "acueduct", "acuerda": "acuerd", "acuerdas": "acuerd", "acuérdese": "acuerdes", "acuerdo": "acuerd", "acuerdos": "acuerd", "acuesto": "acuest", "acumula": "acumul", "acumulación": "acumul", "acumulada": "acumul", "acumuladas": "acumul", "acumulado": "acumul", "acumulados": "acumul", "acumulan": "acumul", "acumulando": "acumul", "acumular": "acumul", "acumuló": "acumul", "acuña": "acuñ", "acupuntura": "acupuntur", "acusa": "acus", "acusaban": "acus", "acusación": "acus", "acusaciones": "acus", "acusada": "acus", "acusadas": "acus", "acusado": "acus", "acusador": "acus", "acusadoras": "acus", "acusadores": "acus", "acusados": "acus", "acusan": "acus", "acusándolos": "acus", "acusarlo": "acus", "acusaron": "acus", "acusatorias": "acusatori", "acusó": "acus", "acústica": "acust", "acústicas": "acust", "ad": "ad", "adam": "adam", "adame": "adam", "adams": "adams", "adamson": "adamson", "adán": "adan", "adaptación": "adapt", "adaptada": "adapt", "adaptado": "adapt", "adaptados": "adapt", "adaptan": "adapt", "adaptando": "adapt", "adaptándose": "adapt", "adaptar": "adapt", "adaptarán": "adapt", "adaptarse": "adapt", "adapten": "adapt", "adaptó": "adapt", "adarme": "adarm", "addis": "addis", "adecuación": "adecu", "adecuaciones": "adecu", "adecuada": "adecu", "adecuadamente": "adecu", "adecuadas": "adecu", "adecuado": "adecu", "adecuados": "adecu", "adecuar": "adecu", "adecuarla": "adecu", "adecuarlos": "adecu", "adecuarse": "adecu", "adecuarte": "adecuart", "adela": "adel", "adelaida": "adel", "adelanta": "adelant", "adelantada": "adelant", "adelantado": "adelant", "adelantados": "adelant", "adelantamos": "adelant", "adelantando": "adelant", "adelantar": "adelant", "adelantarnos": "adelant", "adelantaron": "adelant", "adelantarse": "adelant", "adelantase": "adelant", "adelante": "adel", "adelanto": "adelant", "adelantó": "adelant", "adelantos": "adelant", "adelgazado": "adelgaz", "adelgazar": "adelgaz", "ademán": "ademan", "ademanes": "ademan", "ademas": "adem", "además": "ademas", "adentrarme": "adentr", "adentrarnos": "adentr", "adentro": "adentr", "adeptos": "adept", "aderezara": "aderez", "adese": "ades", "adeudaba": "adeud", "adeudo": "adeud", "adeudos": "adeud", "adherencia": "adherent", "adherida": "adher", "adheridos": "adher", "adherirse": "adher", "adhesión": "adhesion", "adhesiva": "adhes", "adhiera": "adhier", "adicional": "adicional", "adicionales": "adicional", "adicionalmente": "adicional", "adiciones": "adicion", "adicto": "adict", "adictos": "adict", "adiestramiento": "adiestr", "adiós": "adios", "aditamento": "aditament", "adivinación": "adivin", "adivinó": "adivin", "adivinos": "adivin", "adjetivo": "adjet", "adjudicación": "adjud", "adjudican": "adjudic", "adjudicaron": "adjudic", "adjudicarse": "adjudic", "adjudicó": "adjudic", "adjuntando": "adjunt", "adjunto": "adjunt", "administra": "administr", "administración": "administr", "administraciones": "administr", "administrador": "administr", "administradora": "administr", "administradores": "administr", "administrar": "administr", "administrativa": "administr", "administrativas": "administr", "administrativo": "administr", "administrativos": "administr", "admiraban": "admir", "admiración": "admir", "admiradoras": "admir", "admiran": "admir", "admirar": "admir", "admiro": "admir", "admiró": "admir", "admisión": "admision", "admiten": "admit", "admitidas": "admit", "admitió": "admit", "admitir": "admit", "admito": "admit", "adoleciendo": "adolec", "adoleció": "adolec", "adolescencia": "adolescent", "adolescente": "adolescent", "adolescentes": "adolescent", "adolfo": "adolf", "adolorida": "adolor", "adopción": "adopcion", "adopta": "adopt", "adoptada": "adopt", "adoptadas": "adopt", "adoptado": "adopt", "adoptando": "adopt", "adoptar": "adopt", "adoptará": "adopt", "adoptaran": "adopt", "adoptarán": "adopt", "adoptaron": "adopt", "adopte": "adopt", "adopten": "adopt", "adoptó": "adopt", "adoquín": "adoquin", "adora": "ador", "adoradores": "ador", "adoratorio": "adoratori", "adornadas": "adorn", "adornan": "adorn", "adornar": "adorn", "adornó": "adorn", "adornos": "adorn", "adoro": "ador", "adquiera": "adqu", "adquiere": "adquier", "adquieren": "adquier", "adquirí": "adquir", "adquirida": "adquir", "adquiridas": "adquir", "adquirido": "adquir", "adquirientes": "adquirient", "adquiriera": "adquir", "adquirieran": "adquir", "adquirieron": "adquir", "adquirió": "adquir", "adquirir": "adquir", "adquirirá": "adquir", "adquisición": "adquisicion", "adquisiciones": "adquisicion", "adquisitivo": "adquisit", "adr": "adr", "adrián": "adrian", "adriana": "adrian", "adrs": "adrs", "adscrita": "adscrit", "adscrito": "adscrit", "aduana": "aduan", "aduanal": "aduanal", "aduanales": "aduanal", "aductor": "aductor", "adueñarse": "adueñ", "adulta": "adult", "adultas": "adult", "adulto": "adult", "adultos": "adult", "advantaje": "advantaj", "adversario": "adversari", "adversarios": "adversari", "adversas": "advers", "adversidades": "advers", "adversos": "advers", "advertencia": "advertent", "advertido": "advert", "advertimos": "advert", "advertir": "advert", "advertirán": "advert", "advertirle": "advert", "advertising": "advertising", "advierta": "adviert", "advierte": "adviert", "advierten": "adviert", "advierto": "adviert", "advirtiendo": "advirt", "advirtiéndoles": "advirt", "advirtieron": "advirt", "advirtió": "advirt", "aérea": "aere", "aéreas": "aer", "aéreo": "aere", "aéreos": "aere", "aerodinámica": "aerodinam", "aerodinámico": "aerodinam", "aerofotogrametría": "aerofotogrametr", "aerógrafo": "aerograf", "aerolínea": "aeroline", "aerolíneas": "aerolin", "aerolito": "aerolit", "aeroméxico": "aeromex", "aeronáutica": "aeronaut", "aeronave": "aeronav", "aeronaves": "aeronav", "aeroperú": "aeroperu", "aeroportuario": "aeroportuari", "aeropuerto": "aeropuert", "aeropuertos": "aeropuert", "aerosol": "aerosol", "aerosoles": "aerosol", "aerovias": "aerovi", "aerovías": "aerov", "afa": "afa", "afán": "afan", "afanes": "afan", "afear": "afe", "afección": "afeccion", "afecciones": "afeccion", "afecta": "afect", "afectaba": "afect", "afectación": "afect", "afectaciones": "afect", "afectad": "afect", "afectada": "afect", "afectadas": "afect", "afectado": "afect", "afectados": "afect", "afectan": "afect", "afectando": "afect", "afectar": "afect", "afectará": "afect", "afectarán": "afect", "afectaría": "afect", "afectaron": "afect", "afectarse": "afect", "afecte": "afect", "afectivas": "afect", "afectivo": "afect", "afecto": "afect", "afectó": "afect", "afectos": "afect", "afeen": "afe", "afeitar": "afeit", "aferrarse": "aferr", "affaire": "affair", "afianzadora": "afianz", "afianzarse": "afianz", "afición": "aficion", "aficionadas": "aficion", "aficionado": "aficion", "aficionados": "aficion", "aficiones": "aficion", "afilada": "afil", "afiliación": "afili", "afiliada": "afili", "afiliadas": "afili", "afiliado": "afili", "afiliados": "afili", "afiliaron": "afili", "afín": "afin", "afinación": "afin", "afinaciones": "afin", "afinando": "afin", "afinar": "afin", "afines": "afin", "afinidad": "afin", "afinidades": "afin", "afinó": "afin", "afirma": "afirm", "afirmación": "afirm", "afirmaciones": "afirm", "afirmado": "afirm", "afirman": "afirm", "afirmando": "afirm", "afirmar": "afirm", "afirmaron": "afirm", "afirmativa": "afirm", "afirmó": "afirm", "afl": "afl", "aflicción": "afliccion", "afligida": "aflig", "afligido": "aflig", "afloja": "afloj", "aflojadas": "afloj", "aflojamos": "afloj", "aflojar": "afloj", "aflora": "aflor", "afluencia": "afluenci", "aforismo": "afor", "afortunada": "afortun", "afortunadamente": "afortun", "afortunado": "afortun", "afp": "afp", "afrenta": "afrent", "africa": "afric", "africano": "african", "africanos": "african", "afro": "afro", "afroamericanos": "afroamerican", "afrobrasileño": "afrobrasileñ", "afrobrasileños": "afrobrasileñ", "afrodisiaco": "afrodisiac", "afrodisiacos": "afrodisiac", "afrodisio": "afrodisi", "afrontar": "afront", "afrontará": "afront", "afrontaron": "afront", "afronten": "afront", "afuera": "afuer", "afueras": "afuer", "agachó": "agach", "agarra": "agarr", "agarrada": "agarr", "agarrar": "agarr", "agarraron": "agarr", "agarre": "agarr", "agárrese": "agarres", "age": "age", "agencia": "agenci", "agenciaron": "agenci", "agencias": "agenci", "agenda": "agend", "agendas": "agend", "agenl": "agenl", "agente": "agent", "agentes": "agent", "ágil": "agil", "agilidad": "agil", "agilización": "agiliz", "agilizando": "agiliz", "agilizar": "agiliz", "agilizara": "agiliz", "agilizará": "agiliz", "agio": "agi", "agiotistas": "agiot", "agitación": "agit", "agitadas": "agit", "agitadores": "agit", "agitando": "agit", "aglomeraciones": "aglomer", "aglutina": "aglutin", "aglutinar": "aglutin", "agobiado": "agobi", "agonía": "agon", "agonizante": "agoniz", "agora": "agor", "agosto": "agost", "agotadas": "agot", "agotado": "agot", "agotamiento": "agot", "agotándolos": "agot", "agotaron": "agot", "agotarse": "agot", "agote": "agot", "agraciado": "agraci", "agrada": "agrad", "agradable": "agrad", "agradece": "agradec", "agradecemos": "agradec", "agradecer": "agradec", "agradecerán": "agradec", "agradecería": "agradec", "agradeciendo": "agradec", "agradecieron": "agradec", "agradecimiento": "agradec", "agradeció": "agradec", "agradezco": "agradezc", "agrado": "agrad", "agramón": "agramon", "agrandar": "agrand", "agrandarla": "agrand", "agraria": "agrari", "agrario": "agrari", "agraristas": "agrar", "agrava": "agrav", "agravación": "agrav", "agravado": "agrav", "agravaron": "agrav", "agraviado": "agravi", "agravios": "agravi", "agredido": "agred", "agredidos": "agred", "agredieron": "agred", "agrega": "agreg", "agregada": "agreg", "agregado": "agreg", "agregaduría": "agregadur", "agregan": "agreg", "agregando": "agreg", "agregar": "agreg", "agregaron": "agreg", "agregarse": "agreg", "agrego": "agreg", "agregó": "agreg", "agréguele": "agreguel", "agremiada": "agremi", "agremiados": "agremi", "agresión": "agresion", "agresiones": "agresion", "agresiva": "agres", "agresivamente": "agres", "agresivas": "agres", "agresividad": "agres", "agresivo": "agres", "agresivos": "agres", "agresor": "agresor", "agresores": "agresor", "agrícola": "agricol", "agrícolas": "agricol", "agricultores": "agricultor", "agricultura": "agricultur", "agridyne": "agridyn", "agrio": "agri", "agro": "agro", "agropecuaria": "agropecuari", "agropecuario": "agropecuari", "agropecuarios": "agropecuari", "agroquímico": "agroquim", "agroquímicos": "agroquim", "agrupa": "agrup", "agrupación": "agrup", "agrupaciones": "agrup", "agrupadas": "agrup", "agrupamiento": "agrup", "agrupar": "agrup", "agua": "agu", "aguacate": "aguacat", "aguacates": "aguacat", "agualeguas": "agualegu", "aguanta": "aguant", "aguantar": "aguant", "aguantarse": "aguant", "aguantó": "aguant", "aguardaba": "aguard", "aguardaban": "aguard", "aguardan": "aguard", "aguas": "agu", "aguascalientes": "aguascalient", "aguaytía": "aguayt", "aguda": "agud", "agudas": "agud", "agudiza": "agudiz", "agudizado": "agudiz", "agudo": "agud", "agudos": "agud", "aguila": "aguil", "águila": "aguil", "aguilar": "aguil", "aguilas": "aguil", "aguilera": "aguiler", "aguinaldo": "aguinald", "aguirre": "aguirr", "agüites": "agüit", "aguja": "aguj", "agujeros": "agujer", "agujetas": "agujet", "agustín": "agustin", "agusto": "agust", "ah": "ah", "ahí": "ahi", "ahmsa": "ahmsa", "ahogados": "ahog", "ahogando": "ahog", "ahogaron": "ahog", "ahondando": "ahond", "ahondar": "ahond", "ahora": "ahor", "ahorita": "ahorit", "ahorra": "ahorr", "ahorrado": "ahorr", "ahorrador": "ahorr", "ahorradores": "ahorr", "ahorramos": "ahorr", "ahorrar": "ahorr", "ahorrará": "ahorr", "ahorrarán": "ahorr", "ahorraron": "ahorr", "ahorrativa": "ahorr", "ahorrativo": "ahorr", "ahorro": "ahorr", "ahorros": "ahorr", "ahuehuete": "ahuehuet", "ahujas": "ahuj", "ahuyenta": "ahuyent", "aída": "aid", "aikman": "aikm", "air": "air", "airadamente": "airad", "airbus": "airbus", "aire": "air", "airecombustible": "airecombust", "aires": "air", "airways": "airways", "ais": "ais", "aislacionismo": "aislacion", "aislada": "aisl", "aisladas": "aisl", "aislados": "aisl", "aislamiento": "aislamient", "aislarla": "aisl", "aislarlo": "aisl", "aispuro": "aispur", "aiv": "aiv", "aix": "aix", "ajalpan": "ajalp", "ajena": "ajen", "ajenas": "ajen", "ajeno": "ajen", "ajenos": "ajen", "ajusco": "ajusc", "ajusta": "ajust", "ajustados": "ajust", "ajustan": "ajust", "ajustando": "ajust", "ajustándolo": "ajust", "ajustar": "ajust", "ajustarse": "ajust", "ajuste": "ajust", "ajustes": "ajust", "ajusticiado": "ajustici", "ak": "ak", "akita": "akit", "al": "al", "ala": "ala", "alababa": "alab", "alabanza": "alab", "alabarderos": "alabarder", "alabó": "alab", "aladino": "aladin", "aladro": "aladr", "alain": "alain", "alambre": "alambr", "alameda": "alamed", "alamo": "alam", "alamos": "alam", "alan": "alan", "alanís": "alan", "alarcón": "alarcon", "alargadas": "alarg", "alargar": "alarg", "alarido": "alar", "alarma": "alarm", "alarmado": "alarm", "alarmados": "alarm", "alarmante": "alarm", "alarmaron": "alarm", "alarme": "alarm", "alarmismo": "alarm", "alarmó": "alarm", "alaska": "alask", "alatriste": "alatr", "alavez": "alavez", "alba": "alba", "albacete": "albacet", "albán": "alban", "albañil": "albañil", "albañiles": "albañil", "albay": "albay", "albee": "albe", "alberca": "alberc", "alberga": "alberg", "albergar": "alberg", "albergará": "alberg", "albergue": "alberg", "albergues": "alberg", "albert": "albert", "alberto": "albert", "albiazul": "albiazul", "albiazules": "albiazul", "albiceleste": "albicelest", "alborotada": "alborot", "alboroto": "alborot", "alborotos": "alborot", "album": "album", "álbum": "album", "albur": "albur", "alcachofa": "alcachof", "alcalá": "alcal", "alcalde": "alcald", "alcaldes": "alcald", "alcaldesa": "alcaldes", "alcaldía": "alcald", "alcaldías": "alcald", "alcalinidad": "alcalin", "alcalinos": "alcalin", "alcance": "alcanc", "alcancé": "alcanc", "alcancemos": "alcanc", "alcancen": "alcanc", "alcances": "alcanc", "alcántara": "alcant", "alcantarilla": "alcantarill", "alcantarillado": "alcantarill", "alcanza": "alcanz", "alcanzaba": "alcanz", "alcanzaban": "alcanz", "alcanzada": "alcanz", "alcanzado": "alcanz", "alcanzados": "alcanz", "alcanzan": "alcanz", "alcanzando": "alcanz", "alcanzar": "alcanz", "alcanzara": "alcanz", "alcanzará": "alcanz", "alcanzaré": "alcanz", "alcanzaremos": "alcanz", "alcanzaría": "alcanz", "alcanzarlos": "alcanz", "alcanzaron": "alcanz", "alcanzó": "alcanz", "alcerreza": "alcerrez", "alcocer": "alcoc", "alcohol": "alcohol", "alcoholicas": "alcohol", "aldape": "aldap", "aldea": "alde", "aldeas": "alde", "aledañas": "aledañ", "alega": "aleg", "alegando": "aleg", "alegar": "aleg", "alegara": "aleg", "alegaron": "aleg", "alegatos": "alegat", "alegó": "aleg", "alegoría": "alegor", "alegórico": "alegor", "alegóricos": "alegor", "alegraron": "alegr", "alegre": "alegr", "alegremente": "alegr", "alegría": "alegr", "alegró": "alegr", "aleja": "alej", "alejaban": "alej", "alejado": "alej", "alejamiento": "alej", "alejándonos": "alej", "alejándose": "alej", "alejandra": "alejandr", "alejandro": "alejandr", "alejar": "alej", "alejara": "alej", "alejaron": "alej", "alejo": "alej", "alejó": "alej", "alemán": "aleman", "alemana": "aleman", "alemanas": "aleman", "alemanes": "aleman", "alemania": "alemani", "alenia": "aleni", "alentador": "alent", "alentadora": "alent", "alentadores": "alent", "alentar": "alent", "alentó": "alent", "alergia": "alergi", "alergología": "alergolog", "alerta": "alert", "alertado": "alert", "alerten": "alert", "alessio": "alessi", "alex": "alex", "alexander": "alexand", "alexandr": "alexandr", "alexis": "alexis", "alfa": "alfa", "alfabético": "alfabet", "alfarería": "alfar", "alfaro": "alfar", "alfilerazos": "alfileraz", "alfio": "alfi", "alfombra": "alfombr", "alfonso": "alfons", "alfred": "alfred", "alfredo": "alfred", "algas": "algas", "algebra": "algebr", "álgebra": "algebr", "algo": "algo", "algodón": "algodon", "alguien": "algui", "algún": "algun", "alguna": "algun", "algunas": "algun", "alguno": "algun", "algunos": "algun", "ali": "ali", "aliada": "ali", "aliadas": "ali", "aliado": "ali", "aliados": "ali", "aliándose": "ali", "alianza": "alianz", "alianzas": "alianz", "aliar": "ali", "aliaron": "ali", "aliarse": "ali", "alice": "alic", "alicea": "alice", "alicia": "alici", "aliemos": "ali", "alienta": "alient", "alientan": "alient", "aliento": "alient", "alientos": "alient", "aligerar": "aliger", "aligerarla": "aliger", "alija": "alij", "alimañas": "alimañ", "alimentación": "aliment", "alimentada": "aliment", "alimentado": "aliment", "alimentador": "aliment", "alimentadores": "aliment", "alimentar": "aliment", "alimenticia": "alimentici", "alimenticio": "alimentici", "alimenticios": "alimentici", "alimento": "aliment", "alimentó": "aliment", "alimentos": "aliment", "alineacion": "alineacion", "alineación": "alin", "alineaciones": "alin", "alineado": "alin", "alineó": "aline", "alistan": "alist", "aliuska": "aliusk", "aliviar": "alivi", "aliviará": "alivi", "aliviaría": "alivi", "alivio": "alivi", "aljibes": "aljib", "alla": "alla", "allá": "alla", "allegadas": "alleg", "allegado": "alleg", "allegados": "alleg", "allegar": "alleg", "allegarle": "alleg", "allegarles": "alleg", "allegarse": "alleg", "allende": "allend", "allí": "alli", "alma": "alma", "almacena": "almacen", "almacenada": "almacen", "almacenadora": "almacen", "almacenaje": "almacenaj", "almacenamiento": "almacen", "almacenar": "almacen", "almacene": "almacen", "almacenes": "almacen", "almaguer": "almagu", "almaraz": "almaraz", "almas": "almas", "almohada": "almoh", "almonte": "almont", "almorzar": "almorz", "almorzase": "almorz", "almuerzo": "almuerz", "almuerzos": "almuerz", "alonso": "alons", "alpargatado": "alpargat", "alquibenceno": "alquibencen", "alquilado": "alquil", "alquiler": "alquil", "alquimia": "alquimi", "alrededor": "alrededor", "alrededores": "alrededor", "alta": "alta", "altadena": "altaden", "altamente": "alt", "altamira": "altamir", "altamirano": "altamiran", "altas": "altas", "altavista": "altav", "altera": "alter", "alteración": "alter", "alteraciones": "alter", "alterado": "alter", "alterados": "alter", "alterar": "alter", "alterarán": "alter", "alteraron": "alter", "alterarse": "alter", "altercado": "alterc", "altere": "alter", "alterna": "altern", "alternando": "altern", "alternar": "altern", "alternará": "altern", "alternativa": "altern", "alternativas": "altern", "alternó": "altern", "altibajos": "altibaj", "altímetro": "altimetr", "altiplano": "altiplan", "altísimos": "altis", "altisonantes": "altison", "altitud": "altitud", "alto": "alto", "altos": "altos", "altruista": "altruist", "altura": "altur", "alturas": "altur", "alud": "alud", "aludir": "alud", "alumbraba": "alumbr", "alumbraban": "alumbr", "alumbrado": "alumbr", "alumbró": "alumbr", "aluminio": "alumini", "alumna": "alumn", "alumnado": "alumn", "alumnas": "alumn", "alumno": "alumn", "alumnos": "alumn", "aluncinógenos": "aluncinogen", "alusión": "alusion", "alusiva": "alus", "alvarado": "alvar", "alvarez": "alvarez", "alvaro": "alvar", "alvelais": "alvelais", "alvez": "alvez", "alza": "alza", "alzados": "alzad", "alzamiento": "alzamient", "alzas": "alzas", "alzheimer": "alzheim", "alzo": "alzo", "am": "am", "ama": "ama", "amaba": "amab", "amaban": "amab", "amabilidad": "amabil", "amable": "amabl", "amablemente": "amabl", "amables": "amabl", "amadeo": "amade", "amado": "amad", "amador": "amador", "amagaron": "amag", "amagó": "amag", "amamos": "amam", "amanda": "amand", "amando": "amand", "amanece": "amanec", "amanecer": "amanec", "amante": "amant", "amantes": "amant", "amanuense": "amanuens", "amapola": "amapol", "amar": "amar", "amaré": "amar", "amarga": "amarg", "amargarnos": "amarg", "amargas": "amarg", "amargos": "amarg", "amarilla": "amarill", "amarillas": "amarill", "amarillo": "amarill", "amarillos": "amarill", "amarme": "amarm", "amaro": "amar", "amarrado": "amarr", "amarrando": "amarr", "amarren": "amarr", "amarres": "amarr", "amarró": "amarr", "amaru": "amaru", "amas": "amas", "amasando": "amas", "amateur": "amateur", "amateurs": "amateurs", "amatista": "amat", "amatistas": "amat", "amatorias": "amatori", "ambas": "ambas", "ambassador": "ambass", "ambición": "ambicion", "ambicionan": "ambicion", "ambiciosa": "ambici", "ambicioso": "ambici", "ambiciosos": "ambici", "ambientación": "ambient", "ambiental": "ambiental", "ambientales": "ambiental", "ambientalista": "ambiental", "ambientalistas": "ambiental", "ambientalmente": "ambiental", "ambientar": "ambient", "ambiente": "ambient", "ambientes": "ambient", "ambigüedades": "ambigüedad", "ámbito": "ambit", "ámbitos": "ambit", "ambos": "ambos", "ambriz": "ambriz", "ambrose": "ambros", "ambrosio": "ambrosi", "ambulancia": "ambul", "ambulancias": "ambul", "ambulantes": "ambul", "ambulatorio": "ambulatori", "amda": "amda", "amen": "amen", "amén": "amen", "amenace": "amenac", "amenaqzado": "amenaqz", "amenaza": "amenaz", "amenazaba": "amenaz", "amenazadas": "amenaz", "amenazado": "amenaz", "amenazados": "amenaz", "amenazan": "amenaz", "amenazando": "amenaz", "amenazar": "amenaz", "amenazará": "amenaz", "amenazaron": "amenaz", "amenazas": "amenaz", "amenazó": "amenaz", "amenizador": "ameniz", "ameno": "amen", "america": "amer", "américa": "amer", "american": "americ", "americana": "american", "americanas": "american", "americanismo": "american", "americanista": "american", "americanistas": "american", "americano": "american", "americanos": "american", "américas": "amer", "américo": "amer", "amerimex": "amerimex", "ameritaba": "amerit", "ames": "ames", "ametralladoras": "ametrall", "amga": "amga", "amieva": "amiev", "amiga": "amig", "amigabilidad": "amig", "amigable": "amig", "amigas": "amig", "amigo": "amig", "amigos": "amig", "amigote": "amigot", "amiguismos": "amigu", "amiguita": "amiguit", "aminoró": "aminor", "amistad": "amist", "amistades": "amistad", "amistosa": "amist", "amistosas": "amist", "amistoso": "amist", "amistosos": "amist", "amnistía": "amnist", "amo": "amo", "amoldan": "amold", "amonestaba": "amonest", "amonestados": "amonest", "amoniaco": "amoniac", "amonio": "amoni", "amontonada": "amonton", "amor": "amor", "amores": "amor", "amoroso": "amor", "amortiguadores": "amortigu", "amosca": "amosc", "amotinados": "amotin", "amoxcalli": "amoxcalli", "amp": "amp", "amparado": "ampar", "amparar": "ampar", "ampararnos": "ampar", "ampare": "ampar", "amparo": "ampar", "amparos": "ampar", "amplia": "ampli", "amplía": "ampli", "ampliación": "ampliacion", "ampliaciones": "ampliacion", "ampliada": "ampli", "ampliadas": "ampli", "ampliado": "ampli", "ampliados": "ampli", "ampliamente": "ampli", "ampliando": "ampli", "ampliar": "ampli", "ampliará": "ampli", "ampliarán": "ampli", "ampliarla": "ampli", "ampliarse": "ampli", "amplias": "ampli", "amplíe": "ampli", "amplio": "ampli", "amplios": "ampli", "amplitud": "amplitud", "ampudia": "ampudi", "amputaron": "amput", "amueblar": "amuebl", "amuelan": "amuel", "an": "an", "ana": "ana", "anacaborca": "anacaborc", "anacrónico": "anacron", "añade": "añad", "añadido": "añad", "añadiendo": "añad", "añadieron": "añad", "añadió": "añad", "anáhuac": "anahuac", "analfabetas": "analfabet", "analfabetismo": "analfabet", "analice": "analic", "analicen": "analic", "análisis": "analisis", "analista": "anal", "analistas": "anal", "analiza": "analiz", "analizadas": "analiz", "analizado": "analiz", "analizados": "analiz", "analizamos": "analiz", "analizando": "analiz", "analizándolo": "analiz", "analizar": "analiz", "analizará": "analiz", "analizarán": "analiz", "analizaría": "analiz", "analizarla": "analiz", "analizarlo": "analiz", "analizaron": "analiz", "analizarse": "analiz", "analizó": "analiz", "análogas": "analog", "analogías": "analog", "anamup": "anamup", "anarquía": "anarqu", "anatemas": "anatem", "ancestrales": "ancestral", "ancestro": "ancestr", "ancestros": "ancestr", "ancha": "ancha", "anchas": "anchas", "ancho": "ancho", "anciana": "ancian", "ancianas": "ancian", "ancianitos": "ancianit", "anciano": "ancian", "ancianos": "ancian", "ancira": "ancir", "ancló": "anclo", "and": "and", "anda": "anda", "andaba": "andab", "andaban": "andab", "andamos": "andam", "andan": "andan", "andar": "andar", "andaría": "andar", "ande": "ande", "andei": "andei", "anderson": "anderson", "andes": "andes", "andina": "andin", "andino": "andin", "ando": "ando", "andrade": "andrad", "andrea": "andre", "andres": "andres", "andrés": "andres", "andrew": "andrew", "anduvo": "anduv", "anécdota": "anecdot", "anemia": "anemi", "anémica": "anem", "anestesia": "anestesi", "anexada": "anex", "anexamos": "anex", "anexas": "anex", "anexos": "anex", "anfibios": "anfibi", "anfisbena": "anfisben", "anfiteatro": "anfiteatr", "anfitrión": "anfitrion", "ánfora": "anfor", "ánforas": "anfor", "angel": "angel", "ángel": "angel", "angeles": "angel", "ángeles": "angel", "angélica": "angel", "angélicas": "angel", "angelina": "angelin", "angelino": "angelin", "angelito": "angelit", "angelitos": "angelit", "angelo": "angel", "angelus": "angelus", "angiosperma": "angiosperm", "angiospermas": "angiosperm", "anglicana": "anglican", "anglo": "anglo", "angola": "angol", "angoleña": "angoleñ", "angoleño": "angoleñ", "angoleños": "angoleñ", "angongueo": "angongue", "angostura": "angostur", "ángulo": "angul", "angustia": "angusti", "angustiada": "angusti", "angustias": "angusti", "angustió": "angust", "anhatl": "anhatl", "anhelado": "anhel", "anhelo": "anhel", "anillo": "anill", "anima": "anim", "animación": "anim", "animal": "animal", "animales": "animal", "animalización": "animaliz", "animar": "anim", "animarán": "anim", "anímica": "anim", "anímicamente": "anim", "ánimo": "anim", "ánimos": "anim", "aniversario": "aniversari", "ann": "ann", "anna": "anna", "año": "año", "anoche": "anoch", "anochecer": "anochec", "anonas": "anon", "anónima": "anonim", "anónimas": "anonim", "anonimato": "anonimat", "anónimo": "anonim", "anónimos": "anon", "años": "años", "añosfueron": "añosfueron", "anotaba": "anot", "anotación": "anot", "anotaciones": "anot", "anotado": "anot", "anotados": "anot", "anotando": "anot", "anotar": "anot", "anotaron": "anot", "anotarse": "anot", "anote": "anot", "anoten": "anot", "anotó": "anot", "anselmo": "anselm", "ansias": "ansi", "ansiedad": "ansied", "ansioso": "ansios", "anstee": "anste", "antad": "antad", "antaño": "antañ", "ante": "ante", "anteayer": "anteay", "antebrazo": "antebraz", "antecedente": "antecedent", "antecedentes": "antecedent", "antecesores": "antecesor", "antemano": "anteman", "anteo": "ante", "anteojos": "anteoj", "antepasado": "antepas", "antepenúltimo": "antepenultim", "anterior": "anterior", "anteriores": "anterior", "anterioridad": "anterior", "anteriormente": "anterior", "antes": "antes", "antesala": "antesal", "antesalista": "antesal", "anthony": "anthony", "anti": "anti", "antiaéreas": "antiaer", "anticipaba": "anticip", "anticipación": "anticip", "anticipada": "anticip", "anticipadamente": "anticip", "anticipadas": "anticip", "anticipado": "anticip", "anticipamos": "anticip", "anticipando": "anticip", "anticipar": "anticip", "anticiparon": "anticip", "anticipos": "anticip", "anticonstitucional": "anticonstitucional", "anticontaminante": "anticontamin", "anticontaminantes": "anticontamin", "anticristo": "anticrist", "anticuarios": "anticuari", "antidemocrática": "antidemocrat", "antiderrapante": "antiderrap", "antidoping": "antidoping", "antidoto": "antidot", "antídotos": "antidot", "antidrogas": "antidrog", "antidumping": "antidumping", "antier": "anti", "antiestrés": "antiestres", "antigua": "antigu", "antiguas": "antigu", "antigüedad": "antigüed", "antigüedades": "antigüedad", "antiguo": "antigu", "antiguos": "antigu", "antillano": "antillan", "antillanos": "antillan", "antillas": "antill", "antimonopolio": "antimonopoli", "antinarcóticos": "antinarcot", "antinépota": "antinepot", "antioqueña": "antioqueñ", "antiparasitaria": "antiparasitari", "antipatía": "antipat", "antisocial": "antisocial", "antisubversiva": "antisubvers", "antítesis": "antitesis", "antoja": "antoj", "antojo": "antoj", "antonelli": "antonelli", "antonin": "antonin", "antonini": "antonini", "antonio": "antoni", "antorchista": "antorch", "antropología": "antropolog", "antropólogo": "antropolog", "anual": "anual", "anuales": "anual", "anualmente": "anual", "anulación": "anul", "anuladas": "anul", "anulados": "anul", "anularlo": "anul", "anuncia": "anunci", "anunciaba": "anunci", "anunciaban": "anunci", "anunciada": "anunci", "anunciadas": "anunci", "anunciado": "anunci", "anunciados": "anunci", "anuncian": "anunci", "anunciando": "anunci", "anunciar": "anunci", "anunciará": "anunci", "anunciarlo": "anunci", "anunciaron": "anunci", "anuncio": "anunci", "anunció": "anunc", "anuncios": "anunci", "anzuelo": "anzuel", "anzuelos": "anzuel", "ap": "ap", "apabulló": "apabull", "apaches": "apach", "apacible": "apac", "apaga": "apag", "apagados": "apag", "apagan": "apag", "apagará": "apag", "apagó": "apag", "apagón": "apagon", "apaleó": "apale", "aparadores": "apar", "aparato": "aparat", "aparatos": "aparat", "aparatosa": "aparat", "aparcar": "aparc", "aparece": "aparec", "aparecen": "aparec", "aparecer": "aparec", "aparecía": "aparec", "aparecidas": "aparec", "aparecido": "aparec", "apareciendo": "aparec", "apareciera": "aparec", "aparecieron": "aparec", "apareció": "aparec", "aparentan": "aparent", "aparentar": "aparent", "aparente": "aparent", "aparentemente": "aparent", "aparentes": "aparent", "aparentó": "aparent", "aparezca": "aparezc", "aparezcan": "aparezc", "aparición": "aparicion", "apariciones": "aparicion", "apariencia": "aparient", "apariencias": "aparient", "apartado": "apart", "apartados": "apart", "apartamento": "apartament", "apartamentos": "apartament", "apartan": "apart", "aparte": "apart", "apasionadamente": "apasion", "apasionado": "apasion", "apasionamiento": "apasion", "apasionantes": "apasion", "apatía": "apat", "apáticas": "apat", "apáticos": "apat", "apedrean": "apedr", "apegada": "apeg", "apegadas": "apeg", "apegan": "apeg", "apegarnos": "apeg", "apegarse": "apeg", "apego": "apeg", "apelación": "apel", "apelaciones": "apel", "apelar": "apel", "apelarán": "apel", "apelativos": "apel", "apellido": "apell", "apelo": "apel", "apenado": "apen", "apenaron": "apen", "apenas": "apen", "apéndice": "apendic", "apendicitis": "apendicitis", "apertura": "apertur", "apetito": "apetit", "apizaco": "apizac", "aplacarlos": "aplac", "aplasta": "aplast", "aplastada": "aplast", "aplastaron": "aplast", "aplaude": "aplaud", "aplaudiendo": "aplaud", "aplaudieran": "aplaud", "aplaudieron": "aplaud", "aplaudió": "aplaud", "aplaudir": "aplaud", "aplaudirán": "aplaud", "aplauso": "aplaus", "aplausos": "aplaus", "aplaza": "aplaz", "aplazada": "aplaz", "aplazamiento": "aplaz", "aplazó": "aplaz", "aplica": "aplic", "aplicables": "aplic", "aplicación": "aplic", "aplicaciones": "aplic", "aplicada": "aplic", "aplicado": "aplic", "aplicados": "aplic", "aplican": "aplic", "aplicar": "aplic", "aplicara": "aplic", "aplicará": "aplic", "aplicáramos": "aplic", "aplicarán": "aplic", "aplicaríamos": "aplic", "aplicarla": "aplic", "aplicarle": "aplic", "aplicarlos": "aplic", "aplicaron": "aplic", "aplicarse": "aplic", "aplico": "aplic", "aplicó": "aplic", "aplique": "apliqu", "apliquen": "apliqu", "apo": "apo", "apocada": "apoc", "apocalipsis": "apocalipsis", "apocalíptica": "apocalipt", "apocalípticas": "apocalipt", "apócrifo": "apocrif", "apoda": "apod", "apodaban": "apod", "apodaca": "apodac", "apodado": "apod", "apoderado": "apoder", "apoderándose": "apoder", "apoderaron": "apoder", "apoderó": "apoder", "apodo": "apod", "apogeo": "apoge", "apoplejía": "apoplej", "apoquinar": "apoquin", "aporta": "aport", "aportación": "aport", "aportaciones": "aport", "aportado": "aport", "aportamos": "aport", "aportan": "aport", "aportando": "aport", "aportar": "aport", "aportará": "aport", "aportaron": "aport", "aporte": "aport", "aporten": "aport", "aportó": "aport", "aposentos": "aposent", "apostados": "apost", "apostamos": "apost", "apostar": "apost", "apostemos": "apost", "apostó": "apost", "apóstoles": "apostol", "apostólica": "apostol", "apostólico": "apostol", "apoya": "apoy", "apoyaban": "apoy", "apoyada": "apoy", "apoyado": "apoy", "apoyados": "apoy", "apoyamos": "apoy", "apoyan": "apoy", "apoyando": "apoy", "apoyándola": "apoy", "apoyándonos": "apoy", "apoyándose": "apoy", "apoyar": "apoy", "apoyara": "apoy", "apoyará": "apoy", "apoyarán": "apoy", "apoyaremos": "apoy", "apoyaría": "apoy", "apoyarian": "apoyari", "apoyarlo": "apoy", "apoyaron": "apoy", "apoyasen": "apoy", "apoye": "apoy", "apoyen": "apoy", "apoyo": "apoy", "apoyó": "apoy", "apoyos": "apoy", "appel": "appel", "apple": "apple", "apra": "apra", "aprecia": "apreci", "apreciación": "apreci", "apreciada": "apreci", "apreciado": "apreci", "apreciar": "apreci", "apreciarlo": "apreci", "apreciaron": "apreci", "apreciarse": "apreci", "aprecio": "apreci", "apreció": "aprec", "aprehendido": "aprehend", "aprehension": "aprehension", "aprehensión": "aprehension", "aprehensiones": "aprehension", "aprehensores": "aprehensor", "aprenda": "aprend", "aprendan": "aprend", "aprende": "aprend", "aprenden": "aprend", "aprender": "aprend", "aprenderá": "aprend", "aprenderlo": "aprend", "aprendices": "aprendic", "aprendido": "aprend", "aprendiendo": "aprend", "aprendieron": "aprend", "aprendió": "aprend", "aprendiste": "aprend", "aprendizaje": "aprendizaj", "aprestos": "aprest", "apresura": "apresur", "apresuradamente": "apresur", "apresurado": "apresur", "apresuramiento": "apresur", "apresurando": "apresur", "apresurar": "apresur", "apresuró": "apresur", "apretado": "apret", "apretamos": "apret", "apretar": "apret", "apretarlo": "apret", "apretaron": "apret", "apretó": "apret", "apretón": "apreton", "aprieta": "apriet", "apriete": "apriet", "aprieten": "apriet", "aprietos": "apriet", "apro": "apro", "aprobación": "aprob", "aprobada": "aprob", "aprobadas": "aprob", "aprobado": "aprob", "aprobados": "aprob", "aprobar": "aprob", "aprobará": "aprob", "aprobarán": "aprob", "aprobaron": "aprob", "aprobarse": "aprob", "aprobatorio": "aprobatori", "aprobó": "aprob", "apropiada": "apropi", "apropiadamente": "apropi", "apropiadas": "apropi", "apropiado": "apropi", "apropiados": "apropi", "apropian": "apropi", "aprovecha": "aprovech", "aprovechado": "aprovech", "aprovechamiento": "aprovech", "aprovechan": "aprovech", "aprovechando": "aprovech", "aprovechar": "aprovech", "aprovecharán": "aprovech", "aprovecharla": "aprovech", "aprovecharlas": "aprovech", "aprovecharon": "aprovech", "aprovecharse": "aprovech", "aproveche": "aprovech", "aprovechó": "aprovech", "aproximaba": "aproxim", "aproximación": "aproxim", "aproximada": "aproxim", "aproximadamente": "aproxim", "aproximado": "aproxim", "aproximados": "aproxim", "aproximan": "aproxim", "aprueba": "aprueb", "aprueban": "aprueb", "apruebe": "aprueb", "aprueben": "aprueb", "aptas": "aptas", "aptitud": "aptitud", "aptitudes": "aptitud", "aptos": "aptos", "apuesta": "apuest", "apuestas": "apuest", "apuesto": "apuest", "apuestos": "apuest", "apunta": "apunt", "apuntalado": "apuntal", "apuntalar": "apuntal", "apuntan": "apunt", "apuntar": "apunt", "apuntaron": "apunt", "apuntes": "apunt", "apuntó": "apunt", "aquel": "aquel", "aquél": "aquel", "aquelarre": "aquelarr", "aquelarres": "aquelarr", "aquella": "aquell", "aquellas": "aquell", "aquéllas": "aquell", "aquello": "aquell", "aquellos": "aquell", "aquéllos": "aquell", "aqui": "aqui", "aquí": "aqu", "aquiles": "aquil", "aquino": "aquin", "arabe": "arab", "árabe": "arab", "árabes": "arab", "arábiga": "arabig", "arado": "arad", "aragón": "aragon", "aragua": "aragu", "araiza": "araiz", "arana": "aran", "arañas": "arañ", "arancel": "arancel", "arancelarias": "arancelari", "aranceles": "arancel", "aranda": "arand", "arango": "arang", "aranjuez": "aranjuez", "aras": "aras", "arau": "arau", "araujo": "arauj", "arbitraje": "arbitraj", "arbitral": "arbitral", "arbitraria": "arbitrari", "arbitrarias": "arbitrari", "arbitrariedades": "arbitrariedad", "arbitrario": "arbitrari", "arbitrio": "arbitri", "árbitro": "arbitr", "árbitros": "arbitr", "árbol": "arbol", "arboles": "arbol", "árboles": "arbol", "arbusto": "arbust", "arcadio": "arcadi", "arcángeles": "arcangel", "archaelogy": "archaelogy", "archiconservadores": "archiconserv", "archiduque": "archiduqu", "archipiélago": "archipielag", "archivada": "archiv", "archivo": "archiv", "archundia": "archundi", "arcilla": "arcill", "arcillistas": "arcill", "arco": "arco", "arcoiris": "arcoiris", "arcusa": "arcus", "ardía": "ardi", "ardiente": "ardient", "ardientes": "ardient", "arduo": "ardu", "área": "are", "areas": "are", "áreas": "are", "arellanes": "arellan", "arena": "aren", "arenal": "arenal", "areoportuarias": "areoportuari", "aretes": "aret", "arévalo": "areval", "argentina": "argentin", "argentinabrasil": "argentinabrasil", "argentino": "argentin", "argentinos": "argentin", "argoytia": "argoyti", "argudín": "argudin", "arguelles": "arguell", "argumenta": "argument", "argumentando": "argument", "argumentar": "argument", "argumentarán": "argument", "argumentaron": "argument", "argumento": "argument", "argumentó": "argument", "argumentos": "argument", "arias": "ari", "ariel": "ariel", "ariete": "ariet", "arista": "arist", "aristócratas": "aristocrat", "aristóteles": "aristotel", "aritmética": "aritmet", "aritmético": "aritmet", "arizmendi": "arizmendi", "arizona": "arizon", "arkansas": "arkans", "arlette": "arlett", "arma": "arma", "armada": "armad", "armadas": "armad", "armadillo": "armadill", "armado": "armad", "armadoras": "armador", "armados": "armad", "armagedón": "armagedon", "armamento": "armament", "armamentos": "armament", "armando": "armand", "armani": "armani", "armar": "armar", "armas": "armas", "armella": "armell", "armendáriz": "armendariz", "armenio": "armeni", "armillita": "armillit", "armisticio": "armistici", "armó": "armo", "armonía": "armon", "armónica": "armon", "armónico": "armon", "armoniosa": "armoni", "armonización": "armoniz", "armonizar": "armoniz", "armonizarse": "armoniz", "armstrong": "armstrong", "army": "army", "arnaldo": "arnald", "arnoldo": "arnold", "arnulfo": "arnulf", "aromas": "arom", "aromatizantes": "aromatiz", "aromatizar": "aromatiz", "aros": "aros", "arq": "arq", "arqueóloga": "arqueolog", "arqueología": "arqueolog", "arqueológica": "arqueolog", "arqueológicas": "arqueolog", "arqueológico": "arqueolog", "arqueológicos": "arqueolog", "arqueólogos": "arqueolog", "arquero": "arquer", "arquidiócesis": "arquidiocesis", "arquitecto": "arquitect", "arquitectónicamente": "arquitecton", "arquitectónicas": "arquitecton", "arquitectónico": "arquitecton", "arquitectos": "arquitect", "arquitectura": "arquitectur", "arquitecturas": "arquitectur", "arracadas": "arrac", "arrachera": "arracher", "arraigada": "arraig", "arraigado": "arraig", "arraigo": "arraig", "arrambide": "arrambid", "arranca": "arranc", "arrancados": "arranc", "arrancando": "arranc", "arrancar": "arranc", "arrancará": "arranc", "arrancarán": "arranc", "arrancaremos": "arranc", "arrancaron": "arranc", "arrancárselo": "arranc", "arrancó": "arranc", "arranque": "arranqu", "arrasaron": "arras", "arrastrada": "arrastr", "arrastrados": "arrastr", "arrastrando": "arrastr", "arrastre": "arrastr", "arrastró": "arrastr", "arreaga": "arreag", "arrear": "arre", "arrebatada": "arrebat", "arrebatar": "arrebat", "arrebatara": "arrebat", "arrebató": "arrebat", "arredondo": "arredond", "arredra": "arredr", "arregla": "arregl", "arreglada": "arregl", "arreglan": "arregl", "arreglar": "arregl", "arreglaran": "arregl", "arreglarse": "arregl", "arreglas": "arregl", "arreglo": "arregl", "arregló": "arregl", "arreglos": "arregl", "arremangó": "arremang", "arremetió": "arremet", "arrendaba": "arrend", "arrendador": "arrend", "arrendadora": "arrend", "arrendadoras": "arrend", "arrendamiento": "arrend", "arrendamientos": "arrend", "arrendatario": "arrendatari", "arreola": "arreol", "arrepentido": "arrepent", "arrepentimiento": "arrepent", "arrepiente": "arrepient", "arrestado": "arrest", "arrestados": "arrest", "arrested": "arrest", "arresto": "arrest", "arrestó": "arrest", "arrestos": "arrest", "arriaga": "arriag", "arriba": "arrib", "arribo": "arrib", "arribó": "arrib", "arriesga": "arriesg", "arriesgada": "arriesg", "arriesgado": "arriesg", "arriesgamos": "arriesg", "arriesgando": "arriesg", "arriesgar": "arriesg", "arriesgarían": "arriesg", "arriesgarlo": "arriesg", "arriesgarse": "arriesg", "arrimo": "arrim", "arrivederci": "arrivederci", "arrobamiento": "arrob", "arrodillar": "arrodill", "arrogante": "arrog", "arroja": "arroj", "arrojaban": "arroj", "arrojada": "arroj", "arrojado": "arroj", "arrojados": "arroj", "arrojan": "arroj", "arrojando": "arroj", "arrojar": "arroj", "arrojarlos": "arroj", "arrojaron": "arroj", "arrojen": "arroj", "arrojó": "arroj", "arrolladas": "arroll", "arrollado": "arroll", "arrolló": "arroll", "arropados": "arrop", "arrópese": "arropes", "arroyo": "arroy", "arroyó": "arroy", "arroyos": "arroy", "arroz": "arroz", "arrugas": "arrug", "arruinado": "arruin", "arruinan": "arruin", "arruinarse": "arruin", "arrutinamos": "arrutin", "arsenio": "arseni", "art": "art", "arte": "arte", "arteaga": "arteag", "artefacto": "artefact", "artemio": "artemi", "arteria": "arteri", "arterias": "arteri", "arterioesclerosis": "arterioesclerosis", "arteroesclerosis": "arteroesclerosis", "artes": "artes", "artesanal": "artesanal", "artesanales": "artesanal", "artesanas": "artesan", "artesanías": "artesan", "artesianos": "artesian", "arthur": "arthur", "articulación": "articul", "articulado": "articul", "artículo": "articul", "artículos": "articul", "artífice": "artific", "artificial": "artificial", "artificiales": "artificial", "artificialmente": "artificial", "artificio": "artifici", "artillería": "artill", "artilleros": "artiller", "artista": "artist", "artistas": "artist", "artística": "artist", "artísticas": "artist", "artístico": "artist", "artísticos": "artist", "arturo": "artur", "arvernse": "arverns", "aryca": "aryca", "arzobispal": "arzobispal", "arzobispo": "arzobisp", "as": "as", "asa": "asa", "asada": "asad", "asadas": "asad", "asaltaba": "asalt", "asaltada": "asalt", "asaltado": "asalt", "asaltados": "asalt", "asaltan": "asalt", "asaltante": "asalt", "asaltantes": "asalt", "asaltar": "asalt", "asaltaron": "asalt", "asalto": "asalt", "asaltó": "asalt", "asaltos": "asalt", "asamblea": "asamble", "asambleas": "asambl", "asambleísas": "asambleis", "ascencio": "ascenci", "ascendencia": "ascendent", "ascendente": "ascendent", "ascenderá": "ascend", "ascenderían": "ascend", "ascendido": "ascend", "ascendiendo": "ascend", "ascendieron": "ascend", "ascendió": "ascend", "ascenso": "ascens", "ascensos": "ascens", "asciende": "asciend", "ascienden": "asciend", "aseados": "ase", "asegura": "asegur", "aseguraba": "asegur", "asegurada": "asegur", "aseguradas": "asegur", "asegurado": "asegur", "aseguradora": "asegur", "asegurados": "asegur", "aseguramiento": "asegur", "aseguran": "asegur", "asegurar": "asegur", "aseguraremos": "asegur", "asegurarle": "asegur", "aseguraron": "asegur", "aseguren": "asegur", "asegúrese": "asegures", "aseguró": "asegur", "asemeja": "asemej", "asemejaba": "asemej", "asemex": "asemex", "asención": "asencion", "asentadas": "asent", "asentado": "asent", "asentamiento": "asent", "asentamientos": "asent", "asentándose": "asent", "asentó": "asent", "asertivo": "asert", "ases": "ases", "asesinada": "asesin", "asesinado": "asesin", "asesinar": "asesin", "asesinaron": "asesin", "asesinato": "asesinat", "asesinatos": "asesinat", "asesino": "asesin", "asesinó": "asesin", "asesinos": "asesin", "asesor": "asesor", "asesora": "asesor", "asesoraban": "asesor", "asesorado": "asesor", "asesoramiento": "asesor", "asesorar": "asesor", "asesorarlo": "asesor", "asesores": "asesor", "asesoría": "asesor", "asestadas": "asest", "asestó": "asest", "asevera": "asever", "aseverando": "asever", "aseveraron": "asever", "aseveró": "asever", "asfalto": "asfalt", "asfixia": "asfixi", "ashida": "ashid", "asi": "asi", "así": "asi", "asia": "asi", "asiático": "asiat", "asic": "asic", "asiduo": "asidu", "asienta": "asient", "asiento": "asient", "asientos": "asient", "asigna": "asign", "asignación": "asign", "asignadas": "asign", "asignado": "asign", "asignados": "asign", "asignan": "asign", "asignando": "asign", "asignar": "asign", "asignaron": "asign", "asignen": "asign", "asimétrica": "asimetr", "asimilación": "asimil", "asimilar": "asimil", "asimilemos": "asimil", "asimismo": "asim", "asímismo": "asim", "asista": "asist", "asistan": "asist", "asiste": "asist", "asisten": "asist", "asistencia": "asistent", "asistenciales": "asistencial", "asistencias": "asistent", "asistentes": "asistent", "asistían": "asist", "asistiendo": "asist", "asistiéndose": "asist", "asistiera": "asist", "asistieron": "asist", "asistió": "asist", "asistir": "asist", "asistirá": "asist", "asistirán": "asist", "asitex": "asitex", "asocia": "asoci", "asociación": "asoci", "asociaciones": "asoci", "asociada": "asoci", "asociado": "asoci", "asociados": "asoci", "asocian": "asoci", "asociar": "asoci", "asociaron": "asoci", "asociarse": "asoci", "asombra": "asombr", "asombradas": "asombr", "asómbrese": "asombres", "asombro": "asombr", "asombrosa": "asombr", "asombrosamente": "asombr", "asómese": "asomes", "asomo": "asom", "asomó": "asom", "asotiation": "asotiation", "aspavientos": "aspavient", "aspe": "aspe", "aspecto": "aspect", "aspectos": "aspect", "ásperamente": "asper", "áspero": "asper", "aspersión": "aspersion", "aspes": "aspes", "aspetia": "aspeti", "aspira": "aspir", "aspiraciones": "aspir", "aspiran": "aspir", "aspirante": "aspir", "aspirantes": "aspir", "aspirar": "aspir", "aspirara": "aspir", "assessment": "assessment", "associates": "associat", "association": "association", "astado": "astad", "asteroide": "asteroid", "asteroides": "asteroid", "astro": "astro", "astroditomas": "astroditom", "astrología": "astrolog", "astrológico": "astrolog", "astronautas": "astronaut", "astronómicos": "astronom", "astros": "astros", "asuma": "asum", "asuman": "asum", "asume": "asum", "asumen": "asum", "asumido": "asum", "asumiendo": "asum", "asumiera": "asum", "asumieron": "asum", "asumimos": "asum", "asumió": "asum", "asumir": "asum", "asumirá": "asum", "asuntito": "asuntit", "asunto": "asunt", "asuntos": "asunt", "asustada": "asust", "asustado": "asust", "asustar": "asust", "asuste": "asust", "asusten": "asust", "at": "at", "ataca": "atac", "atacada": "atac", "atacado": "atac", "atacados": "atac", "atacan": "atac", "atacando": "atac", "atacándolo": "atac", "atacante": "atac", "atacantes": "atac", "atacar": "atac", "atacará": "atac", "atacarán": "atac", "atacarlos": "atac", "atacaron": "atac", "atacas": "atac", "atacó": "atac", "atadas": "atad", "atados": "atad", "atanasio": "atanasi", "atañe": "atañ", "ataque": "ataqu", "ataques": "ataqu", "atardecer": "atardec", "atarlos": "atarl", "ataron": "ataron", "atascadas": "atasc", "atascón": "atascon", "atasta": "atast", "ataviado": "atavi", "ataviados": "atavi", "atávicos": "atav", "atemorizante": "atemoriz", "atención": "atencion", "atenciones": "atencion", "atendamos": "atend", "atender": "atend", "atenderá": "atend", "atenderán": "atend", "atenderían": "atend", "atenderlos": "atend", "atendía": "atend", "atendida": "atend", "atendidas": "atend", "atendido": "atend", "atendidos": "atend", "atendieran": "atend", "atendieron": "atend", "atendió": "atend", "atenemos": "aten", "atenta": "atent", "atentado": "atent", "atentados": "atent", "atentamente": "atent", "atentar": "atent", "atenten": "atent", "atento": "atent", "atentos": "atent", "aterra": "aterr", "aterrados": "aterr", "aterrizaje": "aterrizaj", "aterrorizada": "aterroriz", "ates": "ates", "athlone": "athlon", "atiborran": "atiborr", "atienda": "atiend", "atiende": "atiend", "atienden": "atiend", "atinada": "atin", "atinadamente": "atin", "atinados": "atin", "atípico": "atip", "atlanta": "atlant", "atlante": "atlant", "atlantic": "atlantic", "atlántico": "atlant", "atlantis": "atlantis", "atlantista": "atlant", "atlantistas": "atlant", "atlas": "atlas", "atleta": "atlet", "atletas": "atlet", "atlético": "atlet", "atletismo": "atlet", "atmósfera": "atmosfer", "atmosférica": "atmosfer", "atmosférico": "atmosfer", "atolladero": "atollader", "atolondradas": "atolondr", "atómica": "atom", "atómicas": "atom", "atomizador": "atomiz", "atónitos": "atonit", "atópica": "atop", "atosigaba": "atosig", "atp": "atp", "atracados": "atrac", "atracción": "atraccion", "atraco": "atrac", "atractiva": "atract", "atractivas": "atract", "atractivo": "atract", "atractivos": "atract", "atrae": "atra", "atraen": "atra", "atraer": "atra", "atraídos": "atraid", "atrajo": "atraj", "atrapadas": "atrap", "atrapado": "atrap", "atrapados": "atrap", "atrapan": "atrap", "atrápelo": "atrapel", "atrás": "atras", "atrasaditos": "atrasadit", "atrasado": "atras", "atrasados": "atras", "atrasarnos": "atras", "atrasen": "atras", "atraso": "atras", "atravesado": "atraves", "atravesaron": "atraves", "atraviesa": "atravies", "atraviesan": "atravies", "atrevería": "atrev", "atrevida": "atrev", "atrevido": "atrev", "atrevo": "atrev", "atribuciones": "atribu", "atribuible": "atribu", "atribuibles": "atribu", "atribuido": "atribu", "atribuirse": "atribu", "atribulado": "atribul", "atribulados": "atribul", "atributos": "atribut", "atribuye": "atribu", "atribuyó": "atribu", "atrofia": "atrofi", "atropella": "atropell", "atropellado": "atropell", "atropellar": "atropell", "atropelló": "atropell", "atte": "atte", "atuendos": "atuend", "atzcapotzalco": "atzcapotzalc", "auburn": "auburn", "audacia": "audaci", "audaz": "audaz", "audelo": "audel", "audición": "audicion", "audicionar": "audicion", "audiencia": "audienci", "audífonos": "audifon", "audio": "audi", "audiovisuales": "audiovisual", "auditiva": "audit", "auditivo": "audit", "auditores": "auditor", "auditoria": "auditori", "auditoría": "auditor", "auditorías": "auditor", "auditorio": "auditori", "auditorium": "auditorium", "auge": "aug", "augura": "augur", "augurio": "auguri", "augurios": "auguri", "auguró": "augur", "august": "august", "augusto": "august", "augustus": "augustus", "aula": "aul", "aulas": "aul", "aumenta": "aument", "aumentaba": "aument", "aumentado": "aument", "aumentar": "aument", "aumentara": "aument", "aumentará": "aument", "aumentarán": "aument", "aumentaron": "aument", "aumente": "aument", "aumenten": "aument", "aumento": "aument", "aumentó": "aument", "aumentos": "aument", "aun": "aun", "aún": "aun", "aunado": "aun", "aunque": "aunqu", "aurelio": "aureli", "aureola": "aureol", "auriazul": "auriazul", "aurio": "auri", "aurora": "auror", "aurrera": "aurrer", "aurrerá": "aurr", "aurreras": "aurrer", "ausencia": "ausenci", "ausentarse": "ausent", "ausente": "ausent", "ausentes": "ausent", "ausentismo": "ausent", "auspicia": "auspici", "auspiciadoras": "auspici", "auspiciará": "auspici", "auspicio": "auspici", "auspicios": "auspici", "austeras": "auster", "austeridad": "auster", "austero": "auster", "austeros": "auster", "austin": "austin", "australia": "australi", "australian": "australi", "australianos": "australian", "austriacos": "austriac", "autárticos": "autart", "auténticamente": "autent", "auténtico": "autent", "auténticos": "autent", "auto": "aut", "autoanálisis": "autoanalisis", "autobalance": "autobalanc", "autobiografía": "autobiograf", "autobús": "autobus", "autobuses": "autobus", "autocalifica": "autocalif", "autocalificación": "autocalif", "autocalificada": "autocalific", "autocalificar": "autocalific", "autocontrol": "autocontrol", "autocrítica": "autocrit", "autódromo": "autodrom", "autoestima": "autoestim", "autoevaluación": "autoevalu", "autofinanciamiento": "autofinanci", "autofinanciamientos": "autofinanci", "autogol": "autogol", "autógrafos": "autograf", "automática": "automat", "automáticamente": "automat", "automáticas": "automat", "automático": "automat", "automatización": "automatiz", "automatizado": "automatiz", "automatizados": "automatiz", "automotor": "automotor", "automotores": "automotor", "automotrices": "automotric", "automotriz": "automotriz", "automovil": "automovil", "automóvil": "automovil", "automoviles": "automovil", "automóviles": "automovil", "automovilista": "automovil", "automovilistas": "automovil", "automovilística": "automovilist", "automovilístico": "automovilist", "automovilísticos": "automovilist", "autónoma": "autonom", "autonomía": "autonom", "autónomo": "autonom", "autónomos": "autonom", "autopartes": "autopart", "autopista": "autop", "autopistas": "autop", "autopsia": "autopsi", "autor": "autor", "autora": "autor", "autoregulación": "autoregul", "autores": "autor", "autorice": "autoric", "autoridad": "autor", "autoridades": "autor", "autoritaria": "autoritari", "autoritario": "autoritari", "autoritarismo": "autoritar", "autoritarismos": "autoritar", "autoriza": "autoriz", "autorización": "autoriz", "autorizaciones": "autoriz", "autorizada": "autoriz", "autorizadas": "autoriz", "autorizado": "autoriz", "autorizados": "autoriz", "autorizan": "autoriz", "autorizando": "autoriz", "autorizar": "autoriz", "autorizaran": "autoriz", "autorizarse": "autoriz", "autorizó": "autoriz", "autos": "aut", "autoservicio": "autoservici", "autoservicios": "autoservici", "autosuficiencia": "autosuficient", "autosuficientes": "autosuficient", "autotanques": "autotanqu", "autotransporte": "autotransport", "autotransportistas": "autotransport", "autrey": "autrey", "auxilia": "auxili", "auxiliado": "auxili", "auxiliados": "auxili", "auxiliando": "auxili", "auxiliar": "auxili", "auxiliares": "auxiliar", "auxiliarla": "auxili", "auxiliaron": "auxili", "auxilio": "auxili", "auxilios": "auxili", "av": "av", "aval": "aval", "avala": "aval", "avalaban": "aval", "avaladas": "aval", "avalan": "aval", "avalanchas": "avalanch", "avalando": "aval", "avalar": "aval", "avalaremos": "aval", "avalaron": "aval", "avale": "aval", "avalúo": "avalu", "avalúos": "avalu", "avance": "avanc", "avances": "avanc", "avanza": "avanz", "avanzaba": "avanz", "avanzada": "avanz", "avanzadas": "avanz", "avanzado": "avanz", "avanzados": "avanz", "avanzan": "avanz", "avanzando": "avanz", "avanzar": "avanz", "avanzarán": "avanz", "avanzaron": "avanz", "avanzó": "avanz", "avaro": "avar", "ave": "ave", "avecina": "avecin", "avecinado": "avecin", "avelar": "avel", "avelina": "avelin", "avenida": "aven", "avenidas": "aven", "aventaba": "avent", "aventaja": "aventaj", "aventó": "avent", "aventura": "aventur", "aventuradas": "aventur", "aventurado": "aventur", "aventuras": "aventur", "avergonzado": "avergonz", "avergüencen": "avergüenc", "averiguación": "averigu", "averiguaciones": "averigu", "averiguando": "averigu", "averiguar": "averigu", "averió": "aver", "averoes": "aver", "aves": "aves", "avestruz": "avestruz", "aviación": "aviacion", "aviacsa": "aviacs", "aviadurismo": "aviadur", "ávida": "avid", "avidez": "avidez", "ávido": "avid", "avientan": "avient", "avila": "avil", "avilán": "avilan", "avilés": "aviles", "avío": "avi", "avión": "avion", "aviones": "avion", "avisamos": "avis", "avisará": "avis", "avisarles": "avis", "avisaron": "avis", "aviso": "avis", "avisó": "avis", "avisora": "avisor", "avocara": "avoc", "awards": "awards", "axilar": "axil", "ay": "ay", "ayacucho": "ayacuch", "ayala": "ayal", "ayarzagoitia": "ayarzagoiti", "ayense": "ayens", "ayer": "ayer", "ayuda": "ayud", "ayudaba": "ayud", "ayudada": "ayud", "ayudado": "ayud", "ayudados": "ayud", "ayudamos": "ayud", "ayudan": "ayud", "ayudando": "ayud", "ayudándole": "ayud", "ayudándose": "ayud", "ayudante": "ayud", "ayudantes": "ayud", "ayudar": "ayud", "ayudara": "ayud", "ayudará": "ayud", "ayudaran": "ayud", "ayudaría": "ayud", "ayudarle": "ayud", "ayudarlo": "ayud", "ayudarlos": "ayud", "ayudaron": "ayud", "ayude": "ayud", "ayuden": "ayud", "ayudó": "ayud", "ayuntamiento": "ayunt", "ayuntamientos": "ayunt", "azáleas": "azal", "azalia": "azali", "azar": "azar", "azcárraga": "azcarrag", "azcua": "azcu", "azhamar": "azham", "azido": "azid", "azorrillan": "azorrill", "azotaba": "azot", "azotado": "azot", "azotando": "azot", "azteca": "aztec", "aztecas": "aztec", "aztlán": "aztlan", "azucar": "azuc", "azúcar": "azuc", "azúcares": "azucar", "azucena": "azucen", "azufre": "azufr", "azul": "azul", "azúl": "azul", "azules": "azul", "azulgrana": "azulgran", "azulosos": "azul", "azuma": "azum", "azumah": "azumah", "b": "b", "bab": "bab", "babalucas": "babaluc", "babilonia": "babiloni", "baby": "baby", "baccantes": "baccant", "bacco": "bacc", "bacheando": "bach", "bachilleres": "bachiller", "bacteria": "bacteri", "badmington": "badmington", "bae": "bae", "báez": "baez", "bafsa": "bafs", "bagaje": "bagaj", "bagdad": "bagd", "bahamas": "baham", "bahía": "bah", "baila": "bail", "bailable": "bailabl", "bailando": "bail", "bailar": "bail", "bailarines": "bailarin", "bailarlos": "bail", "baile": "bail", "bailes": "bail", "bailleres": "bailler", "baja": "baj", "bajacaliforniano": "bajacalifornian", "bajadas": "baj", "bajado": "baj", "bajan": "baj", "bajando": "baj", "bajar": "baj", "bajará": "baj", "bajarle": "baj", "bajaron": "baj", "bajarse": "baj", "bajas": "baj", "baje": "baj", "bajío": "baji", "bajista": "bajist", "bajo": "baj", "bajó": "baj", "bajonazo": "bajonaz", "bajos": "baj", "bala": "bal", "balaceados": "balac", "balacearlo": "balac", "balaceó": "balace", "balacera": "balacer", "balaceras": "balacer", "baladas": "bal", "balance": "balanc", "balanceadas": "balanc", "balanceado": "balanc", "balancear": "balanc", "balanza": "balanz", "balas": "bal", "balazo": "balaz", "balazos": "balaz", "balbina": "balbin", "balcanes": "balcan", "balcón": "balcon", "balcones": "balcon", "balderas": "balder", "baldío": "baldi", "baldomero": "baldomer", "baleada": "bal", "balística": "balist", "ball": "ball", "ballard": "ballard", "ballén": "ballen", "ballena": "ballen", "ballet": "ballet", "balompié": "balompi", "balón": "balon", "balones": "balon", "balsa": "bals", "baltazar": "baltaz", "baltimore": "baltimor", "baluarte": "baluart", "bamba": "bamb", "bambalinas": "bambalin", "baña": "bañ", "bañada": "bañ", "banamex": "banamex", "bañan": "bañ", "bananero": "bananer", "bañar": "bañ", "bañarse": "bañ", "banca": "banc", "bancaria": "bancari", "bancarias": "bancari", "bancario": "bancari", "bancarios": "bancari", "bancas": "banc", "banco": "banc", "bancomer": "bancom", "bancomext": "bancomext", "bancos": "banc", "bancrecer": "bancrec", "band": "band", "banda": "band", "bandas": "band", "bandazos": "bandaz", "bandeja": "bandej", "bandera": "bander", "banderas": "bander", "banderazo": "banderaz", "banderillas": "banderill", "banderillero": "banderiller", "banderín": "banderin", "banderita": "banderit", "bandidos": "band", "bando": "band", "bandos": "band", "bank": "bank", "bankers": "bankers", "banking": "banking", "bankshares": "bankshar", "baño": "bañ", "banoro": "banor", "baños": "bañ", "banpaís": "banp", "banquero": "banquer", "banqueros": "banquer", "banqueta": "banquet", "banquetas": "banquet", "banquillo": "banquill", "banrural": "banrural", "banxico": "banxic", "bar": "bar", "barahona": "barahon", "barajas": "baraj", "baranda": "barand", "barandal": "barandal", "barandilla": "barandill", "barata": "barat", "baratas": "barat", "barato": "barat", "barba": "barb", "barbacoa": "barbaco", "barbados": "barb", "bárbara": "barb", "barbarabbe": "barbarabb", "barbaridades": "barbar", "barbarie": "barbari", "barberena": "barberen", "barbosa": "barbos", "barcelona": "barcelon", "barceloneses": "barcelones", "barco": "barc", "barcos": "barc", "barda": "bard", "bardas": "bard", "bares": "bar", "barinas": "barin", "barocio": "baroci", "barón": "baron", "barra": "barr", "barragán": "barragan", "barranca": "barranc", "barranco": "barranc", "barras": "barr", "barre": "barr", "barreira": "barreir", "barrenechea": "barreneche", "barrera": "barrer", "barreras": "barrer", "barrerse": "barr", "barres": "barr", "barreto": "barret", "barrett": "barrett", "barría": "barr", "barrial": "barrial", "barriéndose": "barr", "barrientos": "barrient", "barrileras": "barriler", "barriles": "barril", "barrio": "barri", "barrios": "barri", "barro": "barr", "barroca": "barroc", "barroco": "barroc", "barros": "barr", "barrote": "barrot", "barry": "barry", "bart": "bart", "bartlett": "bartlett", "bartletts": "bartletts", "bartolo": "bartol", "basa": "bas", "basaba": "bas", "basada": "bas", "basadas": "bas", "basado": "bas", "basados": "bas", "basamos": "bas", "basándose": "bas", "basañez": "basañez", "basáñez": "basañez", "basar": "bas", "basará": "bas", "basarán": "bas", "basarse": "bas", "basave": "basav", "basay": "basay", "basch": "basch", "báscula": "bascul", "básculas": "bascul", "base": "bas", "basen": "bas", "bases": "bas", "básica": "basic", "básicamente": "basic", "basicas": "basic", "básicas": "basic", "básico": "basic", "básicos": "basic", "basile": "basil", "basílica": "basil", "basilio": "basili", "basó": "bas", "basquetbol": "basquetbol", "basset": "basset", "basta": "bast", "bastado": "bast", "bastan": "bast", "bastante": "bastant", "bastantes": "bastant", "bastaría": "bast", "baste": "bast", "bastó": "bast", "basualdo": "basuald", "basura": "basur", "basuras": "basur", "basurero": "basurer", "basureros": "basurer", "bat": "bat", "bata": "bat", "batalla": "batall", "batallan": "batall", "batallar": "batall", "batallaron": "batall", "batallas": "batall", "batallen": "batall", "batalló": "batall", "batallón": "batallon", "batas": "bat", "bate": "bat", "bateador": "bateador", "bateadores": "bateador", "bateo": "bate", "bateó": "bate", "batería": "bat", "baterías": "bat", "baterista": "bater", "batieron": "bat", "bátik": "batik", "batir": "bat", "batis": "batis", "batistuta": "batistut", "bátiz": "batiz", "batocletti": "batocletti", "battaglia": "battagli", "baudelaire": "baudelair", "bautista": "bautist", "bautizado": "bautiz", "bautizaría": "bautiz", "bautizo": "bautiz", "bautizos": "bautiz", "bayerische": "bayerisch", "baz": "baz", "bazaine": "bazain", "bazaldúa": "bazaldu", "bazán": "bazan", "bazar": "baz", "bazdresch": "bazdresch", "bc": "bc", "bch": "bch", "beach": "beach", "beamish": "beamish", "beatriz": "beatriz", "beauvais": "beauvais", "beauvaisis": "beauvaisis", "beaver": "beav", "bebé": "beb", "bebedero": "bebeder", "beber": "beb", "bebeto": "bebet", "bebidas": "beb", "bebió": "beb", "bebita": "bebit", "bebop": "bebop", "beca": "bec", "becado": "bec", "becario": "becari", "becarios": "becari", "becas": "bec", "becerra": "becerr", "becerril": "becerril", "becker": "beck", "becthel": "becthel", "bedoya": "bedoy", "beethoven": "beethov", "beginning": "beginning", "begiristain": "begiristain", "begoña": "begoñ", "begonia": "begoni", "beige": "beig", "beirut": "beirut", "beisbol": "beisbol", "beisbolero": "beisboler", "beisbolistas": "beisbol", "beisbolísticos": "beisbolist", "beisborama": "beisboram", "bejarano": "bejaran", "belair": "bel", "belaúnde": "belaund", "belden": "beld", "belén": "belen", "belga": "belg", "belgas": "belg", "bélgica": "belgic", "bélica": "belic", "belice": "belic", "beliceño": "beliceñ", "belicosos": "belic", "bella": "bell", "bellamente": "bell", "bellas": "bell", "beller": "bell", "belleza": "bellez", "bello": "bell", "bellone": "bellon", "belmont": "belmont", "ben": "ben", "benavente": "benavent", "benavides": "benavid", "benchmark": "benchmark", "benchmarking": "benchmarking", "benchmarks": "benchmarks", "bend": "bend", "bendesky": "bendesky", "bendición": "bendicion", "bendiciones": "bendicion", "bendijo": "bendij", "bendita": "bendit", "bendito": "bendit", "beneficencia": "beneficent", "beneficia": "benefici", "beneficiada": "benefici", "beneficiado": "benefici", "beneficiados": "benefici", "benefician": "benefici", "beneficiando": "benefici", "beneficiar": "benefici", "beneficiará": "benefici", "beneficiarán": "benefici", "beneficiaria": "beneficiari", "beneficiaría": "benefici", "beneficien": "benefici", "beneficio": "benefici", "benefició": "benefic", "beneficios": "benefici", "beneficiosas": "benefici", "beneficioso": "benefici", "beneplácito": "beneplacit", "benevolencia": "benevolent", "bengoa": "bengo", "benigno": "benign", "benítez": "benitez", "benito": "benit", "benjamín": "benjamin", "bennis": "bennis", "benotto": "benott", "benz": "benz", "benzeno": "benzen", "berchelmann": "berchelmann", "beregovoy": "beregovoy", "berenice": "berenic", "beresford": "beresford", "bérgamo": "bergam", "bergerac": "bergerac", "berges": "berg", "beria": "beri", "berlanga": "berlang", "berlín": "berlin", "berlinguer": "berlingu", "berman": "berm", "bermudas": "bermud", "bermúdez": "bermudez", "bernabe": "bernab", "bernabé": "bernab", "bernabeu": "bernabeu", "bernal": "bernal", "bernanos": "bernan", "bernard": "bernard", "bernardino": "bernardin", "bernardo": "bernard", "bernuncio": "bernunci", "berrinche": "berrinch", "berrinchito": "berrinchit", "berrueto": "berruet", "berta": "bert", "berumen": "berum", "besando": "bes", "besar": "bes", "besara": "bes", "besarla": "bes", "besarle": "bes", "bese": "bes", "beso": "bes", "besó": "bes", "best": "best", "bestia": "besti", "bestias": "besti", "betancourt": "betancourt", "betania": "betani", "bi": "bi", "bianchezi": "bianchezi", "bianchini": "bianchini", "biberón": "biberon", "bibi": "bibi", "biblia": "bibli", "biblias": "bibli", "bíblica": "biblic", "bíblico": "biblic", "bibliografía": "bibliograf", "bibliográficas": "bibliograf", "bibliográfico": "bibliograf", "biblioteca": "bibliotec", "bibliotecas": "bibliotec", "bicampeón": "bicampeon", "bicentenario": "bicentenari", "bíceps": "biceps", "bichos": "bich", "bicicleta": "biciclet", "bicicletas": "biciclet", "bien": "bien", "bienal": "bienal", "bienales": "bienal", "bienes": "bien", "bienestar": "bienest", "bienio": "bieni", "bienvenida": "bienven", "bienvenidas": "bienven", "bienvenido": "bienven", "bienvenidos": "bienven", "bierhaus": "bierhaus", "big": "big", "bigfoot": "bigfoot", "bigleaguers": "bigleaguers", "bigote": "bigot", "bigotes": "bigot", "bike": "bik", "bilardo": "bilard", "bilateral": "bilateral", "bilaterales": "bilateral", "bilateralmente": "bilateral", "bilbao": "bilba", "bilimek": "bilimek", "bill": "bill", "billar": "bill", "billete": "billet", "billetes": "billet", "billón": "billon", "billones": "billon", "bills": "bills", "billy": "billy", "bin": "bin", "binacional": "binacional", "bing": "bing", "biodegradable": "biodegrad", "biodegradables": "biodegrad", "biología": "biolog", "biológica": "biolog", "biológico": "biolog", "biólogo": "biolog", "biondi": "biondi", "biotecnología": "biotecnolog", "biotecnológica": "biotecnolog", "bióticos": "biotic", "bipolar": "bipol", "bird": "bird", "birks": "birks", "birlos": "birl", "bis": "bis", "bisabuela": "bisabuel", "biscaine": "biscain", "bismarck": "bismarck", "bissonnette": "bissonnett", "biznietos": "bizniet", "bjoern": "bjoern", "black": "black", "blackhawks": "blackhawks", "bladimir": "bladim", "blaise": "blais", "blanca": "blanc", "blancas": "blanc", "blanco": "blanc", "blancos": "blanc", "blancq": "blancq", "blandir": "bland", "blando": "bland", "blanquiazul": "blanquiazul", "blanquiazules": "blanquiazul", "blanquita": "blanquit", "blas": "blas", "blasa": "blas", "blasco": "blasc", "blasio": "blasi", "blasón": "blason", "blatidos": "blat", "block": "block", "blocker": "block", "bloque": "bloqu", "bloquea": "bloque", "bloqueadas": "bloqu", "bloqueado": "bloqu", "bloqueadoras": "bloqueador", "bloqueados": "bloqu", "bloquean": "bloqu", "bloqueando": "bloqu", "bloquear": "bloqu", "bloquearon": "bloqu", "bloqueo": "bloque", "bloqueos": "bloque", "bloques": "bloqu", "bloxcom": "bloxcom", "blue": "blu", "blues": "blu", "bm": "bm", "bmw": "bmw", "bob": "bob", "bobby": "bobby", "bobina": "bobin", "boca": "boc", "bocanadas": "bocan", "bocanegra": "bocanegr", "bocas": "boc", "bochini": "bochini", "bocho": "boch", "bochornos": "bochorn", "bochos": "boch", "bocina": "bocin", "bocinas": "bocin", "boda": "bod", "bodas": "bod", "bodega": "bodeg", "bodegas": "bodeg", "bofetón": "bofeton", "boga": "bog", "bogota": "bogot", "bogotá": "bogot", "bogue": "bog", "bohemio": "bohemi", "boicot": "boicot", "boicotearlas": "boicot", "boinas": "boin", "bola": "bol", "bolaños": "bolañ", "bolas": "bol", "boleados": "bol", "boleando": "bol", "boleo": "bole", "boleta": "bolet", "boletas": "bolet", "boletín": "boletin", "boletines": "boletin", "boleto": "bolet", "boletos": "bolet", "bolillo": "bolill", "bolillos": "bolill", "bolitas": "bolit", "bolivar": "boliv", "bolívar": "boliv", "bolivia": "bolivi", "boloña": "boloñ", "bolsa": "bols", "bolsas": "bols", "bolsillo": "bolsill", "bolsillos": "bolsill", "bolso": "bols", "bomba": "bomb", "bombardeado": "bombard", "bombardeos": "bombarde", "bombas": "bomb", "bombear": "bomb", "bombeo": "bombe", "bomberos": "bomber", "bondades": "bondad", "bondadosas": "bondad", "bondadoso": "bondad", "bone": "bon", "bonifacio": "bonifaci", "bonilla": "bonill", "bonita": "bonit", "bonitas": "bonit", "bonito": "bonit", "bonitos": "bonit", "bonn": "bonn", "bonos": "bon", "boom": "boom", "boomers": "boomers", "borax": "borax", "bordadores": "bordador", "bordados": "bord", "borde": "bord", "bordo": "bord", "bordos": "bord", "borge": "borg", "boricua": "boricu", "boris": "boris", "borja": "borj", "borla": "borl", "bormann": "bormann", "borrables": "borrabl", "borrachín": "borrachin", "borrachito": "borrachit", "borracho": "borrach", "borrador": "borrador", "borraja": "borraj", "borrando": "borr", "borrar": "borr", "borrego": "borreg", "borregos": "borreg", "borreguitos": "borreguit", "borrero": "borrer", "borroso": "borros", "borsalino": "borsalin", "borssum": "borssum", "bosch": "bosch", "boscosos": "boscos", "bosnia": "bosni", "bosnio": "bosni", "bosque": "bosqu", "bosquejarse": "bosquej", "bosques": "bosqu", "bossier": "bossi", "boston": "boston", "bostoniano": "bostonian", "bota": "bot", "botana": "botan", "botanero": "botaner", "botaneros": "botaner", "botas": "bot", "bote": "bot", "botella": "botell", "botellas": "botell", "botello": "botell", "botes": "bot", "botín": "botin", "botines": "botin", "botón": "boton", "botones": "boton", "bougthon": "bougthon", "boulevard": "boulevard", "bourbon": "bourbon", "bours": "bours", "boutique": "boutiqu", "boutiques": "boutiqu", "boutros": "boutr", "bovary": "bovary", "bovino": "bovin", "bowman": "bowm", "bowthorpe": "bowthorp", "box": "box", "boxeador": "boxeador", "boxeadores": "boxeador", "boxeo": "boxe", "boxeó": "boxe", "boxística": "boxist", "boy": "boy", "boyas": "boy", "boyle": "boyl", "bracamontes": "bracamont", "braceaba": "brac", "bracho": "brach", "bracket": "bracket", "bradenton": "bradenton", "brambila": "brambil", "branco": "branc", "brando": "brand", "brandt": "brandt", "brasero": "braser", "brasil": "brasil", "brasileira": "brasileir", "brasileña": "brasileñ", "brasileño": "brasileñ", "brasileños": "brasileñ", "brasilia": "brasili", "brass": "brass", "brasso": "brass", "braun": "braun", "bravo": "brav", "bravos": "brav", "bravura": "bravur", "brazo": "braz", "brazos": "braz", "brazzaville": "brazzavill", "breaky": "breaky", "brecha": "brech", "brechas": "brech", "bremer": "brem", "bremond": "bremond", "brener": "bren", "bretaña": "bretañ", "breton": "breton", "bretón": "breton", "breve": "brev", "brevedad": "breved", "brevemente": "brevement", "breves": "brev", "brevísima": "brevisim", "brian": "bri", "bridan": "brid", "brigada": "brig", "brigadas": "brig", "brillaban": "brill", "brillante": "brillant", "brillantes": "brillant", "brillantez": "brillantez", "brillo": "brill", "brinca": "brinc", "brincar": "brinc", "brincarse": "brinc", "brinckerhoff": "brinckerhoff", "brincó": "brinc", "brinda": "brind", "brindado": "brind", "brindar": "brind", "brindará": "brind", "brindaría": "brind", "brindarle": "brind", "brindarles": "brind", "brindarme": "brind", "brindaron": "brind", "brinde": "brind", "brinden": "brind", "brindó": "brind", "bringas": "bring", "briones": "brion", "briosos": "brios", "brisas": "bris", "britania": "britani", "británica": "britan", "británico": "britan", "británicos": "britan", "british": "british", "brito": "brit", "brizio": "brizi", "broad": "bro", "brocha": "broch", "broche": "broch", "brock": "brock", "brocker": "brock", "broma": "brom", "bromas": "brom", "bromeaban": "brom", "bromeando": "brom", "bromista": "bromist", "bromosas": "brom", "brompton": "brompton", "bronca": "bronc", "broncas": "bronc", "bronce": "bronc", "bronco": "bronc", "broncón": "broncon", "broncos": "bronc", "bronquitis": "bronquitis", "brooks": "brooks", "bros": "bros", "brotan": "brot", "brotaron": "brot", "brothers": "brothers", "brown": "brown", "brownsville": "brownsvill", "bruce": "bruc", "bruces": "bruc", "brugera": "bruger", "bruja": "bruj", "brunas": "brun", "brunch": "brunch", "bruno": "brun", "brusca": "brusc", "bruscas": "brusc", "bruselas": "brusel", "brusquedad": "brusqued", "brutal": "brutal", "brutales": "brutal", "brutalmente": "brutal", "bruto": "brut", "brutos": "brut", "bubka": "bubk", "bucareli": "bucareli", "buckingham": "buckingham", "bucolia": "bucoli", "bud": "bud", "buda": "bud", "buddleia": "buddlei", "buen": "buen", "buena": "buen", "buenas": "buen", "buenaventura": "buenaventur", "buendía": "buend", "bueno": "buen", "buenos": "buen", "buerón": "bueron", "buey": "buey", "bueyes": "buey", "búfalo": "bufal", "bufferin": "bufferin", "bugno": "bugn", "buho": "buh", "buick": "buick", "buitres": "buitr", "bulbos": "bulb", "bulgaria": "bulgari", "búlgaro": "bulgar", "bunbun": "bunbun", "bunker": "bunk", "buque": "buqu", "buques": "buqu", "burel": "burel", "burelo": "burel", "burger": "burg", "burgos": "burg", "burgueño": "burgueñ", "burla": "burl", "burlaba": "burl", "burlan": "burl", "burlando": "burl", "burlar": "burl", "burlarte": "burlart", "burlas": "burl", "burló": "burl", "burocracia": "burocraci", "burócrata": "burocrat", "burócratas": "burocrat", "burocráticas": "burocrat", "burocráticos": "burocrat", "burocratismos": "burocrat", "burro": "burr", "burros": "burr", "bursatil": "bursatil", "bursátil": "bursatil", "bursátiles": "bursatil", "bursatilidad": "bursatil", "bursatilización": "bursatiliz", "burzatilización": "burzatiliz", "busca": "busc", "buscaba": "busc", "buscaban": "busc", "buscado": "busc", "buscador": "buscador", "buscadores": "buscador", "buscados": "busc", "buscamos": "busc", "buscan": "busc", "buscando": "busc", "buscar": "busc", "buscara": "busc", "buscará": "busc", "buscaran": "busc", "buscarán": "busc", "buscaras": "busc", "buscaremos": "busc", "buscaría": "busc", "buscarla": "busc", "buscarle": "busc", "buscarlo": "busc", "buscaron": "busc", "buscarse": "busc", "busco": "busc", "buscó": "busc", "bush": "bush", "business": "business", "busque": "busqu", "búsqueda": "busqued", "búsquedas": "busqued", "búsquele": "busquel", "busquen": "busqu", "bustamante": "bustam", "bustillos": "bustill", "bustinzer": "bustinz", "busto": "bust", "butacas": "butac", "butano": "butan", "butcher": "butch", "butler": "butl", "by": "by", "bytes": "bytes", "c": "c", "caad": "caad", "cab": "cab", "cabada": "cab", "cabal": "cabal", "cabales": "cabal", "caballada": "caball", "caballero": "caballer", "caballeros": "caballer", "caballo": "caball", "caballos": "caball", "cabalmente": "cabal", "cabaña": "cabañ", "cabañas": "cabañ", "cabanillas": "cabanill", "cabaret": "cabaret", "cabe": "cab", "cabecillas": "cabecill", "cabelleras": "cabeller", "cabello": "cabell", "cabellos": "cabell", "cabestany": "cabestany", "cabeza": "cabez", "cabida": "cab", "cabiedes": "cabied", "cabildo": "cabild", "cabildos": "cabild", "cabina": "cabin", "cable": "cabl", "cableado": "cabl", "cables": "cabl", "cablevisión": "cablevision", "cabo": "cab", "cabos": "cab", "cabras": "cabr", "cabrera": "cabrer", "cabrito": "cabrit", "cacallacas": "cacallac", "cacao": "caca", "cacareaban": "cacar", "cacería": "cac", "cacerías": "cac", "cacerío": "caceri", "caceríos": "caceri", "cacerolas": "cacerol", "cachetearon": "cachet", "cachetes": "cachet", "caciques": "caciqu", "caciquiles": "caciquil", "cada": "cad", "cadapa": "cadap", "cadáver": "cadav", "cadáveres": "cadaver", "cadena": "caden", "cadenas": "caden", "cadencia": "cadenci", "cadereyta": "cadereyt", "cadete": "cadet", "cadetes": "cadet", "cadis": "cadis", "cádiz": "cadiz", "cadmio": "cadmi", "caducidad": "caduc", "cae": "cae", "caemos": "caem", "caen": "caen", "caer": "caer", "caerle": "caerl", "café": "caf", "cafecito": "cafecit", "cafés": "cafes", "cafetal": "cafetal", "cafetería": "cafet", "cafeteros": "cafeter", "cafú": "cafu", "caía": "cai", "caída": "caid", "caídas": "caid", "caído": "caid", "caifanes": "caifan", "caigan": "caig", "caintra": "caintr", "cairo": "cair", "caja": "caj", "cajal": "cajal", "cajas": "caj", "cajón": "cajon", "cajuela": "cajuel", "cala": "cal", "calabaza": "calabaz", "calamidades": "calam", "calcamonía": "calcamon", "calcamonías": "calcamon", "calcetines": "calcetin", "calcinado": "calcin", "calcomanía": "calcoman", "calcula": "calcul", "calculadas": "calcul", "calculado": "calcul", "calculadora": "calcul", "calculadoras": "calcul", "calculando": "calcul", "calcular": "calcul", "calcularon": "calcul", "calcule": "calcul", "calcúlele": "calculel", "calculo": "calcul", "cálculo": "calcul", "calculó": "calcul", "cálculos": "calcul", "caldeado": "cald", "caldeen": "cald", "caldera": "calder", "calderón": "calderon", "calderoni": "calderoni", "caldillo": "caldill", "calefacción": "calefaccion", "calendario": "calendari", "calendarios": "calendari", "calentamiento": "calent", "calentando": "calent", "calentar": "calent", "calentura": "calentur", "calgene": "calgen", "calibración": "calibr", "calibradas": "calibr", "calibrar": "calibr", "calibre": "calibr", "cálida": "cal", "calidad": "calid", "calidades": "calidad", "cálido": "cal", "calientan": "calient", "caliente": "calient", "calientes": "calient", "califica": "calif", "calificación": "calif", "calificaciones": "calif", "calificada": "calific", "calificadas": "calific", "calificado": "calific", "calificadora": "calif", "calificados": "calific", "calificamos": "calific", "califican": "calific", "calificar": "calific", "calificará": "calific", "calificaría": "calific", "calificaron": "calific", "calificativo": "calific", "calificativos": "calific", "calificó": "calific", "califique": "califiqu", "california": "californi", "californiano": "californian", "californias": "californi", "caligula": "caligul", "calígula": "caligul", "calla": "call", "callada": "call", "calladito": "calladit", "callado": "call", "callar": "call", "callarlo": "call", "calle": "call", "callejera": "callejer", "callejeros": "callejer", "callejoneadas": "callejon", "calles": "call", "calloway": "calloway", "calma": "calm", "calmar": "calm", "calmarla": "calm", "cálmecac": "calmecac", "calo": "cal", "caloca": "caloc", "calor": "calor", "calpan": "calp", "calpixques": "calpixqu", "calpullis": "calpullis", "calumnia": "calumni", "calumnias": "calumni", "caluroso": "calur", "calvillo": "calvill", "calzada": "calz", "calzado": "calz", "calzoncillo": "calzoncill", "cama": "cam", "camacho": "camach", "camaleónica": "camaleon", "camaleónico": "camaleon", "cámara": "cam", "camaradería": "camarad", "cámaras": "cam", "camarero": "camarer", "camareros": "camarer", "camargo": "camarg", "camarlengo": "camarleng", "camarón": "camaron", "camarote": "camarot", "camas": "cam", "cambia": "cambi", "cambiado": "cambi", "cambiamos": "cambi", "cambian": "cambi", "cambiando": "cambi", "cambiante": "cambiant", "cambiantes": "cambiant", "cambiar": "cambi", "cambiara": "cambi", "cambiará": "cambi", "cambiaría": "cambi", "cambiarían": "cambi", "cambiarias": "cambiari", "cambiario": "cambiari", "cambiarle": "cambi", "cambiarlos": "cambi", "cambiaron": "cambi", "cambie": "cambi", "cambié": "cambi", "cambio": "cambi", "cambió": "camb", "cambios": "cambi", "cambridge": "cambridg", "camdomble": "camdombl", "camelia": "cameli", "camellón": "camellon", "camellones": "camellon", "camelo": "camel", "camerino": "camerin", "camet": "camet", "camexa": "camex", "caminaba": "camin", "caminaban": "camin", "caminan": "camin", "caminando": "camin", "caminar": "camin", "caminaron": "camin", "caminata": "caminat", "camine": "camin", "camino": "camin", "caminó": "camin", "caminos": "camin", "camión": "camion", "camioneras": "camioner", "camioneros": "camioner", "camiones": "camion", "camioneta": "camionet", "camionetas": "camionet", "camisa": "camis", "camiseta": "camiset", "camisetas": "camiset", "camisitas": "camisit", "camisón": "camison", "camisones": "camison", "camorristas": "camorr", "camotlán": "camotlan", "camp": "camp", "campal": "campal", "campamento": "campament", "campamentos": "campament", "campaña": "campañ", "campañas": "campañ", "campechanos": "campechan", "campeche": "campech", "campeon": "campeon", "campeón": "campeon", "campeona": "campeon", "campeonato": "campeonat", "campeonatos": "campeonat", "campeones": "campeon", "campesina": "campesin", "campesinos": "campesin", "campestre": "campestr", "campo": "camp", "campos": "camp", "camposeco": "camposec", "campus": "campus", "campuzano": "campuzan", "camuflajes": "camuflaj", "canacintra": "canacintr", "canaco": "canac", "canada": "can", "cañada": "cañ", "canadá": "canad", "canadian": "canadi", "canadiense": "canadiens", "canadienses": "canadiens", "canal": "canal", "canalera": "canaler", "canalero": "canaler", "canales": "canal", "canalicen": "canalic", "canalización": "canaliz", "canalizado": "canaliz", "canalizados": "canaliz", "canalizando": "canaliz", "canalizara": "canaliz", "cañamar": "cañam", "canapés": "canapes", "canasta": "canast", "canasto": "canast", "cancela": "cancel", "cancelaba": "cancel", "cancelación": "cancel", "cancelada": "cancel", "cancelados": "cancel", "cancelando": "cancel", "cancelar": "cancel", "cancelarán": "cancel", "canceló": "cancel", "cáncer": "canc", "cancha": "canch", "canchas": "canch", "canciller": "cancill", "cancilleres": "canciller", "cancillería": "cancill", "canción": "cancion", "cancioncita": "cancioncit", "canciones": "cancion", "cancun": "cancun", "cancún": "cancun", "candelaria": "candelari", "candelero": "candeler", "candentes": "candent", "cándida": "cand", "candidata": "candidat", "candidato": "candidat", "candidatos": "candidat", "candidatura": "candidatur", "candidaturas": "candidatur", "candidiasis": "candidiasis", "candil": "candil", "candor": "candor", "candy": "candy", "cañedo": "cañed", "canela": "canel", "canels": "canels", "cañete": "cañet", "caníbales": "canibal", "caniggia": "caniggi", "canijo": "canij", "canion": "canion", "canje": "canj", "cano": "can", "canoga": "canog", "canolas": "canol", "cañonazos": "cañonaz", "cañones": "cañon", "cansada": "cans", "cansadas": "cans", "cansado": "cans", "cansados": "cans", "cansancio": "cansanci", "canseco": "cansec", "canta": "cant", "cantaba": "cant", "cantaban": "cant", "cantan": "cant", "cantando": "cant", "cantante": "cantant", "cantantes": "cantant", "cantar": "cant", "cantaron": "cant", "cantera": "canter", "cantería": "cant", "cantidad": "cantid", "cantidades": "cantidad", "cantina": "cantin", "cantinas": "cantin", "cantinflas": "cantinfl", "canto": "cant", "cantó": "cant", "cantos": "cant", "cantú": "cantu", "caoba": "caob", "caón": "caon", "caona": "caon", "caos": "caos", "caótica": "caotic", "capa": "cap", "capaces": "capac", "capacidad": "capac", "capacidades": "capac", "capacita": "capacit", "capacitación": "capacit", "capacitada": "capacit", "capacitado": "capacit", "capacitamos": "capacit", "capacitan": "capacit", "capacitando": "capacit", "capacitar": "capacit", "capacitarse": "capacit", "capas": "cap", "capatacio": "capataci", "capaz": "capaz", "caperucita": "caperucit", "capetillo": "capetill", "capfce": "capfc", "capilla": "capill", "capital": "capital", "capitales": "capital", "capitalina": "capitalin", "capitalino": "capitalin", "capitalinos": "capitalin", "capitalista": "capital", "capitalistas": "capital", "capitalización": "capitaliz", "capitalizador": "capitaliz", "capitalizar": "capitaliz", "capitalizaron": "capitaliz", "capitán": "capitan", "capitanes": "capitan", "capitolio": "capitoli", "capitonada": "capiton", "capitonadas": "capiton", "capitonados": "capiton", "capitulación": "capitul", "capítulo": "capitul", "capítulos": "capitul", "capo": "cap", "caporal": "caporal", "capos": "cap", "capote": "capot", "cappel": "cappel", "capricho": "caprich", "caprichos": "caprich", "caprichosas": "caprich", "caprichosos": "caprich", "captación": "captacion", "captado": "capt", "captamos": "capt", "captar": "capt", "captará": "capt", "captaron": "capt", "capten": "capt", "captivos": "captiv", "captó": "capt", "captura": "captur", "capturados": "captur", "capturó": "captur", "capucha": "capuch", "car": "car", "cara": "car", "caracas": "carac", "caracol": "caracol", "carácter": "caract", "caracteres": "caracter", "característica": "caracterist", "características": "caracterist", "característicos": "caracterist", "caracteriza": "caracteriz", "caracterizadas": "caracteriz", "caracterizado": "caracteriz", "caracterizan": "caracteriz", "caracterizar": "caracteriz", "caracterizaron": "caracteriz", "caracterizó": "caracteriz", "carajo": "caraj", "caramona": "caramon", "caraqueña": "caraqueñ", "caras": "car", "carátula": "caratul", "caravana": "caravan", "caravanas": "caravan", "caravia": "caravi", "caray": "caray", "carbajal": "carbajal", "carballido": "carball", "carballo": "carball", "carbón": "carbon", "carbonáceo": "carbonace", "carbonel": "carbonel", "carbono": "carbon", "carburador": "carbur", "carcajada": "carcaj", "carcajadas": "carcaj", "carcaño": "carcañ", "cárcel": "carcel", "cárceles": "carcel", "carcomido": "carcom", "cárcova": "carcov", "card": "card", "cardán": "cardan", "cardenal": "cardenal", "cardenales": "cardenal", "cárdenas": "carden", "cardenismo": "carden", "cardenista": "carden", "cardenistas": "carden", "cárdeno": "carden", "cardiaca": "cardiac", "cardíaca": "cardiac", "cardiaco": "cardiac", "cardíaco": "cardiac", "cardíacos": "cardiac", "cardiología": "cardiolog", "cardiólogo": "cardiolog", "cardiopulmonar": "cardiopulmon", "cardona": "cardon", "careca": "carec", "carece": "carec", "carecen": "carec", "carecer": "carec", "carecía": "carec", "carecían": "carec", "careció": "carec", "carencia": "carenci", "carencias": "carenci", "carente": "carent", "carentes": "carent", "careo": "care", "carga": "carg", "cargada": "carg", "cargadas": "carg", "cargado": "carg", "cargados": "carg", "cargamento": "cargament", "cargamentos": "cargament", "cargando": "carg", "cargar": "carg", "cargaran": "carg", "cargarle": "carg", "cargaron": "carg", "cargas": "carg", "cargo": "carg", "cargó": "carg", "cargos": "carg", "cargueros": "carguer", "carha": "carh", "caribe": "carib", "caribeña": "caribeñ", "caribeño": "caribeñ", "caribeños": "caribeñ", "caricatura": "caricatur", "caricaturas": "caricatur", "caricias": "carici", "caricom": "caricom", "caridad": "carid", "carina": "carin", "cariño": "cariñ", "cariñosidad": "cariñ", "cariñoso": "cariñ", "carioca": "carioc", "cariotipos": "cariotip", "carisma": "carism", "carismático": "carismat", "cáritas": "carit", "caritativas": "carit", "carl": "carl", "carla": "carl", "carlitos": "carlit", "carlos": "carl", "carlota": "carlot", "carman": "carm", "carmen": "carm", "carmona": "carmon", "carnaval": "carnaval", "carnavaleros": "carnavaler", "carnavales": "carnaval", "carnavalescas": "carnavalesc", "carnavalito": "carnavalit", "carne": "carn", "carneros": "carner", "carnes": "carn", "carnestolendas": "carnestolend", "carnet": "carnet", "carnicería": "carnic", "carnicero": "carnicer", "cárnicos": "carnic", "caro": "car", "carolina": "carolin", "caronte": "caront", "caros": "car", "carpa": "carp", "carpera": "carper", "carpeta": "carpet", "carpintería": "carpint", "carpizo": "carpiz", "carr": "carr", "carrancismo": "carranc", "carrancistas": "carranc", "carranza": "carranz", "carrasquel": "carrasquel", "carreño": "carreñ", "carreón": "carreon", "carrera": "carrer", "carreras": "carrer", "carrero": "carrer", "carreta": "carret", "carretera": "carreter", "carreteras": "carreter", "carretero": "carreter", "carreteros": "carreter", "carretón": "carreton", "carrier": "carri", "carriles": "carril", "carrillo": "carrill", "carrington": "carrington", "carrión": "carrion", "carrito": "carrit", "carrizalejo": "carrizalej", "carrizales": "carrizal", "carro": "carr", "carrocería": "carroc", "carrocerías": "carroc", "carros": "carr", "carroza": "carroz", "carrozas": "carroz", "carruaje": "carruaj", "carruajes": "carruaj", "carrujo": "carruj", "carrujos": "carruj", "carso": "cars", "carta": "cart", "cartagena": "cartagen", "cartas": "cart", "cartay": "cartay", "cartel": "cartel", "cártel": "cartel", "cartelera": "carteler", "carteles": "cartel", "cartelones": "cartelon", "carter": "cart", "cartera": "carter", "carteras": "carter", "cartilla": "cartill", "cartón": "carton", "cartucho": "cartuch", "carvajal": "carvajal", "casa": "cas", "casaca": "casac", "casada": "cas", "casadas": "cas", "casado": "cas", "casados": "cas", "casamentero": "casamenter", "casando": "cas", "casarme": "cas", "casaron": "cas", "casarse": "cas", "casas": "cas", "casashabitación": "casashabit", "casavan": "casav", "cascabel": "cascabel", "cascabeles": "cascabel", "cascada": "casc", "cáscara": "casc", "cascos": "casc", "caseras": "caser", "casero": "caser", "caseros": "caser", "caseta": "caset", "casetas": "caset", "cash": "cash", "casi": "casi", "casilla": "casill", "casillas": "casill", "casillero": "casiller", "casimir": "casim", "casino": "casin", "casio": "casi", "casita": "casit", "caso": "cas", "casó": "cas", "casos": "cas", "casquillo": "casquill", "casquillos": "casquill", "cassete": "casset", "cassette": "cassett", "cassettes": "cassett", "casta": "cast", "castañas": "castañ", "castañeda": "castañed", "castaño": "castañ", "castañón": "castañon", "castaños": "castañ", "castellano": "castellan", "castellanos": "castellan", "castidad": "castid", "castiga": "castig", "castigadas": "castig", "castigados": "castig", "castigar": "castig", "castigará": "castig", "castigo": "castig", "castigue": "castig", "castilla": "castill", "castilleja": "castillej", "castillejos": "castillej", "castillo": "castill", "castor": "castor", "castores": "castor", "castrejón": "castrejon", "castro": "castr", "castruita": "castruit", "cástulo": "castul", "casual": "casual", "casuales": "casual", "casualidad": "casual", "casuística": "casuist", "cat": "cat", "catalán": "catalan", "catalanes": "catalan", "catalina": "catalin", "catalítico": "catalit", "catalíticos": "catalit", "catalizador": "cataliz", "catalogan": "catalog", "catálogo": "catalog", "catamo": "catam", "cataño": "catañ", "catarata": "catarat", "cataratas": "catarat", "catarina": "catarin", "catarro": "catarr", "catarros": "catarr", "catarsis": "catarsis", "catársis": "catarsis", "catastral": "catastral", "catastrales": "catastral", "catastro": "catastr", "catástrofe": "catastrof", "catastrófica": "catastrof", "cátchers": "catchers", "cateadas": "cat", "cátedra": "catedr", "catedral": "catedral", "catedrática": "catedrat", "catedrático": "catedrat", "catedráticos": "catedrat", "categoría": "categor", "categorías": "categor", "cateos": "cate", "catequesis": "catequesis", "católica": "catol", "catolicismo": "catolic", "católico": "catol", "católicos": "catol", "catón": "caton", "catorce": "catorc", "catrerina": "catrerin", "catsup": "catsup", "cauce": "cauc", "cauces": "cauc", "caucional": "caucional", "caudalosos": "caudal", "caudillo": "caudill", "causa": "caus", "causada": "caus", "causadas": "caus", "causado": "caus", "causados": "caus", "causaefecto": "causaefect", "causales": "causal", "causan": "caus", "causando": "caus", "causante": "causant", "causantes": "causant", "causar": "caus", "causará": "caus", "causaron": "caus", "causas": "caus", "cause": "caus", "causó": "caus", "cautela": "cautel", "cautelosa": "cautel", "cautivarlos": "cautiv", "cautivas": "cautiv", "cautivos": "cautiv", "cavazos": "cavaz", "cavernaria": "cavernari", "cavidad": "cavid", "cayeran": "cayer", "cayeron": "cayeron", "cayetano": "cayetan", "cayman": "caym", "cayo": "cay", "cayó": "cay", "caza": "caz", "cazador": "cazador", "cazadoras": "cazador", "cazadores": "cazador", "cazar": "caz", "cázares": "cazar", "cazaux": "cazaux", "cazuela": "cazuel", "cbinbur": "cbinbur", "cbs": "cbs", "cbtis": "cbtis", "ccd": "ccd", "cce": "cce", "ccinlac": "ccinlac", "ccolonia": "ccoloni", "ccp": "ccp", "cd": "cd", "ce": "ce", "cear": "cear", "cebada": "ceb", "cebatis": "cebatis", "cebolla": "ceboll", "cebollas": "ceboll", "cebrián": "cebrian", "cecilia": "cecili", "ceda": "ced", "cedart": "cedart", "cede": "ced", "cedeco": "cedec", "cedeño": "cedeñ", "ceder": "ced", "cederán": "ced", "cedería": "ced", "cedido": "ced", "cedieron": "ced", "cedió": "ced", "cedral": "cedral", "cédula": "cedul", "cédulas": "cedul", "cee": "cee", "cegarse": "ceg", "ceja": "cej", "celadora": "celador", "celadores": "celador", "celaya": "celay", "celda": "celd", "celebérrima": "celeberrim", "celebra": "celebr", "celebraba": "celebr", "celebración": "celebr", "celebraciones": "celebr", "celebrada": "celebr", "celebradas": "celebr", "celebrado": "celebr", "celebrados": "celebr", "celebran": "celebr", "celebrar": "celebr", "celebrará": "celebr", "celebrarlo": "celebr", "celebraron": "celebr", "celebrarse": "celebr", "celebre": "celebr", "célebre": "celebr", "celébrelas": "celebrel", "célebres": "celebr", "celebridad": "celebr", "celebridades": "celebr", "celebró": "celebr", "celeridad": "celer", "celestes": "celest", "celestial": "celestial", "celia": "celi", "celiberia": "celiberi", "celio": "celi", "celo": "cel", "celos": "cel", "celso": "cels", "celta": "celt", "célula": "celul", "celular": "celul", "celulares": "celular", "células": "celul", "cemcaspe": "cemcasp", "cement": "cement", "cementeras": "cementer", "cementero": "cementer", "cemento": "cement", "cementos": "cement", "cemex": "cemex", "cen": "cen", "cena": "cen", "cenamos": "cen", "cenar": "cen", "cenas": "cen", "cenefa": "cenef", "cenefas": "cenef", "ceñido": "ceñ", "ceniza": "ceniz", "cenizas": "ceniz", "cenlac": "cenlac", "cenó": "cen", "censo": "cens", "censura": "censur", "censurable": "censur", "censurada": "censur", "censuradas": "censur", "censurado": "censur", "censurar": "censur", "censuró": "censur", "centavo": "centav", "centavos": "centav", "centenar": "centen", "centenares": "centenar", "centenario": "centenari", "centeno": "centen", "center": "cent", "centésimas": "centesim", "centígrados": "centigr", "centímetros": "centimetr", "centradas": "centr", "central": "central", "centrales": "central", "centramos": "centr", "centrándose": "centr", "centrará": "centr", "centrarse": "centr", "centre": "centr", "céntricas": "centric", "céntrico": "centric", "céntricos": "centric", "centro": "centr", "centroamérica": "centroamer", "centroamericana": "centroamerican", "centroamericano": "centroamerican", "centroamericanos": "centroamerican", "centroderechista": "centroderech", "centros": "centr", "century": "century", "cepa": "cep", "cepal": "cepal", "cepeda": "ceped", "cepillan": "cepill", "cepillo": "cepill", "cerámica": "ceram", "cerca": "cerc", "cercados": "cerc", "cercana": "cercan", "cercanas": "cercan", "cercando": "cerc", "cercanía": "cercan", "cercano": "cercan", "cercanos": "cercan", "cercar": "cerc", "cerciorarse": "cercior", "cerda": "cerd", "cerdas": "cerd", "cerdo": "cerd", "cerdos": "cerd", "cereales": "cereal", "cerebral": "cerebral", "cerebrales": "cerebral", "cerebro": "cerebr", "cerebros": "cerebr", "ceremonia": "ceremoni", "ceremonias": "ceremoni", "ceremoniosamente": "ceremoni", "cereso": "ceres", "cereza": "cerez", "cero": "cer", "cerraba": "cerr", "cerraban": "cerr", "cerrada": "cerr", "cerradas": "cerr", "cerrado": "cerr", "cerrados": "cerr", "cerradura": "cerradur", "cerraduras": "cerradur", "cerralvo": "cerralv", "cerramos": "cerr", "cerrando": "cerr", "cerrar": "cerr", "cerrará": "cerr", "cerrarán": "cerr", "cerrarlos": "cerr", "cerraron": "cerr", "cerrazón": "cerrazon", "cerrito": "cerrit", "cerro": "cerr", "cerró": "cerr", "cerrojo": "cerroj", "cerros": "cerr", "certamen": "certam", "certera": "certer", "certero": "certer", "certeros": "certer", "certeza": "certez", "certidumbre": "certidumbr", "certificado": "certific", "certificados": "certific", "certucha": "certuch", "cerval": "cerval", "cervantes": "cervant", "cervantino": "cervantin", "cerveceras": "cervecer", "cervecería": "cervec", "cervera": "cerver", "cerveza": "cervez", "cervezas": "cervez", "cesa": "ces", "cesados": "ces", "cesan": "ces", "cesar": "ces", "césar": "ces", "cesará": "ces", "cesáreo": "cesare", "cesaría": "ces", "cese": "ces", "cesión": "cesion", "cesó": "ces", "cesto": "cest", "cetemista": "cetem", "cetemistas": "cetem", "cetes": "cet", "cetro": "cetr", "cetros": "cetr", "ceu": "ceu", "cevallos": "cevall", "cezanne": "cezann", "cfe": "cfe", "ch": "ch", "chagoyos": "chagoy", "chagui": "chagui", "chains": "chains", "chal": "chal", "chaleco": "chalec", "chalina": "chalin", "chalmer": "chalm", "chamaca": "chamac", "chamarra": "chamarr", "chamarras": "chamarr", "chamba": "chamb", "chambelanes": "chambelan", "chamois": "chamois", "chamorro": "chamorr", "champúes": "champu", "chamula": "chamul", "chamuscado": "chamusc", "chan": "chan", "chance": "chanc", "chanel": "chanel", "chango": "chang", "chantilly": "chantilly", "chanza": "chanz", "chapa": "chap", "chapala": "chapal", "chapo": "chap", "chapoteaderos": "chapoteader", "chapultepec": "chapultepec", "chapuzas": "chapuz", "chaqueta": "chaquet", "chara": "char", "character": "charact", "charchina": "charchin", "charchino": "charchin", "charco": "charc", "charla": "charl", "charlaron": "charl", "charlas": "charl", "charles": "charl", "charlie": "charli", "charló": "charl", "charly": "charly", "charnela": "charnel", "charnell": "charnell", "charreada": "charr", "charreamos": "charr", "charreando": "charr", "charro": "charr", "charros": "charr", "chase": "chas", "chasis": "chasis", "chatarra": "chatarr", "chatarrero": "chatarrer", "chato": "chat", "chaumu": "chaumu", "chauvet": "chauvet", "chavarría": "chavarr", "chavas": "chav", "chavero": "chaver", "chavez": "chavez", "chávez": "chavez", "chavitas": "chavit", "chavo": "chav", "chavos": "chav", "che": "che", "checa": "chec", "checar": "chec", "checo": "chec", "checoslovaquia": "checoslovaqui", "chedraoui": "chedraoui", "chefs": "chefs", "cheliabinsk": "cheliabinsk", "chelo": "chel", "chemical": "chemical", "chemicalweek": "chemicalweek", "chemise": "chemis", "chepo": "chep", "cheque": "chequ", "chequeo": "cheque", "cheques": "chequ", "cheraw": "cheraw", "chesca": "chesc", "chester": "chest", "chetumal": "chetumal", "chetumaleños": "chetumaleñ", "chevrolet": "chevrolet", "cheyene": "cheyen", "cheyenne": "cheyenn", "chi": "chi", "chía": "chi", "chiapaneca": "chiapanec", "chiapas": "chiap", "chiba": "chib", "chic": "chic", "chica": "chic", "chicago": "chicag", "chicana": "chican", "chicano": "chican", "chicas": "chic", "chicharrones": "chicharron", "chichen": "chich", "chichimecas": "chichimec", "chicles": "chicl", "chico": "chic", "chicos": "chic", "chicotear": "chicot", "chicuelinas": "chicuelin", "chido": "chid", "chifón": "chifon", "chiguagua": "chiguagu", "chihuahua": "chihuahu", "chihuahuense": "chihuahuens", "chiítas": "chiit", "chila": "chil", "chilac": "chilac", "chilacayota": "chilacayot", "chilangolandia": "chilangolandi", "chilaquiles": "chilaquil", "chile": "chil", "chileno": "chilen", "chilenos": "chilen", "chiles": "chil", "chili": "chili", "chilpancingo": "chilpancing", "chima": "chim", "chin": "chin", "china": "chin", "chinche": "chinch", "chinches": "chinch", "chino": "chin", "chinos": "chin", "chip": "chip", "chipinque": "chipinqu", "chips": "chips", "chiquita": "chiquit", "chirac": "chirac", "chirinos": "chirin", "chisec": "chisec", "chismosa": "chismos", "chispa": "chisp", "chispas": "chisp", "chispazo": "chispaz", "chispeando": "chisp", "chistes": "chist", "chiva": "chiv", "chivas": "chiv", "chivo": "chiv", "chocado": "choc", "chocan": "choc", "chocar": "choc", "chocarán": "choc", "chocaron": "choc", "chocó": "choc", "chocolate": "chocolat", "chocolates": "chocolat", "chofer": "chof", "choferes": "chofer", "chontalpa": "chontalp", "chopin": "chopin", "choque": "choqu", "choques": "choqu", "chorizo": "choriz", "chorreando": "chorr", "chorro": "chorr", "chraysler": "chraysl", "chris": "chris", "christi": "christi", "christian": "christi", "christie": "christi", "christoph": "christoph", "christopher": "christoph", "chrysler": "chrysler", "chucho": "chuch", "chuck": "chuck", "chuletón": "chuleton", "chung": "chung", "chupa": "chup", "chupaban": "chup", "chupaletada": "chupalet", "chupando": "chup", "chupándose": "chup", "chuparse": "chup", "chupón": "chupon", "churubusco": "churubusc", "churumbela": "churumbel", "chusca": "chusc", "chyba": "chyba", "cia": "cia", "ciangherotti": "ciangherotti", "cibaeñas": "cibaeñ", "cibao": "ciba", "cicatrización": "cicatriz", "cíclicamente": "ciclic", "cíclico": "ciclic", "ciclismo": "ciclism", "ciclista": "ciclist", "ciclistas": "ciclist", "ciclístico": "ciclist", "ciclísticos": "ciclist", "ciclo": "cicl", "ciclónica": "ciclon", "ciclos": "cicl", "ciclosporina": "ciclosporin", "cide": "cid", "cielo": "ciel", "cien": "cien", "ciencia": "cienci", "ciencias": "cienci", "ciénega": "cieneg", "científica": "cientif", "científicas": "cientif", "científico": "cientif", "científicos": "cientif", "ciento": "cient", "cientos": "cient", "ciernes": "ciern", "cierra": "cierr", "cierran": "cierr", "cierre": "cierr", "cierres": "cierr", "cierta": "ciert", "ciertamente": "ciert", "ciertas": "ciert", "cierto": "ciert", "ciertos": "ciert", "cifra": "cifr", "cifrarse": "cifr", "cifras": "cifr", "cigarrera": "cigarrer", "cigarrero": "cigarrer", "cigarrillos": "cigarrill", "cigarros": "cigarr", "cihuatepixque": "cihuatepixqu", "cilindros": "cilindr", "cima": "cim", "cimarrones": "cimarron", "cimbraría": "cimbr", "cimiento": "cimient", "cimientos": "cimient", "cin": "cin", "cincelado": "cincel", "cinco": "cinc", "cincuenta": "cincuent", "cine": "cin", "cineasta": "cineast", "cinemascope": "cinemascop", "cinematografía": "cinematograf", "cinematográfica": "cinematograf", "cinematográficas": "cinematograf", "cinematográfico": "cinematograf", "cines": "cin", "cineterraza": "cineterraz", "cinética": "cinet", "cinismo": "cinism", "cinta": "cint", "cintas": "cint", "cintermex": "cintermex", "cinto": "cint", "cintos": "cint", "cintura": "cintur", "cinturón": "cinturon", "cinturones": "cinturon", "cio": "cio", "cipriano": "ciprian", "circo": "circ", "circos": "circ", "circuito": "circuit", "circuitos": "circuit", "circula": "circul", "circulaba": "circul", "circulaban": "circul", "circulación": "circul", "circulan": "circul", "circulando": "circul", "circular": "circul", "circulará": "circul", "circularán": "circul", "circularía": "circul", "circularon": "circul", "circulatoria": "circulatori", "circulatorios": "circulatori", "círculo": "circul", "circuló": "circul", "círculos": "circul", "circunscribe": "circunscrib", "circunscrito": "circunscrit", "circunstancia": "circunst", "circunstancias": "circunst", "circunvalación": "circunval", "circurret": "circurret", "cirios": "ciri", "cirugía": "cirug", "cirujanos": "cirujan", "cirules": "cirul", "cisneros": "cisner", "cita": "cit", "citada": "cit", "citadas": "cit", "citado": "cit", "citados": "cit", "citamos": "cit", "citan": "cit", "citar": "cit", "citará": "cit", "citas": "cit", "citation": "citation", "citatorios": "citatori", "cite": "cit", "citen": "cit", "cito": "cit", "citó": "cit", "cítricos": "citric", "city": "city", "ciudad": "ciud", "ciudadana": "ciudadan", "ciudadanas": "ciudadan", "ciudadanía": "ciudadan", "ciudadaníapanprd": "ciudadaniapanprd", "ciudadanías": "ciudadan", "ciudadano": "ciudadan", "ciudadanos": "ciudadan", "ciudades": "ciudad", "civic": "civic", "cívica": "civic", "cívicas": "civic", "cívico": "civic", "cívicos": "civic", "civil": "civil", "civiles": "civil", "civilización": "civiliz", "civilizaciones": "civiliz", "civilizada": "civiliz", "civilizador": "civiliz", "civilizadora": "civiliz", "civilizar": "civiliz", "civismo": "civism", "clair": "cla", "clamor": "clamor", "clan": "clan", "clandestinos": "clandestin", "clanes": "clan", "clapton": "clapton", "clara": "clar", "claramente": "clar", "claras": "clar", "claridad": "clarid", "clarifiquen": "clarifiqu", "clariond": "clariond", "clarísima": "clarisim", "clarividencia": "clarivident", "clarke": "clark", "claro": "clar", "claros": "clar", "claroscuros": "claroscur", "clase": "clas", "clases": "clas", "clásica": "clasic", "clásicas": "clasic", "clasico": "clasic", "clásico": "clasic", "clásicos": "clasic", "clasificación": "clasif", "clasificaciones": "clasif", "clasificada": "clasific", "clasificadas": "clasific", "clasificado": "clasific", "clasificados": "clasific", "clasificando": "clasific", "clasificar": "clasific", "clasificatorias": "clasificatori", "classic": "classic", "claude": "claud", "claudia": "claudi", "claudicar": "claudic", "claudico": "claudic", "claudio": "claudi", "claustro": "claustr", "cláusula": "clausul", "cláusulas": "clausul", "clausura": "clausur", "clausurar": "clausur", "clausurará": "clausur", "clavada": "clav", "clavar": "clav", "clavaremos": "clav", "clave": "clav", "claves": "clav", "clavó": "clav", "claxon": "claxon", "cleary": "cleary", "clemente": "clement", "cleotilde": "cleotild", "clérigo": "clerig", "clero": "cler", "cliente": "client", "clientela": "clientel", "clientes": "client", "clima": "clim", "climáticas": "climat", "clímax": "climax", "clínica": "clinic", "clínicas": "clinic", "clínico": "clinic", "clínicos": "clinic", "clinton": "clinton", "clone": "clon", "clones": "clon", "clos": "clos", "closet": "closet", "cloud": "cloud", "clouthier": "clouthi", "clowes": "clow", "club": "club", "clubes": "club", "cma": "cma", "cmb": "cmb", "cmos": "cmos", "cms": "cms", "cna": "cna", "cnca": "cnca", "cndh": "cndh", "cnet": "cnet", "cnn": "cnn", "cnpa": "cnpa", "cnsf": "cnsf", "cnv": "cnv", "co": "co", "coach": "coach", "coaches": "coach", "coachman": "coachm", "coadyuvar": "coadyuv", "coah": "coah", "coahuila": "coahuil", "coahuilense": "coahuilens", "coahuilenses": "coahuilens", "coalición": "coalicion", "coartados": "coart", "coatepec": "coatepec", "coatlicue": "coatlicu", "coautor": "coautor", "cobán": "coban", "cobardía": "cobard", "cobertura": "cobertur", "cobija": "cobij", "cobijas": "cobij", "cobol": "cobol", "cobos": "cob", "cobra": "cobr", "cobraba": "cobr", "cobrado": "cobr", "cobramos": "cobr", "cobran": "cobr", "cobrando": "cobr", "cobrar": "cobr", "cobrara": "cobr", "cobraran": "cobr", "cobrarán": "cobr", "cobraré": "cobr", "cobrarles": "cobr", "cobrarte": "cobrart", "cobras": "cobr", "cobre": "cobr", "cobren": "cobr", "cobro": "cobr", "cobró": "cobr", "cobros": "cobr", "coca": "coc", "cocaína": "cocain", "cocainómano": "cocainoman", "coche": "coch", "cochero": "cocher", "coches": "coch", "cochinilla": "cochinill", "cocina": "cocin", "cocinar": "cocin", "cocineta": "cocinet", "coco": "coc", "cocó": "coc", "cocoa": "coco", "cóconas": "cocon", "cocoyoc": "cocoyoc", "coctel": "coctel", "codeme": "codem", "codesal": "codesal", "codicia": "codici", "codiciado": "codici", "código": "codig", "códigos": "codig", "codo": "cod", "coece": "coec", "coello": "coell", "coempresario": "coempresari", "coequipero": "coequiper", "coercitivas": "coercit", "coexistan": "coexist", "coexistir": "coexist", "cofre": "cofr", "coger": "cog", "coggi": "coggi", "cogido": "cog", "cognitivo": "cognit", "cohabita": "cohabit", "cohecho": "cohech", "cohen": "coh", "coherencia": "coherent", "coherente": "coherent", "cohetes": "cohet", "cohetitos": "cohetit", "coincide": "coincid", "coinciden": "coincid", "coincidencia": "coincident", "coincidencias": "coincident", "coincidentemente": "coincident", "coincidentes": "coincident", "coincidiera": "coincid", "coincidieron": "coincid", "coincidió": "coincid", "coincidirán": "coincid", "coinversión": "coinversion", "coinversiones": "coinversion", "coinvertir": "coinvert", "cojo": "coj", "col": "col", "cola": "col", "colabora": "colabor", "colaboración": "colabor", "colaborado": "colabor", "colaborador": "colabor", "colaboradores": "colabor", "colaboran": "colabor", "colaborando": "colabor", "colaborar": "colabor", "colaborara": "colabor", "colaboraran": "colabor", "colaboraría": "colabor", "colaboraron": "colabor", "colabore": "colabor", "colapsaron": "colaps", "colas": "col", "colcha": "colch", "colchón": "colchon", "colchoneros": "colchoner", "colchones": "colchon", "coldwell": "coldwell", "cole": "col", "coleadero": "coleader", "colección": "coleccion", "colecciones": "coleccion", "coleccionismo": "coleccion", "coleccionista": "coleccion", "coleccionistas": "coleccion", "colecta": "colect", "colectiva": "colect", "colectivamente": "colect", "colectividad": "colect", "colectivo": "colect", "colectivos": "colect", "colega": "coleg", "colegas": "coleg", "colegiado": "colegi", "colegiatura": "colegiatur", "colegio": "colegi", "colegios": "colegi", "cólera": "coler", "colesterol": "colesterol", "colgaba": "colg", "colgaban": "colg", "colgada": "colg", "colgadas": "colg", "colgado": "colg", "colgados": "colg", "colgó": "colg", "colgón": "colgon", "colima": "colim", "colin": "colin", "colín": "colin", "colina": "colin", "colinas": "colin", "coliseo": "colise", "collado": "coll", "colleen": "coll", "colleges": "colleg", "collin": "collin", "collor": "collor", "colmada": "colm", "colmo": "colm", "coloca": "coloc", "colocación": "coloc", "colocaciones": "coloc", "colocadas": "coloc", "colocado": "coloc", "colocadores": "coloc", "colocados": "coloc", "colocan": "coloc", "colocando": "coloc", "colocándose": "coloc", "colocar": "coloc", "colocara": "coloc", "colocará": "coloc", "colocarán": "coloc", "colocarla": "coloc", "colocarme": "coloc", "colocarnos": "coloc", "colocaron": "coloc", "colocarse": "coloc", "colocó": "coloc", "colofón": "colofon", "colombia": "colombi", "colombiano": "colombian", "colombianos": "colombian", "colón": "colon", "colonia": "coloni", "colonial": "colonial", "coloniales": "colonial", "colonias": "coloni", "colonizadora": "coloniz", "colonizando": "coloniz", "coloque": "coloqu", "coloquialmente": "coloquial", "coloquio": "coloqui", "color": "color", "colorado": "color", "colorantes": "color", "colores": "color", "colorido": "color", "coloridos": "color", "colorísticos": "colorist", "colosio": "colosi", "coloso": "colos", "colosos": "colos", "coludidos": "colud", "columbia": "columbi", "columna": "column", "columnabreves": "columnabrev", "columnaconsultorio": "columnaconsultori", "columnaempresa": "columnaempres", "columnafricase": "columnafric", "columnafricasé": "columnafricas", "columnamirador": "columnamir", "columnas": "column", "columneja": "columnej", "columnista": "column", "colunga": "colung", "com": "com", "comadre": "comadr", "comadrita": "comadrit", "comanda": "comand", "comandado": "comand", "comandados": "comand", "comandancia": "comand", "comandante": "comand", "comande": "comand", "comandó": "comand", "comandos": "comand", "comas": "com", "combate": "combat", "combaten": "combat", "combates": "combat", "combatido": "combat", "combatió": "combat", "combatir": "combat", "combatirán": "combat", "combatividad": "combat", "combativo": "combat", "combina": "combin", "combinación": "combin", "combinaciones": "combin", "combinada": "combin", "combinadas": "combin", "combinado": "combin", "combinados": "combin", "combinan": "combin", "combinando": "combin", "combinar": "combin", "combinará": "combin", "combinarlo": "combin", "combinarlos": "combin", "combinen": "combin", "combis": "combis", "combustible": "combust", "combustibles": "combust", "combustión": "combustion", "come": "com", "comedia": "comedi", "comediante": "comedi", "comediógrafo": "comediograf", "comedor": "comedor", "comedores": "comedor", "comemos": "com", "comensal": "comensal", "comenta": "coment", "comentaba": "coment", "comentábamos": "coment", "comentaban": "coment", "comentabas": "coment", "comentada": "coment", "comentadas": "coment", "comentado": "coment", "comentan": "coment", "comentando": "coment", "comentar": "coment", "comentaré": "coment", "comentario": "comentari", "comentarios": "comentari", "comentaristas": "comentar", "comentarla": "coment", "comentarle": "coment", "comentaron": "coment", "comentarse": "coment", "comente": "coment", "comentó": "coment", "comenzaba": "comenz", "comenzaban": "comenz", "comenzado": "comenz", "comenzamos": "comenz", "comenzar": "comenz", "comenzara": "comenz", "comenzará": "comenz", "comenzarán": "comenz", "comenzaré": "comenz", "comenzaremos": "comenz", "comenzaron": "comenz", "comenzó": "comenz", "comer": "com", "comerá": "com", "comerciaba": "comerci", "comercial": "comercial", "comerciales": "comercial", "comercializa": "comercializ", "comercialización": "comercializ", "comercializadora": "comercializ", "comercializadoras": "comercializ", "comercializan": "comercializ", "comercializar": "comercializ", "comercializaría": "comercializ", "comercializarlo": "comercializ", "comercialmente": "comercial", "comerciante": "comerci", "comerciantes": "comerci", "comerciar": "comerci", "comercio": "comerci", "comercios": "comerci", "comernos": "com", "cometa": "comet", "cometan": "comet", "cometarios": "cometari", "cometas": "comet", "comete": "comet", "cometemos": "comet", "cometen": "comet", "cometer": "comet", "cometeríamos": "comet", "cometerse": "comet", "cometía": "comet", "cometidas": "comet", "cometido": "comet", "cometidos": "comet", "cometiendo": "comet", "cometiera": "comet", "cometieron": "comet", "cometió": "comet", "comezón": "comezon", "comía": "com", "cómica": "comic", "cómicas": "comic", "comicios": "comici", "cómico": "comic", "cómicos": "comic", "comida": "com", "comidas": "com", "comience": "comienc", "comiencen": "comienc", "comienza": "comienz", "comienzan": "comienz", "comienzo": "comienz", "comienzos": "comienz", "comillas": "comill", "cominfinanciero": "cominfinancier", "comino": "comin", "comió": "com", "comisaría": "comis", "comisión": "comision", "comisionado": "comision", "comisionados": "comision", "comisiones": "comision", "comisionó": "comision", "comité": "comit", "comités": "comites", "comitiva": "comit", "comitivas": "comit", "commerce": "commerc", "communications": "communications", "como": "com", "cómo": "com", "cómoda": "comod", "cómodamente": "comod", "cómodas": "comod", "comodato": "comodat", "comodidad": "comod", "comodidades": "comod", "comodines": "comodin", "comodísimos": "comodis", "cómodo": "comod", "comodones": "comodon", "cómodos": "comod", "compact": "compact", "compacto": "compact", "compactos": "compact", "compadrazgos": "compadrazg", "compañera": "compañer", "compañeras": "compañer", "compañerismo": "compañer", "compañero": "compañer", "compañeros": "compañer", "companía": "compan", "compañía": "compañ", "compañías": "compañ", "company": "company", "compaq": "compaq", "compara": "comp", "comparable": "compar", "comparación": "compar", "comparaciones": "compar", "comparado": "compar", "comparados": "compar", "comparan": "comp", "comparando": "compar", "comparándolas": "compar", "comparándose": "compar", "comparar": "compar", "compararse": "compar", "comparársele": "compararsel", "comparativamente": "compar", "comparecencia": "comparecent", "comparecer": "comparec", "comparecerán": "comparec", "comparecía": "comparec", "comparó": "compar", "comparsa": "compars", "comparsas": "compars", "comparte": "compart", "comparten": "compart", "compartido": "compart", "compartimentos": "compartiment", "compartimiento": "compart", "compartió": "compart", "compartir": "compart", "comparto": "compart", "compás": "compas", "compasión": "compasion", "compasiva": "compas", "compatibilizar": "compatibiliz", "compatible": "compat", "compatibles": "compat", "compatriota": "compatriot", "compatriotas": "compatriot", "compelen": "compel", "compendio": "compendi", "compensa": "compens", "compensación": "compens", "compensaciones": "compens", "compensado": "compens", "compensar": "compens", "compensatorio": "compensatori", "compensatorios": "compensatori", "competa": "compet", "compete": "compet", "competencia": "competent", "competencial": "competencial", "competencias": "competent", "competente": "competent", "competentes": "competent", "competidor": "competidor", "competidoras": "competidor", "competidores": "competidor", "competir": "compet", "competirán": "compet", "competiremos": "compet", "competirle": "compet", "competitiva": "competit", "competitivas": "competit", "competitive": "competitiv", "competitividad": "competit", "competitivo": "competit", "competitivos": "competit", "compilador": "compil", "compilando": "compil", "compilar": "compil", "compite": "compit", "compiten": "compit", "compitiendo": "compit", "compito": "compit", "complacer": "complac", "complacido": "complac", "complació": "complac", "complazca": "complazc", "compleja": "complej", "complejas": "complej", "complejidad": "complej", "complejo": "complej", "complejos": "complej", "complementada": "complement", "complementan": "complement", "complementar": "complement", "complementaria": "complementari", "complementaría": "complement", "complementarias": "complementari", "complementarios": "complementari", "complementarlo": "complement", "complemento": "complement", "completa": "complet", "completadas": "complet", "completamente": "complet", "completar": "complet", "completarían": "complet", "completaron": "complet", "completarse": "complet", "completas": "complet", "completo": "complet", "completó": "complet", "completos": "complet", "complexión": "complexion", "complica": "complic", "complicación": "complic", "complicaciones": "complic", "complicadas": "complic", "complicado": "complic", "complicados": "complic", "complican": "complic", "complicar": "complic", "complicarse": "complic", "cómplice": "complic", "cómplices": "complic", "complicidad": "complic", "complicó": "complic", "compone": "compon", "componen": "compon", "componendas": "componend", "componente": "component", "componentes": "component", "componga": "compong", "componían": "compon", "comportamiento": "comport", "comportamientos": "comport", "comportan": "comport", "comportará": "comport", "composición": "composicion", "composiciones": "composicion", "compositor": "compositor", "compositores": "compositor", "compra": "compr", "compraba": "compr", "compradas": "compr", "comprado": "compr", "comprador": "comprador", "compradora": "comprador", "compradores": "comprador", "compramos": "compr", "compran": "compr", "comprando": "compr", "comprar": "compr", "comprara": "compr", "comprará": "compr", "comprarlas": "compr", "comprarle": "compr", "comprarles": "compr", "comprarme": "compr", "compraron": "compr", "comprarse": "compr", "comprárselo": "compr", "compras": "compr", "compraventa": "compravent", "compre": "compr", "compré": "compr", "comprenda": "comprend", "comprendan": "comprend", "comprendas": "comprend", "comprende": "comprend", "comprendemos": "comprend", "comprenden": "comprend", "comprender": "comprend", "comprenderá": "comprend", "comprendía": "comprend", "comprendiera": "comprend", "comprendieron": "comprend", "comprendo": "comprend", "comprensible": "comprens", "comprensión": "comprension", "comprensivo": "comprens", "compresor": "compresor", "comprimida": "comprim", "compró": "compr", "comprobado": "comprob", "comprobante": "comprob", "comprobar": "comprob", "comprobaron": "comprob", "comprobarse": "comprob", "comprobó": "comprob", "comprometan": "compromet", "compromete": "compromet", "comprometen": "compromet", "comprometernos": "compromet", "comprometerse": "compromet", "comprometía": "compromet", "comprometían": "compromet", "comprometido": "compromet", "comprometidos": "compromet", "comprometieran": "compromet", "comprometieron": "compromet", "comprometimos": "compromet", "comprometió": "compromet", "compromiso": "compromis", "compromisos": "compromis", "comprueba": "comprueb", "comprueban": "comprueb", "compuertas": "compuert", "compuesta": "compuest", "compuesto": "compuest", "compulsiva": "compuls", "compuso": "compus", "computación": "comput", "computacional": "computacional", "computacionales": "computacional", "computadora": "comput", "computadoras": "comput", "computados": "comput", "computarizado": "computariz", "computarizados": "computariz", "computec": "computec", "computer": "comput", "computo": "comput", "cómputo": "comput", "comun": "comun", "común": "comun", "comunales": "comunal", "comunes": "comun", "comunica": "comun", "comunicación": "comun", "comunicaciones": "comun", "comunicado": "comunic", "comunicados": "comunic", "comunican": "comunic", "comunicándose": "comunic", "comunicantes": "comun", "comunicar": "comunic", "comunicara": "comunic", "comunicarse": "comunic", "comunicativa": "comunic", "comunicativos": "comunic", "comunicó": "comunic", "comunidad": "comun", "comunidades": "comun", "comuniqué": "comuniqu", "comuníqueme": "comuniquem", "comuniquen": "comuniqu", "comuníquese": "comuniques", "comunista": "comun", "comunistas": "comun", "comunitarias": "comunitari", "comunitario": "comunitari", "comunitarios": "comunitari", "con": "con", "conacyt": "conacyt", "conadeip": "conadeip", "conatos": "conat", "concacaf": "concacaf", "concamin": "concamin", "concamín": "concamin", "concanaco": "concanac", "concebían": "conceb", "concebida": "conceb", "concebido": "conceb", "conceder": "conced", "concederá": "conced", "concedían": "conced", "concedida": "conced", "concedido": "conced", "concediendo": "conced", "concediera": "conced", "concedió": "conced", "concem": "concem", "concentra": "concentr", "concentración": "concentr", "concentraciones": "concentr", "concentrada": "concentr", "concentradas": "concentr", "concentrado": "concentr", "concentrados": "concentr", "concentran": "concentr", "concentrará": "concentr", "concentraran": "concentr", "concentraremos": "concentr", "concentrarse": "concentr", "concentre": "concentr", "concentró": "concentr", "concepción": "concepcion", "concepciones": "concepcion", "concepto": "concept", "conceptos": "concept", "conceptual": "conceptual", "concert": "concert", "concertación": "concert", "concertaciones": "concert", "concertadamente": "concert", "concertado": "concert", "concertando": "concert", "concertar": "concert", "concesión": "concesion", "concesionadas": "concesion", "concesionado": "concesion", "concesionarias": "concesionari", "concesionario": "concesionari", "concesionarios": "concesionari", "concesiones": "concesion", "concha": "conch", "conchello": "conchell", "conchita": "conchit", "concibe": "concib", "concibió": "concib", "conciencia": "concienci", "conciencias": "concienci", "concientizar": "concientiz", "concierne": "conciern", "concierto": "conciert", "conciertos": "conciert", "conciliación": "concili", "conciliador": "concili", "conciliar": "concili", "concilio": "concili", "conciudadanos": "conciudadan", "concluida": "conclu", "concluido": "conclu", "concluído": "concluid", "concluir": "conclu", "concluirá": "conclu", "concluirán": "conclu", "concluirla": "conclu", "conclusion": "conclusion", "conclusión": "conclusion", "conclusiones": "conclusion", "concluya": "conclu", "concluyamos": "conclu", "concluyan": "conclu", "concluye": "conclu", "concluyen": "conclu", "concluyeron": "conclu", "concluyó": "conclu", "concordar": "concord", "concordia": "concordi", "concordó": "concord", "concreción": "concrecion", "concreta": "concret", "concretado": "concret", "concretamente": "concret", "concretándolo": "concret", "concretar": "concret", "concretarse": "concret", "concretas": "concret", "concrete": "concret", "concretera": "concreter", "concreteras": "concreter", "concreto": "concret", "concretó": "concret", "concretos": "concret", "concuerda": "concuerd", "concupiscente": "concupiscent", "concurran": "concurr", "concurrencia": "concurrent", "concurrió": "concurr", "concursan": "concurs", "concursante": "concurs", "concursar": "concurs", "concurso": "concurs", "concursos": "concurs", "condado": "cond", "condados": "cond", "condde": "condd", "conde": "cond", "condecoración": "condecor", "condecorado": "condecor", "condena": "conden", "condenaban": "conden", "condenada": "conden", "condenadas": "conden", "condenado": "conden", "condenados": "conden", "condenamos": "conden", "condenan": "conden", "condenar": "conden", "condenaron": "conden", "condenas": "conden", "condene": "conden", "condenó": "conden", "condesa": "condes", "condición": "condicion", "condicionado": "condicion", "condicional": "condicional", "condicionamientos": "condicion", "condicionan": "condicion", "condicionar": "condicion", "condiciones": "condicion", "condicionó": "condicion", "condominios": "condomini", "condones": "condon", "conducción": "conduccion", "conduce": "conduc", "conducen": "conduc", "conducentes": "conducent", "conducía": "conduc", "conducida": "conduc", "conducido": "conduc", "conducidos": "conduc", "conduciendo": "conduc", "conduciéndonos": "conduc", "conduciera": "conduc", "conducimos": "conduc", "conducir": "conduc", "conducirá": "conduc", "conducta": "conduct", "conductas": "conduct", "conducto": "conduct", "conductor": "conductor", "conductores": "conductor", "conductuales": "conductual", "condujeron": "condujeron", "condujo": "conduj", "conduzca": "conduzc", "conduzcan": "conduzc", "conecta": "conect", "conectaba": "conect", "conectado": "conect", "conectar": "conect", "conectará": "conect", "conectarse": "conect", "conecte": "conect", "conectividad": "conect", "conejos": "conej", "conexiones": "conexion", "confección": "confeccion", "confeccionados": "confeccion", "confederación": "confeder", "conferencia": "conferent", "conferenciantes": "conferenci", "conferencias": "conferent", "conferencista": "conferenc", "conferencistas": "conferenc", "confesamos": "confes", "confesar": "confes", "confesaron": "confes", "confesión": "confesion", "confesó": "confes", "confesores": "confesor", "confeti": "confeti", "confía": "conf", "confiaba": "confi", "confiabilidad": "confiabil", "confiable": "confiabl", "confiables": "confiabl", "confiado": "confi", "confiados": "confi", "confiamos": "confi", "confían": "conf", "confiana": "confian", "confiant": "confiant", "confianza": "confianz", "confiar": "confi", "confiará": "confi", "confiarnos": "confi", "confiarse": "confi", "confidencias": "confident", "confidente": "confident", "confíen": "conf", "confiera": "conf", "confiesa": "confies", "confiesan": "confies", "configura": "configur", "configuración": "configur", "configuraciones": "configur", "configurada": "configur", "configuradas": "configur", "configurado": "configur", "configurados": "configur", "configurar": "configur", "confinado": "confin", "confio": "confi", "confió": "conf", "confirma": "confirm", "confirmación": "confirm", "confirmada": "confirm", "confirmado": "confirm", "confirman": "confirm", "confirmar": "confirm", "confirmaron": "confirm", "confirmó": "confirm", "conflicto": "conflict", "conflictos": "conflict", "confluyen": "conflu", "conforma": "conform", "conformaban": "conform", "conformación": "conform", "conformada": "conform", "conforman": "conform", "conformar": "conform", "conformara": "conform", "conformarse": "conform", "conforme": "conform", "conformen": "conform", "conformista": "conform", "conformo": "conform", "confort": "confort", "confrontación": "confront", "confrontaciones": "confront", "confrontando": "confront", "confrontar": "confront", "confucio": "confuci", "confunde": "confund", "confunden": "confund", "confundido": "confund", "confundidos": "confund", "confundimos": "confund", "confundir": "confund", "confundirse": "confund", "confusión": "confusion", "congelación": "congel", "congeladas": "congel", "congelados": "congel", "congelarse": "congel", "congéneres": "congener", "congénitos": "congenit", "congestión": "congestion", "congestionadas": "congestion", "congestionado": "congestion", "congestionamiento": "congestion", "congestionamientos": "congestion", "conglomerado": "conglomer", "conglomerados": "conglomer", "conglomerará": "conglomer", "congo": "cong", "congoja": "congoj", "congregación": "congreg", "congregada": "congreg", "congregados": "congreg", "congregara": "congreg", "congregaron": "congreg", "congresista": "congres", "congresistas": "congres", "congreso": "congres", "congresos": "congres", "congruencia": "congruenci", "congruente": "congruent", "congruentes": "congruent", "conjuga": "conjug", "conjugada": "conjug", "conjugaron": "conjug", "conjugarse": "conjug", "conjunción": "conjuncion", "conjunta": "conjunt", "conjuntamente": "conjunt", "conjuntar": "conjunt", "conjuntarán": "conjunt", "conjuntarse": "conjunt", "conjuntas": "conjunt", "conjuntivitis": "conjuntivitis", "conjunto": "conjunt", "conjuntos": "conjunt", "conjura": "conjur", "conjurarse": "conjur", "conlleva": "conllev", "conllevan": "conllev", "conmemorar": "conmemor", "conmemorativa": "conmemor", "conmemorativos": "conmemor", "conmigo": "conmig", "conminado": "conmin", "conmoción": "conmocion", "conmovedor": "conmovedor", "conmovedora": "conmovedor", "conmovieron": "conmov", "connor": "connor", "connotación": "connot", "connotados": "connot", "cono": "con", "conoce": "conoc", "conocedor": "conocedor", "conocedora": "conocedor", "conocedoras": "conocedor", "conocedores": "conocedor", "conocemos": "conoc", "conocen": "conoc", "conocer": "conoc", "conocerá": "conoc", "conocerán": "conoc", "conocería": "conoc", "conocerían": "conoc", "conocerlo": "conoc", "conocerse": "conoc", "conoces": "conoc", "conocí": "conoc", "conocía": "conoc", "conocían": "conoc", "conocida": "conoc", "conocidas": "conoc", "conocido": "conoc", "conocidos": "conoc", "conociendo": "conoc", "conociéndose": "conoc", "conocieron": "conoc", "conocimiento": "conoc", "conocimientos": "conoc", "conocimos": "conoc", "conoció": "conoc", "conos": "con", "conotados": "conot", "conozca": "conozc", "conozcan": "conozc", "conozco": "conozc", "conquista": "conquist", "conquistar": "conquist", "conquistas": "conquist", "consagrados": "consagr", "consagraron": "consagr", "consagró": "consagr", "consciente": "conscient", "conscientemente": "conscient", "conscientes": "conscient", "consecuencia": "consecuent", "consecuencias": "consecuent", "consecuente": "consecuent", "consecutiva": "consecut", "consecutivas": "consecut", "consecutivo": "consecut", "consecutivos": "consecut", "conseguía": "consegu", "conseguida": "consegu", "conseguido": "consegu", "conseguir": "consegu", "conseguirle": "consegu", "conseguirlo": "consegu", "conseguirlos": "consegu", "consejero": "consejer", "consejeros": "consejer", "consejo": "consej", "consejos": "consej", "consenso": "consens", "consensual": "consensual", "consentido": "consent", "consentidos": "consent", "consentimiento": "consent", "conserva": "conserv", "conservaba": "conserv", "conservaban": "conserv", "conservación": "conserv", "conservacionistas": "conservacion", "conservado": "conserv", "conservador": "conserv", "conservadores": "conserv", "conservados": "conserv", "conservan": "conserv", "conservando": "conserv", "conservar": "conserv", "conservarlo": "conserv", "conservarse": "conserv", "conserven": "conserv", "conservó": "conserv", "considera": "consider", "consideraba": "consider", "consideraban": "consider", "considerable": "consider", "considerablemente": "consider", "considerables": "consider", "consideración": "consider", "consideraciones": "consider", "considerada": "consider", "consideradas": "consider", "considerado": "consider", "considerados": "consider", "consideramos": "consider", "consideran": "consider", "considerando": "consider", "considerar": "consider", "considerara": "consider", "considerará": "consider", "consideraría": "consider", "considerarlas": "consider", "considerarlo": "consider", "consideraron": "consider", "considerarse": "consider", "considere": "consider", "consideren": "consider", "consideres": "consider", "considero": "consider", "consideró": "consider", "consiga": "consig", "consigna": "consign", "consignación": "consign", "consignado": "consign", "consignados": "consign", "consignará": "consign", "consignó": "consign", "consigo": "consig", "consigue": "consig", "consiguen": "consig", "consigues": "consig", "consiguiendo": "consigu", "consiguiente": "consiguient", "consiguieron": "consigu", "consiguió": "consigu", "consiste": "cons", "consisten": "consist", "consistencia": "consistent", "consistente": "consistent", "consistieron": "consist", "consistirá": "consist", "consistiría": "consist", "consolación": "consol", "consolarla": "consol", "consolida": "consol", "consolidación": "consolid", "consolidad": "consol", "consolidadas": "consolid", "consolidado": "consolid", "consolidar": "consolid", "consolidarlo": "consolid", "consolidaron": "consolid", "consolidarse": "consolid", "consolidó": "consolid", "consorcio": "consorci", "consorcios": "consorci", "conspiración": "conspir", "consta": "const", "constan": "const", "constancia": "constanci", "constancias": "constanci", "constante": "constant", "constantemente": "constant", "constantes": "constant", "constantiniana": "constantinian", "constantino": "constantin", "constará": "const", "constata": "constat", "constatar": "constat", "conste": "const", "consterna": "constern", "constitucion": "constitucion", "constitución": "constitu", "constitucional": "constitucional", "constitucionales": "constitucional", "constitucionalmente": "constitucional", "constituciones": "constitu", "constituía": "constitu", "constituida": "constitu", "constituido": "constitu", "constituidos": "constitu", "constituir": "constitu", "constituirá": "constitu", "constituirán": "constitu", "constituiría": "constitu", "constituirse": "constitu", "constitutiva": "constitut", "constitutivo": "constitut", "constitutivos": "constitut", "constituya": "constitu", "constituye": "constitu", "constituyen": "constitu", "constituyente": "constituyent", "constituyentes": "constituyent", "constituyeron": "constitu", "constituyó": "constitu", "construcción": "construccion", "construcciones": "construccion", "constructivo": "construct", "constructor": "constructor", "constructora": "constructor", "constructoras": "constructor", "constructores": "constructor", "construida": "constru", "construidas": "constru", "construido": "constru", "construir": "constru", "construirá": "constru", "construirán": "constru", "construirían": "constru", "construirlo": "constru", "construirse": "constru", "construya": "constru", "construyan": "constru", "construye": "constru", "construyen": "constru", "construyendo": "constru", "construyó": "constru", "consuelo": "consuel", "consuetudinario": "consuetudinari", "cónsul": "consul", "consulado": "consul", "consulados": "consul", "consular": "consul", "cónsules": "consul", "consulta": "consult", "consultadas": "consult", "consultado": "consult", "consultados": "consult", "consultar": "consult", "consultaron": "consult", "consultas": "consult", "consulte": "consult", "consultivo": "consult", "consultor": "consultor", "consultora": "consultor", "consultoría": "consultor", "consultorio": "consultori", "consultoriobursátil": "consultoriobursatil", "consumados": "consum", "consumaran": "consum", "consumida": "consum", "consumido": "consum", "consumidor": "consumidor", "consumidores": "consumidor", "consumiendo": "consum", "consumió": "consum", "consumir": "consum", "consumirán": "consum", "consumismo": "consum", "consumista": "consum", "consumo": "consum", "consumó": "consum", "contaba": "cont", "contaban": "cont", "contabilidad": "contabil", "contabilizada": "contabiliz", "contabilizan": "contabiliz", "contabilizaron": "contabiliz", "contable": "contabl", "contactado": "contact", "contactar": "contact", "contactarse": "contact", "contacto": "contact", "contactos": "contact", "contadas": "cont", "contado": "cont", "contador": "contador", "contadores": "contador", "contaduría": "contadur", "contagia": "contagi", "contagio": "contagi", "contagios": "contagi", "contagiosas": "contagi", "contamina": "contamin", "contaminación": "contamin", "contaminador": "contamin", "contaminadores": "contamin", "contaminan": "contamin", "contaminante": "contamin", "contaminantes": "contamin", "contaminar": "contamin", "contamine": "contamin", "contaminen": "contamin", "contamos": "cont", "contando": "cont", "contar": "cont", "contara": "cont", "contará": "cont", "contarán": "cont", "contaré": "cont", "contempla": "contempl", "contemplaba": "contempl", "contemplación": "contempl", "contemplada": "contempl", "contempladas": "contempl", "contemplado": "contempl", "contemplados": "contempl", "contemplan": "contempl", "contemplando": "contempl", "contemplar": "contempl", "contemplaron": "contempl", "contemplarse": "contempl", "contemple": "contempl", "contemporánea": "contemporane", "contemporáneas": "contemporan", "contemporáneo": "contemporane", "contemporáneos": "contemporane", "contención": "contencion", "contencioso": "contenci", "contender": "contend", "contenderán": "contend", "contendientes": "contendient", "contener": "conten", "contenga": "conteng", "contengan": "conteng", "contenía": "conten", "contenían": "conten", "contenidas": "conten", "contenido": "conten", "contenidos": "conten", "contenta": "content", "contentamos": "content", "contentas": "content", "contento": "content", "contentos": "content", "conteo": "conte", "contesta": "contest", "contestaban": "contest", "contestan": "contest", "contestar": "contest", "contestara": "contest", "contestarle": "contest", "contestarles": "contest", "contestatario": "contestatari", "contesté": "contest", "contestó": "contest", "contexto": "context", "conti": "conti", "contienda": "contiend", "contiene": "contien", "contienen": "contien", "contigo": "contig", "contiguo": "contigu", "continental": "continental", "continente": "continent", "continentes": "continent", "contingencia": "contingent", "contingencias": "contingent", "contingente": "contingent", "contingentes": "contingent", "continua": "continu", "contínua": "continu", "continúa": "continu", "continuaba": "continu", "continuaban": "continu", "continuación": "continu", "continuada": "continu", "continuado": "continu", "continuamente": "continu", "continúan": "continu", "continuar": "continu", "continuara": "continu", "continuará": "continu", "continuaran": "continu", "continuarán": "continu", "continuaron": "continu", "continuas": "continu", "continúe": "continu", "continuen": "continu", "continuidad": "continu", "continuo": "continu", "contínuo": "continu", "continuó": "continu", "continuos": "continu", "contó": "cont", "contorsionarse": "contorsion", "contra": "contr", "contraataque": "contraataqu", "contraataques": "contraataqu", "contrabandistas": "contraband", "contrabando": "contrab", "contracción": "contraccion", "contractual": "contractual", "contractura": "contractur", "contradecir": "contradec", "contradecirle": "contradec", "contrademanda": "contrademand", "contradicción": "contradiccion", "contradicciones": "contradiccion", "contradice": "contradic", "contradicen": "contradic", "contradictorias": "contradictori", "contradigan": "contradig", "contraer": "contr", "contragolpear": "contragolp", "contraídos": "contraid", "contrajo": "contraj", "contralor": "contralor", "contraloría": "contralor", "contralorías": "contralor", "contrantes": "contrant", "contraparte": "contrapart", "contraposiciones": "contraposicion", "contraproducente": "contraproducent", "contraproducentes": "contraproducent", "contrapuesta": "contrapuest", "contraria": "contrari", "contrarias": "contrari", "contrario": "contrari", "contrarios": "contrari", "contrarresta": "contrarrest", "contrarrestar": "contrarrest", "contrasta": "contrast", "contrastan": "contrast", "contraste": "contr", "contrastes": "contrast", "contrataban": "contrat", "contratación": "contrat", "contrataciones": "contrat", "contratadas": "contrat", "contratado": "contrat", "contratados": "contrat", "contratan": "contrat", "contratantes": "contrat", "contratar": "contrat", "contratarle": "contrat", "contratarlo": "contrat", "contrataron": "contrat", "contraten": "contrat", "contratiempo": "contratiemp", "contratiempos": "contratiemp", "contratista": "contrat", "contratistas": "contrat", "contrato": "contrat", "contrató": "contrat", "contratos": "contrat", "contrayente": "contrayent", "contreras": "contrer", "contribución": "contribu", "contribuciones": "contribu", "contribuido": "contribu", "contribuir": "contribu", "contribuirá": "contribu", "contribuiría": "contribu", "contribuyendo": "contribu", "contribuyente": "contribuyent", "contribuyentes": "contribuyent", "contribuyeron": "contribu", "contribuyó": "contribu", "contrincante": "contrinc", "contrincantes": "contrinc", "contritos": "contrit", "control": "control", "controla": "control", "controlables": "control", "controlada": "control", "controlado": "control", "controladora": "control", "controlando": "control", "controlar": "control", "controlarlo": "control", "controlaron": "control", "controlarse": "control", "controle": "control", "controles": "control", "controversia": "controversi", "controversias": "controversi", "controvertida": "controvert", "controvertido": "controvert", "contry": "contry", "contubernio": "contuberni", "contundencia": "contundent", "contundente": "contundent", "contundentemente": "contundent", "contundentes": "contundent", "conturbado": "conturb", "conurbada": "conurb", "conurbadas": "conurb", "convalecencia": "convalecent", "convaleciente": "convalecient", "convence": "convenc", "convencer": "convenc", "convencerle": "convenc", "convencerse": "convenc", "convencida": "convenc", "convencidas": "convenc", "convencido": "convenc", "convencidos": "convenc", "convencieron": "convenc", "convencimiento": "convenc", "convencimos": "convenc", "convenció": "convenc", "convención": "convencion", "convencional": "convencional", "convencionales": "convencional", "convenciones": "convencion", "convenencieros": "convenencier", "convenga": "conveng", "convenía": "conven", "convenidos": "conven", "conveniencia": "convenient", "conveniente": "convenient", "convenientes": "convenient", "convenio": "conveni", "convenios": "conveni", "convento": "convent", "convenzo": "convenz", "convergencia": "convergent", "conversación": "convers", "conversaciones": "convers", "conversarán": "convers", "conversaron": "convers", "conversión": "conversion", "conversó": "convers", "convertibles": "convert", "convertido": "convert", "convertidor": "convertidor", "convertidores": "convertidor", "convertir": "convert", "convertirá": "convert", "convertiría": "convert", "convertirnos": "convert", "convertirse": "convert", "convicción": "conviccion", "convicciones": "conviccion", "conviene": "convien", "convierta": "conviert", "conviertan": "conviert", "convierte": "conviert", "convierten": "conviert", "convincente": "convincent", "convino": "convin", "convirtiendo": "convirt", "convirtiéndola": "convirt", "convirtiéndolas": "convirt", "convirtiéndose": "convirt", "convirtiera": "convirt", "convirtieron": "convirt", "convirtió": "convirt", "convivencia": "convivent", "convivio": "convivi", "convivir": "conviv", "convocación": "convoc", "convocada": "convoc", "convocadas": "convoc", "convocado": "convoc", "convocados": "convoc", "convocan": "convoc", "convocar": "convoc", "convocará": "convoc", "convocaron": "convoc", "convocatoria": "convocatori", "convocatorias": "convocatori", "convocó": "convoc", "convoqué": "convoqu", "convoquen": "convoqu", "convoy": "convoy", "convoyes": "convoy", "convulsionados": "convulsion", "convulsivas": "convuls", "cony": "cony", "conyugal": "conyugal", "conyugales": "conyugal", "cooper": "coop", "cooperación": "cooper", "cooperar": "cooper", "cooperará": "cooper", "cooperaron": "cooper", "cooperativa": "cooper", "cooperen": "cooper", "cooppel": "cooppel", "cooptación": "cooptacion", "coordenadas": "coorden", "coordina": "coordin", "coordinación": "coordin", "coordinada": "coordin", "coordinadas": "coordin", "coordinador": "coordin", "coordinadora": "coordin", "coordinadores": "coordin", "coordinados": "coordin", "coordinan": "coordin", "coordinando": "coordin", "coordinar": "coordin", "coordinarán": "coordin", "coordinaron": "coordin", "copa": "cop", "copán": "copan", "coparmex": "coparmex", "copas": "cop", "copia": "copi", "copiar": "copi", "copias": "copi", "copiemos": "copi", "copioso": "copios", "coppel": "coppel", "cópula": "copul", "coraje": "coraj", "corán": "coran", "coraza": "coraz", "corazon": "corazon", "corazón": "corazon", "corazones": "corazon", "corbalá": "corbal", "corbata": "corbat", "corbatas": "corbat", "cordelia": "cordeli", "corderos": "corder", "cordial": "cordial", "cordillera": "cordiller", "córdoba": "cordob", "cordobés": "cordobes", "cordón": "cordon", "cordura": "cordur", "corea": "core", "coreados": "cor", "coreana": "corean", "coreógrafa": "coreograf", "coreografías": "coreograf", "coreográfica": "coreograf", "corinter": "corint", "cornalina": "cornalin", "córneas": "corn", "cornejo": "cornej", "cornoyer": "cornoy", "coro": "cor", "corona": "coron", "coronacion": "coronacion", "coronación": "coron", "coronada": "coron", "coronado": "coron", "coronas": "coron", "coronelas": "coronel", "coronó": "coron", "coros": "cor", "corp": "corp", "corporación": "corpor", "corporaciones": "corpor", "corporal": "corporal", "corporation": "corporation", "corporativa": "corpor", "corporativas": "corpor", "corporativo": "corpor", "corporativos": "corpor", "corpórea": "corpore", "corpus": "corpus", "corra": "corr", "corral": "corral", "corrales": "corral", "corran": "corr", "corre": "corr", "correajes": "correaj", "correcaminos": "correcamin", "corrección": "correccion", "correcciones": "correccion", "correcta": "correct", "correctamente": "correct", "correctas": "correct", "correcto": "correct", "corredor": "corredor", "corredores": "corredor", "correduría": "corredur", "corregible": "correg", "corregido": "correg", "corregidora": "corregidor", "corregir": "correg", "corregirla": "correg", "corregirlo": "correg", "correligionario": "correligionari", "correligionarios": "correligionari", "correlon": "correlon", "correlones": "correlon", "corremos": "corr", "corren": "corr", "correo": "corre", "correr": "corr", "correrá": "corr", "correrán": "corr", "correrían": "corr", "correrlos": "corr", "corres": "corr", "correspondan": "correspond", "corresponde": "correspond", "corresponden": "correspond", "correspondencia": "correspondent", "corresponder": "correspond", "correspondía": "correspond", "correspondido": "correspond", "correspondiente": "correspondient", "correspondientes": "correspondient", "correspondieron": "correspond", "correspondió": "correspond", "corresponsal": "corresponsal", "correveidile": "correveidil", "corrí": "corr", "corría": "corr", "corrían": "corr", "corrida": "corr", "corridas": "corr", "corrido": "corr", "corridos": "corr", "corriendo": "corr", "corriente": "corrient", "corrientes": "corrient", "corrieron": "corr", "corrige": "corrig", "corrigen": "corrig", "corrijan": "corrij", "corrillo": "corrill", "corrió": "corr", "corripio": "corripi", "corro": "corr", "corrobora": "corrobor", "corroboraban": "corrobor", "corroboraron": "corrobor", "corrompa": "corromp", "corrompe": "corromp", "corrosión": "corrosion", "corrupción": "corrupcion", "corruptela": "corruptel", "corrupto": "corrupt", "corruptos": "corrupt", "corta": "cort", "cortada": "cort", "cortadillo": "cortadill", "cortadillos": "cortadill", "cortado": "cort", "cortadores": "cortador", "cortando": "cort", "cortantes": "cortant", "cortar": "cort", "cortarle": "cort", "cortarlos": "cort", "cortarnos": "cort", "cortárselo": "cort", "cortas": "cort", "cortázar": "cortaz", "corte": "cort", "cortedad": "corted", "cortejada": "cortej", "cortejar": "cortej", "cortés": "cortes", "cortesanas": "cortesan", "cortesía": "cortes", "cortez": "cortez", "corteza": "cortez", "cortina": "cortin", "cortinas": "cortin", "cortines": "cortin", "cortito": "cortit", "corto": "cort", "cortó": "cort", "cortoplazo": "cortoplaz", "cortos": "cort", "coruña": "coruñ", "corvette": "corvett", "corvi": "corvi", "cosa": "cos", "cosas": "cos", "cosaspeores": "cosaspeor", "cosecha": "cosech", "cosechando": "cosech", "cosechas": "cosech", "coser": "cos", "cosméticos": "cosmet", "cósmica": "cosmic", "cósmico": "cosmic", "cosmovisión": "cosmovision", "coso": "cos", "coss": "coss", "cossío": "cossi", "costa": "cost", "costaba": "cost", "costado": "cost", "costados": "cost", "costal": "costal", "costales": "costal", "costándole": "cost", "costar": "cost", "costará": "cost", "costarán": "cost", "costarricense": "costarricens", "costas": "cost", "costeable": "costeabl", "costee": "coste", "costera": "coster", "costeras": "coster", "costero": "coster", "costilla": "costill", "costner": "costn", "costo": "cost", "costó": "cost", "costos": "cost", "costosas": "cost", "costoso": "costos", "costosos": "costos", "costumbre": "costumbr", "costumbres": "costumbr", "costura": "costur", "costuras": "costur", "costureras": "costurer", "cota": "cot", "cotejo": "cotej", "cotero": "coter", "cotidiana": "cotidian", "cotidianas": "cotidian", "cotidianeidad": "cotidian", "cotidiano": "cotidian", "cotidianos": "cotidian", "cotiza": "cotiz", "cotización": "cotiz", "cotizaciones": "cotiz", "cotizado": "cotiz", "cotizados": "cotiz", "cotizan": "cotiz", "cotizar": "cotiz", "cotorreo": "cotorre", "couches": "couch", "cougar": "coug", "country": "country", "covarrubias": "covarrubi", "cover": "cov", "covers": "covers", "cóvers": "covers", "covian": "covi", "cowboy": "cowboy", "cox": "cox", "coyolxauhqui": "coyolxauhqui", "coyotaje": "coyotaj", "coyote": "coyot", "coyotepec": "coyotepec", "coyuca": "coyuc", "coyuntura": "coyuntur", "cozumel": "cozumel", "cpp": "cpp", "crack": "crack", "cráneo": "crane", "cráter": "crat", "cráteres": "crater", "cravioto": "craviot", "crawford": "crawford", "crayones": "crayon", "crea": "cre", "creacion": "creacion", "creación": "creacion", "creaciones": "creacion", "creada": "cre", "creadas": "cre", "creado": "cre", "creador": "creador", "creadores": "creador", "creame": "cream", "creamos": "cre", "crean": "cre", "creando": "cre", "crear": "cre", "creara": "cre", "creará": "cre", "crearán": "cre", "crearía": "cre", "crearles": "cre", "crearon": "cre", "creativa": "creativ", "creativas": "creativ", "creatividad": "creativ", "creativo": "creativ", "creativos": "creativ", "crece": "crec", "crecen": "crec", "crecer": "crec", "crecerá": "crec", "crecerán": "crec", "creceremos": "crec", "crecerían": "crec", "creces": "crec", "crecí": "crec", "crecido": "crec", "creciendo": "crec", "creciente": "crecient", "crecieron": "crec", "crecimiento": "crecimient", "crecimientos": "crecimient", "creció": "crec", "credencial": "credencial", "credenciales": "credencial", "credencialización": "credencializ", "credencializados": "credencializ", "credibilidad": "credibil", "crediticia": "creditici", "crediticias": "creditici", "crediticio": "creditici", "crediticios": "creditici", "crédito": "credit", "creditos": "credit", "créditos": "credit", "cree": "cre", "créeme": "creem", "creemos": "cre", "creen": "cre", "creencia": "creenci", "creencias": "creenci", "creer": "cre", "creerán": "cre", "creería": "cre", "creerme": "cre", "creía": "cre", "creíamos": "cre", "creíble": "creibl", "creíbles": "creibl", "creído": "creid", "creímos": "creim", "cremas": "crem", "cremi": "cremi", "creo": "cre", "creó": "cre", "creole": "creol", "cretinismo": "cretin", "creyendo": "creyend", "creyó": "crey", "crezca": "crezc", "criada": "cri", "criadas": "cri", "criadero": "criader", "criadita": "criadit", "criadores": "criador", "criatura": "criatur", "criaturas": "criatur", "crimen": "crim", "crímenes": "crimen", "criminal": "criminal", "criminales": "criminal", "criminalidad": "criminal", "criminalista": "criminal", "criocirugía": "criocirug", "criollos": "crioll", "crisantemo": "crisantem", "crisantemos": "crisant", "crisis": "crisis", "cristal": "cristal", "cristales": "cristal", "cristalización": "cristaliz", "cristalizado": "cristaliz", "cristiana": "cristian", "cristianismo": "cristian", "cristiano": "cristian", "cristianos": "cristian", "cristina": "cristin", "cristo": "crist", "cristobal": "cristobal", "criterio": "criteri", "criterios": "criteri", "critica": "critic", "crítica": "critic", "criticaban": "critic", "criticado": "critic", "criticamente": "critic", "critican": "critic", "criticando": "critic", "criticar": "critic", "criticará": "critic", "criticarlos": "critic", "criticaron": "critic", "críticas": "critic", "crítico": "critic", "criticó": "critic", "críticos": "critic", "croacia": "croaci", "croc": "croc", "cromadas": "crom", "cromadoras": "cromador", "cromados": "crom", "cromera": "cromer", "crónica": "cronic", "crónicas": "cronic", "cronista": "cronist", "cronistas": "cronist", "cronometraron": "cronometr", "cronómetro": "cronometr", "cronometró": "cronometr", "cronómetros": "cronometr", "croquetas": "croquet", "croquis": "croquis", "croquistas": "croquist", "croux": "croux", "cruce": "cruc", "crucero": "crucer", "cruceros": "crucer", "cruces": "cruc", "crucial": "crucial", "cruda": "crud", "crudo": "crud", "crue": "cru", "cruel": "cruel", "cruenta": "cruent", "cruise": "cruis", "cruz": "cruz", "cruza": "cruz", "cruzada": "cruz", "cruzadas": "cruz", "cruzado": "cruz", "cruzados": "cruz", "cruzan": "cruz", "cruzando": "cruz", "cruzar": "cruz", "cruzará": "cruz", "cruzaron": "cruz", "cruzas": "cruz", "cruzó": "cruz", "crysel": "crysel", "cse": "cse", "csg": "csg", "ctm": "ctm", "cu": "cu", "cuadra": "cuadr", "cuadrado": "cuadr", "cuadrados": "cuadr", "cuadrangular": "cuadrangul", "cuadras": "cuadr", "cuadrilátero": "cuadrilater", "cuadriláteros": "cuadrilater", "cuadrilla": "cuadrill", "cuadro": "cuadr", "cuadros": "cuadr", "cuadruplica": "cuadrupl", "cuadruplicó": "cuadruplic", "cuajar": "cuaj", "cuajarle": "cuaj", "cuajimalpa": "cuajimalp", "cual": "cual", "cuál": "cual", "cuales": "cual", "cuáles": "cual", "cualesquier": "cualesqui", "cualidad": "cualid", "cualidades": "cualidad", "cualquier": "cualqui", "cualquiera": "cualqu", "cuando": "cuand", "cuándo": "cuand", "cuánta": "cuant", "cuantas": "cuant", "cuántas": "cuant", "cuantifica": "cuantif", "cuantiosamente": "cuanti", "cuantiosos": "cuantios", "cuanto": "cuant", "cuánto": "cuant", "cuantos": "cuant", "cuántos": "cuant", "cuarenta": "cuarent", "cuarta": "cuart", "cuartel": "cuartel", "cuarteles": "cuartel", "cuarteto": "cuartet", "cuartillas": "cuartill", "cuartitos": "cuartit", "cuarto": "cuart", "cuartos": "cuart", "cuarzo": "cuarz", "cuatacho": "cuatach", "cuate": "cuat", "cuatro": "cuatr", "cuauhtémoc": "cuauhtemoc", "cuautitlán": "cuautitlan", "cuba": "cub", "cubana": "cuban", "cubanas": "cuban", "cubano": "cuban", "cubanos": "cuban", "cubas": "cub", "cubero": "cuber", "cúbicos": "cubic", "cubículos": "cubicul", "cubierta": "cubiert", "cubiertas": "cubiert", "cubierto": "cubiert", "cubiertos": "cubiert", "cubra": "cubr", "cubran": "cubr", "cubre": "cubr", "cubren": "cubr", "cubría": "cubr", "cubrían": "cubr", "cubriendo": "cubr", "cubriéndonos": "cubr", "cubrimos": "cubr", "cubrió": "cubr", "cubrir": "cubr", "cubrirá": "cubr", "cubrirán": "cubr", "cuca": "cuc", "cuchara": "cuch", "cucharaditas": "cucharadit", "cucharas": "cuch", "cuchillada": "cuchill", "cuchillería": "cuchill", "cuchillo": "cuchill", "cuchillos": "cuchill", "cuco": "cuc", "cuelgan": "cuelg", "cuelgue": "cuelg", "cuellar": "cuell", "cuéllar": "cuell", "cuello": "cuell", "cuenca": "cuenc", "cuenta": "cuent", "cuentan": "cuent", "cuentas": "cuent", "cuente": "cuent", "cuenten": "cuent", "cuento": "cuent", "cuentos": "cuent", "cuerda": "cuerd", "cuerdas": "cuerd", "cuerdo": "cuerd", "cuernavaca": "cuernavac", "cuerno": "cuern", "cuernos": "cuern", "cuero": "cuer", "cuerpo": "cuerp", "cuerpos": "cuerp", "cuervo": "cuerv", "cuesta": "cuest", "cuestan": "cuest", "cuestas": "cuest", "cuestion": "cuestion", "cuestión": "cuestion", "cuestiona": "cuestion", "cuestionada": "cuestion", "cuestionado": "cuestion", "cuestionados": "cuestion", "cuestionamiento": "cuestion", "cuestionamientos": "cuestion", "cuestionan": "cuestion", "cuestiones": "cuestion", "cuestionó": "cuestion", "cueva": "cuev", "cuevas": "cuev", "cuicalli": "cuicalli", "cuicuilco": "cuicuilc", "cuida": "cuid", "cuidaba": "cuid", "cuidad": "cuid", "cuidadas": "cuid", "cuidado": "cuid", "cuidador": "cuidador", "cuidados": "cuid", "cuidadosa": "cuidad", "cuidadosamente": "cuidad", "cuidadoso": "cuidad", "cuidan": "cuid", "cuidando": "cuid", "cuidar": "cuid", "cuidará": "cuid", "cuidarlo": "cuid", "cuide": "cuid", "cuiden": "cuid", "cuitlahuac": "cuitlahuac", "culebra": "culebr", "culiacan": "culiac", "culiacán": "culiacan", "culinarias": "culinari", "culminada": "culmin", "culminado": "culmin", "culminante": "culmin", "culminará": "culmin", "culminarán": "culmin", "culminó": "culmin", "culpa": "culp", "culpabilidad": "culpabil", "culpable": "culpabl", "culpables": "culpabl", "culpar": "culp", "culpó": "culp", "culposos": "culpos", "culta": "cult", "cultiva": "cultiv", "cultivable": "cultiv", "cultivadas": "cultiv", "cultivadores": "cultiv", "cultivan": "cultiv", "cultivar": "cultiv", "cultivo": "cultiv", "cultivos": "cultiv", "culto": "cult", "cultos": "cult", "cultura": "cultur", "cultural": "cultural", "culturales": "cultural", "culturas": "cultur", "culturización": "culturiz", "cumaná": "cuman", "cumbre": "cumbr", "cumbres": "cumbr", "cumpla": "cumpl", "cumplan": "cumpl", "cumple": "cumpl", "cumpleaños": "cumpleañ", "cumplen": "cumpl", "cumplí": "cumpl", "cumplía": "cumpl", "cumplían": "cumpl", "cumplidas": "cumpl", "cumplido": "cumpl", "cumplidoras": "cumplidor", "cumplidos": "cumpl", "cumpliendo": "cumpl", "cumpliéramos": "cumpl", "cumplieron": "cumpl", "cumplimiento": "cumplimient", "cumplimientos": "cumplimient", "cumplimos": "cumpl", "cumplió": "cumpl", "cumplir": "cumpl", "cumplirá": "cumpl", "cumplirles": "cumpl", "cumplirse": "cumpl", "cumplírsele": "cumplirsel", "cuñada": "cuñ", "cuñado": "cuñ", "cuñados": "cuñ", "cunda": "cund", "cundió": "cund", "cuño": "cuñ", "cuota": "cuot", "cuotas": "cuot", "cupertino": "cupertin", "cupo": "cup", "cupón": "cupon", "cúpula": "cupul", "cúpulas": "cupul", "cura": "cur", "curaban": "cur", "curandero": "curander", "curar": "cur", "cure": "cur", "curia": "curi", "curiosamente": "curi", "curiosas": "curi", "curiosidad": "curi", "curiosidades": "curi", "curioso": "curios", "curriculum": "curriculum", "currículum": "curriculum", "curro": "curr", "cursada": "curs", "cursando": "curs", "cursaron": "curs", "curso": "curs", "cursos": "curs", "curva": "curv", "curvatura": "curvatur", "cuspinera": "cuspiner", "custodia": "custodi", "custodiado": "custodi", "custodian": "custodi", "custodiar": "custodi", "customline": "customlin", "cutáneas": "cutan", "cutzamala": "cutzamal", "cuya": "cuy", "cuyas": "cuy", "cuyo": "cuy", "cuyos": "cuy", "cydsa": "cydsa", "cyrus": "cyrus", "d": "d", "da": "da", "daba": "dab", "daban": "dab", "dacarett": "dacarett", "dad": "dad", "dada": "dad", "dadas": "dad", "dado": "dad", "dados": "dad", "dagoberto": "dagobert", "dahn": "dahn", "daihim": "daihim", "daily": "daily", "daimatsu": "daimatsu", "daimler": "daiml", "dalia": "dali", "dallas": "dall", "daltonismo": "dalton", "dama": "dam", "damas": "dam", "dame": "dam", "damnificada": "damnific", "damnificados": "damnific", "damos": "dam", "dan": "dan", "daña": "dañ", "dañaban": "dañ", "dañada": "dañ", "dañadas": "dañ", "dañado": "dañ", "dañados": "dañ", "dañan": "dañ", "dañar": "dañ", "dañará": "dañ", "dañaran": "dañ", "dañarse": "dañ", "dando": "dand", "dándole": "dandol", "dándonos": "dandon", "daniel": "daniel", "daniela": "daniel", "dañino": "dañin", "dañinos": "dañin", "danny": "danny", "daño": "dañ", "daños": "dañ", "dante": "dant", "danza": "danz", "danzar": "danz", "danzas": "danz", "dar": "dar", "dará": "dar", "darán": "daran", "darás": "daras", "darci": "darci", "daré": "dar", "daría": "dar", "darían": "dar", "darío": "dari", "darla": "darl", "darle": "darl", "darles": "darl", "darnos": "darn", "darse": "dars", "dárselo": "darsel", "dárselos": "darsel", "das": "das", "dasa": "das", "dasd": "dasd", "data": "dat", "date": "dat", "dato": "dat", "datos": "dat", "datsun": "datsun", "datum": "datum", "davalillo": "davalill", "dávalos": "daval", "dave": "dav", "david": "dav", "dávila": "davil", "davis": "davis", "day": "day", "days": "days", "daza": "daz", "ddf": "ddf", "de": "de", "dé": "de", "dean": "dean", "deba": "deb", "debajo": "debaj", "deban": "deb", "debate": "debat", "debatido": "debat", "debatir": "debat", "debatirán": "debat", "debe": "deb", "debemos": "deb", "deben": "deb", "deber": "deb", "deberá": "deb", "deberán": "deb", "deberás": "deb", "deberes": "deber", "debería": "deb", "deberíamos": "deb", "deberían": "deb", "debes": "deb", "debí": "deb", "debía": "deb", "debíamos": "deb", "debían": "deb", "debidamente": "debid", "debido": "deb", "debiera": "deb", "debieran": "deb", "debieron": "deb", "débil": "debil", "debiles": "debil", "débiles": "debil", "debilidad": "debil", "debilidades": "debil", "debilita": "debilit", "debilitado": "debilit", "debilitar": "debilit", "debilitarnos": "debilit", "debilite": "debilit", "debió": "deb", "débito": "debit", "debo": "deb", "debut": "debut", "debutado": "debut", "debutante": "debut", "debutarán": "debut", "debutó": "debut", "década": "dec", "décadas": "dec", "decadencia": "decadent", "decadente": "decadent", "decaer": "dec", "decaería": "dec", "decaído": "decaid", "decaiga": "decaig", "decanini": "decanini", "decano": "decan", "decapitada": "decapit", "decapitados": "decapit", "decapitó": "decapit", "decayó": "decay", "decenas": "decen", "decenso": "decens", "decente": "decent", "decepción": "decepcion", "decepciona": "decepcion", "decepcionada": "decepcion", "decepcionadas": "decepcion", "decepcionado": "decepcion", "decía": "dec", "decíamos": "dec", "decían": "dec", "decida": "dec", "decidan": "decid", "decide": "decid", "deciden": "decid", "decidí": "decid", "decidida": "decid", "decididamente": "decidid", "decidido": "decid", "decidieron": "decid", "decidimos": "decid", "decidió": "decid", "decidir": "decid", "decidirá": "decid", "decidirán": "decid", "decidiría": "decid", "decidirse": "decid", "decido": "dec", "décima": "decim", "décimas": "decim", "décimo": "decim", "decimos": "dec", "decir": "dec", "decirle": "dec", "decirles": "dec", "decirlo": "dec", "decirme": "dec", "decirnos": "dec", "decirse": "dec", "decírselo": "dec", "decision": "decision", "decisión": "decision", "decisiones": "decision", "decisioón": "decisioon", "decisiva": "decis", "decisivo": "decis", "decisivos": "decis", "declamaba": "declam", "declara": "decl", "declaraban": "declar", "declaración": "declar", "declaraciones": "declar", "declarada": "declar", "declaradas": "declar", "declarado": "declar", "declarante": "declar", "declarar": "declar", "declararon": "declar", "declararse": "declar", "declaratoria": "declaratori", "declare": "declar", "declaren": "declar", "declaró": "declar", "declinación": "declin", "declinar": "declin", "declinó": "declin", "decomisadas": "decomis", "decomisados": "decomis", "decomisan": "decomis", "decomisaron": "decomis", "decomisó": "decomis", "decoración": "decor", "decorado": "decor", "decorados": "decor", "decorar": "decor", "decorativo": "decor", "decrecimiento": "decrec", "decremento": "decrement", "decrescenzo": "decrescenz", "decretado": "decret", "decretan": "decret", "decretaron": "decret", "decretarse": "decret", "decreto": "decret", "decretó": "decret", "decretos": "decret", "dedazo": "dedaz", "dedazos": "dedaz", "dedeó": "dede", "dedica": "dedic", "dedicación": "dedic", "dedicada": "dedic", "dedicadas": "dedic", "dedicado": "dedic", "dedicados": "dedic", "dedicamos": "dedic", "dedican": "dedic", "dedicando": "dedic", "dedicar": "dedic", "dedicará": "dedic", "dedicaran": "dedic", "dedicaré": "dedic", "dedicarme": "dedic", "dedicarnos": "dedic", "dedicaron": "dedic", "dedicarse": "dedic", "dedicarte": "dedicart", "dedico": "dedic", "dedicó": "dedic", "dedillo": "dedill", "dedique": "dediqu", "dediqué": "dediqu", "dedo": "ded", "dedos": "ded", "deducibles": "deduc", "deduje": "deduj", "dedúzcale": "deduzcal", "deduzco": "deduzc", "dee": "dee", "defecto": "defect", "defectos": "defect", "defender": "defend", "defenderá": "defend", "defenderán": "defend", "defenderse": "defend", "defendía": "defend", "defendida": "defend", "defendido": "defend", "defendiendo": "defend", "defendió": "defend", "defenestradas": "defenestr", "defeños": "defeñ", "defensa": "defens", "defensas": "defens", "defensiva": "defens", "defensivas": "defens", "defensivo": "defens", "defensor": "defensor", "defensora": "defensor", "defensores": "defensor", "defensorías": "defensor", "deferencia": "deferent", "deficiencia": "deficient", "deficiencias": "deficient", "deficiente": "deficient", "deficientes": "deficient", "deficit": "deficit", "déficit": "deficit", "defienda": "defiend", "defiende": "defiend", "defienden": "defiend", "defina": "defin", "define": "defin", "definen": "defin", "definía": "defin", "definición": "definicion", "definiciones": "definicion", "definida": "defin", "definidas": "defin", "definido": "defin", "definidos": "defin", "definiendo": "defin", "definió": "defin", "definir": "defin", "definirá": "defin", "definirán": "defin", "definiría": "defin", "definirse": "defin", "definitiva": "definit", "definitivamente": "definit", "definitivas": "definit", "definitivo": "definit", "definitivos": "definit", "deforma": "deform", "deformaciones": "deform", "defraudador": "defraud", "defraudadores": "defraud", "defraudados": "defraud", "defraudando": "defraud", "defraudar": "defraud", "defraudaré": "defraud", "defraudarlos": "defraud", "degollado": "degoll", "degradación": "degrad", "degradado": "degrad", "degradando": "degrad", "degüello": "degüell", "dehesa": "dehes", "deidad": "deid", "deidades": "deidad", "deificaron": "deific", "déis": "deis", "deja": "dej", "dejaba": "dej", "dejaban": "dej", "dejada": "dej", "dejadas": "dej", "dejado": "dej", "dejados": "dej", "déjame": "dejam", "dejamos": "dej", "dejan": "dej", "dejando": "dej", "dejándolas": "dej", "dejar": "dej", "dejara": "dej", "dejará": "dej", "dejaran": "dej", "dejarán": "dej", "dejaría": "dej", "dejarla": "dej", "dejarlo": "dej", "dejarlos": "dej", "dejarme": "dej", "dejaron": "dej", "dejarse": "dej", "deje": "dej", "déjeme": "dejem", "dejemos": "dej", "dejen": "dej", "dejó": "dej", "del": "del", "delano": "delan", "delante": "delant", "delantera": "delanter", "delanteras": "delanter", "delantero": "delanter", "delanteros": "delanter", "delatan": "delat", "delató": "delat", "delaware": "delawar", "dele": "del", "déle": "del", "delega": "deleg", "delegación": "deleg", "delegaciones": "deleg", "delegada": "deleg", "delegado": "deleg", "delegados": "deleg", "deleitan": "deleit", "deleitar": "deleit", "deleite": "deleit", "delfines": "delfin", "delgada": "delg", "delgado": "delg", "delgados": "delg", "delia": "deli", "deliberaciones": "deliber", "deliberada": "deliber", "deliberadamente": "deliber", "deliberado": "deliber", "delicada": "delic", "delicadas": "delic", "delicado": "delic", "delicias": "delici", "delictivos": "delict", "delimitada": "delimit", "delimitar": "delimit", "delimitó": "delimit", "delincuencia": "delincuent", "delincuente": "delincuent", "delincuentes": "delincuent", "delinea": "deline", "delinquen": "delinqu", "delinquir": "delinqu", "deliquio": "deliqui", "delirante": "delir", "delirio": "deliri", "delito": "delit", "delitos": "delit", "deliverpool": "deliverpool", "dell": "dell", "delon": "delon", "delors": "delors", "delsur": "delsur", "delta": "delt", "demagogia": "demagogi", "demagógicamente": "demagog", "demagógico": "demagog", "demagógicos": "demagog", "demanda": "demand", "demandaba": "demand", "demandado": "demand", "demandan": "demand", "demandando": "demand", "demandante": "demand", "demandantes": "demand", "demandar": "demand", "demandará": "demand", "demandaron": "demand", "demandas": "demand", "demandé": "demand", "demandó": "demand", "demarcación": "demarc", "demás": "demas", "demasía": "demas", "demasiada": "demasi", "demasiadas": "demasi", "demasiado": "demasi", "demasiados": "demasi", "déme": "dem", "demencia": "demenci", "demencial": "demencial", "deming": "deming", "democracia": "democraci", "democracias": "democraci", "demócrata": "democrat", "demócratas": "democrat", "democrática": "democrat", "democráticamente": "democrat", "democráticas": "democrat", "democrático": "democrat", "democráticos": "democrat", "democratización": "democratiz", "democratizador": "democratiz", "democratizante": "democratiz", "democratizar": "democratiz", "democratizarla": "democratiz", "democristiano": "democristian", "demográfica": "demograf", "demográficas": "demograf", "demoníaca": "demoniac", "demonio": "demoni", "demonios": "demoni", "demora": "demor", "demorados": "demor", "demorar": "demor", "demostración": "demostr", "demostraciones": "demostr", "demostrado": "demostr", "demostrando": "demostr", "demostrar": "demostr", "demostrará": "demostr", "demostrarle": "demostr", "demostrarnos": "demostr", "demostraron": "demostr", "demostremos": "demostr", "demostró": "demostr", "demuestra": "demuestr", "demuestran": "demuestr", "demuestre": "demuestr", "demuestren": "demuestr", "den": "den", "denny": "denny", "denomina": "denomin", "denominada": "denomin", "denominadas": "denomin", "denominado": "denomin", "denominados": "denomin", "denostada": "denost", "denotan": "denot", "denotar": "denot", "denotaron": "denot", "denotó": "denot", "densa": "dens", "dense": "dens", "densidad": "densid", "densos": "dens", "dental": "dental", "dentales": "dental", "dentelladas": "dentell", "dentista": "dentist", "dentro": "dentr", "denuncia": "denunci", "denunciada": "denunci", "denunciado": "denunci", "denunciados": "denunci", "denuncian": "denunci", "denunciante": "denunci", "denunciantes": "denunci", "denunciar": "denunci", "denunciará": "denunci", "denunciarán": "denunci", "denunciaron": "denunci", "denuncias": "denunci", "denuncie": "denunci", "denuncié": "denunci", "denúncielo": "denunciel", "denunció": "denunc", "denzel": "denzel", "deparado": "depar", "deparará": "depar", "departamentales": "departamental", "departamento": "departament", "departamentos": "departament", "departió": "depart", "depende": "depend", "dependen": "depend", "dependencia": "dependent", "dependencias": "dependent", "depender": "depend", "dependerá": "depend", "dependes": "depend", "dependía": "depend", "dependiendo": "depend", "dependiente": "dependient", "dependientes": "dependient", "deplazamiento": "deplaz", "deportaciones": "deport", "deportado": "deport", "deporte": "deport", "deportes": "deport", "deportista": "deport", "deportistas": "deport", "deportiva": "deport", "deportivas": "deport", "deportivo": "deport", "deportivos": "deport", "deposita": "deposit", "depositada": "deposit", "depositado": "deposit", "depositados": "deposit", "depositan": "deposit", "depositantes": "deposit", "depositar": "deposit", "depositario": "depositari", "depositarse": "deposit", "deposite": "deposit", "deposítele": "depositel", "depósito": "deposit", "depósitos": "deposit", "depredadora": "depred", "depredadores": "depred", "depresión": "depresion", "depresiones": "depresion", "deprimente": "depriment", "deprimido": "deprim", "deprimidos": "deprim", "depuracion": "depuracion", "depuración": "depur", "depuradísima": "depuradisim", "depurado": "depur", "depurar": "depur", "der": "der", "derecha": "derech", "derechas": "derech", "derechazo": "derechaz", "derechazos": "derechaz", "derecho": "derech", "derechohabientes": "derechohabient", "derechos": "derech", "deregios": "deregi", "derek": "derek", "deri": "deri", "deriva": "deriv", "derivación": "deriv", "derivadas": "deriv", "derivado": "deriv", "derivados": "deriv", "derivan": "deriv", "derivar": "deriv", "derivará": "deriv", "derivaron": "deriv", "derivó": "deriv", "derma": "derm", "dermatitis": "dermatitis", "dermatología": "dermatolog", "dermatológica": "dermatolog", "derrama": "derram", "derramado": "derram", "derramamiento": "derram", "derraman": "derram", "derramar": "derram", "derrame": "derram", "derrames": "derram", "derrapante": "derrap", "derrapar": "derrap", "derrape": "derrap", "derredor": "derredor", "derretirse": "derret", "derriba": "derrib", "derribado": "derrib", "derribar": "derrib", "derribó": "derrib", "derrochando": "derroch", "derroche": "derroch", "derrota": "derrot", "derrotado": "derrot", "derrotados": "derrot", "derrotando": "derrot", "derrotar": "derrot", "derrotarlo": "derrot", "derrotaron": "derrot", "derrotas": "derrot", "derrotero": "derroter", "derrotó": "derrot", "derrumban": "derrumb", "derrumbe": "derrumb", "derrumbes": "derrumb", "desaceleración": "desaceler", "desaciertos": "desaciert", "desacredita": "desacredit", "desacreditados": "desacredit", "desactivar": "desactiv", "desactivaron": "desactiv", "desacuerdo": "desacuerd", "desacuerdos": "desacuerd", "desafiar": "desafi", "desafíe": "desafi", "desafinada": "desafin", "desafío": "desafi", "desafió": "desaf", "desafíos": "desafi", "desaforados": "desafor", "desafortunadamente": "desafortun", "desafortunado": "desafortun", "desafortunados": "desafortun", "desagradable": "desagrad", "desagradables": "desagrad", "desagüe": "desagü", "desahogar": "desahog", "desahogo": "desahog", "desahogos": "desahog", "desahucio": "desahuci", "desairado": "desair", "desaire": "desair", "desalentado": "desalent", "desalentadores": "desalent", "desalentarán": "desalent", "desalentó": "desalent", "desaliento": "desalient", "desalientos": "desalient", "desalojados": "desaloj", "desalojar": "desaloj", "desalojará": "desaloj", "desalojaran": "desaloj", "desalojaron": "desaloj", "desalojo": "desaloj", "desalojó": "desaloj", "desalojos": "desaloj", "desamor": "desamor", "desamparados": "desampar", "desangraba": "desangr", "desangrante": "desangr", "desanima": "desanim", "desanimada": "desanim", "desánimo": "desanim", "desaparecen": "desaparec", "desaparecer": "desaparec", "desaparecerá": "desaparec", "desaparecerán": "desaparec", "desaparecidas": "desaparec", "desaparecido": "desaparec", "desaparecidos": "desaparec", "desaparecieron": "desaparec", "desapareció": "desaparec", "desaparezca": "desaparezc", "desaparezcan": "desaparezc", "desaparición": "desaparicion", "desapariciones": "desaparicion", "desapercibida": "desapercib", "desaprobación": "desaprob", "desaprovechando": "desaprovech", "desaprovechar": "desaprovech", "desaprovechó": "desaprovech", "desaprueba": "desaprueb", "desarme": "des", "desarrolla": "desarroll", "desarrollada": "desarroll", "desarrolladas": "desarroll", "desarrollado": "desarroll", "desarrolladores": "desarroll", "desarrollados": "desarroll", "desarrollamos": "desarroll", "desarrollan": "desarroll", "desarrollando": "desarroll", "desarrollar": "desarroll", "desarrollará": "desarroll", "desarrollaría": "desarroll", "desarrollarnos": "desarroll", "desarrollaron": "desarroll", "desarrollarse": "desarroll", "desarrolle": "desarroll", "desarrollen": "desarroll", "desarrollo": "desarroll", "desarrolló": "desarroll", "desastres": "desastr", "desata": "desat", "desatado": "desat", "desatan": "desat", "desatar": "desat", "desatención": "desatencion", "desatinos": "desatin", "desató": "desat", "desayunar": "desayun", "desayuno": "desayun", "desayunos": "desayun", "desazolvar": "desazolv", "desbalancean": "desbalanc", "desbancarlo": "desbanc", "desbaratado": "desbarat", "desbordado": "desbord", "desbordados": "desbord", "desbordamiento": "desbord", "desbordando": "desbord", "desbordará": "desbord", "desbordes": "desbord", "desbordó": "desbord", "desburocratizar": "desburocratiz", "descabellada": "descabell", "descabelladas": "descabell", "descabello": "descabell", "descalabro": "descalabr", "descalificada": "descalific", "descalificado": "descalific", "descalzos": "descalz", "descansaban": "descans", "descansan": "descans", "descansando": "descans", "descansar": "descans", "descansarán": "descans", "descanso": "descans", "descansó": "descans", "descansos": "descans", "descapitaliza": "descapitaliz", "descarga": "descarg", "descargan": "descarg", "descargar": "descarg", "descargas": "descarg", "descargo": "descarg", "descargue": "descarg", "descarnado": "descarn", "descarrilamiento": "descarril", "descarriló": "descarril", "descarta": "descart", "descartaba": "descart", "descartado": "descart", "descartan": "descart", "descartando": "descart", "descartaron": "descart", "descartó": "descart", "descastados": "descast", "descendencia": "descendent", "descender": "descend", "descenderá": "descend", "descendientes": "descendient", "descendió": "descend", "descenso": "descens", "descensos": "descens", "descentralización": "descentraliz", "descentralizarse": "descentraliz", "desciende": "desciend", "descienden": "desciend", "descomponía": "descompon", "descomposición": "descomposicion", "descomposturas": "descompostur", "descompuesto": "descompuest", "descomunal": "descomunal", "desconcertado": "desconcert", "desconcertados": "desconcert", "desconcertante": "desconcert", "desconcierta": "desconciert", "desconcierto": "desconciert", "desconfianza": "desconfi", "desconfiara": "desconfi", "descongelación": "descongel", "descongelar": "descongel", "descongestionar": "descongestion", "desconoce": "desconoc", "desconocen": "desconoc", "desconocer": "desconoc", "desconocerlos": "desconoc", "desconocía": "desconoc", "desconocida": "desconoc", "desconocidas": "desconoc", "desconocido": "desconoc", "desconocidos": "desconoc", "desconocieron": "desconoc", "desconocimiento": "desconoc", "desconoció": "desconoc", "desconozco": "desconozc", "descontando": "descont", "descontar": "descont", "descontentas": "descontent", "descontento": "descontent", "descontentos": "descontent", "descontrol": "descontrol", "descrédito": "descredit", "descreído": "descreid", "describe": "describ", "describen": "describ", "describió": "describ", "describir": "describ", "descripción": "descripcion", "descriptores": "descriptor", "descrita": "descrit", "descrito": "descrit", "descritos": "descrit", "descubierta": "descubiert", "descubiertas": "descubiert", "descubierto": "descubiert", "descubiertos": "descubiert", "descubran": "descubr", "descubre": "descubr", "descubridor": "descubridor", "descubriendo": "descubr", "descubrieron": "descubr", "descubrimiento": "descubr", "descubrimientos": "descubr", "descubrió": "descubr", "descubrir": "descubr", "descuento": "descuent", "descuentos": "descuent", "descuidado": "descuid", "descuidan": "descuid", "descuide": "descuid", "descuido": "descu", "descuidos": "descu", "desde": "desd", "desdecir": "desdec", "desdeñar": "desdeñ", "desdeño": "desdeñ", "desdice": "desdic", "desdichada": "desdich", "desdichado": "desdich", "dése": "des", "desea": "dese", "deseaban": "des", "deseable": "deseabl", "deseada": "des", "deseamos": "des", "desean": "des", "deseando": "des", "deseándolo": "des", "desearle": "des", "desearon": "des", "deseas": "des", "desecha": "desech", "desechaban": "desech", "desechar": "desech", "desecharon": "desech", "desecho": "desech", "desechó": "desech", "desechos": "desech", "desee": "dese", "deseen": "des", "desembarcar": "desembarc", "desembarque": "desembarqu", "desembocar": "desemboc", "desempaña": "desempañ", "desempate": "desempat", "desempeña": "desempeñ", "desempeñado": "desempeñ", "desempeñan": "desempeñ", "desempeñando": "desempeñ", "desempeñar": "desempeñ", "desempeñarse": "desempeñ", "desempeño": "desempeñ", "desempleado": "desempl", "desempleados": "desempl", "desempleo": "desemple", "desencajado": "desencaj", "desencantados": "desencant", "desencanto": "desencant", "desenfreno": "desenfren", "desengaña": "desengañ", "desenmascaran": "desenmasc", "desentendido": "desentend", "desenterrados": "desenterr", "desentonado": "desenton", "desentonados": "desenton", "desenvolverse": "desenvolv", "desenvolvimiento": "desenvolv", "desenvuelve": "desenvuelv", "deseo": "dese", "deseos": "dese", "desequilibrada": "desequilibr", "desequilibrado": "desequilibr", "desequilibrio": "desequilibri", "desequilibrios": "desequilibri", "deserciones": "desercion", "desertar": "desert", "desesperación": "desesper", "desesperada": "desesper", "desesperadamente": "desesper", "desesperados": "desesper", "desesperan": "desesper", "desestabilizar": "desestabiliz", "desestímulos": "desestimul", "desfasan": "desfas", "desfavorable": "desfavor", "desfiguró": "desfigur", "desfiguros": "desfigur", "desfilan": "desfil", "desfile": "desfil", "desfiles": "desfil", "desfondaría": "desfond", "desgañitan": "desgañit", "desgarra": "desgarr", "desgarradoramente": "desgarrador", "desgarradoras": "desgarr", "desgarre": "desgarr", "desgarros": "desgarr", "desgastante": "desgast", "desgastar": "desgast", "desgaste": "desg", "desglosado": "desgl", "desglosados": "desgl", "desgracia": "desgraci", "desgraciadamente": "desgraci", "desgracias": "desgraci", "deshacer": "deshac", "deshacerse": "deshac", "desharía": "desh", "deshilachar": "deshilach", "deshilvanando": "deshilvan", "deshizo": "deshiz", "deshonestidad": "deshonest", "deshonesto": "deshonest", "deshumanizó": "deshumaniz", "desierto": "desiert", "desiertos": "desiert", "designación": "design", "designaciones": "design", "designada": "design", "designadas": "design", "designado": "design", "designador": "design", "designados": "design", "designar": "design", "designe": "design", "designio": "designi", "designó": "design", "desigualdad": "desiguald", "desigualdades": "desigualdad", "desincorporación": "desincorpor", "desincorporó": "desincorpor", "desindigenización": "desindigeniz", "desinformación": "desinform", "desinformados": "desinform", "desintegración": "desintegr", "desintegrar": "desintegr", "desintegrará": "desintegr", "desintegrarse": "desintegr", "desinterés": "desinteres", "desinterviniendo": "desintervin", "desiste": "des", "desistieran": "desist", "desistieron": "desist", "desistió": "desist", "desistir": "desist", "desistirse": "desist", "deslaves": "deslav", "desleal": "desleal", "desleales": "desleal", "deslices": "deslic", "desligarme": "deslig", "deslindar": "deslind", "deslindarse": "deslind", "deslinden": "deslind", "deslizando": "desliz", "deslizarse": "desliz", "deslizó": "desliz", "deslucido": "desluc", "deslumbra": "deslumbr", "desmantelamiento": "desmantel", "desmarque": "desmarqu", "desmembrada": "desmembr", "desmembró": "desmembr", "desmerece": "desmerec", "desmintió": "desmint", "desmitificado": "desmitific", "desmontadas": "desmont", "desmontarlo": "desmont", "desmoralizar": "desmoraliz", "desmoralizarnos": "desmoraliz", "desmoronando": "desmoron", "desmotivada": "desmotiv", "desnaquización": "desnaquiz", "desnivel": "desnivel", "desnudarla": "desnud", "desnudaron": "desnud", "desnudos": "desnud", "desnutrición": "desnutricion", "desobedece": "desobedec", "desocupación": "desocup", "desocupar": "desocup", "desolación": "desol", "desolador": "desol", "desorden": "desord", "desordenado": "desorden", "desórdenes": "desorden", "desorganizados": "desorganiz", "desorienta": "desorient", "desorientación": "desorient", "desorientada": "desorient", "desorientados": "desorient", "despachar": "despach", "despacho": "despach", "despacio": "despaci", "despacito": "despacit", "desparramaron": "desparram", "despavorido": "despavor", "despedazadas": "despedaz", "despedía": "desped", "despedida": "desped", "despedidas": "desped", "despedido": "desped", "despedidos": "desped", "despedir": "desped", "despedirlas": "desped", "despedirlos": "desped", "despedirse": "desped", "despegara": "despeg", "despegue": "despeg", "despeinada": "despein", "despeinarse": "despein", "despejando": "despej", "despejar": "despej", "despensa": "despens", "despensas": "despens", "desperdiciar": "desperdici", "desperdicio": "desperdici", "despertado": "despert", "despertando": "despert", "despertar": "despert", "despertaron": "despert", "despertó": "despert", "despidan": "despid", "despide": "despid", "despidiendo": "despid", "despidió": "despid", "despido": "desp", "despidos": "desp", "despierta": "despiert", "despiertan": "despiert", "despierte": "despiert", "desplace": "desplac", "desplazaba": "desplaz", "desplazado": "desplaz", "desplazados": "desplaz", "desplazamiento": "desplaz", "desplazamientos": "desplaz", "desplazan": "desplaz", "desplazando": "desplaz", "desplazándolo": "desplaz", "desplazar": "desplaz", "desplazarla": "desplaz", "desplegado": "despleg", "desplegará": "despleg", "desplegarán": "despleg", "despliegue": "desplieg", "desplieguen": "desplieg", "despoblado": "despobl", "despojaba": "despoj", "despojado": "despoj", "despojando": "despoj", "despojar": "despoj", "despojarlo": "despoj", "despojaron": "despoj", "despojo": "despoj", "despojó": "despoj", "despotismo": "despot", "despreciable": "despreci", "despreciar": "despreci", "despreciarse": "despreci", "desprende": "desprend", "desprenderse": "desprend", "desprendía": "desprend", "desprendió": "desprend", "desprestigiando": "desprestigi", "desprestigio": "desprestigi", "desproporcionadas": "desproporcion", "desproporcionado": "desproporcion", "despropósito": "desproposit", "desprotegerán": "desproteg", "desprovisto": "desprovist", "después": "despues", "desquita": "desquit", "desregulación": "desregul", "desregulado": "desregul", "desregulando": "desregul", "desrregulación": "desrregul", "destaca": "destac", "destacaba": "destac", "destacada": "destac", "destacadas": "destac", "destacado": "destac", "destacados": "destac", "destacamentados": "destacament", "destacan": "destac", "destacando": "destac", "destacar": "destac", "destacaron": "destac", "destacó": "destac", "destanteados": "destant", "destapan": "destap", "destaparon": "destap", "destape": "destap", "destapes": "destap", "destaque": "destaqu", "destemplada": "destempl", "destemplado": "destempl", "desterrarlas": "desterr", "destinaban": "destin", "destinada": "destin", "destinadas": "destin", "destinado": "destin", "destinados": "destin", "destinan": "destin", "destinar": "destin", "destinarán": "destin", "destinarían": "destin", "destinarlos": "destin", "destinaron": "destin", "destinatario": "destinatari", "destinen": "destin", "destino": "destin", "destinó": "destin", "destinos": "destin", "destitución": "destitu", "destreza": "destrez", "destrozado": "destroz", "destrozados": "destroz", "destrucción": "destruccion", "destructivo": "destruct", "destruida": "destru", "destruir": "destru", "destruirá": "destru", "destruirlo": "destru", "destruye": "destru", "destruyeron": "destru", "destruyó": "destru", "desulfuración": "desulfur", "desvanecen": "desvanec", "desvanecieran": "desvanec", "desveladas": "desvel", "desvelos": "desvel", "desventaja": "desventaj", "desventajosa": "desventaj", "desventajosas": "desventaj", "desviaciones": "desviacion", "desviadas": "desvi", "desviado": "desvi", "desviándose": "desvi", "desviar": "desvi", "desviaremos": "desvi", "desviaría": "desvi", "desviarse": "desvi", "desvíe": "desvi", "desvinculaba": "desvincul", "desvincular": "desvincul", "desvió": "desv", "desvirtúa": "desvirtu", "desvirtuación": "desvirtu", "desvirtuar": "desvirtu", "detalla": "detall", "detalladamente": "detall", "detalladas": "detall", "detallado": "detall", "detalle": "detall", "detalles": "detall", "detallista": "detall", "detallistas": "detall", "detallitos": "detallit", "detalló": "detall", "detecciones": "deteccion", "detecnología": "detecnolog", "detecta": "detect", "detectaba": "detect", "detectada": "detect", "detectado": "detect", "detectados": "detect", "detectan": "detect", "detectando": "detect", "detectar": "detect", "detectara": "detect", "detectaron": "detect", "detectó": "detect", "detención": "detencion", "detenciones": "detencion", "detendrá": "detendr", "detener": "deten", "detenerlo": "deten", "detenerme": "deten", "detenerse": "deten", "detengan": "deteng", "detenida": "deten", "detenidas": "deten", "detenido": "deten", "detenidos": "deten", "detenta": "detent", "detentando": "detent", "detergente": "detergent", "detergentes": "detergent", "deterioradas": "deterior", "deterioran": "deterior", "deterioro": "deterior", "determina": "determin", "determinación": "determin", "determinaciones": "determin", "determinada": "determin", "determinado": "determin", "determinados": "determin", "determinan": "determin", "determinante": "determin", "determinantemente": "determin", "determinantes": "determin", "determinar": "determin", "determinará": "determin", "determinaran": "determin", "determinaron": "determin", "determinarse": "determin", "determine": "determin", "determinó": "determin", "deterner": "detern", "detestan": "detest", "detiene": "detien", "detienen": "detien", "detonación": "deton", "detrás": "detras", "detuviera": "detuv", "detuvieran": "detuv", "detuvieron": "detuv", "detuvo": "detuv", "deuda": "deud", "deudas": "deud", "deuteronomio": "deuteronomi", "devaluación": "devalu", "devaluado": "devalu", "devalúan": "devalu", "devanándose": "devan", "devant": "devant", "devastada": "devast", "devastador": "devast", "develará": "devel", "development": "development", "devenido": "deven", "devenir": "deven", "devoción": "devocion", "devociones": "devocion", "devolución": "devolu", "devolver": "devolv", "devolvería": "devolv", "devolverle": "devolv", "devolvió": "devolv", "devuelto": "devuelt", "devueltos": "devuelt", "devuelvan": "devuelv", "devuelve": "devuelv", "df": "df", "dgo": "dgo", "dhl": "dhl", "di": "di", "dí": "di", "dia": "dia", "día": "dia", "diabetes": "diabet", "diablo": "diabl", "diablos": "diabl", "diadema": "diadem", "diagnosticamos": "diagnostic", "diagnosticar": "diagnostic", "diagnóstico": "diagnost", "diagnósticos": "diagnost", "diagrama": "diagram", "dialogado": "dialog", "dialogamos": "dialog", "dialogar": "dialog", "dialogaron": "dialog", "diálogo": "dialog", "diálogos": "dialog", "diamante": "diamant", "diámetro": "diametr", "diana": "dian", "diaria": "diari", "diariamente": "diari", "diarias": "diari", "diario": "diari", "diarios": "diari", "días": "dias", "díaz": "diaz", "dibujando": "dibuj", "dibujantes": "dibuj", "dibujo": "dibuj", "dibujó": "dibuj", "dibujos": "dibuj", "dicamex": "dicamex", "diccionario": "diccionari", "dice": "dic", "dicen": "dic", "dices": "dic", "dicha": "dich", "dichas": "dich", "dicho": "dich", "dichos": "dich", "diciembre": "diciembr", "diciendo": "dic", "diciéndome": "dic", "dickens": "dickens", "dicom": "dicom", "dicta": "dict", "dictada": "dict", "dictadas": "dict", "dictado": "dict", "dictador": "dictador", "dictadura": "dictadur", "dictaduras": "dictadur", "dictamen": "dictam", "dictaminaron": "dictamin", "dictaminó": "dictamin", "dictar": "dict", "dictarnos": "dict", "dictaron": "dict", "dictatorial": "dictatorial", "dictó": "dict", "didáctico": "didact", "diego": "dieg", "dientes": "dient", "diera": "dier", "dieran": "dier", "dieron": "dieron", "diesel": "diesel", "diestro": "diestr", "dieta": "diet", "diez": "diez", "díez": "diez", "diezmado": "diezm", "dif": "dif", "difamación": "difam", "difamador": "difam", "difame": "difam", "diferencia": "diferent", "diferenciado": "diferenci", "diferencial": "diferencial", "diferenciales": "diferencial", "diferenciando": "diferenci", "diferenciar": "diferenci", "diferenciarse": "diferenci", "diferencias": "diferent", "diferendos": "diferend", "diferente": "diferent", "diferentes": "diferent", "diferida": "difer", "diferidos": "difer", "dificil": "dificil", "difícil": "dificil", "difíciles": "dificil", "dificilmente": "dificil", "difícilmente": "dificil", "dificultaba": "dificult", "dificultad": "dificult", "dificultades": "dificultad", "dificultado": "dificult", "dificultan": "dificult", "dificultar": "dificult", "dificultó": "dificult", "difieren": "difier", "difunda": "difund", "difunde": "difund", "difunden": "difund", "difundida": "difund", "difundido": "difund", "difundir": "difund", "difundirá": "difund", "difundirlo": "difund", "difunto": "difunt", "difuntos": "difunt", "difusión": "difusion", "diga": "dig", "dígale": "digal", "dígales": "digal", "dígame": "digam", "digamos": "dig", "digan": "dig", "digerir": "diger", "digestión": "digestion", "digestivos": "digest", "digital": "digital", "digitales": "digital", "digitalización": "digitaliz", "dígito": "digit", "digna": "dign", "dignas": "dign", "dignidad": "dignid", "dignifica": "dignif", "dignificar": "dignific", "dignity": "dignity", "digno": "dign", "dignos": "dign", "dignosticar": "dignostic", "digo": "dig", "dihigo": "dihig", "dihlgo": "dihlg", "dije": "dij", "dijera": "dijer", "dijeran": "dijer", "dijeron": "dijeron", "dijes": "dij", "dijiste": "dij", "dijo": "dij", "dilatadas": "dilat", "dilatar": "dilat", "dilatorias": "dilatori", "díle": "dil", "dilema": "dilem", "diligencia": "diligent", "diligencias": "diligent", "diligente": "diligent", "dillo": "dill", "dilucidar": "dilucid", "diluido": "dilu", "diluir": "dilu", "dimas": "dim", "dimensión": "dimension", "dimensiones": "dimension", "dimino": "dimin", "diminutas": "diminut", "diminutos": "diminut", "dimisión": "dimision", "dimitir": "dimit", "dimitri": "dimitri", "dimos": "dim", "dina": "din", "dinamarca": "dinamarc", "dinámica": "dinam", "dinámicas": "dinam", "dinámico": "dinam", "dinámicos": "dinam", "dinamismo": "dinam", "dinamiteros": "dinamiter", "dinastía": "dinast", "dinero": "diner", "dineros": "diner", "dinorah": "dinorah", "dinosaurios": "dinosauri", "dio": "dio", "diócesis": "diocesis", "dior": "dior", "diorita": "diorit", "dios": "dios", "diosa": "dios", "dioses": "dios", "dióxido": "diox", "diplomacia": "diplomaci", "diplomado": "diplom", "diplomados": "diplom", "diplomática": "diplomat", "diplomáticas": "diplomat", "diplomático": "diplomat", "diplomáticos": "diplomat", "diputa": "diput", "diputación": "diput", "diputaciones": "diput", "diputada": "diput", "diputado": "diput", "diputados": "diput", "dirá": "dir", "dirán": "diran", "diré": "dir", "dirección": "direccion", "direccionales": "direccional", "direcciones": "direccion", "direct": "direct", "directa": "direct", "directamente": "direct", "directas": "direct", "directiva": "direct", "directivas": "direct", "directivo": "direct", "directivos": "direct", "directo": "direct", "director": "director", "directora": "director", "directores": "director", "directorio": "directori", "directorios": "directori", "directos": "direct", "diría": "dir", "dirige": "dirig", "dirigencia": "dirigent", "dirigente": "dirigent", "dirigentes": "dirigent", "dirigía": "dirig", "dirigían": "dirig", "dirigible": "dirig", "dirigida": "dirig", "dirigidas": "dirig", "dirigido": "dirig", "dirigidos": "dirig", "dirigiendo": "dirig", "dirigieron": "dirig", "dirigió": "dirig", "dirigir": "dirig", "dirigirá": "dirig", "dirigirla": "dirig", "dirigirme": "dirig", "dirigirse": "dirig", "dirija": "dirij", "dirimir": "dirim", "disc": "disc", "discapacidad": "discapac", "discapacidades": "discapac", "discapacitada": "discapacit", "discapacitadas": "discapacit", "discapacitado": "discapacit", "discapacitados": "discapacit", "disciplina": "disciplin", "disciplinada": "disciplin", "disciplinadas": "disciplin", "disciplinaria": "disciplinari", "disciplinario": "disciplinari", "disciplinas": "disciplin", "discípulos": "discipul", "disco": "disc", "discografía": "discograf", "discográfico": "discograf", "discos": "disc", "discoteca": "discotec", "discotecas": "discotec", "discrepancia": "discrep", "discreto": "discret", "discretos": "discret", "discriminación": "discrimin", "discs": "discs", "disculpa": "disculp", "disculpaba": "disculp", "disculpe": "disculp", "discurso": "discurs", "discursos": "discurs", "discusión": "discusion", "discusiones": "discusion", "discuta": "discut", "discutían": "discut", "discutido": "discut", "discutieron": "discut", "discutió": "discut", "discutir": "discut", "discutirse": "discut", "diseña": "diseñ", "diseñada": "diseñ", "diseñadas": "diseñ", "diseñado": "diseñ", "diseñador": "diseñ", "diseñadores": "diseñ", "diseñados": "diseñ", "diseñan": "diseñ", "diseñando": "diseñ", "diseñar": "diseñ", "diseñaron": "diseñ", "diseñe": "diseñ", "diseño": "diseñ", "diseñó": "diseñ", "diseños": "diseñ", "disertará": "disert", "disfrace": "disfrac", "disfraces": "disfrac", "disfrazada": "disfraz", "disfrazados": "disfraz", "disfrazar": "disfraz", "disfrazaron": "disfraz", "disfrazarse": "disfraz", "disfruta": "disfrut", "disfrutando": "disfrut", "disfrutar": "disfrut", "disfrutará": "disfrut", "disfrutaron": "disfrut", "disfrutarse": "disfrut", "disfrute": "disfrut", "disfrutó": "disfrut", "disgregulación": "disgregul", "disgusta": "disgust", "disgustado": "disgust", "disgustarle": "disgust", "disgusto": "disgust", "disidente": "disident", "disidentes": "disident", "disimular": "disimul", "disipar": "disip", "disipó": "disip", "diskete": "disket", "diskette": "diskett", "diskettes": "diskett", "disléxico": "dislex", "disminución": "disminu", "disminuidas": "disminu", "disminuido": "disminu", "disminuir": "disminu", "disminuiría": "disminu", "disminuye": "disminu", "disminuyendo": "disminu", "disminuyó": "disminu", "disney": "disney", "disolvió": "disolv", "disparaba": "dispar", "disparado": "dispar", "disparan": "disp", "disparando": "dispar", "disparar": "dispar", "dispararon": "dispar", "dispararse": "dispar", "disparate": "disparat", "disparates": "disparat", "disparo": "dispar", "disparó": "dispar", "disparos": "dispar", "dispendio": "dispendi", "dispendiosa": "dispendi", "dispensa": "dispens", "dispersan": "dispers", "dispersión": "dispersion", "disperso": "dispers", "dispersó": "dispers", "dispersos": "dispers", "displays": "displays", "displicencia": "displicent", "dispone": "dispon", "disponen": "dispon", "disponga": "dispong", "dispóngase": "dispong", "dispongo": "dispong", "disponía": "dispon", "disponibilidad": "disponibil", "disponible": "dispon", "disponibles": "dispon", "disposición": "disposicion", "disposiciones": "disposicion", "dispositivo": "disposit", "dispositivos": "disposit", "dispuesta": "dispuest", "dispuesto": "dispuest", "dispuestos": "dispuest", "dispusieron": "dispus", "dispuso": "dispus", "disputa": "disput", "disputadas": "disput", "disputado": "disput", "disputar": "disput", "disputará": "disput", "disputarán": "disput", "disputarían": "disput", "disputaron": "disput", "disputas": "disput", "disputó": "disput", "disquera": "disquer", "disqueras": "disquer", "distancia": "distanci", "distancias": "distanci", "distensión": "distension", "distinción": "distincion", "distinciones": "distincion", "distingos": "disting", "distinguen": "disting", "distinguida": "distingu", "distinguidas": "distingu", "distinguido": "distingu", "distinguidos": "distingu", "distinguimos": "distingu", "distinguir": "distingu", "distinta": "distint", "distintas": "distint", "distintivo": "distint", "distinto": "distint", "distintos": "distint", "distorsione": "distorsion", "distorsiones": "distorsion", "distraen": "distr", "distraer": "distr", "distraída": "distraid", "distrajo": "distraj", "distribución": "distribu", "distribuía": "distribu", "distribuidas": "distribu", "distribuido": "distribu", "distribuidor": "distribuidor", "distribuidora": "distribuidor", "distribuidoras": "distribuidor", "distribuidores": "distribuidor", "distribuidos": "distribu", "distribuimos": "distribu", "distribuir": "distribu", "distribuirán": "distribu", "distribuirla": "distribu", "distribuirse": "distribu", "distribution": "distribution", "distribuya": "distribu", "distribuye": "distribu", "distribuyen": "distribu", "distribuyendo": "distribu", "distribuyó": "distribu", "distritales": "distrital", "distrito": "distrit", "distritos": "distrit", "distrofia": "distrofi", "disturbios": "disturbi", "disyuntiva": "disyunt", "dit": "dit", "diva": "div", "diván": "divan", "divergencias": "divergent", "diversa": "divers", "diversas": "divers", "diversidad": "divers", "diversificación": "diversif", "diversificándose": "diversific", "diversificó": "diversific", "diversión": "diversion", "diverso": "divers", "diversos": "divers", "divertía": "divert", "divertida": "divert", "divertidas": "divert", "divertido": "divert", "divertir": "divert", "divertirnos": "divert", "divertirse": "divert", "divide": "divid", "dividendos": "dividend", "dividido": "divid", "divididos": "divid", "dividiéndose": "divid", "dividió": "divid", "dividir": "divid", "dividirnos": "divid", "divina": "divin", "divinas": "divin", "divino": "divin", "divirtieran": "divirt", "divisas": "divis", "división": "division", "divisional": "divisional", "divisiones": "division", "divisoria": "divisori", "divorciado": "divorci", "divorciarme": "divorci", "divorcio": "divorci", "divorció": "divorc", "divorcios": "divorci", "divulgar": "divulg", "diz": "diz", "dizque": "dizqu", "dizzie": "dizzi", "dls": "dls", "dnx": "dnx", "dobla": "dobl", "doblaje": "doblaj", "doblajes": "doblaj", "doblar": "dobl", "doble": "dobl", "doblegado": "dobleg", "doblegamiento": "dobleg", "doblegando": "dobleg", "doblegar": "dobleg", "doblemente": "doblement", "dobles": "dobl", "doblinger": "dobling", "doblista": "doblist", "doblistas": "doblist", "dobson": "dobson", "doce": "doc", "docena": "docen", "docenas": "docen", "docencia": "docenci", "docente": "docent", "docentes": "docent", "dócil": "docil", "dock": "dock", "docta": "doct", "doctor": "doctor", "doctora": "doctor", "doctorados": "doctor", "doctoral": "doctoral", "doctores": "doctor", "doctoró": "doctor", "doctrina": "doctrin", "doctrinario": "doctrinari", "doctrinas": "doctrin", "documentación": "document", "documentada": "document", "documentadas": "document", "documental": "documental", "documentales": "documental", "documenté": "document", "documento": "document", "documentos": "document", "dodgers": "dodgers", "dog": "dog", "doger": "dog", "dogs": "dogs", "dólar": "dol", "dolares": "dolar", "dólares": "dolar", "dolce": "dolc", "doliéndose": "dol", "dolo": "dol", "dolor": "dolor", "dolores": "dolor", "dolorido": "dolor", "dolorosa": "dolor", "dolosa": "dolos", "doman": "dom", "domar": "dom", "domene": "domen", "doméstica": "domest", "domesticados": "domestic", "domesticaron": "domestic", "domésticas": "domest", "doméstico": "domest", "domésticos": "domest", "domiciliado": "domicili", "domiciliaria": "domiciliari", "domiciliarias": "domiciliari", "domicilio": "domicili", "domicilios": "domicili", "domina": "domin", "dominada": "domin", "dominado": "domin", "dominador": "domin", "dominan": "domin", "dominando": "domin", "dominantes": "domin", "dominar": "domin", "dominarlo": "domin", "dominen": "domin", "domingo": "doming", "domingos": "doming", "domínguez": "dominguez", "dominical": "dominical", "dominicana": "dominican", "dominicano": "dominican", "dominicanos": "dominican", "dominio": "domini", "dominó": "domin", "domizzi": "domizzi", "don": "don", "dona": "don", "doña": "doñ", "donadas": "don", "donado": "don", "donados": "don", "donald": "donald", "donaldo": "donald", "donan": "don", "donantes": "donant", "donar": "don", "donará": "don", "donas": "don", "donativo": "donat", "donativos": "donat", "doncella": "doncell", "donde": "dond", "dónde": "dond", "dones": "don", "donna": "donn", "donó": "don", "doors": "doors", "doquier": "doqui", "dora": "dor", "dorada": "dor", "doradas": "dor", "dorado": "dor", "dorados": "dor", "dorar": "dor", "doria": "dori", "doris": "doris", "dormí": "dorm", "dormía": "dorm", "dormir": "dorm", "dormirán": "dorm", "dormirme": "dorm", "dormitó": "dormit", "dorsal": "dorsal", "dorsets": "dorsets", "dorsey": "dorsey", "dos": "dos", "dosamantes": "dosam", "doscientas": "doscient", "dosis": "dosis", "dotación": "dotacion", "dotadas": "dot", "dotar": "dot", "dotes": "dot", "dow": "dow", "down": "down", "doy": "doy", "dr": "dr", "dra": "dra", "drácula": "dracul", "drag": "drag", "dragón": "dragon", "dragster": "dragst", "drake": "drak", "drama": "dram", "dramas": "dram", "dramática": "dramat", "dramáticamente": "dramat", "dramático": "dramat", "dramáticos": "dramat", "dramatismo": "dramat", "dramaturgia": "dramaturgi", "drástica": "drastic", "drásticamente": "drastic", "drásticas": "drastic", "drásticos": "drastic", "drenaje": "drenaj", "drew": "drew", "droga": "drog", "drogadicción": "drogadiccion", "drogadicto": "drogadict", "drogadictos": "drogadict", "drogado": "drog", "drogan": "drog", "drogarse": "drog", "drogas": "drog", "du": "du", "dual": "dual", "duarte": "duart", "ducharme": "duch", "ductilidad": "ductil", "duda": "dud", "dudaba": "dud", "dudaban": "dud", "dudamos": "dud", "dudas": "dud", "dudo": "dud", "dudosos": "dudos", "duela": "duel", "duele": "duel", "duelen": "duel", "duelo": "duel", "dueña": "dueñ", "dueño": "dueñ", "dueños": "dueñ", "duke": "duk", "dulce": "dulc", "dulces": "dulc", "dulles": "dull", "dulzura": "dulzur", "dumping": "dumping", "dune": "dun", "dunkin": "dunkin", "duo": "duo", "dúo": "duo", "dupla": "dupl", "duplicación": "duplic", "duplicado": "duplic", "duplicados": "duplic", "duplicar": "duplic", "duplicará": "duplic", "duplicidad": "duplic", "duplicidades": "duplic", "duplicó": "duplic", "dupont": "dupont", "duque": "duqu", "duques": "duqu", "duquesa": "duques", "dura": "dur", "duraban": "dur", "durabilidad": "durabil", "duración": "duracion", "duradero": "durader", "duramente": "dur", "duran": "dur", "durán": "duran", "durango": "durang", "duranguense": "duranguens", "durante": "durant", "durar": "dur", "durara": "dur", "durará": "dur", "durarán": "dur", "duras": "dur", "durazno": "durazn", "durbin": "durbin", "dúrcal": "durcal", "dure": "dur", "duren": "dur", "dureza": "durez", "durmió": "durm", "duro": "dur", "duró": "dur", "duros": "dur", "dury": "dury", "dwyer": "dwyer", "dye": "dye", "dzul": "dzul", "e": "e", "eagles": "eagl", "earl": "earl", "eastwood": "eastwood", "eau": "eau", "ebanista": "eban", "ebanitos": "ebanit", "eberhard": "eberhard", "ebriedad": "ebried", "ebrio": "ebri", "ebullición": "ebullicion", "echa": "echa", "echaban": "echab", "echada": "echad", "echado": "echad", "echan": "echan", "echando": "echand", "echándole": "echandol", "echao": "echa", "echar": "echar", "echara": "echar", "echarán": "echaran", "echarle": "echarl", "echarnos": "echarn", "echas": "echas", "échate": "echat", "echavarría": "echavarr", "eche": "eche", "echen": "echen", "echeverría": "echeverr", "echó": "echo", "echoes": "echo", "eckhard": "eckhard", "eclesiásticas": "eclesiast", "eclesíasticos": "eclesiast", "eco": "eco", "ecología": "ecolog", "ecológica": "ecolog", "ecológicas": "ecolog", "ecológico": "ecolog", "ecológicos": "ecolog", "ecologista": "ecolog", "ecologísta": "ecologist", "ecologistas": "ecolog", "econometristas": "econometr", "economia": "economi", "economía": "econom", "economías": "econom", "economic": "economic", "económica": "econom", "económicamente": "econom", "económicas": "econom", "económico": "econom", "económicos": "econom", "economist": "economist", "economista": "econom", "economistas": "econom", "ecosistema": "ecosistem", "ecosistemas": "ecosistem", "ecotaxi": "ecotaxi", "ecotaxis": "ecotaxis", "ecotaxistas": "ecotax", "ecotécnicas": "ecotecn", "ecuaciones": "ecuacion", "ecuador": "ecuador", "ecuánime": "ecuanim", "ecuatoriana": "ecuatorian", "ecuatoriano": "ecuatorian", "edad": "edad", "edades": "edad", "edecán": "edecan", "edelmiro": "edelmir", "eden": "eden", "edén": "eden", "eder": "eder", "edgar": "edgar", "edgardo": "edgard", "edición": "edicion", "ediciones": "edicion", "edifica": "edif", "edificación": "edif", "edificaciones": "edif", "edificar": "edific", "edificio": "edifici", "edificios": "edifici", "edifico": "edif", "edil": "edil", "edilberto": "edilbert", "ediles": "edil", "edison": "edison", "edit": "edit", "edita": "edit", "editada": "edit", "editado": "edit", "editados": "edit", "editar": "edit", "edith": "edith", "editó": "edit", "editor": "editor", "editoras": "editor", "editores": "editor", "editorial": "editorial", "editoriales": "editorial", "editorialista": "editorial", "editorialy": "editorialy", "edmundo": "edmund", "edomex": "edomex", "edu": "edu", "edú": "edu", "eduard": "eduard", "eduardo": "eduard", "educación": "educ", "educada": "educ", "educador": "educ", "educadores": "educ", "educando": "educ", "educar": "educ", "educaron": "educ", "educativa": "educ", "educativas": "educ", "educativo": "educ", "educativos": "educ", "eduque": "eduqu", "edward": "edward", "efe": "efe", "efectiva": "efect", "efectivamente": "efect", "efectivas": "efect", "efectividad": "efect", "efectivo": "efect", "efectivos": "efect", "efecto": "efect", "efectos": "efect", "efectúa": "efectu", "efectuaba": "efectu", "efectuada": "efectu", "efectuadas": "efectu", "efectuado": "efectu", "efectúan": "efectu", "efectuar": "efectu", "efectuará": "efectu", "efectuarán": "efectu", "efectuaría": "efectu", "efectuaron": "efectu", "efectuarse": "efectu", "efectúen": "efectu", "efectuo": "efectu", "efectúo": "efectu", "efectuó": "efectu", "eficaces": "eficac", "eficacia": "eficaci", "eficaz": "eficaz", "eficazmente": "eficaz", "eficiencia": "eficient", "eficientarlas": "eficient", "eficiente": "eficient", "eficientemente": "eficient", "eficientes": "eficient", "eficientización": "eficientiz", "efigie": "efigi", "efímero": "efimer", "efluentes": "efluent", "efraín": "efrain", "efusivamente": "efus", "egca": "egca", "eggert": "eggert", "égida": "egid", "egipcios": "egipci", "egipto": "egipt", "ego": "ego", "egocentrismo": "egocentr", "egoísmo": "egoism", "egoísta": "egoist", "egresaban": "egres", "egresada": "egres", "egresados": "egres", "egresan": "egres", "egresaron": "egres", "egresen": "egres", "egreso": "egres", "egresos": "egres", "eiffel": "eiffel", "eight": "eight", "eje": "eje", "ejecución": "ejecu", "ejecuta": "ejecut", "ejecutaba": "ejecut", "ejecutable": "ejecut", "ejecutada": "ejecut", "ejecutado": "ejecut", "ejecutados": "ejecut", "ejecutando": "ejecut", "ejecutantes": "ejecut", "ejecutar": "ejecut", "ejecutarán": "ejecut", "ejecutarse": "ejecut", "ejecutiva": "ejecut", "ejecutivas": "ejecut", "ejecutivo": "ejecut", "ejecutivos": "ejecut", "ejecutó": "ejecut", "ejemplar": "ejempl", "ejemplares": "ejemplar", "ejemplarmente": "ejemplar", "ejemplificó": "ejemplific", "ejemplifique": "ejemplifiqu", "ejemplo": "ejempl", "ejemplos": "ejempl", "ejerce": "ejerc", "ejercen": "ejerc", "ejercer": "ejerc", "ejercerán": "ejerc", "ejercían": "ejerc", "ejercicio": "ejercici", "ejercicios": "ejercici", "ejerciendo": "ejerc", "ejerciera": "ejerc", "ejercitación": "ejercit", "ejercito": "ejercit", "ejército": "ejercit", "ejércitos": "ejercit", "ejidatarios": "ejidatari", "ejido": "ejid", "el": "el", "él": "el", "elaboración": "elabor", "elaborada": "elabor", "elaboradas": "elabor", "elaborado": "elabor", "elaborados": "elabor", "elaborar": "elabor", "elaborarán": "elabor", "elabore": "elabor", "elaboró": "elabor", "elásticos": "elast", "elba": "elba", "elcrimen": "elcrim", "eldridge": "eldridg", "eleanor": "eleanor", "elección": "eleccion", "eleccionario": "eleccionari", "elecciones": "eleccion", "electa": "elect", "electo": "elect", "elector": "elector", "electorado": "elector", "electoral": "electoral", "electorales": "electoral", "electoralmente": "electoral", "electores": "elector", "electos": "elect", "eléctrica": "electr", "eléctricas": "electr", "electricidad": "electr", "electricistas": "electric", "eléctrico": "electr", "eléctricos": "electr", "electroacústica": "electroacust", "electrodomésticos": "electrodomest", "electromagnéticas": "electromagnet", "electronic": "electronic", "electrónica": "electron", "electrónicas": "electron", "electrónico": "electron", "electrónicos": "electron", "elefante": "elef", "elegancia": "eleg", "elegante": "eleg", "elegantemente": "eleg", "elegantes": "eleg", "elegidas": "eleg", "elegido": "eleg", "elegidos": "eleg", "elegir": "eleg", "elegirá": "eleg", "elegirán": "eleg", "elegirse": "eleg", "elektra": "elektr", "elemental": "elemental", "elementales": "elemental", "elemento": "element", "elementos": "element", "elena": "elen", "elenco": "elenc", "elencos": "elenc", "elepé": "elep", "elevaban": "elev", "elevación": "elev", "elevada": "elev", "elevadas": "elev", "elevado": "elev", "elevados": "elev", "elevamos": "elev", "elevan": "elev", "elevar": "elev", "elevaran": "elev", "elevaría": "elev", "elevarse": "elev", "elevó": "elev", "elia": "eli", "elías": "eli", "elida": "elid", "elie": "eli", "elier": "eli", "eligen": "elig", "eligieron": "elig", "eligió": "elig", "eligirá": "elig", "eligirán": "elig", "elija": "elij", "elijan": "elij", "elimina": "elimin", "eliminación": "elimin", "eliminada": "elimin", "eliminado": "elimin", "eliminar": "elimin", "eliminará": "elimin", "eliminarán": "elimin", "eliminarían": "elimin", "eliminarla": "elimin", "eliminarse": "elimin", "eliminatoria": "eliminatori", "eliminatorias": "eliminatori", "eliminatorios": "eliminatori", "elimine": "elimin", "eliminó": "elimin", "eliodoro": "eliodor", "elisa": "elis", "eliseo": "elise", "élite": "elit", "eliud": "eliud", "elizondo": "elizond", "ella": "ella", "ellas": "ellas", "ellington": "ellington", "ello": "ello", "ellos": "ellos", "elmer": "elmer", "elmo": "elmo", "elocuencia": "elocuent", "elogiado": "elogi", "elogio": "elogi", "elogios": "elogi", "elogiosas": "elogi", "eloisa": "elois", "eloísa": "elois", "elosúa": "elosu", "elotitos": "elotit", "eloxochitlán": "eloxochitlan", "eloy": "eloy", "elton": "elton", "elude": "elud", "eludir": "elud", "elva": "elva", "elvis": "elvis", "em": "em", "emana": "eman", "emanadas": "eman", "emanciparse": "emancip", "ematografía": "ematograf", "embajada": "embaj", "embajadas": "embaj", "embajador": "embaj", "embajadora": "embaj", "embajadores": "embaj", "embalaje": "embalaj", "embarazada": "embaraz", "embarazarse": "embaraz", "embarazo": "embaraz", "embarazosa": "embaraz", "embarazoso": "embaraz", "embarcación": "embarc", "embarcaciones": "embarc", "embarcadas": "embarc", "embarcar": "embarc", "embargaron": "embarg", "embargo": "embarg", "embarrarnos": "embarr", "embestía": "embest", "embestida": "embest", "embestidas": "embest", "embestido": "embest", "embistiendo": "embist", "embistió": "embist", "emblema": "emblem", "embolsó": "embols", "emboscada": "embosc", "emboscado": "embosc", "emboscados": "embosc", "emboscan": "embosc", "embotelladora": "embotell", "embotelladoras": "embotell", "embotellamientos": "embotell", "embravecidas": "embravec", "embriagantes": "embriag", "embriagarse": "embriag", "embriagas": "embriag", "embutidos": "embut", "emerge": "emerg", "emergencia": "emergent", "emergencias": "emergent", "emergente": "emergent", "emergentes": "emergent", "emerson": "emerson", "emes": "emes", "emigramos": "emigr", "emigrantes": "emigr", "emigrar": "emigr", "emigraron": "emigr", "emiliano": "emilian", "emilio": "emili", "eminencia": "eminent", "eminentemente": "eminent", "emirato": "emirat", "emisión": "emision", "emisiones": "emision", "emisora": "emisor", "emisoras": "emisor", "emisores": "emisor", "emita": "emit", "emitan": "emit", "emiten": "emit", "emitían": "emit", "emitida": "emit", "emitidas": "emit", "emitido": "emit", "emitidos": "emit", "emitiendo": "emit", "emitieron": "emit", "emitió": "emit", "emitir": "emit", "emitirá": "emit", "emitirán": "emit", "emitiría": "emit", "emmanuel": "emmanuel", "emmitth": "emmitth", "emoción": "emocion", "emocionada": "emocion", "emocionado": "emocion", "emocionados": "emocion", "emocional": "emocional", "emocionante": "emocion", "emocionaron": "emocion", "emociones": "emocion", "emocionó": "emocion", "emory": "emory", "emotivamente": "emot", "empacadores": "empac", "empacados": "empac", "empacamex": "empacamex", "empadronados": "empadron", "empalagó": "empalag", "empanadas": "empan", "empantanadas": "empantan", "empantanar": "empantan", "empape": "empap", "empapé": "empap", "empaquetado": "empaquet", "empatado": "empat", "empatados": "empat", "empatar": "empat", "empatarles": "empat", "empataron": "empat", "empate": "empat", "empates": "empat", "empató": "empat", "empecé": "empec", "empecinan": "empecin", "empeñado": "empeñ", "empeñados": "empeñ", "empeño": "empeñ", "empeoran": "empeor", "empeorar": "empeor", "emperador": "emper", "emperatriz": "emperatriz", "empero": "emper", "empezaba": "empez", "empezaban": "empez", "empezado": "empez", "empezamos": "empez", "empezando": "empez", "empezar": "empez", "empezará": "empez", "empezarán": "empez", "empezarlos": "empez", "empezaron": "empez", "empezó": "empez", "empiece": "empiec", "empiecen": "empiec", "empieza": "empiez", "empiezan": "empiez", "emplazamiento": "emplaz", "emplea": "emple", "empleada": "emple", "empleadas": "emple", "empleado": "emple", "empleados": "emple", "empleando": "emple", "emplear": "emple", "empleo": "emple", "empleó": "emple", "empleos": "emple", "empobrecido": "empobrec", "emporio": "empori", "emprendedor": "emprendedor", "emprendedores": "emprendedor", "emprender": "emprend", "emprenderá": "emprend", "emprendido": "emprend", "emprendiendo": "emprend", "emprendimos": "emprend", "emprendió": "emprend", "empresa": "empres", "empresaria": "empresari", "empresarial": "empresarial", "empresariales": "empresarial", "empresario": "empresari", "empresarios": "empresari", "empresas": "empres", "empréstitos": "emprestit", "empujamos": "empuj", "empujan": "empuj", "empujando": "empuj", "empujar": "empuj", "empujarlo": "empuj", "emular": "emul", "en": "en", "enajenación": "enajen", "enamora": "enamor", "enamorado": "enamor", "enamoró": "enamor", "encabece": "encabec", "encabeza": "encabez", "encabezada": "encabez", "encabezado": "encabez", "encabezados": "encabez", "encabezar": "encabez", "encabezará": "encabez", "encabezaron": "encabez", "encabezó": "encabez", "encadenaban": "encaden", "encadenado": "encaden", "encaja": "encaj", "encajan": "encaj", "encaje": "encaj", "encajes": "encaj", "encallados": "encall", "encallar": "encall", "encaminadas": "encamin", "encaminará": "encamin", "encaminaron": "encamin", "encañonaron": "encañon", "encanta": "encant", "encantada": "encant", "encantador": "encant", "encantados": "encant", "encantan": "encant", "encantaría": "encant", "encanto": "encant", "encantos": "encant", "encapricha": "encaprich", "encara": "encar", "encarcelado": "encarcel", "encarcelados": "encarcel", "encarcelamiento": "encarcel", "encarecerá": "encarec", "encarga": "encarg", "encargaba": "encarg", "encargaban": "encarg", "encargada": "encarg", "encargadas": "encarg", "encargado": "encarg", "encargados": "encarg", "encargar": "encarg", "encargara": "encarg", "encargará": "encarg", "encargarán": "encarg", "encargaron": "encarg", "encargo": "encarg", "encargó": "encarg", "encargue": "encarg", "encargué": "encarg", "encarna": "encarn", "encarnado": "encarn", "encarnan": "encarn", "encarnizan": "encarniz", "encarno": "encarn", "encarnó": "encarn", "encauce": "encauc", "encendedor": "encendedor", "encendedores": "encendedor", "encendido": "encend", "encendidos": "encend", "encerar": "encer", "enceren": "encer", "encerrado": "encerr", "encerrados": "encerr", "encerrarnos": "encerr", "encerraron": "encerr", "encerrona": "encerron", "enchalecados": "enchalec", "enchinchar": "enchinch", "enciclopedia": "enciclopedi", "enciclopedias": "enciclopedi", "enciclopédico": "encicloped", "encienda": "enciend", "encierra": "encierr", "encierro": "encierr", "encima": "encim", "encke": "encke", "enclaustrados": "enclaustr", "encomendadas": "encomend", "encomendando": "encomend", "encomiable": "encomi", "encomienda": "encomiend", "encomiende": "encomiend", "encontraba": "encontr", "encontraban": "encontr", "encontrada": "encontr", "encontradas": "encontr", "encontrado": "encontr", "encontrados": "encontr", "encontramos": "encontr", "encontrar": "encontr", "encontrara": "encontr", "encontrará": "encontr", "encontraran": "encontr", "encontrarán": "encontr", "encontrarás": "encontr", "encontraremos": "encontr", "encontrarle": "encontr", "encontrarlo": "encontr", "encontrarme": "encontr", "encontraron": "encontr", "encontrarse": "encontr", "encontrársele": "encontrarsel", "encontré": "encontr", "encontró": "encontr", "encriptación": "encript", "encrucijada": "encrucij", "encuadrados": "encuadr", "encuadren": "encuadr", "encubierta": "encubiert", "encubiertos": "encubiert", "encuentra": "encuentr", "encuentran": "encuentr", "encuentras": "encuentr", "encuentre": "encuentr", "encuentro": "encuentr", "encuentros": "encuentr", "encuesta": "encuest", "encuestadora": "encuest", "encuestados": "encuest", "encuestaron": "encuest", "encuestas": "encuest", "encueste": "encuest", "encumbran": "encumbr", "endeavour": "endeavour", "endebles": "endebl", "enderezadas": "enderez", "endeudamiento": "endeud", "endiosado": "endi", "endiosamiento": "endi", "endocrinología": "endocrinolog", "endocrinólogo": "endocrinolog", "endulce": "endulc", "endulzada": "endulz", "enduro": "endur", "enemiga": "enemig", "enemigo": "enemig", "enemigos": "enemig", "energética": "energet", "energético": "energet", "energéticos": "energet", "energía": "energ", "enérgica": "energ", "enérgicas": "energ", "enérgico": "energ", "enero": "ener", "enervante": "enerv", "enervantes": "enerv", "enésima": "enesim", "enfadaría": "enfad", "énfasis": "enfasis", "enfatiza": "enfatiz", "enfatizará": "enfatiz", "enfatizó": "enfatiz", "enferma": "enferm", "enfermarse": "enferm", "enfermé": "enferm", "enfermedad": "enfermed", "enfermedades": "enfermedad", "enfermera": "enfermer", "enfermeras": "enfermer", "enfermo": "enferm", "enfermos": "enferm", "enfiladas": "enfil", "enfilamos": "enfil", "enfoca": "enfoc", "enfocadas": "enfoc", "enfocado": "enfoc", "enfocados": "enfoc", "enfocan": "enfoc", "enfocar": "enfoc", "enfocará": "enfoc", "enfocarán": "enfoc", "enfocarse": "enfoc", "enfoque": "enfoqu", "enfoquen": "enfoqu", "enfóquese": "enfoques", "enfrascados": "enfrasc", "enfrenta": "enfrent", "enfrentaba": "enfrent", "enfrentada": "enfrent", "enfrentado": "enfrent", "enfrentamiento": "enfrent", "enfrentamientos": "enfrent", "enfrentamos": "enfrent", "enfrentan": "enfrent", "enfrentando": "enfrent", "enfrentándose": "enfrent", "enfrentar": "enfrent", "enfrentará": "enfrent", "enfrentarán": "enfrent", "enfrentaremos": "enfrent", "enfrentarlos": "enfrent", "enfrentarme": "enfrent", "enfrentaron": "enfrent", "enfrentarse": "enfrent", "enfrente": "enfrent", "enfrenten": "enfrent", "enfrentó": "enfrent", "enfriamiento": "enfriamient", "enfundaron": "enfund", "enfurecieron": "enfurec", "engalana": "engalan", "engañaba": "engañ", "engañado": "engañ", "engañar": "engañ", "engancharle": "enganch", "engaño": "engañ", "engañosas": "engañ", "engendra": "engendr", "engineering": "engineering", "englutidos": "englut", "engomados": "engom", "engordar": "engord", "engordó": "engord", "engorrosas": "engorr", "engorrosos": "engorr", "engracia": "engraci", "engranaje": "engranaj", "engrandecer": "engrandec", "engrane": "engran", "engrasen": "engras", "enhorabuena": "enhorabuen", "enigmático": "enigmat", "enjambre": "enjambr", "enjuiciado": "enjuici", "enjuiciar": "enjuici", "enlace": "enlac", "enlatados": "enlat", "enlaza": "enlaz", "enlazadas": "enlaz", "enlazado": "enlaz", "enlistar": "enlist", "enlisten": "enlist", "enmarañado": "enmarañ", "enmarca": "enmarc", "enmarcarlos": "enmarc", "enmarcaron": "enmarc", "enmarcarse": "enmarc", "enmascarado": "enmascar", "enmedio": "enmedi", "enmendar": "enmend", "enoc": "enoc", "enojaran": "enoj", "enojo": "enoj", "enojó": "enoj", "enorme": "enorm", "enormemente": "enorm", "enormes": "enorm", "enraizada": "enraiz", "enrazado": "enraz", "enrazados": "enraz", "enreden": "enred", "enrico": "enric", "enrique": "enriqu", "enriquece": "enriquec", "enriquecer": "enriquec", "enriquecerse": "enriquec", "enriquecida": "enriquec", "enriquecimiento": "enriquec", "enriqueció": "enriquec", "enríquez": "enriquez", "ensambladora": "ensambl", "ensamblar": "ensambl", "ensamble": "ensambl", "ensambles": "ensambl", "ensanchado": "ensanch", "ensangrentados": "ensangrent", "ensaya": "ensay", "ensayado": "ensay", "ensayaron": "ensay", "ensayista": "ensay", "ensayistas": "ensay", "ensayo": "ensay", "enseguida": "ensegu", "enseña": "enseñ", "enseñaba": "enseñ", "enseñaban": "enseñ", "ensenada": "ensen", "enseñado": "enseñ", "enseñan": "enseñ", "enseñando": "enseñ", "enseñanza": "enseñ", "enseñanzas": "enseñ", "enseñar": "enseñ", "enseñarles": "enseñ", "enseñen": "enseñ", "enseñes": "enseñ", "enseñó": "enseñ", "ensoberbecerse": "ensoberbec", "ensombrecían": "ensombrec", "ensorberbecera": "ensorberbecer", "ensordecedores": "ensordecedor", "ensuciar": "ensuci", "entabladas": "entabl", "entablar": "entabl", "entablarse": "entabl", "ente": "ente", "entenados": "enten", "entendederas": "entendeder", "entendemos": "entend", "entender": "entend", "entenderá": "entend", "entenderé": "entend", "entenderíamos": "entend", "entendí": "entend", "entendible": "entend", "entendibles": "entend", "entendido": "entend", "entendimiento": "entend", "entera": "enter", "enterada": "enter", "enterado": "enter", "enterados": "enter", "enteramente": "enter", "enteramos": "enter", "enterar": "enter", "enterarse": "enter", "entere": "enter", "enteremos": "enter", "enteren": "enter", "entereza": "enterez", "entero": "enter", "enteró": "enter", "enteros": "enter", "enterrarlos": "enterr", "entes": "entes", "entidad": "entid", "entidades": "entidad", "entienda": "entiend", "entiendan": "entiend", "entiende": "entiend", "entienden": "entiend", "entierro": "entierr", "entonado": "enton", "entonces": "entonc", "entonen": "enton", "entorno": "entorn", "entorpece": "entorpec", "entra": "entra", "entraban": "entrab", "entrada": "entrad", "entradas": "entrad", "entrado": "entrad", "entramos": "entram", "entran": "entran", "entraña": "entrañ", "entrañaría": "entrañ", "entrando": "entrand", "entrándole": "entrandol", "entrante": "entrant", "entrar": "entrar", "entrará": "entrar", "entraran": "entrar", "entrarán": "entraran", "entraría": "entrar", "entrarían": "entrar", "entrarle": "entrarl", "entraron": "entraron", "entre": "entre", "entré": "entre", "entrecano": "entrecan", "entrecomillas": "entrecomill", "entrecruzan": "entrecruz", "entrega": "entreg", "entregada": "entreg", "entregadas": "entreg", "entregado": "entreg", "entregados": "entreg", "entregan": "entreg", "entregándoles": "entreg", "entregar": "entreg", "entregara": "entreg", "entregará": "entreg", "entregaran": "entreg", "entregarán": "entreg", "entregaría": "entreg", "entregarían": "entreg", "entregarla": "entreg", "entregarle": "entreg", "entregarme": "entreg", "entregaron": "entreg", "entregarse": "entreg", "entregársela": "entreg", "entregas": "entreg", "entrego": "entreg", "entregó": "entreg", "entregue": "entreg", "entreguen": "entreg", "entréguenos": "entreguen", "entrelazadas": "entrelaz", "entrelíneas": "entrelin", "entren": "entren", "entrena": "entren", "entrenaba": "entren", "entrenado": "entren", "entrenador": "entren", "entrenadores": "entren", "entrenados": "entren", "entrenamiento": "entren", "entrenamientos": "entren", "entrenan": "entren", "entrenando": "entren", "entrenar": "entren", "entrenará": "entren", "entrenarán": "entren", "entrenarlo": "entren", "entrenarlos": "entren", "entrenaron": "entren", "entrenó": "entren", "entretejida": "entretej", "entretener": "entreten", "entretenían": "entreten", "entretenimiento": "entreten", "entretenimientos": "entreten", "entrever": "entrev", "entrevista": "entrev", "entrevistaba": "entrevist", "entrevistada": "entrevist", "entrevistado": "entrevist", "entrevistados": "entrevist", "entrevistar": "entrevist", "entrevistaron": "entrevist", "entrevistarse": "entrevist", "entrevistas": "entrev", "entrevistó": "entrevist", "entró": "entro", "entrometiera": "entromet", "entusiasmada": "entusiasm", "entusiasmado": "entusiasm", "entusiasmo": "entusiasm", "entusiasta": "entusiast", "entusiastas": "entusiast", "enumera": "enumer", "enumerará": "enumer", "envasadora": "envas", "envase": "envas", "envases": "envas", "envejecen": "envejec", "envejecimiento": "envejec", "envenenada": "envenen", "envenenarla": "envenen", "envia": "envi", "envía": "envi", "enviada": "envi", "enviadas": "envi", "enviado": "envi", "enviados": "envi", "enviamos": "envi", "envían": "envi", "enviando": "envi", "enviar": "envi", "enviará": "envi", "enviarán": "envi", "enviaría": "envi", "enviarlas": "envi", "enviaron": "envi", "envidia": "envidi", "envidiables": "envidi", "envidiamos": "envidi", "envidias": "envidi", "envidiosos": "envidi", "envíe": "envi", "envio": "envi", "envío": "envi", "envió": "envi", "envoltorio": "envoltori", "envoltura": "envoltur", "envolturas": "envoltur", "envolverse": "envolv", "envolviéndose": "envolv", "envueltos": "envuelt", "enyesado": "enyes", "eory": "eory", "epazote": "epazot", "episcopado": "episcop", "episcopal": "episcopal", "episodio": "episodi", "episodios": "episodi", "epístola": "epistol", "epistolar": "epistol", "época": "epoc", "épocas": "epoc", "equals": "equals", "equidad": "equid", "equilibrada": "equilibr", "equilibrado": "equilibr", "equilibrar": "equilibr", "equilibrarlos": "equilibr", "equilibrio": "equilibri", "equipada": "equip", "equipado": "equip", "equipados": "equip", "equipaje": "equipaj", "equipan": "equip", "equipar": "equip", "equipararnos": "equipar", "equipment": "equipment", "equipo": "equip", "equipos": "equip", "equisetum": "equisetum", "equitación": "equit", "equivale": "equival", "equivalen": "equival", "equivalente": "equivalent", "equivalentes": "equivalent", "equivoca": "equivoc", "equivocaba": "equivoc", "equivocaban": "equivoc", "equivocaciones": "equivoc", "equivocados": "equivoc", "equivocarse": "equivoc", "equivocó": "equivoc", "equivoqué": "equivoqu", "er": "er", "era": "era", "eramos": "eram", "eran": "eran", "erario": "erari", "eres": "eres", "erhard": "erhard", "eric": "eric", "erick": "erick", "erigido": "erig", "erika": "erik", "ermita": "ermit", "ernesto": "ernest", "erogaron": "erog", "eros": "eros", "erosionada": "erosion", "erosionadas": "erosion", "eróticas": "erot", "erraban": "errab", "erradica": "errad", "erradicación": "errad", "errado": "errad", "errática": "errat", "erráticos": "errat", "errónea": "errone", "erróneamente": "erron", "erróneo": "errone", "error": "error", "errores": "error", "erupción": "erupcion", "es": "es", "esa": "esa", "ésa": "esa", "esai": "esai", "esas": "esas", "ésas": "esas", "esbozo": "esboz", "escabrosos": "escabr", "escala": "escal", "escalada": "escal", "escalafón": "escalafon", "escalante": "escal", "escalar": "escal", "escalera": "escaler", "escaleras": "escaler", "escalinata": "escalinat", "escalón": "escalon", "escalona": "escalon", "escalonados": "escalon", "escalones": "escalon", "escamilla": "escamill", "escampavías": "escampav", "escándalo": "escandal", "escándalos": "escandal", "escandalosas": "escandal", "escaños": "escañ", "escapa": "escap", "escapada": "escap", "escapado": "escap", "escapando": "escap", "escapar": "escap", "escaparon": "escap", "escape": "escap", "escapó": "escap", "escarmiento": "escarmient", "escasa": "escas", "escasas": "escas", "escasez": "escasez", "escaso": "escas", "escasos": "escas", "escena": "escen", "escenario": "escenari", "escenarios": "escenari", "escenas": "escen", "escenciales": "escencial", "escénico": "escen", "escenificará": "escenific", "escenificarán": "escenific", "escenografía": "escenograf", "escenógrafos": "escenograf", "escisiones": "escision", "esclarecer": "esclarec", "esclarecimiento": "esclarec", "esclarezca": "esclarezc", "esclava": "esclav", "esclavas": "esclav", "esclavitud": "esclavitud", "esclavo": "esclav", "escoba": "escob", "escobar": "escob", "escobas": "escob", "escobedo": "escobed", "escobera": "escober", "escocés": "escoces", "escoge": "escog", "escoger": "escog", "escogería": "escog", "escoges": "escog", "escogido": "escog", "escogiendo": "escog", "escogieron": "escog", "escogimos": "escog", "escogió": "escog", "escojan": "escoj", "escolar": "escol", "escolares": "escolar", "escolarización": "escolariz", "escollo": "escoll", "escoltado": "escolt", "escombrera": "escombrer", "escombros": "escombr", "escondan": "escond", "esconde": "escond", "esconden": "escond", "esconder": "escond", "esconderse": "escond", "escondida": "escond", "escondidas": "escond", "escondido": "escond", "escondió": "escond", "escondite": "escondit", "escondrijos": "escondrij", "escore": "escor", "escoriaciones": "escori", "escorpión": "escorpion", "escote": "escot", "escotes": "escot", "escriba": "escrib", "escríbanos": "escriban", "escribe": "escrib", "escriben": "escrib", "escribía": "escrib", "escribiendo": "escrib", "escribieran": "escrib", "escribieron": "escrib", "escribió": "escrib", "escribir": "escrib", "escribirá": "escrib", "escribirlas": "escrib", "escribirle": "escrib", "escribirse": "escrib", "escribo": "escrib", "escrita": "escrit", "escritas": "escrit", "escrito": "escrit", "escritor": "escritor", "escritora": "escritor", "escritores": "escritor", "escritorio": "escritori", "escritos": "escrit", "escritura": "escritur", "escrituras": "escritur", "escrutinio": "escrutini", "escuadra": "escuadr", "escuadras": "escuadr", "escuadrones": "escuadron", "escuálidas": "escual", "escucha": "escuch", "escuchaba": "escuch", "escuchaban": "escuch", "escuchadas": "escuch", "escuchado": "escuch", "escuchan": "escuch", "escuchando": "escuch", "escuchándolas": "escuch", "escuchar": "escuch", "escuchará": "escuch", "escucharán": "escuch", "escucharla": "escuch", "escucharlos": "escuch", "escucharon": "escuch", "escuche": "escuch", "escuché": "escuch", "escuchen": "escuch", "escuchó": "escuch", "escudería": "escud", "escudo": "escud", "escudriñan": "escudriñ", "escuela": "escuel", "escuelas": "escuel", "escuetamente": "escuet", "escultor": "escultor", "escultórico": "escultor", "escultura": "escultur", "esculturas": "escultur", "escupir": "escup", "escurridizo": "escurridiz", "escurridizos": "escurridiz", "escurridos": "escurr", "esde": "esde", "ese": "ese", "ése": "ese", "esencia": "esenci", "esencial": "esencial", "esencialmente": "esencial", "esfera": "esfer", "esférico": "esfer", "esforzamos": "esforz", "esforzarnos": "esforz", "esforzaron": "esforz", "esfuercen": "esfuerc", "esfuerzo": "esfuerz", "esfuerzos": "esfuerz", "esfuman": "esfum", "esgrimía": "esgrim", "esguince": "esguinc", "eslabonó": "eslabon", "eslava": "eslav", "esmaltes": "esmalt", "esmeralda": "esmerald", "esmeraldas": "esmerald", "esmeran": "esmer", "eso": "eso", "esos": "esos", "ésos": "esos", "espacial": "espacial", "espaciales": "espacial", "espacio": "espaci", "espacios": "espaci", "espada": "espad", "espalda": "espald", "espaldas": "espald", "españa": "españ", "español": "español", "española": "español", "españolas": "español", "españoles": "español", "españolitos": "españolit", "espansión": "espansion", "espanta": "espant", "espantadas": "espant", "esparcimiento": "esparc", "esparció": "esparc", "esparza": "esparz", "espasmo": "espasm", "especial": "especial", "especiales": "especial", "especialidad": "especial", "especialidades": "especial", "especialista": "especial", "especialistas": "especial", "especializa": "especializ", "especialización": "especializ", "especializada": "especializ", "especializadas": "especializ", "especializado": "especializ", "especializados": "especializ", "especialmente": "especial", "especie": "especi", "especies": "especi", "especifica": "especif", "específica": "especif", "especificaba": "especific", "especificaciones": "especif", "especificado": "especific", "específicamente": "especif", "especifican": "especific", "especificar": "especific", "específicas": "especif", "específico": "especif", "especificó": "especific", "específicos": "especif", "especifiquen": "especifiqu", "espectacular": "espectacul", "espectaculares": "espectacular", "espectacularmente": "espectacular", "espectáculo": "espectacul", "espectáculos": "espectacul", "espectador": "espect", "espectadores": "espect", "espectro": "espectr", "espectrógrafo": "espectrograf", "espectrómetro": "espectrometr", "espectroredioeléctrico": "espectroredioelectr", "especulador": "especul", "especuladores": "especul", "especular": "especul", "especulativos": "especul", "especuló": "especul", "espejismo": "espej", "espejo": "espej", "espera": "esper", "esperaba": "esper", "esperábamos": "esper", "esperaban": "esper", "esperada": "esper", "esperado": "esper", "esperados": "esper", "esperamos": "esper", "esperan": "esper", "esperando": "esper", "esperanza": "esper", "esperanzado": "esperanz", "esperanzados": "esperanz", "esperanzas": "esper", "esperar": "esper", "esperara": "esper", "esperará": "esper", "esperarán": "esper", "esperaré": "esper", "esperaremos": "esper", "esperaría": "esper", "esperarlos": "esper", "esperaron": "esper", "esperarse": "esper", "espere": "esper", "esperemos": "esper", "espero": "esper", "esperó": "esper", "esperpénticas": "esperpent", "espesa": "espes", "espesor": "espesor", "espetar": "espet", "espía": "espi", "espían": "espi", "espiando": "espi", "espina": "espin", "espinal": "espinal", "espinosa": "espin", "espinoso": "espin", "espinoza": "espinoz", "espionaje": "espionaj", "espiridión": "espiridion", "espíritu": "espiritu", "espiritual": "espiritual", "espirituales": "espiritual", "espiritualidad": "espiritual", "espiritualmente": "espiritual", "espíritus": "espiritus", "esplendor": "esplendor", "esplendores": "esplendor", "espontánea": "espontane", "espontáneamente": "espontan", "espontáneo": "espontane", "esporádica": "esporad", "esposa": "espos", "esposas": "espos", "esposo": "espos", "esposos": "espos", "espuela": "espuel", "espuma": "espum", "esqueleto": "esquelet", "esquema": "esquem", "esquemas": "esquem", "esquer": "esqu", "esquiar": "esqui", "esquimal": "esquimal", "esquina": "esquin", "esquinas": "esquin", "esquivar": "esquiv", "esquivel": "esquivel", "esquizofrenia": "esquizofreni", "esta": "esta", "ésta": "esta", "está": "esta", "estaba": "estab", "estábamos": "estab", "estaban": "estab", "estabilidad": "estabil", "estabilizar": "estabiliz", "estable": "establ", "establece": "establec", "establecemos": "establec", "establecen": "establec", "establecer": "establec", "establecerá": "establec", "establecerse": "establec", "establecía": "establec", "establecían": "establec", "establecida": "establec", "establecidas": "establec", "establecido": "establec", "establecidos": "establec", "estableciendo": "establec", "establecieron": "establec", "establecimiento": "establec", "establecimientos": "establec", "estableció": "establec", "establezca": "establezc", "establezcan": "establezc", "estación": "estacion", "estacionado": "estacion", "estacionados": "estacion", "estacionamiento": "estacion", "estacionamientos": "estacion", "estacionar": "estacion", "estacionarios": "estacionari", "estacionarse": "estacion", "estaciones": "estacion", "estacionó": "estacion", "estacón": "estacon", "estadía": "estad", "estadio": "estadi", "estadios": "estadi", "estadista": "estad", "estadistas": "estad", "estadística": "estadist", "estadísticas": "estadist", "estado": "estad", "estados": "estad", "estadounidense": "estadounidens", "estadounidenses": "estadounidens", "estafan": "estaf", "estalla": "estall", "estallar": "estall", "estallaría": "estall", "estallido": "estall", "estalló": "estall", "estambre": "estambr", "estamos": "estam", "estampas": "estamp", "estampilla": "estampill", "estampita": "estampit", "están": "estan", "estancadas": "estanc", "estancamiento": "estanc", "estancarse": "estanc", "estancia": "estanci", "estancias": "estanci", "estandar": "estand", "estándar": "estand", "estándares": "estandar", "estandarizadas": "estandariz", "estandarte": "estandart", "estando": "estand", "estanques": "estanqu", "estanzuela": "estanzuel", "estar": "estar", "estará": "estar", "estarán": "estaran", "estaremos": "estar", "estaría": "estar", "estaríamos": "estar", "estarían": "estar", "estarle": "estarl", "estarse": "estars", "estas": "estas", "éstas": "estas", "estás": "estas", "estatal": "estatal", "estatales": "estatal", "estatua": "estatu", "estatuas": "estatu", "estatura": "estatur", "estatuto": "estatut", "estatutos": "estatut", "este": "este", "éste": "este", "esté": "este", "esteban": "esteb", "estelar": "estel", "estelares": "estelar", "estelarizado": "estelariz", "estelarizar": "estelariz", "estemos": "estem", "estén": "esten", "estéreo": "estere", "estereotipan": "estereotip", "esterlinas": "esterlin", "esternón": "esternon", "estética": "estet", "estéticamente": "estet", "estéticas": "estet", "estéticos": "estet", "estévez": "estevez", "esthela": "esthel", "esther": "esther", "estigma": "estigm", "estilo": "estil", "estilos": "estil", "estima": "estim", "estimaba": "estim", "estimación": "estim", "estimaciones": "estim", "estimada": "estim", "estimado": "estim", "estimados": "estim", "estimamos": "estim", "estiman": "estim", "estimando": "estim", "estimarás": "estim", "estimaron": "estim", "estimé": "estim", "estimó": "estim", "estimula": "estimul", "estimulación": "estimul", "estimulada": "estimul", "estimulado": "estimul", "estimulados": "estimul", "estimular": "estimul", "estimulo": "estimul", "estímulo": "estimul", "estímulos": "estimul", "estipula": "estipul", "estipulaba": "estipul", "estira": "estir", "estiró": "estir", "estirón": "estiron", "estirpe": "estirp", "esto": "esto", "ésto": "esto", "estocada": "estoc", "estocolmo": "estocolm", "estomacal": "estomacal", "estómago": "estomag", "estopa": "estop", "estoperoles": "estoperol", "estorba": "estorb", "estorbaba": "estorb", "estorbe": "estorb", "estos": "estos", "éstos": "estos", "estoy": "estoy", "estrada": "estrad", "estrado": "estrad", "estragos": "estrag", "estrangulado": "estrangul", "estrasburgo": "estrasburg", "estratagemas": "estratagem", "estratega": "estrateg", "estrategia": "estrategi", "estrategias": "estrategi", "estratégica": "estrateg", "estratégicas": "estrateg", "estratégico": "estrateg", "estratégicos": "estrateg", "estratos": "estrat", "estratosféricas": "estratosfer", "estrecha": "estrech", "estrechándose": "estrech", "estrechar": "estrech", "estrecharon": "estrech", "estrechas": "estrech", "estrecho": "estrech", "estrechó": "estrech", "estrechos": "estrech", "estrella": "estrell", "estrellado": "estrell", "estrellamos": "estrell", "estrellar": "estrell", "estrellas": "estrell", "estrelló": "estrell", "estremeció": "estremec", "estrena": "estren", "estrenado": "estren", "estrenan": "estren", "estrenando": "estren", "estrenándose": "estren", "estrenar": "estren", "estrenará": "estren", "estrenaron": "estren", "estreno": "estren", "estrenó": "estren", "estrenos": "estren", "estrépito": "estrepit", "estrepitosa": "estrepit", "estrepitosamente": "estrepit", "estribo": "estrib", "estricta": "estrict", "estrictamente": "estrict", "estrictas": "estrict", "estricto": "estrict", "estrictos": "estrict", "estropeadas": "estrop", "estropear": "estrop", "estructura": "estructur", "estructuración": "estructur", "estructural": "estructural", "estructuras": "estructur", "estruendo": "estruend", "estudia": "estudi", "estudiaba": "estudi", "estudiaban": "estudi", "estudiados": "estudi", "estudian": "estudi", "estudiando": "estudi", "estudiante": "estudi", "estudiantes": "estudi", "estudiantil": "estudiantil", "estudiantiles": "estudiantil", "estudiar": "estudi", "estudiará": "estudi", "estudiaron": "estudi", "estudiarse": "estudi", "estudie": "estudi", "estudié": "estudi", "estudien": "estudi", "estudio": "estudi", "estudió": "estud", "estudios": "estudi", "estudioso": "estudi", "estudiosos": "estudi", "estupefacción": "estupefaccion", "estupefacta": "estupefact", "estupendo": "estupend", "estúpida": "estup", "estupideces": "estupidec", "estuve": "estuv", "estuviera": "estuv", "estuviéramos": "estuv", "estuvieran": "estuv", "estuvieron": "estuv", "estuviese": "estuv", "estuvimos": "estuv", "estuvo": "estuv", "etapa": "etap", "etapas": "etap", "etc": "etc", "etcétera": "etceter", "etchohuaquila": "etchohuaquil", "eternidad": "etern", "eterno": "etern", "ethernet": "ethernet", "ethnology": "ethnology", "ética": "etic", "éticas": "etic", "etienne": "etienn", "etíope": "etiop", "etiopía": "etiop", "etiqueta": "etiquet", "etiquetas": "etiquet", "etnia": "etni", "étnica": "etnic", "étnicas": "etnic", "étnico": "etnic", "etnografía": "etnograf", "etnohistórico": "etnohistor", "ettiene": "ettien", "eu": "eu", "eucalipto": "eucalipt", "eudelio": "eudeli", "euforia": "eufori", "eugéne": "eugen", "eugenia": "eugeni", "eugenio": "eugeni", "eugui": "eugui", "eulalio": "eulali", "eurípides": "euripid", "eurobonos": "eurobon", "europa": "europ", "europea": "europe", "europeas": "europ", "europeo": "europe", "europeos": "europe", "eurovisión": "eurovision", "eusebio": "eusebi", "eustolio": "eustoli", "eva": "eva", "evacuación": "evacu", "evacuados": "evacu", "evacuan": "evacu", "evacuar": "evacu", "evadía": "evad", "evadió": "evad", "evadir": "evad", "evaluacion": "evaluacion", "evaluación": "evalu", "evaluaciones": "evalu", "evaluado": "evalu", "evaluador": "evalu", "evaluados": "evalu", "evalúan": "evalu", "evaluar": "evalu", "evaluarán": "evalu", "evaluaron": "evalu", "evangélicos": "evangel", "evangelización": "evangeliz", "evangelizan": "evangeliz", "evangelizar": "evangeliz", "evasión": "evasion", "evasivas": "evas", "evasivo": "evas", "evento": "event", "eventos": "event", "eventual": "eventual", "eventuales": "eventual", "eventualmente": "eventual", "ever": "ever", "everardo": "everard", "everman": "everm", "everton": "everton", "evidencia": "evident", "evidenciado": "evidenci", "evidencian": "evidenci", "evidencias": "evident", "evidenció": "evidenc", "evidente": "evident", "evidentemente": "evident", "evidentes": "evident", "evita": "evit", "evitado": "evit", "evitan": "evit", "evitando": "evit", "evitar": "evit", "evitara": "evit", "evitará": "evit", "evitaremos": "evit", "evitarla": "evit", "evitarle": "evit", "evitarlo": "evit", "evitarse": "evit", "evite": "evit", "eviten": "evit", "evitó": "evit", "evocación": "evoc", "evolución": "evolu", "evolucionando": "evolucion", "evolucionara": "evolucion", "evolucionarios": "evolucionari", "evolucionaron": "evolucion", "evolucionen": "evolucion", "ex": "ex", "exacta": "exact", "exactamente": "exact", "exactas": "exact", "exactitud": "exactitud", "exacto": "exact", "exageraciones": "exager", "exagerada": "exager", "exagerado": "exager", "exagerados": "exager", "exageraron": "exager", "exalumnas": "exalumn", "exalumnos": "exalumn", "examen": "exam", "exámenes": "examen", "examina": "examin", "examinado": "examin", "examinados": "examin", "examinando": "examin", "examinar": "examin", "examinen": "examin", "examinó": "examin", "exc": "exc", "excandidato": "excandidat", "excatedrático": "excatedrat", "excavaciones": "excav", "excavando": "excav", "excede": "exced", "exceden": "exced", "excedernos": "exced", "excediendo": "exced", "excedieron": "exced", "excel": "excel", "excelencia": "excelent", "excelente": "excelent", "excelentemente": "excelent", "excelentes": "excelent", "excelsa": "excels", "excélsior": "excelsior", "excepción": "excepcion", "excepcional": "excepcional", "excepcionales": "excepcional", "excepciones": "excepcion", "excepto": "except", "excesiva": "exces", "excesivamente": "exces", "excesivo": "exces", "excesivos": "exces", "exceso": "exces", "excesos": "exces", "exchange": "exchang", "excita": "excit", "excitación": "excit", "excitan": "excit", "excitante": "excit", "excitantes": "excit", "excitarse": "excit", "exclama": "exclam", "exclamación": "exclam", "exclamó": "exclam", "excluidos": "exclu", "exclusión": "exclusion", "exclusiva": "exclus", "exclusivamente": "exclus", "exclusivas": "exclus", "exclusividad": "exclus", "exclusividades": "exclus", "exclusivo": "exclus", "exclusivos": "exclus", "excluyendo": "exclu", "excolega": "excoleg", "excomunión": "excomunion", "excursiones": "excursion", "excusarse": "excus", "excusas": "excus", "exención": "exencion", "exenta": "exent", "exento": "exent", "exhala": "exhal", "exhaustiva": "exhaust", "exhibe": "exhib", "exhiben": "exhib", "exhibía": "exhib", "exhibición": "exhibicion", "exhibiciones": "exhibicion", "exhibida": "exhib", "exhibidas": "exhib", "exhibido": "exhib", "exhibiendo": "exhib", "exhibiera": "exhib", "exhibiere": "exhibier", "exhibieren": "exhibier", "exhibimos": "exhib", "exhibió": "exhib", "exhibirá": "exhib", "exhibirán": "exhib", "exhibirse": "exhib", "exhoneración": "exhoner", "exhorta": "exhort", "exhortaban": "exhort", "exhortan": "exhort", "exhortando": "exhort", "exhorto": "exhort", "exhortó": "exhort", "exige": "exig", "exigen": "exig", "exigencia": "exigent", "exigencias": "exigent", "exigente": "exigent", "exigentes": "exigent", "exigían": "exig", "exigida": "exig", "exigido": "exig", "exigiendo": "exig", "exigieran": "exig", "exigieron": "exig", "exigimos": "exig", "exigió": "exig", "exigir": "exig", "exigira": "exigir", "exigirá": "exig", "exigiría": "exig", "exigirle": "exig", "exigirles": "exig", "exigirse": "exig", "exija": "exij", "exijan": "exij", "exilio": "exili", "exime": "exim", "eximir": "exim", "eximirlos": "exim", "exista": "exist", "existan": "exist", "existe": "exist", "existen": "exist", "existencia": "existent", "existente": "existent", "existentes": "existent", "existía": "exist", "existían": "exist", "existido": "exist", "existiendo": "exist", "existió": "exist", "existir": "exist", "existirán": "exist", "exito": "exit", "éxito": "exit", "éxitos": "exit", "exitosa": "exit", "exitosamente": "exit", "exitosas": "exit", "exitoso": "exit", "exitosos": "exit", "éxodo": "exod", "exonera": "exoner", "exóticas": "exot", "exoticos": "exot", "exóticos": "exot", "expander": "expand", "expandera": "expander", "expandido": "expand", "expandieron": "expand", "expandirán": "expand", "expandirse": "expand", "expansion": "expansion", "expansión": "expansion", "expansiva": "expans", "expectación": "expect", "expectativa": "expect", "expectativas": "expect", "expedición": "expedicion", "expedidas": "exped", "expediente": "expedient", "expedientes": "expedient", "expedir": "exped", "expedirse": "exped", "expedito": "expedit", "expenden": "expend", "expendio": "expendi", "experiencia": "experient", "experiencias": "experient", "experimenta": "experiment", "experimentación": "experiment", "experimentadas": "experiment", "experimentado": "experiment", "experimentados": "experiment", "experimental": "experimental", "experimentar": "experiment", "experimentarse": "experiment", "experimento": "experiment", "experimentó": "experiment", "experto": "expert", "expertos": "expert", "expidan": "expid", "expide": "expid", "expidieron": "expid", "expira": "expir", "expirar": "expir", "explanada": "explan", "explica": "explic", "explicaban": "explic", "explicación": "explic", "explicaciones": "explic", "explicado": "explic", "explicamos": "explic", "explican": "explic", "explicando": "explic", "explicar": "explic", "explicara": "explic", "explicará": "explic", "explicarles": "explic", "explicarlo": "explic", "explicaron": "explic", "explicó": "explic", "explique": "expliqu", "explora": "explor", "exploraban": "explor", "exploración": "explor", "explorado": "explor", "exploran": "explor", "explorar": "explor", "explosión": "explosion", "explosiva": "explos", "explosividad": "explos", "explosivo": "explos", "explosivos": "explos", "explotación": "explot", "explotado": "explot", "explotan": "explot", "explotar": "explot", "explotará": "explot", "explotarse": "explot", "explotó": "explot", "expo": "expo", "expondrá": "expondr", "expondrán": "expondran", "expondremos": "expondr", "expone": "expon", "exponentes": "exponent", "exponer": "expon", "exponernos": "expon", "exponerse": "expon", "exponga": "expong", "expongan": "expong", "exponían": "expon", "exponiéndose": "expon", "expoplaza": "expoplaz", "exporta": "export", "exportación": "export", "exportaciones": "export", "exportado": "export", "exportador": "export", "exportadoras": "export", "exportadores": "export", "exportados": "export", "exportamos": "export", "exportan": "export", "exportando": "export", "exportar": "export", "exporters": "exporters", "exportó": "export", "exposición": "exposicion", "exposiciones": "exposicion", "expresa": "expres", "expresada": "expres", "expresadas": "expres", "expresado": "expres", "expresamente": "expres", "expresan": "expres", "expresando": "expres", "expresar": "expres", "expresaron": "expres", "expresarse": "expres", "expresé": "expres", "expresidentes": "expresident", "expresión": "expresion", "expresiones": "expresion", "expresiva": "expres", "expreso": "expres", "expresó": "expres", "express": "express", "expropiar": "expropi", "expuesta": "expuest", "expuesto": "expuest", "expuestos": "expuest", "expulsada": "expuls", "expulsado": "expuls", "expulsados": "expuls", "expulsar": "expuls", "expulsarlo": "expuls", "expulsarme": "expuls", "expulsaron": "expuls", "expulsión": "expulsion", "expusiera": "expus", "expusieron": "expus", "expuso": "expus", "exquisitamente": "exquisit", "exquisiteces": "exquisitec", "exquisitos": "exquisit", "exsecretario": "exsecretari", "extendemos": "extend", "extender": "extend", "extenderá": "extend", "extenderse": "extend", "extendido": "extend", "extendieron": "extend", "extendió": "extend", "extensa": "extens", "extensas": "extens", "extensión": "extension", "extensiones": "extension", "extensivo": "extens", "extenso": "extens", "extenuación": "extenu", "extenuar": "extenu", "exterior": "exterior", "exteriores": "exterior", "externa": "extern", "externado": "extern", "externaron": "extern", "externas": "extern", "externo": "extern", "externó": "extern", "externos": "extern", "extiendan": "extiend", "extiende": "extiend", "extienden": "extiend", "extinción": "extincion", "extinguidores": "extinguidor", "extinta": "extint", "extirpar": "extirp", "extirparon": "extirp", "extorsionando": "extorsion", "extorsionar": "extorsion", "extorsionaron": "extorsion", "extorsiones": "extorsion", "extosionando": "extosion", "extra": "extra", "extrabajadores": "extrabaj", "extracción": "extraccion", "extracto": "extract", "extradición": "extradicion", "extraer": "extra", "extraerle": "extra", "extraescolar": "extraescol", "extraída": "extraid", "extraído": "extraid", "extrajo": "extraj", "extraña": "extrañ", "extrañaba": "extrañ", "extrañados": "extrañ", "extrañas": "extrañ", "extrañe": "extrañ", "extrañeza": "extrañez", "extranjera": "extranjer", "extranjeras": "extranjer", "extranjero": "extranjer", "extranjeros": "extranjer", "extraño": "extrañ", "extraños": "extrañ", "extraoficial": "extraoficial", "extraoficiales": "extraoficial", "extraoficialmente": "extraoficial", "extraordinaria": "extraordinari", "extraordinariamente": "extraordinari", "extraordinarias": "extraordinari", "extraordinario": "extraordinari", "extraordinarios": "extraordinari", "extras": "extras", "extraterrestres": "extraterrestr", "extravagantes": "extravag", "extraviadas": "extravi", "extraviado": "extravi", "extravío": "extravi", "extravió": "extrav", "extrema": "extrem", "extremadamente": "extrem", "extremo": "extrem", "extremos": "extrem", "exvotos": "exvot", "exxon": "exxon", "eye": "eye", "ezeta": "ezet", "f": "f", "fabián": "fabian", "fabiana": "fabian", "fabio": "fabi", "fabrica": "fabric", "fábrica": "fabric", "fabricación": "fabric", "fabricadas": "fabric", "fabricado": "fabric", "fabricante": "fabric", "fabricantes": "fabric", "fabricar": "fabric", "fabricará": "fabric", "fabricarla": "fabric", "fábricas": "fabric", "fabricó": "fabric", "fabrique": "fabriqu", "fabulosas": "fabul", "fabuloso": "fabul", "fabulosos": "fabul", "facciones": "faccion", "faceta": "facet", "facha": "fach", "fachada": "fach", "fácil": "facil", "fáciles": "facil", "facilidad": "facil", "facilidades": "facil", "facilita": "facilit", "facilitaba": "facilit", "facilitados": "facilit", "facilitando": "facilit", "facilitar": "facilit", "facilitará": "facilit", "facilitarán": "facilit", "facilitarles": "facilit", "facilitarlos": "facilit", "facilite": "facilit", "faciliten": "facilit", "fácilmente": "facil", "factible": "factibl", "factibles": "factibl", "facto": "fact", "factor": "factor", "factorajes": "factoraj", "factores": "factor", "facts": "facts", "factura": "factur", "facturación": "factur", "facturada": "factur", "facturados": "factur", "facturar": "factur", "facturas": "factur", "facturó": "factur", "faculta": "facult", "facultad": "facult", "facultades": "facultad", "facultados": "facult", "facultativos": "facult", "facundo": "facund", "faena": "faen", "faenas": "faen", "fagotistas": "fagot", "fahr": "fahr", "fairfax": "fairfax", "faisán": "faisan", "faja": "faj", "fajarse": "faj", "fajín": "fajin", "fal": "fal", "falacci": "falacci", "falcón": "falcon", "falda": "fald", "faldas": "fald", "falla": "fall", "fallado": "fall", "fallan": "fall", "fallar": "fall", "fallaron": "fall", "fallas": "fall", "fallece": "fallec", "fallecido": "fallec", "fallecidos": "fallec", "falleciera": "fallec", "fallecieron": "fallec", "falleció": "fallec", "fallen": "fall", "fallida": "fall", "fallido": "fall", "fallo": "fall", "falló": "fall", "falls": "falls", "falsa": "fals", "falsas": "fals", "falsete": "falset", "falsificación": "falsif", "falsificados": "falsific", "falsificó": "falsific", "falso": "fals", "falsos": "fals", "falta": "falt", "faltaba": "falt", "faltaban": "falt", "faltado": "falt", "faltan": "falt", "faltando": "falt", "faltándole": "falt", "faltante": "faltant", "faltar": "falt", "faltara": "falt", "faltas": "falt", "falte": "falt", "falté": "falt", "falto": "falt", "faltó": "falt", "faltriquera": "faltriquer", "fama": "fam", "familia": "famili", "familiar": "famili", "familiares": "familiar", "familiarice": "familiaric", "familiarizado": "familiariz", "familiarizarse": "familiariz", "familias": "famili", "famosa": "famos", "famosas": "fam", "famoso": "famos", "famosos": "famos", "fanaticada": "fanatic", "fanáticas": "fanat", "fanático": "fanat", "fanáticos": "fanat", "fanfarrias": "fanfarri", "fango": "fang", "fans": "fans", "fantasía": "fantas", "fantasmas": "fantasm", "farías": "far", "farinas": "farin", "farmaceútica": "farmaceut", "farmacia": "farmaci", "farmacias": "farmaci", "farmacodependientes": "farmacodependient", "farmacología": "farmacolog", "farmar": "farm", "farrugia": "farrugi", "farsa": "fars", "farsante": "farsant", "fascinación": "fascin", "fascinante": "fascin", "fase": "fas", "fases": "fas", "fast": "fast", "fastuosos": "fastuos", "fatal": "fatal", "fatales": "fatal", "fatalmente": "fatal", "fatiga": "fatig", "fatigado": "fatig", "fátima": "fatim", "fauna": "faun", "faustino": "faustin", "fausto": "faust", "favor": "favor", "favorable": "favor", "favorablemente": "favor", "favorables": "favor", "favorece": "favorec", "favorecer": "favorec", "favorecerá": "favorec", "favorecerán": "favorec", "favorecía": "favorec", "favorecían": "favorec", "favorecieron": "favorec", "favorecimiento": "favorec", "favoreció": "favorec", "favores": "favor", "favorezcan": "favorezc", "favorita": "favorit", "favoritas": "favorit", "favoritismo": "favorit", "favorito": "favorit", "favoritos": "favorit", "fax": "fax", "faxes": "fax", "fbi": "fbi", "fda": "fda", "fe": "fe", "fea": "fea", "feas": "feas", "feat": "feat", "feb": "feb", "febrero": "febrer", "fecha": "fech", "fechada": "fech", "fechado": "fech", "fechados": "fech", "fechas": "fech", "fechorías": "fechor", "fecunda": "fecund", "fecundación": "fecund", "fecundando": "fecund", "fecundidad": "fecund", "fecundínez": "fecundinez", "federación": "feder", "federal": "federal", "federales": "federal", "federalismo": "federal", "federalización": "federaliz", "federativa": "feder", "federativas": "feder", "federativo": "feder", "federica": "feder", "federico": "feder", "feeder": "feed", "fehacientemente": "fehacient", "feldhaus": "feldhaus", "felguérez": "felguerez", "felices": "felic", "feliciano": "felician", "felicidad": "felic", "felicitación": "felicit", "felicitaciones": "felicit", "felicitada": "felicit", "felicitadas": "felicit", "felicitado": "felicit", "felicitar": "felicit", "felicitarla": "felicit", "felicitarlo": "felicit", "felicito": "felicit", "felicitó": "felicit", "felícitos": "felicit", "feligreses": "feligres", "felina": "felin", "felino": "felin", "felinos": "felin", "felipe": "felip", "félix": "felix", "feliz": "feliz", "femam": "femam", "femenil": "femenil", "femeniles": "femenil", "femenina": "femenin", "femenino": "femenin", "femeninos": "femenin", "femineidad": "femin", "feminismo": "femin", "feminista": "femin", "feministas": "femin", "femsa": "fems", "fendick": "fendick", "feneciendo": "fenec", "fenómeno": "fenomen", "fenómenos": "fenomen", "feo": "feo", "fer": "fer", "fergie": "fergi", "ferguson": "ferguson", "feria": "feri", "ferias": "feri", "fermín": "fermin", "fernanda": "fernand", "fernandez": "fernandez", "fernández": "fernandez", "fernando": "fern", "ferniza": "ferniz", "feroz": "feroz", "ferrara": "ferr", "ferrat": "ferrat", "férreo": "ferre", "ferretería": "ferret", "ferreterías": "ferret", "ferriño": "ferriñ", "ferrocarril": "ferrocarril", "ferrocarrileros": "ferrocarriler", "ferrocarriles": "ferrocarril", "ferronales": "ferronal", "ferroviaria": "ferroviari", "ferroviarias": "ferroviari", "ferroviario": "ferroviari", "ferroviarios": "ferroviari", "fértiles": "fertil", "fertilidad": "fertil", "fertilizante": "fertiliz", "fertilizantes": "fertiliz", "fesperman": "fesperm", "festeja": "festej", "festejada": "festej", "festejar": "festej", "festejaron": "festej", "festejo": "festej", "festejó": "festej", "festejos": "festej", "festiva": "festiv", "festival": "festival", "festivales": "festival", "festividades": "festiv", "festivo": "festiv", "festivos": "festiv", "fetales": "fetal", "fetos": "fet", "feudales": "feudal", "ffcc": "ffcc", "fían": "fian", "fianza": "fianz", "fib": "fib", "fibra": "fibr", "fibras": "fibr", "fibrosarcomas": "fibrosarcom", "ficción": "ficcion", "ficha": "fich", "fichado": "fich", "ficóloga": "ficolog", "fictícios": "fictici", "fideicomiso": "fideicomis", "fideicomisos": "fideicomis", "fidel": "fidel", "fidelidad": "fidel", "fidencio": "fidenci", "fidenor": "fidenor", "fidler": "fidl", "fiebre": "fiebr", "fiel": "fiel", "fieles": "fiel", "fierro": "fierr", "fiesta": "fiest", "fiestas": "fiest", "fiestota": "fiestot", "fifa": "fif", "fife": "fif", "fignon": "fignon", "figueroa": "figuero", "figura": "figur", "figuraba": "figur", "figurado": "figur", "figuran": "figur", "figuraría": "figur", "figuras": "figur", "figurativamente": "figur", "fija": "fij", "fijación": "fijacion", "fijadas": "fij", "fijado": "fij", "fijados": "fij", "fijamos": "fij", "fijan": "fij", "fijar": "fij", "fijará": "fij", "fijaron": "fij", "fijarse": "fij", "fijas": "fij", "fíjate": "fijat", "fije": "fij", "fíjese": "fijes", "fijeza": "fijez", "fijo": "fij", "fijó": "fij", "fijos": "fij", "fila": "fil", "filadelfia": "filadelfi", "filas": "fil", "filatelia": "filateli", "filatélica": "filatel", "filatélico": "filatel", "filatélicos": "filatel", "filatelismo": "filatel", "filatelista": "filatel", "filatelistas": "filatel", "filete": "filet", "filial": "filial", "filiales": "filial", "filiberto": "filibert", "filipinas": "filipin", "filipino": "filipin", "film": "film", "filmación": "filmacion", "filmado": "film", "filmados": "film", "filmar": "film", "filmaron": "film", "filme": "film", "fílmicos": "filmic", "filosofía": "filosof", "filosófica": "filosof", "filósofo": "filosof", "filósofos": "filosof", "filtración": "filtracion", "filtraciones": "filtracion", "filtro": "filtr", "filtros": "filtr", "fin": "fin", "fina": "fin", "final": "final", "finales": "final", "finalice": "finalic", "finalidad": "final", "finalista": "final", "finalistas": "final", "finaliza": "finaliz", "finalizado": "finaliz", "finalizar": "finaliz", "finalizara": "finaliz", "finalizará": "finaliz", "finalizaron": "finaliz", "finalizó": "finaliz", "finalmente": "final", "finamex": "finamex", "financiadas": "financi", "financiado": "financi", "financiados": "financi", "financial": "financial", "financiamiento": "financi", "financiamientos": "financi", "financiar": "financi", "financiera": "financ", "financieras": "financ", "financiero": "financier", "financieros": "financier", "financing": "financing", "financió": "financ", "finanzas": "finanz", "finas": "fin", "finca": "finc", "fincado": "finc", "fincó": "finc", "fines": "fin", "fingiendo": "fing", "fingieron": "fing", "fingir": "fing", "finiquitación": "finiquit", "finiquito": "finiquit", "finishing": "finishing", "finland": "finland", "fino": "fin", "finos": "fin", "fira": "fir", "firma": "firm", "firmaba": "firm", "firmaban": "firm", "firmada": "firm", "firmadas": "firm", "firmado": "firm", "firmados": "firm", "firmamos": "firm", "firman": "firm", "firmante": "firmant", "firmantes": "firmant", "firmar": "firm", "firmara": "firm", "firmará": "firm", "firmarán": "firm", "firmaron": "firm", "firmarse": "firm", "firmas": "firm", "firme": "firm", "firmemente": "firmement", "firmen": "firm", "firmes": "firm", "firmó": "firm", "first": "first", "fiscal": "fiscal", "fiscales": "fiscal", "fiscalía": "fiscal", "fiscalización": "fiscaliz", "fiscalizado": "fiscaliz", "fischer": "fisch", "fisco": "fisc", "física": "fisic", "físicamente": "fisic", "físicas": "fisic", "físico": "fisic", "físicodeportiva": "fisicodeport", "físicos": "fisic", "fisiológicamente": "fisiolog", "fisk": "fisk", "fisonomía": "fisonom", "fisura": "fisur", "fitopecuarias": "fitopecuari", "flaco": "flac", "flagrante": "flagrant", "flamante": "flamant", "flamenco": "flamenc", "flandes": "fland", "flannery": "flannery", "flanquear": "flanqu", "flaquito": "flaquit", "flaubert": "flaubert", "flavio": "flavi", "flavorite": "flavorit", "flavr": "flavr", "flecha": "flech", "flechazos": "flechaz", "flecos": "flec", "flemming": "flemming", "fleteros": "fleter", "fletes": "flet", "flexibilidad": "flexibil", "flexible": "flexibl", "flexibles": "flexibl", "flojos": "floj", "flor": "flor", "flora": "flor", "floración": "floracion", "florales": "floral", "florecita": "florecit", "florencia": "florenci", "flores": "flor", "florida": "flor", "flota": "flot", "flotación": "flotacion", "flotando": "flot", "flotantes": "flotant", "flotilla": "flotill", "flotillas": "flotill", "floyd": "floyd", "fluctuación": "fluctuacion", "fluctúan": "fluctu", "fluidez": "fluidez", "fluido": "flu", "fluído": "fluid", "flujo": "fluj", "flujos": "fluj", "flume": "flum", "fluordaniel": "fluordaniel", "fluye": "flu", "fm": "fm", "fmf": "fmf", "fmn": "fmn", "fna": "fna", "foco": "foc", "focos": "foc", "fofo": "fof", "fogatas": "fogat", "foggia": "foggi", "fogueo": "fogue", "folclórica": "folclor", "folio": "foli", "folklore": "folklor", "folklórica": "folklor", "folklórico": "folklor", "folklorismo": "folklor", "folleto": "follet", "folletos": "follet", "fomenta": "foment", "fomentaba": "foment", "fomentada": "foment", "fomentado": "foment", "fomentan": "foment", "fomentar": "foment", "fomento": "foment", "fomerrey": "fomerrey", "fonda": "fond", "fondear": "fond", "fondistas": "fondist", "fondo": "fond", "fondos": "fond", "fonética": "fonet", "fonhapo": "fonhap", "fonméxico": "fonmex", "fonseca": "fonsec", "food": "food", "foods": "foods", "foquitos": "foquit", "for": "for", "foránea": "forane", "foráneo": "forane", "foráneos": "forane", "forcados": "forc", "force": "forc", "ford": "ford", "forest": "forest", "forestación": "forest", "forestal": "forestal", "forestales": "forestal", "forista": "forist", "foristas": "forist", "forja": "forj", "forjan": "forj", "forjarse": "forj", "forma": "form", "formaban": "form", "formación": "formacion", "formada": "form", "formado": "form", "formados": "form", "formal": "formal", "formales": "formal", "formalidades": "formal", "formalización": "formaliz", "formalizar": "formaliz", "formalizará": "formaliz", "formalizarlo": "formaliz", "formalmente": "formal", "formamos": "form", "forman": "form", "formando": "form", "formar": "form", "formará": "form", "formarán": "form", "formarlo": "form", "formaron": "form", "formarse": "form", "formas": "form", "formativos": "format", "formato": "format", "formatos": "format", "forme": "form", "formen": "form", "formó": "form", "fórmula": "formul", "formulación": "formul", "formulado": "formul", "formulan": "formul", "formular": "formul", "fórmulas": "formul", "formuló": "formul", "fornica": "fornic", "fornicación": "fornic", "fornicadora": "fornic", "fornicadores": "fornic", "fornicados": "fornic", "foro": "for", "foros": "for", "forrada": "forr", "forro": "forr", "fors": "fors", "fortalece": "fortalec", "fortalecemos": "fortalec", "fortalecen": "fortalec", "fortalecer": "fortalec", "fortalecidas": "fortalec", "fortalecido": "fortalec", "fortaleciendo": "fortalec", "fortaleciéndose": "fortalec", "fortalecimiento": "fortalec", "fortaleció": "fortalec", "fortaleza": "fortalez", "fortalezca": "fortalezc", "fortalezcan": "fortalezc", "fortín": "fortin", "fortines": "fortin", "fortuna": "fortun", "fortunas": "fortun", "fortunato": "fortunat", "forzada": "forz", "forzadas": "forz", "forzar": "forz", "forzaron": "forz", "forzosa": "forzos", "forzosamente": "forz", "forzoso": "forzos", "fosas": "fos", "fosforescente": "fosforescent", "fosforescentes": "fosforescent", "fósiles": "fosil", "foster": "fost", "foto": "fot", "fotocopiadoras": "fotocopi", "fotocredencialización": "fotocredencializ", "fotocredencializadas": "fotocredencializ", "fotocredencializados": "fotocredencializ", "fotocredencializar": "fotocredencializ", "fotografía": "fotograf", "fotografiar": "fotografi", "fotografías": "fotograf", "fotográfica": "fotograf", "fotográficas": "fotograf", "fotógrafo": "fotograf", "fotógrafos": "fotograf", "fotomecánica": "fotomecan", "fotoquímicos": "fotoquim", "fotos": "fot", "found": "found", "foundation": "foundation", "fovi": "fovi", "fovissste": "fovissst", "fox": "fox", "foxpro": "foxpr", "fracasado": "fracas", "fracasar": "fracas", "fracasaron": "fracas", "fracase": "frac", "fracaso": "fracas", "fracasó": "fracas", "fracasos": "fracas", "fracc": "fracc", "fracción": "fraccion", "fraccionadas": "fraccion", "fraccionador": "fraccion", "fraccionadores": "fraccion", "fraccionamiento": "fraccion", "fraccionamientos": "fraccion", "fraccionarios": "fraccionari", "fracciones": "fraccion", "fractura": "fractur", "fracturado": "fractur", "fracturados": "fractur", "fracturarse": "fractur", "fracturas": "fractur", "fragancias": "fraganci", "frágil": "fragil", "frágiles": "fragil", "fragmenta": "fragment", "fragmentación": "fragment", "fragmentos": "fragment", "fragor": "fragor", "fraguando": "fragu", "franca": "franc", "francamente": "franc", "francas": "franc", "france": "franc", "francés": "frances", "francesa": "frances", "franceses": "frances", "francia": "franci", "francisco": "francisc", "franco": "franc", "francos": "franc", "francotirador": "francotir", "franela": "franel", "frank": "frank", "franklin": "franklin", "franklyn": "franklyn", "franqueó": "franque", "franqueza": "franquez", "franquicia": "franquici", "franquiciaba": "franquici", "franquicias": "franquici", "franz": "franz", "frapi": "frapi", "frase": "fras", "fraseo": "frase", "frases": "fras", "frasquito": "frasquit", "fraterna": "fratern", "fraternal": "fraternal", "fraternidad": "fratern", "fraude": "fraud", "fraudes": "fraud", "fraudulenta": "fraudulent", "fraudulentas": "fraudulent", "fraudulento": "fraudulent", "frausto": "fraust", "frayre": "frayr", "frecuencia": "frecuenci", "frecuencias": "frecuenci", "frecuentada": "frecuent", "frecuentado": "frecuent", "frecuentan": "frecuent", "frecuentando": "frecuent", "frecuentaran": "frecuent", "frecuente": "frecuent", "frecuentemente": "frecuent", "frecuentes": "frecuent", "frederick": "frederick", "freedom": "freedom", "freeport": "freeport", "fregado": "freg", "fregonería": "fregon", "frenado": "fren", "frenados": "fren", "frenar": "fren", "freno": "fren", "frenó": "fren", "frenos": "fren", "frente": "frent", "frentes": "frent", "fresas": "fres", "fresca": "fresc", "frescas": "fresc", "fresco": "fresc", "frescura": "frescur", "fresh": "fresh", "freud": "freud", "fría": "fri", "frias": "fri", "frías": "fri", "fricase": "fric", "fricciones": "friccion", "frida": "frid", "fried": "fri", "frijol": "frijol", "frijoles": "frijol", "frío": "fri", "friolentas": "friolent", "friolentos": "friolent", "fríos": "fri", "frisco": "frisc", "fritos": "frit", "fritz": "fritz", "frivolidad": "frivol", "frontal": "frontal", "frontalmente": "frontal", "frontera": "fronter", "fronteras": "fronter", "fronteriza": "fronteriz", "fronterizo": "fronteriz", "fronterizos": "fronteriz", "fructificar": "fructific", "fructuoso": "fructuos", "frustración": "frustracion", "frustrada": "frustr", "frustradas": "frustr", "frustrado": "frustr", "fruta": "frut", "frutales": "frutal", "frutas": "frut", "fruto": "frut", "frutos": "frut", "fstse": "fstse", "fucsia": "fucsi", "fue": "fue", "fuego": "fueg", "fuehrer": "fuehr", "fuente": "fuent", "fuentes": "fuent", "fuera": "fuer", "fueran": "fuer", "fuere": "fuer", "fuero": "fuer", "fueron": "fueron", "fuerte": "fuert", "fuertemente": "fuertement", "fuertes": "fuert", "fuerza": "fuerz", "fuerzas": "fuerz", "fuese": "fues", "fuesen": "fues", "fuezas": "fuez", "fuga": "fug", "fui": "fui", "fuiste": "fuist", "fujimori": "fujimori", "fujimorista": "fujimor", "fukuoka": "fukuok", "fulano": "fulan", "fulgor": "fulgor", "fuller": "full", "fulminante": "fulmin", "fulminantemente": "fulmin", "fulminó": "fulmin", "fuman": "fum", "fumando": "fum", "fumarolas": "fumarol", "función": "funcion", "funciona": "funcion", "funcionaba": "funcion", "funcional": "funcional", "funcionalidad": "funcional", "funcionalidades": "funcional", "funcionamiento": "funcion", "funcionan": "funcion", "funcionando": "funcion", "funcionar": "funcion", "funcionará": "funcion", "funcionaran": "funcion", "funcionarán": "funcion", "funcionaria": "funcionari", "funcionarias": "funcionari", "funcionario": "funcionari", "funcionarios": "funcionari", "funcionaron": "funcion", "funcione": "funcion", "funciones": "funcion", "funcionó": "funcion", "fund": "fund", "funda": "fund", "fundación": "fundacion", "fundaciones": "fundacion", "fundada": "fund", "fundado": "fund", "fundador": "fundador", "fundadora": "fundador", "fundadoras": "fundador", "fundadores": "fundador", "fundamenta": "fundament", "fundamentados": "fundament", "fundamental": "fundamental", "fundamentales": "fundamental", "fundamentalismo": "fundamental", "fundamentalmente": "fundamental", "fundamento": "fundament", "fundamentos": "fundament", "fundar": "fund", "fundara": "fund", "fundaran": "fund", "fundarán": "fund", "fundaron": "fund", "fundarse": "fund", "funde": "fund", "funden": "fund", "fundente": "fundent", "fundición": "fundicion", "fundiciones": "fundicion", "fundidora": "fundidor", "fundó": "fund", "funerales": "funeral", "funge": "fung", "fungía": "fung", "fungían": "fung", "fungió": "fung", "fungir": "fung", "funk": "funk", "funny": "funny", "furgones": "furgon", "furia": "furi", "furibunda": "furibund", "furibundo": "furibund", "furioso": "furios", "furtiva": "furtiv", "furtivo": "furtiv", "furtivos": "furtiv", "fusión": "fusion", "fusionada": "fusion", "fusiones": "fusion", "futbol": "futbol", "futbolista": "futbol", "futbolistas": "futbol", "futbolística": "futbolist", "futbolísticamente": "futbolist", "futbolístico": "futbolist", "futbolísticos": "futbolist", "futura": "futur", "futuras": "futur", "futureando": "futur", "futurismo": "futur", "futurista": "futur", "futuro": "futur", "futuros": "futur", "fxg": "fxg", "g": "g", "gabanna": "gabann", "gabinete": "gabinet", "gabriel": "gabriel", "gabriela": "gabriel", "gado": "gad", "gafete": "gafet", "gail": "gail", "gala": "gal", "galán": "galan", "galanes": "galan", "galante": "galant", "galardón": "galardon", "galardonada": "galardon", "galardonado": "galardon", "galardonados": "galardon", "galardones": "galardon", "galarza": "galarz", "galeana": "galean", "galenos": "galen", "galeones": "galeon", "galeras": "galer", "galería": "gal", "galerías": "gal", "gales": "gal", "galicia": "galici", "galileo": "galile", "galimanty": "galimanty", "galindo": "galind", "gallardo": "gallard", "gallego": "galleg", "gallegos": "galleg", "galleta": "gallet", "galletitas": "galletit", "gallina": "gallin", "gallinas": "gallin", "gallinero": "galliner", "gallo": "gall", "gallont": "gallont", "gallos": "gall", "galvak": "galvak", "galvamet": "galvamet", "galván": "galvan", "galvanizada": "galvaniz", "gama": "gam", "gámez": "gamez", "gamma": "gamm", "gamuza": "gamuz", "gana": "gan", "ganaban": "gan", "ganada": "gan", "ganadas": "gan", "ganadera": "ganader", "ganadería": "ganad", "ganadero": "ganader", "ganaderos": "ganader", "ganado": "gan", "ganador": "ganador", "ganadora": "ganador", "ganadores": "ganador", "ganados": "gan", "ganamos": "gan", "ganan": "gan", "ganancia": "gananci", "ganancias": "gananci", "ganando": "gan", "ganar": "gan", "ganará": "gan", "ganarán": "gan", "ganarla": "gan", "ganarle": "gan", "ganarles": "gan", "ganaron": "gan", "ganarse": "gan", "ganas": "gan", "gancho": "ganch", "ganchó": "ganch", "ganchos": "ganch", "gane": "gan", "ganen": "gan", "gangas": "gang", "gannet": "gannet", "ganó": "gan", "gaona": "gaon", "garantía": "garant", "garantías": "garant", "garantice": "garantic", "garantices": "garantic", "garantiza": "garantiz", "garantizaba": "garantiz", "garantizaban": "garantiz", "garantizada": "garantiz", "garantizadas": "garantiz", "garantizar": "garantiz", "garantizarán": "garantiz", "garantizaron": "garantiz", "garantizarse": "garantiz", "garantizo": "garantiz", "garcía": "garc", "gardenia": "gardeni", "garduño": "garduñ", "garfield": "garfield", "garganta": "gargant", "gargantilla": "gargantill", "gari": "gari", "garibay": "garibay", "garitos": "garit", "garma": "garm", "garras": "garr", "garrido": "garr", "garrison": "garrison", "garrocha": "garroch", "garrotero": "garroter", "garroteros": "garroter", "gary": "gary", "garza": "garz", "gas": "gas", "gasca": "gasc", "gasera": "gaser", "gaseras": "gaser", "gases": "gas", "gasoducto": "gasoduct", "gasóleo": "gasole", "gasolina": "gasolin", "gasolinas": "gasolin", "gasolinera": "gasoliner", "gasolinerías": "gasolin", "gaspar": "gasp", "gasparini": "gasparini", "gasset": "gasset", "gastado": "gast", "gastados": "gast", "gastando": "gast", "gastar": "gast", "gastarán": "gast", "gastarla": "gast", "gastaron": "gast", "gaste": "gast", "gasto": "gast", "gastó": "gast", "gastolfo": "gastolf", "gastón": "gaston", "gastona": "gaston", "gastos": "gast", "gastritis": "gastritis", "gastroenterología": "gastroenterolog", "gatauline": "gataulin", "gates": "gat", "gatica": "gatic", "gato": "gat", "gatorade": "gatorad", "gatos": "gat", "gatt": "gatt", "gaucho": "gauch", "gauna": "gaun", "gavaldon": "gavaldon", "gavaldón": "gavaldon", "gavica": "gavic", "gaviria": "gaviri", "gaytán": "gaytan", "gazal": "gazal", "gds": "gds", "gehard": "gehard", "geiser": "geis", "gelasio": "gelasi", "gélida": "gel", "gélido": "gel", "gemebundo": "gemebund", "gemelas": "gemel", "gemelos": "gemel", "gemido": "gem", "gemidos": "gem", "genaro": "genar", "gendarme": "gend", "gene": "gen", "genealógico": "genealog", "genera": "gener", "generación": "gener", "generaciones": "gener", "generada": "gener", "generado": "gener", "generador": "gener", "generadora": "gener", "generadores": "gener", "generados": "gener", "general": "general", "generales": "general", "generalidad": "general", "generalista": "general", "generalizaciones": "generaliz", "generalizada": "generaliz", "generalizado": "generaliz", "generalizados": "generaliz", "generalizar": "generaliz", "generalmente": "general", "generan": "gener", "generando": "gener", "generandoles": "gener", "generar": "gener", "generará": "gener", "generarán": "gener", "generaron": "gener", "generarse": "gener", "genérico": "gener", "generis": "generis", "género": "gener", "generó": "gener", "géneros": "gener", "generosa": "gener", "generosas": "gener", "generoso": "gener", "genes": "gen", "genesio": "genesi", "genetec": "genetec", "genética": "genet", "genéticamente": "genet", "genético": "genet", "genéticos": "genet", "genetistas": "genet", "genial": "genial", "geniales": "genial", "genio": "geni", "genios": "geni", "genital": "genital", "genitales": "genital", "geno": "gen", "genocidio": "genocidi", "genpham": "genpham", "gente": "gent", "gentes": "gent", "gentor": "gentor", "genuinamente": "genuin", "geo": "geo", "geográficas": "geograf", "geográfico": "geograf", "geographic": "geographic", "geológicos": "geolog", "geólogos": "geolog", "george": "georg", "georges": "georg", "gephard": "gephard", "gephardt": "gephardt", "gerald": "gerald", "gerardo": "gerard", "gerda": "gerd", "gerencia": "gerenci", "gerencial": "gerencial", "gerenciales": "gerencial", "gerencias": "gerenci", "gerente": "gerent", "gerentes": "gerent", "germán": "german", "germen": "germ", "geroncio": "geronci", "gerónimo": "geronim", "gestado": "gest", "gestando": "gest", "gestión": "gestion", "gestionando": "gestion", "gestionar": "gestion", "gestiones": "gestion", "gesto": "gest", "gestor": "gestor", "gestoras": "gestor", "gestoría": "gestor", "gfinbur": "gfinbur", "ghali": "ghali", "ghana": "ghan", "ghanés": "ghanes", "ghersi": "ghersi", "giancana": "giancan", "gianni": "gianni", "gielgud": "gielgud", "gigante": "gigant", "gigantes": "gigant", "gigantesco": "gigantesc", "gigantescos": "gigantesc", "gigantezca": "gigantezc", "gijón": "gijon", "gil": "gil", "gilbert": "gilbert", "gilberto": "gilbert", "gime": "gim", "gimnasia": "gimnasi", "gimnasio": "gimnasi", "gimnospermas": "gimnosperm", "ginebra": "ginebr", "ginecobstetricia": "ginecobstetrici", "ginecólogo": "ginecolog", "giovanni": "giovanni", "gira": "gir", "giraba": "gir", "girado": "gir", "giran": "gir", "girar": "gir", "girara": "gir", "girará": "gir", "giraron": "gir", "giras": "gir", "giro": "gir", "giró": "gir", "girolamo": "girolam", "girolano": "girolan", "giros": "gir", "gises": "gis", "giuseppe": "giusepp", "gladiador": "gladiador", "gladiadores": "gladiador", "glamorosa": "glamor", "glamour": "glamour", "glamur": "glamur", "glándula": "glandul", "glen": "glen", "glenn": "glenn", "glioblastomas": "glioblastom", "global": "global", "globales": "global", "globalización": "globaliz", "globalizado": "globaliz", "globalizarse": "globaliz", "globe": "glob", "globero": "glober", "globo": "glob", "globos": "glob", "gloria": "glori", "glorias": "glori", "glorieta": "gloriet", "gloriosísima": "gloriosisim", "glosas": "glos", "goave": "goav", "gober": "gob", "gobernaban": "gobern", "gobernabilidad": "gobern", "gobernación": "gobern", "gobernada": "gobern", "gobernado": "gobern", "gobernador": "gobern", "gobernadora": "gobern", "gobernadores": "gobern", "gobernante": "gobern", "gobernantes": "gobern", "gobernar": "gobern", "gobernarse": "gobern", "gobernícolas": "gobernicol", "gobernó": "gobern", "gobienro": "gobienr", "gobierna": "gobiern", "gobierne": "gobiern", "gobierno": "gobiern", "gobiernos": "gobi", "goce": "goc", "gocen": "goc", "goddard": "goddard", "godínez": "godinez", "goering": "goering", "goeter": "goet", "goethe": "goeth", "gol": "gol", "golazo": "golaz", "golden": "gold", "goldsmith": "goldsmith", "goleador": "goleador", "goleadora": "goleador", "goleadores": "goleador", "golearon": "gol", "goleo": "gole", "goles": "gol", "golf": "golf", "golfistas": "golfist", "golfo": "golf", "golondrinas": "golondrin", "golpe": "golp", "golpeaba": "golp", "golpeado": "golp", "golpeador": "golpeador", "golpeados": "golp", "golpean": "golp", "golpear": "golp", "golpeara": "golp", "golpearlo": "golp", "golpearon": "golp", "golpeo": "golpe", "golpeó": "golpe", "golpes": "golp", "golpiza": "golpiz", "goma": "gom", "gomes": "gom", "gómez": "gomez", "gomiz": "gomiz", "gonzalez": "gonzalez", "gonzález": "gonzalez", "gonzalitos": "gonzalit", "gonzalo": "gonzal", "goosen": "goos", "gor": "gor", "gorbachov": "gorbachov", "gorda": "gord", "gordillo": "gordill", "gordo": "gord", "gordolobo": "gordolob", "gordon": "gordon", "gorgona": "gorgon", "gorgonia": "gorgoni", "gorila": "goril", "gorilas": "goril", "gorios": "gori", "gorra": "gorr", "gorras": "gorr", "gorro": "gorr", "gortari": "gortari", "gortázar": "gortaz", "gorvachov": "gorvachov", "gota": "got", "gotas": "got", "goteo": "gote", "goteras": "goter", "gourmet": "gourmet", "gourmets": "gourmets", "goya": "goy", "goyesca": "goyesc", "goyesco": "goyesc", "goyo": "goy", "goza": "goz", "gozado": "goz", "gozan": "goz", "gozar": "goz", "gozo": "goz", "gozoso": "gozos", "graba": "grab", "grababan": "grab", "grabación": "grabacion", "grabaciones": "grabacion", "grabada": "grab", "grabadas": "grab", "grabadista": "grabad", "grabado": "grab", "grabadora": "grabador", "grabadoras": "grabador", "grabados": "grab", "grabamos": "grab", "graban": "grab", "grabar": "grab", "grabara": "grab", "grabará": "grab", "grabarle": "grab", "grabaron": "grab", "grabó": "grab", "gracia": "graci", "graciano": "gracian", "gracias": "graci", "graciela": "graciel", "gracilmente": "gracil", "gradas": "grad", "graderío": "graderi", "grado": "grad", "gradocon": "gradocon", "grados": "grad", "graduación": "graduacion", "graduado": "gradu", "graduados": "gradu", "gradual": "gradual", "gradualmente": "gradual", "graduaron": "gradu", "graduarse": "gradu", "grafenberg": "grafenberg", "grafiar": "grafi", "gráfica": "grafic", "gráficas": "grafic", "gráfico": "grafic", "grafito": "grafit", "grajales": "grajal", "grajeda": "grajed", "gramajo": "gramaj", "grammont": "grammont", "grammy": "grammy", "grammys": "grammys", "gramos": "gram", "grampus": "grampus", "gran": "gran", "grana": "gran", "graña": "grañ", "granada": "gran", "granadas": "gran", "granaderos": "granader", "granados": "gran", "granalguina": "granalguin", "granata": "granat", "granate": "granat", "grand": "grand", "grande": "grand", "grandecito": "grandecit", "grandes": "grand", "grandeza": "grandez", "grandguillhomme": "grandguillhomm", "grandiosa": "grandios", "grandiosas": "grandi", "grandioso": "grandios", "grandísimo": "grandisim", "grandota": "grandot", "grandote": "grandot", "grandotes": "grandot", "granero": "graner", "granillo": "granill", "granito": "granit", "granja": "granj", "granjas": "granj", "granjeros": "granjer", "granma": "granm", "grano": "gran", "granos": "gran", "gratificaciones": "gratif", "gratificante": "gratif", "gratis": "gratis", "gratitud": "gratitud", "grato": "grat", "gratuita": "gratuit", "gratuitamente": "gratuit", "gratuito": "gratuit", "gravados": "grav", "gravamen": "gravam", "gravámenes": "gravamen", "gravar": "grav", "grave": "grav", "gravedad": "graved", "gravemente": "gravement", "graves": "grav", "gravísimo": "gravisim", "gravitacionales": "gravitacional", "gravoso": "gravos", "gray": "gray", "greatest": "greatest", "grecia": "greci", "grecorromano": "grecorroman", "greenbelt": "greenbelt", "greenspan": "greensp", "greg": "greg", "gregorianos": "gregorian", "gregorio": "gregori", "gregory": "gregory", "greña": "greñ", "griega": "grieg", "griego": "grieg", "griegos": "grieg", "grieta": "griet", "grijalva": "grijalv", "grill": "grill", "grilletes": "grillet", "gripa": "grip", "gripal": "gripal", "gripe": "grip", "gris": "gris", "griselda": "griseld", "grises": "gris", "grita": "grit", "gritaba": "grit", "gritaban": "grit", "gritando": "grit", "gritar": "grit", "gritarle": "grit", "gritaron": "grit", "gritería": "grit", "grito": "grit", "gritó": "grit", "gritos": "grit", "gro": "gro", "grosera": "groser", "grosería": "gros", "groserías": "gros", "grotewold": "grotewold", "group": "group", "grrrrr": "grrrrr", "grúa": "gru", "grúas": "gru", "gruending": "gruending", "gruesa": "grues", "grueso": "grues", "gruesos": "grues", "grumos": "grum", "grupo": "grup", "grupos": "grup", "guacamole": "guacamol", "guadalajara": "guadalaj", "guadalcanal": "guadalcanal", "guadalupe": "guadalup", "guajardo": "guajard", "guamerú": "guameru", "guan": "guan", "guanajuatense": "guanajuatens", "guanajuato": "guanajuat", "guango": "guang", "guantes": "guant", "guapa": "guap", "guapo": "guap", "guarda": "guard", "guardacostas": "guardacost", "guardada": "guard", "guardadita": "guardadit", "guardados": "guard", "guardameta": "guardamet", "guardan": "guard", "guardar": "guard", "guardará": "guard", "guardaran": "guard", "guardarán": "guard", "guardarlas": "guard", "guardarropa": "guardarrop", "guardarse": "guard", "guardas": "guard", "guardería": "guard", "guardia": "guardi", "guardián": "guardian", "guardias": "guardi", "guardó": "guard", "guat": "guat", "guatemala": "guatemal", "guatemalteco": "guatemaltec", "guatemaltecos": "guatemaltec", "gubernamental": "gubernamental", "gubernamentales": "gubernamental", "gubernatura": "gubernatur", "guccione": "guccion", "güedad": "güed", "güera": "güer", "güerito": "güerit", "güeritos": "güerit", "güero": "güer", "guerra": "guerr", "guerras": "guerr", "guerrerense": "guerrerens", "guerreresnses": "guerreresns", "guerrero": "guerrer", "guerrilla": "guerrill", "guerrillera": "guerriller", "guerrillero": "guerriller", "guerrilleros": "guerriller", "guetiérrez": "guetierrez", "guevara": "guev", "guevarista": "guevar", "guía": "gui", "guiada": "gui", "guiadas": "gui", "guiar": "gui", "guiaron": "gui", "guíe": "gui", "guillermina": "guillermin", "guillermo": "guillerm", "guillespie": "guillespi", "guillotina": "guillotin", "guío": "gui", "guiomar": "guiom", "guión": "guion", "guiones": "guion", "guitarra": "guitarr", "guitarrista": "guitarr", "guns": "guns", "gurmets": "gurmets", "gurría": "gurr", "gurrola": "gurrol", "gusano": "gusan", "gusta": "gust", "gustaba": "gust", "gustaban": "gust", "gustado": "gust", "gustamos": "gust", "gustan": "gust", "gustando": "gust", "gustar": "gust", "gustaría": "gust", "gustavo": "gustav", "guste": "gust", "gusten": "gust", "gusto": "gust", "gustó": "gust", "gustos": "gust", "gutierrez": "gutierrez", "gutiérrez": "gutierrez", "guzmán": "guzman", "gyetko": "gyetk", "h": "h", "ha": "ha", "habana": "haban", "haber": "hab", "haberlas": "hab", "haberle": "hab", "haberles": "hab", "haberlo": "hab", "haberlos": "hab", "haberse": "hab", "había": "hab", "habíamos": "hab", "habían": "hab", "habidas": "hab", "habido": "hab", "habidos": "hab", "habiendo": "hab", "hábil": "habil", "hábiles": "habil", "habilidad": "habil", "habilidades": "habil", "habilitado": "habilit", "habilitar": "habilit", "habita": "habit", "habitaban": "habit", "habitables": "habit", "habitación": "habit", "habitacional": "habitacional", "habitaciones": "habit", "habitadas": "habit", "habitado": "habit", "habitantes": "habit", "habitarán": "habit", "hábito": "habit", "hábitos": "habit", "habituados": "habitu", "habitual": "habitual", "habla": "habl", "hablaba": "habl", "hablábamos": "habl", "hablado": "habl", "hablador": "hablador", "hablados": "habl", "háblame": "hablam", "hablamos": "habl", "hablan": "habl", "hablando": "habl", "hablándose": "habl", "hablar": "habl", "hablara": "habl", "hablará": "habl", "hablarán": "habl", "hablarle": "habl", "hablarme": "habl", "hablarnos": "habl", "hablaron": "habl", "hable": "habl", "hablé": "habl", "hablen": "habl", "hablo": "habl", "habló": "habl", "habra": "habr", "habrá": "habr", "habrán": "habran", "habre": "habr", "habremos": "habr", "habría": "habr", "habríamos": "habr", "habrían": "habr", "hace": "hac", "hacemos": "hac", "hacen": "hac", "hacendarias": "hacendari", "hacendario": "hacendari", "hacendoso": "hacend", "hacer": "hac", "hacerla": "hac", "hacerle": "hac", "hacerles": "hac", "hacerlo": "hac", "hacerlos": "hac", "hacerme": "hac", "hacernos": "hac", "hacerse": "hac", "haces": "hac", "hacha": "hach", "hacia": "haci", "hacía": "hac", "hacíamos": "hac", "hacían": "hac", "hacienda": "haciend", "haciendas": "haciend", "haciendo": "hac", "haciéndola": "hac", "haciéndolas": "hac", "haciéndoles": "hac", "haciéndolo": "hac", "haciéndolos": "hac", "haciéndose": "hac", "hacinamiento": "hacin", "haddad": "hadd", "haemophilus": "haemophilus", "haga": "hag", "hágalas": "hagal", "hágalo": "hagal", "hagamos": "hag", "hagámosla": "hagamosl", "hagámoslo": "hagamosl", "hagan": "hag", "hago": "hag", "hainan": "hain", "haití": "hait", "haitianos": "haitian", "halagadora": "halag", "halago": "halag", "halcion": "halcion", "halcón": "halcon", "halen": "hal", "hall": "hall", "halla": "hall", "hallaba": "hall", "hallado": "hall", "hallados": "hall", "hallamos": "hall", "hallan": "hall", "hallar": "hall", "hallarle": "hall", "hallazgo": "hallazg", "hallazgos": "hallazg", "halle": "hall", "halley": "halley", "halógeno": "halogen", "hamaca": "hamac", "hambre": "hambr", "hambres": "hambr", "hambriento": "hambrient", "hambrientos": "hambrient", "hamburguesa": "hamburgues", "hamburguesas": "hamburgues", "hamel": "hamel", "hamilton": "hamilton", "hampa": "hamp", "hamponio": "hamponi", "han": "han", "hanchette": "hanchett", "handicap": "handicap", "hangar": "hang", "hank": "hank", "hannover": "hannov", "hanover": "hanov", "hans": "hans", "hanse": "hans", "hará": "har", "harald": "harald", "harán": "haran", "harás": "haras", "harbaugh": "harbaugh", "hard": "hard", "hardcore": "hardcor", "hardware": "hardwar", "haré": "har", "harefield": "harefield", "haremos": "har", "haría": "har", "haríamos": "har", "harían": "har", "harina": "harin", "harlem": "harlem", "haro": "har", "harper": "harp", "harry": "harry", "hartazgo": "hartazg", "hartmut": "hartmut", "harto": "hart", "harvard": "harvard", "harvest": "harvest", "harvey": "harvey", "has": "has", "hassan": "hass", "hasta": "hast", "haugen": "haug", "hausser": "hauss", "havelange": "havelang", "hawai": "hawai", "hawaiano": "hawaian", "hay": "hay", "haya": "hay", "hayamos": "hay", "hayan": "hay", "hayas": "hay", "hayat": "hayat", "haz": "haz", "hazaña": "hazañ", "hboc": "hboc", "hc": "hc", "he": "he", "headsh": "headsh", "health": "health", "heart": "heart", "hearts": "hearts", "heavy": "heavy", "heberto": "hebert", "hebilla": "hebill", "hebillas": "hebill", "hecha": "hech", "hechas": "hech", "hechizada": "hechiz", "hecho": "hech", "hechos": "hech", "hectárea": "hectare", "hectáreas": "hectar", "hector": "hector", "héctor": "hector", "hedrick": "hedrick", "hegel": "hegel", "heidi": "heidi", "heladas": "hel", "helado": "hel", "helados": "hel", "helen": "hel", "helicóptero": "helicopter", "helicópteros": "helicopter", "hembras": "hembr", "hemerográficas": "hemerograf", "hemiciclo": "hemicicl", "hemisferio": "hemisferi", "hemoglobina": "hemoglobin", "hemorragias": "hemorragi", "hemos": "hem", "henderson": "henderson", "henequenera": "henequener", "henk": "henk", "henrique": "henriqu", "henry": "henry", "hepática": "hepat", "hepburn": "hepburn", "heráclito": "heraclit", "heralcor": "heralcor", "herald": "herald", "heráldico": "herald", "herbicidas": "herbic", "herbívoros": "herbivor", "herce": "herc", "hércules": "hercul", "herdez": "herdez", "hérdez": "herdez", "heredados": "hered", "heredero": "hereder", "herederos": "hereder", "heredia": "heredi", "hereditario": "hereditari", "herencia": "herenci", "heriberto": "heribert", "herida": "her", "heridas": "her", "herido": "her", "heridos": "her", "herir": "her", "herirla": "her", "heritage": "heritag", "herman": "herm", "hermana": "herman", "hermanas": "herman", "hermandad": "hermand", "hermanitas": "hermanit", "hermann": "hermann", "hermano": "herman", "hermanó": "herman", "hermanos": "herman", "hermenegildo": "hermenegild", "hermética": "hermet", "hermeticidad": "hermet", "hermetismo": "hermet", "hermila": "hermil", "hermosa": "hermos", "hermosamente": "herm", "hermosas": "herm", "hermosillo": "hermosill", "hermoso": "hermos", "hernán": "hernan", "hernández": "hernandez", "hernandéz": "hernandez", "hernando": "hern", "héroe": "hero", "héroes": "her", "heróicos": "heroic", "heroísmo": "heroism", "herradura": "herradur", "herramental": "herramental", "herramienta": "herramient", "herramientas": "herramient", "herrera": "herrer", "herzfeld": "herzfeld", "herzog": "herzog", "heterosexual": "heterosexual", "heterosexuales": "heterosexual", "hewlett": "hewlett", "hewlettpackard": "hewlettpackard", "hgo": "hgo", "híbrido": "hibr", "híbridos": "hibr", "hice": "hic", "hiciera": "hic", "hicieran": "hic", "hicieron": "hic", "hiciesen": "hic", "hicimos": "hic", "hiciste": "hic", "hidalgo": "hidalg", "hidalgos": "hidalg", "hidalguense": "hidalguens", "hidalguenses": "hidalguens", "hidráulica": "hidraul", "hidráulicos": "hidraul", "hidrocarburo": "hidrocarbur", "hidrocarburos": "hidrocarbur", "hidroelectricidad": "hidroelectr", "hidrológica": "hidrolog", "hidrológicos": "hidrolog", "hielo": "hiel", "hierba": "hierb", "hierbas": "hierb", "hierro": "hierr", "hierros": "hierr", "hígado": "hig", "hígados": "hig", "higiene": "higien", "higinio": "higini", "hija": "hij", "hijas": "hij", "hijo": "hij", "hijos": "hij", "hilario": "hilari", "hilburn": "hilburn", "hilda": "hild", "hilera": "hiler", "hill": "hill", "hillary": "hillary", "hills": "hills", "hilo": "hil", "hilos": "hil", "hilvanó": "hilvan", "himenia": "himeni", "himno": "himn", "hinca": "hinc", "hincapié": "hincapi", "hines": "hin", "hinojosa": "hinoj", "hipersensibilidad": "hipersensibil", "hipertensión": "hipertension", "hipertiroidismo": "hipertiroid", "hipo": "hip", "hipólito": "hipolit", "hiponacte": "hiponact", "hipoteca": "hipotec", "hipotecada": "hipotec", "hipotecaria": "hipotecari", "hipotecarias": "hipotecari", "hipotecario": "hipotecari", "hipótesis": "hipotesis", "hipotéticamente": "hipotet", "hipotéticos": "hipotet", "hippie": "hippi", "hippies": "hippi", "hiriendo": "hir", "hirió": "hir", "hirofumi": "hirofumi", "hiroshima": "hiroshim", "hispana": "hispan", "hispánicas": "hispan", "hispanio": "hispani", "hispanos": "hispan", "histeria": "histeri", "histéricamente": "hister", "histérico": "hister", "historia": "histori", "historiadores": "histori", "historial": "historial", "historias": "histori", "histórica": "histor", "históricamente": "histor", "históricas": "histor", "historico": "histor", "histórico": "histor", "históricos": "histor", "hit": "hit", "hitazo": "hitaz", "hitler": "hitl", "hits": "hits", "hizo": "hiz", "ho": "ho", "hobbie": "hobbi", "hoc": "hoc", "hocico": "hocic", "hogar": "hog", "hogares": "hogar", "hogueras": "hoguer", "hoja": "hoj", "hojalata": "hojalat", "hojas": "hoj", "hojeo": "hoje", "hojita": "hojit", "hola": "hol", "holanda": "holand", "holandés": "holandes", "holanes": "holan", "holding": "holding", "holgada": "holg", "holgado": "holg", "holguín": "holguin", "holliday": "holliday", "hollywood": "hollywood", "holt": "holt", "holzinger": "holzing", "homar": "hom", "hombre": "hombr", "hombres": "hombr", "hombro": "hombr", "home": "hom", "homenaje": "homenaj", "homenajeado": "homenaj", "homeóstasis": "homeostasis", "homero": "homer", "homicida": "homic", "homicidas": "homic", "homicidio": "homicidi", "homicidios": "homicidi", "homilía": "homil", "homologación": "homolog", "homologando": "homolog", "homologarlas": "homolog", "homologarlos": "homolog", "homologarnos": "homolog", "homólogo": "homolog", "homólogos": "homolog", "homónimo": "homonim", "homosexual": "homosexual", "homosexuales": "homosexual", "homosexualismo": "homosexual", "homs": "homs", "honda": "hond", "hondo": "hond", "honduras": "hondur", "hondureño": "hondureñ", "hondureños": "hondureñ", "honesta": "honest", "honestamente": "honest", "honestidad": "honest", "honesto": "honest", "honestos": "honest", "hong": "hong", "honor": "honor", "honorabilidad": "honor", "honorable": "honor", "honorables": "honor", "honorarios": "honorari", "honores": "honor", "honorífica": "honorif", "honrada": "honr", "honradez": "honradez", "honrados": "honr", "honrarlo": "honr", "hopkins": "hopkins", "hora": "hor", "horacio": "horaci", "horario": "horari", "horarios": "horari", "horas": "hor", "horcada": "horc", "horchata": "horchat", "horizon": "horizon", "horizontal": "horizontal", "horizonte": "horizont", "horizontes": "horizont", "hormona": "hormon", "hormonas": "hormon", "horneados": "horn", "hornos": "horn", "horrenda": "horrend", "horrendo": "horrend", "horribles": "horribl", "horror": "horror", "horrorizado": "horroriz", "hortalizas": "hortaliz", "horwath": "horwath", "hospedaba": "hosped", "hospederos": "hospeder", "hospicio": "hospici", "hospital": "hospital", "hospitalario": "hospitalari", "hospitalarios": "hospitalari", "hospitales": "hospital", "hospitalización": "hospitaliz", "hospitalizado": "hospitaliz", "hospitalizados": "hospitaliz", "hostile": "hostil", "hostilidades": "hostil", "hot": "hot", "hotel": "hotel", "hotelera": "hoteler", "hoteleros": "hoteler", "hoteles": "hotel", "houston": "houston", "howard": "howard", "hoy": "hoy", "hoyo": "hoy", "hoyos": "hoy", "hp": "hp", "hristo": "hrist", "huacho": "huach", "huahutla": "huahutl", "huamantla": "huamantl", "huambo": "huamb", "huang": "huang", "huapango": "huapang", "huasteca": "huastec", "huautla": "huautl", "huayami": "huayami", "hub": "hub", "hubiera": "hub", "hubieran": "hub", "hubiere": "hubier", "hubiese": "hub", "hubiesen": "hub", "hubo": "hub", "huecos": "huec", "huehuetenango": "huehuetenang", "huehuetlán": "huehuetlan", "huehuetlatoa": "huehuetlato", "huela": "huel", "huele": "huel", "huelen": "huel", "huelga": "huelg", "huelguistas": "huelguist", "huella": "huell", "huellas": "huell", "huérfanos": "huerfan", "huerta": "huert", "huertas": "huert", "huerto": "huert", "huertos": "huert", "huesca": "huesc", "hueso": "hues", "huésped": "huesp", "huestes": "huest", "huevazos": "huevaz", "huevo": "huev", "huevos": "huev", "hufbauer": "hufbau", "hugo": "hug", "huichapan": "huichap", "huichol": "huichol", "huicholas": "huichol", "huicholes": "huichol", "huidizo": "huidiz", "huinalá": "huinal", "huir": "huir", "huitzilopochtli": "huitzilopochtli", "huitzuco": "huitzuc", "hules": "hul", "humana": "human", "humanas": "human", "humanidad": "human", "humanidades": "human", "humanista": "human", "humanitario": "humanitari", "humanitarios": "humanitari", "humaniza": "humaniz", "humanizar": "humaniz", "humano": "human", "humanos": "human", "humberto": "humbert", "humeante": "humeant", "humedad": "humed", "humildad": "humild", "humilde": "humild", "humillados": "humill", "humillante": "humill", "humillantemente": "humill", "humillar": "humill", "humo": "hum", "humor": "humor", "humorista": "humor", "hundida": "hund", "hundidas": "hund", "hundido": "hund", "hundidos": "hund", "hundieron": "hund", "hundimientos": "hundimient", "hundió": "hund", "hundir": "hund", "húngaro": "hungar", "hungo": "hung", "hungría": "hungr", "huntsville": "huntsvill", "hurtadillas": "hurtadill", "hurtado": "hurt", "hurtic": "hurtic", "huss": "huss", "hussein": "hussein", "huyeron": "huyeron", "huyó": "huy", "hylsa": "hylsa", "i": "i", "iaaf": "iaaf", "iacocca": "iacocc", "iannuzzelli": "iannuzzelli", "iba": "iba", "íbamos": "ibam", "iban": "iban", "ibargüengoitia": "ibargüengoiti", "ibarra": "ibarr", "ibéricos": "iber", "ibm": "ibm", "ibor": "ibor", "ica": "ica", "iceberg": "iceberg", "ichi": "ichi", "ici": "ici", "iconografía": "iconograf", "iconográfica": "iconograf", "id": "id", "ida": "ida", "idaho": "idah", "idalia": "idali", "idea": "ide", "ideal": "ideal", "ideales": "ideal", "idealistas": "ideal", "ideario": "ideari", "ideas": "ide", "ídem": "idem", "idéntica": "ident", "idéntico": "ident", "identidad": "ident", "identifica": "identif", "identificación": "identif", "identificada": "identific", "identificadas": "identific", "identificado": "identific", "identificados": "identific", "identifican": "identific", "identificando": "identific", "identificar": "identific", "identificarlo": "identific", "identificaron": "identific", "identificarse": "identific", "identificó": "identific", "identifique": "identifiqu", "identifiquen": "identifiqu", "ideó": "ide", "ideología": "ideolog", "ideologías": "ideolog", "ideológica": "ideolog", "ideológicas": "ideolog", "ideológico": "ideolog", "idioma": "idiom", "idiomas": "idiom", "idiosincrasia": "idiosincrasi", "idiotas": "idiot", "ido": "ido", "idólatra": "idolatr", "idolatría": "idolatr", "ídolo": "idol", "ídolos": "idol", "idóneo": "idone", "ife": "ife", "ifigenia": "ifigeni", "ifigenios": "ifigeni", "iglesia": "iglesi", "iglesiaestado": "iglesiaest", "iglesias": "iglesi", "ignacio": "ignaci", "ignición": "ignicion", "ignominia": "ignomini", "ignora": "ignor", "ignoran": "ignor", "ignorancia": "ignor", "ignorando": "ignor", "ignorante": "ignor", "ignorar": "ignor", "ignore": "ignor", "igor": "igor", "igual": "igual", "iguala": "igual", "igualada": "igual", "igualadas": "igual", "igualan": "igual", "igualar": "igual", "igualarlo": "igual", "igualarnos": "igual", "igualaron": "igual", "igualdad": "iguald", "iguales": "igual", "igualita": "igualit", "igualmente": "igual", "ii": "ii", "iii": "iii", "il": "il", "ildefonso": "ildefons", "ilegal": "ilegal", "ilegales": "ilegal", "ilegalmente": "ilegal", "ilesa": "iles", "ileso": "iles", "ilícita": "ilicit", "ilícito": "ilicit", "ilícitos": "ilicit", "ilimitada": "ilimit", "ilimitadas": "ilimit", "ilimitado": "ilimit", "ilimitados": "ilimit", "illinois": "illinois", "ilógica": "ilog", "ilógico": "ilog", "iluminación": "ilumin", "iluminadas": "ilumin", "iluminaron": "ilumin", "iluminó": "ilumin", "ilusas": "ilus", "ilusión": "ilusion", "ilusiones": "ilusion", "ilustra": "ilustr", "ilustraciones": "ilustr", "ilustran": "ilustr", "ilustrar": "ilustr", "ilustraría": "ilustr", "im": "im", "imagen": "imag", "imágenes": "imagen", "imagina": "imagin", "imaginación": "imagin", "imaginar": "imagin", "imagínense": "imaginens", "imagínese": "imagines", "imagino": "imagin", "imaginó": "imagin", "imán": "iman", "imax": "imax", "imbécil": "imbecil", "imecas": "imec", "imelda": "imeld", "imevisión": "imevision", "imitable": "imit", "imitación": "imit", "imitaciones": "imit", "imitan": "imit", "imitar": "imit", "imitarlo": "imit", "imp": "imp", "impaciencia": "impacient", "impacta": "impact", "impactar": "impact", "impactaría": "impact", "impactaron": "impact", "impacten": "impact", "impacto": "impact", "impactó": "impact", "impactos": "impact", "imparcial": "imparcial", "imparcialidad": "imparcial", "impartan": "impart", "imparte": "impart", "imparten": "impart", "impartía": "impart", "impartida": "impart", "impartiendo": "impart", "impartieran": "impart", "impartimos": "impart", "impartir": "impart", "impartirá": "impart", "impartirán": "impart", "impasse": "impass", "impecable": "impec", "impedido": "imped", "impedimento": "impediment", "impedimentos": "impediment", "impedir": "imped", "impedirá": "imped", "impedirán": "imped", "impediría": "imped", "impedirle": "imped", "imperan": "imper", "imperdonable": "imperdon", "imperfecto": "imperfect", "imperial": "imperial", "imperiales": "imperial", "imperialismo": "imperial", "imperialistas": "imperial", "imperio": "imperi", "impersonal": "impersonal", "impida": "impid", "impide": "impid", "impiden": "impid", "impidiera": "impid", "impidieron": "impid", "impidió": "impid", "implacable": "implac", "implacables": "implac", "implantación": "implant", "implantado": "implant", "implantados": "implant", "implantando": "implant", "implantaremos": "implant", "implanté": "implant", "implementación": "implement", "implementada": "implement", "implementan": "implement", "implementando": "implement", "implementar": "implement", "implementarán": "implement", "implementarla": "implement", "implementarse": "implement", "implementó": "implement", "implementos": "implement", "implica": "implic", "implicación": "implic", "implicaciones": "implic", "implicados": "implic", "implican": "implic", "implicando": "implic", "implicar": "implic", "implicará": "implic", "implicaran": "implic", "implícito": "implicit", "implicó": "implic", "impolutos": "impolut", "impondrá": "impondr", "impondrán": "impondran", "impondría": "impondr", "impone": "impon", "imponemos": "impon", "imponen": "impon", "imponer": "impon", "imponerse": "impon", "impongan": "impong", "imponiendo": "impon", "imponiéndose": "impon", "importa": "import", "importaba": "import", "importación": "import", "importaciones": "import", "importadas": "import", "importado": "import", "importadora": "import", "importados": "import", "importan": "import", "importancia": "import", "importando": "import", "importante": "import", "importantemente": "import", "importantes": "import", "importantísimas": "importantisim", "importantísimo": "importantisim", "importantísimos": "importantis", "importar": "import", "importará": "import", "importaría": "import", "importe": "import", "importó": "import", "imposibilidad": "imposibil", "imposibilitada": "imposibilit", "imposible": "impos", "imposición": "imposicion", "imposiciones": "imposicion", "impositivos": "imposit", "impostergable": "imposterg", "impostergables": "imposterg", "impotencia": "impotent", "impotente": "impotent", "impregnada": "impregn", "impregnan": "impregn", "imprenta": "imprent", "impresa": "impres", "impresas": "impres", "impresión": "impresion", "impresionable": "impresion", "impresionada": "impresion", "impresionado": "impresion", "impresionante": "impresion", "impresionantes": "impresion", "impresiones": "impresion", "impresionismo": "impresion", "impresionista": "impresion", "impresionó": "impresion", "impreso": "impres", "impresora": "impresor", "impresoras": "impresor", "impresores": "impresor", "impresos": "impres", "imprevisión": "imprevision", "imprimió": "imprim", "imprimir": "imprim", "imprimirse": "imprim", "improductiva": "improduct", "impropiedades": "impropiedad", "improvisación": "improvis", "improvisada": "improvis", "improvisados": "improvis", "imprudencia": "imprudent", "imprudencial": "imprudencial", "imprudencialmente": "imprudencial", "imprudentes": "imprudent", "impuesta": "impuest", "impuestas": "impuest", "impuesto": "impuest", "impuestos": "impuest", "impugnaciones": "impugn", "impugnado": "impugn", "impulsa": "impuls", "impulsan": "impuls", "impulsando": "impuls", "impulsar": "impuls", "impulse": "impuls", "impulsivo": "impuls", "impulso": "impuls", "impulsos": "impuls", "impunemente": "impun", "impunes": "impun", "impunidad": "impun", "impunidades": "impun", "impuntualidad": "impuntual", "impuras": "impur", "impusieron": "impus", "impuso": "impus", "imputaciones": "imput", "imputado": "imput", "imsa": "imsa", "imss": "imss", "in": "in", "inaccesible": "inacces", "inaccesibles": "inacces", "inacción": "inaccion", "inaceptable": "inacept", "inactividad": "inact", "inadecuada": "inadecu", "inadmisible": "inadmis", "inadvertidas": "inadvert", "inadvertidos": "inadvert", "inah": "inah", "inalámbrico": "inalambr", "inalienables": "inalien", "inamovible": "inamov", "inamovibles": "inamov", "inaplicables": "inaplic", "inasistencia": "inasistent", "inaudito": "inaudit", "inaugura": "inaugur", "inauguración": "inaugur", "inauguraciones": "inaugur", "inaugurada": "inaugur", "inaugurado": "inaugur", "inaugural": "inaugural", "inauguran": "inaugur", "inaugurar": "inaugur", "inaugurará": "inaugur", "inauguró": "inaugur", "inba": "inba", "inc": "inc", "incalculable": "incalcul", "incapaces": "incapac", "incapacidad": "incapac", "incapacitado": "incapacit", "incapacitados": "incapacit", "incapaz": "incapaz", "incautada": "incaut", "incautado": "incaut", "incautan": "incaut", "incauten": "incaut", "incautó": "incaut", "incendiarias": "incendiari", "incendio": "incendi", "incendió": "incend", "incendios": "incendi", "incentivar": "incentiv", "incentivo": "incent", "incentivos": "incent", "incertidumbre": "incertidumbr", "incesante": "inces", "incesantemente": "inces", "incian": "inci", "incide": "incid", "inciden": "incid", "incidencia": "incident", "incidental": "incidental", "incidente": "incident", "incidentes": "incident", "incidido": "incid", "incierto": "inciert", "inciertos": "inciert", "incinerador": "inciner", "incisos": "incis", "incitación": "incit", "incitador": "incit", "incitaron": "incit", "inclán": "inclan", "inclemencias": "inclement", "inclina": "inclin", "inclinaba": "inclin", "inclinación": "inclin", "inclinaciones": "inclin", "inclinada": "inclin", "inclinados": "inclin", "inclinamos": "inclin", "inclinan": "inclin", "inclinándose": "inclin", "inclinó": "inclin", "incluía": "inclu", "incluida": "inclu", "incluidas": "inclu", "incluido": "inclu", "incluidos": "inclu", "incluimos": "inclu", "incluir": "inclu", "incluír": "incluir", "incluirá": "inclu", "incluirán": "inclu", "incluiría": "inclu", "incluirlo": "inclu", "incluirlos": "inclu", "inclusión": "inclusion", "inclusive": "inclusiv", "incluso": "inclus", "incluya": "inclu", "incluyan": "inclu", "incluye": "inclu", "incluyen": "inclu", "incluyendo": "inclu", "incluyeron": "inclu", "incluyó": "inclu", "incoherencias": "incoherent", "incómodo": "incomod", "incompetentes": "incompetent", "incompleta": "incomplet", "incompleto": "incomplet", "incomprendidos": "incomprend", "incomprensibles": "incomprens", "incomprensión": "incomprension", "incomunicación": "incomun", "incomunicada": "incomunic", "incomunicadas": "incomunic", "incondicional": "incondicional", "incondicionales": "incondicional", "inconformaron": "inconform", "inconformes": "inconform", "inconformidad": "inconform", "inconformidades": "inconform", "incongruencias": "incongruent", "incongruente": "incongruent", "inconmovibles": "inconmov", "inconsciente": "inconscient", "inconscientes": "inconscient", "inconsecuencia": "inconsecuent", "inconsistencia": "inconsistent", "inconsistente": "inconsistent", "inconstitucionales": "inconstitucional", "inconstitucionalidad": "inconstitucional", "incontenible": "inconten", "incontrolable": "incontrol", "incontrolables": "incontrol", "incontrolado": "incontrol", "inconveniente": "inconvenient", "inconvenientes": "inconvenient", "incora": "incor", "incorpora": "incorpor", "incorporación": "incorpor", "incorporados": "incorpor", "incorporan": "incorpor", "incorporando": "incorpor", "incorporar": "incorpor", "incorporaron": "incorpor", "incorporarse": "incorpor", "incorporated": "incorporat", "incorpore": "incorpor", "incorporen": "incorpor", "incorporó": "incorpor", "incosteables": "incost", "incredulidad": "incredul", "increíble": "increibl", "increíblemente": "increibl", "increíbles": "increibl", "incrementa": "increment", "incrementadas": "increment", "incrementado": "increment", "incrementando": "increment", "incrementándose": "increment", "incrementar": "increment", "incrementará": "increment", "incrementarles": "increment", "incrementaron": "increment", "incrementarse": "increment", "incremente": "increment", "incrementen": "increment", "incremento": "increment", "incrementó": "increment", "incrementos": "increment", "increparan": "increp", "incriminar": "incrimin", "incrustación": "incrust", "incrustaciones": "incrust", "incrustó": "incrust", "incubación": "incub", "incuestionable": "incuestion", "incuestionables": "incuestion", "inculcar": "inculc", "incumbe": "incumb", "incumple": "incumpl", "incumplen": "incumpl", "incumplidas": "incumpl", "incumplido": "incumpl", "incumplieron": "incumpl", "incumplimiento": "incumpl", "incumplió": "incumpl", "incurran": "incurr", "incurre": "incurr", "incurrido": "incurr", "incurrieron": "incurr", "incurrió": "incurr", "incurrir": "incurr", "incursión": "incursion", "incursiona": "incursion", "incursionamos": "incursion", "incursionar": "incursion", "inda": "inda", "indagación": "indag", "indagando": "indag", "indebido": "indeb", "indebidos": "indeb", "indecibles": "indec", "indecisa": "indecis", "indecisión": "indecision", "indeciso": "indecis", "indefensión": "indefension", "indefinida": "indefin", "indefinidamente": "indefinid", "indefinido": "indefin", "indejo": "indej", "indemnización": "indemniz", "indemnizaciones": "indemniz", "indemnizar": "indemniz", "indemnizó": "indemniz", "independencia": "independent", "independiente": "independient", "independientemente": "independient", "independientes": "independient", "independiza": "independiz", "independizó": "independiz", "indeseado": "indes", "indeterminado": "indetermin", "india": "indi", "indiana": "indian", "indianapolis": "indianapolis", "indica": "indic", "indicaba": "indic", "indicaban": "indic", "indicaciones": "indic", "indicada": "indic", "indicado": "indic", "indicador": "indic", "indicadores": "indic", "indican": "indic", "indicando": "indic", "indicándome": "indic", "indicar": "indic", "indicará": "indic", "indicarán": "indic", "indicaron": "indic", "indicativa": "indic", "indicators": "indicators", "índice": "indic", "índices": "indic", "indicio": "indici", "indicios": "indici", "indico": "indic", "indicó": "indic", "indiferencia": "indiferent", "indiferente": "indiferent", "indiferentes": "indiferent", "indígena": "indigen", "indígenas": "indigen", "indigencia": "indigent", "indigente": "indigent", "indigentes": "indigent", "indignación": "indign", "indignado": "indign", "indignidad": "indign", "indigno": "indign", "indignó": "indign", "índigo": "indig", "indio": "indi", "indique": "indiqu", "indirecta": "indirect", "indirectamente": "indirect", "indirectas": "indirect", "indisciplina": "indisciplin", "indiscreciones": "indiscrecion", "indiscriminadamente": "indiscrimin", "indiscutible": "indiscut", "indiscutibles": "indiscut", "indispensable": "indispens", "indispensables": "indispens", "indistintos": "indistint", "individual": "individual", "individuales": "individual", "individualidades": "individual", "individualista": "individual", "individualistas": "individual", "individualmente": "individual", "individuo": "individu", "individuos": "individu", "índole": "indol", "indonesia": "indonesi", "indubitable": "indubit", "inducción": "induccion", "induce": "induc", "inducir": "induc", "inducirlo": "induc", "indudablemente": "indud", "indulgencias": "indulgent", "indulto": "indult", "indultó": "indult", "indumentaria": "indumentari", "industria": "industri", "industrial": "industrial", "industriales": "industrial", "industrialización": "industrializ", "industrializadas": "industrializ", "industrializados": "industrializ", "industrias": "industri", "industries": "industri", "industriosa": "industri", "indy": "indy", "inea": "ine", "inédita": "inedit", "inéditas": "inedit", "inédito": "inedit", "ineficaces": "ineficac", "ineficacia": "ineficaci", "ineficaz": "ineficaz", "ineficiencia": "ineficient", "ineficiencias": "ineficient", "ineficiente": "ineficient", "inegi": "inegi", "inelegancias": "ineleg", "ineludible": "inelud", "ineptas": "inept", "inequívoca": "inequivoc", "inercia": "inerci", "inés": "ines", "inescrutable": "inescrut", "inestabilidad": "inest", "inestable": "inest", "inevitable": "inevit", "inevitablemente": "inevit", "inevitables": "inevit", "inexactitudes": "inexactitud", "inexistente": "inexistent", "inexorablemente": "inexor", "inexplicable": "inexplic", "inexplicablemente": "inexplic", "inexploradas": "inexplor", "infactibilidad": "infactibil", "infalibilidad": "infalibil", "infalsificables": "infalsific", "infame": "infam", "infamia": "infami", "infancia": "infanci", "infante": "infant", "infantes": "infant", "infantil": "infantil", "infantiles": "infantil", "infarto": "infart", "infección": "infeccion", "infecciones": "infeccion", "infectología": "infectolog", "inferido": "infer", "inferior": "inferior", "inferiores": "inferior", "inferioridad": "inferior", "infernal": "infernal", "infernales": "infernal", "infestadas": "infest", "infidelidad": "infidel", "infidelidades": "infidel", "infiel": "infiel", "infierno": "infiern", "infiltrados": "infiltr", "infiltraron": "infiltr", "infinidad": "infin", "infinitum": "infinitum", "inflaba": "inflab", "inflación": "inflacion", "inflacionario": "inflacionari", "inflacionarios": "inflacionari", "inflamación": "inflam", "inflar": "inflar", "infle": "infle", "influencia": "influenci", "influenciada": "influenci", "influencias": "influenci", "influenzae": "influenza", "influido": "influ", "influir": "influ", "influiría": "influ", "influjo": "influj", "influyen": "influ", "influyente": "influyent", "influyó": "influ", "infonavit": "infonavit", "informa": "inform", "informaba": "inform", "información": "inform", "informaciones": "inform", "informada": "inform", "informado": "inform", "informados": "inform", "informal": "informal", "informan": "inform", "informándome": "inform", "informante": "inform", "informantes": "inform", "informar": "inform", "informará": "inform", "informarán": "inform", "informarle": "inform", "informaron": "inform", "informarse": "inform", "informatica": "informat", "informática": "informat", "informático": "informat", "informativa": "inform", "informativas": "inform", "informativo": "inform", "informativos": "inform", "informe": "inform", "informé": "inform", "informes": "inform", "informó": "inform", "inforrey": "inforrey", "infortunadamente": "infortun", "infortunado": "infortun", "infracción": "infraccion", "infraccionados": "infraccion", "infraccionar": "infraccion", "infractor": "infractor", "infractores": "infractor", "infraestructura": "infraestructur", "infrarrojas": "infrarroj", "infrarrojos": "infrarroj", "infundados": "infund", "infundios": "infundi", "infundir": "infund", "infusión": "infusion", "infusiones": "infusion", "ing": "ing", "ingando": "ingand", "ingeniería": "ingeni", "ingeniero": "ingenier", "ingenieros": "ingenier", "ingenio": "ingeni", "ingeniosa": "ingeni", "ingenioso": "ingeni", "ingenua": "ingenu", "ingenuas": "ingenu", "ingenuo": "ingenu", "ingerencia": "ingerent", "ingerir": "inger", "inglaterra": "inglaterr", "inglés": "ingles", "inglesa": "ingles", "inglesas": "ingles", "ingleses": "ingles", "ingratos": "ingrat", "ingrediente": "ingredient", "ingredientes": "ingredient", "ingresa": "ingres", "ingresaba": "ingres", "ingresado": "ingres", "ingresan": "ingres", "ingresando": "ingres", "ingresar": "ingres", "ingresara": "ingres", "ingresaron": "ingres", "ingreso": "ingres", "ingresó": "ingres", "ingresos": "ingres", "inhabilitados": "inhabilit", "inhabilitan": "inhabilit", "inhalaciones": "inhal", "inhalámbricos": "inhalambr", "inherente": "inherent", "inherentes": "inherent", "inhibiendo": "inhib", "inicado": "inic", "inicará": "inic", "inicia": "inici", "iniciaba": "inici", "iniciación": "inici", "iniciada": "inici", "iniciadas": "inici", "iniciado": "inici", "iniciadores": "inici", "inicial": "inicial", "iniciales": "inicial", "inicialización": "inicializ", "inicialmente": "inicial", "inician": "inici", "iniciando": "inici", "iniciar": "inici", "iniciara": "inici", "iniciará": "inici", "iniciarán": "inici", "iniciaría": "inici", "iniciarían": "inici", "iniciarme": "inici", "iniciaron": "inici", "iniciarse": "inici", "iniciativa": "inici", "iniciativas": "inici", "inicie": "inici", "iniciemos": "inici", "inicien": "inici", "inicio": "inici", "inició": "inic", "inicios": "inici", "inimaginables": "inimagin", "ininteligibles": "inintelig", "ininterrumpida": "ininterrump", "injerencia": "injerent", "injude": "injud", "injurias": "injuri", "injusta": "injust", "injustas": "injust", "injusticia": "injustici", "injusticias": "injustici", "injustificada": "injustific", "injustificados": "injustific", "injusto": "injust", "injustos": "injust", "inmadurez": "inmadurez", "inmaduros": "inmadur", "inmediaciones": "inmedi", "inmediata": "inmediat", "inmediatamente": "inmediat", "inmediatas": "inmediat", "inmediato": "inmediat", "inmediatos": "inmediat", "inmenso": "inmens", "inmensos": "inmens", "inmigrantes": "inmigr", "inminencia": "inminent", "inminente": "inminent", "inmiscuidos": "inmiscu", "inmiscuirse": "inmiscu", "inmobiliaria": "inmobiliari", "inmobiliarias": "inmobiliari", "inmobiliario": "inmobiliari", "inmobiliarios": "inmobiliari", "inmorales": "inmoral", "inmortal": "inmortal", "inmortales": "inmortal", "inmortalidad": "inmortal", "inmovilizó": "inmoviliz", "inmueble": "inmuebl", "inmuebles": "inmuebl", "inmunes": "inmun", "inmunidad": "inmun", "inmunológica": "inmunolog", "inmutable": "inmut", "inn": "inn", "innecesaria": "innecesari", "innecesarias": "innecesari", "innecesario": "innecesari", "innecesarios": "innecesari", "innova": "innov", "innovación": "innov", "innovaciones": "innov", "innovador": "innov", "innovadora": "innov", "innovadores": "innov", "innovar": "innov", "inntienen": "inntien", "innumerables": "innumer", "inobservancia": "inobserv", "inocencia": "inocent", "inocente": "inocent", "inocentes": "inocent", "inocular": "inocul", "inocularle": "inocul", "inofensivos": "inofens", "inolvidable": "inolvid", "inoperantes": "inoper", "inquiere": "inquier", "inquieta": "inquiet", "inquietas": "inquiet", "inquieto": "inquiet", "inquietos": "inquiet", "inquietud": "inquietud", "inquietudes": "inquietud", "inquilinaria": "inquilinari", "inquilino": "inquilin", "inquilinos": "inquilin", "inquina": "inquin", "inquisición": "inquisicion", "insaciable": "insaci", "insalvables": "insalv", "inscribe": "inscrib", "inscribió": "inscrib", "inscribir": "inscrib", "inscribirse": "inscrib", "inscripción": "inscripcion", "inscripciones": "inscripcion", "inscrita": "inscrit", "inscritas": "inscrit", "inscrito": "inscrit", "inscritos": "inscrit", "insecticida": "insectic", "insecto": "insect", "insectos": "insect", "inseguridad": "insegur", "insen": "insen", "insensatez": "insensatez", "inservibles": "inserv", "insiders": "insiders", "insidiosos": "insidi", "insignia": "insigni", "insignificante": "insignif", "insinúa": "insinu", "insinuó": "insinu", "insípidos": "insip", "insista": "insist", "insiste": "insist", "insisten": "insist", "insistencia": "insistent", "insistente": "insistent", "insistía": "insist", "insistían": "insist", "insistieron": "insist", "insistió": "insist", "insistir": "insist", "insistirá": "insist", "insistiré": "insist", "insistirse": "insist", "insististe": "insist", "insisto": "insist", "insólito": "insolit", "insospechado": "insospech", "inspección": "inspeccion", "inspeccionaba": "inspeccion", "inspeccionado": "inspeccion", "inspecciones": "inspeccion", "inspector": "inspector", "inspectores": "inspector", "inspiraba": "inspir", "inspiración": "inspir", "inspiraciones": "inspir", "inspirada": "inspir", "inspirado": "inspir", "instala": "instal", "instalación": "instal", "instalaciones": "instal", "instalada": "instal", "instaladas": "instal", "instalado": "instal", "instalados": "instal", "instalamos": "instal", "instalan": "instal", "instalando": "instal", "instalar": "instal", "instalará": "instal", "instalarán": "instal", "instalarlo": "instal", "instalarlos": "instal", "instalaron": "instal", "instalarse": "instal", "instalen": "instal", "instaló": "instal", "instancia": "instanci", "instancias": "instanci", "instándolos": "instandol", "instantánea": "instantane", "instantáneamente": "instantan", "instante": "instant", "instantes": "instant", "instará": "instar", "instaurada": "instaur", "instinto": "instint", "institución": "institu", "institucional": "institucional", "institucionales": "institucional", "institucionalizar": "institucionaliz", "institucionalmente": "institucional", "instituciones": "institu", "instituida": "institu", "instituír": "instituir", "institute": "institut", "instituto": "institut", "institutos": "institut", "instituya": "institu", "instituyan": "institu", "instó": "insto", "instrucción": "instruccion", "instrucciones": "instruccion", "instructor": "instructor", "instructora": "instructor", "instrumentación": "instrument", "instrumentado": "instrument", "instrumentados": "instrument", "instrumental": "instrumental", "instrumentar": "instrument", "instrumentaran": "instrument", "instrumentistas": "instrument", "instrumento": "instrument", "instrumentó": "instrument", "instrumentos": "instrument", "instruments": "instruments", "instruye": "instru", "instruyó": "instru", "insubordinación": "insubordin", "insubstancial": "insubstancial", "insuficiencia": "insuficient", "insuficiente": "insuficient", "insuficientes": "insuficient", "insulta": "insult", "insultaba": "insult", "insultando": "insult", "insulté": "insult", "insulto": "insult", "insultos": "insult", "insumo": "insum", "insuperable": "insuper", "insurgencia": "insurgent", "insurgentes": "insurgent", "insurrección": "insurreccion", "intachable": "intach", "intacta": "intact", "intactas": "intact", "intacto": "intact", "integra": "integr", "integración": "integr", "integracionista": "integracion", "integrada": "integr", "integradas": "integr", "integrado": "integr", "integrados": "integr", "integral": "integral", "integrales": "integral", "íntegramente": "integr", "integran": "integr", "integrante": "integr", "integrantes": "integr", "integrar": "integr", "integrará": "integr", "integrarán": "integr", "integraría": "integr", "integrarlo": "integr", "integrarlos": "integr", "integraron": "integr", "integrarse": "integr", "integridad": "integr", "integristas": "integr", "íntegro": "integr", "integró": "integr", "intel": "intel", "intelectual": "intelectual", "intelectuales": "intelectual", "intelectualmente": "intelectual", "inteligencia": "inteligent", "inteligente": "inteligent", "inteligentes": "inteligent", "intempestivamente": "intempest", "intempestivo": "intempest", "intención": "intencion", "intencionado": "intencion", "intencional": "intencional", "intencionales": "intencional", "intenciones": "intencion", "intensa": "intens", "intensamente": "intens", "intensas": "intens", "intensidad": "intens", "intensificado": "intensific", "intensificando": "intensific", "intensificar": "intensific", "intensificó": "intensific", "intensifiquen": "intensifiqu", "intensión": "intension", "intensivamente": "intens", "intenso": "intens", "intensos": "intens", "intenta": "intent", "intentaba": "intent", "intentaban": "intent", "intentado": "intent", "intentamos": "intent", "intentan": "intent", "intentando": "intent", "intentar": "intent", "intentará": "intent", "intentarán": "intent", "intentaré": "intent", "intentarlo": "intent", "intentaron": "intent", "intento": "intent", "intentó": "intent", "intentos": "intent", "inter": "inter", "interacción": "interaccion", "interaciones": "inter", "interactiva": "interact", "interactivo": "interact", "interamericana": "interamerican", "interbancaria": "interbancari", "interbancarias": "interbancari", "interbancario": "interbancari", "intercambian": "intercambi", "intercambiando": "intercambi", "intercambiar": "intercambi", "intercambié": "intercambi", "intercambio": "intercambi", "intercambió": "intercamb", "interceder": "interced", "intercedido": "interced", "intercepción": "intercepcion", "interceptado": "intercept", "interceptados": "intercept", "intercomunicará": "intercomunic", "interconexión": "interconexion", "interconstruido": "interconstru", "intercontinental": "intercontinental", "intercostal": "intercostal", "intercostero": "intercoster", "interdependiente": "interdependient", "interdisciplinario": "interdisciplinari", "interés": "interes", "interesa": "interes", "interesaba": "interes", "interesada": "interes", "interesadas": "interes", "interesado": "interes", "interesados": "interes", "interesan": "interes", "interesante": "interes", "interesantes": "interes", "interesara": "interes", "interesaría": "interes", "interesarme": "interes", "interesaron": "interes", "interescuadras": "interescuadr", "interese": "interes", "interesen": "interes", "intereses": "interes", "interfase": "interf", "interferencia": "interferent", "interfieran": "interf", "interfieren": "interfier", "interfronterizo": "interfronteriz", "intergrupales": "intergrupal", "interina": "interin", "interinato": "interinat", "interinatos": "interinat", "interino": "interin", "interior": "interior", "interiores": "interior", "interioridad": "interior", "interiormente": "interior", "interlocutora": "interlocutor", "intermatrix": "intermatrix", "intermedia": "intermedi", "intermediación": "intermedi", "intermediaria": "intermediari", "intermediarias": "intermediari", "intermediario": "intermediari", "intermediarios": "intermediari", "intermediarista": "intermediar", "intermedio": "intermedi", "intermedios": "intermedi", "intermitentes": "intermitent", "interna": "intern", "internacional": "internacional", "internacionales": "internacional", "internacionalización": "internacionaliz", "internacionalmente": "internacional", "internado": "intern", "internamente": "intern", "internarnos": "intern", "internaron": "intern", "internas": "intern", "international": "international", "interno": "intern", "internó": "intern", "internos": "intern", "interpeló": "interpel", "interponer": "interpon", "interpreta": "interpret", "interpretaba": "interpret", "interpretación": "interpret", "interpretaciones": "interpret", "interpretado": "interpret", "interpretamos": "interpret", "interpretan": "interpret", "interpretando": "interpret", "interpretándolo": "interpret", "interpretar": "interpret", "interpretara": "interpret", "interpretará": "interpret", "interpretarán": "interpret", "interpretaremos": "interpret", "interpretarlas": "interpret", "interpretarse": "interpret", "interprete": "interpret", "intérprete": "interpret", "interpreten": "interpret", "intérpretes": "interpret", "interpretó": "interpret", "interpuestas": "interpuest", "interpuestos": "interpuest", "interpuso": "interpus", "interrelacionarse": "interrelacion", "interrogada": "interrog", "interrogado": "interrog", "interrogados": "interrog", "interrogante": "interrog", "interrogar": "interrog", "interrogó": "interrog", "interrumpa": "interrump", "interrumpe": "interrump", "interrumpía": "interrump", "interrumpido": "interrump", "interrumpidos": "interrump", "interrumpieron": "interrump", "interrumpió": "interrump", "interrumpir": "interrump", "interrupción": "interrupcion", "interruptor": "interruptor", "interticket": "interticket", "intervalos": "interval", "intervención": "intervencion", "intervenciones": "intervencion", "intervencionismo": "intervencion", "intervendrá": "intervendr", "intervenga": "interveng", "intervengan": "interveng", "intervenido": "interven", "intervenidos": "interven", "intervenir": "interven", "intervenirse": "interven", "interventores": "interventor", "interviene": "intervien", "intervienen": "intervien", "interviniera": "intervin", "intervinieron": "intervin", "intervino": "intervin", "intestino": "intestin", "íntima": "intim", "íntimas": "intim", "intimate": "intimat", "intimidad": "intim", "intimidados": "intimid", "intimidando": "intimid", "íntimo": "intim", "íntimos": "intim", "intolerable": "intoler", "intolerancia": "intoler", "intoxicación": "intox", "intoxicados": "intoxic", "intoxicando": "intoxic", "intralox": "intralox", "intramuscular": "intramuscul", "intransigencia": "intransigent", "intransigentemente": "intransigent", "intrascendente": "intrascendent", "intrascendentes": "intrascendent", "intrincadas": "intrinc", "intrínseca": "intrinsec", "introducción": "introduccion", "introducido": "introduc", "introduciendo": "introduc", "introducir": "introduc", "introducirán": "introduc", "introducirles": "introduc", "introducirse": "introduc", "introductorio": "introductori", "introdujera": "introdujer", "introdujeron": "introdujeron", "introdujo": "introduj", "introduzca": "introduzc", "introspectivo": "introspect", "introvertido": "introvert", "intrusión": "intrusion", "intuición": "intuicion", "intuitiva": "intuit", "inundación": "inund", "inundaciones": "inund", "inundadas": "inund", "inundado": "inund", "inusitada": "inusit", "inusitado": "inusit", "inusual": "inusual", "inútil": "inutil", "inútiles": "inutil", "inútilmente": "inutil", "invadidas": "invad", "invadido": "invad", "invadieron": "invad", "invadió": "invad", "invadir": "invad", "invalidan": "invalid", "invaluable": "invalu", "invasión": "invasion", "invasiones": "invasion", "invencible": "invenc", "invención": "invencion", "inventado": "invent", "inventando": "invent", "inventar": "invent", "inventario": "inventari", "invente": "invent", "inventé": "invent", "inventiva": "invent", "invento": "invent", "inventó": "invent", "inverlat": "inverlat", "inverméxico": "invermex", "invernadero": "invernader", "invernal": "invernal", "inverosímil": "inverosimil", "inversa": "invers", "inversión": "inversion", "inversiones": "inversion", "inversionista": "inversion", "inversionistas": "inversion", "invertía": "invert", "invertidas": "invert", "invertido": "invert", "invertidos": "invert", "invertimos": "invert", "invertir": "invert", "invertirá": "invert", "invertirán": "invert", "invertiremos": "invert", "invertirían": "invert", "invertirla": "invert", "invertirle": "invert", "investidura": "investidur", "investiga": "investig", "investigaban": "investig", "investigación": "investig", "investigaciones": "investig", "investigado": "investig", "investigador": "investig", "investigadora": "investig", "investigadores": "investig", "investigados": "investig", "investigan": "investig", "investigando": "investig", "investigar": "investig", "investigará": "investig", "investigaran": "investig", "investigarse": "investig", "investigó": "investig", "investigue": "investig", "investiguen": "investig", "invicta": "invict", "invicto": "invict", "invictos": "invict", "invierno": "inviern", "invierta": "inviert", "invierte": "inviert", "invierten": "inviert", "invirtiendo": "invirt", "invirtieron": "invirt", "invirtió": "invirt", "invisiblemente": "invis", "invita": "invit", "invitaba": "invit", "invitación": "invit", "invitaciones": "invit", "invitadas": "invit", "invitado": "invit", "invitados": "invit", "invitamos": "invit", "invitan": "invit", "invitando": "invit", "invitar": "invit", "invitarlo": "invit", "invitaron": "invit", "invite": "invit", "inviten": "invit", "invito": "invit", "invitó": "invit", "invocando": "invoc", "involucra": "involucr", "involucrada": "involucr", "involucradas": "involucr", "involucrado": "involucr", "involucrados": "involucr", "involucramiento": "involucr", "involucran": "involucr", "involucrar": "involucr", "involucrarlo": "involucr", "involucrarme": "involucr", "involucrarse": "involucr", "involucre": "involucr", "involucro": "involucr", "involuntario": "involuntari", "inyección": "inyeccion", "inyectar": "inyect", "inyecte": "inyect", "inyectó": "inyect", "ionizados": "ioniz", "ionizantes": "ioniz", "ip": "ip", "ipiña": "ipiñ", "ir": "ir", "ira": "ira", "irá": "ira", "iracheta": "irachet", "iraheta": "irahet", "iran": "iran", "irán": "iran", "iraní": "iran", "iraníes": "iran", "irapuato": "irapuat", "iraq": "iraq", "iraquí": "iraqu", "iraquíes": "iraqu", "iremos": "irem", "iría": "iri", "irían": "iri", "iriarte": "iriart", "irigoyen": "irigoy", "irineo": "irine", "irlandés": "irlandes", "irlandeses": "irlandes", "irlos": "irlos", "irma": "irma", "irme": "irme", "irnos": "irnos", "ironía": "iron", "irónico": "iron", "ironizaba": "ironiz", "irracional": "irracional", "irrealistas": "irreal", "irrealizables": "irrealiz", "irreconocible": "irreconoc", "irrecuperable": "irrecuper", "irredentos": "irredent", "irrefutable": "irrefut", "irregular": "irregul", "irregulares": "irregular", "irregularidad": "irregular", "irregularidades": "irregular", "irrelevante": "irrelev", "irrelevantes": "irrelev", "irremisiblemente": "irremis", "irrenunciabilidad": "irrenunci", "irresoluto": "irresolut", "irresolutos": "irresolut", "irresponsabilidad": "irrespons", "irresponsable": "irrespons", "irresponsables": "irrespons", "irreversible": "irrevers", "irrita": "irrit", "irritación": "irrit", "irritaciones": "irrit", "irritado": "irrit", "irritan": "irrit", "irritantes": "irrit", "irritarse": "irrit", "irruga": "irrug", "irse": "irse", "irte": "irte", "irvin": "irvin", "isaac": "isaac", "isabel": "isabel", "isabela": "isabel", "isaias": "isai", "isidro": "isidr", "isla": "isla", "islam": "islam", "islámico": "islam", "island": "island", "islandia": "islandi", "islas": "islas", "isleño": "isleñ", "isleños": "isleñ", "isley": "isley", "ismael": "ismael", "israel": "israel", "israelí": "israel", "israelíes": "israel", "issste": "issste", "isssteleon": "isssteleon", "isssteleón": "isssteleon", "istmo": "istmo", "italia": "itali", "italiana": "italian", "italiano": "italian", "italianos": "italian", "itam": "itam", "itamaraty": "itamaraty", "itesm": "itesm", "itinerante": "itiner", "itinerantes": "itiner", "itinerario": "itinerari", "itinerarios": "itinerari", "itoloca": "itoloc", "itsmo": "itsmo", "itzá": "itza", "iv": "iv", "iva": "iva", "iván": "ivan", "ivo": "ivo", "iwai": "iwai", "ix": "ix", "ixalapa": "ixalap", "ixcaquixtla": "ixcaquixtl", "izar": "izar", "izetbegovic": "izetbegovic", "izquierda": "izquierd", "izquierdas": "izquierd", "izquierdo": "izquierd", "iztapalapa": "iztapalap", "izvestia": "izvesti", "j": "j", "jaafar": "jaaf", "jaboneras": "jaboner", "jacinta": "jacint", "jack": "jack", "jackeline": "jackelin", "jackie": "jacki", "jackson": "jackson", "jacobo": "jacob", "jacobs": "jacobs", "jacques": "jacqu", "jactancio": "jactanci", "jacte": "jact", "jade": "jad", "jaguares": "jaguar", "jaguarundis": "jaguarundis", "jaibos": "jaib", "jaime": "jaim", "jalaba": "jal", "jalado": "jal", "jalando": "jal", "jalapeños": "jalapeñ", "jalar": "jal", "jalarse": "jal", "jale": "jal", "jalisciense": "jalisciens", "jalisco": "jalisc", "jaló": "jal", "jalones": "jalon", "jam": "jam", "jamaiquina": "jamaiquin", "jamás": "jamas", "james": "jam", "jamón": "jamon", "jana": "jan", "janeiro": "janeir", "janice": "janic", "japon": "japon", "japón": "japon", "japonés": "japones", "japonesa": "japones", "japonesas": "japones", "japoneses": "japones", "jaque": "jaqu", "jaramillo": "jaramill", "jardín": "jardin", "jardinería": "jardin", "jardinero": "jardiner", "jardines": "jardin", "jarocha": "jaroch", "jarochas": "jaroch", "jarra": "jarr", "jarro": "jarr", "jarry": "jarry", "jason": "jason", "jasso": "jass", "jaula": "jaul", "javier": "javi", "jazz": "jazz", "jazzista": "jazzist", "jc": "jc", "jcpenney": "jcpenney", "jean": "jean", "jeans": "jeans", "jefa": "jef", "jefatura": "jefatur", "jefaturados": "jefatur", "jefe": "jef", "jefes": "jef", "jeff": "jeff", "jefferson": "jefferson", "jehová": "jehov", "jerarcas": "jerarc", "jerarquía": "jerarqu", "jeremie": "jeremi", "jeremy": "jeremy", "jerga": "jerg", "jerónimo": "jeronim", "jersey": "jersey", "jesés": "jeses", "jesse": "jess", "jessica": "jessic", "jesús": "jesus", "jethro": "jethr", "jetta": "jett", "jim": "jim", "jiménez": "jimenez", "jimmy": "jimmy", "jinete": "jinet", "jinetear": "jinet", "jinetes": "jinet", "jingles": "jingl", "jo": "jo", "joachim": "joachim", "joao": "joa", "joaquín": "joaquin", "jobs": "jobs", "joe": "joe", "joel": "joel", "john": "john", "johnny": "johnny", "johns": "johns", "johnson": "johnson", "jol": "jol", "jolalpán": "jolalpan", "jolopo": "jolop", "jonas": "jon", "jones": "jon", "jonrón": "jonron", "jorge": "jorg", "jornada": "jorn", "jornadas": "jorn", "joroba": "jorob", "jorobas": "jorob", "josé": "jos", "josefina": "josefin", "joselito": "joselit", "joseph": "joseph", "jour": "jour", "journal": "journal", "joven": "jov", "jóven": "jov", "jovencita": "jovencit", "jovencitas": "jovencit", "jovencito": "jovencit", "jovencitos": "jovencit", "jóvenes": "joven", "jovial": "jovial", "joya": "joy", "joyas": "joy", "joyera": "joyer", "joyería": "joy", "joyero": "joyer", "joyeros": "joyer", "joyitas": "joyit", "jr": "jr", "juan": "juan", "juana": "juan", "juarez": "juarez", "juárez": "juarez", "jubilado": "jubil", "jubilados": "jubil", "júbilo": "jubil", "jubilosa": "jubil", "judicial": "judicial", "judiciales": "judicial", "judío": "judi", "judíos": "judi", "judith": "judith", "judoka": "judok", "jueceo": "juece", "jueces": "juec", "juega": "jueg", "juegan": "jueg", "juegas": "jueg", "juego": "jueg", "juegos": "jueg", "juegue": "jueg", "jueguen": "jueg", "jueves": "juev", "juez": "juez", "jugaba": "jug", "jugaban": "jug", "jugada": "jug", "jugado": "jug", "jugador": "jugador", "jugadoras": "jugador", "jugadores": "jugador", "jugados": "jug", "jugando": "jug", "jugar": "jug", "jugará": "jug", "jugaran": "jug", "jugarán": "jug", "jugaremos": "jug", "jugaría": "jug", "jugaron": "jug", "jugo": "jug", "jugó": "jug", "jugosa": "jugos", "jugué": "jug", "juguete": "juguet", "juguetes": "juguet", "juguetito": "juguetit", "juicio": "juici", "juicios": "juici", "julia": "juli", "julián": "julian", "julieta": "juliet", "julio": "juli", "julius": "julius", "juncal": "juncal", "junco": "junc", "jung": "jung", "junio": "juni", "junior": "junior", "junquia": "junqui", "junta": "junt", "juntando": "junt", "juntar": "junt", "juntaron": "junt", "juntas": "junt", "junto": "junt", "juntos": "junt", "jurado": "jur", "juramentado": "jurament", "juramentaron": "jurament", "juramentó": "jurament", "jurídica": "jurid", "jurídicamente": "jurid", "jurídicas": "jurid", "jurídico": "jurid", "jurídicos": "jurid", "jurisdicción": "jurisdiccion", "juristas": "jurist", "juro": "jur", "justa": "just", "justice": "justic", "justicia": "justici", "justiciero": "justicier", "justifica": "justif", "justificable": "justific", "justificación": "justif", "justificada": "justific", "justificadas": "justific", "justifican": "justific", "justificando": "justific", "justificantes": "justif", "justificar": "justific", "justificará": "justific", "justificarán": "justific", "justificare": "justificar", "justificó": "justific", "justifique": "justifiqu", "justino": "justin", "justo": "just", "justos": "just", "juvenil": "juvenil", "juveniles": "juvenil", "juventino": "juventin", "juventud": "juventud", "juzgaban": "juzg", "juzgada": "juzg", "juzgado": "juzg", "juzgador": "juzgador", "juzgados": "juzg", "juzgar": "juzg", "juzgarlo": "juzg", "juzgue": "juzg", "k": "k", "kahlo": "kahl", "kaiman": "kaim", "kansai": "kansai", "kantor": "kantor", "kaoteng": "kaoteng", "karam": "karam", "karate": "karat", "karcz": "karcz", "kardex": "kardex", "karen": "kar", "karina": "karin", "karl": "karl", "karla": "karl", "katheyn": "katheyn", "katia": "kati", "kaveh": "kaveh", "kay": "kay", "kb": "kb", "kbytes": "kbytes", "keldvsh": "keldvsh", "kelly": "kelly", "kelso": "kels", "kempes": "kemp", "kenia": "keni", "keniano": "kenian", "kenianos": "kenian", "keniata": "keniat", "kennan": "kenn", "kennedy": "kennedy", "kenneth": "kenneth", "kenny": "kenny", "kensington": "kensington", "kent": "kent", "kentenich": "kentenich", "kenworth": "kenworth", "kerosina": "kerosin", "kevin": "kevin", "key": "key", "keynesianismo": "keynesian", "kg": "kg", "kgb": "kgb", "khasbulatov": "khasbulatov", "kibeho": "kibeh", "kidman": "kidm", "kiko": "kik", "kilo": "kil", "kilogramos": "kilogr", "kilometraje": "kilometraj", "kilometro": "kilometr", "kilómetro": "kilometr", "kilómetros": "kilometr", "kilos": "kil", "kim": "kim", "kima": "kim", "king": "king", "kinshasa": "kinshas", "kipper": "kipp", "kissinger": "kissing", "kit": "kit", "km": "km", "kmart": "kmart", "knight": "knight", "ko": "ko", "koblenz": "koblenz", "koeman": "koem", "kong": "kong", "korshak": "korshak", "kosovo": "kosov", "krafchick": "krafchick", "kremlin": "kremlin", "kresak": "kresak", "kretch": "kretch", "krieger": "krieg", "krill": "krill", "kristof": "kristof", "kruger": "krug", "kruschev": "kruschev", "kubli": "kubli", "kuehnheim": "kuehnheim", "kumate": "kumat", "kuniaki": "kuniaki", "kuperlmann": "kuperlmann", "kuramura": "kuramur", "kurdos": "kurd", "kutugata": "kutugat", "kuwait": "kuwait", "kuwaití": "kuwait", "kytty": "kytty", "l": "l", "la": "la", "labastida": "labast", "laberinto": "laberint", "labiche": "labich", "labor": "labor", "labora": "labor", "laboral": "laboral", "laborales": "laboral", "laborando": "labor", "laborar": "labor", "laboratorio": "laboratori", "laboratorios": "laboratori", "laborde": "labord", "labores": "labor", "laborioso": "labori", "laboró": "labor", "labra": "labr", "labrecque": "labrecqu", "lacónicos": "lacon", "lácteos": "lacte", "lada": "lad", "ladarse": "lad", "ladas": "lad", "ladatel": "ladatel", "ladera": "lader", "laderas": "lader", "ladino": "ladin", "ladinos": "ladin", "lado": "lad", "lados": "lad", "ladrón": "ladron", "ladrones": "ladron", "lagerfeld": "lagerfeld", "lago": "lag", "lagos": "lag", "lágrimas": "lagrim", "lagüera": "lagüer", "laguna": "lagun", "lagunas": "lagun", "lagunera": "laguner", "laguneros": "laguner", "laicos": "laic", "lajas": "laj", "lajous": "lajous", "lake": "lak", "lala": "lal", "lamadrid": "lamadr", "lamarche": "lamarch", "lambisconería": "lambiscon", "lambretón": "lambreton", "lamen": "lam", "lamenta": "lament", "lamentable": "lament", "lamentablemente": "lament", "lamentables": "lament", "lamentaron": "lament", "lamento": "lament", "lamentó": "lament", "lámina": "lamin", "laminadora": "lamin", "láminas": "lamin", "lamosa": "lamos", "lámparas": "lamp", "lana": "lan", "lanari": "lanari", "lance": "lanc", "lancé": "lanc", "lancen": "lanc", "lancha": "lanch", "lanchero": "lancher", "landois": "landois", "landru": "landru", "lang": "lang", "langange": "langang", "langley": "langley", "lantana": "lantan", "lantastic": "lantastic", "lanz": "lanz", "lanza": "lanz", "lanzaba": "lanz", "lanzada": "lanz", "lanzadas": "lanz", "lanzado": "lanz", "lanzador": "lanzador", "lanzadores": "lanzador", "lanzagranadas": "lanzagran", "lanzamiento": "lanzamient", "lanzamientos": "lanzamient", "lanzar": "lanz", "lanzará": "lanz", "lanzaran": "lanz", "lanzarán": "lanz", "lanzaron": "lanz", "lanzarse": "lanz", "lanzó": "lanz", "lápiz": "lapiz", "lapso": "laps", "lara": "lar", "lareau": "lareau", "laredo": "lared", "laredos": "lared", "lares": "lar", "larga": "larg", "largamente": "larg", "largas": "larg", "largo": "larg", "largometraje": "largometraj", "largometrajes": "largometraj", "largos": "larg", "larguirucho": "larguiruch", "larguísimo": "larguisim", "larios": "lari", "larralde": "larrald", "larry": "larry", "las": "las", "lascivo": "lasciv", "laser": "las", "láser": "las", "lasercard": "lasercard", "láseres": "laser", "lasser": "lass", "lástima": "lastim", "lastimada": "lastim", "lastimadas": "lastim", "lastimar": "lastim", "lastimeramente": "lastimer", "lata": "lat", "latas": "lat", "latente": "latent", "lateral": "lateral", "laterales": "lateral", "lateralidad": "lateral", "latido": "lat", "latin": "latin", "latina": "latin", "latino": "latin", "latinoamérica": "latinoamer", "latinoamericanas": "latinoamerican", "latinoamericano": "latinoamerican", "latinoamericanos": "latinoamerican", "latinos": "latin", "latitudes": "latitud", "latón": "laton", "laudos": "laud", "laudrup": "laudrup", "laura": "laur", "laureano": "laurean", "lauren": "laur", "laurence": "laurenc", "laurent": "laurent", "lava": "lav", "lavacoches": "lavacoch", "lavaderos": "lavader", "lavado": "lav", "lavadora": "lavador", "lavalle": "lavall", "lavan": "lav", "lavar": "lav", "lavarlo": "lav", "lavercombe": "lavercomb", "lavolpe": "lavolp", "laxitud": "laxitud", "layla": "layl", "lázaro": "lazar", "lazcano": "lazcan", "lazo": "laz", "lazos": "laz", "le": "le", "leal": "leal", "leales": "leal", "lealtad": "lealt", "léase": "leas", "leblanc": "leblanc", "lección": "leccion", "lecciones": "leccion", "leche": "lech", "lechería": "lech", "lechero": "lecher", "lecho": "lech", "lechuga": "lechug", "leckie": "lecki", "lecomte": "lecomt", "lector": "lector", "lectores": "lector", "lectura": "lectur", "lecturas": "lectur", "ledezma": "ledezm", "ledo": "led", "lee": "lee", "leeds": "leeds", "leen": "leen", "leer": "leer", "leerán": "leeran", "leerlo": "leerl", "legado": "leg", "legal": "legal", "legales": "legal", "legalidad": "legal", "legalizar": "legaliz", "legalizó": "legaliz", "legalmente": "legal", "legar": "leg", "legendario": "legendari", "legisla": "legisl", "legislación": "legisl", "legislador": "legisl", "legisladora": "legisl", "legisladores": "legisl", "legislan": "legisl", "legislar": "legisl", "legislativa": "legisl", "legislativas": "legisl", "legislativo": "legisl", "legislativos": "legisl", "legislatura": "legislatur", "legislaturas": "legislatur", "legisle": "legisl", "legislen": "legisl", "legista": "legist", "legítima": "legitim", "legítimadefensa": "legitimadefens", "legítimamente": "legitim", "legitimidad": "legitim", "legítimo": "legitim", "legorreta": "legorret", "legrá": "legr", "leguas": "legu", "legue": "leg", "legumbres": "legumbr", "lehnert": "lehnert", "leí": "lei", "leía": "lei", "leída": "leid", "leído": "leid", "lejana": "lejan", "lejanas": "lejan", "lejano": "lejan", "lejanos": "lejan", "lejos": "lej", "lema": "lem", "lemas": "lem", "lemus": "lemus", "leña": "leñ", "lencería": "lenc", "lendl": "lendl", "leñero": "leñer", "lengua": "lengu", "lenguaje": "lenguaj", "lennard": "lennard", "lenny": "lenny", "lenta": "lent", "lentamente": "lent", "lentejuela": "lentejuel", "lentejuelas": "lentejuel", "lentes": "lent", "lentitud": "lentitud", "lento": "lent", "lentos": "lent", "leo": "leo", "león": "leon", "leonard": "leonard", "leonarda": "leonard", "leonardo": "leonard", "leones": "leon", "leonor": "leonor", "leopoldo": "leopold", "leotardos": "leotard", "léoz": "leoz", "lerma": "lerm", "lermas": "lerm", "lerna": "lern", "leroux": "leroux", "les": "les", "lesbianas": "lesbian", "lesión": "lesion", "lesiona": "lesion", "lesionada": "lesion", "lesionadas": "lesion", "lesionado": "lesion", "lesionados": "lesion", "lesionan": "lesion", "lesionando": "lesion", "lesionar": "lesion", "lesiones": "lesion", "lesiono": "lesion", "lesionó": "lesion", "lessing": "lessing", "letal": "letal", "letales": "letal", "leticia": "letici", "letra": "letr", "letras": "letr", "letrero": "letrer", "letreros": "letrer", "letrina": "letrin", "letrinas": "letrin", "letrista": "letrist", "lett": "lett", "leucemia": "leucemi", "levanta": "levant", "levantaba": "levant", "levantada": "levant", "levantado": "levant", "levantados": "levant", "levantamiento": "levant", "levantando": "levant", "levantándose": "levant", "levantante": "levant", "levantar": "levant", "levantaran": "levant", "levantarán": "levant", "levantarás": "levant", "levantarme": "levant", "levantaron": "levant", "levantarse": "levant", "levante": "levant", "levanten": "levant", "levantó": "levant", "levati": "levati", "leve": "lev", "levemente": "levement", "leves": "lev", "levin": "levin", "levín": "levin", "levítico": "levit", "levy": "levy", "ley": "ley", "leyenda": "leyend", "leyendas": "leyend", "leyendo": "leyend", "leyeron": "leyeron", "leyes": "ley", "leyó": "ley", "leyva": "leyv", "lianas": "lian", "libanés": "libanes", "libanesa": "libanes", "líbano": "liban", "libera": "liber", "liberación": "liber", "liberada": "liber", "liberado": "liber", "liberal": "liberal", "liberales": "liberal", "liberalismo": "liberal", "liberalización": "liberaliz", "liberalizar": "liberaliz", "liberan": "liber", "liberar": "liber", "liberará": "liber", "liberarlo": "liber", "liberaron": "liber", "liberia": "liberi", "libero": "liber", "líbero": "liber", "liberó": "liber", "libertad": "libert", "libertades": "libertad", "libertador": "libert", "libertario": "libertari", "libidinosamente": "libidin", "libidio": "libidi", "libramiento": "libramient", "libran": "libr", "librando": "libr", "librará": "libr", "librarla": "libr", "librarse": "libr", "librarte": "librart", "libras": "libr", "libre": "libr", "librerías": "libr", "libres": "libr", "libreta": "libret", "librito": "librit", "libro": "libr", "libró": "libr", "libros": "libr", "lic": "lic", "licea": "lice", "licencia": "licenci", "licenciado": "licenci", "licencias": "licenci", "licenciaturas": "licenciatur", "licha": "lich", "licitación": "licit", "licitaciones": "licit", "licitará": "licit", "lícito": "licit", "liconsa": "licons", "licor": "licor", "licuada": "licu", "lid": "lid", "líder": "lid", "liderato": "liderat", "liderazgo": "liderazg", "liderazgos": "liderazg", "lidereados": "lider", "liderear": "lider", "líderes": "lider", "lideresa": "lideres", "lideresas": "lideres", "lidia": "lidi", "lidiado": "lidi", "lidiaron": "lidi", "lidice": "lidic", "lidió": "lid", "lido": "lid", "lienzo": "lienz", "liera": "lier", "lievin": "lievin", "lifane": "lifan", "life": "lif", "liga": "lig", "ligados": "lig", "ligamayorista": "ligamayor", "ligamento": "ligament", "ligar": "lig", "ligarde": "ligard", "ligaron": "lig", "ligas": "lig", "ligera": "liger", "ligeramente": "liger", "ligeras": "liger", "ligereza": "ligerez", "ligero": "liger", "light": "light", "ligne": "lign", "ligó": "lig", "ligue": "lig", "liguilla": "liguill", "liliana": "lilian", "lima": "lim", "limar": "lim", "limita": "limit", "limitaba": "limit", "limitaciones": "limit", "limitado": "limit", "limitados": "limit", "limitan": "limit", "limitar": "limit", "limitará": "limit", "limite": "limit", "límite": "limit", "limited": "limit", "límites": "limit", "limitó": "limit", "limítrofes": "limitrof", "limits": "limits", "limón": "limon", "limonada": "limon", "limosine": "limosin", "limosna": "limosn", "limosnita": "limosnit", "limpia": "limpi", "limpiamente": "limpi", "limpiando": "limpi", "limpiaparabrisas": "limpiaparabris", "limpiar": "limpi", "limpiaron": "limpi", "limpias": "limpi", "limpieza": "limpiez", "limpio": "limpi", "lina": "lin", "linares": "linar", "linces": "linc", "linchar": "linch", "lincoln": "lincoln", "linda": "lind", "linduras": "lindur", "line": "lin", "linea": "line", "línea": "line", "lineal": "lineal", "lineamiento": "lineamient", "lineamientos": "lineamient", "líneas": "lin", "lineker": "linek", "liner": "lin", "ling": "ling", "lingada": "ling", "linterna": "lintern", "líos": "lios", "liquidación": "liquid", "liquidaciones": "liquid", "liquidar": "liquid", "liquidará": "liquid", "liquidez": "liquidez", "liquido": "liqu", "líquido": "liqu", "líquidos": "liqu", "lira": "lir", "lisa": "lis", "lista": "list", "listado": "list", "listados": "list", "listas": "list", "listo": "list", "listón": "liston", "listos": "list", "literalmente": "literal", "literaria": "literari", "literarias": "literari", "literarios": "literari", "literatos": "literat", "literatura": "literatur", "litigios": "litigi", "litoral": "litoral", "litorales": "litoral", "litro": "litr", "litros": "litr", "livas": "liv", "liverpool": "liverpool", "livestock": "livestock", "liviano": "livian", "llaguno": "llagun", "llama": "llam", "llamaba": "llam", "llamaban": "llam", "llamada": "llam", "llamadas": "llam", "llamado": "llam", "llamados": "llam", "llamáis": "llam", "llamamiento": "llamamient", "llamamos": "llam", "llaman": "llam", "llamando": "llam", "llamar": "llam", "llamara": "llam", "llamará": "llam", "llamaría": "llam", "llamarían": "llam", "llamarlo": "llam", "llamarnos": "llam", "llamaron": "llam", "llamarse": "llam", "llamas": "llam", "llamativa": "llamat", "llamativas": "llamat", "llamativos": "llamat", "llame": "llam", "llamen": "llam", "llamo": "llam", "llamó": "llam", "llanamente": "llan", "llanas": "llan", "llanes": "llan", "llano": "llan", "llanos": "llan", "llanta": "llant", "llantas": "llant", "llanto": "llant", "llave": "llav", "llaveros": "llaver", "llaves": "llav", "lle": "lle", "llega": "lleg", "llegaba": "lleg", "llegaban": "lleg", "llegada": "lleg", "llegadas": "lleg", "llegado": "lleg", "llegados": "lleg", "llegamos": "lleg", "llegan": "lleg", "llegando": "lleg", "llegar": "lleg", "llegara": "lleg", "llegará": "lleg", "llegaran": "lleg", "llegarán": "lleg", "llegaré": "lleg", "llegaremos": "lleg", "llegaría": "lleg", "llegarían": "lleg", "llegaron": "lleg", "llegarse": "lleg", "llegas": "lleg", "llego": "lleg", "llegó": "lleg", "llegue": "lleg", "lleguemos": "lleg", "lleguen": "lleg", "llena": "llen", "llenado": "llen", "llenan": "llen", "llenando": "llen", "llenar": "llen", "llenará": "llen", "llenarla": "llen", "llenarlas": "llen", "llenaron": "llen", "llenarse": "llen", "llenas": "llen", "lleno": "llen", "llenó": "llen", "llenos": "llen", "llergo": "llerg", "lleva": "llev", "llevaba": "llev", "llevaban": "llev", "llevada": "llev", "llevadas": "llev", "llevado": "llev", "llevados": "llev", "llevamos": "llev", "llevan": "llev", "llevando": "llev", "llevándolos": "llev", "llevándose": "llev", "llevar": "llev", "llevara": "llev", "llevará": "llev", "llevaran": "llev", "llevarán": "llev", "llevaría": "llev", "llevarían": "llev", "llevarla": "llev", "llevarlas": "llev", "llevarle": "llev", "llevarlo": "llev", "llevarlos": "llev", "llevaron": "llev", "llevarse": "llev", "llevárselo": "llev", "llevas": "llev", "llevase": "llev", "lleve": "llev", "llévelo": "llevel", "lleven": "llev", "llevo": "llev", "llevó": "llev", "llora": "llor", "lloraba": "llor", "lloran": "llor", "llorando": "llor", "llorar": "llor", "lloraré": "llor", "lloró": "llor", "llorosa": "lloros", "llosa": "llos", "llover": "llov", "lloviendo": "llov", "llovió": "llov", "llovizna": "llovizn", "lloviznas": "llovizn", "llueva": "lluev", "llueve": "lluev", "llueven": "lluev", "lluvia": "lluvi", "lluvias": "lluvi", "lluvioso": "lluvios", "lluviosos": "lluvios", "lmkf": "lmkf", "lo": "lo", "loable": "loabl", "loaeza": "loaez", "lobeira": "lobeir", "lobo": "lob", "lobos": "lob", "lóbulo": "lobul", "loca": "loc", "locación": "locacion", "local": "local", "locales": "local", "localice": "localic", "localidad": "local", "localidades": "local", "localiza": "localiz", "localización": "localiz", "localizada": "localiz", "localizadas": "localiz", "localizado": "localiz", "localizados": "localiz", "localizar": "localiz", "localizará": "localiz", "localizaron": "localiz", "localizó": "localiz", "localmente": "local", "locka": "lock", "loco": "loc", "locos": "loc", "locura": "locur", "lodazal": "lodazal", "lodo": "lod", "lofton": "lofton", "lógica": "logic", "lógicamente": "logic", "lógico": "logic", "logo": "log", "logotipo": "logotip", "logra": "logr", "lograba": "logr", "lograban": "logr", "lograda": "logr", "logradas": "logr", "logrado": "logr", "logrados": "logr", "logramos": "logr", "logran": "logr", "logrando": "logr", "lograr": "logr", "lograra": "logr", "logrará": "logr", "lograrán": "logr", "lograremos": "logr", "lograrlo": "logr", "lograron": "logr", "lograrse": "logr", "logre": "logr", "logré": "logr", "logren": "logr", "logro": "logr", "logró": "logr", "logronés": "logrones", "logroñés": "logroñes", "logros": "logr", "lolita": "lolit", "loma": "lom", "lomas": "lom", "lombardo": "lombard", "lomelí": "lomel", "lomos": "lom", "lona": "lon", "lonche": "lonch", "lonches": "lonch", "londinense": "londinens", "londres": "londr", "longevo": "longev", "longitud": "longitud", "longoria": "longori", "lope": "lop", "lopez": "lopez", "lópez": "lopez", "lópezfigueroa": "lopezfiguero", "lopezportillista": "lopezportill", "loredo": "lored", "lorena": "loren", "lorenzo": "lorenz", "loreto": "loret", "los": "los", "losada": "los", "lote": "lot", "lotería": "lot", "lotes": "lot", "lotus": "lotus", "louis": "louis", "louisiana": "louisian", "lourdes": "lourd", "lover": "lov", "loya": "loy", "loyola": "loyol", "lozano": "lozan", "lsqb": "lsqb", "ltd": "ltd", "lubricación": "lubric", "lucas": "luc", "luce": "luc", "lucen": "luc", "lucero": "lucer", "luces": "luc", "lucha": "luch", "luchaba": "luch", "luchado": "luch", "luchador": "luchador", "luchadores": "luchador", "luchando": "luch", "luchar": "luch", "luchará": "luch", "lucharon": "luch", "luchas": "luch", "lucho": "luch", "luchó": "luch", "lucía": "luc", "luciano": "lucian", "lúcidamente": "lucid", "lucido": "luc", "luciendo": "luc", "lucieron": "luc", "lucila": "lucil", "lucimiento": "lucimient", "lucio": "luci", "lució": "luc", "lucir": "luc", "lucrar": "lucr", "lucro": "lucr", "luctuosas": "luctu", "lúdica": "ludic", "lúdicos": "ludic", "ludmila": "ludmil", "luego": "lueg", "lueguito": "lueguit", "luévano": "luevan", "lugar": "lug", "lugares": "lugar", "lugo": "lug", "luis": "luis", "luisa": "luis", "luiz": "luiz", "lujo": "luj", "lujos": "luj", "lujoso": "lujos", "lumbreras": "lumbrer", "luminosas": "lumin", "luminosidad": "lumin", "luminoso": "lumin", "luminotécnicos": "luminotecn", "luna": "lun", "lunar": "lun", "lunáticos": "lunat", "lunes": "lun", "luneta": "lunet", "lupe": "lup", "lupercio": "luperci", "lupita": "lupit", "lúpulo": "lupul", "lusinchi": "lusinchi", "lutero": "luter", "luto": "lut", "luviano": "luvian", "luxemburgo": "luxemburg", "luz": "luz", "luzcan": "luzc", "luzón": "luzon", "lwdvig": "lwdvig", "lydia": "lydi", "lynch": "lynch", "lyon": "lyon", "m": "m", "ma": "ma", "mac": "mac", "macabro": "macabr", "macartismo": "macart", "macedonia": "macedoni", "macedonio": "macedoni", "machado": "mach", "machetero": "macheter", "machiria": "machiri", "machismo": "machism", "machista": "machist", "macho": "mach", "machuca": "machuc", "macías": "mac", "macintosh": "macintosh", "macizo": "maciz", "macotela": "macotel", "macroeconómica": "macroeconom", "macroeconómicas": "macroeconom", "macroplaza": "macroplaz", "macrópolis": "macropolis", "macumba": "macumb", "madamme": "madamm", "madariaga": "madariag", "madeja": "madej", "mademoiselle": "mademoisell", "madera": "mader", "maderámenes": "maderamen", "maderas": "mader", "madero": "mader", "madrazo": "madraz", "madre": "madr", "madres": "madr", "madrid": "madr", "madrigal": "madrigal", "madril": "madril", "madrileñas": "madrileñ", "madrileño": "madrileñ", "madrileños": "madrileñ", "madrina": "madrin", "madrinas": "madrin", "madrugada": "madrug", "madura": "madur", "maduración": "madur", "madurar": "madur", "madure": "madur", "madurez": "madurez", "maduro": "madur", "maduros": "madur", "maestra": "maestr", "maestras": "maestr", "maestría": "maestr", "maestrías": "maestr", "maestro": "maestr", "maestros": "maestr", "mafia": "mafi", "mafiosos": "mafios", "magala": "magal", "magaña": "magañ", "magdalena": "magdalen", "magia": "magi", "magic": "magic", "mágica": "magic", "mágicas": "magic", "mágico": "magic", "magisterial": "magisterial", "magisteriales": "magisterial", "magisterio": "magisteri", "magistrado": "magistr", "magistrados": "magistr", "magistral": "magistral", "magistrales": "magistral", "magistralmente": "magistral", "magma": "magm", "magna": "magn", "magnesia": "magnesi", "magnética": "magnet", "magnéticamente": "magnet", "magnéticas": "magnet", "magnéticos": "magnet", "magneto": "magnet", "magnetómetro": "magnetometr", "magnífica": "magnif", "magníficas": "magnif", "magnificencia": "magnificent", "magnífico": "magnif", "magníficos": "magnif", "magnitud": "magnitud", "magno": "magn", "magnolia": "magnoli", "magnum": "magnum", "magotteaux": "magotteaux", "mague": "mag", "mahoney": "mahoney", "mahony": "mahony", "maiz": "maiz", "maíz": "maiz", "majadería": "majad", "majadero": "majader", "majdel": "majdel", "majestad": "majest", "majestuosas": "majestu", "majestuosidad": "majestu", "majestuoso": "majestu", "maksim": "maksim", "mal": "mal", "mala": "mal", "malagón": "malagon", "malas": "mal", "malcolm": "malcolm", "malcriada": "malcri", "maldad": "mald", "maldades": "maldad", "maldición": "maldicion", "maldiciones": "maldicion", "maldito": "maldit", "maldonado": "maldon", "maleantes": "maleant", "males": "mal", "maletas": "malet", "malicia": "malici", "maligna": "malign", "malignas": "malign", "malignidad": "malign", "maligno": "malign", "malinche": "malinch", "malinchista": "malinch", "malintencionada": "malintencion", "malla": "mall", "mallas": "mall", "malo": "mal", "malograrlas": "malogr", "malos": "mal", "malta": "malt", "maltratado": "maltrat", "maltratados": "maltrat", "maltrato": "maltrat", "maltrecha": "maltrech", "malva": "malv", "malvada": "malv", "malvavisco": "malvavisc", "malversación": "malvers", "malversaciones": "malvers", "malvivientes": "malvivient", "mamá": "mam", "mamás": "mamas", "mamíferos": "mamifer", "mamilas": "mamil", "mamparas": "mamp", "maña": "mañ", "maná": "man", "management": "management", "mánager": "manag", "managers": "managers", "mañana": "mañan", "mañanas": "mañan", "manazos": "manaz", "mancha": "manch", "manchada": "manch", "manchar": "manch", "manchas": "manch", "mancillados": "mancill", "mancomunada": "mancomun", "mancuso": "mancus", "manda": "mand", "mandadas": "mand", "mandado": "mand", "mandamiento": "mandamient", "mandamientos": "mandamient", "mandamos": "mand", "mandan": "mand", "mandar": "mand", "mandará": "mand", "mandaríamos": "mand", "mandarinas": "mandarin", "mandarlas": "mand", "mandarlo": "mand", "mandaron": "mand", "mandatario": "mandatari", "mandatarios": "mandatari", "mandato": "mandat", "mandatos": "mandat", "manden": "mand", "mandíbula": "mandibul", "mandíbulas": "mandibul", "mandilones": "mandilon", "mando": "mand", "mandó": "mand", "mandos": "mand", "mandril": "mandril", "maneja": "manej", "manejaba": "manej", "manejable": "manej", "manejada": "manej", "manejadas": "manej", "manejado": "manej", "manejador": "manej", "manejadores": "manej", "manejados": "manej", "manejamos": "manej", "manejan": "manej", "manejando": "manej", "manejar": "manej", "manejará": "manej", "manejaron": "manej", "manejarse": "manej", "maneje": "manej", "manejen": "manej", "manejes": "manej", "manejo": "manej", "manejó": "manej", "manejos": "manej", "manente": "manent", "manera": "maner", "maneras": "maner", "manga": "mang", "manganas": "mangan", "mangas": "mang", "manglares": "manglar", "manguera": "manguer", "manhattan": "manhatt", "manía": "man", "maniatar": "maniat", "manieristas": "manier", "manifestaban": "manifest", "manifestación": "manifest", "manifestaciones": "manifest", "manifestada": "manifest", "manifestadas": "manifest", "manifestado": "manifest", "manifestantes": "manifest", "manifestar": "manifest", "manifestaran": "manifest", "manifestaron": "manifest", "manifestarse": "manifest", "manifestó": "manifest", "manifiesta": "manifiest", "manifiesto": "manifiest", "manifold": "manifold", "manila": "manil", "maniobra": "maniobr", "maniobras": "maniobr", "manipulación": "manipul", "manipulado": "manipul", "manipular": "manipul", "manita": "manit", "manjar": "manj", "manjarrez": "manjarrez", "manneck": "manneck", "mano": "man", "manolita": "manolit", "manolo": "manol", "manos": "man", "mañosamente": "mañ", "manotas": "manot", "manrique": "manriqu", "manríquez": "manriquez", "mansedumbre": "mansedumbr", "mansión": "mansion", "mansiones": "mansion", "manso": "mans", "mansos": "mans", "mansur": "mansur", "mantas": "mant", "mantendrá": "mantendr", "mantenemos": "manten", "mantener": "manten", "mantenerlas": "manten", "mantenerlo": "manten", "mantenerlos": "manten", "mantenerme": "manten", "mantenernos": "manten", "mantenerse": "manten", "mantenga": "manteng", "mantengan": "manteng", "mantenía": "manten", "mantenidas": "manten", "mantenido": "manten", "manteniendo": "manten", "manteniéndose": "manten", "mantenimiento": "manten", "mantiene": "mantien", "mantienen": "mantien", "manto": "mant", "mantuvieron": "mantuv", "mantuvo": "mantuv", "manu": "manu", "manual": "manual", "manuales": "manual", "manualidades": "manual", "manuel": "manuel", "manufactura": "manufactur", "manufacturar": "manufactur", "manufacturera": "manufacturer", "manufactureros": "manufacturer", "many": "many", "manzana": "manzan", "manzanas": "manzan", "manzanillo": "manzanill", "maoísta": "maoist", "maoístas": "maoist", "mapa": "map", "mapas": "map", "mapinfo": "mapinf", "maqueta": "maquet", "maquilada": "maquil", "maquilador": "maquil", "maquiladora": "maquil", "maquiladoras": "maquil", "maquilados": "maquil", "maquilas": "maquil", "maquillado": "maquill", "maquillaje": "maquillaj", "maquillarlas": "maquill", "máquina": "maquin", "maquinaria": "maquinari", "maquinas": "maquin", "máquinas": "maquin", "maquinista": "maquin", "mar": "mar", "mara": "mar", "maradona": "maradon", "maraldo": "marald", "marasmo": "marasm", "maratón": "maraton", "maravilla": "maravill", "maravillando": "maravill", "maravillosa": "maravill", "maravillosamente": "maravill", "maravillosas": "maravill", "maravillosos": "maravill", "marc": "marc", "marca": "marc", "marcaba": "marc", "marcación": "marcacion", "marcada": "marc", "marcadas": "marc", "marcado": "marc", "marcador": "marcador", "marcadores": "marcador", "marcan": "marc", "marcando": "marc", "marcar": "marc", "marcará": "marc", "marcaron": "marc", "marcas": "marc", "marcela": "marcel", "marcelino": "marcelin", "marcelo": "marcel", "marcha": "march", "marchado": "march", "marchan": "march", "marcharían": "march", "marcharon": "march", "marcharse": "march", "marchas": "march", "marche": "march", "marchó": "march", "marcial": "marcial", "marciano": "marcian", "marcio": "marci", "marco": "marc", "marcó": "marc", "marcos": "marc", "marcus": "marcus", "marcusse": "marcuss", "mareadas": "mar", "maremoto": "maremot", "mares": "mar", "marfil": "marfil", "marga": "marg", "margáin": "margain", "margaret": "margaret", "margaretha": "margareth", "margarita": "margarit", "margen": "marg", "márgen": "marg", "margenes": "margen", "margina": "margin", "marginación": "margin", "marginaciones": "margin", "marginadas": "margin", "marginados": "margin", "marginal": "marginal", "marginara": "margin", "marginó": "margin", "marguerite": "marguerit", "margules": "margul", "mari": "mari", "maria": "mari", "maría": "mar", "mariachi": "mariachi", "marian": "mari", "mariana": "marian", "marianas": "marian", "mariani": "mariani", "mariano": "marian", "marianos": "marian", "mariateguista": "mariategu", "maribel": "maribel", "maricela": "maricel", "maridito": "maridit", "marido": "mar", "maridos": "mar", "marie": "mari", "mariela": "mariel", "mariguana": "mariguan", "marihuana": "marihuan", "marijo": "marij", "marilyn": "marilyn", "marin": "marin", "marín": "marin", "marina": "marin", "marinas": "marin", "marinera": "mariner", "marineros": "mariner", "marino": "marin", "marinos": "marin", "mario": "mari", "marion": "marion", "marionetero": "marioneter", "mariposas": "marip", "mariscal": "mariscal", "mariscales": "mariscal", "marisma": "marism", "marissa": "mariss", "marita": "marit", "marítima": "maritim", "marítimo": "maritim", "marketing": "marketing", "marley": "marley", "marlines": "marlin", "marlon": "marlon", "mármol": "marmol", "marque": "marqu", "marqués": "marques", "marquesina": "marquesin", "márquez": "marquez", "marquis": "marquis", "marranos": "marran", "marsalis": "marsalis", "marshal": "marshal", "marshall": "marshall", "mart": "mart", "marte": "mart", "martellotto": "martellott", "martens": "martens", "martes": "mart", "martha": "marth", "martí": "mart", "martillo": "martill", "martin": "martin", "martín": "martin", "martinez": "martinez", "martínez": "martinez", "martinica": "martin", "martiniqués": "martiniques", "mártires": "martir", "martirio": "martiri", "marv": "marv", "marx": "marx", "mary": "mary", "maryland": "maryland", "marzo": "marz", "mas": "mas", "más": "mas", "masa": "mas", "masaaki": "masaaki", "masacre": "masacr", "masakre": "masakr", "masas": "mas", "mascadas": "masc", "máscara": "masc", "máscaras": "masc", "mascota": "mascot", "mascotas": "mascot", "masculina": "masculin", "masculino": "masculin", "masiva": "masiv", "masivamente": "masiv", "masivas": "masiv", "masivo": "masiv", "masivos": "masiv", "masoquismo": "masoqu", "mass": "mass", "massa": "mass", "massacessi": "massacessi", "massachusetts": "massachusetts", "massachussets": "massachussets", "massachussetts": "massachussetts", "massieu": "massieu", "masso": "mass", "masterd": "masterd", "masturbación": "masturb", "mata": "mat", "matado": "mat", "matador": "matador", "matadores": "matador", "matamoros": "matamor", "matando": "mat", "matanzas": "matanz", "matar": "mat", "mátar": "mat", "mataran": "mat", "mataría": "mat", "matarla": "mat", "matarlo": "mat", "matarme": "mat", "matarnos": "mat", "mataron": "mat", "matarse": "mat", "mate": "mat", "matemática": "matemat", "matemáticas": "matemat", "matemático": "matemat", "maten": "mat", "mateo": "mate", "mateos": "mate", "mater": "mat", "materia": "materi", "material": "material", "materiales": "material", "materializarse": "materializ", "materias": "materi", "materna": "matern", "maternal": "maternal", "maternidad": "matern", "matías": "mat", "matices": "matic", "matilde": "matild", "matineé": "matine", "matizada": "matiz", "mató": "mat", "matorrales": "matorral", "matos": "mat", "matriarcado": "matriarc", "matrices": "matric", "matrícula": "matricul", "matriculen": "matricul", "matrimonial": "matrimonial", "matrimoniales": "matrimonial", "matrimonio": "matrimoni", "matrimonios": "matrimoni", "matrix": "matrix", "matriz": "matriz", "matt": "matt", "matthew": "matthew", "matutina": "matutin", "matutino": "matutin", "maurice": "mauric", "mauricio": "maurici", "mauro": "maur", "max": "max", "maxi": "maxi", "máxima": "maxim", "máxime": "maxim", "maximiliano": "maximilian", "máximo": "maxim", "máximos": "max", "maximova": "maximov", "may": "may", "mayas": "may", "mayela": "mayel", "mayito": "mayit", "mayo": "may", "mayón": "mayon", "mayonesa": "mayones", "mayor": "mayor", "mayoreo": "mayore", "mayores": "mayor", "mayoría": "mayor", "mayorista": "mayor", "mayoristas": "mayor", "mayoritaria": "mayoritari", "mayoritario": "mayoritari", "mayoritarios": "mayoritari", "mayos": "may", "mayrán": "mayran", "mays": "mays", "mayúscula": "mayuscul", "mayúsculas": "mayuscul", "mayúsculo": "mayuscul", "mayweather": "mayweath", "maza": "maz", "mazatlan": "mazatl", "mazatlán": "mazatlan", "mazatleco": "mazatlec", "mc": "mc", "mcallen": "mcall", "mccann": "mccann", "mcdonalds": "mcdonalds", "mcdowell": "mcdowell", "mcenroe": "mcenro", "mcgregor": "mcgregor", "mckesson": "mckesson", "mcleod": "mcleod", "md": "md", "me": "me", "mea": "mea", "meat": "meat", "mecánica": "mecan", "mecánico": "mecan", "mecánicos": "mecan", "mecanismo": "mecan", "mecanismos": "mecan", "mecenazgo": "mecenazg", "medalla": "medall", "medallas": "medall", "medallista": "medall", "medallón": "medallon", "medellín": "medellin", "media": "medi", "mediación": "mediacion", "mediadora": "mediador", "mediados": "medi", "mediahermana": "mediaherman", "mediana": "median", "medianas": "median", "mediano": "median", "medianoche": "medianoch", "medianos": "median", "mediante": "mediant", "medias": "medi", "mediata": "mediat", "médica": "medic", "medical": "medical", "medicamentos": "medicament", "médicas": "medic", "medicina": "medicin", "medicinales": "medicinal", "medicinas": "medicin", "medición": "medicion", "mediciones": "medicion", "médico": "medic", "médicos": "medic", "medida": "med", "medidas": "med", "medido": "med", "medievales": "medieval", "medina": "medin", "medio": "medi", "mediocampista": "mediocamp", "mediocampistas": "mediocamp", "mediocre": "mediocr", "mediocres": "mediocr", "mediocridad": "mediocr", "mediodía": "mediod", "mediohermano": "medioherman", "medios": "medi", "medir": "med", "medirá": "med", "medirán": "med", "medirse": "med", "meditación": "medit", "meditado": "medit", "medite": "medit", "mediterránea": "mediterrane", "mediterráneo": "mediterrane", "medrano": "medran", "medugorie": "medugori", "médula": "medul", "medusia": "medusi", "mefistófeles": "mefistofel", "megabits": "megabits", "megabytes": "megabyt", "megahertz": "megahertz", "mejía": "mej", "mejilla": "mejill", "mejillas": "mejill", "mejor": "mejor", "mejora": "mejor", "mejorada": "mejor", "mejorado": "mejor", "mejorados": "mejor", "mejoramiento": "mejor", "mejoran": "mejor", "mejorando": "mejor", "mejorar": "mejor", "mejorará": "mejor", "mejoraran": "mejor", "mejorarle": "mejor", "mejorarlos": "mejor", "mejoras": "mejor", "mejore": "mejor", "mejores": "mejor", "mejoría": "mejor", "mejrar": "mejr", "melanoma": "melanom", "melchor": "melchor", "melé": "mel", "meléndez": "melendez", "melgar": "melg", "melian": "meli", "melisa": "melis", "mella": "mell", "mellizos": "melliz", "mello": "mell", "melodía": "melod", "melódica": "melod", "melón": "melon", "melquiades": "melquiad", "membretado": "membret", "membrete": "membret", "memo": "mem", "memorable": "memor", "memorándum": "memorandum", "memoria": "memori", "memorias": "memori", "memorizar": "memoriz", "mena": "men", "ménagier": "menagi", "menchú": "menchu", "mención": "mencion", "menciona": "mencion", "mencionada": "mencion", "mencionadas": "mencion", "mencionado": "mencion", "mencionados": "mencion", "mencionan": "mencion", "mencionar": "mencion", "mencionaré": "mencion", "mencionaremos": "mencion", "mencionaron": "mencion", "mencione": "mencion", "mencioné": "mencion", "menciones": "mencion", "mencionó": "mencion", "méndez": "mendez", "mendigo": "mendig", "mendiomas": "mendiom", "mendoza": "mendoz", "menem": "menem", "meneses": "menes", "mengano": "mengan", "menguadas": "mengu", "meninges": "mening", "meningitis": "meningitis", "meningoencefalitis": "meningoencefalitis", "menopausia": "menopausi", "menopáusica": "menopaus", "menor": "menor", "menores": "menor", "menos": "men", "menosprecian": "menospreci", "menospreciarnos": "menospreci", "menotti": "menotti", "mensaje": "mensaj", "mensajería": "mensaj", "mensajes": "mensaj", "mensual": "mensual", "mensuales": "mensual", "mensualidades": "mensual", "mensualmente": "mensual", "menta": "ment", "mental": "mental", "mentales": "mental", "mentalidad": "mental", "mentalidades": "mental", "mente": "ment", "mentha": "menth", "mentimos": "ment", "mentir": "ment", "mentiras": "mentir", "mentirosas": "mentir", "mentiroso": "mentir", "mentor": "mentor", "mentores": "mentor", "menú": "menu", "menudeo": "menude", "menudo": "menud", "mera": "mer", "meramente": "mer", "mercadear": "mercad", "mercadeo": "mercade", "mercader": "mercad", "mercaderes": "mercader", "mercado": "merc", "mercados": "merc", "mercadotecnia": "mercadotecni", "mercadotencia": "mercadotent", "mercancía": "mercanc", "mercancías": "mercanc", "mercante": "mercant", "mercantes": "mercant", "mercantil": "mercantil", "mercantiles": "mercantil", "mercantilista": "mercantil", "mercedes": "merced", "mercomún": "mercomun", "mercosur": "mercosur", "mercurio": "mercuri", "merece": "merec", "merecedor": "merecedor", "merecedores": "merecedor", "merecen": "merec", "merecerlo": "merec", "merecía": "merec", "merecida": "merec", "merecido": "merec", "merecimientos": "merec", "mereció": "merec", "merengue": "mereng", "merengues": "mereng", "merezcan": "merezc", "merge": "merg", "mérida": "mer", "mérito": "merit", "meritorio": "meritori", "méritos": "merit", "merlene": "merlen", "merlis": "merlis", "merman": "merm", "mermeladas": "mermel", "mero": "mer", "merrill": "merrill", "mes": "mes", "mesa": "mes", "mesas": "mes", "mese": "mes", "meseros": "meser", "meses": "mes", "mesiánica": "mesian", "mesilla": "mesill", "mesoamericana": "mesoamerican", "mesoamericanas": "mesoamerican", "mesoamericano": "mesoamerican", "mesoamericanos": "mesoamerican", "mestre": "mestr", "meta": "met", "metabolismo": "metabol", "metafísica": "metafis", "metáfora": "metafor", "metal": "metal", "metalero": "metaler", "metales": "metal", "metálica": "metal", "metálico": "metal", "metálicos": "metal", "metallica": "metall", "metamucil": "metamucil", "metan": "met", "metano": "metan", "metas": "met", "metate": "metat", "mete": "met", "meten": "met", "meteorito": "meteorit", "meteorológica": "meteorolog", "meteorológico": "meteorolog", "meteorológicos": "meteorolog", "meteoros": "meteor", "meter": "met", "meterle": "met", "meterlo": "met", "meternos": "met", "meterse": "met", "metí": "met", "metían": "met", "meticulosamente": "meticul", "metido": "met", "metidos": "met", "metiendo": "met", "metiera": "met", "metió": "met", "metodista": "metod", "método": "metod", "metodología": "metodolog", "metodologías": "metodolog", "métodos": "metod", "metrallas": "metrall", "metralleta": "metrallet", "metralletas": "metrallet", "métricas": "metric", "metro": "metr", "metrología": "metrolog", "metrópoli": "metropoli", "metropolitana": "metropolitan", "metropolitano": "metropolitan", "metropolitanos": "metropolitan", "metrorrey": "metrorrey", "metros": "metr", "metternich": "metternich", "metzelaars": "metzelaars", "mexica": "mexic", "mexicali": "mexicali", "mexican": "mexic", "mexicana": "mexican", "mexicanas": "mexican", "mexicanidad": "mexican", "mexicanismo": "mexican", "mexicano": "mexican", "mexicanos": "mexican", "mexicas": "mexic", "mexicayótl": "mexicayotl", "mexico": "mexic", "méxico": "mexic", "méxicoestadounidense": "mexicoestadounidens", "méxiconorteamericanos": "mexiconorteamerican", "mexinox": "mexinox", "mexiquense": "mexiquens", "meyer": "mey", "meza": "mez", "mezcal": "mezcal", "mezcla": "mezcl", "mezclada": "mezcl", "mezcladas": "mezcl", "mezclado": "mezcl", "mezclar": "mezcl", "mezclilla": "mezclill", "mezclo": "mezcl", "mezquinas": "mezquin", "mezquino": "mezquin", "mezquinos": "mezquin", "mezquital": "mezquital", "mg": "mg", "mi": "mi", "mí": "mi", "mia": "mia", "miami": "miami", "mich": "mich", "michael": "michael", "michel": "michel", "michelle": "michell", "michoacán": "michoacan", "michoacanazo": "michoacanaz", "michoacano": "michoacan", "michoacanos": "michoacan", "mickey": "mickey", "mico": "mic", "micosis": "micosis", "micro": "micr", "microbus": "microbus", "microbús": "microbus", "microbuses": "microbus", "microcomputadoras": "microcomput", "microelectronics": "microelectronics", "microempresa": "microempres", "microempresario": "microempresari", "microempresarios": "microempresari", "microempresas": "microempres", "micrófono": "microfon", "microindustriales": "microindustrial", "microprocesador": "microproces", "micros": "micr", "microsoft": "microsoft", "microsystems": "microsystems", "middletown": "middletown", "mide": "mid", "midieron": "mid", "midió": "mid", "mie": "mie", "miedo": "mied", "miedos": "mied", "miel": "miel", "mielenización": "mieleniz", "miembro": "miembr", "miembros": "miembr", "mientan": "mient", "miente": "mient", "mientras": "mientr", "mier": "mier", "miercoles": "miercol", "miércoles": "miercol", "migajas": "migaj", "migdalia": "migdali", "mignón": "mignon", "migración": "migracion", "migraciones": "migracion", "migrante": "migrant", "miguel": "miguel", "miguelito": "miguelit", "mijail": "mijail", "mijares": "mijar", "mike": "mik", "mil": "mil", "milagro": "milagr", "milagros": "milagr", "milagrosos": "milagr", "milan": "mil", "milán": "milan", "milanés": "milanes", "mildred": "mildr", "mile": "mil", "milenios": "mileni", "miles": "mil", "milésimas": "milesim", "mililitros": "mililitr", "milímetros": "milimetr", "milita": "milit", "militan": "milit", "militancia": "milit", "militante": "milit", "militantes": "milit", "militar": "milit", "militares": "militar", "militarización": "militariz", "militarizada": "militariz", "milla": "mill", "millar": "mill", "millares": "millar", "millas": "mill", "miller": "mill", "milli": "milli", "millón": "millon", "millonarias": "millonari", "millonario": "millonari", "millonarios": "millonari", "millones": "millon", "milmo": "milm", "milton": "milton", "mima": "mim", "mimi": "mimi", "mimí": "mim", "mimiahuápam": "mimiahuapam", "mímica": "mimic", "min": "min", "mina": "min", "mindes": "mind", "minera": "miner", "mineral": "mineral", "minerales": "mineral", "mineros": "miner", "minerva": "minerv", "minesota": "minesot", "mini": "mini", "minibuses": "minibus", "minicomputadoras": "minicomput", "minicumbre": "minicumbr", "minilab": "minilab", "minima": "minim", "mínima": "minim", "mínimas": "minim", "minimizando": "minimiz", "minimizar": "minimiz", "mínimo": "minim", "mínimos": "min", "ministerial": "ministerial", "ministerio": "ministeri", "ministro": "ministr", "ministros": "ministr", "minisubmarinos": "minisubmarin", "minivolei": "minivolei", "minivoleibol": "minivoleibol", "minnesota": "minnesot", "minor": "minor", "minorías": "minor", "minoristas": "minor", "minoritaria": "minoritari", "minoritarios": "minoritari", "mintió": "mint", "minton": "minton", "mintonette": "mintonett", "minuciosa": "minuci", "minúsculos": "minuscul", "minusvalía": "minusval", "minusválidos": "minusval", "minuta": "minut", "minuto": "minut", "minutos": "minut", "mío": "mio", "miocardio": "miocardi", "miopía": "miop", "míos": "mios", "mira": "mir", "miraba": "mir", "mirada": "mir", "miradita": "miradit", "mirador": "mirador", "miragoane": "miragoan", "mírale": "miral", "miramón": "miramon", "miramontes": "miramont", "miranda": "mirand", "mirando": "mir", "mirar": "mir", "miras": "mir", "miravalle": "miravall", "mire": "mir", "miré": "mir", "mireles": "mirel", "miren": "mir", "mireya": "mirey", "miriam": "miriam", "mirielle": "miriell", "miró": "mir", "miroslava": "miroslav", "mirren": "mirr", "mis": "mis", "misa": "mis", "misas": "mis", "miscelanea": "miscelane", "miserables": "miser", "miseria": "miseri", "misericordiosos": "misericordi", "mishima": "mishim", "misión": "mision", "misionero": "misioner", "misiones": "mision", "misma": "mism", "mismas": "mism", "mismo": "mism", "mismos": "mism", "miss": "miss", "missael": "missael", "missisipi": "missisipi", "mississippi": "mississippi", "missouri": "missouri", "misterio": "misteri", "misterios": "misteri", "misteriosa": "misteri", "misterioso": "misteri", "místico": "mistic", "mit": "mit", "mitad": "mit", "mitades": "mitad", "mítica": "mitic", "mítico": "mitic", "mitigantes": "mitig", "mitin": "mitin", "mito": "mit", "mitología": "mitolog", "mitológico": "mitolog", "mitos": "mit", "mitotes": "mitot", "mitras": "mitr", "mitsukoshi": "mitsukoshi", "mitterrand": "mitterrand", "mitzy": "mitzy", "mixtas": "mixt", "mka": "mka", "mnp": "mnp", "moais": "moais", "moaré": "moar", "mobiliario": "mobiliari", "mobutu": "mobutu", "moca": "moc", "mochila": "mochil", "mochilas": "mochil", "mochis": "mochis", "moción": "mocion", "moctezuma": "moctezum", "moda": "mod", "modales": "modal", "modalidad": "modal", "modalidades": "modal", "modas": "mod", "mode": "mod", "modelo": "model", "modelos": "model", "módem": "modem", "modera": "moder", "moderación": "moder", "moderada": "moder", "moderado": "moder", "moderados": "moder", "moderna": "modern", "modernas": "modern", "modernicen": "modernic", "modernidad": "modern", "modernismo": "modern", "modernización": "moderniz", "modernizada": "moderniz", "modernizador": "moderniz", "modernizar": "moderniz", "modernizarla": "moderniz", "modernizarse": "moderniz", "moderno": "modern", "modernos": "mod", "modesta": "modest", "modestas": "modest", "modestia": "modesti", "modesto": "modest", "modestos": "modest", "modifica": "modif", "modificación": "modif", "modificaciones": "modif", "modificada": "modific", "modificadas": "modific", "modificados": "modific", "modificando": "modific", "modificar": "modific", "modificarse": "modific", "modificó": "modific", "modista": "modist", "modo": "mod", "modos": "mod", "modulada": "modul", "modular": "modul", "módulo": "modul", "módulos": "modul", "moisés": "moises", "mol": "mol", "moldeado": "mold", "moldearon": "mold", "mole": "mol", "molesta": "molest", "molestada": "molest", "molestados": "molest", "molestan": "molest", "molestar": "molest", "molestarán": "molest", "molestarse": "molest", "moleste": "molest", "molestia": "molesti", "molestias": "molesti", "molesto": "molest", "molestó": "molest", "molestos": "molest", "molida": "mol", "moliere": "molier", "molina": "molin", "molino": "molin", "moll": "moll", "mollejas": "mollej", "molones": "molon", "mombasa": "mombas", "momentánea": "momentane", "momentáneamente": "momentan", "momentáneo": "momentane", "momento": "moment", "momentos": "moment", "monarca": "monarc", "monarquía": "monarqu", "monárquica": "monarqu", "monas": "mon", "moncada": "monc", "monclova": "monclov", "mondongo": "mondong", "moneda": "moned", "monedas": "moned", "monederos": "moneder", "monetaria": "monetari", "monetarias": "monetari", "monetario": "monetari", "mónica": "monic", "monipodio": "monipodi", "monitor": "monitor", "monitoreo": "monitore", "monitoreos": "monitore", "monitores": "monitor", "monjaras": "monj", "monjaraz": "monjaraz", "monjas": "monj", "monk": "monk", "moño": "moñ", "monogollas": "monogoll", "monolito": "monolit", "monoplaza": "monoplaz", "monoplazas": "monoplaz", "monopolio": "monopoli", "monopolios": "monopoli", "monóxido": "monox", "monroy": "monroy", "monsivais": "monsivais", "monsiváis": "monsiv", "monstruosidad": "monstru", "monstruosos": "monstruos", "monta": "mont", "montada": "mont", "montado": "mont", "montaje": "montaj", "montajes": "montaj", "montalbán": "montalban", "montalvo": "montalv", "montana": "montan", "montaña": "montañ", "montañas": "montañ", "montando": "mont", "montaño": "montañ", "montar": "mont", "monte": "mont", "monteleone": "monteleon", "montemayor": "montemayor", "montemorelos": "montemorel", "monten": "mont", "montepíos": "montepi", "montera": "monter", "montero": "monter", "monterrey": "monterrey", "monterreynuevo": "monterreynuev", "monterrubio": "monterrubi", "montes": "mont", "montgomery": "montgomery", "months": "months", "montículo": "monticul", "montiel": "montiel", "monto": "mont", "montó": "mont", "montón": "monton", "montos": "mont", "montoya": "montoy", "montreal": "montreal", "montura": "montur", "monumental": "monumental", "monumentalidad": "monumental", "monumento": "monument", "monumentos": "monument", "moodys": "moodys", "mor": "mor", "mora": "mor", "morada": "mor", "morado": "mor", "moraes": "mor", "moral": "moral", "morales": "moral", "moralidad": "moral", "moralistas": "moral", "moralización": "moraliz", "moralizarse": "moraliz", "moralmente": "moral", "moranchel": "moranchel", "moratoria": "moratori", "morbilidad": "morbil", "morbosa": "morbos", "morbosos": "morbos", "mordida": "mord", "mordidas": "mord", "mordiendo": "mord", "mordiscos": "mordisc", "morelenses": "morelens", "morelia": "moreli", "morell": "morell", "morelos": "morel", "morena": "moren", "morenas": "moren", "morenitos": "morenit", "moreno": "moren", "moresa": "mores", "morgan": "morg", "moría": "mor", "morillo": "morill", "morín": "morin", "morir": "mor", "morirse": "mor", "morón": "moron", "morones": "moron", "moroso": "moros", "morozoff": "morozoff", "morris": "morris", "morrison": "morrison", "morros": "morr", "mortal": "mortal", "mortem": "mortem", "moruecos": "moruec", "mos": "mos", "moschino": "moschin", "moscovita": "moscovit", "moscu": "moscu", "moscú": "moscu", "mosquito": "mosquit", "mostaza": "mostaz", "mostraba": "mostr", "mostraban": "mostr", "mostrada": "mostr", "mostrado": "mostr", "mostrando": "mostr", "mostrándome": "mostr", "mostrándose": "mostr", "mostrar": "mostr", "mostrará": "mostr", "mostrarle": "mostr", "mostrarles": "mostr", "mostrarlo": "mostr", "mostraron": "mostr", "mostrarse": "mostr", "mostró": "mostr", "mota": "mot", "moteles": "motel", "motiva": "motiv", "motivación": "motiv", "motivacional": "motivacional", "motivacionales": "motivacional", "motivaciones": "motiv", "motivado": "motiv", "motivador": "motiv", "motivante": "motiv", "motivar": "motiv", "motivarán": "motiv", "motivarlas": "motiv", "motivarlo": "motiv", "motivarlos": "motiv", "motive": "motiv", "motivo": "motiv", "motivó": "motiv", "motivos": "motiv", "moto": "mot", "motocicleta": "motociclet", "motociclismo": "motocicl", "motociclista": "motocicl", "motociclistas": "motocicl", "motocross": "motocross", "motolinía": "motolin", "motor": "motor", "motorenwerke": "motorenwerk", "motores": "motor", "motors": "motors", "motos": "mot", "motriz": "motriz", "mountain": "mountain", "mouse": "mous", "moussavi": "moussavi", "movamos": "mov", "mover": "mov", "moveré": "mov", "movernos": "mov", "moverse": "mov", "movían": "mov", "movida": "mov", "movido": "mov", "moviendo": "mov", "moviéndose": "mov", "movieron": "mov", "móvil": "movil", "móviles": "movil", "movilidad": "movil", "moviliza": "moviliz", "movilización": "moviliz", "movilizaciones": "moviliz", "movilizar": "moviliz", "movilizó": "moviliz", "movimiento": "movimient", "movimientos": "movimient", "movió": "mov", "moya": "moy", "moyobamba": "moyobamb", "moyssén": "moyssen", "moza": "moz", "mozart": "mozart", "mozo": "moz", "mozos": "moz", "mr": "mr", "mstislav": "mstislav", "mtito": "mtit", "mtley": "mtley", "mu": "mu", "mucha": "much", "muchacha": "muchach", "muchachas": "muchach", "muchacho": "muchach", "muchachos": "muchach", "muchas": "much", "muchedumbre": "muchedumbr", "muchísima": "muchisim", "muchísimas": "muchisim", "muchísimo": "muchisim", "muchísimos": "muchis", "mucho": "much", "muchos": "much", "muda": "mud", "mudanza": "mudanz", "mudará": "mud", "mudarse": "mud", "mueble": "muebl", "muebles": "muebl", "mueca": "muec", "muelle": "muell", "muelles": "muell", "muera": "muer", "muérdago": "muerdag", "muere": "muer", "muerta": "muert", "muertas": "muert", "muerte": "muert", "muertes": "muert", "muerto": "muert", "muertos": "muert", "muestra": "muestr", "muestran": "muestr", "muestrario": "muestrari", "muestras": "muestr", "muestre": "muestr", "muestren": "muestr", "muestreo": "muestre", "mueve": "muev", "mueven": "muev", "mugre": "mugr", "muguerza": "muguerz", "muguiro": "muguir", "mujer": "muj", "mujercita": "mujercit", "mujeres": "mujer", "mula": "mul", "mulato": "mulat", "muleta": "mulet", "muletas": "mulet", "muletazos": "muletaz", "mulino": "mulin", "mulitas": "mulit", "muller": "mull", "multa": "mult", "multadas": "mult", "multado": "mult", "multados": "mult", "multar": "mult", "multas": "mult", "multichip": "multichip", "multicolor": "multicolor", "multiculturalismo": "multicultural", "multilateral": "multilateral", "multilaterales": "multilateral", "multimedia": "multimedi", "multimedios": "multimedi", "multimillonariamente": "multimillonari", "multimillonario": "multimillonari", "multimillonarios": "multimillonari", "multimodal": "multimodal", "multinacionales": "multinacional", "multipanel": "multipanel", "múltiple": "multipl", "múltiples": "multipl", "multiplicación": "multipl", "multiplicado": "multiplic", "multiplicar": "multiplic", "multiplicaron": "multiplic", "multiplicarse": "multiplic", "multiplicó": "multiplic", "multipliquen": "multipliqu", "múltiplos": "multipl", "multitarea": "multitare", "multitud": "multitud", "multitudes": "multitud", "multitudinaria": "multitudinari", "mundanales": "mundanal", "mundial": "mundial", "mundiales": "mundial", "mundialista": "mundial", "mundialmente": "mundial", "mundillo": "mundill", "mundo": "mund", "mundos": "mund", "mundy": "mundy", "muñeca": "muñec", "munguía": "mungu", "munich": "munich", "municipal": "municipal", "municipales": "municipal", "munícipe": "municip", "municipio": "municipi", "municipios": "municipi", "muñiz": "muñiz", "muñoz": "muñoz", "mural": "mural", "muralismo": "mural", "murat": "murat", "muriendo": "mur", "muriera": "mur", "murieron": "mur", "murillo": "murill", "murió": "mur", "muro": "mur", "muros": "mur", "muscular": "muscul", "musculares": "muscular", "músculo": "muscul", "museo": "muse", "museografía": "museograf", "museógrafo": "museograf", "museos": "muse", "museum": "museum", "music": "music", "musica": "music", "música": "music", "musical": "musical", "musicales": "musical", "músico": "music", "músicos": "music", "muslo": "musl", "muslos": "musl", "mussa": "muss", "musset": "musset", "mustang": "mustang", "musulmán": "musulman", "musulmana": "musulman", "musulmanas": "musulman", "musulmanes": "musulman", "mutación": "mutacion", "mutilados": "mutil", "mutua": "mutu", "mutualidad": "mutual", "mutualista": "mutual", "mutuamente": "mutu", "mutuas": "mutu", "mutuo": "mutu", "muy": "muy", "múzquiz": "muzquiz", "my": "my", "myers": "myers", "mystic": "mystic", "n": "n", "na": "na", "nabor": "nabor", "nace": "nac", "nacen": "nac", "nacer": "nac", "nacho": "nach", "nací": "nac", "nacida": "nac", "nacido": "nac", "nacidos": "nac", "naciera": "nac", "nacieran": "nac", "nacieron": "nac", "nacimiento": "nacimient", "nacimos": "nac", "nació": "nac", "nación": "nacion", "nacional": "nacional", "nacionales": "nacional", "nacionalidad": "nacional", "nacionalista": "nacional", "nacionalización": "nacionaliz", "nacionalizada": "nacionaliz", "naciones": "nacion", "nada": "nad", "nadador": "nadador", "nadadores": "nadador", "nadando": "nad", "nadar": "nad", "nadie": "nadi", "nadores": "nador", "nafin": "nafin", "nafinsa": "nafins", "nafta": "naft", "naftacorporation": "naftacorporation", "nagoya": "nagoy", "nahuas": "nahu", "nailon": "nailon", "nairobi": "nairobi", "naju": "naju", "nancy": "nancy", "nandin": "nandin", "nandín": "nandin", "napoleón": "napoleon", "nápoles": "napol", "naranja": "naranj", "naranjas": "naranj", "naranjo": "naranj", "narco": "narc", "narcoanálisis": "narcoanalisis", "narcos": "narc", "narcotraficante": "narcotraf", "narcotraficantes": "narcotraf", "narcotráfico": "narcotraf", "nariz": "nariz", "narozhilenko": "narozhilenk", "narra": "narr", "narrado": "narr", "narrador": "narrador", "narran": "narr", "narrativa": "narrat", "narrativo": "narrat", "narró": "narr", "nasa": "nas", "nasal": "nasal", "nasales": "nasal", "nat": "nat", "nata": "nat", "natación": "natacion", "natal": "natal", "natalicio": "natalici", "natalie": "natali", "natalio": "natali", "nate": "nat", "national": "national", "nativa": "nativ", "nativas": "nativ", "natividad": "nativ", "nativo": "nativ", "nativos": "nativ", "nato": "nat", "natural": "natural", "naturales": "natural", "naturaleza": "naturalez", "naturalmente": "natural", "nature": "natur", "naturista": "natur", "naucalpan": "naucalp", "naufragaron": "naufrag", "naufragio": "naufragi", "naufragios": "naufragi", "náufrago": "naufrag", "naufragó": "naufrag", "náutico": "nautic", "náuticos": "nautic", "nava": "nav", "navaja": "navaj", "navajas": "navaj", "navajazo": "navajaz", "navajearon": "navaj", "naval": "naval", "navales": "naval", "navarrete": "navarret", "navarro": "navarr", "nave": "nav", "naveda": "naved", "navegación": "naveg", "navegar": "naveg", "naves": "nav", "navidad": "navid", "naviera": "nav", "navieras": "nav", "navieros": "navier", "navío": "navi", "navíos": "navi", "navismo": "navism", "navista": "navist", "navojoa": "navojo", "nayarit": "nayarit", "nazis": "nazis", "nbc": "nbc", "near": "near", "neblina": "neblin", "necaxa": "necax", "necaxistas": "necax", "necedad": "neced", "necesaria": "necesari", "necesariamente": "necesari", "necesarias": "necesari", "necesario": "necesari", "necesarios": "necesari", "necesidad": "neces", "necesidades": "neces", "necesita": "necesit", "necesitaba": "necesit", "necesitábamos": "necesit", "necesitaban": "necesit", "necesitado": "necesit", "necesitamos": "necesit", "necesitan": "necesit", "necesitará": "necesit", "necesitarán": "necesit", "necesitaría": "necesit", "necesitarían": "necesit", "necesitarlas": "necesit", "necesite": "necesit", "necesiten": "necesit", "necesito": "necesit", "necesitó": "necesit", "necia": "neci", "necrófilo": "necrofil", "nedda": "nedd", "nefasto": "nefast", "nefrología": "nefrolog", "negaba": "neg", "negaban": "neg", "negada": "neg", "negado": "neg", "negando": "neg", "negar": "neg", "negara": "neg", "negarla": "neg", "negarle": "neg", "negaron": "neg", "negarse": "neg", "negativa": "negat", "negativamente": "negat", "negativas": "negat", "negativo": "negat", "negativos": "negat", "negligencia": "negligent", "negó": "neg", "negocia": "negoci", "negociables": "negoci", "negociación": "negoci", "negociaciones": "negoci", "negociada": "negoci", "negociado": "negoci", "negociador": "negoci", "negociadora": "negoci", "negociadores": "negoci", "negociando": "negoci", "negociantes": "negoci", "negociar": "negoci", "negociarían": "negoci", "negociarlo": "negoci", "negociaron": "negoci", "negociazo": "negociaz", "negocio": "negoci", "negoció": "negoc", "negocios": "negoci", "negra": "negr", "negras": "negr", "negrete": "negret", "negro": "negr", "negromex": "negromex", "negroponte": "negropont", "negros": "negr", "nehru": "nehru", "neil": "neil", "nejedly": "nejedly", "nelson": "nelson", "neófito": "neofit", "neográfica": "neograf", "neoleonés": "neoleones", "neoliberal": "neoliberal", "neoliberales": "neoliberal", "neoliberalismo": "neoliberal", "neoloneses": "neolones", "neomexicanismo": "neomexican", "neón": "neon", "neopopulistas": "neopopul", "neoproteccionista": "neoproteccion", "neosectores": "neosector", "neoyorkina": "neoyorkin", "neoyorkino": "neoyorkin", "neoyorquina": "neoyorquin", "neoyorquinas": "neoyorquin", "neoyorquino": "neoyorquin", "népotas": "nepot", "nepotismo": "nepot", "neptuno": "neptun", "nereus": "nereus", "neri": "neri", "neruda": "nerud", "nerviosa": "nervios", "nerviosas": "nervi", "nerviosismo": "nervi", "nervioso": "nervios", "nerviosos": "nervios", "nestlé": "nestl", "nestor": "nestor", "neta": "net", "netamente": "net", "netas": "net", "neto": "net", "netos": "net", "network": "network", "neumología": "neumolog", "neumonía": "neumon", "neurastenia": "neurasteni", "neurobiólogo": "neurobiolog", "neurocirujanos": "neurocirujan", "neurología": "neurolog", "neurológicas": "neurolog", "neurológico": "neurolog", "neurona": "neuron", "neuronales": "neuronal", "neuronas": "neuron", "neurosis": "neurosis", "neutral": "neutral", "neutralizar": "neutraliz", "neutro": "neutr", "neutros": "neutr", "neuville": "neuvill", "nevando": "nev", "new": "new", "newagers": "newagers", "newagismo": "newag", "newport": "newport", "newquist": "newquist", "news": "news", "newsweek": "newsweek", "newton": "newton", "nexos": "nex", "next": "next", "nextstep": "nextstep", "ney": "ney", "neza": "nez", "nfl": "nfl", "nhra": "nhra", "ni": "ni", "nicaragua": "nicaragu", "nicaragüense": "nicaragüens", "nicho": "nich", "nichols": "nichols", "nichos": "nich", "nickin": "nickin", "ñico": "ñic", "nicola": "nicol", "nicolás": "nicolas", "nicole": "nicol", "nidas": "nid", "nido": "nid", "nidos": "nid", "niebla": "niebl", "niega": "nieg", "niegan": "nieg", "niegue": "nieg", "nieguen": "nieg", "nieta": "niet", "nietecita": "nietecit", "nieto": "niet", "nietos": "niet", "nieve": "niev", "nieves": "niev", "nikko": "nikk", "nilda": "nild", "nina": "nin", "niña": "niñ", "niñas": "niñ", "niñez": "niñez", "ningún": "ningun", "ninguna": "ningun", "ninguno": "ningun", "niño": "niñ", "niños": "niñ", "nipón": "nipon", "níquel": "niquel", "nironenko": "nironenk", "nirvana": "nirvan", "nísperos": "nisper", "nissan": "niss", "nissho": "nissh", "nitrógeno": "nitrogen", "nivea": "nive", "nivel": "nivel", "nivelar": "nivel", "niveles": "nivel", "nixon": "nixon", "nl": "nl", "no": "no", "nó": "no", "nobel": "nobel", "nobilísimo": "nobilisim", "noble": "nobl", "nobleza": "noblez", "nocaut": "nocaut", "nocauts": "nocauts", "noche": "noch", "nochebuena": "nochebuen", "noches": "noch", "noción": "nocion", "nociones": "nocion", "nocivas": "nociv", "nocivo": "nociv", "nocturna": "nocturn", "nocturnas": "nocturn", "nocturno": "nocturn", "noé": "noe", "nogalar": "nogal", "nogales": "nogal", "nolte": "nolt", "nomás": "nomas", "nombra": "nombr", "nombradas": "nombr", "nombrado": "nombr", "nombrados": "nombr", "nombramiento": "nombramient", "nombramientos": "nombramient", "nombrar": "nombr", "nombraria": "nombrari", "nombrarlos": "nombr", "nombre": "nombr", "nombré": "nombr", "nombren": "nombr", "nombres": "nombr", "nombró": "nombr", "nómina": "nomin", "nominación": "nomin", "nominaciones": "nomin", "nominada": "nomin", "nominado": "nomin", "nominados": "nomin", "nominal": "nominal", "nominales": "nominal", "nominará": "nomin", "nonagenario": "nonagenari", "nopales": "nopal", "noquear": "noqu", "noqueará": "noqu", "nora": "nor", "norah": "norah", "noratlántico": "noratlant", "norberta": "norbert", "norberto": "norbert", "norcarolinos": "norcarolin", "norcoreano": "norcorean", "noreste": "norest", "norestense": "norestens", "norias": "nori", "noriega": "norieg", "norma": "norm", "normal": "normal", "normales": "normal", "normalidad": "normal", "normalmente": "normal", "normandía": "normand", "normar": "norm", "normas": "norm", "normatividad": "normat", "norme": "norm", "noroccidental": "noroccidental", "norris": "norris", "norte": "nort", "norteamérica": "norteamer", "norteamericana": "norteamerican", "norteamericanas": "norteamerican", "norteamericano": "norteamerican", "norteamericanos": "norteamerican", "norteña": "norteñ", "norteñas": "norteñ", "norteño": "norteñ", "norteños": "norteñ", "northern": "northern", "norwick": "norwick", "nos": "nos", "nosocomio": "nosocomi", "nosotras": "nosotr", "nosotros": "nosotr", "nostalgias": "nostalgi", "nota": "not", "notable": "notabl", "notablemente": "notabl", "notables": "notabl", "notado": "not", "notamos": "not", "notar": "not", "notaria": "notari", "notaría": "not", "notariado": "notari", "notario": "notari", "notas": "not", "noticia": "notici", "noticias": "notici", "noticiero": "noticier", "noticiosa": "notici", "noticiosos": "notici", "notificación": "notif", "notificado": "notific", "notificar": "notific", "notificarán": "notific", "notificarle": "notific", "notificaron": "notific", "notificó": "notific", "notimex": "notimex", "notó": "not", "notoria": "notori", "notoriamente": "notori", "notorias": "notori", "notorio": "notori", "nova": "nov", "novacek": "novacek", "novar": "nov", "novatas": "novat", "novatez": "novatez", "novato": "novat", "novatos": "novat", "novedad": "noved", "novedades": "novedad", "novedosas": "noved", "novedoso": "noved", "novedosos": "noved", "novel": "novel", "novela": "novel", "novelas": "novel", "novelista": "novel", "novell": "novell", "novena": "noven", "novenas": "noven", "noveno": "noven", "novia": "novi", "novias": "novi", "noviazgo": "noviazg", "noviembre": "noviembr", "novillada": "novill", "novilladas": "novill", "novillero": "noviller", "novilleros": "noviller", "novillo": "novill", "novillos": "novill", "novio": "novi", "novios": "novi", "novísimo": "novisim", "novoa": "novo", "nox": "nox", "noyola": "noyol", "np": "np", "npp": "npp", "nt": "nt", "ntx": "ntx", "nube": "nub", "nubla": "nubl", "nublados": "nubl", "nuca": "nuc", "nucleado": "nucl", "nuclear": "nucl", "núcleo": "nucle", "núcleos": "nucle", "nudillos": "nudill", "nudos": "nud", "nueces": "nuec", "nuera": "nuer", "nuestra": "nuestr", "nuestras": "nuestr", "nuestro": "nuestr", "nuestros": "nuestr", "nueva": "nuev", "nuevamente": "nuev", "nuevas": "nuev", "nueve": "nuev", "nuevo": "nuev", "nuevoleonés": "nuevoleones", "nuevoleonesa": "nuevoleones", "nuevoleoneses": "nuevoleones", "nuevos": "nuev", "nuff": "nuff", "nui": "nui", "nula": "nul", "nulas": "nul", "nulo": "nul", "numerales": "numeral", "numeralia": "numerali", "numérica": "numer", "numeritos": "numerit", "numero": "numer", "número": "numer", "numeros": "numer", "números": "numer", "numerosa": "numer", "numerosas": "numer", "numerosos": "numer", "nunca": "nunc", "nunciatura": "nunciatur", "nuncio": "nunci", "nuñez": "nuñez", "núñez": "nuñez", "nunn": "nunn", "nupcial": "nupcial", "nupcias": "nupci", "nuremberg": "nuremberg", "nurser": "nurs", "nutrición": "nutricion", "nutrientes": "nutrient", "ny": "ny", "nye": "nye", "nylon": "nylon", "nyrup": "nyrup", "nyt": "nyt", "o": "o", "ó": "o", "oajaca": "oajac", "oaxaca": "oaxac", "oaxaqueñas": "oaxaqueñ", "obdulia": "obduli", "obdulio": "obduli", "obedece": "obedec", "obedecen": "obedec", "obedecer": "obedec", "obedecerlo": "obedec", "obedecía": "obedec", "obedecían": "obedec", "obedeció": "obedec", "obediencia": "obedient", "obispado": "obisp", "obispo": "obisp", "obispos": "obisp", "objeciones": "objecion", "objeta": "objet", "objetar": "objet", "objetare": "objetar", "objetiva": "objet", "objetividad": "objet", "objetivo": "objet", "objetivos": "objet", "objeto": "objet", "objetos": "objet", "obliga": "oblig", "obligaba": "oblig", "obligaban": "oblig", "obligación": "oblig", "obligaciones": "oblig", "obligada": "oblig", "obligado": "oblig", "obligados": "oblig", "obligan": "oblig", "obligando": "oblig", "obligándolo": "oblig", "obligar": "oblig", "obligará": "oblig", "obligaría": "oblig", "obligarían": "oblig", "obligaron": "oblig", "obligatoria": "obligatori", "obligatoriamente": "obligatori", "obligatoriedad": "obligatoried", "obligatorio": "obligatori", "obligatorios": "obligatori", "obligo": "oblig", "obligó": "oblig", "obligue": "oblig", "oboe": "obo", "oboístas": "oboist", "obra": "obra", "obrador": "obrador", "obran": "obran", "obrar": "obrar", "obras": "obras", "obregón": "obregon", "obrera": "obrer", "obrero": "obrer", "obreros": "obrer", "obscena": "obscen", "obscenas": "obscen", "obscenos": "obscen", "obscurece": "obscurec", "obscuro": "obscur", "obscuros": "obscur", "obsequian": "obsequi", "obsequiar": "obsequi", "obsequiarle": "obsequi", "obsequiaron": "obsequi", "obsequió": "obsequ", "observa": "observ", "observaba": "observ", "observaban": "observ", "observable": "observ", "observación": "observ", "observaciones": "observ", "observada": "observ", "observadas": "observ", "observado": "observ", "observador": "observ", "observadora": "observ", "observadores": "observ", "observamos": "observ", "observan": "observ", "observancia": "observ", "observando": "observ", "observar": "observ", "observaron": "observ", "observé": "observ", "observo": "observ", "observó": "observ", "obsesión": "obsesion", "obsesionado": "obsesion", "obsesionarse": "obsesion", "obsesione": "obsesion", "obsesiones": "obsesion", "obsesiva": "obses", "obsidiana": "obsidian", "obsolescencia": "obsolescent", "obstaculiza": "obstaculiz", "obstaculización": "obstaculiz", "obstaculizado": "obstaculiz", "obstáculo": "obstacul", "obstáculos": "obstacul", "obstante": "obstant", "obstinación": "obstin", "obstinado": "obstin", "obstine": "obstin", "obstrucción": "obstruccion", "obtención": "obtencion", "obtendrá": "obtendr", "obtendrán": "obtendran", "obtener": "obten", "obtenerla": "obten", "obtenerlas": "obten", "obtenerse": "obten", "obtenga": "obteng", "obtengan": "obteng", "obtengo": "obteng", "obtenía": "obten", "obtenida": "obten", "obtenidas": "obten", "obtenido": "obten", "obtenidos": "obten", "obteniendo": "obten", "obtiene": "obtien", "obtienen": "obtien", "obtuviera": "obtuv", "obtuvieron": "obtuv", "obtuvimos": "obtuv", "obtuvo": "obtuv", "obuses": "obus", "obvia": "obvi", "obviamente": "obvi", "obvio": "obvi", "oca": "oca", "ocampo": "ocamp", "ocasión": "ocasion", "ocasiona": "ocasion", "ocasionadas": "ocasion", "ocasionado": "ocasion", "ocasionados": "ocasion", "ocasionalmente": "ocasional", "ocasionar": "ocasion", "ocasionará": "ocasion", "ocasionarle": "ocasion", "ocasionaron": "ocasion", "ocasionarse": "ocasion", "ocasiones": "ocasion", "ocasionó": "ocasion", "occidental": "occidental", "occidentales": "occidental", "occidente": "occident", "occipital": "occipital", "occisa": "occis", "occiso": "occis", "occisos": "occis", "oceanía": "ocean", "océanica": "ocean", "oceánico": "ocean", "oceano": "ocean", "océano": "ocean", "océanos": "ocean", "ocejo": "ocej", "oceransky": "oceransky", "ochenta": "ochent", "ochentas": "ochent", "ocho": "ocho", "ochoa": "ocho", "ochos": "ochos", "ochosi": "ochosi", "ocio": "oci", "ocremente": "ocrement", "octava": "octav", "octavio": "octavi", "octavo": "octav", "octubre": "octubr", "oculta": "ocult", "ocultaba": "ocult", "ocultar": "ocult", "ocultaron": "ocult", "ocultas": "ocult", "oculten": "ocult", "oculto": "ocult", "ocultó": "ocult", "ocultos": "ocult", "ocupa": "ocup", "ocupaba": "ocup", "ocupaban": "ocup", "ocupación": "ocup", "ocupacional": "ocupacional", "ocupada": "ocup", "ocupado": "ocup", "ocupados": "ocup", "ocupan": "ocup", "ocupantes": "ocup", "ocupar": "ocup", "ocuparon": "ocup", "ocuparse": "ocup", "ocupen": "ocup", "ocupó": "ocup", "ocurra": "ocurr", "ocurran": "ocurr", "ocurre": "ocurr", "ocurren": "ocurr", "ocurrencia": "ocurrent", "ocurría": "ocurr", "ocurrida": "ocurr", "ocurridas": "ocurr", "ocurrido": "ocurr", "ocurriendo": "ocurr", "ocurrieron": "ocurr", "ocurrió": "ocurr", "ocurrir": "ocurr", "ocurrirán": "ocurr", "odio": "odi", "odisea": "odise", "odriozola": "odriozol", "oea": "oea", "oecd": "oecd", "oeste": "oest", "of": "of", "ofelia": "ofeli", "ofende": "ofend", "ofenden": "ofend", "ofender": "ofend", "ofenderá": "ofend", "ofendidas": "ofend", "ofendido": "ofend", "ofendió": "ofend", "ofensa": "ofens", "ofensiva": "ofens", "ofensivas": "ofens", "ofensivo": "ofens", "ofensivos": "ofens", "oferentes": "oferent", "oferta": "ofert", "ofertas": "ofert", "ofertó": "ofert", "officio": "offici", "oficial": "oficial", "oficiales": "oficial", "oficialía": "oficial", "oficialista": "oficial", "oficializar": "oficializ", "oficializo": "oficializ", "oficializó": "oficializ", "oficialmente": "oficial", "oficiaría": "ofici", "oficina": "oficin", "oficinas": "oficin", "oficinesco": "oficinesc", "oficio": "ofici", "oficiosas": "ofici", "ofrece": "ofrec", "ofrecen": "ofrec", "ofrecer": "ofrec", "ofrecerá": "ofrec", "ofrecerán": "ofrec", "ofreceré": "ofrec", "ofrecería": "ofrec", "ofrecerla": "ofrec", "ofrecerle": "ofrec", "ofrecerles": "ofrec", "ofrecerlo": "ofrec", "ofrecía": "ofrec", "ofrecían": "ofrec", "ofrecida": "ofrec", "ofrecidas": "ofrec", "ofrecido": "ofrec", "ofrecidos": "ofrec", "ofreciendo": "ofrec", "ofreciera": "ofrec", "ofrecieran": "ofrec", "ofrecieron": "ofrec", "ofrecimiento": "ofrec", "ofrecimientos": "ofrec", "ofreció": "ofrec", "ofrendas": "ofrend", "ofrezca": "ofrezc", "ofrezcan": "ofrezc", "ofrezco": "ofrezc", "oftalmología": "oftalmolog", "oh": "oh", "ohio": "ohi", "oído": "oid", "oídos": "oid", "oiga": "oig", "oigame": "oigam", "oímos": "oim", "oír": "oir", "ojalá": "ojal", "ojales": "ojal", "ojeda": "ojed", "ojeras": "ojer", "ojo": "ojo", "ojos": "ojos", "ojuelos": "ojuel", "oklahoma": "oklahom", "ola": "ola", "olacyr": "olacyr", "olas": "olas", "olaya": "olay", "olé": "ole", "olea": "ole", "oleaginoso": "oleagin", "oleaginosos": "oleagin", "oleaje": "oleaj", "óleo": "ole", "olga": "olga", "oligopolio": "oligopoli", "olimpiadas": "olimpi", "olímpica": "olimp", "olímpico": "olimp", "olímpicos": "olimp", "olimpo": "olimp", "olivares": "olivar", "olivas": "oliv", "oliver": "oliv", "olivera": "oliver", "oliveras": "oliver", "oliverio": "oliveri", "olivia": "olivi", "olivier": "olivi", "olivo": "oliv", "ollas": "ollas", "olloqui": "olloqui", "olmedo": "olmed", "olor": "olor", "olores": "olor", "olvera": "olver", "olvida": "olvid", "olvidada": "olvid", "olvidadizo": "olvidadiz", "olvidado": "olvid", "olvidamos": "olvid", "olvidan": "olvid", "olvidando": "olvid", "olvidándose": "olvid", "olvidar": "olvid", "olvidaron": "olvid", "olvídese": "olvides", "olvido": "olvid", "olvidó": "olvid", "omán": "oman", "omaña": "omañ", "omar": "omar", "omb": "omb", "ominoso": "omin", "omiso": "omis", "omiten": "omit", "omitir": "omit", "omito": "omit", "ómnibus": "omnibus", "omnimax": "omnimax", "oñate": "oñat", "once": "once", "onceavo": "onceav", "oncena": "oncen", "onda": "onda", "ondarza": "ondarz", "ondas": "ondas", "one": "one", "onix": "onix", "ontario": "ontari", "ontiveros": "ontiver", "onu": "onu", "onzas": "onzas", "opa": "opa", "ópalos": "opal", "opción": "opcion", "opcionado": "opcion", "opcional": "opcional", "opciones": "opcion", "opera": "oper", "ópera": "oper", "operaba": "oper", "operación": "oper", "operacionales": "operacional", "operaciones": "oper", "operada": "oper", "operadas": "oper", "operado": "oper", "operador": "oper", "operadora": "oper", "operadoras": "oper", "operadores": "oper", "operados": "oper", "operan": "oper", "operando": "oper", "operar": "oper", "operará": "oper", "operaría": "oper", "operarios": "operari", "operas": "oper", "operation": "operation", "operativa": "oper", "operativas": "oper", "operativo": "oper", "operativos": "oper", "operen": "oper", "opina": "opin", "opinaban": "opin", "opinar": "opin", "opinas": "opin", "opinen": "opin", "opinión": "opinion", "opiniones": "opinion", "opiniónfinanciera": "opinionfinanc", "opino": "opin", "opinó": "opin", "opondrá": "opondr", "opone": "opon", "oponen": "opon", "oponentes": "oponent", "oponga": "opong", "opongo": "opong", "oponíamos": "opon", "oportuna": "oportun", "oportunamente": "oportun", "oportunidad": "oportun", "oportunidades": "oportun", "oportuno": "oportun", "oposición": "oposicion", "opositor": "opositor", "opositores": "opositor", "oprimir": "oprim", "opta": "opta", "optaba": "optab", "optar": "optar", "optarse": "optars", "optativo": "optat", "óptica": "optic", "ópticas": "optic", "óptico": "optic", "optimismo": "optim", "optimista": "optim", "optimistas": "optim", "optimización": "optimiz", "optimizar": "optimiz", "óptimo": "optim", "optó": "opto", "opuesta": "opuest", "opuesto": "opuest", "opuestos": "opuest", "opusieron": "opus", "or": "or", "oraciones": "oracion", "orador": "orador", "oral": "oral", "oralia": "orali", "oralmente": "oral", "oramos": "oram", "orangután": "orangutan", "orangutanes": "orangutan", "oraría": "orar", "orbe": "orbe", "órbita": "orbit", "orbitar": "orbit", "orco": "orco", "ordás": "ordas", "ordaz": "ordaz", "orden": "orden", "ordena": "orden", "ordenaban": "orden", "ordenada": "orden", "ordenadas": "orden", "ordenado": "orden", "ordenamos": "orden", "ordenar": "orden", "ordeñarás": "ordeñ", "ordenaron": "orden", "ordene": "orden", "ordenen": "orden", "ordenes": "orden", "órdenes": "orden", "ordenó": "orden", "ordiales": "ordial", "ordinaria": "ordinari", "ordinario": "ordinari", "ordóñez": "ordoñez", "orduño": "orduñ", "orea": "ore", "oregón": "oregon", "oreja": "orej", "orejas": "orej", "orejeras": "orejer", "orfebres": "orfebr", "orgánicas": "organ", "organice": "organic", "organismo": "organ", "organismos": "organ", "organiza": "organiz", "organización": "organiz", "organizacional": "organizacional", "organizaciones": "organiz", "organizada": "organiz", "organizadas": "organiz", "organizado": "organiz", "organizador": "organiz", "organizadora": "organiz", "organizadoras": "organiz", "organizadores": "organiz", "organizados": "organiz", "organizamos": "organiz", "organizan": "organiz", "organizando": "organiz", "organizar": "organiz", "organizará": "organiz", "organizaría": "organiz", "organizaron": "organiz", "organizarse": "organiz", "organizativa": "organiz", "organizó": "organiz", "órgano": "organ", "órganos": "organ", "orgásmico": "orgasm", "orgasmo": "orgasm", "orgía": "orgi", "orgullo": "orgull", "orgullosa": "orgull", "orgullosamente": "orgull", "orgulloso": "orgull", "orgullosos": "orgull", "oriana": "orian", "orienta": "orient", "orientació": "orientac", "orientación": "orient", "orientada": "orient", "orientadas": "orient", "orientado": "orient", "orientadoras": "orient", "orientadores": "orient", "orientados": "orient", "oriental": "oriental", "orientales": "oriental", "orientan": "orient", "orientando": "orient", "orientar": "orient", "orientarte": "orientart", "oriente": "orient", "origen": "orig", "orígenes": "origen", "origina": "origin", "originada": "origin", "originadas": "origin", "originado": "origin", "originados": "origin", "original": "original", "originales": "original", "originalidad": "original", "originalmente": "original", "originan": "origin", "originando": "origin", "originar": "origin", "originará": "origin", "originario": "originari", "originarios": "originari", "originarla": "origin", "originaron": "origin", "origine": "origin", "originó": "origin", "orilla": "orill", "orillando": "orill", "orillar": "orill", "orillas": "orill", "orilló": "orill", "orina": "orin", "orinar": "orin", "orioles": "oriol", "orishas": "orish", "orizaba": "oriz", "orlando": "orland", "ornelas": "ornel", "ornellas": "ornell", "oro": "oro", "oroinia": "oroini", "oropel": "oropel", "oropeza": "oropez", "orozco": "orozc", "orozquiana": "orozquian", "orquesta": "orquest", "orquestas": "orquest", "orta": "orta", "ortega": "orteg", "ortigoza": "ortigoz", "ortiz": "ortiz", "ortíz": "ortiz", "ortodoxa": "ortodox", "ortodoxas": "ortodox", "ortodoxia": "ortodoxi", "ortografía": "ortograf", "ortopedia": "ortopedi", "orven": "orven", "orwell": "orwell", "os": "os", "osadía": "osad", "osados": "osad", "osaka": "osak", "osasuna": "osasun", "oscar": "oscar", "oscila": "oscil", "oscilaba": "oscil", "oscilaciones": "oscil", "oscilan": "oscil", "oscura": "oscur", "oscuras": "oscur", "oscurecer": "oscurec", "oscuridad": "oscur", "oscuro": "oscur", "oscuros": "oscur", "osorio": "osori", "osos": "osos", "osservatore": "osservator", "ostensible": "ostens", "ostensiblemente": "ostens", "ostenta": "ostent", "ostentar": "ostent", "osuna": "osun", "osvaldo": "osvald", "oswald": "oswald", "oswaldo": "oswald", "otáez": "otaez", "otan": "otan", "ote": "ote", "oteando": "ote", "othon": "othon", "othón": "othon", "otila": "otil", "otilia": "otili", "otitis": "otitis", "otoño": "otoñ", "otorga": "otorg", "otorgada": "otorg", "otorgadas": "otorg", "otorgado": "otorg", "otorgados": "otorg", "otorgamiento": "otorg", "otorgan": "otorg", "otorgando": "otorg", "otorgar": "otorg", "otorgará": "otorg", "otorgaran": "otorg", "otorgarán": "otorg", "otorgarle": "otorg", "otorgarles": "otorg", "otorgarnos": "otorg", "otorgaron": "otorg", "otorgó": "otorg", "otorguen": "otorg", "otra": "otra", "otras": "otras", "otro": "otro", "otrora": "otror", "otros": "otros", "ottawa": "ottaw", "ottey": "ottey", "otto": "otto", "out": "out", "outs": "outs", "ovación": "ovacion", "ovacionada": "ovacion", "ovacionado": "ovacion", "ovacionados": "ovacion", "ovacionan": "ovacion", "ovacionarlo": "ovacion", "ovaciones": "ovacion", "ovacionó": "ovacion", "oval": "oval", "ovalle": "ovall", "ovejas": "ovej", "over": "over", "ovidio": "ovidi", "oviedo": "ovied", "ovoide": "ovoid", "ovulación": "ovul", "owen": "owen", "oxford": "oxford", "oxida": "oxid", "oxidando": "oxid", "oxidar": "oxid", "óxidos": "oxid", "oxígeno": "oxigen", "oxxo": "oxxo", "oyen": "oyen", "oyentes": "oyent", "oyeran": "oyer", "oyó": "oyo", "oziel": "oziel", "ozono": "ozon", "p": "p", "pa": "pa", "pabellón": "pabellon", "pabilos": "pabil", "pablo": "pabl", "pacheco": "pachec", "pacho": "pach", "pachoneos": "pachone", "pachuca": "pachuc", "paciencia": "pacienci", "paciente": "pacient", "pacientes": "pacient", "pacífica": "pacif", "pacifico": "pacif", "pacífico": "pacif", "packaged": "packag", "packard": "packard", "paco": "pac", "pactada": "pact", "pactarán": "pact", "pacto": "pact", "pactó": "pact", "padece": "padec", "padecemos": "padec", "padecen": "padec", "padecer": "padec", "padeciendo": "padec", "padecieron": "padec", "padecimiento": "padec", "padecimientos": "padec", "padilla": "padill", "padre": "padr", "padrecito": "padrecit", "padres": "padr", "padrino": "padrin", "padró": "padr", "padrón": "padron", "padrones": "padron", "páez": "paez", "pag": "pag", "pág": "pag", "paga": "pag", "pagaba": "pag", "pagadas": "pag", "pagado": "pag", "pagados": "pag", "pagamos": "pag", "pagan": "pag", "pagando": "pag", "paganismo": "pagan", "pagano": "pagan", "paganos": "pagan", "pagar": "pag", "pagara": "pag", "pagará": "pag", "pagaran": "pag", "pagarán": "pag", "pagarían": "pag", "pagarla": "pag", "pagarle": "pag", "pagarnos": "pag", "pagaron": "pag", "pagarte": "pagart", "página": "pagin", "páginas": "pagin", "pago": "pag", "pagó": "pag", "pagos": "pag", "pague": "pag", "paguen": "pag", "país": "pais", "paisaje": "paisaj", "paisajes": "paisaj", "paisajista": "paisaj", "paisajístico": "paisajist", "paises": "pais", "países": "pais", "paja": "paj", "pájaro": "pajar", "pájaros": "pajar", "pala": "pal", "palabra": "palabr", "palabras": "palabr", "palabrería": "palabr", "palacetes": "palacet", "palacio": "palaci", "palacios": "palaci", "paladar": "palad", "palanca": "palanc", "palapa": "palap", "palas": "pal", "palaú": "palau", "palazuelos": "palazuel", "palco": "palc", "palcos": "palc", "pale": "pal", "palencia": "palenci", "palenque": "palenqu", "palenques": "palenqu", "paleros": "paler", "palestino": "palestin", "palestinos": "palestin", "palestra": "palestr", "paletones": "paleton", "pálido": "pal", "palillo": "palill", "paliza": "paliz", "palm": "palm", "palma": "palm", "palmas": "palm", "palmeras": "palmer", "palmitos": "palmit", "palo": "pal", "paloma": "palom", "palomas": "palom", "palomilla": "palomill", "palomitas": "palomit", "palomo": "palom", "palos": "pal", "palou": "palou", "palpable": "palpabl", "pam": "pam", "pamela": "pamel", "pampas": "pamp", "pamplona": "pamplon", "pan": "pan", "pana": "pan", "panacea": "panace", "panadería": "panad", "pañales": "pañal", "panamá": "panam", "panameño": "panameñ", "panamericana": "panamerican", "panamericanos": "panamerican", "pancarta": "pancart", "pancartas": "pancart", "pancho": "panch", "pancracio": "pancraci", "pancrasio": "pancrasi", "pandilla": "pandill", "pandillas": "pandill", "pandilleril": "pandilleril", "pandillerismo": "pandiller", "pandillero": "pandiller", "pandilleros": "pandiller", "panecillos": "panecill", "panel": "panel", "paneles": "panel", "panes": "pan", "paniagua": "paniagu", "pánico": "panic", "panista": "panist", "panistas": "panist", "panorama": "panoram", "panorámicas": "panoram", "panorámicos": "panoram", "panqué": "panqu", "pantalla": "pantall", "pantallas": "pantall", "pantalón": "pantalon", "pantalones": "pantalon", "panteón": "panteon", "panteones": "panteon", "panteras": "panter", "pantorrilla": "pantorrill", "pantro": "pantr", "pants": "pants", "pañuelos": "pañuel", "panzas": "panz", "paola": "paol", "papa": "pap", "papá": "pap", "papal": "papal", "papalotla": "papalotl", "papás": "papas", "papasquiaroa": "papasquiaro", "papel": "papel", "papelería": "papel", "papelerías": "papel", "papeles": "papel", "papitas": "papit", "paquete": "paquet", "paquetería": "paquet", "paquetes": "paquet", "paquiro": "paquir", "par": "par", "para": "par", "paraba": "par", "parabólicas": "parabol", "parabrisas": "parabris", "paracaídas": "paracaid", "parada": "par", "paradas": "par", "parado": "par", "paradojas": "paradoj", "paradójicamente": "paradoj", "parados": "par", "paraestatal": "paraestatal", "parafinas": "parafin", "parafraseando": "parafras", "paráfrasis": "parafrasis", "paraguay": "paraguay", "paraguayo": "paraguay", "paraíso": "parais", "paraje": "paraj", "paralela": "paralel", "paralelamente": "paralel", "paralelas": "paralel", "paralelismo": "paralel", "paralelo": "paralel", "paralelos": "paralel", "parálisis": "paralisis", "paralítico": "paralit", "paralizan": "paraliz", "paralizando": "paraliz", "paralizante": "paraliz", "paralizar": "paraliz", "paralizaron": "paraliz", "paralizó": "paraliz", "parámetro": "parametr", "parámetros": "parametr", "paran": "par", "parando": "par", "paraninfo": "paraninf", "parar": "par", "parara": "par", "pararme": "par", "pararse": "par", "parás": "paras", "parcial": "parcial", "parciales": "parcial", "parcialidad": "parcial", "parcialmente": "parcial", "parece": "parec", "parecemos": "parec", "parecen": "parec", "parecer": "parec", "parecería": "parec", "parecerían": "parec", "parecerse": "parec", "parecía": "parec", "parecían": "parec", "parecida": "parec", "parecidas": "parec", "parecido": "parec", "pareciendo": "parec", "parecieron": "parec", "pareciese": "parec", "pareció": "parec", "pared": "par", "paredes": "pared", "pareja": "parej", "parejas": "parej", "parejos": "parej", "paremos": "par", "paréntesis": "parentesis", "pares": "par", "parezca": "parezc", "parga": "parg", "pariente": "parient", "parientes": "parient", "parietal": "parietal", "paris": "paris", "parís": "par", "parisino": "parisin", "park": "park", "parkas": "park", "parker": "park", "parlamentaria": "parlamentari", "parlamentarias": "parlamentari", "parlamentario": "parlamentari", "parlamentarios": "parlamentari", "parlamento": "parlament", "parm": "parm", "parmista": "parmist", "paro": "par", "paró": "par", "parodiando": "parodi", "paros": "par", "párpados": "parp", "parque": "parqu", "parquedad": "parqued", "parques": "parqu", "parquimetrero": "parquimetrer", "parquímetro": "parquimetr", "parquímetros": "parquimetr", "parra": "parr", "párrafo": "parraf", "parranda": "parrand", "parricidas": "parric", "parricidio": "parricidi", "parrilla": "parrill", "párroco": "parroc", "parroquia": "parroqui", "parroquiales": "parroquial", "parroquiano": "parroquian", "parroquias": "parroqui", "parsons": "parsons", "parte": "part", "parteaguas": "parteagu", "parten": "part", "partes": "part", "participa": "particip", "participaba": "particip", "participaban": "particip", "participación": "particip", "participaciones": "particip", "participado": "particip", "participamos": "particip", "participan": "particip", "participando": "particip", "participante": "particip", "participantes": "particip", "participar": "particip", "participara": "particip", "participará": "particip", "participarán": "particip", "participarían": "particip", "participaron": "particip", "participativos": "particip", "participe": "particip", "participen": "particip", "partícipes": "particip", "participó": "particip", "particular": "particul", "particulares": "particular", "particularmente": "particular", "partículas": "particul", "partida": "part", "partidaria": "partidari", "partidario": "partidari", "partidarios": "partidari", "partidas": "part", "partidazo": "partidaz", "partidero": "partider", "partidistas": "partid", "partido": "part", "partidos": "part", "partiendo": "part", "partiera": "part", "partieron": "part", "partió": "part", "partir": "part", "partirá": "part", "partirán": "part", "parto": "part", "partos": "part", "parturienta": "parturient", "parvada": "parv", "pasa": "pas", "pasaba": "pas", "pasaban": "pas", "pasacassettes": "pasacassett", "pasada": "pas", "pasadas": "pas", "pasado": "pas", "pasadores": "pasador", "pasados": "pas", "pasaje": "pasaj", "pasajera": "pasajer", "pasajeros": "pasajer", "pasajes": "pasaj", "pasamayo": "pasamay", "pasamos": "pas", "pasan": "pas", "pasando": "pas", "pasante": "pasant", "pasaporte": "pasaport", "pasar": "pas", "pasara": "pas", "pasará": "pas", "pasarán": "pas", "pasarela": "pasarel", "pasarelas": "pasarel", "pasaría": "pas", "pasarían": "pas", "pasarle": "pas", "pasarles": "pas", "pasaron": "pas", "pasarse": "pas", "pasatiempo": "pasatiemp", "pascal": "pascal", "pasco": "pasc", "pascua": "pascu", "pascual": "pascual", "pascuense": "pascuens", "pase": "pas", "pasé": "pas", "pasean": "pas", "pasear": "pas", "pasearon": "pas", "pásele": "pasel", "pasen": "pas", "paseño": "paseñ", "paseo": "pase", "paseó": "pase", "paseos": "pase", "pases": "pas", "pasillo": "pasill", "pasillos": "pasill", "pasión": "pasion", "pasional": "pasional", "pasiones": "pasion", "pasiva": "pasiv", "pasivo": "pasiv", "pasivos": "pasiv", "paso": "pas", "pasó": "pas", "pasos": "pas", "pasquinal": "pasquinal", "passarella": "passarell", "pasta": "past", "pastillas": "pastill", "pasto": "past", "pastor": "pastor", "pastora": "pastor", "pastoral": "pastoral", "pastoriza": "pastoriz", "pata": "pat", "patadas": "pat", "patas": "pat", "pateadores": "pateador", "patearon": "pat", "patentara": "patent", "patentarlo": "patent", "patente": "patent", "patentes": "patent", "paternal": "paternal", "paternalismo": "paternal", "paternalista": "paternal", "paternalistas": "paternal", "paternos": "pat", "patéticamente": "patet", "patéticos": "patet", "path": "path", "patinamos": "patin", "patiñazo": "patiñaz", "patiño": "patiñ", "patio": "pati", "patito": "patit", "pato": "pat", "patológico": "patolog", "patos": "pat", "patria": "patri", "patriarca": "patriarc", "patriarcas": "patriarc", "patricia": "patrici", "patricio": "patrici", "patricios": "patrici", "patrick": "patrick", "patrimonial": "patrimonial", "patrimoniales": "patrimonial", "patrimonio": "patrimoni", "patrio": "patri", "patrios": "patri", "patriot": "patriot", "patrocinada": "patrocin", "patrocinado": "patrocin", "patrocinador": "patrocin", "patrocinadores": "patrocin", "patrocinio": "patrocini", "patrón": "patron", "patrona": "patron", "patronal": "patronal", "patronales": "patronal", "patronato": "patronat", "patrones": "patron", "patrulla": "patrull", "patrullas": "patrull", "patrulleros": "patruller", "patty": "patty", "paty": "paty", "paul": "paul", "paúl": "paul", "paulatina": "paulatin", "paulatinamente": "paulatin", "paulatino": "paulatin", "paulina": "paulin", "paulino": "paulin", "paullada": "paull", "paulo": "paul", "pausa": "paus", "pausada": "paus", "pausadamente": "pausad", "pausas": "paus", "pauta": "paut", "pavimentación": "paviment", "pavimentada": "paviment", "pavimentado": "paviment", "pavimentados": "paviment", "pavimentar": "paviment", "pavimento": "paviment", "pavor": "pavor", "payán": "payan", "payasadas": "payas", "paz": "paz", "pc": "pc", "pclab": "pclab", "pdcc": "pdcc", "pdm": "pdm", "peabody": "peabody", "peaje": "peaj", "pearl": "pearl", "peatones": "peaton", "pecado": "pec", "pecador": "pecador", "pecadores": "pecador", "pecaminosa": "pecamin", "pecará": "pec", "pece": "pec", "peces": "pec", "pechera": "pecher", "pecho": "pech", "pecina": "pecin", "pectoral": "pectoral", "pectorales": "pectoral", "peculiar": "peculi", "peculiares": "peculiar", "peculiaridad": "peculiar", "peculiaridades": "peculiar", "pedagogía": "pedagog", "pedagógica": "pedagog", "pedagógicas": "pedagog", "pedagógicos": "pedagog", "pedalista": "pedal", "pedalistas": "pedal", "pedazos": "pedaz", "pedía": "ped", "pedían": "ped", "pediatra": "pediatr", "pediatría": "pediatr", "pediátrica": "pediatr", "pedida": "ped", "pedido": "ped", "pedidores": "pedidor", "pedidos": "ped", "pedimento": "pediment", "pedimentos": "pediment", "pedimos": "ped", "pedir": "ped", "pedirá": "ped", "pedirán": "ped", "pediré": "ped", "pediría": "ped", "pedirle": "ped", "pedirles": "ped", "pedirlo": "ped", "pedomo": "pedom", "pedrada": "pedr", "pedradas": "pedr", "pedraza": "pedraz", "pedreras": "pedrer", "pedrería": "pedr", "pedrín": "pedrin", "pedro": "pedr", "pega": "peg", "pegada": "peg", "pegado": "peg", "pegamento": "pegament", "pegando": "peg", "pegar": "peg", "pegaran": "peg", "pegarle": "peg", "pegaron": "peg", "pegó": "peg", "pegote": "pegot", "pegotes": "pegot", "pegue": "peg", "peinado": "pein", "peinó": "pein", "pelado": "pel", "peláez": "pelaez", "pelar": "pel", "peldaños": "peldañ", "pelé": "pel", "pelea": "pele", "peleado": "pel", "pelean": "pel", "peleando": "pel", "pelear": "pel", "peleará": "pel", "pelearan": "pel", "pelearon": "pel", "peleas": "pel", "peleen": "pel", "peleles": "pelel", "peleo": "pele", "peleó": "pele", "pelicula": "pelicul", "película": "pelicul", "películas": "pelicul", "peligro": "peligr", "peligros": "peligr", "peligrosa": "peligr", "peligrosamente": "peligr", "peligrosas": "peligr", "peligroso": "peligr", "peligrosos": "peligr", "pelletier": "pelleti", "pello": "pell", "pelo": "pel", "pelos": "pel", "pelota": "pelot", "pelotero": "peloter", "peloteros": "peloter", "pelotón": "peloton", "peluche": "peluch", "peluquerías": "peluqu", "pemex": "pemex", "pena": "pen", "peña": "peñ", "penal": "penal", "penales": "penal", "penalidad": "penal", "penalmente": "penal", "penalty": "penalty", "penas": "pen", "peñascos": "peñasc", "pendiente": "pendient", "pendientes": "pendient", "pendleton": "pendleton", "penetracion": "penetracion", "penetración": "penetr", "penetrados": "penetr", "penetran": "penetr", "penetrante": "penetr", "penetrar": "penetr", "peniche": "penich", "península": "peninsul", "peninsulares": "peninsular", "penitenciarios": "penitenciari", "penn": "penn", "pennsylvania": "pennsylvani", "penoso": "penos", "pensaba": "pens", "pensabamos": "pensab", "pensaban": "pens", "pensado": "pens", "pensadores": "pensador", "pensamiento": "pensamient", "pensamos": "pens", "pensando": "pens", "pensantes": "pensant", "pensar": "pens", "pensarse": "pens", "pensativa": "pensat", "pensé": "pens", "pensemos": "pens", "pensilvania": "pensilvani", "pensión": "pension", "pensionados": "pension", "pensiones": "pension", "pensó": "pens", "pentágono": "pentagon", "pentathlón": "pentathlon", "pentecostés": "pentecostes", "pentotal": "pentotal", "penúltimo": "penultim", "penurias": "penuri", "peor": "peor", "peores": "peor", "pepe": "pep", "peppers": "peppers", "pequeña": "pequeñ", "pequeñas": "pequeñ", "pequeñísima": "pequeñisim", "pequeñísimo": "pequeñisim", "pequeñita": "pequeñit", "pequeño": "pequeñ", "pequeños": "pequeñ", "per": "per", "perales": "peral", "peraza": "peraz", "percance": "percanc", "percances": "percanc", "percata": "percat", "percatado": "percat", "percatarse": "percat", "percató": "percat", "percepción": "percepcion", "percepciones": "percepcion", "perciban": "percib", "percibe": "percib", "perciben": "percib", "percusiones": "percusion", "percusionistas": "percusion", "perdedores": "perdedor", "perdemos": "perd", "perder": "perd", "perderá": "perd", "perderán": "perd", "perderían": "perd", "perderla": "perd", "perderlo": "perd", "perdí": "perd", "perdición": "perdicion", "perdida": "perd", "pérdida": "perd", "perdidas": "perd", "pérdidas": "perd", "perdido": "perd", "perdidos": "perd", "perdiendo": "perd", "perdiera": "perd", "perdieran": "perd", "perdieron": "perd", "perdió": "perd", "perdomo": "perdom", "perdón": "perdon", "perdonarlos": "perdon", "perdones": "perdon", "perea": "pere", "perecieron": "perec", "pereda": "pered", "peregrina": "peregrin", "peregrinación": "peregrin", "peregrino": "peregrin", "perenne": "perenn", "pereyra": "pereyr", "perez": "perez", "pérez": "perez", "perfección": "perfeccion", "perfeccionamiento": "perfeccion", "perfeccionar": "perfeccion", "perfeccionarlo": "perfeccion", "perfeccione": "perfeccion", "perfectamente": "perfect", "perfecto": "perfect", "perfectos": "perfect", "perfidiana": "perfidian", "perfil": "perfil", "perfila": "perfil", "perfilaba": "perfil", "perfilan": "perfil", "perfiles": "perfil", "perfoliata": "perfoliat", "perforación": "perfor", "perforado": "perfor", "perforar": "perfor", "performance": "performanc", "pergaminos": "pergamin", "pericia": "perici", "periciales": "pericial", "pericos": "peric", "periférica": "perifer", "periféricas": "perifer", "periférico": "perifer", "periféricos": "perifer", "perigord": "perigord", "perillas": "perill", "perimetral": "perimetral", "periódicamente": "period", "periódicas": "period", "períodico": "period", "periódico": "period", "periódicos": "period", "periodismo": "period", "periodista": "period", "periodistas": "period", "periodística": "periodist", "periodísticas": "periodist", "periodístico": "periodist", "periodo": "period", "período": "period", "periodos": "period", "períodos": "period", "perjudica": "perjud", "perjudicada": "perjudic", "perjudicado": "perjudic", "perjudicados": "perjudic", "perjudican": "perjudic", "perjudicar": "perjudic", "perjudicará": "perjudic", "perjudicial": "perjudicial", "perjudicó": "perjudic", "perjuicio": "perjuici", "perjuicios": "perjuici", "perla": "perl", "perlas": "perl", "permanece": "permanec", "permanecen": "permanec", "permanecer": "permanec", "permanecerá": "permanec", "permanecerán": "permanec", "permaneceremos": "permanec", "permanecía": "permanec", "permanecían": "permanec", "permanecido": "permanec", "permaneciendo": "permanec", "permanecieran": "permanec", "permanecieron": "permanec", "permaneció": "permanec", "permanencia": "permanent", "permanente": "permanent", "permanentemente": "permanent", "permanentes": "permanent", "permanezca": "permanezc", "permanezcan": "permanezc", "permisibles": "permis", "permisionario": "permisionari", "permisionarios": "permisionari", "permiso": "permis", "permisos": "permis", "permita": "permit", "permítame": "permitam", "permitan": "permit", "permite": "permit", "permiten": "permit", "permitía": "permit", "permitida": "permit", "permitidas": "permit", "permitido": "permit", "permitiendo": "permit", "permitiéndole": "permit", "permitiera": "permit", "permitieron": "permit", "permitió": "permit", "permitir": "permit", "permitirá": "permit", "permitirán": "permit", "permitiré": "permit", "permitiría": "permit", "permitirían": "permit", "permitirles": "permit", "permitirse": "permit", "pernada": "pern", "perniciosas": "pernici", "pernicioso": "pernici", "pernoctó": "pernoct", "pero": "per", "perpetra": "perpetr", "perpetrada": "perpetr", "perpetrados": "perpetr", "perpetua": "perpetu", "perpetúan": "perpetu", "perpetuarse": "perpetu", "perplejidad": "perplej", "perplejo": "perplej", "perredista": "perred", "perredistas": "perred", "perro": "perr", "perros": "perr", "perry": "perry", "persecución": "persecu", "persecutoria": "persecutori", "persecutorias": "persecutori", "perseguida": "persegu", "perseguidor": "perseguidor", "perseguidores": "perseguidor", "perseguidos": "persegu", "perseguirlos": "persegu", "persiga": "persig", "persiste": "pers", "persisten": "persist", "persistencia": "persistent", "persistente": "persistent", "persistir": "persist", "persona": "person", "personaje": "personaj", "personajes": "personaj", "personal": "personal", "personales": "personal", "personalidad": "personal", "personalidades": "personal", "personalizar": "personaliz", "personalizarlo": "personaliz", "personalmente": "personal", "personas": "person", "personifica": "personif", "personificará": "personific", "perspectiva": "perspect", "perspectivas": "perspect", "perspicacia": "perspicaci", "persuadir": "persuad", "pertenece": "pertenec", "pertenecen": "pertenec", "pertenecer": "pertenec", "pertenecía": "pertenec", "perteneciendo": "pertenec", "perteneciente": "pertenecient", "pertenecientes": "pertenecient", "pertenecieron": "pertenec", "perteneció": "pertenec", "pertenencias": "pertenent", "pértiga": "pertig", "pertinaces": "pertinac", "pertinente": "pertinent", "pertinentes": "pertinent", "perturba": "perturb", "perturbación": "perturb", "perturbemos": "perturb", "perturbó": "perturb", "perú": "peru", "peruana": "peruan", "peruano": "peruan", "peruanos": "peruan", "perversas": "pervers", "perversión": "perversion", "perversiones": "perversion", "perversos": "pervers", "pervivencia": "pervivent", "pesa": "pes", "pesadas": "pes", "pesadez": "pesadez", "pesadilla": "pesadill", "pesado": "pes", "pesados": "pes", "pesaje": "pesaj", "pesar": "pes", "pesas": "pes", "pesca": "pesc", "pescadores": "pescador", "pescados": "pesc", "pese": "pes", "peseras": "peser", "peseta": "peset", "pesetas": "peset", "pésima": "pesim", "pesimista": "pesim", "pesimistas": "pesim", "pésimo": "pesim", "peso": "pes", "pesó": "pes", "pesos": "pes", "pespuntes": "pespunt", "pesqueira": "pesqueir", "pesquería": "pesqu", "pesqueros": "pesquer", "pesticida": "pestic", "pesticidas": "pestic", "petate": "petat", "pete": "pet", "peter": "pet", "petición": "peticion", "peticiones": "peticion", "petit": "petit", "peto": "pet", "petra": "petr", "petrel": "petrel", "petróleo": "petrole", "petróleos": "petrole", "petrolera": "petroler", "petroleras": "petroler", "petrolero": "petroler", "petroleros": "petroler", "petrolizar": "petroliz", "petroquímica": "petroquim", "petroquímicas": "petroquim", "petrov": "petrov", "peyote": "peyot", "peza": "pez", "pfcrn": "pfcrn", "pfcyp": "pfcyp", "pfeiffer": "pfeiff", "pgjdf": "pgjdf", "pgr": "pgr", "ph": "ph", "philip": "philip", "philippe": "philipp", "phillips": "phillips", "philos": "phil", "piales": "pial", "pianista": "pianist", "piano": "pian", "pib": "pib", "picaba": "pic", "picado": "pic", "picadores": "picador", "pican": "pic", "picante": "picant", "pichardo": "pichard", "pichichis": "pichichis", "pick": "pick", "pico": "pic", "picos": "pic", "pictórica": "pictor", "pictóricas": "pictor", "pida": "pid", "pidan": "pid", "pidas": "pid", "pide": "pid", "piden": "pid", "pidiendo": "pid", "pidiéndoles": "pid", "pidieron": "pid", "pidió": "pid", "pido": "pid", "pie": "pie", "piedad": "pied", "piedra": "piedr", "piedras": "piedr", "piedrecita": "piedrecit", "piedritas": "piedrit", "piel": "piel", "pieles": "piel", "pienda": "piend", "piensa": "piens", "piensan": "piens", "piense": "piens", "piensen": "piens", "pienso": "piens", "pierce": "pierc", "pierda": "pierd", "pierdan": "pierd", "pierde": "pierd", "pierden": "pierd", "pierdo": "pierd", "pierna": "piern", "piernas": "piern", "pierre": "pierr", "pies": "pies", "pieza": "piez", "piezas": "piez", "pifia": "pifi", "pigmento": "pigment", "pigmentosa": "pigment", "pila": "pil", "pilar": "pil", "pilares": "pilar", "pilas": "pil", "píldora": "pildor", "píldoras": "pildor", "pillma": "pillm", "pilón": "pilon", "piloncillo": "piloncill", "piloteando": "pilot", "piloteó": "pilote", "piloto": "pilot", "pilotos": "pilot", "pimentel": "pimentel", "piña": "piñ", "pinacoteca": "pinacotec", "pinal": "pinal", "piñaolayas": "piñaolay", "piñas": "piñ", "pinchado": "pinch", "pinchazo": "pinchaz", "pinchó": "pinch", "pino": "pin", "pinochet": "pinochet", "pinos": "pin", "pinta": "pint", "pintaban": "pint", "pintada": "pint", "pintadas": "pint", "pintado": "pint", "pintados": "pint", "pintan": "pint", "pintando": "pint", "pintar": "pint", "pintarlas": "pint", "pintarlo": "pint", "pintaron": "pint", "pintas": "pint", "pintor": "pintor", "pintora": "pintor", "pintores": "pintor", "pintura": "pintur", "pinturas": "pintur", "pinzón": "pinzon", "pío": "pio", "pionera": "pioner", "pionero": "pioner", "pioneros": "pioner", "pipa": "pip", "piquetes": "piquet", "piramidal": "piramidal", "pirata": "pirat", "piratas": "pirat", "pirate": "pirat", "pirateando": "pirat", "piretro": "piretr", "piri": "piri", "piropeado": "pirop", "pirulina": "pirulin", "pisaba": "pis", "pisado": "pis", "pisando": "pis", "pisen": "pis", "piso": "pis", "pisos": "pis", "pisoteaban": "pisot", "pisoteada": "pisot", "pisoteando": "pisot", "pisotear": "pisot", "pisoteen": "pisot", "pista": "pist", "pistas": "pist", "pistola": "pistol", "pistolas": "pistol", "pitas": "pit", "pitcheado": "pitch", "pitcheo": "pitche", "pitcher": "pitch", "pítcher": "pitch", "piti": "piti", "pito": "pit", "pitol": "pitol", "pitoncitos": "pitoncit", "pits": "pits", "pittsburgh": "pittsburgh", "pitufos": "pituf", "pivote": "pivot", "pizarro": "pizarr", "pizarrón": "pizarron", "pizpireta": "pizpiret", "pizuto": "pizut", "pizza": "pizz", "pizzas": "pizz", "pjf": "pjf", "placa": "plac", "placas": "plac", "place": "plac", "plácemes": "placem", "placer": "plac", "placet": "placet", "plácida": "plac", "plácidamente": "placid", "placita": "placit", "plaga": "plag", "plagadas": "plag", "plagas": "plag", "plagiada": "plagi", "plaguicidas": "plaguic", "plainfield": "plainfield", "plan": "plan", "plana": "plan", "planas": "plan", "planauto": "planaut", "planchar": "planch", "planchará": "planch", "planchas": "planch", "planea": "plane", "planeaban": "plan", "planeación": "planeacion", "planeada": "plan", "planeadas": "plan", "planeado": "plan", "planeados": "plan", "planean": "plan", "planeando": "plan", "planear": "plan", "planee": "plane", "planes": "plan", "planeta": "planet", "planetaria": "planetari", "planificación": "planif", "planilla": "planill", "planillas": "planill", "planiria": "planiri", "plano": "plan", "planos": "plan", "planta": "plant", "plantaciones": "plantacion", "plantado": "plant", "plantados": "plant", "plantara": "plant", "plantaron": "plant", "plantas": "plant", "plantea": "plante", "planteada": "plant", "planteadas": "plant", "planteado": "plant", "planteados": "plant", "planteamientos": "planteamient", "planteamos": "plant", "plantean": "plant", "plantear": "plant", "plantearan": "plant", "plantearon": "plant", "plantearse": "plant", "plantee": "plante", "plantéeles": "planteel", "planteen": "plant", "plantel": "plantel", "planteles": "plantel", "planteó": "plante", "plantón": "planton", "plantones": "planton", "plascencia": "plascenci", "plasma": "plasm", "plasmado": "plasm", "plasmar": "plasm", "plasme": "plasm", "plasmó": "plasm", "plastas": "plast", "plástica": "plastic", "plásticas": "plastic", "plástico": "plastic", "plásticos": "plastic", "plastilina": "plastilin", "plata": "plat", "plataforma": "plataform", "plataformas": "plataform", "plataneras": "plataner", "plátanos": "platan", "platas": "plat", "plate": "plat", "plateadas": "plat", "plateas": "plat", "platería": "plat", "plática": "platic", "platicaba": "platic", "platicábamos": "platic", "platicaban": "platic", "platicado": "platic", "platicamos": "platic", "platicando": "platic", "platicar": "platic", "platicas": "platic", "pláticas": "platic", "platicó": "platic", "platillo": "platill", "platillos": "platill", "platinos": "platin", "platique": "platiqu", "plato": "plat", "plausibles": "plausibl", "playa": "play", "playas": "play", "playback": "playback", "playera": "player", "playeras": "player", "playtex": "playtex", "plaza": "plaz", "plazas": "plaz", "plazo": "plaz", "plazos": "plaz", "plebiscito": "plebiscit", "plegables": "plegabl", "pleitesía": "pleites", "pleito": "pleit", "pleitos": "pleit", "plena": "plen", "plenamente": "plen", "plenaria": "plenari", "pleno": "plen", "plomería": "plom", "plomo": "plom", "pluma": "plum", "plumas": "plum", "plumones": "plumon", "plural": "plural", "plusmarca": "plusmarc", "plusmarcas": "plusmarc", "plusvalía": "plusval", "plutarco": "plutarc", "pluvial": "pluvial", "pluviales": "pluvial", "plymouth": "plymouth", "pn": "pn", "po": "po", "población": "poblacion", "poblacional": "poblacional", "poblaciones": "poblacion", "poblada": "pobl", "pobladas": "pobl", "poblado": "pobl", "pobladores": "poblador", "poblados": "pobl", "poblano": "poblan", "poblanos": "poblan", "poblaron": "pobl", "pobre": "pobr", "pobres": "pobr", "pobreza": "pobrez", "poca": "poc", "pocas": "poc", "pocho": "poch", "pochtecas": "pochtec", "poco": "poc", "pocos": "poc", "poda": "pod", "podamos": "pod", "podemos": "pod", "poder": "pod", "poderes": "poder", "poderío": "poderi", "poderlas": "pod", "poderosa": "poder", "poderoso": "poder", "poderosos": "poder", "podía": "pod", "podíamos": "pod", "podían": "pod", "podido": "pod", "podrá": "podr", "podrán": "podran", "podrás": "podras", "podré": "podr", "podremos": "podr", "podría": "podr", "podríamos": "podr", "podrían": "podr", "podrías": "podr", "poema": "poem", "poemario": "poemari", "poemas": "poem", "poesía": "poes", "poeta": "poet", "poético": "poetic", "poetisa": "poetis", "point": "point", "pókar": "pok", "póker": "pok", "polanco": "polanc", "polar": "pol", "polémica": "polem", "polémicas": "polem", "polemizan": "polemiz", "polen": "pol", "poleo": "pole", "policarpo": "policarp", "policia": "polici", "policía": "polic", "policiaca": "policiac", "policíaca": "policiac", "policiacas": "policiac", "policíacas": "policiac", "policiaco": "policiac", "policíaco": "policiac", "policiacos": "policiac", "policíacos": "policiac", "policial": "policial", "policiales": "policial", "policias": "polici", "policías": "polic", "polifonía": "polifon", "poligono": "poligon", "polígono": "poligon", "polilla": "polill", "polinésico": "polines", "polinización": "poliniz", "polio": "poli", "poliomielitis": "poliomielitis", "politécnico": "politecn", "politeísta": "politeist", "politeístas": "politeist", "política": "polit", "políticas": "polit", "politico": "polit", "político": "polit", "políticos": "polit", "politiquero": "politiquer", "politólogos": "politolog", "poliuretano": "poliuretan", "polivalente": "polivalent", "pollo": "poll", "pollution": "pollution", "polo": "pol", "polonia": "poloni", "polveras": "polver", "polvo": "polv", "polvos": "polv", "pomadas": "pom", "pomares": "pomar", "pomperrier": "pomperri", "pompeyo": "pompey", "pompidou": "pompidou", "ponce": "ponc", "ponchando": "ponch", "ponche": "ponch", "pond": "pond", "pondera": "ponder", "ponderada": "ponder", "pondrá": "pondr", "pondrán": "pondran", "pondrás": "pondras", "pondremos": "pondr", "pondrían": "pondr", "ponds": "ponds", "pone": "pon", "ponemos": "pon", "ponen": "pon", "ponencia": "ponenci", "ponencias": "ponenci", "ponente": "ponent", "ponentes": "ponent", "poner": "pon", "ponerla": "pon", "ponerle": "pon", "ponerles": "pon", "ponerlo": "pon", "ponerlos": "pon", "ponernos": "pon", "ponerse": "pon", "pones": "pon", "ponga": "pong", "pongamos": "pong", "pongan": "pong", "póngase": "pong", "pongo": "pong", "ponía": "pon", "poniatowska": "poniatowsk", "poniendo": "pon", "poniente": "ponient", "pons": "pons", "pontiac": "pontiac", "pontier": "ponti", "pontificado": "pontific", "pontífice": "pontific", "pontificia": "pontifici", "pontificio": "pontifici", "pony": "pony", "pop": "pop", "popa": "pop", "pope": "pop", "popo": "pop", "poppe": "popp", "popular": "popul", "populares": "popular", "popularidad": "popular", "popularísimo": "popularisim", "populismo": "popul", "populista": "popul", "populistas": "popul", "populosos": "popul", "poquísimo": "poquisim", "poquitas": "poquit", "poquitito": "poquitit", "poquito": "poquit", "por": "por", "porcelana": "porcelan", "porcentaje": "porcentaj", "porcentajes": "porcentaj", "porcentual": "porcentual", "porcentuales": "porcentual", "porcícolas": "porcicol", "porciles": "porcil", "porción": "porcion", "porcioncita": "porcioncit", "porciones": "porcion", "porfesión": "porfesion", "porfía": "porf", "porfiriato": "porfiriat", "porfirio": "porfiri", "pormenores": "pormenor", "pormenorizados": "pormenoriz", "pornográficas": "pornograf", "pornográficos": "pornograf", "porque": "porqu", "porqué": "porqu", "porras": "porr", "porros": "porr", "porta": "port", "portaba": "port", "portaban": "port", "portabilidad": "portabil", "portación": "portacion", "portador": "portador", "portafolio": "portafoli", "portal": "portal", "portan": "port", "portando": "port", "portar": "port", "portarlas": "port", "portátil": "portatil", "portátiles": "portatil", "portavoz": "portavoz", "porte": "port", "porten": "port", "porter": "port", "portería": "port", "portero": "porter", "portezuela": "portezuel", "portillo": "portill", "portland": "portland", "portuaria": "portuari", "portuarias": "portuari", "portuario": "portuari", "portuarios": "portuari", "portugal": "portugal", "portugués": "portugues", "porvenir": "porven", "posada": "pos", "posee": "pose", "poseedor": "poseedor", "poseen": "pos", "poseer": "pos", "poseían": "pos", "poseidón": "poseidon", "poses": "pos", "posesión": "posesion", "posesionar": "posesion", "posesionase": "posesion", "posesivas": "poses", "posgrado": "posgr", "posgrados": "posgr", "posibilidad": "posibil", "posibilidades": "posibil", "posibilitan": "posibilit", "posible": "posibl", "posiblemente": "posibl", "posibles": "posibl", "posición": "posicion", "posicionado": "posicion", "posicionamiento": "posicion", "posiciones": "posicion", "posicionó": "posicion", "positiva": "posit", "positivamente": "posit", "positivas": "posit", "positivo": "posit", "positivos": "posit", "pospuesto": "pospuest", "pospuso": "pospus", "post": "post", "postal": "postal", "poste": "post", "postelectoral": "postelectoral", "postelectorales": "postelectoral", "postergación": "posterg", "posterior": "posterior", "posteriores": "posterior", "posteriormente": "posterior", "posters": "posters", "postes": "post", "postguerra": "postguerr", "postor": "postor", "postores": "postor", "postre": "postr", "postulaban": "postul", "postulación": "postul", "postulada": "postul", "postulado": "postul", "postulados": "postul", "postular": "postul", "postularse": "postul", "postuló": "postul", "póstumo": "postum", "postura": "postur", "posturas": "postur", "potabilizadora": "potabiliz", "potabilizadoras": "potabiliz", "potable": "potabl", "potencia": "potenci", "potencial": "potencial", "potenciales": "potencial", "potencialmente": "potencial", "potente": "potent", "potestad": "potest", "potomac": "potomac", "potosi": "potosi", "potosí": "potos", "potosino": "potosin", "potrillo": "potrill", "potrillos": "potrill", "potros": "potr", "pottlesberghe": "pottlesbergh", "poul": "poul", "powell": "powell", "powerbook": "powerbook", "powered": "power", "pozas": "poz", "pozo": "poz", "pozole": "pozol", "pozos": "poz", "ppc": "ppc", "pps": "pps", "practica": "practic", "práctica": "practic", "practicaban": "practic", "practicable": "practic", "practicadas": "practic", "prácticamente": "practic", "practicamos": "practic", "practican": "practic", "practicar": "practic", "practicaran": "practic", "practicaron": "practic", "practicas": "practic", "prácticas": "practic", "práctico": "practic", "practicó": "practic", "prácticos": "practic", "practique": "practiqu", "practiquen": "practiqu", "praderas": "prader", "prado": "prad", "prampolini": "prampolini", "praviel": "praviel", "praxedis": "praxedis", "prd": "prd", "pre": "pre", "preámbulo": "preambul", "prebendas": "prebend", "precandidato": "precandidat", "precaria": "precari", "precario": "precari", "precaución": "precaucion", "precautorio": "precautori", "precavido": "precav", "precavidos": "precav", "precedente": "precedent", "precedentes": "precedent", "precedidas": "preced", "precepto": "precept", "preceptos": "precept", "preciados": "preci", "precio": "preci", "precios": "preci", "preciosas": "preci", "precioso": "precios", "precipitación": "precipit", "precipitaciones": "precipit", "precipitadamente": "precipit", "precipitadas": "precipit", "precipitándose": "precipit", "precipitaron": "precipit", "precipitarse": "precipit", "precipitó": "precipit", "precisa": "precis", "precisado": "precis", "precisamente": "precis", "precísamente": "precis", "precisan": "precis", "precisando": "precis", "precisar": "precis", "precisaron": "precis", "precisión": "precision", "precisiones": "precision", "preciso": "precis", "precisó": "precis", "precisos": "precis", "preclaros": "preclar", "precolombina": "precolombin", "preconiza": "preconiz", "precursora": "precursor", "precursores": "precursor", "predecir": "predec", "predestinado": "predestin", "predeterminado": "predetermin", "predial": "predial", "predica": "predic", "predicación": "predic", "predicador": "predic", "predicar": "predic", "predicciones": "prediccion", "predice": "predic", "predijo": "predij", "predio": "predi", "predispone": "predispon", "predomina": "predomin", "predominan": "predomin", "predominante": "predomin", "predominantes": "predomin", "predominaron": "predomin", "preelectorales": "preelectoral", "preerupción": "preerupcion", "preescolar": "preescol", "preestablecido": "preestablec", "preestablecidos": "preestablec", "prefecto": "prefect", "preferencia": "preferent", "preferencial": "preferencial", "preferencias": "preferent", "preferentemente": "preferent", "prefería": "pref", "preferible": "prefer", "preferida": "prefer", "preferirán": "prefer", "preferiría": "prefer", "prefiera": "pref", "prefieran": "pref", "prefiere": "prefier", "prefieren": "prefier", "prefiero": "prefier", "prefijado": "prefij", "prefirieron": "prefir", "prefirió": "prefir", "pregrado": "pregr", "pregunta": "pregunt", "preguntaba": "pregunt", "preguntamos": "pregunt", "preguntan": "pregunt", "preguntando": "pregunt", "preguntar": "pregunt", "preguntarle": "pregunt", "preguntarnos": "pregunt", "preguntaron": "pregunt", "preguntarse": "pregunt", "preguntas": "pregunt", "pregunte": "pregunt", "pregúnteles": "preguntel", "pregunto": "pregunt", "preguntó": "pregunt", "prehispánica": "prehispan", "prehispánicas": "prehispan", "prehispánico": "prehispan", "prejuicios": "prejuici", "prejunior": "prejunior", "prelado": "prel", "prelavado": "prelav", "preliminar": "prelimin", "preliminares": "preliminar", "prematuramente": "prematur", "prematuro": "prematur", "premestizo": "premestiz", "premiaba": "premi", "premiación": "premiacion", "premiadas": "premi", "premiado": "premi", "premiados": "premi", "premiaron": "premi", "premie": "premi", "premier": "premi", "premio": "premi", "premió": "prem", "premios": "premi", "premisa": "premis", "premoderno": "premodern", "premonición": "premonicion", "premundialistas": "premundial", "prenda": "prend", "prendarios": "prendari", "prendas": "prend", "prende": "prend", "prendedores": "prendedor", "prender": "prend", "prendido": "prend", "prendieron": "prend", "prensa": "prens", "prensado": "prens", "preocupa": "preocup", "preocupaba": "preocup", "preocupación": "preocup", "preocupaciones": "preocup", "preocupada": "preocup", "preocupadas": "preocup", "preocupado": "preocup", "preocupados": "preocup", "preocupan": "preocup", "preocupar": "preocup", "preocupara": "preocup", "preocupará": "preocup", "preocuparía": "preocup", "preocuparle": "preocup", "preocuparon": "preocup", "preocuparse": "preocup", "preocupe": "preocup", "preocupen": "preocup", "preocupes": "preocup", "prepara": "prep", "preparaba": "prepar", "preparaban": "prepar", "preparación": "prepar", "preparada": "prepar", "preparadas": "prepar", "preparado": "prepar", "preparados": "prepar", "preparamos": "prepar", "preparan": "prep", "preparando": "prepar", "preparar": "prepar", "prepararán": "prepar", "prepararla": "prepar", "prepararse": "prepar", "prepárate": "preparat", "preparativos": "prepar", "preparatoria": "preparatori", "preparatorias": "preparatori", "preparatorio": "preparatori", "preparatorios": "preparatori", "prepárele": "preparel", "preparen": "prepar", "prepárese": "prepares", "preparó": "prepar", "preponderantemente": "preponder", "prepotencia": "prepotent", "prepotente": "prepotent", "prepotentes": "prepotent", "preproducción": "preproduccion", "prerequisitos": "prerequisit", "prerregistro": "prerregistr", "prerrogativa": "prerrog", "prerrogativas": "prerrog", "presa": "pres", "presas": "pres", "prescindir": "prescind", "prescriben": "prescrib", "prescritos": "prescrit", "preseas": "pres", "preselección": "preseleccion", "presencia": "presenci", "presenciado": "presenci", "presenciados": "presenci", "presencial": "presencial", "presenciar": "presenci", "presenciaron": "presenci", "presenció": "presenc", "presenta": "present", "presentaba": "present", "presentaban": "present", "presentación": "present", "presentaciones": "present", "presentada": "present", "presentadas": "present", "presentado": "present", "presentador": "present", "presentadores": "present", "presentados": "present", "presentamos": "present", "presentan": "present", "presentando": "present", "presentándolo": "present", "presentándose": "present", "presentar": "present", "presentara": "present", "presentará": "present", "presentáramos": "present", "presentarán": "present", "presentaremos": "present", "presentarla": "present", "presentarlo": "present", "presentarlos": "present", "presentarme": "present", "presentaron": "present", "presentarse": "present", "presente": "present", "presenten": "present", "presentes": "present", "presentí": "present", "presentó": "present", "preservación": "preserv", "preservado": "preserv", "preservar": "preserv", "preservarle": "preserv", "presida": "pres", "preside": "presid", "presiden": "presid", "presidencia": "president", "presidenciable": "presidenci", "presidenciables": "presidenci", "presidencial": "presidencial", "presidenciales": "presidencial", "presidencialismo": "presidencial", "presidencialista": "presidencial", "presidenta": "president", "presidente": "president", "presidentes": "president", "presidida": "presid", "presidido": "presid", "presidió": "presid", "presidir": "presid", "presidirá": "presid", "presidium": "presidium", "presión": "presion", "presionado": "presion", "presionando": "presion", "presionar": "presion", "presionará": "presion", "presionarlos": "presion", "presionaron": "presion", "presione": "presion", "presiones": "presion", "presley": "presley", "preso": "pres", "presos": "pres", "pressey": "pressey", "presta": "prest", "prestación": "prestacion", "prestaciones": "prestacion", "prestada": "prest", "prestado": "prest", "prestadores": "prestador", "préstamo": "prestam", "préstamos": "prest", "prestan": "prest", "prestancia": "prestanci", "prestar": "prest", "prestaría": "prest", "prestaron": "prest", "preste": "prest", "prestigiado": "prestigi", "prestigian": "prestigi", "prestigio": "prestigi", "prestigiosos": "prestigi", "prestó": "prest", "presume": "presum", "presumiblemente": "presum", "presumida": "presum", "presumieron": "presum", "presumir": "presum", "presunción": "presuncion", "presunta": "presunt", "presuntamente": "presunt", "presuntas": "presunt", "presunto": "presunt", "presuntos": "presunt", "presuntuoso": "presuntu", "presupuestadas": "presupuest", "presupuestal": "presupuestal", "presupuestario": "presupuestari", "presupuesto": "presupuest", "presurosamente": "presur", "preta": "pret", "pretel": "pretel", "pretemporada": "pretempor", "pretenda": "pretend", "pretende": "pretend", "pretendemos": "pretend", "pretenden": "pretend", "pretender": "pretend", "pretendía": "pretend", "pretendían": "pretend", "pretendido": "pretend", "pretendiente": "pretendient", "pretendieran": "pretend", "pretendieron": "pretend", "pretendió": "pretend", "pretensión": "pretension", "pretexto": "pretext", "prevalece": "prevalec", "prevalecen": "prevalec", "prevaleciendo": "prevalec", "prevalecientes": "prevalecient", "prevalezca": "prevalezc", "preve": "prev", "prevé": "prev", "prevee": "preve", "prevención": "prevencion", "prevenida": "preven", "prevenir": "preven", "prevenirse": "preven", "preventiva": "prevent", "preventivas": "prevent", "preventivo": "prevent", "prever": "prev", "preverificación": "preverif", "previa": "previ", "previamente": "previ", "previas": "previ", "previendo": "prev", "previéndolo": "prev", "previene": "previen", "previno": "previn", "previo": "previ", "previó": "prev", "previos": "previ", "previsible": "previs", "previsión": "prevision", "prevista": "previst", "previstas": "previst", "previsto": "previst", "previstos": "previst", "prevoisin": "prevoisin", "pri": "pri", "pría": "pri", "price": "pric", "prieto": "priet", "prigione": "prigion", "prigobierno": "prigobiern", "priísmo": "priism", "priísta": "priist", "priístas": "priist", "prima": "prim", "primaria": "primari", "primarias": "primari", "primario": "primari", "primarios": "primari", "primas": "prim", "primates": "primat", "primavera": "primaver", "prime": "prim", "primer": "prim", "primera": "primer", "primeramente": "primer", "primeras": "primer", "primeriza": "primeriz", "primero": "primer", "primeros": "primer", "primex": "primex", "primitivas": "primit", "primitivismo": "primitiv", "primitivo": "primit", "primitivos": "primit", "primo": "prim", "primogénita": "primogenit", "primogénito": "primogenit", "primordial": "primordial", "primordiales": "primordial", "princesa": "princes", "princesas": "princes", "princeton": "princeton", "principal": "principal", "principales": "principal", "principalmente": "principal", "príncipe": "princip", "príncipes": "princip", "principesco": "principesc", "principiante": "principi", "principio": "principi", "principios": "principi", "prioridad": "priorid", "prioridades": "prioridad", "prioritaria": "prioritari", "prioritario": "prioritari", "prioritarios": "prioritari", "prisa": "pris", "prisión": "prision", "prisionero": "prisioner", "prisioneros": "prisioner", "pristina": "pristin", "priva": "priv", "privacidad": "privac", "privada": "priv", "privadas": "priv", "privado": "priv", "privados": "priv", "privan": "priv", "privar": "priv", "privativa": "privat", "privativo": "privat", "privatización": "privatiz", "privatizaciones": "privatiz", "privatizado": "privatiz", "privatizar": "privatiz", "privilegiada": "privilegi", "privilegiado": "privilegi", "privilegio": "privilegi", "privilegios": "privilegi", "privó": "priv", "pro": "pro", "probabilidades": "probabil", "probable": "probabl", "probablemente": "probabl", "probables": "probabl", "probada": "prob", "probado": "prob", "probados": "prob", "probar": "prob", "probara": "prob", "probarle": "prob", "probarlo": "prob", "probaron": "prob", "probarse": "prob", "problema": "problem", "problemas": "problem", "problemática": "problemat", "problemático": "problemat", "probó": "prob", "probursa": "proburs", "proceda": "proced", "procede": "proced", "proceden": "proced", "procedencia": "procedent", "procedente": "procedent", "procedentes": "procedent", "proceder": "proced", "procederá": "proced", "procedimentales": "procedimental", "procedimiento": "proced", "procedimientos": "proced", "procéntrico": "procentr", "procentro": "procentr", "procesa": "proces", "procesaba": "proces", "procesada": "proces", "procesado": "proces", "procesador": "proces", "procesadora": "proces", "procesadores": "proces", "procesados": "proces", "procesal": "procesal", "procesales": "procesal", "procesamiento": "proces", "procesando": "proces", "proceso": "proces", "procesos": "proces", "proclama": "proclam", "proclamaciones": "proclam", "proclamado": "proclam", "proclamó": "proclam", "procreación": "procreacion", "procura": "procur", "procuración": "procur", "procurador": "procur", "procuradora": "procur", "procuraduria": "procuraduri", "procuraduría": "procuradur", "procuramos": "procur", "procurar": "procur", "procurarán": "procur", "procurarse": "procur", "procure": "procur", "procuro": "procur", "procuró": "procur", "prodigiosa": "prodigi", "producción": "produccion", "producciones": "produccion", "produce": "produc", "producen": "produc", "producían": "produc", "producida": "produc", "producidas": "produc", "producido": "produc", "producidos": "produc", "produciendo": "produc", "producir": "produc", "producirá": "produc", "producirían": "produc", "producirse": "produc", "productiva": "product", "productivas": "product", "productividad": "product", "productivo": "product", "productivos": "product", "producto": "product", "productor": "productor", "productora": "productor", "productoras": "productor", "productores": "productor", "productos": "product", "produjera": "produjer", "produjeron": "produjeron", "produjo": "produj", "produzca": "produzc", "produzcan": "produzc", "proeza": "proez", "profeco": "profec", "profesa": "profes", "profesan": "profes", "profesión": "profesion", "profesional": "profesional", "profesionales": "profesional", "profesionalismo": "profesional", "profesionalización": "profesionaliz", "profesionalmente": "profesional", "profesionista": "profesion", "profesionistas": "profesion", "profesor": "profesor", "profesora": "profesor", "profesorado": "profesor", "profesores": "profesor", "profeta": "profet", "profetas": "profet", "profr": "profr", "prófugo": "profug", "prófugos": "profug", "profunda": "profund", "profundamente": "profund", "profundas": "profund", "profundicen": "profundic", "profundidad": "profund", "profundidades": "profund", "profundizado": "profundiz", "profundizamos": "profundiz", "profundizar": "profundiz", "profundizará": "profundiz", "profundo": "profund", "profundos": "profund", "progenitora": "progenitor", "programa": "program", "programación": "program", "programada": "program", "programadas": "program", "programado": "program", "programados": "program", "programan": "program", "programando": "program", "programar": "program", "programas": "program", "programático": "programat", "programmer": "programm", "programó": "program", "progresando": "progres", "progresarán": "progres", "progresista": "progres", "progresivamente": "progres", "progresivo": "progres", "progreso": "progres", "progresos": "progres", "prohiba": "prohib", "prohiban": "prohib", "prohíbe": "prohib", "prohibía": "prohib", "prohibición": "prohibicion", "prohibiciones": "prohibicion", "prohibida": "prohib", "prohibidas": "prohib", "prohibido": "prohib", "prohibidos": "prohib", "prohibieron": "prohib", "prohibió": "prohib", "prohibir": "prohib", "proletaria": "proletari", "prolíder": "prolid", "proliferación": "prolifer", "proliferan": "prolifer", "prolijas": "prolij", "prologan": "prolog", "prólogo": "prolog", "prolongación": "prolong", "prolongada": "prolong", "prolongadas": "prolong", "prolongado": "prolong", "prolongan": "prolong", "prolongar": "prolong", "prolongarse": "prolong", "prolongó": "prolong", "promediar": "promedi", "promedio": "promedi", "promesa": "promes", "promesas": "promes", "prometan": "promet", "promete": "promet", "prometedor": "prometedor", "prometen": "promet", "prometerle": "promet", "prometerles": "promet", "prometidas": "promet", "prometido": "promet", "prometieron": "promet", "prometimos": "promet", "prometió": "promet", "prometo": "promet", "promex": "promex", "promiscuidad": "promiscu", "promiscuo": "promiscu", "promoción": "promocion", "promociona": "promocion", "promocionado": "promocion", "promocional": "promocional", "promocionales": "promocional", "promocionan": "promocion", "promocionando": "promocion", "promocionar": "promocion", "promocionarlo": "promocion", "promocionarse": "promocion", "promociones": "promocion", "promotor": "promotor", "promotora": "promotor", "promotoras": "promotor", "promotores": "promotor", "promovemos": "promov", "promover": "promov", "promoverá": "promov", "promoverán": "promov", "promovía": "promov", "promovida": "promov", "promovido": "promov", "promovidos": "promov", "promoviendo": "promov", "promovieron": "promov", "promovió": "promov", "prompt": "prompt", "promueva": "promuev", "promueve": "promuev", "promueven": "promuev", "promulgación": "promulg", "promulgada": "promulg", "promvido": "promv", "pronasol": "pronasol", "pronostica": "pronost", "pronosticada": "pronostic", "pronosticado": "pronostic", "pronosticaron": "pronostic", "pronostico": "pronost", "pronóstico": "pronost", "pronósticos": "pronost", "pronta": "pront", "pronto": "pront", "pronuciados": "pronuci", "pronuncia": "pronunci", "pronunciadas": "pronunci", "pronunciamiento": "pronunci", "pronunciamos": "pronunci", "pronunciar": "pronunci", "pronunciaron": "pronunci", "pronuncie": "pronunci", "pronunció": "pronunc", "propagación": "propag", "propaganda": "propagand", "propagandísticas": "propagandist", "propagaron": "propag", "propensas": "propens", "propia": "propi", "propiamente": "propi", "propias": "propi", "propiciado": "propici", "propiciando": "propici", "propiciar": "propici", "propiciará": "propici", "propiciarse": "propici", "propicien": "propici", "propicio": "propici", "propició": "propic", "propiedad": "propied", "propiedades": "propiedad", "propietaria": "propietari", "propietario": "propietari", "propietarios": "propietari", "propinándole": "propin", "propinarle": "propin", "propinaron": "propin", "propinas": "propin", "propinó": "propin", "propio": "propi", "propios": "propi", "propone": "propon", "proponemos": "propon", "proponen": "propon", "proponer": "propon", "proponerle": "propon", "proponernos": "propon", "proponga": "propong", "propongo": "propong", "proponían": "propon", "proporción": "proporcion", "proporciona": "proporcion", "proporcionaba": "proporcion", "proporcionada": "proporcion", "proporcionadas": "proporcion", "proporcionado": "proporcion", "proporcionados": "proporcion", "proporcional": "proporcional", "proporcionan": "proporcion", "proporcionando": "proporcion", "proporcionar": "proporcion", "proporcionará": "proporcion", "proporcionaría": "proporcion", "proporcionarle": "proporcion", "proporcionarles": "proporcion", "proporcione": "proporcion", "proporcionen": "proporcion", "proporciones": "proporcion", "proporcionó": "proporcion", "proposición": "proposicion", "propositivas": "proposit", "propósito": "proposit", "propósitos": "proposit", "propuesta": "propuest", "propuestas": "propuest", "propuesto": "propuest", "propuestos": "propuest", "propulsor": "propulsor", "propuse": "propus", "propusieron": "propus", "propuso": "propus", "prórroga": "prorrog", "prorrogada": "prorrog", "prorrumpe": "prorrump", "prosa": "pros", "prose": "pros", "proseguid": "prosegu", "proseguir": "prosegu", "proselitismo": "proselit", "prosiga": "prosig", "prosigue": "prosig", "prosiguió": "prosigu", "prosinecky": "prosinecky", "prospectiva": "prospect", "prospecto": "prospect", "prospectos": "prospect", "prosperado": "prosper", "prosperan": "prosper", "prospere": "prosper", "prosperidades": "prosper", "protagónicos": "protagon", "protagonismo": "protagon", "protagonista": "protagon", "protagonistas": "protagon", "protagonizado": "protagoniz", "protagonizados": "protagoniz", "protagonizará": "protagoniz", "protagonizaron": "protagoniz", "protagonizó": "protagoniz", "protección": "proteccion", "proteccionistas": "proteccion", "protective": "protectiv", "protecto": "protect", "protector": "protector", "protectora": "protector", "protectorado": "protector", "protectores": "protector", "protege": "proteg", "protegen": "proteg", "proteger": "proteg", "protegerán": "proteg", "protegerían": "proteg", "protegerse": "proteg", "protegía": "proteg", "protegido": "proteg", "protegidos": "proteg", "protegieron": "proteg", "protein": "protein", "proteína": "protein", "proteínas": "protein", "proteja": "protej", "protejan": "protej", "protesta": "protest", "protestada": "protest", "protestan": "protest", "protestantes": "protest", "protestar": "protest", "protestaron": "protest", "protestas": "protest", "proteste": "protest", "protesten": "protest", "protestó": "protest", "protocolo": "protocol", "prototipo": "prototip", "prototipos": "prototip", "provea": "prove", "provecho": "provech", "provee": "prove", "proveedor": "proveedor", "proveedores": "proveedor", "proveeduría": "proveedur", "proveer": "prov", "provenía": "proven", "proveniente": "provenient", "provenientes": "provenient", "proverbio": "proverbi", "proviene": "provien", "provienen": "provien", "provincia": "provinci", "provincial": "provincial", "provinciales": "provincial", "provinciana": "provincian", "provincias": "provinci", "provisional": "provisional", "provisionales": "provisional", "provisiones": "provision", "provoca": "provoc", "provocaba": "provoc", "provocación": "provoc", "provocado": "provoc", "provocador": "provoc", "provocados": "provoc", "provocan": "provoc", "provocando": "provoc", "provocar": "provoc", "provocará": "provoc", "provocaran": "provoc", "provocarán": "provoc", "provocaron": "provoc", "provocativa": "provoc", "provocó": "provoc", "provoque": "provoqu", "provoquen": "provoqu", "provotel": "provotel", "próxima": "proxim", "próximamente": "proxim", "próximas": "proxim", "próximo": "proxim", "próximos": "prox", "proyección": "proyeccion", "proyecta": "proyect", "proyectaba": "proyect", "proyectaban": "proyect", "proyectada": "proyect", "proyectado": "proyect", "proyectan": "proyect", "proyectar": "proyect", "proyectará": "proyect", "proyectarse": "proyect", "proyectil": "proyectil", "proyectito": "proyectit", "proyecto": "proyect", "proyectó": "proyect", "proyectos": "proyect", "prudente": "prudent", "prudentemente": "prudent", "prudentes": "prudent", "prueba": "prueb", "pruebas": "prueb", "pruebita": "pruebit", "pruneda": "pruned", "prusia": "prusi", "prusiana": "prusian", "prusianos": "prusian", "ps": "ps", "pseudolíderes": "pseudolider", "psicoanalista": "psicoanal", "psicoanalítica": "psicoanalit", "psicoanalítico": "psicoanalit", "psicóloga": "psicolog", "psicólogas": "psicolog", "psicología": "psicolog", "psicológica": "psicolog", "psicológicamente": "psicolog", "psicológicas": "psicolog", "psicológico": "psicolog", "psicológicos": "psicolog", "psicólogo": "psicolog", "psicoterapéutico": "psicoterapeut", "psicoterapia": "psicoterapi", "psicotrópicas": "psicotrop", "psicotrópicos": "psicotrop", "psique": "psiqu", "psiquiátrico": "psiquiatr", "psíquico": "psiquic", "psoriasis": "psoriasis", "pte": "pte", "púber": "pub", "public": "public", "publica": "public", "pública": "public", "publicación": "public", "publicaciones": "public", "publicada": "public", "publicadas": "public", "publicado": "public", "públicamente": "public", "publican": "public", "publicando": "public", "publicar": "public", "publicará": "public", "publicaron": "public", "públicas": "public", "publicidad": "public", "publicistas": "public", "publicitada": "publicit", "publicitaria": "publicitari", "publicitario": "publicitari", "público": "public", "publicó": "public", "públicos": "public", "publio": "publi", "publique": "publiqu", "publishing": "publishing", "puche": "puch", "pude": "pud", "pudiendo": "pud", "pudiera": "pud", "pudieran": "pud", "pudieron": "pud", "pudiese": "pud", "pudimos": "pud", "pudo": "pud", "pudor": "pudor", "pue": "pue", "puebla": "puebl", "pueblerina": "pueblerin", "pueblerino": "pueblerin", "pueblito": "pueblit", "pueblo": "puebl", "pueblos": "puebl", "pueda": "pued", "puedan": "pued", "puede": "pued", "pueden": "pued", "puedes": "pued", "puedo": "pued", "puente": "puent", "puentes": "puent", "puerta": "puert", "puertas": "puert", "puerto": "puert", "puertorriqueño": "puertorriqueñ", "puertos": "puert", "pues": "pues", "puesta": "puest", "puestas": "puest", "puesteros": "puester", "puesto": "puest", "puestos": "puest", "púgil": "pugil", "pugilismo": "pugil", "pugilista": "pugil", "pugilística": "pugilist", "pugnan": "pugn", "pugnando": "pugn", "pugnará": "pugn", "pugnaré": "pugn", "pugnas": "pugn", "puig": "puig", "pujante": "pujant", "pulcro": "pulcr", "pulgadas": "pulg", "pulgar": "pulg", "pulido": "pul", "pulimos": "pul", "pulir": "pul", "pulirlos": "pul", "pulitzer": "pulitz", "pulmonares": "pulmonar", "pulsar": "puls", "pulso": "puls", "pululan": "pulul", "pulverizado": "pulveriz", "pulverizadora": "pulveriz", "pulverizar": "pulveriz", "pulverizó": "pulveriz", "pum": "pum", "pumas": "pum", "pump": "pump", "puñado": "puñ", "puñaladas": "puñal", "puñales": "puñal", "punk": "punk", "puño": "puñ", "punongbayan": "punongbay", "punta": "punt", "puntadón": "puntadon", "puntapies": "puntapi", "puntas": "punt", "punteando": "punt", "punteó": "punte", "puntería": "punt", "punterías": "punt", "puntero": "punter", "punteros": "punter", "punto": "punt", "puntos": "punt", "puntual": "puntual", "puntualizaciones": "puntualiz", "puntualizó": "puntualiz", "puntualmente": "puntual", "punzo": "punz", "punzocortantes": "punzocort", "punzones": "punzon", "pupila": "pupil", "pupilas": "pupil", "pupilo": "pupil", "pura": "pur", "puramente": "pur", "puras": "pur", "pureza": "purez", "purga": "purg", "purgar": "purg", "puro": "pur", "purón": "puron", "puros": "pur", "purpúreos": "purpure", "puse": "pus", "pusiera": "pus", "pusiéramos": "pus", "pusieran": "pus", "pusieron": "pus", "pusiese": "pus", "pusilánime": "pusilanim", "pusimos": "pus", "puso": "pus", "putz": "putz", "pvc": "pvc", "pyramid": "pyram", "q": "q", "qabrija": "qabrij", "qi": "qi", "que": "que", "qué": "que", "quebec": "quebec", "quebradas": "quebr", "quebrado": "quebr", "quebrados": "quebr", "quebrantar": "quebrant", "quebrar": "quebr", "quebraron": "quebr", "quebró": "quebr", "queda": "qued", "quedaba": "qued", "quedaban": "qued", "quedado": "qued", "quedamos": "qued", "quedan": "qued", "quedando": "qued", "quedándoles": "qued", "quedar": "qued", "quedara": "qued", "quedará": "qued", "quedarán": "qued", "quedaría": "qued", "quedaríamos": "qued", "quedarnos": "qued", "quedaron": "qued", "quedarse": "qued", "quedas": "qued", "quede": "qued", "queden": "qued", "quedes": "qued", "quedó": "qued", "quehacer": "quehac", "quehaceres": "quehacer", "queja": "quej", "quejaba": "quej", "quejado": "quej", "quejamos": "quej", "quejan": "quej", "quejando": "quej", "quejándose": "quej", "quejaron": "quej", "quejas": "quej", "quejó": "quej", "quejoso": "quejos", "quejosos": "quejos", "quela": "quel", "quelonio": "queloni", "quemacocos": "quemacoc", "quemado": "quem", "quemaduras": "quemadur", "quemas": "quem", "quemó": "quem", "querella": "querell", "queremos": "quer", "querendas": "querend", "querer": "quer", "quererlo": "quer", "queretanos": "queretan", "queretaro": "queretar", "querétaro": "queretar", "querétaroi": "queretaroi", "quería": "quer", "queríamos": "quer", "querían": "quer", "queridas": "quer", "querido": "quer", "queriendo": "quer", "querrá": "querr", "querrían": "querr", "queso": "ques", "quesos": "ques", "quesque": "quesqu", "quezada": "quez", "quiebra": "quiebr", "quien": "qui", "quién": "quien", "quienes": "quien", "quiénes": "quien", "quiera": "quier", "quieran": "quier", "quieras": "quier", "quiere": "quier", "quieren": "quier", "quieres": "quier", "quiero": "quier", "quiet": "quiet", "quihubo": "quihub", "quijano": "quijan", "quijote": "quijot", "química": "quimic", "químicas": "quimic", "químico": "quimic", "quince": "quinc", "quinceañero": "quinceañer", "quincena": "quincen", "quincenales": "quincenal", "quinielas": "quiniel", "quinta": "quint", "quintana": "quintan", "quintanilla": "quintanill", "quinteto": "quintet", "quintetos": "quintet", "quinto": "quint", "quiroga": "quirog", "quiroz": "quiroz", "quirúrgica": "quirurg", "quirúrgicamente": "quirurg", "quise": "quis", "quisiera": "quis", "quisiéramos": "quis", "quisieran": "quis", "quisieron": "quis", "quiso": "quis", "quisquillosos": "quisquill", "quita": "quit", "quitaba": "quit", "quitadme": "quitadm", "quitado": "quit", "quitan": "quit", "quitando": "quit", "quitándole": "quit", "quitándolos": "quit", "quitándose": "quit", "quitar": "quit", "quitara": "quit", "quitarían": "quit", "quitarle": "quit", "quitarles": "quit", "quitarnos": "quit", "quitaron": "quit", "quitarse": "quit", "quite": "quit", "quiten": "quit", "quitó": "quit", "quitos": "quit", "quizá": "quiz", "quizás": "quizas", "quo": "quo", "qwarge": "qwarg", "r": "r", "rabaté": "rabat", "rabatté": "rabatt", "rabbit": "rabbit", "rabia": "rabi", "rabiar": "rabi", "rabino": "rabin", "rabo": "rab", "racha": "rach", "rachas": "rach", "racial": "racial", "raciales": "racial", "racimo": "racim", "racing": "racing", "raciocinios": "raciocini", "radar": "rad", "radares": "radar", "radiación": "radiacion", "radiaciones": "radiacion", "radiador": "radiador", "radial": "radial", "radiales": "radial", "radiante": "radiant", "radiantes": "radiant", "radica": "radic", "radicada": "radic", "radicado": "radic", "radical": "radical", "radicalismo": "radical", "radicalización": "radicaliz", "radicalmente": "radical", "radicar": "radic", "radio": "radi", "radioactiva": "radioact", "radioactividad": "radioact", "radioescucha": "radioescuch", "radiofónica": "radiofon", "radiofónico": "radiofon", "radiografías": "radiograf", "radiología": "radiolog", "radios": "radi", "radko": "radk", "rads": "rads", "rafael": "rafael", "ráfagas": "rafag", "rafi": "rafi", "raí": "rai", "raíces": "raic", "raiz": "raiz", "raíz": "raiz", "rajado": "raj", "rajko": "rajk", "rajmunel": "rajmunel", "rakenel": "rakenel", "ram": "ram", "rama": "ram", "ramana": "raman", "ramas": "ram", "ramificaciones": "ramif", "ramificado": "ramific", "ramírez": "ramirez", "ramiro": "ramir", "ramo": "ram", "ramon": "ramon", "ramón": "ramon", "ramos": "ram", "rampas": "ramp", "rams": "rams", "ranchera": "rancher", "rancheras": "rancher", "rancherita": "rancherit", "rancho": "ranch", "rangel": "rangel", "rango": "rang", "rangos": "rang", "rano": "ran", "ranqueadas": "ranqu", "ranulfo": "ranulf", "rap": "rap", "rapa": "rap", "rapamontes": "rapamont", "rapar": "rap", "raphael": "raphael", "rápida": "rap", "rápidamente": "rapid", "rápidas": "rap", "rapidez": "rapidez", "rápido": "rap", "rápidos": "rap", "rapport": "rapport", "raquet": "raquet", "raquítica": "raquit", "raquítico": "raquit", "rara": "rar", "raraku": "raraku", "raro": "rar", "raros": "rar", "rasca": "rasc", "rascacielos": "rascaciel", "rascón": "rascon", "rasero": "raser", "rasgaría": "rasg", "rasgos": "rasg", "rasmussen": "rasmuss", "raspar": "rasp", "rastrearlas": "rastr", "rastro": "rastr", "rateros": "rater", "ratificación": "ratif", "ratificado": "ratific", "ratificar": "ratific", "ratificará": "ratific", "ratifico": "ratif", "ratificó": "ratific", "rating": "rating", "ratito": "ratit", "rato": "rat", "raton": "raton", "ratón": "raton", "ratoncito": "ratoncit", "ratones": "raton", "ratos": "rat", "rauda": "raud", "raúl": "raul", "raulito": "raulit", "ravel": "ravel", "ravines": "ravin", "ray": "ray", "raya": "ray", "rayada": "ray", "rayaditos": "rayadit", "rayado": "ray", "rayados": "ray", "rayando": "ray", "rayas": "ray", "rayen": "ray", "raymonde": "raymond", "raymundo": "raymund", "rayo": "ray", "rayón": "rayon", "rayones": "rayon", "rayos": "ray", "raytheon": "raytheon", "raza": "raz", "razón": "razon", "razonable": "razon", "razonablemente": "razon", "razonables": "razon", "razonada": "razon", "razonamiento": "razon", "razonan": "razon", "razones": "razon", "razos": "raz", "re": "re", "reabierta": "reabiert", "reabra": "reabr", "reabrir": "reabr", "reabrirse": "reabr", "reacaudarían": "reacaud", "reacción": "reaccion", "reaccionar": "reaccion", "reaccionaria": "reaccionari", "reaccionarios": "reaccionari", "reacciones": "reaccion", "reaccionó": "reaccion", "reacomodados": "reacomod", "reactivar": "reactiv", "reactivarán": "reactiv", "reactor": "reactor", "readaptación": "readapt", "readecuación": "readecu", "reafirmar": "reafirm", "reafirmaron": "reafirm", "reafirmé": "reafirm", "reafirmó": "reafirm", "reagan": "reag", "reajustados": "reajust", "reajustarlas": "reajust", "reajuste": "reajust", "real": "real", "realce": "realc", "reales": "real", "realeza": "realez", "realice": "realic", "realicé": "realic", "realicen": "realic", "realidad": "realid", "realidades": "realidad", "realismo": "realism", "realista": "realist", "realistas": "realist", "realísticamente": "realist", "realiza": "realiz", "realizaba": "realiz", "realizaban": "realiz", "realización": "realiz", "realizada": "realiz", "realizadas": "realiz", "realizado": "realiz", "realizador": "realiz", "realizados": "realiz", "realizamos": "realiz", "realizan": "realiz", "realizando": "realiz", "realizar": "realiz", "realizara": "realiz", "realizará": "realiz", "realizarán": "realiz", "realizaremos": "realiz", "realizarían": "realiz", "realizarlo": "realiz", "realizarnos": "realiz", "realizaron": "realiz", "realizarse": "realiz", "realizó": "realiz", "realmente": "realment", "realziados": "realzi", "reanimar": "reanim", "reanudándose": "reanud", "reanudar": "reanud", "reanudarán": "reanud", "reanudó": "reanud", "reaparecer": "reaparec", "reaparecerá": "reaparec", "reapareció": "reaparec", "reaparezca": "reaparezc", "reaparición": "reaparicion", "reaprehensión": "reaprehension", "reavalúo": "reavalu", "rebajar": "rebaj", "rebaño": "rebañ", "rebasa": "rebas", "rebasada": "rebas", "rebasado": "rebas", "rebasados": "rebas", "rebasan": "rebas", "rebasar": "rebas", "rebasará": "rebas", "rebasaron": "rebas", "rebasen": "reb", "rebasó": "rebas", "rebeca": "rebec", "rebelar": "rebel", "rebelde": "rebeld", "rebeldes": "rebeld", "rebelión": "rebelion", "rebobinar": "rebobin", "rebolledo": "rebolled", "rebonato": "rebonat", "rebordados": "rebord", "rebotará": "rebot", "rebotarán": "rebot", "rebote": "rebot", "recaba": "rec", "recaban": "rec", "recado": "rec", "recados": "rec", "recalcar": "recalc", "recalcitrante": "recalcitr", "recalcó": "recalc", "recalibren": "recalibr", "recámara": "recam", "recapacite": "recapacit", "recapitalización": "recapitaliz", "recargaron": "recarg", "recargó": "recarg", "recarpetear": "recarpet", "recarpeteo": "recarpete", "recaudaban": "recaud", "recaudando": "recaud", "recaudar": "recaud", "recaudarían": "recaud", "recaudaron": "recaud", "recaude": "recaud", "recaudó": "recaud", "rece": "rec", "recelar": "recel", "recelos": "recel", "recepción": "recepcion", "receptor": "receptor", "receptores": "receptor", "receptoría": "receptor", "recesión": "recesion", "recesiones": "recesion", "recesivo": "reces", "receso": "reces", "receta": "recet", "rechace": "rechac", "rechaza": "rechaz", "rechazada": "rechaz", "rechazadas": "rechaz", "rechazamos": "rechaz", "rechazan": "rechaz", "rechazando": "rechaz", "rechazar": "rechaz", "rechazaron": "rechaz", "rechazo": "rechaz", "rechazó": "rechaz", "rechifla": "rechifl", "rechiflas": "rechifl", "rechinan": "rechin", "rechinar": "rechin", "reciba": "recib", "reciban": "recib", "recibe": "recib", "reciben": "recib", "recibía": "recib", "recibían": "recib", "recibida": "recib", "recibidas": "recib", "recibido": "recib", "recibidos": "recib", "recibiendo": "recib", "recibiera": "recib", "recibieron": "recib", "recibimiento": "recib", "recibimos": "recib", "recibió": "recib", "recibir": "recib", "recibirá": "recib", "recibirán": "recib", "recibiría": "recib", "recibirían": "recib", "recibirla": "recib", "recibirlas": "recib", "recibirlo": "recib", "recibirnos": "recib", "recibo": "recib", "recibos": "recib", "reciclaje": "reciclaj", "reciclamos": "recicl", "reciclando": "recicl", "reciclar": "recicl", "recién": "recien", "reciente": "recient", "recientemente": "recient", "recientes": "recient", "recientísima": "recientisim", "recinto": "recint", "recintos": "recint", "recipiente": "recipient", "recíprocas": "reciproc", "reciprocidad": "reciproc", "recíproco": "reciproc", "recirculado": "recircul", "recircularon": "recircul", "recitar": "recit", "recitarle": "recit", "recitó": "recit", "reclama": "reclam", "reclamaba": "reclam", "reclamación": "reclam", "reclamadas": "reclam", "reclamados": "reclam", "reclaman": "reclam", "reclamando": "reclam", "reclamar": "reclam", "reclamara": "reclam", "reclamarle": "reclam", "reclamarles": "reclam", "reclamaron": "reclam", "reclamen": "reclam", "reclamó": "reclam", "reclamos": "recl", "recluido": "reclu", "recluidos": "reclu", "reclusorio": "reclusori", "reclusorios": "reclusori", "reclutadas": "reclut", "recocido": "recoc", "recogen": "recog", "recoger": "recog", "recogerla": "recog", "recogerle": "recog", "recogida": "recog", "recogidas": "recog", "recogido": "recog", "recogidos": "recog", "recogieron": "recog", "recogió": "recog", "recolección": "recoleccion", "recolectando": "recolect", "recolector": "recolector", "recomedaciones": "recomed", "recomendación": "recomend", "recomendaciones": "recomend", "recomendadas": "recomend", "recomendado": "recomend", "recomendamos": "recomend", "recomendar": "recomend", "recomendara": "recomend", "recomendaron": "recomend", "recomendó": "recomend", "recomienda": "recomiend", "recomiendan": "recomiend", "recomiendo": "recom", "recompensa": "recompens", "recompra": "recompr", "reconciliacion": "reconciliacion", "reconciliación": "reconcili", "reconcilió": "reconcil", "reconducción": "reconduccion", "reconformación": "reconform", "reconfortante": "reconfort", "reconoce": "reconoc", "reconocemos": "reconoc", "reconocer": "reconoc", "reconocerlas": "reconoc", "reconocerlos": "reconoc", "reconocerse": "reconoc", "reconocía": "reconoc", "reconocida": "reconoc", "reconocidamente": "reconocid", "reconocidas": "reconoc", "reconocido": "reconoc", "reconocidos": "reconoc", "reconociendo": "reconoc", "reconocieron": "reconoc", "reconocimiento": "reconoc", "reconocimientos": "reconoc", "reconoció": "reconoc", "reconozca": "reconozc", "reconozcan": "reconozc", "reconozco": "reconozc", "reconsidere": "reconsider", "reconstrucción": "reconstruccion", "reconstruir": "reconstru", "reconstruirán": "reconstru", "reconversión": "reconversion", "recopa": "recop", "recopila": "recopil", "recopilación": "recopil", "recopiló": "recopil", "record": "record", "récord": "record", "recordaba": "record", "recordado": "record", "recordar": "record", "recordarán": "record", "recordemos": "record", "recordó": "record", "récords": "records", "recorre": "recorr", "recorrer": "recorr", "recorrida": "recorr", "recorrido": "recorr", "recorridos": "recorr", "recorrieron": "recorr", "recorrió": "recorr", "recortar": "recort", "recorte": "recort", "recortes": "recort", "recostado": "recost", "recostó": "recost", "recreación": "recreacion", "recreará": "recr", "recreativas": "recreat", "recreativo": "recreat", "recrimina": "recrimin", "recriminaba": "recrimin", "recriminados": "recrimin", "recronometraron": "recronometr", "recrudecer": "recrudec", "recrudecieron": "recrudec", "recrudeció": "recrudec", "recta": "rect", "rectas": "rect", "rectificada": "rectific", "rectificar": "rectific", "rectitud": "rectitud", "rector": "rector", "rectoría": "rector", "rectos": "rect", "recuerda": "recuerd", "recuerdan": "recuerd", "recuerde": "recuerd", "recuérdele": "recuerdel", "recuerden": "recuerd", "recuerdo": "recuerd", "recuerdos": "recuerd", "recupera": "recuper", "recuperable": "recuper", "recuperación": "recuper", "recuperado": "recuper", "recuperando": "recuper", "recuperar": "recuper", "recuperarla": "recuper", "recuperaron": "recuper", "recuperarse": "recuper", "recupere": "recuper", "recurre": "recurr", "recurrido": "recurr", "recurrieron": "recurr", "recurrir": "recurr", "recurrirá": "recurr", "recurso": "recurs", "recursos": "recurs", "red": "red", "redacción": "redaccion", "redactado": "redact", "redactaron": "redact", "redada": "red", "redefinir": "redefin", "redes": "red", "redescuentos": "redescuent", "redilas": "redil", "rediseñar": "rediseñ", "rediseños": "rediseñ", "redistribución": "redistribu", "reditúa": "reditu", "redituable": "reditu", "redobla": "redobl", "redoblado": "redobl", "redoblar": "redobl", "redonda": "redond", "redondear": "redond", "redondez": "redondez", "redondo": "redond", "rédord": "redord", "reduccion": "reduccion", "reducción": "reduccion", "reducciones": "reduccion", "reduce": "reduc", "reducen": "reduc", "reducía": "reduc", "reducida": "reduc", "reducidas": "reduc", "reducido": "reduc", "reduciendo": "reduc", "reducir": "reduc", "reducirá": "reduc", "reducirlas": "reduc", "reducirles": "reduc", "reducirse": "reduc", "redujeron": "redujeron", "redujo": "reduj", "redunde": "redund", "reduzca": "reduzc", "reduzcan": "reduzc", "reed": "reed", "reedición": "reedicion", "reeditará": "reedit", "reelección": "reeleccion", "reelecto": "reelect", "reelegido": "reeleg", "reelegirse": "reeleg", "reemplaza": "reemplaz", "reemplazable": "reemplaz", "reemplazado": "reemplaz", "reemplazados": "reemplaz", "reemplazar": "reemplaz", "reemplazo": "reemplaz", "reencarnación": "reencarn", "reencuentro": "reencuentr", "reestablecieron": "reestablec", "reestrenan": "reestren", "reestreno": "reestren", "reestructuración": "reestructur", "reestructurar": "reestructur", "reestructurará": "reestructur", "reestructure": "reestructur", "reestudiarse": "reestudi", "refacción": "refaccion", "refaccionarias": "refaccionari", "refaccionarios": "refaccionari", "refacciones": "refaccion", "referencia": "referent", "referencias": "referent", "referéndum": "referendum", "referente": "referent", "referentes": "referent", "réferi": "referi", "referí": "refer", "refería": "ref", "referían": "ref", "referidos": "refer", "referirme": "refer", "referirse": "refer", "refiera": "ref", "refiere": "refier", "refieren": "refier", "refiero": "refier", "refinación": "refin", "refinadora": "refin", "refineria": "refineri", "refinerías": "refin", "refiriéndose": "refir", "refirió": "refir", "reflectores": "reflector", "refleja": "reflej", "reflejaba": "reflej", "reflejaban": "reflej", "reflejada": "reflej", "reflejado": "reflej", "reflejan": "reflej", "reflejando": "reflej", "reflejar": "reflej", "reflejará": "reflej", "reflejo": "reflej", "reflejó": "reflej", "reflejos": "reflej", "reflexión": "reflexion", "reflexiona": "reflexion", "reflexionar": "reflexion", "reflexionen": "reflexion", "reflexiones": "reflexion", "reflexionó": "reflexion", "reforestarlas": "reforest", "reforma": "reform", "reformado": "reform", "reformar": "reform", "reformas": "reform", "reforme": "reform", "reformó": "reform", "reforzada": "reforz", "reforzadas": "reforz", "reforzado": "reforz", "reforzamiento": "reforz", "reforzando": "reforz", "reforzar": "reforz", "reforzarlas": "reforz", "reforzó": "reforz", "refractarias": "refractari", "refrán": "refran", "refranes": "refran", "refrenamiento": "refren", "refrendaron": "refrend", "refrendo": "refrend", "refrendó": "refrend", "refresca": "refresc", "refrescos": "refresc", "refriegas": "refrieg", "refuercen": "refuerc", "refuerzan": "refuerz", "refuerzo": "refuerz", "refuerzos": "refuerz", "refugiados": "refugi", "refugiar": "refugi", "refugiarse": "refugi", "refugio": "refugi", "refugió": "refug", "regadas": "reg", "regalado": "regal", "regalan": "regal", "regalando": "regal", "regalar": "regal", "regalarnos": "regal", "regalárselo": "regal", "regalárselos": "regal", "regalo": "regal", "regaló": "regal", "regalos": "regal", "regañadientes": "regañadient", "regañan": "regañ", "regaños": "regañ", "regente": "regent", "regia": "regi", "regido": "reg", "regidor": "regidor", "regidores": "regidor", "régimen": "regim", "regímenes": "regimen", "regina": "regin", "regio": "regi", "regiomontana": "regiomontan", "regiomontanas": "regiomontan", "regiomontano": "regiomontan", "regiomontanos": "regiomontan", "region": "region", "región": "region", "regional": "regional", "regionales": "regional", "regionalismo": "regional", "regiones": "region", "regios": "regi", "regiria": "regiri", "regirnos": "reg", "regirse": "reg", "registra": "registr", "registraba": "registr", "registrada": "registr", "registradas": "registr", "registrado": "registr", "registrador": "registr", "registrados": "registr", "registran": "registr", "registrandose": "registr", "registrándose": "registr", "registrar": "registr", "registrará": "registr", "registrarán": "registr", "registraron": "registr", "registrarse": "registr", "registre": "registr", "registren": "registr", "registro": "registr", "registró": "registr", "registros": "registr", "regla": "regl", "reglamentación": "reglament", "reglamentar": "reglament", "reglamentarios": "reglamentari", "reglamente": "regl", "reglamento": "reglament", "reglamentos": "reglament", "reglas": "regl", "regresa": "regres", "regresaba": "regres", "regresaban": "regres", "regresan": "regres", "regresando": "regres", "regresar": "regres", "regresara": "regres", "regresará": "regres", "regresaran": "regres", "regresarán": "regres", "regresaremos": "regres", "regresaría": "regres", "regresaron": "regres", "regresarse": "regres", "regresas": "regres", "regrese": "regres", "regreselo": "regresel", "regresen": "regres", "regreses": "regres", "regrésese": "regreses", "regresiva": "regres", "regreso": "regres", "regresó": "regres", "reguera": "reguer", "regula": "regul", "regulación": "regul", "regulaciones": "regul", "regulador": "regul", "reguladora": "regul", "reguladores": "regul", "regular": "regul", "regulares": "regular", "regularización": "regulariz", "regularizar": "regulariz", "regularizará": "regulariz", "regularizó": "regulariz", "regularmente": "regular", "regulatoria": "regulatori", "regule": "regul", "rehabilitación": "rehabilit", "rehabilitaciones": "rehabilit", "rehabilitado": "rehabilit", "rehacer": "rehac", "rehén": "rehen", "rehenes": "rehen", "rehiletes": "rehilet", "rehuir": "rehu", "rehusaban": "rehus", "rehusaron": "rehus", "reía": "rei", "reían": "rei", "reimplantó": "reimplant", "reina": "rein", "reinado": "rein", "reinante": "reinant", "reincidan": "reincid", "reincidencia": "reincident", "reincorporará": "reincorpor", "reineros": "reiner", "reingresó": "reingres", "reiniciar": "reinici", "reiniciaron": "reinici", "reino": "rein", "reinstalación": "reinstal", "reintegración": "reintegr", "reintegrar": "reintegr", "reintegrarme": "reintegr", "reinterpretar": "reinterpret", "reinvertirá": "reinvert", "reír": "reir", "reírnos": "reirn", "reírse": "reirs", "reiteración": "reiter", "reiteradamente": "reiter", "reiterará": "reiter", "reiteraron": "reiter", "reiteró": "reiter", "reivindicación": "reivind", "reivindicar": "reivindic", "reja": "rej", "rejas": "rej", "rejón": "rejon", "rejoneador": "rejon", "rejones": "rejon", "rejuvenecedores": "rejuvenecedor", "relación": "relacion", "relaciona": "relacion", "relacionada": "relacion", "relacionadas": "relacion", "relacionado": "relacion", "relacionados": "relacion", "relacionaron": "relacion", "relacionarse": "relacion", "relaciones": "relacion", "relacionó": "relacion", "relajado": "relaj", "relajarse": "relaj", "relamían": "relam", "relampaguee": "relampague", "relanzamiento": "relanz", "relata": "relat", "relatar": "relat", "relativa": "relat", "relativamente": "relat", "relativas": "relat", "relativo": "relat", "relativos": "relat", "relato": "relat", "relató": "relat", "relatos": "relat", "relegada": "releg", "relegado": "releg", "relegue": "releg", "relevado": "relev", "relevancia": "relev", "relevantes": "relev", "relevar": "relev", "relevista": "relev", "relevo": "relev", "relevó": "relev", "relevos": "relev", "relieve": "reliev", "relieves": "reliev", "religión": "religion", "religiones": "religion", "religiosa": "religi", "religiosamente": "religi", "religiosas": "religi", "religioso": "religi", "religiosos": "religi", "rellenadas": "rellen", "rellenarán": "rellen", "relleno": "rellen", "reloj": "reloj", "relojito": "relojit", "reluciente": "relucient", "remache": "remach", "remarcó": "remarc", "rematar": "remat", "remate": "remat", "remates": "remat", "rembolso": "rembols", "remediada": "remedi", "remediar": "remedi", "remedio": "remedi", "remedios": "remedi", "remineralizante": "remineraliz", "reminiscencia": "reminiscent", "remite": "remit", "remitente": "remitent", "remitidas": "remit", "remitidos": "remit", "remitieron": "remit", "remodelación": "remodel", "remodelada": "remodel", "remolques": "remolqu", "remontan": "remont", "rémoras": "remor", "remota": "remot", "remotamente": "remot", "remotas": "remot", "remoto": "remot", "remotos": "remot", "remover": "remov", "removibles": "remov", "removida": "remov", "removidos": "remov", "removió": "remov", "remueve": "remuev", "remuneración": "remuner", "renace": "renac", "renació": "renac", "renales": "renal", "renato": "renat", "rencillas": "rencill", "renconformación": "renconform", "rencor": "rencor", "rencores": "rencor", "rencorosos": "rencor", "rendía": "rend", "rendido": "rend", "rendimiento": "rendimient", "rendimientos": "rendimient", "rendir": "rend", "rendirse": "rend", "rendón": "rendon", "rené": "ren", "renee": "rene", "renegar": "reneg", "renegociación": "renegoci", "renegociado": "renegoci", "renegociar": "renegoci", "renglón": "renglon", "renglones": "renglon", "reñida": "reñ", "reñidas": "reñ", "renombradas": "renombr", "renombre": "renombr", "renovables": "renov", "renovación": "renov", "renovada": "renov", "renovado": "renov", "renovadores": "renov", "renovados": "renov", "renovando": "renov", "renovar": "renov", "renovarvía": "renovarv", "renta": "rent", "rentabilidad": "rentabil", "rentable": "rentabl", "rentables": "rentabl", "rentada": "rent", "rentadas": "rent", "rentados": "rent", "rentando": "rent", "rentarlas": "rent", "rentas": "rent", "rentería": "rent", "renueve": "renuev", "renuncia": "renunci", "renunciar": "renunci", "renunciara": "renunci", "renunciarán": "renunci", "renunciaría": "renunci", "renunciaron": "renunci", "renunció": "renunc", "reo": "reo", "reordenamiento": "reorden", "reordenar": "reorden", "reordene": "reorden", "reorganice": "reorganic", "reorganización": "reorganiz", "reorganizar": "reorganiz", "reorganizarnos": "reorganiz", "reorganizarse": "reorganiz", "reos": "reos", "reparación": "repar", "reparaciones": "repar", "reparadas": "repar", "reparando": "repar", "reparar": "repar", "repararlas": "repar", "reparos": "repar", "reparte": "repart", "repartido": "repart", "repartidor": "repartidor", "repartidos": "repart", "repartiendo": "repart", "repartieron": "repart", "repartimos": "repart", "repartir": "repart", "repartirán": "repart", "repartirlos": "repart", "repartirse": "repart", "reparto": "repart", "repatriación": "repatri", "repatriados": "repatri", "repavimentación": "repaviment", "repavimentar": "repaviment", "repente": "repent", "repentina": "repentin", "repentinamente": "repentin", "repercusión": "repercusion", "repercuten": "repercut", "repertorio": "repertori", "repetición": "repeticion", "repeticiones": "repeticion", "repetidamente": "repetid", "repetidas": "repet", "repetidísimas": "repetidisim", "repetidoras": "repetidor", "repetimos": "repet", "repetir": "repet", "repetira": "repetir", "repetirá": "repet", "repetirán": "repet", "repetiría": "repet", "repetirse": "repet", "repita": "repit", "repitan": "repit", "repite": "repit", "repitiéndome": "repit", "repitió": "repit", "repito": "repit", "repleta": "replet", "repleto": "replet", "replica": "replic", "réplica": "replic", "replicar": "replic", "replicarle": "replic", "réplicas": "replic", "repollos": "repoll", "reponen": "repon", "reponer": "repon", "reporta": "report", "reportadas": "report", "reportado": "report", "reportados": "report", "reportaje": "reportaj", "reportan": "report", "reportar": "report", "reportara": "report", "reportarán": "report", "reportaron": "report", "reporte": "report", "reportera": "reporter", "reportero": "reporter", "reporteros": "reporter", "reportes": "report", "repórtese": "reportes", "reportó": "report", "reportos": "report", "reposo": "repos", "reprendido": "reprend", "represalias": "represali", "representa": "represent", "representaba": "represent", "representación": "represent", "representada": "represent", "representadas": "represent", "representado": "represent", "representan": "represent", "representando": "represent", "representante": "represent", "representantes": "represent", "representar": "represent", "representará": "represent", "representarán": "represent", "representaría": "represent", "representativas": "represent", "representatividad": "representat", "representativo": "represent", "representativos": "represent", "representen": "represent", "representó": "represent", "represión": "represion", "represivo": "repres", "represivos": "repres", "represores": "represor", "reprimir": "reprim", "reprobadas": "reprob", "reprobado": "reprob", "reprobaron": "reprob", "reprobó": "reprob", "reprocha": "reproch", "reproches": "reproch", "reprochó": "reproch", "reproducción": "reproduccion", "reproducciones": "reproduccion", "reproduce": "reproduc", "reproducen": "reproduc", "reproducir": "reproduc", "reproducirse": "reproduc", "reproductor": "reproductor", "reprodujo": "reproduj", "reproduzca": "reproduzc", "reprueba": "reprueb", "reprueban": "reprueb", "reptiles": "reptil", "república": "republ", "republicanas": "republican", "republicano": "republican", "repúblicanos": "republican", "repúblicas": "republ", "repudiando": "repudi", "repudio": "repudi", "repuesto": "repuest", "repugnancia": "repugn", "repuntando": "repunt", "repunte": "repunt", "reputación": "reput", "requería": "requ", "requerida": "requer", "requerido": "requer", "requeridos": "requer", "requerimiento": "requer", "requerimientos": "requer", "requerimos": "requer", "requerirá": "requer", "requerirán": "requer", "requiera": "requ", "requieran": "requ", "requiere": "requier", "requieren": "requier", "requinto": "requint", "requirieran": "requir", "requirió": "requir", "requisito": "requisit", "requisitos": "requisit", "resalta": "resalt", "resaltando": "resalt", "resaltar": "resalt", "resaltaron": "resalt", "resalte": "resalt", "resaltó": "resalt", "resarcirán": "resarc", "resbaladero": "resbalader", "resbaladizo": "resbaladiz", "resbalosas": "resbal", "rescata": "rescat", "rescatable": "rescat", "rescatada": "rescat", "rescatadas": "rescat", "rescatado": "rescat", "rescatados": "rescat", "rescatar": "rescat", "rescate": "rescat", "rescates": "rescat", "rescindirles": "rescind", "rescindirlo": "rescind", "rescindirse": "rescind", "research": "research", "reseca": "resec", "reseña": "reseñ", "reseñas": "reseñ", "reséndez": "resendez", "resentidos": "resent", "resentimos": "resent", "reserva": "reserv", "reservaciones": "reserv", "reservadas": "reserv", "reservado": "reserv", "reservados": "reserv", "reservar": "reserv", "reservas": "reserv", "resguardado": "resguard", "resguardando": "resguard", "resguardarlo": "resguard", "reside": "resid", "residen": "resid", "residencia": "resident", "residencial": "residencial", "residenciales": "residencial", "residencias": "resident", "residente": "resident", "residentes": "resident", "residió": "resid", "residuales": "residual", "residuos": "residu", "resiente": "resient", "resignación": "resign", "resignada": "resign", "resignado": "resign", "resigno": "resign", "resillas": "resill", "resintiendo": "resint", "resintiera": "resint", "resiste": "res", "resistencia": "resistent", "resistente": "resistent", "resistentes": "resistent", "resistidas": "resist", "resistiera": "resist", "resistió": "resist", "resolucion": "resolucion", "resolución": "resolu", "resoluciones": "resolu", "resolver": "resolv", "resolverá": "resolv", "resolverla": "resolv", "resolverlas": "resolv", "resolverlo": "resolv", "resolverse": "resolv", "resolviendo": "resolv", "resolviéndole": "resolv", "resolvieron": "resolv", "resolvió": "resolv", "resonante": "reson", "resortes": "resort", "respalda": "respald", "respaldaba": "respald", "respaldada": "respald", "respaldará": "respald", "respaldo": "respald", "respaldó": "respald", "respaldos": "respald", "respecta": "respect", "respectiva": "respect", "respectivamente": "respect", "respectivas": "respect", "respectivo": "respect", "respectivos": "respect", "respecto": "respect", "respeta": "respet", "respetaban": "respet", "respetable": "respet", "respetado": "respet", "respetados": "respet", "respetamos": "respet", "respetan": "respet", "respetando": "respet", "respetar": "respet", "respetará": "respet", "respetaron": "respet", "respetarse": "respet", "respete": "respet", "respeten": "respet", "respeto": "respet", "respetuosa": "respetu", "respetuoso": "respetu", "respiratoria": "respiratori", "respiratorias": "respiratori", "respiratorio": "respiratori", "respiro": "respir", "resplandecientes": "resplandecient", "resplandor": "resplandor", "responda": "respond", "respondan": "respond", "responde": "respond", "responden": "respond", "responder": "respond", "responderá": "respond", "responderle": "respond", "respondí": "respond", "respondido": "respond", "respondiera": "respond", "respondió": "respond", "responsabilice": "responsabilic", "responsabilidad": "respons", "responsabilidades": "respons", "responsabilizaba": "responsabiliz", "responsabilizarlo": "responsabiliz", "responsabilizaron": "responsabiliz", "responsabilizó": "responsabiliz", "responsable": "respons", "responsables": "respons", "respuesta": "respuest", "respuestas": "respuest", "resquicio": "resquici", "resta": "rest", "restablecer": "restablec", "restablecerse": "restablec", "restablezcan": "restablezc", "restan": "rest", "restante": "restant", "restantes": "restant", "restar": "rest", "restarle": "rest", "restas": "rest", "restauración": "restaur", "restaurant": "restaurant", "restaurante": "restaur", "restaurantera": "restauranter", "restaurantero": "restauranter", "restauranteros": "restauranter", "restaurantes": "restaur", "restaurarle": "restaur", "restitución": "restitu", "restituir": "restitu", "resto": "rest", "restos": "rest", "restregárselo": "restreg", "restricción": "restriccion", "restricciones": "restriccion", "restrictiva": "restrict", "restructuración": "restructur", "resuelta": "resuelt", "resuelto": "resuelt", "resueltos": "resuelt", "resuelva": "resuelv", "resuelve": "resuelv", "resuelven": "resuelv", "resulta": "result", "resultaba": "result", "resultado": "result", "resultados": "result", "resultan": "result", "resultando": "result", "resultante": "result", "resultar": "result", "resultara": "result", "resultaran": "result", "resultaría": "result", "resultaron": "result", "resulte": "result", "resulten": "result", "resulto": "result", "resultó": "result", "resumen": "resum", "resumido": "resum", "resumir": "resum", "resumirse": "resum", "resurgente": "resurgent", "resurgir": "resurg", "resurja": "resurj", "resurrección": "resurreccion", "retador": "retador", "retardatario": "retardatari", "retardo": "retard", "retazos": "retaz", "retener": "reten", "retengan": "reteng", "retenía": "reten", "retenido": "reten", "reticencia": "reticent", "reticencias": "reticent", "retiene": "retien", "retinitis": "retinitis", "retira": "retir", "retiraba": "retir", "retirada": "retir", "retirado": "retir", "retirados": "retir", "retiramos": "retir", "retirando": "retir", "retirándose": "retir", "retirar": "retir", "retirara": "retir", "retirará": "retir", "retirarán": "retir", "retiraré": "retir", "retiraría": "retir", "retirarlas": "retir", "retiraron": "retir", "retirarse": "retir", "retire": "retir", "retiro": "retir", "retiró": "retir", "retiros": "retir", "reto": "ret", "retó": "ret", "retomado": "retom", "retomados": "retom", "retomando": "retom", "retomar": "retom", "retomarán": "retom", "retomarla": "retom", "retomé": "retom", "retomo": "retom", "retomó": "retom", "retorcerse": "retorc", "retorcidos": "retorc", "retornados": "retorn", "retornaría": "retorn", "retorno": "retorn", "retornó": "retorn", "retos": "ret", "retracta": "retract", "retractado": "retract", "retractarán": "retract", "retractaré": "retract", "retrasada": "retras", "retrasado": "retras", "retrasan": "retras", "retrasando": "retras", "retrasar": "retras", "retrasará": "retras", "retrase": "retr", "retrasen": "retr", "retraso": "retras", "retrasó": "retras", "retrasos": "retras", "retratado": "retrat", "retratar": "retrat", "retratará": "retrat", "retrataron": "retrat", "retratarse": "retrat", "retrato": "retrat", "retrató": "retrat", "retratos": "retrat", "retribuido": "retribu", "retribuye": "retribu", "retroactiva": "retroact", "retroactivo": "retroact", "retroalimentan": "retroaliment", "retroceder": "retroced", "retrocedido": "retroced", "retroceso": "retroces", "retrospección": "retrospeccion", "retrospectiva": "retrospect", "retrotraerlas": "retrotr", "retrovisor": "retrovisor", "retuvieron": "retuv", "retuvo": "retuv", "reubicación": "reubic", "reubicadas": "reubic", "reubicado": "reubic", "reubicados": "reubic", "reubicar": "reubic", "reubicarlos": "reubic", "reubicarse": "reubic", "reúna": "reun", "reúnan": "reun", "reune": "reun", "reúne": "reun", "reunen": "reun", "reúnen": "reun", "reunía": "reun", "reunían": "reun", "reunido": "reun", "reunidos": "reun", "reunieron": "reun", "reunió": "reun", "reunion": "reunion", "reunión": "reunion", "reuniones": "reunion", "reunir": "reun", "reunirá": "reun", "reunirán": "reun", "reunirnos": "reun", "reunirse": "reun", "reuter": "reut", "reuters": "reuters", "reutilización": "reutiliz", "revaloración": "revalor", "revalorarlo": "revalor", "revaluándose": "revalu", "revancha": "revanch", "revela": "revel", "revelaba": "revel", "revelaban": "revel", "revelación": "revel", "revelada": "revel", "reveladas": "revel", "revelado": "revel", "revelador": "revel", "reveladora": "revel", "revelan": "revel", "revelarla": "revel", "revelaron": "revel", "reveló": "revel", "revendedores": "revendedor", "reventa": "revent", "reventado": "revent", "reventadores": "revent", "reventó": "revent", "reventón": "reventon", "reverencia": "reverent", "reverencial": "reverencial", "reverenciales": "reverencial", "reverenciarlo": "reverenci", "reverendo": "reverend", "reversa": "revers", "revertido": "revert", "revertir": "revert", "reveses": "reves", "revierten": "reviert", "revillagigedo": "revillagiged", "revisado": "revis", "revisados": "revis", "revisan": "revis", "revisando": "revis", "revisar": "revis", "revisará": "revis", "revisaran": "revis", "revisarán": "revis", "revisarla": "revis", "revisarlos": "revis", "revisaron": "revis", "revisarse": "revis", "revise": "revis", "revisen": "revis", "revisión": "revision", "revisiones": "revision", "reviso": "revis", "revista": "revist", "revistas": "revist", "revitalizar": "revitaliz", "revivir": "reviv", "revocar": "revoc", "revocó": "revoc", "revolcón": "revolcon", "revolución": "revolu", "revolucionaban": "revolucion", "revolucionar": "revolucion", "revolucionaria": "revolucionari", "revolucionarias": "revolucionari", "revolucionario": "revolucionari", "revolucionarios": "revolucionari", "revoluciones": "revolu", "revolucionó": "revolucion", "revolufia": "revolufi", "revolver": "revolv", "revólver": "revolv", "revólveres": "revolver", "revolvió": "revolv", "revuelo": "revuel", "revuelta": "revuelt", "revuelto": "revuelt", "revuelva": "revuelv", "revuelvo": "revuelv", "rey": "rey", "reyes": "rey", "reyhlander": "reyhland", "reyna": "reyn", "reynaldo": "reynald", "reynard": "reynard", "reynolds": "reynolds", "reynosa": "reynos", "reynoso": "reynos", "reza": "rez", "rezagada": "rezag", "rezago": "rezag", "rezagos": "rezag", "rezará": "rez", "rezaremos": "rez", "rezarlo": "rez", "rezarte": "rezart", "rezo": "rez", "rezonificación": "rezonif", "rhon": "rhon", "riachuelo": "riachuel", "riar": "riar", "riazor": "riazor", "rib": "rib", "ribadeneyra": "ribadeneyr", "ribbentrop": "ribbentrop", "riberas": "riber", "ribereña": "ribereñ", "ribereños": "ribereñ", "rica": "ric", "ricacho": "ricach", "ricachón": "ricachon", "ricardo": "ricard", "ricas": "ric", "richard": "richard", "richards": "richards", "richardson": "richardson", "ricky": "ricky", "rico": "ric", "ricos": "ric", "ridiculiza": "ridiculiz", "ridiculización": "ridiculiz", "ridiculizado": "ridiculiz", "ridiculizan": "ridiculiz", "ríe": "rie", "riegas": "rieg", "riego": "rieg", "rieles": "riel", "riendas": "riend", "rieron": "rieron", "ries": "ries", "riesgo": "riesg", "riesgos": "riesg", "riesgosa": "riesgos", "riesgosísimo": "riesgosisim", "rifa": "rif", "rifadas": "rif", "rifar": "rif", "rifas": "rif", "rifkin": "rifkin", "rige": "rig", "rigen": "rig", "rígidas": "rig", "rigidez": "rigidez", "rígidos": "rig", "rigoberta": "rigobert", "rigor": "rigor", "rigurosa": "rigur", "riguroso": "rigur", "rigurosos": "rigur", "rijan": "rij", "rime": "rim", "riña": "riñ", "riñas": "riñ", "rincón": "rincon", "rinconada": "rincon", "rinden": "rind", "rindiendo": "rind", "rindiera": "rind", "rindieran": "rind", "rindieron": "rind", "rindió": "rind", "riñen": "riñ", "rines": "rin", "ring": "ring", "rinker": "rink", "riñones": "riñon", "rio": "rio", "río": "rio", "rió": "rio", "riojas": "rioj", "ríos": "rios", "rippey": "rippey", "riqueza": "riquez", "riquezas": "riquez", "risa": "ris", "risas": "ris", "risca": "risc", "ríspido": "risp", "ristra": "ristr", "ristre": "ristr", "rita": "rit", "ritchie": "ritchi", "riteaid": "rite", "rítmica": "ritmic", "rítmico": "ritmic", "ritmo": "ritm", "ritmos": "ritm", "rito": "rit", "ritual": "ritual", "riva": "riv", "rivadeneira": "rivadeneir", "rival": "rival", "rivales": "rival", "rivapalacio": "rivapalaci", "river": "riv", "rivera": "river", "rivero": "river", "riverside": "riversid", "riviello": "riviell", "rizado": "riz", "rizzo": "rizz", "rkc": "rkc", "rke": "rke", "rkl": "rkl", "road": "road", "robada": "rob", "robadas": "rob", "robado": "rob", "robados": "rob", "roban": "rob", "robar": "rob", "robarle": "rob", "robe": "rob", "roben": "rob", "robert": "robert", "roberta": "robert", "roberto": "robert", "roberts": "roberts", "roble": "robl", "robledo": "robled", "robles": "robl", "robo": "rob", "robó": "rob", "robocops": "robocops", "robos": "rob", "robot": "robot", "robotizar": "robotiz", "robots": "robots", "robusta": "robust", "robustecer": "robustec", "rocaetti": "rocaetti", "rocard": "rocard", "rocas": "roc", "roce": "roc", "roces": "roc", "rocha": "roch", "roche": "roch", "rochester": "rochest", "rocío": "roci", "rock": "rock", "rockanroleros": "rockanroler", "rockeras": "rocker", "rockport": "rockport", "rocoso": "rocos", "rocosos": "rocos", "rod": "rod", "rodado": "rod", "rodaje": "rodaj", "rodal": "rodal", "rodarse": "rod", "rodarte": "rodart", "rodea": "rode", "rodeaba": "rod", "rodeado": "rod", "rodeados": "rod", "rodean": "rod", "rodear": "rod", "rodeará": "rod", "rodearon": "rod", "rodearse": "rod", "rodela": "rodel", "rodeo": "rode", "rodeos": "rode", "rodilla": "rodill", "rodillas": "rodill", "rodillera": "rodiller", "rodion": "rodion", "rodisonato": "rodisonat", "rodney": "rodney", "rodolfo": "rodolf", "rodrigo": "rodrig", "rodríguez": "rodriguez", "roedor": "roedor", "roedores": "roedor", "roel": "roel", "rogelio": "rogeli", "roger": "rog", "rogers": "rogers", "rogó": "rog", "rogozinski": "rogozinski", "roja": "roj", "rojas": "roj", "rojiblanca": "rojiblanc", "rojinegra": "rojinegr", "rojo": "roj", "rojos": "roj", "rol": "rol", "rolada": "rol", "rolando": "rol", "roll": "roll", "rolling": "rolling", "rollo": "roll", "rolls": "rolls", "rom": "rom", "roma": "rom", "román": "roman", "romana": "roman", "romance": "romanc", "romances": "romanc", "romano": "roman", "románticas": "romant", "romanticismo": "romantic", "romanticonas": "romanticon", "románticos": "romant", "romeo": "rome", "romero": "romer", "romilio": "romili", "romo": "rom", "rompe": "romp", "rompebrechas": "rompebrech", "rompen": "romp", "romper": "romp", "romperá": "romp", "romperian": "romperi", "romperles": "romp", "romperlo": "romp", "rompevientos": "rompevient", "rompiendo": "romp", "rompieron": "romp", "rompimiento": "rompimient", "rompió": "romp", "rómulo": "romul", "ronald": "ronald", "roncaba": "ronc", "ronda": "rond", "rondallas": "rondall", "rondando": "rond", "ronzón": "ronzon", "roo": "roo", "roosevelt": "roosevelt", "ropa": "rop", "ropajes": "ropaj", "roque": "roqu", "rosa": "ros", "rosales": "rosal", "rosalinda": "rosalind", "rosario": "rosari", "rosarios": "rosari", "rosas": "ros", "rosaura": "rosaur", "rosellini": "rosellini", "rosencof": "rosencof", "rosendo": "rosend", "roses": "ros", "rosibel": "rosibel", "rosilí": "rosil", "ross": "ross", "rossela": "rossel", "rossi": "rossi", "rossin": "rossin", "rossini": "rossini", "roster": "rost", "rosto": "rost", "rostro": "rostr", "rostros": "rostr", "rota": "rot", "rotación": "rotacion", "rotario": "rotari", "rotarios": "rotari", "rotativo": "rotat", "rotativos": "rotat", "rotemberg": "rotemberg", "roto": "rot", "rotonda": "rotond", "rotter": "rott", "rotuliano": "rotulian", "rotundamente": "rotund", "rotura": "rotur", "round": "round", "rounds": "rounds", "rousseau": "rousseau", "roy": "roy", "royce": "royc", "rsm": "rsm", "rsqb": "rsqb", "ru": "ru", "ruandeses": "ruandes", "rubén": "ruben", "rubí": "rub", "rubia": "rubi", "rubiales": "rubial", "rubiano": "rubian", "rubio": "rubi", "rubor": "rubor", "ruborizándose": "ruboriz", "rubro": "rubr", "rubros": "rubr", "ruco": "ruc", "rudos": "rud", "rudyard": "rudyard", "rueda": "rued", "ruedas": "rued", "ruedo": "rued", "ruega": "rueg", "ruego": "rueg", "ruelas": "ruel", "ruffo": "ruff", "rufino": "rufin", "ruge": "rug", "ruggeri": "ruggeri", "rugido": "rug", "rugir": "rug", "ruido": "ruid", "ruidosas": "ruid", "ruina": "ruin", "ruinas": "ruin", "ruindades": "ruindad", "ruisz": "ruisz", "ruiz": "ruiz", "ruíz": "ruiz", "rul": "rul", "rumania": "rumani", "rumanos": "ruman", "rumberas": "rumber", "rumbo": "rumb", "rumor": "rumor", "rumores": "rumor", "ruperto": "rupert", "ruptura": "ruptur", "rural": "rural", "rurales": "rural", "rusa": "rus", "rusas": "rus", "rusia": "rusi", "ruslan": "rusl", "ruso": "rus", "rusos": "rus", "rústica": "rustic", "rústico": "rustic", "rústicos": "rustic", "ruta": "rut", "rutas": "rut", "ruteador": "ruteador", "rutina": "rutin", "rutinario": "rutinari", "rutinas": "rutin", "rutskoi": "rutskoi", "ruvalcaba": "ruvalc", "ruy": "ruy", "s": "s", "sábado": "sab", "sábados": "sab", "sabastian": "sabasti", "sabatino": "sabatin", "sabe": "sab", "sabedores": "sabedor", "sabemos": "sab", "saben": "sab", "saber": "sab", "saberlo": "sab", "saberse": "sab", "sabes": "sab", "sabia": "sabi", "sabía": "sab", "sabíamos": "sab", "sabían": "sab", "sabidas": "sab", "sabido": "sab", "sabiduría": "sabidur", "sabiendas": "sabiend", "sabina": "sabin", "sabinas": "sabin", "sabino": "sabin", "sabio": "sabi", "sabios": "sabi", "sabor": "sabor", "saboreando": "sabor", "sabores": "sabor", "saborit": "saborit", "saborizantes": "saboriz", "sabotaje": "sabotaj", "sabrá": "sabr", "sabrán": "sabran", "sabremos": "sabr", "sabrosa": "sabros", "sabroso": "sabros", "saca": "sac", "sacada": "sac", "sacadas": "sac", "sacado": "sac", "sacamos": "sac", "sacando": "sac", "sacar": "sac", "sacara": "sac", "sacaran": "sac", "sacaremos": "sac", "sacarla": "sac", "sacarle": "sac", "sacarles": "sac", "sacarlo": "sac", "sacarme": "sac", "sacaron": "sac", "sacerdocio": "sacerdoci", "sacerdotal": "sacerdotal", "sacerdotales": "sacerdotal", "sacerdote": "sacerdot", "sacerdotes": "sacerdot", "saco": "sac", "sacó": "sac", "sacos": "sac", "sacra": "sacr", "sacramento": "sacrament", "sacrificado": "sacrific", "sacrificar": "sacrific", "sacrificarlo": "sacrific", "sacrificio": "sacrifici", "sacrificios": "sacrifici", "sacrificó": "sacrific", "sacristán": "sacristan", "sacristía": "sacrist", "sacro": "sacr", "sacs": "sacs", "sacudida": "sacud", "sacudimiento": "sacud", "sada": "sad", "sadam": "sadam", "sadomasoquistas": "sadomasoqu", "saenz": "saenz", "sáenz": "saenz", "saeta": "saet", "sagrada": "sagr", "sagradas": "sagr", "sagrado": "sagr", "sahuayo": "sahuay", "sain": "sain", "saint": "saint", "sainz": "sainz", "sáinz": "sainz", "saínz": "sainz", "sal": "sal", "sala": "sal", "salacio": "salaci", "salada": "sal", "salais": "salais", "salamandria": "salamandri", "salarial": "salarial", "salariales": "salarial", "salario": "salari", "salarios": "salari", "salas": "sal", "salaz": "salaz", "salazar": "salaz", "saldaña": "saldañ", "saldar": "sald", "saldarán": "sald", "saldívar": "saldiv", "saldo": "sald", "saldos": "sald", "saldrá": "saldr", "saldrán": "saldran", "saldría": "saldr", "sale": "sal", "salen": "sal", "salesianas": "salesian", "salga": "salg", "salgado": "salg", "salgamos": "salg", "salgan": "salg", "salgo": "salg", "salí": "sal", "salía": "sal", "salían": "sal", "salida": "sal", "salidas": "sal", "salido": "sal", "saliendo": "sal", "saliente": "salient", "saliera": "sal", "salieran": "sal", "salieron": "sal", "salimos": "sal", "salinas": "salin", "salinismo": "salin", "salinista": "salin", "salió": "sal", "salir": "sal", "salirse": "sal", "salmón": "salmon", "salmones": "salmon", "salmos": "salm", "salomon": "salomon", "salomón": "salomon", "salomónica": "salomon", "salomónico": "salomon", "salón": "salon", "salones": "salon", "salpicadas": "salpic", "salsa": "sals", "salsas": "sals", "salta": "salt", "saltándose": "salt", "saltaron": "salt", "salte": "salt", "saltillense": "saltillens", "saltillenses": "saltillens", "saltillo": "saltill", "salto": "salt", "saltó": "salt", "salubridad": "salubr", "salud": "salud", "saludable": "salud", "saludables": "salud", "saludando": "salud", "saludar": "salud", "saludarle": "salud", "saludarlo": "salud", "saludaron": "salud", "saludemos": "salud", "saludo": "salud", "saludó": "salud", "saludos": "salud", "salutación": "salut", "salva": "salv", "salvación": "salvacion", "salvado": "salv", "salvador": "salvador", "salvadoreña": "salvadoreñ", "salvadoreños": "salvadoreñ", "salvados": "salv", "salvaguardas": "salvaguard", "salvaje": "salvaj", "salvamentos": "salvament", "salvar": "salv", "salvara": "salv", "salvarle": "salv", "salvarse": "salv", "salve": "salv", "salvedades": "salvedad", "salvia": "salvi", "salvo": "salv", "salvó": "salv", "sam": "sam", "samaniego": "samanieg", "samoa": "samo", "sampetrinas": "sampetrin", "sampetrino": "sampetrin", "samuel": "samuel", "samuelito": "samuelit", "san": "san", "sana": "san", "sanchez": "sanchez", "sánchez": "sanchez", "sancho": "sanch", "sanción": "sancion", "sancionados": "sancion", "sancionan": "sancion", "sancionaría": "sancion", "sancionarlo": "sancion", "sancionarlos": "sancion", "sancionaron": "sancion", "sanciones": "sancion", "sandalio": "sandali", "sandinista": "sandin", "sandoval": "sandoval", "sandra": "sandr", "sandrine": "sandrin", "sandwich": "sandwich", "saneado": "san", "saneamiento": "saneamient", "sanear": "san", "saneara": "san", "sanearlas": "san", "sangrados": "sangr", "sangrar": "sangr", "sangre": "sangr", "sangría": "sangr", "sangrientas": "sangrient", "sangriento": "sangrient", "sanguinario": "sanguinari", "sanidad": "sanid", "sanidades": "sanidad", "sanitaria": "sanitari", "sanitario": "sanitari", "sanitarios": "sanitari", "sanjuana": "sanjuan", "sano": "san", "sansores": "sansor", "santa": "sant", "santana": "santan", "santiago": "santiag", "santidad": "santid", "santiesteban": "santiesteb", "santillán": "santillan", "santísimo": "santisim", "santiso": "santis", "santistas": "santist", "santo": "sant", "santos": "sant", "santuario": "santuari", "santurce": "santurc", "sao": "sao", "sapién": "sapien", "sapitos": "sapit", "sapo": "sap", "saqué": "saqu", "saqueadas": "saqu", "saquear": "saqu", "saqueo": "saque", "saqueos": "saque", "sar": "sar", "sarah": "sarah", "sarajevo": "sarajev", "sarcástica": "sarcast", "sargentos": "sargent", "sarh": "sarh", "sartenes": "sarten", "sastre": "sastr", "sat": "sat", "satanás": "satanas", "satélite": "satelit", "satelitel": "satelitel", "satélites": "satelit", "satín": "satin", "satírica": "satir", "satisfacción": "satisfaccion", "satisfacciones": "satisfaccion", "satisface": "satisfac", "satisfacer": "satisfac", "satisfactores": "satisfactor", "satisfactoria": "satisfactori", "satisfactoriamente": "satisfactori", "satisfactorias": "satisfactori", "satisfactorio": "satisfactori", "satisfagan": "satisfag", "satisfecho": "satisfech", "sato": "sat", "saturación": "satur", "saturada": "satur", "saturadas": "satur", "saturado": "satur", "saturados": "satur", "saturó": "satur", "sauceda": "sauced", "saucedo": "sauced", "sauco": "sauc", "saúl": "saul", "saunders": "saunders", "sauzal": "sauzal", "savimbi": "savimbi", "savotino": "savotin", "savoy": "savoy", "savr": "savr", "saxe": "sax", "saxofón": "saxofon", "saxofonista": "saxofon", "saya": "say", "sazón": "sazon", "sc": "sc", "scafadi": "scafadi", "scalia": "scali", "scatasta": "scatast", "scheider": "scheid", "schlesinghaus": "schlesinghaus", "schmal": "schmal", "schmall": "schmall", "schoenstat": "schoenstat", "schoenstatt": "schoenstatt", "schooll": "schooll", "schools": "schools", "schopenhahuer": "schopenhahu", "science": "scienc", "scott": "scott", "scout": "scout", "scrooge": "scroog", "sct": "sct", "sculley": "sculley", "se": "se", "sé": "se", "sea": "sea", "seamos": "seam", "sean": "sean", "seas": "seas", "seattle": "seattl", "sebastian": "sebasti", "sebastián": "sebastian", "seca": "sec", "secaba": "sec", "secadora": "secador", "secas": "sec", "sección": "seccion", "seccional": "seccional", "seccionales": "seccional", "seco": "sec", "secofi": "secofi", "secogef": "secogef", "secos": "sec", "secreta": "secret", "secretaria": "secretari", "secretaría": "secret", "secretarías": "secret", "secretario": "secretari", "secretarios": "secretari", "secretas": "secret", "secreto": "secret", "secretos": "secret", "sectas": "sect", "sector": "sector", "sectores": "sector", "sectoriales": "sectorial", "secuela": "secuel", "secuelas": "secuel", "secuencial": "secuencial", "secuestrada": "secuestr", "secuestradas": "secuestr", "secuestrado": "secuestr", "secuestrador": "secuestr", "secuestradores": "secuestr", "secuestro": "secuestr", "secuestró": "secuestr", "secuestros": "secuestr", "secular": "secul", "secundada": "secund", "secundados": "secund", "secundaria": "secundari", "secundarias": "secundari", "secundario": "secundari", "secundarios": "secundari", "secundaron": "secund", "securities": "securiti", "sed": "sed", "seda": "sed", "sedán": "sedan", "sedanes": "sedan", "sedante": "sedant", "sede": "sed", "sedesol": "sedesol", "sedientos": "sedient", "sedona": "sedon", "seducción": "seduccion", "seducir": "seduc", "seductoras": "seductor", "sedujo": "seduj", "seduop": "seduop", "seelene": "seelen", "segmentada": "segment", "segmento": "segment", "segmentos": "segment", "segovia": "segovi", "segueta": "seguet", "seguí": "segu", "seguía": "segu", "seguían": "segu", "seguida": "segu", "seguido": "segu", "seguidora": "seguidor", "seguidores": "seguidor", "seguidos": "segu", "seguimiento": "seguimient", "seguimos": "segu", "seguir": "segu", "seguirá": "segu", "seguirán": "segu", "seguiré": "segu", "seguiremos": "segu", "seguiría": "segu", "seguirlas": "segu", "seguirles": "segu", "seguirse": "segu", "según": "segun", "segunda": "segund", "segundas": "segund", "segundo": "segund", "segundones": "segundon", "segundos": "segund", "segura": "segur", "seguramente": "segur", "seguras": "segur", "seguri": "seguri", "seguridad": "segur", "seguro": "segur", "seguros": "segur", "seguy": "seguy", "seis": "seis", "seiyu": "seiyu", "seko": "sek", "selección": "seleccion", "seleccionada": "seleccion", "seleccionadas": "seleccion", "seleccionado": "seleccion", "seleccionados": "seleccion", "seleccionar": "seleccion", "seleccionarán": "seleccion", "selecciones": "seleccion", "selectivo": "select", "selecto": "select", "sellada": "sell", "sellar": "sell", "seller": "sell", "sello": "sell", "selva": "selv", "selvas": "selv", "semáforos": "semafor", "semana": "seman", "semanal": "semanal", "semanales": "semanal", "semanalmente": "semanal", "semanario": "semanari", "semanas": "seman", "semblantes": "semblant", "sembraban": "sembr", "sembrada": "sembr", "sembradío": "sembradi", "sembradíos": "sembradi", "sembradores": "sembrador", "sembrar": "sembr", "sembremos": "sembr", "semejante": "semej", "semejantes": "semej", "semejanza": "semej", "semejanzas": "semej", "semen": "sem", "semental": "semental", "semestral": "semestral", "semestrales": "semestral", "semestre": "semestr", "semestres": "semestr", "semi": "semi", "semiautomática": "semiautomat", "semicerrados": "semicerr", "semidesértica": "semidesert", "semidíos": "semidi", "semifinal": "semifinal", "semifinales": "semifinal", "semifinalistas": "semifinal", "semilla": "semill", "semillas": "semill", "seminal": "seminal", "seminario": "seminari", "seminarios": "seminari", "seminaristas": "seminar", "semioscuras": "semioscur", "semipreciosa": "semipreci", "semivacíos": "semivaci", "seña": "señ", "senado": "sen", "senador": "senador", "senadora": "senador", "senadores": "senador", "señal": "señal", "señala": "señal", "señalaban": "señal", "señaladas": "señal", "señalado": "señal", "señalamiento": "señal", "señalamientos": "señal", "señalamos": "señal", "señalan": "señal", "señalar": "señal", "señalarla": "señal", "señalaron": "señal", "señalarse": "señal", "señalen": "señal", "señales": "señal", "señalo": "señal", "señaló": "señal", "señas": "señ", "sencilla": "sencill", "sencillamente": "sencill", "sencillas": "sencill", "sencillez": "sencillez", "sencillo": "sencill", "sencillos": "sencill", "sendas": "send", "senderista": "sender", "senderistas": "sender", "sendero": "sender", "sendos": "send", "seneam": "seneam", "seno": "sen", "señor": "señor", "señora": "señor", "señoras": "señor", "señores": "señor", "señoría": "señor", "señorita": "señorit", "senos": "sen", "sensación": "sensacion", "sensacionalismo": "sensacional", "sensacionalista": "sensacional", "sensaciones": "sensacion", "sensata": "sensat", "sensatas": "sensat", "sensibilidad": "sensibil", "sensibilidades": "sensibil", "sensibilizar": "sensibiliz", "sensible": "sensibl", "sensiblemente": "sensibl", "sensibles": "sensibl", "sensores": "sensor", "sensual": "sensual", "sensualidad": "sensual", "sentadas": "sent", "sentado": "sent", "sentados": "sent", "sentamos": "sent", "sentando": "sent", "sentanes": "sentan", "sentar": "sent", "sentaran": "sent", "sentarían": "sent", "sentaron": "sent", "sentarse": "sent", "sentencia": "sentenci", "sentenciada": "sentenci", "sentenciado": "sentenci", "sentenciados": "sentenci", "sentenció": "sentenc", "sentí": "sent", "sentía": "sent", "sentían": "sent", "sentido": "sent", "sentimental": "sentimental", "sentimiento": "sentimient", "sentimientos": "sentimient", "sentimos": "sent", "sentir": "sent", "sentiría": "sent", "sentirse": "sent", "sentó": "sent", "sep": "sep", "sepa": "sep", "sepamos": "sep", "sepan": "sep", "separa": "sep", "separación": "separ", "separaciones": "separ", "separada": "separ", "separadas": "separ", "separado": "separ", "separador": "separ", "separados": "separ", "separar": "separ", "separará": "separ", "separarán": "separ", "separarlos": "separ", "separaron": "separ", "separarse": "separ", "separe": "separ", "separen": "separ", "sepelio": "sepeli", "sépticas": "septic", "septiembre": "septiembr", "séptima": "septim", "séptimo": "septim", "sepultado": "sepult", "sepultan": "sepult", "sepultó": "sepult", "sepúlveda": "sepulved", "séquito": "sequit", "ser": "ser", "sera": "ser", "será": "ser", "serán": "seran", "serbia": "serbi", "serbio": "serbi", "serbios": "serbi", "seremos": "ser", "serena": "seren", "serenata": "serenat", "serenidad": "seren", "seres": "ser", "serfin": "serfin", "serfín": "serfin", "sergei": "sergei", "sergi": "sergi", "sergio": "sergi", "seria": "seri", "sería": "ser", "serial": "serial", "seriamente": "seri", "seríamos": "ser", "serían": "ser", "serias": "seri", "serie": "seri", "seriedad": "seried", "series": "seri", "serio": "seri", "serios": "seri", "serlo": "serl", "sermón": "sermon", "sermonearlos": "sermon", "serna": "sern", "serpentinero": "serpentiner", "serpiente": "serpient", "serra": "serr", "serrano": "serran", "servia": "servi", "service": "servic", "servicial": "servicial", "servicio": "servici", "servicios": "servici", "servido": "serv", "servidor": "servidor", "servidores": "servidor", "servidumbre": "servidumbr", "serviles": "servil", "servilleta": "servillet", "servimos": "serv", "servín": "servin", "servios": "servi", "servir": "serv", "servirá": "serv", "servirán": "serv", "serviría": "serv", "servirnos": "serv", "sese": "ses", "sesentas": "sesent", "sesgo": "sesg", "sesión": "sesion", "sesiones": "sesion", "sesos": "ses", "set": "set", "setentas": "setent", "sets": "sets", "seudónimo": "seudonim", "seul": "seul", "seúl": "seul", "severa": "sever", "severamente": "sever", "severas": "sever", "severo": "sever", "severos": "sever", "sevilla": "sevill", "sexenio": "sexeni", "sexenios": "sexeni", "sexista": "sexist", "sexo": "sex", "sexopatía": "sexopat", "sexos": "sex", "sexta": "sext", "sextetas": "sextet", "sexto": "sext", "sexual": "sexual", "sexuales": "sexual", "sexualidad": "sexual", "sexualmente": "sexual", "sexy": "sexy", "sexys": "sexys", "sfara": "sfar", "sgpv": "sgpv", "shadow": "shadow", "shannon": "shannon", "shaw": "shaw", "shcp": "shcp", "sheehy": "sheehy", "sheila": "sheil", "shepard": "shepard", "sherel": "sherel", "sheriff": "sheriff", "sherman": "sherm", "sherrit": "sherrit", "shibata": "shibat", "shikang": "shikang", "shimizu": "shimizu", "shorts": "shorts", "show": "show", "shows": "shows", "showtime": "showtim", "shrine": "shrin", "si": "si", "sí": "si", "siberia": "siberi", "siberiana": "siberian", "sica": "sic", "siclo": "sicl", "siclos": "sicl", "sicológica": "sicolog", "sida": "sid", "sidente": "sident", "siderúrgicas": "siderurg", "sido": "sid", "siembra": "siembr", "siembran": "siembr", "siemens": "siemens", "siempre": "siempr", "siendo": "siend", "sienta": "sient", "sientan": "sient", "siente": "sient", "sienten": "sient", "siento": "sient", "sierra": "sierr", "sierva": "sierv", "siervo": "sierv", "siete": "siet", "siga": "sig", "sigamos": "sig", "sigan": "sig", "siglas": "sigl", "siglo": "sigl", "siglos": "sigl", "significa": "signif", "significación": "signif", "significado": "signific", "significados": "signific", "significan": "signific", "significar": "signific", "significará": "signific", "significaran": "signific", "significaría": "signific", "significativa": "signific", "significativamente": "signific", "significativas": "signific", "significativo": "signific", "significativos": "signific", "significo": "signif", "significó": "signific", "signifique": "signifiqu", "signo": "sign", "signos": "sign", "sigo": "sig", "sigue": "sig", "siguen": "sig", "siguiendo": "sigu", "siguiente": "siguient", "siguientes": "siguient", "siguiera": "sigu", "siguieran": "sigu", "siguieron": "sigu", "siguió": "sigu", "silbante": "silbant", "silbaron": "silb", "silbatazo": "silbataz", "silber": "silb", "silbes": "silb", "silencio": "silenci", "silencioso": "silenci", "silla": "sill", "sillas": "sill", "sillón": "sillon", "silos": "sil", "silueta": "siluet", "silva": "silv", "silvestre": "silvestr", "silvestris": "silvestris", "silvia": "silvi", "silviano": "silvian", "silvio": "silvi", "simbólica": "simbol", "simbólico": "simbol", "simbolización": "simboliz", "símbolo": "simbol", "símbolos": "simbol", "simeone": "simeon", "simeprode": "simeprod", "similar": "simil", "similares": "similar", "simón": "simon", "simpatía": "simpat", "simpático": "simpat", "simpatizantes": "simpatiz", "simple": "simpl", "simplemente": "simplement", "simples": "simpl", "simpliciano": "simplician", "simplificación": "simplif", "simplificado": "simplific", "simplista": "simplist", "simposiums": "simposiums", "simulación": "simul", "simulador": "simul", "simulados": "simul", "simular": "simul", "simultánea": "simultane", "simultáneamente": "simultan", "simultáneos": "simultane", "sin": "sin", "sinagua": "sinagu", "sinaí": "sina", "sinaloa": "sinalo", "sinaloense": "sinaloens", "sinaloenses": "sinaloens", "sinceramente": "sincer", "sincero": "sincer", "sinclair": "sincl", "sincretismo": "sincret", "sincronización": "sincroniz", "sincronizados": "sincroniz", "sindelfingen": "sindelfing", "sindical": "sindical", "sindicales": "sindical", "sindicalismo": "sindical", "sindicalista": "sindical", "sindicalistas": "sindical", "sindicato": "sindicat", "sindicatos": "sindicat", "sindicatura": "sindicatur", "síndico": "sindic", "síndicos": "sindic", "sindo": "sind", "síndrome": "sindrom", "sinfonía": "sinfon", "singapur": "singapur", "singer": "sing", "singles": "singl", "singlista": "singlist", "singular": "singul", "siniestra": "siniestr", "siniestro": "siniestr", "sinnúmero": "sinnumer", "sino": "sin", "sinodal": "sinodal", "sinónimo": "sinonim", "sinovial": "sinovial", "síntesis": "sintesis", "sintética": "sintet", "sintético": "sintet", "sintéticos": "sintet", "sintiéndome": "sint", "sintió": "sint", "síntoma": "sintom", "síntomas": "sintom", "sintomática": "sintomat", "sintomáticas": "sintomat", "sintomático": "sintomat", "sinuosos": "sinuos", "sinusitis": "sinusitis", "siquiatra": "siquiatr", "siquiera": "siqu", "sir": "sir", "sirgo": "sirg", "sirloin": "sirloin", "siro": "sir", "sirva": "sirv", "sirvan": "sirv", "sirve": "sirv", "sirven": "sirv", "sirves": "sirv", "sirvientas": "sirvient", "sirvieran": "sirv", "sirvieron": "sirv", "sirvió": "sirv", "siscohm": "siscohm", "sísmica": "sismic", "sísmicos": "sismic", "sismógrafos": "sismograf", "sismología": "sismolog", "sistefin": "sistefin", "sistema": "sistem", "sistemas": "sistem", "sistemática": "sistemat", "sistemáticas": "sistemat", "sistemático": "sistemat", "sister": "sist", "sitemáticamente": "sitemat", "sitiado": "siti", "sitiados": "siti", "sitio": "siti", "sitios": "siti", "situación": "situacion", "situaciones": "situacion", "situada": "situ", "situadas": "situ", "situado": "situ", "situándose": "situ", "situar": "situ", "situarlos": "situ", "situarse": "situ", "sixto": "sixt", "sketches": "sketch", "slam": "slam", "sledge": "sledg", "sli": "sli", "slim": "slim", "smc": "smc", "smith": "smith", "smuckers": "smuckers", "snte": "snte", "sobada": "sob", "sobando": "sob", "soberana": "soberan", "soberanía": "soberan", "soberano": "soberan", "soberbia": "soberbi", "sobornados": "soborn", "sobornando": "soborn", "soborno": "soborn", "sobornos": "soborn", "sobra": "sobr", "sobraba": "sobr", "sobradamente": "sobrad", "sobran": "sobr", "sobrando": "sobr", "sobrar": "sobr", "sobrarán": "sobr", "sobre": "sobr", "sobreasignación": "sobreasign", "sobrecalentada": "sobrecalent", "sobrecalentamiento": "sobrecalent", "sobrecalentaron": "sobrecalent", "sobrecarga": "sobrecarg", "sobrecargaron": "sobrecarg", "sobrecargas": "sobrecarg", "sobrecosto": "sobrecost", "sobrecostos": "sobrecost", "sobrecupo": "sobrecup", "sobrecupos": "sobrecup", "sobreexplotación": "sobreexplot", "sobregiro": "sobregir", "sobregiros": "sobregir", "sobrellevar": "sobrellev", "sobremanera": "sobremaner", "sobrenombre": "sobrenombr", "sobrepasa": "sobrepas", "sobrepasan": "sobrepas", "sobrepasar": "sobrepas", "sobrepase": "sobrep", "sobrepasó": "sobrepas", "sobrepoblación": "sobrepobl", "sobreponen": "sobrepon", "sobreponiéndose": "sobrepon", "sobreposición": "sobreposicion", "sobresale": "sobresal", "sobresalen": "sobresal", "sobresaliendo": "sobresal", "sobresaliente": "sobresalient", "sobresalió": "sobresal", "sobresalir": "sobresal", "sobresaltos": "sobresalt", "sobreseída": "sobreseid", "sobrestantes": "sobrest", "sobresuscripcion": "sobresuscripcion", "sobretasa": "sobretas", "sobretodo": "sobretod", "sobrevaluado": "sobrevalu", "sobrevenga": "sobreveng", "sobrevida": "sobrev", "sobreviven": "sobreviv", "sobrevivencia": "sobrevivent", "sobrevivido": "sobreviv", "sobrevivientes": "sobrevivient", "sobrevivieron": "sobreviv", "sobrevivir": "sobreviv", "sobrevuelan": "sobrevuel", "sobrevuelos": "sobrevuel", "sobriedad": "sobried", "sobrina": "sobrin", "sobrino": "sobrin", "sobrinos": "sobrin", "socavamos": "socav", "socavar": "socav", "soccer": "socc", "social": "social", "socialdemócrata": "socialdemocrat", "sociales": "social", "socialismo": "social", "socialista": "social", "socialmente": "social", "sociedad": "socied", "sociedades": "sociedad", "socio": "soci", "socioeconómica": "socioeconom", "socioeconómico": "socioeconom", "socióloga": "sociolog", "sociológico": "sociolog", "sociológicos": "sociolog", "sociólogo": "sociolog", "sociopolítica": "sociopolit", "socios": "soci", "socorrista": "socorr", "socorristas": "socorr", "socorro": "socorr", "socorros": "socorr", "sócrates": "socrat", "socrático": "socrat", "socráticos": "socrat", "sodas": "sod", "sódico": "sodic", "sodio": "sodi", "sofá": "sof", "sofía": "sof", "sofisticación": "sofist", "sofisticadas": "sofistic", "sofisticado": "sofistic", "sofisticados": "sofistic", "sofocación": "sofoc", "sofocado": "sofoc", "sofocarlo": "sofoc", "soft": "soft", "softbol": "softbol", "software": "softwar", "sogem": "sogem", "sojo": "soj", "sol": "sol", "sola": "sol", "solamente": "sol", "solana": "solan", "solapados": "solap", "solar": "sol", "solares": "solar", "solaris": "solaris", "solas": "sol", "solaza": "solaz", "solazo": "solaz", "soldada": "sold", "soldado": "sold", "soldador": "soldador", "soldados": "sold", "soldadura": "soldadur", "soldan": "sold", "soldando": "sold", "soldar": "sold", "soldarlos": "sold", "soleado": "sol", "soledad": "soled", "solemne": "solemn", "solemnidad": "solemn", "solía": "sol", "solían": "sol", "solicita": "solicit", "solicitaba": "solicit", "solicitada": "solicit", "solicitado": "solicit", "solicitados": "solicit", "solicitamos": "solicit", "solicitan": "solicit", "solicitando": "solicit", "solicitar": "solicit", "solicitará": "solicit", "solicitarán": "solicit", "solicitarle": "solicit", "solicitaron": "solicit", "solicite": "solicit", "solicité": "solicit", "solicito": "solicit", "solícito": "solicit", "solicitó": "solicit", "solicitud": "solicitud", "solicitudes": "solicitud", "sólida": "sol", "solidaria": "solidari", "solidaridad": "solidar", "solidario": "solidari", "sólidas": "sol", "solidez": "solidez", "sólido": "sol", "sólidos": "sol", "solís": "sol", "solista": "solist", "solistas": "solist", "solitario": "solitari", "solitarios": "solitari", "solito": "solit", "sollozando": "solloz", "solo": "sol", "sólo": "sol", "solórzano": "solorzan", "solos": "sol", "soltar": "solt", "soltara": "solt", "soltaran": "solt", "soltera": "solter", "solteras": "solter", "soltó": "solt", "solución": "solucion", "solucionan": "solucion", "solucionar": "solucion", "solucionarse": "solucion", "solucione": "solucion", "soluciones": "solucion", "solucionó": "solucion", "solvencia": "solvenci", "solventar": "solvent", "somalia": "somali", "sombra": "sombr", "sombras": "sombr", "sombrero": "sombrer", "sombreros": "sombrer", "sometan": "somet", "somete": "somet", "someter": "somet", "someterá": "somet", "someterán": "somet", "someterlos": "somet", "someterse": "somet", "sometidas": "somet", "sometido": "somet", "sometidos": "somet", "sometimiento": "somet", "somos": "som", "somoza": "somoz", "son": "son", "soñado": "soñ", "soñadores": "soñador", "sonados": "son", "soñados": "soñ", "soñando": "soñ", "soñar": "soñ", "sonda": "sond", "sondas": "sond", "sondeos": "sonde", "soñé": "soñ", "sonia": "soni", "sonido": "son", "sonidos": "son", "soñó": "soñ", "sonora": "sonor", "sonorense": "sonorens", "sonriente": "sonrient", "sonríes": "sonr", "sonrió": "sonr", "sonrisa": "sonris", "sonrisas": "sonris", "sony": "sony", "sonya": "sony", "sopesar": "sopes", "soplando": "sopl", "soplarse": "sopl", "soporta": "soport", "soportaba": "soport", "soportable": "soport", "soportado": "soport", "soportan": "soport", "soportar": "soport", "soportarán": "soport", "soporte": "soport", "soportes": "soport", "soportó": "soport", "sor": "sor", "sorda": "sord", "sordera": "sorder", "sórdidas": "sord", "sórdido": "sord", "sordos": "sord", "sorgo": "sorg", "soriana": "sorian", "soriano": "sorian", "soros": "sor", "sorprenda": "sorprend", "sorprende": "sorprend", "sorprenden": "sorprend", "sorprendente": "sorprendent", "sorprendentes": "sorprendent", "sorprender": "sorprend", "sorprenderá": "sorprend", "sorprendí": "sorprend", "sorprendidas": "sorprend", "sorprendido": "sorprend", "sorprendidos": "sorprend", "sorprendieron": "sorprend", "sorprendió": "sorprend", "sorpresa": "sorpres", "sorpresas": "sorpres", "sorpresiva": "sorpres", "sorpresivas": "sorpres", "sorpresivo": "sorpres", "sorpresivos": "sorpres", "sortea": "sorte", "sorteo": "sorte", "sorteos": "sorte", "sosa": "sos", "soslayó": "soslay", "sospecha": "sospech", "sospechaba": "sospech", "sospechamos": "sospech", "sospecho": "sospech", "sospechosa": "sospech", "sospechoso": "sospech", "sospechosos": "sospech", "sostén": "sosten", "sostendrá": "sostendr", "sostendrán": "sostendran", "sostener": "sosten", "sostenerla": "sosten", "sostenerse": "sosten", "sostengo": "sosteng", "sostenía": "sosten", "sostenían": "sosten", "sostenible": "sosten", "sostenida": "sosten", "sostenidas": "sosten", "sostenido": "sosten", "sosteniendo": "sosten", "sostiene": "sostien", "sostienen": "sostien", "sostuvieron": "sostuv", "sostuvo": "sostuv", "sotanero": "sotaner", "sotaneros": "sotaner", "sotero": "soter", "soto": "sot", "soundgarden": "soundgard", "south": "south", "southern": "southern", "southwest": "southwest", "soviet": "soviet", "soviética": "soviet", "soviético": "soviet", "soy": "soy", "soya": "soy", "sparcclassic": "sparcclassic", "sparcservers": "sparcservers", "sparcstations": "sparcstations", "sparrings": "sparrings", "special": "special", "spike": "spik", "spirit": "spirit", "spivakov": "spivakov", "sport": "sport", "sporting": "sporting", "spot": "spot", "sprenger": "spreng", "springbreakers": "springbreakers", "sprint": "sprint", "sprints": "sprints", "sr": "sr", "staff": "staff", "stalin": "stalin", "standard": "standard", "stanley": "stanley", "state": "stat", "station": "station", "statuo": "statu", "status": "status", "steels": "steels", "stéfano": "stefan", "stephan": "steph", "stephanopoulos": "stephanopoul", "stephen": "steph", "stereo": "stere", "stern": "stern", "steve": "stev", "steven": "stev", "stl": "stl", "stock": "stock", "stoichkov": "stoichkov", "stoickov": "stoickov", "stoker": "stok", "stólica": "stolic", "stone": "ston", "stor": "stor", "straffon": "straffon", "strauss": "strauss", "stravinsky": "stravinsky", "street": "street", "strictly": "strictly", "strikes": "strik", "strindberg": "strindberg", "studies": "studi", "stup": "stup", "stuttgart": "stuttgart", "su": "su", "suárez": "suarez", "suave": "suav", "suavemente": "suavement", "suaves": "suav", "suavidad": "suavid", "suavizamos": "suaviz", "suavizaron": "suaviz", "sub": "sub", "suba": "sub", "subacuática": "subacuat", "subalterna": "subaltern", "subalterno": "subaltern", "suban": "sub", "subaru": "subaru", "subasta": "subast", "subastas": "subast", "subcampeón": "subcampeon", "subcomandante": "subcomand", "subcomandantes": "subcomand", "subcomisión": "subcomision", "subcomité": "subcomit", "subconsciente": "subconscient", "subcontratación": "subcontrat", "subdelegado": "subdeleg", "subdesarrollada": "subdesarroll", "subdesarrollados": "subdesarroll", "subdirección": "subdireccion", "subdirector": "subdirector", "subdirectora": "subdirector", "subdistribuidores": "subdistribuidor", "subdivisión": "subdivision", "suben": "sub", "subes": "sub", "subespecialidades": "subespecial", "subestación": "subest", "subfacturación": "subfactur", "subgerente": "subgerent", "subí": "sub", "subían": "sub", "subida": "sub", "subidas": "sub", "subido": "sub", "subiendo": "sub", "subieran": "sub", "subieron": "sub", "subió": "sub", "subir": "sub", "subirá": "sub", "subirse": "sub", "súbita": "subit", "súbitamente": "subit", "subjetiva": "subjet", "subjetividad": "subjet", "sublíder": "sublid", "sublíderes": "sublider", "sublime": "sublim", "subliminal": "subliminal", "submarina": "submarin", "submarinas": "submarin", "submarino": "submarin", "submarinos": "submarin", "subordinado": "subordin", "subordinados": "subordin", "subprocurador": "subprocur", "subproductos": "subproduct", "subrayar": "subray", "subrayaron": "subray", "subrayó": "subray", "subregional": "subregional", "subsana": "subsan", "subsanables": "subsan", "subsecretaria": "subsecretari", "subsecretaría": "subsecret", "subsecretario": "subsecretari", "subsecretarios": "subsecretari", "subsectores": "subsector", "subsecuentes": "subsecuent", "subsidiada": "subsidi", "subsidiadas": "subsidi", "subsidiar": "subsidi", "subsidiaria": "subsidiari", "subsidiarias": "subsidiari", "subsidiarios": "subsidiari", "subsidio": "subsidi", "subsidios": "subsidi", "substancia": "substanci", "substancial": "substancial", "substanciales": "substancial", "substancias": "substanci", "subsuelo": "subsuel", "subtangente": "subtangent", "subterránea": "subterrane", "subterráneo": "subterrane", "suburban": "suburb", "suburbanos": "suburban", "suburbias": "suburbi", "suburbios": "suburbi", "subvención": "subvencion", "subversión": "subversion", "subversivo": "subvers", "subversivos": "subvers", "subvertir": "subvert", "subviertes": "subviert", "suceda": "suced", "sucede": "suced", "suceden": "suced", "suceder": "suced", "sucederá": "suced", "sucedería": "suced", "sucederlo": "suced", "sucedía": "suced", "sucedido": "suced", "sucediera": "suced", "sucedieron": "suced", "sucedió": "suced", "sucesion": "sucesion", "sucesión": "sucesion", "sucesivamente": "suces", "suceso": "suces", "sucesor": "sucesor", "sucesorio": "sucesori", "sucesos": "suces", "sucia": "suci", "suciedad": "sucied", "sucio": "suci", "sucios": "suci", "sucre": "sucr", "sucumbir": "sucumb", "sucursal": "sucursal", "sucursales": "sucursal", "sudamérica": "sudamer", "sudamericana": "sudamerican", "sudamericanas": "sudamerican", "sudamericano": "sudamerican", "sudar": "sud", "sudeste": "sudest", "sudoccidental": "sudoccidental", "sudoeste": "sudoest", "sudoración": "sudor", "sudoroso": "sudor", "suecia": "sueci", "sueco": "suec", "suecos": "suec", "suegra": "suegr", "suelas": "suel", "sueldo": "sueld", "sueldos": "sueld", "suele": "suel", "suelen": "suel", "suelo": "suel", "suelos": "suel", "sueltan": "suelt", "suena": "suen", "sueña": "sueñ", "suenen": "suen", "sueño": "sueñ", "sueños": "sueñ", "suero": "suer", "suerte": "suert", "suéter": "suet", "suéteres": "sueter", "suficiente": "suficient", "suficientemente": "suficient", "suficientes": "suficient", "sufragar": "sufrag", "sufragaron": "sufrag", "sufragio": "sufragi", "sufragios": "sufragi", "sufrague": "sufrag", "sufre": "sufr", "sufren": "sufr", "sufrí": "sufr", "sufría": "sufr", "sufrido": "sufr", "sufridos": "sufr", "sufriendo": "sufr", "sufrieron": "sufr", "sufrimiento": "sufrimient", "sufrió": "sufr", "sufrir": "sufr", "sugerencia": "sugerent", "sugerencias": "sugerent", "sugerentes": "sugerent", "sugería": "sug", "sugerido": "suger", "sugeridos": "suger", "sugerir": "suger", "sugestivos": "sugest", "sugiera": "sug", "sugieran": "sug", "sugiere": "sugier", "sugieren": "sugier", "sugiero": "sugier", "sugiriendo": "sugir", "sugirieron": "sugir", "sugirió": "sugir", "sui": "sui", "suicida": "suic", "suicidaron": "suicid", "suicidarse": "suicid", "suicidio": "suicidi", "suite": "suit", "suiza": "suiz", "suizos": "suiz", "sujeción": "sujecion", "sujetar": "sujet", "sujetarlo": "sujet", "sujetarse": "sujet", "sujeto": "sujet", "sujetos": "sujet", "sulaimán": "sulaiman", "sulfito": "sulfit", "sulfúrico": "sulfur", "sultana": "sultan", "sultanes": "sultan", "suma": "sum", "sumaban": "sum", "sumado": "sum", "sumados": "sum", "sumamente": "sum", "suman": "sum", "sumando": "sum", "sumar": "sum", "sumarán": "sum", "sumario": "sumari", "sumaron": "sum", "sumarse": "sum", "sumas": "sum", "sume": "sum", "sumen": "sum", "sumerge": "sumerg", "sumergibles": "sumerg", "sumergido": "sumerg", "sumergió": "sumerg", "sumerio": "sumeri", "sumido": "sum", "suministraba": "suministr", "suministrada": "suministr", "suministrar": "suministr", "suministro": "suministr", "suministró": "suministr", "sumisa": "sumis", "summers": "summers", "sumo": "sum", "sumó": "sum", "sun": "sun", "sung": "sung", "sunny": "sunny", "suntuoso": "suntuos", "suoo": "suo", "supe": "sup", "super": "sup", "súper": "sup", "supera": "super", "superación": "super", "superada": "super", "superado": "super", "superamas": "superam", "superamos": "super", "superan": "super", "superando": "super", "superar": "super", "superará": "super", "superarla": "super", "superarlo": "super", "superarlos": "super", "superarme": "super", "superaron": "super", "superavenida": "superaven", "superávit": "superavit", "superavitaria": "superavitari", "supercenter": "supercent", "supercenters": "supercenters", "superdotados": "superdot", "supere": "super", "superficial": "superficial", "superficiales": "superficial", "superficie": "superfici", "superficies": "superfici", "superfluas": "superflu", "superior": "superior", "superiores": "superior", "superioridad": "superior", "superiorsubaru": "superiorsubaru", "superlíder": "superlid", "superliderato": "superliderat", "superligero": "superliger", "superligeros": "superliger", "superliviano": "superlivian", "supermediano": "supermedian", "supermercado": "supermerc", "supermercados": "supermerc", "superó": "super", "superpluma": "superplum", "superpotencia": "superpotent", "supersecretarios": "supersecretari", "supersónicas": "superson", "supervisa": "supervis", "supervisar": "supervis", "supervisará": "supervis", "supervisarlos": "supervis", "supervisión": "supervision", "supervisó": "supervis", "supervisor": "supervisor", "supervisora": "supervisor", "supervivencia": "supervivent", "superwelter": "superwelt", "supieran": "sup", "supieron": "sup", "suple": "supl", "suplemento": "suplement", "suplente": "suplent", "suplentes": "suplent", "suplicantes": "suplic", "suplicar": "suplic", "suplicará": "suplic", "suplir": "supl", "supo": "sup", "supondría": "supondr", "supone": "supon", "suponemos": "supon", "suponer": "supon", "suponerse": "supon", "suponga": "supong", "supongo": "supong", "suponía": "supon", "suponiendo": "supon", "suposiciones": "suposicion", "supra": "supr", "suprema": "suprem", "supremacia": "supremaci", "supremacía": "supremac", "supremo": "suprem", "suprimir": "suprim", "suprimirlas": "suprim", "supuesta": "supuest", "supuestamente": "supuest", "supuestas": "supuest", "supuesto": "supuest", "supuestos": "supuest", "sur": "sur", "surcaba": "surc", "surcoreana": "surcorean", "surcoreanas": "surcorean", "surcoreanos": "surcorean", "sureste": "surest", "surge": "surg", "surgen": "surg", "surgida": "surg", "surgido": "surg", "surgidos": "surg", "surgiendo": "surg", "surgiera": "surg", "surgieron": "surg", "surgimiento": "surgimient", "surgio": "surgi", "surgió": "surg", "surgir": "surg", "surgirá": "surg", "surgirían": "surg", "surja": "surj", "surjan": "surj", "suroeste": "suroest", "surrealista": "surreal", "surta": "surt", "surtido": "surt", "surtiendo": "surt", "surtió": "surt", "surtir": "surt", "sus": "sus", "susan": "sus", "susana": "susan", "susceptible": "suscept", "susceptibles": "suscept", "suscitado": "suscit", "suscitó": "suscit", "suscribió": "suscrib", "suscribir": "suscrib", "suscripción": "suscripcion", "suscrita": "suscrit", "suscrito": "suscrit", "susiflor": "susiflor", "suspenda": "suspend", "suspende": "suspend", "suspenden": "suspend", "suspender": "suspend", "suspenderá": "suspend", "suspenderán": "suspend", "suspendida": "suspend", "suspendidas": "suspend", "suspendido": "suspend", "suspendidos": "suspend", "suspendiera": "suspend", "suspendieron": "suspend", "suspendió": "suspend", "suspendo": "suspend", "suspensión": "suspension", "suspensiones": "suspension", "suspiro": "suspir", "sustancia": "sustanci", "sustancial": "sustancial", "sustancias": "sustanci", "sustenta": "sustent", "sustentables": "sustent", "sustentación": "sustent", "sustentado": "sustent", "sustentar": "sustent", "sustente": "sustent", "sustento": "sustent", "sustitución": "sustitu", "sustituían": "sustitu", "sustituido": "sustitu", "sustituir": "sustitu", "sustituirá": "sustitu", "sustituiría": "sustitu", "sustitutiva": "sustitut", "sustituto": "sustitut", "sustituyamos": "sustitu", "sustituyan": "sustitu", "sustituye": "sustitu", "sustituyen": "sustitu", "sustituyendo": "sustitu", "sustituyó": "sustitu", "susto": "sust", "sustraía": "sustr", "sustrajo": "sustraj", "suya": "suy", "suyas": "suy", "suyo": "suy", "suyos": "suy", "svyt": "svyt", "swahili": "swahili", "swing": "swing", "swycord": "swycord", "sx": "sx", "sybilla": "sybill", "symington": "symington", "system": "system", "systems": "systems", "szekely": "szekely", "sznajder": "sznajd", "t": "t", "tabachín": "tabachin", "tabaco": "tabac", "tabasco": "tabasc", "tabe": "tab", "tabla": "tabl", "tablante": "tablant", "tablero": "tabler", "tableros": "tabler", "tablones": "tablon", "taboada": "tab", "tabulador": "tabul", "tachado": "tach", "tacho": "tach", "tachuelas": "tachuel", "tácita": "tacit", "tácitamente": "tacit", "taco": "tac", "tacón": "tacon", "tacos": "tac", "táctica": "tactic", "tácticas": "tactic", "tácticos": "tactic", "tacto": "tact", "taesa": "taes", "taffarel": "taffarel", "tagamet": "tagamet", "tagetes": "taget", "taiga": "taig", "tailandia": "tailandi", "taiwan": "taiw", "taiwán": "taiwan", "taiwandeses": "taiwandes", "tajante": "tajant", "takatoshi": "takatoshi", "take": "tak", "tal": "tal", "talada": "tal", "taladores": "talador", "taladro": "taladr", "tálamo": "talam", "talante": "talant", "talento": "talent", "talentos": "talent", "talentoso": "talent", "tales": "tal", "talismán": "talisman", "talla": "tall", "tallando": "tall", "tallar": "tall", "taller": "tall", "talleres": "taller", "talón": "talon", "talones": "talon", "talusa": "talus", "tamal": "tamal", "tamaño": "tamañ", "tamasopo": "tamasop", "tamaulipas": "tamaulip", "tamaulipeca": "tamaulipec", "tamayo": "tamay", "tambien": "tambi", "también": "tambien", "tambor": "tambor", "tambores": "tambor", "támesis": "tamesis", "tamez": "tamez", "tampico": "tampic", "tampoco": "tampoc", "tamps": "tamps", "tan": "tan", "tanasio": "tanasi", "tancanhuitz": "tancanhuitz", "tancredi": "tancredi", "tanda": "tand", "tane": "tan", "tanganhuato": "tanganhuat", "tangibles": "tangibl", "tanque": "tanqu", "tanques": "tanqu", "tanta": "tant", "tantas": "tant", "tanto": "tant", "tantos": "tant", "tanzanios": "tanzani", "tapa": "tap", "tapacalles": "tapacall", "tapachula": "tapachul", "tapar": "tap", "tapas": "tap", "tapatía": "tapat", "tapatías": "tapat", "tapatío": "tapati", "tapatíos": "tapati", "tapete": "tapet", "tapia": "tapi", "tapicería": "tapic", "tapitas": "tapit", "tapiz": "tapiz", "tapizados": "tapiz", "taponaron": "tapon", "taponeo": "tapone", "taquería": "taqu", "taquilla": "taquill", "taquillas": "taquill", "taquillera": "taquiller", "taquillero": "taquiller", "taquitos": "taquit", "tarado": "tar", "tarahumara": "tarahum", "tarahumaras": "tarahum", "tarasov": "tarasov", "tarciso": "tarcis", "tarda": "tard", "tardamos": "tard", "tardan": "tard", "tardándose": "tard", "tardanza": "tardanz", "tardar": "tard", "tardará": "tard", "tardarían": "tard", "tardaron": "tard", "tarde": "tard", "tardé": "tard", "tardes": "tard", "tardía": "tard", "tardo": "tard", "tardó": "tard", "tarea": "tare", "tareas": "tar", "tarifa": "tarif", "tarifario": "tarifari", "tarifarios": "tarifari", "tarifas": "tarif", "tarjeta": "tarjet", "tarjetahabientes": "tarjetahabient", "tarjetas": "tarjet", "tarjetón": "tarjeton", "tartajoso": "tartaj", "tasa": "tas", "tasas": "tas", "tascón": "tascon", "tasmania": "tasmani", "tataranietos": "tataraniet", "tatiana": "tatian", "tato": "tat", "tatuajes": "tatuaj", "tauro": "taur", "tavares": "tavar", "taxco": "taxc", "taxi": "taxi", "taxis": "taxis", "taxista": "taxist", "taxistas": "taxist", "taza": "taz", "tazas": "taz", "tazcón": "tazcon", "tazón": "tazon", "tazones": "tazon", "tcp": "tcp", "te": "te", "té": "te", "teaanque": "teaanqu", "team": "team", "teatral": "teatral", "teatrales": "teatral", "teatralmente": "teatral", "teatro": "teatr", "teatros": "teatr", "tec": "tec", "tecate": "tecat", "tech": "tech", "techado": "tech", "technologies": "technologi", "technology": "technology", "techo": "tech", "techos": "tech", "techumbre": "techumbr", "tecihuatlanque": "tecihuatlanqu", "tecla": "tecl", "tecladista": "teclad", "teclados": "tecl", "técnica": "tecnic", "técnicamente": "tecnic", "técnicas": "tecnic", "técnico": "tecnic", "técnicos": "tecnic", "tecnocracia": "tecnocraci", "tecnócratas": "tecnocrat", "tecnología": "tecnolog", "tecnologías": "tecnolog", "tecnológica": "tecnolog", "tecnológicamente": "tecnolog", "tecnológicas": "tecnolog", "tecnológico": "tecnolog", "tecnológicos": "tecnolog", "tecos": "tec", "tecpan": "tecp", "tecuniapa": "tecuniap", "teddy": "teddy", "teddys": "teddys", "tedioso": "tedios", "teherán": "teh", "tehuacan": "tehuac", "tehuacán": "tehuacan", "tehuitzingo": "tehuitzing", "teissier": "teissi", "tejado": "tej", "tejas": "tej", "tejeda": "tejed", "tejido": "tej", "tejidos": "tej", "tel": "tel", "tela": "tel", "telas": "tel", "tele": "tel", "telecom": "telecom", "telecomunicaciones": "telecomun", "telefonía": "telefon", "telefónica": "telefon", "telefónicamente": "telefon", "telefónicas": "telefon", "telefónico": "telefon", "telefónicos": "telefon", "telefonistas": "telefon", "teléfono": "telefon", "teléfonos": "telefon", "teleguía": "telegu", "telehogares": "telehogar", "telenovela": "telenovel", "telenovelas": "telenovel", "telesecundaria": "telesecundari", "teleseries": "teleseri", "televicine": "televicin", "televidente": "televident", "televidentes": "televident", "televisa": "televis", "televisar": "televis", "televisión": "television", "televisiones": "television", "televisiva": "televis", "televisivas": "televis", "televisivo": "televis", "televisivos": "televis", "televisora": "televisor", "telex": "telex", "téllez": "tellez", "tello": "tell", "telmex": "telmex", "teloloapan": "teloloap", "teloloapense": "teloloapens", "telones": "telon", "tema": "tem", "temas": "tem", "temática": "temat", "temáticas": "temat", "temblar": "tembl", "temblor": "temblor", "temblores": "temblor", "teme": "tem", "temecula": "temecul", "temen": "tem", "temeraria": "temerari", "temerariamente": "temerari", "temerarios": "temerari", "temeroso": "temer", "temía": "tem", "temible": "temibl", "temido": "tem", "temiendo": "tem", "temo": "tem", "temor": "temor", "temores": "temor", "témpano": "tempan", "temperamento": "temperament", "temperatura": "temperatur", "temperaturas": "temperatur", "tempestad": "tempest", "templado": "templ", "templados": "templ", "temple": "templ", "templete": "templet", "templo": "templ", "templos": "templ", "temporada": "tempor", "temporadas": "tempor", "temporal": "temporal", "temporales": "temporal", "temporalmente": "temporal", "temprana": "tempran", "tempranamente": "tempran", "tempranero": "tempraner", "temprano": "tempran", "tempranos": "tempran", "temulento": "temulent", "tención": "tencion", "tendajones": "tendajon", "tendencia": "tendenci", "tendencias": "tendenci", "tenderá": "tend", "tenderán": "tend", "tendido": "tend", "tendientes": "tendient", "tendimos": "tend", "tendió": "tend", "tendón": "tendon", "tendrá": "tendr", "tendrán": "tendran", "tendré": "tendr", "tendremos": "tendr", "tendría": "tendr", "tendríamos": "tendr", "tendrían": "tendr", "tenemos": "ten", "tenencia": "tenenci", "tenencias": "tenenci", "tener": "ten", "tenerife": "tenerif", "tenerlas": "ten", "tenessee": "tenesse", "tenga": "teng", "tengamos": "teng", "tengan": "teng", "tengas": "teng", "tengo": "teng", "tenia": "teni", "tenía": "ten", "teniamos": "teni", "teníamos": "ten", "tenían": "ten", "tenida": "ten", "tenido": "ten", "teniendo": "ten", "teniente": "tenient", "tenis": "tenis", "tenistas": "tenist", "tenístico": "tenist", "tennessee": "tennesse", "tenochtitlan": "tenochtitl", "tenor": "tenor", "tensa": "tens", "tensión": "tension", "tensiones": "tension", "tentación": "tentacion", "tentativa": "tentat", "teo": "teo", "teodora": "teodor", "teodoro": "teodor", "teología": "teolog", "teólogos": "teolog", "teoría": "teor", "teorías": "teor", "teórica": "teoric", "teóricamente": "teoric", "teóricas": "teoric", "teóricos": "teoric", "tepanco": "tepanc", "tepatitlán": "tepatitlan", "tepeaca": "tepeac", "tepehuanes": "tepehuan", "tepeyac": "tepeyac", "tepic": "tepic", "tepochcalli": "tepochcalli", "tepozotlán": "tepozotlan", "tequila": "tequil", "tequisquiápan": "tequisquiap", "terán": "teran", "terapéuticas": "terapeut", "terapéuticos": "terapeut", "terapia": "terapi", "terapias": "terapi", "tercer": "terc", "tercera": "tercer", "terceras": "tercer", "tercero": "tercer", "terceros": "tercer", "tercia": "terci", "tercias": "terci", "tercio": "terci", "terciopelo": "terciopel", "tercios": "terci", "teresa": "teres", "tergiversado": "tergivers", "termes": "term", "térmica": "termic", "térmicas": "termic", "termina": "termin", "terminación": "termin", "terminaciones": "termin", "terminada": "termin", "terminadas": "termin", "terminado": "termin", "terminados": "termin", "terminal": "terminal", "terminales": "terminal", "terminamos": "termin", "terminan": "termin", "terminando": "termin", "terminar": "termin", "terminará": "termin", "terminarán": "termin", "terminaría": "termin", "terminarían": "termin", "terminarlo": "termin", "terminaron": "termin", "terminarse": "termin", "terminator": "terminator", "termine": "termin", "terminemos": "termin", "terminen": "termin", "termino": "termin", "término": "termin", "terminó": "termin", "terminología": "terminolog", "términos": "termin", "termómetro": "termometr", "terna": "tern", "ternura": "ternur", "térprete": "terpret", "terracota": "terracot", "terranova": "terranov", "terrateniente": "terratenient", "terratenientes": "terratenient", "terrazas": "terraz", "terremoto": "terremot", "terrenales": "terrenal", "terreno": "terren", "terrenos": "terren", "terrestre": "terrestr", "terrible": "terribl", "terribles": "terribl", "territorial": "territorial", "territorio": "territori", "territorios": "territori", "terror": "terror", "terrorismo": "terror", "terrorista": "terror", "terroristas": "terror", "terry": "terry", "tés": "tes", "tesis": "tesis", "tésis": "tesis", "tesitura": "tesitur", "tesorería": "tesor", "tesorero": "tesorer", "tesoreros": "tesorer", "tesoro": "tesor", "tesoros": "tesor", "testigo": "testig", "testigos": "testig", "testimonial": "testimonial", "testimoniar": "testimoni", "testimonio": "testimoni", "testimonios": "testimoni", "testosterona": "testosteron", "tetela": "tetel", "tetramestres": "tetramestr", "texana": "texan", "texano": "texan", "texanos": "texan", "texas": "tex", "texcoco": "texcoc", "textil": "textil", "textilera": "textiler", "textiles": "textil", "texto": "text", "textos": "text", "textualmente": "textual", "texturas": "textur", "tez": "tez", "tezoyuca": "tezoyuc", "the": "the", "thelonius": "thelonius", "theodore": "theodor", "therese": "theres", "thiner": "thin", "things": "things", "thomas": "thom", "thompson": "thompson", "thomson": "thomson", "thorn": "thorn", "three": "thre", "thriller": "thrill", "thurlow": "thurlow", "thurman": "thurm", "ti": "ti", "tía": "tia", "tianguis": "tianguis", "tías": "tias", "tiberio": "tiberi", "tibet": "tibet", "tibio": "tibi", "tichavski": "tichavski", "ticktin": "ticktin", "tiempecito": "tiempecit", "tiempo": "tiemp", "tiempos": "tiemp", "tienda": "tiend", "tiendas": "tiend", "tiende": "tiend", "tienden": "tiend", "tiene": "tien", "tienen": "tien", "tienes": "tien", "tienta": "tient", "tiernamente": "tiern", "tierra": "tierr", "tierras": "tierr", "tigre": "tigr", "tigres": "tigr", "tigrillas": "tigrill", "tigrillos": "tigrill", "tijerina": "tijerin", "tijuana": "tijuan", "tijuanenses": "tijuanens", "tildar": "tild", "tim": "tim", "timbiriche": "timbirich", "timbre": "timbr", "timbres": "timbr", "time": "tim", "times": "tim", "tímida": "tim", "tímidamente": "timid", "tímido": "tim", "timón": "timon", "timonel": "timonel", "timorato": "timorat", "timoteo": "timote", "timothy": "timothy", "tino": "tin", "tinta": "tint", "tintas": "tint", "tinto": "tint", "tío": "tio", "tíos": "tios", "tiosulfato": "tiosulfat", "típicamente": "tipic", "típico": "tipic", "típicos": "tipic", "tipifica": "tipif", "tipo": "tip", "tipos": "tip", "tips": "tips", "tira": "tir", "tirada": "tir", "tiradero": "tirader", "tiraderos": "tirader", "tirado": "tir", "tirados": "tir", "tirando": "tir", "tiránica": "tiran", "tirantes": "tirant", "tirar": "tir", "tirarán": "tir", "tirarlos": "tir", "tiras": "tir", "tire": "tir", "tiro": "tir", "tiró": "tir", "tiroideas": "tiroid", "tiroides": "tiroid", "tiros": "tir", "tiroteo": "tirote", "tiroteos": "tirote", "tirzo": "tirz", "tisa": "tis", "titanic": "titanic", "titanica": "titan", "titánica": "titan", "titanio": "titani", "titipuchal": "titipuchal", "tito": "tit", "titula": "titul", "titulada": "titul", "titulado": "titul", "titular": "titul", "titulares": "titular", "titularidad": "titular", "título": "titul", "tituló": "titul", "títulos": "titul", "tixkokob": "tixkokob", "tlacamécatl": "tlacamecatl", "tlacotepec": "tlacotepec", "tlahuapán": "tlahuapan", "tlalchapa": "tlalchap", "tlalpan": "tlalp", "tlaltenango": "tlaltenang", "tlamacazques": "tlamacazqu", "tlatelolco": "tlatelolc", "tlatlahuquitepec": "tlatlahuquitepec", "tlatoani": "tlatoani", "tlatoanis": "tlatoanis", "tlaxcala": "tlaxcal", "tlaxcalteca": "tlaxcaltec", "tlaxcaltecas": "tlaxcaltec", "tlc": "tlc", "to": "to", "tobías": "tob", "tobillo": "tobill", "toca": "toc", "tocaba": "toc", "tocaban": "toc", "tocado": "toc", "tocan": "toc", "tocar": "toc", "tocará": "toc", "tocarán": "toc", "tocarle": "toc", "tocco": "tocc", "tocó": "toc", "toda": "tod", "todas": "tod", "todavía": "todav", "todd": "todd", "todo": "tod", "todos": "tod", "toilette": "toilett", "toji": "toji", "tokio": "toki", "toledo": "toled", "tolerada": "toler", "tolerancia": "toler", "tolerando": "toler", "tolerante": "toler", "tolerantes": "toler", "tolerarse": "toler", "toletero": "toleter", "toluca": "toluc", "tom": "tom", "toma": "tom", "tomaba": "tom", "tomaban": "tom", "tomada": "tom", "tomadas": "tom", "tomado": "tom", "tomadores": "tomador", "tomados": "tom", "toman": "tom", "tomando": "tom", "tomándola": "tom", "tomar": "tom", "tomara": "tom", "tomará": "tom", "tomaran": "tom", "tomarán": "tom", "tomaría": "tom", "tomarían": "tom", "tomarla": "tom", "tomarle": "tom", "tomarlo": "tom", "tomarnos": "tom", "tomaron": "tom", "tomarse": "tom", "tomas": "tom", "tomás": "tomas", "tomate": "tomat", "tome": "tom", "tomé": "tom", "tomemos": "tom", "tomen": "tom", "tómese": "tomes", "tomlinson": "tomlinson", "tomo": "tom", "tomó": "tom", "tona": "ton", "tonada": "ton", "tonalidades": "tonal", "tonelada": "tonel", "toneladas": "tonel", "tonelaje": "tonelaj", "tónica": "tonic", "tónicos": "tonic", "toninho": "toninh", "tono": "ton", "toño": "toñ", "tontería": "tont", "tonto": "tont", "tontos": "tont", "tony": "tony", "toole": "tool", "topa": "top", "toparon": "top", "toparse": "top", "topaz": "topaz", "tope": "top", "topes": "top", "topete": "topet", "topeteaba": "topet", "topia": "topi", "tópico": "topic", "tópicos": "topic", "topo": "top", "topografía": "topograf", "topologías": "topolog", "toque": "toqu", "toques": "toqu", "toqui": "toqui", "torá": "tor", "tórax": "torax", "torcer": "torc", "toreado": "tor", "toreados": "tor", "toreándolo": "tor", "torear": "tor", "toreara": "tor", "torearlo": "tor", "toreó": "tore", "torero": "torer", "toreros": "torer", "torio": "tori", "tormenta": "torment", "tormentas": "torment", "tornado": "torn", "tornados": "torn", "tornar": "torn", "tornen": "torn", "torneo": "torne", "torneos": "torne", "tornillo": "tornill", "tornillos": "tornill", "torniquete": "torniquet", "torno": "torn", "toro": "tor", "toronto": "toront", "toros": "tor", "torpedearon": "torped", "torpeza": "torpez", "torrado": "torr", "torralba": "torralb", "torre": "torr", "torrencial": "torrencial", "torrenciales": "torrencial", "torrente": "torrent", "torreon": "torreon", "torreón": "torreon", "torres": "torr", "torrescano": "torrescan", "torresmochas": "torresmoch", "torricelli": "torricelli", "tortícolis": "torticolis", "tortilla": "tortill", "tortillas": "tortill", "tortillero": "tortiller", "tortuga": "tortug", "tortugueras": "tortuguer", "tortuguismo": "tortugu", "torturados": "tortur", "torturaron": "tortur", "torturas": "tortur", "torturoso": "tortur", "tos": "tos", "toscano": "toscan", "tosferina": "tosferin", "tostado": "tost", "tota": "tot", "total": "total", "totales": "total", "totalidad": "total", "totalizó": "totaliz", "totalmente": "total", "totopos": "totop", "tottenham": "tottenham", "touché": "touch", "tour": "tour", "tovar": "tov", "tóxica": "toxic", "tóxicas": "toxic", "tóxicos": "toxic", "toyota": "toyot", "tpc": "tpc", "tqm": "tqm", "trabado": "trab", "trabaja": "trabaj", "trabajaba": "trabaj", "trabajaban": "trabaj", "trabajada": "trabaj", "trabajado": "trabaj", "trabajador": "trabaj", "trabajadora": "trabaj", "trabajadoras": "trabaj", "trabajadores": "trabaj", "trabajamos": "trabaj", "trabajan": "trabaj", "trabajando": "trabaj", "trabajar": "trabaj", "trabajara": "trabaj", "trabajará": "trabaj", "trabajarán": "trabaj", "trabajaron": "trabaj", "trabajemos": "trabaj", "trabajen": "trabaj", "trabajo": "trabaj", "trabajó": "trabaj", "trabajos": "trabaj", "trabas": "trab", "trabó": "trab", "tracción": "traccion", "tracen": "trac", "track": "track", "tractor": "tractor", "tradición": "tradicion", "tradicional": "tradicional", "tradicionales": "tradicional", "tradicionalmente": "tradicional", "tradiciones": "tradicion", "traducción": "traduccion", "traducciones": "traduccion", "traduce": "traduc", "traducida": "traduc", "traducido": "traduc", "traducidos": "traduc", "traducir": "traduc", "traduciría": "traduc", "traducirse": "traduc", "tradujo": "traduj", "trae": "tra", "traemos": "tra", "traen": "tra", "traer": "tra", "traerá": "tra", "traerán": "tra", "traeré": "tra", "traería": "tra", "traerla": "tra", "traernos": "tra", "traes": "tra", "traficante": "trafic", "trafico": "trafic", "tráfico": "trafic", "tragar": "trag", "tragarse": "trag", "tragedia": "tragedi", "trágica": "tragic", "trágico": "tragic", "tragó": "trag", "tragos": "trag", "trague": "trag", "traía": "tra", "traían": "tra", "traición": "traicion", "traicionado": "traicion", "traicionados": "traicion", "traidor": "traidor", "traídos": "traid", "traiga": "traig", "traigan": "traig", "traigo": "traig", "trailer": "trail", "trailero": "trailer", "traileros": "trailer", "trailers": "trailers", "traje": "traj", "trajeron": "trajeron", "trajes": "traj", "trajo": "traj", "trama": "tram", "tramitación": "tramit", "tramitando": "tramit", "tramitar": "tramit", "trámite": "tramit", "trámites": "tramit", "tramitó": "tramit", "tramitología": "tramitolog", "tramo": "tram", "tramos": "tram", "trampa": "tramp", "trampas": "tramp", "tramposo": "trampos", "trancas": "tranc", "trancazo": "trancaz", "trance": "tranc", "tranquila": "tranquil", "tranquilamente": "tranquil", "tranquilas": "tranquil", "tranquilidad": "tranquil", "tranquilizara": "tranquiliz", "tranquilizarlo": "tranquiliz", "tranquilizó": "tranquiliz", "tranquilo": "tranquil", "tranquilos": "tranquil", "trans": "trans", "transa": "trans", "transacción": "transaccion", "transacciones": "transaccion", "transamos": "trans", "transborda": "transbord", "transbordador": "transbord", "transbordadores": "transbord", "transbordar": "transbord", "transbordo": "transbord", "transcribe": "transcrib", "transcurra": "transcurr", "transcurrido": "transcurr", "transcurridos": "transcurr", "transcurriendo": "transcurr", "transcurrieron": "transcurr", "transcurrir": "transcurr", "transcurso": "transcurs", "transero": "transer", "transeros": "transer", "transeúnte": "transeunt", "transeúntes": "transeunt", "transexual": "transexual", "transexuales": "transexual", "transferencia": "transferent", "transferencias": "transferent", "transferir": "transfer", "transfieren": "transfier", "transfirió": "transfir", "transformación": "transform", "transformaciones": "transform", "transformado": "transform", "transformador": "transform", "transforman": "transform", "transformando": "transform", "transformar": "transform", "transformaren": "transformar", "transformaría": "transform", "transformaron": "transform", "transformarse": "transform", "transfronterizas": "transfronteriz", "transfusiones": "transfusion", "transición": "transicion", "transija": "transij", "transita": "transit", "transitaban": "transit", "transitada": "transit", "transitado": "transit", "transitados": "transit", "transitar": "transit", "transitará": "transit", "transitarán": "transit", "tránsito": "transit", "transitó": "transit", "transitorio": "transitori", "transmisión": "transmision", "transmisiones": "transmision", "transmita": "transmit", "transmitan": "transmit", "transmite": "transmit", "transmiten": "transmit", "transmitida": "transmit", "transmitido": "transmit", "transmitieran": "transmit", "transmitieron": "transmit", "transmitir": "transmit", "transmitirá": "transmit", "transmitirán": "transmit", "transnacional": "transnacional", "transnacionales": "transnacional", "transparencia": "transparent", "transparentar": "transparent", "transparentarse": "transparent", "transparente": "transparent", "transparentes": "transparent", "transpeninsular": "transpeninsul", "transport": "transport", "transporta": "transport", "transportaba": "transport", "transportaban": "transport", "transportación": "transport", "transportaciones": "transport", "transportada": "transport", "transportadoras": "transport", "transportan": "transport", "transportando": "transport", "transportar": "transport", "transportaría": "transport", "transportarse": "transport", "transporte": "transport", "transportes": "transport", "transportista": "transport", "transportistas": "transport", "transversales": "transversal", "tranvías": "tranv", "trapeadores": "trapeador", "trapeas": "trap", "tras": "tras", "trasatlántico": "trasatlant", "trascendencia": "trascendent", "trascendental": "trascendental", "trascendentales": "trascendental", "trascender": "trascend", "trasera": "traser", "traseras": "traser", "trasero": "traser", "traseros": "traser", "trasfondo": "trasfond", "trasfondos": "trasfond", "traslación": "traslacion", "traslada": "trasl", "trasladaba": "traslad", "trasladado": "traslad", "trasladados": "traslad", "trasladar": "traslad", "trasladarán": "traslad", "trasladarla": "traslad", "trasladarse": "traslad", "trasládese": "traslades", "traslado": "trasl", "trasladó": "traslad", "traslados": "trasl", "trasmisión": "trasmision", "trasmite": "trasmit", "trasmitirlo": "trasmit", "trasnacional": "trasnacional", "trasnacionales": "trasnacional", "trasnacionalización": "trasnacionaliz", "trasplantados": "trasplant", "trasplante": "trasplant", "trasplantes": "trasplant", "trasporte": "trasport", "traste": "trast", "trasteo": "traste", "trastoca": "trastoc", "trastocan": "trastoc", "trastorna": "trastorn", "trastornó": "trastorn", "trastornos": "trastorn", "trata": "trat", "trataba": "trat", "trataban": "trat", "tratada": "trat", "tratadas": "trat", "tratado": "trat", "tratadoras": "tratador", "tratados": "trat", "tratamiento": "tratamient", "tratamientos": "tratamient", "tratamos": "trat", "tratan": "trat", "tratando": "trat", "tratándose": "trat", "tratar": "trat", "tratara": "trat", "tratará": "trat", "tratarán": "trat", "trataremos": "trat", "trataría": "trat", "trataron": "trat", "tratarse": "trat", "tratas": "trat", "trate": "trat", "traté": "trat", "traten": "trat", "trato": "trat", "trató": "trat", "tratos": "trat", "traumatismo": "traumat", "traumatología": "traumatolog", "través": "traves", "travesaño": "travesañ", "travieso": "travies", "travis": "travis", "trayecto": "trayect", "trayectoria": "trayectori", "trayendo": "trayend", "trazadas": "traz", "trazado": "traz", "trazo": "traz", "trazó": "traz", "trazos": "traz", "trece": "trec", "trecho": "trech", "trechos": "trech", "tregua": "tregu", "treinta": "treint", "trejo": "trej", "tremenda": "tremend", "tremendamente": "tremend", "tremendas": "tremend", "tremendo": "tremend", "tremendos": "tremend", "tren": "tren", "trenes": "tren", "trenza": "trenz", "trepó": "trep", "tres": "tres", "tress": "tress", "treta": "tret", "treto": "tret", "trevi": "trevi", "treviñada": "treviñ", "treviñista": "treviñ", "treviño": "treviñ", "tri": "tri", "triana": "trian", "triángulo": "triangul", "tribuna": "tribun", "tribunal": "tribunal", "tribunales": "tribunal", "tribunas": "tribun", "tributarias": "tributari", "tributario": "tributari", "tributarle": "tribut", "tributos": "tribut", "tricampeón": "tricampeon", "tricolor": "tricolor", "tricolores": "tricolor", "tridimensional": "tridimensional", "trigésimo": "trigesim", "trigo": "trig", "trigon": "trigon", "trilateral": "trilateral", "trillado": "trill", "trimestre": "trimestr", "trinchera": "trincher", "trinidad": "trinid", "trío": "tri", "tríos": "tri", "tripa": "trip", "tripartita": "tripartit", "triple": "tripl", "tripleta": "triplet", "triplicaron": "triplic", "tripulación": "tripul", "tripulado": "tripul", "tripulados": "tripul", "tripulando": "tripul", "tripulantes": "tripul", "tripular": "tripul", "tripulará": "tripul", "triquiñuela": "triquiñuel", "tris": "tris", "tristán": "tristan", "triste": "trist", "tristemente": "tristement", "tristes": "trist", "tristeza": "tristez", "tritt": "tritt", "triunfa": "triunf", "triunfado": "triunf", "triunfador": "triunfador", "triunfadora": "triunfador", "triunfadores": "triunfador", "triunfal": "triunfal", "triunfalismo": "triunfal", "triunfalista": "triunfal", "triunfalmente": "triunfal", "triunfantes": "triunfant", "triunfar": "triunf", "triunfaría": "triunf", "triunfaron": "triunf", "triunfo": "triunf", "triunfos": "triunf", "trivial": "trivial", "trizados": "triz", "trofeo": "trofe", "trofeos": "trofe", "trolebús": "trolebus", "trompeta": "trompet", "trompetero": "trompeter", "trompetista": "trompet", "trompetística": "trompetist", "troncales": "troncal", "tronco": "tronc", "troncos": "tronc", "trono": "tron", "tropa": "trop", "tropas": "trop", "tropezar": "tropez", "tropezón": "tropezon", "tropicosas": "tropic", "tropiezos": "tropiez", "trota": "trot", "trotamundos": "trotamund", "trotando": "trot", "trotar": "trot", "trote": "trot", "trousseau": "trousseau", "trout": "trout", "troy": "troy", "troyanos": "troyan", "truenan": "truen", "truene": "truen", "trujillo": "trujill", "truman": "trum", "trump": "trump", "trust": "trust", "tryon": "tryon", "tsi": "tsi", "tsmbién": "tsmbien", "tsubame": "tsubam", "tsuru": "tsuru", "tu": "tu", "tú": "tu", "tubacero": "tubacer", "tubería": "tub", "tuberías": "tub", "tubo": "tub", "tubos": "tub", "tuercas": "tuerc", "tuerto": "tuert", "tulancingo": "tulancing", "tules": "tul", "tulin": "tulin", "tull": "tull", "tulle": "tull", "tum": "tum", "tumba": "tumb", "tumbado": "tumb", "tumbas": "tumb", "tumor": "tumor", "tumoral": "tumoral", "tumores": "tumor", "tumultuosa": "tumultu", "túnel": "tunel", "túneles": "tunel", "tunguska": "tungusk", "túnicas": "tunic", "tupac": "tupac", "tupamaros": "tupamar", "turbias": "turbi", "turbina": "turbin", "turbo": "turb", "turcos": "turc", "turismo": "turism", "turista": "turist", "turistas": "turist", "turística": "turist", "turísticas": "turist", "turistico": "turist", "turístico": "turist", "turísticos": "turist", "turna": "turn", "turnbull": "turnbull", "turneriano": "turnerian", "turno": "turn", "turnó": "turn", "turnos": "turn", "turquía": "turqu", "tus": "tus", "tutelar": "tutel", "tuve": "tuv", "tuviera": "tuv", "tuvieran": "tuv", "tuvieron": "tuv", "tuvimos": "tuv", "tuvo": "tuv", "tuxpan": "tuxp", "tuxtla": "tuxtl", "tuya": "tuy", "tuyo": "tuy", "tuzo": "tuz", "tuzos": "tuz", "tv": "tv", "tyson": "tyson", "u": "u", "uag": "uag", "uane": "uan", "uanl": "uanl", "uap": "uap", "uat": "uat", "ubica": "ubic", "ubicaba": "ubic", "ubicaban": "ubic", "ubicación": "ubic", "ubicada": "ubic", "ubicadas": "ubic", "ubicado": "ubic", "ubicados": "ubic", "ubican": "ubic", "ubicando": "ubic", "ubicándolo": "ubic", "ubicar": "ubic", "ubicara": "ubic", "ubicará": "ubic", "ubicarían": "ubic", "ubicarlos": "ubic", "ubicarnos": "ubic", "ubicaron": "ubic", "ubicarse": "ubic", "ubicársele": "ubicarsel", "ubicó": "ubic", "ucalli": "ucalli", "ucayali": "ucayali", "ucimme": "ucimm", "ucrania": "ucrani", "ucraniano": "ucranian", "udeg": "udeg", "udem": "udem", "udinese": "udines", "ugalde": "ugald", "ugarte": "ugart", "uglilia": "uglili", "ugocp": "ugocp", "uhagon": "uhagon", "uhf": "uhf", "úlcera": "ulcer", "ulises": "ulis", "ullami": "ullami", "ulloa": "ullo", "última": "ultim", "últimamente": "ultim", "últimas": "ultim", "ultimo": "ultim", "último": "ultim", "ultimos": "ultim", "últimos": "ultim", "ultra": "ultra", "ultrajó": "ultraj", "ultranza": "ultranz", "ultravioleta": "ultraviolet", "umbral": "umbral", "un": "un", "una": "una", "unacolumna": "unacolumn", "unam": "unam", "unamitas": "unamit", "unan": "unan", "unánime": "unanim", "unánimemente": "unanim", "unanimidad": "unanim", "unas": "unas", "uñas": "uñas", "undiano": "undian", "une": "une", "unesco": "unesc", "unforgettable": "unforgett", "unía": "uni", "única": "unic", "unicamente": "unic", "únicamente": "unic", "únicas": "unic", "unico": "unic", "único": "unic", "únicos": "unic", "unidad": "unid", "unidades": "unidad", "unidas": "unid", "unidimensional": "unidimensional", "unido": "unid", "unidos": "unid", "unieron": "unieron", "unifamiliares": "unifamiliar", "unificación": "unif", "unificadas": "unific", "unificado": "unific", "unificar": "unific", "uniformada": "uniform", "uniformado": "uniform", "uniformados": "uniform", "uniformar": "uniform", "uniforme": "uniform", "uniformes": "uniform", "unilateral": "unilateral", "unilaterales": "unilateral", "unilateralmente": "unilateral", "unimóvil": "unimovil", "unió": "uni", "unión": "union", "uniones": "union", "unir": "unir", "unirá": "unir", "uniría": "unir", "unirse": "unirs", "unisex": "unisex", "unitardos": "unitard", "unitario": "unitari", "united": "unit", "univ": "univ", "universal": "universal", "universales": "universal", "universalmente": "universal", "universidad": "univers", "universidades": "univers", "universitaria": "universitari", "universitarias": "universitari", "universitario": "universitari", "universitarios": "universitari", "university": "university", "universo": "univers", "unix": "unix", "uno": "uno", "unos": "unos", "unplugged": "unplugg", "unzueta": "unzuet", "up": "up", "upi": "upi", "ur": "ur", "urbana": "urban", "urbanas": "urban", "urbanistas": "urban", "urbanístico": "urbanist", "urbanísticos": "urbanist", "urbano": "urban", "urbanos": "urban", "urbieta": "urbiet", "urdió": "urdi", "urge": "urge", "urgen": "urgen", "urgencia": "urgenci", "urgencias": "urgenci", "urgente": "urgent", "urgentes": "urgent", "urgida": "urgid", "uribe": "urib", "urista": "urist", "urna": "urna", "urnas": "urnas", "uro": "uro", "urrea": "urre", "urss": "urss", "ursula": "ursul", "urtiz": "urtiz", "uruapan": "uruap", "uruguay": "uruguay", "uruguayo": "uruguay", "urzúa": "urzu", "usa": "usa", "usaba": "usab", "usaban": "usab", "usada": "usad", "usadas": "usad", "usado": "usad", "usados": "usad", "usan": "usan", "usando": "usand", "usar": "usar", "usara": "usar", "usará": "usar", "usarán": "usaran", "usarla": "usarl", "usarlos": "usarl", "usaron": "usaron", "usarse": "usars", "use": "use", "usen": "usen", "usis": "usis", "uso": "uso", "usó": "uso", "usos": "usos", "usted": "usted", "ustedes": "usted", "usuales": "usual", "usuario": "usuari", "usuarios": "usuari", "usura": "usur", "usureros": "usurer", "usurpación": "usurp", "útero": "uter", "útil": "util", "utilería": "util", "utilerías": "util", "utilice": "utilic", "utilidad": "util", "utilidades": "util", "utiliza": "utiliz", "utilizaba": "utiliz", "utilizaban": "utiliz", "utilización": "utiliz", "utilizada": "utiliz", "utilizadas": "utiliz", "utilizado": "utiliz", "utilizados": "utiliz", "utilizamos": "utiliz", "utilizan": "utiliz", "utilizando": "utiliz", "utilizar": "utiliz", "utilizará": "utiliz", "utilizarán": "utiliz", "utilizarla": "utiliz", "utilizarlo": "utiliz", "utilizaron": "utiliz", "utilizarse": "utiliz", "utilizó": "utiliz", "utopía": "utop", "utopías": "utop", "utópicas": "utop", "uy": "uy", "v": "v", "va": "va", "vaca": "vac", "vacacionar": "vacacion", "vacaciones": "vacacion", "vacas": "vac", "vacía": "vac", "vaciado": "vaci", "vacías": "vac", "vacila": "vacil", "vacilada": "vacil", "vacilan": "vacil", "vacilando": "vacil", "vacilante": "vacil", "vacilar": "vacil", "vaciló": "vacil", "vacilón": "vacilon", "vacío": "vaci", "vació": "vac", "vacíos": "vaci", "vacuna": "vacun", "vacunación": "vacun", "vacunas": "vacun", "vado": "vad", "vagabundo": "vagabund", "vagina": "vagin", "vagones": "vagon", "vagoneta": "vagonet", "vagos": "vag", "vaivenes": "vaiven", "vajilla": "vajill", "val": "val", "valde": "vald", "valdés": "valdes", "valdez": "valdez", "valdo": "vald", "valdrá": "valdr", "valdría": "valdr", "vale": "val", "valedores": "valedor", "valegorrista": "valegorr", "valemos": "val", "valen": "val", "valencia": "valenci", "valens": "valens", "valente": "valent", "valentia": "valenti", "valentía": "valent", "valentín": "valentin", "valentino": "valentin", "valenzuela": "valenzuel", "valer": "val", "valeri": "valeri", "valero": "valer", "valet": "valet", "valga": "valg", "valgan": "valg", "valía": "val", "validez": "validez", "valido": "val", "válido": "val", "valiente": "valient", "valieron": "val", "valió": "val", "valiosa": "valios", "valiosas": "vali", "valioso": "valios", "valiosos": "valios", "valium": "valium", "valla": "vall", "valladares": "valladar", "vallarta": "vallart", "vallas": "vall", "valle": "vall", "vallecano": "vallecan", "vallecillo": "vallecill", "vallecillos": "vallecill", "vallejo": "vallej", "valles": "vall", "valley": "valley", "valor": "valor", "valora": "valor", "valoraba": "valor", "valoración": "valor", "valoradas": "valor", "valorado": "valor", "valorados": "valor", "valorar": "valor", "valorarlo": "valor", "valoraron": "valor", "valore": "valor", "valores": "valor", "valorizada": "valoriz", "valparaíso": "valparais", "valtierra": "valtierr", "valuación": "valuacion", "valuadas": "valu", "value": "valu", "válvulas": "valvul", "vamos": "vam", "vampiro": "vampir", "vampiros": "vampir", "van": "van", "vandálicos": "vandal", "vandalismo": "vandal", "vanderley": "vanderley", "vanette": "vanett", "vanguardia": "vanguardi", "vanguardista": "vanguard", "vanguardistas": "vanguard", "vanidad": "vanid", "vanidades": "vanidad", "vanilli": "vanilli", "vánitas": "vanit", "vanity": "vanity", "vano": "van", "vanos": "van", "vapor": "vapor", "vaporizaciones": "vaporiz", "vaporizarlas": "vaporiz", "vaporosa": "vapor", "vaporosos": "vapor", "vaquera": "vaquer", "vaquerías": "vaqu", "vaquero": "vaquer", "vaqueros": "vaquer", "varada": "var", "varados": "var", "varela": "varel", "vargas": "varg", "varía": "var", "variable": "variabl", "variables": "variabl", "variación": "variacion", "variaciones": "variacion", "variada": "vari", "variado": "vari", "variados": "vari", "varían": "var", "variando": "vari", "variantes": "variant", "varias": "vari", "varicela": "varicel", "variedad": "varied", "variedades": "variedad", "variopinta": "variopint", "varios": "vari", "varita": "varit", "varón": "varon", "varones": "varon", "varonil": "varonil", "varoniles": "varonil", "vas": "vas", "vasco": "vasc", "vasconcelos": "vasconcel", "vaso": "vas", "vasos": "vas", "vásquez": "vasquez", "vasto": "vast", "vaticano": "vatican", "vaticinado": "vaticin", "vaticinar": "vaticin", "vaticinaron": "vaticin", "vaticinen": "vaticin", "vaticinios": "vaticini", "vaticinó": "vaticin", "vax": "vax", "vaxstations": "vaxstations", "vaya": "vay", "vayamos": "vay", "vayan": "vay", "vazquez": "vazquez", "vázquez": "vazquez", "vcr": "vcr", "ve": "ve", "vea": "vea", "veamos": "veam", "vean": "vean", "veces": "vec", "vecina": "vecin", "vecinal": "vecinal", "vecinales": "vecinal", "vecinas": "vecin", "vecindad": "vecind", "vecindario": "vecindari", "vecino": "vecin", "vecinos": "vecin", "vector": "vector", "vega": "veg", "vegetación": "veget", "vegetales": "vegetal", "vegetarianismo": "vegetarian", "vegetarianos": "vegetarian", "vegetativo": "veget", "vehemencia": "vehement", "vehemente": "vehement", "vehicular": "vehicul", "vehiculares": "vehicular", "vehículo": "vehicul", "vehículos": "vehicul", "veía": "vei", "veían": "vei", "veinte": "veint", "veinteañeros": "veinteañer", "veintena": "veinten", "veinticinco": "veinticinc", "veintiseis": "veintiseis", "vejarrón": "vejarron", "vejez": "vejez", "vela": "vel", "velada": "vel", "velador": "velador", "velando": "vel", "velarde": "velard", "velas": "vel", "velasco": "velasc", "velázquez": "velazquez", "velero": "veler", "vélez": "velez", "vellones": "vellon", "velocidad": "veloc", "velocidades": "veloc", "velocímetro": "velocimetr", "velos": "vel", "veloso": "velos", "vemos": "vem", "ven": "ven", "vena": "ven", "venado": "ven", "vence": "venc", "vencedor": "vencedor", "vencedores": "vencedor", "vencer": "venc", "vencerás": "venc", "vencerse": "venc", "vencida": "venc", "vencidas": "venc", "vencido": "venc", "vencidos": "venc", "vencieron": "venc", "vencimiento": "vencimient", "vencimientos": "vencimient", "venció": "venc", "venda": "vend", "vendados": "vend", "vendan": "vend", "vendaron": "vend", "vende": "vend", "vendedor": "vendedor", "vendedora": "vendedor", "vendedores": "vendedor", "vendemos": "vend", "venden": "vend", "vender": "vend", "venderá": "vend", "venderán": "vend", "venderemos": "vend", "vendería": "vend", "venderla": "vend", "venderlo": "vend", "venderse": "vend", "vendía": "vend", "vendida": "vend", "vendidas": "vend", "vendido": "vend", "vendidos": "vend", "vendiendo": "vend", "vendiéndose": "vend", "vendiera": "vend", "vendieron": "vend", "vendió": "vend", "vendo": "vend", "vendrá": "vendr", "vendrán": "vendran", "venegas": "veneg", "veneno": "venen", "veneraban": "vener", "veneración": "vener", "venezolana": "venezolan", "venezolano": "venezolan", "venezolanos": "venezolan", "venezuela": "venezuel", "venga": "veng", "vengadores": "vengador", "vengan": "veng", "venganza": "venganz", "vengo": "veng", "venía": "ven", "venían": "ven", "venicio": "venici", "venida": "ven", "venido": "ven", "venidos": "ven", "venimos": "ven", "venir": "ven", "venirse": "ven", "venta": "vent", "ventaja": "ventaj", "ventajas": "ventaj", "ventajosa": "ventaj", "ventajosas": "ventaj", "ventana": "ventan", "ventanas": "ventan", "ventanilla": "ventanill", "ventas": "vent", "ventila": "ventil", "ventilación": "ventil", "ventilar": "ventil", "ventilaron": "ventil", "ventilas": "ventil", "ventre": "ventr", "ventura": "ventur", "venus": "venus", "venustiano": "venustian", "veo": "veo", "ver": "ver", "vera": "ver", "verá": "ver", "veracruz": "veracruz", "veracruzana": "veracruzan", "veracruzano": "veracruzan", "veracruzanos": "veracruzan", "verán": "veran", "verano": "veran", "veras": "ver", "verbal": "verbal", "verbales": "verbal", "verbalista": "verbal", "verbalmente": "verbal", "verbo": "verb", "verdad": "verd", "verdadera": "verdader", "verdaderamente": "verdader", "verdaderas": "verdader", "verdadero": "verdader", "verdaderos": "verdader", "verdades": "verdad", "verde": "verd", "verdes": "verd", "verdirame": "verdiram", "verdugo": "verdug", "verduras": "verdur", "verduzco": "verduzc", "veré": "ver", "veredalta": "veredalt", "veredas": "vered", "veredicto": "veredict", "veremos": "ver", "vergonzante": "vergonz", "vergonzosos": "vergonz", "vergüenza": "vergüenz", "vería": "ver", "veríamos": "ver", "verificaba": "verific", "verificación": "verif", "verifican": "verific", "verificar": "verific", "verificaron": "verific", "verificó": "verific", "verla": "verl", "verlas": "verl", "verlo": "verl", "verlos": "verl", "verme": "verm", "verónica": "veron", "verónicas": "veron", "verrugas": "verrug", "versa": "vers", "versace": "versac", "versátil": "versatil", "versatilidad": "versatil", "verse": "vers", "versificación": "versif", "versión": "version", "versiones": "version", "versos": "vers", "versus": "versus", "verte": "vert", "vertebral": "vertebral", "vertical": "vertical", "vertida": "vert", "vertidas": "vert", "vertido": "vert", "vertientes": "vertient", "very": "very", "ves": "ves", "vespertino": "vespertin", "vestía": "vest", "vestida": "vest", "vestido": "vest", "vestidos": "vest", "vestidura": "vestidur", "vestiduras": "vestidur", "vestigio": "vestigi", "vestimos": "vest", "vestir": "vest", "vestirse": "vest", "vestuario": "vestuari", "vetado": "vet", "vetará": "vet", "veterano": "veteran", "veteranos": "veteran", "veterinarias": "veterinari", "veto": "vet", "vetó": "vet", "vez": "vez", "vi": "vi", "vía": "via", "viabilidad": "viabil", "viable": "viabl", "viaducto": "viaduct", "viaja": "viaj", "viajaba": "viaj", "viajaban": "viaj", "viajado": "viaj", "viajan": "viaj", "viajar": "viaj", "viajará": "viaj", "viajarán": "viaj", "viajarían": "viaj", "viajaron": "viaj", "viaje": "viaj", "viajen": "viaj", "viajero": "viajer", "viajeros": "viajer", "viajes": "viaj", "viajó": "viaj", "vial": "vial", "viales": "vial", "vialidad": "vialid", "vialidades": "vialidad", "viandas": "viand", "vianey": "vianey", "vías": "vias", "víbora": "vibor", "vibra": "vibr", "vibraciones": "vibracion", "vibradores": "vibrador", "vibrar": "vibr", "vicario": "vicari", "vice": "vic", "vicecanciller": "vicecancill", "vicente": "vicent", "vicepresidencia": "vicepresident", "vicepresidente": "vicepresident", "viceversa": "vicevers", "vicio": "vici", "vicios": "vici", "viciosas": "vici", "vícitma": "vicitm", "vicky": "vicky", "víctima": "victim", "victimado": "victim", "víctimas": "victim", "víctor": "victor", "victoria": "victori", "victoriana": "victorian", "victoriano": "victorian", "victorias": "victori", "victorioso": "victori", "victoriosos": "victori", "vida": "vid", "vidal": "vidal", "vidales": "vidal", "vidas": "vid", "vidente": "vident", "videntes": "vident", "video": "vide", "videocasetera": "videocaseter", "videocasetes": "videocaset", "videocentros": "videocentr", "videoclip": "videoclip", "videoclubes": "videoclub", "videohomes": "videohom", "videomax": "videomax", "videopelícula": "videopelicul", "videos": "vide", "vidrio": "vidri", "vidrios": "vidri", "vieira": "vieir", "vieja": "viej", "viejas": "viej", "viejecita": "viejecit", "viejita": "viejit", "viejito": "viejit", "viejitos": "viejit", "viejo": "viej", "viejón": "viejon", "viejos": "viej", "viena": "vien", "viendo": "viend", "viendose": "viendos", "viene": "vien", "vienen": "vien", "viento": "vient", "vientos": "vient", "vientre": "vientr", "vientres": "vientr", "viera": "vier", "viernes": "viern", "vieron": "vieron", "viesca": "viesc", "vietnam": "vietnam", "view": "view", "vigas": "vig", "vigencia": "vigenci", "vigente": "vigent", "vigentes": "vigent", "vigésima": "vigesim", "vigésimacuarta": "vigesimacuart", "vigésimo": "vigesim", "vigil": "vigil", "vigila": "vigil", "vigilaban": "vigil", "vigilada": "vigil", "vigiladas": "vigil", "vigilado": "vigil", "vigilados": "vigil", "vigilancia": "vigil", "vigilante": "vigil", "vigilantes": "vigil", "vigilar": "vigil", "vigilará": "vigil", "vigilarlas": "vigil", "vigile": "vigil", "vigilen": "vigil", "vigilia": "vigili", "vigo": "vig", "vigor": "vigor", "vigoroso": "vigor", "viii": "viii", "villa": "vill", "villacaña": "villacañ", "villada": "vill", "villagómez": "villagomez", "villagrán": "villagran", "villahermosa": "villaherm", "villalba": "villalb", "villaldama": "villaldam", "villalobos": "villalob", "villamar": "villam", "villán": "villan", "villanueva": "villanuev", "villar": "vill", "villarreal": "villarreal", "villasana": "villasan", "villaseñor": "villaseñor", "villauto": "villaut", "villegas": "villeg", "villuendas": "villuend", "vimos": "vim", "vimosa": "vimos", "viña": "viñ", "vincent": "vincent", "vincula": "vincul", "vinculación": "vincul", "vinculadas": "vincul", "vinculado": "vincul", "vinculados": "vincul", "vincular": "vincul", "vincularse": "vincul", "vinculo": "vincul", "vínculo": "vincul", "vínculos": "vincul", "vine": "vin", "viniendo": "vin", "viniera": "vin", "vinieran": "vin", "vinieron": "vin", "vino": "vin", "vinyard": "vinyard", "vio": "vio", "violación": "violacion", "violaciones": "violacion", "violada": "viol", "violado": "viol", "violador": "violador", "violadores": "violador", "violan": "viol", "violando": "viol", "violar": "viol", "violatorias": "violatori", "violencia": "violenci", "violenta": "violent", "violentada": "violent", "violentamente": "violent", "violentaría": "violent", "violentas": "violent", "violento": "violent", "violentos": "violent", "violeta": "violet", "violetina": "violetin", "violín": "violin", "violinista": "violin", "violó": "viol", "vips": "vips", "virgen": "virg", "vírgenes": "virgen", "virginia": "virgini", "virilidad": "viril", "virreinato": "virreinat", "virtual": "virtual", "virtud": "virtud", "virtudes": "virtud", "virtuosa": "virtuos", "virtuosos": "virtuos", "virulentos": "virulent", "visa": "vis", "visag": "visag", "viscatán": "viscatan", "viscencio": "viscenci", "viscerales": "visceral", "visibilidad": "visibil", "visible": "visibl", "visiblemente": "visibl", "visión": "vision", "visionarios": "visionari", "visiones": "vision", "visires": "visir", "visita": "visit", "visitaba": "visit", "visitadas": "visit", "visitado": "visit", "visitaduría": "visitadur", "visitan": "visit", "visitando": "visit", "visitante": "visit", "visitantes": "visit", "visitar": "visit", "visitara": "visit", "visitará": "visit", "visitarán": "visit", "visitaría": "visit", "visitarla": "visit", "visitaron": "visit", "visitas": "visit", "visite": "visit", "visiten": "visit", "visiteo": "visite", "visitiendo": "visit", "visitó": "visit", "viskin": "viskin", "vislumbra": "vislumbr", "vislumbran": "vislumbr", "vislumbrar": "vislumbr", "vislumbraron": "vislumbr", "vislumbró": "vislumbr", "visora": "visor", "visos": "vis", "víspera": "visper", "vísperas": "visper", "vista": "vist", "vistas": "vist", "vistazo": "vistaz", "visten": "vist", "vistiendo": "vist", "vistió": "vist", "visto": "vist", "vistos": "vist", "vistoso": "vistos", "vistosos": "vistos", "visual": "visual", "visuales": "visual", "visualice": "visualic", "visualizaban": "visualiz", "visualización": "visualiz", "visualizado": "visualiz", "visualizar": "visualiz", "visualmente": "visual", "vital": "vital", "vitales": "vital", "vitalicio": "vitalici", "vitalidad": "vital", "vitamina": "vitamin", "vitaminas": "vitamin", "vite": "vit", "vito": "vit", "vítores": "vitor", "vitro": "vitr", "vitroles": "vitrol", "vittorio": "vittori", "vituperado": "vituper", "vituperados": "vituper", "viuda": "viud", "viudas": "viud", "viudo": "viud", "viva": "viv", "vivales": "vival", "vivan": "viv", "vivas": "viv", "vive": "viv", "viven": "viv", "víveres": "viver", "vivero": "viver", "viví": "viv", "vivía": "viv", "vivíamos": "viv", "vivían": "viv", "vivible": "vivibl", "vivido": "viv", "vividos": "viv", "vivienda": "viviend", "viviendas": "viviend", "viviendo": "viv", "viviente": "vivient", "vivientes": "vivient", "viviera": "viv", "vivieran": "viv", "vivieron": "viv", "vivillos": "vivill", "vivimos": "viv", "vivió": "viv", "vivir": "viv", "vivirá": "viv", "vivirse": "viv", "vivo": "viv", "vivos": "viv", "vl": "vl", "vladimir": "vladim", "vocabulario": "vocabulari", "vocación": "vocacion", "vocacional": "vocacional", "vocaciones": "vocacion", "vocal": "vocal", "vocalía": "vocal", "vocalista": "vocal", "vocera": "vocer", "vocero": "vocer", "voceros": "vocer", "voces": "voc", "voice": "voic", "voices": "voic", "voladeros": "volader", "volando": "vol", "volante": "volant", "volantes": "volant", "volar": "vol", "volará": "vol", "volaría": "vol", "volátil": "volatil", "volátiles": "volatil", "volatilidad": "volatil", "volcadura": "volcadur", "volcamos": "volc", "volcán": "volcan", "volcanes": "volcan", "volcánica": "volcan", "volcánico": "volcan", "volcar": "volc", "volcaron": "volc", "volcó": "volc", "voleibol": "voleibol", "volga": "volg", "volkswagen": "volkswag", "volmer": "volm", "voltaire": "voltair", "voltea": "volte", "voltear": "volt", "volteó": "volte", "volteretas": "volteret", "voltios": "volti", "volts": "volts", "voluble": "volubl", "volumen": "volum", "volumenes": "volumen", "volúmenes": "volumen", "voluminosísima": "voluminosisim", "voluntad": "volunt", "voluntades": "voluntad", "voluntaria": "voluntari", "voluntariado": "voluntari", "voluntariamente": "voluntari", "voluntarias": "voluntari", "voluntario": "voluntari", "voluntarios": "voluntari", "voluntarioso": "voluntari", "volvamos": "volv", "volver": "volv", "volverá": "volv", "volverán": "volv", "volveré": "volv", "volvería": "volv", "volverlas": "volv", "volverse": "volv", "volvía": "volv", "volviendo": "volv", "volvieron": "volv", "volvimos": "volv", "volvió": "volv", "volvo": "volv", "volvoramírez": "volvoramirez", "vomitar": "vomit", "vómitos": "vomit", "von": "von", "vorazmente": "voraz", "vosso": "voss", "vota": "vot", "votación": "votacion", "votaciones": "votacion", "votantes": "votant", "votar": "vot", "votara": "vot", "votará": "vot", "votarán": "vot", "votaría": "vot", "votaron": "vot", "votarse": "vot", "vote": "vot", "voten": "vot", "voto": "vot", "votó": "vot", "votos": "vot", "voy": "voy", "voz": "voz", "vs": "vs", "vudú": "vudu", "vuelas": "vuel", "vuelca": "vuelc", "vuele": "vuel", "vuelo": "vuel", "vuelos": "vuel", "vuelta": "vuelt", "vueltas": "vuelt", "vuelto": "vuelt", "vuelva": "vuelv", "vuelvan": "vuelv", "vuelve": "vuelv", "vuelven": "vuelv", "vuelvo": "vuelv", "vuestro": "vuestr", "vulcanología": "vulcanolog", "vulcanólogos": "vulcanolog", "vulgar": "vulg", "vulgares": "vulgar", "vulgaridad": "vulgar", "vulgo": "vulg", "vulnerabilidad": "vulner", "vulnerable": "vulner", "vulnerables": "vulner", "vulneran": "vulner", "vw": "vw", "w": "w", "wa": "wa", "wal": "wal", "walberto": "walbert", "walcott": "walcott", "wall": "wall", "wallace": "wallac", "walt": "walt", "walter": "walt", "walterio": "walteri", "walton": "walton", "ward": "ward", "warner": "warn", "warrants": "warrants", "warren": "warr", "washington": "washington", "waterer": "water", "we": "we", "weisackaer": "weisack", "weiss": "weiss", "welch": "welch", "wells": "wells", "welsh": "welsh", "wenceslao": "wencesla", "wendy": "wendy", "west": "west", "western": "western", "westh": "westh", "westinghouse": "westinghous", "wetherell": "wetherell", "weule": "weul", "whataburger": "whataburg", "whisky": "whisky", "widnall": "widnall", "wiesel": "wiesel", "wildlife": "wildlif", "wilford": "wilford", "william": "william", "williams": "williams", "williamson": "williamson", "willie": "willi", "wilson": "wilson", "windows": "windows", "winfield": "winfield", "winston": "winston", "winstone": "winston", "wisconsin": "wisconsin", "woldenberg": "woldenberg", "wong": "wong", "woody": "woody", "worcester": "worcest", "word": "word", "works": "works", "world": "world", "worldnet": "worldnet", "x": "x", "xavier": "xavi", "xenotransplantes": "xenotranspl", "xenotrasplante": "xenotraspl", "xenotrasplantes": "xenotraspl", "xicoténcatl": "xicotencatl", "xiii": "xiii", "xilitla": "xilitl", "xiv": "xiv", "xix": "xix", "xochimilco": "xochimilc", "xochitl": "xochitl", "xóchitl": "xochitl", "xv": "xv", "xvi": "xvi", "xvii": "xvii", "xviii": "xviii", "xx": "xx", "xxi": "xxi", "xxiii": "xxiii", "xxvi": "xxvi", "y": "y", "ya": "ya", "yacía": "yac", "yacimiento": "yacimient", "yacimientos": "yacimient", "yañez": "yañez", "yanni": "yanni", "yardas": "yard", "yarmuch": "yarmuch", "yaroslao": "yarosla", "yate": "yat", "ycosas": "ycos", "years": "years", "yeltsin": "yeltsin", "yendo": "yend", "yerbaniz": "yerbaniz", "yerena": "yeren", "yerno": "yern", "yeso": "yes", "yidish": "yidish", "ylizaliturri": "ylizaliturri", "yo": "yo", "yodo": "yod", "yoga": "yog", "yogurt": "yogurt", "yolanda": "yoland", "yoltectl": "yoltectl", "yonke": "yonk", "yonquero": "yonquer", "york": "york", "yorky": "yorky", "youshimatz": "youshimatz", "yrapuato": "yrapuat", "yuc": "yuc", "yucatán": "yucatan", "yucateca": "yucatec", "yucateco": "yucatec", "yucatecos": "yucatec", "yugoslavia": "yugoslavi", "yugoslavo": "yugoslav", "yukio": "yuki", "yunez": "yunez", "yunta": "yunt", "yuri": "yuri", "yuxtapuesto": "yuxtapuest", "yvonne": "yvonn", "zabludowsky": "zabludowsky", "zacarías": "zac", "zacatecas": "zacatec", "zacatepec": "zacatepec", "zafra": "zafr", "zag": "zag", "zaga": "zag", "zagas": "zag", "zague": "zag", "zaguero": "zaguer", "zagueros": "zaguer", "zahnle": "zahnl", "zaid": "zaid", "zaire": "zair", "zalea": "zale", "zambrano": "zambran", "zamora": "zamor", "zamorano": "zamoran", "zamudio": "zamudi", "zanabria": "zanabri", "zancadilla": "zancadill", "zancudos": "zancud", "zanja": "zanj", "zanjas": "zanj", "zapalinamé": "zapalinam", "zapata": "zapat", "zapatera": "zapater", "zapatilla": "zapatill", "zapatitos": "zapatit", "zapatos": "zapat", "zapoteco": "zapotec", "zar": "zar", "zaragoza": "zaragoz", "zarape": "zarap", "zarapeados": "zarap", "zárate": "zarat", "zarazúa": "zarazu", "zarco": "zarc", "zarpó": "zarp", "ze": "ze", "zedillo": "zedill", "zelanda": "zeland", "zeltún": "zeltun", "zenith": "zenith", "zenón": "zenon", "zepa": "zep", "zepeda": "zeped", "zertuche": "zertuch", "zig": "zig", "zimmerman": "zimmerm", "zinser": "zins", "zínser": "zins", "zona": "zon", "zonas": "zon", "zoológico": "zoolog", "zoológicos": "zoolog", "zorkin": "zorkin", "zorrilla": "zorrill", "zorros": "zorr", "zotoluca": "zotoluc", "zotoluco": "zotoluc", "zotolucos": "zotoluc", "zuazua": "zuazu", "zubillaga": "zubillag", "zubizarreta": "zubizarret", "zulia": "zuli", "zúñiga": "zuñig", "zurcos": "zurc", "zurda": "zurd", "zurdo": "zurd", "zurdos": "zurd", "zurita": "zurit", "zutano": "zutan" } ================================================ FILE: spec/test_data/snowball_fr.json ================================================ { "a": "a", "à": "à", "abailard": "abailard", "abaissait": "abaiss", "abaissant": "abaiss", "abaisse": "abaiss", "abaissé": "abaiss", "abaissement": "abaissement", "abaissent": "abaissent", "abaisser": "abaiss", "abaisserai": "abaiss", "abandon": "abandon", "abandonna": "abandon", "abandonnait": "abandon", "abandonnant": "abandon", "abandonne": "abandon", "abandonné": "abandon", "abandonnée": "abandon", "abandonner": "abandon", "abandonnera": "abandon", "abandonnerait": "abandon", "abandonnés": "abandon", "abandonnez": "abandon", "abasourdi": "abasourd", "abat": "abat", "abattant": "abatt", "abattement": "abatt", "abattit": "abatt", "abattre": "abattr", "abbaye": "abbay", "abbé": "abbé", "abbés": "abbé", "abbesse": "abbess", "abeille": "abeil", "abhorrait": "abhorr", "abhorre": "abhorr", "abhorré": "abhorr", "abîmait": "abîm", "abîme": "abîm", "abîmé": "abîm", "abîmée": "abîm", "abject": "abject", "abjurant": "abjur", "ablutions": "ablut", "abnégation": "abneg", "aboiements": "aboi", "aboiera": "aboi", "abolir": "abol", "abominable": "abomin", "abominablement": "abomin", "abominables": "abomin", "abomination": "abomin", "abondaient": "abond", "abondamment": "abond", "abondance": "abond", "abondant": "abond", "abondante": "abond", "abonde": "abond", "abonné": "abon", "abonnement": "abon", "abord": "abord", "aborda": "abord", "abordaient": "abord", "abordait": "abord", "abordant": "abord", "abordée": "abord", "aborder": "abord", "abordèrent": "abord", "abordés": "abord", "abords": "abord", "aboutit": "about", "aboyaient": "aboi", "aboyèrent": "aboi", "abraham": "abraham", "abrège": "abreg", "abrégé": "abreg", "abrégea": "abreg", "abrégeaient": "abreg", "abrégeait": "abreg", "abrégeant": "abreg", "abréger": "abreg", "abrégera": "abreg", "abrégerait": "abreg", "abrégés": "abreg", "abreuvoir": "abreuvoir", "abréviations": "abrévi", "abri": "abri", "abritât": "abrit", "abrité": "abrit", "abritée": "abrit", "abritent": "abritent", "abrités": "abrit", "abrutis": "abrut", "abrutissant": "abrut", "abrutissement": "abrut", "abruzze": "abruzz", "absence": "absenc", "absences": "absenc", "absent": "absent", "absentait": "absent", "absente": "absent", "absents": "absent", "absolu": "absolu", "absolue": "absolu", "absolument": "absolu", "absolus": "absolus", "absolutisme": "absolut", "absorba": "absorb", "absorbaient": "absorb", "absorbait": "absorb", "absorbé": "absorb", "absorbée": "absorb", "absorbés": "absorb", "absoudre": "absoudr", "abstenait": "absten", "abstenez": "absten", "abstiendrai": "abstiendr", "abstraction": "abstract", "abstrait": "abstrait", "absurde": "absurd", "absurdes": "absurd", "absurdité": "absurd", "absurdités": "absurd", "abus": "abus", "abusa": "abus", "abusait": "abus", "abusant": "abus", "abuse": "abus", "abusé": "abus", "abuser": "abus", "abusez": "abus", "abusif": "abus", "acabit": "acab", "acacia": "acaci", "acacias": "acaci", "académicien": "académicien", "académie": "academ", "académies": "academ", "académique": "academ", "acajou": "acajou", "accabla": "accabl", "accablaient": "accabl", "accablait": "accabl", "accablant": "accabl", "accablante": "accabl", "accable": "accabl", "accablé": "accabl", "accablée": "accabl", "accablement": "accabl", "accabler": "accabl", "accableraient": "accabl", "accablèrent": "accabl", "accalmie": "accalm", "accaparé": "accapar", "accède": "acced", "accéder": "acced", "accéléra": "accéler", "accélération": "accéler", "accent": "accent", "accents": "accent", "accentua": "accentu", "accepta": "accept", "acceptables": "accept", "acceptais": "accept", "acceptait": "accept", "accepte": "accept", "accepté": "accept", "acceptée": "accept", "acceptent": "acceptent", "accepter": "accept", "acceptera": "accept", "accepterai": "accept", "accepterait": "accept", "accepteriez": "accept", "acceptes": "accept", "acceptez": "accept", "acception": "accept", "acceptons": "accepton", "accès": "acces", "accident": "accident", "accidenté": "accident", "accidents": "accident", "acclamation": "acclam", "acclamations": "acclam", "accommodé": "accommod", "accompagnaient": "accompagn", "accompagnait": "accompagn", "accompagnant": "accompagn", "accompagne": "accompagn", "accompagné": "accompagn", "accompagnée": "accompagn", "accompagnement": "accompagn", "accompagnent": "accompagnent", "accompagner": "accompagn", "accompagnèrent": "accompagn", "accompagniez": "accompagn", "accompli": "accompl", "accomplie": "accompl", "accomplies": "accompl", "accomplir": "accompl", "accomplirait": "accompl", "accomplis": "accompl", "accomplissaient": "accompl", "accomplissais": "accompl", "accomplissait": "accompl", "accomplissant": "accompl", "accomplissement": "accompl", "accomplissent": "accompl", "accomplit": "accompl", "accord": "accord", "accorda": "accord", "accordait": "accord", "accordant": "accord", "accorde": "accord", "accordé": "accord", "accordée": "accord", "accordées": "accord", "accorder": "accord", "accorderai": "accord", "accorderait": "accord", "accordèrent": "accord", "accorderez": "accord", "accordez": "accord", "accosta": "accost", "accostait": "accost", "accosté": "accost", "accoster": "accost", "accoté": "accot", "accouchement": "accouch", "accouraient": "accour", "accourait": "accour", "accourant": "accour", "accourez": "accour", "accourir": "accour", "accourue": "accouru", "accoururent": "accoururent", "accourus": "accourus", "accourut": "accourut", "accoutrement": "accoutr", "accoutumât": "accoutum", "accoutume": "accoutum", "accoutumé": "accoutum", "accoutumée": "accoutum", "accoutumées": "accoutum", "accoutumer": "accoutum", "accoutumes": "accoutum", "accoutumés": "accoutum", "accrédité": "accred", "accréditer": "accrédit", "accrochaient": "accroch", "accrochant": "accroch", "accroché": "accroch", "accrocher": "accroch", "accroissaient": "accroiss", "accroissait": "accroiss", "accroissant": "accroiss", "accroître": "accroîtr", "accru": "accru", "accrue": "accru", "accrut": "accrut", "accueil": "accueil", "accueillait": "accueil", "accueillent": "accueillent", "accueilli": "accueil", "accueillie": "accueil", "accueillies": "accueil", "accueillir": "accueil", "accueillis": "accueil", "accumulation": "accumul", "accumulé": "accumul", "accumulées": "accumul", "accumulent": "accumulent", "accumuler": "accumul", "accumulés": "accumul", "accusa": "accus", "accusait": "accus", "accusant": "accus", "accusateur": "accus", "accusation": "accus", "accusations": "accus", "accuse": "accus", "accusé": "accus", "accuser": "accus", "accuseront": "accus", "accusés": "accus", "accusez": "accus", "achalandage": "achalandag", "acharnant": "acharn", "acharnés": "acharn", "achat": "achat", "achemina": "achemin", "acheminait": "achemin", "acheminé": "achemin", "acheta": "achet", "achetait": "achet", "achetant": "achet", "achete": "achet", "achète": "achet", "acheté": "achet", "achetées": "achet", "acheter": "achet", "achèterons": "achet", "achètes": "achet", "achetés": "achet", "achetez": "achet", "acheva": "achev", "achevaient": "achev", "achevait": "achev", "achevant": "achev", "achève": "achev", "achevé": "achev", "achevée": "achev", "achèvement": "achev", "achever": "achev", "achèvera": "achev", "achevez": "achev", "achille": "achill", "acier": "aci", "acolyte": "acolyt", "acoustiques": "acoust", "acquérait": "acquer", "acquerrait": "acquerr", "acquiert": "acquiert", "acquis": "acquis", "acquise": "acquis", "acquises": "acquis", "acquisition": "acquisit", "acquisitions": "acquisit", "acquit": "acquit", "acquitta": "acquitt", "acquittait": "acquitt", "acquitte": "acquitt", "acquitté": "acquitt", "acquittement": "acquitt", "acquitter": "acquitt", "acquittés": "acquitt", "acrobates": "acrobat", "acrobatique": "acrobat", "acte": "acte", "actes": "acte", "acteur": "acteur", "acteurs": "acteur", "actif": "actif", "action": "action", "actionnaires": "actionnair", "actions": "action", "active": "activ", "activement": "activ", "actives": "activ", "activité": "activ", "actrice": "actric", "actrices": "actric", "actuel": "actuel", "actuelle": "actuel", "actuellement": "actuel", "actuelles": "actuel", "actuels": "actuel", "ad": "ad", "adaptant": "adapt", "additions": "addit", "address": "address", "adeline": "adelin", "aden": "aden", "adieu": "adieu", "adieux": "adieux", "adjoint": "adjoint", "adjonction": "adjonct", "adjudant": "adjud", "adjudication": "adjud", "adjudications": "adjud", "adjugeait": "adjug", "adjuger": "adjug", "admet": "admet", "admettait": "admet", "admettant": "admet", "admettent": "admettent", "admettons": "admetton", "admettre": "admettr", "administra": "administr", "administrateur": "administr", "administrateurs": "administr", "administration": "administr", "administre": "administr", "administré": "administr", "administrer": "administr", "administrés": "administr", "administrez": "administr", "admira": "admir", "admirable": "admir", "admirablement": "admir", "admirables": "admir", "admirais": "admir", "admirait": "admir", "admirant": "admir", "admirateurs": "admir", "admiration": "admir", "admire": "admir", "admiré": "admir", "admirée": "admir", "admirées": "admir", "admirent": "admirent", "admirer": "admir", "admirera": "admir", "admirèrent": "admir", "admirés": "admir", "admiriez": "admir", "admis": "admis", "admise": "admis", "admises": "admis", "admission": "admiss", "admît": "admît", "admonestant": "admonest", "adolescent": "adolescent", "adolphe": "adolph", "adonné": "adon", "adonnée": "adon", "adonnent": "adonnent", "adopta": "adopt", "adopte": "adopt", "adopté": "adopt", "adoptée": "adopt", "adopter": "adopt", "adoptif": "adopt", "adorable": "ador", "adoraient": "ador", "adorais": "ador", "adorait": "ador", "adorant": "ador", "adorateur": "ador", "adorateurs": "ador", "adoration": "ador", "adorations": "ador", "adoratrices": "ador", "adore": "ador", "adoré": "ador", "adorée": "ador", "adorent": "adorent", "adorer": "ador", "adorera": "ador", "adouci": "adouc", "adoucir": "adouc", "adoucissait": "adouc", "adoucissent": "adouc", "adressa": "adress", "adressaient": "adress", "adressait": "adress", "adressant": "adress", "adressât": "adress", "adresse": "adress", "adressé": "adress", "adressée": "adress", "adressées": "adress", "adressent": "adressent", "adresser": "adress", "adresserai": "adress", "adressèrent": "adress", "adresses": "adress", "adressés": "adress", "adressez": "adress", "adrien": "adrien", "adroit": "adroit", "adroite": "adroit", "adroitement": "adroit", "adroites": "adroit", "adroits": "adroit", "adsum": "adsum", "adultère": "adulter", "adverbe": "adverb", "adversaire": "adversair", "adversaires": "adversair", "adverse": "advers", "adversité": "advers", "advint": "advint", "aérienne": "aérien", "affabilité": "affabl", "affadissantes": "affad", "affaibli": "affaibl", "affaiblie": "affaibl", "affaiblissait": "affaibl", "affaiblissement": "affaibl", "affaiblit": "affaibl", "affaire": "affair", "affairé": "affair", "affaires": "affair", "affairés": "affair", "affaissé": "affaiss", "affamé": "affam", "affamer": "affam", "affamés": "affam", "affecta": "affect", "affectaient": "affect", "affectait": "affect", "affectant": "affect", "affectation": "affect", "affectations": "affect", "affecte": "affect", "affecté": "affect", "affectée": "affect", "affectées": "affect", "affecter": "affect", "affectés": "affect", "affection": "affect", "affectionnait": "affection", "affectionné": "affection", "affections": "affect", "affectueux": "affectu", "affermissant": "afferm", "affermit": "afferm", "affichait": "affich", "affiche": "affich", "affiché": "affich", "affichée": "affich", "affichent": "affichent", "afficher": "affich", "affiches": "affich", "afficheur": "afficheur", "affidé": "affid", "affidés": "affid", "affilée": "affil", "affilié": "affili", "affilier": "affili", "affinités": "affin", "affirmait": "affirm", "affirmant": "affirm", "affirmatif": "affirm", "affirme": "affirm", "affirmé": "affirm", "affirment": "affirment", "affirmer": "affirm", "affirmerai": "affirm", "afflictive": "afflict", "afflige": "afflig", "affligé": "afflig", "affligea": "afflig", "affligée": "afflig", "affliger": "afflig", "affligez": "afflig", "afflua": "afflu", "affluaient": "afflu", "affluence": "affluenc", "affluent": "affluent", "affluents": "affluent", "affluer": "afflu", "affolait": "affol", "affolées": "affol", "affranchi": "affranch", "affrète": "affret", "affreuse": "affreux", "affreuses": "affreux", "affreux": "affreux", "affriolait": "affriol", "affront": "affront", "affrontais": "affront", "affronter": "affront", "affublé": "affubl", "afin": "afin", "afrique": "afriqu", "agde": "agde", "age": "age", "âge": "âge", "âgé": "âgé", "âgée": "âgé", "âgées": "âgé", "agen": "agen", "agencées": "agenc", "agenouilla": "agenouill", "agenouillant": "agenouill", "agenouillé": "agenouill", "agenouillée": "agenouill", "agent": "agent", "agents": "agent", "âges": "âge", "âgés": "âgé", "agglomération": "agglomer", "aggrottato": "aggrottato", "agi": "agi", "agile": "agil", "agilité": "agil", "agir": "agir", "agirait": "agir", "agis": "agis", "agissaient": "agiss", "agissait": "agiss", "agissant": "agiss", "agissante": "agiss", "agisse": "agiss", "agissent": "agissent", "agissez": "agiss", "agissons": "agisson", "agit": "agit", "agita": "agit", "agitaient": "agit", "agitait": "agit", "agitant": "agit", "agitation": "agit", "agite": "agit", "agité": "agit", "agitée": "agit", "agitées": "agit", "agitent": "agitent", "agiter": "agit", "agitèrent": "agit", "agités": "agit", "agneaux": "agneau", "agonie": "agon", "agra": "agra", "agrandis": "agrand", "agréable": "agréabl", "agréablement": "agréabl", "agréables": "agréabl", "agréer": "agré", "agréez": "agré", "agrément": "agrément", "agrémenté": "agrément", "agrémentée": "agrément", "agrémentées": "agrément", "agrémentés": "agrément", "agréments": "agrément", "agrès": "agres", "agriculteur": "agriculteur", "agriculture": "agricultur", "ah": "ah", "ahméhnagara": "ahméhnagar", "ahuri": "ahur", "ai": "ai", "aida": "aid", "aidait": "aid", "aidant": "aid", "aide": "aid", "aidé": "aid", "aidée": "aid", "aidées": "aid", "aider": "aid", "aidera": "aid", "aiderai": "aid", "aidèrent": "aid", "aiderez": "aid", "aides": "aid", "aidés": "aid", "aidez": "aid", "aidiez": "aid", "aie": "aie", "aient": "aient", "aies": "aie", "aïeul": "aïeul", "aïeux": "aïeux", "aigle": "aigl", "aigre": "aigr", "aigrelets": "aigrelet", "aigrelettes": "aigrelet", "aigrement": "aigr", "aigres": "aigr", "aigreur": "aigreur", "aigrirait": "aigr", "aiguille": "aiguill", "aiguilles": "aiguill", "aiguillon": "aiguillon", "aiguiser": "aiguis", "aigus": "aigus", "aile": "ail", "ailes": "ail", "aille": "aill", "ailles": "aill", "ailleurs": "ailleur", "aima": "aim", "aimable": "aimabl", "aimables": "aimabl", "aimaient": "aim", "aimais": "aim", "aimait": "aim", "aimant": "aim", "aimât": "aim", "aime": "aim", "aimé": "aim", "aimée": "aim", "aimées": "aim", "aiment": "aiment", "aimer": "aim", "aimera": "aim", "aimerai": "aim", "aimerais": "aim", "aimerait": "aim", "aimerez": "aim", "aimes": "aim", "aimés": "aim", "aimez": "aim", "aimiez": "aim", "aimons": "aimon", "aine": "ain", "aîné": "aîn", "aînée": "aîn", "aînés": "aîn", "ainsi": "ains", "air": "air", "aire": "air", "airs": "air", "aisance": "aisanc", "aise": "ais", "aisé": "ais", "aisées": "ais", "aisément": "ais", "aisés": "ais", "ait": "ait", "ajournement": "ajourn", "ajouta": "ajout", "ajoutaient": "ajout", "ajoutait": "ajout", "ajoutant": "ajout", "ajoute": "ajout", "ajouté": "ajout", "ajoutées": "ajout", "ajouter": "ajout", "ajoutera": "ajout", "ajouterai": "ajout", "ajouteraient": "ajout", "ajouterais": "ajout", "ajoutèrent": "ajout", "ajouterez": "ajout", "ajouterons": "ajout", "ajuster": "ajust", "al": "al", "alabama": "alabam", "alacoque": "alacoqu", "alari": "alar", "alarma": "alarm", "alarmaient": "alarm", "alarmants": "alarm", "alarme": "alarm", "alarmé": "alarm", "alarmée": "alarm", "alarmer": "alarm", "alarmes": "alarm", "alas": "alas", "albâtre": "albâtr", "albermale": "albermal", "album": "album", "alcooliques": "alcool", "ale": "ale", "aléa": "alé", "alembert": "alembert", "alençon": "alençon", "alerte": "alert", "alertes": "alert", "alexandre": "alexandr", "alfieri": "alfier", "alfred": "alfred", "alger": "alger", "alhambra": "alhambr", "aliène": "alien", "alignées": "align", "aligre": "aligr", "aliment": "aliment", "alimentation": "aliment", "alimenter": "aliment", "alimento": "alimento", "alinéa": "aliné", "all": "all", "alla": "alla", "allahabad": "allahabad", "allaient": "allaient", "allais": "allais", "allait": "allait", "allant": "allant", "allât": "allât", "allé": "allé", "alléché": "allech", "alléchés": "allech", "allée": "allé", "allées": "allé", "allégation": "alleg", "allege": "alleg", "allège": "alleg", "allègre": "allegr", "allégresse": "allégress", "alléguant": "allégu", "allemagne": "allemagn", "allemand": "allemand", "allemande": "allemand", "allemands": "allemand", "aller": "aller", "allèrent": "allèrent", "allés": "allé", "allez": "allez", "alliage": "alliag", "alliance": "allianc", "allié": "alli", "alliés": "alli", "alliez": "alli", "alligators": "alligator", "allions": "allion", "allocution": "allocu", "allonge": "allong", "allongeait": "allong", "allongée": "allong", "allons": "allon", "alloue": "allou", "alluma": "allum", "allumait": "allum", "allume": "allum", "allumé": "allum", "allumée": "allum", "allumées": "allum", "allumer": "allum", "allumés": "allum", "allure": "allur", "allures": "allur", "allusion": "allus", "allusions": "allus", "almanach": "almanach", "almaviva": "almaviv", "alors": "alor", "alouettes": "alouet", "alourdie": "alourd", "alpes": "alpe", "alphabet": "alphabet", "alphabets": "alphabet", "alsace": "alsac", "also": "also", "altamira": "altam", "altéra": "alter", "altérait": "alter", "altéré": "alter", "altérée": "alter", "altérer": "alter", "altérés": "alter", "alternative": "altern", "alternatives": "altern", "altesse": "altess", "altesses": "altess", "altier": "alti", "altière": "altier", "altitude": "altitud", "alvizi": "alviz", "alzar": "alzar", "ama": "ama", "amabilité": "amabl", "amadoué": "amadou", "amadouer": "amadou", "amai": "amai", "amaigris": "amaigr", "amand": "amand", "amanda": "amand", "amant": "amant", "amantes": "amant", "amants": "amant", "amarres": "amarr", "amarrés": "amarr", "amas": "amas", "amassaient": "amass", "amassé": "amass", "amassée": "amass", "amateur": "amateur", "amateurs": "amateur", "ambassade": "ambassad", "ambassadeur": "ambassadeur", "ambassadeurs": "ambassadeur", "ambiguë": "ambigu", "ambitieuse": "ambiti", "ambitieux": "ambiti", "ambition": "ambit", "ambulance": "ambul", "ambulant": "ambul", "ambulantes": "ambul", "ambulants": "ambul", "âme": "âme", "amena": "amen", "aménagé": "aménag", "aménagements": "aménag", "amenait": "amen", "amende": "amend", "amendes": "amend", "amène": "amen", "amené": "amen", "amenée": "amen", "amener": "amen", "amènera": "amen", "amènerai": "amen", "amènerait": "amen", "amenez": "amen", "ameni": "amen", "amer": "amer", "amère": "amer", "amèrement": "amer", "amères": "amer", "américain": "américain", "américaine": "américain", "américains": "américain", "american": "american", "amérique": "amer", "amers": "amer", "amertume": "amertum", "âmes": "âme", "ameublement": "ameubl", "ameutant": "ameut", "ami": "ami", "amiable": "amiabl", "amical": "amical", "amicale": "amical", "amicalement": "amical", "amicizia": "amicizi", "amie": "ami", "amiens": "amien", "amies": "ami", "amis": "amis", "amitié": "amiti", "amitiés": "amiti", "amoindri": "amoindr", "amor": "amor", "amorce": "amorc", "amorces": "amorc", "amortir": "amort", "amortirait": "amort", "amour": "amour", "amourachée": "amourach", "amoureuse": "amour", "amoureusement": "amour", "amoureux": "amour", "amours": "amour", "amphigouriques": "amphigour", "amphion": "amphion", "amphithéâtre": "amphithéâtr", "ample": "ample", "amplification": "amplif", "amplifications": "amplif", "amputés": "amput", "amusa": "amus", "amusaient": "amus", "amusait": "amus", "amusant": "amus", "amusante": "amus", "amusantes": "amus", "amusants": "amus", "amuse": "amus", "amusé": "amus", "amusement": "amus", "amuser": "amus", "amusera": "amus", "an": "an", "anachorète": "anachoret", "anachronisme": "anachron", "analyser": "analys", "ananas": "anan", "anathème": "anathem", "anathèmes": "anathem", "ancêtres": "ancêtr", "ancien": "ancien", "ancienne": "ancien", "anciennes": "ancien", "anciens": "ancien", "ancre": "ancre", "ancrés": "ancré", "and": "and", "andaman": "andaman", "anderson": "anderson", "andrew": "andrew", "andryane": "andryan", "anéanti": "anéant", "anéantie": "anéant", "anéantir": "anéant", "anéantis": "anéant", "anéantissait": "anéant", "anéantit": "anéant", "anecdote": "anecdot", "anecdotes": "anecdot", "anecdotique": "anecdot", "ânerie": "âner", "anetta": "anet", "ange": "ange", "angela": "angel", "angelica": "angelic", "angélina": "angélin", "angélique": "angel", "anges": "ange", "anglais": "anglais", "anglaise": "anglais", "anglaises": "anglais", "angle": "angle", "angles": "angle", "angleterre": "angleterr", "anglo": "anglo", "angoisse": "angoiss", "angoisses": "angoiss", "angoulême": "angoulêm", "aniken": "aniken", "anima": "anim", "animaient": "anim", "animait": "anim", "animal": "animal", "animant": "anim", "animation": "anim", "animaux": "animal", "anime": "anim", "animé": "anim", "animée": "anim", "animées": "anim", "animer": "anim", "animèrent": "anim", "animés": "anim", "annales": "annal", "annam": "annam", "anneau": "anneau", "année": "anné", "années": "anné", "annexait": "annex", "annibal": "annibal", "anno": "anno", "annonça": "annonc", "annonçaient": "annonc", "annonçait": "annonc", "annonçant": "annonc", "annonce": "annonc", "annoncé": "annonc", "annoncée": "annonc", "annoncées": "annonc", "annoncent": "annoncent", "annoncer": "annonc", "annoncerait": "annonc", "annoncèrent": "annonc", "annoncerez": "annonc", "annonces": "annonc", "annoncés": "annonc", "annuel": "annuel", "annuelle": "annuel", "annuellement": "annuel", "annulé": "annul", "annulée": "annul", "annuleront": "annul", "anobli": "anobl", "anoblir": "anobl", "anoblis": "anobl", "anoblissement": "anobl", "anoblit": "anobl", "anodines": "anodin", "ânonna": "ânon", "anonyme": "anonym", "anonymement": "anonym", "anonymes": "anonym", "ans": "an", "anse": "anse", "antagoniste": "antagon", "antérieure": "antérieur", "antérieurs": "antérieur", "anthropophages": "anthropophag", "anti": "anti", "antibes": "antib", "antichambre": "antichambr", "antichambres": "antichambr", "antidata": "antidat", "antidatée": "antidat", "antigénéreuses": "antigéner", "antijacobine": "antijacobin", "antimonarchique": "antimonarch", "antipathie": "antipath", "antipathique": "antipath", "antipode": "antipod", "antipodes": "antipod", "antiquaires": "antiquair", "antique": "antiqu", "antiques": "antiqu", "antiquité": "antiqu", "antiquités": "antiqu", "antithèse": "antithes", "antoine": "antoin", "anxiété": "anxiet", "anxieux": "anxieux", "any": "any", "aouda": "aoud", "août": "août", "apaisa": "apais", "apaisée": "apais", "apaiser": "apais", "apaisera": "apais", "apathie": "apath", "apathique": "apath", "apennin": "apennin", "apens": "apen", "apercevait": "apercev", "apercevant": "apercev", "apercevoir": "apercevoir", "apercevons": "apercevon", "apercevrait": "apercevr", "aperçois": "aperçois", "aperçoit": "aperçoit", "aperçoive": "aperço", "aperçu": "aperçu", "aperçue": "aperçu", "aperçurent": "aperçurent", "aperçus": "aperçus", "aperçut": "aperçut", "aperçût": "aperçût", "aplaties": "aplat", "aplatit": "aplat", "aplomb": "aplomb", "apocalypse": "apocalyps", "apocalyptique": "apocalypt", "apoplectique": "apoplect", "apoplexie": "apoplex", "apoplexies": "apoplex", "apostat": "apostat", "aposté": "apost", "apostille": "apostill", "apostolique": "apostol", "apostoliques": "apostol", "apothicaire": "apothicair", "apôtre": "apôtr", "apôtres": "apôtr", "apparaissaient": "apparaiss", "apparaissait": "apparaiss", "apparait": "appar", "apparaît": "apparaît", "apparaîtrait": "apparaîtr", "apparaître": "apparaîtr", "apparat": "apparat", "appareil": "appareil", "appareillait": "appareil", "appareiller": "appareil", "appareils": "appareil", "apparemment": "apparent", "apparence": "apparent", "apparences": "apparent", "apparent": "apparent", "apparente": "apparent", "apparition": "apparit", "apparitions": "apparit", "appartement": "appart", "appartements": "appart", "appartenaient": "apparten", "appartenait": "apparten", "appartenant": "apparten", "appartenir": "apparten", "appartenu": "appartenu", "appartiendront": "appartiendront", "appartiennent": "appartiennent", "appartient": "appartient", "appartint": "appartint", "appartînt": "appartînt", "apparu": "apparu", "apparut": "apparut", "appât": "appât", "appel": "appel", "appela": "appel", "appelaient": "appel", "appelait": "appel", "appelant": "appel", "appelât": "appel", "appelé": "appel", "appelée": "appel", "appelées": "appel", "appeler": "appel", "appelés": "appel", "appelez": "appel", "appelle": "appel", "appellent": "appellent", "appellera": "appel", "appellerai": "appel", "appellerait": "appel", "appellerez": "appel", "appelleront": "appel", "appelles": "appel", "appendices": "appendic", "appert": "appert", "appesantie": "appesant", "appesantis": "appesant", "appétit": "appet", "applaudi": "applaud", "applaudie": "applaud", "applaudir": "applaud", "applaudirent": "applaud", "applaudissaient": "applaud", "applaudissements": "applaud", "applaudit": "applaud", "applicables": "applic", "application": "appliqu", "appliqua": "appliqu", "appliquait": "appliqu", "applique": "appliqu", "appliqué": "appliqu", "appliquée": "appliqu", "appliquer": "appliqu", "appliquez": "appliqu", "appoint": "appoint", "appointements": "appoint", "appointés": "appoint", "apporta": "apport", "apportaient": "apport", "apportait": "apport", "apportant": "apport", "apporte": "apport", "apporté": "apport", "apportée": "apport", "apportées": "apport", "apporter": "apport", "apporterai": "apport", "apporterait": "apport", "apportés": "apport", "apportez": "apport", "apportiez": "apport", "apposa": "appos", "apposer": "appos", "apposés": "appos", "apprécie": "apprec", "appréciée": "appréci", "apprécier": "appréci", "appréciés": "appréci", "appréhension": "appréhens", "apprenaient": "appren", "apprenait": "appren", "apprenant": "appren", "apprend": "apprend", "apprendra": "apprendr", "apprendrais": "apprendr", "apprendrait": "apprendr", "apprendre": "apprendr", "apprendrez": "apprendr", "apprendrions": "apprendr", "apprendront": "apprendront", "apprends": "apprend", "apprenez": "appren", "apprennes": "appren", "apprêtait": "apprêt", "apprêter": "apprêt", "apprêtons": "apprêton", "apprirent": "apprirent", "appris": "appris", "apprise": "appris", "apprises": "appris", "apprit": "apprit", "apprivoisés": "apprivois", "approbation": "approb", "approcha": "approch", "approchaient": "approch", "approchait": "approch", "approchant": "approch", "approche": "approch", "approché": "approch", "approchée": "approch", "approchent": "approchent", "approcher": "approch", "approchèrent": "approch", "approches": "approch", "approchés": "approch", "approfondie": "approfond", "approprié": "appropri", "approuva": "approuv", "approuvé": "approuv", "approuvée": "approuv", "approuvera": "approuv", "approuves": "approuv", "appui": "appui", "appuie": "appui", "appuya": "appui", "appuyaient": "appui", "appuyais": "appui", "appuyait": "appui", "appuyant": "appui", "appuyé": "appui", "appuyée": "appui", "appuyées": "appui", "appuyer": "appui", "âpre": "âpre", "après": "apres", "april": "april", "aptitude": "aptitud", "aquarelle": "aquarel", "aquetta": "aquet", "aquilin": "aquilin", "aquitaine": "aquitain", "arabe": "arab", "arabes": "arab", "arabique": "arab", "araceli": "aracel", "arbitraire": "arbitrair", "arbitraires": "arbitrair", "arbitre": "arbitr", "arbitres": "arbitr", "arboré": "arbor", "arborer": "arbor", "arborescentes": "arborescent", "arbre": "arbre", "arbres": "arbre", "arbrisseaux": "arbrisseau", "arc": "arc", "arceaux": "arceau", "arche": "arche", "archet": "archet", "archevêché": "archevêch", "archevêque": "archevêqu", "archevêques": "archevêqu", "archiduc": "archiduc", "archiépiscopal": "archiépiscopal", "archiépiscopale": "archiépiscopal", "archifolle": "archifoll", "archiprêtre": "archiprêtr", "architecte": "architect", "architecture": "architectur", "archives": "archiv", "arcole": "arcol", "arçon": "arçon", "ardemment": "ardemment", "ardent": "ardent", "ardente": "ardent", "ardentes": "ardent", "ardents": "ardent", "ardeur": "ardeur", "ardu": "ardu", "are": "are", "arecs": "arec", "aresi": "ares", "arêtes": "arêt", "argent": "argent", "argentée": "argent", "argile": "argil", "argument": "argument", "arguments": "argument", "arides": "arid", "arioste": "ariost", "aristocrate": "aristocrat", "aristocratie": "aristocrat", "aristocratique": "aristocrat", "aristocratiques": "aristocrat", "arithmétique": "arithmet", "arkansas": "arkans", "arlequin": "arlequin", "arma": "arma", "armait": "armait", "armant": "armant", "armateur": "armateur", "armateurs": "armateur", "arme": "arme", "armé": "armé", "armée": "armé", "armées": "armé", "arméniennes": "arménien", "arméniens": "arménien", "armer": "armer", "armes": "arme", "armés": "armé", "armide": "armid", "armoire": "armoir", "armoires": "armoir", "armoiries": "armoir", "armonica": "armonic", "armurier": "armuri", "arnauld": "arnauld", "arpent": "arpent", "arpents": "arpent", "arquebuser": "arquebus", "arquées": "arqué", "arqués": "arqué", "arracha": "arrach", "arrachait": "arrach", "arrachant": "arrach", "arrache": "arrach", "arraché": "arrach", "arrachée": "arrach", "arrachent": "arrachent", "arracher": "arrach", "arrachèrent": "arrach", "arrachés": "arrach", "arrange": "arrang", "arrangé": "arrang", "arrangea": "arrang", "arrangeaient": "arrang", "arrangeait": "arrang", "arrangée": "arrang", "arrangées": "arrang", "arrangement": "arrang", "arrangements": "arrang", "arrangent": "arrangent", "arranger": "arrang", "arrangera": "arrang", "arrangerait": "arrang", "arrangés": "arrang", "arrérages": "arrérag", "arrestation": "arrest", "arrestations": "arrest", "arrêt": "arrêt", "arrêta": "arrêt", "arrêtaient": "arrêt", "arrêtait": "arrêt", "arrêtant": "arrêt", "arrête": "arrêt", "arrêté": "arrêt", "arrêtée": "arrêt", "arrêtées": "arrêt", "arrêtent": "arrêtent", "arrêter": "arrêt", "arrêtera": "arrêt", "arrêterai": "arrêt", "arrêterait": "arrêt", "arrêtèrent": "arrêt", "arrêterons": "arrêt", "arrêteront": "arrêt", "arrêtés": "arrêt", "arrêtez": "arrêt", "arrêtiez": "arrêt", "arrêtons": "arrêton", "arrêts": "arrêt", "arrhes": "arrhe", "arrien": "arrien", "arrière": "arrier", "arriva": "arriv", "arrivai": "arriv", "arrivaient": "arriv", "arrivais": "arriv", "arrivait": "arriv", "arrivant": "arriv", "arrivants": "arriv", "arrivât": "arriv", "arrive": "arriv", "arrivé": "arriv", "arrivée": "arriv", "arrivées": "arriv", "arrivent": "arrivent", "arriver": "arriv", "arrivera": "arriv", "arriveraient": "arriv", "arriverais": "arriv", "arriverait": "arriv", "arrivèrent": "arriv", "arriverez": "arriv", "arriverions": "arriv", "arriverons": "arriv", "arriveront": "arriv", "arrives": "arriv", "arrivés": "arriv", "arrivez": "arriv", "arrivons": "arrivon", "arrogante": "arrog", "arrondies": "arrond", "arrondis": "arrond", "arrondissait": "arrond", "arrondissement": "arrond", "arrondit": "arrond", "arrosé": "arros", "arrosées": "arros", "arsenal": "arsenal", "arsène": "arsen", "arsenic": "arsenic", "art": "art", "arte": "arte", "artère": "arter", "arthémidore": "arthémidor", "article": "articl", "articles": "articl", "articulait": "articul", "articulant": "articul", "articulée": "articul", "articuler": "articul", "articulés": "articul", "artifice": "artific", "artillerie": "artiller", "artisans": "artisan", "artiste": "artist", "artistes": "artist", "arts": "art", "as": "as", "ascagne": "ascagn", "ascanio": "ascanio", "ascétique": "ascet", "asie": "asi", "asile": "asil", "aspect": "aspect", "aspects": "aspect", "aspérités": "asper", "asphaltite": "asphaltit", "asphyxie": "asphyx", "asphyxié": "asphyxi", "aspiciam": "aspiciam", "aspira": "aspir", "aspirait": "aspir", "aspirants": "aspir", "aspirations": "aspir", "aspire": "aspir", "aspirer": "aspir", "aspirez": "aspir", "assaillaient": "assaill", "assaillant": "assaill", "assaillants": "assaill", "assailli": "assaill", "assaillie": "assaill", "assaillis": "assaill", "assassin": "assassin", "assassinait": "assassin", "assassinat": "assassinat", "assassine": "assassin", "assassiné": "assassin", "assassiner": "assassin", "assassinés": "assassin", "assassins": "assassin", "assaut": "assaut", "assembla": "assembl", "assemblée": "assembl", "assembler": "assembl", "assentiment": "assent", "asseoir": "asseoir", "assertions": "assert", "asseyaient": "assei", "asseyait": "assei", "asseyant": "assei", "asseyez": "assei", "assez": "assez", "assidue": "assidu", "assiduité": "assidu", "assiduités": "assidu", "assidûment": "assidû", "assied": "assied", "assiégé": "assieg", "assiégée": "assieg", "assiéger": "assieg", "assiégés": "assieg", "assiette": "assiet", "assignats": "assignat", "assigne": "assign", "assigné": "assign", "assigner": "assign", "assirent": "assirent", "assis": "assis", "assise": "assis", "assises": "assis", "assista": "assist", "assistaient": "assist", "assistait": "assist", "assistance": "assist", "assistant": "assist", "assistants": "assist", "assiste": "assist", "assisté": "assist", "assister": "assist", "assistera": "assist", "assit": "assit", "associaient": "associ", "association": "associ", "associations": "associ", "associe": "assoc", "associé": "associ", "assoient": "assoient", "assombri": "assombr", "assombrit": "assombr", "assommant": "assomm", "assommé": "assomm", "assommer": "assomm", "assommés": "assomm", "assommoir": "assommoir", "assoupie": "assoup", "assoupissantes": "assoup", "assoupissement": "assoup", "assoupit": "assoup", "assourdissant": "assourd", "assourdit": "assourd", "assura": "assur", "assuraient": "assur", "assurait": "assur", "assurance": "assur", "assurances": "assur", "assure": "assur", "assuré": "assur", "assurée": "assur", "assurées": "assur", "assurément": "assur", "assurer": "assur", "assurerait": "assur", "assurerez": "assur", "assureront": "assur", "assurghur": "assurghur", "astéroïdes": "astéroïd", "asthme": "asthme", "asti": "asti", "astre": "astre", "astreindre": "astreindr", "astreins": "astrein", "astres": "astre", "astrologie": "astrolog", "astrologique": "astrolog", "astrologiques": "astrolog", "astrologues": "astrologu", "astronomes": "astronom", "astronomie": "astronom", "astronomique": "astronom", "astuce": "astuc", "at": "at", "atelier": "ateli", "athènes": "athen", "atlantique": "atlant", "atmosphère": "atmospher", "atome": "atom", "atours": "atour", "atouts": "atout", "atroce": "atroc", "atrocement": "atroc", "atroces": "atroc", "atrocité": "atroc", "attacha": "attach", "attachaient": "attach", "attachait": "attach", "attachant": "attach", "attache": "attach", "attaché": "attach", "attachée": "attach", "attachées": "attach", "attachement": "attach", "attachent": "attachent", "attacher": "attach", "attachera": "attach", "attacherai": "attach", "attacherait": "attach", "attachèrent": "attach", "attachés": "attach", "attaqua": "attaqu", "attaquaient": "attaqu", "attaquait": "attaqu", "attaque": "attaqu", "attaqué": "attaqu", "attaquée": "attaqu", "attaquer": "attaqu", "attaques": "attaqu", "attaqués": "attaqu", "attardé": "attard", "atteignaient": "atteign", "atteignait": "atteign", "atteignirent": "atteign", "atteignit": "atteign", "atteindrait": "atteindr", "atteindre": "atteindr", "atteint": "atteint", "atteintes": "atteint", "atteints": "atteint", "attelage": "attelag", "attelages": "attelag", "attelait": "attel", "attelé": "attel", "attelée": "attel", "attelés": "attel", "attelle": "attel", "attenait": "atten", "attenant": "atten", "attenante": "atten", "attend": "attend", "attendaient": "attend", "attendais": "attend", "attendait": "attend", "attendant": "attend", "attendent": "attendent", "attendez": "attend", "attendirent": "attend", "attendit": "attend", "attendons": "attendon", "attendra": "attendr", "attendrai": "attendr", "attendrait": "attendr", "attendre": "attendr", "attendri": "attendr", "attendrie": "attendr", "attendrir": "attendr", "attendriraient": "attendr", "attendris": "attendr", "attendrissant": "attendr", "attendrissement": "attendr", "attendrit": "attendr", "attends": "attend", "attendu": "attendu", "attendue": "attendu", "attendus": "attendus", "attente": "attent", "attenté": "attent", "attenter": "attent", "attentif": "attent", "attentifs": "attent", "attention": "attent", "attentions": "attent", "attentive": "attent", "attentivement": "attent", "atterra": "atterr", "atterrages": "atterrag", "atterré": "atterr", "atterrée": "atterr", "attestaient": "attest", "attiédi": "attied", "attira": "attir", "attiraient": "attir", "attirait": "attir", "attire": "attir", "attiré": "attir", "attirent": "attirent", "attirer": "attir", "attirerait": "attir", "attirèrent": "attir", "attirés": "attir", "attitude": "attitud", "attraction": "attract", "attrait": "attrait", "attrapé": "attrap", "attrapera": "attrap", "attrayant": "attrai", "attrayantes": "attrai", "attribuaient": "attribu", "attribuait": "attribu", "attribué": "attribu", "attribuée": "attribu", "attribuer": "attribu", "attribuera": "attribu", "attributions": "attribu", "attristait": "attrist", "attristé": "attrist", "attristée": "attrist", "attrister": "attrist", "attroupement": "attroup", "attrouper": "attroup", "au": "au", "aubaine": "aubain", "aubaines": "aubain", "aube": "aub", "auberge": "auberg", "auberges": "auberg", "aubergistes": "auberg", "aubigné": "aubign", "aubry": "aubry", "auburn": "auburn", "aucun": "aucun", "aucune": "aucun", "aucunement": "aucun", "audace": "audac", "audacieuse": "audaci", "audacieuses": "audaci", "audacieux": "audaci", "audience": "audienc", "audiences": "audienc", "audit": "audit", "auditeur": "auditeur", "auditeurs": "auditeur", "auditoire": "auditoir", "augmenta": "augment", "augmentaient": "augment", "augmentait": "augment", "augmentant": "augment", "augmentation": "augment", "augmente": "augment", "augmenté": "augment", "augmentée": "augment", "augmenter": "augment", "augmentera": "augment", "augmenterait": "augment", "augure": "augur", "augurer": "augur", "auguste": "august", "augustes": "august", "augustin": "augustin", "aujourd": "aujourd", "aumône": "aumôn", "aumônes": "aumôn", "aumônier": "aumôni", "aunes": "aun", "auparavant": "auparav", "auprès": "aupres", "auquel": "auquel", "aura": "aur", "aurai": "aur", "auraient": "aur", "aurais": "aur", "aurait": "aur", "auras": "aur", "aureng": "aureng", "aurez": "aur", "auriez": "aur", "aurions": "aurion", "aurons": "auron", "auront": "auront", "aurungabad": "aurungabad", "aussi": "auss", "aussitôt": "aussitôt", "austère": "auster", "austères": "auster", "austérité": "auster", "austral": "austral", "autant": "aut", "autel": "autel", "autels": "autel", "auteur": "auteur", "auteurs": "auteur", "authenticité": "authent", "auto": "auto", "automate": "automat", "automatique": "automat", "automne": "automn", "autorisait": "autoris", "autorisation": "autoris", "autorisations": "autoris", "autorise": "autoris", "autorisé": "autoris", "autorisée": "autoris", "autorisent": "autorisent", "autorisera": "autoris", "autoriserait": "autoris", "autorité": "autor", "autorités": "autor", "autour": "autour", "autre": "autr", "autrefois": "autrefois", "autrement": "autr", "autres": "autr", "autriche": "autrich", "autrichien": "autrichien", "autrichienne": "autrichien", "autrichiennes": "autrichien", "autrichiens": "autrichien", "aux": "aux", "auxiliaire": "auxiliair", "auxquelles": "auxquel", "auxquels": "auxquel", "av": "av", "avaient": "avaient", "avais": "avais", "avait": "avait", "avala": "aval", "avalé": "aval", "avança": "avanc", "avançaient": "avanc", "avançait": "avanc", "avançant": "avanc", "avance": "avanc", "avancé": "avanc", "avancée": "avanc", "avancement": "avanc", "avancements": "avanc", "avancent": "avancent", "avancer": "avanc", "avancera": "avanc", "avancerait": "avanc", "avancèrent": "avanc", "avances": "avanc", "avancés": "avanc", "avancez": "avanc", "avanie": "avan", "avanies": "avan", "avant": "avant", "avantage": "avantag", "avantages": "avantag", "avantageuse": "avantag", "avantageusement": "avantag", "avantageux": "avantag", "avare": "avar", "avarice": "avaric", "avarie": "avar", "avaries": "avar", "ave": "ave", "avec": "avec", "avenir": "aven", "aventure": "aventur", "aventurent": "aventurent", "aventurer": "aventur", "aventures": "aventur", "aventureuse": "aventur", "aventureux": "aventur", "avenues": "avenu", "avéré": "aver", "averse": "avers", "aversion": "avers", "averti": "avert", "avertie": "avert", "averties": "avert", "avertir": "avert", "avertira": "avert", "avertis": "avert", "avertissait": "avert", "avertissant": "avert", "avertissement": "avert", "avertit": "avert", "aveu": "aveu", "aveugle": "aveugl", "aveuglé": "aveugl", "aveuglée": "aveugl", "aveuglement": "aveugl", "aveuglément": "aveugl", "aveugles": "aveugl", "aveux": "aveux", "aveyron": "aveyron", "avez": "avez", "avide": "avid", "avidement": "avid", "avidité": "avid", "aviez": "avi", "avilie": "avil", "avilir": "avil", "avilirait": "avil", "avilissant": "avil", "avilissantes": "avil", "avilit": "avil", "avions": "avion", "aviron": "aviron", "avis": "avis", "avisa": "avis", "avisais": "avis", "avisait": "avis", "avise": "avis", "avisé": "avis", "avisée": "avis", "aviser": "avis", "aviserai": "avis", "aviserait": "avis", "aviserons": "avis", "avises": "avis", "avocat": "avocat", "avocats": "avocat", "avoine": "avoin", "avoir": "avoir", "avons": "avon", "avoua": "avou", "avouai": "avou", "avouait": "avou", "avouât": "avou", "avoue": "avou", "avoué": "avou", "avouent": "avouent", "avouer": "avou", "avouera": "avou", "avouerai": "avou", "avouerons": "avou", "avoués": "avou", "avouez": "avou", "avril": "avril", "avviamento": "avviamento", "away": "away", "axe": "axe", "ayant": "ayant", "ayez": "ayez", "aymon": "aymon", "ayons": "ayon", "azur": "azur", "b": "b", "bab": "bab", "bâbord": "bâbord", "babouches": "babouch", "babylone": "babylon", "bac": "bac", "bacchus": "bacchus", "back": "back", "bad": "bad", "badaud": "badaud", "badauderie": "badauder", "baden": "baden", "badin": "badin", "badine": "badin", "bafouait": "bafou", "bagage": "bagag", "bagages": "bagag", "bagarre": "bagarr", "bagatelle": "bagatel", "bagne": "bagn", "bague": "bagu", "bagues": "bagu", "baguette": "baguet", "bah": "bah", "baie": "bai", "baigné": "baign", "baignée": "baign", "baigner": "baign", "baignés": "baign", "bail": "bail", "bâillait": "bâill", "bâillant": "bâill", "bâillement": "bâill", "bâiller": "bâill", "bâillon": "bâillon", "baïonnette": "baïonnet", "baïonnettes": "baïonnet", "baisa": "bais", "baisai": "bais", "baisait": "bais", "baisant": "bais", "baise": "bais", "baiser": "bais", "baisers": "baiser", "baissa": "baiss", "baissait": "baiss", "baissant": "baiss", "baisse": "baiss", "baissé": "baiss", "baissée": "baiss", "baisser": "baiss", "baissèrent": "baiss", "baissés": "baiss", "bajocs": "bajoc", "bal": "bal", "baladins": "baladin", "balançait": "balanc", "balance": "balanc", "balancée": "balanc", "balancement": "balanc", "balancer": "balanc", "balances": "balanc", "balancier": "balanci", "balayé": "balai", "balayés": "balai", "balbi": "balb", "balbutia": "balbuti", "balbutiant": "balbuti", "balcon": "balcon", "balcons": "balcon", "baldaquin": "baldaquin", "baldi": "bald", "balivernes": "balivern", "balland": "balland", "ballants": "ball", "balle": "ball", "balles": "ball", "ballet": "ballet", "ballon": "ballon", "balourd": "balourd", "balourdise": "balourdis", "balourdises": "balourdis", "bals": "bal", "balustrade": "balustrad", "bamboches": "bamboch", "bambou": "bambou", "bambous": "bambous", "bambousiers": "bambousi", "ban": "ban", "bananiers": "banani", "banc": "banc", "bancs": "banc", "bande": "band", "bandé": "band", "banderoles": "banderol", "bandes": "band", "bandits": "bandit", "bandoulière": "bandouli", "banians": "banian", "bank": "bank", "banni": "bann", "bannie": "bann", "bannières": "banni", "bannir": "bann", "banque": "banqu", "banqueroute": "banquerout", "banquette": "banquet", "banquettes": "banquet", "banquier": "banqui", "banquière": "banqui", "banquiers": "banqui", "baptisé": "baptis", "bar": "bar", "baraque": "baraqu", "barbare": "barbar", "barbares": "barbar", "barbarie": "barbar", "barbe": "barb", "barbiche": "barbich", "barbier": "barbi", "barbone": "barbon", "barbotement": "barbot", "barbouillait": "barbouill", "barême": "barêm", "bari": "bar", "baring": "baring", "bariolée": "bariol", "barnave": "barnav", "barnum": "barnum", "baromètre": "barometr", "baromètres": "barometr", "baron": "baron", "baronne": "baron", "baronnie": "baron", "barons": "baron", "baroque": "baroqu", "barque": "barqu", "barques": "barqu", "barra": "barr", "barre": "barr", "barreaux": "barreau", "barrer": "barr", "barricader": "barricad", "barricadés": "barricad", "barrière": "barri", "barrières": "barri", "barthélemy": "barthélemy", "bas": "bas", "basalte": "basalt", "base": "bas", "basée": "bas", "bases": "bas", "basile": "basil", "basilique": "basil", "basse": "bass", "bassement": "bass", "basses": "bass", "bassesse": "bassess", "bassesses": "bassess", "bassin": "bassin", "bassinet": "bassinet", "bassins": "bassin", "bassompierre": "bassompierr", "bastingages": "bastingag", "bastion": "bastion", "bastions": "bastion", "bat": "bat", "bataille": "bataill", "batailles": "bataill", "bataillon": "bataillon", "bataillons": "bataillon", "bâtardise": "bâtardis", "bateau": "bateau", "bateaux": "bateau", "batelier": "bateli", "bateliers": "bateli", "bathurst": "bathurst", "bâti": "bât", "bâtie": "bât", "bâties": "bât", "bâtiment": "bât", "bâtiments": "bât", "bâtir": "bât", "bâtis": "bât", "bâtissait": "bât", "bâtissant": "bât", "bâtisses": "bât", "bâtisseur": "bâtisseur", "bâtit": "bât", "bâton": "bâton", "bâtonne": "bâton", "bâtons": "bâton", "bats": "bat", "battaient": "batt", "battait": "batt", "battant": "batt", "battante": "batt", "battants": "batt", "batte": "batt", "battement": "batt", "battements": "batt", "battent": "battent", "batterie": "batter", "battez": "batt", "battistin": "battistin", "battit": "batt", "battrai": "battr", "battrais": "battr", "battras": "battr", "battre": "battr", "battrez": "battr", "battriez": "battr", "battu": "battu", "battue": "battu", "battus": "battus", "batulcar": "batulcar", "baume": "baum", "bavard": "bavard", "bavardage": "bavardag", "bavardages": "bavardag", "bavarde": "bavard", "bavardes": "bavard", "bavards": "bavard", "bayadères": "bayader", "bayard": "bayard", "baylen": "baylen", "bazar": "bazar", "bazars": "bazar", "bazin": "bazin", "be": "be", "béante": "bé", "béatitudes": "béatitud", "beau": "beau", "beaucoup": "beaucoup", "beauharnais": "beauharn", "beaujolais": "beaujol", "beaumarchais": "beaumarch", "beauté": "beaut", "beautés": "beaut", "beauty": "beauty", "beauvais": "beauv", "beauvaisis": "beauvais", "beauvoisis": "beauvois", "beaux": "beau", "bec": "bec", "bêchait": "bêch", "bêché": "bêch", "bêcher": "bêch", "becs": "bec", "bédouin": "bédouin", "beefsteacks": "beefsteack", "bégayait": "bégai", "béhar": "béhar", "behind": "behind", "békir": "bek", "bel": "bel", "belagio": "belagio", "bélan": "bélan", "belgique": "belgiqu", "belgirate": "belgirat", "belle": "bel", "belles": "bel", "belliqueux": "belliqu", "belphégor": "belphégor", "belvédère": "belvéder", "ben": "ben", "bénarès": "bénares", "bénédiction": "bénédict", "bénédictions": "bénédict", "benefaciendo": "benefaciendo", "bénéfice": "bénéfic", "bénéfices": "bénéfic", "benêt": "benêt", "bengale": "bengal", "bénis": "ben", "bénit": "ben", "bénite": "bénit", "bénitier": "béniti", "benjamin": "benjamin", "benten": "benten", "bentivoglio": "bentivoglio", "béranger": "bérang", "berceau": "berceau", "bercer": "berc", "bérésina": "bérésin", "bergère": "berger", "bergères": "berger", "bernard": "bernard", "berne": "bern", "bertolotti": "bertolott", "bertuccio": "bertuccio", "besace": "besac", "besançon": "besançon", "besenval": "besenval", "besogne": "besogn", "besoin": "besoin", "besoins": "besoin", "bêta": "bêt", "bétail": "bétail", "bête": "bêt", "bétel": "bétel", "bêtement": "bêt", "bêtes": "bêt", "bêtise": "bêtis", "bêtises": "bêtis", "betrays": "betray", "bettina": "bettin", "beuglements": "beugl", "beurre": "beurr", "beuve": "beuv", "bévue": "bévu", "bévues": "bévu", "biais": "bi", "biaiser": "biais", "bible": "bibl", "bibliomane": "biblioman", "bibliothèque": "bibliothequ", "bibliothèques": "bibliothequ", "biblique": "bibliqu", "bibliques": "bibliqu", "bielle": "biel", "bien": "bien", "bienfait": "bienf", "bienfaiteur": "bienfaiteur", "bienfaitrice": "bienfaitric", "bienfaits": "bienfait", "biens": "bien", "bientôt": "bientôt", "bienveillance": "bienveil", "bienveillant": "bienveil", "bienvenu": "bienvenu", "bière": "bier", "biftecks": "bifteck", "bigarrée": "bigarr", "bijou": "bijou", "bijoux": "bijoux", "bilieuse": "bilieux", "bilieux": "bilieux", "billard": "billard", "billards": "billard", "billet": "billet", "billets": "billet", "binder": "bind", "binet": "binet", "biographie": "biograph", "birmingham": "birmingham", "bisaïeul": "bisaïeul", "biscaïens": "biscaïen", "biscuit": "biscuit", "biscuits": "biscuit", "bisogna": "bisogn", "bisons": "bison", "bisontine": "bisontin", "bisontins": "bisontin", "bisontium": "bisontium", "bitter": "bitt", "bivouac": "bivouac", "bivouacs": "bivouac", "bivouaquaient": "bivouaqu", "bizarre": "bizarr", "bizarrerie": "bizarrer", "bizarres": "bizarr", "blackest": "blackest", "blafarde": "blafard", "blâma": "blâm", "blâmable": "blâmabl", "blâmables": "blâmabl", "blâmait": "blâm", "blâme": "blâm", "blâmé": "blâm", "blâmée": "blâm", "blâmer": "blâm", "blâmés": "blâm", "blanc": "blanc", "blanche": "blanch", "blanches": "blanch", "blancheur": "blancheur", "blanchie": "blanch", "blanchies": "blanch", "blanchis": "blanch", "blanchisseuse": "blanchiss", "blancs": "blanc", "bland": "bland", "blanès": "blanes", "blason": "blason", "blasphème": "blasphem", "blasphémé": "blasphem", "blé": "blé", "blême": "blêm", "blés": "blé", "blessa": "bless", "blessaient": "bless", "blessant": "bless", "blesse": "bless", "blessé": "bless", "blessée": "bless", "blesser": "bless", "blesserait": "bless", "blessés": "bless", "blessez": "bless", "blessure": "blessur", "blessures": "blessur", "bleu": "bleu", "bleuâtre": "bleuâtr", "bleuâtres": "bleuâtr", "bleue": "bleu", "bleues": "bleu", "bleus": "bleus", "bloc": "bloc", "blocs": "bloc", "blond": "blond", "blonde": "blond", "blondin": "blondin", "blonds": "blond", "blood": "blood", "blottie": "blott", "blottirent": "blott", "blottit": "blott", "blue": "blu", "bluffs": "bluff", "blushes": "blush", "boat": "boat", "boats": "boat", "boeuf": "boeuf", "boeufs": "boeuf", "boire": "boir", "bois": "bois", "boisé": "bois", "boiserie": "boiser", "boisson": "boisson", "boissons": "boisson", "boit": "boit", "boîte": "boît", "boîtes": "boît", "boiteux": "boiteux", "bologne": "bologn", "bombace": "bombac", "bombardé": "bombard", "bombay": "bombay", "bombe": "bomb", "bombes": "bomb", "bombés": "bomb", "bon": "bon", "bona": "bon", "bonaparte": "bonapart", "bonapartiste": "bonapart", "bonaventure": "bonaventur", "bondir": "bond", "bondissait": "bond", "bondissant": "bond", "bondit": "bond", "bonds": "bond", "bone": "bon", "bonheur": "bonheur", "bonheurs": "bonheur", "bonhomie": "bonhom", "bonhomme": "bonhomm", "boniface": "bonifac", "bonne": "bon", "bonnement": "bon", "bonnes": "bon", "bonnet": "bonnet", "bonnets": "bonnet", "bons": "bon", "bonshommes": "bonshomm", "bonsoir": "bonsoir", "bonté": "bont", "bontés": "bont", "bonzeries": "bonzer", "bonzes": "bonz", "booby": "booby", "bord": "bord", "borda": "bord", "bordaient": "bord", "bordait": "bord", "bordé": "bord", "bordeaux": "bordeau", "bordée": "bord", "bordées": "bord", "bordent": "bordent", "bordés": "bord", "bords": "bord", "bordures": "bordur", "borgo": "borgo", "borna": "born", "bornaient": "born", "bornait": "born", "borne": "born", "borné": "born", "bornes": "born", "borone": "boron", "borso": "borso", "bosco": "bosco", "bosse": "boss", "bosses": "boss", "bossi": "boss", "bossuet": "bossuet", "botanique": "botan", "botte": "bott", "bottes": "bott", "bottier": "botti", "bouche": "bouch", "boucher": "bouch", "boucherie": "boucher", "bouchers": "boucher", "bouches": "bouch", "boucles": "boucl", "bouclés": "boucl", "bouclez": "boucl", "bouclier": "boucli", "bouddhisme": "bouddhism", "bouddhiste": "bouddhist", "bouder": "boud", "boudeur": "boudeur", "boudeurs": "boudeur", "boue": "bou", "bouffe": "bouff", "bouffée": "bouff", "bouffées": "bouff", "bouffes": "bouff", "bouffonnerie": "bouffonner", "bouffonneries": "bouffonner", "bougeait": "boug", "bougeoir": "bougeoir", "bouger": "boug", "bougera": "boug", "bougez": "boug", "bougie": "boug", "bougies": "boug", "bougon": "bougon", "bouillait": "bouill", "bouillant": "bouill", "bouillante": "bouill", "bouilli": "bouill", "bouillir": "bouill", "bouillon": "bouillon", "boulangers": "boulanger", "boule": "boul", "bouledogue": "bouledogu", "boulet": "boulet", "boulets": "boulet", "boulettes": "boulet", "boulevard": "boulevard", "bouleversa": "boulevers", "bouleversaient": "boulevers", "bouleverse": "boulevers", "bouleversé": "boulevers", "bouleversée": "boulevers", "bouleversés": "boulevers", "boulogne": "boulogn", "boulons": "boulon", "boulot": "boulot", "bouquer": "bouqu", "bouquet": "bouquet", "bouquets": "bouquet", "bourbeux": "bourbeux", "bourbier": "bourbi", "bourbiers": "bourbi", "bourbons": "bourbon", "bourdon": "bourdon", "bourdonnement": "bourdon", "bourdonnements": "bourdon", "bourg": "bourg", "bourgade": "bourgad", "bourgades": "bourgad", "bourgeois": "bourgeois", "bourgeoise": "bourgeois", "bourgeoises": "bourgeois", "bourgeoisie": "bourgeois", "bourgeons": "bourgeon", "bourgogne": "bourgogn", "bourguignon": "bourguignon", "bourguignons": "bourguignon", "bourrasque": "bourrasqu", "bourrasques": "bourrasqu", "bourreau": "bourreau", "bourreaux": "bourreau", "bourrées": "bourr", "bourrelée": "bourrel", "bourrèlements": "bourrel", "bourse": "bours", "bourses": "bours", "boursicot": "boursicot", "bousculés": "bouscul", "bout": "bout", "boutade": "boutad", "bouteille": "bouteil", "bouteilles": "bouteil", "boutique": "boutiqu", "boutiques": "boutiqu", "boutiquiers": "boutiqui", "bouton": "bouton", "boutonné": "bouton", "boutonnière": "boutonni", "boutons": "bouton", "bouts": "bout", "bow": "bow", "boxe": "box", "bracelets": "bracelet", "bradshaw": "bradshaw", "brahma": "brahm", "brahmanes": "brahman", "brahmanique": "brahman", "brahmaniques": "brahman", "branchages": "branchag", "branche": "branch", "branches": "branch", "brandissant": "brand", "brandy": "brandy", "branlante": "branl", "branle": "branl", "brantôme": "brantôm", "bras": "bras", "brasses": "brass", "brasseur": "brasseur", "bravade": "bravad", "bravait": "brav", "brave": "brav", "bravé": "brav", "bravée": "brav", "bravement": "brav", "bravent": "bravent", "braver": "brav", "braverais": "brav", "braves": "brav", "bravi": "brav", "bravissimo": "bravissimo", "bravo": "bravo", "bravoure": "bravour", "bray": "bray", "brebis": "breb", "bref": "bref", "brefs": "bref", "brescia": "bresci", "brésil": "brésil", "bretagne": "bretagn", "brève": "brev", "brèves": "brev", "brevet": "brevet", "brevets": "brevet", "bréviaire": "bréviair", "brick": "brick", "bride": "brid", "bridés": "brid", "bridger": "bridg", "bridon": "bridon", "brigade": "brigad", "brigadier": "brigadi", "brigadiers": "brigadi", "brigand": "brigand", "brigands": "brigand", "brigantine": "brigantin", "brigham": "brigham", "brighella": "brighel", "brilla": "brill", "brillaient": "brill", "brillait": "brill", "brillamment": "brill", "brillant": "brill", "brillante": "brill", "brillantes": "brill", "brillants": "brill", "brille": "brill", "brillé": "brill", "brillent": "brillent", "briller": "brill", "brillèrent": "brill", "brindisi": "brindis", "brins": "brin", "brio": "brio", "brique": "briqu", "briques": "briqu", "brisa": "bris", "brisaient": "bris", "brisait": "bris", "brise": "bris", "brisé": "bris", "brisée": "bris", "brisées": "bris", "briser": "bris", "brisèrent": "bris", "brises": "bris", "brisés": "bris", "britannique": "britann", "britannisée": "britannis", "british": "british", "broadway": "broadway", "brocanteur": "brocanteur", "brocart": "brocart", "brochant": "broch", "brochées": "broch", "brochure": "brochur", "brocs": "broc", "brodé": "brod", "brodées": "brod", "broderie": "broder", "broderies": "broder", "brodés": "brod", "bronché": "bronch", "broncher": "bronch", "bronze": "bronz", "brosser": "bross", "brouette": "brouet", "brouettes": "brouet", "brougham": "brougham", "brouhaha": "brouhah", "brouillaient": "brouill", "brouillais": "brouill", "brouillard": "brouillard", "brouillards": "brouillard", "brouille": "brouill", "brouillé": "brouill", "brouillée": "brouill", "brouiller": "brouill", "brouillerie": "brouiller", "brouilleriez": "brouill", "brouillerons": "brouill", "brouilles": "brouill", "brouillon": "brouillon", "brouillons": "brouillon", "broussailles": "broussaill", "bruit": "bruit", "bruits": "bruit", "brûla": "brûl", "brûlaient": "brûl", "brûlait": "brûl", "brûlant": "brûl", "brûlante": "brûl", "brûlantes": "brûl", "brûle": "brûl", "brûlé": "brûl", "brûlée": "brûl", "brûlées": "brûl", "brûler": "brûl", "brûlerait": "brûl", "brûlerez": "brûl", "brûlés": "brûl", "brûlons": "brûlon", "brûlure": "brûlur", "brume": "brum", "brumes": "brum", "brun": "brun", "brune": "brun", "bruno": "bruno", "bruns": "brun", "brusque": "brusqu", "brusquement": "brusqu", "brusquer": "brusqu", "brusques": "brusqu", "brut": "brut", "brutal": "brutal", "brutale": "brutal", "brutalement": "brutal", "brutalité": "brutal", "brutes": "brut", "brutus": "brutus", "bruxelles": "bruxel", "bruyamment": "brui", "bruyant": "brui", "bruyante": "brui", "bruyantes": "brui", "bruyants": "brui", "bu": "bu", "bubna": "bubn", "bûcher": "bûch", "budget": "budget", "bue": "bu", "buffa": "buff", "buffalos": "buffalos", "buffet": "buffet", "buffles": "buffl", "buis": "buis", "buissons": "buisson", "buli": "bul", "bull": "bull", "bulle": "bull", "bulletin": "bulletin", "bulletins": "bulletin", "bulo": "bulo", "bundelkund": "bundelkund", "bungalow": "bungalow", "bungalows": "bungalow", "bunhyas": "bunhi", "bunsby": "bunsby", "buonaparte": "buonapart", "buonaparté": "buonapart", "burati": "burat", "burdivan": "burdivan", "burdwan": "burdwan", "bureau": "bureau", "bureaucratique": "bureaucrat", "bureaux": "bureau", "burhampour": "burhampour", "burlesque": "burlesqu", "burlington": "burlington", "burning": "burning", "busqué": "busqu", "buste": "bust", "bustos": "bustos", "but": "but", "butcher": "butch", "butte": "butt", "buvait": "buv", "buvez": "buv", "buvions": "buvion", "buvons": "buvon", "buxar": "buxar", "by": "by", "byron": "byron", "c": "c", "ça": "ça", "çà": "çà", "cab": "cab", "cabale": "cabal", "cabane": "caban", "cabanes": "caban", "cabaret": "cabaret", "cabarets": "cabaret", "cabine": "cabin", "cabines": "cabin", "cabinet": "cabinet", "cabinets": "cabinet", "cabotage": "cabotag", "cabra": "cabr", "cabrait": "cabr", "cabrer": "cabr", "cabriolet": "cabriolet", "cacha": "cach", "cachaient": "cach", "cachais": "cach", "cachait": "cach", "cachant": "cach", "cache": "cach", "caché": "cach", "cachée": "cach", "cachées": "cach", "cachemire": "cachemir", "cachent": "cachent", "cacher": "cach", "cachera": "cach", "cacherai": "cach", "cacherait": "cach", "cacherons": "cach", "cachés": "cach", "cachet": "cachet", "cacheté": "cachet", "cacheter": "cachet", "cachette": "cachet", "cachettes": "cachet", "cachons": "cachon", "cachot": "cachot", "cachots": "cachot", "cacolet": "cacolet", "cacolets": "cacolet", "cadavre": "cadavr", "cadavres": "cadavr", "cadeau": "cadeau", "cadeaux": "cadeau", "cadenabia": "cadenabi", "cadenas": "caden", "cadet": "cadet", "cadets": "cadet", "cadette": "cadet", "cadran": "cadran", "cadre": "cadr", "cadres": "cadr", "café": "caf", "caféiers": "caféi", "cafés": "caf", "cage": "cag", "cages": "cag", "cagnola": "cagnol", "cahier": "cahi", "cahutes": "cahut", "caillé": "caill", "cailles": "caill", "cailloux": "cailloux", "caisse": "caiss", "caisses": "caiss", "caissier": "caissi", "caissons": "caisson", "cajoleries": "cajoler", "calais": "cal", "calcul": "calcul", "calculait": "calcul", "calculant": "calcul", "calculateur": "calcul", "calculé": "calcul", "calculée": "calcul", "calculées": "calcul", "calculer": "calcul", "calculs": "calcul", "calcutta": "calcutt", "calèche": "calech", "calembour": "calembour", "calembours": "calembour", "calendrier": "calendri", "californie": "californ", "californienne": "californien", "califourchon": "califourchon", "câline": "câlin", "call": "call", "called": "called", "callyan": "callyan", "calm": "calm", "calma": "calm", "calme": "calm", "calmer": "calm", "calmerai": "calm", "calmèrent": "calm", "calmes": "calm", "calmez": "calm", "calomnie": "calomn", "calomnié": "calomni", "calomniée": "calomni", "calomniées": "calomni", "calomnier": "calomni", "calomnieront": "calomni", "calomnies": "calomn", "calomnieuses": "calomni", "calotin": "calotin", "calotte": "calott", "camarade": "camarad", "camarades": "camarad", "camarilla": "camarill", "cambaye": "cambay", "cambodge": "cambodg", "cambrai": "cambr", "cambrure": "cambrur", "camélias": "caméli", "cameriere": "camerier", "camériste": "camer", "camp": "camp", "campagnards": "campagnard", "campagne": "campagn", "campagnes": "campagn", "campaient": "camp", "campé": "camp", "can": "can", "canaille": "canaill", "canal": "canal", "canapé": "canap", "canards": "canard", "cancer": "canc", "candeur": "candeur", "candidat": "candidat", "candidats": "candidat", "candidature": "candidatur", "candide": "candid", "cangos": "cangos", "cani": "can", "caniches": "canich", "canif": "canif", "canne": "cann", "cannelle": "cannel", "cannes": "cann", "canon": "canon", "canonique": "canon", "canonnade": "canonnad", "canonniers": "canonni", "canons": "canon", "canot": "canot", "canots": "canot", "canova": "canov", "canta": "cant", "cantate": "cantat", "cantatrice": "cantatric", "cantilène": "cantilen", "cantinière": "cantini", "cantiques": "cantiqu", "canton": "canton", "cantonnées": "canton", "cantons": "canton", "cap": "cap", "capable": "capabl", "capacité": "capac", "caparaçonnés": "caparaçon", "cape": "cap", "capharnaüm": "capharnaüm", "capillaire": "capillair", "capitaine": "capitain", "capitaines": "capitain", "capital": "capital", "capitale": "capital", "capitani": "capitan", "capitulation": "capitul", "capon": "capon", "caporal": "caporal", "capot": "capot", "caprice": "capric", "caprices": "capric", "capricieuse": "caprici", "capricieusement": "caprici", "capricieuses": "caprici", "captivait": "captiv", "captivité": "captiv", "capture": "captur", "capuche": "capuch", "capuchons": "capuchon", "capucin": "capucin", "car": "car", "carabine": "carabin", "carabines": "carabin", "carabiniers": "carabini", "caractère": "caracter", "caractères": "caracter", "caractérisait": "caractéris", "caractérise": "caractéris", "caractéristique": "caractérist", "carafe": "caraf", "carbonaro": "carbonaro", "carburé": "carbur", "carcasse": "carc", "cardif": "cardif", "cardinal": "cardinal", "cardinaux": "cardinal", "caressa": "caress", "caressait": "caress", "caressant": "caress", "caressants": "caress", "caresse": "caress", "caressent": "caressent", "caresser": "caress", "caresseraient": "caress", "caresses": "caress", "cargaison": "cargaison", "caricature": "caricatur", "carlino": "carlino", "carlo": "carlo", "carlone": "carlon", "carnassiers": "carnassi", "carnatic": "carnatic", "carnaval": "carnaval", "carnet": "carnet", "carnot": "carnot", "caro": "caro", "caroline": "carolin", "caron": "caron", "caroubiers": "caroubi", "carpe": "carp", "carré": "carr", "carreau": "carreau", "carreaux": "carreau", "carrée": "carr", "carrefours": "carrefour", "carrément": "carr", "carrés": "carr", "carrière": "carri", "carrières": "carri", "carrosse": "carross", "carrosses": "carross", "cars": "car", "carson": "carson", "carta": "cart", "carte": "cart", "cartes": "cart", "carthage": "carthag", "carton": "carton", "cartons": "carton", "cartouche": "cartouch", "cartouches": "cartouch", "cas": "cas", "casa": "cas", "casal": "casal", "casanier": "casani", "cascade": "cascad", "cascades": "cascad", "case": "cas", "caserne": "casern", "cases": "cas", "casi": "cas", "casimir": "casim", "casino": "casino", "casque": "casqu", "casques": "casqu", "cassa": "cass", "cassait": "cass", "cassandre": "cassandr", "cassano": "cassano", "cassât": "cass", "casse": "cass", "cassé": "cass", "cassée": "cass", "cassées": "cass", "cassent": "cassent", "casser": "cass", "casserais": "cass", "casseroles": "casserol", "cassette": "casset", "cassine": "cassin", "castanède": "castaned", "caste": "cast", "castelnovo": "castelnovo", "casti": "cast", "casto": "casto", "castorine": "castorin", "castres": "castr", "castries": "castr", "casuel": "casuel", "casuistes": "casuist", "catanzara": "catanzar", "catastrophe": "catastroph", "catéchisme": "catech", "catena": "caten", "cathédrale": "cathédral", "cathelineau": "cathelineau", "catherine": "catherin", "cattaro": "cattaro", "cauchemar": "cauchemar", "cauchemars": "cauchemar", "caudataire": "caudatair", "causa": "caus", "causait": "caus", "causant": "caus", "cause": "caus", "causé": "caus", "causée": "caus", "causer": "caus", "causerait": "caus", "causèrent": "caus", "causes": "caus", "causés": "caus", "causeur": "causeur", "caustique": "caustiqu", "cauteleuse": "cautel", "cauteleux": "cautel", "caution": "caution", "cautions": "caution", "cavalerie": "cavaler", "cavalier": "cavali", "cavaliers": "cavali", "cavallo": "cavallo", "cave": "cav", "caverne": "cavern", "caves": "cav", "cavi": "cav", "caylus": "caylus", "ce": "ce", "ceci": "cec", "céda": "ced", "cédait": "ced", "cédant": "ced", "cédar": "cédar", "cède": "ced", "cédé": "ced", "céder": "ced", "cédera": "ced", "céderons": "ced", "cédez": "ced", "cèdre": "cedr", "cèdres": "cedr", "ceignait": "ceign", "ceinture": "ceintur", "cela": "cel", "célébra": "célebr", "célébraient": "célebr", "célébrait": "célebr", "célèbre": "célebr", "célébré": "célebr", "célébrée": "célebr", "célébrèrent": "célebr", "célèbres": "célebr", "célébrés": "célebr", "céleste": "célest", "célibataires": "célibatair", "cella": "cel", "celle": "cel", "celles": "cel", "cellier": "celli", "cellule": "cellul", "celui": "celui", "cendré": "cendr", "cendres": "cendr", "cendrés": "cendr", "cenis": "cen", "censure": "censur", "cent": "cent", "centaine": "centain", "centaines": "centain", "centième": "centiem", "centièmes": "centiem", "centime": "centim", "centimes": "centim", "central": "central", "centrale": "central", "centre": "centr", "centres": "centr", "cents": "cent", "centuplais": "centupl", "centuplait": "centupl", "centuplée": "centupl", "cependant": "cepend", "cercle": "cercl", "cercles": "cercl", "cérémonie": "cérémon", "cérémonies": "cérémon", "cérémonieuse": "cérémoni", "cérès": "céres", "cerf": "cerf", "cerisiers": "cerisi", "certain": "certain", "certaine": "certain", "certainement": "certain", "certaines": "certain", "certains": "certain", "certes": "cert", "certi": "cert", "certificat": "certificat", "certificats": "certificat", "certifiera": "certifi", "certitude": "certitud", "certitudes": "certitud", "cerveau": "cerveau", "cervelle": "cervel", "ces": "ce", "césar": "césar", "cesare": "cesar", "cessa": "cess", "cessaient": "cess", "cessait": "cess", "cessant": "cess", "cessante": "cess", "cessation": "cessat", "cesse": "cess", "cessé": "cess", "cesser": "cess", "cessera": "cess", "cesserais": "cess", "cesseras": "cess", "cessèrent": "cess", "cesseront": "cess", "cessiez": "cess", "cessions": "cession", "cet": "cet", "cette": "cet", "ceux": "ceux", "ceylan": "ceylan", "ceylandais": "ceyland", "chacun": "chacun", "chacune": "chacun", "chagrin": "chagrin", "chagrine": "chagrin", "chagriner": "chagrin", "chagrins": "chagrin", "chaîne": "chaîn", "chaînes": "chaîn", "chaînon": "chaînon", "chaînons": "chaînon", "chair": "chair", "chaire": "chair", "chaise": "chais", "chaises": "chais", "chalands": "chaland", "châle": "châl", "chaleur": "chaleur", "chaleurs": "chaleur", "châlon": "châlon", "châlons": "châlon", "chalvet": "chalvet", "chamarrées": "chamarr", "chamarrés": "chamarr", "chambellan": "chambellan", "chambellans": "chambellan", "chambranle": "chambranl", "chambre": "chambr", "chambres": "chambr", "chambrette": "chambret", "chameau": "chameau", "champ": "champ", "champagne": "champagn", "champêtre": "champêtr", "champions": "champion", "champs": "champ", "chance": "chanc", "chancelant": "chancel", "chancelier": "chanceli", "chancellerie": "chanceller", "chances": "chanc", "chanceux": "chanceux", "chandelle": "chandel", "chandernagor": "chandernagor", "change": "chang", "changé": "chang", "changea": "chang", "changeaient": "chang", "changeait": "chang", "changeant": "chang", "changeante": "chang", "changeants": "chang", "changée": "chang", "changement": "chang", "changements": "chang", "changent": "changent", "changer": "chang", "changerait": "chang", "changèrent": "chang", "changeront": "chang", "changés": "chang", "chanoine": "chanoin", "chanoines": "chanoin", "chanoinesse": "chanoiness", "chanson": "chanson", "chansons": "chanson", "chant": "chant", "chanta": "chant", "chantai": "chant", "chantaient": "chant", "chantait": "chant", "chantant": "chant", "chante": "chant", "chanté": "chant", "chantée": "chant", "chanter": "chant", "chantèrent": "chant", "chantés": "chant", "chanteur": "chanteur", "chanteuses": "chanteux", "chantiez": "chant", "chantonnant": "chanton", "chants": "chant", "chanvre": "chanvr", "chaos": "chaos", "chap": "chap", "chapeau": "chapeau", "chapeaux": "chapeau", "chapelet": "chapelet", "chapelle": "chapel", "chapes": "chap", "chapitre": "chapitr", "chapitres": "chapitr", "chapons": "chapon", "chaque": "chaqu", "char": "char", "charade": "charad", "charbon": "charbon", "charbonnier": "charbonni", "charcot": "charcot", "charge": "charg", "chargé": "charg", "chargea": "charg", "chargeaient": "charg", "chargeait": "charg", "chargeant": "charg", "chargée": "charg", "chargées": "charg", "chargement": "charg", "charger": "charg", "chargera": "charg", "chargerais": "charg", "chargerait": "charg", "chargèrent": "charg", "charges": "charg", "chargés": "charg", "chargez": "charg", "charing": "charing", "charitable": "charit", "charité": "charit", "charlatanisme": "charlatan", "charlatans": "charlatan", "charlemagne": "charlemagn", "charleroi": "charleroi", "charles": "charl", "charlotte": "charlott", "charma": "charm", "charmant": "charm", "charmante": "charm", "charmantes": "charm", "charmants": "charm", "charme": "charm", "charmé": "charm", "charmée": "charm", "charmer": "charm", "charmes": "charm", "charmier": "charmi", "charpente": "charpent", "charpentier": "charpenti", "charrette": "charret", "charrettes": "charret", "charron": "charron", "charrues": "charru", "chars": "char", "charte": "chart", "chartreuse": "chartreux", "chartreux": "chartreux", "chas": "chas", "chassa": "chass", "chassaient": "chass", "chassait": "chass", "chassant": "chass", "chasse": "chass", "châsse": "châss", "chassé": "chass", "chassée": "chass", "chassent": "chassent", "chasser": "chass", "chassera": "chass", "chassés": "chass", "chasseur": "chasseur", "chasseurs": "chasseur", "chassez": "chass", "châssis": "châss", "chasuble": "chasubl", "chasubles": "chasubl", "chat": "chat", "châtaignes": "châtaign", "châtaignier": "châtaigni", "châtaigniers": "châtaigni", "châtain": "châtain", "châtains": "châtain", "château": "château", "châteaux": "château", "châtier": "châti", "châtiment": "chât", "chatouillement": "chatouill", "chatouilleuse": "chatouill", "chats": "chat", "chaud": "chaud", "chaude": "chaud", "chaudement": "chaud", "chaudes": "chaud", "chaudière": "chaudi", "chaudières": "chaudi", "chauffage": "chauffag", "chauffaient": "chauff", "chauffé": "chauff", "chauffée": "chauff", "chauffer": "chauff", "chauffeur": "chauffeur", "chauffeurs": "chauffeur", "chauffez": "chauff", "chauffons": "chauffon", "chaulnes": "chauln", "chaume": "chaum", "chaumière": "chaumi", "chaumières": "chaumi", "chaussa": "chauss", "chaussé": "chauss", "chaussée": "chauss", "chaussés": "chauss", "chaussettes": "chausset", "chaussure": "chaussur", "chaussures": "chaussur", "chauve": "chauv", "chaux": "chaux", "chavira": "chav", "chavirer": "chavir", "chazel": "chazel", "che": "che", "chef": "chef", "chefs": "chef", "chekina": "chekin", "chékina": "chékin", "chélan": "chélan", "chelem": "chelem", "chelles": "chel", "chemin": "chemin", "cheminant": "chemin", "cheminée": "chemin", "cheminées": "chemin", "chemins": "chemin", "chemise": "chemis", "chemises": "chemis", "chêne": "chên", "chênes": "chên", "chènevière": "chènevi", "chenu": "chenu", "chèque": "chequ", "chèques": "chequ", "cher": "cher", "chercha": "cherch", "cherchaient": "cherch", "cherchais": "cherch", "cherchait": "cherch", "cherchant": "cherch", "cherche": "cherch", "cherché": "cherch", "cherchée": "cherch", "cherchent": "cherchent", "chercher": "cherch", "cherchera": "cherch", "chercherai": "cherch", "chercherait": "cherch", "cherchèrent": "cherch", "chercherez": "cherch", "cherches": "cherch", "cherchez": "cherch", "cherchons": "cherchon", "chère": "cher", "chèrement": "cher", "chères": "cher", "chéri": "cher", "chérie": "cher", "chérir": "cher", "chéris": "cher", "chers": "cher", "chester": "chest", "chétif": "chétif", "chétifs": "chétif", "chétive": "chétiv", "cheval": "cheval", "chevaleresque": "chevaleresqu", "chevalerie": "chevaler", "chevalier": "chevali", "chevaliers": "chevali", "chevaux": "cheval", "chevelure": "chevelur", "chevet": "chevet", "cheveu": "cheveu", "cheveux": "cheveux", "chèvrefeuilles": "chèvrefeuill", "chèvres": "chevr", "chevreuse": "chevreux", "cheyenne": "cheyen", "chez": "chez", "chiaramonti": "chiaramont", "chicago": "chicago", "chicorée": "chicor", "chien": "chien", "chiens": "chien", "chiffonna": "chiffon", "chiffonnait": "chiffon", "chiffons": "chiffon", "chiffre": "chiffr", "chiffrée": "chiffr", "chiffrées": "chiffr", "chiffrer": "chiffr", "chiffres": "chiffr", "chili": "chil", "chimère": "chimer", "chimères": "chimer", "chimériques": "chimer", "china": "chin", "chine": "chin", "chinois": "chinois", "chinoise": "chinois", "chinoises": "chinois", "chiper": "chip", "chiperait": "chip", "chirurgicales": "chirurgical", "chirurgie": "chirurg", "chirurgien": "chirurgien", "chlemm": "chlemm", "choc": "choc", "chocolat": "chocolat", "choeur": "choeur", "choeurs": "choeur", "choisi": "chois", "choisie": "chois", "choisies": "chois", "choisir": "chois", "choisirai": "chois", "choisirez": "chois", "choisis": "chois", "choisissait": "chois", "choisissez": "chois", "choisit": "chois", "choix": "choix", "cholin": "cholin", "choqua": "choqu", "choquait": "choqu", "choquante": "choqu", "choque": "choqu", "choqué": "choqu", "choquée": "choqu", "choquer": "choqu", "choquera": "choqu", "choqueraient": "choqu", "choquèrent": "choqu", "choqués": "choqu", "chorus": "chorus", "chose": "chos", "choses": "chos", "chouart": "chouart", "choucroute": "choucrout", "choyé": "choi", "chrétien": "chrétien", "chrétienne": "chrétien", "chrétiennes": "chrétien", "chrétiens": "chrétien", "christ": "christ", "christianisme": "christian", "chromatique": "chromat", "chronicle": "chronicl", "chronique": "chroniqu", "chronomètre": "chronometr", "chronomètres": "chronometr", "chronométriquement": "chronometr", "chunar": "chunar", "chut": "chut", "chute": "chut", "chuté": "chut", "chutes": "chut", "ci": "ci", "ciceri": "cicer", "cicéron": "cicéron", "cicéronien": "cicéronien", "ciel": "ciel", "cierge": "cierg", "cierges": "cierg", "cieux": "cieux", "cigales": "cigal", "cigare": "cigar", "cigares": "cigar", "ciguë": "cigu", "cils": "cil", "cimabué": "cimabu", "cimarosa": "cimaros", "cime": "cim", "cimes": "cim", "cimetière": "cimeti", "cinnamome": "cinnamom", "cinq": "cinq", "cinquantaine": "cinquantain", "cinquante": "cinqu", "cinquantième": "cinquantiem", "cinquième": "cinquiem", "cipayes": "cipay", "circé": "circ", "circonférence": "circonférent", "circonspection": "circonspect", "circonstance": "circonst", "circonstances": "circonst", "circonstancié": "circonstanci", "circonvenir": "circonven", "circula": "circul", "circulaient": "circul", "circulaire": "circulair", "circulairement": "circulair", "circulaires": "circulair", "circulant": "circul", "circulante": "circul", "circulation": "circul", "circuler": "circul", "circulerait": "circul", "circumnavigation": "circumnavig", "cire": "cir", "cirque": "cirqu", "cirques": "cirqu", "cisalpin": "cisalpin", "cisalpine": "cisalpin", "cisco": "cisco", "ciseaux": "ciseau", "cita": "cit", "citadelle": "citadel", "citaient": "cit", "citait": "cit", "citant": "cit", "citation": "citat", "citations": "citat", "cite": "cit", "cité": "cit", "citée": "cit", "citer": "cit", "citernes": "citern", "cités": "cit", "citoyen": "citoyen", "citoyennes": "citoyen", "citoyens": "citoyen", "citronnier": "citronni", "city": "city", "civil": "civil", "civile": "civil", "civilisation": "civilis", "civilisées": "civilis", "civilisés": "civilis", "civils": "civil", "clair": "clair", "claire": "clair", "clairement": "clair", "claires": "clair", "clairière": "clairi", "clairs": "clair", "clairvoyance": "clairvoi", "clairvoyant": "clairvoi", "clairvoyante": "clairvoi", "clairvoyants": "clairvoi", "clameurs": "clameur", "clandestin": "clandestin", "clara": "clar", "claret": "claret", "clarté": "clart", "classait": "class", "classe": "class", "classé": "class", "classes": "class", "classés": "class", "clause": "claus", "clayonnage": "clayonnag", "clef": "clef", "clefs": "clef", "clélia": "cléli", "clémence": "clémenc", "clément": "clément", "clerc": "clerc", "clercs": "clerc", "clergé": "clerg", "clignant": "clign", "climat": "climat", "clin": "clin", "clinquant": "clinqu", "clippers": "clipper", "clique": "cliqu", "cliquettes": "cliquet", "cloaque": "cloaqu", "cloche": "cloch", "clocher": "cloch", "clochers": "clocher", "cloches": "cloch", "clochettes": "clochet", "cloître": "cloîtr", "clopant": "clop", "clopin": "clopin", "clore": "clor", "clos": "clos", "close": "clos", "closes": "clos", "clôture": "clôtur", "clou": "clou", "cloua": "clou", "cloud": "cloud", "cloué": "clou", "clouée": "clou", "clous": "clous", "cloutier": "clouti", "clown": "clown", "clowns": "clown", "club": "club", "co": "co", "coach": "coach", "coaches": "coach", "coadjuteur": "coadjuteur", "coblentz": "coblentz", "cocarde": "cocard", "cocher": "coch", "cochère": "cocher", "cochers": "cocher", "cochinchine": "cochinchin", "coconasso": "coconasso", "cocotiers": "cocoti", "cocotte": "cocott", "code": "cod", "coeur": "coeur", "coeurs": "coeur", "coffre": "coffr", "coffré": "coffr", "coffres": "coffr", "cohue": "cohu", "coidet": "coidet", "coiffa": "coiff", "coiffé": "coiff", "coiffée": "coiff", "coiffés": "coiff", "coiffure": "coiffur", "coin": "coin", "coïncidence": "coïncident", "coins": "coin", "col": "col", "cola": "col", "colaba": "colab", "coldness": "coldness", "colère": "coler", "colères": "coler", "colfax": "colfax", "colifichet": "colifichet", "colimaçon": "colimaçon", "colique": "coliqu", "colis": "colis", "collaborateurs": "collabor", "collait": "coll", "collants": "coll", "colle": "coll", "collé": "coll", "collecteur": "collecteur", "collecteurs": "collecteur", "collection": "collect", "collège": "colleg", "collègue": "collègu", "collègues": "collègu", "coller": "coll", "collés": "coll", "collet": "collet", "collier": "colli", "colliers": "colli", "colline": "collin", "collines": "collin", "colloque": "colloqu", "colmar": "colmar", "colombes": "colomb", "colombier": "colombi", "colonel": "colonel", "colonels": "colonel", "colonie": "colon", "colonisateur": "colonis", "coloniser": "colonis", "colonnade": "colonnad", "colonne": "colon", "colonnes": "colon", "colorado": "colorado", "coloré": "color", "colorée": "color", "colorié": "colori", "coloris": "color", "colorno": "colorno", "colossal": "colossal", "colossale": "colossal", "colossales": "colossal", "colpa": "colp", "colt": "colt", "columbus": "columbus", "combat": "combat", "combats": "combat", "combattaient": "combatt", "combattants": "combatt", "combattis": "combatt", "combattit": "combatt", "combattre": "combattr", "combattu": "combattu", "combattue": "combattu", "combien": "combien", "combina": "combin", "combinaisons": "combinaison", "combinant": "combin", "combiné": "combin", "combinés": "combin", "comble": "combl", "comblé": "combl", "combler": "combl", "comblerait": "combl", "combles": "combl", "combustible": "combustibl", "come": "com", "côme": "côm", "comédie": "comed", "comédien": "comédien", "comédiens": "comédien", "comédies": "comed", "comestible": "comestibl", "comestibles": "comestibl", "comique": "comiqu", "comiques": "comiqu", "comité": "comit", "commanda": "command", "commandaient": "command", "commandait": "command", "commandant": "command", "commande": "command", "commandé": "command", "commandée": "command", "commandement": "command", "commandements": "command", "commander": "command", "commandera": "command", "commanderez": "command", "commandons": "commandon", "comme": "comm", "commença": "commenc", "commençai": "commenc", "commençaient": "commenc", "commençait": "commenc", "commençant": "commenc", "commence": "commenc", "commencé": "commenc", "commencée": "commenc", "commencement": "commenc", "commencements": "commenc", "commencent": "commencent", "commencer": "commenc", "commencera": "commenc", "commencerai": "commenc", "commencerait": "commenc", "commencèrent": "commenc", "commencés": "commenc", "commencez": "commenc", "commençons": "commençon", "commensal": "commensal", "comment": "comment", "commentaire": "commentair", "commentaires": "commentair", "commentateurs": "comment", "commentée": "comment", "commenter": "comment", "commentés": "comment", "commerçante": "commerc", "commerçantes": "commerc", "commerçants": "commerc", "commerce": "commerc", "commerciale": "commercial", "commets": "commet", "commette": "commet", "commettent": "commettent", "commettra": "commettr", "commettrais": "commettr", "commettre": "commettr", "commis": "comm", "commise": "commis", "commisération": "commiser", "commissaire": "commissair", "commission": "commiss", "commissions": "comm", "commit": "comm", "commode": "commod", "commodément": "commod", "commotion": "commot", "commuée": "commu", "commuer": "commu", "commuera": "commu", "commun": "commun", "communauté": "communaut", "communaux": "communal", "commune": "commun", "communément": "commun", "communes": "commun", "communicatif": "commun", "communication": "commun", "communications": "commun", "communicative": "commun", "communie": "commun", "communion": "communion", "communiqua": "communiqu", "communiquaient": "communiqu", "communiquait": "communiqu", "communique": "commun", "communiqué": "communiqu", "communiquée": "communiqu", "communiquer": "communiqu", "communs": "commun", "commutation": "commut", "compagne": "compagn", "compagnie": "compagn", "compagnies": "compagn", "compagnon": "compagnon", "compagnons": "compagnon", "compara": "compar", "comparable": "compar", "comparaient": "compar", "comparaison": "comparaison", "comparait": "compar", "comparaîtrez": "comparaîtr", "comparant": "compar", "comparativement": "compar", "compare": "compar", "comparé": "compar", "comparée": "compar", "comparer": "compar", "compartiment": "compart", "compartiments": "compart", "compas": "comp", "compassé": "compass", "compassées": "compass", "compatibles": "compatibl", "compatriote": "compatriot", "compatriotes": "compatriot", "compensation": "compens", "compense": "compens", "compensé": "compens", "compenser": "compens", "compère": "comper", "complaisait": "complais", "complaisamment": "complais", "complaisance": "complais", "complaisances": "complais", "complaisant": "complais", "complaisante": "complais", "complaisantes": "complais", "complaisants": "complais", "complément": "compl", "complet": "complet", "complétaient": "complet", "complétait": "complet", "complète": "complet", "complété": "complet", "complètement": "complet", "compléter": "complet", "complètes": "complet", "complets": "complet", "complication": "compliqu", "complice": "complic", "complices": "complic", "complicité": "compliqu", "compliment": "compl", "complimenté": "compliment", "complimenteur": "complimenteur", "complimenteurs": "complimenteur", "complimenteuse": "compliment", "compliments": "compl", "complique": "compliqu", "compliqué": "compliqu", "compliquée": "compliqu", "compliquées": "compliqu", "compliqués": "compliqu", "complot": "complot", "componction": "componct", "comporta": "comport", "comportait": "comport", "comporte": "comport", "comporté": "comport", "comportée": "comport", "composa": "compos", "composaient": "compos", "composait": "compos", "composant": "compos", "compose": "compos", "composé": "compos", "composée": "compos", "composées": "compos", "composent": "composent", "composer": "compos", "composition": "composit", "compositions": "composit", "comprato": "comprato", "comprenaient": "compren", "comprenait": "compren", "comprenant": "compren", "comprend": "comprend", "comprendra": "comprendr", "comprendrai": "comprendr", "comprendrait": "comprendr", "comprendre": "comprendr", "comprendrez": "comprendr", "comprends": "comprend", "comprenez": "compren", "comprenne": "compren", "comprennent": "comprennent", "comprimant": "comprim", "comprimées": "comprim", "comprimés": "comprim", "comprirent": "compr", "compris": "compr", "comprise": "compris", "comprit": "compr", "comprît": "compr", "compromet": "compromet", "compromets": "compromet", "compromettait": "compromet", "compromettant": "compromet", "compromettante": "compromet", "compromettantes": "compromet", "compromette": "compromet", "compromettra": "compromettr", "compromettrais": "compromettr", "compromettre": "compromettr", "compromis": "comprom", "compromise": "compromis", "compromises": "compromis", "compta": "compt", "comptabilité": "comptabl", "comptaient": "compt", "comptais": "compt", "comptait": "compt", "comptant": "compt", "comptât": "compt", "compte": "compt", "compté": "compt", "comptées": "compt", "comptent": "comptent", "compter": "compt", "compterai": "compt", "comptèrent": "compt", "comptes": "compt", "comptés": "compt", "comptez": "compt", "comptiez": "compt", "comptoir": "comptoir", "comptoirs": "comptoir", "comptons": "compton", "comte": "comt", "comté": "comt", "comtes": "comt", "comtés": "comt", "comtesse": "comtess", "comtois": "comtois", "comtoise": "comtois", "concentré": "concentr", "concentrer": "concentr", "concentrés": "concentr", "concernaient": "concern", "concernant": "concern", "concerné": "concern", "concert": "concert", "concerté": "concert", "concerts": "concert", "concession": "concess", "concessions": "concess", "concevaient": "concev", "concevait": "concev", "concevez": "concev", "concevoir": "concevoir", "concierge": "concierg", "concilié": "concili", "concilier": "concili", "concises": "concis", "concitoyens": "concitoyen", "conclu": "conclu", "concluaient": "conclu", "concluantes": "conclu", "concluants": "conclu", "conclue": "conclu", "conclure": "conclur", "conclurent": "conclurent", "conclusion": "conclus", "conclusions": "conclus", "conclut": "conclut", "conçois": "conçois", "conçoit": "conçoit", "concordance": "concord", "concordant": "concord", "concordat": "concordat", "concourent": "concourent", "concours": "concour", "conçu": "conçu", "conçue": "conçu", "concurrent": "concurrent", "concurrents": "concurrent", "conçut": "conçut", "condamnable": "condamn", "condamnait": "condamn", "condamnant": "condamn", "condamnation": "condamn", "condamne": "condamn", "condamné": "condamn", "condamnée": "condamn", "condamnent": "condamnent", "condamner": "condamn", "condamneront": "condamn", "condamnés": "condamn", "condé": "cond", "condescendance": "condescend", "condillac": "condillac", "condiments": "cond", "condition": "condit", "conditionnée": "condition", "conditions": "condit", "condoléance": "condolé", "conducteur": "conducteur", "conduira": "conduir", "conduirait": "conduir", "conduire": "conduir", "conduisaient": "conduis", "conduisait": "conduis", "conduisant": "conduis", "conduisent": "conduisent", "conduisez": "conduis", "conduisit": "conduis", "conduit": "conduit", "conduite": "conduit", "conduites": "conduit", "conduits": "conduit", "confection": "confect", "confédéré": "conféder", "conférait": "confer", "conférence": "conférent", "conférences": "conférent", "conférer": "confer", "confessant": "confess", "confesser": "confess", "confesserai": "confess", "confesseur": "confesseur", "confesseurs": "confesseur", "confession": "confess", "confessionnal": "confessionnal", "confessionnaux": "confessionnal", "confessions": "confess", "confia": "confi", "confiance": "confianc", "confidence": "confident", "confidences": "confident", "confident": "confident", "confidente": "confident", "confié": "confi", "confiée": "confi", "confiées": "confi", "confier": "confi", "confiés": "confi", "confiné": "confin", "confiner": "confin", "confirma": "confirm", "confirmait": "confirm", "confirmée": "confirm", "confirmer": "confirm", "confirmèrent": "confirm", "confiscation": "confisc", "confisque": "confisqu", "confisqué": "confisqu", "confit": "conf", "confluent": "confluent", "confondait": "confond", "confonde": "confond", "confondent": "confondent", "confondre": "confondr", "confondu": "confondu", "confondus": "confondus", "conformait": "conform", "conforme": "conform", "conformer": "conform", "confort": "confort", "confortable": "confort", "confortablement": "confort", "confortables": "confort", "confrère": "confrer", "confrères": "confrer", "confrérie": "confrer", "confucius": "confucius", "confus": "confus", "confuse": "confus", "confusément": "confus", "confusion": "confus", "confusions": "confus", "congé": "cong", "congédia": "congédi", "congédiant": "congédi", "congédié": "congédi", "congédiés": "congédi", "congénères": "congéner", "congestionnée": "congestion", "congratulation": "congratul", "congréganiste": "congrégan", "congréganistes": "congrégan", "congrégation": "congreg", "congrès": "congres", "conjecture": "conjectur", "conjecturer": "conjectur", "conjectures": "conjectur", "conjonctions": "conjonct", "conjugal": "conjugal", "conjugale": "conjugal", "conjuguer": "conjugu", "conjurait": "conjur", "conjurant": "conjur", "conjure": "conjur", "conjurée": "conjur", "conjurer": "conjur", "connais": "con", "connaissaient": "connaiss", "connaissais": "connaiss", "connaissait": "connaiss", "connaissance": "connaiss", "connaissances": "connaiss", "connaissent": "connaissent", "connaisseurs": "connaisseur", "connaissez": "connaiss", "connaissiez": "connaiss", "connaissons": "connaisson", "connaît": "connaît", "connaîtrait": "connaîtr", "connaitre": "connaitr", "connaître": "connaîtr", "connivence": "connivent", "connu": "connu", "connue": "connu", "connues": "connu", "connus": "connus", "connut": "connut", "conquérir": "conquer", "conquête": "conquêt", "conquis": "conqu", "conquise": "conquis", "conradin": "conradin", "consacrait": "consacr", "consacre": "consacr", "consacré": "consacr", "consacrée": "consacr", "consacrées": "consacr", "consacrer": "consacr", "consacrerai": "consacr", "consacrés": "consacr", "conscience": "conscienc", "consciencieusement": "conscienci", "conscription": "conscript", "conscrit": "conscr", "conseil": "conseil", "conseilla": "conseil", "conseillaient": "conseil", "conseillait": "conseil", "conseille": "conseil", "conseillé": "conseil", "conseillée": "conseil", "conseiller": "conseil", "conseillerai": "conseil", "conseillerais": "conseil", "conseillerait": "conseil", "conseilleriez": "conseil", "conseillers": "conseiller", "conseils": "conseil", "consens": "consen", "consentait": "consent", "consente": "consent", "consentement": "consent", "consentez": "consent", "consenti": "consent", "consentions": "consent", "consentir": "consent", "consentirai": "consent", "consentirais": "consent", "consentirent": "consent", "consentit": "consent", "conséquemment": "conséquent", "conséquence": "conséquent", "conséquences": "conséquent", "conséquent": "conséquent", "conservait": "conserv", "conservant": "conserv", "conservation": "conserv", "conservatoire": "conservatoir", "conserve": "conserv", "conservé": "conserv", "conservée": "conserv", "conservées": "conserv", "conservent": "conservent", "conserver": "conserv", "conserverai": "conserv", "conserves": "conserv", "considéra": "consider", "considérable": "consider", "considérablement": "consider", "considérables": "consider", "considérait": "consider", "considérant": "consider", "considération": "consider", "considérations": "consider", "considère": "consider", "considéré": "consider", "considérée": "consider", "considérées": "consider", "considérer": "consider", "considérerais": "consider", "considérés": "consider", "consigne": "consign", "consistait": "consist", "consistance": "consist", "consiste": "consist", "consister": "consist", "consola": "consol", "consolaient": "consol", "consolait": "consol", "consolation": "consol", "consolations": "consol", "console": "consol", "consolé": "consol", "consolée": "consol", "consoler": "consol", "consomma": "consomm", "consommateur": "consomm", "consommateurs": "consomm", "consommé": "consomm", "consommée": "consomm", "consommer": "consomm", "consommez": "consomm", "conspirais": "consp", "conspirante": "conspir", "conspirateur": "conspir", "conspirateurs": "conspir", "conspiration": "conspir", "conspiré": "conspir", "conspirer": "conspir", "conspué": "conspu", "constamment": "const", "constance": "constanc", "constant": "const", "constante": "const", "constantin": "constantin", "constants": "const", "constata": "constat", "constaté": "constat", "constater": "constat", "consternation": "constern", "consterné": "constern", "consternée": "constern", "constituait": "constitu", "constitue": "constitu", "constitué": "constitu", "constituer": "constitu", "constituera": "constitu", "constitution": "constitu", "constitutionnel": "constitutionnel", "constitutionnels": "constitutionnel", "construction": "construct", "construire": "construir", "construisait": "construis", "construit": "construit", "construite": "construit", "construites": "construit", "construits": "construit", "consul": "consul", "consulaire": "consulair", "consulaires": "consulair", "consulat": "consulat", "consulta": "consult", "consultait": "consult", "consultant": "consult", "consultative": "consult", "consulté": "consult", "consulter": "consult", "consulterais": "consult", "consultés": "consult", "consultons": "consulton", "consumé": "consum", "conta": "cont", "contact": "contact", "contagieux": "contagi", "contais": "cont", "contait": "cont", "contarini": "contarin", "conte": "cont", "conté": "cont", "contée": "cont", "contemplait": "contempl", "contemplant": "contempl", "contemplation": "contempl", "contemple": "contempl", "contempler": "contempl", "contemplerait": "contempl", "contemporains": "contemporain", "contenaient": "conten", "contenait": "conten", "contenance": "conten", "contenant": "conten", "contenir": "conten", "content": "content", "contenta": "content", "contentait": "content", "contentant": "content", "contente": "content", "contentement": "content", "contenterait": "content", "contents": "content", "contenu": "contenu", "contenue": "contenu", "contenues": "contenu", "contenus": "contenus", "conter": "cont", "conterai": "cont", "conterait": "cont", "contes": "cont", "contessina": "contessin", "contester": "contest", "conti": "cont", "contiennent": "contiennent", "contient": "contient", "contine": "contin", "continent": "continent", "continental": "continental", "continents": "continent", "contino": "contino", "contînt": "contînt", "continu": "continu", "continua": "continu", "continuait": "continu", "continuant": "continu", "continuation": "continu", "continue": "continu", "continué": "continu", "continuel": "continuel", "continuelle": "continuel", "continuellement": "continuel", "continuelles": "continuel", "continuels": "continuel", "continuer": "continu", "continuera": "continu", "continuerait": "continu", "continueront": "continu", "continuez": "continu", "continuité": "continu", "continuons": "continuon", "contorsions": "contors", "contour": "contour", "contournait": "contourn", "contournant": "contourn", "contourne": "contourn", "contours": "contour", "contractait": "contract", "contracté": "contract", "contractée": "contract", "contracter": "contract", "contractés": "contract", "contractions": "contract", "contradictoirement": "contradictoir", "contradictoires": "contradictoir", "contraindre": "contraindr", "contraint": "contraint", "contrainte": "contraint", "contraintes": "contraint", "contraire": "contrair", "contraires": "contrair", "contraria": "contrari", "contrariait": "contrari", "contrariant": "contrari", "contrarie": "contrar", "contrarié": "contrari", "contrariée": "contrari", "contrarier": "contrari", "contrariera": "contrari", "contrariés": "contrari", "contrariété": "contrariet", "contrariétés": "contrariet", "contrariez": "contrar", "contrastait": "contrast", "contraste": "contrast", "contrastes": "contrast", "contrat": "contrat", "contravention": "contravent", "contraventions": "contravent", "contre": "contr", "contrebandier": "contrebandi", "contrebandiers": "contrebandi", "contrebas": "contreb", "contrebasse": "contreb", "contrebasses": "contreb", "contrecoup": "contrecoup", "contrecoups": "contrecoup", "contredanse": "contredans", "contredanses": "contredans", "contredirait": "contred", "contredire": "contredir", "contredisait": "contredis", "contredisant": "contredis", "contredit": "contred", "contrée": "contr", "contrées": "contr", "contrefaite": "contrefait", "contrefera": "contref", "contrefort": "contrefort", "contresens": "contresen", "contresigner": "contresign", "contretemps": "contretemp", "contribua": "contribu", "contribuai": "contribu", "contribué": "contribu", "contribuer": "contribu", "contribution": "contribu", "contributions": "contribu", "contrit": "contr", "contrition": "contrit", "contrôle": "contrôl", "contrôler": "contrôl", "contrôles": "contrôl", "contumace": "contumac", "contusions": "contus", "convaincre": "convaincr", "convaincu": "convaincu", "convaincue": "convaincu", "convenable": "conven", "convenablement": "conven", "convenables": "conven", "convenaient": "conven", "convenait": "conven", "convenance": "conven", "convenances": "conven", "convenez": "conven", "convenir": "conven", "convenons": "convenon", "convention": "convent", "convenu": "convenu", "convenue": "convenu", "convenus": "convenus", "converger": "converg", "conversation": "convers", "conversations": "convers", "conversion": "convers", "conversions": "convers", "convertie": "convert", "convertir": "convert", "convertis": "convert", "conviction": "convict", "convictions": "convict", "conviendra": "conviendr", "conviendrait": "conviendr", "conviendrez": "conviendr", "conviendrons": "conviendron", "convienne": "convien", "conviennent": "conviennent", "conviens": "convien", "convient": "convient", "convier": "convi", "convint": "convint", "convînt": "convînt", "convives": "conviv", "convocation": "convoc", "convoi": "convoi", "convois": "convois", "convoitise": "convoitis", "convulsif": "convuls", "convulsifs": "convuls", "convulsion": "convuls", "convulsionnait": "convulsion", "convulsive": "convuls", "convulsivement": "convuls", "coolies": "cool", "copeaux": "copeau", "copiait": "copi", "copiant": "copi", "copie": "cop", "copié": "copi", "copiée": "copi", "copient": "copient", "copier": "copi", "copies": "cop", "copieusement": "copieux", "copiez": "cop", "copiste": "copist", "coq": "coq", "coque": "coqu", "coquets": "coquet", "coquette": "coquet", "coquetterie": "coquetter", "coquetteries": "coquetter", "coquille": "coquill", "coquin": "coquin", "coquine": "coquin", "coquinerie": "coquiner", "coquineries": "coquiner", "coquins": "coquin", "coran": "coran", "corbeau": "corbeau", "corbeaux": "corbeau", "corbeille": "corbeil", "corday": "corday", "corde": "cord", "cordes": "cord", "cordon": "cordon", "cordons": "cordon", "corea": "cor", "cormorans": "cormoran", "cornac": "cornac", "corne": "corn", "corneille": "corneil", "corneilles": "corneil", "cornelia": "corneli", "cornelii": "cornelii", "cornes": "corn", "corniche": "cornich", "cornichon": "cornichon", "cornwallis": "cornwall", "corporation": "corpor", "corps": "corp", "corpus": "corpus", "corrals": "corral", "correct": "correct", "correcte": "correct", "correctement": "correct", "correctif": "correct", "correction": "correct", "correctionnelle": "correctionnel", "corrège": "correg", "correspondait": "correspond", "correspondance": "correspond", "correspondances": "correspond", "correspondant": "correspond", "correspondants": "correspond", "correspondre": "correspondr", "corridor": "corridor", "corridors": "corridor", "corrigeait": "corrig", "corrigée": "corrig", "corriger": "corrig", "corrigerez": "corrig", "corrodant": "corrod", "corrompre": "corrompr", "corrompu": "corrompu", "corrosif": "corros", "corruption": "corrupt", "cors": "cor", "corso": "corso", "cortège": "corteg", "cortellate": "cortellat", "corvée": "corv", "cosa": "cos", "cosaques": "cosaqu", "cosi": "cos", "cosmopolite": "cosmopolit", "costume": "costum", "costumes": "costum", "cotait": "cot", "cote": "cot", "côte": "côt", "côté": "côt", "coteaux": "coteau", "cotée": "cot", "coterie": "coter", "coteries": "coter", "côtes": "côt", "côtés": "côt", "coton": "coton", "cotonnades": "cotonnad", "cotons": "coton", "côtoyant": "côtoi", "côtoyé": "côtoi", "cotre": "cotr", "cotte": "cott", "cou": "cou", "coucha": "couch", "couchait": "couch", "couchant": "couch", "couche": "couch", "couché": "couch", "couchée": "couch", "couchent": "couchent", "coucher": "couch", "coucherai": "couch", "coucherait": "couch", "couchèrent": "couch", "couchés": "couch", "couchettes": "couchet", "couchez": "couch", "coude": "coud", "coudes": "coud", "coudre": "coudr", "coudrier": "coudri", "couds": "coud", "coulaient": "coul", "coulait": "coul", "coulant": "coul", "coule": "coul", "coulé": "coul", "couler": "coul", "coulèrent": "coul", "couleur": "couleur", "couleurs": "couleur", "coulisse": "coul", "coulisses": "coul", "couloirs": "couloir", "coulon": "coulon", "council": "council", "coup": "coup", "coupa": "coup", "coupable": "coupabl", "coupables": "coupabl", "coupaient": "coup", "coupait": "coup", "coupant": "coup", "coupât": "coup", "coupe": "coup", "coupé": "coup", "coupée": "coup", "coupées": "coup", "coupent": "coupent", "couper": "coup", "couperosée": "couperos", "coupes": "coup", "coupés": "coup", "coupez": "coup", "couple": "coupl", "couples": "coupl", "couplet": "couplet", "couplets": "couplet", "coups": "coup", "coupure": "coupur", "cour": "cour", "courage": "courag", "courages": "courag", "courageuse": "courag", "courageusement": "courag", "courageuses": "courag", "courageux": "courag", "couraient": "cour", "courait": "cour", "courant": "cour", "courants": "cour", "courbait": "courb", "courbe": "courb", "courbé": "courb", "courber": "courb", "courbes": "courb", "courbés": "courb", "courbure": "courbur", "coure": "cour", "courent": "courent", "coureur": "coureur", "coureurs": "coureur", "courez": "cour", "courier": "couri", "courir": "cour", "couronnaient": "couron", "couronne": "couron", "couronné": "couron", "couronnées": "couron", "couronnement": "couron", "couronnent": "couronnent", "couronner": "couron", "couronnes": "couron", "courons": "couron", "courrais": "courr", "courrez": "courr", "courrier": "courri", "courriers": "courri", "courroucés": "courrouc", "courroux": "courroux", "cours": "cour", "course": "cours", "courses": "cours", "court": "court", "courte": "court", "courtes": "court", "courtier": "courti", "courtiers": "courti", "courtine": "courtin", "courtisan": "courtisan", "courtisanerie": "courtisaner", "courtisanesque": "courtisanesqu", "courtisans": "courtisan", "courts": "court", "couru": "couru", "coururent": "coururent", "courus": "courus", "courut": "courut", "courût": "courût", "cousait": "cous", "cousin": "cousin", "cousine": "cousin", "cousines": "cousin", "coussin": "coussin", "coussins": "coussin", "cousu": "cousu", "coûta": "coût", "coûtaient": "coût", "coûtait": "coût", "coûtant": "coût", "coûte": "coût", "coûté": "coût", "couteau": "couteau", "couteaux": "couteau", "coûtent": "coûtent", "couter": "cout", "coûter": "coût", "coûtera": "coût", "coûterait": "coût", "coûtèrent": "coût", "coûteront": "coût", "coutil": "coutil", "coutume": "coutum", "coutumes": "coutum", "couvent": "couvent", "couvents": "couvent", "couvert": "couvert", "couverte": "couvert", "couvertes": "couvert", "couverts": "couvert", "couverture": "couvertur", "couvertures": "couvertur", "couvraient": "couvr", "couvrait": "couvr", "couvrant": "couvr", "couvre": "couvr", "couvrent": "couvrent", "couvrir": "couvr", "couvrira": "couvr", "couvrit": "couvr", "craché": "crach", "cracher": "crach", "craignais": "craign", "craignait": "craign", "craignant": "craign", "craignez": "craign", "craignions": "craignion", "craignirent": "craign", "craignit": "craign", "craignons": "craignon", "craindra": "craindr", "craindrai": "craindr", "craindre": "craindr", "crains": "crain", "craint": "craint", "crainte": "craint", "craintes": "craint", "craintifs": "craintif", "cramoisi": "cramois", "cramoisie": "cramois", "cramoisis": "cramois", "crampe": "cramp", "cramponne": "crampon", "crâne": "crân", "craquement": "craqu", "crasseux": "crasseux", "cravache": "cravach", "cravate": "cravat", "crayon": "crayon", "créance": "créanc", "créature": "créatur", "créatures": "créatur", "credete": "credet", "crédit": "cred", "créditeur": "créditeur", "crédulité": "crédul", "créé": "cré", "creek": "creek", "creeks": "creek", "crème": "crem", "créole": "créol", "crépuscule": "crépuscul", "crescentini": "crescentin", "crescentius": "crescentius", "crescenzi": "crescenz", "crête": "crêt", "creusaient": "creus", "creusait": "creus", "creusé": "creus", "creuses": "creus", "creux": "creux", "crevé": "crev", "crèvera": "crev", "cri": "cri", "cria": "cri", "criaient": "cri", "criait": "cri", "criant": "cri", "criante": "cri", "criards": "criard", "criblé": "cribl", "crie": "cri", "crié": "cri", "crier": "cri", "crièrent": "cri", "criés": "cri", "criez": "cri", "crime": "crim", "crimes": "crim", "criminel": "criminel", "criminelle": "criminel", "criminelles": "criminel", "criminels": "criminel", "crin": "crin", "crinière": "crini", "crinières": "crini", "crins": "crin", "cris": "cris", "crise": "cris", "crispe": "crisp", "cristal": "cristal", "cristaux": "cristal", "critique": "critiqu", "critiqué": "critiqu", "critiquent": "critiquent", "critiques": "critiqu", "crochet": "crochet", "croie": "croi", "croient": "croient", "croira": "croir", "croirai": "croir", "croiraient": "croir", "croirais": "croir", "croirait": "croir", "croire": "croir", "croirez": "croir", "croiriez": "croir", "croirons": "croiron", "croiront": "croiront", "crois": "crois", "croisa": "crois", "croisade": "croisad", "croisades": "croisad", "croisaient": "crois", "croisait": "crois", "croisé": "crois", "croisée": "crois", "croisées": "crois", "croisenois": "croisenois", "croisés": "crois", "croissaient": "croiss", "croissait": "croiss", "croissance": "croissanc", "croissant": "croiss", "croissante": "croiss", "croit": "croit", "croître": "croîtr", "croix": "croix", "cromarty": "cromarty", "cross": "cross", "crotte": "crott", "crotté": "crott", "crottées": "crott", "crouler": "croul", "croupe": "croup", "croupir": "croup", "croyaient": "croi", "croyais": "croi", "croyait": "croi", "croyance": "croyanc", "croyant": "croi", "croyante": "croi", "croyants": "croi", "croyez": "croi", "croyiez": "croi", "croyons": "croyon", "cru": "cru", "cruauté": "cruaut", "cruautés": "cruaut", "cruciales": "crucial", "crucifix": "crucifix", "crue": "cru", "cruel": "cruel", "cruelle": "cruel", "cruellement": "cruel", "cruelles": "cruel", "cruels": "cruel", "crues": "cru", "crûment": "crûment", "crurent": "crurent", "crus": "crus", "crut": "crut", "crût": "crût", "cueilli": "cueil", "cuir": "cuir", "cuirasse": "cuir", "cuirasses": "cuir", "cuirassier": "cuirassi", "cuirassiers": "cuirassi", "cuisant": "cuis", "cuisante": "cuis", "cuisine": "cuisin", "cuisines": "cuisin", "cuisinier": "cuisini", "cuisinière": "cuisini", "cuisiniers": "cuisini", "cuisse": "cuiss", "cuisses": "cuiss", "cuistre": "cuistr", "cuistres": "cuistr", "cuite": "cuit", "cuivre": "cuivr", "cuivres": "cuivr", "culbute": "culbut", "culotte": "culott", "culottes": "culott", "culpa": "culp", "culpabilité": "culpabl", "culte": "cult", "cultivée": "cultiv", "cultivées": "cultiv", "cultivent": "cultivent", "cultiver": "cultiv", "cunard": "cunard", "cunctando": "cunctando", "cupidité": "cupid", "cure": "cur", "curé": "cur", "cures": "cur", "curés": "cur", "curieuse": "curieux", "curieusement": "curieux", "curieuses": "curieux", "curieux": "curieux", "curiosité": "curios", "custom": "custom", "cuves": "cuv", "cuvette": "cuvet", "cygne": "cygn", "cymbales": "cymbal", "cynique": "cyniqu", "cyr": "cyr", "d": "d", "da": "da", "dague": "dagu", "daigna": "daign", "daignaient": "daign", "daignait": "daign", "daignant": "daign", "daignât": "daign", "daigne": "daign", "daigné": "daign", "daignent": "daignent", "daigner": "daign", "daignera": "daign", "daignerait": "daign", "daignèrent": "daign", "daignerez": "daign", "daignez": "daign", "daily": "daily", "daim": "daim", "dais": "dais", "dakota": "dakot", "dalles": "dall", "dalliance": "dallianc", "dalmate": "dalmat", "damas": "dam", "damasquinés": "damasquin", "dame": "dam", "dames": "dam", "damné": "damn", "damnée": "damn", "damnent": "damnent", "damnés": "damn", "dandin": "dandin", "dandinant": "dandin", "dandy": "dandy", "dandys": "dandy", "danger": "dang", "dangereuse": "danger", "dangereusement": "danger", "dangereuses": "danger", "dangereux": "danger", "dangers": "danger", "dans": "dan", "dansa": "dans", "dansaient": "dans", "dansait": "dans", "dansant": "dans", "danse": "dans", "dansé": "dans", "dansent": "dansent", "danser": "dans", "dansèrent": "dans", "danses": "dans", "danseuses": "danseux", "dante": "dant", "danton": "danton", "darkness": "darkness", "data": "dat", "datait": "dat", "date": "dat", "daté": "dat", "datée": "dat", "datées": "dat", "dates": "dat", "dattiers": "datti", "davantage": "davantag", "davenport": "davenport", "davide": "david", "day": "day", "days": "day", "de": "de", "dé": "dé", "débarqua": "débarqu", "débarquaient": "débarqu", "débarquait": "débarqu", "débarquant": "débarqu", "débarque": "débarqu", "débarqué": "débarqu", "débarquement": "débarqu", "débarquer": "débarqu", "débarquèrent": "débarqu", "débarrassé": "débarrass", "débarrassée": "débarrass", "débarrasser": "débarrass", "débarrassés": "débarrass", "débarrassez": "débarrass", "débat": "débat", "débats": "débat", "débattait": "débatt", "débattant": "débatt", "débattrais": "débattr", "débattre": "débattr", "débattue": "débattu", "débauche": "débauch", "debile": "debil", "débit": "deb", "débita": "débit", "débitaient": "débit", "débitant": "débit", "débite": "débit", "débitées": "débit", "débiter": "débit", "débiteur": "débiteur", "débonnaireté": "débonnairet", "débordait": "débord", "débordé": "débord", "déborder": "débord", "débouchaient": "débouch", "débouche": "débouch", "déboucher": "débouch", "déboursé": "débours", "debout": "debout", "débrider": "débrid", "débris": "debr", "débrouillée": "débrouill", "débrouiller": "débrouill", "début": "début", "débuta": "début", "débute": "début", "débuté": "début", "débuter": "début", "décachetait": "décachet", "décachetée": "décachet", "décachetées": "décachet", "décadence": "décadent", "décampa": "décamp", "décampe": "décamp", "décampé": "décamp", "décamper": "décamp", "décampons": "décampon", "décapité": "décap", "décelât": "décel", "décembre": "décembr", "décemment": "décent", "décence": "décenc", "décent": "décent", "décente": "décent", "décents": "décent", "déceptions": "décept", "décès": "déces", "déchaînait": "déchaîn", "déchaînât": "déchaîn", "déchaînement": "déchaîn", "déchaîner": "déchaîn", "décharge": "décharg", "déchargement": "décharg", "décharger": "décharg", "décharges": "décharg", "déchira": "dech", "déchiraient": "dech", "déchirait": "dech", "déchirant": "déchir", "déchire": "déchir", "déchiré": "déchir", "déchirée": "déchir", "déchirées": "déchir", "déchirements": "déchir", "déchirer": "déchir", "déchirés": "déchir", "déchirures": "déchirur", "déchoir": "déchoir", "déchu": "déchu", "décida": "décid", "décidaient": "décid", "décidait": "décid", "décidant": "décid", "décide": "décid", "décidé": "décid", "décidée": "décid", "décidées": "décid", "décidément": "décid", "décident": "décident", "décider": "décid", "décidera": "décid", "déciderait": "décid", "décidèrent": "décid", "déciderez": "décid", "décimus": "décimus", "décisif": "décis", "décision": "décis", "décisions": "décis", "décisive": "décis", "décius": "décius", "déclamer": "déclam", "déclara": "déclar", "déclarait": "déclar", "déclarant": "déclar", "déclaration": "déclar", "déclarations": "déclar", "déclare": "déclar", "déclaré": "déclar", "déclarée": "déclar", "déclarer": "déclar", "déclarerait": "déclar", "déclarèrent": "déclar", "déclarés": "déclar", "déclarez": "déclar", "déclassés": "déclass", "décoloré": "décolor", "décolorée": "décolor", "décolorées": "décolor", "décomposition": "décomposit", "déconcerta": "déconcert", "déconcertait": "déconcert", "déconcerté": "déconcert", "déconcertée": "déconcert", "déconcerter": "déconcert", "déconcertés": "déconcert", "déconfit": "déconf", "décontenancé": "décontenanc", "déconvenues": "déconvenu", "décorateur": "décor", "décoration": "décor", "décore": "décor", "décoré": "décor", "décorée": "décor", "décorum": "décorum", "découchait": "découch", "découpait": "découp", "découpant": "découp", "découpés": "découp", "découragé": "décourag", "découragement": "décourag", "découragements": "décourag", "décourager": "décourag", "décousus": "décousus", "découvert": "découvert", "découverte": "découvert", "découvertes": "découvert", "découverts": "découvert", "découvrait": "découvr", "découvrant": "découvr", "découvre": "découvr", "découvrir": "découvr", "découvrira": "découvr", "découvrirent": "découvr", "découvrit": "découvr", "décrépitude": "décrépitud", "décret": "décret", "décrets": "décret", "décrire": "décrir", "décrit": "decr", "décrivaient": "décriv", "décrivait": "décriv", "décrivant": "décriv", "décrocha": "décroch", "dédaignant": "dédaign", "dédaignée": "dédaign", "dédaigneuse": "dédaign", "dédaigneux": "dédaign", "dédain": "dédain", "dédains": "dédain", "dedans": "dedan", "dédommageait": "dédommag", "dédommagement": "dédommag", "dédommagent": "dédommagent", "dédommagerez": "dédommag", "déduire": "déduir", "déduisit": "déduis", "deem": "deem", "deeper": "deep", "déesse": "déess", "défaillante": "défaill", "défaillir": "défaill", "défaire": "défair", "défais": "def", "défaisait": "défais", "défait": "def", "défaite": "défait", "défaites": "défait", "défasse": "def", "défaut": "défaut", "défauts": "défaut", "défaveur": "défaveur", "défavorable": "défavor", "défection": "défect", "défend": "défend", "défendaient": "défend", "défendait": "défend", "défendant": "défend", "défende": "défend", "défendent": "défendent", "défendez": "défend", "défendit": "défend", "défendons": "défendon", "défendre": "défendr", "défends": "défend", "défendu": "défendu", "défendue": "défendu", "défendues": "défendu", "défense": "défens", "défenses": "défens", "défenseurs": "défenseur", "défensive": "défens", "déferai": "def", "déférence": "déférent", "défiait": "défi", "défiance": "défianc", "défiant": "défi", "défie": "def", "défigurait": "défigur", "défiguré": "défigur", "défila": "défil", "défilé": "défil", "défiler": "défil", "défilés": "défil", "définissable": "définiss", "définitive": "définit", "définitivement": "définit", "défit": "def", "défoncèrent": "défonc", "défroque": "défroqu", "défunt": "défunt", "dégagé": "dégag", "dégagea": "dégag", "dégagée": "dégag", "dégagement": "dégag", "dégager": "dégag", "dégât": "deg", "dégénéré": "dégéner", "dégoût": "dégoût", "dégoûtant": "dégoût", "dégoûtante": "dégoût", "dégoûté": "dégoût", "dégoûtée": "dégoût", "dégradée": "dégrad", "dégradent": "dégradent", "dégrader": "dégrad", "degré": "degr", "degrés": "degr", "dégrisa": "dégris", "déguenillée": "déguenill", "déguerpir": "déguerp", "déguisa": "déguis", "déguisait": "déguis", "déguise": "déguis", "déguisé": "déguis", "déguisée": "déguis", "déguisement": "déguis", "déguiser": "déguis", "déguisèrent": "déguis", "déguisés": "déguis", "dehors": "dehor", "déjà": "déjà", "déjetées": "déjet", "déjeuna": "déjeun", "déjeunait": "déjeun", "déjeunant": "déjeun", "déjeuné": "déjeun", "déjeuner": "déjeun", "déjeunèrent": "déjeun", "déjeunons": "déjeunon", "déjouer": "déjou", "déjoués": "déjou", "del": "del", "delà": "delà", "délabré": "délabr", "délabrée": "délabr", "délabrement": "délabr", "délai": "del", "délais": "del", "délaissé": "délaiss", "délasser": "délass", "délations": "délat", "delavigne": "delavign", "délayé": "délai", "délégation": "déleg", "délibéra": "déliber", "délibération": "déliber", "délibérer": "déliber", "délibérons": "délibéron", "délicat": "délicat", "délicate": "délicat", "délicates": "délicat", "délicatesse": "délicatess", "délicats": "délicat", "délices": "délic", "délicieuse": "délici", "délicieusement": "délici", "délicieuses": "délici", "délicieux": "délici", "délier": "déli", "delille": "delill", "délire": "délir", "délit": "del", "délivra": "délivr", "délivrance": "délivr", "délivre": "délivr", "délivré": "délivr", "délivrée": "délivr", "délivrer": "délivr", "délivrera": "délivr", "dell": "del", "della": "del", "demain": "demain", "demanda": "demand", "demandai": "demand", "demandaient": "demand", "demandais": "demand", "demandait": "demand", "demandant": "demand", "demande": "demand", "demandé": "demand", "demandée": "demand", "demandées": "demand", "demander": "demand", "demandera": "demand", "demanderai": "demand", "demanderaient": "demand", "demanderait": "demand", "demandèrent": "demand", "demanderont": "demand", "demandes": "demand", "demandés": "demand", "demandez": "demand", "demandiez": "demand", "demandons": "demandon", "démantelé": "démantel", "démarche": "démarch", "démarches": "démarch", "démarquer": "démarqu", "démasquer": "démasqu", "démêloir": "démêloir", "déménager": "déménag", "démenaient": "démen", "démenait": "démen", "démenti": "dément", "démentir": "dément", "démentis": "dément", "démesurée": "démesur", "demesurement": "demesur", "démesurément": "démesur", "demeura": "demeur", "demeurait": "demeur", "demeure": "demeur", "demeuré": "demeur", "demeurer": "demeur", "demeurerait": "demeur", "demeurèrent": "demeur", "demeurés": "demeur", "demi": "dem", "demie": "dem", "démission": "démiss", "démit": "dem", "demoiselle": "demoisel", "demoiselles": "demoisel", "démolir": "démol", "démolissent": "démol", "démolition": "démolit", "démon": "démon", "démonstration": "démonstr", "démonté": "démont", "démontée": "démont", "démonter": "démont", "démontés": "démont", "démontra": "démontr", "démontrait": "démontr", "démontré": "démontr", "dénaturée": "dénatur", "deniers": "deni", "dénigrement": "dénigr", "dénomination": "dénomin", "dénonçait": "dénonc", "dénonce": "dénonc", "dénoncé": "dénonc", "dénoncer": "dénonc", "dénoncera": "dénonc", "dénoncez": "dénonc", "dénonciateur": "dénonci", "dénonciation": "dénonci", "dénonciations": "dénonci", "dénotaient": "dénot", "dénotait": "dénot", "dénoter": "dénot", "dénouement": "dénou", "dénoûment": "dénoû", "densité": "densit", "dent": "dent", "dentelle": "dentel", "dentelles": "dentel", "dents": "dent", "dénué": "dénu", "dénuées": "dénu", "denver": "denv", "deo": "deo", "déparait": "dépar", "déparant": "dépar", "déparée": "dépar", "dépareillé": "dépareil", "départ": "départ", "département": "départ", "dépassaient": "dépass", "dépassait": "dépass", "dépasse": "dep", "dépassé": "dépass", "dépassées": "dépass", "dépasser": "dépass", "dépassés": "dépass", "dépêcha": "dépêch", "dépêche": "dépêch", "dépêché": "dépêch", "dépêches": "dépêch", "dépêchez": "dépêch", "dépêchons": "dépêchon", "dépeint": "dépeint", "dépeintes": "dépeint", "dépenaillé": "dépenaill", "dépend": "dépend", "dépendait": "dépend", "dépendance": "dépend", "dépendant": "dépend", "dépendre": "dépendr", "dépendu": "dépendu", "dépens": "dépen", "dépensait": "dépens", "dépense": "dépens", "dépensé": "dépens", "dépensées": "dépens", "dépenser": "dépens", "dépenses": "dépens", "dépérir": "déper", "dépeuplèrent": "dépeupl", "dépisté": "dépist", "dépistées": "dépist", "dépister": "dépist", "dépit": "dep", "dépitée": "dépit", "déplaçait": "déplac", "déplace": "déplac", "déplacé": "déplac", "déplacées": "déplac", "déplacement": "déplac", "déplairais": "déplair", "déplaire": "déplair", "déplairez": "déplair", "déplaisait": "déplais", "déplaise": "déplais", "déplaisent": "déplaisent", "déplaisir": "déplais", "déplaît": "déplaît", "dépliage": "dépliag", "déploie": "déploi", "déploierais": "déploi", "déplorable": "déplor", "déplorables": "déplor", "déplorait": "déplor", "déploré": "déplor", "déploya": "déploi", "déployaient": "déploi", "déployé": "déploi", "déployée": "déploi", "déployer": "déploi", "déplu": "déplu", "déplut": "déplut", "déporta": "déport", "déportés": "déport", "déposa": "dépos", "déposait": "dépos", "déposant": "dépos", "déposât": "dépos", "dépose": "dépos", "déposé": "dépos", "déposée": "dépos", "déposées": "dépos", "déposer": "dépos", "déposèrent": "dépos", "déposés": "dépos", "dépositaire": "dépositair", "déposition": "déposit", "dépositions": "déposit", "dépossédé": "dépossed", "dépôt": "dépôt", "dépôts": "dépôt", "dépouillait": "dépouill", "dépouille": "dépouill", "dépouillé": "dépouill", "dépouiller": "dépouill", "dépourvu": "dépourvu", "dépression": "dépress", "dépressions": "dépress", "déprimée": "déprim", "depuis": "depuis", "députation": "déput", "député": "déput", "députés": "déput", "déraillement": "déraill", "déraillements": "déraill", "déraison": "déraison", "déraisonnable": "déraison", "déraisonnables": "déraison", "déraisonner": "déraison", "dérangé": "dérang", "dérangeait": "dérang", "dérangements": "dérang", "déranger": "dérang", "dérangés": "dérang", "derechef": "derechef", "déridait": "dérid", "dérision": "déris", "dernier": "derni", "dernière": "derni", "dernieres": "dernier", "dernières": "derni", "derniers": "derni", "dérobaient": "dérob", "dérobé": "dérob", "dérobée": "dérob", "dérober": "dérob", "déroberait": "dérob", "déroger": "dérog", "déroula": "déroul", "déroulant": "déroul", "déroulèrent": "déroul", "déroute": "dérout", "derrière": "derri", "derville": "dervill", "des": "de", "dès": "des", "désabusé": "désabus", "désagréable": "désagré", "désagréablement": "désagré", "désagréables": "désagré", "désagrément": "désagr", "désagréments": "désagr", "desaix": "desaix", "désaltéré": "désalter", "désappointé": "désappoint", "désappointement": "désappoint", "désapprouver": "désapprouv", "désarmé": "désarm", "désarmer": "désarm", "désastre": "désastr", "désastres": "désastr", "désavantage": "désavantag", "désavantages": "désavantag", "désavoue": "désavou", "desceller": "descel", "descend": "descend", "descendaient": "descend", "descendait": "descend", "descendant": "descend", "descendante": "descend", "descendants": "descend", "descende": "descend", "descendent": "descendent", "descendirent": "descend", "descendit": "descend", "descendrait": "descendr", "descendre": "descendr", "descendrez": "descendr", "descends": "descend", "descendu": "descendu", "descendue": "descendu", "descendus": "descendus", "descente": "descent", "descoulis": "descoul", "description": "descript", "descriptions": "descript", "désennuyait": "désennui", "désennuyer": "désennui", "désert": "désert", "désertais": "désert", "déserte": "désert", "déserté": "désert", "déserter": "désert", "désertes": "désert", "déserteur": "déserteur", "désertez": "désert", "désertion": "désert", "désespérais": "désesper", "désespérait": "désesper", "désespérant": "désesper", "désespérante": "désesper", "désespérants": "désesper", "désespère": "désesper", "désespéré": "désesper", "désespérée": "désesper", "désespérer": "désesper", "désespoir": "désespoir", "déshabillaient": "déshabill", "déshabiller": "déshabill", "déshonneur": "déshonneur", "déshonorait": "déshonor", "déshonorant": "déshonor", "déshonorante": "déshonor", "déshonore": "déshonor", "déshonoré": "déshonor", "déshonorée": "déshonor", "déshonorent": "déshonorent", "déshonorer": "déshonor", "déshonorez": "déshonor", "désignant": "désign", "désigne": "désign", "désigné": "désign", "désigner": "désign", "désignèrent": "désign", "désignés": "désign", "désignez": "désign", "désintéresse": "désintéress", "désintéressé": "désintéress", "désintéressées": "désintéress", "désintéressement": "désintéress", "désintérêt": "désintérêt", "désir": "des", "désira": "des", "désirable": "désir", "désirait": "des", "désire": "désir", "désiré": "désir", "désirée": "désir", "désirées": "désir", "désirent": "des", "désirer": "désir", "désirerais": "désir", "désirez": "des", "désirs": "désir", "désobéi": "désobéi", "désobéissante": "désobéiss", "désoblige": "désoblig", "désobligeante": "désoblig", "désobligeants": "désoblig", "désoeuvrement": "désoeuvr", "désolait": "désol", "désolant": "désol", "désolation": "désol", "désole": "désol", "désolé": "désol", "désolée": "désol", "désordonnée": "désordon", "désordonnés": "désordon", "désordre": "désordr", "désorienté": "désorient", "désormais": "désorm", "despote": "despot", "despotes": "despot", "despotique": "despot", "despotiquement": "despot", "despotiques": "despot", "despotisme": "despot", "despotismes": "despot", "desquelles": "desquel", "desquels": "desquel", "desséchant": "dessech", "desséché": "dessech", "desséchée": "dessech", "dessein": "dessein", "desseins": "dessein", "dessert": "dessert", "desservait": "desserv", "desservant": "desserv", "desservi": "desserv", "dessiller": "dessill", "dessillèrent": "dessill", "dessin": "dessin", "dessina": "dessin", "dessinaient": "dessin", "dessinait": "dessin", "dessine": "dessin", "dessiné": "dessin", "dessinent": "dessinent", "dessiner": "dessin", "dessins": "dessin", "dessous": "dessous", "dessus": "dessus", "destin": "destin", "destinait": "destin", "destination": "destin", "destine": "destin", "destiné": "destin", "destinée": "destin", "destinées": "destin", "destinés": "destin", "destins": "destin", "destitua": "destitu", "destitué": "destitu", "destituer": "destitu", "destituera": "destitu", "destituerai": "destitu", "destitution": "destitu", "désunir": "désun", "détacha": "détach", "détachaient": "détach", "détachait": "détach", "détachant": "détach", "détache": "détach", "détaché": "détach", "détachée": "détach", "détachées": "détach", "détachement": "détach", "détacher": "détach", "détachèrent": "détach", "détail": "détail", "détailla": "détaill", "détaillant": "détaill", "détaille": "détaill", "détaillé": "détaill", "détaillée": "détaill", "détaillées": "détaill", "détailler": "détaill", "détails": "détail", "détaler": "détal", "détective": "détect", "détectives": "détect", "détendu": "détendu", "détendue": "détendu", "détendus": "détendus", "détente": "détent", "détention": "détent", "détenus": "détenus", "détermina": "détermin", "déterminaient": "détermin", "déterminait": "détermin", "déterminât": "détermin", "détermination": "détermin", "déterminations": "détermin", "déterminé": "détermin", "déterminées": "détermin", "déterminer": "détermin", "déterminera": "détermin", "déterrer": "déterr", "détestable": "détest", "détestables": "détest", "détestaient": "détest", "détestait": "détest", "déteste": "détest", "détesté": "détest", "détestent": "détestent", "détester": "détest", "détesterez": "détest", "détonation": "déton", "détonations": "déton", "détour": "détour", "détourna": "détourn", "détournaient": "détourn", "détourné": "détourn", "détours": "détour", "détraquer": "détraqu", "détresse": "détress", "détriment": "detr", "détroit": "détroit", "détrompé": "détromp", "détruire": "détruir", "détruisaient": "détruis", "détruisit": "détruis", "détruit": "détruit", "détruites": "détruit", "détruits": "détruit", "dette": "det", "dettes": "det", "deuil": "deuil", "deuils": "deuil", "deum": "deum", "deux": "deux", "deuxième": "deuxiem", "devaient": "dev", "devais": "dev", "devait": "dev", "devançant": "devanc", "devancer": "devanc", "devant": "dev", "devants": "dev", "développa": "développ", "développaient": "développ", "développait": "développ", "développée": "développ", "développement": "développ", "devenaient": "deven", "devenais": "deven", "devenait": "deven", "devenant": "deven", "devenez": "deven", "devenir": "deven", "devenu": "devenu", "devenue": "devenu", "devenus": "devenus", "déverse": "dévers", "déverser": "dévers", "devez": "dev", "deviendra": "deviendr", "deviendrai": "deviendr", "deviendraient": "deviendr", "deviendrais": "deviendr", "deviendrait": "deviendr", "deviendrez": "deviendr", "deviendriez": "deviendr", "deviennent": "deviennent", "deviens": "devien", "devient": "devient", "deviez": "dev", "devina": "devin", "devinait": "devin", "devinant": "devin", "devine": "devin", "deviné": "devin", "devinée": "devin", "devinées": "devin", "deviner": "devin", "devinera": "devin", "devinerait": "devin", "devineront": "devin", "devines": "devin", "devinez": "devin", "devînmes": "devînm", "devinrent": "devinrent", "devins": "devin", "devint": "devint", "devis": "dev", "dévisageait": "dévisag", "dévisager": "dévisag", "dévisser": "déviss", "devo": "devo", "dévoilé": "dévoil", "devoir": "devoir", "devoirs": "devoir", "devons": "devon", "dévora": "dévor", "dévoraient": "dévor", "dévorait": "dévor", "dévorante": "dévor", "dévorât": "dévor", "dévore": "dévor", "dévoré": "dévor", "dévorée": "dévor", "dévorer": "dévor", "dévoreront": "dévor", "dévorés": "dévor", "devoret": "devoret", "dévorez": "dévor", "dévot": "dévot", "dévote": "dévot", "dévotement": "dévot", "dévotes": "dévot", "dévotion": "dévot", "dévots": "dévot", "dévoué": "dévou", "dévouée": "dévou", "dévouement": "dévou", "dévouements": "dévou", "dévouer": "dévou", "dévoués": "dévou", "devra": "devr", "devrai": "devr", "devraient": "devr", "devrais": "devr", "devrait": "devr", "devriez": "devr", "devrons": "devron", "devront": "devront", "di": "di", "diable": "diabl", "diables": "diabl", "diacre": "diacr", "dialogue": "dialogu", "dialogues": "dialogu", "diamant": "diam", "diamanté": "diamant", "diamants": "diam", "diane": "dian", "diar": "diar", "dicta": "dict", "dictait": "dict", "dictateur": "dictateur", "dicté": "dict", "dictée": "dict", "dictées": "dict", "dicter": "dict", "dictés": "dict", "diction": "diction", "dictionnaire": "dictionnair", "dicton": "dicton", "diderot": "diderot", "didon": "didon", "diego": "diego", "diègue": "diègu", "dieu": "dieu", "dieux": "dieux", "différence": "différent", "différences": "différent", "différend": "différend", "différends": "différend", "différent": "différent", "diffèrent": "diff", "différente": "différent", "différentes": "différent", "différents": "différent", "différer": "differ", "difficile": "difficil", "difficilement": "difficil", "difficiles": "difficil", "difficulté": "difficult", "difficultés": "difficult", "difficultueux": "difficultu", "difforme": "difform", "digère": "diger", "digne": "dign", "dignement": "dign", "dignes": "dign", "dignité": "dignit", "dignités": "dignit", "digue": "digu", "dijon": "dijon", "dilettanti": "dilettant", "diligence": "diligent", "diligente": "diligent", "dimanche": "dimanch", "dimanches": "dimanch", "dîme": "dîm", "dimension": "dimens", "dimensions": "dimens", "diminua": "diminu", "diminuaient": "diminu", "diminuait": "diminu", "diminuant": "diminu", "diminue": "diminu", "diminué": "diminu", "diminuée": "diminu", "diminuer": "diminu", "diminution": "diminu", "dîna": "dîn", "dînait": "dîn", "dînant": "dîn", "dindon": "dindon", "dîné": "dîn", "dînée": "dîn", "dînées": "dîn", "dînent": "dînent", "dîner": "dîn", "dînerai": "dîn", "dînerait": "dîn", "dînèrent": "dîn", "dîners": "dîner", "diocèse": "dioces", "diplomate": "diplomat", "diplomates": "diplomat", "diplomatie": "diplomat", "diplomatique": "diplomat", "diplomatiquement": "diplomat", "diplomatiques": "diplomat", "dira": "dir", "dirai": "dir", "diraient": "dir", "dirais": "dir", "dirait": "dir", "diras": "dir", "dire": "dir", "direct": "direct", "directe": "direct", "directement": "direct", "directes": "direct", "directeur": "directeur", "direction": "direct", "directions": "direct", "directoire": "directoir", "directs": "direct", "dirent": "dirent", "direz": "dir", "dirige": "dirig", "dirigé": "dirig", "dirigea": "dirig", "dirigeait": "dirig", "dirigeant": "dirig", "dirigeante": "dirig", "dirigée": "dirig", "dirigées": "dirig", "dirigent": "dirigent", "diriger": "dirig", "dirigerait": "dirig", "dirigèrent": "dirig", "dirigés": "dirig", "dirigez": "dirig", "dirions": "dirion", "dirons": "diron", "diront": "diront", "dis": "dis", "disaient": "dis", "disais": "dis", "disait": "dis", "disant": "dis", "disc": "disc", "discerna": "discern", "disciple": "discipl", "disciples": "discipl", "discontinuaient": "discontinu", "discontinuer": "discontinu", "disconvenir": "disconven", "discordant": "discord", "discours": "discour", "discret": "discret", "discrète": "discret", "discrétion": "discret", "discrets": "discret", "discussion": "discuss", "discussions": "discuss", "discuta": "discut", "discutaient": "discut", "discutait": "discut", "discutant": "discut", "discute": "discut", "discutée": "discut", "discuter": "discut", "discutèrent": "discut", "discutés": "discut", "dise": "dis", "disent": "disent", "disgrâce": "disgrâc", "disgracie": "disgrac", "disgracié": "disgraci", "disgracierez": "disgraci", "disinvoltura": "disinvoltur", "disloqué": "disloqu", "disparaissaient": "disparaiss", "disparaissait": "disparaiss", "disparaissent": "disparaissent", "disparaît": "disparaît", "disparaître": "disparaîtr", "disparition": "disparit", "disparu": "disparu", "disparurent": "disparurent", "disparussent": "disparussent", "disparut": "disparut", "dispendieuses": "dispendi", "dispensé": "dispens", "dispenser": "dispens", "dispersaient": "dispers", "dispersés": "dispers", "dispos": "dispos", "disposa": "dispos", "disposaient": "dispos", "disposait": "dispos", "dispose": "dispos", "disposé": "dispos", "disposée": "dispos", "disposées": "dispos", "disposer": "dispos", "disposés": "dispos", "disposez": "dispos", "disposition": "disposit", "dispositions": "disposit", "disposons": "disposon", "disproportion": "disproport", "disputa": "disput", "disputaient": "disput", "disputait": "disput", "dispute": "disput", "disputer": "disput", "disputèrent": "disput", "disputons": "disputon", "disque": "disqu", "dissembles": "dissembl", "dissent": "dissent", "disséquée": "dissequ", "dissertation": "dissert", "dissertations": "dissert", "disserte": "dissert", "dissimulaient": "dissimul", "dissimulait": "dissimul", "dissimulant": "dissimul", "dissimule": "dissimul", "dissimulée": "dissimul", "dissimuler": "dissimul", "dissimulerai": "dissimul", "dissimulerons": "dissimul", "dissimulons": "dissimulon", "dissipait": "dissip", "dissipation": "dissip", "dissipations": "dissip", "dissipé": "dissip", "dissipée": "dissip", "dissipées": "dissip", "dissiper": "dissip", "dissipèrent": "dissip", "dissolution": "dissolu", "distance": "distanc", "distancé": "distanc", "distances": "distanc", "distant": "dist", "distillée": "distill", "distinctement": "distinct", "distinctes": "distinct", "distinction": "distinct", "distinctions": "distinct", "distincts": "distinct", "distinguaient": "distingu", "distinguait": "distingu", "distinguant": "distingu", "distingue": "distingu", "distingué": "distingu", "distinguée": "distingu", "distinguées": "distingu", "distinguer": "distingu", "distingués": "distingu", "distinguons": "distinguon", "distraction": "distract", "distractions": "distract", "distrairait": "distrair", "distraire": "distrair", "distrait": "distr", "distraite": "distrait", "distraites": "distrait", "distrayaient": "distrai", "distrayait": "distrai", "distribua": "distribu", "distribuait": "distribu", "distribue": "distribu", "distribué": "distribu", "distribuent": "distribuent", "distribuer": "distribu", "distribuez": "distribu", "distribution": "distribu", "distributions": "distribu", "distributive": "distribut", "dit": "dit", "dît": "dît", "dite": "dit", "dites": "dit", "dithyrambe": "dithyramb", "dits": "dit", "diurne": "diurn", "divan": "divan", "divers": "diver", "diverses": "divers", "diversion": "divers", "divertir": "divert", "divertissant": "divert", "divertissements": "divert", "divin": "divin", "divine": "divin", "divinité": "divin", "divins": "divin", "divisa": "divis", "divisait": "divis", "divise": "divis", "divisé": "divis", "divisée": "divis", "divisées": "divis", "divisèrent": "divis", "divisés": "divis", "division": "divis", "divisions": "divis", "divulguer": "divulgu", "dix": "dix", "dixerunt": "dixerunt", "dixième": "dixiem", "dizaine": "dizain", "do": "do", "docilité": "docil", "docks": "dock", "docteur": "docteur", "doctrine": "doctrin", "doctrines": "doctrin", "document": "docu", "documents": "docu", "dodge": "dodg", "doge": "dog", "dogmatiquement": "dogmat", "dogme": "dogm", "doigt": "doigt", "doigts": "doigt", "dois": "dois", "doit": "doit", "doivent": "doivent", "dolci": "dolc", "dôle": "dôl", "doléances": "doléanc", "dollar": "dollar", "dollars": "dollar", "dolman": "dolman", "domaine": "domain", "domaniale": "domanial", "dôme": "dôm", "domesticité": "domest", "domestique": "domest", "domestiqué": "domestiqu", "domestiques": "domest", "domicile": "domicil", "domina": "domin", "dominaient": "domin", "dominait": "domin", "dominant": "domin", "dominante": "domin", "dominateur": "domin", "domination": "domin", "domine": "domin", "dominé": "domin", "dominée": "domin", "domingue": "domingu", "domini": "domin", "dommage": "dommag", "dommages": "dommag", "dompté": "dompt", "dompter": "dompt", "don": "don", "donation": "donat", "donc": "donc", "dongo": "dongo", "donjon": "donjon", "donna": "don", "donnai": "don", "donnaient": "don", "donnait": "don", "donnant": "don", "donnassent": "don", "donnât": "don", "donnâtes": "don", "donne": "don", "donné": "don", "donnée": "don", "données": "don", "donnent": "donnent", "donner": "don", "donnera": "don", "donnerai": "don", "donneraient": "don", "donnerais": "don", "donnerait": "don", "donneras": "don", "donnèrent": "don", "donnerez": "don", "donneriez": "don", "donneront": "don", "donnes": "don", "donnés": "don", "donneur": "donneur", "donnez": "don", "donnions": "donnion", "donnons": "donnon", "dont": "dont", "dorat": "dorat", "doré": "dor", "dorée": "dor", "dorées": "dor", "dorénavant": "dorénav", "dorés": "dor", "dormaient": "dorm", "dormait": "dorm", "dormantes": "dorm", "dormeurs": "dormeur", "dormi": "dorm", "dormir": "dorm", "dormirai": "dorm", "dormit": "dorm", "dormît": "dorm", "dort": "dort", "dortoir": "dortoir", "dortoirs": "dortoir", "dorures": "dorur", "dos": "dos", "dose": "dos", "dossier": "dossi", "dossiers": "dossi", "dot": "dot", "douaire": "douair", "douairière": "douairi", "douane": "douan", "douanier": "douani", "douaniers": "douani", "doubla": "doubl", "doublant": "doubl", "double": "doubl", "doublé": "doubl", "doublée": "doubl", "doublement": "doubl", "doubler": "doubl", "doubles": "doubl", "doublure": "doublur", "doubs": "doub", "doubt": "doubt", "douce": "douc", "doucement": "douc", "douces": "douc", "douceur": "douceur", "douceurs": "douceur", "doué": "dou", "douée": "dou", "doués": "dou", "douleur": "douleur", "douleurs": "douleur", "douloureuse": "doulour", "douloureuses": "doulour", "douloureux": "doulour", "douta": "dout", "doutait": "dout", "doutât": "dout", "doute": "dout", "douté": "dout", "doutée": "dout", "douter": "dout", "douterez": "dout", "doutes": "dout", "douteuse": "douteux", "douteuses": "douteux", "douteux": "douteux", "doutez": "dout", "douvres": "douvr", "doux": "doux", "douzaine": "douzain", "douzaines": "douzain", "douze": "douz", "doyen": "doyen", "dragon": "dragon", "dragons": "dragon", "dramatique": "dramat", "dramatiques": "dramat", "drame": "dram", "drap": "drap", "drapeau": "drapeau", "drapeaux": "drapeau", "drapée": "drap", "drapier": "drapi", "draps": "drap", "drawing": "drawing", "dressaient": "dress", "dressait": "dress", "dresse": "dress", "dressé": "dress", "dressée": "dress", "dresser": "dress", "dressés": "dress", "drisses": "driss", "drogue": "drogu", "drogues": "drogu", "droit": "droit", "droite": "droit", "droites": "droit", "droits": "droit", "droiture": "droitur", "drôle": "drôl", "drôles": "drôl", "drome": "drom", "dromes": "drom", "du": "du", "dû": "dû", "dublin": "dublin", "dubois": "dubois", "duc": "duc", "ducats": "ducat", "duché": "duch", "duchesse": "duchess", "duchesses": "duchess", "ducrest": "ducrest", "ducros": "ducros", "ducs": "duc", "dudit": "dud", "due": "du", "duel": "duel", "duellistes": "duellist", "duettino": "duettino", "dugnani": "dugnan", "dûment": "dûment", "dunette": "dunet", "dupe": "dup", "duperie": "duper", "dupes": "dup", "duplicité": "dupliqu", "duquel": "duquel", "dur": "dur", "dura": "dur", "durable": "durabl", "durables": "durabl", "duraient": "dur", "durait": "dur", "durand": "durand", "durant": "dur", "durât": "dur", "durati": "durat", "durcie": "durc", "dure": "dur", "duré": "dur", "durée": "dur", "durement": "dur", "durent": "durent", "durer": "dur", "durera": "dur", "dureraient": "dur", "durerait": "dur", "dureront": "dur", "dures": "dur", "dureté": "duret", "durini": "durin", "durs": "dur", "dus": "dus", "dussé": "duss", "dut": "dut", "dût": "dût", "duvoisin": "duvoisin", "e": "e", "è": "è", "earnshaw": "earnshaw", "eastern": "eastern", "eau": "eau", "eaux": "eau", "ébahi": "ébah", "ébahie": "ébah", "ébahis": "ébah", "ébahissement": "ébah", "ébattre": "ébattr", "ébaucha": "ébauch", "ébaudissait": "ébaud", "ébène": "ében", "ébloui": "éblou", "éblouissant": "éblou", "éblouissante": "éblou", "éblouissement": "éblou", "éblouit": "éblou", "ébouriffé": "ébouriff", "ébouriffée": "ébouriff", "ébranla": "ébranl", "ébranlaient": "ébranl", "ébranlant": "ébranl", "ébranlé": "ébranl", "ébranlée": "ébranl", "ébranler": "ébranl", "ébréché": "ébrech", "ébruité": "ébruit", "écailles": "écaill", "écarlate": "écarlat", "écarquillés": "écarquill", "écart": "écart", "écartaient": "écart", "écartait": "écart", "écartant": "écart", "écarte": "écart", "écarté": "écart", "écartée": "écart", "écartées": "écart", "écartelé": "écartel", "écarter": "écart", "eccellenza": "eccellenz", "ecclesiam": "ecclesiam", "ecclésiastique": "ecclésiast", "ecclésiastiques": "ecclésiast", "écervelés": "écervel", "échafaud": "échafaud", "échange": "échang", "échangé": "échang", "échangeaient": "échang", "échangeant": "échang", "échangée": "échang", "échangées": "échang", "échanger": "échang", "échangés": "échang", "échantillons": "échantillon", "échappa": "échapp", "échappaient": "échapp", "échappait": "échapp", "échappe": "échapp", "échappé": "échapp", "échappée": "échapp", "échappées": "échapp", "échappement": "échapp", "échapper": "échapp", "échapperait": "échapp", "échappés": "échapp", "échappons": "échappon", "écharpe": "écharp", "échauffant": "échauff", "échauffer": "échauff", "échéant": "éché", "échec": "échec", "échecs": "échec", "échelle": "échel", "échelles": "échel", "échelon": "échelon", "échelons": "échelon", "échevelé": "échevel", "echiquier": "echiqui", "échiquiers": "échiqui", "échoiront": "échoiront", "échoppe": "échopp", "échouait": "échou", "échoue": "échou", "échoué": "échou", "échouer": "échou", "échoueraient": "échou", "échus": "échus", "échut": "échut", "éclair": "éclair", "éclairaient": "éclair", "éclairait": "éclair", "éclairant": "éclair", "éclaircies": "éclairc", "éclaircir": "éclairc", "éclaircirent": "éclairc", "éclaircissant": "éclairc", "éclaircissement": "éclairc", "éclaircissent": "éclairc", "éclaircit": "éclairc", "éclairé": "éclair", "éclairée": "éclair", "éclairer": "éclair", "éclairèrent": "éclair", "éclairés": "éclair", "éclairs": "éclair", "éclat": "éclat", "éclata": "éclat", "éclataient": "éclat", "éclatait": "éclat", "éclatant": "éclat", "éclatante": "éclat", "éclatantes": "éclat", "éclatants": "éclat", "éclate": "éclat", "éclaté": "éclat", "éclatent": "éclatent", "éclater": "éclat", "éclatèrent": "éclat", "éclats": "éclat", "éclipsait": "éclips", "éclipse": "éclips", "éclipses": "éclips", "éclipsés": "éclips", "école": "écol", "écolier": "écoli", "éconduire": "éconduir", "éconduit": "éconduit", "économe": "économ", "économes": "économ", "économie": "économ", "économies": "économ", "économise": "économis", "économisées": "économis", "économiser": "économis", "économisés": "économis", "écorcha": "écorch", "écorchaient": "écorch", "écorchait": "écorch", "écorché": "écorch", "écorchée": "écorch", "écorcher": "écorch", "écorchures": "écorchur", "écorné": "écorn", "écossaise": "écossais", "écoula": "écoul", "écoulaient": "écoul", "écoulant": "écoul", "écoulé": "écoul", "écoulée": "écoul", "écoulement": "écoul", "écoulent": "écoulent", "écouler": "écoul", "écoulèrent": "écoul", "écoulés": "écoul", "écouta": "écout", "écoutaient": "écout", "écoutais": "écout", "écoutait": "écout", "écoutant": "écout", "écoute": "écout", "écouté": "écout", "écoutée": "écout", "écoutent": "écoutent", "écouter": "écout", "écouterai": "écout", "écouteront": "écout", "écoutes": "écout", "écoutés": "écout", "ecoutez": "ecout", "écoutez": "écout", "écoutiez": "écout", "écrasaient": "écras", "écrasé": "écras", "écrasée": "écras", "écrasées": "écras", "écraser": "écras", "écria": "écri", "écriaient": "écri", "écriait": "écri", "écriant": "écri", "écrie": "écri", "écrié": "écri", "écriée": "écri", "écrient": "écrient", "écrier": "écri", "écrièrent": "écri", "écrin": "écrin", "écrira": "écrir", "écrirai": "écrir", "écrirais": "écrir", "écrirait": "écrir", "écrire": "écrir", "écrirez": "écrir", "écris": "écris", "écrit": "écrit", "écrite": "écrit", "écriteau": "écriteau", "écrites": "écrit", "écritoire": "écritoir", "écrits": "écrit", "écriture": "écritur", "écritures": "écritur", "écrivailleur": "écrivailleur", "écrivailleurs": "écrivailleur", "écrivain": "écrivain", "écrivains": "écrivain", "écrivais": "écriv", "écrivait": "écriv", "écrivant": "écriv", "écrivante": "écriv", "écrive": "écriv", "écrivez": "écriv", "écrivirent": "écriv", "écrivit": "écriv", "écrivît": "écriv", "écrivîtes": "écriv", "écrou": "écrou", "écroué": "écrou", "écroula": "écroul", "écroulaient": "écroul", "écu": "écu", "écueil": "écueil", "écuelle": "écuel", "écumait": "écum", "ecumeur": "ecumeur", "écumeuses": "écum", "écureuil": "écureuil", "écurie": "écur", "écuries": "écur", "écus": "écus", "écuyer": "écui", "édification": "édif", "édifice": "édific", "edimbourg": "edimbourg", "édimbourg": "édimbourg", "edinburgh": "edinburgh", "éditer": "édit", "éditeur": "éditeur", "édition": "édit", "éditions": "édit", "edrisi": "edris", "éducation": "éduc", "éduquer": "éduqu", "effaça": "effac", "efface": "effac", "effacé": "effac", "effacée": "effac", "effacées": "effac", "effacer": "effac", "effaré": "effar", "effarouchant": "effarouch", "effarouche": "effarouch", "effarouché": "effarouch", "effaroucher": "effarouch", "effarouches": "effarouch", "effarouchés": "effarouch", "effectivement": "effect", "effectives": "effect", "efféminées": "effémin", "effervescence": "effervescent", "effet": "effet", "effets": "effet", "effeuilla": "effeuill", "effigie": "effig", "effleurer": "effleur", "efforçait": "efforc", "effort": "effort", "efforts": "effort", "effraie": "effrai", "effraya": "effrai", "effrayaient": "effrai", "effrayait": "effrai", "effrayant": "effrai", "effrayante": "effrai", "effraye": "effray", "effrayé": "effrai", "effrayée": "effrai", "effrayées": "effrai", "effrayent": "effrayent", "effrayer": "effrai", "effrayèrent": "effrai", "effrayés": "effrai", "effréné": "effren", "effrénée": "effren", "effroi": "effroi", "effronté": "effront", "effrontément": "effront", "effronterie": "effronter", "effrontés": "effront", "effroyable": "effroi", "effroyablement": "effroi", "effusion": "effus", "égaiera": "égai", "égal": "égal", "égalait": "égal", "égale": "égal", "également": "égal", "égalent": "égalent", "égales": "égal", "égalité": "égal", "égalités": "égal", "égara": "égar", "égarait": "égar", "égard": "égard", "égards": "égard", "égare": "égar", "égaré": "égar", "égarée": "égar", "égarement": "égar", "égarements": "égar", "égarer": "égar", "égares": "égar", "égarés": "égar", "égaux": "égal", "égaya": "égai", "égayée": "égai", "égayer": "égai", "égayés": "égai", "église": "églis", "églises": "églis", "ego": "ego", "égoïsme": "égoïsm", "égoïste": "égoïst", "égoïstes": "égoïst", "égorgent": "égorgent", "égorger": "égorg", "égorgés": "égorg", "égout": "égout", "égratignure": "égratignur", "égratignures": "égratignur", "egypte": "egypt", "égypte": "égypt", "egyptiens": "egyptien", "égyptiens": "égyptien", "eh": "eh", "el": "el", "élan": "élan", "élança": "élanc", "élançait": "élanc", "élançant": "élanc", "élance": "élanc", "élancé": "élanc", "élancer": "élanc", "élancera": "élanc", "élans": "élan", "élargi": "élarg", "élastiques": "élast", "elder": "elder", "électeur": "électeur", "électeurs": "électeur", "élection": "élect", "élections": "élect", "électives": "élect", "électrique": "électr", "électriques": "électr", "électrisait": "électris", "élégamment": "éleg", "élégance": "éleg", "élégant": "éleg", "élégante": "éleg", "élégantes": "éleg", "élégants": "éleg", "élémentaire": "élémentair", "éléments": "élément", "éléphant": "éleph", "eléphanta": "eléphant", "éléphants": "éleph", "éleva": "élev", "élevaient": "élev", "élevait": "élev", "élevant": "élev", "élévation": "élev", "élévations": "élev", "élève": "élev", "élevé": "élev", "élevée": "élev", "élevées": "élev", "élèvent": "élèvent", "élever": "élev", "élèvera": "élev", "élèverai": "élev", "élèverez": "élev", "élèves": "élev", "élevés": "élev", "éleveurs": "éleveur", "élisa": "élis", "élite": "élit", "elko": "elko", "elle": "elle", "elles": "elle", "ellora": "ellor", "élocution": "élocu", "éloge": "élog", "éloges": "élog", "éloigna": "éloign", "éloignaient": "éloign", "éloignais": "éloign", "éloignait": "éloign", "éloignant": "éloign", "éloignât": "éloign", "éloigne": "éloign", "éloigné": "éloign", "éloignée": "éloign", "éloignées": "éloign", "éloignement": "éloign", "éloigner": "éloign", "éloignerai": "éloign", "éloignerait": "éloign", "éloignèrent": "éloign", "éloignés": "éloign", "éloignez": "éloign", "éloigniez": "éloign", "éloquence": "éloquent", "éloquent": "éloquent", "éloquente": "éloquent", "élu": "élu", "éluder": "élud", "elysées": "elys", "élysées": "élys", "émaillée": "émaill", "emballée": "emball", "emballer": "emball", "embarcation": "embarc", "embarcations": "embarc", "embardée": "embard", "embardées": "embard", "embarqua": "embarqu", "embarquait": "embarqu", "embarquant": "embarqu", "embarque": "embarqu", "embarqué": "embarqu", "embarquement": "embarqu", "embarquer": "embarqu", "embarqués": "embarqu", "embarras": "embarr", "embarrassa": "embarrass", "embarrassait": "embarrass", "embarrasse": "embarr", "embarrassé": "embarrass", "embarrassée": "embarrass", "embarrasser": "embarrass", "embarrassés": "embarrass", "embaumé": "embaum", "embaumée": "embaum", "embelli": "embel", "embellie": "embel", "embellir": "embel", "emblée": "emblé", "emblème": "emblem", "embonpoint": "embonpoint", "embossent": "embossent", "embouchure": "embouchur", "embouquait": "embouqu", "embourbant": "embourb", "embourser": "embours", "embranchement": "embranch", "embranchements": "embranch", "embrasé": "embras", "embrasée": "embras", "embrassa": "embrass", "embrassaient": "embrass", "embrassait": "embrass", "embrassant": "embrass", "embrasse": "embrass", "embrassé": "embrass", "embrassements": "embrass", "embrasser": "embrass", "embrasserais": "embrass", "embrassèrent": "embrass", "embrouilla": "embrouill", "embrouillant": "embrouill", "embrouille": "embrouill", "embrouiller": "embrouill", "embrumé": "embrum", "embrunir": "embrun", "embruns": "embrun", "embûche": "embûch", "embûches": "embûch", "embuscade": "embuscad", "émergeait": "émerg", "émerveillé": "émerveil", "émerveillée": "émerveil", "émettre": "émettr", "émeute": "émeut", "émeuvent": "émeuvent", "émigrants": "émigr", "émigration": "émigr", "émigrera": "émigr", "éminemment": "éminent", "émissaire": "émissair", "emmancher": "emmanch", "emmêlés": "emmêl", "emmena": "emmen", "emmenaient": "emmen", "emmenait": "emmen", "emmène": "emmen", "emmené": "emmen", "emmener": "emmen", "emmènerait": "emmen", "emmènes": "emmen", "émoi": "émoi", "émotion": "émot", "émotions": "émot", "émoussés": "émouss", "émoustiller": "émoustill", "émouvoir": "émouvoir", "empaquetée": "empaquet", "empara": "empar", "emparaient": "empar", "emparait": "empar", "emparant": "empar", "emparé": "empar", "emparer": "empar", "emparèrent": "empar", "emparés": "empar", "empaumer": "empaum", "empêcha": "empêch", "empêchaient": "empêch", "empêchait": "empêch", "empêchât": "empêch", "empêche": "empêch", "empêché": "empêch", "empêchée": "empêch", "empêchent": "empêchent", "empêcher": "empêch", "empêchera": "empêch", "empêcherai": "empêch", "empêcheraient": "empêch", "empêcherait": "empêch", "empêchèrent": "empêch", "empêcheront": "empêch", "empêches": "empêch", "empêchez": "empêch", "empereur": "empereur", "empereurs": "empereur", "empesé": "empes", "empestée": "empest", "empêtrés": "empêtr", "emphase": "emphas", "emphatique": "emphat", "emphatiques": "emphat", "empilé": "empil", "empir": "empir", "empire": "empir", "empires": "empir", "emplacement": "emplac", "emplettes": "emplet", "emplissent": "emplissent", "emploi": "emploi", "emploie": "emploi", "emploient": "emploient", "emploierai": "emploi", "emploieraient": "emploi", "emploierais": "emploi", "emploierait": "emploi", "emplois": "emplois", "employa": "emploi", "employaient": "emploi", "employait": "emploi", "employant": "emploi", "employât": "emploi", "employâtes": "emploi", "employé": "emploi", "employée": "emploi", "employées": "emploi", "employer": "emploi", "employés": "emploi", "employez": "emploi", "emplumés": "emplum", "empoché": "empoch", "empoigné": "empoign", "empoignera": "empoign", "empoisonna": "empoison", "empoisonnaient": "empoison", "empoisonnait": "empoison", "empoisonne": "empoison", "empoisonné": "empoison", "empoisonnée": "empoison", "empoisonnement": "empoison", "empoisonnent": "empoisonnent", "empoisonner": "empoison", "empoisonnerai": "empoison", "empoisonnerait": "empoison", "empoisonnés": "empoison", "empoisonneur": "empoisonneur", "empoisonneurs": "empoisonneur", "emporta": "emport", "emportaient": "emport", "emportait": "emport", "emportant": "emport", "emporte": "emport", "emporté": "emport", "emportée": "emport", "emportées": "emport", "emportement": "emport", "emportent": "emportent", "emporter": "emport", "emporterait": "emport", "emporterez": "emport", "emporteront": "emport", "emportés": "emport", "empreinte": "empreint", "empressa": "empress", "empressé": "empress", "empressée": "empress", "empressées": "empress", "empressement": "empress", "empressements": "empress", "empressèrent": "empress", "empressés": "empress", "emprisonne": "emprison", "emprisonné": "emprison", "emprisonnée": "emprison", "emprisonnement": "emprison", "emprunt": "emprunt", "emprunta": "emprunt", "emprunté": "emprunt", "emprunter": "emprunt", "empruntés": "emprunt", "ému": "ému", "émue": "ému", "émule": "émul", "émurent": "émurent", "émus": "émus", "émut": "émut", "en": "en", "encablure": "encablur", "encadre": "encadr", "encadré": "encadr", "encadrées": "encadr", "enceinte": "enceint", "encens": "encen", "enchaîné": "enchaîn", "enchaînée": "enchaîn", "enchaînés": "enchaîn", "enchantait": "enchant", "enchanté": "enchant", "enchantée": "enchant", "enchantement": "enchant", "enchanter": "enchant", "enchanteresses": "enchanteress", "enchantés": "enchant", "enchanteur": "enchanteur", "enchanteurs": "enchanteur", "enchâsser": "enchâss", "enchère": "encher", "enchères": "encher", "enclos": "enclos", "enclume": "enclum", "encolure": "encolur", "encombraient": "encombr", "encombrant": "encombr", "encombrante": "encombr", "encombre": "encombr", "encombré": "encombr", "encombrée": "encombr", "encombrées": "encombr", "encombrés": "encombr", "encore": "encor", "encouragé": "encourag", "encourageante": "encourag", "encouragement": "encourag", "encourager": "encourag", "encouragés": "encourag", "encourir": "encour", "encouru": "encouru", "encrassaient": "encrass", "encre": "encre", "encroûtées": "encroût", "encyclopédie": "encycloped", "endoctriné": "endoctrin", "endommagé": "endommag", "endormi": "endorm", "endormir": "endorm", "endormis": "endorm", "endormit": "endorm", "endors": "endor", "endossé": "endoss", "endosser": "endoss", "endroit": "endroit", "endroits": "endroit", "enduisirent": "enduis", "enduraient": "endur", "endurant": "endur", "endurci": "endurc", "endurcie": "endurc", "endurées": "endur", "énergie": "énerg", "énergique": "énerg", "énergumène": "énergumen", "énergumènes": "énergumen", "énervé": "énerv", "énervée": "énerv", "énerver": "énerv", "enfance": "enfanc", "enfant": "enfant", "enfantillage": "enfantillag", "enfantillages": "enfantillag", "enfantine": "enfantin", "enfantines": "enfantin", "enfants": "enfant", "enfer": "enfer", "enferma": "enferm", "enfermais": "enferm", "enfermait": "enferm", "enfermant": "enferm", "enferme": "enferm", "enfermé": "enferm", "enfermée": "enferm", "enfermer": "enferm", "enfermèrent": "enferm", "enfermés": "enferm", "enferrer": "enferr", "enfers": "enfer", "enfield": "enfield", "enfin": "enfin", "enflamma": "enflamm", "enflammé": "enflamm", "enflammée": "enflamm", "enflammées": "enflamm", "enflammer": "enflamm", "enflammèrent": "enflamm", "enflammés": "enflamm", "enflée": "enflé", "enflées": "enflé", "enfonça": "enfonc", "enfonçaient": "enfonc", "enfonçait": "enfonc", "enfonçât": "enfonc", "enfonce": "enfonc", "enfoncer": "enfonc", "enfonceront": "enfonc", "enfouis": "enfou", "enfourcher": "enfourch", "enfui": "enfui", "enfuie": "enfui", "enfuir": "enfuir", "enfuirai": "enfuir", "enfuis": "enfuis", "enfuit": "enfuit", "enfumé": "enfum", "enfuyaient": "enfui", "enfuyait": "enfui", "engage": "engag", "engagé": "engag", "engagea": "engag", "engageaient": "engag", "engageait": "engag", "engageant": "engag", "engagée": "engag", "engagées": "engag", "engagement": "engag", "engagements": "engag", "engagent": "engagent", "engager": "engag", "engagerai": "engag", "engeance": "engeanc", "engendre": "engendr", "engine": "engin", "england": "england", "englishman": "englishman", "engloutir": "englout", "engoués": "engou", "engouffrées": "engouffr", "engourdis": "engourd", "engourdissement": "engourd", "énigmatique": "énigmat", "énigme": "énigm", "enivraient": "enivr", "enivré": "enivr", "enivrée": "enivr", "enivrées": "enivr", "enivrer": "enivr", "enjambée": "enjamb", "enjeu": "enjeu", "enjouement": "enjou", "enleva": "enlev", "enlevaient": "enlev", "enlevait": "enlev", "enlevât": "enlev", "enlève": "enlev", "enlevé": "enlev", "enlevée": "enlev", "enlevées": "enlev", "enlèvement": "enlev", "enlèvent": "enlèvent", "enlever": "enlev", "enlèverais": "enlev", "enlevèrent": "enlev", "enlèverez": "enlev", "enlevez": "enlev", "enluminée": "enlumin", "ennemi": "ennem", "ennemie": "ennem", "ennemis": "ennem", "ennius": "ennius", "ennnui": "ennnui", "ennui": "ennui", "ennuie": "ennui", "ennuient": "ennuient", "ennuiera": "ennui", "ennuierais": "ennui", "ennuierait": "ennui", "ennuieront": "ennui", "ennuies": "ennui", "ennuis": "ennuis", "ennuya": "ennui", "ennuyaient": "ennui", "ennuyais": "ennui", "ennuyait": "ennui", "ennuyant": "ennui", "ennuyé": "ennui", "ennuyée": "ennui", "ennuyer": "ennui", "ennuyés": "ennui", "ennuyeuse": "ennui", "ennuyeusement": "ennui", "ennuyeuses": "ennui", "ennuyeux": "ennui", "ennuyez": "ennui", "énonçait": "énonc", "énoncé": "énonc", "énoncer": "énonc", "enorgueilli": "enorgueil", "énorme": "énorm", "énormes": "énorm", "énormité": "énorm", "enquérait": "enquer", "enquête": "enquêt", "enraciner": "enracin", "enragé": "enrag", "enragés": "enrag", "enrayer": "enrai", "enrayés": "enrai", "enrégimentés": "enrégiment", "enregistrement": "enregistr", "enregistrer": "enregistr", "enrhumaient": "enrhum", "enrhumé": "enrhum", "enrichi": "enrich", "enrichir": "enrich", "enrichis": "enrich", "enrichissait": "enrich", "enrichissent": "enrich", "enrichit": "enrich", "enrouaient": "enrou", "enroulait": "enroul", "enroulant": "enroul", "ensachés": "ensach", "ensanglanté": "ensanglant", "enseignait": "enseign", "enseigne": "enseign", "enseigné": "enseign", "enseignées": "enseign", "enseignements": "enseign", "enseignent": "enseignent", "enseigner": "enseign", "enseignera": "enseign", "ensemble": "ensembl", "enserrer": "enserr", "ensevelir": "ensevel", "ensorcela": "ensorcel", "ensuit": "ensuit", "ensuite": "ensuit", "ensuivit": "ensuiv", "entachés": "entach", "entama": "entam", "entame": "entam", "entamée": "entam", "entamer": "entam", "entasse": "entass", "entassée": "entass", "entassent": "entassent", "entend": "entend", "entendaient": "entend", "entendais": "entend", "entendait": "entend", "entendant": "entend", "entendent": "entendent", "entendez": "entend", "entendirent": "entend", "entendit": "entend", "entendît": "entend", "entendra": "entendr", "entendrait": "entendr", "entendre": "entendr", "entendrez": "entendr", "entendrons": "entendron", "entends": "entend", "entendu": "entendu", "entendue": "entendu", "entendus": "entendus", "enterrer": "enterr", "enterrez": "enterr", "entêté": "entêt", "enthousiasmait": "enthousiasm", "enthousiasme": "enthousiasm", "enthousiasmé": "enthousiasm", "enthousiasmées": "enthousiasm", "enthousiaste": "enthousiast", "enthousiastes": "enthousiast", "entiché": "entich", "entier": "enti", "entière": "entier", "entièrement": "entier", "entières": "entier", "entiers": "entier", "entomologique": "entomolog", "entonnant": "enton", "entonné": "enton", "entonner": "enton", "entortiller": "entortill", "entortillés": "entortill", "entour": "entour", "entoura": "entour", "entouraient": "entour", "entourait": "entour", "entoure": "entour", "entouré": "entour", "entourée": "entour", "entourées": "entour", "entourent": "entourent", "entourés": "entour", "entra": "entra", "entrai": "entrai", "entraient": "entraient", "entrailles": "entraill", "entraîna": "entraîn", "entraînait": "entraîn", "entraînant": "entraîn", "entraîne": "entraîn", "entraîné": "entraîn", "entraînée": "entraîn", "entraînement": "entraîn", "entraîner": "entraîn", "entraînera": "entraîn", "entraînés": "entraîn", "entrait": "entrait", "entrant": "entrant", "entraves": "entrav", "entre": "entre", "entré": "entré", "entrecoupée": "entrecoup", "entrecoupées": "entrecoup", "entrée": "entré", "entrées": "entré", "entrefaites": "entrefait", "entrelacement": "entrelac", "entremêlées": "entremêl", "entremêlés": "entremêl", "entremets": "entremet", "entremettre": "entremettr", "entremise": "entremis", "entrent": "entrent", "entrepôts": "entrepôt", "entreprenait": "entrepren", "entreprenant": "entrepren", "entreprend": "entreprend", "entreprendre": "entreprendr", "entrepreneur": "entrepreneur", "entrepris": "entrepr", "entreprise": "entrepris", "entreprises": "entrepris", "entreprit": "entrepr", "entrer": "entrer", "entreraient": "entrer", "entreras": "entrer", "entrèrent": "entrèrent", "entrés": "entré", "entresol": "entresol", "entretenait": "entreten", "entretenir": "entreten", "entretenu": "entretenu", "entretenus": "entretenus", "entretien": "entretien", "entretiens": "entretien", "entretient": "entretient", "entretinrent": "entretinrent", "entretint": "entretint", "entrevit": "entrev", "entrevoir": "entrevoir", "entrevois": "entrevois", "entrevoit": "entrevoit", "entrevoyaient": "entrevoi", "entrevoyait": "entrevoi", "entrevoyant": "entrevoi", "entrevu": "entrevu", "entrevue": "entrevu", "entrevues": "entrevu", "entrez": "entrez", "entrons": "entron", "entrouverte": "entrouvert", "entrouvrant": "entrouvr", "énumération": "énumer", "envahi": "envah", "envahie": "envah", "envahir": "envah", "envahissaient": "envah", "envahit": "envah", "enveloppaient": "envelopp", "enveloppait": "envelopp", "enveloppe": "envelopp", "enveloppé": "envelopp", "enveloppée": "envelopp", "envelopper": "envelopp", "enveloppes": "envelopp", "envenimée": "envenim", "enverguait": "envergu", "envergure": "envergur", "enverra": "enverr", "enverrai": "enverr", "enverrais": "enverr", "enverras": "enverr", "enverrez": "enverr", "envers": "enver", "envi": "envi", "enviable": "enviabl", "enviait": "envi", "enviant": "envi", "envie": "envi", "envié": "envi", "enviée": "envi", "envieux": "envieux", "environ": "environ", "environnaient": "environ", "environnait": "environ", "environnantes": "environ", "environne": "environ", "environné": "environ", "environnée": "environ", "environnent": "environnent", "environner": "environ", "environnés": "environ", "environs": "environ", "envisageons": "envisageon", "envisager": "envisag", "envisagez": "envisag", "envoi": "envoi", "envoie": "envoi", "envola": "envol", "envolant": "envol", "envole": "envol", "envolées": "envol", "envoler": "envol", "envolés": "envol", "envoya": "envoi", "envoyaient": "envoi", "envoyait": "envoi", "envoyant": "envoi", "envoyât": "envoi", "envoyâtes": "envoi", "envoyé": "envoi", "envoyée": "envoi", "envoyées": "envoi", "envoyer": "envoi", "envoyés": "envoi", "envoyez": "envoi", "éolienne": "éolien", "épagneul": "épagneul", "épais": "épais", "épaisse": "épaiss", "épaisseur": "épaisseur", "épanchement": "épanch", "épanouir": "épanou", "épanouissaient": "épanou", "épanouissait": "épanou", "épanouissement": "épanou", "épanouit": "épanou", "épargna": "épargn", "épargnait": "épargn", "épargne": "épargn", "épargné": "épargn", "épargnée": "épargn", "épargner": "épargn", "épargnera": "épargn", "épargnerait": "épargn", "épargnez": "épargn", "épargniez": "épargn", "éparses": "épars", "éparvérés": "éparver", "épaule": "épaul", "épaules": "épaul", "épaulés": "épaul", "épaulettes": "épaulet", "épée": "épé", "épées": "épé", "éperdu": "éperdu", "éperdue": "éperdu", "éperdument": "éperdu", "éperon": "éperon", "éperons": "éperon", "épervier": "épervi", "éperviers": "épervi", "éphémère": "éphémer", "épia": "épi", "épiait": "épi", "épicée": "épic", "épiciers": "épici", "épiderme": "épiderm", "épie": "épi", "épient": "épient", "épier": "épi", "épigrammatique": "épigrammat", "épigramme": "épigramm", "épigrammes": "épigramm", "épine": "épin", "épines": "épin", "épineuses": "épin", "épingle": "épingl", "épingles": "épingl", "épique": "épiqu", "épis": "épis", "épiscopal": "épiscopal", "épiscopat": "épiscopat", "épisode": "épisod", "épitaphe": "épitaph", "épithète": "épithet", "épître": "épîtr", "époque": "époqu", "époques": "époqu", "épousa": "épous", "épousait": "épous", "épousant": "épous", "épouse": "épous", "épousé": "épous", "épousée": "épous", "épousées": "épous", "épouser": "épous", "épousera": "épous", "épouserai": "épous", "épouserez": "épous", "épouseur": "épouseur", "épousez": "épous", "épousseter": "épousset", "épouvantable": "épouvant", "épouvantablement": "épouvant", "épouvantables": "épouvant", "épouvantaient": "épouvant", "épouvante": "épouv", "épouvantée": "épouvant", "épouvantements": "épouvant", "époux": "époux", "épreuve": "épreuv", "épreuves": "épreuv", "épris": "épris", "éprise": "épris", "éprouva": "éprouv", "éprouvai": "éprouv", "éprouvait": "éprouv", "éprouvant": "éprouv", "éprouve": "éprouv", "éprouvé": "éprouv", "éprouvée": "éprouv", "éprouvées": "éprouv", "éprouvent": "éprouvent", "éprouver": "éprouv", "éprouverais": "éprouv", "éprouverait": "éprouv", "éprouvés": "éprouv", "épuisait": "épuis", "épuisé": "épuis", "épuisée": "épuis", "épuisement": "épuis", "épuisèrent": "épuis", "équarrir": "équarr", "équarrissaient": "équarr", "équilibre": "équilibr", "équilibré": "équilibr", "équilibristes": "équilibr", "equinoctial": "equinoctial", "équinoxe": "équinox", "équinoxes": "équinox", "équipage": "équipag", "équipé": "équip", "équipée": "équip", "équité": "équit", "équivalait": "équival", "équivoques": "équivoqu", "equus": "equus", "er": "er", "éreinté": "éreint", "ériger": "érig", "erit": "erit", "ermitages": "ermitag", "ernest": "ernest", "erra": "erra", "erraient": "erraient", "errait": "errait", "errant": "errant", "errante": "errant", "erré": "erré", "errer": "errer", "erreur": "erreur", "erreurs": "erreur", "es": "e", "escadron": "escadron", "escaladé": "escalad", "escalader": "escalad", "escale": "escal", "escalier": "escali", "escaliers": "escali", "escamotée": "escamot", "escamoter": "escamot", "escapade": "escapad", "escarpés": "escarp", "escarpins": "escarpin", "escaut": "escaut", "esclandre": "esclandr", "esclave": "esclav", "esclaves": "esclav", "escofié": "escofi", "escogriffe": "escogriff", "escortaient": "escort", "escorte": "escort", "escorté": "escort", "escortée": "escort", "escouade": "escouad", "escrime": "escrim", "escrit": "escrit", "espace": "espac", "espaces": "espac", "espagne": "espagn", "espagnol": "espagnol", "espagnole": "espagnol", "espagnoles": "espagnol", "espagnolette": "espagnolet", "espagnols": "espagnol", "esparres": "esparr", "espèce": "espec", "espèces": "espec", "espéra": "esper", "espérais": "esper", "espérait": "esper", "espérance": "esper", "espérances": "esper", "espérant": "esper", "espère": "esper", "espéré": "esper", "espérée": "esper", "espérer": "esper", "espères": "esper", "espérez": "esper", "espérons": "espéron", "espiègle": "espiegl", "espion": "espion", "espionnage": "espionnag", "espionné": "espion", "espionnes": "espion", "espions": "espion", "esplanade": "esplanad", "espoir": "espoir", "esprit": "esprit", "esprits": "esprit", "esq": "esq", "esquire": "esquir", "esquisse": "esquiss", "esquisser": "esquiss", "esquiva": "esquiv", "esquiveras": "esquiv", "essai": "essai", "essaiera": "essai", "essaierai": "essai", "essaierait": "essai", "essais": "essais", "essaya": "essai", "essayaient": "essai", "essayait": "essai", "essayant": "essai", "essaye": "essay", "essayé": "essai", "essayées": "essai", "essayer": "essai", "essayons": "essayon", "essence": "essenc", "essences": "essenc", "essentiel": "essentiel", "essentielle": "essentiel", "essentiellement": "essentiel", "essieux": "essieux", "essoufflé": "essouffl", "essoufflée": "essouffl", "essuie": "essui", "essuyait": "essui", "essuyé": "essui", "essuyer": "essui", "est": "est", "estafette": "estafet", "estafier": "estafi", "estafiers": "estafi", "estampe": "estamp", "estampes": "estamp", "estimable": "estim", "estimables": "estim", "estimaient": "estim", "estimait": "estim", "estimant": "estim", "estime": "estim", "estimé": "estim", "estimée": "estim", "estimer": "estim", "estimeraient": "estim", "estimez": "estim", "estomac": "estomac", "estomacs": "estomac", "et": "et", "établi": "établ", "établie": "établ", "établies": "établ", "établir": "établ", "établira": "établ", "établirent": "établ", "établirez": "établ", "établis": "établ", "établissaient": "établ", "établissait": "établ", "établissant": "établ", "établissement": "établ", "établissements": "établ", "établit": "établ", "étage": "étag", "étagea": "étag", "étageaient": "étag", "étages": "étag", "étai": "étai", "étaie": "étai", "etaient": "etaient", "étaient": "étaient", "étain": "étain", "étais": "étais", "etait": "etait", "était": "était", "étalage": "étalag", "étalages": "étalag", "étalait": "étal", "étalant": "étal", "étale": "étal", "étalé": "étal", "étalée": "étal", "étaler": "étal", "étalés": "étal", "étancher": "étanch", "étang": "étang", "étangs": "étang", "etant": "etant", "étant": "étant", "étarquée": "étarqu", "etat": "etat", "état": "état", "etats": "etat", "états": "état", "étaux": "étal", "étayé": "étai", "etc": "etc", "été": "été", "éteignaient": "éteign", "éteignait": "éteign", "éteignirent": "éteign", "éteignit": "éteign", "éteindra": "éteindr", "éteindre": "éteindr", "éteindrons": "éteindron", "éteint": "éteint", "éteinte": "éteint", "éteints": "éteint", "étend": "étend", "étendaient": "étend", "étendait": "étend", "étendant": "étend", "étendent": "étendent", "étendirent": "étend", "étendit": "étend", "étendre": "étendr", "étendu": "étendu", "étendue": "étendu", "étendues": "étendu", "étendus": "étendus", "éternel": "éternel", "éternelle": "éternel", "éternelles": "éternel", "éternels": "éternel", "éternité": "étern", "êtes": "ête", "ethnographiques": "ethnograph", "étienne": "étien", "étiez": "éti", "étincelante": "étincel", "étincelants": "étincel", "étincelle": "étincel", "étincelles": "étincel", "étiole": "étiol", "étiolés": "étiol", "étions": "étion", "étiquette": "étiquet", "étoffe": "étoff", "étoffes": "étoff", "étoile": "étoil", "étoilé": "étoil", "étoiles": "étoil", "étonna": "éton", "étonnaient": "éton", "étonnait": "éton", "étonnant": "éton", "étonnante": "éton", "étonnantes": "éton", "étonnants": "éton", "étonne": "éton", "étonné": "éton", "étonnée": "éton", "étonnées": "éton", "étonnement": "éton", "étonnent": "étonnent", "étonner": "éton", "étonnera": "éton", "étonnerait": "éton", "étonnèrent": "éton", "étonnés": "éton", "étouffaient": "étouff", "étouffait": "étouff", "étouffe": "étouff", "étouffé": "étouff", "étouffée": "étouff", "étouffer": "étouff", "étourderie": "étourder", "étourderies": "étourder", "étourdi": "étourd", "étourdie": "étourd", "étourdiment": "étourd", "étourdir": "étourd", "étourdissait": "étourd", "étourdissement": "étourd", "étourdit": "étourd", "étrange": "étrang", "étrangement": "étrang", "étranger": "étrang", "étrangère": "étranger", "étrangères": "étranger", "étrangers": "étranger", "étranges": "étrang", "étrangeté": "étranget", "étranglaient": "étrangl", "étrangler": "étrangl", "etrangleurs": "etrangleur", "étrave": "étrav", "etre": "etre", "être": "être", "étreignit": "étreign", "étreinte": "étreint", "êtres": "être", "étrier": "étri", "étriers": "étrier", "étrille": "étrill", "étroit": "étroit", "étroite": "étroit", "étroitement": "étroit", "étroites": "étroit", "étroits": "étroit", "étude": "étud", "études": "étud", "étudia": "étudi", "étudiait": "étudi", "étudiant": "étudi", "étudie": "étud", "étudié": "étudi", "étudiée": "étudi", "étudier": "étudi", "étudierai": "étudi", "étudiez": "étud", "étui": "étui", "étuis": "étuis", "eu": "eu", "eue": "eue", "eues": "eue", "eugène": "eugen", "eunuque": "eunuqu", "euphorbes": "euphorb", "eurent": "eurent", "europe": "europ", "européen": "européen", "européenne": "européen", "européennes": "européen", "européens": "européen", "eus": "eus", "eusse": "euss", "eussent": "eussent", "eussiez": "euss", "eut": "eut", "eût": "eût", "eux": "eux", "évacuer": "évacu", "évader": "évad", "évaluait": "évalu", "évangélique": "évangel", "évangile": "évangil", "évanoui": "évanou", "évanouie": "évanou", "évanouir": "évanou", "évanouirent": "évanou", "évanouis": "évanou", "évanouissait": "évanou", "évanouissement": "évanou", "évanouit": "évanou", "evans": "evan", "évaporatoire": "évaporatoir", "évasion": "évas", "évêché": "évêch", "éveil": "éveil", "éveilla": "éveil", "éveillant": "éveil", "éveillé": "éveil", "éveillée": "éveil", "éveillées": "éveil", "éveiller": "éveil", "éveillera": "éveil", "éveillés": "éveil", "even": "even", "événement": "éven", "événements": "éven", "evening": "evening", "éventail": "éventail", "éventée": "évent", "éventualité": "éventual", "éventualités": "éventual", "évêque": "évêqu", "évêques": "évêqu", "évidaient": "évid", "evidemment": "evident", "évidemment": "évident", "évidence": "évident", "évident": "évident", "évidente": "évident", "évidentes": "évident", "évidents": "évident", "évita": "évit", "évitait": "évit", "évitant": "évit", "évité": "évit", "éviter": "évit", "évitèrent": "évit", "évitons": "éviton", "ex": "ex", "exact": "exact", "exacte": "exact", "exactement": "exact", "exactes": "exact", "exactitude": "exactitud", "exacts": "exact", "exagéra": "exager", "exagérait": "exager", "exagérant": "exager", "exagération": "exager", "exagérations": "exager", "exagère": "exager", "exagéré": "exager", "exagérée": "exager", "exagérées": "exager", "exagèrent": "exag", "exagérer": "exager", "exagérés": "exager", "exalta": "exalt", "exaltait": "exalt", "exaltation": "exalt", "exalte": "exalt", "exalté": "exalt", "exaltée": "exalt", "exaltées": "exalt", "exalter": "exalt", "examen": "examen", "examens": "examen", "examina": "examin", "examinait": "examin", "examinant": "examin", "examinateur": "examin", "examinateurs": "examin", "examine": "examin", "examiné": "examin", "examinée": "examin", "examiner": "examin", "examinez": "examin", "exaspérait": "exasper", "exaspéré": "exasper", "exaspérée": "exasper", "exaspérer": "exasper", "excédé": "exced", "excédée": "exced", "excéder": "exced", "excellence": "excellent", "excellent": "excellent", "excellente": "excellent", "excellentes": "excellent", "excellents": "excellent", "excentricité": "excentr", "excentrique": "excentr", "excepté": "except", "exception": "except", "excès": "exces", "excessif": "excess", "excessifs": "excess", "excessive": "excess", "excessivement": "excess", "excessives": "excess", "excita": "excit", "excitait": "excit", "excitation": "excit", "excité": "excit", "excitée": "excit", "excitées": "excit", "excitent": "excitent", "exciter": "excit", "exciterai": "excit", "exclama": "exclam", "exclamation": "exclam", "exclamations": "exclam", "exclu": "exclu", "exclusive": "exclus", "exclusivement": "exclus", "excusa": "excus", "excusable": "excus", "excusait": "excus", "excusant": "excus", "excuse": "excus", "excusée": "excus", "excuser": "excus", "excuserez": "excus", "excuses": "excus", "excusez": "excus", "exécrable": "execr", "exécrait": "execr", "exécration": "execr", "exècre": "execr", "exécrer": "execr", "exécuta": "exécut", "exécutait": "exécut", "exécutant": "exécut", "exécute": "exécut", "exécuté": "exécut", "exécutée": "exécut", "exécutées": "exécut", "exécuter": "exécut", "exécuterai": "exécut", "exécuterait": "exécut", "exécuteras": "exécut", "exécutés": "exécut", "exécuteur": "exécuteur", "exécution": "exécu", "exécutions": "exécu", "exécutoire": "exécutoir", "exemplaire": "exemplair", "exemplaires": "exemplair", "exemple": "exempl", "exemples": "exempl", "exempte": "exempt", "exempté": "exempt", "exerçait": "exerc", "exerçant": "exerc", "exerce": "exerc", "exercée": "exerc", "exercent": "exercent", "exercer": "exerc", "exercerait": "exerc", "exercés": "exerc", "exercice": "exercic", "exercices": "exercic", "exhibant": "exhib", "exhibe": "exhib", "exhibition": "exhibit", "exhibitions": "exhibit", "exhortait": "exhort", "exige": "exig", "exigé": "exig", "exigea": "exig", "exigeait": "exig", "exigences": "exigent", "exigeons": "exigeon", "exiger": "exig", "exigez": "exig", "exiguë": "exigu", "exigus": "exigus", "exil": "exil", "exila": "exil", "exilait": "exil", "exile": "exil", "exilé": "exil", "exilées": "exil", "exiler": "exil", "exista": "exist", "existaient": "exist", "existait": "exist", "existât": "exist", "existe": "exist", "existé": "exist", "existence": "existent", "existent": "existent", "exister": "exist", "exorbitante": "exorbit", "exotiques": "exot", "expansif": "expans", "expansion": "expans", "expédia": "expédi", "expédié": "expédi", "expédiée": "expédi", "expédier": "expédi", "expédition": "expédit", "expéditions": "expédit", "expérience": "expérient", "expiation": "expiat", "expira": "expir", "expiré": "expir", "expirer": "expir", "explicable": "explic", "explication": "expliqu", "explications": "expliqu", "explicite": "explicit", "expliqua": "expliqu", "expliquait": "expliqu", "expliquant": "expliqu", "explique": "expliqu", "expliqué": "expliqu", "expliquée": "expliqu", "expliquer": "expliqu", "expliqués": "expliqu", "expliquez": "expliqu", "exploit": "exploit", "exploits": "exploit", "explosion": "explos", "exposa": "expos", "exposais": "expos", "exposait": "expos", "exposant": "expos", "expose": "expos", "exposé": "expos", "exposée": "expos", "exposées": "expos", "exposer": "expos", "exposerai": "expos", "exposerais": "expos", "exposerait": "expos", "exposés": "expos", "exposez": "expos", "exprès": "expres", "express": "express", "expresse": "express", "expressément": "express", "expressifs": "express", "expression": "express", "expressions": "express", "exprima": "exprim", "exprimaient": "exprim", "exprimait": "exprim", "exprimant": "exprim", "exprime": "exprim", "exprimé": "exprim", "exprimée": "exprim", "exprimer": "exprim", "exprimèrent": "exprim", "exprimeront": "exprim", "exquise": "exquis", "extase": "extas", "extases": "extas", "extatique": "extat", "extension": "extens", "extérieur": "extérieur", "extérieure": "extérieur", "extérieures": "extérieur", "extérieurs": "extérieur", "exterminés": "extermin", "extinction": "extinct", "extorqué": "extorqu", "extradition": "extradit", "extrait": "extrait", "extraites": "extrait", "extraordinaire": "extraordinair", "extraordinairement": "extraordinair", "extraordinaires": "extraordinair", "extravagant": "extravag", "extravagante": "extravag", "extravagantes": "extravag", "extrême": "extrêm", "extrêmement": "extrêm", "extrêmes": "extrêm", "extrémité": "extrem", "extrémités": "extrem", "f": "f", "fa": "fa", "fabio": "fabio", "fable": "fabl", "fables": "fabl", "fabricant": "fabric", "fabricants": "fabric", "fabrice": "fabric", "fabriquaient": "fabriqu", "fabrique": "fabriqu", "fabriquée": "fabriqu", "fabriquées": "fabriqu", "fabriquer": "fabriqu", "fabriques": "fabriqu", "fabuleux": "fabul", "fabuliste": "fabul", "façade": "façad", "façades": "façad", "face": "fac", "fâcha": "fâch", "fâchait": "fâch", "fâchât": "fâch", "fâche": "fâch", "fâché": "fâch", "fâchée": "fâch", "fâchent": "fâchent", "fâcher": "fâch", "fâchèrent": "fâch", "fâchés": "fâch", "fâcheuse": "fâcheux", "fâcheuses": "fâcheux", "fâcheux": "fâcheux", "fâchez": "fâch", "facile": "facil", "facilement": "facil", "facilitait": "facilit", "facilité": "facil", "facilitent": "facilitent", "faciliter": "facilit", "facio": "facio", "façon": "façon", "faconde": "facond", "façons": "façon", "facteur": "facteur", "faction": "faction", "factotum": "factotum", "faculté": "facult", "facultés": "facult", "fade": "fad", "fagots": "fagot", "fahrenheit": "fahrenheit", "faible": "faibl", "faibles": "faibl", "faiblesse": "faibless", "faiblesses": "faibless", "faiblir": "faibl", "faiblirent": "faibl", "faict": "faict", "failli": "faill", "faillir": "faill", "faillirent": "faill", "faillit": "faill", "faim": "faim", "fainéant": "fainé", "faire": "fair", "fais": "fais", "faisable": "faisabl", "faisaient": "fais", "faisais": "fais", "faisait": "fais", "faisant": "fais", "faisceaux": "faisceau", "faisiez": "fais", "faisons": "faison", "fait": "fait", "faite": "fait", "faîte": "faît", "faites": "fait", "faits": "fait", "fakirs": "fakir", "falcoz": "falcoz", "faliero": "faliero", "fallait": "fall", "fallentin": "fallentin", "falloir": "falloir", "fallu": "fallu", "fallut": "fallut", "fameuse": "fameux", "fameusement": "fameux", "fameux": "fameux", "familiarisé": "familiaris", "familiarité": "familiar", "familier": "famili", "familièrement": "famili", "famille": "famill", "familles": "famill", "fanal": "fanal", "fanatique": "fanat", "fanatiques": "fanat", "fanatisme": "fanat", "fanfarons": "fanfaron", "fange": "fang", "fangeuses": "fangeux", "fangeux": "fangeux", "fantaisie": "fantais", "fantaisies": "fantais", "fantaisistes": "fantais", "fantasque": "fantasqu", "fantastique": "fantast", "fantastiques": "fantast", "fantôme": "fantôm", "faquins": "faquin", "far": "far", "faraud": "faraud", "farceur": "farceur", "farceurs": "farceur", "farci": "farc", "fardeau": "fardeau", "fare": "far", "farine": "farin", "farmer": "farm", "farnèse": "farnes", "farouche": "farouch", "farouches": "farouch", "farthing": "farthing", "fascinant": "fascin", "fascination": "fascin", "fasciné": "fascin", "fasciner": "fascin", "fasse": "fass", "fassent": "fassent", "fassiez": "fass", "faste": "fast", "fastenet": "fastenet", "fat": "fat", "fata": "fat", "fatal": "fatal", "fatale": "fatal", "fatales": "fatal", "fatalité": "fatal", "fatigant": "fatig", "fatigante": "fatig", "fatigua": "fatigu", "fatiguaient": "fatigu", "fatigue": "fatigu", "fatigué": "fatigu", "fatiguée": "fatigu", "fatiguées": "fatigu", "fatiguer": "fatigu", "fatiguerai": "fatigu", "fatigues": "fatigu", "fatuité": "fatuit", "faublas": "faubl", "faubourg": "faubourg", "faudra": "faudr", "faudrait": "faudr", "faufilant": "faufil", "fausse": "fauss", "fausses": "fauss", "fausseté": "fausset", "faussetés": "fausset", "fausta": "faust", "faut": "faut", "faute": "faut", "fautes": "faut", "fauteuil": "fauteuil", "fauteuils": "fauteuil", "fauve": "fauv", "fauves": "fauv", "faux": "faux", "faveur": "faveur", "faveurs": "faveur", "favorable": "favor", "favorablement": "favor", "favorables": "favor", "favori": "favor", "favoris": "favor", "favorisa": "favoris", "favorisait": "favoris", "favoriser": "favoris", "favorite": "favorit", "fay": "fay", "fayette": "fayet", "fé": "fé", "fébrile": "fébril", "fébrilement": "fébril", "feci": "fec", "fécond": "fécond", "féconde": "fécond", "feignait": "feign", "feignant": "feign", "feignent": "feignent", "feignit": "feign", "feindre": "feindr", "feins": "fein", "feint": "feint", "feinte": "feint", "felice": "felic", "félicita": "félicit", "félicitait": "félicit", "félicite": "félicit", "félicité": "féliqu", "félicités": "féliqu", "felino": "felino", "félix": "félix", "fellah": "fellah", "fellahs": "fellah", "féminin": "féminin", "féminine": "féminin", "femme": "femm", "femmelette": "femmelet", "femmes": "femm", "fendaient": "fend", "fendait": "fend", "fendues": "fendu", "fénelon": "fénelon", "fenestrelles": "fenestrel", "fenêtre": "fenêtr", "fenêtres": "fenêtr", "fente": "fent", "féodal": "féodal", "fer": "fer", "fera": "fer", "ferai": "fer", "feraient": "fer", "ferais": "fer", "ferait": "fer", "feras": "fer", "feretrius": "feretrius", "ferez": "fer", "feriez": "fer", "feringhea": "feringh", "ferions": "ferion", "ferma": "ferm", "fermage": "fermag", "fermaient": "ferm", "fermait": "ferm", "fermant": "ferm", "fermât": "ferm", "ferme": "ferm", "fermé": "ferm", "fermée": "ferm", "fermées": "ferm", "fermement": "ferm", "fermentation": "ferment", "fermer": "ferm", "fermerait": "ferm", "fermèrent": "ferm", "fermerons": "ferm", "fermes": "ferm", "fermés": "ferm", "fermeté": "fermet", "fermeture": "fermetur", "fermier": "fermi", "fermiers": "fermi", "féroce": "féroc", "féroces": "féroc", "férocité": "féroc", "ferons": "feron", "feront": "feront", "ferrante": "ferr", "ferrare": "ferrar", "ferrée": "ferr", "ferrures": "ferrur", "ferry": "ferry", "fers": "fer", "fertile": "fertil", "fertiles": "fertil", "fervaques": "fervaqu", "fervent": "fervent", "fervente": "fervent", "fervents": "fervent", "ferveur": "ferveur", "fête": "fêt", "fêté": "fêt", "fêtes": "fêt", "feu": "feu", "feuillage": "feuillag", "feuille": "feuill", "feuilles": "feuill", "feuilleta": "feuillet", "feuilletait": "feuillet", "feuilletant": "feuillet", "feuillets": "feuillet", "feutre": "feutr", "feux": "feux", "few": "few", "fi": "fi", "fiacre": "fiacr", "ficelé": "ficel", "ficelles": "ficel", "fichée": "fich", "fiches": "fich", "fidèle": "fidel", "fidèlement": "fidel", "fidèles": "fidel", "fidélité": "fidel", "fie": "fi", "fier": "fi", "fierai": "fi", "fière": "fier", "fièrement": "fier", "fières": "fier", "fiers": "fier", "fierté": "fiert", "fièvre": "fievr", "fiévreux": "fiévreux", "figaro": "figaro", "figura": "figur", "figuraient": "figur", "figurais": "figur", "figurait": "figur", "figurât": "figur", "figure": "figur", "figuré": "figur", "figurer": "figur", "figurerai": "figur", "figureriez": "figur", "figures": "figur", "figurés": "figur", "figurez": "figur", "fil": "fil", "fila": "fil", "filait": "fil", "filant": "fil", "filasse": "fil", "file": "fil", "filé": "fil", "filent": "filent", "filer": "fil", "filerai": "fil", "files": "fil", "filet": "filet", "filez": "fil", "fili": "fil", "filiale": "filial", "filigrane": "filigran", "filins": "filin", "fille": "fill", "filles": "fill", "filons": "filon", "fils": "fil", "filtrait": "filtr", "fin": "fin", "finance": "financ", "finances": "financ", "financier": "financi", "financièrement": "financi", "finds": "find", "fine": "fin", "fines": "fin", "finesse": "finess", "finesses": "finess", "fini": "fin", "finie": "fin", "finies": "fin", "finir": "fin", "finira": "fin", "finiraient": "fin", "finirait": "fin", "finirent": "fin", "finis": "fin", "finissait": "fin", "finissant": "fin", "finisse": "fin", "finissent": "fin", "finissons": "fin", "finit": "fin", "fins": "fin", "fiole": "fiol", "fir": "fir", "fire": "fir", "firent": "firent", "fis": "fis", "fiscal": "fiscal", "fisse": "fiss", "fit": "fit", "fît": "fît", "fitz": "fitz", "fix": "fix", "fixa": "fix", "fixaient": "fix", "fixait": "fix", "fixant": "fix", "fixe": "fix", "fixé": "fix", "fixée": "fix", "fixement": "fix", "fixer": "fix", "fixèrent": "fix", "fixés": "fix", "fixité": "fixit", "flacon": "flacon", "flagrant": "flagr", "flair": "flair", "flairait": "flair", "flamand": "flamand", "flamande": "flamand", "flambé": "flamb", "flambeaux": "flambeau", "flambés": "flamb", "flamboyants": "flamboi", "flamme": "flamm", "flammes": "flamm", "flâna": "flân", "flanagan": "flanagan", "flânait": "flân", "flânant": "flân", "flanc": "flanc", "flancs": "flanc", "flatta": "flatt", "flattait": "flatt", "flatte": "flatt", "flatté": "flatt", "flattée": "flatt", "flatter": "flatt", "flatteries": "flatter", "flatteur": "flatteur", "flatteurs": "flatteur", "flatteuse": "flatteux", "flatteuses": "flatteux", "flèche": "flech", "flèches": "flech", "fléchir": "flech", "flegmatique": "flegmat", "flegme": "flegm", "flétri": "fletr", "flétrirait": "fletr", "fleur": "fleur", "fleurs": "fleur", "fleury": "fleury", "fleuve": "fleuv", "fleuves": "fleuv", "flexible": "flexibl", "flexibles": "flexibl", "flocons": "flocon", "florence": "florenc", "florissante": "flor", "flot": "flot", "flots": "flot", "flottaient": "flott", "flottant": "flott", "flottantes": "flott", "flottants": "flott", "flotter": "flott", "flottille": "flottill", "flûtes": "flût", "fo": "fo", "foc": "foc", "focs": "foc", "fogg": "fogg", "foi": "foi", "foin": "foin", "fois": "fois", "foison": "foison", "foisonnait": "foison", "foisonne": "foison", "fokelberg": "fokelberg", "fol": "fol", "folie": "fol", "folies": "fol", "folio": "folio", "folke": "folk", "folle": "foll", "follement": "foll", "folles": "foll", "foncé": "fonc", "foncièrement": "fonci", "fonctionnaire": "fonctionnair", "fonctionnaires": "fonctionnair", "fonctionne": "fonction", "fonctions": "fonction", "fond": "fond", "fonda": "fond", "fondaient": "fond", "fondait": "fond", "fondant": "fond", "fondateur": "fondateur", "fondations": "fondat", "fondé": "fond", "fondée": "fond", "fondées": "fond", "fondements": "fond", "fondent": "fondent", "fonder": "fond", "fonderies": "fonder", "fondés": "fond", "fondirent": "fond", "fondit": "fond", "fondre": "fondr", "fonds": "fond", "fondu": "fondu", "fondue": "fondu", "font": "font", "fontaine": "fontain", "fontaines": "fontain", "fontan": "fontan", "fontana": "fontan", "fontenoy": "fontenoy", "for": "for", "força": "forc", "forçaient": "forc", "forçais": "forc", "forçait": "forc", "forçant": "forc", "force": "forc", "forcé": "forc", "forcée": "forc", "forcer": "forc", "forcera": "forc", "forcerai": "forc", "forcèrent": "forc", "forces": "forc", "forcés": "forc", "forcez": "forc", "forêt": "forêt", "foretells": "foretel", "forets": "foret", "forêts": "forêt", "forfaitz": "forfaitz", "forgé": "forg", "forma": "form", "formaient": "form", "formait": "form", "formalisait": "formalis", "formaliste": "formal", "formalistes": "formal", "formalité": "formal", "formalités": "formal", "formant": "form", "formation": "format", "forme": "form", "formé": "form", "formée": "form", "formées": "form", "formel": "formel", "formellement": "formel", "forment": "forment", "former": "form", "formera": "form", "formèrent": "form", "formes": "form", "formés": "form", "formez": "form", "formidable": "formid", "formidables": "formid", "formose": "formos", "formula": "formul", "formule": "formul", "formulée": "formul", "formuler": "formul", "formules": "formul", "forster": "forst", "fort": "fort", "forte": "fort", "fortement": "fort", "forteresse": "forteress", "fortes": "fort", "forth": "forth", "fortifications": "fortif", "fortifié": "fortifi", "fortifiée": "fortifi", "fortifiées": "fortifi", "fortifier": "fortifi", "fortifions": "fortif", "forts": "fort", "fortune": "fortun", "fortuné": "fortun", "fortunées": "fortun", "fortunes": "fortun", "fortunés": "fortun", "foscarini": "foscarin", "fosse": "foss", "fossé": "foss", "fosses": "foss", "fossés": "foss", "fou": "fou", "foudre": "foudr", "foudroyer": "foudroi", "fouet": "fouet", "fouettait": "fouet", "fouetté": "fouet", "fouetter": "fouet", "fouetterait": "fouet", "fougères": "fouger", "fougueuse": "fougueux", "fougueux": "fougueux", "fouillait": "fouill", "fouillât": "fouill", "fouille": "fouill", "fouillé": "fouill", "fouiller": "fouill", "fouilles": "fouill", "fouillés": "fouill", "fouillez": "fouill", "foule": "foul", "foulé": "foul", "foules": "foul", "fouqué": "fouqu", "fourbes": "fourb", "fourgons": "fourgon", "fourmilière": "fourmili", "fourmillait": "fourmill", "fourmillement": "fourmill", "fourmis": "fourm", "fourmont": "fourmont", "fourneaux": "fourneau", "fourni": "fourn", "fournie": "fourn", "fournir": "fourn", "fourniront": "fourn", "fournis": "fourn", "fournissaient": "fourn", "fournissait": "fourn", "fournissant": "fourn", "fournisseurs": "fournisseur", "fournit": "fourn", "fourniture": "fournitur", "fournitures": "fournitur", "fourraient": "fourr", "fourré": "fourr", "fourreau": "fourreau", "fourrer": "fourr", "fourrier": "fourri", "fourriers": "fourri", "fourrures": "fourrur", "fous": "fous", "fox": "fox", "foyer": "foi", "frac": "frac", "fracas": "frac", "fracassée": "fracass", "fracassés": "fracass", "fragile": "fragil", "fragments": "fragment", "fraîche": "fraîch", "fraîches": "fraîch", "fraîcheur": "fraîcheur", "fraîchir": "fraîch", "fraîchissait": "fraîch", "fraîchit": "fraîch", "frailty": "frailty", "frais": "frais", "franc": "franc", "français": "franc", "française": "français", "françaises": "français", "france": "franc", "francese": "frances", "francfort": "francfort", "franche": "franch", "franchement": "franch", "franchi": "franch", "franchie": "franch", "franchies": "franch", "franchir": "franch", "franchis": "franch", "franchise": "franchis", "franchissait": "franch", "franchissant": "franch", "franchissent": "franch", "franchit": "franch", "francis": "franc", "francisco": "francisco", "françois": "françois", "francs": "franc", "frappa": "frapp", "frappaient": "frapp", "frappait": "frapp", "frappant": "frapp", "frappante": "frapp", "frappantes": "frapp", "frappât": "frapp", "frappe": "frapp", "frappé": "frapp", "frappée": "frapp", "frappées": "frapp", "frappent": "frappent", "frapper": "frapp", "frapperai": "frapp", "frappés": "frapp", "fraternelle": "fraternel", "fraternisaient": "fraternis", "fraude": "fraud", "frayée": "frai", "frayeur": "frayeur", "frédéric": "frédéric", "freins": "frein", "frêle": "frêl", "freluquets": "freluquet", "frémi": "frem", "frémir": "frem", "frémis": "frem", "frémit": "frem", "fremont": "fremont", "frênes": "frên", "frénétique": "frénet", "fréquemment": "fréquent", "fréquence": "fréquenc", "fréquent": "fréquent", "fréquente": "fréquent", "fréquenté": "fréquent", "fréquentée": "fréquent", "fréquentées": "fréquent", "fréquenter": "fréquent", "fréquentes": "fréquent", "fréquents": "fréquent", "frère": "frer", "frères": "frer", "fresque": "fresqu", "fret": "fret", "fréter": "fret", "frilair": "frilair", "fringante": "fring", "friperie": "friper", "friperies": "friper", "fripon": "fripon", "friponner": "fripon", "friponnerie": "friponner", "friponneries": "friponner", "fripons": "fripon", "frisaient": "fris", "frisait": "fris", "friser": "fris", "frises": "fris", "frisés": "fris", "frisson": "frisson", "frivole": "frivol", "froc": "froc", "froid": "froid", "froide": "froid", "froidement": "froid", "froides": "froid", "froideur": "froideur", "froids": "froid", "froissa": "froiss", "froissant": "froiss", "froissants": "froiss", "froissé": "froiss", "from": "from", "fromage": "fromag", "froment": "froment", "fronçait": "fronc", "fronçant": "fronc", "froncé": "fronc", "froncement": "fronc", "froncer": "fronc", "froncera": "fronc", "fronde": "frond", "frondeur": "frondeur", "front": "front", "frontière": "fronti", "frontières": "fronti", "frontins": "frontin", "fronts": "front", "frotta": "frott", "frottait": "frott", "frottant": "frott", "frotté": "frott", "frottements": "frott", "fruit": "fruit", "fruitières": "fruiti", "fruits": "fruit", "fugitif": "fugit", "fugitifs": "fugit", "fui": "fui", "fuient": "fuient", "fuir": "fuir", "fuirais": "fuir", "fuis": "fuis", "fuite": "fuit", "fulgence": "fulgenc", "fuligineuses": "fuligin", "fulminante": "fulmin", "fumaient": "fum", "fumant": "fum", "fume": "fum", "fumée": "fum", "fumées": "fum", "fumer": "fum", "fumeur": "fumeur", "fumeurs": "fumeur", "funèbre": "funebr", "funèbres": "funebr", "funeste": "funest", "funestes": "funest", "fur": "fur", "furent": "furent", "fureur": "fureur", "furia": "furi", "furibond": "furibond", "furibonde": "furibond", "furibondes": "furibond", "furibonds": "furibond", "furieuse": "furieux", "furieusement": "furieux", "furieuses": "furieux", "furieux": "furieux", "furtivement": "furtiv", "fus": "fus", "fusait": "fus", "fuseau": "fuseau", "fuseaux": "fuseau", "fusil": "fusil", "fusiliers": "fusili", "fusillé": "fusill", "fusiller": "fusill", "fusillés": "fusill", "fusils": "fusil", "fusse": "fuss", "fussent": "fussent", "fussiez": "fuss", "fut": "fut", "fût": "fût", "futé": "fut", "futilité": "futil", "futilités": "futil", "futur": "futur", "futura": "futur", "future": "futur", "futures": "futur", "futurs": "futur", "fuyaient": "fui", "fuyait": "fui", "fuyant": "fui", "fuyards": "fuyard", "fuyez": "fui", "g": "g", "gabarit": "gabar", "gabrielle": "gabriel", "gâchis": "gâch", "gage": "gag", "gages": "gag", "gageure": "gageur", "gagna": "gagn", "gagnaient": "gagn", "gagnais": "gagn", "gagnait": "gagn", "gagnant": "gagn", "gagne": "gagn", "gagné": "gagn", "gagnée": "gagn", "gagnées": "gagn", "gagnent": "gagnent", "gagner": "gagn", "gagnerai": "gagn", "gagneras": "gagn", "gagnèrent": "gagn", "gagnés": "gagn", "gagnez": "gagn", "gagnons": "gagnon", "gai": "gai", "gaie": "gai", "gaiement": "gai", "gaies": "gai", "gaieté": "gaiet", "gaillard": "gaillard", "gaillardement": "gaillard", "gaîment": "gaî", "gain": "gain", "gains": "gain", "gais": "gais", "gaîté": "gaît", "gala": "gal", "galamment": "gal", "galant": "gal", "galante": "gal", "galanterie": "galanter", "galantes": "gal", "galéas": "galé", "galère": "galer", "galères": "galer", "galerie": "galer", "galériens": "galérien", "galeries": "galer", "galeuse": "galeux", "galeux": "galeux", "gallicane": "gallican", "galon": "galon", "galonnées": "galon", "galons": "galon", "galop": "galop", "galopa": "galop", "galopaient": "galop", "galopait": "galop", "galopant": "galop", "galope": "galop", "galoper": "galop", "galopera": "galop", "galoperai": "galop", "galopez": "galop", "galvanisées": "galvanis", "gambadant": "gambad", "gamins": "gamin", "gamme": "gamm", "ganaches": "ganach", "gange": "gang", "gangrène": "gangren", "gangrenée": "gangren", "gangrenées": "gangren", "gant": "gant", "gants": "gant", "garantie": "garant", "garanties": "garant", "garantissait": "garant", "garçon": "garçon", "garçons": "garçon", "garda": "gard", "gardai": "gard", "gardaient": "gard", "gardait": "gard", "gardant": "gard", "garde": "gard", "gardé": "gard", "gardée": "gard", "gardées": "gard", "gardens": "garden", "garder": "gard", "gardera": "gard", "garderai": "gard", "garderais": "gard", "garderait": "gard", "garderas": "gard", "gardes": "gard", "gardés": "gard", "gardez": "gard", "gardien": "gardien", "gardiens": "gardien", "gare": "gar", "garnement": "garn", "garni": "garn", "garnie": "garn", "garnies": "garn", "garnis": "garn", "garnison": "garnison", "garnit": "garn", "garrot": "garrot", "garrotté": "garrott", "gascons": "gascon", "gaspilla": "gaspill", "gâtaient": "gât", "gâtait": "gât", "gâte": "gât", "gâté": "gât", "gâteau": "gâteau", "gâtée": "gât", "gâtées": "gât", "gâter": "gât", "gâterait": "gât", "gâtés": "gât", "gauche": "gauch", "gaucherie": "gaucher", "gaucheries": "gaucher", "gauches": "gauch", "gauthier": "gauthi", "gay": "gay", "gaz": "gaz", "gaze": "gaz", "gazes": "gaz", "gazette": "gazet", "gazettes": "gazet", "gazon": "gazon", "gazouillements": "gazouill", "géant": "gé", "géants": "gé", "gémi": "gem", "gémissait": "gem", "gémissant": "gem", "gémissements": "gem", "gênaient": "gên", "gênait": "gên", "gênant": "gên", "gênante": "gên", "gendarme": "gendarm", "gendarmer": "gendarm", "gendarmerie": "gendarmer", "gendarmes": "gendarm", "gendre": "gendr", "gêne": "gên", "gêné": "gên", "généalogie": "généalog", "généalogique": "généalog", "gênent": "gênent", "gêner": "gên", "gênerait": "gên", "general": "general", "général": "général", "générale": "général", "généralement": "général", "générales": "général", "généraux": "général", "généreuse": "géner", "généreusement": "géner", "généreuses": "géner", "généreux": "géner", "générosité": "généros", "gênes": "gên", "genèse": "genes", "genève": "genev", "genevois": "genevois", "génie": "gen", "génies": "gen", "genlis": "genl", "génoise": "génois", "genoux": "genoux", "genre": "genr", "genres": "genr", "gens": "gen", "gentil": "gentil", "gentilhomme": "gentilhomm", "gentille": "gentill", "gentils": "gentil", "gentilshommes": "gentilshomm", "gentle": "gentl", "gentleman": "gentleman", "gentlemen": "gentlemen", "géographie": "géograph", "geôlier": "geôli", "geôlière": "geôli", "geôliers": "geôli", "géomètre": "géometr", "géométrie": "géometr", "george": "georg", "géorgiques": "géorgiqu", "gerbes": "gerb", "germain": "germain", "géronimo": "géronimo", "geste": "gest", "gestes": "gest", "gesticulant": "gesticul", "ghari": "ghar", "ghâtes": "ghât", "ghazepour": "ghazepour", "gherardi": "gherard", "ghisleri": "ghisler", "ghisolfi": "ghisolf", "ghita": "ghit", "gia": "gi", "giacomo": "giacomo", "gibelotte": "gibelott", "giberne": "gibern", "gibier": "gibi", "gibraltar": "gibraltar", "gigantesque": "gigantesqu", "gigantesques": "gigantesqu", "gilet": "gilet", "gilets": "gilet", "giletti": "gilet", "gin": "gin", "gina": "gin", "giovanni": "giovann", "giovannone": "giovannon", "giovita": "giovit", "girafe": "giraf", "giration": "girat", "giraud": "giraud", "girodet": "girodet", "girofliers": "girofli", "girondin": "girondin", "gisaient": "gis", "gisant": "gis", "gît": "gît", "giulia": "giuli", "giuseppe": "giusepp", "give": "giv", "glaçaient": "glac", "glaçait": "glac", "glace": "glac", "glacé": "glac", "glacée": "glac", "glacées": "glac", "glacer": "glac", "glaces": "glac", "glacial": "glacial", "glaciale": "glacial", "glances": "glanc", "glapissante": "glap", "glasgow": "glasgow", "glissa": "gliss", "glissaient": "gliss", "glissait": "gliss", "glissant": "gliss", "glisse": "gliss", "glissé": "gliss", "glissent": "glissent", "glisser": "gliss", "glissera": "gliss", "glissons": "glisson", "globe": "glob", "gloire": "gloir", "glorieux": "glorieux", "glory": "glory", "gloutons": "glouton", "glu": "glu", "goa": "go", "gobelet": "gobelet", "godart": "godart", "godavery": "godavery", "godille": "godill", "goélette": "goélet", "goélettes": "goélet", "goethe": "goeth", "goguenard": "goguenard", "goguenards": "goguenard", "golconde": "golcond", "goldoni": "goldon", "golfe": "golf", "golfes": "golf", "golgonda": "golgond", "golgonde": "golgond", "gonds": "gond", "gongs": "gong", "gonzo": "gonzo", "gorge": "gorg", "gorgées": "gorg", "gorges": "gorg", "gothard": "gothard", "gothique": "gothiqu", "gothiques": "gothiqu", "gouailler": "gouaill", "goudron": "goudron", "goulée": "goul", "gour": "gour", "gourmande": "gourmand", "gourmandise": "gourmandis", "gourmets": "gourmet", "gousset": "gousset", "goût": "goût", "goûta": "goût", "goûtant": "goût", "goûte": "goût", "goûté": "goût", "goûtées": "goût", "goûter": "goût", "goûterait": "goût", "goûtés": "goût", "goûts": "goût", "goutte": "goutt", "gouttes": "goutt", "gouvernail": "gouvernail", "gouvernait": "gouvern", "gouverne": "gouvern", "gouverné": "gouvern", "gouvernement": "gouvern", "gouvernements": "gouvern", "gouvernent": "gouvernent", "gouverner": "gouvern", "gouverneriez": "gouvern", "gouverneur": "gouverneur", "gouverneurs": "gouverneur", "gouvion": "gouvion", "government": "government", "grâce": "grâc", "grâces": "grâc", "gracieuse": "gracieux", "gracieusement": "gracieux", "gracieuses": "gracieux", "gracieux": "gracieux", "grade": "grad", "graduée": "gradu", "graduellement": "graduel", "grain": "grain", "grains": "grain", "graisse": "graiss", "graisser": "graiss", "grand": "grand", "grande": "grand", "grandement": "grand", "grandes": "grand", "grandeur": "grandeur", "grandeurs": "grandeur", "grandi": "grand", "grandie": "grand", "grandiose": "grandios", "grandis": "grand", "grandit": "grand", "grands": "grand", "granit": "gran", "grant": "grant", "granvelle": "granvel", "grappe": "grapp", "gras": "gras", "grasse": "grass", "gratification": "gratif", "gratifié": "gratifi", "gratis": "grat", "gratius": "gratius", "gratter": "gratt", "gratuite": "gratuit", "gratuitement": "gratuit", "grave": "grav", "gravé": "grav", "gravement": "grav", "graver": "grav", "graves": "grav", "graveur": "graveur", "gravir": "grav", "gravissaient": "grav", "gravitaient": "gravit", "gravité": "gravit", "gravures": "gravur", "gray": "gray", "gré": "gré", "great": "great", "greatly": "greatly", "grec": "grec", "grèce": "grec", "grecque": "grecqu", "grecques": "grecqu", "gredin": "gredin", "gréé": "gré", "green": "green", "greenwich": "greenwich", "gréer": "gré", "greffier": "greffi", "grégoire": "grégoir", "grêles": "grêl", "grenade": "grenad", "grenadier": "grenadi", "grenadiers": "grenadi", "grenier": "greni", "grève": "grev", "grianta": "griant", "griefs": "grief", "grièvement": "griev", "griffe": "griff", "griffonnages": "griffonnag", "griffonnait": "griffon", "grillages": "grillag", "grille": "grill", "grillé": "grill", "grillée": "grill", "grillées": "grill", "grilles": "grill", "grillo": "grillo", "grimaçant": "grimac", "grimaçante": "grimac", "grimaçantes": "grimac", "grimaçants": "grimac", "grimace": "grimac", "grimaces": "grimac", "grimer": "grim", "grimpait": "grimp", "grimpant": "grimp", "gringalet": "gringalet", "gris": "gris", "grisâtre": "grisâtr", "grise": "gris", "grisé": "gris", "grisonnants": "grison", "grivelé": "grivel", "grogeot": "grogeot", "grognement": "grogn", "grognon": "grognon", "gronda": "grond", "grondait": "grond", "grondant": "grond", "gronde": "grond", "grondé": "grond", "grondée": "grond", "gronder": "grond", "gronderez": "grond", "grondez": "grond", "groom": "groom", "gros": "gros", "groseilles": "groseil", "grosse": "gross", "grosses": "gross", "grossesse": "grossess", "grosseur": "grosseur", "grossie": "gross", "grossier": "grossi", "grossière": "grossi", "grossièrement": "grossi", "grossières": "grossi", "grossièreté": "grossièret", "grossièretés": "grossièret", "grossiers": "grossi", "grotesque": "grotesqu", "grotesques": "grotesqu", "grotte": "grott", "grottes": "grott", "grouillait": "grouill", "groupe": "group", "groupes": "group", "grues": "gru", "guardate": "guardat", "guèbres": "guebr", "guenilles": "guenill", "guépards": "guépard", "guerchin": "guerchin", "guère": "guer", "guéri": "guer", "guérin": "guérin", "guérir": "guer", "guérison": "guérison", "guérissez": "guer", "guérit": "guer", "guérite": "guérit", "guérites": "guérit", "guerre": "guerr", "guerres": "guerr", "guerriers": "guerri", "guess": "guess", "guet": "guet", "guetta": "guet", "guettait": "guet", "guette": "guet", "guettent": "guettent", "guetteurs": "guetteur", "gueule": "gueul", "gueux": "gueux", "gui": "gui", "guichet": "guichet", "guichetier": "guicheti", "guidant": "guid", "guide": "guid", "guidé": "guid", "guidée": "guid", "guider": "guid", "guidés": "guid", "guidon": "guidon", "guignon": "guignon", "guillotinaient": "guillotin", "guillotine": "guillotin", "guillotiné": "guillotin", "guillotiner": "guillotin", "guillotinés": "guillotin", "guindé": "guind", "guinder": "guind", "guinée": "guin", "guinées": "guin", "guise": "guis", "guitare": "guitar", "gustave": "gustav", "guy": "guy", "gymnase": "gymnas", "gymnaste": "gymnast", "gymnastes": "gymnast", "gymnastique": "gymnast", "h": "h", "ha": "ha", "habile": "habil", "habilement": "habil", "habiles": "habil", "habileté": "habilet", "habilla": "habill", "habillait": "habill", "habillant": "habill", "habille": "habill", "habillé": "habill", "habillée": "habill", "habillement": "habill", "habiller": "habill", "habillés": "habill", "habit": "hab", "habitais": "habit", "habitait": "habit", "habitant": "habit", "habitants": "habit", "habitation": "habit", "habite": "habit", "habité": "habit", "habitée": "habit", "habiter": "habit", "habiterai": "habit", "habiteras": "habit", "habités": "habit", "habitez": "habit", "habits": "habit", "habitude": "habitud", "habitudes": "habitud", "habituée": "habitu", "habituel": "habituel", "habituelle": "habituel", "habituellement": "habituel", "habituelles": "habituel", "habituels": "habituel", "habitués": "habitu", "hache": "hach", "haches": "hach", "hagard": "hagard", "hagards": "hagard", "haï": "haï", "haie": "hai", "haies": "hai", "haillons": "haillon", "haine": "hain", "haines": "hain", "haineuse": "haineux", "haineuses": "haineux", "hair": "hair", "haïr": "haïr", "haïraient": "haïr", "hais": "hais", "haïssaient": "haïss", "haïssait": "haïss", "haïssent": "haïssent", "hait": "hait", "hâla": "hâl", "halage": "halag", "hâle": "hâl", "haleine": "halein", "haletant": "halet", "halleck": "halleck", "halte": "halt", "haltes": "halt", "hambourg": "hambourg", "hambourgeois": "hambourgeois", "hambourgeoise": "hambourgeois", "hameau": "hameau", "hampe": "hamp", "hanche": "hanch", "hand": "hand", "hang": "hang", "hangar": "hangar", "hantée": "hant", "hantées": "hant", "happy": "happy", "harangua": "harangu", "haranguer": "harangu", "harassés": "harass", "hardes": "hard", "hardi": "hard", "hardie": "hard", "hardies": "hard", "hardiesse": "hardiess", "hardiment": "hard", "hardis": "hard", "harmonie": "harmon", "harmonieusement": "harmoni", "harmonieux": "harmoni", "harmoniques": "harmon", "harpe": "harp", "hasard": "hasard", "hasarda": "hasard", "hasardaient": "hasard", "hasarde": "hasard", "hasardé": "hasard", "hasarder": "hasard", "hasardera": "hasard", "hasardeuse": "hasard", "hasardeuses": "hasard", "hasardeux": "hasard", "hasards": "hasard", "hâta": "hât", "hâtait": "hât", "hâte": "hât", "hâté": "hât", "hâter": "hât", "hâtèrent": "hât", "hâtez": "hât", "hâtons": "hâton", "haubans": "hauban", "haubert": "haubert", "haus": "haus", "haussant": "hauss", "haussé": "hauss", "haussement": "hauss", "haut": "haut", "hautain": "hautain", "hautaine": "hautain", "haute": "haut", "hautement": "haut", "hautes": "haut", "hauteur": "hauteur", "hauteurs": "hauteur", "hauts": "haut", "havre": "havr", "hay": "hay", "hayez": "hai", "he": "he", "hé": "hé", "heaviest": "heaviest", "hébété": "hébet", "hébétés": "hébet", "hein": "hein", "héla": "hel", "hélas": "hel", "hélène": "hélen", "hélice": "hélic", "héloïse": "héloïs", "helvétie": "helvet", "hémisphère": "hémispher", "henné": "hen", "hennissant": "hen", "hennissement": "hen", "hennissements": "hen", "hennit": "hen", "henri": "henr", "henriet": "henriet", "henrietta": "henriet", "henry": "henry", "her": "her", "héraut": "héraut", "hérauts": "héraut", "herbe": "herb", "herbes": "herb", "hercule": "hercul", "herculéenne": "herculéen", "hère": "her", "héréditaire": "héréditair", "hérédité": "héred", "hères": "her", "hérésie": "héres", "hérésies": "héres", "hérisse": "her", "hérissé": "hériss", "hérissée": "hériss", "hérissées": "hériss", "hérissés": "hériss", "héritage": "héritag", "hérité": "hérit", "héritier": "hériti", "héritière": "hériti", "hermétiquement": "hermet", "hernani": "hernan", "hérodiade": "hérodiad", "hérodiades": "hérodiad", "héroïne": "héroïn", "héroïque": "héroïqu", "héroïquement": "héroïqu", "héroïques": "héroïqu", "héroïsme": "héroïsm", "héron": "héron", "héros": "héros", "hers": "her", "hésita": "hésit", "hésitait": "hésit", "hésitant": "hésit", "hésitation": "hésit", "hésite": "hésit", "hésité": "hésit", "hésiter": "hésit", "hésiterais": "hésit", "hésiteront": "hésit", "hésitiez": "hésit", "hêtre": "hêtr", "hêtres": "hêtr", "heure": "heur", "heures": "heur", "heureuse": "heureux", "heureusement": "heureux", "heureuses": "heureux", "heureux": "heureux", "heurtaient": "heurt", "heurte": "heurt", "heurter": "heurt", "hic": "hic", "hideuse": "hideux", "hideuses": "hideux", "hideux": "hideux", "hier": "hi", "hiérarchie": "hiérarch", "hill": "hill", "himalaya": "himalai", "hindous": "hindous", "hip": "hip", "hippolyte": "hippolyt", "his": "his", "hissa": "hiss", "hissé": "hiss", "hissées": "hiss", "histoire": "histoir", "histoires": "histoir", "historien": "historien", "historiens": "historien", "historique": "histor", "historiques": "histor", "histrion": "histrion", "hitch": "hitch", "hiver": "hiv", "ho": "ho", "hobbes": "hobb", "hobereau": "hobereau", "hobereaux": "hobereau", "hoc": "hoc", "hochant": "hoch", "hoche": "hoch", "holà": "holà", "holland": "holland", "hollandais": "holland", "hollandaises": "hollandais", "hollande": "holland", "homélie": "homel", "homélies": "homel", "homère": "homer", "hommage": "hommag", "hommages": "hommag", "homme": "homm", "hommes": "homm", "hong": "hong", "hongrois": "hongrois", "honnête": "honnêt", "honnêtes": "honnêt", "honnêteté": "honnêtet", "honnêtetés": "honnêtet", "honneur": "honneur", "honneurs": "honneur", "honorabilité": "honor", "honorable": "honor", "honorables": "honor", "honore": "honor", "honoré": "honor", "honorée": "honor", "honorent": "honorent", "honorer": "honor", "honorera": "honor", "honorés": "honor", "honte": "hont", "honteuse": "honteux", "honteusement": "honteux", "honteux": "honteux", "honur": "honur", "hook": "hook", "hôpital": "hôpital", "hôpitaux": "hôpital", "horace": "horac", "horde": "hord", "horions": "horion", "horizon": "horizon", "horloge": "horlog", "horlogerie": "horloger", "horloges": "horlog", "horreur": "horreur", "horreurs": "horreur", "horrible": "horribl", "horriblement": "horribl", "horribles": "horribl", "hors": "hor", "hospice": "hospic", "hospitalité": "hospital", "hostie": "host", "hostile": "hostil", "hostiles": "hostil", "hostilité": "hostil", "hôte": "hôt", "hôtel": "hôtel", "hôtels": "hôtel", "hôtes": "hôt", "hôtesse": "hôtess", "hôtesses": "hôtess", "hotte": "hott", "hottentots": "hottentot", "hougly": "hougly", "houille": "houill", "houle": "houl", "houles": "houl", "houleuse": "houleux", "housards": "housard", "house": "hous", "housse": "houss", "how": "how", "hudson": "hudson", "hugo": "hugo", "hui": "hui", "huile": "huil", "huilé": "huil", "huissier": "huissi", "huit": "huit", "huitième": "huitiem", "huîtres": "huîtr", "humain": "humain", "humaine": "humain", "humainement": "humain", "humaines": "humain", "humains": "humain", "humait": "hum", "humaniste": "human", "humanité": "human", "humanités": "human", "humble": "humbl", "humblement": "humbl", "humbles": "humbl", "humboldt": "humboldt", "hume": "hum", "humer": "hum", "humeur": "humeur", "humide": "humid", "humides": "humid", "humidité": "humid", "humiliant": "humili", "humiliante": "humili", "humiliantes": "humili", "humiliants": "humili", "humiliation": "humili", "humiliations": "humili", "humilie": "humil", "humilié": "humili", "humiliée": "humili", "humilient": "humilient", "humilier": "humili", "humiliez": "humil", "humilité": "humil", "hune": "hun", "huniers": "huni", "hurlante": "hurl", "hurlements": "hurl", "hurlent": "hurlent", "hurler": "hurl", "hurrah": "hurrah", "hurrahs": "hurrah", "hussard": "hussard", "hussarde": "hussard", "hussards": "hussard", "hutte": "hutt", "huttes": "hutt", "hvram": "hvram", "hydrogène": "hydrogen", "hydrographique": "hydrograph", "hyères": "hyer", "hypocrisie": "hypocris", "hypocrisies": "hypocris", "hypocrite": "hypocrit", "hypocrites": "hypocrit", "hypogées": "hypog", "hypothèse": "hypothes", "i": "i", "iago": "iago", "ici": "ici", "ideal": "ideal", "idéal": "idéal", "idéale": "idéal", "idée": "idé", "idées": "idé", "identique": "ident", "identité": "ident", "idiots": "idiot", "idolâtrie": "idolâtr", "idole": "idol", "ignares": "ignar", "ignes": "igne", "ignoble": "ignobl", "ignobles": "ignobl", "ignominie": "ignomin", "ignoraient": "ignor", "ignorais": "ignor", "ignorait": "ignor", "ignorance": "ignor", "ignorant": "ignor", "ignorante": "ignor", "ignore": "ignor", "ignorent": "ignorent", "ignorer": "ignor", "ignores": "ignor", "ignoriez": "ignor", "ii": "ii", "iii": "iii", "il": "il", "île": "île", "îles": "île", "illicites": "illicit", "illimité": "illim", "illimitée": "illimit", "illinois": "illinois", "illisible": "illisibl", "illisibles": "illisibl", "illumina": "illumin", "illumination": "illumin", "illuminé": "illumin", "illuminée": "illumin", "illuminer": "illumin", "illusion": "illus", "illusions": "illus", "illustrated": "illustrated", "illustration": "illustr", "illustre": "illustr", "illustrer": "illustr", "illustrissime": "illustrissim", "îlot": "îlot", "îlots": "îlot", "ils": "il", "image": "imag", "images": "imag", "imagina": "imagin", "imaginaient": "imagin", "imaginaire": "imaginair", "imaginaires": "imaginair", "imaginais": "imagin", "imaginait": "imagin", "imaginant": "imagin", "imagination": "imagin", "imaginations": "imagin", "imaginative": "imagin", "imagine": "imagin", "imaginé": "imagin", "imaginer": "imagin", "imbécile": "imbécil", "imbéciles": "imbécil", "imita": "imit", "imitait": "imit", "imitant": "imit", "imitation": "imit", "imité": "imit", "imitées": "imit", "imiter": "imit", "imman": "imman", "immanquable": "immanqu", "immanquablement": "immanqu", "immédiat": "immédiat", "immédiate": "immédiat", "immédiatement": "immédiat", "immédiates": "immédiat", "immédiats": "immédiat", "immense": "immens", "immensément": "immens", "immenses": "immens", "immensité": "immens", "imminence": "imminent", "imminent": "imminent", "immobile": "immobil", "immobiles": "immobil", "immolé": "immol", "immoler": "immol", "immonde": "immond", "immoral": "immoral", "immorales": "immoral", "immoralité": "immoral", "immortalisé": "immortalis", "immortaliser": "immortalis", "immortel": "immortel", "immuable": "immuabl", "imola": "imol", "impardonnable": "impardon", "impardonnables": "impardon", "imparfait": "imparf", "imparfaite": "imparfait", "imparfaitement": "imparfait", "impassibilité": "impassibil", "impassible": "impassibl", "impatience": "impatient", "impatient": "impatient", "impatienta": "impatient", "impatientait": "impatient", "impatientant": "impatient", "impatientante": "impatient", "impatiente": "impatient", "impatienté": "impatient", "impatientée": "impatient", "impatienter": "impatient", "impatientera": "impatient", "impayable": "impai", "impénétrable": "impénetr", "impératif": "imper", "impératrice": "imper", "imperceptibles": "imperceptibl", "imperfection": "imperfect", "impérial": "impérial", "impériale": "impérial", "impériales": "impérial", "impérieuse": "impéri", "impérieusement": "impéri", "impérieux": "impéri", "impertinence": "impertinent", "impertinences": "impertinent", "impertinent": "impertinent", "impertinente": "impertinent", "impertinentes": "impertinent", "imperturbable": "imperturb", "imperturbablement": "imperturb", "impétueusement": "impétu", "impie": "impi", "impies": "impi", "impiété": "impiet", "impitoyable": "impitoi", "impitoyablement": "impitoi", "implacable": "implac", "implicite": "implicit", "implora": "implor", "implorer": "implor", "impoli": "impol", "impolie": "impol", "impoliment": "impol", "importait": "import", "importance": "import", "important": "import", "importante": "import", "importantes": "import", "importants": "import", "importe": "import", "importée": "import", "importent": "importent", "importés": "import", "importun": "importun", "importuna": "importun", "importune": "importun", "importunités": "importun", "importuns": "importun", "imposa": "impos", "imposaient": "impos", "imposait": "impos", "imposant": "impos", "imposante": "impos", "impose": "impos", "imposé": "impos", "imposée": "impos", "imposées": "impos", "imposent": "imposent", "imposer": "impos", "imposera": "impos", "imposèrent": "impos", "imposés": "impos", "impositions": "imposit", "impossibilité": "impossibil", "impossible": "impossibl", "impossibles": "impossibl", "impraticable": "impratic", "imprécations": "imprec", "imprégnait": "impregn", "imprégné": "impregn", "impresario": "impresario", "imprescriptibles": "imprescriptibl", "impression": "impress", "impressionna": "impression", "impressionnait": "impression", "impressions": "impress", "imprévu": "imprévu", "imprévue": "imprévu", "imprévues": "imprévu", "imprima": "imprim", "imprimait": "imprim", "imprime": "imprim", "imprimé": "imprim", "imprimée": "imprim", "imprimées": "imprim", "imprimer": "imprim", "imprimerie": "imprimer", "imprimés": "imprim", "imprimeur": "imprimeur", "imprimeurs": "imprimeur", "improbable": "improb", "improbables": "improb", "impromptu": "impromptu", "impromptue": "impromptu", "impropre": "impropr", "improprement": "impropr", "improvisais": "improvis", "improvisait": "improvis", "improvisée": "improvis", "improvisées": "improvis", "improvises": "improvis", "improvisés": "improvis", "improviste": "improv", "imprudemment": "imprudent", "imprudence": "imprudent", "imprudences": "imprudent", "imprudent": "imprudent", "imprudente": "imprudent", "imprudentes": "imprudent", "imprudents": "imprudent", "impudence": "impudent", "impudent": "impudent", "impudents": "impudent", "impuissante": "impuiss", "impuissants": "impuiss", "impulsion": "impuls", "impunément": "impun", "impunité": "impun", "imputant": "imput", "imputations": "imput", "imputées": "imput", "imputer": "imput", "in": "in", "ina": "ina", "inaccessible": "inaccessibl", "inaccessibles": "inaccessibl", "inaccoutumé": "inaccoutum", "inaccoutumée": "inaccoutum", "inaccoutumées": "inaccoutum", "inaction": "inact", "inadmissible": "inadmissibl", "inadmissibles": "inadmissibl", "inaltérable": "inalter", "inamovible": "inamovibl", "inanimé": "inanim", "inanimée": "inanim", "inanimés": "inanim", "inaperçu": "inaperçu", "inaperçue": "inaperçu", "inaperçues": "inaperçu", "inarticulés": "inarticul", "inattaquable": "inattaqu", "inattaquables": "inattaqu", "inattendu": "inattendu", "inattendue": "inattendu", "inattention": "inattent", "inauguration": "inaugur", "inaugurer": "inaugur", "incapable": "incap", "incarne": "incarn", "incarnée": "incarn", "incartade": "incartad", "incedo": "incedo", "incendiaires": "incendiair", "incendie": "incend", "incendies": "incend", "incertain": "incertain", "incertaine": "incertain", "incertains": "incertain", "incertitude": "incertitud", "incertitudes": "incertitud", "incessamment": "incess", "incessant": "incess", "incessants": "incess", "inceste": "incest", "incident": "incident", "incidenter": "incident", "incidents": "incident", "incisif": "incis", "incisions": "incis", "incisive": "incis", "incisives": "incis", "inclina": "inclin", "inclinaient": "inclin", "inclination": "inclin", "incliné": "inclin", "inclinée": "inclin", "inclinera": "inclin", "inclus": "inclus", "incluse": "inclus", "incognito": "incognito", "incommensurable": "incommensur", "incommode": "incommod", "incommodée": "incommod", "incommodes": "incommod", "incommodité": "incommod", "incomodo": "incomodo", "incompatible": "incompatibl", "incompatibles": "incompatibl", "incomplètes": "incomplet", "incongruité": "incongru", "inconnu": "inconnu", "inconnue": "inconnu", "inconnus": "inconnus", "inconsciemment": "inconscient", "inconsciente": "inconscient", "inconsidérée": "inconsider", "inconsolable": "inconsol", "inconstance": "inconst", "inconstant": "inconst", "inconstante": "inconst", "incontestable": "incontest", "incontestablement": "incontest", "inconvenance": "inconven", "inconvenant": "inconven", "inconvenante": "inconven", "inconvenantes": "inconven", "inconvénient": "inconvénient", "inconvénients": "inconvénient", "incorporer": "incorpor", "incrédule": "incrédul", "incrédulité": "incrédul", "incriminait": "incrimin", "incroyable": "incroi", "incroyables": "incroi", "incrusta": "incrust", "incruster": "incrust", "incrustés": "incrust", "incurie": "incur", "inde": "inde", "indécence": "indécent", "indécent": "indécent", "indécentes": "indécent", "indécents": "indécent", "indéchiffrable": "indéchiffr", "indécis": "indec", "indécise": "indécis", "indéfini": "indéfin", "indéfinissable": "indéfiniss", "indélicatesse": "indélicatess", "indemne": "indemn", "indépendamment": "indépend", "independance": "independ", "indépendance": "indépend", "indépendant": "indépend", "indépendante": "indépend", "indépendantes": "indépend", "indépendants": "indépend", "indes": "inde", "indian": "indian", "indiana": "indian", "indication": "indiqu", "indications": "indiqu", "indices": "indic", "indicible": "indicibl", "indicibles": "indicibl", "indien": "indien", "indienne": "indien", "indiens": "indien", "indifférence": "indifférent", "indifférent": "indifférent", "indifférents": "indifférent", "indigène": "indigen", "indigènes": "indigen", "indigna": "indign", "indignation": "indign", "indignations": "indign", "indigne": "indign", "indigné": "indign", "indignée": "indign", "indignement": "indign", "indigner": "indign", "indignes": "indign", "indignés": "indign", "indigo": "indigo", "indiqua": "indiqu", "indiquaient": "indiqu", "indiquait": "indiqu", "indiquant": "indiqu", "indique": "indiqu", "indiqué": "indiqu", "indiquée": "indiqu", "indiquent": "indiquent", "indiquer": "indiqu", "indiquera": "indiqu", "indiquerait": "indiqu", "indiqués": "indiqu", "indiquez": "indiqu", "indirect": "indirect", "indirecte": "indirect", "indirectement": "indirect", "indirectes": "indirect", "indiscret": "indiscret", "indiscrète": "indiscret", "indiscrètes": "indiscret", "indiscrétion": "indiscret", "indiscrétions": "indiscret", "indiscrets": "indiscret", "indispensable": "indispens", "indispensables": "indispens", "indisposé": "indispos", "indisposée": "indispos", "indisposition": "indisposit", "indistincte": "indistinct", "individu": "individu", "individuelle": "individuel", "individus": "individus", "indou": "indou", "indoue": "indou", "indoues": "indou", "indous": "indous", "indubitable": "indubit", "indue": "indu", "indulgence": "indulgent", "indulgent": "indulgent", "indulgente": "indulgent", "indulgents": "indulgent", "indus": "indus", "industrie": "industr", "industriel": "industriel", "industrielle": "industriel", "industriels": "industriel", "industrieux": "industri", "inébranlable": "inébranl", "inedit": "ined", "inédit": "ined", "ineffaçable": "ineffac", "inégal": "inégal", "inégalement": "inégal", "inégales": "inégal", "inélégantes": "inéleg", "inéprouvé": "inéprouv", "inepte": "inept", "ineptes": "inept", "inépuisable": "inépuis", "inerte": "inert", "inespéré": "inesper", "inévitablement": "inévit", "inévitables": "inévit", "inexactitude": "inexactitud", "inexécutable": "inexécut", "inexorable": "inexor", "inexpérimenté": "inexpériment", "inexplicable": "inexplic", "inexprimable": "inexprim", "inexprimables": "inexprim", "inextricable": "inextric", "infâme": "infâm", "infâmes": "infâm", "infamie": "infam", "infamies": "infam", "infanterie": "infanter", "infatigable": "infatig", "inférieur": "inférieur", "inférieure": "inférieur", "inférieures": "inférieur", "inférieurs": "inférieur", "infériorité": "inférior", "infernale": "infernal", "infidèle": "infidel", "infidélité": "infidel", "infini": "infin", "infinie": "infin", "infinies": "infin", "infiniment": "infin", "infinis": "infin", "infinité": "infin", "infirmerie": "infirmer", "infirmités": "infirm", "inflammation": "inflamm", "infléchit": "inflech", "infligé": "inflig", "infligée": "inflig", "infliger": "inflig", "influence": "influenc", "influencer": "influenc", "influent": "influent", "influents": "influent", "influer": "influ", "informa": "inform", "informait": "inform", "informations": "inform", "informée": "inform", "informes": "inform", "informés": "inform", "infortune": "infortun", "infortuné": "infortun", "infortunée": "infortun", "infortunes": "infortun", "infortunés": "infortun", "infraction": "infract", "infusion": "infus", "ingénieur": "ingénieur", "ingénieurs": "ingénieur", "ingénieuse": "ingéni", "ingénieusement": "ingéni", "ingénieuses": "ingéni", "ingénieux": "ingéni", "ingénu": "ingénu", "ingrat": "ingrat", "ingrate": "ingrat", "ingratitude": "ingratitud", "inhabileté": "inhabilet", "inhabitée": "inhabit", "inhalation": "inhal", "inhérent": "inhérent", "inhérente": "inhérent", "inhumaine": "inhumain", "inhumé": "inhum", "inintelligible": "inintelligibl", "iniques": "iniqu", "iniquité": "iniqu", "initiative": "initi", "initièrent": "initi", "injure": "injur", "injures": "injur", "injurié": "injuri", "injurieuse": "injuri", "injurieuses": "injuri", "injurieux": "injuri", "injuste": "injust", "injustement": "injust", "injustes": "injust", "injustice": "injustic", "injustices": "injustic", "inn": "inn", "inné": "inné", "innée": "inné", "innocemment": "innocent", "innocence": "innocent", "innocent": "innocent", "innocente": "innocent", "innocentes": "innocent", "innombrable": "innombr", "innombrables": "innombr", "innovation": "innov", "inoccupées": "inoccup", "inoculé": "inocul", "inoffensif": "inoffens", "inondaient": "inond", "inondait": "inond", "inondation": "inond", "inondé": "inond", "inondée": "inond", "inondées": "inond", "inonder": "inond", "inondèrent": "inond", "inondés": "inond", "inopinément": "inopin", "inopportunes": "inopportun", "inopportuns": "inopportun", "inouï": "inouï", "inouïs": "inouï", "inqualifiable": "inqualifi", "inquiet": "inquiet", "inquiéta": "inquiet", "inquiétait": "inquiet", "inquiétant": "inquiet", "inquiétantes": "inquiet", "inquiétants": "inquiet", "inquiète": "inquiet", "inquiéter": "inquiet", "inquiets": "inquiet", "inquiétude": "inquiétud", "inquiétudes": "inquiétud", "inquisiteurs": "inquisiteur", "inquisition": "inquisit", "insaisissable": "insaisiss", "inscription": "inscript", "inscriptions": "inscript", "inscrire": "inscrir", "inscrit": "inscrit", "inscrits": "inscrit", "inscrivit": "inscriv", "insectes": "insect", "insensé": "insens", "insensée": "insens", "insensés": "insens", "insensibilité": "insensibil", "insensible": "insensibl", "insensiblement": "insensibl", "insensibles": "insensibl", "inséparable": "insépar", "insérer": "inser", "insigne": "insign", "insignes": "insign", "insignifiance": "insignifi", "insignifiant": "insignifi", "insignifiante": "insignifi", "insignifiants": "insignifi", "insinuera": "insinu", "insipide": "insipid", "insipides": "insipid", "insista": "insist", "insistait": "insist", "insistance": "insist", "insistant": "insist", "insiste": "insist", "insisté": "insist", "insister": "insist", "insociable": "insoci", "insolemment": "insolent", "insolence": "insolent", "insolences": "insolent", "insolent": "insolent", "insolente": "insolent", "insolents": "insolent", "insolite": "insolit", "insolites": "insolit", "insouciance": "insouci", "insouciant": "insouci", "inspecteur": "inspecteur", "inspecteurs": "inspecteur", "inspection": "inspect", "inspira": "inspir", "inspiraient": "inspir", "inspirait": "inspir", "inspirant": "inspir", "inspiration": "inspir", "inspirations": "inspir", "inspire": "inspir", "inspiré": "inspir", "inspirée": "inspir", "inspirées": "inspir", "inspirent": "inspirent", "inspirer": "inspir", "inspirerait": "inspir", "inspirèrent": "inspir", "inspires": "inspir", "inspirés": "inspir", "inspirez": "inspir", "instable": "instabl", "installation": "install", "installé": "install", "installée": "install", "installer": "install", "installèrent": "install", "installés": "install", "instances": "instanc", "instant": "instant", "instantané": "instantan", "instantanément": "instantan", "instante": "instant", "instants": "instant", "instar": "instar", "instinct": "instinct", "instinctif": "instinct", "instinctivement": "instinct", "institution": "institu", "institutions": "institu", "instructif": "instruct", "instruction": "instruct", "instructions": "instruct", "instruire": "instruir", "instruisait": "instruis", "instruit": "instruit", "instrument": "instrument", "instruments": "instrument", "insu": "insu", "insuccès": "insucces", "insuffisant": "insuffis", "insuffisante": "insuffis", "insuffisantes": "insuffis", "insulta": "insult", "insultant": "insult", "insultante": "insult", "insulte": "insult", "insulté": "insult", "insulter": "insult", "insultes": "insult", "insulteur": "insulteur", "insupportable": "insupport", "insupportables": "insupport", "insurmontable": "insurmont", "insurmontables": "insurmont", "insurrection": "insurrect", "intact": "intact", "intègres": "integr", "intellectuel": "intellectuel", "intellectuelle": "intellectuel", "intelligence": "intelligent", "intelligences": "intelligent", "intelligent": "intelligent", "intelligente": "intelligent", "intelligenti": "intelligent", "intelligents": "intelligent", "intelligible": "intelligibl", "intelligibles": "intelligibl", "intempestive": "intempest", "intendant": "intend", "intense": "intens", "intenses": "intens", "intensité": "intens", "intention": "intent", "intentionné": "intention", "intentions": "intent", "interceptait": "intercept", "intercepté": "intercept", "interceptée": "intercept", "interceptées": "intercept", "intercepter": "intercept", "intercepterait": "intercept", "intercession": "intercess", "interdire": "interdir", "interdis": "interd", "interdit": "interd", "interdite": "interdit", "intéressa": "intéress", "intéressaient": "intéress", "intéressait": "intéress", "intéressant": "intéress", "intéressante": "intéress", "intéressantes": "intéress", "intéressants": "intéress", "intéresse": "intéress", "intéressé": "intéress", "intéressée": "intéress", "intéressent": "intéressent", "intéresser": "intéress", "intéresseront": "intéress", "intéressés": "intéress", "interet": "interet", "intérêt": "intérêt", "interets": "interet", "intérêts": "intérêt", "intérieur": "intérieur", "intérieure": "intérieur", "intérieurement": "intérieur", "intérieurs": "intérieur", "interjections": "interject", "interlocuteur": "interlocuteur", "interlocuteurs": "interlocuteur", "interlope": "interlop", "intermédiaire": "intermédiair", "interminable": "intermin", "interminables": "intermin", "international": "international", "interpellé": "interpel", "interpeller": "interpel", "interposé": "interpos", "interpréta": "interpret", "interprétation": "interpret", "interprétations": "interpret", "interprété": "interpret", "interprétée": "interpret", "interprètes": "interpret", "interrogatif": "interrog", "interrogation": "interrog", "interrogatoire": "interrogatoir", "interrogatoires": "interrogatoir", "interroge": "interrog", "interrogé": "interrog", "interrogea": "interrog", "interrogeant": "interrog", "interroger": "interrog", "interrogerait": "interrog", "interrogez": "interrog", "interrompait": "interromp", "interrompant": "interromp", "interrompirent": "interromp", "interrompit": "interromp", "interromprait": "interrompr", "interrompre": "interrompr", "interrompt": "interrompt", "interrompu": "interrompu", "interrompue": "interrompu", "interrompues": "interrompu", "interrompus": "interrompus", "interrupteur": "interrupteur", "interruption": "interrupt", "intervalle": "intervall", "intervalles": "intervall", "intervention": "intervent", "interviendrais": "interviendr", "intima": "intim", "intime": "intim", "intimement": "intim", "intimes": "intim", "intimida": "intimid", "intimidé": "intimid", "intimident": "intimident", "intimider": "intimid", "intimité": "intim", "intitulés": "intitul", "intolérable": "intoler", "intolérables": "intoler", "intonation": "inton", "intraitable": "intrait", "intrépide": "intrépid", "intrépidement": "intrépid", "intrépidité": "intrépid", "intrigant": "intrig", "intrigante": "intrig", "intrigants": "intrig", "intriguait": "intrigu", "intrigue": "intrigu", "intrigué": "intrigu", "intrigues": "intrigu", "introduction": "introduct", "introduire": "introduir", "introduis": "introduis", "introduisit": "introduis", "introduit": "introduit", "introduite": "introduit", "introduits": "introduit", "intrus": "intrus", "inusitée": "inusit", "inutile": "inutil", "inutilement": "inutil", "inutiles": "inutil", "inutilite": "inutilit", "inutilité": "inutil", "invalides": "invalid", "invariable": "invari", "invariablement": "invari", "invariables": "invari", "invasion": "invas", "inventaire": "inventair", "inventait": "invent", "inventant": "invent", "invente": "invent", "inventé": "invent", "inventée": "invent", "inventées": "invent", "inventer": "invent", "inventèrent": "invent", "inventeur": "inventeur", "inventif": "invent", "invention": "invent", "inventions": "invent", "inverse": "invers", "invincible": "invincibl", "invinciblement": "invincibl", "invisible": "invisibl", "invisibles": "invisibl", "invita": "invit", "invitait": "invit", "invitant": "invit", "invitation": "invit", "invitations": "invit", "invite": "invit", "invité": "invit", "inviter": "invit", "inviterai": "invit", "invités": "invit", "inviti": "invit", "invocation": "invoc", "involontaire": "involontair", "involontairement": "involontair", "invraisemblable": "invraisembl", "invraisemblables": "invraisembl", "invraisemblance": "invraisembl", "invulnérable": "invulner", "ioniques": "ioniqu", "iowa": "iow", "ira": "ira", "irai": "irai", "iraient": "iraient", "irais": "irais", "irait": "irait", "iras": "iras", "irascible": "irascibl", "irez": "irez", "iriez": "iri", "irlande": "irland", "ironie": "iron", "ironique": "iron", "irons": "iron", "iront": "iront", "irrégulière": "irréguli", "irrégulièrement": "irréguli", "irréguliers": "irréguli", "irrémédiable": "irrémédi", "irrémissiblement": "irrémissibl", "irréparable": "irrépar", "irréparablement": "irrépar", "irréprochable": "irréproch", "irréprochables": "irréproch", "irrésistible": "irrésistibl", "irrésistiblement": "irrésistibl", "irrésistibles": "irrésistibl", "irrésolution": "irrésolu", "irrésolutions": "irrésolu", "irresponsable": "irrespons", "irréussites": "irréussit", "irrévocablement": "irrévoc", "irriguaient": "irrigu", "irrita": "irrit", "irritable": "irrit", "irritaient": "irrit", "irritait": "irrit", "irritant": "irrit", "irritation": "irrit", "irrite": "irrit", "irrité": "irrit", "irritée": "irrit", "irriter": "irrit", "irritèrent": "irrit", "irruption": "irrupt", "is": "is", "island": "island", "isole": "isol", "isolé": "isol", "isolée": "isol", "isolement": "isol", "isolés": "isol", "isota": "isot", "israël": "israël", "issu": "issu", "issue": "issu", "issues": "issu", "it": "it", "ita": "ita", "italie": "ital", "italien": "italien", "italienne": "italien", "italiennes": "italien", "italiens": "italien", "itinéraire": "itinérair", "itou": "itou", "its": "it", "itself": "itself", "iv": "iv", "ivoire": "ivoir", "ivre": "ivre", "ivres": "ivre", "ivresse": "ivress", "ivrogne": "ivrogn", "ivrognes": "ivrogn", "ix": "ix", "j": "j", "jacobin": "jacobin", "jacobine": "jacobin", "jacobinisme": "jacobin", "jacobins": "jacobin", "jacopo": "jacopo", "jacques": "jacqu", "jadis": "jad", "jaggernaut": "jaggernaut", "jailli": "jaill", "jaillissaient": "jaill", "jais": "jais", "jalousait": "jalous", "jalouse": "jalous", "jalousé": "jalous", "jalouses": "jalous", "jalousie": "jalous", "jalousies": "jalous", "jaloux": "jaloux", "jamais": "jam", "jambe": "jamb", "jambes": "jamb", "james": "jam", "jansénisme": "jansen", "janséniste": "jansen", "jansénistes": "jansen", "jante": "jant", "janvier": "janvi", "japon": "japon", "japonais": "japon", "japonaise": "japonais", "japonaisé": "japonais", "japonaises": "japonais", "jaquette": "jaquet", "jardin": "jardin", "jardinage": "jardinag", "jardinier": "jardini", "jardins": "jardin", "jarnac": "jarnac", "jarrets": "jarret", "jasant": "jas", "jasent": "jasent", "jaser": "jas", "jasmin": "jasmin", "jaugeant": "jaug", "jaunâtres": "jaunâtr", "jaune": "jaun", "jaunes": "jaun", "jaunets": "jaunet", "jaunies": "jaun", "je": "je", "jean": "jean", "jeannes": "jeann", "jejeebhoy": "jejeebhoy", "jejeeh": "jejeeh", "jenrel": "jenrel", "jérémiades": "jérémiad", "jérôme": "jérôm", "jersey": "jersey", "jérusalem": "jérusalem", "jest": "jest", "jésuite": "jésuit", "jésuites": "jésuit", "jésuitique": "jésuit", "jésuitisme": "jésuit", "jésus": "jésus", "jeta": "jet", "jetaient": "jet", "jetait": "jet", "jetant": "jet", "jetât": "jet", "jeté": "jet", "jetée": "jet", "jetées": "jet", "jeter": "jet", "jetèrent": "jet", "jetés": "jet", "jetez": "jet", "jetons": "jeton", "jette": "jet", "jettent": "jettent", "jetterais": "jet", "jetterait": "jet", "jetterez": "jet", "jeu": "jeu", "jeudi": "jeud", "jeudis": "jeud", "jeun": "jeun", "jeûnant": "jeûn", "jeune": "jeun", "jeûne": "jeûn", "jeunes": "jeun", "jeûnes": "jeûn", "jeunesse": "jeuness", "jeux": "jeux", "joe": "jo", "john": "john", "joie": "joi", "joies": "joi", "joignait": "joign", "joignant": "joign", "joignit": "joign", "joindre": "joindr", "joint": "joint", "jointe": "joint", "jointes": "joint", "joli": "jol", "jolie": "jol", "jolies": "jol", "joliment": "jol", "jolis": "jol", "jonc": "jonc", "jonché": "jonch", "jonglaient": "jongl", "jonglait": "jongl", "jonglerie": "jongler", "jongleurs": "jongleur", "jonques": "jonqu", "jonquille": "jonquill", "joseph": "joseph", "joua": "jou", "jouaient": "jou", "jouait": "jou", "jouant": "jou", "jouât": "jou", "joue": "jou", "joué": "jou", "jouée": "jou", "jouer": "jou", "jouera": "jou", "jouerai": "jou", "joueraient": "jou", "jouerais": "jou", "jouerait": "jou", "joues": "jou", "joueur": "joueur", "joueurs": "joueur", "jouez": "jou", "joui": "jou", "jouir": "jou", "jouira": "jou", "jouirait": "jou", "jouiras": "jou", "jouis": "jou", "jouissaient": "jou", "jouissait": "jou", "jouissance": "jouiss", "jouissances": "jouiss", "jouissant": "jou", "jouisse": "jou", "jouissent": "jou", "jouissons": "jou", "jouit": "jou", "joujoux": "joujoux", "joumate": "joumat", "jouons": "jouon", "jour": "jour", "jourdain": "jourdain", "jourdan": "jourdan", "journal": "journal", "journalière": "journali", "journalistes": "journal", "journaux": "journal", "journée": "journ", "journées": "journ", "journellement": "journel", "jours": "jour", "joyeuse": "joyeux", "joyeusement": "joyeux", "joyeux": "joyeux", "juan": "juan", "jucha": "juch", "juché": "juch", "judiciaires": "judiciair", "judicieux": "judici", "judith": "judith", "juge": "jug", "jugé": "jug", "jugea": "jug", "jugeait": "jug", "jugeant": "jug", "jugement": "jug", "jugements": "jug", "jugent": "jugent", "juger": "jug", "jugera": "jug", "jugerai": "jug", "jugeront": "jug", "juges": "jug", "jugés": "jug", "jugez": "jug", "juif": "juif", "juifs": "juif", "juillet": "juillet", "juin": "juin", "jules": "jul", "julesburgh": "julesburgh", "julia": "juli", "julien": "julien", "jumna": "jumn", "junction": "junction", "jungles": "jungl", "junior": "junior", "jupon": "jupon", "jura": "jur", "juraient": "jur", "jurait": "jur", "jurant": "jur", "jure": "jur", "juré": "jur", "jurée": "jur", "jurement": "jur", "jurements": "jur", "jurer": "jur", "jurerai": "jur", "jurerais": "jur", "jures": "jur", "jurés": "jur", "jurez": "jur", "jurisconsulte": "jurisconsult", "jurisconsultes": "jurisconsult", "juron": "juron", "jurons": "juron", "jury": "jury", "jusqu": "jusqu", "jusque": "jusqu", "jusques": "jusqu", "just": "just", "juste": "just", "justement": "just", "justes": "just", "justesse": "justess", "justice": "justic", "justifia": "justifi", "justifiait": "justifi", "justificatif": "justif", "justification": "justif", "justifications": "justif", "justifie": "justif", "justifié": "justifi", "justifiée": "justifi", "justifier": "justifi", "kâli": "kâl", "kalisky": "kalisky", "kallenger": "kalleng", "kama": "kam", "kamerfield": "kamerfield", "kandallah": "kandallah", "kanhérie": "kanher", "kansas": "kans", "kant": "kant", "kauffmann": "kauffmann", "kearney": "kearney", "kehl": "kehl", "kent": "kent", "khajours": "khajour", "khandeish": "khandeish", "kholby": "kholby", "kien": "kien", "kilomètres": "kilometr", "kind": "kind", "kiouni": "kioun", "kirimon": "kirimon", "kirkland": "kirkland", "kléber": "kleb", "kong": "kong", "korasoff": "korasoff", "l": "l", "la": "la", "là": "là", "laborieusement": "labori", "laborieux": "labori", "labourée": "labour", "lac": "lac", "lâcha": "lâch", "lachaise": "lachais", "lâchait": "lâch", "lâche": "lâch", "lâchement": "lâch", "lâcher": "lâch", "lâches": "lâch", "lâcheté": "lâchet", "lâchez": "lâch", "laconiquement": "lacon", "lacs": "lac", "ladislas": "ladisl", "ladri": "ladr", "lafayette": "lafayet", "lago": "lago", "laïc": "laïc", "laïcs": "laïc", "laid": "laid", "laide": "laid", "laides": "laid", "laideur": "laideur", "laideurs": "laideur", "laine": "lain", "laïque": "laïqu", "laissa": "laiss", "laissaient": "laiss", "laissais": "laiss", "laissait": "laiss", "laissant": "laiss", "laissât": "laiss", "laisse": "laiss", "laissé": "laiss", "laissée": "laiss", "laissées": "laiss", "laissent": "laissent", "laisser": "laiss", "laissera": "laiss", "laisserai": "laiss", "laisserais": "laiss", "laisserait": "laiss", "laissèrent": "laiss", "laisserez": "laiss", "laissés": "laiss", "laissez": "laiss", "laissions": "laission", "laissons": "laisson", "lait": "lait", "laiterie": "laiter", "laiton": "laiton", "laitue": "laitu", "lake": "lak", "lambeau": "lambeau", "lambeaux": "lambeau", "lambris": "lambr", "lambrissée": "lambriss", "lame": "lam", "lamée": "lam", "lamentable": "lament", "lamentables": "lament", "lames": "lam", "lampe": "lamp", "lampes": "lamp", "lança": "lanc", "lançaient": "lanc", "lançait": "lanc", "lançant": "lanc", "lance": "lanc", "lancé": "lanc", "lancée": "lanc", "lancer": "lanc", "lancés": "lanc", "landau": "landau", "landes": "land", "landriani": "landrian", "langage": "langag", "lange": "lang", "langue": "langu", "languedoc": "languedoc", "langues": "langu", "langueur": "langueur", "languir": "languir", "languis": "languis", "languissait": "languiss", "languissante": "languiss", "lanterne": "lantern", "lanternes": "lantern", "lapidaire": "lapidair", "lapin": "lapin", "laps": "lap", "laquais": "laqu", "laque": "laqu", "laquelle": "laquel", "laramie": "laram", "lard": "lard", "larga": "larg", "large": "larg", "largement": "larg", "larges": "larg", "largeur": "largeur", "larguait": "largu", "largue": "largu", "larme": "larm", "larmes": "larm", "las": "las", "lascia": "lasci", "lassa": "lass", "lasse": "lass", "lasser": "lass", "lasseront": "lass", "last": "last", "lataniers": "latani", "latérale": "latéral", "latérales": "latéral", "latin": "latin", "latinam": "latinam", "latine": "latin", "latines": "latin", "latiniste": "latin", "latinité": "latin", "latins": "latin", "laudanum": "laudanum", "laughter": "laught", "lauréat": "lauréat", "laurent": "laurent", "laurier": "lauri", "lauriers": "lauri", "lausanne": "lausann", "lavalette": "lavalet", "lave": "lav", "laveno": "laveno", "laver": "lav", "laye": "lay", "le": "le", "least": "least", "lecco": "lecco", "leçon": "leçon", "leçons": "leçon", "lecteur": "lecteur", "lecteurs": "lecteur", "lectrice": "lectric", "lecture": "lectur", "ledit": "led", "left": "left", "légale": "légal", "légalement": "légal", "légalité": "légal", "légation": "légat", "légendaire": "légendair", "légendes": "légend", "leger": "leg", "léger": "leg", "légère": "léger", "légèrement": "léger", "légères": "léger", "légèreté": "légèret", "légers": "léger", "légion": "légion", "législateur": "législ", "législateurs": "législ", "législature": "législatur", "legitime": "legitim", "légitime": "légitim", "légitimes": "légitim", "légitimité": "légitim", "legs": "leg", "légua": "légu", "lègue": "lègu", "légué": "légu", "leipsick": "leipsick", "lek": "lek", "lélio": "lélio", "lendemain": "lendemain", "lent": "lent", "lente": "lent", "lentement": "lent", "lentes": "lent", "lenteur": "lenteur", "lenteurs": "lenteur", "lents": "lent", "leo": "leo", "léonard": "léonard", "léontine": "léontin", "léotard": "léotard", "lépidoptères": "lépidopter", "lequel": "lequel", "leroy": "leroy", "les": "le", "lés": "lé", "lescaut": "lescaut", "lesdits": "lesdit", "lèse": "les", "lésineries": "lésiner", "lesquelles": "lesquel", "lesquels": "lesquel", "less": "less", "lesseps": "lessep", "lest": "lest", "leste": "lest", "lestement": "lest", "lester": "lest", "léthargique": "létharg", "lettre": "lettr", "lettres": "lettr", "leur": "leur", "leurs": "leur", "leva": "lev", "levait": "lev", "levant": "lev", "lève": "lev", "levé": "lev", "levée": "lev", "levées": "lev", "lèvent": "lèvent", "lever": "lev", "lèvera": "lev", "levèrent": "lev", "levez": "lev", "levier": "levi", "leviers": "levi", "levis": "lev", "lévite": "lévit", "lèvre": "levr", "lèvres": "levr", "lia": "li", "liaison": "liaison", "liaisons": "liaison", "liant": "li", "liard": "liard", "liasse": "li", "liasses": "li", "liât": "li", "libellé": "libel", "libellée": "libel", "libéral": "libéral", "libérales": "libéral", "libéralisme": "libéral", "libérateur": "liber", "libéraux": "libéral", "liberté": "libert", "libertin": "libertin", "libertinage": "libertinag", "libraire": "librair", "libraires": "librair", "libre": "libr", "librement": "libr", "libres": "libr", "lichtenberg": "lichtenberg", "lie": "li", "lié": "li", "liée": "li", "liées": "li", "liège": "lieg", "lien": "lien", "liens": "lien", "lier": "li", "lierre": "lierr", "liés": "li", "lieu": "lieu", "lieue": "lieu", "lieues": "lieu", "lieutenance": "lieuten", "lieutenant": "lieuten", "lieutenants": "lieuten", "lieux": "lieux", "liéven": "liéven", "lièvre": "lievr", "lièvres": "lievr", "light": "light", "ligne": "lign", "lignes": "lign", "ligny": "ligny", "ligorio": "ligorio", "ligue": "ligu", "ligués": "ligu", "lilliputiens": "lilliputien", "limercati": "limercat", "limite": "limit", "limites": "limit", "limpide": "limpid", "limpides": "limpid", "lincoln": "lincoln", "line": "lin", "linge": "ling", "lingère": "linger", "lingot": "lingot", "linguam": "linguam", "lion": "lion", "lip": "lip", "liqueur": "liqueur", "liqueurs": "liqueur", "liquide": "liquid", "liquidée": "liquid", "lira": "lir", "lirai": "lir", "liras": "lir", "lire": "lir", "lis": "lis", "lisaient": "lis", "lisait": "lis", "lisant": "lis", "lisard": "lisard", "lisent": "lisent", "lisez": "lis", "lisible": "lisibl", "lisière": "lisi", "lisse": "liss", "lisses": "liss", "liste": "list", "lit": "lit", "litanies": "litan", "lithographiée": "lithographi", "lithographies": "lithograph", "litière": "liti", "litières": "liti", "lits": "lit", "littéraire": "littérair", "littéraires": "littérair", "littéralement": "littéral", "littérature": "littératur", "little": "littl", "live": "liv", "liverpool": "liverpool", "liveru": "liveru", "livra": "livr", "livraient": "livr", "livrais": "livr", "livrait": "livr", "livre": "livr", "livré": "livr", "livrée": "livr", "livrées": "livr", "livrer": "livr", "livres": "livr", "livrés": "livr", "livret": "livret", "ll": "ll", "locale": "local", "locarno": "locarno", "locataire": "locatair", "location": "locat", "loch": "loch", "locke": "lock", "locomotion": "locomot", "locomotive": "locomot", "locomotives": "locomot", "lodge": "lodg", "lodi": "lod", "loge": "log", "logé": "log", "logeable": "logeabl", "logement": "log", "logements": "log", "loger": "log", "loges": "log", "logés": "log", "logions": "logion", "logique": "logiqu", "logiques": "logiqu", "logis": "log", "loi": "loi", "loin": "loin", "lointain": "lointain", "lointaine": "lointain", "lointaines": "lointain", "lointains": "lointain", "lois": "lois", "loisir": "lois", "lombarde": "lombard", "lombardie": "lombard", "lombardo": "lombardo", "lombards": "lombard", "lonato": "lonato", "london": "london", "londonner": "london", "londres": "londr", "long": "long", "longanimité": "longanim", "longe": "long", "longeant": "long", "longerons": "long", "longévité": "longev", "longs": "long", "longsferry": "longsferry", "longtemps": "longtemp", "longue": "longu", "longuement": "longu", "longues": "longu", "longueur": "longueur", "longueville": "longuevill", "lope": "lop", "loquerisne": "loquerisn", "loques": "loqu", "loquet": "loquet", "lord": "lord", "lords": "lord", "lorgnette": "lorgnet", "lorgnettes": "lorgnet", "lors": "lor", "lorsqu": "lorsqu", "lorsque": "lorsqu", "lot": "lot", "loterie": "loter", "lotus": "lotus", "loua": "lou", "louables": "louabl", "louage": "louag", "louaient": "lou", "louange": "louang", "louanges": "louang", "louant": "lou", "louche": "louch", "loue": "lou", "loué": "lou", "louée": "lou", "louées": "lou", "louer": "lou", "louera": "lou", "loueras": "lou", "louèrent": "lou", "loueur": "loueur", "loueuse": "loueux", "louez": "lou", "louiez": "lou", "louis": "lou", "louise": "louis", "louons": "louon", "loup": "loup", "loups": "loup", "lourd": "lourd", "lourde": "lourd", "lourdement": "lourd", "lourdes": "lourd", "lourdeur": "lourdeur", "loutre": "loutr", "louvre": "louvr", "love": "lov", "lowe": "low", "loyal": "loyal", "loyalement": "loyal", "loyauté": "loyaut", "loyaux": "loyal", "lu": "lu", "lucides": "lucid", "lucrative": "lucrat", "ludovic": "ludovic", "lue": "lu", "lues": "lu", "lueur": "lueur", "lueurs": "lueur", "lugano": "lugano", "lugubre": "lugubr", "lugubrement": "lugubr", "lugubres": "lugubr", "lui": "lui", "luisante": "luis", "lumière": "lumi", "lumières": "lumi", "lumineuse": "lumin", "luna": "lun", "lunch": "lunch", "lundi": "lund", "lune": "lun", "lunette": "lunet", "luoghi": "luogh", "lustre": "lustr", "lustres": "lustr", "lut": "lut", "luther": "luth", "luttaient": "lutt", "luttait": "lutt", "lutte": "lutt", "luttent": "luttent", "lutter": "lutt", "luttera": "lutt", "luttes": "lutt", "luxe": "lux", "luxée": "lux", "luxembourg": "luxembourg", "luxuriantes": "luxuri", "luz": "luz", "lycéens": "lycéen", "lyon": "lyon", "lyre": "lyr", "m": "m", "ma": "ma", "mac": "mac", "macadamisées": "macadamis", "macao": "macao", "mâchais": "mâch", "mâchait": "mâch", "machiavel": "machiavel", "machiavélisme": "machiavel", "machiavelli": "machiavel", "machinalement": "machinal", "machine": "machin", "machines": "machin", "mackintosh": "mackintosh", "macon": "macon", "maçon": "maçon", "maçonnerie": "maçonner", "maçons": "maçon", "madame": "madam", "made": "mad", "madeleine": "madelein", "mademoiselle": "mademoisel", "madone": "madon", "madras": "madr", "madriers": "madri", "maestro": "maestro", "magalon": "magalon", "magasin": "magasin", "magasins": "magasin", "maggiore": "maggior", "magicien": "magicien", "magie": "mag", "magique": "magiqu", "magistral": "magistral", "magistrat": "magistrat", "magistrats": "magistrat", "magistrature": "magistratur", "magnanime": "magnanim", "magnificence": "magnificent", "magnifique": "magnif", "magnifiquement": "magnif", "magnifiques": "magnif", "magot": "magot", "mahomet": "mahomet", "mahout": "mahout", "mai": "mai", "maigre": "maigr", "maigres": "maigr", "maigreur": "maigreur", "maigri": "maigr", "maigrie": "maigr", "mail": "mail", "mailles": "maill", "main": "main", "mains": "main", "maintenaient": "mainten", "maintenait": "mainten", "maintenant": "mainten", "maintenir": "mainten", "maintenue": "maintenu", "maintien": "maintien", "maintint": "maintint", "maire": "mair", "maires": "mair", "mairie": "mair", "mais": "mais", "maïs": "maï", "maison": "maison", "maisons": "maison", "maistre": "maistr", "maitre": "maitr", "maître": "maîtr", "maîtres": "maîtr", "maîtresse": "maîtress", "maîtresses": "maîtress", "majesté": "majest", "majestueuse": "majestu", "majestueusement": "majestu", "majestueux": "majestu", "majeur": "majeur", "majeure": "majeur", "major": "major", "majordome": "majordom", "majordomes": "majordom", "majorité": "major", "majorités": "major", "mal": "mal", "malacca": "malacc", "malade": "malad", "malades": "malad", "maladie": "malad", "maladies": "malad", "maladive": "malad", "maladresse": "maladress", "maladresses": "maladress", "maladroit": "maladroit", "maladroite": "maladroit", "maladroitement": "maladroit", "malaga": "malag", "malagrida": "malagrid", "malais": "mal", "malaise": "malais", "malaisie": "malais", "maldonne": "maldon", "mâle": "mâl", "malebar": "malebar", "malédiction": "malédict", "malencontreuse": "malencontr", "malencontreusement": "malencontr", "malencontreux": "malencontr", "malentendu": "malentendu", "mâles": "mâl", "malgré": "malgr", "malhabile": "malhabil", "malheur": "malheur", "malheureuse": "malheur", "malheureusement": "malheur", "malheureuses": "malheur", "malheureux": "malheur", "malheurs": "malheur", "malhonnête": "malhonnêt", "malhonnêteté": "malhonnêtet", "malice": "malic", "malicieux": "malici", "maligne": "malign", "malignité": "malign", "malin": "malin", "mall": "mall", "malle": "mall", "malles": "mall", "malligaum": "malligaum", "malmaison": "malmaison", "malmener": "malmen", "maltraite": "maltrait", "maltraité": "maltrait", "maltraitées": "maltrait", "maltraiter": "maltrait", "maman": "maman", "mameluks": "mameluk", "mammacia": "mammaci", "manant": "man", "mancar": "mancar", "manche": "manch", "manches": "manch", "manchester": "manchest", "manda": "mand", "mandarin": "mandarin", "mandat": "mandat", "mandé": "mand", "mandeb": "mandeb", "mandement": "mand", "mander": "mand", "mandiboy": "mandiboy", "manège": "maneg", "mânes": "mân", "manette": "manet", "mange": "mang", "mangé": "mang", "mangea": "mang", "mangeaient": "mang", "mangeais": "mang", "mangeait": "mang", "mangeant": "mang", "mangent": "mangent", "mangeoire": "mangeoir", "manger": "mang", "mangerai": "mang", "mangerait": "mang", "mangèrent": "mang", "mangeur": "mangeur", "mangoustes": "mangoust", "maniable": "maniabl", "maniait": "mani", "maniant": "mani", "maniaque": "maniaqu", "manie": "man", "manié": "mani", "manier": "mani", "manière": "mani", "manières": "mani", "manifestation": "manifest", "manifesté": "manifest", "manifester": "manifest", "mannequins": "mannequin", "manner": "mann", "manoeuvraient": "manoeuvr", "manoeuvrant": "manoeuvr", "manoeuvre": "manoeuvr", "manoeuvré": "manoeuvr", "manoeuvrer": "manoeuvr", "manoeuvres": "manoeuvr", "manoeuvrés": "manoeuvr", "manon": "manon", "manouvriers": "manouvri", "manqua": "manqu", "manquaient": "manqu", "manquais": "manqu", "manquait": "manqu", "manquant": "manqu", "manquât": "manqu", "manque": "manqu", "manqué": "manqu", "manquée": "manqu", "manquent": "manquent", "manquer": "manqu", "manquera": "manqu", "manquerai": "manqu", "manqueraient": "manqu", "manquerais": "manqu", "manquerait": "manqu", "manquèrent": "manqu", "manquerez": "manqu", "manqueront": "manqu", "manques": "manqu", "manquez": "manqu", "manquons": "manquon", "mansarde": "mansard", "manteau": "manteau", "manteaux": "manteau", "mantoue": "mantou", "manuel": "manuel", "manufacture": "manufactur", "manufactures": "manufactur", "manufacturières": "manufacturi", "manufacturiers": "manufacturi", "manuscrit": "manuscr", "manuscrites": "manuscrit", "manuscrits": "manuscrit", "maquignon": "maquignon", "marais": "mar", "marâtre": "marâtr", "marbre": "marbr", "marbres": "marbr", "marcha": "march", "marchaient": "march", "marchait": "march", "marchand": "marchand", "marchande": "marchand", "marchandise": "marchandis", "marchandises": "marchandis", "marchands": "marchand", "marchant": "march", "marche": "march", "marché": "march", "marchent": "marchent", "marchepied": "marchepied", "marchepieds": "marchepied", "marcher": "march", "marcherez": "march", "marcherions": "march", "marcherons": "march", "marches": "march", "marchés": "march", "marchesi": "marches", "marchesine": "marchesin", "marchesino": "marchesino", "marcheur": "marcheur", "marcheurs": "marcheur", "marchez": "march", "marchiez": "march", "marchions": "marchion", "marchons": "marchon", "mardi": "mard", "mare": "mar", "marécages": "marécag", "marécageuse": "marécag", "maréchal": "maréchal", "maréchale": "maréchal", "maréchaux": "maréchal", "marée": "mar", "marengo": "marengo", "marge": "marg", "marges": "marg", "margot": "margot", "marguerite": "marguerit", "marguillier": "marguilli", "mari": "mar", "maria": "mari", "mariage": "mariag", "mariages": "mariag", "mariait": "mari", "marie": "mar", "marié": "mari", "mariée": "mari", "mariées": "mari", "marier": "mari", "mariera": "mari", "marietta": "mariet", "mariettina": "mariettin", "marin": "marin", "marini": "marin", "mariniers": "marini", "marino": "marino", "marins": "marin", "maris": "mar", "maritime": "maritim", "maritimes": "maritim", "markésine": "markésin", "market": "market", "marmande": "marmand", "marmots": "marmot", "maroquin": "maroquin", "marote": "marot", "marotte": "marott", "marqua": "marqu", "marquaient": "marqu", "marquait": "marqu", "marquant": "marqu", "marque": "marqu", "marqué": "marqu", "marquée": "marqu", "marquées": "marqu", "marquent": "marquent", "marquer": "marqu", "marquerai": "marqu", "marquèrent": "marqu", "marques": "marqu", "marqués": "marqu", "marqueterie": "marqueter", "marquinot": "marquinot", "marquis": "marqu", "marquise": "marquis", "marronnier": "marronni", "marronniers": "marronni", "marrons": "marron", "mars": "mar", "marseille": "marseil", "marteau": "marteau", "marteaux": "marteau", "martial": "martial", "martiale": "martial", "martin": "martin", "martyr": "martyr", "martyre": "martyr", "mary": "mary", "mascarilles": "mascarill", "masculin": "masculin", "masculine": "masculin", "maslon": "maslon", "masquait": "masqu", "masque": "masqu", "masqué": "masqu", "masquée": "masqu", "masquer": "masqu", "masques": "masqu", "masqués": "masqu", "massacre": "massacr", "massacrer": "massacr", "massacrés": "massacr", "massant": "mass", "masse": "mass", "masses": "mass", "massif": "massif", "massifs": "massif", "massillon": "massillon", "massinger": "massing", "mat": "mat", "mât": "mât", "matches": "match", "matelas": "matel", "matelots": "matelot", "matériel": "matériel", "matérielle": "matériel", "matériellement": "matériel", "matérielles": "matériel", "matériels": "matériel", "maternel": "maternel", "mathématique": "mathémat", "mathématiquement": "mathémat", "mathématiques": "mathémat", "mathilde": "mathild", "matiere": "matier", "matière": "mati", "matieres": "matier", "matières": "mati", "matin": "matin", "matinale": "matinal", "matinée": "matin", "matins": "matin", "matrimoniale": "matrimonial", "matrimonio": "matrimonio", "mâts": "mât", "mâture": "mâtur", "mâtures": "mâtur", "maubeuge": "maubeug", "maudire": "maudir", "maudis": "maud", "maudissait": "maud", "maudissant": "maud", "maudissez": "maud", "maudit": "maud", "maudite": "maudit", "maudits": "maudit", "maugiron": "maugiron", "maugirons": "maug", "maugréait": "maugré", "maury": "maury", "mausolée": "mausol", "maussade": "maussad", "mauvais": "mauv", "mauvaise": "mauvais", "mauvaises": "mauvais", "mauve": "mauv", "maux": "maux", "maxime": "maxim", "maximes": "maxim", "maximum": "maximum", "mayence": "mayenc", "me": "me", "meako": "meako", "mean": "mean", "mécanicien": "mécanicien", "mécanique": "mécan", "mécaniquement": "mécan", "mécanisme": "mécan", "mécène": "mécen", "méchanceté": "méchancet", "méchancetés": "méchancet", "méchant": "mech", "méchante": "mech", "méchantes": "mech", "méchants": "mech", "mèche": "mech", "mécomptes": "mécompt", "méconnaissez": "méconnaiss", "mécontent": "mécontent", "mécontente": "mécontent", "mécontentement": "mécontent", "mécontents": "mécontent", "médaille": "médaill", "médecin": "médecin", "médecine": "médecin", "médecins": "médecin", "médée": "med", "medicine": "medicin", "médicis": "médic", "médiocre": "médiocr", "médiocrement": "médiocr", "médiocres": "médiocr", "médiocrité": "médiocr", "médire": "médir", "médisance": "médis", "médît": "med", "médita": "médit", "méditait": "médit", "méditation": "médit", "méditations": "médit", "méditée": "médit", "méditer": "médit", "meeting": "meeting", "méfiance": "méfianc", "méfiant": "méfi", "méfie": "mef", "méfier": "méfi", "meilleur": "meilleur", "meilleure": "meilleur", "meilleures": "meilleur", "meilleurs": "meilleur", "mêla": "mêl", "mêlaient": "mêl", "mêlait": "mêl", "mélancolie": "mélancol", "mélancolique": "mélancol", "mélancoliquement": "mélancol", "mélange": "mélang", "mélangé": "mélang", "mélangée": "mélang", "mélangées": "mélang", "mêlant": "mêl", "mêle": "mêl", "mêlé": "mêl", "mêlée": "mêl", "mêlent": "mêlent", "mêler": "mêl", "mêlés": "mêl", "mêlez": "mêl", "mélodie": "mélod", "mélodieuse": "mélodi", "mélodrame": "mélodram", "melzi": "melz", "membre": "membr", "membres": "membr", "membrure": "membrur", "meme": "mem", "même": "mêm", "mêmes": "mêm", "mémoire": "mémoir", "mémoires": "mémoir", "mémorial": "mémorial", "menaça": "menac", "menaçaient": "menac", "menaçais": "menac", "menaçait": "menac", "menaçant": "menac", "menace": "menac", "menacé": "menac", "menacée": "menac", "menacer": "menac", "menaces": "menac", "ménage": "ménag", "ménagé": "ménag", "ménagement": "ménag", "ménagements": "ménag", "ménager": "ménag", "ménagera": "ménag", "ménages": "ménag", "ménagez": "ménag", "menagio": "menagio", "menait": "men", "mendiant": "mendi", "mendiante": "mendi", "mendicité": "mendiqu", "mène": "men", "mené": "men", "menée": "men", "menées": "men", "mener": "men", "mènera": "men", "mènerai": "men", "mènerais": "men", "mènerait": "men", "menèrent": "men", "meneurs": "meneur", "menez": "men", "menottes": "menott", "mens": "men", "mensonge": "mensong", "mensonges": "mensong", "mentait": "ment", "mentales": "mental", "mente": "ment", "menteurs": "menteur", "menteuse": "menteux", "mentez": "ment", "menti": "ment", "mention": "mention", "mentionne": "mention", "mentionner": "mention", "mentir": "ment", "mentirais": "ment", "menton": "menton", "menues": "menu", "menuiserie": "menuiser", "menuisier": "menuisi", "menuisiers": "menuisi", "méphistophélès": "méphistophéles", "méprenait": "mépren", "méprendre": "méprendr", "mépris": "mepr", "méprisa": "mépris", "méprisable": "mépris", "méprisais": "mépris", "méprisait": "mépris", "méprisant": "mépris", "méprise": "mépris", "méprisé": "mépris", "méprisée": "mépris", "méprisent": "méprisent", "mépriser": "mépris", "méprisera": "mépris", "mépriserai": "mépris", "mépriseraient": "mépris", "mépriserait": "mépris", "méprisez": "mépris", "mer": "mer", "mercadante": "mercad", "mercantile": "mercantil", "merci": "merc", "mercredi": "mercred", "mercure": "mercur", "mère": "mer", "méridien": "méridien", "méridiens": "méridien", "méridional": "méridional", "méridionale": "méridional", "méridionaux": "méridional", "mérimée": "mérim", "méritait": "mérit", "méritant": "mérit", "mérite": "mérit", "mérité": "mérit", "méritée": "mérit", "méritées": "mérit", "mériter": "mérit", "méritera": "mérit", "mériterais": "mérit", "méritèrent": "mérit", "mérites": "mérit", "mérités": "mérit", "méritez": "mérit", "méritoire": "méritoir", "mers": "mer", "merveille": "merveil", "merveilles": "merveil", "merveilleuse": "merveil", "merveilleusement": "merveil", "merveilleuses": "merveil", "merveilleux": "merveil", "méry": "méry", "mes": "me", "mésalliance": "mésalli", "mésaventure": "mésaventur", "mesi": "mes", "mesquin": "mesquin", "mesquine": "mesquin", "mesquins": "mesquin", "message": "messag", "messager": "messag", "messageries": "messager", "messe": "mess", "messes": "mess", "messieurs": "messieur", "messire": "messir", "mesure": "mesur", "mesuré": "mesur", "mesurée": "mesur", "mesurées": "mesur", "mesurer": "mesur", "mesures": "mesur", "mesurés": "mesur", "met": "met", "métal": "métal", "métalliques": "métall", "métaphysiques": "métaphys", "météorologiste": "météorolog", "méthodes": "méthod", "méthodique": "méthod", "méthodiquement": "méthod", "méthodisme": "méthod", "méticuleuse": "méticul", "méticuleux": "méticul", "métier": "méti", "métiers": "méti", "mètres": "metr", "métropole": "métropol", "métropolitaine": "métropolitain", "mets": "met", "mettaient": "met", "mettais": "met", "mettait": "met", "mettant": "met", "mette": "met", "mettent": "mettent", "mettez": "met", "mettions": "mettion", "mettons": "metton", "mettra": "mettr", "mettrai": "mettr", "mettraient": "mettr", "mettrais": "mettr", "mettrait": "mettr", "mettras": "mettr", "mettre": "mettr", "mettrez": "mettr", "mettriez": "mettr", "mettrons": "mettron", "mettront": "mettront", "metz": "metz", "meuble": "meubl", "meublée": "meubl", "meublées": "meubl", "meubler": "meubl", "meubles": "meubl", "meudon": "meudon", "meunier": "meuni", "meure": "meur", "meures": "meur", "meurs": "meur", "meurt": "meurt", "meurtre": "meurtr", "meurtres": "meurtr", "meurtrier": "meurtri", "meurtrière": "meurtri", "meurtris": "meurtr", "meurtrissure": "meurtrissur", "meus": "meus", "mexicain": "mexicain", "mexique": "mexiqu", "mezzo": "mezzo", "mi": "mi", "mia": "mi", "miaulé": "miaul", "michaud": "michaud", "michel": "michel", "michele": "michel", "michelet": "michelet", "micheli": "michel", "michigan": "michigan", "microscope": "microscop", "microscopique": "microscop", "microscopiques": "microscop", "midi": "mid", "mielleuse": "mielleux", "mielleuses": "mielleux", "mien": "mien", "mienne": "mien", "miens": "mien", "miettes": "miet", "mieux": "mieux", "mignonnes": "mignon", "migraine": "migrain", "migration": "migrat", "mikado": "mikado", "milan": "milan", "milanais": "milan", "milanaise": "milanais", "milieu": "milieu", "militaire": "militair", "militaires": "militair", "mille": "mill", "milles": "mill", "milliard": "milliard", "milliards": "milliard", "milliers": "milli", "million": "million", "millionnaire": "millionnair", "millionnaires": "millionnair", "millions": "million", "mimosées": "mimos", "minaret": "minaret", "minarets": "minaret", "mince": "minc", "minces": "minc", "mind": "mind", "mine": "min", "minéralogie": "minéralog", "minéraux": "minéral", "minerve": "minerv", "mines": "min", "mineurs": "mineur", "miniature": "miniatur", "minimum": "minimum", "ministère": "minister", "ministères": "minister", "ministériel": "ministériel", "ministérielle": "ministériel", "ministre": "ministr", "ministres": "ministr", "minuit": "minuit", "minute": "minut", "minutes": "minut", "mirabeau": "mirabeau", "miracle": "miracl", "miracles": "miracl", "miraculeuse": "miracul", "mirari": "mirar", "miraut": "miraut", "mire": "mir", "mirent": "mirent", "miroir": "miroir", "mis": "mis", "misaine": "misain", "mise": "mis", "misène": "misen", "misérable": "miser", "misérables": "miser", "misère": "miser", "misères": "miser", "miséricorde": "miséricord", "mises": "mis", "missel": "missel", "mission": "mission", "missionnaire": "missionnair", "missions": "mission", "mississippi": "mississipp", "missive": "missiv", "missouri": "missour", "mit": "mit", "mît": "mît", "mitiger": "mitig", "mitre": "mitr", "mitres": "mitr", "mm": "mm", "mme": "mme", "mobile": "mobil", "mobiles": "mobil", "mobilité": "mobil", "mode": "mod", "modèle": "model", "modelée": "model", "modèles": "model", "modène": "moden", "modéra": "moder", "modération": "moder", "modéré": "moder", "modérée": "moder", "modérés": "moder", "modérez": "moder", "moderne": "modern", "modernes": "modern", "modes": "mod", "modeste": "modest", "modestie": "modest", "modifia": "modifi", "modification": "modif", "modifiée": "modifi", "modifier": "modifi", "modifierait": "modifi", "moelleux": "moelleux", "moeurs": "moeur", "moi": "moi", "moindre": "moindr", "moindres": "moindr", "moine": "moin", "moineaux": "moineau", "moines": "moin", "moins": "moin", "moirod": "moirod", "mois": "mois", "moisson": "moisson", "moitié": "moiti", "moka": "mok", "mole": "mol", "molière": "moli", "molle": "moll", "mollement": "moll", "molleton": "molleton", "mollissait": "moll", "mollit": "moll", "moltiplico": "moltiplico", "moment": "moment", "momentanée": "momentan", "moments": "moment", "momie": "mom", "momies": "mom", "mon": "mon", "monaca": "monac", "monarchie": "monarch", "monarchies": "monarch", "monarchique": "monarch", "monarchiques": "monarch", "monastères": "monaster", "moncade": "moncad", "monceau": "monceau", "moncontour": "moncontour", "mondain": "mondain", "mondaine": "mondain", "mondaines": "mondain", "mondains": "mondain", "monde": "mond", "monférine": "monférin", "monfleury": "monfleury", "monghir": "mongh", "mongolia": "mongoli", "moniteur": "moniteur", "monnaie": "monnai", "monologue": "monologu", "monomanes": "monoman", "monopole": "monopol", "monosyllabes": "monosyllab", "monotone": "monoton", "monotones": "monoton", "monseigneur": "monseigneur", "monsieur": "monsieur", "monsignor": "monsignor", "monsignore": "monsignor", "monstre": "monstr", "monstres": "monstr", "monstrueuses": "monstrueux", "mont": "mont", "monta": "mont", "montagne": "montagn", "montagnes": "montagn", "montagneuse": "montagn", "montagneux": "montagn", "montagnola": "montagnol", "montaient": "mont", "montais": "mont", "montait": "mont", "montant": "mont", "montât": "mont", "monte": "mont", "monté": "mont", "montée": "mont", "montent": "montent", "monter": "mont", "montera": "mont", "monterai": "mont", "montèrent": "mont", "montés": "mont", "montesson": "montesson", "montez": "mont", "montgommery": "montgommery", "monti": "mont", "montmartre": "montmartr", "montmirail": "montmirail", "montmorency": "montmorency", "montoir": "montoir", "montons": "monton", "montra": "montr", "montraient": "montr", "montrait": "montr", "montrant": "montr", "montrât": "montr", "montre": "montr", "montré": "montr", "montrée": "montr", "montrent": "montrent", "montrer": "montr", "montrera": "montr", "montrerai": "montr", "montrerait": "montr", "montrèrent": "montr", "montreriez": "montr", "montres": "montr", "montrés": "montr", "montreur": "montreur", "montrez": "montr", "monts": "mont", "monture": "montur", "monument": "monu", "monumental": "monumental", "monuments": "monu", "moqua": "moqu", "moquai": "moqu", "moquaient": "moqu", "moquais": "moqu", "moquait": "moqu", "moquant": "moqu", "moque": "moqu", "moqué": "moqu", "moquent": "moquent", "moquer": "moqu", "moquera": "moqu", "moquerais": "moqu", "moquerait": "moqu", "moquerie": "moquer", "moqueur": "moqueur", "moqueurs": "moqueur", "moqueuse": "moqueux", "moral": "moral", "morale": "moral", "morales": "moral", "moralité": "moral", "moralités": "moral", "moraux": "moral", "moravie": "morav", "morbleu": "morbleu", "morceau": "morceau", "morceaux": "morceau", "mord": "mord", "mordait": "mord", "mordant": "mord", "mordantes": "mord", "moreri": "morer", "morfondre": "morfondr", "mormon": "mormon", "mormone": "mormon", "mormones": "mormon", "mormonisme": "mormon", "mormons": "mormon", "morne": "morn", "mornes": "morn", "morning": "morning", "morom": "morom", "morose": "moros", "moroses": "moros", "mort": "mort", "mortaretti": "mortaret", "morte": "mort", "mortel": "mortel", "mortelle": "mortel", "mortellement": "mortel", "mortelles": "mortel", "mortels": "mortel", "mortes": "mort", "mortier": "morti", "mortiers": "morti", "mortifiantes": "mortifi", "mortifié": "mortifi", "mortifier": "mortifi", "morts": "mort", "morveux": "morveux", "mosca": "mosc", "moscou": "moscou", "moskova": "moskov", "mosquées": "mosqu", "most": "most", "mot": "mot", "moteur": "moteur", "motif": "motif", "motifs": "motif", "motivât": "motiv", "motivé": "motiv", "motrices": "motric", "mots": "mot", "motu": "motu", "mouche": "mouch", "mouchent": "mouchent", "moucher": "mouch", "moucheurs": "moucheur", "mouchoir": "mouchoir", "mouchoirs": "mouchoir", "mouettes": "mouet", "mouilla": "mouill", "mouillé": "mouill", "mouiller": "mouill", "mouillèrent": "mouill", "mouillés": "mouill", "moule": "moul", "moulin": "moulin", "moulus": "moulus", "mountains": "mountain", "mourais": "mour", "mourait": "mour", "mourant": "mour", "mourante": "mour", "mourants": "mour", "mourions": "mourion", "mourir": "mour", "mourons": "mouron", "mourra": "mourr", "mourrai": "mourr", "mourrais": "mourr", "mourrait": "mourr", "mourras": "mourr", "mourrez": "mourr", "mourrons": "mourron", "mourront": "mourront", "mourshedabad": "mourshedabad", "mourusse": "mouruss", "mourut": "mourut", "mourût": "mourût", "mousqueterie": "mousqueter", "mousseline": "mousselin", "mousseux": "mousseux", "moustache": "moustach", "moustaches": "moustach", "mouton": "mouton", "moutonnaient": "mouton", "moutons": "mouton", "mouvement": "mouv", "mouvements": "mouv", "mouvoir": "mouvoir", "moyen": "moyen", "moyenne": "moyen", "moyennes": "moyen", "moyens": "moyen", "moyeux": "moyeux", "mozart": "mozart", "mr": "mr", "mrs": "mr", "mû": "mû", "much": "much", "muddy": "muddy", "mudge": "mudg", "muet": "muet", "muets": "muet", "mugissements": "mug", "mulet": "mulet", "muletiers": "muleti", "mulhouse": "mulhous", "multicolores": "multicolor", "multiplications": "multipl", "multiplicité": "multipl", "multiplie": "multipl", "multiplier": "multipli", "multipliés": "multipli", "muni": "mun", "munich": "munich", "municipal": "municipal", "munir": "mun", "munis": "mun", "munster": "munst", "mur": "mur", "mûr": "mûr", "muraille": "muraill", "murailles": "muraill", "mural": "mural", "murat": "murat", "murées": "mur", "mûrement": "mûr", "mûrir": "mûr", "murmura": "murmur", "murmurait": "murmur", "murmure": "murmur", "murmures": "murmur", "murs": "mur", "muscadiers": "muscadi", "muscles": "muscl", "musculaire": "musculair", "musculature": "musculatur", "musée": "mus", "mushroom": "mushroom", "musicien": "musicien", "musiciens": "musicien", "musique": "musiqu", "musset": "musset", "mutilation": "mutil", "mutilé": "mutil", "mutsh": "mutsh", "mutuel": "mutuel", "mylord": "mylord", "mystère": "myster", "mystères": "myster", "mystérieuse": "mystéri", "mystérieusement": "mystéri", "mystérieux": "mystéri", "mysticité": "mystiqu", "mystification": "mystif", "mystifie": "mystif", "mystifié": "mystifi", "mystifiée": "mystifi", "mystifier": "mystifi", "mystique": "mystiqu", "n": "n", "nadir": "nad", "nagasaki": "nagasak", "nage": "nag", "nagent": "nagent", "nager": "nag", "naguère": "naguer", "naïf": "naïf", "naïfs": "naïf", "nains": "nain", "naissance": "naissanc", "naissant": "naiss", "naissante": "naiss", "naissent": "naissent", "naît": "naît", "naître": "naîtr", "naïve": "naïv", "naïvement": "naïv", "naïves": "naïv", "naïveté": "naïvet", "nanan": "nanan", "nani": "nan", "nankin": "nankin", "nanking": "nanking", "napier": "napi", "naples": "napl", "napoléon": "napoléon", "napoléons": "napoléon", "napolitain": "napolitain", "nappe": "napp", "narcotique": "narcot", "narra": "narr", "narrant": "narr", "narrateur": "narrateur", "narration": "narrat", "narrer": "narr", "nasillard": "nasillard", "nassik": "nassik", "natal": "natal", "natif": "natif", "nation": "nation", "national": "national", "nationale": "national", "nationales": "national", "nationalité": "national", "nationalités": "national", "nations": "nation", "nature": "natur", "naturel": "naturel", "naturelle": "naturel", "naturellement": "naturel", "naturelles": "naturel", "naturels": "naturel", "naufrages": "naufrag", "nauséabondes": "nauséabond", "nausées": "naus", "nautique": "nautiqu", "nauvoo": "nauvoo", "navarre": "navarr", "navigateur": "navig", "navigateurs": "navig", "navigation": "navig", "navigua": "navigu", "naviguant": "navigu", "naviguent": "naviguent", "navire": "navir", "navires": "navir", "navré": "navr", "navrée": "navr", "nazaro": "nazaro", "ne": "ne", "né": "né", "néanmoins": "néanmoin", "néant": "né", "nébieu": "nébieu", "nebraska": "nebrask", "nécessaire": "nécessair", "nécessairement": "nécessair", "nécessaires": "nécessair", "nécessitant": "nécessit", "nécessité": "nécess", "née": "né", "nées": "né", "nef": "nef", "nefs": "nef", "négatif": "négat", "néglige": "néglig", "négligé": "néglig", "négligeait": "néglig", "négligemment": "négligent", "négligence": "négligent", "négligents": "négligent", "négliger": "néglig", "négligerait": "néglig", "négociant": "négoci", "négociants": "négoci", "négociateur": "négoci", "négociation": "négoci", "négociations": "négoci", "nègre": "negr", "nègres": "negr", "neige": "neig", "neigeait": "neig", "neiges": "neig", "neptune": "neptun", "nerfs": "nerf", "nerval": "nerval", "nerveuse": "nerveux", "nerveux": "nerveux", "nés": "né", "net": "net", "nets": "net", "nette": "net", "nettement": "net", "nettes": "net", "netteté": "nettet", "nettoya": "nettoi", "nettoyer": "nettoi", "neuf": "neuf", "neufs": "neuf", "neutralité": "neutral", "neutre": "neutr", "neuvaine": "neuvain", "neuve": "neuv", "neuves": "neuv", "neuvième": "neuviem", "nevada": "nevad", "never": "nev", "neveu": "neveu", "neveux": "neveux", "new": "new", "news": "new", "ney": "ney", "nez": "nez", "ni": "ni", "niais": "ni", "niaiserie": "niaiser", "niaiseries": "niaiser", "niaises": "niais", "nice": "nic", "niche": "nich", "nicolas": "nicol", "nids": "nid", "nie": "ni", "nié": "ni", "nièce": "niec", "nièces": "niec", "nier": "ni", "nierais": "ni", "nierons": "ni", "nigaud": "nigaud", "nigauderie": "nigauder", "nigauds": "nigaud", "night": "night", "nil": "nil", "niveau": "niveau", "nivelées": "nivel", "nizam": "nizam", "no": "no", "nobiliaires": "nobiliair", "noble": "nobl", "nobles": "nobl", "noblesse": "nobless", "noce": "noc", "noces": "noc", "nocturne": "nocturn", "nocturnes": "nocturn", "noeud": "noeud", "noeuds": "noeud", "noie": "noi", "noir": "noir", "noirci": "noirc", "noircie": "noirc", "noircies": "noirc", "noircis": "noirc", "noire": "noir", "noires": "noir", "noiroud": "noiroud", "noirs": "noir", "noix": "noix", "nom": "nom", "nombre": "nombr", "nombreuse": "nombreux", "nombreuses": "nombreux", "nombreux": "nombreux", "nominal": "nominal", "nominale": "nominal", "nomination": "nomin", "nommait": "nomm", "nommant": "nomm", "nomme": "nomm", "nommé": "nomm", "nommée": "nomm", "nommer": "nomm", "nommés": "nomm", "nommez": "nomm", "noms": "nom", "non": "non", "nonante": "non", "nonchalance": "nonchal", "nonchalant": "nonchal", "norbert": "norbert", "nord": "nord", "norimons": "norimon", "normale": "normal", "normandie": "normand", "normands": "normand", "north": "north", "nos": "nos", "not": "not", "notable": "notabl", "notablement": "notabl", "notables": "notabl", "notaire": "notair", "notaires": "notair", "note": "not", "noté": "not", "noter": "not", "notes": "not", "notez": "not", "nothing": "nothing", "notice": "notic", "notices": "notic", "notions": "notion", "notoire": "notoir", "notoirement": "notoir", "notre": "notr", "nôtre": "nôtr", "nôtres": "nôtr", "nouant": "nou", "nouée": "nou", "nourri": "nourr", "nourrice": "nourric", "nourrie": "nourr", "nourrir": "nourr", "nourrirait": "nourr", "nourris": "nourr", "nourrissait": "nourr", "nourrissant": "nourr", "nourrisse": "nourr", "nourrissent": "nourr", "nourrit": "nourr", "nourriture": "nourritur", "nous": "nous", "nouveau": "nouveau", "nouveauté": "nouveaut", "nouveautés": "nouveaut", "nouveaux": "nouveau", "nouvel": "nouvel", "nouvelle": "nouvel", "nouvellement": "nouvel", "nouvelles": "nouvel", "novare": "novar", "novateurs": "novateur", "novembre": "novembr", "novi": "nov", "novice": "novic", "now": "now", "noyée": "noi", "noyer": "noi", "noyers": "noyer", "noyés": "noi", "nu": "nu", "nuage": "nuag", "nuages": "nuag", "nuance": "nuanc", "nuances": "nuanc", "nudité": "nudit", "nue": "nu", "nuées": "nu", "nues": "nu", "nui": "nui", "nuira": "nuir", "nuiraient": "nuir", "nuirait": "nuir", "nuire": "nuir", "nuisait": "nuis", "nuisant": "nuis", "nuisible": "nuisibl", "nuisibles": "nuisibl", "nuit": "nuit", "nuits": "nuit", "nul": "nul", "nulle": "null", "nullement": "null", "nullité": "nullit", "nuls": "nul", "numéro": "numéro", "numéros": "numéros", "numérotées": "numérot", "nunc": "nunc", "nuremberg": "nuremberg", "nus": "nus", "o": "o", "ô": "ô", "oakland": "oakland", "oaths": "oath", "obadiah": "obadiah", "obéi": "obéi", "obéie": "obei", "obéir": "obéir", "obéira": "obéir", "obéirai": "obéir", "obéirais": "obéir", "obéirez": "obéir", "obéis": "obéis", "obéissaient": "obéiss", "obéissait": "obéiss", "obéissance": "obéiss", "obéissant": "obéiss", "obéissants": "obéiss", "obéisse": "obéiss", "obéissez": "obéiss", "obéit": "obéit", "objecter": "object", "objection": "object", "objections": "object", "objet": "objet", "objets": "objet", "obligation": "oblig", "obligations": "oblig", "obligatoire": "obligatoir", "oblige": "oblig", "obligé": "oblig", "obligea": "oblig", "obligeait": "oblig", "obligeamment": "oblig", "obligeances": "oblige", "obligeant": "oblig", "obligeante": "oblig", "obligeantes": "oblig", "obligeants": "oblig", "obligeât": "oblig", "obligée": "oblig", "obligent": "obligent", "obliger": "oblig", "obligera": "oblig", "obligeraient": "oblig", "obligerez": "oblig", "obligés": "oblig", "obligez": "oblig", "obliqua": "obliqu", "obole": "obol", "obscur": "obscur", "obscurcit": "obscurc", "obscure": "obscur", "obscurément": "obscur", "obscures": "obscur", "obscurité": "obscur", "obséda": "obsed", "obsédé": "obsed", "observa": "observ", "observaient": "observ", "observait": "observ", "observance": "observ", "observant": "observ", "observateur": "observ", "observateurs": "observ", "observation": "observ", "observations": "observ", "observatoire": "observatoir", "observe": "observ", "observé": "observ", "observer": "observ", "observèrent": "observ", "observés": "observ", "obstacle": "obstacl", "obstacles": "obstacl", "obstina": "obstin", "obstinait": "obstin", "obstinant": "obstin", "obstination": "obstin", "obstiné": "obstin", "obstinément": "obstin", "obstiner": "obstin", "obstruaient": "obstru", "obtenait": "obten", "obtenez": "obten", "obtenir": "obten", "obtenu": "obtenu", "obtenue": "obtenu", "obtenus": "obtenus", "obtiendrai": "obtiendr", "obtiendrais": "obtiendr", "obtiendront": "obtiendront", "obtienne": "obtien", "obtiennent": "obtiennent", "obtiens": "obtien", "obtient": "obtient", "obtinrent": "obtinrent", "obtint": "obtint", "occasion": "occas", "occasionner": "occasion", "occasionnés": "occasion", "occasions": "occas", "occidentales": "occidental", "occulte": "occult", "occultes": "occult", "occupa": "occup", "occupaient": "occup", "occupait": "occup", "occupant": "occup", "occupante": "occup", "occupât": "occup", "occupation": "occup", "occupations": "occup", "occupe": "occup", "occupé": "occup", "occupée": "occup", "occupées": "occup", "occupent": "occupent", "occuper": "occup", "occupera": "occup", "occuperai": "occup", "occupèrent": "occup", "occupés": "occup", "occupiez": "occup", "occupons": "occupon", "occurrence": "occurrent", "occurrences": "occurrent", "ocean": "ocean", "océan": "océan", "océans": "océan", "ocre": "ocre", "octave": "octav", "octobre": "octobr", "octroi": "octroi", "odalisque": "odalisqu", "ode": "ode", "odes": "ode", "odeur": "odeur", "odieuse": "odieux", "odieux": "odieux", "odorante": "odor", "odorat": "odorat", "oeil": "oeil", "oeuf": "oeuf", "oeufs": "oeuf", "oeuvre": "oeuvr", "oeuvres": "oeuvr", "of": "of", "offensa": "offens", "offensait": "offens", "offensant": "offens", "offensante": "offens", "offensantes": "offens", "offensât": "offens", "offense": "offens", "offensé": "offens", "offensée": "offens", "offenser": "offens", "offenserait": "offens", "offenses": "offens", "offensés": "offens", "offensive": "offens", "offert": "offert", "offerte": "offert", "offerts": "offert", "office": "offic", "offices": "offic", "officiant": "offici", "officiel": "officiel", "officielle": "officiel", "officiellement": "officiel", "officielles": "officiel", "officiels": "officiel", "officier": "offici", "officiers": "offici", "offraient": "offraient", "offrais": "offrais", "offrait": "offrait", "offrande": "offrand", "offrandes": "offrand", "offrant": "offrant", "offre": "offre", "offrent": "offrent", "offres": "offre", "offrir": "offrir", "offrira": "offrir", "offrirai": "offrir", "offriraient": "offrir", "offrirait": "offrir", "offris": "offris", "offrit": "offrit", "offusqué": "offusqu", "ogden": "ogden", "ogive": "ogiv", "ogre": "ogre", "oh": "oh", "ohio": "ohio", "oies": "oie", "oiseau": "oiseau", "oiseaux": "oiseau", "oisifs": "oisif", "oisive": "oisiv", "olivier": "olivi", "olo": "olo", "omaha": "omah", "ombragée": "ombrag", "ombrages": "ombrag", "ombre": "ombre", "ombres": "ombre", "ombreuses": "ombreux", "omelette": "omelet", "omis": "omis", "omission": "omiss", "omit": "omit", "omnia": "omni", "omnibus": "omnibus", "on": "on", "onces": "once", "oncle": "oncle", "oncles": "oncle", "onction": "onction", "ondulation": "ondul", "ondulations": "ondul", "ont": "ont", "onze": "onze", "opera": "oper", "opéra": "oper", "opéraient": "oper", "opérait": "oper", "opération": "oper", "opérations": "oper", "opère": "oper", "opérée": "oper", "opérer": "oper", "opiner": "opin", "opiniâtrement": "opiniâtr", "opinion": "opinion", "opinions": "opin", "opium": "opium", "opportun": "opportun", "opportune": "opportun", "opportunité": "opportun", "opposaient": "oppos", "opposant": "oppos", "oppose": "oppos", "opposé": "oppos", "opposée": "oppos", "opposées": "oppos", "opposent": "opposent", "opposer": "oppos", "opposerai": "oppos", "opposés": "oppos", "opposition": "opposit", "opprimait": "opprim", "opprimés": "opprim", "opprobre": "opprobr", "opter": "opter", "optime": "optim", "opulence": "opulent", "opulentes": "opulent", "opulents": "opulent", "or": "or", "ora": "ora", "orage": "orag", "orages": "orag", "orange": "orang", "orangé": "orang", "oranger": "orang", "orangerie": "oranger", "orangers": "oranger", "oranges": "orang", "orateur": "orateur", "orateurs": "orateur", "orbite": "orbit", "orchestre": "orchestr", "ordinaire": "ordinair", "ordinairement": "ordinair", "ordinaires": "ordinair", "ordonna": "ordon", "ordonnait": "ordon", "ordonnance": "ordon", "ordonnant": "ordon", "ordonne": "ordon", "ordonné": "ordon", "ordonnée": "ordon", "ordonner": "ordon", "ordonnera": "ordon", "ordonnes": "ordon", "ordonnés": "ordon", "ordre": "ordre", "ordres": "ordre", "oregon": "oregon", "oreille": "oreil", "oreiller": "oreil", "oreillers": "oreiller", "oreilles": "oreil", "orfèvre": "orfevr", "orfèvrerie": "orfèvrer", "orfèvres": "orfevr", "orfraie": "orfrai", "organes": "organ", "organisa": "organis", "organisait": "organis", "organisation": "organis", "organisé": "organis", "organisée": "organis", "organiser": "organis", "organisèrent": "organis", "orge": "orge", "orgie": "orgi", "orgue": "orgu", "orgueil": "orgueil", "orgueilleuse": "orgueil", "orgueilleusement": "orgueil", "orgueilleux": "orgueil", "orient": "orient", "oriental": "oriental", "orientale": "oriental", "orientalistes": "oriental", "orienter": "orient", "original": "original", "originale": "original", "originalité": "original", "originaux": "original", "origine": "origin", "orléans": "orléan", "ornaient": "ornaient", "ornait": "ornait", "orne": "orne", "orné": "orné", "ornée": "orné", "ornées": "orné", "ornement": "ornement", "ornementation": "ornement", "ornements": "ornement", "ornent": "ornent", "orner": "orner", "ornèrent": "ornèrent", "ornés": "orné", "ornière": "ornier", "orpheline": "orphelin", "orphelins": "orphelin", "orta": "orta", "orteils": "orteil", "orthographe": "orthograph", "orties": "orti", "ory": "ory", "os": "os", "osa": "osa", "osai": "osai", "osaient": "osaient", "osais": "osais", "osait": "osait", "osant": "osant", "osât": "osât", "oscillaient": "oscill", "oscillait": "oscill", "oscuro": "oscuro", "ose": "ose", "osé": "osé", "osées": "osé", "oseille": "oseil", "osent": "osent", "oser": "oser", "osera": "oser", "oserai": "oser", "oseraient": "oser", "oserais": "oser", "oserait": "oser", "osèrent": "osèrent", "oserons": "oseron", "osez": "osez", "ostensiblement": "ostensibl", "ôta": "ôta", "ôtaient": "ôtaient", "ôtait": "ôtait", "ôte": "ôte", "ôté": "ôté", "ôtées": "ôté", "ôter": "ôter", "ôtera": "ôter", "ôterai": "ôter", "ôterait": "ôter", "ôtèrent": "ôtèrent", "ôterez": "ôter", "ôtez": "ôtez", "othello": "othello", "ottomane": "ottoman", "ou": "ou", "où": "où", "ouailles": "ouaill", "oubli": "oubl", "oublia": "oubli", "oubliai": "oubli", "oubliais": "oubli", "oubliait": "oubli", "oubliant": "oubli", "oublie": "oubl", "oublié": "oubli", "oubliée": "oubli", "oubliées": "oubli", "oublient": "oublient", "oublier": "oubli", "oubliera": "oubli", "oublierai": "oubli", "oublierais": "oubli", "oublierait": "oubli", "oublierez": "oubli", "oublies": "oubl", "oubliez": "oubl", "oublions": "oublion", "ouest": "ouest", "oui": "oui", "ouï": "ouï", "ouïe": "ouï", "our": "our", "ouragan": "ouragan", "ouragans": "ouragan", "ourdies": "ourd", "ours": "our", "outils": "outil", "outrage": "outrag", "outrageait": "outrag", "outrageantes": "outrag", "outrageants": "outrag", "outragée": "outrag", "outrager": "outrag", "outrages": "outrag", "outragés": "outrag", "outrageusement": "outrag", "outrait": "outr", "outrance": "outranc", "outrant": "outr", "outre": "outr", "outré": "outr", "outrée": "outr", "outrepasser": "outrepass", "outrez": "outr", "ouvert": "ouvert", "ouverte": "ouvert", "ouvertement": "ouvert", "ouvertes": "ouvert", "ouverts": "ouvert", "ouverture": "ouvertur", "ouvrage": "ouvrag", "ouvragé": "ouvrag", "ouvrages": "ouvrag", "ouvraient": "ouvr", "ouvrait": "ouvr", "ouvrant": "ouvr", "ouvrante": "ouvr", "ouvre": "ouvr", "ouvrez": "ouvr", "ouvrier": "ouvri", "ouvrière": "ouvri", "ouvriers": "ouvri", "ouvrir": "ouvr", "ouvrira": "ouvr", "ouvrirait": "ouvr", "ouvrirent": "ouvr", "ouvrit": "ouvr", "ouvrît": "ouvr", "ovale": "oval", "oxydé": "oxyd", "oysterpuf": "oysterpuf", "oysters": "oyster", "p": "p", "pablo": "pablo", "pace": "pac", "pacha": "pach", "pacific": "pacific", "pacifique": "pacif", "pacifiques": "pacif", "packet": "packet", "padoue": "padou", "paganisme": "pagan", "pagato": "pagato", "page": "pag", "pages": "pag", "pagina": "pagin", "pagode": "pagod", "pagodes": "pagod", "paie": "pai", "paiement": "pai", "paiements": "pai", "païen": "païen", "paient": "paient", "paierai": "pai", "paierait": "pai", "paieras": "pai", "paieriez": "pai", "paillasse": "paill", "paillasses": "paill", "paille": "paill", "pain": "pain", "pains": "pain", "pair": "pair", "paire": "pair", "paires": "pair", "pairie": "pair", "pairs": "pair", "paisible": "paisibl", "paisiblement": "paisibl", "paix": "paix", "pal": "pal", "palais": "pal", "palanquin": "palanquin", "palanquins": "palanquin", "palanza": "palanz", "palazzeto": "palazzeto", "pale": "pal", "pâle": "pâl", "palefrenier": "palefreni", "pâles": "pâl", "palestine": "palestin", "paletot": "paletot", "pâleur": "pâleur", "pâli": "pâl", "palier": "pali", "pâlir": "pâl", "palissades": "palissad", "pâlissaient": "pâl", "pâlissant": "pâl", "pâlissantes": "pâl", "pâlissent": "pâl", "pâlit": "pâl", "palki": "palk", "palkigharis": "palkighar", "pall": "pall", "palla": "pall", "pallagi": "pallag", "pallida": "pallid", "palmiers": "palmi", "palpitait": "palpit", "palpitant": "palpit", "palpitante": "palpit", "palpitants": "palpit", "palpiter": "palpit", "pamphlet": "pamphlet", "pamphlets": "pamphlet", "pan": "pan", "panache": "panach", "pança": "panc", "panier": "pani", "panneaux": "panneau", "panorama": "panoram", "panoramique": "panoram", "pansa": "pans", "pansaient": "pans", "pansement": "pans", "panser": "pans", "pansez": "pans", "pantalon": "pantalon", "pantalons": "pantalon", "panthères": "panther", "pantoufles": "pantoufl", "paolina": "paolin", "papa": "pap", "pape": "pap", "paperasses": "paper", "paperassière": "paperassi", "papier": "papi", "papiers": "papi", "papillon": "papillon", "papillons": "papillon", "papillotes": "papillot", "papouas": "papou", "papyrus": "papyrus", "paquebot": "paquebot", "paquebots": "paquebot", "paquet": "paquet", "paquetées": "paquet", "paquets": "paquet", "par": "par", "para": "par", "parade": "parad", "parader": "parad", "paradis": "parad", "parages": "parag", "paragraphe": "paragraph", "parais": "par", "paraissaient": "paraiss", "paraissais": "paraiss", "paraissait": "paraiss", "paraisse": "paraiss", "paraissent": "paraissent", "parait": "par", "paraît": "paraît", "paraîtra": "paraîtr", "paraîtrai": "paraîtr", "paraîtraient": "paraîtr", "paraître": "paraîtr", "paraîtrons": "paraîtron", "parallèle": "parallel", "parallèlement": "parallel", "paralysaient": "paralys", "paralyse": "paralys", "paralysé": "paralys", "paralyser": "paralys", "paralytique": "paralyt", "parant": "par", "parapet": "parapet", "paraphait": "paraph", "paraphe": "paraph", "paraphrasa": "paraphras", "parapluie": "paraplui", "paratonnerre": "paratonnerr", "paratonnerres": "paratonnerr", "paravent": "paravent", "parbleu": "parbleu", "parc": "parc", "parce": "parc", "parchemin": "parchemin", "parcouraient": "parcour", "parcourait": "parcour", "parcourant": "parcour", "parcourent": "parcourent", "parcourir": "parcour", "parcourrai": "parcourr", "parcours": "parcour", "parcourt": "parcourt", "parcouru": "parcouru", "parcourue": "parcouru", "parcoururent": "parcoururent", "parcourus": "parcourus", "parcourut": "parcourut", "pardessus": "pardessus", "pardi": "pard", "pardieu": "pardieu", "pardon": "pardon", "pardonna": "pardon", "pardonnable": "pardon", "pardonnables": "pardon", "pardonnait": "pardon", "pardonne": "pardon", "pardonné": "pardon", "pardonnées": "pardon", "pardonnent": "pardonnent", "pardonner": "pardon", "pardonnera": "pardon", "pardonnerai": "pardon", "pardonnerais": "pardon", "pardonnerait": "pardon", "pardonnerez": "pardon", "pardonnes": "pardon", "pardonnez": "pardon", "pardonniez": "pardon", "pardons": "pardon", "pare": "par", "paré": "par", "parée": "par", "pareil": "pareil", "pareille": "pareil", "pareilles": "pareil", "pareils": "pareil", "parent": "parent", "parente": "parent", "parentes": "parent", "parenthèse": "parenthes", "parents": "parent", "parer": "par", "paresse": "paress", "paresseuse": "paress", "paresseux": "paress", "parfait": "parf", "parfaite": "parfait", "parfaitement": "parfait", "parfaites": "parfait", "parfaits": "parfait", "parfois": "parfois", "parfum": "parfum", "parfumée": "parfum", "parfums": "parfum", "pari": "pari", "paria": "pari", "parie": "pari", "parié": "pari", "parient": "parient", "parier": "pari", "parierais": "pari", "parièrent": "pari", "pariétaires": "pariétair", "parieurs": "parieur", "paris": "paris", "parisien": "parisien", "parisienne": "parisien", "parisiennes": "parisien", "parisiens": "parisien", "parla": "parl", "parlaient": "parl", "parlais": "parl", "parlait": "parl", "parlant": "parl", "parlantes": "parl", "parlants": "parl", "parlassent": "parl", "parlât": "parl", "parle": "parl", "parlé": "parl", "parlement": "parl", "parlent": "parlent", "parler": "parl", "parlera": "parl", "parlerai": "parl", "parlerais": "parl", "parlerait": "parl", "parlèrent": "parl", "parlerez": "parl", "parlerons": "parl", "parleront": "parl", "parles": "parl", "parleur": "parleur", "parleurs": "parleur", "parlez": "parl", "parliez": "parl", "parlions": "parlion", "parloir": "parloir", "parlons": "parlon", "parma": "parm", "parme": "parm", "parmesan": "parmesan", "parmesans": "parmesan", "parmi": "parm", "parois": "parois", "paroisse": "paroiss", "paroisses": "paroiss", "paroissiale": "paroissial", "paroissiens": "paroissien", "parole": "parol", "paroles": "parol", "paroxysme": "paroxysm", "parquet": "parquet", "parquetée": "parquet", "parrain": "parrain", "pars": "par", "parsemée": "parsem", "parsi": "pars", "parsie": "pars", "parsis": "pars", "part": "part", "partage": "partag", "partagé": "partag", "partagea": "partag", "partageait": "partag", "partagée": "partag", "partager": "partag", "partagerai": "partag", "partagerais": "partag", "partaient": "part", "partait": "part", "partana": "partan", "partance": "partanc", "partant": "part", "parte": "part", "partenaire": "partenair", "partenaires": "partenair", "partent": "partent", "parterre": "parterr", "parterres": "parterr", "partes": "part", "partez": "part", "parti": "part", "particularité": "particular", "particularités": "particular", "particulier": "particuli", "particulière": "particuli", "particulièrement": "particuli", "particuliers": "particuli", "partie": "part", "parties": "part", "partiez": "part", "partir": "part", "partira": "part", "partirai": "part", "partirais": "part", "partirait": "part", "partirent": "part", "partirez": "part", "partirons": "part", "partis": "part", "partisan": "partisan", "partisans": "partisan", "partit": "part", "partît": "part", "partner": "partn", "partons": "parton", "partout": "partout", "parts": "part", "paru": "paru", "parurent": "parurent", "parut": "parut", "parût": "parût", "parvenaient": "parven", "parvenait": "parven", "parvenir": "parven", "parvenons": "parvenon", "parvenu": "parvenu", "parvenue": "parvenu", "parviendrai": "parviendr", "parviendraient": "parviendr", "parviendrait": "parviendr", "parviendras": "parviendr", "parviendrons": "parviendron", "parviendront": "parviendront", "parviens": "parvien", "parvient": "parvient", "parvinrent": "parvinrent", "parvint": "parvint", "pas": "pas", "pascal": "pascal", "pass": "pass", "passa": "pass", "passable": "passabl", "passablement": "passabl", "passables": "passabl", "passage": "passag", "passager": "passag", "passagère": "passager", "passagères": "passager", "passagers": "passager", "passages": "passag", "passaient": "pass", "passais": "pass", "passait": "pass", "passant": "pass", "passants": "pass", "passar": "passar", "passe": "pass", "passé": "pass", "passée": "pass", "passées": "pass", "passementier": "passementi", "passent": "passent", "passepartout": "passepartout", "passeport": "passeport", "passeports": "passeport", "passer": "pass", "passera": "pass", "passerai": "pass", "passerais": "pass", "passerait": "pass", "passerelle": "passerel", "passerelles": "passerel", "passèrent": "pass", "passerons": "pass", "passeront": "pass", "passes": "pass", "passés": "pass", "passez": "pass", "passif": "passif", "passion": "passion", "passionnait": "passion", "passionnant": "passion", "passionne": "passion", "passionné": "passion", "passionnée": "passion", "passionnées": "passion", "passionnément": "passion", "passionner": "passion", "passionnés": "passion", "passions": "passion", "passive": "passiv", "passons": "passon", "pastoral": "pastoral", "pastorale": "pastoral", "pataugeant": "pataug", "pâté": "pât", "patelin": "patelin", "patente": "patent", "pater": "pat", "paterne": "patern", "paternel": "paternel", "paternelle": "paternel", "pathétique": "pathet", "pathétiques": "pathet", "pathos": "pathos", "patiemment": "patient", "patience": "patienc", "patinant": "patin", "patna": "patn", "patois": "patois", "patrician": "patrician", "patricien": "patricien", "patricienne": "patricien", "patriciens": "patricien", "patrie": "patr", "patriotes": "patriot", "patriotisme": "patriot", "patron": "patron", "patronage": "patronag", "patronne": "patron", "patronnes": "patron", "patrouille": "patrouill", "patte": "patt", "pâture": "pâtur", "pauca": "pauc", "paul": "paul", "paupière": "paupi", "paupières": "paupi", "pauvre": "pauvr", "pauvrement": "pauvr", "pauvres": "pauvr", "pauvreté": "pauvret", "pauwell": "pauwel", "pavé": "pav", "pavée": "pav", "pavie": "pav", "pavillon": "pavillon", "pavillons": "pavillon", "pavois": "pavois", "pawnies": "pawn", "paya": "pai", "payables": "payabl", "payait": "pai", "payant": "pai", "paye": "pay", "payé": "pai", "payée": "pai", "payent": "payent", "payer": "pai", "payera": "pai", "payés": "pai", "payiez": "pai", "payons": "payon", "pays": "pay", "paysage": "paysag", "paysages": "paysag", "paysan": "paysan", "paysanne": "paysann", "paysans": "paysan", "peak": "peak", "peau": "peau", "peccadille": "peccadill", "peccavi": "peccav", "péchais": "pech", "pêche": "pêch", "péché": "pech", "pécher": "pech", "péchés": "pech", "pécheur": "pécheur", "pêcheurs": "pêcheur", "pectorale": "pectoral", "pécule": "pécul", "pécuniaire": "pécuniair", "pédant": "ped", "pédanterie": "pédanter", "pédantesque": "pédantesqu", "pedroti": "pedrot", "peignaient": "peign", "peignait": "peign", "peignant": "peign", "peigné": "peign", "peignez": "peign", "peignit": "peign", "peindra": "peindr", "peindre": "peindr", "peine": "pein", "peiné": "pein", "peines": "pein", "peinés": "pein", "peint": "peint", "peinte": "peint", "peintes": "peint", "peintre": "peintr", "peintres": "peintr", "peints": "peint", "peinture": "peintur", "peintures": "peintur", "pékin": "pékin", "pêle": "pêl", "pelegrino": "pelegrino", "pèlerinage": "pèlerinag", "pèlerinages": "pèlerinag", "pèlerine": "pèlerin", "pèlerins": "pèlerin", "pélicans": "pélican", "pelisse": "pel", "pelisses": "pel", "pelletées": "pellet", "pellico": "pellico", "peloton": "peloton", "pénal": "pénal", "penaud": "penaud", "penauds": "penaud", "pence": "penc", "pencha": "pench", "penchaient": "pench", "penchant": "pench", "penché": "pench", "pencher": "pench", "pend": "pend", "pendable": "pendabl", "pendables": "pendabl", "pendaient": "pend", "pendait": "pend", "pendant": "pend", "pendante": "pend", "pendantes": "pend", "pendre": "pendr", "pendu": "pendu", "pendue": "pendu", "pendule": "pendul", "pendules": "pendul", "pendus": "pendus", "pénétra": "pénetr", "pénétrait": "pénetr", "pénétrant": "pénetr", "pénétration": "pénetr", "pénètre": "pénetr", "pénétré": "pénetr", "pénétrée": "pénetr", "pénétrer": "pénetr", "pénétrera": "pénetr", "pénétrèrent": "pénetr", "pénible": "pénibl", "péniblement": "pénibl", "pénibles": "pénibl", "péninsulaire": "péninsulair", "peninsular": "peninsular", "péninsule": "péninsul", "pénitence": "pénitent", "pennsylvanie": "pennsylvan", "penny": "penny", "pensa": "pens", "pensai": "pens", "pensaient": "pens", "pensais": "pens", "pensait": "pens", "pensant": "pens", "pensante": "pens", "pensants": "pens", "pensât": "pens", "pense": "pens", "pensé": "pens", "pensée": "pens", "pensées": "pens", "pensent": "pensent", "penser": "pens", "pensera": "pens", "penserais": "pens", "penserait": "pens", "pensèrent": "pens", "penseur": "penseur", "pensez": "pens", "pensif": "pensif", "pension": "pension", "pensionnaire": "pensionnair", "pensive": "pensiv", "pensons": "penson", "pentagone": "pentagon", "pentateuque": "pentateuqu", "pente": "pent", "pentes": "pent", "pénurie": "pénur", "pépé": "pep", "pépites": "pépit", "pequigny": "pequigny", "per": "per", "perçaient": "perc", "perçait": "perc", "perçant": "perc", "perçante": "perc", "perce": "perc", "percé": "perc", "percepteur": "percepteur", "percer": "perc", "percèrent": "perc", "perche": "perch", "perché": "perch", "percussion": "percuss", "perd": "perd", "perdaient": "perd", "perdais": "perd", "perdait": "perd", "perdant": "perd", "perde": "perd", "perdent": "perdent", "perdez": "perd", "perdirent": "perd", "perdit": "perd", "perdition": "perdit", "perdons": "perdon", "perdra": "perdr", "perdrai": "perdr", "perdrais": "perdr", "perdrait": "perdr", "perdras": "perdr", "perdre": "perdr", "perdreau": "perdreau", "perdriez": "perdr", "perdrix": "perdrix", "perds": "perd", "perdu": "perdu", "perdue": "perdu", "perdus": "perdus", "père": "per", "pereire": "pereir", "pères": "per", "perfection": "perfect", "perfectionner": "perfection", "pergolèse": "pergoles", "péri": "per", "péril": "péril", "périlleux": "périll", "périls": "péril", "périmètre": "périmetr", "période": "périod", "périodique": "périod", "périr": "per", "périraient": "per", "péris": "per", "périsse": "per", "périssent": "per", "périssez": "per", "péristyle": "péristyl", "péristyles": "péristyl", "périt": "per", "perles": "perl", "permanence": "permanent", "permanente": "permanent", "permet": "permet", "permets": "permet", "permettaient": "permet", "permettait": "permet", "permettant": "permet", "permette": "permet", "permettent": "permettent", "permettez": "permet", "permettra": "permettr", "permettrai": "permettr", "permettrait": "permettr", "permettre": "permettr", "permettrez": "permettr", "permettront": "permettront", "permirent": "perm", "permis": "perm", "permise": "permis", "permission": "permiss", "permit": "perm", "permît": "perm", "pernice": "pernic", "pérorait": "péror", "péroré": "péror", "pérou": "pérou", "pérouse": "pérous", "perpendiculairement": "perpendiculair", "perpétuelle": "perpétuel", "perpétuels": "perpétuel", "perplexités": "perplex", "perqué": "perqu", "perquisition": "perquisit", "perron": "perron", "perruque": "perruqu", "perruques": "perruqu", "persans": "persan", "persécutait": "persécut", "persécute": "persécut", "persécuté": "persécut", "persécuterait": "persécut", "persécutés": "persécut", "persécutions": "persécu", "perses": "pers", "persienne": "persien", "persiennes": "persien", "persiflage": "persiflag", "persiflèrent": "persifl", "persista": "persist", "persistance": "persist", "personnage": "personnag", "personnages": "personnag", "personnalité": "personnal", "personne": "person", "personnel": "personnel", "personnelle": "personnel", "personnellement": "personnel", "personnelles": "personnel", "personnels": "personnel", "personnes": "person", "personnification": "personnif", "personnifiée": "personnifi", "perspective": "perspect", "perspectives": "perspect", "perspicacité": "perspicac", "persuadé": "persuad", "persuadée": "persuad", "persuader": "persuad", "persuasion": "persuas", "perte": "pert", "pertes": "pert", "pertuis": "pertuis", "perturbations": "perturb", "péruvien": "péruvien", "pervers": "perver", "perversité": "pervers", "pervertisse": "pervert", "pesait": "pes", "pesant": "pes", "pesante": "pes", "pesanteur": "pesanteur", "pesants": "pes", "pèse": "pes", "pesé": "pes", "peser": "pes", "pesés": "pes", "pesez": "pes", "pessimisme": "pessim", "peste": "pest", "pester": "pest", "pétaudière": "pétaudi", "pétillante": "pétill", "petit": "pet", "petite": "petit", "petites": "petit", "petitesse": "petitess", "petitesses": "petitess", "pétition": "pétit", "pétitions": "pétit", "petits": "petit", "pétrarque": "pétrarqu", "pétrifié": "pétrifi", "pétrifiée": "pétrifi", "pétrole": "pétrol", "pétrone": "pétron", "petto": "petto", "pétulance": "pétul", "peu": "peu", "peuple": "peupl", "peuplé": "peupl", "peuplée": "peupl", "peuplent": "peuplent", "peuples": "peupl", "peuplés": "peupl", "peuplier": "peupli", "peur": "peur", "peureux": "peureux", "peurs": "peur", "peut": "peut", "peuvent": "peuvent", "peux": "peux", "pharsale": "pharsal", "pherson": "pherson", "phileas": "phil", "philippe": "philipp", "philosophant": "philosoph", "philosophe": "philosoph", "philosophes": "philosoph", "philosophie": "philosoph", "philosophique": "philosoph", "philosophiquement": "philosoph", "philosophiques": "philosoph", "phosphorescentes": "phosphorescent", "photographie": "photograph", "phrase": "phras", "phrases": "phras", "physiognomoniques": "physiognomon", "physionomie": "physionom", "physionomies": "physionom", "physionomistes": "physionom", "physique": "physiqu", "physiquement": "physiqu", "physiques": "physiqu", "piacere": "piacer", "pianiste": "pianist", "piano": "piano", "pianos": "pianos", "pic": "pic", "pichegru": "pichegru", "pics": "pic", "pie": "pi", "pièce": "piec", "pièces": "piec", "piécettes": "piécet", "pied": "pied", "pieds": "pied", "piège": "pieg", "pieges": "pieg", "pièges": "pieg", "piémont": "piémont", "piémontais": "piémont", "piémontaise": "piémontais", "pier": "pi", "pierre": "pierr", "pierres": "pierr", "piété": "piet", "piéton": "piéton", "piétons": "piéton", "pietragrua": "pietragru", "pietranera": "pietran", "piètre": "pietr", "pieuse": "pieus", "pieusement": "pieus", "pieuses": "pieus", "pieux": "pieux", "pigeon": "pigeon", "pigeons": "pigeon", "pilastre": "pilastr", "pile": "pil", "pilé": "pil", "piler": "pil", "pilier": "pili", "piliers": "pili", "pillage": "pillag", "pillages": "pillag", "pillaient": "pill", "pillaji": "pillaj", "pille": "pill", "pillé": "pill", "pillée": "pill", "pillent": "pillent", "pillés": "pill", "pilori": "pilor", "pilote": "pilot", "pilotes": "pilot", "pimentel": "pimentel", "pinceau": "pinceau", "pincée": "pinc", "pincette": "pincet", "pintes": "pint", "piochant": "pioch", "pioneer": "pione", "pipe": "pip", "pipes": "pip", "piqua": "piqu", "piquait": "piqu", "piquant": "piqu", "piquante": "piqu", "piquantes": "piqu", "pique": "piqu", "piqué": "piqu", "piquée": "piqu", "piquer": "piqu", "piquerait": "piqu", "piqués": "piqu", "piquez": "piqu", "pirard": "pirard", "pirate": "pirat", "pire": "pir", "pis": "pis", "piste": "pist", "pistolet": "pistolet", "pistolets": "pistolet", "piston": "piston", "pistons": "piston", "pitance": "pitanc", "piteuse": "piteux", "piteusement": "piteux", "piteux": "piteux", "pitié": "piti", "pitoyable": "pitoi", "pitt": "pitt", "pittoresque": "pittoresqu", "pittoresques": "pittoresqu", "pittsburg": "pittsburg", "più": "più", "plaça": "plac", "plaçait": "plac", "plaçant": "plac", "placard": "placard", "place": "plac", "placé": "plac", "placée": "plac", "placées": "plac", "placer": "plac", "placera": "plac", "placerai": "plac", "placerait": "plac", "placèrent": "plac", "placerez": "plac", "placers": "placer", "places": "plac", "placés": "plac", "placez": "plac", "placidité": "placid", "plafond": "plafond", "plafonds": "plafond", "plaida": "plaid", "plaidait": "plaid", "plaider": "plaid", "plaidoirie": "plaidoir", "plaie": "plai", "plaignait": "plaign", "plaignant": "plaign", "plaignants": "plaign", "plaignez": "plaign", "plaignirent": "plaign", "plaignit": "plaign", "plain": "plain", "plaindrai": "plaindr", "plaindrais": "plaindr", "plaindre": "plaindr", "plaine": "plain", "plaines": "plain", "plains": "plain", "plaint": "plaint", "plainte": "plaint", "plaintes": "plaint", "plaintive": "plaintiv", "plaints": "plaint", "plaira": "plair", "plairait": "plair", "plaire": "plair", "plais": "plais", "plaisaient": "plais", "plaisait": "plais", "plaisamment": "plais", "plaisance": "plaisanc", "plaisant": "plais", "plaisanta": "plaisant", "plaisantaient": "plaisant", "plaisantait": "plaisant", "plaisantant": "plaisant", "plaisantât": "plaisant", "plaisante": "plais", "plaisanté": "plaisant", "plaisantent": "plaisantent", "plaisanter": "plaisant", "plaisanterie": "plaisanter", "plaisanteries": "plaisanter", "plaisantes": "plais", "plaisants": "plais", "plaise": "plais", "plaisent": "plaisent", "plaisir": "plais", "plaisirs": "plaisir", "plaît": "plaît", "plan": "plan", "planait": "plan", "planche": "planch", "plancher": "planch", "planches": "planch", "planchette": "planchet", "planisphère": "planispher", "plans": "plan", "plant": "plant", "planta": "plant", "plantation": "plantat", "plantations": "plantat", "plante": "plant", "planté": "plant", "planter": "plant", "planterez": "plant", "planterons": "plant", "plantes": "plant", "plantés": "plant", "plantiez": "plant", "plaque": "plaqu", "plaques": "plaqu", "plastron": "plastron", "plat": "plat", "platanes": "platan", "plate": "plat", "plateau": "plateau", "platement": "plat", "plates": "plat", "platitude": "platitud", "platitudes": "platitud", "platonique": "platon", "plâtre": "plâtr", "plats": "plat", "platte": "platt", "plausible": "plausibl", "please": "pleas", "plébéien": "plébéien", "plébéiennes": "plébéien", "plébéiens": "plébéien", "plein": "plein", "pleine": "plein", "pleinement": "plein", "pleines": "plein", "pleins": "plein", "pleura": "pleur", "pleurait": "pleur", "pleurant": "pleur", "pleure": "pleur", "pleuré": "pleur", "pleurer": "pleur", "pleurera": "pleur", "pleurerait": "pleur", "pleurèrent": "pleur", "pleureur": "pleureur", "pleurez": "pleur", "pleurs": "pleur", "pleutre": "pleutr", "pleuvaient": "pleuv", "pleuvait": "pleuv", "pleuvent": "pleuvent", "pli": "pli", "plia": "pli", "pliaient": "pli", "plié": "pli", "pliée": "pli", "plier": "pli", "pliniana": "plinian", "plis": "plis", "plissa": "pliss", "plomb": "plomb", "plombées": "plomb", "plonge": "plong", "plongé": "plong", "plongea": "plong", "plongeaient": "plong", "plongeait": "plong", "plongeant": "plong", "plongée": "plong", "plonger": "plong", "plongerais": "plong", "plongés": "plong", "plours": "plour", "plu": "plu", "pluie": "plui", "pluies": "plui", "plum": "plum", "plume": "plum", "plumes": "plum", "plupart": "plupart", "plus": "plus", "plusieurs": "plusieur", "plut": "plut", "plût": "plût", "plutôt": "plutôt", "pô": "pô", "poche": "poch", "poches": "poch", "poco": "poco", "podestat": "podestat", "podestats": "podestat", "poêle": "poêl", "poème": "poem", "poemi": "poem", "poésie": "poes", "poésies": "poes", "poète": "poet", "poètes": "poet", "poétique": "poétiqu", "poids": "poid", "poignante": "poign", "poignantes": "poign", "poignard": "poignard", "poignarda": "poignard", "poignardé": "poignard", "poignardée": "poignard", "poignarder": "poignard", "poignards": "poignard", "poigne": "poign", "poignée": "poign", "poignées": "poign", "poils": "poil", "poindre": "poindr", "poing": "poing", "poings": "poing", "point": "point", "pointe": "point", "pointes": "point", "points": "point", "pointus": "pointus", "poireaux": "poireau", "poison": "poison", "poisons": "poison", "poisson": "poisson", "poissonnerie": "poissonner", "poissons": "poisson", "poissy": "poissy", "poitrail": "poitrail", "poitrine": "poitrin", "poivriers": "poivri", "pole": "pol", "poli": "pol", "police": "polic", "policeman": "policeman", "policemen": "policemen", "polices": "polic", "polichinelle": "polichinel", "polidori": "polidor", "polie": "pol", "polies": "pol", "poliment": "pol", "polis": "pol", "polish": "polish", "polisson": "polisson", "politesse": "politess", "politesses": "politess", "politique": "polit", "politiques": "polit", "polonais": "polon", "polyeucte": "polyeuct", "polygames": "polygam", "polygamie": "polygam", "polygones": "polygon", "pommades": "pommad", "pomme": "pomm", "pommeau": "pommeau", "pommelé": "pommel", "pommes": "pomm", "pommettes": "pommet", "pommiers": "pommi", "pompe": "pomp", "pompes": "pomp", "pompiers": "pompi", "pompon": "pompon", "ponceaux": "ponceau", "poncet": "poncet", "ponctualité": "ponctual", "ponctuel": "ponctuel", "ponctuelle": "ponctuel", "ponctuellement": "ponctuel", "pondéré": "ponder", "poney": "poney", "poneys": "poney", "pont": "pont", "pontarlier": "pontarli", "ponte": "pont", "ponton": "ponton", "ponts": "pont", "populace": "populac", "populaire": "populair", "population": "popul", "populations": "popul", "porcelaine": "porcelain", "porco": "porco", "porcs": "porc", "porphyre": "porphyr", "port": "port", "porta": "port", "portaient": "port", "portait": "port", "portant": "port", "portât": "port", "portative": "portat", "porte": "port", "porté": "port", "portée": "port", "portées": "port", "portefaix": "portefaix", "portefeuille": "portefeuill", "portefeuilles": "portefeuill", "portemanteau": "portemanteau", "portent": "portent", "porter": "port", "portera": "port", "porteras": "port", "portèrent": "port", "porterez": "port", "porteront": "port", "portes": "port", "portés": "port", "porteur": "porteur", "porteurs": "porteur", "portez": "port", "portier": "porti", "portière": "porti", "portières": "porti", "portiers": "porti", "portion": "portion", "portique": "portiqu", "porto": "porto", "portons": "porton", "portrait": "portr", "portraits": "portrait", "ports": "port", "portugais": "portug", "portugaise": "portugais", "posa": "pos", "posant": "pos", "posé": "pos", "posée": "pos", "posément": "pos", "poser": "pos", "posés": "pos", "positif": "posit", "position": "posit", "positions": "posit", "positive": "posit", "positivement": "posit", "possédait": "possed", "possédant": "possed", "possède": "possed", "possédé": "possed", "posséder": "possed", "possédés": "possed", "possesseur": "possesseur", "possession": "possess", "possessions": "possess", "possibilité": "possibil", "possibilités": "possibil", "possible": "possibl", "possibles": "possibl", "poste": "post", "posté": "post", "postérité": "poster", "postes": "post", "posthume": "posthum", "postillon": "postillon", "potage": "potag", "potager": "potag", "potagères": "potager", "potentats": "potentat", "pouce": "pouc", "pouces": "pouc", "poudrait": "poudr", "poudre": "poudr", "poudrées": "poudr", "poudrés": "poudr", "pouffer": "pouff", "poule": "poul", "poulet": "poulet", "poulets": "poulet", "poulies": "poul", "poumons": "poumon", "pounah": "pounah", "poupée": "poup", "poupées": "poup", "pour": "pour", "pourceaux": "pourceau", "pourparlers": "pourparler", "pourpensées": "pourpens", "pourpoint": "pourpoint", "pourpres": "pourpr", "pourquoi": "pourquoi", "pourra": "pourr", "pourrai": "pourr", "pourraient": "pourr", "pourrais": "pourr", "pourrait": "pourr", "pourras": "pourr", "pourrez": "pourr", "pourriez": "pourr", "pourrions": "pourrion", "pourriture": "pourritur", "pourrons": "pourron", "pourront": "pourront", "poursuit": "poursuit", "poursuite": "poursuit", "poursuites": "poursuit", "poursuivaient": "poursuiv", "poursuivait": "poursuiv", "poursuivant": "poursuiv", "poursuivez": "poursuiv", "poursuivi": "poursuiv", "poursuivie": "poursuiv", "poursuivis": "poursuiv", "poursuivit": "poursuiv", "poursuivrai": "poursuivr", "poursuivraient": "poursuivr", "poursuivrait": "poursuivr", "poursuivre": "poursuivr", "poursuivront": "poursuivront", "pourtant": "pourt", "pourvoir": "pourvoir", "pourvu": "pourvu", "poussa": "pouss", "poussaient": "pouss", "poussait": "pouss", "poussant": "pouss", "pousse": "pouss", "poussé": "pouss", "poussée": "pouss", "poussent": "poussent", "pousser": "pouss", "poussera": "pouss", "poussés": "pouss", "poussez": "pouss", "poussière": "poussi", "poutre": "poutr", "poutres": "poutr", "pouvaient": "pouv", "pouvais": "pouv", "pouvait": "pouv", "pouvant": "pouv", "pouvez": "pouv", "pouviez": "pouv", "pouvions": "pouvion", "pouvoir": "pouvoir", "pouvons": "pouvon", "pozzo": "pozzo", "pradt": "pradt", "prairie": "prair", "prairies": "prair", "praticable": "pratic", "pratiquais": "pratiqu", "pratique": "pratiqu", "pratiqué": "pratiqu", "pratiquée": "pratiqu", "pratiquées": "pratiqu", "pratiquer": "pratiqu", "pratiques": "pratiqu", "pré": "pré", "préalable": "préalabl", "préalablement": "préalabl", "préambule": "préambul", "précaution": "précaut", "précautions": "précaut", "précéda": "préced", "précédait": "préced", "précédé": "préced", "précédée": "préced", "précédent": "précédent", "précédente": "précédent", "précédents": "précédent", "précédèrent": "préced", "précédés": "préced", "précepte": "précept", "préceptes": "précept", "précepteur": "précepteur", "précepteurs": "précepteur", "prêcha": "prêch", "prêchaient": "prêch", "prêchait": "prêch", "prêchant": "prêch", "prêché": "prêch", "prêcher": "prêch", "prêchera": "prêch", "prêcherai": "prêch", "prêcherait": "prêch", "prêches": "prêch", "précieuse": "précieux", "précieusement": "précieux", "précieuses": "précieux", "précieux": "précieux", "précipices": "précipic", "précipita": "précipit", "précipitaient": "précipit", "précipitait": "précipit", "précipitamment": "précipit", "précipitant": "précipit", "précipitation": "précipit", "précipite": "précipit", "précipité": "précip", "précipitent": "précipitent", "précipiter": "précipit", "précipitèrent": "précipit", "précipités": "précip", "précis": "prec", "précise": "précis", "précisément": "précis", "précises": "précis", "précision": "précis", "précoces": "précoc", "précurseur": "précurseur", "précurseurs": "précurseur", "prédécesseur": "prédécesseur", "prédestiné": "prédestin", "prédestinée": "prédestin", "prédicateur": "prédiqu", "prédication": "prédiqu", "prédications": "prédiqu", "prédiction": "prédict", "prédictions": "prédict", "prédire": "prédir", "prédispose": "prédispos", "prédit": "pred", "préface": "préfac", "préfecture": "préfectur", "préféra": "préfer", "préférable": "préfer", "préférables": "préfer", "préférait": "préfer", "préfère": "préfer", "préféré": "préfer", "préférence": "préférent", "préférences": "préférent", "préférer": "préfer", "préférerez": "préfer", "préférez": "préfer", "préfériez": "préfer", "préfet": "préfet", "préfète": "préfet", "préfets": "préfet", "préjudice": "préjudic", "préjudiciable": "préjudici", "préjudicierait": "préjudici", "préjugé": "préjug", "préjugés": "préjug", "prélat": "prélat", "prélature": "prélatur", "prélevés": "prélev", "préliminaires": "préliminair", "préludé": "prélud", "prématurément": "prématur", "préméditation": "prémédit", "prémédité": "prémed", "premier": "premi", "première": "premi", "premièrement": "premi", "premières": "premi", "premiers": "premi", "prenaient": "pren", "prenais": "pren", "prenait": "pren", "prenant": "pren", "prend": "prend", "prendra": "prendr", "prendrai": "prendr", "prendrais": "prendr", "prendrait": "prendr", "prendras": "prendr", "prendre": "prendr", "prendrez": "prendr", "prendront": "prendront", "prends": "prend", "prenez": "pren", "prenne": "pren", "prennent": "prennent", "prenons": "prenon", "préoccupa": "préoccup", "préoccupait": "préoccup", "préoccupation": "préoccup", "préoccupations": "préoccup", "préoccupé": "préoccup", "préoccupée": "préoccup", "préoccuper": "préoccup", "prépara": "prépar", "préparaient": "prépar", "préparais": "prépar", "préparait": "prépar", "préparant": "prépar", "préparât": "prépar", "préparatifs": "prépar", "préparation": "prépar", "préparatoire": "préparatoir", "préparatoires": "préparatoir", "prépare": "prépar", "préparé": "prépar", "préparer": "prépar", "préparera": "prépar", "préparèrent": "prépar", "préparés": "prépar", "préparez": "prépar", "préposé": "prépos", "prepotenze": "prepotenz", "prérogative": "prérog", "près": "pres", "présage": "présag", "présageait": "présag", "présages": "présag", "presbytère": "presbyter", "prescrira": "prescr", "prescrire": "prescrir", "prescrit": "prescr", "prescrite": "prescrit", "prescrivaient": "prescriv", "prescrivait": "prescriv", "préséance": "préséanc", "préséances": "préséanc", "présence": "présenc", "présent": "présent", "présenta": "présent", "présentable": "présent", "présentaient": "présent", "présentait": "présent", "présentant": "présent", "présentation": "présent", "présentations": "présent", "présente": "présent", "présenté": "présent", "présentée": "présent", "présentées": "présent", "présentement": "présent", "présentent": "présentent", "présenter": "présent", "présentera": "présent", "présenterait": "présent", "présentèrent": "présent", "présenterez": "présent", "présentes": "présent", "présentés": "présent", "présentez": "présent", "présents": "présent", "préservant": "préserv", "préserve": "préserv", "préservé": "préserv", "préservée": "préserv", "préserver": "préserv", "présidait": "présid", "présidence": "président", "président": "président", "présidente": "président", "présidents": "président", "présider": "présid", "présomption": "présompt", "présomptions": "présompt", "presqu": "presqu", "presque": "presqu", "pressa": "press", "pressaient": "press", "pressais": "press", "pressait": "press", "pressant": "press", "pressante": "press", "presse": "press", "pressé": "press", "pressée": "press", "pressent": "pressent", "pressentiment": "pressent", "pressentiments": "pressent", "pressentir": "pressent", "presser": "press", "pressés": "press", "pression": "pression", "pressoir": "pressoir", "pressure": "pressur", "prestige": "prestig", "prestigieuse": "prestigi", "prestigieux": "prestigi", "présume": "présum", "présumé": "présum", "prêt": "prêt", "prêta": "prêt", "prêtait": "prêt", "prêtant": "prêt", "prête": "prêt", "prêté": "prêt", "prêtée": "prêt", "prétend": "prétend", "prétendaient": "prétend", "prétendait": "prétend", "prétendant": "prétend", "prétendent": "prétendent", "prétendez": "prétend", "prétendit": "prétend", "prétendons": "prétendon", "prétendrait": "prétendr", "prétendre": "prétendr", "prétends": "prétend", "prétendu": "prétendu", "prétendue": "prétendu", "prétendues": "prétendu", "prétendus": "prétendus", "prétention": "prétent", "prétentions": "prétent", "prêter": "prêt", "prêtes": "prêt", "prêtés": "prêt", "prétexta": "prétext", "prétextant": "prétext", "prétexte": "prétext", "prétextes": "prétext", "prêtez": "prêt", "prétoire": "prétoir", "prêtre": "prêtr", "prêtres": "prêtr", "prêts": "prêt", "preuve": "preuv", "preuves": "preuv", "preux": "preux", "prévalant": "préval", "prévaloir": "prévaloir", "prévenait": "préven", "prévenances": "préven", "prévenez": "préven", "prévenir": "préven", "préventions": "prévent", "prévenu": "prévenu", "prévenus": "prévenus", "prévienne": "prévien", "préviens": "prévien", "prévision": "prévis", "prévisions": "prévis", "prévoir": "prévoir", "prévois": "prévois", "prévoit": "prévoit", "prévost": "prévost", "prévoyait": "prévoi", "prévoyant": "prévoi", "prévu": "prévu", "prévue": "prévu", "pria": "pri", "priais": "pri", "priait": "pri", "priant": "pri", "prie": "pri", "prié": "pri", "prier": "pri", "prierai": "pri", "prière": "prier", "prièrent": "pri", "prières": "prier", "prieur": "prieur", "priez": "pri", "prime": "prim", "primé": "prim", "primer": "prim", "primes": "prim", "primitif": "primit", "primitives": "primit", "primo": "primo", "prina": "prin", "prince": "princ", "princes": "princ", "princesse": "princess", "princesses": "princess", "principal": "principal", "principale": "principal", "principalement": "principal", "principales": "principal", "principaux": "principal", "principe": "princip", "principes": "princip", "printemps": "printemp", "prirent": "prirent", "pris": "pris", "prise": "pris", "prises": "pris", "prison": "prison", "prisonnier": "prisonni", "prisonnière": "prisonni", "prisonniers": "prisonni", "prisons": "prison", "prit": "prit", "prît": "prît", "priva": "priv", "privation": "privat", "prive": "priv", "privé": "priv", "privée": "priv", "privées": "priv", "priverai": "priv", "privés": "priv", "privilège": "privileg", "privilèges": "privileg", "privilégié": "privilégi", "privilégiée": "privilégi", "prix": "prix", "pro": "pro", "probabilité": "probabl", "probabilités": "probabl", "probable": "probabl", "probablement": "probabl", "probantes": "prob", "probe": "prob", "probes": "prob", "probité": "probit", "problème": "problem", "problèmes": "problem", "procédé": "proced", "procédés": "proced", "procédure": "procédur", "procès": "proces", "procession": "process", "processionnellement": "processionnel", "processions": "process", "prochain": "prochain", "prochaine": "prochain", "proche": "proch", "proches": "proch", "proclamation": "proclam", "proclamations": "proclam", "proclamée": "proclam", "proclamer": "proclam", "proctor": "proctor", "procuration": "procur", "procure": "procur", "procuré": "procur", "procurée": "procur", "procurer": "procur", "procurerai": "procur", "procureur": "procureur", "procureurs": "procureur", "prodige": "prodig", "prodiges": "prodig", "prodigieuse": "prodigi", "prodigieusement": "prodigi", "prodigieux": "prodigi", "prodiguait": "prodigu", "prodigue": "prodigu", "prodiguer": "prodigu", "prodiguera": "prodigu", "prodiguerait": "prodigu", "prodiguèrent": "prodigu", "production": "product", "produirait": "produir", "produire": "produir", "produis": "produis", "produisaient": "produis", "produisait": "produis", "produisant": "produis", "produise": "produis", "produisit": "produis", "produit": "produit", "produite": "produit", "produites": "produit", "produits": "produit", "profanateur": "profan", "profane": "profan", "profanes": "profan", "proférait": "profer", "proférant": "profer", "proférées": "profer", "proférer": "profer", "proférés": "profer", "professait": "profess", "professeur": "professeur", "professeurs": "professeur", "profession": "profess", "professions": "profess", "profil": "profil", "profilait": "profil", "profilant": "profil", "profilée": "profil", "profils": "profil", "profit": "prof", "profita": "profit", "profitable": "profit", "profitait": "profit", "profitant": "profit", "profité": "profit", "profiter": "profit", "profiterait": "profit", "profitons": "profiton", "profits": "profit", "profond": "profond", "profonde": "profond", "profondément": "profond", "profondes": "profond", "profondeur": "profondeur", "profondeurs": "profondeur", "profonds": "profond", "programme": "programm", "progrès": "progres", "prohibée": "prohib", "proie": "proi", "projectiles": "projectil", "projet": "projet", "projeté": "projet", "projetée": "projet", "projets": "projet", "prolonge": "prolong", "prolongé": "prolong", "prolongea": "prolong", "prolongeaient": "prolong", "prolongeant": "prolong", "prolongée": "prolong", "prolongent": "prolongent", "prolonger": "prolong", "prolongés": "prolong", "promena": "promen", "promenade": "promenad", "promenades": "promenad", "promenaient": "promen", "promenait": "promen", "promenant": "promen", "promène": "promen", "promené": "promen", "promènent": "promènent", "promener": "promen", "promenèrent": "promen", "promenés": "promen", "promeneur": "promeneur", "promeneurs": "promeneur", "promenez": "promen", "promenions": "promen", "promesse": "promess", "promesses": "promess", "promet": "promet", "promets": "promet", "promettait": "promet", "promette": "promet", "promettent": "promettent", "promettez": "promet", "promettons": "prometton", "promettre": "promettr", "promis": "prom", "promise": "promis", "promit": "prom", "promontoire": "promontoir", "promotion": "promot", "prompte": "prompt", "promptement": "prompt", "prôner": "prôn", "prononça": "prononc", "prononçait": "prononc", "prononçant": "prononc", "prononce": "prononc", "prononcé": "prononc", "prononcée": "prononc", "prononcées": "prononc", "prononcer": "prononc", "prononcera": "prononc", "prononcerait": "prononc", "prononcèrent": "prononc", "prononcés": "prononc", "prononciation": "prononci", "prononçons": "prononçon", "pronostics": "pronostic", "propageaient": "propag", "propagèrent": "propag", "propension": "propens", "prophète": "prophet", "prophètes": "prophet", "prophétie": "prophet", "prophéties": "prophet", "propice": "propic", "propices": "propic", "propitiatoires": "propitiatoir", "proportion": "proport", "proportionné": "proportion", "proportions": "proport", "propos": "propos", "proposa": "propos", "proposait": "propos", "propose": "propos", "proposé": "propos", "proposer": "propos", "proposerait": "propos", "proposés": "propos", "proposez": "propos", "proposition": "proposit", "propositions": "proposit", "propre": "propr", "proprement": "propr", "propres": "propr", "propreté": "propret", "propriétaire": "propriétair", "propriétaires": "propriétair", "propriété": "propriet", "propriétés": "propriet", "proprio": "proprio", "prosaïquement": "prosaïqu", "prosaïques": "prosaïqu", "proscrivent": "proscrivent", "prose": "pros", "prosélytisme": "prosélyt", "prospèrent": "prosp", "prospérité": "prosper", "prospérités": "prosper", "prosterna": "prostern", "prosternait": "prostern", "prosternant": "prostern", "prostration": "prostrat", "protecteur": "protecteur", "protecteurs": "protecteur", "protection": "protect", "protections": "protect", "protège": "proteg", "protégé": "proteg", "protégeaient": "proteg", "protégeait": "proteg", "protéger": "proteg", "protégera": "proteg", "protégés": "proteg", "protégez": "proteg", "protesta": "protest", "protestait": "protest", "protestant": "protest", "protestante": "protest", "protestantisme": "protestant", "protestants": "protest", "protestations": "protest", "proteste": "protest", "protesté": "protest", "protester": "protest", "prouesse": "prouess", "prouva": "prouv", "prouvaient": "prouv", "prouvait": "prouv", "prouvant": "prouv", "prouve": "prouv", "prouvé": "prouv", "prouvée": "prouv", "prouvées": "prouv", "prouvent": "prouvent", "prouver": "prouv", "prouveraient": "prouv", "prouvez": "prouv", "provenaient": "proven", "provenait": "proven", "provence": "provenc", "proverbe": "proverb", "proverbiale": "proverbial", "providence": "provident", "provient": "provient", "province": "provinc", "provinces": "provinc", "provincial": "provincial", "provinciale": "provincial", "provinciaux": "provincial", "provision": "provis", "provisions": "provis", "provocante": "provoc", "provocatrice": "provoc", "provoqua": "provoqu", "provoquait": "provoqu", "provoqué": "provoqu", "provoquée": "provoqu", "provoquer": "provoqu", "prude": "prud", "prudemment": "prudent", "prudence": "prudenc", "prudent": "prudent", "prudente": "prudent", "prudentes": "prudent", "prudents": "prudent", "pruderie": "pruder", "prunelle": "prunel", "pruniers": "pruni", "prusse": "pruss", "prussien": "prussien", "prussienne": "prussien", "prussiens": "prussien", "psalmodie": "psalmod", "psaume": "psaum", "psaumes": "psaum", "pseudonyme": "pseudonym", "psyché": "psych", "pu": "pu", "publia": "publi", "public": "public", "publicité": "publiqu", "publics": "public", "publie": "publ", "publié": "publi", "publiée": "publi", "publiées": "publi", "publièrent": "publi", "publique": "publiqu", "publiquement": "publiqu", "publiques": "publiqu", "pudeur": "pudeur", "puériles": "puéril", "puis": "puis", "puisait": "puis", "puisant": "puis", "puisée": "puis", "puiser": "puis", "puisés": "puis", "puisqu": "puisqu", "puisque": "puisqu", "puissamment": "puiss", "puissance": "puissanc", "puissances": "puissanc", "puissant": "puiss", "puissante": "puiss", "puissantes": "puiss", "puissants": "puiss", "puisse": "puiss", "puissent": "puissent", "puissiez": "puiss", "puissions": "puission", "puits": "puit", "pullulaient": "pullul", "pullulent": "pullulent", "punch": "punch", "puni": "pun", "punie": "pun", "punir": "pun", "punira": "pun", "punirait": "pun", "punirmi": "punirm", "punis": "pun", "punisse": "pun", "punit": "pun", "punîtes": "pun", "punition": "punit", "punitions": "punit", "puntiglio": "puntiglio", "pupille": "pupill", "pupitre": "pupitr", "pur": "pur", "pure": "pur", "purement": "pur", "purent": "purent", "pureté": "puret", "purgeait": "purg", "purger": "purg", "puritaine": "puritain", "purs": "pur", "purser": "purs", "pusillanime": "pusillanim", "pusillanimes": "pusillanim", "pusillanimité": "pusillanim", "pusse": "puss", "pussent": "pussent", "put": "put", "pût": "pût", "putiphar": "putiphar", "putréfaction": "putréfact", "pyramide": "pyramid", "pyrénées": "pyren", "qu": "qu", "qua": "qua", "quadrille": "quadrill", "quadrupède": "quadruped", "quadruple": "quadrupl", "quai": "quai", "quais": "quais", "quakeresse": "quakeress", "qualifiait": "qualifi", "qualificatif": "qualif", "qualification": "qualif", "qualité": "qualit", "qualités": "qualit", "quand": "quand", "quando": "quando", "quant": "quant", "quanti": "quant", "quantième": "quantiem", "quantièmes": "quantiem", "quantité": "quantit", "quarantaine": "quarantain", "quarante": "quar", "quarantième": "quarantiem", "quart": "quart", "quarti": "quart", "quartier": "quarti", "quartiers": "quarti", "quarto": "quarto", "quarts": "quart", "quatorze": "quatorz", "quatre": "quatr", "quatrième": "quatriem", "quatrièmes": "quatriem", "que": "que", "queenstown": "queenstown", "quel": "quel", "quelconque": "quelconqu", "quelle": "quel", "quelles": "quel", "quelqu": "quelqu", "quelque": "quelqu", "quelquefois": "quelquefois", "quelques": "quelqu", "quels": "quel", "quem": "quem", "querelle": "querel", "querelles": "querel", "question": "question", "questionner": "question", "questions": "question", "quête": "quêt", "quêtes": "quêt", "quêteurs": "quêteur", "queue": "queu", "qui": "qui", "quibus": "quibus", "quichotte": "quichott", "quiconque": "quiconqu", "quid": "quid", "quille": "quill", "quint": "quint", "quintaux": "quintal", "quinte": "quint", "quinzaine": "quinzain", "quinze": "quinz", "quinzième": "quinziem", "quitta": "quitt", "quittai": "quitt", "quittais": "quitt", "quittait": "quitt", "quittant": "quitt", "quittât": "quitt", "quitte": "quitt", "quitté": "quitt", "quittent": "quittent", "quitter": "quitt", "quittera": "quitt", "quitterai": "quitt", "quitterait": "quitt", "quittèrent": "quitt", "quitterez": "quitt", "quitterons": "quitt", "quittes": "quitt", "quittés": "quitt", "quittez": "quitt", "quittons": "quitton", "quoerens": "quoeren", "quoi": "quoi", "quoiqu": "quoiqu", "quoique": "quoiqu", "quotidien": "quotidien", "quotidienne": "quotidien", "quotidiennement": "quotidien", "quotité": "quotit", "r": "r", "rabâchage": "rabâchag", "rabaisser": "rabaiss", "raccommodait": "raccommod", "raccommodant": "raccommod", "raccommodé": "raccommod", "raccommodements": "raccommod", "raccommoder": "raccommod", "raccordent": "raccordent", "raccourcis": "raccourc", "race": "rac", "races": "rac", "rachète": "rachet", "racheter": "rachet", "racine": "racin", "raconta": "racont", "racontait": "racont", "racontant": "racont", "racontât": "racont", "raconte": "racont", "raconté": "racont", "racontent": "racontent", "raconter": "racont", "raconterai": "racont", "raconteraient": "racont", "raconterait": "racont", "racontèrent": "racont", "raconterons": "racont", "racontés": "racont", "racontez": "racont", "rade": "rad", "radieux": "radieux", "radouci": "radouc", "rafale": "rafal", "rafales": "rafal", "raffinée": "raffin", "rafraîchie": "rafraîch", "rafraîchir": "rafraîch", "rafraîchissements": "rafraîch", "rafraîchit": "rafraîch", "rage": "rag", "rageant": "rag", "rages": "rag", "rageurs": "rageur", "raide": "raid", "raidi": "raid", "raidie": "raid", "raidirent": "raid", "raies": "rai", "rail": "rail", "raillerie": "railler", "railroad": "railroad", "rails": "rail", "railway": "railway", "railways": "railway", "raison": "raison", "raisonna": "raison", "raisonnable": "raison", "raisonnablement": "raison", "raisonnables": "raison", "raisonnais": "raison", "raisonnait": "raison", "raisonnante": "raison", "raisonne": "raison", "raisonnement": "raison", "raisonnements": "raison", "raisonner": "raison", "raisonneur": "raisonneur", "raisons": "raison", "rajah": "rajah", "rajahs": "rajah", "rajeuni": "rajeun", "râlaient": "râl", "ralentie": "ralent", "ralentir": "ralent", "ralentissant": "ralent", "ralentit": "ralent", "ralliait": "ralli", "rallier": "ralli", "ralluma": "rallum", "ralph": "ralph", "ramassa": "ramass", "ramassaient": "ramass", "ramassait": "ramass", "ramasse": "ram", "ramassé": "ramass", "ramasser": "ramass", "ramasseraient": "ramass", "ramassés": "ramass", "ramassis": "ramass", "ramayana": "ramayan", "rambarde": "rambard", "rambo": "rambo", "rame": "ram", "ramena": "ramen", "ramenait": "ramen", "ramenant": "ramen", "ramener": "ramen", "rames": "ram", "rameurs": "rameur", "ramifiant": "ramifi", "ramifications": "ramif", "ramifiées": "ramifi", "rampant": "ramp", "rampe": "ramp", "rampes": "ramp", "ramure": "ramur", "ramures": "ramur", "ranchos": "ranchos", "rancune": "rancun", "rancunier": "rancuni", "rang": "rang", "rangé": "rang", "rangea": "rang", "rangeait": "rang", "rangée": "rang", "rangées": "rang", "ranger": "rang", "rangerait": "rang", "rangèrent": "rang", "ranges": "rang", "rangés": "rang", "rangoon": "rangoon", "rangs": "rang", "ranima": "ranim", "ranimé": "ranim", "ranimer": "ranim", "ranimèrent": "ranim", "ranuce": "ranuc", "rapacité": "rapac", "rapatrier": "rapatri", "râpé": "râp", "râpés": "râp", "rapide": "rapid", "rapidement": "rapid", "rapides": "rapid", "rapidité": "rapid", "rappela": "rappel", "rappelaient": "rappel", "rappelait": "rappel", "rappelant": "rappel", "rappelât": "rappel", "rappelé": "rappel", "rappelée": "rappel", "rappeler": "rappel", "rappelèrent": "rappel", "rappelés": "rappel", "rappelez": "rappel", "rappelle": "rappel", "rappellent": "rappellent", "rappellera": "rappel", "rappellerai": "rappel", "rappellerais": "rappel", "rappellerait": "rappel", "rappellerez": "rappel", "rapport": "rapport", "rapporta": "rapport", "rapportaient": "rapport", "rapportait": "rapport", "rapportant": "rapport", "rapportât": "rapport", "rapporte": "rapport", "rapporté": "rapport", "rapportée": "rapport", "rapportées": "rapport", "rapporter": "rapport", "rapporterait": "rapport", "rapportèrent": "rapport", "rapporterons": "rapport", "rapportes": "rapport", "rapporteur": "rapporteur", "rapports": "rapport", "rapprocha": "rapproch", "rapprochaient": "rapproch", "rapprochait": "rapproch", "rapprochant": "rapproch", "rapproche": "rapproch", "rapproché": "rapproch", "rapprochées": "rapproch", "rapprocher": "rapproch", "rapprocherait": "rapproch", "rapprochèrent": "rapproch", "rapprochés": "rapproch", "raquettes": "raquet", "rare": "rar", "raréfiaient": "raréfi", "rarement": "rar", "rares": "rar", "ras": "ras", "rasant": "ras", "rasé": "ras", "rasée": "ras", "rasées": "ras", "raser": "ras", "raserait": "ras", "rassasié": "rassasi", "rassasiée": "rassasi", "rassasier": "rassasi", "rassemblait": "rassembl", "rassemblé": "rassembl", "rassembler": "rassembl", "rassemblés": "rassembl", "rasseoir": "rasseoir", "rasséréna": "rasséren", "rasséréner": "rasséren", "rassi": "rass", "rassit": "rass", "rassura": "rassur", "rassuraient": "rassur", "rassurait": "rassur", "rassure": "rassur", "rassuré": "rassur", "rassurée": "rassur", "rassurer": "rassur", "rassurez": "rassur", "ratine": "ratin", "rationnelle": "rationnel", "rationnellement": "rationnel", "rats": "rat", "rattachait": "rattach", "ravages": "ravag", "ravaler": "raval", "ravenne": "raven", "raversi": "ravers", "ravi": "rav", "ravie": "rav", "ravins": "ravin", "ravir": "rav", "ravis": "rav", "raviser": "ravis", "ravissait": "rav", "ravissant": "rav", "ravissante": "rav", "ravissantes": "rav", "ravissants": "rav", "ravissement": "rav", "ravisseur": "ravisseur", "ravisseurs": "ravisseur", "ravit": "rav", "ravoir": "ravoir", "rayées": "rai", "raynal": "raynal", "rayon": "rayon", "rayonna": "rayon", "rayons": "rayon", "razori": "razor", "réaction": "réaction", "reading": "reading", "réal": "réal", "réalisable": "réalis", "réaliser": "réalis", "réaliste": "réalist", "réalité": "réalit", "réapprovisionner": "réapprovision", "rébarbatif": "rébarb", "rébarbative": "rébarb", "rebâtir": "rebât", "rebelle": "rebel", "rebelles": "rebel", "rébellion": "rébellion", "récapitulant": "récapitul", "récemment": "récent", "récente": "récent", "réception": "récept", "réceptions": "récept", "recette": "recet", "recettes": "recet", "recevaient": "recev", "recevait": "recev", "recevant": "recev", "recevez": "recev", "receviez": "recev", "recevoir": "recevoir", "recevra": "recevr", "recevrai": "recevr", "recevrait": "recevr", "recevrez": "recevr", "recharger": "recharg", "rechargez": "recharg", "réchauffé": "réchauff", "rechercha": "recherch", "recherchait": "recherch", "recherche": "recherch", "recherché": "recherch", "rechercher": "recherch", "rechercheront": "recherch", "recherches": "recherch", "recherchés": "recherch", "rechignant": "rechign", "rechigné": "rechign", "rechute": "rechut", "récidive": "récid", "reciproquement": "reciproqu", "réciproquement": "réciproqu", "recit": "rec", "récit": "rec", "récita": "récit", "récitaient": "récit", "récitait": "récit", "récitant": "récit", "récitatif": "récit", "récitation": "récit", "récite": "récit", "récité": "récit", "réciter": "récit", "réciterai": "récit", "réciterez": "récit", "récits": "récit", "réclamait": "réclam", "réclame": "réclam", "réclamée": "réclam", "réclamer": "réclam", "réclamés": "réclam", "reclus": "reclus", "réclusion": "réclus", "reçois": "reçois", "reçoit": "reçoit", "reçoive": "reçoiv", "reçoivent": "reçoivent", "récolte": "récolt", "recommanda": "recommand", "recommandait": "recommand", "recommandant": "recommand", "recommandation": "recommand", "recommandations": "recommand", "recommande": "recommand", "recommandé": "recommand", "recommander": "recommand", "recommandés": "recommand", "recommandez": "recommand", "recommença": "recommenc", "recommençaient": "recommenc", "recommençait": "recommenc", "recommençât": "recommenc", "recommence": "recomment", "recommencé": "recommenc", "recommencer": "recommenc", "recommencerai": "recommenc", "recommenceraient": "recommenc", "recommencerait": "recommenc", "recommencèrent": "recommenc", "recommencez": "recommenc", "récompense": "récompens", "récompensé": "récompens", "récompensée": "récompens", "recomptait": "recompt", "réconciliation": "réconcili", "réconcilie": "réconcil", "reconduire": "reconduir", "reconduisait": "reconduis", "reconduisant": "reconduis", "reconduisit": "reconduis", "reconduit": "reconduit", "reconnais": "recon", "reconnaissable": "reconnaiss", "reconnaissaient": "reconnaiss", "reconnaissait": "reconnaiss", "reconnaissance": "reconnaiss", "reconnaissant": "reconnaiss", "reconnaisse": "reconnaiss", "reconnaissent": "reconnaissent", "reconnaissez": "reconnaiss", "reconnaît": "reconnaît", "reconnaîtra": "reconnaîtr", "reconnaître": "reconnaîtr", "reconnu": "reconnu", "reconnue": "reconnu", "reconnurent": "reconnurent", "reconnus": "reconnus", "reconnut": "reconnut", "reconquérir": "reconquer", "reconquerrait": "reconquerr", "reconquis": "reconqu", "recoucher": "recouch", "recoudre": "recoudr", "recourir": "recour", "recours": "recour", "recouvert": "recouvert", "recouverte": "recouvert", "recouverts": "recouvert", "recouvra": "recouvr", "recouvrait": "recouvr", "recouvrée": "recouvr", "recouvrer": "recouvr", "recouvrir": "recouvr", "recouvrît": "recouvr", "récréation": "récréat", "récréations": "récréat", "récriait": "récri", "récrier": "récri", "récrièrent": "récri", "recrues": "recru", "recrute": "recrut", "recruter": "recrut", "rectifia": "rectifi", "rectifiait": "rectifi", "rectifier": "rectifi", "rectiligne": "rectilign", "reçu": "reçu", "reçue": "reçu", "recueil": "recueil", "recueillent": "recueillent", "recueilli": "recueil", "recueillir": "recueil", "recueillirent": "recueil", "reçues": "reçu", "recula": "recul", "reculant": "recul", "recule": "recul", "reculé": "recul", "reculer": "recul", "reçurent": "reçurent", "reçus": "reçus", "reçut": "reçut", "reçût": "reçût", "rédacteur": "rédacteur", "rédacteurs": "rédacteur", "rédaction": "rédact", "redemande": "redemand", "redescend": "redescend", "redescendant": "redescend", "redescendit": "redescend", "redescendre": "redescendr", "redescendue": "redescendu", "redevenaient": "redeven", "redevenait": "redeven", "redevenant": "redeven", "redevenu": "redevenu", "redevenue": "redevenu", "redevint": "redevint", "rédigea": "rédig", "rédigée": "rédig", "rédigerait": "rédig", "redingote": "redingot", "redingotes": "redingot", "redira": "red", "redits": "redit", "redonner": "redon", "redoubla": "redoubl", "redoublaient": "redoubl", "redoublait": "redoubl", "redoublant": "redoubl", "redouble": "redoubl", "redoublé": "redoubl", "redoublement": "redoubl", "redoubler": "redoubl", "redoublerait": "redoubl", "redoublèrent": "redoubl", "redoutables": "redout", "redoutaient": "redout", "redoutait": "redout", "redoute": "redout", "redouté": "redout", "redouter": "redout", "redoutons": "redouton", "redressait": "redress", "redresser": "redress", "réduiras": "réduir", "réduire": "réduir", "réduirons": "réduiron", "réduisait": "réduis", "réduisent": "réduisent", "réduisit": "réduis", "réduit": "réduit", "réduite": "réduit", "réduites": "réduit", "réduits": "réduit", "réel": "réel", "réélection": "réélect", "réelle": "réel", "réellement": "réel", "réelles": "réel", "réels": "réel", "réexpédié": "réexpédi", "refaire": "refair", "refaisait": "refais", "refaites": "refait", "réfectoire": "réfectoir", "références": "référent", "referma": "referm", "refermé": "referm", "refermée": "referm", "refermer": "referm", "réfléchi": "réflech", "réfléchir": "réflech", "réfléchirez": "réflech", "réfléchissait": "réflech", "réfléchissant": "réflech", "réfléchissez": "réflech", "réfléchit": "réflech", "réfléchît": "réflech", "reflet": "reflet", "reflétait": "reflet", "reflète": "reflet", "reflets": "reflet", "réflexion": "réflexion", "réflexions": "réflex", "reflua": "reflu", "refluait": "reflu", "reform": "reform", "refouler": "refoul", "réfractaire": "réfractair", "réfractaires": "réfractair", "refrain": "refrain", "refrains": "refrain", "refroidies": "refroid", "refroidir": "refroid", "refuge": "refug", "réfugia": "réfugi", "réfugiait": "réfugi", "réfugiant": "réfugi", "réfugie": "réfug", "réfugié": "réfugi", "réfugiée": "réfugi", "réfugier": "réfugi", "réfugieront": "réfugi", "réfugiés": "réfugi", "réfugiez": "réfug", "refus": "refus", "refusa": "refus", "refusait": "refus", "refusant": "refus", "refuse": "refus", "refusé": "refus", "refusée": "refus", "refusées": "refus", "refusent": "refusent", "refuser": "refus", "refuserait": "refus", "refuseriez": "refus", "refusez": "refus", "refusiez": "refus", "réfutés": "réfut", "regagna": "regagn", "regagnaient": "regagn", "regagnait": "regagn", "regagné": "regagn", "regagner": "regagn", "régalait": "régal", "regard": "regard", "regarda": "regard", "regardaient": "regard", "regardais": "regard", "regardait": "regard", "regardant": "regard", "regarde": "regard", "regardé": "regard", "regardée": "regard", "regardent": "regardent", "regarder": "regard", "regardera": "regard", "regarderai": "regard", "regardèrent": "regard", "regarderez": "regard", "regarderont": "regard", "regardés": "regard", "regardez": "regard", "regards": "regard", "régate": "régat", "régénérateur": "régéner", "régénérer": "régéner", "regent": "regent", "régent": "régent", "regimbait": "regimb", "régime": "régim", "régiment": "reg", "régiments": "reg", "régimes": "régim", "région": "région", "régions": "région", "registre": "registr", "registres": "registr", "régla": "regl", "réglant": "regl", "règle": "regl", "réglé": "regl", "réglée": "regl", "règlement": "regl", "réglementaire": "réglementair", "réglementaires": "réglementair", "réglementation": "réglement", "réglementée": "réglement", "règlements": "regl", "régler": "regl", "réglera": "regl", "règles": "regl", "réglés": "regl", "régna": "regn", "régnaient": "regn", "régnait": "regn", "régnant": "regn", "régnante": "regn", "règne": "regn", "régné": "regn", "règnent": "règnent", "régner": "regn", "régnera": "regn", "régnez": "regn", "régnons": "régnon", "regorgeant": "regorg", "regorgent": "regorgent", "regret": "regret", "regrets": "regret", "regrettaient": "regret", "regrettait": "regret", "regrette": "regret", "regrettée": "regret", "regrettées": "regret", "regretter": "regret", "regretterais": "regret", "regretteriez": "regret", "regrettez": "regret", "régularisé": "régularis", "régularité": "régular", "régulateur": "régul", "régulier": "réguli", "régulière": "réguli", "régulièrement": "réguli", "rehausse": "rehauss", "rein": "rein", "reina": "rein", "reine": "rein", "reins": "rein", "réintégré": "réintegr", "réintégrés": "réintegr", "réitérée": "réiter", "rejaillir": "rejaill", "rejeta": "rejet", "rejeté": "rejet", "rejettera": "rejet", "rejoignait": "rejoign", "rejoignant": "rejoign", "rejoignent": "rejoignent", "rejoignirent": "rejoign", "rejoignit": "rejoign", "rejoindra": "rejoindr", "rejoindre": "rejoindr", "rejoint": "rejoint", "réjouie": "réjou", "réjouir": "réjou", "réjouirez": "réjou", "réjouissait": "réjou", "réjouissances": "réjouiss", "réjouit": "réjou", "relâchait": "relâch", "relâche": "relâch", "relâché": "relâch", "relâchées": "relâch", "relâcher": "relâch", "relais": "rel", "relancer": "relanc", "relatif": "relat", "relatifs": "relat", "relation": "relat", "relations": "relat", "relative": "relat", "relativement": "relat", "relatives": "relat", "relégué": "relégu", "reléguée": "relégu", "reléguer": "relégu", "releva": "relev", "relevaient": "relev", "relevait": "relev", "relevant": "relev", "relevé": "relev", "relevée": "relev", "relevées": "relev", "relèvent": "relèvent", "relever": "relev", "relèveras": "relev", "relié": "reli", "reliée": "reli", "reliées": "reli", "relief": "relief", "reliefs": "relief", "relier": "reli", "reliés": "reli", "religieuse": "religi", "religieusement": "religi", "religieuses": "religi", "religieux": "religi", "religion": "religion", "religions": "relig", "religiosité": "religios", "reliquat": "reliquat", "relique": "reliqu", "relire": "relir", "relis": "rel", "relisais": "relis", "relisait": "relis", "relise": "relis", "relu": "relu", "relut": "relut", "rem": "rem", "remariais": "remari", "remarqua": "remarqu", "remarquable": "remarqu", "remarquablement": "remarqu", "remarquables": "remarqu", "remarquaient": "remarqu", "remarquait": "remarqu", "remarquant": "remarqu", "remarquâtes": "remarqu", "remarque": "remarqu", "remarqué": "remarqu", "remarquée": "remarqu", "remarquer": "remarqu", "remarquera": "remarqu", "remarquèrent": "remarqu", "remarquerez": "remarqu", "remarques": "remarqu", "remarqués": "remarqu", "remarquez": "remarqu", "rembourse": "rembours", "remboursement": "rembours", "rembourser": "rembours", "rembrunit": "rembrun", "remède": "remed", "remèdes": "remed", "remédier": "remédi", "remercia": "remerci", "remerciait": "remerci", "remerciant": "remerci", "remercie": "remerc", "remercié": "remerci", "remerciée": "remerci", "remerciements": "remerci", "remercier": "remerci", "remercierais": "remerci", "remercierait": "remerci", "remercîment": "remercî", "remercîments": "remercî", "remet": "remet", "remets": "remet", "remettait": "remet", "remettant": "remet", "remette": "remet", "remettent": "remettent", "remettra": "remettr", "remettrai": "remettr", "remettrais": "remettr", "remettrait": "remettr", "remettras": "remettr", "remettre": "remettr", "remettrez": "remettr", "remiers": "remi", "remirent": "rem", "remis": "rem", "remise": "remis", "remises": "remis", "rémission": "rémiss", "remit": "rem", "remonta": "remont", "remontait": "remont", "remontant": "remont", "remonte": "remont", "remonté": "remont", "remontent": "remontent", "remonter": "remont", "remonterait": "remont", "remontez": "remont", "remontrance": "remontr", "remontrances": "remontr", "remontrer": "remontr", "remords": "remord", "remorquant": "remorqu", "remous": "remous", "rempart": "rempart", "remparts": "rempart", "remplaça": "remplac", "remplaçaient": "remplac", "remplaçait": "remplac", "remplace": "remplac", "remplacé": "remplac", "remplacée": "remplac", "remplacement": "remplac", "remplacer": "remplac", "remplacera": "remplac", "remplacés": "remplac", "rempli": "rempl", "remplie": "rempl", "remplies": "rempl", "remplir": "rempl", "remplirent": "rempl", "remplis": "rempl", "remplissaient": "rempl", "remplissait": "rempl", "remplissant": "rempl", "remplissent": "rempl", "remplit": "rempl", "remplumai": "remplum", "remportant": "remport", "remporter": "remport", "remua": "remu", "remuant": "remu", "remue": "remu", "remuée": "remu", "remuer": "remu", "remues": "remu", "rémunération": "rémuner", "renaissant": "renaiss", "renaissantes": "renaiss", "renaître": "renaîtr", "rênal": "rênal", "renard": "renard", "rencontra": "rencontr", "rencontrai": "rencontr", "rencontrait": "rencontr", "rencontrâmes": "rencontr", "rencontrant": "rencontr", "rencontrassent": "rencontr", "rencontrât": "rencontr", "rencontre": "rencontr", "rencontré": "rencontr", "rencontrée": "rencontr", "rencontrées": "rencontr", "rencontrent": "rencontrent", "rencontrer": "rencontr", "rencontrerai": "rencontr", "rencontreraient": "rencontr", "rencontrèrent": "rencontr", "rencontres": "rencontr", "rencontrés": "rencontr", "rend": "rend", "rendaient": "rend", "rendait": "rend", "rendant": "rend", "rende": "rend", "rendent": "rendent", "rendez": "rend", "rendirent": "rend", "rendit": "rend", "rendît": "rend", "rendra": "rendr", "rendrai": "rendr", "rendrait": "rendr", "rendre": "rendr", "rendrez": "rendr", "rendriez": "rendr", "rendrons": "rendron", "rendront": "rendront", "rends": "rend", "rendu": "rendu", "rendue": "rendu", "rendus": "rendus", "rêne": "rên", "rené": "ren", "renfermait": "renferm", "renfermant": "renferm", "renferme": "renferm", "renfermé": "renferm", "renfermée": "renferm", "renfermer": "renferm", "renforcé": "renforc", "renfort": "renfort", "renfrogné": "renfrogn", "reniera": "reni", "reno": "reno", "renom": "renom", "renommé": "renomm", "renommée": "renomm", "renonça": "renonc", "renonçait": "renonc", "renonce": "renonc", "renoncé": "renonc", "renoncer": "renonc", "renoncera": "renonc", "renoncerais": "renonc", "renoncez": "renonc", "renoué": "renou", "renouer": "renou", "renouvela": "renouvel", "renouvelait": "renouvel", "renouvelant": "renouvel", "renouvelé": "renouvel", "renouvelées": "renouvel", "renouveler": "renouvel", "renouvelèrent": "renouvel", "renouvellement": "renouvel", "renouvellent": "renouvellent", "renseignement": "renseign", "renseignements": "renseign", "rente": "rent", "rentes": "rent", "rentra": "rentr", "rentrait": "rentr", "rentrant": "rentr", "rentrât": "rentr", "rentre": "rentr", "rentré": "rentr", "rentrée": "rentr", "rentrent": "rentrent", "rentrer": "rentr", "rentrera": "rentr", "rentrerai": "rentr", "rentrèrent": "rentr", "rentrerez": "rentr", "rentrés": "rentr", "rentrons": "rentron", "renverra": "renverr", "renverraient": "renverr", "renverrez": "renverr", "renverrons": "renverron", "renversa": "renvers", "renversant": "renvers", "renverse": "renvers", "renversé": "renvers", "renversée": "renvers", "renversement": "renvers", "renverser": "renvers", "renverseront": "renvers", "renvoie": "renvoi", "renvoya": "renvoi", "renvoyait": "renvoi", "renvoyant": "renvoi", "renvoyé": "renvoi", "renvoyée": "renvoi", "renvoyer": "renvoi", "renvoyèrent": "renvoi", "renvoyez": "renvoi", "renvoyiez": "renvoi", "renvoyons": "renvoyon", "renza": "renz", "repaire": "repair", "répandaient": "répand", "répandait": "répand", "répandant": "répand", "répandent": "répandent", "répandit": "répand", "répandît": "répand", "répandrait": "répandr", "répandre": "répandr", "répandu": "répandu", "répandue": "répandu", "répandues": "répandu", "reparaissaient": "reparaiss", "reparaissait": "reparaiss", "reparaîtra": "reparaîtr", "reparaîtrai": "reparaîtr", "reparaîtrait": "reparaîtr", "reparaître": "reparaîtr", "reparaîtrons": "reparaîtron", "réparation": "répar", "réparations": "répar", "réparée": "répar", "réparent": "réparent", "réparer": "répar", "répareraient": "répar", "réparerait": "répar", "répareras": "répar", "reparlait": "reparl", "repartaient": "repart", "reparti": "repart", "repartie": "repart", "reparties": "repart", "repartir": "repart", "repartirent": "repart", "repartit": "repart", "répartition": "répartit", "repartons": "reparton", "reparu": "reparu", "reparurent": "reparurent", "reparut": "reparut", "repas": "rep", "repassa": "repass", "repassai": "repass", "repassait": "repass", "repassant": "repass", "repasser": "repass", "repasserait": "repass", "repens": "repen", "repensant": "repens", "repenser": "repens", "repentie": "repent", "repentir": "repent", "reperdre": "reperdr", "répéta": "répet", "répétaient": "répet", "répétait": "répet", "répétant": "répet", "répétât": "répet", "répète": "répet", "répété": "répet", "répétée": "répet", "répétées": "répet", "répètent": "répètent", "repeter": "repet", "répéter": "répet", "répétera": "répet", "répéterai": "répet", "répéterait": "répet", "répéterons": "répet", "répéteront": "répet", "répétez": "répet", "répétions": "répet", "répétiteur": "répétiteur", "répit": "rep", "replaça": "replac", "replaçant": "replac", "replacer": "replac", "repliée": "repli", "replièrent": "repli", "répliqua": "répliqu", "répliquait": "répliqu", "réplique": "répliqu", "répliquer": "répliqu", "répliquerai": "répliqu", "répliques": "répliqu", "replis": "repl", "répond": "répond", "répondaient": "répond", "répondais": "répond", "répondait": "répond", "répondant": "répond", "répondez": "répond", "répondiez": "répond", "répondirent": "répond", "répondit": "répond", "répondît": "répond", "répondra": "répondr", "répondrai": "répondr", "répondrais": "répondr", "répondrait": "répondr", "répondras": "répondr", "répondre": "répondr", "répondrez": "répondr", "réponds": "répond", "répondu": "répondu", "réponse": "répons", "réponses": "répons", "reportant": "report", "reporté": "report", "reporters": "reporter", "repos": "repos", "reposa": "repos", "reposait": "repos", "repose": "repos", "reposé": "repos", "reposer": "repos", "reposera": "repos", "reposoir": "reposoir", "reposoirs": "reposoir", "repoussa": "repouss", "repoussais": "repouss", "repoussait": "repouss", "repoussant": "repouss", "repousse": "repouss", "repoussé": "repouss", "repoussée": "repouss", "repoussées": "repouss", "repousser": "repouss", "repousserait": "repouss", "repoussés": "repouss", "repoussez": "repouss", "reprenaient": "repren", "reprenait": "repren", "reprenant": "repren", "reprend": "reprend", "reprendra": "reprendr", "reprendrai": "reprendr", "reprendrait": "reprendr", "reprendre": "reprendr", "reprendrons": "reprendron", "reprends": "reprend", "reprenez": "repren", "représenta": "représent", "représentaient": "représent", "représentait": "représent", "représentant": "représent", "représentation": "représent", "representations": "represent", "représentations": "représent", "représente": "représent", "représenté": "représent", "représenter": "représent", "réprimande": "réprimand", "réprimer": "réprim", "reprirent": "repr", "repris": "repr", "reprise": "repris", "reprises": "repris", "reprit": "repr", "reprît": "repr", "reprocha": "reproch", "reprochaient": "reproch", "reprochait": "reproch", "reprochant": "reproch", "reproche": "reproch", "reproché": "reproch", "reprochée": "reproch", "reprocher": "reproch", "reprochera": "reproch", "reprocherai": "reproch", "reprocherais": "reproch", "reproches": "reproch", "reprochons": "reprochon", "reproduire": "reproduir", "reproduisait": "reproduis", "reproduisent": "reproduisent", "reproduisirent": "reproduis", "reproduisit": "reproduis", "reproduit": "reproduit", "reprouvez": "reprouv", "reptation": "reptat", "reptiles": "reptil", "républicain": "républicain", "républicains": "républicain", "republican": "republican", "république": "républ", "républiques": "républ", "répudié": "répudi", "répugnait": "répugn", "répugnance": "répugn", "réputation": "réput", "réputations": "réput", "requiers": "requi", "requise": "requis", "réquisitionnaire": "réquisitionnair", "rescousse": "rescouss", "rescrit": "rescr", "réseau": "réseau", "resegon": "resegon", "resembleth": "resembleth", "réserva": "réserv", "réservait": "réserv", "réserve": "réserv", "réservé": "réserv", "réservée": "réserv", "réservées": "réserv", "réserver": "réserv", "réserves": "réserv", "réservés": "réserv", "réservoir": "réservoir", "résidais": "résid", "résidait": "résid", "résidence": "résident", "résigna": "résign", "résignation": "résign", "résigné": "résign", "résignée": "résign", "résigner": "résign", "résines": "résin", "résista": "résist", "résistaient": "résist", "résistait": "résist", "résistance": "résist", "résistant": "résist", "résiste": "résist", "résister": "résist", "résisterez": "résist", "résistes": "résist", "résolu": "résolu", "résolue": "résolu", "résolues": "résolu", "résolument": "résolu", "résolurent": "résolurent", "résolut": "résolut", "résolution": "résolu", "résolutions": "résolu", "résonnaient": "réson", "résoudre": "résoudr", "respect": "respect", "respecta": "respect", "respectable": "respect", "respectables": "respect", "respectais": "respect", "respectait": "respect", "respectant": "respect", "respectante": "respect", "respecte": "respect", "respecté": "respect", "respecter": "respect", "respecterais": "respect", "respectés": "respect", "respective": "respect", "respects": "respect", "respectueuse": "respectu", "respectueusement": "respectu", "respectueuses": "respectu", "respectueux": "respectu", "respira": "resp", "respiraient": "resp", "respirait": "resp", "respirant": "respir", "respiration": "respir", "respire": "respir", "respirer": "respir", "respirerai": "respir", "respirons": "resp", "resplendissant": "resplend", "resplendissante": "resplend", "resplendissent": "resplend", "responsable": "respons", "ressemblaient": "ressembl", "ressemblait": "ressembl", "ressemblance": "ressembl", "ressemblant": "ressembl", "ressemblât": "ressembl", "ressemble": "ressembl", "ressemblé": "ressembl", "ressemblent": "ressemblent", "ressembler": "ressembl", "ressemblera": "ressembl", "ressemblez": "ressembl", "ressens": "ressen", "ressentait": "ressent", "ressentir": "ressent", "ressentit": "ressent", "resserré": "resserr", "ressort": "ressort", "ressorti": "ressort", "ressortir": "ressort", "ressorts": "ressort", "ressource": "ressourc", "ressources": "ressourc", "ressuscité": "ressusc", "ressuscitèrent": "ressuscit", "resta": "rest", "restai": "rest", "restaient": "rest", "restait": "rest", "restant": "rest", "restassent": "rest", "restât": "rest", "restaurant": "restaur", "restaurants": "restaur", "restauration": "restaur", "restaurations": "restaur", "restauré": "restaur", "reste": "rest", "resté": "rest", "restée": "rest", "restées": "rest", "restent": "restent", "rester": "rest", "restera": "rest", "resterai": "rest", "resteraient": "rest", "resterais": "rest", "resterait": "rest", "resteras": "rest", "restèrent": "rest", "resterez": "rest", "resteront": "rest", "restes": "rest", "restés": "rest", "restez": "rest", "restiez": "rest", "restitué": "restitu", "restituée": "restitu", "restituit": "restituit", "restitution": "restitu", "restriction": "restrict", "résultait": "résult", "résultat": "résultat", "résultats": "résultat", "résumait": "résum", "résumé": "résum", "résumer": "résum", "résumons": "résumon", "résurrection": "résurrect", "rétabli": "rétabl", "rétablie": "rétabl", "rétablir": "rétabl", "rétabliras": "rétabl", "rétablissait": "rétabl", "rétablissement": "rétabl", "rétablit": "rétabl", "retard": "retard", "retardait": "retard", "retardant": "retard", "retardataire": "retardatair", "retarde": "retard", "retardé": "retard", "retardée": "retard", "retardent": "retardent", "retarder": "retard", "retardez": "retard", "retards": "retard", "retenaient": "reten", "retenait": "reten", "retenant": "reten", "retenez": "reten", "retenir": "reten", "retenti": "retent", "retentir": "retent", "retentiraient": "retent", "retentirait": "retent", "retentirent": "retent", "retentissaient": "retent", "retentissait": "retent", "retentissant": "retent", "retentissement": "retent", "retentit": "retent", "retenu": "retenu", "retenue": "retenu", "retenues": "retenu", "retenus": "retenus", "retiendrai": "retiendr", "retienne": "retien", "retiennent": "retiennent", "retient": "retient", "retinrent": "retinrent", "retint": "retint", "retira": "ret", "retiraient": "ret", "retirait": "ret", "retirant": "retir", "retirât": "retir", "retire": "retir", "retiré": "retir", "retirée": "retir", "retirées": "retir", "retirer": "retir", "retirerais": "retir", "retirerait": "retir", "retirèrent": "retir", "retirerez": "retir", "retirés": "retir", "retirez": "ret", "retirons": "ret", "retomba": "retomb", "retombait": "retomb", "retombant": "retomb", "retombe": "retomb", "retombée": "retomb", "retomber": "retomb", "retomberait": "retomb", "retombes": "retomb", "retour": "retour", "retourna": "retourn", "retournaient": "retourn", "retournait": "retourn", "retournant": "retourn", "retourne": "retourn", "retourné": "retourn", "retourner": "retourn", "retournèrent": "retourn", "retournez": "retourn", "retracer": "retrac", "rétracte": "rétract", "retraite": "retrait", "retraites": "retrait", "retrancher": "retranch", "retranchés": "retranch", "rétréci": "rétrec", "rétrécir": "rétrec", "rétrécissait": "rétrec", "retrempait": "retremp", "retrempé": "retremp", "rétribution": "rétribu", "rétrospectif": "rétrospect", "retrouva": "retrouv", "retrouvaient": "retrouv", "retrouvait": "retrouv", "retrouvant": "retrouv", "retrouvât": "retrouv", "retrouve": "retrouv", "retrouvé": "retrouv", "retrouvée": "retrouv", "retrouver": "retrouv", "retrouvera": "retrouv", "retrouverai": "retrouv", "retrouvèrent": "retrouv", "retrouverez": "retrouv", "retrouverons": "retrouv", "retz": "retz", "réuni": "réun", "réunie": "réun", "réunies": "réun", "réunion": "réunion", "réunir": "réun", "réunirent": "réun", "réuniront": "réun", "réunis": "réun", "réunissaient": "réun", "réunissait": "réun", "réunissant": "réun", "réunissent": "réun", "réunissez": "réun", "réunit": "réun", "réussi": "réuss", "réussir": "réuss", "réussirais": "réuss", "réussis": "réuss", "réussissait": "réuss", "réussissez": "réuss", "réussit": "réuss", "réussite": "réussit", "rêva": "rêv", "rêvait": "rêv", "revanche": "revanch", "rêvant": "rêv", "revaudrai": "revaudr", "rêve": "rêv", "rêvé": "rêv", "réveil": "réveil", "réveilla": "réveil", "réveillait": "réveil", "réveillant": "réveil", "réveillât": "réveil", "réveille": "réveil", "réveillé": "réveil", "réveillée": "réveil", "réveiller": "réveil", "réveillèrent": "réveil", "réveillés": "réveil", "révéla": "rével", "révélait": "rével", "révélation": "rével", "révélé": "rével", "révéler": "rével", "revenaient": "reven", "revenait": "reven", "revenant": "reven", "revendeur": "revendeur", "revendre": "revendr", "revenez": "reven", "revenir": "reven", "revenons": "revenon", "revenu": "revenu", "revenue": "revenu", "revenus": "revenus", "rêver": "rêv", "révéré": "réver", "révérence": "révérent", "révérences": "révérent", "révérencieuses": "révérenci", "révérend": "révérend", "révérendissime": "révérendissim", "rêverie": "rêver", "rêveries": "rêver", "reverrai": "reverr", "reverrais": "reverr", "reverrait": "reverr", "reverrez": "reverr", "reverrons": "reverron", "reverront": "reverront", "revers": "rever", "rêves": "rêv", "revêtir": "revêt", "revêtu": "revêtu", "revêtus": "revêtus", "rêveur": "rêveur", "rêveuse": "rêveux", "rêvez": "rêv", "reviendra": "reviendr", "reviendrai": "reviendr", "reviendrais": "reviendr", "reviendrait": "reviendr", "reviendrez": "reviendr", "reviendront": "reviendront", "revienne": "revien", "reviennent": "reviennent", "reviens": "revien", "revient": "revient", "review": "review", "revinrent": "revinrent", "revinssent": "revinssent", "revint": "revint", "revirement": "revir", "revirent": "rev", "revissent": "rev", "revit": "rev", "revivaient": "reviv", "revoie": "revoi", "revoies": "revoi", "revoir": "revoir", "revois": "revois", "révolta": "révolt", "révoltante": "révolt", "révoltantes": "révolt", "révoltât": "révolt", "révolte": "révolt", "révolté": "révolt", "révoltée": "révolt", "révolter": "révolt", "révolues": "révolu", "révolus": "révolus", "révolution": "révolu", "révolutionnaire": "révolutionnair", "révolutionnaires": "révolutionnair", "révolutions": "révolu", "revolver": "revolv", "revolvers": "revolver", "révoquée": "révoqu", "révoquerai": "révoqu", "révoquerez": "révoqu", "revoyait": "revoi", "revoyant": "revoi", "revu": "revu", "revue": "revu", "revues": "revu", "rez": "rez", "rhin": "rhin", "rhône": "rhôn", "rhubarbe": "rhubarb", "rhume": "rhum", "ri": "ri", "riaient": "ri", "riais": "ri", "riait": "ri", "riant": "ri", "riante": "ri", "riants": "ri", "ricanant": "rican", "ricanement": "rican", "ricciarda": "ricciard", "richards": "richard", "riche": "rich", "richelieu": "richelieu", "richement": "rich", "richemond": "richemond", "riches": "rich", "richesse": "richess", "richesses": "richess", "richissime": "richissim", "rideau": "rideau", "rideaux": "rideau", "rides": "rid", "ridicule": "ridicul", "ridicules": "ridicul", "rie": "ri", "rien": "rien", "riens": "rien", "rient": "rient", "rienzi": "rienz", "rigides": "rigid", "rigoureuse": "rigour", "rigoureusement": "rigour", "rigoureux": "rigour", "rigueur": "rigueur", "rigueurs": "rigueur", "rimailleur": "rimailleur", "rimes": "rim", "rios": "rios", "riposta": "ripost", "ripostaient": "ripost", "rire": "rir", "rires": "rir", "ris": "ris", "riscara": "riscar", "risqua": "risqu", "risquaient": "risqu", "risque": "risqu", "risqué": "risqu", "risquer": "risqu", "risquerai": "risqu", "risques": "risqu", "risquiez": "risqu", "risquons": "risquon", "rit": "rit", "rît": "rît", "ritournelle": "ritournel", "riva": "riv", "rivage": "rivag", "rival": "rival", "rivale": "rival", "rivales": "rival", "rivalité": "rival", "rivarol": "rivarol", "rivaux": "rival", "rive": "riv", "river": "riv", "riverisco": "riverisco", "rives": "riv", "rivière": "rivi", "rivières": "rivi", "rivoli": "rivol", "riz": "riz", "rizières": "rizi", "road": "road", "roads": "road", "roastbeef": "roastbeef", "robe": "rob", "robert": "robert", "robes": "rob", "robespierre": "robespierr", "robre": "robr", "robres": "robr", "robuste": "robust", "robustes": "robust", "roc": "roc", "roch": "roch", "rocher": "roch", "rochers": "rocher", "roches": "roch", "rocheuses": "rocheux", "rock": "rock", "rocky": "rocky", "roclin": "roclin", "rôdait": "rôd", "rôdant": "rôd", "rôder": "rôd", "rogations": "rogat", "rogné": "rogn", "rognure": "rognur", "rogue": "rogu", "roguerie": "roguer", "roi": "roi", "rois": "rois", "roiville": "roivill", "roland": "roland", "rôle": "rôl", "rôles": "rôl", "romagnan": "romagnan", "romagnano": "romagnano", "romagne": "romagn", "romain": "romain", "romaine": "romain", "romains": "romain", "roman": "roman", "romanesque": "romanesqu", "romanesques": "romanesqu", "romans": "roman", "rome": "rom", "rompe": "romp", "rompez": "romp", "rompit": "romp", "rompre": "rompr", "rompt": "rompt", "rompu": "rompu", "rompus": "rompus", "ronces": "ronc", "ronceux": "ronceux", "rond": "rond", "ronde": "rond", "rondement": "rond", "rondes": "rond", "ronds": "rond", "ronflait": "ronfl", "ronflantes": "ronfl", "ronfle": "ronfl", "ronflement": "ronfl", "ronflements": "ronfl", "rongeait": "rong", "ronsard": "ronsard", "room": "room", "rooms": "room", "rose": "ros", "roseau": "roseau", "roseaux": "roseau", "rosée": "ros", "roses": "ros", "rosier": "rosi", "rosiers": "rosi", "rosse": "ross", "rossé": "ross", "rosses": "ross", "rossini": "rossin", "rothal": "rothal", "rothschild": "rothschild", "rôti": "rôt", "rôtie": "rôt", "rôties": "rôt", "rotrou": "rotrou", "roue": "rou", "roué": "rou", "rouer": "rou", "roueries": "rouer", "roues": "rou", "rouffles": "rouffl", "rouge": "roug", "rougeâtre": "rougeâtr", "rouges": "roug", "rougeur": "rougeur", "rougi": "roug", "rougir": "roug", "rougira": "roug", "rougirait": "roug", "rougissait": "roug", "rougissant": "roug", "rougit": "roug", "rouille": "rouill", "rouillé": "rouill", "roula": "roul", "roulaient": "roul", "roulait": "roul", "roulant": "roul", "roule": "roul", "rouleau": "rouleau", "roulement": "roul", "roulèrent": "roul", "roulis": "roul", "rousseau": "rousseau", "route": "rout", "routes": "rout", "rouvert": "rouvert", "rouvray": "rouvray", "rouvrit": "rouvr", "rovere": "rover", "rovère": "rover", "row": "row", "rowan": "rowan", "royal": "royal", "royale": "royal", "royaliste": "royal", "royalistes": "royal", "royaume": "royaum", "ruban": "ruban", "rubempré": "rubempr", "rubigneau": "rubigneau", "rude": "rud", "rudement": "rud", "rudes": "rud", "rudesse": "rudess", "rue": "ru", "rues": "ru", "ruga": "rug", "rugissements": "rug", "ruina": "ruin", "ruinait": "ruin", "ruine": "ruin", "ruiné": "ruin", "ruinée": "ruin", "ruinées": "ruin", "ruinent": "ruinent", "ruiner": "ruin", "ruines": "ruin", "ruinés": "ruin", "ruineux": "ruineux", "ruinez": "ruin", "ruisseau": "ruisseau", "ruisseaux": "ruisseau", "ruminait": "rumin", "ruminants": "rumin", "rupture": "ruptur", "rus": "rus", "rusca": "rusc", "ruse": "rus", "rusé": "rus", "russe": "russ", "russell": "russel", "russes": "russ", "russie": "russ", "s": "s", "sa": "sa", "sablé": "sabl", "sablées": "sabl", "sabre": "sabr", "sabré": "sabr", "sabrer": "sabr", "sabres": "sabr", "sabrés": "sabr", "sac": "sac", "sacca": "sacc", "saccadés": "saccad", "sachant": "sach", "sache": "sach", "saches": "sach", "sachez": "sach", "sachiez": "sach", "sachons": "sachon", "sacramentelle": "sacramentel", "sacramento": "sacramento", "sacre": "sacr", "sacré": "sacr", "sacrédié": "sacrédi", "sacrée": "sacr", "sacrées": "sacr", "sacrement": "sacr", "sacrements": "sacr", "sacrés": "sacr", "sacrifiait": "sacrifi", "sacrifiant": "sacrifi", "sacrifice": "sacrific", "sacrifices": "sacrific", "sacrifie": "sacrif", "sacrifié": "sacrifi", "sacrifiées": "sacrifi", "sacrifier": "sacrifi", "sacrifierait": "sacrifi", "sacrifiés": "sacrifi", "sacrifiez": "sacrif", "sacrilège": "sacrileg", "sacristie": "sacrist", "saddle": "saddl", "sagacité": "sagac", "sage": "sag", "sagement": "sag", "sages": "sag", "sagesse": "sagess", "sagoutiers": "sagouti", "saïd": "saïd", "saigna": "saign", "saignait": "saign", "saigné": "saign", "saignées": "saign", "saigner": "saign", "saillant": "saill", "saillante": "saill", "saillantes": "saill", "saillants": "saill", "saillie": "saill", "saillies": "saill", "sain": "sain", "sainclair": "sainclair", "saine": "sain", "sains": "sain", "saint": "saint", "sainte": "saint", "saintes": "saint", "sainteté": "saintet", "saints": "saint", "sais": "sais", "saisi": "sais", "saisie": "sais", "saisines": "saisin", "saisir": "sais", "saisirais": "sais", "saisirent": "sais", "saisis": "sais", "saisissait": "sais", "saisissant": "sais", "saisissante": "sais", "saisissement": "sais", "saisissez": "sais", "saisit": "sais", "saisîtes": "sais", "saison": "saison", "sait": "sait", "saki": "sak", "salaire": "salair", "salanganes": "salangan", "salcette": "salcet", "sale": "sal", "salé": "sal", "salement": "sal", "sales": "sal", "saleté": "salet", "salis": "sal", "salle": "sall", "salles": "sall", "salomon": "salomon", "salon": "salon", "salons": "salon", "salt": "salt", "saltimbanques": "saltimbanqu", "salua": "salu", "saluaient": "salu", "saluait": "salu", "saluant": "salu", "salue": "salu", "salué": "salu", "saluer": "salu", "saluèrent": "salu", "salure": "salur", "salut": "salut", "salutaire": "salutair", "samedi": "samed", "samedis": "samed", "samuel": "samuel", "san": "san", "sancho": "sancho", "sanctifie": "sanctif", "sanctuaire": "sanctuair", "sanctus": "sanctus", "sandales": "sandal", "sandolaro": "sandolaro", "sandrino": "sandrino", "sandy": "sandy", "sang": "sang", "sanglant": "sangl", "sanglante": "sangl", "sanglier": "sangli", "sanglot": "sanglot", "sanglotaient": "sanglot", "sanglotant": "sanglot", "sanglots": "sanglot", "sangsues": "sangsu", "sanguigna": "sanguign", "sanguinaire": "sanguinair", "sannazaro": "sannazaro", "sans": "san", "sanseverina": "sanseverin", "santal": "santal", "santé": "sant", "saper": "sap", "sapin": "sapin", "sapins": "sapin", "sarà": "sarà", "saragosse": "saragoss", "sarasine": "sarasin", "sarcasmes": "sarcasm", "sardonique": "sardon", "sarono": "sarono", "sat": "sat", "satiété": "satiet", "satin": "satin", "satirique": "satir", "satiriques": "satir", "satisfaction": "satisfact", "satisfaire": "satisfair", "satisfaisant": "satisfais", "satisfait": "satisf", "satisfera": "satisf", "saturaient": "satur", "saturée": "satur", "sauce": "sauc", "saucisses": "sauc", "sauders": "sauder", "sauf": "sauf", "saugrenues": "saugrenu", "saule": "saul", "saules": "saul", "saura": "saur", "saurai": "saur", "sauraient": "saur", "saurais": "saur", "saurait": "saur", "saurez": "saur", "sauriez": "saur", "saurons": "sauron", "sauront": "sauront", "saut": "saut", "sauta": "saut", "sautait": "saut", "sautant": "saut", "saute": "saut", "sauté": "saut", "sauter": "saut", "sauterai": "saut", "sauterait": "saut", "sautèrent": "saut", "sautés": "saut", "sauteur": "sauteur", "sauteuse": "sauteux", "sautillant": "sautill", "sautoir": "sautoir", "sauts": "saut", "sauva": "sauv", "sauvage": "sauvag", "sauvages": "sauvag", "sauvait": "sauv", "sauvant": "sauv", "sauve": "sauv", "sauvé": "sauv", "sauvée": "sauv", "sauvegarder": "sauvegard", "sauvent": "sauvent", "sauver": "sauv", "sauvera": "sauv", "sauverai": "sauv", "sauveraient": "sauv", "sauveront": "sauv", "sauvés": "sauv", "sauveur": "sauveur", "sauveurs": "sauveur", "sauvez": "sauv", "sauvions": "sauvion", "sauvons": "sauvon", "savaient": "sav", "savais": "sav", "savait": "sav", "savamment": "sav", "savant": "sav", "savante": "sav", "savantes": "sav", "savants": "sav", "savent": "savent", "saveur": "saveur", "savez": "sav", "saviez": "sav", "saville": "savill", "savoir": "savoir", "savons": "savon", "saxe": "sax", "saxon": "saxon", "saxons": "saxon", "sbires": "sbir", "scabreuses": "scabreux", "scabreux": "scabreux", "scagliola": "scagliol", "scala": "scal", "scalpent": "scalpent", "scandale": "scandal", "scandaleuse": "scandal", "scandalisaient": "scandalis", "scandalisé": "scandalis", "scandalisée": "scandalis", "scandalisera": "scandalis", "scandalisés": "scandalis", "scandinavie": "scandinav", "sceau": "sceau", "sceaux": "sceau", "scélérat": "scélérat", "scélératesse": "scélératess", "scélérats": "scélérat", "scellé": "scel", "scène": "scen", "scènes": "scen", "schiller": "schill", "schuyler": "schuyl", "sciant": "sci", "scie": "sci", "scié": "sci", "sciemment": "scient", "science": "scienc", "sciences": "scienc", "scier": "sci", "scierie": "scier", "scies": "sci", "scieur": "scieur", "scintillants": "scintill", "scintillations": "scintill", "scotland": "scotland", "scott": "scott", "scotti": "scott", "scrupule": "scrupul", "scrupules": "scrupul", "scrupuleuse": "scrupul", "scrupuleusement": "scrupul", "scrutateur": "scrutateur", "sculptée": "sculpt", "sculptées": "sculpt", "sculptés": "sculpt", "sculpteur": "sculpteur", "sculpteurs": "sculpteur", "se": "se", "séance": "séanc", "sec": "sec", "secatore": "secator", "sèche": "sech", "séché": "sech", "séchée": "sech", "sèchement": "sech", "sécher": "sech", "sécheresse": "sécheress", "sèches": "sech", "second": "second", "secondaient": "second", "seconde": "second", "secondé": "second", "secondent": "secondent", "seconderait": "second", "secondes": "second", "secoua": "secou", "secouaient": "secou", "secouait": "secou", "secouant": "secou", "secoue": "secou", "secouée": "secou", "secoués": "secou", "secourable": "secour", "secourez": "secour", "secourir": "secour", "secours": "secour", "secouru": "secouru", "secousse": "secouss", "secousses": "secouss", "secret": "secret", "secrétaire": "secrétair", "secrétaires": "secrétair", "secrète": "secret", "secrètement": "secret", "secrètes": "secret", "secrets": "secret", "secs": "sec", "sectaire": "sectair", "sectateur": "sectateur", "sectateurs": "sectateur", "secte": "sect", "section": "section", "séculaires": "séculair", "secundo": "secundo", "sécurité": "sécur", "sédentaire": "sédentair", "sedgwick": "sedgwick", "sediola": "sediol", "séditieuse": "séditi", "séditieux": "séditi", "sédition": "sédit", "séducteur": "séducteur", "séduction": "séduct", "séductions": "séduct", "séduire": "séduir", "séduisait": "séduis", "séduisant": "séduis", "séduisante": "séduis", "séduisants": "séduis", "séduit": "séduit", "séduite": "séduit", "séduits": "séduit", "segreto": "segreto", "seigneur": "seigneur", "seigneuries": "seigneur", "seigneurs": "seigneur", "sein": "sein", "seine": "sein", "seize": "seiz", "séjour": "séjour", "séjournait": "séjourn", "séjournât": "séjourn", "séjourner": "séjourn", "sel": "sel", "sella": "sel", "selle": "sel", "sellé": "sel", "sellette": "sellet", "selon": "selon", "sema": "sem", "semaine": "semain", "semaines": "semain", "sembla": "sembl", "semblable": "semblabl", "semblables": "semblabl", "semblaient": "sembl", "semblait": "sembl", "semblant": "sembl", "semblât": "sembl", "semble": "sembl", "semblé": "sembl", "semblent": "semblent", "sembler": "sembl", "semblera": "sembl", "semblerait": "sembl", "semblèrent": "sembl", "semblez": "sembl", "sème": "sem", "semé": "sem", "semée": "sem", "semées": "sem", "semelle": "semel", "semelles": "semel", "semer": "sem", "semés": "sem", "semez": "sem", "semi": "sem", "sémillant": "sémill", "sémillante": "sémill", "séminaire": "séminair", "séminariste": "séminar", "séminaristes": "séminar", "sempans": "sempan", "sens": "sen", "sensation": "sensat", "sensations": "sensat", "sensée": "sens", "sensés": "sens", "sensibilité": "sensibil", "sensible": "sensibl", "sensiblement": "sensibl", "sensibles": "sensibl", "sent": "sent", "sentaient": "sent", "sentais": "sent", "sentait": "sent", "sentant": "sent", "sentence": "sentenc", "sentences": "sentenc", "sentent": "sentent", "sentez": "sent", "senti": "sent", "sentie": "sent", "sentier": "senti", "sentiers": "senti", "senties": "sent", "sentiment": "sent", "sentimentale": "sentimental", "sentimentales": "sentimental", "sentiments": "sent", "sentinelle": "sentinel", "sentinelles": "sentinel", "sentir": "sent", "sentira": "sent", "sentirez": "sent", "sentisses": "sent", "sentit": "sent", "sépara": "sépar", "séparaient": "sépar", "séparait": "sépar", "séparant": "sépar", "séparation": "sépar", "sépare": "sépar", "séparé": "sépar", "séparée": "sépar", "séparées": "sépar", "séparent": "séparent", "séparer": "sépar", "séparera": "sépar", "séparés": "sépar", "séparons": "séparon", "sept": "sept", "septembre": "septembr", "septentrional": "septentrional", "septentrionale": "septentrional", "septentrionales": "septentrional", "septième": "septiem", "sequin": "sequin", "sequins": "sequin", "sera": "ser", "serai": "ser", "seraient": "ser", "sérail": "sérail", "serais": "ser", "serait": "ser", "seras": "ser", "sérénade": "sérénad", "sérénades": "sérénad", "sérénissime": "sérénissim", "sérénité": "séren", "serez": "ser", "sergent": "sergent", "série": "ser", "sérieuse": "sérieux", "serieusement": "serieux", "sérieusement": "sérieux", "sérieuses": "sérieux", "sérieux": "sérieux", "seriez": "ser", "serions": "serion", "serious": "serious", "serment": "serment", "serments": "serment", "sermon": "sermon", "sermons": "sermon", "serons": "seron", "seront": "seront", "serpent": "serpent", "serpentent": "serpentent", "serpents": "serpent", "serpolet": "serpolet", "serra": "serr", "serraient": "serr", "serrait": "serr", "serrant": "serr", "serre": "serr", "serré": "serr", "serrée": "serr", "serrées": "serr", "serrements": "serr", "serrent": "serrent", "serrer": "serr", "serrèrent": "serr", "serres": "serr", "serrés": "serr", "serrure": "serrur", "serrures": "serrur", "serrurier": "serruri", "sert": "sert", "servaient": "serv", "servais": "serv", "servait": "serv", "servant": "serv", "servante": "serv", "serve": "serv", "servent": "servent", "servi": "serv", "serviable": "serviabl", "service": "servic", "services": "servic", "servie": "serv", "serviettes": "serviet", "servilement": "servil", "servir": "serv", "servira": "serv", "servirai": "serv", "serviraient": "serv", "servirait": "serv", "servirez": "serv", "servis": "serv", "servit": "serv", "serviteur": "serviteur", "serviteurs": "serviteur", "ses": "se", "session": "session", "seuil": "seuil", "seul": "seul", "seule": "seul", "seulement": "seul", "seules": "seul", "seuls": "seul", "sévère": "séver", "sévèrement": "séver", "sévères": "séver", "sévérité": "séver", "sévérités": "séver", "sexagésimales": "sexagésimal", "sexe": "sex", "sexes": "sex", "sfondrata": "sfondrat", "sforce": "sforc", "sforze": "sforz", "shako": "shako", "shakos": "shakos", "shakspeare": "shakspear", "shangaï": "shangaï", "sheppard": "sheppard", "sheridan": "sheridan", "sherry": "sherry", "shilling": "shilling", "shillings": "shilling", "shipping": "shipping", "shiva": "shiv", "shows": "show", "si": "si", "siamo": "siamo", "siècle": "siecl", "siècles": "siecl", "siège": "sieg", "sièges": "sieg", "sien": "sien", "sienne": "sien", "siennes": "sien", "siens": "sien", "sierra": "sierr", "sieste": "siest", "sieur": "sieur", "sieyès": "sieyes", "siffla": "siffl", "sifflaient": "siffl", "sifflait": "siffl", "sifflant": "siffl", "sifflement": "siffl", "sifflements": "siffl", "siffler": "siffl", "sifflet": "sifflet", "sifflets": "sifflet", "sighs": "sigh", "sigisbée": "sigisb", "sigismond": "sigismond", "signa": "sign", "signait": "sign", "signal": "signal", "signala": "signal", "signale": "signal", "signalé": "signal", "signalée": "signal", "signalement": "signal", "signalements": "signal", "signaler": "signal", "signalerait": "signal", "signant": "sign", "signature": "signatur", "signaux": "signal", "signe": "sign", "signé": "sign", "signée": "sign", "signées": "sign", "signer": "sign", "signera": "sign", "signerai": "sign", "signes": "sign", "signets": "signet", "signez": "sign", "signifiait": "signifi", "significatif": "signif", "signification": "signif", "significative": "signif", "significatives": "signif", "signifie": "signif", "signifier": "signifi", "signor": "signor", "signora": "signor", "signorino": "signorino", "silence": "silenc", "silencieuse": "silenci", "silencieusement": "silenci", "silencieux": "silenci", "silhouette": "silhouet", "sillonnaient": "sillon", "sillonne": "sillon", "sillonné": "sillon", "sillonnés": "sillon", "sillons": "sillon", "simagrées": "simagr", "simon": "simon", "simonie": "simon", "simple": "simpl", "simplement": "simpl", "simples": "simpl", "simplicité": "simpliqu", "simplifiée": "simplifi", "simule": "simul", "sinant": "sin", "since": "sinc", "sincère": "sincer", "sincèrement": "sincer", "sincères": "sincer", "sincérité": "sincer", "sindes": "sind", "sine": "sin", "sinécures": "sinécur", "singapore": "singapor", "singe": "sing", "singeries": "singer", "singes": "sing", "singularité": "singular", "singularités": "singular", "singulier": "singuli", "singulière": "singuli", "singulièrement": "singuli", "singulières": "singuli", "singuliers": "singuli", "sinistre": "sinistr", "sinistres": "sinistr", "sinon": "sinon", "sinuosités": "sinuos", "sioux": "sioux", "sir": "sir", "sire": "sir", "site": "sit", "sites": "sit", "sitôt": "sitôt", "situation": "situat", "situé": "situ", "située": "situ", "situés": "situ", "six": "six", "sixième": "sixiem", "sixte": "sixt", "sixtine": "sixtin", "sky": "sky", "sleeping": "sleeping", "slight": "slight", "sloop": "sloop", "small": "small", "smith": "smith", "smollett": "smollet", "smyth": "smyth", "so": "so", "social": "social", "sociale": "social", "sociales": "social", "sociaux": "social", "société": "societ", "sociétés": "societ", "socques": "socqu", "soeur": "soeur", "soeurs": "soeur", "soi": "soi", "soie": "soi", "soient": "soient", "soif": "soif", "soigna": "soign", "soignait": "soign", "soignant": "soign", "soigne": "soign", "soigné": "soign", "soignée": "soign", "soigner": "soign", "soignés": "soign", "soigneusement": "soigneux", "soigneux": "soigneux", "soin": "soin", "soins": "soin", "soir": "soir", "soirée": "soir", "soirées": "soir", "soirs": "soir", "sois": "sois", "soissons": "soisson", "soit": "soit", "soixante": "soix", "soixantième": "soixantiem", "sol": "sol", "solaire": "solair", "soldant": "sold", "soldat": "soldat", "soldats": "soldat", "solde": "sold", "soldé": "sold", "soldés": "sold", "soleil": "soleil", "solennel": "solennel", "solennelle": "solennel", "solennels": "solennel", "solide": "solid", "solidement": "solid", "solides": "solid", "solidité": "solid", "solitaire": "solitair", "solitaires": "solitair", "solitude": "solitud", "sollicita": "sollicit", "sollicitait": "sollicit", "sollicitations": "sollicit", "sollicite": "sollicit", "sollicité": "solliqu", "solliciter": "sollicit", "solliciteur": "solliciteur", "sollicitez": "sollicit", "sols": "sol", "solution": "solut", "somanlis": "somanl", "sombre": "sombr", "sombrer": "sombr", "sombreros": "sombreros", "sombres": "sombr", "sommaire": "sommair", "sommariva": "sommariv", "sommation": "sommat", "somme": "somm", "sommeil": "sommeil", "sommeillait": "sommeil", "sommer": "somm", "sommes": "somm", "sommet": "sommet", "sommets": "sommet", "sommités": "sommit", "somptueuse": "somptueux", "somptueusement": "somptueux", "somptueux": "somptueux", "somptuosité": "somptuos", "son": "son", "sonder": "sond", "songe": "song", "songé": "song", "songea": "song", "songeaient": "song", "songeais": "song", "songeait": "song", "songeant": "song", "songeât": "song", "songent": "songent", "songeons": "songeon", "songer": "song", "songera": "song", "songerai": "song", "songerait": "song", "songèrent": "song", "songes": "song", "songez": "song", "sonna": "son", "sonnaient": "son", "sonnait": "son", "sonnant": "son", "sonnât": "son", "sonne": "son", "sonné": "son", "sonnée": "son", "sonnées": "son", "sonner": "son", "sonnera": "son", "sonnèrent": "son", "sonneries": "sonner", "sonneront": "son", "sonnés": "son", "sonnet": "sonnet", "sonnets": "sonnet", "sonnette": "sonnet", "sonnettes": "sonnet", "sonneurs": "sonneur", "sonore": "sonor", "sonores": "sonor", "sons": "son", "sont": "sont", "sorbonne": "sorbon", "sorcier": "sorci", "sordide": "sordid", "sorel": "sorel", "sorezana": "sorezan", "sorgho": "sorgho", "sors": "sor", "sort": "sort", "sortaient": "sort", "sortais": "sort", "sortait": "sort", "sortant": "sort", "sorte": "sort", "sortent": "sortent", "sortes": "sort", "sortez": "sort", "sorti": "sort", "sortie": "sort", "sortiez": "sort", "sortir": "sort", "sortira": "sort", "sortirai": "sort", "sortirais": "sort", "sortirait": "sort", "sortiras": "sort", "sortirent": "sort", "sortirez": "sort", "sortirions": "sort", "sortirons": "sort", "sortis": "sort", "sortit": "sort", "sortît": "sort", "sorts": "sort", "sot": "sot", "sots": "sot", "sotte": "sott", "sottement": "sott", "sottes": "sott", "sottise": "sottis", "sottises": "sottis", "sou": "sou", "soubrette": "soubret", "souci": "souc", "soucia": "souci", "souciait": "souci", "soucier": "souci", "soucieuse": "soucieux", "soucieux": "soucieux", "soucis": "souc", "soudain": "soudain", "soudaine": "soudain", "soudainement": "soudain", "souffert": "souffert", "souffla": "souffl", "soufflait": "souffl", "soufflant": "souffl", "souffle": "souffl", "soufflent": "soufflent", "souffler": "souffl", "soufflet": "soufflet", "soufflets": "soufflet", "souffleur": "souffleur", "souffrais": "souffr", "souffrait": "souffr", "souffrance": "souffranc", "souffrances": "souffranc", "souffrant": "souffr", "souffrante": "souffr", "souffre": "souffr", "souffrent": "souffrent", "souffres": "souffr", "souffrez": "souffr", "souffrir": "souffr", "souffrira": "souffr", "souffrirai": "souffr", "souffrirais": "souffr", "souffriras": "souffr", "souffrissent": "souffr", "souffrit": "souffr", "souhait": "souh", "souhaitant": "souhait", "souhaite": "souhait", "souhaité": "souhait", "souillé": "souill", "souiller": "souill", "soulagé": "soulag", "soulagée": "soulag", "soulagement": "soulag", "soulcy": "soulcy", "souleva": "soulev", "soulevait": "soulev", "soulevant": "soulev", "soulevée": "soulev", "soulevées": "soulev", "soulèvent": "soulèvent", "soulever": "soulev", "soulèverai": "soulev", "soulier": "souli", "souliers": "souli", "soulte": "soult", "soumettait": "soumet", "soumettre": "soumettr", "soumis": "soum", "soumise": "soumis", "soumises": "soumis", "soumission": "soumiss", "soumit": "soum", "soupait": "soup", "soupapes": "soupap", "soupçon": "soupçon", "soupçonna": "soupçon", "soupçonnaient": "soupçon", "soupçonnait": "soupçon", "soupçonne": "soupçon", "soupçonné": "soupçon", "soupçonnée": "soupçon", "soupçonner": "soupçon", "soupçonnés": "soupçon", "soupçonneux": "soupçon", "soupçons": "soupçon", "soupe": "soup", "soupé": "soup", "souper": "soup", "soupers": "souper", "soupez": "soup", "soupir": "soup", "soupirant": "soupir", "soupire": "soupir", "soupirer": "soupir", "souple": "soupl", "souplesse": "soupless", "source": "sourc", "sources": "sourc", "sourcil": "sourcil", "sourciliers": "sourcili", "sourcilla": "sourcill", "sourcillé": "sourcill", "sourciller": "sourcill", "sourcils": "sourcil", "sourd": "sourd", "sourde": "sourd", "souri": "sour", "souriait": "souri", "souriant": "souri", "souriante": "souri", "souriantes": "souri", "sourire": "sourir", "sourires": "sourir", "sourit": "sour", "sournois": "sournois", "sournoise": "sournois", "sous": "sous", "soustrairais": "soustrair", "soustraire": "soustrair", "soustrait": "soustr", "soutane": "soutan", "soutenaient": "souten", "soutenait": "souten", "soutenant": "souten", "soutènement": "souten", "soutenir": "souten", "soutenu": "soutenu", "soutenue": "soutenu", "soutenues": "soutenu", "souterrain": "souterrain", "souterraines": "souterrain", "soutes": "sout", "south": "south", "southampton": "southampton", "southey": "southey", "soutiennent": "soutiennent", "soutiens": "soutien", "soutient": "soutient", "soutint": "soutint", "souvenaient": "souven", "souvenait": "souven", "souvenant": "souven", "souvenez": "souven", "souvenir": "souven", "souvenirs": "souvenir", "souvent": "souvent", "souvenus": "souvenus", "souverain": "souverain", "souveraine": "souverain", "souverainement": "souverain", "souveraineté": "souverainet", "souverains": "souverain", "souviendra": "souviendr", "souviendrez": "souviendr", "souvienne": "souvien", "souviennent": "souviennent", "souviens": "souvien", "souvient": "souvient", "souvint": "souvint", "soyeux": "soyeux", "soyez": "soi", "soyons": "soyon", "spardeck": "spardeck", "speak": "speak", "spécial": "spécial", "spéciale": "spécial", "spécialement": "spécial", "spécialité": "spécial", "spécifier": "spécifi", "spécifique": "spécif", "spectacle": "spectacl", "spectacles": "spectacl", "spectateur": "spectateur", "spectateurs": "spectateur", "spectrale": "spectral", "spectre": "spectr", "spéculation": "spécul", "spéculations": "spécul", "speedy": "speedy", "sphère": "spher", "sphéroïde": "sphéroïd", "spielberg": "spielberg", "spirale": "spiral", "spirales": "spiral", "spirituel": "spirituel", "spirituelle": "spirituel", "spirituelles": "spirituel", "splendide": "splendid", "splendides": "splendid", "spring": "spring", "squares": "squar", "squelette": "squelet", "st": "st", "staël": "staël", "stalles": "stall", "stamp": "stamp", "standard": "standard", "stanislas": "stanisl", "star": "star", "starke": "stark", "station": "station", "stationnera": "station", "stationnés": "station", "stations": "station", "statuaire": "statuair", "statue": "statu", "statues": "statu", "stature": "statur", "staub": "staub", "steam": "steam", "steamboats": "steamboat", "steamer": "steam", "steamers": "steamer", "steccata": "steccat", "stefano": "stefano", "stentor": "stentor", "stephenson": "stephenson", "sterling": "sterling", "sterne": "stern", "steward": "steward", "stigmates": "stigmat", "stigmatiser": "stigmatis", "still": "still", "stimuler": "stimul", "stolen": "stolen", "strabon": "strabon", "stramonium": "stramonium", "strand": "strand", "strasbourg": "strasbourg", "stratagème": "stratagem", "straw": "straw", "street": "street", "strict": "strict", "stricte": "strict", "strictement": "strict", "strombeck": "strombeck", "strongest": "strongest", "strychnine": "strychnin", "stuart": "stuart", "studbook": "studbook", "stupéfaction": "stupéfact", "stupéfait": "stupef", "stupéfiante": "stupéfi", "stupefie": "stupef", "stupéfie": "stupef", "stupéfié": "stupéfi", "stupéfier": "stupéfi", "stupeur": "stupeur", "stupide": "stupid", "stupides": "stupid", "style": "styl", "stylé": "styl", "stylés": "styl", "su": "su", "suave": "suav", "subalterne": "subaltern", "subalternes": "subaltern", "subi": "sub", "subir": "sub", "subira": "sub", "subirait": "sub", "subis": "sub", "subissant": "sub", "subit": "sub", "subite": "subit", "subitement": "subit", "subjugue": "subjugu", "subjugué": "subjugu", "subjuguer": "subjugu", "sublime": "sublim", "sublimes": "sublim", "sublimité": "sublim", "submerge": "submerg", "submergé": "submerg", "submergèrent": "submerg", "subordonnés": "subordon", "suborner": "suborn", "subsistance": "subsist", "subsiste": "subsist", "subsistent": "subsistent", "substance": "substanc", "substitué": "substitu", "substituée": "substitu", "substituées": "substitu", "substituer": "substitu", "substitut": "substitut", "subtilité": "subtil", "subvention": "subvent", "succéda": "succed", "succédaient": "succed", "succédait": "succed", "succède": "succed", "succédé": "succed", "succéder": "succed", "succédèrent": "succed", "succès": "succes", "successeur": "successeur", "successeurs": "successeur", "successifs": "success", "succession": "success", "successive": "success", "successivement": "success", "successives": "success", "successor": "successor", "succombant": "succomb", "succombé": "succomb", "succombent": "succombent", "succomber": "succomb", "succulentes": "succulent", "succulents": "succulent", "such": "such", "suchet": "suchet", "sucre": "sucr", "sucreries": "sucrer", "sud": "sud", "suédois": "suédois", "sueur": "sueur", "suez": "su", "suffers": "suffer", "suffi": "suff", "suffira": "suff", "suffiraient": "suff", "suffirait": "suff", "suffire": "suffir", "suffirent": "suff", "suffiront": "suff", "suffisaient": "suffis", "suffisait": "suffis", "suffisamment": "suffis", "suffisance": "suffis", "suffisant": "suffis", "suffisante": "suffis", "suffisantes": "suffis", "suffisent": "suffisent", "suffit": "suff", "suffocations": "suffoc", "suffoqua": "suffoqu", "suffoqué": "suffoqu", "suffoquerait": "suffoqu", "suggéra": "sugger", "suggéré": "sugger", "suggérée": "sugger", "suggérer": "sugger", "suicide": "suicid", "suie": "sui", "suis": "suis", "suisse": "suiss", "suisses": "suiss", "suit": "suit", "suite": "suit", "suites": "suit", "suivaient": "suiv", "suivais": "suiv", "suivait": "suiv", "suivant": "suiv", "suivante": "suiv", "suivantes": "suiv", "suivants": "suiv", "suivent": "suivent", "suivez": "suiv", "suivi": "suiv", "suivie": "suiv", "suivies": "suiv", "suiviez": "suiv", "suivirent": "suiv", "suivis": "suiv", "suivit": "suiv", "suivons": "suivon", "suivra": "suivr", "suivrai": "suivr", "suivraient": "suivr", "suivras": "suivr", "suivre": "suivr", "suivront": "suivront", "sujet": "sujet", "sujets": "sujet", "sujette": "sujet", "sujettes": "sujet", "sullivan": "sullivan", "sultan": "sultan", "sumatra": "sumatr", "sun": "sun", "superbe": "superb", "superbes": "superb", "superficie": "superfic", "superficiel": "superficiel", "superflu": "superflu", "supérieur": "supérieur", "supérieure": "supérieur", "supérieurement": "supérieur", "supérieures": "supérieur", "supérieurs": "supérieur", "supériorité": "supérior", "suppléé": "supplé", "supplément": "suppl", "supplémentaire": "supplémentair", "supplia": "suppli", "suppliaient": "suppli", "suppliait": "suppli", "suppliant": "suppli", "suppliante": "suppli", "supplications": "suppliqu", "supplice": "supplic", "supplices": "supplic", "supplie": "suppl", "supplier": "suppli", "suppliez": "suppl", "supportable": "support", "supportait": "support", "supportent": "supportent", "supporter": "support", "supporterait": "support", "supposait": "suppos", "supposant": "suppos", "suppose": "suppos", "supposé": "suppos", "supposée": "suppos", "supposer": "suppos", "supposés": "suppos", "supposez": "suppos", "supposition": "supposit", "suppositions": "supposit", "supposons": "supposon", "suppression": "suppress", "supprimant": "supprim", "supprime": "supprim", "supprimé": "supprim", "supprimée": "supprim", "supprimer": "supprim", "supprimons": "supprimon", "supputait": "supput", "suprême": "suprêm", "sur": "sur", "sûr": "sûr", "surannée": "surann", "surate": "surat", "surchargés": "surcharg", "surchauffée": "surchauff", "surcroît": "surcroît", "sûre": "sûr", "surélevés": "surélev", "sûrement": "sûr", "surenchère": "surencher", "surent": "surent", "suresnes": "suresn", "sûreté": "sûret", "surexcité": "surexc", "surface": "surfac", "surgir": "surg", "surgirait": "surg", "surgirent": "surg", "surhumain": "surhumain", "surhumaine": "surhumain", "surlendemain": "surlendemain", "surmontant": "surmont", "surmonte": "surmont", "surmontée": "surmont", "surmontées": "surmont", "surmonter": "surmont", "surnage": "surnag", "surnagea": "surnag", "surnageait": "surnag", "surnaturelle": "surnaturel", "surnom": "surnom", "surnommèrent": "surnomm", "surpassa": "surpass", "surpasse": "surp", "surpassé": "surpass", "surpassent": "surp", "surplis": "surpl", "surplus": "surplus", "surprenait": "surpren", "surprenant": "surpren", "surprend": "surprend", "surprendre": "surprendr", "surprirent": "surpr", "surpris": "surpr", "surprise": "surpris", "surprises": "surpris", "surprit": "surpr", "surrey": "surrey", "sûrs": "sûr", "sursaut": "sursaut", "surtout": "surtout", "survécut": "survécut", "surveillait": "surveil", "surveillance": "surveil", "surveillants": "surveil", "surveille": "surveil", "surveillé": "surveil", "surveillée": "surveil", "surveiller": "surveil", "surveillera": "surveil", "survenait": "surven", "survenir": "surven", "survenue": "survenu", "survinrent": "survinrent", "survint": "survint", "survit": "surv", "survivant": "surviv", "survivrai": "survivr", "survivrais": "survivr", "survivre": "survivr", "survivrez": "survivr", "sus": "sus", "susceptible": "susceptibl", "susceptibles": "susceptibl", "susciter": "suscit", "suscitèrent": "suscit", "susdit": "susd", "suspect": "suspect", "suspecte": "suspect", "suspecter": "suspect", "suspects": "suspect", "suspendre": "suspendr", "suspendu": "suspendu", "suspendue": "suspendu", "suspendus": "suspendus", "suspens": "suspen", "suspicion": "suspicion", "sut": "sut", "sût": "sût", "sutpour": "sutpour", "sutty": "sutty", "svelte": "svelt", "sweeter": "sweet", "sydenham": "sydenham", "syénites": "syénit", "syllabe": "syllab", "syllabes": "syllab", "syllogisme": "syllog", "symbole": "symbol", "symboles": "symbol", "symbolisent": "symbolisent", "symétrie": "symetr", "symétriques": "symetr", "sympathie": "sympath", "sympathisait": "sympathis", "sympathise": "sympathis", "symphonie": "symphon", "symptôme": "symptôm", "symptômes": "symptôm", "synagogues": "synagogu", "synonyme": "synonym", "synonymes": "synonym", "système": "system", "t": "t", "ta": "ta", "tabac": "tabac", "tabagie": "tabag", "tabagies": "tabag", "tabatière": "tabati", "tabernacle": "tabernacl", "table": "tabl", "tableau": "tableau", "tableaux": "tableau", "tables": "tabl", "tablette": "tablet", "tablier": "tabli", "tabouret": "tabouret", "tâchait": "tâch", "tâchant": "tâch", "tache": "tach", "tâche": "tâch", "taché": "tach", "tachée": "tach", "tachées": "tach", "tâcher": "tâch", "tâcherai": "tâch", "taches": "tach", "tachetée": "tachet", "tâchez": "tâch", "tâchons": "tâchon", "tacite": "tacit", "tacites": "tacit", "taciti": "tacit", "taciturnes": "taciturn", "tact": "tact", "taffetas": "taffet", "taïkoun": "taïkoun", "tailla": "taill", "taillanderie": "taillander", "taillant": "taill", "taille": "taill", "taillé": "taill", "taillées": "taill", "tailler": "taill", "taillés": "taill", "tailleur": "tailleur", "taillis": "taill", "taire": "tair", "tais": "tais", "taisaient": "tais", "taisait": "tais", "taisant": "tais", "taisez": "tais", "tait": "tait", "takes": "tak", "talent": "talent", "talents": "talent", "talleyrand": "talleyrand", "talma": "talm", "taloches": "taloch", "talons": "talon", "talus": "talus", "tam": "tam", "tamarins": "tamarin", "tambour": "tambour", "tambourins": "tambourin", "tambours": "tambour", "tams": "tam", "tanari": "tanar", "tanbeau": "tanbeau", "tancrède": "tancred", "tandis": "tand", "tangage": "tangag", "tangles": "tangl", "tankadère": "tankader", "tankardere": "tankarder", "tankardère": "tankarder", "tankas": "tank", "tannah": "tannah", "tanquam": "tanquam", "tant": "tant", "tante": "tant", "tantes": "tant", "tantôt": "tantôt", "tanzi": "tanz", "tapage": "tapag", "tapé": "tap", "tapis": "tapis", "tapissée": "tapiss", "tapisserie": "tapisser", "tapissier": "tapissi", "tapissiers": "tapissi", "tapty": "tapty", "tard": "tard", "tarda": "tard", "tardaient": "tard", "tardait": "tard", "tarde": "tard", "tardé": "tard", "tarder": "tard", "tarderait": "tard", "tardèrent": "tard", "tardive": "tardiv", "tarés": "tar", "taries": "tar", "tarirent": "tar", "tarissait": "tar", "tarit": "tar", "tarots": "tarot", "tarragone": "tarragon", "tartines": "tartin", "tartufe": "tartuf", "tas": "tas", "tasse": "tass", "tasses": "tass", "tâtonnent": "tâtonnent", "taudis": "taud", "taureaux": "taureau", "taverne": "tavern", "taxes": "tax", "taxis": "tax", "te": "te", "tea": "te", "tecks": "teck", "teindre": "teindr", "teint": "teint", "teinte": "teint", "teintes": "teint", "tel": "tel", "telegraph": "telegraph", "télégraphe": "télégraph", "télégraphié": "télégraphi", "télégraphique": "télégraph", "télégraphiques": "télégraph", "télémaque": "télémaqu", "télescope": "télescop", "télescopes": "télescop", "telle": "tel", "tellement": "tel", "telles": "tel", "tels": "tel", "téméraire": "témérair", "témérité": "témer", "témoignage": "témoignag", "témoignaient": "témoign", "témoignait": "témoign", "temoigne": "temoign", "témoigne": "témoign", "témoigné": "témoign", "témoigner": "témoign", "témoigneront": "témoign", "témoigniez": "témoign", "témoin": "témoin", "témoins": "témoin", "tempe": "temp", "tempérait": "temper", "tempérament": "temper", "température": "températur", "tempérée": "temper", "tempes": "temp", "tempest": "tempest", "tempête": "tempêt", "temple": "templ", "temples": "templ", "temps": "temp", "tenable": "tenabl", "ténacité": "ténac", "tenaient": "ten", "tenais": "ten", "tenait": "ten", "tenant": "ten", "tenante": "ten", "tend": "tend", "tendaient": "tend", "tendait": "tend", "tendance": "tendanc", "tendent": "tendent", "tender": "tend", "tendit": "tend", "tendre": "tendr", "tendrement": "tendr", "tendres": "tendr", "tendresse": "tendress", "tendresses": "tendress", "tendu": "tendu", "tendue": "tendu", "tendues": "tendu", "tendus": "tendus", "tenerani": "teneran", "tenere": "tener", "teneur": "teneur", "tenez": "ten", "tenir": "ten", "tenons": "tenon", "ténor": "ténor", "tenta": "tent", "tentait": "tent", "tentation": "tentat", "tentations": "tentat", "tentative": "tentat", "tentatives": "tentat", "tente": "tent", "tenté": "tent", "tenter": "tent", "tenteras": "tent", "tentez": "tent", "tentures": "tentur", "tenu": "tenu", "tenue": "tenu", "tenues": "tenu", "tenus": "tenus", "terme": "term", "termes": "term", "termina": "termin", "terminaient": "termin", "terminait": "termin", "termine": "termin", "terminé": "termin", "terminée": "termin", "terminées": "termin", "terminer": "termin", "terminera": "termin", "terminèrent": "termin", "ternir": "tern", "terrain": "terrain", "terrains": "terrain", "terrasse": "terr", "terrassé": "terrass", "terrasses": "terr", "terrassiers": "terrassi", "terre": "terr", "terres": "terr", "terrestre": "terrestr", "terrestres": "terrestr", "terreur": "terreur", "terreurs": "terreur", "terrible": "terribl", "terriblement": "terribl", "terribles": "terribl", "territoire": "territoir", "tertio": "tertio", "tertre": "tertr", "terzo": "terzo", "tes": "te", "testa": "test", "testament": "test", "tête": "têt", "têtes": "têt", "teulier": "teuli", "texte": "text", "textuellement": "textuel", "thaler": "thal", "that": "that", "the": "the", "thé": "thé", "théâtral": "théâtral", "théâtre": "théâtr", "théâtres": "théâtr", "theft": "theft", "thème": "them", "thèmes": "them", "thémistocle": "thémistocl", "then": "then", "théodolinde": "théodolind", "théologie": "théolog", "théologien": "théologien", "théorie": "théor", "théories": "théor", "théoriquement": "théoriqu", "there": "ther", "thérèse": "théres", "thermomètre": "thermometr", "thésée": "thes", "thing": "thing", "this": "this", "thomas": "thom", "though": "though", "thousands": "thousand", "thrilling": "thrilling", "thugs": "thug", "tibère": "tiber", "tibi": "tib", "tien": "tien", "tiendra": "tiendr", "tiendrait": "tiendr", "tiendras": "tiendr", "tiendrez": "tiendr", "tiendront": "tiendront", "tienne": "tien", "tiennent": "tiennent", "tiens": "tien", "tient": "tient", "tierce": "tierc", "tiers": "tier", "tige": "tig", "tiges": "tig", "tigre": "tigr", "tigres": "tigr", "tilbury": "tilbury", "tilburys": "tilbury", "tilleul": "tilleul", "tilleuls": "tilleul", "timbre": "timbr", "timbrée": "timbr", "timbrées": "timbr", "timbres": "timbr", "time": "tim", "times": "tim", "timide": "timid", "timidement": "timid", "timides": "timid", "timidité": "timid", "timorée": "timor", "tingou": "tingou", "tinrent": "tinrent", "tinssent": "tinssent", "tint": "tint", "tînt": "tînt", "tintamarre": "tintamarr", "tinte": "tint", "tira": "tir", "tirade": "tirad", "tirades": "tirad", "tirage": "tirag", "tiraient": "tir", "tiraillé": "tiraill", "tirailler": "tiraill", "tirait": "tir", "tirant": "tir", "tirât": "tir", "tire": "tir", "tiré": "tir", "tirée": "tir", "tirent": "tirent", "tirer": "tir", "tirera": "tir", "tireraient": "tir", "tirerais": "tir", "tirerait": "tir", "tirèrent": "tir", "tirerez": "tir", "tirés": "tir", "tirez": "tir", "tiroir": "tiroir", "tissu": "tissu", "tissue": "tissu", "tite": "tit", "titre": "titr", "titres": "titr", "titubant": "titub", "titulaire": "titulair", "to": "to", "together": "togeth", "toi": "toi", "toile": "toil", "toiles": "toil", "toilette": "toilet", "toilettes": "toilet", "toisait": "tois", "toisant": "tois", "toises": "tois", "toison": "toison", "toit": "toit", "toits": "toit", "toiture": "toitur", "tolède": "toled", "tolèrent": "tol", "tolérer": "toler", "tolly": "tolly", "tomba": "tomb", "tombaient": "tomb", "tombait": "tomb", "tombant": "tomb", "tombante": "tomb", "tombassent": "tomb", "tombât": "tomb", "tombe": "tomb", "tombé": "tomb", "tombeau": "tombeau", "tombeaux": "tombeau", "tombée": "tomb", "tombent": "tombent", "tomber": "tomb", "tomberai": "tomb", "tomberaient": "tomb", "tomberais": "tomb", "tombèrent": "tomb", "tomberont": "tomb", "tombés": "tomb", "tombez": "tomb", "tombone": "tombon", "tome": "tom", "tomes": "tom", "ton": "ton", "tonalités": "tonal", "tondre": "tondr", "tonnage": "tonnag", "tonnaient": "ton", "tonnante": "ton", "tonne": "ton", "tonneaux": "tonneau", "tonnelier": "tonneli", "tonnerre": "tonnerr", "tonnerres": "tonnerr", "tonnes": "ton", "tonte": "tont", "too": "too", "toque": "toqu", "torche": "torch", "torches": "torch", "torchon": "torchon", "tordait": "tord", "tordant": "tord", "tordit": "tord", "tordre": "tordr", "tords": "tord", "torpeur": "torpeur", "torrent": "torrent", "torrents": "torrent", "torsade": "torsad", "torses": "tors", "tort": "tort", "torto": "torto", "tortoni": "torton", "torts": "tort", "tortue": "tortu", "tortues": "tortu", "tortura": "tortur", "torturait": "tortur", "torture": "tortur", "torturé": "tortur", "torturer": "tortur", "tortures": "tortur", "toscane": "toscan", "tôt": "tôt", "total": "total", "totale": "total", "totalement": "total", "toto": "toto", "toucha": "touch", "touchaient": "touch", "touchais": "touch", "touchait": "touch", "touchant": "touch", "touchante": "touch", "touchantes": "touch", "touchants": "touch", "touchât": "touch", "touche": "touch", "touché": "touch", "touchée": "touch", "toucher": "touch", "touchera": "touch", "toucherez": "touch", "toucheront": "touch", "touches": "touch", "touchés": "touch", "touffe": "touff", "touffes": "touff", "touffu": "touffu", "touffus": "touffus", "toujours": "toujour", "toulouse": "toulous", "toupie": "toup", "toupies": "toup", "tour": "tour", "tourbillon": "tourbillon", "tourbillonnait": "tourbillon", "tourbillons": "tourbillon", "touriste": "tourist", "tourment": "tourment", "tourmentait": "tourment", "tourmente": "tourment", "tourmenté": "tourment", "tourmentée": "tourment", "tourmentés": "tourment", "tourmentin": "tourmentin", "tourments": "tourment", "tourna": "tourn", "tournai": "tourn", "tournaient": "tourn", "tournait": "tourn", "tournant": "tourn", "tournante": "tourn", "tournantes": "tourn", "tourne": "tourn", "tourné": "tourn", "tournée": "tourn", "tournées": "tourn", "tournent": "tournent", "tourner": "tourn", "tournera": "tourn", "tournèrent": "tourn", "tourniquets": "tourniquet", "tournoyant": "tournoi", "tournure": "tournur", "tournures": "tournur", "tours": "tour", "tous": "tous", "toussa": "touss", "tousser": "touss", "tout": "tout", "toute": "tout", "toutefois": "toutefois", "toutes": "tout", "tr": "tr", "trac": "trac", "traçait": "trac", "tracasse": "trac", "tracasserie": "tracasser", "tracasseries": "tracasser", "trace": "trac", "tracé": "trac", "tracée": "trac", "tracées": "trac", "tracer": "trac", "traces": "trac", "tracés": "trac", "traction": "traction", "tradition": "tradit", "traduction": "traduct", "traduire": "traduir", "traduis": "traduis", "traduit": "traduit", "traduite": "traduit", "traduites": "traduit", "tragédie": "traged", "tragique": "tragiqu", "tragiques": "tragiqu", "trahi": "trah", "trahie": "trah", "trahies": "trah", "trahir": "trah", "trahira": "trah", "trahirais": "trah", "trahirait": "trah", "trahiriez": "trah", "trahiront": "trah", "trahis": "trah", "trahison": "trahison", "trahissaient": "trah", "trahissait": "trah", "trahissant": "trah", "trahisse": "trah", "trahissez": "trah", "trahit": "trah", "trahît": "trah", "train": "train", "traînaient": "traîn", "traînait": "traîn", "traînante": "traîn", "traînard": "traînard", "traîné": "traîn", "traîneau": "traîneau", "traîneaux": "traîneau", "traînée": "traîn", "traînées": "traîn", "traîner": "traîn", "trains": "train", "trait": "trait", "traita": "trait", "traitait": "trait", "traitant": "trait", "traitât": "trait", "traite": "trait", "traité": "trait", "traitée": "trait", "traitement": "trait", "traitent": "traitent", "traiter": "trait", "traitera": "trait", "traitèrent": "trait", "traités": "trait", "traitez": "trait", "traître": "traîtr", "traîtreusement": "traîtreux", "traits": "trait", "trajectoires": "trajectoir", "trajet": "trajet", "trame": "tram", "tramezzina": "tramezzin", "tramways": "tramway", "tranchait": "tranch", "tranchant": "tranch", "tranchants": "tranch", "tranche": "tranch", "tranchée": "tranch", "tranchées": "tranch", "tranches": "tranch", "tranchés": "tranch", "tranquille": "tranquill", "tranquillement": "tranquill", "tranquilles": "tranquill", "tranquillise": "tranquillis", "tranquillisée": "tranquillis", "tranquilliserait": "tranquillis", "tranquillisez": "tranquillis", "tranquillité": "tranquill", "transaction": "transact", "transactions": "transact", "transatlantique": "transatlant", "transatlantiques": "transatlant", "transcrire": "transcrir", "transcrit": "transcr", "transcrivait": "transcriv", "transcrivant": "transcriv", "transcrivit": "transcriv", "transes": "trans", "transfèrement": "transfer", "transférer": "transfer", "transfigure": "transfigur", "transforma": "transform", "transformant": "transform", "transformé": "transform", "transformée": "transform", "transforment": "transforment", "transformer": "transform", "transformés": "transform", "transfuge": "transfug", "transgression": "transgress", "transie": "trans", "transiger": "transig", "transire": "transir", "transit": "trans", "transmettre": "transmettr", "transmise": "transmis", "transmissible": "transmissibl", "transmit": "transm", "transocéanienne": "transocéanien", "transocéaniennes": "transocéanien", "transparents": "transparent", "transport": "transport", "transporta": "transport", "transportait": "transport", "transportât": "transport", "transporté": "transport", "transportée": "transport", "transporter": "transport", "transports": "transport", "transversale": "transversal", "trapp": "trapp", "trappe": "trapp", "trappes": "trapp", "trappiste": "trappist", "trapues": "trapu", "traqué": "traqu", "trattamento": "trattamento", "trattoria": "trattori", "travail": "travail", "travailla": "travaill", "travaillaient": "travaill", "travaillait": "travaill", "travaille": "travaill", "travaillé": "travaill", "travailler": "travaill", "travailleurs": "travailleur", "travaux": "traval", "travers": "traver", "traversa": "travers", "traversaient": "travers", "traversait": "travers", "traversant": "travers", "traverse": "travers", "traversé": "travers", "traversee": "traverse", "traversée": "travers", "traversées": "travers", "traversent": "traversent", "traverser": "travers", "traverserai": "travers", "traversèrent": "travers", "traversés": "travers", "traversez": "travers", "trébuchant": "trébuch", "tredici": "tredic", "treize": "treiz", "treizième": "treiziem", "trembla": "trembl", "tremblaient": "trembl", "tremblais": "trembl", "tremblait": "trembl", "tremblant": "trembl", "tremblante": "trembl", "tremblantes": "trembl", "tremble": "trembl", "tremblé": "trembl", "tremblement": "trembl", "trembler": "trembl", "tremblera": "trembl", "tremblerai": "trembl", "trembleront": "trembl", "tremblez": "trembl", "trempe": "tremp", "trempé": "tremp", "tremper": "tremp", "tremplin": "tremplin", "tremulously": "tremulously", "trentaine": "trentain", "trente": "trent", "trépas": "trep", "tres": "tre", "très": "tres", "trésor": "trésor", "trésors": "trésor", "tressailli": "tressaill", "tressaillir": "tressaill", "tressaillit": "tressaill", "tresse": "tress", "tressé": "tress", "trêve": "trêv", "trévise": "trévis", "triangle": "triangl", "triangulaire": "triangulair", "tribu": "tribu", "tribun": "tribun", "tribunal": "tribunal", "tribunaux": "tribunal", "tribune": "tribun", "tributaires": "tributair", "tric": "tric", "tricolore": "tricolor", "trinquette": "trinquet", "trio": "trio", "triompha": "triomph", "triomphait": "triomph", "triomphale": "triomphal", "triomphant": "triomph", "triomphante": "triomph", "triomphe": "triomph", "triomphé": "triomph", "triomphent": "triomphent", "triompher": "triomph", "triomphera": "triomph", "triompherait": "triomph", "triompheront": "triomph", "triomphes": "triomph", "triple": "tripl", "triplé": "tripl", "triste": "trist", "tristement": "trist", "tristes": "trist", "tristesse": "tristess", "tristesses": "tristess", "triumvirat": "triumvirat", "triviale": "trivial", "trois": "trois", "troisième": "troisiem", "troisièmes": "troisiem", "trombe": "tromb", "trompa": "tromp", "trompaient": "tromp", "trompait": "tromp", "trompant": "tromp", "trompe": "tromp", "trompé": "tromp", "trompée": "tromp", "tromper": "tromp", "tromperai": "tromp", "tromperais": "tromp", "trompes": "tromp", "trompés": "tromp", "trompez": "tromp", "tronc": "tronc", "tronçon": "tronçon", "troncs": "tronc", "trône": "trôn", "trop": "trop", "trophée": "troph", "tropicale": "tropical", "tropicales": "tropical", "tropique": "tropiqu", "tropiques": "tropiqu", "troppo": "troppo", "trot": "trot", "trottait": "trott", "trotter": "trott", "trottoir": "trottoir", "trottoirs": "trottoir", "trou": "trou", "troubla": "troubl", "troublaient": "troubl", "troublait": "troubl", "troublant": "troubl", "trouble": "troubl", "troublé": "troubl", "troublée": "troubl", "troublées": "troubl", "troubler": "troubl", "troublera": "troubl", "troublèrent": "troubl", "troubleront": "troubl", "troubles": "troubl", "troublés": "troubl", "troublez": "troubl", "troupe": "troup", "troupeau": "troupeau", "troupes": "troup", "troupiers": "troupi", "trous": "trous", "trousses": "trouss", "trouva": "trouv", "trouvai": "trouv", "trouvaient": "trouv", "trouvais": "trouv", "trouvait": "trouv", "trouvant": "trouv", "trouvât": "trouv", "trouve": "trouv", "trouvé": "trouv", "trouvée": "trouv", "trouvées": "trouv", "trouvent": "trouvent", "trouver": "trouv", "trouvera": "trouv", "trouverai": "trouv", "trouveraient": "trouv", "trouverais": "trouv", "trouverait": "trouv", "trouveras": "trouv", "trouvèrent": "trouv", "trouverez": "trouv", "trouveriez": "trouv", "trouverions": "trouv", "trouverons": "trouv", "trouveront": "trouv", "trouves": "trouv", "trouvés": "trouv", "trouvez": "trouv", "trouvons": "trouvon", "truites": "truit", "trunk": "trunk", "tu": "tu", "tua": "tu", "tuais": "tu", "tuait": "tu", "tuant": "tu", "tudieu": "tudieu", "tue": "tu", "tué": "tu", "tuée": "tu", "tuent": "tuent", "tuer": "tu", "tuera": "tu", "tuerai": "tu", "tuerais": "tu", "tuerait": "tu", "tués": "tu", "tuez": "tu", "tuileries": "tuiler", "tuiles": "tuil", "tuilla": "tuill", "tumulte": "tumult", "tumultueuse": "tumultu", "tunique": "tuniqu", "tunnel": "tunnel", "tunnels": "tunnel", "turban": "turban", "turbans": "turban", "turin": "turin", "turn": "turn", "turpitude": "turpitud", "tussaud": "tussaud", "tut": "tut", "tutoie": "tutoi", "tutoiement": "tutoi", "tutoyait": "tutoi", "tutoyer": "tutoi", "tutti": "tutt", "tutto": "tutto", "tuyau": "tuyau", "tuyaux": "tuyal", "twelfth": "twelfth", "two": "two", "tympaniser": "tympanis", "type": "typ", "types": "typ", "typhon": "typhon", "tyran": "tyran", "tyrannie": "tyrann", "tyrannisait": "tyrannis", "tyrans": "tyran", "uçaf": "uçaf", "uddaul": "uddaul", "ultimatum": "ultimatum", "ultra": "ultra", "ultras": "ultras", "ulysse": "ulyss", "un": "un", "unam": "unam", "unanime": "unanim", "unanimement": "unanim", "uncertain": "uncertain", "une": "une", "unes": "une", "uni": "uni", "unie": "uni", "unième": "uniem", "unies": "uni", "uniforme": "uniform", "uniformes": "uniform", "union": "union", "unique": "uniqu", "uniquement": "uniqu", "unis": "unis", "unissaient": "uniss", "unissait": "uniss", "unissez": "uniss", "univers": "univer", "universel": "universel", "universelle": "universel", "uns": "un", "uranus": "uranus", "urbanité": "urban", "urne": "urne", "usa": "usa", "usage": "usag", "usages": "usag", "usant": "usant", "use": "use", "usé": "usé", "user": "user", "usine": "usin", "ustensile": "ustensil", "usure": "usur", "usuriers": "usuri", "usurpateur": "usurp", "usurpations": "usurp", "usurpe": "usurp", "usurpé": "usurp", "usurpées": "usurp", "usurpés": "usurp", "utah": "utah", "utile": "util", "utiles": "util", "utilisaient": "utilis", "utiliser": "utilis", "utilité": "util", "uzeri": "uzer", "uzès": "uzes", "v": "v", "va": "va", "vacances": "vacanc", "vacant": "vac", "vacante": "vac", "vacarme": "vacarm", "vache": "vach", "vacillais": "vacill", "vagabond": "vagabond", "vagabonde": "vagabond", "vague": "vagu", "vaguement": "vagu", "vagues": "vagu", "vaille": "vaill", "vain": "vain", "vaincre": "vaincr", "vaincu": "vaincu", "vaincue": "vaincu", "vaincus": "vaincus", "vaine": "vain", "vainement": "vain", "vaines": "vain", "vainqueur": "vainqueur", "vains": "vain", "vais": "vais", "vaisseau": "vaisseau", "valable": "valabl", "valables": "valabl", "valaient": "val", "valait": "val", "valant": "val", "vale": "val", "valenod": "valenod", "valent": "valent", "valère": "valer", "valet": "valet", "valets": "valet", "valeur": "valeur", "vallee": "valle", "vallée": "vall", "vallées": "vall", "valoir": "valoir", "valois": "valois", "valserra": "valserr", "valu": "valu", "valurent": "valurent", "valut": "valut", "vandalisme": "vandal", "vane": "van", "vaneau": "vaneau", "vanité": "vanit", "vaniteuse": "vanit", "vaniteux": "vanit", "vanta": "vant", "vantait": "vant", "vanté": "vant", "vantent": "vantent", "vanter": "vant", "vanvitelli": "vanvitel", "vapeur": "vapeur", "vapeurs": "vapeur", "varèse": "vares", "variaient": "vari", "varie": "var", "varié": "vari", "variétés": "variet", "vas": "vas", "vase": "vas", "vases": "vas", "vasi": "vas", "vasistas": "vasist", "vaste": "vast", "vastes": "vast", "vau": "vau", "vaudeville": "vaudevill", "vaudra": "vaudr", "vaudrait": "vaudr", "vaudront": "vaudront", "vaurien": "vaurien", "vaut": "vaut", "vaux": "vaux", "vécu": "vécu", "vécurent": "vécurent", "vécut": "vécut", "vécût": "vécût", "vedette": "vedet", "vega": "veg", "végétaient": "véget", "végéter": "véget", "véhémence": "véhément", "véhément": "veh", "véhicule": "véhicul", "véhiculé": "véhicul", "véhicules": "véhicul", "veilla": "veil", "veillaient": "veil", "veillait": "veil", "veillât": "veil", "veille": "veil", "veillé": "veil", "veillent": "veillent", "veiller": "veil", "veillerons": "veil", "veilles": "veil", "veilleuse": "veilleux", "veine": "vein", "veines": "vein", "velléité": "velléit", "velléités": "velléit", "velleja": "vellej", "velours": "velour", "vély": "vély", "venaient": "ven", "venait": "ven", "vénales": "vénal", "vénalité": "vénal", "venant": "ven", "venceslas": "vencesl", "vend": "vend", "vendait": "vend", "vendant": "vend", "vendée": "vend", "vendent": "vendent", "vendeur": "vendeur", "vendeurs": "vendeur", "vendit": "vend", "vendrai": "vendr", "vendrais": "vendr", "vendrait": "vendr", "vendre": "vendr", "vendredi": "vendred", "vendredis": "vendred", "vendront": "vendront", "vends": "vend", "vendu": "vendu", "vendue": "vendu", "vendus": "vendus", "vénérable": "véner", "vénérables": "véner", "vénération": "véner", "vénère": "véner", "vénérées": "véner", "vénérer": "véner", "venette": "venet", "venez": "ven", "venge": "veng", "vengé": "veng", "vengea": "veng", "vengeait": "veng", "vengeance": "vengeanc", "vengée": "veng", "vengent": "vengent", "venger": "veng", "vengera": "veng", "vengerai": "veng", "veniez": "ven", "venin": "venin", "venir": "ven", "venise": "venis", "vénitien": "vénitien", "vénitiens": "vénitien", "venons": "venon", "vent": "vent", "vente": "vent", "ventes": "vent", "ventre": "ventr", "vents": "vent", "venu": "venu", "venue": "venu", "venues": "venu", "venus": "venus", "vérandas": "vérand", "verbal": "verbal", "verbe": "verb", "verdâtres": "verdâtr", "verdict": "verdict", "verdoyantes": "verdoi", "verdoyants": "verdoi", "verdure": "verdur", "verger": "verg", "vergogne": "vergogn", "vergues": "vergu", "vergy": "vergy", "véridiques": "vérid", "vérifia": "vérifi", "vérification": "vérif", "vérifié": "vérifi", "vérifier": "vérifi", "véritable": "vérit", "véritablement": "vérit", "véritables": "vérit", "vérité": "vérit", "vérités": "vérit", "vermeilles": "vermeil", "vermont": "vermont", "vermoulu": "vermoulu", "vermoulue": "vermoulu", "verna": "vern", "vernaye": "vernay", "verne": "vern", "vernes": "vern", "verni": "vern", "vernis": "vern", "vérole": "vérol", "verona": "veron", "vérone": "véron", "verra": "verr", "verrai": "verr", "verraient": "verr", "verrais": "verr", "verrait": "verr", "verras": "verr", "verre": "verr", "verres": "verr", "verrez": "verr", "verrières": "verri", "verrons": "verron", "verront": "verront", "verrou": "verrou", "verrous": "verrous", "verruqueux": "verruqu", "vers": "ver", "versa": "vers", "versailles": "versaill", "versait": "vers", "versant": "vers", "versants": "vers", "verse": "vers", "verser": "vers", "versets": "verset", "vert": "vert", "verte": "vert", "vertement": "vert", "vertes": "vert", "vertical": "vertical", "verticale": "vertical", "verticalement": "vertical", "verts": "vert", "vertu": "vertu", "vertueuse": "vertueux", "vertueuses": "vertueux", "vertueux": "vertueux", "vertus": "vertus", "verve": "verv", "very": "very", "vespasien": "vespasien", "vesper": "vesp", "veste": "vest", "vestes": "vest", "vestibule": "vestibul", "vestige": "vestig", "vésuve": "vésuv", "vêtement": "vêt", "vêtements": "vêt", "vêtent": "vêtent", "vétille": "vétill", "vetturini": "vetturin", "vetturino": "vetturino", "vêtu": "vêtu", "vêtue": "vêtu", "vêtues": "vêtu", "vêtus": "vêtus", "veuf": "veuf", "veuille": "veuill", "veuillez": "veuill", "veuilliez": "veuill", "veulent": "veulent", "veut": "veut", "veuvage": "veuvag", "veuve": "veuv", "veuves": "veuv", "veux": "veux", "vexait": "vex", "vexantes": "vex", "vexations": "vexat", "vexé": "vex", "vexer": "vex", "vexés": "vex", "vi": "vi", "via": "vi", "viaducs": "viaduc", "viagère": "viager", "viande": "viand", "viandes": "viand", "viatique": "viatiqu", "vibrations": "vibrat", "vicaire": "vicair", "vicaires": "vicair", "vice": "vic", "vices": "vic", "vicieux": "vicieux", "vicissitudes": "vicissitud", "vico": "vico", "vicolo": "vicolo", "vicomte": "vicomt", "vicomtes": "vicomt", "victime": "victim", "victimes": "victim", "victoire": "victoir", "victoires": "victoir", "victor": "victor", "victoria": "victori", "victorieuse": "victori", "vicvacarma": "vicvacarm", "vida": "vid", "vidaient": "vid", "vidant": "vid", "vide": "vid", "vidées": "vid", "vider": "vid", "vides": "vid", "videz": "vid", "vie": "vi", "vieil": "vieil", "vieillard": "vieillard", "vieillards": "vieillard", "vieille": "vieil", "vieilles": "vieil", "vieillesse": "vieilless", "vieillie": "vieil", "vieillir": "vieil", "vieillit": "vieil", "viendra": "viendr", "viendrai": "viendr", "viendraient": "viendr", "viendrait": "viendr", "viendras": "viendr", "vienne": "vien", "viennent": "viennent", "viennes": "vien", "viens": "vien", "vient": "vient", "vierge": "vierg", "vies": "vi", "vieux": "vieux", "views": "view", "vif": "vif", "vifs": "vif", "vigano": "vigano", "vigilante": "vigil", "vignano": "vignano", "vigne": "vign", "vigoureuse": "vigour", "vigoureusement": "vigour", "vigoureuses": "vigour", "vigoureux": "vigour", "vigueur": "vigueur", "viharis": "vihar", "vii": "vii", "viii": "vii", "vil": "vil", "vilain": "vilain", "vilaine": "vilain", "vilaines": "vilain", "vilains": "vilain", "vile": "vil", "vilenie": "vilen", "vilipendé": "vilipend", "vilipendée": "vilipend", "villa": "vill", "village": "villag", "villages": "villag", "ville": "vill", "villequier": "villequi", "villes": "vill", "vils": "vil", "vîmes": "vîm", "vin": "vin", "vinci": "vinc", "vindhias": "vindhi", "vindicatif": "vindiqu", "vindicative": "vindiqu", "vingt": "vingt", "vingtaine": "vingtain", "vingtième": "vingtiem", "vingts": "vingt", "vinrent": "vinrent", "vins": "vin", "vinsse": "vinss", "vint": "vint", "vînt": "vînt", "viole": "viol", "violé": "viol", "violemment": "violent", "violence": "violenc", "violent": "violent", "violentant": "violent", "violente": "violent", "violenté": "violent", "violentes": "violent", "violents": "violent", "violer": "viol", "violes": "viol", "violets": "violet", "violette": "violet", "violettes": "violet", "violiers": "violi", "violon": "violon", "vipère": "viper", "virago": "virago", "virent": "virent", "virgile": "virgil", "virtue": "virtu", "virtuose": "virtuos", "vis": "vis", "visa": "vis", "visage": "visag", "visages": "visag", "visas": "vis", "visconti": "viscont", "visé": "vis", "visent": "visent", "viser": "vis", "viserez": "vis", "visible": "visibl", "visiblement": "visibl", "visibles": "visibl", "vision": "vision", "visions": "vision", "visita": "visit", "visitation": "visit", "visite": "visit", "visité": "visit", "visitées": "visit", "visiter": "visit", "visitera": "visit", "visites": "visit", "viso": "viso", "visons": "vison", "visu": "visu", "vit": "vit", "vît": "vît", "vite": "vit", "vitesse": "vitess", "vitesses": "vitess", "vitraux": "vitral", "vitre": "vitr", "vitres": "vitr", "viva": "viv", "vivacité": "vivac", "vivaient": "viv", "vivais": "viv", "vivait": "viv", "vivandière": "vivandi", "vivandières": "vivandi", "vivant": "viv", "vivante": "viv", "vivants": "viv", "vive": "viv", "vivement": "viv", "vivent": "vivent", "vives": "viv", "vivez": "viv", "vivons": "vivon", "vivoter": "vivot", "vivra": "vivr", "vivrai": "vivr", "vivrait": "vivr", "vivre": "vivr", "vivres": "vivr", "vivrez": "vivr", "vivrions": "vivrion", "vivrons": "vivron", "vivront": "vivront", "vocation": "vocat", "vociférations": "vocifer", "voeu": "voeu", "voeux": "voeux", "voguer": "vogu", "voi": "voi", "voici": "voic", "voie": "voi", "voient": "voient", "voies": "voi", "voilà": "voilà", "voile": "voil", "voilé": "voil", "voilée": "voil", "voilées": "voil", "voiles": "voil", "voilés": "voil", "voilure": "voilur", "voir": "voir", "vois": "vois", "voisin": "voisin", "voisinage": "voisinag", "voisine": "voisin", "voisines": "voisin", "voisins": "voisin", "voit": "voit", "voiture": "voitur", "voitures": "voitur", "voix": "voix", "vol": "vol", "volaient": "vol", "volaille": "volaill", "volait": "vol", "volant": "vol", "volants": "vol", "volatiles": "volatil", "volcan": "volcan", "vole": "vol", "volé": "vol", "volée": "vol", "volées": "vol", "volent": "volent", "voler": "vol", "volera": "vol", "volerai": "vol", "volerait": "vol", "volés": "vol", "volet": "volet", "volets": "volet", "voleur": "voleur", "voleurs": "voleur", "volez": "vol", "volière": "voli", "volontaire": "volontair", "volontairement": "volontair", "volontaires": "volontair", "volonté": "volont", "volontés": "volont", "volontiers": "volonti", "vols": "vol", "voltaire": "voltair", "voltige": "voltig", "voltigeant": "voltig", "voltiger": "voltig", "voltigeur": "voltigeur", "volubilité": "volubil", "volume": "volum", "volumes": "volum", "volupté": "volupt", "voluptés": "volupt", "voluptueuse": "voluptu", "voluptueusement": "voluptu", "voluptueuses": "voluptu", "voluptueux": "voluptu", "volutes": "volut", "vomero": "vomero", "vomir": "vom", "vomissait": "vom", "vont": "vont", "voraces": "vorac", "vos": "vos", "votaient": "vot", "votant": "vot", "vote": "vot", "voté": "vot", "votée": "vot", "voter": "vot", "votes": "vot", "votre": "votr", "vôtre": "vôtr", "vôtres": "vôtr", "voudra": "voudr", "voudraient": "voudr", "voudrais": "voudr", "voudrait": "voudr", "voudras": "voudr", "voudrez": "voudr", "voudriez": "voudr", "voudrions": "voudrion", "voudront": "voudront", "voué": "vou", "vouent": "vouent", "vouer": "vou", "vouèrent": "vou", "voulaient": "voul", "voulais": "voul", "voulait": "voul", "voulant": "voul", "voulez": "voul", "vouliez": "voul", "vouloir": "vouloir", "voulons": "voulon", "voulu": "voulu", "voulues": "voulu", "voulurent": "voulurent", "voulus": "voulus", "voulussent": "voulussent", "voulut": "voulut", "voulût": "voulût", "vous": "vous", "voûte": "voût", "voûtes": "voût", "voyage": "voyag", "voyagé": "voyag", "voyageait": "voyag", "voyageant": "voyag", "voyagent": "voyagent", "voyageons": "voyageon", "voyager": "voyag", "voyages": "voyag", "voyageur": "voyageur", "voyageurs": "voyageur", "voyageuse": "voyag", "voyagez": "voyag", "voyaient": "voi", "voyais": "voi", "voyait": "voi", "voyant": "voi", "voyez": "voi", "voyiez": "voi", "voyons": "voyon", "vrai": "vrai", "vraie": "vrai", "vraies": "vrai", "vraiment": "vrai", "vrais": "vrais", "vraisemblable": "vraisembl", "vraisemblablement": "vraisembl", "vu": "vu", "vue": "vu", "vues": "vu", "vulgaire": "vulgair", "vulgairement": "vulgair", "vulgaires": "vulgair", "vulgarité": "vulgar", "vus": "vus", "w": "w", "wagon": "wagon", "wagons": "wagon", "wagram": "wagram", "wahsatch": "wahsatch", "walbah": "walbah", "walter": "walt", "wandering": "wandering", "was": "was", "washington": "washington", "waterloo": "waterloo", "wayne": "wayn", "we": "we", "weber": "web", "wellington": "wellington", "were": "wer", "west": "west", "wharf": "wharf", "wharfs": "wharf", "which": "which", "whisky": "whisky", "whisnou": "whisnou", "whist": "whist", "white": "whit", "will": "will", "william": "william", "wilson": "wilson", "with": "with", "withdrew": "withdrew", "word": "word", "would": "would", "wyoming": "wyoming", "x": "x", "xavier": "xavi", "xérès": "xéres", "xi": "xi", "xii": "xii", "xiii": "xii", "xiv": "xiv", "xix": "xix", "xv": "xv", "xvi": "xvi", "xvii": "xvii", "xviii": "xvii", "xx": "xx", "xxi": "xxi", "xxii": "xxii", "xxiii": "xxii", "xxiv": "xxiv", "xxix": "xxix", "xxv": "xxv", "xxvi": "xxvi", "xxvii": "xxvii", "xxviii": "xxvii", "xxx": "xxx", "xxxi": "xxxi", "xxxii": "xxxii", "xxxiii": "xxxii", "xxxiv": "xxxiv", "xxxv": "xxxv", "xxxvi": "xxxvi", "xxxvii": "xxxvii", "y": "y", "yacht": "yacht", "yachts": "yacht", "yakounines": "yakounin", "yankee": "yanke", "yeddo": "yeddo", "yert": "yert", "yet": "yet", "yeux": "yeux", "yokohama": "yokoham", "york": "york", "young": "young", "zambajon": "zambajon", "zeb": "zeb", "zébrés": "zebr", "zébus": "zébus", "zèle": "zel", "zélés": "zel", "zénith": "zénith", "zigzags": "zigzag", "zingarelli": "zingarel", "zonders": "zonder", "zoroastre": "zoroastr", "zurla": "zurl" } ================================================ FILE: spec/test_data/snowball_it.json ================================================ { "a": "a", "à": "à", "aa": "aa", "aalst": "aalst", "ab": "ab", "abakoumova": "abakoumov", "abano": "aban", "abate": "abat", "abati": "abat", "abbacinare": "abbacin", "abbacinati": "abbacin", "abbadia": "abbad", "abbado": "abbad", "abbagliaron": "abbagliaron", "abbagliato": "abbagl", "abbaia": "abbai", "abbaiano": "abbai", "abbaiar": "abbai", "abbaini": "abbain", "abbandona": "abbandon", "abbandonando": "abbandon", "abbandonano": "abbandon", "abbandonar": "abbandon", "abbandonare": "abbandon", "abbandonarla": "abbandon", "abbandonarlo": "abbandon", "abbandonarsi": "abbandon", "abbandonarvi": "abbandon", "abbandonasse": "abbandon", "abbandonata": "abbandon", "abbandonate": "abbandon", "abbandonati": "abbandon", "abbandonato": "abbandon", "abbandonava": "abbandon", "abbandonerà": "abbandon", "abbandoneranno": "abbandon", "abbandonerò": "abbandon", "abbandono": "abband", "abbandonò": "abbandon", "abbaruffato": "abbaruff", "abbassamento": "abbass", "abbassando": "abbass", "abbassandola": "abbass", "abbassandole": "abbass", "abbassar": "abbass", "abbassare": "abbass", "abbassarono": "abbass", "abbassarsi": "abbass", "abbassassero": "abbass", "abbassato": "abbass", "abbassava": "abbass", "abbassi": "abbass", "abbassò": "abbass", "abbastanza": "abbast", "abbatté": "abbatt", "abbattendo": "abbatt", "abbattere": "abbatt", "abbattersi": "abbatt", "abbattesse": "abbattess", "abbatteva": "abbatt", "abbattevamo": "abbatt", "abbattevano": "abbatt", "abbattimento": "abbatt", "abbattuta": "abbatt", "abbattuti": "abbatt", "abbattuto": "abbatt", "abbellita": "abbell", "abbenché": "abbenc", "abbi": "abbi", "abbia": "abbi", "abbiam": "abbiam", "abbiamo": "abbiam", "abbian": "abbian", "abbiano": "abbi", "abbiate": "abbi", "abbiccì": "abbicc", "abbietti": "abbiett", "abbigliamento": "abbigl", "abbinamento": "abbin", "abbinano": "abbin", "abbinata": "abbin", "abbinato": "abbin", "abboccamenti": "abbocc", "abboccamento": "abbocc", "abbominata": "abbomin", "abbominazione": "abbomin", "abbominevole": "abbominevol", "abbominevoli": "abbominevol", "abbominio": "abbomin", "abbonati": "abbon", "abbonato": "abbon", "abbonda": "abbond", "abbondano": "abbond", "abbondante": "abbond", "abbondantemente": "abbondant", "abbondanti": "abbond", "abbondanza": "abbond", "abbondare": "abbond", "abbondio": "abbond", "abbonire": "abbon", "abbordarne": "abbord", "abbordo": "abbord", "abborracciata": "abborracc", "abborrimento": "abborr", "abborrito": "abborr", "abbott": "abbott", "abbozzata": "abbozz", "abbozzato": "abbozz", "abbracci": "abbracc", "abbraccia": "abbracc", "abbracciamenti": "abbracc", "abbracciar": "abbracc", "abbracciare": "abbracc", "abbracciarne": "abbracc", "abbracciaron": "abbracciaron", "abbracciata": "abbracc", "abbracciate": "abbracc", "abbracciati": "abbracc", "abbracciato": "abbracc", "abbracciavano": "abbracc", "abbraccio": "abbracc", "abbracciò": "abbracc", "abbreviarli": "abbrev", "abbreviata": "abbrev", "abbreviati": "abbrev", "abbronzate": "abbronz", "abbronzati": "abbronz", "abbruciacchiato": "abbruciacc", "abbruciacchiavano": "abbruciacc", "abbrunati": "abbrun", "abbuffata": "abbuff", "abburattavan": "abburattavan", "abc": "abc", "abdel": "abdel", "abdic": "abdic", "abdica": "abdic", "abdul": "abdul", "abeille": "abeill", "abel": "abel", "aberdeen": "aberdeen", "abergele": "abergel", "abete": "abet", "abietto": "abiett", "abile": "abil", "abili": "abil", "abilità": "abil", "abilitante": "abilit", "abilitate": "abilit", "abilitazione": "abilit", "abiliterà": "abilit", "abisso": "abiss", "abita": "abit", "abitacolo": "abitacol", "abitante": "abit", "abitanti": "abit", "abitare": "abit", "abitata": "abit", "abitate": "abit", "abitati": "abit", "abitato": "abit", "abitator": "abitator", "abitatori": "abit", "abitava": "abit", "abitavano": "abit", "abitazione": "abit", "abitazioni": "abit", "abiti": "abit", "abito": "abit", "abituale": "abitual", "abituali": "abitual", "abitualmente": "abitual", "abituarci": "abitu", "abituato": "abitu", "abitudine": "abitudin", "abitudini": "abitudin", "abituro": "abitur", "ablandarlos": "ablandarlos", "abolendo": "abol", "abolire": "abol", "abolirli": "abol", "abolisce": "abol", "abolita": "abol", "abolizione": "abolizion", "aborto": "abort", "abruzzesi": "abruzzes", "abruzzo": "abruzz", "abulia": "abul", "abusare": "abus", "abuso": "abus", "ac": "ac", "accada": "accad", "accadde": "accadd", "accaddero": "accadder", "accade": "accad", "accademia": "accadem", "accademica": "accadem", "accademicamente": "accadem", "accademici": "accadem", "accademico": "accadem", "accademie": "accadem", "accadendo": "accad", "accader": "accader", "accaderà": "accad", "accadere": "accad", "accadesse": "accadess", "accadeva": "accad", "accadevan": "accadevan", "accadon": "accadon", "accadono": "accad", "accaduta": "accad", "accadute": "accad", "accaduto": "accad", "accalappino": "accalappin", "accame": "accam", "accampamento": "accamp", "accampati": "accamp", "accando": "accand", "accanimento": "accan", "accanite": "accan", "accanito": "accan", "accanto": "accant", "accantonamenti": "accanton", "accantonamento": "accanton", "accantonando": "accanton", "accarezza": "accarezz", "accarezzando": "accarezz", "accarezzandolo": "accarezz", "accarezzar": "accarezz", "accarezzare": "accarezz", "accarezzarla": "accarezz", "accarezzarlo": "accarezz", "accarezzato": "accarezz", "accarezzavan": "accarezzavan", "accarezzò": "accarezz", "accartocciava": "accartocc", "accasato": "accas", "accatastata": "accatast", "accattabrighe": "accattabrig", "accattando": "accatt", "accattar": "accatt", "accattarlo": "accatt", "accattato": "accatt", "accattivanti": "accattiv", "accatto": "accatt", "accattoni": "accatton", "accavallata": "accavall", "acccordi": "acccord", "accecato": "accec", "accedatis": "accedatis", "accedere": "acced", "accelera": "acceler", "accelerando": "acceler", "accelerare": "acceler", "accelerato": "acceler", "acceleratore": "acceler", "accelerazione": "acceler", "accellerare": "acceller", "accenda": "accend", "accende": "accend", "accendere": "accend", "accenna": "accenn", "accennando": "accenn", "accennano": "accenn", "accennar": "accenn", "accennare": "accenn", "accennarla": "accenn", "accennarono": "accenn", "accennate": "accenn", "accennati": "accenn", "accennato": "accenn", "accennava": "accenn", "accennavano": "accenn", "accenneremo": "accenn", "accennerò": "accenn", "accenno": "accenn", "accennò": "accenn", "accenti": "accent", "accento": "accent", "accentrato": "accentr", "accentua": "accentu", "accentuandone": "accentu", "accentuano": "accentu", "accerchiati": "accerc", "accertamenti": "accert", "accertamento": "accert", "accertare": "accert", "accertarmi": "accert", "accertarsi": "accert", "accertate": "accert", "accertato": "accert", "accertò": "accert", "accesa": "acces", "accese": "acces", "accesi": "acces", "acceso": "acces", "accessi": "access", "accessibili": "access", "accesso": "access", "accessòri": "accessòr", "accessorie": "accessor", "accetta": "accett", "accettabile": "accett", "accettabili": "accett", "accettando": "accett", "accettano": "accett", "accettare": "accett", "accettarle": "accett", "accettaron": "accettaron", "accettarsi": "accett", "accettasse": "accett", "accettata": "accett", "accettate": "accett", "accettati": "accett", "accettato": "accett", "accettava": "accett", "accettazione": "accett", "accette": "accett", "accetterà": "accett", "accetteresti": "accett", "accetterò": "accett", "accetti": "accett", "accetto": "accett", "accettò": "accett", "accezione": "accezion", "acchetare": "acchet", "acchiappar": "acchiapp", "acchiappare": "acchiapp", "acchiapparlo": "acchiapp", "acchiappato": "acchiapp", "acchiappatolo": "acchiappatol", "acciai": "accia", "acciarino": "acciarin", "accidentale": "accidental", "accidentalmente": "accidental", "accidente": "accident", "accidenti": "accident", "accieca": "acciec", "accigliato": "accigl", "accingo": "accing", "acciò": "acci", "acciocché": "acciocc", "accipigliato": "accipigl", "acciuffa": "acciuff", "acciughe": "acciug", "acclamazione": "acclam", "acclamazioni": "acclam", "accluder": "accluder", "accluderla": "acclud", "accoglie": "accogl", "accogliendo": "accogl", "accoglienza": "accoglient", "accoglienze": "accoglient", "accogliere": "accogl", "accoglierli": "accogl", "accogliervi": "accogl", "accoglieva": "accogl", "accoglimento": "accogl", "accolse": "accols", "accolta": "accolt", "accoltellamento": "accoltell", "accoltellarlo": "accoltell", "accoltellata": "accoltell", "accolti": "accolt", "accolto": "accolt", "accomiatò": "accomiat", "accommiatò": "accommiat", "accomoda": "accomod", "accomodamento": "accomod", "accomodando": "accomod", "accomodandosi": "accomod", "accomodano": "accomod", "accomodar": "accomod", "accomodarcisi": "accomodarcis", "accomodare": "accomod", "accomodarla": "accomod", "accomodarmi": "accomod", "accomodarsi": "accomod", "accomodata": "accomod", "accomodate": "accomod", "accomodati": "accomod", "accomodato": "accomod", "accomodava": "accomod", "accomodavano": "accomod", "accomoderemo": "accomod", "accomoderò": "accomod", "accomodo": "accomod", "accomodò": "accomod", "accompagna": "accompagn", "accompagnamento": "accompagn", "accompagnando": "accompagn", "accompagnandolo": "accompagn", "accompagnano": "accompagn", "accompagnar": "accompagn", "accompagnare": "accompagn", "accompagnarla": "accompagn", "accompagnarlo": "accompagn", "accompagnaron": "accompagnaron", "accompagnata": "accompagn", "accompagnate": "accompagn", "accompagnati": "accompagn", "accompagnato": "accompagn", "accompagnatolo": "accompagnatol", "accompagnava": "accompagn", "accompagnavano": "accompagn", "accompagnerete": "accompagn", "accompagnerò": "accompagn", "accompagni": "accompagn", "accompagnò": "accompagn", "acconcio": "acconc", "acconsente": "acconsent", "acconsentì": "acconsent", "acconsentire": "acconsent", "acconsentirò": "acconsent", "accontentarsi": "accontent", "accoppia": "accopp", "accoppiamento": "accopp", "accoppiata": "accopp", "accora": "accor", "accoramento": "accor", "accorando": "accor", "accorata": "accor", "accorciato": "accorc", "accorda": "accord", "accordarlo": "accord", "accordarsi": "accord", "accordasse": "accord", "accordate": "accord", "accordato": "accord", "accordava": "accord", "accorderebbero": "accord", "accordi": "accord", "accordo": "accord", "accorga": "accorg", "accorge": "accorg", "accorgendosi": "accorg", "accorgerà": "accorg", "accorgere": "accorg", "accorgermi": "accorg", "accorgersene": "accorg", "accorgersi": "accorg", "accorgesse": "accorgess", "accorgeva": "accorg", "accorgevan": "accorgevan", "accorgo": "accorg", "accorgono": "accorg", "accorpa": "accorp", "accorpamento": "accorp", "accorpando": "accorp", "accorre": "accorr", "accorrere": "accorr", "accorresse": "accorress", "accorreva": "accorr", "accorrevano": "accorr", "accorrono": "accorr", "accorse": "accors", "accorsero": "accorser", "accorso": "accors", "accortamente": "accort", "accorti": "accort", "accorto": "accort", "accortosi": "accort", "accosta": "accost", "accostamento": "accost", "accostandosi": "accost", "accostare": "accost", "accostarglisi": "accostarglis", "accostarsele": "accostarsel", "accostarsi": "accost", "accostate": "accost", "accostatevi": "accostat", "accostati": "accost", "accostato": "accost", "accostatosi": "accostat", "accostava": "accost", "accosto": "accost", "accostò": "accost", "accostumato": "accostum", "accovacciati": "accovacc", "accozzaglia": "accozzagl", "accozzando": "accozz", "accozzar": "accozz", "accozzarsi": "accozz", "accozzati": "accozz", "accrebbe": "accrebb", "accreditamento": "accredit", "accreditati": "accredit", "accrediti": "accred", "accresce": "accresc", "accrescendo": "accresc", "accrescer": "accrescer", "accrescere": "accresc", "accrescerebbe": "accresc", "accrescerle": "accresc", "accrescerlo": "accresc", "accresceva": "accresc", "accrescevano": "accresc", "accresciuta": "accresc", "accucciata": "accucc", "accudire": "accud", "accumulando": "accumul", "accumulato": "accumul", "accurata": "accur", "accusa": "accus", "accusando": "accus", "accusandole": "accus", "accusandolo": "accus", "accusar": "accus", "accusare": "accus", "accusata": "accus", "accusate": "accus", "accusati": "accus", "accusato": "accus", "accusatore": "accus", "accusava": "accus", "accusavan": "accusavan", "accusavano": "accus", "accuse": "accus", "accusò": "accus", "acerba": "acerb", "acerbi": "acerb", "acerra": "acerr", "aceti": "acet", "aceto": "acet", "acetoselle": "acetosell", "acevedo": "aceved", "achille": "achill", "achillini": "achillin", "acidi": "acid", "acireale": "acireal", "acklin": "acklin", "acli": "acli", "acnur": "acnur", "acogliere": "acogl", "acopi": "acop", "acoteias": "acoteias", "acq": "acq", "acqua": "acqua", "acquarone": "acquaron", "acquatico": "acquat", "acquattato": "acquatt", "acque": "acque", "acquea": "acque", "acquedotti": "acquedott", "acquerugiola": "acquerugiol", "acqui": "acqui", "acquieta": "acquiet", "acquietamento": "acquiet", "acquietando": "acquiet", "acquietandosele": "acquietandosel", "acquietante": "acquiet", "acquietare": "acquiet", "acquietarla": "acquiet", "acquietarle": "acquiet", "acquietarlo": "acquiet", "acquietarono": "acquiet", "acquietasse": "acquiet", "acquietati": "acquiet", "acquietava": "acquiet", "acquietò": "acquiet", "acquirente": "acquirent", "acquirenti": "acquirent", "acquisire": "acquis", "acquisirlo": "acquis", "acquisite": "acquis", "acquisito": "acquis", "acquisizione": "acquisizion", "acquisizioni": "acquisizion", "acquista": "acquist", "acquistandosi": "acquist", "acquistar": "acquist", "acquistare": "acquist", "acquistarne": "acquist", "acquistarsi": "acquist", "acquistata": "acquist", "acquistato": "acquist", "acquistavano": "acquist", "acquisterà": "acquist", "acquisteranno": "acquist", "acquisti": "acquist", "acquisto": "acquist", "acquistò": "acquist", "acquitrinosa": "acquitrin", "acquolina": "acquolin", "act": "act", "action": "action", "acuta": "acut", "acutamente": "acut", "acute": "acut", "acuti": "acut", "acuto": "acut", "ad": "ad", "adagino": "adagin", "adagio": "adag", "adam": "adam", "adamo": "adam", "adani": "adan", "adatta": "adatt", "adattandole": "adatt", "adattarla": "adatt", "adattarsi": "adatt", "adattata": "adatt", "adattate": "adatt", "adattati": "adatt", "adattato": "adatt", "adattava": "adatt", "adattavano": "adatt", "adatti": "adatt", "adda": "adda", "addati": "addat", "addebitate": "addebit", "addebito": "addeb", "addensa": "addens", "addensasse": "addens", "addensata": "addens", "addenseranno": "addens", "addenta": "addent", "addestramento": "addestr", "addestrati": "addestr", "addetta": "addett", "addette": "addett", "addetti": "addett", "addetto": "addett", "addietro": "addietr", "addii": "addi", "addio": "addi", "addirittura": "addirittur", "additò": "addit", "addivenire": "addiven", "addizionali": "addizional", "addobbate": "addobb", "addobbi": "addobb", "addolorata": "addolor", "addolorati": "addolor", "addolorato": "addolor", "addome": "addom", "addormentarlo": "addorment", "addormentata": "addorment", "addormentati": "addorment", "addormentato": "addorment", "addormentò": "addorment", "addossando": "addoss", "addossare": "addoss", "addossarvi": "addoss", "addosso": "addoss", "addottrinato": "addottrin", "adduce": "adduc", "adducevate": "adduc", "addurre": "addurr", "addusse": "adduss", "addussero": "addusser", "adeguamento": "adegu", "adeguandosi": "adegu", "adeguarsi": "adegu", "adeguata": "adegu", "adeguatamente": "adeguat", "adeguate": "adegu", "adeguatezza": "adeguatezz", "adeguato": "adegu", "adeguatò": "adeguat", "adeguerà": "adegu", "adelaide": "adelaid", "adelante": "adel", "adelboden": "adelboden", "adempiendo": "ademp", "adempiere": "ademp", "adempimenti": "ademp", "adempimento": "ademp", "adempir": "ademp", "adempire": "ademp", "adempirlo": "ademp", "adempita": "ademp", "adempite": "ademp", "adempito": "ademp", "adeo": "ade", "adepa": "adep", "adepti": "adept", "aderendo": "ader", "aderente": "aderent", "aderenti": "aderent", "aderenze": "aderent", "aderiranno": "ader", "aderito": "ader", "adesca": "adesc", "adesione": "adesion", "adesioni": "adesion", "adesso": "adess", "adi": "adi", "adiacenti": "adiacent", "adiacenze": "adiacent", "adiconsum": "adiconsum", "adige": "adig", "adiranno": "adirann", "adirarsi": "adir", "adirato": "adir", "adito": "adit", "adocchiò": "adocc", "adolescente": "adolescent", "adolescenza": "adolescent", "adolf": "adolf", "adolfo": "adolf", "adombrano": "adombr", "adombrato": "adombr", "adoperar": "adoper", "adoperarsi": "adoper", "adoperate": "adoper", "adoperati": "adoper", "adoperato": "adoper", "adoperavano": "adoper", "adopererà": "adoper", "adoprano": "adopr", "adoprar": "adopr", "adoprare": "adopr", "adoprarla": "adopr", "adoprarlo": "adopr", "adoprarsi": "adopr", "adoprata": "adopr", "adoprati": "adopr", "adoprato": "adopr", "adoprava": "adopr", "adopravano": "adopr", "adoprerebbe": "adopr", "adorando": "ador", "adorare": "ador", "adorazione": "ador", "adorna": "adorn", "adornata": "adorn", "adottabili": "adott", "adottano": "adott", "adottare": "adott", "adottarli": "adott", "adottata": "adott", "adottati": "adott", "adottato": "adott", "adottivo": "adott", "adozione": "adozion", "adrian": "adrian", "adriana": "adrian", "adriano": "adri", "adriatic": "adriatic", "adriatica": "adriat", "adriatiche": "adriat", "adriatico": "adriat", "adris": "adris", "adspergine": "adspergin", "adspersisset": "adspersisset", "adulatori": "adul", "adulta": "adult", "adulterio": "adulter", "adulti": "adult", "adunanza": "adun", "adunate": "adun", "adunco": "adunc", "adunque": "adunqu", "aduste": "adust", "advances": "advances", "adwa": "adwa", "ae": "ae", "aedes": "aedes", "aedium": "aedium", "aequo": "aequ", "aerea": "aere", "aeree": "aere", "aerei": "aere", "aereo": "aere", "aeromobili": "aeromobil", "aeronautica": "aeronaut", "aeronautico": "aeronaut", "aeroporto": "aeroport", "aeroportuale": "aeroportual", "aerosol": "aerosol", "afa": "afa", "affaccendarsi": "affaccend", "affaccendata": "affaccend", "affaccendato": "affaccend", "affaccendava": "affaccend", "affaccendò": "affaccend", "affacchinarsi": "affacchin", "affaccia": "affacc", "affacciandosi": "affacc", "affacciare": "affacc", "affacciaron": "affacciaron", "affacciarsi": "affacc", "affacciassero": "affacc", "affacciata": "affacc", "affacciati": "affacc", "affacciato": "affacc", "affacciatosi": "affacciat", "affacciava": "affacc", "affacciavano": "affacc", "affacciò": "affacc", "affacendato": "affacend", "affamata": "affam", "affamati": "affam", "affamato": "affam", "affamatore": "affam", "affamatori": "affam", "affannarsi": "affann", "affannata": "affann", "affannato": "affann", "affannava": "affann", "affanno": "affann", "affannosa": "affann", "affannosamente": "affann", "affannose": "affann", "affannoso": "affann", "affar": "affar", "affaracci": "affaracc", "affare": "affar", "affari": "affar", "affaristica": "affarist", "affascinante": "affascin", "affascinanti": "affascin", "affaticandoci": "affatic", "affaticarsi": "affatic", "affaticasse": "affatic", "affaticata": "affatic", "affaticati": "affatic", "affaticato": "affatic", "affatto": "affatt", "afferma": "afferm", "affermando": "afferm", "affermano": "afferm", "affermare": "afferm", "affermarsi": "afferm", "affermata": "afferm", "affermative": "afferm", "affermativo": "afferm", "affermato": "afferm", "affermazione": "afferm", "affermazioni": "afferm", "affermo": "afferm", "affermò": "afferm", "afferra": "afferr", "afferrando": "afferr", "afferrandogli": "afferr", "afferrandola": "afferr", "afferrandolo": "afferr", "afferrano": "afferr", "afferrar": "afferr", "afferrarlo": "afferr", "afferrata": "afferr", "afferrati": "afferr", "afferrato": "afferr", "afferrò": "afferr", "affettata": "affett", "affettato": "affett", "affetti": "affett", "affettivo": "affett", "affetto": "affett", "affettuosa": "affettu", "affettuosamente": "affettu", "affettuose": "affettu", "affettuosi": "affettu", "affettuoso": "affettu", "affezionata": "affezion", "affezionato": "affezion", "affezione": "affezion", "affezioni": "affezion", "affianca": "affianc", "affiancare": "affianc", "affiancato": "affianc", "affiancherà": "affianc", "affiancheranno": "affianc", "affianchi": "affianc", "affibiargli": "affib", "affichè": "affic", "affida": "affid", "affidabile": "affid", "affidabili": "affid", "affidabilità": "affid", "affidamento": "affid", "affidano": "affid", "affidare": "affid", "affidargli": "affid", "affidata": "affid", "affidate": "affid", "affidati": "affid", "affidato": "affid", "affidatomi": "affidatom", "affievoliscano": "affievol", "affievolisse": "affievoliss", "affilate": "affil", "affinamento": "affin", "affinché": "affinc", "affinchè": "affinc", "affine": "affin", "affini": "affin", "affinis": "affinis", "affissa": "affiss", "affissi": "affiss", "affissione": "affission", "affissioni": "affission", "affisso": "affiss", "affittata": "affitt", "affittate": "affitt", "affittato": "affitt", "affitti": "affitt", "affitto": "affitt", "affittuari": "affittuar", "affittuario": "affittuar", "afflato": "afflat", "affliggervi": "affligg", "afflisse": "affliss", "afflitta": "afflitt", "afflitte": "afflitt", "afflitti": "afflitt", "afflitto": "afflitt", "afflizione": "afflizion", "afflizioni": "afflizion", "affluiscono": "afflu", "affluiti": "afflu", "afflusso": "affluss", "affoga": "affog", "affogare": "affog", "affolla": "affoll", "affollamento": "affoll", "affollano": "affoll", "affollare": "affoll", "affollarsi": "affoll", "affollata": "affoll", "affollati": "affoll", "affollato": "affoll", "affonda": "affond", "affondando": "affond", "affondare": "affond", "affondata": "affond", "affondate": "affond", "affondato": "affond", "affondo": "affond", "affossati": "affoss", "affresco": "affresc", "affretta": "affrett", "affrettar": "affrett", "affrettare": "affrett", "affrettato": "affrett", "affrettava": "affrett", "affrettò": "affrett", "affronta": "affront", "affrontando": "affront", "affrontano": "affront", "affrontar": "affront", "affrontare": "affront", "affrontarla": "affront", "affrontarlo": "affront", "affrontarsi": "affront", "affrontata": "affront", "affrontate": "affront", "affrontati": "affront", "affrontato": "affront", "affronterai": "affront", "affronteranno": "affront", "affronteremo": "affront", "affronto": "affront", "affumicate": "affumic", "afghana": "afghan", "afghane": "afghan", "afghani": "afghan", "afghanistan": "afghanistan", "aflare": "aflar", "afp": "afp", "africa": "afric", "africano": "afric", "afrique": "afriqu", "ag": "ag", "aga": "aga", "agapov": "agapov", "agassi": "agass", "agata": "agat", "agazzi": "agazz", "agci": "agci", "age": "age", "agenda": "agend", "agennli": "agennl", "agensud": "agensud", "agente": "agent", "agenti": "agent", "agenzia": "agenz", "agenzie": "agenz", "agevolare": "agevol", "agevolata": "agevol", "agevolato": "agevol", "agevolazione": "agevol", "agevolazioni": "agevol", "agevole": "agevol", "agevolezze": "agevolezz", "agevoli": "agevol", "agganciare": "agganc", "aggettivo": "aggett", "agghiacciante": "agghiacc", "agginte": "aggint", "aggiorna": "aggiorn", "aggiornamenti": "aggiorn", "aggiornamento": "aggiorn", "aggiornata": "aggiorn", "aggira": "aggir", "aggirano": "aggir", "aggirarsi": "aggir", "aggirava": "aggir", "aggiudicato": "aggiudic", "aggiunga": "aggiung", "aggiunge": "aggiung", "aggiungendo": "aggiung", "aggiunger": "aggiunger", "aggiungeranno": "aggiung", "aggiungere": "aggiung", "aggiungervi": "aggiung", "aggiungeva": "aggiung", "aggiungevano": "aggiung", "aggiungiamo": "aggiung", "aggiungono": "aggiung", "aggiunse": "aggiuns", "aggiunsero": "aggiunser", "aggiunsi": "aggiuns", "aggiunta": "aggiunt", "aggiunte": "aggiunt", "aggiunti": "aggiunt", "aggiuntive": "aggiunt", "aggiuntivi": "aggiunt", "aggiunto": "aggiunt", "aggiuntovi": "aggiuntov", "aggiustamenti": "aggiust", "aggiustamento": "aggiust", "aggiutto": "aggiutt", "aggranchiate": "aggranc", "aggrapparsi": "aggrapp", "aggravando": "aggrav", "aggravare": "aggrav", "aggravarsi": "aggrav", "aggravata": "aggrav", "aggravatissima": "aggravatissim", "aggravato": "aggrav", "aggraverebbe": "aggrav", "aggredisce": "aggred", "aggredita": "aggred", "aggrediti": "aggred", "aggredito": "aggred", "aggregare": "aggreg", "aggregazione": "aggreg", "aggregazioni": "aggreg", "aggregherà": "aggreg", "aggregrazione": "aggregr", "aggressione": "aggression", "aggressioni": "aggression", "aggressivi": "aggress", "aggressività": "aggress", "aggressivo": "aggress", "aggrinzando": "aggrinz", "aggrottando": "aggrott", "aggrottate": "aggrott", "aggruppano": "aggrupp", "aggruppati": "aggrupp", "agguanta": "agguant", "agguantati": "agguant", "agguantò": "agguant", "agguati": "aggu", "agguato": "aggu", "agguerrita": "agguerr", "aghini": "aghin", "agi": "agi", "agiata": "agi", "agiatezza": "agiatezz", "agiati": "agi", "agiato": "agi", "agile": "agil", "agio": "agi", "agiranno": "agirann", "agire": "agir", "agiremo": "agirem", "agisca": "agisc", "agisce": "agisc", "agita": "agit", "agitarlo": "agit", "agitata": "agit", "agitate": "agit", "agitati": "agit", "agitato": "agit", "agitava": "agit", "agitazion": "agitazion", "agitazione": "agit", "agitazioni": "agit", "agito": "agit", "agiutto": "agiutt", "agl": "agl", "agli": "agli", "agnalli": "agnall", "agnelli": "agnell", "agnello": "agnell", "agnes": "agnes", "agnese": "agnes", "ago": "ago", "agonia": "agon", "agonismo": "agon", "agonistica": "agonist", "agonizzante": "agonizz", "agos": "agos", "agostina": "agostin", "agostini": "agostin", "agostino": "agostin", "agosto": "agost", "agr": "agr", "agra": "agra", "agrario": "agrar", "agreement": "agreement", "agren": "agren", "agric": "agric", "agricola": "agricol", "agricole": "agricol", "agricoli": "agricol", "agricolo": "agricol", "agricoltori": "agricoltor", "agricoltura": "agricoltur", "agrifoglio": "agrifogl", "agrifutura": "agrifutur", "agrigento": "agrigent", "agro": "agro", "aguanta": "aguant", "aguas": "aguas", "aguayo": "aguay", "aguzzando": "aguzz", "aguzzano": "aguzz", "aguzzava": "aguzz", "aguzzino": "aguzzin", "ah": "ah", "ahata": "ahat", "ahi": "ahi", "ahimè": "ahim", "ahmed": "ahmed", "ahn": "ahn", "ahronot": "ahronot", "ai": "ai", "aia": "aia", "aidid": "aidid", "aids": "aids", "aie": "aie", "aiebant": "aiebant", "aimee": "aime", "aimone": "aimon", "air": "air", "aires": "aires", "ais": "ais", "aiuta": "aiut", "aiutando": "aiut", "aiutante": "aiut", "aiutanti": "aiut", "aiutar": "aiut", "aiutarci": "aiut", "aiutare": "aiut", "aiutarla": "aiut", "aiutarli": "aiut", "aiutarlo": "aiut", "aiutarmi": "aiut", "aiutarono": "aiut", "aiutarsi": "aiut", "aiutarvi": "aiut", "aiutasse": "aiut", "aiutassero": "aiut", "aiutata": "aiut", "aiutate": "aiut", "aiutateci": "aiutatec", "aiutatemi": "aiutatem", "aiutati": "aiut", "aiutato": "aiut", "aiutava": "aiut", "aiuterà": "aiut", "aiuti": "aiut", "aiutino": "aiutin", "aiuto": "aiut", "aiutò": "aiut", "aix": "aix", "aizzargli": "aizz", "aizzasse": "aizz", "aizzata": "aizz", "aizzatori": "aizzator", "aizzava": "aizz", "ajaccio": "ajacc", "ajello": "ajell", "akbar": "akbar", "al": "al", "ala": "ala", "alabarde": "alabard", "alabardieri": "alabardier", "alacce": "alacc", "alacrità": "alacr", "alain": "alain", "alam": "alam", "alan": "alan", "alard": "alard", "alba": "alba", "albafeira": "albafeir", "albagìa": "albagì", "albanese": "albanes", "albanesè": "albanes", "albanesi": "albanes", "albania": "alban", "albano": "alban", "albanova": "albanov", "albeggiare": "albegg", "alberga": "alberg", "albergato": "alberg", "alberghi": "alberg", "alberghiero": "alberghier", "albergo": "alberg", "alberi": "alber", "albero": "alber", "alberoni": "alberon", "albertini": "albertin", "alberto": "albert", "albino": "albin", "albo": "albo", "album": "album", "alcabizio": "alcabiz", "alcatel": "alcatel", "alce": "alce", "alcide": "alcid", "alcun": "alcun", "alcuna": "alcun", "alcune": "alcun", "alcuni": "alcun", "alcuno": "alcun", "aldair": "alda", "aldebaran": "aldebaran", "aldilà": "aldil", "aldo": "aldo", "aldy": "aldy", "ale": "ale", "aleksadr": "aleksadr", "aleksander": "aleksander", "aleksandra": "aleksandr", "alema": "alem", "alemanna": "alemann", "alemanne": "alemann", "alemanni": "alemann", "alemanno": "alemann", "alessandra": "alessandr", "alessandria": "alessandr", "alessandrini": "alessandrin", "alessandro": "alessandr", "alessio": "aless", "alexander": "alexander", "alexandra": "alexandr", "alexeyev": "alexeyev", "alfa": "alfa", "alfabeto": "alfabet", "alfiere": "alfi", "alfieri": "alfier", "alfiero": "alfier", "alfine": "alfin", "alfonsi": "alfons", "alfonso": "alfons", "alfonzo": "alfonz", "alfredo": "alfred", "alga": "alga", "algeri": "alger", "algeria": "alger", "algerina": "algerin", "algerine": "algerin", "algerini": "algerin", "algerino": "algerin", "algerstedt": "algerstedt", "alghe": "alghe", "alghero": "algher", "algunos": "algunos", "ali": "ali", "alias": "alias", "alienare": "alien", "alienazione": "alien", "alieni": "alien", "alieno": "alien", "alienò": "alien", "aliis": "aliis", "alimentano": "aliment", "alimentare": "aliment", "alimentari": "alimentar", "alimentata": "aliment", "alimentato": "aliment", "alimentazione": "aliment", "alimenti": "aliment", "alimento": "aliment", "aliquota": "aliquot", "aliquote": "aliquot", "alitalia": "alital", "aliti": "alit", "alito": "alit", "alive": "aliv", "alkan": "alkan", "alkhan": "alkhan", "all": "all", "alla": "alla", "allacciamenti": "allacc", "allacciate": "allacc", "allacciò": "allacc", "allagava": "allag", "allan": "allan", "allargamento": "allarg", "allargando": "allarg", "allargar": "allarg", "allargare": "allarg", "allargarne": "allarg", "allargate": "allarg", "allargati": "allarg", "allargato": "allarg", "allargava": "allarg", "allarmante": "allarm", "allarmata": "allarm", "allarmati": "allarm", "allarme": "allarm", "allattarne": "allatt", "alle": "alle", "alleanza": "alleanz", "alleanze": "alleanz", "alleare": "alle", "allearmi": "alle", "allearono": "alle", "allearsi": "alle", "alleati": "alle", "alleato": "alle", "allegava": "alleg", "allegazioni": "alleg", "alleggerimento": "allegger", "alleggerire": "allegger", "alleggiamento": "allegg", "alleghe": "alleg", "allegò": "alleg", "allegra": "allegr", "allegramente": "allegr", "allegre": "allegr", "allegrezza": "allegrezz", "allegrezze": "allegrezz", "allegri": "allegr", "allegria": "allegr", "allegro": "allegr", "allenamenti": "allen", "allenamento": "allen", "allenarmi": "allen", "allenate": "allen", "allenato": "allen", "allenatore": "allen", "allenatori": "allen", "allende": "allend", "allenta": "allent", "allentare": "allent", "allentata": "allent", "allentate": "allent", "allentato": "allent", "allentò": "allent", "allerta": "allert", "allestendo": "allest", "allestimento": "allest", "allestir": "allest", "allestire": "allest", "allestita": "allest", "allestite": "allest", "allestito": "allest", "allettamenti": "allett", "allettarla": "allett", "allettato": "allett", "allevamento": "allev", "allevarli": "allev", "allevata": "allev", "allevato": "allev", "alleviare": "allev", "alli": "alli", "allieva": "alli", "allieve": "alliev", "allievi": "alli", "allievo": "alli", "allison": "allison", "allla": "allla", "allo": "allo", "allocuzione": "allocu", "allogata": "allog", "allogate": "allog", "alloggi": "allogg", "alloggiamenti": "allogg", "alloggiar": "allogg", "alloggiare": "allogg", "alloggiata": "allogg", "alloggiate": "allogg", "alloggiati": "allogg", "alloggiato": "allogg", "alloggiava": "allogg", "alloggiavano": "allogg", "alloggio": "allogg", "allontana": "allontan", "allontanando": "allontan", "allontanandoli": "allontan", "allontanandosi": "allontan", "allontanar": "allontan", "allontanare": "allontan", "allontanarlo": "allontan", "allontanarne": "allontan", "allontanarono": "allontan", "allontanarsi": "allontan", "allontanasse": "allontan", "allontanata": "allontan", "allontanati": "allontan", "allontanato": "allontan", "allontanava": "allontan", "allontanavano": "allontan", "allontani": "allontan", "allontanò": "allontan", "allor": "allor", "allora": "allor", "allorché": "allorc", "allori": "allor", "allucinante": "allucin", "allucinanti": "allucin", "alluminio": "allumin", "allunga": "allung", "allungando": "allung", "allungar": "allung", "allungare": "allung", "allungate": "allung", "allungato": "allung", "allungava": "allung", "allungò": "allung", "allusione": "allusion", "allusiva": "allus", "alluvionate": "alluvion", "alluvionati": "alluvion", "alma": "alma", "almanaccar": "almanacc", "almanaccare": "almanacc", "almanacchi": "almanacc", "almaral": "almaral", "almen": "almen", "almeno": "almen", "alo": "alo", "aloisi": "alois", "alone": "alon", "alpestre": "alpestr", "alpi": "alpi", "alpigiano": "alpig", "alpine": "alpin", "alpinimo": "alpinim", "alpino": "alpin", "alquanti": "alquant", "alquanto": "alquant", "alsthom": "alsthom", "alt": "alt", "alta": "alta", "altafini": "altafin", "altalenante": "altalen", "altamente": "alt", "altamirano": "altamir", "altar": "altar", "altare": "altar", "alte": "alte", "alter": "alter", "altera": "alter", "alterando": "alter", "alterarsi": "alter", "alterata": "alter", "alterate": "alter", "alterati": "alter", "alterato": "alter", "alteravan": "alteravan", "alterazione": "alter", "alterigia": "alterig", "alternando": "altern", "alternanza": "altern", "alternate": "altern", "alternati": "altern", "alternativa": "altern", "alternativamente": "altern", "alternative": "altern", "alternativi": "altern", "alternativo": "altern", "altero": "alter", "altezza": "altezz", "alti": "alti", "altissimi": "altissim", "altissimo": "altissim", "alto": "alto", "altoatesina": "altoatesin", "altoatesine": "altoatesin", "altoatesini": "altoatesin", "altoatesino": "altoatesin", "altoparlanti": "altoparl", "altopiano": "altop", "altos": "altos", "altr": "altr", "altra": "altra", "altre": "altre", "altresì": "altres", "altrettali": "altrettal", "altrettanta": "altrettant", "altrettante": "altrett", "altrettanti": "altrett", "altrettanto": "altrettant", "altri": "altri", "altrì": "altrì", "altrimenti": "altriment", "altringer": "altringer", "altro": "altro", "altrò": "altrò", "altroieri": "altroier", "altrove": "altrov", "altrui": "altru", "alture": "altur", "alumix": "alumix", "alunne": "alunn", "alunni": "alunn", "alveare": "alve", "alvin": "alvin", "alza": "alza", "alzan": "alzan", "alzando": "alzand", "alzandogli": "alzandogl", "alzandosi": "alzand", "alzano": "alzan", "alzar": "alzar", "alzare": "alzar", "alzargli": "alzargl", "alzarla": "alzarl", "alzarsi": "alzars", "alzasse": "alzass", "alzata": "alzat", "alzate": "alzat", "alzatevi": "alzat", "alzati": "alzat", "alzato": "alzat", "alzatosi": "alzat", "alzava": "alzav", "alzavano": "alzav", "alzi": "alzi", "alzo": "alzo", "alzò": "alzò", "am": "am", "ama": "ama", "amabile": "amabil", "amabili": "amabil", "amano": "aman", "amante": "amant", "amanti": "amant", "amar": "amar", "amara": "amar", "amaramente": "amar", "amaranti": "amar", "amare": "amar", "amareggiata": "amaregg", "amareggiati": "amaregg", "amareggiato": "amaregg", "amarezza": "amarezz", "amari": "amar", "amaritudine": "amaritudin", "amarli": "amarl", "amaro": "amar", "amarò": "amar", "amaru": "amaru", "amata": "amat", "amateli": "amatel", "amatevi": "amat", "amati": "amat", "amato": "amat", "amatore": "amator", "amatori": "amator", "amatorio": "amator", "amava": "amav", "amavano": "amav", "amavate": "amav", "amazzonia": "amazzon", "amazzonica": "amazzon", "ambasce": "ambasc", "ambasciata": "ambasc", "ambasciator": "ambasciator", "ambasciatore": "ambasc", "ambasciatrice": "ambasc", "ambedue": "ambedu", "ambientale": "ambiental", "ambientali": "ambiental", "ambientalista": "ambiental", "ambientata": "ambient", "ambientato": "ambient", "ambientazioni": "ambient", "ambiente": "ambient", "ambienti": "ambient", "ambiete": "ambi", "ambiguo": "ambigu", "ambita": "ambit", "ambito": "ambit", "ambizione": "ambizion", "ambizioni": "ambizion", "ambiziosa": "ambiz", "ambiziose": "ambiz", "ambro": "ambro", "ambrogio": "ambrog", "ambros": "ambros", "ambrosetti": "ambrosett", "ambrosia": "ambros", "ambrosiana": "ambrosian", "ambrosio": "ambros", "ambroveneto": "ambrovenet", "ambulanti": "ambul", "ambulanze": "ambul", "ambulatori": "ambul", "amedeo": "amede", "amendola": "amendol", "amene": "amen", "amenità": "amen", "ameno": "amen", "amer": "amer", "america": "amer", "american": "american", "americana": "american", "americanbond": "americanbond", "americane": "american", "americani": "american", "americano": "americ", "americas": "americas", "amerigo": "amerig", "amerini": "amerin", "ametrano": "ametr", "ami": "ami", "amianto": "amiant", "amica": "amic", "amiche": "amic", "amichevole": "amichevol", "amici": "amic", "amicizia": "amiciz", "amicizie": "amiciz", "amico": "amic", "amiram": "amiram", "amm": "amm", "ammaccar": "ammacc", "ammaccate": "ammacc", "ammaccati": "ammacc", "ammaccato": "ammacc", "ammaestramento": "ammaestr", "ammaestrata": "ammaestr", "ammaestrato": "ammaestr", "ammainato": "ammain", "ammalare": "ammal", "ammalarono": "ammal", "ammalarsi": "ammal", "ammalata": "ammal", "ammalate": "ammal", "ammalati": "ammal", "ammalato": "ammal", "ammalavano": "ammal", "ammalazzati": "ammalazz", "ammaliziati": "ammaliz", "ammalò": "ammal", "amman": "amman", "ammansare": "ammans", "ammansato": "ammans", "ammassa": "ammass", "ammasso": "ammass", "ammazza": "ammazz", "ammazzar": "ammazz", "ammazzare": "ammazz", "ammazzarvi": "ammazz", "ammazzassero": "ammazz", "ammazzati": "ammazz", "ammazzato": "ammazz", "ammazzeranno": "ammazz", "ammazzerebbe": "ammazz", "ammazzi": "ammazz", "ammazzo": "ammazz", "ammazzò": "ammazz", "ammessa": "ammess", "ammesse": "ammess", "ammessi": "ammess", "ammesso": "ammess", "ammette": "ammett", "ammettere": "ammett", "amministrarli": "amministr", "amministrativa": "amministr", "amministrative": "amministr", "amministrativi": "amministr", "amministrativo": "amministr", "amministrato": "amministr", "amministratore": "amministr", "amministratori": "amministr", "amministrazione": "amministr", "amministrazioni": "amministr", "amministriamo": "amministr", "amministrtiva": "amministrt", "ammira": "ammir", "ammirabile": "ammir", "ammiraglio": "ammiragl", "ammirare": "ammir", "ammirati": "ammir", "ammirato": "ammir", "ammirava": "ammir", "ammirazione": "ammir", "ammirevole": "ammirevol", "ammissione": "ammission", "ammodernata": "ammodern", "ammonisce": "ammon", "ammoniscono": "ammon", "ammonissero": "ammon", "ammoniti": "ammon", "ammonito": "ammon", "ammoniva": "ammon", "ammonizione": "ammonizion", "ammonizioni": "ammonizion", "ammontare": "ammont", "ammontari": "ammontar", "ammontata": "ammont", "ammontate": "ammont", "ammontati": "ammont", "ammontato": "ammont", "ammontavano": "ammont", "ammonticchiati": "ammonticc", "ammorbato": "ammorb", "ammorbidire": "ammorbid", "ammorbidirè": "ammorbidir", "ammortire": "ammort", "ammortito": "ammort", "ammortizzatore": "ammortizz", "ammortizzatori": "ammortizz", "ammucchiate": "ammucc", "ammutolisce": "ammutol", "ammutolisco": "ammutol", "amnistia": "amnist", "amnon": "amnon", "amo": "amo", "amodeo": "amode", "amor": "amor", "amore": "amor", "amorevole": "amorevol", "amorevolezza": "amorevolezz", "amorevoli": "amorevol", "amorevolmente": "amorevol", "amori": "amor", "amorore": "amoror", "amoroso": "amor", "amoruso": "amorus", "amos": "amos", "amparo": "ampar", "ampezzo": "ampezz", "ampi": "ampi", "ampia": "ampi", "ampiamente": "ampi", "ampie": "ampi", "ampiezza": "ampiezz", "ampio": "ampi", "amplia": "ampli", "ampliando": "ampli", "ampliare": "ampli", "ampliata": "ampli", "amplificata": "amplific", "amplificato": "amplific", "amplissimi": "amplissim", "ampolla": "ampoll", "ampollosamente": "ampoll", "ampollose": "ampoll", "amr": "amr", "amsterdam": "amsterdam", "amy": "amy", "an": "an", "anac": "anac", "anadolu": "anadolu", "anafilattico": "anafilatt", "anagrafe": "anagraf", "analisi": "analis", "analisti": "anal", "analitica": "analit", "analizza": "analizz", "analizzando": "analizz", "analoga": "analog", "analoghe": "analog", "analoghi": "analog", "analogia": "analog", "analogie": "analog", "analogo": "analog", "anas": "anas", "anastasia": "anastas", "anatema": "anatem", "anatemi": "anatem", "anatoli": "anatol", "anatoly": "anatoly", "anav": "anav", "anca": "anca", "anch": "anch", "anche": "anche", "anco": "anco", "ancona": "ancon", "ancor": "ancor", "ancora": "ancor", "ancorata": "ancor", "ancorato": "ancor", "ancorché": "ancorc", "ancudine": "ancudin", "and": "and", "andamenti": "andament", "andamento": "andament", "andando": "andand", "andandogli": "andandogl", "andandole": "andandol", "andandomi": "andandom", "andandosene": "andandosen", "andar": "andar", "andarci": "andarc", "andare": "andar", "andargli": "andargl", "andarle": "andarl", "andarlo": "andarl", "andarmene": "andarmen", "andarmi": "andarm", "andarne": "andarn", "andaron": "andaron", "andarono": "andar", "andarsene": "andarsen", "andarsi": "andars", "andarvene": "andarven", "andarvisi": "andarvis", "andasse": "andass", "andasser": "andasser", "andassero": "andasser", "andassi": "andass", "andassimo": "andassim", "andata": "andat", "andatale": "andatal", "andate": "andat", "andati": "andat", "andato": "andat", "andatura": "andatur", "andava": "andav", "andavamo": "andavam", "andavan": "andavan", "andavano": "andav", "andavi": "andav", "andavo": "andav", "andazzo": "andazz", "anderà": "ander", "anderanno": "anderann", "anderebbe": "anderebb", "anderebbero": "anderebber", "anderemo": "anderem", "anderete": "ander", "anderlecht": "anderlecht", "anderò": "ander", "anderson": "anderson", "andersson": "andersson", "andiam": "andiam", "andiamo": "andiam", "andirivieni": "andirivien", "andito": "andit", "ando": "ando", "andò": "andò", "andrà": "andrà", "andranno": "andrann", "andre": "andre", "andrè": "andrè", "andrea": "andre", "andreas": "andreas", "andreatta": "andreatt", "andrebbe": "andrebb", "andrei": "andre", "andremo": "andrem", "andreoli": "andreol", "andreotti": "andreott", "andres": "andres", "andrew": "andrew", "andrey": "andrey", "andria": "andri", "andrija": "andrij", "andrino": "andrin", "andrò": "andrò", "andromeda": "andromed", "androne": "andron", "andronico": "andron", "anelli": "anell", "anello": "anell", "anellò": "anell", "anfia": "anfi", "anfibi": "anfib", "anfibia": "anfib", "anfibio": "anfib", "angela": "angel", "angeles": "angeles", "angeliche": "angel", "angelini": "angelin", "angelis": "angelis", "angelo": "angel", "angelus": "angelus", "angesia": "anges", "angheria": "angher", "angherie": "angher", "angioli": "angiol", "angiolo": "angiol", "anglicana": "anglican", "anglo": "anglo", "angloma": "anglom", "angola": "angol", "angolana": "angolan", "angoli": "angol", "angolo": "angol", "angosce": "angosc", "angoscia": "angosc", "angosciosa": "angosc", "angosciosamente": "angosc", "angosciose": "angosc", "angoscioso": "angosc", "angrisani": "angrisan", "angusta": "angust", "angustia": "angust", "angustiarsi": "angust", "angustiate": "angust", "angustiati": "angust", "angustiato": "angust", "angustie": "angust", "angustiosa": "angust", "angusto": "angust", "anhalt": "anhalt", "anidride": "anidrid", "anima": "anim", "animale": "animal", "animali": "animal", "animalium": "animalium", "animando": "anim", "animare": "anim", "animarla": "anim", "animarsi": "anim", "animarvi": "anim", "animata": "anim", "animate": "anim", "animati": "anim", "animato": "anim", "animava": "anim", "animazione": "anim", "anime": "anim", "animi": "anim", "animo": "anim", "animosa": "anim", "animosità": "animos", "animoso": "anim", "ankara": "ankar", "anna": "anna", "annacquarne": "annacqu", "annaffiata": "annaff", "annali": "annal", "annaspare": "annasp", "annata": "annat", "annate": "annat", "anne": "anne", "annebbia": "annebb", "annebbiare": "annebb", "annebbiava": "annebb", "annegazione": "anneg", "annelore": "annelor", "annerite": "anner", "annessa": "anness", "annessi": "anness", "annesso": "anness", "anni": "anni", "annibale": "annibal", "annichilata": "annichil", "annidati": "annid", "annientarli": "annient", "anniversari": "anniversar", "anniversario": "anniversar", "anniversary": "anniversary", "annni": "annni", "anno": "anno", "annodò": "annod", "annoiarsi": "annoi", "annoiarvi": "annoi", "annoiassero": "annoi", "annoiati": "annoi", "annoiato": "annoi", "annoiava": "annoi", "annona": "annon", "annone": "annon", "annoni": "annon", "annosa": "annos", "annotata": "annot", "annotato": "annot", "annottar": "annott", "annovera": "annover", "annoverare": "annover", "annua": "annu", "annuale": "annual", "annuali": "annual", "annualmente": "annual", "annui": "annu", "annullamento": "annull", "annullando": "annull", "annullare": "annull", "annullata": "annull", "annullato": "annull", "annuncia": "annunc", "annunciando": "annunc", "annunciano": "annunc", "annunciare": "annunc", "annunciarla": "annunc", "annunciata": "annunc", "annunciati": "annunc", "annunciato": "annunc", "annunciavano": "annunc", "annuncio": "annunc", "annunzia": "annunz", "annunziando": "annunz", "annunziano": "annunz", "annunziar": "annunz", "annunziare": "annunz", "annunziarle": "annunz", "annunziarono": "annunz", "annunziarsi": "annunz", "annunziata": "annunz", "annunziate": "annunz", "annunziato": "annunz", "annunziatori": "annunz", "annunziava": "annunz", "annunzio": "annunz", "annunziò": "annunz", "annuo": "annu", "anomale": "anomal", "anomalia": "anomal", "anonimato": "anonim", "anonimo": "anonim", "anoressia": "anoress", "anoressici": "anoress", "anouk": "anouk", "anp": "anp", "anpac": "anpac", "anpav": "anpav", "anpcat": "anpcat", "ansa": "ansa", "ansaldo": "ansald", "ansante": "ansant", "ansanti": "ansant", "anselmi": "anselm", "anselmo": "anselm", "ansett": "ansett", "ansia": "ansi", "ansietà": "ansiet", "ansiosa": "ansios", "ansiosamente": "ansios", "ansioso": "ansios", "antagonisti": "antagon", "antares": "antares", "antartide": "antartid", "ante": "ante", "antecedente": "antecedent", "antecedenti": "antecedent", "antenato": "anten", "antenne": "antenn", "anteponeva": "antepon", "anteporre": "anteporr", "anteprima": "anteprim", "antequam": "antequam", "anterselva": "anterselv", "anthony": "anthony", "anti": "anti", "antiallergico": "antiallerg", "antiberlusconi": "antiberluscon", "antibiotici": "antibiot", "antibiotico": "antibiot", "antica": "antic", "anticaglie": "anticagl", "anticamera": "anticamer", "anticamere": "anticam", "antiche": "antic", "antichi": "antic", "antichità": "antic", "anticipa": "anticip", "anticipare": "anticip", "anticiparlo": "anticip", "anticipata": "anticip", "anticipatamente": "anticipat", "anticipate": "anticip", "anticipato": "anticip", "anticipatore": "anticip", "anticipazione": "anticip", "anticipazioni": "anticip", "anticipi": "anticip", "anticipo": "anticip", "antico": "antic", "anticomunismo": "anticomun", "anticristi": "anticr", "antidemocratico": "antidemocrat", "antidemocrazia": "antidemocraz", "antifascismo": "antifasc", "antifurto": "antifurt", "antille": "antill", "antimafia": "antimaf", "antimo": "antim", "antipatia": "antipat", "antiperipatetica": "antiperipatet", "antipodi": "antipod", "antiproiettile": "antiproiettil", "antistante": "antist", "antitbc": "antitbc", "antitetica": "antitet", "antitetico": "antitet", "antitrust": "antitrust", "antivedendo": "antived", "antognoni": "antognon", "antologie": "antolog", "antona": "anton", "antonella": "antonell", "antonelli": "antonell", "antoni": "anton", "antonina": "antonin", "antonio": "anton", "antonioli": "antoniol", "antonomasia": "antonomas", "antonov": "antonov", "antonucci": "antonucc", "antraci": "antrac", "antti": "antti", "anulare": "anul", "anversa": "anvers", "anya": "anya", "anzi": "anzi", "anziana": "anzian", "anziane": "anzian", "anziani": "anzian", "anzianità": "anzian", "anziano": "anzi", "anzichè": "anzic", "anzio": "anzi", "anzitutto": "anzitutt", "aosta": "aost", "aouita": "aou", "ap": "ap", "aparecido": "aparecid", "apartheid": "apartheid", "aperta": "apert", "apertamente": "apert", "aperte": "apert", "apertè": "apert", "aperti": "apert", "aperto": "apert", "apertura": "apertur", "aperture": "apertur", "apolloni": "apollon", "apologeta": "apologet", "apologia": "apolog", "apologie": "apolog", "apostrofe": "apostrof", "appagarlo": "appag", "appagato": "appag", "appagava": "appag", "appagherò": "appag", "appaiono": "appai", "appaltato": "appalt", "appaltatore": "appalt", "appaltatrici": "appalt", "appalto": "appalt", "appaluditissimi": "appaluditissim", "appannamento": "appann", "appannarsi": "appann", "appannò": "appann", "apparato": "appar", "appare": "appar", "apparecchi": "apparecc", "apparecchiar": "apparecc", "apparecchiare": "apparecc", "apparecchiata": "apparecc", "apparecchiate": "apparecc", "apparecchiati": "apparecc", "apparecchiato": "apparecc", "apparecchio": "apparecc", "apparecchiò": "apparecc", "apparendogli": "appar", "apparente": "apparent", "apparentemente": "apparent", "apparenti": "apparent", "apparenza": "apparent", "apparenze": "apparent", "apparir": "appar", "apparire": "appar", "apparisca": "appar", "apparisse": "appariss", "apparitore": "apparitor", "apparitori": "apparitor", "appariva": "appar", "apparivano": "appar", "apparizione": "apparizion", "apparizioni": "apparizion", "apparsa": "appars", "apparse": "appars", "apparsi": "appars", "apparso": "appars", "appartamenti": "appart", "appartamento": "appart", "appartato": "appart", "appartenente": "appartenent", "appartenenti": "appartenent", "appartenenza": "appartenent", "appartenenze": "appartenent", "appartenere": "apparten", "apparteneva": "apparten", "appartenevano": "apparten", "appartengano": "apparteng", "appartengono": "apparteng", "appartiene": "appartien", "apparve": "apparv", "apparvero": "apparver", "appassionante": "appassion", "appassionata": "appassion", "appassionate": "appassion", "appassionati": "appassion", "appassionato": "appassion", "appassite": "appass", "appedonatò": "appedonat", "appellativi": "appell", "appellativo": "appell", "appelli": "appell", "appello": "appell", "appena": "appen", "appenderlo": "append", "appesantita": "appesant", "appesi": "appes", "appeso": "appes", "appestati": "appest", "appetito": "appet", "appezzamenti": "appezz", "appiattarsi": "appiatt", "appiattirsi": "appiatt", "appiattisce": "appiatt", "appiccicati": "appiccic", "appiè": "appi", "appl": "appl", "applaude": "applaud", "applaudendo": "applaud", "applaudire": "applaud", "applauditi": "applaud", "applauditissimo": "applauditissim", "applaudito": "applaud", "applaudivano": "applaud", "applausi": "applaus", "applauso": "applaus", "apple": "apple", "applicabile": "applic", "applicabilità": "applic", "applicandosi": "applic", "applicare": "applic", "applicargli": "applic", "applicarvelo": "applic", "applicata": "applic", "applicate": "applic", "applicati": "applic", "applicativi": "applic", "applicativo": "applic", "applicava": "applic", "applicazione": "applic", "applicazioni": "applic", "applichi": "applic", "appluso": "applus", "appoggi": "appogg", "appoggia": "appogg", "appoggiando": "appogg", "appoggiano": "appogg", "appoggiar": "appogg", "appoggiare": "appogg", "appoggiarla": "appogg", "appoggiarlo": "appogg", "appoggiata": "appogg", "appoggiate": "appogg", "appoggiati": "appogg", "appoggiato": "appogg", "appoggino": "appoggin", "appoggio": "appogg", "appoggiò": "appogg", "apporti": "apport", "apporto": "apport", "appositamente": "apposit", "apposite": "appos", "appositi": "appos", "apposito": "appos", "apposta": "appost", "appostarlo": "appost", "appostatamente": "appostat", "appostati": "appost", "appostato": "appost", "apposti": "appost", "appprovato": "appprov", "apprende": "apprend", "apprendere": "apprend", "apprendesse": "apprendess", "apprendisti": "apprend", "apprensione": "apprension", "apprensioni": "apprension", "appresa": "appres", "appreso": "appres", "appresta": "apprest", "apprestati": "apprest", "apprezzamento": "apprezz", "apprezzato": "apprezz", "approccio": "approcc", "approda": "approd", "approdati": "approd", "approderà": "approd", "approderemo": "approd", "approdi": "approd", "approdò": "approd", "approfittando": "approfitt", "approfittandosi": "approfitt", "approfittare": "approfitt", "approfittarne": "approfitt", "approfittato": "approfitt", "approfittava": "approfitt", "approfittavano": "approfitt", "approfondimento": "approfond", "approfondire": "approfond", "approfondisce": "approfond", "approfondita": "approfond", "approfondito": "approfond", "approntate": "appront", "appropriandosi": "appropr", "appropriato": "appropr", "approssimativamente": "approssim", "approssimativi": "approssim", "approssimazioni": "approssim", "approva": "approv", "approvando": "approv", "approvar": "approv", "approvare": "approv", "approvarle": "approv", "approvata": "approv", "approvato": "approv", "approvava": "approv", "approvazione": "approv", "approvazioni": "approv", "approvò": "approv", "approvviggionamento": "approvviggion", "approvvigionamenti": "approvvigion", "appunta": "appunt", "appuntamenti": "appunt", "appuntamento": "appunt", "appuntata": "appunt", "appuntate": "appunt", "appuntato": "appunt", "appuntellano": "appuntell", "appuntellarsi": "appuntell", "appuntellata": "appuntell", "appuntellati": "appuntell", "appuntellato": "appuntell", "appuntellavano": "appuntell", "appuntellò": "appuntell", "appunti": "appunt", "appuntino": "appuntin", "appunto": "appunt", "apra": "apra", "aprano": "apran", "apre": "apre", "aprendo": "aprend", "aprendosi": "aprend", "apri": "apri", "aprì": "aprì", "apribottiglie": "apribottigl", "aprile": "april", "aprir": "aprir", "aprirà": "aprir", "aprire": "aprir", "aprirsene": "aprirsen", "aprirsi": "aprirs", "aprirvi": "aprirv", "aprisse": "apriss", "aprissero": "aprisser", "aprite": "aprit", "apriva": "apriv", "aprivano": "apriv", "aprono": "apron", "aprte": "aprte", "apuano": "apu", "apud": "apud", "aq": "aq", "aqui": "aqui", "aquila": "aquil", "ar": "ar", "arà": "arà", "arab": "arab", "arabe": "arab", "arabi": "arab", "arabia": "arab", "arabica": "arab", "arabo": "arab", "arafat": "arafat", "aragon": "aragon", "aragosta": "aragost", "aran": "aran", "arancia": "aranc", "arangino": "arangin", "arbiter": "arbiter", "arbitrali": "arbitral", "arbitramur": "arbitramur", "arbitraria": "arbitrar", "arbitrario": "arbitrar", "arbitri": "arbitr", "arbitrio": "arbitr", "arbitro": "arbitr", "arca": "arca", "arcaica": "arcaic", "arcais": "arcais", "arce": "arce", "archeologia": "archeolog", "archeologica": "archeolog", "archeologici": "archeolog", "archeologico": "archeolog", "archetto": "archett", "archi": "archi", "archibusi": "archibus", "archimede": "archimed", "architettato": "architett", "architettura": "architettur", "archivi": "archiv", "archivio": "archiv", "arci": "arci", "arcidiacono": "arcidiac", "arcigni": "arcign", "arcione": "arcion", "arciospedale": "arciospedal", "arcipelago": "arcipelag", "arciprete": "arcipr", "arcivescovado": "arcivescovad", "arcivescovile": "arcivescovil", "arcivescovo": "arcivescov", "arco": "arco", "arcobaleno": "arcobalen", "arcore": "arcor", "ard": "ard", "ardant": "ardant", "ardente": "ardent", "ardentemente": "ardent", "ardenti": "ardent", "ardeva": "ardev", "ardirà": "ardir", "ardire": "ardir", "ardiresti": "ardirest", "ardisca": "ardisc", "ardisce": "ardisc", "ardiscono": "ardisc", "ardisse": "ardiss", "ardita": "ardit", "arditi": "ardit", "ardito": "ardit", "ardiva": "ardiv", "ardor": "ardor", "ardore": "ardor", "ardori": "ardor", "ardua": "ardu", "arduo": "ardu", "area": "are", "aree": "are", "arena": "aren", "arendo": "arend", "aretina": "aretin", "arezzo": "arezz", "argani": "argan", "argante": "argant", "argentei": "argente", "argenteria": "argenter", "argentina": "argentin", "argentine": "argentin", "argentini": "argentin", "argentino": "argentin", "argento": "argent", "argilla": "argill", "arginare": "argin", "argine": "argin", "argo": "argo", "argomentando": "argoment", "argomentare": "argoment", "argomentarlo": "argoment", "argomentato": "argoment", "argomenti": "argoment", "argomento": "argoment", "argomentò": "argoment", "argun": "argun", "arguto": "argut", "aria": "ari", "ariani": "arian", "ariano": "ari", "arias": "arias", "arida": "arid", "aridi": "arid", "arido": "arid", "arietando": "ariet", "ariete": "ari", "ariglieria": "ariglier", "aringa": "aring", "ariston": "ariston", "aristotile": "aristotil", "aritmetica": "aritmet", "arivare": "ariv", "arix": "arix", "arlacchi": "arlacc", "arlati": "arlat", "arlecchino": "arlecchin", "arma": "arma", "armacollo": "armacoll", "armadi": "armad", "armadio": "armad", "armamentario": "armamentar", "armamenti": "armament", "armamento": "armament", "armando": "armand", "armani": "arman", "armano": "arman", "armare": "armar", "armata": "armat", "armate": "armat", "armati": "armat", "armato": "armat", "armatore": "armator", "armatoriale": "armatorial", "armatura": "armatur", "arme": "arme", "armena": "armen", "armeria": "armer", "armi": "armi", "armin": "armin", "armistizio": "armistiz", "armonia": "armon", "armonizzare": "armonizz", "armonizzazione": "armonizz", "armstrong": "armstrong", "arnaro": "arnar", "arnese": "arnes", "arnesi": "arnes", "aroldo": "arold", "arrabattarsi": "arrabatt", "arrabbiata": "arrabb", "arrabbiatamente": "arrabbiat", "arrabbiato": "arrabb", "arrampicandosi": "arrampic", "arrampicarci": "arrampic", "arrampicarsi": "arrampic", "arrampicati": "arrampic", "arrampicavano": "arrampic", "arrantolata": "arrantol", "arrantolato": "arrantol", "arrapinavo": "arrapin", "arrenato": "arren", "arrende": "arrend", "arrendere": "arrend", "arrendersi": "arrend", "arrendessero": "arrend", "arrendo": "arrend", "arrestar": "arrest", "arrestare": "arrest", "arrestata": "arrest", "arrestate": "arrest", "arrestati": "arrest", "arrestato": "arrest", "arrestatori": "arrest", "arresti": "arrest", "arrestino": "arrestin", "arresto": "arrest", "arretra": "arretr", "arretramento": "arretr", "arretrato": "arretr", "arretrava": "arretr", "arricchimento": "arricc", "arricchir": "arricc", "arricchisce": "arricc", "arricchito": "arricc", "arricciar": "arricc", "arricciare": "arricc", "arricciati": "arricc", "arricciato": "arricc", "arride": "arrid", "arrigo": "arrig", "arringa": "arring", "arringo": "arring", "arrischia": "arrisc", "arrischiar": "arrisc", "arrischiare": "arrisc", "arrischiarsi": "arrisc", "arrischiata": "arrisc", "arrischiati": "arrisc", "arrischiato": "arrisc", "arrischiava": "arrisc", "arriva": "arriv", "arrivai": "arriva", "arrivando": "arriv", "arrivandogli": "arriv", "arrivano": "arriv", "arrivar": "arriv", "arrivarci": "arriv", "arrivare": "arriv", "arrivaron": "arrivaron", "arrivarono": "arriv", "arrivarsi": "arriv", "arrivasse": "arriv", "arrivassero": "arriv", "arrivata": "arriv", "arrivate": "arriv", "arrivati": "arriv", "arrivato": "arriv", "arrivatoci": "arrivatoc", "arrivava": "arriv", "arrivavan": "arrivavan", "arrivavano": "arriv", "arrivederci": "arrived", "arriverà": "arriv", "arriveranno": "arriv", "arriverebbe": "arriv", "arriverete": "arriv", "arriverò": "arriv", "arrivi": "arriv", "arriviamo": "arriv", "arrivino": "arrivin", "arrivo": "arriv", "arrivò": "arriv", "arrocca": "arrocc", "arroccata": "arrocc", "arrogante": "arrog", "arroganza": "arrog", "arrolati": "arrol", "arrolato": "arrol", "arrossamento": "arross", "arrossendo": "arross", "arrossì": "arross", "arrossire": "arross", "arrossirne": "arross", "arrostire": "arrost", "arrosto": "arrost", "arrotar": "arrot", "arrovellava": "arrovell", "arrovesciarsi": "arrovesc", "arrovesciata": "arrovesc", "arrovesciate": "arrovesc", "arrovesciato": "arrovesc", "arruffando": "arruff", "arruffata": "arruff", "arruffate": "arruff", "arruffati": "arruff", "arruffato": "arruff", "arruolamento": "arruol", "arsione": "arsion", "art": "art", "artagnan": "artagnan", "arte": "arte", "artefice": "artef", "artefici": "artef", "artemis": "artemis", "arteriosclerosi": "arterioscler", "arti": "arti", "artica": "artic", "articola": "articol", "articolano": "articol", "articolar": "articol", "articolata": "articol", "articolati": "articol", "articolato": "articol", "articolazione": "articol", "articolerà": "articol", "articoli": "articol", "articolo": "articol", "articolò": "articol", "artificiale": "artificial", "artifizi": "artifiz", "artifiziale": "artifizial", "artifizio": "artifiz", "artigianato": "artigian", "artigiane": "artigian", "artigianello": "artigianell", "artigiani": "artigian", "artigiano": "artig", "artigli": "artigl", "artiglieria": "artiglier", "artista": "artist", "artisti": "artist", "artistici": "artist", "artistico": "artist", "artium": "artium", "artoni": "arton", "arturo": "artur", "arvor": "arvor", "as": "as", "ascella": "ascell", "ascendere": "ascend", "ascesa": "asces", "asciugandosi": "asciug", "asciugare": "asciug", "asciugata": "asciug", "asciugate": "asciug", "asciugava": "asciug", "asciughi": "asciug", "asciugò": "asciug", "asciutta": "asciutt", "asciutto": "asciutt", "ascoli": "ascol", "ascolta": "ascolt", "ascoltan": "ascoltan", "ascoltano": "ascolt", "ascoltanti": "ascolt", "ascoltar": "ascolt", "ascoltare": "ascolt", "ascoltarli": "ascolt", "ascoltarmi": "ascolt", "ascoltata": "ascolt", "ascoltate": "ascolt", "ascoltatemi": "ascoltatem", "ascoltati": "ascolt", "ascoltato": "ascolt", "ascoltatore": "ascolt", "ascoltatori": "ascolt", "ascoltatrice": "ascolt", "ascoltava": "ascolt", "ascolti": "ascolt", "ascoltiamo": "ascolt", "ascolto": "ascolt", "ascoltò": "ascolt", "ascritta": "ascritt", "asher": "asher", "asi": "asi", "asia": "asi", "asiago": "asiag", "asiatici": "asiat", "asili": "asil", "asilo": "asil", "asinelli": "asinell", "asino": "asin", "aslan": "aslan", "aspetta": "aspett", "aspettami": "aspettam", "aspettan": "aspettan", "aspettando": "aspett", "aspettandola": "aspett", "aspettano": "aspett", "aspettar": "aspett", "aspettare": "aspett", "aspettarla": "aspett", "aspettarli": "aspett", "aspettarlo": "aspett", "aspettarmi": "aspett", "aspettarsi": "aspett", "aspettarvi": "aspett", "aspettasse": "aspett", "aspettata": "aspett", "aspettate": "aspett", "aspettatemi": "aspettatem", "aspettati": "aspett", "aspettativa": "aspett", "aspettative": "aspett", "aspettato": "aspett", "aspettava": "aspett", "aspettavamo": "aspett", "aspettavan": "aspettavan", "aspettavano": "aspett", "aspettavo": "aspett", "aspettazione": "aspett", "aspetterà": "aspett", "aspetteranno": "aspett", "aspetterebbe": "aspett", "aspetterò": "aspett", "aspetti": "aspett", "aspettiamo": "aspett", "aspetto": "aspett", "aspira": "aspir", "aspirano": "aspir", "aspiranti": "aspir", "aspirare": "aspir", "aspirato": "aspir", "aspirazioni": "aspir", "aspo": "aspo", "aspra": "aspra", "aspramente": "aspr", "aspre": "aspre", "asprilla": "asprill", "aspro": "aspro", "ass": "ass", "assaggi": "assagg", "assaggiarlo": "assagg", "assaggiarne": "assagg", "assaggiate": "assagg", "assai": "assa", "assalirono": "assal", "assalita": "assal", "assaliti": "assal", "assalito": "assal", "assalitori": "assalitor", "assalti": "assalt", "assalto": "assalt", "assaporando": "assapor", "assaporare": "assapor", "assaporato": "assapor", "assassinà": "assassin", "assassinare": "assassin", "assassinata": "assassin", "assassinato": "assassin", "assassini": "assassin", "assassinio": "assassin", "assassino": "assassin", "asse": "asse", "assecondare": "assecond", "assedia": "assed", "assediata": "assed", "assediati": "assed", "assediato": "assed", "assediava": "assed", "assediavano": "assed", "assedio": "assed", "assegna": "assegn", "assegnamento": "assegn", "assegnandone": "assegn", "assegnar": "assegn", "assegnare": "assegn", "assegnarne": "assegn", "assegnata": "assegn", "assegnataci": "assegnatac", "assegnatagli": "assegnatagl", "assegnate": "assegn", "assegnati": "assegn", "assegnatigli": "assegnatigl", "assegnato": "assegn", "assegnazioni": "assegn", "assegni": "assegn", "assegno": "assegn", "assegnò": "assegn", "assembela": "assembel", "assemble": "assembl", "assemblea": "assemble", "assemblee": "assemble", "assennatezza": "assennatezz", "assennato": "assenn", "assenso": "assens", "assente": "assent", "assenteismo": "assent", "assenteista": "assent", "assenteisti": "assent", "assenti": "assent", "assentimur": "assentimur", "assenza": "assenz", "assenze": "assenz", "assenzio": "assenz", "asserire": "asser", "asserite": "asser", "assertore": "assertor", "assessore": "assessor", "assessori": "assessor", "assestamento": "assest", "assestarci": "assest", "assestarsi": "assest", "assestato": "assest", "assetato": "asset", "assettandosi": "assett", "assetti": "assett", "assetto": "assett", "assicura": "assicur", "assicurandosi": "assicur", "assicurano": "assicur", "assicurar": "assicur", "assicurarci": "assicur", "assicurare": "assicur", "assicurarle": "assicur", "assicurarne": "assicur", "assicurarsene": "assicur", "assicurasse": "assicur", "assicurata": "assicur", "assicurati": "assicur", "assicurativa": "assicur", "assicurative": "assicur", "assicurativi": "assicur", "assicurato": "assicur", "assicurava": "assicur", "assicuravano": "assicur", "assicuraz": "assicuraz", "assicurazione": "assicur", "assicurazioni": "assicur", "assicuri": "assicur", "assicurò": "assicur", "assidua": "assidu", "assiduamente": "assidu", "assieme": "assiem", "assillava": "assill", "assiri": "assir", "assise": "assis", "assisi": "assis", "assist": "assist", "assista": "assist", "assiste": "assist", "assistendo": "assist", "assistente": "assistent", "assistenti": "assistent", "assistenza": "assistent", "assistenziale": "assistenzial", "assistenzialismo": "assistenzial", "assisterà": "assist", "assistere": "assist", "assistesse": "assistess", "assistette": "assistett", "assistevano": "assist", "assistita": "assist", "assistiti": "assist", "assistito": "assist", "assitalia": "assital", "assito": "assit", "asso": "asso", "assocalor": "assocalor", "associare": "assoc", "associata": "assoc", "associate": "assoc", "associated": "associated", "associato": "assoc", "associazione": "assoc", "associazioni": "assoc", "associazionismo": "associazion", "assoenergia": "assoenerg", "assoggettato": "assoggett", "assoggettavano": "assoggett", "assolda": "assold", "assoldati": "assold", "assoldato": "assold", "assolti": "assolt", "assolto": "assolt", "assoluta": "assol", "assolutamente": "assolut", "assolute": "assol", "assoluti": "assol", "assolutizzante": "assolutizz", "assoluto": "assol", "assolutoria": "assolutor", "assoluzione": "assolu", "assolvere": "assolv", "assomiglia": "assomigl", "assomigliano": "assomigl", "assomigliarsi": "assomigl", "assonautiche": "assonaut", "assopegno": "assopegn", "assopirono": "assop", "assopita": "assop", "assorbimento": "assorb", "assorbire": "assorb", "assorbito": "assorb", "assordante": "assord", "assortiti": "assort", "assorto": "assort", "assottigliar": "assottigl", "assottigliato": "assottigl", "assuma": "assum", "assumano": "assum", "assume": "assum", "assumerà": "assum", "assumere": "assum", "assumesse": "assumess", "assumeva": "assum", "assumono": "assum", "assunse": "assuns", "assunsero": "assunser", "assunta": "assunt", "assunte": "assunt", "assunti": "assunt", "assunto": "assunt", "assunzione": "assunzion", "assunzioni": "assunzion", "assurdo": "assurd", "asta": "asta", "astanti": "astant", "aste": "aste", "astenere": "asten", "astenesse": "asteness", "astenevano": "asten", "astensione": "astension", "astenuta": "asten", "astenuti": "asten", "aster": "aster", "asterischi": "asterisc", "asterrà": "asterr", "asterràdal": "asterràdal", "asthom": "asthom", "asti": "asti", "astigiano": "astig", "astina": "astin", "astinenza": "astinent", "astio": "asti", "astioso": "astios", "astragalo": "astragal", "astratto": "astratt", "astrazione": "astrazion", "astrea": "astre", "astri": "astri", "astro": "astro", "astrologi": "astrolog", "astrologia": "astrolog", "astuti": "astut", "astuzia": "astuz", "astuzie": "astuz", "at": "at", "ata": "ata", "atalanta": "atalant", "atanasio": "atanas", "atene": "aten", "ateneo": "atene", "ati": "ati", "atl": "atl", "atlanta": "atlant", "atlante": "atlant", "atlantica": "atlant", "atleta": "atlet", "atleti": "atlet", "atletica": "atlet", "atletico": "atlet", "atm": "atm", "atmosfera": "atmosfer", "atomica": "atom", "atonica": "aton", "atou": "atou", "atp": "atp", "atqui": "atqui", "atrio": "atri", "atroce": "atroc", "atroci": "atroc", "atrocissimi": "atrocissim", "atrocità": "atroc", "atta": "atta", "attacante": "attac", "attacca": "attacc", "attaccamento": "attacc", "attaccando": "attacc", "attaccandoci": "attacc", "attaccandosi": "attacc", "attaccante": "attacc", "attaccanti": "attacc", "attaccar": "attacc", "attaccarci": "attacc", "attaccare": "attacc", "attaccarlo": "attacc", "attaccarmi": "attacc", "attaccarono": "attacc", "attaccarsi": "attacc", "attaccasse": "attacc", "attaccata": "attacc", "attaccate": "attacc", "attaccati": "attacc", "attaccato": "attacc", "attaccava": "attacc", "attacchi": "attacc", "attacco": "attacc", "attaccò": "attacc", "attarda": "attard", "atte": "atte", "attecchire": "attecc", "atteggiamenti": "attegg", "atteggiamento": "attegg", "atteggiandosi": "attegg", "atteggiato": "attegg", "atteggiò": "attegg", "attempata": "attemp", "attempate": "attemp", "attendati": "attend", "attende": "attend", "attendendo": "attend", "attendere": "attend", "attenderla": "attend", "attenderli": "attend", "attenderlo": "attend", "attendessero": "attend", "attendeva": "attend", "attendevamo": "attend", "attendevano": "attend", "attendiamo": "attend", "attendibile": "attend", "attendibili": "attend", "attendono": "attend", "attenersi": "atten", "attenta": "attent", "attentamente": "attent", "attentar": "attent", "attentasse": "attent", "attentati": "attent", "attentato": "attent", "attentatore": "attent", "attentava": "attent", "attente": "attent", "attenti": "attent", "attento": "attent", "attenuare": "attenu", "attenuato": "attenu", "attenzion": "attenzion", "attenzione": "attenzion", "attenzioni": "attenzion", "atterra": "atterr", "atterraggio": "atterragg", "atterramento": "atterr", "atterrano": "atterr", "atterrata": "atterr", "atterrato": "atterr", "atterrava": "atterr", "atterrerà": "atterr", "atterrire": "atterr", "atterrita": "atterr", "atterrito": "atterr", "atterriva": "atterr", "attesa": "attes", "attese": "attes", "attesi": "attes", "attesissimo": "attesissim", "atteso": "attes", "attesoché": "attesoc", "attesta": "attest", "attestandosi": "attest", "attestar": "attest", "attestare": "attest", "attestarsi": "attest", "attestata": "attest", "attestate": "attest", "attestati": "attest", "attestato": "attest", "attestava": "attest", "attestazione": "attest", "attesti": "attest", "atti": "atti", "attiene": "attien", "attiguo": "attigu", "attilio": "attil", "attillata": "attill", "attillati": "attill", "attillatissimi": "attillatissim", "attimi": "attim", "attimo": "attim", "attinenze": "attinent", "attingendo": "atting", "attingere": "atting", "attinta": "attint", "attinte": "attint", "attioni": "attion", "attira": "attir", "attirare": "attir", "attirarla": "attir", "attirarne": "attir", "attirarsi": "attir", "attirata": "attir", "attirate": "attir", "attirati": "attir", "attirato": "attir", "attirava": "attir", "attirerebbe": "attir", "attiriamo": "attir", "attirò": "attir", "attitudine": "attitudin", "attiv": "attiv", "attiva": "attiv", "attivare": "attiv", "attive": "attiv", "attivi": "attiv", "attivita": "attiv", "attività": "attiv", "attivo": "attiv", "atto": "atto", "attonita": "atton", "attonito": "atton", "attore": "attor", "attori": "attor", "attorniato": "attorn", "attorno": "attorn", "attortigliata": "attortigl", "attraente": "attraent", "attraeva": "attra", "attrasse": "attrass", "attrattiva": "attratt", "attratto": "attratt", "attraversa": "attravers", "attraversando": "attravers", "attraversar": "attravers", "attraversare": "attravers", "attraversarli": "attravers", "attraversarlo": "attravers", "attraversaron": "attraversaron", "attraversata": "attravers", "attraversati": "attravers", "attraversato": "attravers", "attraversatolo": "attraversatol", "attraversava": "attravers", "attraverserà": "attravers", "attraversino": "attraversin", "attraverso": "attravers", "attraversò": "attravers", "attrezzandosi": "attrezz", "attrezzata": "attrezz", "attrezzate": "attrezz", "attrezzato": "attrezz", "attrezzature": "attrezzatur", "attrezzi": "attrezz", "attribuendo": "attribu", "attribuibile": "attribu", "attribuir": "attribu", "attribuire": "attribu", "attribuirla": "attribu", "attribuirlo": "attribu", "attribuirne": "attribu", "attribuisce": "attribu", "attribuiscono": "attribu", "attribuisse": "attribuiss", "attribuita": "attribu", "attribuitami": "attribuitam", "attribuite": "attribu", "attribuiti": "attribu", "attribuito": "attribu", "attribuiva": "attribu", "attribuivano": "attribu", "attribuzione": "attribu", "attribuzioni": "attribu", "attrice": "attric", "attuale": "attual", "attualente": "attualent", "attuali": "attual", "attualita": "attual", "attualità": "attual", "attualmente": "attual", "attuando": "attu", "attuare": "attu", "attuarlo": "attu", "attuata": "attu", "attuati": "attu", "attuato": "attu", "attuazione": "attuazion", "atzori": "atzor", "auckland": "auckland", "audacia": "audac", "audio": "aud", "audiovisivo": "audiovis", "auditor": "auditor", "auditore": "auditor", "audizione": "audizion", "auferatis": "auferatis", "aug": "aug", "auge": "aug", "augello": "augell", "augura": "augur", "augurarono": "augur", "augurata": "augur", "augurate": "augur", "augurato": "augur", "auguri": "augur", "augùri": "augùr", "auguriamo": "augur", "augurio": "augur", "auguro": "augur", "augusta": "august", "auguste": "august", "augusto": "august", "aula": "aul", "auletta": "aulett", "aumentabili": "aument", "aumentando": "aument", "aumentare": "aument", "aumentata": "aument", "aumentate": "aument", "aumentati": "aument", "aumentato": "aument", "aumenterà": "aument", "aumenti": "aument", "aumentino": "aumentin", "aumento": "aument", "aurelio": "aurel", "aureo": "aure", "aureola": "aureol", "auricolare": "auricol", "auriol": "auriol", "aurora": "auror", "aus": "aus", "auschwitz": "auschwitz", "aushwitz": "aushwitz", "ausilia": "ausil", "ausiliare": "ausil", "ausiliari": "ausiliar", "ausiliarie": "ausiliar", "ausiliario": "ausiliar", "auspica": "auspic", "auspicabile": "auspic", "auspicato": "auspic", "auspicava": "auspic", "auspicio": "auspic", "austera": "auster", "austero": "auster", "australia": "austral", "australian": "australian", "australiana": "australian", "australiane": "australian", "australiani": "australian", "australiano": "austral", "austria": "austr", "austriaca": "austriac", "austriaci": "austriac", "austriaco": "austriac", "aut": "aut", "autentica": "autent", "autenticamente": "autent", "autentici": "autent", "autenticità": "autent", "autentico": "autent", "authority": "authority", "autista": "autist", "autisti": "autist", "auto": "aut", "autobianchi": "autobianc", "autobotte": "autobott", "autobus": "autobus", "autocandidatura": "autocandidatur", "autocarri": "autocarr", "autocarro": "autocarr", "autocelebrazione": "autocelebr", "autocertificato": "autocertific", "autodissoluzione": "autodissolu", "autodistruttiva": "autodistrutt", "autodistruzione": "autodistru", "autoferrotranvieri": "autoferrotranvier", "autogol": "autogol", "autografo": "autograf", "automaticamente": "automat", "automatici": "automat", "automatizzati": "automatizz", "automatizzato": "automatizz", "automazione": "autom", "automobile": "automobil", "automobili": "automobil", "automobilismo": "automobil", "automobilista": "automobil", "automobilisti": "automobil", "automobilistica": "automobilist", "automobilistiche": "automobilist", "automobilistico": "automobilist", "automoveis": "automoveis", "autonoma": "autonom", "autonomamente": "autonom", "autonome": "autonom", "autonomi": "autonom", "autonomia": "autonom", "autonomie": "autonom", "autonomista": "autonom", "autonomistà": "autonom", "autonomisti": "autonom", "autonomo": "autonom", "autopergamena": "autopergamen", "autoproclamatasi": "autoproclamatas", "autoproduttori": "autoproduttor", "autopsia": "autops", "autoptico": "autopt", "autor": "autor", "autore": "autor", "autoregolamentazione": "autoregolament", "autorete": "autor", "autorevole": "autorevol", "autorevolezza": "autorevolezz", "autorevoli": "autorevol", "autori": "autor", "autorimessa": "autorimess", "autorita": "autor", "autorità": "autor", "autoritaria": "autoritar", "autoritario": "autoritar", "autorizzata": "autorizz", "autorizzativo": "autorizz", "autorizzato": "autorizz", "autorizzatorie": "autorizzator", "autorizzazione": "autorizz", "autorizzazioni": "autorizz", "autoscuole": "autoscuol", "autosospesa": "autosospes", "autostr": "autostr", "autostrada": "autostrad", "autostradale": "autostradal", "autostradali": "autostradal", "autostrade": "autostrad", "autoveicoli": "autoveicol", "autovettura": "autovettur", "autovetture": "autovettur", "autrice": "autric", "autunnale": "autunnal", "autunnali": "autunnal", "autunno": "autunn", "auuenuto": "auuen", "auxerre": "auxerr", "av": "av", "avallato": "avall", "avana": "avan", "avances": "avances", "avanguardia": "avanguard", "avanti": "avant", "avanza": "avanz", "avanzando": "avanz", "avanzandosi": "avanz", "avanzare": "avanz", "avanzarsi": "avanz", "avanzata": "avanz", "avanzate": "avanz", "avanzati": "avanz", "avanzato": "avanz", "avanzava": "avanz", "avanzerà": "avanz", "avanzerebbe": "avanz", "avanzi": "avanz", "avanzini": "avanzin", "avanzo": "avanz", "avanzò": "avanz", "avara": "avar", "avaria": "avar", "avarizia": "avariz", "avaro": "avar", "ave": "ave", "avea": "ave", "avean": "avean", "avellino": "avellin", "avendo": "avend", "avendocelo": "avendocel", "avendola": "avendol", "avendolo": "avendol", "avendone": "avendon", "avene": "aven", "aventi": "avent", "aver": "aver", "averci": "averc", "avere": "aver", "avergli": "avergl", "avergliene": "averglien", "averla": "averl", "averle": "averl", "averli": "averl", "averlo": "averl", "avermi": "averm", "avermo": "averm", "averne": "avern", "averselo": "aversel", "avervi": "averv", "avesse": "avess", "avesser": "avesser", "avessero": "avesser", "avessi": "avess", "avessimo": "avessim", "aveste": "avest", "avete": "avet", "aveva": "avev", "avevam": "avevam", "avevamo": "avevam", "avevan": "avevan", "avevano": "avev", "avevate": "avev", "avevi": "avev", "avevo": "avev", "avezzano": "avezz", "avi": "avi", "aviazione": "aviazion", "avidamente": "avid", "avidi": "avid", "avidità": "avid", "avignone": "avignon", "avir": "avir", "avis": "avis", "aviv": "aviv", "avo": "avo", "avocando": "avoc", "avola": "avol", "avoltoi": "avolto", "avrà": "avrà", "avrai": "avra", "avràil": "avràil", "avranno": "avrann", "avrebbe": "avrebb", "avrebber": "avrebber", "avrebbero": "avrebber", "avrei": "avre", "avrem": "avrem", "avremmo": "avremm", "avremo": "avrem", "avreste": "avrest", "avresti": "avrest", "avrete": "avret", "avrò": "avrò", "avturkhanov": "avturkhanov", "avuta": "avut", "avute": "avut", "avuti": "avut", "avuto": "avut", "avutolo": "avutol", "avv": "avv", "avvale": "avval", "avvalersi": "avval", "avvantaggerebbero": "avvantagg", "avvantaggiati": "avvantagg", "avveda": "avved", "avvede": "avved", "avvedendosi": "avved", "avvedersene": "avved", "avvedesse": "avvedess", "avvedeva": "avved", "avvedutezza": "avvedutezz", "avveduto": "avved", "avvelenata": "avvelen", "avvelenava": "avvelen", "avvenendo": "avven", "avvenenza": "avvenent", "avvenga": "avveng", "avvenimenti": "avven", "avvenimento": "avven", "avvenire": "avven", "avvenirè": "avvenir", "avvenisse": "avveniss", "avveniva": "avven", "avvenne": "avvenn", "avventa": "avvent", "avventarono": "avvent", "avventarsi": "avvent", "avventò": "avvent", "avventore": "avventor", "avventori": "avventor", "avventura": "avventur", "avventure": "avventur", "avventuriera": "avventurier", "avventurieri": "avventurier", "avventurosa": "avventur", "avvenuta": "avven", "avvenute": "avven", "avvenuti": "avven", "avvenuto": "avven", "avverata": "avver", "avverate": "avver", "avveri": "avver", "avverrà": "avverr", "avversa": "avvers", "avversari": "avversar", "avversaria": "avversar", "avversarie": "avversar", "avversario": "avversar", "avversati": "avvers", "avverse": "avvers", "avversione": "avversion", "avversità": "avvers", "avverso": "avvers", "avverta": "avvert", "avverte": "avvert", "avvertendo": "avvert", "avvertì": "avvert", "avvertimenti": "avvert", "avvertimento": "avvert", "avvertio": "avvert", "avvertir": "avvert", "avvertire": "avvert", "avvertirla": "avvert", "avvertirlo": "avvert", "avvertirono": "avvert", "avvertisse": "avvertiss", "avvertita": "avvert", "avvertite": "avvert", "avvertiti": "avvert", "avvertito": "avvert", "avvezza": "avvezz", "avvezzare": "avvezz", "avvezzarsi": "avvezz", "avvezzata": "avvezz", "avvezzato": "avvezz", "avvezzi": "avvezz", "avvezzin": "avvezzin", "avvezzo": "avvezz", "avvia": "avvi", "avviamento": "avvi", "avviando": "avvi", "avviandosi": "avvi", "avviano": "avvi", "avviare": "avvi", "avviaron": "avviaron", "avviarono": "avvi", "avviarsi": "avvi", "avviarvi": "avvi", "avviasse": "avvi", "avviata": "avvi", "avviate": "avvi", "avviati": "avvi", "avviato": "avvi", "avviava": "avvi", "avviavan": "avviavan", "avviavano": "avvi", "avvicendamenti": "avvicend", "avvicina": "avvicin", "avvicinamento": "avvicin", "avvicinando": "avvicin", "avvicinandosegli": "avvicinandosegl", "avvicinandosele": "avvicinandosel", "avvicinandosi": "avvicin", "avvicinano": "avvicin", "avvicinare": "avvicin", "avvicinarono": "avvicin", "avvicinarsi": "avvicin", "avvicinasse": "avvicin", "avvicinata": "avvicin", "avvicinati": "avvicin", "avvicinato": "avvicin", "avvicinatosele": "avvicinatosel", "avvicinatosi": "avvicinat", "avvicinava": "avvicin", "avvicinavano": "avvicin", "avvicinino": "avvicinin", "avvicinò": "avvicin", "avvide": "avvid", "avviene": "avvien", "avvierà": "avvi", "avvieranno": "avvi", "avvilimento": "avvil", "avvilisse": "avviliss", "avvilita": "avvil", "avvilito": "avvil", "avviluppata": "avvilupp", "avviluppate": "avvilupp", "avvio": "avvi", "avviò": "avvi", "avvisa": "avvis", "avvisaglie": "avvisagl", "avvisar": "avvis", "avvisarmi": "avvis", "avvisatemi": "avvisatem", "avvisato": "avvis", "avvisi": "avvis", "avviso": "avvis", "avvisò": "avvis", "avvista": "avvist", "avvistati": "avvist", "avvisti": "avvist", "avvisto": "avvist", "avvitano": "avvit", "avviticchiata": "avviticc", "avvocati": "avvoc", "avvocato": "avvoc", "avvocatura": "avvocatur", "avvolgeva": "avvolg", "avvolse": "avvols", "avvolta": "avvolt", "avvoltati": "avvolt", "avvolto": "avvolt", "axel": "axel", "axo": "axo", "ayamonte": "ayamont", "ayatollah": "ayatollah", "ayub": "ayub", "az": "az", "azarashvili": "azarashvil", "azeglio": "azegl", "azerbaigian": "azerbaigian", "azienda": "azi", "aziendale": "aziendal", "aziendali": "aziendal", "aziendalistico": "aziendalist", "aziende": "azi", "azimut": "azimut", "azion": "azion", "azionari": "azionar", "azionariato": "azionar", "azionarie": "azionar", "azionario": "azionar", "azione": "azion", "azioni": "azion", "azionista": "azion", "azionisti": "azion", "azov": "azov", "azteca": "aztec", "azzano": "azzan", "azzardo": "azzard", "azzaretti": "azzarett", "azzecca": "azzecc", "azzeccare": "azzecc", "azzerato": "azzer", "azzurra": "azzurr", "azzurre": "azzurr", "azzurri": "azzurr", "azzurro": "azzurr", "b": "b", "baackman": "baackman", "bab": "bab", "babbini": "babbin", "babbo": "babb", "babilonese": "babilones", "babilonia": "babilon", "baccani": "baccan", "baccano": "bacc", "bacche": "bacc", "bacchetta": "bacchett", "bacchettare": "bacchett", "bacchettato": "bacchett", "bacchiarle": "bacc", "bacci": "bacc", "bacco": "bacc", "bacheca": "bachec", "bacheche": "bachec", "baciare": "bac", "baciasse": "bac", "baciata": "bac", "baciati": "bac", "baciatolo": "baciatol", "baciava": "bac", "baciavano": "bac", "bacilli": "bacill", "bacio": "bac", "bacioni": "bacion", "back": "back", "backlund": "backlund", "backman": "backman", "baco": "bac", "bada": "bad", "badando": "bad", "badar": "bad", "badare": "bad", "badasse": "bad", "badate": "bad", "badato": "bad", "badava": "bad", "badavan": "badavan", "badessa": "badess", "badesse": "badess", "badi": "bad", "badò": "bad", "baffi": "baff", "baffie": "baff", "bagagli": "bagagl", "bagaglino": "bagaglin", "bagattella": "bagattell", "baggiana": "baggian", "baggianata": "baggian", "baggianate": "baggian", "baggiani": "baggian", "baggiano": "bagg", "baggino": "baggin", "baggio": "bagg", "baghdad": "baghdad", "baglieri": "baglier", "bagm": "bagm", "bagna": "bagn", "bagnar": "bagn", "bagnato": "bagn", "bagnerebbe": "bagn", "bagno": "bagn", "bagnoli": "bagnol", "bahrain": "bahrain", "baia": "bai", "baiano": "bai", "baigest": "baigest", "bain": "bain", "bakirkov": "bakirkov", "bal": "bal", "balabbio": "balabb", "balbettando": "balbett", "balbettar": "balbett", "balbettò": "balbett", "balbo": "balb", "balcani": "balcan", "balcanica": "balcan", "balcaria": "balcar", "baldacchino": "baldacchin", "baldanza": "baldanz", "baldanzosa": "baldanz", "baldassarri": "baldassarr", "baldi": "bald", "baldieri": "baldier", "baldini": "baldin", "balenar": "balen", "balenato": "balen", "baleno": "balen", "balenò": "balen", "balere": "bal", "balia": "bal", "balìa": "balì", "balie": "bal", "balilla": "balill", "balladur": "balladur", "ballar": "ball", "ballard": "ballard", "ballare": "ball", "ballate": "ball", "ballavano": "ball", "balle": "ball", "ballen": "ballen", "balleri": "baller", "ballerina": "ballerin", "ballerini": "ballerin", "ballerino": "ballerin", "balletta": "ballett", "balletto": "ballett", "ballo": "ball", "ballotta": "ballott", "ballottaggio": "ballottagg", "baloccandosi": "balocc", "balocchi": "balocc", "balocco": "balocc", "balordo": "balord", "balsam": "balsam", "balsamo": "balsam", "baltimora": "baltimor", "baluardi": "baluard", "baluardo": "baluard", "balzando": "balz", "balzano": "balz", "balzare": "balz", "balzato": "balz", "balze": "balz", "balzellare": "balzell", "balzello": "balzell", "balzelloni": "balzellon", "balzi": "balz", "balzo": "balz", "balzò": "balz", "bam": "bam", "bambina": "bambin", "bambine": "bambin", "bambinelli": "bambinell", "bambinetta": "bambinett", "bambinette": "bambinett", "bambini": "bambin", "bambino": "bambin", "bambole": "bambol", "bampi": "bamp", "bampo": "bamp", "ban": "ban", "banana": "banan", "banane": "banan", "bananè": "banan", "banca": "banc", "bancari": "bancar", "bancaria": "bancar", "bancarie": "bancar", "bancario": "bancar", "bancarotta": "bancarott", "banche": "banc", "banchelli": "banchell", "banchetto": "banchett", "banchi": "banc", "banchina": "banchin", "banco": "banc", "bancone": "bancon", "banconote": "banconot", "band": "band", "banda": "band", "bande": "band", "bandera": "bander", "bandi": "band", "bandiera": "bandier", "bandiere": "band", "bandierina": "bandierin", "bandierine": "bandierin", "bandita": "band", "banditi": "band", "bandito": "band", "bandiva": "band", "bando": "band", "bandolo": "bandol", "bang": "bang", "bangalore": "bangalor", "bangkok": "bangkok", "bangladesh": "bangladesh", "bank": "bank", "banker": "banker", "banking": "banking", "bankitalia": "bankital", "banzato": "banz", "baptiste": "baptist", "bar": "bar", "bara": "bar", "barabba": "barabb", "baracca": "baracc", "baracche": "baracc", "baraldi": "barald", "baramathi": "baramath", "baraòs": "baraòs", "baratro": "baratr", "barattando": "baratt", "barattano": "baratt", "barattare": "baratt", "barattata": "baratt", "barattate": "baratt", "barattava": "baratt", "barattavan": "barattavan", "baratterei": "baratt", "barattoli": "barattol", "barba": "barb", "barbaccia": "barbacc", "barbados": "barbados", "barbara": "barbar", "barbaramente": "barbar", "barbaria": "barbar", "barbaricino": "barbaricin", "barbarie": "barbar", "barbaro": "barbar", "barbarossa": "barbaross", "barbasso": "barbass", "barbe": "barb", "barber": "barber", "barberini": "barberin", "barbetta": "barbett", "barbieri": "barbier", "barbiero": "barbier", "barbone": "barbon", "barbour": "barbour", "barca": "barc", "barcaioli": "barcaiol", "barcaiolo": "barcaiol", "barcellona": "barcellon", "barche": "barc", "barchetta": "barchett", "barclay": "barclay", "barco": "barc", "barcollando": "barcoll", "barcollò": "barcoll", "bardature": "bardatur", "barella": "barell", "barese": "bares", "baresi": "bares", "bargello": "bargell", "bari": "bar", "baricentro": "baricentr", "barili": "baril", "barletta": "barlett", "barlume": "barlum", "barnabas": "barnabas", "barocciaio": "barocciai", "baroccio": "barocc", "barocco": "barocc", "barollo": "baroll", "baronchelli": "baronchell", "baroni": "baron", "barricata": "barric", "barriera": "barrier", "barrington": "barrington", "barroccio": "barrocc", "barsio": "bars", "bart": "bart", "bartholomew": "bartholomew", "bartolomeo": "bartolome", "bartolommeo": "bartolomme", "baruch": "baruc", "baruffe": "baruff", "barzaghi": "barzag", "basata": "bas", "basato": "bas", "base": "bas", "basel": "basel", "baselga": "baselg", "basi": "bas", "basilari": "basilar", "basile": "basil", "basilea": "basile", "basilicata": "basilic", "basinger": "basinger", "basisce": "bas", "basket": "basket", "bassa": "bass", "bassani": "bassan", "bassanini": "bassanin", "bassano": "bass", "basse": "bass", "bassetti": "bassett", "bassi": "bass", "bassifondi": "bassifond", "bassissimi": "bassissim", "basso": "bass", "bassolino": "bassolin", "basta": "bast", "bastando": "bast", "bastandoci": "bast", "bastandogli": "bast", "bastano": "bast", "bastante": "bastant", "bastantemente": "bastant", "bastanti": "bastant", "bastar": "bast", "bastare": "bast", "bastasse": "bast", "bastassero": "bast", "bastata": "bast", "bastate": "bast", "bastati": "bast", "bastato": "bast", "bastava": "bast", "basten": "basten", "basterà": "bast", "basterebbe": "bast", "basti": "bast", "bastia": "bast", "bastimento": "bast", "bastioni": "bastion", "basto": "bast", "bastò": "bast", "bastogi": "bastog", "bastonabile": "baston", "bastonabilissimo": "bastonabilissim", "bastonate": "baston", "bastonato": "baston", "bastoncino": "bastoncin", "bastone": "baston", "bastoni": "baston", "bastono": "bast", "bataglione": "bataglion", "batistuta": "batist", "batman": "batman", "battaggia": "battagg", "battaglia": "battagl", "battaglià": "battagl", "battaglie": "battagl", "battaglione": "battaglion", "battaglioni": "battaglion", "batte": "batt", "battello": "battell", "battendo": "batt", "battendolo": "batt", "battente": "battent", "battenti": "battent", "batter": "batter", "batterà": "batt", "batterci": "batt", "battere": "batt", "battermi": "batt", "batterono": "batt", "battersi": "batt", "battesimo": "battesim", "batteva": "batt", "battezzata": "battezz", "battezzato": "battezz", "battiamo": "batt", "battiato": "batt", "batticuore": "batticuor", "battigia": "battig", "battimani": "battiman", "battipagliese": "battipaglies", "battista": "battist", "battistini": "battistin", "battistrada": "battistrad", "batto": "batt", "battuta": "batt", "battute": "batt", "battuto": "batt", "battutta": "battutt", "batuffoletto": "batuffolett", "baudo": "baud", "baumann": "baumann", "bava": "bav", "bavarese": "bavares", "bavero": "baver", "baviera": "bavier", "bay": "bay", "bayer": "bayer", "bayerwerk": "bayerwerk", "bazza": "bazz", "bazzecole": "bazzecol", "bazzicate": "bazzic", "bazzicava": "bazzic", "bazzicherebbero": "bazzic", "bb": "bb", "bbc": "bbc", "bc": "bc", "bca": "bca", "bco": "bco", "bd": "bd", "beach": "beac", "beata": "beat", "beatificazione": "beatif", "beatle": "beatl", "beato": "beat", "beatrice": "beatric", "beautiful": "beautiful", "bebè": "beb", "bec": "bec", "beccare": "becc", "beccarsi": "becc", "beccatò": "beccat", "becchini": "becchin", "becchino": "becchin", "becchio": "becc", "becco": "becc", "becker": "becker", "beffa": "beff", "beffardi": "beffard", "beffe": "beff", "beghetto": "beghett", "beghin": "beghin", "begli": "begl", "beha": "beh", "bei": "bei", "beirut": "beirut", "beit": "beit", "bel": "bel", "belar": "bel", "belare": "bel", "belati": "bel", "belfiori": "belfior", "belga": "belg", "belgio": "belg", "belgrado": "belgrad", "beliaiev": "beliaiev", "bell": "bell", "bella": "bell", "bellano": "bell", "bellarditta": "bellarditt", "belle": "bell", "bellerio": "beller", "bellezza": "bellezz", "bellezze": "bellezz", "belli": "bell", "bellici": "bellic", "belligerante": "belliger", "belligeranza": "belliger", "bellissima": "bellissim", "bellissime": "bellissim", "bellissimo": "bellissim", "bello": "bell", "bellucci": "bellucc", "bellunese": "bellunes", "belluno": "bellun", "belmondo": "belmond", "belson": "belson", "beltrami": "beltram", "belzebù": "belzebù", "bempensante": "bempens", "ben": "ben", "benaivedes": "benaivedes", "benarrivo": "benarr", "benaugurante": "benaugur", "benavides": "benavides", "benché": "benc", "benchè": "benc", "benda": "bend", "bene": "ben", "benedett": "benedett", "benedetta": "benedett", "benedette": "benedett", "benedetti": "benedett", "benedetto": "benedett", "benedica": "bened", "benedice": "bened", "benedicilo": "benedicil", "benedico": "bened", "benedir": "bened", "benedirà": "bened", "benedire": "bened", "benedisse": "benediss", "benedizione": "benedizion", "benedizioni": "benedizion", "benefattore": "benefattor", "benefattori": "benefattor", "benefattrice": "benefattr", "benefica": "benef", "beneficare": "benefic", "beneficati": "benefic", "beneficenza": "beneficent", "beneficenze": "beneficent", "benefici": "benef", "beneficiari": "beneficiar", "beneficiato": "benefic", "beneficienza": "beneficient", "beneficio": "benefic", "benefico": "benef", "benefitio": "benefit", "benefizio": "benefiz", "benemeriti": "benemer", "benemerito": "benemer", "benestanti": "benest", "benetti": "benett", "benetton": "benetton", "benevento": "benevent", "benevolenza": "benevolent", "benevoli": "benevol", "benevolo": "benevol", "beni": "ben", "beniamino": "beniamin", "benigna": "benign", "benignità": "benign", "benissimo": "benissim", "benni": "benn", "benny": "benny", "benone": "benon", "benservito": "benserv", "bensì": "bens", "benvenuta": "benven", "benvenuto": "benven", "benzina": "benzin", "beppe": "bepp", "berbera": "berber", "berberovic": "berberovic", "bere": "ber", "berenger": "berenger", "beretta": "berett", "bergamasca": "bergamasc", "bergamasche": "bergamasc", "bergamaschi": "bergamasc", "bergamasco": "bergamasc", "bergamascone": "bergamascon", "bergamo": "bergam", "bergkamp": "bergkamp", "bergodi": "bergod", "bergomi": "bergom", "berhanu": "berhanu", "berisha": "berish", "berlanda": "berland", "berlenghi": "berleng", "berlinga": "berling", "berlinghe": "berling", "berlinguer": "berlinguer", "berlino": "berlin", "berluscaz": "berluscaz", "berlusconi": "berluscon", "berlusconì": "berluscon", "berlusconiani": "berlusconian", "berlusconiano": "berluscon", "berluskaiser": "berluskaiser", "bermuda": "bermud", "bernabè": "bernab", "bernard": "bernard", "bernardelli": "bernardell", "bernardi": "bernard", "bernardini": "bernardin", "bernardo": "bernard", "bernassola": "bernassol", "bernoccolo": "bernoccol", "berretta": "berrett", "berretti": "berrett", "berrettine": "berrettin", "berretto": "berrett", "bersagliando": "bersagl", "bersaglio": "bersagl", "bersagliò": "bersagl", "bersani": "bersan", "berselli": "bersell", "bertarelli": "bertarell", "bertelli": "bertell", "berti": "bert", "bertinotti": "bertinott", "berto": "bert", "bertolucci": "bertolucc", "beruri": "berur", "besà": "bes", "beschin": "beschin", "beso": "bes", "best": "best", "bestemmia": "bestemm", "bestemmiando": "bestemm", "bestemmiato": "bestemm", "bestemmiavano": "bestemm", "bestemmie": "bestemm", "bestia": "best", "bestiale": "bestial", "bestiame": "bestiam", "bestie": "best", "bestione": "bestion", "betis": "betis", "bettin": "bettin", "bettina": "bettin", "bettino": "bettin", "bettinò": "bettin", "bettiol": "bettiol", "bettola": "bettol", "bettole": "bettol", "betty": "betty", "bevanda": "bevand", "bevande": "bevand", "beve": "bev", "beveren": "beveren", "beverly": "beverly", "bevette": "bevett", "bevi": "bev", "bevitore": "bevitor", "bevono": "bev", "bevuta": "bev", "bevuto": "bev", "bf": "bf", "bg": "bg", "bharatiya": "bharatiy", "bi": "bi", "bia": "bia", "biagio": "biag", "biagioni": "biagion", "biamonte": "biamont", "bianca": "bianc", "biancacci": "biancacc", "biancaneve": "biancanev", "biancastra": "biancastr", "biancastre": "biancastr", "biancastri": "biancastr", "biancazzurri": "biancazzurr", "bianche": "bianc", "biancheggianti": "bianchegg", "biancheria": "biancher", "bianchezza": "bianchezz", "bianchi": "bianc", "bianchini": "bianchin", "bianchissima": "bianchissim", "bianchissime": "bianchissim", "bianchissimo": "bianchissim", "bianco": "bianc", "biancò": "bianc", "bianconera": "bianconer", "bianconeri": "bianconer", "bianconero": "bianconer", "biar": "biar", "biascicato": "biascic", "biasimata": "biasim", "biasimevole": "biasimevol", "biasimo": "biasim", "biathlon": "biathlon", "biava": "biav", "biblioteca": "bibliotec", "bibliotecari": "bibliotecar", "bibliotecario": "bibliotecar", "biblioteche": "bibliotec", "bic": "bic", "bicamerale": "bicameral", "bicchier": "bicchier", "bicchiere": "bicc", "bicchieri": "bicchier", "bicchierino": "bicchierin", "bicicletta": "biciclett", "bicocca": "bicocc", "bidonville": "bidonvill", "bieche": "biec", "bieco": "biec", "biedenkopf": "biedenkopf", "biella": "biell", "bielorussa": "bieloruss", "bielorussia": "bieloruss", "bien": "bien", "biennale": "biennal", "biennio": "bienn", "bierhoff": "bierhoff", "biffi": "biff", "big": "big", "bigia": "big", "bigica": "bigic", "bigio": "big", "bigiognolo": "bigiognol", "biglietti": "bigliett", "biglietto": "bigliett", "bignardi": "bignard", "bigon": "bigon", "biguzzi": "biguzz", "bihac": "bihac", "bikini": "bikin", "bil": "bil", "bilan": "bilan", "bilance": "bilanc", "bilanci": "bilanc", "bilancia": "bilanc", "bilanciato": "bilanc", "bilanciavano": "bilanc", "bilancino": "bilancin", "bilancio": "bilanc", "bilaterali": "bilateral", "bilboa": "bilbo", "bild": "bild", "biliardo": "biliard", "bill": "bill", "billio": "bill", "billy": "billy", "bim": "bim", "bimba": "bimb", "bimbi": "bimb", "bimbo": "bimb", "binaghi": "binag", "binari": "binar", "binario": "binar", "binda": "bind", "bindi": "bind", "binelli": "binell", "binotto": "binott", "bioetica": "bioetic", "biografi": "biograf", "biografia": "biograf", "biologia": "biolog", "biologica": "biolog", "biologo": "biolog", "biomedica": "biomed", "bionda": "biond", "biondi": "biond", "biondino": "biondin", "biondo": "biond", "bione": "bion", "biosfere": "biosf", "bipolare": "bipol", "bipolarismo": "bipolar", "bipolarismò": "bipolarism", "bipolarizza": "bipolarizz", "bipolarizzazione": "bipolarizz", "birago": "birag", "birba": "birb", "birbante": "birbant", "birbanti": "birbant", "birberia": "birber", "birbone": "birbon", "birboneggiando": "birbonegg", "birboni": "birbon", "birilli": "birill", "birkenau": "birkenau", "birmania": "birman", "birmano": "birm", "biron": "biron", "birreria": "birrer", "birri": "birr", "birro": "birr", "bis": "bis", "bisacce": "bisacc", "bisaccia": "bisacc", "bisbetica": "bisbet", "bisbetiche": "bisbet", "bisbetici": "bisbet", "bisbigli": "bisbigl", "bisbigliar": "bisbigl", "bisbigliare": "bisbigl", "bisbigliava": "bisbigl", "bisbiglio": "bisbigl", "bisbiglìo": "bisbiglì", "bisbigliò": "bisbigl", "bisbocce": "bisbocc", "bisca": "bisc", "biscardi": "biscard", "bisceglie": "biscegl", "biscione": "biscion", "bisdosso": "bisdoss", "bisessuale": "bisessual", "bisogna": "bisogn", "bisognare": "bisogn", "bisognasse": "bisogn", "bisognati": "bisogn", "bisognato": "bisogn", "bisognaua": "bisognau", "bisognava": "bisogn", "bisognerà": "bisogn", "bisognerebbe": "bisogn", "bisognevole": "bisognevol", "bisogni": "bisogn", "bisogno": "bisogn", "bisognò": "bisogn", "bisognosa": "bisogn", "bisognose": "bisogn", "bisognosi": "bisogn", "bisoli": "bisol", "bisopgna": "bisopgn", "bissau": "bissau", "bisset": "bisset", "bisticciar": "bisticc", "bistrattava": "bistratt", "bitetto": "bitett", "bitonto": "bitont", "bitume": "bitum", "bituminosa": "bitumin", "bixio": "bix", "bizantinismi": "bizantin", "bizioli": "biziol", "bizzarre": "bizzarr", "bizzarri": "bizzarr", "bizzarria": "bizzarr", "bizzarro": "bizzarr", "bizzeffe": "bizzeff", "bjorndalen": "bjorndalen", "bka": "bka", "bl": "bl", "black": "black", "blair": "bla", "blasfemi": "blasfem", "blasonata": "blason", "blaterando": "blater", "blaugrana": "blaugran", "blida": "blid", "blindata": "blind", "blindate": "blind", "blocca": "blocc", "bloccando": "blocc", "bloccare": "blocc", "bloccata": "blocc", "bloccato": "blocc", "bloccherebbe": "blocc", "blocchi": "blocc", "blocco": "blocc", "blomqvist": "blomqvist", "bloom": "bloom", "blu": "blu", "blù": "blù", "blucerchiata": "blucerc", "blucerchiati": "blucerc", "blucerchiato": "blucerc", "blue": "blu", "blz": "blz", "bm": "bm", "bn": "bn", "bna": "bna", "bnl": "bnl", "bo": "bo", "boa": "boa", "boardman": "boardman", "boards": "boards", "boati": "boat", "boato": "boat", "bob": "bob", "boban": "boban", "bobbi": "bobb", "bobbie": "bobb", "bobbio": "bobb", "bobek": "bobek", "bobo": "bob", "bobò": "bob", "boca": "boc", "bocca": "bocc", "boccacce": "boccacc", "boccale": "boccal", "boccalini": "boccalin", "boccetta": "boccett", "bocche": "bocc", "bocchino": "bocchin", "boccia": "bocc", "bocciare": "bocc", "bocciata": "bocc", "bocciato": "bocc", "bocciatura": "bocciatur", "boccone": "boccon", "bocconi": "boccon", "bodelwyddan": "bodelwyddan", "bodino": "bodin", "bodrato": "bodr", "boeing": "boeing", "boero": "boer", "bof": "bof", "bog": "bog", "boghossian": "boghossian", "bognanco": "bognanc", "bogo": "bog", "bogotà": "bogot", "boia": "boi", "boiano": "boi", "boicottaggio": "boicottagg", "boicottare": "boicott", "boksic": "boksic", "bolgona": "bolgon", "bolivia": "boliv", "bolla": "boll", "bollate": "boll", "bolle": "boll", "bollettino": "bollettin", "bolli": "boll", "bolliva": "boll", "bollo": "boll", "bollor": "bollor", "bollore": "bollor", "bologna": "bologn", "bolognese": "bolognes", "bolognino": "bolognin", "bolongaro": "bolongar", "bolshoi": "bolsho", "bolzano": "bolz", "bomba": "bomb", "bombardamenti": "bombard", "bombardamento": "bombard", "bombardare": "bombard", "bombardato": "bombard", "bombardieri": "bombardier", "bombay": "bombay", "bombe": "bomb", "bombole": "bombol", "bombolette": "bombolett", "bommarito": "bommar", "bon": "bon", "bonacci": "bonacc", "bonacina": "bonacin", "bonafini": "bonafin", "bonaiuti": "bonai", "bonaldi": "bonald", "bonaparte": "bonapart", "bonariamente": "bonar", "bonarietà": "bonariet", "bonario": "bonar", "bonati": "bon", "bonaventura": "bonaventur", "boncompagni": "boncompagn", "bond": "bond", "bonds": "bonds", "bonfrisco": "bonfr", "bongiorno": "bongiorn", "bonham": "bonham", "bonifica": "bonif", "bonifiche": "bonif", "bonino": "bonin", "bonissima": "bonissim", "bonissimo": "bonissim", "bonn": "bonn", "bonnaire": "bonn", "bonnard": "bonnard", "bonometti": "bonomett", "bonomi": "bonom", "bonsia": "bons", "bontà": "bont", "bor": "bor", "borbonici": "borbon", "borbottando": "borbott", "borbottar": "borbott", "borbottare": "borbott", "borbottava": "borbott", "borchie": "borc", "bordate": "bord", "bordeaux": "bordeaux", "bordo": "bord", "bordocampo": "bordocamp", "bordon": "bordon", "bordone": "bordon", "bordoni": "bordon", "borghese": "borghes", "borghesia": "borghes", "borghetto": "borghett", "borghezio": "borghez", "borghi": "borg", "borgna": "borgn", "borgo": "borg", "borgosesia": "borgoses", "boria": "bor", "borioso": "borios", "boris": "boris", "borraccina": "borraccin", "borrelli": "borrell", "borriello": "borriell", "borrini": "borrin", "borromeo": "borrome", "borsa": "bors", "borse": "bors", "borsistico": "borsist", "borsitalia": "borsital", "bortolazzi": "bortolazz", "bortolo": "bortol", "bortone": "borton", "bosaglia": "bosagl", "bosanksa": "bosanks", "bosanska": "bosansk", "bosaso": "bosas", "bosca": "bosc", "boschetto": "boschett", "boschi": "bosc", "bosco": "bosc", "boscolo": "boscol", "boscosa": "boscos", "bosetti": "bosett", "bosi": "bos", "boskovic": "boskovic", "bosnia": "bosn", "bosniaca": "bosniac", "bosniache": "bosniac", "bosniaci": "bosniac", "bosniaco": "bosniac", "boso": "bos", "boss": "boss", "bossi": "boss", "bossiana": "bossian", "bossiha": "bossih", "bossolo": "bossol", "boston": "boston", "bot": "bot", "botero": "boter", "botta": "bott", "botte": "bott", "bottega": "botteg", "botteghe": "botteg", "botti": "bott", "botticella": "botticell", "botticelli": "botticell", "botticina": "botticin", "botticine": "botticin", "bottiglie": "bottigl", "bottino": "bottin", "botton": "botton", "bottoni": "botton", "boulevard": "boulevard", "bouliere": "boul", "boutros": "boutros", "bovo": "bov", "box": "box", "boyle": "boyl", "boys": "boys", "bozza": "bozz", "bpd": "bpd", "br": "br", "bra": "bra", "bracaloni": "bracalon", "bracardi": "bracard", "braccano": "bracc", "bracchi": "bracc", "braccia": "bracc", "bracciali": "braccial", "bracciante": "bracciant", "braccianti": "bracciant", "bracciate": "bracc", "bracciere": "bracc", "braccio": "bracc", "braccioli": "bracciol", "bracciolo": "bracciol", "braccj": "braccj", "brace": "brac", "brache": "brac", "brad": "brad", "braglia": "bragl", "bramato": "bram", "bramava": "bram", "brambati": "bramb", "brambilla": "brambill", "bramerei": "bram", "bramieri": "bramier", "bramosi": "bramos", "branca": "branc", "branchi": "branc", "branco": "branc", "brandeburgo": "brandeburg", "brandendo": "brand", "brandisce": "brand", "brandita": "brand", "brani": "bran", "brano": "bran", "braschi": "brasc", "brasile": "brasil", "brasilia": "brasil", "brasiliana": "brasilian", "brasiliano": "brasil", "brasseur": "brasseur", "brassuer": "brassuer", "bratislava": "bratisl", "brav": "brav", "brava": "brav", "bravacci": "bravacc", "bravaccio": "bravacc", "bravamente": "brav", "bravate": "brav", "brave": "brav", "braveria": "braver", "braverìa": "braverì", "braverie": "braver", "bravi": "brav", "bravissim": "bravissim", "bravissima": "bravissim", "bravissimo": "bravissim", "bravo": "brav", "bravura": "bravur", "breccia": "brecc", "breda": "bred", "breefing": "breefing", "brega": "breg", "brema": "brem", "brenta": "brent", "brescello": "brescell", "brescia": "bresc", "bresciana": "brescian", "bresciani": "brescian", "bresciano": "bresc", "breslavia": "breslav", "bressan": "bressan", "bretagna": "bretagn", "breve": "brev", "brevemente": "brevement", "brevettarono": "brevett", "brevettato": "brevett", "brevi": "brev", "breviario": "breviar", "brevissimi": "brevissim", "brevissimo": "brevissim", "brevità": "brevit", "breviun": "breviun", "breweries": "breweries", "brezhnev": "brezhnev", "brezza": "brezz", "brezzolina": "brezzolin", "bri": "bri", "brian": "brian", "briantea": "briante", "brianza": "brianz", "briareo": "briare", "bricconate": "briccon", "bricconeria": "bricconer", "bricconerie": "bricconer", "briciole": "briciol", "bridge": "bridg", "briefing": "briefing", "briga": "brig", "brigata": "brig", "brigate": "brig", "brigatella": "brigatell", "brigatista": "brigat", "brighe": "brig", "briglia": "brigl", "brignano": "brign", "brignone": "brignon", "brilla": "brill", "brillante": "brillant", "brillanti": "brillant", "brillare": "brill", "brillato": "brill", "brillavan": "brillavan", "brina": "brin", "brindato": "brind", "brindisi": "brindis", "brinner": "brinner", "brio": "bri", "brioschi": "briosc", "brisbane": "brisban", "britannica": "britann", "britanniche": "britann", "britannici": "britann", "britannico": "britann", "britannnico": "britannn", "british": "british", "brividi": "brivid", "brivido": "brivid", "brivio": "briv", "brm": "brm", "brn": "brn", "broadway": "broadway", "broccato": "brocc", "brochard": "brochard", "brodo": "brod", "broggi": "brogg", "brogioni": "brogion", "brontolando": "brontol", "brontolare": "brontol", "brontolava": "brontol", "brontolavano": "brontol", "brontolìo": "brontolì", "bronx": "bronx", "bronzo": "bronz", "brooke": "brook", "brooklyn": "brooklyn", "bruce": "bruc", "brucerebbe": "bruc", "brucerete": "bruc", "brucia": "bruc", "bruciar": "bruc", "bruciare": "bruc", "bruciata": "bruc", "bruciati": "bruc", "bruciato": "bruc", "bruciatore": "bruciator", "bruciavan": "bruciavan", "bruciavano": "bruc", "bruciò": "bruc", "bruciore": "brucior", "bruges": "bruges", "brulica": "brulic", "brulicar": "brulic", "brulicava": "brulic", "brulicavano": "brulic", "brulichìo": "brulichì", "bruna": "brun", "brune": "brun", "brunico": "brunic", "brunner": "brunner", "bruno": "brun", "brusca": "brusc", "bruscamente": "brusc", "brusche": "brusc", "brusco": "brusc", "brutale": "brutal", "brutalmente": "brutal", "bruto": "brut", "brutta": "brutt", "bruttamente": "brutt", "brutte": "brutt", "brutti": "brutt", "brutto": "brutt", "bruxelles": "bruxelles", "bs": "bs", "bsa": "bsa", "btp": "btp", "bu": "bu", "bubbole": "bubbol", "bubbone": "bubbon", "bubboni": "bubbon", "bubolz": "bubolz", "buca": "buc", "bucarest": "bucarest", "bucaro": "bucar", "bucatino": "bucatin", "bucato": "buc", "bucce": "bucc", "bucci": "bucc", "bucciarelli": "bucciarell", "buche": "buch", "buchenwald": "buchenwald", "buchi": "buch", "buco": "buc", "bucò": "buc", "budapest": "budapest", "budermes": "budermes", "buduau": "buduau", "bue": "bue", "buenos": "buenos", "bufera": "bufer", "bufere": "buf", "buffa": "buff", "buffet": "buffet", "buffetteria": "buffetter", "buffone": "buffon", "buffoneria": "buffoner", "buffoni": "buffon", "bugatti": "bugatt", "bugia": "bug", "bugiarda": "bugiard", "bugiardo": "bugiard", "bugiardona": "bugiardon", "bugie": "bug", "bugigattoli": "bugigattol", "bugigattolo": "bugigattol", "buglione": "buglion", "bugno": "bugn", "bui": "bui", "building": "building", "buio": "bui", "bulgara": "bulgar", "bulgarelli": "bulgarell", "bulgaria": "bulgar", "bull": "bull", "bulletta": "bullett", "bullette": "bullett", "bum": "bum", "bundesbank": "bundesbank", "bundesgerichtshof": "bundesgerichtshof", "bunkers": "bunkers", "bunny": "bunny", "buon": "buon", "buona": "buon", "buone": "buon", "buoni": "buon", "buono": "buon", "buontà": "buont", "burattello": "burattell", "burattinaio": "burattinai", "burberi": "burber", "burbero": "burber", "burgenland": "burgenland", "burgeto": "burget", "burgo": "burg", "burhanuddin": "burhanuddin", "burkina": "burkin", "burla": "burl", "burlato": "burl", "burlesco": "burlesc", "burns": "burns", "burocratiche": "burocrat", "burocratico": "burocrat", "burocrazia": "burocraz", "burrasca": "burrasc", "burrasche": "burrasc", "burrascosa": "burrasc", "burro": "burr", "burrone": "burron", "burroni": "burron", "bus": "bus", "buscar": "busc", "buscarsi": "busc", "buscarti": "busc", "buscato": "busc", "buscherei": "busc", "bush": "bush", "busilis": "busilis", "business": "business", "buso": "bus", "busquets": "busquets", "bussano": "buss", "bussasse": "buss", "busse": "buss", "bussola": "bussol", "bussolotti": "bussolott", "bustine": "bustin", "busto": "bust", "butta": "butt", "buttan": "buttan", "buttando": "butt", "buttandosegli": "buttandosegl", "buttandosi": "butt", "buttane": "buttan", "buttar": "butt", "buttare": "butt", "buttarglielo": "butt", "buttarle": "butt", "buttarono": "butt", "buttarsi": "butt", "buttasse": "butt", "buttassi": "butt", "buttata": "butt", "buttate": "butt", "buttati": "butt", "buttato": "butt", "butterei": "butt", "butterò": "butt", "butti": "butt", "buttiglione": "buttiglion", "butto": "butt", "buttò": "butt", "buy": "buy", "bvb": "bvb", "c": "c", "ca": "ca", "cab": "cab", "cabala": "cabal", "cabale": "cabal", "cabardino": "cabardin", "cabina": "cabin", "cabinati": "cabin", "cabine": "cabin", "cablata": "cabl", "cabotaggio": "cabotagg", "cabrini": "cabrin", "cac": "cac", "cacce": "cacc", "caccia": "cacc", "cacciabombardieri": "cacciabombardier", "cacciamine": "cacciamin", "caccian": "caccian", "cacciando": "cacc", "cacciandosi": "cacc", "cacciare": "cacc", "cacciari": "cacciar", "cacciarli": "cacc", "cacciarlo": "cacc", "cacciarsi": "cacc", "cacciassero": "cacc", "cacciata": "cacc", "cacciate": "cacc", "cacciati": "cacc", "cacciato": "cacc", "cacciatore": "cacciator", "cacciatovisi": "cacciatovis", "cacciava": "cacc", "cacciavano": "cacc", "cacciavite": "cacciav", "cacciò": "cacc", "cadaueri": "cadauer", "cadavere": "cadav", "cadaveri": "cadaver", "cadde": "cadd", "caddero": "cadder", "cade": "cad", "cadente": "cadent", "cadeo": "cade", "cader": "cader", "cadere": "cad", "cadete": "cad", "cadetti": "cadett", "cadetto": "cadett", "cadeva": "cad", "cadevan": "cadevan", "cadevano": "cad", "cadono": "cad", "cadrebbe": "cadrebb", "cadsand": "cadsand", "caduta": "cad", "cadute": "cad", "caduti": "cad", "caduto": "cad", "caen": "caen", "caf": "caf", "cafè": "caf", "caffaro": "caffar", "caffe": "caff", "caffè": "caff", "caffeina": "caffein", "caffo": "caff", "cafiero": "cafier", "cagion": "cagion", "cagionarono": "cagion", "cagionata": "cagion", "cagionati": "cagion", "cagionava": "cagion", "cagione": "cagion", "cagioni": "cagion", "cagionò": "cagion", "cagiva": "cag", "cagliari": "cagliar", "cagliaritana": "cagliaritan", "cagnaccio": "cagnacc", "cagnesco": "cagnesc", "cagni": "cagn", "cagnolini": "cagnolin", "caiazzo": "caiazz", "cain": "cain", "caini": "cain", "caio": "cai", "cairo": "cair", "caiyun": "caiyun", "cala": "cal", "calà": "cal", "calabria": "calabr", "calamaio": "calamai", "calamità": "calam", "calano": "cal", "calante": "calant", "calar": "cal", "calare": "cal", "calarlo": "cal", "calata": "cal", "calate": "cal", "calatemi": "calatem", "calati": "cal", "calato": "cal", "calca": "calc", "calcagni": "calcagn", "calce": "calc", "calcestruzzi": "calcestruzz", "calche": "calc", "calci": "calc", "calciare": "calc", "calciasse": "calc", "calciato": "calc", "calciatore": "calciator", "calciatori": "calciator", "calcio": "calc", "calciò": "calc", "calcistica": "calcist", "calcistiche": "calcist", "calcium": "calcium", "calcolar": "calcol", "calcolare": "calcol", "calcolata": "calcol", "calcolate": "calcol", "calcolato": "calcol", "calcolava": "calcol", "calcoli": "calcol", "calcolo": "calcol", "calcutta": "calcutt", "calda": "cald", "caldaia": "caldai", "caldaie": "caldai", "caldamente": "cald", "caldarola": "caldarol", "calde": "cald", "caldea": "calde", "calderan": "calderan", "calderisi": "calderis", "calderotto": "calderott", "caldo": "cald", "caleffi": "caleff", "calendari": "calendar", "calendario": "calendar", "calesse": "caless", "calessino": "calessin", "calgary": "calgary", "cali": "cal", "calibro": "calibr", "calice": "calic", "calici": "calic", "california": "californ", "calleri": "caller", "calma": "calm", "calmare": "calm", "calo": "cal", "calò": "cal", "calodi": "calod", "calore": "calor", "calori": "calor", "calorosa": "calor", "caloroso": "calor", "calp": "calp", "calpestando": "calpest", "calpestarlo": "calpest", "calpestato": "calpest", "calpestava": "calpest", "calpestìo": "calpestì", "caltagirone": "caltagiron", "caltanissetta": "caltanissett", "calunnia": "calunn", "calunniato": "calunn", "calvi": "calv", "calvino": "calvin", "calvisano": "calvis", "calvo": "calv", "calzature": "calzatur", "calzaturif": "calzaturif", "calzaturificio": "calzaturific", "calze": "calz", "calzia": "calz", "calzoni": "calzon", "cam": "cam", "camar": "cam", "cambi": "camb", "cambia": "camb", "cambiamenti": "camb", "cambiamento": "camb", "cambiamo": "camb", "cambiando": "camb", "cambiandosi": "camb", "cambiano": "camb", "cambiar": "camb", "cambiare": "camb", "cambiari": "cambiar", "cambiarsi": "camb", "cambiasse": "camb", "cambiata": "camb", "cambiate": "camb", "cambiati": "camb", "cambiato": "camb", "cambiava": "camb", "cambiavano": "camb", "cambierà": "camb", "cambierò": "camb", "cambio": "camb", "cambiò": "camb", "cambisti": "cambist", "cameleonte": "cameleont", "camera": "camer", "camerali": "cameral", "cameramam": "cameramam", "cameraman": "cameraman", "cameramen": "cameramen", "camerata": "camer", "camere": "cam", "cameriera": "camerier", "cameriere": "camer", "cameriero": "camerier", "cameroun": "cameroun", "camfin": "camfin", "camice": "camic", "camici": "camic", "camicia": "camic", "camicie": "camic", "camion": "camion", "camionette": "camionett", "cammarata": "cammar", "cammera": "cammer", "cammin": "cammin", "cammina": "cammin", "camminando": "cammin", "camminano": "cammin", "camminar": "cammin", "camminare": "cammin", "camminarono": "cammin", "camminasse": "cammin", "camminata": "cammin", "camminato": "cammin", "camminava": "cammin", "camminavan": "camminavan", "camminavano": "cammin", "cammino": "cammin", "camminò": "cammin", "camorra": "camorr", "camorristici": "camorrist", "campa": "camp", "campagna": "campagn", "campagne": "campagn", "campale": "campal", "campana": "campan", "campane": "campan", "campanelle": "campanell", "campanelli": "campanell", "campanello": "campanell", "campanette": "campanett", "campani": "campan", "campania": "campan", "campanile": "campanil", "campanili": "campanil", "campanilistici": "campanilist", "campar": "camp", "campare": "camp", "campati": "camp", "campeggia": "campegg", "campeggiava": "campegg", "camperai": "camp", "camperebbe": "camp", "camperemo": "camp", "campestre": "campestr", "campi": "camp", "campiamo": "camp", "campicelli": "campicell", "campicello": "campicell", "campienza": "campienz", "campilongo": "campilong", "campionati": "campion", "campionato": "campion", "campione": "campion", "campioni": "campion", "campo": "camp", "campobasso": "campobass", "campolo": "campol", "can": "can", "canada": "canad", "canadese": "canades", "canadesi": "canades", "canaglia": "canagl", "canale": "canal", "canali": "canal", "canalizzazioni": "canalizz", "cancellar": "cancell", "cancellare": "cancell", "cancellata": "cancell", "cancellati": "cancell", "cancellato": "cancell", "cancellazione": "cancell", "cancellazioni": "cancell", "cancelli": "cancell", "cancellierato": "cancellier", "cancelliere": "cancell", "cancello": "cancell", "canchero": "cancher", "cancro": "cancr", "candela": "candel", "candele": "candel", "candidare": "candid", "candidarsi": "candid", "candidati": "candid", "candidato": "candid", "candidatura": "candidatur", "candidature": "candidatur", "candide": "candid", "candor": "candor", "candore": "candor", "candy": "candy", "cane": "can", "canè": "can", "canelli": "canell", "cangiò": "cang", "cani": "can", "canins": "canins", "canio": "can", "canizie": "caniz", "canmore": "canmor", "canna": "cann", "cannavaro": "cannavar", "canne": "cann", "cannes": "cannes", "cannistrà": "cannistr", "cannoncini": "cannoncin", "cannoncino": "cannoncin", "cannoniere": "cannon", "canoe": "cano", "canoni": "canon", "canonica": "canon", "canonici": "canon", "canonico": "canon", "canovaccio": "canovacc", "canta": "cant", "cantambanchi": "cantambanc", "cantando": "cant", "cantante": "cantant", "cantanti": "cantant", "cantar": "cant", "cantare": "cant", "cantarotti": "cantarott", "cantarutti": "cantarutt", "cantautrice": "cantautr", "cantava": "cant", "cantavano": "cant", "canterelli": "canterell", "canti": "cant", "cantiere": "cant", "cantieri": "cantier", "cantieristica": "cantierist", "cantilena": "cantilen", "cantina": "cantin", "canto": "cant", "cantona": "canton", "cantonata": "canton", "cantonate": "canton", "cantoni": "canton", "cantù": "cantù", "cantucci": "cantucc", "cantuccino": "cantuccin", "cantuccio": "cantucc", "canuti": "can", "canyon": "canyon", "canzanella": "canzanell", "canzonaccia": "canzonacc", "canzonare": "canzon", "canzonarlo": "canzon", "canzonatoria": "canzonator", "canzonatorie": "canzonator", "canzonatorio": "canzonator", "canzonature": "canzonatur", "canzone": "canzon", "canzoni": "canzon", "canzonieri": "canzonier", "cao": "cao", "caos": "caos", "cap": "cap", "capa": "cap", "capace": "capac", "capaci": "capac", "capacità": "capac", "capacitata": "capacit", "capaciterà": "capacit", "capanna": "capann", "capanne": "capann", "capannuccia": "capannucc", "caparbietà": "caparbiet", "caparbio": "caparb", "caparra": "caparr", "caparrare": "caparr", "capecchi": "capecc", "capeggiata": "capegg", "capelli": "capell", "capello": "capell", "capezzale": "capezzal", "capi": "cap", "capì": "cap", "capigliatura": "capigliatur", "capigliature": "capigliatur", "capigruppo": "capigrupp", "capillare": "capill", "capir": "cap", "capirà": "cap", "capiranno": "cap", "capire": "cap", "capirlo": "cap", "capisaldi": "capisald", "capisce": "cap", "capisco": "cap", "capiscon": "capiscon", "capiscono": "cap", "capita": "cap", "capital": "capital", "capitalcredit": "capitalcredit", "capitale": "capital", "capitalfit": "capitalfit", "capitalfondo": "capitalfond", "capitalgest": "capitalgest", "capitali": "capital", "capitalismo": "capital", "capitalizzare": "capitalizz", "capitalizzazione": "capitalizz", "capitalras": "capitalras", "capitan": "capitan", "capitanei": "capitane", "capitaneria": "capitaner", "capitanerie": "capitaner", "capitani": "capitan", "capitano": "capit", "capitanucci": "capitanucc", "capitar": "capit", "capitare": "capit", "capitarono": "capit", "capitasse": "capit", "capitata": "capit", "capitate": "capit", "capitati": "capit", "capitato": "capit", "capitava": "capit", "capite": "cap", "capiti": "cap", "capito": "cap", "capitò": "capit", "capitoli": "capitol", "capitolo": "capitol", "capitombolo": "capitombol", "capitorno": "capitorn", "capiva": "cap", "capivano": "cap", "capo": "cap", "capò": "cap", "capobanda": "capoband", "capocannoniere": "capocannon", "capocchie": "capocc", "capocomici": "capocom", "capocordata": "capocord", "capodanno": "capodann", "capogruppo": "capogrupp", "capolavoro": "capolavor", "capolinea": "capoline", "capolini": "capolin", "capolino": "capolin", "capoluogo": "capoluog", "capopolo": "capopol", "caporalaccio": "caporalacc", "caporedattori": "caporedattor", "capovolgimento": "capovolg", "capovolti": "capovolt", "cappa": "capp", "cappe": "capp", "cappella": "cappell", "cappellaccio": "cappellacc", "cappellano": "cappell", "cappelletti": "cappellett", "cappelli": "cappell", "cappellini": "cappellin", "cappello": "cappell", "cappellotto": "cappellott", "cappioli": "cappiol", "cappone": "cappon", "capponi": "cappon", "cappucci": "cappucc", "cappuccinesca": "cappuccinesc", "cappuccinesco": "cappuccinesc", "cappuccini": "cappuccin", "cappuccino": "cappuccin", "cappuccio": "cappucc", "capra": "capr", "capre": "capr", "capricci": "capricc", "capriccio": "capricc", "capricciose": "capricc", "caprioglio": "capriogl", "captata": "capt", "capucines": "capucines", "caputi": "cap", "car": "car", "cara": "car", "carabina": "carabin", "carabinieri": "carabinier", "caracas": "caracas", "caramel": "caramel", "caramente": "car", "carati": "car", "carattere": "caratt", "caratteri": "caratter", "caratteriale": "caratterial", "caratteriali": "caratterial", "caratteristiche": "caratterist", "caratterizza": "caratterizz", "caratterizzata": "caratterizz", "caratterizzate": "caratterizz", "caratterizzati": "caratterizz", "caratterizzato": "caratterizz", "caravale": "caraval", "carbide": "carbid", "carbon": "carbon", "carbonara": "carbonar", "carbone": "carbon", "carboni": "carbon", "carbonica": "carbon", "carbonio": "carbon", "carbotrade": "carbotrad", "carburante": "carbur", "carburanti": "carbur", "carcerazione": "carcer", "carcere": "carc", "carceri": "carcer", "carceriera": "carcerier", "cardano": "card", "cardarelli": "cardarell", "cardenas": "cardenas", "cardi": "card", "cardia": "card", "cardiaca": "cardiac", "cardiache": "cardiac", "cardiaci": "cardiac", "cardillo": "cardill", "cardinal": "cardinal", "cardinale": "cardinal", "cardinali": "cardinal", "cardine": "cardin", "cardini": "cardin", "cardiopatia": "cardiopat", "cardolus": "cardolus", "care": "car", "carente": "carent", "carenze": "carenz", "carestia": "carest", "carestie": "carest", "carezze": "carezz", "carezzevole": "carezzevol", "cari": "car", "cariatide": "cariatid", "caribe": "carib", "carica": "caric", "carical": "carical", "carican": "carican", "caricare": "caric", "caricaron": "caricaron", "caricati": "caric", "caricato": "caric", "caricatura": "caricatur", "cariche": "caric", "carichi": "caric", "carico": "caric", "caricola": "caricol", "cariddi": "caridd", "carifondo": "carifond", "carige": "carig", "cariparma": "cariparm", "cariplo": "caripl", "carisbo": "carisb", "carismatico": "carismat", "carissimi": "carissim", "carissimo": "carissim", "carità": "carit", "caritas": "caritas", "caritatevole": "caritatevol", "carla": "carl", "carlandrea": "carlandre", "carlo": "carl", "carlona": "carlon", "carlos": "carlos", "carlotto": "carlott", "carlucci": "carlucc", "carmela": "carmel", "carmelo": "carmel", "carmen": "carmen", "carmine": "carmin", "carnascialesche": "carnascialesc", "carnasciali": "carnascial", "carne": "carn", "carneade": "carnead", "carnemolla": "carnemoll", "carnet": "carnet", "carnevale": "carneval", "carni": "carn", "carnica": "carnic", "carnificine": "carnificin", "carnpanelli": "carnpanell", "caro": "car", "caroccio": "carocc", "carosi": "caros", "carovana": "carovan", "carpi": "carp", "carpio": "carp", "carpon": "carpon", "carpone": "carpon", "carponi": "carpon", "carrara": "carrar", "carrarese": "carrares", "carraro": "carrar", "carrera": "carrer", "carretta": "carrett", "carri": "carr", "carriera": "carrier", "carriere": "carr", "carrierismo": "carrier", "carro": "carr", "carrobi": "carrob", "carrobio": "carrob", "carroccio": "carrocc", "carrocio": "carroc", "carroll": "carroll", "carrozza": "carrozz", "carrozzata": "carrozz", "carrozze": "carrozz", "carrozzine": "carrozzin", "carruba": "carrub", "carrucole": "carrucol", "cart": "cart", "carta": "cart", "cartagine": "cartagin", "cartapesta": "cartapest", "cartapestai": "cartapesta", "cartarie": "cartar", "carte": "cart", "carteggio": "cartegg", "cartelli": "cartell", "cartellini": "cartellin", "cartello": "cartell", "cartellone": "cartellon", "carter": "carter", "cartht": "cartht", "cartina": "cartin", "cartografia": "cartograf", "cartone": "carton", "cartoni": "carton", "carulli": "carull", "cas": "cas", "casa": "cas", "casacca": "casacc", "casaccia": "casacc", "casadei": "casade", "casal": "casal", "casale": "casal", "casalecchio": "casalecc", "casali": "casal", "casalinga": "casaling", "casalnuovo": "casalnuov", "casanovà": "casanov", "casarano": "casar", "casas": "casas", "casasco": "casasc", "casati": "cas", "casato": "cas", "casazza": "casazz", "casca": "casc", "cascan": "cascan", "cascano": "casc", "cascante": "cascant", "cascanti": "cascant", "cascare": "casc", "cascata": "casc", "cascati": "casc", "cascavano": "casc", "caschi": "casc", "cascia": "casc", "cascina": "cascin", "cascine": "cascin", "cascinotto": "cascinott", "cascò": "casc", "cascone": "cascon", "case": "cas", "caselecchio": "caselecc", "casella": "casell", "caselli": "casell", "caserma": "caserm", "casermettè": "casermett", "casermizzazione": "casermizz", "caserta": "casert", "casertano": "casert", "casetta": "casett", "cash": "cash", "casi": "cas", "casillo": "casill", "casini": "casin", "casino": "casin", "casinò": "casin", "casipole": "casipol", "casiraghi": "casirag", "caso": "cas", "casolare": "casol", "casomai": "casoma", "casonato": "cason", "casoria": "casor", "casotto": "casott", "caspio": "casp", "cassa": "cass", "cassaforte": "cassafort", "cassano": "cass", "cassavetes": "cassavetes", "cassazione": "cassazion", "casse": "cass", "casseforti": "cassefort", "cassetta": "cassett", "cassidy": "cassidy", "cassiere": "cass", "cassintegrati": "cassintegr", "cassintegrazione": "cassintegr", "cassone": "casson", "cassoni": "casson", "cast": "cast", "castagna": "castagn", "castagne": "castagn", "castagneri": "castagner", "castagneto": "castagnet", "castagnetti": "castagnett", "castanova": "castanov", "castel": "castel", "castellaccio": "castellacc", "castellano": "castell", "castellari": "castellar", "castelli": "castell", "castellini": "castellin", "castello": "castell", "castelnovo": "castelnov", "castelvetrano": "castelvetr", "castiglia": "castigl", "castiglione": "castiglion", "castro": "castr", "castrovillari": "castrovillar", "castruci": "castruc", "casuale": "casual", "casualmente": "casual", "casucce": "casucc", "casuccia": "casucc", "casupole": "casupol", "cat": "cat", "cataldo": "catald", "catalina": "catalin", "catalogare": "catalog", "catamarani": "catamaran", "catanese": "catanes", "catania": "catan", "catanzaresi": "catanzares", "catanzaro": "catanzar", "catarinussi": "catarinuss", "catastrofe": "catastrof", "categoria": "categor", "categoricamente": "categor", "categorico": "categor", "categorie": "categor", "catelli": "catell", "catena": "caten", "catenacciara": "catenacciar", "catenaccio": "catenacc", "catene": "caten", "caterina": "caterin", "catherine": "catherin", "catholic": "catholic", "catilina": "catilin", "cattaneo": "cattane", "cattedra": "cattedr", "cattedrale": "cattedral", "cattedre": "cattedr", "cattiva": "catt", "cattivacci": "cattivacc", "cattivarvi": "cattiv", "cattive": "cattiv", "cattivello": "cattivell", "cattiveria": "cattiver", "cattiverie": "cattiver", "cattivi": "catt", "cattività": "cattiv", "cattivo": "catt", "cattolica": "cattol", "cattolicesimo": "cattolicesim", "cattolici": "cattol", "cattolico": "cattol", "cattura": "cattur", "catturaccia": "catturacc", "catturando": "cattur", "catturare": "cattur", "catturati": "cattur", "catturato": "cattur", "catture": "cattur", "catwoman": "catwoman", "cauare": "cau", "caucasica": "caucas", "caucaso": "caucas", "causa": "caus", "causale": "causal", "causando": "caus", "causare": "caus", "causarne": "caus", "causata": "caus", "causate": "caus", "causato": "caus", "cause": "caus", "cauta": "caut", "cautela": "cautel", "cautelare": "cautel", "cautelativamente": "cautel", "cautele": "cautel", "cauto": "caut", "cav": "cav", "cava": "cav", "cavadenti": "cavadent", "cavagna": "cavagn", "cavalcanti": "cavalc", "cavalcatore": "cavalc", "cavalcatura": "cavalcatur", "cavalcature": "cavalcatur", "cavalcava": "cavalc", "cavalcavia": "cavalcav", "cavalcioni": "cavalcion", "cavalier": "cavalier", "cavaliere": "caval", "cavalieri": "cavalier", "cavallaccio": "cavallacc", "cavalleresca": "cavalleresc", "cavallereschi": "cavalleresc", "cavalleria": "cavaller", "cavalli": "cavall", "cavallina": "cavallin", "cavallo": "cavall", "cavalloni": "cavallon", "cavando": "cav", "cavar": "cav", "cavare": "cav", "cavarli": "cav", "cavarmi": "cav", "cavarne": "cav", "cavarsene": "cav", "cavarsi": "cav", "cavarvi": "cav", "cavata": "cav", "cavatappi": "cavatapp", "cavate": "cav", "cavaterra": "cavaterr", "cavatevi": "cavat", "cavatio": "cavat", "cavato": "cav", "cavatogli": "cavatogl", "caverebbe": "cav", "cavereste": "cav", "caverne": "cav", "caverzan": "caverzan", "cavi": "cav", "cavicchio": "cavicc", "caviglia": "cavigl", "cavo": "cav", "cavò": "cav", "cavolo": "cavol", "cazin": "cazin", "cb": "cb", "cbm": "cbm", "cc": "cc", "ccb": "ccb", "ccd": "ccd", "cconcordata": "cconcord", "cct": "cct", "cd": "cd", "cda": "cda", "cdc": "cdc", "cdi": "cdi", "cdr": "cdr", "cdu": "cdu", "ce": "ce", "ceca": "cec", "cecchi": "cecc", "cecchini": "cecchin", "cecena": "cecen", "cecene": "cecen", "ceceni": "cecen", "cecenia": "cecen", "ceceno": "cecen", "cecere": "cec", "ceche": "cech", "cechi": "cech", "cecilia": "cecil", "cecina": "cecin", "cecino": "cecin", "cecità": "cecit", "ceco": "cec", "cedant": "cedant", "cede": "ced", "cedé": "ced", "cedendo": "ced", "ceder": "ceder", "cedere": "ced", "cederlo": "ced", "cedette": "cedett", "cedimento": "ced", "cedola": "cedol", "cedono": "ced", "ceduto": "ced", "cefa": "cef", "ceffo": "ceff", "cei": "cei", "ceko": "cek", "celate": "cel", "celeberrima": "celeberrim", "celeberrimo": "celeberrim", "celebra": "celebr", "celebrano": "celebr", "celebranti": "celebr", "celebrar": "celebr", "celebrare": "celebr", "celebrata": "celebr", "celebrato": "celebr", "celebrazione": "celebr", "celebrazioni": "celebr", "celebre": "celebr", "celebrerà": "celebr", "celebreranno": "celebr", "celebri": "celebr", "celebrità": "celebr", "celeri": "celer", "celerità": "celer", "celesti": "celest", "celia": "cel", "celibe": "celib", "celica": "celic", "celie": "cel", "cella": "cell", "cellette": "cellett", "cellulare": "cellul", "cellulari": "cellular", "celtic": "celtic", "cem": "cem", "cement": "cement", "cementeria": "cementer", "cementerie": "cementer", "cementi": "cement", "cementir": "cement", "cena": "cen", "cenato": "cen", "cenci": "cenc", "cencio": "cenc", "cenciose": "cencios", "cencioso": "cencios", "cene": "cen", "cenere": "cen", "ceneri": "cener", "cenerognola": "cenerognol", "cenni": "cenn", "cenno": "cenn", "cenò": "cen", "censis": "censis", "censore": "censor", "censui": "censu", "censura": "censur", "censurando": "censur", "censure": "censur", "cent": "cent", "centenari": "centenar", "centenario": "centenar", "center": "center", "centese": "centes", "centesimi": "centesim", "centesimo": "centesim", "centi": "cent", "centimetri": "centimetr", "centimetro": "centimetr", "centinaia": "centinai", "centinaio": "centinai", "cento": "cent", "centocinquemila": "centocinquemil", "centofanti": "centof", "centomila": "centomil", "central": "central", "centrale": "central", "centrali": "central", "centralismo": "central", "centralista": "central", "centralità": "central", "centralizzata": "centralizz", "centralizzate": "centralizz", "centralizzati": "centralizz", "centralizzato": "centralizz", "centralizzazione": "centralizz", "centrata": "centr", "centrato": "centr", "centravanti": "centrav", "centre": "centr", "centreremo": "centr", "centri": "centr", "centrista": "centrist", "centro": "centr", "centrò": "centr", "centrob": "centrob", "centrocampista": "centrocamp", "centrocampo": "centrocamp", "centrodestra": "centrodestr", "centrosinistra": "centrosinistr", "cents": "cents", "cera": "cer", "ceramiche": "ceram", "ceramicola": "ceramicol", "cerbone": "cerbon", "cerbottane": "cerbottan", "cerca": "cerc", "cercala": "cercal", "cercan": "cercan", "cercando": "cerc", "cercano": "cerc", "cercar": "cerc", "cercare": "cerc", "cercargli": "cerc", "cercarla": "cerc", "cercarlo": "cerc", "cercarmi": "cerc", "cercarne": "cerc", "cercartela": "cerc", "cercarvi": "cerc", "cercasse": "cerc", "cercassi": "cerc", "cercata": "cerc", "cercate": "cerc", "cercatele": "cercatel", "cercato": "cerc", "cercatore": "cercator", "cercava": "cerc", "cercavan": "cercavan", "cercavano": "cerc", "cercavi": "cerc", "cercavo": "cerc", "cercherà": "cerc", "cercheranno": "cerc", "cercherebbe": "cerc", "cercherò": "cerc", "cerchi": "cerc", "cerchiamo": "cerc", "cerchiata": "cerc", "cerchio": "cerc", "cerciello": "cerciell", "cercielo": "cerciel", "cercle": "cercl", "cerco": "cerc", "cercò": "cerc", "cercolavoro": "cercolavor", "cereali": "cereal", "cerealicoli": "cerealicol", "ceredi": "cered", "ceri": "cer", "cerimonia": "cerimon", "cerimoniale": "cerimonial", "cerimonie": "cerimon", "cerimoniosa": "cerimon", "cerimonioso": "cerimon", "cerioli": "ceriol", "cernebantur": "cernebantur", "cerniere": "cern", "cernobbio": "cernobb", "cernomyrdin": "cernomyrdin", "cernoriecie": "cernoriec", "cernusco": "cernusc", "ceronè": "ceron", "ceroni": "ceron", "cerri": "cerr", "cert": "cert", "certa": "cert", "certà": "cert", "certamente": "cert", "certe": "cert", "certezza": "certezz", "certezze": "certezz", "certi": "cert", "certificato": "certific", "certificazione": "certif", "certissimamente": "certissim", "certiusque": "certiusqu", "certo": "cert", "certuni": "certun", "ceruleo": "cerule", "ceruzzi": "ceruzz", "cervellacci": "cervellacc", "cervelli": "cervell", "cervellino": "cervellin", "cervello": "cervell", "cervellò": "cervell", "cervone": "cervon", "cerziorato": "cerzior", "cesalpino": "cesalpin", "cesar": "ces", "cesare": "ces", "cesari": "cesar", "cesen": "cesen", "cesena": "cesen", "cespugli": "cespugl", "cespuglio": "cespugl", "cessa": "cess", "cessan": "cessan", "cessar": "cess", "cessare": "cess", "cessaron": "cessaron", "cessarono": "cess", "cessasse": "cess", "cessata": "cess", "cessate": "cess", "cessati": "cess", "cessato": "cess", "cessava": "cess", "cessavano": "cess", "cessazione": "cessazion", "cesserebbe": "cess", "cessione": "cession", "cessò": "cess", "cetacei": "cetace", "ceteris": "ceteris", "ceti": "cet", "ceto": "cet", "cfi": "cfi", "cgia": "cgi", "cgie": "cgi", "cgil": "cgil", "ch": "ch", "cha": "cha", "challenge": "challeng", "chamot": "chamot", "champagne": "champagn", "chang": "chang", "chanony": "chanony", "chantal": "chantal", "charasiab": "charasiab", "chariello": "chariell", "charleroi": "charlero", "charles": "charles", "charron": "charron", "che": "che", "ché": "chè", "chè": "chè", "check": "check", "cheltenham": "cheltenham", "cheriche": "cheric", "chermisi": "chermis", "cheta": "chet", "chetamente": "chet", "chetare": "chet", "chetaron": "chetaron", "chetatevi": "chetat", "chetava": "chet", "cheti": "chet", "cheto": "chet", "chi": "chi", "chiacchere": "chiacc", "chiacchierando": "chiacchier", "chiacchierar": "chiacchier", "chiacchierare": "chiacchier", "chiacchierata": "chiacchier", "chiacchierato": "chiacchier", "chiacchiere": "chiacc", "chiacchierina": "chiacchierin", "chiacchierìo": "chiacchierì", "chiacchierone": "chiacchieron", "chiama": "chiam", "chiamala": "chiamal", "chiaman": "chiaman", "chiamando": "chiam", "chiamandoli": "chiam", "chiamandolo": "chiam", "chiamano": "chiam", "chiamar": "chiam", "chiamare": "chiam", "chiamarli": "chiam", "chiamarlo": "chiam", "chiamarsi": "chiam", "chiamasse": "chiam", "chiamaste": "chiamast", "chiamata": "chiam", "chiamate": "chiam", "chiamatemi": "chiamatem", "chiamati": "chiam", "chiamato": "chiam", "chiamava": "chiam", "chiamavan": "chiamavan", "chiamavano": "chiam", "chiamavo": "chiam", "chiamerà": "chiam", "chiamerò": "chiam", "chiami": "chiam", "chiamo": "chiam", "chiamò": "chiam", "chiana": "chian", "chianciano": "chianc", "chiapas": "chiapas", "chiapparlo": "chiapp", "chiappuzzo": "chiappuzz", "chiara": "chiar", "chiaramente": "chiar", "chiare": "chi", "chiarezza": "chiarezz", "chiari": "chiar", "chiariello": "chiariell", "chiarificazione": "chiarif", "chiarimenti": "chiar", "chiarimento": "chiar", "chiarirci": "chiar", "chiarire": "chiar", "chiarirsi": "chiar", "chiarisce": "chiar", "chiariscono": "chiar", "chiarissimi": "chiarissim", "chiarito": "chiar", "chiaro": "chiar", "chiarore": "chiaror", "chiasso": "chiass", "chiatta": "chiatt", "chiavari": "chiavar", "chiave": "chiav", "chiavenna": "chiavenn", "chiavi": "chi", "chicago": "chicag", "chicche": "chicc", "chicchera": "chiccher", "chicchi": "chicc", "chidambaram": "chidambaram", "chieda": "chied", "chiede": "chied", "chiedendo": "chied", "chieder": "chieder", "chiederà": "chied", "chiederanno": "chied", "chiedere": "chied", "chiederebbe": "chied", "chiederemo": "chied", "chiedergli": "chied", "chiederglielo": "chied", "chiedergliene": "chied", "chiederlo": "chied", "chiederne": "chied", "chiederò": "chied", "chiederti": "chied", "chiedesse": "chiedess", "chiedessero": "chied", "chiedessimo": "chiedessim", "chiedete": "chied", "chiedeva": "chied", "chiedevan": "chiedevan", "chiedevano": "chied", "chiedevate": "chied", "chiedevi": "chied", "chiedevo": "chied", "chiedi": "chied", "chiediamo": "chied", "chiediate": "chied", "chiedo": "chied", "chiedono": "chied", "chiesa": "chies", "chiese": "chies", "chiesi": "chies", "chiesta": "chiest", "chiesti": "chiest", "chiesto": "chiest", "chieti": "chiet", "chievo": "chi", "chigi": "chig", "chiklis": "chiklis", "chili": "chil", "chilo": "chil", "chilogrammi": "chilogramm", "chilometeri": "chilometer", "chilometri": "chilometr", "chilometro": "chilometr", "chilowattora": "chilowattor", "chimenti": "chiment", "chimera": "chimer", "chimiche": "chimic", "chimico": "chimic", "chimienti": "chimient", "china": "chin", "chinando": "chin", "chinandola": "chin", "chinandosi": "chin", "chinare": "chin", "chinarsi": "chin", "chinàs": "chinàs", "chinata": "chin", "chinati": "chin", "chinato": "chin", "chinava": "chin", "chinavano": "chin", "chino": "chin", "chinò": "chin", "chioccar": "chiocc", "chiocciola": "chiocciol", "chiodi": "chiod", "chiodo": "chiod", "chioma": "chiom", "chiomati": "chiom", "chiome": "chiom", "chiostro": "chiostr", "chip": "chip", "chips": "chips", "chirurghi": "chirurg", "chirurgia": "chirurg", "chirurgico": "chirurg", "chirurgo": "chirurg", "chissà": "chiss", "chiti": "chit", "chiude": "chiud", "chiudendo": "chiud", "chiudendosi": "chiud", "chiuder": "chiuder", "chiuderanno": "chiud", "chiudere": "chiud", "chiuderle": "chiud", "chiuderlo": "chiud", "chiudermi": "chiud", "chiuderne": "chiud", "chiudersi": "chiud", "chiudete": "chiud", "chiudeva": "chiud", "chiudevano": "chiud", "chiudiamo": "chiud", "chiudono": "chiud", "chiunque": "chiunqu", "chiusa": "chius", "chiuse": "chius", "chiusi": "chius", "chiuso": "chius", "chiusura": "chiusur", "chiusure": "chiusur", "cho": "cho", "choc": "choc", "choiaravalle": "choiaravall", "chr": "chr", "chris": "chris", "christiane": "christian", "christine": "christin", "christoph": "christoph", "christopher": "christopher", "chronistae": "chronista", "chul": "chul", "ci": "ci", "cia": "cia", "ciabatta": "ciabatt", "ciak": "ciak", "cialtroni": "cialtron", "ciambella": "ciambell", "ciampi": "ciamp", "ciampino": "ciampin", "ciance": "cianc", "ciao": "cia", "ciarlano": "ciarl", "ciarlare": "ciarl", "ciarlato": "ciarl", "ciarle": "ciarl", "ciarlerà": "ciarl", "ciarlerebbe": "ciarl", "ciarlone": "ciarlon", "ciarloni": "ciarlon", "ciarpume": "ciarpum", "ciascheduna": "ciaschedun", "ciascheduno": "ciaschedun", "ciascun": "ciascun", "ciascuna": "ciascun", "ciascuno": "ciascun", "cibi": "cib", "cibiemme": "cibiemm", "cibo": "cib", "cicalar": "cical", "cicalare": "cical", "cicalìo": "cicalì", "cicalone": "cicalon", "cicaloni": "cicalon", "ciccio": "cicc", "ciclismo": "ciclism", "ciclista": "ciclist", "ciclo": "cicl", "ciclomotore": "ciclomotor", "cieca": "ciec", "cieco": "ciec", "ciel": "ciel", "cielo": "ciel", "cifra": "cifr", "cifre": "cifr", "ciga": "cig", "cigli": "cigl", "ciglia": "cigl", "ciglio": "cigl", "ciglione": "ciglion", "ciglioni": "ciglion", "cigna": "cign", "cigne": "cign", "cigolìo": "cigolì", "cigs": "cigs", "cii": "cii", "cila": "cil", "cile": "cil", "cilena": "cilen", "ciliegi": "cilieg", "cilizio": "ciliz", "cima": "cim", "cime": "cim", "cimento": "ciment", "ciments": "ciments", "cimitero": "cimiter", "cina": "cin", "cinema": "cinem", "cinematografica": "cinematograf", "cinematografico": "cinematograf", "cinematografo": "cinematograf", "cinematografò": "cinematograf", "cineoperatore": "cineoper", "cinese": "cines", "cingeva": "cing", "cingoli": "cingol", "cinicamente": "cinic", "cinofile": "cinofil", "cinquant": "cinquant", "cinquanta": "cinquant", "cinquantamila": "cinquantamil", "cinquantatre": "cinquantatr", "cinquantenario": "cinquantenar", "cinquantesima": "cinquantesim", "cinquantesimo": "cinquantesim", "cinque": "cinqu", "cinquecento": "cinquecent", "cinquemila": "cinquemil", "cinse": "cins", "cinta": "cint", "cinti": "cint", "cinto": "cint", "cintola": "cintol", "cintura": "cintur", "ciò": "ciò", "cioccarelli": "cioccarell", "ciocche": "ciocc", "ciocchetti": "ciocchett", "ciocchettina": "ciocchettin", "cioccolata": "cioccol", "cioccolato": "cioccol", "cioè": "cio", "cioffarelli": "cioffarell", "ciondolar": "ciondol", "ciondoloni": "ciondolon", "ciotola": "ciotol", "ciotole": "ciotol", "ciottoli": "ciottol", "ciottoloni": "ciottolon", "cipe": "cip", "cipiglio": "cipigl", "cipro": "cipr", "cir": "cir", "circa": "circ", "circati": "circ", "circo": "circ", "circola": "circol", "circolare": "circol", "circolari": "circolar", "circolata": "circol", "circolate": "circol", "circolazione": "circol", "circoli": "circol", "circolo": "circol", "circonda": "circond", "circondare": "circond", "circondata": "circond", "circondati": "circond", "circondato": "circond", "circondava": "circond", "circondavano": "circond", "circonvallazione": "circonvall", "circonvicini": "circonvicin", "circonvicino": "circonvicin", "circoscritta": "circoscritt", "circoscritte": "circoscritt", "circospetti": "circospett", "circospezione": "circospezion", "circostante": "circost", "circostanti": "circost", "circostanza": "circost", "circostanze": "circost", "circostanziare": "circostanz", "circostanziati": "circostanz", "circuiti": "circu", "circuito": "circu", "ciriaco": "ciriac", "cirio": "cir", "cirm": "cirm", "ciro": "cir", "ciruzzi": "ciruzz", "cis": "cis", "cisal": "cisal", "cisalpino": "cisalpin", "cises": "cises", "cisgiordania": "cisgiordan", "cisl": "cisl", "cisnal": "cisnal", "cisp": "cisp", "cisterne": "cist", "cita": "cit", "citando": "cit", "citano": "cit", "citare": "cit", "citarne": "cit", "citata": "cit", "citati": "cit", "citato": "cit", "citavano": "cit", "citazioni": "citazion", "citeremo": "cit", "citiamo": "cit", "cito": "cit", "citta": "citt", "città": "citt", "cittadella": "cittadell", "cittàdi": "cittàd", "cittadina": "cittadin", "cittadinanza": "cittadin", "cittadine": "cittadin", "cittadini": "cittadin", "cittadino": "cittadin", "cittadinò": "cittadin", "citterio": "citter", "city": "city", "ciudad": "ciudad", "ciuffetti": "ciuffett", "ciuffetto": "ciuffett", "ciuffi": "ciuff", "ciuffo": "ciuff", "ciurma": "ciurm", "cives": "cives", "civetta": "civett", "civici": "civic", "civile": "civil", "civili": "civil", "civilità": "civil", "civiltà": "civilt", "civirani": "civiran", "civitavecchia": "civitavecc", "cla": "cla", "claes": "claes", "claire": "cla", "clam": "clam", "clamore": "clamor", "clamori": "clamor", "clamorosa": "clamor", "clamorosi": "clamor", "clamoroso": "clamor", "clan": "clan", "clandestina": "clandestin", "clandestinamente": "clandestin", "clandestino": "clandestin", "clarin": "clarin", "clark": "clark", "classe": "class", "classi": "class", "classica": "classic", "classici": "classic", "classico": "classic", "classifica": "classif", "classificate": "classific", "classificati": "classific", "classificato": "classific", "classifiche": "classif", "claude": "claud", "claudia": "claud", "claudio": "claud", "claus": "claus", "claustrale": "claustral", "clausura": "clausur", "cle": "cle", "clemente": "clement", "clemenza": "clemenz", "clerici": "cleric", "clerico": "cleric", "clericofascisti": "clericofasc", "clero": "cler", "clf": "clf", "cliam": "cliam", "cliente": "client", "clientela": "clientel", "clienti": "client", "cliff": "cliff", "clima": "clim", "climaticamente": "climat", "climatiche": "climat", "climatologia": "climatolog", "climi": "clim", "clinica": "clinic", "cliniche": "clinic", "clinico": "clinic", "clinton": "clinton", "cll": "cll", "cln": "cln", "clò": "clò", "clodio": "clod", "clou": "clou", "clr": "clr", "club": "club", "clusone": "cluson", "clwyd": "clwyd", "cmos": "cmos", "cn": "cn", "cna": "cna", "cnt": "cnt", "co": "co", "coalizaione": "coalizaion", "coalizione": "coalizion", "coalizioni": "coalizion", "coatta": "coatt", "cob": "cob", "coblenza": "coblenz", "cobra": "cobr", "cocaina": "cocain", "cocche": "cocc", "cocchiere": "cocc", "cocci": "cocc", "coccia": "cocc", "coceva": "coc", "cochin": "cochin", "cocuzzoli": "cocuzzol", "cocuzzolo": "cocuzzol", "coda": "cod", "codarde": "codard", "codazzo": "codazz", "code": "cod", "codesta": "codest", "codeste": "codest", "codesti": "codest", "codesto": "codest", "codice": "codic", "codignoni": "codignon", "coe": "coe", "coefficiente": "coefficient", "coelestium": "coelestium", "coerente": "coerent", "coerentemente": "coerent", "coerenti": "coerent", "coerenza": "coerenz", "coetaneo": "coetane", "coevi": "coev", "coferenze": "coferent", "cofferati": "coffer", "cofide": "cofid", "cogenerazione": "cogener", "coglie": "cogl", "coglierà": "cogl", "coglierci": "cogl", "cogliere": "cogl", "coglierne": "cogl", "cognati": "cogn", "cognatio": "cognat", "cogne": "cogn", "cognetex": "cognetex", "cognizion": "cognizion", "cognizione": "cognizion", "cognizioni": "cognizion", "cognome": "cognom", "coi": "coi", "coim": "coim", "coincide": "coincid", "coincidenza": "coincident", "coinciso": "coincis", "coinvolge": "coinvolg", "coinvolgerà": "coinvolg", "coinvolgere": "coinvolg", "coinvolgimento": "coinvolg", "coinvolgono": "coinvolg", "coinvolta": "coinvolt", "coinvolte": "coinvolt", "coinvolti": "coinvolt", "coinvolto": "coinvolt", "coiro": "coir", "cois": "cois", "col": "col", "colà": "col", "colabrodo": "colabrod", "colaiacomo": "colaiacom", "colalucci": "colalucc", "colazione": "colazion", "colbò": "colb", "colei": "cole", "colendissimo": "colendissim", "coleridge": "coleridg", "colgono": "colg", "colico": "colic", "coll": "coll", "colla": "coll", "collabora": "collabor", "collaborando": "collabor", "collaborare": "collabor", "collaborato": "collabor", "collaboratore": "collabor", "collaboratori": "collabor", "collaboratrici": "collabor", "collaborazione": "collabor", "collaborazioni": "collabor", "collalto": "collalt", "collana": "collan", "collant": "collant", "collare": "coll", "collaudo": "collaud", "colle": "coll", "colleferro": "colleferr", "collega": "colleg", "collegà": "colleg", "collegabile": "colleg", "collegamenti": "colleg", "collegamento": "colleg", "collegare": "colleg", "collegata": "colleg", "collegate": "colleg", "collegati": "colleg", "collegato": "colleg", "collegava": "colleg", "college": "colleg", "colleggiale": "colleggial", "colleggialità": "colleggial", "collegherà": "colleg", "colleghi": "colleg", "collegi": "colleg", "collegiale": "collegial", "collegialità": "collegial", "collegio": "colleg", "collera": "coller", "collerico": "coller", "collettiva": "collett", "collettività": "collett", "collettivo": "collett", "collezionato": "collezion", "collezionava": "collezion", "collezione": "collezion", "collezioni": "collezion", "colli": "coll", "colline": "collin", "collinetta": "collinett", "collisione": "collision", "collo": "coll", "colloca": "colloc", "collocamenti": "colloc", "collocamento": "colloc", "collocandolo": "colloc", "collocare": "colloc", "collocarla": "colloc", "collocarsi": "colloc", "collocarvi": "colloc", "collocata": "colloc", "collocatasi": "collocatas", "collocate": "colloc", "collocato": "colloc", "collocazione": "colloc", "collocazioni": "colloc", "collocherebbe": "colloc", "collochi": "colloc", "colloqui": "colloqu", "colloquio": "colloqu", "colloredo": "collored", "collusione": "collusion", "colluttazioni": "collutt", "colma": "colm", "colmare": "colm", "colmata": "colm", "colme": "colm", "colmi": "colm", "colmo": "colm", "colò": "col", "colombe": "colomb", "colombia": "colomb", "colombiana": "colombian", "colombiano": "colomb", "colombo": "colomb", "colombotti": "colombott", "colonello": "colonell", "coloniale": "colonial", "colonna": "colonn", "colonne": "colonn", "colonnello": "colonnell", "colonnese": "colonnes", "colono": "col", "color": "color", "colorati": "color", "colore": "color", "colori": "color", "colorito": "color", "colorivano": "color", "coloro": "color", "colossi": "coloss", "colosso": "coloss", "colpa": "colp", "colpe": "colp", "colpendo": "colp", "colpevol": "colpevol", "colpevole": "colpevol", "colpevolè": "colpevol", "colpevolezza": "colpevolezz", "colpevoli": "colpevol", "colpevolizzare": "colpevolizz", "colpi": "colp", "colpì": "colp", "colpisce": "colp", "colpiscono": "colp", "colpisse": "colpiss", "colpita": "colp", "colpite": "colp", "colpiti": "colp", "colpito": "colp", "colpo": "colp", "colse": "cols", "colsero": "colser", "colta": "colt", "coltellacci": "coltellacc", "coltellaccio": "coltellacc", "coltellata": "coltell", "coltellate": "coltell", "coltelli": "coltell", "coltello": "coltell", "colti": "colt", "coltivando": "coltiv", "coltivare": "coltiv", "coltivasse": "coltiv", "coltivata": "coltiv", "coltivate": "colt", "coltivati": "coltiv", "coltivato": "coltiv", "coltivava": "coltiv", "coltivazioni": "coltiv", "colto": "colt", "coltura": "coltur", "colui": "colu", "columbia": "columb", "com": "com", "comanda": "comand", "comandamenti": "comand", "comandami": "comandam", "comandan": "comandan", "comandane": "comandan", "comandano": "comand", "comandante": "comand", "comandanti": "comand", "comandar": "comand", "comandare": "comand", "comandargli": "comand", "comandarle": "comand", "comandarne": "comand", "comandasse": "comand", "comandassi": "comand", "comandata": "comand", "comandato": "comand", "comandava": "comand", "comanderai": "comand", "comanderò": "comand", "comandi": "comand", "comando": "com", "comandò": "comand", "comar": "com", "comare": "com", "comari": "comar", "comaschi": "comasc", "comasco": "comasc", "comau": "comau", "combaciano": "combac", "combatta": "combatt", "combattendo": "combatt", "combattente": "combattent", "combattenti": "combattent", "combatter": "combatter", "combattere": "combatt", "combattesse": "combattess", "combatteva": "combatt", "combattiemnti": "combattiemnt", "combattimenti": "combatt", "combattimento": "combatt", "combattono": "combatt", "combattuta": "combatt", "combinata": "combin", "combinazione": "combin", "combinazioni": "combin", "combineranno": "combin", "combò": "comb", "combustibile": "combust", "combustibili": "combust", "come": "com", "comedy": "comedy", "comencini": "comencin", "comense": "comens", "comentitiasque": "comentitiasqu", "comercio": "comerc", "cometa": "comet", "comi": "com", "comiche": "comic", "comici": "comic", "comico": "comic", "comignoli": "comignol", "comillas": "comillas", "comincerà": "cominc", "comincerann": "comincerann", "cominceranno": "cominc", "comincerei": "cominc", "cominci": "cominc", "comincia": "cominc", "cominciamo": "cominc", "cominciando": "cominc", "cominciano": "cominc", "cominciar": "cominc", "cominciare": "cominc", "cominciarono": "cominc", "cominciasse": "cominc", "cominciata": "cominc", "cominciate": "cominc", "cominciati": "cominc", "cominciato": "cominc", "cominciava": "cominc", "cominciavan": "cominciavan", "cominciavano": "cominc", "cominciavo": "cominc", "comincin": "comincin", "comincio": "cominc", "cominciò": "cominc", "cominica": "comin", "comino": "comin", "comit": "comit", "comitati": "comit", "comitato": "comit", "comites": "comites", "comitiva": "comit", "comitive": "comit", "comizio": "comiz", "comma": "comm", "commando": "comm", "commedia": "commed", "commemorano": "commemor", "commemorare": "commemor", "commemorazione": "commemor", "commemorazioni": "commemor", "commensale": "commensal", "commensali": "commensal", "comment": "comment", "commenta": "comment", "commentando": "comment", "commentare": "comment", "commentate": "comment", "commentati": "comment", "commentato": "comment", "commentatori": "comment", "commenti": "comment", "commento": "comment", "commerci": "comm", "commerciabile": "commerc", "commerciale": "commercial", "commerciali": "commercial", "commercialisti": "commercial", "commercializzazione": "commercializz", "commerciano": "commerc", "commerciante": "commerc", "commercianti": "commerc", "commercio": "commerc", "commerzbank": "commerzbank", "commessa": "commess", "commesse": "commess", "commessi": "commess", "commesso": "commess", "commestibili": "commest", "commette": "commett", "commetter": "commetter", "commettere": "commett", "commetterne": "commett", "commettesse": "commettess", "commetteva": "commett", "commettevano": "commett", "commettiamo": "commett", "commettono": "commett", "commiato": "comm", "commilitoni": "commiliton", "comminare": "commin", "comminazioni": "commin", "commisario": "commisar", "commisione": "commision", "commisisone": "commisison", "commissari": "commissar", "commissariale": "commissarial", "commissariamento": "commissar", "commissariati": "commissar", "commissariato": "commissar", "commissario": "commissar", "commission": "commission", "commissiona": "commission", "commissionata": "commission", "commissionato": "commission", "commissione": "commission", "commissioni": "commission", "commistione": "commistion", "commossa": "commoss", "commosse": "commoss", "commossi": "commoss", "commosso": "commoss", "commovere": "commov", "commoversi": "commov", "commozione": "commozion", "commozioni": "commozion", "commutazione": "commut", "como": "com", "comoda": "comod", "comodamente": "comod", "comodi": "comod", "comodità": "comod", "comodo": "comod", "comp": "comp", "compadrone": "compadron", "compagna": "compagn", "compagne": "compagn", "compagni": "compagn", "compagnia": "compagn", "compagnie": "compagn", "compagno": "compagn", "compagnone": "compagnon", "compagnoni": "compagnon", "companatico": "companat", "compania": "compan", "company": "company", "compare": "comp", "comparendo": "compar", "comparir": "compar", "comparire": "compar", "comparirle": "compar", "comparirvi": "compar", "comparisce": "compar", "compariscono": "compar", "compariva": "compar", "comparivan": "comparivan", "comparivano": "compar", "comparsa": "compars", "comparse": "compars", "comparso": "compars", "comparti": "comp", "compartimenti": "compart", "compartimento": "compart", "comparto": "compart", "comparve": "comparv", "compassion": "compassion", "compassione": "compassion", "compassionevole": "compassionevol", "compassionevoli": "compassionevol", "compatibile": "compat", "compatibili": "compat", "compatibilità": "compatibil", "compatibilmente": "compatibil", "compatire": "compat", "compatirlo": "compat", "compatirsi": "compat", "compatisco": "compat", "compatitemi": "compatitem", "compatriotti": "compatriott", "compatta": "compatt", "compattezza": "compattezz", "compatti": "compatt", "compegnie": "compegn", "compendio": "compend", "compensar": "compens", "compensarla": "compens", "compensativo": "compens", "compensava": "compens", "compensazione": "compens", "compenso": "compens", "comperare": "comper", "compertum": "compertum", "compete": "comp", "competente": "competent", "competenti": "competent", "competenza": "competent", "competenze": "competent", "competer": "competer", "competere": "compet", "competesse": "competess", "competitito": "competit", "competitiva": "competit", "competitività": "competit", "competitivo": "competit", "competizione": "competizion", "competizioni": "competizion", "compiace": "compiac", "compiacendosi": "compiac", "compiacenza": "compiacent", "compiacenze": "compiacent", "compiacere": "compiac", "compiacerla": "compiac", "compiaceva": "compiac", "compiacimento": "compiac", "compiacque": "compiacqu", "compiangere": "compiang", "compiere": "comp", "compilata": "compil", "compilati": "compil", "compilaua": "compilau", "compilazione": "compil", "compimento": "comp", "compir": "comp", "compirà": "comp", "compire": "comp", "compisca": "comp", "compita": "comp", "compitezza": "compitezz", "compiti": "comp", "compito": "comp", "compiuta": "comp", "compiutamente": "compiut", "compiuti": "comp", "compiuto": "comp", "complatamente": "complat", "compleanno": "compleann", "complementare": "complement", "complessa": "compless", "complesse": "compless", "complessi": "compless", "complessione": "complession", "complessità": "compless", "complessiva": "compless", "complessivamente": "compless", "complessive": "compless", "complessivo": "compless", "complesso": "compless", "completa": "complet", "completamente": "complet", "completamento": "complet", "completare": "complet", "completarla": "complet", "completata": "complet", "completato": "complet", "completavano": "complet", "completo": "complet", "complica": "complic", "complicata": "complic", "complicate": "complic", "complice": "complic", "complici": "complic", "complicibus": "complicibus", "complicità": "complic", "complimentare": "compliment", "complimentavan": "complimentavan", "complimenti": "compl", "complimento": "compl", "complotto": "complott", "complures": "complures", "compone": "compon", "componente": "component", "componenti": "component", "componesse": "componess", "componeva": "compon", "componevano": "compon", "compongono": "compong", "componi": "compon", "comporne": "comporn", "comporranno": "comporrann", "comporre": "comporr", "comporta": "comport", "comportamenti": "comport", "comportamento": "comport", "comportanmento": "comportanment", "comportare": "comport", "comportassero": "comport", "comportato": "comport", "comporti": "comport", "comportino": "comportin", "compose": "compos", "composizione": "composizion", "composta": "compost", "composte": "compost", "compostezza": "compostezz", "composti": "compost", "composto": "compost", "compra": "compr", "comprando": "compr", "comprandosi": "compr", "comprar": "compr", "comprare": "compr", "comprarle": "compr", "comprarli": "compr", "comprarlo": "compr", "comprarne": "compr", "comprarsi": "compr", "comprassero": "compr", "comprate": "compr", "comprato": "compr", "compratore": "comprator", "compratori": "comprator", "compravano": "compr", "compre": "compr", "comprenda": "compr", "comprende": "compr", "comprenderà": "comprend", "comprendere": "comprend", "comprendiamo": "comprend", "comprendo": "compr", "comprendono": "comprend", "comprensione": "comprension", "comprensiva": "comprens", "comprensivi": "comprens", "comprerà": "compr", "comprerebbero": "compr", "compresa": "compres", "comprese": "compres", "compresero": "compreser", "compresi": "compres", "compreso": "compres", "compressa": "compress", "compresse": "compress", "compresso": "compress", "compri": "compr", "comprimere": "comprim", "compromesse": "compromess", "compromesso": "compromess", "comprometere": "compromet", "compromettere": "compromett", "compromettersi": "compromett", "compromissione": "compromission", "comptetitive": "comptetit", "compunta": "compunt", "compunto": "compunt", "compunzione": "compunzion", "computer": "computer", "comu": "comu", "comunale": "comunal", "comunali": "comunal", "comune": "comun", "comunemente": "comun", "comuni": "comun", "comunica": "comun", "comunicare": "comunic", "comunicargli": "comunic", "comunicarle": "comunic", "comunicata": "comunic", "comunicate": "comunic", "comunicati": "comunic", "comunicatigli": "comunicatigl", "comunicativo": "comun", "comunicato": "comunic", "comunicavano": "comunic", "comunicazione": "comun", "comunicazioni": "comun", "comunicò": "comunic", "comunismo": "comun", "comunista": "comun", "comuniste": "comun", "comunisti": "comun", "comunità": "comun", "comunitari": "comunitar", "comunitaria": "comunitar", "comunitarie": "comunitar", "comunitario": "comunitar", "comunque": "comunqu", "comuntiario": "comuntiar", "comuque": "comuqu", "con": "con", "conai": "cona", "conakry": "conakry", "conan": "conan", "conca": "conc", "concatenata": "concaten", "concatenazione": "concaten", "concede": "conced", "concedendo": "conced", "conceder": "conceder", "concederà": "conced", "concedere": "conced", "concedergli": "conced", "concedete": "conced", "concedetegli": "concedetegl", "concedo": "conced", "concento": "concent", "concentramenti": "concentr", "concentramento": "concentr", "concentrandosi": "concentr", "concentrano": "concentr", "concentrarci": "concentr", "concentrare": "concentr", "concentrarsi": "concentr", "concentrata": "concentr", "concentrate": "concentr", "concentratè": "concentrat", "concentrati": "concentr", "concentrazione": "concentr", "concentrazioni": "concentr", "concenzione": "concenzion", "concepire": "concep", "concepirsi": "concep", "concepita": "concep", "concepite": "concep", "concepiva": "concep", "concerne": "conc", "concernente": "concernent", "concernenti": "concernent", "concertar": "concert", "concertare": "concert", "concertaron": "concertaron", "concertarono": "concert", "concertarsi": "concert", "concertata": "concert", "concertato": "concert", "concerti": "conc", "concerto": "concert", "concertò": "concert", "concessa": "concess", "concesse": "concess", "concessi": "concess", "concessionari": "concessionar", "concessionarie": "concessionar", "concessionario": "concessionar", "concessione": "concession", "concessioni": "concession", "concesso": "concess", "concetti": "concett", "concettini": "concettin", "concetto": "concett", "concezione": "concezion", "conchiglie": "conchigl", "conchiude": "conchiud", "conchiudere": "conchiud", "concian": "concian", "conciato": "conc", "concigliarglieli": "concigl", "conciliare": "concil", "conciliari": "conciliar", "conciliava": "concil", "conciliazionè": "conciliazion", "concio": "conc", "conciò": "conc", "conciso": "concis", "concitarsi": "concit", "concitata": "concit", "concitato": "concit", "concittadina": "concittadin", "conclamati": "conclam", "conclavi": "concl", "concluda": "conclud", "conclude": "conclud", "concludendo": "conclud", "concludenti": "concludent", "concluder": "concluder", "concluderà": "conclud", "concludere": "conclud", "concludeva": "conclud", "concludon": "concludon", "concludono": "conclud", "conclusa": "conclus", "conclusasi": "conclusas", "concluse": "conclus", "conclusero": "concluser", "conclusesi": "concluses", "conclusi": "conclus", "conclusione": "conclusion", "conclusioni": "conclusion", "conclusisi": "conclusis", "conclusiva": "conclus", "conclusivo": "conclus", "concluso": "conclus", "concomitanza": "concomit", "concordando": "concord", "concordano": "concord", "concordare": "concord", "concordata": "concord", "concordate": "concord", "concordati": "concord", "concordato": "concord", "concordi": "concord", "concordiamo": "concord", "concorrendo": "concorr", "concorrente": "concorrent", "concorrenti": "concorrent", "concorrenza": "concorrent", "concorrenziale": "concorrenzial", "concorrenzialità": "concorrenzial", "concorrere": "concorr", "concorreva": "concorr", "concorsero": "concorser", "concorsi": "concors", "concorso": "concors", "concorsuale": "concorsual", "concreta": "concret", "concretament": "concretament", "concretamente": "concret", "concrete": "concr", "concreti": "concret", "concretizzare": "concretizz", "concretizzato": "concretizz", "concretizzazione": "concretizz", "concretizzerà": "concretizz", "concreto": "concret", "concussione": "concussion", "concussioni": "concussion", "cond": "cond", "condanna": "condann", "condannare": "condann", "condannarmi": "condann", "condannata": "condann", "condannati": "condann", "condannato": "condann", "condanne": "condann", "condannerebbe": "condann", "conde": "cond", "condé": "cond", "condensato": "condens", "condicio": "condic", "condiciò": "condic", "condirettore": "condirettor", "condiscendente": "condiscendent", "condiscendenza": "condiscendent", "condiscendere": "condiscend", "condita": "cond", "condite": "cond", "conditi": "cond", "conditio": "condit", "condivide": "condivid", "condivideranno": "condivid", "condivido": "condivid", "condivisa": "condivis", "condivise": "condivis", "condiviso": "condivis", "condizion": "condizion", "condiziona": "condizion", "condizionante": "condizion", "condizionare": "condizion", "condizionarla": "condizion", "condizionata": "condizion", "condizionati": "condizion", "condizionato": "condizion", "condizione": "condizion", "condizioni": "condizion", "condoglianze": "condogl", "condolersi": "condol", "condoluto": "condol", "condominio": "condomin", "condono": "cond", "condor": "condor", "condotta": "condott", "condotte": "condott", "condotti": "condott", "condottiere": "condott", "condottieri": "condottier", "condottiero": "condottier", "condotto": "condott", "conduca": "conduc", "conduce": "conduc", "conducendo": "conduc", "conducendosi": "conduc", "conducesse": "conducess", "conducete": "conduc", "conduceva": "conduc", "conducevan": "conducevan", "conducimi": "conducim", "conduco": "conduc", "conducono": "conduc", "condur": "condur", "condurla": "condurl", "condurli": "condurl", "condurlo": "condurl", "condurmi": "condurm", "condurne": "condurn", "condurrà": "condurr", "condurrai": "condurra", "condurre": "condurr", "condurrebbero": "condurrebber", "condurremo": "condurrem", "condurrò": "condurr", "condursi": "condurs", "condurvi": "condurv", "condusse": "conduss", "conduttore": "conduttor", "conduttori": "conduttor", "conduzione": "conduzion", "conegliano": "conegl", "conf": "conf", "confapi": "confap", "confartigianato": "confartigian", "confcooperative": "confcooper", "confederale": "confederal", "confederali": "confederal", "confederalismo": "confederal", "confederazione": "confeder", "confedilizia": "confediliz", "conferenza": "conferent", "conferenze": "conferent", "conferì": "confer", "conferimento": "confer", "conferire": "confer", "conferito": "confer", "conferitogli": "conferitogl", "conferma": "conferm", "confermando": "conferm", "confermandosi": "conferm", "confermano": "conferm", "confermare": "conferm", "confermarla": "conferm", "confermarlo": "conferm", "confermarsi": "conferm", "confermata": "conferm", "confermati": "conferm", "confermato": "conferm", "confermava": "conferm", "conferme": "conferm", "confermerà": "conferm", "confermi": "conf", "confermo": "conferm", "confermò": "conferm", "confessa": "confess", "confessar": "confess", "confessare": "confess", "confessarla": "confess", "confessarle": "confess", "confessarmi": "confess", "confessarsi": "confess", "confessata": "confess", "confessato": "confess", "confessava": "confess", "confessi": "confess", "confessiate": "confess", "confessione": "confession", "confessioni": "confession", "confesso": "confess", "confessore": "confessor", "confessori": "confessor", "confetti": "confett", "confezionamento": "confezion", "confezionano": "confezion", "confezioni": "confezion", "conficcata": "conficc", "conficique": "conficiqu", "confida": "confid", "confidano": "confid", "confidare": "confid", "confidarsi": "confid", "confidarvi": "confid", "confidate": "confid", "confidati": "confid", "confidato": "confid", "confidavano": "confid", "confidente": "confident", "confidenti": "confident", "confidenza": "confident", "confidenze": "confident", "confidi": "confid", "confido": "confid", "configurare": "configur", "configurerebbe": "configur", "confina": "confin", "confinante": "confin", "confinanti": "confin", "confinarie": "confinar", "confinata": "confin", "confinate": "confin", "confindustria": "confindustr", "confine": "confin", "confini": "confin", "confirmata": "confirm", "confisca": "conf", "conflitti": "conflitt", "conflitto": "conflitt", "conflittualità": "conflittual", "confluente": "confluent", "confluenza": "confluenz", "confluiscano": "conflu", "confluiti": "conflu", "confonde": "confond", "confondendo": "confond", "confonder": "confonder", "confondere": "confond", "confondergli": "confond", "confondermi": "confond", "confondersi": "confond", "confondessimo": "confondessim", "confondeva": "confond", "confondevano": "confond", "confondono": "confond", "conformarci": "conform", "conformarsi": "conform", "conforme": "conform", "conformemente": "conform", "conformi": "conform", "conformità": "conform", "confortando": "confort", "confortante": "confort", "confortarla": "confort", "confortava": "confort", "conforti": "confort", "conforto": "confort", "confratelli": "confratell", "confratello": "confratell", "confraternite": "confratern", "confrontando": "confront", "confrontano": "confront", "confrontare": "confront", "confrontarsi": "confront", "confrontata": "confront", "confronti": "confront", "confrontino": "confrontin", "confronto": "confront", "confrontò": "confront", "confsal": "confsal", "confusa": "confus", "confusamente": "confus", "confuse": "confus", "confusetto": "confusett", "confusi": "confus", "confusion": "confusion", "confusionaria": "confusionar", "confusione": "confusion", "confusioni": "confusion", "confuso": "confus", "congedandolo": "conged", "congedare": "conged", "congedava": "conged", "congedi": "conged", "congedo": "conged", "congegnate": "congegn", "congegni": "congegn", "congelando": "congel", "congelare": "congel", "congestione": "congestion", "congettura": "congettur", "congetturali": "congettural", "congetturando": "congettur", "congetturarlo": "congettur", "congetturato": "congettur", "congetture": "congettur", "congetturò": "congettur", "congiontione": "congiontion", "congiunge": "congiung", "congiuntamente": "congiunt", "congiunte": "congiunt", "congiunti": "congiunt", "congiunto": "congiunt", "congiuntura": "congiuntur", "congiunturale": "congiuntural", "congiunzione": "congiunzion", "congiunzioni": "congiunzion", "congiura": "congiur", "congiurare": "congiur", "congiurata": "congiur", "congiurate": "congiur", "congolese": "congoles", "congratularsi": "congratul", "congratulato": "congratul", "congratulava": "congratul", "congratulazione": "congratul", "congratulazioni": "congratul", "congratulò": "congratul", "congregati": "congreg", "congressi": "congress", "congressista": "congress", "congressisti": "congress", "congresso": "congress", "congressuale": "congressual", "congressuali": "congressual", "congrui": "congru", "congruo": "congru", "coni": "con", "coniate": "con", "coniato": "con", "coniglietta": "conigliett", "conigliette": "conigliett", "coninori": "coninor", "conio": "con", "coniugare": "coniug", "coniugi": "coniug", "conna": "conn", "connazionale": "connazional", "connazionali": "connazional", "connecticut": "connecticut", "connery": "connery", "connessi": "conness", "connessione": "connession", "connesso": "conness", "connettere": "connett", "connettesse": "connettess", "connivenza": "connivent", "connotazione": "connot", "cono": "con", "conobbe": "conobb", "conosca": "conosc", "conosce": "conosc", "conoscendo": "conosc", "conoscente": "conoscent", "conoscenti": "conoscent", "conoscenza": "conoscent", "conoscenze": "conoscent", "conoscer": "conoscer", "conoscerà": "conosc", "conosceranno": "conosc", "conoscere": "conosc", "conoscerlo": "conosc", "conoscerò": "conosc", "conoscersi": "conosc", "conoscervi": "conosc", "conoscesse": "conoscess", "conoscessero": "conosc", "conoscessi": "conoscess", "conoscete": "conosc", "conosceva": "conosc", "conoscevan": "conoscevan", "conoscevano": "conosc", "conosci": "conosc", "conosciamo": "conosc", "conoscitiva": "conoscit", "conosciuta": "conosc", "conosciute": "conosc", "conosciuti": "conosc", "conosciuto": "conosc", "conosco": "conosc", "conoscono": "conosc", "conquista": "conquist", "conquistando": "conquist", "conquistare": "conquist", "conquistarsi": "conquist", "conquistata": "conquist", "conquistati": "conquist", "conquistato": "conquist", "conquistatore": "conquist", "conquistatori": "conquist", "conquiste": "conquist", "conquisteremo": "conquist", "conquisti": "conquist", "conquistino": "conquistin", "consacrata": "consacr", "consacrazione": "consacr", "consapevole": "consapevol", "consapevolezza": "consapevolezz", "consapevolmente": "consapevol", "consci": "consc", "consecutiva": "consecut", "consecutive": "consecut", "consecutivi": "consecut", "consecutivo": "consecut", "consegna": "consegn", "consegnando": "consegn", "consegnano": "consegn", "consegnar": "consegn", "consegnare": "consegn", "consegnarle": "consegn", "consegnarlo": "consegn", "consegnata": "consegn", "consegnate": "consegn", "consegnati": "consegn", "consegnato": "consegn", "consegnerò": "consegn", "consegnò": "consegn", "consegnuenza": "consegnuent", "conseguente": "conseguent", "conseguentemente": "conseguent", "conseguenza": "conseguent", "conseguenze": "conseguent", "conseguimento": "consegu", "conseguire": "consegu", "conseguiti": "consegu", "conseguito": "consegu", "consensi": "consens", "consenso": "consens", "consenta": "consent", "consentanei": "consentane", "consentaneo": "consentane", "consentano": "consent", "consente": "consent", "consentirà": "consent", "consentiranno": "consent", "consentire": "consent", "consentirebbe": "consent", "consentita": "consent", "consentiti": "consent", "consentito": "consent", "consentivano": "consent", "consentono": "consent", "conserte": "consert", "conserva": "conserv", "conservano": "conserv", "conservar": "conserv", "conservare": "conserv", "conservarla": "conserv", "conservarle": "conserv", "conservarsi": "conserv", "conservata": "conserv", "conservate": "conserv", "conservati": "conserv", "conservative": "conserv", "conservato": "conserv", "conservatore": "conserv", "conservatori": "conserv", "conservatoria": "conservator", "conservatrice": "conserv", "conservazione": "conserv", "conservi": "cons", "conservò": "conserv", "consessi": "consess", "considera": "consider", "considerabile": "consider", "considerabili": "consider", "considerando": "consider", "considerano": "consider", "considerar": "consider", "considerare": "consider", "considerarli": "consider", "considerarono": "consider", "considerarsi": "consider", "considerata": "consider", "considerate": "consider", "considerati": "consider", "considerato": "consider", "consideravan": "consideravan", "considerazion": "considerazion", "considerazione": "consider", "considerazioni": "consider", "considerevole": "considerevol", "consideri": "consider", "consideriamo": "consider", "considerino": "considerin", "considero": "consider", "consigli": "consigl", "consiglia": "consigl", "consigliano": "consigl", "consigliare": "consigl", "consigliarmi": "consigl", "consigliaron": "consigliaron", "consigliata": "consigl", "consigliati": "consigl", "consigliato": "consigl", "consigliava": "consigl", "consigliera": "consiglier", "consigliere": "consigl", "consiglieri": "consiglier", "consiglio": "consigl", "consigliò": "consigl", "consigliori": "consiglior", "consimili": "consimil", "consiste": "consist", "consistente": "consistent", "consistenti": "consistent", "consistenza": "consistent", "consisteva": "consist", "consistevano": "consist", "conso": "cons", "consob": "consob", "consociativi": "consoc", "consociativo": "consoc", "consolando": "consol", "consolante": "consol", "consolarci": "consol", "consolare": "consol", "consolarlo": "consol", "consolarti": "consol", "consolata": "consol", "consolatela": "consolatel", "consolatevi": "consolat", "consolatione": "consolation", "consolazione": "consol", "consolazioni": "consol", "console": "consol", "consolidamento": "consolid", "consolidandosi": "consolid", "consolidata": "consolid", "consolidati": "consolid", "consolidato": "consolid", "consolle": "consoll", "consolò": "consol", "consonanti": "conson", "consonanza": "conson", "consone": "conson", "consono": "cons", "consorte": "consort", "consorti": "consort", "consorzi": "consorz", "consorzio": "consorz", "constatare": "constat", "constatarlo": "constat", "constatazione": "constat", "consterà": "const", "consuenze": "consuenz", "consueta": "consuet", "consueti": "consuet", "consueto": "consuet", "consuetudine": "consuetudin", "consuetudini": "consuetudin", "consulenti": "consulent", "consulenza": "consulent", "consulenze": "consulent", "consulta": "consult", "consultar": "consult", "consultare": "consult", "consultarlo": "consult", "consultata": "consult", "consultati": "consult", "consultato": "consult", "consultazione": "consult", "consultazioni": "consult", "consulte": "consult", "consultivo": "consult", "consulto": "consult", "consuma": "consum", "consumano": "consum", "consumare": "consum", "consumata": "consum", "consumate": "consum", "consumati": "consum", "consumato": "consum", "consumatore": "consum", "consumatori": "consum", "consumavano": "consum", "consumazioni": "consum", "consumerà": "consum", "consumi": "consum", "consumo": "consum", "consunta": "consunt", "consunte": "consunt", "cont": "cont", "conta": "cont", "contabile": "contabil", "contadina": "contadin", "contadine": "contadin", "contadinesca": "contadinesc", "contadini": "contadin", "contadino": "contadin", "contadinotta": "contadinott", "contado": "contad", "contaggioso": "contagg", "contagi": "contag", "contagiata": "contag", "contagio": "contag", "contagiosa": "contag", "contagiosi": "contag", "contagioso": "contag", "containers": "containers", "contaminata": "contamin", "contan": "contan", "contando": "cont", "contano": "cont", "contante": "contant", "contanti": "contant", "contar": "cont", "contare": "cont", "contarlo": "cont", "contarsi": "cont", "contarvi": "cont", "contasse": "cont", "contata": "cont", "contate": "cont", "contato": "cont", "contattare": "contatt", "contattarla": "contatt", "contattato": "contatt", "contatti": "contatt", "contatto": "contatt", "contava": "cont", "conte": "cont", "contea": "conte", "contegno": "contegn", "contegnosa": "contegn", "contegnoso": "contegn", "contemplando": "contempl", "contemplar": "contempl", "contemplare": "contempl", "contemplarlo": "contempl", "contemplate": "contempl", "contemplativa": "contempl", "contemplato": "contempl", "contemplazione": "contempl", "contemplazioni": "contempl", "contempo": "contemp", "contemporanea": "contemporane", "contemporaneamente": "contemporan", "contemporanee": "contemporane", "contemporanei": "contemporane", "contemporaneità": "contemporan", "contemporaneo": "contemporane", "contendenti": "contendent", "contendevano": "contend", "contenente": "contenent", "contener": "contener", "contenere": "conten", "contenerla": "conten", "contenersi": "conten", "conteneva": "conten", "contenga": "conteng", "contengono": "conteng", "contenimento": "conten", "contenitore": "contenitor", "contenitori": "contenitor", "contenta": "content", "contentare": "content", "contentarli": "content", "contentarlo": "content", "contentassi": "content", "contentato": "content", "contentava": "content", "contentavano": "content", "contente": "content", "contentezza": "contentezz", "contenti": "content", "contentino": "contentin", "contentissimo": "contentissim", "contento": "content", "contentò": "content", "contenuta": "conten", "contenute": "conten", "contenuti": "conten", "contenuto": "conten", "contenzioso": "contenz", "conterà": "cont", "conterrà": "conterr", "conterranei": "conterrane", "contesa": "contes", "contese": "contes", "contesta": "contest", "contestabile": "contest", "contestando": "contest", "contestano": "contest", "contestare": "contest", "contestata": "contest", "contestati": "contest", "contestato": "contest", "contestatori": "contest", "contestatrici": "contest", "contestava": "contest", "contestazione": "contest", "contestazioni": "contest", "contesto": "contest", "contestualmente": "contestual", "conti": "cont", "contiamo": "cont", "conticello": "conticell", "conticino": "conticin", "contiene": "contien", "contigua": "contigu", "contigui": "contigu", "contiguità": "contigu", "contiguo": "contigu", "continentale": "continental", "continente": "continent", "continenti": "continent", "contingente": "contingent", "contingenti": "contingent", "continua": "continu", "continuamente": "continu", "continuando": "continu", "continuano": "continu", "continuar": "continu", "continuare": "continu", "continuarla": "continu", "continuaron": "continuaron", "continuarono": "continu", "continuassero": "continu", "continuata": "continu", "continuato": "continu", "continuava": "continu", "continuavano": "continu", "continuazione": "continu", "continue": "continu", "continuerà": "continu", "continueranno": "continu", "continuerebbe": "continu", "continueremo": "continu", "continuerò": "continu", "continui": "continu", "continuiamo": "continuiam", "continuità": "continu", "continuo": "continu", "continuò": "continu", "conto": "cont", "contò": "cont", "contornandosi": "contorn", "contorni": "contorn", "contorno": "contorn", "contorte": "contort", "contovivo": "contov", "contr": "contr", "contra": "contr", "contrabbandieri": "contrabbandier", "contraccambiare": "contraccamb", "contraccambiava": "contraccamb", "contraccambio": "contraccamb", "contraccettivi": "contraccett", "contrada": "contrad", "contraddette": "contraddett", "contraddica": "contradd", "contraddice": "contradd", "contraddicesse": "contraddicess", "contraddire": "contradd", "contraddirgli": "contradd", "contraddirlo": "contradd", "contraddittori": "contraddittor", "contraddittorie": "contraddittor", "contraddittorio": "contraddittor", "contraddizione": "contraddizion", "contraddizioni": "contraddizion", "contraddote": "contraddot", "contrae": "contra", "contraendo": "contr", "contraenti": "contraent", "contraesse": "contraess", "contraeva": "contr", "contraffaceva": "contraffac", "contraffacienti": "contraffacient", "contraffanno": "contraffann", "contrafforti": "contraffort", "contrammina": "contrammin", "contrappesare": "contrappes", "contrappesato": "contrappes", "contrappeso": "contrappes", "contrappone": "contrappon", "contrapponevan": "contrapponevan", "contrapporci": "contrapporc", "contrapporre": "contrapporr", "contrapposizione": "contrapposizion", "contrapposizioni": "contrapposizion", "contrapposta": "contrappost", "contrapposti": "contrappost", "contrapposto": "contrappost", "contrari": "contrar", "contraria": "contrar", "contrariamente": "contrar", "contrarie": "contrar", "contrarietà": "contrariet", "contrario": "contrar", "contrassegni": "contrassegn", "contrassegno": "contrassegn", "contrastando": "contrast", "contrastanti": "contrast", "contrastar": "contrast", "contrastare": "contrast", "contrastata": "contrast", "contrastate": "contrast", "contrastati": "contrast", "contrastato": "contrast", "contrastavano": "contrast", "contrasti": "contrast", "contrasto": "contrast", "contratta": "contratt", "contrattacco": "contrattacc", "contrattazione": "contratt", "contrattazioni": "contratt", "contratte": "contratt", "contrattempi": "contrattemp", "contratti": "contratt", "contratto": "contratt", "contrattuale": "contrattual", "contrattuali": "contrattual", "contravvenire": "contravven", "contravventori": "contravventor", "contravviene": "contravvien", "contrazione": "contrazion", "contrazioni": "contrazion", "contribuenti": "contribuent", "contribuirà": "contribu", "contribuire": "contribu", "contribuiscano": "contribu", "contribuisce": "contribu", "contribuito": "contribu", "contribuiva": "contribu", "contribuivan": "contribuivan", "contributi": "contrib", "contributive": "contribut", "contributo": "contrib", "contrista": "contrist", "contristar": "contrist", "contristare": "contrist", "contristata": "contrist", "contristato": "contrist", "contrita": "contr", "contro": "contr", "contrò": "contr", "controbalzo": "controbalz", "controcanto": "controcant", "controcorrente": "controcorrent", "controdomande": "controdomand", "controlla": "controll", "controllano": "controll", "controllare": "controll", "controllarlo": "controll", "controllata": "controll", "controllate": "controll", "controllato": "controll", "controllava": "controll", "controllavano": "controll", "controllerano": "controller", "controlli": "controll", "controllo": "controll", "controllori": "controllor", "controparte": "contropart", "contropiede": "contropied", "controtempo": "controtemp", "controtendenza": "controtendent", "controverifiche": "controverif", "controversa": "controvers", "controverse": "controvers", "controversi": "controv", "controversie": "controvers", "controverso": "controvers", "controvoglia": "controvogl", "conttato": "contt", "contumacia": "contumac", "conturbata": "conturb", "conturbato": "conturb", "contusione": "contusion", "conueniente": "conuenient", "convalescente": "convalescent", "convalescenti": "convalescent", "convalescenza": "convalescent", "convalidato": "convalid", "convalide": "convalid", "convegno": "convegn", "convenendo": "conven", "convenevole": "convenevol", "convenevolmente": "convenevol", "convenga": "conveng", "convengo": "conveng", "convengono": "conveng", "conveniente": "convenient", "convenienti": "convenient", "convenienza": "convenient", "convenire": "conven", "convenisse": "conveniss", "conveniva": "conven", "convenivano": "conven", "convenne": "convenn", "conventi": "convent", "convention": "convention", "convento": "convent", "convenuta": "conven", "convenuti": "conven", "convenuto": "conven", "convenzionale": "convenzional", "convenzionali": "convenzional", "convenzione": "convenzion", "convenzioni": "convenzion", "convergenza": "convergent", "convergenze": "convergent", "converrà": "converr", "conversa": "convers", "conversando": "convers", "conversato": "convers", "conversazione": "convers", "conversazioni": "convers", "converse": "convers", "conversione": "conversion", "convert": "convert", "convertibilità": "convertibil", "convertirono": "convert", "convertito": "convert", "convertono": "convert", "convesso": "convess", "convien": "convien", "conviene": "convien", "convincano": "convinc", "convincente": "convincent", "convincer": "convincer", "convincere": "convinc", "convincerla": "convinc", "convincerli": "convinc", "convincerlo": "convinc", "convincimento": "convinc", "convinta": "convint", "convinti": "convint", "convinto": "convint", "convinzione": "convinzion", "convinzioni": "convinzion", "convitante": "convit", "convitati": "convit", "convitato": "convit", "convito": "conv", "convivere": "conviv", "conviviali": "convivial", "convivio": "conviv", "convivono": "conviv", "convoca": "convoc", "convocare": "convoc", "convocata": "convoc", "convocate": "convoc", "convocati": "convoc", "convocato": "convoc", "convocazione": "convoc", "convocazioni": "convoc", "convogli": "convogl", "convoglio": "convogl", "convulsa": "convuls", "convulsiva": "convuls", "coodinatori": "coodin", "cooiperazione": "cooiper", "cooman": "cooman", "coonestare": "coonest", "coop": "coop", "cooperare": "cooper", "cooperativa": "cooper", "cooperative": "cooper", "cooperativo": "cooper", "cooperato": "cooper", "cooperatore": "cooper", "cooperazione": "cooper", "cooperò": "coop", "coopi": "coop", "coopinvest": "coopinvest", "cooprend": "cooprend", "cooptazione": "cooptazion", "coordina": "coordin", "coordinamento": "coordin", "coordinando": "coordin", "coordinare": "coordin", "coordinata": "coordin", "coordinate": "coordin", "coordinati": "coordin", "coordinatore": "coordin", "coordinatori": "coordin", "coordinazione": "coordin", "copenaghen": "copenaghen", "coperatura": "coperatur", "coperchi": "coperc", "coperta": "copert", "copertamente": "copert", "coperte": "copert", "coperti": "cop", "copertina": "copertin", "coperto": "copert", "copertura": "copertur", "coperturà": "copertur", "copia": "cop", "copiare": "cop", "copiator": "copiator", "copie": "cop", "copiò": "cop", "copione": "copion", "coppa": "copp", "coppia": "copp", "coppie": "copp", "coppola": "coppol", "coprano": "copr", "copre": "copr", "coprete": "copr", "coprì": "copr", "coprire": "copr", "copriremo": "copr", "copriva": "copr", "coproduzione": "coprodu", "coprono": "copr", "cor": "cor", "coraggio": "coragg", "coraggiosa": "coragg", "coraggiose": "coragg", "coraggiosi": "coragg", "coraggioso": "coragg", "corale": "coral", "corato": "cor", "corazza": "corazz", "corazzati": "corazz", "corbelleria": "corbeller", "corbellerie": "corbeller", "corbucci": "corbucc", "corcione": "corcion", "corda": "cord", "cordate": "cord", "corde": "cord", "cordellina": "cordellin", "cordiale": "cordial", "cordialità": "cordial", "cordialmente": "cordial", "cordicella": "cordicell", "cordigliera": "cordiglier", "cordoglio": "cordogl", "cordone": "cordon", "cordova": "cordov", "cordusio": "cordus", "core": "cor", "coreano": "cor", "coreografie": "coreograf", "coretto": "corett", "cori": "cor", "corini": "corin", "corino": "corin", "corleone": "corleon", "corna": "corn", "cornacchia": "cornacc", "cornacchie": "cornacc", "cornacchini": "cornacchin", "corner": "corner", "cornia": "corn", "cornice": "cornic", "corno": "corn", "coro": "cor", "corona": "coron", "coronar": "coron", "coronarici": "coronar", "coronato": "coron", "corone": "coron", "corp": "corp", "corpaccio": "corpacc", "corpi": "corp", "corpo": "corp", "corporale": "corporal", "corporali": "corporal", "corporate": "corpor", "corporation": "corporation", "corporazione": "corpor", "corr": "corr", "corra": "corr", "corradini": "corradin", "corrado": "corrad", "corre": "corr", "corredata": "corred", "corredate": "corred", "corredato": "corred", "corredo": "corred", "corregga": "corregg", "corregge": "corregg", "correggendole": "corregg", "correggere": "corregg", "correggimi": "correggim", "correndo": "corr", "corrente": "corrent", "correnti": "corrent", "correr": "correr", "correranno": "corr", "correre": "corr", "correrebber": "correrebber", "corrergli": "corr", "correrò": "corr", "corresponsione": "corresponsion", "corresse": "corress", "correte": "corr", "corretta": "corrett", "corretteza": "correttez", "correttezza": "correttezz", "corretti": "corrett", "correttissimo": "correttissim", "correttiva": "corrett", "corretto": "corrett", "correttrice": "correttr", "correva": "corr", "correvan": "correvan", "correvano": "corr", "correzione": "correzion", "correzioni": "correzion", "corridoi": "corrido", "corridoio": "corridoi", "corriere": "corr", "corrierè": "corrier", "corrisopondono": "corrisopond", "corrispettivo": "corrispett", "corrisponda": "corrispond", "corrisponde": "corrispond", "corrispondendo": "corrispond", "corrispondente": "corrispondent", "corrispondenti": "corrispondent", "corrispondenza": "corrispondent", "corrispondenze": "corrispondent", "corrispondere": "corrispond", "corrispondeva": "corrispond", "corrispondono": "corrispond", "corrisposero": "corrisposer", "corrisposta": "corrispost", "corrisposto": "corrispost", "corro": "corr", "corrompevano": "corromp", "corron": "corron", "corrono": "corr", "corrotti": "corrott", "corrusco": "corrusc", "corruttivi": "corrutt", "corruzione": "corruzion", "corrwezione": "corrwezion", "corsa": "cors", "corse": "cors", "corserelle": "corserell", "corsero": "corser", "corsi": "cors", "corsia": "cors", "corsìa": "corsì", "corsica": "corsic", "corsini": "corsin", "corsivo": "cors", "corso": "cors", "corta": "cort", "corte": "cort", "cortecce": "cortecc", "corteggiata": "cortegg", "corteggiato": "cortegg", "corteggio": "cortegg", "cortenuova": "cortenuov", "corteo": "corte", "cortese": "cortes", "cortesemente": "cortes", "cortesia": "cortes", "corti": "cort", "cortigianelli": "cortigianell", "cortigiani": "cortigian", "cortile": "cortil", "cortiletto": "cortilett", "cortili": "cortil", "cortina": "cortin", "corto": "cort", "corvaccio": "corvacc", "corvetta": "corvett", "corvi": "corv", "corvo": "corv", "cos": "cos", "cosa": "cos", "cosce": "cosc", "cosche": "cosc", "coscia": "cosc", "cosciali": "coscial", "coscienti": "coscient", "coscienza": "coscienz", "cose": "cos", "cosenza": "cosenz", "cosette": "cosett", "cosi": "cos", "così": "cos", "cosiddetta": "cosiddett", "cosiddette": "cosiddett", "cosiddetti": "cosiddett", "cosiddetto": "cosiddett", "cosimi": "cosim", "cosimo": "cosim", "cospetto": "cospett", "cospicua": "cospicu", "cospicue": "cospicu", "cospicui": "cospicu", "cospicuo": "cospicu", "cospiravano": "cospir", "cossato": "coss", "cossiga": "cossig", "cossutta": "cossutt", "costa": "cost", "costacurta": "costacurt", "costante": "costant", "costantemente": "costant", "costanti": "costant", "costantino": "costantin", "costanza": "costanz", "costanzo": "costanz", "costare": "cost", "costarica": "costar", "costaricano": "costaric", "costaron": "costaron", "costasse": "cost", "costata": "cost", "costato": "cost", "coste": "cost", "costeggia": "costegg", "costeggiando": "costegg", "costeggiare": "costegg", "costeggiarla": "costegg", "costeggiate": "costegg", "costeggiava": "costegg", "costei": "coste", "costerebbe": "cost", "costernata": "costern", "costernati": "costern", "costernazione": "costern", "costi": "cost", "costì": "cost", "costiera": "costier", "costiere": "cost", "costiero": "costier", "costituendo": "costitu", "costituente": "costituent", "costituirà": "costitu", "costituiranno": "costitu", "costituire": "costitu", "costituirsi": "costitu", "costituisca": "costitu", "costituisce": "costitu", "costituiscono": "costitu", "costituisse": "costituiss", "costituita": "costitu", "costituite": "costitu", "costituiti": "costitu", "costituitisi": "costituitis", "costituito": "costitu", "costitutiva": "costitut", "costitutivi": "costitut", "costituzionale": "costituzional", "costituzionali": "costituzional", "costituzionalisti": "costituzional", "costituzione": "costitu", "costo": "cost", "costò": "cost", "costola": "costol", "costole": "costol", "costoro": "costor", "costosa": "costos", "costosi": "costos", "costretta": "costrett", "costrette": "costrett", "costretti": "costrett", "costretto": "costrett", "costringe": "costring", "costringendo": "costring", "costringendoci": "costring", "costringerà": "costring", "costringerci": "costring", "costringere": "costring", "costringerli": "costring", "costringerlo": "costring", "costringevano": "costring", "costringono": "costring", "costrinse": "costrins", "costruiranno": "costru", "costruire": "costru", "costruirlo": "costru", "costruita": "costru", "costruito": "costru", "costrutte": "costrutt", "costruttiva": "costrutt", "costruttivo": "costrutt", "costrutto": "costrutt", "costruttori": "costruttor", "costruzione": "costruzion", "costruzioni": "costruzion", "costui": "costu", "costumato": "costum", "costumavan": "costumavan", "costume": "costum", "costumi": "costum", "cosv": "cosv", "cosworth": "cosworth", "cot": "cot", "cotale": "cotal", "cotillon": "cotillon", "cotone": "coton", "cotta": "cott", "council": "council", "coupon": "coupon", "courier": "courier", "courmaosta": "courmaost", "courmayeur": "courmayeur", "couto": "cout", "cova": "cov", "covando": "cov", "covano": "cov", "covasse": "cov", "coventry": "coventry", "covile": "covil", "covili": "covil", "covo": "cov", "coyote": "coyot", "cozzar": "cozz", "cozzare": "cozz", "cozzava": "cozz", "cozzi": "cozz", "cozzo": "cozz", "cp": "cp", "cpl": "cpl", "cr": "cr", "cra": "cra", "crack": "crack", "cravatte": "cravatt", "cravero": "craver", "craxi": "crax", "crea": "cre", "creando": "cre", "creano": "cre", "creanza": "creanz", "creanze": "creanz", "creare": "cre", "creasse": "cre", "creata": "cre", "creatasi": "creatas", "create": "cre", "creati": "cre", "creato": "cre", "creatore": "creator", "creatori": "creator", "creatura": "creatur", "creature": "creatur", "creaturina": "creaturin", "creazione": "creazion", "crebbe": "crebb", "crebbero": "crebber", "cred": "cred", "creda": "cred", "credano": "cred", "crede": "cred", "credé": "cred", "credendo": "cred", "credenti": "credent", "credenza": "credenz", "creder": "creder", "crederanno": "cred", "crederci": "cred", "credere": "cred", "crederebbe": "cred", "crederei": "cred", "credereste": "cred", "crederlo": "cred", "crederne": "cred", "crederti": "cred", "credesse": "credess", "credessero": "cred", "credeste": "credest", "credete": "cred", "credette": "credett", "credeva": "cred", "credevan": "credevan", "credevano": "cred", "credevo": "cred", "credi": "cred", "crediam": "crediam", "crediamo": "cred", "crediate": "cred", "credibile": "credibil", "credibili": "credibil", "credibilità": "credibil", "crediop": "crediop", "credit": "credit", "creditanstalt": "creditanstalt", "crediti": "cred", "creditizie": "creditiz", "creditizio": "creditiz", "credito": "cred", "creditore": "creditor", "creditori": "creditor", "creditwest": "creditwest", "credo": "cred", "credono": "cred", "credula": "credul", "credulità": "credul", "creduta": "cred", "credute": "cred", "creduto": "cred", "creeranno": "cre", "crei": "cre", "creino": "crein", "crema": "crem", "cremapergo": "cremaperg", "cremlino": "cremlin", "cremona": "cremon", "cremonese": "cremones", "creò": "cre", "crepacci": "crepacc", "crepacore": "crepacor", "crepacuore": "crepacuor", "crepaldi": "crepald", "crepava": "crep", "crepi": "crep", "crepuscolo": "crepuscol", "crerdibili": "crerdibil", "cresc": "cresc", "cresce": "cresc", "crescendo": "cresc", "crescente": "crescent", "crescenti": "crescent", "crescer": "crescer", "crescerà": "cresc", "crescere": "cresc", "crescesse": "crescess", "cresceva": "cresc", "crescita": "cresc", "cresciuta": "cresc", "cresciute": "cresc", "cresciuti": "cresc", "cresciuto": "cresc", "crescono": "cresc", "cresece": "cresec", "crespe": "cresp", "cresta": "crest", "creta": "cret", "cretina": "cretin", "crevalcore": "crevalcor", "crimen": "crimen", "criminale": "criminal", "criminalè": "criminal", "criminali": "criminal", "criminalità": "criminal", "criminalizzare": "criminalizz", "criminalpol": "criminalpol", "crimine": "crimin", "crimini": "crimin", "criniera": "crinier", "criniti": "crin", "crippa": "cripp", "crisi": "cris", "cristalli": "cristall", "cristallini": "cristallin", "cristallo": "cristall", "cristiana": "cristian", "cristiane": "cristian", "cristianesimo": "cristianesim", "cristiani": "cristian", "cristianissimo": "cristianissim", "cristianità": "cristian", "cristiano": "crist", "cristina": "cristin", "cristo": "crist", "cristobal": "cristobal", "cristoforo": "cristofor", "criteri": "criter", "criterio": "criter", "critica": "critic", "criticando": "critic", "criticar": "critic", "criticare": "critic", "criticarlo": "critic", "criticata": "critic", "criticato": "critic", "critiche": "critic", "critichi": "critic", "critici": "critic", "critico": "critic", "crivellata": "crivell", "cro": "cro", "croata": "cro", "croati": "cro", "croato": "cro", "croazia": "croaz", "croc": "croc", "crocchi": "crocc", "crocchia": "crocc", "crocchio": "crocc", "croce": "croc", "croci": "croc", "crociata": "croc", "crociate": "croc", "crocicchi": "crocicc", "crocicchio": "crocicc", "crociera": "crocier", "crociere": "croc", "crocieristico": "crocierist", "crocifero": "crocifer", "crocifisso": "crocifiss", "crollare": "croll", "crollava": "croll", "crollera": "croller", "crollo": "croll", "cromosomi": "cromosom", "cronaca": "cronac", "cronache": "cronac", "cronica": "cronic", "cronico": "cronic", "cronista": "cronist", "cronisti": "cronist", "crono": "cron", "cronologico": "cronolog", "cronometro": "cronometr", "cronoscalata": "cronoscal", "cross": "cross", "crossato": "cross", "croupier": "croupier", "crrr": "crrr", "crs": "crs", "crt": "crt", "cruccio": "crucc", "cruciale": "crucial", "cruciali": "crucial", "crucis": "crucis", "crude": "crud", "crudel": "crudel", "crudele": "crudel", "crudeli": "crudel", "crudelmente": "crudel", "crudeltà": "crudelt", "cruijff": "cruijff", "cruiser": "cruiser", "crusca": "crusc", "cruscotto": "cruscott", "cruyff": "cruyff", "cruz": "cruz", "crystal": "crystal", "cs": "cs", "csi": "csi", "csil": "csil", "csm": "csm", "csp": "csp", "css": "css", "ct": "ct", "cte": "cte", "cto": "cto", "ctz": "ctz", "ctznon": "ctznon", "cuahutemoc": "cuahutemoc", "cuauhtemoc": "cuauhtemoc", "cubi": "cub", "cucca": "cucc", "cuccagna": "cuccagn", "cucchiaiata": "cucchiai", "cucchiaio": "cucchiai", "cuccia": "cucc", "cucendo": "cuc", "cucina": "cucin", "cucinieri": "cucinier", "cucire": "cuc", "cucirini": "cucirin", "cuciti": "cuc", "cuciva": "cuc", "cugina": "cugin", "cugini": "cugin", "cugino": "cugin", "cuginò": "cugin", "cui": "cui", "cuicchi": "cuicc", "cukor": "cukor", "culminata": "culmin", "culmine": "culmin", "culmineranno": "culmin", "culpable": "culpabl", "culto": "cult", "cultura": "cultur", "culturale": "cultural", "culturali": "cultural", "culturalmente": "cultural", "culture": "cultur", "cultus": "cultus", "cumuli": "cumul", "cumulo": "cumul", "cuneo": "cune", "cuocere": "cuoc", "cuoco": "cuoc", "cuoia": "cuoi", "cuoio": "cuoi", "cuor": "cuor", "cuore": "cuor", "cuorè": "cuor", "cuori": "cuor", "cupa": "cup", "cupi": "cup", "cupidigia": "cupidig", "cupo": "cup", "cupola": "cupol", "cupole": "cupol", "cura": "cur", "curan": "curan", "curando": "cur", "curarci": "cur", "curare": "cur", "curarè": "curar", "curarsi": "cur", "curas": "curas", "curasse": "cur", "curati": "cur", "curato": "cur", "curatore": "curator", "curatori": "curator", "curava": "cur", "curavano": "cur", "cure": "cur", "curerebbe": "cur", "curi": "cur", "curia": "cur", "curiosa": "curios", "curiose": "curios", "curiosi": "curios", "curiosita": "curios", "curiosità": "curios", "curioso": "curios", "curo": "cur", "curò": "cur", "curti": "curt", "curtis": "curtis", "curva": "curv", "curve": "curv", "curvi": "curv", "curviamo": "curv", "curvo": "curv", "cus": "cus", "cusani": "cusan", "cusin": "cusin", "custode": "custod", "custodia": "custod", "custodirà": "custod", "custodire": "custod", "custodirla": "custod", "custodite": "custod", "cut": "cut", "cuthbert": "cuthbert", "cutigliano": "cutigl", "cutrufo": "cutruf", "cutter": "cutter", "cv": "cv", "cyanamide": "cyanamid", "cynthia": "cynthi", "czudaj": "czudaj", "d": "d", "da": "da", "dà": "dà", "dabben": "dabben", "dabbene": "dabben", "dabrecan": "dabrecan", "dacca": "dacc", "dadi": "dad", "daghe": "dagh", "dagl": "dagl", "dagli": "dagl", "dàgli": "dàgl", "dai": "dai", "daily": "daily", "daisuke": "daisuk", "dajal": "dajal", "dal": "dal", "dall": "dall", "dalla": "dall", "dallas": "dallas", "dalle": "dall", "dàlli": "dàll", "dallo": "dall", "dalmine": "dalmin", "dam": "dam", "dama": "dam", "dame": "dam", "damia": "dam", "damiani": "damian", "damiano": "dam", "dammelo": "dammel", "dammi": "damm", "dan": "dan", "danaos": "danaos", "danari": "danar", "danaro": "danar", "dance": "danc", "dancer": "dancer", "dando": "dand", "dandogli": "dandogl", "dandola": "dandol", "dandole": "dandol", "dandomi": "dandom", "dandosi": "dandos", "danero": "daner", "danese": "danes", "dani": "dan", "daniel": "daniel", "daniela": "daniel", "daniele": "daniel", "danieli": "daniel", "danilo": "danil", "danimarca": "danimarc", "dannata": "dann", "dannato": "dann", "danneggia": "dannegg", "danneggiano": "dannegg", "danneggiare": "dannegg", "danneggiata": "dannegg", "danneggiate": "dannegg", "danneggiati": "dannegg", "danneggiato": "dannegg", "danni": "dann", "danno": "dann", "dànno": "dànn", "dannosa": "dannos", "dannoso": "dannos", "dante": "dant", "danubio": "danub", "danyon": "danyon", "danza": "danz", "danzanti": "danzant", "dappiè": "dapp", "dappocaggine": "dappocaggin", "dapprima": "dapprim", "dar": "dar", "darà": "dar", "daranno": "darann", "dare": "dar", "darebbe": "darebb", "darei": "dare", "daremmo": "dar", "daremo": "darem", "darete": "dar", "dargli": "dargl", "dargliele": "dargliel", "dargliene": "darglien", "daria": "dar", "dario": "dar", "darla": "darl", "darle": "darl", "darlo": "darl", "darmene": "darmen", "darmi": "darm", "darne": "darn", "darò": "dar", "darsene": "darsen", "darsi": "dars", "darti": "dart", "darvi": "darv", "daryl": "daryl", "data": "dat", "datagli": "datagl", "dataria": "datar", "date": "dat", "datè": "dat", "dateci": "datec", "dategli": "dategl", "datemele": "datemel", "datemi": "datem", "dati": "dat", "dato": "dat", "datogli": "datogl", "datori": "dator", "datoriali": "datorial", "datrice": "datric", "dava": "dav", "davan": "davan", "davano": "dav", "davanti": "davant", "davanzale": "davanzal", "davanzali": "davanzal", "david": "david", "davide": "david", "davidson": "davidson", "davigo": "davig", "davitashvili": "davitashvil", "davo": "dav", "davvero": "davver", "dawson": "dawson", "dax": "dax", "day": "day", "daya": "day", "dayal": "dayal", "dazi": "daz", "dc": "dc", "dd": "dd", "ddla": "ddla", "de": "de", "deaglio": "deagl", "deal": "deal", "deb": "deb", "debba": "debb", "debbano": "debb", "debbie": "debb", "debbo": "debb", "debbono": "debb", "deben": "deben", "debita": "deb", "debite": "deb", "debiti": "deb", "debito": "deb", "debitore": "debitor", "debitoria": "debitor", "debitrice": "debitr", "debituccio": "debitucc", "debol": "debol", "debole": "debol", "debolezza": "debolezz", "debolezze": "debolezz", "deboli": "debol", "debolmente": "debol", "deborah": "deborah", "debuerat": "debuerat", "dec": "dec", "decade": "decad", "decadenza": "decadent", "decadere": "decad", "decadis": "decadis", "decalogo": "decalog", "deceduta": "deced", "deceduto": "deced", "decembre": "decembr", "decennale": "decennal", "decenni": "decenn", "decente": "decent", "decentramento": "decentr", "decentrata": "decentr", "decentrato": "decentr", "decesso": "decess", "decide": "decid", "decidendo": "decid", "decider": "decider", "deciderà": "decid", "decidere": "decid", "decidersi": "decid", "decidesse": "decidess", "decidessimo": "decidessim", "decideva": "decid", "decidevano": "decid", "decidono": "decid", "decifrare": "decifr", "decima": "decim", "decimata": "decim", "decimato": "decim", "decimo": "decim", "decina": "decin", "decine": "decin", "decisa": "decis", "decisamente": "decis", "decise": "decis", "decisi": "decis", "decisionali": "decisional", "decisione": "decision", "decisioni": "decision", "decisiva": "decis", "decisivi": "decis", "decisivo": "decis", "deciso": "decis", "deckert": "deckert", "declamava": "declam", "declamazioni": "declam", "declino": "declin", "decolla": "decoll", "decollano": "decoll", "decollarono": "decoll", "decollati": "decoll", "decoro": "decor", "decorosa": "decor", "decoroso": "decor", "decremento": "decrement", "decrepite": "decrep", "decretare": "decret", "decretate": "decret", "decretati": "decret", "decretato": "decret", "decretazione": "decret", "decreti": "decret", "decreto": "decret", "decsioni": "decsion", "decurioni": "decurion", "dedica": "dedic", "dedicano": "dedic", "dedicarsi": "dedic", "dedicata": "dedic", "dedicate": "dedic", "dedicati": "dedic", "dedicato": "dedic", "dedicatosi": "dedicat", "dedicava": "dedic", "dedicò": "dedic", "dedizione": "dedizion", "dedotti": "dedott", "deduciamo": "deduc", "deducibilità": "deducibil", "deduttivo": "dedutt", "def": "def", "defence": "defenc", "deferente": "deferent", "deferenza": "deferent", "deferimento": "defer", "deffinire": "deffin", "defformità": "defform", "deficit": "deficit", "deficitari": "deficitar", "defilata": "defil", "definendo": "defin", "definendola": "defin", "definendoli": "defin", "definendolo": "defin", "definendosi": "defin", "definire": "defin", "definisca": "defin", "definisce": "defin", "definisco": "defin", "definiscono": "defin", "definita": "defin", "definite": "defin", "definiti": "defin", "definitiva": "definit", "definitivamente": "definit", "definitive": "definit", "definitivi": "definit", "definitivo": "definit", "definito": "defin", "definizione": "definizion", "definizioni": "definizion", "definzione": "definzion", "deflagrata": "deflagr", "deflagrazione": "deflagr", "deflusso": "defluss", "deformandone": "deform", "deformare": "deform", "deforme": "deform", "deformi": "deform", "defunto": "defunt", "degenerazione": "degener", "degl": "degl", "degli": "degl", "degna": "degn", "degnamente": "degn", "degnazione": "degnazion", "degne": "degn", "degni": "degn", "degnino": "degnin", "degno": "degn", "degradando": "degrad", "degradati": "degrad", "degrado": "degrad", "dei": "dei", "deì": "deì", "deiezione": "deiezion", "deisel": "deisel", "deja": "dej", "del": "del", "dela": "del", "delatore": "delator", "dele": "del", "delecour": "delecour", "delega": "deleg", "delegati": "deleg", "delegato": "deleg", "delegazione": "deleg", "delegazioni": "deleg", "delel": "delel", "deleplanke": "deleplank", "delhi": "delh", "delhì": "delh", "delibera": "deliber", "deliberare": "deliber", "deliberatamente": "deliberat", "deliberati": "deliber", "deliberato": "deliber", "deliberava": "deliber", "deliberazione": "deliber", "deliberazioni": "deliber", "delibere": "delib", "deliberò": "delib", "delic": "delic", "delicata": "delic", "delicate": "delic", "delicati": "delic", "delicatissimi": "delicatissim", "delicato": "delic", "delimitazione": "delimit", "delineare": "delin", "delinearsi": "delin", "delineata": "delin", "delineati": "delin", "delineato": "delin", "delinquenti": "delinquent", "delinquere": "delinqu", "deliranti": "delir", "delirio": "delir", "delitti": "delitt", "delitto": "delitt", "delizie": "deliz", "delizioso": "deliz", "dell": "dell", "della": "dell", "dellaq": "dellaq", "dellas": "dellas", "delle": "dell", "delli": "dell", "dellla": "delll", "dello": "dell", "dellòassistenza": "dellòassistent", "delo": "del", "delon": "delon", "delrio": "delr", "delta": "delt", "deltalat": "deltalat", "deludente": "deludent", "delusa": "delus", "deluse": "delus", "delusione": "delusion", "deluso": "delus", "delvecchio": "delvecc", "demagogia": "demagog", "demagogo": "demagog", "demandando": "demand", "demandare": "demand", "demaniale": "demanial", "demaniali": "demanial", "demarcazione": "demarc", "demattè": "dematt", "demeritato": "demerit", "demi": "dem", "demma": "demm", "democratica": "democrat", "democraticamente": "democrat", "democratiche": "democrat", "democratici": "democrat", "democratico": "democrat", "democratizzazione": "democratizz", "democrazia": "democraz", "democrazià": "democraz", "democrazie": "democraz", "democristiana": "democristian", "democristiani": "democristian", "democristiano": "democrist", "demolendo": "demol", "demolire": "demol", "demoni": "demon", "demòni": "demòn", "demonio": "demon", "demy": "demy", "denaro": "denar", "deneuve": "deneuv", "denigratoria": "denigrator", "dennis": "dennis", "denominandole": "denomin", "denominata": "denomin", "denominati": "denomin", "denominato": "denomin", "denominazione": "denomin", "denotavano": "denot", "densa": "dens", "dense": "dens", "denso": "dens", "dente": "dent", "denti": "dent", "dentista": "dentist", "dentro": "dentr", "denuncia": "denunc", "denunciando": "denunc", "denunciare": "denunc", "denunciarli": "denunc", "denunciarlo": "denunc", "denunciata": "denunc", "denunciati": "denunc", "denunciato": "denunc", "denunciet": "denunciet", "denunziare": "denunz", "denunziavan": "denunziavan", "denunzie": "denunz", "deo": "deo", "deon": "deon", "deontologicamente": "deontolog", "depardieu": "depardieu", "deplora": "deplor", "deplorabile": "deplor", "deplorabili": "deplor", "deplorata": "deplor", "deplorati": "deplor", "deplorava": "deplor", "depon": "depon", "depone": "depon", "deponevano": "depon", "deponga": "depong", "deporre": "deporr", "deportare": "deport", "deportazione": "deport", "depose": "depos", "depositar": "deposit", "depositare": "deposit", "depositari": "depositar", "depositerà": "deposit", "depositi": "depos", "deposito": "depos", "deposizione": "deposizion", "deposta": "depost", "deposto": "depost", "deprendo": "depr", "depressa": "depress", "depresse": "depress", "depressive": "depress", "depurato": "depur", "depurazione": "depur", "deputata": "deput", "deputati": "deput", "deputato": "deput", "der": "der", "derby": "derby", "derelitte": "derelitt", "derelitti": "derelitt", "deride": "derid", "deriderle": "derid", "deridevan": "deridevan", "deridono": "derid", "derisa": "deris", "deriso": "deris", "deriva": "der", "derivano": "der", "derivante": "deriv", "derivanti": "deriv", "derivati": "deriv", "deriverà": "deriv", "derivi": "der", "deroga": "derog", "derogando": "derog", "derrata": "derr", "derrate": "derr", "derubata": "derub", "des": "des", "desailly": "desailly", "desario": "desar", "deschamps": "deschamps", "desconsuelo": "desconsuel", "descrisse": "descriss", "descritta": "descritt", "descritte": "descritt", "descritti": "descritt", "descritto": "descritt", "descriuendo": "descriu", "descrive": "descriv", "descrivendo": "descriv", "descriver": "descriver", "descrivere": "descriv", "descriveremo": "descriv", "descriverle": "descriv", "descriverlo": "descriv", "descriveva": "descriv", "descrizion": "descrizion", "descrizione": "descrizion", "descrizioni": "descrizion", "deserta": "desert", "deserte": "desert", "deserti": "des", "deserto": "desert", "desfosses": "desfosses", "desidera": "desider", "desiderabile": "desider", "desideran": "desideran", "desiderar": "desider", "desiderare": "desider", "desiderarla": "desider", "desiderarlo": "desider", "desiderarsi": "desider", "desiderasse": "desider", "desiderata": "desider", "desiderate": "desider", "desiderati": "desider", "desideratissimo": "desideratissim", "desiderato": "desider", "desiderava": "desider", "desideravamo": "desider", "desidererete": "desider", "desideri": "desider", "desidèri": "desidèr", "desideriamo": "desider", "desideriate": "desider", "desiderio": "desider", "desidero": "desider", "desiderò": "desid", "desiderosa": "desider", "desideroso": "desider", "designati": "design", "designato": "design", "designazioni": "design", "desinando": "desin", "desinare": "desin", "desinarono": "desin", "desinato": "desin", "desinava": "desin", "desinò": "desin", "desolata": "desol", "desolate": "desol", "desolati": "desol", "desolato": "desol", "desolazione": "desol", "despeinada": "despeinad", "desse": "dess", "dessero": "desser", "desta": "dest", "destare": "dest", "destarsi": "dest", "destasse": "dest", "destava": "dest", "destavano": "dest", "desti": "dest", "destinando": "destin", "destinano": "destin", "destinare": "destin", "destinata": "destin", "destinatari": "destinatar", "destinate": "destin", "destinati": "destin", "destinato": "destin", "destinazione": "destin", "destini": "destin", "destino": "destin", "destituito": "destitu", "desto": "dest", "destò": "dest", "destra": "destr", "destramente": "destr", "destre": "destr", "destrezza": "destrezz", "destri": "destr", "destro": "destr", "detective": "detect", "detenere": "deten", "deteneva": "deten", "deteniamo": "deten", "detentore": "detentor", "detenuta": "deten", "detenute": "deten", "detenuti": "deten", "detenuto": "deten", "detenzione": "detenzion", "deterioramento": "deterior", "determianre": "determianr", "determina": "determin", "determinante": "determin", "determinanti": "determin", "determinare": "determin", "determinata": "determin", "determinate": "determin", "determinati": "determin", "determinato": "determin", "determinazione": "determin", "determinerà": "determin", "determini": "determin", "detersivo": "deters", "detestabile": "detest", "detestare": "detest", "detestino": "detestin", "detiene": "detien", "detonatori": "deton", "detta": "dett", "dettagli": "dettagl", "dettagliate": "dettagl", "dettagliato": "dettagl", "dettaglio": "dettagl", "dettando": "dett", "dettata": "dett", "dettate": "dett", "dette": "dett", "detti": "dett", "detto": "dett", "dettò": "dett", "dettogli": "dettogl", "dettolo": "dettol", "deutsche": "deutsc", "dev": "dev", "deva": "dev", "devan": "devan", "devastano": "devast", "devastante": "devast", "devastato": "devast", "devastazion": "devastazion", "deve": "dev", "devi": "dev", "deviare": "dev", "deviata": "dev", "deviato": "dev", "deviazione": "deviazion", "devils": "devils", "devo": "dev", "devon": "devon", "devono": "dev", "devozione": "devozion", "dexterae": "dextera", "df": "df", "dg": "dg", "dges": "dges", "dgl": "dgl", "dhahran": "dhahran", "dhaka": "dhak", "dhzuna": "dhzun", "di": "di", "dì": "dì", "dia": "dia", "diabetici": "diabet", "diabolica": "diabol", "diaboliche": "diabol", "diabolici": "diabol", "diafano": "diaf", "diagnosticata": "diagnostic", "diagonale": "diagonal", "diahann": "diahann", "dialetto": "dialett", "dializzati": "dializz", "dialogare": "dialog", "dialogo": "dialog", "diametro": "diametr", "diamine": "diamin", "diamo": "diam", "diamogli": "diamogl", "diana": "dian", "diane": "dian", "diano": "dian", "diari": "diar", "diatribe": "diatrib", "diavoleria": "diavoler", "diavolerie": "diavoler", "diavoletto": "diavolett", "diavoli": "diavol", "diavolo": "diavol", "dibattano": "dibatt", "dibatte": "dibatt", "dibattendo": "dibatt", "dibattendosi": "dibatt", "dibatterà": "dibatt", "dibattere": "dibatt", "dibattersi": "dibatt", "dibatteva": "dibatt", "dibattimentale": "dibattimental", "dibattimento": "dibatt", "dibattito": "dibatt", "dibattuta": "dibatt", "dic": "dic", "dica": "dic", "dican": "dican", "dicano": "dic", "dicara": "dicar", "dicastero": "dicaster", "dice": "dic", "dicembre": "dicembr", "dicendo": "dic", "dicendogli": "dic", "dicendole": "dic", "dicendolo": "dic", "dicesse": "dicess", "dicessero": "dic", "dicessi": "dicess", "diceste": "dicest", "diceua": "diceu", "diceva": "dic", "dicevan": "dicevan", "dicevano": "dic", "dicevate": "dic", "dicevo": "dic", "dichairata": "dichair", "dichiara": "dichiar", "dichiarando": "dichiar", "dichiarare": "dichiar", "dichiararsi": "dichiar", "dichiarasse": "dichiar", "dichiarata": "dichiar", "dichiarate": "dichiar", "dichiarati": "dichiar", "dichiarato": "dichiar", "dichiarava": "dichiar", "dichiarazione": "dichiar", "dichiarazioni": "dichiar", "dichiari": "dichiar", "dichiaro": "dichiar", "dichiarò": "dichiar", "dichiazioni": "dichiazion", "dici": "dic", "diciam": "diciam", "diciamo": "dic", "diciamolo": "diciamol", "diciannovenne": "diciannovenn", "diciassettenne": "diciassettenn", "diciottenne": "diciottenn", "diciotto": "diciott", "dicitore": "dicitor", "dicitura": "dicitur", "dico": "dic", "dicon": "dicon", "dicono": "dic", "dicotomia": "dicotom", "didier": "didier", "die": "die", "dié": "diè", "dieci": "diec", "diecimila": "diecimil", "diede": "died", "diedero": "dieder", "diego": "dieg", "dieta": "diet", "dieter": "dieter", "dietologi": "dietolog", "dietologo": "dietolog", "dietro": "dietr", "dietrologie": "dietrolog", "difatti": "difatt", "difendano": "difend", "difende": "dif", "difendendo": "difend", "difenderanno": "difend", "difendere": "difend", "difenderla": "difend", "difenderle": "difend", "difenderlo": "difend", "difendermi": "difend", "difendersi": "difend", "difendeva": "difend", "difendono": "difend", "difensiva": "difens", "difensive": "difens", "difensivo": "difens", "difensore": "difensor", "difensori": "difensor", "difesa": "difes", "difese": "difes", "difesi": "difes", "difeso": "difes", "difetta": "difett", "difetti": "difett", "difetto": "difett", "difettosi": "difett", "difettucci": "difettucc", "diffamato": "diffam", "diffamazione": "diffam", "differenti": "different", "differenza": "different", "differenze": "different", "differenzia": "differenz", "differenziale": "differenzial", "differenziate": "differenz", "differenziato": "differenz", "differenziazione": "differenz", "differire": "differ", "differiscono": "differ", "differito": "differ", "difficile": "difficil", "difficili": "difficil", "difficilmente": "difficil", "difficolta": "difficolt", "difficoltà": "difficolt", "difficoltoso": "difficolt", "diffidare": "diffid", "diffidati": "diffid", "diffide": "diffid", "diffidenti": "diffident", "diffidenza": "diffident", "diffinisce": "diffin", "diffonde": "diffond", "diffondere": "diffond", "diffondersi": "diffond", "diffondeva": "diffond", "diffusa": "diffus", "diffuse": "diffus", "diffusi": "diffus", "diffusione": "diffusion", "diffuso": "diffus", "difronte": "difront", "dig": "dig", "diga": "dig", "digestione": "digestion", "diggiuna": "diggiun", "diggy": "diggy", "digitale": "digital", "digiuno": "digiun", "digli": "digl", "dignità": "dignit", "dignitari": "dignitar", "dignitoso": "dignit", "digo": "dig", "digos": "digos", "digrignando": "digrign", "digrignar": "digrign", "diht": "diht", "diktat": "diktat", "dil": "dil", "dilaniata": "dilan", "dilata": "dil", "dilatandovisi": "dilatandovis", "dilatato": "dilat", "dilavate": "dil", "dilavato": "dilav", "dilazione": "dilazion", "dilazioni": "dilazion", "dileguando": "dilegu", "dileguandosi": "dilegu", "dileguata": "dilegu", "dileguate": "dilegu", "dileguati": "dilegu", "dileguavano": "dilegu", "dilemma": "dilemm", "diletta": "dilett", "dilettante": "dilett", "dilettanti": "dilett", "dilettava": "dilett", "dilettevole": "dilettevol", "diligente": "diligent", "diligentemente": "diligent", "diligenter": "diligenter", "diligentia": "diligent", "diligentissimamente": "diligentissim", "diligenza": "diligent", "diligenze": "diligent", "dille": "dill", "dilucidare": "dilucid", "diluire": "dilu", "diluviavano": "diluv", "diluvio": "diluv", "dimagrante": "dimagr", "dimenando": "dimen", "dimenare": "dimen", "dimenarsi": "dimen", "dimenasse": "dimen", "dimenava": "dimen", "dimenò": "dimen", "dimensione": "dimension", "dimensioni": "dimension", "dimentica": "diment", "dimenticando": "dimentic", "dimenticanza": "dimentic", "dimenticare": "dimentic", "dimenticarla": "dimentic", "dimenticarli": "dimentic", "dimenticarmi": "dimentic", "dimenticarsi": "dimentic", "dimenticarvi": "dimentic", "dimenticasse": "dimentic", "dimenticata": "dimentic", "dimenticate": "dimentic", "dimenticatevi": "dimenticat", "dimenticati": "dimentic", "dimenticato": "dimentic", "dimenticava": "dimentic", "dimenticavo": "dimentic", "dimenticherebbe": "dimentic", "dimentichi": "diment", "dimentichiamo": "dimentic", "dimenticò": "dimentic", "dimessa": "dimess", "dimesso": "dimess", "dimestichezza": "dimestichezz", "dimette": "dimett", "dimettendosi": "dimett", "dimetterà": "dimett", "dimettersi": "dimett", "dimezzamento": "dimezz", "dimezzato": "dimezz", "diminuire": "diminu", "diminuisce": "diminu", "diminuissero": "diminu", "diminuita": "diminu", "diminuite": "diminu", "diminuiti": "diminu", "diminuivano": "diminu", "diminuzione": "diminu", "dimissionario": "dimissionar", "dimissioni": "dimission", "dimitri": "dimitr", "dimmi": "dimm", "dimodoche": "dimodoc", "dimodoché": "dimodoc", "dimora": "dimor", "dimorar": "dimor", "dimorare": "dimor", "dimorato": "dimor", "dimororno": "dimororn", "dimostra": "dimostr", "dimostran": "dimostran", "dimostrando": "dimostr", "dimostrano": "dimostr", "dimostrar": "dimostr", "dimostrare": "dimostr", "dimostrargli": "dimostr", "dimostrata": "dimostr", "dimostrato": "dimostr", "dimostrava": "dimostr", "dimostrazione": "dimostr", "dimostrazioni": "dimostr", "dimostrino": "dimostrin", "dimostrò": "dimostr", "din": "din", "dina": "din", "dinacci": "dinacc", "dinamica": "dinam", "dinamiche": "dinam", "dinamico": "dinam", "dinamismo": "dinam", "dinamitardo": "dinamitard", "dinanzi": "dinanz", "dinastia": "dinast", "dinelli": "dinell", "dini": "din", "dinka": "dink", "dinnanzi": "dinnanz", "dino": "din", "dintorni": "dintorn", "dio": "dio", "diocesane": "diocesan", "diocesani": "diocesan", "diocesi": "dioces", "diogene": "diogen", "dione": "dion", "dionigi": "dionig", "dios": "dios", "dipaneranno": "dipan", "dipartimenti": "dipart", "dipartimento": "dipart", "dipende": "dip", "dipendente": "dipendent", "dipendenti": "dipendent", "dipendenza": "dipendent", "dipendenze": "dipendent", "dipenderà": "dipend", "dipendere": "dipend", "dipenderebbero": "dipend", "dipendesse": "dipendess", "dipendeva": "dipend", "dipendevano": "dipend", "dipendiamo": "dipend", "dipinge": "diping", "dipinger": "dipinger", "dipingere": "diping", "dipingerlo": "diping", "dipingeva": "diping", "dipingevan": "dipingevan", "dipingono": "diping", "dipinta": "dipint", "dipintavi": "dipint", "dipinte": "dipint", "dipinto": "dipint", "dipintogli": "dipintogl", "diploma": "diplom", "diplomatica": "diplomat", "diplomatiche": "diplomat", "diplomatici": "diplomat", "diplomatico": "diplomat", "diplomazia": "diplomaz", "diplomazie": "diplomaz", "diportista": "diport", "diporto": "diport", "dipresso": "dipress", "dir": "dir", "dirà": "dir", "diradar": "dirad", "diradata": "dirad", "diramando": "diram", "diramarsi": "diram", "diramata": "diram", "diramate": "diram", "diramato": "diram", "diranno": "dirann", "dirci": "dirc", "dire": "dir", "direbbe": "direbb", "direbbeciò": "direbbec", "directa": "direct", "director": "director", "direi": "dire", "diremo": "direm", "direte": "dir", "diretta": "dirett", "direttamente": "dirett", "direttaq": "direttaq", "dirette": "dirett", "diretti": "dirett", "direttissima": "direttissim", "direttiva": "dirett", "direttive": "dirett", "direttivo": "dirett", "diretto": "dirett", "direttore": "direttor", "direttori": "direttor", "direttrici": "direttr", "direzione": "direzion", "direzioni": "direzion", "dirgli": "dirgl", "diricciar": "diricc", "dirige": "dirig", "dirigente": "dirigent", "dirigenti": "dirigent", "dirigenza": "dirigent", "dirigenziali": "dirigenzial", "dirigere": "dirig", "dirigerlo": "dirig", "dirigeva": "dirig", "dirigevano": "dirig", "dirigista": "dirig", "dirigistica": "dirigist", "dirigono": "dirig", "dirimenti": "dir", "dirimpetto": "dirimpett", "diritta": "diritt", "diritte": "diritt", "diritti": "diritt", "diritto": "diritt", "dirittona": "diritton", "dirittone": "diritton", "dirizza": "dirizz", "dirizzando": "dirizz", "dirizzatura": "dirizzatur", "dirla": "dirl", "dirle": "dirl", "dirlo": "dirl", "dirmela": "dirmel", "dirmele": "dirmel", "dirmi": "dirm", "dirne": "dirn", "dirò": "dir", "diroccata": "dirocc", "diroccato": "dirocc", "diroccavano": "dirocc", "dirottamente": "dirott", "dirotto": "dirott", "dirsi": "dirs", "dirtela": "dirtel", "dirti": "dirt", "dirupi": "dirup", "dirupo": "dirup", "dirvelo": "dirvel", "dirvene": "dirven", "dirvi": "dirv", "disabbelliscono": "disabbell", "disabitata": "disabit", "disabitate": "disabit", "disabitato": "disabit", "disaccordo": "disaccord", "disaggregare": "disaggreg", "disagi": "disag", "disagiata": "disag", "disagiati": "disag", "disagio": "disag", "disanimati": "disanim", "disanimato": "disanim", "disapprovare": "disapprov", "disapprovazione": "disapprov", "disappunto": "disappunt", "disarcionato": "disarcion", "disarma": "disarm", "disarmare": "disarm", "disarmata": "disarm", "disarmate": "disarm", "disarmato": "disarm", "disarmonia": "disarmon", "disastro": "disastr", "disastrosa": "disastr", "disastrosi": "disastr", "disastroso": "disastr", "disattenta": "disattent", "disattento": "disattent", "disattivando": "disattiv", "disavanzi": "disavanz", "disavventura": "disavventur", "discacciar": "discacc", "discacciarle": "discacc", "discacciarlo": "discacc", "discariche": "discar", "discende": "disc", "discerna": "discern", "discesa": "disces", "discesero": "disceser", "discettando": "discett", "dischetto": "dischett", "disciolto": "disciolt", "disciplina": "disciplin", "disciplinare": "disciplin", "disciplinari": "disciplinar", "disco": "disc", "discografici": "discograf", "discordanti": "discord", "discordi": "discord", "discordie": "discord", "discorre": "discorr", "discorrendo": "discorr", "discorrere": "discorr", "discorreremo": "discorr", "discorrerne": "discorr", "discorrerti": "discorr", "discorreva": "discorr", "discorrevan": "discorrevan", "discorrevo": "discorr", "discorsi": "discors", "discorso": "discors", "discoste": "discost", "discosto": "discost", "discostò": "discost", "discovery": "discovery", "discreta": "discret", "discrete": "discr", "discreti": "discret", "discreto": "discret", "discrezion": "discrezion", "discrezione": "discrezion", "discriminata": "discrimin", "discriminato": "discrimin", "discriminazione": "discrimin", "discriminazioni": "discrimin", "discuetrà": "discuetr", "discussa": "discuss", "discusse": "discuss", "discussi": "discuss", "discussione": "discussion", "discussioni": "discussion", "discusso": "discuss", "discute": "disc", "discutendo": "discut", "discuter": "discuter", "discuterà": "discut", "discuteranno": "discut", "discutere": "discut", "discutibile": "discut", "disdirebbero": "disd", "disdirsi": "disd", "disegna": "disegn", "disegnare": "disegn", "disegnarè": "disegnar", "disegnata": "disegn", "disegnato": "disegn", "disegnava": "disegn", "disegni": "disegn", "disegno": "disegn", "disegnò": "disegn", "disequilibrata": "disequilibr", "diserta": "disert", "disfaceva": "disfac", "disfar": "disf", "disfare": "disf", "disfarsi": "disf", "disfatta": "disfatt", "disfatte": "disfatt", "disfatto": "disfatt", "disgiunte": "disgiunt", "disgrazia": "disgraz", "disgraziati": "disgraz", "disgraziato": "disgraz", "disgrazie": "disgraz", "disgreganti": "disgreg", "disgregare": "disgreg", "disgustati": "disgust", "disgustato": "disgust", "disgusti": "disgust", "disgusto": "disgust", "disgustosa": "disgust", "disgustoso": "disgust", "disillusione": "disillu", "disimbrogliato": "disimbrogl", "disimpegnarsene": "disimpegn", "disimpegni": "disimpegn", "disimpegno": "disimpegn", "disingannato": "disingann", "disingannò": "disingann", "disinquinamento": "disinquin", "disinteressato": "disinteress", "disinteresse": "disinteress", "disinvolta": "disinvolt", "disinvolti": "disinvolt", "disinvolto": "disinvolt", "disinvoltura": "disinvoltur", "dislocare": "disloc", "dislocati": "disloc", "dislocazione": "disloc", "dismessa": "dismess", "dismissione": "dismission", "dismissioni": "dismission", "disoccupato": "disoccup", "disoccupazione": "disoccup", "disonorare": "disonor", "disordinare": "disordin", "disordinata": "disordin", "disordinati": "disordin", "disordinato": "disordin", "disordinava": "disordin", "disordine": "disordin", "disordini": "disordin", "disorientamento": "disorient", "disotterrare": "disotterr", "dispacci": "dispacc", "dispacciamento": "dispacc", "dispaccio": "dispacc", "disparati": "dispar", "disparere": "dispar", "disparità": "dispar", "disparitas": "disparitas", "disparte": "dispart", "disparve": "disparv", "dispendio": "dispend", "dispensa": "dispens", "dispensando": "dispens", "dispensarvi": "dispens", "dispensasse": "dispens", "dispensati": "dispens", "dispensatore": "dispens", "dispensavano": "dispens", "dispense": "dispens", "dispensi": "dispens", "disperando": "disper", "disperata": "disper", "disperatamente": "disperat", "disperate": "disper", "disperati": "disper", "disperato": "disper", "disperazione": "disper", "disperdere": "disperd", "disperdersi": "disperd", "disperdesse": "disperdess", "dispersa": "dispers", "disperse": "dispers", "dispersi": "disp", "disperso": "dispers", "dispetti": "dispett", "dispetto": "dispett", "dispettoso": "dispett", "dispiaccia": "dispiacc", "dispiace": "dispiac", "dispiacerà": "dispiac", "dispiacere": "dispiac", "dispiacerebbe": "dispiac", "dispiacergli": "dispiac", "dispiaceri": "dispiacer", "dispiacesse": "dispiacess", "dispiaceva": "dispiac", "dispiacevole": "dispiacevol", "dispiaciuta": "dispiac", "dispiaciuto": "dispiac", "dispiacque": "dispiacqu", "dispiegamenti": "dispieg", "dispiegato": "dispieg", "dispone": "dispon", "disponendoli": "dispon", "disponendosi": "dispon", "disponesse": "disponess", "disponeva": "dispon", "disponga": "dispong", "dispongono": "dispong", "disponi": "dispon", "disponibile": "dispon", "disponibili": "dispon", "disponibilità": "disponibil", "disponible": "disponibl", "disporle": "disporl", "disporli": "disporl", "disporrà": "disporr", "disporre": "disporr", "disporsi": "dispors", "disporvi": "disporv", "dispose": "dispos", "disposero": "disposer", "dispositivi": "disposit", "dispositivo": "disposit", "disposizion": "disposizion", "disposizione": "disposizion", "disposizioni": "disposizion", "disposta": "dispost", "disposte": "dispost", "disposti": "dispost", "dispostivo": "dispost", "disposto": "dispost", "disprezzato": "disprezz", "disprezzo": "disprezz", "disputa": "disp", "disputassero": "disput", "disputata": "disput", "disputate": "disput", "disputati": "disput", "disputato": "disput", "disputava": "disput", "dispute": "disp", "disputerà": "disput", "disputeranno": "disput", "disquisizioni": "disquisizion", "dissapunto": "dissapunt", "disse": "diss", "disselciato": "disselc", "disseminato": "dissemin", "dissensi": "dissens", "dissenso": "dissens", "disseppellire": "disseppell", "disser": "disser", "dissero": "disser", "dissertazioni": "dissert", "dissestato": "dissest", "dissesto": "dissest", "dissi": "diss", "dissidente": "dissident", "dissidenti": "dissident", "dissidenza": "dissident", "dissidio": "dissid", "dissimulando": "dissimul", "dissimulare": "dissimul", "dissimulata": "dissimul", "dissimulate": "dissimul", "dissimulazione": "dissimul", "dissipare": "dissip", "dissipata": "dissip", "dissipato": "dissip", "dissipò": "dissip", "dissodava": "dissod", "dissolvere": "dissolv", "dissolverebbe": "dissolv", "dissuaderlo": "dissuad", "dista": "dist", "distaccarsi": "distacc", "distaccata": "distacc", "distacchi": "distacc", "distacco": "distacc", "distante": "distant", "distanti": "distant", "distanza": "distanz", "distanze": "distanz", "distendere": "distend", "distendersi": "distend", "distesa": "distes", "distesi": "distes", "disteso": "distes", "distillati": "distill", "distingue": "distingu", "distinguendosi": "distingu", "distinguer": "distinguer", "distinguere": "distingu", "distingueva": "distingu", "distinguevano": "distingu", "distinguo": "distingu", "distinse": "distins", "distinta": "distint", "distintamente": "distint", "distinte": "distint", "distinti": "distint", "distintivi": "distint", "distintivo": "distint", "distinto": "distint", "distinzion": "distinzion", "distinzione": "distinzion", "distinzioni": "distinzion", "distizioni": "distizion", "distorcono": "distorc", "distorsione": "distorsion", "distorsioni": "distorsion", "distorta": "distort", "distraendola": "distr", "distrar": "distr", "distrarre": "distrarr", "distratta": "distratt", "distratto": "distratt", "distrazione": "distrazion", "distrazioni": "distrazion", "distretti": "distrett", "distretto": "distrett", "distrettuale": "distrettual", "distribuì": "distribu", "distribuirà": "distribu", "distribuire": "distribu", "distribuirle": "distribu", "distribuirsi": "distribu", "distribuisce": "distribu", "distribuisse": "distribuiss", "distribuita": "distribu", "distribuite": "distribu", "distribuiti": "distribu", "distribuito": "distribu", "distribuiva": "distribu", "distribuivan": "distribuivan", "distribuivano": "distribu", "distributore": "distributor", "distributori": "distributor", "distributrici": "distributr", "distribuzione": "distribu", "distrigare": "distrig", "distrigarsi": "distrig", "distrugge": "distrugg", "distrugger": "distrugger", "distruggerà": "distrugg", "distruggersi": "distrugg", "distruggevano": "distrugg", "distrusse": "distruss", "distrutta": "distrutt", "distrutti": "distrutt", "distruttiva": "distrutt", "distruttive": "distrutt", "distrutto": "distrutt", "distruzion": "distruzion", "distruzione": "distruzion", "disturbar": "disturb", "disturbare": "disturb", "disturbarla": "disturb", "disturbarlo": "disturb", "disturbata": "disturb", "disturbate": "disturb", "disturbato": "disturb", "disturbo": "disturb", "disubbidire": "disubbid", "disuguale": "disugual", "disuguali": "disugual", "disumana": "disuman", "disuso": "disus", "disviare": "disv", "dita": "dit", "ditacci": "ditacc", "dite": "dit", "ditegli": "ditegl", "ditele": "ditel", "ditemelo": "ditemel", "ditemi": "ditem", "dito": "dit", "ditta": "ditt", "dittatore": "dittator", "dittatori": "dittator", "dittatura": "dittatur", "ditte": "ditt", "div": "div", "diva": "div", "divani": "divan", "divaricate": "divaric", "dive": "div", "divelto": "divelt", "divenendo": "diven", "divenendogli": "diven", "divengano": "diveng", "divengon": "divengon", "divenir": "diven", "divenire": "diven", "divenirgli": "diven", "divenirlo": "diven", "diveniva": "diven", "divenivan": "divenivan", "divenivano": "diven", "divenne": "divenn", "divennero": "divenner", "diventa": "divent", "diventando": "divent", "diventano": "divent", "diventar": "divent", "diventare": "divent", "diventarne": "divent", "diventaron": "diventaron", "diventata": "divent", "diventate": "divent", "diventati": "divent", "diventato": "divent", "diventava": "divent", "diventavan": "diventavan", "diventerà": "divent", "diventeranno": "divent", "diventi": "divent", "diventiamo": "divent", "diventin": "diventin", "diventino": "diventin", "diventò": "divent", "divenuta": "diven", "divenute": "diven", "divenuti": "diven", "divenuto": "diven", "diverbio": "diverb", "divergenti": "divergent", "divergenze": "divergent", "diversa": "divers", "diversamente": "divers", "diverse": "divers", "diversi": "div", "diversì": "divers", "diversificata": "diversific", "diversificazione": "diversif", "diversione": "diversion", "diversità": "divers", "diverso": "divers", "divertente": "divertent", "divertenti": "divertent", "divertimenti": "divert", "divertimento": "divert", "divertire": "divert", "divertirti": "divert", "divertiti": "divert", "divertito": "divert", "divertivano": "divert", "diverto": "divert", "divertono": "divert", "divezzarlo": "divezz", "divezzarsene": "divezz", "divezzati": "divezz", "diviato": "div", "divide": "divid", "dividendo": "divid", "dividendosi": "divid", "divider": "divider", "dividere": "divid", "dividersi": "divid", "divideva": "divid", "dividevano": "divid", "dividon": "dividon", "divien": "divien", "diviene": "divien", "divieto": "diviet", "divincola": "divincol", "divincolandosi": "divincol", "divincolasse": "divincol", "divini": "divin", "divisa": "divis", "divise": "divis", "divisero": "diviser", "divisi": "divis", "divisione": "division", "divisioni": "division", "divismo": "divism", "diviso": "divis", "divo": "div", "divora": "divor", "divorar": "divor", "divorata": "divor", "divorati": "divor", "divorato": "divor", "divorziare": "divorz", "divorziato": "divorz", "divorzio": "divorz", "divorziò": "divorz", "divoti": "divot", "divozione": "divozion", "divozioni": "divozion", "divulgare": "divulg", "divulgazione": "divulg", "diw": "diw", "dizione": "dizion", "dj": "dj", "dl": "dl", "dli": "dli", "dlscendere": "dlscend", "dm": "dm", "dmf": "dmf", "dn": "dn", "do": "do", "dobbiam": "dobbiam", "dobbiamo": "dobb", "doc": "doc", "docente": "docent", "docenti": "docent", "docilità": "docil", "doctor": "doctor", "documenta": "document", "documentari": "documentar", "documentario": "documentar", "documentarista": "documentar", "documentazione": "document", "documenti": "document", "documento": "document", "dodici": "dodic", "dodo": "dod", "dog": "dog", "doga": "dog", "doganali": "doganal", "doge": "dog", "doglia": "dogl", "dogma": "dogm", "dolce": "dolc", "dolcemente": "dolcement", "dolcezza": "dolcezz", "dolcezze": "dolcezz", "dolci": "dolc", "dole": "dol", "dolente": "dolent", "dolenti": "dolent", "dolesse": "doless", "doll": "doll", "dollari": "dollar", "dollaro": "dollar", "dolomiti": "dolom", "dolor": "dolor", "dolore": "dolor", "dolori": "dolor", "dolorosa": "dolor", "dolorosamente": "dolor", "dolorose": "dolor", "dolorosi": "dolor", "doloroso": "dolor", "doman": "doman", "domanda": "domand", "domandando": "domand", "domandandogli": "domand", "domandandosi": "domand", "domandar": "domand", "domandare": "domand", "domandargli": "domand", "domandarmi": "domand", "domandarne": "domand", "domandarono": "domand", "domandasse": "domand", "domandate": "domand", "domandatene": "domandaten", "domandato": "domand", "domandava": "domand", "domandavo": "domand", "domande": "domand", "domanderà": "domand", "domandi": "domand", "domando": "dom", "domandò": "domand", "domani": "doman", "domata": "dom", "domate": "dom", "domati": "dom", "domattina": "domattin", "domeneddio": "domenedd", "domenica": "domen", "domenicale": "domenical", "domenicali": "domenical", "domeniche": "domen", "domenico": "domen", "domestica": "domest", "domestiche": "domest", "domestico": "domest", "domicilio": "domicil", "domificazione": "domif", "domina": "domin", "dominante": "domin", "dominanti": "domin", "dominarle": "domin", "dominasse": "domin", "dominata": "domin", "dominato": "domin", "dominatrice": "domin", "dominava": "domin", "domingo": "doming", "domini": "domin", "dominik": "dominik", "dominio": "domin", "dominion": "dominion", "domiziana": "domizian", "domum": "domum", "don": "don", "dona": "don", "donà": "don", "donadoni": "donadon", "donald": "donald", "donare": "don", "donat": "donat", "donatella": "donatell", "donati": "don", "donato": "don", "donatori": "donator", "donazione": "donazion", "donazioni": "donazion", "dond": "dond", "donde": "dond", "dondolasse": "dondol", "donelli": "donell", "dongwu": "dongwu", "doni": "don", "donna": "donn", "donne": "donn", "donnicciola": "donnicciol", "dono": "don", "donzelle": "donzell", "doo": "doo", "doping": "doping", "dopo": "dop", "dopodomani": "dopodoman", "dopopartita": "dopopart", "doppia": "dopp", "doppiamente": "dopp", "doppiata": "dopp", "doppiato": "dopp", "doppie": "dopp", "doppio": "dopp", "dor": "dor", "dorantes": "dorantes", "dorgali": "dorgal", "doriano": "dor", "dorma": "dorm", "dorme": "dorm", "dormì": "dorm", "dormir": "dorm", "dormirai": "dorm", "dormire": "dorm", "dormita": "dorm", "dormitina": "dormitin", "dormito": "dorm", "dormitòri": "dormitòr", "dormitorio": "dormitor", "dormiva": "dorm", "dormivano": "dorm", "dornbusch": "dornbusc", "dornbush": "dornbush", "dorso": "dors", "dose": "dos", "dossetti": "dossett", "dossier": "dossier", "dotarsi": "dot", "dotata": "dot", "dotate": "dot", "dotato": "dot", "dotazione": "dotazion", "dote": "dot", "doti": "dot", "dotò": "dot", "dott": "dott", "dotta": "dott", "dotti": "dott", "dotto": "dott", "dottor": "dottor", "dottore": "dottor", "dottoressa": "dottoress", "dottori": "dottor", "dottrina": "dottrin", "dottrinalmente": "dottrinal", "dottrine": "dottrin", "douadi": "douad", "doue": "dou", "doueua": "doueu", "douglas": "douglas", "dourebbe": "dourebb", "dov": "dov", "dove": "dov", "dové": "dov", "dovendo": "dov", "dover": "dover", "doverci": "dov", "dovere": "dov", "doveri": "dover", "doverlo": "dov", "dovermene": "dov", "doveroso": "dover", "doversi": "dov", "dovesse": "dovess", "dovessero": "dov", "dovessi": "dovess", "dovessimo": "dovessim", "dovete": "dov", "dovette": "dovett", "dovettero": "dovetter", "doveva": "dov", "dovevamo": "dov", "dovevan": "dovevan", "dovevano": "dov", "dovevi": "dov", "dovevo": "dov", "doviziosi": "doviz", "dovizioso": "doviz", "dovrà": "dovr", "dovranno": "dovrann", "dovrebb": "dovrebb", "dovrebbbe": "dovrebbb", "dovrebbe": "dovrebb", "dovrebbero": "dovrebber", "dovrei": "dovre", "dovrem": "dovrem", "dovremmo": "dovr", "dovremo": "dovrem", "dovrete": "dovr", "dovunque": "dovunqu", "dovuta": "dov", "dovute": "dov", "dovuti": "dov", "dovuto": "dov", "dow": "dow", "down": "down", "dozio": "doz", "dozzina": "dozzin", "dozzinale": "dozzinal", "dp": "dp", "dpr": "dpr", "dps": "dps", "dra": "dra", "dracma": "dracm", "dragaggio": "dragagg", "dragon": "dragon", "drake": "drak", "dramma": "dramm", "drammatica": "drammat", "drammatici": "drammat", "drammatico": "drammat", "drancy": "drancy", "drappello": "drappell", "drappi": "drapp", "drastica": "drastic", "drastiche": "drastic", "drastico": "drastic", "dratshev": "dratshev", "dresda": "dresd", "dribbling": "dribbling", "dritta": "dritt", "driver": "driver", "drnovsek": "drnovsek", "droga": "drog", "drogà": "drog", "drusi": "drus", "druso": "drus", "dua": "dua", "dubai": "duba", "dubbi": "dubb", "dubbia": "dubb", "dubbiezza": "dubbiezz", "dubbio": "dubb", "dubbiosa": "dubbios", "dubbiosamente": "dubbios", "dubbiosi": "dubbios", "dubita": "dub", "dubitare": "dubit", "dubitarne": "dubit", "dubitasse": "dubit", "dubitate": "dubit", "dubitativa": "dubit", "dubiti": "dub", "dubito": "dub", "dublino": "dublin", "duca": "duc", "ducati": "duc", "ducato": "duc", "ducatone": "ducaton", "ducatoni": "ducaton", "duce": "duc", "duchessa": "duchess", "duchovny": "duchovny", "dudaiev": "dudaiev", "dudikoff": "dudikoff", "dudley": "dudley", "due": "due", "duelli": "duell", "duello": "duell", "duemila": "duemil", "dugent": "dugent", "dugento": "dugent", "dugnano": "dugn", "duna": "dun", "dundee": "dunde", "dunkerque": "dunkerqu", "dunque": "dunqu", "dununcia": "dununc", "duodecim": "duodecim", "duomo": "duom", "duplicato": "duplic", "duplice": "duplic", "duque": "duqu", "dur": "dur", "dura": "dur", "duramente": "dur", "duran": "duran", "durant": "durant", "durante": "durant", "durar": "dur", "durare": "dur", "durassero": "dur", "durata": "dur", "durato": "dur", "duratro": "duratr", "duraturo": "duratur", "durava": "dur", "durbano": "durb", "dure": "dur", "durerà": "dur", "durezza": "durezz", "duri": "dur", "durissima": "durissim", "durissime": "durissim", "durissimi": "durissim", "durissimo": "durissim", "durlindane": "durlindan", "duro": "dur", "durò": "dur", "dustin": "dustin", "duttile": "duttil", "dwayne": "dwayn", "dyaln": "dyaln", "dyken": "dyken", "dylan": "dylan", "dzhuna": "dzhun", "e": "e", "è": "è", "eadem": "eadem", "eam": "eam", "eass": "eass", "east": "east", "easy": "easy", "ebbe": "ebbe", "ebbene": "ebben", "ebber": "ebber", "ebbero": "ebber", "ebbi": "ebbi", "ebbrezza": "ebbrezz", "ebraica": "ebraic", "ebraiche": "ebraic", "ebraico": "ebraic", "ebrei": "ebre", "ebreo": "ebre", "ec": "ec", "ecc": "ecc", "eccedere": "ecced", "ecceduto": "ecced", "eccell": "eccell", "eccellente": "eccellent", "eccellenti": "eccellent", "eccellentì": "eccellent", "eccellentiss": "eccellentiss", "eccellentissimo": "eccellentissim", "eccellenza": "eccellent", "eccentrico": "eccentr", "eccessi": "eccess", "eccessiva": "eccess", "eccessivamente": "eccess", "eccessivi": "eccess", "eccessivo": "eccess", "eccesso": "eccess", "eccetera": "ecceter", "eccettuarne": "eccettu", "eccettuate": "eccettu", "eccezionale": "eccezional", "eccezione": "eccezion", "eccezioni": "eccezion", "ecchimosi": "ecchim", "eccidio": "eccid", "eccitando": "eccit", "eccitar": "eccit", "eccitare": "eccit", "eccitarono": "eccit", "eccitato": "eccit", "eccitava": "eccit", "ecclesiali": "ecclesial", "ecclesiastiche": "ecclesiast", "ecclesiastici": "ecclesiast", "ecclesiastico": "ecclesiast", "ecco": "ecco", "eccoli": "eccol", "eccolo": "eccol", "eccome": "eccom", "eccomi": "eccom", "eccone": "eccon", "echeverry": "echeverry", "echotel": "echotel", "eclissavano": "ecliss", "eco": "eco", "ecologia": "ecolog", "ecologica": "ecolog", "ecologico": "ecolog", "ecolsicilia": "ecolsicil", "econogica": "econog", "economia": "econom", "economic": "economic", "economica": "econom", "economiche": "econom", "economici": "econom", "economico": "econom", "economie": "econom", "economista": "econom", "economisti": "econom", "ecosistema": "ecosistem", "ecu": "ecu", "ecuador": "ecuador", "ecuadoriana": "ecuadorian", "ecuadoriane": "ecuadorian", "ecuadoriano": "ecuador", "ed": "ed", "eddie": "eddi", "edelman": "edelman", "eden": "eden", "edf": "edf", "edgar": "edgar", "edicola": "edicol", "edidit": "edidit", "edif": "edif", "edificare": "edific", "edificato": "edific", "edificazione": "edif", "edifici": "edif", "edificio": "edific", "edifizi": "edifiz", "edifizio": "edifiz", "edilberto": "edilbert", "edilizie": "ediliz", "edilizio": "ediliz", "ediliziò": "ediliz", "edison": "edison", "edit": "edit", "edita": "edit", "editi": "edit", "editore": "editor", "editori": "editor", "editoria": "editor", "editoriale": "editorial", "editoriali": "editorial", "editorialisti": "editorial", "editrice": "editr", "editti": "editt", "editto": "editt", "edizione": "edizion", "edizioni": "edizion", "edmondo": "edmond", "edo": "edo", "edoardo": "edoard", "edouard": "edouard", "eduardo": "eduard", "educande": "educand", "educare": "educ", "educata": "educ", "educati": "educ", "educatissimi": "educatissim", "educatrici": "educ", "educazione": "educ", "edward": "edward", "efe": "efe", "efettuato": "efettu", "effe": "effe", "effetti": "effett", "effettiva": "effett", "effettivamente": "effett", "effettive": "effett", "effettivo": "effett", "effetto": "effett", "effettuare": "effettu", "effettuata": "effettu", "effettuato": "effettu", "effettuava": "effettu", "efficace": "efficac", "efficacemente": "efficac", "efficaci": "efficac", "efficacia": "efficac", "efficiente": "efficient", "efficienza": "efficient", "effusione": "effusion", "efib": "efib", "efibanca": "efibanc", "efim": "efim", "efletto": "eflett", "egalitè": "egalit", "egeli": "egel", "egemonia": "egemon", "egerton": "egerton", "egidio": "egid", "egitto": "egitt", "egiziana": "egizian", "egiziane": "egizian", "egli": "egli", "ego": "ego", "egregiamente": "egreg", "egregii": "egreg", "egregio": "egreg", "eguaglianza": "eguagl", "egualmente": "egual", "eh": "eh", "ehi": "ehi", "ehlermann": "ehlermann", "ehm": "ehm", "ei": "ei", "eib": "eib", "eielo": "eiel", "eil": "eil", "einar": "ein", "eisendle": "eisendl", "ekeren": "ekeren", "el": "el", "elaborare": "elabor", "elaborassero": "elabor", "elaborata": "elabor", "elaborate": "elabor", "elaborati": "elabor", "elaborato": "elabor", "elaborazione": "elabor", "elba": "elba", "eldrege": "eldreg", "eleanor": "eleanor", "elecricitè": "elecricit", "electrabel": "electrabel", "electric": "electric", "electricitè": "electricit", "electricity": "electricity", "elegante": "eleg", "eleganza": "eleg", "eleganze": "eleg", "eleggerà": "elegg", "eleggere": "elegg", "elektrizitatswerke": "elektrizitatswerk", "elelemnti": "elelemnt", "elementare": "element", "elementari": "elementar", "elementi": "element", "elemento": "element", "elemosina": "elemosin", "elemosine": "elemosin", "elena": "elen", "elencato": "elenc", "elenchi": "elenc", "elenco": "elenc", "eleonora": "eleonor", "elesse": "eless", "eletrica": "eletr", "eletta": "elett", "elette": "elett", "eletti": "elett", "elettivi": "elett", "elettivo": "elett", "eletto": "elett", "elettorale": "elettoral", "elettorali": "elettoral", "elettoralmente": "elettoral", "elettorato": "elettor", "elettore": "elettor", "elettori": "elettor", "elettrica": "elettr", "elettriche": "elettr", "elettrici": "elettr", "elettricità": "elettr", "elettrico": "elettr", "elettrimmobiliare": "elettrimmobil", "elettrizza": "elettrizz", "elettromagnetica": "elettromagnet", "elettronica": "elettron", "elettrotecniche": "elettrotecn", "elevata": "elev", "elevate": "elev", "elevati": "elev", "elevato": "elev", "elevava": "elev", "elezione": "elezion", "elezioni": "elezion", "elia": "eli", "elicotteri": "elicotter", "elicottero": "elicotter", "elimina": "elimin", "eliminando": "elimin", "eliminare": "elimin", "eliminato": "elimin", "eliminazione": "elimin", "eliminerebbe": "elimin", "elio": "eli", "eliogabalo": "eliogabal", "elisa": "elis", "elisabetta": "elisabett", "elkraft": "elkraft", "ella": "ella", "ellero": "eller", "ellsworth": "ellsworth", "elmento": "elment", "elmo": "elmo", "elogi": "elog", "elogiare": "elog", "elogio": "elog", "eloquente": "eloquent", "eloquenza": "eloquent", "elsa": "elsa", "elsam": "elsam", "eluder": "eluder", "eludere": "elud", "eluderli": "elud", "elvio": "elvi", "em": "em", "emanato": "eman", "emanazione": "eman", "emanazioni": "eman", "emanò": "eman", "emanrsi": "emanrs", "emanuele": "emanuel", "emarginazione": "emargin", "embargo": "embarg", "emblematicamente": "emblemat", "emblematico": "emblemat", "embrione": "embrion", "emc": "emc", "emden": "emden", "eme": "eme", "emenda": "emend", "emendamenti": "emend", "emendamento": "emend", "emerg": "emerg", "emerge": "emerg", "emergenti": "emergent", "emergenza": "emergent", "emergenze": "emergent", "emergere": "emerg", "emerging": "emerging", "emergono": "emerg", "emerse": "emers", "emersi": "emers", "emerso": "emers", "emessa": "emess", "emessi": "emess", "emesso": "emess", "emettere": "emett", "emi": "emi", "emiel": "emiel", "emigrazione": "emigr", "emil": "emil", "emilia": "emil", "emiliane": "emilian", "emiliani": "emilian", "emiliano": "emil", "emilio": "emil", "eminenza": "eminent", "emirati": "emir", "emissario": "emissar", "emissione": "emission", "emittente": "emittent", "emittenti": "emittent", "emma": "emma", "emolumenti": "emolument", "emorragia": "emorrag", "emotiva": "emot", "emotive": "emot", "emotivo": "emot", "emozionante": "emozion", "emozione": "emozion", "emozioni": "emozion", "empì": "empì", "empiendo": "empi", "empietà": "empiet", "empio": "empi", "empire": "empir", "empireo": "empire", "empoli": "empol", "emulazione": "emul", "en": "en", "encicliche": "encicl", "enclave": "enclav", "endesa": "endes", "endoume": "endoum", "enea": "ene", "enel": "enel", "energetica": "energet", "energetiche": "energet", "energetici": "energet", "energetico": "energet", "energia": "energ", "energico": "energ", "energie": "energ", "energy": "energy", "enfant": "enfant", "enfasi": "enfas", "enfiate": "enfi", "englaro": "englar", "eni": "eni", "enichem": "enichem", "enimma": "enimm", "enna": "enna", "enne": "enne", "ennesima": "ennesim", "ennesimo": "ennesim", "enorme": "enorm", "enormi": "enorm", "enormità": "enorm", "enpacl": "enpacl", "enrico": "enric", "enriquez": "enriquez", "ente": "ente", "entelechia": "entelec", "enterprise": "enterpris", "enti": "enti", "entità": "entit", "entra": "entra", "entraci": "entrac", "entrambe": "entramb", "entrambi": "entramb", "entran": "entran", "entrando": "entrand", "entrandovi": "entrandov", "entrano": "entran", "entrar": "entrar", "entrarci": "entrarc", "entrare": "entrar", "entrargli": "entrargl", "entraron": "entraron", "entrarono": "entrar", "entrarvi": "entrarv", "entrasse": "entrass", "entrassero": "entrasser", "entrata": "entrat", "entrate": "entrat", "entrati": "entrat", "entrato": "entrat", "entratovi": "entratov", "entratura": "entratur", "entrature": "entratur", "entrava": "entrav", "entravan": "entravan", "entravano": "entrav", "entrerà": "entrer", "entreranno": "entrerann", "entri": "entri", "entriamo": "entriam", "entrischen": "entrischen", "entro": "entro", "entrò": "entrò", "entusiasma": "entusiasm", "entusiasmi": "entusiasm", "entusiasmo": "entusiasm", "entusiasta": "entusiast", "entusiasti": "entusiast", "entusiastici": "entusiast", "entusiastico": "entusiast", "enumerati": "enumer", "enumerazion": "enumerazion", "enunciati": "enunc", "enunciato": "enunc", "enunciazione": "enunc", "envireg": "envireg", "enzo": "enzo", "eologiato": "eolog", "ep": "ep", "epatite": "epat", "ephraim": "ephraim", "epicentro": "epicentr", "epidemica": "epidem", "episcopale": "episcopal", "episcopali": "episcopal", "episodi": "episod", "episodio": "episod", "epiteti": "epitet", "epiteto": "epitet", "epoca": "epoc", "epoche": "epoc", "eppure": "eppur", "epreoccupano": "epreoccup", "epresto": "eprest", "epta": "epta", "eptabond": "eptabond", "eptacapital": "eptacapital", "eptainternational": "eptainternational", "eptamoney": "eptamoney", "epulone": "epulon", "eq": "eq", "equilibrarsi": "equilibr", "equilibrato": "equilibr", "equilibrio": "equilibr", "equipaggi": "equipagg", "equipaggio": "equipagg", "equiparare": "equipar", "equiparazione": "equipar", "equità": "equit", "equitazione": "equit", "equity": "equity", "equivale": "equival", "equivalente": "equivalent", "equivalentè": "equivalent", "equivaleva": "equival", "equivoci": "equivoc", "equivoco": "equivoc", "equo": "equo", "er": "er", "era": "era", "eran": "eran", "eranio": "eran", "erano": "eran", "erant": "erant", "erario": "erar", "eravamo": "eravam", "eravate": "erav", "erba": "erba", "erbacce": "erbacc", "erbaccia": "erbacc", "erbe": "erbe", "erboso": "erbos", "ercole": "ercol", "ercoli": "ercol", "erede": "ered", "eredità": "ered", "ereditare": "eredit", "ereditaria": "ereditar", "ereditato": "eredit", "eremita": "erem", "eresse": "eress", "eretico": "eret", "eretta": "erett", "eretto": "erett", "ergastolo": "ergastol", "erge": "erge", "ergife": "ergif", "ergo": "ergo", "eric": "eric", "ericsson": "ericsson", "eridania": "eridan", "erigere": "erig", "erik": "erik", "erikkson": "erikkson", "eriksson": "eriksson", "erlanger": "erlanger", "ermellini": "ermellin", "ermetismo": "ermet", "erminio": "ermin", "ernesto": "ernest", "ero": "ero", "eroe": "ero", "erogabile": "erog", "erogati": "erog", "erogato": "erog", "erogatrice": "erog", "erogazione": "erog", "eroi": "ero", "eroica": "eroic", "eroico": "eroic", "eroina": "eroin", "eroismo": "eroism", "erotici": "erot", "err": "err", "erranti": "errant", "errato": "errat", "erravano": "errav", "errol": "errol", "error": "error", "errore": "error", "errori": "error", "erta": "erta", "erte": "erte", "erto": "erto", "eruditamente": "erudit", "erudite": "erud", "erudito": "erud", "erudizione": "erudizion", "erzegovina": "erzegovin", "es": "es", "esacerbata": "esacerb", "esacerbato": "esacerb", "esacerbava": "esacerb", "esacerbazione": "esacerb", "esagerare": "esager", "esagerata": "esager", "esagerate": "esager", "esagerato": "esager", "esalano": "esal", "esalava": "esal", "esalazione": "esal", "esalta": "esalt", "esaltando": "esalt", "esaltanti": "esalt", "esaltare": "esalt", "esaltati": "esalt", "esaltato": "esalt", "esaltavano": "esalt", "esaltazione": "esalt", "esame": "esam", "esami": "esam", "esamina": "esamin", "esaminando": "esamin", "esaminandole": "esamin", "esaminar": "esamin", "esaminare": "esamin", "esaminarla": "esamin", "esaminarle": "esamin", "esaminata": "esamin", "esaminate": "esamin", "esaminati": "esamin", "esaminato": "esamin", "esaminator": "esaminator", "esaminatore": "esamin", "esaminava": "esamin", "esaminerà": "esamin", "esamineranno": "esamin", "esamionando": "esamion", "esantemi": "esantem", "esasperata": "esasper", "esasperati": "esasper", "esasperato": "esasper", "esasperazione": "esasper", "esatta": "esatt", "esattamente": "esatt", "esatte": "esatt", "esattezza": "esattezz", "esattori": "esattor", "esaudisce": "esaud", "esaudita": "esaud", "esauditela": "esauditel", "esaudito": "esaud", "esaurita": "esaur", "esauritasi": "esauritas", "esaurito": "esaur", "esausta": "esaust", "esausti": "esaust", "esaustivo": "esaust", "esausto": "esaust", "esca": "esca", "escalation": "escalation", "escamotage": "escamotag", "esce": "esce", "esci": "esci", "escimi": "escim", "escl": "escl", "esclama": "esclam", "esclamando": "esclam", "esclamare": "esclam", "esclamarono": "esclam", "esclamativi": "esclam", "esclamato": "esclam", "esclamava": "esclam", "esclamavano": "esclam", "esclamazione": "esclam", "esclamazioni": "esclam", "esclamò": "esclam", "escluda": "esclud", "esclude": "esclud", "escludendo": "esclud", "escludere": "esclud", "escluderlo": "esclud", "escludo": "esclud", "escludono": "esclud", "esclusa": "esclus", "esclusà": "esclus", "escluse": "esclus", "esclusi": "esclus", "esclusione": "esclusion", "esclusiva": "esclus", "esclusivamente": "esclus", "esclusivo": "esclus", "escluso": "esclus", "esco": "esco", "escogitata": "escogit", "escono": "escon", "escort": "escort", "escudo": "escud", "escuriale": "escurial", "escursionisti": "escursion", "esecrata": "esecr", "esecrazione": "esecr", "esecutiva": "esecut", "esecutivi": "esecut", "esecutivo": "esecut", "esecutori": "esecutor", "esecuzione": "esecu", "eseguendo": "esegu", "eseguì": "esegu", "eseguir": "esegu", "eseguire": "esegu", "eseguirli": "esegu", "eseguirlo": "esegu", "eseguirsi": "esegu", "eseguisce": "esegu", "eseguita": "esegu", "eseguite": "esegu", "eseguiti": "esegu", "eseguito": "esegu", "eseguiva": "esegu", "esempi": "esemp", "esempio": "esemp", "esemplare": "esempl", "esenti": "esent", "esenzione": "esenzion", "esenzioni": "esenzion", "esequie": "esequ", "esercita": "eserc", "esercitano": "esercit", "esercitar": "esercit", "esercitare": "esercit", "esercitarne": "esercit", "esercitarsi": "esercit", "esercitata": "esercit", "esercitate": "esercit", "esercitato": "esercit", "esercitava": "esercit", "eserciteranno": "esercit", "esercito": "eserc", "esercitò": "esercit", "esercizi": "eserciz", "esercizio": "eserciz", "esibì": "esib", "esibire": "esib", "esibirgli": "esib", "esibiti": "esib", "esibito": "esib", "esibizione": "esibizion", "esibizioni": "esibizion", "esige": "esig", "esigenza": "esigent", "esigenze": "esigent", "esigere": "esig", "esigo": "esig", "esigua": "esigu", "esiguo": "esigu", "esimersi": "esim", "esimo": "esim", "esista": "esist", "esistano": "esist", "esiste": "esist", "esistente": "esistent", "esistenti": "esistent", "esistenza": "esistent", "esistenziale": "esistenzial", "esisterà": "esist", "esistere": "esist", "esisteva": "esist", "esistevano": "esist", "esistiti": "esist", "esistono": "esist", "esita": "esit", "esitando": "esit", "esitanti": "esit", "esitare": "esit", "esitato": "esit", "esitava": "esit", "esitazione": "esit", "esitazioni": "esit", "esite": "esit", "esiterò": "esit", "esiti": "esit", "esito": "esit", "esitò": "esit", "eslam": "eslam", "esorbitanti": "esorbit", "esorcizzarla": "esorcizz", "esordio": "esord", "esordisce": "esord", "esordito": "esord", "esorta": "esort", "esortarla": "esort", "esortato": "esort", "esortava": "esort", "esortazione": "esort", "esortazioni": "esort", "esortino": "esortin", "èsottratta": "èsottratt", "espandendo": "espand", "espanola": "espanol", "espansione": "espansion", "espediente": "espedient", "espedienti": "espedient", "espelle": "espell", "espellere": "espell", "esperienza": "esperient", "esperienze": "esperient", "esperimentar": "esperiment", "esperimentata": "esperiment", "esperimenti": "esper", "esperimento": "esper", "esperire": "esper", "esperta": "espert", "esperti": "espert", "esperto": "espert", "espiare": "espi", "espiarla": "espi", "espiarlo": "espi", "espiazione": "espiazion", "espletamento": "esplet", "esplicitamente": "esplicit", "esplicitato": "esplicit", "esplicite": "esplic", "esplicito": "esplic", "esplode": "esplod", "esplodere": "esplod", "esplodono": "esplod", "esplorando": "esplor", "esplorare": "esplor", "esplorati": "esplor", "esploratori": "esplor", "esplorazione": "esplor", "esplorazioni": "esplor", "esplorerà": "esplor", "esplosa": "esplos", "esplose": "esplos", "esplosione": "esplosion", "esplosioni": "esplosion", "esplosive": "esplos", "esplosivi": "esplos", "esplosivo": "esplos", "esploso": "esplos", "esplusioni": "esplusion", "espone": "espon", "esponendo": "espon", "esponente": "esponent", "esponenti": "esponent", "esponenziale": "esponenzial", "esponevan": "esponevan", "espongano": "espong", "espongono": "espong", "espoo": "espo", "esporgli": "esporgl", "esporle": "esporl", "esporlo": "esporl", "esporrà": "esporr", "esporranno": "esporrann", "esporre": "esporr", "esportare": "esport", "esportate": "esport", "esportativa": "esport", "esportatore": "esport", "esportazione": "esport", "esportazioni": "esport", "espose": "espos", "espositivi": "esposit", "espositivo": "esposit", "esposito": "espos", "espositori": "espositor", "esposizione": "esposizion", "esposizioni": "esposizion", "esposta": "espost", "esposti": "espost", "esposto": "espost", "espressa": "espress", "espressamente": "espress", "espresse": "espress", "espressi": "espress", "espressione": "espression", "espressioni": "espression", "espressiva": "espress", "espressive": "espress", "espresso": "espress", "esprima": "esprim", "esprime": "esprim", "esprimendo": "esprim", "esprimer": "esprimer", "esprimerà": "esprim", "esprimerci": "esprim", "esprimere": "esprim", "esprimersi": "esprim", "esprimeva": "esprim", "esprimevan": "esprimevan", "esprimevano": "esprim", "esprimiamo": "esprim", "esprimono": "esprim", "espropriando": "espropr", "espropriare": "espropr", "espropriò": "espropr", "espugnarlo": "espugn", "espulsi": "espuls", "espulsione": "espulsion", "espulsioni": "espulsion", "espulso": "espuls", "essa": "essa", "esse": "esse", "essendo": "essend", "essendoci": "essendoc", "essendosegli": "essendosegl", "essendosi": "essend", "essendovi": "essendov", "essent": "essent", "essenza": "essenz", "essenziale": "essenzial", "essenziali": "essenzial", "essenzialissima": "essenzialissim", "essenzialissimo": "essenzialissim", "esser": "esser", "esserci": "esserc", "essere": "esser", "essergli": "essergl", "esseri": "esser", "esserlo": "esserl", "esserne": "essern", "essersi": "essers", "essi": "essi", "esso": "esso", "est": "est", "està": "està", "establishment": "establishment", "estamos": "estamos", "estàmos": "estàmos", "estasi": "estas", "estate": "estat", "estatè": "estat", "estatica": "estat", "estatici": "estat", "estatico": "estat", "èstato": "èstat", "este": "este", "esteban": "esteban", "estemporanee": "estemporane", "estenda": "estend", "estende": "estend", "estendendo": "estend", "estenderanno": "estend", "estendere": "estend", "estendersi": "estend", "estendono": "estend", "estensione": "estension", "estensore": "estensor", "estenssoro": "estenssor", "estenuati": "estenu", "estenuazione": "estenu", "estera": "ester", "estere": "ester", "esteri": "ester", "esterino": "esterin", "esteriore": "esterior", "esterminio": "estermin", "esterna": "estern", "esternato": "estern", "esternazione": "estern", "esterne": "estern", "esterni": "estern", "esterno": "estern", "estero": "ester", "estesa": "estes", "estese": "estes", "estesi": "estes", "esteso": "estes", "estetica": "estet", "esti": "esti", "estingue": "estingu", "estinguersi": "estingu", "estinta": "estint", "estinzione": "estinzion", "estirpali": "estirpal", "estirpare": "estirp", "estirparlo": "estirp", "esto": "esto", "estorsione": "estorsion", "estorte": "estort", "estrada": "estrad", "estradati": "estrad", "estradizione": "estradizion", "estranea": "estrane", "estranee": "estrane", "estranei": "estrane", "estraneità": "estran", "estraneo": "estrane", "estrarre": "estrarr", "estratti": "estratt", "estratto": "estratt", "estrazione": "estrazion", "estrazioni": "estrazion", "estrema": "estrem", "estremamente": "estrem", "estremi": "estrem", "estremismo": "estrem", "estremisti": "estrem", "estremistiche": "estremist", "estremità": "estrem", "estremo": "estrem", "estrenuamente": "estrenu", "estromessa": "estromess", "esuli": "esul", "esultante": "esult", "esultarono": "esult", "et": "et", "età": "età", "etampes": "etampes", "etc": "etc", "etere": "eter", "eterna": "etern", "eterne": "etern", "eternità": "etern", "eteroclite": "eterocl", "eterosessuali": "eterosessual", "etica": "etic", "etichette": "etichett", "etici": "etic", "etico": "etic", "etienne": "etienn", "etiopico": "etiop", "etnei": "etne", "etnia": "etni", "etnico": "etnic", "ètornato": "ètorn", "etro": "etro", "etruschi": "etrusc", "ettari": "ettar", "ette": "ette", "ettore": "ettor", "eufemismo": "eufem", "euforia": "eufor", "eufrate": "eufr", "eugene": "eugen", "eugenio": "eugen", "èun": "èun", "eurisko": "eurisk", "eurispes": "eurispes", "euro": "eur", "euroazioni": "euroazion", "eurobond": "eurobond", "euromobiliare": "euromobil", "euromoney": "euromoney", "euronew": "euronew", "euronews": "euronews", "europa": "europ", "europarlamentare": "europarlament", "europe": "europ", "europea": "europe", "europee": "europe", "europei": "europe", "europeo": "europe", "europeò": "europe", "euroscetticismo": "euroscettic", "eurotunnel": "eurotunnel", "eusebio": "euseb", "eva": "eva", "evacuare": "evacu", "evacuato": "evacu", "evacuazione": "evacu", "evangelica": "evangel", "evangeliche": "evangel", "evangelici": "evangel", "evangelisti": "evangel", "evani": "evan", "evaporare": "evapor", "eventi": "event", "evento": "event", "eventuale": "eventual", "eventuali": "eventual", "eventualmente": "eventual", "evenutale": "evenutal", "evidente": "evident", "evidentemente": "evident", "evidenti": "evident", "evidenza": "evident", "evidenzia": "evidenz", "evidenziano": "evidenz", "evidenziati": "evidenz", "evidenziato": "evidenz", "evita": "evit", "evitabile": "evit", "evitando": "evit", "evitar": "evit", "evitare": "evit", "evitata": "evit", "eviti": "evit", "evo": "evo", "evolution": "evolution", "evolutivà": "evolutiv", "evolutivo": "evolut", "evoluzione": "evolu", "evoluzioni": "evolu", "evolversi": "evolv", "evviva": "evviv", "ex": "ex", "exa": "exa", "excelencia": "excelenc", "excelsi": "excels", "executive": "execut", "exercicio": "exercic", "exploit": "exploit", "expo": "expo", "export": "export", "express": "express", "exres": "exres", "extra": "extra", "extracomunitari": "extracomunitar", "extracomunitarie": "extracomunitar", "extracomunitario": "extracomunitar", "extrader": "extrader", "extraterrestre": "extraterrestr", "extraurbano": "extraurb", "extrema": "extrem", "extremis": "extremis", "exw": "exw", "ezio": "ezi", "ezln": "ezln", "f": "f", "fa": "fa", "faa": "faa", "fabbr": "fabbr", "fabbri": "fabbr", "fabbrica": "fabbric", "fabbricare": "fabbric", "fabbricatevelo": "fabbricatevel", "fabbricazine": "fabbricazin", "fabbricazione": "fabbric", "fabbriche": "fabbric", "fabbro": "fabbr", "fabian": "fabian", "fabianelli": "fabianell", "fabio": "fab", "fabrica": "fabric", "fabrizio": "fabriz", "fac": "fac", "facce": "facc", "faccenda": "facc", "faccende": "facc", "faccendiere": "faccend", "faccendole": "facc", "faccendoni": "faccendon", "facchini": "facchin", "faccia": "facc", "facciale": "faccial", "facciam": "facciam", "facciamo": "facc", "faccian": "faccian", "facciano": "facc", "facciata": "facc", "facciate": "facc", "faccio": "facc", "facciole": "facciol", "facendo": "fac", "facendoci": "fac", "facendogli": "fac", "facendoglielo": "fac", "facendola": "fac", "facendole": "fac", "facendolo": "fac", "facendone": "fac", "facendosegli": "facendosegl", "facendoselo": "facendosel", "facendosene": "fac", "facendosi": "fac", "facendovi": "fac", "facente": "facent", "facesse": "facess", "facesser": "facesser", "facessero": "fac", "facessi": "facess", "faceste": "facest", "faceva": "fac", "facevam": "facevam", "facevan": "facevan", "facevano": "fac", "facevo": "fac", "facile": "facil", "facili": "facil", "facilissima": "facilissim", "facilità": "facil", "facilitando": "facilit", "facilitar": "facilit", "facilitare": "facilit", "facilitato": "facilit", "faciliterà": "facilit", "facilmente": "facil", "facinorosi": "facinor", "facinoroso": "facinor", "facoltà": "facolt", "facoltosissimi": "facoltosissim", "facta": "fact", "factory": "factory", "factotum": "factotum", "faema": "faem", "faenza": "faenz", "faggio": "fagg", "fagocitati": "fagocit", "fagotti": "fagott", "fagottino": "fagottin", "fagotto": "fagott", "fai": "fai", "faida": "faid", "faine": "fain", "fair": "fair", "fakt": "fakt", "fal": "fal", "falce": "falc", "falck": "falck", "falco": "falc", "falcone": "falcon", "falda": "fald", "falde": "fald", "faldelle": "faldell", "falkirk": "falkirk", "falkland": "falkland", "fallato": "fall", "falle": "fall", "fallemente": "fallement", "fallimentare": "falliment", "fallimenti": "fall", "fallimento": "fall", "fallirà": "fall", "fallisce": "fall", "fallita": "fall", "fallito": "fall", "fallo": "fall", "falloso": "fallos", "falò": "fal", "falsa": "fals", "falsamente": "fals", "false": "fals", "falsi": "fals", "falsificazione": "falsif", "falsificazioni": "falsif", "falsifichi": "falsif", "falso": "fals", "fama": "fam", "fame": "fam", "famigerato": "famiger", "famiglia": "famigl", "famigliare": "famigl", "famigliari": "famigliar", "famigliarità": "famigliar", "famigliarizzarsi": "famigliarizz", "famigliarmente": "famigliar", "famiglie": "famigl", "famigliola": "famigliol", "familiare": "famil", "familiari": "familiar", "familiarità": "familiar", "family": "family", "fammi": "famm", "famosa": "famos", "famosi": "famos", "famosissimo": "famosissim", "famoso": "famos", "fan": "fan", "fanatica": "fanat", "fanatico": "fanat", "fanatismo": "fanat", "fanciulla": "fanciull", "fanciulle": "fanciull", "fanciulletta": "fanciullett", "fanciullezza": "fanciullezz", "fanciulli": "fanciull", "fanciullina": "fanciullin", "fanciulline": "fanciullin", "fanciullo": "fanciull", "fandonia": "fandon", "fandonie": "fandon", "fango": "fang", "fangosa": "fangos", "fanno": "fann", "fanny": "fanny", "fano": "fan", "fans": "fans", "fantascienza": "fantascient", "fantasia": "fantas", "fantasie": "fantas", "fantasime": "fantasim", "fantasma": "fantasm", "fantasmi": "fantasm", "fantastica": "fantast", "fantasticaggini": "fantasticaggin", "fantasticar": "fantastic", "fantasticare": "fantastic", "fantastico": "fantast", "fante": "fant", "fanteria": "fanter", "fanti": "fant", "fantoni": "fanton", "fantozzi": "fantozz", "fao": "fao", "far": "far", "fara": "far", "farà": "far", "farah": "farah", "farai": "fara", "faranno": "farann", "faraone": "faraon", "farassino": "farassin", "farcele": "farcel", "farci": "farc", "fare": "far", "farebbe": "farebb", "farebbero": "farebber", "farebbne": "farebbn", "farei": "fare", "faremmo": "far", "faremo": "farem", "fareste": "farest", "faresti": "farest", "farete": "far", "farfalla": "farfall", "farfalle": "farfall", "fargli": "fargl", "fargliela": "fargliel", "fargliele": "fargliel", "fargliene": "farglien", "farina": "farin", "farinacei": "farinace", "farinaioli": "farinaiol", "farine": "farin", "farinella": "farinell", "farinelli": "farinell", "farisei": "farise", "farla": "farl", "farle": "farl", "farli": "farl", "farlo": "farl", "farmaceutica": "farmaceut", "farmaci": "farmac", "farmacie": "farmac", "farmaco": "farmac", "farmela": "farmel", "farmelo": "farmel", "farmene": "farmen", "farmi": "farm", "farncese": "farnces", "farne": "farn", "farnesina": "farnesin", "farneti": "farnet", "faro": "far", "farò": "far", "faron": "faron", "farraginose": "farragin", "farris": "farris", "farsene": "farsen", "farsetti": "farsett", "farsetto": "farsett", "farsi": "fars", "farti": "fart", "faruk": "faruk", "farvela": "farvel", "farvelo": "farvel", "farvene": "farven", "farvi": "farv", "fasano": "fas", "fasce": "fasc", "fascia": "fasc", "fascicolo": "fascicol", "fascino": "fascin", "fascio": "fasc", "fascismo": "fascism", "fascista": "fascist", "fascisti": "fascist", "fase": "fas", "fasi": "fas", "faso": "fas", "fassa": "fass", "fassbinder": "fassbinder", "fast": "fast", "fasti": "fast", "fastidio": "fastid", "fastidiosa": "fastid", "fastidiosi": "fastid", "fastidioso": "fastid", "fastidiuccio": "fastidiucc", "fasto": "fast", "fasulli": "fasull", "fatale": "fatal", "fatali": "fatal", "fatalista": "fatal", "fatalisti": "fatal", "fate": "fat", "fategli": "fategl", "fatele": "fatel", "fateli": "fatel", "fatelo": "fatel", "fatemi": "fatem", "fatevi": "fat", "fatica": "fatic", "faticato": "fatic", "fatiche": "fatic", "faticosa": "fatic", "faticose": "fatic", "faticoso": "fatic", "fatima": "fatim", "fatma": "fatm", "fatt": "fatt", "fatta": "fatt", "fattaccio": "fattacc", "fattagli": "fattagl", "fattasi": "fattas", "fatte": "fatt", "fattempo": "fattemp", "fatti": "fatt", "fattibile": "fattibil", "fattizia": "fattiz", "fatto": "fatt", "fattore": "fattor", "fattoressa": "fattoress", "fattori": "fattor", "fattosi": "fattos", "fattura": "fattur", "fatturato": "fattur", "fatwà": "fatw", "fausto": "faust", "fautori": "fautor", "fautrice": "fautric", "favalli": "favall", "faverio": "faver", "favero": "faver", "favi": "fav", "favilla": "favill", "favo": "fav", "favole": "favol", "favoloso": "favol", "favor": "favor", "favore": "favor", "favoreggiamento": "favoregg", "favorendo": "favor", "favorevole": "favorevol", "favorevoli": "favorevol", "favorevolmente": "favorevol", "favorirà": "favor", "favorire": "favor", "favorirete": "favor", "favorirlo": "favor", "favorisce": "favor", "favorissero": "favor", "favorita": "favor", "favoriti": "favor", "favorito": "favor", "favre": "favr", "favrè": "favr", "favuzza": "favuzz", "fax": "fax", "fazio": "faz", "fazione": "fazion", "fazioni": "fazion", "fazzoletti": "fazzolett", "fazzoletto": "fazzolett", "fazzuoli": "fazzuol", "fb": "fb", "fbb": "fbb", "fc": "fc", "fcc": "fcc", "fdg": "fdg", "fe": "fe", "feb": "feb", "febbario": "febbar", "febbraio": "febbrai", "febbre": "febbr", "febbri": "febbr", "febbriciattole": "febbriciattol", "febbricitante": "febbricit", "febbrone": "febbron", "febraio": "febrai", "fece": "fec", "fecer": "fecer", "fecero": "fecer", "feci": "fec", "feciale": "fecial", "feciali": "fecial", "fecondazione": "fecond", "feconde": "fecond", "fed": "fed", "fedayn": "fedayn", "fede": "fed", "fedel": "fedel", "fedele": "fedel", "fedeli": "fedel", "fedelissimi": "fedelissim", "fedelmente": "fedel", "fedeltà": "fedelt", "federal": "federal", "federale": "federal", "federalè": "federal", "federali": "federal", "federalismo": "federal", "federalista": "federal", "federaliste": "federal", "federalisti": "federal", "federativi": "feder", "federativo": "feder", "federazione": "feder", "federcalcio": "federcalc", "federconsorzi": "federconsorz", "federcoopesca": "federcoopesc", "federica": "feder", "federici": "feder", "federico": "feder", "federigo": "federig", "federmar": "federm", "federmeccanica": "federmeccan", "federpesca": "federpesc", "federtrasporti": "federtrasport", "fedi": "fed", "fedrale": "fedral", "fedralismo": "fedral", "felci": "felc", "felice": "felic", "felicè": "felic", "felicemente": "felic", "felici": "felic", "felicità": "felic", "fellini": "fellin", "fellonesco": "fellonesc", "feltri": "feltr", "fem": "fem", "femmine": "femmin", "femminile": "femminil", "femminili": "femminil", "femmminili": "femmminil", "fendendo": "fend", "fendeva": "fend", "fenice": "fenic", "fenile": "fenil", "fenit": "fenit", "fenomeni": "fenomen", "fenomeno": "fenomen", "fenwick": "fenwick", "fercolo": "fercol", "ferdinando": "ferdin", "ferenc": "ferenc", "ferendo": "fer", "ferentes": "ferentes", "feretro": "feretr", "ferfin": "ferfin", "ferì": "fer", "feria": "fer", "ferimento": "fer", "ferire": "fer", "ferita": "fer", "ferite": "fer", "feriti": "fer", "ferito": "fer", "feritoia": "feritoi", "feritoie": "feritoi", "feritore": "feritor", "ferma": "ferm", "fermali": "fermal", "fermamente": "ferm", "fermana": "ferman", "fermandola": "ferm", "fermandosegli": "fermandosegl", "fermandosi": "ferm", "fermanelli": "fermanell", "fermano": "ferm", "fermar": "ferm", "fermarci": "ferm", "fermare": "ferm", "fermarlo": "ferm", "fermarmi": "ferm", "fermaron": "fermaron", "fermarono": "ferm", "fermarsi": "ferm", "fermarvi": "ferm", "fermasse": "ferm", "fermassero": "ferm", "fermata": "ferm", "fermate": "ferm", "fermati": "ferm", "fermatina": "fermatin", "fermatine": "fermatin", "fermato": "ferm", "fermatosi": "fermat", "fermava": "ferm", "fermavano": "ferm", "ferme": "ferm", "fermerà": "ferm", "fermeremo": "ferm", "fermerò": "ferm", "fermezza": "fermezz", "fermi": "ferm", "fermiamo": "ferm", "fermissimamente": "fermissim", "fermissimo": "fermissim", "fermo": "ferm", "fermò": "ferm", "fernanda": "fernand", "fernandez": "fernandez", "fernando": "fern", "feroce": "feroc", "ferocemente": "feroc", "ferocia": "feroc", "ferrante": "ferrant", "ferrara": "ferrar", "ferrarese": "ferrares", "ferraresi": "ferrares", "ferrari": "ferrar", "ferraris": "ferraris", "ferrati": "ferr", "ferrea": "ferre", "ferreira": "ferreir", "ferreo": "ferre", "ferrer": "ferrer", "ferrero": "ferrer", "ferri": "ferr", "ferrigno": "ferrign", "ferro": "ferr", "ferron": "ferron", "ferroni": "ferron", "ferroso": "ferros", "ferrovia": "ferrov", "ferroviari": "ferroviar", "ferroviaria": "ferroviar", "ferroviarie": "ferroviar", "ferroviario": "ferroviar", "ferrovie": "ferrov", "ferruzzi": "ferruzz", "fervidamente": "fervid", "fervore": "fervor", "fessa": "fess", "fessi": "fess", "fesso": "fess", "fessolino": "fessolin", "fessure": "fessur", "festa": "fest", "feste": "fest", "festeggerà": "festegg", "festeggia": "festegg", "festeggiamenti": "festegg", "festeggiare": "festegg", "festeggiata": "festegg", "festeggiatissimo": "festeggiatissim", "festini": "festin", "festiva": "fest", "festival": "festival", "fetente": "fetent", "fetor": "fetor", "fetta": "fett", "fette": "fett", "feudatarii": "feudatar", "feudatario": "feudatar", "feudi": "feud", "feudo": "feud", "ff": "ff", "fg": "fg", "fi": "fi", "fiaba": "fiab", "fiabe": "fiab", "fiacca": "fiacc", "fiaccate": "fiacc", "fiacchezza": "fiacchezz", "fiacchi": "fiacc", "fiacco": "fiacc", "fiaccole": "fiaccol", "fialdini": "fialdin", "fiamma": "fiamm", "fiammà": "fiamm", "fiammata": "fiamm", "fiammate": "fiamm", "fiamme": "fiamm", "fiancheggiata": "fianchegg", "fiancheggiate": "fianchegg", "fianchi": "fianc", "fianco": "fianc", "fiandra": "fiandr", "fiandre": "fiandr", "fiar": "fiar", "fiaschetti": "fiaschett", "fiaschetto": "fiaschett", "fiaschi": "fiasc", "fiasco": "fiasc", "fiat": "fiat", "fiata": "fiat", "fiatar": "fiat", "fiatare": "fiat", "fiatava": "fiat", "fiaterebbe": "fiat", "fiato": "fiat", "fiatò": "fiat", "fibra": "fibr", "fibre": "fibr", "ficca": "ficc", "ficcadenti": "ficcadent", "ficcan": "ficcan", "ficcandogli": "ficc", "ficcandosi": "ficc", "ficcare": "ficc", "ficcata": "ficc", "ficcati": "ficc", "ficcò": "ficc", "fiches": "fiches", "fichi": "fich", "fico": "fic", "fictas": "fictas", "fida": "fid", "fidando": "fid", "fidanzata": "fidanz", "fidanzato": "fidanz", "fidare": "fid", "fidarmi": "fid", "fidarsi": "fid", "fidarvi": "fid", "fidata": "fid", "fidate": "fid", "fidatevi": "fidat", "fidati": "fid", "fidatissimo": "fidatissim", "fidato": "fid", "fidecommisso": "fidecommiss", "fidei": "fide", "fideuram": "fideuram", "fidi": "fid", "fidiamo": "fid", "fidis": "fidis", "fido": "fid", "fidone": "fidon", "fiducia": "fiduc", "fiducià": "fiduc", "fiduciario": "fiduciar", "fiele": "fiel", "fieno": "fien", "fiera": "fier", "fieramente": "fier", "fiere": "fier", "fierezza": "fierezz", "fieri": "fier", "fieristica": "fierist", "fieristiche": "fierist", "fieristico": "fierist", "fiesole": "fiesol", "figli": "figl", "figlia": "figl", "figlie": "figl", "figlio": "figl", "figliolanza": "figliol", "figlioletta": "figliolett", "figlioletto": "figliolett", "figliuol": "figliuol", "figliuola": "figliuol", "figliuoli": "figliuol", "figliuolo": "figliuol", "fignolo": "fignol", "figueroa": "figuero", "figura": "figur", "figuracce": "figuracc", "figurando": "figur", "figurano": "figur", "figurare": "figur", "figurarsi": "figur", "figuratevi": "figurat", "figurati": "figur", "figurato": "figur", "figurava": "figur", "figuravano": "figur", "figure": "figur", "figureranno": "figur", "figuri": "figur", "figuriamoci": "figuriamoc", "figurine": "figurin", "figuro": "figur", "figurò": "figur", "fikret": "fikret", "fil": "fil", "fila": "fil", "filadelfia": "filadelf", "filanda": "filand", "filari": "filar", "filarmonica": "filarmon", "filastrocca": "filastrocc", "filaticcio": "filaticc", "filato": "fil", "filatoio": "filatoi", "filatore": "filator", "filatura": "filatur", "file": "fil", "files": "files", "fili": "fil", "filiali": "filial", "filicano": "filic", "filigrana": "filigran", "filipovic": "filipovic", "filippi": "filipp", "filippine": "filippin", "filippini": "filippin", "filippo": "filipp", "film": "film", "filmato": "film", "filmissimi": "filmissim", "filmtv": "filmtv", "filo": "fil", "filobus": "filobus", "filone": "filon", "filoni": "filon", "filoserbo": "filoserb", "filosofi": "filosof", "filosofia": "filosof", "filosofo": "filosof", "filt": "filt", "fim": "fim", "fimpar": "fimp", "fin": "fin", "finale": "final", "finali": "final", "finaliste": "final", "finalisti": "final", "finalità": "final", "finalizzata": "finalizz", "finalizzati": "finalizz", "finalizzato": "finalizz", "finalmente": "final", "finan": "finan", "finance": "financ", "financing": "financing", "finansur": "finansur", "finanz": "finanz", "finanza": "finanz", "finanze": "finanz", "finanzia": "finanz", "finanziamenti": "finanz", "finanziamento": "finanz", "finanziando": "finanz", "finanziare": "finanz", "finanziari": "finanziar", "finanziaria": "finanziar", "finanziarie": "finanziar", "finanziario": "finanziar", "finanziarla": "finanz", "finanziati": "finanz", "finanziato": "finanz", "finanziatori": "finanz", "finanziemnti": "finanziemnt", "finanziere": "finanz", "finarte": "finart", "fincantieri": "fincantier", "fincasa": "fincas", "finch": "finc", "finché": "finc", "finchè": "finc", "fine": "fin", "finendo": "fin", "finestra": "finestr", "finestre": "finestr", "finestrina": "finestrin", "finestrino": "finestrin", "finezze": "finezz", "fingendo": "fing", "fingendosi": "fing", "fini": "fin", "finì": "fin", "finiamola": "finiamol", "fininvest": "fininvest", "finir": "fin", "finirà": "fin", "finire": "fin", "finirebbe": "fin", "finirebbero": "fin", "finiremmo": "fin", "finirla": "fin", "finirlo": "fin", "finirò": "fin", "finirono": "fin", "finirsi": "fin", "finisca": "fin", "finiscano": "fin", "finisce": "fin", "finisco": "fin", "finiscono": "fin", "finisse": "finiss", "finissimo": "finissim", "finita": "fin", "finite": "fin", "finitela": "finitel", "finitezza": "finitezz", "finiti": "fin", "finito": "fin", "finiva": "fin", "finivan": "finivan", "finivano": "fin", "finlandese": "finlandes", "finlandia": "finland", "finmare": "finm", "finmark": "finmark", "finmeccanica": "finmeccan", "fino": "fin", "finora": "finor", "finrex": "finrex", "finse": "fins", "finsur": "finsur", "finta": "fint", "finti": "fint", "finto": "fint", "finzi": "finz", "finzioni": "finzion", "fio": "fio", "fioca": "fioc", "fioccano": "fiocc", "fioccavan": "fioccavan", "fiocchi": "fiocc", "fiochi": "fioc", "fioco": "fioc", "fiom": "fiom", "fionda": "fiond", "fior": "fior", "fiore": "fior", "fiorella": "fiorell", "fiorellini": "fiorellin", "fiorellino": "fiorellin", "fiorello": "fiorell", "fiorentina": "fiorentin", "fiorentino": "fiorentin", "fiorenzuola": "fiorenzuol", "fioretto": "fiorett", "fiori": "fior", "fiorì": "fior", "fiorino": "fiorin", "fiorita": "fior", "fiotto": "fiott", "fir": "fir", "firenze": "firenz", "firicano": "firic", "firma": "firm", "firmare": "firm", "firmata": "firm", "firmatari": "firmatar", "firmatario": "firmatar", "firmatati": "firmat", "firmate": "firm", "firmato": "firm", "firme": "firm", "firmeranno": "firm", "firmiamo": "firm", "firrincieli": "firrinciel", "fis": "fis", "fisafs": "fisafs", "fisarmonica": "fisarmon", "fiscale": "fiscal", "fiscali": "fiscal", "fiscalità": "fiscal", "fiscambi": "fiscamb", "fischi": "fisc", "fischiando": "fisc", "fischiare": "fisc", "fischiate": "fisc", "fischiato": "fisc", "fischietti": "fischiett", "fischio": "fisc", "fischìo": "fischì", "fischler": "fischler", "fisco": "fisc", "fisher": "fisher", "fisia": "fis", "fisica": "fisic", "fisicamente": "fisic", "fisiche": "fisic", "fisichella": "fisichell", "fisici": "fisic", "fisico": "fisic", "fisionomia": "fisionom", "fisionomici": "fisionom", "fisonomia": "fisonom", "fissa": "fiss", "fissan": "fissan", "fissando": "fiss", "fissandolo": "fiss", "fissar": "fiss", "fissare": "fiss", "fissarlo": "fiss", "fissata": "fiss", "fissate": "fiss", "fissati": "fiss", "fissato": "fiss", "fissava": "fiss", "fissavano": "fiss", "fissazione": "fissazion", "fisse": "fiss", "fisserà": "fiss", "fissi": "fiss", "fisso": "fiss", "fissò": "fiss", "fissore": "fissor", "fit": "fit", "fitta": "fitt", "fitte": "fitt", "fitti": "fitt", "fittiziamente": "fittiz", "fitto": "fitt", "fitzgerald": "fitzgerald", "fiuggi": "fiugg", "fiume": "fium", "fiumi": "fium", "fiumicino": "fiumicin", "fiuta": "fiut", "fiutano": "fiut", "fiutare": "fiut", "fixing": "fixing", "flachi": "flac", "flagella": "flagell", "flagelli": "flagell", "flagello": "flagell", "flamment": "flamment", "flash": "flash", "flavi": "flav", "flavia": "flav", "flavio": "flav", "flego": "fleg", "flegreo": "flegre", "flemma": "flemm", "flessibile": "flessibil", "flessibili": "flessibil", "flessibilità": "flessibil", "flessione": "flession", "flessori": "flessor", "flinn": "flinn", "flores": "flores", "floriancic": "floriancic", "florida": "florid", "floridezza": "floridezz", "floridissima": "floridissim", "florio": "flor", "floscia": "flosc", "floscio": "flosc", "flot": "flot", "flotta": "flott", "flussi": "fluss", "flutti": "flutt", "fluttuante": "fluttuant", "fluttuazione": "fluttuazion", "fluttuazioni": "fluttuazion", "fly": "fly", "flynn": "flynn", "fmi": "fmi", "fn": "fn", "fnle": "fnle", "fnsi": "fnsi", "fo": "fo", "foccillo": "foccill", "fochi": "foch", "foci": "foc", "focolaio": "focolai", "focolare": "focol", "focosa": "focos", "foday": "foday", "fodera": "foder", "fodero": "foder", "foga": "fog", "foggia": "fogg", "fogli": "fogl", "foglia": "fogl", "fogliame": "fogliam", "foglie": "fogl", "foglio": "fogl", "foglioni": "foglion", "fogna": "fogn", "fogne": "fogn", "foiano": "foi", "folclore": "folclor", "folgaria": "folgar", "folkloristico": "folklorist", "folla": "foll", "follà": "foll", "folle": "foll", "folli": "foll", "follia": "foll", "folloni": "follon", "folta": "folt", "folte": "folt", "folti": "folt", "folto": "folt", "fomentar": "foment", "fond": "fond", "fonda": "fond", "fondaccio": "fondacc", "fondachi": "fondac", "fondaco": "fondac", "fondali": "fondal", "fondamentale": "fondamental", "fondamentali": "fondamental", "fondamentalismo": "fondamental", "fondamenti": "fond", "fondamento": "fond", "fondandosi": "fond", "fondanti": "fondant", "fondare": "fond", "fondarle": "fond", "fondata": "fond", "fondate": "fond", "fondatezza": "fondatezz", "fondativo": "fondat", "fondato": "fond", "fondatore": "fondator", "fondatori": "fondator", "fondattivo": "fondatt", "fondazione": "fondazion", "fondazioni": "fondazion", "fondersel": "fondersel", "fondi": "fond", "fondiaria": "fondiar", "fondiario": "fondiar", "fondicri": "fondicr", "fondimpiego": "fondimpieg", "fondinvest": "fondinvest", "fondo": "fond", "fondoforte": "fondofort", "fondosviluppo": "fondosvilupp", "fondriest": "fondriest", "fonseca": "fonsec", "fonspa": "fonsp", "fontan": "fontan", "fontana": "fontan", "fontanella": "fontanell", "fonte": "font", "fonti": "font", "fontolan": "fontolan", "food": "food", "football": "football", "for": "for", "foraggieri": "foraggier", "foratura": "foratur", "forbici": "forbic", "forbite": "forb", "forca": "forc", "force": "forc", "forche": "forc", "forchetta": "forchett", "forchette": "forchett", "forcing": "forcing", "ford": "ford", "foreign": "foreign", "forense": "forens", "foresta": "forest", "forestale": "forestal", "forestali": "forestal", "foreste": "forest", "forestiera": "forestier", "forestieri": "forestier", "forestiero": "forestier", "forfettario": "forfettar", "forieri": "forier", "forlani": "forlan", "forli": "forl", "forlì": "forl", "forma": "form", "formaggi": "formagg", "formale": "formal", "formali": "formal", "formalità": "formal", "formalizzata": "formalizz", "formalizzato": "formalizz", "formalizzazione": "formalizz", "formalizzeranno": "formalizz", "formalmente": "formal", "formam": "formam", "forman": "forman", "formando": "form", "formano": "form", "formar": "form", "formare": "form", "formarla": "form", "formarne": "form", "formarono": "form", "formarsi": "form", "formata": "form", "formati": "form", "formatisi": "formatis", "formativo": "format", "formato": "form", "formava": "form", "formavano": "form", "formazione": "formazion", "formazioni": "formazion", "forme": "form", "formentini": "formentin", "formeranno": "form", "formi": "form", "formia": "form", "formicolaio": "formicolai", "formicolavan": "formicolavan", "formicolavano": "formicol", "formidabile": "formid", "formigoni": "formigon", "formò": "form", "formola": "formol", "formole": "formol", "formula": "formul", "formulare": "formul", "formulata": "formul", "formulate": "formul", "formulati": "formul", "formulato": "formul", "formulazione": "formul", "fornai": "forna", "fornaio": "fornai", "fornari": "fornar", "fornario": "fornar", "fornello": "fornell", "forni": "forn", "fornì": "forn", "fornir": "forn", "fornirà": "forn", "fornire": "forn", "fornisca": "forn", "fornisce": "forn", "fornita": "forn", "fornite": "forn", "forniti": "forn", "fornitissimo": "fornitissim", "fornito": "forn", "fornitore": "fornitor", "fornitura": "fornitur", "forniture": "fornitur", "forno": "forn", "fornte": "fornt", "forrest": "forrest", "forrester": "forrester", "fors": "fors", "forse": "fors", "forsennati": "forsenn", "forster": "forster", "forte": "fort", "fortemente": "fortement", "fortezza": "fortezz", "fortezze": "fortezz", "forti": "fort", "fortificato": "fortific", "fortissimo": "fortissim", "fortuite": "fortu", "fortuiti": "fortu", "fortuna": "fortun", "fortunamente": "fortun", "fortunata": "fortun", "fortunatamente": "fortunat", "fortunati": "fortun", "fortunato": "fortun", "fortune": "fortun", "fortunosamente": "fortun", "fortunoso": "fortun", "forum": "forum", "forusciti": "forusc", "foruscito": "forusc", "forza": "forz", "forzare": "forz", "forzassero": "forz", "forzata": "forz", "forzatamente": "forzat", "forzati": "forz", "forzato": "forz", "forzature": "forzatur", "forze": "forz", "forziste": "forzist", "forzò": "forz", "forzute": "forz", "fosca": "fosc", "fosche": "fosc", "fosco": "fosc", "foss": "foss", "fossa": "foss", "fossatello": "fossatell", "fossati": "foss", "fossato": "foss", "fosse": "foss", "fosser": "fosser", "fossero": "fosser", "fossi": "foss", "fossili": "fossil", "fossimo": "fossim", "fosso": "foss", "foste": "fost", "foster": "foster", "foto": "fot", "fotografi": "fotograf", "fotografia": "fotograf", "fotografica": "fotograf", "fotografie": "fotograf", "fotografo": "fotograf", "foulard": "foulard", "fpi": "fpi", "fra": "fra", "fracanzani": "fracanzan", "fracassarsi": "fracass", "fracassi": "frac", "fracasso": "fracass", "fradicio": "fradic", "fradiciume": "fradicium", "fragassi": "frag", "fragile": "fragil", "fragilità": "fragil", "fragorosi": "fragor", "fragranza": "fragranz", "fragranze": "fragranz", "fraintesa": "fraintes", "framatome": "framatom", "framatone": "framaton", "frammentarie": "frammentar", "frammenti": "framment", "frammento": "framment", "frammentò": "framment", "frammischiate": "frammisc", "frammischiava": "frammisc", "franca": "franc", "francais": "francais", "francamente": "franc", "france": "franc", "frances": "frances", "francesca": "francesc", "franceschetti": "franceschett", "francesco": "francesc", "francesconi": "francescon", "francese": "frances", "francesi": "frances", "franche": "franc", "franchezza": "franchezz", "franchi": "franc", "franchini": "franchin", "francia": "franc", "francica": "francic", "franciica": "franciic", "francisco": "franc", "franciscus": "franciscus", "francisque": "francisqu", "franck": "franck", "franco": "franc", "francobolli": "francoboll", "francoforte": "francofort", "francois": "francois", "frange": "frang", "frangente": "frangent", "frangenti": "frangent", "frangersi": "frang", "frangia": "frang", "franjo": "franj", "frank": "frank", "franke": "frank", "frankenstein": "frankenstein", "frankfurter": "frankfurter", "frankie": "frank", "franois": "franois", "frantende": "frant", "franteso": "frantes", "frantumi": "frantum", "franz": "franz", "franzone": "franzon", "franzoni": "franzon", "frapposti": "frappost", "frasca": "frasc", "frascati": "frasc", "frase": "fras", "frasi": "fras", "frassica": "frassic", "frastagliata": "frastagl", "frastono": "frast", "frastornato": "frastorn", "frate": "frat", "fratel": "fratel", "fratellanza": "fratell", "fratelli": "fratell", "fratellini": "fratellin", "fratellino": "fratellin", "fratello": "fratell", "fraterie": "frater", "fraterno": "fratern", "frati": "frat", "fraticello": "fraticell", "fratini": "fratin", "fratricida": "fratricid", "frattanto": "frattant", "frattempo": "frattemp", "frattini": "frattin", "frattura": "frattur", "fratture": "frattur", "fraudisque": "fraudisqu", "fraudolenta": "fraudolent", "fraudum": "fraudum", "frauenkirsche": "frauenkirsc", "fraz": "fraz", "frazionamento": "frazion", "frazione": "frazion", "fre": "fre", "frears": "frears", "fredda": "fredd", "freddamente": "fredd", "freddato": "fredd", "fredde": "fredd", "freddi": "fredd", "freddie": "fredd", "freddo": "fredd", "frederic": "frederic", "fredericks": "fredericks", "freeport": "freeport", "freetown": "freetown", "freeway": "freeway", "fregata": "freg", "fregate": "freg", "fregatina": "fregatin", "fregato": "freg", "fregava": "freg", "fremendo": "frem", "fremente": "frement", "fremevano": "frem", "fremito": "frem", "frenare": "fren", "frenata": "fren", "frenato": "fren", "frenesia": "frenes", "frenetici": "frenet", "frenetico": "frenet", "freni": "fren", "freno": "fren", "frequenta": "frequent", "frequentare": "frequent", "frequentarli": "frequent", "frequentata": "frequent", "frequentatori": "frequent", "frequentava": "frequent", "frequentavano": "frequent", "frequente": "frequent", "frequentemente": "frequent", "frequenti": "frequent", "frequentissime": "frequentissim", "frequenza": "frequenz", "fresca": "fresc", "fresche": "fresc", "freschi": "fresc", "fresco": "fresc", "frescolino": "frescolin", "fresi": "fres", "fretta": "frett", "frette": "frett", "frettolosi": "frettol", "frettoloso": "frettol", "fretus": "fretus", "frias": "frias", "frisani": "frisan", "frittata": "fritt", "friulana": "friulan", "friulano": "friul", "friuli": "friul", "frivolezza": "frivolezz", "frivolezze": "frivolezz", "frizzante": "frizzant", "frizzavano": "frizz", "frode": "frod", "fronda": "frond", "fronde": "frond", "frontale": "frontal", "fronte": "front", "fronteggiare": "frontegg", "fronteggiato": "frontegg", "fronteggiavano": "frontegg", "fronti": "front", "frontiera": "frontier", "frontiere": "front", "fronzuti": "fronz", "frosinone": "frosinon", "frottole": "frottol", "froze": "froz", "frugale": "frugal", "frugamenti": "frug", "frugando": "frug", "frugar": "frug", "frugare": "frug", "frugato": "frug", "frugavan": "frugavan", "frugavano": "frug", "frughi": "frug", "frugo": "frug", "frugò": "frug", "fruit": "fruit", "frullone": "frullon", "frulloni": "frullon", "fruscìo": "fruscì", "frusta": "frust", "frustata": "frust", "frustate": "frust", "fruste": "frust", "frutta": "frutt", "fruttare": "frutt", "frutte": "frutt", "frutterebbe": "frutt", "frutti": "frutt", "frutto": "frutt", "fs": "fs", "ft": "ft", "ftosi": "ftos", "fu": "fu", "fuan": "fuan", "fucilata": "fucil", "fucile": "fucil", "fucili": "fucil", "fuedo": "fued", "fuentes": "fuentes", "fuera": "fuer", "fuerit": "fuerit", "fuga": "fug", "fugace": "fugac", "fugare": "fug", "fugato": "fug", "fuggendo": "fugg", "fuggì": "fugg", "fuggiaschi": "fuggiasc", "fuggir": "fugg", "fuggire": "fugg", "fuggiron": "fuggiron", "fuggita": "fugg", "fuggiti": "fugg", "fuggitive": "fuggit", "fuggitivi": "fuggit", "fuggitivo": "fuggit", "fuggito": "fugg", "fuggiva": "fugg", "fughe": "fugh", "fui": "fui", "fuisse": "fuiss", "fuit": "fuit", "fujimori": "fujimor", "fulbright": "fulbright", "fulcro": "fulcr", "fulminato": "fulmin", "fulmini": "fulmin", "fuma": "fum", "fumagalli": "fumagall", "fumi": "fum", "fummo": "fumm", "fumo": "fum", "funari": "funar", "fund": "fund", "fune": "fun", "funebre": "funebr", "funebri": "funebr", "funerale": "funeral", "funerali": "funeral", "funesta": "funest", "funeste": "funest", "funesti": "funest", "funesto": "funest", "funzion": "funzion", "funziona": "funzion", "funzionale": "funzional", "funzionamento": "funzion", "funzionante": "funzion", "funzionare": "funzion", "funzionari": "funzionar", "funzionaria": "funzionar", "funzionario": "funzionar", "funzione": "funzion", "funzionerà": "funzion", "funzioni": "funzion", "fuochi": "fuoc", "fuoco": "fuoc", "fuor": "fuor", "fuorché": "fuorc", "fuori": "fuor", "fuoriclasse": "fuoricl", "fuorigioco": "fuorigioc", "fuorilegge": "fuorilegg", "fuoriscita": "fuorisc", "fuoristrada": "fuoristrad", "fuoriuscita": "fuoriusc", "fuoriusciti": "fuoriusc", "fuoriuscito": "fuoriusc", "furano": "fur", "furberie": "furber", "furbetta": "furbett", "furbi": "furb", "furbo": "furb", "furfante": "furfant", "furfanti": "furfant", "furfantone": "furfanton", "furfantoni": "furfanton", "furia": "fur", "furibonda": "furibond", "furibondi": "furibond", "furie": "fur", "furiosa": "furios", "furiosi": "furios", "furioso": "furios", "furon": "furon", "furoncoli": "furoncol", "furono": "fur", "furor": "furor", "furore": "furor", "furstenberg": "furstenberg", "furtivamente": "furtiv", "furto": "furt", "fuscagni": "fuscagn", "fuscelli": "fuscell", "fusco": "fusc", "fuseaux": "fuseaux", "fusella": "fusell", "fuser": "fuser", "fusione": "fusion", "fusioni": "fusion", "fuso": "fus", "fustagnai": "fustagna", "fustini": "fustin", "futre": "futr", "futura": "futur", "future": "futur", "futuri": "futur", "futuro": "futur", "futurò": "futur", "fv": "fv", "g": "g", "gabbi": "gabb", "gabbia": "gabb", "gabelliere": "gabell", "gabellieri": "gabellier", "gabellini": "gabellin", "gabetti": "gabett", "gabinetto": "gabinett", "gabino": "gabin", "gabon": "gabon", "gabriel": "gabriel", "gabriela": "gabriel", "gabriele": "gabriel", "gabrieli": "gabriel", "gabriella": "gabriell", "gadget": "gadget", "gaetano": "gaet", "gaffe": "gaff", "gaffes": "gaffes", "gaffiante": "gaffiant", "gag": "gag", "gagliarda": "gagliard", "gagliarde": "gagliard", "gagliardi": "gagliard", "gaiana": "gaian", "gaic": "gaic", "gaio": "gai", "gal": "gal", "gala": "gal", "galagoal": "galagoal", "galante": "galant", "galanteria": "galanter", "galanterie": "galanter", "galantuomini": "galantuomin", "galantuomo": "galantuom", "galassia": "galass", "galasso": "galass", "galateo": "galate", "galderisi": "galderis", "galdino": "galdin", "gale": "gal", "galea": "gale", "galeone": "galeon", "galeotte": "galeott", "galera": "galer", "galia": "gal", "galicia": "galic", "galilei": "galile", "galileo": "galile", "galioto": "galiot", "galla": "gall", "gallarate": "gallar", "gallarini": "gallarin", "galleggia": "gallegg", "galleggiante": "gallegg", "galleggiare": "gallegg", "gallegos": "gallegos", "galleria": "galler", "galles": "galles", "gallese": "galles", "galletti": "gallett", "galli": "gall", "galline": "gallin", "gallipoli": "gallipol", "gallo": "gall", "gallotta": "gallott", "galoppo": "galopp", "galoppò": "galopp", "galvanizzando": "galvanizz", "gama": "gam", "gamba": "gamb", "gambale": "gambal", "gambe": "gamb", "gamberini": "gamberin", "gambiere": "gamb", "gambini": "gambin", "gambino": "gambin", "game": "gam", "gamma": "gamm", "ganascino": "ganascin", "gand": "gand", "gande": "gand", "gandhi": "gandh", "gandini": "gandin", "gangheri": "gangher", "ganz": "ganz", "gap": "gap", "gar": "gar", "gara": "gar", "garage": "garag", "garante": "garant", "garanti": "garant", "garantire": "garant", "garantirebbe": "garant", "garantiremo": "garant", "garantirlo": "garant", "garantisce": "garant", "garantita": "garant", "garantiti": "garant", "garantito": "garant", "garanzia": "garanz", "garanzie": "garanz", "garavaglia": "garavagl", "garbata": "garb", "garbatamente": "garbat", "garbo": "garb", "garboli": "garbol", "garbugli": "garbugl", "garbuglio": "garbugl", "garcia": "garc", "garda": "gard", "garde": "gard", "gardena": "garden", "gardini": "gardin", "gardone": "gardon", "gardonese": "gardones", "gare": "gar", "gareggiando": "garegg", "gareggiato": "garegg", "gareggiavano": "garegg", "gargani": "gargan", "gargiulo": "gargiul", "garibaldi": "garibald", "garibaldì": "garibald", "garibaldini": "garibaldin", "garner": "garner", "garnett": "garnett", "garnier": "garnier", "garofalo": "garofal", "garrison": "garrison", "garzoncello": "garzoncell", "garzone": "garzon", "garzoni": "garzon", "gas": "gas", "gasdotto": "gasdott", "gaspare": "gasp", "gasparini": "gasparin", "gasparo": "gaspar", "gasparri": "gasparr", "gasperi": "gasper", "gasperis": "gasperis", "gassi": "gass", "gastiga": "gastig", "gastigamatti": "gastigamatt", "gastigarli": "gastig", "gastigati": "gastig", "gastigato": "gastig", "gastighi": "gastig", "gastigo": "gastig", "gatta": "gatt", "gattai": "gatta", "gatti": "gatt", "gatto": "gatt", "gattoni": "gatton", "gattuso": "gattus", "gaudagnano": "gaudagn", "gaudenzi": "gaudenz", "gaudio": "gaud", "gautieri": "gautier", "gava": "gav", "gavci": "gavc", "gaviglio": "gavigl", "gavino": "gavin", "gay": "gay", "gayet": "gayet", "gaz": "gaz", "gaza": "gaz", "gazebo": "gazeb", "gazebò": "gazeb", "gazeta": "gazet", "gazzetta": "gazzett", "gb": "gb", "gbr": "gbr", "gc": "gc", "gcos": "gcos", "gdf": "gdf", "ge": "ge", "gec": "gec", "geis": "geis", "geldolf": "geldolf", "gelfi": "gelf", "gelida": "gelid", "gelli": "gell", "gelosa": "gelos", "gelosamente": "gelos", "gelosia": "gelos", "geloso": "gelos", "gelsi": "gels", "gelso": "gels", "gelsomini": "gelsomin", "gem": "gem", "geme": "gem", "gemelle": "gemell", "gemevano": "gem", "gemina": "gemin", "gemiti": "gem", "gemma": "gemm", "gemonio": "gemon", "gen": "gen", "gena": "gen", "genarale": "genaral", "genca": "genc", "genco": "genc", "general": "general", "generale": "general", "generalfond": "generalfond", "generali": "general", "generalita": "general", "generaliter": "generaliter", "generalizzata": "generalizz", "generalmente": "general", "generata": "gener", "generation": "generation", "generatori": "gener", "generazione": "gener", "generazioni": "gener", "genercomit": "genercomit", "genere": "gen", "generecomit": "generecomit", "generi": "gener", "generiche": "gener", "generico": "gener", "genero": "gener", "generosa": "gener", "generosamente": "gener", "generosi": "gener", "generoso": "gener", "gengive": "gengiv", "genìa": "genì", "geniali": "genial", "genina": "genin", "genio": "gen", "genitori": "genitor", "geniturarum": "geniturarum", "gennaio": "gennai", "gennaro": "gennar", "genoa": "geno", "genoana": "genoan", "genoani": "genoan", "genoano": "gen", "genocidio": "genocid", "genova": "genov", "genovese": "genoves", "gente": "gent", "gentè": "gent", "genti": "gent", "gentil": "gentil", "gentildonna": "gentildonn", "gentile": "gentil", "gentilezza": "gentilezz", "gentilezze": "gentilezz", "gentili": "gentil", "gentilini": "gentilin", "gentilmente": "gentil", "gentiluomini": "gentiluomin", "gentiluomo": "gentiluom", "gentium": "gentium", "gentlemen": "gentlemen", "genuflessi": "genufless", "genuinamente": "genuin", "genuini": "genuin", "geodes": "geodes", "geofisico": "geofis", "geografica": "geograf", "geografiche": "geograf", "geologi": "geolog", "george": "georg", "georgetown": "georgetown", "georgia": "georg", "georgiana": "georgian", "gepi": "gep", "gepobond": "gepobond", "gepocapital": "gepocapital", "geporeinvest": "geporeinvest", "geporend": "geporend", "gepoworld": "gepoworld", "ger": "ger", "gera": "ger", "gerarchia": "gerarc", "gerardo": "gerard", "gergo": "gerg", "gerico": "geric", "gerla": "gerl", "gerle": "gerl", "gerletta": "gerlett", "germani": "german", "germania": "german", "germany": "germany", "germe": "germ", "germi": "germ", "germogliare": "germogl", "gerolamo": "gerolam", "gerold": "gerold", "gerry": "gerry", "gerson": "gerson", "gertrude": "gertrud", "gertrudina": "gertrudin", "gerusalemme": "gerusalemm", "gervaso": "gervas", "gesfimi": "gesfim", "gestapo": "gestap", "gestendo": "gest", "gesti": "gest", "gesticredit": "gesticredit", "gestielle": "gestiell", "gestifom": "gestifom", "gestifondi": "gestifond", "gestiob": "gestiob", "gestionali": "gestional", "gestione": "gestion", "gestirà": "gest", "gestiras": "gestiras", "gestire": "gest", "gestisce": "gest", "gestiscono": "gest", "gestite": "gest", "gestito": "gest", "gestnord": "gestnord", "gesto": "gest", "gestore": "gestor", "gestuale": "gestual", "gesù": "gesù", "getta": "gett", "gettando": "gett", "gettandole": "gett", "gettar": "gett", "gettare": "gett", "gettarono": "gett", "gettarsele": "gettarsel", "gettarsi": "gett", "gettasser": "gettasser", "gettata": "gett", "gettate": "gett", "gettato": "gett", "getters": "getters", "getti": "gett", "gettito": "gett", "getto": "gett", "gettò": "gett", "gewiss": "gewiss", "gg": "gg", "gh": "gh", "ghafoor": "ghafoor", "ghali": "ghal", "ghennadi": "ghennad", "ghermito": "gherm", "gheroni": "gheron", "ghetto": "ghett", "ghezzi": "ghezz", "ghiacci": "ghiacc", "ghiaccio": "ghiacc", "ghiaia": "ghiai", "ghiaie": "ghiai", "ghigno": "ghign", "ghirardelli": "ghirardell", "ghoober": "ghoober", "gi": "gi", "già": "già", "giacarta": "giacart", "giacché": "giacc", "giacciono": "giacc", "giace": "giac", "giacere": "giac", "giaceva": "giac", "giacevano": "giac", "giacimenti": "giac", "giacimento": "giac", "giacobbo": "giacobb", "giacomel": "giacomel", "giacomelli": "giacomell", "giacomin": "giacomin", "giacomo": "giacom", "gialappàs": "gialappàs", "gialla": "giall", "gialle": "giall", "gialli": "giall", "giallo": "giall", "gialloblù": "gialloblù", "giallognola": "giallognol", "giallorossa": "gialloross", "giallorosso": "gialloross", "giamai": "giama", "giamaica": "giamaic", "giambra": "giambr", "giammai": "giamma", "giampaolo": "giampaol", "giampiero": "giampier", "gian": "gian", "giancarlo": "gianc", "gianfranco": "gianfranc", "giangiacomo": "giangiacom", "gianluca": "gianluc", "gianluigi": "gianluig", "giannantonio": "giannanton", "giannatale": "giannatal", "giannetti": "giannett", "gianni": "giann", "giannini": "giannin", "giannino": "giannin", "giannuzzi": "giannuzz", "gianpaolo": "gianpaol", "giappone": "giappon", "giapponese": "giappones", "giapponesi": "giappones", "giapppone": "giapppon", "giarda": "giard", "giardin": "giardin", "giardinetto": "giardinett", "giardini": "giardin", "giardiniere": "giardin", "giardino": "giardin", "gifim": "gifim", "gigante": "gigant", "gigantesca": "gigantesc", "gigantesco": "gigantesc", "giganti": "gigant", "gigi": "gig", "gigli": "gigl", "giglio": "gigl", "gil": "gil", "gilardini": "gilardin", "gillian": "gillian", "gilly": "gilly", "gim": "gim", "gin": "gin", "gina": "gin", "ginevra": "ginevr", "ginn": "ginn", "ginnastica": "ginnast", "gino": "gin", "ginocchia": "ginocc", "ginocchio": "ginocc", "ginocchioni": "ginocchion", "gioca": "gioc", "giocando": "gioc", "giocano": "gioc", "giocare": "gioc", "giocata": "gioc", "giocate": "gioc", "giocato": "gioc", "giocator": "giocator", "giocatore": "giocator", "giocatori": "giocator", "giocava": "gioc", "giocavan": "giocavan", "giocavano": "gioc", "giocherà": "gioc", "giocheresti": "gioc", "giochetto": "giochett", "giochi": "gioc", "gioco": "gioc", "giocolieri": "giocolier", "giocondi": "giocond", "giocondità": "giocond", "giocondo": "giocond", "giocoso": "giocos", "giogaia": "giogai", "gioghi": "giog", "giogo": "giog", "gioia": "gioi", "gioie": "gioi", "gioiello": "gioiell", "gioiosa": "gioios", "giokhar": "giokh", "giombini": "giombin", "gionata": "gion", "gionate": "gion", "giordania": "giordan", "giordano": "giord", "gioregio": "gioreg", "giorgio": "giorg", "giorgione": "giorgion", "giornale": "giornal", "giornalè": "giornal", "giornali": "giornal", "giornaliera": "giornalier", "giornaliere": "giornal", "giornaliero": "giornalier", "giornalismo": "giornal", "giornalista": "giornal", "giornaliste": "giornal", "giornalisti": "giornal", "giornalistica": "giornalist", "giornalisticamente": "giornalist", "giornalistici": "giornalist", "giornalistico": "giornalist", "giornalisticò": "giornalistic", "giornalmente": "giornal", "giornalsti": "giornalst", "giornata": "giorn", "giornate": "giorn", "giorni": "giorn", "giorno": "giorn", "giosafat": "giosafat", "giova": "giov", "giovacchini": "giovacchin", "giovamento": "giov", "giovanbatista": "giovanbat", "giovanbattista": "giovanbatt", "giovane": "giovan", "giovanetto": "giovanett", "giovani": "giovan", "giovanile": "giovanil", "giovanili": "giovanil", "giovanni": "giovann", "giovanotto": "giovanott", "giovasse": "giov", "giovato": "giov", "giove": "giov", "giovedì": "gioved", "gioventù": "gioventù", "gioverebbero": "giov", "giovia": "giov", "gioviale": "giovial", "gioviali": "giovial", "giovinastri": "giovinastr", "giovine": "giovin", "giovinetta": "giovinett", "giovinette": "giovinett", "giovinetti": "giovinett", "giovinetto": "giovinett", "giovinezza": "giovinezz", "giovinissimo": "giovinissim", "giovinotto": "giovinott", "gip": "gip", "gipo": "gip", "gira": "gir", "giraldi": "girald", "giran": "giran", "girando": "gir", "girandolar": "girandol", "girandoli": "gir", "girar": "gir", "girare": "gir", "girata": "gir", "girati": "gir", "giratina": "giratin", "girato": "gir", "girava": "gir", "giravano": "gir", "giravolta": "giravolt", "giravolte": "giravolt", "giri": "gir", "girigogolo": "girigogol", "giro": "gir", "girò": "gir", "girolama": "girolam", "girolamo": "girolam", "girone": "giron", "gisutizia": "gisutiz", "gita": "git", "gitonga": "gitong", "giu": "giu", "giù": "giù", "giubbotti": "giubbott", "giubbotto": "giubbott", "giubileo": "giubile", "giubilo": "giubil", "giucas": "giucas", "giuda": "giud", "giudei": "giude", "giudeo": "giude", "giudica": "giudic", "giudicano": "giudic", "giudicante": "giudic", "giudicar": "giudic", "giudicare": "giudic", "giudicasse": "giudic", "giudicata": "giudic", "giudicate": "giudic", "giudicati": "giudic", "giudicato": "giudic", "giudice": "giudic", "giudici": "giudic", "giudicò": "giudic", "giudizi": "giudiz", "giudiziale": "giudizial", "giudiziari": "giudiziar", "giudiziaria": "giudiziar", "giudiziarie": "giudiziar", "giudiziario": "giudiziar", "giudizio": "giudiz", "giudizioaria": "giudizioar", "giudizioso": "giudiz", "giuerra": "giuerr", "giugni": "giugn", "giugno": "giugn", "giulia": "giul", "giuliana": "giulian", "giuliani": "giulian", "giuliano": "giul", "giulianova": "giulianov", "giulietta": "giuliett", "giulietti": "giuliett", "giulio": "giul", "giulivo": "giul", "giunga": "giung", "giunge": "giung", "giungendo": "giung", "giungere": "giung", "giungla": "giungl", "giungono": "giung", "giunse": "giuns", "giunsero": "giunser", "giunta": "giunt", "giuntarono": "giunt", "giunte": "giunt", "giunti": "giunt", "giunto": "giunt", "giuoco": "giuoc", "giura": "giur", "giuramenti": "giur", "giuramento": "giur", "giurando": "giur", "giurare": "giur", "giurata": "giur", "giurate": "giur", "giurati": "giur", "giurato": "giur", "giureconsulto": "giureconsult", "giuria": "giur", "giuriamo": "giur", "giuridica": "giurid", "giuridiche": "giurid", "giuridici": "giurid", "giuridico": "giurid", "giurisdizione": "giurisdizion", "giurisperiti": "giurisper", "giurisprudenza": "giurisprudent", "giuro": "giur", "giuseppa": "giusepp", "giuseppe": "giusepp", "giuseppina": "giuseppin", "giussano": "giuss", "giusta": "giust", "giustamente": "giust", "giuste": "giust", "giusti": "giust", "giustificare": "giustific", "giustificarlo": "giustific", "giustificarne": "giustific", "giustificata": "giustific", "giustificati": "giustific", "giustificato": "giustific", "giustificazione": "giustif", "giustificherò": "giustific", "giustiniani": "giustinian", "giustizia": "giustiz", "giustizialismo": "giustizial", "giustizie": "giustiz", "giustiziere": "giustiz", "giusto": "giust", "giustzia": "giustz", "gl": "gl", "glan": "glan", "glasgow": "glasgow", "glbale": "glbal", "glenn": "glenn", "gli": "gli", "gliel": "gliel", "gliela": "gliel", "gliele": "gliel", "glieli": "gliel", "glielo": "gliel", "glien": "glien", "gliene": "glien", "glissato": "gliss", "global": "global", "globale": "global", "globalizzazione": "globalizz", "globarend": "globarend", "globefish": "globefish", "globi": "glob", "globo": "glob", "gloria": "glor", "glorificato": "glorific", "gloriosa": "glorios", "gloriose": "glorios", "glorioso": "glorios", "gloucester": "gloucester", "gmbh": "gmbh", "gmr": "gmr", "gmt": "gmt", "gn": "gn", "gnl": "gnl", "gnutti": "gnutt", "gocciola": "gocciol", "gocciolanti": "gocciol", "gocciole": "gocciol", "gocciolino": "gocciolin", "gocciolo": "gocciol", "goccioloni": "gocciolon", "goda": "god", "godard": "godard", "goder": "goder", "godere": "god", "goderebbe": "god", "goderla": "god", "godersela": "godersel", "godersi": "god", "godesse": "godess", "godeva": "god", "godfrey": "godfrey", "godiamola": "godiamol", "godimenti": "god", "godo": "god", "godono": "god", "godrei": "godre", "godute": "god", "goduti": "god", "goduto": "god", "goebbels": "goebbels", "goetschi": "goetsc", "goffa": "goff", "goffaggine": "goffaggin", "goffamente": "goff", "gol": "gol", "gola": "gol", "golden": "golden", "goldman": "goldman", "goldstein": "goldstein", "gole": "gol", "goleador": "goleador", "golfi": "golf", "golfo": "golf", "golia": "gol", "golino": "golin", "golpe": "golp", "gomez": "gomez", "gomita": "gom", "gomitata": "gomit", "gomitate": "gomit", "gomiti": "gom", "gomito": "gom", "gomitolo": "gomitol", "gommapiuma": "gommapium", "gomme": "gomm", "gommoni": "gommon", "goncharenko": "goncharenk", "gonfaloni": "gonfalon", "gonfi": "gonf", "gonfiar": "gonf", "gonfiarono": "gonf", "gonfiata": "gonf", "gonfiato": "gonf", "gonfiava": "gonf", "gonfiavan": "gonfiavan", "gonfie": "gonf", "gonfio": "gonf", "gongola": "gongol", "gongolante": "gongol", "gonnella": "gonnell", "gonzaga": "gonzag", "gonzalo": "gonzal", "gora": "gor", "goran": "goran", "gorbaciov": "gorbaciov", "gordon": "gordon", "gorgiere": "gorg", "gorgoglia": "gorgogl", "gorgoglìo": "gorgoglì", "gorgonzola": "gorgonzol", "gori": "gor", "gorini": "gorin", "gortari": "gortar", "gosset": "gosset", "gote": "got", "gottardo": "gottard", "gouernatore": "gouern", "gourmelon": "gourmelon", "governabili": "govern", "governabilità": "govern", "governante": "govern", "governanti": "govern", "governare": "govern", "governarli": "govern", "governarsi": "govern", "governati": "govern", "governativa": "govern", "governative": "govern", "governativi": "govern", "governativo": "govern", "governatorato": "governator", "governatore": "govern", "governatori": "govern", "governavano": "govern", "governi": "govern", "governo": "govern", "gozzini": "gozzin", "gozzo": "gozz", "gozzovigliando": "gozzovigl", "gp": "gp", "gr": "gr", "grabbi": "grabb", "grabowsky": "grabowsky", "graciov": "graciov", "gradazioni": "gradazion", "gradevolmente": "gradevol", "gradi": "grad", "gradinata": "gradin", "gradinate": "gradin", "gradini": "gradin", "gradino": "gradin", "gradisca": "grad", "gradisce": "grad", "gradita": "grad", "gradito": "grad", "grado": "grad", "graduale": "gradual", "gradualmente": "gradual", "graduato": "gradu", "graduatorie": "graduator", "graffiato": "graff", "grafica": "grafic", "grafici": "grafic", "graham": "graham", "gramigne": "gramign", "grammatica": "grammat", "grammi": "gramm", "gramola": "gramol", "gran": "gran", "granadà": "granad", "granaglie": "granagl", "granai": "grana", "granaio": "granai", "granata": "gran", "granati": "gran", "grand": "grand", "grande": "grand", "grandeggiava": "grandegg", "grandezza": "grandezz", "grandezze": "grandezz", "grandi": "grand", "grandinato": "grandin", "grandine": "grandin", "grandini": "grandin", "grandiosa": "grandios", "grandiosi": "grandios", "grandissima": "grandissim", "grandissime": "grandissim", "grane": "gran", "granelli": "granell", "granello": "granell", "granferry": "granferry", "granger": "granger", "grani": "gran", "grano": "gran", "granocchia": "granocc", "grappa": "grapp", "grappoli": "grappol", "grasce": "grasc", "grassadonia": "grassadon", "grassetto": "grassett", "grassi": "grass", "grassoccia": "grassocc", "grassotto": "grassott", "grata": "grat", "grate": "grat", "grati": "grat", "gratias": "gratias", "graticcio": "graticc", "gratificata": "gratific", "gratis": "gratis", "gratitudine": "gratitudin", "grato": "grat", "gratuita": "gratu", "gratuitamente": "gratuit", "gratuiti": "gratu", "grave": "grav", "gravemente": "gravement", "gravezza": "gravezz", "gravezze": "gravezz", "gravi": "grav", "gravide": "gravid", "graviores": "graviores", "gravissime": "gravissim", "gravissimo": "gravissim", "gravità": "gravit", "gravitato": "gravit", "gravosa": "gravos", "gravoso": "gravos", "grazia": "graz", "graziato": "graz", "grazie": "graz", "graziosa": "grazios", "grazioso": "grazios", "grazzini": "grazzin", "greca": "grec", "grecia": "grec", "greco": "grec", "green": "green", "greenspan": "greenspan", "gregge": "gregg", "greggio": "gregg", "gregorio": "gregor", "gregucci": "gregucc", "grembiule": "grembiul", "gremisce": "grem", "gremita": "grem", "gremite": "grem", "gremiti": "grem", "gremito": "grem", "gremlin": "gremlin", "greppi": "grepp", "greppia": "grepp", "gretta": "grett", "gretto": "grett", "grevino": "grevin", "grid": "grid", "grida": "grid", "gridando": "grid", "gridano": "grid", "gridar": "grid", "gridare": "grid", "gridargli": "grid", "gridaron": "gridaron", "gridarono": "grid", "gridasse": "grid", "gridassero": "grid", "gridato": "grid", "gridatogli": "gridatogl", "gridava": "grid", "gridavano": "grid", "gride": "grid", "gridi": "grid", "grido": "grid", "gridò": "grid", "grifagni": "grifagn", "grifocapital": "grifocapital", "grifocash": "grifocash", "griforend": "griforend", "grigi": "grig", "grigia": "grig", "grigioni": "grigion", "grigiore": "grigior", "grignapoco": "grignapoc", "grilla": "grill", "grilli": "grill", "grillo": "grill", "grimaldi": "grimald", "grimaudo": "grimaud", "grinavi": "grin", "grinfie": "grinf", "grinta": "grint", "grintoso": "grintos", "grinze": "grinz", "grinzose": "grinzos", "griso": "gris", "grist": "grist", "grlic": "grlic", "grondaia": "grondai", "grondanti": "grondant", "groppino": "groppin", "grossa": "gross", "grosse": "gross", "grosseto": "grosset", "grossi": "gross", "grosso": "gross", "grossolana": "grossolan", "grossolane": "grossolan", "grotta": "grott", "grotte": "grott", "group": "group", "grozny": "grozny", "gruber": "gruber", "grucce": "grucc", "grupo": "grup", "gruppetto": "gruppett", "gruppi": "grupp", "gruppo": "grupp", "gruppoo": "gruppo", "grupppo": "gruppp", "grz": "grz", "gsm": "gsm", "gt": "gt", "gua": "gua", "guadagna": "guadagn", "guadagnar": "guadagn", "guadagnare": "guadagn", "guadagnati": "guadagn", "guadagnato": "guadagn", "guadagni": "guadagn", "guadagno": "guadagn", "guadagnò": "guadagn", "guadalupa": "guadalup", "guadalupe": "guadalup", "guadare": "guad", "guado": "guad", "guai": "gua", "guaio": "guai", "gualchiere": "gualc", "gualco": "gualc", "gualdo": "guald", "guance": "guanc", "guancia": "guanc", "guanciali": "guancial", "guancialino": "guancialin", "guanti": "guant", "guantiere": "guant", "guarda": "guard", "guardalinee": "guardaline", "guardando": "guard", "guardandogli": "guard", "guardandola": "guard", "guardandolo": "guard", "guardandosi": "guard", "guardano": "guard", "guardaos": "guardaos", "guardar": "guard", "guardarci": "guard", "guardare": "guard", "guardargli": "guard", "guardarla": "guard", "guardarle": "guard", "guardarlo": "guard", "guardarobi": "guardarob", "guardaron": "guardaron", "guardarono": "guard", "guardarsene": "guard", "guardarsi": "guard", "guardarvi": "guard", "guardasigilli": "guardasigill", "guardasse": "guard", "guardata": "guard", "guardate": "guard", "guardatemi": "guardatem", "guardati": "guard", "guardato": "guard", "guardatura": "guardatur", "guardava": "guard", "guardavan": "guardavan", "guardavano": "guard", "guarderò": "guard", "guardi": "guard", "guardia": "guard", "guardiana": "guardian", "guardiani": "guardian", "guardiano": "guard", "guardie": "guard", "guardinga": "guarding", "guardinghi": "guarding", "guardò": "guard", "guarì": "guar", "guaribili": "guaribil", "guarigione": "guarigion", "guarini": "guarin", "guarino": "guarin", "guarire": "guar", "guarisce": "guar", "guarisco": "guar", "guarita": "guar", "guariti": "guar", "guarito": "guar", "guaritori": "guaritor", "guaritrice": "guaritr", "guarivano": "guar", "guarnigione": "guarnigion", "guarnita": "guarn", "guarniti": "guarn", "guarracino": "guarracin", "guasta": "guast", "guastalla": "guastall", "guastamestieri": "guastamestier", "guastan": "guastan", "guastar": "guast", "guastare": "guast", "guastarli": "guast", "guastarmi": "guast", "guastate": "guast", "guastatori": "guastator", "guastava": "guast", "guasterebbe": "guast", "guasti": "guast", "guasto": "guast", "guastò": "guast", "guatemala": "guatemal", "guatemalteco": "guatemaltec", "guazza": "guazz", "guazzabugli": "guazzabugl", "guazzabuglio": "guazzabugl", "guazzo": "guazz", "gubbio": "gubb", "guenter": "guenter", "guenther": "guenther", "guera": "guer", "guerra": "guerr", "guerre": "guerr", "guerrero": "guerrer", "guerreschi": "guerresc", "guerresco": "guerresc", "guerricciole": "guerricciol", "guerriera": "guerrier", "guerriere": "guerr", "guerrieri": "guerrier", "guerriero": "guerrier", "guerrierò": "guerr", "guerriglia": "guerrigl", "guerriglieri": "guerriglier", "guerriglierìpag": "guerriglierìpag", "guerrigliero": "guerriglier", "guerrin": "guerrin", "guest": "guest", "guglielmo": "guglielm", "guglielmucci": "guglielmucc", "guglieri": "guglier", "guida": "guid", "guidar": "guid", "guidare": "guid", "guidarle": "guid", "guidata": "guid", "guidati": "guid", "guidato": "guid", "guidava": "guid", "guidavano": "guid", "guiderà": "guid", "guideranno": "guid", "guiderebbe": "guid", "guiderei": "guid", "guiderete": "guid", "guido": "guid", "guillen": "guillen", "guillermo": "guillerm", "guinea": "guine", "guisa": "guis", "guiso": "guis", "guizzi": "guizz", "guizzo": "guizz", "gulbuddin": "gulbuddin", "gullit": "gullit", "gullotta": "gullott", "gump": "gump", "gurra": "gurr", "guru": "guru", "gus": "gus", "gustare": "gust", "gustarla": "gust", "gustato": "gust", "gustavo": "gust", "gusto": "gust", "gustò": "gust", "gustosa": "gustos", "gutemberg": "gutemberg", "gutierrez": "gutierrez", "guy": "guy", "guyana": "guyan", "guzman": "guzman", "gymnuoto": "gymnuot", "gyver": "gyver", "h": "h", "ha": "ha", "haapakosti": "haapakost", "haaretz": "haaretz", "habbiamo": "habb", "hackett": "hackett", "haddad": "haddad", "hadi": "had", "haec": "haec", "hai": "hai", "haifa": "haif", "haiti": "hait", "haley": "haley", "halifax": "halifax", "hallara": "hallar", "halloween": "halloween", "hamac": "hamac", "hamas": "hamas", "hamburgher": "hamburgher", "hammallà": "hammall", "hammamet": "hammamet", "hammaquà": "hammaqu", "hammed": "hammed", "hampel": "hampel", "han": "han", "hanak": "hanak", "handicap": "handicap", "handicappati": "handicapp", "handicappato": "handicapp", "hann": "hann", "hanna": "hann", "hannah": "hannah", "hanno": "hann", "hanoi": "hano", "hans": "hans", "harald": "harald", "harare": "har", "harbour": "harbour", "harigà": "harig", "haris": "haris", "harjanne": "harjann", "haro": "har", "harrison": "harrison", "hashemi": "hashem", "hauendo": "hau", "hauer": "hauer", "hauere": "hau", "hauesse": "hauess", "hauessimo": "hauessim", "haueuano": "haueu", "haustam": "haustam", "hauuto": "hau", "havre": "havr", "hawaii": "hawai", "hays": "hays", "hazzard": "hazzard", "heads": "heads", "hearts": "hearts", "hebron": "hebron", "heimat": "heimat", "hekmatyar": "hekmaty", "held": "held", "helen": "helen", "helena": "helen", "helgenberger": "helgenberger", "helmut": "helmut", "helsinki": "helsink", "hemmings": "hemmings", "heniz": "heniz", "henrik": "henrik", "henry": "henry", "hepburn": "hepburn", "herald": "herald", "herba": "herb", "heroe": "hero", "heroi": "hero", "herrera": "herrer", "hervè": "herv", "herzog": "herzog", "hezb": "hezb", "hibernian": "hibernian", "highlander": "highlander", "hillman": "hillman", "hillo": "hill", "hills": "hills", "hiroyuki": "hiroyuk", "his": "his", "hispano": "hisp", "hist": "hist", "historia": "histor", "historiae": "historia", "hitler": "hitler", "hlena": "hlen", "ho": "ho", "hoc": "hoc", "hockey": "hockey", "hoffman": "hoffman", "hold": "hold", "holding": "holding", "holly": "holly", "hollywood": "hollywood", "hollywoodiano": "hollywood", "holm": "holm", "homefront": "homefront", "homer": "homer", "honesta": "honest", "honestas": "honestas", "hong": "hong", "honolulu": "honolulu", "hood": "hood", "hooker": "hooker", "horrori": "horror", "horst": "horst", "horthy": "horthy", "hospital": "hospital", "hossack": "hossack", "hostess": "hostess", "hostibus": "hostibus", "hot": "hot", "hotel": "hotel", "house": "hous", "houston": "houston", "hrovatin": "hrovatin", "hrw": "hrw", "hubbard": "hubbard", "huber": "huber", "hubert": "hubert", "hugo": "hug", "hullweck": "hullweck", "human": "human", "humana": "human", "hunt": "hunt", "huomini": "huomin", "hursk": "hursk", "hussein": "hussein", "hutchence": "hutchenc", "huygens": "huygens", "hydro": "hydro", "hynojosa": "hynojos", "i": "i", "ì": "ì", "ia": "ia", "iaaf": "iaaf", "iacchetti": "iacchett", "iachini": "iachin", "iacobelli": "iacobell", "ian": "ian", "ianì": "ian", "ianuae": "ianua", "ibarra": "ibarr", "ibbs": "ibbs", "ibca": "ibca", "iberdrola": "iberdrol", "ibf": "ibf", "ibm": "ibm", "ic": "ic", "icastico": "icast", "iccri": "iccri", "ici": "ici", "iconografica": "iconograf", "icordate": "icord", "icq": "icq", "idagine": "idagin", "iddio": "iddi", "idea": "ide", "ideale": "ideal", "idealè": "ideal", "ideali": "ideal", "idealità": "ideal", "ideatore": "ideator", "ideatori": "ideator", "idee": "ide", "ideli": "idel", "identica": "ident", "identico": "ident", "identificando": "identific", "identificare": "identific", "identificate": "identific", "identificati": "identific", "identificato": "identific", "identikit": "identikit", "identità": "ident", "ideò": "ide", "ideologia": "ideolog", "ideologiche": "ideolog", "ideologo": "ideolog", "idilliache": "idilliac", "idiotismi": "idiot", "idiozia": "idioz", "idoena": "idoen", "idolatrava": "idolatr", "idoli": "idol", "idolo": "idol", "idonee": "idone", "idoneo": "idone", "idorelettrici": "idorelettr", "idra": "idra", "idriche": "idric", "idrico": "idric", "idrocarburi": "idrocarbur", "idroelettrica": "idroelettr", "idroelettriche": "idroelettr", "idroelettrici": "idroelettr", "idrofobo": "idrofob", "idwa": "idwa", "ielo": "iel", "ielpo": "ielp", "ieltsin": "ieltsin", "ier": "ier", "ierardi": "ierard", "ieri": "ier", "ierlaltro": "ierlaltr", "ierreversibile": "ierrevers", "ievghenia": "ievghen", "ifi": "ifi", "ifil": "ifil", "ifis": "ifis", "ig": "ig", "igea": "ige", "ignara": "ignar", "ignari": "ignar", "ignazio": "ignaz", "ignea": "igne", "ignobile": "ignobil", "ignora": "ignor", "ignorando": "ignor", "ignorantaggine": "ignorantaggin", "ignorante": "ignor", "ignoranti": "ignor", "ignoranza": "ignor", "ignorate": "ignor", "ignorati": "ignor", "ignorato": "ignor", "ignorava": "ignor", "ignote": "ignot", "ignoti": "ignot", "ignotum": "ignotum", "ignudi": "ignud", "igor": "igor", "igpa": "igpa", "ih": "ih", "ii": "ii", "iii": "iii", "il": "il", "ilari": "ilar", "ilaria": "ilar", "ilarità": "ilar", "ilcorpo": "ilcorp", "ilgoverno": "ilgovern", "iliade": "iliad", "ilic": "ilic", "ilidza": "ilidz", "ilirià": "ilir", "ilitare": "ilit", "illanguidire": "illanguid", "illazioni": "illazion", "illecita": "illec", "illeciti": "illec", "illecito": "illec", "illegali": "illegal", "illegalmente": "illegal", "illegittima": "illegittim", "illegittimo": "illegittim", "illesi": "illes", "illeso": "illes", "illetterati": "illetter", "illimitata": "illimit", "illimitatamente": "illimitat", "illimitato": "illimit", "illius": "illius", "illuderci": "illud", "illumina": "illumin", "illuminare": "illumin", "illuminato": "illumin", "illuminazione": "illumin", "illuminò": "illumin", "illusione": "illusion", "illusorio": "illusor", "illustra": "illustr", "illustrare": "illustr", "illustrata": "illustr", "illustrate": "illustr", "illustrato": "illustr", "illustrazione": "illustr", "illustre": "illustr", "illustrerà": "illustr", "illustreranno": "illustr", "illustri": "illustr", "illustrissima": "illustrissim", "illustrissimo": "illustrissim", "ilor": "ilor", "ilva": "ilva", "imam": "imam", "imbacuccarla": "imbacucc", "imbalsamando": "imbalsam", "imbarazzante": "imbarazz", "imbarazzato": "imbarazz", "imbarazzo": "imbarazz", "imbarcano": "imbarc", "imbarcarci": "imbarc", "imbarcarmi": "imbarc", "imbarcarsi": "imbarc", "imbarcati": "imbarc", "imbarcato": "imbarc", "imbarcazioni": "imbarc", "imbasciata": "imbasc", "imbasciate": "imbasc", "imbatte": "imbatt", "imbattuto": "imbatt", "imbelle": "imbell", "imbestialì": "imbestial", "imbiancatura": "imbiancatur", "imbiondire": "imbiond", "imboccar": "imbocc", "imboccare": "imbocc", "imboccata": "imbocc", "imboccato": "imbocc", "imboccatura": "imboccatur", "imbocchi": "imbocc", "imborglione": "imborglion", "imboscarsi": "imbosc", "imboscata": "imbosc", "imbrattare": "imbratt", "imbrattate": "imbratt", "imbrattati": "imbratt", "imbrattava": "imbratt", "imbrogli": "imbrogl", "imbroglian": "imbroglian", "imbrogliando": "imbrogl", "imbrogliar": "imbrogl", "imbrogliare": "imbrogl", "imbrogliarle": "imbrogl", "imbrogliata": "imbrogl", "imbrogliate": "imbrogl", "imbrogliati": "imbrogl", "imbrogliato": "imbrogl", "imbrogliava": "imbrogl", "imbroglio": "imbrogl", "imbroglione": "imbroglion", "imbrunire": "imbrun", "imemdiato": "imemd", "imerese": "imeres", "imi": "imi", "imibond": "imibond", "imicapital": "imicapital", "imieast": "imieast", "imieurope": "imieurop", "imindustria": "imindustr", "imirend": "imirend", "imitare": "imit", "imitava": "imit", "imitazione": "imit", "imiwest": "imiwest", "imm": "imm", "immagazzinare": "immagazzin", "immagina": "immagin", "immaginandosi": "immagin", "immaginano": "immagin", "immaginar": "immagin", "immaginare": "immagin", "immaginari": "immaginar", "immaginaria": "immaginar", "immaginarne": "immagin", "immaginarsela": "immaginarsel", "immaginarselo": "immaginarsel", "immaginarsi": "immagin", "immaginarvi": "immagin", "immaginata": "immagin", "immaginate": "immagin", "immaginatevi": "immaginat", "immaginativa": "immagin", "immaginato": "immagin", "immaginava": "immagin", "immaginazion": "immaginazion", "immaginazione": "immagin", "immaginazioni": "immagin", "immagine": "immagin", "immaginè": "immagin", "immaginerebbe": "immagin", "immagini": "immagin", "immagino": "immagin", "immaginò": "immagin", "immaginosa": "immagin", "immantinente": "immantinent", "immatricolate": "immatricol", "immatricolato": "immatricol", "immatricolazioni": "immatricol", "immaturità": "immatur", "immedesimata": "immedesim", "immediata": "immed", "immediatamente": "immediat", "immediate": "immed", "immediatezza": "immediatezz", "immediati": "immed", "immediato": "immed", "immemorabile": "immemor", "immensa": "immens", "immenso": "immens", "immeritato": "immerit", "immerso": "immers", "immettere": "immett", "immigrati": "immigr", "immigratorie": "immigrator", "immigrazione": "immigr", "imminente": "imminent", "imminenza": "imminent", "immissione": "immission", "immobile": "immobil", "immobili": "immobil", "immobiliare": "immobil", "immobiliari": "immobiliar", "immobilismo": "immobil", "immobilità": "immobil", "immobilizzarlo": "immobilizz", "immobilizzato": "immobilizz", "immolato": "immol", "immondizia": "immondiz", "immondizie": "immondiz", "immondo": "immond", "immortale": "immortal", "immota": "immot", "immoto": "immot", "immune": "immun", "immuni": "immun", "immunità": "immun", "immutate": "immut", "immutato": "immut", "imola": "imol", "impacciata": "impacc", "impadronirà": "impadron", "impadroniron": "impadroniron", "impadronirsene": "impadron", "impallidì": "impallid", "impaniata": "impan", "impannata": "impann", "impannate": "impann", "impara": "impar", "imparando": "impar", "imparassero": "impar", "imparassimo": "impar", "imparate": "impar", "imparati": "impar", "imparato": "impar", "impari": "impar", "imparò": "impar", "imparzialità": "imparzial", "impasse": "impass", "impassibile": "impass", "impastocchiarvi": "impastocc", "impastocchiate": "impastocc", "impattarla": "impatt", "impatto": "impatt", "impaurirla": "impaur", "impaziente": "impazient", "impazientisce": "impazient", "impazientito": "impazient", "impazienza": "impazient", "impazzano": "impazz", "impazzata": "impazz", "impedendo": "imped", "impedendogli": "imped", "impedimenti": "imped", "impedimento": "imped", "impedir": "imped", "impedire": "imped", "impedirebbe": "imped", "impedirgli": "imped", "impedirla": "imped", "impedirle": "imped", "impedirlo": "imped", "impedirne": "imped", "impedirtela": "imped", "impedisca": "imped", "impedisce": "imped", "impediscono": "imped", "impedisse": "impediss", "impedissero": "imped", "impedito": "imped", "impediva": "imped", "impedivano": "imped", "impegna": "impegn", "impegnando": "impegn", "impegnandosi": "impegn", "impegnano": "impegn", "impegnare": "impegn", "impegnarmi": "impegn", "impegnarsi": "impegn", "impegnasse": "impegn", "impegnassero": "impegn", "impegnata": "impegn", "impegnate": "impegn", "impegnati": "impegn", "impegnative": "impegn", "impegnato": "impegn", "impegnavano": "impegn", "impegneranno": "impegn", "impegni": "impegn", "impegnino": "impegnin", "impegno": "impegn", "impegnò": "impegn", "impenetrabile": "impenetr", "impennarsi": "impenn", "impennata": "impenn", "impensabile": "impens", "impensata": "impens", "impensati": "impens", "impensato": "impens", "imperativo": "imper", "imperator": "imperator", "imperatore": "imper", "impercettibile": "impercett", "imperciocché": "imperciocc", "imperdonabile": "imperdon", "imperfetta": "imperfett", "imperfettione": "imperfettion", "imperfetto": "imperfett", "imperfezion": "imperfezion", "imperia": "imper", "imperiale": "imperial", "imperiese": "imperies", "imperiosa": "imper", "imperiose": "imper", "imperioso": "imper", "impero": "imper", "imperscrutabile": "imperscrut", "imperterrito": "imperterr", "impertinenze": "impertinent", "imperturbabile": "imperturb", "imperturbata": "imperturb", "imperversar": "impervers", "imperversato": "impervers", "impeto": "impet", "impetrata": "impetr", "impetuosa": "impetu", "impetuosamente": "impetu", "impetuosi": "impetu", "impetuoso": "impetu", "imphal": "imphal", "impianti": "impiant", "impianto": "impiant", "impiastramento": "impiastr", "impiastro": "impiastr", "impiccar": "impicc", "impiccarli": "impicc", "impiccati": "impicc", "impiccato": "impicc", "impiccheranno": "impicc", "impicci": "impicc", "impicciano": "impicc", "impicciare": "impicc", "impicciarmene": "impicc", "impicciarsi": "impicc", "impicciata": "impicc", "impicciate": "impicc", "impicciati": "impicc", "impicciato": "impicc", "impicciavan": "impicciavan", "impiccio": "impicc", "impiccione": "impiccion", "impiega": "impieg", "impiegar": "impieg", "impiegarci": "impieg", "impiegare": "impieg", "impiegarle": "impieg", "impiegarli": "impieg", "impiegarne": "impieg", "impiegarono": "impieg", "impiegarsi": "impieg", "impiegata": "impieg", "impiegate": "impieg", "impiegati": "impieg", "impiegato": "impieg", "impiegatovi": "impiegatov", "impiegherebbero": "impieg", "impieghi": "impieg", "impieghiamo": "impieg", "impiego": "impieg", "impigrito": "impigr", "impiparsi": "impip", "impipo": "impip", "implacabile": "implac", "implica": "implic", "implicata": "implic", "implicati": "implic", "implicato": "implic", "implici": "implic", "implicitamente": "implicit", "implorando": "implor", "implorar": "implor", "implorare": "implor", "implorata": "implor", "implorato": "implor", "implorava": "implor", "imploravan": "imploravan", "imploravano": "implor", "implori": "implor", "imploriate": "implor", "impone": "impon", "imponendogli": "impon", "imponendosi": "impon", "imponente": "imponent", "imponesse": "imponess", "imponeva": "impon", "imponevano": "impon", "imponga": "impong", "imponibile": "impon", "impor": "impor", "imporre": "imporr", "import": "import", "importa": "import", "importabili": "import", "importante": "import", "importanti": "import", "importantissimi": "importantissim", "importantissimo": "importantissim", "importanza": "import", "importarne": "import", "importasse": "import", "importata": "import", "importati": "import", "importatore": "import", "importatori": "import", "importava": "import", "importazione": "import", "importazioni": "import", "importo": "import", "importuna": "importun", "impose": "impos", "impositiva": "imposit", "imposizion": "imposizion", "imposizione": "imposizion", "imposizioni": "imposizion", "impossessa": "impossess", "impossessati": "impossess", "impossessava": "impossess", "impossibile": "imposs", "impossibili": "imposs", "impossibilità": "impossibil", "imposta": "impost", "impostale": "impostal", "impostate": "impost", "impostato": "impost", "impostazione": "impost", "imposte": "impost", "impostesi": "impostes", "imposti": "impost", "imposto": "impost", "impostore": "impostor", "impostori": "impostor", "impostura": "impostur", "impotenza": "impotent", "impoverimento": "impover", "imprecando": "imprec", "imprecazione": "imprec", "imprecazioni": "imprec", "imprecisi": "imprecis", "impreditore": "impreditor", "impregilo": "impregil", "imprendibile": "imprend", "imprenditore": "imprenditor", "imprenditori": "imprenditor", "imprenditoria": "imprenditor", "imprenditoriale": "imprenditorial", "imprenditoriali": "imprenditorial", "imprenditorialità": "imprenditorial", "imprenditrice": "imprenditr", "impresa": "impres", "impresari": "impresar", "imprese": "impres", "impresse": "impress", "impressionante": "impression", "impressionati": "impression", "impressione": "impression", "impressioni": "impression", "impressissetve": "impressissetv", "impresso": "impress", "imprestati": "imprest", "imprestiti": "imprest", "imprevedibile": "impreved", "impreveduta": "impreved", "impreveduto": "impreved", "imprevista": "imprev", "impreziosito": "imprezios", "imprimatur": "imprimatur", "imprimere": "imprim", "imprimeva": "imprim", "improduttive": "improdutt", "improperi": "improper", "improperio": "improper", "improponibile": "impropon", "improponibili": "impropon", "impropriamente": "impropr", "improvvida": "improvvid", "improvvisa": "improvvis", "improvvisamente": "improvvis", "improvvisi": "improvvis", "improvviso": "improvvis", "imprudente": "imprudent", "impugnando": "impugn", "impugnare": "impugn", "impugnati": "impugn", "impugnato": "impugn", "impugnatori": "impugn", "impugnatura": "impugnatur", "impulso": "impuls", "impunemente": "impun", "impunità": "impun", "impunito": "impun", "impuntano": "impunt", "imputata": "imput", "imputati": "imput", "imputato": "imput", "imputazione": "imput", "imr": "imr", "in": "in", "ina": "ina", "inabile": "inabil", "inabili": "inabil", "inabilità": "inabil", "inaccettabile": "inaccett", "inaccettabili": "inaccett", "inadeguatezza": "inadeguatezz", "inaequaliterque": "inaequaliterqu", "inail": "inail", "inalberar": "inalber", "inalberò": "inalb", "inalterabile": "inalter", "inalterato": "inalter", "inamidate": "inamid", "inammissibile": "inammiss", "inanimata": "inanim", "inappellabile": "inappell", "inarcare": "inarc", "inarticolato": "inarticol", "inaspettata": "inaspett", "inaspettatamente": "inaspettat", "inaspettate": "inaspett", "inaspettati": "inaspett", "inaspettato": "inaspett", "inasprimento": "inaspr", "inasprissero": "inaspr", "inattuato": "inattu", "inaudita": "inaud", "inaugura": "inaugur", "inaugurare": "inaugur", "inaugurata": "inaugur", "inaugurate": "inaugur", "inaugurati": "inaugur", "inaugurato": "inaugur", "inaugurazione": "inaugur", "inaugurerà": "inaugur", "inazione": "inazion", "incagli": "incagl", "incagliata": "incagl", "incaglio": "incagl", "incalza": "incalz", "incalzante": "incalz", "incalzanti": "incalz", "incalzare": "incalz", "incalzati": "incalz", "incammina": "incammin", "incamminaron": "incamminaron", "incamminarono": "incammin", "incamminata": "incammin", "incamminati": "incammin", "incamminato": "incammin", "incamminavano": "incammin", "incamminò": "incammin", "incanalare": "incanal", "incanalarla": "incanal", "incannar": "incann", "incantare": "incant", "incantarla": "incant", "incantata": "incant", "incantati": "incant", "incantato": "incant", "incanti": "incant", "incanto": "incant", "incapace": "incapac", "incapaci": "incapac", "incappati": "incapp", "incappucciando": "incappucc", "incappucciati": "incappucc", "incappucciato": "incappucc", "incaprettatò": "incaprettat", "incapricciata": "incapricc", "incaricandosi": "incaric", "incaricarsi": "incaric", "incaricati": "incaric", "incaricato": "incaric", "incarichi": "incar", "incarico": "incar", "incarnate": "incarn", "incarnazione": "incarn", "incassando": "incass", "incassarne": "incass", "incassi": "incass", "incasso": "incass", "incastravano": "incastr", "incatasciato": "incatasc", "incatenano": "incaten", "incatenato": "incaten", "incauta": "inca", "incavati": "incav", "incendi": "incend", "incendiarie": "incendiar", "incendiata": "incend", "incendiati": "incend", "incendio": "incend", "incensi": "incens", "incentivi": "incent", "incentrata": "incentr", "incentrato": "incentr", "inceppare": "incepp", "incerata": "incer", "incerta": "incert", "incerte": "incert", "incertezza": "incertezz", "incertezze": "incertezz", "incerti": "incert", "incerto": "incert", "incessante": "incess", "incessanti": "incess", "incetta": "incett", "incettatori": "incett", "inchiesta": "inchiest", "inchieste": "inchiest", "inchinandosi": "inchin", "inchinarono": "inchin", "inchinato": "inchin", "inchinatolo": "inchinatol", "inchinavano": "inchin", "inchini": "inchin", "inchino": "inchin", "inchinò": "inchin", "inchiodano": "inchiod", "inchiodar": "inchiod", "inchiodati": "inchiod", "inchiodato": "inchiod", "inchiodò": "inchiod", "inchiona": "inchion", "inchiostri": "inchiostr", "inchiostro": "inchiostr", "inciamparci": "inciamp", "inciampava": "inciamp", "inciampi": "inciamp", "inciampo": "inciamp", "incidente": "incident", "incidentemente": "incident", "incidenti": "incident", "incidere": "incid", "incinta": "incint", "incintamento": "incint", "incirca": "incirc", "incise": "incis", "incisiva": "incis", "incita": "incit", "incitamenti": "incit", "incitamento": "incit", "incitare": "incit", "incivile": "incivil", "inclinando": "inclin", "inclinano": "inclin", "inclinar": "inclin", "inclinata": "inclin", "inclinati": "inclin", "inclinato": "inclin", "inclinazione": "inclin", "inclinazioni": "inclin", "incline": "inclin", "incliniamo": "inclin", "inclita": "inclit", "incluso": "inclus", "incocciati": "incocc", "incognita": "incogn", "incollati": "incoll", "incollato": "incoll", "incolpati": "incolp", "incolpava": "incolp", "incolpevole": "incolpevol", "incolpevoli": "incolpevol", "incolta": "incolt", "incolti": "incolt", "incolumità": "incolum", "incombente": "incombent", "incombenza": "incombent", "incominciare": "incominc", "incominciata": "incominc", "incominciati": "incominc", "incominciava": "incominc", "incomoda": "incomod", "incomodare": "incomod", "incomodarla": "incomod", "incomodarsi": "incomod", "incomodasse": "incomod", "incomodata": "incomod", "incomodate": "incomod", "incomodato": "incomod", "incomodi": "incomod", "incomodiate": "incomod", "incomodo": "incomod", "incomparabile": "incompar", "incompatibile": "incompat", "incompatibilità": "incompatibil", "incompetente": "incompetent", "incomprensibile": "incomprens", "incomprensioni": "incomprension", "incomunicabile": "incomunic", "incomunicabili": "incomunic", "inconcludente": "inconcludent", "inconcludenti": "inconcludent", "incondizionato": "incondizion", "incongruenze": "incongruent", "incongruità": "incongru", "inconsiderato": "inconsider", "incontaminata": "incontamin", "incontanente": "incontanent", "inconterà": "incont", "incontra": "incontr", "incontrando": "incontr", "incontrandola": "incontr", "incontrandolo": "incontr", "incontrano": "incontr", "incontrar": "incontr", "incontrare": "incontr", "incontrarlo": "incontr", "incontrarmi": "incontr", "incontrarne": "incontr", "incontrarono": "incontr", "incontrarsi": "incontr", "incontrasse": "incontr", "incontrassero": "incontr", "incontrassimo": "incontr", "incontrastata": "incontrast", "incontrate": "incontr", "incontrati": "incontr", "incontrato": "incontr", "incontrava": "incontr", "incontravamo": "incontr", "incontravano": "incontr", "incontrerà": "incontr", "incontreranno": "incontr", "incontrerebbe": "incontr", "incontri": "incontr", "incontriamo": "incontr", "incontrino": "incontrin", "incontro": "incontr", "incontrò": "incontr", "incontrollate": "incontroll", "incontrollato": "incontroll", "inconveniente": "inconvenient", "inconvenienti": "inconvenient", "incoraggiamenti": "incoragg", "incoraggianti": "incoragg", "incoraggiare": "incoragg", "incoraggiasse": "incoragg", "incoraggiti": "incoragg", "incoraggito": "incoragg", "incorporazioni": "incorpor", "incorra": "incorr", "incorrere": "incorr", "incorrerebbero": "incorr", "incostituzionalità": "incostituzional", "incredibile": "incred", "incredibilmente": "incredibil", "incredule": "incredul", "increduli": "incredul", "incrementando": "increment", "incrementi": "increment", "incremento": "increment", "increspata": "incresp", "incriminata": "incrimin", "incriminazione": "incrimin", "incrina": "incrin", "incrocian": "incrocian", "incrociando": "incroc", "incrociare": "incroc", "incrociate": "incroc", "incrociato": "incroc", "incrociatore": "incroc", "incrocicchiato": "incrocicc", "incrocio": "incroc", "incrociò": "incroc", "incrollabile": "incroll", "incubi": "incub", "incubo": "incub", "incudine": "incudin", "inculcandogliela": "inculc", "incunea": "incune", "incurabile": "incur", "incursione": "incursion", "incursioni": "incursion", "incursori": "incursor", "incurvato": "incurv", "incusso": "incuss", "incutere": "incut", "incutessero": "incut", "ind": "ind", "indaga": "indag", "indagando": "indag", "indagare": "indag", "indagate": "indag", "indagati": "indag", "indagato": "indag", "indagine": "indagin", "indagini": "indagin", "indarno": "indarn", "indebita": "indeb", "indebolirsi": "indebol", "indebolita": "indebol", "indecente": "indecent", "indecentè": "indecent", "indecenti": "indecent", "indecisione": "indecision", "indecorosa": "indecor", "indefinibile": "indefin", "indefinite": "indefin", "indefinito": "indefin", "indegna": "indegn", "indegnamente": "indegn", "indegnazione": "indegn", "indegne": "indegn", "indegni": "indegn", "indegno": "indegn", "indemoniato": "indemon", "indenne": "indenn", "indennità": "indenn", "indennizzi": "indennizz", "indescrivibile": "indescriv", "indeterminata": "indetermin", "indeterminatamente": "indeterminat", "indeterminato": "indetermin", "indetta": "indett", "indette": "indett", "indetto": "indett", "indi": "indi", "india": "indi", "indià": "indi", "indian": "indian", "indiana": "indian", "indiane": "indian", "indiani": "indian", "indiano": "indi", "indiavolati": "indiavol", "indica": "indic", "indicando": "indic", "indicandogli": "indic", "indicano": "indic", "indicar": "indic", "indicare": "indic", "indicarla": "indic", "indicarne": "indic", "indicarono": "indic", "indicasse": "indic", "indicata": "indic", "indicate": "indic", "indicati": "indic", "indicative": "indic", "indicativo": "indic", "indicato": "indic", "indicatore": "indic", "indicatori": "indic", "indicators": "indicators", "indicava": "indic", "indicavano": "indic", "indicazione": "indic", "indicazioni": "indic", "indice": "indic", "indicherebbero": "indic", "indici": "indic", "indicibile": "indic", "indicio": "indic", "indicizzati": "indicizz", "indicò": "indic", "indietro": "indietr", "indifferente": "indifferent", "indifferenti": "indifferent", "indifferenza": "indifferent", "indigena": "indigen", "indigene": "indigen", "indigeni": "indigen", "indigeno": "indigen", "indigenti": "indigent", "indigenza": "indigent", "indignata": "indign", "indignati": "indign", "indignazione": "indign", "indimenticabile": "indimentic", "indimenticabili": "indimentic", "indios": "indios", "indipendenstista": "indipendenst", "indipendente": "indipendent", "indipendentemente": "indipendent", "indipendenti": "indipendent", "indipendentismo": "indipendent", "indipendentista": "indipendent", "indipendentistà": "indipendent", "indipendentisti": "indipendent", "indipendentistì": "indipendent", "indipendenza": "indipendent", "indipendetista": "indipendet", "indiretta": "indirett", "indirettamente": "indirett", "indirette": "indirett", "indirizzare": "indirizz", "indirizzata": "indirizz", "indirizzate": "indirizz", "indirizzati": "indirizz", "indirizzato": "indirizz", "indirizzava": "indirizz", "indirizzi": "indirizz", "indirizzo": "indirizz", "indisciplinata": "indisciplin", "indiscreta": "indiscret", "indiscreti": "indiscret", "indiscrezione": "indiscrezion", "indiscrezioni": "indiscrezion", "indiscriminati": "indiscrimin", "indiscusso": "indiscuss", "indispensabile": "indispens", "indispensabili": "indispens", "indispettita": "indispett", "indispettito": "indispett", "indispettiva": "indispett", "indisponibile": "indispon", "indisponibili": "indispon", "indisponibilità": "indisponibil", "indistintamente": "indistint", "indistinto": "indistint", "individua": "individu", "individuale": "individual", "individuali": "individual", "individualità": "individual", "individualmente": "individual", "individuando": "individu", "individuano": "individu", "individuare": "individu", "individuata": "individu", "individuate": "individu", "individuati": "individu", "individuato": "individu", "individuazione": "individu", "individui": "individu", "individuo": "individu", "indizi": "indiz", "indizio": "indiz", "indizj": "indizj", "indocile": "indocil", "indocilità": "indocil", "indole": "indol", "indolenziti": "indolenz", "indomabile": "indom", "indomani": "indoman", "indonesia": "indones", "indoor": "indoor", "indossando": "indoss", "indossato": "indoss", "indossava": "indoss", "indossavano": "indoss", "indosso": "indoss", "indotto": "indott", "indovinala": "indovinal", "indovinar": "indovin", "indovinare": "indovin", "indovinarla": "indovin", "indovinarsi": "indovin", "indovinasse": "indovin", "indovinate": "indovin", "indovinato": "indovin", "indovinava": "indovin", "indovinerà": "indovin", "indovinò": "indovin", "indro": "indro", "indù": "indù", "indubbiamente": "indubb", "indubbio": "indubb", "indubitabilmente": "indubitabil", "induce": "induc", "induceva": "induc", "inducono": "induc", "indugi": "indug", "indugiare": "indug", "indugiasse": "indug", "indugiava": "indug", "indulgente": "indulgent", "indulto": "indult", "indumenti": "indument", "indur": "indur", "indurati": "indur", "indurato": "indur", "indurito": "indur", "indurla": "indurl", "indurrà": "indurr", "indurre": "indurr", "industr": "industr", "industria": "industr", "industriale": "industrial", "industriali": "industrial", "industrializzate": "industrializz", "industrializzati": "industrializz", "industrializzato": "industrializz", "industriarsi": "industr", "industrie": "industr", "industries": "industries", "induttivo": "indutt", "induzione": "induzion", "induzioni": "induzion", "inebriato": "inebr", "ineccepibile": "ineccep", "inedita": "ined", "inedite": "ined", "inediti": "ined", "inedito": "ined", "ineffabile": "ineff", "inefficaci": "inefficac", "inefficacia": "inefficac", "inefficienza": "inefficient", "ineguali": "inegual", "ineludibile": "inelud", "ineludibili": "inelud", "ineluttabile": "inelutt", "ineluttabilità": "inelutt", "inequivoco": "inequivoc", "inermi": "inerm", "inerte": "inert", "inerzia": "inerz", "inesatta": "inesatt", "inesausta": "inesaust", "ineseguiti": "inesegu", "inesigibili": "inesig", "inesistenti": "inesistent", "inesorabilmente": "inesorabil", "inesperta": "inespert", "inesperte": "inespert", "inesperto": "inespert", "inesplicabile": "inesplic", "inesplicabili": "inesplic", "inesplorato": "inesplor", "inespugnabile": "inespugn", "inevitabile": "inevit", "inevitabili": "inevit", "inevitabilmente": "inevitabil", "inf": "inf", "infallibilmente": "infallibil", "infame": "infam", "infami": "infam", "infamia": "infam", "infamità": "infam", "infangare": "infang", "infangata": "infang", "infangato": "infang", "infante": "infant", "infanti": "infant", "infantile": "infantil", "infanzia": "infanz", "infarinarne": "infarin", "infarinati": "infarin", "infarto": "infart", "infastidir": "infastid", "infastidito": "infastid", "infaticabile": "infatic", "infatti": "infatt", "infauste": "infaust", "infausto": "infaust", "infedeltà": "infedelt", "infelice": "infel", "infelicemente": "infelic", "infelici": "infel", "infelicissima": "infelicissim", "inferiore": "inferior", "inferiori": "inferior", "infermeria": "infermer", "infermi": "inferm", "infermiera": "infermier", "infermiere": "inferm", "infermieri": "infermier", "infermità": "inferm", "infermo": "inferm", "infernale": "infernal", "inferno": "infern", "inferriata": "inferr", "inferriate": "inferr", "inferta": "infert", "infervorati": "infervor", "infervorato": "infervor", "infestano": "infest", "infestar": "infest", "infetta": "infett", "infettamento": "infett", "infettati": "infett", "infettato": "infett", "infette": "infett", "infetti": "infett", "infezione": "infezion", "infiammata": "infiamm", "infiammati": "infiamm", "infiammato": "infiamm", "infiammavano": "infiamm", "inficiate": "infic", "infido": "infid", "infierire": "infier", "infilata": "infil", "infilato": "infil", "infilavo": "infil", "infilzan": "infilzan", "infilzata": "infilz", "infimi": "infim", "infimo": "infim", "infine": "infin", "infinita": "infin", "infinite": "infin", "infinocchiar": "infinocc", "infinocchiata": "infinocc", "inflazione": "inflazion", "inflazionistica": "inflazionist", "inflazionistiche": "inflazionist", "inflazionistico": "inflazionist", "inflessibile": "infless", "infliggendo": "infligg", "infliggere": "infligg", "inflitto": "inflitt", "influenza": "influenz", "influenzale": "influenzal", "influenzate": "influenz", "influenzato": "influenz", "influenze": "influenz", "influito": "influ", "influssi": "influss", "influsso": "influss", "infocata": "infoc", "infocati": "infoc", "infocato": "infoc", "infoltito": "infolt", "infomazione": "infom", "infondate": "infond", "infondato": "infond", "infonde": "infond", "infondere": "infond", "infondergli": "infond", "inforamzioni": "inforamzion", "informa": "inform", "informale": "informal", "informali": "informal", "informando": "inform", "informar": "inform", "informare": "inform", "informarlo": "inform", "informaron": "informaron", "informarono": "inform", "informarsene": "inform", "informarsi": "inform", "informasse": "inform", "informata": "inform", "informati": "inform", "informatica": "informat", "informatici": "informat", "informatico": "informat", "informationes": "informationes", "informativi": "inform", "informativo": "inform", "informato": "inform", "informatore": "inform", "informazione": "inform", "informazioni": "inform", "informe": "inform", "informerete": "inform", "informerò": "inform", "informò": "inform", "infornare": "inforn", "infortunati": "infortun", "infortunato": "infortun", "infortuni": "infortun", "infortunio": "infortun", "infossati": "infoss", "infrange": "infrang", "infrangere": "infrang", "infranse": "infrans", "infrastrutturazione": "infrastruttur", "infrastrutture": "infrastruttur", "infrazioni": "infrazion", "infuriare": "infur", "infuriati": "infur", "infuriato": "infur", "infuriava": "infur", "infuriò": "infur", "ing": "ing", "ingaggi": "ingagg", "ingaggiati": "ingagg", "ingaggiato": "ingagg", "ingannano": "ingann", "ingannare": "ingann", "ingannarlo": "ingann", "ingannata": "ingann", "ingannava": "ingann", "ingannerebbe": "ingann", "inganni": "ingann", "inganno": "ingann", "ingarbugliata": "ingarbugl", "ingegna": "ingegn", "ingegnandosi": "ingegn", "ingegnano": "ingegn", "ingegnarsi": "ingegn", "ingegnati": "ingegn", "ingegnato": "ingegn", "ingegnava": "ingegn", "ingegnavano": "ingegn", "ingegneremo": "ingegn", "ingegneria": "ingegner", "ingegni": "ingegn", "ingegno": "ingegn", "ingegnosa": "ingegn", "ingegnoso": "ingegn", "ingelosisce": "ingelos", "ingemar": "ingem", "ingenita": "ingen", "ingenti": "ingent", "ingenuità": "ingenu", "ingenuo": "ingenu", "ingerenza": "ingerent", "ingerirvisi": "ingerirvis", "ingerito": "inger", "ingessare": "ingess", "ingessatura": "ingessatur", "inghilterra": "inghilterr", "inghiottisce": "inghiott", "inghiottiti": "inghiott", "inghippi": "inghipp", "inginocchiarsi": "inginocc", "inginocchiato": "inginocc", "inginocchiò": "inginocc", "inginocchioni": "inginocchion", "ingiù": "ingiù", "ingiuria": "ingiur", "ingiuriose": "ingiur", "ingiuriosi": "ingiur", "ingiusta": "ingiust", "ingiustamente": "ingiust", "ingiuste": "ingiust", "ingiustificata": "ingiustific", "ingiustificato": "ingiustific", "ingiustizia": "ingiustiz", "ingiusto": "ingiust", "inglese": "ingles", "inglesi": "ingles", "ingloriosa": "inglor", "ingoiando": "ingoi", "ingoiarsi": "ingoi", "ingoiata": "ingoi", "ingoiati": "ingoi", "ingolfa": "ingolf", "ingolfato": "ingolf", "ingolfava": "ingolf", "ingolstadt": "ingolstadt", "ingombrava": "ingombr", "ingombri": "ingombr", "ingombro": "ingombr", "ingordi": "ingord", "ingozzarne": "ingozz", "ingrandire": "ingrand", "ingrandirsi": "ingrand", "ingrandita": "ingrand", "ingrandivano": "ingrand", "ingrassare": "ingrass", "ingrassia": "ingrass", "ingratitudine": "ingratitudin", "ingred": "ingred", "ingredienti": "ingredient", "ingressi": "ingress", "ingresso": "ingress", "ingrossa": "ingross", "ingrossava": "ingross", "ingrosso": "ingross", "ingrossò": "ingross", "inguscezia": "inguscez", "inhabilità": "inhabil", "inibisce": "inib", "inibizione": "inibizion", "iniezione": "iniezion", "inimicizia": "inimiciz", "inimicizie": "inimiciz", "ininterrotta": "ininterrott", "iniqua": "iniqu", "inique": "iniqu", "iniqui": "iniqu", "iniquità": "iniqu", "iniquo": "iniqu", "inizia": "iniz", "iniziale": "inizial", "iniziali": "inizial", "inizialmente": "inizial", "iniziano": "iniz", "iniziare": "iniz", "iniziata": "iniz", "iniziativa": "iniz", "iniziative": "iniz", "iniziato": "iniz", "iniziazione": "iniz", "inizierà": "iniz", "inizierebbe": "iniz", "inizio": "iniz", "innaffia": "innaff", "innaffiato": "innaff", "innalzamento": "innalz", "innalzata": "innalz", "innalzato": "innalz", "innamora": "innamor", "innamorano": "innamor", "innamorarsi": "innamor", "innamorata": "innamor", "innamorati": "innamor", "innamorato": "innamor", "innanzi": "innanz", "innanzitutto": "innanzitutt", "innata": "innat", "innegabile": "inneg", "inneggianti": "innegg", "inneggiavano": "innegg", "innesca": "innesc", "innesti": "innest", "inni": "inni", "innocente": "innocent", "innocenti": "innocent", "innocentina": "innocentin", "innocenza": "innocent", "innominabili": "innomin", "innominato": "innomin", "innovata": "innov", "innovativi": "innov", "innovativo": "innov", "innovatore": "innov", "innovazione": "innov", "inocntro": "inocntr", "inoffensivi": "inoffens", "inoffensivo": "inoffens", "inoltra": "inoltr", "inoltrandosi": "inoltr", "inoltrarvisi": "inoltrarvis", "inoltrata": "inoltr", "inoltrato": "inoltr", "inoltrava": "inoltr", "inoltre": "inoltr", "inoltrò": "inoltr", "inondato": "inond", "inopportuna": "inopportun", "inopportuno": "inopportun", "inorriditi": "inorrid", "inorridito": "inorrid", "inorridiva": "inorrid", "inorridivano": "inorrid", "inospitale": "inospital", "inosservata": "inosserv", "inosservati": "inosserv", "inosservato": "inosserv", "inpgi": "inpgi", "inps": "inps", "input": "input", "inquadrato": "inquadr", "inquadrava": "inquadr", "inqualificabile": "inqualific", "inquieta": "inquiet", "inquietante": "inquiet", "inquietanti": "inquiet", "inquietarla": "inquiet", "inquietarsene": "inquiet", "inquietarti": "inquiet", "inquietata": "inquiet", "inquietava": "inquiet", "inquieti": "inquiet", "inquieto": "inquiet", "inquietudine": "inquietudin", "inquietudini": "inquietudin", "inquilini": "inquilin", "inquilino": "inquilin", "inquinamento": "inquin", "inquinanti": "inquin", "inquinasse": "inquin", "inquini": "inquin", "inquirenti": "inquirent", "inquisisca": "inquis", "inquisiti": "inquis", "inquisizione": "inquisizion", "inquisizioni": "inquisizion", "insabbiati": "insabb", "insaccato": "insacc", "insaccava": "insacc", "insaccò": "insacc", "insalvatichiti": "insalvatic", "insalvatichito": "insalvatic", "insanguinate": "insanguin", "insanguinati": "insanguin", "insanguinato": "insanguin", "insaputa": "insap", "inscenare": "inscen", "insediamenti": "insed", "insediamento": "insed", "insediarsi": "insed", "insediati": "insed", "insediato": "insed", "insegna": "insegn", "insegnamento": "insegn", "insegnanmento": "insegnanment", "insegnano": "insegn", "insegnante": "insegn", "insegnanti": "insegn", "insegnar": "insegn", "insegnare": "insegn", "insegnargli": "insegn", "insegnargliela": "insegn", "insegnarle": "insegn", "insegnarmi": "insegn", "insegnata": "insegn", "insegnate": "insegn", "insegnati": "insegn", "insegnato": "insegn", "insegnava": "insegn", "insegnavan": "insegnavan", "insegne": "insegn", "insegnerà": "insegn", "insegnerò": "insegn", "insegni": "insegn", "insegno": "insegn", "insegnò": "insegn", "insegue": "insegu", "inseguì": "insegu", "inseguimenti": "insegu", "inseguimento": "insegu", "inseguire": "insegu", "inseguita": "insegu", "inseguitemi": "inseguitem", "inseguito": "insegu", "inseguitori": "inseguitor", "inseguiva": "insegu", "insensata": "insens", "insensatezza": "insensatezz", "insensati": "insens", "insensato": "insens", "insensibilità": "insensibil", "inseparabili": "insepar", "insepolti": "insepolt", "inserendo": "inser", "inserimento": "inser", "inserire": "inser", "inserirsi": "inser", "inserisce": "inser", "inseriscono": "inser", "inserita": "inser", "inserite": "inser", "inseriti": "inser", "inserito": "inser", "insicurezze": "insicurezz", "insicuro": "insicur", "insidia": "insid", "insidiare": "insid", "insidiati": "insid", "insidie": "insid", "insidiosi": "insid", "insiem": "insiem", "insieme": "insiem", "insigne": "insign", "insigni": "insign", "insinuando": "insinu", "insinuare": "insinu", "insinuargli": "insinu", "insinuazione": "insinu", "insinuazioni": "insinu", "insipienza": "insipient", "insiste": "insist", "insistendo": "insist", "insistente": "insistent", "insistenti": "insistent", "insistenza": "insistent", "insistenze": "insistent", "insistere": "insist", "insistette": "insistett", "insisteva": "insist", "insistito": "insist", "insita": "insit", "insite": "insit", "insoddisfacente": "insoddisfacent", "insoddisfatto": "insoddisfatt", "insolente": "insolent", "insolenza": "insolent", "insolita": "insol", "insoliti": "insol", "insolito": "insol", "insolvente": "insolvent", "insoma": "insom", "insomma": "insomm", "insonne": "insonn", "insopportabile": "insopport", "insopportabili": "insopport", "insopportabilità": "insopport", "insopprimibile": "insopprim", "insorgere": "insorg", "insorgevano": "insorg", "insormontabili": "insormont", "insospettì": "insospett", "insospettito": "insospett", "insostenibile": "insosten", "insostituibile": "insostitu", "insperato": "insper", "inspiegabili": "inspieg", "inspiegabilmente": "inspiegabil", "instabile": "instabil", "installando": "install", "installare": "install", "installata": "install", "installate": "install", "installato": "install", "installazione": "install", "instancabile": "instanc", "instaurare": "instaur", "instaurati": "instaur", "instauratosi": "instaurat", "institute": "instit", "insuccessi": "insuccess", "insuccesso": "insuccess", "insufficiente": "insufficient", "insufficienti": "insufficient", "insufficienza": "insufficient", "insulino": "insulin", "insulso": "insuls", "insultare": "insult", "insultata": "insult", "insultati": "insult", "insultato": "insult", "insulti": "insult", "insulto": "insult", "insuperabile": "insuper", "insuperabili": "insuper", "insurrezione": "insurrezion", "int": "int", "intaccando": "intacc", "intaccati": "intacc", "intaccato": "intacc", "intagliata": "intagl", "intanto": "intant", "intarlate": "intarl", "intarlato": "intarl", "intasate": "intas", "intasavano": "intas", "intasca": "intasc", "intascavano": "intasc", "intatta": "intatt", "intatti": "intatt", "integrale": "integral", "integralismo": "integral", "integralisti": "integral", "integralmete": "integralm", "integrante": "integr", "integrare": "integr", "integrata": "integr", "integrate": "integr", "integrative": "integr", "integrativi": "integr", "integrazione": "integr", "intel": "intel", "intelettuali": "intelettual", "intelletti": "intellett", "intelletto": "intellett", "intellettuali": "intellettual", "intelligence": "intelligenc", "intelligenza": "intelligent", "intemperanza": "intemper", "intemperie": "intemper", "intempestiva": "intempest", "intenda": "intend", "intendano": "intend", "intende": "intend", "intendendo": "intend", "intender": "intender", "intenderà": "intend", "intenderanno": "intend", "intenderci": "intend", "intendere": "intend", "intenderebbe": "intend", "intenderle": "intend", "intenderli": "intend", "intendermi": "intend", "intendersi": "intend", "intendesse": "intendess", "intendeste": "intendest", "intendete": "intend", "intendetela": "intendetel", "intendeva": "intend", "intendevano": "intend", "intendi": "intend", "intendiamo": "intend", "intendiamoci": "intendiamoc", "intendimento": "intend", "intendo": "intend", "intendon": "intendon", "intendono": "intend", "intenerire": "intener", "intenerita": "intener", "intenerito": "intener", "intensa": "intens", "intensamente": "intens", "intensi": "intens", "intensificano": "intensific", "intensificarsi": "intensific", "intensificazione": "intensif", "intensità": "intens", "intenso": "intens", "intenta": "intent", "intento": "intent", "intenzion": "intenzion", "intenzionati": "intenzion", "intenzionato": "intenzion", "intenzione": "intenzion", "intenzioni": "intenzion", "intepretata": "intepret", "inter": "inter", "intera": "inter", "interamente": "inter", "interamericana": "interamerican", "interaziendale": "interaziendal", "interb": "interb", "interbanca": "interbanc", "interbancaria": "interbancar", "intercedeva": "interced", "intercession": "intercession", "intercessione": "intercession", "intercettazione": "intercett", "intercettazioni": "intercett", "intercolunni": "intercolunn", "intercomunali": "intercomunal", "intercomuncali": "intercomuncal", "interconnessa": "interconness", "interconnesse": "interconness", "interdire": "interd", "intere": "inter", "interessa": "interess", "interessando": "interess", "interessano": "interess", "interessante": "interess", "interessanti": "interess", "interessasse": "interess", "interessata": "interess", "interessate": "interess", "interessati": "interess", "interessatissimo": "interessatissim", "interessato": "interess", "interessava": "interess", "interesse": "interess", "interesserà": "interess", "interessi": "interess", "interfax": "interfax", "interferire": "interfer", "intergovernativa": "intergovern", "interi": "inter", "interiezione": "interiezion", "interinale": "interinal", "interiore": "interior", "interista": "inter", "interisti": "inter", "interlocutore": "interlocutor", "interlocutori": "interlocutor", "interlocutoria": "interlocutor", "interlocuzione": "interlocu", "intermedi": "intermed", "intermediari": "intermediar", "intermediario": "intermediar", "intermezi": "intermez", "interminate": "intermin", "intermissione": "intermission", "intermittenti": "intermittent", "intermobiliare": "intermobil", "intermoney": "intermoney", "intern": "intern", "interna": "intern", "internandosi": "intern", "internarsi": "intern", "internatì": "internat", "internato": "intern", "internaz": "internaz", "internazion": "internazion", "internazionale": "internazional", "internazionalè": "internazional", "internazionali": "internazional", "internazionalismo": "internazional", "interne": "intern", "internet": "internet", "interni": "intern", "interno": "intern", "intero": "inter", "interotto": "interott", "interpella": "interpell", "interpellata": "interpell", "interpellati": "interpell", "interpellato": "interpell", "interplanetari": "interplanetar", "interpreta": "interpret", "interpretando": "interpret", "interpretano": "interpret", "interpretar": "interpret", "interpretare": "interpret", "interpretate": "interpret", "interpretati": "interpret", "interpretativi": "interpret", "interpretato": "interpret", "interpretazione": "interpret", "interpretazioni": "interpret", "interprete": "interpr", "interpreterà": "interpret", "interpreti": "interpret", "interroga": "interrog", "interrogando": "interrog", "interrogante": "interrog", "interrogare": "interrog", "interrogarla": "interrog", "interrogarsi": "interrog", "interrogata": "interrog", "interrogate": "interrog", "interrogati": "interrog", "interrogativi": "interrog", "interrogativo": "interrog", "interrogato": "interrog", "interrogatore": "interrog", "interrogatori": "interrog", "interrogatòri": "interrogatòr", "interrogatorio": "interrogator", "interrogava": "interrog", "interrogavano": "interrog", "interrogazione": "interrog", "interrogazioni": "interrog", "interrogò": "interrog", "interrompendo": "interromp", "interrompendolo": "interromp", "interrompere": "interromp", "interrompeva": "interromp", "interrotta": "interrott", "interrotte": "interrott", "interrotti": "interrott", "interrotto": "interrott", "interruppe": "interrupp", "interruppero": "interrupper", "interruzione": "interru", "interruzioni": "interru", "interscambio": "interscamb", "intersind": "intersind", "intersos": "intersos", "interssi": "interss", "interurbani": "interurban", "intervallare": "intervall", "intervalli": "intervall", "intervallo": "intervall", "intervenendo": "interven", "intervenga": "interveng", "intervenire": "interven", "intervenirvi": "interven", "interventi": "intervent", "intervento": "intervent", "intervenuta": "interven", "intervenute": "interven", "intervenuti": "interven", "intervenuto": "interven", "interverrà": "interverr", "interverranno": "interverrann", "interviene": "intervien", "intervista": "interv", "intervistando": "intervist", "intervistarlo": "intervist", "intervistati": "intervist", "intervistato": "intervist", "interviste": "interv", "intesa": "intes", "intese": "intes", "inteso": "intes", "intestata": "intest", "intestato": "intest", "intima": "intim", "intimar": "intim", "intimargli": "intim", "intimarono": "intim", "intimarvi": "intim", "intimate": "intim", "intimato": "intim", "intimatogli": "intimatogl", "intimava": "intim", "intimavan": "intimavan", "intimazione": "intim", "intimazioni": "intim", "intimi": "intim", "intimità": "intim", "intimo": "intim", "intimò": "intim", "intirizzir": "intirizz", "intirizzito": "intirizz", "intitolato": "intitol", "intollerabile": "intoller", "intollerabili": "intoller", "intolleranza": "intoller", "intonacati": "intonac", "intonar": "inton", "intonare": "inton", "intonato": "inton", "intonazione": "inton", "intonò": "inton", "intoppi": "intopp", "intoppo": "intopp", "intorbidando": "intorbid", "intorbidarla": "intorbid", "intorbidarsi": "intorbid", "intormentite": "intorment", "intorno": "intorn", "intossicazione": "intoss", "intra": "intra", "intralciano": "intralc", "intralciarono": "intralc", "intralciata": "intralc", "intralciate": "intralc", "intralciati": "intralc", "intralciato": "intralc", "intransigente": "intransigent", "intransigenti": "intransigent", "intraprendenti": "intraprendent", "intraprendenza": "intraprendent", "intraprender": "intraprender", "intraprendere": "intraprend", "intrapresa": "intrapres", "intraprese": "intrapres", "intrapreso": "intrapres", "intrattabili": "intratt", "intrattenersi": "intratten", "intrattenuta": "intratten", "intrattenuto": "intratten", "intrecciate": "intrecc", "intrecciati": "intrecc", "intreccio": "intrecc", "intreodurre": "intreodurr", "intrepidezza": "intrepidezz", "intrepidi": "intrepid", "intrepido": "intrepid", "intridere": "intrid", "intriga": "intrig", "intrigando": "intrig", "intrigato": "intrig", "intrighi": "intrig", "intrigo": "intrig", "intrinsichezza": "intrinsichezz", "intrise": "intris", "intro": "intro", "introbbio": "introbb", "introdotta": "introdott", "introdotte": "introdott", "introdotti": "introdott", "introdotto": "introdott", "introduca": "introduc", "introduce": "introduc", "introducendo": "introduc", "introducendone": "introduc", "introduceva": "introduc", "introducevano": "introduc", "introdurle": "introdurl", "introdurlo": "introdurl", "introdurre": "introdurr", "introdursi": "introdurs", "introdurvi": "introdurv", "introdusse": "introduss", "introduttiva": "introdutt", "introduzione": "introdu", "intromesso": "intromess", "intromette": "intromett", "intromettermi": "intromett", "intromettersi": "intromett", "intrometteva": "intromett", "intuisce": "intu", "intuito": "intu", "inuguale": "inugual", "inuguali": "inugual", "inumiditi": "inumid", "inusuale": "inusual", "inutile": "inutil", "inutili": "inutil", "inutilmente": "inutil", "invadere": "invad", "invadeva": "invad", "invaghito": "invag", "invalicabile": "invalic", "invalida": "invalid", "invalidità": "invalid", "invanisce": "invan", "invano": "invan", "invariate": "invar", "invariati": "invar", "invariato": "invar", "invase": "invas", "invasero": "invaser", "invasi": "invas", "invasion": "invasion", "invasione": "invasion", "invaso": "invas", "invasore": "invasor", "invasori": "invasor", "invecchiare": "invecc", "invecchiati": "invecc", "invecchiato": "invecc", "invece": "invec", "inveire": "inve", "inveisce": "inve", "inveito": "inve", "invelenita": "invelen", "inventano": "invent", "inventare": "invent", "inventarsi": "invent", "inventata": "invent", "inventate": "invent", "inventi": "invent", "inventus": "inventus", "invenzione": "invenzion", "invenzioni": "invenzion", "inverigo": "inverig", "invernale": "invernal", "invernali": "invernal", "inverni": "invern", "invernizzi": "invernizz", "inverno": "invern", "inversione": "inversion", "inverta": "invert", "invertite": "invert", "investa": "invest", "investe": "invest", "investendo": "invest", "investigativa": "investig", "investigative": "investig", "investigatori": "investig", "investigazione": "investig", "investigazioni": "investig", "investimenti": "invest", "investimento": "invest", "investimese": "investimes", "investire": "invest", "investisse": "investiss", "investiti": "invest", "investito": "invest", "investitori": "investitor", "investitura": "investitur", "investiva": "invest", "investment": "investment", "inveterate": "inveter", "inveterato": "inveter", "invettiva": "invett", "invevitabile": "invevit", "invia": "invi", "inviando": "invi", "inviare": "invi", "inviata": "invi", "inviatagli": "inviatagl", "inviate": "invi", "inviati": "invi", "inviatì": "inviat", "inviato": "invi", "invicta": "invict", "invidia": "invid", "invidiabile": "invid", "invidiabili": "invid", "invidiando": "invid", "invidiandole": "invid", "invidiata": "invid", "invidiava": "invid", "invidie": "invid", "invidioso": "invid", "invigilare": "invigil", "invigilavano": "invigil", "invii": "invi", "invincibilmente": "invincibil", "invio": "invi", "inviolabile": "inviol", "inviolato": "inviol", "invischiato": "invisc", "invisibile": "invis", "invisibilè": "invisibil", "invisibili": "invis", "invita": "invit", "invitando": "invit", "invitante": "invit", "invitare": "invit", "invitarla": "invit", "invitarlo": "invit", "invitarono": "invit", "invitata": "invit", "invitati": "invit", "invitato": "invit", "invitava": "invit", "inviti": "invit", "invito": "invit", "invitò": "invit", "invitta": "invitt", "invoca": "invoc", "invocano": "invoc", "invocar": "invoc", "invocare": "invoc", "invocato": "invoc", "invocazione": "invoc", "invochiamo": "invoc", "invogliati": "invogl", "invogliava": "invogl", "involandosi": "invol", "involontaria": "involontar", "involontariamente": "involontar", "involta": "involt", "involtati": "involt", "involtato": "involt", "involte": "involt", "involtino": "involtin", "involto": "involt", "involuzione": "involu", "inxs": "inxs", "inzaccherassero": "inzaccher", "inzaghi": "inzag", "inziativa": "inziat", "inziative": "inziat", "inzio": "inzi", "inzuppata": "inzupp", "inzuppate": "inzupp", "inzuppato": "inzupp", "io": "io", "ioniche": "ionic", "ionici": "ionic", "ionio": "ion", "ionta": "iont", "iosa": "ios", "iourt": "iourt", "iper": "iper", "ipertrofia": "ipertrof", "ipi": "ipi", "ipnotico": "ipnot", "ipocrisia": "ipocris", "ipocrita": "ipocr", "ipocrite": "ipocr", "ipofisi": "ipofis", "ipotesi": "ipotes", "ipotizza": "ipotizz", "ipotizzare": "ipotizz", "ipotizzato": "ipotizz", "ipotizzava": "ipotizz", "ippiche": "ippic", "ipsa": "ipsa", "ipsilon": "ipsilon", "ir": "ir", "ira": "ira", "irachena": "irachen", "iracheno": "irachen", "iraconda": "iracond", "iracondo": "iracond", "iran": "iran", "iraniana": "iranian", "iraniano": "iran", "iraq": "iraq", "ire": "ire", "irene": "iren", "irfis": "irfis", "iri": "iri", "irina": "irin", "irlanda": "irland", "irlandese": "irlandes", "irna": "irna", "irnà": "irnà", "ironia": "iron", "ironicamente": "iron", "ironico": "iron", "irpef": "irpef", "irpeg": "irpeg", "irpino": "irpin", "irragionevole": "irragionevol", "irrazionali": "irrazional", "irrefragabile": "irrefrag", "irregolare": "irregol", "irregolari": "irregolar", "irregolarità": "irregolar", "irremovibile": "irremov", "irreparabile": "irrepar", "irreprensibile": "irreprens", "irresistibile": "irresist", "irresolutezza": "irresolutezz", "irresoluto": "irresol", "irresoluzione": "irresolu", "irrespirabili": "irrespir", "irresponsabile": "irrespons", "irresponsabili": "irrespons", "irresponsabilità": "irrespons", "irreversibile": "irrevers", "irreversibilmente": "irreversibil", "irrevocabile": "irrevoc", "irrevocabilmente": "irrevocabil", "irriducibili": "irriduc", "irrigate": "irrig", "irrilevante": "irrilev", "irrisa": "irris", "irrisolti": "irrisolt", "irritante": "irrit", "irritarsi": "irrit", "irritata": "irrit", "irritati": "irrit", "irritato": "irrit", "irrituale": "irritual", "irritualità": "irritual", "irrogate": "irrog", "irruenza": "irruenz", "irruzione": "irruzion", "irsute": "irsut", "irti": "irti", "isabel": "isabel", "isaia": "isai", "isalmici": "isalm", "isbaglio": "isbagl", "isbieco": "isbiec", "isbrigarsi": "isbrig", "iscacci": "iscacc", "iscacciar": "iscacc", "iscandolo": "iscandol", "iscansar": "iscans", "iscansare": "iscans", "iscansarli": "iscans", "iscapitarci": "iscapit", "iscapolarsene": "iscapol", "iscappasse": "iscapp", "iscapperà": "iscapp", "isceglier": "isceglier", "ischerno": "ischern", "ischerzo": "ischerz", "ischia": "ischi", "ischiamazzi": "ischiamazz", "ischiera": "ischier", "ischiuma": "ischium", "isconficcarla": "isconficc", "iscontare": "iscont", "isconto": "iscont", "iscoprire": "iscopr", "iscoprite": "iscopr", "iscorgendo": "iscorg", "iscritta": "iscritt", "iscritte": "iscritt", "iscritti": "iscritt", "iscritto": "iscritt", "iscrivendo": "iscriv", "iscriver": "iscriver", "iscriversi": "iscriv", "iscrizioni": "iscrizion", "iscusa": "iscus", "ise": "ise", "isefi": "isef", "isfogarsi": "isfog", "isfoggiar": "isfogg", "isgarbatezze": "isgarbatezz", "isgravarsi": "isgrav", "isguardi": "isguard", "isguardo": "isguard", "isgusciar": "isgusc", "isla": "isla", "islam": "islam", "islamabad": "islamabad", "islami": "islam", "islamica": "islam", "islamicà": "islamic", "islamici": "islam", "islamico": "islam", "islamiya": "islamiy", "islanciarsi": "islanc", "island": "island", "ismanie": "isman", "ismarrita": "ismarr", "ismettere": "ismett", "ismovere": "ismov", "isola": "isol", "isolamento": "isol", "isolare": "isol", "isolata": "isol", "isolato": "isol", "isole": "isol", "ispalla": "ispall", "ispaventi": "ispavent", "ispavento": "ispavent", "ispecie": "ispec", "ispegnerla": "ispegn", "ispenderli": "ispend", "ispesare": "ispes", "ispettorato": "ispettor", "ispettore": "ispettor", "ispettori": "ispettor", "ispezionato": "ispezion", "ispianate": "ispian", "ispiar": "ispi", "ispidi": "ispid", "ispiegarlo": "ispieg", "ispinger": "ispinger", "ispingerla": "isping", "ispira": "ispir", "ispirandogli": "ispir", "ispirandosi": "ispir", "ispirano": "ispir", "ispirasse": "ispir", "ispirata": "ispir", "ispirato": "ispir", "ispiratore": "ispir", "ispiratori": "ispir", "ispirazione": "ispir", "ispirazioni": "ispir", "isporca": "isporc", "israele": "israel", "israeliana": "israelian", "israeliane": "israelian", "israeliani": "israelian", "israeliano": "israel", "ist": "ist", "istà": "istà", "istaccarsi": "istacc", "istai": "ista", "istallata": "istall", "istallato": "istall", "istampa": "istamp", "istanbul": "istanbul", "istantanea": "istantane", "istantaneo": "istantane", "istante": "istant", "istanti": "istant", "istanza": "istanz", "istanze": "istanz", "istar": "istar", "istare": "istar", "istareste": "istarest", "istat": "istat", "istate": "istat", "istato": "istat", "istava": "istav", "isteriliscono": "isteril", "istessa": "istess", "istesso": "istess", "istette": "istett", "istia": "isti", "istigatori": "istig", "istigazione": "istig", "istile": "istil", "istillar": "istill", "istinti": "istint", "istintiva": "istint", "istinto": "istint", "istitituito": "istititu", "istituiranno": "istitu", "istituire": "istitu", "istituisse": "istituiss", "istituito": "istitu", "istituti": "istit", "istituto": "istit", "istitutori": "istitutor", "istituzionale": "istituzional", "istituzionali": "istituzional", "istituzione": "istitu", "istituzioni": "istitu", "istizza": "istizz", "istoriando": "istor", "istoriografo": "istoriograf", "istornar": "istorn", "istrada": "istrad", "istradamento": "istrad", "istrade": "istrad", "istrane": "istran", "istrascinarlo": "istrascin", "istrepito": "istrep", "istria": "istri", "istriana": "istrian", "istrida": "istrid", "istro": "istro", "istruirsi": "istru", "istruita": "istru", "istruiti": "istru", "istruiva": "istru", "istrumento": "istrument", "istruttore": "istruttor", "istruttoria": "istruttor", "istruttorio": "istruttor", "istruzione": "istruzion", "istruzioni": "istruzion", "istudiare": "istud", "istudiarvi": "istud", "isvap": "isvap", "isvegliarsi": "isvegl", "isventura": "isventur", "isvim": "isvim", "it": "it", "ita": "ita", "ital": "ital", "italc": "italc", "italcem": "italcem", "italcementi": "italcement", "italgas": "italgas", "italia": "ital", "italiana": "italian", "italiane": "italian", "italiani": "italian", "italiano": "ital", "italimpianti": "italimp", "italm": "italm", "italmob": "italmob", "italmobil": "italmobil", "italmobiliare": "italmobil", "italmoney": "italmoney", "italo": "ital", "italy": "italy", "itar": "itar", "itat": "itat", "itc": "itc", "itdalia": "itdal", "iter": "iter", "itinerari": "itinerar", "itinerario": "itinerar", "itmr": "itmr", "itn": "itn", "ito": "ito", "itoh": "itoh", "ittica": "ittic", "ittiche": "ittic", "ittici": "ittic", "itumkalinsk": "itumkalinsk", "iu": "iu", "iualiano": "iual", "iugoslavia": "iugoslav", "iui": "iui", "iuri": "iur", "iurt": "iurt", "iurtovsk": "iurtovsk", "iv": "iv", "iva": "iva", "ivan": "ivan", "ivana": "ivan", "ivano": "ivan", "ivi": "ivi", "ivimus": "ivimus", "ivo": "ivo", "ivory": "ivory", "ix": "ix", "izar": "izar", "izudin": "izudin", "j": "j", "jack": "jack", "jackson": "jackson", "jacob": "jacob", "jacobsen": "jacobsen", "jacqueline": "jacquelin", "jahan": "jahan", "jaime": "jaim", "jamaa": "jama", "jamaat": "jamaat", "james": "james", "jammin": "jammin", "jan": "jan", "janata": "jan", "janeiro": "janeir", "janet": "janet", "janez": "janez", "janni": "jann", "janowski": "janowsk", "jansson": "jansson", "jaqueline": "jaquelin", "jarni": "jarn", "javier": "javier", "jean": "jean", "jeanne": "jeann", "jechna": "jechn", "jeep": "jeep", "jeff": "jeff", "jefferson": "jefferson", "jeleesa": "jelees", "jemis": "jemis", "jennifer": "jennifer", "jenny": "jenny", "jens": "jens", "jerry": "jerry", "jervolino": "jervolin", "jessica": "jessic", "jet": "jet", "jfk": "jfk", "ji": "ji", "jiahua": "jiahu", "jibril": "jibril", "jihad": "jihad", "jijel": "jijel", "jill": "jill", "jim": "jim", "jimenez": "jimenez", "jimmy": "jimmy", "joachim": "joachim", "joaquin": "joaquin", "jocelyn": "jocelyn", "joe": "joe", "johan": "johan", "johann": "johann", "johannesburg": "johannesburg", "john": "john", "johnson": "johnson", "joint": "joint", "jolly": "jolly", "joly": "joly", "jon": "jon", "jonas": "jonas", "jonathan": "jonathan", "jones": "jones", "jonk": "jonk", "jorge": "jorg", "jose": "jos", "josè": "jos", "josef": "josef", "joseph": "joseph", "josephi": "joseph", "jospin": "jospin", "jr": "jr", "juan": "juan", "jugoslavia": "jugoslav", "jugovic": "jugovic", "juha": "juh", "juicio": "juic", "julia": "jul", "julian": "julian", "julie": "jul", "julieth": "julieth", "junior": "junior", "juniores": "juniores", "juppè": "jupp", "jure": "jur", "juta": "jut", "juve": "juv", "juventini": "juventin", "juventus": "juventus", "k": "k", "kabariti": "kabar", "kabul": "kabul", "kaddoumi": "kaddoum", "kaelon": "kaelon", "kakrabar": "kakrab", "kalà": "kal", "kalashikov": "kalashikov", "kalpakkam": "kalpakkam", "kambia": "kamb", "kamikazè": "kamikaz", "kanchanaburi": "kanchanabur", "kankkunen": "kankkunen", "kaos": "kaos", "karachi": "karac", "karadzic": "karadzic", "karaoke": "karaok", "karel": "karel", "karim": "karim", "karlsruhe": "karlsruh", "karlstad": "karlstad", "kashmir": "kashm", "kashoggi": "kashogg", "kastros": "kastros", "kawashima": "kawashim", "kazakhstan": "kazakhstan", "kelly": "kelly", "kenderson": "kenderson", "kenia": "ken", "keniota": "keniot", "kennedy": "kennedy", "kenneth": "kenneth", "kent": "kent", "kenya": "keny", "kenyano": "keny", "kevin": "kevin", "kfe": "kfe", "kgb": "kgb", "khamenei": "khamene", "khan": "khan", "khessibia": "khessib", "khomeini": "khomein", "khursheed": "khursheed", "kieslowski": "kieslowsk", "kiev": "kiev", "killer": "killer", "kilmarnock": "kilmarnock", "kim": "kim", "king": "king", "kinnock": "kinnock", "kioko": "kiok", "kipkemboi": "kipkembo", "kipling": "kipling", "kiptanui": "kiptanu", "kirsch": "kirsc", "kisimaio": "kisimai", "kiwan": "kiwan", "kladusa": "kladus", "klaus": "klaus", "kluge": "klug", "km": "km", "ko": "ko", "kobe": "kob", "koeman": "koeman", "kohl": "kohl", "kohler": "kohler", "koijam": "koijam", "kola": "kol", "koll": "koll", "kolyvanov": "kolyvanov", "kong": "kong", "konishev": "konishev", "korda": "kord", "korzhakov": "korzhakov", "kosarev": "kosarev", "kosevo": "kos", "kotov": "kotov", "kovac": "kovac", "kowanko": "kowank", "kozminski": "kozminsk", "kraftnat": "kraftnat", "krajina": "krajin", "krajna": "krajn", "krasnov": "krasnov", "kreek": "kreek", "kris": "kris", "krsko": "krsko", "kruja": "kruj", "krupa": "krup", "kruz": "kruz", "krzystof": "krzystof", "kuala": "kual", "kulikov": "kulikov", "kung": "kung", "kupra": "kupr", "kurt": "kurt", "kuwait": "kuwait", "kvashnin": "kvashnin", "kw": "kw", "kwh": "kwh", "l": "l", "la": "la", "là": "là", "labbra": "labbr", "labbro": "labbr", "laberinto": "laberint", "labirinti": "labirint", "laboratorio": "laborator", "labra": "labr", "laburista": "labur", "laburisti": "labur", "lacandona": "lacandon", "laccio": "lacc", "lacerati": "lacer", "lacerazioni": "lacer", "lacere": "lac", "laceri": "lacer", "laconico": "lacon", "lacqua": "lacqu", "lacrimando": "lacrim", "lacrime": "lacrim", "lacrimogeni": "lacrimogen", "lacrimoso": "lacrim", "ladri": "ladr", "ladro": "ladr", "ladrona": "ladron", "ladrone": "ladron", "ladroni": "ladron", "laender": "laender", "laerzio": "laerz", "lafert": "lafert", "lagat": "lagat", "lagest": "lagest", "laggiu": "laggiu", "laggiù": "laggiù", "lagnandosi": "lagn", "lagnarsene": "lagn", "lagnarsi": "lagn", "lago": "lag", "lagostena": "lagosten", "lagrima": "lagrim", "lagrimoso": "lagrim", "laicale": "laical", "laiche": "laic", "laici": "laic", "laicità": "laicit", "laico": "laic", "laido": "laid", "lake": "lak", "lalas": "lalas", "lama": "lam", "lamacchi": "lamacc", "lamana": "laman", "lamanda": "lamand", "lambert": "lambert", "lamberto": "lambert", "lambiccarsi": "lambicc", "lambro": "lambr", "lame": "lam", "lamentandosi": "lament", "lamentarci": "lament", "lamentarsi": "lament", "lamentassero": "lament", "lamentato": "lament", "lamentava": "lament", "lamentazioni": "lament", "lamentevole": "lamentevol", "lamenti": "lament", "lamento": "lament", "lamet": "lamet", "lamezia": "lamez", "lamia": "lam", "lamine": "lamin", "lamorte": "lamort", "lampada": "lampad", "lampade": "lampad", "lampante": "lampant", "lampanti": "lampant", "lampeggiar": "lampegg", "lampeggiare": "lampegg", "lampi": "lamp", "lampo": "lamp", "lampone": "lampon", "lampugnano": "lampugn", "lana": "lan", "lancaster": "lancaster", "lance": "lanc", "lancer": "lancer", "lanci": "lanc", "lancia": "lanc", "lanciai": "lancia", "lanciamo": "lanc", "lanciando": "lanc", "lanciano": "lanc", "lanciare": "lanc", "lanciarsi": "lanc", "lanciata": "lanc", "lanciate": "lanc", "lanciati": "lanc", "lanciato": "lanc", "lanciava": "lanc", "lancio": "lanc", "lancuba": "lancub", "land": "land", "landing": "landing", "landshut": "landshut", "langen": "langen", "languente": "languent", "languenti": "languent", "languida": "languid", "languidamente": "languid", "languidezza": "languidezz", "languire": "langu", "languiva": "langu", "languivano": "langu", "languor": "languor", "languore": "languor", "lanna": "lann", "lanose": "lanos", "lanterna": "lantern", "lanternino": "lanternin", "lanzichenecchi": "lanzichenecc", "lanzichenecco": "lanzichenecc", "lapadura": "lapadur", "lapazio": "lapaz", "lapide": "lapid", "lapidum": "lapidum", "laq": "laq", "lara": "lar", "larache": "larac", "larga": "larg", "largamente": "larg", "larghe": "larg", "larghezza": "larghezz", "larghi": "larg", "larghissima": "larghissim", "largo": "larg", "lariana": "larian", "lariani": "larian", "larim": "larim", "larnaca": "larnac", "lars": "lars", "larva": "larv", "las": "las", "lasalandra": "lasalandr", "lascerà": "lasc", "lascerai": "lasc", "lascerebbe": "lasc", "lasceremo": "lasc", "lascerete": "lasc", "lascerò": "lasc", "lasci": "lasc", "lascia": "lasc", "lasciai": "lascia", "lasciala": "lascial", "lasciale": "lascial", "lasciam": "lasciam", "lasciamo": "lasc", "lasciamoli": "lasciamol", "lascian": "lascian", "lasciando": "lasc", "lasciandogli": "lasc", "lasciandola": "lasc", "lasciandole": "lasc", "lasciandolo": "lasc", "lasciandosi": "lasc", "lasciandovela": "lasc", "lasciano": "lasc", "lasciar": "lasc", "lasciarci": "lasc", "lasciare": "lasc", "lasciargli": "lasc", "lasciarla": "lasc", "lasciarle": "lasc", "lasciarli": "lasc", "lasciarlo": "lasc", "lasciarmi": "lasc", "lasciarne": "lasc", "lasciaron": "lasciaron", "lasciarono": "lasc", "lasciarsi": "lasc", "lasciarvi": "lasc", "lasciasse": "lasc", "lasciassero": "lasc", "lasciassi": "lasc", "lasciassimo": "lasc", "lasciata": "lasc", "lasciate": "lasc", "lasciatela": "lasciatel", "lasciateli": "lasciatel", "lasciatelo": "lasciatel", "lasciatemi": "lasciatem", "lasciatevi": "lasciat", "lasciati": "lasc", "lasciato": "lasc", "lasciatolo": "lasciatol", "lasciatovi": "lasciatov", "lasciava": "lasc", "lasciavan": "lasciavan", "lasciavano": "lasc", "lascifareame": "lascifaream", "lascin": "lascin", "lascino": "lascin", "lascio": "lasc", "lasciò": "lasc", "lasciorno": "lasciorn", "lascito": "lasc", "lasorella": "lasorell", "lassandro": "lassandr", "lasso": "lass", "lassu": "lassu", "lassù": "lassù", "last": "last", "lastre": "lastr", "lastrico": "lastric", "latente": "latent", "laterale": "lateral", "lateralmente": "lateral", "lateranensi": "lateranens", "laterano": "later", "lati": "lat", "latifondi": "latifond", "latifondisti": "latifond", "latimore": "latimor", "latina": "latin", "latine": "latin", "latini": "latin", "latino": "latin", "latinoamericane": "latinoamerican", "latinoamericano": "latinoameric", "latinorum": "latinorum", "latinucci": "latinucc", "latisana": "latisan", "latitava": "latit", "lato": "lat", "latore": "lator", "latronico": "latron", "lattante": "lattant", "latte": "latt", "laura": "laur", "laureati": "laur", "laureato": "laur", "laurent": "laurent", "laurentii": "laurent", "lauro": "laur", "lautezza": "lautezz", "lav": "lav", "lava": "lav", "lavandai": "lavanda", "lavano": "lav", "lavardera": "lavarder", "lavare": "lav", "lavasse": "lav", "lavata": "lav", "lavato": "lav", "laverò": "lav", "lavo": "lav", "lavora": "lavor", "lavorando": "lavor", "lavorano": "lavor", "lavorante": "lavor", "lavoranti": "lavor", "lavorar": "lavor", "lavorare": "lavor", "lavorata": "lavor", "lavorate": "lavor", "lavorati": "lavor", "lavorativa": "lavor", "lavorato": "lavor", "lavoratore": "lavor", "lavoratori": "lavor", "lavoratrori": "lavoratror", "lavorava": "lavor", "lavoravano": "lavor", "lavoravi": "lavor", "lavorazione": "lavor", "lavori": "lavor", "lavorino": "lavorin", "lavorio": "lavor", "lavoro": "lavor", "lavorò": "lavor", "lazeretto": "lazerett", "laziale": "lazial", "lazio": "laz", "lazzarini": "lazzarin", "lazzati": "lazz", "lazzeretti": "lazzerett", "lazzeretto": "lazzerett", "lbiro": "lbir", "lc": "lc", "ld": "ld", "le": "le", "leader": "leader", "leadership": "leadership", "leaf": "leaf", "leale": "leal", "lealmente": "lealment", "lealtà": "lealt", "leante": "leant", "lebrazione": "lebrazion", "leca": "lec", "leccar": "lecc", "leccate": "lecc", "lecce": "lecc", "leccese": "lecces", "lecco": "lecc", "lecita": "lec", "leciti": "lec", "lecito": "lec", "lectures": "lectures", "lede": "led", "ledere": "led", "ledo": "led", "leffe": "leff", "lega": "leg", "legà": "leg", "legale": "legal", "legali": "legal", "legalità": "legal", "legame": "legam", "legami": "legam", "legano": "leg", "legare": "leg", "legata": "leg", "legate": "leg", "legatevi": "legat", "legati": "leg", "legato": "leg", "legatolo": "legatol", "legatura": "legatur", "leggano": "legg", "legge": "legg", "leggendario": "leggendar", "legger": "legger", "leggera": "legger", "leggeranno": "legg", "leggere": "legg", "leggerebbe": "legg", "leggerezza": "leggerezz", "leggergli": "legg", "leggeri": "legger", "leggerissimo": "leggerissim", "leggerla": "legg", "leggerle": "legg", "leggermente": "legger", "leggero": "legger", "leggesse": "leggess", "leggeva": "legg", "leggi": "legg", "leggier": "leggier", "leggiera": "leggier", "leggieri": "leggier", "leggiero": "leggier", "leggina": "leggin", "leggìo": "leggì", "leggo": "legg", "leghe": "legh", "leghissimi": "leghissim", "leghista": "leghist", "leghiste": "leghist", "leghisti": "leghist", "leghsiti": "leghs", "legilative": "legil", "legis": "legis", "legislativa": "legisl", "legislative": "legisl", "legislativi": "legisl", "legislativo": "legisl", "legislatore": "legisl", "legislatura": "legislatur", "legislature": "legislatur", "legislazione": "legisl", "legisti": "legist", "legittima": "legittim", "legittimamente": "legittim", "legittimare": "legittim", "legittimatasi": "legittimatas", "legittimazione": "legittim", "legittime": "legittim", "legittimità": "legittim", "legittimo": "legittim", "legna": "legn", "legnaiolo": "legnaiol", "legname": "legnam", "legnano": "legn", "legnetti": "legnett", "legni": "legn", "legno": "legn", "legò": "leg", "lehmann": "lehmann", "lehnigk": "lehnigk", "lei": "lei", "leibnitz": "leibnitz", "leicestershire": "leicestersh", "leit": "leit", "leitgeb": "leitgeb", "leitner": "leitner", "lembo": "lemb", "lemme": "lemm", "len": "len", "lena": "len", "leni": "len", "leninista": "lenin", "lens": "lens", "lenta": "lent", "lentamente": "lent", "lentezza": "lentezz", "lenti": "lent", "lentissimi": "lentissim", "lentissimo": "lentissim", "lento": "lent", "leny": "leny", "lenzoli": "lenzol", "lenzolo": "lenzol", "leo": "leo", "leoluca": "leoluc", "leon": "leon", "leonardo": "leonard", "leone": "leon", "leoni": "leon", "leonid": "leonid", "leopoldo": "leopold", "lepre": "lepr", "lercia": "lerc", "les": "les", "lesioni": "lesion", "lesiva": "les", "lesive": "lesiv", "lesse": "less", "lessicale": "lessical", "lesta": "lest", "lesti": "lest", "lesto": "lest", "let": "let", "letargo": "letarg", "letizia": "letiz", "letta": "lett", "lette": "lett", "lettear": "lett", "letten": "letten", "lettera": "letter", "letteralmente": "letteral", "letteraria": "letterar", "letterario": "letterar", "letterati": "letter", "letterato": "letter", "letteratone": "letteraton", "letteratura": "letteratur", "lettere": "lett", "letteriello": "letteriell", "letti": "lett", "lettiga": "lettig", "lettighieri": "lettighier", "lettighiero": "lettighier", "letto": "lett", "lettonia": "letton", "lettore": "lettor", "lettori": "lettor", "lettovi": "lettov", "lettuccio": "lettucc", "lettura": "lettur", "leuca": "leuc", "leuci": "leuc", "leva": "lev", "levami": "levam", "levando": "lev", "levandosi": "lev", "levanta": "levant", "levante": "levant", "levantese": "levantes", "levar": "lev", "levare": "lev", "levargli": "lev", "levarla": "lev", "levarle": "lev", "levarli": "lev", "levarlo": "lev", "levarmi": "lev", "levarne": "lev", "levarnela": "levarnel", "levaron": "levaron", "levarsi": "lev", "levarti": "lev", "levarvi": "lev", "levata": "lev", "levatasi": "levatas", "levate": "lev", "levatevelo": "levatevel", "levatevi": "levat", "levati": "lev", "levato": "lev", "levatosi": "levat", "levava": "lev", "levavano": "lev", "leverebbe": "lev", "leverkusen": "leverkusen", "levi": "lev", "levin": "levin", "levino": "levin", "levo": "lev", "levò": "lev", "levy": "levy", "lewis": "lewis", "lex": "lex", "lezione": "lezion", "leziosaggine": "leziosaggin", "lezioso": "lezios", "lg": "lg", "lh": "lh", "li": "li", "lì": "lì", "liatti": "liatt", "lib": "lib", "libano": "lib", "libbra": "libbr", "libelli": "libell", "libera": "liber", "liberaci": "liberac", "liberal": "liberal", "liberaldemocratica": "liberaldemocrat", "liberaldemocratico": "liberaldemocrat", "liberale": "liberal", "liberali": "liberal", "liberalismo": "liberal", "liberalità": "liberal", "liberalizzato": "liberalizz", "liberalizzazione": "liberalizz", "liberamente": "liber", "liberandovi": "liber", "liberar": "liber", "liberarasi": "liberaras", "liberare": "liber", "liberarla": "liber", "liberarle": "liber", "liberarono": "liber", "liberarsene": "liber", "liberarsi": "liber", "liberarvi": "liber", "liberata": "liber", "liberati": "liber", "liberato": "liber", "liberatore": "liber", "liberatori": "liber", "liberatorio": "liberator", "liberavamo": "liber", "liberazione": "liber", "libere": "lib", "libererò": "liber", "liberi": "liber", "liberiamocene": "liberiamocen", "liberismo": "liber", "liberissimi": "liberissim", "liberista": "liber", "liberiste": "liber", "liberisti": "liber", "libero": "liber", "liberò": "lib", "libertà": "libert", "libertaria": "libertar", "libertas": "libertas", "liberte": "libert", "libertè": "libert", "libertinaggio": "libertinagg", "libia": "lib", "libico": "libic", "libra": "libr", "libracci": "libracc", "libraccio": "libracc", "librato": "libr", "libreria": "librer", "librettò": "librett", "libri": "libr", "libriccin": "libriccin", "libriccino": "libriccin", "libricciolo": "libricciol", "libro": "libr", "licenza": "licenz", "licenziamenti": "licenz", "licenziamento": "licenz", "licenziar": "licenz", "licenziare": "licenz", "licenziaron": "licenziaron", "licenziati": "licenz", "licenziò": "licenz", "liceo": "lice", "licia": "lic", "licta": "lict", "lid": "lid", "lidia": "lid", "lido": "lid", "lieberman": "lieberman", "liegi": "lieg", "lierse": "liers", "lieta": "liet", "lietamente": "liet", "liete": "liet", "lieto": "liet", "lieve": "liev", "lievemente": "lievement", "lievi": "liev", "lievitare": "lievit", "lif": "lif", "liga": "lig", "ligamen": "ligamen", "ligi": "lig", "lignano": "lign", "ligne": "lign", "ligonchio": "ligonc", "liguori": "liguor", "ligure": "ligur", "liguri": "ligur", "liguria": "ligur", "lilia": "lil", "liliano": "lil", "lilla": "lill", "lillehammer": "lillehammer", "lilli": "lill", "lima": "lim", "limatura": "limatur", "limbruno": "limbrun", "limita": "lim", "limitando": "limit", "limitano": "limit", "limitare": "limit", "limitarsi": "limit", "limitata": "limit", "limitate": "limit", "limitative": "limit", "limitativo": "limit", "limitato": "limit", "limitavano": "limit", "limitazione": "limit", "limitazioni": "limit", "limite": "lim", "limiterà": "limit", "limiti": "lim", "limitiamo": "limit", "limits": "limits", "limpido": "limpid", "lina": "lin", "linciaggio": "linciagg", "linciati": "linc", "line": "lin", "linea": "line", "lineamenti": "lin", "linee": "line", "lingua": "lingu", "linguaggio": "linguagg", "lingue": "lingu", "linificio": "linific", "link": "link", "lino": "lin", "lion": "lion", "lione": "lion", "lionel": "lionel", "lipkin": "lipkin", "lippi": "lipp", "liquefatto": "liquefatt", "liquida": "liquid", "liquidare": "liquid", "liquidata": "liquid", "liquidati": "liquid", "liquidato": "liquid", "liquidatore": "liquid", "liquidazione": "liquid", "liquidazioni": "liquid", "liquide": "liquid", "liquidità": "liquid", "liquido": "liquid", "liquor": "liquor", "lira": "lir", "lire": "lir", "lirichè": "liric", "lirici": "liric", "lisa": "lis", "lisbona": "lisbon", "lisca": "lisc", "liscate": "lisc", "lisce": "lisc", "liscia": "lisc", "liscio": "lisc", "lisciò": "lisc", "lise": "lis", "lista": "list", "liste": "list", "listino": "listin", "lità": "lit", "lite": "lit", "litiga": "litig", "litiganti": "litig", "litigar": "litig", "litigi": "litig", "litorale": "litoral", "litorali": "litoral", "littorio": "littor", "litwinski": "litwinsk", "liuto": "liut", "live": "liv", "livelli": "livell", "livello": "livell", "livide": "livid", "lividi": "livid", "livido": "livid", "livingston": "livingston", "livio": "liv", "livornese": "livornes", "livorno": "livorn", "livrea": "livre", "livree": "livre", "liz": "liz", "liza": "liz", "lizza": "lizz", "lllustriss": "lllustriss", "lloyd": "lloyd", "lloyds": "lloyds", "lmi": "lmi", "ln": "ln", "lo": "lo", "loader": "loader", "lob": "lob", "lobby": "lobby", "lobotomia": "lobotom", "locale": "local", "locali": "local", "località": "local", "localizzazione": "localizz", "locanda": "locand", "locati": "loc", "locché": "locc", "lockerbie": "lockerb", "locomotiva": "locomot", "lodar": "lod", "lodare": "lod", "lodarlo": "lod", "lodarsi": "lod", "lodata": "lod", "lodato": "lod", "lodava": "lod", "lode": "lod", "loderemo": "lod", "lodevoli": "lodevol", "lodevolmente": "lodevol", "lodi": "lod", "lodigiani": "lodigian", "lodo": "lod", "lodò": "lod", "lodovico": "lodov", "logar": "log", "loggia": "logg", "loggiato": "logg", "logica": "logic", "logiche": "logic", "logico": "logic", "loginov": "loginov", "logisitici": "logisit", "logistica": "logist", "logistiche": "logist", "logli": "logl", "loglio": "logl", "logo": "log", "logorato": "logor", "logori": "logor", "logoro": "logor", "logrono": "logr", "lollis": "lollis", "lollobrigida": "lollobrigid", "lombarda": "lombard", "lombarde": "lombard", "lombardi": "lombard", "lombardia": "lombard", "lombardini": "lombardin", "lombardo": "lombard", "lombardona": "lombardon", "lomi": "lom", "lommel": "lommel", "londinese": "londines", "londinesi": "londines", "londra": "londr", "longar": "long", "longhi": "long", "longiano": "long", "longo": "long", "lontana": "lontan", "lontananza": "lontan", "lontane": "lontan", "lontanetto": "lontanett", "lontani": "lontan", "lontano": "lont", "lontante": "lontant", "look": "look", "loose": "loos", "lopez": "lopez", "lor": "lor", "lorda": "lord", "lordate": "lord", "lordi": "lord", "lordo": "lord", "lords": "lords", "loredana": "loredan", "lorena": "loren", "lorenzini": "lorenzin", "lorenzo": "lorenz", "loreto": "loret", "lori": "lor", "lorieri": "lorier", "loro": "lor", "los": "los", "losa": "los", "losanna": "losann", "losche": "losc", "loseto": "loset", "lotta": "lott", "lottà": "lott", "lottare": "lott", "lotte": "lott", "lotteria": "lotter", "lotti": "lott", "lottizzazione": "lottizz", "lotto": "lott", "louis": "louis", "lourdes": "lourdes", "lovato": "lov", "lovely": "lovely", "lp": "lp", "lq": "lq", "lr": "lr", "lt": "lt", "lu": "lu", "luanda": "luand", "luc": "luc", "luca": "luc", "lucar": "luc", "lucarelli": "lucarell", "lucca": "lucc", "lucchese": "lucches", "lucchetta": "lucchett", "lucchetti": "lucchett", "lucchi": "lucc", "lucchini": "lucchin", "lucci": "lucc", "luccicante": "luccic", "luccicanti": "luccic", "luccicare": "luccic", "lucciole": "lucciol", "luce": "luc", "lucente": "lucent", "lucenti": "lucent", "lucerna": "lucern", "lucerne": "luc", "luchetti": "luchett", "luchino": "luchin", "luci": "luc", "lucia": "luc", "luciana": "lucian", "luciano": "luc", "lucida": "lucid", "lucidi": "lucid", "lucido": "lucid", "lucignolo": "lucignol", "lucilla": "lucill", "lucio": "luc", "lucrezia": "lucrez", "lucrosa": "lucros", "lueders": "lueders", "lufthansa": "lufthans", "luglio": "lugl", "lugo": "lug", "lugubre": "lugubr", "lui": "lui", "luigi": "luig", "luigiterzo": "luigiterz", "luino": "luin", "luisa": "luis", "luisito": "luis", "luiso": "luis", "lumbard": "lumbard", "lume": "lum", "lumeggiando": "lumegg", "lumeggiavano": "lumegg", "lumezzane": "lumezzan", "lumi": "lum", "lumicino": "lumicin", "lumiere": "lum", "lumpur": "lumpur", "luna": "lun", "lunà": "lun", "lunarè": "lunar", "lunario": "lunar", "lunedì": "luned", "lunedìa": "lunedì", "lunedìper": "lunedìper", "lunette": "lunett", "lunga": "lung", "lungagnata": "lungagn", "lungamente": "lung", "lunghe": "lung", "lunghettamente": "lunghett", "lunghezza": "lunghezz", "lunghi": "lung", "lunghigna": "lunghign", "lunghissimi": "lunghissim", "lunghissimo": "lunghissim", "lungi": "lung", "lungimirante": "lungimir", "lungimiranza": "lungimir", "lungo": "lung", "lunini": "lunin", "luochi": "luoc", "luoghi": "luog", "luogo": "luog", "luogotenente": "luogotenent", "luogotenenti": "luogotenent", "luohang": "luohang", "lupi": "lup", "lupo": "lup", "lupu": "lupu", "lusinga": "lusing", "lusingano": "lusing", "lusingare": "lusing", "lusinghe": "lusing", "lussemburgo": "lussemburg", "lusso": "luss", "lustrata": "lustr", "lustre": "lustr", "lustri": "lustr", "luterani": "luteran", "lutti": "lutt", "lutto": "lutt", "luttuose": "luttuos", "luxor": "luxor", "lvtp": "lvtp", "lwaxana": "lwaxan", "lydia": "lydi", "lyles": "lyles", "lynch": "lynch", "lyonnais": "lyonnais", "lz": "lz", "m": "m", "ma": "ma", "maa": "maa", "maastricht": "maastricht", "mab": "mab", "mac": "mac", "macabre": "macabr", "macario": "macar", "macbeth": "macbeth", "macchi": "macc", "macchia": "macc", "macchiata": "macc", "macchie": "macc", "macchina": "macchin", "macchinar": "macchin", "macchinari": "macchinar", "macchinava": "macchin", "macchine": "macchin", "macchinisti": "macchin", "macellaio": "macellai", "macellari": "macellar", "maceratese": "macerates", "macerazioni": "macer", "macerie": "macer", "machete": "mach", "machines": "machines", "macigni": "macign", "macilenti": "macilent", "macilento": "macilent", "maclaine": "maclain", "macro": "macr", "macroregione": "macroregion", "maculae": "macula", "madama": "madam", "maddalena": "maddalen", "made": "mad", "madhi": "madh", "madia": "mad", "madie": "mad", "madigan": "madigan", "madonna": "madonn", "madonnina": "madonnin", "madre": "madr", "madri": "madr", "madrid": "madrid", "madrina": "madrin", "maestà": "maest", "maestosa": "maestos", "maestose": "maestos", "maestoso": "maestos", "maestra": "maestr", "maestranze": "maestranz", "maestri": "maestr", "maestria": "maestr", "maestro": "maestr", "maffei": "maffe", "mafia": "maf", "mafie": "maf", "mafiosa": "mafios", "mafiose": "mafios", "mafiosi": "mafios", "mafioso": "mafios", "mag": "mag", "magagna": "magagn", "magagne": "magagn", "magali": "magal", "magari": "magar", "magazzini": "magazzin", "magazzino": "magazzin", "magdalena": "magdalen", "magellano": "magell", "magestad": "magestad", "maggianico": "maggian", "maggie": "magg", "maggio": "magg", "maggior": "maggior", "maggioranza": "maggior", "maggioratorio": "maggiorator", "maggiorazioni": "maggior", "maggiore": "maggior", "maggiori": "maggior", "maggioritaria": "maggioritar", "maggioritarie": "maggioritar", "maggioritario": "maggioritar", "maggiormente": "maggior", "maggioroanza": "maggior", "maghagha": "maghag", "maghi": "magh", "magi": "mag", "magia": "mag", "magiari": "magiar", "magiaro": "magiar", "magica": "magic", "magiche": "magic", "magistero": "magister", "magistrale": "magistral", "magistrati": "magistr", "magistrato": "magistr", "magistratura": "magistratur", "maglia": "magl", "magliani": "maglian", "maglie": "magl", "magna": "magn", "magnam": "magnam", "magnani": "magnan", "magnanima": "magnanim", "magnetico": "magnet", "magni": "magn", "magnifica": "magnif", "magnificamente": "magnif", "magnificenza": "magnificent", "magnifiche": "magnif", "magnifico": "magnif", "magnitudo": "magnitud", "magno": "magn", "magona": "magon", "magoni": "magon", "magonza": "magonz", "magra": "magr", "magre": "magr", "mahal": "mahal", "maharashtra": "maharashtr", "mahatma": "mahatm", "mai": "mai", "maidan": "maidan", "maiellaro": "maiellar", "mail": "mail", "maini": "main", "maiocchi": "maiocc", "maiolica": "maiol", "maiorca": "maiorc", "maja": "maj", "major": "major", "makeni": "maken", "makinen": "makinen", "mal": "mal", "mala": "mal", "malafede": "malafed", "malaffare": "malaff", "malagevole": "malagevol", "malagevoli": "malagevol", "malamente": "mal", "malan": "malan", "malandrinaccio": "malandrinacc", "malandrini": "malandrin", "malandrino": "malandrin", "malannaggia": "malannagg", "malanno": "malann", "malanotte": "malanott", "malapianta": "malapiant", "malasorte": "malasort", "malate": "mal", "malatestas": "malatestas", "malatesti": "malatest", "malati": "mal", "malato": "mal", "malattia": "malatt", "malattie": "malatt", "malaugurio": "malaugur", "malavita": "malav", "malcapitati": "malcapit", "malcolm": "malcolm", "malconci": "malconc", "malconcio": "malconc", "malcontenta": "malcontent", "malcontenti": "malcontent", "malcontento": "malcontent", "maldestramente": "maldestr", "maldestro": "maldestr", "maldini": "maldin", "male": "mal", "malebolge": "malebolg", "maledetta": "maledett", "maledette": "maledett", "maledetti": "maledett", "maledetto": "maledett", "maledicevano": "maledic", "maledicono": "maledic", "maledizione": "maledizion", "maleeva": "mal", "malefatte": "malefatt", "malefica": "malef", "malefiche": "malef", "maleficio": "malefic", "malefizio": "malefiz", "malfa": "malf", "malformazioni": "malform", "malfunzionamento": "malfunzion", "malgeri": "malger", "malgieri": "malgier", "malgrado": "malgrad", "mali": "mal", "maliardi": "maliard", "malìe": "malì", "maligna": "malign", "maligne": "malign", "maligni": "malign", "maligno": "malign", "malinconia": "malincon", "malinconica": "malincon", "malinconiche": "malincon", "malinconici": "malincon", "malinconie": "malincon", "malincorpo": "malincorp", "malincuore": "malincuor", "malines": "malines", "malissimo": "malissim", "malitia": "malit", "malivai": "maliva", "malizia": "maliz", "malizie": "maliz", "maliziosa": "maliz", "malizioso": "maliz", "mallevadore": "mallevador", "malmenata": "malmen", "malmenati": "malmen", "malmenato": "malmen", "malora": "malor", "malore": "malor", "malpica": "malpic", "malsicuro": "malsicur", "malsupportati": "malsupport", "malta": "malt", "maltagliati": "maltagl", "maltesi": "maltes", "maltolto": "maltolt", "maltrattamenti": "maltratt", "maltrattarla": "maltratt", "maltrattata": "maltratt", "maltrattavan": "maltrattavan", "malum": "malum", "malumori": "malumor", "malusci": "malusc", "malvaggità": "malvagg", "malvagi": "malvag", "malvagio": "malvag", "malvagità": "malvag", "malvestitito": "malvestit", "malvestito": "malvest", "malvezzi": "malvezz", "malvinas": "malvinas", "malvivente": "malvivent", "malviventi": "malvivent", "malvolentieri": "malvolentier", "mamma": "mamm", "mammella": "mammell", "mammì": "mamm", "man": "man", "manacaparù": "manacaparù", "manacce": "manacc", "manaccia": "manacc", "management": "management", "manager": "manager", "manageriali": "managerial", "manantes": "manantes", "manata": "man", "manate": "man", "manaus": "manaus", "manca": "manc", "mancamenti": "manc", "mancamento": "manc", "mancandogli": "manc", "mancano": "manc", "mancante": "mancant", "mancanza": "mancanz", "mancar": "manc", "mancare": "manc", "mancargli": "manc", "mancarmi": "manc", "mancaron": "mancaron", "mancarono": "manc", "mancarvi": "manc", "mancasse": "manc", "mancassero": "manc", "mancata": "manc", "mancate": "manc", "mancati": "manc", "mancato": "manc", "mancava": "manc", "mancavan": "mancavan", "mancavano": "manc", "mancera": "mancer", "manche": "manc", "mancherà": "manc", "mancheranno": "manc", "mancherebbe": "manc", "mancherete": "manc", "mancherò": "manc", "manches": "manches", "manchester": "manchester", "manchi": "manc", "manchino": "manchin", "mancia": "manc", "manciata": "manc", "mancina": "mancin", "mancine": "mancin", "mancini": "mancin", "mancino": "mancin", "mancò": "manc", "manconi": "mancon", "mancuso": "mancus", "manda": "mand", "mandalari": "mandalar", "mandan": "mandan", "mandando": "mand", "mandante": "mandant", "mandar": "mand", "mandare": "mand", "mandarla": "mand", "mandarli": "mand", "mandarlo": "mand", "mandarono": "mand", "mandasse": "mand", "mandassi": "mand", "mandata": "mand", "mandate": "mand", "mandateglieli": "mandategliel", "mandati": "mand", "mandato": "mand", "mandava": "mand", "mandavamo": "mand", "mandavan": "mandavan", "mandavano": "mand", "mandela": "mandel", "mandelli": "mandell", "manderà": "mand", "manderai": "mand", "manderebbe": "mand", "manderemo": "mand", "manderò": "mand", "mandi": "mand", "mandiate": "mand", "mando": "mand", "mandò": "mand", "mandorlo": "mandorl", "mandra": "mandr", "maneggi": "manegg", "maneggiare": "manegg", "maneggiarlo": "manegg", "maneggiarne": "manegg", "maneggio": "manegg", "maneggj": "maneggj", "manero": "maner", "manette": "manett", "manetti": "manett", "manfred": "manfred", "manganiello": "manganiell", "mangeranno": "mang", "mangeremo": "mang", "mangerò": "mang", "mangi": "mang", "mangia": "mang", "mangian": "mangian", "mangiando": "mang", "mangiano": "mang", "mangiar": "mang", "mangiare": "mang", "mangiarne": "mang", "mangiasse": "mang", "mangiate": "mang", "mangiatina": "mangiatin", "mangiato": "mang", "mangiatore": "mangiator", "mangiavano": "mang", "mangiò": "mang", "mangone": "mangon", "mani": "man", "manica": "manic", "maniche": "manic", "manichi": "manic", "manichini": "manichin", "manichino": "manichin", "manico": "manic", "manicone": "manicon", "maniera": "manier", "manieraccia": "manieracc", "maniere": "man", "maniero": "manier", "manierosa": "manier", "manieroso": "manier", "manif": "manif", "manifattura": "manifattur", "manifatturiera": "manifatturier", "manifesta": "manifest", "manifestamente": "manifest", "manifestano": "manifest", "manifestanti": "manifest", "manifestare": "manifest", "manifestarsi": "manifest", "manifestata": "manifest", "manifestate": "manifest", "manifestato": "manifest", "manifestava": "manifest", "manifestazione": "manifest", "manifestazioni": "manifest", "manifeste": "manifest", "manifesti": "manifest", "manifestini": "manifestin", "manifesto": "manifest", "manifestò": "manifest", "manighetti": "manighett", "maniglia": "manigl", "manigoldi": "manigold", "manigoldo": "manigold", "manila": "manil", "manina": "manin", "manipolare": "manipol", "manipolazione": "manipol", "manipur": "manipur", "manitur": "manitur", "manna": "mann", "mannini": "mannin", "mano": "man", "manomettere": "manomett", "manos": "manos", "manoscritte": "manoscritt", "manoscritti": "manoscritt", "manoscritto": "manoscritt", "manovra": "manovr", "manovre": "manovr", "manovrina": "manovrin", "mansarda": "mansard", "mansueta": "mansuet", "mansuetudine": "mansuetudin", "mantello": "mantell", "mantenendo": "manten", "mantener": "mantener", "mantenere": "manten", "mantenergli": "manten", "mantenerhe": "mantenerh", "mantenerla": "manten", "mantenerlo": "manten", "mantenerne": "manten", "mantenervi": "manten", "mantenesse": "manteness", "mantenete": "manten", "mantenevano": "manten", "mantenga": "manteng", "mantenimento": "manten", "mantenne": "mantenn", "mantenuta": "manten", "mantenute": "manten", "mantenuti": "manten", "mantenuto": "manten", "manterrà": "manterr", "mantiene": "mantien", "manto": "mant", "mantova": "mantov", "mantovana": "mantovan", "mantovani": "mantovan", "mantovano": "mantov", "manu": "manu", "manuale": "manual", "manuela": "manuel", "manufatta": "manufatt", "manutenzione": "manutenzion", "manzi": "manz", "manzo": "manz", "manzoni": "manzon", "mappa": "mapp", "mar": "mar", "maradona": "maradon", "maran": "maran", "marangon": "marangon", "marangoni": "marangon", "marano": "mar", "marassi": "mar", "maratona": "maraton", "maratoneti": "maratonet", "maraviglia": "maravigl", "maravigliare": "maravigl", "maravigliassero": "maravigl", "maravigliata": "maravigl", "maravigliate": "maravigl", "maravigliati": "maravigl", "maravigliato": "maravigl", "maravigliava": "maravigl", "maraviglie": "maravigl", "maraviglierei": "maravigl", "maraviglio": "maravigl", "maravigliosi": "maravigl", "marc": "marc", "marca": "marc", "marcao": "marca", "marcatori": "marcator", "marcatura": "marcatur", "marce": "marc", "marcellino": "marcellin", "marcello": "marcell", "marcelo": "marcel", "marche": "marc", "marchegiani": "marchegian", "marchese": "marches", "marchi": "marc", "marchigiana": "marchigian", "marchigiani": "marchigian", "marchingegno": "marchingegn", "marchio": "marc", "marchioro": "marchior", "marcia": "marc", "marciagranparadiso": "marciagranparadis", "marcialonga": "marcialong", "marciare": "marc", "marcio": "marc", "marciose": "marcios", "marco": "marc", "marcolin": "marcolin", "marcon": "marcon", "marconi": "marcon", "marcos": "marcos", "marcus": "marcus", "mare": "mar", "marea": "mare", "marechiaro": "marechiar", "mareggini": "mareggin", "maremoto": "maremot", "marenco": "marenc", "marengo": "mareng", "maresca": "maresc", "margaret": "margaret", "margarethe": "margareth", "marghera": "margher", "margherita": "margher", "marginale": "marginal", "marginalmente": "marginal", "margine": "margin", "margini": "margin", "margiotta": "margiott", "mari": "mar", "maria": "mar", "mariangela": "mariangel", "mariani": "marian", "marianna": "mariann", "marianopoli": "marianopol", "maribor": "maribor", "marie": "mar", "mariella": "mariell", "marina": "marin", "marinai": "marina", "marine": "marin", "marinerie": "mariner", "marines": "marines", "marini": "marin", "marino": "marin", "mario": "mar", "mariolina": "mariolin", "mariolo": "mariol", "mariotto": "mariott", "maritar": "marit", "maritarci": "marit", "maritare": "marit", "maritarli": "marit", "maritarmi": "marit", "maritarsi": "marit", "maritarvi": "marit", "maritata": "marit", "maritate": "marit", "maritati": "marit", "mariti": "mar", "maritima": "maritim", "marito": "mar", "marittima": "marittim", "marittime": "marittim", "marittimi": "marittim", "marittimo": "marittim", "mark": "mark", "markent": "markent", "market": "market", "markets": "markets", "markin": "markin", "markov": "markov", "marmaglia": "marmagl", "marmi": "marm", "marmo": "marm", "marocchi": "marocc", "marocchino": "marocchin", "marocco": "marocc", "maroni": "maron", "maronianì": "maronian", "maroniavrebbe": "maroniavrebb", "marpol": "marpol", "marques": "marques", "marra": "marr", "marruche": "marruc", "marsala": "marsal", "marshall": "marshall", "marsica": "marsic", "marsiglia": "marsigl", "marsili": "marsil", "marta": "mart", "martaban": "martaban", "martedi": "marted", "martedì": "marted", "martella": "martell", "martellandole": "martell", "martellar": "martell", "martelli": "martell", "martello": "martell", "martens": "martens", "martigues": "martigues", "martin": "martin", "martinazzoli": "martinazzol", "martino": "martin", "martire": "mart", "martiri": "martir", "martirio": "martir", "martirizzano": "martirizz", "martirizzare": "martirizz", "martirizzava": "martirizz", "martoriato": "martor", "martuffello": "martuffell", "marvasi": "marvas", "marx": "marx", "marxista": "marxist", "marzo": "marz", "marzotto": "marzott", "mas": "mas", "mascalzone": "mascalzon", "mascalzoni": "mascalzon", "mascara": "mascar", "maschera": "mascher", "mascherati": "mascher", "mascherato": "mascher", "mascherava": "mascher", "maschere": "masc", "maschi": "masc", "maschia": "masc", "maschie": "masc", "maschile": "maschil", "maschili": "maschil", "maserati": "maser", "masetti": "masett", "masi": "mas", "masiero": "masier", "masitto": "masitt", "maskadov": "maskadov", "maske": "mask", "maskhadov": "maskhadov", "masnada": "masnad", "masnadieri": "masnadier", "masnadiero": "masnadier", "masone": "mason", "maspero": "masper", "mass": "mass", "massa": "mass", "massachusetts": "massachusetts", "massaggi": "massagg", "massaio": "massai", "massaro": "massar", "masse": "mass", "masserizie": "masseriz", "massese": "masses", "massi": "mass", "massicce": "massicc", "massicci": "massicc", "massiccia": "massicc", "massiccio": "massicc", "massima": "massim", "massimale": "massimal", "massimali": "massimal", "massimalismo": "massimal", "massime": "massim", "massimi": "massim", "massimo": "massim", "masso": "mass", "massoneria": "massoner", "massonico": "masson", "mastella": "mastell", "master": "master", "masters": "masters", "masticando": "mastic", "masticarla": "mastic", "masticarsi": "mastic", "mastini": "mastin", "mastroianni": "mastroiann", "mastrota": "mastrot", "matadori": "matador", "matasse": "mat", "match": "matc", "matematico": "matemat", "matematicò": "matematic", "matera": "mater", "materassa": "materass", "materassina": "materassin", "materassine": "materassin", "materazzi": "materazz", "materia": "mater", "materiale": "material", "materialè": "material", "materiali": "material", "materialmente": "material", "materialone": "materialon", "materie": "mater", "materna": "matern", "maternità": "matern", "materno": "matern", "mathieu": "mathieu", "matita": "mat", "matlala": "matlal", "matrice": "matric", "matricolato": "matricol", "matrimoni": "matrimon", "matrimoniale": "matrimonial", "matrimoniali": "matrimonial", "matrimonii": "matrimon", "matrimonio": "matrimon", "matrimonium": "matrimonium", "matrona": "matron", "mattana": "mattan", "mattarella": "mattarell", "matteo": "matte", "matteoli": "matteol", "matteotti": "matteott", "matterello": "matterell", "matteucci": "matteucc", "matti": "matt", "mattina": "mattin", "mattinata": "mattin", "mattino": "mattin", "mattioli": "mattiol", "matto": "matt", "mattone": "matton", "mattoni": "matton", "mattutine": "mattutin", "matun": "matun", "matura": "matur", "maturando": "matur", "maturare": "matur", "maturato": "matur", "maturazione": "matur", "mature": "matur", "maturerà": "matur", "maturi": "matur", "maturo": "matur", "mauritania": "mauritan", "maurizio": "mauriz", "mauro": "maur", "mausoleo": "mausole", "max": "max", "maxialleanza": "maxiall", "maxima": "maxim", "maximum": "maximum", "maxiordine": "maxiordin", "maxischermo": "maxischerm", "maya": "may", "mayer": "mayer", "mayock": "mayock", "mays": "mays", "mazenta": "mazent", "mazzanti": "mazzant", "mazzantini": "mazzantin", "mazzeo": "mazze", "mazzetti": "mazzett", "mazzetto": "mazzett", "mazzo": "mazz", "mazzola": "mazzol", "mazzone": "mazzon", "mb": "mb", "mc": "mc", "mccartney": "mccartney", "mcquinn": "mcquinn", "mdp": "mdp", "me": "me", "mea": "mea", "meana": "mean", "meazza": "meazz", "mecca": "mecc", "meccaniche": "meccan", "meccanici": "meccan", "meccanico": "meccan", "meccanismi": "meccan", "meccanismo": "meccan", "meccanizzate": "meccanizz", "meco": "mec", "med": "med", "meda": "med", "medaglia": "medagl", "medaglie": "medagl", "medail": "medail", "medesim": "medesim", "medesima": "medesim", "medesime": "medesim", "medesimi": "medesim", "medesimo": "medesim", "medesmo": "medesm", "medi": "med", "media": "med", "mediante": "mediant", "mediare": "med", "mediatori": "mediator", "mediazione": "mediazion", "medica": "medic", "medicare": "medic", "medicati": "medic", "mediceo": "medice", "medici": "medic", "medicina": "medicin", "medicinale": "medicinal", "medicinali": "medicinal", "medicine": "medicin", "medico": "medic", "medie": "med", "medio": "med", "mediob": "mediob", "mediobanca": "mediobanc", "mediocre": "mediocr", "mediocredito": "mediocred", "mediocremente": "mediocr", "mediocri": "mediocr", "mediocrità": "mediocr", "mediolani": "mediolan", "mediologica": "mediolog", "mediomassimi": "mediomassim", "mediorientali": "medioriental", "medita": "med", "meditando": "medit", "meditano": "medit", "meditare": "medit", "meditata": "medit", "meditava": "medit", "meditazione": "medit", "mediteraneo": "mediterane", "mediterranea": "mediterrane", "mediterranee": "mediterrane", "mediterraneo": "mediterrane", "meditettanean": "meditettanean", "meeting": "meeting", "mega": "meg", "megabyte": "megabyt", "megabytè": "megabyt", "megaschermo": "megascherm", "megawatt": "megawatt", "meglio": "megl", "mejor": "mejor", "mela": "mel", "melander": "melander", "melania": "melan", "melato": "mel", "melba": "melb", "melchiori": "melchior", "mele": "mel", "melfi": "melf", "melito": "mel", "melletta": "mellett", "melli": "mell", "melosi": "melos", "meluzzi": "meluzz", "melzer": "melzer", "membra": "membr", "membri": "membr", "membro": "membr", "memorabile": "memor", "memorabili": "memor", "memorandum": "memorandum", "memoria": "memor", "memoriale": "memorial", "memorie": "memor", "men": "men", "mena": "men", "menadito": "menad", "menando": "men", "menano": "men", "menar": "men", "menare": "men", "menassero": "men", "menateci": "menatec", "menati": "men", "menato": "men", "menava": "men", "menavano": "men", "menconi": "mencon", "mendicarne": "mendic", "mendicati": "mendic", "mendichi": "mendic", "mendico": "mendic", "mendozza": "mendozz", "menegatti": "menegatt", "menegon": "menegon", "mengacci": "mengacc", "meni": "men", "menia": "men", "menico": "menic", "meno": "men", "menò": "men", "menomamente": "menom", "mensa": "mens", "mense": "mens", "mensile": "mensil", "mensili": "mensil", "mensuale": "mensual", "menta": "ment", "mentale": "mental", "mentali": "mental", "mentalità": "mental", "mentalmente": "mental", "mentana": "mentan", "mente": "ment", "menti": "ment", "mentire": "ment", "mentite": "ment", "mentito": "ment", "mentitore": "mentitor", "mento": "ment", "mentovare": "mentov", "mentre": "mentr", "menù": "menù", "menziona": "menzion", "menzionata": "menzion", "menzione": "menzion", "menzogna": "menzogn", "menzogne": "menzogn", "mer": "mer", "mera": "mer", "meramente": "mer", "meraviglia": "meravigl", "meravigliosa": "meravigl", "mercante": "mercant", "mercantessa": "mercantess", "mercanti": "mercant", "mercantile": "mercantil", "mercanzia": "mercanz", "mercanzie": "mercanz", "mercati": "merc", "mercatino": "mercatin", "mercato": "merc", "merce": "merc", "mercè": "merc", "merchant": "merchant", "merci": "merc", "mercificassero": "mercific", "merckx": "merckx", "mercoled": "mercoled", "mercoledi": "mercoled", "mercoledì": "mercoled", "mercosur": "mercosur", "merenda": "mer", "merid": "merid", "meridionale": "meridional", "meridionali": "meridional", "meridione": "meridion", "merino": "merin", "merita": "mer", "meritano": "merit", "meritare": "merit", "meritarlo": "merit", "meritata": "merit", "meritatamente": "meritat", "meritato": "merit", "meritava": "merit", "meritavano": "merit", "meriterebbe": "merit", "meritevole": "meritevol", "meriti": "mer", "merito": "mer", "meritoria": "meritor", "merka": "merk", "merlene": "merlen", "merli": "merl", "merlo": "merl", "merloni": "merlon", "merlotti": "merlott", "merluzzi": "merluzz", "mero": "mer", "merode": "merod", "merone": "meron", "merrill": "merrill", "merval": "merval", "mes": "mes", "mescé": "mesc", "mescendo": "mesc", "mescendosi": "mesc", "mescere": "mesc", "mesceva": "mesc", "meschina": "meschin", "meschine": "meschin", "meschinello": "meschinell", "meschini": "meschin", "meschino": "meschin", "mescola": "mescol", "mescolando": "mescol", "mescolano": "mescol", "mescolarsi": "mescol", "mescolate": "mescol", "mescolati": "mescol", "mescolato": "mescol", "mescolava": "mescol", "mescuglio": "mescugl", "mese": "mes", "mesi": "mes", "messa": "mess", "messaggera": "messagger", "messaggero": "messagger", "messaggi": "messagg", "messaggiero": "messaggier", "messaggio": "messagg", "messale": "messal", "messe": "mess", "messele": "messel", "messer": "messer", "messere": "mess", "messi": "mess", "messicana": "messican", "messicane": "messican", "messicani": "messican", "messicano": "messic", "messico": "messic", "messina": "messin", "messo": "mess", "messori": "messor", "messosi": "messos", "mesta": "mest", "mesti": "mest", "mestiere": "mest", "mestieri": "mestier", "mestizia": "mestiz", "mesto": "mest", "mestolo": "mestol", "meta": "met", "metà": "met", "metafisica": "metafis", "metafisiche": "metafis", "metafisico": "metafis", "metafora": "metafor", "metafore": "metafor", "metall": "metall", "metalli": "metall", "metallo": "metall", "metallurgiche": "metallurg", "metallurgici": "metallurg", "metallurgico": "metallurg", "metalmeccanica": "metalmeccan", "metalmeccaniche": "metalmeccan", "metalmeccanici": "metalmeccan", "metalmeccanico": "metalmeccan", "metamorfosi": "metamorf", "metaniere": "metan", "metano": "met", "metanopoli": "metanopol", "metastasio": "metastas", "meteo": "mete", "meteorite": "meteor", "meteorologia": "meteorolog", "metereologia": "metereolog", "meteria": "meter", "meticolosamente": "meticol", "metodi": "metod", "metodo": "metod", "metri": "metr", "metro": "metr", "metrò": "metr", "metropolitana": "metropolitan", "metta": "mett", "mettano": "mett", "mette": "mett", "mettendo": "mett", "mettendoci": "mett", "mettendole": "mett", "mettendosi": "mett", "mettendovi": "mett", "metter": "metter", "metterà": "mett", "metteranno": "mett", "metterci": "mett", "mettercisi": "mettercis", "mettere": "mett", "metterebbe": "mett", "metteremo": "mett", "metterete": "mett", "mettergli": "mett", "metterla": "mett", "metterle": "mett", "metterli": "mett", "metterlo": "mett", "mettermi": "mett", "mettermici": "metterm", "metterne": "mett", "metterò": "mett", "mettersela": "mettersel", "mettersele": "mettersel", "metterseli": "mettersel", "mettersi": "mett", "metterti": "mett", "mettervi": "mett", "mettesse": "mettess", "mettessero": "mett", "mettessimo": "mettessim", "metteva": "mett", "mettevan": "mettevan", "mettevano": "mett", "metti": "mett", "mettiamo": "mett", "mettila": "mettil", "mettimale": "mettimal", "metto": "mett", "metton": "metton", "mettono": "mett", "metz": "metz", "mexicana": "mexican", "meyer": "meyer", "mezz": "mezz", "mezza": "mezz", "mezzaluna": "mezzalun", "mezzani": "mezzan", "mezzanotte": "mezzanott", "mezze": "mezz", "mezzetta": "mezzett", "mezzi": "mezz", "mezzo": "mezz", "mezzogiorno": "mezzogiorn", "mficamente": "mfic", "mg": "mg", "mi": "mi", "mia": "mia", "miami": "miam", "mib": "mib", "mibtel": "mibtel", "miccichè": "miccic", "miceli": "micel", "michael": "michael", "michalkov": "michalkov", "michel": "michel", "michela": "michel", "michelaccio": "michelacc", "michele": "michel", "micheletti": "michelett", "michelle": "michell", "michetti": "michett", "micidiale": "micidial", "micillo": "micill", "microfono": "microf", "micromagie": "micromag", "microprocessori": "microprocessor", "microsoft": "microsoft", "mida": "mid", "middle": "middl", "midei": "mide", "midget": "midget", "mie": "mie", "miei": "mie", "mieli": "miel", "miert": "miert", "miete": "miet", "mietere": "miet", "mig": "mig", "miglia": "migl", "migliaia": "migliai", "migliaio": "migliai", "miglietta": "migliett", "miglio": "migl", "miglior": "miglior", "migliora": "miglior", "miglioramento": "miglior", "migliorando": "miglior", "migliorano": "miglior", "migliorare": "miglior", "migliorata": "miglior", "migliorati": "miglior", "migliorato": "miglior", "migliore": "miglior", "migliorerà": "miglior", "migliori": "miglior", "migo": "mig", "miguel": "miguel", "mih": "mih", "mihajlovic": "mihajlovic", "mike": "mik", "mikhail": "mikhail", "mikhalkov": "mikhalkov", "miklos": "miklos", "mil": "mil", "mila": "mil", "milan": "milan", "milanese": "milanes", "milanesi": "milanes", "milani": "milan", "milanista": "milan", "milanisti": "milan", "milano": "mil", "milardi": "milard", "milian": "milian", "miliardarie": "miliardar", "miliardi": "miliard", "miliardo": "miliard", "milion": "milion", "milione": "milion", "milioni": "milion", "militante": "milit", "militanti": "milit", "militanza": "milit", "militare": "milit", "militari": "militar", "militeck": "militeck", "milizia": "miliz", "miliziani": "milizian", "milizie": "miliz", "mill": "mill", "millantato": "millant", "millanteria": "millanter", "mille": "mill", "millennio": "millenn", "miller": "miller", "milo": "mil", "mimì": "mim", "mimmo": "mimm", "mimouni": "mimoun", "mimun": "mimun", "mina": "min", "minacce": "minacc", "minaccevole": "minaccevol", "minacci": "minacc", "minaccia": "minacc", "minacciando": "minacc", "minacciare": "minacc", "minacciarono": "minacc", "minacciata": "minacc", "minacciate": "minacc", "minacciati": "minacc", "minacciato": "minacc", "minacciava": "minacc", "minacciavano": "minacc", "minacciosa": "minacc", "minacciose": "minacc", "minacciosi": "minacc", "minaccioso": "minacc", "minaciati": "minac", "minafra": "minafr", "minar": "min", "minata": "min", "minaudo": "minaud", "mindy": "mindy", "mine": "min", "minerali": "mineral", "minerarie": "minerar", "minestra": "minestr", "mingherlino": "mingherlin", "mini": "min", "miniati": "min", "minibar": "minib", "minicucci": "minicucc", "minigonna": "minigonn", "minima": "minim", "minimamente": "minim", "minime": "minim", "minimi": "minim", "minimizzare": "minimizz", "minimizzato": "minimizz", "minimo": "minim", "minimò": "minim", "miniserie": "miniser", "ministeo": "ministe", "ministeri": "minister", "ministeriale": "ministerial", "ministeriali": "ministerial", "ministero": "minister", "ministra": "ministr", "ministri": "ministr", "ministro": "ministr", "minnelli": "minnell", "mino": "min", "minor": "minor", "minoranza": "minor", "minoranze": "minor", "minore": "minor", "minorenni": "minorenn", "minori": "minor", "minotti": "minott", "minusvalenze": "minusvalent", "minuta": "min", "minutamente": "minut", "minute": "min", "minuti": "min", "minutka": "minutk", "minuto": "min", "minutò": "minut", "minuzie": "minuz", "minya": "miny", "minzolini": "minzolin", "minzoliniana": "minzolinian", "mio": "mio", "mira": "mir", "mirabelli": "mirabell", "mirabil": "mirabil", "mirabile": "mirabil", "mirabili": "mirabil", "mirabilmente": "mirabil", "miracoli": "miracol", "miracolo": "miracol", "miracolosa": "miracol", "miracolosamente": "miracol", "miracolosi": "miracol", "miraggio": "miragg", "mirallegri": "mirallegr", "miran": "miran", "miranda": "mirand", "mirano": "mir", "mirar": "mir", "mirare": "mir", "mirata": "mir", "mirato": "mir", "mirava": "mir", "mire": "mir", "miridionali": "miridional", "mirino": "mirin", "mirko": "mirk", "miroglio": "mirogl", "mirror": "mirror", "mis": "mis", "miscele": "miscel", "mischia": "misc", "mischiando": "misc", "mischiarsi": "misc", "mischiati": "misc", "mischiato": "misc", "mischiava": "misc", "miscredenza": "miscredent", "miscuglio": "miscugl", "mise": "mis", "misera": "miser", "miserabil": "miserabil", "miserabile": "miser", "miserabili": "miser", "miserabilmente": "miserabil", "miserere": "miser", "miseri": "miser", "miseria": "miser", "misericordia": "misericord", "misericordie": "misericord", "misericordiosa": "misericord", "misericordioso": "misericord", "miserie": "miser", "misero": "miser", "misfatti": "misfatt", "miss": "miss", "misserville": "misservill", "missilistica": "missilist", "missino": "missin", "missionaria": "missionar", "missionarie": "missionar", "missionario": "missionar", "missione": "mission", "missioni": "mission", "mississipi": "mississip", "missiva": "miss", "mista": "mist", "miste": "mist", "misteri": "mister", "misteriori": "misterior", "misteriosa": "mister", "misteriosamente": "mister", "misteriose": "mister", "misteriosi": "mister", "misterioso": "mister", "mistero": "mister", "mistica": "mistic", "misto": "mist", "mistretta": "mistrett", "mistura": "mistur", "misura": "misur", "misurar": "misur", "misurare": "misur", "misurarlo": "misur", "misurarsi": "misur", "misurata": "misur", "misurati": "misur", "misurato": "misur", "misuratore": "misur", "misurava": "misur", "misure": "misur", "mit": "mit", "mita": "mit", "mitica": "mitic", "mitigata": "mitig", "mitigato": "mitig", "mitigava": "mitig", "mitizzata": "mitizz", "mito": "mit", "mitra": "mitr", "mitragliatrice": "mitragl", "mitrato": "mitr", "mitsubishi": "mitsubish", "mittel": "mittel", "mittmensch": "mittmensc", "miu": "miu", "miura": "miur", "miz": "miz", "ml": "ml", "mll": "mll", "mm": "mm", "mmw": "mmw", "mmx": "mmx", "mn": "mn", "mo": "mo", "mò": "mò", "mob": "mob", "mobi": "mob", "mobil": "mobil", "mobile": "mobil", "mobili": "mobil", "mobilificio": "mobilific", "mobilità": "mobil", "mobilitare": "mobilit", "mobilitati": "mobilit", "mobilitato": "mobilit", "mobilitazione": "mobilit", "moccolo": "moccol", "mod": "mod", "moda": "mod", "modadiscio": "modadisc", "modalità": "modal", "mode": "mod", "modella": "modell", "modelli": "modell", "modello": "modell", "modena": "moden", "modenese": "modenes", "moderare": "moder", "moderarle": "moder", "moderata": "moder", "moderate": "moder", "moderati": "moder", "moderatismo": "moderat", "moderato": "moder", "moderatore": "moder", "moderazione": "moder", "moderna": "modern", "moderni": "modern", "modernità": "modern", "moderno": "modern", "modesta": "modest", "modestamente": "modest", "modeste": "modest", "modesti": "modest", "modestia": "modest", "modesto": "modest", "modhumangal": "modhumangal", "modi": "mod", "modica": "modic", "modifica": "modif", "modificando": "modific", "modificare": "modific", "modificata": "modific", "modificate": "modific", "modificato": "modific", "modifiche": "modif", "modo": "mod", "modulare": "modul", "moduli": "modul", "moeller": "moeller", "mogadisciani": "mogadiscian", "mogadiscio": "mogadisc", "moggio": "mogg", "mogli": "mogl", "moglie": "mogl", "mohammed": "mohammed", "mohawk": "mohawk", "mohovke": "mohovk", "mohtashemi": "mohtashem", "moia": "moi", "moiano": "moi", "moine": "moin", "moio": "moi", "moioli": "moiol", "moion": "moion", "moiono": "moi", "mole": "mol", "molesta": "molest", "molestar": "molest", "molestare": "molest", "molestato": "molest", "molesti": "molest", "molestie": "molest", "molfetta": "molfett", "molinari": "molinar", "molino": "molin", "molla": "moll", "mollare": "moll", "molle": "moll", "mollemente": "mollement", "molli": "moll", "mollo": "moll", "molt": "molt", "molta": "molt", "molte": "molt", "molteno": "molten", "molteplici": "moltepl", "molti": "molt", "moltiplicando": "moltiplic", "moltiplicano": "moltiplic", "moltiplicare": "moltiplic", "moltiplicarsi": "moltiplic", "moltiplicava": "moltiplic", "moltiplicazione": "moltipl", "moltiplice": "moltipl", "moltiplici": "moltipl", "moltissime": "moltissim", "moltissimi": "moltissim", "moltissimo": "moltissim", "moltitudine": "moltitudin", "molto": "molt", "mombasa": "mombas", "momentanea": "momentane", "momentaneamente": "momentan", "momentaneo": "momentane", "momentano": "moment", "momenti": "moment", "momentino": "momentin", "momento": "moment", "monaca": "monac", "monacanda": "monacand", "monacande": "monacand", "monache": "monac", "monaci": "monac", "monaco": "monac", "monarca": "monarc", "monasteri": "monaster", "monastero": "monaster", "monate": "mon", "monathlich": "monathlic", "monatti": "monatt", "monatto": "monatt", "monattuccio": "monattucc", "moncassin": "moncassin", "monche": "monc", "moncone": "moncon", "monda": "mond", "mondadori": "mondador", "mondana": "mondan", "mondani": "mondan", "mondè": "mond", "mondella": "mondell", "mondi": "mond", "mondiale": "mondial", "mondialfondo": "mondialfond", "mondiali": "mondial", "mondini": "mondin", "mondo": "mond", "mondò": "mond", "mondonico": "mondon", "mondovì": "mondov", "monere": "mon", "moneta": "monet", "monetaria": "monetar", "monetario": "monetar", "monete": "mon", "moneterio": "moneter", "money": "money", "moneytime": "moneytim", "monfalcone": "monfalcon", "monferrato": "monferr", "monica": "monic", "monito": "mon", "monitor": "monitor", "monitoraggio": "monitoragg", "monitorare": "monitor", "monizione": "monizion", "monoblocco": "monoblocc", "monolith": "monolith", "monologo": "monolog", "monopattino": "monopattin", "monopoli": "monopol", "monopolio": "monopol", "monopolismo": "monopol", "monopolisti": "monopol", "monopolistico": "monopolist", "monorchio": "monorc", "monos": "monos", "monosillabo": "monosillab", "monotona": "monoton", "mons": "mons", "monsignor": "monsignor", "monsignore": "monsignor", "monsignori": "monsignor", "mont": "mont", "monta": "mont", "montagna": "montagn", "montagnani": "montagnan", "montagne": "montagn", "montalbano": "montalb", "montalto": "montalt", "montanara": "montanar", "montanare": "montan", "montanari": "montanar", "montanaro": "montanar", "montanarolo": "montanarol", "montanelli": "montanell", "montante": "montant", "montare": "mont", "montarono": "mont", "montasse": "mont", "montato": "mont", "monte": "mont", "montecarlo": "montec", "montecitorio": "montecitor", "montecuccoli": "montecuccol", "montedison": "montedison", "montefibre": "montefibr", "montefiorino": "montefiorin", "montepremi": "monteprem", "montero": "monter", "montervarchi": "montervarc", "montesano": "montes", "montevarchi": "montevarc", "montevideo": "montevide", "monti": "mont", "monticone": "monticon", "montino": "montin", "montò": "mont", "montpellier": "montpellier", "montreal": "montreal", "monumento": "monument", "monza": "monz", "moon": "moon", "moore": "moor", "mora": "mor", "morale": "moral", "morali": "moral", "moralista": "moral", "moratti": "moratt", "morbidà": "morbid", "morbidò": "morbid", "morbo": "morb", "morbos": "morbos", "morbus": "morbus", "mord": "mord", "mordere": "mord", "morderle": "mord", "mordevano": "mord", "moreau": "moreau", "morendo": "mor", "moreno": "moren", "moretti": "morett", "moretto": "morett", "morfeo": "morfe", "morfologia": "morfolog", "morgan": "morgan", "mori": "mor", "morì": "mor", "morìa": "morì", "moribondi": "moribond", "moribondo": "moribond", "moriero": "morier", "morir": "mor", "morirà": "mor", "morire": "mor", "moriron": "moriron", "morirono": "mor", "morisse": "moriss", "moriva": "mor", "morivano": "mor", "mormoracchiare": "mormoracc", "mormorando": "mormor", "mormorava": "mormor", "mormorazione": "mormor", "mormorazioni": "mormor", "mormorìo": "mormorì", "moro": "mor", "morosa": "moros", "morris": "morris", "morsa": "mors", "morse": "mors", "morsi": "mors", "morso": "mors", "morta": "mort", "mortagli": "mortagl", "mortale": "mortal", "mortales": "mortales", "mortali": "mortal", "mortalità": "mortal", "morte": "mort", "mortem": "mortem", "morti": "mort", "morticina": "morticin", "mortiferi": "mortifer", "mortificata": "mortific", "mortificati": "mortific", "mortificato": "mortific", "morto": "mort", "mortorio": "mortor", "mosca": "mosc", "moscà": "mosc", "moscatelli": "moscatell", "mosche": "mosc", "moschea": "mosche", "moschetti": "moschett", "moschettieri": "moschettier", "moschetto": "moschett", "mosconi": "moscon", "moscovita": "moscov", "moser": "moser", "moses": "moses", "moshe": "mosh", "mossa": "moss", "mosse": "moss", "mossero": "mosser", "mossi": "moss", "mosso": "moss", "mostacci": "mostacc", "mostar": "most", "mostra": "mostr", "mostrando": "mostr", "mostrandosi": "mostr", "mostrano": "mostr", "mostrar": "mostr", "mostrare": "mostr", "mostraron": "mostraron", "mostrarsi": "mostr", "mostrasse": "mostr", "mostrata": "mostr", "mostrati": "mostr", "mostrato": "mostr", "mostratone": "mostraton", "mostrava": "mostr", "mostravan": "mostravan", "mostravano": "mostr", "mostre": "mostr", "mostri": "mostr", "mostriciattolo": "mostriciattol", "mostro": "mostr", "mostrò": "mostr", "mostruose": "mostruos", "mostruosità": "mostruos", "mostruoso": "mostruos", "mota": "mot", "motherwell": "motherwell", "moti": "mot", "motiv": "motiv", "motivandole": "motiv", "motivar": "motiv", "motivasse": "motiv", "motivato": "motiv", "motivazione": "motiv", "motivazioni": "motiv", "motivi": "mot", "motivo": "mot", "motivò": "motiv", "moto": "mot", "motonave": "motonav", "motor": "motor", "motore": "motor", "motoretta": "motorett", "motori": "motor", "motorino": "motorin", "motorizzazione": "motorizz", "motosa": "motos", "motoscafi": "motoscaf", "motoseghe": "motoseg", "motta": "mott", "motti": "mott", "motuum": "motuum", "mouillot": "mouillot", "moussali": "moussal", "mova": "mov", "movan": "movan", "move": "mov", "movendole": "mov", "movendosi": "mov", "movente": "movent", "mover": "mover", "movere": "mov", "moverebbe": "mov", "movermi": "mov", "moverò": "mov", "moversene": "mov", "moversi": "mov", "moverti": "mov", "movesse": "movess", "moveva": "mov", "movimentati": "moviment", "movimentato": "moviment", "movimentazione": "moviment", "movimenti": "mov", "movimento": "mov", "movinemto": "movinemt", "movladi": "movlad", "movon": "movon", "movono": "mov", "mowbray": "mowbray", "mozione": "mozion", "mozioni": "mozion", "mozzi": "mozz", "mozzicone": "mozzicon", "mr": "mr", "mrc": "mrc", "mri": "mri", "ms": "ms", "msc": "msc", "msi": "msi", "mu": "mu", "mucchi": "mucc", "mucchietto": "mucchiett", "mucchio": "mucc", "mudler": "mudler", "mugghiava": "mugg", "muggito": "mugg", "mughal": "mughal", "mugolìo": "mugolì", "mukerjee": "mukerje", "mukherjee": "mukherje", "mula": "mul", "mulder": "mulder", "mule": "mul", "mulè": "mul", "mulinare": "mulin", "mulinello": "mulinell", "mulini": "mulin", "mulo": "mul", "multa": "mult", "multe": "mult", "multiazioni": "multiazion", "multifariam": "multifariam", "multifondo": "multifond", "multimediale": "multimedial", "multinazionale": "multinazional", "multinazionali": "multinazional", "multiproprietà": "multipropriet", "multiras": "multiras", "multiuso": "multius", "munda": "mund", "mundis": "mundis", "mungere": "mung", "municipale": "municipal", "municipali": "municipal", "municipalizzate": "municipalizz", "munificenza": "munificent", "muniti": "mun", "munizione": "munizion", "munoz": "munoz", "muoia": "muoi", "muoiono": "muoi", "muore": "muor", "muove": "muov", "muovendo": "muov", "muovere": "muov", "muoverò": "muov", "muoversi": "muov", "muovono": "muov", "mura": "mur", "muraglia": "muragl", "muraglie": "muragl", "murati": "mur", "murato": "mur", "muratori": "murator", "murettino": "murettin", "murgita": "murg", "muri": "mur", "muriccioli": "muricciol", "muricciolo": "muricciol", "murmansk": "murmansk", "muro": "mur", "murphy": "murphy", "musa": "mus", "muscardini": "muscardin", "muscoloso": "muscol", "muse": "mus", "museeuv": "museeuv", "museo": "muse", "museum": "museum", "musher": "musher", "musi": "mus", "music": "music", "musica": "music", "musical": "musical", "musicale": "musical", "musicali": "musical", "musiche": "music", "musicista": "music", "musicisti": "music", "muso": "mus", "mussi": "muss", "mussolenghe": "mussoleng", "mussolente": "mussolent", "mussolini": "mussolin", "mustacchi": "mustacc", "mustigarufi": "mustigaruf", "musulmana": "musulman", "musulmani": "musulman", "musulmano": "musulm", "musumeci": "musumec", "musure": "musur", "muta": "mut", "mutabile": "mutabil", "mutabili": "mutabil", "mutande": "mutand", "mutandosi": "mut", "mutano": "mut", "mutar": "mut", "mutare": "mut", "mutarsi": "mut", "mutasse": "mut", "mutata": "mut", "mutate": "mut", "mutati": "mut", "mutatio": "mutat", "mutato": "mut", "mutazione": "mutazion", "mutazioni": "mutazion", "mute": "mut", "muterò": "mut", "muti": "mut", "mutilata": "mutil", "mutilate": "mutil", "muto": "mut", "mutò": "mut", "mutria": "mutr", "mutua": "mutu", "mutualisti": "mutual", "mutualistici": "mutualist", "mutuati": "mutu", "mutui": "mutu", "muzio": "muz", "muzzi": "muzz", "mv": "mv", "mw": "mw", "my": "my", "myanma": "myanm", "myra": "myra", "mz": "mz", "n": "n", "na": "na", "naas": "naas", "nababbo": "nababb", "nabi": "nab", "nabil": "nabil", "nabila": "nabil", "nacht": "nacht", "nacque": "nacqu", "nacquero": "nacquer", "nadal": "nadal", "nadtierechni": "nadtierechn", "nagisa": "nagis", "nagracapital": "nagracapital", "nagrarend": "nagrarend", "nai": "nai", "naionale": "naional", "nairobi": "nairob", "naizonale": "naizonal", "naji": "naj", "nalcik": "nalcik", "namibia": "namib", "namik": "namik", "nan": "nan", "nando": "nand", "nani": "nan", "nania": "nan", "nanni": "nann", "nantes": "nantes", "nantucket": "nantucket", "napoletana": "napoletan", "napoletane": "napoletan", "napoletano": "napolet", "napoli": "napol", "napolitano": "napolit", "nappa": "napp", "nappi": "napp", "narasimha": "narasimh", "narcotraffico": "narcotraff", "nardi": "nard", "nardini": "nardin", "narmak": "narmak", "narora": "naror", "narra": "narr", "narratione": "narration", "narratore": "narrator", "narrazione": "narrazion", "nasce": "nasc", "nascente": "nascent", "nascer": "nascer", "nascerà": "nasc", "nascere": "nasc", "nascerebbe": "nasc", "nascesse": "nascess", "nasceste": "nascest", "nasceva": "nasc", "nascevan": "nascevan", "nascita": "nasc", "nascite": "nasc", "nasconde": "nascond", "nascondendo": "nascond", "nasconder": "nasconder", "nasconderci": "nascond", "nascondere": "nascond", "nasconderla": "nascond", "nasconderlo": "nascond", "nascondersi": "nascond", "nascondeva": "nascond", "nascondevano": "nascond", "nascondevo": "nascond", "nascondigli": "nascondigl", "nascondiglio": "nascondigl", "nascondimento": "nascond", "nascondono": "nascond", "nascono": "nasc", "nascose": "nascos", "nascosero": "nascoser", "nascosta": "nascost", "nascostamente": "nascost", "nascoste": "nascost", "nascosti": "nascost", "nascosto": "nascost", "naso": "nas", "nasrin": "nasrin", "nassau": "nassau", "nastri": "nastr", "nastro": "nastr", "nata": "nat", "natale": "natal", "natali": "natal", "natalizie": "nataliz", "natanti": "natant", "nate": "nat", "nathalie": "nathal", "nathan": "nathan", "nathion": "nathion", "nati": "nat", "natìa": "natì", "national": "national", "nativa": "nat", "nativi": "nat", "nativo": "nat", "nato": "nat", "natura": "natur", "natural": "natural", "naturale": "natural", "naturali": "natural", "naturalisti": "natural", "naturalizzato": "naturalizz", "naturalmente": "natural", "naufraga": "naufrag", "naufragata": "naufrag", "naufragati": "naufrag", "naufragio": "naufrag", "naufrago": "naufrag", "naursk": "naursk", "nautica": "nautic", "nautiche": "nautic", "nautico": "nautic", "nav": "nav", "nava": "nav", "navale": "naval", "navali": "naval", "navarra": "navarr", "navarrini": "navarrin", "navarro": "navarr", "nave": "nav", "navetta": "navett", "navette": "navett", "navi": "nav", "navigante": "navig", "navigare": "navig", "navigatore": "navig", "navigazione": "navig", "navigli": "navigl", "naviglio": "navigl", "naz": "naz", "nazareno": "nazaren", "nazifasciste": "nazifasc", "nazional": "nazional", "nazionaldemocratico": "nazionaldemocrat", "nazionale": "nazional", "nazionali": "nazional", "nazionalisti": "nazional", "nazionalità": "nazional", "nazionalizzato": "nazionalizz", "nazione": "nazion", "nazioni": "nazion", "nazismo": "nazism", "nazista": "nazist", "naziste": "nazist", "nazisti": "nazist", "nazistoidi": "nazistoid", "nazzari": "nazzar", "nba": "nba", "nbaction": "nbaction", "nc": "nc", "ndr": "ndr", "ne": "ne", "né": "nè", "nè": "nè", "neanche": "neanc", "neazelandese": "neazelandes", "nebbia": "nebb", "nebbie": "nebb", "nebbione": "nebbion", "nec": "nec", "necchi": "necc", "necesidades": "necesidades", "necessari": "necessar", "necessaria": "necessar", "necessariamente": "necessar", "necessarie": "necessar", "necessario": "necessar", "necesserario": "necesserar", "necessita": "necess", "necessità": "necess", "necroforo": "necrofor", "necwessari": "necwessar", "ned": "ned", "nedo": "ned", "nèforse": "nèfors", "nega": "neg", "negando": "neg", "negano": "neg", "negar": "neg", "negare": "neg", "negarla": "neg", "negarlo": "neg", "negasse": "neg", "negata": "neg", "negativa": "negat", "negativamente": "negat", "negative": "negat", "negativi": "negat", "negativo": "negat", "negato": "neg", "negavano": "neg", "negheranno": "negh", "neghino": "neghin", "negl": "negl", "negletta": "neglett", "negletto": "neglett", "negli": "negl", "negligenza": "negligent", "negozi": "negoz", "negozia": "negoz", "negoziare": "negoz", "negoziata": "negoz", "negoziati": "negoz", "negoziato": "negoz", "negoziatore": "negoz", "negoziazione": "negoz", "negozio": "negoz", "negri": "negr", "negrì": "negr", "negritos": "negritos", "negro": "negr", "nei": "nei", "neil": "neil", "nel": "nel", "nell": "nell", "nella": "nell", "nelle": "nell", "nelli": "nell", "nello": "nell", "nelson": "nelson", "nematullah": "nematullah", "nemetria": "nemetr", "nemica": "nemic", "nemiche": "nemic", "nemici": "nemic", "nemicì": "nemic", "nemico": "nemic", "nemicò": "nemic", "nemmen": "nemmen", "nemmeno": "nemmen", "neo": "neo", "neoborboni": "neoborbon", "neoborbonici": "neoborbon", "neoborbonico": "neoborbon", "neofascista": "neofasc", "neofita": "neof", "neogollisti": "neogoll", "neomin": "neomin", "neonata": "neon", "neonati": "neon", "neonazista": "neonaz", "neonazisti": "neonaz", "neoprotestante": "neoprotest", "neoprotestantesimo": "neoprotestantesim", "neppur": "neppur", "neppure": "neppur", "ner": "ner", "nera": "ner", "nerazzurra": "nerazzurr", "nerazzurri": "nerazzurr", "nerazzurro": "nerazzurr", "nerborute": "nerbor", "nerboruto": "nerbor", "nere": "ner", "neri": "ner", "nero": "ner", "nervi": "nerv", "nervosismo": "nervos", "nervoso": "nervos", "nessun": "nessun", "nessuna": "nessun", "nessuno": "nessun", "nessunò": "nessun", "netta": "nett", "nettamente": "nett", "nettaq": "nettaq", "nette": "nett", "netti": "nett", "netto": "nett", "network": "network", "netzraim": "netzraim", "neue": "neu", "neutrale": "neutral", "neutralità": "neutral", "neutralizzando": "neutralizz", "neutrone": "neutron", "nev": "nev", "neve": "nev", "nevers": "nevers", "nevralgica": "nevralg", "new": "new", "news": "news", "newsletter": "newsletter", "newton": "newton", "next": "next", "nf": "nf", "ngc": "ngc", "ngrato": "ngrat", "nibbio": "nibb", "nic": "nic", "nicaragua": "nicaragu", "nicchia": "nicc", "nice": "nic", "nicholas": "nicholas", "nick": "nick", "nicky": "nicky", "nicola": "nicol", "nicolay": "nicolay", "nicole": "nicol", "nicosia": "nicos", "nidiata": "nid", "nido": "nid", "nieman": "nieman", "niemann": "niemann", "niemczak": "niemczak", "nient": "nient", "niente": "nient", "nientemeno": "nientemen", "niger": "niger", "nigeria": "niger", "night": "night", "nigricanti": "nigric", "niguarda": "niguard", "nikita": "nik", "nikkei": "nikke", "nikolaievic": "nikolaievic", "nimis": "nimis", "nina": "nin", "ninistro": "ninistr", "ninnandolo": "ninn", "nino": "nin", "nipar": "nip", "nipote": "nipot", "nipoti": "nipot", "nipotino": "nipotin", "nippo": "nipp", "nippon": "nippon", "niro": "nir", "niven": "niven", "nivers": "nivers", "nizza": "nizz", "nizzazione": "nizzazion", "nizzola": "nizzol", "nnnn": "nnnn", "no": "no", "nò": "nò", "nobel": "nobel", "noberto": "nobert", "nobil": "nobil", "nobile": "nobil", "nobilè": "nobil", "nobili": "nobil", "nobilissimo": "nobilissim", "nobilmente": "nobil", "nobiltà": "nobilt", "nocca": "nocc", "nocchiuto": "nocc", "noccioli": "nocciol", "noce": "noc", "nocerina": "nocerin", "noceto": "nocet", "noci": "noc", "nocive": "nociv", "noderoso": "noder", "nodi": "nod", "nodo": "nod", "noè": "noè", "noel": "noel", "noi": "noi", "noì": "noì", "noia": "noi", "noie": "noi", "noiosa": "noios", "noiose": "noios", "noiosi": "noios", "noioso": "noios", "noir": "noir", "nokia": "nok", "nola": "nol", "noleggia": "nolegg", "noleggiato": "nolegg", "nomaccio": "nomacc", "nome": "nom", "nomè": "nom", "nomenclatura": "nomenclatur", "nomi": "nom", "nomina": "nomin", "nominale": "nominal", "nominar": "nomin", "nominare": "nomin", "nominarla": "nomin", "nominarlo": "nomin", "nominarmi": "nomin", "nominata": "nomin", "nominate": "nomin", "nominati": "nomin", "nominato": "nomin", "nominava": "nomin", "nomine": "nomin", "nomini": "nomin", "nominiamo": "nomin", "nominitive": "nominit", "nomino": "nomin", "nominò": "nomin", "nomisma": "nomism", "non": "non", "nonchè": "nonc", "noncurante": "noncur", "noncuranza": "noncur", "nondimeno": "nondimen", "nones": "nones", "nonfa": "nonf", "noni": "non", "nonna": "nonn", "nonni": "nonn", "nonno": "nonn", "nonosolomoda": "nonosolomod", "nonostante": "nonost", "nonsolomoda": "nonsolomod", "norberto": "norbert", "nord": "nord", "nordafricanò": "nordafrican", "nordamerica": "nordamer", "nordcapital": "nordcapital", "nordfondo": "nordfond", "nordica": "nordic", "nordio": "nord", "nordiste": "nordist", "norditalia": "nordital", "nordmix": "nordmix", "norge": "norg", "norma": "norm", "normale": "normal", "normali": "normal", "normalità": "normal", "normalizzazione": "normalizz", "normalmente": "normal", "normativa": "normat", "normative": "normat", "norme": "norm", "norsk": "norsk", "north": "north", "norvegese": "norveges", "norvegesi": "norveges", "norvegia": "norveg", "nos": "nos", "noseda": "nosed", "nostir": "nost", "nostra": "nostr", "nostre": "nostr", "nostri": "nostr", "nostro": "nostr", "nota": "not", "notabile": "notabil", "notabili": "notabil", "notabilmente": "notabil", "notaio": "notai", "notando": "not", "notano": "not", "notar": "not", "notare": "not", "notari": "notar", "notarile": "notaril", "notaristefano": "notaristef", "notarne": "not", "notaro": "notar", "notate": "not", "notati": "not", "notato": "not", "notava": "not", "notavan": "notavan", "notazioni": "notazion", "note": "not", "notevole": "notevol", "notevoli": "notevol", "notevolmente": "notevol", "noti": "not", "noticina": "noticin", "notificato": "notific", "notissimo": "notissim", "notitia": "notit", "notize": "notiz", "notizia": "notiz", "notizià": "notiz", "notiziari": "notiziar", "notiziario": "notiziar", "notizie": "notiz", "noto": "not", "notorietà": "notoriet", "notre": "notr", "notta": "nott", "nottata": "nott", "notte": "nott", "notti": "nott", "nottingham": "nottingham", "notturna": "notturn", "notturno": "notturn", "nov": "nov", "novamente": "nov", "novanta": "novant", "novantacinque": "novantacinqu", "novantanove": "novantanov", "novantasei": "novantase", "novara": "novar", "novatore": "novator", "nove": "nov", "novelle": "novell", "novellisti": "novell", "novembre": "novembr", "novi": "nov", "noville": "novill", "novità": "novit", "novizi": "noviz", "noviziato": "noviz", "novizio": "noviz", "novoie": "novoi", "nozhai": "nozha", "nozione": "nozion", "nozioni": "nozion", "nozze": "nozz", "np": "np", "npa": "npa", "npd": "npd", "nr": "nr", "ns": "ns", "nsentire": "nsent", "nt": "nt", "ntv": "ntv", "nu": "nu", "nubi": "nub", "nuca": "nuc", "nuciari": "nuciar", "nuclear": "nucl", "nucleare": "nucl", "nucleari": "nuclear", "nucleo": "nucle", "nuda": "nud", "nude": "nud", "nudi": "nud", "nudità": "nudit", "nudrita": "nudr", "nuestro": "nuestr", "nugolo": "nugol", "nuits": "nuits", "null": "null", "nulla": "null", "nulladimeno": "nulladimen", "nulle": "null", "nulli": "null", "nullità": "nullit", "numbatkaime": "numbatkaim", "numerazione": "numer", "numeri": "numer", "numerica": "numer", "numero": "numer", "numerosa": "numer", "numerose": "numer", "numerosi": "numer", "numerosissimi": "numerosissim", "nunzio": "nunz", "nuocciano": "nuocc", "nuocere": "nuoc", "nuora": "nuor", "nuore": "nuor", "nuoro": "nuor", "nuotando": "nuot", "nuoto": "nuot", "nuov": "nuov", "nuova": "nuov", "nuovamente": "nuov", "nuove": "nuov", "nuovi": "nuov", "nuovo": "nuov", "nutre": "nutr", "nutrienti": "nutrient", "nutrirsi": "nutr", "nutrito": "nutr", "nutrono": "nutr", "nuvola": "nuvol", "nuvolaglia": "nuvolagl", "nuvole": "nuvol", "nuvoli": "nuvol", "nuvolo": "nuvol", "nuvoloni": "nuvolon", "nuvolosità": "nuvolos", "nuvoloso": "nuvol", "nuziale": "nuzial", "nv": "nv", "nwl": "nwl", "o": "o", "oasi": "oas", "oaxaca": "oaxac", "obb": "obb", "obbedienza": "obbedient", "obbedita": "obbed", "obbiettivi": "obbiett", "obbiettivo": "obbiett", "obbl": "obbl", "obblig": "obblig", "obbliga": "obblig", "obbligandosi": "obblig", "obbligante": "obblig", "obbligare": "obblig", "obbligarla": "obblig", "obbligasse": "obblig", "obbligata": "obblig", "obbligati": "obblig", "obbligatissimo": "obbligatissim", "obbligato": "obblig", "obbligatoria": "obbligator", "obbligatoriamente": "obbligator", "obbligatorio": "obbligator", "obbligavano": "obblig", "obbligaz": "obbligaz", "obbligazionar": "obbligazion", "obbligazionari": "obbligazionar", "obbligazionario": "obbligazionar", "obbligazione": "obblig", "obbligazioni": "obblig", "obblighi": "obblig", "obbligo": "obblig", "obertwart": "obertwart", "obesi": "obes", "obesità": "obes", "obiettivi": "obiett", "obiettività": "obiett", "obiettivo": "obiett", "obiettori": "obiettor", "obiezion": "obiezion", "obiezione": "obiezion", "obiezioni": "obiezion", "oblazione": "oblazion", "oblio": "obli", "oblìo": "oblì", "obliquo": "obliqu", "oblivione": "oblivion", "observer": "observer", "obsta": "obsta", "oca": "oca", "occasion": "occasion", "occasionale": "occasional", "occasionali": "occasional", "occasione": "occasion", "occasioni": "occasion", "occelli": "occell", "occhetto": "occhett", "occhi": "occhi", "occhiacci": "occhiacc", "occhiaie": "occhiai", "occhiali": "occhial", "occhiata": "occhi", "occhiate": "occhi", "occhiatina": "occhiatin", "occhiello": "occhiell", "occhietti": "occhiett", "occhij": "occhij", "occhio": "occhi", "occhioni": "occhion", "occidentale": "occidental", "occidentali": "occidental", "occidente": "occident", "occorre": "occorr", "occorrente": "occorrent", "occorrenti": "occorrent", "occorrenza": "occorrent", "occorrenze": "occorrent", "occorrerà": "occorr", "occorrere": "occorr", "occorrerebbe": "occorr", "occorresse": "occorress", "occorreva": "occorr", "occorrevano": "occorr", "occorron": "occorron", "occorrono": "occorr", "occorsi": "occors", "occorso": "occors", "occorsogli": "occorsogl", "occulta": "occult", "occulte": "occult", "occulto": "occult", "occupa": "occup", "occupando": "occup", "occupano": "occup", "occupante": "occup", "occupanti": "occup", "occupar": "occup", "occupare": "occup", "occuparli": "occup", "occuparlo": "occup", "occuparmi": "occup", "occuparono": "occup", "occuparsi": "occup", "occupasse": "occup", "occupata": "occup", "occupate": "occup", "occupati": "occup", "occupato": "occup", "occupava": "occup", "occupavan": "occupavan", "occupazionale": "occupazional", "occupazionali": "occupazional", "occupazione": "occup", "occupazionè": "occupazion", "occupazioni": "occup", "occuperà": "occup", "occupò": "occup", "ocean": "ocean", "oceaniche": "ocean", "oceano": "oce", "oche": "oche", "òconnor": "òconnor", "ocosingo": "ocosing", "ocp": "ocp", "oculari": "ocular", "od": "od", "odan": "odan", "oder": "oder", "odessa": "odess", "odi": "odi", "odiare": "odi", "odiata": "odi", "odiati": "odi", "odiato": "odi", "odiava": "odi", "odiavo": "odi", "odierna": "odiern", "odierne": "odi", "odierni": "odiern", "odierno": "odiern", "odio": "odi", "odiosa": "odios", "odiose": "odios", "odiosi": "odios", "odiosissimo": "odiosissim", "odiosità": "odios", "odioso": "odios", "odore": "odor", "odori": "odor", "odorose": "odor", "of": "of", "off": "off", "offende": "offend", "offendendo": "offend", "offender": "offender", "offendere": "offend", "offenderle": "offend", "offensiva": "offens", "offensive": "offens", "offensivo": "offens", "offensori": "offensor", "offer": "offer", "offerse": "offers", "offerta": "offert", "offerte": "offert", "offerti": "offert", "offerto": "offert", "offesa": "offes", "offese": "offes", "offesi": "offes", "offeso": "offes", "office": "offic", "officiale": "official", "officina": "officin", "officine": "officin", "offra": "offra", "offre": "offre", "offrendo": "offrend", "offrì": "offrì", "offrir": "offrir", "offrirà": "offrir", "offrire": "offrir", "offrirgli": "offrirgl", "offrirle": "offrirl", "offrirvi": "offrirv", "offriva": "offriv", "offrivan": "offrivan", "offrivano": "offriv", "offrivo": "offriv", "offrono": "offron", "offuscata": "offusc", "oggetti": "oggett", "oggettistica": "oggettist", "oggettive": "oggett", "oggettivo": "oggett", "oggetto": "oggett", "oggi": "oggi", "oggigiorno": "oggigiorn", "ogn": "ogn", "ogni": "ogni", "ogniuno": "ogniun", "ognun": "ognun", "ognuna": "ognun", "ognuno": "ognun", "oh": "oh", "ohe": "ohe", "ohi": "ohi", "ohimè": "ohim", "oibò": "oib", "oil": "oil", "ok": "ok", "olà": "olà", "olaf": "olaf", "olanda": "oland", "olandese": "olandes", "olandesi": "olandes", "olbia": "olbi", "olcese": "olces", "ole": "ole", "oleg": "oleg", "oleodotto": "oleodott", "olevano": "olev", "olidata": "olid", "oligarchia": "oligarc", "oligarchie": "oligarc", "oligopolio": "oligopol", "olimpiadi": "olimpiad", "olimpica": "olimp", "olimpici": "olimp", "olimpico": "olimp", "olio": "oli", "oliseh": "oliseh", "oliva": "oliv", "olivares": "olivares", "olive": "oliv", "oliveira": "oliveir", "olivelli": "olivell", "olivetti": "olivett", "oliviero": "olivier", "olmi": "olmi", "olocausto": "olocaust", "oloferne": "olof", "olona": "olon", "olp": "olp", "oltraggio": "oltragg", "oltre": "oltre", "oltrechè": "oltrec", "oltremodo": "oltremod", "oltreoceano": "oltreoc", "oltrepassare": "oltrepass", "oltrepassava": "oltrepass", "oltrepassò": "oltrepass", "oltretutto": "oltretutt", "oltreutto": "oltreutt", "om": "om", "omacci": "omacc", "omaggi": "omagg", "omaggio": "omagg", "omar": "omar", "ombra": "ombra", "ombre": "ombre", "ombrelli": "ombrell", "ombrello": "ombrell", "ombretta": "ombrett", "ombrosa": "ombros", "ombroso": "ombros", "omelia": "omel", "omero": "omer", "omessi": "omess", "omesso": "omess", "ometteremo": "omett", "omiciattolo": "omiciattol", "omicida": "omicid", "omicide": "omicid", "omicidi": "omicid", "omicidii": "omicid", "omicidio": "omicid", "omino": "omin", "omnia": "omni", "omnitel": "omnitel", "omogenee": "omogene", "omogenei": "omogene", "omologato": "omolog", "omologazione": "omolog", "omologo": "omolog", "omonime": "omonim", "omonimo": "omonim", "omosessuali": "omosessual", "omosessualità": "omosessual", "on": "on", "once": "once", "oncia": "onci", "ond": "ond", "onda": "onda", "ondata": "ondat", "ondate": "ondat", "onde": "onde", "ondeggiamento": "ondegg", "ondeggiar": "ondegg", "ondeggiare": "ondegg", "ondoso": "ondos", "onerose": "oner", "onesta": "onest", "onestamente": "onest", "oneste": "onest", "onesti": "onest", "onesto": "onest", "ong": "ong", "onninamente": "onnin", "onnipresente": "onnipresent", "onofrio": "onofr", "onor": "onor", "onora": "onor", "onorare": "onor", "onoraria": "onorar", "onorario": "onorar", "onorarli": "onor", "onorata": "onor", "onorati": "onor", "onorato": "onor", "onore": "onor", "onorè": "onor", "onorevole": "onorevol", "onori": "onor", "onorò": "onor", "onta": "onta", "ontrola": "ontrol", "onu": "onu", "opa": "opa", "opec": "opec", "opel": "opel", "open": "open", "opera": "oper", "operai": "opera", "operaio": "operai", "operando": "oper", "operano": "oper", "operante": "oper", "operanti": "oper", "operare": "oper", "operata": "oper", "operationi": "operation", "operativa": "oper", "operative": "oper", "operativi": "oper", "operativo": "oper", "operativò": "operativ", "operato": "oper", "operatore": "oper", "operatori": "oper", "operava": "oper", "operavano": "oper", "operazione": "oper", "operazioni": "oper", "opere": "oper", "opererà": "oper", "operetta": "operett", "operi": "oper", "operosa": "oper", "operose": "oper", "opet": "opet", "opinion": "opinion", "opinione": "opinion", "opinioni": "opinion", "oplà": "oplà", "oppone": "oppon", "opponendo": "oppon", "opponeva": "oppon", "opponevo": "oppon", "oppongono": "oppong", "opponiamo": "oppon", "opporci": "opporc", "opporrà": "opporr", "opporre": "opporr", "opporremo": "opporrem", "opporsi": "oppors", "opportuna": "opportun", "opportunamente": "opportun", "opportune": "opportun", "opportuni": "opportun", "opportunismo": "opportun", "opportunità": "opportun", "opportuno": "opportun", "oppositore": "oppositor", "oppositori": "oppositor", "opposizione": "opposizion", "opposizone": "opposizon", "opposta": "oppost", "opposte": "oppost", "opposti": "oppost", "opposto": "oppost", "oppressa": "oppress", "oppressi": "oppress", "oppressione": "oppression", "oppressioni": "oppression", "oppresso": "oppress", "oppressore": "oppressor", "opprima": "opprim", "opprime": "opprim", "opprimente": "oppriment", "opprimer": "opprimer", "opprimono": "opprim", "oppure": "oppur", "optare": "optar", "opulenza": "opulent", "opus": "opus", "opuscolo": "opuscol", "opzioni": "opzion", "or": "or", "ora": "ora", "orafi": "oraf", "orafo": "oraf", "orale": "oral", "oramai": "orama", "orari": "orar", "orario": "orar", "oratore": "orator", "oratori": "orator", "oratorio": "orator", "orazion": "orazion", "orazione": "orazion", "orazioni": "orazion", "orbetello": "orbetell", "orchestra": "orchestr", "orchestrine": "orchestrin", "orco": "orco", "ord": "ord", "orden": "orden", "ordigni": "ordign", "ordigno": "ordign", "ordin": "ordin", "ordina": "ordin", "ordinamento": "ordin", "ordinando": "ordin", "ordinanza": "ordin", "ordinanze": "ordin", "ordinare": "ordin", "ordinari": "ordinar", "ordinaria": "ordinar", "ordinariamente": "ordinar", "ordinarie": "ordinar", "ordinarii": "ordinar", "ordinario": "ordinar", "ordinata": "ordin", "ordinatamente": "ordinat", "ordinati": "ordin", "ordinato": "ordin", "ordinava": "ordin", "ordinazioni": "ordin", "ordine": "ordin", "ordini": "ordin", "ordinò": "ordin", "ordir": "ordir", "ordita": "ordit", "ordite": "ordit", "ordo": "ordo", "ore": "ore", "orè": "orè", "orecchi": "orecc", "orecchie": "orecc", "orecchino": "orecchin", "orecchio": "orecc", "oreficeria": "oreficer", "oreste": "orest", "orga": "orga", "organ": "organ", "organi": "organ", "organica": "organ", "organiche": "organ", "organici": "organ", "organico": "organ", "organigramma": "organigramm", "organismi": "organ", "organismo": "organ", "organizzando": "organizz", "organizzano": "organizz", "organizzare": "organizz", "organizzarsi": "organizz", "organizzata": "organizz", "organizzate": "organizz", "organizzati": "organizz", "organizzativa": "organizz", "organizzative": "organizz", "organizzativi": "organizz", "organizzativo": "organizz", "organizzato": "organizz", "organizzatori": "organizz", "organizzatrice": "organizz", "organizzavano": "organizz", "organizzazione": "organizz", "organizzazioni": "organizz", "organizziamo": "organizz", "organo": "organ", "orgasmo": "orgasm", "orgini": "orgin", "orgoglio": "orgogl", "orgogliosa": "orgogl", "orgogliosi": "orgogl", "ori": "ori", "oricalchi": "oricalc", "orien": "orien", "orientale": "oriental", "orientali": "oriental", "orientamenti": "orient", "orientamento": "orient", "orientarsi": "orient", "oriente": "orient", "orienteranno": "orient", "orietta": "oriett", "original": "original", "originale": "original", "originali": "original", "originare": "origin", "originari": "originar", "originaria": "originar", "originariamente": "originar", "originarie": "originar", "originario": "originar", "originarono": "origin", "origine": "origin", "origini": "origin", "oriz": "oriz", "orizzontale": "orizzontal", "orizzontalmente": "orizzontal", "orizzonte": "orizzont", "orlandi": "orland", "orlandini": "orlandin", "orlando": "orland", "orlate": "orlat", "orlati": "orlat", "orli": "orli", "orlo": "orlo", "ormai": "orma", "ormal": "ormal", "ormeggiati": "ormegg", "ormeggio": "ormegg", "orna": "orna", "ornamenti": "ornament", "ornamento": "ornament", "ornate": "ornat", "ornato": "ornat", "oro": "oro", "orologi": "orolog", "orologio": "orolog", "oronzo": "oronz", "oroscopo": "oroscop", "orr": "orr", "orrenda": "orrend", "orrendo": "orrend", "orribil": "orribil", "orribile": "orribil", "orribili": "orribil", "orridi": "orrid", "orrore": "orror", "orrori": "orror", "orsi": "orsi", "orsono": "orson", "orsù": "orsù", "orti": "orti", "orticello": "orticell", "ortiche": "ortic", "ortino": "ortin", "orto": "orto", "ortodossa": "ortodoss", "ortodossia": "ortodoss", "ortofrutta": "ortofrutt", "ortografia": "ortograf", "osaka": "osak", "osama": "osam", "osando": "osand", "osannante": "osann", "osannato": "osann", "osar": "osar", "osato": "osat", "osava": "osav", "osavan": "osavan", "oscar": "oscar", "oscene": "oscen", "oscenità": "oscen", "oscilla": "oscill", "oscillava": "oscill", "oscillazioni": "oscill", "oscura": "oscur", "oscuramento": "oscur", "oscurare": "oscur", "oscurarsi": "oscur", "oscure": "oscur", "oscuri": "oscur", "oscurità": "oscur", "oscuro": "oscur", "osè": "osè", "oshima": "oshim", "osio": "osi", "oslo": "oslo", "osnabruecker": "osnabruecker", "osò": "osò", "ospedale": "ospedal", "ospedaliere": "ospedal", "ospedaliero": "ospedalier", "ospedalizzazione": "ospedalizz", "ospita": "ospit", "ospitale": "ospital", "ospitaletto": "ospitalett", "ospitalità": "ospital", "ospitare": "ospit", "ospitarono": "ospit", "ospitazione": "ospit", "ospite": "ospit", "ospiti": "ospit", "ospizi": "ospiz", "ospizio": "ospiz", "ossa": "ossa", "ossatura": "ossatur", "ossequiata": "ossequ", "ossequio": "ossequ", "ossequioso": "ossequ", "osseravto": "osseravt", "osserva": "osserv", "osservabile": "osserv", "osservando": "osserv", "osservanza": "osserv", "osservaotri": "osservaotr", "osservar": "osserv", "osservare": "osserv", "osservarli": "osserv", "osservarsi": "osserv", "osservata": "osserv", "osservate": "osserv", "osservati": "osserv", "osservato": "osserv", "osservatore": "osserv", "osservatori": "osserv", "osservatorio": "osservator", "osservava": "osserv", "osservazione": "osserv", "osservazioni": "osserv", "osservò": "osserv", "ossessiva": "ossess", "ossessivo": "ossess", "ossia": "ossi", "ossido": "ossid", "ossigeno": "ossigen", "osso": "osso", "osta": "osta", "ostacolare": "ostacol", "ostacolato": "ostacol", "ostacoli": "ostacol", "ostacolo": "ostacol", "ostaggio": "ostagg", "ostante": "ostant", "ostavano": "ostav", "oste": "oste", "ostenda": "ostend", "ostentata": "ostent", "ostentavano": "ostent", "osteria": "oster", "osterie": "oster", "ostessa": "ostess", "osti": "osti", "ostia": "osti", "ostiaque": "ostiaqu", "ostile": "ostil", "ostilita": "ostil", "ostilità": "ostil", "ostina": "ostin", "ostinarsi": "ostin", "ostinata": "ostin", "ostinatamente": "ostinat", "ostinate": "ostin", "ostinati": "ostin", "ostinato": "ostin", "ostinava": "ostin", "ostinazione": "ostin", "ostini": "ostin", "ostruzionismo": "ostruzion", "osvaldo": "osvald", "ot": "ot", "ota": "ota", "ott": "ott", "ottangolare": "ottangol", "ottanta": "ottant", "ottantotto": "ottantott", "ottava": "ottav", "ottavio": "ottav", "ottenemmo": "otten", "ottenendo": "otten", "ottenendone": "otten", "ottener": "ottener", "ottenere": "otten", "ottenerla": "otten", "ottenerlo": "otten", "ottenerne": "otten", "ottenervi": "otten", "ottenesse": "otteness", "otteneva": "otten", "ottengo": "otteng", "ottengono": "otteng", "ottenne": "ottenn", "ottenuta": "otten", "ottenute": "otten", "ottenuti": "otten", "ottenuto": "otten", "otterrà": "otterr", "otterrebbe": "otterrebb", "ottey": "ottey", "ottica": "ottic", "ottiene": "ottien", "ottima": "ottim", "ottimale": "ottimal", "ottime": "ottim", "ottimi": "ottim", "ottimismo": "ottim", "ottimista": "ottim", "ottimisti": "ottim", "ottimizzazione": "ottimizz", "ottimo": "ottim", "ottiva": "ottiv", "otto": "otto", "ottobre": "ottobr", "ottocento": "ottocent", "ottone": "otton", "ottorino": "ottorin", "ottuagenario": "ottuagenar", "ottusi": "ottus", "oualche": "oualc", "ouand": "ouand", "ouando": "ouand", "ouel": "ouel", "out": "out", "outcold": "outcold", "ouuero": "ouuer", "ov": "ov", "ova": "ova", "ovazione": "ovazion", "ovazioni": "ovazion", "ove": "ove", "ovest": "ovest", "ovidio": "ovid", "ovunque": "ovunqu", "ovvero": "ovver", "ovviamente": "ovvi", "ovviare": "ovvi", "ovvio": "ovvi", "owen": "owen", "owens": "owens", "ox": "ox", "ozio": "ozi", "oziosa": "ozios", "oziosamente": "ozios", "ozioso": "ozios", "ozzie": "ozzi", "p": "p", "pa": "pa", "pablo": "pabl", "pacatamente": "pacat", "pacatezza": "pacatezz", "pacato": "pac", "pacchetto": "pacchett", "pacchia": "pacc", "pace": "pac", "pachistane": "pachistan", "paci": "pac", "pacific": "pacific", "pacifica": "pacif", "pacificamente": "pacif", "pacificazione": "pacif", "pacifici": "pacif", "pacifico": "pacif", "pacifisti": "pacif", "paciotti": "paciott", "pacoski": "pacosk", "padaglione": "padaglion", "padalino": "padalin", "padano": "pad", "paderno": "padern", "padero": "pader", "padiglione": "padiglion", "padiglioni": "padiglion", "padova": "padov", "padovano": "padov", "padre": "padr", "padreterno": "padretern", "padri": "padr", "padron": "padron", "padrona": "padron", "padrone": "padron", "padroni": "padron", "pae": "pae", "paesani": "paesan", "paese": "paes", "paesè": "paes", "paesello": "paesell", "paesetti": "paesett", "paesetto": "paesett", "paesi": "paes", "paesistiche": "paesist", "paf": "paf", "pag": "pag", "paga": "pag", "pagamenti": "pag", "pagamento": "pag", "pagando": "pag", "pagandolo": "pag", "pagani": "pagan", "paganin": "paganin", "paganini": "paganin", "pagano": "pag", "paganoni": "paganon", "paganti": "pagant", "pagar": "pag", "pagare": "pag", "pagarglielo": "pag", "pagarle": "pag", "pagarlo": "pag", "pagarono": "pag", "pagarsi": "pag", "pagata": "pag", "pagate": "pag", "pagatelo": "pagatel", "pagato": "pag", "pagava": "pag", "pagelle": "pagell", "paggi": "pagg", "paggio": "pagg", "paghe": "pagh", "pagherà": "pagh", "pagherai": "pagh", "pagherei": "pagh", "pagherò": "pagh", "paghi": "pagh", "paghiate": "pagh", "paghino": "paghin", "pagina": "pagin", "pagine": "pagin", "paglia": "pagl", "pagliaccetti": "pagliaccett", "pagliaio": "pagliai", "pagliarini": "pagliarin", "pagliuca": "pagliuc", "pagliucola": "pagliucol", "pago": "pag", "pagò": "pag", "paia": "pai", "paio": "pai", "paiolo": "paiol", "paion": "paion", "paiono": "pai", "paissan": "paissan", "pakistan": "pakistan", "pakistani": "pakistan", "pala": "pal", "palace": "palac", "paladina": "paladin", "palafreni": "palafren", "palafreniere": "palafren", "palam": "palam", "palatrussardi": "palatrussard", "palatrussarsi": "palatruss", "palazzetto": "palazzett", "palazzi": "palazz", "palazzina": "palazzin", "palazzo": "palazz", "palazzolo": "palazzol", "palazzotto": "palazzott", "palchetto": "palchett", "palchi": "palc", "palco": "palc", "pale": "pal", "palermo": "palerm", "palesar": "pales", "palesare": "pales", "palese": "pales", "palesi": "pales", "palestinà": "palestin", "palestinese": "palestines", "palestinesi": "palestines", "paletto": "palett", "pali": "pal", "palieri": "palier", "palio": "pal", "palizzolo": "palizzol", "palla": "pall", "pallacanestro": "pallacanestr", "palladini": "palladin", "pallavolando": "pallavol", "pallavolo": "pallavol", "palle": "pall", "pallhuber": "pallhuber", "pallida": "pallid", "pallidi": "pallid", "pallidissime": "pallidissim", "pallido": "pallid", "pallini": "pallin", "pallone": "pallon", "pallonetto": "pallonett", "pallore": "pallor", "pallottola": "pallottol", "palm": "palm", "palma": "palm", "palme": "palm", "palmer": "palmer", "palmieri": "palmier", "palmisani": "palmisan", "palmisano": "palmis", "palmo": "palm", "palo": "pal", "palombelli": "palombell", "palpa": "palp", "palpava": "palp", "palpebre": "palpebr", "palpitazion": "palpitazion", "palpitazioni": "palpit", "palude": "palud", "paludi": "palud", "paly": "paly", "pamela": "pamel", "pampani": "pampan", "pan": "pan", "panca": "panc", "pancaro": "pancar", "pance": "panc", "pancev": "pancev", "panche": "panc", "panchetti": "panchett", "panchetto": "panchett", "panchina": "panchin", "panchine": "panchin", "pancho": "panc", "pancia": "panc", "pancione": "pancion", "pandolfo": "pandolf", "pane": "pan", "panegirico": "panegir", "panetta": "panett", "panfido": "panfid", "panfilo": "panfil", "pani": "pan", "panicastrelle": "panicastrell", "panico": "panic", "panicucci": "panicucc", "paniera": "panier", "paniere": "pan", "pannè": "pann", "pannella": "pannell", "panni": "pann", "panno": "pann", "pannocchiette": "pannocchiett", "panorama": "panoram", "panoramà": "panoram", "panorma": "panorm", "pantedesca": "pantedesc", "panucci": "panucc", "paola": "paol", "paoli": "paol", "paolin": "paolin", "paolo": "paol", "paonazze": "paonazz", "paonazzo": "paonazz", "paone": "paon", "papa": "pap", "papà": "pap", "papais": "papais", "papalina": "papalin", "papeete": "pap", "papino": "papin", "pappagorgia": "pappagorg", "par": "par", "para": "par", "paracadute": "paracad", "paracadutisti": "paracadut", "paradigma": "paradigm", "paradise": "paradis", "paradisi": "paradis", "paradisiaci": "paradisiac", "paradiso": "paradis", "paradossale": "paradossal", "paragon": "paragon", "paragonare": "paragon", "paragonarlo": "paragon", "paragonata": "paragon", "paragonato": "paragon", "paragonava": "paragon", "paragone": "paragon", "paragonerebbe": "paragon", "paragoni": "paragon", "paragrafo": "paragraf", "paralizzeranno": "paralizz", "parallelo": "parallel", "paramatti": "paramatt", "parametri": "parametr", "paramygina": "paramygin", "parapetto": "parapett", "parapiglia": "parapigl", "parare": "par", "parassiti": "parass", "parastato": "parast", "parat": "parat", "parata": "par", "parate": "par", "parati": "par", "parato": "par", "parava": "par", "paravano": "par", "paravento": "paravent", "parca": "parc", "parcere": "parc", "parche": "parc", "parcheggiata": "parchegg", "parcheggiate": "parchegg", "parcheggiava": "parchegg", "parcheggio": "parchegg", "parchi": "parc", "parco": "parc", "pare": "par", "parè": "par", "parecchi": "parecc", "pareggia": "paregg", "pareggiare": "paregg", "pareggiato": "paregg", "pareggio": "paregg", "parendo": "par", "parendoci": "par", "parendogli": "par", "parentado": "parentad", "parente": "parent", "parentela": "parentel", "parentele": "parentel", "parenti": "parent", "pareo": "pare", "parer": "parer", "parere": "par", "parergli": "par", "pareri": "parer", "paresse": "paress", "paressero": "par", "parete": "par", "pareti": "paret", "pareva": "par", "parevan": "parevan", "parevano": "par", "pari": "par", "paribas": "paribas", "paribus": "paribus", "paride": "parid", "parieti": "pariet", "parigi": "parig", "parigina": "parigin", "parigino": "parigin", "parimente": "pariment", "parimenti": "par", "parini": "parin", "paris": "paris", "parisi": "paris", "parità": "parit", "parks": "parks", "parla": "parl", "parlamentare": "parlament", "parlamentari": "parlamentar", "parlamenti": "parl", "parlamentini": "parlamentin", "parlamento": "parl", "parlan": "parlan", "parlando": "parl", "parlandone": "parl", "parlano": "parl", "parlante": "parlant", "parlantina": "parlantin", "parlar": "parl", "parlare": "parl", "parlargli": "parl", "parlargliene": "parl", "parlarle": "parl", "parlarne": "parl", "parlaron": "parlaron", "parlarono": "parl", "parlarvene": "parl", "parlarvi": "parl", "parlasse": "parl", "parlata": "parl", "parlate": "parl", "parlati": "parl", "parlato": "parl", "parlatori": "parlator", "parlatorio": "parlator", "parlava": "parl", "parlavan": "parlavan", "parlavano": "parl", "parlavate": "parl", "parlerà": "parl", "parlerebbe": "parl", "parleremo": "parl", "parlerò": "parl", "parli": "parl", "parliam": "parliam", "parliamo": "parl", "parlino": "parlin", "parlo": "parl", "parlò": "parl", "parlovel": "parlovel", "parlto": "parlt", "parma": "parm", "parmalat": "parmalat", "parmander": "parmander", "parmigiani": "parmigian", "parola": "parol", "parolacce": "parolacc", "parolaccia": "parolacc", "parole": "parol", "parolina": "parolin", "paroline": "parolin", "parotidi": "parotid", "parpagliole": "parpagliol", "parquet": "parquet", "parrà": "parr", "parrebbe": "parrebb", "parrebbero": "parrebber", "parrocchia": "parrocc", "parrocchiale": "parrocchial", "parrocchiana": "parrocchian", "parrocchie": "parrocc", "parrochi": "parroc", "parroci": "parroc", "parroco": "parroc", "parrucca": "parrucc", "parsa": "pars", "parse": "pars", "parsi": "pars", "parso": "pars", "parsons": "parsons", "part": "part", "parta": "part", "parte": "part", "partecip": "partecip", "partecipa": "partecip", "partecipano": "partecip", "partecipanti": "partecip", "partecipare": "partecip", "parteciparenno": "parteciparenn", "partecipato": "partecip", "partecipava": "partecip", "partecipavano": "partecip", "partecipaz": "partecipaz", "partecipazione": "partecip", "partecipazioni": "partecip", "partecipe": "partecip", "parteciperà": "partecip", "parteciperanno": "partecip", "partecipi": "partecip", "partecipò": "partecip", "partendo": "part", "partenopeo": "partenope", "partenza": "partenz", "partenze": "partenz", "parterre": "parterr", "partes": "partes", "parti": "part", "partì": "part", "partiali": "partial", "partiamo": "part", "partiate": "part", "partick": "partick", "particolar": "particol", "particolare": "particol", "particolareggiati": "particolaregg", "particolari": "particolar", "particolarità": "particolar", "particolarmente": "particolar", "partigiane": "partigian", "partigiani": "partigian", "partigiano": "partig", "partir": "part", "partirà": "part", "partiranno": "part", "partire": "part", "partirebbe": "part", "partiremo": "part", "partirono": "part", "partisse": "partiss", "partita": "part", "partite": "part", "partiti": "part", "partitica": "partit", "partitici": "partit", "partitico": "partit", "partitie": "partit", "partito": "part", "partitocratica": "partitocrat", "partitocrazia": "partitocraz", "partiva": "part", "partivano": "part", "partner": "partner", "partners": "partners", "parto": "part", "partono": "part", "partorienti": "partorient", "partorire": "partor", "party": "party", "paruta": "par", "parve": "parv", "parver": "parver", "parvero": "parver", "parziale": "parzial", "parzialità": "parzial", "parzialmente": "parzial", "pascenti": "pascent", "pascolava": "pascol", "pascolo": "pascol", "pascucci": "pascucc", "paseo": "pase", "pashkina": "pashkin", "pasionarià": "pasionar", "pasqua": "pasqu", "pasquale": "pasqual", "pasquero": "pasquer", "passa": "pass", "passaggio": "passagg", "passagio": "passag", "passalacqua": "passalacqu", "passamontagna": "passamontagn", "passan": "passan", "passando": "pass", "passani": "passan", "passano": "pass", "passaporti": "passaport", "passaporto": "passaport", "passar": "pass", "passare": "pass", "passarella": "passarell", "passarla": "pass", "passarli": "pass", "passarlo": "pass", "passarne": "pass", "passaron": "passaron", "passarono": "pass", "passarsi": "pass", "passarvela": "pass", "passarvi": "pass", "passasse": "pass", "passassero": "pass", "passata": "pass", "passate": "pass", "passategli": "passategl", "passatempi": "passatemp", "passatempo": "passatemp", "passati": "pass", "passato": "pass", "passatò": "passat", "passava": "pass", "passavan": "passavan", "passavano": "pass", "passe": "pass", "passeggeri": "passegger", "passeggiando": "passegg", "passeggiare": "passegg", "passeggiata": "passegg", "passeggiate": "passegg", "passeggiato": "passegg", "passeggiera": "passeggier", "passeggiere": "passegg", "passeggieri": "passeggier", "passeggiero": "passeggier", "passerà": "pass", "passeranno": "pass", "passere": "pass", "passerebbe": "pass", "passerella": "passerell", "passeremo": "pass", "passi": "pass", "passiamo": "pass", "passibili": "passibil", "passim": "passim", "passini": "passin", "passion": "passion", "passione": "passion", "passioni": "passion", "passiva": "pass", "passivi": "pass", "passivo": "pass", "passler": "passler", "passo": "pass", "passò": "pass", "pasta": "past", "pastari": "pastar", "pastaria": "pastar", "paste": "past", "pasticche": "pasticc", "pasticci": "pasticc", "pasticcio": "pasticc", "pastiglia": "pastigl", "pastiglie": "pastigl", "pastine": "pastin", "pasto": "past", "pastocchia": "pastocc", "pastorale": "pastoral", "pastorali": "pastoral", "pastore": "pastor", "pastori": "pastor", "pastorizia": "pastoriz", "pasturo": "pastur", "pat": "pat", "patatà": "patat", "patate": "pat", "patavina": "patavin", "patente": "patent", "patenti": "patent", "paterna": "patern", "paterni": "patern", "paternita": "patern", "paternità": "patern", "paterniti": "patern", "paternostri": "paternostr", "paterson": "paterson", "patetica": "patet", "patimenti": "pat", "patimento": "pat", "patina": "patin", "patinate": "patin", "patir": "pat", "patire": "pat", "patirebbero": "pat", "patiscan": "patiscan", "patisce": "pat", "patisco": "pat", "patiscono": "pat", "patiti": "pat", "patito": "pat", "pativa": "pat", "patologia": "patolog", "patologie": "patolog", "patria": "patr", "patriae": "patria", "patriarchi": "patriarc", "patrick": "patrick", "patrimoni": "patrimon", "patrimonio": "patrimon", "patrizia": "patriz", "patrocinio": "patrocin", "patrona": "patron", "patteggiamento": "pattegg", "patti": "patt", "pattinaggio": "pattinagg", "pattino": "pattin", "patto": "patt", "pattuglia": "pattugl", "pattugliamento": "pattugl", "pattuita": "pattu", "paul": "paul", "paula": "paul", "paulo": "paul", "paura": "paur", "pauraccia": "pauracc", "paure": "paur", "paurosa": "pauros", "pauroso": "pauros", "pausa": "paus", "pav": "pav", "pavan": "pavan", "pavel": "pavel", "pavia": "pav", "paviato": "pav", "pavimento": "pav", "pavone": "pavon", "paxton": "paxton", "paziente": "pazient", "pazienti": "pazient", "pazienza": "pazienz", "pazzaglia": "pazzagl", "pazzamente": "pazz", "pazzia": "pazz", "pazzie": "pazz", "pazzo": "pazz", "pb": "pb", "pci": "pci", "pcm": "pcm", "pdg": "pdg", "pdl": "pdl", "pds": "pds", "pe": "pe", "pearl": "pearl", "pecca": "pecc", "peccatacci": "peccatacc", "peccati": "pecc", "peccato": "pecc", "pecchia": "pecc", "pechino": "pechin", "pecora": "pecor", "pecoraro": "pecorar", "pecore": "pecor", "pecorella": "pecorell", "pecorelle": "pecorell", "peculato": "pecul", "peculiari": "peculiar", "peculiarità": "peculiar", "pecuniaria": "pecuniar", "pecuniarie": "pecuniar", "pedagogia": "pedagog", "pedata": "ped", "pedate": "ped", "pedestre": "pedestr", "pedestri": "pedestr", "pediatrico": "pediatr", "pedonato": "pedon", "pedone": "pedon", "pedoni": "pedon", "pedrazzi": "pedrazz", "pedro": "pedr", "pedroni": "pedron", "peggi": "pegg", "peggio": "pegg", "peggior": "peggior", "peggiora": "peggior", "peggioramento": "peggior", "peggiorar": "peggior", "peggiorata": "peggior", "peggiore": "peggior", "peggiori": "peggior", "pegno": "pegn", "pela": "pel", "pelata": "pel", "pelato": "pel", "pelè": "pel", "peli": "pel", "pelle": "pell", "pellegrinaggio": "pellegrinagg", "pellegrini": "pellegrin", "pellegrino": "pellegrin", "pellemberg": "pellemberg", "pellicanò": "pellican", "pelliccia": "pellicc", "pellicola": "pellicol", "pelo": "pel", "pelosa": "pelos", "pen": "pen", "pena": "pen", "penale": "penal", "penali": "penal", "penalista": "penal", "penalità": "penal", "penalizzato": "penalizz", "penalizzazione": "penalizz", "penare": "pen", "penarono": "pen", "penasa": "penas", "penato": "pen", "pence": "penc", "pendente": "pendent", "pendenti": "pendent", "pendere": "pend", "pendeva": "pend", "pendevano": "pend", "pendìi": "pendì", "pendìo": "pendì", "pendolari": "pendolar", "pendoni": "pendon", "pene": "pen", "penetrando": "penetr", "penetrano": "penetr", "penetrante": "penetr", "penetrantissimo": "penetrantissim", "penetrar": "penetr", "penetrare": "penetr", "penetrati": "penetr", "penetrato": "penetr", "penetrazione": "penetr", "penetrò": "penetr", "penisola": "penisol", "penitente": "penitent", "penitenza": "penitent", "penitenze": "penitent", "penitenziari": "penitenziar", "penitenziaria": "penitenziar", "penitenziario": "penitenziar", "penitenziere": "penitenz", "penna": "penn", "pennacchi": "pennacc", "pennacchioli": "pennacchiol", "pennarelli": "pennarell", "penne": "penn", "pennelli": "pennell", "pennello": "pennell", "pennivendolo": "penniv", "pennuto": "penn", "penò": "pen", "penosa": "penos", "penosi": "penos", "penoso": "penos", "pensa": "pens", "pensabile": "pensabil", "pensaci": "pensac", "pensai": "pensa", "pensando": "pens", "pensandoci": "pens", "pensano": "pens", "pensar": "pens", "pensarà": "pensar", "pensarci": "pens", "pensare": "pens", "pensarne": "pens", "pensaron": "pensaron", "pensarono": "pens", "pensasse": "pens", "pensassero": "pens", "pensassi": "pens", "pensata": "pens", "pensate": "pens", "pensateci": "pensatec", "pensato": "pens", "pensatoci": "pensatoc", "pensava": "pens", "pensavan": "pensavan", "pensavano": "pens", "pensavo": "pens", "penserà": "pens", "penseranno": "pens", "penserebbe": "pens", "penserò": "pens", "pensi": "pens", "pensiam": "pensiam", "pensiamo": "pens", "pensiate": "pens", "pensier": "pensier", "pensieri": "pensier", "pensierino": "pensierin", "pensiero": "pensier", "pensierosa": "pensier", "pensierosi": "pensier", "pensieroso": "pensier", "pensino": "pensin", "pensionati": "pension", "pensionatì": "pensionat", "pensionato": "pension", "pensione": "pension", "pensioni": "pension", "penso": "pens", "pensò": "pens", "penta": "pent", "pentecoste": "pentecost", "pentì": "pent", "pentimenti": "pent", "pentimento": "pent", "pentimentuccio": "pentimentucc", "pentirà": "pent", "pentirsi": "pent", "pentita": "pent", "pentito": "pent", "pentiva": "pent", "pento": "pent", "pentola": "pentol", "pentolaccia": "pentolacc", "pentole": "pentol", "pentolino": "pentolin", "penuria": "penur", "penzoloni": "penzolon", "peo": "peo", "peoplè": "peopl", "pepe": "pep", "peppe": "pepp", "peppino": "peppin", "peqin": "peqin", "per": "per", "pera": "per", "peraboni": "perabon", "peraltro": "peraltr", "percentuale": "percentual", "percentuali": "percentual", "percepiamo": "percep", "percepiranno": "percep", "percepire": "percep", "percepisce": "percep", "perche": "perc", "perché": "perc", "perchè": "perc", "perciò": "perc", "percorrere": "percorr", "percorribile": "percorr", "percorsa": "percors", "percorsi": "percors", "percorso": "percors", "percosse": "percoss", "percotere": "percot", "perda": "perd", "perde": "perd", "perdendo": "perd", "perdendosi": "perd", "perder": "perder", "perderà": "perd", "perdere": "perd", "perderla": "perd", "perderli": "perd", "perdersi": "perd", "perderti": "perd", "perdete": "perd", "perdeva": "perd", "perdevan": "perdevan", "perdevano": "perd", "perdiam": "perdiam", "perdita": "perd", "perdite": "perd", "perditè": "perdit", "perdona": "perdon", "perdonami": "perdonam", "perdonare": "perdon", "perdonarvi": "perdon", "perdonata": "perdon", "perdonateci": "perdonatec", "perdonatemi": "perdonatem", "perdonato": "perdon", "perdonavano": "perdon", "perdone": "perdon", "perdonerà": "perdon", "perdoni": "perdon", "perdonino": "perdonin", "perdono": "perd", "perdurante": "perdur", "perduta": "perd", "perdute": "perd", "perduti": "perd", "perduto": "perd", "perenne": "perenn", "perentoria": "perentor", "peres": "peres", "perfetta": "perfett", "perfettamente": "perfett", "perfette": "perfett", "perfetti": "perfett", "perfetto": "perfett", "perfezionabile": "perfezion", "perfezionamento": "perfezion", "perfezionare": "perfezion", "perfezionata": "perfezion", "perfezione": "perfezion", "perfida": "perfid", "perfidia": "perfid", "perfino": "perfin", "performance": "performanc", "pericolassero": "pericol", "pericoli": "pericol", "pericolo": "pericol", "pericolosa": "pericol", "pericolosamente": "pericol", "pericolose": "pericol", "pericolosi": "pericol", "pericolosità": "pericolos", "pericoloso": "pericol", "perierat": "perierat", "periferia": "perifer", "periferici": "perifer", "perifrasi": "perifras", "perimetri": "perimetr", "perimetro": "perimetr", "periodi": "period", "periodica": "period", "periodicamente": "period", "periodiche": "period", "periodici": "period", "periodico": "period", "periodo": "period", "peripatetico": "peripatet", "perirono": "per", "perita": "per", "perite": "per", "periti": "per", "perito": "per", "periva": "per", "perizia": "periz", "perla": "perl", "perle": "perl", "perlier": "perlier", "perlomeno": "perlomen", "perlopiù": "perlopiù", "perlustrare": "perlustr", "perlustrata": "perlustr", "perlustravamo": "perlustr", "perlustrazione": "perlustr", "perlustreranno": "perlustr", "permalosa": "permal", "permane": "perman", "permanente": "permanent", "permanentemente": "permanent", "permanenza": "permanent", "permanenze": "permanent", "permangono": "permang", "permessa": "permess", "permessi": "permess", "permesso": "permess", "permetta": "permett", "permette": "permett", "permettendogli": "permett", "permetterà": "permett", "permetteranno": "permett", "permettere": "permett", "permettessero": "permett", "permettetemi": "permettetem", "permetteva": "permett", "permettevano": "permett", "permise": "permis", "permissiva": "permiss", "permitieren": "permitieren", "perniciosa": "pernic", "pernizioso": "perniz", "pero": "per", "però": "per", "perocché": "perocc", "peron": "peron", "perone": "peron", "peronista": "peron", "perorare": "peror", "perpendicolo": "perpendicol", "perpetrata": "perpetr", "perpetua": "perpetu", "perpetui": "perpetu", "perpetuo": "perpetu", "perplessita": "perpless", "perplessità": "perpless", "perplesso": "perpless", "perpretato": "perpret", "perri": "perr", "perrini": "perrin", "perrone": "perron", "perrotta": "perrott", "persa": "pers", "perse": "pers", "persecutore": "persecutor", "persecutori": "persecutor", "persecuzione": "persecu", "persecuzioni": "persecu", "persegue": "persegu", "perseguimento": "persegu", "perseguire": "persegu", "perseguita": "persegu", "perseguitarla": "perseguit", "perseguitarlo": "perseguit", "perseguitata": "perseguit", "perseguitato": "perseguit", "perseverante": "persever", "perseveranza": "persever", "perseverare": "persever", "persi": "pers", "persiana": "persian", "persino": "persin", "persister": "persister", "persisteva": "persist", "perso": "pers", "persona": "person", "personaggi": "personagg", "personaggio": "personagg", "personaggj": "personaggj", "personal": "personal", "personaldollaro": "personaldollar", "personale": "personal", "personalfondo": "personalfond", "personali": "personal", "personalità": "personal", "personalmarco": "personalmarc", "personalmente": "personal", "persone": "person", "perspicacia": "perspicac", "persuade": "persuad", "persuader": "persuader", "persuadere": "persuad", "persuaderli": "persuad", "persuaderlo": "persuad", "persuadersi": "persuad", "persuasa": "persuas", "persuase": "persuas", "persuasi": "persuas", "persuasion": "persuasion", "persuasione": "persuasion", "persuasissimo": "persuasissim", "persuaso": "persuas", "pertanto": "pertant", "perth": "perth", "perticaro": "perticar", "pertiche": "pertic", "pertinacia": "pertinac", "pertinenza": "pertinent", "pertugio": "pertug", "perturbatori": "perturb", "perturbazione": "perturb", "perturbazioni": "perturb", "perù": "perù", "perugia": "perug", "peruviana": "peruvian", "peruviane": "peruvian", "peruviani": "peruvian", "peruviano": "peruv", "peruzzi": "peruzz", "pervade": "pervad", "pervenire": "perven", "pervenivano": "perven", "pervenne": "pervenn", "pervenuta": "perven", "pervenuti": "perven", "pervenuto": "perven", "perversa": "pervers", "perversità": "pervers", "perverso": "pervers", "pervertimento": "pervert", "pesa": "pes", "pesano": "pes", "pesante": "pesant", "pesanti": "pesant", "pesar": "pes", "pesarese": "pesares", "pesaro": "pesar", "pesasse": "pes", "pesate": "pes", "pesato": "pes", "pesavan": "pesavan", "pesavano": "pes", "pesca": "pesc", "pescar": "pesc", "pescara": "pescar", "pescare": "pesc", "pescarenico": "pescaren", "pescate": "pesc", "pescato": "pesc", "pescatore": "pescator", "pescatori": "pescator", "pescavan": "pescavan", "pesce": "pesc", "pesche": "pesc", "pescheria": "pescher", "peschi": "pesc", "peschiera": "peschier", "pesci": "pesc", "pesciaiolo": "pesciaiol", "pesciolino": "pesciolin", "pesco": "pesc", "pesenti": "pesent", "peserà": "pes", "peseta": "peset", "pesetas": "pesetas", "peshawar": "peshaw", "pesi": "pes", "peso": "pes", "pesos": "pesos", "pessima": "pessim", "pessime": "pessim", "pessimismo": "pessim", "pessimo": "pessim", "pessotto": "pessott", "pesta": "pest", "pestaggi": "pestagg", "pestaggio": "pestagg", "pestato": "pest", "pestava": "pest", "peste": "pest", "pestiferi": "pestifer", "pestilenti": "pestilent", "pestilentia": "pestilent", "pestilenza": "pestilent", "pestilenze": "pestilent", "pestilenziale": "pestilenzial", "pestilenziali": "pestilenzial", "pet": "pet", "pete": "pet", "petecchiale": "petecchial", "peter": "peter", "petito": "pet", "petr": "petr", "petra": "petr", "petricca": "petricc", "petris": "petris", "petro": "petr", "petrobras": "petrobras", "petrolchimico": "petrolchim", "petroleum": "petroleum", "petrolifera": "petrolifer", "petroliferi": "petrolifer", "petrolifero": "petrolifer", "petrolio": "petrol", "petrone": "petron", "pettegole": "pettegol", "pettegolezzi": "pettegolezz", "pettegolezzo": "pettegolezz", "pettegolo": "pettegol", "petti": "pett", "pettinare": "pettin", "pettinata": "pettin", "pettine": "pettin", "pettinelli": "pettinell", "petto": "pett", "pettoruto": "pettor", "petulante": "petul", "petulanti": "petul", "petulanza": "petul", "pezze": "pezz", "pezzente": "pezzent", "pezzetta": "pezzett", "pezzetti": "pezzett", "pezzetto": "pezzett", "pezzi": "pezz", "pezzo": "pezz", "pezzò": "pezz", "pfennig": "pfennig", "pfennigs": "pfennigs", "ph": "ph", "pharmachem": "pharmachem", "phenixfund": "phenixfund", "philips": "philips", "phillips": "phillips", "phoenix": "phoenix", "phone": "phon", "phyllis": "phyllis", "pi": "pi", "pia": "pia", "piaccia": "piacc", "piacciono": "piacc", "piace": "piac", "piacendogli": "piac", "piacentine": "piacentin", "piacentini": "piacentin", "piacenza": "piacenz", "piacer": "piacer", "piacerà": "piac", "piacere": "piac", "piacerebbe": "piac", "piaceri": "piacer", "piacesse": "piacess", "piaceva": "piac", "piacevan": "piacevan", "piacevolezza": "piacevolezz", "piacevolezze": "piacevolezz", "piacevolmente": "piacevol", "piaciuto": "piac", "piacque": "piacqu", "piaga": "piag", "piaghe": "piag", "pian": "pian", "piane": "pian", "pianelle": "pianell", "pianerottolo": "pianerottol", "pianeta": "pianet", "pianeti": "pianet", "piange": "piang", "piangendo": "piang", "piangente": "piangent", "piangenti": "piangent", "pianger": "pianger", "piangere": "piang", "piangerete": "piang", "piangerò": "piang", "piangesse": "piangess", "piangeva": "piang", "piangevan": "piangevan", "piangiamo": "piang", "piani": "pian", "pianificare": "pianific", "pianificazione": "pianif", "pianissimo": "pianissim", "piano": "pian", "pianoforte": "pianofort", "pianse": "pians", "pianta": "piant", "piantan": "piantan", "piantandogli": "piant", "piantandole": "piant", "piantandosi": "piant", "piantaron": "piantaron", "piantarsi": "piant", "piantate": "piant", "piantato": "piant", "piantatosi": "piantat", "piantava": "piant", "piante": "piant", "pianti": "piant", "pianto": "piant", "piantò": "piant", "pianura": "pianur", "pianure": "pianur", "piastrine": "piastrin", "piatta": "piatt", "piattaforma": "piattaform", "piattaforme": "piattaform", "piatti": "piatt", "piatto": "piatt", "piazza": "piazz", "piazzale": "piazzal", "piazzamento": "piazz", "piazzando": "piazz", "piazzata": "piazz", "piazzati": "piazz", "piazzato": "piazz", "piazze": "piazz", "piazzetta": "piazzett", "piazzette": "piazzett", "pic": "pic", "picard": "picard", "picasso": "picass", "picca": "picc", "piccava": "picc", "picche": "picc", "picchetto": "picchett", "picchi": "picc", "picchia": "picc", "picchiando": "picc", "picchiar": "picc", "picchiare": "picc", "picchiarono": "picc", "picchiarsi": "picc", "picchiate": "picc", "picchiava": "picc", "picchietto": "picchiett", "picchio": "picc", "picchiò": "picc", "piccini": "piccin", "piccinin": "piccinin", "piccinini": "piccinin", "piccino": "piccin", "picco": "picc", "piccol": "piccol", "piccola": "piccol", "piccole": "piccol", "piccoli": "piccol", "piccolillo": "piccolill", "piccolissimo": "piccolissim", "piccolo": "piccol", "piceno": "picen", "pick": "pick", "picozzi": "picozz", "pidgeon": "pidgeon", "pidiessino": "pidiessin", "pido": "pid", "piduisti": "piduist", "pie": "pie", "piè": "piè", "piede": "pied", "piedestallo": "piedestall", "piedi": "pied", "piedra": "piedr", "piega": "pieg", "piegando": "pieg", "piegare": "pieg", "piegata": "pieg", "piegate": "pieg", "piegato": "pieg", "pieghe": "pieg", "piegò": "pieg", "piemont": "piemont", "piemonte": "piemont", "piemontese": "piemontes", "piemontesi": "piemontes", "piena": "pien", "pienamente": "pien", "piene": "pien", "pienezza": "pienezz", "pieni": "pien", "pieno": "pien", "pienone": "pienon", "pienotta": "pienott", "pier": "pier", "piera": "pier", "pieralberto": "pieralbert", "piercamillo": "piercamill", "piercarlo": "pierc", "pierferdinando": "pierferdin", "pierguido": "pierguid", "pierini": "pierin", "pierluigi": "pierluig", "piero": "pier", "pierobon": "pierobon", "pieroni": "pieron", "pierpaolo": "pierpaol", "pierre": "pierr", "pietà": "piet", "pietanza": "pietanz", "pietanze": "pietanz", "pietosa": "pietos", "pietosamente": "pietos", "pietose": "pietos", "pietosi": "pietos", "pietra": "pietr", "pietrangeli": "pietrangel", "pietre": "pietr", "pietro": "pietr", "pietroburgo": "pietroburg", "pieve": "piev", "pigia": "pig", "pigiando": "pig", "pigiare": "pig", "pigiasse": "pig", "pigìo": "pigì", "pigionali": "pigional", "piglia": "pigl", "piglian": "piglian", "pigliano": "pigl", "pigliare": "pigl", "pigliarne": "pigl", "pigliate": "pigl", "pigliatelo": "pigliatel", "pigliava": "pigl", "piglino": "piglin", "piglio": "pigl", "pignone": "pignon", "pigri": "pigr", "pigrizia": "pigriz", "pil": "pil", "pilastri": "pilastr", "pilastro": "pilastr", "pilato": "pil", "pile": "pil", "pillitteri": "pillitter", "pillole": "pillol", "piloni": "pilon", "pilota": "pilot", "pilotando": "pilot", "pilotato": "pilot", "piloti": "pilot", "pin": "pin", "pina": "pin", "pinato": "pin", "pindo": "pind", "pinè": "pin", "pinerolo": "pinerol", "pinetagrande": "pinetagrand", "pingitore": "pingitor", "pininfarina": "pininfarin", "pink": "pink", "pinna": "pinn", "pino": "pin", "pinocchio": "pinocc", "pinza": "pinz", "pinzochere": "pinzoc", "pio": "pio", "piogge": "piogg", "pioggia": "piogg", "pioli": "piol", "piombava": "piomb", "piombino": "piombin", "pionieri": "pionier", "pionieristica": "pionierist", "pioppo": "piopp", "piovanelli": "piovanell", "piovani": "piovan", "piove": "piov", "pioveva": "piov", "piovigginare": "pioviggin", "piovosa": "piovos", "piovra": "piovr", "piovute": "piov", "piovutole": "piovutol", "piper": "piper", "pippo": "pipp", "pir": "pir", "pira": "pir", "pirelli": "pirell", "pirri": "pirr", "pisa": "pis", "pisano": "pis", "pista": "pist", "pistà": "pist", "pistarino": "pistarin", "piste": "pist", "pistella": "pistell", "pistoia": "pistoi", "pistoiese": "pistoies", "pistola": "pistol", "pistole": "pistol", "pitaffio": "pitaff", "pitagora": "pitagor", "pitocco": "pitocc", "pittalis": "pittalis", "pittore": "pittor", "pittura": "pittur", "piu": "piu", "più": "più", "piume": "pium", "piuttosto": "piuttost", "piùttosto": "piùttost", "pivetta": "pivett", "pivetti": "pivett", "pizzi": "pizz", "pizzicara": "pizzicar", "pizzicavan": "pizzicavan", "pizzico": "pizzic", "pizzo": "pizz", "placet": "placet", "placida": "placid", "placidamente": "placid", "placide": "placid", "placido": "placid", "planisferio": "planisfer", "plantarum": "plantarum", "plast": "plast", "plastica": "plastic", "platea": "plate", "plateà": "plate", "platonus": "platonus", "platt": "platt", "plaudenti": "plaudent", "plausibile": "plausibil", "plauso": "plaus", "play": "play", "playboy": "playboy", "plebe": "pleb", "plebei": "plebe", "plebeo": "plebe", "plebiscitaria": "plebiscitar", "plebiscitarie": "plebiscitar", "plenaria": "plenar", "plerosque": "plerosqu", "pli": "pli", "plico": "plic", "plinio": "plin", "pluksna": "pluksn", "pluralismo": "plural", "pluralità": "plural", "pluriaggravato": "pluriaggrav", "plurifondo": "plurifond", "plurinquisito": "plurinquis", "pm": "pm", "po": "po", "pò": "pò", "poarte": "poart", "poca": "poc", "poche": "poch", "pochi": "poch", "pochino": "pochin", "pochissime": "pochissim", "pochissimi": "pochissim", "pochissimo": "pochissim", "poco": "poc", "podere": "pod", "poderetto": "poderett", "poderi": "poder", "poderose": "poder", "poderoso": "poder", "podestà": "podest", "podio": "pod", "podistica": "podist", "poelman": "poelman", "poema": "poem", "poesia": "poes", "poesie": "poes", "poeta": "poet", "poeti": "poet", "poetica": "poetic", "poetico": "poetic", "poggetto": "poggett", "poggi": "pogg", "poggiano": "pogg", "poggibonsi": "poggibons", "poggio": "pogg", "poggioli": "poggiol", "poh": "poh", "poi": "poi", "poich": "poic", "poiché": "poic", "poichè": "poic", "point": "point", "poivre": "poivr", "pol": "pol", "polacche": "polacc", "polacco": "polacc", "polare": "pol", "polarizzi": "polarizz", "polemica": "polem", "polemiche": "polem", "polemichette": "polemichett", "polemico": "polem", "polemizza": "polemizz", "polemizzano": "polemizz", "polemizzato": "polemizz", "polenta": "polent", "polfer": "polfer", "poli": "pol", "poliambulatori": "poliambul", "policano": "polic", "policombustibile": "policombust", "polidori": "polidor", "poligrafici": "poligraf", "polimeri": "polimer", "polinesia": "polines", "poliomelitici": "poliomelit", "politano": "polit", "politica": "polit", "politicà": "politic", "political": "political", "politicamente": "polit", "politiche": "polit", "politici": "polit", "politicì": "politic", "politico": "polit", "politicò": "politic", "politicone": "politicon", "politiconi": "politicon", "politilene": "politilen", "polizia": "poliz", "poliziesco": "poliziesc", "poliziotta": "poliziott", "poliziotti": "poliziott", "poliziotto": "poliziott", "polizza": "polizz", "polizze": "polizz", "pollaio": "pollai", "polli": "poll", "pollice": "pollic", "polmoni": "polmon", "polo": "pol", "polonia": "polon", "polpette": "polpett", "polsi": "pols", "polso": "pols", "poltiglia": "poltigl", "poltrona": "poltron", "poltrone": "poltron", "poltroni": "poltron", "polvere": "polv", "polveri": "polver", "polveriera": "polverier", "polverino": "polverin", "polverìo": "polverì", "polverosi": "polver", "polziia": "polzii", "pomeridiana": "pomeridian", "pomeridiano": "pomerid", "pomeriggio": "pomerigg", "pomo": "pom", "pompa": "pomp", "pompe": "pomp", "pomposamente": "pompos", "pomposi": "pompos", "ponchio": "ponc", "ponderata": "ponder", "ponderato": "ponder", "pone": "pon", "ponevano": "pon", "poniamo": "pon", "ponsacco": "ponsacc", "ponte": "pont", "pontedera": "ponteder", "pontefice": "pontef", "ponti": "pont", "pontida": "pontid", "pontieri": "pontier", "pontificali": "pontifical", "pontificato": "pontific", "pontile": "pontil", "ponto": "pont", "pontone": "ponton", "ponzio": "ponz", "pool": "pool", "pop": "pop", "popolana": "popolan", "popolano": "popol", "popolanò": "popolan", "popolare": "popol", "popolari": "popolar", "popolarità": "popolar", "popolato": "popol", "popolazion": "popolazion", "popolazione": "popol", "popoli": "popol", "popolo": "popol", "popolò": "popol", "poposta": "popost", "poppa": "popp", "poppard": "poppard", "poppe": "popp", "poppea": "poppe", "populi": "popul", "populismo": "popul", "populista": "popul", "por": "por", "porcellini": "porcellin", "porcheria": "porcher", "porcherie": "porcher", "porci": "porc", "pordenone": "pordenon", "pordenonesi": "pordenones", "porfirio": "porfir", "porge": "porg", "porgevano": "porg", "porla": "porl", "pornografiche": "pornograf", "porpora": "porpor", "porporato": "porpor", "porporine": "porporin", "porporini": "porporin", "porrà": "porr", "porre": "porr", "porrini": "porrin", "porse": "pors", "port": "port", "porta": "port", "portabandiera": "portabandier", "portafoglio": "portafogl", "portale": "portal", "portamenti": "port", "portamento": "port", "portan": "portan", "portando": "port", "portandosi": "port", "portandovi": "port", "portano": "port", "portantini": "portantin", "portar": "port", "portarci": "port", "portare": "port", "portargli": "port", "portarla": "port", "portarle": "port", "portarli": "port", "portarlo": "port", "portarne": "port", "portaron": "portaron", "portarono": "port", "portarsi": "port", "portarvi": "port", "portasse": "port", "portassero": "port", "portata": "port", "portate": "port", "portateglieli": "portategliel", "portati": "port", "portatile": "portatil", "portato": "port", "portator": "portator", "portatore": "portator", "portatori": "portator", "portatovi": "portatov", "portava": "port", "portavan": "portavan", "portavano": "port", "portavce": "portavc", "portavoce": "portavoc", "porte": "port", "portento": "portent", "portentosa": "portent", "porterà": "port", "porteranno": "port", "porterebbe": "port", "porterò": "port", "portfolio": "portfol", "porti": "port", "portiam": "portiam", "portiamo": "port", "portici": "portic", "portico": "portic", "portiera": "portier", "portiere": "port", "portieri": "portier", "portinaio": "portinai", "portino": "portin", "portito": "port", "porto": "port", "portò": "port", "portogallo": "portogall", "portone": "porton", "portuale": "portual", "portuali": "portual", "portualità": "portual", "portugal": "portugal", "porzione": "porzion", "posa": "pos", "posada": "posad", "posando": "pos", "posar": "pos", "posarci": "pos", "posare": "pos", "posarlo": "pos", "posarsi": "pos", "posata": "pos", "posate": "pos", "posati": "pos", "posato": "pos", "posava": "pos", "posavano": "pos", "poscia": "posc", "pose": "pos", "posero": "poser", "posibilità": "posibil", "positiva": "posit", "positivamente": "posit", "positive": "posit", "positivi": "posit", "positivo": "posit", "positura": "positur", "posizini": "posizin", "posizione": "posizion", "posizioni": "posizion", "posò": "pos", "posposte": "pospost", "possa": "poss", "possan": "possan", "possano": "poss", "possedendo": "possed", "possedere": "possed", "possedessi": "possedess", "possedeva": "possed", "posseduta": "possed", "possegga": "possegg", "possesso": "possess", "possessore": "possessor", "possessori": "possessor", "possiam": "possiam", "possiamo": "poss", "possiate": "poss", "possibile": "possibil", "possibili": "possibil", "possibilie": "possibil", "possibilisti": "possibil", "possibilita": "possibil", "possibilità": "possibil", "possiblità": "possibl", "possiede": "possied", "posso": "poss", "posson": "posson", "possono": "poss", "post": "post", "posta": "post", "postali": "postal", "postandosi": "post", "postare": "post", "postarono": "post", "postarsi": "post", "postazione": "postazion", "postazioni": "postazion", "poste": "post", "postelegrafonici": "postelegrafon", "posteri": "poster", "posteriore": "posterior", "posteriori": "posterior", "posterità": "poster", "posti": "post", "postì": "post", "posticipo": "posticip", "postiglione": "postiglion", "posto": "post", "postò": "post", "potanno": "potann", "potata": "pot", "pote": "pot", "poté": "pot", "potendo": "pot", "potendolo": "pot", "potentati": "potent", "potente": "potent", "potenti": "potent", "potenza": "potenz", "potenze": "potenz", "potenziale": "potenzial", "potenziali": "potenzial", "potenzialità": "potenzial", "potenziamento": "potenz", "potenziando": "potenz", "poter": "poter", "poterci": "pot", "potere": "pot", "potergli": "pot", "poteri": "poter", "poterit": "poterit", "poterla": "pot", "poterle": "pot", "poterli": "pot", "poterlo": "pot", "poterne": "pot", "poterono": "pot", "potersene": "pot", "potersi": "pot", "potervi": "pot", "potesse": "potess", "potesser": "potesser", "potessero": "pot", "potessi": "potess", "potessimo": "potessim", "potestà": "potest", "poteste": "potest", "potete": "pot", "poteua": "poteu", "poteva": "pot", "potevamo": "pot", "potevan": "potevan", "potevano": "pot", "potevate": "pot", "potevi": "pot", "potevo": "pot", "poti": "pot", "potrà": "potr", "potrai": "potra", "potranno": "potrann", "potrebb": "potrebb", "potrebbe": "potrebb", "potrebber": "potrebber", "potrebbero": "potrebber", "potrei": "potre", "potremmo": "potr", "potremo": "potrem", "potreste": "potrest", "potresti": "potrest", "potrete": "potr", "potrò": "potr", "poturo": "potur", "potuta": "pot", "potute": "pot", "potuti": "pot", "potuto": "pot", "poueri": "pouer", "poule": "poul", "pover": "pover", "povera": "pover", "poveraccio": "poveracc", "povere": "pov", "poverella": "poverell", "poverelli": "poverell", "poveretta": "poverett", "poverette": "poverett", "poveretti": "poverett", "poveretto": "poverett", "poveri": "pover", "poverina": "poverin", "poverine": "poverin", "poverini": "poverin", "poverino": "poverin", "poverissimi": "poverissim", "povero": "pover", "povertà": "povert", "power": "power", "powergen": "powergen", "pozze": "pozz", "pozzi": "pozz", "pozzo": "pozz", "pozzobonelli": "pozzobonell", "pp": "pp", "ppi": "ppi", "pr": "pr", "praderio": "prader", "praedicti": "praedict", "praga": "prag", "pragati": "prag", "pragmatici": "pragmat", "pralboino": "pralboin", "prammatica": "prammat", "pranab": "pranab", "prandi": "prand", "prandini": "prandin", "pranzare": "pranz", "pranzi": "pranz", "pranzo": "pranz", "prassede": "prassed", "prassi": "prass", "prati": "prat", "pratica": "pratic", "praticabile": "pratic", "praticamente": "pratic", "praticare": "pratic", "praticate": "pratic", "praticato": "pratic", "pratiche": "pratic", "pratichi": "pratic", "pratico": "pratic", "praticò": "pratic", "prato": "prat", "prava": "prav", "prc": "prc", "prd": "prd", "pre": "pre", "preamboli": "preambol", "preannuncia": "preannunc", "preannunciano": "preannunc", "preannunciata": "preannunc", "preannunciate": "preannunc", "preannunciato": "preannunc", "prec": "prec", "precaria": "precar", "precarietà": "precariet", "precauzionale": "precauzional", "precauzionali": "precauzional", "precauzione": "precauzion", "precauzioni": "precauzion", "precede": "preced", "precedendo": "preced", "precedendolo": "preced", "precedente": "precedent", "precedentemente": "precedent", "precedenti": "precedent", "precedenza": "precedent", "precedere": "preced", "precedette": "precedett", "precedeuto": "preced", "precedeva": "preced", "preceduta": "preced", "precedute": "preced", "preceduti": "preced", "preceduto": "preced", "precetti": "precett", "precetto": "precett", "preci": "prec", "preciasto": "preciast", "precipita": "precip", "precipitando": "precipit", "precipitare": "precipit", "precipitarono": "precipit", "precipitata": "precipit", "precipitate": "precipit", "precipitati": "precipit", "precipitato": "precipit", "precipitazione": "precipit", "precipitazioni": "precipit", "precipitò": "precipit", "precipitosa": "precipit", "precipitosamente": "precipit", "precipitoso": "precipit", "precipizi": "precipiz", "precipizio": "precipiz", "precisa": "precis", "precisamente": "precis", "precisando": "precis", "precisare": "precis", "precisato": "precis", "precisazione": "precis", "precisazioni": "precis", "precise": "precis", "preciserò": "precis", "precisione": "precision", "preciso": "precis", "precistato": "precist", "preclusioni": "preclusion", "precocemente": "precoc", "preconcette": "preconcett", "preconcetti": "preconcett", "precongresso": "precongress", "precongressuale": "precongressual", "precorrendo": "precorr", "precorreva": "precorr", "precorse": "precors", "preda": "pred", "predator": "predator", "predazzo": "predazz", "prede": "pred", "predecessore": "predecessor", "predecessori": "predecessor", "predellino": "predellin", "predetta": "predett", "predica": "predic", "predicando": "predic", "predicano": "predic", "predicare": "predic", "predicargli": "predic", "predicate": "predic", "predicato": "predic", "predicatore": "predic", "predicatrice": "predic", "predicava": "predic", "prediche": "predic", "predicherà": "predic", "predieri": "predier", "prediletta": "predilett", "prediletto": "predilett", "predisponendo": "predispon", "predisposta": "predispost", "predisposto": "predispost", "predizione": "predizion", "predizioni": "predizion", "predominante": "predomin", "predominanti": "predomin", "predominare": "predomin", "predominati": "predomin", "predominato": "predomin", "predominava": "predomin", "predomini": "predomin", "preelettorale": "preelettoral", "preferenza": "preferent", "preferenze": "preferent", "preferibile": "prefer", "preferisce": "prefer", "preferita": "prefer", "preferito": "prefer", "preferiva": "prefer", "prefetto": "prefett", "prefetture": "prefettur", "prefigge": "prefigg", "prefigura": "prefigur", "prefigurata": "prefigur", "prefissate": "prefiss", "prefisso": "prefiss", "prega": "preg", "pregai": "prega", "pregando": "preg", "pregano": "preg", "pregar": "preg", "pregare": "preg", "pregarla": "preg", "pregarlo": "preg", "pregassi": "preg", "pregata": "preg", "pregate": "preg", "pregatelo": "pregatel", "pregati": "preg", "pregato": "preg", "pregava": "preg", "pregevole": "pregevol", "pregherei": "preg", "pregheremo": "preg", "pregherete": "preg", "pregherò": "preg", "preghi": "preg", "preghiamo": "preg", "preghiera": "preghier", "preghiere": "preg", "preghin": "preghin", "preghino": "preghin", "pregiudicare": "pregiudic", "pregiudicati": "pregiudic", "pregiudicato": "pregiudic", "pregiudizi": "pregiudiz", "pregiudiziale": "pregiudizial", "pregiudiziali": "pregiudizial", "pregiudizio": "pregiudiz", "pregni": "pregn", "prego": "preg", "pregò": "preg", "pregressi": "pregress", "preintesa": "preintes", "prelati": "prel", "prelato": "prel", "prelevare": "prelev", "prelevarla": "prelev", "prelevata": "prelev", "prelevato": "prelev", "prelievi": "prel", "prelievo": "prel", "preliminare": "prelimin", "preliminari": "preliminar", "preliminarmente": "preliminar", "premafin": "premafin", "premano": "prem", "preme": "prem", "premeditato": "premedit", "prementi": "prement", "premere": "prem", "premessa": "premess", "premesse": "premess", "premesso": "premess", "premette": "premett", "premettere": "premett", "premeva": "prem", "premevano": "prem", "premi": "prem", "premia": "prem", "premier": "premier", "preminente": "preminent", "preminenza": "preminent", "premio": "prem", "premon": "premon", "premuda": "premud", "premunire": "premun", "premuniti": "premun", "premura": "premur", "premure": "premur", "premurosa": "premur", "premurosamente": "premur", "premurose": "premur", "premurosi": "premur", "premuroso": "premur", "prencipi": "prencip", "prenda": "prend", "prendano": "prend", "prende": "prend", "prendendo": "prend", "prendendogli": "prend", "prendendola": "prend", "prendendole": "prend", "prendendolo": "prend", "prendendone": "prend", "prendendosela": "prendendosel", "prender": "prender", "prenderà": "prend", "prenderanno": "prend", "prendere": "prend", "prenderemo": "prend", "prendergli": "prend", "prenderla": "prend", "prenderle": "prend", "prenderli": "prend", "prenderlo": "prend", "prendermelo": "prend", "prendermi": "prend", "prenderne": "prend", "prenderò": "prend", "prendersela": "prendersel", "prenderselo": "prendersel", "prendersene": "prend", "prendersi": "prend", "prendervi": "prend", "prendesse": "prendess", "prendessero": "prend", "prendete": "prend", "prendetele": "prendetel", "prendeva": "prend", "prendevan": "prendevan", "prendevano": "prend", "prendevo": "prend", "prendi": "prend", "prendiamo": "prend", "prendiate": "prend", "prenditore": "prenditor", "prendo": "prend", "prendon": "prendon", "prendono": "prend", "prenotarsi": "prenot", "prenotazione": "prenot", "prenotazioni": "prenot", "preoccupa": "preoccup", "preoccupante": "preoccup", "preoccupare": "preoccup", "preoccuparsi": "preoccup", "preoccupata": "preoccup", "preoccupatevi": "preoccupat", "preoccupati": "preoccup", "preoccupatissimo": "preoccupatissim", "preoccupato": "preoccup", "preoccupazione": "preoccup", "preoccupazionè": "preoccupazion", "preoccupazioni": "preoccup", "prepara": "prepar", "preparando": "prepar", "preparano": "prepar", "preparar": "prepar", "preparare": "prepar", "prepararne": "prepar", "prepararsi": "prepar", "prepararvi": "prepar", "preparasse": "prepar", "preparata": "prepar", "preparate": "prepar", "preparati": "prepar", "preparativi": "prepar", "preparato": "prepar", "preparatorie": "preparator", "preparazione": "prepar", "prepensinamenti": "prepensin", "prepensionamenti": "prepension", "prepensionamento": "prepension", "preposte": "prepost", "prepotente": "prepotent", "prepotenti": "prepotent", "prepotenza": "prepotent", "prepotenze": "prepotent", "prerogativa": "prerog", "presa": "pres", "presagire": "presag", "prescelta": "prescelt", "prescelto": "prescelt", "prescinde": "prescind", "prescindendo": "prescind", "prescindere": "prescind", "prescrisse": "prescriss", "prescritta": "prescritt", "prescritte": "prescritt", "prescritti": "prescritt", "prescritto": "prescritt", "prescrive": "prescriv", "prescriver": "prescriver", "prescriverò": "prescriv", "prescriveva": "prescriv", "prescrivono": "prescriv", "prescrizione": "prescrizion", "prescrizioni": "prescrizion", "prese": "pres", "presenta": "present", "presentando": "present", "presentandosegli": "presentandosegl", "presentandosi": "present", "presentano": "present", "presentar": "present", "presentarci": "present", "presentare": "present", "presentarla": "present", "presentarlo": "present", "presentaron": "presentaron", "presentarsi": "present", "presentasse": "present", "presentassero": "present", "presentassi": "present", "presentata": "present", "presentate": "present", "presentati": "present", "presentatigli": "presentatigl", "presentato": "present", "presentatore": "present", "presentatori": "present", "presentatrice": "present", "presentava": "present", "presentavano": "present", "presentazione": "present", "presente": "present", "presenterà": "present", "presenteranno": "present", "presenteremo": "present", "presentes": "presentes", "presenti": "present", "presentiamo": "present", "presentimenti": "present", "presentimento": "present", "presentino": "presentin", "presentire": "present", "presentò": "present", "presentuoso": "presentu", "presenza": "presenz", "presenze": "presenz", "preser": "preser", "presero": "preser", "preservar": "preserv", "preservata": "preserv", "preservato": "preserv", "preservava": "preserv", "preservi": "pres", "presi": "pres", "preside": "presid", "presidente": "president", "presidenti": "president", "presidenza": "president", "presidenziale": "presidenzial", "presidenziali": "presidenzial", "presidetne": "presidetn", "presidi": "presid", "presiedono": "presied", "presieduta": "presied", "presieduto": "presied", "preso": "pres", "presolo": "presol", "presontuosa": "presontu", "press": "press", "pressante": "pressant", "pressanti": "pressant", "pressappochismo": "pressappoc", "pressava": "press", "pressi": "press", "pressing": "pressing", "pressione": "pression", "pressioni": "pression", "presso": "press", "pressocchè": "pressocc", "prestando": "prest", "prestano": "prest", "prestar": "prest", "prestare": "prest", "prestargli": "prest", "prestasse": "prest", "prestata": "prest", "prestati": "prest", "prestato": "prest", "prestava": "prest", "prestavano": "prest", "prestazione": "prestazion", "prestazioni": "prestazion", "prestesto": "prestest", "prestigio": "prestig", "prestigioso": "prestig", "prestin": "prestin", "prestissimo": "prestissim", "prestiti": "prest", "prestito": "prest", "presto": "prest", "preston": "preston", "presumere": "presum", "presumibilmente": "presumibil", "presumono": "presum", "presunta": "presunt", "presunte": "presunt", "presunti": "presunt", "presunto": "presunt", "presunzione": "presunzion", "presupposti": "presuppost", "presupposto": "presuppost", "presutti": "presutt", "prete": "pret", "pretende": "pret", "pretender": "pretender", "pretendere": "pretend", "pretendesse": "pretendess", "pretendete": "pretend", "pretendeva": "pretend", "pretendevano": "pretend", "pretendi": "pret", "pretendiam": "pretendiam", "pretendiamo": "pretend", "pretendo": "pret", "pretendono": "pretend", "pretensione": "pretension", "pretensioni": "pretension", "pretesa": "pretes", "preteso": "pretes", "pretesti": "pretest", "pretesto": "pretest", "preti": "pret", "pretore": "pretor", "pretoria": "pretor", "pretoriana": "pretorian", "pretta": "prett", "pretto": "prett", "preussenelektra": "preussenelektr", "prevalente": "prevalent", "prevalentemente": "prevalent", "prevalenti": "prevalent", "prevalenza": "prevalent", "prevalere": "preval", "prevaleva": "preval", "prevalga": "prevalg", "prevalgono": "prevalg", "prevalsa": "prevals", "prevalse": "prevals", "prevalso": "prevals", "prevaricante": "prevaric", "prevaricazione": "prevar", "preveda": "preved", "prevede": "preved", "preveder": "preveder", "prevederà": "preved", "prevedere": "preved", "prevederebbe": "preved", "prevedeva": "preved", "prevedevano": "preved", "prevediamo": "preved", "prevedibile": "preved", "prevedibili": "preved", "prevedo": "preved", "prevedono": "preved", "prevenir": "preven", "prevenire": "preven", "prevenirle": "preven", "prevenne": "prevenn", "preventiva": "prevent", "preventivo": "prevent", "prevenuto": "preven", "prevenzione": "prevenzion", "previdente": "prevident", "previdenza": "prevident", "previdenzà": "previdenz", "previdenze": "prevident", "previdenziale": "previdenzial", "previdenziali": "previdenzial", "previsione": "prevision", "previsioni": "prevision", "prevista": "previst", "previste": "previst", "previsti": "previst", "previsto": "previst", "previti": "prev", "prevot": "prevot", "preziosa": "prezios", "preziose": "prezios", "preziosi": "prezios", "preziosissimi": "preziosissim", "prezioso": "prezios", "prezzi": "prezz", "prezzo": "prezz", "pri": "pri", "prigione": "prigion", "prigioni": "prigion", "prigionia": "prigion", "prigioniera": "prigionier", "prigioniere": "prigion", "prigionieri": "prigionier", "prigioniero": "prigionier", "prim": "prim", "prima": "prim", "primaluna": "primalun", "primari": "primar", "primaria": "primar", "primarie": "primar", "primario": "primar", "primary": "primary", "primati": "prim", "primaticce": "primaticc", "primatista": "primat", "primato": "prim", "primavera": "primaver", "primaverile": "primaveril", "prime": "prim", "primebond": "primebond", "primecapital": "primecapital", "primecash": "primecash", "primeclub": "primeclub", "primeggiare": "primegg", "primerend": "primerend", "primi": "prim", "primissimi": "primissim", "primitiva": "primit", "primitivi": "primit", "primo": "prim", "primogenito": "primogen", "primordine": "primordin", "prina": "prin", "principale": "principal", "principali": "principal", "principalissimo": "principalissim", "principalmente": "principal", "principato": "princip", "principe": "princip", "principessa": "principess", "principi": "princip", "princìpi": "princìp", "principia": "princip", "principiamo": "princip", "principian": "principian", "principiano": "princip", "principiare": "princip", "principiarono": "princip", "principiata": "princip", "principiato": "princip", "principiava": "princip", "principiavano": "princip", "principiis": "principiis", "principino": "principin", "principio": "princip", "principiò": "princip", "principo": "princip", "prioncipali": "prioncipal", "prioprio": "priopr", "priorache": "priorac", "priori": "prior", "priorità": "priorit", "prioritariamente": "prioritar", "prioritario": "prioritar", "priv": "priv", "priva": "priv", "privacy": "privacy", "privalova": "privalov", "privare": "priv", "privarlo": "priv", "privarsene": "priv", "privata": "priv", "private": "priv", "privati": "priv", "privatisticò": "privatistic", "privatizzare": "privatizz", "privatizzata": "privatizz", "privatizzato": "privatizz", "privatizzaz": "privatizzaz", "privatizzazione": "privatizz", "privatizzazioni": "privatizz", "privato": "priv", "privazione": "privazion", "privazioni": "privazion", "privi": "priv", "privilegi": "privileg", "privilegia": "privileg", "privilegiare": "privileg", "privilegiata": "privileg", "privilegiati": "privileg", "privilegiato": "privileg", "privilegio": "privileg", "privo": "priv", "pro": "pro", "probabile": "probabil", "probabili": "probabil", "probabilità": "probabil", "probabilmente": "probabil", "probema": "probem", "problema": "problem", "problematica": "problemat", "problemi": "problem", "procacciar": "procacc", "procacciargli": "procacc", "procacciarsi": "procacc", "proceda": "proced", "proceddure": "proceddur", "procede": "proced", "procedendo": "proced", "procederà": "proced", "procedere": "proced", "procediemnto": "procediemnt", "procedimenti": "proced", "procedimento": "proced", "procedono": "proced", "procedura": "procedur", "procedurale": "procedural", "procedure": "procedur", "proceduta": "proced", "proceduto": "proced", "procellosa": "procell", "procelloso": "procell", "processando": "process", "processate": "process", "processati": "process", "processato": "process", "processi": "process", "processione": "procession", "processioni": "procession", "processo": "process", "processuale": "processual", "processuali": "processual", "procinto": "procint", "proclamata": "proclam", "proclamati": "proclam", "proclamato": "proclam", "procrazione": "procrazion", "procrear": "procr", "procura": "procur", "procurando": "procur", "procurar": "procur", "procurare": "procur", "procurarsi": "procur", "procurarti": "procur", "procuraste": "procurast", "procurato": "procur", "procuratore": "procur", "procurava": "procur", "procuravano": "procur", "procure": "procur", "procurerò": "procur", "procurò": "procur", "prod": "prod", "proda": "prod", "prode": "prod", "prodezza": "prodezz", "prodezze": "prodezz", "prodi": "prod", "prodì": "prod", "prodigalità": "prodigal", "prodigate": "prodig", "prodige": "prodig", "prodigi": "prodig", "prodigio": "prodig", "prodigioso": "prodig", "prodigo": "prodig", "proditorio": "proditor", "prodotta": "prodott", "prodotti": "prodott", "prodotto": "prodott", "produce": "produc", "producendo": "produc", "produceva": "produc", "producevan": "producevan", "producevano": "produc", "producono": "produc", "produr": "produr", "produrla": "produrl", "produrrà": "produrr", "produrre": "produrr", "produrrebbe": "produrrebb", "produsse": "produss", "produssero": "produsser", "produttiva": "produtt", "produttive": "produtt", "produttivi": "produtt", "produttività": "produtt", "produttivo": "produtt", "produttore": "produttor", "produttori": "produttor", "produttrice": "produttr", "produttrici": "produttr", "produzione": "produzion", "produzioni": "produzion", "produziuone": "produziuon", "proemio": "proem", "prof": "prof", "profana": "profan", "profane": "profan", "profano": "prof", "proferendo": "profer", "proferì": "profer", "proferir": "profer", "proferire": "profer", "proferirle": "profer", "proferisco": "profer", "proferisse": "proferiss", "proferita": "profer", "proferite": "profer", "proferito": "profer", "proferiva": "profer", "professato": "profess", "professi": "profess", "professionale": "professional", "professionali": "professional", "professionalità": "professional", "professione": "profession", "professioni": "profession", "professionismo": "profession", "professionista": "profession", "professionisti": "profession", "professionistico": "professionist", "professo": "profess", "professor": "professor", "professore": "professor", "professoressa": "professoress", "professori": "professor", "professorì": "professor", "profeta": "profet", "profeticà": "profetic", "profezia": "profez", "profezie": "profez", "proficuo": "proficu", "profili": "profil", "profilo": "profil", "profit": "profit", "profittarne": "profitt", "profittevole": "profittevol", "profitti": "profitt", "profitto": "profitt", "profittò": "profitt", "profonda": "profond", "profondamente": "profond", "profonde": "profond", "profondere": "profond", "profondi": "profond", "profondità": "profond", "profondo": "profond", "profughi": "profug", "profumati": "profum", "profumi": "profum", "profumo": "profum", "profundis": "profundis", "profuno": "profun", "profuso": "profus", "progessiste": "progess", "progettazione": "progett", "progetti": "progett", "progetto": "progett", "prognosi": "prognos", "programma": "programm", "programmatica": "programmat", "programmatiche": "programmat", "programmatici": "programmat", "programmatico": "programmat", "programmato": "programm", "programmazione": "programm", "programmi": "programm", "progressi": "progress", "progressione": "progression", "progressismo": "progress", "progressista": "progress", "progressiste": "progress", "progressisti": "progress", "progressita": "progress", "progressiva": "progress", "progressivamente": "progress", "progressivamenti": "progressiv", "progressivo": "progress", "progresso": "progress", "proibì": "proib", "proibire": "proib", "proibirvelo": "proib", "proibisca": "proib", "proibisse": "proibiss", "proibite": "proib", "proibito": "proib", "proibiva": "proib", "proiettare": "proiett", "proietti": "proiett", "proiettile": "proiettil", "proiettili": "proiettil", "proiezione": "proiezion", "project": "project", "prole": "prol", "prolisse": "proliss", "prolissità": "proliss", "prolungamento": "prolung", "prolungano": "prolung", "prolungar": "prolung", "prolungare": "prolung", "prolungata": "prolung", "prolungate": "prolung", "prolungato": "prolung", "prolungò": "prolung", "promessa": "promess", "promessà": "promess", "promesse": "promess", "promessi": "promess", "promesso": "promess", "promette": "promett", "promettendo": "promett", "promettendogli": "promett", "promettendosi": "promett", "prometter": "prometter", "promettere": "promett", "promettergli": "promett", "prometterlo": "promett", "promettermi": "promett", "promettersi": "promett", "promettete": "promett", "promettetele": "promettetel", "promettetemi": "promettetem", "prometteva": "promett", "prometti": "promett", "prometto": "promett", "promettono": "promett", "promiscua": "promiscu", "promise": "promis", "promontorio": "promontor", "promossa": "promoss", "promosso": "promoss", "promotor": "promotor", "promotore": "promotor", "promotori": "promotor", "promotrice": "promotr", "promovere": "promov", "promovono": "promov", "promozionali": "promozional", "promozione": "promozion", "promuove": "promuov", "promuovere": "promuov", "pronosticargliele": "pronostic", "pronosticata": "pronostic", "pronosticava": "pronostic", "pronostici": "pronost", "pronosticò": "pronostic", "pronta": "pront", "prontamente": "pront", "pronte": "pront", "prontezza": "prontezz", "pronti": "pront", "pronto": "pront", "pronuncerà": "pronunc", "pronuncia": "pronunc", "pronunciamento": "pronunc", "pronunciare": "pronunc", "pronunciarsi": "pronunc", "pronunciata": "pronunc", "pronunciate": "pronunc", "pronunciato": "pronunc", "pronunzia": "pronunz", "pronunziano": "pronunz", "pronunziare": "pronunz", "pronunziarle": "pronunz", "pronunziato": "pronunz", "pronunzio": "pronunz", "pronunziò": "pronunz", "propaga": "propag", "propagamento": "propag", "propaganda": "propagand", "propagare": "propag", "propagarla": "propag", "propagarsi": "propag", "propagasse": "propag", "propagata": "propag", "propagazione": "propag", "propaghino": "propaghin", "propalate": "propal", "propende": "prop", "propensi": "propens", "propensione": "propension", "propini": "propin", "propio": "prop", "propizio": "propiz", "propone": "propon", "proponendo": "propon", "proponendosi": "propon", "proponenti": "proponent", "proponeva": "propon", "proponevano": "propon", "proponga": "propong", "propongo": "propong", "propongono": "propong", "proponiam": "proponiam", "proponiamo": "propon", "proponimenti": "propon", "proponimento": "propon", "propor": "propor", "proporgli": "proporgl", "proporle": "proporl", "proporli": "proporl", "proporrà": "proporr", "proporre": "proporr", "proporsi": "propors", "proporzion": "proporzion", "proporzionale": "proporzional", "proporzionali": "proporzional", "proporzionalmente": "proporzional", "proporzionare": "proporzion", "proporzionata": "proporzion", "proporzionati": "proporzion", "proporzionato": "proporzion", "proporzione": "proporzion", "proporzioni": "proporzion", "propose": "propos", "proposero": "proposer", "proposito": "propos", "proposizione": "proposizion", "proposizioni": "proposizion", "proposta": "propost", "proposte": "propost", "proposti": "propost", "proposto": "propost", "propp": "propp", "propri": "propr", "propria": "propr", "propriamente": "propr", "proprie": "propr", "proprieta": "propriet", "proprietà": "propriet", "proprietàdelle": "proprietàdell", "proprietari": "proprietar", "proprietarie": "proprietar", "proprietario": "proprietar", "proprio": "propr", "proprosito": "propros", "propugna": "propugn", "propugnano": "propugn", "prora": "pror", "prorietà": "proriet", "proroga": "prorog", "prorogata": "prorog", "prorogato": "prorog", "prorompeva": "proromp", "prorpio": "prorp", "proruppe": "prorupp", "proruppero": "prorupper", "prosa": "pros", "prosapia": "prosap", "proscenio": "proscen", "prosecuzione": "prosecu", "prosegue": "prosegu", "proseguendo": "prosegu", "proseguì": "prosegu", "proseguirà": "prosegu", "proseguiranno": "prosegu", "proseguire": "prosegu", "proseguita": "prosegu", "proseguite": "prosegu", "proseguiti": "prosegu", "proseguito": "prosegu", "proseguiva": "prosegu", "proseguono": "prosegu", "prosopopea": "prosopope", "prosperità": "prosper", "prospero": "prosper", "prosperosi": "prosper", "prosperoso": "prosper", "prospetta": "prospett", "prospettata": "prospett", "prospettati": "prospett", "prospettato": "prospett", "prospettava": "prospett", "prospetti": "prospett", "prospettiva": "prospett", "prospettive": "prospett", "prospetto": "prospett", "prossima": "prossim", "prossimamente": "prossim", "prossime": "prossim", "prossimi": "prossim", "prossimo": "prossim", "prostituta": "prostit", "protagonista": "protagon", "protagonisti": "protagon", "protegge": "protegg", "proteggendosi": "protegg", "proteggerci": "protegg", "proteggere": "protegg", "proteggerla": "protegg", "proteggerlo": "protegg", "proteggeva": "protegg", "proteggo": "protegg", "proteo": "prote", "protesa": "protes", "protesta": "protest", "protestandogli": "protest", "protestante": "protest", "protestantè": "protestant", "protestanti": "protest", "protestare": "protest", "protestato": "protest", "protestava": "protest", "protestavano": "protest", "proteste": "protest", "protetta": "protett", "protetti": "protett", "protettor": "protettor", "protettore": "protettor", "protettrice": "protettr", "protezione": "protezion", "protezioni": "protezion", "protocollari": "protocollar", "protocollo": "protocoll", "protofisico": "protofis", "protrae": "protra", "protrarrà": "protrarr", "protrarsi": "protr", "protti": "prott", "protuberanza": "protuber", "proueeré": "proueer", "prouisione": "prouision", "prova": "prov", "provando": "prov", "provano": "prov", "provar": "prov", "provarci": "prov", "provare": "prov", "provarla": "prov", "provarne": "prov", "provarsi": "prov", "provasse": "prov", "provata": "prov", "provate": "prov", "provati": "prov", "provato": "prov", "provava": "prov", "provavano": "prov", "prove": "prov", "provence": "provenc", "provengono": "proveng", "proveniente": "provenient", "provenienti": "provenient", "provenienza": "provenient", "provenienze": "provenient", "provera": "prover", "proverà": "prov", "proverai": "prov", "proverbi": "proverb", "proverbio": "proverb", "proveremo": "prov", "proverete": "prov", "provetto": "provett", "providence": "providenc", "providencia": "providenc", "province": "provinc", "provincia": "provinc", "provinciale": "provincial", "provinciali": "provincial", "provincie": "provinc", "provo": "prov", "provò": "prov", "provocando": "provoc", "provocano": "provoc", "provocare": "provoc", "provocarli": "provoc", "provocarlo": "provoc", "provocata": "provoc", "provocativo": "provoc", "provocato": "provoc", "provocatori": "provoc", "provocatorie": "provocator", "provocatorio": "provocator", "provocazione": "provoc", "provocherà": "provoc", "provocherai": "provoc", "provocò": "provoc", "provv": "provv", "provveda": "provved", "provveder": "provveder", "provvederà": "provved", "provvedere": "provved", "provvederla": "provved", "provvedeva": "provved", "provvedimenti": "provved", "provvedimento": "provved", "provvedute": "provved", "provveduti": "provved", "provveduto": "provved", "provvidenza": "provvident", "provvisione": "provvision", "provvisioni": "provvision", "provvisori": "provvisor", "provvisorio": "provvisor", "provvisti": "provvist", "provvisto": "provvist", "prozie": "proz", "prudente": "prudent", "prudenti": "prudent", "prudentium": "prudentium", "prudenza": "prudenz", "prudenziale": "prudenzial", "prunaio": "prunai", "pruni": "prun", "prurito": "prur", "prusis": "prusis", "ps": "ps", "pscritto": "pscritt", "psi": "psi", "psiche": "psic", "psichico": "psichic", "psico": "psic", "psicosi": "psicos", "pst": "pst", "psu": "psu", "pt": "pt", "pu": "pu", "pubbicato": "pubbic", "pubblica": "pubblic", "pubblicamente": "pubblic", "pubblicando": "pubblic", "pubblicar": "pubblic", "pubblicare": "pubblic", "pubblicasse": "pubblic", "pubblicata": "pubblic", "pubblicatao": "pubblicata", "pubblicate": "pubblic", "pubblicati": "pubblic", "pubblicato": "pubblic", "pubblicavano": "pubblic", "pubblicazione": "pubblic", "pubblicazioni": "pubblic", "pubbliche": "pubblic", "pubblichi": "pubblic", "pubblici": "pubblic", "pubblicità": "pubblic", "pubblicitari": "pubblicitar", "pubblicitaria": "pubblicitar", "pubblicitarie": "pubblicitar", "pubblicizza": "pubblicizz", "pubblicizzati": "pubblicizz", "pubblico": "pubblic", "pubblicò": "pubblic", "pubertà": "pubert", "publbico": "publbic", "publicata": "public", "publico": "public", "publio": "publ", "puc": "puc", "puche": "puch", "pudore": "pudor", "pudori": "pudor", "pueblo": "puebl", "puedes": "puedes", "puerizia": "pueriz", "pug": "pug", "pugilato": "pugil", "puglia": "pugl", "puglià": "pugl", "pugliese": "puglies", "pugliesi": "puglies", "pugnalata": "pugnal", "pugnalate": "pugnal", "pugnale": "pugnal", "pugnali": "pugnal", "pugni": "pugn", "pugnitopo": "pugnitop", "pugno": "pugn", "pulce": "pulc", "pulcin": "pulcin", "pulcinella": "pulcinell", "pulcini": "pulcin", "pulcino": "pulcin", "pulejo": "pulej", "puliè": "pul", "pulita": "pul", "pulite": "pul", "pulitè": "pulit", "pulito": "pul", "pulizia": "puliz", "pullman": "pullman", "pullmann": "pullmann", "pulmino": "pulmin", "pulpiti": "pulp", "pulpito": "pulp", "puma": "pum", "punge": "pung", "pungente": "pungent", "pungenti": "pungent", "pungolo": "pungol", "punire": "pun", "punirlo": "pun", "puniti": "pun", "punitore": "punitor", "puniva": "pun", "punizione": "punizion", "punt": "punt", "punta": "punt", "puntando": "punt", "puntano": "punt", "puntare": "punt", "puntarglisi": "puntarglis", "puntata": "punt", "puntate": "punt", "puntati": "punt", "puntato": "punt", "puntava": "punt", "punte": "punt", "punteggio": "puntegg", "puntelli": "puntell", "punterà": "punt", "punti": "punt", "puntiamo": "punt", "puntigli": "puntigl", "puntiglio": "puntigl", "puntiglioso": "puntigl", "puntino": "puntin", "punto": "punt", "puntuale": "puntual", "puntuali": "puntual", "puntualità": "puntual", "puntualizza": "puntualizz", "puntualizzato": "puntualizz", "puntualizzazione": "puntualizz", "puntualizzazioni": "puntualizz", "puntualmente": "puntual", "puntura": "puntur", "punzione": "punzion", "punzone": "punzon", "punzoni": "punzon", "puo": "puo", "può": "può", "puoco": "puoc", "puoi": "puo", "puoiché": "puoic", "pupazzi": "pupazz", "pupilla": "pupill", "pupille": "pupill", "pupillo": "pupill", "pur": "pur", "pura": "pur", "puramente": "pur", "purché": "purc", "pure": "pur", "purgare": "purg", "purgatorio": "purgator", "purghe": "purg", "puri": "pur", "purissime": "purissim", "purissimi": "purissim", "puritanesimo": "puritanesim", "puro": "pur", "purtroppo": "purtropp", "purus": "purus", "pusceddu": "pusceddu", "pusillanime": "pusillanim", "pusillanimità": "pusillanim", "pusterla": "pust", "putignanese": "putignanes", "putignano": "putign", "putrefatti": "putrefatt", "putrida": "putrid", "puttemans": "puttemans", "puzzar": "puzz", "puzzava": "puzz", "puzzo": "puzz", "pvs": "pvs", "pyc": "pyc", "pz": "pz", "q": "q", "qa": "qa", "qatar": "qat", "qbxb": "qbxb", "qn": "qn", "qua": "qua", "quaderno": "quadern", "quadraro": "quadrar", "quadrata": "quadr", "quadrati": "quadr", "quadrato": "quadr", "quadri": "quadr", "quadriennio": "quadrienn", "quadrifoglio": "quadrifogl", "quadrilatero": "quadrilater", "quadrimotori": "quadrimotor", "quadro": "quadr", "quae": "qua", "quaggiù": "quaggiù", "quaid": "quaid", "qual": "qual", "qualche": "qualc", "qualchedun": "qualchedun", "qualcheduna": "qualchedun", "qualcheduno": "qualchedun", "qualcosa": "qualcos", "qualcosina": "qualcosin", "qualcuno": "qualcun", "quale": "qual", "quali": "qual", "qualifica": "qualif", "qualificanti": "qualific", "qualificar": "qualific", "qualificare": "qualific", "qualificata": "qualific", "qualificati": "qualific", "qualificato": "qualific", "qualificava": "qualific", "qualita": "qual", "qualità": "qualit", "qualitate": "qualit", "qualitativamente": "qualit", "qualla": "quall", "qualmente": "qualment", "qualora": "qualor", "qualsiasi": "qualsias", "qualsisia": "qualsis", "qualsiuoglia": "qualsiuogl", "qualsivoglia": "qualsivogl", "qualunque": "qualunqu", "qualunquismo": "qualunqu", "qualunquista": "qualunqu", "quand": "quand", "quando": "quand", "quant": "quant", "quanta": "quant", "quante": "quant", "quanti": "quant", "quantificavano": "quantific", "quantità": "quantit", "quantitativi": "quantit", "quantitativo": "quantit", "quanto": "quant", "quantunque": "quantunqu", "quarant": "quarant", "quaranta": "quarant", "quarantene": "quaranten", "quarantenni": "quarantenn", "quarantina": "quarantin", "quaresima": "quaresim", "quaresimale": "quaresimal", "quarta": "quart", "quartetto": "quartett", "quarti": "quart", "quartier": "quartier", "quartiere": "quart", "quartieri": "quartier", "quarto": "quart", "quartuccio": "quartucc", "quarum": "quarum", "quasdro": "quasdr", "quasi": "quas", "quassù": "quassù", "quatti": "quatt", "quatto": "quatt", "quattordicenne": "quattordicenn", "quattordicesima": "quattordicesim", "quattordici": "quattord", "quattordicimila": "quattordicimil", "quattr": "quattr", "quattrinelli": "quattrinell", "quattrini": "quattrin", "quattrino": "quattrin", "quattro": "quattr", "quattrocento": "quattrocent", "quattromila": "quattromil", "quayle": "quayl", "que": "que", "quegl": "quegl", "quegli": "quegl", "quei": "que", "queire": "que", "quel": "quel", "quell": "quell", "quella": "quell", "quelle": "quell", "quelli": "quell", "quello": "quell", "quellò": "quell", "querce": "querc", "quercia": "querc", "quercioli": "querciol", "querela": "querel", "querelarsi": "querel", "querele": "querel", "querelle": "querell", "quesiti": "ques", "quest": "quest", "questa": "quest", "queste": "quest", "questi": "quest", "questionare": "question", "questione": "question", "questioni": "question", "questo": "quest", "questore": "questor", "questura": "questur", "questure": "questur", "qui": "qui", "quicktime": "quicktim", "quid": "quid", "quidem": "quidem", "quidquid": "quidquid", "quieta": "quiet", "quietamente": "quiet", "quietatevi": "quietat", "quiete": "qui", "quieti": "quiet", "quieto": "quiet", "quin": "quin", "quindi": "quind", "quindici": "quindic", "quindicina": "quindicin", "quindicinale": "quindicinal", "quinta": "quint", "quinte": "quint", "quinti": "quint", "quintin": "quintin", "quinto": "quint", "quique": "quiqu", "quirinale": "quirinal", "quis": "quis", "quito": "quit", "quivi": "quiv", "quiz": "quiz", "qundici": "qundic", "quo": "quo", "quod": "quod", "quoque": "quoqu", "quota": "quot", "quotata": "quot", "quotati": "quot", "quotato": "quot", "quotazione": "quotazion", "quotazioni": "quotazion", "quote": "quot", "quotidiana": "quotidian", "quotidianamente": "quotidian", "quotidiani": "quotidian", "quotidianiche": "quotidian", "quotidiano": "quotid", "qutub": "qutub", "quyivalenti": "quyivalent", "r": "r", "ra": "ra", "raadstroem": "raadstroem", "rab": "rab", "rabai": "raba", "rabbani": "rabban", "rabbattuto": "rabbatt", "rabbi": "rabb", "rabbia": "rabb", "rabbie": "rabb", "rabbiosa": "rabbios", "rabbiosamente": "rabbios", "rabbiosi": "rabbios", "rabbioso": "rabbios", "rabbrividì": "rabbrivid", "rabbrividire": "rabbrivid", "rabbrividiti": "rabbrivid", "rabbuffato": "rabbuff", "rabbuffi": "rabbuff", "rabbuiando": "rabbui", "rabbuiandosi": "rabbui", "rabescate": "rabesc", "rabin": "rabin", "racalbuto": "racalb", "raccapezzandosi": "raccapezz", "raccapezzar": "raccapezz", "raccapezzare": "raccapezz", "raccapezzarsi": "raccapezz", "raccapezzò": "raccapezz", "raccapriccianti": "raccapricc", "raccapriccio": "raccapricc", "raccattare": "raccatt", "raccattarle": "raccatt", "raccattava": "raccatt", "racchiuse": "racchius", "racchiuso": "racchius", "raccoglie": "raccogl", "raccogliendo": "raccogl", "raccoglier": "raccoglier", "raccoglierà": "raccogl", "raccogliere": "raccogl", "raccoglierli": "raccogl", "raccoglierlo": "raccogl", "raccoglieva": "raccogl", "raccoglievan": "raccoglievan", "raccoglievano": "raccogl", "raccoglimento": "raccogl", "raccolgono": "raccolg", "raccolse": "raccols", "raccolta": "raccolt", "raccolte": "raccolt", "raccolti": "raccolt", "raccolto": "raccolt", "raccomandandosi": "raccomand", "raccomandare": "raccomand", "raccomandasse": "raccomand", "raccomandata": "raccomand", "raccomandate": "raccomand", "raccomandatemi": "raccomandatem", "raccomandati": "raccomand", "raccomandato": "raccomand", "raccomandava": "raccomand", "raccomandavano": "raccomand", "raccomandazione": "raccomand", "raccomandazioni": "raccomand", "raccomanderò": "raccomand", "raccomando": "raccom", "raccomandò": "raccomand", "raccomodar": "raccomod", "raccomodare": "raccomod", "raccomodarla": "raccomod", "raccomodarlo": "raccomod", "raccomodata": "raccomod", "raccomodava": "raccomod", "raccomodò": "raccomod", "racconta": "raccont", "raccontai": "racconta", "raccontan": "raccontan", "raccontando": "raccont", "raccontano": "raccont", "raccontar": "raccont", "raccontare": "raccont", "raccontargli": "raccont", "raccontarglieli": "raccont", "raccontargliene": "raccont", "raccontarlo": "raccont", "raccontarne": "raccont", "raccontarsi": "raccont", "raccontartene": "raccont", "raccontasse": "raccont", "raccontata": "raccont", "raccontategli": "raccontategl", "raccontatele": "raccontatel", "raccontatemelo": "raccontatemel", "raccontatemi": "raccontatem", "raccontati": "raccont", "raccontato": "raccont", "raccontava": "raccont", "raccontavan": "raccontavan", "raccontavano": "raccont", "racconterebbe": "raccont", "racconteremo": "raccont", "racconterò": "raccont", "racconti": "raccont", "raccontiamo": "raccont", "racconto": "raccont", "raccontò": "raccont", "raccordare": "raccord", "raccorderà": "raccord", "raccordo": "raccord", "raccostando": "raccost", "raccostò": "raccost", "raccozzò": "raccozz", "rachenko": "rachenk", "rachid": "rachid", "rachini": "rachin", "racing": "racing", "racquisto": "racquist", "rada": "rad", "radchenko": "radchenk", "raddirizzar": "raddirizz", "raddirizzare": "raddirizz", "raddirizzati": "raddirizz", "raddolcendo": "raddolc", "raddolcì": "raddolc", "raddolcirà": "raddolc", "raddolcisce": "raddolc", "raddolcita": "raddolc", "raddolcito": "raddolc", "raddoppi": "raddopp", "raddoppiar": "raddopp", "raddoppiare": "raddopp", "raddoppiato": "raddopp", "raddoppio": "raddopp", "rade": "rad", "radendo": "rad", "raderle": "rad", "radezza": "radezz", "radhabinod": "radhabinod", "radi": "rad", "radical": "radical", "radicale": "radical", "radicali": "radical", "radicamento": "radic", "radicata": "radic", "radicate": "radic", "radicchielle": "radicchiell", "radice": "radic", "radici": "radic", "radicioni": "radicion", "radio": "rad", "radiò": "rad", "radiocronaca": "radiocronac", "radiofonia": "radiofon", "radiofonica": "radiofon", "radiofonici": "radiofon", "radiografia": "radiograf", "radiografico": "radiograf", "radiotelevisiva": "radiotelevis", "radiotelevisive": "radiotelevis", "radiotelevisivi": "radiotelevis", "radiotelevisivo": "radiotelevis", "raditelevisive": "raditelevis", "rado": "rad", "radovan": "radovan", "radstrom": "radstrom", "radunando": "radun", "radunanza": "radun", "radunar": "radun", "radunarglisi": "radunarglis", "radunarono": "radun", "radunarsi": "radun", "radunarvi": "radun", "radunata": "radun", "radunate": "radun", "radunati": "radun", "radunavano": "radun", "raduno": "radun", "radunò": "radun", "rafael": "rafael", "raffa": "raff", "raffaele": "raffael", "raffh": "raffh", "raffica": "raffic", "raffiche": "raffic", "raffigura": "raffigur", "raffigurante": "raffigur", "raffigurar": "raffigur", "raffigurata": "raffigur", "raffigurato": "raffigur", "raffigurazione": "raffigur", "raffin": "raffin", "raffinate": "raffin", "raffinatori": "raffin", "raffinerie": "raffiner", "rafforzamento": "rafforz", "rafforzando": "rafforz", "rafforzare": "rafforz", "rafforzati": "rafforz", "rafforzato": "rafforz", "rafforzerebbe": "rafforz", "raffreddamento": "raffredd", "raffreddore": "raffreddor", "rafsanjani": "rafsanjan", "ragazza": "ragazz", "ragazzacci": "ragazzacc", "ragazzaccio": "ragazzacc", "ragazzate": "ragazz", "ragazze": "ragazz", "ragazzetti": "ragazzett", "ragazzetto": "ragazzett", "ragazzi": "ragazz", "ragazzia": "ragazz", "ragazzina": "ragazzin", "ragazzini": "ragazzin", "ragazzo": "ragazz", "ragazzone": "ragazzon", "ragazzotto": "ragazzott", "raggi": "ragg", "raggiante": "raggiant", "raggio": "ragg", "raggiri": "raggir", "raggiunga": "raggiung", "raggiunge": "raggiung", "raggiungendo": "raggiung", "raggiunger": "raggiunger", "raggiungerà": "raggiung", "raggiungere": "raggiung", "raggiungerli": "raggiung", "raggiungerlo": "raggiung", "raggiungono": "raggiung", "raggiunse": "raggiuns", "raggiunta": "raggiunt", "raggiunte": "raggiunt", "raggiunti": "raggiunt", "raggiunto": "raggiunt", "raggomitolata": "raggomitol", "raggrinzando": "raggrinz", "raggrinzarle": "raggrinz", "raggrinzata": "raggrinz", "raggrinzato": "raggrinz", "raggrinzava": "raggrinz", "raggrinzò": "raggrinz", "raggrumate": "raggrum", "raggruppamenti": "raggrupp", "raggruppamento": "raggrupp", "ragguagli": "ragguagl", "ragguagliata": "ragguagl", "ragguaglio": "ragguagl", "ragion": "ragion", "ragionamenti": "ragion", "ragionamento": "ragion", "ragionando": "ragion", "ragionar": "ragion", "ragionare": "ragion", "ragionava": "ragion", "ragione": "ragion", "ragioneria": "ragioner", "ragionevole": "ragionevol", "ragionevolezza": "ragionevolezz", "ragionevoli": "ragionevol", "ragionevolmente": "ragionevol", "ragioni": "ragion", "ragioniere": "ragion", "ragnateli": "ragnatel", "ragno": "ragn", "ragnotti": "ragnott", "ragusa": "ragus", "rai": "rai", "raico": "raic", "raidue": "raidu", "raimondo": "raimond", "raiola": "raiol", "rais": "rais", "raitre": "raitr", "raiuno": "raiun", "rajasthan": "rajasthan", "rajko": "rajk", "rakkarndee": "rakkarnde", "rallegra": "rallegr", "rallegrarsi": "rallegr", "rallegratevi": "rallegrat", "rallegrati": "rallegr", "rallegrato": "rallegr", "rallegrava": "rallegr", "rallegravano": "rallegr", "rallegriamo": "rallegr", "rallegro": "rallegr", "rallegrò": "rallegr", "rallenta": "rallent", "rallentamento": "rallent", "rallentando": "rallent", "rallentare": "rallent", "rallentarono": "rallent", "rallentarsi": "rallent", "rallentavano": "rallent", "rallentò": "rallent", "rally": "rally", "ram": "ram", "ramadan": "ramadan", "rambaldo": "rambald", "rambaudi": "rambaud", "rametti": "ramett", "rami": "ram", "ramificano": "ramific", "raminga": "raming", "ramingo": "raming", "ramione": "ramion", "ramiro": "ramir", "rammarica": "rammar", "rammaricarsi": "rammaric", "rammaricato": "rammaric", "rammaricava": "rammaric", "rammarichìo": "rammarichì", "rammarico": "rammar", "rammatico": "rammat", "rammentandosi": "ramment", "rammentar": "ramment", "rammentarsi": "ramment", "rammentasse": "ramment", "rammentate": "ramment", "rammentava": "ramment", "rammentavan": "rammentavan", "rammentavano": "ramment", "rammenti": "ramment", "rammentò": "ramment", "ramo": "ram", "ramon": "ramon", "rampolli": "rampoll", "rampulla": "rampull", "ramzi": "ramz", "rancore": "rancor", "rancori": "rancor", "randello": "randell", "randy": "randy", "rangers": "rangers", "ranieri": "ranier", "rannicchiarsi": "rannicc", "rannicchiata": "rannicc", "rannicchiati": "rannicc", "rannicchiato": "rannicc", "rannicchiò": "rannicc", "rannuvolata": "rannuvol", "rannuvolato": "rannuvol", "rao": "rao", "rap": "rap", "rapatè": "rapat", "rapid": "rapid", "rapida": "rapid", "rapidamente": "rapid", "rapidi": "rapid", "rapidissima": "rapidissim", "rapidità": "rapid", "rapido": "rapid", "rapimenti": "rap", "rapimento": "rap", "rapina": "rapin", "rapinate": "rapin", "rapinatori": "rapin", "rapine": "rapin", "rapisce": "rap", "rapiscono": "rap", "rapita": "rap", "rapite": "rap", "rapito": "rap", "rapitori": "rapitor", "rapportare": "rapport", "rapportarono": "rapport", "rapportata": "rapport", "rapportato": "rapport", "rapporti": "rapport", "rapporto": "rapport", "rapportò": "rapport", "rappporti": "rappport", "rappresaglia": "rappresagl", "rappresenta": "rappresent", "rappresentando": "rappresent", "rappresentano": "rappresent", "rappresentante": "rappresent", "rappresentanti": "rappresent", "rappresentanza": "rappresent", "rappresentanze": "rappresent", "rappresentar": "rappresent", "rappresentare": "rappresent", "rappresentarle": "rappresent", "rappresentassero": "rappresent", "rappresentata": "rappresent", "rappresentate": "rappresent", "rappresentati": "rappresent", "rappresentative": "rappresent", "rappresentativo": "rappresent", "rappresentato": "rappresent", "rappresentava": "rappresent", "rappresentavan": "rappresentavan", "rappresentazione": "rappresent", "rappresenti": "rappresent", "rappresento": "rappresent", "rappresentò": "rappresent", "rappresntanti": "rappresnt", "raprpesenta": "raprpesent", "rapto": "rapt", "raptus": "raptus", "rara": "rar", "rare": "rar", "rari": "rar", "rarità": "rarit", "raro": "rar", "ras": "ras", "rasa": "ras", "rasentando": "rasent", "rasentare": "rasent", "rasente": "rasent", "rashid": "rashid", "rasi": "ras", "rasim": "rasim", "raso": "ras", "rasoterra": "rasoterr", "rasotterra": "rasotterr", "rasputin": "rasputin", "rassegna": "rassegn", "rassegnarci": "rassegn", "rassegnarsi": "rassegn", "rassegnasse": "rassegn", "rassegnata": "rassegn", "rassegnate": "rassegn", "rassegnatevi": "rassegnat", "rassegnati": "rassegn", "rassegnato": "rassegn", "rassegnazione": "rassegn", "rassegnerò": "rassegn", "rassegno": "rassegn", "rasserenamentò": "rasserenament", "rasserenato": "rasseren", "rassettar": "rassett", "rassicurando": "rassicur", "rassicurandolo": "rassicur", "rassicurante": "rassicur", "rassicuranti": "rassicur", "rassicurare": "rassicur", "rassicurarlo": "rassicur", "rassicurato": "rassicur", "rassicurava": "rassicur", "rassomigliavan": "rassomigliavan", "rastelli": "rastell", "rastrelli": "rastrell", "rata": "rat", "ratajczak": "ratajczak", "ratè": "rat", "ratifica": "ratif", "ratificata": "ratific", "ratificato": "ratific", "ratificazione": "ratif", "ratificherà": "ratific", "rating": "rating", "ratio": "rat", "ratiò": "rat", "rattenendo": "ratten", "rattenere": "ratten", "rattenerne": "ratten", "rattenuta": "ratten", "rattenute": "ratten", "rattenuto": "ratten", "ratti": "ratt", "rattoppare": "rattopp", "rattopparle": "rattopp", "rattrista": "rattrist", "rattristato": "rattrist", "rattristava": "rattrist", "rauti": "raut", "ravanelli": "ravanell", "ravasi": "ravas", "raveggioli": "raveggiol", "ravenna": "ravenn", "ravennate": "ravenn", "ravveda": "ravved", "ravvedere": "ravved", "ravvedeva": "ravved", "ravvedimento": "ravved", "ravveduta": "ravved", "ravviare": "ravv", "ravviarla": "ravv", "ravvicinata": "ravvicin", "ravvicinato": "ravvicin", "ravvicinava": "ravvicin", "ravvicinavano": "ravvicin", "ravvicinerebbero": "ravvicin", "ravvisarsi": "ravvis", "ravvisato": "ravvis", "ravvivasse": "ravviv", "ravvolgevan": "ravvolgevan", "ravvolse": "ravvols", "ravvolte": "ravvolt", "ravvolto": "ravvolt", "raymond": "raymond", "rayton": "rayton", "razionalizzare": "razionalizz", "razza": "razz", "razziali": "razzial", "razzismo": "razzism", "razzisti": "razzist", "razzo": "razz", "rb": "rb", "rc": "rc", "rdb": "rdb", "rdt": "rdt", "re": "re", "rea": "rea", "reagan": "reagan", "reagì": "reag", "reagire": "reag", "reagisce": "reag", "reagiscono": "reag", "reagito": "reag", "real": "real", "reale": "real", "realè": "real", "reali": "real", "realistico": "realist", "realizza": "realizz", "realizzando": "realizz", "realizzano": "realizz", "realizzare": "realizz", "realizzarli": "realizz", "realizzarsi": "realizz", "realizzassero": "realizz", "realizzata": "realizz", "realizzate": "realizz", "realizzati": "realizz", "realizzativa": "realizz", "realizzato": "realizz", "realizzazione": "realizz", "realizzerà": "realizz", "realizzi": "realizz", "realizzino": "realizzin", "realmente": "realment", "realtà": "realt", "reati": "reat", "reato": "reat", "reattore": "reattor", "reattori": "reattor", "reazionaria": "reazionar", "reazione": "reazion", "reazioni": "reazion", "rebbekka": "rebbekk", "rebecchi": "rebecc", "rebecchini": "rebecchin", "rebekka": "rebekk", "rebellin": "rebellin", "rec": "rec", "reca": "rec", "recandosi": "rec", "recano": "rec", "recante": "recant", "recapitare": "recapit", "recapitarla": "recapit", "recapito": "recap", "recarsi": "rec", "recasse": "rec", "recati": "rec", "recato": "rec", "recava": "rec", "recchia": "recc", "recente": "recent", "recentemente": "recent", "recenti": "recent", "recentissime": "recentissim", "recentissimo": "recentissim", "recepisce": "recep", "recessione": "recession", "recessiva": "recess", "recherà": "rech", "recidiva": "recid", "recinto": "recint", "recinzione": "recinzion", "recinzioni": "recinzion", "reciproca": "reciproc", "reciprocamente": "reciproc", "reciproche": "reciproc", "reciproci": "reciproc", "recita": "rec", "recitar": "recit", "recitarle": "recit", "recitarono": "recit", "recitata": "recit", "recitato": "recit", "recitava": "recit", "recitò": "recit", "reclamare": "reclam", "reclamo": "reclam", "reclusione": "reclusion", "reclutamento": "reclut", "reconditi": "recond", "reconocer": "reconocer", "record": "record", "recordati": "record", "recordo": "record", "recrimina": "recrimin", "recriminare": "recrimin", "recriminazioni": "recrimin", "recrimini": "recrimin", "recrudescenzà": "recrudescenz", "recupera": "recuper", "recuperando": "recuper", "recuperare": "recuper", "recuperata": "recuper", "recuperate": "recuper", "recuperato": "recuper", "recupereranno": "recuper", "recupero": "recuper", "red": "red", "redatti": "redatt", "redattore": "redattor", "redattori": "redattor", "redazionali": "redazional", "redazione": "redazion", "redd": "redd", "redditi": "redd", "redditività": "reddit", "redditizio": "redditiz", "reddito": "redd", "redditosette": "redditosett", "redenzione": "redenzion", "redesa": "redes", "redigono": "redig", "redimibile": "redim", "redini": "redin", "redistribuzione": "redistribu", "reduce": "reduc", "reduci": "reduc", "referatis": "referatis", "referendum": "referendum", "referenti": "referent", "refezione": "refezion", "reforma": "reform", "refrigerio": "refriger", "refrontolo": "refrontol", "regala": "regal", "regalando": "regal", "regalar": "regal", "regalare": "regal", "regalata": "regal", "regalato": "regal", "regali": "regal", "regalia": "regal", "regalo": "regal", "regge": "regg", "reggendolo": "regg", "regger": "regger", "reggere": "regg", "reggersi": "regg", "reggesse": "reggess", "reggeva": "regg", "reggiana": "reggian", "reggiano": "regg", "reggimenti": "regg", "reggimento": "regg", "reggina": "reggin", "reggio": "regg", "regia": "reg", "regii": "reg", "regime": "regim", "regimi": "regim", "regina": "regin", "reginald": "reginald", "regine": "regin", "reginetta": "reginett", "regio": "reg", "regional": "regional", "regionale": "regional", "regionali": "regional", "regionalista": "regional", "regione": "region", "regioni": "region", "regisseure": "regisseur", "regissuere": "regissu", "regista": "regist", "registi": "regist", "registra": "registr", "registrano": "registr", "registrare": "registr", "registrata": "registr", "registrate": "registr", "registrati": "registr", "registratisi": "registratis", "registrato": "registr", "registrava": "registr", "registrazione": "registr", "registrazioni": "registr", "registri": "registr", "registro": "registr", "regna": "regn", "regnante": "regnant", "regnar": "regn", "regnare": "regn", "regnasse": "regn", "regnato": "regn", "regnava": "regn", "regni": "regn", "regno": "regn", "regola": "regol", "regolamentare": "regolament", "regolamentazione": "regolament", "regolamenti": "regol", "regolamento": "regol", "regolano": "regol", "regolare": "regol", "regolari": "regolar", "regolarità": "regolar", "regolarmente": "regolar", "regolarsi": "regol", "regolata": "regol", "regolati": "regol", "regolato": "regol", "regolatore": "regol", "regolatori": "regol", "regolava": "regol", "regolavan": "regolavan", "regolavano": "regol", "regolazione": "regol", "regole": "regol", "regresso": "regress", "regulation": "regulation", "rei": "rei", "reigoni": "reigon", "reimbarco": "reimbarc", "reimpiego": "reimpieg", "reincarnazione": "reincarn", "reinelt": "reinelt", "reinterpeta": "reinterpet", "reinterpretata": "reinterpret", "reinterpretato": "reinterpret", "reintrodurre": "reintrodurr", "reitera": "reiter", "reiterato": "reiter", "reiterazione": "reiter", "reitz": "reitz", "rejna": "rejn", "relatione": "relation", "relations": "relations", "relativa": "relat", "relativamente": "relat", "relative": "relat", "relativi": "relat", "relativismo": "relativ", "relativo": "relat", "relato": "rel", "relatore": "relator", "relatori": "relator", "relazione": "relazion", "relazioni": "relazion", "relegati": "releg", "relegatione": "relegation", "religione": "religion", "religioni": "religion", "religiosa": "relig", "religiose": "relig", "religiosi": "relig", "religioso": "relig", "reliquia": "reliqu", "reliquie": "reliqu", "relitti": "relitt", "relizane": "relizan", "rem": "rem", "remando": "rem", "remi": "rem", "remigio": "remig", "remissione": "remission", "remo": "rem", "remora": "remor", "remote": "remot", "renali": "renal", "renano": "ren", "renato": "ren", "renault": "renault", "renda": "rend", "rende": "rend", "rendé": "rend", "rendendo": "rend", "rendendogli": "rend", "rendendoli": "rend", "render": "render", "renderà": "rend", "renderai": "rend", "renderci": "rend", "rendere": "rend", "renderebbe": "rend", "rendergli": "rend", "renderla": "rend", "renderle": "rend", "renderli": "rend", "renderlo": "rend", "rendermi": "rend", "renderò": "rend", "rendersi": "rend", "rendervi": "rend", "rendetelo": "rendetel", "rendette": "rendett", "rendeva": "rend", "rendevan": "rendevan", "rendevano": "rend", "rendi": "rend", "rendiam": "rendiam", "rendiamo": "rend", "rendicredit": "rendicredit", "rendifit": "rendifit", "rendifondo": "rendifond", "rendimenti": "rend", "rendimento": "rend", "rendiras": "rendiras", "rendita": "rend", "rendite": "rend", "rendono": "rend", "rene": "ren", "renè": "ren", "renitenti": "renitent", "rennes": "rennes", "reno": "ren", "renzo": "renz", "reo": "reo", "reogresso": "reogress", "rep": "rep", "reparti": "rep", "reparto": "repart", "repentaglio": "repentagl", "repentina": "repentin", "repentine": "repentin", "repentino": "repentin", "reperire": "reper", "repertum": "repertum", "replica": "replic", "replicando": "replic", "replicar": "replic", "replicare": "replic", "replicatamente": "replicat", "replicato": "replic", "replicava": "replic", "replicò": "replic", "reponsabili": "repons", "reporter": "reporter", "repressione": "repression", "repressiva": "repress", "repressivi": "repress", "represso": "repress", "reprimere": "reprim", "repubblica": "repubbl", "repubblicà": "repubblic", "repubblicana": "repubblican", "repubblicani": "repubblican", "repubblicano": "repubblic", "repubbliche": "repubbl", "reputazione": "reput", "requie": "requ", "requisiti": "requis", "requisitoria": "requisitor", "rerum": "rerum", "resa": "res", "rese": "res", "resegone": "resegon", "resero": "reser", "reserve": "reserv", "reservè": "reserv", "reshetnikova": "reshetnikov", "resi": "res", "residente": "resident", "residenti": "resident", "residenziale": "residenzial", "residui": "residu", "residuo": "residu", "resistenti": "resistent", "resistenza": "resistent", "resistenze": "resistent", "resistere": "resist", "resistergli": "resist", "resistette": "resistett", "resistevano": "resist", "resisti": "resist", "resistire": "resist", "resistito": "resist", "reso": "res", "resoconto": "resocont", "resogli": "resogl", "resosi": "resos", "respinge": "resping", "respingendoli": "resping", "respinger": "respinger", "respingere": "resping", "respinsero": "respinser", "respinta": "respint", "respinti": "respint", "respinto": "respint", "respira": "respir", "respirare": "respir", "respirarono": "respir", "respirata": "respir", "respiratoria": "respirator", "respirava": "respir", "respirazione": "respir", "respiri": "respir", "respiro": "respir", "respirò": "resp", "respironi": "respiron", "responsabile": "respons", "responsabili": "respons", "responsabilità": "respons", "responsabilmente": "responsabil", "responsbili": "responsbil", "responso": "respons", "resposabili": "respos", "ressa": "ress", "resta": "rest", "restando": "rest", "restandogli": "rest", "restano": "rest", "restante": "restant", "restanti": "restant", "restar": "rest", "restare": "rest", "restaron": "restaron", "restarsene": "rest", "restassero": "rest", "restata": "rest", "restate": "rest", "restati": "rest", "restato": "rest", "restaurare": "restaur", "restaurato": "restaur", "restauro": "restaur", "restava": "rest", "restavano": "rest", "resterà": "rest", "resterebbe": "rest", "resterebbero": "rest", "resterei": "rest", "resteremo": "rest", "resti": "rest", "restiam": "restiam", "resticciolo": "resticciol", "restino": "restin", "restìo": "restì", "restituendola": "restitu", "restituì": "restitu", "restituir": "restitu", "restituire": "restitu", "restituirglielo": "restitu", "restituita": "restitu", "restituite": "restitu", "restituiti": "restitu", "restituito": "restitu", "restitutione": "restitution", "restituzione": "restitu", "resto": "rest", "restò": "rest", "restrittivo": "restritt", "restrizioni": "restrizion", "restyling": "restyling", "resurrezione": "resurrezion", "resuscitare": "resuscit", "resuscitati": "resuscit", "resuscitato": "resuscit", "retagna": "retagn", "retail": "retail", "retata": "ret", "retate": "ret", "rete": "ret", "retè": "ret", "retequattro": "retequattr", "reti": "ret", "reticella": "reticell", "reticelle": "reticell", "reticente": "reticent", "reticentè": "reticent", "reticenze": "reticent", "reto": "ret", "retorica": "retor", "retributivi": "retribut", "retributivo": "retribut", "retribuzione": "retribu", "retribuzioni": "retribu", "retrocessione": "retrocession", "retroguardia": "retroguard", "retroscena": "retroscen", "retrospettiva": "retrospett", "retrostante": "retrost", "retta": "rett", "rettifica": "rettif", "rettificare": "rettific", "rettificazioni": "rettif", "retto": "rett", "rettori": "rettor", "rettorica": "rettor", "reuter": "reuter", "reverenda": "rever", "reverendissima": "reverendissim", "reverendo": "rever", "reversibilità": "reversibil", "revisione": "revision", "revisionismo": "revision", "revisone": "revison", "revoca": "revoc", "revocabile": "revoc", "revocare": "revoc", "revocati": "revoc", "revocato": "revoc", "rey": "rey", "reynolds": "reynolds", "rezza": "rezz", "rf": "rf", "rg": "rg", "rh": "rh", "rheinisch": "rheinisc", "rhetel": "rhetel", "rhodes": "rhodes", "riabbassando": "riabbass", "riabbassandoli": "riabbass", "riabbracciar": "riabbracc", "riabbracciare": "riabbracc", "riabilitazione": "riabilit", "riaccendano": "riaccend", "riaccendersi": "riaccend", "riaccentrare": "riaccentr", "riaccesa": "riacces", "riacceso": "riacces", "riaccostati": "riaccost", "riaccostò": "riaccost", "riacquistar": "riacquist", "riacquistare": "riacquist", "riacquistate": "riacquist", "riafferma": "riafferm", "riaffermato": "riafferm", "riaffermazione": "riafferm", "riafferrare": "riafferr", "riaffiora": "riaffior", "riagganciare": "riagganc", "riaggregare": "riaggreg", "riallineamento": "riallin", "rialto": "rialt", "rialzare": "rialz", "rialzata": "rialz", "rialzi": "rialz", "rialzo": "rialz", "riandare": "riand", "riandava": "riand", "rianimata": "rianim", "rianimate": "rianim", "rianimati": "rianim", "rianimato": "rianim", "rianimazione": "rianim", "riaperta": "riapert", "riaperti": "riap", "riaperto": "riapert", "riapertura": "riapertur", "riappropiarsi": "riapprop", "riappropriarsi": "riappropr", "riappuntella": "riappuntell", "riappuntellati": "riappuntell", "riapra": "riapr", "riapriranno": "riapr", "riassetto": "riassett", "riassicurate": "riassicur", "riassicurazioni": "riassicur", "riattaccò": "riattacc", "riattarla": "riatt", "riattizzando": "riattizz", "riavendoli": "riav", "riaver": "riaver", "riaversi": "riav", "riaveva": "riav", "riavute": "riav", "riavuto": "riav", "riavutosi": "riavut", "riavviare": "riavv", "riavvicina": "riavvicin", "riavvicinamento": "riavvicin", "ribadendo": "ribad", "ribadisce": "ribad", "ribadisco": "ribad", "ribadiscono": "ribad", "ribadita": "ribad", "ribadito": "ribad", "ribadiva": "ribad", "ribalda": "ribald", "ribalderia": "ribalder", "ribalderie": "ribalder", "ribaldi": "ribald", "ribaldo": "ribald", "ribalta": "ribalt", "ribaltato": "ribalt", "ribaltone": "ribalton", "ribasso": "ribass", "ribattendo": "ribatt", "ribatter": "ribatter", "ribattere": "ribatt", "ribatterle": "ribatt", "ribattete": "ribatt", "ribattezzato": "ribattezz", "ribattono": "ribatt", "ribattuta": "ribatt", "ribattuto": "ribatt", "ribattutto": "ribattutt", "ribella": "ribell", "ribellata": "ribell", "ribelle": "ribell", "ribelli": "ribell", "ribellione": "ribellion", "ribellioni": "ribellion", "ribenedetti": "ribenedett", "ribolle": "riboll", "ribollimento": "riboll", "ribollivano": "riboll", "ribrezzo": "ribrezz", "ributtanti": "ributt", "rica": "ric", "ricadde": "ricadd", "ricade": "ricad", "ricadere": "ricad", "ricadeva": "ricad", "ricadevano": "ricad", "ricadrebbe": "ricadrebb", "ricaduto": "ricad", "ricalcandone": "ricalc", "ricalcare": "ricalc", "ricalcitrante": "ricalcitr", "ricalcitrare": "ricalcitr", "ricalcitrato": "ricalcitr", "ricambi": "ricamb", "ricambio": "ricamb", "ricami": "ricam", "ricamo": "ricam", "ricandidato": "ricandid", "ricantar": "ricant", "ricapitalizzare": "ricapitalizz", "ricapitalizzazione": "ricapitalizz", "ricapitare": "ricapit", "ricapito": "ricap", "ricapitolò": "ricapitol", "ricarvarla": "ricarv", "ricattarsi": "ricatt", "ricatto": "ricatt", "ricava": "ric", "ricavar": "ricav", "ricavare": "ricav", "ricavato": "ricav", "ricavava": "ricav", "ricavi": "ric", "ricca": "ricc", "riccardo": "riccard", "ricche": "ricc", "ricchezza": "ricchezz", "ricchezze": "ricchezz", "ricchi": "ricc", "ricchissimo": "ricchissim", "ricci": "ricc", "ricciardi": "ricciard", "riccio": "ricc", "riccione": "riccion", "ricco": "ricc", "ricentralizzazione": "ricentralizz", "ricerca": "ricerc", "ricercando": "ricerc", "ricercare": "ricerc", "ricercata": "ricerc", "ricercate": "ricerc", "ricercati": "ricerc", "ricercato": "ricerc", "ricercatori": "ricerc", "ricerche": "ricerc", "ricercò": "ricerc", "ricettato": "ricett", "ricettatore": "ricett", "ricettazione": "ricett", "ricette": "ricett", "ricevano": "ric", "riceve": "ricev", "ricevé": "ricev", "ricevemmo": "ricev", "ricevendo": "ricev", "ricevendone": "ricev", "ricever": "ricever", "riceverà": "ricev", "riceveranno": "ricev", "ricevere": "ricev", "riceverla": "ricev", "riceverle": "ricev", "riceverli": "ricev", "riceverlo": "ricev", "ricevette": "ricevett", "ricevettero": "ricevetter", "riceveva": "ricev", "ricevevano": "ricev", "ricevimenti": "ricev", "ricevimento": "ricev", "ricevono": "ricev", "ricevuta": "ricev", "ricevute": "ricev", "ricevuti": "ricev", "ricevuto": "ricev", "ricezione": "ricezion", "richard": "richard", "riche": "rich", "richelieu": "richelieu", "richeter": "richeter", "richiama": "richiam", "richiamando": "richiam", "richiamandosi": "richiam", "richiamano": "richiam", "richiamare": "richiam", "richiamarmi": "richiam", "richiamarsi": "richiam", "richiamata": "richiam", "richiamati": "richiam", "richiamato": "richiam", "richiamatolo": "richiamatol", "richiamava": "richiam", "richiamavano": "richiam", "richiamerebbe": "richiam", "richiami": "richiam", "richiamiamo": "richiam", "richiamo": "rich", "richiamò": "richiam", "richiede": "richied", "richiedendo": "richied", "richieder": "richieder", "richiedere": "richied", "richiedergli": "richied", "richiederlo": "richied", "richiedesse": "richiedess", "richiedessero": "richied", "richiedeva": "richied", "richiedevano": "richied", "richiedon": "richiedon", "richiedono": "richied", "richiese": "richies", "richiesta": "richiest", "richieste": "richiest", "richiesti": "richiest", "richiesto": "richiest", "richiudere": "richiud", "richiudeva": "richiud", "richiusa": "richius", "richiuse": "richius", "richter": "richter", "riciclaggio": "riciclagg", "ricilaggio": "ricilagg", "riciliù": "riciliù", "rick": "rick", "ricognitrice": "ricognitr", "ricognizione": "ricognizion", "ricognizioni": "ricognizion", "ricognizone": "ricognizon", "ricollegare": "ricolleg", "ricolmò": "ricolm", "ricomincerà": "ricominc", "ricomincerebbe": "ricominc", "ricomincia": "ricominc", "ricominciando": "ricominc", "ricominciar": "ricominc", "ricominciarono": "ricominc", "ricominciato": "ricominc", "ricominciava": "ricominc", "ricominciò": "ricominc", "ricomparendo": "ricompar", "ricomparire": "ricompar", "ricomparirvi": "ricompar", "ricompariva": "ricompar", "ricomparve": "ricomparv", "ricomparvero": "ricomparver", "ricompensa": "ricompens", "ricompensare": "ricompens", "ricompenserà": "ricompens", "ricompensi": "ricompens", "ricompone": "ricompon", "ricomponeva": "ricompon", "ricomporre": "ricomporr", "ricomposizione": "ricomposizion", "ricomposte": "ricompost", "ricomposto": "ricompost", "ricompriamo": "ricompr", "riconcilia": "riconcil", "riconciliar": "riconcil", "riconciliazione": "riconcil", "ricondotta": "ricondott", "riconducendo": "riconduc", "ricondur": "ricondur", "ricondurre": "ricondurr", "riconfermato": "riconferm", "riconfortati": "riconfort", "riconobbe": "riconobb", "riconosca": "riconosc", "riconosce": "riconosc", "riconoscendo": "riconosc", "riconoscendosi": "riconosc", "riconoscente": "riconoscent", "riconoscenza": "riconoscent", "riconoscere": "riconosc", "riconoscerla": "riconosc", "riconoscerli": "riconosc", "riconoscerne": "riconosc", "riconoscersi": "riconosc", "riconoscesse": "riconoscess", "riconoscessero": "riconosc", "riconosceva": "riconosc", "riconosci": "riconosc", "riconosciate": "riconosc", "riconoscimento": "riconosc", "riconosciuta": "riconosc", "riconosciute": "riconosc", "riconosciuti": "riconosc", "riconosciuto": "riconosc", "riconosco": "riconosc", "riconoscono": "riconosc", "riconquista": "riconqu", "riconquistato": "riconquist", "riconscibili": "riconsc", "riconsegnarla": "riconsegn", "riconversione": "riconversion", "riconvocare": "riconvoc", "ricoperta": "ricopert", "ricoperte": "ricopert", "ricoperti": "ricop", "ricoperto": "ricopert", "ricopre": "ricopr", "ricoprendo": "ricopr", "ricoprire": "ricopr", "ricopriva": "ricopr", "ricopro": "ricopr", "ricoprono": "ricopr", "ricorda": "ricord", "ricordalo": "ricordal", "ricordan": "ricordan", "ricordando": "ricord", "ricordano": "ricord", "ricordare": "ricord", "ricordarlo": "ricord", "ricordarsi": "ricord", "ricordata": "ricord", "ricordate": "ricord", "ricordatevelo": "ricordatevel", "ricordatevi": "ricordat", "ricordati": "ricord", "ricordato": "ricord", "ricordava": "ricord", "ricordavan": "ricordavan", "ricordavano": "ricord", "ricorderà": "ricord", "ricorderanno": "ricord", "ricorderesti": "ricord", "ricorderete": "ricord", "ricordi": "ricord", "ricordiamo": "ricord", "ricordino": "ricordin", "ricordo": "ricord", "ricordò": "ricord", "ricorra": "ricorr", "ricorre": "ricorr", "ricorreggere": "ricorregg", "ricorrendo": "ricorr", "ricorrenti": "ricorrent", "ricorrenza": "ricorrent", "ricorrer": "ricorrer", "ricorrerà": "ricorr", "ricorrere": "ricorr", "ricorreva": "ricorr", "ricorrevano": "ricorr", "ricorrono": "ricorr", "ricorse": "ricors", "ricorsi": "ricors", "ricorso": "ricors", "ricostituire": "ricostitu", "ricostituzione": "ricostitu", "ricostruire": "ricostru", "ricostruirla": "ricostru", "ricostruzione": "ricostru", "ricoverarci": "ricover", "ricoverare": "ricover", "ricoverarlo": "ricover", "ricoverarono": "ricover", "ricoverarsi": "ricover", "ricoverarvi": "ricover", "ricoverata": "ricover", "ricoverate": "ricover", "ricoverati": "ricover", "ricoverato": "ricover", "ricovero": "ricover", "ricrea": "ricre", "ricreano": "ricr", "ricreare": "ricr", "ricrearsi": "ricr", "ricucire": "ricuc", "ricucito": "ricuc", "ricuperare": "ricuper", "ricuperata": "ricuper", "ricupero": "ricuper", "ricurvo": "ricurv", "ricusando": "ricus", "ricusano": "ricus", "ricusasse": "ricus", "ricusava": "ricus", "ricusino": "ricusin", "ricusò": "ricus", "ridar": "rid", "ridare": "rid", "ridato": "rid", "ride": "rid", "ridefinirne": "ridefin", "ridefinita": "ridefin", "ridefinizione": "ridefinizion", "ridendo": "rid", "ridente": "rident", "ridenti": "rident", "rider": "rider", "ridere": "rid", "riderei": "rid", "ridersene": "rid", "ridersi": "rid", "ridesse": "ridess", "ridesta": "ridest", "ridestato": "ridest", "ridestavano": "ridest", "rideva": "rid", "ridevano": "rid", "ridge": "ridg", "ridia": "rid", "ridice": "ridic", "ridicola": "ridicol", "ridicoli": "ridicol", "ridicolizzare": "ridicolizz", "ridicolo": "ridicol", "ridimensionamenti": "ridimension", "ridimensionamento": "ridimension", "ridimensionare": "ridimension", "ridimensionati": "ridimension", "ridimensionato": "ridimension", "ridir": "rid", "ridire": "rid", "ridiscuta": "ridisc", "ridisegnare": "ridisegn", "ridisegnati": "ridisegn", "ridispiegamentò": "ridispiegament", "ridiventare": "ridivent", "rido": "rid", "ridonasse": "ridon", "ridono": "rid", "ridosso": "ridoss", "ridotta": "ridott", "ridotte": "ridott", "ridotti": "ridott", "ridotto": "ridott", "riduce": "riduc", "riducendo": "riduc", "riducendola": "riduc", "riducono": "riduc", "ridurci": "ridurc", "ridurgli": "ridurgl", "ridurli": "ridurl", "ridurlo": "ridurl", "ridurre": "ridurr", "ridurrebbe": "ridurrebb", "ridusse": "riduss", "riduzione": "riduzion", "riduzioni": "riduzion", "riebbe": "riebb", "rieccitando": "rieccit", "riecheggia": "riechegg", "riedizione": "riedizion", "rieducativa": "rieduc", "riefensthal": "riefensthal", "rielaborati": "rielabor", "rieletti": "rielett", "riello": "riell", "riempì": "riemp", "riempie": "riemp", "riempiendo": "riemp", "riempiono": "riemp", "riempirli": "riemp", "riempiron": "riempiron", "riempirsi": "riemp", "riempitane": "riempitan", "riempito": "riemp", "riempivano": "riemp", "rientra": "rientr", "rientrano": "rientr", "rientrante": "rientrant", "rientrare": "rientr", "rientrata": "rientr", "rientrato": "rientr", "rientrerà": "rientr", "rientreranno": "rientr", "rientrerebbero": "rientr", "rientri": "rientr", "rientrino": "rientrin", "rientro": "rientr", "rientrò": "rientr", "riequilibrando": "riequilibr", "riequilibrio": "riequilibr", "riesame": "riesam", "riesami": "riesam", "riesaminata": "riesamin", "riesca": "riesc", "riescan": "riescan", "riesce": "riesc", "riesci": "riesc", "riesco": "riesc", "riesumazione": "riesum", "rieter": "rieter", "rieti": "riet", "rietrano": "rietr", "rievocare": "rievoc", "rievocato": "rievoc", "rievocazione": "rievoc", "rif": "rif", "rifà": "rif", "rifacendo": "rifac", "rifar": "rif", "rifarà": "rifar", "rifare": "rif", "rifarle": "rif", "rifarne": "rif", "rifarsi": "rif", "rifatti": "rifatt", "rifatto": "rifatt", "riferendo": "rifer", "riferendosi": "rifer", "riferì": "rifer", "riferimenti": "rifer", "riferimento": "rifer", "riferir": "rifer", "riferire": "rifer", "riferiremo": "rifer", "riferirli": "rifer", "riferirlo": "rifer", "riferirò": "rifer", "riferisca": "rifer", "riferisce": "rifer", "riferisco": "rifer", "riferiscono": "rifer", "riferita": "rifer", "riferite": "rifer", "riferiti": "rifer", "riferito": "rifer", "riferiva": "rifer", "rifiatare": "rifiat", "rifinanziata": "rifinanz", "rifinanziato": "rifinanz", "rifinito": "rifin", "rifiuta": "rif", "rifiutando": "rifiut", "rifiutano": "rifiut", "rifiutar": "rifiut", "rifiutare": "rifiut", "rifiutaste": "rifiutast", "rifiutate": "rifiut", "rifiutati": "rifiut", "rifiutato": "rifiut", "rifiutava": "rifiut", "rifiuti": "rif", "rifiutiamo": "rifiut", "rifiuto": "rif", "rifiutò": "rifiut", "riflessi": "rifless", "riflessione": "riflession", "riflessioni": "riflession", "riflessività": "rifless", "riflesso": "rifless", "riflette": "riflett", "riflettendo": "riflett", "riflettere": "riflett", "rifletterò": "riflett", "riflettersi": "riflett", "rifletteva": "riflett", "riflettono": "riflett", "riflettori": "riflettor", "rifondazione": "rifond", "riforma": "riform", "riformare": "riform", "riformata": "riform", "riformato": "riform", "riformatore": "riform", "riformatori": "riform", "riformatrici": "riform", "riforme": "riform", "riformismo": "riform", "rifornire": "riforn", "rifuggì": "rifugg", "rifugiare": "rifug", "rifugiarsi": "rifug", "rifugiassero": "rifug", "rifugiata": "rifug", "rifugiati": "rifug", "rifugiativisi": "rifugiativis", "rifugiato": "rifug", "rifugiava": "rifug", "rifugiavano": "rifug", "rifugino": "rifugin", "rifugio": "rifug", "riga": "rig", "rigagnoli": "rigagnol", "rigagnolo": "rigagnol", "rigar": "rig", "rigaurda": "rigaurd", "rigettando": "rigett", "rigetto": "rigett", "rigettò": "rigett", "righe": "righ", "rights": "rights", "rigida": "rigid", "rigidamente": "rigid", "rigide": "rigid", "rigidi": "rigid", "rigidità": "rigid", "rigido": "rigid", "rigira": "rigir", "rigirato": "rigir", "rigiri": "rigir", "rigirìo": "rigirì", "rigogliosa": "rigogl", "rigogliose": "rigogl", "rigoglioso": "rigogl", "rigor": "rigor", "rigore": "rigor", "rigorosa": "rigor", "rigorosamente": "rigor", "rigorosi": "rigor", "rigoroso": "rigor", "rigovernare": "rigovern", "rigridando": "rigrid", "riguadagnar": "riguadagn", "riguarda": "riguard", "riguardano": "riguard", "riguardante": "riguard", "riguardanti": "riguard", "riguardar": "riguard", "riguardarsi": "riguard", "riguardasse": "riguard", "riguardata": "riguard", "riguardato": "riguard", "riguardava": "riguard", "riguardavan": "riguardavan", "riguardavano": "riguard", "riguardavate": "riguard", "riguarderà": "riguard", "riguarderanno": "riguard", "riguardi": "riguard", "riguardo": "riguard", "riker": "riker", "rilanci": "rilanc", "rilancia": "rilanc", "rilanciano": "rilanc", "rilanciare": "rilanc", "rilanciata": "rilanc", "rilancio": "rilanc", "rilasciamento": "rilasc", "rilasciando": "rilasc", "rilasciare": "rilasc", "rilasciarlo": "rilasc", "rilasciaron": "rilasciaron", "rilasciarvi": "rilasc", "rilasciasse": "rilasc", "rilasciata": "rilasc", "rilasciate": "rilasc", "rilasciati": "rilasc", "rilasciato": "rilasc", "rilascio": "rilasc", "rilassato": "rilass", "rilazo": "rilaz", "rileggere": "rilegg", "rilegittimazione": "rilegittim", "rilento": "rilent", "rilesse": "riless", "rileva": "ril", "rilevando": "rilev", "rilevante": "rilev", "rilevanti": "rilev", "rilevar": "rilev", "rilevare": "rilev", "rilevata": "rilev", "rilevate": "ril", "rilevati": "rilev", "rilevato": "rilev", "rilevazione": "rilev", "rilievo": "ril", "rilisciarsi": "rilisc", "rilla": "rill", "riluttanza": "rilutt", "rima": "rim", "riman": "riman", "rimandando": "rimand", "rimandarlo": "rimand", "rimandato": "rimand", "rimanderebbe": "rimand", "rimane": "riman", "rimaneggiate": "rimanegg", "rimanendo": "riman", "rimanenete": "rimanen", "rimanente": "rimanent", "rimanenti": "rimanent", "rimaner": "rimaner", "rimanere": "riman", "rimanersi": "riman", "rimanervi": "riman", "rimanesse": "rimaness", "rimanessero": "riman", "rimaneva": "riman", "rimanevano": "riman", "rimanga": "rimang", "rimango": "rimang", "rimangon": "rimangon", "rimangono": "rimang", "rimaranno": "rimarann", "rimarca": "rimarc", "rimarchevole": "rimarchevol", "rimarrà": "rimarr", "rimarranno": "rimarrann", "rimarrebbe": "rimarrebb", "rimarrei": "rimarre", "rimase": "rimas", "rimaser": "rimaser", "rimasero": "rimaser", "rimasta": "rimast", "rimaste": "rimast", "rimasti": "rimast", "rimasticava": "rimastic", "rimasto": "rimast", "rimasugli": "rimasugl", "rimasuglio": "rimasugl", "rimbalzata": "rimbalz", "rimbalzello": "rimbalzell", "rimbambito": "rimbamb", "rimbecillivano": "rimbecill", "rimboccatura": "rimboccatur", "rimbomba": "rimbomb", "rimbombando": "rimbomb", "rimbombar": "rimbomb", "rimbombare": "rimbomb", "rimbombo": "rimbomb", "rimborsati": "rimbors", "rimborsi": "rimbors", "rimborso": "rimbors", "rimbuca": "rimbuc", "rimedi": "rimed", "rimediare": "rimed", "rimedii": "rimed", "rimedio": "rimed", "rimembranza": "rimembr", "rimembranze": "rimembr", "rimenare": "rimen", "rimepire": "rimep", "rimescendo": "rimesc", "rimescolandole": "rimescol", "rimescolare": "rimescol", "rimescolarsi": "rimescol", "rimessa": "rimess", "rimessasi": "rimessas", "rimesse": "rimess", "rimessi": "rimess", "rimessiticci": "rimessiticc", "rimesso": "rimess", "rimestar": "rimest", "rimestare": "rimest", "rimestarle": "rimest", "rimesti": "rimest", "rimetta": "rimett", "rimette": "rimett", "rimettendo": "rimett", "rimettendosi": "rimett", "rimetterci": "rimett", "rimettere": "rimett", "rimetterebbe": "rimett", "rimetterle": "rimett", "rimetterlo": "rimett", "rimettermi": "rimett", "rimettersi": "rimett", "rimettervene": "rimett", "rimettesse": "rimettess", "rimettetevi": "rimettet", "rimetteva": "rimett", "rimettiamola": "rimettiamol", "rimettono": "rimett", "rimini": "rimin", "rimischiavano": "rimisc", "rimise": "rimis", "rimmel": "rimmel", "rimodellato": "rimodell", "rimondi": "rimond", "rimontare": "rimont", "rimorchiatori": "rimorc", "rimordendogli": "rimord", "rimorsi": "rimors", "rimorso": "rimors", "rimosse": "rimoss", "rimossi": "rimoss", "rimosso": "rimoss", "rimostranza": "rimostr", "rimostranze": "rimostr", "rimpallato": "rimpall", "rimpatriata": "rimpatr", "rimpatrio": "rimpatr", "rimpetto": "rimpett", "rimpiango": "rimpiang", "rimpiatta": "rimpiatt", "rimpiattando": "rimpiatt", "rimpiattato": "rimpiatt", "rimpiazzato": "rimpiazz", "rimpingua": "rimpingu", "rimprovera": "rimprover", "rimproverare": "rimprover", "rimproverate": "rimprover", "rimproveratemi": "rimproveratem", "rimproverato": "rimprover", "rimproveri": "rimprover", "rimprovero": "rimprover", "rimuovendo": "rimuov", "rimuoverle": "rimuov", "rin": "rin", "rinaldo": "rinald", "rinasce": "rinasc", "rinascente": "rinascent", "rinascenti": "rinascent", "rinascere": "rinasc", "rinascesse": "rinascess", "rinasceva": "rinasc", "rinascimento": "rinasc", "rinascita": "rinasc", "rincamminandosi": "rincammin", "rincamminarono": "rincammin", "rincamminarsi": "rincammin", "rincamminino": "rincamminin", "rincamminò": "rincammin", "rincantucciata": "rincantucc", "rincantucciato": "rincantucc", "rincarare": "rincar", "rincari": "rincar", "rincaro": "rincar", "rinchiusa": "rinchius", "rinchiuse": "rinchius", "rinchiusi": "rinchius", "rinchiuso": "rinchius", "rincivilito": "rincivil", "rincomincia": "rincominc", "rincon": "rincon", "rincoraggita": "rincoragg", "rincorare": "rincor", "rincorato": "rincor", "rincorò": "rincor", "rincorrono": "rincorr", "rincorsa": "rincors", "rincorse": "rincors", "rinfaccia": "rinfacc", "rinfacciamenti": "rinfacc", "rinforzar": "rinforz", "rinforzare": "rinforz", "rinforzate": "rinforz", "rinforzi": "rinforz", "rinforzo": "rinforz", "rinfrancare": "rinfranc", "rinfrancata": "rinfranc", "rinfrancato": "rinfranc", "rinfrescare": "rinfresc", "rinfrescata": "rinfresc", "rinfrescato": "rinfresc", "rinfreschi": "rinfresc", "rinfusa": "rinfus", "rinfuse": "rinfus", "ring": "ring", "ringalluzziti": "ringalluzz", "ringiovanito": "ringiovan", "ringiovinire": "ringiovin", "ringrazi": "ringraz", "ringrazia": "ringraz", "ringraziamenti": "ringraz", "ringraziamento": "ringraz", "ringraziamo": "ringraz", "ringraziando": "ringraz", "ringraziandolo": "ringraz", "ringraziandosi": "ringraz", "ringraziar": "ringraz", "ringraziare": "ringraz", "ringraziarla": "ringraz", "ringraziarlo": "ringraz", "ringraziate": "ringraz", "ringraziato": "ringraz", "ringraziava": "ringraz", "ringrazio": "ringraz", "ringraziò": "ringraz", "rinino": "rinin", "rinnegare": "rinneg", "rinnegato": "rinneg", "rinnova": "rinnov", "rinnovabili": "rinnov", "rinnovamento": "rinnov", "rinnovano": "rinnov", "rinnovare": "rinnov", "rinnovarlo": "rinnov", "rinnovarono": "rinnov", "rinnovarsi": "rinnov", "rinnovata": "rinnov", "rinnovati": "rinnov", "rinnovato": "rinnov", "rinnovava": "rinnov", "rinnovavano": "rinnov", "rinnovo": "rinnov", "rinnovò": "rinnov", "rino": "rin", "rinomanza": "rinom", "rintanarsi": "rintan", "rintanato": "rintan", "rintocchi": "rintocc", "rintoppasse": "rintopp", "rintraccia": "rintracc", "rintracciare": "rintracc", "rintracciato": "rintracc", "rintrona": "rintron", "rintuzzare": "rintuzz", "rinuncia": "rinunc", "rinunciando": "rinunc", "rinunciare": "rinunc", "rinunciato": "rinunc", "rinunciava": "rinunc", "rinunziare": "rinunz", "rinunziato": "rinunz", "rinunzio": "rinunz", "rinvenire": "rinven", "rinvenne": "rinvenn", "rinvenuta": "rinven", "rinvenuto": "rinven", "rinverdiranno": "rinverd", "rinverdire": "rinverd", "rinverdite": "rinverd", "rinviare": "rinv", "rinviata": "rinv", "rinviati": "rinv", "rinviato": "rinv", "rinvigorisce": "rinvigor", "rinvigorita": "rinvigor", "rinvii": "rinv", "rinviliare": "rinvil", "rinvio": "rinv", "rinvoltati": "rinvolt", "rio": "rio", "riofferti": "rioff", "riondino": "riondin", "riordino": "riordin", "riorganizzare": "riorganizz", "riorganizzazione": "riorganizz", "ripa": "rip", "ripaga": "ripag", "ripam": "ripam", "ripamonti": "ripamont", "ripamontii": "ripamont", "ripara": "ripar", "riparabile": "ripar", "riparabili": "ripar", "riparar": "ripar", "riparare": "ripar", "ripararsi": "ripar", "riparati": "ripar", "riparato": "ripar", "riparazione": "ripar", "riparazioni": "ripar", "riparerà": "ripar", "ripari": "ripar", "riparlava": "riparl", "riparo": "ripar", "riparte": "ripart", "ripartendo": "ripart", "ripartimentale": "ripartimental", "ripartirà": "ripart", "ripartire": "ripart", "ripartirono": "ripart", "ripartiti": "ripart", "ripartito": "ripart", "ripartizione": "ripartizion", "ripassando": "ripass", "ripassavano": "ripass", "ripasso": "ripass", "ripassò": "ripass", "ripensa": "ripens", "ripensamento": "ripens", "ripensando": "ripens", "ripensarne": "ripens", "ripensava": "ripens", "ripentimenti": "ripent", "ripercorso": "ripercors", "ripercuotersi": "ripercuot", "ripercussioni": "ripercussion", "riperdere": "riperd", "ripescherebbero": "ripesc", "ripete": "rip", "ripeté": "ripet", "ripetendo": "ripet", "ripeter": "ripeter", "ripetere": "ripet", "ripeteremo": "ripet", "ripetergli": "ripet", "ripeterle": "ripet", "ripeteron": "ripeteron", "ripetersi": "ripet", "ripeteva": "ripet", "ripetevan": "ripetevan", "ripetevano": "ripet", "ripetizione": "ripetizion", "ripeto": "ripet", "ripetono": "ripet", "ripetuta": "ripet", "ripetutamente": "ripetut", "ripetute": "ripet", "ripetuti": "ripet", "ripetuto": "ripet", "ripiano": "rip", "ripiantano": "ripiant", "ripicchia": "ripicc", "ripide": "ripid", "ripidi": "ripid", "ripiegati": "ripieg", "ripiegava": "ripieg", "ripieghi": "ripieg", "ripiego": "ripieg", "ripieni": "ripien", "ripieno": "ripien", "ripigia": "ripig", "ripigliar": "ripigl", "ripigliava": "ripigl", "ripigliò": "ripigl", "ripiombò": "ripiomb", "riponendole": "ripon", "riponeteli": "riponetel", "riponeva": "ripon", "ripongo": "ripong", "riporlo": "riporl", "riporre": "riporr", "riporta": "riport", "riportando": "riport", "riportano": "riport", "riportare": "riport", "riportarli": "riport", "riportarlo": "riport", "riportarono": "riport", "riportata": "riport", "riportate": "riport", "riportati": "riport", "riportato": "riport", "riporterà": "riport", "riportò": "riport", "riposa": "ripos", "riposar": "ripos", "riposare": "ripos", "riposarlo": "ripos", "riposarono": "ripos", "riposarsi": "ripos", "riposarti": "ripos", "riposata": "ripos", "riposate": "ripos", "riposato": "ripos", "ripose": "ripos", "riposo": "ripos", "riposta": "ripost", "riposte": "ripost", "riposto": "ripost", "ripregar": "ripreg", "riprenda": "ripr", "riprende": "ripr", "riprendendo": "riprend", "riprendendola": "riprend", "riprender": "riprender", "riprenderà": "riprend", "riprenderanno": "riprend", "riprendere": "riprend", "riprenderle": "riprend", "riprenderli": "riprend", "riprenderlo": "riprend", "riprendersi": "riprend", "riprendervi": "riprend", "riprendeva": "riprend", "riprendiamo": "riprend", "riprendono": "riprend", "ripresa": "ripres", "riprese": "ripres", "ripresentarsi": "ripresent", "ripresero": "ripreser", "ripresi": "ripres", "ripreso": "ripres", "riprincipiare": "riprincip", "ripristinare": "ripristin", "ripristinate": "ripristin", "ripristinato": "ripristin", "riprodotto": "riprodott", "riprodurla": "riprodurl", "ripropone": "ripropon", "ripropongo": "ripropong", "riproposta": "ripropost", "riproposto": "ripropost", "riprovarci": "riprov", "ripubblicare": "ripubblic", "ripubblicate": "ripubblic", "ripugnanza": "ripugn", "ripugnanze": "ripugn", "ripulire": "ripul", "ripulita": "ripul", "ripulse": "ripuls", "riputate": "riput", "riputati": "riput", "riputatissime": "riputatissim", "riputato": "riput", "riputazion": "riputazion", "riputazione": "riput", "riputazioni": "riput", "riqualificazione": "riqualif", "rirnprovero": "rirnprover", "ris": "ris", "risa": "ris", "risale": "risal", "risalgono": "risalg", "risalire": "risal", "risalite": "risal", "risalito": "risal", "risaliva": "risal", "risaltando": "risalt", "risaltare": "risalt", "risalto": "risalt", "risanamento": "risan", "risanare": "risan", "risaper": "risaper", "risapere": "risap", "risaputa": "risap", "risaputo": "risap", "risarcimento": "risarc", "risarcire": "risarc", "risarcirlo": "risarc", "risate": "ris", "riscaldamento": "riscald", "riscaldare": "riscald", "riscaldarsi": "riscald", "riscaldata": "riscald", "riscaldati": "riscald", "riscaldato": "riscald", "riscatta": "riscatt", "riscattati": "riscatt", "riscattavano": "riscatt", "riscatto": "riscatt", "rischi": "risc", "rischia": "risc", "rischiano": "risc", "rischiarato": "rischiar", "rischiare": "risc", "rischiato": "risc", "rischierebbero": "risc", "rischio": "risc", "rischiosa": "rischios", "rischiose": "rischios", "rischiosità": "rischios", "rischioso": "rischios", "riscontra": "riscontr", "riscontrandole": "riscontr", "riscontrandosi": "riscontr", "riscontrano": "riscontr", "riscontrata": "riscontr", "riscontrati": "riscontr", "riscontrato": "riscontr", "riscontri": "riscontr", "riscontro": "riscontr", "riscoprire": "riscopr", "riscossa": "riscoss", "riscosse": "riscoss", "riscosso": "riscoss", "riscossone": "riscosson", "riscotendosi": "riscot", "riscoter": "riscoter", "riscotere": "riscot", "riscoteva": "riscot", "riscotono": "riscot", "riscrivere": "riscriv", "riscuotere": "riscuot", "riscuotono": "riscuot", "risente": "risent", "risentì": "risent", "risentimento": "risent", "risentire": "risent", "risentirsi": "risent", "risentita": "risent", "risentite": "risent", "risentiti": "risent", "risentito": "risent", "riseppe": "risepp", "riseppero": "risepper", "riserbata": "riserb", "riserbo": "riserb", "riserva": "riserv", "riservassero": "riserv", "riservata": "riserv", "riservate": "riserv", "riservati": "riserv", "riservato": "riserv", "riserve": "riserv", "riservisti": "riserv", "risiamo": "ris", "risica": "risic", "risicar": "risic", "risicare": "risic", "risiedeva": "risied", "risk": "risk", "riso": "ris", "risolta": "risolt", "risolte": "risolt", "risolto": "risolt", "risoluta": "risol", "risolutamente": "risolut", "risolute": "risol", "risolutezza": "risolutezz", "risoluti": "risol", "risolutive": "risolut", "risolutivo": "risolut", "risoluto": "risol", "risoluzione": "risolu", "risoluzioni": "risolu", "risolva": "risolv", "risolve": "risolv", "risolvendo": "risolv", "risolver": "risolver", "risolverà": "risolv", "risolvere": "risolv", "risolversi": "risolv", "risolvesse": "risolvess", "risolvete": "risolv", "risolvette": "risolvett", "risolvettero": "risolvetter", "risolveva": "risolv", "risolvimento": "risolv", "risolvon": "risolvon", "risonanti": "rison", "risonare": "rison", "risonava": "rison", "risone": "rison", "risonò": "rison", "risorgimento": "risorg", "risorsa": "risors", "risorse": "risors", "risorsero": "risorser", "risospirato": "risospir", "risp": "risp", "rispamio": "rispam", "risparmi": "risp", "risparmiando": "risparm", "risparmiare": "risparm", "risparmiarselo": "risparmiarsel", "risparmiati": "risparm", "risparmiato": "risparm", "risparmiatori": "risparm", "risparmiava": "risparm", "risparmio": "risparm", "risparmiò": "risparm", "rispaventarsi": "rispavent", "rispecchia": "rispecc", "rispetta": "rispett", "rispettabile": "rispett", "rispettabili": "rispett", "rispettabilità": "rispett", "rispettando": "rispett", "rispettarci": "rispett", "rispettare": "rispett", "rispettata": "rispett", "rispettate": "rispett", "rispettati": "rispett", "rispettato": "rispett", "rispetti": "rispett", "rispettiamo": "rispett", "rispettivamente": "rispett", "rispettive": "rispett", "rispettivi": "rispett", "rispetto": "rispett", "rispettosa": "rispett", "rispettosamente": "rispett", "rispettose": "rispett", "rispettoso": "rispett", "rispinge": "risping", "rispingendo": "risping", "rispingendola": "risping", "rispingerla": "risping", "rispingerne": "risping", "rispinse": "rispins", "rispinte": "rispint", "risplenda": "rispl", "rispoli": "rispol", "rispolverano": "rispolver", "rispolverare": "rispolver", "risponda": "rispond", "risponde": "rispond", "rispondendo": "rispond", "rispondenti": "rispondent", "risponder": "risponder", "rispondere": "rispond", "risponderebbe": "rispond", "risponderebbero": "rispond", "risponderete": "rispond", "rispondergli": "rispond", "risponderne": "rispond", "rispondesse": "rispondess", "rispondete": "rispond", "rispondeva": "rispond", "rispondevan": "rispondevan", "rispondevano": "rispond", "rispondi": "rispond", "risposarsi": "rispos", "rispose": "rispos", "risposer": "risposer", "risposero": "risposer", "risposi": "rispos", "risposta": "rispost", "risposte": "rispost", "risposto": "rispost", "rispostogli": "rispostogl", "rispostole": "rispostol", "rissa": "riss", "risse": "riss", "rissoso": "rissos", "ristabilendo": "ristabil", "ristabilire": "ristabil", "ristabilisca": "ristabil", "ristagnare": "ristagn", "ristagno": "ristagn", "ristorante": "ristor", "ristorar": "ristor", "ristorarla": "ristor", "ristorarsi": "ristor", "ristorarvi": "ristor", "ristorativa": "ristor", "ristorativi": "ristor", "ristorativo": "ristor", "ristori": "ristor", "ristoro": "ristor", "ristretta": "ristrett", "ristrettezza": "ristrettezz", "ristretti": "ristrett", "ristretto": "ristrett", "ristringendosi": "ristring", "ristringerne": "ristring", "ristringersi": "ristring", "ristringessero": "ristring", "ristringeva": "ristring", "ristrinse": "ristrins", "ristrinsero": "ristrinser", "ristrutturazione": "ristruttur", "risucchiarci": "risucc", "risulata": "risul", "risulta": "risult", "risultando": "risult", "risultano": "risult", "risultante": "risult", "risultare": "risult", "risultargli": "risult", "risultate": "risult", "risultati": "risult", "risultato": "risult", "risultava": "risult", "risulterebbe": "risult", "risulti": "risult", "risuscitatolo": "risuscitatol", "risveglia": "risvegl", "risvegliando": "risvegl", "risvegliasse": "risvegl", "risvegliata": "risvegl", "risvegliato": "risvegl", "risvegliava": "risvegl", "risvegliavano": "risvegl", "risveglino": "risveglin", "risvegliò": "risvegl", "rita": "rit", "ritagli": "ritagl", "ritaglio": "ritagl", "ritarda": "ritard", "ritardando": "ritard", "ritardarla": "ritard", "ritardata": "ritard", "ritardato": "ritard", "ritardi": "ritard", "ritardo": "ritard", "ritchie": "ritc", "ritegno": "ritegn", "ritenendo": "riten", "ritenere": "riten", "ritenessero": "riten", "ritenete": "riten", "riteneva": "riten", "ritenga": "riteng", "ritengo": "riteng", "ritengono": "riteng", "riteniamo": "riten", "ritenne": "ritenn", "ritentare": "ritent", "ritenuta": "riten", "ritenute": "riten", "ritenuti": "riten", "ritenuto": "riten", "riti": "rit", "ritiene": "ritien", "ritira": "ritir", "ritirando": "ritir", "ritirandosi": "ritir", "ritirano": "ritir", "ritirar": "ritir", "ritirare": "ritir", "ritirarmi": "ritir", "ritirarsene": "ritir", "ritirarsi": "ritir", "ritirassero": "ritir", "ritirata": "ritir", "ritirate": "ritir", "ritiratevi": "ritirat", "ritirati": "ritir", "ritiratisi": "ritiratis", "ritirato": "ritir", "ritiratosi": "ritirat", "ritirava": "ritir", "ritiravan": "ritiravan", "ritiri": "ritir", "ritirino": "ritirin", "ritiro": "ritir", "ritirò": "rit", "ritmicamente": "ritmic", "ritmo": "ritm", "rito": "rit", "ritoccando": "ritocc", "ritoccato": "ritocc", "ritocco": "ritocc", "ritorna": "ritorn", "ritornan": "ritornan", "ritornandoci": "ritorn", "ritornar": "ritorn", "ritornare": "ritorn", "ritornarono": "ritorn", "ritornatele": "ritornatel", "ritornato": "ritorn", "ritornava": "ritorn", "ritorneremo": "ritorn", "ritorni": "ritorn", "ritorniamo": "ritorn", "ritorno": "ritorn", "ritornò": "ritorn", "ritorte": "ritort", "ritrae": "ritra", "ritraggono": "ritragg", "ritrarne": "ritr", "ritrarre": "ritrarr", "ritratta": "ritratt", "ritrattazione": "ritratt", "ritratti": "ritratt", "ritratto": "ritratt", "ritrosia": "ritros", "ritrouauano": "ritrouau", "ritrova": "ritrov", "ritrovamenti": "ritrov", "ritrovamento": "ritrov", "ritrovar": "ritrov", "ritrovare": "ritrov", "ritrovarsi": "ritrov", "ritrovarvi": "ritrov", "ritrovata": "ritrov", "ritrovate": "ritrov", "ritrovati": "ritrov", "ritrovato": "ritrov", "ritroverà": "ritrov", "ritrovi": "ritrov", "ritrovo": "ritrov", "ritta": "ritt", "ritte": "ritt", "ritti": "ritt", "ritto": "ritt", "rituale": "ritual", "rituffavano": "rituff", "riunendosi": "riun", "riunì": "riun", "riuniamo": "riun", "riunione": "riunion", "riunioni": "riunion", "riunirà": "riun", "riuniranno": "riun", "riunirci": "riun", "riuniremo": "riun", "riunirono": "riun", "riunirsi": "riun", "riunisca": "riun", "riunisce": "riun", "riuniscono": "riun", "riunita": "riun", "riunite": "riun", "riuniti": "riun", "riunito": "riun", "riunitosi": "riunit", "riunivano": "riun", "riuscendo": "riusc", "riuscendogli": "riusc", "riuscì": "riusc", "riusciamo": "riusc", "riuscir": "riusc", "riuscirà": "riusc", "riuscire": "riusc", "riuscirebbe": "riusc", "riuscirete": "riusc", "riuscirono": "riusc", "riuscirvi": "riusc", "riuscisse": "riusciss", "riuscissero": "riusc", "riuscita": "riusc", "riuscite": "riusc", "riusciti": "riusc", "riuscito": "riusc", "riusciva": "riusc", "riuscivamo": "riusc", "riuscivan": "riuscivan", "riuscivano": "riusc", "riva": "riv", "rivale": "rival", "rivali": "rival", "rivalità": "rival", "rivalutare": "rivalut", "rivalutata": "rivalut", "rivangare": "rivang", "rive": "riv", "riveda": "rived", "rivede": "rived", "riveder": "riveder", "rivederci": "rived", "rivedere": "rived", "rivederli": "rived", "rivedersi": "rived", "rivediamo": "rived", "rivedrà": "rivedr", "rivedremo": "rivedrem", "rivedrete": "rivedr", "rivela": "rivel", "rivelano": "rivel", "rivelare": "rivel", "rivelarne": "rivel", "rivelarono": "rivel", "rivelata": "rivel", "rivelato": "rivel", "rivelazione": "rivel", "rivelazioni": "rivel", "rivelazionì": "rivelazion", "rivelò": "rivel", "rivendicando": "rivendic", "rivendicano": "rivendic", "rivendicare": "rivendic", "rivendicato": "rivendic", "rivendicazione": "rivend", "rivendicazioni": "rivend", "river": "river", "rivera": "river", "riverente": "riverent", "riverentemente": "riverent", "riverenza": "riverent", "riverenze": "riverent", "riverirlo": "river", "riverisce": "river", "riverisco": "river", "riverita": "river", "riverito": "river", "riverniciati": "rivernic", "riversa": "rivers", "riversare": "rivers", "riversata": "rivers", "riversate": "rivers", "riverso": "rivers", "rivestì": "rivest", "rivestirsi": "rivest", "rivestita": "rivest", "rivestito": "rivest", "rivestivano": "rivest", "rivide": "rivid", "riviera": "rivier", "rivieraschi": "rivierasc", "rivisitazione": "rivisit", "rivista": "rivist", "riviste": "rivist", "rivisto": "rivist", "rivitalizzare": "rivitalizz", "rivitalizzazione": "rivitalizz", "rivivere": "riviv", "rivocarlo": "rivoc", "rivola": "rivol", "rivolge": "rivolg", "rivolgendo": "rivolg", "rivolgendosi": "rivolg", "rivolgere": "rivolg", "rivolgerebbe": "rivolg", "rivolgerle": "rivolg", "rivolgerlo": "rivolg", "rivolgermi": "rivolg", "rivolgerò": "rivolg", "rivolgersi": "rivolg", "rivolgessero": "rivolg", "rivolgeva": "rivolg", "rivolgono": "rivolg", "rivolse": "rivols", "rivolsero": "rivolser", "rivolta": "rivolt", "rivoltandosi": "rivolt", "rivoltano": "rivolt", "rivoltare": "rivolt", "rivoltarsi": "rivolt", "rivoltate": "rivolt", "rivoltati": "rivolt", "rivoltava": "rivolt", "rivolte": "rivolt", "rivoltegli": "rivoltegl", "rivolterebbero": "rivolt", "rivolti": "rivolt", "rivoltiamo": "rivolt", "rivoltigli": "rivoltigl", "rivolto": "rivolt", "rivoltò": "rivolt", "rivoluzionari": "rivoluzionar", "rivoluzionaria": "rivoluzionar", "rivoluzionario": "rivoluzionar", "rivoluzione": "rivolu", "rivoluzioni": "rivolu", "rivotandolo": "rivot", "riz": "riz", "rizza": "rizz", "rizzandosi": "rizz", "rizzano": "rizz", "rizzar": "rizz", "rizzata": "rizz", "rizzate": "rizz", "rizzatosi": "rizzat", "rizzi": "rizz", "rizzitelli": "rizzitell", "rizzo": "rizz", "rizzò": "rizz", "rizzoli": "rizzol", "rl": "rl", "rm": "rm", "rmzi": "rmzi", "rnc": "rnc", "roba": "rob", "robbe": "robb", "robben": "robben", "robbie": "robb", "robe": "rob", "robert": "robert", "roberto": "robert", "robertson": "robertson", "robin": "robin", "robinson": "robinson", "robocop": "robocop", "robusta": "robust", "robustezza": "robustezz", "robusti": "robust", "roca": "roc", "rocambolesche": "rocambolesc", "rocca": "rocc", "roccaforte": "roccafort", "roccella": "roccell", "rocchetta": "rocchett", "rocchi": "rocc", "roccia": "rocc", "rocco": "rocc", "rock": "rock", "rocroi": "rocro", "rod": "rod", "rode": "rod", "rodendosi": "rod", "rodere": "rod", "rodersi": "rod", "rodeva": "rod", "rodhes": "rodhes", "rodi": "rod", "rodimento": "rod", "rodìo": "rodì", "rodman": "rodman", "rodney": "rodney", "rodomonte": "rodomont", "rodotà": "rodot", "rodrigo": "rodrig", "rodriguez": "rodriguez", "rodriquez": "rodriquez", "roger": "roger", "rogeriò": "roger", "rogers": "rogers", "rognoni": "rognon", "roidi": "roid", "rolando": "rol", "roll": "roll", "rolls": "rolls", "rolo": "rol", "rolò": "rol", "roloamerica": "roloamer", "rolobonds": "rolobonds", "roloeuropa": "roloeurop", "rologest": "rologest", "rolointernational": "rolointernational", "roloitalia": "roloital", "rolomix": "rolomix", "rolomoney": "rolomoney", "rolooriente": "roloorient", "rom": "rom", "roma": "rom", "romà": "rom", "romagest": "romagest", "romagna": "romagn", "romagnolo": "romagnol", "roman": "roman", "romana": "roman", "romanello": "romanell", "romani": "roman", "romanista": "roman", "romanisti": "roman", "romano": "rom", "romanò": "roman", "romantica": "romant", "romanticismo": "romantic", "romantico": "romant", "romanzo": "romanz", "rombo": "romb", "romei": "rome", "romena": "romen", "romeo": "rome", "romero": "romer", "rominger": "rominger", "romiti": "rom", "romito": "rom", "romolo": "romol", "rompa": "romp", "rompe": "romp", "rompendo": "romp", "romper": "romper", "rompere": "romp", "romperla": "romp", "rompevano": "romp", "rompicollo": "rompicoll", "rompono": "romp", "ron": "ron", "ronald": "ronald", "roncato": "ronc", "ronchi": "ronc", "ronco": "ronc", "roncole": "roncol", "roncone": "roncon", "ronda": "rond", "rondine": "rondin", "ronzando": "ronz", "ronzarle": "ronz", "ronzasse": "ronz", "ronzatori": "ronzator", "ronzavano": "ronz", "ronzìo": "ronzì", "ronzlo": "ronzl", "roque": "roqu", "rosa": "ros", "rosanna": "rosann", "rosano": "ros", "rosaria": "rosar", "rosario": "rosar", "rosaro": "rosar", "rosati": "ros", "roscia": "rosc", "rose": "ros", "roseo": "rose", "rosi": "ros", "rosica": "rosic", "rosicchiata": "rosicc", "rosie": "ros", "rosmarino": "rosmarin", "roso": "ros", "rosolava": "rosol", "rosone": "roson", "rospi": "rosp", "rospo": "rosp", "rossa": "ross", "rosse": "ross", "rossè": "ross", "rosseggiante": "rossegg", "rosseggianti": "rossegg", "rossetti": "rossett", "rossetto": "rossett", "rossi": "ross", "rossiccia": "rossicc", "rossini": "rossin", "rossito": "ross", "rosso": "ross", "rossoblu": "rossoblu", "rossoblù": "rossoblù", "rossonera": "rossoner", "rossoneri": "rossoner", "rossore": "rossor", "rosy": "rosy", "rota": "rot", "rotaie": "rotai", "rotante": "rotant", "rotazione": "rotazion", "rote": "rot", "roteando": "rot", "rotella": "rotell", "roth": "roth", "rotocalco": "rotocalc", "rotoli": "rotol", "rotolo": "rotol", "rotonda": "rotond", "rotondi": "rotond", "rotondo": "rotond", "rotta": "rott", "rottame": "rottam", "rottami": "rottam", "rotte": "rott", "rotterdam": "rotterdam", "rotti": "rott", "rotto": "rott", "rottura": "rottur", "roulettes": "roulettes", "roundtree": "roundtre", "rouse": "rous", "routine": "routin", "rover": "rover", "rovescia": "rovesc", "rovesciano": "rovesc", "rovesciar": "rovesc", "rovesciarla": "rovesc", "rovesciata": "rovesc", "rovesciavano": "rovesc", "rovescio": "rovesc", "rovesciò": "rovesc", "rovigo": "rovig", "rovina": "rovin", "rovinan": "rovinan", "rovinando": "rovin", "rovinar": "rovin", "rovinare": "rovin", "rovinarmi": "rovin", "rovinarsi": "rovin", "rovinarvi": "rovin", "rovinata": "rovin", "rovinato": "rovin", "rovinavano": "rovin", "rovine": "rovin", "rovistando": "rovist", "rovo": "rov", "rowland": "rowland", "royal": "royal", "royce": "royc", "rozza": "rozz", "rozzi": "rozz", "rozzo": "rozz", "rp": "rp", "rpesidente": "rpesident", "rpt": "rpt", "rr": "rr", "rs": "rs", "rsu": "rsu", "ruba": "rub", "rubamenti": "rub", "rubar": "rub", "rubare": "rub", "rubarle": "rub", "rubarsela": "rubarsel", "rubarselo": "rubarsel", "rubarsi": "rub", "rubassi": "rub", "rubate": "rub", "rubati": "rub", "rubato": "rub", "rubavano": "rub", "rubello": "rubell", "ruberie": "ruber", "rubi": "rub", "rubiconda": "rubicond", "rubicondo": "rubicond", "rubiera": "rubier", "rubin": "rubin", "rubino": "rubin", "rubli": "rubl", "rubra": "rubr", "rubrica": "rubric", "rubriche": "rubric", "rude": "rud", "rudi": "rud", "rudyard": "rudyard", "ruf": "ruf", "ruffa": "ruff", "ruffino": "ruffin", "ruffo": "ruff", "ruffoni": "ruffon", "rugby": "rugby", "ruggenti": "ruggent", "ruggero": "rugger", "ruggine": "ruggin", "ruggito": "rugg", "rughe": "rugh", "rugiada": "rugiad", "rugosa": "rugos", "ruhpolding": "ruhpolding", "rui": "rui", "ruiz": "ruiz", "rumbelows": "rumbelows", "ruminando": "rumin", "ruminarci": "rumin", "ruminava": "rumin", "ruminò": "rumin", "rumor": "rumor", "rumore": "rumor", "rumoreggiamento": "rumoregg", "rumoreggiando": "rumoregg", "rumori": "rumor", "rumorosa": "rumor", "rumorosamente": "rumor", "rumoroso": "rumor", "rundschaù": "rundschaù", "ruolettes": "ruolettes", "ruoli": "ruol", "ruolo": "ruol", "ruota": "ruot", "ruote": "ruot", "ruotolo": "ruotol", "rupi": "rup", "ruppe": "rupp", "ruprechtskirche": "ruprechtskirc", "rurali": "rural", "rus": "rus", "ruscello": "ruscell", "rushdi": "rushd", "rushdie": "rushd", "rushdiè": "rushd", "ruspi": "rusp", "russa": "russ", "russare": "russ", "russava": "russ", "russe": "russ", "russi": "russ", "russia": "russ", "russie": "russ", "russo": "russ", "rustica": "rustic", "rustichezza": "rustichezz", "ruta": "rut", "rutelli": "rutell", "rutilante": "rutil", "ruvida": "ruvid", "ruvidamente": "ruvid", "ruvide": "ruvid", "ruvido": "ruvid", "ruz": "ruz", "ruzzo": "ruzz", "ruzzolare": "ruzzol", "ruzzolarono": "ruzzol", "rv": "rv", "rwdm": "rwdm", "rwe": "rwe", "ryryryryryryryryryryryryryryryryryryryryr": "ryryryryryryryryryryryryryryryryryryryryr", "ryryryryryryryryryryryryryryryryryryryryryry": "ryryryryryryryryryryryryryryryryryryryryryry", "s": "s", "sa": "sa", "saab": "saab", "saad": "saad", "saada": "saad", "sabatini": "sabatin", "sabato": "sab", "sabau": "sabau", "sabbia": "sabb", "sabe": "sab", "sabotare": "sabot", "sabrina": "sabrin", "sacca": "sacc", "saccenteria": "saccenter", "saccheggiare": "sacchegg", "saccheggiato": "sacchegg", "saccheggiatori": "sacchegg", "saccheggio": "sacchegg", "sacchetti": "sacchett", "sacchi": "sacc", "sacco": "sacc", "saccone": "saccon", "sacconi": "saccon", "sace": "sac", "sacerdote": "sacerdot", "sacerdoti": "sacerdot", "sacerdozio": "sacerdoz", "sack": "sack", "sacra": "sacr", "sacrificare": "sacrific", "sacrificarsi": "sacrific", "sacrificata": "sacrific", "sacrificati": "sacrific", "sacrificato": "sacrific", "sacrifici": "sacrif", "sacrificio": "sacrific", "sacrifizio": "sacrifiz", "sacrilega": "sacrileg", "sacrilegio": "sacrileg", "sacro": "sacr", "sacrosante": "sacros", "sacrosanto": "sacrosant", "sacully": "sacully", "saddam": "saddam", "saes": "saes", "saf": "saf", "saffa": "saff", "safilo": "safil", "safr": "safr", "saga": "sag", "sagacità": "sagac", "saggezza": "saggezz", "saggia": "sagg", "saggina": "saggin", "saggio": "sagg", "sagra": "sagr", "sagrare": "sagr", "sagrava": "sagr", "sagrestano": "sagrest", "sagrestia": "sagrest", "sagrifizi": "sagrifiz", "sagrifizio": "sagrifiz", "sai": "sai", "saiag": "saiag", "said": "said", "sailor": "sailor", "saima": "saim", "saint": "saint", "sainz": "sainz", "saio": "sai", "saipem": "saipem", "sal": "sal", "sala": "sal", "salam": "salam", "salamandra": "salamandr", "salamon": "salamon", "salamone": "salamon", "salari": "salar", "salariale": "salarial", "salariali": "salarial", "salario": "salar", "salda": "sald", "saldana": "saldan", "saldar": "sald", "saldare": "sald", "saldarle": "sald", "saldate": "sald", "saldato": "sald", "saldi": "sald", "saldo": "sald", "saldò": "sald", "sale": "sal", "salemi": "salem", "salendo": "sal", "salernitana": "salernitan", "salernitani": "salernitan", "salernitano": "salernit", "salerno": "salern", "salesiana": "salesian", "salezzari": "salezzar", "salgon": "salgon", "salgono": "salg", "sali": "sal", "salì": "sal", "salinas": "salinas", "salingen": "salingen", "salio": "sal", "salir": "sal", "salire": "sal", "salirete": "sal", "salirono": "sal", "salirvi": "sal", "saliscendi": "salisc", "salisse": "saliss", "salita": "sal", "salite": "sal", "saliti": "sal", "salito": "sal", "saliva": "sal", "salivo": "sal", "salma": "salm", "salman": "salman", "salmo": "salm", "salmone": "salmon", "salomone": "salomon", "salone": "salon", "saloni": "salon", "salotti": "salott", "salottino": "salottin", "salotto": "salott", "salsano": "sals", "salt": "salt", "salta": "salt", "saltando": "salt", "saltanto": "saltant", "saltar": "salt", "saltare": "salt", "saltata": "salt", "saltato": "salt", "saltava": "salt", "saltellante": "saltell", "saltellava": "saltell", "saltello": "saltell", "saltelloni": "saltellon", "salterà": "salt", "salterello": "salterell", "salti": "salt", "salto": "salt", "saltò": "salt", "saltuaria": "saltuar", "salubre": "salubr", "saluta": "sal", "salutala": "salutal", "salutando": "salut", "salutar": "salut", "salutare": "salut", "salutari": "salutar", "salutasse": "salut", "salutata": "salut", "salutati": "salut", "salutatili": "salutatil", "salutato": "salut", "salutavan": "salutavan", "salute": "sal", "salutevole": "salutevol", "saluti": "sal", "salutiamo": "salut", "saluto": "sal", "salutò": "salut", "salva": "salv", "salvadanaio": "salvadanai", "salvaguardando": "salvaguard", "salvaguardare": "salvaguard", "salvaguardia": "salvaguard", "salvamento": "salv", "salvando": "salv", "salvar": "salv", "salvarci": "salv", "salvare": "salv", "salvarla": "salv", "salvarlo": "salv", "salvarne": "salv", "salvarsi": "salv", "salvarti": "salv", "salvata": "salv", "salvataggio": "salvatagg", "salvatelo": "salvatel", "salvatica": "salvat", "salvatiche": "salvat", "salvatichezza": "salvatichezz", "salvatico": "salvat", "salvato": "salv", "salvatore": "salvator", "salvatori": "salvator", "salvavano": "salv", "salvazion": "salvazion", "salvazione": "salvazion", "salve": "salv", "salvemini": "salvemin", "salverà": "salv", "salvezza": "salvezz", "salvezzà": "salvezz", "salvi": "salv", "salviamo": "salv", "salvo": "salv", "salvocondotto": "salvocondott", "saly": "saly", "sam": "sam", "sambuca": "sambuc", "sammy": "sammy", "samp": "samp", "sampdoria": "sampdor", "sampdoriana": "sampdorian", "sampdoriani": "sampdorian", "samuel": "samuel", "samuele": "samuel", "samurai": "samura", "san": "san", "sana": "san", "sanandola": "san", "sanare": "san", "sanatoria": "sanator", "sanchez": "sanchez", "sancire": "sanc", "sancisce": "sanc", "sancita": "sanc", "sancito": "sanc", "sandali": "sandal", "sande": "sand", "sanders": "sanders", "sandi": "sand", "sandis": "sandis", "sandpiper": "sandpiper", "sandra": "sandr", "sandreani": "sandrean", "sandrelli": "sandrell", "sandrine": "sandrin", "sandro": "sandr", "sands": "sands", "sane": "san", "sangiorgi": "sangiorg", "sangiuseppese": "sangiuseppes", "sangro": "sangr", "sangue": "sangu", "sanguigne": "sanguign", "sanguigni": "sanguign", "sanguinosa": "sanguin", "sanguinose": "sanguin", "sanguinosi": "sanguin", "sani": "san", "saniem": "saniem", "sanità": "sanit", "sanitari": "sanitar", "sanitaria": "sanitar", "sanitarie": "sanitar", "sanitario": "sanitar", "sankoh": "sankoh", "sanna": "sann", "sanno": "sann", "sano": "san", "sanpaolo": "sanpaol", "sanremo": "sanrem", "sanrocchino": "sanrocchin", "sansa": "sans", "sansepolcro": "sansepolcr", "sansovino": "sansovin", "sant": "sant", "santa": "sant", "santafè": "santaf", "santagada": "santagad", "santamente": "sant", "santander": "santander", "santaniello": "santaniell", "santarelli": "santarell", "santavaleria": "santavaler", "sante": "sant", "santer": "santer", "santerella": "santerell", "santerini": "santerin", "santi": "sant", "santiago": "santiag", "santificato": "santific", "santificava": "santific", "santini": "santin", "santino": "santin", "santis": "santis", "santissima": "santissim", "santità": "santit", "santo": "sant", "santona": "santon", "santoro": "santor", "santos": "santos", "santuari": "santuar", "sanzionate": "sanzion", "sanzione": "sanzion", "sanzioni": "sanzion", "sapendo": "sap", "sapendolo": "sap", "saper": "saper", "sapere": "sap", "saperla": "sap", "saperle": "sap", "saperli": "sap", "saperlo": "sap", "saperne": "sap", "sapersi": "sap", "sapesse": "sapess", "sapesser": "sapesser", "sapessero": "sap", "sapessi": "sapess", "sapessimo": "sapessim", "sapeste": "sapest", "sapete": "sap", "sapeva": "sap", "sapevamo": "sap", "sapevan": "sapevan", "sapevano": "sap", "sapevate": "sap", "sapevo": "sap", "sapiente": "sapient", "sapienza": "sapienz", "sapore": "sapor", "saporita": "sapor", "sappi": "sapp", "sappia": "sapp", "sappiam": "sappiam", "sappiamo": "sapp", "sappiano": "sapp", "sappiate": "sapp", "sapporo": "sappor", "saprà": "sapr", "saprai": "sapra", "sapranno": "saprann", "saprebbe": "saprebb", "saprebbero": "saprebber", "saprei": "sapre", "sapremmo": "sapr", "sapreste": "saprest", "saprete": "sapr", "saprò": "sapr", "saputa": "sap", "sapute": "sap", "saputi": "sap", "saputo": "sap", "sara": "sar", "sarà": "sar", "sarabanda": "saraband", "saraceno": "saracen", "saracino": "saracin", "saràcircondata": "saràcircond", "sarai": "sara", "sarajevo": "saraj", "saran": "saran", "saranno": "sarann", "sarcinelli": "sarcinell", "sardar": "sard", "sardegna": "sardegn", "sardi": "sard", "sardini": "sardin", "sardonico": "sardon", "sarebbe": "sarebb", "sarebber": "sarebber", "sarebbero": "sarebber", "sarei": "sare", "saremmo": "sar", "saremo": "sarem", "sareste": "sarest", "saresti": "sarest", "sarete": "sar", "sarid": "sarid", "sarò": "sar", "saronno": "saronn", "sarriò": "sarr", "sarsina": "sarsin", "sarto": "sart", "sartor": "sartor", "sasib": "sasib", "sassari": "sassar", "sassate": "sass", "sassi": "sass", "sasso": "sass", "sassonia": "sasson", "sassosa": "sassos", "sassoso": "sassos", "sat": "sat", "satana": "satan", "satanasso": "satanass", "satanici": "satan", "satanico": "satan", "satellitari": "satellitar", "satellite": "satell", "satelliti": "satell", "sathya": "sathy", "satira": "satir", "satirico": "satir", "satolla": "satoll", "satollar": "satoll", "satriano": "satr", "sattanino": "sattanin", "sattar": "satt", "sature": "satur", "saturno": "saturn", "saudita": "saud", "saurer": "saurer", "saurini": "saurin", "saveriane": "saverian", "savi": "sav", "savia": "sav", "savicevic": "savicevic", "savieriane": "savierian", "saviezza": "saviezz", "savimbi": "savimb", "savin": "savin", "savio": "sav", "savoia": "savoi", "savona": "savon", "savonese": "savones", "saxa": "sax", "saxarubra": "saxarubr", "say": "say", "saziarsi": "saz", "saziata": "saz", "sb": "sb", "sbadatamente": "sbadat", "sbadigli": "sbadigl", "sbaglia": "sbagl", "sbagliar": "sbagl", "sbagliare": "sbagl", "sbagliata": "sbagl", "sbagliate": "sbagl", "sbagliato": "sbagl", "sbagliavano": "sbagl", "sbaglio": "sbagl", "sbalordimento": "sbalord", "sbalordita": "sbalord", "sbalorditi": "sbalord", "sbalordito": "sbalord", "sbalordiva": "sbalord", "sbalordivano": "sbalord", "sbalzato": "sbalz", "sbandamento": "sband", "sbandano": "sband", "sbandare": "sband", "sbandarono": "sband", "sbandarsi": "sband", "sbandata": "sband", "sbandati": "sband", "sbandava": "sband", "sbandierarli": "sbandier", "sbarazzarsi": "sbarazz", "sbarbando": "sbarb", "sbarbato": "sbarb", "sbarcare": "sbarc", "sbarcato": "sbarc", "sbarcheranno": "sbarc", "sbarcheremo": "sbarc", "sbarco": "sbarc", "sbarra": "sbarr", "sbarramento": "sbarr", "sbarrati": "sbarr", "sbarrato": "sbarr", "sbattendone": "sbatt", "sbattuta": "sbatt", "sbattuto": "sbatt", "sbiadito": "sbiad", "sbieco": "sbiec", "sbigottita": "sbigott", "sbigottite": "sbigott", "sbigottito": "sbigott", "sbilanciata": "sbilanc", "sbirciando": "sbirc", "sbirraglia": "sbirragl", "sbizzarrire": "sbizzarr", "sblocca": "sblocc", "sbloccare": "sblocc", "sbloccati": "sblocc", "sblocco": "sblocc", "sboccan": "sboccan", "sboccano": "sbocc", "sboccare": "sbocc", "sboccarono": "sbocc", "sboccarvi": "sbocc", "sboccati": "sbocc", "sboccato": "sbocc", "sboccavano": "sbocc", "sbocchi": "sbocc", "sbocciato": "sbocc", "sbocco": "sbocc", "sbocconcellando": "sbocconcell", "sborsavan": "sborsavan", "sbracia": "sbrac", "sbrancassero": "sbranc", "sbrancati": "sbranc", "sbrattare": "sbratt", "sbrigarlo": "sbrig", "sbrigarsi": "sbrig", "sbrigarvi": "sbrig", "sbrigatevi": "sbrigat", "sbrigati": "sbrig", "sbrigativi": "sbrigat", "sbrigato": "sbrig", "sbrigava": "sbrig", "sbrigò": "sbrig", "sbucar": "sbuc", "sbucati": "sbuc", "sbudellarsi": "sbudell", "sbuffando": "sbuff", "scabrosa": "scabros", "scabrosi": "scabros", "scabroso": "scabros", "scacchi": "scacc", "scacchiera": "scacchier", "scacchistico": "scacchist", "scacciar": "scacc", "scacciare": "scacc", "scacciarlo": "scacc", "scacco": "scacc", "scade": "scad", "scadendo": "scad", "scadenti": "scadent", "scadenza": "scadenz", "scadenze": "scadenz", "scadere": "scad", "scaduta": "scad", "scaduto": "scad", "scaffale": "scaffal", "scaffali": "scaffal", "scaglia": "scagl", "scagliandogli": "scagl", "scagliati": "scagl", "scagliato": "scagl", "scagliò": "scagl", "scala": "scal", "scalabrelli": "scalabrell", "scalar": "scal", "scalata": "scal", "scalato": "scal", "scalcinate": "scalcin", "scalcinatura": "scalcinatur", "scalcinavano": "scalcin", "scalda": "scald", "scaldata": "scald", "scaldato": "scald", "scale": "scal", "scalensis": "scalensis", "scaletta": "scalett", "scalfari": "scalfar", "scalfaro": "scalfar", "scali": "scal", "scalia": "scal", "scalini": "scalin", "scalino": "scalin", "scalmanarsi": "scalman", "scalo": "scal", "scalpiccìo": "scalpiccì", "scalpo": "scalp", "scaltre": "scaltr", "scaltro": "scaltr", "scalzacane": "scalzacan", "scalzacani": "scalzacan", "scalzar": "scalz", "scalze": "scalz", "scalzi": "scalz", "scalzo": "scalz", "scambi": "scamb", "scambiandole": "scamb", "scambiandosi": "scamb", "scambiare": "scamb", "scambiate": "scamb", "scambiati": "scamb", "scambiato": "scamb", "scambievolmente": "scambievol", "scambio": "scamb", "scampaforca": "scampaforc", "scampanare": "scampan", "scampanava": "scampan", "scampanìo": "scampanì", "scampata": "scamp", "scampati": "scamp", "scampo": "scamp", "scandal": "scandal", "scandalo": "scandal", "scandalosa": "scandal", "scandaloso": "scandal", "scandendo": "scand", "scandinavi": "scandin", "scandisce": "scand", "scandito": "scand", "scandoli": "scandol", "scandolo": "scandol", "scanio": "scan", "scannare": "scann", "scansar": "scans", "scansare": "scans", "scansarle": "scans", "scansarli": "scans", "scansarne": "scans", "scansata": "scans", "scansate": "scans", "scansato": "scans", "scansava": "scans", "scansc": "scansc", "scantonarono": "scanton", "scapataggini": "scapataggin", "scapestrati": "scapestr", "scapestrato": "scapestr", "scapezzati": "scapezz", "scapitare": "scapit", "scapolo": "scapol", "scappa": "scapp", "scappando": "scapp", "scappano": "scapp", "scappar": "scapp", "scappare": "scapp", "scappargli": "scapp", "scapparon": "scapparon", "scapparono": "scapp", "scappassero": "scapp", "scappata": "scapp", "scappatale": "scappatal", "scappate": "scapp", "scappatella": "scappatell", "scappati": "scapp", "scappatina": "scappatin", "scappato": "scapp", "scappatuccia": "scappatucc", "scappava": "scapp", "scappavano": "scapp", "scappellata": "scappell", "scappellate": "scappell", "scappellotto": "scappellott", "scapperà": "scapp", "scappi": "scapp", "scappò": "scapp", "scarabocchiando": "scarabocc", "scarabocchiati": "scarabocc", "scarabocchio": "scarabocc", "scaramuccia": "scaramucc", "scaramuzza": "scaramuzz", "scaraventare": "scaravent", "scaraventato": "scaravent", "scarchilli": "scarchill", "scarfaro": "scarfar", "scarica": "scaric", "scaricare": "scaric", "scaricarsi": "scaric", "scarichi": "scaric", "scarico": "scaric", "scarlatta": "scarlatt", "scarlatte": "scarlatt", "scarlino": "scarlin", "scarna": "scarn", "scarne": "scarn", "scarniti": "scarn", "scarno": "scarn", "scarpe": "scarp", "scarpelli": "scarpell", "scarpette": "scarpett", "scarponi": "scarpon", "scarpuzzi": "scarpuzz", "scarsa": "scars", "scarsamente": "scars", "scarse": "scars", "scarseggia": "scarsegg", "scarsezza": "scarsezz", "scarsi": "scars", "scarsità": "scarsit", "scarso": "scars", "scartabellando": "scartabell", "scartafaccio": "scartafacc", "scarto": "scart", "scassinar": "scassin", "scatenamenti": "scaten", "scatenando": "scaten", "scatenare": "scaten", "scatenata": "scaten", "scatenate": "scaten", "scatenato": "scaten", "scatenerebbe": "scaten", "scateni": "scaten", "scatola": "scatol", "scatole": "scatol", "scatolino": "scatolin", "scatta": "scatt", "scattare": "scatt", "scattate": "scatt", "scattati": "scatt", "scattato": "scatt", "scatteranno": "scatt", "scatterebbe": "scatt", "scatto": "scatt", "scaturire": "scatur", "scaturisca": "scatur", "scaturita": "scatur", "scaturito": "scatur", "scavalcando": "scavalc", "scavar": "scav", "scavare": "scav", "scavata": "scav", "scavato": "scav", "scavo": "scav", "scavolini": "scavolin", "scegliamo": "scegl", "sceglie": "scegl", "scegliendo": "scegl", "scegliendolo": "scegl", "scegliendomi": "scegl", "sceglieranno": "scegl", "scegliere": "scegl", "scegliersi": "scegl", "scegliete": "scegl", "sceleraggini": "sceleraggin", "scelerata": "sceler", "scelerato": "sceler", "scelga": "scelg", "scelgano": "scelg", "scelgono": "scelg", "scellerata": "sceller", "scelleratamente": "scellerat", "scellerate": "sceller", "scelleratezza": "scelleratezz", "scelleratezze": "scelleratezz", "scellerati": "sceller", "scellerato": "sceller", "scellino": "scellin", "scelse": "scels", "scelsero": "scelser", "scelta": "scelt", "scelte": "scelt", "scelti": "scelt", "scelto": "scelt", "scema": "scem", "scemando": "scem", "scemare": "scem", "scemata": "scem", "scemati": "scem", "scemato": "scem", "scemo": "scem", "scempiato": "scemp", "scempio": "scemp", "scena": "scen", "scenario": "scenar", "scenata": "scen", "scende": "scend", "scendendo": "scend", "scender": "scender", "scenderà": "scend", "scenderanno": "scend", "scendere": "scend", "scendesse": "scendess", "scendeva": "scend", "scendevano": "scend", "scendon": "scendon", "scendono": "scend", "scene": "scen", "sceneggiata": "scenegg", "sceneggiati": "scenegg", "sceneggiato": "scenegg", "scenografia": "scenograf", "scerso": "scers", "scesa": "sces", "scese": "sces", "scesero": "sceser", "scesi": "sces", "sceso": "sces", "scetticismo": "scettic", "scettico": "scettic", "scettro": "scettr", "schaefer": "schaefer", "scheda": "sched", "schede": "sched", "schedina": "schedin", "schegge": "schegg", "scheggiati": "schegg", "scheggiato": "schegg", "scheletri": "scheletr", "scheletro": "scheletr", "schema": "schem", "schemi": "schem", "schenardi": "schenard", "schenchio": "schenc", "scherma": "scherm", "schermaglie": "schermagl", "schermendo": "scherm", "schermi": "scherm", "schermirsi": "scherm", "schermito": "scherm", "schermiva": "scherm", "schermo": "scherm", "scherni": "schern", "schernire": "schern", "schernito": "schern", "scherno": "schern", "scherrer": "scherrer", "scherza": "scherz", "scherzando": "scherz", "scherzare": "scherz", "scherzavamo": "scherz", "scherzevole": "scherzevol", "scherzi": "scherz", "scherzo": "scherz", "schiacciar": "schiacc", "schiacciata": "schiacc", "schiacciato": "schiacc", "schiaffi": "schiaff", "schiamazzano": "schiamazz", "schiamazzare": "schiamazz", "schiamazzi": "schiamazz", "schiamazzo": "schiamazz", "schiantati": "schiant", "schianto": "schiant", "schiapexw": "schiapexw", "schiapparelli": "schiapparell", "schiarimenti": "schiar", "schiarimento": "schiar", "schiarire": "schiar", "schiava": "schi", "schiavo": "schi", "schiena": "schien", "schiene": "schien", "schiera": "schier", "schieramenti": "schier", "schieramento": "schier", "schieramentò": "schierament", "schierando": "schier", "schierarci": "schier", "schierarsi": "schier", "schierata": "schier", "schierate": "schier", "schierati": "schier", "schierato": "schier", "schierava": "schier", "schiere": "schi", "schietta": "schiett", "schiettamente": "schiett", "schiettezza": "schiettezz", "schietto": "schiett", "schifo": "schif", "schifosi": "schifos", "schinardi": "schinard", "schio": "schi", "schiodato": "schiod", "schioppettata": "schioppett", "schioppettate": "schioppett", "schioppi": "schiopp", "schioppo": "schiopp", "schip": "schip", "schiribizzo": "schiribizz", "schisano": "schis", "schiuma": "schium", "schivafatiche": "schivafat", "schivar": "schiv", "schivare": "schiv", "schivarli": "schiv", "schizza": "schizz", "schizzi": "schizz", "schizzinosa": "schizzin", "schizzinoso": "schizzin", "schizzo": "schizz", "schloendorff": "schloendorff", "schmid": "schmid", "schmidt": "schmidt", "schott": "schott", "schroeder": "schroeder", "schuster": "schuster", "schwarz": "schwarz", "schwingsackl": "schwingsackl", "sci": "sci", "sciabola": "sciabol", "sciabole": "sciabol", "sciacallaggi": "sciacallagg", "sciacallaggio": "sciacallagg", "sciacalle": "sciacall", "sciacca": "sciacc", "sciagura": "sciagur", "sciagurata": "sciagur", "sciagurate": "sciagur", "sciagurati": "sciagur", "sciagurato": "sciagur", "sciagure": "sciagur", "scialacquava": "scialacqu", "scialacquìo": "scialacquì", "scialmente": "scialment", "sciame": "sciam", "sciarelli": "sciarell", "sciarpa": "sciarp", "sciarpe": "sciarp", "sciascia": "sciasc", "sciatore": "sciator", "sciatori": "sciator", "scientifica": "scientif", "scientificamente": "scientif", "scientifici": "scientif", "scientology": "scientology", "scienza": "scienz", "scienze": "scienz", "scienziata": "scienz", "scienziato": "scienz", "scietà": "sciet", "sciiti": "sci", "scilinguagnolo": "scilinguagnol", "scilla": "scill", "scimmiè": "scimm", "scimone": "scimon", "scintillavan": "scintillavan", "sciocca": "sciocc", "scioccata": "sciocc", "sciocche": "sciocc", "sciocchezza": "sciocchezz", "sciocchezze": "sciocchezz", "sciocchi": "sciocc", "sciocco": "sciocc", "sciocconi": "scioccon", "scioglie": "sciogl", "sciogliendo": "sciogl", "sciogliendosi": "sciogl", "scioglier": "scioglier", "sciogliere": "sciogl", "sciogliervi": "sciogl", "scioglieva": "sciogl", "scioglimento": "sciogl", "sciolse": "sciols", "sciolta": "sciolt", "sciolte": "sciolt", "scioltì": "sciolt", "sciolto": "sciolt", "scioperanti": "scioper", "sciopererà": "scioper", "scioperi": "scioper", "sciopero": "scioper", "sciorinata": "sciorin", "scipione": "scipion", "scirè": "scir", "scissione": "scission", "sciupata": "sciup", "sciupinìo": "sciupinì", "sciupone": "sciupon", "scivolamento": "scivol", "scivolando": "scivol", "scivolare": "scivol", "scivoloso": "scivol", "scoccassero": "scocc", "scoccava": "scocc", "scocco": "scocc", "scoccò": "scocc", "scodella": "scodell", "scodellando": "scodell", "scodellare": "scodell", "scodellata": "scodell", "scodelle": "scodell", "scodelletta": "scodellett", "scodellò": "scodell", "scoglio": "scogl", "scognamiglio": "scognamigl", "scognamigliò": "scognamigl", "scola": "scol", "scolari": "scolar", "scolastica": "scolast", "scolastici": "scolast", "scolastico": "scolast", "scollegarsi": "scolleg", "scollegata": "scolleg", "scollo": "scoll", "scolorita": "scolor", "scolorito": "scolor", "scolpiva": "scolp", "scombaciati": "scombac", "scombussolamento": "scombussol", "scommessa": "scommess", "scommesse": "scommess", "scommettere": "scommett", "scommetterei": "scommett", "scommettiamo": "scommett", "scommettono": "scommett", "scomodano": "scomod", "scomodarsi": "scomod", "scomodato": "scomod", "scomodo": "scomod", "scompaginarsi": "scompagin", "scompagnati": "scompagn", "scompagnato": "scompagn", "scomparendo": "scompar", "scomparir": "scompar", "scomparire": "scompar", "scompariva": "scompar", "scomparsa": "scompars", "scomparsi": "scomp", "scomparso": "scompars", "scomparve": "scomparv", "scompigli": "scompigl", "scompigliano": "scompigl", "scompigliata": "scompigl", "scompigliati": "scompigl", "scompiglio": "scompigl", "scompiglìo": "scompiglì", "scompor": "scompor", "scomporre": "scomporr", "scomporsi": "scompors", "scomposizione": "scomposizion", "scomposta": "scompost", "scomposte": "scompost", "scomposti": "scompost", "scomposto": "scompost", "scomunica": "scomun", "scomunicata": "scomunic", "scomunicate": "scomunic", "sconce": "sconc", "sconcerta": "sconcert", "sconcertante": "sconcert", "sconcertata": "sconcert", "sconcertati": "sconcert", "sconcertato": "sconcert", "sconcia": "sconc", "sconcio": "sconc", "sconficca": "sconficc", "sconficcare": "sconficc", "sconficcata": "sconficc", "sconficcati": "sconficc", "sconficcato": "sconficc", "sconfigge": "sconfigg", "sconfiggeremo": "sconfigg", "sconfiggerlo": "sconfigg", "sconfitta": "sconfitt", "sconfitte": "sconfitt", "sconfitti": "sconfitt", "sconfitto": "sconfitt", "sconforto": "sconfort", "scongiura": "scongiur", "scongiurando": "scongiur", "scongiurare": "scongiur", "scongiuro": "scongiur", "sconnesse": "sconness", "sconnesso": "sconness", "sconoscenza": "sconoscent", "sconosciuta": "sconosc", "sconosciute": "sconosc", "sconosciuti": "sconosc", "sconosciuto": "sconosc", "sconquasso": "sconquass", "sconsacrati": "sconsacr", "sconsiglia": "sconsigl", "sconsolato": "sconsol", "scontan": "scontan", "scontare": "scont", "scontato": "scont", "scontenta": "scontent", "scontento": "scontent", "sconto": "scont", "scontri": "scontr", "scontrini": "scontrin", "scontro": "scontr", "sconvolge": "sconvolg", "sconvolgimento": "sconvolg", "sconvolta": "sconvolt", "sconvolto": "sconvolt", "sconziano": "sconz", "scooby": "scooby", "scopa": "scop", "scope": "scop", "scopelliti": "scopell", "scoperta": "scopert", "scoperte": "scopert", "scoperti": "scop", "scoperto": "scopert", "scopi": "scop", "scopo": "scop", "scoppiano": "scopp", "scoppiasse": "scopp", "scoppiata": "scopp", "scoppiati": "scopp", "scoppiato": "scopp", "scoppiava": "scopp", "scoppiavano": "scopp", "scoppietta": "scoppiett", "scoppiettìo": "scoppiettì", "scoppio": "scopp", "scoppiò": "scopp", "scopre": "scopr", "scoprendo": "scopr", "scoprendolo": "scopr", "scoprendosegli": "scoprendosegl", "scoprì": "scopr", "scoprir": "scopr", "scoprirci": "scopr", "scoprire": "scopr", "scopriremo": "scopr", "scoprirlo": "scopr", "scoprirne": "scopr", "scoprisse": "scopriss", "scopritore": "scopritor", "scoraggito": "scoragg", "scorcia": "scorc", "scorciatoia": "scorciatoi", "scordato": "scord", "scorgendo": "scorg", "scorgendogli": "scorg", "scorgere": "scorg", "scorgeva": "scorg", "scorporata": "scorpor", "scorporo": "scorpor", "scorre": "scorr", "scorrendola": "scorr", "scorrer": "scorrer", "scorrere": "scorr", "scorretta": "scorrett", "scorrettezze": "scorrettezz", "scorretti": "scorrett", "scorretto": "scorrett", "scorreva": "scorr", "scorrevano": "scorr", "scorrono": "scorr", "scorsa": "scors", "scorse": "scors", "scorsero": "scorser", "scorsese": "scorses", "scorsi": "scors", "scorso": "scors", "scorta": "scort", "scortando": "scort", "scortare": "scort", "scortarla": "scort", "scortata": "scort", "scortate": "scort", "scortati": "scort", "scortato": "scort", "scorte": "scort", "scoscendendo": "scoscend", "scossa": "scoss", "scosse": "scoss", "scossi": "scoss", "scosso": "scoss", "scostandosi": "scost", "scostare": "scost", "scostò": "scost", "scotendo": "scot", "scoteva": "scot", "scott": "scott", "scotta": "scott", "scottandogli": "scott", "scottanti": "scottant", "scottava": "scott", "scotti": "scott", "scottish": "scottish", "scovar": "scov", "scovare": "scov", "scozia": "scoz", "screditare": "scredit", "screen": "screen", "scrematura": "scrematur", "scribi": "scrib", "scricchiolasse": "scricchiol", "scrigno": "scrign", "scrisse": "scriss", "scritta": "scritt", "scritte": "scritt", "scritti": "scritt", "scritto": "scritt", "scrittore": "scrittor", "scrittori": "scrittor", "scrittrice": "scrittric", "scrittura": "scrittur", "scriuve": "scriuv", "scrivano": "scriv", "scrive": "scriv", "scrivendo": "scriv", "scrivente": "scrivent", "scriver": "scriver", "scrivere": "scriv", "scriverebbe": "scriv", "scriverne": "scriv", "scrivesse": "scrivess", "scrivete": "scriv", "scriveva": "scriv", "scrivevano": "scriv", "scriviamo": "scriv", "scrivono": "scriv", "scrl": "scrl", "scrosciante": "scrosciant", "scrosciar": "scrosc", "scroscio": "scrosc", "scrostate": "scrost", "scrupoli": "scrupol", "scrupolo": "scrupol", "scrupolosa": "scrupol", "scrutinio": "scrutin", "scuderi": "scuder", "scuderie": "scuder", "scudetto": "scudett", "scudi": "scud", "scudieri": "scudier", "scudisciate": "scudisc", "scudo": "scud", "sculaccia": "sculacc", "scully": "scully", "scultori": "scultor", "sculture": "scultur", "scuola": "scuol", "scuole": "scuol", "scure": "scur", "scuri": "scur", "scusa": "scus", "scusandosi": "scus", "scusar": "scus", "scusare": "scus", "scusarla": "scus", "scusarne": "scus", "scusarsi": "scus", "scusarvi": "scus", "scusasse": "scus", "scusate": "scus", "scusava": "scus", "scuse": "scus", "scuserà": "scus", "scusi": "scus", "sdegnarsi": "sdegn", "sdegnata": "sdegn", "sdegnate": "sdegn", "sdegnati": "sdegn", "sdegni": "sdegn", "sdegno": "sdegn", "sdegnosa": "sdegnos", "sdegnosi": "sdegnos", "sdraiarsi": "sdrai", "sdraiata": "sdrai", "sdraiate": "sdrai", "sdraiati": "sdrai", "sdrucciolar": "sdrucciol", "sdrucciolare": "sdrucciol", "sdrucciolava": "sdrucciol", "sdrucciolò": "sdrucciol", "se": "se", "sé": "sè", "sè": "sè", "seagull": "seagull", "sean": "sean", "seattle": "seattl", "sebastian": "sebastian", "sebastiani": "sebastian", "sebastiano": "sebast", "sebben": "sebben", "sebbene": "sebben", "secca": "secc", "seccano": "secc", "seccare": "secc", "seccarvi": "secc", "seccata": "secc", "seccatore": "seccator", "seccatori": "seccator", "seccatura": "seccatur", "secche": "secc", "seccherebbe": "secc", "secchi": "secc", "secchie": "secc", "secchio": "secc", "secco": "secc", "secentista": "secent", "secessione": "secession", "secessionismo": "secession", "secessionista": "secession", "secessionisti": "secession", "secit": "secit", "seco": "sec", "secolare": "secol", "secolaresca": "secolaresc", "secolari": "secolar", "secoli": "secol", "secolo": "secol", "second": "second", "seconda": "second", "secondando": "second", "secondar": "second", "secondare": "second", "secondaria": "secondar", "secondariamente": "secondar", "secondario": "secondar", "secondarlo": "second", "secondato": "second", "secondava": "second", "secondavano": "second", "secondi": "second", "secondo": "second", "secret": "secret", "security": "security", "sed": "sed", "sedare": "sed", "sedata": "sed", "sedate": "sed", "sedativi": "sedat", "sedava": "sed", "sede": "sed", "sedendo": "sed", "sedente": "sedent", "seder": "seder", "sedere": "sed", "sederi": "seder", "sedersi": "sed", "sedette": "sedett", "sedeva": "sed", "sedevano": "sed", "sedi": "sed", "sedia": "sed", "sedicente": "sedicent", "sedicenti": "sedicent", "sedicesimo": "sedicesim", "sedici": "sedic", "sedie": "sed", "sedile": "sedil", "sedili": "sedil", "sedizione": "sedizion", "sediziose": "sediz", "sedizioso": "sediz", "seducenti": "seducent", "sedurre": "sedurr", "seduta": "sed", "sedute": "sed", "seduti": "sed", "seduto": "sed", "seduttore": "seduttor", "seduttrice": "seduttr", "sefinale": "sefinal", "sega": "seg", "segata": "seg", "segatura": "segatur", "seggi": "segg", "seggio": "segg", "seggiola": "seggiol", "seggiolaccia": "seggiolacc", "seggiole": "seggiol", "seggiolino": "seggiolin", "seggiolone": "seggiolon", "segmento": "segment", "segna": "segn", "segnala": "segnal", "segnalano": "segnal", "segnalare": "segnal", "segnalata": "segnal", "segnalate": "segnal", "segnalati": "segnal", "segnalato": "segnal", "segnalazione": "segnal", "segnalazioni": "segnal", "segnale": "segnal", "segnali": "segnal", "segnaliamo": "segnal", "segnando": "segn", "segnare": "segn", "segnata": "segn", "segnatamente": "segnat", "segnate": "segn", "segnati": "segn", "segnato": "segn", "segnava": "segn", "segnavano": "segn", "segni": "segn", "segno": "segn", "segnò": "segn", "segrate": "segr", "segregare": "segreg", "segregasse": "segreg", "segreta": "segret", "segretamente": "segret", "segretari": "segretar", "segretaria": "segretar", "segretariesco": "segretariesc", "segretario": "segretar", "segrete": "segr", "segreteria": "segreter", "segreterià": "segreter", "segreterie": "segreter", "segreterio": "segreter", "segretezza": "segretezz", "segreti": "segret", "segretissimo": "segretissim", "segreto": "segret", "segretò": "segret", "segua": "segu", "seguaci": "seguac", "seguano": "segu", "segue": "segu", "seguendo": "segu", "seguente": "seguent", "seguenti": "seguent", "segugi": "segug", "seguì": "segu", "seguirà": "segu", "seguiranno": "segu", "seguire": "segu", "seguirebbe": "segu", "seguirebbero": "segu", "seguiremo": "segu", "seguirli": "segu", "seguirne": "segu", "seguirò": "segu", "seguiron": "seguiron", "seguirono": "segu", "seguisse": "seguiss", "seguissero": "segu", "seguita": "segu", "seguitando": "seguit", "seguitandolo": "seguit", "seguitata": "seguit", "seguitava": "seguit", "seguitavano": "seguit", "seguite": "segu", "seguiti": "segu", "seguito": "segu", "seguitò": "seguit", "seguiva": "segu", "seguivano": "segu", "seguo": "segu", "seguono": "segu", "sei": "sei", "seicento": "seicent", "seie": "sei", "seimila": "seimil", "sel": "sel", "selciato": "selc", "select": "select", "selettiva": "selett", "selettivi": "selett", "selettività": "selett", "selezionato": "selezion", "selezione": "selezion", "sella": "sell", "sellare": "sell", "seluatiche": "seluat", "selva": "selv", "selvagge": "selvagg", "selvaggia": "selvagg", "selvaggio": "selvagg", "sembehun": "sembehun", "sembiante": "sembiant", "sembianti": "sembiant", "sembianza": "sembianz", "sembra": "sembr", "sembrano": "sembr", "sembrare": "sembr", "sembrasse": "sembr", "sembrate": "sembr", "sembrati": "sembr", "sembrato": "sembr", "sembrava": "sembr", "sembrerebbe": "sembr", "sembrerebbero": "sembr", "sembri": "sembr", "seme": "sem", "sementa": "sement", "semente": "sement", "semenza": "semenz", "semestrali": "semestral", "semestre": "semestr", "semi": "sem", "semicieco": "semiciec", "semicircolo": "semicircol", "semideserto": "semidesert", "semidistrutto": "semidistrutt", "semifinale": "semifinal", "semifinali": "semifinal", "semilibertà": "semilibert", "seminano": "semin", "seminar": "semin", "seminare": "semin", "seminario": "seminar", "seminata": "semin", "seminate": "semin", "seminati": "semin", "seminato": "semin", "seminava": "semin", "seminavano": "semin", "seminìo": "seminì", "semitono": "semit", "semivivo": "semiv", "semmai": "semma", "semplice": "semplic", "semplicemente": "semplic", "semplici": "semplic", "sempliciotto": "sempliciott", "semplicità": "semplic", "semplificare": "semplific", "semplificazione": "semplif", "sempre": "sempr", "sempronio": "sempron", "sen": "sen", "senato": "sen", "senatore": "senator", "senatori": "senator", "senatur": "senatur", "senectus": "senectus", "senegal": "senegal", "senegalese": "senegales", "senese": "senes", "seni": "sen", "seniga": "senig", "senile": "senil", "senno": "senn", "sennò": "senn", "seno": "sen", "senonchè": "senonc", "señor": "señor", "sensazione": "sensazion", "sensazioni": "sensazion", "sensi": "sens", "sensibile": "sensibil", "sensibilità": "sensibil", "sensibilmente": "sensibil", "sensini": "sensin", "sensitiva": "sensit", "sensitivo": "sensit", "senso": "sens", "senta": "sent", "sentan": "sentan", "sentano": "sent", "sente": "sent", "sentendo": "sent", "sentendolo": "sent", "sentendosi": "sent", "sententiam": "sententiam", "sentenza": "sentenz", "sentenze": "sentenz", "sentenziare": "sentenz", "sentenziato": "sentenz", "sentenzio": "sentenz", "senti": "sent", "sentì": "sent", "sentiamo": "sent", "sentieri": "sentier", "sentiero": "sentier", "sentimentale": "sentimental", "sentimentalmente": "sentimental", "sentimenti": "sent", "sentimento": "sent", "sentinella": "sentinell", "sentinelle": "sentinell", "sentir": "sent", "sentirà": "sent", "sentirai": "sent", "sentiranno": "sent", "sentire": "sent", "sentiremo": "sent", "sentirete": "sent", "sentirla": "sent", "sentirle": "sent", "sentirlo": "sent", "sentirmi": "sent", "sentirne": "sent", "sentirò": "sent", "sentiron": "sentiron", "sentirono": "sent", "sentirsi": "sent", "sentirvi": "sent", "sentisse": "sentiss", "sentissi": "sentiss", "sentita": "sent", "sentite": "sent", "sentiti": "sent", "sentito": "sent", "sentiva": "sent", "sentivan": "sentivan", "sentivano": "sent", "sento": "sent", "senton": "senton", "sentono": "sent", "senz": "senz", "senza": "senz", "separa": "separ", "separando": "separ", "separandosi": "separ", "separano": "separ", "separar": "separ", "separare": "separ", "separarlo": "separ", "separarono": "separ", "separarsi": "separ", "separata": "separ", "separatamente": "separat", "separate": "separ", "separati": "separ", "separatista": "separat", "separatiste": "separat", "separatisti": "separat", "separato": "separ", "separatone": "separaton", "separava": "separ", "separavan": "separavan", "separazione": "separ", "separazioni": "separ", "sepolta": "sepolt", "sepolte": "sepolt", "sepolti": "sepolt", "sepolto": "sepolt", "seppe": "sepp", "seppellirsi": "seppell", "seppero": "sepper", "seppi": "sepp", "seppo": "sepp", "seppur": "seppur", "seq": "seq", "sequestra": "sequestr", "sequestrare": "sequestr", "sequestrata": "sequestr", "sequestrate": "sequestr", "sequestrati": "sequestr", "sequestrato": "sequestr", "sequestri": "sequestr", "sequestro": "sequestr", "sera": "ser", "serafino": "serafin", "seraing": "seraing", "serata": "ser", "serato": "ser", "serba": "serb", "serbando": "serb", "serbano": "serb", "serbarceli": "serb", "serbarsi": "serb", "serbate": "serb", "serbateli": "serbatel", "serbatelo": "serbatel", "serbatoio": "serbatoi", "serbava": "serb", "serbavano": "serb", "serbe": "serb", "serbi": "serb", "serbo": "serb", "serbò": "serb", "serena": "seren", "serenissimo": "serenissim", "serenità": "seren", "sereno": "seren", "serfi": "serf", "sergente": "sergent", "sergi": "serg", "sergio": "serg", "sergno": "sergn", "seri": "ser", "seria": "ser", "serial": "serial", "seriamente": "ser", "serie": "ser", "series": "series", "serietà": "seriet", "serio": "ser", "serissimo": "serissim", "serizi": "seriz", "serono": "ser", "serpe": "serp", "serpeggiamento": "serpegg", "serpeggiando": "serpegg", "serpeggiante": "serpegg", "serpeggianti": "serpegg", "serpeggiare": "serpegg", "serpellini": "serpellin", "serpendo": "serp", "serpenti": "serpent", "serpi": "serp", "serra": "serr", "serrata": "serr", "serrati": "serr", "serratissimo": "serratissim", "serrato": "serr", "serratura": "serratur", "serre": "serr", "serri": "serr", "serrra": "serrr", "serva": "serv", "servano": "serv", "serve": "serv", "servello": "servell", "servendolo": "serv", "servendosene": "serv", "serventi": "servent", "servetta": "servett", "servi": "serv", "servì": "serv", "serviamo": "serv", "servicio": "servic", "servile": "servil", "servilismo": "servil", "servir": "serv", "servirà": "serv", "serviranno": "serv", "servire": "serv", "servirebbe": "serv", "servirgli": "serv", "servirla": "serv", "servirli": "serv", "servirlo": "serv", "servirò": "serv", "serviron": "serviron", "servirono": "serv", "servirsene": "serv", "servirsi": "serv", "servirvi": "serv", "servisse": "serviss", "servita": "serv", "servite": "serv", "serviti": "serv", "servito": "serv", "servitor": "servitor", "servitore": "servitor", "servitori": "servitor", "servitù": "servitù", "serviva": "serv", "servivano": "serv", "servizi": "serviz", "servizietto": "serviziett", "servizio": "serviz", "servo": "serv", "servodio": "servod", "servono": "serv", "sesani": "sesan", "sesia": "ses", "sessant": "sessant", "sessanta": "sessant", "sessantaquattro": "sessantaquattr", "sessantina": "sessantin", "sessi": "sess", "sessione": "session", "sesso": "sess", "sessuale": "sessual", "sessuali": "sessual", "sessualmente": "sessual", "sesta": "sest", "sesto": "sest", "sestri": "sestr", "set": "set", "seta": "set", "setacciamente": "setacc", "setacciando": "setacc", "sete": "set", "setien": "setien", "sett": "sett", "settala": "settal", "settant": "settant", "settantina": "settantin", "settaria": "settar", "sette": "sett", "settembre": "settembr", "settentrionale": "settentrional", "settentrionali": "settentrional", "settentrione": "settentrion", "settima": "settim", "settimana": "settiman", "settimanale": "settimanal", "settimanali": "settimanal", "settimane": "settiman", "settime": "settim", "settimo": "settim", "settore": "settor", "settori": "settor", "settoriale": "settorial", "settoriali": "settorial", "seul": "seul", "sevendosi": "sev", "severa": "sever", "severamente": "sever", "severe": "sev", "severi": "sever", "severissime": "severissim", "severissimi": "severissim", "severo": "sever", "sevitie": "sevit", "sex": "sex", "sexi": "sex", "seyed": "seyed", "seymandi": "seymand", "sezione": "sezion", "sezioni": "sezion", "sf": "sf", "sfaccendati": "sfaccend", "sfacciata": "sfacc", "sfacciataggine": "sfacciataggin", "sfacciato": "sfacc", "sfama": "sfam", "sfarzosa": "sfarzos", "sfarzosamente": "sfarzos", "sfarzose": "sfarzos", "sfarzosi": "sfarzos", "sfera": "sfer", "sferra": "sferr", "sferrare": "sferr", "sferrato": "sferr", "sferzando": "sferz", "sfida": "sfid", "sfidante": "sfidant", "sfidare": "sfid", "sfide": "sfid", "sfiducia": "sfiduc", "sfigurata": "sfigur", "sfilare": "sfil", "sfilarono": "sfil", "sfilata": "sfil", "sfilati": "sfil", "sfilato": "sfil", "sfinimento": "sfin", "sfiorando": "sfior", "sfiorare": "sfior", "sfiorava": "sfior", "sfiorita": "sfior", "sfociano": "sfoc", "sfociare": "sfoc", "sfociato": "sfoc", "sfoderando": "sfoder", "sfoderate": "sfoder", "sfoderò": "sfod", "sfogar": "sfog", "sfogare": "sfog", "sfogarsi": "sfog", "sfogava": "sfog", "sfoggi": "sfogg", "sfoggia": "sfogg", "sfoghi": "sfog", "sfogo": "sfog", "sfolgorati": "sfolgor", "sfolgoravano": "sfolgor", "sfollati": "sfoll", "sfonda": "sfond", "sfondarla": "sfond", "sfondata": "sfond", "sfondati": "sfond", "sfondo": "sfond", "sforacchiate": "sforacc", "sforare": "sfor", "sformato": "sform", "sfornare": "sforn", "sfortuna": "sfortun", "sfortunata": "sfortun", "sfortunato": "sfortun", "sforzai": "sforza", "sforzarsi": "sforz", "sforzasser": "sforzasser", "sforzati": "sforz", "sforzava": "sforz", "sforzesco": "sforzesc", "sforzi": "sforz", "sforzo": "sforz", "sfottò": "sfott", "sfrattar": "sfratt", "sfrattasse": "sfratt", "sfrattata": "sfratt", "sfrattati": "sfratt", "sfrattato": "sfratt", "sfratto": "sfratt", "sfrecciato": "sfrecc", "sfregiati": "sfreg", "sfregiato": "sfreg", "sfregio": "sfreg", "sfrenata": "sfren", "sfrenatezza": "sfrenatezz", "sfrondati": "sfrond", "sfrontatezza": "sfrontatezz", "sfruttando": "sfrutt", "sfruttare": "sfrutt", "sfruttato": "sfrutt", "sfugge": "sfugg", "sfuggì": "sfugg", "sfuggir": "sfugg", "sfuggirci": "sfugg", "sfuggire": "sfugg", "sfuggisse": "sfuggiss", "sfuggita": "sfugg", "sfuggite": "sfugg", "sfuggito": "sfugg", "sfuggono": "sfugg", "sfumando": "sfum", "sfumato": "sfum", "sfumature": "sfumatur", "sfumavano": "sfum", "sg": "sg", "sgambetto": "sgambett", "sgangheratamente": "sgangherat", "sgangherate": "sgangher", "sgangherati": "sgangher", "sgangherato": "sgangher", "sgarbata": "sgarb", "sgarbatamente": "sgarbat", "sgarbatezze": "sgarbatezz", "sgarbato": "sgarb", "sgarbi": "sgarb", "sgarbossa": "sgarboss", "sgherri": "sgherr", "sgherro": "sgherr", "sghignazzando": "sghignazz", "sghignazzava": "sghignazz", "sgomberare": "sgomber", "sgombero": "sgomber", "sgombra": "sgombr", "sgombrare": "sgombr", "sgombrate": "sgombr", "sgombro": "sgombr", "sgomentata": "sgoment", "sgomentate": "sgoment", "sgomentati": "sgoment", "sgomenti": "sgoment", "sgomento": "sgoment", "sgomitolandosi": "sgomitol", "sgozzata": "sgozz", "sgradevole": "sgradevol", "sgraffiatura": "sgraffiatur", "sgraffignato": "sgraffign", "sgranchì": "sgranc", "sgranchirsi": "sgranc", "sgranocchiato": "sgranocc", "sgretolavano": "sgretol", "sgridata": "sgrid", "sgrò": "sgrò", "sgruppò": "sgrupp", "sguaiata": "sguai", "sguaiato": "sguai", "sgualcita": "sgualc", "sguardi": "sguard", "sguardo": "sguard", "sguattero": "sguatter", "sguazzar": "sguazz", "sguazzava": "sguazz", "sguazzi": "sguazz", "sguizza": "sguizz", "sgusciavano": "sgusc", "sh": "sh", "shaath": "shaath", "shadchin": "shadchin", "shafranik": "shafranik", "shah": "shah", "shahak": "shahak", "shali": "shal", "shalimar": "shalim", "shankar": "shank", "share": "shar", "sharma": "sharm", "shatoievsk": "shatoievsk", "sheen": "sheen", "sheffield": "sheffield", "sheila": "sheil", "shelley": "shelley", "sheridan": "sheridan", "sherman": "sherman", "shield": "shield", "shiff": "shiff", "shimer": "shimer", "shimon": "shimon", "shinji": "shinj", "ship": "ship", "shipping": "shipping", "shirley": "shirley", "shiro": "shir", "shiskin": "shiskin", "shore": "shor", "shos": "shos", "show": "show", "shqipetarè": "shqipetar", "shropshire": "shropsh", "shuar": "shu", "shurà": "shur", "shuster": "shuster", "shygulla": "shygull", "si": "si", "sì": "sì", "sia": "sia", "siaca": "siac", "siam": "siam", "siamo": "siam", "sian": "sian", "siano": "sian", "siate": "siat", "siatelo": "siatel", "siberiano": "siber", "sic": "sic", "sicari": "sicar", "sicché": "sicc", "sicchè": "sicc", "siccità": "siccit", "siccome": "siccom", "sichuan": "sichuan", "sicignano": "sicign", "sicilcassa": "sicilcass", "sicilia": "sicil", "siciliana": "sicilian", "siciliane": "sicilian", "siciliani": "sicilian", "siciliano": "sicil", "sicilie": "sicil", "sicu": "sicu", "sicuerezza": "sicuerezz", "sicura": "sicur", "sicuramente": "sicur", "sicure": "sicur", "sicurezza": "sicurezz", "sicuri": "sicur", "sicuro": "sicur", "sicurtà": "sicurt", "sicurvita": "sicurv", "sicuti": "sic", "siderurgia": "siderurg", "siderurgica": "siderurg", "sidney": "sidney", "sidrome": "sidrom", "siede": "sied", "siele": "siel", "siena": "sien", "sieno": "sien", "siepe": "siep", "siepi": "siep", "sierra": "sierr", "siés": "siès", "siete": "siet", "siffatta": "siffatt", "sifir": "sif", "sig": "sig", "sigarette": "sigarett", "sigillati": "sigill", "sigillava": "sigill", "sigilli": "sigill", "siglando": "sigl", "siglata": "sigl", "siglati": "sigl", "siglato": "sigl", "significa": "signif", "significando": "signific", "significano": "signific", "significante": "signific", "significar": "signific", "significare": "signific", "significasse": "signific", "significassero": "signific", "significativa": "signif", "significativamente": "signific", "significativi": "signif", "significativo": "signif", "significato": "signific", "significava": "signific", "significavano": "signific", "significazione": "signif", "significhi": "signif", "signor": "signor", "signora": "signor", "signore": "signor", "signorelli": "signorell", "signorello": "signorell", "signori": "signor", "signoria": "signor", "signorile": "signoril", "signorili": "signoril", "signorina": "signorin", "signorini": "signorin", "signorino": "signorin", "signorona": "signoron", "signoroni": "signoron", "sigonella": "sigonell", "sigrid": "sigrid", "sii": "sii", "sij": "sij", "sijno": "sijn", "sil": "sil", "silajdzic": "silajdzic", "silajzdic": "silajzdic", "silenzi": "silenz", "silenzio": "silenz", "silenziosa": "silenz", "silenziosi": "silenz", "silenzioso": "silenz", "siljdzic": "siljdzic", "sillaba": "sillab", "sillabe": "sillab", "sillogismo": "sillog", "sils": "sils", "silvan": "silvan", "silvano": "silv", "silvestro": "silvestr", "silvetri": "silvetr", "silvi": "silv", "silvia": "silv", "silvio": "silv", "simbionte": "simbiont", "simboli": "simbol", "simbolica": "simbol", "simbolicamente": "simbol", "simbolici": "simbol", "simbolo": "simbol", "simi": "sim", "simil": "simil", "simile": "simil", "simili": "simil", "similitudine": "similitudin", "similitudini": "similitudin", "similmente": "simil", "simint": "simint", "simmetria": "simmetr", "simmetrica": "simmetr", "simod": "simod", "simon": "simon", "simona": "simon", "simone": "simon", "simonetta": "simonett", "simoni": "simon", "simpatia": "simpat", "simpatie": "simpat", "simpson": "simpson", "simulando": "simul", "simulazione": "simul", "simutenkov": "simutenkov", "sin": "sin", "sinatur": "sinatur", "sincera": "sincer", "sinceramente": "sincer", "sincerarmi": "sincer", "sincerarsi": "sincer", "sincerato": "sincer", "sincerità": "sincer", "sincero": "sincer", "sindacale": "sindacal", "sindacali": "sindacal", "sindacalista": "sindacal", "sindacalisti": "sindacal", "sindacati": "sindac", "sindacato": "sindac", "sindaci": "sindac", "sindaco": "sindac", "sindrome": "sindrom", "sinergie": "sinerg", "singapore": "singapor", "singh": "sing", "singhiozzando": "singhiozz", "singhiozzare": "singhiozz", "singhiozzi": "singhiozz", "singhiozzìo": "singhiozzì", "single": "singl", "singola": "singol", "singolar": "singol", "singolare": "singol", "singolari": "singolar", "singolarità": "singolar", "singolarmente": "singolar", "singole": "singol", "singoli": "singol", "singolo": "singol", "singrai": "singra", "sinigaglia": "sinigagl", "sinistra": "sinistr", "sinistrà": "sinistr", "sinistre": "sinistr", "sinistri": "sinistr", "sinistro": "sinistr", "sinistrosità": "sinistros", "siniustra": "siniustr", "sino": "sin", "sinodale": "sinodal", "sinonimo": "sinonim", "sinora": "sinor", "sinotrans": "sinotrans", "sint": "sint", "sintesi": "sintes", "sintetizza": "sintetizz", "sintetizzati": "sintetizz", "sintetizzato": "sintetizz", "sintomi": "sintom", "sintomo": "sintom", "sintonia": "sinton", "sipario": "sipar", "sir": "sir", "sirac": "sirac", "siracus": "siracus", "siracusa": "siracus", "sirene": "siren", "siria": "sir", "siro": "sir", "sirone": "siron", "sirti": "sirt", "sis": "sis", "sisa": "sis", "sisde": "sisd", "sisley": "sisley", "sisma": "sism", "sismica": "sismic", "sismici": "sismic", "sismologica": "sismolog", "sisport": "sisport", "sistema": "sistem", "sistemà": "sistem", "sistemarle": "sistem", "sistemati": "sistem", "sistemazione": "sistem", "sistemi": "sistem", "sistina": "sistin", "sistma": "sistm", "sisto": "sist", "sitemi": "sitem", "siti": "sit", "sito": "sit", "sitto": "sitt", "situa": "situ", "situarsi": "situ", "situata": "situ", "situation": "situation", "situato": "situ", "situazione": "situazion", "situazionè": "situazion", "situazioni": "situazion", "situerebbe": "situ", "siulp": "siulp", "siviglia": "sivigl", "sixto": "sixt", "ski": "ski", "skin": "skin", "skinhead": "skinhead", "skofic": "skofic", "skuhravy": "skuhravy", "sl": "sl", "sla": "sla", "slalom": "slalom", "slam": "slam", "slancia": "slanc", "slanciano": "slanc", "slanciarono": "slanc", "slanciarsi": "slanc", "slancio": "slanc", "slanciò": "slanc", "sledog": "sledog", "slegati": "sleg", "slegò": "sleg", "slip": "slip", "slittare": "slitt", "slitterebbe": "slitt", "slogan": "slogan", "slovacchia": "slovacc", "slovenia": "sloven", "sloveno": "sloven", "sly": "sly", "smalia": "smal", "smallville": "smallvill", "smaltir": "smalt", "smaltire": "smalt", "smaltita": "smalt", "smanacciando": "smanacc", "smanacciata": "smanacc", "smania": "sman", "smanie": "sman", "smaniosi": "smanios", "smanioso": "smanios", "smantellamento": "smantell", "smantellare": "smantell", "smantellato": "smantell", "smarcato": "smarc", "smarrimenti": "smarr", "smarrimento": "smarr", "smarrire": "smarr", "smarrita": "smarr", "smarriti": "smarr", "smarrito": "smarr", "smarriva": "smarr", "sme": "sme", "smembramento": "smembr", "smembrare": "smembr", "smembrato": "smembr", "smentendo": "sment", "smentire": "sment", "smentisce": "sment", "smentiscono": "sment", "smentita": "sment", "smentito": "sment", "smentiva": "sment", "smeralda": "smerald", "smesse": "smess", "smette": "smett", "smetter": "smetter", "smettere": "smett", "smettessero": "smett", "smettete": "smett", "smetton": "smetton", "smi": "smi", "smile": "smil", "smistamento": "smist", "smisurato": "smisur", "smith": "smith", "smits": "smits", "smm": "smm", "smonta": "smont", "smontando": "smont", "smontarlo": "smont", "smontarono": "smont", "smontata": "smont", "smontati": "smont", "smontato": "smont", "smonterebbe": "smont", "smontò": "smont", "smorbare": "smorb", "smorto": "smort", "smorza": "smorz", "smorzare": "smorz", "smossa": "smoss", "smosso": "smoss", "smovere": "smov", "smoverlo": "smov", "smozzicata": "smozzic", "smozzicate": "smozzic", "smozzicato": "smozzic", "smunta": "smunt", "smunti": "smunt", "smunto": "smunt", "smurare": "smur", "smuravano": "smur", "snam": "snam", "snaturare": "snatur", "sneh": "sneh", "snelle": "snell", "snellisca": "snell", "snia": "sni", "snidata": "snid", "snob": "snob", "so": "so", "soastenuto": "soasten", "soave": "soav", "soavemente": "soavement", "soavi": "soav", "soavissimo": "soavissim", "soavità": "soavit", "sobborgo": "sobborg", "soc": "soc", "socchiude": "socchiud", "socchiusa": "socchius", "socchiuso": "socchius", "soccombente": "soccombent", "soccombere": "soccomb", "soccorrer": "soccorrer", "soccorrere": "soccorr", "soccorrerlo": "soccorr", "soccorrersi": "soccorr", "soccorresse": "soccorress", "soccorretemi": "soccorretem", "soccorreva": "soccorr", "soccorrevoli": "soccorrevol", "soccorritori": "soccorritor", "soccorsa": "soccors", "soccorsi": "soccors", "soccorso": "soccors", "sochaux": "sochaux", "soci": "soc", "socialdemocratici": "socialdemocrat", "sociale": "social", "sociali": "social", "socialismo": "social", "socialista": "social", "socialistà": "social", "socialisti": "social", "socialità": "social", "socializzazione": "socializz", "socialmente": "social", "societa": "societ", "società": "societ", "societario": "societar", "society": "society", "socievole": "socievol", "socio": "soc", "socioeconomiche": "socioeconom", "sociologo": "sociolog", "soda": "sod", "sodaglia": "sodagl", "sodalizio": "sodaliz", "sodano": "sod", "soddisfacente": "soddisfacent", "soddisfare": "soddisf", "soddisfarla": "soddisf", "soddisfarli": "soddisf", "soddisfarlo": "soddisf", "soddisfatta": "soddisfatt", "soddisfatti": "soddisfatt", "soddisfattissimo": "soddisfattissim", "soddisfatto": "soddisfatt", "soddisfazione": "soddisf", "soddisfazioni": "soddisf", "soddisfece": "soddisfec", "soddisfi": "soddisf", "sodetta": "sodett", "sodo": "sod", "sofferente": "sofferent", "sofferenza": "sofferent", "sofferenze": "sofferent", "sofferma": "sofferm", "soffermandosi": "sofferm", "soffermasse": "sofferm", "soffermata": "sofferm", "soffermato": "sofferm", "soffermava": "sofferm", "sofferta": "soffert", "sofferte": "soffert", "sofferti": "soff", "sofferto": "soffert", "soffi": "soff", "soffian": "soffian", "soffiando": "soff", "soffiare": "soff", "soffici": "soffic", "soffio": "soff", "soffiò": "soff", "soffitta": "soffitt", "soffocare": "soffoc", "soffogargli": "soffog", "soffogarglielo": "soffog", "soffogarla": "soffog", "soffogarlo": "soffog", "soffogata": "soffog", "soffogati": "soffog", "soffogato": "soffog", "soffogava": "soffog", "soffogavano": "soffog", "soffre": "soffr", "soffrir": "soffr", "soffrire": "soffr", "soffriva": "soffr", "soffrivano": "soffr", "soffrono": "soffr", "soffusa": "soffus", "sofia": "sof", "sofibond": "sofibond", "sofisticate": "sofistic", "sofisticati": "sofistic", "sofisticatissime": "sofisticatissim", "software": "softw", "sogeafit": "sogeafit", "sogefi": "sogef", "sogesfit": "sogesfit", "soggetta": "soggett", "soggette": "soggett", "soggetti": "soggett", "soggettività": "soggett", "soggetto": "soggett", "sogghignando": "sogghign", "sogghigni": "sogghign", "sogghigno": "sogghign", "soggiogata": "soggiog", "soggiogate": "soggiog", "soggiogato": "soggiog", "soggiogava": "soggiog", "soggiornato": "soggiorn", "soggiorni": "soggiorn", "soggiorno": "soggiorn", "soggiunge": "soggiung", "soggiunger": "soggiunger", "soggiungeva": "soggiung", "soggiunse": "soggiuns", "soggolo": "soggol", "sogguardata": "sogguard", "sogguardava": "sogguard", "soglia": "sogl", "sogliano": "sogl", "soglion": "soglion", "sognare": "sogn", "sognassi": "sogn", "sognate": "sogn", "sognato": "sogn", "sognava": "sogn", "sogni": "sogn", "sogno": "sogn", "sognò": "sogn", "soir": "soir", "sol": "sol", "sola": "sol", "solamente": "sol", "solange": "solang", "solare": "sol", "solazzi": "solazz", "solbiatese": "solbiates", "solcata": "solc", "solco": "solc", "soldatacci": "soldatacc", "soldatesca": "soldatesc", "soldati": "sold", "soldato": "sold", "soldi": "sold", "soldo": "sold", "sole": "sol", "solecismi": "solec", "solenne": "solenn", "solennemente": "solenn", "solenni": "solenn", "solennità": "solenn", "soleva": "sol", "solevano": "sol", "soli": "sol", "solidali": "solidal", "solidarieta": "solidariet", "solidarietà": "solidariet", "solidarismo": "solidar", "solide": "solid", "solidificato": "solidific", "solido": "solid", "solimeno": "solimen", "solimoes": "solimoes", "solinas": "solinas", "solistà": "solist", "solisti": "solist", "solita": "sol", "solitamente": "solit", "solitari": "solitar", "solitaria": "solitar", "solitario": "solitar", "solite": "sol", "soliti": "sol", "solito": "sol", "solitudine": "solitudin", "sollecita": "sollec", "sollecitandoli": "sollecit", "sollecitare": "sollecit", "sollecitarono": "sollecit", "sollecitata": "sollecit", "sollecitato": "sollecit", "sollecitatori": "sollecit", "sollecitava": "sollecit", "sollecitazione": "sollecit", "sollecitazioni": "sollecit", "sollecito": "sollec", "sollecitudine": "sollecitudin", "solleuarsi": "solleu", "solleva": "soll", "sollevando": "sollev", "sollevano": "soll", "sollevar": "sollev", "sollevare": "sollev", "sollevarle": "sollev", "sollevarvi": "sollev", "sollevata": "sollev", "sollevate": "soll", "sollevati": "sollev", "sollevato": "sollev", "sollevava": "sollev", "sollevavano": "sollev", "sollevazione": "sollev", "sollevazioni": "sollev", "solleverà": "sollev", "sollevò": "sollev", "sollievo": "soll", "solo": "sol", "soltanto": "soltant", "soltato": "solt", "soluzione": "soluzion", "soluzioni": "soluzion", "solvibilità": "solvibil", "somaglia": "somagl", "somal": "somal", "somala": "somal", "somale": "somal", "somalfruit": "somalfruit", "somali": "somal", "somalia": "somal", "somalo": "somal", "somaschi": "somasc", "some": "som", "somiglia": "somigl", "somigliante": "somigl", "somiglianti": "somigl", "somigliantissimi": "somigliantissim", "somiglianza": "somigl", "somigliare": "somigl", "somlia": "soml", "somma": "somm", "sommamente": "somm", "sommando": "somm", "sommari": "sommar", "sommaria": "sommar", "sommariamente": "sommar", "sommario": "sommar", "sommato": "somm", "somme": "somm", "sommersi": "somm", "sommerso": "sommers", "sommessa": "sommess", "sommessamente": "sommess", "sommesse": "sommess", "sommesso": "sommess", "sommi": "somm", "somministra": "somministr", "somministrarcene": "somministr", "somministrare": "somministr", "sommissione": "sommission", "sommissioni": "sommission", "sommità": "sommit", "sommossa": "sommoss", "son": "son", "sonare": "son", "sonata": "son", "sonato": "son", "sonator": "sonator", "sonava": "son", "sonda": "sond", "sondaggi": "sondagg", "sondaggio": "sondagg", "sondalo": "sondal", "sondel": "sondel", "sondrio": "sondr", "sonerà": "son", "sonetti": "sonett", "sonetto": "sonett", "sonia": "son", "sonni": "sonn", "sonnifero": "sonnifer", "sonno": "sonn", "sonnolenta": "sonnolent", "sonnolento": "sonnolent", "sonntag": "sonntag", "sono": "son", "sonò": "son", "sonora": "sonor", "sonoramente": "sonor", "sonore": "sonor", "sonori": "sonor", "sonorità": "sonor", "sonoro": "sonor", "sopaf": "sopaf", "sopire": "sop", "sopita": "sop", "sopiti": "sop", "sopito": "sop", "sopiva": "sop", "soppiatto": "soppiatt", "sopporta": "sopport", "sopportabile": "sopport", "sopportare": "sopport", "sopportatela": "sopportatel", "sopportato": "sopport", "sopportava": "sopport", "sopportavano": "sopport", "sopportiamo": "sopport", "soppressa": "soppress", "soppressione": "soppression", "soppresso": "soppress", "sopprimendo": "sopprim", "sopprimere": "sopprim", "sopra": "sopr", "soprabbondanti": "soprabbond", "sopraccigli": "sopraccigl", "sopracciglio": "sopraccigl", "sopraccitata": "sopraccit", "sopraccitato": "sopraccit", "sopraddetti": "sopraddett", "sopraffatta": "sopraffatt", "sopraffatte": "sopraffatt", "sopraffatti": "sopraffatt", "sopraffatto": "sopraffatt", "sopraffino": "sopraffin", "sopraggiungere": "sopraggiung", "sopraggiungevano": "sopraggiung", "sopraggiunse": "sopraggiuns", "sopraggiunte": "sopraggiunt", "sopralluogo": "sopralluog", "soprammercato": "soprammerc", "soprannome": "soprannom", "soprannominato": "soprannomin", "soprappensiero": "soprappensier", "soprarrivati": "soprarriv", "soprarrivato": "soprarriv", "soprassalto": "soprassalt", "soprattutto": "soprattutt", "sopravanzare": "sopravanz", "sopravanzava": "sopravanz", "sopravvalutata": "sopravvalut", "sopravvento": "sopravvent", "sopravvenuto": "sopravven", "sopravvissuta": "sopravviss", "sopravvissuti": "sopravviss", "sopravvissuto": "sopravviss", "sopravvivenza": "sopravvivent", "sopravvivere": "sopravviv", "sopravvivono": "sopravviv", "soprintendenti": "soprintendent", "soprintendenza": "soprintendent", "soprintendenze": "soprintendent", "soprintendere": "soprintend", "soprintendevano": "soprintend", "soprusi": "soprus", "sopruso": "soprus", "soqquadro": "soqquadr", "sor": "sor", "sora": "sor", "soranzo": "soranz", "sorbello": "sorbell", "sorbir": "sorb", "sorda": "sord", "sordamente": "sord", "sordina": "sordin", "sordo": "sord", "sorella": "sorell", "sorelle": "sorell", "sorellina": "sorellin", "sorge": "sorg", "sorgente": "sorgent", "sorgenti": "sorgent", "sorger": "sorger", "sorgere": "sorg", "sorgerete": "sorg", "sorgesse": "sorgess", "sorgeva": "sorg", "sorgevano": "sorg", "sorgon": "sorgon", "sorin": "sorin", "sormontate": "sormont", "soros": "soros", "sorpassava": "sorpass", "sorpasso": "sorpass", "sorprende": "sorpr", "sorprendendo": "sorprend", "sorprender": "sorprender", "sorprendere": "sorprend", "sorprenderlo": "sorprend", "sorprendermi": "sorprend", "sorpresa": "sorpres", "sorprese": "sorpres", "sorpresi": "sorpres", "sorpreso": "sorpres", "sorreggendo": "sorregg", "sorreggeva": "sorregg", "sorretta": "sorrett", "sorretto": "sorrett", "sorridendo": "sorrid", "sorridente": "sorrident", "sorridenti": "sorrident", "sorridere": "sorrid", "sorrideva": "sorrid", "sorridi": "sorrid", "sorrise": "sorris", "sorrisi": "sorris", "sorriso": "sorris", "sorsi": "sors", "sorso": "sors", "sorta": "sort", "sorte": "sort", "sorti": "sort", "sortite": "sort", "sortito": "sort", "sorto": "sort", "sorveglianza": "sorvegl", "sorvegliare": "sorvegl", "sorvegliato": "sorvegl", "sorvegliava": "sorvegl", "sorveglieranno": "sorvegl", "sorvolato": "sorvol", "sos": "sos", "sosa": "sos", "sosia": "sos", "soskoviets": "soskoviets", "sospende": "sosp", "sospender": "sospender", "sospendere": "sospend", "sospendesse": "sospendess", "sospendeva": "sospend", "sospension": "sospension", "sospensione": "sospension", "sospensioni": "sospension", "sospensiva": "sospens", "sospesa": "sospes", "sospese": "sospes", "sospesero": "sospeser", "sospesi": "sospes", "sospeso": "sospes", "sospetta": "sospett", "sospettando": "sospett", "sospettar": "sospett", "sospettarci": "sospett", "sospettare": "sospett", "sospettate": "sospett", "sospettava": "sospett", "sospette": "sospett", "sospetti": "sospett", "sospettiamo": "sospett", "sospetto": "sospett", "sospettosa": "sospett", "sospettosamente": "sospett", "sospettosi": "sospett", "sospettoso": "sospett", "sospinse": "sospins", "sospirando": "sospir", "sospirar": "sospir", "sospirare": "sospir", "sospirata": "sospir", "sospirato": "sospir", "sospirava": "sospir", "sospiri": "sospir", "sospiro": "sospir", "sospirò": "sosp", "sosta": "sost", "sostantivo": "sostant", "sostanza": "sostanz", "sostanze": "sostanz", "sostanziale": "sostanzial", "sostanzialmente": "sostanzial", "sostanzioso": "sostanz", "sostato": "sost", "sostegno": "sostegn", "sostenendo": "sosten", "sostener": "sostener", "sostenere": "sosten", "sostenerla": "sosten", "sostenerlo": "sosten", "sostenerne": "sosten", "sostenete": "sosten", "sosteneva": "sosten", "sostenevano": "sosten", "sostenevo": "sosten", "sostenga": "sosteng", "sostengano": "sosteng", "sostengo": "sosteng", "sostengono": "sosteng", "sostenibili": "sosten", "sostenitore": "sostenitor", "sostenitori": "sostenitor", "sostenitrice": "sostenitr", "sostenne": "sostenn", "sostennero": "sostenner", "sostenuta": "sosten", "sostenute": "sosten", "sostenuti": "sosten", "sostenuto": "sosten", "sosterrà": "sosterr", "sostiene": "sostien", "sostituendo": "sostitu", "sostituì": "sostitu", "sostituir": "sostitu", "sostituire": "sostitu", "sostituirlo": "sostitu", "sostituirsi": "sostitu", "sostituisca": "sostitu", "sostituita": "sostitu", "sostituito": "sostitu", "sostituiva": "sostitu", "sostituti": "sostit", "sostituto": "sostit", "sostituzione": "sostitu", "sostiuisca": "sostiu", "sott": "sott", "sottana": "sottan", "sottentrando": "sottentr", "sotterfugi": "sotterfug", "sotterfugio": "sotterfug", "sotterranea": "sotterrane", "sotterraneo": "sotterrane", "sotterrare": "sotterr", "sotterrarli": "sotterr", "sotterrate": "sotterr", "sottigliezze": "sottigliezz", "sottil": "sottil", "sottile": "sottil", "sottili": "sottil", "sottilissimo": "sottilissim", "sottilmente": "sottil", "sottintesa": "sottintes", "sottintese": "sottintes", "sotto": "sott", "sottocoppa": "sottocopp", "sottolinea": "sottoline", "sottolineando": "sottolin", "sottolineano": "sottolin", "sottolineare": "sottolin", "sottolineato": "sottolin", "sottolineatura": "sottolineatur", "sottolineava": "sottolin", "sottomaestro": "sottomaestr", "sottomarina": "sottomarin", "sottomarino": "sottomarin", "sottomesso": "sottomess", "sottomettere": "sottomett", "sottoponendo": "sottopon", "sottoporre": "sottoporr", "sottoposta": "sottopost", "sottoposte": "sottopost", "sottoposti": "sottopost", "sottoposto": "sottopost", "sottoscala": "sottoscal", "sottoscritta": "sottoscritt", "sottoscritti": "sottoscritt", "sottoscritto": "sottoscritt", "sottoscrittore": "sottoscrittor", "sottoscrivere": "sottoscriv", "sottoscrizione": "sottoscrizion", "sottoscrizioni": "sottoscrizion", "sottosegretari": "sottosegretar", "sottosegretario": "sottosegretar", "sottosegretariop": "sottosegretariop", "sottosopra": "sottosopr", "sottostimato": "sottostim", "sottosuolo": "sottosuol", "sottotitolo": "sottotitol", "sottotono": "sottot", "sottovalutare": "sottovalut", "sottovalutata": "sottovalut", "sottovaluti": "sottoval", "sottovoce": "sottovoc", "sottraesse": "sottraess", "sottraevano": "sottr", "sottrar": "sottr", "sottrarci": "sottr", "sottrarre": "sottrarr", "sottrarsi": "sottr", "sottratta": "sottratt", "sottrattà": "sottratt", "sottratti": "sottratt", "sottrazione": "sottrazion", "sottrazioni": "sottrazion", "sottrici": "sottric", "sottufficiali": "sottufficial", "sottuficiali": "sottuficial", "sousa": "sous", "souzhou": "souzhou", "sovente": "sovent", "soverato": "sover", "soverchiare": "soverc", "soverchiarsi": "soverc", "soverchiasse": "soverc", "soverchiatore": "soverc", "soverchiatori": "soverc", "soverchieria": "soverchier", "soverchierie": "soverchier", "sovietica": "soviet", "sovietiche": "soviet", "sovietici": "soviet", "sovietico": "soviet", "sovrani": "sovran", "sovranità": "sovran", "sovrano": "sovr", "sovrappopolazione": "sovrappopol", "sovrapporre": "sovrapporr", "sovrapposti": "sovrappost", "sovrapproduzioni": "sovrapprodu", "sovraregionali": "sovraregional", "sovrastanti": "sovrast", "sovrastata": "sovrast", "sovrastato": "sovrast", "sovrastava": "sovrast", "sovrintendente": "sovrintendent", "sovrintendevano": "sovrintend", "sovrumana": "sovruman", "sovvenne": "sovvenn", "sovvenzione": "sovvenzion", "sovvenzioni": "sovvenzion", "sozzi": "sozz", "sozzo": "sozz", "sp": "sp", "spa": "spa", "spaak": "spaak", "spaccare": "spacc", "spaccati": "spacc", "spaccatura": "spaccatur", "spaccature": "spaccatur", "spaccia": "spacc", "spacciar": "spacc", "spacciavano": "spacc", "spaccone": "spaccon", "spada": "spad", "spadafora": "spadafor", "spadaio": "spadai", "spade": "spad", "spadone": "spadon", "spadoni": "spadon", "spaggiari": "spaggiar", "spagna": "spagn", "spagnola": "spagnol", "spagnolescamente": "spagnolesc", "spagnoli": "spagnol", "spagnolo": "spagnol", "spagnulo": "spagnul", "spago": "spag", "spal": "spal", "spalanca": "spalanc", "spalancan": "spalancan", "spalancando": "spalanc", "spalancarsi": "spalanc", "spalancata": "spalanc", "spalancate": "spalanc", "spalancati": "spalanc", "spalancato": "spalanc", "spalancava": "spalanc", "spalancò": "spalanc", "spalla": "spall", "spalle": "spall", "spalleggiano": "spallegg", "spalleggiati": "spallegg", "spalliera": "spallier", "spallone": "spallon", "spalti": "spalt", "spander": "spander", "spandersi": "spand", "spandeva": "spand", "spandevano": "spand", "spandino": "spandin", "spanu": "spanu", "spaolo": "spaol", "sparando": "spar", "sparare": "spar", "sparata": "spar", "sparato": "spar", "sparatogli": "sparatogl", "sparatoria": "sparator", "sparatorie": "sparator", "sparava": "spar", "sparecchiare": "sparecc", "sparecchiato": "sparecc", "sparge": "sparg", "sparger": "sparger", "spargerà": "sparg", "spargere": "sparg", "spargersi": "sparg", "spargeva": "sparg", "spargimento": "sparg", "spargono": "sparg", "spari": "spar", "sparir": "spar", "spariranno": "spar", "sparire": "spar", "sparisce": "spar", "spariscono": "spar", "sparite": "spar", "spariti": "spar", "sparito": "spar", "spariva": "spar", "sparizione": "sparizion", "sparò": "spar", "sparpagliati": "sparpagl", "sparpagliato": "sparpagl", "sparpagliò": "sparpagl", "sparsa": "spars", "sparsavi": "spars", "sparse": "spars", "sparsero": "sparser", "sparsi": "spars", "sparsim": "sparsim", "sparso": "spars", "spartire": "spart", "spartiti": "spart", "spartitoria": "spartitor", "spartizione": "spartizion", "spasimi": "spasim", "spasimo": "spasim", "spassi": "spass", "spassionato": "spassion", "spasso": "spass", "spatari": "spatar", "spatio": "spat", "spatriarsi": "spatr", "spaulding": "spaulding", "spauracchi": "spauracc", "spauracchio": "spauracc", "spauriti": "spaur", "spaventare": "spavent", "spaventarsi": "spavent", "spaventata": "spavent", "spaventati": "spavent", "spaventato": "spavent", "spaventava": "spavent", "spaventevole": "spaventevol", "spaventi": "spavent", "spavento": "spavent", "spaventò": "spavent", "spaventosa": "spavent", "spaventosamente": "spavent", "spaventosi": "spavent", "spaventoso": "spavent", "spazi": "spaz", "spazia": "spaz", "spaziale": "spazial", "spazio": "spaz", "spaziose": "spazios", "spazza": "spazz", "spazzando": "spazz", "spazzar": "spazz", "spazzarla": "spazz", "spazzato": "spazz", "spc": "spc", "spd": "spd", "spe": "spe", "speaker": "speaker", "specchi": "specc", "specchia": "specc", "specchiava": "specc", "specchio": "specc", "speci": "spec", "special": "special", "speciale": "special", "speciali": "special", "specialista": "special", "specialisti": "special", "specialistiche": "specialist", "specialità": "special", "specializzata": "specializz", "specializzato": "specializz", "specializzazione": "specializz", "specializzazioni": "specializz", "specialmente": "special", "specie": "spec", "specifica": "specif", "specificamente": "specif", "specificando": "specific", "specificare": "specific", "specificata": "specific", "specificatamente": "specificat", "specificati": "specific", "specificato": "specific", "specificavano": "specific", "specifiche": "specif", "specifici": "specif", "specificità": "specif", "specifico": "specif", "speculare": "specul", "speculari": "specular", "speculativo": "specul", "speculatori": "specul", "speculazione": "specul", "speculazioni": "specul", "spedale": "spedal", "spedì": "sped", "spedir": "sped", "spedire": "sped", "spedirlo": "sped", "spediron": "spediron", "spedirono": "sped", "spedisca": "sped", "spediscono": "sped", "spedisse": "spediss", "spedita": "sped", "speditamente": "spedit", "speditane": "speditan", "spediti": "sped", "speditivo": "spedit", "spedito": "sped", "spedizione": "spedizion", "spedizioni": "spedizion", "speed": "speed", "spegnendo": "spegn", "spegner": "spegner", "spegnere": "spegn", "spegnersi": "spegn", "spegnervi": "spegn", "spegnesse": "spegness", "spegnimento": "spegn", "speice": "speic", "spelacchiata": "spelacc", "spelacchiati": "spelacc", "spendendo": "spend", "spender": "spender", "spendere": "spend", "spenderebbe": "spend", "spenderli": "spend", "spenderlo": "spend", "spenderò": "spend", "spendevano": "spend", "spendiamo": "spend", "spennacchiati": "spennacc", "spennacchiato": "spennacc", "spensierata": "spensier", "spensierato": "spensier", "spenta": "spent", "spenti": "spent", "spento": "spent", "spenzolata": "spenzol", "spenzolate": "spenzol", "spenzolava": "spenzol", "spenzolavano": "spenzol", "spera": "sper", "sperando": "sper", "sperano": "sper", "speranza": "speranz", "speranze": "speranz", "sperar": "sper", "sperare": "sper", "sperarlo": "sper", "sperasse": "sper", "sperati": "sper", "sperato": "sper", "sperava": "sper", "speravo": "sper", "sperdute": "sperd", "speriamo": "sper", "spericolata": "spericol", "sperimentale": "sperimental", "sperimentati": "speriment", "sperimentato": "speriment", "spero": "sper", "speroni": "speron", "sperperìo": "sperperì", "sperpero": "sperper", "sperticate": "spertic", "spesa": "spes", "spese": "spes", "spesi": "spes", "speso": "spes", "spesso": "spess", "spetta": "spett", "spettabili": "spettabil", "spettacolare": "spettacol", "spettacolarizzazione": "spettacolarizz", "spettacoli": "spettacol", "spettacolo": "spettacol", "spettante": "spettant", "spettatore": "spettator", "spettatori": "spettator", "spetterà": "spett", "spettro": "spettr", "spezia": "spez", "speziale": "spezial", "spezzano": "spezz", "spezzare": "spezz", "spezzarlo": "spezz", "spezzate": "spezz", "spezzato": "spezz", "spezzerò": "spezz", "spezzone": "spezzon", "spezzoni": "spezzon", "spia": "spi", "spiacevole": "spiacevol", "spiacevoli": "spiacevol", "spiagge": "spiagg", "spiaggia": "spiagg", "spianando": "spian", "spianargli": "spian", "spianarsi": "spian", "spianata": "spian", "spianate": "spian", "spianati": "spian", "spianato": "spian", "spianava": "spian", "spiando": "spi", "spianti": "spiant", "spiare": "spi", "spiattellar": "spiattell", "spiattellargli": "spiattell", "spiattellato": "spiattell", "spiava": "spi", "spiazzare": "spiazz", "spiazzo": "spiazz", "spicca": "spicc", "spiccando": "spicc", "spiccata": "spicc", "spiccato": "spicc", "spiccava": "spicc", "spiccavano": "spicc", "spicci": "spicc", "spicciar": "spicc", "spicciare": "spicc", "spicciarmi": "spicc", "spicciarsi": "spicc", "spicciarti": "spicc", "spicciatevi": "spicciat", "spicciato": "spicc", "spicciola": "spicciol", "spicciolare": "spicciol", "spicciolata": "spicciol", "spicciolati": "spicciol", "spicco": "spicc", "spiccò": "spicc", "spie": "spi", "spiega": "spieg", "spiegando": "spieg", "spiegandosi": "spieg", "spiegano": "spieg", "spiegar": "spieg", "spiegare": "spieg", "spiegargli": "spieg", "spiegarlo": "spieg", "spiegarsi": "spieg", "spiegarvi": "spieg", "spiegasse": "spieg", "spiegata": "spieg", "spiegatemi": "spiegatem", "spiegato": "spieg", "spiegava": "spieg", "spiegazion": "spiegazion", "spiegazione": "spiegazion", "spiegazioni": "spiegazion", "spiegel": "spiegel", "spieghi": "spieg", "spiegò": "spieg", "spielberg": "spielberg", "spierebbe": "spi", "spietata": "spiet", "spietati": "spiet", "spigadoro": "spigador", "spighe": "spig", "spighette": "spighett", "spillare": "spill", "spilli": "spill", "spillo": "spill", "spillò": "spill", "spilluzzicando": "spilluzzic", "spina": "spin", "spindler": "spindler", "spine": "spin", "spinelli": "spinell", "spinge": "sping", "spingendo": "sping", "spingendole": "sping", "spingendoli": "sping", "spingendolo": "sping", "spinger": "spinger", "spingerà": "sping", "spingere": "sping", "spingerebbe": "sping", "spingerli": "sping", "spingeva": "sping", "spingevan": "spingevan", "spingon": "spingon", "spingono": "sping", "spini": "spin", "spinola": "spinol", "spinosa": "spinos", "spinose": "spinos", "spinse": "spins", "spinsero": "spinser", "spinta": "spint", "spinte": "spint", "spinti": "spint", "spinto": "spint", "spintonato": "spinton", "spionaggio": "spionagg", "spione": "spion", "spiovuto": "spiov", "spiraglio": "spiragl", "spirale": "spiral", "spirate": "spir", "spirato": "spir", "spirava": "spir", "spiravano": "spir", "spire": "spir", "spiritati": "spirit", "spiritato": "spirit", "spiriti": "spir", "spirito": "spir", "spiritose": "spirit", "spirituale": "spiritual", "spirituali": "spiritual", "spiritualità": "spiritual", "spirò": "spir", "spizzico": "spizzic", "splendida": "splendid", "splendidezza": "splendidezz", "splendidi": "splendid", "splendido": "splendid", "splendore": "splendor", "spm": "spm", "spoglia": "spogl", "spogliarello": "spogliarell", "spogliarmi": "spogl", "spogliata": "spogl", "spogliate": "spogl", "spogliatevi": "spogliat", "spogliati": "spogl", "spogliato": "spogl", "spogliatoi": "spogliato", "spogliatolo": "spogliatol", "spogliatosi": "spogliat", "spogliava": "spogl", "spogliavano": "spogl", "spoglie": "spogl", "spoldi": "spold", "spoleto": "spolet", "spolverò": "spolv", "sponda": "spond", "sponde": "spond", "spongia": "spong", "sponsorizzato": "sponsorizz", "spontanea": "spontane", "spontaneamente": "spontan", "spontanei": "spontane", "spontaneo": "spontane", "spopolar": "spopol", "spopolò": "spopol", "sporchi": "sporc", "sporchizie": "sporchiz", "sporco": "sporc", "sporge": "sporg", "sporgente": "sporgent", "sporgenti": "sporgent", "sporgere": "sporg", "sporgersi": "sporg", "sporgevan": "sporgevan", "sport": "sport", "sporta": "sport", "sportelli": "sportell", "sportellino": "sportellin", "sportello": "sportell", "sporting": "sporting", "sportiva": "sport", "sportive": "sportiv", "sportivi": "sport", "sportività": "sportiv", "sportivo": "sport", "sposa": "spos", "sposalizio": "sposaliz", "sposare": "spos", "sposarlo": "spos", "sposarsi": "spos", "sposata": "spos", "sposato": "spos", "spose": "spos", "sposi": "spos", "sposina": "sposin", "sposini": "sposin", "sposo": "spos", "spossati": "sposs", "sposta": "spost", "spostamento": "spost", "spostando": "spost", "spostano": "spost", "spostato": "spost", "spostava": "spost", "spot": "spot", "spr": "spr", "spranghetta": "spranghett", "spray": "spray", "sprazzo": "sprazz", "sprecano": "sprec", "sprecate": "sprec", "sprecato": "sprec", "sprecava": "sprec", "sprechi": "sprec", "spreco": "sprec", "sprecone": "sprecon", "spred": "spred", "spregevole": "spregevol", "spremere": "sprem", "spremerne": "sprem", "spremitura": "spremitur", "sprezzante": "sprezzant", "sprezzatura": "sprezzatur", "sprezzo": "sprezz", "sprigiona": "sprigion", "sprigionandosi": "sprigion", "sprigionò": "sprigion", "sprint": "sprint", "sprofondato": "sprofond", "sprona": "spron", "sproni": "spron", "sproporzionato": "sproporzion", "sproporzione": "sproporzion", "spropositato": "sproposit", "spropositava": "sproposit", "spropositi": "spropos", "sproposito": "spropos", "spropriarsi": "spropr", "sproprio": "spropr", "sprovveduta": "sprovved", "sprovvisto": "sprovvist", "spugna": "spugn", "spugne": "spugn", "spumante": "spumant", "spunta": "spunt", "spuntano": "spunt", "spuntar": "spunt", "spuntare": "spunt", "spuntargli": "spunt", "spuntarla": "spunt", "spuntarlo": "spunt", "spuntati": "spunt", "spuntava": "spunt", "spunterebbe": "spunt", "spunti": "spunt", "spunto": "spunt", "spuntò": "spunt", "spurs": "spurs", "squadra": "squadr", "squadrando": "squadr", "squadrandolo": "squadr", "squadrati": "squadr", "squadrato": "squadr", "squadrava": "squadr", "squadre": "squadr", "squadrò": "squadr", "squadron": "squadron", "squadrone": "squadron", "squalificati": "squalific", "squalificato": "squalific", "squallida": "squallid", "squallidamente": "squallid", "squallide": "squallid", "squallido": "squallid", "squarci": "squarc", "squarcio": "squarc", "squartare": "squart", "squartato": "squart", "squilibri": "squilibr", "squilibrio": "squilibr", "squillo": "squill", "squinternotto": "squinternott", "squisita": "squis", "squisitamente": "squisit", "squisitezza": "squisitezz", "squisito": "squis", "sradicamento": "sradic", "sregolati": "sregol", "srna": "srna", "ss": "ss", "st": "st", "sta": "sta", "stà": "stà", "stabia": "stab", "stabile": "stabil", "stabilendo": "stabil", "stabili": "stabil", "stabilì": "stabil", "stabilimenti": "stabil", "stabilimento": "stabil", "stabilirà": "stabil", "stabilire": "stabil", "stabilirla": "stabil", "stabilirsi": "stabil", "stabilirvi": "stabil", "stabilisce": "stabil", "stabiliscono": "stabil", "stabilita": "stabil", "stabilità": "stabil", "stabilite": "stabil", "stabiliti": "stabil", "stabilito": "stabil", "stabiliva": "stabil", "stabilizzare": "stabilizz", "stabilizzarsi": "stabilizz", "stabilizzata": "stabilizz", "stabilizzazione": "stabilizz", "stabilizzerà": "stabilizz", "stabilmente": "stabil", "stacca": "stacc", "staccan": "staccan", "staccando": "stacc", "staccarsene": "stacc", "staccarsi": "stacc", "staccasse": "stacc", "staccata": "stacc", "staccato": "stacc", "staccatosi": "staccat", "staccava": "stacc", "staccavano": "stacc", "stacchini": "stacchin", "staccò": "stacc", "stadi": "stad", "stadio": "stad", "staff": "staff", "staffa": "staff", "staffan": "staffan", "staffetta": "staffett", "staffette": "staffett", "staffilata": "staffil", "stafoggia": "stafogg", "stagbilità": "stagbil", "staggi": "stagg", "staggione": "staggion", "stagionale": "stagional", "stagionali": "stagional", "stagione": "stagion", "stagioni": "stagion", "stagionì": "stagion", "stai": "sta", "staia": "stai", "staio": "stai", "stajano": "staj", "stalin": "stalin", "stalla": "stall", "stalle": "stall", "stallo": "stall", "stallone": "stallon", "stamane": "staman", "stamani": "staman", "stamattina": "stamattin", "stampa": "stamp", "stampà": "stamp", "stampando": "stamp", "stampano": "stamp", "stamparlo": "stamp", "stampassero": "stamp", "stampata": "stamp", "stampate": "stamp", "stampati": "stamp", "stampato": "stamp", "stampatori": "stampator", "stampava": "stamp", "stampavano": "stamp", "stampe": "stamp", "stamperia": "stamper", "stan": "stan", "stanca": "stanc", "stancano": "stanc", "stancate": "stanc", "stanchezza": "stanchezz", "stanchi": "stanc", "stanco": "stanc", "stand": "stand", "standa": "stand", "standard": "standard", "stando": "stand", "standogli": "standogl", "stands": "stands", "stanga": "stang", "stangata": "stang", "stanghette": "stanghett", "stanislao": "stanisla", "stanley": "stanley", "stanno": "stann", "stanotte": "stanott", "stante": "stant", "stantuffi": "stantuff", "stanza": "stanz", "stanzaccia": "stanzacc", "stanze": "stanz", "stanzia": "stanz", "stanziamento": "stanz", "stanziati": "stanz", "stanziato": "stanz", "stanzina": "stanzin", "stanzine": "stanzin", "stanzone": "stanzon", "stanzucce": "stanzucc", "star": "star", "starà": "star", "starai": "stara", "staranno": "starann", "starci": "starc", "stare": "star", "starebbe": "starebb", "staremmo": "star", "starete": "star", "starkraft": "starkraft", "starne": "starn", "starnett": "starnett", "starò": "star", "staropromyslovski": "staropromyslovsk", "starsene": "starsen", "starvi": "starv", "stasera": "staser", "stasi": "stas", "stata": "stat", "statale": "statal", "statali": "statal", "statalismo": "statal", "statalista": "statal", "state": "stat", "statevi": "stat", "stati": "stat", "statista": "statist", "statisti": "statist", "statistica": "statist", "statistiche": "statist", "stato": "stat", "statoil": "statoil", "statua": "statu", "statuale": "statual", "statuario": "statuar", "statue": "statu", "statunitense": "statunitens", "statunitensi": "statunitens", "statutari": "statutar", "statutaria": "statutar", "statutarie": "statutar", "statuti": "stat", "statuto": "stat", "stava": "stav", "stavan": "stavan", "stavano": "stav", "stavate": "stav", "stavo": "stav", "stavolta": "stavolt", "staying": "staying", "stazionavano": "stazion", "stazione": "stazion", "stazioni": "stazion", "stazza": "stazz", "ste": "ste", "steccano": "stecc", "stecchita": "stecc", "stecconato": "steccon", "stefanel": "stefanel", "stefani": "stefan", "stefania": "stefan", "stefano": "stef", "steiger": "steiger", "steli": "stel", "stella": "stell", "stellate": "stell", "stelle": "stell", "stellè": "stell", "stelo": "stel", "stelvio": "stelv", "stende": "stend", "stendendo": "stend", "stendendole": "stend", "stender": "stender", "stenderà": "stend", "stendere": "stend", "stenderne": "stend", "stendeva": "stend", "stendevano": "stend", "stenografico": "stenograf", "stenta": "stent", "stentando": "stent", "stentano": "stent", "stentatamente": "stentat", "stentato": "stent", "stentava": "stent", "stenti": "stent", "stento": "stent", "stentò": "stent", "stentorea": "stentore", "stephane": "stephan", "stephen": "stephen", "sterchele": "sterchel", "stereo": "stere", "sterile": "steril", "sterilità": "steril", "sterlina": "sterlin", "sterline": "sterlin", "sterminare": "stermin", "sterminate": "stermin", "sterminati": "stermin", "sterminato": "stermin", "sterminio": "stermin", "sterpi": "sterp", "sterrata": "sterr", "sterza": "sterz", "stesa": "stes", "stesavi": "stes", "stese": "stes", "stesero": "steser", "stesi": "stes", "steso": "stes", "stessa": "stess", "stesse": "stess", "stessero": "stesser", "stessi": "stess", "stesso": "stess", "stesura": "stesur", "stet": "stet", "stette": "stett", "stettero": "stetter", "steve": "stev", "steven": "steven", "stevens": "stevens", "stia": "sti", "stìa": "stì", "stiam": "stiam", "stiamo": "stiam", "stian": "stian", "stiano": "sti", "stiate": "sti", "stig": "stig", "stilare": "stil", "stilata": "stil", "stilato": "stil", "stile": "stil", "stili": "stil", "stilisti": "stilist", "stillate": "still", "stillati": "still", "stima": "stim", "stimano": "stim", "stimare": "stim", "stimaron": "stimaron", "stimasse": "stim", "stimasser": "stimasser", "stimato": "stim", "stimava": "stim", "stime": "stim", "stimolare": "stimol", "stimolato": "stimol", "stimolava": "stimol", "stimolavan": "stimolavan", "stimoli": "stimol", "stimolo": "stimol", "stinchi": "stinc", "stipa": "stip", "stipato": "stip", "stipendi": "stip", "stipendiati": "stipend", "stipendio": "stipend", "stipendiò": "stipend", "stipite": "stip", "stipulare": "stipul", "stipulato": "stipul", "stiramento": "stir", "stirando": "stir", "stirato": "stir", "stiratosi": "stirat", "stiria": "stir", "stirò": "stir", "stirpe": "stirp", "stirpi": "stirp", "stivale": "stival", "stizza": "stizz", "stizzetta": "stizzett", "stizzita": "stizz", "stizziti": "stizz", "stizzito": "stizz", "stizzosa": "stizzos", "stizzosamente": "stizzos", "sto": "sto", "stoccaggio": "stoccagg", "stoccata": "stocc", "stoccate": "stocc", "stoccolma": "stoccolm", "stock": "stock", "stoltenberg": "stoltenberg", "stolti": "stolt", "stomacato": "stomac", "stomaco": "stomac", "stomacosi": "stomac", "stonata": "ston", "stoppa": "stopp", "stoppie": "stopp", "stoppino": "stoppin", "storace": "storac", "storcendo": "storc", "storcendolo": "storc", "storceva": "storc", "stordimento": "stord", "stordito": "stord", "storia": "stor", "storica": "storic", "storicà": "storic", "storicamente": "storic", "storice": "storic", "storiche": "storic", "storici": "storic", "storico": "storic", "storie": "stor", "storielle": "storiell", "storiografia": "storiograf", "stormo": "storm", "stornar": "storn", "stornare": "storn", "stornarlo": "storn", "storpiato": "storp", "storse": "stors", "storta": "stort", "storte": "stort", "storto": "stort", "story": "story", "stoviglie": "stovigl", "strabica": "strabic", "strabismo": "strabism", "stracariche": "stracar", "stracca": "stracc", "stracchi": "stracc", "stracchino": "stracchin", "stracci": "stracc", "straccio": "stracc", "stracco": "stracc", "strada": "strad", "stradale": "stradal", "stradali": "stradal", "strade": "strad", "stradetta": "stradett", "stradette": "stradett", "stradicciole": "stradicciol", "stradone": "stradon", "straducola": "straducol", "strage": "strag", "stragem": "stragem", "stragrande": "stragrand", "stralci": "stralc", "stralciata": "stralc", "stralcio": "stralc", "stralunando": "stralun", "stralunati": "stralun", "stralunato": "stralun", "strame": "stram", "strampa": "stramp", "strana": "stran", "stranamente": "stran", "strane": "stran", "stranezza": "stranezz", "strani": "stran", "straniera": "stranier", "straniere": "stran", "stranieri": "stranier", "straniero": "stranier", "strano": "stran", "straordinari": "straordinar", "straordinaria": "straordinar", "straordinariamente": "straordinar", "straordinarie": "straordinar", "straordinarii": "straordinar", "straordinario": "straordinar", "strapazzi": "strapazz", "strapazzo": "strapazz", "strapotere": "strapot", "strappa": "strapp", "strappar": "strapp", "strappare": "strapp", "strappati": "strapp", "strappato": "strapp", "strappo": "strapp", "strapunti": "strapunt", "strasburgo": "strasburg", "strascicandolo": "strascic", "strascicano": "strascic", "strascicarono": "strascic", "strascicarsi": "strascic", "strascicato": "strascic", "strascicavan": "strascicavan", "strascicavano": "strascic", "strascichi": "strascic", "strascico": "strascic", "strascina": "strascin", "strascinarli": "strascin", "strascinarlo": "strascin", "strascinata": "strascin", "strascinati": "strascin", "strascinato": "strascin", "strascinavan": "strascinavan", "strascinavano": "strascin", "strasecolar": "strasecol", "strat": "strat", "strata": "strat", "stratagemmi": "stratagemm", "strategia": "strateg", "strategica": "strateg", "strategiche": "strateg", "strategico": "strateg", "strategie": "strateg", "strathclyde": "strathclyd", "stratta": "stratt", "stratte": "stratt", "stravagante": "stravag", "stravaganti": "stravag", "stravaganze": "stravag", "stravizi": "straviz", "straviziare": "straviz", "stravizio": "straviz", "stravolgendo": "stravolg", "stravolgimento": "stravolg", "stravolta": "stravolt", "stravolte": "stravolt", "stravolti": "stravolt", "stravolto": "stravolt", "straziano": "straz", "straziato": "straz", "strazio": "straz", "street": "street", "strega": "streg", "streghe": "streg", "stregoneria": "stregoner", "stregoni": "stregon", "stremo": "strem", "strepita": "strep", "strepitare": "strepit", "strepitava": "strepit", "strepito": "strep", "strepitosa": "strepit", "strepitose": "strepit", "strepitoso": "strepit", "stress": "stress", "stretcher": "stretcher", "stretta": "strett", "strettala": "strettal", "strettamente": "strett", "strette": "strett", "strettezza": "strettezz", "strettezze": "strettezz", "stretti": "strett", "strettissime": "strettissim", "stretto": "strett", "strida": "strid", "stridere": "strid", "stridesse": "stridess", "strike": "strik", "strillano": "strill", "strillante": "strillant", "strillanti": "strillant", "strillar": "strill", "strillare": "strill", "strillassero": "strill", "stringa": "string", "stringe": "string", "stringendo": "string", "stringendolo": "string", "stringente": "stringent", "stringer": "stringer", "stringere": "string", "stringeva": "string", "stringevan": "stringevan", "stringevano": "string", "stringono": "string", "strinse": "strins", "strinsero": "strinser", "strisce": "strisc", "striscia": "strisc", "strisciando": "strisc", "strisciava": "strisc", "strisciò": "strisc", "striscione": "striscion", "striscioni": "striscion", "strofinando": "strofin", "stromento": "stroment", "stroncare": "stronc", "stropicciando": "stropicc", "stropiccìo": "stropiccì", "stropicciò": "stropicc", "strordinario": "strordinar", "strozzata": "strozz", "struggersi": "strugg", "struggeva": "strugg", "struggevano": "strugg", "struggimento": "strugg", "struggo": "strugg", "strumentali": "strumental", "strumentalizzare": "strumentalizz", "strumentalizzata": "strumentalizz", "strumentalizzazione": "strumentalizz", "strumentalizzazioni": "strumentalizz", "strumenti": "strument", "strumento": "strument", "struttura": "struttur", "strutturale": "struttural", "strutturali": "struttural", "strutturata": "struttur", "strutture": "struttur", "stuart": "stuart", "stuccata": "stucc", "stucco": "stucc", "studentessa": "studentess", "studentesse": "studentess", "studenti": "student", "studi": "stud", "studiando": "stud", "studiar": "stud", "studiare": "stud", "studiata": "stud", "studiate": "stud", "studiati": "stud", "studiato": "stud", "studiava": "stud", "studieremo": "stud", "studierò": "stud", "studio": "stud", "studiò": "stud", "studiosa": "studios", "studiosi": "studios", "stufato": "stuf", "stuolo": "stuol", "stupefacenti": "stupefacent", "stupefatta": "stupefatt", "stupefatto": "stupefatt", "stupì": "stup", "stupida": "stupid", "stupidaggini": "stupidaggin", "stupidi": "stupid", "stupido": "stupid", "stupire": "stup", "stupito": "stup", "stupiva": "stup", "stupore": "stupor", "stupri": "stupr", "stupro": "stupr", "sturges": "sturges", "sturzo": "sturz", "stutus": "stutus", "stuzzica": "stuzzic", "stuzzicando": "stuzzic", "stuzzicar": "stuzzic", "stuzzicarlo": "stuzzic", "stuzzicata": "stuzzic", "stuzzicava": "stuzzic", "su": "su", "sua": "sua", "suard": "suard", "suarez": "suarez", "subacquea": "subacque", "subacquei": "subacque", "subacqueo": "subacque", "subalpina": "subalpin", "subalterni": "subaltern", "subaru": "subaru", "subcomandante": "subcomand", "subentrato": "subentr", "subentri": "subentr", "subì": "sub", "subire": "sub", "subiremo": "sub", "subisce": "sub", "subita": "sub", "subitamente": "subit", "subitanea": "subitane", "subitanei": "subitane", "subitaneo": "subitane", "subite": "sub", "subiti": "sub", "subito": "sub", "subjectis": "subjectis", "sublimata": "sublim", "sublimazione": "sublim", "sublimità": "sublim", "subnormali": "subnormal", "subordinar": "subordin", "subordinati": "subordin", "subordinazione": "subordin", "subordine": "subordin", "subtilitate": "subtilit", "succede": "succed", "succedendo": "succed", "succederà": "succed", "succedere": "succed", "succedeva": "succed", "succedevano": "succed", "succedono": "succed", "succeduto": "succed", "succesivamente": "succes", "successa": "success", "successe": "success", "successi": "success", "successione": "succession", "successiva": "success", "successivamente": "success", "successive": "success", "successivi": "success", "successivo": "success", "successo": "success", "succhiargli": "succ", "succhiata": "succ", "succhiato": "succ", "succiano": "succ", "succiarsi": "succ", "succiarti": "succ", "succinta": "succint", "succinti": "succint", "succinto": "succint", "sucessi": "sucess", "sud": "sud", "suda": "sud", "sudafrica": "sudafr", "sudafricano": "sudafric", "sudamericano": "sudameric", "sudario": "sudar", "sudate": "sud", "suddetta": "suddett", "suddette": "suddett", "suddetti": "suddett", "suddetto": "suddett", "sudditanza": "suddit", "sudditi": "sudd", "suddivisa": "suddivis", "suddivisione": "suddivision", "suddiviso": "suddivis", "sudest": "sudest", "sudice": "sudic", "sudiceria": "sudicer", "sudici": "sudic", "sudicia": "sudic", "sudiciume": "sudicium", "sudor": "sudor", "sue": "sue", "sueddeutsche": "sueddeutsc", "sufficiente": "sufficient", "sufficienti": "sufficient", "sufficientmeente": "sufficientmeent", "sufficienza": "sufficient", "suggella": "suggell", "suggerendogliela": "sugger", "suggerì": "sugger", "suggerimenti": "sugger", "suggerimento": "sugger", "suggerir": "sugger", "suggerire": "sugger", "suggerirle": "sugger", "suggerirlo": "sugger", "suggerisce": "sugger", "suggeriscono": "sugger", "suggerita": "sugger", "suggerite": "sugger", "suggerito": "sugger", "suggeriva": "sugger", "suggerivano": "sugger", "suggestiva": "suggest", "suggezione": "suggezion", "sugli": "sugl", "sugo": "sug", "sui": "sui", "suicida": "suicid", "suicidare": "suicid", "suicidi": "suicid", "suicidio": "suicid", "suisse": "suiss", "sukhoi": "sukho", "sul": "sul", "sula": "sul", "sulcis": "sulcis", "sull": "sull", "sulla": "sull", "sulle": "sull", "sullo": "sull", "sullodato": "sullod", "sulman": "sulman", "sulta": "sult", "suma": "sum", "sumatis": "sumatis", "summentovate": "summentov", "summentovato": "summentov", "sun": "sun", "sunday": "sunday", "sunny": "sunny", "sunti": "sunt", "sunto": "sunt", "suo": "suo", "suocera": "suocer", "suoi": "suo", "suol": "suol", "suolavecchia": "suolavecc", "suole": "suol", "suolo": "suol", "suon": "suon", "suona": "suon", "suonando": "suon", "suonare": "suon", "suonato": "suon", "suoneranno": "suon", "suoni": "suon", "suono": "suon", "suora": "suor", "suore": "suor", "super": "super", "supera": "super", "superagip": "superagip", "superando": "super", "superano": "super", "superar": "super", "superare": "super", "superata": "super", "superate": "super", "superati": "super", "superato": "super", "superatò": "superat", "superavo": "super", "superba": "superb", "superbi": "superb", "superbia": "superb", "superbioso": "superb", "superbo": "superb", "superbollo": "superboll", "superboy": "superboy", "superclassifica": "superclassif", "superfavorito": "superfavor", "superficiale": "superficial", "superficie": "superfic", "superflui": "superflu", "superfluità": "superflu", "superfluo": "superflu", "superhuman": "superhuman", "superi": "super", "superiora": "superior", "superiore": "superior", "superiori": "superior", "superiorità": "superior", "supermercato": "supermerc", "superpetroliere": "superpetrol", "superstite": "superst", "supervisione": "supervision", "suppellettile": "suppellettil", "suppellettili": "suppellettil", "supplementare": "supplement", "supplementari": "supplementar", "supplica": "supplic", "supplicando": "supplic", "supplicare": "supplic", "supplicarono": "supplic", "supplicazione": "supplic", "suppliche": "supplic", "supplichevole": "supplichevol", "supplichevoli": "supplichevol", "supplico": "supplic", "supplimento": "suppl", "supplire": "suppl", "supplirlo": "suppl", "supplisca": "suppl", "supplisce": "suppl", "supplito": "suppl", "supplivano": "suppl", "supplizi": "suppliz", "supplizio": "suppliz", "supply": "supply", "suppone": "suppon", "supponendo": "suppon", "supponendolo": "suppon", "supponesse": "supponess", "supponete": "suppon", "supponeva": "suppon", "supponiamo": "suppon", "supporre": "supporr", "supportati": "support", "supporti": "support", "supporto": "support", "suppose": "suppos", "supposizione": "supposizion", "supposizioni": "supposizion", "supposte": "suppost", "supposti": "suppost", "supposto": "suppost", "suprema": "suprem", "supremazia": "supremaz", "supremo": "suprem", "sur": "sur", "surplus": "surplus", "surreale": "surreal", "surrenti": "surrent", "surriscaldamento": "surriscald", "surriscaldata": "surriscald", "survey": "survey", "susa": "sus", "susan": "susan", "susanna": "susann", "suscita": "susc", "suscitando": "suscit", "suscitar": "suscit", "suscitare": "suscit", "suscitarsi": "suscit", "suscitasse": "suscit", "suscitate": "suscit", "suscitati": "suscit", "suscitato": "suscit", "suscitò": "suscit", "susine": "susin", "susini": "susin", "susseguendo": "sussegu", "susseguente": "susseguent", "susseguiti": "sussegu", "susseguono": "sussegu", "sussidi": "sussid", "sussidiaria": "sussidiar", "sussidio": "sussid", "sussiste": "sussist", "sussistere": "sussist", "susurrando": "susurr", "susurrandosi": "susurr", "susurrare": "susurr", "susurrava": "susurr", "susurrìo": "susurrì", "susurro": "susurr", "susurrò": "susurr", "sutar": "sut", "sutura": "sutur", "suzhou": "suzhou", "svagamenti": "svag", "svagatezza": "svagatezz", "svago": "svag", "svaligiate": "svalig", "svalutato": "svalut", "svanì": "svan", "svanire": "svan", "svanirebbe": "svan", "svanita": "svan", "svanito": "svan", "svaniva": "svan", "svantaggiati": "svantagg", "svantaggio": "svantagg", "svaporare": "svapor", "svataggiate": "svatagg", "sve": "sve", "svedese": "svedes", "sveglia": "svegl", "svegliarla": "svegl", "svegliarsi": "svegl", "svegliasse": "svegl", "svegliata": "svegl", "svegliato": "svegl", "svegliava": "svegl", "sveglierà": "svegl", "sveglio": "svegl", "svegliò": "svegl", "svelano": "svel", "svelare": "svel", "svelato": "svel", "svellere": "svell", "svelte": "svelt", "sveltire": "svelt", "sven": "sven", "svenevole": "svenevol", "sveng": "sveng", "svenimenti": "sven", "svenne": "svenn", "svenska": "svensk", "sventa": "svent", "sventolare": "sventol", "sventolata": "sventol", "sventolate": "sventol", "sventolio": "sventol", "sventura": "sventur", "sventurata": "sventur", "sventurato": "sventur", "sventure": "sventur", "svergognandola": "svergogn", "svergognasse": "svergogn", "svergognato": "svergogn", "sversamenti": "svers", "sversamento": "svers", "svetlana": "svetlan", "svezia": "svez", "svi": "svi", "sviamento": "svi", "sviare": "svi", "sviene": "svien", "svignò": "svign", "sviluppa": "svilupp", "sviluppando": "svilupp", "sviluppare": "svilupp", "sviluppata": "svilupp", "sviluppate": "svilupp", "sviluppati": "svilupp", "sviluppato": "svilupp", "svilupperà": "svilupp", "sviluppi": "svilupp", "sviluppo": "svilupp", "sviluppò": "svilupp", "svincolandosi": "svincol", "svincolarsi": "svincol", "svincolo": "svincol", "svisceratezza": "svisceratezz", "sviscerati": "sviscer", "sviscerato": "sviscer", "svizzera": "svizzer", "svizzere": "svizz", "svizzeri": "svizzer", "svizzero": "svizzer", "svk": "svk", "svogliatamente": "svogliat", "svogliate": "svogl", "svogliatezza": "svogliatezz", "svogliato": "svogl", "svolazzano": "svolazz", "svolazzi": "svolazz", "svolgano": "svolg", "svolge": "svolg", "svolgendo": "svolg", "svolgendosi": "svolg", "svolgerà": "svolg", "svolgeranno": "svolg", "svolgere": "svolg", "svolgerlo": "svolg", "svolgersi": "svolg", "svolgessero": "svolg", "svolgevano": "svolg", "svolgimento": "svolg", "svolgono": "svolg", "svolse": "svols", "svolta": "svolt", "svoltasi": "svoltas", "svolte": "svolt", "svoltesi": "svoltes", "svolti": "svolt", "svoltisi": "svoltis", "svolto": "svolt", "svoltò": "svolt", "svoltosi": "svoltos", "swatch": "swatc", "swcrive": "swcriv", "sydkraft": "sydkraft", "sydney": "sydney", "sylvester": "sylvester", "symbols": "symbols", "systems": "systems", "szabo": "szab", "szalasi": "szalas", "t": "t", "ta": "ta", "tabacchi": "tabacc", "tabacco": "tabacc", "tabarez": "tabarez", "tabasco": "tabasc", "tabella": "tabell", "tabelle": "tabell", "tabellone": "tabellon", "tabernacolo": "tabernacol", "tabladini": "tabladin", "tabloid": "tabloid", "tabù": "tabù", "tacce": "tacc", "tacchi": "tacc", "tacchinardi": "tacchinard", "tacchini": "tacchin", "tacciato": "tacc", "tacciavano": "tacc", "taccio": "tacc", "tacciono": "tacc", "taccuino": "taccuin", "tace": "tac", "tacendo": "tac", "tacer": "tacer", "tacerà": "tac", "tacere": "tac", "tacersi": "tac", "tacessimo": "tacessim", "tacete": "tac", "taceva": "tac", "tacevano": "tac", "tacitamente": "tacit", "taciti": "tac", "tacito": "tac", "taciuto": "tac", "tacque": "tacqu", "taddeo": "tadde", "tadino": "tadin", "tafferìa": "tafferì", "tafferugli": "tafferugl", "tafferuglio": "tafferugl", "taffete": "taff", "tagespiegel": "tagespiegel", "tagli": "tagl", "taglia": "tagl", "tagliando": "tagl", "tagliare": "tagl", "tagliarla": "tagl", "tagliarmi": "tagl", "tagliata": "tagl", "tagliati": "tagl", "tagliato": "tagl", "tagliavano": "tagl", "taglie": "tagl", "tagliente": "taglient", "taglio": "tagl", "taglire": "tagl", "taibi": "taib", "tailandia": "tailand", "taipei": "taipe", "taj": "taj", "tajani": "tajan", "takeover": "takeover", "tal": "tal", "talamona": "talamon", "talché": "talc", "tale": "tal", "taleban": "taleban", "talento": "talent", "tali": "tal", "talk": "talk", "tallero": "taller", "talleur": "talleur", "talmente": "talment", "talmenteché": "talmentec", "talora": "talor", "talune": "talun", "taluni": "talun", "taluno": "talun", "talvolta": "talvolt", "tamburella": "tamburell", "tamburi": "tambur", "tamburro": "tamburr", "tamino": "tamin", "tampa": "tamp", "tampone": "tampon", "tana": "tan", "tanabuso": "tanabus", "tanagliare": "tanagl", "tanaglie": "tanagl", "tane": "tan", "tanfi": "tanf", "tanfo": "tanf", "tangente": "tangent", "tangenti": "tangent", "tangentistì": "tangent", "tangentopoli": "tangentopol", "tangeri": "tanger", "tangheri": "tangher", "tanghero": "tangher", "tani": "tan", "tant": "tant", "tanta": "tant", "tante": "tant", "tanti": "tant", "tantino": "tantin", "tantissimi": "tantissim", "tanto": "tant", "tantomeno": "tantomen", "tantopiù": "tantopiù", "tantum": "tantum", "tanzania": "tanzan", "taormina": "taormin", "tappa": "tapp", "tappare": "tapp", "tappe": "tapp", "tappeti": "tappet", "tappeto": "tappet", "tappezzate": "tappezz", "tappezzerie": "tappezzer", "tappo": "tapp", "tar": "tar", "tara": "tar", "tarantino": "tarantin", "tarapur": "tarapur", "tarcagnota": "tarcagnot", "tarchiati": "tarc", "tarda": "tard", "tardare": "tard", "tardato": "tard", "tarde": "tard", "tardelli": "tardell", "tardi": "tard", "tardini": "tardin", "tarditi": "tard", "tardivamente": "tardiv", "tardo": "tard", "tardò": "tard", "tardocomunista": "tardocomun", "targa": "targ", "targata": "targ", "target": "target", "tariffa": "tariff", "tariffaria": "tariffar", "tariffe": "tariff", "tarnoff": "tarnoff", "taro": "tar", "tartaglia": "tartagl", "tartassati": "tartass", "tarvisium": "tarvisium", "tasca": "tasc", "tasche": "tasc", "taschino": "taschin", "task": "task", "taslima": "taslim", "tass": "tass", "tassa": "tass", "tassato": "tass", "tassazione": "tassazion", "tasse": "tass", "tassi": "tass", "tasso": "tass", "tassone": "tasson", "tastare": "tast", "tastarlo": "tast", "tasto": "tast", "tastone": "taston", "tastoni": "taston", "tata": "tat", "tatarella": "tatarell", "tattica": "tattic", "tattiche": "tattic", "tatto": "tatt", "tatuaggi": "tatuagg", "tatyana": "tatyan", "tauber": "tauber", "tauro": "taur", "tav": "tav", "tavawal": "tavawal", "taverna": "tavern", "tavernai": "taverna", "taverne": "tav", "tavola": "tavol", "tavole": "tavol", "tavoli": "tavol", "tavoliere": "tavol", "tavolino": "tavolin", "tavolo": "tavol", "tax": "tax", "tay": "tay", "taylor": "taylor", "tb": "tb", "tbc": "tbc", "tc": "tc", "te": "te", "tè": "tè", "teague": "teagu", "teatro": "teatr", "tebaide": "tebaid", "technology": "technology", "tecla": "tecl", "tecnica": "tecnic", "tecnicà": "tecnic", "tecnicamente": "tecnic", "tecniche": "tecnic", "tecnichè": "tecnic", "tecnici": "tecnic", "tecnico": "tecnic", "tecnologia": "tecnolog", "tecnologica": "tecnolog", "tecnologico": "tecnolog", "tecnologie": "tecnolog", "tecnost": "tecnost", "tedesca": "tedesc", "tedesche": "tedesc", "tedeschi": "tedesc", "tedesco": "tedesc", "tediarla": "ted", "tedio": "ted", "tegame": "tegam", "tegolaia": "tegolai", "tegoli": "tegol", "teheran": "teheran", "teknecomp": "teknecomp", "tel": "tel", "tela": "tel", "telam": "telam", "tele": "tel", "telecamere": "telecam", "teleco": "telec", "telecom": "telecom", "telecomandata": "telecomand", "telecomunicazioni": "telecomun", "telefilm": "telefilm", "telefona": "telefon", "telefonare": "telefon", "telefonata": "telefon", "telefonate": "telefon", "telefonato": "telefon", "telefoni": "telefon", "telefonica": "telefon", "telefonicamente": "telefon", "telefoniche": "telefon", "telefonici": "telefon", "telefonico": "telefon", "telefonini": "telefonin", "telefonino": "telefonin", "telefono": "telef", "telefoto": "telefot", "telegiornale": "telegiornal", "telegiornali": "telegiornal", "telegrafico": "telegraf", "telegramma": "telegramm", "telegrammi": "telegramm", "telegraph": "telegraph", "telematica": "telemat", "telematiche": "telemat", "telematici": "telemat", "telematico": "telemat", "telemontecarlo": "telemontec", "telenovela": "telenovel", "teleoperatori": "teleoper", "teleromanzo": "teleromanz", "teleschermo": "telescherm", "telescrivente": "telescrivent", "telesis": "telesis", "telespettatori": "telespett", "telethon": "telethon", "televendite": "televend", "television": "television", "televisione": "television", "televisioni": "television", "televisiva": "televis", "televisive": "televis", "televisivi": "televis", "televisivo": "televis", "tellurico": "tellur", "telo": "tel", "telone": "telon", "teloni": "telon", "telsystem": "telsystem", "tema": "tem", "tematiche": "temat", "tembile": "tembil", "teme": "tem", "temendo": "tem", "temer": "temer", "temeraria": "temerar", "temerarie": "temerar", "temerarij": "temerarij", "temerario": "temerar", "temere": "tem", "temerità": "temer", "temerlo": "tem", "temesse": "temess", "temessero": "tem", "temeva": "tem", "temevano": "tem", "temi": "tem", "temibile": "temibil", "temo": "tem", "temono": "tem", "tempera": "temper", "temperamenti": "temper", "temperamento": "temper", "temperar": "temper", "temperare": "temper", "temperata": "temper", "temperate": "temper", "temperato": "temper", "temperatura": "temperatur", "temperature": "temperatur", "temperò": "temp", "tempesta": "tempest", "tempestare": "tempest", "tempestarlo": "tempest", "tempestata": "tempest", "tempestate": "tempest", "tempestati": "tempest", "tempestava": "tempest", "tempeste": "tempest", "tempestiva": "tempest", "tempestività": "tempest", "tempestivo": "tempest", "tempestoso": "tempest", "tempi": "temp", "tempia": "temp", "tempie": "temp", "tempio": "temp", "tempo": "temp", "temporale": "temporal", "temporali": "temporal", "temporanea": "temporane", "temporaneamente": "temporan", "temporanei": "temporane", "temporariamente": "temporar", "tempore": "tempor", "temporum": "temporum", "tempra": "tempr", "temuta": "tem", "temuto": "tem", "tenace": "tenac", "tenacia": "tenac", "tenaglia": "tenagl", "tendaggi": "tendagg", "tende": "tend", "tendendo": "tend", "tendenti": "tendent", "tendenza": "tendenz", "tendenze": "tendenz", "tendenzialmente": "tendenzial", "tender": "tender", "tenderà": "tend", "tendere": "tend", "tendesse": "tendess", "tendeva": "tend", "tendevan": "tendevan", "tendevano": "tend", "tendina": "tendin", "tendine": "tendin", "tendon": "tendon", "tendone": "tendon", "tendono": "tend", "tenebre": "tenebr", "tenebrosi": "tenebr", "tenebroso": "tenebr", "tenendo": "ten", "tenendola": "ten", "tenendolo": "ten", "tenendone": "ten", "tenendosi": "ten", "tenendovi": "ten", "tenente": "tenent", "tener": "tener", "tenera": "tener", "tenere": "ten", "tenerezza": "tenerezz", "tenerezze": "tenerezz", "tenergli": "ten", "teneri": "tener", "tenerla": "ten", "tenerli": "ten", "tenerlo": "ten", "tenerne": "ten", "tenero": "tener", "tenersi": "ten", "tenervi": "ten", "tenesse": "teness", "tenessero": "ten", "tenete": "ten", "teneteli": "tenetel", "teneva": "ten", "tenevan": "tenevan", "tenevano": "ten", "tenevo": "ten", "tenga": "teng", "tengo": "teng", "tengon": "tengon", "tengono": "teng", "teniamo": "ten", "tenne": "tenn", "tennero": "tenner", "tennis": "tennis", "tennista": "tennist", "tenor": "tenor", "tenore": "tenor", "tensione": "tension", "tensioni": "tension", "tensostruttura": "tensostruttur", "tenta": "tent", "tentacoli": "tentacol", "tentando": "tent", "tentano": "tent", "tentar": "tent", "tentare": "tent", "tentarmi": "tent", "tentarne": "tent", "tentata": "tent", "tentativi": "tentat", "tentativo": "tentat", "tentato": "tent", "tentava": "tent", "tentavano": "tent", "tentazion": "tentazion", "tentazione": "tentazion", "tentazioni": "tentazion", "tentennando": "tentenn", "tentennare": "tentenn", "tentennata": "tentenn", "tentennatina": "tentennatin", "tentennava": "tentenn", "tentennò": "tentenn", "tenterà": "tent", "tenterò": "tent", "tentò": "tent", "tentoni": "tenton", "tenuta": "ten", "tenute": "ten", "tenuti": "ten", "tenuto": "ten", "teologia": "teolog", "teologià": "teolog", "teologici": "teolog", "teoria": "teor", "teorico": "teoric", "teorie": "teor", "tepeyac": "tepeyac", "tepeyec": "tepeyec", "tepida": "tepid", "tepido": "tepid", "tepore": "tepor", "teppismo": "teppism", "teppista": "teppist", "teppisti": "teppist", "teppistici": "teppist", "teramo": "teram", "terapeutico": "terapeut", "terapia": "terap", "teresa": "teres", "teresio": "teres", "tergiversazioni": "tergivers", "teri": "ter", "termas": "termas", "terme": "term", "termica": "termic", "termici": "termic", "termina": "termin", "terminal": "terminal", "terminale": "terminal", "terminalisti": "terminal", "terminare": "termin", "terminarsi": "termin", "terminasse": "termin", "terminata": "termin", "terminate": "termin", "terminato": "termin", "terminava": "termin", "terminavano": "termin", "termine": "termin", "terminerà": "termin", "termineranno": "termin", "termini": "termin", "terminò": "termin", "terni": "tern", "terra": "terr", "terrà": "terr", "terrace": "terrac", "terracenere": "terracen", "terraferma": "terraferm", "terranno": "terrann", "terranova": "terranov", "terranuova": "terranuov", "terrapieni": "terrapien", "terrapieno": "terrapien", "terrazzino": "terrazzin", "terre": "terr", "terrea": "terre", "terremoto": "terremot", "terrena": "terren", "terrene": "terren", "terreni": "terren", "terreno": "terren", "terrestre": "terrestr", "terribil": "terribil", "terribile": "terribil", "terribili": "terribil", "terribilmente": "terribil", "terricciola": "terricciol", "terrieri": "terrier", "terrificanti": "terrific", "territori": "territor", "territoriale": "territorial", "territoriali": "territorial", "territorij": "territorij", "territorio": "territor", "terrò": "terr", "terror": "terror", "terrore": "terror", "terrori": "terror", "terrorismo": "terror", "terrorismò": "terrorism", "terroristi": "terror", "terroristica": "terrorist", "terroristici": "terrorist", "terrorizzando": "terrorizz", "terrorizzato": "terrorizz", "terry": "terry", "terza": "terz", "terzetta": "terzett", "terzetto": "terzett", "terzi": "terz", "terzino": "terzin", "terzo": "terz", "terzultima": "terzultim", "tesa": "tes", "teschi": "tesc", "teschietto": "teschiett", "teschio": "tesc", "tese": "tes", "tesi": "tes", "teso": "tes", "tesoreria": "tesorer", "tesoretto": "tesorett", "tesori": "tesor", "tesoriere": "tesor", "tesoro": "tesor", "tessera": "tesser", "tesseramento": "tesser", "tessere": "tess", "tessile": "tessil", "tessili": "tessil", "tessitore": "tessitor", "tessitrici": "tessitr", "tessuto": "tess", "test": "test", "testa": "test", "testamento": "test", "testardo": "testard", "testata": "test", "testate": "test", "testatori": "testator", "teste": "test", "testi": "test", "testifichi": "testif", "testimone": "testimon", "testimoni": "testimon", "testimonianza": "testimon", "testimonianze": "testimon", "testimoniare": "testimon", "testimoniato": "testimon", "testimonio": "testimon", "testimonj": "testimonj", "testina": "testin", "testo": "test", "testolina": "testolin", "tetri": "tetr", "tetti": "tett", "tetto": "tett", "tettò": "tett", "tettoia": "tettoi", "teu": "teu", "texas": "texas", "texmantova": "texmantov", "teyssier": "teyssier", "tg": "tg", "thailand": "thailand", "thailandese": "thailandes", "thailandia": "thailand", "thaler": "thaler", "the": "the", "theatre": "theatr", "theo": "the", "theresa": "theres", "thermie": "therm", "thern": "thern", "thiry": "thiry", "thomas": "thomas", "thorn": "thorn", "thriller": "thriller", "ti": "ti", "ticinese": "ticines", "ticket": "ticket", "tiempo": "tiemp", "tien": "tien", "tiene": "tien", "tienla": "tienl", "tienlo": "tienl", "tiepido": "tiepid", "tieri": "tier", "tietmeyer": "tietmeyer", "tifato": "tif", "tifo": "tif", "tifoseria": "tifoser", "tifoserie": "tifoser", "tifosi": "tifos", "tifoso": "tifos", "tigri": "tigr", "tigullio": "tigull", "tilt": "tilt", "time": "tim", "timeo": "time", "times": "times", "timicin": "timicin", "timida": "timid", "timidamente": "timid", "timidezza": "timidezz", "timido": "timid", "timoniere": "timon", "timor": "timor", "timorato": "timor", "timore": "timor", "timori": "timor", "timoroso": "timor", "timpano": "timp", "tina": "tin", "tinello": "tinell", "tingano": "ting", "tino": "tin", "tinta": "tint", "tinte": "tint", "tintinnìo": "tintinnì", "tipi": "tip", "tipica": "tipic", "tipici": "tipic", "tipico": "tipic", "tipo": "tip", "tipologie": "tipolog", "tira": "tir", "tiraccio": "tiracc", "tiradritto": "tiradritt", "tirala": "tiral", "tiran": "tiran", "tirana": "tiran", "tirando": "tir", "tirandosela": "tirandosel", "tirandosi": "tir", "tiranna": "tirann", "tiranneggiar": "tirannegg", "tiranneggiati": "tirannegg", "tirannello": "tirannell", "tiranni": "tirann", "tirannia": "tirann", "tirannici": "tirann", "tirannide": "tirannid", "tirannie": "tirann", "tiranno": "tirann", "tirano": "tir", "tirapiedi": "tirapied", "tirar": "tir", "tirare": "tir", "tirarla": "tir", "tirarli": "tir", "tirarlo": "tir", "tirarmi": "tir", "tiraron": "tiraron", "tirarsene": "tir", "tirarsi": "tir", "tirassero": "tir", "tirassi": "tir", "tirata": "tir", "tiratala": "tiratal", "tirate": "tir", "tiratela": "tiratel", "tirati": "tir", "tirato": "tir", "tiratolo": "tiratol", "tirava": "tir", "tiravan": "tiravan", "tiravano": "tir", "tiri": "tir", "tiriamo": "tir", "tirin": "tirin", "tirinato": "tirin", "tiro": "tir", "tirò": "tir", "tirreniche": "tirren", "tirreno": "tirren", "tisch": "tisc", "tishvin": "tishvin", "tisico": "tisic", "tisiologia": "tisiolog", "titanic": "titanic", "titola": "titol", "titolare": "titol", "titolari": "titolar", "titolarità": "titolar", "titolati": "titol", "titolato": "titol", "titoli": "titol", "titolo": "titol", "tittarelli": "tittarell", "titubanti": "titub", "titubanza": "titub", "titubate": "titub", "titubazione": "titub", "tivonchik": "tivonchik", "tiziana": "tizian", "tiziano": "tiz", "tizio": "tiz", "tizzi": "tizz", "tizzone": "tizzon", "tizzoni": "tizzon", "tl": "tl", "tlf": "tlf", "tm": "tm", "tmc": "tmc", "to": "to", "tocancipa": "tocancip", "tocca": "tocc", "toccan": "toccan", "toccando": "tocc", "toccano": "tocc", "toccante": "toccant", "toccanti": "toccant", "toccar": "tocc", "toccare": "tocc", "toccargli": "tocc", "toccarli": "tocc", "toccarlo": "tocc", "toccase": "toccas", "toccasse": "tocc", "toccassero": "tocc", "toccata": "tocc", "toccate": "tocc", "toccategli": "toccategl", "toccati": "tocc", "toccato": "tocc", "toccava": "tocc", "toccavano": "tocc", "toccherà": "tocc", "toccherebbe": "tocc", "toccherò": "tocc", "tocchetti": "tocchett", "tocchi": "tocc", "tocci": "tocc", "tocco": "tocc", "toccò": "tocc", "todaro": "todar", "todd": "todd", "tofoli": "tofol", "toga": "tog", "togae": "toga", "togato": "tog", "togliatti": "togliatt", "toglie": "togl", "togliendo": "togl", "togliendogli": "togl", "togliendoli": "togl", "togliere": "togl", "togliergli": "togl", "togliergliela": "togl", "togliersi": "togl", "togliervi": "togl", "togliesse": "togliess", "toglieva": "togl", "togo": "tog", "tokio": "tok", "tokunaga": "tokunag", "tokyo": "toky", "toldo": "told", "toledo": "toled", "tollerabile": "toller", "tollerabilità": "toller", "tolleranza": "toller", "tollerar": "toller", "tollerare": "toller", "tollerati": "toller", "tolone": "tolon", "tolstikov": "tolstikov", "tolta": "tolt", "tolte": "tolt", "tolto": "tolt", "tom": "tom", "tomas": "tomas", "tomba": "tomb", "tombalè": "tombal", "tommasi": "tommas", "tommi": "tomm", "tommyknockers": "tommyknockers", "tommyknokers": "tommyknokers", "ton": "ton", "tonaca": "tonac", "tonache": "tonac", "tonante": "tonant", "tondo": "tond", "tonè": "ton", "tonfo": "tonf", "toni": "ton", "tonini": "tonin", "tonio": "ton", "tonnellate": "tonnell", "tonno": "tonn", "tono": "ton", "tonò": "ton", "tontini": "tontin", "tony": "tony", "tonynton": "tonynton", "top": "top", "topacci": "topacc", "topaie": "topai", "topi": "top", "topo": "top", "toppa": "topp", "topponi": "toppon", "torbida": "torbid", "torbide": "torbid", "torbido": "torbid", "torca": "torc", "torce": "torc", "torcendo": "torc", "torcere": "torc", "torcetti": "torcett", "torcetto": "torcett", "torchia": "torc", "torchiatura": "torchiatur", "torcia": "torc", "tord": "tord", "torello": "torell", "torgiano": "torg", "torinese": "torines", "torino": "torin", "torme": "torm", "tormenta": "torment", "tormentar": "torment", "tormentare": "torment", "tormentarla": "torment", "tormentarli": "torment", "tormentarlo": "torment", "tormentarmi": "torment", "tormentarsi": "torment", "tormentato": "torment", "tormentavano": "torment", "tormenti": "torment", "tormento": "torment", "tormentosa": "torment", "tormentose": "torment", "tormentoso": "torment", "torna": "torn", "tornando": "torn", "tornandoci": "torn", "tornandole": "torn", "tornandovi": "torn", "tornano": "torn", "tornar": "torn", "tornarci": "torn", "tornare": "torn", "tornarono": "torn", "tornarsene": "torn", "tornasolè": "tornasol", "tornasse": "torn", "tornassi": "torn", "tornata": "torn", "tornate": "torn", "tornatele": "tornatel", "tornatevene": "tornateven", "tornati": "torn", "tornato": "torn", "tornava": "torn", "tornavan": "tornavan", "tornavano": "torn", "torneo": "torne", "tornerà": "torn", "tornerai": "torn", "torneranno": "torn", "tornerebbe": "torn", "tornerei": "torn", "torneremo": "torn", "tornerete": "torn", "tornerò": "torn", "torni": "torn", "torniamo": "torn", "tornita": "torn", "torno": "torn", "tornò": "torn", "toro": "tor", "toronto": "toront", "torpedoni": "torpedon", "torquato": "torqu", "torracchione": "torracchion", "torras": "torras", "torre": "torr", "torreggiava": "torregg", "torrentaccio": "torrentacc", "torrente": "torrent", "torrenti": "torrent", "torres": "torres", "torri": "torr", "torricelli": "torricell", "torrisi": "torris", "torse": "tors", "torso": "tors", "torsoli": "torsol", "torta": "tort", "torti": "tort", "torto": "tort", "tortuose": "tortuos", "tortuoso": "tortuos", "tortura": "tortur", "torturare": "tortur", "torture": "tortur", "torturi": "tortur", "torvo": "torv", "tosa": "tos", "tosarsi": "tos", "toscana": "toscan", "toscane": "toscan", "toscani": "toscan", "toscano": "tosc", "toseranno": "tos", "tosi": "tos", "tossì": "toss", "tossicodipendente": "tossicodipendent", "tossicodipendenti": "tossicodipendent", "tossicologa": "tossicolog", "tossicologico": "tossicolog", "tossire": "toss", "tosta": "tost", "tosto": "tost", "total": "total", "totale": "total", "totalitarismi": "totalitar", "totalizzato": "totalizz", "totalmente": "total", "totip": "totip", "toto": "tot", "totò": "tot", "totocalcio": "totocalc", "totogol": "totogol", "totti": "tott", "touareg": "touareg", "tour": "tour", "tovaglia": "tovagl", "tovaglie": "tovagl", "tovagliolo": "tovagliol", "tovalieri": "tovalier", "toyota": "toyot", "tp": "tp", "tra": "tra", "traballanti": "traball", "trabocca": "trabocc", "traboccanti": "trabocc", "traboccare": "trabocc", "traboccò": "trabocc", "tracannato": "tracann", "tracannò": "tracann", "tracce": "tracc", "traccia": "tracc", "tracciare": "tracc", "tracciarne": "tracc", "tracciate": "tracc", "tracciato": "tracc", "tracollava": "tracoll", "tracollo": "tracoll", "tracy": "tracy", "trade": "trad", "tradimenti": "trad", "tradimento": "trad", "trading": "trading", "tradire": "trad", "tradisce": "trad", "traditi": "trad", "tradito": "trad", "traditor": "traditor", "traditora": "traditor", "traditore": "traditor", "traditori": "traditor", "traditrice": "traditr", "tradizionale": "tradizional", "tradizionali": "tradizional", "tradizionalmente": "tradizional", "tradizione": "tradizion", "tradizioni": "tradizion", "traducessero": "traduc", "traduciamo": "traduc", "tradurrà": "tradurr", "tradurre": "tradurr", "tradursi": "tradurs", "traduttore": "traduttor", "trae": "tra", "traendo": "tra", "traessi": "traess", "trafelato": "trafel", "trafficando": "traffic", "trafficanti": "traffic", "traffichi": "traffic", "traffici": "traffic", "traffico": "traffic", "trafitta": "trafitt", "trafitto": "trafitt", "traforata": "trafor", "traforate": "trafor", "trafugamento": "trafug", "trafugare": "trafug", "trafugati": "trafug", "trafugato": "trafug", "tragedia": "traged", "tragedie": "traged", "tragga": "tragg", "traggedie": "tragged", "traghettare": "traghett", "traghetti": "traghett", "traghetto": "traghett", "tragica": "tragic", "tragicamente": "tragic", "tragiche": "tragic", "tragici": "tragic", "tragico": "tragic", "tragittar": "tragitt", "tragittarmi": "tragitt", "tragitto": "tragitt", "traguardi": "traguard", "traguardo": "traguard", "traiettoria": "traiettor", "trainante": "trainant", "trainato": "train", "trainer": "trainer", "traino": "train", "tralasceremo": "tralasc", "tralascia": "tralasc", "tralasciamo": "tralasc", "tralasciare": "tralasc", "tralasciava": "tralasc", "tralasciò": "tralasc", "tralci": "tralc", "traluce": "traluc", "tram": "tram", "trama": "tram", "tramagli": "tramagl", "tramaglino": "tramaglin", "tramaliini": "tramaliin", "trambusto": "trambust", "trame": "tram", "tramenìo": "tramenì", "tramezzani": "tramezzan", "tramite": "tram", "tramonta": "tramont", "tramontano": "tramont", "tramontata": "tramont", "tramontato": "tramont", "tramonto": "tramont", "tramutato": "tramut", "trance": "tranc", "tranche": "tranc", "trani": "tran", "tranne": "trann", "tranquilizzati": "tranquilizz", "tranquilla": "tranquill", "tranquillamente": "tranquill", "tranquillanti": "tranquill", "tranquille": "tranquill", "tranquilli": "tranquill", "tranquillità": "tranquill", "tranquillizzante": "tranquillizz", "tranquillizzare": "tranquillizz", "tranquillizzata": "tranquillizz", "tranquillo": "tranquill", "transatlantica": "transatlant", "transazione": "transazion", "transeuropee": "transeurope", "transfughi": "transfug", "transiti": "trans", "transitiva": "transit", "transizione": "transizion", "transportation": "transportation", "trantina": "trantin", "trapani": "trapan", "trapassate": "trapass", "trapela": "trapel", "trapelasse": "trapel", "trapelato": "trapel", "trapiantato": "trapiant", "trapianti": "trapiant", "trapianto": "trapiant", "trapolorum": "trapolorum", "trapontando": "trapont", "trappola": "trappol", "trappole": "trappol", "trarrà": "trarr", "trarre": "trarr", "trasandata": "trasand", "trasandato": "trasand", "trascinare": "trascin", "trascinarla": "trascin", "trascinarle": "trascin", "trascinato": "trascin", "trascinatore": "trascin", "trascorrendo": "trascorr", "trascorrerà": "trascorr", "trascorrere": "trascorr", "trascorreva": "trascorr", "trascorrevano": "trascorr", "trascorrono": "trascorr", "trascorsa": "trascors", "trascorso": "trascors", "trascriver": "trascriver", "trascrivere": "trascriv", "trascriveremo": "trascriv", "trascriviamo": "trascriv", "trascura": "trascur", "trascuranza": "trascur", "trascurar": "trascur", "trascurare": "trascur", "trascurata": "trascur", "trascuratezza": "trascuratezz", "trascurato": "trascur", "trascuro": "trascur", "trascurò": "trascur", "trasferendo": "trasfer", "trasferendoli": "trasfer", "trasferì": "trasfer", "trasferimenti": "trasfer", "trasferimento": "trasfer", "trasferirà": "trasfer", "trasferire": "trasfer", "trasferirsi": "trasfer", "trasferisce": "trasfer", "trasferita": "trasfer", "trasferiti": "trasfer", "trasferito": "trasfer", "trasferitosi": "trasferit", "trasferta": "trasfert", "trasferte": "trasfert", "trasfigurare": "trasfigur", "trasforma": "trasform", "trasformandosi": "trasform", "trasformare": "trasform", "trasformarè": "trasformar", "trasformarsi": "trasform", "trasformata": "trasform", "trasformato": "trasform", "trasformazione": "trasform", "trasformistica": "trasformist", "trasfusione": "trasfusion", "trasgredire": "trasgred", "trasgredirne": "trasgred", "trasgredisca": "trasgred", "trasgredito": "trasgred", "trasgressione": "trasgression", "trasgressori": "trasgressor", "trasmesa": "trasmes", "trasmessa": "trasmess", "trasmesse": "trasmess", "trasmessi": "trasmess", "trasmesso": "trasmess", "trasmette": "trasmett", "trasmetterà": "trasmett", "trasmettere": "trasmett", "trasmetteremo": "trasmett", "trasmetterla": "trasmett", "trasmettesse": "trasmettess", "trasmettono": "trasmett", "trasmise": "trasmis", "trasmissiome": "trasmissiom", "trasmissione": "trasmission", "trasmissioni": "trasmission", "traspare": "trasp", "trasparente": "trasparent", "trasparenti": "trasparent", "trasparenza": "trasparent", "trasparire": "traspar", "traspariva": "traspar", "trasparve": "trasparv", "traspirato": "traspir", "trasporta": "trasport", "trasportano": "trasport", "trasportar": "trasport", "trasportare": "trasport", "trasportarsi": "trasport", "trasportata": "trasport", "trasportati": "trasport", "trasportato": "trasport", "trasporterà": "trasport", "trasporti": "trasport", "trasportiamoci": "trasportiamoc", "trasportistico": "trasportist", "trasporto": "trasport", "trastullo": "trastull", "tratta": "tratt", "trattabile": "trattabil", "trattabili": "trattabil", "trattamenti": "tratt", "trattamento": "tratt", "trattandosi": "tratt", "trattano": "tratt", "trattar": "tratt", "trattare": "tratt", "trattarla": "tratt", "trattarli": "tratt", "trattarlo": "tratt", "trattarsi": "tratt", "trattarvi": "tratt", "trattasse": "tratt", "trattata": "tratt", "trattate": "tratt", "trattati": "tratt", "trattativa": "trattat", "trattative": "trattat", "trattato": "tratt", "trattava": "tratt", "trattavano": "tratt", "tratte": "tratt", "trattenendole": "tratten", "trattener": "trattener", "trattenere": "tratten", "trattenerla": "tratten", "trattenerle": "tratten", "trattenerlo": "tratten", "trattenerne": "tratten", "trattenersi": "tratten", "trattenesse": "tratteness", "trattenete": "tratten", "tratteneva": "tratten", "trattenga": "tratteng", "trattenne": "trattenn", "trattenuta": "tratten", "trattenuti": "tratten", "trattenuto": "tratten", "tratterà": "tratt", "tratterebbe": "tratt", "tratti": "tratt", "trattiamo": "tratt", "trattiene": "trattien", "tratto": "tratt", "trattò": "tratt", "traumi": "traum", "travagli": "travagl", "travagliata": "travagl", "travagliate": "travagl", "travaglio": "travagl", "trave": "trav", "travedente": "travedent", "travedere": "traved", "traversa": "travers", "traversando": "travers", "traverse": "travers", "traversìe": "traversì", "traverso": "travers", "traversone": "traverson", "traveste": "travest", "travestimenti": "travest", "travestito": "travest", "travi": "trav", "traviati": "trav", "travisamento": "travis", "travisarsi": "travis", "travisati": "travis", "travolta": "travolt", "travolti": "travolt", "tre": "tre", "trebenic": "trebenic", "trebevic": "trebevic", "trecce": "trecc", "treccia": "trecc", "trecento": "trecent", "tredicenne": "tredicenn", "tredicesimo": "tredicesim", "tredici": "tredic", "tregua": "tregu", "trek": "trek", "trema": "trem", "tremaglia": "tremagl", "tremando": "trem", "tremante": "tremant", "tremanti": "tremant", "tremar": "trem", "tremare": "trem", "tremava": "trem", "tremenda": "trem", "tremendo": "trem", "tremila": "tremil", "tremito": "trem", "tremò": "trem", "tremola": "tremol", "tremolando": "tremol", "tremolante": "tremol", "tremolanti": "tremol", "tremolare": "tremol", "tremolava": "tremol", "tremonti": "tremont", "tremula": "tremul", "trend": "trend", "treni": "tren", "trenno": "trenn", "treno": "tren", "trent": "trent", "trenta": "trent", "trentacinque": "trentacinqu", "trentacinquenne": "trentacinquenn", "trentadue": "trentadu", "trentalange": "trentalang", "trentamila": "trentamil", "trentatre": "trentatr", "trentennale": "trentennal", "trentesimo": "trentesim", "trentina": "trentin", "trentino": "trentin", "trento": "trent", "treossi": "treoss", "tresigallo": "tresigall", "treu": "treu", "treviso": "trevis", "trezza": "trezz", "trezze": "trezz", "trezzo": "trezz", "triangolazione": "triangol", "triathlon": "triathlon", "tribale": "tribal", "tribolati": "tribol", "tribolato": "tribol", "tribolazione": "tribol", "tribolazioni": "tribol", "tribù": "tribù", "tribuna": "tribun", "tribunal": "tribunal", "tribunale": "tribunal", "tribunalè": "tribunal", "tribunali": "tribunal", "tribune": "tribun", "tribunè": "tribun", "tributano": "tribut", "tributari": "tributar", "tributaria": "tributar", "tributarie": "tributar", "tributarij": "tributarij", "tricarico": "tricar", "tricolore": "tricolor", "tridente": "trident", "triennale": "triennal", "triennio": "trienn", "trieste": "triest", "triestina": "triestin", "triestini": "triestin", "triestino": "triestin", "trigoso": "trigos", "trilingue": "trilingu", "trill": "trill", "trimestrali": "trimestral", "trimestre": "trimestr", "trincando": "trinc", "trincare": "trinc", "trincea": "trince", "trincerandosi": "trincer", "trincerarsi": "trincer", "trincerati": "trincer", "trinchera": "trincher", "trinciando": "trinc", "trinidad": "trinidad", "trionfale": "trionfal", "trionfali": "trionfal", "trionfante": "trionfant", "trionfare": "trionf", "trionfarne": "trionf", "trionfatore": "trionfator", "trionfo": "trionf", "trionfò": "trionf", "tripcovich": "tripcovic", "triplicato": "triplic", "tripnavi": "tripn", "tripoli": "tripol", "tripudio": "tripud", "trirak": "trirak", "trista": "trist", "tristamente": "trist", "triste": "trist", "tristezza": "tristezz", "tristi": "trist", "tristissima": "tristissim", "tristo": "trist", "trita": "trit", "tritticò": "trittic", "trocker": "trocker", "trofeo": "trofe", "troffa": "troff", "trofino": "trofin", "troi": "tro", "troika": "troik", "troikà": "troik", "tromba": "tromb", "trombe": "tromb", "trombettare": "trombett", "trombetti": "trombett", "tromboni": "trombon", "tronca": "tronc", "troncando": "tronc", "troncar": "tronc", "troncare": "tronc", "troncata": "tronc", "troncate": "tronc", "troncato": "tronc", "troncatura": "troncatur", "tronche": "tronc", "troncherebbe": "tronc", "tronchi": "tronc", "tronchiamo": "tronc", "tronco": "tronc", "troncò": "tronc", "troneggiava": "tronegg", "tropeano": "trop", "trophy": "trophy", "tropicali": "tropical", "troppa": "tropp", "troppe": "tropp", "troppi": "tropp", "troppo": "tropp", "trotta": "trott", "trottare": "trott", "trottata": "trott", "trottava": "trott", "trotter": "trotter", "trotto": "trott", "trottò": "trott", "trouar": "trou", "trouaua": "trouau", "trouauano": "trouau", "troupe": "troup", "troupes": "troupes", "trova": "trov", "trovale": "troval", "trovan": "trovan", "trovando": "trov", "trovandolo": "trov", "trovandosene": "trov", "trovandosi": "trov", "trovano": "trov", "trovar": "trov", "trovarcela": "trov", "trovarci": "trov", "trovarcisi": "trovarcis", "trovare": "trov", "trovarla": "trov", "trovarle": "trov", "trovarli": "trov", "trovarmi": "trov", "trovarne": "trov", "trovaron": "trovaron", "trovarono": "trov", "trovarsela": "trovarsel", "trovarsi": "trov", "trovarvi": "trov", "trovasse": "trov", "trovasser": "trovasser", "trovassero": "trov", "trovassi": "trov", "trovata": "trov", "trovate": "trov", "trovati": "trov", "trovato": "trov", "trovatolo": "trovatol", "trovava": "trov", "trovavan": "trovavan", "trovavano": "trov", "trovavo": "trov", "troverà": "trov", "troverai": "trov", "troveranno": "trov", "troverebbe": "trov", "troverebbero": "trov", "troverei": "trov", "troveremo": "trov", "troverete": "trov", "troverò": "trov", "trovi": "trov", "troviamo": "trov", "trovino": "trovin", "trovo": "trov", "trovò": "trov", "troy": "troy", "trucidare": "trucid", "trudell": "trudell", "truffa": "truff", "truffe": "truff", "trufferia": "truffer", "truiden": "truiden", "trujilo": "trujil", "trujllo": "trujll", "truppa": "trupp", "truppe": "trupp", "tu": "tu", "tua": "tua", "tubazioni": "tubazion", "tubetti": "tubett", "tubettificio": "tubettific", "tubi": "tub", "tuccillo": "tuccill", "tudisco": "tud", "tudjman": "tudjman", "tue": "tue", "tuffo": "tuff", "tuguri": "tugur", "tulipano": "tulip", "tullia": "tull", "tullio": "tull", "tumulti": "tumult", "tumulto": "tumult", "tumultuaria": "tumultuar", "tumultuariamente": "tumultuar", "tumultuosa": "tumultu", "tumultuose": "tumultu", "tumultuosi": "tumultu", "tumultuoso": "tumultu", "tunisi": "tunis", "tunisia": "tunis", "tunnel": "tunnel", "tuo": "tuo", "tuoi": "tuo", "tuona": "tuon", "tuonato": "tuon", "tuoni": "tuon", "tuono": "tuon", "tupac": "tupac", "turarsene": "tur", "turava": "tur", "turba": "turb", "turbamento": "turb", "turbarle": "turb", "turbativa": "turbat", "turbato": "turb", "turbavan": "turbavan", "turbercolosi": "turbercol", "turbine": "turbin", "turbolente": "turbolent", "turca": "turc", "turchia": "turc", "turci": "turc", "turcimanno": "turcimann", "turco": "turc", "turetta": "turett", "turismo": "turism", "turisti": "turist", "turistica": "turist", "turistiche": "turist", "turistico": "turist", "turkmenistan": "turkmenistan", "turno": "turn", "turpe": "turp", "turrini": "turrin", "turris": "turris", "tutankamen": "tutankamen", "tutela": "tutel", "tutelano": "tutel", "tutelare": "tutel", "tutrici": "tutric", "tutt": "tutt", "tutta": "tutt", "tuttalpiù": "tuttalpiù", "tuttavia": "tuttav", "tutte": "tutt", "tutti": "tutt", "tutto": "tutt", "tuttobasket": "tuttobasket", "tuttora": "tuttor", "tuxla": "tuxl", "tuzco": "tuzc", "tuzzi": "tuzz", "tv": "tv", "tvm": "tvm", "tvmovie": "tvmov", "tyldum": "tyldum", "tzeltal": "tzeltal", "tzeltales": "tzeltales", "tzotzil": "tzotzil", "u": "u", "uan": "uan", "ubaldo": "ubald", "ubbidì": "ubbid", "ubbidiente": "ubbidient", "ubbidienti": "ubbidient", "ubbidienza": "ubbidient", "ubbidir": "ubbid", "ubbidirà": "ubbid", "ubbidire": "ubbid", "ubbidirla": "ubbid", "ubbidirli": "ubbid", "ubbidisca": "ubbid", "ubbidisce": "ubbid", "ubbidita": "ubbid", "ubbidito": "ubbid", "ubbidiva": "ubbid", "ubbie": "ubbi", "ubiquita": "ubiqu", "ubiquità": "ubiqu", "ubit": "ubit", "ubriacatura": "ubriacatur", "uccel": "uccel", "uccellacci": "uccellacc", "uccelli": "uccell", "uccello": "uccell", "uccide": "uccid", "uccidendo": "uccid", "uccidendolo": "uccid", "uccidere": "uccid", "ucciderla": "uccid", "ucciderlo": "uccid", "uccisa": "uccis", "uccise": "uccis", "uccisi": "uccis", "uccisione": "uccision", "uccisionè": "uccision", "ucciso": "uccis", "uccisor": "uccisor", "uccisore": "uccisor", "ucn": "ucn", "ucraina": "ucrain", "ucraino": "ucrain", "udc": "udc", "udenti": "udent", "udf": "udf", "udì": "udì", "udienza": "udienz", "udienze": "udienz", "udine": "udin", "udinese": "udines", "udir": "udir", "udito": "udit", "uditori": "uditor", "uditorio": "uditor", "udiva": "udiv", "udivan": "udivan", "udo": "udo", "udugov": "udugov", "ue": "ue", "uefa": "uef", "ueo": "ueo", "uero": "uer", "ufficetto": "ufficett", "uffici": "uffic", "ufficiale": "ufficial", "ufficiali": "ufficial", "ufficializzare": "ufficializz", "ufficializzata": "ufficializz", "ufficializzazione": "ufficializz", "ufficialmente": "ufficial", "ufficilizzate": "ufficilizz", "ufficio": "uffic", "ufficiosamente": "uffic", "uficio": "ufic", "ufizi": "ufiz", "ufiziale": "ufizial", "ufiziali": "ufizial", "ufizio": "ufiz", "ufo": "ufo", "uganda": "ugand", "uggia": "uggi", "uggiosa": "uggios", "uggioso": "uggios", "ugo": "ugo", "ugolini": "ugolin", "uguagliano": "uguagl", "uguaglianza": "uguagl", "uguagliare": "uguagl", "ugual": "ugual", "uguale": "ugual", "uguali": "ugual", "ugualmente": "ugual", "uh": "uh", "uias": "uias", "uil": "uil", "uilm": "uilm", "uiltrasporti": "uiltrasport", "ulcera": "ulcer", "ulteriore": "ulterior", "ulteriori": "ulterior", "ulteriormente": "ulterior", "ultim": "ultim", "ultima": "ultim", "ultimamente": "ultim", "ultimativa": "ultim", "ultime": "ultim", "ultimi": "ultim", "ultimo": "ultim", "ultrà": "ultrà", "ultranazionalista": "ultranazional", "ultranovanmtenne": "ultranovanmtenn", "ultras": "ultras", "umana": "uman", "umanamente": "uman", "umane": "uman", "umani": "uman", "umanità": "uman", "umanitari": "umanitar", "umanitaria": "umanitar", "umanitarià": "umanitar", "umanitarie": "umanitar", "umanitario": "umanitar", "umano": "uman", "umar": "umar", "umberto": "umbert", "umbra": "umbra", "umbri": "umbri", "umbria": "umbri", "ume": "ume", "umida": "umid", "umidità": "umid", "umido": "umid", "umile": "umil", "umili": "umil", "umiliante": "umil", "umiliare": "umil", "umiliata": "umil", "umiliati": "umil", "umiliato": "umil", "umiliazione": "umil", "umiliazioni": "umil", "umilmente": "umil", "umiltà": "umilt", "umore": "umor", "umori": "umor", "umorismo": "umor", "umorista": "umor", "un": "un", "una": "una", "unanime": "unanim", "unanimismo": "unanim", "unanimità": "unanim", "unasca": "unasc", "uncinate": "uncin", "unctores": "unctores", "undecimo": "undecim", "under": "under", "undicesimo": "undicesim", "undici": "undic", "une": "une", "unendo": "unend", "unge": "unge", "ungendo": "ungend", "unger": "unger", "ungere": "unger", "ungerò": "unger", "ungherese": "ungheres", "ungheresi": "ungheres", "ungheria": "ungher", "unghie": "unghi", "ungili": "ungil", "unguenta": "unguent", "unguenti": "unguent", "unguento": "unguent", "unhcr": "unhcr", "uni": "uni", "unì": "unì", "unica": "unic", "unicamente": "unic", "unicef": "unicef", "unicem": "unicem", "unici": "unic", "unico": "unic", "unificate": "unific", "unificato": "unific", "uniformarli": "uniform", "uniformavano": "uniform", "uniforme": "uniform", "uniformità": "uniform", "unilaterale": "unilateral", "uninominale": "uninominal", "uninominali": "uninominal", "union": "union", "unione": "union", "unipi": "unip", "unipol": "unipol", "unire": "unir", "unirsi": "unirs", "unirvi": "unirv", "unisce": "unisc", "uniscono": "unisc", "unita": "unit", "unità": "unit", "unitari": "unitar", "unitaria": "unitar", "unitarie": "unitar", "unitarieta": "unitariet", "unitarietà": "unitariet", "unitario": "unitar", "unite": "unit", "united": "united", "uniti": "unit", "unitissimo": "unitissim", "unito": "unit", "univa": "univ", "univano": "univ", "universale": "universal", "universali": "universal", "universalità": "universal", "università": "univers", "universitaria": "universitar", "university": "university", "universo": "univers", "unni": "unni", "uno": "uno", "unocal": "unocal", "unosom": "unosom", "unprofor": "unprofor", "unr": "unr", "unte": "unte", "unti": "unti", "unto": "unto", "untor": "untor", "untore": "untor", "untorello": "untorell", "untori": "untor", "untumi": "untum", "unzione": "unzion", "unzioni": "unzion", "uom": "uom", "uomini": "uomin", "uomo": "uom", "uova": "uov", "up": "up", "uranio": "uran", "urban": "urban", "urbana": "urban", "urbane": "urban", "urbani": "urban", "urbanistiche": "urbanist", "urbano": "urban", "urbe": "urbe", "urbini": "urbin", "urbis": "urbis", "urgente": "urgent", "urgenti": "urgent", "urgenza": "urgenz", "urgenze": "urgenz", "urla": "urla", "urlando": "urland", "urlano": "urlan", "urlare": "urlar", "urlargli": "urlargl", "urlato": "urlat", "urlatori": "urlator", "urlava": "urlav", "urlavan": "urlavan", "urlavano": "urlav", "urli": "urli", "urlìo": "urlì", "urlo": "urlo", "urlò": "urlò", "urloni": "urlon", "urna": "urna", "urne": "urne", "urrea": "urre", "urso": "urso", "urss": "urss", "urtacchiando": "urtacc", "urtando": "urtand", "urtano": "urtan", "urtar": "urtar", "urtati": "urtat", "urtato": "urtat", "urti": "urti", "urtone": "urton", "urtoni": "urton", "uruguaiano": "uruguai", "usa": "usa", "usan": "usan", "usano": "usan", "usanza": "usanz", "usanze": "usanz", "usar": "usar", "usare": "usar", "usarlo": "usarl", "usarono": "usar", "usarsi": "usars", "usasse": "usass", "usata": "usat", "usate": "usat", "usati": "usat", "usato": "usat", "usava": "usav", "usavan": "usavan", "usavano": "usav", "uscendo": "uscend", "uscente": "uscent", "uscenti": "uscent", "usci": "usci", "uscì": "uscì", "usciaccio": "usciacc", "usciamo": "usciam", "uscio": "usci", "usciolino": "usciolin", "uscir": "uscir", "uscire": "uscir", "uscirebbe": "uscirebb", "usciremo": "uscirem", "uscirne": "uscirn", "usciron": "usciron", "uscirono": "uscir", "uscisse": "usciss", "uscissero": "uscisser", "uscita": "uscit", "uscite": "uscit", "usciti": "uscit", "uscito": "uscit", "usciva": "usciv", "uscivan": "uscivan", "uscivano": "usciv", "uscivo": "usciv", "usd": "usd", "usi": "usi", "usitato": "usit", "usl": "usl", "uso": "uso", "usò": "usò", "usppi": "usppi", "usted": "usted", "ustione": "ustion", "usuale": "usual", "usufruito": "usufru", "usura": "usur", "usurpare": "usurp", "utensili": "utensil", "utente": "utent", "utenti": "utent", "utenza": "utenz", "utenze": "utenz", "utile": "util", "utili": "util", "utilì": "util", "utilità": "util", "utilizza": "utilizz", "utilizzando": "utilizz", "utilizzandole": "utilizz", "utilizzano": "utilizz", "utilizzare": "utilizz", "utilizzata": "utilizz", "utilizzate": "utilizz", "utilizzati": "utilizz", "utilizzato": "utilizz", "utilizzazione": "utilizz", "utilizzerà": "utilizz", "utilizzi": "utilizz", "utilizzo": "utilizz", "utri": "utri", "uva": "uva", "uve": "uve", "uxoricida": "uxoricid", "v": "v", "va": "va", "vacanza": "vacanz", "vacanze": "vacanz", "vacato": "vac", "vaccaro": "vaccar", "vaccherella": "vaccherell", "vaccherelle": "vaccherell", "vacchetta": "vacchett", "vaccino": "vaccin", "vacek": "vacek", "vada": "vad", "vadano": "vad", "vado": "vad", "vaga": "vag", "vagabonda": "vagabond", "vagabondi": "vagabond", "vagabondo": "vagabond", "vagando": "vag", "vagano": "vag", "vagante": "vagant", "vaganti": "vagant", "vagar": "vag", "vagheggiare": "vaghegg", "vagheggiato": "vaghegg", "vagiti": "vag", "vagito": "vag", "vaglia": "vagl", "vagliata": "vagl", "vagliensteino": "vaglienstein", "vaglion": "vaglion", "vagoni": "vagon", "vai": "vai", "vaiano": "vai", "vaio": "vai", "vaivada": "vaivad", "val": "val", "valdagno": "valdagn", "valdes": "valdes", "valdistano": "valdist", "valdo": "vald", "valdostana": "valdostan", "valdostano": "valdost", "vale": "val", "valente": "valent", "valenti": "valent", "valentia": "valent", "valentina": "valentin", "valentini": "valentin", "valentino": "valentin", "valentuomini": "valentuomin", "valenza": "valenz", "valere": "val", "valeria": "valer", "valeriano": "valer", "valerio": "valer", "valersi": "val", "valesse": "valess", "valessero": "val", "valeva": "val", "valevan": "valevan", "valevano": "val", "valga": "valg", "valgono": "valg", "vali": "val", "valichi": "valic", "valico": "valic", "valida": "valid", "validi": "valid", "validità": "valid", "valido": "valid", "valinotti": "valinott", "valle": "vall", "valletta": "vallett", "valley": "valley", "valli": "vall", "valligiani": "valligian", "vallistai": "vallista", "valloncelli": "valloncell", "vallone": "vallon", "valobra": "valobr", "valore": "valor", "valori": "valor", "valorizza": "valorizz", "valorizzare": "valorizz", "valorizzazione": "valorizz", "valorizzeranno": "valorizz", "valoti": "valot", "valsassina": "valsassin", "valse": "vals", "valsero": "valser", "valtellina": "valtellin", "valtellinese": "valtellines", "valtrompia": "valtromp", "valuta": "val", "valutando": "valut", "valutar": "valut", "valutare": "valut", "valutari": "valutar", "valutaria": "valutar", "valutarie": "valutar", "valutario": "valutar", "valutata": "valut", "valutate": "valut", "valutato": "valut", "valutazione": "valut", "valutazioni": "valut", "valute": "val", "vampiro": "vampir", "van": "van", "vana": "van", "vancouver": "vancouver", "vandalismo": "vandal", "vandalo": "vandal", "vandernoot": "vandernoot", "vane": "van", "vaneggiamenti": "vanegg", "vaneggiamento": "vanegg", "vanga": "vang", "vangelo": "vangel", "vanghe": "vang", "vangile": "vangil", "vanguardia": "vanguard", "vani": "van", "vanificare": "vanific", "vanificati": "vanific", "vanificato": "vanific", "vanigli": "vanigl", "vanità": "vanit", "vanni": "vann", "vannino": "vannin", "vanno": "vann", "vannoni": "vannon", "vano": "van", "vanoli": "vanol", "vanta": "vant", "vantaggi": "vantagg", "vantaggio": "vantagg", "vantaggioso": "vantagg", "vantano": "vant", "vantarmi": "vant", "vantarsene": "vant", "vantarsi": "vant", "vantati": "vant", "vantato": "vant", "vanto": "vant", "vapori": "vapor", "var": "var", "varare": "var", "varate": "var", "varato": "var", "varcata": "varc", "varcato": "varc", "varchi": "varc", "varda": "vard", "varerà": "var", "varese": "vares", "varesina": "varesin", "varesotto": "varesott", "vari": "var", "varia": "var", "variabile": "variabil", "variabili": "variabil", "variandosi": "var", "variante": "variant", "varianti": "variant", "variata": "var", "variato": "var", "variava": "var", "variavano": "var", "variazione": "variazion", "variazioni": "variazion", "varie": "var", "variegato": "varieg", "varietà": "variet", "varietali": "varietal", "varii": "var", "vario": "var", "variopinti": "variopint", "varo": "var", "varrebbe": "varrebb", "varrone": "varron", "varsavia": "varsav", "vasari": "vasar", "vasca": "vasc", "vascello": "vascell", "vasco": "vasc", "vasetto": "vasett", "vash": "vash", "vasi": "vas", "vaso": "vas", "vassallesco": "vassallesc", "vassalli": "vassall", "vasta": "vast", "vaste": "vast", "vastese": "vastes", "vasti": "vast", "vastissima": "vastissim", "vastità": "vastit", "vasto": "vast", "vaticana": "vatican", "vaticano": "vatic", "vaticinare": "vaticin", "vattene": "vatten", "vattenfall": "vattenfall", "vazquez": "vazquez", "vd": "vd", "vdovin": "vdovin", "ve": "ve", "vecce": "vecc", "vecchi": "vecc", "vecchia": "vecc", "vecchie": "vecc", "vecchiezza": "vecchiezz", "vecchio": "vecc", "vecchione": "vecchion", "vece": "vec", "veci": "vec", "veda": "ved", "vedano": "ved", "vede": "ved", "vedendo": "ved", "vedendola": "ved", "vedendoli": "ved", "vedendolo": "ved", "vedendomi": "ved", "vedendoseli": "vedendosel", "vedendosi": "ved", "vedendovi": "ved", "veder": "veder", "vederanno": "ved", "vederci": "ved", "vedere": "ved", "vedergli": "ved", "vederla": "ved", "vederle": "ved", "vederli": "ved", "vederlo": "ved", "vederne": "ved", "vedersela": "vedersel", "vedersene": "ved", "vedersi": "ved", "vederti": "ved", "vedervi": "ved", "vedesse": "vedess", "vedessero": "ved", "vedessi": "vedess", "vedeste": "vedest", "vedete": "ved", "vedettà": "vedett", "vedeva": "ved", "vedevamo": "ved", "vedevan": "vedevan", "vedevano": "ved", "vedi": "ved", "vediamo": "ved", "vediate": "ved", "vedo": "ved", "vedon": "vedon", "vedono": "ved", "vedova": "vedov", "vedrà": "vedr", "vedrai": "vedra", "vedranno": "vedrann", "vedrebbe": "vedrebb", "vedrebbero": "vedrebber", "vedremo": "vedrem", "vedrete": "vedr", "vedrò": "vedr", "veduta": "ved", "vedute": "ved", "veduti": "ved", "veduto": "ved", "veemente": "veement", "veemenza": "veemenz", "vega": "veg", "vegetariana": "vegetarian", "vegetazione": "veget", "veglia": "vegl", "vegliar": "vegl", "vegliardo": "vegliard", "vegliare": "vegl", "vegliasse": "vegl", "vegliato": "vegl", "vegliava": "vegl", "vegliavano": "vegl", "vegliavo": "vegl", "veglie": "vegl", "veicoli": "veicol", "veicolo": "veicol", "veivoli": "veivol", "vel": "vel", "vela": "vel", "velar": "vel", "velasco": "velasc", "velata": "vel", "velate": "vel", "velato": "vel", "vele": "vel", "veleni": "velen", "veleno": "velen", "velenosa": "velen", "velenosi": "velen", "velette": "velett", "veli": "vel", "veliconi": "velicon", "velika": "velik", "velivoli": "velivol", "velivolo": "velivol", "velletri": "velletr", "velluto": "vell", "velo": "vel", "veloce": "veloc", "velocemente": "veloc", "velocissima": "velocissim", "velocista": "veloc", "velocità": "veloc", "velocizzare": "velocizz", "velodromo": "velodrom", "velotti": "velott", "veltroni": "veltron", "veluti": "vel", "vena": "ven", "vende": "vend", "vendemmia": "vendemm", "vender": "vender", "venderà": "vend", "vendere": "vend", "vendersene": "vend", "vendersi": "vend", "vendessero": "vend", "vendetta": "vendett", "vendette": "vendett", "vendeva": "vend", "vendevano": "vend", "vendicarsi": "vendic", "vendicati": "vendic", "vendicativo": "vendic", "vendicatore": "vendic", "vendicava": "vendic", "vendita": "vend", "vendite": "vend", "venditori": "venditor", "venduta": "vend", "vendute": "vend", "venduti": "vend", "vendutì": "vendut", "venduto": "vend", "vene": "ven", "venefica": "venef", "venefiche": "venef", "venefici": "venef", "venefico": "venef", "venefizio": "venefiz", "venendo": "ven", "venendogli": "ven", "veneno": "venen", "venerabil": "venerabil", "venerabile": "vener", "venerato": "vener", "venerazione": "vener", "venerdi": "venerd", "venerdì": "venerd", "venere": "ven", "veneta": "venet", "veneti": "venet", "venetì": "venet", "veneto": "venet", "venetoblue": "venetoblu", "venetocapital": "venetocapital", "venetocash": "venetocash", "venetorend": "venetorend", "venetoventure": "venetoventur", "venezia": "venez", "veneziani": "venezian", "veneziano": "venez", "venezuela": "venezuel", "venezuelano": "venezuel", "venga": "veng", "vengan": "vengan", "vengano": "veng", "vengo": "veng", "vengon": "vengon", "vengono": "veng", "veniate": "ven", "venir": "ven", "venircela": "ven", "venirci": "ven", "venire": "ven", "venireinchinò": "venireinchin", "venirgli": "ven", "venirle": "ven", "venirlo": "ven", "venirne": "ven", "venirsi": "ven", "venirvi": "ven", "venisse": "veniss", "venissero": "ven", "venite": "ven", "venitemi": "venitem", "veniva": "ven", "venivamo": "ven", "venivan": "venivan", "venivano": "ven", "venivo": "ven", "venne": "venn", "venner": "venner", "vennero": "venner", "venosa": "venos", "vent": "vent", "ventaglio": "ventagl", "ventata": "vent", "ventenne": "ventenn", "ventennio": "ventenn", "venti": "vent", "venticello": "venticell", "venticinque": "venticinqu", "ventidue": "ventidu", "ventilata": "ventil", "ventilati": "ventil", "ventimila": "ventimil", "ventina": "ventin", "ventiquattro": "ventiquattr", "ventisei": "ventise", "ventisette": "ventisett", "ventitre": "ventitr", "vento": "vent", "ventre": "ventr", "ventriloqua": "ventriloqu", "ventriloquo": "ventriloqu", "ventura": "ventur", "venture": "ventur", "ventures": "ventures", "venturin": "venturin", "venturo": "ventur", "venturoni": "venturon", "venuta": "ven", "venutagli": "venutagl", "venutale": "venutal", "venutasi": "venutas", "venute": "ven", "venuti": "ven", "venuto": "ven", "ver": "ver", "vera": "ver", "verace": "verac", "veracruz": "veracruz", "veramente": "ver", "verbale": "verbal", "verbali": "verbal", "verbo": "verb", "vercelli": "vercell", "verde": "verd", "verdè": "verd", "verdecupi": "verdecup", "verdettò": "verdett", "verdi": "verd", "verdure": "verdur", "vere": "ver", "verecondia": "verecond", "vergani": "vergan", "verginale": "verginal", "verginali": "verginal", "vergine": "vergin", "verginità": "vergin", "vergogna": "vergogn", "vergognandosi": "vergogn", "vergognassero": "vergogn", "vergognava": "vergogn", "vergognosa": "vergogn", "vergognosi": "vergogn", "vergognoso": "vergogn", "veri": "ver", "verifi": "verif", "verifica": "verif", "verificar": "verific", "verificare": "verific", "verificarsi": "verific", "verificate": "verific", "verificatesi": "verificates", "verificati": "verific", "verificato": "verific", "verificatore": "verif", "verificatori": "verif", "verificatosi": "verificat", "verifiche": "verif", "verificheremo": "verific", "verifichi": "verif", "verifichino": "verifichin", "verisimile": "verisimil", "verita": "ver", "verità": "verit", "verlag": "verlag", "verlanti": "verlant", "verme": "verm", "vermigli": "vermigl", "vermiglie": "vermigl", "vermiglio": "vermigl", "vernaccia": "vernacc", "vernì": "vern", "vernice": "vernic", "vero": "ver", "verona": "veron", "veronese": "verones", "veronica": "veron", "verosimile": "verosimil", "verrà": "verr", "verrai": "verra", "verranno": "verrann", "verrebbe": "verrebb", "verrebbero": "verrebber", "verrei": "verre", "verremo": "verrem", "verri": "verr", "verrò": "verr", "versacci": "versacc", "versaccio": "versacc", "versamenti": "vers", "versamento": "vers", "versante": "versant", "versanti": "versant", "versare": "vers", "versati": "vers", "versatile": "versatil", "versato": "vers", "versetti": "versett", "versetto": "versett", "versi": "vers", "versilia": "versil", "versione": "version", "verso": "vers", "vert": "vert", "vertenza": "vertenz", "vertenze": "vertenz", "verticale": "vertical", "verticalizzato": "verticalizz", "verticalmente": "vertical", "vertice": "vertic", "vertici": "vertic", "verticistica": "verticist", "verum": "verum", "verun": "verun", "veruna": "verun", "verzura": "verzur", "ves": "ves", "vescovi": "vescov", "vescovo": "vescov", "vespa": "vesp", "vespaio": "vespai", "vespucci": "vespucc", "vessare": "vess", "vessato": "vess", "vessazione": "vessazion", "vessazioni": "vessazion", "vessillo": "vessill", "vesta": "vest", "veste": "vest", "vestendo": "vest", "vestendolo": "vest", "vesti": "vest", "vestì": "vest", "vestiario": "vestiar", "vestigi": "vestig", "vestigio": "vestig", "vestigios": "vestigios", "vestimento": "vest", "vestir": "vest", "vestire": "vest", "vestirsi": "vest", "vestita": "vest", "vestite": "vest", "vestitevi": "vestit", "vestiti": "vest", "vestito": "vest", "vestitosi": "vestit", "vestiva": "vest", "vestizione": "vestizion", "vesto": "vest", "veterani": "veteran", "veterinario": "veterinar", "vetr": "vetr", "vetrate": "vetr", "vetri": "vetr", "vetriate": "vetr", "vetro": "vetr", "vetta": "vett", "vetticciola": "vetticciol", "vettovagliar": "vettovagl", "vettura": "vettur", "vetture": "vettur", "vezù": "vezù", "vezzo": "vezz", "vg": "vg", "vi": "vi", "via": "via", "viadana": "viadan", "viaggetto": "viaggett", "viaggi": "viagg", "viaggia": "viagg", "viaggiano": "viagg", "viaggiar": "viagg", "viaggiare": "viagg", "viaggiatore": "viaggiator", "viaggiatori": "viaggiator", "viaggiava": "viagg", "viaggiavano": "viagg", "viaggio": "viagg", "viale": "vial", "viali": "vial", "vialli": "viall", "viamare": "viam", "viandante": "viandant", "viandanti": "viandant", "vianello": "vianell", "vianini": "vianin", "viareggina": "viareggin", "viareggini": "viareggin", "viareggio": "viaregg", "viatico": "viatic", "vibici": "vibic", "vibo": "vib", "vibrante": "vibrant", "vicario": "vicar", "vice": "vic", "viceallenatore": "viceallen", "vicecaposervizio": "vicecaposerviz", "vicecomandante": "vicecomand", "vicedirettore": "vicedirettor", "vicenda": "vic", "vicende": "vic", "vicendevole": "vicendevol", "vicendevoli": "vicendevol", "vicendevolmente": "vicendevol", "vicente": "vicent", "vicentina": "vicentin", "vicentini": "vicentin", "vicentino": "vicentin", "vicenza": "vicenz", "vicepresidente": "vicepresident", "viceprimo": "viceprim", "vicerè": "vicer", "vicesegretario": "vicesegretar", "viceversa": "vicevers", "vicina": "vicin", "vicinanza": "vicin", "vicinato": "vicin", "vicine": "vicin", "vicini": "vicin", "vicino": "vicin", "vicki": "vick", "vicky": "vicky", "vico": "vic", "vicoforte": "vicofort", "vicolo": "vicol", "victoria": "victor", "vida": "vid", "vide": "vid", "videlizet": "videlizet", "videntur": "videntur", "video": "vide", "vider": "vider", "videro": "vider", "vidi": "vid", "vidit": "vidit", "vido": "vid", "vidù": "vidù", "vie": "vie", "vien": "vien", "viene": "vien", "vieni": "vien", "vienna": "vienn", "vierchowod": "vierchowod", "vieri": "vier", "vieta": "viet", "vietate": "viet", "vietati": "viet", "vietato": "viet", "viezzoli": "viezzol", "vigente": "vigent", "vigilano": "vigil", "vigilante": "vigil", "vigilantes": "vigilantes", "vigilanza": "vigil", "vigilar": "vigil", "vigile": "vigil", "vigili": "vigil", "vigilia": "vigil", "vigliacchi": "vigliacc", "vigna": "vign", "vignati": "vign", "vigne": "vign", "vigneti": "vignet", "vignetta": "vignett", "vignini": "vignin", "vigore": "vigor", "vigorelli": "vigorell", "vigorosa": "vigor", "vigorosamente": "vigor", "vigoroso": "vigor", "viii": "vii", "viktor": "viktor", "vil": "vil", "vile": "vil", "vili": "vil", "vilipendio": "vilipend", "vilipesa": "vilipes", "villa": "vill", "villafranca": "villafranc", "village": "villag", "villaggi": "villagg", "villaggio": "villagg", "villagigo": "villagig", "villana": "villan", "villanaccio": "villanacc", "villanelle": "villanell", "villani": "villan", "villanià": "villan", "villanie": "villan", "villano": "vill", "ville": "vill", "villeggianti": "villegg", "villeggiare": "villegg", "villeggiatura": "villeggiatur", "villeggiature": "villeggiatur", "villeggiava": "villegg", "villorba": "villorb", "vilmente": "vilment", "viltà": "vilt", "vilucchioni": "vilucchion", "vimercati": "vimerc", "vin": "vin", "vince": "vinc", "vincendone": "vinc", "vincent": "vincent", "vincente": "vincent", "vincenzo": "vincenz", "vincer": "vincer", "vincerà": "vinc", "vincere": "vinc", "vinceremo": "vinc", "vincerla": "vinc", "vincerlo": "vinc", "vinceva": "vinc", "vinci": "vinc", "vinciate": "vinc", "vincitore": "vincitor", "vincitori": "vincitor", "vincolare": "vincol", "vincolati": "vincol", "vincoli": "vincol", "vincono": "vinc", "vinee": "vine", "vini": "vin", "vino": "vin", "vinse": "vins", "vinsero": "vinser", "vinta": "vint", "vinti": "vint", "vinto": "vint", "viola": "viol", "violabile": "violabil", "violabilissimo": "violabilissim", "violacei": "violace", "violante": "violant", "violare": "viol", "violato": "viol", "violazione": "violazion", "violazioni": "violazion", "violenta": "violent", "violente": "violent", "violentemente": "violent", "violenti": "violent", "violento": "violent", "violenza": "violenz", "violenze": "violenz", "viottola": "viottol", "viottole": "viottol", "vip": "vip", "virale": "viral", "virdò": "vird", "virginia": "virgin", "virgole": "virgol", "virgolettato": "virgolett", "virgolette": "virgolett", "virile": "viril", "virilità": "viril", "virtu": "virtu", "virtù": "virtù", "virtuale": "virtual", "virtuosamente": "virtuos", "virtuose": "virtuos", "virtuosi": "virtuos", "virtuoso": "virtuos", "vis": "vis", "visacci": "visacc", "visaccio": "visacc", "viscere": "visc", "visco": "visc", "visconteo": "visconte", "visconti": "viscont", "visere": "vis", "visi": "vis", "visibile": "visibil", "visibili": "visibil", "visibilio": "visibil", "visibilità": "visibil", "visibilmente": "visibil", "visiera": "visier", "visino": "visin", "visione": "vision", "visioni": "vision", "visita": "vis", "visitando": "visit", "visitar": "visit", "visitare": "visit", "visitarli": "visit", "visitarono": "visit", "visitassero": "visit", "visitate": "visit", "visitato": "visit", "visitatori": "visit", "visitava": "visit", "visitavano": "visit", "visite": "vis", "visitò": "visit", "viso": "vis", "visoni": "vison", "vispo": "visp", "visse": "viss", "vissero": "visser", "vissuta": "viss", "vissuto": "viss", "vista": "vist", "vistala": "vistal", "viste": "vist", "visti": "vist", "visto": "vist", "vistolo": "vistol", "vistose": "vistos", "vistoselo": "vistosel", "vistosi": "vistos", "vistoso": "vistos", "viswanathan": "viswanathan", "vita": "vit", "vità": "vit", "vitale": "vital", "vitali": "vital", "vitalità": "vital", "vite": "vit", "viti": "vit", "viticci": "viticc", "vitiello": "vitiell", "vito": "vit", "vittima": "vittim", "vittime": "vittim", "vitto": "vitt", "vittore": "vittor", "vittoria": "vittor", "vittorie": "vittor", "vittorio": "vittor", "vittoriosa": "vittor", "vituperato": "vituper", "vituperosa": "vituper", "viuzza": "viuzz", "viva": "viv", "vivace": "vivac", "vivaci": "vivac", "vivacità": "vivac", "vivacizzato": "vivacizz", "vivaldi": "vivald", "vivamente": "viv", "vivanda": "vivand", "vivande": "vivand", "vive": "viv", "vivè": "viv", "vivendo": "viv", "vivente": "vivent", "viventi": "vivent", "viver": "viver", "vivere": "viv", "viveri": "viver", "viverò": "viv", "vivesse": "vivess", "viveva": "viv", "vivevano": "viv", "vivi": "viv", "viviamo": "viv", "viviani": "vivian", "vivida": "vivid", "vivo": "viv", "vivono": "viv", "vivrebbe": "vivrebb", "vivuta": "viv", "vizi": "viz", "vizio": "viz", "vizzini": "vizzin", "vladimir": "vladim", "vlaovic": "vlaovic", "vo": "vo", "vocabolario": "vocabolar", "vocaboli": "vocabol", "vocabolo": "vocabol", "vocali": "vocal", "vocaltec": "vocaltec", "vocazione": "vocazion", "voce": "voc", "voci": "voc", "vociaccia": "vociacc", "vocina": "vocin", "vocione": "vocion", "vodka": "vodk", "voeller": "voeller", "voga": "vog", "vogando": "vog", "voglia": "vogl", "vogliam": "vogliam", "vogliamo": "vogl", "voglian": "voglian", "vogliano": "vogl", "vogliatene": "vogliaten", "voglie": "vogl", "voglio": "vogl", "voglion": "voglion", "vogliono": "vogl", "vogliosa": "voglios", "vogliosi": "voglios", "voglioso": "voglios", "voi": "voi", "vola": "vol", "volan": "volan", "volante": "volant", "volanti": "volant", "volantino": "volantin", "volar": "vol", "volare": "vol", "volatile": "volatil", "volatili": "volatil", "volava": "vol", "volavan": "volavan", "volendo": "vol", "volentieri": "volentier", "voler": "voler", "volerci": "vol", "volere": "vol", "volerebbe": "vol", "volergliene": "vol", "voleri": "voler", "volerle": "vol", "volerlo": "vol", "volermi": "vol", "volersi": "vol", "volervi": "vol", "volesse": "voless", "volessero": "vol", "volessi": "voless", "volessimo": "volessim", "voleste": "volest", "volete": "vol", "voleva": "vol", "volevan": "volevan", "volevano": "vol", "volevate": "vol", "volevi": "vol", "volevo": "vol", "volgare": "volg", "volgari": "volgar", "volgarità": "volgar", "volge": "volg", "volgendosi": "volg", "volgere": "volg", "volgeva": "volg", "volgo": "volg", "voli": "vol", "volker": "volker", "volkswagen": "volkswagen", "volle": "voll", "vollero": "voller", "volley": "volley", "volnmtarietà": "volnmtariet", "volo": "vol", "volontà": "volont", "volontari": "volontar", "volontaria": "volontar", "volontariamente": "volontar", "volontariato": "volontar", "volontario": "volontar", "volpe": "volp", "volsero": "volser", "volta": "volt", "voltafaccia": "voltafacc", "voltan": "voltan", "voltando": "volt", "voltandosi": "volt", "voltano": "volt", "voltar": "volt", "voltare": "volt", "voltaron": "voltaron", "voltarono": "volt", "voltarsi": "volt", "voltasse": "volt", "voltata": "volt", "voltatasi": "voltatas", "voltate": "volt", "voltatisi": "voltatis", "voltato": "volt", "voltatosi": "voltat", "voltava": "volt", "voltavan": "voltavan", "voltavano": "volt", "volte": "volt", "volteggiare": "voltegg", "volti": "volt", "volto": "volt", "voltò": "volt", "voltri": "voltr", "volume": "volum", "volumi": "volum", "voluminosa": "volumin", "voluta": "vol", "volute": "vol", "voluti": "vol", "voluto": "vol", "voluttà": "volutt", "von": "von", "voragine": "voragin", "voria": "vor", "vorrà": "vorr", "vorrai": "vorra", "vorranno": "vorrann", "vorrebbe": "vorrebb", "vorrebbero": "vorrebber", "vorrei": "vorre", "vorremmo": "vorr", "vorreste": "vorrest", "vorresti": "vorrest", "vorrete": "vorr", "vortice": "vortic", "vossignoria": "vossignor", "vostra": "vostr", "vostre": "vostr", "vostri": "vostr", "vostro": "vostr", "vota": "vot", "votando": "vot", "votandolo": "vot", "votanti": "votant", "votare": "vot", "votargli": "vot", "votata": "vot", "votate": "vot", "votato": "vot", "votatolo": "votatol", "votavano": "vot", "votazione": "votazion", "votazioni": "votazion", "vote": "vot", "voterà": "vot", "voteremo": "vot", "voti": "vot", "vòti": "vòt", "votiamo": "vot", "voto": "vot", "vòto": "vòt", "votò": "vot", "votum": "votum", "vox": "vox", "vpic": "vpic", "vqz": "vqz", "vte": "vte", "vu": "vu", "vukosa": "vukos", "vulcanologico": "vulcanolog", "vulneraria": "vulnerar", "vuoi": "vuo", "vuol": "vuol", "vuole": "vuol", "vuota": "vuot", "vuote": "vuot", "vuoto": "vuot", "waigel": "waigel", "wainaina": "wainain", "wall": "wall", "wallenius": "wallenius", "wallenstein": "wallenstein", "walter": "walter", "war": "war", "ward": "ward", "wardak": "wardak", "wardle": "wardl", "warr": "warr", "warrant": "warrant", "warren": "warren", "warriors": "warriors", "washington": "washington", "watan": "watan", "watch": "watc", "water": "water", "wayne": "wayn", "wbo": "wbo", "webb": "webb", "weekend": "weekend", "wehrmacht": "wehrmacht", "welt": "welt", "wenders": "wenders", "werner": "werner", "wertmuller": "wertmuller", "wes": "wes", "west": "west", "westafalisches": "westafalisches", "western": "western", "westinghouse": "westinghous", "whistler": "whistler", "whitley": "whitley", "wicha": "wich", "wilczek": "wilczek", "wilfried": "wilfried", "willer": "willer", "william": "william", "williame": "william", "willis": "willis", "willy": "willy", "wilma": "wilm", "wilson": "wilson", "wim": "wim", "windows": "windows", "wings": "wings", "winter": "winter", "winterberg": "winterberg", "winters": "winters", "wojtyla": "wojtyl", "wolf": "wolf", "wolfgang": "wolfgang", "woods": "woods", "wordsworth": "wordsworth", "workers": "workers", "world": "world", "wspr": "wspr", "wuber": "wuber", "wuxian": "wuxian", "x": "x", "xai": "xai", "xbe": "xbe", "xbu": "xbu", "xca": "xca", "xcf": "xcf", "xct": "xct", "xdp": "xdp", "xenofobi": "xenofob", "xi": "xi", "xii": "xii", "xiii": "xii", "xmi": "xmi", "xmm": "xmm", "xpc": "xpc", "xpi": "xpi", "xpn": "xpn", "xps": "xps", "xrh": "xrh", "xrs": "xrs", "xxi": "xxi", "xxiv": "xxiv", "xxvi": "xxvi", "xxvii": "xxvi", "xza": "xza", "y": "y", "ya": "ya", "yacht": "yacht", "yadana": "yadan", "yakov": "yakov", "yale": "yal", "yasser": "yasser", "yediot": "yediot", "yen": "yen", "yirmaguas": "yirmaguas", "yitzhak": "yitzhak", "yoint": "yoint", "york": "york", "yossi": "yoss", "yousef": "yousef", "ypf": "ypf", "yugoslavia": "yugoslav", "yusen": "yusen", "yvette": "yvett", "z": "z", "za": "za", "zaccaria": "zaccar", "zacchera": "zaccher", "zacchere": "zacc", "zachia": "zach", "zaffate": "zaff", "zag": "zag", "zagabria": "zagabr", "zagaria": "zagar", "zaini": "zain", "zambia": "zamb", "zamora": "zamor", "zampa": "zamp", "zampe": "zamp", "zampino": "zampin", "zanacchi": "zanacc", "zandano": "zand", "zanicchi": "zanicc", "zanin": "zanin", "zanne": "zann", "zanoncelli": "zanoncell", "zanussi": "zanuss", "zanutta": "zanutt", "zanzi": "zanz", "zapatista": "zapat", "zapatisti": "zapat", "zapatistì": "zapat", "zappando": "zapp", "zappe": "zapp", "zaptista": "zaptist", "zar": "zar", "zattarin": "zattarin", "zc": "zc", "zdf": "zdf", "zecca": "zecc", "zecchino": "zecchin", "zedillo": "zedill", "zeev": "zeev", "zeffiro": "zeffir", "zeitung": "zeitung", "zelanti": "zelant", "zelatori": "zelator", "zelo": "zel", "zeman": "zeman", "zendali": "zendal", "zenga": "zeng", "zeppa": "zepp", "zero": "zer", "zerowatt": "zerowatt", "zeta": "zet", "zetabond": "zetabond", "zetastock": "zetastock", "zetaswiss": "zetaswiss", "zhirinovski": "zhirinovsk", "zia": "zia", "zibellino": "zibellin", "zie": "zie", "zig": "zig", "zignago": "zignag", "zii": "zii", "ziino": "ziin", "zimarra": "zimarr", "zimarre": "zimarr", "zimbello": "zimbell", "zimmermann": "zimmermann", "zina": "zin", "zincone": "zincon", "zinelli": "zinell", "zingari": "zingar", "zingerle": "zing", "zio": "zio", "zippora": "zippor", "zironelli": "zironell", "zitta": "zitt", "zitte": "zitt", "zitti": "zitt", "zitto": "zitt", "ziuganov": "ziuganov", "zo": "zo", "zobra": "zobr", "zocalo": "zocal", "zocchi": "zocc", "zoccolo": "zoccol", "zohra": "zohr", "zola": "zol", "zolfanelli": "zolfanell", "zolla": "zoll", "zombi": "zomb", "zona": "zon", "zone": "zon", "zonzo": "zonz", "zoppas": "zoppas", "zoppo": "zopp", "zoran": "zoran", "zoratto": "zoratt", "zorro": "zorr", "zorzi": "zorz", "zotici": "zotic", "zou": "zou", "zucca": "zucc", "zucche": "zucc", "zuccheri": "zuccher", "zuccherino": "zuccherin", "zucchero": "zuccher", "zucchi": "zucc", "zucconi": "zuccon", "zuffi": "zuff", "zurigo": "zurig", "zweite": "zwe", "zwerver": "zwerver", "zwickel": "zwickel" } ================================================ FILE: spec/test_data/snowball_nl.json ================================================ { "a": "a", "á": "a", "à": "à", "aa": "aa", "aachen": "aach", "aachener": "aachener", "aah": "aah", "aalborg": "aalborg", "aalders": "aalder", "aalmoezen": "aalmoez", "aalscholver": "aalscholver", "aalscholvers": "aalscholver", "aalscholverstand": "aalscholverstand", "aalsmeer": "aalsmer", "aalsmeerbaan": "aalsmeerban", "aalsmeerse": "aalsmer", "aalten": "aalt", "aaltenaar": "aaltenar", "aaltjes": "aaltjes", "aam": "aam", "aan": "aan", "áan": "aan", "aanbad": "aanbad", "aanbaklaagjes": "aanbaklaagjes", "aanbelde": "aanbeld", "aanbellen": "aanbell", "aanbesteden": "aanbested", "aanbesteding": "aanbested", "aanbestedingen": "aanbested", "aanbestedingsdossier": "aanbestedingsdossier", "aanbestedingsprocedure": "aanbestedingsprocedur", "aanbestedingsrichtlijn": "aanbestedingsrichtlijn", "aanbevelen": "aanbevel", "aanbeveling": "aanbevel", "aanbevelingen": "aanbevel", "aanbevolen": "aanbevol", "aanbiddelijk": "aanbid", "aanbiddelijke": "aanbid", "aanbidden": "aanbid", "aanbiddend": "aanbid", "aanbidding": "aanbid", "aanbieden": "aanbied", "aanbieder": "aanbieder", "aanbieders": "aanbieder", "aanbiedfrequentie": "aanbiedfrequentie", "aanbiedingsbrief": "aanbiedingsbrief", "aanbiedplaatsen": "aanbiedplaats", "aanbiedt": "aanbiedt", "aanblik": "aanblik", "aanbod": "aanbod", "aanbood": "aanbod", "aanbouw": "aanbouw", "aanbrengen": "aanbreng", "aanbrengt": "aanbrengt", "aandacht": "aandacht", "aandachtig": "aandacht", "aandachtige": "aandacht", "aandachtiger": "aandachtiger", "aandachtspunten": "aandachtspunt", "aandachtstoffen": "aandachtstoff", "aandachtsvelden": "aandachtsveld", "aandeden": "aanded", "aandeed": "aanded", "aandeel": "aandel", "aandeelhouder": "aandeelhouder", "aandeelhouders": "aandeelhouder", "aandeelhoudersvergadering": "aandeelhoudersvergader", "aandelen": "aandel", "aandelenemissie": "aandelenemissie", "aandelenfonds": "aandelenfond", "aandelenkapitaal": "aandelenkapital", "aandelenruil": "aandelenruil", "aandoen": "aandoen", "aandoende": "aandoend", "aandoening": "aandoen", "aandoeningen": "aandoen", "aandoenlijke": "aandoen", "aandoet": "aandoet", "aandraagt": "aandraagt", "aandrang": "aandrang", "aandreigde": "aandreigd", "aandreigende": "aandreig", "aandreunde": "aandreund", "aandrijfas": "aandrijfas", "aandrijft": "aandrijft", "aandrijftechniek": "aandrijftechniek", "aandrijven": "aandrijv", "aandrijvende": "aandrijv", "aandrijving": "aandrijv", "aandrijvingen": "aandrijv", "aandringen": "aandring", "aandringt": "aandringt", "aandrong": "aandrong", "aandruk": "aandruk", "aandrukte": "aandrukt", "aanduidde": "aanduid", "aanduiding": "aanduid", "aaneen": "aanen", "aaneengesloten": "aaneengeslot", "aangaan": "aangan", "aangaande": "aangaand", "aangaat": "aangat", "aangaf": "aangaf", "aangebeden": "aangebed", "aangebeterd": "aangebeterd", "aangeblazen": "aangeblaz", "aangeboden": "aangebod", "aangeboord": "aangeboord", "aangeboren": "aangebor", "aangebracht": "aangebracht", "aangebrachte": "aangebracht", "aangebroken": "aangebrok", "aangedaan": "aangedan", "aangedonder": "aangedonder", "aangedragen": "aangedrag", "aangedreven": "aangedrev", "aangedrongen": "aangedrong", "aangeduid": "aangeduid", "aangeduide": "aangeduid", "aangeeft": "aangeeft", "aangegaan": "aangegan", "aangegaapt": "aangegaapt", "aangegeven": "aangegev", "aangegooid": "aangegooid", "aangegrepen": "aangegrep", "aangehoord": "aangehoord", "aangehouden": "aangehoud", "aangejaagd": "aangejaagd", "aangekaart": "aangekaart", "aangekeken": "aangekek", "aangeklaagd": "aangeklaagd", "aangeknoeid": "aangeknoeid", "aangeknoopt": "aangeknoopt", "aangekocht": "aangekocht", "aangekomen": "aangekom", "aangekondigd": "aangekondigd", "aangekondigde": "aangekondigd", "aangekweekt": "aangekweekt", "aangeland": "aangeland", "aangeleerd": "aangeleerd", "aangeleerde": "aangeleerd", "aangelegd": "aangelegd", "aangelegde": "aangelegd", "aangelegenheden": "aangeleg", "aangelegenheid": "aangeleg", "aangeleverd": "aangeleverd", "aangeleverde": "aangeleverd", "aangelopen": "aangelop", "aangemeld": "aangemeld", "aangemelde": "aangemeld", "aangemerkt": "aangemerkt", "aangemoedigd": "aangemoedigd", "aangenaam": "aangenam", "aangenaamste": "aangenaamst", "aangename": "aangenam", "aangenamer": "aangenamer", "aangenomen": "aangenom", "aangepakt": "aangepakt", "aangepast": "aangepast", "aangepaste": "aangepast", "aangeplant": "aangeplant", "aangepord": "aangepord", "aangeraakt": "aangeraakt", "aangeraden": "aangerad", "aangereikt": "aangereikt", "aangericht": "aangericht", "aangeroerde": "aangeroerd", "aangeschaft": "aangeschaft", "aangeschenen": "aangeschen", "aangescherpt": "aangescherpt", "aangescherpte": "aangescherpt", "aangeslagen": "aangeslag", "aangesloten": "aangeslot", "aangespannen": "aangespann", "aangespoord": "aangespoord", "aangesproken": "aangesprok", "aangestaard": "aangestaard", "aangesteld": "aangesteld", "aangestipt": "aangestipt", "aangestoken": "aangestok", "aangestort": "aangestort", "aangestuurd": "aangestuurd", "aangetast": "aangetast", "aangetaste": "aangetast", "aangetekend": "aangetek", "aangetoond": "aangetoond", "aangetoonde": "aangetoond", "aangetroffen": "aangetroff", "aangetrokken": "aangetrok", "aangevallen": "aangevall", "aangevangen": "aangevang", "aangevaren": "aangevar", "aangeven": "aangev", "aangevochten": "aangevocht", "aangevoeld": "aangevoeld", "aangevoerd": "aangevoerd", "aangevoerde": "aangevoerd", "aangevraagd": "aangevraagd", "aangevraagde": "aangevraagd", "aangevuld": "aangevuld", "aangewend": "aangew", "aangewezen": "aangewez", "aangewonnen": "aangewonn", "aangezegd": "aangezegd", "aangezicht": "aangezicht", "aangezichten": "aangezicht", "aangezien": "aangezien", "aangezuurd": "aangezuurd", "aangezweemd": "aangezweemd", "aangifte": "aangift", "aangifteformulieren": "aangifteformulier", "aangifteplichtige": "aangifteplicht", "aanging": "aanging", "aangloeiden": "aangloeid", "aangrauwde": "aangrauwd", "aangrauwend": "aangrauw", "aangrenzende": "aangrenz", "aangrijpen": "aangrijp", "aangrijpend": "aangrijp", "aangroei": "aangroei", "aangroeiende": "aangroei", "aangroeiremmende": "aangroeiremm", "aangroeiwerende": "aangroeiwer", "aanhaalde": "aanhaald", "aanhaalt": "aanhaalt", "aanhang": "aanhang", "aanhangende": "aanhang", "aanhangers": "aanhanger", "aanhangig": "aanhang", "aanhangwagen": "aanhangwag", "aanhangwagens": "aanhangwagen", "aanhankelijk": "aanhank", "aanhankelijkheden": "aanhank", "aanhankelijkheid": "aanhank", "aanhield": "aanhield", "aanhoorde": "aanhoord", "aanhoort": "aanhoort", "aanhoren": "aanhor", "aanhouden": "aanhoud", "aanhoudend": "aanhoud", "aanhoudende": "aanhoud", "aanhouding": "aanhoud", "aanhoudt": "aanhoudt", "aanhuilde": "aanhuild", "aanhuilen": "aanhuil", "aanhuilende": "aanhuil", "aanhuiverde": "aanhuiverd", "aanjager": "aanjager", "aankaarten": "aankaart", "aankeek": "aankek", "aankijken": "aankijk", "aankijkende": "aankijk", "aankijkt": "aankijkt", "aanklaagden": "aanklaagd", "aanklacht": "aanklacht", "aanklagen": "aanklag", "aanklager": "aanklager", "aankleden": "aankled", "aankleven": "aanklev", "aanknopingspunten": "aanknopingspunt", "aankoeking": "aankoek", "aankomen": "aankom", "aankomende": "aankom", "aankomst": "aankomst", "aankomsttijden": "aankomsttijd", "aankomt": "aankomt", "aankon": "aankon", "aankondigde": "aankondigd", "aankondiging": "aankond", "aankondigt": "aankondigt", "aankoop": "aankop", "aankoopbeleid": "aankoopbeleid", "aankoopbon": "aankoopbon", "aankoopgedrag": "aankoopgedrag", "aankopen": "aankop", "aankunnen": "aankunn", "aankwam": "aankwam", "aankwamen": "aankwam", "aanlanding": "aanland", "aanleg": "aanleg", "aanleggen": "aanlegg", "aanlegkosten": "aanlegkost", "aanlegt": "aanlegt", "aanleiding": "aanleid", "aanleveren": "aanlever", "aanliep": "aanliep", "aanlig": "aanlig", "aanlokkelijke": "aanlok", "aanloop": "aanlop", "aanloopkosten": "aanloopkost", "aanlopen": "aanlop", "aanmaak": "aanmak", "aanmaken": "aanmak", "aanmatigend": "aanmat", "aanmeert": "aanmeert", "aanmelden": "aanmeld", "aanmelding": "aanmeld", "aanmerende": "aanmer", "aanmerkelijk": "aanmerk", "aanmerking": "aanmerk", "aanmerkingen": "aanmerk", "aanmistten": "aanmist", "aanmoedigen": "aanmoed", "aanmoedigend": "aanmoed", "aanmoediging": "aanmoed", "aanmoedigingspremie": "aanmoedigingspremie", "aanmoedigingsprijzen": "aanmoedigingsprijz", "aannachtende": "aannacht", "aannaderde": "aannaderd", "aannaderen": "aannader", "aannam": "aannam", "aanname": "aannam", "aannamen": "aannam", "aannames": "aannames", "aanneemsom": "aanneemsom", "aanneemt": "aanneemt", "aannemelijk": "aannem", "aannemen": "aannem", "aannemende": "aannem", "aannemer": "aannemer", "aannemerij": "aannemerij", "aannemers": "aannemer", "aannemersbedrijf": "aannemersbedrijf", "aannemerscombinaties": "aannemerscombinaties", "aannemersmaatschappij": "aannemersmaatschappij", "aannemingsbedrijf": "aannemingsbedrijf", "aannemingsbedrijven": "aannemingsbedrijv", "aanpak": "aanpak", "aanpakbiljetten": "aanpakbiljet", "aanpakken": "aanpak", "aanpakt": "aanpakt", "aanpalende": "aanpal", "aanpasbaarheid": "aanpas", "aanpassen": "aanpass", "aanpassing": "aanpass", "aanpassingen": "aanpass", "aanpast": "aanpast", "aanplant": "aanplant", "aanprijzen": "aanprijz", "aanraadt": "aanraadt", "aanraken": "aanrak", "aanraking": "aanrak", "aanricht": "aanricht", "aanrichten": "aanricht", "aanrichtte": "aanricht", "aanried": "aanried", "aanruisende": "aanruis", "aanschaf": "aanschaf", "aanschaffen": "aanschaff", "aanschafkosten": "aanschafkost", "aanschafprijs": "aanschafprijs", "aanschafsubsidie": "aanschafsubsidie", "aanschafwaarde": "aanschafwaard", "aanschemeren": "aanschemer", "aanscherpen": "aanscherp", "aanscherping": "aanscherp", "aanschietende": "aanschiet", "aanschoot": "aanschot", "aanschouwelijk": "aanschouw", "aanschrijven": "aanschrijv", "aanschrijving": "aanschrijv", "aanslaan": "aanslan", "aanslaat": "aanslat", "aanslag": "aanslag", "aanslepen": "aanslep", "aansloot": "aanslot", "aansluit": "aansluit", "aansluiten": "aansluit", "aansluitend": "aansluit", "aansluitende": "aansluit", "aansluiting": "aansluit", "aansluitingen": "aansluit", "aansluitkosten": "aansluitkost", "aansluitstukken": "aansluitstuk", "aanspannen": "aanspann", "aanspoelt": "aanspoelt", "aansporen": "aanspor", "aanspraak": "aansprak", "aansprakelijk": "aansprak", "aansprakelijke": "aansprak", "aansprakelijkheden": "aansprak", "aansprakelijkheid": "aansprak", "aansprakelijkheidskorting": "aansprakelijkheidskort", "aansprakelijkheidsverzekering": "aansprakelijkheidsverzeker", "aansprakelijkheidsverzekeringen": "aansprakelijkheidsverzeker", "aansprakelijksverzekering": "aansprakelijksverzeker", "aanspraken": "aansprak", "aanspreekpunt": "aanspreekpunt", "aanspreken": "aansprek", "aansprekende": "aansprek", "aanstaan": "aanstan", "aanstaande": "aanstaand", "aanstaarden": "aanstaard", "aanstaren": "aanstar", "aansteken": "aanstek", "aanstellen": "aanstell", "aanstellerige": "aansteller", "aanstellerigheid": "aansteller", "aanstellerij": "aanstellerij", "aanstelling": "aanstell", "aansterken": "aansterk", "aanstonds": "aanstond", "aanstoot": "aanstot", "aanstormende": "aanstorm", "aanstorten": "aanstort", "aanstreek": "aanstrek", "aantal": "aantal", "aantallen": "aantall", "aantast": "aantast", "aantasten": "aantast", "aantastend": "aantast", "aantastende": "aantast", "aantasting": "aantast", "aantekenen": "aanteken", "aantekening": "aanteken", "aantijgingen": "aantijg", "aantocht": "aantocht", "aantonen": "aanton", "aantoonbaar": "aanton", "aantoonde": "aantoond", "aantoont": "aantoont", "aantreden": "aantred", "aantreffen": "aantreff", "aantreft": "aantreft", "aantrekkelijk": "aantrek", "aantrekkelijke": "aantrek", "aantrekkelijker": "aantrekkelijker", "aantrekkelijkheid": "aantrek", "aantrekken": "aantrek", "aantrekt": "aantrekt", "aantroffen": "aantroff", "aantrok": "aantrok", "aanvaard": "aanvaard", "aanvaardbaar": "aanvaard", "aanvaardbaarheid": "aanvaard", "aanvaardbare": "aanvaard", "aanvaarde": "aanvaard", "aanvaarden": "aanvaard", "aanvaarding": "aanvaard", "aanval": "aanval", "aanvallen": "aanvall", "aanvang": "aanvang", "aanvankelijk": "aanvank", "aanvankelijke": "aanvank", "aanvechten": "aanvecht", "aanverwant": "aanverwant", "aanverwante": "aanverwant", "aanverwanten": "aanverwant", "aanving": "aanving", "aanvliegroute": "aanvliegrout", "aanvliegroutes": "aanvliegroutes", "aanvluchten": "aanvlucht", "aanvoelde": "aanvoeld", "aanvoelen": "aanvoel", "aanvoelende": "aanvoel", "aanvoelt": "aanvoelt", "aanvoer": "aanvoer", "aanvoerders": "aanvoerder", "aanvoeren": "aanvoer", "aanvoering": "aanvoer", "aanvoernormen": "aanvoernorm", "aanvoerpijp": "aanvoerpijp", "aanvoert": "aanvoert", "aanvoertekort": "aanvoertekort", "aanvraag": "aanvrag", "aanvraagformulieren": "aanvraagformulier", "aanvraagperiode": "aanvraagperiod", "aanvraagstrijd": "aanvraagstrijd", "aanvragen": "aanvrag", "aanvrager": "aanvrager", "aanvragers": "aanvrager", "aanvullen": "aanvull", "aanvullend": "aanvull", "aanvullende": "aanvull", "aanvulling": "aanvull", "aanvullingen": "aanvull", "aanwaaiden": "aanwaaid", "aanwaaiend": "aanwaai", "aanwaaiende": "aanwaai", "aanwaaiingen": "aanwaai", "aanwaait": "aanwaait", "aanwas": "aanwas", "aanwenden": "aanwend", "aanwezig": "aanwez", "aanwezige": "aanwez", "aanwezigheid": "aanwez", "aanwezigheidssensoren": "aanwezigheidssensor", "aanwijsbare": "aanwijs", "aanwijzen": "aanwijz", "aanwijzing": "aanwijz", "aanwijzingen": "aanwijz", "aanwijzingsbesluit": "aanwijzingsbesluit", "aanwijzingsregeling": "aanwijzingsregel", "aanwinning": "aanwinn", "aanwipte": "aanwipt", "aanwonenden": "aanwon", "aanzag": "aanzag", "aanzagen": "aanzag", "aanzat": "aanzat", "aanzeggen": "aanzegg", "aanzei": "aanzei", "aanzet": "aanzet", "aanzetstuk": "aanzetstuk", "aanzette": "aanzet", "aanzetten": "aanzet", "aanzie": "aanzie", "aanzien": "aanzien", "aanzienlijk": "aanzien", "aanzienlijke": "aanzien", "aanzoek": "aanzoek", "aanzomerende": "aanzomer", "aanzuigen": "aanzuig", "aanzuiglucht": "aanzuiglucht", "aanzuren": "aanzur", "aanzweemde": "aanzweemd", "aanzwellend": "aanzwell", "aanzwellende": "aanzwell", "aanzwierden": "aanzwierd", "aao": "aao", "aapjes": "aapjes", "aarbeien": "aarbei", "aard": "aard", "aardam": "aardam", "aardappel": "aardappel", "aardappelcampagne": "aardappelcampagn", "aardappelcysteaaltje": "aardappelcysteaaltj", "aardappelen": "aardappel", "aardappelfabrieken": "aardappelfabriek", "aardappelpercelen": "aardappelpercel", "aardappelplant": "aardappelplant", "aardappelprodukten": "aardappelprodukt", "aardappelrug": "aardappelrug", "aardappels": "aardappel", "aardappelteelt": "aardappelteelt", "aardappelverwerkende": "aardappelverwerk", "aardappelverwerkingsbedrijf": "aardappelverwerkingsbedrijf", "aardappelzetmeelbedrijf": "aardappelzetmeelbedrijf", "aardappelziekte": "aardappelziekt", "aardbeien": "aardbei", "aardbeienteelt": "aardbeienteelt", "aardbeving": "aardbev", "aardbevingen": "aardbev", "aardbol": "aardbol", "aarde": "aard", "aarden": "aard", "aardestemmen": "aardestemm", "aardewerk": "aardewerk", "aardewerken": "aardewerk", "aardgas": "aardgas", "aardgasauto": "aardgasauto", "aardgasbesparing": "aardgasbespar", "aardgasboringen": "aardgasbor", "aardgascontract": "aardgascontract", "aardgasequivalenten": "aardgasequivalent", "aardgasexport": "aardgasexport", "aardgasgebruik": "aardgasgebruik", "aardgasgestookte": "aardgasgestookt", "aardgasgulden": "aardgasguld", "aardgaskwaliteit": "aardgaskwaliteit", "aardgasleverancier": "aardgasleverancier", "aardgasproducenten": "aardgasproducent", "aardgasproduktie": "aardgasproduktie", "aardgasquotering": "aardgasquoter", "aardgasreserve": "aardgasreserv", "aardgasreserves": "aardgasreserves", "aardgassysteem": "aardgassystem", "aardgasverbruik": "aardgasverbruik", "aardgasvoertuigen": "aardgasvoertu", "aardgasvoorraad": "aardgasvoorrad", "aardgasvoorraden": "aardgasvoorrad", "aardgaswinning": "aardgaswinn", "aardig": "aardig", "aardige": "aardig", "aardiger": "aardiger", "aardigheden": "aardig", "aardigheid": "aardig", "aardigs": "aardig", "aardigste": "aardigst", "aardingsmaterialen": "aardingsmaterial", "aardkorst": "aardkorst", "aardkundig": "aardkund", "aardlaag": "aardlag", "aardlagen": "aardlag", "aardolie": "aardolie", "aardolieconcessie": "aardolieconcessie", "aardoliemaatschappij": "aardoliemaatschappij", "aardolieprodukten": "aardolieprodukt", "aardolieproduktie": "aardolieproduktie", "aardoppervlak": "aardoppervlak", "aardrijkskunde": "aardrijkskund", "aardrijkskundige": "aardrijkskund", "aardrotatie": "aardrotatie", "aardse": "aard", "aardverschuiving": "aardverschuiv", "aardverschuivingen": "aardverschuiv", "aardwarmte": "aardwarmt", "aardwarmteprojecten": "aardwarmteproject", "aardwarmtewinning": "aardwarmtewinn", "aardwetenschappen": "aardwetenschapp", "aaron": "aaron", "aart": "aart", "aartsen": "aarts", "aarzelde": "aarzeld", "aarzelen": "aarzel", "aarzelend": "aarzel", "aarzeling": "aarzel", "aarzelingen": "aarzel", "aas": "aas", "aaseters": "aaseter", "ab": "ab", "abab": "abab", "abadi": "abadi", "abatement": "abatement", "abb": "abb", "abbing": "abbing", "abc": "abc", "abcoude": "abcoud", "abdul": "abdul", "aberratie": "aberratie", "abf": "abf", "abfallentsorgung": "abfallentsorgung", "abfallentsorgungs": "abfallentsorgung", "abfallwirtschaftsgesellschaft": "abfallwirtschaftsgesellschaft", "abiotische": "abiotisch", "abn": "abn", "abnormaal": "abnormal", "abonnees": "abonnes", "abonneetelevisie": "abonneetelevisie", "abonnement": "abonnement", "abonnementen": "abonnement", "abonnementsgeld": "abonnementsgeld", "abonnementskosten": "abonnementskost", "abonnementsprijs": "abonnementsprijs", "abonnementssystemen": "abonnementssystem", "abrs": "abr", "abs": "abs", "absolute": "absolut", "absoluut": "absolut", "absorbeert": "absorbeert", "absorbentia": "absorbentia", "absorber": "absorber", "absorberen": "absorber", "absorberende": "absorber", "absorbtieplaat": "absorbtieplat", "absorga": "absorga", "absorptie": "absorptie", "absorptiedoek": "absorptiedoek", "absorptiekoelmachine": "absorptiekoelmachin", "absorptiekolom": "absorptiekolom", "absorptiekoudemachine": "absorptiekoudemachin", "absorptiemachine": "absorptiemachin", "absorptiematerialen": "absorptiematerial", "absorptiemiddelen": "absorptiemiddel", "absorption": "absorption", "abstract": "abstract", "absurd": "absurd", "absurditeiten": "absurditeit", "abuis": "abuis", "abuja": "abuja", "abusievelijk": "abusiev", "abwasserentsorger": "abwasserentsorger", "ac": "ac", "academic": "academic", "academici": "academici", "academie": "academie", "academisch": "academisch", "academische": "academisch", "academy": "academy", "acca": "acca", "accapareerden": "accapareerd", "accapareert": "accapareert", "accent": "accent", "accenten": "accent", "accentverschuiving": "accentverschuiv", "acceptabel": "acceptabel", "acceptabele": "acceptabel", "acceptatie": "acceptatie", "acceptatiecriteria": "acceptatiecriteria", "accepteer": "accepter", "accepteert": "accepteert", "accepteren": "accepter", "acceptgiro": "acceptgiro", "accessoires": "accessoires", "accident": "accident", "accijns": "accijn", "accijnsen": "accijns", "accijnstarieven": "accijnstariev", "accijnsverhoging": "accijnsverhog", "accijnsvrijstelling": "accijnsvrijstell", "accijnzen": "accijnz", "acclimatisering": "acclimatiser", "accountancy": "accountancy", "accountant": "accountant", "accountants": "accountant", "accountantsbureau": "accountantsbureau", "accountantsbureaus": "accountantsbureaus", "accountantsinstituut": "accountantsinstitut", "accountantskantoor": "accountantskantor", "accountantskantoren": "accountantskantor", "accountantsorganisatie": "accountantsorganisatie", "accounting": "account", "accountmanager": "accountmanager", "accreditatie": "accreditatie", "accu": "accu", "accucel": "accucel", "accumulatie": "accumulatie", "accumulerende": "accumuler", "accuraatheid": "accurat", "accurate": "accurat", "acea": "acea", "acec": "acec", "acer": "acer", "acetaat": "acetat", "aceton": "aceton", "acetoncyaanhydrine": "acetoncyaanhydrin", "ach": "ach", "acheloös": "achelos", "achievable": "achievabl", "achievements": "achievement", "acht": "acht", "achtdelig": "achtdel", "achteloos": "achtelos", "achten": "acht", "achtend": "achtend", "achtende": "achtend", "achtenswaardig": "achtenswaard", "achtenswaardige": "achtenswaard", "achter": "achter", "achteraf": "achteraf", "achterban": "achterban", "achterbleef": "achterblef", "achterblijft": "achterblijft", "achterblijven": "achterblijv", "achterblijvende": "achterblijv", "achterdocht": "achterdocht", "achterdochtig": "achterdocht", "achtereen": "achteren", "achtereenvolgende": "achtereenvolg", "achtereenvolgens": "achtereenvolgen", "achteren": "achter", "achterfront": "achterfront", "achtergebleven": "achtergeblev", "achtergelaten": "achtergelat", "achtergevel": "achtergevel", "achtergrond": "achtergrond", "achtergrondbelasting": "achtergrondbelast", "achtergrondconcentratie": "achtergrondconcentratie", "achtergronddocument": "achtergronddocument", "achtergronden": "achtergrond", "achtergrondinformatie": "achtergrondinformatie", "achtergrondstraling": "achtergrondstral", "achterhaald": "achterhaald", "achterhaalt": "achterhaalt", "achterhalen": "achterhal", "achterhoek": "achterhoek", "achterhoofd": "achterhoofd", "achterhouden": "achterhoud", "achterkamer": "achterkamer", "achterkamertje": "achterkamertj", "achterkant": "achterkant", "achterkleinkinderen": "achterkleinkinder", "achterlaten": "achterlat", "achterliet": "achterliet", "achterliggende": "achterligg", "achterlijk": "achter", "achterlijke": "achter", "achterlijkjes": "achterlijkjes", "achterloopt": "achterloopt", "achtermiddag": "achtermiddag", "achterna": "achterna", "achterom": "achterom", "achterover": "achterover", "achterstallig": "achterstall", "achterstallige": "achterstall", "achterstand": "achterstand", "achtertuin": "achtertuin", "achteruit": "achteruit", "achteruitgaat": "achteruitgat", "achteruitgang": "achteruitgang", "achteruitgegaan": "achteruitgegan", "achterveld": "achterveld", "achtervolgd": "achtervolgd", "achtervolgde": "achtervolgd", "achtervolgen": "achtervolg", "achterwege": "achterweg", "achterwegeblijven": "achterwegeblijv", "achterwerk": "achterwerk", "achterzijde": "achterzijd", "achthonderd": "achthonderd", "achtig": "achtig", "achtige": "achtig", "achtste": "achtst", "achttal": "achttal", "achtte": "acht", "achtten": "acht", "achttien": "achttien", "achttienhonderd": "achttienhonderd", "achturige": "achtur", "acid": "acid", "acidification": "acidification", "aco": "aco", "acoustic": "acoustic", "acquisitie": "acquisitie", "acquisities": "acquisities", "acroniem": "acroniem", "acroniemengids": "acroniemengid", "acronyms": "acronym", "acrylaathars": "acrylaathar", "acrylamides": "acrylamides", "act": "act", "acta": "acta", "acteurs": "acteur", "actie": "actie", "actiebereidheid": "actiebereid", "actiecomité": "actiecomit", "actiecomitees": "actiecomites", "actiecomités": "actiecomites", "actiedoelwit": "actiedoelwit", "actief": "actief", "actiefafval": "actiefafval", "actiegroep": "actiegroep", "actiegroepen": "actiegroep", "actieleider": "actieleider", "actieplan": "actieplan", "actieprogramma": "actieprogramma", "actieradius": "actieradius", "acties": "acties", "actieschepen": "actieschep", "actieschip": "actieschip", "actieve": "actiev", "actiever": "actiever", "actievere": "actiever", "actievoerders": "actievoerder", "actievoerende": "actievoer", "actino": "actino", "action": "action", "activa": "activa", "activeert": "activeert", "activist": "activist", "activisten": "activist", "activiteit": "activiteit", "activiteiten": "activiteit", "activities": "activities", "actoren": "actor", "acts": "act", "actualiseert": "actualiseert", "actualiseren": "actualiser", "actualisering": "actualiser", "actueel": "actueel", "actuele": "actuel", "acumen": "acum", "acute": "acut", "acuut": "acut", "acwa": "acwa", "ad": "ad", "ada": "ada", "adaptatie": "adaptatie", "adaptieve": "adaptiev", "adaptive": "adaptiv", "adas": "adas", "add": "add", "adder": "adder", "additief": "additief", "additieven": "additiev", "additioneel": "additionel", "additionele": "additionel", "addy": "addy", "addyl": "addyl", "adel": "adel", "adelborst": "adelborst", "adele": "adel", "adèle": "adèl", "adelen": "adel", "adeletje": "adeletj", "adèletje": "adèletj", "adèletjes": "adèletjes", "adélie": "adelie", "adelien": "adelien", "adelientje": "adelientj", "adeline": "adelin", "adellijke": "adel", "adem": "adem", "ademde": "ademd", "ademe": "adem", "ademen": "adem", "ademend": "adem", "ademende": "adem", "ademhaal": "ademhal", "ademhaling": "ademhal", "ademhalingsorganen": "ademhalingsorgan", "ademhalingsproblemen": "ademhalingsproblem", "ademkwestie": "ademkwestie", "ademloos": "ademlos", "ademtocht": "ademtocht", "adequaat": "adequaat", "adequate": "adequat", "adequater": "adequater", "adequatere": "adequater", "aderen": "ader", "aderige": "ader", "adieu": "adieu", "adjudanten": "adjudant", "adjunct": "adjunct", "administratie": "administratie", "administratief": "administratief", "administratiefrechtelijke": "administratiefrecht", "administratiekosten": "administratiekost", "administratieprogramma": "administratieprogramma", "administratiesoftware": "administratiesoftwar", "administratieve": "administratiev", "administration": "administration", "admiraal": "admiral", "adolf": "adolf", "adolfine": "adolfin", "adòlfine": "adòlfin", "adopteren": "adopter", "adorp": "adorp", "adotfine": "adotfin", "adres": "adres", "adresgegevens": "adresgegeven", "adressen": "adress", "adressenboek": "adressenboek", "adri": "adri", "adriaan": "adriaan", "adriaans": "adriaan", "adsorbeer": "adsorber", "adsorbeerders": "adsorbeerder", "adsorbeert": "adsorbeert", "adsorber": "adsorber", "adsorberen": "adsorber", "adsorberend": "adsorber", "adsorptie": "adsorptie", "adsorptiemedia": "adsorptiemedia", "aduco": "aduco", "advanced": "advanced", "advectieve": "advectiev", "adverteert": "adverteert", "advertentie": "advertentie", "advertentiebestedingen": "advertentiebested", "advertentiecampagnes": "advertentiecampagnes", "advertenties": "advertenties", "advertentietekst": "advertentietekst", "advies": "advies", "adviesbureau": "adviesbureau", "adviesbureaus": "adviesbureaus", "adviesburo": "adviesburo", "adviescentra": "adviescentra", "adviescentrum": "adviescentrum", "adviescommissie": "adviescommissie", "adviescommissies": "adviescommissies", "adviesdienst": "adviesdienst", "adviesdiensten": "adviesdienst", "adviesgereedschap": "adviesgereedschap", "adviesgroep": "adviesgroep", "advieslijn": "advieslijn", "adviesloket": "adviesloket", "adviesmarkt": "adviesmarkt", "adviesopdrachten": "adviesopdracht", "adviesorgaan": "adviesorgan", "adviesorganen": "adviesorgan", "adviesprijs": "adviesprijs", "adviesraad": "adviesrad", "adviesstelsel": "adviesstelsel", "adviesstelsels": "adviesstelsel", "adviestaak": "adviestak", "advieswaarden": "advieswaard", "adviezen": "adviez", "adviseerde": "adviseerd", "adviseert": "adviseert", "adviseren": "adviser", "adviserende": "adviser", "advisering": "adviser", "adviseur": "adviseur", "adviseurs": "adviseur", "advisory": "advisory", "advocaat": "advocat", "advocaten": "advocat", "advocatenkantoor": "advocatenkantor", "advocatuur": "advocatur", "ae": "ae", "aea": "aea", "aeci": "aeci", "aeff": "aeff", "aeg": "aeg", "aegean": "aegean", "aerobe": "aerob", "aërobe": "aerob", "aerocarto": "aerocarto", "aërodynamisch": "aerodynamisch", "aërodynamische": "aerodynamisch", "aeromonas": "aeromonas", "aeronox": "aeronox", "aeroob": "aerob", "aerosol": "aerosol", "aërosol": "aerosol", "aërosolen": "aerosol", "aerosolindustrie": "aerosolindustrie", "aerosols": "aerosol", "aerospace": "aerospac", "aes": "aes", "af": "af", "afa": "afa", "afbakening": "afbaken", "afbeelding": "afbeeld", "afbeuling": "afbeul", "afbeulingen": "afbeul", "afbijtmiddelen": "afbijtmiddel", "afboeken": "afboek", "afborstelen": "afborstel", "afbouw": "afbouw", "afbouwbedrijf": "afbouwbedrijf", "afbouwbeleid": "afbouwbeleid", "afbouwen": "afbouw", "afbouwplaten": "afbouwplat", "afbouwsector": "afbouwsector", "afbraak": "afbrak", "afbraakplan": "afbraakplan", "afbraakprodukten": "afbraakprodukt", "afbraken": "afbrak", "afbranden": "afbrand", "afbreekbaar": "afbrek", "afbreekbaarheid": "afbrek", "afbreekbare": "afbrek", "afbreekt": "afbreekt", "afbreken": "afbrek", "afbrekende": "afbrek", "afbreuk": "afbreuk", "afbrokkelen": "afbrokkel", "afbrokkeling": "afbrokkel", "afdanken": "afdank", "afdankertjes": "afdankertjes", "afdankt": "afdankt", "afdeed": "afded", "afdekfolie": "afdekfolie", "afdekkap": "afdekkap", "afdekken": "afdek", "afdekking": "afdek", "afdekkingsfoliën": "afdekkingsfolien", "afdeklaag": "afdeklag", "afdekmethoden": "afdekmethod", "afdekplicht": "afdekplicht", "afdekrooster": "afdekrooster", "afdekzeil": "afdekzeil", "afdeling": "afdel", "afdelingen": "afdel", "afdichten": "afdicht", "afdichtfolie": "afdichtfolie", "afdichting": "afdicht", "afdichtingen": "afdicht", "afdichtingslaag": "afdichtingslag", "afdoen": "afdoen", "afdoende": "afdoend", "afdoener": "afdoener", "afdoening": "afdoen", "afdoeningstarieven": "afdoeningstariev", "afdracht": "afdracht", "afdragen": "afdrag", "afdruipen": "afdruip", "afdruk": "afdruk", "afdwingbaar": "afdwing", "afdwingen": "afdwing", "affaire": "affair", "affaires": "affaires", "affairs": "affair", "affe": "aff", "affectatie": "affectatie", "afgaan": "afgan", "afgaf": "afgaf", "afgas": "afgas", "afgassen": "afgass", "afgassenketel": "afgassenketel", "afgassenketels": "afgassenketel", "afgasssen": "afgasss", "afgasstroom": "afgasstrom", "afgebeten": "afgebet", "afgebeuld": "afgebeuld", "afgebonden": "afgebond", "afgebouwd": "afgebouwd", "afgebrande": "afgebrand", "afgebroken": "afgebrok", "afgedaan": "afgedan", "afgedankt": "afgedankt", "afgedankte": "afgedankt", "afgedekt": "afgedekt", "afgedicht": "afgedicht", "afgedrukt": "afgedrukt", "afgedwaald": "afgedwaald", "afgedwongen": "afgedwong", "afgefakkeld": "afgefakkeld", "afgegaan": "afgegan", "afgegeten": "afgeget", "afgegeven": "afgegev", "afgegooid": "afgegooid", "afgegraven": "afgegrav", "afgehaakt": "afgehaakt", "afgehaald": "afgehaald", "afgehuurd": "afgehuurd", "afgekalfd": "afgekalfd", "afgeketst": "afgeketst", "afgekeurd": "afgekeurd", "afgeknotte": "afgeknot", "afgekoeld": "afgekoeld", "afgekomen": "afgekom", "afgekondigd": "afgekondigd", "afgekondigde": "afgekondigd", "afgelast": "afgelast", "afgelasten": "afgelast", "afgelegd": "afgelegd", "afgelegen": "afgeleg", "afgeleid": "afgeleid", "afgeleide": "afgeleid", "afgeleiden": "afgeleid", "afgeleverd": "afgeleverd", "afgeleverde": "afgeleverd", "afgelopen": "afgelop", "afgelost": "afgelost", "afgemeten": "afgemet", "afgenomen": "afgenom", "afgeraden": "afgerad", "afgerekend": "afgerek", "afgericht": "afgericht", "afgerond": "afgerond", "afgeronde": "afgerond", "afgeroomd": "afgeroomd", "afgeschaft": "afgeschaft", "afgescheiden": "afgescheid", "afgeschilderd": "afgeschilderd", "afgeschoten": "afgeschot", "afgeschoven": "afgeschov", "afgeschreven": "afgeschrev", "afgeschrikt": "afgeschrikt", "afgeschud": "afgeschud", "afgesleten": "afgeslet", "afgesloten": "afgeslot", "afgesproken": "afgesprok", "afgestaan": "afgestan", "afgesteld": "afgesteld", "afgestemd": "afgestemd", "afgestoken": "afgestok", "afgestorven": "afgestorv", "afgestoten": "afgestot", "afgestraald": "afgestraald", "afgestudeerd": "afgestudeerd", "afgestudeerde": "afgestudeerd", "afgetimmerd": "afgetimmerd", "afgetobd": "afgetobd", "afgetreden": "afgetred", "afgetrokken": "afgetrok", "afgevaardigde": "afgevaardigd", "afgevaardigden": "afgevaardigd", "afgevallen": "afgevall", "afgevangen": "afgevang", "afgeveegd": "afgeveegd", "afgeven": "afgev", "afgevoerd": "afgevoerd", "afgevoerde": "afgevoerd", "afgewassen": "afgewass", "afgeweekte": "afgeweekt", "afgeweken": "afgewek", "afgewend": "afgew", "afgewenteld": "afgewenteld", "afgewerkt": "afgewerkt", "afgewerkte": "afgewerkt", "afgeweten": "afgewet", "afgewezen": "afgewez", "afgewikkeld": "afgewikkeld", "afgewisseld": "afgewisseld", "afgewogen": "afgewog", "afgezakt": "afgezakt", "afgezegd": "afgezegd", "afgezet": "afgezet", "afgezette": "afgezet", "afgezien": "afgezien", "afgezogen": "afgezog", "afgezonken": "afgezonk", "afgezwakt": "afgezwakt", "afgifte": "afgift", "afging": "afging", "afgoddelijk": "afgod", "afgooien": "afgooi", "afgraven": "afgrav", "afgraving": "afgrav", "afgrijselijk": "afgrijs", "afgrijslijk": "afgrijs", "afgrijzen": "afgrijz", "afgrond": "afgrond", "afgronddiep": "afgronddiep", "afgrondmuil": "afgrondmuil", "afgrondwijd": "afgrondwijd", "afgunst": "afgunst", "afhalen": "afhal", "afhandelen": "afhandel", "afhandeling": "afhandel", "afhandelingsgebouwen": "afhandelingsgebouw", "afhangen": "afhang", "afhangt": "afhangt", "afhankelijk": "afhank", "afhankelijke": "afhank", "afhankelijkheid": "afhank", "afhield": "afhield", "afhing": "afhing", "afkalfden": "afkalfd", "afkalft": "afkalft", "afkalven": "afkalv", "afkalving": "afkalv", "afkalvingen": "afkalv", "afkeer": "afker", "afkeurde": "afkeurd", "afkeuren": "afkeur", "afkeurende": "afkeur", "afkeuring": "afkeur", "afklom": "afklom", "afkochten": "afkocht", "afkoeling": "afkoel", "afkoelingsperiode": "afkoelingsperiod", "afkomen": "afkom", "afkomende": "afkom", "afkomst": "afkomst", "afkomstig": "afkomst", "afkomstige": "afkomst", "afkondigen": "afkond", "afkoopregeling": "afkoopregel", "afkoopsommen": "afkoopsomm", "afkopen": "afkop", "afkoppelen": "afkoppel", "afkoppeling": "afkoppel", "afkoppelingsmaatregelen": "afkoppelingsmaatregel", "afkorting": "afkort", "afkortingen": "afkort", "afkwam": "afkwam", "afkwamen": "afkwam", "aflatoxine": "aflatoxin", "afleggen": "aflegg", "afleggend": "aflegg", "afleiden": "afleid", "afleidt": "afleidt", "afleren": "afler", "afleverbewijs": "afleverbewijs", "afleverbonnen": "afleverbonn", "afleverde": "afleverd", "aflevering": "aflever", "afleveringsbewijzen": "afleveringsbewijz", "aflezen": "aflez", "afloop": "aflop", "aflopen": "aflop", "aflopende": "aflop", "aflossen": "afloss", "afmartelde": "afmarteld", "afmeren": "afmer", "afmetingen": "afmet", "afnam": "afnam", "afname": "afnam", "afnamegarantie": "afnamegarantie", "afnamen": "afnam", "afneemt": "afneemt", "afnemen": "afnem", "afnemende": "afnem", "afnemer": "afnemer", "afnemers": "afnemer", "afplaggen": "afplagg", "afpompniveau": "afpompniveau", "afrastering": "afraster", "afrekening": "afreken", "afrekeningen": "afreken", "afrekenschandaal": "afrekenschandal", "afremmende": "afremm", "afremt": "afremt", "afrennende": "afrenn", "africa": "africa", "afrika": "afrika", "afrikaans": "afrikan", "afrikaanse": "afrikan", "afrikahaven": "afrikahav", "afrit": "afrit", "afritten": "afrit", "afroep": "afroep", "afroming": "afrom", "afromingspercentage": "afromingspercentag", "afromingsplan": "afromingsplan", "afronden": "afrond", "afrondingsfout": "afrondingsfout", "afschaduwing": "afschaduw", "afschaffen": "afschaff", "afschaffing": "afschaff", "afschatting": "afschat", "afscheid": "afscheid", "afscheiden": "afscheid", "afscheider": "afscheider", "afscheiders": "afscheider", "afscheiding": "afscheid", "afscheidingen": "afscheid", "afscheidingsbewegingen": "afscheidingsbeweg", "afscheids": "afscheid", "afschermen": "afscherm", "afschermende": "afscherm", "afschieten": "afschiet", "afschot": "afschot", "afschotplaten": "afschotplat", "afschotsysteem": "afschotsystem", "afschrijven": "afschrijv", "afschrijving": "afschrijv", "afschrijvingen": "afschrijv", "afschrijvingstermijn": "afschrijvingstermijn", "afschrijvingsvoordelen": "afschrijvingsvoordel", "afschrikken": "afschrik", "afschrikking": "afschrik", "afschrikkingsmacht": "afschrikkingsmacht", "afschudden": "afschud", "afschuddende": "afschud", "afschuift": "afschuift", "afschuiven": "afschuiv", "afschuwelijk": "afschuw", "afschuwelijke": "afschuw", "afschuwelijkheid": "afschuw", "afslaat": "afslat", "afslag": "afslag", "afslanking": "afslank", "afslijten": "afslijt", "afsloof": "afslof", "afsloot": "afslot", "afsluitbare": "afsluit", "afsluitdam": "afsluitdam", "afsluitdijk": "afsluitdijk", "afsluiten": "afsluit", "afsluitende": "afsluit", "afsluiter": "afsluiter", "afsluiters": "afsluiter", "afsluiting": "afsluit", "afsluitingen": "afsluit", "afsluitmogelijkheid": "afsluitmog", "afsneed": "afsned", "afsnijden": "afsnijd", "afsnijdingen": "afsnijd", "afspeelt": "afspeelt", "afspiegelt": "afspiegelt", "afspraak": "afsprak", "afspraakjes": "afspraakjes", "afspraken": "afsprak", "afspreken": "afsprek", "afsprong": "afsprong", "afstaan": "afstan", "afstaande": "afstaand", "afstand": "afstand", "afstanden": "afstand", "afstandgevoeligheid": "afstandgevoel", "afstandstrekkers": "afstandstrekker", "afstandsverwarming": "afstandsverwarm", "afstandvluchten": "afstandvlucht", "afstemmen": "afstemm", "afstemming": "afstemm", "afstempelen": "afstempel", "afsterven": "afsterv", "afsterving": "afsterv", "afstierven": "afstierv", "afstoffen": "afstoff", "afstopprocedure": "afstopprocedur", "afstoten": "afstot", "afstoting": "afstot", "afstromend": "afstrom", "afstudeeronderzoek": "afstudeeronderzoek", "afstudeerscriptie": "afstudeerscriptie", "afstudeerstage": "afstudeerstag", "afstudeert": "afstudeert", "afstudeerverslag": "afstudeerverslag", "afstuderen": "afstuder", "afstuiting": "afstuit", "aftakelen": "aftakel", "aftap": "aftap", "aftapinstallaties": "aftapinstallaties", "aftappen": "aftapp", "aftast": "aftast", "aftellen": "aftell", "aftellende": "aftell", "afternoon": "afternon", "aftimmerlat": "aftimmerlat", "aftrek": "aftrek", "aftrekbaar": "aftrek", "aftrekbare": "aftrek", "aftrekken": "aftrek", "aftrekposten": "aftrekpost", "afval": "afval", "afvalaanbod": "afvalaanbod", "afvaladviesmarkt": "afvaladviesmarkt", "afvalbakken": "afvalbak", "afvalbedrijf": "afvalbedrijf", "afvalbedrijven": "afvalbedrijv", "afvalbehandeling": "afvalbehandel", "afvalbeheer": "afvalbeher", "afvalbeheersing": "afvalbeheers", "afvalbeheerssystemen": "afvalbeheerssystem", "afvalbeleid": "afvalbeleid", "afvalberg": "afvalberg", "afvalberging": "afvalberg", "afvalbeurs": "afvalbeur", "afvalbewerking": "afvalbewerk", "afvalbranche": "afvalbranch", "afvalbranden": "afvalbrand", "afvalcijfers": "afvalcijfer", "afvalcontainer": "afvalcontainer", "afvalcontainers": "afvalcontainer", "afvalcontract": "afvalcontract", "afvalcontrole": "afvalcontrol", "afvaldepot": "afvaldepot", "afvaldumpingen": "afvaldump", "afvaleisen": "afvaleis", "afvalenergie": "afvalenergie", "afvalexporteur": "afvalexporteur", "afvalfase": "afvalfas", "afvalfracties": "afvalfracties", "afvalfusie": "afvalfusie", "afvalgas": "afvalgas", "afvalgassen": "afvalgass", "afvalgebied": "afvalgebied", "afvalgigant": "afvalgigant", "afvalgips": "afvalgip", "afvalgipslozingen": "afvalgipsloz", "afvalglas": "afvalglas", "afvalgranulator": "afvalgranulator", "afvalheffing": "afvalheff", "afvalhergebruik": "afvalhergebruik", "afvalhopen": "afvalhop", "afvalhout": "afvalhout", "afvalhoutverwerkings": "afvalhoutverwerk", "afvalinzamelaars": "afvalinzamelar", "afvalinzameling": "afvalinzamel", "afvalinzamelings": "afvalinzamel", "afvalinzamelingssysteem": "afvalinzamelingssystem", "afvalinzamelmiddelen": "afvalinzamelmiddel", "afvalinzamelparken": "afvalinzamelpark", "afvalinzamelsysteem": "afvalinzamelsystem", "afvalinzamelsystemen": "afvalinzamelsystem", "afvalketen": "afvalket", "afvallozingen": "afvalloz", "afvalmanagement": "afvalmanagement", "afvalmanagementsysteem": "afvalmanagementsystem", "afvalmarkt": "afvalmarkt", "afvalmaterialen": "afvalmaterial", "afvalolie": "afvalolie", "afvalonderneming": "afvalondernem", "afvalonderzoek": "afvalonderzoek", "afvalontdoeners": "afvalontdoener", "afvalopslag": "afvalopslag", "afvaloven": "afvalov", "afvalovens": "afvaloven", "afvaloverlegorgaan": "afvaloverlegorgan", "afvaloverlegorganen": "afvaloverlegorgan", "afvalpersen": "afvalpers", "afvalplan": "afvalplan", "afvalplastic": "afvalplastic", "afvalpreventie": "afvalpreventie", "afvalpreventiemogelijkheden": "afvalpreventiemog", "afvalpreventieproject": "afvalpreventieproject", "afvalpreventieteam": "afvalpreventieteam", "afvalprobleem": "afvalproblem", "afvalproblemen": "afvalproblem", "afvalprodukt": "afvalprodukt", "afvalprodukten": "afvalprodukt", "afvalproduktie": "afvalproduktie", "afvalrecuperatie": "afvalrecuperatie", "afvalrecycling": "afvalrecycl", "afvalreductie": "afvalreductie", "afvalreductieprogramma": "afvalreductieprogramma", "afvalregelgeving": "afvalregelgev", "afvalregime": "afvalregim", "afvalregio": "afvalregio", "afvalregistratie": "afvalregistratie", "afvalscheider": "afvalscheider", "afvalscheiding": "afvalscheid", "afvalscheidingseiland": "afvalscheidingseiland", "afvalscheidingsfabriek": "afvalscheidingsfabriek", "afvalscheidingsinstallatie": "afvalscheidingsinstallatie", "afvalscheidingsniveaus": "afvalscheidingsniveaus", "afvalsector": "afvalsector", "afvalslib": "afvalslib", "afvalslurry": "afvalslurry", "afvalsoort": "afvalsoort", "afvalstadium": "afvalstadium", "afvalstof": "afvalstof", "afvalstoffen": "afvalstoff", "afvalstoffenbeheer": "afvalstoffenbeher", "afvalstoffenbeleid": "afvalstoffenbeleid", "afvalstoffenboekhouding": "afvalstoffenboekhoud", "afvalstoffendiensten": "afvalstoffendienst", "afvalstoffenfonds": "afvalstoffenfond", "afvalstoffenheffing": "afvalstoffenheff", "afvalstoffenmaatschappij": "afvalstoffenmaatschappij", "afvalstoffenplan": "afvalstoffenplan", "afvalstoffenregister": "afvalstoffenregister", "afvalstoffenregistratie": "afvalstoffenregistratie", "afvalstoffenregistratiesysteem": "afvalstoffenregistratiesystem", "afvalstoffenvergunning": "afvalstoffenvergunn", "afvalstoffenverordeningen": "afvalstoffenverorden", "afvalstoffenvervoerders": "afvalstoffenvervoerder", "afvalstoffenverwerking": "afvalstoffenverwerk", "afvalstoffenverwijdering": "afvalstoffenverwijder", "afvalstoffenwet": "afvalstoffenwet", "afvalstoffenwetgeving": "afvalstoffenwetgev", "afvalstort": "afvalstort", "afvalstortplaats": "afvalstortplat", "afvalstortplaatsen": "afvalstortplaats", "afvalstrategie": "afvalstrategie", "afvalstromen": "afvalstrom", "afvalstroom": "afvalstrom", "afvalsturing": "afvalstur", "afvalsymposium": "afvalsymposium", "afvalsysteem": "afvalsystem", "afvalsystemen": "afvalsystem", "afvaltak": "afvaltak", "afvaltarief": "afvaltarief", "afvaltarieven": "afvaltariev", "afvaltechniek": "afvaltechniek", "afvaltechnologie": "afvaltechnologie", "afvaltoerisme": "afvaltoerism", "afvaltransport": "afvaltransport", "afvaltransporten": "afvaltransport", "afvaltransporterende": "afvaltransporter", "afvaltransporteurs": "afvaltransporteur", "afvaltrucks": "afvaltruck", "afvalverbrander": "afvalverbrander", "afvalverbranders": "afvalverbrander", "afvalverbranding": "afvalverbrand", "afvalverbrandingscentrale": "afvalverbrandingscentral", "afvalverbrandingsinstallatie": "afvalverbrandingsinstallatie", "afvalverbrandingsinstallaties": "afvalverbrandingsinstallaties", "afvalverbrandingsoven": "afvalverbrandingsov", "afvalverbrandingsovens": "afvalverbrandingsoven", "afvalverdichtingsinstallaties": "afvalverdichtingsinstallaties", "afvalvergassing": "afvalvergass", "afvalverkleiners": "afvalverkleiner", "afvalvermindering": "afvalverminder", "afvalverpakking": "afvalverpak", "afvalvervoerpapieren": "afvalvervoerpapier", "afvalverwerkend": "afvalverwerk", "afvalverwerkende": "afvalverwerk", "afvalverwerker": "afvalverwerker", "afvalverwerkers": "afvalverwerker", "afvalverwerking": "afvalverwerk", "afvalverwerkings": "afvalverwerk", "afvalverwerkingsbedrijf": "afvalverwerkingsbedrijf", "afvalverwerkingsbedrijven": "afvalverwerkingsbedrijv", "afvalverwerkingsbranche": "afvalverwerkingsbranch", "afvalverwerkingscentrum": "afvalverwerkingscentrum", "afvalverwerkingsdiensten": "afvalverwerkingsdienst", "afvalverwerkingsfabriek": "afvalverwerkingsfabriek", "afvalverwerkingsinrichtingen": "afvalverwerkingsinricht", "afvalverwerkingsinstallatie": "afvalverwerkingsinstallatie", "afvalverwerkingsinstallaties": "afvalverwerkingsinstallaties", "afvalverwerkingsmethoden": "afvalverwerkingsmethod", "afvalverwerkingsplan": "afvalverwerkingsplan", "afvalverwerkingstechnieken": "afvalverwerkingstechniek", "afvalverwerkingstechnologieën": "afvalverwerkingstechnologieen", "afvalverwerkingsvoorstel": "afvalverwerkingsvoorstel", "afvalverwijderaars": "afvalverwijderar", "afvalverwijdering": "afvalverwijder", "afvalverwijderingsbedrijf": "afvalverwijderingsbedrijf", "afvalverwijderingsdeskundigen": "afvalverwijderingsdeskund", "afvalverwijderingsgebied": "afvalverwijderingsgebied", "afvalverzamelaar": "afvalverzamelar", "afvalvolume": "afvalvolum", "afvalvoorzieningen": "afvalvoorzien", "afvalwarmte": "afvalwarmt", "afvalwarmteboiler": "afvalwarmteboiler", "afvalwater": "afvalwater", "afvalwaterbehandelaars": "afvalwaterbehandelar", "afvalwaterbehandeling": "afvalwaterbehandel", "afvalwaterbehandelingsinstallatie": "afvalwaterbehandelingsinstallatie", "afvalwaterheffing": "afvalwaterheff", "afvalwaterproblematiek": "afvalwaterproblematiek", "afvalwaterprojecten": "afvalwaterproject", "afvalwaterreiniger": "afvalwaterreiniger", "afvalwatersector": "afvalwatersector", "afvalwaterstromen": "afvalwaterstrom", "afvalwaterstroom": "afvalwaterstrom", "afvalwatertechnieken": "afvalwatertechniek", "afvalwaterzuivering": "afvalwaterzuiver", "afvalwaterzuiveringsinstallatie": "afvalwaterzuiveringsinstallatie", "afvalwaterzuiveringsinstallaties": "afvalwaterzuiveringsinstallaties", "afvalweging": "afvalweg", "afvalwereld": "afvalwereld", "afvalwetten": "afvalwet", "afvalwinkel": "afvalwinkel", "afvalzak": "afvalzak", "afvalzakken": "afvalzak", "afvalzorg": "afvalzorg", "afvalzuiveringsslib": "afvalzuiveringsslib", "afvangen": "afvang", "afvlakking": "afvlak", "afvliegen": "afvlieg", "afvloeien": "afvloei", "afvoer": "afvoer", "afvoerbonnen": "afvoerbonn", "afvoercapaciteit": "afvoercapaciteit", "afvoerdebieten": "afvoerdebiet", "afvoeren": "afvoer", "afvoergassen": "afvoergass", "afvoergoot": "afvoergot", "afvoerkosten": "afvoerkost", "afvoerloze": "afvoerloz", "afvoerlucht": "afvoerlucht", "afvoerpijp": "afvoerpijp", "afvoerregelaar": "afvoerregelar", "afvoerroutes": "afvoerroutes", "afvoersysteem": "afvoersystem", "afvragen": "afvrag", "afvragende": "afvrag", "afvraging": "afvrag", "afvroeg": "afvroeg", "afwacht": "afwacht", "afwachten": "afwacht", "afwachtend": "afwacht", "afwachtende": "afwacht", "afwachting": "afwacht", "afwachtingen": "afwacht", "afwachtten": "afwacht", "afwasbare": "afwas", "afwasmachine": "afwasmachin", "afwasmiddel": "afwasmiddel", "afwasmiddelen": "afwasmiddel", "afwassen": "afwass", "afwateringsstelsel": "afwateringsstelsel", "afwateringssysteem": "afwateringssystem", "afweek": "afwek", "afweersysteem": "afweersystem", "afwees": "afwes", "afweging": "afweg", "afwegingen": "afweg", "afwendende": "afwend", "afwerend": "afwer", "afwerende": "afwer", "afwering": "afwer", "afwerken": "afwerk", "afwerking": "afwerk", "afwerpt": "afwerpt", "afweten": "afwet", "afwezig": "afwez", "afwezige": "afwez", "afwezigheid": "afwez", "afwijken": "afwijk", "afwijkende": "afwijk", "afwijkingen": "afwijk", "afwijkt": "afwijkt", "afwijst": "afwijst", "afwijzen": "afwijz", "afwijzend": "afwijz", "afwijzing": "afwijz", "afwikkeling": "afwikkel", "afwisselend": "afwissel", "afwisseling": "afwissel", "afzeggen": "afzegg", "afzender": "afzender", "afzet": "afzet", "afzetbaar": "afzet", "afzetbaarheid": "afzet", "afzetcijfers": "afzetcijfer", "afzetcontainers": "afzetcontainer", "afzetcontracten": "afzetcontract", "afzetgebied": "afzetgebied", "afzetinstallaties": "afzetinstallaties", "afzetkanalen": "afzetkanal", "afzetmarkt": "afzetmarkt", "afzetmogelijkheden": "afzetmog", "afzetruimte": "afzetruimt", "afzetsysteem": "afzetsystem", "afzetsystemen": "afzetsystem", "afzetten": "afzet", "afzettingen": "afzet", "afzien": "afzien", "afzienbare": "afzien", "afziet": "afziet", "afzijdig": "afzijd", "afzinken": "afzink", "afzonderlijk": "afzonder", "afzonderlijke": "afzonder", "afzuiging": "afzuig", "afzuigsysteem": "afzuigsystem", "afzwakken": "afzwak", "afzweefde": "afzweefd", "ag": "ag", "agalev": "agalev", "ageert": "ageert", "agency": "agency", "agenda": "agenda", "agengy": "agengy", "agent": "agent", "agenten": "agent", "agents": "agent", "agentschap": "agentschap", "agglomeraat": "agglomerat", "agglomeratie": "agglomeratie", "aggregates": "aggregates", "aggressieve": "aggressiev", "aghazadeh": "aghazadeh", "aghel": "aghel", "agip": "agip", "agpo": "agpo", "agpu": "agpu", "agrariër": "agrarier", "agrariërs": "agrarier", "agrarisch": "agrarisch", "agrarische": "agrarisch", "agreement": "agreement", "agressie": "agressie", "agressief": "agressief", "agressieve": "agressiev", "agri": "agri", "agribusiness": "agribusines", "agricultural": "agricultural", "agriculture": "agricultur", "agrisearch": "agrisearch", "agritechniek": "agritechniek", "agro": "agro", "agrobiologisch": "agrobiologisch", "agrobiologische": "agrobiologisch", "agrobusiness": "agrobusines", "agrochemicaliën": "agrochemicalien", "agrocomplex": "agrocomplex", "agrotechniek": "agrotechniek", "agt": "agt", "agterberg": "agterberg", "ah": "ah", "ahold": "ahold", "ahrensburg": "ahrensburg", "ahs": "ahs", "ahvaz": "ahvaz", "ai": "ai", "aib": "aib", "aicom": "aicom", "aid": "aid", "aids": "aid", "aimabel": "aimabel", "air": "air", "airbag": "airbag", "airborn": "airborn", "airconditioning": "aircondition", "airconditioningssystemen": "airconditioningssystem", "aircraft": "aircraft", "aires": "aires", "airforce": "airforc", "airguns": "airgun", "airmiles": "airmiles", "airport": "airport", "airs": "air", "airstrip": "airstrip", "airways": "airway", "aisance": "aisanc", "aj": "aj", "ajakkes": "ajakkes", "ajo": "ajo", "ak": "ak", "akademie": "akademie", "akaha": "akaha", "akar": "akar", "akatsuki": "akatsuki", "akelig": "akel", "akelige": "akel", "aken": "aken", "akense": "aken", "akker": "akker", "akkerbouw": "akkerbouw", "akkerbouwareaal": "akkerbouwareaal", "akkerbouwbedrijf": "akkerbouwbedrijf", "akkerbouwbedrijven": "akkerbouwbedrijv", "akkerbouwdeskundige": "akkerbouwdeskund", "akkerbouwer": "akkerbouwer", "akkerbouwers": "akkerbouwer", "akkerbouwgebied": "akkerbouwgebied", "akkerbouwmanifestaties": "akkerbouwmanifestaties", "akkergronden": "akkergrond", "akkerpercelen": "akkerpercel", "akkerranden": "akkerrand", "akkers": "akker", "akkoord": "akkoord", "akkoorden": "akkoord", "akoestisch": "akoestisch", "akoestische": "akoestisch", "akros": "akros", "akte": "akt", "aktekoffertje": "aktekoffertj", "aktie": "aktie", "akzo": "akzo", "al": "al", "alara": "alara", "alarm": "alarm", "alarmerend": "alarmer", "alarmerende": "alarmer", "alarmnummer": "alarmnummer", "alaska": "alaska", "albast": "albast", "albasten": "albast", "albers": "alber", "albert": "albert", "alberts": "albert", "albicilla": "albicilla", "alblasserdam": "alblasserdam", "alblasserwaard": "alblasserwaard", "alcohol": "alcohol", "alcoholbussen": "alcoholbuss", "alcoholethersulfaten": "alcoholethersulfat", "alcoholethoxylaten": "alcoholethoxylat", "alcoholethoxysulfaten": "alcoholethoxysulfat", "alcoholethyloxylaten": "alcoholethyloxylat", "alcoholgevoelige": "alcoholgevoel", "aldaar": "aldar", "aldehyde": "aldehyd", "aldehyden": "aldehyd", "aldel": "aldel", "alderney": "alderney", "alders": "alder", "aldo": "aldo", "aldus": "aldus", "aleksej": "aleksej", "alentejo": "alentejo", "alert": "alert", "alerte": "alert", "alex": "alex", "alexander": "alexander", "alexanderkazerne": "alexanderkazern", "alexanderstraat": "alexanderstrat", "alexanderveld": "alexanderveld", "alfa": "alfa", "alfabetisch": "alfabetisch", "alfabetische": "alfabetisch", "alfalfa": "alfalfa", "alfred": "alfred", "alg": "alg", "algaetec": "algaetec", "algarije": "algarij", "algarijnse": "algarijn", "algeheel": "algehel", "algehele": "algehel", "algemeen": "algemen", "algemeene": "algemen", "algemene": "algemen", "algemenere": "algemener", "algen": "alg", "algendoek": "algendoek", "algengroei": "algengroei", "algenvorming": "algenvorm", "algerije": "algerij", "algerijnse": "algerijn", "algrauwe": "algrauw", "alhoewel": "alhoewel", "alicia": "alicia", "alifatische": "alifatisch", "alima": "alima", "alinea": "alinea", "alkali": "alkali", "alkalimetalen": "alkalimetal", "alkaline": "alkalin", "alkalische": "alkalisch", "alkalisilicaatreactie": "alkalisilicaatreactie", "alken": "alk", "alkmaar": "alkmar", "alkrachtig": "alkracht", "alkrachtige": "alkracht", "alkreflex": "alkreflex", "alkylbenzeen": "alkylbenzen", "alkyleringsproces": "alkyleringsproces", "alkylfenol": "alkylfenol", "alkylfenols": "alkylfenol", "alkylphenol": "alkylphenol", "all": "all", "allaert": "allaert", "allah": "allah", "allang": "allang", "alle": "all", "àlle": "àlle", "allebei": "allebei", "alledaagse": "alledag", "allee": "allee", "alleen": "allen", "alléen": "allen", "allèen": "allèen", "alleén": "allen", "alléén": "allen", "alleenop": "alleenop", "alleenstaande": "alleenstaand", "alleenstaanden": "alleenstaand", "alleenzijn": "alleenzijn", "allegaar": "allegar", "allegaartafel": "allegaartafel", "allegheny": "allegheny", "allelijn": "allelijn", "allemaal": "allemal", "allen": "all", "aller": "aller", "alleraardigst": "alleraardigst", "allerdiepste": "allerdiepst", "allereenvoudigste": "allereenvoudigst", "allereerst": "allereerst", "allereerste": "allereerst", "allerellendigst": "allerellendigst", "allerenigste": "allerenigst", "allergaartafel": "allergaartafel", "allergeheimste": "allergeheimst", "allergezelligst": "allergezelligst", "allergezelligste": "allergezelligst", "allergie": "allergie", "allergrootste": "allergrootst", "allerhande": "allerhand", "allerhatelijkst": "allerhatelijkst", "allerhoogste": "allerhoogst", "allerjongste": "allerjongst", "allerkuiste": "allerkuist", "allerlaatste": "allerlaatst", "allerlei": "allerlei", "allerliefst": "allerliefst", "allerliefste": "allerliefst", "allermenselijkste": "allermenselijkst", "allerminst": "allerminst", "allerminste": "allerminst", "allernieuwste": "allernieuwst", "alleronaangenaamst": "alleronaangenaamst", "alleronaardigst": "alleronaardigst", "alleroneerbiedigst": "alleroneerbiedigst", "allerongelukkigste": "allerongelukkigst", "allerstomst": "allerstomst", "allerveiligst": "allerveiligst", "allerverschrikkelijkste": "allerverschrikkelijkst", "allervreemdste": "allervreemdst", "allervriendelijkste": "allervriendelijkst", "alles": "alles", "allesbehalve": "allesbehalv", "allesomvattend": "allesomvat", "alleswat": "alleswat", "alliance": "allianc", "alliantie": "alliantie", "allianties": "allianties", "allied": "allied", "allier": "allier", "alligator": "alligator", "allocatiesysteem": "allocatiesystem", "allowences": "allowences", "allsky": "allsky", "alm": "alm", "almaar": "almar", "almachtig": "almacht", "almachtige": "almacht", "almelo": "almelo", "almere": "almer", "aloema": "aloema", "alom": "alom", "alomtegenwoordig": "alomtegenwoord", "alomvattend": "alomvat", "alomvattender": "alomvattender", "alpen": "alp", "alpes": "alpes", "alpha": "alpha", "alphaplan": "alphaplan", "alphen": "alph", "alphens": "alphen", "alpro": "alpro", "alqaetec": "alqaetec", "alqueva": "alqueva", "alruime": "alruim", "als": "als", "alsa": "alsa", "alsdorfer": "alsdorfer", "alsemde": "alsemd", "alsma": "alsma", "alsmede": "alsmed", "alsnog": "alsnog", "alsof": "alsof", "alsook": "alsok", "alss": "als", "alsthom": "alsthom", "altair": "altair", "altenbroek": "altenbroek", "altener": "altener", "altenerprogramma": "altenerprogramma", "altergeheimste": "altergeheimst", "alternatief": "alternatief", "alternatieve": "alternatiev", "alternatieveling": "alternatievel", "alternatieven": "alternatiev", "alteveer": "altever", "altevogt": "altevogt", "altijd": "altijd", "altijdm": "altijdm", "altlastsanierungsverbandens": "altlastsanierungsverbanden", "altruïsme": "altruism", "altruïst": "altruist", "alu": "alu", "alumina": "alumina", "aluminium": "aluminium", "aluminiumfabriek": "aluminiumfabriek", "aluminiumfolie": "aluminiumfolie", "aluminiumindustrie": "aluminiumindustrie", "aluminiumoxide": "aluminiumoxid", "aluminiumoxyde": "aluminiumoxyd", "aluminiumproduktie": "aluminiumproduktie", "aluminiumprofielen": "aluminiumprofiel", "aluminiumrecycling": "aluminiumrecycl", "aluminiumsmelter": "aluminiumsmelter", "aluminiumtechnologie": "aluminiumtechnologie", "alup": "alup", "alutherm": "alutherm", "alvast": "alvast", "alver": "alver", "alvergetelheid": "alvergetel", "alvorens": "alvoren", "alweer": "alwer", "alwereld": "alwereld", "alwijde": "alwijd", "alzheimermedicijn": "alzheimermedicijn", "alzo": "alzo", "am": "am", "amandelen": "amandel", "amant": "amant", "amants": "amant", "amateuristisch": "amateuristisch", "amazone": "amazon", "amazonegebied": "amazonegebied", "amb": "amb", "ambachtelijk": "ambacht", "ambachtelijke": "ambacht", "ambachtsheerlijkheid": "ambachtsher", "ambachtskamer": "ambachtskamer", "ambassade": "ambassad", "ambassades": "ambassades", "ambassadeur": "ambassadeur", "ambassadeurs": "ambassadeur", "ambassadrice": "ambassadric", "amberg": "amberg", "ambieerden": "ambieerd", "ambiente": "ambient", "ambit": "ambit", "ambitie": "ambitie", "ambitieniveau": "ambitieniveau", "ambitieniveaus": "ambitieniveaus", "ambities": "ambities", "ambitieus": "ambitieus", "ambitieuze": "ambitieuz", "ambt": "ambt", "ambtelijk": "ambtelijk", "ambtelijke": "ambtelijk", "ambtenaar": "ambtenar", "ambtenaarswereld": "ambtenaarswereld", "ambtenaren": "ambtenar", "ambtgenoot": "ambtgenot", "ambtshalve": "ambtshalv", "ambulant": "ambulant", "ambulante": "ambulant", "amc": "amc", "amec": "amec", "ameland": "ameland", "amendement": "amendement", "amendementen": "amendement", "amendments": "amendment", "amer": "amer", "amercentrale": "amercentral", "america": "america", "american": "american", "americum": "americum", "amerika": "amerika", "amerikaan": "amerikan", "amerikaans": "amerikan", "amerikaanse": "amerikan", "amerikanen": "amerikan", "amersfoort": "amersfoort", "amersfoortse": "amersfoort", "ames": "ames", "amev": "amev", "amfibieën": "amfibieen", "amfitheater": "amfitheater", "aminal": "aminal", "amines": "amines", "aminestroom": "aminestrom", "amino": "amino", "aminohoudend": "aminohoud", "aminoverbindingen": "aminoverbind", "amk": "amk", "ammers": "ammer", "ammonia": "ammonia", "ammoniak": "ammoniak", "ammoniakbeleid": "ammoniakbeleid", "ammoniakberekening": "ammoniakbereken", "ammoniakdepositierechten": "ammoniakdepositierecht", "ammoniakemissie": "ammoniakemissie", "ammoniakemissierechten": "ammoniakemissierecht", "ammoniakfabriek": "ammoniakfabriek", "ammoniakgolf": "ammoniakgolf", "ammoniaknorm": "ammoniaknorm", "ammoniakplan": "ammoniakplan", "ammoniakprobleem": "ammoniakproblem", "ammoniakproblematiek": "ammoniakproblematiek", "ammoniakproduktie": "ammoniakproduktie", "ammoniakrecht": "ammoniakrecht", "ammoniakrechten": "ammoniakrecht", "ammoniakreductie": "ammoniakreductie", "ammoniakreductieplan": "ammoniakreductieplan", "ammoniakreductieplannen": "ammoniakreductieplann", "ammoniakschade": "ammoniakschad", "ammoniakstandpunten": "ammoniakstandpunt", "ammoniakstroom": "ammoniakstrom", "ammoniaktransport": "ammoniaktransport", "ammoniakuitstoot": "ammoniakuitstot", "ammoniakverlies": "ammoniakverlies", "ammoniakvervluchtiging": "ammoniakvervlucht", "ammoniakwolk": "ammoniakwolk", "ammonium": "ammonium", "ammoniumionen": "ammoniumion", "ammoniumnitraat": "ammoniumnitrat", "ammoniumsulfaat": "ammoniumsulfat", "ammoniumsulfaatmeststof": "ammoniumsulfaatmeststof", "amnesty": "amnesty", "amoco": "amoco", "amorf": "amorf", "amorfe": "amorf", "amory": "amory", "amoveertechnieken": "amoveertechniek", "amovering": "amover", "ampa": "ampa", "ampas": "ampas", "amper": "amper", "ampère": "ampèr", "ampolex": "ampolex", "amro": "amro", "amstel": "amstel", "amsteldijk": "amsteldijk", "amstelland": "amstelland", "amstelpark": "amstelpark", "amstelveen": "amstelven", "amsterdam": "amsterdam", "amsterdammers": "amsterdammer", "amsterdams": "amsterdam", "amsterdamse": "amsterdam", "amtec": "amtec", "amusant": "amusant", "amusanter": "amusanter", "amuseer": "amuser", "amuseerde": "amuseerd", "amuseerden": "amuseerd", "amuseert": "amuseert", "amusement": "amusement", "amuseren": "amuser", "amvb": "amvb", "amylopectine": "amylopectin", "amylosegehalte": "amylosegehalt", "an": "an", "anaërobe": "anaerob", "anaerobic": "anaerobic", "anaeroob": "anaerob", "anaëroob": "anaerob", "analisten": "analist", "analoge": "analog", "analyse": "analys", "analyseert": "analyseert", "analysefase": "analysefas", "analysemethode": "analysemethod", "analysemethoden": "analysemethod", "analysemodulen": "analysemodul", "analyserapporten": "analyserapport", "analyseren": "analyser", "analyserend": "analyser", "analyseresultaten": "analyseresultat", "analyses": "analyses", "analysetechniek": "analysetechniek", "analysetechnieken": "analysetechniek", "analysetest": "analysetest", "analysis": "analysis", "analytic": "analytic", "analytica": "analytica", "analytische": "analytisch", "analyzeren": "analyzer", "anarchist": "anarchist", "anc": "anc", "and": "and", "andalusië": "andalusie", "andelst": "andelst", "andeno": "andeno", "ander": "ander", "andere": "ander", "anderen": "ander", "anderhalf": "anderhalf", "anderhalve": "anderhalv", "andermaal": "andermal", "andermans": "anderman", "anders": "ander", "andersen": "anders", "andersom": "andersom", "andersoortige": "andersoort", "anderszins": "anderszin", "anderzijds": "anderzijd", "andes": "andes", "andre": "andr", "andriesse": "andries", "andriessen": "andriess", "andy": "andy", "anemie": "anemie", "anemieën": "anemieen", "angeles": "angeles", "anglia": "anglia", "angst": "angst", "angsten": "angst", "angstig": "angstig", "angstige": "angstig", "angstigen": "angstig", "angstiger": "angstiger", "angstwekkend": "angstwek", "angstzweet": "angstzwet", "anhydriet": "anhydriet", "aniline": "anilin", "animeerde": "animeerd", "animo": "animo", "anita": "anita", "anjer": "anjer", "ankara": "ankara", "anker": "anker", "ankers": "anker", "ankeveen": "ankeven", "anlagen": "anlag", "anlagenbau": "anlagenbau", "anlagentechnik": "anlagentechnik", "anloo": "anloo", "ann": "ann", "anna": "anna", "anne": "ann", "annemarie": "annemarie", "annen": "ann", "annette": "annet", "annexen": "annex", "annie": "annie", "annular": "annular", "annulering": "annuler", "anode": "anod", "anodiseerbedrijven": "anodiseerbedrijv", "anoniem": "anoniem", "anonieme": "anoniem", "anorganisch": "anorganisch", "anorganische": "anorganisch", "anox": "anox", "anp": "anp", "ansell": "ansell", "ansi": "ansi", "ansjovis": "ansjovis", "antagonisten": "antagonist", "antagonistische": "antagonistisch", "antarctic": "antarctic", "antarctica": "antarctica", "antarctische": "antarctisch", "antartica": "antartica", "antenne": "antenn", "antennelaag": "antennelag", "anti": "anti", "antibes": "antibes", "antibiotica": "antibiotica", "antibioticum": "antibioticum", "antichambre": "antichambr", "anticipatie": "anticipatie", "anticipeert": "anticipeert", "anticiperend": "anticiper", "anticonceptiemiddelen": "anticonceptiemiddel", "antidiluviaanse": "antidiluviaan", "antiek": "antiek", "antieke": "antiek", "antillen": "antill", "antilliaanse": "antilliaan", "antimacassars": "antimacassar", "antipathie": "antipathie", "antipathiek": "antipathiek", "antipathieke": "antipathiek", "antipollution": "antipollution", "antiquiteit": "antiquiteit", "antiquiteiten": "antiquiteit", "antivries": "antivries", "anton": "anton", "antonia": "antonia", "antraciet": "antraciet", "antractische": "antractisch", "antropogene": "antropog", "antwerpen": "antwerp", "antwerpse": "antwerp", "antwoord": "antwoord", "antwoordcoupon": "antwoordcoupon", "antwoordde": "antwoord", "antwoordden": "antwoord", "antwoorden": "antwoord", "antwoordende": "antwoord", "antwoordkaart": "antwoordkaart", "antwoordlijn": "antwoordlijn", "antwoordnummer": "antwoordnummer", "antwoordt": "antwoordt", "anwb": "anwb", "anwoordden": "anwoord", "ao": "ao", "aoo": "aoo", "aoot": "aoot", "aox": "aox", "ap": "ap", "apa": "apa", "apart": "apart", "aparte": "apart", "apartheidsplanning": "apartheidsplann", "apartheidsregime": "apartheidsregim", "apathie": "apathie", "apathisch": "apathisch", "apel": "apel", "apeldoorn": "apeldoorn", "apelkanaal": "apelkanal", "apens": "apen", "apk": "apk", "apl": "apl", "apld": "apld", "aplomb": "aplomb", "apme": "apm", "apostel": "apostel", "apostolisch": "apostolisch", "apotheek": "apothek", "apotheken": "apothek", "apotheose": "apotheos", "apparaat": "apparat", "apparaten": "apparat", "apparatenbouw": "apparatenbouw", "apparatenbouwers": "apparatenbouwer", "apparatenleveranciers": "apparatenleverancier", "apparatenwesen": "apparatenwes", "apparatuur": "apparatur", "apparetour": "apparetour", "appartement": "appartement", "appartementen": "appartement", "appeal": "appeal", "appel": "appel", "appellant": "appellant", "appellanten": "appellant", "appelpudding": "appelpud", "appels": "appel", "appelvink": "appelvink", "appingedam": "appingedam", "applaus": "applaus", "applicable": "applicabl", "applicatie": "applicatie", "applicatiecentrum": "applicatiecentrum", "applicatieportfolio": "applicatieportfolio", "applicaties": "applicaties", "application": "application", "appraisal": "appraisal", "apprecieer": "apprecieer", "apprecieert": "apprecieert", "appreciëren": "apprecier", "approach": "approach", "april": "april", "apv": "apv", "aqf": "aqf", "aqua": "aqua", "aquaculture": "aquacultur", "aquaducten": "aquaduct", "aquafin": "aquafin", "aquarel": "aquarel", "aquarellen": "aquarell", "aquarium": "aquarium", "aquatech": "aquatech", "aquatherm": "aquatherm", "aquatisch": "aquatisch", "aquatische": "aquatisch", "aquisitie": "aquisitie", "ar": "ar", "ara": "ara", "arabesken": "arabesk", "arabië": "arabie", "arabische": "arabisch", "aral": "aral", "aralmeer": "aralmer", "arbeid": "arbeid", "arbeiden": "arbeid", "arbeider": "arbeider", "arbeiders": "arbeider", "arbeidersjaren": "arbeidersjar", "arbeidsbelasting": "arbeidsbelast", "arbeidsbureaus": "arbeidsbureaus", "arbeidsinkomen": "arbeidsinkom", "arbeidsinspectie": "arbeidsinspectie", "arbeidsinspectiediensten": "arbeidsinspectiedienst", "arbeidsintensieve": "arbeidsintensiev", "arbeidsinzet": "arbeidsinzet", "arbeidskosten": "arbeidskost", "arbeidskostenbesparing": "arbeidskostenbespar", "arbeidsmarkt": "arbeidsmarkt", "arbeidsmatige": "arbeidsmat", "arbeidsomstandigheden": "arbeidsomstand", "arbeidsomstandighedencongres": "arbeidsomstandighedencongres", "arbeidsomstandighedenwet": "arbeidsomstandighedenwet", "arbeidsonstadighedenregelgeving": "arbeidsonstadighedenregelgev", "arbeidsplaatsen": "arbeidsplaats", "arbeidsregistraties": "arbeidsregistraties", "arbeidstijd": "arbeidstijd", "arbeidsveiligheid": "arbeidsveil", "arbeidsvermogen": "arbeidsvermog", "arbeitsgemeinschaft": "arbeitsgemeinschaft", "arbiters": "arbiter", "arbitrage": "arbitrag", "arbo": "arbo", "arbobeleid": "arbobeleid", "arbocongres": "arbocongres", "arbouw": "arbouw", "arbowet": "arbowet", "arbozaken": "arbozak", "arbozorg": "arbozorg", "arbozorgsystemen": "arbozorgsystem", "arc": "arc", "arcg": "arcg", "archer": "archer", "archimedes": "archimedes", "archipel": "archipel", "architect": "architect", "architecten": "architect", "architectenbureau": "architectenbureau", "architectonisch": "architectonisch", "architectonische": "architectonisch", "architects": "architect", "architectuur": "architectur", "arco": "arco", "arctisch": "arctisch", "arctische": "arctisch", "ardea": "ardea", "ardenne": "ardenn", "are": "are", "area": "area", "areaal": "areaal", "areas": "areas", "arebeien": "arebei", "arebèien": "arebèi", "arend": "arend", "argeloos": "argelos", "argentijnse": "argentijn", "argentinië": "argentinie", "argon": "argon", "argonne": "argonn", "argument": "argument", "argumentatie": "argumentatie", "argumenten": "argument", "argus": "argus", "argusogen": "argusog", "ärhus": "arhus", "aridjis": "aridjis", "arie": "arie", "aris": "aris", "aristocraat": "aristocrat", "aristocraatjes": "aristocraatjes", "aristocrate": "aristocrat", "aristocratie": "aristocratie", "aristocratische": "aristocratisch", "ark": "ark", "arke": "ark", "arkel": "arkel", "arla": "arla", "arles": "arles", "arm": "arm", "armageddon": "armageddon", "armaturen": "armatur", "armatuur": "armatur", "armband": "armband", "arme": "arm", "armelijk": "armelijk", "armelijke": "armelijk", "armen": "arm", "armenbezoek": "armenbezoek", "armenië": "armenie", "armer": "armer", "armleuningen": "armleun", "armoede": "armoed", "armoedige": "armoed", "armoedje": "armoedj", "armpjes": "armpjes", "armste": "armst", "armsten": "armst", "armzalig": "armzal", "armzalige": "armzal", "arn": "arn", "arnhem": "arnhem", "arnhemse": "arnhem", "arnold": "arnold", "aromaten": "aromat", "aromatengehalte": "aromatengehalt", "aromatische": "aromatisch", "arons": "aron", "aroom": "arom", "around": "around", "arp": "arp", "arrangeerde": "arrangeerd", "arrangeren": "arranger", "arrest": "arrest", "arrestanten": "arrestant", "arrestatie": "arrestatie", "arrestaties": "arrestaties", "arresteerde": "arresteerd", "arresteert": "arresteert", "arresters": "arrester", "arrive": "arriv", "arrogant": "arrogant", "arrogantie": "arrogantie", "arrondissement": "arrondissement", "arrondissementsbank": "arrondissementsbank", "arseen": "arsen", "arseenzuur": "arseenzur", "arsenicum": "arsenicum", "art": "art", "artefacten": "artefact", "artelli": "artelli", "arthur": "arthur", "artiest": "artiest", "artiesten": "artiest", "artikel": "artikel", "artikelen": "artikel", "artikels": "artikel", "artikeltje": "artikeltj", "artikeltjes": "artikeltjes", "artist": "artist", "artisten": "artist", "artisticiteit": "artisticiteit", "artistiek": "artistiek", "artistieke": "artistiek", "artistieks": "artistiek", "artnouveau": "artnouveau", "arts": "art", "aruba": "aruba", "arubaanse": "aruban", "as": "as", "asafdichting": "asafdicht", "asbest": "asbest", "asbestbeleid": "asbestbeleid", "asbestbesluit": "asbestbesluit", "asbestcement": "asbestcement", "asbestdeeltjes": "asbestdeeltjes", "asbestdekplaten": "asbestdekplat", "asbestdeskundigen": "asbestdeskund", "asbestfonds": "asbestfond", "asbestfraude": "asbestfraud", "asbesthoudend": "asbesthoud", "asbesthoudende": "asbesthoud", "asbestonderdelen": "asbestonderdel", "asbestos": "asbestos", "asbestose": "asbestos", "asbestovertredingen": "asbestovertred", "asbestplaten": "asbestplat", "asbestsaneringswerkzaamheden": "asbestsaneringswerkzam", "asbestslachtoffers": "asbestslachtoffer", "asbestverbod": "asbestverbod", "asbestvergiftiging": "asbestvergift", "asbestverwijderend": "asbestverwijder", "asbestverwijdering": "asbestverwijder", "asbestverwijderingsbedrijf": "asbestverwijderingsbedrijf", "asbestverwijderingsbesluit": "asbestverwijderingsbesluit", "asbestvezels": "asbestvezel", "asce": "asc", "asco": "asco", "asd": "asd", "asea": "asea", "aseptische": "aseptisch", "asfalt": "asfalt", "asfaltbeton": "asfaltbeton", "asfaltcentrales": "asfaltcentrales", "asfaltering": "asfalter", "asfaltgranulaat": "asfaltgranulat", "asfaltindustrie": "asfaltindustrie", "asfaltmeer": "asfaltmer", "asfaltmenginstallaties": "asfaltmenginstallaties", "asfaltproduktie": "asfaltproduktie", "asfaltverwerking": "asfaltverwerk", "ashoogte": "ashoogt", "asmabel": "asmabel", "asn": "asn", "asociaal": "asociaal", "aspect": "aspect", "aspecten": "aspect", "aspergeteelt": "aspergeteelt", "aspert": "aspert", "aspirant": "aspirant", "aspiraties": "aspiraties", "aspirotor": "aspirotor", "asruggen": "asrugg", "assainissement": "assainissement", "assay": "assay", "assays": "assay", "asselbergs": "asselberg", "assem": "assem", "assemblage": "assemblag", "assen": "ass", "assepoester": "assepoester", "assepoestertje": "assepoestertj", "assessment": "assessment", "assessments": "assessment", "assige": "assig", "assimileerde": "assimileerd", "assimileren": "assimiler", "assistance": "assistanc", "assistent": "assistent", "assistenten": "assistent", "assistentie": "assistentie", "assisteren": "assister", "associates": "associates", "associatie": "associatie", "association": "association", "assoean": "assoean", "assortiment": "assortiment", "assortimenten": "assortiment", "assortimentsverbetering": "assortimentsverbeter", "assurantie": "assurantie", "assurantiemakelaars": "assurantiemakelar", "assurantiën": "assurantien", "assuranties": "assuranties", "ast": "ast", "astma": "astma", "astraco": "astraco", "asvaalt": "asvaalt", "aswemeling": "aswemel", "asyl": "asyl", "asynchroongenerator": "asynchroongenerator", "at": "at", "atag": "atag", "atags": "atag", "atavistisch": "atavistisch", "ate": "ate", "aten": "aten", "athene": "ath", "atlantic": "atlantic", "atlantische": "atlantisch", "atlas": "atlas", "atlassen": "atlass", "atmosfeer": "atmosfer", "atmosferen": "atmosfer", "atmosferische": "atmosferisch", "atmosphere": "atmospher", "atmospheric": "atmospheric", "atoc": "atoc", "atol": "atol", "atomen": "atom", "atomenkleinte": "atomenkleint", "atomic": "atomic", "atoom": "atom", "atoomagentschap": "atoomagentschap", "atoombom": "atoombom", "atoomenergie": "atoomenergie", "atoomgeleerde": "atoomgeleerd", "atoomklein": "atoomklein", "atoomkwesties": "atoomkwesties", "atoomlaboratoria": "atoomlaboratoria", "atoomparaplu": "atoomparaplu", "atoompje": "atoompj", "atoomproef": "atoomproef", "atoomproeven": "atoomproev", "atoomvrij": "atoomvrij", "atoomvrije": "atoomvrij", "atoomwapens": "atoomwapen", "atout": "atout", "atrazin": "atrazin", "atrazine": "atrazin", "atriumgebouw": "atriumgebouw", "atsign": "atsign", "att": "att", "attachés": "attaches", "attentie": "attentie", "attest": "attest", "attesteren": "attester", "attractie": "attractie", "attractief": "attractief", "au": "au", "auchel": "auchel", "auckland": "auckland", "audio": "audio", "audiovisuele": "audiovisuel", "audit": "audit", "auditing": "audit", "auditor": "auditor", "auditorium": "auditorium", "auditprogramma": "auditprogramma", "audits": "audit", "auditschema": "auditschema", "auditsysteem": "auditsystem", "auditteam": "auditteam", "auditverplichting": "auditverplicht", "audrey": "audrey", "augias": "augias", "august": "august", "augusteijn": "augusteijn", "augustus": "augustus", "augustusdag": "augustusdag", "augustusmorgen": "augustusmorg", "aujeszki": "aujeszki", "aujeszkivirus": "aujeszkivirus", "auken": "auk", "auro": "auro", "auspiciën": "auspicien", "ausstellungsdienst": "ausstellungsdienst", "austin": "austin", "australië": "australie", "australisch": "australisch", "australische": "australisch", "austria": "austria", "austrian": "austrian", "autarkie": "autarkie", "auteur": "auteur", "auteurs": "auteur", "authorised": "authorised", "authority": "authority", "auto": "auto", "autoarme": "autoarm", "autobahn": "autobahn", "autobahnen": "autobahn", "autobanden": "autoband", "autobezit": "autobezit", "autobezitters": "autobezitter", "autobezoek": "autobezoek", "autobranche": "autobranch", "autobrandstof": "autobrandstof", "autobrandstoffen": "autobrandstoff", "autobumpers": "autobumper", "autochtone": "autochton", "autoclaven": "autoclav", "autoconcerns": "autoconcern", "autoconstructie": "autoconstructie", "autodealer": "autodealer", "autodealers": "autodealer", "autodelen": "autodel", "autodemontagebedrijf": "autodemontagebedrijf", "autodemontagebedrijven": "autodemontagebedrijv", "autofabrieken": "autofabriek", "autofabrikant": "autofabrikant", "autofabrikanten": "autofabrikant", "autofreier": "autofreier", "autogebruik": "autogebruik", "autoindustrie": "autoindustrie", "autokilometers": "autokilometer", "autokosten": "autokost", "autokraan": "autokran", "autoluw": "autoluw", "autoluwe": "autoluw", "automaat": "automat", "automaterialen": "automaterial", "automation": "automation", "automatisch": "automatisch", "automatische": "automatisch", "automatiseren": "automatiser", "automatisering": "automatiser", "automobiel": "automobiel", "automobielfabrikanten": "automobielfabrikant", "automobielindustrie": "automobielindustrie", "automobielsector": "automobielsector", "automobilist": "automobilist", "automobilisten": "automobilist", "automobilistenbond": "automobilistenbond", "automobiliteit": "automobiliteit", "automobiliteitsprobleem": "automobiliteitsproblem", "automoblist": "automoblist", "automodel": "automodel", "automotive": "automotiv", "autonome": "autonom", "autonomie": "autonomie", "autonoom": "autonom", "autopark": "autopark", "autoproducent": "autoproducent", "autoproducenten": "autoproducent", "autorecycling": "autorecycl", "autorecyclingfabriek": "autorecyclingfabriek", "autorecyclingproject": "autorecyclingproject", "autorecyclingsbetriebe": "autorecyclingsbetrieb", "autoreinigingsmiddelen": "autoreinigingsmiddel", "autorijden": "autorijd", "autorijders": "autorijder", "autoritair": "autoritair", "autoriteit": "autoriteit", "autoriteiten": "autoriteit", "autosalon": "autosalon", "autoschade": "autoschad", "autoschadebedrijf": "autoschadebedrijf", "autosloopbedrijf": "autosloopbedrijf", "autosloper": "autosloper", "autosloperij": "autosloperij", "autosloperijen": "autosloperij", "autosnelweg": "autosnelweg", "autosnelwegen": "autosnelweg", "autotechniek": "autotechniek", "autotron": "autotron", "autotrophicus": "autotrophicus", "autoverhuurder": "autoverhuurder", "autoverkeer": "autoverker", "autovrij": "autovrij", "autovrije": "autovrij", "autowasinstallaties": "autowasinstallaties", "autoweg": "autoweg", "autowrakken": "autowrak", "autowrakkeninrichting": "autowrakkeninricht", "av": "av", "ava": "ava", "available": "availabl", "avb": "avb", "avbb": "avbb", "avebe": "aveb", "average": "averag", "averijhaven": "averijhav", "avezaath": "avezaath", "avi": "avi", "aviation": "aviation", "aviconsult": "aviconsult", "avira": "avira", "aviv": "aviv", "avl": "avl", "avm": "avm", "avond": "avond", "avonden": "avond", "avondgesprek": "avondgesprek", "avondje": "avondj", "avondjes": "avondjes", "avondleegte": "avondleegt", "avonds": "avond", "avondstreep": "avondstrep", "avondtoilet": "avondtoilet", "avondzwijgen": "avondzwijg", "avoparcine": "avoparcin", "avoueren": "avouer", "avr": "avr", "avv": "avv", "award": "award", "awards": "award", "awb": "awb", "awzi": "awzi", "axiaalrollen": "axiaalroll", "az": "az", "azalea": "azalea", "azen": "azen", "azerbajdzjan": "azerbajdzjan", "azerbeidzjan": "azerbeidzjan", "azerische": "azerisch", "aziatische": "aziatisch", "azië": "azie", "azigny": "azigny", "azijn": "azijn", "azizan": "azizan", "azn": "azn", "azo": "azo", "azuur": "azur", "b": "b", "baadje": "baadj", "baadjes": "baadjes", "baaien": "baai", "baan": "ban", "baanbrekend": "baanbrek", "baanbrekende": "baanbrek", "baanconcept": "baanconcept", "baangebruik": "baangebruik", "baanlichaam": "baanlicham", "baantjes": "baantjes", "baar": "bar", "baard": "baard", "baardje": "baardj", "baarle": "baarl", "baarn": "baarn", "baars": "bar", "baart": "baart", "baas": "bas", "baasje": "baasj", "baat": "bat", "babbel": "babbel", "babcock": "babcock", "babels": "babel", "baboe": "baboe", "baby": "baby", "babyspullen": "babyspull", "bac": "bac", "bacillen": "bacill", "bacillus": "bacillus", "back": "back", "backers": "backer", "backus": "backus", "baco": "baco", "bacterie": "bacterie", "bacteriële": "bacteriel", "bacterieleven": "bacterielev", "bacteriën": "bacterien", "bacteriepopulatie": "bacteriepopulatie", "bacteriesoorten": "bacteriesoort", "bacterievorming": "bacterievorm", "bacterieziekte": "bacterieziekt", "bacteriologisch": "bacteriologisch", "bacteriologische": "bacteriologisch", "bad": "bad", "baden": "bad", "badende": "badend", "badgasten": "badgast", "badkamer": "badkamer", "badkamertje": "badkamertj", "badplaats": "badplat", "badseizoen": "badseizoen", "badzout": "badzout", "baede": "baed", "baert": "baert", "baf": "baf", "bag": "bag", "baga": "baga", "bagage": "bagag", "bagagedrager": "bagagedrager", "bagasse": "bagas", "bagger": "bagger", "baggeraars": "baggerar", "baggeractiviteiten": "baggeractiviteit", "baggerbedrijf": "baggerbedrijf", "baggerbeleid": "baggerbeleid", "baggerbeleidsplan": "baggerbeleidsplan", "baggerconcern": "baggerconcern", "baggercongres": "baggercongres", "baggercyclus": "baggercyclus", "baggerdepot": "baggerdepot", "baggerdepots": "baggerdepot", "baggerdienst": "baggerdienst", "baggeren": "bagger", "baggerindustrie": "baggerindustrie", "baggerkosten": "baggerkost", "baggermachine": "baggermachin", "baggermarkt": "baggermarkt", "baggerproblematiek": "baggerproblematiek", "baggerproef": "baggerproef", "baggerschepen": "baggerschep", "baggersector": "baggersector", "baggerslib": "baggerslib", "baggerspecie": "baggerspecie", "baggerspeciedepot": "baggerspeciedepot", "baggerspeciereiniging": "baggerspecierein", "baggerspecieverwerking": "baggerspecieverwerk", "baggerstort": "baggerstort", "baggerstortplaats": "baggerstortplat", "baggersystemen": "baggersystem", "baggerverwerking": "baggerverwerk", "baggerverwerkingsfabriek": "baggerverwerkingsfabriek", "baggervolume": "baggervolum", "baggerwater": "baggerwater", "baggerwereld": "baggerwereld", "baggerwerk": "baggerwerk", "baggerwerkzaamheden": "baggerwerkzam", "bags": "bag", "bah": "bah", "bahamas": "bahamas", "baia": "baia", "bais": "bais", "bak": "bak", "baker": "baker", "bakermat": "bakermat", "bakjes": "bakjes", "bakken": "bak", "bakker": "bakker", "bakkerij": "bakkerij", "bakkerijen": "bakkerij", "bakkes": "bakkes", "bakounine": "bakounin", "baksteen": "baksten", "baksteenfabrieken": "baksteenfabriek", "baksteenfabrikanten": "baksteenfabrikant", "baksteenindustrie": "baksteenindustrie", "baksteenproduktieproces": "baksteenproduktieproces", "baksteentjes": "baksteentjes", "baksteenwerk": "baksteenwerk", "bakstenen": "baksten", "bakt": "bakt", "bal": "bal", "balans": "balan", "balansen": "balans", "balanskranen": "balanskran", "balanstotaal": "balanstotal", "balboekje": "balboekj", "balcke": "balck", "balde": "bald", "baldewijns": "baldewijn", "balen": "bal", "balenpers": "balenper", "balenpersen": "balenpers", "balie": "balie", "baljapon": "baljapon", "baljaponnetjes": "baljaponnetjes", "balk": "balk", "balken": "balk", "balkonnetjes": "balkonnetjes", "ballast": "ballast", "ballen": "ball", "balletje": "balletj", "ballingen": "balling", "ballonplaat": "ballonplat", "ballum": "ballum", "bals": "bal", "balsem": "balsem", "balsemen": "balsem", "baltimore": "baltimor", "baltische": "baltisch", "baltoilet": "baltoilet", "balvader": "balvader", "bam": "bam", "bammens": "bammen", "banaal": "banal", "banaanblaren": "banaanblar", "banale": "banal", "banaliteit": "banaliteit", "banco": "banco", "band": "band", "banden": "band", "bandenbedrijf": "bandenbedrijf", "bandenbranche": "bandenbranch", "bandsystemen": "bandsystem", "banen": "ban", "banengroei": "banengroei", "banenverlies": "banenverlies", "bang": "bang", "bangalen": "bangal", "bangde": "bangd", "bange": "bang", "bangende": "bangend", "bangheden": "bangheid", "bangheid": "bangheid", "bangladesh": "bangladesh", "bank": "bank", "bankastraat": "bankastrat", "banken": "bank", "bankenconsortium": "bankenconsortium", "banket": "banket", "banketbakkerijen": "banketbakkerij", "bankje": "bankj", "bankpapier": "bankpapier", "bannen": "bann", "banneweg": "banneweg", "banque": "banque", "banska": "banska", "bant": "bant", "banz": "banz", "bap": "bap", "bar": "bar", "barbaar": "barbar", "barbaars": "barbar", "bärbel": "barbel", "barcelona": "barcelona", "barcodes": "barcodes", "baren": "bar", "barend": "barend", "barende": "barend", "barendrecht": "barendrecht", "barends": "barend", "barentszee": "barentszee", "barentszzee": "barentszzee", "bariet": "bariet", "baringen": "baring", "barlagen": "barlag", "barmhartig": "barmhart", "barmsijs": "barmsijs", "barneveld": "barneveld", "barometer": "barometer", "baron": "baron", "barones": "barones", "baronne": "baronn", "barrels": "barrel", "barrett": "barrett", "barrières": "barrières", "bars": "bar", "barse": "bar", "barseback": "barseback", "barsten": "barst", "barstende": "barstend", "barstte": "barst", "bas": "bas", "basalt": "basalt", "basaltachtig": "basaltacht", "basaltachtige": "basaltacht", "basaltblokken": "basaltblok", "basaltlagen": "basaltlag", "base": "bas", "based": "based", "baseerde": "baseerd", "baseert": "baseert", "basel": "basel", "baselse": "basel", "basen": "bas", "baseren": "baser", "baserend": "baser", "bases": "bases", "basf": "basf", "basis": "basis", "basische": "basisch", "basisdiameter": "basisdiameter", "basisdocument": "basisdocument", "basisgegevens": "basisgegeven", "basisjaar": "basisjar", "basiskwaliteiten": "basiskwaliteit", "basismaatregelen": "basismaatregel", "basismateriaal": "basismateriaal", "basismetaal": "basismetal", "basismetaalindustrie": "basismetaalindustrie", "basisniveau": "basisniveau", "basisonderwijs": "basisonderwijs", "basisonderzoek": "basisonderzoek", "basispakket": "basispakket", "basisprincipe": "basisprincip", "basisprincipes": "basisprincipes", "basisschool": "basisschol", "basisvoorwaarden": "basisvoorwaard", "baskenland": "baskenland", "bassin": "bassin", "bassins": "bassin", "bast": "bast", "baste": "bast", "bastille": "bastill", "bat": "bat", "batavia": "batavia", "batch": "batch", "bate": "bat", "bateca": "bateca", "baten": "bat", "batenanalyse": "batenanalys", "batenanalyses": "batenanalyses", "batenburg": "batenburg", "batenonderzoek": "batenonderzoek", "batenverhouding": "batenverhoud", "batik": "batik", "batneec": "batnec", "baton": "baton", "batterij": "batterij", "batterijen": "batterij", "batterijenbranche": "batterijenbranch", "batterijenplan": "batterijenplan", "batterijfabrikant": "batterijfabrikant", "batterijhouder": "batterijhouder", "batterijleveranciers": "batterijleverancier", "batterijprijs": "batterijprijs", "batterijsector": "batterijsector", "batterijstal": "batterijstal", "battrex": "battrex", "bau": "bau", "bauer": "bauer", "baum": "baum", "baumel": "baumel", "bavaria": "bavaria", "bavel": "bavel", "bay": "bay", "bayer": "bayer", "bayernwerk": "bayernwerk", "baywa": "baywa", "bazel": "bazel", "bazig": "bazig", "bazuinen": "bazuin", "bazuint": "bazuint", "bba": "bba", "bbl": "bbl", "bbln": "bbln", "bc": "bc", "bcf": "bcf", "bcq": "bcq", "bd": "bd", "bdag": "bdag", "bdi": "bdi", "be": "be", "bea": "bea", "beaamde": "beaamd", "beached": "beached", "beag": "beag", "beangst": "beangst", "beangstigd": "beangstigd", "beantwoord": "beantwoord", "beantwoordde": "beantwoord", "beantwoordden": "beantwoord", "beantwoorden": "beantwoord", "beantwoording": "beantwoord", "beantwoordt": "beantwoordt", "bear": "bear", "beatrix": "beatrix", "beatrixgebouw": "beatrixgebouw", "beatrixpark": "beatrixpark", "beaujolais": "beaujolais", "beb": "beb", "bebat": "bebat", "beboet": "beboet", "bebossingen": "beboss", "bebossingsgolven": "bebossingsgolv", "bebost": "bebost", "bebouwd": "bebouwd", "bebouwde": "bebouwd", "bebouwing": "bebouw", "bebouwingscontouren": "bebouwingscontour", "bebouwingsmogelijkheden": "bebouwingsmog", "bechtel": "bechtel", "becijferd": "becijferd", "becijfering": "becijfer", "becijfert": "becijfert", "becker": "becker", "beckers": "becker", "beckerweg": "beckerweg", "beckum": "beckum", "beconcurreerd": "beconcurreerd", "beconcurreren": "beconcurrer", "becquerel": "becquerel", "bed": "bed", "bedaard": "bedaard", "bedacht": "bedacht", "bedachtzaam": "bedachtzam", "bedachtzaamheid": "bedachtzam", "bedank": "bedank", "bedanken": "bedank", "bedankjes": "bedankjes", "bedankt": "bedankt", "bedankte": "bedankt", "bedaren": "bedar", "beddelakens": "beddelaken", "bedden": "bed", "bedeesd": "bedeesd", "bedeesdheid": "bedeesd", "bedekken": "bedek", "bedekkingsgraad": "bedekkingsgrad", "bedekt": "bedekt", "bedekte": "bedekt", "bedelaar": "bedelar", "bedelaarster": "bedelaarster", "bedenk": "bedenk", "bedènk": "bedènk", "bedenkelijk": "bedenk", "bedenken": "bedenk", "bedenkende": "bedenk", "bedenkers": "bedenker", "bedenkingen": "bedenk", "bedenkt": "bedenkt", "bederf": "bederf", "bederft": "bederft", "bederven": "bederv", "bedgordijnen": "bedgordijn", "bediend": "bediend", "bedienden": "bediend", "bedienen": "bedien", "bediening": "bedien", "bedienings": "bedien", "bedieningsgemak": "bedieningsgemak", "bedieningsruimte": "bedieningsruimt", "bedierf": "bedierf", "bedillen": "bedill", "bedillige": "bedill", "bedilzucht": "bedilzucht", "beding": "beding", "bedingen": "beding", "bediscussieert": "bediscussieert", "bedisselde": "bedisseld", "bedje": "bedj", "bedjes": "bedjes", "bedoel": "bedoel", "bedoeld": "bedoeld", "bedoelde": "bedoeld", "bedoelden": "bedoeld", "bedoelen": "bedoel", "bedoeling": "bedoel", "bedoelingen": "bedoel", "bedoelt": "bedoelt", "bedolf": "bedolf", "bedonderd": "bedonderd", "bedonsde": "bedonsd", "bedorven": "bedorv", "bedraagt": "bedraagt", "bedrading": "bedrad", "bedrag": "bedrag", "bedrage": "bedrag", "bedragen": "bedrag", "bedreigd": "bedreigd", "bedreigde": "bedreigd", "bedreigen": "bedreig", "bedreigende": "bedreig", "bedreiging": "bedreig", "bedreigingen": "bedreig", "bedreigt": "bedreigt", "bedreven": "bedrev", "bedrieg": "bedrieg", "bedriegen": "bedrieg", "bedriegt": "bedriegt", "bedrijf": "bedrijf", "bedrijfjes": "bedrijfjes", "bedrijfs": "bedrijf", "bedrijfsactiviteiten": "bedrijfsactiviteit", "bedrijfsadministratie": "bedrijfsadministratie", "bedrijfsadviseur": "bedrijfsadviseur", "bedrijfsafval": "bedrijfsafval", "bedrijfsafvalcontainers": "bedrijfsafvalcontainer", "bedrijfsafvalstoffen": "bedrijfsafvalstoff", "bedrijfsafvalwater": "bedrijfsafvalwater", "bedrijfsartsen": "bedrijfsarts", "bedrijfsauto": "bedrijfsauto", "bedrijfsbeëindigiging": "bedrijfsbeeindig", "bedrijfsbeleid": "bedrijfsbeleid", "bedrijfsbezoek": "bedrijfsbezoek", "bedrijfschap": "bedrijfschap", "bedrijfscomplex": "bedrijfscomplex", "bedrijfscontainers": "bedrijfscontainer", "bedrijfscontroles": "bedrijfscontroles", "bedrijfscultuur": "bedrijfscultur", "bedrijfsdoorlichting": "bedrijfsdoorlicht", "bedrijfsdruk": "bedrijfsdruk", "bedrijfsduur": "bedrijfsdur", "bedrijfsdynamiek": "bedrijfsdynamiek", "bedrijfseconomie": "bedrijfseconomie", "bedrijfseconomisch": "bedrijfseconomisch", "bedrijfseconomische": "bedrijfseconomisch", "bedrijfseffectentoets": "bedrijfseffectentoet", "bedrijfseindigingen": "bedrijfseind", "bedrijfsgebouwen": "bedrijfsgebouw", "bedrijfsgegevens": "bedrijfsgegeven", "bedrijfsgerichte": "bedrijfsgericht", "bedrijfsgroep": "bedrijfsgroep", "bedrijfsgrootte": "bedrijfsgrot", "bedrijfshal": "bedrijfshal", "bedrijfshuisvesting": "bedrijfshuisvest", "bedrijfsimago": "bedrijfsimago", "bedrijfsinformatie": "bedrijfsinformatie", "bedrijfsinstallaties": "bedrijfsinstallaties", "bedrijfsintern": "bedrijfsintern", "bedrijfsinterne": "bedrijfsintern", "bedrijfsklaar": "bedrijfsklar", "bedrijfsklare": "bedrijfsklar", "bedrijfskunde": "bedrijfskund", "bedrijfskundig": "bedrijfskund", "bedrijfskundige": "bedrijfskund", "bedrijfslab": "bedrijfslab", "bedrijfslaboratorium": "bedrijfslaboratorium", "bedrijfslasten": "bedrijfslast", "bedrijfsleider": "bedrijfsleider", "bedrijfsleven": "bedrijfslev", "bedrijfslocatie": "bedrijfslocatie", "bedrijfslocaties": "bedrijfslocaties", "bedrijfsmatig": "bedrijfsmat", "bedrijfsmiddel": "bedrijfsmiddel", "bedrijfsmiddelen": "bedrijfsmiddel", "bedrijfsmilieubarometer": "bedrijfsmilieubarometer", "bedrijfsmilieudiagnose": "bedrijfsmilieudiagnos", "bedrijfsmilieudienst": "bedrijfsmilieudienst", "bedrijfsmilieudiensten": "bedrijfsmilieudienst", "bedrijfsmilieuplan": "bedrijfsmilieuplan", "bedrijfsmilieuplannen": "bedrijfsmilieuplann", "bedrijfsmilieuzorg": "bedrijfsmilieuzorg", "bedrijfsmilieuzorgbeleid": "bedrijfsmilieuzorgbeleid", "bedrijfsmilieuzorgsysteem": "bedrijfsmilieuzorgsystem", "bedrijfsniveau": "bedrijfsniveau", "bedrijfsontwikkeling": "bedrijfsontwikkel", "bedrijfsontwikkelingen": "bedrijfsontwikkel", "bedrijfsopbrengsten": "bedrijfsopbrengst", "bedrijfsoppervlak": "bedrijfsoppervlak", "bedrijfsopzet": "bedrijfsopzet", "bedrijfsorganisatie": "bedrijfsorganisatie", "bedrijfsovernames": "bedrijfsovernames", "bedrijfsplannen": "bedrijfsplann", "bedrijfsprocedures": "bedrijfsprocedures", "bedrijfsproces": "bedrijfsproces", "bedrijfsquotum": "bedrijfsquotum", "bedrijfsreststoffen": "bedrijfsreststoff", "bedrijfsresultaat": "bedrijfsresultat", "bedrijfsresultaten": "bedrijfsresultat", "bedrijfsriolering": "bedrijfsrioler", "bedrijfssaneringen": "bedrijfssaner", "bedrijfsschap": "bedrijfsschap", "bedrijfsschoeisel": "bedrijfsschoeisel", "bedrijfssector": "bedrijfssector", "bedrijfssituatie": "bedrijfssituatie", "bedrijfssluitingen": "bedrijfssluit", "bedrijfsstrategie": "bedrijfsstrategie", "bedrijfsstructuur": "bedrijfsstructur", "bedrijfstak": "bedrijfstak", "bedrijfstakken": "bedrijfstak", "bedrijfstakorganisatie": "bedrijfstakorganisatie", "bedrijfstakstudie": "bedrijfstakstudie", "bedrijfstakstudies": "bedrijfstakstudies", "bedrijfstechnische": "bedrijfstechnisch", "bedrijfstemperatuur": "bedrijfstemperatur", "bedrijfsterrein": "bedrijfsterrein", "bedrijfsterreinen": "bedrijfsterrein", "bedrijfstijd": "bedrijfstijd", "bedrijfstructuur": "bedrijfstructur", "bedrijfstype": "bedrijfstyp", "bedrijfsuitbreiding": "bedrijfsuitbreid", "bedrijfsuitbreidingen": "bedrijfsuitbreid", "bedrijfsuitoefening": "bedrijfsuitoefen", "bedrijfsuitvoering": "bedrijfsuitvoer", "bedrijfsuren": "bedrijfsur", "bedrijfsveiligheid": "bedrijfsveil", "bedrijfsvervoer": "bedrijfsvervoer", "bedrijfsvervoerplan": "bedrijfsvervoerplan", "bedrijfsverzamelgebouwen": "bedrijfsverzamelgebouw", "bedrijfsverzekering": "bedrijfsverzeker", "bedrijfsverzekeringspolissen": "bedrijfsverzekeringspoliss", "bedrijfsvestigingen": "bedrijfsvest", "bedrijfsvet": "bedrijfsvet", "bedrijfsvetten": "bedrijfsvet", "bedrijfsvloer": "bedrijfsvloer", "bedrijfsvloerplaten": "bedrijfsvloerplat", "bedrijfsvoering": "bedrijfsvoer", "bedrijfsvoorlichting": "bedrijfsvoorlicht", "bedrijfswoning": "bedrijfswon", "bedrijfszekerheid": "bedrijfszeker", "bedrijfszorg": "bedrijfszorg", "bedrijven": "bedrijv", "bedrijvengroep": "bedrijvengroep", "bedrijvenlocaties": "bedrijvenlocaties", "bedrijvenmarkt": "bedrijvenmarkt", "bedrijvenpark": "bedrijvenpark", "bedrijventerrein": "bedrijventerrein", "bedrijventerreinen": "bedrijventerrein", "bedrijvigheid": "bedrijv", "bedrilde": "bedrild", "bedringen": "bedring", "bedringing": "bedring", "bedroefd": "bedroefd", "bedroeg": "bedroeg", "bedroegen": "bedroeg", "bedrog": "bedrog", "bedrogen": "bedrog", "bedrong": "bedrong", "bedroog": "bedrog", "bedrukkingen": "bedruk", "bedside": "bedsid", "beduid": "beduid", "beduidde": "beduid", "beduiden": "beduid", "beduidend": "beduid", "beduidenis": "beduidenis", "bedum": "bedum", "bedwang": "bedwang", "bedwelmde": "bedwelmd", "bedwingen": "bedwing", "bedwong": "bedwong", "bedwongen": "bedwong", "beëdigd": "beedigd", "beef": "bef", "beefde": "beefd", "beefden": "beefd", "beëindigd": "beeindigd", "beëindigen": "beeindig", "beëindiging": "beeindig", "beëindigt": "beeindigt", "beejte": "beejt", "beek": "bek", "beekbergen": "beekberg", "beekdal": "beekdal", "beekdalen": "beekdal", "beekdallandschappen": "beekdallandschapp", "beekes": "beekes", "beekontwikkelingsproject": "beekontwikkelingsproject", "beekse": "bek", "beeld": "beeld", "beeldanalyse": "beeldanalys", "beeldbepalend": "beeldbepal", "beeldbuizen": "beeldbuiz", "beelden": "beeld", "beeldende": "beeldend", "beeldhouwen": "beeldhouw", "beeldhouwer": "beeldhouwer", "beeldje": "beeldj", "beeldmerk": "beeldmerk", "beeldrecht": "beeldrecht", "beeldscherm": "beeldscherm", "beeldschermen": "beeldscherm", "beeldvorming": "beeldvorm", "beemster": "beemster", "been": "ben", "beenderen": "beender", "beenderenstel": "beenderenstel", "beenderenstelsel": "beenderenstelsel", "beendermeel": "beendermel", "beentjes": "beentjes", "beer": "ber", "beers": "ber", "beerse": "ber", "beest": "beest", "beestelijf": "beestelijf", "beesten": "beest", "beestentroep": "beestentroep", "beestige": "beestig", "beet": "bet", "beetje": "beetj", "beetnemen": "beetnem", "beets": "bet", "begaan": "began", "begaanbaar": "began", "begaf": "begaf", "beganegrondvloer": "beganegrondvloer", "bege": "beg", "begeeft": "begeeft", "begeerte": "begeert", "begeleid": "begeleid", "begeleide": "begeleid", "begeleiden": "begeleid", "begeleidende": "begeleid", "begeleider": "begeleider", "begeleiding": "begeleid", "begeleidt": "begeleidt", "begemann": "begemann", "begerig": "beger", "begerige": "beger", "begeven": "begev", "beghrijpt": "beghrijpt", "begin": "begin", "beginne": "beginn", "beginnen": "beginn", "beginnende": "beginn", "beginners": "beginner", "beginsel": "beginsel", "beginselakkoord": "beginselakkoord", "beginselen": "beginsel", "beginselloosheid": "beginsellos", "begint": "begint", "beglazing": "beglaz", "beglazingssystemen": "beglazingssystem", "begon": "begon", "begonnen": "begonn", "begoocheling": "begoochel", "begrafenis": "begrafenis", "begraven": "begrav", "begrazen": "begraz", "begreep": "begrep", "begrensd": "begrensd", "begrenzing": "begrenz", "begrenzingsplan": "begrenzingsplan", "begrepen": "begrep", "begrijp": "begrijp", "begrijpelijk": "begrijp", "begrijpelijke": "begrijp", "begrijpen": "begrijp", "begrijpende": "begrijp", "begrijpends": "begrijp", "begrijpt": "begrijpt", "begrip": "begrip", "begrippen": "begripp", "begrippenlijsten": "begrippenlijst", "begroeid": "begroeid", "begroeiing": "begroei", "begroet": "begroet", "begroeten": "begroet", "begroeting": "begroet", "begroetingen": "begroet", "begroette": "begroet", "begroetten": "begroet", "begroeven": "begroev", "begroot": "begrot", "begroting": "begrot", "begrotingen": "begrot", "begrotingsbehandeling": "begrotingsbehandel", "begunstiger": "begunstiger", "beha": "beha", "behaaglijk": "behag", "behaald": "behaald", "behaalde": "behaald", "behagelijk": "behag", "behagen": "behag", "behalen": "behal", "behalve": "behalv", "behandelaar": "behandelar", "behandeld": "behandeld", "behandelde": "behandeld", "behandelen": "behandel", "behandelend": "behandel", "behandeling": "behandel", "behandelingen": "behandel", "behandelingssysteem": "behandelingssystem", "behandelingstechniek": "behandelingstechniek", "behandelmethoden": "behandelmethod", "behandelt": "behandelt", "behang": "behang", "behangen": "behang", "behangerskleuren": "behangerskleur", "behangsel": "behangsel", "behangselbloemen": "behangselbloem", "behangselpapier": "behangselpapier", "behartigd": "behartigd", "behartiging": "behart", "behartigt": "behartigt", "béhault": "behault", "beheer": "beher", "beheerbedrijven": "beheerbedrijv", "beheerd": "beheerd", "beheerde": "beheerd", "beheerder": "beheerder", "beheerders": "beheerder", "beheergebieden": "beheergebied", "beheergronden": "beheergrond", "beheers": "beher", "beheersaspecten": "beheersaspect", "beheersbaar": "beheers", "beheersbare": "beheers", "beheerscontract": "beheerscontract", "beheersen": "beheers", "beheersend": "beheers", "beheersgebied": "beheersgebied", "beheersgebieden": "beheersgebied", "beheersing": "beheers", "beheersingstechnologie": "beheersingstechnologie", "beheersmaatregelen": "beheersmaatregel", "beheersorganisatie": "beheersorganisatie", "beheersovereenkomst": "beheersovereenkomst", "beheersovereenkomsten": "beheersovereenkomst", "beheersplan": "beheersplan", "beheersplannen": "beheersplann", "beheerssituatie": "beheerssituatie", "beheerssubsidie": "beheerssubsidie", "beheerst": "beheerst", "beheerste": "beheerst", "beheersten": "beheerst", "beheert": "beheert", "behelst": "behelst", "behelzen": "behelz", "beheren": "beher", "beherend": "beher", "behield": "behield", "behielden": "behield", "behoeden": "behoed", "behoefde": "behoefd", "behoefden": "behoefd", "behoeft": "behoeft", "behoefte": "behoeft", "behoeften": "behoeft", "behoeve": "behoev", "behoeven": "behoev", "behoor": "behor", "behoord": "behoord", "behoorde": "behoord", "behoorden": "behoord", "behoorlijk": "behor", "behoorlijke": "behor", "behoort": "behoort", "behoren": "behor", "behorende": "behor", "behoud": "behoud", "behouden": "behoud", "behoudende": "behoud", "behoudens": "behouden", "behringen": "behring", "behuizing": "behuiz", "behuizingen": "behuiz", "behuizingsdelen": "behuizingsdel", "behulp": "behulp", "behulpzaam": "behulpzam", "bei": "bei", "beide": "beid", "beiden": "beid", "beider": "beider", "beidjes": "beidjes", "beieren": "beier", "beierse": "beier", "beijing": "beijing", "beïnvloed": "beinvloed", "beïnvloeden": "beinvloed", "beïnvloedt": "beinvloedt", "beirut": "beirut", "beitelhamers": "beitelhamer", "beits": "beit", "bejaarden": "bejaard", "bejo": "bejo", "bejour": "bejour", "bek": "bek", "bekabeling": "bekabel", "bekalking": "bekalk", "bekeek": "bekek", "bekeerd": "bekeerd", "bekeken": "bekek", "beken": "bek", "bekend": "bekend", "bekende": "bekend", "bekendgemaakt": "bekendgemaakt", "bekendgemaakte": "bekendgemaakt", "bekendheid": "bekend", "bekendmaken": "bekendmak", "bekendmaking": "bekendmak", "bekends": "bekend", "bekennen": "bekenn", "bekent": "bekent", "bekentenis": "bekentenis", "bekers": "beker", "bekertjes": "bekertjes", "bekijken": "bekijk", "bekijkt": "bekijkt", "bekken": "bek", "bekkenpassage": "bekkenpassag", "bekkens": "bekken", "beklaag": "beklag", "beklaagd": "beklaagd", "beklaagde": "beklaagd", "beklad": "beklad", "bekladt": "bekladt", "beklag": "beklag", "beklagen": "beklag", "bekleden": "bekled", "bekledende": "bekled", "bekleding": "bekled", "bekledingsmateriaal": "bekledingsmateriaal", "bekleed": "bekled", "bekleedsel": "bekleedsel", "bekleedt": "bekleedt", "beklemde": "beklemd", "beklemden": "beklemd", "beklemmend": "beklemm", "beklemming": "beklemm", "beklemt": "beklemt", "beklimmen": "beklimm", "beklimming": "beklimm", "beknopt": "beknopt", "beknopte": "beknopt", "bekoeld": "bekoeld", "bekomen": "bekom", "bekommeren": "bekommer", "bekoord": "bekoord", "bekoorde": "bekoord", "bekoorlijk": "bekor", "bekoring": "bekor", "bekostigd": "bekostigd", "bekostigen": "bekost", "bekrachtigd": "bekrachtigd", "bekrachtigen": "bekracht", "bekrachtiging": "bekracht", "bekrachtigt": "bekrachtigt", "bekranste": "bekranst", "bekritiseerd": "bekritiseerd", "bekritiseerde": "bekritiseerd", "bekritiseert": "bekritiseert", "bekritiseren": "bekritiser", "bekroond": "bekroond", "bekroonde": "bekroond", "bekwaamheid": "bekwam", "bel": "bel", "belaagd": "belaagd", "belabberd": "belabberd", "belachelijk": "belach", "belachelijke": "belach", "belachelijkheid": "belach", "belachelijkheidjes": "belachelijkheidjes", "belading": "belad", "beladingssysteem": "beladingssystem", "belandde": "beland", "belandt": "belandt", "belang": "belang", "belangeloze": "belangeloz", "belangen": "belang", "belangenafweging": "belangenafweg", "belangenbehartiging": "belangenbehart", "belangengroep": "belangengroep", "belangengroepen": "belangengroep", "belangengroeperingen": "belangengroeper", "belangenorganisatie": "belangenorganisatie", "belangenorganisaties": "belangenorganisaties", "belangentegenstellingen": "belangentegenstell", "belangenvereniging": "belangenveren", "belangenverenigingen": "belangenveren", "belangenverstrengeling": "belangenverstrengel", "belangetjes": "belangetjes", "belanghebbende": "belanghebb", "belanghebbenden": "belanghebb", "belangrijk": "belangrijk", "belangrijke": "belangrijk", "belangrijker": "belangrijker", "belangrijkst": "belangrijkst", "belangrijkste": "belangrijkst", "belangstellend": "belangstell", "belangstellende": "belangstell", "belangstellenden": "belangstell", "belangstelling": "belangstell", "belangwekkende": "belangwek", "belast": "belast", "belastbaar": "belast", "belastbaarheid": "belast", "belasten": "belast", "belastend": "belast", "belastende": "belast", "belastender": "belastender", "belasterde": "belasterd", "belasteren": "belaster", "belasting": "belast", "belastingaftrek": "belastingaftrek", "belastingbehandeling": "belastingbehandel", "belastingbetaler": "belastingbetaler", "belastingdienst": "belastingdienst", "belastingen": "belast", "belastingfaciliteiten": "belastingfaciliteit", "belastinggeld": "belastinggeld", "belastingheffing": "belastingheff", "belastinginspecteur": "belastinginspecteur", "belastingkamer": "belastingkamer", "belastingkantoor": "belastingkantor", "belastingmaatregel": "belastingmaatregel", "belastingmaatregelen": "belastingmaatregel", "belastingontduiking": "belastingontduik", "belastingopbrengst": "belastingopbrengst", "belastingplan": "belastingplan", "belastingpunt": "belastingpunt", "belastingsregels": "belastingsregel", "belastingstelsel": "belastingstelsel", "belastingsysteem": "belastingsystem", "belastingtarief": "belastingtarief", "belastingtarieven": "belastingtariev", "belastingverhoging": "belastingverhog", "belastingverlaging": "belastingverlag", "belastingverlagingen": "belastingverlag", "belastingvoordeel": "belastingvoordel", "belastingvoordelen": "belastingvoordel", "belastingvoorstellen": "belastingvoorstell", "belastingvrij": "belastingvrij", "belastingvrije": "belastingvrij", "belastingwijzigingen": "belastingwijz", "belazerd": "belazerd", "belchatov": "belchatov", "belchatow": "belchatow", "belde": "beld", "belden": "beld", "beledigd": "beledigd", "beledigde": "beledigd", "beledigden": "beledigd", "beledigen": "beled", "beledigend": "beled", "belediging": "beled", "beleefd": "beleefd", "beleefde": "beleefd", "beleefderigheid": "beleefder", "beleefdheid": "beleefd", "beleeft": "beleeft", "belegd": "belegd", "belegde": "belegd", "beleggen": "belegg", "belegger": "belegger", "beleggers": "belegger", "belegging": "belegg", "beleggingen": "belegg", "beleggingsbeleid": "beleggingsbeleid", "beleggingsfonds": "beleggingsfond", "beleggingsfondsen": "beleggingsfonds", "beleggingsinstellingen": "beleggingsinstell", "beleggingsmaatschappij": "beleggingsmaatschappij", "beleggingsmarkt": "beleggingsmarkt", "beleggingsprodukten": "beleggingsprodukt", "beleggingsrekeningen": "beleggingsreken", "beleggingswezen": "beleggingswez", "belegt": "belegt", "beleid": "beleid", "beleidmakers": "beleidmaker", "beleids": "beleid", "beleidsanalyse": "beleidsanalys", "beleidsaspecten": "beleidsaspect", "beleidsbasis": "beleidsbasis", "beleidsbegroting": "beleidsbegrot", "beleidscommissie": "beleidscommissie", "beleidsdoel": "beleidsdoel", "beleidsdoelstellingen": "beleidsdoelstell", "beleidsgericht": "beleidsgericht", "beleidsgroep": "beleidsgroep", "beleidshandboek": "beleidshandboek", "beleidsindicatoren": "beleidsindicator", "beleidsinspanning": "beleidsinspann", "beleidsinstrument": "beleidsinstrument", "beleidsinstrumentarium": "beleidsinstrumentarium", "beleidsinstrumenten": "beleidsinstrument", "beleidsintensies": "beleidsintensies", "beleidskeuzen": "beleidskeuz", "beleidslijn": "beleidslijn", "beleidslijnen": "beleidslijn", "beleidsmaatregelen": "beleidsmaatregel", "beleidsmakers": "beleidsmaker", "beleidsmatig": "beleidsmat", "beleidsmatige": "beleidsmat", "beleidsmedewerker": "beleidsmedewerker", "beleidsmedewerkers": "beleidsmedewerker", "beleidsmensen": "beleidsmens", "beleidsnota": "beleidsnota", "beleidsnotitie": "beleidsnotitie", "beleidsondersteunende": "beleidsondersteun", "beleidsontwikkeling": "beleidsontwikkel", "beleidsplan": "beleidsplan", "beleidsplannen": "beleidsplann", "beleidsplanning": "beleidsplann", "beleidsprogramma": "beleidsprogramma", "beleidsrendement": "beleidsrendement", "beleidsrichtingen": "beleidsricht", "beleidsruimte": "beleidsruimt", "beleidsstrategie": "beleidsstrategie", "beleidsstudies": "beleidsstudies", "beleidsstuk": "beleidsstuk", "beleidsstukken": "beleidsstuk", "beleidsterrein": "beleidsterrein", "beleidsterreinen": "beleidsterrein", "beleidsthema": "beleidsthema", "beleidsuitgangspunten": "beleidsuitgangspunt", "beleidsverklaring": "beleidsverklar", "beleidsvisie": "beleidsvisie", "beleidsvoorbereiding": "beleidsvoorbereid", "beleidsvoornemens": "beleidsvoornemen", "beleidsvorming": "beleidsvorm", "beleidsvragen": "beleidsvrag", "beleidsvrijheid": "beleidsvrij", "beleidswijziging": "beleidswijz", "beleidswijzigingen": "beleidswijz", "belemmerd": "belemmerd", "belemmeren": "belemmer", "belemmerend": "belemmer", "belemmering": "belemmer", "belemmeringen": "belemmer", "belemmeringshoek": "belemmeringshoek", "belemmert": "belemmert", "beleving": "belev", "belevingsonderzoek": "belevingsonderzoek", "belevingswaarde": "belevingswaard", "belgaqua": "belgaqua", "belgen": "belg", "belgie": "belgie", "belgië": "belgie", "belgisch": "belgisch", "belgische": "belgisch", "belgium": "belgium", "belgoprocess": "belgoproces", "belicht": "belicht", "bellen": "bell", "belletjes": "belletjes", "belofte": "beloft", "belonen": "belon", "beloning": "belon", "beloningen": "belon", "beloningssysteem": "beloningssystem", "beloof": "belof", "beloofd": "beloofd", "beloofde": "beloofd", "beloofden": "beloofd", "belooft": "belooft", "beloon": "belon", "beloond": "beloond", "beloont": "beloont", "beloop": "belop", "beloopbaar": "belop", "beloopt": "beloopt", "belopen": "belop", "beloven": "belov", "belovende": "belov", "belpak": "belpak", "belt": "belt", "belton": "belton", "beluchters": "beluchter", "beluchting": "belucht", "beluchtingstanks": "beluchtingstank", "beluisteren": "beluister", "belust": "belust", "belvedere": "belveder", "bem": "bem", "bemachtigen": "bemacht", "bemalingen": "bemal", "bemande": "bemand", "bemanning": "bemann", "bemanningsleden": "bemanningsled", "bemeesterde": "bemeesterd", "bemerken": "bemerk", "bemerkend": "bemerk", "bemerkte": "bemerkt", "bemest": "bemest", "bemeste": "bemest", "bemesten": "bemest", "bemesting": "bemest", "bemestingadviezen": "bemestingadviez", "bemestingsadvies": "bemestingsadvies", "bemestingsadviezen": "bemestingsadviez", "bemestingsdeskundige": "bemestingsdeskund", "bemestingsgedrag": "bemestingsgedrag", "bemestingsinstallatie": "bemestingsinstallatie", "bemestingsniveau": "bemestingsniveau", "bemestingsnormen": "bemestingsnorm", "bemestingsverbod": "bemestingsverbod", "bemestingswaarde": "bemestingswaard", "bemeten": "bemet", "bemeterd": "bemeterd", "bemetering": "bemeter", "bemiddelaar": "bemiddelar", "bemiddeling": "bemiddel", "bemiddelingscomité": "bemiddelingscomit", "bemiddelt": "bemiddelt", "beminde": "bemind", "beminden": "bemind", "beminnelijk": "beminn", "beminnelijkheid": "beminn", "beminnelijks": "beminn", "bemmel": "bemmel", "bemodderde": "bemodderd", "bemodderend": "bemodder", "bemoederends": "bemoeder", "bemoedigend": "bemoed", "bemoediging": "bemoed", "bemoei": "bemoei", "bemoeid": "bemoeid", "bemoeide": "bemoeid", "bemoeien": "bemoei", "bemòeien": "bemòei", "bemoeiingen": "bemoei", "bemoeilijken": "bemoeilijk", "bemoeilijkt": "bemoeilijkt", "bemoeit": "bemoeit", "bemonsterd": "bemonsterd", "bemonsteren": "bemonster", "bemonstering": "bemonster", "bemonsteringsdiepte": "bemonsteringsdiept", "bemonsteringsfilters": "bemonsteringsfilter", "bemonsteringsfout": "bemonsteringsfout", "bemonsteringsmethode": "bemonsteringsmethod", "bemonsteringstechniek": "bemonsteringstechniek", "ben": "ben", "bèn": "bèn", "benaauwd": "benaauwd", "benadeeld": "benadeeld", "benadeelden": "benadeeld", "benaderd": "benaderd", "benaderen": "benader", "benadering": "benader", "benadert": "benadert", "benadrukken": "benadruk", "benadrukt": "benadrukt", "benadrukte": "benadrukt", "benadrukten": "benadrukt", "benam": "benam", "benamen": "benam", "benamingen": "benam", "benauwd": "benauwd", "benauwde": "benauwd", "benauwden": "benauwd", "benauwder": "benauwder", "benauwen": "benauw", "benauwende": "benauw", "benauwing": "benauw", "benauwingen": "benauw", "benchmarking": "benchmark", "benchmarks": "benchmark", "bende": "bend", "bene": "ben", "beneden": "bened", "benedenwaard": "benedenwaard", "benelux": "benelux", "benemen": "benem", "benen": "ben", "bengaalse": "bengal", "bengel": "bengel", "bengels": "bengel", "benha": "benha", "benieuwd": "benieuwd", "benig": "benig", "benige": "benig", "benijd": "benijd", "benijdden": "benijd", "benin": "benin", "benita": "benita", "bennekom": "bennekom", "benodigd": "benodigd", "benodigde": "benodigd", "benoemd": "benoemd", "benoeming": "benoem", "benoemt": "benoemt", "bent": "bent", "bentazon": "bentazon", "benthuizen": "benthuiz", "bentoniet": "bentoniet", "bentonwand": "bentonwand", "bentrazin": "bentrazin", "bentum": "bentum", "benut": "benut", "benutten": "benut", "benutting": "benut", "benz": "benz", "benzaldehyde": "benzaldehyd", "benzeen": "benzen", "benzeengehalte": "benzeengehalt", "benzide": "benzid", "benzidine": "benzidin", "benzine": "benzin", "benzinedepots": "benzinedepot", "benzinemotoren": "benzinemotor", "benzineprijs": "benzineprijs", "benzineprijzen": "benzineprijz", "benzinestations": "benzinestation", "benzinetankstations": "benzinetankstation", "benzineverkooppunten": "benzineverkooppunt", "benzinewagens": "benzinewagen", "benzoëzuur": "benzoezur", "benzol": "benzol", "benzontril": "benzontril", "beoefenen": "beoefen", "beogen": "beog", "beon": "beon", "beoogd": "beoogd", "beoogde": "beoogd", "beoogden": "beoogd", "beoogt": "beoogt", "beoordeeld": "beoordeeld", "beoordeelden": "beoordeeld", "beoordeelt": "beoordeelt", "beoordelen": "beoordel", "beoordelende": "beoordel", "beoordeling": "beoordel", "beoordelingsprocedure": "beoordelingsprocedur", "beoordelingsrichtlijn": "beoordelingsrichtlijn", "beoordelingsrichtlijnen": "beoordelingsrichtlijn", "beoordelingssystematiek": "beoordelingssystematiek", "bepaald": "bepaald", "bepaalde": "bepaald", "bepaalt": "bepaalt", "bepalen": "bepal", "bepalend": "bepal", "bepalende": "bepal", "bepaling": "bepal", "bepalingen": "bepal", "bepalingsmethoden": "bepalingsmethod", "bepeins": "bepein", "bepeinzen": "bepeinz", "beperken": "beperk", "beperkende": "beperk", "beperking": "beperk", "beperkingen": "beperk", "beperkingsproject": "beperkingsproject", "beperkt": "beperkt", "beperkte": "beperkt", "beplant": "beplant", "beplantbare": "beplant", "beplanting": "beplant", "beplantingen": "beplant", "beplating": "beplat", "bepleit": "bepleit", "bepleitte": "bepleit", "bepraten": "beprat", "beprating": "beprat", "beproefd": "beproefd", "beproefde": "beproefd", "beproeft": "beproeft", "beproeven": "beproev", "beproevingshallen": "beproevingshall", "beproevingslaboratoria": "beproevingslaboratoria", "beraad": "berad", "beraadt": "beraadt", "beraamd": "beraamd", "beraden": "berad", "beratende": "berat", "berdyaja": "berdyaja", "berechten": "berecht", "bereden": "bered", "beredeneren": "beredener", "bereed": "bered", "beregend": "bereg", "beregenen": "beregen", "beregening": "beregen", "beregeningsbeperkingen": "beregeningsbeperk", "beregeningsverbod": "beregeningsverbod", "beregeningsvergunningen": "beregeningsvergunn", "bereid": "bereid", "bereidde": "bereid", "bereiden": "bereid", "bereidheid": "bereid", "bereiding": "bereid", "bereidt": "bereidt", "bereik": "bereik", "bereikbaar": "bereik", "bereikbaarheid": "bereik", "bereikbare": "bereik", "bereiken": "bereik", "bereikt": "bereikt", "bereikte": "bereikt", "bereikten": "bereikt", "bereken": "berek", "berekend": "berek", "berekende": "berek", "berekenden": "berek", "berekenen": "bereken", "berekenend": "bereken", "berekenende": "bereken", "berekening": "bereken", "berekeningen": "bereken", "berekent": "berekent", "beren": "ber", "berenbak": "berenbak", "berends": "berend", "berendse": "berend", "berens": "beren", "berenschot": "berenschot", "berg": "berg", "bergachtige": "bergacht", "bergafwaarts": "bergafwaart", "bergambacht": "bergambacht", "bergbeklimmers": "bergbeklimmer", "bergbezinktanks": "bergbezinktank", "bergen": "berg", "bergend": "bergend", "berger": "berger", "berghuizer": "berghuizer", "berging": "berging", "bergingslocaties": "bergingslocaties", "bergmann": "bergmann", "bergplaats": "bergplat", "bergstapelingen": "bergstapel", "bergtop": "bergtop", "bergtoppen": "bergtopp", "bergwind": "bergwind", "bericht": "bericht", "berichten": "bericht", "berichtje": "berichtj", "berispte": "berispt", "berkel": "berkel", "berken": "berk", "berkhout": "berkhout", "berlaymont": "berlaymont", "berlaymontgebouw": "berlaymontgebouw", "berlijn": "berlijn", "berlijnse": "berlijn", "berlin": "berlin", "berm": "berm", "bermen": "berm", "bermgras": "bermgras", "bernard": "bernard", "bernhard": "bernhard", "beroemde": "beroemd", "beroep": "beroep", "beroepen": "beroep", "beroeps": "beroep", "beroepsbevolking": "beroepsbevolk", "beroepscollege": "beroepscolleg", "beroepsgenoten": "beroepsgenot", "beroepsgerechtigden": "beroepsgerechtigd", "beroepsgoederenvervoer": "beroepsgoederenvervoer", "beroepsinstellers": "beroepsinsteller", "beroepsmatig": "beroepsmat", "beroepsmatige": "beroepsmat", "beroepsonderwijs": "beroepsonderwijs", "beroepsopleiding": "beroepsopleid", "beroepsorganistie": "beroepsorganistie", "beroepsprocedure": "beroepsprocedur", "beroepsprocedures": "beroepsprocedures", "beroepsschool": "beroepsschol", "beroepsvaart": "beroepsvaart", "beroepsvisserij": "beroepsvisserij", "beroepsvissers": "beroepsvisser", "beroepszaak": "beroepszak", "beroepszaken": "beroepszak", "beroepsziekte": "beroepsziekt", "beroerd": "beroerd", "beroèrd": "beroèrd", "beroerde": "beroerd", "beroerdheid": "beroerd", "beroerdste": "beroerdst", "beroèrrde": "beroèrrd", "beroerte": "beroert", "berokkenen": "berokken", "berouw": "berouw", "berouwloos": "berouwlos", "bertens": "berten", "bertha": "bertha", "bèrtha": "bèrtha", "beruchte": "berucht", "berust": "berust", "berusten": "berust", "berustende": "berust", "berustigend": "berust", "berusting": "berust", "besar": "besar", "beschaafd": "beschaafd", "beschaafde": "beschaafd", "beschadigd": "beschadigd", "beschadigde": "beschadigd", "beschadigen": "beschad", "beschadiging": "beschad", "beschadigingen": "beschad", "beschadigt": "beschadigt", "beschaving": "beschav", "bescheiden": "bescheid", "beschenen": "beschen", "bescherm": "bescherm", "beschermd": "beschermd", "beschermde": "beschermd", "beschermen": "bescherm", "beschermend": "bescherm", "beschermende": "bescherm", "beschermends": "bescherm", "beschermer": "beschermer", "beschermgas": "beschermgas", "beschermgassen": "beschermgass", "bescherming": "bescherm", "beschermingsbeleid": "beschermingsbeleid", "beschermingsconstructies": "beschermingsconstructies", "beschermingsmiddelen": "beschermingsmiddel", "beschermingsniveau": "beschermingsniveau", "beschermingsprodukten": "beschermingsprodukt", "beschermingsstrijdkrachten": "beschermingsstrijdkracht", "beschermingszones": "beschermingszones", "beschermkapjes": "beschermkapjes", "beschermkleding": "beschermkled", "beschermt": "beschermt", "beschikbaar": "beschik", "beschikbaarheid": "beschik", "beschikbaarstellen": "beschikbaarstell", "beschikbare": "beschik", "beschikken": "beschik", "beschikking": "beschik", "beschikkingen": "beschik", "beschikt": "beschikt", "beschimpt": "beschimpt", "beschot": "beschot", "beschouw": "beschouw", "beschouwd": "beschouwd", "beschouwde": "beschouwd", "beschouwden": "beschouwd", "beschouwen": "beschouw", "beschouwing": "beschouw", "beschouwingen": "beschouw", "beschouwt": "beschouwt", "beschreef": "beschref", "beschreven": "beschrev", "beschrijft": "beschrijft", "beschrijven": "beschrijv", "beschrijving": "beschrijv", "beschrijvingen": "beschrijv", "beschuit": "beschuit", "beschuitje": "beschuitj", "beschuitjes": "beschuitjes", "beschuldigd": "beschuldigd", "beschuldigde": "beschuldigd", "beschuldiging": "beschuld", "beschuldigingen": "beschuld", "beschuldigt": "beschuldigt", "besef": "besef", "beseffen": "beseff", "beseft": "beseft", "besefte": "beseft", "beslaan": "beslan", "beslaat": "beslat", "beslag": "beslag", "beslagen": "beslag", "beslagleggen": "beslaglegg", "beslaglegger": "beslaglegger", "beslisboom": "beslisbom", "beslisingen": "beslis", "beslissen": "besliss", "beslissende": "besliss", "beslissers": "beslisser", "beslissing": "besliss", "beslissingen": "besliss", "beslissingsmodellen": "beslissingsmodell", "beslissingsrechten": "beslissingsrecht", "beslist": "beslist", "besliste": "beslist", "beslistheid": "beslist", "beslists": "beslist", "besloegen": "besloeg", "besloot": "beslot", "besloten": "beslot", "besluit": "besluit", "besluiteloos": "besluitelos", "besluiten": "besluit", "besluitenloos": "besluitenlos", "besluitvoering": "besluitvoer", "besluitvormers": "besluitvormer", "besluitvorming": "besluitvorm", "besmet": "besmet", "besmette": "besmet", "besmetten": "besmet", "besmetting": "besmet", "besmettingsgraad": "besmettingsgrad", "besmeurde": "besmeurd", "bespaard": "bespaard", "bespaarde": "bespaard", "bespaart": "bespaart", "besparen": "bespar", "besparing": "bespar", "besparingen": "bespar", "besparingsbeleid": "besparingsbeleid", "besparingseisen": "besparingseis", "besparingsmogelijkheden": "besparingsmog", "besparingsopties": "besparingsopties", "besparingsovereenkomsten": "besparingsovereenkomst", "besparingsplannen": "besparingsplann", "besparingstempo": "besparingstempo", "bespeurde": "bespeurd", "bespeurden": "bespeurd", "bespeuren": "bespeur", "bespeurende": "bespeur", "bespiedden": "bespied", "bespieden": "bespied", "bespiegelende": "bespiegel", "bespiegelingen": "bespiegel", "bespoedigd": "bespoedigd", "bespoten": "bespot", "bespottelijk": "bespot", "bespotting": "bespot", "besprak": "besprak", "bespreekbaar": "besprek", "bespreken": "besprek", "bespreking": "besprek", "besprekingen": "besprek", "besprenkeld": "besprenkeld", "besproken": "besprok", "bespuiten": "bespuit", "bespuiting": "bespuit", "bespuitingen": "bespuit", "best": "best", "bestaan": "bestan", "bestaand": "bestaand", "bestaande": "bestaand", "bestaansrecht": "bestaansrecht", "bestaat": "bestat", "bestand": "bestand", "bestanddeel": "bestanddel", "bestanddelen": "bestanddel", "beste": "best", "bestede": "bested", "besteden": "bested", "besteding": "bested", "bestedingen": "bested", "besteed": "bested", "besteedt": "besteedt", "bestek": "bestek", "bestekadviezen": "bestekadviez", "bestekgereed": "bestekgered", "bestekken": "bestek", "bestekshoeveelheden": "bestekshoevel", "besteksredacties": "besteksredacties", "bestekteksten": "bestektekst", "bestelbussen": "bestelbuss", "besteld": "besteld", "bestelde": "besteld", "bestellen": "bestell", "bestellingen": "bestell", "bestelt": "bestelt", "bestelwagens": "bestelwagen", "bestemd": "bestemd", "bestemde": "bestemd", "bestemder": "bestemder", "bestemmen": "bestemm", "bestemming": "bestemm", "bestemmingen": "bestemm", "bestemmingsheffing": "bestemmingsheff", "bestemmingsheffingen": "bestemmingsheff", "bestemmingsplan": "bestemmingsplan", "bestemmingsplannen": "bestemmingsplann", "bestemmingsplanwijziging": "bestemmingsplanwijz", "bestempelden": "bestempeld", "bestempelen": "bestempel", "bestendigen": "bestend", "bestendigheid": "bestend", "bestierf": "bestierf", "bestikt": "bestikt", "bestoft": "bestoft", "bestond": "bestond", "bestonden": "bestond", "bestormde": "bestormd", "bestorming": "bestorm", "bestraffen": "bestraff", "bestraft": "bestraft", "bestrafte": "bestraft", "bestrating": "bestrat", "bestreden": "bestred", "bestrijden": "bestrijd", "bestrijding": "bestrijd", "bestrijdings": "bestrijd", "bestrijdingsapparatuur": "bestrijdingsapparatur", "bestrijdingsbeleid": "bestrijdingsbeleid", "bestrijdingsmiddel": "bestrijdingsmiddel", "bestrijdingsmiddelen": "bestrijdingsmiddel", "bestrijdingsmiddelenbeleid": "bestrijdingsmiddelenbeleid", "bestrijdingsmiddelengebruik": "bestrijdingsmiddelengebruik", "bestrijdingsmiddelennorm": "bestrijdingsmiddelennorm", "bestrijdingsmiddelenwet": "bestrijdingsmiddelenwet", "bestrijdingsplan": "bestrijdingsplan", "bestrijdingstechnieken": "bestrijdingstechniek", "bestrijdingsvaartuig": "bestrijdingsvaartu", "bestrijdt": "bestrijdt", "bestrijken": "bestrijk", "bestudeerd": "bestudeerd", "bestudeerde": "bestudeerd", "bestudeerden": "bestudeerd", "bestudeert": "bestudeert", "bestuderen": "bestuder", "bestuderende": "bestuder", "bestudering": "bestuder", "besturen": "bestur", "besturing": "bestur", "besturingssysteem": "besturingssystem", "besturingstechniek": "besturingstechniek", "bestuur": "bestur", "bestuurd": "bestuurd", "bestuurde": "bestuurd", "bestuurder": "bestuurder", "bestuurders": "bestuurder", "bestuurdersplaats": "bestuurdersplat", "bestuurlijk": "bestur", "bestuurlijke": "bestur", "bestuurs": "bestur", "bestuursadviescollege": "bestuursadviescolleg", "bestuursculturen": "bestuurscultur", "bestuursdwang": "bestuursdwang", "bestuurskunde": "bestuurskund", "bestuurslaag": "bestuurslag", "bestuurslid": "bestuurslid", "bestuursondersteunende": "bestuursondersteun", "bestuursorgaan": "bestuursorgan", "bestuursorganen": "bestuursorgan", "bestuursovereenkomst": "bestuursovereenkomst", "bestuursovereenkomsten": "bestuursovereenkomst", "bestuursrecht": "bestuursrecht", "bestuursrechtelijk": "bestuursrecht", "bestuursrechtelijke": "bestuursrecht", "bestuursrechter": "bestuursrechter", "bestuursrechtspraak": "bestuursrechtsprak", "bestuursvoorzitter": "bestuursvoorzitter", "bestuurszaken": "bestuurszak", "beta": "beta", "bèta": "bèta", "betaal": "betal", "betaalbaar": "betal", "betaalbare": "betal", "betaald": "betaald", "betaalde": "betaald", "betaalden": "betaald", "betaalt": "betaalt", "betalen": "betal", "betaler": "betaler", "betaling": "betal", "betalingen": "betal", "betalingsbalans": "betalingsbalan", "betalingsvoorwaarden": "betalingsvoorwaard", "bètastraling": "bètastral", "betekend": "betek", "betekende": "betek", "betekenen": "beteken", "betekenis": "betekenis", "betekent": "betekent", "beter": "beter", "betere": "beter", "beters": "beter", "beterschap": "beterschap", "beteugelen": "beteugel", "beticht": "beticht", "betichten": "beticht", "betichtte": "beticht", "betimmering": "betimmer", "betimmeringen": "betimmer", "betitelt": "betitelt", "betoeng": "betoeng", "betogers": "betoger", "betoging": "betog", "betomen": "betom", "beton": "beton", "betonbewerkings": "betonbewerk", "betonbouw": "betonbouw", "betoncentrale": "betoncentral", "betonelementen": "betonelement", "betonindustrie": "betonindustrie", "betoninstallaties": "betoninstallaties", "betonkonstrukties": "betonkonstrukties", "betonkorrels": "betonkorrel", "betonmengsel": "betonmengsel", "betonnen": "betonn", "betonpalen": "betonpal", "betonplaat": "betonplat", "betonproduktfabrikanten": "betonproduktfabrikant", "betonreparatiebedrijven": "betonreparatiebedrijv", "betonreparaties": "betonreparaties", "betonschade": "betonschad", "betonsoorten": "betonsoort", "betonstaal": "betonstal", "betonsteen": "betonsten", "betonstenen": "betonsten", "betonstraatsteen": "betonstraatsten", "betonstraatstenen": "betonstraatsten", "betonvereniging": "betonveren", "betonvloer": "betonvloer", "betonwarenindustrie": "betonwarenindustrie", "betonweg": "betonweg", "betoog": "betog", "betoogde": "betoogd", "betoogt": "betoogt", "betoverende": "betover", "betovering": "betover", "betoveringen": "betover", "betrachten": "betracht", "betraden": "betrad", "betrappen": "betrapp", "betrapt": "betrapt", "betrapte": "betrapt", "betrayed": "betrayed", "betreedt": "betreedt", "betreffen": "betreff", "betreffende": "betreff", "betreft": "betreft", "betrekkelijk": "betrek", "betrekken": "betrek", "betrekking": "betrek", "betrekkingen": "betrek", "betrekt": "betrekt", "betreur": "betreur", "betreurd": "betreurd", "betreurde": "betreurd", "betreuren": "betreur", "betreurende": "betreur", "betreuring": "betreur", "betreuringen": "betreur", "betreurt": "betreurt", "betriebsaktiengesellschaft": "betriebsaktiengesellschaft", "betrof": "betrof", "betroffen": "betroff", "betrokken": "betrok", "betrokkenen": "betrokken", "betrokkenheid": "betrok", "betrouwbaar": "betrouw", "betrouwbaarder": "betrouwbaarder", "betrouwbaarheid": "betrouw", "betrouwbare": "betrouw", "betsy": "betsy", "bette": "bet", "betuigde": "betuigd", "betuigen": "betuig", "betuwe": "betuw", "betuwelijn": "betuwelijn", "betuweroute": "betuwerout", "betuwse": "betuw", "betwijfelbaar": "betwijfel", "betwijfelde": "betwijfeld", "betwijfelen": "betwijfel", "betwijfelt": "betwijfelt", "beuk": "beuk", "beukehout": "beukehout", "beukehouten": "beukehout", "beukema": "beukema", "beuken": "beuk", "beukenberg": "beukenberg", "beukenboom": "beukenbom", "beukenhout": "beukenhout", "beukenkom": "beukenkom", "beul": "beul", "beuningen": "beuning", "beuren": "beur", "beurs": "beur", "beurscomplex": "beurscomplex", "beursfonds": "beursfond", "beursgang": "beursgang", "beursgenoteerde": "beursgenoteerd", "beurshandel": "beurshandel", "beurskens": "beursken", "beurskoers": "beurskoer", "beursmanager": "beursmanager", "beurt": "beurt", "beurtelings": "beurtel", "beurzen": "beurz", "beval": "beval", "bevalen": "beval", "bevallen": "bevall", "bevallig": "bevall", "bevallige": "bevall", "bevalligheid": "bevall", "bevalling": "bevall", "bevalt": "bevalt", "bevat": "bevat", "bevatte": "bevat", "bevattelijk": "bevat", "bevatten": "bevat", "bevattende": "bevat", "bevechten": "bevecht", "beveelt": "beveelt", "beveiliging": "beveil", "beveiligingsbevel": "beveiligingsbevel", "beveiligingsheffing": "beveiligingsheff", "beveiligingsmaatregelen": "beveiligingsmaatregel", "bevel": "bevel", "beveland": "beveland", "bevelen": "bevel", "beven": "bev", "bevend": "bevend", "bevende": "bevend", "bever": "bever", "beveren": "bever", "beverig": "bever", "beverwijk": "beverwijk", "bevestigd": "bevestigd", "bevestigde": "bevestigd", "bevestigen": "bevest", "bevestigend": "bevest", "bevestiging": "bevest", "bevestigt": "bevestigt", "beviel": "beviel", "bevill": "bevill", "bevind": "bevind", "bevinden": "bevind", "bevindende": "bevind", "bevinding": "bevind", "bevindingen": "bevind", "bevindt": "bevindt", "beving": "beving", "beviste": "bevist", "bevochten": "bevocht", "bevochtigd": "bevochtigd", "bevochtigende": "bevocht", "bevoegd": "bevoegd", "bevoegde": "bevoegd", "bevoegdheden": "bevoegd", "bevoegdheid": "bevoegd", "bevolen": "bevol", "bevolking": "bevolk", "bevolkingen": "bevolk", "bevolkingsdichtheid": "bevolkingsdicht", "bevolkingsexplosie": "bevolkingsexplosie", "bevolkingsgroei": "bevolkingsgroei", "bevolkte": "bevolkt", "bevond": "bevond", "bevonden": "bevond", "bevoorrading": "bevoorrad", "bevoorrechte": "bevoorrecht", "bevorderd": "bevorderd", "bevorderen": "bevorder", "bevordering": "bevorder", "bevordert": "bevordert", "bevredigd": "bevredigd", "bevredigde": "bevredigd", "bevredigen": "bevred", "bevredigend": "bevred", "bevredigende": "bevred", "bevrediging": "bevred", "bevreesd": "bevreesd", "bevriezen": "bevriez", "bevriezing": "bevriez", "bevrijdde": "bevrijd", "bevrijden": "bevrijd", "bevroor": "bevror", "bevroren": "bevror", "bevrorenen": "bevroren", "bevruchting": "bevrucht", "bevuild": "bevuild", "bewaaksters": "bewaakster", "bewaakt": "bewaakt", "bewaar": "bewar", "bewaard": "bewaard", "bewaart": "bewaart", "bewademen": "bewadem", "bewaken": "bewak", "bewaking": "bewak", "bewakingssysteem": "bewakingssystem", "bewapening": "bewapen", "bewaren": "bewar", "bewaring": "bewar", "bewasemde": "bewasemd", "beweeg": "beweg", "beweegbare": "beweg", "beweeglijkheid": "beweg", "beweegt": "beweegt", "beweerd": "beweerd", "beweerde": "beweerd", "beweerden": "beweerd", "beweert": "beweert", "bewegelijk": "beweg", "bewegelijke": "beweg", "bewegelijkheid": "beweg", "bewegelijkst": "bewegelijkst", "bewegen": "beweg", "bewegend": "beweg", "beweging": "beweg", "bewegingen": "beweg", "bewegingloos": "beweginglos", "bewegingsmelder": "bewegingsmelder", "bewegingsvrijheid": "bewegingsvrij", "beweginkjes": "beweginkjes", "beweiding": "beweid", "bewering": "bewer", "beweringen": "bewer", "bewerkelijk": "bewerk", "bewerken": "bewerk", "bewerkers": "bewerker", "bewerking": "bewerk", "bewerkingsinrichtingen": "bewerkingsinricht", "bewerkingsinstallatie": "bewerkingsinstallatie", "bewerkingsketen": "bewerkingsket", "bewerkingsrestanten": "bewerkingsrestant", "bewerkstelligd": "bewerkstelligd", "bewerkstelligen": "bewerkstell", "bewerkstelligt": "bewerkstelligt", "bewerkt": "bewerkt", "bewerktuigd": "bewerktuigd", "bewezen": "bewez", "bewijs": "bewijs", "bewijskader": "bewijskader", "bewijslast": "bewijslast", "bewijsmateriaal": "bewijsmateriaal", "bewijst": "bewijst", "bewijstechnisch": "bewijstechnisch", "bewijzen": "bewijz", "bewind": "bewind", "bewindslieden": "bewindslied", "bewindvoerder": "bewindvoerder", "bewogen": "bewog", "bewolking": "bewolk", "bewolkt": "bewolkt", "bewonder": "bewonder", "bewonderd": "bewonderd", "bewonderde": "bewonderd", "bewonderden": "bewonderd", "bewonderen": "bewonder", "bewondering": "bewonder", "bewonen": "bewon", "bewoner": "bewoner", "bewoners": "bewoner", "bewonersgedrag": "bewonersgedrag", "bewonersgroep": "bewonersgroep", "bewonersgroepen": "bewonersgroep", "bewonersorganisaties": "bewonersorganisaties", "bewonersvereniging": "bewonersveren", "bewoning": "bewon", "bewoog": "bewog", "bewoond": "bewoond", "bewoonde": "bewoond", "bewoonster": "bewoonster", "bewoordingen": "bewoord", "bewortelingslaag": "bewortelingslag", "bewust": "bewust", "bewuste": "bewust", "bewusteloos": "bewustelos", "bewuster": "bewuster", "bewustheid": "bewust", "bewustmaking": "bewustmak", "bewustwording": "bewustword", "bewustzijn": "bewustzijn", "beyer": "beyer", "beynum": "beynum", "beyond": "beyond", "bezaaid": "bezaaid", "bezadigd": "bezadigd", "bezadigdheid": "bezadigd", "bezadiging": "bezad", "bezag": "bezag", "bezat": "bezat", "bezaten": "bezat", "bezeerd": "bezeerd", "bezemrichtlijn": "bezemrichtlijn", "bezending": "bezend", "bezet": "bezet", "bezetene": "bezet", "bezetters": "bezetter", "bezetting": "bezet", "bezettingsgraad": "bezettingsgrad", "bezichtigen": "bezicht", "bezield": "bezield", "bezielde": "bezield", "bezielden": "bezield", "bezien": "bezien", "beziende": "beziend", "bezienswaardigheid": "bezienswaard", "bezig": "bezig", "bezige": "bezig", "bezigheden": "bezig", "bezigheid": "bezig", "bezighouden": "bezighoud", "bezighoudt": "bezighoudt", "bezin": "bezin", "bezinestations": "bezinestation", "bezinkbakken": "bezinkbak", "bezinken": "bezink", "bezinksel": "bezinksel", "bezinkt": "bezinkt", "bezinktank": "bezinktank", "bezinnen": "bezinn", "bezinning": "bezinn", "bezinningsgroep": "bezinningsgroep", "bezit": "bezit", "bezitten": "bezit", "bezitter": "bezitter", "bezitters": "bezitter", "bezittingen": "bezit", "bezocht": "bezocht", "bezochte": "bezocht", "bezochten": "bezocht", "bezoedeld": "bezoedeld", "bezoedelde": "bezoedeld", "bezoedelend": "bezoedel", "bezoedeling": "bezoedel", "bezoek": "bezoek", "bezoekadres": "bezoekadres", "bezoeken": "bezoek", "bezoekend": "bezoek", "bezoekers": "bezoeker", "bezoekerscentrum": "bezoekerscentrum", "bezoekersrecord": "bezoekersrecord", "bezoekt": "bezoekt", "bezorgd": "bezorgd", "bezorgde": "bezorgd", "bezorgdheid": "bezorgd", "bezorgen": "bezorg", "bezorgheid": "bezorg", "bezorgingen": "bezorg", "bezorgt": "bezorgt", "bezuidenhout": "bezuidenhout", "bezuidenhoutseweg": "bezuidenhoutseweg", "bezuinigd": "bezuinigd", "bezuinigen": "bezuin", "bezuinigingen": "bezuin", "bezuinigt": "bezuinigt", "bezwaar": "bezwar", "bezwaarlijk": "bezwar", "bezwaarmakers": "bezwaarmaker", "bezwaarschrift": "bezwaarschrift", "bezwaarschriften": "bezwaarschrift", "bezwangerd": "bezwangerd", "bezwaren": "bezwar", "bezwarend": "bezwar", "bezweek": "bezwek", "bezweken": "bezwek", "bezwerende": "bezwer", "bezwijken": "bezwijk", "bezwijkt": "bezwijkt", "bezwijmde": "bezwijmd", "bezwijmeld": "bezwijmeld", "bezwijmelen": "bezwijmel", "bezwijmelende": "bezwijmel", "bezwijmeling": "bezwijmel", "bezwijmen": "bezwijm", "bezwijming": "bezwijm", "bf": "bf", "bfi": "bfi", "bfr": "bfr", "bh": "bh", "bhi": "bhi", "bhoe": "bhoe", "bhopal": "bhopal", "bhterheid": "bhterheid", "bhutan": "bhutan", "bi": "bi", "bibberend": "bibber", "bibelots": "bibelot", "bibliotheek": "bibliothek", "bibliothek": "bibliothek", "bibury": "bibury", "bic": "bic", "biceps": "bicep", "bicepsen": "biceps", "bid": "bid", "bidden": "bid", "biecht": "biecht", "biechten": "biecht", "bieden": "bied", "bieders": "bieder", "biedt": "biedt", "biefstuk": "biefstuk", "biefstukken": "biefstuk", "biekart": "biekart", "bielars": "bielar", "bier": "bier", "bierbrouwerij": "bierbrouwerij", "bierbrouwerijen": "bierbrouwerij", "bierkratten": "bierkrat", "biesbosch": "biesbosch", "bieschbos": "bieschbos", "biesen": "bies", "bieten": "biet", "bietenrooidemonstratie": "bietenrooidemonstratie", "bietenteler": "bietenteler", "bietenveld": "bietenveld", "bietenveredelingsbedrijf": "bietenveredelingsbedrijf", "biewenga": "biewenga", "biezen": "biez", "bifenthrin": "bifenthrin", "biffa": "biffa", "big": "big", "bigbag": "bigbag", "biggen": "bigg", "bij": "bij", "bijbaan": "bijban", "bijbehorend": "bijbehor", "bijbehorende": "bijbehor", "bijbel": "bijbel", "bijbelse": "bijbel", "bijdraagt": "bijdraagt", "bijdrage": "bijdrag", "bijdragen": "bijdrag", "bijdragenbesluit": "bijdragenbesluit", "bijdragenregeling": "bijdragenregel", "bijdrageregeling": "bijdrageregel", "bijdroegen": "bijdroeg", "bijeen": "bijen", "bijeenbrengen": "bijeenbreng", "bijeengebracht": "bijeengebracht", "bijeenkomen": "bijeenkom", "bijeenkomst": "bijeenkomst", "bijeenkomsten": "bijeenkomst", "bijelkaar": "bijelkar", "bijen": "bij", "bijenkorf": "bijenkorf", "bijgedragen": "bijgedrag", "bijgehouden": "bijgehoud", "bijgekomen": "bijgekom", "bijgelegd": "bijgelegd", "bijgelovig": "bijgelov", "bijgepast": "bijgepast", "bijgeplaatst": "bijgeplaatst", "bijgepompt": "bijgepompt", "bijgeschoold": "bijgeschoold", "bijgeschreven": "bijgeschrev", "bijgesleept": "bijgesleept", "bijgestaan": "bijgestan", "bijgesteld": "bijgesteld", "bijgestookt": "bijgestookt", "bijgestookte": "bijgestookt", "bijgevoerd": "bijgevoerd", "bijgewoond": "bijgewoond", "bijgroei": "bijgroei", "bijhouden": "bijhoud", "bijkleeft": "bijkleeft", "bijklussende": "bijkluss", "bijkomen": "bijkom", "bijkomend": "bijkom", "bijkomende": "bijkom", "bijlage": "bijlag", "bijlagen": "bijlag", "bijlagenboek": "bijlagenboek", "bijleggen": "bijlegg", "bijlegt": "bijlegt", "bijlmer": "bijlmer", "bijlmerdreef": "bijlmerdref", "bijlmermeer": "bijlmermer", "bijlslagen": "bijlslag", "bijmengen": "bijmeng", "bijmenging": "bijmeng", "bijmestmonster": "bijmestmonster", "bijna": "bijna", "bijnaam": "bijnam", "bijnamen": "bijnam", "bijou": "bijou", "bijouterieën": "bijouterieen", "bijprodukt": "bijprodukt", "bijprodukten": "bijprodukt", "bijscholing": "bijschol", "bijstaan": "bijstan", "bijstaat": "bijstat", "bijstand": "bijstand", "bijsteken": "bijstek", "bijstellen": "bijstell", "bijstelling": "bijstell", "bijstoken": "bijstok", "bijstook": "bijstok", "bijten": "bijt", "bijtende": "bijtend", "bijtijds": "bijtijd", "bijvangst": "bijvangst", "bijverdiensten": "bijverdienst", "bijvoorbeeld": "bijvoorbeeld", "bijvoporbeeld": "bijvoporbeeld", "bijvulde": "bijvuld", "bijwerken": "bijwerk", "bijziende": "bijziend", "bijzijn": "bijzijn", "bijzonder": "bijzonder", "bijzondere": "bijzonder", "bijzonderheid": "bijzonder", "bijzonders": "bijzonder", "bilateraal": "bilateral", "bilbao": "bilbao", "bildt": "bildt", "bilgewater": "bilgewater", "biljoen": "biljoen", "bill": "bill", "billen": "bill", "billijke": "billijk", "billiton": "billiton", "bilt": "bilt", "bilthoven": "bilthov", "bilthovense": "bilthoven", "biltse": "bilt", "bim": "bim", "bimz": "bimz", "binda": "binda", "binden": "bind", "bindend": "bindend", "bindende": "bindend", "bindingen": "binding", "bindmiddel": "bindmiddel", "bindmiddelen": "bindmiddel", "bindmiddelgehalte": "bindmiddelgehalt", "bindmiddelpercentage": "bindmiddelpercentag", "bindt": "bindt", "binnen": "binn", "binnenaarde": "binnenaard", "binnenafwerking": "binnenafwerk", "binnenbekken": "binnenbek", "binnenblad": "binnenblad", "binnenbrandje": "binnenbrandj", "binnendijks": "binnendijk", "binnendijkse": "binnendijk", "binnendringend": "binnendring", "binnengaan": "binnengan", "binnengaat": "binnengat", "binnengedrongen": "binnengedrong", "binnengehaald": "binnengehaald", "binnengekomen": "binnengekom", "binnengelokt": "binnengelokt", "binnengetroond": "binnengetroond", "binnengevaren": "binnengevar", "binnengevoerd": "binnengevoerd", "binnengezogen": "binnengezog", "binnengleed": "binnengled", "binnengrenzen": "binnengrenz", "binnenhuis": "binnenhuis", "binnenisolatie": "binnenisolatie", "binnenkant": "binnenkant", "binnenklimaat": "binnenklimat", "binnenkom": "binnenkom", "binnenkomen": "binnenkom", "binnenkomende": "binnenkom", "binnenkomst": "binnenkomst", "binnenkomt": "binnenkomt", "binnenkort": "binnenkort", "binnenkwam": "binnenkwam", "binnenkwamen": "binnenkwam", "binnenland": "binnenland", "binnenlands": "binnenland", "binnenlandse": "binnenland", "binnenleiden": "binnenleid", "binnenlucht": "binnenlucht", "binnenluchtkwaliteit": "binnenluchtkwaliteit", "binnenmeer": "binnenmer", "binnenmilieu": "binnenmilieu", "binnennacht": "binnennacht", "binnenplaatsen": "binnenplaats", "binnenschippers": "binnenschipper", "binnenshuis": "binnenshuis", "binnenskamers": "binnenskamer", "binnenspouwblad": "binnenspouwblad", "binnenstad": "binnenstad", "binnenste": "binnenst", "binnenstedelijke": "binnensted", "binnensteden": "binnensted", "binnenstromen": "binnenstrom", "binnentrad": "binnentrad", "binnentrap": "binnentrap", "binnentrapje": "binnentrapj", "binnenvaart": "binnenvaart", "binnenvaartschepen": "binnenvaartschep", "binnenvalt": "binnenvalt", "binnenverlichting": "binnenverlicht", "binnenvisserij": "binnenvisserij", "binnenvloot": "binnenvlot", "binnenvoeren": "binnenvoer", "binnenwateren": "binnenwater", "binnenwerk": "binnenwerk", "binnenzee": "binnenzee", "binnenzijde": "binnenzijd", "binnenzweven": "binnenzwev", "bintjes": "bintjes", "bio": "bio", "bioaccumelerend": "bioaccumeler", "bioaccumulerend": "bioaccumuler", "bioafbraak": "bioafbrak", "bioafbreekbare": "bioafbrek", "biobak": "biobak", "biobed": "biobed", "biobedreactor": "biobedreactor", "biobrandstof": "biobrandstof", "biobrandstoffen": "biobrandstoff", "biocarborat": "biocarborat", "biochemische": "biochemisch", "biociden": "biocid", "bioclear": "bioclear", "biocoat": "biocoat", "biodegradatie": "biodegradatie", "biodegradatietest": "biodegradatietest", "biodegradeerbaar": "biodegrader", "biodegradeerbare": "biodegrader", "biodiesel": "biodiesel", "biodiversiteit": "biodiversiteit", "biodiversiteitsforum": "biodiversiteitsforum", "biodiversiteitsverdrag": "biodiversiteitsverdrag", "biodiverstiteit": "biodiverstiteit", "bioenergy": "bioenergy", "biofarmaceutische": "biofarmaceutisch", "biofilm": "biofilm", "biofilmformatie": "biofilmformatie", "biofilter": "biofilter", "biofilterinstallatie": "biofilterinstallatie", "biofilters": "biofilter", "biofiltratie": "biofiltratie", "biofiltratiestap": "biofiltratiestap", "biofiltratietechnieken": "biofiltratietechniek", "biofuels": "biofuel", "biogas": "biogas", "bioindustrie": "bioindustrie", "biokatalytische": "biokatalytisch", "biologe": "biolog", "biologen": "biolog", "biologica": "biologica", "biologie": "biologie", "biologisch": "biologisch", "biologische": "biologisch", "bioloog": "biolog", "biomass": "biomas", "biomassa": "biomassa", "biomassaproducerende": "biomassaproducer", "biomassaproduktie": "biomassaproduktie", "biomassavergasser": "biomassavergasser", "biomassavergassing": "biomassavergass", "biomassavergassingssystemen": "biomassavergassingssystem", "biomassavergisting": "biomassavergist", "biomimetica": "biomimetica", "biomix": "biomix", "bion": "bion", "bionolle": "bionoll", "biopluimen": "biopluim", "bioquint": "bioquint", "bioreactor": "bioreactor", "bioreactoren": "bioreactor", "bioremediation": "bioremediation", "biorotor": "biorotor", "biorotoren": "biorotor", "biosaneren": "biosaner", "bioscoop": "bioscop", "biosfeer": "biosfer", "biosparging": "biosparg", "biostar": "biostar", "biotec": "biotec", "biotechfonds": "biotechfond", "biotechnical": "biotechnical", "biotechnolgie": "biotechnolgie", "biotechnologie": "biotechnologie", "biotechnologiebedrijf": "biotechnologiebedrijf", "biotechnologiebedrijven": "biotechnologiebedrijv", "biotechnologieconcern": "biotechnologieconcern", "biotechnologieprojecten": "biotechnologieproject", "biotechnologisch": "biotechnologisch", "biotechnologische": "biotechnologisch", "biotensiden": "biotensid", "biothane": "biothan", "biotoop": "biotop", "biotricklingfilter": "biotricklingfilter", "biotricklingfiltratie": "biotricklingfiltratie", "bioventilatie": "bioventilatie", "bioventing": "biovent", "biovergassers": "biovergasser", "biovergassing": "biovergass", "biovergassingsinstallaties": "biovergassingsinstallaties", "biowapens": "biowapen", "biowassers": "biowasser", "bioway": "bioway", "biowiel": "biowiel", "biowieltje": "biowieltj", "biowieltjes": "biowieltjes", "bipolaire": "bipolair", "bird": "bird", "birecek": "birecek", "birmingham": "birmingham", "birnie": "birnie", "bis": "bis", "bischoff": "bischoff", "bisfenol": "bisfenol", "bisschop": "bisschop", "bit": "bit", "bits": "bit", "bitse": "bit", "bitsende": "bitsend", "bitste": "bitst", "bitsten": "bitst", "bitter": "bitter", "bitterder": "bitterder", "bittere": "bitter", "bitterheden": "bitter", "bitterheid": "bitter", "bitterley": "bitterley", "bitumensoort": "bitumensoort", "bivakkeerde": "bivakkeerd", "biwater": "biwater", "bizarre": "bizarr", "bizonder": "bizonder", "bizondere": "bizonder", "bizonderheden": "bizonder", "bizonderheid": "bizonder", "bizonders": "bizonder", "bjerregaard": "bjerregaard", "bjorn": "bjorn", "bkn": "bkn", "bkr": "bkr", "bl": "bl", "blaadje": "blaadj", "blaam": "blam", "blaamloze": "blaamloz", "blaas": "blas", "blaasjesziekte": "blaasjesziekt", "blaasjesziektevirus": "blaasjesziektevirus", "blaaskanker": "blaaskanker", "blaasmiddel": "blaasmiddel", "blaassysteem": "blaassystem", "blaast": "blaast", "blaauwe": "blaauw", "black": "black", "blad": "blad", "bladen": "blad", "bladerde": "bladerd", "bladeren": "blader", "bladerende": "blader", "bladerenleven": "bladerenlev", "bladgewassen": "bladgewass", "bladgroen": "bladgroen", "bladgroente": "bladgroent", "bladhoekversnellingsmechanisme": "bladhoekversnellingsmechanism", "bladhoekverstellingen": "bladhoekverstell", "bladloze": "bladloz", "bladmonsters": "bladmonster", "bladschade": "bladschad", "bladzijden": "bladzijd", "blaeu": "blaeu", "blafte": "blaft", "blageert": "blageert", "blague": "blague", "blagueerde": "blagueerd", "blagueerden": "blagueerd", "blagueren": "blaguer", "blaguerend": "blaguer", "blaguerende": "blaguer", "blagueur": "blagueur", "blakende": "blakend", "blanc": "blanc", "blank": "blank", "blanke": "blank", "blankenstein": "blankenstein", "blanker": "blanker", "blankert": "blankert", "blankheid": "blankheid", "blankrozig": "blankroz", "blankte": "blankt", "blankten": "blankt", "blansch": "blansch", "blaren": "blar", "blâren": "blâren", "blauw": "blauw", "blauwde": "blauwd", "blauwe": "blauw", "blauwgraslanden": "blauwgrasland", "blauwgrijs": "blauwgrijs", "blauwig": "blauwig", "blauwige": "blauwig", "blauwiggeschoren": "blauwiggeschor", "blauwtjes": "blauwtjes", "blauwwitte": "blauwwit", "blauwzuur": "blauwzur", "blauwzuurgas": "blauwzuurgas", "blazen": "blaz", "bleaching": "bleaching", "bleef": "blef", "bléef": "blef", "bleek": "blek", "bléék": "blek", "bleekgele": "bleekgel", "bleekheid": "bleekheid", "bleekjes": "bleekjes", "bleekmiddelen": "bleekmiddel", "bleekproces": "bleekproces", "bleekte": "bleekt", "bleiswijk": "bleiswijk", "bleke": "blek", "bleken": "blek", "bleker": "bleker", "blekere": "bleker", "bleking": "bleking", "blerick": "blerick", "bles": "bles", "bleumink": "bleumink", "bleven": "blev", "blgg": "blgg", "blhb": "blhb", "blicher": "blicher", "blieft": "blieft", "blies": "blies", "blij": "blij", "blijde": "blijd", "blijdschap": "blijdschap", "blijf": "blijf", "blijft": "blijft", "blijk": "blijk", "blijkbaar": "blijkbar", "blijken": "blijk", "blijkt": "blijkt", "blijven": "blijv", "blijvend": "blijvend", "blijvende": "blijvend", "blijvers": "blijver", "blik": "blik", "blikje": "blikj", "blikken": "blik", "blikkende": "blikkend", "bliksem": "bliksem", "bliksembeveiliging": "bliksembeveil", "bliksemden": "bliksemd", "blikseminslag": "blikseminslag", "blikseminslagen": "blikseminslag", "bliksems": "bliksem", "bliksemschade": "bliksemschad", "bliksemsnel": "bliksemsnel", "blikte": "blikt", "blikten": "blikt", "blind": "blind", "blinde": "blind", "blinden": "blind", "blindheid": "blindheid", "blinken": "blink", "blinkende": "blinkend", "blix": "blix", "block": "block", "blocking": "blocking", "bloed": "bloed", "bloedkanker": "bloedkanker", "bloedmeel": "bloedmel", "bloedomwenteling": "bloedomwentel", "bloedonderzoek": "bloedonderzoek", "bloedrood": "bloedrod", "bloedtest": "bloedtest", "bloedverwante": "bloedverwant", "bloedverwanten": "bloedverwant", "bloedvuur": "bloedvur", "bloei": "bloei", "bloeide": "bloeid", "bloeiden": "bloeid", "bloeien": "bloei", "bloeiend": "bloeiend", "bloeiende": "bloeiend", "bloeisnelheid": "bloeisnel", "bloem": "bloem", "bloemblaadjes": "bloemblaadjes", "bloembollen": "bloemboll", "bloembollencultuur": "bloembollencultur", "bloembollenonderzoek": "bloembollenonderzoek", "bloembollensector": "bloembollensector", "bloembollenteelt": "bloembollenteelt", "bloembollentelers": "bloembollenteler", "bloemdijk": "bloemdijk", "bloemdijken": "bloemdijk", "bloemen": "bloem", "bloemenbedrijf": "bloemenbedrijf", "bloemendaal": "bloemendal", "bloemenkwekerij": "bloemenkwekerij", "bloemenkwekers": "bloemenkweker", "bloemenmand": "bloemenmand", "bloemenmanden": "bloemenmand", "bloemensector": "bloemensector", "bloementeelt": "bloementeelt", "bloementeler": "bloementeler", "bloemenvaktentoonstelling": "bloemenvaktentoonstell", "bloemenveiling": "bloemenveil", "bloemisterij": "bloemisterij", "bloemkweker": "bloemkweker", "bloemlezing": "bloemlez", "bloesems": "bloesem", "blois": "blois", "blok": "blok", "blokkade": "blokkad", "blokkades": "blokkades", "blokkeerden": "blokkeerd", "blokkeert": "blokkeert", "blokken": "blok", "blokkenvuur": "blokkenvur", "blokkeren": "blokker", "blokverwarming": "blokverwarm", "blom": "blom", "blomsma": "blomsma", "blond": "blond", "blonde": "blond", "blondjes": "blondjes", "blonk": "blonk", "blonken": "blonk", "bloosde": "bloosd", "bloosden": "bloosd", "bloot": "blot", "blootgelegd": "blootgelegd", "blootgesteld": "blootgesteld", "blootlegt": "blootlegt", "blootstaan": "blootstan", "blootstelling": "blootstell", "blootstellingsniveaus": "blootstellingsniveaus", "blootstellingsnormen": "blootstellingsnorm", "blootstellingswegen": "blootstellingsweg", "blos": "blos", "blosjes": "blosjes", "blote": "blot", "blouse": "blous", "blouses": "blouses", "blousetjes": "blousetjes", "blow": "blow", "blozen": "bloz", "blubberende": "blubber", "blunder": "blunder", "blusinstallaties": "blusinstallaties", "blust": "blust", "bluswater": "bluswater", "blyth": "blyth", "blz": "blz", "bmd": "bmd", "bmi": "bmi", "bmni": "bmni", "bmp": "bmp", "bmro": "bmro", "bms": "bms", "bmw": "bmw", "bna": "bna", "bnmi": "bnmi", "bnp": "bnp", "boa": "boa", "board": "board", "bob": "bob", "bobema": "bobema", "bochel": "bochel", "bocht": "bocht", "bochum": "bochum", "bod": "bod", "bode": "bod", "bodegraven": "bodegrav", "bodem": "bodem", "bodemafdichting": "bodemafdicht", "bodemafdichtings": "bodemafdicht", "bodemanalyse": "bodemanalys", "bodemas": "bodemas", "bodembacteriën": "bodembacterien", "bodembeheer": "bodembeher", "bodembeleid": "bodembeleid", "bodembeschermende": "bodembescherm", "bodembescherming": "bodembescherm", "bodembeschermingsgebied": "bodembeschermingsgebied", "bodembeschermingsgebieden": "bodembeschermingsgebied", "bodembeschermingsinstallaties": "bodembeschermingsinstallaties", "bodemcafé": "bodemcaf", "bodemdaling": "bodemdal", "bodemdalingscommissie": "bodemdalingscommissie", "bodemerosie": "bodemerosie", "bodemgebied": "bodemgebied", "bodemgegevens": "bodemgegeven", "bodemherstel": "bodemherstel", "bodeminformatiesystemen": "bodeminformatiesystem", "bodemkunde": "bodemkund", "bodemkwaliteit": "bodemkwaliteit", "bodemleven": "bodemlev", "bodemlucht": "bodemlucht", "bodemluchtextracties": "bodemluchtextracties", "bodemluchtextractiesysteem": "bodemluchtextractiesystem", "bodemmilieueisen": "bodemmilieueis", "bodemmonsters": "bodemmonster", "bodemonderzoek": "bodemonderzoek", "bodemonderzoeken": "bodemonderzoek", "bodemonderzoekmethodieken": "bodemonderzoekmethodiek", "bodemonderzoeksmarkt": "bodemonderzoeksmarkt", "bodemonderzoeksmethoden": "bodemonderzoeksmethod", "bodemonderzoeksprotocol": "bodemonderzoeksprotocol", "bodempassage": "bodempassag", "bodemprocedure": "bodemprocedur", "bodemreiniging": "bodemrein", "bodemreinigingsprocessen": "bodemreinigingsprocess", "bodemreinigingsprojecten": "bodemreinigingsproject", "bodems": "bodem", "bodemsanering": "bodemsaner", "bodemsaneringen": "bodemsaner", "bodemsaneringinstallaties": "bodemsaneringinstallaties", "bodemsanerings": "bodemsaner", "bodemsaneringsbedrijf": "bodemsaneringsbedrijf", "bodemsaneringsbeleid": "bodemsaneringsbeleid", "bodemsaneringscongres": "bodemsaneringscongres", "bodemsaneringsdecreet": "bodemsaneringsdecret", "bodemsaneringsmarkt": "bodemsaneringsmarkt", "bodemsaneringsoperatie": "bodemsaneringsoperatie", "bodemsaneringsparagraaf": "bodemsaneringsparagraf", "bodemsaneringsprogramma": "bodemsaneringsprogramma", "bodemsaneringsproject": "bodemsaneringsproject", "bodemsaneringsprojecten": "bodemsaneringsproject", "bodemsaneringstechnieken": "bodemsaneringstechniek", "bodemschade": "bodemschad", "bodemsituatie": "bodemsituatie", "bodemspecie": "bodemspecie", "bodemstructuur": "bodemstructur", "bodemtoets": "bodemtoet", "bodemverbeteraar": "bodemverbeterar", "bodemverontreiniging": "bodemverontrein", "bodemverontreinigingen": "bodemverontrein", "bodemverontreinigingsbeleid": "bodemverontreinigingsbeleid", "bodemverontreinigingsonderzoek": "bodemverontreinigingsonderzoek", "bodemvervuiling": "bodemvervuil", "bodemvervuilingslocaties": "bodemvervuilingslocaties", "bodemvisserij": "bodemvisserij", "bodemvruchtbaarheid": "bodemvrucht", "bodemvruchtbaarheidsonderzoek": "bodemvruchtbaarheidsonderzoek", "bodemzaken": "bodemzak", "bodemziekten": "bodemziekt", "bodemzuivering": "bodemzuiver", "boden": "bod", "bodewes": "bodewes", "body": "body", "bodybuilders": "bodybuilder", "boeang": "boeang", "boeboer": "boeboer", "boecker": "boecker", "boedel": "boedel", "boedelkrediet": "boedelkrediet", "boef": "boef", "boehringer": "boehringer", "boeien": "boei", "boeiend": "boeiend", "boeit": "boeit", "boek": "boek", "boeke": "boek", "boekelermeer": "boekelermer", "boeken": "boek", "boekenkast": "boekenkast", "boekenkasten": "boekenkast", "boekenstudie": "boekenstudie", "boekentitels": "boekentitel", "boekerij": "boekerij", "boekhandel": "boekhandel", "boekhouding": "boekhoud", "boekhoudingen": "boekhoud", "boekingen": "boeking", "boekjaar": "boekjar", "boekje": "boekj", "boekjes": "boekjes", "boekt": "boekt", "boekte": "boekt", "boekvorm": "boekvorm", "boekwaarde": "boekwaard", "boel": "boel", "boels": "boel", "boenderbos": "boenderbos", "boeng": "boeng", "boenink": "boenink", "boer": "boer", "boèr": "boèr", "boerderij": "boerderij", "boerderijen": "boerderij", "boerdonk": "boerdonk", "boeren": "boer", "boerenactie": "boerenactie", "boerenactiecomité": "boerenactiecomit", "boerenactiegroep": "boerenactiegroep", "boerenactieleider": "boerenactieleider", "boerenacties": "boerenacties", "boerenbedrijf": "boerenbedrijf", "boerenbedrijven": "boerenbedrijv", "boerenbelangenorganisatie": "boerenbelangenorganisatie", "boerenbeweging": "boerenbeweg", "boerenbond": "boerenbond", "boerenfederatie": "boerenfederatie", "boerenhoed": "boerenhoed", "boerenkinkel": "boerenkinkel", "boerenkinkels": "boerenkinkel", "boerenkool": "boerenkol", "boerenleider": "boerenleider", "boerenleiders": "boerenleider", "boerenmarkten": "boerenmarkt", "boerenorganisatie": "boerenorganisatie", "boerenorganisaties": "boerenorganisaties", "boerenprotest": "boerenprotest", "boerenprotestactie": "boerenprotestactie", "boerenschuren": "boerenschur", "boerensyndicaat": "boerensyndicat", "boerenvoorman": "boerenvoorman", "boerenzwaluw": "boerenzwaluw", "boerin": "boerin", "boerinnen": "boerinn", "boers": "boer", "boertien": "boertien", "boete": "boet", "boeten": "boet", "boetes": "boetes", "boezelaartje": "boezelaartj", "boezem": "boezem", "boezeman": "boezeman", "boezemwateren": "boezemwater", "bogaerds": "bogaerd", "bogor": "bogor", "boheemen": "bohem", "bohémien": "bohemien", "bohinen": "bohin", "böhlen": "bohl", "boiler": "boiler", "boilers": "boiler", "bok": "bok", "bokkig": "bokkig", "bokwielen": "bokwiel", "bolero": "bolero", "bolger": "bolger", "bölger": "bolger", "bolkenstein": "bolkenstein", "bollegraaf": "bollegraf", "bollen": "boll", "bollenareaal": "bollenareaal", "bollencomplex": "bollencomplex", "bollengebieden": "bollengebied", "bollengrond": "bollengrond", "bollengronden": "bollengrond", "bollenland": "bollenland", "bollensector": "bollensector", "bollenstreek": "bollenstrek", "bollenteelt": "bollenteelt", "bollenvelden": "bollenveld", "bollenzand": "bollenzand", "bolletjes": "bolletjes", "bollwerk": "bollwerk", "bolsover": "bolsover", "bom": "bom", "bomaanslag": "bomaanslag", "bomberend": "bomber", "bomelijnen": "bomelijn", "bomen": "bom", "bomenbank": "bomenbank", "bomenlijn": "bomenlijn", "bomennacht": "bomennacht", "bommel": "bommel", "bommelerwaard": "bommelerwaard", "bommels": "bommel", "bommen": "bomm", "bommenwerper": "bommenwerper", "bon": "bon", "bonbon": "bonbon", "bonbondoos": "bonbondos", "bonbonplaatje": "bonbonplaatj", "bond": "bond", "bonden": "bond", "bondskanselier": "bondskanselier", "bondsministerie": "bondsministerie", "bondsregering": "bondsreger", "bondsrepubliek": "bondsrepubliek", "bondt": "bondt", "bongerds": "bongerd", "bonino": "bonino", "bonjour": "bonjour", "bonn": "bonn", "bonne": "bonn", "bonnen": "bonn", "bonny": "bonny", "bonsde": "bonsd", "bonsden": "bonsd", "bont": "bont", "bonte": "bont", "bonten": "bont", "bontte": "bont", "bontvervige": "bontverv", "bonus": "bonus", "bonzende": "bonzend", "bood": "bod", "boodschap": "boodschap", "boodschappen": "boodschapp", "boog": "bog", "boograam": "boogram", "book": "bok", "boom": "bom", "boomgaard": "boomgaard", "boomkorkotten": "boomkorkot", "boomkorkotter": "boomkorkotter", "boomkorkotters": "boomkorkotter", "boomkorkotvisserij": "boomkorkotvisserij", "boomkorvissen": "boomkorviss", "boomkronen": "boomkron", "boomkweek": "boomkwek", "boomkwekerij": "boomkwekerij", "boomkwekerijen": "boomkwekerij", "boomkwekers": "boomkweker", "boomscheuten": "boomscheut", "boomschors": "boomschor", "boomse": "bom", "boomsoorten": "boomsoort", "boomstammen": "boomstamm", "boomstrips": "boomstrip", "boomstronken": "boomstronk", "boomteelt": "boomteelt", "boomwortels": "boomwortel", "boomziekte": "boomziekt", "booneman": "booneman", "boor": "bor", "boorbedrijven": "boorbedrijv", "boord": "boord", "boordcomputer": "boordcomputer", "boordcomputers": "boordcomputer", "boorde": "boord", "boordje": "boordj", "booreiland": "booreiland", "boorfosfaat": "boorfosfat", "boorgat": "boorgat", "boorgegevens": "boorgegeven", "boorgruis": "boorgruis", "boormachine": "boormachin", "boorpijp": "boorpijp", "boorplatform": "boorplatform", "boorplatforms": "boorplatform", "boorputten": "boorput", "boorschachten": "boorschacht", "boorschip": "boorschip", "boorspoeling": "boorspoel", "boorspoelingen": "boorspoel", "boort": "boort", "boortechniek": "boortechniek", "boortechnieken": "boortechniek", "boortoren": "boortor", "boortunnel": "boortunnel", "boorvloeistof": "boorvloeistof", "boorzout": "boorzout", "boos": "bos", "boosaardige": "boosaard", "boosdoener": "boosdoener", "boosdoeners": "boosdoener", "boosheid": "boosheid", "boot": "bot", "bootsen": "boots", "boraatglas": "boraatglas", "boraatmengsel": "boraatmengsel", "borcea": "borcea", "borculo": "borculo", "bord": "bord", "bordeaux": "bordeaux", "borden": "bord", "bordentrawlers": "bordentrawler", "border": "border", "bordpapier": "bordpapier", "borduurde": "borduurd", "boren": "bor", "borg": "borg", "borgen": "borg", "borgharen": "borghar", "borging": "borging", "boring": "boring", "boringen": "boring", "boris": "boris", "born": "born", "borneo": "borneo", "borneokade": "borneokad", "borrel": "borrel", "borrels": "borrel", "borsele": "borsel", "borssele": "borssel", "borst": "borst", "borstel": "borstel", "borstelen": "borstel", "borstelmechanisme": "borstelmechanism", "borstels": "borstel", "borstkanker": "borstkanker", "borstvoeding": "borstvoed", "bos": "bos", "bosaanleg": "bosaanleg", "bosaantasting": "bosaantast", "bosarsenaal": "bosarsenal", "bosbeheer": "bosbeher", "bosbeheerders": "bosbeheerder", "bosbeleid": "bosbeleid", "bosbies": "bosbies", "bosbouw": "bosbouw", "bosbouwdiensten": "bosbouwdienst", "bosbouwkundige": "bosbouwkund", "bosbouwondernemingen": "bosbouwondernem", "bosbrand": "bosbrand", "bosbranden": "bosbrand", "bosca": "bosca", "bosch": "bosch", "bösendorferstrasse": "bosendorferstras", "bosgebied": "bosgebied", "bosgebieden": "bosgebied", "bosgrond": "bosgrond", "bosjes": "bosjes", "boskalis": "boskalis", "boskoop": "boskop", "boslandschap": "boslandschap", "bosnegers": "bosneger", "boso": "boso", "bosolifanten": "bosolifant", "bosonderzoek": "bosonderzoek", "bosoppervlakte": "bosoppervlakt", "bosrijke": "bosrijk", "bosschages": "bosschages", "bosschap": "bosschap", "bossche": "bossch", "bosscher": "bosscher", "bossen": "boss", "bossige": "bossig", "bossy": "bossy", "boston": "boston", "bostypen": "bostyp", "bosvariant": "bosvariant", "boswachter": "boswachter", "boswet": "boswet", "bot": "bot", "botanische": "botanisch", "boten": "bot", "boter": "boter", "botergeel": "botergel", "boterham": "boterham", "boterhammen": "boterhamm", "boterhammetje": "boterhammetj", "boterhammetjes": "boterhammetjes", "botert": "botert", "botlek": "botlek", "botlekgebied": "botlekgebied", "botlekregio": "botlekregio", "botlekspoortunnel": "botlekspoortunnel", "botsen": "bots", "botsing": "botsing", "botst": "botst", "botsten": "botst", "böttcher": "bottcher", "bottelen": "bottel", "bottines": "bottines", "bottrop": "bottrop", "botulisme": "botulism", "botweg": "botweg", "boud": "boud", "boudeerde": "boudeerd", "bouderen": "bouder", "bouderie": "bouderie", "boudewijnstichting": "boudewijnsticht", "boudoir": "boudoir", "bougie": "bougie", "bouillon": "bouillon", "bouman": "bouman", "bouquetten": "bouquet", "bourgeois": "bourgeois", "bourgois": "bourgois", "bourgondische": "bourgondisch", "boutades": "boutades", "bouteiller": "bouteiller", "bouten": "bout", "bouterse": "bouter", "bouw": "bouw", "bouwactiviteit": "bouwactiviteit", "bouwactiviteiten": "bouwactiviteit", "bouwadviesbureau": "bouwadviesbureau", "bouwafval": "bouwafval", "bouwbedrijf": "bouwbedrijf", "bouwbedrijfsleven": "bouwbedrijfslev", "bouwbedrijven": "bouwbedrijv", "bouwbeleid": "bouwbeleid", "bouwbesluit": "bouwbesluit", "bouwbeurs": "bouwbeur", "bouwbiologie": "bouwbiologie", "bouwblokken": "bouwblok", "bouwbond": "bouwbond", "bouwbonden": "bouwbond", "bouwcentrum": "bouwcentrum", "bouwchemie": "bouwchemie", "bouwconcern": "bouwconcern", "bouwconcerns": "bouwconcern", "bouwconcessies": "bouwconcessies", "bouwconstructies": "bouwconstructies", "bouwcontracten": "bouwcontract", "bouwde": "bouwd", "bouwdelen": "bouwdel", "bouwden": "bouwd", "bouwdichtheden": "bouwdicht", "bouwdichtheid": "bouwdicht", "bouwdienst": "bouwdienst", "bouwelementen": "bouwelement", "bouwen": "bouw", "bouwende": "bouwend", "bouwenginering": "bouwenginer", "bouwer": "bouwer", "bouwers": "bouwer", "bouwfase": "bouwfas", "bouwfolie": "bouwfolie", "bouwfonds": "bouwfond", "bouwfysisch": "bouwfysisch", "bouwfysische": "bouwfysisch", "bouwgolf": "bouwgolf", "bouwgroep": "bouwgroep", "bouwgroepen": "bouwgroep", "bouwgrond": "bouwgrond", "bouwindustrie": "bouwindustrie", "bouwinformatie": "bouwinformatie", "bouwkosten": "bouwkost", "bouwkring": "bouwkring", "bouwkunde": "bouwkund", "bouwkundig": "bouwkund", "bouwkundige": "bouwkund", "bouwkwaliteit": "bouwkwaliteit", "bouwland": "bouwland", "bouwlocatie": "bouwlocatie", "bouwlocaties": "bouwlocaties", "bouwlokaties": "bouwlokaties", "bouwman": "bouwman", "bouwmarkt": "bouwmarkt", "bouwmateriaal": "bouwmateriaal", "bouwmateriaalkosten": "bouwmateriaalkost", "bouwmaterialen": "bouwmaterial", "bouwmaterialenleveranciers": "bouwmaterialenleverancier", "bouwmaterieel": "bouwmaterieel", "bouwmecc": "bouwmecc", "bouwmethode": "bouwmethod", "bouwministersconferentie": "bouwministersconferentie", "bouwmogelijkheden": "bouwmog", "bouwnijverheid": "bouwnijver", "bouwondernemers": "bouwondernemer", "bouwonderneming": "bouwondernem", "bouwontwikkeling": "bouwontwikkel", "bouwopdrachten": "bouwopdracht", "bouwpartners": "bouwpartner", "bouwplaats": "bouwplat", "bouwplaatsen": "bouwplaats", "bouwplan": "bouwplan", "bouwplannen": "bouwplann", "bouwproces": "bouwproces", "bouwprodukten": "bouwprodukt", "bouwproduktie": "bouwproduktie", "bouwprognoses": "bouwprognoses", "bouwprogramma": "bouwprogramma", "bouwproject": "bouwproject", "bouwprojecten": "bouwproject", "bouwput": "bouwput", "bouwrai": "bouwrai", "bouwrecht": "bouwrecht", "bouwrecyclingprijs": "bouwrecyclingprijs", "bouwresearch": "bouwresearch", "bouwrisico": "bouwrisico", "bouwsector": "bouwsector", "bouwsom": "bouwsom", "bouwsteen": "bouwsten", "bouwstenen": "bouwsten", "bouwstof": "bouwstof", "bouwstoffen": "bouwstoff", "bouwstoffenbesluit": "bouwstoffenbesluit", "bouwstop": "bouwstop", "bouwsysteem": "bouwsystem", "bouwt": "bouwt", "bouwtechniek": "bouwtechniek", "bouwtechnische": "bouwtechnisch", "bouwtekeningen": "bouwteken", "bouwterrein": "bouwterrein", "bouwterreinen": "bouwterrein", "bouwtijd": "bouwtijd", "bouwvergunning": "bouwvergunn", "bouwvergunningen": "bouwvergunn", "bouwverordening": "bouwverorden", "bouwverpakkingen": "bouwverpak", "bouwvoorschriften": "bouwvoorschrift", "bouwwereld": "bouwwereld", "bouwwerk": "bouwwerk", "bouwwerken": "bouwwerk", "bouwwerkzaamheden": "bouwwerkzam", "bouwwijze": "bouwwijz", "bouwwijzen": "bouwwijz", "bouwzaken": "bouwzak", "bov": "bov", "bovag": "bovag", "bovagleden": "bovagled", "boval": "boval", "boven": "bov", "bovenaan": "bovenan", "bovenaf": "bovenaf", "bovenafdichting": "bovenafdicht", "bovenbandmagneet": "bovenbandmagnet", "bovenbandmagneten": "bovenbandmagnet", "bovenbouw": "bovenbouw", "bovendien": "bovendien", "bovendreef": "bovendref", "bovengenoemde": "bovengenoemd", "bovengrens": "bovengren", "bovengrenzen": "bovengrenz", "bovengrond": "bovengrond", "bovengronds": "bovengrond", "bovengrondse": "bovengrond", "bovenhuis": "bovenhuis", "bovenin": "bovenin", "bovenkant": "bovenkant", "bovenkerkerpolder": "bovenkerkerpolder", "bovenkwadrant": "bovenkwadrant", "bovenlaag": "bovenlag", "bovenleidingen": "bovenleid", "bovenliggende": "bovenligg", "bovenlijven": "bovenlijv", "bovenlip": "bovenlip", "bovenloopkranen": "bovenloopkran", "bovenmenselijk": "bovenmens", "bovenmenselijke": "bovenmens", "bovenop": "bovenop", "bovenregionale": "bovenregional", "bovenstaande": "bovenstaand", "bovenste": "bovenst", "bovenverdieping": "bovenverdiep", "bovenwereldlijk": "bovenwereld", "bovenwereldlijkheid": "bovenwereld", "bovenwindse": "bovenwind", "bovenzijde": "bovenzijd", "bovine": "bovin", "box": "box", "boxel": "boxel", "boxer": "boxer", "boxmeer": "boxmer", "boxtel": "boxtel", "boy": "boy", "boycot": "boycot", "boycotaanvoerder": "boycotaanvoerder", "boycotactie": "boycotactie", "boycotten": "boycot", "boycottende": "boycot", "boze": "boz", "bp": "bp", "bpa": "bpa", "bpb": "bpb", "bpm": "bpm", "bpw": "bpw", "br": "br", "braaf": "braf", "braak": "brak", "braakgelegde": "braakgelegd", "braaklegging": "braaklegg", "braakliggende": "braakligg", "braakpercelen": "braakpercel", "brabant": "brabant", "brabanthallen": "brabanthall", "brabants": "brabant", "brabantse": "brabant", "brachespecifiek": "brachespecifiek", "bracht": "bracht", "brachten": "bracht", "bradford": "bradford", "braer": "braer", "brainliner": "brainliner", "brak": "brak", "braken": "brak", "bralden": "brald", "bram": "bram", "bramen": "bram", "branbantse": "branbant", "branche": "branch", "branchecentra": "branchecentra", "branchegenoot": "branchegenot", "branchegenoten": "branchegenot", "brancheorganisatie": "brancheorganisatie", "brancheorganisaties": "brancheorganisaties", "brancheproject": "brancheproject", "branches": "branches", "branchevereniging": "brancheveren", "brand": "brand", "brandbaar": "brandbar", "brandbare": "brandbar", "brandbestrijdingsmaterialen": "brandbestrijdingsmaterial", "brandde": "brand", "brandebourgs": "brandebourg", "branden": "brand", "brandenburg": "brandenburg", "brandend": "brandend", "brandende": "brandend", "brander": "brander", "branderkop": "branderkop", "branders": "brander", "brandgangen": "brandgang", "brandgevaar": "brandgevar", "brandgevaarlijk": "brandgevar", "brandhaarden": "brandhaard", "brandhout": "brandhout", "brandkraan": "brandkran", "brandpaden": "brandpad", "brandpunt": "brandpunt", "brandschade": "brandschad", "brandstof": "brandstof", "brandstofaccijnzen": "brandstofaccijnz", "brandstofbelasting": "brandstofbelast", "brandstofbesparing": "brandstofbespar", "brandstofcel": "brandstofcel", "brandstofcellen": "brandstofcell", "brandstofdepots": "brandstofdepot", "brandstofefficiëntienormen": "brandstofefficientienorm", "brandstoffen": "brandstoff", "brandstoffenmarkt": "brandstoffenmarkt", "brandstofffen": "brandstofff", "brandstofgebruik": "brandstofgebruik", "brandstofheffing": "brandstofheff", "brandstofinkoop": "brandstofinkop", "brandstofinzet": "brandstofinzet", "brandstofkorrels": "brandstofkorrel", "brandstofkosten": "brandstofkost", "brandstofnormen": "brandstofnorm", "brandstofolie": "brandstofolie", "brandstofrendement": "brandstofrendement", "brandstofstaven": "brandstofstav", "brandstoftanks": "brandstoftank", "brandstoftechnologieën": "brandstoftechnologieen", "brandstoftekort": "brandstoftekort", "brandstofverbruik": "brandstofverbruik", "brandstofverbruiken": "brandstofverbruik", "brandstofvoorziening": "brandstofvoorzien", "brandt": "brandt", "branduren": "brandur", "brandveilige": "brandveil", "brandveiligheidskasten": "brandveiligheidskast", "brandvertager": "brandvertager", "brandverzekeringen": "brandverzeker", "brandweer": "brandwer", "brandweerwagens": "brandweerwagen", "brandwerend": "brandwer", "brandwerende": "brandwer", "brandwerendheid": "brandwer", "brandwonden": "brandwond", "brasem": "brasem", "braunschweig": "braunschweig", "brauwen": "brauw", "brauws": "brauw", "brave": "brav", "braveren": "braver", "bravo": "bravo", "braziliaanse": "braziliaan", "brazilië": "brazilie", "brbs": "brbs", "brd": "brd", "brear": "brear", "breda": "breda", "bredaseweg": "bredaseweg", "brede": "bred", "breder": "breder", "bredere": "breder", "brederostraat": "brederostrat", "breed": "bred", "breedhalzige": "breedhalz", "breeds": "bred", "breedte": "breedt", "breedtematen": "breedtemat", "breedten": "breedt", "breedvoerig": "breedvoer", "breedwerkende": "breedwerk", "breek": "brek", "breekt": "breekt", "breèkt": "breèkt", "breet": "bret", "breggen": "bregg", "breidde": "breid", "breidelen": "breidel", "breiden": "breid", "breidt": "breidt", "brein": "brein", "breiwerk": "breiwerk", "breken": "brek", "brekende": "brekend", "breker": "breker", "brekers": "breker", "brekerzand": "brekerzand", "breking": "breking", "bremen": "brem", "brend": "brend", "breng": "breng", "brengen": "breng", "brengend": "brengend", "brengende": "brengend", "brengsysteem": "brengsystem", "brengsystemen": "brengsystem", "brengt": "brengt", "brenn": "brenn", "brennbare": "brennbar", "brennstoffzelle": "brennstoffzell", "brent": "brent", "brentspar": "brentspar", "bretagne": "bretagn", "bretonse": "breton", "breuken": "breuk", "breydel": "breydel", "brezet": "brezet", "bricide": "bricid", "bridge": "bridg", "brie": "brie", "brief": "brief", "briefje": "briefj", "briefjes": "briefjes", "briefkaart": "briefkaart", "briel": "briel", "brielle": "briell", "bries": "bries", "briesende": "briesend", "brieste": "briest", "brieven": "briev", "brievenactie": "brievenactie", "brievenbesteller": "brievenbesteller", "brievenbus": "brievenbus", "brievencampagne": "brievencampagn", "brievenpapier": "brievenpapier", "brigade": "brigad", "brij": "brij", "briketten": "briket", "brillant": "brillant", "brillanten": "brillant", "brindisi": "brindisi", "brink": "brink", "brinkman": "brinkman", "brisée": "brisee", "bristol": "bristol", "brit": "brit", "brite": "brit", "britisch": "britisch", "british": "british", "brits": "brit", "britse": "brit", "brittannia": "brittannia", "brittannië": "brittannie", "britten": "brit", "brive": "briv", "brl": "brl", "brno": "brno", "broadcast": "broadcast", "brocades": "brocades", "broché": "broch", "brochure": "brochur", "brochures": "brochures", "brocker": "brocker", "broeder": "broeder", "broederij": "broederij", "broederlijk": "broeder", "broederlijke": "broeder", "broederlijkheid": "broeder", "broeders": "broeder", "broedparen": "broedpar", "broedperiode": "broedperiod", "broedpopulatie": "broedpopulatie", "broedprogramma": "broedprogramma", "broedseizoen": "broedseizoen", "broedsels": "broedsel", "broedvogel": "broedvogel", "broedvogels": "broedvogel", "broeide": "broeid", "broeiende": "broeiend", "broeikas": "broeikas", "broeikaseffect": "broeikaseffect", "broeikasgas": "broeikasgas", "broeikasgassen": "broeikasgass", "broeikasprobleem": "broeikasproblem", "broeikastheorie": "broeikastheorie", "broek": "broek", "broekhuis": "broekhuis", "broekluiers": "broekluier", "broekpolder": "broekpolder", "broer": "broer", "broerius": "broerius", "broers": "broer", "broertje": "broertj", "broertjes": "broertjes", "brok": "brok", "brokaat": "brokat", "broken": "brok", "brokkelde": "brokkeld", "brokkelden": "brokkeld", "brokkelen": "brokkel", "brokkelt": "brokkelt", "brokx": "brokx", "brom": "brom", "bromaat": "bromat", "bromaatnorm": "bromaatnorm", "bromaatretentie": "bromaatretentie", "bromaatvorming": "bromaatvorm", "bromde": "bromd", "bromfietsen": "bromfiets", "bromide": "bromid", "brommen": "bromm", "brommende": "brommend", "brommig": "brommig", "bromstem": "bromstem", "bromt": "bromt", "bromtoon": "bromton", "bromvlieg": "bromvlieg", "bron": "bron", "bronaanpak": "bronaanpak", "bronbeheersing": "bronbeheers", "bronbemaling": "bronbemal", "brongebied": "brongebied", "bronnen": "bronn", "bronnenmilieu": "bronnenmilieu", "bronnenonderzoek": "bronnenonderzoek", "bronwater": "bronwater", "bronzen": "bronz", "brood": "brod", "broodje": "broodj", "broodjes": "broodjes", "broom": "brom", "broomverbindingen": "broomverbind", "broos": "bros", "brosse": "bros", "brouille": "brouill", "brouilleren": "brouiller", "brouillerie": "brouillerie", "brouwde": "brouwd", "brouwende": "brouwend", "brouwer": "brouwer", "brouwerij": "brouwerij", "brouwerijen": "brouwerij", "browder": "browder", "brown": "brown", "browning": "browning", "broze": "broz", "brp": "brp", "brrrussel": "brrrussel", "brück": "bruck", "brug": "brug", "brugge": "brugg", "bruggeman": "bruggeman", "bruggen": "brugg", "brugman": "brugman", "brugvorming": "brugvorm", "brui": "brui", "bruid": "bruid", "bruidje": "bruidj", "bruidsjapon": "bruidsjapon", "bruidsluierstruiken": "bruidsluierstruik", "bruidspaar": "bruidspar", "bruijne": "bruijn", "bruikbaar": "bruikbar", "bruikbaarder": "bruikbaarder", "bruikbaarheid": "bruikbar", "bruikbare": "bruikbar", "bruiloft": "bruiloft", "bruiloften": "bruiloft", "bruiloftsdagen": "bruiloftsdag", "bruiloftspartij": "bruiloftspartij", "bruiloftspartijen": "bruiloftspartij", "bruiloftsvoorstellingen": "bruiloftsvoorstell", "bruin": "bruin", "bruinblonde": "bruinblond", "bruinde": "bruind", "bruine": "bruin", "bruinen": "bruin", "bruinende": "bruinend", "bruingoed": "bruingoed", "bruingoedsector": "bruingoedsector", "bruingouden": "bruingoud", "bruinhof": "bruinhof", "bruiningen": "bruining", "bruiningsapparatuur": "bruiningsapparatur", "bruinkool": "bruinkol", "bruinkoolcentrales": "bruinkoolcentrales", "bruinkoolgebied": "bruinkoolgebied", "bruinkoolmijn": "bruinkoolmijn", "bruinkoolwinning": "bruinkoolwinn", "bruinrot": "bruinrot", "bruinrotuitbraak": "bruinrotuitbrak", "bruinrotvrije": "bruinrotvrij", "bruinsteen": "bruinsten", "bruinvis": "bruinvis", "bruinvissen": "bruinviss", "bruis": "bruis", "bruisende": "bruisend", "bruiste": "bruist", "brullen": "brull", "brundlandt": "brundlandt", "brunssum": "brunssum", "brusk": "brusk", "bruske": "brusk", "bruskeerde": "bruskeerd", "bruskeren": "brusker", "brussel": "brussel", "brusselse": "brussel", "brutaal": "brutal", "brutale": "brutal", "brutaliteit": "brutaliteit", "brute": "brut", "bruten": "brut", "brüter": "bruter", "bruto": "bruto", "bruusk": "bruusk", "bruut": "brut", "bruys": "bruy", "bs": "bs", "bsa": "bsa", "bsb": "bsb", "bse": "bse", "bsi": "bsi", "bsl": "bsl", "bsn": "bsn", "bst": "bst", "bt": "bt", "btg": "btg", "btw": "btw", "buana": "buana", "bubbling": "bubbling", "buck": "buck", "bucks": "buck", "budel": "budel", "budelco": "budelco", "buderus": "buderus", "budget": "budget", "budgetbeperkingen": "budgetbeperk", "budgetoverschrijding": "budgetoverschrijd", "budgettair": "budgettair", "budgetten": "budget", "buenos": "buenos", "bueren": "buer", "buffalo": "buffalo", "buffer": "buffer", "buffers": "buffer", "bufferstroken": "bufferstrok", "buffertanks": "buffertank", "buffervat": "buffervat", "buffervoorraden": "buffervoorrad", "bufferzone": "bufferzon", "buffet": "buffet", "buggenum": "buggenum", "bugm": "bugm", "bührmann": "buhrmann", "bui": "bui", "buien": "bui", "buig": "buig", "buigen": "buig", "buigende": "buigend", "buiging": "buiging", "buigingen": "buiging", "buigsterkte": "buigsterkt", "buigt": "buigt", "buigzaam": "buigzam", "buik": "buik", "buiken": "buik", "buikholte": "buikholt", "building": "building", "buining": "buining", "buis": "buis", "buisframe": "buisfram", "buisje": "buisj", "buisleiding": "buisleid", "buisleidingen": "buisleid", "buislengte": "buislengt", "buismateriaal": "buismateriaal", "buisreactor": "buisreactor", "buisstukken": "buisstuk", "buiswand": "buiswand", "buit": "buit", "buitelend": "buitel", "buiten": "buit", "buitenaf": "buitenaf", "buitenbak": "buitenbak", "buitenbeits": "buitenbeit", "buitendijks": "buitendijk", "buitendijkse": "buitendijk", "buitengaats": "buitengat", "buitengebied": "buitengebied", "buitengebieden": "buitengebied", "buitengebruikstelling": "buitengebruikstell", "buitengesloten": "buitengeslot", "buitengevelisolatie": "buitengevelisolatie", "buitengewone": "buitengewon", "buitengewoon": "buitengewon", "buitengewoons": "buitengewon", "buitenhof": "buitenhof", "buitenkamp": "buitenkamp", "buitenkansje": "buitenkansj", "buitenkant": "buitenkant", "buitenlaag": "buitenlag", "buitenland": "buitenland", "buitenlandbeleid": "buitenlandbeleid", "buitenlanders": "buitenlander", "buitenlands": "buitenland", "buitenlandse": "buitenland", "buitenlandtoets": "buitenlandtoet", "buitenleven": "buitenlev", "buitenlucht": "buitenlucht", "buitenluchtmetingen": "buitenluchtmet", "buitenmens": "buitenmen", "buitenomtrek": "buitenomtrek", "buitenruimte": "buitenruimt", "buitenshuis": "buitenshuis", "buitensporig": "buitenspor", "buitenste": "buitenst", "buitenveldert": "buitenveldert", "buitenveldertbaan": "buitenveldertban", "buitenverblijf": "buitenverblijf", "buitenverlichting": "buitenverlicht", "buitenwacht": "buitenwacht", "buitenwater": "buitenwater", "buitenweg": "buitenweg", "buitenwegen": "buitenweg", "buitenwereld": "buitenwereld", "buitenwerkingstelling": "buitenwerkingstell", "buitenwijken": "buitenwijk", "buitenzorg": "buitenzorg", "buizen": "buiz", "buizenfabriek": "buizenfabriek", "buizenlegbedrijven": "buizenlegbedrijv", "buizenleggers": "buizenlegger", "buizenstelsel": "buizenstelsel", "buizerd": "buizerd", "buizerds": "buizerd", "bukken": "buk", "bukte": "bukt", "bukten": "bukt", "bulder": "bulder", "bulderde": "bulderd", "bulderen": "bulder", "bulderende": "bulder", "bulderstem": "bulderstem", "bulgaarse": "bulgar", "bulgarije": "bulgarij", "bulk": "bulk", "bulkcarrier": "bulkcarrier", "bulkchemie": "bulkchemie", "bulkgoederen": "bulkgoeder", "bulkstortverpakkingen": "bulkstortverpak", "bulktanks": "bulktank", "bulky": "bulky", "bulletin": "bulletin", "bultruggen": "bultrugg", "bumax": "bumax", "buna": "buna", "bund": "bund", "bunded": "bunded", "bundel": "bundel", "bundelden": "bundeld", "bundelen": "bundel", "bundeling": "bundel", "bundelt": "bundelt", "bundesfinanzhof": "bundesfinanzhof", "bundesverbandes": "bundesverbandes", "bündis": "bundis", "bündnis": "bundnis", "bungalows": "bungalow", "bunkeren": "bunker", "bunkerschepen": "bunkerschep", "bunnik": "bunnik", "bunschoten": "bunschot", "bureau": "bureau", "bureaucratie": "bureaucratie", "bureaucratische": "bureaucratisch", "bureaufunctie": "bureaufunctie", "bureaus": "bureaus", "bureausoftware": "bureausoftwar", "bureaustoel": "bureaustoel", "bureaustoelen": "bureaustoel", "buren": "bur", "burg": "burg", "burgemeester": "burgemeester", "burgemeesterlijk": "burgemeester", "burgemeesters": "burgemeester", "burger": "burger", "burgerfamilie": "burgerfamilie", "bürgerinitiative": "burgerinitiativ", "burgerkleding": "burgerkled", "burgerlijk": "burger", "bùrgerlijk": "bùrgerlijk", "burgerlijke": "burger", "burgerlijks": "burger", "burgerluchtvaart": "burgerluchtvaart", "burgermannen": "burgermann", "burgeroorlog": "burgeroorlog", "burgers": "burger", "burgerschool": "burgerschol", "burgervliegtuigen": "burgervliegtu", "burgervluchten": "burgervlucht", "burgervoeten": "burgervoet", "burgervrouw": "burgervrouw", "burgerwindmolenpark": "burgerwindmolenpark", "burginvest": "burginvest", "bus": "bus", "busbaan": "busban", "busbanen": "busban", "busbord": "busbord", "busfabrikant": "busfabrikant", "bushalte": "bushalt", "bushehr": "bushehr", "business": "busines", "businessbos": "businessbos", "businesspraktijken": "businesspraktijk", "busje": "busj", "busjes": "busjes", "busondernemingen": "busondernem", "busprojecten": "busproject", "bussel": "bussel", "bussen": "buss", "bussiness": "bussines", "busstation": "busstation", "buste": "bust", "bustunnel": "bustunnel", "busvloot": "busvlot", "but": "but", "butaan": "butan", "butadieen": "butadieen", "butanol": "butanol", "butler": "butler", "butylfenol": "butylfenol", "butyltinverbindingen": "butyltinverbind", "buur": "bur", "buuren": "bur", "buurgebied": "buurgebied", "buurgeluiden": "buurgeluid", "buurgemeente": "buurgemeent", "buurgemeenten": "buurgemeent", "buurland": "buurland", "buurlanden": "buurland", "buurman": "buurman", "buurt": "buurt", "buurtbewoners": "buurtbewoner", "buurtbewoonster": "buurtbewoonster", "buurtcomitees": "buurtcomites", "buurten": "buurt", "buurtschap": "buurtschap", "buurtvervoer": "buurtvervoer", "bv": "bv", "bvnn": "bvnn", "bvqi": "bvqi", "bvr": "bvr", "bwt": "bwt", "by": "by", "bygholm": "bygholm", "bzw": "bzw", "c": "c", "ca": "ca", "cabine": "cabin", "cabines": "cabines", "cabochon": "cabochon", "cacaobonen": "cacaobon", "cacaobonendoppen": "cacaobonendopp", "cachemire": "cachemir", "cad": "cad", "cadarache": "cadarach", "caddet": "caddet", "cadeau": "cadeau", "cadeautje": "cadeautj", "cadeaux": "cadeaux", "cadillacs": "cadillac", "cadiz": "cadiz", "cadmium": "cadmium", "cadmiumbesluit": "cadmiumbesluit", "cadmiumgehalte": "cadmiumgehalt", "cadmiumhoudend": "cadmiumhoud", "cadmiumhoudende": "cadmiumhoud", "cadmiumstof": "cadmiumstof", "cadmiumverbindingen": "cadmiumverbind", "cadmiumvrije": "cadmiumvrij", "caep": "caep", "caepi": "caepi", "café": "caf", "cafés": "cafes", "cafetaria": "cafetaria", "cairo": "cairo", "caisson": "caisson", "cake": "cak", "calamiteit": "calamiteit", "calamiteiten": "calamiteit", "caland": "caland", "calcium": "calcium", "calciumcarbonaat": "calciumcarbonat", "calciumchloride": "calciumchlorid", "calciumcyanide": "calciumcyanid", "calciumsulfaat": "calciumsulfat", "calciumzout": "calciumzout", "calculatiemethode": "calculatiemethod", "calder": "calder", "calgene": "calg", "calibratiemogelijkheid": "calibratiemog", "california": "california", "californië": "californie", "californische": "californisch", "callantsoog": "callantsog", "calorisch": "calorisch", "calorische": "calorisch", "cambridge": "cambridg", "camembert": "camembert", "camera": "camera", "camerabewaking": "camerabewak", "camp": "camp", "campagne": "campagn", "campagneleider": "campagneleider", "campagnes": "campagnes", "campen": "camp", "camphuysen": "camphuys", "camping": "camping", "campinggasten": "campinggast", "campinghouder": "campinghouder", "campings": "camping", "camplas": "camplas", "camus": "camus", "can": "can", "canada": "canada", "canadees": "canades", "canadese": "canades", "canapé": "canap", "canarische": "canarisch", "cancer": "cancer", "candidaat": "candidat", "candidaats": "candidat", "candybar": "candybar", "candybars": "candybar", "canedian": "canedian", "canisius": "canisius", "canon": "canon", "cantabro": "cantabro", "canyon": "canyon", "cao": "cao", "cap": "cap", "capaciteit": "capaciteit", "capaciteiten": "capaciteit", "capaciteitsoverwegingen": "capaciteitsoverweg", "capaciteitsprobleem": "capaciteitsproblem", "capaciteitsproblemen": "capaciteitsproblem", "capaciteitsregeling": "capaciteitsregel", "capaciteitsuitbreiding": "capaciteitsuitbreid", "capelle": "capell", "caprolactam": "caprolactam", "capstone": "capston", "car": "car", "cara": "cara", "caravans": "caravan", "carbamaten": "carbamat", "carbide": "carbid", "carbolineum": "carbolineum", "carbomix": "carbomix", "carbonaat": "carbonat", "carbonate": "carbonat", "carborat": "carborat", "carburos": "carburos", "carcinogeen": "carcinogen", "carcinogene": "carcinog", "carcinogenen": "carcinogen", "carcinogeniteit": "carcinogeniteit", "carcoke": "carcok", "card": "card", "cardigan": "cardigan", "cardoso": "cardoso", "care": "car", "caribisch": "caribisch", "carl": "carl", "carlo": "carlo", "carlton": "carlton", "carolientje": "carolientj", "carolina": "carolina", "caroline": "carolin", "caroteen": "caroten", "carpentras": "carpentras", "carpet": "carpet", "carpoolen": "carpol", "carpooler": "carpooler", "carpoolplaats": "carpoolplat", "carpoolplek": "carpoolplek", "carré": "carr", "carrée": "carree", "carrière": "carrièr", "carrièremakers": "carrièremaker", "carriers": "carrier", "carrosserie": "carrosserie", "carrot": "carrot", "carrouselreactor": "carrouselreactor", "carry": "carry", "cars": "car", "carsouw": "carsouw", "carteringsbedrijf": "carteringsbedrijf", "carver": "carver", "casablanca": "casablanca", "casac": "casac", "cascade": "cascad", "cascaderende": "cascader", "case": "cas", "casestudies": "casestudies", "cash": "cash", "cashflow": "cashflow", "casino": "casino", "cask": "cask", "casks": "cask", "cassatie": "cassatie", "cassetterecorders": "cassetterecorder", "castenray": "castenray", "casting": "casting", "castle": "castl", "castleford": "castleford", "casus": "casus", "catalaanse": "catalan", "catalase": "catalas", "catalloy": "catalloy", "catalonië": "catalonie", "catalunya": "catalunya", "catalytical": "catalytical", "catalytische": "catalytisch", "catastrofaal": "catastrofal", "catastrofe": "catastrof", "cateau": "cateau", "categorie": "categorie", "categorieën": "categorieen", "categoriën": "categorien", "cateringspullen": "cateringspull", "caterpillar": "caterpillar", "catherine": "catherin", "cauberg": "cauberg", "cauchemar": "cauchemar", "causerie": "causerie", "causeur": "causeur", "cavalier": "cavalier", "caviteiten": "caviteit", "cbl": "cbl", "cbot": "cbot", "cbs": "cbs", "cbt": "cbt", "cclb": "cclb", "ccr": "ccr", "cd": "cd", "cda": "cda", "cdem": "cdem", "cdm": "cdm", "ce": "ce", "cea": "cea", "cebeson": "cebeson", "ced": "ced", "ceder": "ceder", "cédigaz": "cedigaz", "ceec": "cec", "ceem": "cem", "cees": "ces", "cefic": "cefic", "cehave": "cehav", "ceja": "ceja", "cel": "cel", "celanese": "celanes", "celfix": "celfix", "cell": "cell", "cellagen": "cellag", "cellcrete": "cellcret", "celle": "cell", "cellen": "cell", "cellofaan": "cellofan", "cellulair": "cellulair", "cellulose": "cellulos", "celotex": "celotex", "celregulatie": "celregulatie", "celsius": "celsius", "celstoffabriek": "celstoffabriek", "celstraffen": "celstraff", "cemagref": "cemagref", "cement": "cement", "cementbeton": "cementbeton", "cementbouw": "cementbouw", "cementfabriek": "cementfabriek", "cementindustrie": "cementindustrie", "cementovens": "cementoven", "cemfuel": "cemfuel", "cemo": "cemo", "cen": "cen", "cent": "cent", "centano": "centano", "centen": "cent", "centenary": "centenary", "centeno": "centeno", "center": "center", "centimeter": "centimeter", "centimeters": "centimeter", "centra": "centra", "centraal": "central", "central": "central", "centrale": "central", "centrales": "centrales", "centraliseren": "centraliser", "centravac": "centravac", "centre": "centr", "centrifloc": "centrifloc", "centrifugaal": "centrifugal", "centrifugaalkoelmachines": "centrifugaalkoelmachines", "centrifugaalpompen": "centrifugaalpomp", "centrifugal": "centrifugal", "centrifuge": "centrifug", "centrifugeproeven": "centrifugeproev", "centrifugering": "centrifuger", "centrifuges": "centrifuges", "centrilab": "centrilab", "centrum": "centrum", "centrumgemeente": "centrumgemeent", "century": "century", "cepec": "cepec", "cera": "cera", "ceralia": "ceralia", "cercariën": "cercarien", "cerebrale": "cerebral", "ceremonie": "ceremonie", "ceremoniële": "ceremoniel", "ceremoniëler": "ceremonieler", "cerestar": "cerestar", "cerf": "cerf", "ceri": "ceri", "cerium": "cerium", "ceriumsulfide": "ceriumsulfid", "cerro": "cerro", "certificaat": "certificat", "certificaathouders": "certificaathouder", "certificaten": "certificat", "certificatie": "certificatie", "certificaties": "certificaties", "certificatiesystematiek": "certificatiesystematiek", "certificatietrajecten": "certificatietraject", "certification": "certification", "certificeerder": "certificeerder", "certificeerders": "certificeerder", "certificeert": "certificeert", "certificeren": "certificer", "certificerende": "certificer", "certificering": "certificer", "certificeringen": "certificer", "certificerings": "certificer", "certiva": "certiva", "cesium": "cesium", "cetera": "cetera", "ceti": "ceti", "cevardo": "cevardo", "ceylon": "ceylon", "cez": "cez", "cf": "cf", "cfce": "cfce", "cff": "cff", "cfk": "cfk", "cfo": "cfo", "cgmps": "cgmps", "cgs": "cgs", "ch": "ch", "chadronnier": "chadronnier", "chain": "chain", "chaise": "chais", "chaiselongue": "chaiselongue", "challenger": "challenger", "challenges": "challenges", "chambercloak": "chambercloak", "chambertin": "chambertin", "chambrée": "chambree", "chamonix": "chamonix", "champagne": "champagn", "champagnefles": "champagnefles", "champignonkweker": "champignonkweker", "champignonkwekersvereniging": "champignonkwekersveren", "champignonmest": "champignonmest", "champignons": "champignon", "champignonsector": "champignonsector", "champignonteelt": "champignonteelt", "champignontelers": "champignonteler", "champion": "champion", "champy": "champy", "chan": "chan", "chance": "chanc", "change": "chang", "changes": "changes", "chantage": "chantag", "chaos": "chaos", "chaperonneren": "chaperonner", "characterisation": "characterisation", "charette": "charet", "charge": "charg", "charles": "charles", "charmant": "charmant", "charmante": "charmant", "charme": "charm", "charrette": "charret", "chassis": "chassis", "chauffeur": "chauffeur", "chauffeurs": "chauffeur", "chauffeurscabine": "chauffeurscabin", "chaussée": "chaussee", "chcl": "chcl", "check": "check", "checklijst": "checklijst", "checklist": "checklist", "chef": "chef", "chelaat": "chelat", "chem": "chem", "chemaide": "chemaid", "chemarbel": "chemarbel", "chemconserve": "chemconserv", "chemferm": "chemferm", "chemflash": "chemflash", "chemical": "chemical", "chemicaliën": "chemicalien", "chemicaliëncontainers": "chemicaliencontainer", "chemicaliëngroep": "chemicaliengroep", "chemicals": "chemical", "chemici": "chemici", "chemicus": "chemicus", "chemie": "chemie", "chemiebedrijven": "chemiebedrijv", "chemieconcern": "chemieconcern", "chemieconcerns": "chemieconcern", "chemiegroep": "chemiegroep", "chemiekaartenboek": "chemiekaartenboek", "chemielinco": "chemielinco", "chemiesector": "chemiesector", "chemiewinkel": "chemiewinkel", "chemisch": "chemisch", "chemische": "chemisch", "chemischen": "chemisch", "chemisches": "chemisches", "chemoboxen": "chemobox", "chemocar": "chemocar", "chems": "chem", "cheshire": "cheshir", "chevelure": "chevelur", "chiba": "chiba", "chic": "chic", "chicago": "chicago", "chicken": "chick", "chiffonnières": "chiffonnières", "chili": "chili", "chimie": "chimie", "chimneying": "chimney", "china": "china", "chinees": "chines", "chinese": "chines", "chinezen": "chinez", "chip": "chip", "chipkaart": "chipkaart", "chips": "chip", "chique": "chique", "chirac": "chirac", "chitine": "chitin", "chloor": "chlor", "chlooraromaten": "chlooraromat", "chloorazijnzuur": "chloorazijnzur", "chloorbalans": "chloorbalan", "chloorbalansstudie": "chloorbalansstudie", "chloorbeleid": "chloorbeleid", "chloorbenzeen": "chloorbenzen", "chloorchemie": "chloorchemie", "chloorconcentratie": "chloorconcentratie", "chloorconversie": "chloorconversie", "chloordioxyde": "chloordioxyd", "chloorfabriek": "chloorfabriek", "chloorgas": "chloorgas", "chloorgebruik": "chloorgebruik", "chloorgebruikers": "chloorgebruiker", "chloorhoudend": "chloorhoud", "chloorhoudende": "chloorhoud", "chloorindustrie": "chloorindustrie", "chloorketen": "chloorket", "chloorketenstudie": "chloorketenstudie", "chloorkoolwaterstoffen": "chloorkoolwaterstoff", "chloorkringloop": "chloorkringlop", "chloorloos": "chloorlos", "chloormethanen": "chloormethan", "chloormicro": "chloormicro", "chlooroxyden": "chlooroxyd", "chloorprocessen": "chloorprocess", "chloorprodukten": "chloorprodukt", "chloorrecycling": "chloorrecycl", "chloorstoffen": "chloorstoff", "chloorstudie": "chloorstudie", "chloortreinen": "chloortrein", "chloorverbindingen": "chloorverbind", "chloorverwerkende": "chloorverwerk", "chloorvrij": "chloorvrij", "chloorvrije": "chloorvrij", "chloreerprocessen": "chloreerprocess", "chloreren": "chlorer", "chloride": "chlorid", "chlorideionen": "chlorideion", "chloridemetingen": "chloridemet", "chlorinated": "chlorinated", "chlorine": "chlorin", "chloroform": "chloroform", "chloroplasten": "chloroplast", "chock": "chock", "chocoladerepen": "chocoladerep", "cholera": "cholera", "choqueerde": "choqueerd", "chriet": "chriet", "chris": "chris", "christelijke": "christelijk", "christine": "christin", "christopher": "christopher", "chromatografie": "chromatografie", "chromatografisch": "chromatografisch", "chromolitografie": "chromolitografie", "chronisch": "chronisch", "chronische": "chronisch", "chroom": "chrom", "chroomafval": "chroomafval", "chroombad": "chroombad", "chroombevattende": "chroombevat", "chroomemissie": "chroomemissie", "chroomemissies": "chroomemissies", "chroomhoudende": "chroomhoud", "chroomhydroxide": "chroomhydroxid", "chroomleer": "chroomler", "chroomtrioxyde": "chroomtrioxyd", "chrysanten": "chrysant", "chrysantentelers": "chrysantenteler", "chrysoliet": "chrysoliet", "cht": "cht", "chtt": "chtt", "chubut": "chubut", "chute": "chut", "chv": "chv", "chymozine": "chymozin", "chymozinebacterie": "chymozinebacterie", "cia": "cia", "ciba": "ciba", "cielp": "cielp", "cijfermateriaal": "cijfermateriaal", "cijfers": "cijfer", "cilinder": "cilinder", "cilinders": "cilinder", "cilindrische": "cilindrisch", "cimi": "cimi", "cini": "cini", "cip": "cip", "circa": "circa", "circuit": "circuit", "circulaire": "circulair", "circulatiesysteem": "circulatiesystem", "circulating": "circulat", "circuleert": "circuleert", "circulerend": "circuler", "circus": "circus", "cirkel": "cirkel", "cirkelde": "cirkeld", "cirkelden": "cirkeld", "cirkelende": "cirkel", "cirkeling": "cirkel", "cirkelmaaiers": "cirkelmaaier", "cirkels": "cirkel", "cirque": "cirque", "citeerde": "citeerd", "cites": "cites", "citex": "citex", "citizen": "citiz", "citroen": "citroen", "citroën": "citroen", "citroënfabriek": "citroenfabriek", "citrusplantages": "citrusplantages", "cittershaven": "cittershav", "city": "city", "citybac": "citybac", "citybacs": "citybac", "citybus": "citybus", "cityspot": "cityspot", "civiel": "civiel", "civiele": "civiel", "civielrechtelijke": "civielrecht", "civieltechniek": "civieltechniek", "civieltechnisch": "civieltechnisch", "civieltechnische": "civieltechnisch", "civil": "civil", "ciwem": "ciwem", "ciwi": "ciwi", "cizeleert": "cizeleert", "ckw": "ckw", "claim": "claim", "claimen": "claim", "claims": "claim", "claimt": "claimt", "clairtech": "clairtech", "clappison": "clappison", "clark": "clark", "class": "clas", "classens": "classen", "classificatie": "classificatie", "classificaties": "classificaties", "classificatietechnieken": "classificatietechniek", "classified": "classified", "clausplain": "clausplain", "clausule": "clausul", "clayton": "clayton", "clb": "clb", "clean": "clean", "cleanaways": "cleanaway", "cleaner": "cleaner", "cleaning": "cleaning", "cleanroom": "cleanrom", "clear": "clear", "clenbuterol": "clenbuterol", "cleveland": "cleveland", "climate": "climat", "climatic": "climatic", "climax": "climax", "climex": "climex", "clinton": "clinton", "clio": "clio", "clip": "clip", "clm": "clm", "clogtype": "clogtyp", "cloppenburg": "cloppenburg", "clortoluron": "clortoluron", "closed": "closed", "clown": "clown", "club": "club", "clubgenoot": "clubgenot", "clubje": "clubj", "clubs": "club", "cm": "cm", "cma": "cma", "cmi": "cmi", "cml": "cml", "cms": "cms", "cna": "cna", "cnc": "cnc", "cnv": "cnv", "co": "co", "coagulator": "coagulator", "coaguleren": "coaguler", "coal": "coal", "coalescentie": "coalescentie", "coalescentiefilter": "coalescentiefilter", "coalite": "coalit", "coalitie": "coalitie", "coalitiegenoten": "coalitiegenot", "coalitiepartners": "coalitiepartner", "coalition": "coalition", "coastal": "coastal", "coating": "coating", "coatings": "coating", "coatingsystemen": "coatingsystem", "cob": "cob", "coberco": "coberco", "cobouw": "cobouw", "coccen": "cocc", "coccolithophorida": "coccolithophorida", "cochet": "cochet", "cocon": "cocon", "code": "cod", "codes": "codes", "coëfficient": "coefficient", "coëfficiënt": "coefficient", "coëfficiënten": "coefficient", "coenhaven": "coenhav", "coeveringe": "coever", "coevorden": "coevord", "cogema": "cogema", "cogeneratie": "cogeneratie", "cogeneratiecentrale": "cogeneratiecentral", "cognac": "cognac", "cognos": "cognos", "coherente": "coherent", "cohorten": "cohort", "cokes": "cokes", "cokesovens": "cokesoven", "cokesvorming": "cokesvorm", "colibacteriën": "colibacterien", "colin": "colin", "collageen": "collagen", "collagen": "collag", "collectie": "collectie", "collectief": "collectief", "collecties": "collecties", "collectieve": "collectiev", "collection": "collection", "collector": "collector", "collectoren": "collector", "collectors": "collector", "collectorsystemen": "collectorsystem", "collega": "collega", "college": "colleg", "collegeleden": "collegeled", "collegeperiode": "collegeperiod", "colleges": "colleges", "collins": "collin", "colloïdaal": "colloidal", "colloide": "colloid", "colloiden": "colloid", "cologne": "cologn", "colombia": "colombia", "colombiaans": "colombiaan", "colombo": "colombo", "colonnes": "colonnes", "colorado": "colorado", "columbia": "columbia", "column": "column", "com": "com", "comah": "comah", "combi": "combi", "combibelading": "combibelad", "combigedeelte": "combigedeelt", "combinatie": "combinatie", "combinaties": "combinaties", "combinatietoxiciteit": "combinatietoxiciteit", "combined": "combined", "combineert": "combineert", "combineren": "combiner", "combizorg": "combizorg", "combustion": "combustion", "combustor": "combustor", "comedie": "comedie", "comercio": "comercio", "comfort": "comfort", "comfortabel": "comfortabel", "comfortabele": "comfortabel", "comfortverbetering": "comfortverbeter", "comité": "comit", "comma": "comma", "commandant": "commandant", "commandanten": "commandant", "commandeur": "commandeur", "commanditaire": "commanditair", "commando": "commando", "commandostem": "commandostem", "commandostructuur": "commandostructur", "commentaar": "commentar", "commentaren": "commentar", "commerce": "commerc", "commercial": "commercial", "commercialiseren": "commercialiser", "commercialisering": "commercialiser", "commercieel": "commercieel", "commerciële": "commerciel", "commies": "commies", "commissariaat": "commissariaat", "commissaris": "commissaris", "commissarissen": "commissariss", "commissie": "commissie", "commissies": "commissies", "commission": "commission", "commissions": "commission", "commitment": "commitment", "committee": "committee", "common": "common", "commotie": "commotie", "communaal": "communal", "communautaire": "communautair", "communicatie": "communicatie", "communicatiebeleid": "communicatiebeleid", "communicatiefout": "communicatiefout", "communicatiemiddelen": "communicatiemiddel", "communicatienetwerk": "communicatienetwerk", "communicatieprijs": "communicatieprijs", "communicatiestrategie": "communicatiestrategie", "communicatietechnologie": "communicatietechnologie", "communicatieve": "communicatiev", "communicator": "communicator", "communiceren": "communicer", "communiqué": "communique", "communisten": "communist", "communistische": "communistisch", "communities": "communities", "community": "community", "compact": "compact", "compacte": "compact", "compacteersysteem": "compacteersystem", "compacteren": "compacter", "compactheidsdenken": "compactheidsdenk", "compactor": "compactor", "compactors": "compactor", "compactste": "compactst", "compactsysteem": "compactsystem", "compagnie": "compagnie", "companies": "companies", "company": "company", "compartiment": "compartiment", "compartimenten": "compartiment", "compascuum": "compascum", "compatibel": "compatibel", "compensatie": "compensatie", "compensatiemaatregelen": "compensatiemaatregel", "compensatieplan": "compensatieplan", "compensatieplannen": "compensatieplann", "compensatiewerk": "compensatiewerk", "compenseert": "compenseert", "compenseren": "compenser", "compenserende": "compenser", "competence": "competenc", "competentiestrijd": "competentiestrijd", "competetive": "competetiv", "competitie": "competitie", "competitiebeleid": "competitiebeleid", "competition": "competition", "compleet": "complet", "complementeren": "complementer", "complete": "complet", "completely": "completely", "complex": "complex", "complexe": "complex", "complexen": "complex", "complexer": "complexer", "complexere": "complexer", "complexiteit": "complexiteit", "complexvergunning": "complexvergunn", "compliance": "complianc", "complicatie": "complicatie", "compliceren": "complicer", "compliment": "compliment", "complimentjes": "complimentjes", "component": "component", "componenten": "component", "componentenbouwers": "componentenbouwer", "componist": "componist", "composieten": "composiet", "composietmaterialen": "composietmaterial", "composietprodukten": "composietprodukt", "compost": "compost", "compostachtig": "compostacht", "compostbed": "compostbed", "composteer": "composter", "composteerbaarheidslabel": "composteerbaarheidslabel", "composteerbare": "composter", "composteerbedden": "composteerbed", "composteerbedrijf": "composteerbedrijf", "composteerinrichtingen": "composteerinricht", "composteerinstallaties": "composteerinstallaties", "composteertarief": "composteertarief", "composteren": "composter", "compostering": "composter", "composteringsfabriek": "composteringsfabriek", "composteringsinstallatie": "composteringsinstallatie", "composteringsinstallaties": "composteringsinstallaties", "compostfabriek": "compostfabriek", "compostmachine": "compostmachin", "compostomaat": "compostomat", "compostprodukt": "compostprodukt", "compostproduktie": "compostproduktie", "composttoiletten": "composttoilet", "compressie": "compressie", "compressiekoelmachine": "compressiekoelmachin", "compressor": "compressor", "compressoren": "compressor", "comprimerende": "comprimer", "comprimo": "comprimo", "compromis": "compromis", "compromisvoorstel": "compromisvoorstel", "compromitteer": "compromitter", "compromitteren": "compromitter", "comptables": "comptables", "computer": "computer", "computerbedrijf": "computerbedrijf", "computerfabrikant": "computerfabrikant", "computergegevens": "computergegeven", "computergestuurd": "computergestuurd", "computergestuurde": "computergestuurd", "computermodel": "computermodel", "computermodellen": "computermodell", "computernetwerk": "computernetwerk", "computerprogramma": "computerprogramma", "computers": "computer", "computerscherm": "computerscherm", "computerschermen": "computerscherm", "computersimulaties": "computersimulaties", "computerspel": "computerspel", "comstrijen": "comstrij", "comte": "comt", "comtesse": "comtes", "concentraat": "concentrat", "concentratie": "concentratie", "concentratiegebieden": "concentratiegebied", "concentratieproblemen": "concentratieproblem", "concentraties": "concentraties", "concentratietendens": "concentratietenden", "concentratiewaarde": "concentratiewaard", "concentration": "concentration", "concentreert": "concentreert", "concentreren": "concentrer", "concept": "concept", "concepten": "concept", "conceptvoorstel": "conceptvoorstel", "conceptvorm": "conceptvorm", "concern": "concern", "concerns": "concern", "concessie": "concessie", "concessiegebied": "concessiegebied", "conchem": "conchem", "concierge": "concierg", "concludeerde": "concludeerd", "concludeerden": "concludeerd", "concludeert": "concludeert", "concluderen": "concluder", "conclusie": "conclusie", "conclusies": "conclusies", "concorde": "concord", "concreet": "concret", "concrete": "concret", "concretere": "concreter", "concretiseren": "concretiser", "concurreert": "concurreert", "concurrent": "concurrent", "concurrenten": "concurrent", "concurrentie": "concurrentie", "concurrentiebeding": "concurrentiebed", "concurrentiekracht": "concurrentiekracht", "concurrentienadeel": "concurrentienadel", "concurrentieparameters": "concurrentieparameter", "concurrentiepositie": "concurrentiepositie", "concurrentieprobleem": "concurrentieproblem", "concurrentieregels": "concurrentieregel", "concurrentieslag": "concurrentieslag", "concurrentieverhoudingen": "concurrentieverhoud", "concurrentievervalsing": "concurrentievervals", "concurrentievoordeel": "concurrentievoordel", "concurrentievoorsprong": "concurrentievoorsprong", "concurreren": "concurrer", "concurrerend": "concurrer", "concurrerende": "concurrer", "condensaat": "condensat", "condensaatsystemen": "condensaatsystem", "condensatie": "condensatie", "condensatiereactie": "condensatiereactie", "condensatietemperatuur": "condensatietemperatur", "condensator": "condensator", "condensatorventilatoren": "condensatorventilator", "condenseert": "condenseert", "condenseren": "condenser", "condensering": "condenser", "condensor": "condensor", "condensordruk": "condensordruk", "condensors": "condensor", "condenspotten": "condenspot", "condenstemperatuur": "condenstemperatur", "condensvorming": "condensvorm", "conditie": "conditie", "condities": "condities", "conditionering": "conditioner", "condoleancekus": "condoleancekus", "conducteur": "conducteur", "confederatie": "confederatie", "conference": "conferenc", "conférences": "conferences", "conferentie": "conferentie", "conferenties": "conferenties", "configuratie": "configuratie", "configuraties": "configuraties", "conflict": "conflict", "conflicten": "conflict", "conflictenrecht": "conflictenrecht", "conflicteren": "conflicter", "conflicterende": "conflicter", "conform": "conform", "confrontaties": "confrontaties", "confronteren": "confronter", "congestie": "congestie", "conglomeraat": "conglomerat", "conglomeraten": "conglomerat", "congres": "congres", "congresbureau": "congresbureau", "congrescentrum": "congrescentrum", "congresgebouw": "congresgebouw", "congress": "congres", "congressen": "congress", "congresverslag": "congresverslag", "congreszaal": "congreszal", "coniferen": "conifer", "conjunctuur": "conjunctur", "connecticut": "connecticut", "connection": "connection", "conny": "conny", "conquest": "conquest", "consensus": "consensus", "consequences": "consequences", "consequent": "consequent", "consequente": "consequent", "consequentie": "consequentie", "consequenties": "consequenties", "conservatieve": "conservatiev", "conservatieven": "conservatiev", "conservation": "conservation", "conservator": "conservator", "conserveert": "conserveert", "conserveren": "conserver", "conservering": "conserver", "consistent": "consistent", "consistente": "consistent", "consolidatie": "consolidatie", "consolidatieproces": "consolidatieproces", "consolidation": "consolidation", "consortia": "consortia", "consortium": "consortium", "constance": "constanc", "cònstance": "cònstanc", "constánce": "constanc", "constandse": "constand", "constans": "constan", "constant": "constant", "constante": "constant", "constantinopel": "constantinopel", "constateerde": "constateerd", "constateerden": "constateerd", "constateert": "constateert", "constateren": "constater", "constatering": "constater", "constateringen": "constater", "consternatie": "consternatie", "constitutionele": "constitutionel", "constructeur": "constructeur", "constructeurs": "constructeur", "constructie": "constructie", "constructiebedrijf": "constructiebedrijf", "constructief": "constructief", "constructies": "constructies", "constructieve": "constructiev", "construction": "construction", "constructions": "construction", "construeert": "construeert", "construeren": "construer", "consul": "consul", "consulaat": "consulat", "consulent": "consulent", "consulenten": "consulent", "consulentschap": "consulentschap", "consult": "consult", "consultancy": "consultancy", "consultant": "consultant", "consultants": "consultant", "consultatiebureau": "consultatiebureau", "consulting": "consult", "consument": "consument", "consumenten": "consument", "consumentenactie": "consumentenactie", "consumentenartikelen": "consumentenartikel", "consumentenbond": "consumentenbond", "consumentendienst": "consumentendienst", "consumentengedrag": "consumentengedrag", "consumentengoederen": "consumentengoeder", "consumentenomzet": "consumentenomzet", "consumentenonderzoek": "consumentenonderzoek", "consumentenorganisatie": "consumentenorganisatie", "consumentenorganisaties": "consumentenorganisaties", "consumentenprodukten": "consumentenprodukt", "consumentenverpakkingen": "consumentenverpak", "consumentenvoorkeur": "consumentenvoorkeur", "consumer": "consumer", "consumeren": "consumer", "consumptie": "consumptie", "consumptiedagen": "consumptiedag", "consumptiegoederen": "consumptiegoeder", "consumptiekwaliteit": "consumptiekwaliteit", "consumptiepatronen": "consumptiepatron", "consumptiestructuur": "consumptiestructur", "contact": "contact", "contacten": "contact", "contactgeluidisolatie": "contactgeluidisolatie", "contactgroep": "contactgroep", "contactpersonen": "contactperson", "contactwater": "contactwater", "container": "container", "containerbakken": "containerbak", "containerbedrijf": "containerbedrijf", "containerbeheer": "containerbeher", "containerbelading": "containerbelad", "containerbeladingssysteem": "containerbeladingssystem", "containercombinatie": "containercombinatie", "containerdienst": "containerdienst", "containerinzamelingsbedrijven": "containerinzamelingsbedrijv", "containerophaalsysteem": "containerophaalsystem", "containeroverslag": "containeroverslag", "containerparken": "containerpark", "containerpool": "containerpol", "containerrederij": "containerrederij", "containerreinigings": "containerrein", "containers": "container", "containerschepen": "containerschep", "containerschip": "containerschip", "containersysteem": "containersystem", "containersystemen": "containersystem", "containerteelt": "containerteelt", "containerterminal": "containerterminal", "containerverhuurbedrijf": "containerverhuurbedrijf", "containervervoer": "containervervoer", "containerwisselsysteem": "containerwisselsystem", "containerwisselsystemen": "containerwisselsystem", "contaminanten": "contaminant", "contaminated": "contaminated", "contaminatie": "contaminatie", "contante": "contant", "contenteren": "contenter", "context": "context", "continent": "continent", "continentaal": "continental", "continental": "continental", "continu": "continu", "continue": "continue", "continueren": "continuer", "continuïteit": "continuiteit", "continuous": "continuous", "continuteelt": "continuteelt", "contour": "contour", "contouren": "contour", "contra": "contra", "contract": "contract", "contractbepaling": "contractbepal", "contractbreuk": "contractbreuk", "contracten": "contract", "contractiegedeelte": "contractiegedeelt", "contracting": "contract", "contractor": "contractor", "contractors": "contractor", "contractresearch": "contractresearch", "contractueel": "contractueel", "contraproduktief": "contraproduktief", "contrast": "contrast", "contrasteert": "contrasteert", "control": "control", "controle": "control", "controlecijfers": "controlecijfer", "controleer": "controler", "controleerbaar": "controler", "controleerbare": "controler", "controleert": "controleert", "controlekamer": "controlekamer", "controlekosten": "controlekost", "controlelijst": "controlelijst", "controlepunten": "controlepunt", "controleren": "controler", "contrôleren": "contrôler", "controlerende": "controler", "controles": "controles", "controleschema": "controleschema", "controlesysteem": "controlesystem", "controlesystemen": "controlesystem", "controleurs": "controleur", "controlewijzer": "controlewijzer", "controller": "controller", "controls": "control", "controverse": "controver", "controversiële": "controversiel", "convenant": "convenant", "convenanten": "convenant", "convenantenpolitiek": "convenantenpolitiek", "convenieert": "convenieert", "conveniëren": "convenier", "conventie": "conventie", "convention": "convention", "conventionale": "conventional", "conventioneel": "conventionel", "conventionelc": "conventionelc", "conventionele": "conventionel", "conversatie": "conversatie", "conversie": "conversie", "conversietechnieken": "conversietechniek", "conversieverliezen": "conversieverliez", "conversion": "conversion", "converter": "converter", "cony": "cony", "cook": "cok", "cooker": "cooker", "cooling": "cooling", "cooltainer": "cooltainer", "coolworks": "coolwork", "coöp": "cop", "coöperatie": "cooperatie", "coöperatiemolens": "cooperatiemolen", "coöperaties": "cooperaties", "coöperatieve": "cooperatiev", "cooperation": "cooperation", "cooperative": "cooperativ", "coopers": "cooper", "coördinatie": "coordinatie", "coördinatiecollege": "coordinatiecolleg", "coördinatiecommissie": "coordinatiecommissie", "coördinator": "coordinator", "coördineerde": "coordineerd", "coördineert": "coordineert", "coördineren": "coordiner", "cooten": "cot", "copenhagen": "copenhag", "copier": "copier", "copieus": "copieus", "copieuze": "copieuz", "copius": "copius", "cops": "cop", "coquet": "coquet", "coquette": "coquet", "coquetterie": "coquetterie", "coral": "coral", "cordis": "cordis", "core": "cor", "corinne": "corinn", "corning": "corning", "cornwall": "cornwall", "corp": "corp", "corporate": "corporat", "corporation": "corporation", "corps": "corp", "correct": "correct", "correctdoenerige": "correctdoener", "correcte": "correct", "correctie": "correctie", "correctiemiddel": "correctiemiddel", "correctieve": "correctiev", "correlatie": "correlatie", "correspondentie": "correspondentie", "corridor": "corridor", "corridors": "corridor", "corrigerend": "corriger", "corrosie": "corrosie", "corrosiebestendig": "corrosiebestend", "corrosiebestendigheid": "corrosiebestend", "corrupt": "corrupt", "corruptie": "corruptie", "corsa": "corsa", "corset": "corset", "corvées": "corves", "cos": "cos", "cosmopoliet": "cosmopoliet", "cosmopolitische": "cosmopolitisch", "cost": "cost", "costa": "costa", "coster": "coster", "costumes": "costumes", "côterie": "côterie", "côterieën": "côterieen", "côterietje": "côterietj", "côtillon": "côtillon", "cotrans": "cotran", "cotton": "cotton", "coudoyeer": "coudoyer", "coudoyeren": "coudoyer", "councel": "councel", "council": "council", "counsel": "counsel", "counsil": "counsil", "counter": "counter", "county": "county", "coupé": "coup", "coupépolder": "coupepolder", "coupétje": "coupetj", "coupled": "coupled", "courant": "courant", "couranten": "courant", "courantenbladen": "courantenblad", "courantje": "courantj", "cousteau": "cousteau", "couverts": "couvert", "covra": "covra", "cox": "cox", "cp": "cp", "cpb": "cpb", "cpp": "cpp", "cpr": "cpr", "cpro": "cpro", "cr": "cr", "cra": "cra", "crack": "crack", "crane": "cran", "crayenstein": "crayenstein", "crayon": "crayon", "creatie": "creatie", "creatief": "creatief", "creatieve": "creatiev", "creatinine": "creatinin", "creativ": "creativ", "creative": "creativ", "creatuur": "creatur", "crèches": "crèches", "creëert": "creeert", "creëren": "crer", "creil": "creil", "crem": "crem", "crematie": "crematie", "crematies": "crematies", "crematorium": "crematorium", "crème": "crèm", "creosoot": "creosot", "creosootolie": "creosootolie", "cresson": "cresson", "crest": "crest", "creys": "crey", "cri": "cri", "cricket": "cricket", "cricketclubs": "cricketclub", "crii": "crii", "crim": "crim", "criminele": "criminel", "crimped": "crimped", "crisis": "crisis", "crisissen": "crisiss", "cristoffelpark": "cristoffelpark", "criteria": "criteria", "criterium": "criterium", "critical": "critical", "critici": "critici", "critiek": "critiek", "crockett": "crockett", "cromstrijen": "cromstrij", "crone": "cron", "crosfields": "crosfield", "croûte": "croût", "crow": "crow", "crowcon": "crowcon", "crowding": "crowding", "crown": "crown", "croyden": "croyd", "cruciaal": "cruciaal", "cruciale": "crucial", "cruise": "cruis", "cruisemaatschappij": "cruisemaatschappij", "cruisezeilen": "cruisezeil", "crutzen": "crutz", "cry": "cry", "cryogeen": "cryogen", "cryogene": "cryog", "cryogenic": "cryogenic", "cs": "cs", "csi": "csi", "csm": "csm", "cso": "cso", "csoil": "csoil", "cstr": "cstr", "ctb": "ctb", "ctc": "ctc", "cth": "cth", "cuba": "cuba", "cubaanse": "cuban", "cuckmere": "cuckmer", "cultureel": "culturel", "culturele": "culturel", "culturen": "cultur", "cultuur": "cultur", "cultuuraardappelen": "cultuuraardappel", "cultuurgewas": "cultuurgewas", "cultuurgewassen": "cultuurgewass", "cultuurgrond": "cultuurgrond", "cultuurgronden": "cultuurgrond", "cultuurhistorie": "cultuurhistorie", "cultuurlandschap": "cultuurlandschap", "cultuuromslag": "cultuuromslag", "cultuurpessimisme": "cultuurpessimism", "cultuurtechniek": "cultuurtechniek", "cultuurtechnische": "cultuurtechnisch", "cultuurtempel": "cultuurtempel", "cumbrian": "cumbrian", "cumulatieve": "cumulatiev", "cuneraweg": "cuneraweg", "cup": "cup", "cur": "cur", "curaçao": "curaçao", "curatele": "curatel", "curatief": "curatief", "cure": "cur", "curiel": "curiel", "curieus": "curieus", "current": "current", "cursus": "cursus", "cursussen": "cursuss", "custom": "custom", "cuwvo": "cuwvo", "cv": "cv", "cvd": "cvd", "cvk": "cvk", "cvp": "cvp", "cvt": "cvt", "cw": "cw", "cwk": "cwk", "cxhy": "cxhy", "cyaan": "cyaan", "cyaanhydrine": "cyaanhydrin", "cyanamid": "cyanamid", "cyanide": "cyanid", "cyaniden": "cyanid", "cycle": "cycl", "cycleon": "cycleon", "cycles": "cycles", "cyclohexaan": "cyclohexan", "cyclonox": "cyclonox", "cycloon": "cyclon", "cyclus": "cyclus", "cyprische": "cyprisch", "cyprus": "cyprus", "cystine": "cystin", "cz": "cz", "czaar": "czar", "czestochowa": "czestochowa", "czv": "czv", "d": "d", "da": "da", "daad": "dad", "daadkrachtiger": "daadkrachtiger", "daadwerkelijk": "daadwerk", "daadwerkelijke": "daadwerk", "daagde": "daagd", "daagden": "daagd", "daags": "dag", "daagse": "dag", "daagt": "daagt", "daalde": "daald", "daalden": "daald", "daalderop": "daalderop", "daalt": "daalt", "daar": "dar", "dáar": "dar", "dáár": "dar", "daaraan": "daaran", "daarachter": "daarachter", "daarbij": "daarbij", "daarbinnen": "daarbinn", "daarboven": "daarbov", "daarbuiten": "daarbuit", "daardoor": "daardor", "daardoorheen": "daardoorhen", "daarenboven": "daarenbov", "daarentegen": "daarenteg", "daarginds": "daargind", "daarheen": "daarhen", "daarin": "daarin", "daarmee": "daarmee", "daarna": "daarna", "daarnaar": "daarnar", "daarnaast": "daarnaast", "daarom": "daarom", "dáárom": "daarom", "daaromheen": "daaromhen", "daaronder": "daaronder", "daarop": "daarop", "daaropvolgende": "daaropvolg", "daarover": "daarover", "daartegen": "daarteg", "daartegenover": "daartegenover", "daartoe": "daartoe", "daartussen": "daartuss", "daaruit": "daaruit", "daarvan": "daarvan", "daarvoor": "daarvor", "daarvóór": "daarvor", "dacht": "dacht", "dachten": "dacht", "dadelijk": "dadelijk", "dadelijke": "dadelijk", "dader": "dader", "daders": "dader", "daderschap": "daderschap", "daf": "daf", "dag": "dag", "dagaccommodatie": "dagaccommodatie", "dagblad": "dagblad", "dagbladen": "dagblad", "dagboek": "dagboek", "dagelijks": "dagelijk", "dagelijkse": "dagelijk", "dagen": "dag", "dagenlange": "dagenlang", "dagentange": "dagentang", "dageraad": "dagerad", "dageraadwijde": "dageraadwijd", "dageraden": "dagerad", "daggenvoorde": "daggenvoord", "daglicht": "daglicht", "dagmarkt": "dagmarkt", "dags": "dag", "dagvaarding": "dagvaard", "dagverbruik": "dagverbruik", "daiei": "daiei", "daimler": "daimler", "dainippon": "dainippon", "dak": "dak", "dakbedekkers": "dakbedekker", "dakbedekking": "dakbedek", "dakbedekkingsmateriaal": "dakbedekkingsmateriaal", "dakconstructie": "dakconstructie", "dakdekkerij": "dakdekkerij", "dakdekkers": "dakdekker", "daken": "dak", "dakgoot": "dakgot", "dakgoten": "dakgot", "dakisolatie": "dakisolatie", "dakje": "dakj", "dakjes": "dakjes", "daklicht": "daklicht", "dakpan": "dakpan", "dakpanelen": "dakpanel", "dakpanfabrieken": "dakpanfabriek", "dakpannen": "dakpann", "dakpannenfabrikant": "dakpannenfabrikant", "dakplaat": "dakplat", "dakplaten": "dakplat", "dakprodukten": "dakprodukt", "dakramen": "dakram", "dakrand": "dakrand", "dakvlak": "dakvlak", "dal": "dal", "dalem": "dalem", "dalen": "dal", "dalende": "dalend", "daling": "daling", "dallen": "dall", "dalmijn": "dalmijn", "dalurentarieven": "dalurentariev", "dam": "dam", "dame": "dam", "dames": "dames", "damesslips": "damesslip", "dammen": "damm", "damond": "damond", "damp": "damp", "dampcompressie": "dampcompressie", "dampemissies": "dampemissies", "dampen": "damp", "dampfase": "dampfas", "dampretourleidingen": "dampretourleid", "dampspanning": "dampspann", "dampstromen": "dampstrom", "dampstroom": "dampstrom", "dampte": "dampt", "damwand": "damwand", "damwanden": "damwand", "damwandkuip": "damwandkuip", "dan": "dan", "danbury": "danbury", "dangas": "dangas", "daniel": "daniel", "danig": "danig", "danis": "danis", "dank": "dank", "dankbaar": "dankbar", "dankbaarheid": "dankbar", "dankbare": "dankbar", "danken": "dank", "dankje": "dankj", "danks": "dank", "dankt": "dankt", "dankte": "dankt", "dankzij": "dankzij", "danmarks": "danmark", "dans": "dan", "dansclub": "dansclub", "dansen": "dans", "dansende": "dansend", "dansenden": "dansend", "danseur": "danseur", "dansk": "dansk", "dansles": "dansles", "danslessen": "dansless", "danspas": "danspas", "danste": "danst", "dansten": "danst", "danwel": "danwel", "dapemo": "dapemo", "daphnia": "daphnia", "dapper": "dapper", "dar": "dar", "daranginongan": "daranginongan", "darmen": "darm", "darmverteerbaar": "darmverter", "dartele": "dartel", "dartelheid": "dartel", "darweesh": "darweesh", "das": "das", "dasa": "dasa", "dashboarden": "dashboard", "dassen": "dass", "dassenpopulatie": "dassenpopulatie", "dassenproject": "dassenproject", "dassentunnel": "dassentunnel", "dat": "dat", "dàt": "dàt", "data": "data", "databank": "databank", "databanken": "databank", "database": "databas", "databases": "databases", "datablad": "datablad", "datacommunicatie": "datacommunicatie", "datalogcomputer": "datalogcomputer", "datalogger": "datalogger", "dataverwerking": "dataverwerk", "dateerde": "dateerd", "dateert": "dateert", "datenblatt": "datenblatt", "datenblätter": "datenblatter", "dateren": "dater", "daterend": "dater", "datum": "datum", "datzelfde": "datzelfd", "dauw": "dauw", "dauwde": "dauwd", "daverde": "daverd", "daveren": "daver", "daverende": "daver", "david": "david", "day": "day", "daya": "daya", "db": "db", "dba": "dba", "dbase": "dbas", "dc": "dc", "dcmr": "dcmr", "dcs": "dcs", "dd": "dd", "ddame": "ddam", "dddame": "dddam", "ddòl": "ddòl", "ddòll": "ddòll", "ddouane": "ddouan", "ddr": "ddr", "dds": "dds", "ddt": "ddt", "de": "de", "dè": "dè", "debâcles": "debâcles", "debat": "debat", "debatteerde": "debatteerd", "debatten": "debat", "debet": "debet", "debiet": "debiet", "decanter": "decanter", "decarbonatie": "decarbonatie", "december": "december", "decennia": "decennia", "decentraal": "decentral", "decentrale": "decentral", "decentralisatie": "decentralisatie", "decentralised": "decentralised", "deceptie": "deceptie", "dechema": "dechema", "dechlorering": "dechlorer", "déchue": "dechue", "decibel": "decibel", "decideerden": "decideerd", "decimeters": "decimeter", "declameerde": "declameerd", "decoder": "decoder", "décor": "decor", "decoratie": "decoratie", "decoraties": "decoraties", "decoratieve": "decoratiev", "decreet": "decret", "dedemsvaart": "dedemsvaart", "deden": "ded", "dedicated": "dedicated", "dee": "dee", "deed": "ded", "déed": "ded", "deel": "del", "deelauto": "deelauto", "deelconvenanten": "deelconvenant", "deelde": "deeld", "deelden": "deeld", "deelgenomen": "deelgenom", "deellast": "deellast", "deelmarkt": "deelmarkt", "deelmarkten": "deelmarkt", "deelname": "deelnam", "deelnamen": "deelnam", "deelneemt": "deelneemt", "deelnemen": "deelnem", "deelnemend": "deelnem", "deelnemende": "deelnem", "deelnemer": "deelnemer", "deelnemers": "deelnemer", "deelnemersovereenkomst": "deelnemersovereenkomst", "deelneming": "deelnem", "deelnemingen": "deelnem", "deelonderzoek": "deelonderzoek", "deelprogramma": "deelprogramma", "deelproject": "deelproject", "deelprojecten": "deelproject", "deelraadbestuur": "deelraadbestur", "deelrepubliek": "deelrepubliek", "deelrisico": "deelrisico", "deels": "del", "deelstaat": "deelstat", "deelstaatregering": "deelstaatreger", "deelstaten": "deelstat", "deelstromen": "deelstrom", "deelstroom": "deelstrom", "deelstroominstallatie": "deelstroominstallatie", "deelstudie": "deelstudie", "deelstudies": "deelstudies", "deelt": "deelt", "deeltijd": "deeltijd", "deeltjes": "deeltjes", "deeltjesgrootte": "deeltjesgrot", "deeltjesoppervlak": "deeltjesoppervlak", "deeltjesscheiding": "deeltjesscheid", "deeltjesscheidingstechnieken": "deeltjesscheidingstechniek", "deeltjesteller": "deeltjesteller", "deemoedig": "deemoed", "deemoedigheid": "deemoed", "deens": "den", "deense": "den", "deerde": "deerd", "deerden": "deerd", "def": "def", "defect": "defect", "defecte": "defect", "defecten": "defect", "defense": "defen", "defensie": "defensie", "defensiebronnen": "defensiebronn", "defensiecommissie": "defensiecommissie", "defensief": "defensief", "defensiegebieden": "defensiegebied", "defensietechnologie": "defensietechnologie", "defensieve": "defensiev", "definiëren": "definier", "definiëring": "definier", "definitie": "definitie", "definitief": "definitief", "definitieve": "definitiev", "deformatie": "deformatie", "defosfatering": "defosfater", "deftig": "deftig", "deftige": "deftig", "deftiger": "deftiger", "degelijk": "degelijk", "dégelijk": "degelijk", "dègelijk": "dègelijk", "degelijke": "degelijk", "dégelijke": "degelijk", "dégelijker": "degelijker", "degelijkheid": "degelijk", "degelijkjes": "degelijkjes", "degelijks": "degelijk", "dégelijks": "degelijk", "degene": "deg", "degenen": "degen", "degeneratie": "degeneratie", "degens": "degen", "degradatie": "degradatie", "dehaene": "dehaen", "dehalogenering": "dehalogener", "dehalogeneringsprodukten": "dehalogeneringsprodukt", "dehydrateren": "dehydrater", "dehydratie": "dehydratie", "deinde": "deind", "deinden": "deind", "deinen": "dein", "deinende": "deinend", "deining": "deining", "deinschok": "deinschok", "dejeuner": "dejeuner", "déjeuner": "dejeuner", "déjeunerende": "dejeuner", "dek": "dek", "deken": "dek", "dekens": "deken", "dekken": "dek", "dekker": "dekker", "dekking": "dekking", "dekkingseis": "dekkingseis", "dekkingsgraad": "dekkingsgrad", "dekkingsplan": "dekkingsplan", "dekkleden": "dekkled", "dekos": "dekos", "deksel": "deksel", "dekt": "dekt", "dekte": "dekt", "delaney": "delaney", "delbos": "delbos", "dele": "del", "delegatie": "delegatie", "delegatieleden": "delegatieled", "delen": "del", "delende": "delend", "delfgauw": "delfgauw", "delfland": "delfland", "delfstoffen": "delfstoff", "delfstoffenplanning": "delfstoffenplann", "delfstoffenwinning": "delfstoffenwinn", "delfstofwinning": "delfstofwinn", "delft": "delft", "delfts": "delft", "delftse": "delft", "delfzijl": "delfzijl", "delibereren": "deliberer", "delicaat": "delicat", "delicaats": "delicat", "delict": "delict", "delicten": "delict", "delta": "delta", "deltagebied": "deltagebied", "deltaplan": "deltaplan", "deltawerken": "deltawerk", "deltawet": "deltawet", "deltawig": "deltaw", "delvocid": "delvocid", "demaco": "demaco", "demag": "demag", "deme": "dem", "demetalisering": "demetaliser", "demeyer": "demeyer", "demi": "demi", "demineralisatie": "demineralisatie", "democratie": "democratie", "democratisch": "democratisch", "democratische": "democratisch", "democratisering": "democratiser", "democratiseringsmaatregelen": "democratiseringsmaatregel", "demografische": "demografisch", "demon": "demon", "demonen": "demon", "demonstranten": "demonstrant", "demonstratie": "demonstratie", "demonstratiebedrijven": "demonstratiebedrijv", "demonstratiefabriek": "demonstratiefabriek", "demonstratiefase": "demonstratiefas", "demonstratiemetingen": "demonstratiemet", "demonstratieproeven": "demonstratieproev", "demonstratieprogramma": "demonstratieprogramma", "demonstratieproject": "demonstratieproject", "demonstratieprojecten": "demonstratieproject", "demonstraties": "demonstraties", "demonstratietocht": "demonstratietocht", "demonstratieversie": "demonstratieversie", "demonstration": "demonstration", "demonstreerde": "demonstreerd", "demonstreert": "demonstreert", "demonstreren": "demonstrer", "demontabel": "demontabel", "demontabele": "demontabel", "demontage": "demontag", "demontagetechnieken": "demontagetechniek", "demonteerbaar": "demonter", "demonteren": "demonter", "demoproject": "demoproject", "dempen": "demp", "dempende": "dempend", "demping": "demping", "den": "den", "dender": "dender", "dendrieten": "dendriet", "denemarken": "denemark", "dengriza": "dengriza", "denitrificatie": "denitrificatie", "denk": "denk", "dènk": "dènk", "denkbare": "denkbar", "denkbeelden": "denkbeeld", "denkelijk": "denkelijk", "denken": "denk", "dènken": "dènk", "denkend": "denkend", "denkende": "denkend", "denkensstilte": "denkensstilt", "denkensvermoeidheid": "denkensvermoeid", "denker": "denker", "denksporten": "denksport", "denkt": "denkt", "dènkt": "dènkt", "denkwijze": "denkwijz", "denne": "denn", "denneboom": "dennebom", "dennebos": "dennebos", "denneheuvels": "denneheuvel", "dennen": "denn", "dennengeur": "dennengeur", "dennenheuvelen": "dennenheuvel", "denneweg": "denneweg", "denox": "denox", "densiteit": "densiteit", "density": "density", "denver": "denver", "deos": "deos", "departamento": "departamento", "departement": "departement", "departementale": "departemental", "departementen": "departement", "department": "department", "departments": "department", "deponeren": "deponer", "deponering": "deponer", "deponie": "deponie", "deponievelden": "deponieveld", "depos": "depos", "depositie": "depositie", "depositiegebied": "depositiegebied", "depositierechten": "depositierecht", "depositorekeningen": "depositoreken", "depot": "depot", "depots": "depot", "depressies": "depressies", "der": "der", "derangeer": "deranger", "derde": "derd", "derden": "derd", "deregulering": "dereguler", "deretha": "deretha", "dergelijk": "dergelijk", "dergelijke": "dergelijk", "dergelijks": "dergelijk", "derhalve": "derhalv", "derived": "derived", "derks": "derk", "dermate": "dermat", "derrière": "derrièr", "dertien": "dertien", "dertiende": "dertiend", "dertienduizend": "dertienduiz", "dertig": "dertig", "dertigduizend": "dertigduiz", "dertigen": "dertig", "dertigtal": "dertigtal", "derving": "derving", "des": "des", "dès": "dès", "desalniettemin": "desalniettemin", "desastreus": "desastreus", "desastreuze": "desastreuz", "desbetreffende": "desbetreff", "desertificatie": "desertificatie", "design": "design", "designproject": "designproject", "designs": "design", "desilluzie": "desilluzie", "desinfecteren": "desinfecter", "desinfectie": "desinfectie", "desinfectieinstallatie": "desinfectieinstallatie", "desinfectiesystemen": "desinfectiesystem", "desintegreren": "desintegrer", "desinvesteringen": "desinvester", "desk": "desk", "deskundig": "deskund", "deskundige": "deskund", "deskundigen": "deskund", "deskundigenpool": "deskundigenpol", "deskundigheid": "deskund", "desniettemin": "desniettemin", "desnoods": "desnod", "desondanks": "desondank", "desorptie": "desorptie", "dessel": "dessel", "dessens": "dessen", "dessert": "dessert", "dessertborden": "dessertbord", "dessertje": "dessertj", "destec": "destec", "destijds": "destijd", "destillaat": "destillat", "destillatiekolom": "destillatiekolom", "destructie": "destructie", "destructiebedrijven": "destructiebedrijv", "destructieve": "destructiev", "destructiewet": "destructiewet", "destructoren": "destructor", "det": "det", "detail": "detail", "détail": "detail", "detailhandel": "detailhandel", "detailhandelsconcern": "detailhandelsconcern", "detaillering": "detailler", "detaillist": "detaillist", "detaillisten": "detaillist", "details": "detail", "détails": "detail", "detecteert": "detecteert", "detecteren": "detecter", "detectie": "detectie", "detectieapparatuur": "detectieapparatur", "detectiegrens": "detectiegren", "detectielimiet": "detectielimiet", "detectielimieten": "detectielimiet", "detectiemethoden": "detectiemethod", "detectiestations": "detectiestation", "detection": "detection", "detectives": "detectives", "detector": "detector", "detention": "detention", "detergenten": "detergent", "deterioration": "deterioration", "deterministische": "deterministisch", "detlef": "detlef", "detonation": "detonation", "detoxificatie": "detoxificatie", "détraqué": "detraque", "detroit": "detroit", "deugd": "deugd", "deugde": "deugd", "deugdelijk": "deugdelijk", "deugdelijke": "deugdelijk", "deugdelijkheid": "deugdelijk", "deugdzaam": "deugdzam", "deugt": "deugt", "deuntje": "deuntj", "deur": "deur", "deuren": "deur", "deurknop": "deurknop", "deurne": "deurn", "deurnese": "deurnes", "deurnse": "deurn", "deurposten": "deurpost", "deurtje": "deurtj", "deurtjes": "deurtjes", "deurverliezen": "deurverliez", "deuss": "deus", "deutag": "deutag", "deuterium": "deuterium", "deutsche": "deutsch", "deutschen": "deutsch", "deutscher": "deutscher", "deutschland": "deutschland", "deutschlands": "deutschland", "devaluatie": "devaluatie", "development": "development", "developments": "development", "deventer": "deventer", "deventernaren": "deventernar", "devénus": "devenus", "devices": "devices", "devriese": "devries", "devulcanisering": "devulcaniser", "devulcaniseringsproces": "devulcaniseringsproces", "dewi": "dewi", "deze": "dez", "déze": "dez", "dezelfde": "dezelfd", "dezen": "dez", "dezer": "dezer", "dézingage": "dezingag", "dezonering": "dezoner", "dfa": "dfa", "dfg": "dfg", "dg": "dg", "dgis": "dgis", "dgm": "dgm", "dgt": "dgt", "dgw": "dgw", "dhr": "dhr", "dhv": "dhv", "dia": "dia", "diafaan": "diafan", "diagnose": "diagnos", "diagonaal": "diagonal", "dialoog": "dialog", "diamant": "diamant", "diamanten": "diamant", "diameter": "diameter", "diameters": "diameter", "diana": "diana", "diary": "diary", "dibenzo": "dibenzo", "dibenzofurenen": "dibenzofuren", "dichloorbenzeen": "dichloorbenzen", "dichloormethaan": "dichloormethan", "dichloran": "dichloran", "dicht": "dicht", "dichtbevolkt": "dichtbevolkt", "dichtbevolkte": "dichtbevolkt", "dichtbij": "dichtbij", "dichte": "dicht", "dichten": "dicht", "dichter": "dichter", "dichterbij": "dichterbij", "dichterlijk": "dichter", "dichterlijke": "dichter", "dichtgeduisterde": "dichtgeduisterd", "dichtgeknepen": "dichtgeknep", "dichtgeknoopt": "dichtgeknoopt", "dichtgesloten": "dichtgeslot", "dichtheden": "dichtheid", "dichtheid": "dichtheid", "dichtheidsscheiding": "dichtheidsscheid", "dichtheidsverschil": "dichtheidsverschil", "dichtkwakken": "dichtkwak", "dichtslaande": "dichtslaand", "dichtslibben": "dichtslibb", "dichtslibbende": "dichtslibb", "dichtst": "dichtst", "dichtstbijzijnde": "dichtstbijzijnd", "dichttrekken": "dichttrek", "dick": "dick", "dicke": "dick", "dicofol": "dicofol", "dictatoriale": "dictatorial", "didam": "didam", "die": "die", "diè": "diè", "dief": "dief", "diefstal": "diefstal", "diegene": "dieg", "diegenen": "diegen", "diego": "diego", "diekstra": "diekstra", "dieldrin": "dieldrin", "diemen": "diem", "diemertak": "diemertak", "diemerzeedijk": "diemerzeedijk", "dienaangaande": "dienaangaand", "diende": "diend", "dienden": "diend", "dienen": "dien", "dienknechts": "dienknecht", "diens": "dien", "dienst": "dienst", "dienstbare": "dienstbar", "dienstboden": "dienstbod", "dienstdoende": "dienstdoend", "diensten": "dienst", "dienstenafval": "dienstenafval", "dienstenbonden": "dienstenbond", "dienstensector": "dienstensector", "dienstkringen": "dienstkring", "dienstmaagd": "dienstmaagd", "dienstverlenend": "dienstverlen", "dienstverlenende": "dienstverlen", "dienstverlening": "dienstverlen", "dient": "dient", "diep": "diep", "diepe": "diep", "dieper": "dieper", "diéper": "dieper", "diepere": "dieper", "diepgaander": "diepgaander", "diepgevroren": "diepgevror", "diepgravende": "diepgrav", "diepinfiltratie": "diepinfiltratie", "diepst": "diepst", "diepste": "diepst", "diepte": "diept", "diepten": "diept", "dieptepunt": "dieptepunt", "dieptes": "dieptes", "dieptewerking": "dieptewerk", "diepvries": "diepvries", "diepvrieskast": "diepvrieskast", "diepvriesprodukten": "diepvriesprodukt", "dier": "dier", "dierbaar": "dierbar", "dierbaars": "dierbar", "dieren": "dier", "dierenarts": "dierenart", "dierenartsen": "dierenarts", "dierenbeschermers": "dierenbeschermer", "dierenbescherming": "dierenbescherm", "dierenbestand": "dierenbestand", "dierenleed": "dierenled", "dierenpark": "dierenpark", "dierentuin": "dierentuin", "dierenwelzijn": "dierenwelzijn", "diergroepen": "diergroep", "dierlijk": "dierlijk", "dierlijke": "dierlijk", "dierplaats": "dierplat", "dierplaatsen": "dierplaats", "dierplagen": "dierplag", "dierproeven": "dierproev", "diersoorten": "diersoort", "diertellingen": "diertell", "diervoeder": "diervoeder", "diervoeders": "diervoeder", "diervriendelijk": "diervriend", "diervriendelijker": "diervriendelijker", "diesel": "diesel", "dieselaccijnzen": "dieselaccijnz", "dieselauto": "dieselauto", "dieselbehoefte": "dieselbehoeft", "dieselgassen": "dieselgass", "dieselgemaal": "dieselgemal", "dieselmotor": "dieselmotor", "dieselmotoren": "dieselmotor", "dieselolie": "dieselolie", "diesels": "diesel", "dieseluitlaatgassen": "dieseluitlaatgass", "dieselverbruik": "dieselverbruik", "dieselwagens": "dieselwagen", "dietheenglycol": "dietheenglycol", "diethylamine": "diethylamin", "dietz": "dietz", "dievenzielen": "dievenziel", "diever": "diever", "diezelfde": "diezelfd", "difazio": "difazio", "difenylmethaan": "difenylmethan", "diffamatie": "diffamatie", "differentiaalgeneratoren": "differentiaalgenerator", "differential": "differential", "differentieel": "differentieel", "differentiemodel": "differentiemodel", "diffuse": "diffus", "diffuus": "diffus", "diftar": "diftar", "dig": "dig", "digereren": "digerer", "digererende": "digerer", "digitaal": "digital", "digital": "digital", "digitale": "digital", "diglycolamine": "diglycolamin", "diisocyanaat": "diisocyanat", "diisodecylphthalaat": "diisodecylphthalat", "dij": "dij", "dijen": "dij", "dijk": "dijk", "dijkbekleding": "dijkbekled", "dijkdoorbraak": "dijkdoorbrak", "dijken": "dijk", "dijkenbouwer": "dijkenbouwer", "dijkerhof": "dijkerhof", "dijkerhofs": "dijkerhof", "dijklichaam": "dijklicham", "dijkondermijning": "dijkondermijn", "dijkophoging": "dijkophog", "dijkstal": "dijkstal", "dijkstraat": "dijkstrat", "dijkvak": "dijkvak", "dijkverbetering": "dijkverbeter", "dijkverhoging": "dijkverhog", "dijkverzwaring": "dijkverzwar", "dijkverzwaringen": "dijkverzwar", "dijkverzwaringsprogramma": "dijkverzwaringsprogramma", "dijon": "dijon", "dijt": "dijt", "dik": "dik", "dikke": "dik", "dikker": "dikker", "dikkere": "dikker", "dikte": "dikt", "dikten": "dikt", "dikwijls": "dikwijl", "dilemma": "dilemma", "dilettant": "dilettant", "dilettantisme": "dilettantism", "diligentia": "diligentia", "dillenburgstraat": "dillenburgstrat", "dimecron": "dimecron", "dimensies": "dimensies", "dimensionale": "dimensional", "dimensioneren": "dimensioner", "dimensionering": "dimensioner", "dimethoaat": "dimethoaat", "dimethyl": "dimethyl", "dimethylether": "dimethylether", "dimilin": "dimilin", "dimix": "dimix", "din": "din", "dinatoire": "dinatoir", "dineer": "diner", "dineert": "dineert", "diner": "diner", "dinér": "diner", "dineren": "diner", "diners": "diner", "dinertafel": "dinertafel", "dinertje": "dinertj", "dinertjes": "dinertjes", "ding": "ding", "dingen": "ding", "dingetje": "dingetj", "dingetjes": "dingetjes", "dingt": "dingt", "dini": "dini", "dinkel": "dinkel", "dinkelman": "dinkelman", "dino": "dino", "dinsdag": "dinsdag", "dinsdagochtend": "dinsdagocht", "dinter": "dinter", "dinxperlo": "dinxperlo", "dinxperloo": "dinxperloo", "diosynth": "diosynth", "dioxin": "dioxin", "dioxine": "dioxin", "dioxinehoudend": "dioxinehoud", "dioxinen": "dioxin", "dioxines": "dioxines", "dioxinestrategie": "dioxinestrategie", "dioxinevondsten": "dioxinevondst", "dioxyne": "dioxyn", "dioxynen": "dioxyn", "dioxynes": "dioxynes", "dipenteen": "dipenten", "diploma": "diploma", "diplomaat": "diplomat", "diplomaten": "diplomat", "diplomatie": "diplomatie", "diplomatiek": "diplomatiek", "diplomatieke": "diplomatiek", "diplomatique": "diplomatique", "diplomatisch": "diplomatisch", "dipreen": "dipren", "dire": "dir", "direct": "direct", "directe": "direct", "directeur": "directeur", "directeuren": "directeur", "directie": "directie", "directies": "directies", "direction": "direction", "director": "director", "directoraat": "directorat", "dirk": "dirk", "dis": "dis", "disassembly": "disassembly", "discipel": "discipel", "discipline": "disciplin", "disciplines": "disciplines", "discontinu": "discontinu", "discontovoet": "discontovoet", "discotheken": "discothek", "discreet": "discret", "discriminerend": "discriminer", "discussie": "discussie", "discussieavond": "discussieavond", "discussiecentrum": "discussiecentrum", "discussienota": "discussienota", "discussienotitie": "discussienotitie", "discussiepartners": "discussiepartner", "discussieplatformen": "discussieplatform", "discussiepunt": "discussiepunt", "discussiepunten": "discussiepunt", "discussiëren": "discussier", "discussies": "discussies", "discutabel": "discutabel", "disgenoten": "disgenot", "disharmonie": "disharmonie", "disharmonisch": "disharmonisch", "diskette": "disket", "diskrediet": "diskrediet", "disks": "disk", "disparaat": "disparat", "disparate": "disparat", "dispersie": "dispersie", "dispersies": "dispersies", "display": "display", "disposal": "disposal", "dissident": "dissident", "dissidente": "dissident", "dissolution": "dissolution", "distance": "distanc", "distillaat": "distillat", "distilleerderijen": "distilleerderij", "distilleren": "distiller", "distinctie": "distinctie", "distractie": "distractie", "distri": "distri", "distribueert": "distribueert", "distributed": "distributed", "distributeur": "distributeur", "distributeurs": "distributeur", "distributie": "distributie", "distributiebedrijf": "distributiebedrijf", "distributiebedrijven": "distributiebedrijv", "distributiecentra": "distributiecentra", "distributiecentrum": "distributiecentrum", "distributiefunctie": "distributiefunctie", "distributielogistiek": "distributielogistiek", "distributiemaatschappij": "distributiemaatschappij", "distributiemaatschappijen": "distributiemaatschappij", "distributienet": "distributienet", "distributiepark": "distributiepark", "distributiesector": "distributiesector", "distributiesysteem": "distributiesystem", "distributiesystemen": "distributiesystem", "district": "district", "districten": "district", "districtshoofd": "districtshoofd", "districtsmanager": "districtsmanager", "dit": "dit", "ditar": "ditar", "dithiocarbamaten": "dithiocarbamat", "ditmaal": "ditmal", "ditshuizen": "ditshuiz", "ditzelfde": "ditzelfd", "diuron": "diuron", "diuronvervuiling": "diuronvervuil", "divan": "divan", "diverse": "diver", "diverseren": "diverser", "diversified": "diversified", "diversiteit": "diversiteit", "dividend": "divid", "dividenden": "divid", "divisie": "divisie", "divisies": "divisies", "djakarta": "djakarta", "djedjonkong": "djedjonkong", "dk": "dk", "dkny": "dkny", "dkr": "dkr", "dlo": "dlo", "dlr": "dlr", "dlv": "dlv", "dm": "dm", "dme": "dme", "dmu": "dmu", "dmw": "dmw", "dna": "dna", "dnas": "dnas", "dnv": "dnv", "dobbelstenen": "dobbelsten", "dobber": "dobber", "dobbestroom": "dobbestrom", "dobris": "dobris", "doceerventielen": "doceerventiel", "docent": "docent", "docenten": "docent", "doch": "doch", "dochter": "dochter", "dochterbedrijf": "dochterbedrijf", "dochteren": "dochter", "dochtermaatschappij": "dochtermaatschappij", "dochteronderneming": "dochterondernem", "dochterondernemingen": "dochterondernem", "dochters": "dochter", "dochtertje": "dochtertj", "doctoraal": "doctoral", "doctoraalscriptie": "doctoraalscriptie", "doctoraalstudenten": "doctoraalstudent", "document": "document", "documentatie": "documentatie", "documentatiecentrum": "documentatiecentrum", "documenten": "document", "dodderig": "dodder", "dode": "dod", "dodelijk": "dodelijk", "dodelijke": "dodelijk", "doden": "dod", "dodewaard": "dodewaard", "doding": "doding", "doe": "doe", "doek": "doek", "doèk": "doèk", "doeken": "doek", "doekenfilter": "doekenfilter", "doekenfilters": "doekenfilter", "doekje": "doekj", "doel": "doel", "doelde": "doeld", "doeleinden": "doeleind", "doelen": "doel", "doelende": "doelend", "doelgerichte": "doelgericht", "doelgerichter": "doelgerichter", "doelgroep": "doelgroep", "doelgroepen": "doelgroep", "doelgroepenbeleid": "doelgroepenbeleid", "doelgroepenoverleg": "doelgroepenoverleg", "doelloos": "doellos", "doelloosheid": "doellos", "doelmatig": "doelmat", "doelmatige": "doelmat", "doelmatiger": "doelmatiger", "doelmatigheid": "doelmat", "doeloe": "doeloe", "doelstelling": "doelstell", "doelstellingen": "doelstell", "doelt": "doelt", "doeltreffend": "doeltreff", "doeltreffende": "doeltreff", "doeltreffender": "doeltreffender", "doeltreffendheid": "doeltreff", "doelvoorschriften": "doelvoorschrift", "doem": "doem", "doemde": "doemd", "doemden": "doemd", "doemdenken": "doemdenk", "doemen": "doem", "doen": "doen", "dòen": "dòen", "doenbaar": "doenbar", "doende": "doend", "doenerij": "doenerij", "doet": "doet", "doetinchem": "doetinchem", "doetinchemse": "doetinchem", "doezelde": "doezeld", "doezeling": "doezel", "doezeltje": "doezeltj", "dof": "dof", "doffe": "doff", "dok": "dok", "doken": "dok", "dokken": "dok", "dokkum": "dokkum", "dokter": "dokter", "dokters": "dokter", "doktertje": "doktertj", "doktoren": "doktor", "dokumentatiedienst": "dokumentatiedienst", "dokweg": "dokweg", "dokwerker": "dokwerker", "dol": "dol", "dòl": "dòl", "dole": "dol", "dolf": "dolf", "dolfijnen": "dolfijn", "dolheden": "dolheid", "dolheid": "dolheid", "dolkmes": "dolkmes", "dollach": "dollach", "dollar": "dollar", "dollarcent": "dollarcent", "dollard": "dollard", "dollarkoers": "dollarkoer", "dollars": "dollar", "dolle": "doll", "doller": "doller", "dolletjes": "dolletjes", "dolman": "dolman", "dolomiet": "dolomiet", "dom": "dom", "domeinen": "domein", "domheid": "domheid", "dominante": "dominant", "dominanter": "dominanter", "domineerde": "domineerd", "domineren": "dominer", "dominerende": "dominer", "domino": "domino", "dominostenen": "dominosten", "domme": "domm", "dommel": "dommel", "dommelde": "dommeld", "dommelig": "dommel", "dommen": "domm", "dommetjes": "dommetjes", "domo": "domo", "dompel": "dompel", "dompelen": "dompel", "dompelende": "dompel", "dompelpompen": "dompelpomp", "dompelsysteem": "dompelsystem", "doms": "dom", "donateurs": "donateur", "donaties": "donaties", "donatus": "donatus", "donder": "donder", "donderdag": "donderdag", "donderdagavond": "donderdagavond", "donderde": "donderd", "donderen": "donder", "donderwagen": "donderwag", "doneert": "doneert", "dong": "dong", "dongping": "dongping", "donker": "donker", "donkerblauw": "donkerblauw", "donkerbruin": "donkerbruin", "donkerde": "donkerd", "donkerden": "donkerd", "donkerder": "donkerder", "donkerdik": "donkerdik", "donkere": "donker", "donkerende": "donker", "donkerrode": "donkerrod", "donkerstraat": "donkerstrat", "donkertjes": "donkertjes", "donorlanden": "donorland", "dons": "don", "donsde": "donsd", "donsdiepe": "donsdiep", "donzen": "donz", "donzig": "donzig", "donzige": "donzig", "dood": "dod", "doód": "dod", "doodde": "dod", "doodden": "dod", "doodeenvoudig": "doodeenvoud", "doodeenvoudige": "doodeenvoud", "doodgaan": "doodgan", "doodgaat": "doodgat", "doodgewoon": "doodgewon", "doodkalm": "doodkalm", "doodmoe": "doodmoe", "doodmoeheid": "doodmoeheid", "doods": "dod", "doodsbang": "doodsbang", "doodsbleek": "doodsblek", "doodsbleke": "doodsblek", "doodse": "dod", "doodsheid": "doodsheid", "doodskist": "doodskist", "doodsoorzaak": "doodsoorzak", "doodsoorzaken": "doodsoorzak", "doodsstrijd": "doodsstrijd", "doodstil": "doodstil", "doodstille": "doodstill", "doodstraf": "doodstraf", "doodstraffen": "doodstraff", "doodsvonnissen": "doodsvonniss", "doodt": "doodt", "doodziek": "doodziek", "doof": "dof", "doofde": "doofd", "doofden": "doofd", "dooi": "dooi", "dooien": "dooi", "dooiing": "dooiing", "dooimiddel": "dooimiddel", "dooimiddelen": "dooimiddel", "dooiproces": "dooiproces", "dooit": "dooit", "dooiwerking": "dooiwerk", "dook": "dok", "doolhof": "doolhof", "doomden": "doomd", "doomernik": "doomernik", "door": "dor", "dooraderd": "dooraderd", "doorbereken": "doorberek", "doorberekend": "doorberek", "doorberekenen": "doorbereken", "doorboring": "doorbor", "doorbraak": "doorbrak", "doorbraaktechnologieën": "doorbraaktechnologieen", "doorbraken": "doorbrak", "doorbreken": "doorbrek", "doorbroken": "doorbrok", "doordacht": "doordacht", "doordat": "doordat", "doordraaien": "doordraai", "doordringbare": "doordring", "doordringen": "doordring", "doordringend": "doordring", "doordringende": "doordring", "doordringing": "doordring", "doordringt": "doordringt", "doordrong": "doordrong", "doordrongen": "doordrong", "dooreen": "dooren", "doorgaan": "doorgan", "doorgaande": "doorgaand", "doorgaans": "doorgan", "doorgaat": "doorgat", "doorgangsdepot": "doorgangsdepot", "doorgangsdepots": "doorgangsdepot", "doorgebracht": "doorgebracht", "doorgebroken": "doorgebrok", "doorgedrongen": "doorgedrong", "doorgedrukt": "doorgedrukt", "doorgegeven": "doorgegev", "doorgehaalde": "doorgehaald", "doorgeleverd": "doorgeleverd", "doorgelicht": "doorgelicht", "doorgemaakt": "doorgemaakt", "doorgeschoten": "doorgeschot", "doorgesluisd": "doorgesluisd", "doorgesneden": "doorgesned", "doorgespeeld": "doorgespeeld", "doorgespoeld": "doorgespoeld", "doorgevoerd": "doorgevoerd", "doorgezaagd": "doorgezaagd", "doorgezaaid": "doorgezaaid", "doorgezet": "doorgezet", "doorging": "doorging", "doorglimpt": "doorglimpt", "doorgloeid": "doorgloeid", "doorgroeibaar": "doorgroeibar", "doorgroeibaarheid": "doorgroeibar", "doorgroeien": "doorgroei", "doorgroeiend": "doorgroei", "doorgrondde": "doorgrond", "doorgronden": "doorgrond", "doorheen": "doorhen", "doorhuiverd": "doorhuiverd", "doorhuiverde": "doorhuiverd", "doorhuiveren": "doorhuiver", "doorkende": "doorkend", "doorklinken": "doorklink", "doorklinkende": "doorklink", "doorkneed": "doorkned", "doorkomen": "doorkom", "doorkruisen": "doorkruis", "doorkruisende": "doorkruis", "doorlaat": "doorlat", "doorlaatwaarde": "doorlaatwaard", "doorlas": "doorlas", "doorlaten": "doorlat", "doorlatende": "doorlat", "doorlatendheid": "doorlat", "doorleefd": "doorleefd", "doorlichting": "doorlicht", "doorliep": "doorliep", "doorliepen": "doorliep", "doorloopt": "doorloopt", "doorlooptijd": "doorlooptijd", "doorlooptijden": "doorlooptijd", "doorlopen": "doorlop", "doorlopend": "doorlop", "doormaken": "doormak", "doormengd": "doormengd", "doornbos": "doornbos", "doorne": "doorn", "doornenburg": "doornenburg", "doornspijk": "doornspijk", "doorpompen": "doorpomp", "doorpraten": "doorprat", "doorpriemde": "doorpriemd", "doorprikkende": "doorprik", "doorrekening": "doorreken", "doorrekent": "doorrekent", "doors": "dor", "doorschemeren": "doorschemer", "doorschemering": "doorschemer", "doorschieten": "doorschiet", "doorschoten": "doorschot", "doorslaan": "doorslan", "doorslag": "doorslag", "doorslaggevend": "doorslaggev", "doorslaggevende": "doorslaggev", "doorsnede": "doorsned", "doorsneden": "doorsned", "doorsnee": "doorsnee", "doorsneed": "doorsned", "doorsnijdt": "doorsnijdt", "doorspoelen": "doorspoel", "doorsprak": "doorsprak", "doorspraken": "doorsprak", "doorspreken": "doorsprek", "doorstaan": "doorstan", "doorstarters": "doorstarter", "doorstoomde": "doorstoomd", "doorstroming": "doorstrom", "doorstromingsmaatregelen": "doorstromingsmaatregel", "doorstroombegrenzers": "doorstroombegrenzer", "doorstroomelektrolysecel": "doorstroomelektrolysecel", "doortastender": "doortastender", "doortramd": "doortramd", "doortrekken": "doortrek", "doortrilde": "doortrild", "doortrippeld": "doortrippeld", "doortrokken": "doortrok", "doorverkocht": "doorverkocht", "doorvloeien": "doorvloei", "doorvoed": "doorvoed", "doorvoeds": "doorvoed", "doorvoeld": "doorvoeld", "doorvoer": "doorvoer", "doorvoeren": "doorvoer", "doorvoerland": "doorvoerland", "doorwaaide": "doorwaaid", "doorwaden": "doorwad", "doorwas": "doorwas", "doorweekt": "doorweekt", "doorwerken": "doorwerk", "doorzaaien": "doorzaai", "doorzaaimachine": "doorzaaimachin", "doorzag": "doorzag", "doorzet": "doorzet", "doorzetten": "doorzet", "doorzichtig": "doorzicht", "doorzichtige": "doorzicht", "doorzichtiger": "doorzichtiger", "doorzien": "doorzien", "doorzocht": "doorzocht", "doorzoekende": "doorzoek", "doos": "dos", "doosje": "doosj", "dopje": "dopj", "doppen": "dopp", "dor": "dor", "dordecht": "dordecht", "dordrecht": "dordrecht", "dordtse": "dordt", "dorine": "dorin", "dorinetje": "dorinetj", "dormagen": "dormag", "dorp": "dorp", "dorpen": "dorp", "dorpsbewoners": "dorpsbewoner", "dorpscomité": "dorpscomit", "dorpsgemeenschappen": "dorpsgemeenschapp", "dorpshuis": "dorpshuis", "dorpskern": "dorpskern", "dorpskernen": "dorpskern", "dorpsraad": "dorpsrad", "dorpsspitsen": "dorpsspits", "dorpsspitsjes": "dorpsspitsjes", "dorpswinkel": "dorpswinkel", "dorre": "dorr", "dorst": "dorst", "dòrst": "dòrst", "dorsten": "dorst", "dorstig": "dorstig", "dorstige": "dorstig", "dortmund": "dortmund", "dos": "dos", "dosering": "doser", "doseringen": "doser", "doseringsinstallatie": "doseringsinstallatie", "dosing": "dosing", "dosis": "dosis", "dossiers": "dossier", "dot": "dot", "dotaties": "dotaties", "dotje": "dotj", "dotterbloem": "dotterbloem", "dotti": "dotti", "douane": "douan", "douaniers": "douanier", "douche": "douch", "doucheduur": "douchedur", "douchekop": "douchekop", "douchekoppen": "douchekopp", "douchen": "douch", "douches": "douches", "douchespaarkoppen": "douchespaarkopp", "douchte": "doucht", "douglas": "douglas", "douglassparren": "douglassparr", "doutriaux": "doutriaux", "douwde": "douwd", "dove": "dov", "doven": "dov", "dovende": "dovend", "dow": "dow", "dowell": "dowell", "down": "down", "downieuws": "downieuw", "dozen": "doz", "dp": "dp", "dpm": "dpm", "dr": "dr", "draad": "drad", "draadafbinding": "draadafbind", "draadloos": "draadlos", "draadvormige": "draadvorm", "draaf": "draf", "draafde": "draafd", "draag": "drag", "draagbaar": "draagbar", "draagbanden": "draagband", "draagbare": "draagbar", "draagconstructies": "draagconstructies", "draagfuncties": "draagfuncties", "draagster": "draagster", "draagt": "draagt", "draagvlak": "draagvlak", "draagvlakvergroting": "draagvlakvergrot", "draagvleugelboot": "draagvleugelbot", "draagwijdte": "draagwijdt", "draai": "draai", "draaiboek": "draaiboek", "draaide": "draaid", "draaiden": "draaid", "draaien": "draai", "draaiend": "draaiend", "draaiende": "draaiend", "draaiing": "draaiing", "draaijer": "draaijer", "draaiknopinstelling": "draaiknopinstell", "draaimolen": "draaimol", "draaiorgel": "draaiorgel", "draaiorgels": "draaiorgel", "draaischijven": "draaischijv", "draaischuif": "draaischuif", "draait": "draait", "draaiuren": "draaiur", "draak": "drak", "drab": "drab", "drachten": "dracht", "drachtster": "drachtster", "draden": "drad", "dradenstelsel": "dradenstelsel", "dragelijk": "dragelijk", "dragen": "drag", "dragende": "dragend", "drager": "drager", "dragermateriaal": "dragermateriaal", "dragermaterialen": "dragermaterial", "dragers": "drager", "drain": "drain", "drainage": "drainag", "drainagebuizen": "drainagebuiz", "drainagelaag": "drainagelag", "drainagemat": "drainagemat", "drainagepijpen": "drainagepijp", "drainagestelsels": "drainagestelsel", "drainagewater": "drainagewater", "draineren": "drainer", "drainstein": "drainstein", "drainstone": "drainston", "drainwater": "drainwater", "drainwaterontsmetters": "drainwaterontsmetter", "drakebeest": "drakebeest", "drakebloed": "drakebloed", "drakebloedregen": "drakebloedreg", "drakegewormte": "drakegewormt", "drakeharen": "drakehar", "drakeklauwen": "drakeklauw", "drakelijf": "drakelijf", "drakengedierte": "drakengediert", "drakenkronkelingen": "drakenkronkel", "drakentong": "drakentong", "drakeregenstralen": "drakeregenstral", "drakerug": "drakerug", "dramatisch": "dramatisch", "dramatische": "dramatisch", "drang": "drang", "drank": "drank", "drankblikje": "drankblikj", "dranken": "drank", "drankenautomaten": "drankenautomat", "drankenfabriek": "drankenfabriek", "drankenkarton": "drankenkarton", "drankimporteurs": "drankimporteur", "drankindustrie": "drankindustrie", "drankkartons": "drankkarton", "drankproducenten": "drankproducent", "drankverpakking": "drankverpak", "drankverpakkingen": "drankverpak", "drapeerde": "drapeerd", "drassige": "drassig", "drastisch": "drastisch", "drastische": "drastisch", "draven": "drav", "dravend": "dravend", "dravende": "dravend", "drax": "drax", "dredging": "dredging", "dreef": "dref", "dreefschool": "dreefschol", "dreesen": "dres", "dreesmann": "dreesmann", "dreggen": "dregg", "dreigde": "dreigd", "dreigden": "dreigd", "dreigement": "dreigement", "dreigen": "dreig", "dreigend": "dreigend", "dreigende": "dreigend", "dreigender": "dreigender", "dreiging": "dreiging", "dreigingen": "dreiging", "dreigt": "dreigt", "dreinde": "dreind", "drempel": "drempel", "drempels": "drempel", "drempelwaarde": "drempelwaard", "drensde": "drensd", "drenthe": "drenth", "drenthse": "drenth", "drents": "drent", "drentse": "drent", "dresden": "dresd", "dresser": "dresser", "dreumelse": "dreumel", "dreumesen": "dreumes", "dreunde": "dreund", "dreunden": "dreund", "dreunen": "dreun", "dreunende": "dreunend", "dreunval": "dreunval", "dreven": "drev", "dreyfus": "dreyfus", "drie": "drie", "driebaans": "drieban", "driebergen": "drieberg", "driebladige": "drieblad", "driedaagse": "driedag", "driedelige": "driedel", "driedimensionaal": "driedimensional", "driedimensionale": "driedimensional", "driedubbel": "driedubbel", "driedubbele": "driedubbel", "drieduizend": "drieduiz", "drieën": "drieen", "drieëndertig": "drieendert", "driehoek": "driehoek", "driehoekige": "driehoek", "driehonderd": "driehonderd", "driehonderdduizend": "driehonderdduiz", "driejaarlijkse": "driejar", "driejarig": "driejar", "driekantig": "driekant", "driekwart": "driekwart", "driemaal": "driemal", "driemalen": "driemal", "dries": "dries", "driesens": "driesen", "driestappenplan": "driestappenplan", "drieste": "driest", "driesum": "driesum", "drietal": "drietal", "drietjes": "drietjes", "drievierde": "drievierd", "drievoudig": "drievoud", "drift": "drift", "driftarme": "driftarm", "driftdoelstelling": "driftdoelstell", "driften": "drift", "driftig": "driftig", "driftige": "driftig", "driftloze": "driftloz", "drijfafval": "drijfafval", "drijfdek": "drijfdek", "drijfgassen": "drijfgass", "drijflagen": "drijflag", "drijfmest": "drijfmest", "drijfmiddel": "drijfmiddel", "drijft": "drijft", "drijfveer": "drijfver", "drijfveren": "drijfver", "drijfvermogen": "drijfvermog", "drijfwand": "drijfwand", "drijven": "drijv", "drijvend": "drijvend", "drijvende": "drijvend", "drijver": "drijver", "dril": "dril", "drilling": "drilling", "dring": "dring", "dringen": "dring", "dringend": "dringend", "dringende": "dringend", "dringingen": "dringing", "dringt": "dringt", "drink": "drink", "drinkbaar": "drinkbar", "drinken": "drink", "drinker": "drinker", "drinking": "drinking", "drinkt": "drinkt", "drinkwater": "drinkwater", "drinkwaterbedrijven": "drinkwaterbedrijv", "drinkwaterbereiding": "drinkwaterbereid", "drinkwaterbesparing": "drinkwaterbespar", "drinkwaterbron": "drinkwaterbron", "drinkwaterdoelstelling": "drinkwaterdoelstell", "drinkwaternorm": "drinkwaternorm", "drinkwaterplaats": "drinkwaterplat", "drinkwaterprijzen": "drinkwaterprijz", "drinkwaterproducenten": "drinkwaterproducent", "drinkwaterproduktie": "drinkwaterproduktie", "drinkwaterrichtlijn": "drinkwaterrichtlijn", "drinkwatersector": "drinkwatersector", "drinkwatervoorziening": "drinkwatervoorzien", "droef": "droef", "droefgeestig": "droefgeest", "droefgeestige": "droefgeest", "droefgeestigheid": "droefgeest", "droefheid": "droefheid", "droeg": "droeg", "droegen": "droeg", "droeve": "droev", "droevig": "droevig", "droge": "drog", "drogen": "drog", "drogende": "drogend", "droger": "droger", "drogers": "droger", "drogersysteem": "drogersystem", "drogestof": "drogestof", "drogestofgehalte": "drogestofgehalt", "droging": "droging", "dromen": "drom", "dromenblik": "dromenblik", "dromenbloesems": "dromenbloesem", "dromend": "dromend", "dromende": "dromend", "dromenland": "dromenland", "dromenmelancholie": "dromenmelancholie", "dromer": "dromer", "dromerig": "dromer", "dromerigjes": "dromerigjes", "drommel": "drommel", "drommels": "drommel", "drommen": "dromm", "drong": "drong", "drongen": "drong", "dronk": "dronk", "dronken": "dronk", "dronkenschap": "dronkenschap", "dronte": "dront", "dronten": "dront", "droog": "drog", "drooggelegd": "drooggelegd", "drooghulpstof": "drooghulpstof", "droogkast": "droogkast", "droogleggen": "drooglegg", "droogprestaties": "droogprestaties", "droogproces": "droogproces", "droogprocessen": "droogprocess", "droogstap": "droogstap", "droogste": "droogst", "droogte": "droogt", "droogtemperatuur": "droogtemperatur", "droogteperiode": "droogteperiod", "droogtoren": "droogtor", "droogtrommels": "droogtrommel", "droogzolder": "droogzolder", "droom": "drom", "droomde": "droomd", "droomden": "droomd", "droomoneigenlijkheid": "droomoneigen", "droomspel": "droomspel", "droomster": "droomster", "droomt": "droomt", "droop": "drop", "drop": "drop", "dropen": "drop", "droppel": "droppel", "droppelen": "droppel", "droppelende": "droppel", "dros": "dros", "drost": "drost", "drs": "drs", "drug": "drug", "drugs": "drug", "drugscriminaliteit": "drugscriminaliteit", "drugssmokkel": "drugssmokkel", "druilerige": "druiler", "druipen": "druip", "druipende": "druipend", "druipnat": "druipnat", "druiven": "druiv", "druk": "druk", "drukbestendig": "drukbestend", "drukbevolkte": "drukbevolkt", "drukcontrole": "drukcontrol", "drukinkt": "drukinkt", "drukinkten": "drukinkt", "drukinktfabriek": "drukinktfabriek", "drukinktfabrikanten": "drukinktfabrikant", "drukke": "druk", "drukken": "druk", "drukkend": "drukkend", "drukkende": "drukkend", "drukker": "drukker", "drukking": "drukking", "drukkingen": "drukking", "drukkracht": "drukkracht", "drukmiddel": "drukmiddel", "drukopbouw": "drukopbouw", "drukpomp": "drukpomp", "drukpompen": "drukpomp", "druks": "druk", "druksonde": "druksond", "druksterkte": "druksterkt", "drukt": "drukt", "drukte": "drukt", "drukten": "drukt", "druktes": "druktes", "druktorens": "druktoren", "drukval": "drukval", "drukwaterreactoren": "drukwaterreactor", "drukwatertype": "drukwatertyp", "drukwerk": "drukwerk", "drum": "drum", "drumhandling": "drumhandl", "drumhouders": "drumhouder", "drumliner": "drumliner", "drums": "drum", "drumveiligheidsprodukten": "drumveiligheidsprodukt", "druppel": "druppel", "druppelaars": "druppelar", "druppelende": "druppel", "druppelgrootte": "druppelgrot", "druppels": "druppel", "druppelsystemen": "druppelsystem", "druppeltje": "druppeltj", "druppelvorm": "druppelvorm", "dry": "dry", "drysys": "drysys", "ds": "ds", "dsm": "dsm", "dti": "dti", "dto": "dto", "dts": "dts", "du": "du", "dual": "dual", "duale": "dual", "duales": "duales", "dubbed": "dubbed", "dubbel": "dubbel", "dubbele": "dubbel", "dubbelglas": "dubbelglas", "dubbelpolige": "dubbelpol", "dubbeltje": "dubbeltj", "dubbelwandige": "dubbelwand", "dubieus": "dubieus", "dubo": "dubo", "duc": "duc", "duel": "duel", "duelleerde": "duelleerd", "duelleren": "dueller", "duf": "duf", "duffe": "duff", "duffelse": "duffel", "duffer": "duffer", "duffryn": "duffryn", "dufheid": "dufheid", "duidde": "duid", "duidelijk": "duidelijk", "duidelijke": "duidelijk", "duidelijker": "duidelijker", "duidelijkheid": "duidelijk", "duidt": "duidt", "duifhuizen": "duifhuiz", "duijts": "duijt", "duijvelaar": "duijvelar", "duijvendak": "duijvendak", "duiken": "duik", "duikende": "duikend", "duiker": "duiker", "duikt": "duikt", "duim": "duim", "duin": "duin", "duinen": "duin", "duinende": "duinend", "duingebied": "duingebied", "duinige": "duinig", "duinigermeer": "duinigermer", "duinkerken": "duinkerk", "duinoord": "duinoord", "duinrellen": "duinrell", "duinvalleien": "duinvallei", "duinwaterbedrijf": "duinwaterbedrijf", "duisburg": "duisburg", "duister": "duister", "duisterde": "duisterd", "duisterden": "duisterd", "duistere": "duister", "duisteren": "duister", "duisterende": "duister", "duistering": "duister", "duisteringen": "duister", "duisternis": "duisternis", "duisternissen": "duisterniss", "duiten": "duit", "duits": "duit", "duitse": "duit", "duitser": "duitser", "duitsers": "duitser", "duitsland": "duitsland", "duitslands": "duitsland", "duitstalige": "duitstal", "duivel": "duivel", "duivels": "duivel", "duivelse": "duivel", "duivelsogen": "duivelsog", "duiveltje": "duiveltj", "duiven": "duiv", "duizelde": "duizeld", "duizelden": "duizeld", "duizelflauw": "duizelflauw", "duizelflauwte": "duizelflauwt", "duizelig": "duizel", "duizeling": "duizel", "duizelingen": "duizel", "duizelingwekkendheid": "duizelingwek", "duizend": "duizend", "duizende": "duizend", "duizenden": "duizend", "duizendmaal": "duizendmal", "duizendpoot": "duizendpot", "duizendpotige": "duizendpot", "duizendste": "duizendst", "duizendvoudig": "duizendvoud", "duldde": "duld", "duldden": "duld", "dulden": "duld", "duldende": "duldend", "dumeco": "dumeco", "dump": "dump", "dumpen": "dump", "dumping": "dumping", "dumpingen": "dumping", "dumpplaats": "dumpplat", "dun": "dun", "dunbevolkte": "dunbevolkt", "dundoek": "dundoek", "dungen": "dung", "dunk": "dunk", "dunkt": "dunkt", "dunne": "dunn", "dunnen": "dunn", "dunner": "dunner", "dunning": "dunning", "dunwandige": "dunwand", "duo": "duo", "duobakken": "duobak", "duos": "duos", "dupe": "dup", "dupleix": "dupleix", "dupont": "dupont", "dur": "dur", "dura": "dura", "duracell": "duracell", "durban": "durban", "dure": "dur", "duren": "dur", "düren": "dur", "durend": "durend", "durende": "durend", "durf": "durf", "durfde": "durfd", "durfden": "durfd", "durft": "durft", "duromeren": "duromer", "dürr": "durr", "durven": "durv", "durvende": "durvend", "dus": "dus", "dusdanig": "dusdan", "düsseldorf": "dusseldorf", "dusseldorp": "dusseldorp", "dust": "dust", "dusver": "dusver", "dusverre": "dusverr", "dutch": "dutch", "dutilh": "dutilh", "dutten": "dut", "duur": "dur", "duurde": "duurd", "duurden": "duurd", "duurder": "duurder", "duurdere": "duurder", "duurst": "duurst", "duurste": "duurst", "duurt": "duurt", "duurzaam": "duurzam", "duurzaamheid": "duurzam", "duurzaamheidsaspecten": "duurzaamheidsaspect", "duurzaamheidsbeleid": "duurzaamheidsbeleid", "duurzaamheidsideaal": "duurzaamheidsideaal", "duurzaamheidskosten": "duurzaamheidskost", "duurzame": "duurzam", "duurzamer": "duurzamer", "duurzamere": "duurzamer", "duut": "dut", "duwbeugel": "duwbeugel", "duwde": "duwd", "duwden": "duwd", "duwen": "duw", "duyn": "duyn", "duyvendak": "duyvendak", "dv": "dv", "dveb": "dveb", "dwa": "dwa", "dwaalde": "dwaald", "dwaalden": "dwaald", "dwaallichten": "dwaallicht", "dwaalogen": "dwaalog", "dwaas": "dwas", "dwaasheden": "dwaasheid", "dwaasheid": "dwaasheid", "dwalen": "dwal", "dwalende": "dwalend", "dwaling": "dwaling", "dwang": "dwang", "dwangband": "dwangband", "dwangmaatregelen": "dwangmaatregel", "dwangmiddelen": "dwangmiddel", "dwangsom": "dwangsom", "dwangsombeschikkingen": "dwangsombeschik", "dwangsombesluit": "dwangsombesluit", "dwangsommen": "dwangsomm", "dwarrelde": "dwarreld", "dwarrelden": "dwarreld", "dwarrelen": "dwarrel", "dwarrelig": "dwarrel", "dwarreligs": "dwarrel", "dwarrelt": "dwarrelt", "dwars": "dwar", "dwarsbomen": "dwarsbom", "dwarsdoorsnede": "dwarsdoorsned", "dwarskijker": "dwarskijker", "dwarsliggen": "dwarsligg", "dwarsliggers": "dwarsligger", "dwarsverbanden": "dwarsverband", "dwaze": "dwaz", "dweep": "dwep", "dweept": "dweept", "dweepte": "dweept", "dweepten": "dweept", "dwepen": "dwep", "dweper": "dweper", "dweperig": "dweper", "dwepers": "dweper", "dweping": "dweping", "dwerg": "dwerg", "dwergplanten": "dwergplant", "dwing": "dwing", "dwingeland": "dwingeland", "dwingelo": "dwingelo", "dwingeloo": "dwingeloo", "dwingen": "dwing", "dwingend": "dwingend", "dwingende": "dwingend", "dwingt": "dwingt", "dwl": "dwl", "dwong": "dwong", "dwòng": "dwòng", "dwongen": "dwong", "dww": "dww", "dyas": "dyas", "dynamic": "dynamic", "dynamica": "dynamica", "dynamiek": "dynamiek", "dynamisch": "dynamisch", "dynamische": "dynamisch", "dynamischer": "dynamischer", "dynamo": "dynamo", "dynasand": "dynasand", "dzh": "dzh", "e": "e", "ea": "ea", "earth": "earth", "earthquake": "earthquak", "east": "east", "eastman": "eastman", "eau": "eau", "eb": "eb", "eba": "eba", "ebara": "ebara", "ebb": "ebb", "ebertstrasse": "ebertstras", "ebo": "ebo", "ebro": "ebro", "ec": "ec", "ecac": "ecac", "ecb": "ecb", "eccentricity": "eccentricity", "ecd": "ecd", "ecf": "ecf", "echt": "echt", "echtbreuk": "echtbreuk", "echte": "echt", "echteld": "echteld", "echteldsedijk": "echteldsedijk", "echter": "echter", "echtgenoot": "echtgenot", "echtgenote": "echtgenot", "echtheid": "echtheid", "echtpaar": "echtpar", "éclat": "eclat", "ecn": "ecn", "eco": "eco", "ecoadvies": "ecoadvies", "ecocare": "ecocar", "ecodesign": "ecodesign", "ecodrome": "ecodrom", "ecoeurope": "ecoeurop", "ecofys": "ecofys", "ecogest": "ecogest", "ecohout": "ecohout", "ecohydrologisch": "ecohydrologisch", "ecohydrologische": "ecohydrologisch", "ecokas": "ecokas", "ecolabel": "ecolabel", "ecolabeling": "ecolabel", "ecole": "ecol", "ecolint": "ecolint", "ecolinten": "ecolint", "ecological": "ecological", "ecologie": "ecologie", "ecologisch": "ecologisch", "ecologische": "ecologisch", "ecologischer": "ecologischer", "ecologiseren": "ecologiser", "ecologisering": "ecologiser", "ecology": "ecology", "ecolonia": "ecolonia", "ecomanagement": "ecomanagement", "ecomare": "ecomar", "econic": "econic", "econologie": "econologie", "econologische": "econologisch", "economen": "econom", "economenvereniging": "economenveren", "econometers": "econometer", "economic": "economic", "economie": "economie", "economieën": "economieen", "economisch": "economisch", "economische": "economisch", "economizers": "economizer", "economy": "economy", "econoom": "econom", "econosto": "econosto", "ecooperation": "ecooperation", "ecopeace": "ecopeac", "ecoplan": "ecoplan", "ecopower": "ecopower", "ecopunten": "ecopunt", "ecoservice": "ecoservic", "ecosysteem": "ecosystem", "ecosystem": "ecosystem", "ecosystemen": "ecosystem", "ecota": "ecota", "ecotax": "ecotax", "ecotaxheffing": "ecotaxheff", "ecotaxverhogingen": "ecotaxverhog", "ecotaxwet": "ecotaxwet", "ecotaxwetgeving": "ecotaxwetgev", "ecoteam": "ecoteam", "ecoteams": "ecoteam", "ecotech": "ecotech", "ecotechniek": "ecotechniek", "ecoterres": "ecoterres", "ecotextil": "ecotextil", "ecotoxiciteit": "ecotoxiciteit", "ecotoxicologie": "ecotoxicologie", "ecover": "ecover", "ecovision": "ecovision", "ecovluchtelingen": "ecovluchtel", "ecowatt": "ecowatt", "ecsa": "ecsa", "ect": "ect", "ecu": "ecu", "ecuador": "ecuador", "eczeem": "eczem", "ed": "ed", "edah": "edah", "edam": "edam", "eddy": "eddy", "ede": "ede", "edel": "edel", "edelchemie": "edelchemie", "edele": "edel", "edeler": "edeler", "edelers": "edeler", "edelherten": "edelhert", "edelmetaal": "edelmetal", "edelmetalen": "edelmetal", "edelmoedig": "edelmoed", "edelpelsdieren": "edelpelsdier", "edelsteen": "edelsten", "eden": "eden", "edese": "edes", "edinburg": "edinburg", "edinburgh": "edinburgh", "edith": "edith", "editie": "editie", "edmont": "edmont", "edon": "edon", "edp": "edp", "edpm": "edpm", "edr": "edr", "eds": "eds", "eduaard": "eduaard", "eduard": "eduard", "educatie": "educatie", "educatiecentra": "educatiecentra", "educatief": "educatief", "educatiepark": "educatiepark", "educatieprogramma": "educatieprogramma", "educatieproject": "educatieproject", "educatieprojecten": "educatieproject", "eea": "eea", "eeg": "eeg", "eelde": "eeld", "eem": "eem", "eemmermeergebied": "eemmermeergebied", "eems": "eem", "eemscentrale": "eemscentral", "eemsgebied": "eemsgebied", "eemshaven": "eemshav", "eemsmond": "eemsmond", "eemsmondgebied": "eemsmondgebied", "eemszijlvest": "eemszijlvest", "een": "een", "éen": "een", "èen": "èen", "eén": "een", "eèn": "eèn", "één": "een", "eendaags": "eendag", "eendekroos": "eendekros", "eenden": "eend", "eenderde": "eenderd", "eénderde": "eenderd", "éénderde": "eenderd", "eenduidig": "eenduid", "eenduidige": "eenduid", "éénduidige": "eenduid", "eenentwintigste": "eenentwintigst", "eenheden": "eenheid", "eenheid": "eenheid", "eenhoorn": "eenhoorn", "éénjarige": "eenjar", "eenklaps": "eenklap", "eenmaal": "eenmal", "eénmaal": "eenmal", "eenmalig": "eenmal", "eenmalige": "eenmal", "éénmalige": "eenmal", "eenmansbediening": "eenmansbedien", "eenrichting": "eenricht", "eens": "een", "éens": "een", "èens": "èen", "eéns": "een", "eensgezind": "eensgezind", "eensklaps": "eensklap", "eensluidend": "eensluid", "eenszelfden": "eenszelfd", "eentje": "eentj", "eentonig": "eenton", "eentonige": "eenton", "eentonigheid": "eenton", "eentraps": "eentrap", "éénurige": "eenur", "eenvierde": "eenvierd", "eenvijfde": "eenvijfd", "éénvijfde": "eenvijfd", "eenvormigheid": "eenvorm", "eenvoud": "eenvoud", "eenvoudig": "eenvoud", "eenvoudige": "eenvoud", "eenvoudiger": "eenvoudiger", "eenvoudigh": "eenvoudigh", "eenvoudigjes": "eenvoudigjes", "eenvoudigste": "eenvoudigst", "eenvoudigweg": "eenvoudigweg", "eenzaam": "eenzam", "eenzaamheid": "eenzam", "eenzame": "eenzam", "eenzelfde": "eenzelfd", "eenzelvig": "eenzelv", "eenzelvigheden": "eenzelv", "eenzelvigheid": "eenzelv", "eenzijdig": "eenzijd", "eenzijdige": "eenzijd", "eep": "eep", "eer": "eer", "eerbeek": "eerbek", "eerbetoon": "eerbeton", "eerbied": "eerbied", "eerbiedig": "eerbied", "eerbiedigde": "eerbiedigd", "eerbiedigden": "eerbiedigd", "eerbiedigheid": "eerbied", "eerbiedwekkend": "eerbiedwek", "eerde": "eerd", "eerden": "eerd", "eerder": "eerder", "eerdere": "eerder", "eergisteren": "eergister", "eerlijk": "eerlijk", "eerlijke": "eerlijk", "eerlijker": "eerlijker", "eerlijkheid": "eerlijk", "eerlijks": "eerlijk", "eerst": "eerst", "éerst": "eerst", "eerste": "eerst", "éerste": "eerst", "eerstelijns": "eerstelijn", "eersten": "eerst", "eerstverantwoordelijke": "eerstverantwoord", "eerstvolgende": "eerstvolg", "eervol": "eervol", "eervolle": "eervoll", "eervolste": "eervolst", "eerzucht": "eerzucht", "eet": "eet", "eetbaar": "eetbar", "eetgewoonten": "eetgewoont", "eetkamer": "eetkamer", "eetlust": "eetlust", "eetlusten": "eetlust", "eetzaal": "eetzal", "eeuw": "eeuw", "eeuwen": "eeuw", "eeuwenlange": "eeuwenlang", "eeuwenoude": "eeuwenoud", "eeuwgrens": "eeuwgren", "eeuwig": "eeuwig", "eeuwigdurende": "eeuwigdur", "eeuwige": "eeuwig", "eeuwigheid": "eeuwig", "eeuwijk": "eeuwijk", "eeuwse": "eeuw", "eeuwwisseling": "eeuwwissel", "effect": "effect", "effectbestrijding": "effectbestrijd", "effectcommissie": "effectcommissie", "effecten": "effect", "effectenbeurs": "effectenbeur", "effectenrapport": "effectenrapport", "effectenrapportage": "effectenrapportag", "effectenstudie": "effectenstudie", "effectgerichte": "effectgericht", "effectief": "effectief", "effectiefst": "effectiefst", "effectieve": "effectiev", "effectiever": "effectiever", "effectievere": "effectiever", "effectiviteit": "effectiviteit", "effectrapport": "effectrapport", "effectrapportage": "effectrapportag", "effectrapportages": "effectrapportages", "effectrelaties": "effectrelaties", "effects": "effect", "effectstudie": "effectstudie", "effen": "eff", "effende": "effend", "effenen": "effen", "effens": "effen", "efficiency": "efficiency", "efficiëncy": "efficiency", "efficiencyverbetering": "efficiencyverbeter", "efficiënt": "efficient", "efficiënte": "efficient", "efficiënter": "efficienter", "efficiëntere": "efficienter", "efficiëntie": "efficientie", "efficiëntieproject": "efficientieproject", "efficiëntieverbetering": "efficientieverbeter", "efficinter": "efficinter", "effleurerende": "effleurer", "effluent": "effluent", "effluenten": "effluent", "effluentpolishing": "effluentpolish", "effort": "effort", "efta": "efta", "efteling": "eftel", "eg": "eg", "egaliseren": "egaliser", "egg": "egg", "eggboro": "eggboro", "eggels": "eggel", "eggen": "egg", "egidius": "egidius", "egmond": "egmond", "egoïsme": "egoism", "egoïst": "egoist", "egoïste": "egoist", "egypte": "egypt", "egyptische": "egyptisch", "eh": "eh", "ehs": "ehs", "ei": "ei", "èi": "èi", "eia": "eia", "eib": "eib", "eic": "eic", "eieren": "eier", "eierschaal": "eierschal", "eierschalen": "eierschal", "eigen": "eig", "eigenaar": "eigenar", "eigenaardigheden": "eigenaard", "eigenaardigheid": "eigenaard", "eigenaars": "eigenar", "eigenaren": "eigenar", "eigenbelang": "eigenbelang", "eigenbewustheid": "eigenbewust", "eigende": "eigend", "eigendom": "eigendom", "eigendommen": "eigendomm", "eigendomsmerk": "eigendomsmerk", "eigendomsverhouding": "eigendomsverhoud", "eigendunk": "eigendunk", "eigendunkelijkheid": "eigendunk", "eigendunkelijkheidjes": "eigendunkelijkheidjes", "eigene": "eig", "eigenfrequentie": "eigenfrequentie", "eigengemaakte": "eigengemaakt", "eigengrondgebruiks": "eigengrondgebruik", "eigenhandig": "eigenhand", "eigenlijk": "eigen", "èigenlijk": "èigen", "eigenlijke": "eigen", "eigenlijkheid": "eigen", "eigenlijkste": "eigenlijkst", "eigenmachtig": "eigenmacht", "eigenschap": "eigenschap", "eigenschappen": "eigenschapp", "eigenste": "eigenst", "eigentijdse": "eigentijd", "eigenzinnig": "eigenzinn", "eii": "eii", "eijkelkamp": "eijkelkamp", "eijsden": "eijsd", "eik": "eik", "eikebos": "eikebos", "eikel": "eikel", "eiken": "eik", "eikenhout": "eikenhout", "eikenhouten": "eikenhout", "eiland": "eiland", "eilandbewoners": "eilandbewoner", "eilanden": "eiland", "eilandje": "eilandj", "eilandspolder": "eilandspolder", "eilenburgh": "eilenburgh", "eilenburghs": "eilenburgh", "eim": "eim", "eimert": "eimert", "eind": "eind", "eindafdichting": "eindafdicht", "eindbestemming": "eindbestemm", "eindcontrole": "eindcontrol", "einddatum": "einddatum", "einde": "eind", "eindejaarsbijeenkomst": "eindejaarsbijeenkomst", "eindelijk": "eindelijk", "eindelijke": "eindelijk", "eindeloos": "eindelos", "eindeloze": "eindeloz", "einden": "eind", "einders": "einder", "eindfase": "eindfas", "eindgebruiker": "eindgebruiker", "eindgebruikers": "eindgebruiker", "eindhoven": "eindhov", "eindhovense": "eindhoven", "eindig": "eindig", "eindigde": "eindigd", "eindige": "eindig", "eindigen": "eindig", "eindje": "eindj", "eindloos": "eindlos", "eindnormen": "eindnorm", "eindprodukt": "eindprodukt", "eindprodukten": "eindprodukt", "eindrapport": "eindrapport", "eindrapportage": "eindrapportag", "eindredacteuren": "eindredacteur", "eindresultaat": "eindresultat", "eindsituatie": "eindsituatie", "eindtoestand": "eindtoestand", "eindverslag": "eindverslag", "eindverwerker": "eindverwerker", "eindverwerkers": "eindverwerker", "eindverwerking": "eindverwerk", "eindwaarden": "eindwaard", "eip": "eip", "eis": "eis", "eisen": "eis", "eisende": "eisend", "eisenpakket": "eisenpakket", "eist": "eist", "eiste": "eist", "eisten": "eist", "eitje": "eitj", "eitjes": "eitjes", "eiwit": "eiwit", "eiwitbron": "eiwitbron", "eiwitbronnen": "eiwitbronn", "eiwithoudende": "eiwithoud", "eiwitprodukten": "eiwitprodukt", "eiwitrijke": "eiwitrijk", "eiwitten": "eiwit", "eiwitvervangers": "eiwitvervanger", "ekatin": "ekatin", "ekeus": "ekeus", "ekleed": "ekled", "eko": "eko", "ekocompact": "ekocompact", "ekodum": "ekodum", "ekopower": "ekopower", "ekorad": "ekorad", "ekotaks": "ekotak", "ekro": "ekro", "el": "el", "elan": "elan", "élan": "elan", "elastisch": "elastisch", "elastische": "elastisch", "elastomers": "elastomer", "elbo": "elbo", "elburg": "elburg", "elders": "elder", "elderveld": "elderveld", "electrabel": "electrabel", "electric": "electric", "electrical": "electrical", "electriciteits": "electriciteit", "electricity": "electricity", "electrics": "electric", "electrification": "electrification", "electrisch": "electrisch", "electrische": "electrisch", "electriseert": "electriseert", "electroden": "electrod", "electrolyse": "electrolys", "electrolyte": "electrolyt", "electron": "electron", "electronics": "electronic", "electrostatisch": "electrostatisch", "electrotechnische": "electrotechnisch", "elegance": "eleganc", "élégance": "eleganc", "elegant": "elegant", "élegant": "elegant", "elegante": "elegant", "élegante": "elegant", "elegantsten": "elegantst", "elekriciteit": "elekriciteit", "elektra": "elektra", "elektriciteit": "elektriciteit", "elektriciteits": "elektriciteit", "elektriciteitsaansluiting": "elektriciteitsaansluit", "elektriciteitsbedrijf": "elektriciteitsbedrijf", "elektriciteitsbedrijven": "elektriciteitsbedrijv", "elektriciteitsbehoefte": "elektriciteitsbehoeft", "elektriciteitsbesparing": "elektriciteitsbespar", "elektriciteitsbeurs": "elektriciteitsbeur", "elektriciteitscentrale": "elektriciteitscentral", "elektriciteitscentrales": "elektriciteitscentrales", "elektriciteitsdistributeurs": "elektriciteitsdistributeur", "elektriciteitsdistributiebedrijf": "elektriciteitsdistributiebedrijf", "elektriciteitsdistributiebedrijven": "elektriciteitsdistributiebedrijv", "elektriciteitsgebruik": "elektriciteitsgebruik", "elektriciteitskabels": "elektriciteitskabel", "elektriciteitskosten": "elektriciteitskost", "elektriciteitsleveranties": "elektriciteitsleveranties", "elektriciteitslevering": "elektriciteitslever", "elektriciteitsmaatschappij": "elektriciteitsmaatschappij", "elektriciteitsmaatschappijen": "elektriciteitsmaatschappij", "elektriciteitsmarkt": "elektriciteitsmarkt", "elektriciteitsnet": "elektriciteitsnet", "elektriciteitsnetn": "elektriciteitsnetn", "elektriciteitsopwekking": "elektriciteitsopwek", "elektriciteitsopwekkingsvermogen": "elektriciteitsopwekkingsvermog", "elektriciteitsplan": "elektriciteitsplan", "elektriciteitsprijs": "elektriciteitsprijs", "elektriciteitsproducent": "elektriciteitsproducent", "elektriciteitsproducenten": "elektriciteitsproducent", "elektriciteitsproduktie": "elektriciteitsproduktie", "elektriciteitsproduktiebedrijf": "elektriciteitsproduktiebedrijf", "elektriciteitsproduktiebedrijven": "elektriciteitsproduktiebedrijv", "elektriciteitsproduktiesector": "elektriciteitsproduktiesector", "elektriciteitsrekeninbg": "elektriciteitsrekeninbg", "elektriciteitsrekening": "elektriciteitsreken", "elektriciteitssector": "elektriciteitssector", "elektriciteitstarieven": "elektriciteitstariev", "elektriciteitsverbruik": "elektriciteitsverbruik", "elektriciteitsverbruikers": "elektriciteitsverbruiker", "elektriciteitsverzorgingsbedrijven": "elektriciteitsverzorgingsbedrijv", "elektriciteitsvoorziening": "elektriciteitsvoorzien", "elektriciteitsvoorzieningen": "elektriciteitsvoorzien", "elektriciteitsvraag": "elektriciteitsvrag", "elektriciteitswet": "elektriciteitswet", "elektriciteitswetgeving": "elektriciteitswetgev", "elektricity": "elektricity", "elektricteit": "elektricteit", "elektrificatie": "elektrificatie", "elektrificeren": "elektrificer", "elektrisch": "elektrisch", "elektrische": "elektrisch", "elektrischer": "elektrischer", "elektrizitäts": "elektrizitat", "elektrizitätswerke": "elektrizitatswerk", "elektro": "elektro", "elektrochemisch": "elektrochemisch", "elektrochemische": "elektrochemisch", "elektrode": "elektrod", "elektroden": "elektrod", "elektrodensysteem": "elektrodensystem", "elektrodes": "elektrodes", "elektrofilters": "elektrofilter", "elektroflotatiesysteem": "elektroflotatiesystem", "elektrolyse": "elektrolys", "elektrolyseproefnemingen": "elektrolyseproefnem", "elektrolyt": "elektrolyt", "elektrolytische": "elektrolytisch", "elektromagneet": "elektromagnet", "elektromagneten": "elektromagnet", "elektromagnetische": "elektromagnetisch", "elektromechanische": "elektromechanisch", "elektromotoren": "elektromotor", "elektromotorenwerk": "elektromotorenwerk", "elektronenstrahl": "elektronenstrahl", "elektronenstralen": "elektronenstral", "elektronenstructuur": "elektronenstructur", "elektronica": "elektronica", "elektronicabedrijven": "elektronicabedrijv", "elektronicaconcern": "elektronicaconcern", "elektronicaschroot": "elektronicaschrot", "elektronikschrott": "elektronikschrott", "elektronisch": "elektronisch", "elektronische": "elektronisch", "elektrosila": "elektrosila", "elektrostatisch": "elektrostatisch", "elektrostatische": "elektrostatisch", "elektrotechniek": "elektrotechniek", "elektrotechnische": "elektrotechnisch", "elektrowinning": "elektrowinn", "elektrowinnings": "elektrowinn", "element": "element", "elementair": "elementair", "elementary": "elementary", "elementen": "element", "eleveld": "eleveld", "elf": "elf", "elfde": "elfd", "elhorst": "elhorst", "elimineert": "elimineert", "elimineren": "eliminer", "elin": "elin", "elizabeth": "elizabeth", "elk": "elk", "elkaar": "elkar", "elkaars": "elkar", "elkander": "elkander", "elkanders": "elkander", "elke": "elk", "ellebogen": "ellebog", "elleboog": "ellebog", "ellen": "ell", "ellende": "ellend", "ellendeling": "ellendel", "ellendelingen": "ellendel", "ellendig": "ellend", "ellèndig": "ellènd", "ellendige": "ellend", "ellendigen": "ellend", "ellendigs": "ellend", "ellewoutsdijk": "ellewoutsdijk", "ellson": "ellson", "elly": "elly", "elopak": "elopak", "elsam": "elsam", "elsloo": "elsloo", "eltron": "eltron", "elzen": "elz", "email": "email", "emanatie": "emanatie", "emas": "emas", "emb": "emb", "emballage": "emballag", "emballeurs": "emballeur", "embargo": "embargo", "emeritus": "emeritus", "emf": "emf", "emg": "emg", "emie": "emie", "emigrerende": "emigrer", "emihe": "emih", "emilie": "emilie", "emilietje": "emilietj", "emiliètje": "emiliètj", "emiraten": "emirat", "emissie": "emissie", "emissiearme": "emissiearm", "emissiebeheer": "emissiebeher", "emissiebeperkende": "emissiebeperk", "emissiebeperking": "emissiebeperk", "emissiebron": "emissiebron", "emissiebronnen": "emissiebronn", "emissiecijfers": "emissiecijfer", "emissiedetector": "emissiedetector", "emissiedoelstelling": "emissiedoelstell", "emissiefactor": "emissiefactor", "emissiefactoren": "emissiefactor", "emissiegegevens": "emissiegegeven", "emissiegrenswaarden": "emissiegrenswaard", "emissiejaarverslag": "emissiejaarverslag", "emissieniveaus": "emissieniveaus", "emissienormen": "emissienorm", "emissieplafonds": "emissieplafond", "emissiepreventie": "emissiepreventie", "emissieprofielen": "emissieprofiel", "emissierechten": "emissierecht", "emissiereducerende": "emissiereducer", "emissiereductie": "emissiereductie", "emissiereducties": "emissiereducties", "emissiereductiesystemen": "emissiereductiesystem", "emissieregistratie": "emissieregistratie", "emissieregistraties": "emissieregistraties", "emissieregistratiesysteem": "emissieregistratiesystem", "emissierichtlijnen": "emissierichtlijn", "emissieroutes": "emissieroutes", "emissies": "emissies", "emissiesituatie": "emissiesituatie", "emissievermindering": "emissieverminder", "emissiewaarde": "emissiewaard", "emissiewaarden": "emissiewaard", "emission": "emission", "emissions": "emission", "emitteren": "emitter", "emkel": "emkel", "emma": "emma", "emmaproject": "emmaproject", "emmastraat": "emmastrat", "emmeloord": "emmeloord", "emmen": "emm", "emmer": "emmer", "emmers": "emmer", "emotie": "emotie", "emoties": "emoties", "emotioneel": "emotionel", "emotionele": "emotionel", "empire": "empir", "employé": "employ", "empress": "empres", "empteezy": "empteezy", "ems": "ems", "emsland": "emsland", "emstar": "emstar", "emstige": "emstig", "emstigs": "emstig", "emt": "emt", "emulgator": "emulgator", "emulsie": "emulsie", "emulsiepertractie": "emulsiepertractie", "emulsiepolymerisatie": "emulsiepolymerisatie", "emulsies": "emulsies", "emv": "emv", "emveka": "emveka", "en": "en", "én": "en", "èn": "èn", "enbb": "enbb", "encanailleren": "encanailler", "encebe": "enceb", "encevort": "encevort", "enci": "enci", "enclaves": "enclaves", "end": "end", "endangered": "endangered", "endertig": "endert", "endogene": "endog", "endosulfan": "endosulfan", "ene": "ene", "éne": "ene", "enec": "enec", "eneco": "eneco", "enel": "enel", "ener": "ener", "enercon": "enercon", "energetisch": "energetisch", "energetische": "energetisch", "energi": "energi", "energiakonsult": "energiakonsult", "energie": "energie", "energieanlagen": "energieanlag", "energiebalans": "energiebalan", "energiebalansregeling": "energiebalansregel", "energiebedrijf": "energiebedrijf", "energiebedrijfsplan": "energiebedrijfsplan", "energiebedrijven": "energiebedrijv", "energiebeheer": "energiebeher", "energiebeheersysteem": "energiebeheersystem", "energiebehoefte": "energiebehoeft", "energiebehoeften": "energiebehoeft", "energiebelasting": "energiebelast", "energiebeleid": "energiebeleid", "energiebeleidsonderzoek": "energiebeleidsonderzoek", "energieberekeningen": "energiebereken", "energiebericht": "energiebericht", "energiebesparend": "energiebespar", "energiebesparende": "energiebespar", "energiebesparing": "energiebespar", "energiebesparingen": "energiebespar", "energiebesparings": "energiebespar", "energiebesparingsactie": "energiebesparingsactie", "energiebesparingsbeleid": "energiebesparingsbeleid", "energiebesparingsfonds": "energiebesparingsfond", "energiebesparingsmaatregel": "energiebesparingsmaatregel", "energiebesparingsmaatregelen": "energiebesparingsmaatregel", "energiebesparingsmogelijkheden": "energiebesparingsmog", "energiebesparingsplan": "energiebesparingsplan", "energiebesparingsplannen": "energiebesparingsplann", "energiebesparingsproject": "energiebesparingsproject", "energiebesparingsprojecten": "energiebesparingsproject", "energiebesparingstechnologie": "energiebesparingstechnologie", "energiebewust": "energiebewust", "energiebron": "energiebron", "energiebronnen": "energiebronn", "energiebuffer": "energiebuffer", "energiecentrale": "energiecentral", "energiecentrales": "energiecentrales", "energiecommissie": "energiecommissie", "energieconcern": "energieconcern", "energieconferentie": "energieconferentie", "energieconferenties": "energieconferenties", "energieconsulent": "energieconsulent", "energieconsulenten": "energieconsulent", "energieconsumenten": "energieconsument", "energieconversie": "energieconversie", "energieconversiedag": "energieconversiedag", "energiecrisis": "energiecrisis", "energiedag": "energiedag", "energiedagen": "energiedag", "energiedepartement": "energiedepartement", "energiedeskundigen": "energiedeskund", "energiedichtheid": "energiedicht", "energiediensten": "energiedienst", "energiedistributeurs": "energiedistributeur", "energiedistributie": "energiedistributie", "energiedistributiebedrijf": "energiedistributiebedrijf", "energiedistributiebedrijven": "energiedistributiebedrijv", "energiedistributiemaatschappij": "energiedistributiemaatschappij", "energiedoelstelling": "energiedoelstell", "energiedoelstellingen": "energiedoelstell", "energiedragers": "energiedrager", "energieën": "energieen", "energiefonds": "energiefond", "energiegebied": "energiegebied", "energiegebouw": "energiegebouw", "energiegebruik": "energiegebruik", "energiegebruiken": "energiegebruik", "energiegebruikers": "energiegebruiker", "energiegegevens": "energiegegeven", "energiegewassen": "energiegewass", "energiehandel": "energiehandel", "energieheffing": "energieheff", "energieheffingen": "energieheff", "energiehergebruik": "energiehergebruik", "energiehuis": "energiehuis", "energiehuishouding": "energiehuishoud", "energiek": "energiek", "energiekabel": "energiekabel", "energieke": "energiek", "energiekosten": "energiekost", "energieleverancier": "energieleverancier", "energiemaatschappij": "energiemaatschappij", "energiemaatschappijen": "energiemaatschappij", "energiemanagement": "energiemanagement", "energiemarkt": "energiemarkt", "energiemärkte": "energiemarkt", "energieminister": "energieminister", "energiemix": "energiemix", "energien": "energien", "energiened": "energiened", "energienota": "energienota", "energieonderzoek": "energieonderzoek", "energieonderzoekscentrum": "energieonderzoekscentrum", "energieopbrengst": "energieopbrengst", "energieopslagsystemen": "energieopslagsystem", "energieopwekking": "energieopwek", "energieplannen": "energieplann", "energieplantages": "energieplantages", "energiepolitiek": "energiepolitiek", "energieprestatie": "energieprestatie", "energieprestatiebestekken": "energieprestatiebestek", "energieprestatienorm": "energieprestatienorm", "energieprestatienormen": "energieprestatienorm", "energieprijs": "energieprijs", "energieprijzen": "energieprijz", "energieprocessen": "energieprocess", "energieproducenten": "energieproducent", "energieproductiebedrijf": "energieproductiebedrijf", "energieprodukten": "energieprodukt", "energieproduktie": "energieproduktie", "energieproduktiebedrijf": "energieproduktiebedrijf", "energieprogramma": "energieprogramma", "energieproject": "energieproject", "energieprojecten": "energieproject", "energieraad": "energierad", "energierekening": "energiereken", "energiereserves": "energiereserves", "energierijk": "energierijk", "energierijke": "energierijk", "energies": "energies", "energiesamenwerkingsverband": "energiesamenwerkingsverband", "energieschermen": "energiescherm", "energiesector": "energiesector", "energiesectoren": "energiesector", "energiesituatie": "energiesituatie", "energiesparingsmogelijkheden": "energiesparingsmog", "energiespecialist": "energiespecialist", "energiespeicher": "energiespeicher", "energiestreven": "energiestrev", "energiesysteem": "energiesystem", "energiesystemen": "energiesystem", "energietaks": "energietak", "energietarieven": "energietariev", "energietax": "energietax", "energietechnieken": "energietechniek", "energietechnologie": "energietechnologie", "energietechnologieën": "energietechnologieen", "energieteelt": "energieteelt", "energietekorten": "energietekort", "energieterugwinning": "energieterugwinn", "energietoepassing": "energietoepass", "energietoevoer": "energietoevoer", "energieuitgaven": "energieuitgav", "energieverbruik": "energieverbruik", "energieverbruikers": "energieverbruiker", "energieverlies": "energieverlies", "energievermindering": "energieverminder", "energieverslindend": "energieverslind", "energieversorgungs": "energieversorgung", "energieverspillende": "energieverspill", "energieverspilling": "energieverspill", "energieverzorgingsbedrijven": "energieverzorgingsbedrijv", "energieverzorgingsmaatschappij": "energieverzorgingsmaatschappij", "energievoorraden": "energievoorrad", "energievoorziening": "energievoorzien", "energievoorzieningen": "energievoorzien", "energievorm": "energievorm", "energievormen": "energievorm", "energievorming": "energievorm", "energievraag": "energievrag", "energievraagstuk": "energievraagstuk", "energievraagstukken": "energievraagstuk", "energiewijzers": "energiewijzer", "energiewinning": "energiewinn", "energiezaken": "energiezak", "energiezorg": "energiezorg", "energiezuinig": "energiezuin", "energiezuinige": "energiezuin", "energiezuiniger": "energiezuiniger", "energiezuinigheid": "energiezuin", "energy": "energy", "enervatie": "enervatie", "enerzijds": "enerzijd", "enfin": "enfin", "eng": "eng", "engagement": "engagement", "engageren": "engager", "engeland": "engeland", "engelden": "engeld", "engelen": "engel", "engelhard": "engelhard", "engels": "engel", "engelse": "engel", "engelsen": "engels", "engelstalig": "engelstal", "engelstalige": "engelstal", "engineer": "enginer", "engineering": "enginer", "engineeringafdeling": "engineeringafdel", "engineers": "enginer", "england": "england", "enichem": "enichem", "enig": "enig", "enige": "enig", "énige": "enig", "enigszins": "enigszin", "enistige": "enist", "enkel": "enkel", "enkele": "enkel", "enkelen": "enkel", "enkelgebogen": "enkelgebog", "enkelpolige": "enkelpol", "enkels": "enkel", "enkelvoudige": "enkelvoud", "enkhuizen": "enkhuiz", "enorm": "enorm", "enorme": "enorm", "enormiteiten": "enormiteit", "enquête": "enquêt", "enquêtecommissie": "enquêtecommissie", "enquêteerde": "enquêteerd", "enquêtes": "enquêtes", "enrôleerde": "enrôleerd", "enschede": "ensched", "enschedese": "enschedes", "enserink": "enserink", "enso": "enso", "entailing": "entail", "entendus": "entendus", "enterde": "enterd", "enteren": "enter", "entering": "enter", "entert": "entert", "enthousiasme": "enthousiasm", "enthousiast": "enthousiast", "entourage": "entourag", "entrée": "entree", "entreprise": "entrepris", "entsorga": "entsorga", "entsorger": "entsorger", "entsorgung": "entsorgung", "entsorgungs": "entsorgung", "entsorgungsgesellschaft": "entsorgungsgesellschaft", "entsorgungswirtschaft": "entsorgungswirtschaft", "entwicklung": "entwicklung", "entwintig": "entwint", "env": "env", "enveertig": "enveert", "envelope": "envelop", "enveloppe": "envelopp", "enveloppen": "envelopp", "envirobend": "envirob", "envirofilter": "envirofilter", "enviromental": "enviromental", "environ": "environ", "environment": "environment", "environmental": "environmental", "environmex": "environmex", "environnement": "environnement", "environnementaux": "environnementaux", "enviropower": "enviropower", "enviroservice": "enviroservic", "envirotec": "envirotec", "enviscan": "enviscan", "envitec": "envitec", "enw": "enw", "enz": "enz", "enzo": "enzo", "enzovoort": "enzovoort", "enzym": "enzym", "enzymatische": "enzymatisch", "enzyme": "enzym", "enzymen": "enzym", "enzymverkopen": "enzymverkop", "ep": "ep", "epa": "epa", "epc": "epc", "epdm": "epdm", "epe": "epe", "epema": "epema", "epia": "epia", "epichloorhydrineproduktie": "epichloorhydrineproduktie", "epidemie": "epidemie", "epidemiologisch": "epidemiologisch", "epidemiologische": "epidemiologisch", "episodische": "episodisch", "epista": "epista", "epl": "epl", "epn": "epn", "epon": "epon", "epoxidehars": "epoxidehar", "epoxyharsen": "epoxyhars", "epp": "epp", "eps": "eps", "eptisa": "eptisa", "epz": "epz", "equipment": "equipment", "equity": "equity", "equivalent": "equivalent", "equivalenten": "equivalent", "er": "er", "eraan": "eran", "erachter": "erachter", "eraf": "eraf", "erasmus": "erasmus", "erbarming": "erbarm", "erbarmingloos": "erbarminglos", "erbarmingloze": "erbarmingloz", "erbij": "erbij", "erboven": "erbov", "erbuiten": "erbuit", "erdoor": "erdor", "erdoorheen": "erdoorhen", "erfde": "erfd", "erfdeel": "erfdel", "erfden": "erfd", "erfelijk": "erfelijk", "erfelijkheidskwestie": "erfelijkheidskwestie", "erfenis": "erfenis", "erfgenaam": "erfgenam", "erfgeschenk": "erfgeschenk", "erfgoed": "erfgoed", "erfjord": "erfjord", "erfoom": "erfom", "erfpacht": "erfpacht", "erfpachtbasis": "erfpachtbasis", "erfpachtcontract": "erfpachtcontract", "erfverhardingen": "erfverhard", "erg": "erg", "èrg": "èrg", "erge": "erg", "ergens": "ergen", "erger": "erger", "ergerde": "ergerd", "ergerden": "ergerd", "ergeren": "erger", "ergernis": "ergernis", "ergernissen": "ergerniss", "ergert": "ergert", "ergom": "ergom", "ergonomie": "ergonomie", "ergst": "ergst", "ergste": "ergst", "erhvervsfrugtavl": "erhvervsfrugtavl", "eri": "eri", "erin": "erin", "erisman": "erisman", "erkenbouts": "erkenbout", "erkend": "erkend", "erkende": "erkend", "erkennen": "erkenn", "erkenning": "erkenn", "erkenningen": "erkenn", "erkenningsregeling": "erkenningsregel", "erkent": "erkent", "erkers": "erker", "erkimia": "erkimia", "erlangen": "erlang", "erm": "erm", "ermee": "ermee", "ermelo": "ermelo", "erna": "erna", "ernaar": "ernar", "ernaast": "ernaast", "ernestown": "ernestown", "erneuerbare": "erneuer", "ernst": "ernst", "ernstig": "ernstig", "ernstige": "ernstig", "ernstiger": "ernstiger", "ernstigere": "ernstiger", "ernstigs": "ernstig", "ernstigste": "ernstigst", "ernsts": "ernst", "erodeert": "erodeert", "erom": "erom", "eronder": "eronder", "erop": "erop", "erosie": "erosie", "erotische": "erotisch", "erover": "erover", "erp": "erp", "erra": "erra", "èrrg": "èrrg", "ers": "ers", "ertegen": "erteg", "ertoe": "ertoe", "erts": "ert", "ertsgebergte": "ertsgebergt", "ertsverwerkende": "ertsverwerk", "ertsvondst": "ertsvondst", "ertswinning": "ertswinn", "eruit": "eruit", "ervan": "ervan", "ervaren": "ervar", "ervaring": "ervar", "ervaringen": "ervar", "erven": "erv", "ervoor": "ervor", "erwt": "erwt", "erwten": "erwt", "erysiphe": "erysiph", "erzeele": "erzel", "es": "es", "esbjerg": "esbjerg", "escadron": "escadron", "escadronsbureau": "escadronsbureau", "escorteer": "escorter", "esculaap": "esculap", "esdex": "esdex", "esdoorns": "esdoorn", "esens": "esen", "esp": "esp", "espoo": "espoo", "esprit": "esprit", "essai": "essai", "essays": "essay", "esseboom": "essebom", "esselink": "esselink", "essen": "ess", "essence": "essenc", "essencestank": "essencestank", "essentieel": "essentieel", "essentiële": "essentiel", "esser": "esser", "esso": "esso", "essoraffinaderij": "essoraffinaderij", "estafette": "estafet", "esterificatie": "esterificatie", "estervorming": "estervorm", "esthetisch": "esthetisch", "esthetische": "esthetisch", "estland": "estland", "estuariene": "estuarien", "estuarium": "estuarium", "esva": "esva", "et": "et", "étage": "etag", "étagère": "etagèr", "étagêre": "etagêr", "etalage": "etalag", "étalage": "etalag", "etb": "etb", "etbe": "etb", "etc": "etc", "etcetera": "etcetera", "eten": "eten", "éten": "eten", "etende": "etend", "etensresten": "etensrest", "etenstijd": "etenstijd", "eternaly": "eternaly", "eternietvervaardiging": "eternietvervaard", "eternit": "eternit", "ethanol": "ethanol", "ethanolinstallatie": "ethanolinstallatie", "ethanolpomp": "ethanolpomp", "ethanolproducenten": "ethanolproducent", "ethanolproduktie": "ethanolproduktie", "etheen": "ethen", "etheengehalte": "etheengehalt", "ether": "ether", "etherische": "etherisch", "ethisch": "ethisch", "ethoxylaat": "ethoxylat", "ethoxylaten": "ethoxylat", "ethyl": "ethyl", "ethylbenzeen": "ethylbenzen", "ethyleen": "ethylen", "ethyleenoxide": "ethyleenoxid", "ethyleenoxyde": "ethyleenoxyd", "ethylhexl": "ethylhexl", "etiket": "etiket", "etiketten": "etiket", "etiketteren": "etiketter", "etikettering": "etiketter", "etiologie": "etiologie", "etiquettetje": "etiquettetj", "etos": "etos", "ets": "ets", "etsten": "etst", "ett": "ett", "ettelijke": "ettelijk", "etten": "et", "ettlingen": "ettling", "etv": "etv", "etva": "etva", "etvtc": "etvtc", "eu": "eu", "eucc": "eucc", "eufraat": "eufrat", "eunet": "eunet", "euram": "euram", "euratom": "euratom", "euratomverdrag": "euratomverdrag", "euregio": "euregio", "euregionaal": "euregional", "euregionale": "euregional", "euro": "euro", "eurochlor": "eurochlor", "euroconsult": "euroconsult", "eurocontainers": "eurocontainer", "euroenvironment": "euroenvironment", "euroforum": "euroforum", "euronet": "euronet", "euronorm": "euronorm", "europa": "europa", "europabank": "europabank", "europarlementariër": "europarlementarier", "europarlementariërs": "europarlementarier", "europarlementslid": "europarlementslid", "europe": "europ", "europeaan": "europeaan", "european": "european", "européenne": "europeenn", "européens": "europen", "europees": "europes", "europeesrechtelijke": "europeesrecht", "europen": "europ", "europese": "europes", "europoort": "europoort", "eurosolar": "eurosolar", "eurotainer": "eurotainer", "eurotunnel": "eurotunnel", "eurovignet": "eurovignet", "eurowoningen": "eurowon", "eutrofiërende": "eutrofier", "eutrofiëringsmodellen": "eutrofieringsmodell", "evacuatie": "evacuatie", "evacuatieplannen": "evacuatieplann", "evacuaties": "evacuaties", "evaluatie": "evaluatie", "evaluatiecommissie": "evaluatiecommissie", "evaluatienota": "evaluatienota", "evaluatieonderzoek": "evaluatieonderzoek", "evaluatieperiode": "evaluatieperiod", "evaluatieproject": "evaluatieproject", "evaluatierapport": "evaluatierapport", "evaluatierapporten": "evaluatierapport", "evaluaties": "evaluaties", "evaluatieverslag": "evaluatieverslag", "evaluation": "evaluation", "evalueert": "evalueert", "evalueren": "evaluer", "evd": "evd", "evebat": "evebat", "even": "even", "éven": "even", "evenaar": "evenar", "evenals": "evenal", "eveneens": "evenen", "evenement": "evenement", "evenementen": "evenement", "evengoed": "evengoed", "evenmens": "evenmen", "evenmin": "evenmin", "evenredig": "evenred", "evenredigheid": "evenred", "eventjes": "eventjes", "eventueel": "eventueel", "eventuele": "eventuel", "evenveel": "evenvel", "evenwel": "evenwel", "evenwicht": "evenwicht", "evenwichtig": "evenwicht", "evenwichtiger": "evenwichtiger", "evenwichtsbemesting": "evenwichtsbemest", "evenzeer": "evenzer", "evenzo": "evenzo", "evenzoveel": "evenzovel", "everest": "everest", "everingepolder": "everingepolder", "evers": "ever", "evn": "evn", "evo": "evo", "evoa": "evoa", "evocatie": "evocatie", "evoluon": "evoluon", "evolutie": "evolutie", "evp": "evp", "evtech": "evtech", "ewab": "ewab", "ewald": "ewald", "ewals": "ewal", "ewg": "ewg", "ex": "ex", "exact": "exact", "exacte": "exact", "examen": "exam", "examens": "examen", "excellence": "excellenc", "excellent": "excellent", "excellente": "excellent", "excellentie": "excellentie", "exceptionele": "exceptionel", "excercities": "excercities", "excessive": "excessiv", "exchange": "exchang", "exclusief": "exclusief", "exclusieve": "exclusiev", "excursies": "excursies", "excuseerde": "excuseerd", "excuseren": "excuser", "excuses": "excuses", "excuzes": "excuzes", "executeren": "executer", "executie": "executie", "executief": "executief", "executies": "executies", "executiewaarde": "executiewaard", "executive": "executiv", "exemplaar": "exemplar", "exemplaren": "exemplar", "exergy": "exergy", "exhibition": "exhibition", "exophiala": "exophiala", "exotherm": "exotherm", "exotisch": "exotisch", "expanderen": "expander", "expanderende": "expander", "expansie": "expansie", "expansiedoelstellingen": "expansiedoelstell", "expansiegedeelte": "expansiegedeelt", "expansievaten": "expansievat", "expected": "expected", "expeditie": "expeditie", "experiment": "experiment", "experimenteel": "experimentel", "experimenteerfase": "experimenteerfas", "experimenteert": "experimenteert", "experimentele": "experimentel", "experimenten": "experiment", "experimenteren": "experimenter", "expert": "expert", "expertise": "expertis", "expertisepositie": "expertisepositie", "experts": "expert", "explicatie": "explicatie", "expliciet": "expliciet", "expliciete": "expliciet", "explodeerde": "explodeerd", "exploitabel": "exploitabel", "exploitabele": "exploitabel", "exploitant": "exploitant", "exploitanten": "exploitant", "exploitatie": "exploitatie", "exploitatiebijdragen": "exploitatiebijdrag", "exploitatiefase": "exploitatiefas", "exploitatiekosten": "exploitatiekost", "exploitatiemaatschappij": "exploitatiemaatschappij", "exploitatiemaatschappijen": "exploitatiemaatschappij", "exploitatiemogelijkheden": "exploitatiemog", "exploitatieprogramma": "exploitatieprogramma", "exploitatiesaldo": "exploitatiesaldo", "exploitatievergunning": "exploitatievergunn", "exploitatiewinst": "exploitatiewinst", "exploiteert": "exploiteert", "exploiteren": "exploiter", "exploratie": "exploratie", "exploratiemaatschappijen": "exploratiemaatschappij", "exploration": "exploration", "exploring": "explor", "explosie": "explosie", "explosief": "explosief", "explosiegevaar": "explosiegevar", "explosieholten": "explosieholt", "explosies": "explosies", "explosieve": "explosiev", "explosion": "explosion", "explosiviteit": "explosiviteit", "expo": "expo", "exponentiële": "exponentiel", "export": "export", "exportartikel": "exportartikel", "exportbedrijf": "exportbedrijf", "exportcijfers": "exportcijfer", "exportcombinaties": "exportcombinaties", "exporteerde": "exporteerd", "exporteert": "exporteert", "exporteren": "exporter", "exporteur": "exporteur", "exporteurs": "exporteur", "exportgroei": "exportgroei", "exportmogelijkheden": "exportmog", "exportorganisaties": "exportorganisaties", "exportprodukt": "exportprodukt", "exportprodukten": "exportprodukt", "exportpublikaties": "exportpublikaties", "exportquote": "exportquot", "exportsteun": "exportsteun", "exportstrategie": "exportstrategie", "exportverbod": "exportverbod", "exportvergunning": "exportvergunn", "exportwaarde": "exportwaard", "exposanten": "exposant", "exposeert": "exposeert", "expositie": "expositie", "exposities": "exposities", "exposure": "exposur", "expoterende": "expoter", "expres": "expres", "expressie": "expressie", "expressies": "expressies", "expro": "expro", "exquis": "exquis", "exquisiteit": "exquisiteit", "exquize": "exquiz", "extatische": "extatisch", "extaze": "extaz", "extensieve": "extensiev", "extensivering": "extensiver", "extern": "extern", "externe": "extern", "externen": "extern", "extra": "extra", "extracten": "extract", "extractie": "extractie", "extractief": "extractief", "extractieputten": "extractieput", "extractietechnologie": "extractietechnologie", "extractieve": "extractiev", "extraction": "extraction", "extraferm": "extraferm", "extraheren": "extraher", "extramurale": "extramural", "extreem": "extrem", "extreme": "extrem", "extrusie": "extrusie", "extrusion": "extrusion", "extrusions": "extrusion", "exxon": "exxon", "eyck": "eyck", "ez": "ez", "ezh": "ezh", "ezw": "ezw", "f": "f", "faalde": "faald", "faam": "fam", "fabels": "fabel", "faber": "faber", "fabes": "fabes", "fabricage": "fabricag", "fabricageprocessen": "fabricageprocess", "fabrications": "fabrication", "fabriceerde": "fabriceerd", "fabriceren": "fabricer", "fabricom": "fabricom", "fabriek": "fabriek", "fabrieken": "fabriek", "fabrieksgegevens": "fabrieksgegeven", "fabriekshal": "fabriekshal", "fabrieksleven": "fabriekslev", "fabriekslokaties": "fabriekslokaties", "fabrieksmatig": "fabrieksmat", "fabrieksontwerp": "fabrieksontwerp", "fabrieksopgaven": "fabrieksopgav", "fabriekssteden": "fabriekssted", "fabrieksterrein": "fabrieksterrein", "fabriekszaken": "fabriekszak", "fabrikage": "fabrikag", "fabrikant": "fabrikant", "fabrikanten": "fabrikant", "fabrikantengeslacht": "fabrikantengeslacht", "fabrikaten": "fabrikat", "fabris": "fabris", "face": "fac", "facetten": "facet", "fachhochschule": "fachhochschul", "facilitaire": "facilitair", "faciliteit": "faciliteit", "faciliteiten": "faciliteit", "facilitering": "faciliter", "facility": "facility", "factor": "factor", "factoren": "factor", "facturen": "factur", "factuur": "factur", "faculteit": "faculteit", "faculteiten": "faculteit", "faecaliën": "faecalien", "faiences": "faiences", "faïences": "faiences", "failliet": "failliet", "failliete": "failliet", "faillisementen": "faillisement", "faillissement": "faillissement", "fair": "fair", "fairfax": "fairfax", "falend": "falend", "falende": "falend", "fall": "fall", "fallout": "fallout", "familie": "familie", "familieavonden": "familieavond", "familieband": "familieband", "familiebanden": "familieband", "familiegeheim": "familiegeheim", "familiegevoel": "familiegevoel", "familiegraf": "familiegraf", "familiekring": "familiekr", "familieleden": "familieled", "familieleven": "familielev", "familielid": "familielid", "familieliefde": "familieliefd", "familieportretten": "familieportret", "families": "families", "familieschande": "familieschand", "familiestad": "familiestad", "familietafereel": "familietaferel", "familietrots": "familietrot", "familiezwak": "familiezwak", "fanatisme": "fanatism", "fangataufa": "fangataufa", "fanomos": "fanomos", "fantaseer": "fantaser", "fantaseerde": "fantaseerd", "fantasie": "fantasie", "fantastisch": "fantastisch", "fantastische": "fantastisch", "fantazie": "fantazie", "fantazieën": "fantazieen", "fantazietjes": "fantazietjes", "fao": "fao", "farce": "farc", "fardem": "fardem", "farm": "farm", "farmaceutisch": "farmaceutisch", "farmaceutische": "farmaceutisch", "farmacieconcern": "farmacieconcern", "farmers": "farmer", "farming": "farming", "fascistische": "fascistisch", "fase": "fas", "fasegewijs": "fasegewijs", "fasegewijze": "fasegewijz", "fasen": "fas", "faseren": "faser", "fasering": "faser", "fases": "fases", "faseverschil": "faseverschil", "fashion": "fashion", "fashionabele": "fashionabel", "fast": "fast", "fastfood": "fastfod", "fasto": "fasto", "fataal": "fatal", "fathom": "fathom", "fatje": "fatj", "fatsoen": "fatsoen", "fatsoenlijk": "fatsoen", "fatsoenlijke": "fatsoen", "fatsoenlijkheid": "fatsoen", "fatsoenlijks": "fatsoen", "fauline": "faulin", "faun": "faun", "fauna": "fauna", "faunabeheer": "faunabeher", "faunenmasker": "faunenmasker", "fauteuil": "fauteuil", "faversham": "faversham", "favoriet": "favoriet", "fax": "fax", "faxen": "fax", "faye": "fay", "fayetteville": "fayettevill", "fccc": "fccc", "fcn": "fcn", "fd": "fd", "fda": "fda", "fdm": "fdm", "fdo": "fdo", "fe": "fe", "fearnside": "fearnsid", "febiac": "febiac", "februari": "februari", "fechner": "fechner", "federal": "federal", "federale": "federal", "federatie": "federatie", "federation": "federation", "fédération": "federation", "fee": "fee", "feedstock": "feedstock", "feeën": "feeen", "feeënfiguurtje": "feeenfiguurtj", "feeënverhaaltjes": "feeenverhaaltjes", "feenstra": "feenstra", "feestelijke": "feestelijk", "feesten": "feest", "feestje": "feestj", "fehmarn": "fehmarn", "feijenoordstadion": "feijenoordstadion", "feit": "feit", "feite": "feit", "feitelijk": "feitelijk", "feitelijke": "feitelijk", "feitelijkheid": "feitelijk", "feiten": "feit", "fel": "fel", "feliciteren": "feliciter", "felix": "felix", "felle": "fell", "feller": "feller", "fels": "fel", "felst": "felst", "feminisme": "feminism", "femke": "femk", "fenol": "fenol", "fenolherbiciden": "fenolherbicid", "fenomeen": "fenomen", "fenomenen": "fenomen", "fenpicionil": "fenpicionil", "fentin": "fentin", "fenton": "fenton", "fenuron": "fenuron", "fenylhydrazine": "fenylhydrazin", "fep": "fep", "fergus": "fergus", "fermacell": "fermacell", "ferme": "ferm", "fermentatie": "fermentatie", "fermenteren": "fermenter", "fermer": "fermer", "feromonen": "feromon", "ferrailles": "ferrailles", "ferretti": "ferretti", "ferriet": "ferriet", "ferris": "ferris", "ferro": "ferro", "ferrometalen": "ferrometal", "fes": "fes", "feuerzauber": "feuerzauber", "fevs": "fev", "few": "few", "fff": "fff", "fg": "fg", "fgd": "fgd", "fhg": "fhg", "fiar": "fiar", "fiasco": "fiasco", "fiat": "fiat", "fiber": "fiber", "fiberglas": "fiberglas", "fibers": "fiber", "fibrex": "fibrex", "fiches": "fiches", "fictief": "fictief", "fictieve": "fictiev", "fidic": "fidic", "fie": "fie", "fier": "fier", "fiere": "fier", "fierheid": "fierheid", "fiets": "fiet", "fietsen": "fiets", "fietsende": "fietsend", "fietsenmaker": "fietsenmaker", "fietsenmarkt": "fietsenmarkt", "fietsers": "fietser", "fietsfabriek": "fietsfabriek", "fietsinfrastructuur": "fietsinfrastructur", "fietspad": "fietspad", "fietspaden": "fietspad", "fietspadenplan": "fietspadenplan", "fietspak": "fietspak", "fietspet": "fietspet", "fietste": "fietst", "fietsten": "fietst", "fietstocht": "fietstocht", "fietsverbindingen": "fietsverbind", "fifra": "fifra", "figaro": "figaro", "figuren": "figur", "figuur": "figur", "figuurtje": "figuurtj", "fijn": "fijn", "fijnchemicaliën": "fijnchemicalien", "fijnchemie": "fijnchemie", "fijnchemische": "fijnchemisch", "fijne": "fijn", "fijner": "fijner", "fijnere": "fijner", "fijngemalen": "fijngemal", "fijngevoelig": "fijngevoel", "fijnheden": "fijnheid", "fijnheid": "fijnheid", "fijns": "fijn", "fijntjes": "fijntjes", "fikkende": "fikkend", "fikse": "fik", "file": "fil", "fileprobleem": "fileproblem", "files": "files", "filevorming": "filevorm", "filiaal": "filiaal", "filialen": "filial", "filippijnen": "filippijn", "fill": "fill", "film": "film", "filmcassettes": "filmcassettes", "films": "film", "filmverpakkingen": "filmverpak", "filosofie": "filosofie", "filosofieën": "filosofieen", "filozofeer": "filozofer", "filozofeerde": "filozofeerd", "filozoferende": "filozofer", "filozofie": "filozofie", "filozofietjes": "filozofietjes", "filozofisch": "filozofisch", "filozofische": "filozofisch", "filpap": "filpap", "filter": "filter", "filterapparatuur": "filterapparatur", "filteras": "filteras", "filterdeel": "filterdel", "filteren": "filter", "filterende": "filter", "filterinstallatie": "filterinstallatie", "filterkoek": "filterkoek", "filterkoeken": "filterkoek", "filtermateriaal": "filtermateriaal", "filterproducent": "filterproducent", "filters": "filter", "filterstof": "filterstof", "filtersysteem": "filtersystem", "filtersystemen": "filtersystem", "filtert": "filtert", "filtertank": "filtertank", "filtertechniek": "filtertechniek", "filtratie": "filtratie", "filtratiemembranen": "filtratiemembran", "filtratietechniek": "filtratietechniek", "filtratietechnologie": "filtratietechnologie", "filtreren": "filtrer", "filtube": "filtub", "finale": "final", "finance": "financ", "financial": "financial", "financieel": "financieel", "financieele": "financieel", "financiële": "financiel", "financiën": "financien", "financierde": "financierd", "financierders": "financierder", "financieren": "financier", "financiering": "financier", "financieringen": "financier", "financierings": "financier", "financieringsbeleid": "financieringsbeleid", "financieringsbronnen": "financieringsbronn", "financieringsinstrumenten": "financieringsinstrument", "financieringskader": "financieringskader", "financieringsmechanismen": "financieringsmechanism", "financieringsmogelijkheden": "financieringsmog", "financieringsorgaan": "financieringsorgan", "financieringsproblemen": "financieringsproblem", "financieringssteun": "financieringssteun", "financiert": "financiert", "financing": "financ", "fine": "fin", "finish": "finish", "finite": "finit", "finland": "finland", "finnen": "finn", "fins": "fin", "finse": "fin", "finvold": "finvold", "fir": "fir", "fire": "fir", "firefly": "firefly", "firesaf": "firesaf", "firesafe": "firesaf", "firma": "firma", "firmament": "firmament", "firmanaam": "firmanam", "first": "first", "fiscaal": "fiscal", "fiscaalvriendelijk": "fiscaalvriend", "fiscale": "fiscal", "fiscalestelsel": "fiscalestelsel", "fiscalist": "fiscalist", "fiscus": "fiscus", "fish": "fish", "fitting": "fitting", "fittingen": "fitting", "fjord": "fjord", "fks": "fks", "flachglas": "flachglas", "flacon": "flacon", "flaconnetjes": "flaconnetjes", "flacons": "flacon", "fladderde": "fladderd", "fladderen": "fladder", "fladderend": "fladder", "fladderende": "fladder", "fladderig": "fladder", "fladdering": "fladder", "flag": "flag", "flagstad": "flagstad", "flakkerde": "flakkerd", "flakkerden": "flakkerd", "flakkerende": "flakker", "flame": "flam", "flammen": "flamm", "flanders": "flander", "flanel": "flanel", "flanellen": "flanell", "flankerend": "flanker", "flap": "flap", "flapper": "flapper", "flapperen": "flapper", "flapperende": "flapper", "flarden": "flard", "flatbewoners": "flatbewoner", "flatgebouw": "flatgebouw", "flatgebouwen": "flatgebouw", "flats": "flat", "flatteert": "flatteert", "flauw": "flauw", "flauwe": "flauw", "flauwiteit": "flauwiteit", "flauwte": "flauwt", "flauwtes": "flauwtes", "flauwtjes": "flauwtjes", "flèbbeldingen": "flèbbeld", "flebbels": "flebbel", "fleece": "flec", "fleischmann": "fleischmann", "flens": "flen", "flensloze": "flensloz", "fles": "fles", "flessen": "fless", "flesvoeding": "flesvoed", "fletse": "flet", "fleurig": "fleurig", "fleverwaard": "fleverwaard", "flevocentrale": "flevocentral", "flevoland": "flevoland", "flevolandse": "flevoland", "flexibel": "flexibel", "flexibele": "flexibel", "flexibeler": "flexibeler", "flexibiliseren": "flexibiliser", "flexibilisering": "flexibiliser", "flexibiliteit": "flexibiliteit", "flexo": "flexo", "fliert": "fliert", "flink": "flink", "flinke": "flink", "flinker": "flinker", "flipper": "flipper", "flirt": "flirt", "flirtation": "flirtation", "flits": "flit", "flitsen": "flits", "flitsende": "flitsend", "flitskapitaal": "flitskapital", "flitste": "flitst", "flitsten": "flitst", "flixborough": "flixborough", "flo": "flo", "float": "float", "floatex": "floatex", "floatlands": "floatland", "flocculatie": "flocculatie", "floers": "floer", "floersen": "floers", "flonkerden": "flonkerd", "floor": "flor", "floortje": "floortj", "flòortje": "flòortj", "floortjes": "floortjes", "floot": "flot", "flor": "flor", "flora": "flora", "floreal": "floreal", "florena": "florena", "florence": "florenc", "floriade": "floriad", "florida": "florida", "floridienne": "floridienn", "florigene": "florig", "flos": "flos", "flotatie": "flotatie", "flotatieresidu": "flotatieresidu", "flow": "flow", "flowcoat": "flowcoat", "flto": "flto", "fluazinam": "fluazinam", "fluctuatie": "fluctuatie", "fluctuaties": "fluctuaties", "fluctueert": "fluctueert", "fluctuerende": "fluctuer", "fluid": "fluid", "fluïde": "fluid", "fluidised": "fluidised", "fluidized": "fluidized", "fluim": "fluim", "fluisterde": "fluisterd", "fluisterden": "fluisterd", "fluisteren": "fluister", "fluisterend": "fluister", "fluisterende": "fluister", "fluistering": "fluister", "fluisteringen": "fluister", "fluisterschijf": "fluisterschijf", "fluiten": "fluit", "fluitend": "fluitend", "fluitje": "fluitj", "fluor": "fluor", "fluorescentieverlichting": "fluorescentieverlicht", "fluoresceren": "fluorescer", "fluoridegehalte": "fluoridegehalt", "fluoriden": "fluorid", "fluoridewolken": "fluoridewolk", "fluorkoolwaterstofverbindingen": "fluorkoolwaterstofverbind", "fluorocarbons": "fluorocarbon", "flush": "flush", "flushparagraaf": "flushparagraf", "flushregeling": "flushregel", "flushvoorziening": "flushvoorzien", "flüssigkeiten": "flussigkeit", "flutolanil": "flutolanil", "fluweel": "fluwel", "fluwelen": "fluwel", "fluweligs": "fluwel", "flux": "flux", "fme": "fme", "fnv": "fnv", "fo": "fo", "fochteloërveen": "fochteloerven", "focus": "focus", "focussen": "focuss", "focwa": "focwa", "foei": "foei", "fokker": "fokker", "fokkerij": "fokkerij", "fokkinga": "fokkinga", "fokvarkens": "fokvarken", "fokzeugen": "fokzeug", "folder": "folder", "folders": "folder", "folianten": "foliant", "folie": "folie", "foliefabrikant": "foliefabrikant", "foliened": "foliened", "folieraper": "folieraper", "folies": "folies", "foliescherm": "foliescherm", "folined": "folined", "fom": "fom", "foma": "foma", "fond": "fond", "fonden": "fond", "fonds": "fond", "fondsen": "fonds", "fonkelde": "fonkeld", "fonkelen": "fonkel", "fonograaf": "fonograf", "fonteintje": "fonteintj", "food": "fod", "foodconcern": "foodconcern", "foods": "fod", "football": "football", "fopma": "fopma", "for": "for", "foray": "foray", "forbes": "forbes", "forbo": "forbo", "forbrugerraadet": "forbrugerraadet", "force": "forc", "forceren": "forcer", "forcing": "forcing", "ford": "ford", "foreign": "foreign", "forel": "forel", "forellen": "forell", "forest": "forest", "forestal": "forestal", "fôrests": "fôrest", "forfait": "forfait", "forfaitaire": "forfaitair", "forma": "forma", "formaat": "format", "formaldehyde": "formaldehyd", "formaliteit": "formaliteit", "formaliteiten": "formaliteit", "formaten": "format", "formatiewater": "formatiewater", "formation": "formation", "formeel": "formel", "formeelrechtelijk": "formeelrecht", "formeelrechtelijke": "formeelrecht", "formeerden": "formeerd", "formele": "formel", "formule": "formul", "formuleert": "formuleert", "formuleren": "formuler", "formulering": "formuler", "formulier": "formulier", "formulieren": "formulier", "fornuisklokje": "fornuisklokj", "fornuizen": "fornuiz", "foron": "foron", "fors": "for", "forschungszentrum": "forschungszentrum", "forse": "for", "forser": "forser", "fort": "fort", "fortuin": "fortuin", "fortuintje": "fortuintj", "forum": "forum", "forumdiscussie": "forumdiscussie", "forums": "forum", "fosafaathoudend": "fosafaathoud", "fosfaat": "fosfat", "fosfaatarm": "fosfaatarm", "fosfaatbalans": "fosfaatbalan", "fosfaatbemesting": "fosfaatbemest", "fosfaatcijfer": "fosfaatcijfer", "fosfaatconcentratie": "fosfaatconcentratie", "fosfaatfixerende": "fosfaatfixer", "fosfaatgehalte": "fosfaatgehalt", "fosfaatgehalten": "fosfaatgehalt", "fosfaatniveau": "fosfaatniveau", "fosfaatnorm": "fosfaatnorm", "fosfaatoverschot": "fosfaatoverschot", "fosfaatoverschotten": "fosfaatoverschot", "fosfaatprijs": "fosfaatprijs", "fosfaatproduktie": "fosfaatproduktie", "fosfaatquota": "fosfaatquota", "fosfaatreductie": "fosfaatreductie", "fosfaatrisicogebieden": "fosfaatrisicogebied", "fosfaattekort": "fosfaattekort", "fosfaattoestand": "fosfaattoestand", "fosfaatuitscheiding": "fosfaatuitscheid", "fosfaatuitspoeling": "fosfaatuitspoel", "fosfaatverlies": "fosfaatverlies", "fosfaatverliezen": "fosfaatverliez", "fosfaatverwijdering": "fosfaatverwijder", "fosfaatverwijderingsinstallatie": "fosfaatverwijderingsinstallatie", "fosfaatverzadigde": "fosfaatverzadigd", "fosfaatverzadigingsgraad": "fosfaatverzadigingsgrad", "fosfaatvrij": "fosfaatvrij", "fosfaten": "fosfat", "fosfor": "fosfor", "fosforbalans": "fosforbalan", "fosforgehalte": "fosforgehalt", "fosfortoevoegingen": "fosfortoevoeg", "fosforzuur": "fosforzur", "fosgeen": "fosgen", "fossiele": "fossiel", "fossil": "fossil", "fost": "fost", "foster": "foster", "foto": "foto", "fotochemie": "fotochemie", "fotochemische": "fotochemisch", "fotodiode": "fotodiod", "fotogeleider": "fotogeleider", "fotograaf": "fotograf", "fotokopieermachines": "fotokopieermachines", "foton": "foton", "fotonaslagwerk": "fotonaslagwerk", "fotongeneratie": "fotongeneratie", "fotoreacties": "fotoreacties", "fotosynthese": "fotosynthes", "fotosynthetische": "fotosynthetisch", "fotovoltaische": "fotovoltaisch", "fotovoltaïsche": "fotovoltaisch", "fotovoltaordt": "fotovoltaordt", "foulings": "fouling", "foundation": "foundation", "fouragehandelaar": "fouragehandelar", "fouragerende": "fourager", "fourier": "fourier", "fourneert": "fourneert", "fourneren": "fourner", "fout": "fout", "fouten": "fout", "foutieve": "foutiev", "foutmarges": "foutmarges", "foxhol": "foxhol", "fraaie": "fraai", "fraanje": "fraanj", "frac": "frac", "fractie": "fractie", "fractieleider": "fractieleider", "fracties": "fracties", "fractievoorzitter": "fractievoorzitter", "fractiewoordvoerder": "fractiewoordvoerder", "fractionering": "fractioner", "fragmentatie": "fragmentatie", "fragmentation": "fragmentation", "frambozen": "framboz", "frame": "fram", "framework": "framework", "franc": "franc", "francaise": "francais", "france": "franc", "franchise": "franchis", "franchisenemers": "franchisenemer", "francis": "francis", "franciscus": "franciscus", "francs": "franc", "frank": "frank", "frankfurt": "frankfurt", "frankrijk": "frankrijk", "frankrijks": "frankrijk", "franks": "frank", "frans": "fran", "franse": "fran", "fransen": "frans", "fransisco": "fransisco", "fransman": "fransman", "fraude": "fraud", "fraudebestrijding": "fraudebestrijd", "fraudegevoelig": "fraudegevoel", "fraudegevoeligheid": "fraudegevoel", "frauderende": "frauder", "frauduleuze": "frauduleuz", "fraunhofer": "fraunhofer", "fraze": "fraz", "frazier": "frazier", "frederikstraat": "frederikstrat", "free": "free", "freeling": "freeling", "freeman": "freeman", "freeport": "freeport", "freon": "freon", "freonen": "freon", "frequent": "frequent", "frequentere": "frequenter", "frequentie": "frequentie", "frequentiegeregelde": "frequentiegeregeld", "frequentieregelaar": "frequentieregelar", "frequentieregelaars": "frequentieregelar", "frequenties": "frequenties", "fresco": "fresco", "fresenius": "fresenius", "freshwater": "freshwater", "freule": "freul", "frezen": "frez", "frico": "frico", "fried": "fried", "frieling": "frieling", "friends": "friend", "fries": "fries", "friese": "fries", "friesesteijn": "friesesteijn", "friesland": "friesland", "friezen": "friez", "frigo": "frigo", "friis": "friis", "frikadel": "frikadel", "frima": "frima", "fris": "fris", "frisdrank": "frisdrank", "frisdrankblikjes": "frisdrankblikjes", "frisdranken": "frisdrank", "friseer": "friser", "frisgroene": "frisgroen", "frisheid": "frisheid", "frisse": "fris", "frisser": "frisser", "frissere": "frisser", "frisvervige": "frisverv", "frits": "frit", "frituurt": "frituurt", "frituurvet": "frituurvet", "frizuur": "frizur", "fro": "fro", "from": "from", "frommelde": "frommeld", "frons": "fron", "fronsen": "frons", "fronsend": "fronsend", "fronsende": "fronsend", "fronste": "fronst", "front": "front", "frontaal": "frontal", "fronten": "front", "frontlader": "frontlader", "frontplaten": "frontplat", "frouws": "frouw", "fruit": "fruit", "fruitboomgaard": "fruitboomgaard", "fruitboompjes": "fruitboompjes", "fruitconsult": "fruitconsult", "fruitmot": "fruitmot", "fruitsector": "fruitsector", "fruitsoorten": "fruitsoort", "fruitspint": "fruitspint", "fruitteelt": "fruitteelt", "fruitteler": "fruitteler", "fruittelers": "fruitteler", "frustreerde": "frustreerd", "frustreert": "frustreert", "frustreren": "frustrer", "frustrerend": "frustrer", "fry": "fry", "fsc": "fsc", "fsconbag": "fsconbag", "ftalaat": "ftalat", "ftalaatesters": "ftalaatester", "ftalaten": "ftalat", "fucocloxuron": "fucocloxuron", "fuel": "fuel", "fuels": "fuel", "fugro": "fugro", "führungskräfte": "fuhrungskraft", "fuji": "fuji", "fujitsu": "fujitsu", "fukuoka": "fukuoka", "full": "full", "funcosil": "funcosil", "functie": "functie", "functieindicatoren": "functieindicator", "functies": "functies", "functiewijziging": "functiewijz", "functionaliteit": "functionaliteit", "functionaris": "functionaris", "functionarissen": "functionariss", "functioneeert": "functioneeert", "functioneert": "functioneert", "functionele": "functionel", "functioneren": "functioner", "functionerend": "functioner", "functionerende": "functioner", "functionneert": "functionneert", "fund": "fund", "fundament": "fundament", "fundamenteel": "fundamentel", "fundering": "funder", "funderingen": "funder", "funderingsdieptes": "funderingsdieptes", "funderingsmateriaal": "funderingsmateriaal", "funderingspalen": "funderingspal", "funderingszand": "funderingszand", "funen": "fun", "funest": "funest", "fungeerde": "fungeerd", "fungeert": "fungeert", "fungeren": "funger", "fungi": "fungi", "fungicide": "fungicid", "fungopie": "fungopie", "fungus": "fungus", "fup": "fup", "für": "fur", "furanen": "furan", "fürth": "furth", "fusarium": "fusarium", "fuseerde": "fuseerd", "fuseert": "fuseert", "fuseren": "fuser", "fusersysteem": "fusersystem", "fusie": "fusie", "fusiegolf": "fusiegolf", "fusieplannen": "fusieplann", "fusieproces": "fusieproces", "fusiereactor": "fusiereactor", "fusies": "fusies", "fusion": "fusion", "future": "futur", "futuristische": "futuristisch", "fwr": "fwr", "fysica": "fysica", "fysiek": "fysiek", "fysieke": "fysiek", "fysisch": "fysisch", "fysische": "fysisch", "fytofar": "fytofar", "fytofarmacie": "fytofarmacie", "fyziek": "fyziek", "fzk": "fzk", "g": "g", "ga": "ga", "gaaff": "gaaff", "gaafste": "gaafst", "gaan": "gan", "gaande": "gaand", "gaanderen": "gaander", "gaapt": "gaapt", "gaapte": "gaapt", "gaarne": "gaarn", "gaas": "gas", "gaasband": "gaasband", "gaasterland": "gaasterland", "gaat": "gat", "gáat": "gat", "gáát": "gat", "gabor": "gabor", "gabrowski": "gabrowski", "gabrowsky": "gabrowsky", "gac": "gac", "gado": "gado", "gaf": "gaf", "gaia": "gaia", "gaillarde": "gaillard", "gaillot": "gaillot", "gal": "gal", "gala": "gala", "galant": "galant", "galante": "galant", "galanthamine": "galanthamin", "galerie": "galerie", "galicië": "galicie", "gall": "gall", "gallagher": "gallagher", "gallery": "gallery", "gallucci": "gallucci", "galmden": "galmd", "galon": "galon", "galva": "galva", "galvanisatiegroep": "galvanisatiegroep", "galvanisatiezuren": "galvanisatiezur", "galvanische": "galvanisch", "galvaniseringsbedrijf": "galvaniseringsbedrijf", "galvanizing": "galvaniz", "gamma": "gamma", "gammastraling": "gammastral", "gamog": "gamog", "gane": "gan", "gang": "gang", "gangbaar": "gangbar", "gangbare": "gangbar", "gangdeur": "gangdeur", "gangen": "gang", "gangetje": "gangetj", "gansewinkel": "gansewinkel", "ganzen": "ganz", "ganzevles": "ganzevles", "gao": "gao", "gap": "gap", "gapen": "gap", "gapende": "gapend", "garage": "garag", "garagebedrijf": "garagebedrijf", "garagebedrijfjes": "garagebedrijfjes", "garagebedrijven": "garagebedrijv", "garagehouders": "garagehouder", "garages": "garages", "garagevloeren": "garagevloer", "garandeert": "garandeert", "garanderen": "garander", "garant": "garant", "garantie": "garantie", "garantiebepalingen": "garantiebepal", "garantiefonds": "garantiefond", "garantiefondsstelsel": "garantiefondsstelsel", "garanties": "garanties", "garantiestelsel": "garantiestelsel", "garcia": "garcia", "garderobe": "garderob", "garen": "gar", "garnaal": "garnal", "garnalen": "garnal", "garnalenfarms": "garnalenfarm", "garnalenkwekerijen": "garnalenkwekerij", "garnalenteelt": "garnalenteelt", "garnizoen": "garnizoen", "gas": "gas", "gasbedrijf": "gasbedrijf", "gasbehandeling": "gasbehandel", "gasbehandelingsinstallatie": "gasbehandelingsinstallatie", "gasboringen": "gasbor", "gasbronhouders": "gasbronhouder", "gasbroninstallaties": "gasbroninstallaties", "gasbronnen": "gasbronn", "gascentrale": "gascentral", "gaschromatograaf": "gaschromatograf", "gaschromatografie": "gaschromatografie", "gasconcentraties": "gasconcentraties", "gascooled": "gascooled", "gasdicht": "gasdicht", "gasdistributiebedrijven": "gasdistributiebedrijv", "gasdistributieleiding": "gasdistributieleid", "gasdistributiesysteem": "gasdistributiesystem", "gasdroogfaciliteiten": "gasdroogfaciliteit", "gasexplosie": "gasexplosie", "gasexport": "gasexport", "gasfabriek": "gasfabriek", "gasfabrieken": "gasfabriek", "gasfabriekterreinen": "gasfabriekterrein", "gasfasetechnologie": "gasfasetechnologie", "gasgebruik": "gasgebruik", "gasgekoelde": "gasgekoeld", "gasgestookte": "gasgestookt", "gasgroep": "gasgroep", "gashydraten": "gashydrat", "gasinstallatie": "gasinstallatie", "gasketel": "gasketel", "gaskeur": "gaskeur", "gaskeurlabel": "gaskeurlabel", "gaskeurmerk": "gaskeurmerk", "gaskronen": "gaskron", "gaskroon": "gaskron", "gasleiding": "gasleid", "gasleidingen": "gasleid", "gaslekken": "gaslek", "gaslevering": "gaslever", "gaslicht": "gaslicht", "gasmaatschappijen": "gasmaatschappij", "gasmarkt": "gasmarkt", "gasmengsel": "gasmengsel", "gasmeter": "gasmeter", "gasmotor": "gasmotor", "gasmotoren": "gasmotor", "gasmotorinstallaties": "gasmotorinstallaties", "gasnet": "gasnet", "gasolie": "gasolie", "gasoline": "gasolin", "gasontladingslampen": "gasontladingslamp", "gasontvangststantions": "gasontvangststantion", "gasopbrengst": "gasopbrengst", "gasopslag": "gasopslag", "gaspijpen": "gaspijp", "gasplatform": "gasplatform", "gasplatforms": "gasplatform", "gasprijs": "gasprijs", "gasprijzen": "gasprijz", "gasproducent": "gasproducent", "gasproducenten": "gasproducent", "gasproduktie": "gasproduktie", "gasproject": "gasproject", "gasputten": "gasput", "gasreduceerstations": "gasreduceerstation", "gasreinigingssectie": "gasreinigingssectie", "gasreinigingssysteem": "gasreinigingssystem", "gasreserves": "gasreserves", "gassector": "gassector", "gassen": "gass", "gasstroom": "gasstrom", "gast": "gast", "gastank": "gastank", "gastankunit": "gastankunit", "gastec": "gastec", "gastechnologie": "gastechnologie", "gastekorten": "gastekort", "gasten": "gast", "gastheer": "gasther", "gasthuis": "gasthuis", "gastkemer": "gastkemer", "gastoepassingen": "gastoepass", "gastoestel": "gastoestel", "gastoestellen": "gastoestell", "gasturbine": "gasturbin", "gasturbines": "gasturbines", "gastvrij": "gastvrij", "gastvrijheid": "gastvrij", "gastvrouw": "gastvrouw", "gasuitstoot": "gasuitstot", "gasunie": "gasunie", "gasveld": "gasveld", "gasvelden": "gasveld", "gasverbruik": "gasverbruik", "gasverwarmingsaparatuur": "gasverwarmingsaparatur", "gasverwarmingsapparatuur": "gasverwarmingsapparatur", "gasverwarmingsfirma": "gasverwarmingsfirma", "gasvlam": "gasvlam", "gasvondsten": "gasvondst", "gasvoorraad": "gasvoorrad", "gasvoorziening": "gasvoorzien", "gasvormige": "gasvorm", "gasvraag": "gasvrag", "gaswassing": "gaswass", "gaswinning": "gaswinn", "gaswinningsactiviteiten": "gaswinningsactiviteit", "gaswinningsector": "gaswinningsector", "gaswinningsvergunningen": "gaswinningsvergunn", "gaswolk": "gaswolk", "gaszuivering": "gaszuiver", "gat": "gat", "gate": "gat", "gaten": "gat", "gatt": "gatt", "gatwick": "gatwick", "gauging": "gauging", "gault": "gault", "gauw": "gauw", "gauwer": "gauwer", "gave": "gav", "gaven": "gav", "gavi": "gavi", "gaza": "gaza", "gazons": "gazon", "gb": "gb", "gbh": "gbh", "gbs": "gbs", "gc": "gc", "gcb": "gcb", "gcc": "gcc", "gcn": "gcn", "gco": "gco", "gd": "gd", "gdl": "gdl", "ge": "ge", "gea": "gea", "geaarzeld": "geaarzeld", "geaccapareerd": "geaccapareerd", "geaccentueerde": "geaccentueerd", "geaccepteerd": "geaccepteerd", "geaccepteerde": "geaccepteerd", "geaccrediteerd": "geaccrediteerd", "geaccumuleerde": "geaccumuleerd", "geacht": "geacht", "geachte": "geacht", "geactiveerd": "geactiveerd", "geactiveerde": "geactiveerd", "geactualiseerd": "geactualiseerd", "geademd": "geademd", "geaderde": "geaderd", "geadopteerd": "geadopteerd", "geadresseerd": "geadresseerd", "geadviseerd": "geadviseerd", "geaffecteerd": "geaffecteerd", "geaffecteerde": "geaffecteerd", "geafficheerd": "geafficheerd", "geaggregeerd": "geaggregeerd", "geagiteerd": "geagiteerd", "geallieerden": "geallieerd", "geamuseerd": "geamuseerd", "geanalyseerd": "geanalyseerd", "geannuleerd": "geannuleerd", "geanticipeerd": "geanticipeerd", "geantwoord": "geantwoord", "geapprecieerd": "geapprecieerd", "gearbeid": "gearbeid", "gearrangeerd": "gearrangeerd", "gearresteerd": "gearresteerd", "gearresteerde": "gearresteerd", "geasfalteerd": "geasfalteerd", "geassisteerd": "geassisteerd", "geassocieerd": "geassocieerd", "geassocieerde": "geassocieerd", "geattendeerd": "geattendeerd", "geautomatiseerd": "geautomatiseerd", "geautomatiseerde": "geautomatiseerd", "geavanceerd": "geavanceerd", "geavanceerde": "geavanceerd", "gebaar": "gebar", "gebaard": "gebaard", "gebaarde": "gebaard", "gebaarden": "gebaard", "gebaartje": "gebaartj", "gebaat": "gebat", "gebagatelliseerd": "gebagatelliseerd", "gebaggerd": "gebaggerd", "gebaren": "gebar", "gebarrikadeerd": "gebarrikadeerd", "gebaseerd": "gebaseerd", "gebaseerde": "gebaseerd", "gebed": "gebed", "gebeden": "gebed", "gebedoproepen": "gebedoproep", "gebeeste": "gebeest", "gebel": "gebel", "gebeld": "gebeld", "gebergte": "gebergt", "gebersten": "geberst", "gebeurd": "gebeurd", "gebeurde": "gebeurd", "gebeurden": "gebeurd", "gebeuren": "gebeur", "gebeurlijkheid": "gebeur", "gebeurt": "gebeurt", "gebeurtenis": "gebeurtenis", "gebeurtenissen": "gebeurteniss", "gebied": "gebied", "gebieden": "gebied", "gebiedende": "gebied", "gebiedsbeperkingen": "gebiedsbeperk", "gebiedseigen": "gebiedseig", "gebiedsgericht": "gebiedsgericht", "gebiedsgerichte": "gebiedsgericht", "gebiedsspecifieke": "gebiedsspecifiek", "geblaas": "geblas", "gebladerte": "gebladert", "geblageerd": "geblageerd", "geblagueerd": "geblagueerd", "geblankt": "geblankt", "geblazeerde": "geblazeerd", "geblazen": "geblaz", "gebleekt": "gebleekt", "gebleekte": "gebleekt", "gebleken": "geblek", "gebleven": "geblev", "gebliksemd": "gebliksemd", "geblikt": "geblikt", "gebloeid": "gebloeid", "geblokkeerd": "geblokkeerd", "gebloosd": "gebloosd", "geboden": "gebod", "gebodene": "gebod", "geboekt": "geboekt", "geboekte": "geboekt", "geboezemde": "geboezemd", "gebogen": "gebog", "gebonden": "gebond", "gebood": "gebod", "geboomte": "geboomt", "geboord": "geboord", "geboorde": "geboord", "geboorte": "geboort", "geboorteafwijkingen": "geboorteafwijk", "geboren": "gebor", "geborgen": "geborg", "gebotteld": "gebotteld", "gebouw": "gebouw", "gebouwbeheerders": "gebouwbeheerder", "gebouwd": "gebouwd", "gebouwde": "gebouwd", "gebouweigenschappen": "gebouweigenschapp", "gebouwen": "gebouw", "gebouweninstallaties": "gebouweninstallaties", "gebouwfunctie": "gebouwfunctie", "gebouwniveau": "gebouwniveau", "gebouwonderzoek": "gebouwonderzoek", "geboycot": "geboycot", "gebr": "gebr", "gebracht": "gebracht", "gebrachte": "gebracht", "gebrande": "gebrand", "gebrandmerkt": "gebrandmerkt", "gebrek": "gebrek", "gebreke": "gebrek", "gebreken": "gebrek", "gebrekkig": "gebrekk", "gebrekkige": "gebrekk", "gebroed": "gebroed", "gebroeders": "gebroeder", "gebroedsel": "gebroedsel", "gebroken": "gebrok", "gebrokens": "gebroken", "gebromd": "gebromd", "gebrouilleerd": "gebrouilleerd", "gebruik": "gebruik", "gebruikelijk": "gebruik", "gebruikelijke": "gebruik", "gebruiken": "gebruik", "gebruiker": "gebruiker", "gebruikers": "gebruiker", "gebruikersgedrag": "gebruikersgedrag", "gebruikersgroepen": "gebruikersgroep", "gebruikersmarkt": "gebruikersmarkt", "gebruikersvriendelijk": "gebruikersvriend", "gebruikersvriendelijke": "gebruikersvriend", "gebruikmaking": "gebruikmak", "gebruiks": "gebruik", "gebruiksaanwijzing": "gebruiksaanwijz", "gebruiksbepalingen": "gebruiksbepal", "gebruiksduur": "gebruiksdur", "gebruiksfase": "gebruiksfas", "gebruiksgedrag": "gebruiksgedrag", "gebruikskosten": "gebruikskost", "gebruiksmogelijkheden": "gebruiksmog", "gebruikspatroon": "gebruikspatron", "gebruiksspecificaties": "gebruiksspecificaties", "gebruiksverbod": "gebruiksverbod", "gebruiksvolume": "gebruiksvolum", "gebruiksvoorschriften": "gebruiksvoorschrift", "gebruiksvoorwerpen": "gebruiksvoorwerp", "gebruiksvriendelijk": "gebruiksvriend", "gebruikswaarde": "gebruikswaard", "gebruikt": "gebruikt", "gebruikte": "gebruikt", "gebruikten": "gebruikt", "gebruinde": "gebruind", "gebudgetteerde": "gebudgetteerd", "gebukt": "gebukt", "gebulder": "gebulder", "gebundeld": "gebundeld", "gebundelde": "gebundeld", "geburgemeesterd": "geburgemeesterd", "gec": "gec", "gecertificeerd": "gecertificeerd", "gecertificeerde": "gecertificeerd", "gecharmeerd": "gecharmeerd", "gechloreerd": "gechloreerd", "gechloreerde": "gechloreerd", "geciteerd": "geciteerd", "geclassificeerd": "geclassificeerd", "geclusterd": "geclusterd", "gecombineerd": "gecombineerd", "gecombineerde": "gecombineerd", "gecompenseerd": "gecompenseerd", "gecompleteerd": "gecompleteerd", "gecompliceerd": "gecompliceerd", "gecompliceerde": "gecompliceerd", "gecompliceerder": "gecompliceerder", "gecomposteerd": "gecomposteerd", "gecomposteerde": "gecomposteerd", "gecompromitteerd": "gecompromitteerd", "gecomputeriseerde": "gecomputeriseerd", "geconcentreerd": "geconcentreerd", "geconcentreerde": "geconcentreerd", "geconcludeerd": "geconcludeerd", "gecondenseerd": "gecondenseerd", "geconfronteerd": "geconfronteerd", "geconstateerd": "geconstateerd", "geconstateerde": "geconstateerd", "geconstrueerd": "geconstrueerd", "geconstrueerde": "geconstrueerd", "geconsulteerd": "geconsulteerd", "gecontinueerd": "gecontinueerd", "gecontracteerd": "gecontracteerd", "gecontroleerd": "gecontroleerd", "gecontroleerde": "gecontroleerd", "geconverteerd": "geconverteerd", "gecoördineerd": "gecoordineerd", "gecorreleerd": "gecorreleerd", "gecreëerd": "gecreeerd", "gecreosoteerd": "gecreosoteerd", "gecreotoseerd": "gecreotoseerd", "gedaagd": "gedaagd", "gedaald": "gedaald", "gedaan": "gedan", "gedacht": "gedacht", "gedaçht": "gedaçht", "gedachte": "gedacht", "gedachteloos": "gedachtelos", "gedachteloosheid": "gedachtelos", "gedachten": "gedacht", "gedachtenwisseling": "gedachtenwissel", "gedachtetjes": "gedachtetjes", "gedachtig": "gedacht", "gedagvaard": "gedagvaard", "gedane": "gedan", "gedanst": "gedanst", "gedateerd": "gedateerd", "gedébaucheerd": "gedebaucheerd", "gedecentraliseerde": "gedecentraliseerd", "gedecideerd": "gedecideerd", "gedecideerde": "gedecideerd", "gedecolleteerd": "gedecolleteerd", "gedecoreerde": "gedecoreerd", "gedeeld": "gedeeld", "gedeelde": "gedeeld", "gedeelte": "gedeelt", "gedeeltelijk": "gedeelt", "gedeeltelijke": "gedeelt", "gedeelten": "gedeelt", "gedefinieerd": "gedefinieerd", "gedegen": "gedeg", "gedehydrateerd": "gedehydrateerd", "gedeinsd": "gedeinsd", "gedekt": "gedekt", "gedekte": "gedekt", "gedemonstreerd": "gedemonstreerd", "gedemonteerd": "gedemonteerd", "gedemonteerde": "gedemonteerd", "gedempt": "gedempt", "gedempte": "gedempt", "gedeponeerd": "gedeponeerd", "gedeputeerde": "gedeputeerd", "gedestilleerd": "gedestilleerd", "gedetacheerd": "gedetacheerd", "gedetailleerde": "gedetailleerd", "gedetailleerder": "gedetailleerder", "gedezoneerd": "gedezoneerd", "gedicht": "gedicht", "gedicteerd": "gedicteerd", "gediend": "gediend", "gediende": "gediend", "gedierte": "gediert", "gediffameerd": "gediffameerd", "gedifferentieerde": "gedifferentieerd", "gedijen": "gedij", "gedijt": "gedijt", "gedimensioneerde": "gedimensioneerd", "gedineerd": "gedineerd", "geding": "geding", "gedirigeerd": "gedirigeerd", "gediscrimineerd": "gediscrimineerd", "gediscusieerd": "gediscusieerd", "gediscussieerd": "gediscussieerd", "gedistingeerd": "gedistingeerd", "gedistingeerde": "gedistingeerd", "gedistingeerds": "gedistingeerd", "gedoe": "gedoe", "gedoemd": "gedoemd", "gedoezeld": "gedoezeld", "gedoezelds": "gedoezeld", "gedogen": "gedog", "gedoken": "gedok", "gedomineerd": "gedomineerd", "gedonder": "gedonder", "gedonkerde": "gedonkerd", "gedood": "gedod", "gedoofd": "gedoofd", "gedoogbeschikking": "gedoogbeschik", "gedoogd": "gedoogd", "gedoogt": "gedoogt", "gedoogverklaring": "gedoogverklar", "gedoopt": "gedoopt", "gedoseerd": "gedoseerd", "gedoseerde": "gedoseerd", "gedraaf": "gedraf", "gedraagt": "gedraagt", "gedraaid": "gedraaid", "gedrag": "gedrag", "gedragen": "gedrag", "gedragscode": "gedragscod", "gedragslijn": "gedragslijn", "gedragsmaatregelen": "gedragsmaatregel", "gedragsnorm": "gedragsnorm", "gedragspatronen": "gedragspatron", "gedragsverandering": "gedragsverander", "gedragswetenschappen": "gedragswetenschapp", "gedraineerd": "gedraineerd", "gedrakenschubde": "gedrakenschubd", "gedrang": "gedrang", "gedregd": "gedregd", "gedreigd": "gedreigd", "gedrenkt": "gedrenkt", "gedreun": "gedreun", "gedreven": "gedrev", "gedrevenheid": "gedrev", "gedrongen": "gedrong", "gedronken": "gedronk", "gedroogd": "gedroogd", "gedroogde": "gedroogd", "gedroom": "gedrom", "gedroomd": "gedroomd", "gedrukt": "gedrukt", "gedrukte": "gedrukt", "geduchte": "geducht", "geduelleerd": "geduelleerd", "geduizeld": "geduizeld", "geduld": "geduld", "geduldig": "geduld", "geduldige": "geduld", "gedumpt": "gedumpt", "gedumpte": "gedumpt", "gedupeerd": "gedupeerd", "gedupeerde": "gedupeerd", "gedupeerden": "gedupeerd", "gedurende": "gedur", "gedurfd": "gedurfd", "geduurd": "geduurd", "geduwd": "geduwd", "gedwaald": "gedwaald", "gedwarrel": "gedwarrel", "gedweept": "gedweept", "gedwongen": "gedwong", "gee": "gee", "geëerbiedigd": "geeerbiedigd", "geëerbiedigde": "geeerbiedigd", "geef": "gef", "geëffend": "geeffend", "geeft": "geeft", "geëigend": "geeigend", "geëigende": "geeigend", "geeindigd": "geeindigd", "geëindigd": "geeindigd", "geëist": "geeist", "geëiste": "geeist", "geel": "gel", "geelbruine": "geelbruin", "geelden": "geeld", "geelhoed": "geelhoed", "geëmailleerde": "geemailleerd", "geëmigreerd": "geemigreerd", "geëmigreerde": "geemigreerd", "geëmitteerd": "geemitteerd", "geëmulgeerde": "geemulgeerd", "geen": "gen", "géen": "gen", "géén": "gen", "geënerveerd": "geenerveerd", "geënerveerde": "geenerveerd", "geëngageerd": "geengageerd", "geënquêteerde": "geenquêteerd", "geent": "geent", "geënt": "geent", "geënterd": "geenterd", "geëquilibreerd": "geequilibreerd", "geërgerd": "geergerd", "geertje": "geertj", "geertruidenberg": "geertruidenberg", "geesink": "geesink", "geest": "geest", "geestelijk": "geestelijk", "geestelijke": "geestelijk", "geesteskrank": "geesteskrank", "geestig": "geestig", "geestige": "geestig", "geestiger": "geestiger", "geestkracht": "geestkracht", "geëtiketteerd": "geetiketteerd", "geëvacueerd": "geevacueerd", "geëvacueerde": "geevacueerd", "geëvalueerd": "geevalueerd", "geëxecuteerd": "geexecuteerd", "geëxecuteerde": "geexecuteerd", "geëxpandeerd": "geexpandeerd", "geëxperimenteerd": "geexperimenteerd", "geëxploiteerd": "geexploiteerd", "geëxploreerd": "geexploreerd", "geëxporteerd": "geexporteerd", "geëxporteerde": "geexporteerd", "geëxtrudeerd": "geextrudeerd", "gefabriceerd": "gefabriceerd", "gefaseerd": "gefaseerd", "gefaseerde": "gefaseerd", "geffen": "geff", "gefietst": "gefietst", "gefilterd": "gefilterd", "gefilterde": "gefilterd", "gefinancierd": "gefinancierd", "gefinancierde": "gefinancierd", "gefixeerd": "gefixeerd", "gefixeerde": "gefixeerd", "geflirt": "geflirt", "geflotteerde": "geflotteerd", "gefluïdiseerd": "gefluidiseerd", "gefluisterd": "gefluisterd", "gefluisterde": "gefluisterd", "gefluit": "gefluit", "geforceerde": "geforceerd", "geformuleerd": "geformuleerd", "gefortuneerd": "gefortuneerd", "gefragmenteerd": "gefragmenteerd", "gefrankeerd": "gefrankeerd", "gefriseerd": "gefriseerd", "gefundeerd": "gefundeerd", "gefundeerde": "gefundeerd", "gegaan": "gegan", "gegadigde": "gegadigd", "gegalvaniseerd": "gegalvaniseerd", "gegane": "gegan", "gegarandeerd": "gegarandeerd", "gegarandeerde": "gegarandeerd", "gegedacht": "gegedacht", "gegen": "geg", "gegenereerd": "gegenereerd", "gegeseld": "gegeseld", "gegeten": "geget", "gegeven": "gegev", "gegevens": "gegeven", "gegevensbank": "gegevensbank", "gegevensverzameling": "gegevensverzamel", "gegewiegd": "gegewiegd", "gegijzeld": "gegijzeld", "gegleden": "gegled", "geglimlacht": "geglimlacht", "geglimpt": "geglimpt", "gegloeid": "gegloeid", "gegoede": "gegoed", "gegolfd": "gegolfd", "gegòlfd": "gegòlfd", "gegolfde": "gegolfd", "gegooid": "gegooid", "gegoten": "gegot", "gegraven": "gegrav", "gegrepen": "gegrep", "gegrijsd": "gegrijsd", "gegrinnik": "gegrinnik", "gegroefd": "gegroefd", "gegroeid": "gegroeid", "gegroeit": "gegroeit", "gegroepeerd": "gegroepeerd", "gegroet": "gegroet", "gehaakt": "gehaakt", "gehaald": "gehaald", "gehaast": "gehaast", "gehaat": "gehat", "gehad": "gehad", "gehaktachtige": "gehaktacht", "gehalogeneerde": "gehalogeneerd", "gehalte": "gehalt", "gehalten": "gehalt", "gehaltes": "gehaltes", "gehalveerd": "gehalveerd", "gehamerd": "gehamerd", "gehandeld": "gehandeld", "gehandhaafd": "gehandhaafd", "gehandwerkte": "gehandwerkt", "gehangen": "gehang", "gehanteerd": "gehanteerd", "gehanteerde": "gehanteerd", "gehard": "gehard", "geharmonieerd": "geharmonieerd", "geharmoniseerd": "geharmoniseerd", "geharmoniseerde": "geharmoniseerd", "gehe": "geh", "gehecht": "gehecht", "gehechtheid": "gehecht", "geheel": "gehel", "gehéel": "gehel", "geheerst": "geheerst", "geheim": "geheim", "geheime": "geheim", "geheimenis": "geheimenis", "geheimgehouden": "geheimgehoud", "geheimhouding": "geheimhoud", "geheimste": "geheimst", "geheimweg": "geheimweg", "geheimzinnig": "geheimzinn", "geheimzinnige": "geheimzinn", "geheimzinniger": "geheimzinniger", "geheimzinnigheden": "geheimzinn", "geheimzinnigheid": "geheimzinn", "gehele": "gehel", "geherstructureerd": "geherstructureerd", "geheten": "gehet", "geheugen": "geheug", "geheugenkaartsystemen": "geheugenkaartsystem", "geheugens": "geheugen", "geheugenverlies": "geheugenverlies", "geheven": "gehev", "gehinderd": "gehinderd", "gehinderden": "gehinderd", "geholpen": "geholp", "gehomogeniseerd": "gehomogeniseerd", "gehonoreerd": "gehonoreerd", "gehoopt": "gehoopt", "gehoor": "gehor", "gehoord": "gehoord", "gehoororganen": "gehoororgan", "gehoorschade": "gehoorschad", "gehoorvlies": "gehoorvlies", "gehoorzaam": "gehoorzam", "gehoorzame": "gehoorzam", "gehoorzamen": "gehoorzam", "gehouden": "gehoud", "gehuichel": "gehuichel", "gehuild": "gehuild", "gehuisvest": "gehuisvest", "gehurkt": "gehurkt", "gehuurd": "gehuurd", "gehydrolyseerd": "gehydrolyseerd", "gehypnotiseerd": "gehypnotiseerd", "geïdentificeerd": "geidentificeerd", "geigy": "geigy", "geijkte": "geijkt", "geijld": "geijld", "geijsel": "geijsel", "geïllustreerd": "geillustreerd", "geimplanteerd": "geimplanteerd", "geïmplementeerd": "geimplementeerd", "geïmporteerd": "geimporteerd", "geïmporteerde": "geimporteerd", "geïmpregneerd": "geimpregneerd", "geïmpregneerde": "geimpregneerd", "gein": "gein", "geïncrusteerd": "geincrusteerd", "geïnd": "geind", "geïnde": "geind", "geïndustrialiseerde": "geindustrialiseerd", "geïnfiltreerd": "geinfiltreerd", "geïnformeerd": "geinformeerd", "geïnhaleerde": "geinhaleerd", "geïnitieerde": "geinitieerd", "geïnjecteerd": "geinjecteerd", "geïnspecteerd": "geinspecteerd", "geïnspireerd": "geinspireerd", "geïnstalleerd": "geinstalleerd", "geïnstalleerde": "geinstalleerd", "geïntegreerd": "geintegreerd", "geïntegreerde": "geintegreerd", "geïntensiveerd": "geintensiveerd", "geinteresseerd": "geinteresseerd", "geïnteresseerd": "geinteresseerd", "geïnteresseerden": "geinteresseerd", "geïnternaliseerd": "geinternaliseerd", "geïnterpreteerd": "geinterpreteerd", "geïntrigeerd": "geintrigeerd", "geïntroduceerd": "geintroduceerd", "geïntroduceerde": "geintroduceerd", "geïnventariseerd": "geinventariseerd", "geïnvesteerd": "geinvesteerd", "geinviteerd": "geinviteerd", "geïnviteerd": "geinviteerd", "geiser": "geiser", "geisers": "geiser", "geïsoleerd": "geisoleerd", "geïsoleerde": "geisoleerd", "geitenhouderij": "geitenhouderij", "gejaagd": "gejaagd", "gejokt": "gejokt", "gek": "gek", "gèk": "gèk", "gekalmeerd": "gekalmeerd", "gekamd": "gekamd", "gekanaliseerd": "gekanaliseerd", "gekapt": "gekapt", "gekarakteriseerd": "gekarakteriseerd", "gekeerd": "gekeerd", "gekeken": "gekek", "gekend": "gekend", "gekenmerkt": "gekenmerkt", "gekerm": "gekerm", "gekermd": "gekermd", "geketende": "geket", "gekeurd": "gekeurd", "gekheid": "gekheid", "gekhoudend": "gekhoud", "gekhouderij": "gekhouderij", "gekibbeld": "gekibbeld", "gekieteld": "gekieteld", "gekissebis": "gekissebis", "gekke": "gek", "gekken": "gek", "gekkenhuis": "gekkenhuis", "gekker": "gekker", "geklaagd": "geklaagd", "geklede": "gekled", "gekleed": "gekled", "geklemd": "geklemd", "geklês": "geklê", "geklets": "geklet", "gekleurd": "gekleurd", "gekleurde": "gekleurd", "geklikklak": "geklikklak", "geklit": "geklit", "geklonken": "geklonk", "geklopt": "geklopt", "gekluisterd": "gekluisterd", "geknabbeld": "geknabbeld", "geknakt": "geknakt", "geknakte": "geknakt", "geknede": "gekned", "geknepen": "geknep", "geknield": "geknield", "geknikt": "geknikt", "geknipt": "geknipt", "geknipte": "geknipt", "geknoeid": "geknoeid", "geknoopt": "geknoopt", "gekocht": "gekocht", "gekoeld": "gekoeld", "gekoelde": "gekoeld", "gekoesterd": "gekoesterd", "gekomen": "gekom", "gekookt": "gekookt", "gekoosd": "gekoosd", "gekoppeld": "gekoppeld", "gekoppelde": "gekoppeld", "gekort": "gekort", "gekost": "gekost", "gekozen": "gekoz", "gekraak": "gekrak", "gekraakt": "gekraakt", "gekrampt": "gekrampt", "gekrampte": "gekrampt", "gekregen": "gekreg", "gekrenkt": "gekrenkt", "gekrenkte": "gekrenkt", "gekreukeld": "gekreukeld", "gekristalliseerd": "gekristalliseerd", "gekritizeerd": "gekritizeerd", "gekromd": "gekromd", "gekronkel": "gekronkel", "gekropen": "gekrop", "gekruist": "gekruist", "gekste": "gekst", "gekund": "gekund", "gekust": "gekust", "gekwalificeerd": "gekwalificeerd", "gekwalificeerde": "gekwalificeerd", "gekwantificeerd": "gekwantificeerd", "gekwantificeerde": "gekwantificeerd", "gekweekt": "gekweekt", "gekweekte": "gekweekt", "gekwetst": "gekwetst", "gekwetste": "gekwetst", "gel": "gel", "gelaagd": "gelaagd", "gelaat": "gelat", "gelaatskleur": "gelaatskleur", "gelaatstrekken": "gelaatstrek", "gelach": "gelach", "gelachen": "gelach", "geladen": "gelad", "gelakt": "gelakt", "gelakte": "gelakt", "gelanceerd": "gelanceerd", "gelanceerde": "gelanceerd", "gelandde": "geland", "gelang": "gelang", "gelast": "gelast", "gelaste": "gelast", "gelasten": "gelast", "gelaster": "gelaster", "gelaten": "gelat", "gelatenheid": "gelat", "gelatens": "gelaten", "geld": "geld", "gèld": "gèld", "geldbedrag": "geldbedrag", "geldbeslommering": "geldbeslommer", "geldbesparing": "geldbespar", "geldboete": "geldboet", "geldboetes": "geldboetes", "geldeconomie": "geldeconomie", "geldelijk": "geldelijk", "geldelijke": "geldelijk", "gelden": "geld", "geldend": "geldend", "geldende": "geldend", "gelder": "gelder", "gelderland": "gelderland", "geldermalsen": "geldermals", "gelders": "gelder", "geldersch": "geldersch", "geldersche": "geldersch", "gelderse": "gelder", "geldgebrek": "geldgebrek", "geldig": "geldig", "geldigheidsduur": "geldigheidsdur", "geldkwestie": "geldkwestie", "geldprijzen": "geldprijz", "geldschieter": "geldschieter", "geldschieters": "geldschieter", "geldstromen": "geldstrom", "geldstroom": "geldstrom", "geldstukslaande": "geldstukslaand", "geldt": "geldt", "geldvastlegging": "geldvastlegg", "geldwaarde": "geldwaard", "gele": "gel", "geleden": "geled", "geledene": "geled", "geledigd": "geledigd", "geleedpotigen": "geleedpot", "geleefd": "geleefd", "geléefd": "geleefd", "geleéfd": "geleefd", "geleegd": "geleegd", "geleegde": "geleegd", "geleek": "gelek", "geleen": "gelen", "geleend": "geleend", "geleense": "gelen", "geleerd": "geleerd", "geleerde": "geleerd", "gelegd": "gelegd", "gelegen": "geleg", "gelegenheden": "geleg", "gelegenheid": "geleg", "gelei": "gelei", "geleid": "geleid", "geleidde": "geleid", "geleide": "geleid", "geleidebon": "geleidebon", "geleidelijk": "geleid", "geleidelijke": "geleid", "geleidelijkjes": "geleidelijkjes", "geleidelijkweg": "geleidelijkweg", "geleidend": "geleid", "geleidende": "geleid", "geleiding": "geleid", "geleidingsmetingen": "geleidingsmet", "geleidingsverwarming": "geleidingsverwarm", "geleidt": "geleidt", "geleken": "gelek", "gelekt": "gelekt", "gelet": "gelet", "geletter": "geletter", "geleverd": "geleverd", "geleverde": "geleverd", "gelezen": "gelez", "geliberaliseerde": "geliberaliseerd", "gelicht": "gelicht", "gelieerd": "gelieerd", "gelieerde": "gelieerd", "geliefd": "geliefd", "geliefde": "geliefd", "gelieve": "geliev", "gelig": "gelig", "gelige": "gelig", "gelijk": "gelijk", "gelijkblijvende": "gelijkblijv", "gelijke": "gelijk", "gelijkelijk": "gelijk", "gelijkende": "gelijk", "gelijkenis": "gelijkenis", "gelijkenissen": "gelijkeniss", "gelijker": "gelijker", "gelijkgetrokken": "gelijkgetrok", "gelijkheid": "gelijk", "gelijkmatig": "gelijkmat", "gelijkmatige": "gelijkmat", "gelijkmatiger": "gelijkmatiger", "gelijkmatigheid": "gelijkmat", "gelijknamige": "gelijknam", "gelijksoortig": "gelijksoort", "gelijksoortige": "gelijksoort", "gelijkspanning": "gelijkspann", "gelijkstroom": "gelijkstrom", "gelijktijdig": "gelijktijd", "gelijktijdige": "gelijktijd", "gelijkwaardig": "gelijkwaard", "gelijkwaardige": "gelijkwaard", "gelijkwaardigheid": "gelijkwaard", "gelijmd": "gelijmd", "gelikt": "gelikt", "gelimiteerd": "gelimiteerd", "gelman": "gelman", "gelokaliseerd": "gelokaliseerd", "geloken": "gelok", "gelokt": "gelokt", "gelonkt": "gelonkt", "geloof": "gelof", "geloofd": "geloofd", "geloofde": "geloofd", "geloofden": "geloofd", "gelooft": "gelooft", "geloofwaardig": "geloofwaard", "geloofwaardige": "geloofwaard", "geloofwaardigheid": "geloofwaard", "geloosd": "geloosd", "geloosde": "geloosd", "gelopen": "gelop", "gelost": "gelost", "geloven": "gelov", "gelovende": "gelov", "geloverte": "gelovert", "gelovig": "gelov", "geluid": "geluid", "geluidachtergrondniveau": "geluidachtergrondniveau", "geluidarme": "geluidarm", "geluidbelaste": "geluidbelast", "geluidbelasting": "geluidbelast", "geluidblootstelling": "geluidblootstell", "geluidbron": "geluidbron", "geluiddemping": "geluiddemp", "geluiddeskundige": "geluiddeskund", "geluideloze": "geluideloz", "geluiden": "geluid", "geluidgevoelige": "geluidgevoel", "geluidhinder": "geluidhinder", "geluidhinderprobleem": "geluidhinderproblem", "geluidisolatie": "geluidisolatie", "geluidisolatieproject": "geluidisolatieproject", "geluidisolerende": "geluidisoler", "geluidjes": "geluidjes", "geluidloos": "geluidlos", "geluidloze": "geluidloz", "geluidluw": "geluidluw", "geluidmeetpunten": "geluidmeetpunt", "geluidmeters": "geluidmeter", "geluidmetingen": "geluidmet", "geluidniveau": "geluidniveau", "geluidniveaukaart": "geluidniveaukaart", "geluidniveaukaarten": "geluidniveaukaart", "geluidnormen": "geluidnorm", "geluidoverlast": "geluidoverlast", "geluidproduktie": "geluidproduktie", "geluidregels": "geluidregel", "geluids": "geluid", "geluidsapparatuur": "geluidsapparatur", "geluidsarme": "geluidsarm", "geluidsbelasting": "geluidsbelast", "geluidsberekeningen": "geluidsbereken", "geluidscassettes": "geluidscassettes", "geluidscertificatie": "geluidscertificatie", "geluidschermen": "geluidscherm", "geluidschermwoning": "geluidschermwon", "geluidscontouren": "geluidscontour", "geluidsdeskundige": "geluidsdeskund", "geluidseisen": "geluidseis", "geluidsemissie": "geluidsemissie", "geluidshinder": "geluidshinder", "geluidsisolatie": "geluidsisolatie", "geluidsisolerend": "geluidsisoler", "geluidsituatie": "geluidsituatie", "geluidslimiet": "geluidslimiet", "geluidsmaatregel": "geluidsmaatregel", "geluidsmetingen": "geluidsmet", "geluidsniveau": "geluidsniveau", "geluidsniveaukaart": "geluidsniveaukaart", "geluidsniveaus": "geluidsniveaus", "geluidsnorm": "geluidsnorm", "geluidsnormen": "geluidsnorm", "geluidsonderzoek": "geluidsonderzoek", "geluidsoverlast": "geluidsoverlast", "geluidsoverlastnormen": "geluidsoverlastnorm", "geluidsprobleem": "geluidsproblem", "geluidsproduktie": "geluidsproduktie", "geluidsproeven": "geluidsproev", "geluidsreductie": "geluidsreductie", "geluidsscherm": "geluidsscherm", "geluidsschermen": "geluidsscherm", "geluidsvoorschriften": "geluidsvoorschrift", "geluidsvoortplanting": "geluidsvoortplant", "geluidswal": "geluidswal", "geluidswallen": "geluidswall", "geluidswering": "geluidswer", "geluidszone": "geluidszon", "geluidszones": "geluidszones", "geluidvervuiling": "geluidvervuil", "geluidvoorschriften": "geluidvoorschrift", "geluidwalwoning": "geluidwalwon", "geluidwerende": "geluidwer", "geluidwering": "geluidwer", "geluidzone": "geluidzon", "geluisterd": "geluisterd", "geluk": "geluk", "gelukken": "geluk", "gelukkig": "gelukk", "gelukkige": "gelukk", "gelukkiger": "gelukkiger", "gelukkigst": "gelukkigst", "gelukt": "gelukt", "gelukte": "gelukt", "geluncht": "geluncht", "gem": "gem", "gemaakt": "gemaakt", "gemaakte": "gemaakt", "gemaal": "gemal", "gemaas": "gemas", "gemachtigd": "gemachtigd", "gemak": "gemak", "gemakkelijk": "gemak", "gemakkelijke": "gemak", "gemakkelijker": "gemakkelijker", "gemakkelijkheid": "gemak", "gemakzucht": "gemakzucht", "gemalen": "gemal", "gemanipuleerd": "gemanipuleerd", "gemanipuleerde": "gemanipuleerd", "gemarkeerd": "gemarkeerd", "gemarteld": "gemarteld", "gemartelde": "gemarteld", "gemartyrizeerd": "gemartyrizeerd", "gemartyrizeerde": "gemartyrizeerd", "gematigd": "gematigd", "gematigde": "gematigd", "gematigder": "gematigder", "gematigdheid": "gematigd", "gemco": "gemco", "gemechaniseerde": "gemechaniseerd", "gemeden": "gemed", "gemeen": "gemen", "gemeend": "gemeend", "gemeengoed": "gemeengoed", "gemeenschap": "gemeenschap", "gemeenschappelijk": "gemeenschapp", "gemeenschappelijke": "gemeenschapp", "gemeenschappen": "gemeenschapp", "gemeenschapsgevoel": "gemeenschapsgevoel", "gemeenschapsprojecten": "gemeenschapsproject", "gemeenste": "gemeenst", "gemeente": "gemeent", "gemeenteambtenaren": "gemeenteambtenar", "gemeentebedrijven": "gemeentebedrijv", "gemeentebesturen": "gemeentebestur", "gemeentebestuur": "gemeentebestur", "gemeentebestuurder": "gemeentebestuurder", "gemeentediensten": "gemeentedienst", "gemeentefonds": "gemeentefond", "gemeentegrenzen": "gemeentegrenz", "gemeentehuis": "gemeentehuis", "gemeentehuizen": "gemeentehuiz", "gemeentelijk": "gemeent", "gemeentelijke": "gemeent", "gemeenten": "gemeent", "gemeenteplannen": "gemeenteplann", "gemeenteplantsoen": "gemeenteplantsoen", "gemeenteraad": "gemeenterad", "gemeenteraadsleden": "gemeenteraadsled", "gemeenteraden": "gemeenterad", "gemeentereiniging": "gemeenterein", "gemeentes": "gemeentes", "gemeentestem": "gemeentestem", "gemeentewaterleidingen": "gemeentewaterleid", "gemeentewerken": "gemeentewerk", "gemeentewet": "gemeentewet", "gemeinschaft": "gemeinschaft", "gemeld": "gemeld", "gemene": "gemen", "gemenebest": "gemenebest", "gemener": "gemener", "gemengd": "gemengd", "gemengde": "gemengd", "gemengeld": "gemengeld", "gement": "gement", "gemerkt": "gemerkt", "gemerkte": "gemerkt", "gemert": "gemert", "gemest": "gemest", "gemeten": "gemet", "gemetselde": "gemetseld", "gemeubileerd": "gemeubileerd", "gemeubileerde": "gemeubileerd", "gemicroniseerde": "gemicroniseerd", "gemiddeld": "gemiddeld", "gemiddelde": "gemiddeld", "gemiddelden": "gemiddeld", "gemijmerd": "gemijmerd", "gemillimeterd": "gemillimeterd", "geminimaliseerd": "geminimaliseerd", "gemis": "gemis", "gemist": "gemist", "gemodelleerd": "gemodelleerd", "gemoderniseerd": "gemoderniseerd", "gemodificeerd": "gemodificeerd", "gemodificeerde": "gemodificeerd", "gemoed": "gemoed", "gemoedsstemming": "gemoedsstemm", "gemoeid": "gemoeid", "gemonitored": "gemonitored", "gemonteerd": "gemonteerd", "gemopperd": "gemopperd", "gemorst": "gemorst", "gemorste": "gemorst", "gemotiveerd": "gemotiveerd", "gemotoriseerd": "gemotoriseerd", "gemplementeerd": "gemplementeerd", "gems": "gem", "gemteresseerd": "gemteresseerd", "gemuilde": "gemuild", "gen": "gen", "genaamd": "genaamd", "genade": "genad", "genadeloos": "genadelos", "genaderd": "genaderd", "genadig": "genad", "genadiglijk": "genadig", "genageld": "genageld", "genas": "genas", "genderen": "gender", "gene": "gen", "genees": "genes", "geneesheer": "geneesher", "geneeskunde": "geneeskund", "geneeskundig": "geneeskund", "geneesmiddel": "geneesmiddel", "geneesmiddelen": "geneesmiddel", "geneesmiddelenfabriek": "geneesmiddelenfabriek", "geneest": "geneest", "genegeerd": "genegeerd", "genegenheid": "geneg", "geneigd": "geneigd", "genen": "gen", "generaal": "general", "generaals": "general", "generaalskostuum": "generaalskostum", "generaalstijd": "generaalstijd", "general": "general", "generale": "general", "generalitat": "generalitat", "generatie": "generatie", "generaties": "generaties", "generation": "generation", "generator": "generator", "generatoren": "generator", "generatorenfabrikant": "generatorenfabrikant", "generatorstroom": "generatorstrom", "generen": "gener", "genereren": "generer", "genererend": "generer", "geneseo": "geneseo", "genesteld": "genesteld", "genetic": "genetic", "genetisch": "genetisch", "genetische": "genetisch", "geneurie": "geneurie", "geneutraliseerd": "geneutraliseerd", "genève": "genèv", "genezen": "genez", "genezing": "genez", "genformeerd": "genformeerd", "geniaal": "geniaal", "genie": "genie", "genieerd": "genieerd", "geniepig": "geniep", "geniet": "geniet", "genieten": "geniet", "genietend": "geniet", "genietende": "geniet", "genius": "genius", "genk": "genk", "genmiddeld": "genmiddeld", "gennep": "gennep", "genodigd": "genodigd", "genodigden": "genodigd", "genoeg": "genoeg", "genoegen": "genoeg", "genoemd": "genoemd", "genoemde": "genoemd", "genomen": "genom", "genomineerd": "genomineerd", "genomineerde": "genomineerd", "genomineerden": "genomineerd", "genoodzaakt": "genoodzaakt", "genoot": "genot", "genootschap": "genootschap", "genormeerd": "genormeerd", "genot": "genot", "genoteerd": "genoteerd", "genoteerde": "genoteerd", "genoten": "genot", "genotmiddelenbedrijven": "genotmiddelenbedrijv", "genotmiddelenindustrie": "genotmiddelenindustrie", "genotoxiciteit": "genotoxiciteit", "genre": "genr", "genres": "genres", "gent": "gent", "genten": "gent", "gentleman": "gentleman", "gentlemenrace": "gentlemenrac", "gents": "gent", "gentse": "gent", "genua": "genua", "genuanceerd": "genuanceerd", "genummerde": "genummerd", "genus": "genus", "geo": "geo", "geobsedeerd": "geobsedeerd", "geocomposieten": "geocomposiet", "geoefend": "geoefend", "geoff": "geoff", "geofferd": "geofferd", "geoforschungszentrum": "geoforschungszentrum", "geofysisch": "geofysisch", "geofysische": "geofysisch", "geografisch": "geografisch", "geografische": "geografisch", "geographical": "geographical", "geohydrologie": "geohydrologie", "geohydrologische": "geohydrologisch", "geologenteam": "geologenteam", "geologisch": "geologisch", "geologische": "geologisch", "geometrie": "geometrie", "geonaut": "geonaut", "geoogst": "geoogst", "geoordeeld": "geoordeeld", "geoormerkte": "geoormerkt", "geopenbaard": "geopenbaard", "geopend": "geopend", "geopende": "geopend", "geophysical": "geophysical", "geopolis": "geopolis", "geopperd": "geopperd", "geoptimaliseerde": "geoptimaliseerd", "georas": "georas", "geordende": "geordend", "georganiseerd": "georganiseerd", "georganiseerde": "georganiseerd", "george": "georg", "georgswerder": "georgswerder", "georiënteerd": "georienteerd", "georiënteerde": "georienteerd", "geostone": "geoston", "geotechniek": "geotechniek", "geotextiel": "geotextiel", "geotextielen": "geotextiel", "geothermie": "geothermie", "geothermisch": "geothermisch", "geothermische": "geothermisch", "geoxideerd": "geoxideerd", "geoxideerde": "geoxideerd", "geoxydeerd": "geoxydeerd", "geoxydeerde": "geoxydeerd", "gepaard": "gepaard", "gepaarde": "gepaard", "gepakt": "gepakt", "gepakte": "gepakt", "geparenteerd": "geparenteerd", "geparkeerd": "geparkeerd", "gepast": "gepast", "gepatenteerd": "gepatenteerd", "gepatenteerde": "gepatenteerd", "gepelletiseerd": "gepelletiseerd", "gepensioneerde": "gepensioneerd", "gepensionneerd": "gepensionneerd", "gepeperde": "gepeperd", "geperfectionneerd": "geperfectionneerd", "geperforeerde": "geperforeerd", "geperst": "geperst", "gepijnigde": "gepijnigd", "gepiqueerd": "gepiqueerd", "gepiqueerde": "gepiqueerd", "geplaagd": "geplaagd", "geplaatst": "geplaatst", "geplakt": "geplakt", "geplakte": "geplakt", "gepland": "gepland", "geplande": "gepland", "geplant": "geplant", "geplante": "geplant", "gepleegd": "gepleegd", "gepleit": "gepleit", "gepletterde": "gepletterd", "geplooide": "geplooid", "geplukt": "geplukt", "geplukte": "geplukt", "gepoeierd": "gepoeierd", "gepoetst": "gepoetst", "gepoetste": "gepoetst", "gepompt": "gepompt", "gepoogd": "gepoogd", "gepoot": "gepot", "geposeerd": "geposeerd", "geposte": "gepost", "gepousseerd": "gepousseerd", "gepraat": "geprat", "geprefabriceerde": "geprefabriceerd", "gepresenteerd": "gepresenteerd", "gepresenteerde": "gepresenteerd", "geprezen": "geprez", "geprijsd": "geprijsd", "geprivatiseerd": "geprivatiseerd", "geprivatiseerde": "geprivatiseerd", "geprobeerd": "geprobeerd", "geprocedeerd": "geprocedeerd", "geproduceerd": "geproduceerd", "geproduceerde": "geproduceerd", "geproest": "geproest", "geprofiteerd": "geprofiteerd", "geprogrammeerd": "geprogrammeerd", "geprojecteerd": "geprojecteerd", "gepromoveerd": "gepromoveerd", "geprononceerde": "geprononceerd", "gepropageerd": "gepropageerd", "gepropageerde": "gepropageerd", "gepropt": "gepropt", "geprotesteerd": "geprotesteerd", "geprovoceerd": "geprovoceerd", "gepubliceerd": "gepubliceerd", "gepubliceerde": "gepubliceerd", "gepulseerd": "gepulseerd", "gepulste": "gepulst", "gepyrolyseerd": "gepyrolyseerd", "gequaterniseerd": "gequaterniseerd", "gequoteerde": "gequoteerd", "gèr": "gèr", "geraadpleegd": "geraadpleegd", "geraakt": "geraakt", "geraakte": "geraakt", "geraamd": "geraamd", "geraden": "gerad", "geradene": "gerad", "geradoteerd": "geradoteerd", "geraffineerd": "geraffineerd", "geraffineerde": "geraffineerd", "geraghty": "geraghty", "geraken": "gerak", "geraldine": "geraldin", "gerammel": "gerammel", "gerangschikt": "gerangschikt", "geranseld": "geranseld", "gerard": "gerard", "geratificeerd": "geratificeerd", "gerdy": "gerdy", "gereageerd": "gereageerd", "gerealiseerd": "gerealiseerd", "gerealiseerde": "gerealiseerd", "gerecht": "gerecht", "gerechtelijk": "gerecht", "gerechtelijke": "gerecht", "gerechtigd": "gerechtigd", "gerechtshof": "gerechtshof", "gerechtshoven": "gerechtshov", "gerechtvaardigd": "gerechtvaardigd", "gerecirculeerd": "gerecirculeerd", "gerecreëerd": "gerecreeerd", "gerecupereerd": "gerecupereerd", "gerecycelde": "gerecyceld", "gerecycled": "gerecycled", "gerecyclede": "gerecycled", "gered": "gered", "gereden": "gered", "geredetwist": "geredetwist", "geredigeerd": "geredigeerd", "gereduceerd": "gereduceerd", "gereduceerde": "gereduceerd", "gereed": "gered", "gereedmelding": "gereedmeld", "gereedschap": "gereedschap", "gereedschappen": "gereedschapp", "geregeld": "geregeld", "geregelde": "geregeld", "geregen": "gereg", "geregend": "gereg", "geregenereerd": "geregenereerd", "geregistreerd": "geregistreerd", "geregistreerde": "geregistreerd", "gereguleerd": "gereguleerd", "gerehabiliteerd": "gerehabiliteerd", "gereinigd": "gereinigd", "gereinigde": "gereinigd", "gereisd": "gereisd", "gerekend": "gerek", "gerekt": "gerekt", "gerelateerd": "gerelateerd", "gerelateerde": "gerelateerd", "gerelativeerd": "gerelativeerd", "gereleveerd": "gereleveerd", "geremd": "geremd", "gerenommeerde": "gerenommeerd", "gerenoveerd": "gerenoveerd", "gerepareerd": "gerepareerd", "gerept": "gerept", "gereserveerd": "gereserveerd", "geresigneerd": "geresigneerd", "gerespecteerd": "gerespecteerd", "gerestaureerd": "gerestaureerd", "geresulteerd": "geresulteerd", "geretoucheerd": "geretoucheerd", "geretourneerd": "geretourneerd", "gerezen": "gerez", "geribbelde": "geribbeld", "gericht": "gericht", "gerichte": "gericht", "geridiculiseerd": "geridiculiseerd", "gerieflijk": "gerief", "gerijpt": "gerijpt", "gerild": "gerild", "gerimpelde": "gerimpeld", "gering": "gering", "geringe": "gering", "geringer": "geringer", "geringere": "geringer", "gerinkel": "gerinkel", "gerling": "gerling", "germaan": "german", "germaans": "german", "germaanse": "german", "germanen": "german", "germanium": "germanium", "geroepen": "geroep", "geroerd": "geroerd", "gerolde": "gerold", "gerommel": "gerommel", "gerookt": "gerookt", "gerrit": "gerrit", "gerrits": "gerrit", "gerrk": "gerrk", "gerst": "gerst", "gertr": "gertr", "gertrude": "gertrud", "gertrùde": "gertrùd", "gerucht": "gerucht", "geruchten": "gerucht", "geruchtmakende": "geruchtmak", "geruimd": "geruimd", "geruime": "geruim", "geruineerd": "geruineerd", "geruïneerd": "geruineerd", "geruis": "geruis", "geruisloos": "geruislos", "geruisloze": "geruisloz", "gerukt": "gerukt", "gerust": "gerust", "gerustgesteld": "gerustgesteld", "gerustheid": "gerust", "geruststellend": "geruststell", "gesaboteerd": "gesaboteerd", "gesaneerd": "gesaneerd", "gesaneerde": "gesaneerd", "geschaad": "geschad", "geschaard": "geschaard", "geschaatste": "geschaatst", "geschaduwd": "geschaduwd", "geschakeerd": "geschakeerd", "geschakeld": "geschakeld", "geschapen": "geschap", "geschat": "geschat", "geschatte": "geschat", "gescheiden": "gescheid", "geschemerd": "geschemerd", "geschenen": "geschen", "geschénen": "geschen", "geschenk": "geschenk", "geschept": "geschept", "geschetst": "geschetst", "geschetste": "geschetst", "gescheurd": "gescheurd", "gescheurde": "gescheurd", "geschieden": "geschied", "geschiedenis": "geschiedenis", "geschiedt": "geschiedt", "geschikt": "geschikt", "geschikte": "geschikt", "geschikter": "geschikter", "geschiktheid": "geschikt", "geschiktheidsproef": "geschiktheidsproef", "geschil": "geschil", "geschilbeslechting": "geschilbeslecht", "geschild": "geschild", "geschilderd": "geschilderd", "geschilderde": "geschilderd", "geschillen": "geschill", "geschitterd": "geschitterd", "geschoeide": "geschoeid", "geschokt": "geschokt", "geschokte": "geschokt", "gescholden": "geschold", "geschonden": "geschond", "geschonken": "geschonk", "geschoold": "geschoold", "geschoond": "geschoond", "geschoonde": "geschoond", "geschoren": "geschor", "geschorst": "geschorst", "geschoten": "geschot", "geschoven": "geschov", "geschraapte": "geschraapt", "geschreeuwd": "geschreeuwd", "geschreid": "geschreid", "geschreven": "geschrev", "geschrifte": "geschrift", "geschrikt": "geschrikt", "geschrobd": "geschrobd", "geschroefd": "geschroefd", "geschroeid": "geschroeid", "geschrokken": "geschrok", "geschud": "geschud", "geseind": "geseind", "geselde": "geseld", "geselecteerd": "geselecteerd", "geselecteerde": "geselecteerd", "geseling": "gesel", "geselingen": "gesel", "gesellig": "gesell", "gesèllig": "gesèll", "gesellschaft": "gesellschaft", "gesels": "gesel", "geshredderd": "geshredderd", "geshredderde": "geshredderd", "gesidderd": "gesidderd", "gesignaleerd": "gesignaleerd", "gesimuleerd": "gesimuleerd", "gesjeesd": "gesjeesd", "gesjeesde": "gesjeesd", "gesjoemeld": "gesjoemeld", "gesjord": "gesjord", "gesjouwd": "gesjouwd", "geslaagd": "geslaagd", "gesláagd": "geslaagd", "geslaagde": "geslaagd", "geslacht": "geslacht", "geslachten": "geslacht", "geslachts": "geslacht", "geslachtshormoon": "geslachtshormon", "geslachtsverhoudingen": "geslachtsverhoud", "geslagen": "geslag", "geslagenheid": "geslag", "geslapen": "geslap", "gesleep": "geslep", "gesleept": "gesleept", "gesleten": "geslet", "gesleurd": "gesleurd", "geslingerd": "geslingerd", "geslingerschilderd": "geslingerschilderd", "geslonken": "geslonk", "gesloopt": "gesloopt", "gesloopte": "gesloopt", "gesloten": "geslot", "geslotener": "geslotener", "geslotenheid": "geslot", "gesluierd": "gesluierd", "gesluimerd": "gesluimerd", "gesmacht": "gesmacht", "gesmade": "gesmad", "gesman": "gesman", "gesmeekt": "gesmeekt", "gesmeerd": "gesmeerd", "gesmolten": "gesmolt", "gesmoord": "gesmoord", "gesnapt": "gesnapt", "gesneden": "gesned", "gesnerp": "gesnerp", "gesnerpt": "gesnerpt", "gesnikt": "gesnikt", "gesnoeid": "gesnoeid", "gesorteerd": "gesorteerd", "gespaard": "gespaard", "gespaarde": "gespaard", "gespannen": "gespann", "gespat": "gespat", "gespecialiseerd": "gespecialiseerd", "gespecialiseerde": "gespecialiseerd", "gespecificeerd": "gespecificeerd", "gespeeld": "gespeeld", "gespeelde": "gespeeld", "gespiegeld": "gespiegeld", "gespleten": "gesplet", "gespletene": "gesplet", "gesplitst": "gesplitst", "gesponsord": "gesponsord", "gespookt": "gespookt", "gespot": "gespot", "gespoten": "gespot", "gespotlacht": "gespotlacht", "gespreid": "gespreid", "gespreide": "gespreid", "gesprek": "gesprek", "gesprekken": "gesprek", "gesproeid": "gesproeid", "gesproeidroogd": "gesproeidroogd", "gesproken": "gesprok", "gesprongen": "gesprong", "gespte": "gespt", "gespurt": "gespurt", "gest": "gest", "gestaag": "gestag", "gestaakt": "gestaakt", "gestaan": "gestan", "gestaard": "gestaard", "gestabiliseerd": "gestabiliseerd", "gestadig": "gestad", "gestadige": "gestad", "gestage": "gestag", "gestagneerd": "gestagneerd", "gestalte": "gestalt", "gestalten": "gestalt", "gestampt": "gestampt", "gestand": "gestand", "gestandaardiseerd": "gestandaardiseerd", "gestandaardiseerde": "gestandaardiseerd", "gestapeld": "gestapeld", "gestapelde": "gestapeld", "gestapt": "gestapt", "gestart": "gestart", "gesteente": "gesteent", "gestegen": "gesteg", "gestel": "gestel", "gesteld": "gesteld", "gestelde": "gesteld", "gesteldheid": "gesteld", "gestellen": "gestell", "gestelletjes": "gestelletjes", "gestemd": "gestemd", "gesteriliseerd": "gesteriliseerd", "gesterkt": "gesterkt", "gesteund": "gesteund", "gesticht": "gesticht", "gestichte": "gesticht", "gestild": "gestild", "gestileerde": "gestileerd", "gestimuleerd": "gestimuleerd", "gestippeld": "gestippeld", "gestoelte": "gestoelt", "gestoken": "gestok", "gestolen": "gestol", "gestompt": "gestompt", "gestookt": "gestookt", "gestookte": "gestookt", "gestoord": "gestoord", "gestoorde": "gestoord", "gestopt": "gestopt", "gestormd": "gestormd", "gestort": "gestort", "gestorte": "gestort", "gestorven": "gestorv", "gestoten": "gestot", "gestotter": "gestotter", "gestraald": "gestraald", "gestraft": "gestraft", "gestrande": "gestrand", "gestreden": "gestred", "gestreefd": "gestreefd", "gestreeld": "gestreeld", "gestreepte": "gestreept", "gestreken": "gestrek", "gestrekt": "gestrekt", "gestrengeld": "gestrengeld", "gestrengheid": "gestreng", "gestriemd": "gestriemd", "gestrikt": "gestrikt", "gestrooid": "gestrooid", "gestroomd": "gestroomd", "gestroomlijnd": "gestroomlijnd", "gestructureerd": "gestructureerd", "gestructureerde": "gestructureerd", "gestuct": "gestuct", "gestudeerd": "gestudeerd", "gestuifd": "gestuifd", "gestuurd": "gestuurd", "gestuurde": "gestuurd", "gestuwd": "gestuwd", "gesubsidieerd": "gesubsidieerd", "gesubsidieerde": "gesubsidieerd", "gesuggereerd": "gesuggereerd", "gesuppleerd": "gesuppleerd", "gesust": "gesust", "getaald": "getaald", "getakte": "getakt", "getal": "getal", "getale": "getal", "getallen": "getall", "getandeknerst": "getandeknerst", "getankt": "getankt", "getapt": "getapt", "getast": "getast", "geteeld": "geteeld", "geteelde": "geteeld", "geteisterd": "geteisterd", "getekend": "getek", "geteld": "geteld", "getelegrafeerd": "getelegrafeerd", "getemperd": "getemperd", "getest": "getest", "geteste": "getest", "getijdecentrale": "getijdecentral", "getijdecentrales": "getijdecentrales", "getijdeverschil": "getijdeverschil", "getijdewateren": "getijdewater", "getijdewerking": "getijdewerk", "getijverschil": "getijverschil", "getikt": "getikt", "getild": "getild", "getint": "getint", "getinte": "getint", "getiteld": "getiteld", "getitelde": "getiteld", "getjilp": "getjilp", "getobd": "getobd", "getoerd": "getoerd", "getoeter": "getoeter", "getoetst": "getoetst", "getogen": "getog", "getolereerd": "getolereerd", "getooid": "getooid", "getoond": "getoond", "getourmenteerd": "getourmenteerd", "getracht": "getracht", "getramd": "getramd", "getransporteerd": "getransporteerd", "getrapt": "getrapt", "getrapte": "getrapt", "getreden": "getred", "getreurd": "getreurd", "getrild": "getrild", "getript": "getript", "getroffen": "getroff", "getrokken": "getrok", "getronics": "getronic", "getroost": "getroost", "getroubleerd": "getroubleerd", "getrouwd": "getrouwd", "getrouwde": "getrouwd", "getting": "getting", "getuigde": "getuigd", "getuigden": "getuigd", "getuige": "getuig", "getuigen": "getuig", "getuigend": "getuig", "getuigenverhoor": "getuigenverhor", "getuigt": "getuigt", "getuurd": "getuurd", "getwijfeld": "getwijfeld", "getwist": "getwist", "getypeerd": "getypeerd", "geuit": "geuit", "geul": "geul", "geuldal": "geuldal", "geur": "geur", "geuranalyses": "geuranalyses", "geurbemonsteringssysteem": "geurbemonsteringssystem", "geurbestrijding": "geurbestrijd", "geurcassettes": "geurcassettes", "geurcomponenten": "geurcomponent", "geurconcentratie": "geurconcentratie", "geurconcentraties": "geurconcentraties", "geurde": "geurd", "geurden": "geurd", "geureenheden": "geuren", "geureenheid": "geuren", "geuremissie": "geuremissie", "geuremissies": "geuremissies", "geuremmissiesituatie": "geuremmissiesituatie", "geuren": "geur", "geurhinder": "geurhinder", "geurig": "geurig", "geurloze": "geurloz", "geurmonsters": "geurmonster", "geuroverlast": "geuroverlast", "geurpanel": "geurpanel", "geursituatie": "geursituatie", "geurstoffen": "geurstoff", "geurstrippen": "geurstripp", "geurts": "geurt", "geurveroorzakende": "geurveroorzak", "geuze": "geuz", "gevaar": "gevar", "gevaarlijk": "gevar", "gevaarlijke": "gevar", "gevaarlijker": "gevaarlijker", "gevaarten": "gevaart", "geval": "geval", "gevalideerd": "gevalideerd", "gevalideerde": "gevalideerd", "gevallen": "gevall", "gevangen": "gevang", "gevangenen": "gevangen", "gevangenis": "gevangenis", "gevangenisdagboek": "gevangenisdagboek", "gevangenisstraf": "gevangenisstraf", "gevangenisstraffen": "gevangenisstraff", "gevaren": "gevar", "gevarenniveau": "gevarenniveau", "gevarenniveaus": "gevarenniveaus", "gevarieerd": "gevarieerd", "gevarieerde": "gevarieerd", "gevat": "gevat", "gevechtshelikopters": "gevechtshelikopter", "geveegd": "geveegd", "geveke": "gevek", "gevel": "gevel", "gevelbranche": "gevelbranch", "gevelisolatie": "gevelisolatie", "gevellijn": "gevellijn", "gevelrijen": "gevelrij", "gevels": "gevel", "gevelsteen": "gevelsten", "gevelverlichting": "gevelverlicht", "geven": "gev", "gevende": "gevend", "geventileerd": "geventileerd", "gever": "gever", "geverbaliseerd": "geverbaliseerd", "geverfd": "geverfd", "gevergd": "gevergd", "geverifieerd": "geverifieerd", "gevestigd": "gevestigd", "gevestigde": "gevestigd", "gevierd": "gevierd", "gevist": "gevist", "gevit": "gevit", "gevlakt": "gevlakt", "gevleid": "gevleid", "gevleugelde": "gevleugeld", "gevloekt": "gevloekt", "gevlogen": "gevlog", "gevlucht": "gevlucht", "gevochten": "gevocht", "gevoed": "gevoed", "gevoede": "gevoed", "gevoegd": "gevoegd", "gevoel": "gevoel", "gevoeld": "gevoeld", "gevoelde": "gevoeld", "gevoelen": "gevoel", "gevoelens": "gevoelen", "gevoelig": "gevoel", "gevoelige": "gevoel", "gevoeliger": "gevoeliger", "gevoeligheid": "gevoel", "gevoelingen": "gevoel", "gevoelloze": "gevoelloz", "gevoelsleven": "gevoelslev", "gevoelsmatig": "gevoelsmat", "gevoelsregel": "gevoelsregel", "gevoelstemperaturen": "gevoelstemperatur", "gevoelstemperatuur": "gevoelstemperatur", "gevoelt": "gevoelt", "gevoerd": "gevoerd", "gevoerde": "gevoerd", "gevogelte": "gevogelt", "gevolg": "gevolg", "gevolgd": "gevolgd", "gevolgde": "gevolgd", "gevolge": "gevolg", "gevolgen": "gevolg", "gevolgtrekkingen": "gevolgtrek", "gevonden": "gevond", "gevónden": "gevond", "gevorderd": "gevorderd", "gevorderde": "gevorderd", "gevormd": "gevormd", "gevormde": "gevormd", "gevouwen": "gevouw", "gevraagd": "gevraagd", "gevraagde": "gevraagd", "gevreesd": "gevreesd", "gevreesde": "gevreesd", "gevreten": "gevret", "gevrey": "gevrey", "gevrijwaard": "gevrijwaard", "gevudo": "gevudo", "gevulcaniseerd": "gevulcaniseerd", "gevuld": "gevuld", "gevulde": "gevuld", "gevulder": "gevulder", "gewaagd": "gewaagd", "gewaaid": "gewaaid", "gewaarborgd": "gewaarborgd", "gewaardeerd": "gewaardeerd", "gewaarmerkte": "gewaarmerkt", "gewaarschuwd": "gewaarschuwd", "gewaarwording": "gewaarword", "gewacht": "gewacht", "gewag": "gewag", "gewandeld": "gewandeld", "gewapend": "gewap", "geward": "geward", "gewas": "gewas", "gewasbescherming": "gewasbescherm", "gewasbeschermingsmiddel": "gewasbeschermingsmiddel", "gewasbeschermingsmiddelen": "gewasbeschermingsmiddel", "gewasbeschermingsmiddelenrichtlijn": "gewasbeschermingsmiddelenrichtlijn", "gewasfactor": "gewasfactor", "gewasmonitoringsprogramma": "gewasmonitoringsprogramma", "gewasonderzoek": "gewasonderzoek", "gewasresten": "gewasrest", "gewassen": "gewass", "geweeklaag": "geweeklag", "geweeklaagd": "geweeklaagd", "geweend": "geweend", "geweer": "gewer", "geweerd": "geweerd", "geweerlicht": "geweerlicht", "geweest": "geweest", "geweifeld": "geweifeld", "geweigerd": "geweigerd", "geweken": "gewek", "gewekt": "gewekt", "geweld": "geweld", "geweldig": "geweld", "geweldige": "geweld", "gewelf": "gewelf", "gewemeld": "gewemeld", "gewend": "gewend", "gewenst": "gewenst", "gewenste": "gewenst", "gewerkt": "gewerkt", "gewest": "gewest", "gewestelijk": "gewest", "gewestelijke": "gewest", "gewesten": "gewest", "geweten": "gewet", "gewetensvol": "gewetensvol", "gewettigde": "gewettigd", "gewezen": "gewez", "gewicht": "gewicht", "gewichtig": "gewicht", "gewichtige": "gewicht", "gewichtiger": "gewichtiger", "gewichtigheid": "gewicht", "gewichtigs": "gewicht", "gewichtloosheid": "gewichtlos", "gewichtsbepalend": "gewichtsbepal", "gewichtsbesparing": "gewichtsbespar", "gewichtsfactor": "gewichtsfactor", "gewichtsfactoren": "gewichtsfactor", "gewichtsprocent": "gewichtsprocent", "gewichtsprocenten": "gewichtsprocent", "gewichtsreductie": "gewichtsreductie", "gewiekte": "gewiekt", "gewijd": "gewijd", "gewijzigd": "gewijzigd", "gewijzigde": "gewijzigd", "gewild": "gewild", "gewilde": "gewild", "gewinning": "gewinn", "gewisseld": "gewisseld", "gewoel": "gewoel", "gewogen": "gewog", "gewolmaniseerd": "gewolmaniseerd", "gewond": "gewond", "gewone": "gewon", "gewoner": "gewoner", "gewonnen": "gewonn", "gewoon": "gewon", "gewoond": "gewoond", "gewoonheid": "gewon", "gewoonlijk": "gewon", "gewoonlijke": "gewon", "gewoonste": "gewoonst", "gewoonte": "gewoont", "gewoontes": "gewoontes", "gewoontetjes": "gewoontetjes", "gewoonverstandelijks": "gewoonverstand", "gewoonweg": "gewoonweg", "geworden": "geword", "geworpen": "geworp", "gewraakte": "gewraakt", "gewreven": "gewrev", "gewrichten": "gewricht", "gewrokt": "gewrokt", "gewuifd": "gewuifd", "geysels": "geysel", "gezaagd": "gezaagd", "gezaaid": "gezaaid", "gezag": "gezag", "gezaghebbende": "gezaghebb", "gezakt": "gezakt", "gezamelijke": "gezam", "gezamenlijk": "gezamen", "gezamenlijke": "gezamen", "gezant": "gezant", "gezeefd": "gezeefd", "gezeefde": "gezeefd", "gezegd": "gezegd", "gezègd": "gezègd", "gezegden": "gezegd", "gezegeld": "gezegeld", "gezegevierd": "gezegevierd", "gezellig": "gezell", "gezellige": "gezell", "gezelliger": "gezelliger", "gezelligheid": "gezell", "gezelligs": "gezell", "gezelligweg": "gezelligweg", "gezelschap": "gezelschap", "gezet": "gezet", "gezeten": "gezet", "gezette": "gezet", "gezicht": "gezicht", "gezichten": "gezicht", "gezichtje": "gezichtj", "gezieji": "gezieji", "gezien": "gezien", "gezin": "gezin", "gezinnen": "gezinn", "gezinsbedrijven": "gezinsbedrijv", "gezinsleden": "gezinsled", "gezinspeeld": "gezinspeeld", "gezinsplanning": "gezinsplann", "gezocht": "gezocht", "gezochte": "gezocht", "gezoend": "gezoend", "gezogen": "gezog", "gezond": "gezond", "gezondblonde": "gezondblond", "gezonde": "gezond", "gezonden": "gezond", "gezondere": "gezonder", "gezondheid": "gezond", "gezondheids": "gezond", "gezondheidsaspecten": "gezondheidsaspect", "gezondheidsbescherming": "gezondheidsbescherm", "gezondheidsdoelen": "gezondheidsdoel", "gezondheidseffecten": "gezondheidseffect", "gezondheidsindustrie": "gezondheidsindustrie", "gezondheidsklachten": "gezondheidsklacht", "gezondheidskunde": "gezondheidskund", "gezondheidskundig": "gezondheidskund", "gezondheidskundige": "gezondheidskund", "gezondheidskuur": "gezondheidskur", "gezondheidsonderzoek": "gezondheidsonderzoek", "gezondheidsorganisatie": "gezondheidsorganisatie", "gezondheidsproblemen": "gezondheidsproblem", "gezondheidsraad": "gezondheidsrad", "gezondheidsrisico": "gezondheidsrisico", "gezondheidsschoeisel": "gezondheidsschoeisel", "gezondheidsschoenen": "gezondheidsschoen", "gezondheidssector": "gezondheidssector", "gezondheidsvoorwaarden": "gezondheidsvoorwaard", "gezondheidswetenschappen": "gezondheidswetenschapp", "gezondheidszorg": "gezondheidszorg", "gezondheidszorginstellingen": "gezondheidszorginstell", "gezonds": "gezond", "gezonken": "gezonk", "gezorgd": "gezorgd", "gezuiverd": "gezuiverd", "gezuiverde": "gezuiverd", "gezwaaid": "gezwaaid", "gezwiepte": "gezwiept", "gft": "gft", "gg": "gg", "ggd": "ggd", "ghana": "ghana", "ghe": "ghe", "gheb": "gheb", "ghefochten": "ghefocht", "ghek": "ghek", "ghel": "ghel", "gheleden": "gheled", "ghelpt": "ghelpt", "ghelukkig": "ghelukk", "ghenoeg": "ghenoeg", "gheweest": "gheweest", "ghier": "ghier", "ghoed": "ghoed", "ghoede": "ghoed", "ghoedig": "ghoedig", "gholamreza": "gholamreza", "gholland": "gholland", "ghollând": "ghollând", "ghollands": "gholland", "ghollandse": "gholland", "ghôtel": "ghôtel", "ghr": "ghr", "ghroot": "ghrot", "ghuilen": "ghuil", "gibo": "gibo", "gids": "gid", "gier": "gier", "gierde": "gierd", "gieren": "gier", "gierende": "gierend", "gierig": "gierig", "gierige": "gierig", "gierigheid": "gierig", "gierklauw": "gierklauw", "giertanks": "giertank", "giessen": "giess", "giessendam": "giessendam", "giessense": "giessen", "giet": "giet", "gieten": "giet", "gieter": "gieter", "giethoorn": "giethoorn", "gietijzer": "gietijzer", "gietijzeren": "gietijzer", "gietvloeren": "gietvloer", "gietvloerenbranche": "gietvloerenbranch", "gietwater": "gietwater", "gif": "gif", "gifgebruik": "gifgebruik", "gifgehalte": "gifgehalt", "gifgrond": "gifgrond", "gifstoffen": "gifstoff", "gift": "gift", "giften": "gift", "giftig": "giftig", "giftige": "giftig", "giftigheid": "giftig", "gifvaten": "gifvat", "gifwolk": "gifwolk", "gifzakjes": "gifzakjes", "gigajoule": "gigajoul", "gigajoules": "gigajoules", "gigalino": "gigalino", "giganten": "gigant", "gigantisch": "gigantisch", "gigantische": "gigantisch", "gil": "gil", "gilde": "gild", "gilden": "gild", "gillen": "gill", "gils": "gil", "ginds": "gind", "ging": "ging", "ginge": "ging", "gingen": "ging", "ginjaar": "ginjar", "ginkelse": "ginkel", "ginnegappen": "ginnegapp", "gips": "gip", "gipsplaat": "gipsplat", "gipsplaten": "gipsplat", "giro": "giro", "gis": "gis", "gissen": "giss", "gist": "gist", "gisten": "gist", "gisteravond": "gisteravond", "gisteren": "gister", "gisterenavond": "gisterenavond", "gisterenmiddag": "gisterenmiddag", "gisterennacht": "gisterennacht", "giswerk": "giswerk", "giveg": "giveg", "gj": "gj", "gk": "gk", "gkd": "gkd", "gkn": "gkn", "glaasje": "glaasj", "glaceert": "glaceert", "glad": "glad", "gladbach": "gladbach", "gladde": "glad", "gladheid": "gladheid", "gladheidsbestrijding": "gladheidsbestrijd", "gladzuiver": "gladzuiver", "glans": "glan", "glansbundels": "glansbundel", "glansde": "glansd", "glansden": "glansd", "glanssteden": "glanssted", "glanzen": "glanz", "glanzend": "glanzend", "glanzende": "glanzend", "glanzender": "glanzender", "glanzends": "glanzend", "glanzig": "glanzig", "glanzingen": "glanzing", "glas": "glas", "glasafbraak": "glasafbrak", "glasafval": "glasafval", "glasbak": "glasbak", "glasbakken": "glasbak", "glasberg": "glasberg", "glasbetonklinker": "glasbetonklinker", "glasbetontegel": "glasbetontegel", "glasbloemenbedrijf": "glasbloemenbedrijf", "glasdak": "glasdak", "glasemailles": "glasemailles", "glasfabrikanten": "glasfabrikant", "glasfalt": "glasfalt", "glasfilter": "glasfilter", "glasfractie": "glasfractie", "glasfritten": "glasfrit", "glasgroente": "glasgroent", "glasgroentebedrijven": "glasgroentebedrijv", "glasgroentetelers": "glasgroenteteler", "glasindustrie": "glasindustrie", "glasinzamelsysteem": "glasinzamelsystem", "glaslandschap": "glaslandschap", "glasmatrix": "glasmatrix", "glasovens": "glasoven", "glaspartij": "glaspartij", "glasplaat": "glasplat", "glasprijzen": "glasprijz", "glasproduktiemethoden": "glasproduktiemethod", "glasrecycling": "glasrecycl", "glasrecyclingbedrijf": "glasrecyclingbedrijf", "glasrecyclingfabriek": "glasrecyclingfabriek", "glasrecyclinginitiatief": "glasrecyclinginitiatief", "glass": "glas", "glasscheiding": "glasscheid", "glasscherven": "glasscherv", "glassector": "glassector", "glassig": "glassig", "glassige": "glassig", "glasteelt": "glasteelt", "glastuinbouw": "glastuinbouw", "glastuinbouwareaal": "glastuinbouwareaal", "glastuinbouwbedrijven": "glastuinbouwbedrijv", "glastuinbouwcomplex": "glastuinbouwcomplex", "glastuinbouwers": "glastuinbouwer", "glastuinbouwgebied": "glastuinbouwgebied", "glastuinbouwsector": "glastuinbouwsector", "glastuinders": "glastuinder", "glasvergruizer": "glasvergruizer", "glasverwerkende": "glasverwerk", "glasvezel": "glasvezel", "glasvezelbedrijf": "glasvezelbedrijf", "glasvezelkabel": "glasvezelkabel", "glasvezelpolyester": "glasvezelpolyester", "glasvezels": "glasvezel", "glasvezelverbinding": "glasvezelverbind", "glasvezelversterkte": "glasvezelversterkt", "glasvorm": "glasvorm", "glaswand": "glaswand", "glaswerk": "glaswerk", "glaswol": "glaswol", "glaswolvezels": "glaswolvezel", "glaszuilen": "glaszuil", "glaszuivering": "glaszuiver", "glaszuiveringsinstallatie": "glaszuiveringsinstallatie", "glazen": "glaz", "glazige": "glazig", "glazuren": "glazur", "glazuur": "glazur", "glazuurden": "glazuurd", "glazuurfabriek": "glazuurfabriek", "gleden": "gled", "gleed": "gled", "gleesons": "gleeson", "glenbuterol": "glenbuterol", "gletscherende": "gletscher", "gletschermeer": "gletschermer", "gletschers": "gletscher", "gleuf": "gleuf", "glg": "glg", "glijden": "glijd", "glijdende": "glijdend", "glijvlakken": "glijvlak", "glimlach": "glimlach", "glimlachen": "glimlach", "glimlachend": "glimlach", "glimlachende": "glimlach", "glimlachends": "glimlach", "glimlachte": "glimlacht", "glimlachten": "glimlacht", "glimmerde": "glimmerd", "glimp": "glimp", "glimpen": "glimp", "glimpende": "glimpend", "glimping": "glimping", "glimpte": "glimpt", "glimpten": "glimpt", "glinster": "glinster", "glinsterden": "glinsterd", "glinsteren": "glinster", "glinsterend": "glinster", "glinsterende": "glinster", "glippen": "glipp", "glipte": "glipt", "globaal": "global", "global": "global", "globale": "global", "globalisering": "globaliser", "globalisme": "globalism", "globe": "glob", "gloed": "gloed", "gloeide": "gloeid", "gloeiden": "gloeid", "gloeien": "gloei", "gloeiend": "gloeiend", "gloeiende": "gloeiend", "gloeiing": "gloeiing", "gloeiingen": "gloeiing", "gloeit": "gloeit", "glom": "glom", "glommen": "glomm", "glooiing": "glooiing", "gloorde": "gloord", "glorie": "glorie", "glorieus": "glorieus", "glowacka": "glowacka", "glückauf": "gluckauf", "glucose": "glucos", "glufosinaat": "glufosinat", "glurende": "glurend", "gluurde": "gluurd", "glycerine": "glycerin", "glycol": "glycol", "glycolbodems": "glycolbodem", "glyfosaat": "glyfosat", "glyfosfaat": "glyfosfat", "gm": "gm", "gmbh": "gmbh", "gmelich": "gmelich", "gmex": "gmex", "gmo": "gmo", "gmods": "gmod", "gms": "gms", "gmt": "gmt", "gn": "gn", "gnk": "gnk", "go": "go", "god": "god", "goddelijk": "goddelijk", "goddelijke": "goddelijk", "goddelijkheid": "goddelijk", "godecke": "godeck", "gödecke": "godeck", "goden": "god", "godley": "godley", "gods": "god", "godsdienst": "godsdienst", "godsdienstige": "godsdienst", "godsnaam": "godsnam", "godverdomme": "godverdomm", "goed": "goed", "goèd": "goèd", "goedbedoelde": "goedbedoeld", "goede": "goed", "goeder": "goeder", "goederen": "goeder", "goederenoverslag": "goederenoverslag", "goederentransport": "goederentransport", "goederentreinen": "goederentrein", "goederenvervoer": "goederenvervoer", "goederenvervoerders": "goederenvervoerder", "goederenwagons": "goederenwagon", "goederenwegvervoer": "goederenwegvervoer", "goedgekeurd": "goedgekeurd", "goedgekeurde": "goedgekeurd", "goedgemaakt": "goedgemaakt", "goedgevoede": "goedgevoed", "goedheid": "goedheid", "goedig": "goedig", "goedige": "goedig", "goedigheid": "goedig", "goedkeurde": "goedkeurd", "goedkeuren": "goedkeur", "goedkeurend": "goedkeur", "goedkeuring": "goedkeur", "goedkeurt": "goedkeurt", "goedkoop": "goedkop", "goedkoopje": "goedkoopj", "goedkoopst": "goedkoopst", "goedkoopste": "goedkoopst", "goedkoopte": "goedkoopt", "goedkope": "goedkop", "goedkoper": "goedkoper", "goedkopere": "goedkoper", "goedmakers": "goedmaker", "goedmee": "goedmee", "goedmoedig": "goedmoed", "goedmoedigs": "goedmoed", "goeds": "goed", "goedsmoeds": "goedsmoed", "goedwillende": "goedwill", "goedzittende": "goedzit", "goeie": "goei", "goeien": "goei", "goeiigheid": "goeiig", "goeree": "goeree", "goes": "goes", "goetzberger": "goetzberger", "goewie": "goewie", "going": "going", "gokt": "gokt", "gold": "gold", "golf": "golf", "golfbaan": "golfban", "golfbanen": "golfban", "golfbeweging": "golfbeweg", "golfbewegingen": "golfbeweg", "golfbreker": "golfbreker", "golfbrekers": "golfbreker", "golfclubs": "golfclub", "golfcomplex": "golfcomplex", "golfde": "golfd", "golfden": "golfd", "golfenergie": "golfenergie", "golfgoot": "golfgot", "golfjes": "golfjes", "golfkrachtenergie": "golfkrachtenergie", "golflengte": "golflengt", "golfoorlog": "golfoorlog", "golfpatroon": "golfpatron", "golfplaten": "golfplat", "golfslag": "golfslag", "golfslagenergie": "golfslagenergie", "golfslagenergiecentrale": "golfslagenergiecentral", "golfstaten": "golfstat", "golfstroom": "golfstrom", "golftraject": "golftraject", "golven": "golv", "golvend": "golvend", "golvende": "golvend", "golvingen": "golving", "gölzau": "golzau", "gondel": "gondel", "gong": "gong", "gonsde": "gonsd", "gonsden": "gonsd", "gonse": "gon", "good": "god", "goodwill": "goodwill", "gooi": "gooi", "gooide": "gooid", "gooiden": "gooid", "gooien": "gooi", "gooise": "goois", "gooit": "gooit", "goot": "got", "gordel": "gordel", "gordijn": "gordijn", "gordijnen": "gordijn", "gordijnloze": "gordijnloz", "gordijntjes": "gordijntjes", "gorinchem": "gorinchem", "goschen": "gosch", "gossypol": "gossypol", "góteborg": "goteborg", "göteborg": "goteborg", "goud": "goud", "gouda": "gouda", "gouden": "goud", "goudgloed": "goudgloed", "goudgrijs": "goudgrijs", "goudig": "goudig", "goudsmit": "goudsmit", "goudstof": "goudstof", "goudwinning": "goudwinn", "goutum": "goutum", "gouvermentele": "gouvermentel", "gouvernante": "gouvernant", "gouvernementele": "gouvernementel", "gouverneur": "gouverneur", "gouverneurgeneraalstijd": "gouverneurgeneraalstijd", "gouverneursche": "gouverneursch", "government": "government", "goyaerts": "goyaert", "goyarts": "goyart", "gpr": "gpr", "gps": "gps", "gpv": "gpv", "graad": "grad", "graaddagenmeter": "graaddagenmeter", "graaf": "graf", "graafproces": "graafproces", "graafschap": "graafschap", "graaft": "graaft", "graafwerkzaamheden": "graafwerkzam", "graag": "grag", "graaide": "graaid", "graaiensgereed": "graaiensgered", "graan": "gran", "graanbeleid": "graanbeleid", "graanexporterend": "graanexporter", "graangewassen": "graangewass", "graanhandel": "graanhandel", "graanimporterend": "graanimporter", "graanprijs": "graanprijs", "graanproduktie": "graanproduktie", "graanverwerkingsbedrijf": "graanverwerkingsbedrijf", "graanvoorraden": "graanvoorrad", "graasdieren": "graasdier", "graast": "graast", "graat": "grat", "graauw": "graauw", "graauwse": "graauw", "grabbelde": "grabbeld", "gracht": "gracht", "gracieus": "gracieus", "gracieuze": "gracieuz", "gradatiën": "gradatien", "gradaties": "gradaties", "graden": "grad", "gradiënten": "gradient", "graedel": "graedel", "graetheide": "graetheid", "graf": "graf", "grafbenadering": "grafbenader", "grafiet": "grafiet", "grafietkernreactoren": "grafietkernreactor", "grafietreactoren": "grafietreactor", "grafisch": "grafisch", "grafische": "grafisch", "grafpaleis": "grafpaleis", "graham": "graham", "gram": "gram", "grand": "grand", "grande": "grand", "grandeur": "grandeur", "grandioos": "grandioos", "granen": "gran", "graniet": "graniet", "granuband": "granuband", "granulaat": "granulat", "granulair": "granulair", "granulaten": "granulat", "granulator": "granulator", "grap": "grap", "graphic": "graphic", "grappen": "grapp", "grappigjes": "grappigjes", "gras": "gras", "grasland": "grasland", "graslandberegening": "graslandberegen", "graslandgebruik": "graslandgebruik", "grasmat": "grasmat", "grassen": "grass", "gratie": "gratie", "gratis": "gratis", "grätzel": "gratzel", "gratzer": "gratzer", "grauw": "grauw", "grauwblauwe": "grauwblauw", "grauwde": "grauwd", "grauwden": "grauwd", "grauwe": "grauw", "grauwend": "grauwend", "grauwende": "grauwend", "grauwer": "grauwer", "grauwheid": "grauwheid", "grauwige": "grauwig", "grauwigheden": "grauwig", "grauwstil": "grauwstil", "grauwte": "grauwt", "grauwwitte": "grauwwit", "graveland": "graveland", "graven": "grav", "gravenchon": "gravenchon", "gravenhage": "gravenhag", "gravenzande": "gravenzand", "gravers": "graver", "gravilectric": "gravilectric", "gravuren": "gravur", "gravures": "gravures", "grazen": "graz", "grazers": "grazer", "greater": "greater", "greatheide": "greatheid", "grebbeberg": "grebbeberg", "green": "gren", "greencare": "greencar", "greencareluier": "greencareluier", "greenfield": "greenfield", "greenfields": "greenfield", "greenhouse": "greenhous", "greenpeace": "greenpeac", "greenpeaceschepen": "greenpeaceschep", "greenpeacestaf": "greenpeacestaf", "greentie": "greentie", "greenville": "greenvill", "greep": "grep", "grein": "grein", "greinig": "greinig", "greintje": "greintj", "grel": "grel", "grelle": "grell", "gremia": "gremia", "grenadiers": "grenadier", "grenen": "gren", "grenoble": "grenobl", "grens": "gren", "grensgebied": "grensgebied", "grenslagen": "grenslag", "grensloop": "grenslop", "grensmaas": "grensmas", "grensmaasproject": "grensmaasproject", "grensoverschrijdend": "grensoverschrijd", "grensoverschrijdende": "grensoverschrijd", "grensoverschrijdendheid": "grensoverschrijd", "grensoverschrijding": "grensoverschrijd", "grenst": "grenst", "grensverleggend": "grensverlegg", "grenswaarde": "grenswaard", "grenswaarden": "grenswaard", "grenzen": "grenz", "grenzend": "grenzend", "grenzende": "grenzend", "grepen": "grep", "greppels": "greppel", "gres": "gres", "gretig": "gretig", "gretige": "gretig", "grief": "grief", "griefjes": "griefjes", "grieg": "grieg", "grieken": "griek", "griekenland": "griekenland", "grieks": "griek", "griekse": "griek", "grieven": "griev", "griezelde": "griezeld", "griezelig": "griezel", "griezelige": "griezel", "griffiekosten": "griffiekost", "griffier": "griffier", "grift": "grift", "griftpark": "griftpark", "grijns": "grijn", "grijnsde": "grijnsd", "grijnzen": "grijnz", "grijnzende": "grijnzend", "grijpen": "grijp", "grijpend": "grijpend", "grijpende": "grijpend", "grijpreflex": "grijpreflex", "grijpskerk": "grijpskerk", "grijpt": "grijpt", "grijs": "grijs", "grijsaard": "grijsaard", "grijsde": "grijsd", "grijze": "grijz", "grijzen": "grijz", "grijzend": "grijzend", "grijzer": "grijzer", "gril": "gril", "grilden": "grild", "grillig": "grillig", "grillige": "grillig", "grilligheid": "grillig", "grilligste": "grilligst", "grimeert": "grimeert", "grimeren": "grimer", "grind": "grind", "grinder": "grinder", "grinders": "grinder", "grindgat": "grindgat", "grinding": "grinding", "grindplas": "grindplas", "grindproducenten": "grindproducent", "grindvervanger": "grindvervanger", "grindwinning": "grindwinn", "grindwinningen": "grindwinn", "gringo": "gringo", "grinnik": "grinnik", "grinniken": "grinnik", "grinnikt": "grinnikt", "grinnikte": "grinnikt", "grinten": "grint", "grintgat": "grintgat", "grintpaden": "grintpad", "grip": "grip", "grit": "grit", "grl": "grl", "grodan": "grodan", "groef": "groef", "groefde": "groefd", "groefden": "groefd", "groei": "groei", "groeibevorderaar": "groeibevorderar", "groeibevorderend": "groeibevorder", "groeicijfers": "groeicijfer", "groeide": "groeid", "groeiden": "groeid", "groeien": "groei", "groeiend": "groeiend", "groeiende": "groeiend", "groeihormonen": "groeihormon", "groeiing": "groeiing", "groeikansen": "groeikans", "groeilanden": "groeiland", "groeimarkt": "groeimarkt", "groeimarkten": "groeimarkt", "groeiperspectieven": "groeiperspectiev", "groeiplannen": "groeiplann", "groeipotentieel": "groeipotentieel", "groeiproces": "groeiproces", "groeiregulatie": "groeiregulatie", "groeirendement": "groeirendement", "groeiseizoen": "groeiseizoen", "groeistoornissen": "groeistoorniss", "groeistuipen": "groeistuip", "groeit": "groeit", "groeivooruitzichten": "groeivooruitzicht", "groen": "groen", "groenafval": "groenafval", "groenbemester": "groenbemester", "groenbemesters": "groenbemester", "groenblijvende": "groenblijv", "groencertificaat": "groencertificat", "groencertificaten": "groencertificat", "groene": "groen", "groenelaan": "groenelan", "groenen": "groen", "groenfonds": "groenfond", "groenfondsen": "groenfonds", "groenfondsregeling": "groenfondsregel", "groengebied": "groengebied", "groengebieden": "groengebied", "groenheid": "groenheid", "groenlabelnorm": "groenlabelnorm", "groenlabelstal": "groenlabelstal", "groenlinks": "groenlink", "groenlo": "groenlo", "groenontwikkeling": "groenontwikkel", "groenproject": "groenproject", "groenprojecten": "groenproject", "groenprojectenfonds": "groenprojectenfond", "groenregeling": "groenregel", "groenrente": "groenrent", "groenstroken": "groenstrok", "groenstrook": "groenstrok", "groenstructuur": "groenstructur", "groenstructuurplan": "groenstructuurplan", "groente": "groent", "groenteabonnementen": "groenteabonnement", "groenteboeren": "groenteboer", "groenteboerin": "groenteboerin", "groenten": "groent", "groentenburger": "groentenburger", "groenteteelt": "groenteteelt", "groentetelers": "groenteteler", "groentjes": "groentjes", "groenveld": "groenveld", "groenverklaring": "groenverklar", "groenvoerdrogerijen": "groenvoerdrogerij", "groenvoorziening": "groenvoorzien", "groenvoorzieningen": "groenvoorzien", "groenvrijstelling": "groenvrijstell", "groenzones": "groenzones", "groep": "groep", "groepen": "groep", "groepering": "groeper", "groeperingen": "groeper", "groepje": "groepj", "groepjes": "groepjes", "groepsstallen": "groepsstall", "groepsvermogen": "groepsvermog", "groepte": "groept", "groesbeek": "groesbek", "groet": "groet", "groeten": "groet", "groetende": "groetend", "groette": "groet", "groetten": "groet", "groeve": "groev", "groeven": "groev", "groezeligs": "groezel", "grof": "grof", "grofkeramische": "grofkeramisch", "grofvuilverkleiner": "grofvuilverkleiner", "grofvuilvermaler": "grofvuilvermaler", "grofweg": "grofweg", "grofwild": "grofwild", "grog": "grog", "grogje": "grogj", "grogjes": "grogjes", "grohe": "groh", "grond": "grond", "grondafvoer": "grondafvoer", "grondbank": "grondbank", "grondbehandelingscentrum": "grondbehandelingscentrum", "grondbemonstering": "grondbemonster", "grondbewerking": "grondbewerk", "grondbezit": "grondbezit", "grondbezitter": "grondbezitter", "grondboringen": "grondbor", "gronddeeltjes": "gronddeeltjes", "gronde": "grond", "grondeekhoorns": "grondeekhoorn", "grondeigenaars": "grondeigenar", "grondeigenaren": "grondeigenar", "gronden": "grond", "grondgebied": "grondgebied", "grondgebonden": "grondgebond", "grondgebruik": "grondgebruik", "grondgebruiker": "grondgebruiker", "grondgebruikers": "grondgebruiker", "grondgebruiksfuncties": "grondgebruiksfuncties", "grondig": "grondig", "grondige": "grondig", "grondkabels": "grondkabel", "grondkosten": "grondkost", "grondlaag": "grondlag", "grondlagen": "grondlag", "grondleggers": "grondlegger", "grondmarkt": "grondmarkt", "grondmechanica": "grondmechanica", "grondmechanische": "grondmechanisch", "grondmonsters": "grondmonster", "grondolie": "grondolie", "grondontsmetting": "grondontsmet", "grondontsmettingsmiddel": "grondontsmettingsmiddel", "grondontsmettingsmiddelen": "grondontsmettingsmiddel", "grondprijzen": "grondprijz", "grondradar": "grondradar", "grondradarmethodiek": "grondradarmethodiek", "grondreiniger": "grondreiniger", "grondreiniging": "grondrein", "grondreinigings": "grondrein", "grondreinigingsbedrijven": "grondreinigingsbedrijv", "grondreinigingsinstalatie": "grondreinigingsinstalatie", "grondreinigingsinstallatie": "grondreinigingsinstallatie", "grondsanering": "grondsaner", "grondsaneringbedrijf": "grondsaneringbedrijf", "grondsaneringsbedrijf": "grondsaneringsbedrijf", "grondsaneringsmarkt": "grondsaneringsmarkt", "grondslag": "grondslag", "grondslagen": "grondslag", "grondsoort": "grondsoort", "grondsoorten": "grondsoort", "grondspeculatie": "grondspeculatie", "grondstof": "grondstof", "grondstofarm": "grondstofarm", "grondstoffen": "grondstoff", "grondstoffenbank": "grondstoffenbank", "grondstoffenbeheer": "grondstoffenbeher", "grondstoffenbeleid": "grondstoffenbeleid", "grondstoffenbesparing": "grondstoffenbespar", "grondstoffengebruik": "grondstoffengebruik", "grondstoffenmarkt": "grondstoffenmarkt", "grondstoffenproducent": "grondstoffenproducent", "grondstoffenvoorraad": "grondstoffenvoorrad", "grondstofgebruik": "grondstofgebruik", "grondstofkosten": "grondstofkost", "grondstofprijzen": "grondstofprijz", "grondstofproducent": "grondstofproducent", "grondstofrecycling": "grondstofrecycl", "grondstofzuiniger": "grondstofzuiniger", "grondteelt": "grondteelt", "grondtelers": "grondteler", "grondtransacties": "grondtransacties", "gronduitgiften": "gronduitgift", "grondverbeteraar": "grondverbeterar", "grondverbetering": "grondverbeter", "grondverklaringen": "grondverklar", "grondverschuivingen": "grondverschuiv", "grondverwerving": "grondverwerv", "grondverzet": "grondverzet", "grondwasinstallatie": "grondwasinstallatie", "grondwassen": "grondwass", "grondwater": "grondwater", "grondwateraanvulling": "grondwateraanvull", "grondwaterbehandeling": "grondwaterbehandel", "grondwaterbeheer": "grondwaterbeher", "grondwaterbelasting": "grondwaterbelast", "grondwaterbeleid": "grondwaterbeleid", "grondwaterbescherming": "grondwaterbescherm", "grondwaterbeschermingsgebied": "grondwaterbeschermingsgebied", "grondwaterbeschermingsgebieden": "grondwaterbeschermingsgebied", "grondwaterbesparing": "grondwaterbespar", "grondwaterbronnen": "grondwaterbronn", "grondwatercircuit": "grondwatercircuit", "grondwaterdaling": "grondwaterdal", "grondwaterdecreet": "grondwaterdecret", "grondwatergebruik": "grondwatergebruik", "grondwaterhuishouding": "grondwaterhuishoud", "grondwaterkwaliteit": "grondwaterkwaliteit", "grondwatermeetnet": "grondwatermeetnet", "grondwatermeting": "grondwatermet", "grondwatermodel": "grondwatermodel", "grondwatermodellen": "grondwatermodell", "grondwatermonster": "grondwatermonster", "grondwateronderzoek": "grondwateronderzoek", "grondwateronttrekking": "grondwateronttrek", "grondwaterpeil": "grondwaterpeil", "grondwaterputten": "grondwaterput", "grondwatersanering": "grondwatersaner", "grondwaterspiegel": "grondwaterspiegel", "grondwaterstand": "grondwaterstand", "grondwaterstanden": "grondwaterstand", "grondwaterstromen": "grondwaterstrom", "grondwaterstroming": "grondwaterstrom", "grondwaterverbruik": "grondwaterverbruik", "grondwaterverontreiniging": "grondwaterverontrein", "grondwatervoorraad": "grondwatervoorrad", "grondwaterwinning": "grondwaterwinn", "grondwaterwinningen": "grondwaterwinn", "grondwaterzuivering": "grondwaterzuiver", "grondwaterzuiveringsinstallaties": "grondwaterzuiveringsinstallaties", "grondwet": "grondwet", "grondwinning": "grondwinn", "groningen": "groning", "groninger": "groninger", "gronings": "groning", "groningse": "groning", "grontmij": "grontmij", "groot": "grot", "gróot": "grot", "groót": "grot", "gróót": "grot", "grootaandeelhouder": "grootaandeelhouder", "grootafnemers": "grootafnemer", "grootbedrijf": "grootbedrijf", "groote": "grot", "grootformaat": "grootformat", "grootgebruikers": "grootgebruiker", "grootgruttersketen": "grootgruttersket", "groothandel": "groothandel", "groothandelsondernemingen": "groothandelsondernem", "grootharige": "groothar", "grootheden": "grootheid", "grootheid": "grootheid", "groothuizen": "groothuiz", "grootkeukens": "grootkeuken", "grootkleurige": "grootkleur", "grootma": "grootma", "grootmachten": "grootmacht", "grootmama": "grootmama", "grootmarna": "grootmarna", "grootmeesteres": "grootmeesteres", "gròotmeesteres": "gròotmeesteres", "grootmoeder": "grootmoeder", "grootouders": "grootouder", "grootpapa": "grootpapa", "groots": "grot", "grootschalig": "grootschal", "grootschalige": "grootschal", "grootschaligheid": "grootschal", "grootscheepse": "grootschep", "grootse": "grot", "grootser": "grootser", "grootsheden": "grootsheid", "grootst": "grootst", "grootste": "grootst", "grootstedelijke": "grootsted", "grootsteedse": "grootsted", "grootte": "grot", "grootvader": "grootvader", "grootvee": "grootvee", "grootveld": "grootveld", "grootverbruiker": "grootverbruiker", "grootverbruikers": "grootverbruiker", "grootverbruikerscontract": "grootverbruikerscontract", "grootwinkelbedrijven": "grootwinkelbedrijv", "gros": "gros", "gross": "gros", "grote": "grot", "gróte": "grot", "grotendeels": "grotendel", "groter": "groter", "grotere": "groter", "groun": "groun", "ground": "ground", "group": "group", "groups": "group", "groutsoorten": "groutsoort", "grove": "grov", "grp": "grp", "gruis": "gruis", "gruisafval": "gruisafval", "gruizelend": "gruizel", "gruizelregen": "gruizelreg", "grumbly": "grumbly", "grundfos": "grundfos", "grüne": "grun", "grünen": "grun", "gruppe": "grupp", "gruwel": "gruwel", "gruwelijke": "gruwelijk", "gruwelijkheid": "gruwelijk", "gruyère": "gruyèr", "gs": "gs", "gt": "gt", "gti": "gti", "guard": "guard", "guardian": "guardian", "gudde": "gud", "guet": "guet", "guide": "guid", "guido": "guido", "guinea": "guinea", "guinness": "guinnes", "guitigheid": "guitig", "guizhou": "guizhou", "gujarat": "gujarat", "gul": "gul", "guldemond": "guldemond", "gulden": "guld", "guldens": "gulden", "guldensbazar": "guldensbazar", "guldensleningen": "guldenslen", "gulf": "gulf", "gullfiber": "gullfiber", "gulzige": "gulzig", "gummer": "gummer", "gun": "gun", "gunde": "gund", "gunden": "gund", "gunnerman": "gunnerman", "gunst": "gunst", "gunste": "gunst", "gunsten": "gunst", "gunster": "gunster", "gunstig": "gunstig", "gunstige": "gunstig", "gunstiger": "gunstiger", "gunstigere": "gunstiger", "gunstigste": "gunstigst", "gunstjes": "gunstjes", "gunt": "gunt", "günther": "gunther", "gurp": "gurp", "gutzeit": "gutzeit", "guy": "guy", "gve": "gve", "gvm": "gvm", "gwh": "gwh", "gww": "gww", "gx": "gx", "gymnasiast": "gymnasiast", "gymnasiastje": "gymnasiastj", "gymnasium": "gymnasium", "gymnasiumtijd": "gymnasiumtijd", "gymnastiek": "gymnastiek", "gymzalen": "gymzal", "gyropower": "gyropower", "gyroscoop": "gyroscop", "gyvlon": "gyvlon", "gzo": "gzo", "h": "h", "ha": "ha", "haag": "hag", "haaglanden": "haagland", "haags": "hag", "haagse": "hag", "haagsheid": "haagsheid", "haai": "haai", "haaie": "haai", "haaien": "haai", "haakarm": "haakarm", "haakarminstallatie": "haakarminstallatie", "haakjes": "haakjes", "haaks": "hak", "haakten": "haakt", "haakverbinding": "haakverbind", "haakwerk": "haakwerk", "haal": "hal", "haalbaar": "haalbar", "haalbaarheid": "haalbar", "haalbaarheids": "haalbar", "haalbaarheidsonderzoek": "haalbaarheidsonderzoek", "haalbaarheidsonderzoeken": "haalbaarheidsonderzoek", "haalbaarheidsprojecten": "haalbaarheidsproject", "haalbaarheidsstudie": "haalbaarheidsstudie", "haalbaarheidsstudies": "haalbaarheidsstudies", "haalbare": "haalbar", "haalde": "haald", "haalden": "haald", "haalsysteem": "haalsystem", "haalsystemen": "haalsystem", "haalt": "haalt", "haantje": "haantj", "haar": "har", "háar": "har", "haard": "haard", "haardvuur": "haardvur", "haarlem": "haarlem", "haarlemmerhout": "haarlemmerhout", "haarlemmermeer": "haarlemmermer", "haarlemmermeerpolder": "haarlemmermeerpolder", "haarlemse": "haarlem", "haars": "har", "haartjes": "haartjes", "haarzelf": "haarzelf", "háarzelf": "haarzelf", "haarzuilens": "haarzuilen", "haas": "has", "haast": "haast", "haasten": "haast", "haastig": "haastig", "haastige": "haastig", "haastiger": "haastiger", "haastigheid": "haastig", "haastte": "haast", "haastten": "haast", "haat": "hat", "haatdragend": "haatdrag", "haatte": "hat", "haatten": "hat", "haazen": "haz", "habitat": "habitat", "habitats": "habitat", "hacros": "hacros", "had": "had", "hadden": "had", "haden": "had", "haen": "haen", "hagedis": "hagedis", "hagedissen": "hagediss", "hagelden": "hageld", "hagenaars": "hagenar", "hagoort": "hagoort", "hague": "hague", "haier": "haier", "haifa": "haifa", "hailsham": "hailsham", "haitjema": "haitjema", "haken": "hak", "hakende": "hakend", "hakensysteem": "hakensystem", "hakhout": "hakhout", "hakkelend": "hakkel", "hakken": "hak", "hakkerig": "hakker", "hakkerigs": "hakker", "hakt": "hakt", "hal": "hal", "halen": "hal", "half": "half", "halffabrikaat": "halffabrikat", "halffabrikaten": "halffabrikat", "halfgehalogeneerde": "halfgehalogeneerd", "halfgeleidende": "halfgeleid", "halfgeleider": "halfgeleider", "halfheid": "halfheid", "halfjaar": "halfjar", "halfjaarlijks": "halfjar", "halfjaarlÿkse": "halfjaarlÿk", "halfjaarresultaat": "halfjaarresultat", "halflast": "halflast", "halflicht": "halflicht", "halfprodukten": "halfprodukt", "halfrond": "halfrond", "halftinten": "halftint", "halfwaarde": "halfwaard", "halfwaardetijd": "halfwaardetijd", "halfweg": "halfweg", "halfzuster": "halfzuster", "halfzwaar": "halfzwar", "haliaeëtus": "haliaeetus", "hall": "hall", "haller": "haller", "hallucinatie": "hallucinatie", "hallucinaties": "hallucinaties", "hallum": "hallum", "halo": "halo", "halonen": "halon", "hals": "hal", "halsstarrig": "halsstarr", "halsstarrige": "halsstarr", "halsteren": "halster", "halszaak": "halszak", "halt": "halt", "halte": "halt", "halters": "halter", "halve": "halv", "halveert": "halveert", "halveren": "halver", "halvering": "halver", "halverwege": "halverweg", "halzen": "halz", "ham": "ham", "hamans": "haman", "hamburg": "hamburg", "hamelen": "hamel", "hameren": "hamer", "hamert": "hamert", "hammel": "hammel", "hamsters": "hamster", "han": "han", "hand": "hand", "handbelading": "handbelad", "handbereik": "handbereik", "handbeweging": "handbeweg", "handboek": "handboek", "handboeken": "handboek", "handdoek": "handdoek", "handdruk": "handdruk", "handdrukje": "handdrukj", "handel": "handel", "handelaar": "handelar", "handelaars": "handelar", "handelaren": "handelar", "handelde": "handeld", "handelden": "handeld", "handelen": "handel", "handelende": "handel", "handeling": "handel", "handelingen": "handel", "handelingsadviezen": "handelingsadviez", "handels": "handel", "handelsagent": "handelsagent", "handelsbalans": "handelsbalan", "handelsban": "handelsban", "handelsbelemmeringen": "handelsbelemmer", "handelsbetrekkingen": "handelsbetrek", "handelsbeurs": "handelsbeur", "handelsblatt": "handelsblatt", "handelsboycot": "handelsboycot", "handelsbureau": "handelsbureau", "handelsconcurrent": "handelsconcurrent", "handelsconflicten": "handelsconflict", "handelscontracten": "handelscontract", "handelskade": "handelskad", "handelskennisgeving": "handelskennisgev", "handelslui": "handelslui", "handelsmaatschappij": "handelsmaatschappij", "handelsmechanismen": "handelsmechanism", "handelsmissie": "handelsmissie", "handelsnaam": "handelsnam", "handelsonderneming": "handelsondernem", "handelsondernemingen": "handelsondernem", "handelsorganisatie": "handelsorganisatie", "handelspartner": "handelspartner", "handelspartners": "handelspartner", "handelspoot": "handelspot", "handelssancties": "handelssancties", "handelsschool": "handelsschol", "handelsverbod": "handelsverbod", "handelsverhoudingen": "handelsverhoud", "handelsverkeer": "handelsverker", "handelswijze": "handelswijz", "handelt": "handelt", "handelwijze": "handelwijz", "handen": "hand", "handenarbeid": "handenarbeid", "handgemeen": "handgemen", "handhaafbaar": "handhaf", "handhaafbaarheid": "handhaf", "handhaafbare": "handhaf", "handhaaft": "handhaaft", "handhaven": "handhav", "handhavende": "handhav", "handhaver": "handhaver", "handhavers": "handhaver", "handhaving": "handhav", "handhavings": "handhav", "handhavingsactie": "handhavingsactie", "handhavingsactiviteiten": "handhavingsactiviteit", "handhavingsbeleid": "handhavingsbeleid", "handhavingsbundel": "handhavingsbundel", "handhavingscultuur": "handhavingscultur", "handhavingsmaatregelen": "handhavingsmaatregel", "handhavingsorganisatie": "handhavingsorganisatie", "handhavingsoverleg": "handhavingsoverleg", "handhavingsprogramma": "handhavingsprogramma", "handhavingsproject": "handhavingsproject", "handhavingsstructuur": "handhavingsstructur", "handhavingstaak": "handhavingstak", "handhavingstaken": "handhavingstak", "handhavingsvormen": "handhavingsvorm", "handig": "handig", "handigheid": "handig", "handje": "handj", "handjes": "handjes", "handkoffer": "handkoffer", "handleiding": "handleid", "handleidingen": "handleid", "handling": "handling", "handlingzones": "handlingzones", "handmatige": "handmat", "handomdraai": "handomdraai", "handreiking": "handreik", "handreikingen": "handreik", "handschoen": "handschoen", "handschoenen": "handschoen", "handslag": "handslag", "handtekening": "handteken", "handtekeningen": "handteken", "handtekeningenactie": "handtekeningenactie", "handvat": "handvat", "handvest": "handvest", "handvol": "handvol", "handwerk": "handwerk", "handwerken": "handwerk", "handwerkjes": "handwerkjes", "handwerkten": "handwerkt", "hanekamp": "hanekamp", "hanemaaijer": "hanemaaijer", "hang": "hang", "hangar": "hangar", "hangen": "hang", "hangend": "hangend", "hangende": "hangend", "hangingen": "hanging", "hanglamp": "hanglamp", "hangpu": "hangpu", "hangslot": "hangslot", "hangt": "hangt", "haniel": "haniel", "hannover": "hannover", "hanoi": "hanoi", "hans": "han", "hanteerbaar": "hanter", "hanteerbaarheid": "hanter", "hanteerde": "hanteerd", "hanteert": "hanteert", "hanteren": "hanter", "hantering": "hanter", "hanze": "hanz", "hanzemilieu": "hanzemilieu", "hao": "hao", "hap": "hap", "haperen": "haper", "hapje": "hapj", "hapjes": "hapjes", "hapte": "hapt", "harare": "harar", "harbor": "harbor", "harbour": "harbour", "harburg": "harburg", "harceringen": "harcer", "hard": "hard", "hardblauwe": "hardblauw", "harde": "hard", "harden": "hard", "hardenberg": "hardenberg", "harder": "harder", "harderbroek": "harderbroek", "hardere": "harder", "harderwijk": "harderwijk", "hardfruit": "hardfruit", "hardheid": "hardheid", "hardhorig": "hardhor", "hardhorige": "hardhor", "hardhout": "hardhout", "hardinxveld": "hardinxveld", "hardklinkende": "hardklink", "hardmaking": "hardmak", "hardnekkig": "hardnekk", "hardnekkige": "hardnekk", "hardnekkigheid": "hardnekk", "hardop": "hardop", "hards": "hard", "hardsolderen": "hardsolder", "hardst": "hardst", "hardvlezig": "hardvlez", "hare": "har", "haren": "har", "harer": "harer", "harige": "harig", "haring": "haring", "haringvangsten": "haringvangst", "haringvliet": "haringvliet", "harlingen": "harling", "harlow": "harlow", "harm": "harm", "harmelen": "harmel", "harmelerwaard": "harmelerwaard", "harmonie": "harmonie", "harmonieerden": "harmonieerd", "harmoniëren": "harmonier", "harmonieuze": "harmonieuz", "harmonisatie": "harmonisatie", "harmonisch": "harmonisch", "harmonische": "harmonisch", "harmoniseren": "harmoniser", "harmonisering": "harmoniser", "harnas": "harnas", "harrie": "harrie", "harris": "harris", "harry": "harry", "hars": "har", "harsachtige": "harsacht", "harsen": "hars", "harskolommen": "harskolomm", "harsslurry": "harsslurry", "hart": "hart", "harte": "hart", "hartelijk": "hartelijk", "hartelijke": "hartelijk", "hartelijker": "hartelijker", "hartelijkheid": "hartelijk", "hartelijks": "hartelijk", "harten": "hart", "hartje": "hartj", "hartklopping": "hartklopp", "hartmann": "hartmann", "hartstikke": "hartstik", "hartstocht": "hartstocht", "hartstochtelijk": "hartstocht", "hartstochten": "hartstocht", "harzburg": "harzburg", "has": "has", "hashimoto": "hashimoto", "haskoning": "haskon", "haspelde": "haspeld", "hasselt": "hasselt", "hat": "hat", "hatelijk": "hatelijk", "hatelijke": "hatelijk", "hatelijkheden": "hatelijk", "hatelijkheid": "hatelijk", "haten": "hat", "hatende": "hatend", "haule": "haul", "hausgeräte": "hausgerat", "haut": "haut", "have": "hav", "havelaar": "havelar", "havelaarprodukten": "havelaarprodukt", "haven": "hav", "havenbedrijf": "havenbedrijf", "havenbedrijven": "havenbedrijv", "havendienst": "havendienst", "havenfaciliteiten": "havenfaciliteit", "havengebied": "havengebied", "havenhoofden": "havenhoofd", "havenmond": "havenmond", "havenontvangstinstallaties": "havenontvangstinstallaties", "havens": "haven", "havenschap": "havenschap", "havenslib": "havenslib", "havenspoorlijn": "havenspoorlijn", "havenstad": "havenstad", "havenwater": "havenwater", "havenweg": "havenweg", "havenwegtracé": "havenwegtrac", "havenwethouder": "havenwethouder", "haver": "haver", "haverklap": "haverklap", "havermeel": "havermel", "havik": "havik", "havre": "havr", "hawaï": "hawai", "hazard": "hazard", "hazardous": "hazardous", "hazards": "hazard", "hazelaar": "hazelar", "hazeldonk": "hazeldonk", "hazemag": "hazemag", "hazerswoude": "hazerswoud", "hbc": "hbc", "hbfk": "hbfk", "hbg": "hbg", "hbm": "hbm", "hbo": "hbo", "hc": "hc", "hcb": "hcb", "hcfk": "hcfk", "hch": "hch", "hcl": "hcl", "hcn": "hcn", "hdpe": "hdpe", "hdr": "hdr", "he": "he", "hé": "he", "hè": "hè", "head": "head", "health": "health", "heat": "heat", "heathrow": "heathrow", "heating": "heating", "heavy": "heavy", "heb": "heb", "hèb": "hèb", "hebben": "hebb", "hèbben": "hèbb", "hebbende": "hebbend", "hebhen": "hebh", "hebreeuws": "hebreeuw", "hebt": "hebt", "hebzucht": "hebzucht", "hecht": "hecht", "hechten": "hecht", "hechtenis": "hechtenis", "hechting": "hechting", "hechtingsverbeteraars": "hechtingsverbeterar", "hechtmiddelen": "hechtmiddel", "hechtte": "hecht", "hectare": "hectar", "hectaren": "hectar", "hectares": "hectares", "hectoliter": "hectoliter", "hectoliters": "hectoliter", "hedel": "hedel", "heden": "heden", "hedendaagse": "hedendag", "hedonische": "hedonisch", "hedrix": "hedrix", "hedwigepolder": "hedwigepolder", "heeft": "heeft", "heel": "hel", "héel": "hel", "hèel": "hèel", "heél": "hel", "heèl": "heèl", "heelal": "heelal", "heemkundigen": "heemkund", "heemraadschap": "heemraadschap", "heemstede": "heemsted", "heen": "hen", "heendringen": "heendring", "heengaan": "heengan", "heengaande": "heengaand", "heengegaan": "heengegan", "heengegleden": "heengegled", "heengevlogen": "heengevlog", "heenslaan": "heenslan", "heenstappen": "heenstapp", "heentuurt": "heentuurt", "heenvliet": "heenvliet", "heer": "her", "heerde": "heerd", "heerema": "heerema", "heerenveen": "heerenven", "heerenveens": "heerenven", "heerhugowaard": "heerhugowaard", "heerlen": "heerl", "heerlense": "heerlen", "heerlijk": "heerlijk", "heerlijke": "heerlijk", "heerlijker": "heerlijker", "heerlijkheden": "heerlijk", "heerlijkheid": "heerlijk", "heerlijks": "heerlijk", "heerlijkste": "heerlijkst", "heerma": "heerma", "heerschappij": "heerschappij", "heersen": "heers", "heersende": "heersend", "heerser": "heerser", "heerst": "heerst", "heerste": "heerst", "heersziek": "heersziek", "heertje": "heertj", "hees": "hes", "heesters": "heester", "heet": "het", "heetmanplein": "heetmanplein", "heette": "het", "heetwatercassette": "heetwatercasset", "hef": "hef", "heffen": "heff", "heffing": "heffing", "heffingen": "heffing", "heffingensysteem": "heffingensystem", "heffingsaanslag": "heffingsaanslag", "heffingsbedrag": "heffingsbedrag", "heffingsgrondslag": "heffingsgrondslag", "heffingsplichtigen": "heffingsplicht", "heffingstarief": "heffingstarief", "heffingsvrije": "heffingsvrij", "heffingvrije": "heffingvrij", "hefinstallatie": "hefinstallatie", "heft": "heft", "heftig": "heftig", "heftige": "heftig", "heftiger": "heftiger", "heftrucks": "heftruck", "hegemann": "hegemann", "hei": "hei", "heide": "heid", "heidebrand": "heidebrand", "heidekimme": "heidekimm", "heidekimmen": "heidekimm", "heidelberg": "heidelberg", "heidemaatschappij": "heidemaatschappij", "heidemij": "heidemij", "heiden": "heid", "heidevelden": "heideveld", "heidevennen": "heidevenn", "heijkoop": "heijkop", "heijmans": "heijman", "heijn": "heijn", "heijplaat": "heijplat", "heijsman": "heijsman", "heijvam": "heijvam", "heil": "heil", "heilbot": "heilbot", "heilig": "heilig", "heilige": "heilig", "heiligenberg": "heiligenberg", "heilijgers": "heilijger", "heiloo": "heiloo", "heilzaam": "heilzam", "heimelijk": "heimelijk", "heimelijke": "heimelijk", "heimutsvullingen": "heimutsvull", "heimwee": "heimwee", "hein": "hein", "heineken": "heinek", "heinenoordtunnel": "heinenoordtunnel", "heino": "heino", "heipalen": "heipal", "hek": "hek", "hekelen": "hekel", "hekelt": "hekelt", "hel": "hel", "helaas": "helas", "helang": "helang", "held": "held", "helde": "held", "helden": "held", "helder": "helder", "helderde": "helderd", "helderder": "helderder", "heldere": "helder", "helderen": "helder", "helderheid": "helder", "helderse": "helder", "helderste": "helderst", "helderziendheid": "helderzi", "heldin": "heldin", "heldinnen": "heldinn", "hele": "hel", "heleboel": "heleboel", "helemaal": "helemal", "hélemaal": "helemal", "helenaveen": "helenaven", "helft": "helft", "heli": "heli", "helicoptervlucht": "helicoptervlucht", "helikopter": "helikopter", "helikopters": "helikopter", "helium": "helium", "heliview": "heliview", "helklinkende": "helklink", "helle": "hell", "hellegatspolder": "hellegatspolder", "hellend": "hellend", "hellende": "hellend", "hellendoorn": "hellendoorn", "hellevoetsluis": "hellevoetsluis", "helling": "helling", "hellingshoek": "hellingshoek", "helm": "helm", "helmen": "helm", "helmer": "helmer", "helmholtz": "helmholtz", "helmkaketoe": "helmkaketoe", "helmond": "helmond", "helmondse": "helmond", "help": "help", "helpdesk": "helpdesk", "helpen": "help", "helpster": "helpster", "helpt": "helpt", "helsen": "hels", "helsinki": "helsinki", "helvoirt": "helvoirt", "helvoirtse": "helvoirt", "hem": "hem", "hèm": "hèm", "hemd": "hemd", "hemden": "hemd", "hemdenfabrikant": "hemdenfabrikant", "hemdje": "hemdj", "hemel": "hemel", "hemelen": "hemel", "hemelland": "hemelland", "hemelsblauw": "hemelsblauw", "hemelsteppen": "hemelstepp", "hemelwater": "hemelwater", "hemelwereld": "hemelwereld", "hemelwerelden": "hemelwereld", "hemelwolken": "hemelwolk", "hemi": "hemi", "hemmetje": "hemmetj", "hemmetjes": "hemmetjes", "hemweg": "hemweg", "hemzelf": "hemzelf", "hèmzelf": "hèmzelf", "hen": "hen", "hèn": "hèn", "hendrik": "hendrik", "hendriks": "hendrik", "hendrix": "hendrix", "hengelo": "hengelo", "hengsel": "hengsel", "henk": "henk", "henri": "henri", "henriëtte": "henriet", "hensley": "hensley", "henzelf": "henzelf", "her": "her", "hèr": "hèr", "herademde": "herademd", "herademen": "heradem", "herademend": "heradem", "heraklith": "heraklith", "herawoll": "herawoll", "herbebossing": "herbeboss", "herbebossingsproject": "herbebossingsproject", "herbestemming": "herbestemm", "herbewerking": "herbewerk", "herbezinning": "herbezinn", "herbicide": "herbicid", "herbiciden": "herbicid", "herbloeide": "herbloeid", "herboreling": "herborel", "herboren": "herbor", "herbouwd": "herbouwd", "herbruik": "herbruik", "herbruikbaar": "herbruik", "herbruikbaarheid": "herbruik", "herbruikbare": "herbruik", "herbruikt": "herbruikt", "hercules": "hercules", "hercultivering": "hercultiver", "hercultiveringsverplichtingen": "hercultiveringsverplicht", "herdachte": "herdacht", "herdenken": "herdenk", "here": "her", "herediteit": "herediteit", "heren": "her", "herendiner": "herendiner", "herenhuizen": "herenhuiz", "hereniging": "heren", "herenkleding": "herenkled", "herenkleren": "herenkler", "herenwinkel": "herenwinkel", "herfst": "herfst", "herfstachtig": "herfstacht", "herfstdag": "herfstdag", "herfstende": "herfstend", "herfstmorgen": "herfstmorg", "herfstregens": "herfstregen", "herfststormen": "herfststorm", "herfststraat": "herfststrat", "herfstteelt": "herfstteelt", "hergebruik": "hergebruik", "hergebruiken": "hergebruik", "hergebruikinstallaties": "hergebruikinstallaties", "hergebruikmaatschappij": "hergebruikmaatschappij", "hergebruikmogelijkheden": "hergebruikmog", "hergebruiksdoelstelling": "hergebruiksdoelstell", "hergebruiksgrond": "hergebruiksgrond", "hergebruikspercentage": "hergebruikspercentag", "hergebruiksrendement": "hergebruiksrendement", "hergebruikt": "hergebruikt", "hergebruikte": "hergebruikt", "herhaal": "herhal", "herhaald": "herhaald", "herhaalde": "herhaald", "herhaaldelijk": "herhaald", "herhaalden": "herhaald", "herhalen": "herhal", "herhaling": "herhal", "herhalingen": "herhal", "herhalingscursus": "herhalingscursus", "herijking": "herijk", "herijkingen": "herijk", "herijkingsnota": "herijkingsnota", "herindustrialisering": "herindustrialiser", "heringedeeld": "heringedeeld", "heringericht": "heringericht", "herinner": "herinner", "herinnerd": "herinnerd", "herinnerde": "herinnerd", "herinnerden": "herinnerd", "herinneren": "herinner", "herinnerend": "herinner", "herinnerende": "herinner", "herinnering": "herinner", "herinneringen": "herinner", "herinneringloos": "herinneringlos", "herinneringloosheid": "herinneringlos", "herinnert": "herinnert", "herinrichten": "herinricht", "herinrichting": "herinricht", "herinrichtingsbestek": "herinrichtingsbestek", "herinrichtingsprojecten": "herinrichtingsproject", "herintroduceren": "herintroducer", "herintroductie": "herintroductie", "herken": "herk", "herkenbaar": "herken", "herkenbaarheid": "herken", "herkenbare": "herken", "herkend": "herkend", "herkende": "herkend", "herkenden": "herkend", "herkennen": "herkenn", "herkennende": "herkenn", "herkenningssymbolen": "herkenningssymbol", "herkent": "herkent", "herkomst": "herkomst", "herkreeg": "herkreg", "herkströter": "herkstroter", "herlaadbare": "herlad", "herladen": "herlad", "herleefde": "herleefd", "herleefden": "herleefd", "herlev": "herlev", "herleven": "herlev", "herlezende": "herlez", "herlokatie": "herlokatie", "herman": "herman", "hermes": "hermes", "hernam": "hernam", "hernandez": "hernandez", "hernieuwbare": "hernieuw", "hernieuwd": "hernieuwd", "hernieuwde": "hernieuwd", "herning": "herning", "hero": "hero", "heron": "heron", "herontwerpt": "herontwerpt", "herontwikkeld": "herontwikkeld", "herontwikkeling": "herontwikkel", "heropenen": "heropen", "heroriëntatie": "herorientatie", "heroriënteerd": "herorienteerd", "heroverwegen": "heroverweg", "heroverweging": "heroverweg", "herplaatsen": "herplaats", "herplantingsplicht": "herplantingsplicht", "herregistratie": "herregistratie", "herregistraties": "herregistraties", "herrewegen": "herreweg", "herrie": "herrie", "herrit": "herrit", "hersen": "hers", "hersenen": "hersen", "hersenklomp": "hersenklomp", "hersens": "hersen", "hersenschim": "hersenschim", "hersentjes": "hersentjes", "hersentumoren": "hersentumor", "herstel": "herstel", "herstelbedrijven": "herstelbedrijv", "hersteld": "hersteld", "herstelde": "hersteld", "herstelden": "hersteld", "herstelinrichtingen": "herstelinricht", "herstelkosten": "herstelkost", "herstellen": "herstell", "herstelmaatregelen": "herstelmaatregel", "herstelt": "herstelt", "herstelwerk": "herstelwerk", "herstelwerkzaamheden": "herstelwerkzam", "herstrating": "herstrat", "herstructureren": "herstructurer", "herstructurering": "herstructurer", "herstructureringfonds": "herstructureringfond", "herstructureringsbeleid": "herstructureringsbeleid", "herstructureringsfond": "herstructureringsfond", "herstructureringsfonds": "herstructureringsfond", "herstructureringskosten": "herstructureringskost", "herstructureringsplan": "herstructureringsplan", "herstructureringsplannen": "herstructureringsplann", "herten": "hert", "hertenkamp": "hertenkamp", "hertfordshire": "hertfordshir", "hertog": "hertog", "hertogen": "hertog", "hertogenbosch": "hertogenbosch", "hertoghuizen": "hertoghuiz", "hertz": "hertz", "hervat": "hervat", "hervatte": "hervat", "hervatten": "hervat", "hervatting": "hervat", "hervé": "herv", "herveld": "herveld", "hervelds": "herveld", "herverdeling": "herverdel", "herverkaveling": "herverkavel", "herverwerken": "herverwerk", "herverwerking": "herverwerk", "herverwerkingscapaciteit": "herverwerkingscapaciteit", "herverzekeraar": "herverzekerar", "herverzekeraars": "herverzekerar", "herverzekering": "herverzeker", "hervinden": "hervind", "hervorming": "hervorm", "hervormingen": "hervorm", "hervormingsmaatregelen": "hervormingsmaatregel", "hervormingsproces": "hervormingsproces", "hervulbare": "hervul", "herwaardering": "herwaarder", "herwaarderingen": "herwaarder", "herwinbare": "herwin", "herwinnen": "herwinn", "herwinning": "herwinn", "herwint": "herwint", "herwonnen": "herwonn", "herzien": "herzien", "herziene": "herzien", "herziening": "herzien", "herzieningswet": "herzieningswet", "herziet": "herziet", "hese": "hes", "hesp": "hesp", "hessen": "hess", "hessenenergie": "hessenenergie", "hessenwind": "hessenwind", "hessing": "hessing", "het": "het", "hèt": "hèt", "hete": "het", "heteluchtballon": "heteluchtballon", "heten": "het", "heter": "heter", "heterogene": "heterog", "heterogener": "heterogener", "hetgeen": "hetgen", "hetzelfde": "hetzelfd", "hetzij": "hetzij", "heugde": "heugd", "heugen": "heug", "heugende": "heugend", "heugenissen": "heugeniss", "heugten": "heugt", "heup": "heup", "heupen": "heup", "heur": "heur", "heus": "heus", "hèus": "hèus", "heuse": "heus", "heuvel": "heuvel", "heuvelrug": "heuvelrug", "heuvels": "heuvel", "hevea": "hevea", "hevelsysteem": "hevelsystem", "hevig": "hevig", "hevige": "hevig", "heviger": "heviger", "hevigheid": "hevig", "hevigst": "hevigst", "hexaan": "hexan", "hexachloorbenzeen": "hexachloorbenzen", "hexachloorbutadieen": "hexachloorbutadieen", "hexachloorcyclohexaan": "hexachloorcyclohexan", "hexachloorhexaan": "hexachloorhexan", "hf": "hf", "hfk": "hfk", "hfsp": "hfsp", "hiaten": "hiat", "hibin": "hibin", "hickson": "hickson", "hid": "hid", "hief": "hief", "hield": "hield", "hielden": "hield", "hielp": "hielp", "hielpen": "hielp", "hiem": "hiem", "hier": "hier", "hieraan": "hieran", "hierbij": "hierbij", "hierbinnen": "hierbinn", "hierden": "hierd", "hierdoor": "hierdor", "hierheen": "hierhen", "hierin": "hierin", "hiermee": "hiermee", "hierna": "hierna", "hiernaar": "hiernar", "hierom": "hierom", "hieronder": "hieronder", "hierop": "hierop", "hierover": "hierover", "hiertegen": "hierteg", "hiertoe": "hiertoe", "hieruit": "hieruit", "hiervan": "hiervan", "hiervoor": "hiervor", "hieven": "hiev", "high": "high", "highpolymer": "highpolymer", "hij": "hij", "hijdrecht": "hijdrecht", "hijdrechts": "hijdrecht", "hijgde": "hijgd", "hijgden": "hijgd", "hijgende": "hijgend", "hijiori": "hijiori", "hijsen": "hijs", "hijslussen": "hijsluss", "hijzelf": "hijzelf", "hikken": "hik", "hikkende": "hikkend", "hikte": "hikt", "hill": "hill", "hillegom": "hillegom", "hillegommerbeek": "hillegommerbek", "hilleshög": "hilleshog", "hilversum": "hilversum", "hinder": "hinder", "hinderbeleving": "hinderbelev", "hinderde": "hinderd", "hinderden": "hinderd", "hinderen": "hinder", "hinderenquête": "hinderenquêt", "hindergrens": "hindergren", "hinderlijk": "hinder", "hindernis": "hindernis", "hindernissen": "hinderniss", "hinderniveau": "hinderniveau", "hinderpaal": "hinderpal", "hindersystematiek": "hindersystematiek", "hindert": "hindert", "hinderwet": "hinderwet", "hinderwetvergunning": "hinderwetvergunn", "hindoe": "hindoe", "hing": "hing", "hingen": "hing", "hinkley": "hinkley", "hiroshima": "hiroshima", "hiruma": "hiruma", "hispano": "hispano", "historicus": "historicus", "historie": "historie", "historisch": "historisch", "historische": "historisch", "hiswa": "hiswa", "hitachi": "hitachi", "hitste": "hitst", "hitte": "hit", "hittebestendig": "hittebestend", "hittebestendige": "hittebestend", "hittegolf": "hittegolf", "hittevast": "hittevast", "hl": "hl", "hm": "hm", "hmil": "hmil", "hmip": "hmip", "hmso": "hmso", "hnei": "hnei", "ho": "ho", "hobbelgang": "hobbelgang", "hobbocks": "hobbock", "hobby": "hobby", "hobo": "hobo", "hoboken": "hobok", "hobsbawn": "hobsbawn", "hoc": "hoc", "hochtief": "hochtief", "hodgson": "hodgson", "hody": "hody", "hoe": "hoe", "hoè": "hoè", "hoechst": "hoechst", "hoed": "hoed", "hoedanigheden": "hoedan", "hoedanigheid": "hoedan", "hoede": "hoed", "hoeden": "hoed", "hoedje": "hoedj", "hoef": "hoef", "hoefde": "hoefd", "hoefden": "hoefd", "hoefslag": "hoefslag", "hoeft": "hoeft", "hoek": "hoek", "hoeken": "hoek", "hoekhuis": "hoekhuis", "hoekig": "hoekig", "hoekige": "hoekig", "hoekje": "hoekj", "hoekjes": "hoekjes", "hoekraam": "hoekram", "hoeksema": "hoeksema", "hoekstra": "hoekstra", "hoen": "hoen", "hoendiep": "hoendiep", "hoensbroek": "hoensbroek", "hoep": "hoep", "hoepel": "hoepel", "hoera": "hoera", "hoes": "hoes", "hoest": "hoest", "hoeveel": "hoevel", "hoeveelheden": "hoevel", "hoeveelheid": "hoevel", "hoevele": "hoevel", "hoevelen": "hoevel", "hoeven": "hoev", "hoever": "hoever", "hoeverre": "hoeverr", "hoewel": "hoewel", "hoezeer": "hoezer", "hof": "hof", "hòf": "hòf", "hofaristocratie": "hofaristocratie", "hofbal": "hofbal", "hofbals": "hofbal", "hofcostumes": "hofcostumes", "hofcôterie": "hofcôterie", "hoffelijk": "hoffelijk", "hoffelijke": "hoffelijk", "hofje": "hofj", "hofkliek": "hofkliek", "hofkliekje": "hofkliekj", "hofkringen": "hofkring", "hofmaker": "hofmaker", "hofmakerij": "hofmakerij", "hofpleinlijn": "hofpleinlijn", "hoge": "hog", "hogedruk": "hogedruk", "hogedrukhaspel": "hogedrukhaspel", "hogedrukpompen": "hogedrukpomp", "hogedrukwaterstraal": "hogedrukwaterstral", "hogeland": "hogeland", "hoger": "hoger", "hogere": "hoger", "hogers": "hoger", "hogescholen": "hogeschol", "hogescholencomplex": "hogescholencomplex", "hogeschool": "hogeschol", "hogesnelheidslijn": "hogesnelheidslijn", "hogesnelheidslijnen": "hogesnelheidslijn", "hogesnelheidstrein": "hogesnelheidstrein", "hogesnelheidstreinen": "hogesnelheidstrein", "höhn": "hohn", "höhns": "hohn", "hok": "hok", "hokken": "hok", "hokkende": "hokkend", "hokte": "hokt", "hokten": "hokt", "hol": "hol", "hola": "hola", "holco": "holco", "holde": "hold", "holding": "holding", "holdings": "holding", "holec": "holec", "holes": "holes", "holistische": "holistisch", "holkema": "holkema", "holkenborg": "holkenborg", "holland": "holland", "hollander": "hollander", "hollanders": "hollander", "hollandia": "hollandia", "hollands": "holland", "hollandsche": "hollandsch", "hollandse": "holland", "hóllandse": "holland", "hòllandse": "hòlland", "hollandste": "hollandst", "holle": "holl", "hölle": "holl", "hollen": "holl", "holman": "holman", "holstein": "holstein", "holte": "holt", "holten": "holt", "hölter": "holter", "holzmann": "holzmann", "home": "hom", "homepage": "homepag", "homer": "homer", "homerisch": "homerisch", "homerische": "homerisch", "homero": "homero", "homogeen": "homogen", "homogene": "homog", "homogenisering": "homogeniser", "homogeniteit": "homogeniteit", "hond": "hond", "honda": "honda", "hondebrokken": "hondebrok", "honden": "hond", "honderd": "honderd", "honderdduizend": "honderdduiz", "honderdduizenden": "honderdduiz", "honderdduizendste": "honderdduizendst", "honderdduizendvoudige": "honderdduizendvoud", "honderden": "honderd", "honderdjes": "honderdjes", "honderdmaal": "honderdmal", "honderdste": "honderdst", "honderdtachtig": "honderdtacht", "hondje": "hondj", "hondjes": "hondjes", "hondsdolheid": "hondsdol", "hondsdolheidvaccin": "hondsdolheidvaccin", "hondsrug": "hondsrug", "hondt": "hondt", "hong": "hong", "hongarije": "hongarij", "honger": "honger", "hongerige": "honger", "hongerkreet": "hongerkret", "hongkong": "hongkong", "honing": "honing", "honingwafels": "honingwafel", "honolulu": "honolulu", "honorair": "honorair", "honoreren": "honorer", "honorering": "honorer", "honschooten": "honschot", "hoof": "hof", "hoofd": "hoofd", "hoofdaannemer": "hoofdaannemer", "hoofdactiviteiten": "hoofdactiviteit", "hoofdbedrijfschap": "hoofdbedrijfschap", "hoofdbestanddeel": "hoofdbestanddel", "hoofdbestuur": "hoofdbestur", "hoofdcommies": "hoofdcommies", "hoofdcomponenten": "hoofdcomponent", "hoofdconclusie": "hoofdconclusie", "hoofddirecteur": "hoofddirecteur", "hoofddirectie": "hoofddirectie", "hoofddoel": "hoofddoel", "hoofddoelstelling": "hoofddoelstell", "hoofddorp": "hoofddorp", "hoofdeiland": "hoofdeiland", "hoofden": "hoofd", "hoofdfuncties": "hoofdfuncties", "hoofdgroep": "hoofdgroep", "hoofdinspectie": "hoofdinspectie", "hoofdje": "hoofdj", "hoofdkamer": "hoofdkamer", "hoofdkantoor": "hoofdkantor", "hoofdkwartier": "hoofdkwartier", "hoofdleiding": "hoofdleid", "hoofdlijnen": "hoofdlijn", "hoofdontwikkelingen": "hoofdontwikkel", "hoofdoorzaken": "hoofdoorzak", "hoofdpijn": "hoofdpijn", "hoofdprijs": "hoofdprijs", "hoofdproblemen": "hoofdproblem", "hoofdpunten": "hoofdpunt", "hoofdriool": "hoofdriool", "hoofdrol": "hoofdrol", "hoofdschuddend": "hoofdschud", "hoofdschuddende": "hoofdschud", "hoofdschuldigen": "hoofdschuld", "hoofdstad": "hoofdstad", "hoofdstructuur": "hoofdstructur", "hoofdstructuurassen": "hoofdstructuurass", "hoofdstuk": "hoofdstuk", "hoofdstukken": "hoofdstuk", "hoofdtaak": "hoofdtak", "hoofdthema": "hoofdthema", "hoofdtrek": "hoofdtrek", "hoofduitrusting": "hoofduitrust", "hoofdvestiging": "hoofdvest", "hoofdvormen": "hoofdvorm", "hoofdwaterwegen": "hoofdwaterweg", "hoofdwinnaars": "hoofdwinnar", "hoofdzakelijk": "hoofdzak", "hoofdzaken": "hoofdzak", "hooftstraat": "hooftstrat", "hoog": "hog", "hoogachtend": "hoogacht", "hoogbouw": "hoogbouw", "hoogbouwbewoners": "hoogbouwbewoner", "hoogbouwwijken": "hoogbouwwijk", "hooge": "hog", "hoogervorst": "hoogervorst", "hoogeveen": "hoogeven", "hoogezand": "hoogezand", "hoogezands": "hoogezand", "hoogfrequente": "hoogfrequent", "hooggekwalificeerde": "hooggekwalificeerd", "hooggelegen": "hooggeleg", "hooggeplaatste": "hooggeplaatst", "hooggewaardeerde": "hooggewaardeerd", "hoogheemraadschap": "hoogheemraadschap", "hooglanden": "hoogland", "hoogleraar": "hooglerar", "hoogleraren": "hooglerar", "hoogmoed": "hoogmoed", "hoogmoedig": "hoogmoed", "hoogmoedige": "hoogmoed", "hoogmoedsilluzie": "hoogmoedsilluzie", "hoogmoedswaanzin": "hoogmoedswaanzin", "hoogovencement": "hoogovencement", "hoogovengas": "hoogovengas", "hoogovengassen": "hoogovengass", "hoogovens": "hoogoven", "hoogovensterrein": "hoogovensterrein", "hoogradioactief": "hoogradioactief", "hoogrendement": "hoogrendement", "hoogrendements": "hoogrendement", "hoogrendementsketels": "hoogrendementsketel", "hoogrendementsturbines": "hoogrendementsturbines", "hoogs": "hog", "hoogspanningskabel": "hoogspanningskabel", "hoogspanningslijnen": "hoogspanningslijn", "hoogspanningsmasten": "hoogspanningsmast", "hoogspanningsnet": "hoogspanningsnet", "hoogspanningsnetten": "hoogspanningsnet", "hoogst": "hoogst", "hoogstamfruitbomen": "hoogstamfruitbom", "hoogstamvruchtbomen": "hoogstamvruchtbom", "hoogstandjes": "hoogstandjes", "hoogste": "hoogst", "hoogstens": "hoogsten", "hoogstraat": "hoogstrat", "hoogstwaarschijnlijk": "hoogstwaarschijn", "hoogte": "hoogt", "hoogten": "hoogt", "hoogtepunt": "hoogtepunt", "hoogteverschillen": "hoogteverschill", "hooguit": "hooguit", "hoogveen": "hoogven", "hoogveengebieden": "hoogveengebied", "hoogvermogen": "hoogvermog", "hoogvlaktes": "hoogvlaktes", "hoogvliet": "hoogvliet", "hoogwaardig": "hoogwaard", "hoogwaardige": "hoogwaard", "hoogwaardiger": "hoogwaardiger", "hoogwater": "hoogwater", "hoogwaterstand": "hoogwaterstand", "hoogwaterstanden": "hoogwaterstand", "hoogwerker": "hoogwerker", "hooibalen": "hooibal", "hooilanden": "hooiland", "hoop": "hop", "hoopgevend": "hoopgev", "hoopgevende": "hoopgev", "hoopt": "hoopt", "hoopte": "hoopt", "hoopten": "hoopt", "hoopvol": "hoopvol", "hoopvolheden": "hoopvol", "hoor": "hor", "hoorbaar": "hoorbar", "hoorbare": "hoorbar", "hoorbijeenkomsten": "hoorbijeenkomst", "hoorde": "hoord", "hoorden": "hoord", "hoorders": "hoorder", "hoorn": "hoorn", "hoort": "hoort", "hoorzitting": "hoorzit", "hoorzittingen": "hoorzit", "hoos": "hos", "hopeloos": "hopelos", "hopeloosheden": "hopelos", "hopeloosheid": "hopelos", "hopen": "hop", "hopende": "hopend", "hopper": "hopper", "horeca": "horeca", "horecabedrijven": "horecabedrijv", "horecabeleid": "horecabeleid", "horecagelegenheden": "horecageleg", "horecazaak": "horecazak", "horecazaken": "horecazak", "horen": "hor", "horende": "horend", "horizon": "horizon", "horizonnen": "horizonn", "horizontaal": "horizontal", "horizontale": "horizontal", "horizonvervuiling": "horizonvervuil", "horloge": "horlog", "horlogefabrikant": "horlogefabrikant", "hormonen": "hormon", "hormoon": "hormon", "hormoonbeïnvloedende": "hormoonbeinvloed", "hormoongebruik": "hormoongebruik", "hormoonstofwisseling": "hormoonstofwissel", "horni": "horni", "horreurs": "horreur", "horrible": "horribl", "hors": "hor", "horsens": "horsen", "horsmakreel": "horsmakrel", "horst": "horst", "horten": "hort", "hortensius": "hortensius", "hospitaal": "hospital", "hospitalen": "hospital", "hossen": "hoss", "hot": "hot", "hôte": "hôte", "hotel": "hotel", "hôtel": "hôtel", "hôtelkamer": "hôtelkamer", "hotels": "hotel", "hotsende": "hotsend", "hotste": "hotst", "hou": "hou", "houben": "houb", "houd": "houd", "houdbaar": "houdbar", "houdbaarheid": "houdbar", "houdbare": "houdbar", "houden": "houd", "houdend": "houdend", "houdende": "houdend", "houder": "houder", "houderig": "houder", "houderij": "houderij", "houderschapsbelasting": "houderschapsbelast", "houding": "houding", "houdt": "houdt", "houen": "houen", "house": "hous", "household": "household", "housekeeping": "housekep", "housemuziek": "housemuziek", "houseparty": "houseparty", "housing": "housing", "houston": "houston", "hout": "hout", "houtafval": "houtafval", "houtafvalproducenten": "houtafvalproducent", "houtagenturen": "houtagentur", "houtbare": "houtbar", "houtbedrijven": "houtbedrijv", "houtbelegging": "houtbelegg", "houtbewerkende": "houtbewerk", "houtbewerkers": "houtbewerker", "houtblokken": "houtblok", "houtbond": "houtbond", "houtbranche": "houtbranch", "houtcongres": "houtcongres", "houtconserveringsmiddelen": "houtconserveringsmiddel", "houten": "hout", "houterig": "houter", "houtfondsen": "houtfonds", "houthandel": "houthandel", "houthandelaren": "houthandelar", "houthavens": "houthaven", "houthoff": "houthoff", "houtindustrie": "houtindustrie", "houtje": "houtj", "houtkap": "houtkap", "houtkapbedrijven": "houtkapbedrijv", "houtleveranciers": "houtleverancier", "houtloods": "houtlod", "houtman": "houtman", "houtmot": "houtmot", "houtondernemingen": "houtondernem", "houtoogst": "houtoogst", "houtplantages": "houtplantages", "houtpoeder": "houtpoeder", "houtprijzen": "houtprijz", "houtproducenten": "houtproducent", "houtproducerende": "houtproducer", "houtproduktie": "houtproduktie", "houtpulp": "houtpulp", "houtpulpafval": "houtpulpafval", "houtrakpolder": "houtrakpolder", "houtresiduen": "houtresiduen", "houtrijk": "houtrijk", "houtrot": "houtrot", "houtrust": "houtrust", "houtsector": "houtsector", "houtskeletbouw": "houtskeletbouw", "houtskool": "houtskol", "houtsnip": "houtsnip", "houtsnippers": "houtsnipper", "houtstof": "houtstof", "houtstraat": "houtstrat", "houttechnologie": "houttechnologie", "houttong": "houttong", "houtverbrandingsinstallatie": "houtverbrandingsinstallatie", "houtverduurzamer": "houtverduurzamer", "houtverduurzamingsmiddelen": "houtverduurzamingsmiddel", "houtversnipperaar": "houtversnipperar", "houtverwerkend": "houtverwerk", "houtverwerkende": "houtverwerk", "houtverwerking": "houtverwerk", "houtverwerkings": "houtverwerk", "houtvezel": "houtvezel", "houtvezels": "houtvezel", "houtvolume": "houtvolum", "houtvoorraden": "houtvoorrad", "houtvrek": "houtvrek", "houtvrije": "houtvrij", "houtwol": "houtwol", "houtwolplaten": "houtwolplat", "houtzagerijen": "houtzagerij", "houvast": "houvast", "hove": "hov", "hovo": "hovo", "how": "how", "hoyu": "hoyu", "hpe": "hpe", "hplc": "hplc", "hr": "hr", "hse": "hse", "hsl": "hsl", "hsm": "hsm", "hsmo": "hsmo", "hso": "hso", "hsp": "hsp", "html": "html", "hts": "hts", "http": "http", "hu": "hu", "hubert": "hubert", "huddersfield": "huddersfield", "huelva": "huelva", "huenges": "huenges", "huggett": "huggett", "hugo": "hugo", "huibertplaat": "huibertplat", "huichel": "huichel", "huichelen": "huichel", "huid": "huid", "huidartsen": "huidarts", "huidcontact": "huidcontact", "huiden": "huid", "huidfonds": "huidfond", "huidig": "huidig", "huidige": "huidig", "huidirritatie": "huidirritatie", "huidirritaties": "huidirritaties", "huidkanker": "huidkanker", "huidnotatie": "huidnotatie", "huif": "huif", "huig": "huig", "huigen": "huig", "huigje": "huigj", "huil": "huil", "huilbui": "huilbui", "huilde": "huild", "huilen": "huil", "huilend": "huilend", "huilende": "huilend", "huilens": "huilen", "huilogen": "huilog", "huilschreeuw": "huilschreeuw", "huilt": "huilt", "huis": "huis", "huisafval": "huisafval", "huisartsen": "huisarts", "huisbel": "huisbel", "huisblad": "huisblad", "huisbrandolie": "huisbrandolie", "huisbrandolietanks": "huisbrandolietank", "huisdeur": "huisdeur", "huisdieren": "huisdier", "huisdokter": "huisdokter", "huiseigenaren": "huiseigenar", "huiselijk": "huiselijk", "huiselijke": "huiselijk", "huiselijkheid": "huiselijk", "huisgezin": "huisgezin", "huisgezins": "huisgezin", "huishoudafval": "huishoudafval", "huishoudelijk": "huishoud", "huishoudelijke": "huishoud", "huishouden": "huishoud", "huishoudens": "huishouden", "huishoudenstype": "huishoudenstyp", "huishoudentje": "huishoudentj", "huishouding": "huishoud", "huishoudplastic": "huishoudplastic", "huishoudplastics": "huishoudplastic", "huishoudverpakkingen": "huishoudverpak", "huisinterieur": "huisinterieur", "huisjasje": "huisjasj", "huisje": "huisj", "huisjes": "huisjes", "huiskamer": "huiskamer", "huislijke": "huislijk", "huisman": "huisman", "huismijten": "huismijt", "huissen": "huiss", "huissleutel": "huissleutel", "huisstijl": "huisstijl", "huisvesten": "huisvest", "huisvesting": "huisvest", "huisvestingssystemen": "huisvestingssystem", "huisvestte": "huisvest", "huisvriend": "huisvriend", "huisvrouw": "huisvrouw", "huisvrouwen": "huisvrouw", "huisvuil": "huisvuil", "huisvuilcentrale": "huisvuilcentral", "huisvuilcontainer": "huisvuilcontainer", "huisvuilinzamelsysteem": "huisvuilinzamelsystem", "huisvuilscheiding": "huisvuilscheid", "huisvuilverbrandingsinstallaties": "huisvuilverbrandingsinstallaties", "huisvuilwagenopbouw": "huisvuilwagenopbouw", "huisvuilzak": "huisvuilzak", "huisvuilzakken": "huisvuilzak", "huisvuilzakkenfabrieken": "huisvuilzakkenfabriek", "huiswijn": "huiswijn", "huiverde": "huiverd", "huiverden": "huiverd", "huiveren": "huiver", "huiverend": "huiver", "huiverende": "huiver", "huiverends": "huiver", "huiverig": "huiver", "huiverige": "huiver", "huiverigs": "huiver", "huivering": "huiver", "huiveringen": "huiver", "huiveringwekkend": "huiveringwek", "huize": "huiz", "huizen": "huiz", "huizenbezitters": "huizenbezitter", "huizenblok": "huizenblok", "huizende": "huizend", "huizenrij": "huizenrij", "huizes": "huizes", "hulde": "huld", "hulden": "huld", "hulp": "hulp", "hulpbranders": "hulpbrander", "hulpbron": "hulpbron", "hulpbronnen": "hulpbronn", "hulpeloos": "hulpelos", "hulpmiddel": "hulpmiddel", "hulpmiddelen": "hulpmiddel", "hulpprogramma": "hulpprogramma", "hulpstof": "hulpstof", "hulpstoffen": "hulpstoff", "hulpstukken": "hulpstuk", "hulpvaardig": "hulpvaard", "hulpvaardigheid": "hulpvaard", "huls": "hul", "hulst": "hulst", "hultermans": "hulterman", "humaan": "human", "human": "human", "humane": "human", "humanizeert": "humanizeert", "humbug": "humbug", "humeur": "humeur", "humeus": "humeus", "hummelo": "hummelo", "humor": "humor", "humus": "humus", "humusboekhouding": "humusboekhoud", "humusgehalte": "humusgehalt", "humusverhaal": "humusverhal", "hun": "hun", "hùn": "hùn", "hunkemöller": "hunkemoller", "hunne": "hunn", "hunnen": "hunn", "hunner": "hunner", "hunze": "hunz", "hunzedal": "hunzedal", "huren": "hur", "hurks": "hurk", "hurkte": "hurkt", "hûs": "hûs", "huur": "hur", "huurappartementen": "huurappartement", "huurcoupé": "huurcoup", "huurder": "huurder", "huurders": "huurder", "huurhuis": "huurhuis", "huurprijs": "huurprijs", "huurprijzen": "huurprijz", "huurstijging": "huurstijg", "huurt": "huurt", "huurverhoging": "huurverhog", "huurwoningen": "huurwon", "huwde": "huwd", "huwelijk": "huwelijk", "huwelijken": "huwelijk", "huwelijks": "huwelijk", "huwelijksgeluk": "huwelijksgeluk", "huwelijksleven": "huwelijkslev", "huwelijkstoebereidselen": "huwelijkstoebereidsel", "huwen": "huw", "huwlijk": "huwlijk", "huydekoper": "huydekoper", "huygen": "huyg", "huys": "huy", "huzaar": "huzar", "huzaren": "huzar", "huzarenuniform": "huzarenuniform", "hv": "hv", "hybride": "hybrid", "hydraatkristallen": "hydraatkristall", "hydraten": "hydrat", "hydraudyne": "hydraudyn", "hydraulic": "hydraulic", "hydraulics": "hydraulic", "hydraulisch": "hydraulisch", "hydraulische": "hydraulisch", "hydride": "hydrid", "hydrinn": "hydrinn", "hydro": "hydro", "hydrocarbon": "hydrocarbon", "hydrocyclonen": "hydrocyclon", "hydrodynamische": "hydrodynamisch", "hydrofoob": "hydrofob", "hydrogeneren": "hydrogener", "hydrogeologie": "hydrogeologie", "hydrogeoloog": "hydrogeolog", "hydrokraker": "hydrokraker", "hydrologisch": "hydrologisch", "hydrologische": "hydrologisch", "hydroloog": "hydrolog", "hydropiëzo": "hydropiezo", "hydroslide": "hydroslid", "hydroxide": "hydroxid", "hygiëne": "hygien", "hygiëneprodukten": "hygieneprodukt", "hygiënisch": "hygienisch", "hygiënische": "hygienisch", "hygromycine": "hygromycin", "hymne": "hymn", "hyp": "hyp", "hypercar": "hypercar", "hyperfiltratie": "hyperfiltratie", "hypermoderne": "hypermodern", "hypersil": "hypersil", "hypnose": "hypnos", "hypnotisch": "hypnotisch", "hypnotiseerde": "hypnotiseerd", "hypnotizeerde": "hypnotizeerd", "hypnotizeert": "hypnotizeert", "hypnoze": "hypnoz", "hypochloriet": "hypochloriet", "hypochonder": "hypochonder", "hypocriet": "hypocriet", "hypocriete": "hypocriet", "hypotheek": "hypothek", "hypotheekconstructie": "hypotheekconstructie", "hypotheekrente": "hypotheekrent", "hypothese": "hypothes", "hysterie": "hysterie", "hysteriën": "hysterien", "hysterisch": "hysterisch", "i": "i", "iac": "iac", "iaea": "iaea", "ial": "ial", "iba": "iba", "ibc": "ibc", "ibm": "ibm", "ibn": "ibn", "ibs": "ibs", "ic": "ic", "icao": "icao", "iceberg": "iceberg", "ices": "ices", "icf": "icf", "icheme": "ichem", "ici": "ici", "icke": "ick", "icl": "icl", "icova": "icova", "icpaes": "icpaes", "ics": "ics", "id": "id", "idaho": "idaho", "idb": "idb", "ideaal": "ideaal", "ideale": "ideal", "idealist": "idealist", "idealistische": "idealistisch", "ideality": "ideality", "ideas": "ideas", "idee": "idee", "ideeën": "ideeen", "ideële": "idel", "idees": "ides", "idem": "idem", "identiek": "identiek", "identieke": "identiek", "identificatie": "identificatie", "identificatiestudie": "identificatiestudie", "identificatiesysteem": "identificatiesystem", "identificeert": "identificeert", "identificeren": "identificer", "identificerend": "identificer", "identiteit": "identiteit", "ideologische": "ideologisch", "idioot": "idioot", "idiote": "idiot", "idool": "idol", "idstein": "idstein", "idyllisch": "idyllisch", "ie": "ie", "iea": "iea", "iec": "iec", "ieder": "ieder", "iedere": "ieder", "iedereen": "iederen", "iederendaagse": "iederendag", "iemand": "iemand", "iepen": "iep", "iepensterfte": "iepensterft", "iepziekte": "iepziekt", "ierland": "ierland", "ierse": "ier", "iet": "iet", "ièt": "ièt", "iets": "iet", "ièts": "ièt", "ietsje": "ietsj", "ietwat": "ietwat", "if": "if", "ifat": "ifat", "ifest": "ifest", "ignobele": "ignobel", "igt": "igt", "ihc": "ihc", "ii": "ii", "iii": "iii", "ij": "ij", "ijburg": "ijburg", "ijdel": "ijdel", "ijdele": "ijdel", "ijdelheid": "ijdel", "ijdeltuit": "ijdeltuit", "ijide": "ijid", "ijking": "ijking", "ijkstra": "ijkstra", "ijl": "ijl", "ijlblauwe": "ijlblauw", "ijlde": "ijld", "ijlden": "ijld", "ijle": "ijl", "ijlen": "ijl", "ijlende": "ijlend", "ijler": "ijler", "ijlt": "ijlt", "ijmeer": "ijmer", "ijmond": "ijmond", "ijmondgebied": "ijmondgebied", "ijmuiden": "ijmuid", "ijpoort": "ijpoort", "ijs": "ijs", "ijsbreker": "ijsbreker", "ijsdagen": "ijsdag", "ijsdendrieten": "ijsdendriet", "ijselland": "ijselland", "ijskasten": "ijskast", "ijskoud": "ijskoud", "ijskoude": "ijskoud", "ijskristal": "ijskristal", "ijskristallen": "ijskristall", "ijskristalstructuren": "ijskristalstructur", "ijslaag": "ijslag", "ijsland": "ijsland", "ijsmassa": "ijsmassa", "ijsplaten": "ijsplat", "ijspret": "ijspret", "ijsschuursporen": "ijsschuurspor", "ijssel": "ijssel", "ijsseldelta": "ijsseldelta", "ijsselhallen": "ijsselhall", "ijsselland": "ijsselland", "ijsselmeer": "ijsselmer", "ijsselmeerdijken": "ijsselmeerdijk", "ijsselmeergebied": "ijsselmeergebied", "ijsselmeerpolders": "ijsselmeerpolder", "ijsselmeervereniging": "ijsselmeerveren", "ijsselmij": "ijsselmij", "ijsselmuiden": "ijsselmuid", "ijsselstein": "ijsselstein", "ijstijden": "ijstijd", "ijsvrij": "ijsvrij", "ijswolken": "ijswolk", "ijszee": "ijszee", "ijver": "ijver", "ijveren": "ijver", "ijverig": "ijver", "ijverige": "ijver", "ijverzachtig": "ijverzacht", "ijverzucht": "ijverzucht", "ijverzuchten": "ijverzucht", "ijverzuchtig": "ijverzucht", "ijverzuchtige": "ijverzucht", "ijzel": "ijzel", "ijzendoorn": "ijzendoorn", "ijzer": "ijzer", "ijzerchloride": "ijzerchlorid", "ijzerdraad": "ijzerdrad", "ijzeren": "ijzer", "ijzerfabriek": "ijzerfabriek", "ijzerfabrikant": "ijzerfabrikant", "ijzergieterij": "ijzergieterij", "ijzerhoudend": "ijzerhoud", "ijzerhoudende": "ijzerhoud", "ijzerhydroxyde": "ijzerhydroxyd", "ijzermoleculen": "ijzermolecul", "ijzeroxyde": "ijzeroxyd", "ijzerproduktie": "ijzerproduktie", "ijzerrijk": "ijzerrijk", "ijzerverontreiniging": "ijzerverontrein", "ijzig": "ijzig", "ijzige": "ijzig", "ijzigheid": "ijzig", "ijzing": "ijzing", "ik": "ik", "ikb": "ikb", "ikc": "ikc", "ikimi": "ikimi", "ikje": "ikj", "ikp": "ikp", "ikzelf": "ikzelf", "il": "il", "ile": "ile", "iljoesjin": "iljoesjin", "illegaal": "illegal", "illegale": "illegal", "illegaliteit": "illegaliteit", "illinois": "illinois", "illustration": "illustration", "illuzie": "illuzie", "illuzies": "illuzies", "illya": "illya", "im": "im", "ima": "ima", "imag": "imag", "image": "imag", "imago": "imago", "imagocampagne": "imagocampagn", "imagoverbetering": "imagoverbeter", "imd": "imd", "imdmicon": "imdmicon", "imh": "imh", "imitatie": "imitatie", "imitaties": "imitaties", "imitation": "imitation", "imiteren": "imiter", "immateriële": "immateriel", "immens": "immen", "immense": "immen", "immensiteit": "immensiteit", "immers": "immer", "immobilisaat": "immobilisat", "immobilisatie": "immobilisatie", "immobilisatieprocédé": "immobilisatieproced", "immobilisatietechniek": "immobilisatietechniek", "immobilisatietechnieken": "immobilisatietechniek", "immobiliseren": "immobiliser", "immoreels": "immorel", "immunoassay": "immunoassay", "impact": "impact", "impacts": "impact", "impasse": "impas", "imperatieve": "imperatiev", "imperial": "imperial", "imperiale": "imperial", "imperialistische": "imperialistisch", "impertinent": "impertinent", "implementatie": "implementatie", "implementatieprocessen": "implementatieprocess", "implementatieschema": "implementatieschema", "implementatietijd": "implementatietijd", "implementation": "implementation", "implementeren": "implementer", "implicaties": "implicaties", "implications": "implication", "impliceert": "impliceert", "impliciete": "impliciet", "impopulair": "impopulair", "impopulaire": "impopulair", "import": "import", "importaardappelen": "importaardappel", "importeerde": "importeerd", "importeert": "importeert", "importen": "import", "importeren": "importer", "importeur": "importeur", "importeurs": "importeur", "importfirma": "importfirma", "importvergunning": "importvergunn", "imposant": "imposant", "impregneerbedrijven": "impregneerbedrijv", "impregneermiddel": "impregneermiddel", "impregneermidelen": "impregneermidel", "impregneren": "impregner", "improviseren": "improviser", "impuls": "impul", "impulsen": "impuls", "impulsie": "impulsie", "impulsief": "impulsief", "impulsies": "impulsies", "impulsprogramma": "impulsprogramma", "ims": "ims", "imsa": "imsa", "imt": "imt", "in": "in", "inachtneming": "inachtnem", "inactiveren": "inactiver", "inactivering": "inactiver", "inademen": "inadem", "inademing": "inadem", "inadequate": "inadequat", "inauguratie": "inauguratie", "inaugurele": "inaugurel", "inbedden": "inbed", "inbedding": "inbed", "inbedrijfstelling": "inbedrijfstell", "inbegrepen": "inbegrep", "inbegrip": "inbegrip", "inbeslagname": "inbeslagnam", "inbeslagneming": "inbeslagnem", "inbinden": "inbind", "inblazen": "inblaz", "inbo": "inbo", "inboezemde": "inboezemd", "inborst": "inborst", "inbouw": "inbouw", "inbouwen": "inbouw", "inbranding": "inbrand", "inbreiding": "inbreid", "inbrekerszielen": "inbrekersziel", "inbreng": "inbreng", "inbrengen": "inbreng", "inbrengt": "inbrengt", "inbreuk": "inbreuk", "inc": "inc", "incentive": "incentiv", "incentives": "incentives", "incident": "incident", "incidenteel": "incidentel", "incidentele": "incidentel", "incidenten": "incident", "incinerator": "incinerator", "inclusief": "inclusief", "incoherent": "incoherent", "incorporation": "incorporation", "indampen": "indamp", "indamping": "indamp", "indampprocédé": "indampproced", "indapp": "indapp", "indaver": "indaver", "indekken": "indek", "indeling": "indel", "independent": "independent", "inderdaad": "inderdad", "inderson": "inderson", "indertijd": "indertijd", "indes": "indes", "index": "index", "indexcijfers": "indexcijfer", "india": "india", "indiana": "indiana", "indianen": "indian", "indianenstammen": "indianenstamm", "indiase": "indias", "indicatie": "indicatie", "indicatief": "indicatief", "indicaties": "indicaties", "indicatieve": "indicatiev", "indicator": "indicator", "indicatoren": "indicator", "indicatormethode": "indicatormethod", "indië": "indie", "indien": "indien", "indienen": "indien", "indiener": "indiener", "indieners": "indiener", "indiening": "indien", "indieningstermijn": "indieningstermijn", "indiest": "indiest", "indigo": "indigo", "indirect": "indirect", "indirecte": "indirect", "indisch": "indisch", "indische": "indisch", "indiscreet": "indiscret", "individu": "individu", "individueel": "individueel", "individuele": "individuel", "individuen": "individuen", "indofin": "indofin", "indonesia": "indonesia", "indonesië": "indonesie", "indonesische": "indonesisch", "indonor": "indonor", "indringer": "indringer", "indringster": "indringster", "indruk": "indruk", "inductie": "inductie", "inductive": "inductiv", "indumij": "indumij", "industria": "industria", "industrial": "industrial", "industrialisatie": "industrialisatie", "industrie": "industrie", "industriebanden": "industrieband", "industriebond": "industriebond", "industriebonden": "industriebond", "industrieel": "industrieel", "industrieën": "industrieen", "industriegebied": "industriegebied", "industriegebieden": "industriegebied", "industriegigant": "industriegigant", "industriehaven": "industriehav", "industrielanden": "industrieland", "industrielawaai": "industrielawaai", "industriële": "industriel", "industriëlen": "industriel", "industriepolitieke": "industriepolitiek", "industrier": "industrier", "industries": "industries", "industrietak": "industrietak", "industrietakken": "industrietak", "industrieterrein": "industrieterrein", "industrieterreinen": "industrieterrein", "industrievloeren": "industrievloer", "industriewater": "industriewater", "industriewaterproject": "industriewaterproject", "industrieweg": "industrieweg", "industriezand": "industriezand", "industriezandwinning": "industriezandwinn", "industry": "industry", "ineen": "inen", "ineengeschrompeld": "ineengeschrompeld", "ineens": "inen", "ineéns": "inen", "ineenstorten": "ineenstort", "ineenstorting": "ineenstort", "ineffectiviteit": "ineffectiviteit", "inefficiënt": "inefficient", "inefficiëntie": "inefficientie", "inert": "inert", "inerte": "inert", "inertie": "inertie", "inertscheider": "inertscheider", "ines": "ines", "infectie": "infectie", "infectueuze": "infectueuz", "infiltratie": "infiltratie", "infiltratiebesluit": "infiltratiebesluit", "infiltratievoorziening": "infiltratievoorzien", "infiltreren": "infiltrer", "inflatie": "inflatie", "inflow": "inflow", "influences": "influences", "influenza": "influenza", "info": "info", "infocentrum": "infocentrum", "infodisk": "infodisk", "infolijn": "infolijn", "infoline": "infolin", "infomil": "infomil", "informatica": "informatica", "informatie": "informatie", "informatieavond": "informatieavond", "informatiebalk": "informatiebalk", "informatiebank": "informatiebank", "informatiebeleid": "informatiebeleid", "informatiebijeenkomst": "informatiebijeenkomst", "informatiebijeenkomsten": "informatiebijeenkomst", "informatieblad": "informatieblad", "informatiebladen": "informatieblad", "informatiebron": "informatiebron", "informatiebureau": "informatiebureau", "informatiecentrum": "informatiecentrum", "informatiedienst": "informatiedienst", "informatiedrager": "informatiedrager", "informatiefuncties": "informatiefuncties", "informatielijn": "informatielijn", "informatienetwerk": "informatienetwerk", "informatiepakket": "informatiepakket", "informatieplan": "informatieplan", "informatieplicht": "informatieplicht", "informatiepunt": "informatiepunt", "informatiepunten": "informatiepunt", "informatiescherm": "informatiescherm", "informatiestand": "informatiestand", "informatiestructuur": "informatiestructur", "informatiesysteem": "informatiesystem", "informatiesystemen": "informatiesystem", "informatietechnologie": "informatietechnologie", "informatieve": "informatiev", "informatieverkeer": "informatieverker", "informatieversnippering": "informatieversnipper", "informatievoorziening": "informatievoorzien", "information": "information", "informationsdienst": "informationsdienst", "informeel": "informel", "informeerde": "informeerd", "informeert": "informeert", "informele": "informel", "informeren": "informer", "infrarood": "infrarod", "infraroodstralers": "infraroodstraler", "infrastructure": "infrastructur", "infrastructurele": "infrastructurel", "infrastructuur": "infrastructur", "infrastructuurplannen": "infrastructuurplann", "infratech": "infratech", "ing": "ing", "ingaan": "ingan", "ingaande": "ingaand", "ingaat": "ingat", "ingaf": "ingaf", "ingang": "ingang", "ingangsdatum": "ingangsdatum", "ingangsmateriaal": "ingangsmateriaal", "ingeademd": "ingeademd", "ingebed": "ingebed", "ingeblikt": "ingeblikt", "ingebonden": "ingebond", "ingeboren": "ingebor", "ingebouwd": "ingebouwd", "ingebouwde": "ingebouwd", "ingebracht": "ingebracht", "ingebrachte": "ingebracht", "ingebruikname": "ingebruiknam", "ingebruikneming": "ingebruiknem", "ingeburgerd": "ingeburgerd", "ingeburgerde": "ingeburgerd", "ingedeeld": "ingedeeld", "ingediend": "ingedi", "ingediende": "ingedi", "ingedikt": "ingedikt", "ingedrongen": "ingedrong", "ingeeft": "ingeeft", "ingegaan": "ingegan", "ingegeven": "ingegev", "ingegooid": "ingegooid", "ingegraven": "ingegrav", "ingegrepen": "ingegrep", "ingehaald": "ingehaald", "ingehouden": "ingehoud", "ingehuurd": "ingehuurd", "ingekapseld": "ingekapseld", "ingekeken": "ingekek", "ingeklemd": "ingeklemd", "ingekochte": "ingekocht", "ingekrimpte": "ingekrimpt", "ingekrompen": "ingekromp", "ingelast": "ingelast", "ingeleerd": "ingeleerd", "ingelegd": "ingelegd", "ingelegde": "ingelegd", "ingeleverd": "ingeleverd", "ingeleverde": "ingeleverd", "ingelheim": "ingelheim", "ingelicht": "ingelicht", "ingelogd": "ingelogd", "ingelopen": "ingelop", "ingenieur": "ingenieur", "ingenieure": "ingenieur", "ingenieurs": "ingenieur", "ingenieursbedrijf": "ingenieursbedrijf", "ingenieursbureau": "ingenieursbureau", "ingenieursbureaus": "ingenieursbureaus", "ingenieursoplossing": "ingenieursoploss", "ingenomen": "ingenom", "ingepakt": "ingepakt", "ingepast": "ingepast", "ingepland": "ingepland", "ingepompt": "ingepompt", "ingerekend": "ingerek", "ingericht": "ingericht", "ingerichte": "ingericht", "ingeroepen": "ingeroep", "ingeschakeld": "ingeschakeld", "ingeschat": "ingeschat", "ingeschatte": "ingeschat", "ingeschreven": "ingeschrev", "ingeschrompelde": "ingeschrompeld", "ingeslagen": "ingeslag", "ingeslapen": "ingeslap", "ingesluimerd": "ingesluimerd", "ingespannen": "ingespann", "ingespeeld": "ingespeeld", "ingespoten": "ingespot", "ingesteld": "ingesteld", "ingestelde": "ingesteld", "ingestemd": "ingestemd", "ingestompt": "ingestompt", "ingestraalde": "ingestraald", "ingestuurd": "ingestuurd", "ingetekende": "ingetek", "ingetrokken": "ingetrok", "ingeval": "ingeval", "ingevallen": "ingevall", "ingeving": "ingev", "ingevoerd": "ingevoerd", "ingevoerde": "ingevoerd", "ingevuld": "ingevuld", "ingewanden": "ingewand", "ingewikkeld": "ingewikkeld", "ingewikkelde": "ingewikkeld", "ingewikkelder": "ingewikkelder", "ingewilligd": "ingewilligd", "ingewonnen": "ingewonn", "ingeworteld": "ingeworteld", "ingezaaid": "ingezaaid", "ingezameld": "ingezameld", "ingezamelde": "ingezameld", "ingezet": "ingezet", "ingezetenen": "ingezeten", "ingezetenenbelasting": "ingezetenenbelast", "ingezette": "ingezet", "ingezien": "ingezien", "ingeziene": "ingezien", "ingezogen": "ingezog", "ingezonden": "ingezond", "ingezonken": "ingezonk", "ingingen": "inging", "ingolstadt": "ingolstadt", "ingooihoogte": "ingooihoogt", "ingrediënt": "ingredient", "ingrediënten": "ingredient", "ingreep": "ingrep", "ingrepen": "ingrep", "ingrijpen": "ingrijp", "ingrijpend": "ingrijp", "ingrijpende": "ingrijp", "ingrijpt": "ingrijpt", "inhaalslag": "inhaalslag", "inhaalt": "inhaalt", "inhaalverbod": "inhaalverbod", "inhaleerbaar": "inhaler", "inhalen": "inhal", "inhalende": "inhal", "inhaleringsstudies": "inhaleringsstudies", "inhammen": "inhamm", "inheemse": "inhem", "inherent": "inherent", "inhibitie": "inhibitie", "inhield": "inhield", "inhomogeniteiten": "inhomogeniteit", "inhoud": "inhoud", "inhoudelijk": "inhoud", "inhoudelijke": "inhoud", "inhouden": "inhoud", "inhoudende": "inhoud", "inhouding": "inhoud", "inhoudsbeschrijving": "inhoudsbeschrijv", "inhoudsmaat": "inhoudsmat", "inhoudsopgaven": "inhoudsopgav", "inhoudt": "inhoudt", "inhouwt": "inhouwt", "iniatiefnemers": "iniatiefnemer", "initiatief": "initiatief", "initiatiefgroep": "initiatiefgroep", "initiatiefneemster": "initiatiefneemster", "initiatiefnemer": "initiatiefnemer", "initiatiefnemers": "initiatiefnemer", "initiatieven": "initiatiev", "initiative": "initiativ", "initiator": "initiator", "initiële": "initiel", "initiëren": "initier", "injecteert": "injecteert", "injecteren": "injecter", "injectie": "injectie", "injectiedruk": "injectiedruk", "injectiespuiten": "injectiespuit", "injectiesysteem": "injectiesystem", "injection": "injection", "injury": "injury", "ink": "ink", "inkapseling": "inkapsel", "inkijken": "inkijk", "inklappen": "inklapp", "inklinken": "inklink", "inklinking": "inklink", "inkomen": "inkom", "inkomende": "inkom", "inkomens": "inkomen", "inkomenscijfer": "inkomenscijfer", "inkomenscompensatie": "inkomenscompensatie", "inkomensgroei": "inkomensgroei", "inkomensgroepen": "inkomensgroep", "inkomensklasse": "inkomensklas", "inkomensverdeling": "inkomensverdel", "inkomensverlies": "inkomensverlies", "inkomensverschillen": "inkomensverschill", "inkomsten": "inkomst", "inkomstenbelasting": "inkomstenbelast", "inkomstenbetasting": "inkomstenbetast", "inkomsteneffect": "inkomsteneffect", "inkomstenverlies": "inkomstenverlies", "inkoop": "inkop", "inkoopt": "inkoopt", "inkopen": "inkop", "inkopers": "inkoper", "inkrimpen": "inkrimp", "inkrimping": "inkrimp", "inkrimpingen": "inkrimp", "inkromp": "inkromp", "inkruist": "inkruist", "inkt": "inkt", "inkten": "inkt", "inktkoker": "inktkoker", "inktresten": "inktrest", "inktvis": "inktvis", "inla": "inla", "inlaat": "inlat", "inlaatdruk": "inlaatdruk", "inlaatgemaal": "inlaatgemal", "inlaatkanaal": "inlaatkanal", "inlaatlucht": "inlaatlucht", "inlaatmechanisme": "inlaatmechanism", "inlaatpijp": "inlaatpijp", "inlaatschoepen": "inlaatschoep", "inlaatsysteem": "inlaatsystem", "inlands": "inland", "inleg": "inleg", "inleiding": "inleid", "inleven": "inlev", "inleverbakken": "inleverbak", "inleverdata": "inleverdata", "inleveren": "inlever", "inlevering": "inlever", "inlevert": "inlevert", "inlichtingen": "inlicht", "inliepen": "inliep", "inliggende": "inligg", "inloggen": "inlogg", "inloopt": "inloopt", "inmenging": "inmeng", "inmiddels": "inmiddel", "innam": "innam", "inname": "innam", "innamen": "innam", "inneemt": "inneemt", "innemen": "innem", "innemend": "innem", "innemends": "innem", "innen": "inn", "innerlijk": "inner", "innerlijke": "inner", "innerlijkste": "innerlijkst", "innerste": "innerst", "innig": "innig", "innige": "innig", "innigende": "innig", "inniger": "inniger", "innigheid": "innig", "innigjes": "innigjes", "innigste": "innigst", "innovatie": "innovatie", "innovatiecentra": "innovatiecentra", "innovatiecentrum": "innovatiecentrum", "innovatief": "innovatief", "innovatiegericht": "innovatiegericht", "innovatieketen": "innovatieket", "innovatieketens": "innovatieketen", "innovatieproces": "innovatieproces", "innovaties": "innovaties", "innovatiestrategie": "innovatiestrategie", "innovatieve": "innovatiev", "innovation": "innovation", "innovative": "innovativ", "innovator": "innovator", "innovene": "innov", "innoveren": "innover", "innoverende": "innover", "inodes": "inodes", "inofficiële": "inofficiel", "inpakken": "inpak", "inpalmen": "inpalm", "inpasbaar": "inpas", "inpasbaarheid": "inpas", "inpassen": "inpass", "inpassing": "inpass", "inperking": "inperk", "inplaats": "inplat", "inplanten": "inplant", "inpoldering": "inpolder", "inpompen": "inpomp", "inprenten": "inprent", "inprentten": "inprent", "input": "input", "inputs": "input", "inreed": "inred", "inregelen": "inregel", "inregeling": "inregel", "inrichtend": "inricht", "inrichting": "inricht", "inrichtingen": "inricht", "inrichtinggebonden": "inrichtinggebond", "inrichtingsgebonden": "inrichtingsgebond", "inrichtingskosten": "inrichtingskost", "inrichtingsmaterialen": "inrichtingsmaterial", "inrichtingsplan": "inrichtingsplan", "inrichtingsplannen": "inrichtingsplann", "inrichtte": "inricht", "inruilen": "inruil", "inruimen": "inruim", "insaan": "insan", "inschakelen": "inschakel", "inschakelt": "inschakelt", "inschatten": "inschat", "inschatting": "inschat", "inschenken": "inschenk", "inschrijfformulier": "inschrijfformulier", "inschrijven": "inschrijv", "inschrijving": "inschrijv", "inschrijvingen": "inschrijv", "inschrijvingsronde": "inschrijvingsrond", "inschrijvingsrondes": "inschrijvingsrondes", "insecten": "insect", "insecticide": "insecticid", "insecticoat": "insecticoat", "insekten": "insekt", "insektenbestrijdingsmiddel": "insektenbestrijdingsmiddel", "insekticiden": "insekticid", "insekticides": "insekticides", "insi": "insi", "insinuerende": "insinuer", "insipide": "insipid", "insituut": "insitut", "inslaat": "inslat", "inslagen": "inslag", "insliep": "insliep", "insloeg": "insloeg", "insloegen": "insloeg", "insoesde": "insoesd", "inspannen": "inspann", "inspanning": "inspann", "inspanningen": "inspann", "inspecteert": "inspecteert", "inspecteren": "inspecter", "inspecteur": "inspecteur", "inspecteurs": "inspecteur", "inspectie": "inspectie", "inspectiebezoeken": "inspectiebezoek", "inspectiedienst": "inspectiedienst", "inspectiediensten": "inspectiedienst", "inspecties": "inspecties", "inspectietocht": "inspectietocht", "inspector": "inspector", "inspectorate": "inspectorat", "inspeelt": "inspeelt", "inspelen": "inspel", "inspraak": "insprak", "inspraakavond": "inspraakavond", "inspraakprocedure": "inspraakprocedur", "inspraakreactie": "inspraakreactie", "inspraakreacties": "inspraakreacties", "inspraakronde": "inspraakrond", "inspraaktijd": "inspraaktijd", "inspringen": "inspring", "inspuiting": "inspuit", "instaat": "instat", "instabiel": "instabiel", "installateur": "installateur", "installateurs": "installateur", "installateursorganisaties": "installateursorganisaties", "installatie": "installatie", "installatiebedrijven": "installatiebedrijv", "installatiebouwer": "installatiebouwer", "installatiebranche": "installatiebranch", "installatiegereedschappen": "installatiegereedschapp", "installatiekosten": "installatiekost", "installatiemateriaal": "installatiemateriaal", "installatieprodukten": "installatieprodukt", "installaties": "installaties", "installatietechniek": "installatietechniek", "installatietechnisch": "installatietechnisch", "installatietechnische": "installatietechnisch", "installatiewerk": "installatiewerk", "installeer": "installer", "installeerde": "installeerd", "installeert": "installeert", "installeren": "installer", "installering": "installer", "installeurs": "installeur", "instandhouden": "instandhoud", "instandhouding": "instandhoud", "instantie": "instantie", "instanties": "instanties", "instappen": "instapp", "insteek": "instek", "insteekadaptors": "insteekadaptor", "instelbare": "instel", "instellen": "instell", "instelling": "instell", "instellingen": "instell", "instemmen": "instemm", "instemming": "instemm", "instemt": "instemt", "instijgen": "instijg", "instinct": "instinct", "instincten": "instinct", "instinctief": "instinctief", "instinctmatig": "instinctmat", "institituut": "instititut", "institut": "institut", "institüt": "institut", "institute": "institut", "instituten": "institut", "institution": "institution", "institutioneel": "institutionel", "institutionele": "institutionel", "instituut": "institut", "instoppen": "instopp", "instorten": "instort", "instorting": "instort", "instortingsgevaar": "instortingsgevar", "instralende": "instral", "instraling": "instral", "instralingsschijf": "instralingsschijf", "instroom": "instrom", "instructeur": "instructeur", "instructeurs": "instructeur", "instructieregels": "instructieregel", "instructies": "instructies", "instrument": "instrument", "instrumentarium": "instrumentarium", "instrumentatie": "instrumentatie", "instrumentation": "instrumentation", "instrumentele": "instrumentel", "instrumenten": "instrument", "instruments": "instrument", "insturen": "instur", "insurance": "insuranc", "insurances": "insurances", "intact": "intact", "intech": "intech", "intechnium": "intechnium", "inteelt": "inteelt", "integendeel": "integendel", "integraal": "integral", "integrale": "integral", "integrated": "integrated", "integratie": "integratie", "integratieproject": "integratieproject", "integreert": "integreert", "integreren": "integrer", "integrerend": "integrer", "integriteit": "integriteit", "intel": "intel", "intelligent": "intelligent", "intelligente": "intelligent", "intelligentie": "intelligentie", "intelligenties": "intelligenties", "intens": "inten", "intense": "inten", "intenser": "intenser", "intensers": "intenser", "intensief": "intensief", "intensieve": "intensiev", "intensiever": "intensiever", "intensievere": "intensiever", "intensiteit": "intensiteit", "intensive": "intensiv", "intensiveren": "intensiver", "intensivering": "intensiver", "intentie": "intentie", "intenties": "intenties", "intentieverklaring": "intentieverklar", "intentieverklaringen": "intentieverklar", "inter": "inter", "interactie": "interactie", "interactieve": "interactiev", "interaction": "interaction", "interbeton": "interbeton", "interbuild": "interbuild", "intercommunale": "intercommunal", "intercommunales": "intercommunales", "intercontinentale": "intercontinental", "interdepartementaal": "interdepartemental", "interdepartementale": "interdepartemental", "interdisciplinaire": "interdisciplinair", "interduct": "interduct", "interelectra": "interelectra", "interelektra": "interelektra", "interessant": "interessant", "interessante": "interessant", "interessanter": "interessanter", "interesse": "interes", "interesseerde": "interesseerd", "interesseerden": "interesseerd", "interesseert": "interesseert", "interessegebieden": "interessegebied", "interessengemeinschaft": "interessengemeinschaft", "interesseprofiel": "interesseprofiel", "interesseren": "interesser", "interesten": "interest", "interests": "interest", "interfacing": "interfac", "interfacultair": "interfacultair", "interfacultaire": "interfacultair", "interferentie": "interferentie", "intergamma": "intergamma", "intergemeentelijke": "intergemeent", "intergouvernementeel": "intergouvernementel", "intergovernmental": "intergovernmental", "interieur": "interieur", "interim": "interim", "interimbeleid": "interimbeleid", "interimwet": "interimwet", "interkerkelijke": "interkerk", "interleuvenlaan": "interleuvenlan", "interliter": "interliter", "intermediair": "intermediair", "intermediaire": "intermediair", "intermediairen": "intermediair", "intermediairs": "intermediair", "intermitterend": "intermitter", "intermodaal": "intermodal", "intern": "intern", "internalisatie": "internalisatie", "internationaal": "international", "international": "international", "internationale": "international", "internationaler": "internationaler", "internationalisatieproces": "internationalisatieproces", "internationalisering": "internationaliser", "internationaliteit": "internationaliteit", "interne": "intern", "internet": "internet", "internetadressen": "internetadress", "interpolis": "interpolis", "interpretatie": "interpretatie", "interpretaties": "interpretaties", "interpreteren": "interpreter", "interprise": "interpris", "interprovinciaal": "interprovinciaal", "interprovinciale": "interprovincial", "interreg": "interreg", "interstate": "interstat", "interval": "interval", "interventie": "interventie", "interventiewaarde": "interventiewaard", "interventiewaarden": "interventiewaard", "interview": "interview", "interviewen": "interview", "interviews": "interview", "interzuid": "interzuid", "intexo": "intexo", "intiem": "intiem", "intieme": "intiem", "intiemer": "intiemer", "intiemere": "intiemer", "intiems": "intiem", "intiemst": "intiemst", "intimiteit": "intimiteit", "intituut": "intitut", "into": "into", "intomart": "intomart", "intonatie": "intonatie", "intonatiën": "intonatien", "intradel": "intradel", "intramurale": "intramural", "intrappen": "intrapp", "intree": "intree", "intreerede": "intreered", "intrek": "intrek", "intrekgebied": "intrekgebied", "intrekken": "intrek", "intrekking": "intrek", "intrekt": "intrekt", "intrigante": "intrigant", "intrigeert": "intrigeert", "intrigeren": "intriger", "intrigue": "intrigue", "intrillen": "intrill", "introduceerde": "introduceerd", "introduceert": "introduceert", "introduceren": "introducer", "introductie": "introductie", "introducties": "introducties", "introk": "introk", "intron": "intron", "intstitute": "intstitut", "intuïtie": "intuitie", "intuïtief": "intuitief", "intuïtieve": "intuitiev", "intussen": "intuss", "inval": "inval", "invallen": "invall", "invallende": "invall", "invasie": "invasie", "invent": "invent", "inventaris": "inventaris", "inventarisatie": "inventarisatie", "inventarisatiefase": "inventarisatiefas", "inventarisaties": "inventarisaties", "inventarisatiewerk": "inventarisatiewerk", "inventariseert": "inventariseert", "inventariseren": "inventariser", "inventariserend": "inventariser", "inventory": "inventory", "inverters": "inverter", "invest": "invest", "investeerde": "investeerd", "investeerden": "investeerd", "investeerder": "investeerder", "investeerders": "investeerder", "investeert": "investeert", "investeren": "invester", "investering": "invester", "investeringen": "invester", "investerings": "invester", "investeringsaftrek": "investeringsaftrek", "investeringsbank": "investeringsbank", "investeringsbeslissingen": "investeringsbesliss", "investeringsbesteding": "investeringsbested", "investeringsklimaat": "investeringsklimat", "investeringskosten": "investeringskost", "investeringsland": "investeringsland", "investeringsmiddelen": "investeringsmiddel", "investeringsmogelijkheden": "investeringsmog", "investeringspiek": "investeringspiek", "investeringspolitiek": "investeringspolitiek", "investeringsprogramma": "investeringsprogramma", "investeringsraming": "investeringsram", "investeringsruimte": "investeringsruimt", "investeringsschade": "investeringsschad", "investeringssubsidie": "investeringssubsidie", "investeringssubsidieregeling": "investeringssubsidieregel", "investeringssubsidies": "investeringssubsidies", "investeringstermijn": "investeringstermijn", "investitionsbank": "investitionsbank", "investment": "investment", "investments": "investment", "invitatie": "invitatie", "invitaties": "invitaties", "invite": "invit", "invité": "invit", "inviteerde": "inviteerd", "inviteerden": "inviteerd", "inviteert": "inviteert", "inviteren": "inviter", "invités": "invites", "invloed": "invloed", "invloeden": "invloed", "invloedrijk": "invloedrijk", "invloedrijke": "invloedrijk", "invoer": "invoer", "invoeren": "invoer", "invoering": "invoer", "invoeringstraject": "invoeringstraject", "invoert": "invoert", "invoerverbod": "invoerverbod", "invriesprocedures": "invriesprocedures", "invriezen": "invriez", "invullen": "invull", "invulling": "invull", "invult": "invult", "inwendig": "inwend", "inwendige": "inwend", "inwerkingstelling": "inwerkingstell", "inwerkingtreding": "inwerkingtred", "inwerphoogte": "inwerphoogt", "inwerppunt": "inwerppunt", "inwilliging": "inwill", "inwinnen": "inwinn", "inwonen": "inwon", "inwoner": "inwoner", "inwoners": "inwoner", "inwonertal": "inwonertal", "inwoonde": "inwoond", "inwoonden": "inwoond", "inzag": "inzag", "inzage": "inzag", "inzagen": "inzag", "inzake": "inzak", "inzakken": "inzak", "inzakkende": "inzak", "inzamel": "inzamel", "inzamelaar": "inzamelar", "inzamelaars": "inzamelar", "inzamelbakken": "inzamelbak", "inzamelcontainers": "inzamelcontainer", "inzameldienst": "inzameldienst", "inzamelen": "inzamel", "inzamelfrequentie": "inzamelfrequentie", "inzameling": "inzamel", "inzamelings": "inzamel", "inzamelingscijfer": "inzamelingscijfer", "inzamelingskosten": "inzamelingskost", "inzamelingsoperatie": "inzamelingsoperatie", "inzamelingsplan": "inzamelingsplan", "inzamelingsplicht": "inzamelingsplicht", "inzamelingspunten": "inzamelingspunt", "inzamelingsregeling": "inzamelingsregel", "inzamelingsstructuur": "inzamelingsstructur", "inzamelingssysteem": "inzamelingssystem", "inzamelingssystemen": "inzamelingssystem", "inzamelingssyteem": "inzamelingssytem", "inzamelingsysteem": "inzamelingsystem", "inzamelpersoneel": "inzamelpersonel", "inzamelplaatsen": "inzamelplaats", "inzamelplicht": "inzamelplicht", "inzamelplichtgebied": "inzamelplichtgebied", "inzamelpunt": "inzamelpunt", "inzamelpunten": "inzamelpunt", "inzamelrechtgebied": "inzamelrechtgebied", "inzamelstations": "inzamelstation", "inzamelstructuren": "inzamelstructur", "inzamelstructuur": "inzamelstructur", "inzamelsysteem": "inzamelsystem", "inzamelsystemen": "inzamelsystem", "inzamelvergunning": "inzamelvergunn", "inzamelvoertuig": "inzamelvoertu", "inzamelwijze": "inzamelwijz", "inzaten": "inzat", "inzenden": "inzend", "inzenders": "inzender", "inzendingen": "inzend", "inzendtermijn": "inzendtermijn", "inzet": "inzet", "inzetbaar": "inzet", "inzetbare": "inzet", "inzetbeperkende": "inzetbeperk", "inzetten": "inzet", "inzicht": "inzicht", "inzichtelijk": "inzicht", "inzichten": "inzicht", "inziek": "inziek", "inzien": "inzien", "inziet": "inziet", "inzinking": "inzink", "ion": "ion", "ionen": "ion", "ionenuitwisselingstechnologie": "ionenuitwisselingstechnologie", "ionenwisselaar": "ionenwisselar", "ionenwisselaarhars": "ionenwisselaarhar", "ionenwisselaars": "ionenwisselar", "ionenwisseling": "ionenwissel", "ionisatie": "ionisatie", "ionisatiebeveiliging": "ionisatiebeveil", "ioniseert": "ioniseert", "ioniseren": "ioniser", "ioniserende": "ioniser", "ionwisselaars": "ionwisselar", "ioo": "ioo", "iop": "iop", "iowa": "iowa", "ip": "ip", "ipc": "ipc", "ipcc": "ipcc", "ipo": "ipo", "ippc": "ippc", "ir": "ir", "iraakse": "irak", "iraanse": "iran", "irak": "irak", "iran": "iran", "iredale": "iredal", "irian": "irian", "iris": "iris", "irizeerde": "irizeerd", "ironbridge": "ironbridg", "ironie": "ironie", "ironieën": "ironieen", "ironisch": "ironisch", "ironische": "ironisch", "irreëel": "irreeel", "irrigatie": "irrigatie", "irrigatieplan": "irrigatieplan", "irrigatiesysteem": "irrigatiesystem", "irritatie": "irritatie", "irriteren": "irriter", "irvine": "irvin", "is": "is", "isbn": "isbn", "isc": "isc", "isco": "isco", "iserief": "iserief", "iserlohner": "iserlohner", "isermann": "isermann", "ises": "ises", "isev": "isev", "isidore": "isidor", "isla": "isla", "islam": "islam", "islamitische": "islamitisch", "island": "island", "islands": "island", "iso": "iso", "isobend": "isob", "isocratische": "isocratisch", "isoflachs": "isoflach", "isolatie": "isolatie", "isolatiebedrijven": "isolatiebedrijv", "isolatiebelasting": "isolatiebelast", "isolatiekuur": "isolatiekur", "isolatiemaatregelen": "isolatiemaatregel", "isolatiemateriaal": "isolatiemateriaal", "isolatiematerialen": "isolatiematerial", "isolatiematerialenfabriek": "isolatiematerialenfabriek", "isolatiemiddel": "isolatiemiddel", "isolatiepaneel": "isolatiepanel", "isolatieplaat": "isolatieplat", "isolatieplaten": "isolatieplat", "isolatieschuim": "isolatieschuim", "isolatievermogen": "isolatievermog", "isolatievoorziening": "isolatievoorzien", "isolatievoorzieningen": "isolatievoorzien", "isolatiewaarde": "isolatiewaard", "isolatiewerk": "isolatiewerk", "isolatiewinst": "isolatiewinst", "isolator": "isolator", "isolatoren": "isolator", "isolde": "isold", "isoleer": "isoler", "isoleert": "isoleert", "isoleren": "isoler", "isolerend": "isoler", "isolerende": "isoler", "isolering": "isoler", "isomeren": "isomer", "isopropylalcohol": "isopropylalcohol", "isoproturon": "isoproturon", "isotoop": "isotop", "isotopen": "isotop", "isover": "isover", "isp": "isp", "isphording": "isphord", "israel": "israel", "israël": "israel", "israëlische": "israelisch", "isso": "isso", "issues": "issues", "istanbul": "istanbul", "istha": "istha", "iswa": "iswa", "it": "it", "italiaan": "italiaan", "italiaans": "italiaan", "italiaanse": "italiaan", "italianen": "italian", "italië": "italie", "itc": "itc", "item": "item", "items": "item", "iterson": "iterson", "itho": "itho", "itochu": "itochu", "itteren": "itter", "iucn": "iucn", "iv": "iv", "ivam": "ivam", "iveco": "iveco", "ivm": "ivm", "ivms": "ivm", "ivo": "ivo", "ivoor": "ivor", "ivoorsmokkel": "ivoorsmokkel", "ivoortintig": "ivoortint", "ivoren": "ivor", "ivorig": "ivor", "ivorige": "ivor", "ivorigjes": "ivorigjes", "iwaco": "iwaco", "iwex": "iwex", "iww": "iww", "ix": "ix", "izopol": "izopol", "j": "j", "ja": "ja", "jaa": "jaa", "jaagden": "jaagd", "jaagt": "jaagt", "jaap": "jap", "jaaps": "jap", "jaar": "jar", "jaarabonnement": "jaarabonnement", "jaarbasis": "jaarbasis", "jaarbeurs": "jaarbeur", "jaarboek": "jaarboek", "jaarcijfers": "jaarcijfer", "jaarcongres": "jaarcongres", "jaardotatie": "jaardotatie", "jaardotaties": "jaardotaties", "jaáren": "jar", "jaargemiddeld": "jaargemiddeld", "jaargemiddelde": "jaargemiddeld", "jaarkaart": "jaarkaart", "jaarlijke": "jaarlijk", "jaarlijks": "jaarlijk", "jaarlijkse": "jaarlijk", "jaaromzet": "jaaromzet", "jaarprijs": "jaarprijs", "jaarproduktie": "jaarproduktie", "jaarrapport": "jaarrapport", "jaarrapportage": "jaarrapportag", "jaarrede": "jaarred", "jaarrekening": "jaarreken", "jaarresultaat": "jaarresultat", "jaars": "jar", "jaarverbruik": "jaarverbruik", "jaarvergadering": "jaarvergader", "jaarverslag": "jaarverslag", "jaarverslagen": "jaarverslag", "jablokov": "jablokov", "jacht": "jacht", "jachtbouw": "jachtbouw", "jachtbui": "jachtbui", "jachtfonds": "jachtfond", "jachthaven": "jachthav", "jachthavens": "jachthaven", "jachtlobby": "jachtlobby", "jachtseizoen": "jachtseizoen", "jachtverbod": "jachtverbod", "jachtvereniging": "jachtveren", "jachtwet": "jachtwet", "jack": "jack", "jackson": "jackson", "jacob": "jacob", "jacques": "jacques", "jacquet": "jacquet", "jagen": "jag", "jagende": "jagend", "jager": "jager", "jagers": "jager", "jagt": "jagt", "jahr": "jahr", "jaitske": "jaitsk", "jakarta": "jakarta", "jakob": "jakob", "jalen": "jal", "jaloers": "jaloer", "jaloersheid": "jaloers", "jaloezie": "jaloezie", "jalouzie": "jalouzie", "jalouzieën": "jalouzieen", "jam": "jam", "james": "james", "jammer": "jammer", "jammerde": "jammerd", "jammerden": "jammerd", "jammergenoeg": "jammergenoeg", "jammerlijk": "jammer", "jan": "jan", "janeiro": "janeiro", "jangtse": "jangt", "janse": "jan", "jansen": "jans", "janssen": "janss", "jantje": "jantj", "januari": "januari", "japan": "japan", "japanners": "japanner", "japans": "japan", "japanse": "japan", "japon": "japon", "japonnen": "japonn", "japonnetje": "japonnetj", "japonnetjes": "japonnetjes", "jaren": "jar", "járen": "jar", "jarenlang": "jarenlang", "jarenlange": "jarenlang", "jarig": "jarig", "jarige": "jarig", "jarosiet": "jarosiet", "jas": "jas", "jasje": "jasj", "jasjes": "jasjes", "jasper": "jasper", "jassen": "jass", "java": "java", "javaanse": "javan", "javastraat": "javastrat", "jawel": "jawel", "jaya": "jaya", "je": "je", "jé": "je", "jean": "jean", "jeanselmei": "jeanselmei", "jefferson": "jefferson", "jegens": "jegen", "jeltsin": "jeltsin", "jenz": "jenz", "jerevan": "jerevan", "jerofejev": "jerofejev", "jerry": "jerry", "jersey": "jersey", "jerusalem": "jerusalem", "jeruzalem": "jeruzalem", "jet": "jet", "jetje": "jetj", "jetson": "jetson", "jeude": "jeud", "jeugd": "jeugd", "jeugdige": "jeugdig", "jeuk": "jeuk", "jeukte": "jeukt", "jezelf": "jezelf", "jezelve": "jezelv", "jg": "jg", "ji": "ji", "jia": "jia", "jichtig": "jichtig", "jichtige": "jichtig", "jij": "jij", "jo": "jo", "joanknecht": "joanknecht", "joden": "jod", "jodium": "jodium", "joeg": "joeg", "joegen": "joeg", "joegoslavië": "joegoslavie", "joei": "joei", "joelden": "joeld", "joh": "joh", "johan": "johan", "johannes": "johannes", "johans": "johan", "john": "john", "johnson": "johnson", "joint": "joint", "joke": "jok", "jokt": "jokt", "jokte": "jokt", "jolig": "jolig", "jolige": "jolig", "jón": "jon", "jones": "jones", "jong": "jong", "jòng": "jòng", "jongblauwe": "jongblauw", "jonge": "jong", "jònge": "jònge", "jongeheer": "jongeher", "jongelui": "jongelui", "jongemeisjesdromen": "jongemeisjesdrom", "jongen": "jong", "jòngen": "jòngen", "jongens": "jongen", "jongensgebaren": "jongensgebar", "jongensgezicht": "jongensgezicht", "jongenshaat": "jongenshat", "jongenshand": "jongenshand", "jongenshanden": "jongenshand", "jongensjaren": "jongensjar", "jongenskamer": "jongenskamer", "jongenskamertje": "jongenskamertj", "jongenslach": "jongenslach", "jongensleven": "jongenslev", "jongenslippen": "jongenslipp", "jongensnagels": "jongensnagel", "jongensogen": "jongensog", "jongensreden": "jongensred", "jongensspelen": "jongensspel", "jongensspraak": "jongenssprak", "jongenstijd": "jongenstijd", "jongenstwist": "jongenstwist", "jongensverliefdheid": "jongensverliefd", "jongenswoord": "jongenswoord", "jongensziel": "jongensziel", "jonger": "jonger", "jongere": "jonger", "jongerë": "jonger", "jongeren": "jonger", "jongerenorganisaties": "jongerenorganisaties", "jongerenraad": "jongerenrad", "jongerenreferendum": "jongerenreferendum", "jongerius": "jongerius", "jongetje": "jongetj", "jongetjes": "jongetjes", "jongevee": "jongevee", "jongh": "jongh", "jongkind": "jongkind", "jongmens": "jongmen", "jongs": "jong", "jongske": "jongsk", "jongste": "jongst", "jongsten": "jongst", "jongvee": "jongvee", "jongveebezetting": "jongveebezet", "jonker": "jonker", "jonkheer": "jonkher", "jood": "jod", "joost": "joost", "jordaan": "jordan", "jordanië": "jordanie", "jorritsma": "jorritsma", "jos": "jos", "joseph": "joseph", "joséphine": "josephin", "jospin": "jospin", "jou": "jou", "joule": "joul", "joules": "joules", "jour": "jour", "joure": "jour", "journal": "journal", "journalist": "journalist", "journalisten": "journalist", "journalistiek": "journalistiek", "jours": "jour", "jouw": "jouw", "jouwe": "jouw", "joviaal": "joviaal", "joviale": "jovial", "jovialerig": "jovialer", "jovialiteit": "jovialiteit", "jubelde": "jubeld", "jubelend": "jubel", "jubelende": "jubel", "jubileum": "jubileum", "jubileumbijeenkomst": "jubileumbijeenkomst", "jubileumboek": "jubileumboek", "jubileumcongres": "jubileumcongres", "juf": "juf", "juffershondje": "juffershondj", "juffrouw": "juffrouw", "juffrouwen": "juffrouw", "jui": "jui", "juichen": "juich", "juichende": "juichend", "juicht": "juicht", "juichte": "juicht", "juist": "juist", "juiste": "juist", "juistheid": "juistheid", "juk": "juk", "jukbeenderen": "jukbeender", "juli": "juli", "julianakanaal": "julianakanal", "jülich": "julich", "julio": "julio", "julius": "julius", "jullie": "jullie", "juni": "juni", "junior": "junior", "junk": "junk", "junne": "junn", "junta": "junta", "jupiter": "jupiter", "juppé": "jupp", "jureert": "jureert", "jürgens": "jurgen", "juridisch": "juridisch", "juridische": "juridisch", "jurisprudentie": "jurisprudentie", "juristen": "jurist", "jury": "jury", "jus": "jus", "justitie": "justitie", "justitiële": "justitiel", "juten": "jut", "jutland": "jutland", "juwelen": "juwel", "jwc": "jwc", "k": "k", "ka": "ka", "kaaiman": "kaaiman", "kaalkopibis": "kaalkopibis", "kaalkopibissen": "kaalkopibiss", "kaapse": "kap", "kaapstad": "kaapstad", "kaars": "kar", "kaarsen": "kaars", "kaarsjes": "kaarsjes", "kaarsrecht": "kaarsrecht", "kaarsvlam": "kaarsvlam", "kaart": "kaart", "kaarten": "kaart", "kaartje": "kaartj", "kaartjes": "kaartjes", "kaartspelen": "kaartspel", "kaartspelende": "kaartspel", "kaas": "kas", "kaascoating": "kaascoat", "kaasfabriek": "kaasfabriek", "kaasproduktie": "kaasproduktie", "kaasstremsel": "kaasstremsel", "kaaswei": "kaaswei", "kaatsende": "kaatsend", "kaatsheuvel": "kaatsheuvel", "kaatsten": "kaatst", "kab": "kab", "kabaai": "kabaai", "kabbelden": "kabbeld", "kabel": "kabel", "kabelafval": "kabelafval", "kabelbranden": "kabelbrand", "kabeljauw": "kabeljauw", "kabeljauwachtigen": "kabeljauwacht", "kabeljauwvangsten": "kabeljauwvangst", "kabels": "kabel", "kabelschroot": "kabelschrot", "kabeltelevisie": "kabeltelevisie", "kabinet": "kabinet", "kabinetje": "kabinetj", "kabinetsakkoord": "kabinetsakkoord", "kabinetsbeleid": "kabinetsbeleid", "kabinetsbesluit": "kabinetsbesluit", "kabinetsnota": "kabinetsnota", "kabinetsperiode": "kabinetsperiod", "kabinetsplan": "kabinetsplan", "kabinetsplannen": "kabinetsplann", "kabinetsvoorstel": "kabinetsvoorstel", "kabinetsvoorstellen": "kabinetsvoorstell", "kabinetten": "kabinet", "kachel": "kachel", "kachelgebruik": "kachelgebruik", "kachels": "kachel", "kadaster": "kadaster", "kadavers": "kadaver", "kade": "kad", "kademuren": "kademur", "kademuur": "kademur", "kaden": "kad", "kadeplan": "kadeplan", "kadeplannen": "kadeplann", "kader": "kader", "kaderbesluit": "kaderbesluit", "kaderplan": "kaderplan", "kaderprogramma": "kaderprogramma", "kaderrichtlijn": "kaderrichtlijn", "kaders": "kader", "kaderwetgeving": "kaderwetgev", "kades": "kades", "kadet": "kadet", "kadir": "kadir", "kaiser": "kaiser", "kaiserslautern": "kaiserslautern", "kajuitzeilschip": "kajuitzeilschip", "kakelden": "kakeld", "kaken": "kak", "kale": "kal", "kaleidoscoop": "kaleidoscop", "kalen": "kal", "kalende": "kalend", "kalenderpanden": "kalenderpand", "kalfsvleesproducenten": "kalfsvleesproducent", "kalibro": "kalibro", "kalimantan": "kalimantan", "kalimijn": "kalimijn", "kalis": "kalis", "kalium": "kalium", "kaliumnitraat": "kaliumnitrat", "kalk": "kalk", "kalkafzetting": "kalkafzet", "kalkammonsalpeter": "kalkammonsalpeter", "kalkar": "kalkar", "kalkdam": "kalkdam", "kalkgestreepte": "kalkgestreept", "kalkoplossing": "kalkoploss", "kalkrijk": "kalkrijk", "kalkrijke": "kalkrijk", "kalksplitreactor": "kalksplitreactor", "kalksteen": "kalksten", "kalksteenzand": "kalksteenzand", "kalkzandindustrie": "kalkzandindustrie", "kalkzandsteen": "kalkzandsten", "kalkzandsteenelementen": "kalkzandsteenelement", "kalkzandsteenindustrie": "kalkzandsteenindustrie", "kalm": "kalm", "kalme": "kalm", "kalmeerde": "kalmeerd", "kalmeert": "kalmeert", "kalmer": "kalmer", "kalmere": "kalmer", "kalmeren": "kalmer", "kalmerend": "kalmer", "kalmers": "kalmer", "kalms": "kalm", "kalmte": "kalmt", "kalterbroeken": "kalterbroek", "kalveren": "kalver", "kalvermest": "kalvermest", "kalverslachterij": "kalverslachterij", "kam": "kam", "kameel": "kamel", "kamenier": "kamenier", "kamer": "kamer", "kameraad": "kamerad", "kameraadjes": "kameraadjes", "kameraden": "kamerad", "kameratmosfeer": "kameratmosfer", "kamercommissie": "kamercommissie", "kamerdebat": "kamerdebat", "kamerdeur": "kamerdeur", "kamerdeuren": "kamerdeur", "kamerfractie": "kamerfractie", "kamerfracties": "kamerfracties", "kamergordijnen": "kamergordijn", "kamerheer": "kamerher", "kamerleden": "kamerled", "kamerlid": "kamerlid", "kamerlucht": "kamerlucht", "kamermeerderheid": "kamermeerder", "kamernacht": "kamernacht", "kamerpeinzing": "kamerpeinz", "kamers": "kamer", "kamerstuk": "kamerstuk", "kamertemperatuur": "kamertemperatur", "kamertje": "kamertj", "kamervragen": "kamervrag", "kamerwand": "kamerwand", "kamerwanden": "kamerwand", "kamgras": "kamgras", "kamminga": "kamminga", "kamp": "kamp", "kampen": "kamp", "kamperland": "kamperland", "kampioen": "kampioen", "kampt": "kampt", "kan": "kan", "kanaal": "kanal", "kanaalstromingen": "kanaalstrom", "kanaaltjes": "kanaaltjes", "kanaaltunnel": "kanaaltunnel", "kanaalwater": "kanaalwater", "kanalen": "kanal", "kanamycine": "kanamycin", "kanarie": "kanarie", "kandidaat": "kandidat", "kandidaten": "kandidat", "kandjeng": "kandjeng", "kanjers": "kanjer", "kanker": "kanker", "kankerbestrijding": "kankerbestrijd", "kankeren": "kanker", "kankergevallen": "kankergevall", "kankermechanismes": "kankermechanismes", "kankerrisico": "kankerrisico", "kankers": "kanker", "kankersoorten": "kankersoort", "kankerverwekkend": "kankerverwek", "kankerverwekkende": "kankerverwek", "kankerverwekkendheid": "kankerverwek", "kankerverwekkers": "kankerverwekker", "kannen": "kann", "kannibalen": "kannibal", "kanon": "kanon", "kanonknallende": "kanonknall", "kans": "kan", "kansai": "kansai", "kansen": "kans", "kansrijk": "kansrijk", "kansrijke": "kansrijk", "kant": "kant", "kantelt": "kantelt", "kanten": "kant", "kantje": "kantj", "kantjes": "kantjes", "kantomkapte": "kantomkapt", "kantons": "kanton", "kantoor": "kantor", "kantoorapparatuur": "kantoorapparatur", "kantoorautomatisering": "kantoorautomatiser", "kantoorgebouw": "kantoorgebouw", "kantoorgebouwen": "kantoorgebouw", "kantoormedewerker": "kantoormedewerker", "kantoorpand": "kantoorpand", "kantoorpapier": "kantoorpapier", "kantoorruimte": "kantoorruimt", "kantoorstoel": "kantoorstoel", "kantooruren": "kantoorur", "kantoren": "kantor", "kantorencomplex": "kantorencomplex", "kantstrooiers": "kantstrooier", "kanttekening": "kantteken", "kanttekeningen": "kantteken", "kap": "kap", "kapaanvraag": "kapaanvrag", "kapel": "kapel", "kapellen": "kapell", "kaping": "kaping", "kapitaal": "kapital", "kapitaalgoederen": "kapitaalgoeder", "kapitaalkosten": "kapitaalkost", "kapitaalkrachtige": "kapitaalkracht", "kapitaalmarkt": "kapitaalmarkt", "kapitaalverlies": "kapitaalverlies", "kapitaalvernietiging": "kapitaalverniet", "kapitaalverschaffing": "kapitaalverschaff", "kapitale": "kapital", "kapitaliseren": "kapitaliser", "kapitalist": "kapitalist", "kapitalisten": "kapitalist", "kaplengte": "kaplengt", "kapot": "kapot", "kapotgaan": "kapotgan", "kapotgevroren": "kapotgevror", "kapotje": "kapotj", "kapotte": "kapot", "kappen": "kapp", "kapper": "kapper", "kappers": "kapper", "kapselt": "kapselt", "kapstok": "kapstok", "kapvergunning": "kapvergunn", "kapvlakten": "kapvlakt", "kar": "kar", "karaffen": "karaff", "karakter": "karakter", "karakteriseert": "karakteriseert", "karakteriseren": "karakteriser", "karakterisering": "karakteriser", "karakteriseringen": "karakteriser", "karakteristieke": "karakteristiek", "karakters": "karakter", "karavanen": "karavan", "karel": "karel", "kárel": "karel", "karels": "karel", "karen": "kar", "karimov": "karimov", "karin": "karin", "karlsruhe": "karlsruh", "karretje": "karretj", "karretjes": "karretjes", "kartelde": "karteld", "karton": "karton", "kartonactiviteiten": "kartonactiviteit", "kartonafval": "kartonafval", "kartonbranche": "kartonbranch", "kartonfabrieken": "kartonfabriek", "kartonfabrikage": "kartonfabrikag", "kartonindustrie": "kartonindustrie", "kartonnagebedrijven": "kartonnagebedrijv", "kartonnen": "kartonn", "kartonproducent": "kartonproducent", "kartonproducenten": "kartonproducent", "kartonrecyclinginstallatie": "kartonrecyclinginstallatie", "kartonverkleiner": "kartonverkleiner", "kartonverpakkers": "kartonverpakker", "karwats": "karwat", "karwatsen": "karwats", "karwei": "karwei", "kas": "kas", "kasklimaat": "kasklimat", "kaspische": "kaspisch", "kasproject": "kasproject", "kassa": "kassa", "kassel": "kassel", "kassen": "kass", "kassengebieden": "kassengebied", "kassian": "kassian", "kassla": "kassla", "kast": "kast", "kastanje": "kastanj", "kastanjebomen": "kastanjebom", "kaste": "kast", "kasteel": "kastel", "kasteelt": "kasteelt", "kasteelten": "kasteelt", "kastelen": "kastel", "kasten": "kast", "kastenkabinet": "kastenkabinet", "kastenkamer": "kastenkamer", "kastoestand": "kastoestand", "kastrup": "kastrup", "kasverwarmingsproject": "kasverwarmingsproject", "kat": "kat", "katalysator": "katalysator", "katalysatoren": "katalysator", "katalysatorvolume": "katalysatorvolum", "katalytisch": "katalytisch", "katalytische": "katalytisch", "kathedraal": "kathedral", "kathode": "kathod", "katholieke": "katholiek", "kationische": "kationisch", "katje": "katj", "katoen": "katoen", "katoenen": "katoen", "katoenproducent": "katoenproducent", "katoenspinnerij": "katoenspinnerij", "katoenteelt": "katoenteelt", "katoentextiel": "katoentextiel", "katowice": "katowic", "katten": "kat", "katterig": "katter", "kattesnorren": "kattesnorr", "katwijk": "katwijk", "kauwen": "kauw", "kauwgom": "kauwgom", "kavb": "kavb", "kavelruil": "kavelruil", "kavelsloten": "kavelslot", "kaviaar": "kaviaar", "kawasaki": "kawasaki", "kayen": "kay", "kazachstan": "kazachstan", "kazen": "kaz", "kazerne": "kazern", "kazerneterrein": "kazerneterrein", "kca": "kca", "kcna": "kcna", "keating": "keating", "kee": "kee", "keek": "kek", "keel": "kel", "keelbas": "keelbas", "keent": "keent", "keer": "ker", "keerde": "keerd", "keerden": "keerd", "keermuren": "keermur", "keert": "keert", "keerwand": "keerwand", "keerzijde": "keerzijd", "kees": "kes", "keetje": "keetj", "kegels": "kegel", "kegro": "kegro", "kehrer": "kehrer", "keien": "kei", "keihard": "keihard", "keiharde": "keihard", "keijsers": "keijser", "keilgootcentrale": "keilgootcentral", "keith": "keith", "keken": "kek", "kelchtermans": "kelchterman", "kelder": "kelder", "keldert": "keldert", "kelen": "kel", "kelken": "kelk", "kellner": "kellner", "keltan": "keltan", "kelthane": "kelthan", "kelvin": "kelvin", "kema": "kema", "kembang": "kembang", "kemira": "kemira", "kemiralokatie": "kemiralokatie", "kempen": "kemp", "kemperman": "kemperman", "kemphaan": "kemphan", "kempton": "kempton", "ken": "ken", "kenbaar": "kenbar", "kende": "kend", "kenden": "kend", "kenia": "kenia", "kenmerken": "kenmerk", "kenmerkend": "kenmerk", "kennelijk": "kennelijk", "kennelijke": "kennelijk", "kennemerland": "kennemerland", "kennen": "kenn", "kennende": "kennend", "kenneth": "kenneth", "kennis": "kennis", "kennisachterstand": "kennisachterstand", "kennisbeleid": "kennisbeleid", "kenniscentra": "kenniscentra", "kenniscentrum": "kenniscentrum", "kennisexploitatie": "kennisexploitatie", "kennisgebrek": "kennisgebrek", "kennisgeven": "kennisgev", "kennisgeving": "kennisgev", "kennisgevingsplicht": "kennisgevingsplicht", "kennisinfrastructuur": "kennisinfrastructur", "kennisinstellingen": "kennisinstell", "kennisinstituten": "kennisinstitut", "kennisintensieve": "kennisintensiev", "kennisintensievere": "kennisintensiever", "kennismaken": "kennismak", "kennisontwikkeling": "kennisontwikkel", "kennisoverdracht": "kennisoverdracht", "kennisoverdrachtprojecten": "kennisoverdrachtproject", "kennispool": "kennispol", "kennissen": "kenniss", "kennissenkringen": "kennissenkr", "kennisuitwisseling": "kennisuitwissel", "kennisverspreiding": "kennisverspreid", "kenschetst": "kenschetst", "kent": "kent", "kentallen": "kentall", "kentucky": "kentucky", "keppel": "keppel", "keramiek": "keramiek", "keramisch": "keramisch", "keramische": "keramisch", "kerel": "kerel", "kérel": "kerel", "kereltje": "kereltj", "kereltjes": "kereltjes", "keren": "ker", "kerende": "kerend", "kerk": "kerk", "kerke": "kerk", "kerkelijke": "kerkelijk", "kerken": "kerk", "kerkespitsen": "kerkespits", "kerkhof": "kerkhof", "kerkhoflaan": "kerkhoflan", "kerkhoven": "kerkhov", "kerkrade": "kerkrad", "kerkspitsen": "kerkspits", "kerkzuilen": "kerkzuil", "kermde": "kermd", "kermden": "kermd", "kermen": "kerm", "kermende": "kermend", "kern": "kern", "kernactiviteiten": "kernactiviteit", "kernafval": "kernafval", "kernarsenaal": "kernarsenal", "kernbegrippen": "kernbegripp", "kernbeslissing": "kernbesliss", "kernbeslissingen": "kernbesliss", "kernbom": "kernbom", "kernbommen": "kernbomm", "kernbrennstoff": "kernbrennstoff", "kerncentrale": "kerncentral", "kerncentralepark": "kerncentralepark", "kerncentrales": "kerncentrales", "kernen": "kern", "kernenergie": "kernenergie", "kernenergiecentrales": "kernenergiecentrales", "kernenergierecht": "kernenergierecht", "kernenergiewet": "kernenergiewet", "kernenergiewetgeving": "kernenergiewetgev", "kernexperts": "kernexpert", "kernfusie": "kernfusie", "kernfusiegelden": "kernfusiegeld", "kernfusieonderzoek": "kernfusieonderzoek", "kerngegevens": "kerngegeven", "kerngezond": "kerngezond", "kerngroep": "kerngroep", "kernkop": "kernkop", "kernkoppen": "kernkopp", "kernkoppenpolitiek": "kernkoppenpolitiek", "kernkraftgesellschaft": "kernkraftgesellschaft", "kernlading": "kernlad", "kernmacht": "kernmacht", "kernonderzeeërs": "kernonderzeeer", "kernongevallen": "kernongevall", "kernprobleem": "kernproblem", "kernproef": "kernproef", "kernproeven": "kernproev", "kernproevenbeleid": "kernproevenbeleid", "kernpunt": "kernpunt", "kernpunten": "kernpunt", "kernramp": "kernramp", "kernreactie": "kernreactie", "kernreactor": "kernreactor", "kernreactoren": "kernreactor", "kernreactors": "kernreactor", "kerntaken": "kerntak", "kernwapen": "kernwap", "kernwapenactivist": "kernwapenactivist", "kernwapenlobby": "kernwapenlobby", "kernwapens": "kernwapen", "kernwapenstaten": "kernwapenstat", "kernwapenvrij": "kernwapenvrij", "kernwapenvrije": "kernwapenvrij", "kerosine": "kerosin", "kerosineheffing": "kerosineheff", "kerosinelozing": "kerosineloz", "kerosinelozingen": "kerosineloz", "kerr": "kerr", "kers": "ker", "kersies": "kersies", "kerst": "kerst", "kerstbomen": "kerstbom", "kerstbomenteelt": "kerstbomenteelt", "kerstkaarten": "kerstkaart", "kerstpakketten": "kerstpakket", "kerstreces": "kerstreces", "kesber": "kesber", "kesteren": "kester", "ketel": "ketel", "ketelassortiment": "ketelassortiment", "ketelbouwers": "ketelbouwer", "ketelbrug": "ketelbrug", "ketelfabrikant": "ketelfabrikant", "ketelfabrikanten": "ketelfabrikant", "ketelfundaties": "ketelfundaties", "ketelhuis": "ketelhuis", "ketelmeer": "ketelmer", "ketelmeerslib": "ketelmeerslib", "ketelpijpen": "ketelpijp", "ketelrendement": "ketelrendement", "ketels": "ketel", "ketelserie": "ketelserie", "ketelsteen": "ketelsten", "keten": "ket", "ketenanalyses": "ketenanalyses", "ketenbeheer": "ketenbeher", "ketenbeheersing": "ketenbeheers", "ketenden": "ketend", "ketenen": "keten", "ketenkaart": "ketenkaart", "ketens": "keten", "ketensysteem": "ketensystem", "ketimoen": "ketimoen", "ketonen": "keton", "ketterij": "ketterij", "ketting": "ketting", "kettingen": "ketting", "kettings": "ketting", "keu": "keu", "keuken": "keuk", "keukenafval": "keukenafval", "keukenapparatuur": "keukenapparatur", "keukenblok": "keukenblok", "keukendeur": "keukendeur", "keukenmeid": "keukenmeid", "keukenmeiden": "keukenmeid", "keukens": "keuken", "keukenzout": "keukenzout", "keulen": "keul", "keur": "keur", "keurde": "keurd", "keurden": "keurd", "keuren": "keur", "keurig": "keurig", "keurige": "keurig", "keuring": "keuring", "keuringen": "keuring", "keurings": "keuring", "keuringsdienst": "keuringsdienst", "keuringseisen": "keuringseis", "keuringsinstituut": "keuringsinstitut", "keuringskosten": "keuringskost", "keurmerk": "keurmerk", "keurmerkaanduidingen": "keurmerkaanduid", "keurmerken": "keurmerk", "keurmerksysteem": "keurmerksystem", "keurslijf": "keurslijf", "keurt": "keurt", "keus": "keus", "keuze": "keuz", "keuzen": "keuz", "keuzes": "keuzes", "key": "key", "keynes": "keynes", "kfc": "kfc", "kg": "kg", "kga": "kga", "khambhat": "khambhat", "khz": "khz", "kibbel": "kibbel", "kibbèl": "kibbèl", "kibbelden": "kibbeld", "kibbelen": "kibbel", "kibbelende": "kibbel", "kidu": "kidu", "kiekeboe": "kiekeboe", "kielce": "kielc", "kiem": "kiem", "kiemende": "kiemend", "kieplaadsysteem": "kieplaadsystem", "kieplaadsystemen": "kieplaadsystem", "kier": "kier", "kieren": "kier", "kieseriet": "kieseriet", "kiesheid": "kiesheid", "kiesschijf": "kiesschijf", "kiest": "kiest", "kietelde": "kieteld", "kiev": "kiev", "kievieten": "kieviet", "kievietseieren": "kievietseier", "kievitsbloem": "kievitsbloem", "kiewiet": "kiewiet", "kiezen": "kiez", "kiezers": "kiezer", "kiggen": "kigg", "kijfde": "kijfd", "kijk": "kijk", "kijken": "kijk", "kijkend": "kijkend", "kijkende": "kijkend", "kijkers": "kijker", "kijkgat": "kijkgat", "kijkt": "kijkt", "kikker": "kikker", "kikkers": "kikker", "kikkersterfte": "kikkersterft", "kikvorsen": "kikvors", "kil": "kil", "kilder": "kilder", "kille": "kill", "killick": "killick", "killige": "killig", "kiln": "kiln", "kilnattig": "kilnatt", "kilo": "kilo", "kilogram": "kilogram", "kilometer": "kilometer", "kilometers": "kilometer", "kilonewton": "kilonewton", "kiloton": "kiloton", "kilowatt": "kilowatt", "kilowattuur": "kilowattur", "kilowattuurprijs": "kilowattuurprijs", "kilte": "kilt", "kilwinderige": "kilwinder", "kim": "kim", "kimman": "kimman", "kimmen": "kimm", "kin": "kin", "kind": "kind", "kinder": "kinder", "kinderachtig": "kinderacht", "kinderarmpjes": "kinderarmpjes", "kinderarts": "kinderart", "kinderbals": "kinderbal", "kinderbijslag": "kinderbijslag", "kinderboeken": "kinderboek", "kinderborst": "kinderborst", "kinderen": "kinder", "kindergedroom": "kindergedrom", "kindergemoed": "kindergemoed", "kindergezicht": "kindergezicht", "kinderhart": "kinderhart", "kinderhelderheid": "kinderhelder", "kinderherinneringen": "kinderherinner", "kinderheugenissen": "kinderheugeniss", "kinderjaren": "kinderjar", "kinderkamer": "kinderkamer", "kinderklank": "kinderklank", "kinderkopjes": "kinderkopjes", "kinderleed": "kinderled", "kinderliefde": "kinderliefd", "kinderlijf": "kinderlijf", "kinderlijk": "kinder", "kinderlijke": "kinder", "kinderlijker": "kinderlijker", "kinderlijkheid": "kinder", "kinderlijkjes": "kinderlijkjes", "kinderlijks": "kinder", "kindermeid": "kindermeid", "kindermeisje": "kindermeisj", "kinderogen": "kinderog", "kinderschoenen": "kinderschoen", "kinderspeelplaats": "kinderspeelplat", "kinderspel": "kinderspel", "kinderspelen": "kinderspel", "kindersprookjes": "kindersprookjes", "kinderstem": "kinderstem", "kinderstemmen": "kinderstemm", "kindertijd": "kindertijd", "kindertjes": "kindertjes", "kindervel": "kindervel", "kinderverbeelding": "kinderverbeeld", "kinderverbeeldingen": "kinderverbeeld", "kindervriendelijk": "kindervriend", "kinderwagentje": "kinderwagentj", "kinderwang": "kinderwang", "kinderwangen": "kinderwang", "kinderziekten": "kinderziekt", "kinderziel": "kinderziel", "kinderzielen": "kinderziel", "kinderzwakte": "kinderzwakt", "kindeten": "kindet", "kindje": "kindj", "kindjesjaren": "kindjesjar", "kindjeslichaam": "kindjeslicham", "kindjesspeelsheid": "kindjesspeels", "kinds": "kind", "kindse": "kind", "kindsheid": "kindsheid", "kindsjaren": "kindsjar", "kindskinderen": "kindskinder", "kinetische": "kinetisch", "kingdom": "kingdom", "kingma": "kingma", "kingstown": "kingstown", "kinshofer": "kinshofer", "kinston": "kinston", "kinzig": "kinzig", "kiosk": "kiosk", "kip": "kip", "kipautovervoer": "kipautovervoer", "kippen": "kipp", "kippenhouder": "kippenhouder", "kippenmest": "kippenmest", "kippenmestverwerker": "kippenmestverwerker", "kipper": "kipper", "kipperman": "kipperman", "kippers": "kipper", "kipwagens": "kipwagen", "kirchhoff": "kirchhoff", "kirkpatrick": "kirkpatrick", "kirstin": "kirstin", "kiruna": "kiruna", "kissebissende": "kissebiss", "kist": "kist", "kisten": "kist", "kistkalveren": "kistkalver", "kistverbod": "kistverbod", "kit": "kit", "kits": "kit", "kivi": "kivi", "kiwa": "kiwa", "kj": "kj", "kjeller": "kjeller", "klaagde": "klaagd", "klaagden": "klaagd", "klaagsnikte": "klaagsnikt", "klaar": "klar", "klaarbassins": "klaarbassin", "klaarblijkelijk": "klaarblijk", "klaarde": "klaard", "klaarder": "klaarder", "klaardere": "klaarder", "klaarduidelijk": "klaarduid", "klaargezet": "klaargezet", "klaarheid": "klaarheid", "klaarmaaltijden": "klaarmaaltijd", "klaarmaken": "klaarmak", "klaarte": "klaart", "klaartje": "klaartj", "klaasje": "klaasj", "klacht": "klacht", "klachten": "klacht", "klachtenregistratie": "klachtenregistratie", "kladversie": "kladversie", "klagelijke": "klagelijk", "klagen": "klag", "klagend": "klagend", "klagende": "klagend", "klager": "klager", "klagers": "klager", "klam": "klam", "klamme": "klamm", "klampende": "klampend", "klampte": "klampt", "klank": "klank", "klankbord": "klankbord", "klankbordgroep": "klankbordgroep", "klanken": "klank", "klankje": "klankj", "klankklare": "klankklar", "klankreinheid": "klankrein", "klankrijker": "klankrijker", "klant": "klant", "klanten": "klant", "klantengroep": "klantengroep", "klantenspecificatie": "klantenspecificatie", "klantgericht": "klantgericht", "klantgerichter": "klantgerichter", "klantvriendelijk": "klantvriend", "klap": "klap", "klaplopen": "klaplop", "klapmutsen": "klapmuts", "klappen": "klapp", "klappende": "klappend", "klapperbomen": "klapperbom", "klapperde": "klapperd", "klapperden": "klapperd", "klapperen": "klapper", "klappertandde": "klappertand", "klare": "klar", "klaren": "klar", "klaroenen": "klaroen", "klasse": "klas", "klassegebied": "klassegebied", "klassen": "klass", "klassiek": "klassiek", "klassieke": "klassiek", "klauwen": "klauw", "klaver": "klaver", "klaveren": "klaver", "klb": "klb", "kleden": "kled", "kledij": "kledij", "kleding": "kleding", "kledingconcern": "kledingconcern", "kledingketen": "kledingket", "kledingstuk": "kledingstuk", "kleed": "kled", "kleedde": "kled", "kleedgeld": "kleedgeld", "kleedkamer": "kleedkamer", "kleedt": "kleedt", "kleef": "klef", "kleefkracht": "kleefkracht", "kleefkruid": "kleefkruid", "kleefstoffen": "kleefstoff", "kleeft": "kleeft", "kleermaker": "kleermaker", "kleertjes": "kleertjes", "klei": "klei", "kleigrond": "kleigrond", "kleigronden": "kleigrond", "kleilaag": "kleilag", "kleilagen": "kleilag", "kleimineralen": "kleimineral", "klein": "klein", "klèin": "klèin", "kleinbedrijf": "kleinbedrijf", "kleinchemie": "kleinchemie", "kleindochter": "kleindochter", "kleindochtertje": "kleindochtertj", "kleine": "klein", "kleinekindjes": "kleinekindjes", "kleiner": "kleiner", "kleinere": "kleiner", "kleinfruitteeltdag": "kleinfruitteeltdag", "kleinfruittelers": "kleinfruitteler", "kleingebruikers": "kleingebruiker", "kleinhandelaren": "kleinhandelar", "kleinheid": "kleinheid", "kleinigheden": "kleinig", "kleinigheid": "kleinig", "kleinkind": "kleinkind", "kleinkinderen": "kleinkinder", "kleinkinderenkring": "kleinkinderenkr", "kleinkinderliefde": "kleinkinderliefd", "kleinkindertjes": "kleinkindertjes", "kleinschalig": "kleinschal", "kleinschalige": "kleinschal", "kleinschaliger": "kleinschaliger", "kleinschaligheid": "kleinschal", "kleinste": "kleinst", "kleinsteeds": "kleinsted", "kleinsten": "kleinst", "kleinte": "kleint", "kleintjes": "kleintjes", "kleinverbruik": "kleinverbruik", "kleinverbruiker": "kleinverbruiker", "kleinverbruikers": "kleinverbruiker", "kleinverbruikersheffing": "kleinverbruikersheff", "kleinververbruikers": "kleinververbruiker", "kleinzakelijke": "kleinzak", "kleinzielig": "kleinziel", "kleinzoon": "kleinzon", "kleiput": "kleiput", "kleiputten": "kleiput", "kleiweg": "kleiweg", "klemde": "klemd", "klemmende": "klemmend", "klemprofielen": "klemprofiel", "klep": "klep", "kleppen": "klepp", "klepperden": "klepperd", "kleren": "kler", "kléren": "kler", "klerenkast": "klerenkast", "klets": "klet", "kletsen": "klets", "kletsnat": "kletsnat", "kletspartijen": "kletspartij", "kletsregen": "kletsreg", "kletst": "kletst", "kletste": "kletst", "kletsten": "kletst", "kletterde": "kletterd", "kletterden": "kletterd", "kletterende": "kletter", "kletteringetjes": "kletteringetjes", "kleur": "kleur", "kleurden": "kleurd", "kleurechte": "kleurecht", "kleuren": "kleur", "kleurennamen": "kleurennam", "kleurgloeiingen": "kleurgloei", "kleurige": "kleurig", "kleurlingen": "kleurling", "kleurloze": "kleurloz", "kleurschietende": "kleurschiet", "kleurstelling": "kleurstell", "kleurstof": "kleurstof", "kleurstoffen": "kleurstoff", "kleurtjes": "kleurtjes", "kleuters": "kleuter", "kleven": "klev", "kliek": "kliek", "kliekjes": "kliekjes", "klim": "klim", "klima": "klima", "klimaat": "klimat", "klimaatbeheersing": "klimaatbeheers", "klimaatbeheersingssysteem": "klimaatbeheersingssystem", "klimaatbeleid": "klimaatbeleid", "klimaatbescherming": "klimaatbescherm", "klimaatcentrum": "klimaatcentrum", "klimaatconferentie": "klimaatconferentie", "klimaatinstallaties": "klimaatinstallaties", "klimaatmodellen": "klimaatmodell", "klimaatnota": "klimaatnota", "klimaatonderzoek": "klimaatonderzoek", "klimaatonderzoekers": "klimaatonderzoeker", "klimaatopwarming": "klimaatopwarm", "klimaatproblematiek": "klimaatproblematiek", "klimaatregeling": "klimaatregel", "klimaatschommelingen": "klimaatschommel", "klimaatsverandering": "klimaatsverander", "klimaatsveranderingen": "klimaatsverander", "klimaatverandering": "klimaatverander", "klimaatveranderingen": "klimaatverander", "klimaatverbond": "klimaatverbond", "klimaatverdrag": "klimaatverdrag", "klimatisering": "klimatiser", "klimatologische": "klimatologisch", "klimmen": "klimm", "klimmers": "klimmer", "klimming": "klimming", "klingelden": "klingeld", "klinieken": "kliniek", "klinisch": "klinisch", "klinische": "klinisch", "klinkelend": "klinkel", "klinken": "klink", "klinkend": "klinkend", "klinkende": "klinkend", "klinkers": "klinker", "klinkerweg": "klinkerweg", "klinkt": "klinkt", "klip": "klip", "klippen": "klipp", "klissen": "kliss", "klitten": "klit", "klm": "klm", "klodder": "klodder", "kloek": "kloek", "kloet": "kloet", "klok": "klok", "klokgelui": "klokgelui", "klokje": "klokj", "klokjes": "klokjes", "klokjesfamilie": "klokjesfamilie", "klokpompen": "klokpomp", "klom": "klom", "klommen": "klomm", "klomp": "klomp", "klompen": "klomp", "klonk": "klonk", "klonken": "klonk", "klontje": "klontj", "kloof": "klof", "klooster": "klooster", "kloostereenvoud": "kloostereenvoud", "klop": "klop", "kloppen": "klopp", "kloppend": "kloppend", "kloppende": "kloppend", "klopt": "klopt", "klopte": "klopt", "klopten": "klopt", "klos": "klos", "klotst": "klotst", "kls": "kls", "kluchtigjes": "kluchtigjes", "kluis": "kluis", "kluisteren": "kluister", "kluisters": "kluister", "kluwende": "kluwend", "kluwens": "kluwen", "kluwer": "kluwer", "km": "km", "kmi": "kmi", "kmo": "kmo", "kmw": "kmw", "knaagde": "knaagd", "knaagdieren": "knaagdier", "knak": "knak", "knakken": "knak", "knakt": "knakt", "knakten": "knakt", "knallen": "knall", "knap": "knap", "knapheid": "knapheid", "knappe": "knapp", "knappen": "knapp", "knapste": "knapst", "knapton": "knapton", "knapzak": "knapzak", "knapzakken": "knapzak", "knapzaksysteem": "knapzaksystem", "knarsende": "knarsend", "knarste": "knarst", "knarsten": "knarst", "knaw": "knaw", "knb": "knb", "kncv": "kncv", "knecht": "knecht", "knechts": "knecht", "kneep": "knep", "knel": "knel", "knellend": "knellend", "knelpunt": "knelpunt", "knelpunten": "knelpunt", "knelpuntenfonds": "knelpuntenfond", "knerpend": "knerpend", "knerpende": "knerpend", "knerpt": "knerpt", "knerpte": "knerpt", "knie": "knie", "knieen": "knieen", "knieën": "knieen", "knielde": "knield", "knielende": "knielend", "knietjes": "knietjes", "knieval": "knieval", "knijpende": "knijpend", "knijper": "knijper", "knik": "knik", "knikkebolde": "knikkebold", "knikkend": "knikkend", "knikkende": "knikkend", "knikkers": "knikker", "knikking": "knikking", "knikte": "knikt", "knikten": "knikt", "knipoogje": "knipoogj", "knippen": "knipp", "knippende": "knippend", "knipte": "knipt", "knipten": "knipt", "knjv": "knjv", "knmi": "knmi", "knoeide": "knoeid", "knokelige": "knokel", "knokkelig": "knokkel", "knokkels": "knokkel", "knoop": "knop", "knoopcelbatterijen": "knoopcelbatterij", "knoopcellen": "knoopcell", "knoopjes": "knoopjes", "knooplaarzen": "knooplaarz", "knooppunt": "knooppunt", "knop": "knop", "knopen": "knop", "knoppen": "knopp", "knotje": "knotj", "knottnerus": "knottnerus", "knotwilgen": "knotwilg", "know": "know", "knowhow": "knowhow", "knoxville": "knoxvill", "knp": "knp", "knuffelen": "knuffel", "knv": "knv", "knwv": "knwv", "ko": "ko", "koac": "koac", "kobe": "kob", "koch": "koch", "kocht": "kocht", "kochten": "kocht", "kocks": "kock", "kodde": "kod", "kodela": "kodela", "koe": "koe", "koedood": "koedod", "koedoot": "koedot", "koeien": "koei", "koek": "koek", "koekebakker": "koekebakker", "koeken": "koek", "koekje": "koekj", "koekjes": "koekjes", "koekoek": "koekoek", "koel": "koel", "koelapparaat": "koelapparat", "koelbox": "koelbox", "koelcapaciteit": "koelcapaciteit", "koelcircuit": "koelcircuit", "koelcompressoren": "koelcompressor", "koelde": "koeld", "koele": "koel", "koelen": "koel", "koeler": "koeler", "koelers": "koeler", "koelgas": "koelgas", "koelheid": "koelheid", "koelhuis": "koelhuis", "koelhuizen": "koelhuiz", "koeling": "koeling", "koelinstallatie": "koelinstallatie", "koelinstallaties": "koelinstallaties", "koelkast": "koelkast", "koelkasten": "koelkast", "koelkastenfabriek": "koelkastenfabriek", "koelmachine": "koelmachin", "koelmachines": "koelmachines", "koelmethode": "koelmethod", "koelmeubel": "koelmeubel", "koelmeubels": "koelmeubel", "koelmiddel": "koelmiddel", "koelmiddelen": "koelmiddel", "koels": "koel", "koelschepen": "koelschep", "koelschroot": "koelschrot", "koelschrootafzeving": "koelschrootafzev", "koelsysteem": "koelsystem", "koelsystemen": "koelsystem", "koelt": "koelt", "koelte": "koelt", "koeltechniek": "koeltechniek", "koeltechnieken": "koeltechniek", "koeltechnische": "koeltechnisch", "koeltechnologie": "koeltechnologie", "koeltjes": "koeltjes", "koeltoren": "koeltor", "koelvitrines": "koelvitrines", "koelvloeistof": "koelvloeistof", "koelvloeistoffen": "koelvloeistoff", "koelvraag": "koelvrag", "koelwater": "koelwater", "koelwatercicuit": "koelwatercicuit", "koelwatercircuit": "koelwatercircuit", "koelwaterleidingen": "koelwaterleid", "koelwaterpompen": "koelwaterpomp", "koelwaterzeven": "koelwaterzev", "koeman": "koeman", "koen": "koen", "koepel": "koepel", "koepelden": "koepeld", "koepelingen": "koepel", "koepelkerk": "koepelkerk", "koepels": "koepel", "koepelzaal": "koepelzal", "koers": "koer", "koersdaling": "koersdal", "koersen": "koers", "koersgevend": "koersgev", "koerswijziging": "koerswijz", "koerswinst": "koerswinst", "koesterde": "koesterd", "koesteren": "koester", "koesterende": "koester", "koestert": "koestert", "koetsier": "koetsier", "koeweit": "koeweit", "koffer": "koffer", "koffers": "koffer", "koffie": "koffie", "koffieboeren": "koffieboer", "koffiebranderij": "koffiebranderij", "koffiebranderijen": "koffiebranderij", "koffiefilters": "koffiefilter", "koffieland": "koffieland", "koffiemerk": "koffiemerk", "koffieprijs": "koffieprijs", "kogels": "kogel", "kogelvangers": "kogelvanger", "kohlepfennig": "kohlepfenn", "kohler": "kohler", "kohorten": "kohort", "kojima": "kojima", "kok": "kok", "koken": "kok", "kokendwaterreactoren": "kokendwaterreactor", "koker": "koker", "kokers": "koker", "kokkel": "kokkel", "kokkelbanken": "kokkelbank", "kokkels": "kokkel", "kokos": "kokos", "kokosvezel": "kokosvezel", "kokoswaaiers": "kokoswaaier", "koks": "kok", "kolding": "kolding", "kolen": "kol", "kolencentrale": "kolencentral", "kolencentrales": "kolencentrales", "kolenconsumptie": "kolenconsumptie", "kolengestookte": "kolengestookt", "koleninjectie": "koleninjectie", "kolenketels": "kolenketel", "kolenlagen": "kolenlag", "kolenmaallijn": "kolenmaallijn", "kolenmengsel": "kolenmengsel", "kolenmijn": "kolenmijn", "kolentechnologie": "kolentechnologie", "kolenvergassing": "kolenvergass", "kolenvergassingscentrale": "kolenvergassingscentral", "kolenvergassingscentrales": "kolenvergassingscentrales", "kolenwinning": "kolenwinn", "kolffgemaal": "kolffgemal", "kolk": "kolk", "kolken": "kolk", "kolkenzuiger": "kolkenzuiger", "kollum": "kollum", "köln": "koln", "kolom": "kolom", "kolonel": "kolonel", "koloniale": "kolonial", "kolonialistisch": "kolonialistisch", "kolonie": "kolonie", "koloniën": "kolonien", "kolos": "kolos", "kolossaal": "kolossal", "kolossale": "kolossal", "kom": "kom", "komedie": "komedie", "komediespelen": "komediespel", "komen": "kom", "komend": "komend", "komende": "komend", "komi": "komi", "komineft": "komineft", "komisch": "komisch", "komische": "komisch", "kommandeerde": "kommandeerd", "kommetje": "kommetj", "komo": "komo", "kompas": "kompas", "kompressoren": "kompressor", "komst": "komst", "komt": "komt", "kon": "kon", "kón": "kon", "kòn": "kòn", "konakovo": "konakovo", "konden": "kond", "kònden": "kònden", "kondigde": "kondigd", "kondigden": "kondigd", "kondigen": "kondig", "kondigt": "kondigt", "kondre": "kondr", "kong": "kong", "konijnen": "konijn", "koning": "koning", "koningin": "koningin", "kóningin": "koningin", "kòningin": "kòningin", "koninginnegracht": "koninginnegracht", "koningschap": "koningschap", "köningsgalerie": "koningsgalerie", "koninklijk": "konink", "koninklijke": "konink", "koninkrijk": "koninkrijk", "konische": "konisch", "konkelde": "konkeld", "konsumentenbond": "konsumentenbond", "kontakt": "kontakt", "kontich": "kontich", "konto": "konto", "konusglas": "konusglas", "konusglasreceptuur": "konusglasreceptur", "konusglazen": "konusglaz", "konzern": "konzern", "koog": "kog", "kooi": "kooi", "kooiconstructie": "kooiconstructie", "kooijmans": "kooijman", "kooimaaiers": "kooimaaier", "kooistra": "kooistra", "kookte": "kookt", "kool": "kol", "kooldioxide": "kooldioxid", "kooldioxyde": "kooldioxyd", "kooldioxydegas": "kooldioxydegas", "kooldioxydemoleculen": "kooldioxydemolecul", "kooldioxydeniveaus": "kooldioxydeniveaus", "koolenbrander": "koolenbrander", "koolfiltergebouwen": "koolfiltergebouw", "koolfilterinstallatie": "koolfilterinstallatie", "koolfilters": "koolfilter", "koolfiltratie": "koolfiltratie", "koolhoven": "koolhov", "koolhydraten": "koolhydrat", "koolkamp": "koolkamp", "koolmonoxide": "koolmonoxid", "koolmonoxyde": "koolmonoxyd", "koolstof": "koolstof", "koolstofarmere": "koolstofarmer", "koolstofatomen": "koolstofatom", "koolstofdioxyde": "koolstofdioxyd", "koolstofdisulfide": "koolstofdisulfid", "koolstoffen": "koolstoff", "koolstofmolecuul": "koolstofmolecul", "koolstofmonoxyde": "koolstofmonoxyd", "koolstofoxyden": "koolstofoxyd", "koolstofpercentage": "koolstofpercentag", "koolstoftetrachloride": "koolstoftetrachlorid", "koolstofverbranding": "koolstofverbrand", "koolteer": "koolter", "koolwaterstof": "koolwaterstof", "koolwaterstoffen": "koolwaterstoff", "koolzaad": "koolzad", "koolzaadolie": "koolzaadolie", "koolzuur": "koolzur", "kooman": "kooman", "koop": "kop", "koopgedrag": "koopgedrag", "koophandel": "koophandel", "koophuizen": "koophuiz", "koopkracht": "koopkracht", "kooplieden": "kooplied", "kooplui": "kooplui", "koopman": "koopman", "koopmans": "koopman", "koopsom": "koopsom", "koopsompolis": "koopsompolis", "koopsomstorting": "koopsomstort", "koopt": "koopt", "koopwoningen": "koopwon", "koorden": "koord", "koorts": "koort", "koortsachtig": "koortsacht", "koortsachtige": "koortsacht", "koortsgezicht": "koortsgezicht", "koortsig": "koortsig", "koortsige": "koortsig", "koortslijders": "koortslijder", "koos": "kos", "koot": "kot", "kooy": "koy", "kop": "kop", "kopakkers": "kopakker", "kopen": "kop", "kopenhagen": "kopenhag", "koper": "koper", "koperaanvoer": "koperaanvoer", "koperafval": "koperafval", "koperchloride": "koperchlorid", "koperde": "koperd", "koperdraad": "koperdrad", "koperen": "koper", "kopergehalte": "kopergehalt", "kopergrauwe": "kopergrauw", "kopermijnen": "kopermijn", "kopermolen": "kopermol", "koperoxyde": "koperoxyd", "koperproduktie": "koperproduktie", "kopers": "koper", "kopersmacht": "kopersmacht", "kopersmarkt": "kopersmarkt", "kopervracht": "kopervracht", "koperwinning": "koperwinn", "kopieën": "kopieen", "kopieerapparaat": "kopieerapparat", "kopieerapparaten": "kopieerapparat", "kopieerpapier": "kopieerpapier", "kopje": "kopj", "kopjes": "kopjes", "koploper": "koploper", "koplopers": "koploper", "koppe": "kopp", "koppelen": "koppel", "koppeling": "koppel", "koppelingen": "koppel", "koppelings": "koppel", "koppelingsinstallatie": "koppelingsinstallatie", "koppelingsinstallaties": "koppelingsinstallaties", "koppen": "kopp", "koppert": "koppert", "koppig": "koppig", "koraal": "koral", "koraalrif": "koraalrif", "koraalriffen": "koraalriff", "korde": "kord", "kordes": "kordes", "korea": "korea", "koreaanse": "koreaan", "korèk": "korèk", "koren": "kor", "korenromp": "korenromp", "korenslangen": "korenslang", "korf": "korf", "korps": "korp", "korrel": "korrel", "korrelbeton": "korrelbeton", "korrelgroottes": "korrelgroottes", "korrelig": "korrel", "korrelmateriaal": "korrelmateriaal", "korrelmix": "korrelmix", "korrelproduktie": "korrelproduktie", "korrelreactor": "korrelreactor", "korrels": "korrel", "korreltje": "korreltj", "korrelverdeling": "korrelverdel", "korstmossen": "korstmoss", "kort": "kort", "korte": "kort", "korten": "kort", "korter": "korter", "kortere": "korter", "kortgeknipte": "kortgeknipt", "kortgeleden": "kortgeled", "korting": "korting", "kortingsregeling": "kortingsregel", "kortlopende": "kortlop", "kortom": "kortom", "kortsluiting": "kortsluit", "kortsluitroute": "kortsluitrout", "kortsluitverlies": "kortsluitverlies", "kortstondig": "kortstond", "kortweg": "kortweg", "kosan": "kosan", "kosice": "kosic", "kosmetica": "kosmetica", "kost": "kost", "kostbaar": "kostbar", "kostbaarder": "kostbaarder", "kostbare": "kostbar", "koste": "kost", "kosteloos": "kostelos", "kosten": "kost", "kostenaspect": "kostenaspect", "kostenbeheersing": "kostenbeheers", "kostenbeperking": "kostenbeperk", "kostenberekeningen": "kostenbereken", "kostenbesparen": "kostenbespar", "kostenbesparend": "kostenbespar", "kostenbesparende": "kostenbespar", "kostenbesparing": "kostenbespar", "kostenbesparingen": "kostenbespar", "kostendalingen": "kostendal", "kostende": "kostend", "kostendekkend": "kostendek", "kostendekkende": "kostendek", "kosteneffectief": "kosteneffectief", "kosteneffectieve": "kosteneffectiev", "kosteneffectievere": "kosteneffectiever", "kosteneffectiviteit": "kosteneffectiviteit", "kosteneffectiviteitsgrenswaarden": "kosteneffectiviteitsgrenswaard", "kostenefficiënte": "kostenefficient", "kostenfactor": "kostenfactor", "kostenloos": "kostenlos", "kostenmodel": "kostenmodel", "kostenneutraal": "kostenneutral", "kostenplaatje": "kostenplaatj", "kostenpost": "kostenpost", "kostenreductie": "kostenreductie", "kostenreducties": "kostenreducties", "kostenstijging": "kostenstijg", "kostentendenzen": "kostentendenz", "kostenvergelijking": "kostenvergelijk", "kostenverhoging": "kostenverhog", "kostenverlaging": "kostenverlag", "kostenvermindering": "kostenverminder", "kostenvoordeel": "kostenvoordel", "kostjes": "kostjes", "kostprijs": "kostprijs", "kostprijsberekening": "kostprijsbereken", "kostprijsverhoging": "kostprijsverhog", "kostprijsverlaging": "kostprijsverlag", "kostroma": "kostroma", "kostscholen": "kostschol", "kostschool": "kostschol", "kostschoolmeisje": "kostschoolmeisj", "kostte": "kost", "kostten": "kost", "kostuum": "kostum", "kotter": "kotter", "kottervloot": "kottervlot", "kotterzuiger": "kotterzuiger", "kou": "kou", "koud": "koud", "koude": "koud", "koudebehoefte": "koudebehoeft", "koudebuffering": "koudebuffer", "koudegolf": "koudegolf", "koudegolfje": "koudegolfj", "koudemachine": "koudemachin", "koudenetten": "koudenet", "koudeopslag": "koudeopslag", "koudeproduktie": "koudeproduktie", "koudetechniek": "koudetechniek", "koudheid": "koudheid", "kouds": "koud", "koudsten": "koudst", "koufront": "koufront", "kous": "kous", "kousen": "kous", "kouwe": "kouw", "kovohute": "kovohut", "kozen": "koz", "kozend": "kozend", "kozijn": "kozijn", "kozijnen": "kozijn", "kozlodoej": "kozlodoej", "kozloduy": "kozloduy", "kpa": "kpa", "kpi": "kpi", "kpmg": "kpmg", "kraag": "krag", "kraaide": "kraaid", "kraaiden": "kraaid", "kraaien": "kraai", "kraaiende": "kraaiend", "kraak": "krak", "kraakt": "kraakt", "kraakte": "kraakt", "kraakten": "kraakt", "kraal": "kral", "kraan": "kran", "kraanwater": "kraanwater", "krab": "krab", "krabbelde": "krabbeld", "krabben": "krabb", "kracht": "kracht", "krachtcentrale": "krachtcentral", "krachtcentrales": "krachtcentrales", "krachtdadig": "krachtdad", "krachten": "kracht", "krachtens": "krachten", "krachtenveld": "krachtenveld", "krachtig": "krachtig", "krachtige": "krachtig", "krachtiger": "krachtiger", "krachtigheid": "krachtig", "krachtigs": "krachtig", "krachtinstallatie": "krachtinstallatie", "krachtinstallaties": "krachtinstallaties", "krachtjes": "krachtjes", "krachtkoppeling": "krachtkoppel", "krachtvoer": "krachtvoer", "krachtwerktuigen": "krachtwerktu", "kragen": "krag", "kragten": "kragt", "kraken": "krak", "krakende": "krakend", "krakingen": "kraking", "kralen": "kral", "kralenblik": "kralenblik", "kramer": "kramer", "kramp": "kramp", "krampachtig": "krampacht", "krampende": "krampend", "krampte": "krampt", "krampten": "krampt", "krampvingers": "krampvinger", "kran": "kran", "kranen": "kran", "kranji": "kranji", "krank": "krank", "krankzinnig": "krankzinn", "krankzinnige": "krankzinn", "krankzinniger": "krankzinniger", "krankzinnigheid": "krankzinn", "krans": "kran", "krant": "krant", "kranten": "krant", "krantepapier": "krantepapier", "krap": "krap", "krapte": "krapt", "kras": "kras", "krasnapolsky": "krasnapolsky", "krasse": "kras", "kraste": "krast", "krat": "krat", "kratsten": "kratst", "krc": "krc", "krediet": "krediet", "kredietbank": "kredietbank", "kredieten": "krediet", "kredietfaciliteiten": "kredietfaciliteit", "kredietgarantie": "kredietgarantie", "kredietregeling": "kredietregel", "kredietverzekeringsmaatschappij": "kredietverzekeringsmaatschappij", "kredietwezen": "kredietwez", "kreditanstalt": "kreditanstalt", "kreeg": "kreg", "kreek": "krek", "kreekeraksluizen": "kreekeraksluiz", "kreet": "kret", "krefeld": "krefeld", "kregen": "kreg", "kreike": "kreik", "kreken": "krek", "krenken": "krenk", "kreolen": "kreol", "kreten": "kret", "kreukeling": "kreukel", "kreuken": "kreuk", "kreukt": "kreukt", "kreukte": "kreukt", "kreun": "kreun", "kreunde": "kreund", "kreunende": "kreunend", "kreunt": "kreunt", "kribbig": "kribbig", "kribvak": "kribvak", "kriebelde": "kriebeld", "kriebelden": "kriebeld", "kriebelende": "kriebel", "kriebelig": "kriebel", "krieg": "krieg", "krieken": "kriek", "krijg": "krijg", "krijgen": "krijg", "krijgsverhaal": "krijgsverhal", "krijgt": "krijgt", "krijste": "krijst", "krijsten": "krijst", "krijt": "krijt", "krijtjes": "krijtjes", "krijtwit": "krijtwit", "krijtzee": "krijtzee", "krikken": "krik", "krimp": "krimp", "krimpen": "krimp", "krimpende": "krimpend", "krimpenerwaard": "krimpenerwaard", "krimpfolies": "krimpfolies", "krimphoezen": "krimphoez", "krimpmarkt": "krimpmarkt", "krimpt": "krimpt", "kring": "kring", "kringen": "kring", "kringetje": "kringetj", "kringloop": "kringlop", "kringloopbedrijf": "kringloopbedrijf", "kringloopbedrijven": "kringloopbedrijv", "kringloopbranche": "kringloopbranch", "kringloopcentra": "kringloopcentra", "kringlooppapier": "kringlooppapier", "kringloopsector": "kringloopsector", "kringloopsysteem": "kringloopsystem", "kringloopwet": "kringloopwet", "kringloopwinkels": "kringloopwinkel", "kringlopen": "kringlop", "krinkelende": "krinkel", "krioelden": "krioeld", "krioelt": "krioelt", "kris": "kris", "krissen": "kriss", "kristal": "kristal", "kristalblauw": "kristalblauw", "kristalheldere": "kristalhelder", "kristalkoepels": "kristalkoepel", "kristallen": "kristall", "kristallige": "kristall", "kristallijn": "kristallijn", "kristallijne": "kristallijn", "kristallijnen": "kristallijn", "kristallisatie": "kristallisatie", "kristalliseren": "kristalliser", "kristinsson": "kristinsson", "kritiek": "kritiek", "kritieke": "kritiek", "kritiekpunt": "kritiekpunt", "kritiekpunten": "kritiekpunt", "kritiker": "kritiker", "kritisch": "kritisch", "kritische": "kritisch", "kritischer": "kritischer", "kritiseerde": "kritiseerd", "kritiseert": "kritiseert", "kritizeerde": "kritizeerd", "kritizeerden": "kritizeerd", "kritizeert": "kritizeert", "kritizeren": "kritizer", "krkk": "krkk", "krl": "krl", "kroepoek": "kroepoek", "kroes": "kroes", "kroesbruin": "kroesbruin", "kroesde": "kroesd", "kroese": "kroes", "kroeshaar": "kroeshar", "kroesige": "kroesig", "kroessnor": "kroessnor", "kroezehaar": "kroezehar", "kroezekop": "kroezekop", "kroezend": "kroezend", "kroezig": "kroezig", "krom": "krom", "kromhoutkazerne": "kromhoutkazern", "kromhoutpark": "kromhoutpark", "kromme": "kromm", "krommende": "krommend", "krommenie": "krommenie", "kromp": "kromp", "krompen": "kromp", "krone": "kron", "kronen": "kron", "kroniek": "kroniek", "kronkelde": "kronkeld", "kronkelden": "kronkeld", "kronkelen": "kronkel", "kronkelende": "kronkel", "kronkeling": "kronkel", "kronkelingen": "kronkel", "kronkellijf": "kronkellijf", "kronkellijnen": "kronkellijn", "kronkellijntjes": "kronkellijntjes", "kroon": "kron", "kroonlid": "kroonlid", "kroonprins": "kroonprin", "kroontje": "kroontj", "kroop": "krop", "kroos": "kros", "kropen": "krop", "kropte": "kropt", "krrs": "krrs", "krs": "krs", "kruiden": "kruid", "kruidenier": "kruidenier", "kruimeldief": "kruimeldief", "kruiningen": "kruining", "kruip": "kruip", "kruipen": "kruip", "kruipende": "kruipend", "kruipruimte": "kruipruimt", "kruisen": "kruis", "kruisgewijze": "kruisgewijz", "kruishoogte": "kruishoogt", "kruising": "kruising", "kruisorganisaties": "kruisorganisaties", "kruisorganisties": "kruisorganisties", "kruispunt": "kruispunt", "kruispunten": "kruispunt", "kruisraketten": "kruisraket", "kruist": "kruist", "kruiste": "kruist", "kruisten": "kruist", "kruisvuur": "kruisvur", "kruk": "kruk", "krul": "krul", "krulde": "kruld", "krulkop": "krulkop", "krulkoppen": "krulkopp", "krullen": "krull", "krullende": "krullend", "krulletjes": "krulletjes", "krullip": "krullip", "krult": "krult", "kt": "kt", "kti": "kti", "kton": "kton", "kuala": "kuala", "kubieke": "kubiek", "kuchte": "kucht", "kudde": "kud", "kudden": "kud", "kuddes": "kuddes", "kuif": "kuif", "kuifeend": "kuifeend", "kuiken": "kuik", "kuikenmesterij": "kuikenmesterij", "kuikens": "kuiken", "kuil": "kuil", "kuiltjes": "kuiltjes", "kuip": "kuip", "kuipje": "kuipj", "kuis": "kuis", "kuise": "kuis", "kuisheid": "kuisheid", "kuit": "kuit", "kuiten": "kuit", "kunde": "kund", "kundige": "kundig", "kundigen": "kundig", "kunnen": "kunn", "kùnnen": "kùnnen", "kunnende": "kunnend", "kunst": "kunst", "kunstbanden": "kunstband", "kunstenaar": "kunstenar", "kunstigjes": "kunstigjes", "kunstmatig": "kunstmat", "kunstmatige": "kunstmat", "kunstmest": "kunstmest", "kunstmestfabriek": "kunstmestfabriek", "kunstmestfabrieken": "kunstmestfabriek", "kunstmestfabrikant": "kunstmestfabrikant", "kunstmestfabrikanten": "kunstmestfabrikant", "kunstmestgebruik": "kunstmestgebruik", "kunstmestindustrie": "kunstmestindustrie", "kunstmestproducenten": "kunstmestproducent", "kunstmeststoffen": "kunstmeststoff", "kunstmestvraag": "kunstmestvrag", "kunstmin": "kunstmin", "kunstofafval": "kunstofafval", "kunstriffen": "kunstriff", "kunststof": "kunststof", "kunststofafval": "kunststofafval", "kunststofbeurs": "kunststofbeur", "kunststofcontainer": "kunststofcontainer", "kunststoff": "kunststoff", "kunststoffabriek": "kunststoffabriek", "kunststoffabrikant": "kunststoffabrikant", "kunststoffen": "kunststoff", "kunststoffenbeurs": "kunststoffenbeur", "kunststoffenbranche": "kunststoffenbranch", "kunststoffenindustrie": "kunststoffenindustrie", "kunststoffenstudie": "kunststoffenstudie", "kunststofflessen": "kunststoffless", "kunststoffolie": "kunststoffolie", "kunststoffoliën": "kunststoffolien", "kunststoffracties": "kunststoffracties", "kunststoffrecycling": "kunststoffrecycl", "kunststofgebruik": "kunststofgebruik", "kunststofindustrie": "kunststofindustrie", "kunststoflassen": "kunststoflass", "kunststofleidingsystemen": "kunststofleidingsystem", "kunststofmarkt": "kunststofmarkt", "kunststofprodukt": "kunststofprodukt", "kunststofprodukten": "kunststofprodukt", "kunststofrecycling": "kunststofrecycl", "kunststofrecyclingindustrie": "kunststofrecyclingindustrie", "kunststofrecyclingstromen": "kunststofrecyclingstrom", "kunststofspriraal": "kunststofspriral", "kunststofverpakkingen": "kunststofverpak", "kunststofverwerkende": "kunststofverwerk", "kunstvezels": "kunstvezel", "kunstvoorwerp": "kunstvoorwerp", "kunstwerk": "kunstwerk", "kunstwerken": "kunstwerk", "kunt": "kunt", "kùnt": "kùnt", "kur": "kur", "kurk": "kurk", "kurkeik": "kurkeik", "kurkeiken": "kurkeik", "kurken": "kurk", "kurketrekkers": "kurketrekker", "kurkschoenvulling": "kurkschoenvull", "kurkvoetbed": "kurkvoetbed", "kus": "kus", "kussen": "kuss", "kussens": "kussen", "kussenvulsel": "kussenvulsel", "kust": "kust", "kustbeheer": "kustbeher", "kustbreedte": "kustbreedt", "kuste": "kust", "kusten": "kust", "kustgebied": "kustgebied", "kustgebieden": "kustgebied", "kustlijn": "kustlijn", "kustlocatie": "kustlocatie", "kustlocaties": "kustlocaties", "kustlokatie": "kustlokatie", "kustlokaties": "kustlokaties", "kustmorfodynamica": "kustmorfodynamica", "kustnota": "kustnota", "kustomgeving": "kustomgev", "kustonderhoud": "kustonderhoud", "kustonderzoek": "kustonderzoek", "kustontwikkeling": "kustontwikkel", "kustregio": "kustregio", "kustsuppleties": "kustsuppleties", "kustsysteem": "kustsystem", "kusttraject": "kusttraject", "kustuitbreiding": "kustuitbreid", "kustverdediging": "kustverded", "kustwacht": "kustwacht", "kustwater": "kustwater", "kustwateren": "kustwater", "kustwijzigingen": "kustwijz", "kustzone": "kustzon", "kustzones": "kustzones", "kutno": "kutno", "kuub": "kub", "kuur": "kur", "kuurtjes": "kuurtjes", "kuwayt": "kuwayt", "kv": "kv", "kvaerner": "kvaerner", "kvem": "kvem", "kw": "kw", "kwaad": "kwad", "kwaadaardig": "kwaadaard", "kwaadheid": "kwaadheid", "kwaadnijdige": "kwaadnijd", "kwaads": "kwad", "kwaadspreekt": "kwaadspreekt", "kwaadspreken": "kwaadsprek", "kwaadwillend": "kwaadwill", "kwaal": "kwal", "kwade": "kwad", "kwader": "kwader", "kwajongen": "kwajong", "kwakel": "kwakel", "kwakte": "kwakt", "kwalen": "kwal", "kwalificatie": "kwalificatie", "kwalificeren": "kwalificer", "kwalijk": "kwalijk", "kwalijke": "kwalijk", "kwalitatief": "kwalitatief", "kwaliteit": "kwaliteit", "kwaliteiten": "kwaliteit", "kwaliteits": "kwaliteit", "kwaliteitsaanduiding": "kwaliteitsaanduid", "kwaliteitsbeheersing": "kwaliteitsbeheers", "kwaliteitsbesef": "kwaliteitsbesef", "kwaliteitsbevordering": "kwaliteitsbevorder", "kwaliteitsbewaking": "kwaliteitsbewak", "kwaliteitsborging": "kwaliteitsborg", "kwaliteitsborgingssysteem": "kwaliteitsborgingssystem", "kwaliteitscertificaat": "kwaliteitscertificat", "kwaliteitscertificaten": "kwaliteitscertificat", "kwaliteitscertificering": "kwaliteitscertificer", "kwaliteitscontrole": "kwaliteitscontrol", "kwaliteitscoördinator": "kwaliteitscoordinator", "kwaliteitscriteria": "kwaliteitscriteria", "kwaliteitsdoelstellingen": "kwaliteitsdoelstell", "kwaliteitseisen": "kwaliteitseis", "kwaliteitshandboek": "kwaliteitshandboek", "kwaliteitsinformatielabel": "kwaliteitsinformatielabel", "kwaliteitskeurmerk": "kwaliteitskeurmerk", "kwaliteitsniveau": "kwaliteitsniveau", "kwaliteitsnorm": "kwaliteitsnorm", "kwaliteitsnormen": "kwaliteitsnorm", "kwaliteitsplan": "kwaliteitsplan", "kwaliteitsprijs": "kwaliteitsprijs", "kwaliteitsprodukt": "kwaliteitsprodukt", "kwaliteitsprogramma": "kwaliteitsprogramma", "kwaliteitsstandaard": "kwaliteitsstandaard", "kwaliteitsstatus": "kwaliteitsstatus", "kwaliteitssysteem": "kwaliteitssystem", "kwaliteitsverbetering": "kwaliteitsverbeter", "kwaliteitsverhouding": "kwaliteitsverhoud", "kwaliteitsverklaring": "kwaliteitsverklar", "kwaliteitsverklaringen": "kwaliteitsverklar", "kwaliteitsverlies": "kwaliteitsverlies", "kwaliteitswijn": "kwaliteitswijn", "kwaliteitszorg": "kwaliteitszorg", "kwaliteitszorgsysteem": "kwaliteitszorgsystem", "kwaliteitszorgsystemen": "kwaliteitszorgsystem", "kwalititeitsmetingen": "kwalititeitsmet", "kwam": "kwam", "kwamen": "kwam", "kwantificering": "kwantificer", "kwantitatief": "kwantitatief", "kwantitatieve": "kwantitatiev", "kwantiteitsbeheer": "kwantiteitsbeher", "kwart": "kwart", "kwartaal": "kwartal", "kwartaalblad": "kwartaalblad", "kwartaalcijfers": "kwartaalcijfer", "kwartaaltijdschrift": "kwartaaltijdschrift", "kwartalen": "kwartal", "kwartcirkel": "kwartcirkel", "kwartier": "kwartier", "kwartieren": "kwartier", "kwartjes": "kwartjes", "kwarts": "kwart", "kwdb": "kwdb", "kwe": "kwe", "kwee": "kwee", "kweek": "kwek", "kweekreactor": "kweekreactor", "kweekreactoren": "kweekreactor", "kweekreactortechnologie": "kweekreactortechnologie", "kweekte": "kweekt", "kweekvijvers": "kweekvijver", "kweken": "kwek", "kweker": "kweker", "kwekerij": "kwekerij", "kwekers": "kweker", "kwellen": "kwell", "kwelwater": "kwelwater", "kwestie": "kwestie", "kwesties": "kwesties", "kwetsbaar": "kwetsbar", "kwetsbaarder": "kwetsbaarder", "kwetsbaarheid": "kwetsbar", "kwetsbaarste": "kwetsbaarst", "kwetsbare": "kwetsbar", "kwetsen": "kwets", "kwetste": "kwetst", "kwf": "kwf", "kwh": "kwh", "kwijnde": "kwijnd", "kwijnden": "kwijnd", "kwijnen": "kwijn", "kwijnend": "kwijnend", "kwijnensgebaar": "kwijnensge", "kwijning": "kwijning", "kwijnt": "kwijnt", "kwijt": "kwijt", "kwijtgescholden": "kwijtgeschold", "kwijtraken": "kwijtrak", "kwijtschelding": "kwijtscheld", "kwik": "kwik", "kwikafval": "kwikafval", "kwikhoudend": "kwikhoud", "kwikhoudende": "kwikhoud", "kwiklampen": "kwiklamp", "kwikschandaal": "kwikschandal", "kwikvergiftiging": "kwikvergift", "kwikvrij": "kwikvrij", "kwispelde": "kwispeld", "kwispelen": "kwispel", "kwispelende": "kwispel", "kwispeling": "kwispel", "kwitantie": "kwitantie", "kwp": "kwp", "kws": "kws", "kwth": "kwth", "kwu": "kwu", "kyushu": "kyushu", "l": "l", "la": "la", "laa": "laa", "laad": "lad", "laadbox": "laadbox", "laadsysteem": "laadsystem", "laag": "lag", "laagbouw": "laagbouw", "laagcalorisch": "laagcalorisch", "laagcalorische": "laagcalorisch", "laagdrempeligheid": "laagdrempel", "laagfrequent": "laagfrequent", "laagfrequente": "laagfrequent", "laaggelegen": "laaggeleg", "laaggeschoolde": "laaggeschoold", "laaggewaardeerde": "laaggewaardeerd", "laagheden": "laagheid", "laagheid": "laagheid", "laagje": "laagj", "laagland": "laagland", "laagpakket": "laagpakket", "laagst": "laagst", "laagstbetaalden": "laagstbetaald", "laagste": "laagst", "laagte": "laagt", "laagtoerig": "laagtoer", "laagwaardige": "laagwaard", "laaide": "laaid", "laaiende": "laaiend", "laaiing": "laaiing", "laak": "lak", "laakbaar": "laakbar", "laakt": "laakt", "laan": "lan", "laar": "lar", "laarzen": "laarz", "laarzenfabrikant": "laarzenfabrikant", "laat": "lat", "laatdunkende": "laatdunk", "laatjes": "laatjes", "laatst": "laatst", "laatste": "laatst", "laatsten": "laatst", "laatstgenoemde": "laatstgenoemd", "labbekakkerig": "labbekakker", "label": "label", "labeling": "label", "labelrichtlijnen": "labelrichtlijn", "labelstallen": "labelstall", "labelstatus": "labelstatus", "labelsysteem": "labelsystem", "labelsystemen": "labelsystem", "labeltechniek": "labeltechniek", "laboratoria": "laboratoria", "laboratories": "laboratories", "laboratorium": "laboratorium", "laboratoriumfaciliteiten": "laboratoriumfaciliteit", "laboratoriumkosten": "laboratoriumkost", "laboratoriumkweek": "laboratoriumkwek", "laboratoriumonderzoek": "laboratoriumonderzoek", "laboratoriumproeven": "laboratoriumproev", "laboratoriumschaal": "laboratoriumschal", "laboratoriumtests": "laboratoriumtest", "laboratory": "laboratory", "labour": "labour", "labourlid": "labourlid", "labourpartij": "labourpartij", "laboyrie": "laboyrie", "labs": "lab", "labyrinth": "labyrinth", "lach": "lach", "lachblik": "lachblik", "lachcongestie": "lachcongestie", "lachebekje": "lachebekj", "lachen": "lach", "lachend": "lachend", "lachende": "lachend", "lachgas": "lachgas", "lachgeluid": "lachgeluid", "laching": "laching", "lachje": "lachj", "lachlichte": "lachlicht", "lachlippen": "lachlipp", "lachspieren": "lachspier", "lacht": "lacht", "lachte": "lacht", "lachten": "lacht", "laconiek": "laconiek", "laconieke": "laconiek", "laconisch": "laconisch", "lactoferrine": "lactoferrin", "lacunes": "lacunes", "ladder": "ladder", "ladders": "ladder", "laden": "lad", "lading": "lading", "ladingen": "lading", "ladingsdetector": "ladingsdetector", "laer": "laer", "laffe": "laff", "lag": "lag", "lage": "lag", "lagedruk": "lagedruk", "lagemaat": "lagemat", "lagen": "lag", "lager": "lager", "lagere": "lager", "lagergeschoolden": "lagergeschoold", "lagers": "lager", "lagerwey": "lagerwey", "lagune": "lagun", "laidlaw": "laidlaw", "lak": "lak", "laka": "laka", "lake": "lak", "laken": "lak", "lakens": "laken", "lakken": "lak", "lakschurft": "lakschurft", "laksoorten": "laksoort", "lalde": "lald", "lam": "lam", "lambert": "lambert", "lambson": "lambson", "lamellen": "lamell", "lamers": "lamer", "lamgeslagen": "lamgeslag", "laminaatparket": "laminaatparket", "laminaten": "laminat", "lamineertechniek": "lamineertechniek", "lamme": "lamm", "lammeling": "lammel", "lammelingen": "lammel", "lammerts": "lammert", "lamp": "lamp", "lampen": "lamp", "lampenschamplichten": "lampenschamplicht", "lampeschijnsel": "lampeschijnsel", "lancaster": "lancaster", "lance": "lanc", "lanceerde": "lanceerd", "lanceert": "lanceert", "lanceren": "lancer", "land": "land", "landaanwinning": "landaanwinn", "landaanwinningsproject": "landaanwinningsproject", "landaanwinningsprojecten": "landaanwinningsproject", "landauer": "landauer", "landbezitters": "landbezitter", "landbodems": "landbodem", "landbouw": "landbouw", "landbouwareaal": "landbouwareaal", "landbouwbanken": "landbouwbank", "landbouwbedrijf": "landbouwbedrijf", "landbouwbedrijfsleven": "landbouwbedrijfslev", "landbouwbedrijven": "landbouwbedrijv", "landbouwbegrotingen": "landbouwbegrot", "landbouwbelangen": "landbouwbelang", "landbouwbeleid": "landbouwbeleid", "landbouwbestrijdingsmiddel": "landbouwbestrijdingsmiddel", "landbouwbestrijdingsmiddelen": "landbouwbestrijdingsmiddel", "landbouwbudget": "landbouwbudget", "landbouwcommissie": "landbouwcommissie", "landbouwcoöperatie": "landbouwcooperatie", "landbouwdebat": "landbouwdebat", "landbouwdepartement": "landbouwdepartement", "landbouwenclaves": "landbouwenclaves", "landbouwers": "landbouwer", "landbouwfaculteit": "landbouwfaculteit", "landbouwfolie": "landbouwfolie", "landbouwfolies": "landbouwfolies", "landbouwgebieden": "landbouwgebied", "landbouwgedeputeerde": "landbouwgedeputeerd", "landbouwgewassen": "landbouwgewass", "landbouwgif": "landbouwgif", "landbouwgiften": "landbouwgift", "landbouwgrond": "landbouwgrond", "landbouwgronden": "landbouwgrond", "landbouwgrondstoffen": "landbouwgrondstoff", "landbouwkern": "landbouwkern", "landbouwkundig": "landbouwkund", "landbouwkundige": "landbouwkund", "landbouwluchtvaartbedrijf": "landbouwluchtvaartbedrijf", "landbouwluchtvaartbedrijven": "landbouwluchtvaartbedrijv", "landbouwmaatschappij": "landbouwmaatschappij", "landbouwmethoden": "landbouwmethod", "landbouwminister": "landbouwminister", "landbouwministerie": "landbouwministerie", "landbouwministers": "landbouwminister", "landbouwontwikkelingsmogelijkheden": "landbouwontwikkelingsmog", "landbouworganisatie": "landbouworganisatie", "landbouworganisaties": "landbouworganisaties", "landbouwpercelen": "landbouwpercel", "landbouwplastic": "landbouwplastic", "landbouwpolitiek": "landbouwpolitiek", "landbouwpremies": "landbouwpremies", "landbouwprodukten": "landbouwprodukt", "landbouwproduktie": "landbouwproduktie", "landbouwprojecten": "landbouwproject", "landbouwraad": "landbouwrad", "landbouwschap": "landbouwschap", "landbouwschool": "landbouwschol", "landbouwsector": "landbouwsector", "landbouwsocioloog": "landbouwsociolog", "landbouwstaten": "landbouwstat", "landbouwstructuur": "landbouwstructur", "landbouwsubsidies": "landbouwsubsidies", "landbouwtermijnmarkt": "landbouwtermijnmarkt", "landbouwuniversiteit": "landbouwuniversiteit", "landbouwvakbeurs": "landbouwvakbeur", "landbouwvoorlichting": "landbouwvoorlicht", "landbouwvoorlichtingsdienst": "landbouwvoorlichtingsdienst", "landbouwvormen": "landbouwvorm", "landbouwwoordvoerder": "landbouwwoordvoerder", "lande": "land", "landeigenaren": "landeigenar", "landelijk": "landelijk", "landelijke": "landelijk", "landelijker": "landelijker", "landen": "land", "landerige": "lander", "landesbank": "landesbank", "landfarming": "landfarm", "landfill": "landfill", "landgebruik": "landgebruik", "landgoed": "landgoed", "landgoedeigenaren": "landgoedeigenar", "landgoederen": "landgoeder", "landgraaf": "landgraf", "landijs": "landijs", "landingen": "landing", "landingsbaan": "landingsban", "landingsbanen": "landingsban", "landingsroutes": "landingsroutes", "landinrichting": "landinricht", "landinrichtingen": "landinricht", "landinrichtingscommissie": "landinrichtingscommissie", "landkartering": "landkarter", "landkreis": "landkreis", "landmacht": "landmacht", "landontwikkelaars": "landontwikkelar", "landouwen": "landouw", "landpachters": "landpachter", "landplanten": "landplant", "landraad": "landrad", "lands": "land", "landschaftsoekologie": "landschaftsoekologie", "landschap": "landschap", "landschappelijk": "landschapp", "landschappelijke": "landschapp", "landschappen": "landschapp", "landschaps": "landschap", "landschapsarchitect": "landschapsarchitect", "landschapsbeheer": "landschapsbeher", "landschapsbehoud": "landschapsbehoud", "landschapseffecten": "landschapseffect", "landschapselementen": "landschapselement", "landschapsontwikkeling": "landschapsontwikkel", "landschapsontwikkelingsplan": "landschapsontwikkelingsplan", "landschapsplan": "landschapsplan", "landschapsschoon": "landschapsschon", "landsgrens": "landsgren", "landsgrenzen": "landsgrenz", "landtec": "landtec", "lane": "lan", "lang": "lang", "langdurig": "langdur", "langdurige": "langdur", "lange": "lang", "langeberg": "langeberg", "langedijk": "langedijk", "langen": "lang", "langenberg": "langenberg", "langer": "langer", "langerak": "langerak", "langere": "langer", "langeslag": "langeslag", "langetermijndoelen": "langetermijndoel", "langlopend": "langlop", "langs": "lang", "langste": "langst", "langswaterdichte": "langswaterdicht", "langwerpige": "langwerp", "langzaam": "langzam", "langzaamaan": "langzaaman", "langzaamlopende": "langzaamlop", "langzaamwerkende": "langzaamwerk", "langzame": "langzam", "langzamer": "langzamer", "langzamerhand": "langzamerhand", "lanka": "lanka", "lansen": "lans", "lansink": "lansink", "lantaarn": "lantaarn", "lantaarnpalen": "lantaarnpal", "lantaarns": "lantaarn", "lantaren": "lantar", "lantarenoog": "lantarenog", "lantarens": "lantaren", "lanthaniden": "lanthanid", "lantmännen": "lantmann", "lap": "lap", "lapinus": "lapinus", "lapje": "lapj", "lapjes": "lapjes", "lapland": "lapland", "lappen": "lapp", "lappende": "lappend", "lappendeken": "lappendek", "lappenmand": "lappenmand", "laren": "lar", "lariks": "larik", "larsen": "lars", "larven": "larv", "las": "las", "laser": "laser", "lasertechniek": "lasertechniek", "lasertechnologie": "lasertechnologie", "lasnaad": "lasnad", "lasnaden": "lasnad", "lasposities": "lasposities", "lassen": "lass", "last": "last", "laste": "last", "lastechniek": "lastechniek", "lastechnieken": "lastechniek", "lasten": "last", "lastendruk": "lastendruk", "lastenverhoging": "lastenverhog", "lastenverlichting": "lastenverlicht", "lastenverlichtingen": "lastenverlicht", "lastenverlichtingspakket": "lastenverlichtingspakket", "lastenverzwaring": "lastenverzwar", "laster": "laster", "lasterden": "lasterd", "lasteren": "laster", "lasteringen": "laster", "lasterlijke": "laster", "lastig": "lastig", "lastiger": "lastiger", "late": "lat", "laten": "lat", "latende": "latend", "later": "later", "latere": "later", "laterosporus": "laterosporus", "latex": "latex", "latijns": "latijn", "latijnsamerika": "latijnsamerika", "latour": "latour", "latta": "latta", "laura": "laura", "lausanne": "lausann", "lausitz": "lausitz", "lauwe": "lauw", "lauwer": "lauwer", "lauwersoog": "lauwersog", "lauwte": "lauwt", "lavagesteente": "lavagesteent", "laval": "laval", "lavastenen": "lavasten", "laverman": "laverman", "law": "law", "lawaai": "lawaai", "lawaaidoofheid": "lawaaidof", "lawaaierig": "lawaaier", "lawaaierige": "lawaaier", "lawaaiig": "lawaai", "lawaaiige": "lawaai", "lawaainiveau": "lawaainiveau", "lawickse": "lawick", "lazen": "laz", "lb": "lb", "lbl": "lbl", "lbo": "lbo", "lc": "lc", "lca": "lca", "lcd": "lcd", "ldpe": "ldpe", "le": "le", "leaflets": "leaflet", "leakproof": "leakprof", "lease": "leas", "leasebedrag": "leasebedrag", "leased": "leased", "leasen": "leas", "least": "least", "leather": "leather", "lebbink": "lebbink", "lebensmitteltechnologie": "lebensmitteltechnologie", "lectuur": "lectur", "led": "led", "lede": "led", "ledematen": "ledemat", "leden": "led", "ledenbedrijven": "ledenbedrijv", "ledenlijst": "ledenlijst", "lederindustrie": "lederindustrie", "ledige": "ledig", "ledigen": "ledig", "lediging": "ledig", "ledigingen": "ledig", "ledikant": "ledikant", "lee": "lee", "leebur": "leebur", "leed": "led", "léed": "led", "leedvermaak": "leedvermak", "leef": "lef", "leefbaarheid": "leefbar", "leefbare": "leefbar", "leefde": "leefd", "léefde": "leefd", "leefden": "leefd", "léefden": "leefd", "leefgebied": "leefgebied", "leefgebieden": "leefgebied", "leefgemeenschappen": "leefgemeenschapp", "leefkwaliteit": "leefkwaliteit", "leefloze": "leefloz", "leefmilieu": "leefmilieu", "leefniveau": "leefniveau", "leefomgeving": "leefomgev", "leeft": "leeft", "leeftijd": "leeftijd", "leeftijdsopbouw": "leeftijdsopbouw", "leeg": "leg", "leegden": "leegd", "leeggehaald": "leeggehaald", "leeggepompt": "leeggepompt", "leeggesproeid": "leeggesproeid", "leeggezogen": "leeggezog", "leegheid": "leegheid", "leegmaakten": "leegmaakt", "leegte": "leegt", "leegvissen": "leegviss", "leek": "lek", "leem": "lem", "leemgrond": "leemgrond", "leemtewet": "leemtewet", "leen": "len", "leende": "leend", "leent": "leent", "leentje": "leentj", "leer": "ler", "leerbedrijven": "leerbedrijv", "leerbranche": "leerbranch", "leerde": "leerd", "leerden": "leerd", "leerindustrie": "leerindustrie", "leerlingen": "leerling", "leerlooierij": "leerlooierij", "leerlooierijen": "leerlooierij", "leerprocessen": "leerprocess", "leers": "ler", "leerstoel": "leerstoel", "leert": "leert", "leertijd": "leertijd", "lees": "les", "leesbaar": "leesbar", "leesbaarheid": "leesbar", "leesboeken": "leesboek", "leesgezelschap": "leesgezelschap", "leeslesjes": "leeslesjes", "leest": "leest", "leeuw": "leeuw", "leeuwarden": "leeuward", "leeuwedeel": "leeuwedel", "leeuwen": "leeuw", "leg": "leg", "legaal": "legal", "legaliteitsbeginsel": "legaliteitsbeginsel", "legatie": "legatie", "legatiën": "legatien", "legaties": "legaties", "legbatterijen": "legbatterij", "legbedrijven": "legbedrijv", "legde": "legd", "legden": "legd", "lege": "leg", "legen": "leg", "legenden": "legend", "leger": "leger", "legerbasis": "legerbasis", "legeringen": "leger", "leges": "leges", "legeskorting": "legeskort", "legeskosten": "legeskost", "legestarief": "legestarief", "legestarieven": "legestariev", "leggen": "legg", "leghennenmest": "leghennenmest", "leghennenstal": "leghennenstal", "leging": "leging", "legt": "legt", "legwijze": "legwijz", "lei": "lei", "leicester": "leicester", "leidde": "leid", "leidden": "leid", "leiden": "leid", "leidende": "leidend", "leider": "leider", "leiderdorp": "leiderdorp", "leiders": "leider", "leiderschap": "leiderschap", "leiding": "leiding", "leidingen": "leiding", "leidingennet": "leidingennet", "leidinggevenden": "leidinggev", "leidingnet": "leidingnet", "leidingsysteem": "leidingsystem", "leidingsystemen": "leidingsystem", "leidingwater": "leidingwater", "leidraad": "leidrad", "leidsche": "leidsch", "leidschendam": "leidschendam", "leidschenveen": "leidschenven", "leidse": "leid", "leidsebuurt": "leidsebuurt", "leidseplein": "leidseplein", "leidt": "leidt", "leien": "lei", "leigh": "leigh", "leipzig": "leipzig", "leisewitzstr": "leisewitzstr", "leisteen": "leisten", "leithold": "leithold", "lek": "lek", "lekbak": "lekbak", "lekdetectie": "lekdetectie", "lekdichtheidsvoorschriften": "lekdichtheidsvoorschrift", "leken": "lek", "lekkage": "lekkag", "lekkages": "lekkages", "lekkanaal": "lekkanal", "lekken": "lek", "lekkend": "lekkend", "lekkende": "lekkend", "lekker": "lekker", "lekkerder": "lekkerder", "lekkere": "lekker", "lekkerkerk": "lekkerkerk", "lèkkertjes": "lèkkertjes", "lekolie": "lekolie", "lekt": "lekt", "lekte": "lekt", "lekten": "lekt", "lekvloeistoffen": "lekvloeistoff", "lekvrij": "lekvrij", "lekvrije": "lekvrij", "lelie": "lelie", "lelielijn": "lelielijn", "leliën": "lelien", "lelies": "lelies", "lelieveld": "lelieveld", "lelijk": "lelijk", "lelijke": "lelijk", "lelijker": "lelijker", "lelystad": "lelystad", "lemacon": "lemacon", "leman": "leman", "lemkowitz": "lemkowitz", "lemmer": "lemmer", "lemstra": "lemstra", "lenen": "len", "lengte": "lengt", "lengtes": "lengtes", "lenie": "lenie", "lenig": "lenig", "lenigde": "lenigd", "lenigen": "lenig", "lenigheid": "lenig", "lening": "lening", "leningen": "lening", "leningenproduktie": "leningenproduktie", "leningradsky": "leningradsky", "lenitnus": "lenitnus", "lente": "lent", "lenteleven": "lentelev", "lentestemmen": "lentestemm", "lenteweefde": "lenteweefd", "lenteweven": "lentewev", "lentewevende": "lentewev", "lentjes": "lentjes", "leon": "leon", "lepage": "lepag", "lepelen": "lepel", "lepeltje": "lepeltj", "lepeltjes": "lepeltjes", "lepidus": "lepidus", "leraar": "lerar", "leraars": "lerar", "leraren": "lerar", "leren": "ler", "lerend": "lerend", "lerende": "lerend", "lernacken": "lernack", "leroy": "leroy", "les": "les", "lesprogramma": "lesprogramma", "lessen": "less", "lester": "lester", "lesvluchten": "lesvlucht", "let": "let", "letale": "letal", "lethargie": "lethargie", "lethem": "lethem", "letland": "letland", "leto": "leto", "letsel": "letsel", "lette": "let", "letten": "let", "lettende": "lettend", "letter": "letter", "letterlijk": "letter", "letters": "letter", "leugen": "leug", "leugens": "leugen", "leuk": "leuk", "leuke": "leuk", "leukemie": "leukemie", "leukheid": "leukheid", "leun": "leun", "leuna": "leuna", "leunde": "leund", "leunden": "leund", "leunen": "leun", "leunende": "leunend", "leuning": "leuning", "leunstoel": "leunstoel", "leunt": "leunt", "leusden": "leusd", "leuter": "leuter", "leuterdorf": "leuterdorf", "leutersdorf": "leutersdorf", "leuven": "leuv", "levantestreek": "levantestrek", "leve": "lev", "level": "level", "leven": "lev", "léven": "lev", "levend": "levend", "levendbarende": "levendbar", "levende": "levend", "levenden": "levend", "levendig": "levend", "levendige": "levend", "levendiger": "levendiger", "levendigheid": "levend", "levendigs": "levend", "levens": "leven", "levensbedreigende": "levensbedreig", "levensbehoefte": "levensbehoeft", "levenscyclus": "levenscyclus", "levenscyclusanalyse": "levenscyclusanalys", "levenscyclusanalyses": "levenscyclusanalyses", "levensdageraad": "levensdagerad", "levensduur": "levensdur", "levensduurverlengende": "levensduurverleng", "levensernst": "levensernst", "levensgevaarlijk": "levensgevar", "levenshoogmoed": "levenshoogmoed", "levenshorizon": "levenshorizon", "levensinblazer": "levensinblazer", "levenskrachten": "levenskracht", "levenslange": "levenslang", "levenslast": "levenslast", "levenslijn": "levenslijn", "levenslust": "levenslust", "levenslustige": "levenslust", "levensmiddelen": "levensmiddel", "levensmiddelenbedrijf": "levensmiddelenbedrijf", "levensmiddelendetailhandel": "levensmiddelendetailhandel", "levensmiddelenhandel": "levensmiddelenhandel", "levensmiddelenindustrie": "levensmiddelenindustrie", "levensmiddelenonderzoek": "levensmiddelenonderzoek", "levensmoeheid": "levensmoe", "levensomstandigheden": "levensomstand", "levensonderhoud": "levensonderhoud", "levensonmisbaar": "levensonmis", "levensontevredenheid": "levensontevred", "levensonwetendheid": "levensonwet", "levensopvatting": "levensopvat", "levensopvattingen": "levensopvat", "levenssap": "levenssap", "levensstijl": "levensstijl", "levensstijlen": "levensstijl", "levenstekenen": "levensteken", "levenstreurig": "levenstreur", "levensvatbaar": "levensvat", "levensvatbaarheid": "levensvat", "levensvatbare": "levensvat", "levensvergissing": "levensvergiss", "levensverwachting": "levensverwacht", "levensverzekering": "levensverzeker", "levensverzekeringen": "levensverzeker", "levenswandel": "levenswandel", "levenswel": "levenswel", "levenswijsheid": "levenswijs", "leventje": "leventj", "lever": "lever", "leverancier": "leverancier", "leveranciers": "leverancier", "leverantie": "leverantie", "leverbaar": "lever", "leverbare": "lever", "leverde": "leverd", "leverden": "leverd", "leveren": "lever", "leverende": "lever", "levering": "lever", "leveringen": "lever", "levert": "levert", "levy": "levy", "leysen": "leys", "leyten": "leyt", "lezen": "lez", "lèzen": "lèz", "lezend": "lezend", "lezende": "lezend", "lezer": "lezer", "lezers": "lezer", "lezing": "lezing", "lezingen": "lezing", "lezingenprogramma": "lezingenprogramma", "lf": "lf", "lheeweg": "lheeweg", "lhv": "lhv", "lia": "lia", "liaison": "liaison", "liaisons": "liaison", "liason": "liason", "libanese": "libanes", "libanon": "libanon", "libema": "libema", "liberaal": "liberal", "liberalen": "liberal", "liberalisatie": "liberalisatie", "liberaliseren": "liberaliser", "liberalisering": "liberaliser", "liberation": "liberation", "liberiaanse": "liberiaan", "libië": "libie", "library": "library", "licentie": "licentie", "licentiehouder": "licentiehouder", "licentienemer": "licentienemer", "licentieovereenkomsten": "licentieovereenkomst", "licentierechten": "licentierecht", "licenties": "licenties", "lichaam": "licham", "lichaamsbouw": "lichaamsbouw", "lichaamsdelen": "lichaamsdel", "lichaamsvreemde": "lichaamsvreemd", "lichaamsziek": "lichaamsziek", "lichamelijk": "licham", "lichamelijke": "licham", "lichamelijkheden": "licham", "lichamen": "licham", "lichere": "licher", "licht": "licht", "lichtbeeld": "lichtbeeld", "lichtbruin": "lichtbruin", "lichtdoorlatende": "lichtdoorlat", "lichte": "licht", "lichten": "licht", "lichtende": "lichtend", "lichtenvoorde": "lichtenvoord", "lichter": "lichter", "lichtere": "lichter", "lichters": "lichter", "lichtgevoeligheid": "lichtgevoel", "lichtgewicht": "lichtgewicht", "lichtgrijs": "lichtgrijs", "lichthoeveelheid": "lichthoevel", "lichtintensiteit": "lichtintensiteit", "lichtje": "lichtj", "lichtjes": "lichtjes", "lichtkranten": "lichtkrant", "lichtkring": "lichtkring", "lichtkringen": "lichtkring", "lichtregelsystemen": "lichtregelsystem", "lichtste": "lichtst", "lichtstromende": "lichtstrom", "lichtte": "licht", "lichtten": "licht", "lichttoetreding": "lichttoetred", "lichtverontreinigde": "lichtverontreinigd", "lichtzinnige": "lichtzinn", "lid": "lid", "lidia": "lidia", "lidmaatschap": "lidmaatschap", "lidstaten": "lidstat", "lidvereniging": "lidveren", "liebeslied": "liebeslied", "liebestod": "liebestod", "liebregts": "liebregt", "liechtenstein": "liechtenstein", "lied": "lied", "liede": "lied", "liedje": "liedj", "lief": "lief", "liefdadig": "liefdad", "liefdadigheid": "liefdad", "liefdadigheidsbezoek": "liefdadigheidsbezoek", "liefdadigheidsmatinée": "liefdadigheidsmatinee", "liefde": "liefd", "liefdevol": "liefdevol", "liefgehad": "liefgehad", "liefgekregen": "liefgekreg", "liefglimlachspelingen": "liefglimlachspel", "liefhad": "liefhad", "liefhadden": "liefhad", "liefheb": "liefheb", "liefhebben": "liefhebb", "liefhebbende": "liefhebb", "liefhebbends": "liefhebb", "liefhebberijen": "liefhebberij", "liefhebt": "liefhebt", "liefheeft": "liefheeft", "liefheid": "liefheid", "liefjes": "liefjes", "liefkozen": "liefkoz", "liefkozend": "liefkoz", "liefkozende": "liefkoz", "liefkozender": "liefkozender", "liefkozing": "liefkoz", "liefkreeg": "liefkreg", "lieflijkjes": "lieflijkjes", "liefs": "lief", "liefst": "liefst", "liefste": "liefst", "lieftalliger": "lieftalliger", "liegen": "lieg", "liegt": "liegt", "lien": "lien", "liep": "liep", "liepen": "liep", "lier": "lier", "lieshout": "lieshout", "liesveld": "liesveld", "liet": "liet", "lieten": "liet", "liètje": "liètj", "lieu": "lieu", "lieve": "liev", "lieveling": "lievel", "lievelingen": "lievel", "lievelingsdochter": "lievelingsdochter", "lievelingszuster": "lievelingszuster", "lievense": "lieven", "liever": "liever", "lievige": "lievig", "life": "lif", "liff": "liff", "lift": "lift", "lifter": "lifter", "liftmotor": "liftmotor", "lig": "lig", "ligboxstallen": "ligboxstall", "liggen": "ligg", "liggend": "liggend", "liggende": "liggend", "liggers": "ligger", "ligging": "ligging", "ligh": "ligh", "light": "light", "lightning": "lightning", "lignieresii": "lignieresii", "lignine": "lignin", "lignitevoorraden": "lignitevoorrad", "ligplaatsen": "ligplaats", "ligt": "ligt", "ligtermoet": "ligtermoet", "ligthart": "ligthart", "lijd": "lijd", "lijden": "lijd", "lijdend": "lijdend", "lijdende": "lijdend", "lijdsman": "lijdsman", "lijdt": "lijdt", "lijdzaam": "lijdzam", "lijf": "lijf", "lijfarts": "lijfart", "lijfje": "lijfj", "lijflijke": "lijflijk", "lijfrentepolis": "lijfrentepolis", "lijfrenteverzekeringen": "lijfrenteverzeker", "lijfskronkelingen": "lijfskronkel", "lijfsliefde": "lijfsliefd", "lijfslust": "lijfslust", "lijk": "lijk", "lijken": "lijk", "lijkt": "lijkt", "lijkwagen": "lijkwag", "lijm": "lijm", "lijmbehandeling": "lijmbehandel", "lijmen": "lijm", "lijmresten": "lijmrest", "lijmt": "lijmt", "lijn": "lijn", "lijnde": "lijnd", "lijnen": "lijn", "lijnharmonieën": "lijnharmonieen", "lijnrecht": "lijnrecht", "lijnvluchten": "lijnvlucht", "lijst": "lijst", "lijsten": "lijst", "lijstje": "lijstj", "lijstjes": "lijstjes", "lijven": "lijv", "lik": "lik", "like": "lik", "likeur": "likeur", "likken": "lik", "likte": "likt", "likten": "likt", "lila": "lila", "lillehammer": "lillehammer", "lillende": "lillend", "limborgh": "limborgh", "limburg": "limburg", "limburgers": "limburger", "limburgse": "limburg", "limiet": "limiet", "limieten": "limiet", "limietwaarden": "limietwaard", "limit": "limit", "limitatieve": "limitatiev", "limited": "limited", "limitering": "limiter", "limits": "limit", "limmel": "limmel", "limonade": "limonad", "limonadefabriek": "limonadefabriek", "linda": "linda", "lindaan": "lindan", "linde": "lind", "lindebomen": "lindebom", "lindemann": "lindemann", "linden": "lind", "lindvall": "lindvall", "line": "lin", "linea": "linea", "lineaire": "lineair", "lined": "lined", "liner": "liner", "linersystemen": "linersystem", "linge": "ling", "lingenfeld": "lingenfeld", "linie": "linie", "lining": "lining", "link": "link", "links": "link", "linkse": "link", "linne": "linn", "linnengoed": "linnengoed", "linnenkast": "linnenkast", "linoleumprodukten": "linoleumprodukt", "linschoten": "linschot", "lint": "lint", "linten": "lint", "lintweg": "lintweg", "lionel": "lionel", "lip": "lip", "lipiden": "lipid", "lipjes": "lipjes", "lippen": "lipp", "liquefied": "liquefied", "liqueur": "liqueur", "liquid": "liquid", "liquidatie": "liquidatie", "liquiditeits": "liquiditeit", "liquiditeitsproblemen": "liquiditeitsproblem", "liquiditeitsvoordeel": "liquiditeitsvoordel", "lire": "lir", "lissabon": "lissabon", "list": "list", "lista": "lista", "listen": "list", "listig": "listig", "listige": "listig", "listigheid": "listig", "liston": "liston", "listons": "liston", "liter": "liter", "literatuur": "literatur", "literatuuronderzoek": "literatuuronderzoek", "literatuuropgave": "literatuuropgav", "literatuurstudie": "literatuurstudie", "literatuurverwijzing": "literatuurverwijz", "literatuurverwijzingen": "literatuurverwijz", "liters": "liter", "lith": "lith", "lithium": "lithium", "lithiumbatterij": "lithiumbatterij", "lithiumion": "lithiumion", "lithosfeer": "lithosfer", "litouwen": "litouw", "litteratuur": "litteratur", "little": "littl", "livermore": "livermor", "liverpool": "liverpol", "living": "living", "lize": "liz", "llanos": "llanos", "lldpe": "lldpe", "lloyd": "lloyd", "lloyds": "lloyd", "lltb": "lltb", "lm": "lm", "lma": "lma", "lme": "lme", "lmr": "lmr", "lmw": "lmw", "lng": "lng", "lnv": "lnv", "lobby": "lobby", "lobith": "lobith", "local": "local", "locatie": "locatie", "locatieproblematiek": "locatieproblematiek", "locaties": "locaties", "locatiespecifiek": "locatiespecifiek", "locatiespecifieke": "locatiespecifiek", "lochem": "lochem", "locomotief": "locomotief", "locomotieven": "locomotiev", "lodeh": "lodeh", "loden": "lod", "lodewijkx": "lodewijkx", "loeide": "loeid", "loeiende": "loeiend", "loeiklacht": "loeiklacht", "loenen": "loen", "loer": "loer", "loerblikken": "loerblik", "loerden": "loerd", "loeren": "loer", "lof": "lof", "log": "log", "logam": "logam", "loge": "log", "logé": "log", "logeerde": "logeerd", "logeerkamer": "logeerkamer", "logeerkamers": "logeerkamer", "logeren": "loger", "logerende": "loger", "logic": "logic", "logica": "logica", "logisch": "logisch", "logische": "logisch", "logisticon": "logisticon", "logistiek": "logistiek", "logistieke": "logistiek", "loglineaire": "loglineair", "lognormal": "lognormal", "logo": "logo", "loire": "loir", "lokaal": "lokal", "lokale": "lokal", "lokalen": "lokal", "lokaliseren": "lokaliser", "lokatie": "lokatie", "lokaties": "lokaties", "loken": "lok", "lokeren": "loker", "loket": "loket", "loketjes": "loketjes", "lokkelijk": "lokkelijk", "lokken": "lok", "lokkende": "lokkend", "lokring": "lokring", "lokte": "lokt", "lol": "lol", "lollig": "lollig", "lombardië": "lombardie", "lome": "lom", "loméverdrag": "lomeverdrag", "lomp": "lomp", "lompheden": "lompheid", "lompheid": "lompheid", "londen": "lond", "londense": "londen", "london": "london", "lonen": "lon", "lonend": "lonend", "long": "long", "longen": "long", "longlifecaps": "longlifecap", "longschokken": "longschok", "longue": "longue", "lonkende": "lonkend", "lonkten": "lonkt", "loochenen": "loochen", "lood": "lod", "loodchloride": "loodchlorid", "loodconcentratie": "loodconcentratie", "loodemissies": "loodemissies", "loodgehalte": "loodgehalt", "loodgehaltes": "loodgehaltes", "loodhoudende": "loodhoud", "loodjes": "loodjes", "loodkleur": "loodkleur", "loodmetaal": "loodmetal", "loodoxyde": "loodoxyd", "loodrechte": "loodrecht", "loods": "lod", "looduitstoot": "looduitstot", "loodvervuiling": "loodvervuil", "loodvrij": "loodvrij", "loodvrije": "loodvrij", "loodzwaar": "loodzwar", "loodzware": "loodzwar", "loof": "lof", "loofbomen": "loofbom", "loofde": "loofd", "looft": "looft", "loog": "log", "look": "lok", "loom": "lom", "loomheid": "loomheid", "loon": "lon", "loonkoel": "loonkoel", "loonkosten": "loonkost", "loont": "loont", "loonvrieshuis": "loonvrieshuis", "loonwerk": "loonwerk", "loonwerker": "loonwerker", "loonwerkers": "loonwerker", "loop": "lop", "loopafstand": "loopafstand", "loopbaan": "loopban", "loopfolie": "loopfolie", "loopjes": "loopjes", "loopjongen": "loopjong", "loops": "lop", "loopt": "loopt", "looptijd": "looptijd", "loos": "los", "loosde": "loosd", "loosden": "loosd", "loost": "loost", "lopen": "lop", "lopend": "lopend", "lopende": "lopend", "loper": "loper", "loprox": "loprox", "lor": "lor", "lord": "lord", "los": "los", "losbarstende": "losbarst", "losbladige": "losblad", "losbreekt": "losbreekt", "lösch": "losch", "losgebarsten": "losgebarst", "losgeknoopt": "losgeknoopt", "losgelaten": "losgelat", "losgeslagen": "losgeslag", "losheid": "losheid", "loskoppelen": "loskoppel", "loslaten": "loslat", "losmaak": "losmak", "losmaken": "losmak", "losmakende": "losmak", "losraking": "losrak", "loss": "los", "losse": "los", "lossen": "loss", "losser": "losser", "losses": "losses", "lossnijden": "lossnijd", "losstaat": "losstat", "lost": "lost", "lostrekken": "lostrek", "losvloer": "losvloer", "losvoorzieningen": "losvoorzien", "loswal": "loswal", "loswikkelen": "loswikkel", "loswoelen": "loswoel", "lot": "lot", "lotharingen": "lothar", "lotje": "lotj", "lots": "lot", "lotz": "lotz", "louis": "louis", "louise": "louis", "louisiana": "louisiana", "lousiana": "lousiana", "louter": "louter", "loutere": "louter", "louteren": "louter", "loverde": "loverd", "lovers": "lover", "lovertoppen": "lovertopp", "lovinklaan": "lovinklan", "lovins": "lovin", "low": "low", "lowe": "low", "lozen": "loz", "lozer": "lozer", "lozers": "lozer", "lozing": "lozing", "lozingbesluit": "lozingbesluit", "lozingen": "lozing", "lozingenbesluit": "lozingenbesluit", "lozingenformulier": "lozingenformulier", "lozingsincident": "lozingsincident", "lozingskosten": "lozingskost", "lozingspunt": "lozingspunt", "lozingsverbod": "lozingsverbod", "lozingsvergunning": "lozingsvergunn", "lozingsysteem": "lozingsystem", "lozo": "lozo", "lpg": "lpg", "lrf": "lrf", "lrqa": "lrqa", "lrs": "lrs", "ltd": "ltd", "lto": "lto", "lu": "lu", "lubbers": "lubber", "lucas": "lucas", "lucht": "lucht", "luchtaanvoer": "luchtaanvoer", "luchtbehandeling": "luchtbehandel", "luchtbellen": "luchtbell", "luchtcelletjes": "luchtcelletjes", "luchtcirculatie": "luchtcirculatie", "luchtcirculaties": "luchtcirculaties", "luchtcompressor": "luchtcompressor", "luchtdebiet": "luchtdebiet", "luchtdicht": "luchtdicht", "luchtdichter": "luchtdichter", "luchtdoorlatende": "luchtdoorlat", "luchtdruk": "luchtdruk", "luchtemissie": "luchtemissie", "luchtemissiebeperking": "luchtemissiebeperk", "luchtemissies": "luchtemissies", "luchten": "lucht", "luchtfactor": "luchtfactor", "luchtfilter": "luchtfilter", "luchtfoto": "luchtfoto", "luchtgedreven": "luchtgedrev", "luchtgekoelde": "luchtgekoeld", "luchtgeluid": "luchtgeluid", "luchtgroeve": "luchtgroev", "luchthartig": "luchthart", "luchthartigheid": "luchthart", "luchthaven": "luchthav", "luchthavenafval": "luchthavenafval", "luchthavencapaciteit": "luchthavencapaciteit", "luchthavengebouw": "luchthavengebouw", "luchthavens": "luchthaven", "luchtig": "luchtig", "luchtige": "luchtig", "luchtiger": "luchtiger", "luchtigheid": "luchtig", "luchtijlte": "luchtijlt", "luchtinjectors": "luchtinjector", "luchtje": "luchtj", "luchtkleppen": "luchtklepp", "luchtkoeling": "luchtkoel", "luchtkwaliteit": "luchtkwaliteit", "luchtkwaliteitsbeleid": "luchtkwaliteitsbeleid", "luchtkwaliteitsnormen": "luchtkwaliteitsnorm", "luchtkwaliteitsstandaard": "luchtkwaliteitsstandaard", "luchtkwaliteitswetgeving": "luchtkwaliteitswetgev", "luchtlagen": "luchtlag", "luchtlagers": "luchtlager", "luchtloze": "luchtloz", "luchtmacht": "luchtmacht", "luchtmobiele": "luchtmobiel", "luchtmobiliteit": "luchtmobiliteit", "luchtmonsters": "luchtmonster", "luchtondersteuning": "luchtondersteun", "luchtopnamen": "luchtopnam", "luchtpost": "luchtpost", "luchtrails": "luchtrail", "luchtramen": "luchtram", "luchtreiniger": "luchtreiniger", "luchtreiniging": "luchtrein", "luchtreinigingsinstallatie": "luchtreinigingsinstallatie", "luchtreinigingssysteem": "luchtreinigingssystem", "luchtreinigingssystemen": "luchtreinigingssystem", "luchtruim": "luchtruim", "luchtsneltrein": "luchtsneltrein", "luchtspuiten": "luchtspuit", "luchtstromen": "luchtstrom", "luchtstroming": "luchtstrom", "luchtstroom": "luchtstrom", "luchttemperatuur": "luchttemperatur", "luchttoevoer": "luchttoevoer", "luchtvaart": "luchtvaart", "luchtvaartbedrijven": "luchtvaartbedrijv", "luchtvaartemissies": "luchtvaartemissies", "luchtvaartincidenten": "luchtvaartincident", "luchtvaartindustrie": "luchtvaartindustrie", "luchtvaartmaatschappij": "luchtvaartmaatschappij", "luchtvaartmaatschappijen": "luchtvaartmaatschappij", "luchtvaartonderzoeksinstituut": "luchtvaartonderzoeksinstitut", "luchtvaarttoepassingen": "luchtvaarttoepass", "luchtvaartverkeer": "luchtvaartverker", "luchtverhouding": "luchtverhoud", "luchtverkeer": "luchtverker", "luchtverontreinigende": "luchtverontrein", "luchtverontreiniging": "luchtverontrein", "luchtvervuiler": "luchtvervuiler", "luchtvervuiling": "luchtvervuil", "luchtvervuilingsbeleid": "luchtvervuilingsbeleid", "luchtvochtigheid": "luchtvocht", "luchtwegaandoeningen": "luchtwegaandoen", "luchtwegen": "luchtweg", "luchtwolken": "luchtwolk", "luchtzuivering": "luchtzuiver", "luchtzuiveringsinstallatie": "luchtzuiveringsinstallatie", "luchverontreiniging": "luchverontrein", "lucifer": "lucifer", "lucifers": "lucifer", "lucratieve": "lucratiev", "lucratiever": "lucratiever", "ludger": "ludger", "ludieke": "ludiek", "ludlow": "ludlow", "ludwigshafen": "ludwigshaf", "lufthansa": "lufthansa", "luguber": "luguber", "lugubere": "luguber", "lui": "lui", "luid": "luid", "luidde": "luid", "luide": "luid", "luiden": "luid", "luider": "luider", "luidheid": "luidheid", "luidkeels": "luidkel", "luidop": "luidop", "luidruchtig": "luidrucht", "luidruchtige": "luidrucht", "luidruchtigheid": "luidrucht", "luidt": "luidt", "luier": "luier", "luiercampagne": "luiercampagn", "luiercentrales": "luiercentrales", "luierde": "luierd", "luieronderzoek": "luieronderzoek", "luierproject": "luierproject", "luiers": "luier", "luierservice": "luierservic", "luiersystemen": "luiersystem", "luifels": "luifel", "luigjes": "luigjes", "luik": "luik", "luiken": "luik", "luis": "luis", "luister": "luister", "luisterde": "luisterd", "luisterden": "luisterd", "luisteren": "luister", "luisterend": "luister", "luisterende": "luister", "luistering": "luister", "luisterposten": "luisterpost", "luistert": "luistert", "luitenant": "luitenant", "luitenants": "luitenant", "luitenantsjaren": "luitenantsjar", "luk": "luk", "lukken": "luk", "lukraak": "lukrak", "lukt": "lukt", "lukte": "lukt", "lulu": "lulu", "lummelachtig": "lummelacht", "lummelde": "lummeld", "lummels": "lummel", "lummen": "lumm", "lumpur": "lumpur", "lunch": "lunch", "lunchbel": "lunchbel", "lunchen": "lunch", "lunchtafel": "lunchtafel", "lunchte": "luncht", "lupine": "lupin", "lurge": "lurg", "lurgi": "lurgi", "lus": "lus", "lust": "lust", "lustbehoefte": "lustbehoeft", "lusteloos": "lustelos", "lusten": "lust", "lustliefde": "lustliefd", "lustrum": "lustrum", "lustrumcongres": "lustrumcongres", "lustrumeditie": "lustrumeditie", "lutgen": "lutg", "lutger": "lutger", "luther": "luther", "lutterade": "lutterad", "luttmer": "luttmer", "luvo": "luvo", "luw": "luw", "lùwen": "lùwen", "luwte": "luwt", "luxe": "lux", "luxemburg": "luxemburg", "luzerne": "luzern", "lybrand": "lybrand", "lydia": "lydia", "lye": "lye", "lyon": "lyon", "lze": "lze", "m": "m", "ma": "ma", "maa": "maa", "maag": "mag", "maagd": "maagd", "maagdelijk": "maagdelijk", "maaggrinnik": "maaggrinnik", "maagkanker": "maagkanker", "maaglach": "maaglach", "maagpijn": "maagpijn", "maaide": "maaid", "maaike": "maaik", "maaisel": "maaisel", "maaiveld": "maaiveld", "maak": "mak", "maakt": "maakt", "maakte": "maakt", "maakten": "maakt", "maal": "mal", "maalgoed": "maalgoed", "maalsel": "maalsel", "maaltechniek": "maaltechniek", "maaltijd": "maaltijd", "maaltijden": "maaltijd", "maand": "maand", "maandag": "maandag", "maandagavond": "maandagavond", "maandagmiddag": "maandagmiddag", "maandblad": "maandblad", "maande": "maand", "maandelijks": "maandelijk", "maanden": "maand", "maandpaard": "maandpaard", "maantje": "maantj", "maar": "mar", "máar": "mar", "maarheeze": "maarhez", "maarssen": "maarss", "maart": "maart", "maarten": "maart", "maartense": "maarten", "maartse": "maart", "maas": "mas", "maasbodem": "maasbodem", "maasbommel": "maasbommel", "maasbracht": "maasbracht", "maasdal": "maasdal", "maasdam": "maasdam", "maasdorpbewoners": "maasdorpbewoner", "maaskades": "maaskades", "maaskant": "maaskant", "maasmond": "maasmond", "maassluis": "maassluis", "maastricht": "maastricht", "maastrichtse": "maastricht", "maasvallei": "maasvallei", "maasvlakte": "maasvlakt", "maaswater": "maaswater", "maat": "mat", "maaten": "mat", "maatgevend": "maatgev", "maatregel": "maatregel", "maatregelen": "maatregel", "maatregelenpakket": "maatregelenpakket", "maatregelenprogramma": "maatregelenprogramma", "maatschap": "maatschap", "maatschappelijk": "maatschapp", "maatschappelijke": "maatschapp", "maatschappij": "maatschappij", "maatschappijen": "maatschappij", "maatstaf": "maatstaf", "maatstaven": "maatstav", "maatwerk": "maatwerk", "maatwerkcontracten": "maatwerkcontract", "mabon": "mabon", "mac": "mac", "macassar": "macassar", "macdonald": "macdonald", "maché": "mach", "machevo": "machevo", "machinaal": "machinal", "machinale": "machinal", "machine": "machin", "machinebouwer": "machinebouwer", "machinebouwers": "machinebouwer", "machinefabriek": "machinefabriek", "machinegebouw": "machinegebouw", "machinehoogte": "machinehoogt", "machinekamers": "machinekamer", "machinerichtlijn": "machinerichtlijn", "machinerie": "machinerie", "machinery": "machinery", "machines": "machines", "machinetje": "machinetj", "machinevaatwasmiddelen": "machinevaatwasmiddel", "machinist": "machinist", "macht": "macht", "machte": "macht", "machteloos": "machtelos", "machteloosheid": "machtelos", "machten": "macht", "machtig": "machtig", "machtigde": "machtigd", "machtige": "machtig", "machtiger": "machtiger", "machtsblokken": "machtsblok", "machtsmisbruik": "machtsmisbruik", "machtsposities": "machtsposities", "machtsstructuur": "machtsstructur", "mackenzie": "mackenzie", "macmillan": "macmillan", "macro": "macro", "macrocampings": "macrocamp", "macrochemie": "macrochemie", "macrochloorbalansen": "macrochloorbalans", "macromoleculair": "macromoleculair", "macroschaal": "macroschal", "macsharry": "macsharry", "mact": "mact", "madame": "madam", "madison": "madison", "madrid": "madrid", "maduro": "maduro", "madurodam": "madurodam", "maersk": "maersk", "maessen": "maess", "maey": "maey", "maeyer": "maeyer", "maffen": "maff", "mag": "mag", "magazijn": "magazijn", "magazijnen": "magazijn", "magazin": "magazin", "magazine": "magazin", "magazines": "magazines", "mager": "mager", "magere": "mager", "maggiore": "maggior", "magisch": "magisch", "magneet": "magnet", "magneetscheiders": "magneetscheider", "magneetsysteem": "magneetsystem", "magneettrommel": "magneettrommel", "magnesia": "magnesia", "magnesium": "magnesium", "magnesiumcarbonaat": "magnesiumcarbonat", "magnesiumchloride": "magnesiumchlorid", "magneten": "magnet", "magnetic": "magnetic", "magnetics": "magnetic", "magnetisch": "magnetisch", "magnetische": "magnetisch", "magnetiseerbare": "magnetiser", "magnetisme": "magnetism", "magnetrons": "magnetron", "magnifique": "magnifique", "mahoniehouten": "mahoniehout", "maij": "maij", "mail": "mail", "mailadres": "mailadres", "mailing": "mailing", "mailstoel": "mailstoel", "main": "main", "maine": "main", "mainframes": "mainframes", "mainport": "mainport", "mainports": "mainport", "maintenance": "maintenanc", "mainz": "mainz", "maïs": "mais", "maïskolvenschroot": "maiskolvenschrot", "maïsland": "maisland", "maisonnettes": "maisonnettes", "maïsproduktie": "maisproduktie", "maissoorten": "maissoort", "maïsstro": "maisstro", "maïsteelt": "maisteelt", "maitresse": "maitres", "maîtresse": "maîtres", "maïzena": "maizena", "majak": "majak", "majesteit": "majesteit", "majesteitelijk": "majesteit", "majesteiten": "majesteit", "majesty": "majesty", "major": "major", "mak": "mak", "makartbouquetten": "makartbouquet", "makelaars": "makelar", "makelaarshuizen": "makelaarshuiz", "makelaarskantoor": "makelaarskantor", "makelij": "makelij", "maken": "mak", "makend": "makend", "makende": "makend", "maker": "maker", "makers": "maker", "making": "making", "makkelijk": "makkelijk", "makkelijker": "makkelijker", "makkum": "makkum", "makreel": "makrel", "makreelvangsten": "makreelvangst", "mal": "mal", "malafide": "malafid", "malaise": "malais", "malaria": "malaria", "malariamuggen": "malariamugg", "malaysia": "malaysia", "malaysian": "malaysian", "malburgerhaven": "malburgerhav", "male": "mal", "maleis": "maleis", "maleisië": "maleisie", "maleisische": "maleisisch", "malen": "mal", "mali": "mali", "malik": "malik", "malle": "mall", "mallen": "mall", "malmö": "malmo", "maltha": "maltha", "malus": "malus", "malussysteem": "malussystem", "malville": "malvill", "mama": "mama", "mamaatje": "mamaatj", "mamberka": "mamberka", "mammoetvarkensstallen": "mammoetvarkensstall", "man": "man", "management": "management", "managementaspecten": "managementaspect", "managementrapport": "managementrapport", "managementstijl": "managementstijl", "managementstructuur": "managementstructur", "managementsysteem": "managementsystem", "managementsystematiek": "managementsystematiek", "managementsystemen": "managementsystem", "manager": "manager", "managers": "manager", "managing": "manag", "manchester": "manchester", "manchetten": "manchet", "mancozeb": "mancozeb", "mand": "mand", "mandate": "mandat", "mandela": "mandela", "manden": "mand", "mandje": "mandj", "manen": "man", "manfred": "manfred", "mangaan": "mangan", "mangaanoxyde": "mangaanoxyd", "mangrovebossen": "mangroveboss", "manhattan": "manhattan", "maniak": "maniak", "manie": "manie", "manieën": "manieen", "manier": "manier", "manieren": "manier", "maniertjes": "maniertjes", "manifest": "manifest", "manifestatie": "manifestatie", "manifestaties": "manifestaties", "manifesteren": "manifester", "manipulatie": "manipulatie", "manjaren": "manjar", "mankeer": "manker", "mankementen": "mankement", "mankracht": "mankracht", "manley": "manley", "manlijke": "manlijk", "mann": "mann", "mannelijk": "mannelijk", "mannelijke": "mannelijk", "mannelijkheid": "mannelijk", "mannemerg": "mannemerg", "mannen": "mann", "mannenmond": "mannenmond", "mannesmann": "mannesmann", "mannetje": "mannetj", "manneziel": "manneziel", "mannezinnen": "mannezinn", "manometers": "manometer", "manschappen": "manschapp", "manschot": "manschot", "manser": "manser", "mantel": "mantel", "manteljas": "manteljas", "mantelkamertje": "mantelkamertj", "mantels": "mantel", "manteltje": "manteltj", "manteltjes": "manteltjes", "manufacturers": "manufacturer", "manufactures": "manufactures", "manufacturing": "manufactur", "manutea": "manutea", "manutua": "manutua", "manuur": "manur", "manvan": "manvan", "maori": "maori", "map": "map", "maquettes": "maquettes", "mar": "mar", "marc": "marc", "marco": "marco", "marconi": "marconi", "mare": "mar", "marechaussee": "marechaussee", "marflex": "marflex", "marge": "marg", "marges": "marges", "marginaal": "marginal", "marginale": "marginal", "margot": "margot", "margraten": "margrat", "margrietkanaal": "margrietkanal", "marianne": "mariann", "mariapeel": "mariapel", "marie": "marie", "marieantoinette": "marieantoinet", "mariendorf": "mariendorf", "mariene": "marien", "marietje": "marietj", "mariètje": "mariètj", "marietjes": "marietjes", "marijke": "marijk", "marijnissen": "marijniss", "marine": "marin", "marinehaven": "marinehav", "marineschip": "marineschip", "mariniers": "marinier", "marion": "marion", "marionetten": "marionet", "maris": "maris", "maritieme": "maritiem", "marius": "marius", "marja": "marja", "mark": "mark", "marke": "mark", "markelo": "markelo", "markering": "marker", "markermeer": "markermer", "market": "market", "marketing": "market", "marketingplan": "marketingplan", "marketingservice": "marketingservic", "marketingtechnieken": "marketingtechniek", "markets": "market", "markies": "markies", "markiezentitel": "markiezentitel", "markiezin": "markiezin", "marking": "marking", "markka": "markka", "markt": "markt", "marktaandeel": "marktaandel", "marktaandelen": "marktaandel", "marktafval": "marktafval", "marktbederf": "marktbederf", "marktbewerking": "marktbewerk", "marktcombinatie": "marktcombinatie", "marktconform": "marktconform", "markteconomie": "markteconomie", "markten": "markt", "marktgericht": "marktgericht", "marktgerichte": "marktgericht", "marktgerichter": "marktgerichter", "marktgestuurde": "marktgestuurd", "marktgroei": "marktgroei", "markthoudende": "markthoud", "marktingrijpen": "marktingrijp", "marktintroductie": "marktintroductie", "marktintroductieproject": "marktintroductieproject", "marktintroductieprojecten": "marktintroductieproject", "marktkans": "marktkan", "marktkansen": "marktkans", "marktleider": "marktleider", "marktleiders": "marktleider", "marktmechanisme": "marktmechanism", "marktmogelijkheden": "marktmog", "marktniches": "marktniches", "marktonderzoek": "marktonderzoek", "marktonderzoeksinstituut": "marktonderzoeksinstitut", "marktontwikkeling": "marktontwikkel", "marktontwikkelingen": "marktontwikkel", "marktpartijen": "marktpartij", "marktpositie": "marktpositie", "marktpotentieel": "marktpotentieel", "marktprikkels": "marktprikkel", "marktproces": "marktproces", "marktsector": "marktsector", "marktsegment": "marktsegment", "marktsegmenten": "marktsegment", "marktsituatie": "marktsituatie", "marktstimulans": "marktstimulan", "marktstraat": "marktstrat", "marktveranderingen": "marktverander", "marktverkenning": "marktverkenn", "marktverwachtingen": "marktverwacht", "marktvoorwaarden": "marktvoorwaard", "marktwaarde": "marktwaard", "marktwerking": "marktwerk", "markus": "markus", "marlex": "marlex", "marlow": "marlow", "marmer": "marmer", "marne": "marn", "marokko": "marokko", "marrakech": "marrakech", "marrekrite": "marrekrit", "marron": "marron", "mars": "mar", "marsdiep": "marsdiep", "marsepein": "marsepein", "martelaar": "martelar", "martelaarschap": "martelaarschap", "martelares": "martelares", "martelde": "marteld", "marteling": "martel", "martens": "marten", "martin": "martin", "martinikerkhof": "martinikerkhof", "maru": "maru", "marvision": "marvision", "marx": "marx", "mary": "mary", "maryland": "maryland", "mas": "mas", "maschine": "maschin", "maschinenbau": "maschinenbau", "masker": "masker", "maskerade": "maskerad", "mass": "mas", "massa": "massa", "massaal": "massal", "massachusetts": "massachusett", "massaconsumptie": "massaconsumptie", "massadichtheid": "massadicht", "massale": "massal", "massaproduktie": "massaproduktie", "massaspectrometers": "massaspectrometer", "massaspectrometrie": "massaspectrometrie", "massastroom": "massastrom", "masseerde": "masseerd", "masseren": "masser", "massief": "massief", "massiefkarton": "massiefkarton", "massieve": "massiev", "massievig": "massiev", "massink": "massink", "mast": "mast", "mastbos": "mastbos", "masten": "mast", "mastersopleiding": "mastersopleid", "masthoogte": "masthoogt", "mat": "mat", "mate": "mat", "matelot": "matelot", "maten": "mat", "materiaal": "materiaal", "materiaalanalyses": "materiaalanalyses", "materiaaleigenschappen": "materiaaleigenschapp", "materiaalfouten": "materiaalfout", "materiaalgebruik": "materiaalgebruik", "materiaalhergebruik": "materiaalhergebruik", "materiaalintensiteit": "materiaalintensiteit", "materiaalkeuze": "materiaalkeuz", "materiaalkosten": "materiaalkost", "materiaalkunde": "materiaalkund", "materiaalresten": "materiaalrest", "materiaalsoort": "materiaalsoort", "materiaalstromen": "materiaalstrom", "materiaaltechnologie": "materiaaltechnologie", "materiaaltechnologisch": "materiaaltechnologisch", "material": "material", "materialen": "material", "materialentechnologie": "materialentechnologie", "materialisme": "materialism", "materialistische": "materialistisch", "materialiteiten": "materialiteit", "materials": "material", "materie": "materie", "materieel": "materieel", "materiële": "materiel", "matha": "matha", "matheid": "matheid", "mathematische": "mathematisch", "mathey": "mathey", "mathilde": "mathild", "mathildes": "mathildes", "matig": "matig", "matige": "matig", "matigen": "matig", "matigheid": "matig", "matje": "matj", "matjes": "matjes", "matraskern": "matraskern", "matrassen": "matrass", "matrijs": "matrijs", "matrix": "matrix", "matroos": "matros", "matrozen": "matroz", "matser": "matser", "matsuffe": "matsuff", "matte": "mat", "matten": "mat", "matter": "matter", "matthey": "matthey", "matto": "matto", "mau": "mau", "maui": "maui", "mauretaans": "mauretan", "mauretanië": "mauretanie", "maurits": "maurit", "max": "max", "maximaal": "maximal", "maximale": "maximal", "maximalisatie": "maximalisatie", "maximaliseren": "maximaliser", "maximeren": "maximer", "maximum": "maximum", "maximumgrens": "maximumgren", "maximumsnelheden": "maximumsnel", "maximumsnelheid": "maximumsnel", "mayen": "may", "mayr": "mayr", "mazda": "mazda", "mbb": "mbb", "mbi": "mbi", "mboca": "mboca", "mbr": "mbr", "mbt": "mbt", "mc": "mc", "mcclelland": "mcclelland", "mcdade": "mcdad", "mcdonalds": "mcdonald", "mcewan": "mcewan", "mcfc": "mcfc", "mchenry": "mchenry", "mckee": "mckee", "mckinnon": "mckinnon", "mcpa": "mcpa", "mctaggert": "mctaggert", "md": "md", "mdi": "mdi", "mdw": "mdw", "me": "me", "mec": "mec", "mecc": "mecc", "mechanical": "mechanical", "mechanisch": "mechanisch", "mechanische": "mechanisch", "mechanisme": "mechanism", "mechanisms": "mechanism", "mechatronica": "mechatronica", "mecklenburg": "mecklenburg", "med": "med", "mede": "med", "medearbeiders": "medearbeider", "medeburgers": "medeburger", "mededeelde": "mededeeld", "mededeelzaam": "mededeelzam", "mededeelzaamheid": "mededeelzam", "mededeelzaams": "mededeelzam", "mededelen": "mededel", "mededeling": "mededel", "mededelingen": "mededel", "mededingingsaspecten": "mededingingsaspect", "medefinanciering": "medefinancier", "medegedeeld": "medegedeeld", "medegevoel": "medegevoel", "medegevoeld": "medegevoeld", "medeleed": "medeled", "medelij": "medelij", "medelijden": "medelijd", "medelijdend": "medelijd", "medemblik": "medemblik", "medeplichtig": "medeplicht", "medesleping": "medeslep", "medesmart": "medesmart", "medespelers": "medespeler", "medestanders": "medestander", "medeverantwoordelijk": "medeverantwoord", "medewerker": "medewerker", "medewerkers": "medewerker", "medewerking": "medewerk", "medewerkster": "medewerkster", "medeweten": "medewet", "media": "media", "mediahype": "mediahyp", "mediation": "mediation", "medical": "medical", "medicamenten": "medicament", "medici": "medici", "medicijnen": "medicijn", "medicijnenvervaardiging": "medicijnenvervaard", "medicinale": "medicinal", "medio": "medio", "medisch": "medisch", "medische": "medisch", "meditatie": "meditatie", "mediterrane": "mediterran", "medium": "medium", "medvedev": "medvedev", "mee": "mee", "mée": "mee", "mèe": "mèe", "meé": "mee", "meebetalen": "meebetal", "meebouwen": "meebouw", "meebracht": "meebracht", "meebrengen": "meebreng", "meebrengt": "meebrengt", "meededen": "meeded", "meedeed": "meeded", "meedeelde": "meedeeld", "meedeelt": "meedeelt", "meedeinden": "meedeind", "meedeinende": "meedein", "meedeint": "meedeint", "meedenken": "meedenk", "meedineerde": "meedineerd", "meedingen": "meeding", "meedoen": "meedoen", "meedoet": "meedoet", "meedraaiden": "meedraaid", "meedroomden": "meedroomd", "meegaan": "meegan", "meegaandheid": "meegaand", "meegaat": "meegat", "meegebracht": "meegebracht", "meegedaan": "meegedan", "meegedeeld": "meegedeeld", "meegedongen": "meegedong", "meegeëxtrudeerd": "meegeextrudeerd", "meegegaan": "meegegan", "meegegeven": "meegegev", "meegegroeid": "meegegroeid", "meegeholpen": "meegeholp", "meegekregen": "meegekreg", "meegeleverd": "meegeleverd", "meegelopen": "meegelop", "meegenomen": "meegenom", "meegerekend": "meegerek", "meegestookt": "meegestookt", "meegestuurd": "meegestuurd", "meegeteld": "meegeteld", "meegetrokken": "meegetrok", "meegeven": "meegev", "meegevoerd": "meegevoerd", "meegeweefd": "meegeweefd", "meegewerkt": "meegewerkt", "meegewogen": "meegewog", "meeging": "meeging", "meel": "mel", "meeldauw": "meeldauw", "meeleefde": "meeleefd", "meelijden": "meelijd", "meelijdend": "meelijd", "meelijdende": "meelijd", "meemaken": "meemak", "meen": "men", "meenam": "meenam", "meenamen": "meenam", "meende": "meend", "meenden": "meend", "meenemen": "meenem", "meent": "meent", "meepraten": "meeprat", "meeprofiteren": "meeprofiter", "meer": "mer", "méér": "mer", "meerder": "meerder", "meerdere": "meerder", "meerderheid": "meerder", "meerderheidbelang": "meerderheidbelang", "meerderheidsbelang": "meerderheidsbelang", "meerderheidsparticipatie": "meerderheidsparticipatie", "meerekenen": "meereken", "meerekening": "meereken", "meerekent": "meerekent", "meergezinswoningen": "meergezinswon", "meerhoven": "meerhov", "meerjaren": "meerjar", "meerjarenafpraak": "meerjarenafprak", "meerjarenafspraak": "meerjarenafsprak", "meerjarenafspraken": "meerjarenafsprak", "meerjarenplan": "meerjarenplan", "meerjarenplanning": "meerjarenplann", "meerjarenprogramma": "meerjarenprogramma", "meerjarig": "meerjar", "meerjarige": "meerjar", "meerkosten": "meerkost", "meerlandengemeenten": "meerlandengemeent", "meermalen": "meermal", "meermalige": "meermal", "meern": "meern", "meeroken": "meerok", "meeropbrengsten": "meeropbrengst", "meerpaal": "meerpal", "meerprijs": "meerprijs", "meerssen": "meerss", "meertalig": "meertal", "meertalige": "meertal", "meertje": "meertj", "meertraps": "meertrap", "meervoudig": "meervoud", "meervoudige": "meervoud", "meerwaarde": "meerwaard", "meesleepte": "meesleept", "meesleepten": "meesleept", "meeslepen": "meeslep", "meesleping": "meeslep", "meespeelden": "meespeeld", "meespeelt": "meespeelt", "meespreken": "meesprek", "meest": "meest", "meestal": "meestal", "meeste": "meest", "meesten": "meest", "meester": "meester", "meesteres": "meesteres", "meesuffen": "meesuff", "meet": "met", "meetapparatuur": "meetapparatur", "meetbaar": "meetbar", "meetbare": "meetbar", "meetcampagne": "meetcampagn", "meetcampagnes": "meetcampagnes", "meetelde": "meeteld", "meetelectrode": "meetelectrod", "meetfout": "meetfout", "meetgegevens": "meetgegeven", "meeting": "meeting", "meetinstrumenten": "meetinstrument", "meetkamer": "meetkamer", "meetkundige": "meetkund", "meetlocaties": "meetlocaties", "meetlokaties": "meetlokaties", "meetmethode": "meetmethod", "meetmethoden": "meetmethod", "meetnet": "meetnet", "meetnetten": "meetnet", "meetnormen": "meetnorm", "meetplaatsen": "meetplaats", "meetpunt": "meetpunt", "meetpunten": "meetpunt", "meetrappen": "meetrapp", "meetresultaten": "meetresultat", "meetsondes": "meetsondes", "meetstations": "meetstation", "meetstrategie": "meetstrategie", "meetsysteem": "meetsystem", "meetsystemen": "meetsystem", "meette": "met", "meetwaarden": "meetwaard", "meetwagen": "meetwag", "meeuwen": "meeuw", "meevallen": "meevall", "meevoelt": "meevoelt", "meevoerde": "meevoerd", "meevoeren": "meevoer", "meevoering": "meevoer", "meewarig": "meewar", "meewarige": "meewar", "meewarigheid": "meewar", "meeweegt": "meeweegt", "meewegen": "meeweg", "meewerken": "meewerk", "meewerkt": "meewerkt", "mega": "mega", "megapower": "megapower", "megaprojecten": "megaproject", "megastad": "megastad", "megaton": "megaton", "megawatt": "megawatt", "megawatts": "megawatt", "megawattuur": "megawattur", "mehrwertsteuer": "mehrwertsteuer", "mei": "mei", "meid": "meid", "meide": "meid", "meiden": "meid", "meidenhistorie": "meidenhistorie", "meidenkamers": "meidenkamer", "meidoorn": "meidoorn", "meijden": "meijd", "meijer": "meijer", "meijling": "meijling", "meinhof": "meinhof", "meisje": "meisj", "meisjes": "meisjes", "meisjesachtig": "meisjesacht", "meisjesachtige": "meisjesacht", "meisjesdromen": "meisjesdrom", "meisjeshoofd": "meisjeshoofd", "meisjesjaren": "meisjesjar", "meisjesleven": "meisjeslev", "meisjeslichaam": "meisjeslicham", "meisjesstem": "meisjesstem", "meisjeszenuwen": "meisjeszenuw", "meisjesziel": "meisjesziel", "mejeri": "mejeri", "mekong": "mekong", "mekwademo": "mekwademo", "melancholie": "melancholie", "melancholieën": "melancholieen", "melancholiek": "melancholiek", "melancholieke": "melancholiek", "melancholische": "melancholisch", "melanoom": "melanom", "meld": "meld", "meldde": "meld", "meldden": "meld", "melden": "meld", "meldende": "meldend", "melding": "melding", "meldingen": "melding", "meldingenformulier": "meldingenformulier", "meldings": "melding", "meldingsformulier": "meldingsformulier", "meldingsplicht": "meldingsplicht", "meldkamer": "meldkamer", "meldpunt": "meldpunt", "meldpunten": "meldpunt", "meldt": "meldt", "melitopol": "melitopol", "melitta": "melitta", "melk": "melk", "melkconsumptie": "melkconsumptie", "melkert": "melkert", "melkertbanen": "melkertban", "melkfles": "melkfles", "melkgezichtje": "melkgezichtj", "melkinstallatie": "melkinstallatie", "melkinstallaties": "melkinstallaties", "melkkoe": "melkkoe", "melkkoeien": "melkkoei", "melkniveau": "melkniveau", "melkoe": "melkoe", "melkpoederfabriek": "melkpoederfabriek", "melkpoeders": "melkpoeder", "melkprijs": "melkprijs", "melkproduktie": "melkproduktie", "melkquotering": "melkquoter", "melkquotum": "melkquotum", "melkrundveehouderijen": "melkrundveehouderij", "melkspoelwater": "melkspoelwater", "melkstimulerend": "melkstimuler", "melktank": "melktank", "melkunie": "melkunie", "melkvee": "melkvee", "melkveebedrijven": "melkveebedrijv", "melkveeboeren": "melkveeboer", "melkveehouder": "melkveehouder", "melkveehouderij": "melkveehouderij", "melkveehouderijbedrijven": "melkveehouderijbedrijv", "melkveehouders": "melkveehouder", "melkverpakkingen": "melkverpak", "melkzuren": "melkzur", "melkzuur": "melkzur", "melle": "mell", "melnik": "melnik", "melodieën": "melodieen", "meltdown": "meltdown", "membraan": "membran", "membraanfilter": "membraanfilter", "membraanfiltratie": "membraanfiltratie", "membraankeuze": "membraankeuz", "membraanmodule": "membraanmodul", "membraanmodulen": "membraanmodul", "membraanprestaties": "membraanprestaties", "membraanscheiding": "membraanscheid", "membraansysteem": "membraansystem", "membraansystemen": "membraansystem", "membraantechnologie": "membraantechnologie", "membraanvervuiling": "membraanvervuil", "membrane": "membran", "membranen": "membran", "membrex": "membrex", "memelancholie": "memelancholie", "memo": "memo", "memon": "memon", "memorandum": "memorandum", "memorie": "memorie", "memory": "memory", "memorycard": "memorycard", "men": "men", "menagerie": "menagerie", "menaldum": "menaldum", "meneer": "mener", "menen": "men", "menende": "menend", "mengde": "mengd", "mengelberg": "mengelberg", "mengelde": "mengeld", "mengelden": "mengeld", "mengeling": "mengel", "mengelt": "mengelt", "mengen": "meng", "mengers": "menger", "menggranulaat": "menggranulat", "menging": "menging", "mengkamer": "mengkamer", "mengkleuren": "mengkleur", "mengkorrelmix": "mengkorrelmix", "mengsel": "mengsel", "mengsels": "mengsel", "mengseltoxiciteit": "mengseltoxiciteit", "mengt": "mengt", "mengverhouding": "mengverhoud", "mengvijzels": "mengvijzel", "mengvoederbedrijf": "mengvoederbedrijf", "mengvoederindustrie": "mengvoederindustrie", "mengvoeders": "mengvoeder", "mengvoercoöperatie": "mengvoercooperatie", "mengvoerindustrie": "mengvoerindustrie", "menige": "menig", "menigte": "menigt", "mening": "mening", "meningen": "mening", "meningsverschil": "meningsverschil", "meningsverschillen": "meningsverschill", "meningsvorming": "meningsvorm", "menken": "menk", "menlo": "menlo", "mennen": "menn", "mens": "men", "mensehanden": "mensehand", "menselijk": "menselijk", "menselijke": "menselijk", "menselijkgheid": "menselijkg", "menselijkheden": "menselijk", "menselijkheid": "menselijk", "menselijkste": "menselijkst", "mensen": "mens", "mènsen": "mèns", "mensenhaar": "mensenhar", "mensenkennis": "mensenkennis", "mensenleven": "mensenlev", "mensenlevens": "mensenleven", "mensenrechten": "mensenrecht", "mensenrechtenactivist": "mensenrechtenactivist", "mensenrechtenbeleid": "mensenrechtenbeleid", "mensenrechtenbeweging": "mensenrechtenbeweg", "mensenrechtencommissie": "mensenrechtencommissie", "mensenschuw": "mensenschuw", "mensenschuwte": "mensenschuwt", "mensenzielen": "mensenziel", "mensheden": "mensheid", "mensheid": "mensheid", "mensjes": "mensjes", "menskracht": "menskracht", "mensloze": "mensloz", "mentale": "mental", "mentaliteit": "mentaliteit", "mentaliteitsverandering": "mentaliteitsverander", "mentaliteitveranderingen": "mentaliteitverander", "menting": "menting", "menu": "menu", "menugestuurd": "menugestuurd", "mep": "mep", "meppel": "meppel", "mer": "mer", "mercedes": "mercedes", "merci": "merci", "mercier": "mercier", "merck": "merck", "mercure": "mercur", "mercurius": "mercurius", "meren": "mer", "merendeel": "merendel", "merg": "merg", "mergelland": "mergelland", "merieux": "merieux", "merit": "merit", "merites": "merites", "merk": "merk", "merkbaar": "merkbar", "merkbare": "merkbar", "merkel": "merkel", "merken": "merk", "merkende": "merkend", "merknaam": "merknam", "merksignalen": "merksignal", "merkt": "merkt", "merkte": "merkt", "merkteken": "merktek", "merkten": "merkt", "merkwaardige": "merkwaard", "merwede": "merwed", "merwedijk": "merwedijk", "mes": "mes", "mesheften": "mesheft", "meso": "meso", "mesolongi": "mesolongi", "messe": "mes", "messen": "mess", "messensysteem": "messensystem", "messpress": "messpres", "mest": "mest", "mestaangifte": "mestaangift", "mestaangifteformulieren": "mestaangifteformulier", "mestactie": "mestactie", "mestactieplan": "mestactieplan", "mestacties": "mestacties", "mestadministratie": "mestadministratie", "mestafleveringsbewijzen": "mestafleveringsbewijz", "mestafleveringsestafette": "mestafleveringsestafet", "mestafvoer": "mestafvoer", "mestafzet": "mestafzet", "mestafzetcontract": "mestafzetcontract", "mestafzetcontracten": "mestafzetcontract", "mestakkoord": "mestakkoord", "mestbandbatterijen": "mestbandbatterij", "mestbank": "mestbank", "mestbanken": "mestbank", "mestbassins": "mestbassin", "mestbeleid": "mestbeleid", "mestbewerking": "mestbewerk", "mestbewerkingstechniek": "mestbewerkingstechniek", "mestboekhouding": "mestboekhoud", "mestboekhuding": "mestboekhud", "mestbon": "mestbon", "mestbonnen": "mestbonn", "mestbonnenboycot": "mestbonnenboycot", "mestboycot": "mestboycot", "mestbureau": "mestbureau", "mestdebat": "mestdebat", "mestdecreet": "mestdecret", "mestdistributeurs": "mestdistributeur", "mestdossiers": "mestdossier", "mestdroging": "mestdrog", "mesterijen": "mesterij", "mestexporterende": "mestexporter", "mestfabriek": "mestfabriek", "mestfabrieken": "mestfabriek", "mestfonds": "mestfond", "mestfractie": "mestfractie", "mestgang": "mestgang", "mestgassen": "mestgass", "mestgebruik": "mestgebruik", "mestgift": "mestgift", "mesthandel": "mesthandel", "mestheffing": "mestheff", "mesthoop": "mesthop", "mesthuishouding": "mesthuishoud", "mestinjecteur": "mestinjecteur", "mestinjectoren": "mestinjector", "mestkappen": "mestkapp", "mestkorrels": "mestkorrel", "mestloods": "mestlod", "mestmaatregelen": "mestmaatregel", "mestmarkt": "mestmarkt", "mestmoeras": "mestmoeras", "mestnadroogsysteem": "mestnadroogsystem", "mestnorm": "mestnorm", "mestnormen": "mestnorm", "mestnotitie": "mestnotitie", "mestopslag": "mestopslag", "mestopslagplaats": "mestopslagplat", "mestorganisaties": "mestorganisaties", "mestoverleg": "mestoverleg", "mestoverschot": "mestoverschot", "mestoverschotgebieden": "mestoverschotgebied", "mestoverschotten": "mestoverschot", "mestplan": "mestplan", "mestplannen": "mestplann", "mestprobleem": "mestproblem", "mestproblematiek": "mestproblematiek", "mestproblemen": "mestproblem", "mestproduktie": "mestproduktie", "mestproduktienorm": "mestproduktienorm", "mestproduktierechten": "mestproduktierecht", "mestprotest": "mestprotest", "mestput": "mestput", "mestquota": "mestquota", "mestquotum": "mestquotum", "mestrechten": "mestrecht", "mestregels": "mestregel", "mestregistratie": "mestregistratie", "mestreservoirs": "mestreservoir", "mestsaneringsfonds": "mestsaneringsfond", "mestscheider": "mestscheider", "mestscheiders": "mestscheider", "mestschuiven": "mestschuiv", "mestsilo": "mestsilo", "mestsoorten": "mestsoort", "mestspecialisten": "mestspecialist", "meststof": "meststof", "meststoffen": "meststoff", "meststoffengebruik": "meststoffengebruik", "meststoffenwet": "meststoffenwet", "meststromen": "meststrom", "mesttransacties": "mesttransacties", "mesttransport": "mesttransport", "mestuitrijden": "mestuitrijd", "mestuitrijvoorwaarden": "mestuitrijvoorwaard", "mestvarkens": "mestvarken", "mestverwerker": "mestverwerker", "mestverwerkers": "mestverwerker", "mestverwerking": "mestverwerk", "mestverwerkingsbedrijf": "mestverwerkingsbedrijf", "mestverwerkingsfabriek": "mestverwerkingsfabriek", "mestverwerkingsfabrieken": "mestverwerkingsfabriek", "mestverwerkingsinstallatie": "mestverwerkingsinstallatie", "mestverwerkingskosten": "mestverwerkingskost", "mestverwerkingsorganisatie": "mestverwerkingsorganisatie", "mestverwerkingssysteem": "mestverwerkingssystem", "mestvocht": "mestvocht", "mestvolume": "mestvolum", "mestvoorstellen": "mestvoorstell", "mestvraagstuk": "mestvraagstuk", "mestvrije": "mestvrij", "mestwetgeving": "mestwetgev", "mestwetten": "mestwet", "met": "met", "meta": "meta", "metaal": "metal", "metaalafval": "metaalafval", "metaalalkylenfabriek": "metaalalkylenfabriek", "metaalbedrijven": "metaalbedrijv", "metaalbewerking": "metaalbewerk", "metaalbewerkingsbedrijf": "metaalbewerkingsbedrijf", "metaalbewerkingszuur": "metaalbewerkingszur", "metaalconstructies": "metaalconstructies", "metaaldeeltjes": "metaaldeeltjes", "metaalertsfabrieken": "metaalertsfabriek", "metaalhoudende": "metaalhoud", "metaalhydroxide": "metaalhydroxid", "metaalindustrie": "metaalindustrie", "metaallegeringen": "metaalleger", "metaalmengsels": "metaalmengsel", "metaaloppervlakken": "metaaloppervlak", "metaaloxidedeeltjes": "metaaloxidedeeltjes", "metaaloxiden": "metaaloxid", "metaaloxyde": "metaaloxyd", "metaaloxyden": "metaaloxyd", "metaalpoeder": "metaalpoeder", "metaalproducenten": "metaalproducent", "metaalsilicaten": "metaalsilicat", "metaalunie": "metaalunie", "metaalverwerking": "metaalverwerk", "metaalzouten": "metaalzout", "metabolic": "metabolic", "metaboliet": "metaboliet", "metabolieten": "metaboliet", "metabouw": "metabouw", "metacrylzuur": "metacrylzur", "metal": "metal", "metalchem": "metalchem", "metalektro": "metalektro", "metalen": "metal", "metalenemissies": "metalenemissies", "metálicos": "metalicos", "metallichesky": "metallichesky", "metalloceen": "metallocen", "metalloceenkatalysator": "metalloceenkatalysator", "metallurgische": "metallurgisch", "metam": "metam", "metamorfose": "metamorfos", "metawa": "metawa", "meteen": "meten", "meten": "met", "metende": "metend", "meteon": "meteon", "meteoor": "meteoor", "meteoriet": "meteoriet", "meteorologen": "meteorolog", "meteorological": "meteorological", "meteorologie": "meteorologie", "meteorologische": "meteorologisch", "meter": "meter", "meters": "meter", "meterslange": "meterslang", "methaan": "methan", "methaangas": "methaangas", "methaangisting": "methaangist", "methaanopbrengst": "methaanopbrengst", "methanol": "methanol", "methode": "method", "methoden": "method", "methodes": "methodes", "methodiek": "methodiek", "methodisch": "methodisch", "methodische": "methodisch", "methodologie": "methodologie", "methoxy": "methoxy", "methyl": "methyl", "methylbromide": "methylbromid", "methylchloroform": "methylchloroform", "methylcyclopentadienyl": "methylcyclopentadienyl", "methylcyclopentadiënylmangaan": "methylcyclopentadienylmangan", "methyldiethanolamine": "methyldiethanolamin", "methyleenchloride": "methyleenchlorid", "methylethylamine": "methylethylamin", "methylmetacrylaat": "methylmetacrylat", "meting": "meting", "metingen": "meting", "metrex": "metrex", "metro": "metro", "metrolijn": "metrolijn", "metrologie": "metrologie", "metropolen": "metropol", "metropool": "metropol", "metrostation": "metrostation", "metrosysteem": "metrosystem", "metroverbinding": "metroverbind", "metsel": "metsel", "metselzand": "metselzand", "mettertijd": "mettertijd", "meubel": "meubel", "meubelen": "meubel", "meubels": "meubel", "meubeltjes": "meubeltjes", "meubilair": "meubilair", "meubileerde": "meubileerd", "meubileren": "meubiler", "meulemans": "meuleman", "meulen": "meul", "meulenberg": "meulenberg", "meulendijks": "meulendijk", "meulenmeester": "meulenmeester", "meuwissen": "meuwiss", "mevr": "mevr", "mevrouw": "mevrouw", "mewa": "mewa", "mexicaanse": "mexican", "mexico": "mexico", "meyburg": "meyburg", "mezelf": "mezelf", "mfh": "mfh", "mg": "mg", "mgas": "mgas", "mgc": "mgc", "mgso": "mgso", "mhp": "mhp", "mhz": "mhz", "mi": "mi", "miami": "miami", "miar": "miar", "miasmas": "miasmas", "mica": "mica", "michael": "michael", "michigan": "michigan", "micon": "micon", "micro": "micro", "microben": "microb", "microbiële": "microbiel", "microbiologie": "microbiologie", "microbiologisch": "microbiologisch", "microbiologische": "microbiologisch", "microbische": "microbisch", "microdrainage": "microdrainag", "microfiltratie": "microfiltratie", "microfoons": "microfon", "microgram": "microgram", "micrometer": "micrometer", "microniseren": "microniser", "microniveau": "microniveau", "microorganismen": "microorganism", "microprocessor": "microprocessor", "microprocessoren": "microprocessor", "microprocessortechniek": "microprocessortechniek", "microscopisch": "microscopisch", "microscopische": "microscopisch", "microsievert": "microsievert", "microsilica": "microsilica", "microverontreiniging": "microverontrein", "microverontreinigingen": "microverontrein", "microwatt": "microwatt", "middachten": "middacht", "middag": "middag", "middagen": "middag", "middagh": "middagh", "middagmaal": "middagmal", "middagrit": "middagrit", "middagrust": "middagrust", "middags": "middag", "middagtafel": "middagtafel", "middaguren": "middagur", "middel": "middel", "middelbaar": "middel", "middelburgse": "middelburg", "middeldrukgedeelte": "middeldrukgedeelt", "middeleeuwse": "middeleeuw", "middelen": "middel", "middelgebergte": "middelgebergt", "middelgrote": "middelgrot", "middelhoge": "middelhog", "middeling": "middel", "middelkoop": "middelkop", "middellandse": "middelland", "middellange": "middellang", "middelmatig": "middelmat", "middelpunt": "middelpunt", "middels": "middel", "middelspanningsinstallaties": "middelspanningsinstallaties", "middelspanningsnet": "middelspanningsnet", "middelvoorschriften": "middelvoorschrift", "middelzware": "middelzwar", "midden": "mid", "middengebied": "middengebied", "middenkader": "middenkader", "middenlimburgse": "middenlimburg", "middenmeer": "middenmer", "middenoosten": "middenoost", "middenpunt": "middenpunt", "middenspanningsstations": "middenspanningsstation", "middenstanders": "middenstander", "middenweg": "middenweg", "middletown": "middletown", "midland": "midland", "midoost": "midoost", "midreth": "midreth", "mie": "mie", "mieke": "miek", "mierennest": "mierennest", "mierlo": "mierlo", "migratie": "migratie", "migratiebanen": "migratieban", "migratory": "migratory", "migrerende": "migrer", "mii": "mii", "mij": "mij", "mijden": "mijd", "mijdrecht": "mijdrecht", "mijl": "mijl", "mijlen": "mijl", "mijlenlange": "mijlenlang", "mijllange": "mijllang", "mijlpaal": "mijlpal", "mijlpalen": "mijlpal", "mijlszone": "mijlszon", "mijmeren": "mijmer", "mijmeringen": "mijmer", "mijn": "mijn", "mijnbouw": "mijnbouw", "mijnbouwaktiviteiten": "mijnbouwaktiviteit", "mijnbouwbedrijven": "mijnbouwbedrijv", "mijnbouwbureau": "mijnbouwbureau", "mijnbouwkunde": "mijnbouwkund", "mijnbouwkundige": "mijnbouwkund", "mijnbouwonderneming": "mijnbouwondernem", "mijne": "mijn", "mijnen": "mijn", "mijnent": "mijnent", "mijner": "mijner", "mijnproject": "mijnproject", "mijnsteenverzet": "mijnsteenverzet", "mijnstreek": "mijnstrek", "mijnterreinen": "mijnterrein", "mijnwerker": "mijnwerker", "mijzelf": "mijzelf", "mike": "mik", "mikpunt": "mikpunt", "mikpunten": "mikpunt", "mikt": "mikt", "mikulski": "mikulski", "mil": "mil", "milaan": "milan", "mild": "mild", "milestone": "mileston", "milford": "milford", "milieu": "milieu", "milieuactieplan": "milieuactieplan", "milieuactieplannen": "milieuactieplann", "milieuactieprogramma": "milieuactieprogramma", "milieuactivisten": "milieuactivist", "milieuactiviteiten": "milieuactiviteit", "milieuadministratieprogramma": "milieuadministratieprogramma", "milieuadvies": "milieuadvies", "milieuadviezen": "milieuadviez", "milieuadvisering": "milieuadviser", "milieuadviseurs": "milieuadviseur", "milieuaffaire": "milieuaffair", "milieuaffaires": "milieuaffaires", "milieuafspraken": "milieuafsprak", "milieuambtenaar": "milieuambtenar", "milieuanalyse": "milieuanalys", "milieuanalyses": "milieuanalyses", "milieuaspecten": "milieuaspect", "milieubaan": "milieuban", "milieubalans": "milieubalan", "milieubalansen": "milieubalans", "milieubanden": "milieuband", "milieubanen": "milieuban", "milieubarometer": "milieubarometer", "milieubaten": "milieubat", "milieubedrijf": "milieubedrijf", "milieubedrijfsplan": "milieubedrijfsplan", "milieubedrijven": "milieubedrijv", "milieubegrippen": "milieubegripp", "milieubeheer": "milieubeher", "milieubeheersysteem": "milieubeheersystem", "milieubelang": "milieubelang", "milieubelangen": "milieubelang", "milieubelastend": "milieubelast", "milieubelastende": "milieubelast", "milieubelasting": "milieubelast", "milieubelastingen": "milieubelast", "milieubeleid": "milieubeleid", "milieubeleids": "milieubeleid", "milieubeleidsindicatoren": "milieubeleidsindicator", "milieubeleidsovereenkomst": "milieubeleidsovereenkomst", "milieubeleidsplan": "milieubeleidsplan", "milieubeleidsplannen": "milieubeleidsplann", "milieubeleidsprogramma": "milieubeleidsprogramma", "milieubeleidsverklaring": "milieubeleidsverklar", "milieubeoordeling": "milieubeoordel", "milieuberaad": "milieuberad", "milieubeschaving": "milieubeschav", "milieubeschermend": "milieubescherm", "milieubeschermende": "milieubescherm", "milieubeschermers": "milieubeschermer", "milieubescherming": "milieubescherm", "milieubeschermingsbeleid": "milieubeschermingsbeleid", "milieubeschermingsgebieden": "milieubeschermingsgebied", "milieubeschermregels": "milieubeschermregel", "milieubesef": "milieubesef", "milieubeslaglegging": "milieubeslaglegg", "milieubesparende": "milieubespar", "milieubeurs": "milieubeur", "milieubevrijdingsteam": "milieubevrijdingsteam", "milieubewaking": "milieubewak", "milieubeweging": "milieubeweg", "milieubewegingen": "milieubeweg", "milieubewust": "milieubewust", "milieubewuste": "milieubewust", "milieubewuster": "milieubewuster", "milieubewustzijn": "milieubewustzijn", "milieubezwaren": "milieubezwar", "milieubijstandsteam": "milieubijstandsteam", "milieubiologie": "milieubiologie", "milieublad": "milieublad", "milieubladen": "milieublad", "milieubouw": "milieubouw", "milieubureau": "milieubureau", "milieucentrum": "milieucentrum", "milieucertificering": "milieucertificer", "milieuchecklist": "milieuchecklist", "milieucijfer": "milieucijfer", "milieuclaims": "milieuclaim", "milieuclassificatie": "milieuclassificatie", "milieuclassificaties": "milieuclassificaties", "milieuclub": "milieuclub", "milieucode": "milieucod", "milieucommisaris": "milieucommisaris", "milieucommissaris": "milieucommissaris", "milieucommissie": "milieucommissie", "milieucommunicatie": "milieucommunicatie", "milieucompartiment": "milieucompartiment", "milieucondities": "milieucondities", "milieuconferentie": "milieuconferentie", "milieucongres": "milieucongres", "milieucontainer": "milieucontainer", "milieucontroles": "milieucontroles", "milieuconvenant": "milieuconvenant", "milieuconvenanten": "milieuconvenant", "milieucoöperatie": "milieucooperatie", "milieucoöperaties": "milieucooperaties", "milieucoördinator": "milieucoordinator", "milieucriminaliteit": "milieucriminaliteit", "milieucrisis": "milieucrisis", "milieucriteria": "milieucriteria", "milieucriterium": "milieucriterium", "milieucursus": "milieucursus", "milieudebat": "milieudebat", "milieudefensie": "milieudefensie", "milieudelict": "milieudelict", "milieudelicten": "milieudelict", "milieudepartement": "milieudepartement", "milieudeskundige": "milieudeskund", "milieudeskundigen": "milieudeskund", "milieudialoog": "milieudialog", "milieudienst": "milieudienst", "milieudiensten": "milieudienst", "milieudivisie": "milieudivisie", "milieudochter": "milieudochter", "milieudoelen": "milieudoel", "milieudoelstelling": "milieudoelstell", "milieudoelstellingen": "milieudoelstell", "milieudruk": "milieudruk", "milieueducatie": "milieueducatie", "milieueffect": "milieueffect", "milieueffecten": "milieueffect", "milieueffectrapportage": "milieueffectrapportag", "milieueffectrapportages": "milieueffectrapportages", "milieueisen": "milieueis", "milieufederatie": "milieufederatie", "milieufederaties": "milieufederaties", "milieufilosofie": "milieufilosofie", "milieufilter": "milieufilter", "milieufonds": "milieufond", "milieufraude": "milieufraud", "milieufruit": "milieufruit", "milieugebied": "milieugebied", "milieugebruik": "milieugebruik", "milieugebruiksruimte": "milieugebruiksruimt", "milieugebruiksvergunningen": "milieugebruiksvergunn", "milieugedeputeerde": "milieugedeputeerd", "milieugedrag": "milieugedrag", "milieugegevens": "milieugegeven", "milieugelden": "milieugeld", "milieugericht": "milieugericht", "milieugerichte": "milieugericht", "milieugevaarlijke": "milieugevar", "milieugevoelige": "milieugevoel", "milieugevolgen": "milieugevolg", "milieugroente": "milieugroent", "milieugroep": "milieugroep", "milieugroepen": "milieugroep", "milieugroepering": "milieugroeper", "milieugroeperingen": "milieugroeper", "milieugrondslag": "milieugrondslag", "milieuhandhaving": "milieuhandhav", "milieuhandhavingsoverleg": "milieuhandhavingsoverleg", "milieuheffing": "milieuheff", "milieuheffingen": "milieuheff", "milieuhinder": "milieuhinder", "milieuhulp": "milieuhulp", "milieuhygiëne": "milieuhygien", "milieuhygiënisch": "milieuhygienisch", "milieuhygienische": "milieuhygienisch", "milieuhygiënische": "milieuhygienisch", "milieuinformatiepakket": "milieuinformatiepakket", "milieuinspectie": "milieuinspectie", "milieuinspectiedienst": "milieuinspectiedienst", "milieuinvesteringen": "milieuinvester", "milieujaarverslag": "milieujaarverslag", "milieujaarverslagen": "milieujaarverslag", "milieukampioen": "milieukampioen", "milieukennis": "milieukennis", "milieukeur": "milieukeur", "milieukeurmerk": "milieukeurmerk", "milieukeurnormen": "milieukeurnorm", "milieukeurpercelen": "milieukeurpercel", "milieukeurtelers": "milieukeurteler", "milieuklachten": "milieuklacht", "milieuklachtenlijn": "milieuklachtenlijn", "milieuklassen": "milieuklass", "milieukosten": "milieukost", "milieukritiek": "milieukritiek", "milieukunde": "milieukund", "milieukundige": "milieukund", "milieukundigen": "milieukund", "milieukwaliteit": "milieukwaliteit", "milieukwaliteitsdoelstellingen": "milieukwaliteitsdoelstell", "milieukwaliteitsnorm": "milieukwaliteitsnorm", "milieukwesties": "milieukwesties", "milieulaboratoria": "milieulaboratoria", "milieuland": "milieuland", "milieulast": "milieulast", "milieulasten": "milieulast", "milieulease": "milieuleas", "milieulijst": "milieulijst", "milieulobby": "milieulobby", "milieuloket": "milieuloket", "milieumaat": "milieumat", "milieumaatregel": "milieumaatregel", "milieumaatregelen": "milieumaatregel", "milieumaatschappij": "milieumaatschappij", "milieumanagement": "milieumanagement", "milieumarketing": "milieumarket", "milieumarkt": "milieumarkt", "milieumarkten": "milieumarkt", "milieumaten": "milieumat", "milieumedewerker": "milieumedewerker", "milieumeetlat": "milieumeetlat", "milieumeetmethoden": "milieumeetmethod", "milieumensen": "milieumens", "milieumetingen": "milieumet", "milieuminister": "milieuminister", "milieuministerie": "milieuministerie", "milieuministers": "milieuminister", "milieumonitor": "milieumonitor", "milieunorm": "milieunorm", "milieunormen": "milieunorm", "milieuonderzoek": "milieuonderzoek", "milieuonderzoeksbureau": "milieuonderzoeksbureau", "milieuonvriendelijk": "milieuonvriend", "milieuonvriendelijke": "milieuonvriend", "milieuoogpunt": "milieuoogpunt", "milieuoordelen": "milieuoordel", "milieuorganisatie": "milieuorganisatie", "milieuorganisaties": "milieuorganisaties", "milieuoverwegingen": "milieuoverweg", "milieupakket": "milieupakket", "milieuparagraaf": "milieuparagraf", "milieupaviljoen": "milieupaviljoen", "milieuperspectieven": "milieuperspectiev", "milieuplan": "milieuplan", "milieuplanbureau": "milieuplanbureau", "milieuplannen": "milieuplann", "milieuplatform": "milieuplatform", "milieuplein": "milieuplein", "milieupolitie": "milieupolitie", "milieuprestatie": "milieuprestatie", "milieuprestaties": "milieuprestaties", "milieuprijs": "milieuprijs", "milieuprijsvraag": "milieuprijsvrag", "milieuprijzen": "milieuprijz", "milieuprioriteit": "milieuprioriteit", "milieuprioriteiten": "milieuprioriteit", "milieuprobleem": "milieuproblem", "milieuproblematiek": "milieuproblematiek", "milieuproblemen": "milieuproblem", "milieuprocedures": "milieuprocedures", "milieuproces": "milieuproces", "milieuprodukten": "milieuprodukt", "milieuproduktiebedrijven": "milieuproduktiebedrijv", "milieuproduktinformatie": "milieuproduktinformatie", "milieuprofiel": "milieuprofiel", "milieuprofielen": "milieuprofiel", "milieuprofilering": "milieuprofiler", "milieuprogramma": "milieuprogramma", "milieuprogrammatuur": "milieuprogrammatur", "milieuproject": "milieuproject", "milieuprojecten": "milieuproject", "milieuraad": "milieurad", "milieuramp": "milieuramp", "milieurampen": "milieuramp", "milieurapport": "milieurapport", "milieurapportage": "milieurapportag", "milieurapportages": "milieurapportages", "milieurapporten": "milieurapport", "milieurechercheurs": "milieurechercheur", "milieurecht": "milieurecht", "milieurechtelijke": "milieurecht", "milieureclame": "milieureclam", "milieureclamecode": "milieureclamecod", "milieuregelgeving": "milieuregelgev", "milieuregels": "milieuregel", "milieurelatie": "milieurelatie", "milieurendement": "milieurendement", "milieuresultaten": "milieuresultat", "milieurichtlijnen": "milieurichtlijn", "milieurisico": "milieurisico", "milieuruimte": "milieuruimt", "milieus": "milieus", "milieusamenwerking": "milieusamenwerk", "milieusamenwerkingsverband": "milieusamenwerkingsverband", "milieuschade": "milieuschad", "milieuschadelijk": "milieuschad", "milieuschadelijke": "milieuschad", "milieuschadelijkheid": "milieuschad", "milieuschandaal": "milieuschandal", "milieuscore": "milieuscor", "milieuscores": "milieuscores", "milieusecretaris": "milieusecretaris", "milieusector": "milieusector", "milieuservice": "milieuservic", "milieusituatie": "milieusituatie", "milieusocioloog": "milieusociolog", "milieusoftware": "milieusoftwar", "milieusparende": "milieuspar", "milieuspecialist": "milieuspecialist", "milieuspecificaties": "milieuspecificaties", "milieustal": "milieustal", "milieustandaarden": "milieustandaard", "milieustempel": "milieustempel", "milieusticker": "milieusticker", "milieustrafrecht": "milieustrafrecht", "milieustrafzaken": "milieustrafzak", "milieustrategie": "milieustrategie", "milieustrijd": "milieustrijd", "milieustudie": "milieustudie", "milieusystemen": "milieusystem", "milieutaak": "milieutak", "milieutaakstelling": "milieutaakstell", "milieutaakstellingen": "milieutaakstell", "milieutaken": "milieutak", "milieutarieven": "milieutariev", "milieutax": "milieutax", "milieuteam": "milieuteam", "milieutechniek": "milieutechniek", "milieutechniekdag": "milieutechniekdag", "milieutechnieken": "milieutechniek", "milieutechnisch": "milieutechnisch", "milieutechnische": "milieutechnisch", "milieutechnologie": "milieutechnologie", "milieutechnologiebedrijf": "milieutechnologiebedrijf", "milieutechnologiebedrijven": "milieutechnologiebedrijv", "milieutechnologiebeurs": "milieutechnologiebeur", "milieutechnologiebijeenkomsten": "milieutechnologiebijeenkomst", "milieutechnologiemarkt": "milieutechnologiemarkt", "milieutechnologiesector": "milieutechnologiesector", "milieutechnologievakbeurs": "milieutechnologievakbeur", "milieutechnologisch": "milieutechnologisch", "milieutechnologische": "milieutechnologisch", "milieutechologie": "milieutechologie", "milieuteksten": "milieutekst", "milieutelefoon": "milieutelefon", "milieutermen": "milieuterm", "milieuterrein": "milieuterrein", "milieutest": "milieutest", "milieuthema": "milieuthema", "milieutoepassingen": "milieutoepass", "milieutoeslag": "milieutoeslag", "milieutoets": "milieutoet", "milieuveilige": "milieuveil", "milieuverantwoord": "milieuverantwoord", "milieuverantwoorde": "milieuverantwoord", "milieuverantwoordelijke": "milieuverantwoord", "milieuverbetering": "milieuverbeter", "milieuverbeteringen": "milieuverbeter", "milieuverbeteringsprojecten": "milieuverbeteringsproject", "milieuverdiensten": "milieuverdienst", "milieuvergelijking": "milieuvergelijk", "milieuvergunning": "milieuvergunn", "milieuvergunningaanvraag": "milieuvergunningaanvrag", "milieuvergunningaanvragen": "milieuvergunningaanvrag", "milieuvergunningen": "milieuvergunn", "milieuvergunningenbeleid": "milieuvergunningenbeleid", "milieuvergunningenprocedures": "milieuvergunningenprocedures", "milieuvergunningsprocedure": "milieuvergunningsprocedur", "milieuvergunningverlening": "milieuvergunningverlen", "milieuvericateur": "milieuvericateur", "milieuverkenning": "milieuverkenn", "milieuverkenningen": "milieuverkenn", "milieuverklaring": "milieuverklar", "milieuverklaringen": "milieuverklar", "milieuvernietiging": "milieuverniet", "milieuverontreiniging": "milieuverontrein", "milieuverordening": "milieuverorden", "milieuverordeningen": "milieuverorden", "milieuverpakking": "milieuverpak", "milieuverpestende": "milieuverpest", "milieuverplichtingen": "milieuverplicht", "milieuverslag": "milieuverslag", "milieuverslagen": "milieuverslag", "milieuverslaggeving": "milieuverslaggev", "milieuverslaglegging": "milieuverslaglegg", "milieuverslagplicht": "milieuverslagplicht", "milieuverslechtering": "milieuverslechter", "milieuvervuilend": "milieuvervuil", "milieuvervuilende": "milieuvervuil", "milieuvervuiler": "milieuvervuiler", "milieuvervuilers": "milieuvervuiler", "milieuvervuiling": "milieuvervuil", "milieuverzekeringen": "milieuverzeker", "milieuvoordeel": "milieuvoordel", "milieuvoordelen": "milieuvoordel", "milieuvoorkeuren": "milieuvoorkeur", "milieuvoorkeurslijsten": "milieuvoorkeurslijst", "milieuvoorlichting": "milieuvoorlicht", "milieuvoorschriften": "milieuvoorschrift", "milieuvoorwaarden": "milieuvoorwaard", "milieuvoorziening": "milieuvoorzien", "milieuvoorzieningen": "milieuvoorzien", "milieuvraagstuk": "milieuvraagstuk", "milieuvraagstukken": "milieuvraagstuk", "milieuvragen": "milieuvrag", "milieuvreemde": "milieuvreemd", "milieuvriendelijk": "milieuvriend", "milieuvriendelijke": "milieuvriend", "milieuvriendelijker": "milieuvriendelijker", "milieuvriendelijkere": "milieuvriendelijker", "milieuvriendelijkheid": "milieuvriend", "milieuwaarde": "milieuwaard", "milieuwaarden": "milieuwaard", "milieuwet": "milieuwet", "milieuwetenschappen": "milieuwetenschapp", "milieuwetgeving": "milieuwetgev", "milieuwetgevingen": "milieuwetgev", "milieuwethandhaving": "milieuwethandhav", "milieuwetten": "milieuwet", "milieuwijk": "milieuwijk", "milieuwinst": "milieuwinst", "milieuwinsten": "milieuwinst", "milieuwoordvoerder": "milieuwoordvoerder", "milieuzaken": "milieuzak", "milieuzonering": "milieuzoner", "milieuzorg": "milieuzorg", "milieuzorgadviseurs": "milieuzorgadviseur", "milieuzorgbeleid": "milieuzorgbeleid", "milieuzorgcertificaat": "milieuzorgcertificat", "milieuzorgcertificaten": "milieuzorgcertificat", "milieuzorgcertificatie": "milieuzorgcertificatie", "milieuzorgdag": "milieuzorgdag", "milieuzorgprijs": "milieuzorgprijs", "milieuzorgsysteem": "milieuzorgsystem", "milieuzorgsystemen": "milieuzorgsystem", "milis": "milis", "militair": "militair", "militaire": "militair", "militairen": "militair", "militante": "militant", "militarisme": "militarism", "miljard": "miljard", "miljarden": "miljard", "miljoen": "miljoen", "miljoenen": "miljoen", "miljoenenclaims": "miljoenenclaim", "miljoenenschade": "miljoenenschad", "miljoenensubsidie": "miljoenensubsidie", "miljoenenverlies": "miljoenenverlies", "miljúndersógelser": "miljundersogelser", "milko": "milko", "miller": "miller", "millhaven": "millhav", "milligram": "milligram", "milligrammen": "milligramm", "millimeter": "millimeter", "millingen": "milling", "millingerwaard": "millingerwaard", "millioenen": "millioen", "millon": "millon", "mills": "mill", "miloba": "miloba", "milsbeek": "milsbek", "milton": "milton", "miltvuur": "miltvur", "mima": "mima", "min": "min", "mina": "mina", "minachten": "minacht", "minachtend": "minacht", "minachtende": "minacht", "minachting": "minacht", "minachtte": "minacht", "minamata": "minamata", "minas": "minas", "minder": "minder", "mindere": "minder", "minderen": "minder", "minderheid": "minder", "minderheidsbelang": "minderheidsbelang", "minderkosten": "minderkost", "minderwaardig": "minderwaard", "minenergo": "minenergo", "mineraal": "mineral", "mineral": "mineral", "minerale": "mineral", "mineralen": "mineral", "mineralenaangifte": "mineralenaangift", "mineralenaangiften": "mineralenaangift", "mineralenaangiftesysteem": "mineralenaangiftesystem", "mineralenaanvoer": "mineralenaanvoer", "mineralenbalans": "mineralenbalan", "mineralenbeleid": "mineralenbeleid", "mineralenboekhouding": "mineralenboekhoud", "mineralencirkel": "mineralencirkel", "mineralengebruik": "mineralengebruik", "mineralengehalten": "mineralengehalt", "mineralenheffing": "mineralenheff", "mineralenheffingen": "mineralenheff", "mineralenmanagement": "mineralenmanagement", "mineralenmengsel": "mineralenmengsel", "mineralenoverschot": "mineralenoverschot", "mineralenoverschotten": "mineralenoverschot", "mineralenproduktie": "mineralenproduktie", "mineralenstromen": "mineralenstrom", "mineralenverlies": "mineralenverlies", "mineralenverliezen": "mineralenverliez", "mineralenvermindering": "mineralenverminder", "mineralisatie": "mineralisatie", "mineraliseerbaar": "mineraliser", "mineraliseren": "mineraliser", "minez": "minez", "mini": "mini", "miniaire": "miniair", "minicontainers": "minicontainer", "minieme": "miniem", "minière": "minièr", "minimaal": "minimal", "minimale": "minimal", "minimaliseren": "minimaliser", "minimalisering": "minimaliser", "minimum": "minimum", "minimumafstanden": "minimumafstand", "minimumcijfers": "minimumcijfer", "minimumeisen": "minimumeis", "minimuminleg": "minimuminleg", "minimumpercentage": "minimumpercentag", "minimumvergoeding": "minimumvergoed", "minimumvergoedingen": "minimumvergoed", "mining": "mining", "minister": "minister", "ministerconferentie": "ministerconferentie", "ministerie": "ministerie", "ministeriële": "ministeriel", "ministeries": "ministeries", "ministerraad": "ministerrad", "ministers": "minister", "ministerstraktement": "ministerstraktement", "ministersvergadering": "ministersvergader", "minitank": "minitank", "minke": "mink", "minnaar": "minnar", "minnaars": "minnar", "minnertsga": "minnertsga", "minnesota": "minnesota", "minpunten": "minpunt", "minst": "minst", "minste": "minst", "minstens": "minsten", "minus": "minus", "minuscule": "minuscul", "minuten": "minut", "minutieuze": "minutieuz", "minuut": "minut", "minvrom": "minvrom", "minzaam": "minzam", "minzaamheid": "minzam", "mir": "mir", "mirec": "mirec", "mirobolante": "mirobolant", "mis": "mis", "misbruik": "misbruik", "misbruikte": "misbruikt", "misdaad": "misdad", "misdaan": "misdan", "misdadiger": "misdadiger", "misdeelden": "misdeeld", "misdragen": "misdrag", "mise": "mis", "misener": "misener", "miserabele": "miserabel", "misère": "misèr", "misev": "misev", "misgunden": "misgund", "mishagen": "mishag", "mishandeld": "mishandeld", "mishandelde": "mishandeld", "mishandelt": "mishandelt", "miskend": "miskend", "miskraam": "miskram", "miskramen": "miskram", "misleidend": "misleid", "misleidende": "misleid", "mislopen": "mislop", "mislukken": "misluk", "mislukking": "misluk", "mislukkingen": "misluk", "mislukt": "mislukt", "mislukte": "mislukt", "misplaatst": "misplaatst", "misschien": "misschien", "misselijk": "misselijk", "misselijke": "misselijk", "misselijkheid": "misselijk", "missen": "miss", "missers": "misser", "misset": "misset", "missie": "missie", "missies": "missies", "mississipi": "mississipi", "misstanden": "misstand", "misstap": "misstap", "mist": "mist", "mistdruipende": "mistdruip", "miste": "mist", "misten": "mist", "mistig": "mistig", "mistige": "mistig", "mistoestanden": "mistoestand", "mistroostig": "mistroost", "mistte": "mist", "mistten": "mist", "misverstand": "misverstand", "mit": "mit", "mitac": "mitac", "miti": "miti", "mitigerende": "mitiger", "mitrailleurs": "mitrailleur", "mits": "mit", "mitsubishi": "mitsubishi", "mitsui": "mitsui", "mittelständischen": "mittelstandisch", "mittermeier": "mittermeier", "miura": "miura", "mix": "mix", "mixed": "mixed", "mixer": "mixer", "mj": "mj", "mja": "mja", "mjp": "mjp", "mjpg": "mjpg", "mkb": "mkb", "mks": "mks", "mksbouw": "mksbouw", "ml": "ml", "mm": "mm", "mma": "mma", "mmt": "mmt", "mnisek": "mnisek", "mobiel": "mobiel", "mobiele": "mobiel", "mobil": "mobil", "mobiliteit": "mobiliteit", "mobiliteitsbeleid": "mobiliteitsbeleid", "moby": "moby", "mocht": "mocht", "mócht": "mocht", "mòcht": "mòcht", "mochten": "mocht", "modaal": "modal", "modale": "modal", "modder": "modder", "modderachtig": "modderacht", "modderig": "modder", "modderlaag": "modderlag", "modderrand": "modderrand", "mode": "mod", "modec": "modec", "modedokter": "modedokter", "model": "model", "modelberekeningen": "modelbereken", "modeldraaiboek": "modeldraaiboek", "modell": "modell", "modellen": "modell", "modelleren": "modeller", "modellering": "modeller", "modelmatig": "modelmat", "models": "model", "modelstudie": "modelstudie", "modelstudies": "modelstudies", "modem": "modem", "modeplaten": "modeplat", "modern": "modern", "moderne": "modern", "moderner": "moderner", "modernere": "moderner", "modernisatie": "modernisatie", "moderniseert": "moderniseert", "moderniseren": "moderniser", "modernisering": "moderniser", "moderniseringsoperatie": "moderniseringsoperatie", "moderniseringsprogramma": "moderniseringsprogramma", "modernisme": "modernism", "moderniteit": "moderniteit", "modernste": "modernst", "moderoman": "moderoman", "moderomans": "moderoman", "modificatie": "modificatie", "modo": "modo", "modobalans": "modobalan", "modulair": "modulair", "modulairsgewijs": "modulairsgewijs", "module": "modul", "modulekosten": "modulekost", "modules": "modules", "modulobac": "modulobac", "moe": "moe", "moed": "moed", "moeda": "moeda", "moede": "moed", "moedeloos": "moedelos", "moedeloosheid": "moedelos", "moedeloze": "moedeloz", "moeder": "moeder", "moèder": "moèder", "moederbedrijf": "moederbedrijf", "moederbedrijven": "moederbedrijv", "moederlijk": "moeder", "moederlijke": "moeder", "moederlijkheid": "moeder", "moederlijkjes": "moederlijkjes", "moederlijks": "moeder", "moedermeisje": "moedermeisj", "moedermelk": "moedermelk", "moedèrr": "moedèrr", "moeders": "moeder", "moedertje": "moedertj", "moedertjes": "moedertjes", "moedertjesgezichtje": "moedertjesgezichtj", "moedig": "moedig", "moedigen": "moedig", "moedigt": "moedigt", "moedwillig": "moedwill", "moedwillige": "moedwill", "moedwilligheid": "moedwill", "moeheid": "moeheid", "moeiigjes": "moeiigjes", "moeilijk": "moeilijk", "moèilijk": "moèilijk", "moeilijke": "moeilijk", "moeilijker": "moeilijker", "moeilijkheden": "moeilijk", "moeilijkheid": "moeilijk", "moeite": "moeit", "moeitjes": "moeitjes", "moeizaam": "moeizam", "moeizame": "moeizam", "moeras": "moeras", "moerasachtig": "moerasacht", "moerasgebied": "moerasgebied", "moerasgebieden": "moerasgebied", "moerasgedeelte": "moerasgedeelt", "moerasjes": "moerasjes", "moerasland": "moerasland", "moerasplan": "moerasplan", "moerasschildpadden": "moerasschildpad", "moerassen": "moerass", "moerasspirea": "moerasspirea", "moerasstrook": "moerasstrok", "moerasvogels": "moerasvogel", "moerasvorming": "moerasvorm", "moerdijk": "moerdijk", "moergestel": "moergestel", "moermansk": "moermansk", "moes": "moes", "moesje": "moesj", "moest": "moest", "moèst": "moèst", "moesten": "moest", "móesten": "moest", "moèsten": "moèst", "moet": "moet", "mòet": "mòet", "moèt": "moèt", "moeten": "moet", "mòeten": "mòet", "moèten": "moèt", "mof": "mof", "mogadishu": "mogadishu", "moge": "mog", "mogelijk": "mogelijk", "mógelijk": "mogelijk", "mogelijke": "mogelijk", "mogelijkheden": "mogelijk", "mogelijkheid": "mogelijk", "mogen": "mog", "mogendheden": "mogend", "mogendheid": "mogend", "moghelijk": "moghelijk", "moguntia": "moguntia", "mohilo": "mohilo", "moilanen": "moilan", "mok": "mok", "mokers": "moker", "mokken": "mok", "mokkende": "mokkend", "mokte": "mokt", "mol": "mol", "moleculaire": "moleculair", "moleculen": "molecul", "molecuulgewicht": "molecuulgewicht", "molecuulgewichten": "molecuulgewicht", "molecuulstructuur": "molecuulstructur", "molekamp": "molekamp", "molen": "mol", "molenbeekdal": "molenbeekdal", "molengreend": "molengre", "molenkamp": "molenkamp", "molenpark": "molenpark", "molens": "molen", "molensteen": "molensten", "molenwieken": "molenwiek", "molenwiekgebaren": "molenwiekgebar", "molina": "molina", "mollen": "moll", "mollenoverlast": "mollenoverlast", "mollenplaag": "mollenplag", "möller": "moller", "mollig": "mollig", "mollige": "mollig", "molligheid": "mollig", "molligjes": "molligjes", "molshopen": "molshop", "molten": "molt", "mom": "mom", "moment": "moment", "momenteel": "momentel", "momenten": "moment", "momentenmethode": "momentenmethod", "mompelde": "mompeld", "mönchen": "monch", "mönchengladbach": "monchengladbach", "mond": "mond", "mondainiteitjes": "mondainiteitjes", "monde": "mond", "mondeling": "mondel", "mondelinge": "mondel", "monden": "mond", "mondiaal": "mondiaal", "mondiale": "mondial", "mondialisering": "mondialiser", "mondiger": "mondiger", "monding": "monding", "mondje": "mondj", "mondjes": "mondjes", "mondjesmaat": "mondjesmat", "mondsee": "mondsee", "monetary": "monetary", "mongolië": "mongolie", "monitor": "monitor", "monitoren": "monitor", "monitorfaciliteit": "monitorfaciliteit", "monitoring": "monitor", "monitoringssysteem": "monitoringssystem", "monitoringssystemen": "monitoringssystem", "monitoringsysteem": "monitoringsystem", "monitors": "monitor", "monju": "monju", "mono": "mono", "monoculturen": "monocultur", "monocultures": "monocultures", "monokristallijne": "monokristallijn", "monolitisch": "monolitisch", "monomeer": "monomer", "monopolie": "monopolie", "monopoliepositie": "monopoliepositie", "monopolistische": "monopolistisch", "monorail": "monorail", "monotone": "monoton", "monotoon": "monoton", "monsal": "monsal", "monsanto": "monsanto", "monster": "monster", "monsterachtig": "monsteracht", "monsterachtigs": "monsteracht", "monsteranaylse": "monsteranayl", "monsterbeest": "monsterbeest", "monsterlijke": "monster", "monsterlijkheid": "monster", "monstername": "monsternam", "monsternamen": "monsternam", "monsternames": "monsternames", "monsternemers": "monsternemer", "monsteroverdracht": "monsteroverdracht", "monsterpunt": "monsterpunt", "monsters": "monster", "monstrueuze": "monstrueuz", "mont": "mont", "montage": "montag", "montageschuim": "montageschuim", "monte": "mont", "montell": "montell", "monteren": "monter", "monteur": "monteur", "monteurs": "monteur", "montferland": "montferland", "montferrand": "montferrand", "montfort": "montfort", "montgomery": "montgomery", "month": "month", "montpellier": "montpellier", "montreal": "montreal", "montréal": "montreal", "monument": "monument", "monumenten": "monument", "monumentenzorg": "monumentenzorg", "monuron": "monuron", "moo": "moo", "mooi": "mooi", "móoi": "mooi", "mooie": "mooi", "mooier": "mooier", "mooiere": "mooier", "mooij": "mooij", "moois": "moois", "mooiste": "mooist", "mook": "mok", "moonen": "mon", "moons": "mon", "moor": "mor", "moord": "moord", "moordende": "moordend", "mop": "mop", "moppen": "mopp", "mopperde": "mopperd", "mopperen": "mopper", "mopperend": "mopper", "mopperende": "mopper", "moppig": "moppig", "moppige": "moppig", "moraal": "moral", "moraaltjes": "moraaltjes", "moratorium": "moratorium", "morbide": "morbid", "morbiditeit": "morbiditeit", "moreel": "morel", "morfologisch": "morfologisch", "morgen": "morg", "morgenavond": "morgenavond", "morgenblauw": "morgenblauw", "morgencourant": "morgencourant", "morgenlicht": "morgenlicht", "morgenmist": "morgenmist", "morgens": "morgen", "morgenschijn": "morgenschijn", "morgenstraat": "morgenstrat", "morgentwijfel": "morgentwijfel", "morgenwandelaars": "morgenwandelar", "morgue": "morgue", "moringa": "moringa", "morning": "morning", "morrapark": "morrapark", "morren": "morr", "morris": "morris", "morselt": "morselt", "morsen": "mors", "morsinkhof": "morsinkhof", "morskielen": "morskiel", "morssink": "morssink", "morste": "morst", "morszeck": "morszeck", "mortaliteit": "mortaliteit", "morton": "morton", "mos": "mos", "mosaangroei": "mosaangroei", "moscow": "moscow", "moskou": "moskou", "mosop": "mosop", "mosselbanken": "mosselbank", "mosselen": "mossel", "mosselgroei": "mosselgroei", "mossels": "mossel", "mossen": "moss", "most": "most", "mosterd": "mosterd", "mostert": "mostert", "mot": "mot", "motel": "motel", "motie": "motie", "motief": "motief", "moties": "moties", "motieven": "motiev", "motivatie": "motivatie", "motiveerde": "motiveerd", "motiveren": "motiver", "motiverend": "motiver", "motivering": "motiver", "moto": "moto", "motocar": "motocar", "motor": "motor", "motorbelasting": "motorbelast", "motorbrandstoffen": "motorbrandstoff", "motorcylinders": "motorcylinder", "motoren": "motor", "motorentestbank": "motorentestbank", "motorenwerke": "motorenwerk", "motorische": "motorisch", "motorkabel": "motorkabel", "motorolie": "motorolie", "motororganisaties": "motororganisaties", "motorproefbank": "motorproefbank", "motorrijders": "motorrijder", "motorrijtuigenbelasting": "motorrijtuigenbelast", "motorrijwielen": "motorrijwiel", "motors": "motor", "motorschip": "motorschip", "motorsportcircuit": "motorsportcircuit", "motortechniek": "motortechniek", "motorvermogen": "motorvermog", "motorvoertuigen": "motorvoertu", "motorzijde": "motorzijd", "mott": "mott", "motto": "motto", "moujik": "moujik", "mount": "mount", "mountain": "mountain", "mountains": "mountain", "mourik": "mourik", "mousseline": "mousselin", "mouw": "mouw", "mouwen": "mouw", "mouwovertrekken": "mouwovertrek", "mp": "mp", "mpa": "mpa", "mpi": "mpi", "mps": "mps", "mr": "mr", "mrc": "mrc", "ms": "ms", "msg": "msg", "msi": "msi", "mskbouw": "mskbouw", "msp": "msp", "msrc": "msrc", "msw": "msw", "mtc": "mtc", "mtr": "mtr", "mud": "mud", "muffe": "muff", "muffin": "muffin", "mug": "mug", "mugabe": "mugab", "muijsenberg": "muijsenberg", "muil": "muil", "muilen": "muil", "muilenafgrond": "muilenafgrond", "muiltjes": "muiltjes", "muizen": "muiz", "mukherjee": "mukherjee", "mulder": "mulder", "mülheim": "mulheim", "mülheimer": "mulheimer", "muller": "muller", "mülltrans": "mulltran", "multi": "multi", "multicell": "multicell", "multidisciplinair": "multidisciplinair", "multidisciplinaire": "multidisciplinair", "multifunctionaliteit": "multifunctionaliteit", "multifunctioneel": "multifunctionel", "multifunctionele": "multifunctionel", "multikristallijn": "multikristallijn", "multikristallijne": "multikristallijn", "multimedia": "multimedia", "multimodaal": "multimodal", "multimodale": "multimodal", "multinational": "multinational", "multinationals": "multinational", "multiplier": "multiplier", "multisales": "multisales", "multistageproces": "multistageproces", "multiway": "multiway", "mum": "mum", "mummies": "mummies", "münchen": "munch", "munich": "munich", "municipal": "municipal", "munsflow": "munsflow", "munster": "munster", "münster": "munster", "münsterland": "munsterland", "munt": "munt", "munten": "munt", "muren": "mur", "murmelde": "murmeld", "mururoa": "mururoa", "musa": "musa", "musea": "musea", "museum": "museum", "museumplein": "museumplein", "mushtaq": "mushtaq", "musis": "musis", "mussen": "muss", "mutageniteitstests": "mutageniteitstest", "mutant": "mutant", "mutanten": "mutant", "mutatie": "mutatie", "mutaties": "mutaties", "mutsjes": "mutsjes", "muttenz": "muttenz", "muur": "mur", "muurbedekkingen": "muurbedek", "muurbevestiging": "muurbevest", "muurisolatie": "muurisolatie", "muurkrant": "muurkrant", "muurtje": "muurtj", "muurverf": "muurverf", "muurverwarming": "muurverwarm", "muziek": "muziek", "muziekles": "muziekles", "muzieklessen": "muziekless", "muziekzilveren": "muziekzilver", "muzikanten": "muzikant", "muzzlers": "muzzler", "mv": "mv", "mvr": "mvr", "mvt": "mvt", "mw": "mw", "mwe": "mwe", "mwh": "mwh", "mwp": "mwp", "mwth": "mwth", "mycogen": "mycog", "myers": "myer", "mysterie": "mysterie", "mysterieuze": "mysterieuz", "mystiek": "mystiek", "mystieke": "mystiek", "mystieker": "mystieker", "mystieks": "mystiek", "mystisch": "mystisch", "mystische": "mystisch", "mythe": "myth", "mzo": "mzo", "n": "n", "na": "na", "ná": "na", "nà": "nà", "naadloze": "naadloz", "naafhoogte": "naafhoogt", "naaide": "naaid", "naaidoos": "naaidos", "naaien": "naai", "naaister": "naaister", "naaiwerk": "naaiwerk", "naakt": "naakt", "naakte": "naakt", "naaktheid": "naaktheid", "naaldbossen": "naaldboss", "naalden": "naald", "naaldenbed": "naaldenbed", "naaldhout": "naaldhout", "naaldhouten": "naaldhout", "naaldspitse": "naaldspit", "naaldwijk": "naaldwijk", "naam": "nam", "naamgeving": "naamgev", "naamloze": "naamloz", "naaqs": "naq", "naar": "nar", "naarden": "naard", "naarmate": "naarmat", "naarstig": "naarstig", "naast": "naast", "naaste": "naast", "naastgelegen": "naastgeleg", "nabarro": "nabarro", "nabestaan": "nabestan", "nabewerking": "nabewerk", "nabewerkingen": "nabewerk", "nabewerkingskosten": "nabewerkingskost", "nabewerkt": "nabewerkt", "nabij": "nabij", "nabije": "nabij", "nabijgelegen": "nabijgeleg", "nabijheid": "nabij", "nabootsen": "naboots", "naburige": "nabur", "nachenlus": "nachenlus", "nachrichten": "nachricht", "nacht": "nacht", "nachtafdekking": "nachtafdek", "nachtdistributie": "nachtdistributie", "nachtelijk": "nachtelijk", "nachtelijke": "nachtelijk", "nachten": "nacht", "nachtende": "nachtend", "nachthemd": "nachthemd", "nachthuisschemering": "nachthuisschemer", "nachtmerrie": "nachtmerrie", "nachtnorm": "nachtnorm", "nachtregen": "nachtreg", "nachtregime": "nachtregim", "nachts": "nacht", "nachtschade": "nachtschad", "nachtstemming": "nachtstemm", "nachttrein": "nachttrein", "nachturen": "nachtur", "nachtvensters": "nachtvenster", "nachtventilatie": "nachtventilatie", "nachtvluchten": "nachtvlucht", "nacompostering": "nacomposter", "nadacht": "nadacht", "nadat": "nadat", "nadeel": "nadel", "nadelen": "nadel", "nadelig": "nadel", "nadelige": "nadel", "naden": "nad", "nadenken": "nadenk", "nadenkende": "nadenk", "nadenkt": "nadenkt", "nader": "nader", "naderde": "naderd", "naderden": "naderd", "nadere": "nader", "naderen": "nader", "naderend": "nader", "naderende": "nader", "nadering": "nader", "naderingshoogtes": "naderingshoogtes", "nadert": "nadert", "nadien": "nadien", "nadoende": "nadoend", "nadoet": "nadoet", "nadruk": "nadruk", "nadrukkelijk": "nadruk", "nadrukkelijke": "nadruk", "nadrukkelijker": "nadrukkelijker", "naf": "naf", "nafta": "nafta", "naftaleen": "naftalen", "nagaan": "nagan", "nagahama": "nagahama", "nagasaki": "nagasaki", "nagebootst": "nagebootst", "nagedaan": "nagedan", "nagedacht": "nagedacht", "nagedachte": "nagedacht", "nagedronken": "nagedronk", "nagegaan": "nagegan", "nagekeken": "nagekek", "nagekomen": "nagekom", "nagelaten": "nagelat", "nagele": "nagel", "nageleefd": "nageleefd", "nagels": "nagel", "nagemeten": "nagemet", "nagenoeg": "nagenoeg", "nageschakeld": "nageschakeld", "nageschakelde": "nageschakeld", "nageslacht": "nageslacht", "nagestaard": "nagestaard", "nagestreefd": "nagestreefd", "nagewas": "nagewas", "naghel": "naghel", "naghels": "naghel", "naglansde": "naglansd", "naheffing": "naheff", "nahouden": "nahoud", "naïef": "naief", "naieve": "naiev", "naïeve": "naiev", "naiveteit": "naiveteit", "naïveteit": "naiveteit", "najaar": "najar", "najk": "najk", "nak": "nak", "nakijken": "nakijk", "nakomen": "nakom", "nalaten": "nalat", "nalatig": "nalat", "nalatige": "nalat", "nalatigheid": "nalat", "nalco": "nalco", "naleeft": "naleeft", "nales": "nales", "naleven": "nalev", "naleving": "nalev", "nalevingsgedrag": "nalevingsgedrag", "naliep": "naliep", "nalieten": "naliet", "naloopt": "naloopt", "nam": "nam", "namaken": "namak", "name": "nam", "namelijk": "namelijk", "namen": "nam", "namens": "namen", "namibia": "namibia", "namiddag": "namiddag", "namiddagdonkerte": "namiddagdonkert", "namiddagduister": "namiddagduister", "namiddagen": "namiddag", "namiddags": "namiddag", "nanokristallijn": "nanokristallijn", "nanometer": "nanometer", "nanotechnologie": "nanotechnologie", "naoorlogse": "naoorlog", "nap": "nap", "napa": "napa", "napels": "napel", "naperville": "napervill", "naphthaleendicarboxylaat": "naphthaleendicarboxylat", "napoeffende": "napoeff", "nappas": "nappas", "nappassen": "nappass", "napratende": "naprat", "nardo": "nardo", "nareco": "nareco", "narmada": "narmada", "naroken": "narok", "nas": "nas", "nasa": "nasa", "nasdaq": "nasdaq", "nasional": "nasional", "naslagwerk": "naslagwerk", "nasleep": "naslep", "naspoelwater": "naspoelwater", "nassau": "nassau", "nassauplein": "nassauplein", "nassaustraat": "nassaustrat", "nassi": "nassi", "nastreeft": "nastreeft", "nastreven": "nastrev", "nat": "nat", "natco": "natco", "nathanson": "nathanson", "natie": "natie", "naties": "naties", "nationaal": "national", "national": "national", "nationale": "national", "nationalisme": "nationalism", "nationalisten": "nationalist", "nationaliteiten": "nationaliteit", "nations": "nation", "natraject": "natraject", "natrium": "natrium", "natriumazide": "natriumazid", "natriumbicarbonaat": "natriumbicarbonat", "natriumcarbonaat": "natriumcarbonat", "natriumchloride": "natriumchlorid", "natriumcyanideverbindingen": "natriumcyanideverbind", "natriumhalide": "natriumhalid", "natriumhydroxyde": "natriumhydroxyd", "natriumlekkages": "natriumlekkages", "natriumsilicaat": "natriumsilicat", "natronloog": "natronlog", "natte": "nat", "nattige": "nattig", "nattigheid": "nattig", "natural": "natural", "nature": "natur", "naturen": "natur", "naturschutz": "naturschutz", "naturspan": "naturspan", "natuur": "natur", "natuuraankopen": "natuuraankop", "natuuraantasting": "natuuraantast", "natuurasfalt": "natuurasfalt", "natuurbeheer": "natuurbeher", "natuurbeheerinstanties": "natuurbeheerinstanties", "natuurbeheerinstellingen": "natuurbeheerinstell", "natuurbehoud": "natuurbehoud", "natuurbelangen": "natuurbelang", "natuurbeleid": "natuurbeleid", "natuurbeleidsplan": "natuurbeleidsplan", "natuurbeleving": "natuurbelev", "natuurbeloning": "natuurbelon", "natuurbeschermers": "natuurbeschermer", "natuurbescherming": "natuurbescherm", "natuurbeschermingsbond": "natuurbeschermingsbond", "natuurbeschermingsjaar": "natuurbeschermingsjar", "natuurbeschermingsorganisatie": "natuurbeschermingsorganisatie", "natuurbeschermingsorganisaties": "natuurbeschermingsorganisaties", "natuurbeschermingsraad": "natuurbeschermingsrad", "natuurbeschermingswet": "natuurbeschermingswet", "natuurbestemming": "natuurbestemm", "natuurbeweging": "natuurbeweg", "natuurboulevard": "natuurboulevard", "natuurbouwer": "natuurbouwer", "natuurbouwers": "natuurbouwer", "natuurcompensatieplan": "natuurcompensatieplan", "natuurcriminaliteit": "natuurcriminaliteit", "natuureisen": "natuureis", "natuurfonds": "natuurfond", "natuurfunctie": "natuurfunctie", "natuurgebied": "natuurgebied", "natuurgebieden": "natuurgebied", "natuurhars": "natuurhar", "natuurhistorisch": "natuurhistorisch", "natuurkenners": "natuurkenner", "natuurkerngebied": "natuurkerngebied", "natuurkind": "natuurkind", "natuurkunde": "natuurkund", "natuurkundige": "natuurkund", "natuurkwaliteit": "natuurkwaliteit", "natuurlijk": "natur", "natuurlijke": "natur", "natuurlijker": "natuurlijker", "natuurlijkerwijze": "natuurlijkerwijz", "natuurlijkheid": "natur", "natuurlijks": "natur", "natuurlijkweg": "natuurlijkweg", "natuurmonument": "natuurmonument", "natuurmonumenten": "natuurmonument", "natuurmuseum": "natuurmuseum", "natuuronderzoek": "natuuronderzoek", "natuurontwikkelaars": "natuurontwikkelar", "natuurontwikkeling": "natuurontwikkel", "natuurontwikkelingsgebied": "natuurontwikkelingsgebied", "natuurontwikkelingsgebieden": "natuurontwikkelingsgebied", "natuurontwikkelingsplan": "natuurontwikkelingsplan", "natuurontwikkelingsplannen": "natuurontwikkelingsplann", "natuurontwikkelingsprojecten": "natuurontwikkelingsproject", "natuuronwikkeling": "natuuronwikkel", "natuurorganisatie": "natuurorganisatie", "natuurorganisaties": "natuurorganisaties", "natuurplan": "natuurplan", "natuurplanbureaufunctie": "natuurplanbureaufunctie", "natuurplannen": "natuurplann", "natuurprodukt": "natuurprodukt", "natuurproduktie": "natuurproduktie", "natuurprojecten": "natuurproject", "natuurrampen": "natuurramp", "natuurramppolissen": "natuurramppoliss", "natuurreservaat": "natuurreservat", "natuurreservaten": "natuurreservat", "natuurrubber": "natuurrubber", "natuurschoonwet": "natuurschoonwet", "natuursoorten": "natuursoort", "natuurstroom": "natuurstrom", "natuurterrein": "natuurterrein", "natuurterreinen": "natuurterrein", "natuurtriomf": "natuurtriomf", "natuurverenigingen": "natuurveren", "natuurverf": "natuurverf", "natuurverschijnsel": "natuurverschijnsel", "natuurverschijnselen": "natuurverschijnsel", "natuurverven": "natuurverv", "natuurvoeding": "natuurvoed", "natuurvoedingswinkels": "natuurvoedingswinkel", "natuurvriendelijk": "natuurvriend", "natuurvriendelijke": "natuurvriend", "natuurvriendelijker": "natuurvriendelijker", "natuurwaarde": "natuurwaard", "natuurwaarden": "natuurwaard", "natuurwetenschap": "natuurwetenschap", "natuurwetenschappelijke": "natuurwetenschapp", "natuurwinst": "natuurwinst", "nauerna": "nauerna", "nauru": "nauru", "nauta": "nauta", "nautilus": "nautilus", "nauw": "nauw", "nauwe": "nauw", "nauwelijks": "nauwelijk", "nauwer": "nauwer", "nauwere": "nauwer", "nauwgezet": "nauwgezet", "nauwgezette": "nauwgezet", "nauwkeurig": "nauwkeur", "nauwkeurige": "nauwkeur", "nauwkeuriger": "nauwkeuriger", "nauwkeurigere": "nauwkeuriger", "nauwkeurigheid": "nauwkeur", "nauwlijks": "nauwlijk", "nauwpassend": "nauwpass", "nav": "nav", "naverbrander": "naverbrander", "naverbrandingskamer": "naverbrandingskamer", "naverkleiners": "naverkleiner", "naverwarmd": "naverwarmd", "naverwarmer": "naverwarmer", "naverwarming": "naverwarm", "navigatie": "navigatie", "navigatieroutes": "navigatieroutes", "navolging": "navolg", "navorderingsheffing": "navorderingsheff", "navraag": "navrag", "navrant": "navrant", "navrante": "navrant", "navulautomaten": "navulautomat", "navulfles": "navulfles", "nawerken": "nawerk", "nawerking": "nawerk", "nawijst": "nawijst", "nazien": "nazien", "nazomeravond": "nazomeravond", "nazomerdag": "nazomerdag", "nazorg": "nazorg", "nazorgverplichtingen": "nazorgverplicht", "nazuchtende": "nazucht", "nazuigpomp": "nazuigpomp", "nazuiveringsruimte": "nazuiveringsruimt", "nb": "nb", "nbbs": "nbbs", "nbdm": "nbdm", "nbf": "nbf", "nblf": "nblf", "nbm": "nbm", "ncb": "ncb", "ncc": "ncc", "ncdo": "ncdo", "nci": "nci", "nco": "nco", "ncw": "ncw", "ndc": "ndc", "ne": "ne", "ned": "ned", "neda": "neda", "nedam": "nedam", "neder": "neder", "nederig": "neder", "nederige": "neder", "nederigheid": "neder", "nederigjes": "nederigjes", "nederland": "nederland", "nederlander": "nederlander", "nederlanders": "nederlander", "nederlands": "nederland", "nederlandsche": "nederlandsch", "nederlandse": "nederland", "nederlandstalige": "nederlandstal", "nederrijn": "nederrijn", "nedersaksen": "nedersaks", "nedersaksische": "nedersaksisch", "nedship": "nedship", "nedstaal": "nedstal", "nedwind": "nedwind", "nee": "nee", "neede": "ned", "needs": "ned", "néeen": "neeen", "neef": "nef", "neefje": "neefj", "neefjes": "neefjes", "neem": "nem", "neemt": "neemt", "neen": "nen", "néen": "nen", "neènn": "neènn", "neer": "ner", "neerbrokkelden": "neerbrokkeld", "neerbuigend": "neerbuig", "neerbuigende": "neerbuig", "neerbuigendheid": "neerbuig", "neerdaalde": "neerdaald", "neerdrukken": "neerdruk", "neerdrukkende": "neerdruk", "neerduiken": "neerduik", "neergaande": "neergaand", "neergebogen": "neergebog", "neergedaald": "neergedaald", "neergedrukt": "neergedrukt", "neergelaten": "neergelat", "neergelegd": "neergelegd", "neergeschoten": "neergeschot", "neergeslagen": "neergeslag", "neergestort": "neergestort", "neergeteld": "neergeteld", "neergevallen": "neergevall", "neergezet": "neergezet", "neergezonken": "neergezonk", "neergooide": "neergooid", "neerhagelen": "neerhagel", "neerhing": "neerhing", "neerhingen": "neerhing", "neerkijkende": "neerkijk", "neerkletsende": "neerklets", "neerkletste": "neerkletst", "neerkletterende": "neerkletter", "neerknielen": "neerkniel", "neerknielende": "neerkniel", "neerkomen": "neerkom", "neerkomt": "neerkomt", "neerlands": "neerland", "neêrlands": "neêrland", "neerleggen": "neerlegg", "neerregende": "neerreg", "neerslaan": "neerslan", "neerslaat": "neerslat", "neerslachtig": "neerslacht", "neerslachtige": "neerslacht", "neerslachtigheid": "neerslacht", "neerslag": "neerslag", "neerslagoverschot": "neerslagoverschot", "neerslagpatronen": "neerslagpatron", "neerslagvorming": "neerslagvorm", "neersloeg": "neersloeg", "neerstorten": "neerstort", "neerstortte": "neerstort", "neerstreek": "neerstrek", "neertinkelend": "neertinkel", "neervallen": "neervall", "neervallend": "neervall", "neervalt": "neervalt", "neerviel": "neerviel", "neervielen": "neerviel", "neervlokken": "neervlok", "neervoort": "neervoort", "neerwaartse": "neerwaart", "neerzag": "neerzag", "neerzagen": "neerzag", "neerzetten": "neerzet", "neerzien": "neerzien", "neerziende": "neerziend", "neerziends": "neerziend", "nefibat": "nefibat", "nefit": "nefit", "nefyto": "nefyto", "negatief": "negatief", "negatieve": "negatiev", "negeerde": "negeerd", "negeert": "negeert", "negen": "neg", "négen": "neg", "negende": "negend", "negenen": "negen", "negenhonderd": "negenhonderd", "negenman": "negenman", "negental": "negental", "negentien": "negentien", "negentiende": "negenti", "negentig": "negent", "negeren": "neger", "negligeer": "negliger", "negligeren": "negliger", "nehem": "nehem", "neiging": "neiging", "neigingen": "neiging", "neil": "neil", "neipende": "neipend", "nek": "nek", "nekovri": "nekovri", "nelson": "nelson", "nemen": "nem", "nemende": "nemend", "nen": "nen", "nentjes": "nentjes", "neo": "neo", "neonatoloog": "neonatolog", "neopreen": "neopren", "nep": "nep", "nepa": "nepa", "nepal": "nepal", "ner": "ner", "nerc": "nerc", "nerf": "nerf", "nergens": "nergen", "nering": "nering", "nerneuze": "nerneuz", "nertsen": "nerts", "nerveus": "nerveus", "nerveust": "nerveust", "nerveuze": "nerveuz", "nerveuzer": "nerveuzer", "nerveuzere": "nerveuzer", "nervige": "nervig", "nervositeit": "nervositeit", "nervoziteit": "nervoziteit", "nest": "nest", "nestelde": "nesteld", "nestelen": "nestel", "nesten": "nest", "nestje": "nestj", "nestlé": "nestl", "nestor": "nestor", "net": "net", "netaansluiting": "netaansluit", "netaansluitingscapaciteit": "netaansluitingscapaciteit", "netac": "netac", "netbeheer": "netbeher", "netco": "netco", "netgekoppelde": "netgekoppeld", "nethart": "nethart", "netheid": "netheid", "netherlands": "netherland", "netinpassing": "netinpass", "netjes": "netjes", "netstroom": "netstrom", "nette": "net", "netten": "net", "netterigheid": "netter", "netto": "netto", "nettoresultaat": "nettoresultat", "nettowinst": "nettowinst", "netwerk": "netwerk", "netwerken": "netwerk", "network": "network", "networks": "network", "neueinbau": "neueinbau", "neurale": "neural", "neurenberg": "neurenberg", "neuriede": "neuried", "neurologische": "neurologisch", "neuroloog": "neurolog", "neus": "neus", "neuteboom": "neutebom", "neutra": "neutra", "neutraal": "neutral", "neutrale": "neutral", "neutraliseren": "neutraliser", "neutraliteit": "neutraliteit", "neutramag": "neutramag", "neutronen": "neutron", "neuzen": "neuz", "nevada": "nevada", "nevadawoestijn": "nevadawoestijn", "nevel": "nevel", "nevelblusinstallatie": "nevelblusinstallatie", "nevelblusinstallaties": "nevelblusinstallaties", "nevelde": "neveld", "nevelig": "nevel", "nevelige": "nevel", "neveligheid": "nevel", "neveling": "nevel", "nevels": "nevel", "neveltjes": "neveltjes", "neveltriestige": "neveltriest", "neven": "nev", "nevenactiviteit": "nevenactiviteit", "nevenactiviteiten": "nevenactiviteit", "neveneffect": "neveneffect", "nevenprodukten": "nevenprodukt", "nevenstromen": "nevenstrom", "nevenstroom": "nevenstrom", "nevrip": "nevrip", "nevroze": "nevroz", "nevrozisme": "nevrozism", "new": "new", "newark": "newark", "newcastle": "newcastl", "newecs": "newec", "newin": "newin", "news": "new", "newton": "newton", "newtonweg": "newtonweg", "nf": "nf", "nfk": "nfk", "nfo": "nfo", "ng": "ng", "ngo": "ngo", "nh": "nh", "nhi": "nhi", "nia": "nia", "niaba": "niaba", "nibbering": "nibber", "nibe": "nib", "nibé": "nib", "nibv": "nibv", "nice": "nic", "niche": "nich", "nicht": "nicht", "nichten": "nicht", "nichtje": "nichtj", "nichtjes": "nichtjes", "nicolaasga": "nicolaasga", "nido": "nido", "nidro": "nidro", "niedersachsen": "niedersachs", "niedorp": "niedorp", "niedrigenergiehaus": "niedrigenergiehaus", "nieerde": "nieerd", "nieert": "nieert", "niellé": "niell", "niemand": "niemand", "niendorf": "niendorf", "niëren": "nier", "niet": "niet", "niét": "niet", "nièt": "nièt", "niethollands": "nietholland", "niethouden": "niethoud", "nietig": "nietig", "nietigheden": "nietig", "nietlevende": "nietlev", "niets": "niet", "nièts": "nièt", "nietsbetekenend": "nietsbeteken", "nietszeggende": "nietszegg", "niettegenstaande": "niettegenstaand", "niettemin": "niettemin", "nietwaar": "nietwar", "nietweten": "nietwet", "nieuw": "nieuw", "nieuwbouw": "nieuwbouw", "nieuwbouwactiviteiten": "nieuwbouwactiviteit", "nieuwbouwgebieden": "nieuwbouwgebied", "nieuwbouwlocatie": "nieuwbouwlocatie", "nieuwbouwlokaties": "nieuwbouwlokaties", "nieuwbouwplannen": "nieuwbouwplann", "nieuwbouwproject": "nieuwbouwproject", "nieuwbouwprojecten": "nieuwbouwproject", "nieuwbouwwijk": "nieuwbouwwijk", "nieuwbouwwijken": "nieuwbouwwijk", "nieuwbouwwoningen": "nieuwbouwwon", "nieuwe": "nieuw", "nieuwegein": "nieuwegein", "nieuwelinge": "nieuwel", "nieuwenhof": "nieuwenhof", "nieuwer": "nieuwer", "nieuwere": "nieuwer", "nieuwerkerk": "nieuwerkerk", "nieuweschans": "nieuweschan", "nieuwheid": "nieuwheid", "nieuwjaarskaarten": "nieuwjaarskaart", "nieuwjaarstoespraak": "nieuwjaarstoesprak", "nieuwkomers": "nieuwkomer", "nieuwkoop": "nieuwkop", "nieuwkoopse": "nieuwkop", "nieuwland": "nieuwland", "nieuwlandpolder": "nieuwlandpolder", "nieuwprijs": "nieuwprijs", "nieuws": "nieuw", "nieuwsblad": "nieuwsblad", "nieuwsbrief": "nieuwsbrief", "nieuwsgierig": "nieuwsgier", "nieuwsgierige": "nieuwsgier", "nieuwsgierigheid": "nieuwsgier", "nieuwsgroep": "nieuwsgroep", "nieuwslijn": "nieuwslijn", "nieuwsrubriek": "nieuwsrubriek", "nieuwste": "nieuwst", "nieuwsvoorziening": "nieuwsvoorzien", "nieuwzeelandse": "nieuwzeeland", "niftrik": "niftrik", "nigerdelta": "nigerdelta", "nigeria": "nigeria", "nigeriaanse": "nigeriaan", "nigerianen": "nigerian", "nigrum": "nigrum", "nihil": "nihil", "nijd": "nijd", "nijdam": "nijdam", "nijdaste": "nijdast", "nijdig": "nijdig", "nijdigde": "nijdigd", "nijdige": "nijdig", "nijdigheden": "nijdig", "nijdigheid": "nijdig", "nijenhuis": "nijenhuis", "nijenrode": "nijenrod", "nijkerk": "nijkerk", "nijl": "nijl", "nijland": "nijland", "nijlganzen": "nijlganz", "nijlwater": "nijlwater", "nijman": "nijman", "nijmeegs": "nijmeg", "nijmeegse": "nijmeg", "nijmegen": "nijmeg", "nijpels": "nijpel", "nijpend": "nijpend", "nijpende": "nijpend", "nijpte": "nijpt", "nijsi": "nijsi", "nijverdal": "nijverdal", "nijverheid": "nijver", "nikkel": "nikkel", "nikkelcadmium": "nikkelcadmium", "nikkelmetaalhydride": "nikkelmetaalhydrid", "nikkelresten": "nikkelrest", "nikkelverwijdering": "nikkelverwijder", "niks": "nik", "nil": "nil", "nima": "nima", "nimcr": "nimcr", "nimmer": "nimmer", "nimos": "nimos", "ninja": "ninja", "nioo": "nioo", "nipo": "nipo", "nippen": "nipp", "nippon": "nippon", "nipte": "nipt", "niras": "niras", "nirex": "nirex", "niria": "niria", "niro": "niro", "nirov": "nirov", "nissan": "nissan", "nissen": "niss", "nistelrode": "nistelrod", "nitraat": "nitrat", "nitraatbelasting": "nitraatbelast", "nitraatconcentraties": "nitraatconcentraties", "nitraatgehalte": "nitraatgehalt", "nitraatgehalten": "nitraatgehalt", "nitraatgevoelige": "nitraatgevoel", "nitraatnormen": "nitraatnorm", "nitraatprobleem": "nitraatproblem", "nitraatrichtlijn": "nitraatrichtlijn", "nitraatstikstof": "nitraatstikstof", "nitraatuitspoeling": "nitraatuitspoel", "nitraatvervuiler": "nitraatvervuiler", "nitraatvervuiling": "nitraatvervuil", "nitraatvrij": "nitraatvrij", "nitraatzuivering": "nitraatzuiver", "nitraatzuiveringsinstallatie": "nitraatzuiveringsinstallatie", "nitraten": "nitrat", "nitriet": "nitriet", "nitriflex": "nitriflex", "nitril": "nitril", "nitrocellulose": "nitrocellulos", "niveau": "niveau", "niveaus": "niveaus", "niveauschakelaar": "niveauschakelar", "niveausensor": "niveausensor", "niveauverschil": "niveauverschil", "nivôse": "nivô", "nixen": "nix", "nizhnevartovsk": "nizhnevartovsk", "nizna": "nizna", "njmo": "njmo", "njonja": "njonja", "nkf": "nkf", "nkk": "nkk", "nko": "nko", "nl": "nl", "nlg": "nlg", "nlr": "nlr", "nmc": "nmc", "nme": "nme", "nmi": "nmi", "nmp": "nmp", "nmr": "nmr", "nmtd": "nmtd", "nni": "nni", "nnwb": "nnwb", "no": "no", "noaa": "noaa", "noachs": "noach", "nob": "nob", "nobel": "nobel", "nobelprijs": "nobelprijs", "nobelprijswinnaar": "nobelprijswinnar", "nobi": "nobi", "nobis": "nobis", "nobisprogramma": "nobisprogramma", "noch": "noch", "nodeloos": "nodelos", "nodeloosheid": "nodelos", "nodeloze": "nodeloz", "nodig": "nodig", "nodige": "nodig", "nodigs": "nodig", "nodigt": "nodigt", "noell": "noell", "noem": "noem", "noemde": "noemd", "noemden": "noemd", "noemen": "noem", "noemenswaardig": "noemenswaard", "noemenswaardige": "noemenswaard", "noemt": "noemt", "nog": "nog", "nóg": "nog", "nòg": "nòg", "nogal": "nogal", "nogepa": "nogepa", "nogh": "nogh", "nogmaals": "nogmal", "noh": "noh", "nom": "nom", "nominaal": "nominal", "nominale": "nominal", "nominatie": "nominatie", "nominaties": "nominaties", "nomura": "nomura", "non": "non", "nonattainment": "nonattainment", "nonchalant": "nonchalant", "nonferro": "nonferro", "nonna": "nonna", "nonvlinder": "nonvlinder", "nood": "nod", "noodgedwongen": "noodgedwong", "noodgevallen": "noodgevall", "noodhulporganisaties": "noodhulporganisaties", "noodkreet": "noodkret", "noodlijdende": "noodlijd", "noodlot": "noodlot", "noodlotgrote": "noodlotgrot", "noodlottig": "noodlott", "noodlottige": "noodlott", "noodlottigheid": "noodlott", "noodlotzware": "noodlotzwar", "noodstroomdieselinstallatie": "noodstroomdieselinstallatie", "noodstroomvoorziening": "noodstroomvoorzien", "noodweer": "noodwer", "noodwendig": "noodwend", "noodzaak": "noodzak", "noodzaakt": "noodzaakt", "noodzakelijk": "noodzak", "noodzakelijke": "noodzak", "noodzakelijkerwijs": "noodzakelijkerwijs", "noodzaken": "noodzak", "nooit": "nooit", "nóoit": "nooit", "noòit": "noòit", "nóóit": "nooit", "noopt": "noopt", "noorbeek": "noorbek", "noord": "noord", "noordafrikaanse": "noordafrikan", "noordamerikaanse": "noordamerikan", "noordatlantische": "noordatlantisch", "noordbrabantse": "noordbrabant", "noordduitse": "noordduit", "noordelijk": "noordelijk", "noordelijke": "noordelijk", "noordelijker": "noordelijker", "noordelijkste": "noordelijkst", "noorden": "noord", "noorder": "noorder", "noorderhaaks": "noorderhak", "noorderkwartier": "noorderkwartier", "noordervliet": "noordervliet", "noordfranse": "noordfran", "noordhollandse": "noordholland", "noordholt": "noordholt", "noordkoreaanse": "noordkoreaan", "noordkoreanen": "noordkorean", "noordkust": "noordkust", "noordlijn": "noordlijn", "noordlimburgse": "noordlimburg", "noordnoorse": "noordnor", "noordoever": "noordoever", "noordoost": "noordoost", "noordoosten": "noordoost", "noordoostgrens": "noordoostgren", "noordoostpolder": "noordoostpolder", "noordpool": "noordpol", "noordrand": "noordrand", "noordrijn": "noordrijn", "noordse": "noord", "noordwaarts": "noordwaart", "noordwand": "noordwand", "noordwest": "noordwest", "noordwestelijke": "noordwest", "noordwesten": "noordwest", "noordwestpunt": "noordwestpunt", "noordwijk": "noordwijk", "noordwijkerhout": "noordwijkerhout", "noordzee": "noordzee", "noordzeebadplaatsen": "noordzeebadplaats", "noordzeebodem": "noordzeebodem", "noordzeekanaal": "noordzeekanal", "noordzeekust": "noordzeekust", "noordzeekustzone": "noordzeekustzon", "noordzeevissers": "noordzeevisser", "noordzeezand": "noordzeezand", "noors": "nor", "noorse": "nor", "noort": "noort", "noorwegen": "noorweg", "nooter": "nooter", "nop": "nop", "noppenstructuur": "noppenstructur", "nord": "nord", "nordberg": "nordberg", "nordmann": "nordmann", "nordrhein": "nordrhein", "nordtank": "nordtank", "noren": "nor", "norester": "norester", "norg": "norg", "norm": "norm", "normaal": "normal", "normaalbedrijf": "normaalbedrijf", "normaalvermogen": "normaalvermog", "normadressant": "normadressant", "normale": "normal", "normalisatie": "normalisatie", "normaliseren": "normaliser", "normaliteit": "normaliteit", "normaliter": "normaliter", "normandië": "normandie", "normandische": "normandisch", "normbepalingen": "normbepal", "normblad": "normblad", "normbladen": "normblad", "normconcentratie": "normconcentratie", "normen": "norm", "normering": "normer", "normontwerp": "normontwerp", "normoverschreiding": "normoverschreid", "normoverschrijding": "normoverschrijd", "normstelling": "normstell", "normstijging": "normstijg", "norned": "norned", "norsk": "norsk", "norske": "norsk", "north": "north", "norvell": "norvell", "norway": "norway", "norwich": "norwich", "not": "not", "nota": "nota", "notabene": "notab", "notaris": "notaris", "notebooks": "notebok", "noteerde": "noteerd", "noteerden": "noteerd", "noten": "not", "notengezichtjes": "notengezichtjes", "noteren": "noter", "noterende": "noter", "notering": "noter", "notie": "notie", "notitie": "notitie", "notre": "notr", "nou": "nou", "nouveau": "nouveau", "nouwen": "nouw", "nova": "nova", "novadan": "novadan", "novatie": "novatie", "novel": "novel", "novem": "novem", "november": "november", "novembernummer": "novembernummer", "novemproject": "novemproject", "novib": "novib", "noviteit": "noviteit", "noviteiten": "noviteit", "nox": "nox", "noxon": "noxon", "noz": "noz", "nozema": "nozema", "nozzle": "nozzl", "nozzles": "nozzles", "npf": "npf", "npi": "npi", "npra": "npra", "nr": "nr", "nra": "nra", "nrb": "nrb", "nrc": "nrc", "nrel": "nrel", "nrit": "nrit", "nrs": "nrs", "nrsp": "nrsp", "ns": "ns", "nsg": "nsg", "nskm": "nskm", "nta": "nta", "nts": "nts", "nu": "nu", "nú": "nu", "nù": "nù", "nuanceren": "nuancer", "nuarimol": "nuarimol", "nubl": "nubl", "nuchter": "nuchter", "nuchtere": "nuchter", "nucleair": "nucleair", "nucleaire": "nucleair", "nuclear": "nuclear", "nuclide": "nuclid", "nucliden": "nuclid", "nuenen": "nuen", "nuf": "nuf", "nuffige": "nuffig", "nufjes": "nufjes", "nukjes": "nukjes", "nul": "nul", "nulemissie": "nulemissie", "nulkortingsregeling": "nulkortingsregel", "nullast": "nullast", "nullijn": "nullijn", "nulliteit": "nulliteit", "nulmeting": "nulmet", "nuloptie": "nuloptie", "numansdorp": "numansdorp", "numerieke": "numeriek", "nummer": "nummer", "nummers": "nummer", "nunspeet": "nunspet", "nuon": "nuon", "nut": "nut", "nutek": "nutek", "nuth": "nuth", "nutricia": "nutricia", "nutriënten": "nutrient", "nutriëntengebruik": "nutrientengebruik", "nutriëntenmanagement": "nutrientenmanagement", "nutriëntenverliezen": "nutrientenverliez", "nutsbedrijf": "nutsbedrijf", "nutsbedrijven": "nutsbedrijv", "nutteloos": "nuttelos", "nutteloosheid": "nuttelos", "nutteloze": "nutteloz", "nuttelozer": "nuttelozer", "nuttig": "nuttig", "nuttige": "nuttig", "nuttigen": "nuttig", "nuttiger": "nuttiger", "nv": "nv", "nva": "nva", "nvc": "nvc", "nvca": "nvca", "nvg": "nvg", "nvkl": "nvkl", "nvm": "nvm", "nvn": "nvn", "nvob": "nvob", "nvpb": "nvpb", "nvpg": "nvpg", "nvrd": "nvrd", "nvtb": "nvtb", "nvv": "nvv", "nvvh": "nvvh", "nvz": "nvz", "nw": "nw", "nwo": "nwo", "nwr": "nwr", "nww": "nww", "nylon": "nylon", "nytrosylatie": "nytrosylatie", "o": "o", "oak": "oak", "oasis": "oasis", "obeessie": "obeessie", "oberhausen": "oberhaus", "oberlausitz": "oberlausitz", "object": "object", "objecten": "object", "objectief": "objectief", "objectieve": "objectiev", "objectiveerbare": "objectiver", "objectiviteit": "objectiviteit", "objekten": "objekt", "oblast": "oblast", "obligatie": "obligatie", "obligaties": "obligaties", "obm": "obm", "obscure": "obscur", "obscuur": "obscur", "obscuurweg": "obscuurweg", "observatiepost": "observatiepost", "observatieposten": "observatiepost", "observatieputten": "observatieput", "observatietoren": "observatietor", "observer": "observer", "observeren": "observer", "obsessie": "obsessie", "obsidiaan": "obsidiaan", "obstakel": "obstakel", "obstakels": "obstakel", "ocato": "ocato", "occ": "occ", "occupational": "occupational", "occupeer": "occuper", "occuperen": "occuper", "occurence": "occurenc", "océ": "oce", "oceaan": "oceaan", "oceaanbodem": "oceaanbodem", "oceaanproject": "oceaanproject", "oceaanwater": "oceaanwater", "ocean": "ocean", "oceanen": "ocean", "oceanic": "oceanic", "oceanograaf": "oceanograf", "oceanografen": "oceanograf", "oceanografie": "oceanografie", "oceanoloog": "oceanolog", "ochsenfurt": "ochsenfurt", "ochten": "ocht", "ochtend": "ochtend", "ochtendprogramma": "ochtendprogramma", "ochtends": "ochtend", "ochtendstemming": "ochtendstemm", "ochtendsymposium": "ochtendsymposium", "octaangehalte": "octaangehalt", "octrooi": "octrooi", "octrooibureau": "octrooibureau", "ode": "ode", "odense": "oden", "odescalchi": "odescalchi", "odessa": "odessa", "odiflora": "odiflora", "odp": "odp", "oecd": "oecd", "oecologie": "oecologie", "oecumene": "oecum", "oefen": "oef", "oefende": "oefend", "oefenen": "oefen", "oefening": "oefen", "oefent": "oefent", "oefenterrein": "oefenterrein", "oefenterreinen": "oefenterrein", "oegstgeest": "oegstgeest", "oekotechnik": "oekotechnik", "oekraïense": "oekraien", "oekraine": "oekrain", "oekraïne": "oekrain", "oekraïnse": "oekrain", "oer": "oer", "oeral": "oeral", "oerbos": "oerbos", "oerbossen": "oerboss", "oerlemans": "oerleman", "oerwoud": "oerwoud", "oerwouden": "oerwoud", "oeso": "oeso", "oestrogeen": "oestrogen", "oestrogene": "oestrog", "oestrogenen": "oestrogen", "oestrogenic": "oestrogenic", "oestrogens": "oestrogen", "oeuvre": "oeuvr", "oever": "oever", "oeverbegroeiing": "oeverbegroei", "oeverbeschermingen": "oeverbescherm", "oeverbossen": "oeverboss", "oeverinfiltratie": "oeverinfiltratie", "oeverloos": "oeverlos", "oeverplanten": "oeverplant", "oevers": "oever", "oeververbinding": "oeververbind", "oezbeekse": "oezbek", "of": "of", "óf": "of", "òf": "òf", "ofelia": "ofelia", "off": "off", "offensieve": "offensiev", "offer": "offer", "offerde": "offerd", "offeren": "offer", "offers": "offer", "offert": "offert", "offerte": "offert", "offertes": "offertes", "office": "offic", "official": "official", "officials": "official", "officieel": "officieel", "officieels": "officieel", "officiële": "officiel", "officier": "officier", "officieren": "officier", "officierstafel": "officierstafel", "offs": "off", "offshore": "offshor", "ofschoon": "ofschon", "oftech": "oftech", "oftewel": "oftewel", "ofwel": "ofwel", "ogachi": "ogachi", "ogden": "ogd", "ogen": "ogen", "ogenblik": "ogenblik", "ogenblikje": "ogenblikj", "ogenblikkelijk": "ogenblik", "ogenblikken": "ogenblik", "ogenlach": "ogenlach", "ogenschouw": "ogenschouw", "ogenvonk": "ogenvonk", "oggel": "oggel", "oghenblik": "oghenblik", "oginiland": "oginiland", "ogoni": "ogoni", "ogoniland": "ogoniland", "oh": "oh", "ohé": "ohe", "ohio": "ohio", "ohmen": "ohm", "ohra": "ohra", "oil": "oil", "oilbooms": "oilbom", "oirsbeek": "oirsbek", "oisterwijk": "oisterwijk", "oisterwijkse": "oisterwijk", "ok": "ok", "okd": "okd", "oke": "oke", "oklahoma": "oklahoma", "öko": "oko", "økologiske": "økologisk", "oksels": "oksel", "oktaangehalte": "oktaangehalt", "oktober": "oktober", "öl": "ol", "olaf": "olaf", "olc": "olc", "old": "old", "oldenzaal": "oldenzal", "ole": "ole", "olefinengehalte": "olefinengehalt", "olefinverbund": "olefinverbund", "oleg": "oleg", "oleifeira": "oleifeira", "olfactometer": "olfactometer", "olfaktometrie": "olfaktometrie", "olie": "olie", "olieachtig": "olieacht", "olieachtige": "olieacht", "olieafscheider": "olieafscheider", "olieafscheiders": "olieafscheider", "oliebad": "oliebad", "oliebasis": "oliebasis", "oliebedrijven": "oliebedrijv", "oliebestrijdingsoefening": "oliebestrijdingsoefen", "oliebewerking": "oliebewerk", "olieboycot": "olieboycot", "oliebronnen": "oliebronn", "olieconcern": "olieconcern", "olieconcerns": "olieconcern", "oliecrises": "oliecrises", "oliedepots": "oliedepot", "oliedistributiemaatschappij": "oliedistributiemaatschappij", "oliedruppel": "oliedruppel", "oliedruppels": "oliedruppel", "oliedruppeltjes": "oliedruppeltjes", "oliefilter": "oliefilter", "oliefilters": "oliefilter", "oliegesmeerde": "oliegesmeerd", "oliegigant": "oliegigant", "oliehandelaren": "oliehandelar", "oliehoudend": "oliehoud", "oliehoudende": "oliehoud", "olieimporterende": "olieimporter", "olieinstallatie": "olieinstallatie", "oliekamer": "oliekamer", "olielaag": "olielag", "olieleidingen": "olieleid", "olielekbak": "olielekbak", "olielekkage": "olielekkag", "olielekkages": "olielekkages", "oliemaatschappij": "oliemaatschappij", "oliemaatschappijen": "oliemaatschappij", "olieminister": "olieminister", "oliemonsters": "oliemonster", "oliën": "olien", "olieongeluk": "olieongeluk", "olieopbrengst": "olieopbrengst", "olieopslag": "olieopslag", "olieopslagtanks": "olieopslagtank", "oliepijpleiding": "oliepijpleid", "oliepijpleidingen": "oliepijpleid", "olieplatform": "olieplatform", "olieplatforms": "olieplatform", "olieprijs": "olieprijs", "olieprijzen": "olieprijz", "olieproducenten": "olieproducent", "olieproducerende": "olieproducer", "olieprodukten": "olieprodukt", "olieproduktie": "olieproduktie", "olieproduktiebedrijf": "olieproduktiebedrijf", "olieproduktspecificaties": "olieproduktspecificaties", "olieprojecten": "olieproject", "olieraffinaderij": "olieraffinaderij", "olieraffinaderijen": "olieraffinaderij", "olieraffinage": "olieraffinag", "olieramp": "olieramp", "olierampen": "olieramp", "oliereserves": "oliereserves", "olieresten": "olierest", "olierijke": "olierijk", "oliescheider": "oliescheider", "oliescheidingsinstallatie": "oliescheidingsinstallatie", "olieschermen": "oliescherm", "olieschoonmaak": "olieschoonmak", "oliesector": "oliesector", "olieslang": "olieslang", "olieslijk": "olies", "oliesoort": "oliesoort", "oliesoorten": "oliesoort", "oliestook": "oliestok", "oliestroom": "oliestrom", "olietank": "olietank", "olietanker": "olietanker", "olietanks": "olietank", "olietekort": "olietekort", "olievaten": "olievat", "olieveld": "olieveld", "olievelden": "olieveld", "olieverf": "olieverf", "olieverontreiniging": "olieverontrein", "olieverontreinigingen": "olieverontrein", "olievervuiling": "olievervuil", "olievlek": "olievlek", "olievlekken": "olievlek", "olievoorraad": "olievoorrad", "oliewinning": "oliewinn", "oliewinsten": "oliewinst", "olifant": "olifant", "olifanten": "olifant", "olijf": "olijf", "olijfboomgaarden": "olijfboomgaard", "olm": "olm", "olsen": "ols", "olympische": "olympisch", "om": "om", "óm": "om", "òm": "òm", "oma": "oma", "omarming": "omarm", "ombouw": "ombouw", "ombudsman": "ombudsman", "ombuigingsoperatie": "ombuigingsoperatie", "omc": "omc", "omdat": "omdat", "omdraaide": "omdraaid", "omdraaien": "omdraai", "omdrongen": "omdrong", "omdwaling": "omdwal", "omegam": "omegam", "omer": "omer", "omgaan": "omgan", "omgaat": "omgat", "omgang": "omgang", "omgebogen": "omgebog", "omgebouwd": "omgebouwd", "omgebouwde": "omgebouwd", "omgedaan": "omgedan", "omgedraaid": "omgedraaid", "omgegaan": "omgegan", "omgekeerd": "omgekeerd", "omgekeerde": "omgekeerd", "omgekomen": "omgekom", "omgerekend": "omgerek", "omgeslagen": "omgeslag", "omgesprongen": "omgesprong", "omgestaard": "omgestaard", "omgeurden": "omgeurd", "omgeven": "omgev", "omgeving": "omgev", "omgevingen": "omgev", "omgevingscondities": "omgevingscondities", "omgevingsfactoren": "omgevingsfactor", "omgevingsinvloeden": "omgevingsinvloed", "omgevingskwaliteit": "omgevingskwaliteit", "omgevingslucht": "omgevingslucht", "omgevingspsychologie": "omgevingspsychologie", "omgevormd": "omgevormd", "omgezeild": "omgezeild", "omgezet": "omgezet", "omgezworven": "omgezworv", "omging": "omging", "omgingen": "omging", "omhaal": "omhal", "omhakken": "omhak", "omheen": "omhen", "omheinig": "omhein", "omheisde": "omheisd", "omhels": "omhel", "omhelsd": "omhelsd", "omhelsde": "omhelsd", "omhelsden": "omhelsd", "omhelse": "omhel", "omhelst": "omhelst", "omhelzen": "omhelz", "omhelzing": "omhelz", "omhelzingen": "omhelz", "omhoog": "omhog", "omhoogduwen": "omhoogduw", "omhuld": "omhuld", "omhulling": "omhull", "omhulsel": "omhulsel", "omive": "omiv", "omkapte": "omkapt", "omkeren": "omker", "omkerende": "omker", "omkijken": "omkijk", "omkijkende": "omkijk", "omklemde": "omklemd", "omkopen": "omkop", "omkoperij": "omkoperij", "omkransing": "omkrans", "omkronkelen": "omkronkel", "omlaag": "omlag", "omleggen": "omlegg", "omleiden": "omleid", "omleidingen": "omleid", "omleidingstunnel": "omleidingstunnel", "omliggende": "omligg", "omlijnd": "omlijnd", "omlijst": "omlijst", "omlijste": "omlijst", "omlijstte": "omlijst", "omlijstten": "omlijst", "omloop": "omlop", "ommedwaling": "ommedwal", "ommeheen": "ommehen", "ommekeer": "ommeker", "ommelijn": "ommelijn", "ommelijnen": "ommelijn", "ommen": "omm", "ommense": "ommen", "ommeren": "ommer", "omn": "omn", "omneveling": "omnevel", "omnium": "omnium", "omo": "omo", "omploegen": "omploeg", "omraming": "omram", "omrekeningsfactoren": "omrekeningsfactor", "omringd": "omringd", "omringde": "omringd", "omringden": "omringd", "omringende": "omring", "omroep": "omroep", "omruil": "omruil", "omruilen": "omruil", "omschakelen": "omschakel", "omschakeling": "omschakel", "omscholing": "omschol", "omschreef": "omschref", "omschreven": "omschrev", "omschrijft": "omschrijft", "omschrijving": "omschrijv", "omschrijvingen": "omschrijv", "omslaan": "omslan", "omslaand": "omslaand", "omslachtig": "omslacht", "omslag": "omslag", "omslagjes": "omslagjes", "omsloegen": "omsloeg", "omspringen": "omspring", "omspringt": "omspringt", "omspuiten": "omspuit", "omstandigheden": "omstand", "omstreden": "omstred", "omstreek": "omstrek", "omstreeks": "omstrek", "omstreken": "omstrek", "omtoverd": "omtoverd", "omtovering": "omtover", "omtrent": "omtrent", "omvang": "omvang", "omvangen": "omvang", "omvangende": "omvang", "omvangrijk": "omvangrijk", "omvangrijke": "omvangrijk", "omvangrijker": "omvangrijker", "omvangt": "omvangt", "omvat": "omvat", "omvatte": "omvat", "omvatten": "omvat", "omvattend": "omvat", "omvattende": "omvat", "omver": "omver", "omverwerpen": "omverwerp", "omvormer": "omvormer", "omvormers": "omvormer", "omvorming": "omvorm", "omwaaien": "omwaai", "omweg": "omweg", "omwille": "omwill", "omwonden": "omwond", "omwondene": "omwond", "omwonende": "omwon", "omwonenden": "omwon", "omzag": "omzag", "omzeild": "omzeild", "omzeilen": "omzeil", "omzet": "omzet", "omzetachterstand": "omzetachterstand", "omzetgroei": "omzetgroei", "omzetreductie": "omzetreductie", "omzetstijging": "omzetstijg", "omzetten": "omzet", "omzetters": "omzetter", "omzetting": "omzet", "omzettingscoëfficiënt": "omzettingscoefficient", "omzetverhoging": "omzetverhog", "omzetverlies": "omzetverlies", "omzichtig": "omzicht", "omzichtige": "omzicht", "omzichtigheid": "omzicht", "omzomeren": "omzomer", "on": "on", "onaangekondigd": "onaangekondigd", "onaangekondigde": "onaangekondigd", "onaangenaam": "onaangenam", "onaangename": "onaangenam", "onaangeroerd": "onaangeroerd", "onaangetast": "onaangetast", "onaanroerbare": "onaanroer", "onaantrekkelijk": "onaantrek", "onaantrekkelijkheid": "onaantrek", "onaanvaardbaar": "onaanvaard", "onaanvaardbare": "onaanvaard", "onaardig": "onaard", "onaardige": "onaard", "onacceptabel": "onacceptabel", "onafgebroken": "onafgebrok", "onafhankelijk": "onafhank", "onafhankelijke": "onafhank", "onafhankelijkheid": "onafhank", "onafhankelijkheidsbeweging": "onafhankelijkheidsbeweg", "onafwijsbaar": "onafwijs", "onas": "onas", "onbalans": "onbalan", "onbarmhartig": "onbarmhart", "onbedachtzaam": "onbedachtzam", "onbedachtzaamheid": "onbedachtzam", "onbedijkte": "onbedijkt", "onbedoeld": "onbedoeld", "onbedorvenheid": "onbedorv", "onbeduidend": "onbeduid", "onbeduidende": "onbeduid", "onbeduidender": "onbeduidender", "onbeduidendheid": "onbeduid", "onbedwingbaar": "onbedwing", "onbedwingbare": "onbedwing", "onbeghrijpelijk": "onbeghrijp", "onbegonnen": "onbegonn", "onbegrijpelijk": "onbegrijp", "onbegrijpelijke": "onbegrijp", "onbegrijpelijker": "onbegrijpelijker", "onbegrijpelijkheid": "onbegrijp", "onbegrijpend": "onbegrijp", "onbegrip": "onbegrip", "onbehaaglijk": "onbehag", "onbehagelijk": "onbehag", "onbehagelijks": "onbehag", "onbehandeld": "onbehandeld", "onbeholpen": "onbeholp", "onbehoorlijk": "onbehor", "onbehoorlijkheid": "onbehor", "onbehouwens": "onbehouwen", "onbekend": "onbek", "onbekende": "onbek", "onbekenden": "onbek", "onbekendheid": "onbek", "onbelangrijk": "onbelangrijk", "onbelast": "onbelast", "onbelastbaarheid": "onbelast", "onbelaste": "onbelast", "onbeleefd": "onbeleefd", "onbeleefdheden": "onbeleefd", "onbemand": "onbemand", "onbeminnelijk": "onbeminn", "onbenaderbaar": "onbenader", "onbenaderbare": "onbenader", "onbenullig": "onbenull", "onbenut": "onbenut", "onbenutte": "onbenut", "onbepaald": "onbepaald", "onbepaalde": "onbepaald", "onbeperkt": "onbeperkt", "onbeperkte": "onbeperkt", "onberaden": "onberad", "onberedeneerd": "onberedeneerd", "onbereikbaar": "onbereik", "onbereikbare": "onbereik", "onberekenbaar": "onbereken", "onberispelijk": "onberisp", "onberispelijkheid": "onberisp", "onbeschoft": "onbeschoft", "onbespreekbaar": "onbesprek", "onbestaanbaar": "onbestan", "onbestemde": "onbestemd", "onbestendig": "onbestend", "onbetaalbaar": "onbetal", "onbetaalbare": "onbetal", "onbetaald": "onbetaald", "onbetrouwbare": "onbetrouw", "onbetwijfelbaar": "onbetwijfel", "onbevoegd": "onbevoegd", "onbevredigend": "onbevred", "onbeweeglijke": "onbeweg", "onbewegelijk": "onbeweg", "onbewegelijke": "onbeweg", "onbewegelijkheid": "onbeweg", "onbewerkt": "onbewerkt", "onbewimpeld": "onbewimpeld", "onbewolkt": "onbewolkt", "onbewolkte": "onbewolkt", "onbewoond": "onbewoond", "onbewust": "onbewust", "onbewuste": "onbewust", "onbewustheid": "onbewust", "onbezorgd": "onbezorgd", "onbrandbaar": "onbrand", "onbrandbare": "onbrand", "onbreekbaar": "onbrek", "onbreekbaarheid": "onbrek", "onbruikbaar": "onbruik", "onbruikbare": "onbruik", "oncontroleerbaar": "oncontroler", "ondankbaar": "ondank", "ondankbare": "ondank", "ondanks": "ondank", "ondemocratische": "ondemocratisch", "onden": "ond", "onder": "onder", "onderaan": "onderan", "onderaannemer": "onderaannemer", "onderaannemers": "onderaannemer", "onderaardse": "onderaard", "onderafdichting": "onderafdicht", "onderbelichting": "onderbelicht", "onderbouwd": "onderbouwd", "onderbouwde": "onderbouwd", "onderbouwen": "onderbouw", "onderbouwing": "onderbouw", "onderbrak": "onderbrak", "onderbraken": "onderbrak", "onderbrekingen": "onderbrek", "onderbrengen": "onderbreng", "onderbroek": "onderbroek", "onderbroken": "onderbrok", "onderdak": "onderdak", "onderdeel": "onderdel", "onderdelen": "onderdel", "onderdoen": "onderdoen", "onderdruk": "onderdruk", "onderdrukken": "onderdruk", "onderdrukt": "onderdrukt", "onderen": "onder", "ondergaan": "ondergan", "ondergang": "ondergang", "ondergebracht": "ondergebracht", "ondergedompeld": "ondergedompeld", "ondergedompelde": "ondergedompeld", "ondergeschikt": "ondergeschikt", "ondergeschikte": "ondergeschikt", "ondergeschoven": "ondergeschov", "ondergewaardeerd": "ondergewaardeerd", "ondergewerkt": "ondergewerkt", "onderging": "onderg", "ondergingen": "onderg", "ondergoed": "ondergoed", "ondergrens": "ondergren", "ondergrond": "ondergrond", "ondergronden": "ondergrond", "ondergrondisolatie": "ondergrondisolatie", "ondergronds": "ondergrond", "ondergrondse": "ondergrond", "onderhandelaar": "onderhandelar", "onderhandelaars": "onderhandelar", "onderhandeld": "onderhandeld", "onderhandelen": "onderhandel", "onderhandeling": "onderhandel", "onderhandelingen": "onderhandel", "onderhandelt": "onderhandelt", "onderhands": "onderhand", "onderheid": "onder", "onderhevig": "onderhev", "onderhield": "onderhield", "onderhoud": "onderhoud", "onderhoudbaarheid": "onderhoud", "onderhouden": "onderhoud", "onderhoudend": "onderhoud", "onderhoudsactiviteiten": "onderhoudsactiviteit", "onderhoudsarm": "onderhoudsarm", "onderhoudsarme": "onderhoudsarm", "onderhoudsbaggerwerk": "onderhoudsbaggerwerk", "onderhoudsbeurten": "onderhoudsbeurt", "onderhoudscontract": "onderhoudscontract", "onderhoudsgevoeligheid": "onderhoudsgevoel", "onderhoudskosten": "onderhoudskost", "onderhoudsmanagement": "onderhoudsmanagement", "onderhoudsmiddelen": "onderhoudsmiddel", "onderhoudsovereenkomst": "onderhoudsovereenkomst", "onderhoudsperioden": "onderhoudsperiod", "onderhoudsprogramma": "onderhoudsprogramma", "onderhoudsschilders": "onderhoudsschilder", "onderhoudsstructuur": "onderhoudsstructur", "onderhoudsvriendelijke": "onderhoudsvriend", "onderhoudsvrij": "onderhoudsvrij", "onderhoudswerk": "onderhoudswerk", "onderhoudswerkzaamheden": "onderhoudswerkzam", "onderhuidse": "onderhuid", "onderin": "onderin", "onderkant": "onderkant", "onderkend": "onderk", "onderkent": "onderkent", "onderlaag": "onderlag", "onderlagen": "onderlag", "onderliggende": "onderligg", "onderling": "onderl", "onderlinge": "onderl", "ondermaat": "ondermat", "ondermeer": "ondermer", "ondermijnen": "ondermijn", "ondermijnt": "ondermijnt", "onderminister": "onderminister", "ondermode": "ondermod", "onderneemt": "onderneemt", "ondernemen": "ondernem", "ondernemer": "ondernemer", "ondernemers": "ondernemer", "ondernemersbond": "ondernemersbond", "ondernemerschap": "ondernemerschap", "ondernemersorganisatie": "ondernemersorganisatie", "ondernemersorganisaties": "ondernemersorganisaties", "onderneming": "ondernem", "ondernemingen": "ondernem", "ondernemingsorganisaties": "ondernemingsorganisaties", "ondernemingsraden": "ondernemingsrad", "ondernemingsstrategiën": "ondernemingsstrategien", "ondernomen": "ondernom", "onderontwikkeld": "onderontwikkeld", "onderop": "onderop", "onderricht": "onderricht", "onderrok": "onderrok", "onderschat": "onderschat", "onderscheid": "onderscheid", "onderscheiden": "onderscheid", "onderscheiding": "onderscheid", "onderscheids": "onderscheid", "onderscheidt": "onderscheidt", "onderscheppen": "onderschepp", "onderschept": "onderschept", "onderschreden": "onderschred", "onderschreef": "onderschref", "onderschreven": "onderschrev", "onderschrift": "onderschrift", "onderschrijft": "onderschrijft", "onderschrijven": "onderschrijv", "onderstaand": "onderstaand", "onderstations": "onderstation", "onderste": "onderst", "ondersteund": "ondersteund", "ondersteunde": "ondersteund", "ondersteunen": "ondersteun", "ondersteunend": "ondersteun", "ondersteunende": "ondersteun", "ondersteuning": "ondersteun", "ondersteuningsprogramma": "ondersteuningsprogramma", "ondersteunt": "ondersteunt", "onderstreept": "onderstreept", "ondertekenaars": "ondertekenar", "ondertekend": "ondertek", "ondertekende": "ondertek", "ondertekenden": "ondertek", "ondertekenen": "onderteken", "ondertekening": "onderteken", "ondertekent": "ondertekent", "ondertitel": "ondertitel", "ondertoon": "onderton", "ondertussen": "ondertuss", "ondervertegenwoordigd": "ondervertegenwoordigd", "ondervinden": "ondervind", "ondervinding": "ondervind", "ondervindt": "ondervindt", "ondervond": "ondervond", "ondervonden": "ondervond", "ondervraagd": "ondervraagd", "ondervraagden": "ondervraagd", "ondervragen": "ondervrag", "onderwaardering": "onderwaarder", "onderwaterdepot": "onderwaterdepot", "onderwatergeluid": "onderwatergeluid", "onderwatergeluiden": "onderwatergeluid", "onderwaterrif": "onderwaterrif", "onderwatersuppletie": "onderwatersuppletie", "onderwaterzanddepot": "onderwaterzanddepot", "onderwaterzoogdieren": "onderwaterzoogdier", "onderweg": "onderweg", "onderwerken": "onderwerk", "onderwerp": "onderwerp", "onderwerpen": "onderwerp", "onderwijl": "onderwijl", "onderwijs": "onderwijs", "onderwijsactiviteiten": "onderwijsactiviteit", "onderwijscompetitie": "onderwijscompetitie", "onderwijsprogramma": "onderwijsprogramma", "onderwijsproject": "onderwijsproject", "onderworpen": "onderworp", "onderworpenheid": "onderworp", "onderzeeboot": "onderzeebot", "onderzeeboten": "onderzeebot", "onderzeeërs": "onderzeeer", "onderzeese": "onderzes", "onderzocht": "onderzocht", "onderzochte": "onderzocht", "onderzochten": "onderzocht", "onderzoek": "onderzoek", "onderzoekbedrijf": "onderzoekbedrijf", "onderzoekcentrum": "onderzoekcentrum", "onderzoeken": "onderzoek", "onderzoekend": "onderzoek", "onderzoeker": "onderzoeker", "onderzoekers": "onderzoeker", "onderzoekinstelling": "onderzoekinstell", "onderzoekinstituut": "onderzoekinstitut", "onderzoekprogramma": "onderzoekprogramma", "onderzoeks": "onderzoek", "onderzoeksagenda": "onderzoeksagenda", "onderzoeksbeurzen": "onderzoeksbeurz", "onderzoeksbevel": "onderzoeksbevel", "onderzoeksbureau": "onderzoeksbureau", "onderzoekscentra": "onderzoekscentra", "onderzoekscentrum": "onderzoekscentrum", "onderzoekscommissie": "onderzoekscommissie", "onderzoeksdienst": "onderzoeksdienst", "onderzoekservaring": "onderzoekservar", "onderzoeksfase": "onderzoeksfas", "onderzoeksgegevens": "onderzoeksgegeven", "onderzoeksgeld": "onderzoeksgeld", "onderzoeksgroep": "onderzoeksgroep", "onderzoeksinstellingen": "onderzoeksinstell", "onderzoeksinstituten": "onderzoeksinstitut", "onderzoeksinstituut": "onderzoeksinstitut", "onderzoekskosten": "onderzoekskost", "onderzoeksmethode": "onderzoeksmethod", "onderzoeksmethoden": "onderzoeksmethod", "onderzoeksobjecten": "onderzoeksobject", "onderzoeksorganisatie": "onderzoeksorganisatie", "onderzoeksorganisaties": "onderzoeksorganisaties", "onderzoeksplicht": "onderzoeksplicht", "onderzoeksprogramma": "onderzoeksprogramma", "onderzoeksproject": "onderzoeksproject", "onderzoeksprojecten": "onderzoeksproject", "onderzoekspunten": "onderzoekspunt", "onderzoeksrapport": "onderzoeksrapport", "onderzoeksreactoren": "onderzoeksreactor", "onderzoeksresulaten": "onderzoeksresulat", "onderzoeksresultaten": "onderzoeksresultat", "onderzoeksruimte": "onderzoeksruimt", "onderzoeksschepen": "onderzoeksschep", "onderzoeksschip": "onderzoeksschip", "onderzoeksstrategie": "onderzoeksstrategie", "onderzoeksteam": "onderzoeksteam", "onderzoeksthema": "onderzoeksthema", "onderzoekstraject": "onderzoekstraject", "onderzoeksverslag": "onderzoeksverslag", "onderzoeksvoorstellen": "onderzoeksvoorstell", "onderzoeksvormen": "onderzoeksvorm", "onderzoekt": "onderzoekt", "ondesteunt": "ondesteunt", "ondeugd": "ondeugd", "ondeugdelijk": "ondeugd", "ondeugden": "ondeugd", "ondeugend": "ondeug", "ondeugende": "ondeug", "ondiep": "ondiep", "ondiepe": "ondiep", "ondiepte": "ondiept", "ondier": "ondier", "ondoelmatig": "ondoelmat", "ondoenlijk": "ondoen", "ondoordacht": "ondoordacht", "ondoordachte": "ondoordacht", "ondoordachtheid": "ondoordacht", "ondoordringbaar": "ondoordring", "ondoordringbaarheid": "ondoordring", "ondoordringbare": "ondoordring", "ondoorgrondelijke": "ondoorgrond", "ondoorlatende": "ondoorlat", "ondoorzichtig": "ondoorzicht", "ondoorzichtigheid": "ondoorzicht", "ondraagbare": "ondrag", "ondragelijk": "ondrag", "ondragelijke": "ondrag", "ondragelijkheid": "ondrag", "ondrinkbaar": "ondrink", "onduidelijk": "onduid", "onduidelijke": "onduid", "onduidelijkheden": "onduid", "onduidelijkheid": "onduid", "oneens": "onen", "oneerlijk": "oner", "oneerlijke": "oner", "oneerlijkheid": "oner", "oneigenlijk": "oneigen", "oneigenlijkheid": "oneigen", "oneindig": "oneind", "oneindige": "oneind", "oneindigheden": "oneind", "oneindigheid": "oneind", "onem": "onem", "onenigheid": "onen", "onervaren": "onervar", "onevenredige": "onevenred", "onevenwichtig": "onevenwicht", "onfatsoenlijke": "onfatsoen", "onfeilbaar": "onfeil", "ongeacht": "ongeacht", "ongebleekt": "ongebleekt", "ongebleekte": "ongebleekt", "ongeboren": "ongebor", "ongebreidelde": "ongebreideld", "ongebruikt": "ongebruikt", "ongebruikte": "ongebruikt", "ongecontroleerd": "ongecontroleerd", "ongedaan": "ongedan", "ongedekte": "ongedekt", "ongedierte": "ongediert", "ongedisciplineerd": "ongedisciplineerd", "ongeduld": "ongeduld", "ongeduldig": "ongeduld", "ongedurig": "ongedur", "ongegeneerde": "ongegeneerd", "ongegeneerdheid": "ongegeneerd", "ongegrond": "ongegrond", "ongehuwde": "ongehuwd", "ongekamd": "ongekamd", "ongekapt": "ongekapt", "ongekend": "ongek", "ongekende": "ongek", "ongeleefd": "ongeleefd", "ongelegeerd": "ongelegeerd", "ongelegeerde": "ongelegeerd", "ongelijk": "ongelijk", "ongelikte": "ongelikt", "ongeloof": "ongelof", "ongelooflijk": "ongelof", "ongelooflijkheid": "ongelof", "ongeloofwaardig": "ongeloofwaard", "ongelovig": "ongelov", "ongeluk": "ongeluk", "ongelukig": "ongeluk", "ongelukje": "ongelukj", "ongelukken": "ongeluk", "ongelukkig": "ongelukk", "ongelukkige": "ongelukk", "ongelukkiger": "ongelukkiger", "ongelukscenario": "ongelukscenario", "ongemak": "ongemak", "ongemakkelijk": "ongemak", "ongemerkt": "ongemerkt", "ongemoeid": "ongemoeid", "ongenaakbaarheid": "ongenak", "ongenaakbare": "ongenak", "ongenade": "ongenad", "ongenadig": "ongenad", "ongeneeslijk": "ongenes", "ongenoegen": "ongenoeg", "ongenuanceerd": "ongenuanceerd", "ongeoorloofd": "ongeoorloofd", "ongeoorloofde": "ongeoorloofd", "ongerechtigheden": "ongerecht", "ongeremd": "ongeremd", "ongerepte": "ongerept", "ongerieflijke": "ongerief", "ongerust": "ongerust", "ongerustheid": "ongerust", "ongescheiden": "ongescheid", "ongeschikt": "ongeschikt", "ongeschonden": "ongeschond", "ongeschreven": "ongeschrev", "ongeslepen": "ongeslep", "ongesteldheid": "ongesteld", "ongestoord": "ongestoord", "ongestoorde": "ongestoord", "ongetiteld": "ongetiteld", "ongetrouwd": "ongetrouwd", "ongetrouwde": "ongetrouwd", "ongetwijfeld": "ongetwijfeld", "ongevaarlijk": "ongevar", "ongevaarlijke": "ongevar", "ongeval": "ongeval", "ongevallen": "ongevall", "ongevallendienst": "ongevallendienst", "ongeveer": "ongever", "ongevoelig": "ongevoel", "ongevoelige": "ongevoel", "ongevoeligheid": "ongevoel", "ongevoerde": "ongevoerd", "ongevraagd": "ongevraagd", "ongewenst": "ongewenst", "ongewenste": "ongewenst", "ongewijzigd": "ongewijzigd", "ongewone": "ongewon", "ongewoon": "ongewon", "ongewoons": "ongewon", "ongezegd": "ongezegd", "ongezellig": "ongezell", "ongezellige": "ongezell", "ongezond": "ongezond", "ongezonde": "ongezond", "ongezonder": "ongezonder", "ongezuiverd": "ongezuiverd", "onghartelijk": "onghart", "ongrijpbaar": "ongrijp", "ongunstig": "ongunst", "ongunstige": "ongunst", "onhaalbaar": "onhal", "onhandelbaar": "onhandel", "onhandelbare": "onhandel", "onhandig": "onhand", "onhandige": "onhand", "onhandigheden": "onhand", "onhandigheid": "onhand", "onhartelijk": "onhart", "onhartelijkheid": "onhart", "onhebbelijk": "onhebb", "onhebbelijke": "onhebb", "onhebbelijkheden": "onhebb", "onheduidend": "onheduid", "onheil": "onheil", "onherroepelijk": "onherroep", "onherroepelijke": "onherroep", "onherstelbaar": "onherstel", "onherstelbare": "onherstel", "onhoorbaar": "onhor", "onhoorbare": "onhor", "onivins": "onivin", "onjuist": "onjuist", "onjuiste": "onjuist", "onjuistheden": "onjuist", "onklaar": "onklar", "onkosten": "onkost", "onkruid": "onkruid", "onkruidbeheersing": "onkruidbeheers", "onkruidbestrijder": "onkruidbestrijder", "onkruidbestrijding": "onkruidbestrijd", "onkruidbestrijdingsmaterieel": "onkruidbestrijdingsmaterieel", "onkruidbestrijdingsmiddel": "onkruidbestrijdingsmiddel", "onkruidbestrijdingsmiddelen": "onkruidbestrijdingsmiddel", "onkruidborstel": "onkruidborstel", "onkruidborstelarmen": "onkruidborstelarm", "onkruidborstelen": "onkruidborstel", "onkruidbrander": "onkruidbrander", "onkruidbranders": "onkruidbrander", "onkruiden": "onkruid", "onkruidverdelgers": "onkruidverdelger", "onkruidverhitter": "onkruidverhitter", "onkruidverhitting": "onkruidverhit", "onkundig": "onkund", "onkundige": "onkund", "onlangs": "onlang", "onlesbaar": "onles", "onlief": "onlief", "onlogisch": "onlogisch", "onlogische": "onlogisch", "onlosmakelijk": "onlosmak", "onlusten": "onlust", "onmacht": "onmacht", "onmachtig": "onmacht", "onmachtssfinx": "onmachtssfinx", "onmenselijk": "onmens", "onmènselijk": "onmèns", "onmerkbaar": "onmerk", "onmetelijke": "onmet", "onmetelijkheid": "onmet", "onmiddellijk": "onmiddel", "onmiddellijke": "onmiddel", "onmin": "onmin", "onmisbaar": "onmis", "onmiskenbaar": "onmisken", "onmiskenbare": "onmisken", "onmoetten": "onmoet", "onmogelijk": "onmog", "onmogelijkbereikbare": "onmogelijkbereik", "onmogelijke": "onmog", "onmogelijkheid": "onmog", "onnatuurlijk": "onnatur", "onnatuurlijke": "onnatur", "onnauwkeurigheidsmarge": "onnauwkeurigheidsmarg", "onnodig": "onnod", "onnodige": "onnod", "onnozel": "onnozel", "onnozele": "onnozel", "ono": "ono", "onomkeerbaar": "onomker", "onomstotelijk": "onomstot", "ononderbroken": "ononderbrok", "onontbeerlijk": "onontber", "onontknoopbaar": "onontknop", "onontkoombaar": "onontkom", "onopgeloste": "onopgelost", "onophoudelijk": "onophoud", "onophoudelijke": "onophoud", "onoplettendheid": "onoplet", "onoplosbaar": "onoplos", "onoplosbare": "onoplos", "onoprecht": "onoprecht", "onopzettelijk": "onopzet", "onoverbrugbaar": "onoverbrug", "onoverkomelijk": "onoverkom", "onoverwinlijke": "onoverwin", "onoverzichtelijk": "onoverzicht", "onoverzienbare": "onoverzien", "onpassend": "onpass", "onpersoonlijke": "onperson", "onpractisch": "onpractisch", "onpraktisch": "onpraktisch", "onrealistisch": "onrealistisch", "onrecht": "onrecht", "onrechte": "onrecht", "onrechtmatig": "onrechtmat", "onrechtmatigheden": "onrechtmat", "onrechtvaardig": "onrechtvaard", "onrechtvaardigheid": "onrechtvaard", "onredelijk": "onred", "onredelijke": "onred", "onredelijkheid": "onred", "onregelmatige": "onregelmat", "onregelmatigheden": "onregelmat", "onregelmatigs": "onregelmat", "onrendabele": "onrendabel", "onri": "onri", "onroerend": "onroer", "onroerende": "onroer", "onroerendgoedtransacties": "onroerendgoedtransacties", "onrust": "onrust", "onrustig": "onrust", "onrustpolder": "onrustpolder", "ons": "ons", "òns": "òns", "onsamenhangende": "onsamenhang", "onschadelijk": "onschad", "onschadelijke": "onschad", "onschatbare": "onschat", "onschuld": "onschuld", "onschuldig": "onschuld", "onschuldige": "onschuld", "onschuldigs": "onschuld", "onsi": "onsi", "onstuimig": "onstuim", "onstwedde": "onstwed", "onsympathieke": "onsympathiek", "onszelf": "onszelf", "ontapbaar": "ontap", "ontario": "ontario", "ontastbaar": "ontast", "ontastbare": "ontast", "ontbeert": "ontbeert", "ontbeet": "ontbet", "ontberen": "ontber", "ontbiedt": "ontbiedt", "ontbijt": "ontbijt", "ontbijten": "ontbijt", "ontbijttafel": "ontbijttafel", "ontbindingsprodukten": "ontbindingsprodukt", "ontbloeien": "ontbloei", "ontblootte": "ontblot", "ontboezemde": "ontboezemd", "ontboezeming": "ontboezem", "ontboezemingen": "ontboezem", "ontbolsteren": "ontbolster", "ontbossing": "ontboss", "ontbossingen": "ontboss", "ontbrak": "ontbrak", "ontbraken": "ontbrak", "ontbranden": "ontbrand", "ontbreekt": "ontbreekt", "ontbreken": "ontbrek", "ontbrekende": "ontbrek", "ontdaan": "ontdan", "ontdeed": "ontded", "ontdekken": "ontdek", "ontdekker": "ontdekker", "ontdekkers": "ontdekker", "ontdekking": "ontdek", "ontdekkingen": "ontdek", "ontdekt": "ontdekt", "ontdekte": "ontdekt", "ontdekten": "ontdekt", "ontdoen": "ontdoen", "ontdoeners": "ontdoener", "ontdoet": "ontdoet", "ontdoken": "ontdok", "ontdooifrequentie": "ontdooifrequentie", "ontduiken": "ontduik", "ontduikende": "ontduik", "ontduiking": "ontduik", "ontduikt": "ontduikt", "onteelt": "onteelt", "onteigenen": "onteigen", "onteigening": "onteigen", "onteigeningen": "onteigen", "ontelbare": "ontel", "onterecht": "onterecht", "onterven": "onterv", "ontevreden": "ontevred", "ontevredenheden": "ontevred", "ontevredenheid": "ontevred", "ontex": "ontex", "ontfermde": "ontfermd", "ontferming": "ontferm", "ontfermt": "ontfermt", "ontgassing": "ontgass", "ontgelden": "ontgeld", "ontging": "ontging", "ontginnen": "ontginn", "ontgoocheld": "ontgoocheld", "ontgoocheling": "ontgoochel", "ontgraven": "ontgrav", "ontgraving": "ontgrav", "ontgroeit": "ontgroeit", "ontgronders": "ontgronder", "ontgronding": "ontgrond", "ontgrondingenbeleid": "ontgrondingenbeleid", "ontgrondingenfonds": "ontgrondingenfond", "ontgrondingenlocaties": "ontgrondingenlocaties", "ontgrondingenplan": "ontgrondingenplan", "ontgrondingenwet": "ontgrondingenwet", "ontgrondingsbedrijven": "ontgrondingsbedrijv", "ontgrondingsfonds": "ontgrondingsfond", "ontgrondingslocaties": "ontgrondingslocaties", "ontgrondingswet": "ontgrondingswet", "onthaald": "onthaald", "onthaalde": "onthaald", "onthalen": "onthal", "ontharden": "onthard", "ontharding": "onthard", "onthardingsinstallaties": "onthardingsinstallaties", "onthardt": "onthardt", "ontheet": "onthet", "ontheffing": "ontheff", "ontheffingen": "ontheff", "ontheffingsprocedures": "ontheffingsprocedures", "ontheffingsregeling": "ontheffingsregel", "ontheven": "onthev", "onthield": "onthield", "onthielden": "onthield", "onthoofd": "onthoofd", "onthouden": "onthoud", "onthoudt": "onthoudt", "onthuld": "onthuld", "onthutsende": "onthuts", "ontinkte": "ontinkt", "ontinktingsresidu": "ontinktingsresidu", "ontkend": "ontkend", "ontkende": "ontkend", "ontkenden": "ontkend", "ontkennen": "ontkenn", "ontkennend": "ontkenn", "ontkenning": "ontkenn", "ontkenningen": "ontkenn", "ontkent": "ontkent", "ontkiemt": "ontkiemt", "ontkleed": "ontkled", "ontkleedde": "ontkled", "ontkleurt": "ontkleurt", "ontknoopt": "ontknoopt", "ontkomen": "ontkom", "ontkoppelen": "ontkoppel", "ontkrachten": "ontkracht", "ontladen": "ontlad", "ontladingen": "ontlad", "ontlast": "ontlast", "ontlasten": "ontlast", "ontlasting": "ontlast", "ontleden": "ontled", "ontleding": "ontled", "ontleed": "ontled", "ontleedt": "ontleedt", "ontleend": "ontleend", "ontloken": "ontlok", "ontlokkende": "ontlok", "ontlopen": "ontlop", "ontluchten": "ontlucht", "ontmanteld": "ontmanteld", "ontmantelen": "ontmantel", "ontmanteling": "ontmantel", "ontmantelingsbesluit": "ontmantelingsbesluit", "ontmantelingskosten": "ontmantelingskost", "ontmantelingsproces": "ontmantelingsproces", "ontmoedigd": "ontmoedigd", "ontmoedigen": "ontmoed", "ontmoediging": "ontmoed", "ontmoedigingen": "ontmoed", "ontmoet": "ontmoet", "ontmoeten": "ontmoet", "ontmoeting": "ontmoet", "ontmoetingen": "ontmoet", "ontmoette": "ontmoet", "ontmoetten": "ontmoet", "ontnam": "ontnam", "ontnamen": "ontnam", "ontnemen": "ontnem", "ontneming": "ontnem", "ontnemingsvorderingen": "ontnemingsvorder", "ontnomen": "ontnom", "ontnuchterd": "ontnuchterd", "ontnuchterden": "ontnuchterd", "ontoegankelijkheid": "ontoegank", "ontoelaatbaar": "ontoelat", "ontoelaatbare": "ontoelat", "ontoereikend": "ontoereik", "ontoonbaar": "onton", "ontoonbaarder": "ontoonbaarder", "ontplofbare": "ontplof", "ontploffen": "ontploff", "ontploffing": "ontploff", "ontploffings": "ontploff", "ontploffingsgevaar": "ontploffingsgevar", "ontplofte": "ontploft", "ontplooien": "ontplooi", "ontpoldering": "ontpolder", "ontpolding": "ontpold", "ontregeld": "ontregeld", "ontroerd": "ontroerd", "ontroerde": "ontroerd", "ontroering": "ontroer", "ontruimd": "ontruimd", "ontruimen": "ontruim", "ontruiming": "ontruim", "ontsiering": "ontsier", "ontslag": "ontslag", "ontslagen": "ontslag", "ontsluiten": "ontsluit", "ontsluiting": "ontsluit", "ontsluitingsweg": "ontsluitingsweg", "ontsmetters": "ontsmetter", "ontsmettingsmiddel": "ontsmettingsmiddel", "ontsmettingsmiddelen": "ontsmettingsmiddel", "ontsnappen": "ontsnapp", "ontsnappend": "ontsnapp", "ontsnappende": "ontsnapp", "ontsnappingsstoom": "ontsnappingsstom", "ontsnapt": "ontsnapt", "ontsnapte": "ontsnapt", "ontsnippering": "ontsnipper", "ontspande": "ontspand", "ontspanden": "ontspand", "ontspannen": "ontspann", "ontspoord": "ontspoord", "ontspoorden": "ontspoord", "ontsporingen": "ontspor", "ontsprongen": "ontsprong", "ontstaan": "ontstan", "ontstaat": "ontstat", "ontstak": "ontstak", "ontstane": "ontstan", "ontsteking": "ontstek", "ontstekingsbron": "ontstekingsbron", "ontsteld": "ontsteld", "ontstelde": "ontsteld", "ontsteltenis": "ontsteltenis", "ontstemd": "ontstemd", "ontstemden": "ontstemd", "ontstemming": "ontstemm", "ontstoken": "ontstok", "ontstond": "ontstond", "ontstonden": "ontstond", "ontstraalde": "ontstraald", "ontstromend": "ontstrom", "onttakeling": "onttakel", "onttrekken": "onttrek", "onttrekking": "onttrek", "onttrekkingssysteem": "onttrekkingssystem", "onttrekt": "onttrekt", "onttrokken": "onttrok", "ontvallen": "ontvall", "ontvang": "ontvang", "ontvangdagen": "ontvangdag", "ontvangen": "ontvang", "ontvangende": "ontvang", "ontvangenis": "ontvangenis", "ontvanger": "ontvanger", "ontvangers": "ontvanger", "ontvangst": "ontvangst", "ontvangsten": "ontvangst", "ontvangsthal": "ontvangsthal", "ontvangt": "ontvangt", "ontvankelijk": "ontvank", "ontvankelijker": "ontvankelijker", "ontvankelijkheid": "ontvank", "ontvetters": "ontvetter", "ontvettingsmiddelen": "ontvettingsmiddel", "ontving": "ontving", "ontvingen": "ontving", "ontvlambare": "ontvlam", "ontvlucht": "ontvlucht", "ontvluchten": "ontvlucht", "ontvouwden": "ontvouwd", "ontvreemdde": "ontvreemd", "ontvreemde": "ontvreemd", "ontvreemden": "ontvreemd", "ontvreemders": "ontvreemder", "ontvreemding": "ontvreemd", "ontwaakte": "ontwaakt", "ontwaken": "ontwak", "ontwakende": "ontwak", "ontwapening": "ontwapen", "ontwapeningscommissie": "ontwapeningscommissie", "ontwapeningsconferentie": "ontwapeningsconferentie", "ontwaterd": "ontwaterd", "ontwateren": "ontwater", "ontwatering": "ontwater", "ontweek": "ontwek", "ontweken": "ontwek", "ontwend": "ontwend", "ontwerp": "ontwerp", "ontwerpbeschikking": "ontwerpbeschik", "ontwerpbureau": "ontwerpbureau", "ontwerpdruk": "ontwerpdruk", "ontwerpdrukken": "ontwerpdruk", "ontwerpen": "ontwerp", "ontwerper": "ontwerper", "ontwerpers": "ontwerper", "ontwerpfase": "ontwerpfas", "ontwerpfouten": "ontwerpfout", "ontwerpgereedschap": "ontwerpgereedschap", "ontwerpgereedschappen": "ontwerpgereedschapp", "ontwerpmaatregelen": "ontwerpmaatregel", "ontwerpmethode": "ontwerpmethod", "ontwerpoplossingen": "ontwerpoploss", "ontwerpprijs": "ontwerpprijs", "ontwerpproces": "ontwerpproces", "ontwerpt": "ontwerpt", "ontwerptechnologie": "ontwerptechnologie", "ontwerptemperatuur": "ontwerptemperatur", "ontwerpvergunning": "ontwerpvergunn", "ontwerpversie": "ontwerpversie", "ontwerpwaarde": "ontwerpwaard", "ontwerpwedstrijd": "ontwerpwedstrijd", "ontwierp": "ontwierp", "ontwijd": "ontwijd", "ontwijdde": "ontwijd", "ontwijken": "ontwijk", "ontwikkel": "ontwikkel", "ontwikkelaars": "ontwikkelar", "ontwikkeld": "ontwikkeld", "ontwikkelde": "ontwikkeld", "ontwikkelden": "ontwikkeld", "ontwikkelen": "ontwikkel", "ontwikkelend": "ontwikkel", "ontwikkelende": "ontwikkel", "ontwikkeling": "ontwikkel", "ontwikkelingen": "ontwikkel", "ontwikkelings": "ontwikkel", "ontwikkelingsbank": "ontwikkelingsbank", "ontwikkelingsfonds": "ontwikkelingsfond", "ontwikkelingsgeld": "ontwikkelingsgeld", "ontwikkelingsgraad": "ontwikkelingsgrad", "ontwikkelingshulp": "ontwikkelingshulp", "ontwikkelingskansen": "ontwikkelingskans", "ontwikkelingskosten": "ontwikkelingskost", "ontwikkelingsland": "ontwikkelingsland", "ontwikkelingslanden": "ontwikkelingsland", "ontwikkelingsmaatschappij": "ontwikkelingsmaatschappij", "ontwikkelingsmodel": "ontwikkelingsmodel", "ontwikkelingsorganisatie": "ontwikkelingsorganisatie", "ontwikkelingsplan": "ontwikkelingsplan", "ontwikkelingsproject": "ontwikkelingsproject", "ontwikkelingsprojecten": "ontwikkelingsproject", "ontwikkelingsrace": "ontwikkelingsrac", "ontwikkelingssamenwerking": "ontwikkelingssamenwerk", "ontwikkelingsscenario": "ontwikkelingsscenario", "ontwikkelingsstadium": "ontwikkelingsstadium", "ontwikkelingsverdrag": "ontwikkelingsverdrag", "ontwikkelingsvisie": "ontwikkelingsvisie", "ontwikkelomgeving": "ontwikkelomgev", "ontwikkelpasta": "ontwikkelpasta", "ontwikkelt": "ontwikkelt", "ontwikkkeld": "ontwikkkeld", "ontworpen": "ontworp", "ontwrichtte": "ontwricht", "ontzag": "ontzag", "ontzaglijk": "ontzag", "ontzaglijke": "ontzag", "ontzaglijkheden": "ontzag", "ontzanding": "ontzand", "ontzandingsplaats": "ontzandingsplat", "ontzandingsplan": "ontzandingsplan", "ontzegd": "ontzegd", "ontzenuwd": "ontzenuwd", "ontzenuwde": "ontzenuwd", "ontzenuwen": "ontzenuw", "ontzenuwing": "ontzenuw", "ontzet": "ontzet", "ontzette": "ontzet", "ontzettend": "ontzet", "ontzettende": "ontzet", "ontzetting": "ontzet", "ontzield": "ontzield", "ontzien": "ontzien", "ontziet": "ontziet", "ontzilte": "ontzilt", "ontzilten": "ontzilt", "ontziltingsfabrieken": "ontziltingsfabriek", "ontziltingsinstallatie": "ontziltingsinstallatie", "ontzinken": "ontzink", "ontzinkingsfabriek": "ontzinkingsfabriek", "ontzinkingsproces": "ontzinkingsproces", "ontzuren": "ontzur", "ontzwaveling": "ontzwavel", "ontzwavelingsapparatuur": "ontzwavelingsapparatur", "ontzwavelingsinstallatie": "ontzwavelingsinstallatie", "onuithoudbare": "onuithoud", "onuitloogbaar": "onuitlog", "onuitputtelijke": "onuitput", "onuitroeibare": "onuitroei", "onuitsprekelijke": "onuitsprek", "onuitstaanbaar": "onuitstan", "onuitstaanbare": "onuitstan", "onuitvoerbaar": "onuitvoer", "onuitvoerbaarheid": "onuitvoer", "onuitwisbare": "onuitwis", "onveilige": "onveil", "onveranderd": "onveranderd", "onveranderde": "onveranderd", "onveranderlijk": "onverander", "onveranderlijke": "onverander", "onveranderlijkheid": "onverander", "onverantwoord": "onverantwoord", "onverantwoordelijk": "onverantwoord", "onverantwoordelijkheid": "onverantwoord", "onverbiddelijk": "onverbid", "onverbiddelijke": "onverbid", "onverbiddelijkheid": "onverbid", "onverbloemde": "onverbloemd", "onverbrande": "onverbrand", "onverbreekbare": "onverbrek", "onverdelgbare": "onverdelg", "onverdraagzaam": "onverdraagzam", "onverdraagzaamste": "onverdraagzaamst", "onverdragelijk": "onverdrag", "onverdroten": "onverdrot", "onvergankelijk": "onvergank", "onvergankelijke": "onvergank", "onverharde": "onverhard", "onverhoopte": "onverhoopt", "onverklaarbaar": "onverklar", "onverklaarbare": "onverklar", "onverkorte": "onverkort", "onverlichte": "onverlicht", "onvermijdelijk": "onvermijd", "onvermijdelijke": "onvermijd", "onverminderd": "onverminderd", "onvermoede": "onvermoed", "onvermoeid": "onvermoeid", "onvermomde": "onvermomd", "onverplichte": "onverplicht", "onverschillig": "onverschill", "onverschillige": "onverschill", "onverschilligheid": "onverschill", "onverschoten": "onverschot", "onverstandig": "onverstand", "onverstandige": "onverstand", "onverstoorde": "onverstoord", "onvervalste": "onvervalst", "onvervangbaar": "onvervang", "onverwacht": "onverwacht", "onverwachte": "onverwacht", "onverwachts": "onverwacht", "onverwerkbaar": "onverwerk", "onverwerkbare": "onverwerk", "onverzadigde": "onverzadigd", "onverzoenlijk": "onverzoen", "onverzoenlijke": "onverzoen", "onverzoenlijkheid": "onverzoen", "onverzorgde": "onverzorgd", "onvoldaan": "onvoldan", "onvoldaanheid": "onvoldan", "onvoldoende": "onvoldo", "onvolledig": "onvolled", "onvolledige": "onvolled", "onvolledigheid": "onvolled", "onvoorspelbaar": "onvoorspel", "onvoorspelbaarheid": "onvoorspel", "onvoorwaardelijk": "onvoorwaard", "onvoorwaardelijke": "onvoorwaard", "onvoorzichtigheid": "onvoorzicht", "onvrede": "onvred", "onvriendelijk": "onvriend", "onvriendelijke": "onvriend", "onvruchtbaar": "onvrucht", "onwaar": "onwar", "onwaardig": "onwaard", "onwaardige": "onwaard", "onwaarheden": "onwar", "onwaarheid": "onwar", "onwaarschijnlijk": "onwaarschijn", "onwaarschijnlijke": "onwaarschijn", "onwederstaanbaar": "onwederstan", "onwederstaanbare": "onwederstan", "onweer": "onwer", "onweerhoudbaar": "onweerhoud", "onweerhoudbare": "onweerhoud", "onweerlegbaar": "onweerleg", "onweersbui": "onweersbui", "onweerslucht": "onweerslucht", "onweersluchten": "onweerslucht", "onweerstaanbaar": "onweerstan", "onweerstaanbare": "onweerstan", "onweerszwoelte": "onweerszwoelt", "onwelwillend": "onwelwill", "onwerkelijkheid": "onwerk", "onwetend": "onwet", "onwetendheid": "onwet", "onwetenschappelijke": "onwetenschapp", "onwetingen": "onwet", "onwezenlijkheden": "onwezen", "onwil": "onwil", "onwillekeurig": "onwillekeur", "onwillekeurige": "onwillekeur", "onwillig": "onwill", "onwillige": "onwill", "onwilligheid": "onwill", "onwrikbaar": "onwrik", "onwrikbare": "onwrik", "ony": "ony", "onzat": "onzat", "onze": "onz", "ónze": "onz", "ònze": "ònze", "onzedelijk": "onzed", "onzedelijkheid": "onzed", "onzegbaars": "onzeg", "onzeker": "onzeker", "onzekere": "onzeker", "onzekerheden": "onzeker", "onzekerheid": "onzeker", "onzer": "onzer", "onzichtbaaar": "onzichtbaaar", "onzichtbaar": "onzicht", "onzichtbare": "onzicht", "onzienlijke": "onzien", "onzienlijks": "onzien", "onzin": "onzin", "onzinnig": "onzinn", "onzinnige": "onzinn", "onzorgvuldig": "onzorgvuld", "onzorgvuldige": "onzorgvuld", "onzuiver": "onzuiver", "onzuiverheden": "onzuiver", "ooftbomen": "ooftbom", "oog": "oog", "oogjes": "oogjes", "oogleden": "oogled", "oogluikend": "oogluik", "oogmerk": "oogmerk", "oogopslag": "oogopslag", "oogpunt": "oogpunt", "oogst": "oogst", "oogstafval": "oogstafval", "oogstderving": "oogstderv", "oogsten": "oogst", "oogstjaren": "oogstjar", "oogt": "oogt", "oogverblindende": "oogverblind", "ooit": "ooit", "óoit": "ooit", "oóit": "ooit", "ook": "ook", "óok": "ook", "òok": "òok", "óók": "ook", "ookal": "ookal", "ookwel": "ookwel", "oom": "oom", "óom": "oom", "oomen": "oom", "oompje": "oompj", "ooms": "oom", "oor": "oor", "oord": "oord", "oordeel": "oordel", "oordeelde": "oordeeld", "oordeelt": "oordeelt", "oordelen": "oordel", "oorden": "oord", "oorkonde": "oorkond", "oorlog": "oorlog", "oorlogse": "oorlog", "oorschot": "oorschot", "oorsprong": "oorsprong", "oorspronkelijk": "oorspronk", "oorspronkelijke": "oorspronk", "oorspronkelijkheid": "oorspronk", "oorspronkelijks": "oorspronk", "oorveeg": "oorveg", "oorwurmen": "oorwurm", "oorzaak": "oorzak", "oorzaken": "oorzak", "oost": "oost", "oostblok": "oostblok", "oostelijk": "oostelijk", "oostelijke": "oostelijk", "oosten": "oost", "oostende": "oostend", "oostenrijk": "oostenrijk", "oostenrijks": "oostenrijk", "oostenrijkse": "oostenrijk", "oostenwind": "oostenwind", "oostenwinden": "oostenwind", "oostenwindkoude": "oostenwindkoud", "ooster": "ooster", "oosterbeek": "oosterbek", "oosterbierum": "oosterbierum", "oosterburen": "oosterbur", "oostergasfabriek": "oostergasfabriek", "oostergrachtswal": "oostergrachtswal", "oosterhof": "oosterhof", "oosterhout": "oosterhout", "oostermeer": "oostermer", "oosterschelde": "oosterscheld", "oosterscheldedam": "oosterscheldedam", "oosterse": "ooster", "oosterwijk": "oosterwijk", "oosteuropa": "oosteuropa", "oosteuropese": "oosteuropes", "oostgroningse": "oostgron", "oostkanaalweg": "oostkanaalweg", "oostkant": "oostkant", "oostkust": "oostkust", "oostnederlandse": "oostnederland", "oostoever": "oostoever", "oostsiberië": "oostsiberie", "oostsiberische": "oostsiberisch", "oostvaarderplassen": "oostvaarderplass", "oostvaardersplassen": "oostvaardersplass", "oostwaarde": "oostwaard", "oostzaan": "oostzan", "oostzijde": "oostzijd", "ooy": "ooy", "ooykaas": "ooykas", "ooypolder": "ooypolder", "op": "op", "óp": "op", "òp": "òp", "opademend": "opadem", "opake": "opak", "opalig": "opal", "opalla": "opalla", "opat": "opat", "opbergen": "opberg", "opbergmijn": "opbergmijn", "opbeurende": "opbeur", "opblazen": "opblaz", "opbleef": "opblef", "opblijven": "opblijv", "opbloei": "opbloei", "opbloeien": "opbloei", "opbloesemde": "opbloesemd", "opboksen": "opboks", "opborg": "opborg", "opborrelde": "opborreld", "opbouw": "opbouw", "opbouwen": "opbouw", "opbrengen": "opbreng", "opbrengend": "opbreng", "opbrengst": "opbrengst", "opbrengsten": "opbrengst", "opbrengstprijzen": "opbrengstprijz", "opbrengstverbeteringen": "opbrengstverbeter", "opbrengstvergoedingsregeling": "opbrengstvergoedingsregel", "opbrengstverklaring": "opbrengstverklar", "opbrengstvoorspelling": "opbrengstvoorspell", "opbruising": "opbruis", "opdagen": "opdag", "opdamptechnieken": "opdamptechniek", "opdanste": "opdanst", "opdat": "opdat", "opdeling": "opdel", "opdoeken": "opdoek", "opdoemde": "opdoemd", "opdoemen": "opdoem", "opdoemende": "opdoem", "opdoen": "opdoen", "opdoet": "opdoet", "opdraaien": "opdraai", "opdraait": "opdraait", "opdracht": "opdracht", "opdrachten": "opdracht", "opdrachtgever": "opdrachtgever", "opdrachtgevers": "opdrachtgever", "opdrijven": "opdrijv", "opdrogen": "opdrog", "opdrong": "opdrong", "opdroogde": "opdroogd", "opec": "opec", "opeengestapeld": "opeengestapeld", "opeens": "open", "opeenstapelingen": "opeenstapel", "opeenvolgende": "opeenvolg", "opeenvolging": "opeenvolg", "opegenomen": "opegenom", "opel": "opel", "open": "open", "openbaar": "open", "openbaarden": "openbaard", "openbaarheid": "open", "openbaart": "openbaart", "openbare": "open", "openbarende": "openbar", "openbaring": "openbar", "openbaringen": "openbar", "openbreidde": "openbreid", "openbreidende": "openbreid", "opende": "opend", "opendeed": "opended", "openden": "opend", "opene": "open", "openen": "open", "opener": "opener", "openflapperden": "openflapperd", "opengaan": "opengan", "opengaande": "opengaand", "opengedaan": "opengedan", "opengegaan": "opengegan", "opengehouden": "opengehoud", "opengekraakte": "opengekraakt", "opengelaten": "opengelat", "opengemaakt": "opengemaakt", "opengeplooid": "opengeplooid", "opengerukte": "opengerukt", "opengesloten": "opengeslot", "opengesteld": "opengesteld", "opengetrokken": "opengetrok", "opengeweken": "opengewek", "opengezet": "opengezet", "openging": "openg", "openheid": "open", "openhield": "openhield", "openhouden": "openhoud", "opening": "open", "openingen": "open", "openings": "open", "openleg": "openleg", "openlijk": "open", "openlijke": "open", "openluchtrecreatie": "openluchtrecreatie", "openmaak": "openmak", "openmaakte": "openmaakt", "openplooien": "openplooi", "opens": "open", "openscheuren": "openscheur", "openschoof": "openschof", "opensluiten": "opensluit", "openspringen": "openspr", "openstaan": "openstan", "openstaande": "openstaand", "openstellen": "openstell", "openstelling": "openstell", "openstond": "openstond", "openstraalden": "openstraald", "opent": "opent", "opentrekken": "opentrek", "openwaaien": "openwaai", "openweken": "openwek", "openwoei": "openwoei", "opera": "opera", "operatie": "operatie", "operatiekamer": "operatiekamer", "operaties": "operaties", "operational": "operational", "operationaliseren": "operationaliser", "operationeel": "operationel", "operationele": "operationel", "operators": "operator", "opereert": "opereert", "opereren": "operer", "opererend": "operer", "opererende": "operer", "opeten": "opet", "opetende": "opet", "opflakkerend": "opflakker", "opflikkering": "opflikker", "opflikkert": "opflikkert", "opfrissen": "opfriss", "opgaan": "opgan", "opgaande": "opgaand", "opgaat": "opgat", "opgaf": "opgaf", "opgave": "opgav", "opgaven": "opgav", "opgebloeid": "opgebloeid", "opgebloeide": "opgebloeid", "opgeborgen": "opgeborg", "opgebouwd": "opgebouwd", "opgebracht": "opgebracht", "opgebrachte": "opgebracht", "opgebrande": "opgebrand", "opgedaan": "opgedan", "opgedane": "opgedan", "opgedeeld": "opgedeeld", "opgedoemd": "opgedoemd", "opgedragen": "opgedrag", "opgedreven": "opgedrev", "opgedroogd": "opgedroogd", "opgeëist": "opgeeist", "opgegaan": "opgegan", "opgegaarde": "opgegaard", "opgegeten": "opgeget", "opgegeven": "opgegev", "opgegraven": "opgegrav", "opgegroeid": "opgegroeid", "opgehaald": "opgehaald", "opgehaalde": "opgehaald", "opgehangen": "opgehang", "opgeheven": "opgehev", "opgehoogd": "opgehoogd", "opgehouden": "opgehoud", "opgejaagd": "opgejaagd", "opgejaagde": "opgejaagd", "opgeklaard": "opgeklaard", "opgeknapt": "opgeknapt", "opgeknapte": "opgeknapt", "opgekocht": "opgekocht", "opgekoeld": "opgekoeld", "opgekomen": "opgekom", "opgekronkeld": "opgekronkeld", "opgekropt": "opgekropt", "opgekropte": "opgekropt", "opgeladen": "opgelad", "opgelegd": "opgelegd", "opgelegde": "opgelegd", "opgeleid": "opgeleid", "opgeleide": "opgeleid", "opgelet": "opgelet", "opgeleverd": "opgeleverd", "opgelicht": "opgelicht", "opgeloken": "opgelok", "opgelopen": "opgelop", "opgelost": "opgelost", "opgeloste": "opgelost", "opgelucht": "opgelucht", "opgemaakt": "opgemaakt", "opgemerkt": "opgemerkt", "opgenomen": "opgenom", "opgeofferd": "opgeofferd", "opgepakt": "opgepakt", "opgeplakt": "opgeplakt", "opgepompt": "opgepompt", "opgepompte": "opgepompt", "opgepropt": "opgepropt", "opgeraakt": "opgeraakt", "opgerakeld": "opgerakeld", "opgerezen": "opgerez", "opgericht": "opgericht", "opgerichte": "opgericht", "opgeroepen": "opgeroep", "opgerold": "opgerold", "opgeruimd": "opgeruimd", "opgeruimde": "opgeruimd", "opgeschoond": "opgeschoond", "opgeschort": "opgeschort", "opgeschoten": "opgeschot", "opgeschoven": "opgeschov", "opgeschreven": "opgeschrev", "opgeschroefd": "opgeschroefd", "opgeschroefde": "opgeschroefd", "opgesjord": "opgesjord", "opgeslagen": "opgeslag", "opgesloten": "opgeslot", "opgesmeerd": "opgesmeerd", "opgesmuld": "opgesmuld", "opgesplitst": "opgesplitst", "opgespookt": "opgespookt", "opgespoord": "opgespoord", "opgespoten": "opgespot", "opgestaan": "opgestan", "opgestapeld": "opgestapeld", "opgestart": "opgestart", "opgesteld": "opgesteld", "opgestelde": "opgesteld", "opgestoken": "opgestok", "opgestookt": "opgestookt", "opgestraald": "opgestraald", "opgestuurd": "opgestuurd", "opgetild": "opgetild", "opgetogen": "opgetog", "opgetogenheid": "opgetog", "opgetreden": "opgetred", "opgetrokken": "opgetrok", "opgevallen": "opgevall", "opgevangen": "opgevang", "opgevat": "opgevat", "opgeven": "opgev", "opgevist": "opgevist", "opgevizioend": "opgevizio", "opgevoed": "opgevoed", "opgevoerd": "opgevoerd", "opgevolgd": "opgevolgd", "opgevouwen": "opgevouw", "opgevreten": "opgevret", "opgevrolijkt": "opgevrolijkt", "opgevuld": "opgevuld", "opgewaaid": "opgewaaid", "opgewarmd": "opgewarmd", "opgewassen": "opgewass", "opgewekt": "opgewekt", "opgewekte": "opgewekt", "opgewekter": "opgewekter", "opgewektheid": "opgewekt", "opgewerkt": "opgewerkt", "opgewoelde": "opgewoeld", "opgewonden": "opgewond", "opgewondenheid": "opgewond", "opgewondenste": "opgewondenst", "opgezadeld": "opgezadeld", "opgezegd": "opgezegd", "opgezet": "opgezet", "opgezette": "opgezet", "opgezien": "opgezien", "opgezocht": "opgezocht", "opgezogen": "opgezog", "opgezweept": "opgezweept", "opgezweepte": "opgezweept", "opgezwollen": "opgezwoll", "opgierende": "opgier", "opging": "opging", "opgingen": "opging", "opglanzing": "opglanz", "opglanzingen": "opglanz", "opglimlachten": "opglimlacht", "opglimpen": "opglimp", "opglimpende": "opglimp", "opglimping": "opglimp", "opglimpingen": "opglimp", "opgraven": "opgrav", "opgrijnzen": "opgrijnz", "opgrijzende": "opgrijz", "opgroeien": "opgroei", "opgroeiende": "opgroei", "opgroeiplaats": "opgroeiplat", "ophaal": "ophal", "ophaaldienst": "ophaaldienst", "ophaalkosten": "ophaalkost", "ophaalsystemen": "ophaalsystem", "ophaalt": "ophaalt", "ophaaltruck": "ophaaltruck", "ophalen": "ophal", "ophalend": "ophal", "ophalers": "ophaler", "ophef": "ophef", "opheffen": "opheff", "opheffende": "opheff", "opheffing": "opheff", "opheldering": "ophelder", "ophemelde": "ophemeld", "ophemelen": "ophemel", "opheusden": "opheusd", "ophief": "ophief", "ophield": "ophield", "ophieven": "ophiev", "ophoepelt": "ophoepelt", "ophoog": "ophog", "ophoogzand": "ophoogzand", "ophopen": "ophop", "ophoping": "ophop", "ophouden": "ophoud", "ophoudt": "ophoudt", "opic": "opic", "opinie": "opinie", "opiniepeiling": "opiniepeil", "opiniepeilingen": "opiniepeil", "opinietjes": "opinietjes", "opinion": "opinion", "opjaagde": "opjaagd", "opjeugdigende": "opjeugd", "opjeugdiging": "opjeugd", "opkijkende": "opkijk", "opklaarde": "opklaard", "opkleuren": "opkleur", "opklimmen": "opklimm", "opklimming": "opklimm", "opknapbeurt": "opknapbeurt", "opknappen": "opknapp", "opkomen": "opkom", "opkomende": "opkom", "opkoming": "opkom", "opkomst": "opkomst", "opkomt": "opkomt", "opkon": "opkon", "opkoop": "opkop", "opkopen": "opkop", "opkrachtende": "opkracht", "opkrikken": "opkrik", "opkropte": "opkropt", "opkwam": "opkwam", "opkweek": "opkwek", "oplaadbaar": "oplad", "oplaadbare": "oplad", "oplaaide": "oplaaid", "oplaaiend": "oplaai", "opladen": "oplad", "oplader": "oplader", "oplage": "oplag", "opleefde": "opleefd", "opleefden": "opleefd", "opleeft": "opleeft", "oplegde": "oplegd", "opleggen": "oplegg", "oplegger": "oplegger", "opleggers": "oplegger", "oplegmateriaal": "oplegmateriaal", "oplegt": "oplegt", "opleiding": "opleid", "opleidingen": "opleid", "opleidingsbehoefte": "opleidingsbehoeft", "opleidingsinstituten": "opleidingsinstitut", "opleidingssector": "opleidingssector", "opleidt": "opleidt", "oplekte": "oplekt", "oplette": "oplet", "opletten": "oplet", "oplettende": "oplet", "opleven": "oplev", "oplevende": "oplev", "opleverde": "opleverd", "opleveren": "oplever", "opleverende": "oplever", "oplevering": "oplever", "oplevert": "oplevert", "opleving": "oplev", "oplichten": "oplicht", "oplichtende": "oplicht", "oplichterij": "oplichterij", "oplichting": "oplicht", "oplichtingen": "oplicht", "oplichtte": "oplicht", "opliep": "opliep", "opliepen": "opliep", "oplikte": "oplikt", "oploopt": "oploopt", "oplopen": "oplop", "oplopend": "oplop", "oplosbaar": "oplos", "oplosbare": "oplos", "oploskoffie": "oploskoffie", "oplosmiddel": "oplosmiddel", "oplosmiddelarme": "oplosmiddelarm", "oplosmiddelemissies": "oplosmiddelemissies", "oplosmiddelen": "oplosmiddel", "oplosmiddelenhoudende": "oplosmiddelenhoud", "oplosmiddelgehalte": "oplosmiddelgehalt", "oplosmiddelhoudende": "oplosmiddelhoud", "oplosmiddelrijke": "oplosmiddelrijk", "oplosmiddelvrije": "oplosmiddelvrij", "oplossen": "oploss", "oplossing": "oploss", "oplossingen": "oploss", "oplossingsgericht": "oplossingsgericht", "oplossingsgerichtheid": "oplossingsgericht", "oplossingsrichting": "oplossingsricht", "oplost": "oplost", "opluchting": "oplucht", "opluikende": "opluik", "opmaakt": "opmaakt", "opmaakte": "opmaakt", "opmaken": "opmak", "opmars": "opmar", "opmerkelijk": "opmerk", "opmerkelijker": "opmerkelijker", "opmerking": "opmerk", "opmerkingen": "opmerk", "opmerkte": "opmerkt", "opmerkten": "opmerkt", "opmerkzaam": "opmerkzam", "opmonterend": "opmonter", "opname": "opnam", "opnames": "opnames", "opneembaar": "opnem", "opneembare": "opnem", "opneempunten": "opneempunt", "opneemt": "opneemt", "opnemen": "opnem", "opnieuw": "opnieuw", "opofferen": "opoffer", "opofferend": "opoffer", "opofferende": "opoffer", "opoffering": "opoffer", "oppas": "oppas", "oppassen": "oppass", "oppasser": "oppasser", "oppasseres": "oppasseres", "oppast": "oppast", "oppaste": "oppast", "opperde": "opperd", "opperduit": "opperduit", "opperen": "opper", "opperst": "opperst", "opperste": "opperst", "oppert": "oppert", "oppervlak": "oppervlak", "oppervlakbescherming": "oppervlakbescherm", "oppervlakken": "oppervlak", "oppervlakkig": "oppervlakk", "oppervlakkige": "oppervlakk", "oppervlakkigheid": "oppervlakk", "oppervlakkigweg": "oppervlakkigweg", "oppervlakte": "oppervlakt", "oppervlaktebehandelende": "oppervlaktebehandel", "oppervlaktebehandeling": "oppervlaktebehandel", "oppervlaktebronnen": "oppervlaktebronn", "oppervlaktedelfstoffen": "oppervlaktedelfstoff", "oppervlakten": "oppervlakt", "oppervlaktestructuur": "oppervlaktestructur", "oppervlaktetechnieken": "oppervlaktetechniek", "oppervlaktetechnologie": "oppervlaktetechnologie", "oppervlaktewater": "oppervlaktewater", "oppervlaktewateren": "oppervlaktewater", "oppervlaktewaterpeilen": "oppervlaktewaterpeil", "oppervlaktewatersysteem": "oppervlaktewatersystem", "oppervlaktwateren": "oppervlaktwater", "oppoetsen": "oppoets", "oppompen": "oppomp", "opponent": "opponent", "opportunities": "opportunities", "opposanten": "opposant", "oppositie": "oppositie", "oppositieleider": "oppositieleider", "oppositiepartijen": "oppositiepartij", "opra": "opra", "opraasde": "opraasd", "oprakeling": "oprakel", "opraken": "oprak", "opranselen": "opransel", "opraper": "opraper", "oprazende": "opraz", "oprecht": "oprecht", "oprechtheid": "oprecht", "oprechtste": "oprechtst", "oprees": "opres", "oprekt": "oprekt", "oprezen": "oprez", "oprichten": "opricht", "oprichter": "oprichter", "oprichters": "oprichter", "oprichting": "opricht", "oprijzen": "oprijz", "oprit": "oprit", "opritten": "oprit", "oproep": "oproep", "oproepen": "oproep", "oproeping": "oproep", "oproepkrachten": "oproepkracht", "oproept": "oproept", "oproereenheden": "oproeren", "oprolt": "oprolt", "opruimen": "opruim", "opruiming": "opruim", "opruimkosten": "opruimkost", "opruimploegen": "opruimploeg", "opruimt": "opruimt", "oprukkende": "opruk", "ops": "ops", "opschalen": "opschal", "opschaling": "opschal", "opschemerde": "opschemerd", "opschieten": "opschiet", "opschijningen": "opschijn", "opschoor": "opschor", "opschoot": "opschot", "opschorting": "opschort", "opschriften": "opschrift", "opschrikken": "opschrik", "opschrikten": "opschrikt", "opschroeft": "opschroeft", "opschroevende": "opschroev", "opschudding": "opschud", "opschuift": "opschuift", "opslaan": "opslan", "opslaat": "opslat", "opslag": "opslag", "opslagbunkers": "opslagbunker", "opslagcapaciteit": "opslagcapaciteit", "opslagdepot": "opslagdepot", "opslageiland": "opslageiland", "opslagen": "opslag", "opslaggoederen": "opslaggoeder", "opslaginstallaties": "opslaginstallaties", "opslagkasten": "opslagkast", "opslagloods": "opslaglod", "opslagplaats": "opslagplat", "opslagplaatsen": "opslagplaats", "opslagprojecten": "opslagproject", "opslagruimte": "opslagruimt", "opslagruimten": "opslagruimt", "opslagsysteem": "opslagsystem", "opslagtank": "opslagtank", "opslagtanks": "opslagtank", "opslagterrein": "opslagterrein", "opslagterreinen": "opslagterrein", "opslagvat": "opslagvat", "opslagvaten": "opslagvat", "opslagvermogen": "opslagvermog", "opslagvoorstel": "opslagvoorstel", "opslikken": "opslik", "opsloeg": "opsloeg", "opsloot": "opslot", "opsluiten": "opsluit", "opsluiting": "opsluit", "opsnijdende": "opsnijd", "opsnoof": "opsnof", "opsomming": "opsomm", "opspitsten": "opspitst", "opspookte": "opspookt", "opspookten": "opspookt", "opsporen": "opspor", "opsporende": "opspor", "opsporing": "opspor", "opsporings": "opspor", "opsporingsactiviteiten": "opsporingsactiviteit", "opsporingsambtenaar": "opsporingsambtenar", "opsporingsambtenaren": "opsporingsambtenar", "opsporingsbevoegdheid": "opsporingsbevoegd", "opsporingsdiensten": "opsporingsdienst", "opsporingsonderzoeken": "opsporingsonderzoek", "opspraak": "opsprak", "opsprong": "opsprong", "opspuiten": "opspuit", "opstaan": "opstan", "opstaande": "opstaand", "opstak": "opstak", "opstand": "opstand", "opstapelde": "opstapeld", "opstapeling": "opstapel", "opstappen": "opstapp", "opstarten": "opstart", "opsteeg": "opsteg", "opsteken": "opstek", "opstekende": "opstek", "opstellen": "opstell", "opstellers": "opsteller", "opstelling": "opstell", "opstelt": "opstelt", "opstijgen": "opstijg", "opstijgende": "opstijg", "opstijvend": "opstijv", "opstoken": "opstok", "opstond": "opstond", "opstonden": "opstond", "opstorming": "opstorm", "opstralen": "opstral", "opstrijk": "opstrijk", "opsturen": "opstur", "opstuwing": "opstuw", "optelling": "optell", "optelt": "optelt", "optic": "optic", "optie": "optie", "opties": "opties", "optima": "optima", "optimaal": "optimal", "optimale": "optimal", "optimalisatie": "optimalisatie", "optimaliseert": "optimaliseert", "optimaliseren": "optimaliser", "optimalisering": "optimaliser", "optimisme": "optimism", "optimistisch": "optimistisch", "optimistische": "optimistisch", "option": "option", "options": "option", "optisch": "optisch", "optische": "optisch", "optocht": "optocht", "optochten": "optocht", "optrad": "optrad", "optraden": "optrad", "optreden": "optred", "optredende": "optred", "optredens": "optreden", "optreedt": "optreedt", "optrekken": "optrek", "optroebelen": "optroebel", "optrokken": "optrok", "opvallen": "opvall", "opvallend": "opvall", "opvang": "opvang", "opvangbak": "opvangbak", "opvangbakken": "opvangbak", "opvangen": "opvang", "opvangsysteem": "opvangsystem", "opvatte": "opvat", "opvatting": "opvat", "opvattingen": "opvat", "opviel": "opviel", "opvijzelde": "opvijzeld", "opving": "opving", "opvlam": "opvlam", "opvlamde": "opvlamd", "opvliegend": "opvlieg", "opvloeiingen": "opvloei", "opvoedde": "opvoed", "opvoeden": "opvoed", "opvoeding": "opvoed", "opvoeren": "opvoer", "opvoerinstallatie": "opvoerinstallatie", "opvolgen": "opvolg", "opvolgende": "opvolg", "opvolger": "opvolger", "opvolgers": "opvolger", "opvolgingscommissie": "opvolgingscommissie", "opvouwen": "opvouw", "opvrat": "opvrat", "opvullen": "opvull", "opwaaien": "opwaai", "opwaartse": "opwaart", "opwaasde": "opwaasd", "opwachting": "opwacht", "opwarmen": "opwarm", "opwarmend": "opwarm", "opwarming": "opwarm", "opwarmt": "opwarmt", "opweegt": "opweegt", "opwek": "opwek", "opwekken": "opwek", "opwekking": "opwek", "opwekkingskosten": "opwekkingskost", "opwekt": "opwekt", "opwekte": "opwekt", "opwellen": "opwell", "opwelling": "opwell", "opwellingen": "opwell", "opwellingterstond": "opwellingterstond", "opwerking": "opwerk", "opwerkings": "opwerk", "opwerkingsfabriek": "opwerkingsfabriek", "opwerkingsfabrieken": "opwerkingsfabriek", "opwerpen": "opwerp", "opwikkelend": "opwikkel", "opwillen": "opwill", "opwind": "opwind", "opwindbare": "opwind", "opwinden": "opwind", "opwindende": "opwind", "opwinding": "opwind", "opwindingen": "opwind", "opwolkend": "opwolk", "opwonden": "opwond", "opzag": "opzag", "opzagen": "opzag", "opzet": "opzet", "opzette": "opzet", "opzettelijk": "opzet", "opzetten": "opzet", "opzettend": "opzet", "opzicht": "opzicht", "opzichte": "opzicht", "opzichten": "opzicht", "opzieden": "opzied", "opzien": "opzien", "opziende": "opziend", "opzij": "opzij", "opzocht": "opzocht", "opzoeken": "opzoek", "opzoekt": "opzoekt", "opzweefde": "opzweefd", "opzweping": "opzwep", "opzwol": "opzwol", "or": "or", "oranje": "oranj", "oranjepolder": "oranjepolder", "oranjerieën": "oranjerieen", "oranjestraat": "oranjestrat", "oranjewoud": "oranjewoud", "oranjezon": "oranjezon", "oratie": "oratie", "orbaek": "orbaek", "orchidee": "orchidee", "orchideeën": "orchideeen", "orda": "orda", "orde": "ord", "ordelijk": "ordelijk", "ordening": "orden", "ordeningsbeleid": "ordeningsbeleid", "order": "order", "orderontvangsten": "orderontvangst", "orderportefeuille": "orderportefeuill", "orders": "order", "orderstromen": "orderstrom", "ordnance": "ordnanc", "ordner": "ordner", "ordners": "ordner", "ordonnans": "ordonnan", "oren": "oren", "orenburg": "orenburg", "oresundskonsortiet": "oresundskonsortiet", "org": "org", "orgaan": "organ", "organen": "organ", "organic": "organic", "organics": "organic", "organisatie": "organisatie", "organisatieantropologe": "organisatieantropolog", "organisaties": "organisaties", "organisatiestructuur": "organisatiestructur", "organisation": "organisation", "organisator": "organisator", "organisatoren": "organisator", "organisatorisch": "organisatorisch", "organisatorische": "organisatorisch", "organisch": "organisch", "organische": "organisch", "organiseerde": "organiseerd", "organiseert": "organiseert", "organiseren": "organiser", "organiserend": "organiser", "organisme": "organism", "organismen": "organism", "organization": "organization", "organizeer": "organizer", "organizeerde": "organizeerd", "organo": "organo", "organochloorbestrijdingsmiddelen": "organochloorbestrijdingsmiddel", "organochloorhoudend": "organochloorhoud", "organochloorverbindingen": "organochloorverbind", "organofosforbestrijdingsmiddelen": "organofosforbestrijdingsmiddel", "organometaal": "organometal", "organotinverbindingen": "organotinverbind", "orgie": "orgie", "oriëntatie": "orientatie", "oriënteert": "orienteert", "oriënteren": "orienter", "oriënterend": "orienter", "oriënterende": "orienter", "oriëntering": "orienter", "originaliteit": "originaliteit", "origine": "origin", "origineel": "originel", "originele": "originel", "orkaan": "orkan", "orkaanseizoen": "orkaanseizoen", "orkanen": "orkan", "orknefteorgsyntez": "orknefteorgsyntez", "orkney": "orkney", "orlaco": "orlaco", "ornament": "ornament", "ornamenten": "ornament", "ornithologische": "ornithologisch", "ornl": "ornl", "ors": "ors", "orthodox": "orthodox", "orthodoxe": "orthodox", "orthopedische": "orthopedisch", "os": "os", "osaka": "osaka", "osb": "osb", "oscar": "oscar", "oscilleren": "osciller", "oscillerende": "osciller", "osha": "osha", "osieck": "osieck", "oskam": "oskam", "oskamp": "oskamp", "oskarhamn": "oskarhamn", "oslo": "oslo", "osmocote": "osmocot", "osmose": "osmos", "osnabrück": "osnabruck", "ospar": "ospar", "osprey": "osprey", "oss": "oss", "osse": "oss", "ossenvlees": "ossenvles", "ostende": "ostend", "österreich": "osterreich", "ostfriesland": "ostfriesland", "otb": "otb", "otero": "otero", "ottawa": "ottawa", "ottelientje": "ottelientj", "otters": "otter", "otto": "otto", "ottocar": "ottocar", "oud": "oud", "oude": "oud", "oudelui": "oudelui", "oudenallen": "oudenall", "oudenbosch": "oudenbosch", "oudenrijn": "oudenrijn", "ouder": "ouder", "ouderdom": "ouderdom", "ouderdoms": "ouderdom", "oudere": "ouder", "ouderen": "ouder", "ouderenaftrek": "ouderenaftrek", "ouderkerk": "ouderkerk", "ouderlijk": "ouder", "ouderlijke": "ouder", "ouders": "ouder", "ouderwets": "ouderwet", "ouderwetse": "ouderwet", "oudewater": "oudewater", "oudheden": "oudheid", "oudheid": "oudheid", "oudje": "oudj", "oudjes": "oudjes", "oudpapier": "oudpapier", "oudpapierbedrijf": "oudpapierbedrijf", "oudpapiermarkt": "oudpapiermarkt", "oudste": "oudst", "òudste": "òudst", "oudsten": "oudst", "oudwoude": "oudwoud", "ouest": "ouest", "our": "our", "out": "out", "outplacement": "outplacement", "output": "output", "ouwe": "ouw", "oùwe": "oùw", "ouweheer": "ouweher", "ouwelijk": "ouwelijk", "ouwelijke": "ouwelijk", "ouwsterhaule": "ouwsterhaul", "ov": "ov", "ovale": "oval", "ovam": "ovam", "ovb": "ovb", "oven": "oven", "ovens": "oven", "over": "over", "overaanbod": "overaanbod", "overal": "overal", "overall": "overall", "overasselt": "overasselt", "overbekende": "overbek", "overbelast": "overbelast", "overbemest": "overbemest", "overbemesten": "overbemest", "overbemesting": "overbemest", "overbevissing": "overbeviss", "overbevist": "overbevist", "overbleef": "overblef", "overblijfselen": "overblijfsel", "overblijft": "overblijft", "overblijven": "overblijv", "overblijvende": "overblijv", "overbodig": "overbod", "overbodige": "overbod", "overboog": "overbog", "overboord": "overboord", "overbosch": "overbosch", "overbrengen": "overbreng", "overbrenging": "overbreng", "overbrugging": "overbrugg", "overbulderde": "overbulderd", "overcapaciteit": "overcapaciteit", "overdaad": "overdad", "overdadigheden": "overdad", "overdadigheid": "overdad", "overdag": "overdag", "overdekt": "overdekt", "overdekte": "overdekt", "overdenken": "overdenk", "overdracht": "overdracht", "overdrachts": "overdracht", "overdrachtsprijs": "overdrachtsprijs", "overdragen": "overdrag", "overdreef": "overdref", "overdreven": "overdrev", "overdrijft": "overdrijft", "overdrijven": "overdrijv", "overdrijving": "overdrijv", "overdruk": "overdruk", "overeen": "overen", "overeengekomen": "overeengekom", "overeenkomst": "overeenkomst", "overeenkomsten": "overeenkomst", "overeenkomstig": "overeenkomst", "overeenkomstige": "overeenkomst", "overeenkomt": "overeenkomt", "overeenkwamen": "overeenkwam", "overeenstemming": "overeenstemm", "overeenstemt": "overeenstemt", "overeind": "overeind", "overexploitatie": "overexploitatie", "overgaan": "overgan", "overgaat": "overgat", "overgaf": "overgaf", "overgang": "overgang", "overgangsfase": "overgangsfas", "overgangsgebied": "overgangsgebied", "overgangsperiode": "overgangsperiod", "overgangsregeling": "overgangsregel", "overgangssubsidie": "overgangssubsidie", "overgangstermijn": "overgangstermijn", "overgave": "overgav", "overgebleven": "overgeblev", "overgebogen": "overgebog", "overgebracht": "overgebracht", "overgedachte": "overgedacht", "overgedragen": "overgedrag", "overgeeft": "overgeeft", "overgeërfde": "overgeerfd", "overgegaan": "overgegan", "overgehaald": "overgehaald", "overgeheveld": "overgeheveld", "overgekomen": "overgekom", "overgelaten": "overgelat", "overgeleverd": "overgeleverd", "overgelopen": "overgelop", "overgemaakt": "overgemaakt", "overgenomen": "overgenom", "overgeplaatst": "overgeplaatst", "overgeplant": "overgeplant", "overgeschakeld": "overgeschakeld", "overgeschilderd": "overgeschilderd", "overgeslagen": "overgeslag", "overgestapt": "overgestapt", "overgestoken": "overgestok", "overgevende": "overgev", "overgevoel": "overgevoel", "overgevoelig": "overgevoel", "overgevoelige": "overgevoel", "overgevoeligheid": "overgevoel", "overgewichtig": "overgewicht", "overgordijn": "overgordijn", "overgordijnen": "overgordijn", "overgrootmoeder": "overgrootmoeder", "overgrote": "overgrot", "overhalen": "overhal", "overhand": "overhand", "overhandigd": "overhandigd", "overhandigde": "overhandigd", "overhandigden": "overhandigd", "overhandigen": "overhand", "overhandiging": "overhand", "overhangend": "overhang", "overhead": "overhead", "overheden": "over", "overheen": "overhen", "overheerlijke": "overher", "overheersen": "overheers", "overheersend": "overheers", "overheersten": "overheerst", "overheid": "over", "overheids": "over", "overheidsaandelen": "overheidsaandel", "overheidsambtenaren": "overheidsambtenar", "overheidsbeambten": "overheidsbeambt", "overheidsbedrijf": "overheidsbedrijf", "overheidsbeleid": "overheidsbeleid", "overheidsberekeningen": "overheidsbereken", "overheidsbeslissingen": "overheidsbesliss", "overheidsbijdrage": "overheidsbijdrag", "overheidscommissie": "overheidscommissie", "overheidsdeel": "overheidsdel", "overheidsdeelneming": "overheidsdeelnem", "overheidsdiensten": "overheidsdienst", "overheidsdoelstelling": "overheidsdoelstell", "overheidsfunctionarissen": "overheidsfunctionariss", "overheidsgebouwen": "overheidsgebouw", "overheidsgegevens": "overheidsgegeven", "overheidsgeld": "overheidsgeld", "overheidshulp": "overheidshulp", "overheidsingrijpen": "overheidsingrijp", "overheidsinspanning": "overheidsinspann", "overheidsinstanties": "overheidsinstanties", "overheidsinstelling": "overheidsinstell", "overheidsinstellingen": "overheidsinstell", "overheidsinvestering": "overheidsinvester", "overheidsmaatregelen": "overheidsmaatregel", "overheidsnorm": "overheidsnorm", "overheidsnormen": "overheidsnorm", "overheidsonderneming": "overheidsondernem", "overheidsopdrachten": "overheidsopdracht", "overheidsorgaan": "overheidsorgan", "overheidsorganisatie": "overheidsorganisatie", "overheidsorganisaties": "overheidsorganisaties", "overheidsplan": "overheidsplan", "overheidsplannen": "overheidsplann", "overheidsprogamma": "overheidsprogamma", "overheidsprogramma": "overheidsprogramma", "overheidspubliciteit": "overheidspubliciteit", "overheidsregeling": "overheidsregel", "overheidsregels": "overheidsregel", "overheidssteun": "overheidssteun", "overheidssturing": "overheidsstur", "overheidssubsidie": "overheidssubsidie", "overheidsuitgaven": "overheidsuitgav", "overheidsverslag": "overheidsverslag", "overheidsvoorlichting": "overheidsvoorlicht", "overheidswege": "overheidsweg", "overhevelen": "overhevel", "overheveling": "overhevel", "overhevelingstoeslag": "overhevelingstoeslag", "overhevelingstoeslagen": "overhevelingstoeslag", "overhoop": "overhop", "overhoorde": "overhoord", "overhouden": "overhoud", "overig": "over", "overige": "over", "overigen": "over", "overigens": "overigen", "overijse": "overijs", "overijsel": "overijsel", "overijselse": "overijsel", "overijssel": "overijssel", "overijsselse": "overijssel", "overjas": "overjas", "overjasje": "overjasj", "overkant": "overkant", "overkappen": "overkapp", "overkapping": "overkapp", "overkapt": "overkapt", "overkoepelend": "overkoepel", "overkoepelende": "overkoepel", "overkomen": "overkom", "overkomst": "overkomst", "overlaadstation": "overlaadstation", "overlaat": "overlat", "overlap": "overlap", "overlappende": "overlapp", "overlapt": "overlapt", "overlast": "overlast", "overlaten": "overlat", "overleden": "overled", "overleed": "overled", "overleefd": "overleefd", "overleeft": "overleeft", "overleerafval": "overleerafval", "overleg": "overleg", "overlegcentrum": "overlegcentrum", "overlegd": "overlegd", "overlegde": "overlegd", "overlegden": "overlegd", "overlegeconomie": "overlegeconomie", "overleggen": "overlegg", "overleggende": "overlegg", "overleggroep": "overleggroep", "overleggroepen": "overleggroep", "overlegorgaan": "overlegorgan", "overlegorganen": "overlegorgan", "overlegplatform": "overlegplatform", "overlegproces": "overlegproces", "overlegt": "overlegt", "overleven": "overlev", "overlevende": "overlev", "overleving": "overlev", "overlevingsslag": "overlevingsslag", "overliet": "overliet", "overlieten": "overliet", "overlijden": "overlijd", "overloopgebied": "overloopgebied", "overmaas": "overmas", "overmaat": "overmat", "overmate": "overmat", "overmatige": "overmat", "overmeesterde": "overmeesterd", "overmeesteren": "overmeester", "overmoedige": "overmoed", "overmoedigheid": "overmoed", "overmorgen": "overmorg", "overnacht": "overnacht", "overnachting": "overnacht", "overnam": "overnam", "overname": "overnam", "overnamebesprekingen": "overnamebesprek", "overnamedoelstelling": "overnamedoelstell", "overnames": "overnames", "overneemt": "overneemt", "overnemen": "overnem", "overpersen": "overpers", "overpoeierd": "overpoeierd", "overproduktie": "overproduktie", "overreden": "overred", "overreding": "overred", "overrijden": "overrijd", "overrompeld": "overrompeld", "overschaduwd": "overschaduwd", "overschakelen": "overschakel", "overschakeling": "overschakel", "overschat": "overschat", "overschoenen": "overschoen", "overschot": "overschot", "overschotbedrijven": "overschotbedrijv", "overschotgebieden": "overschotgebied", "overschotheffing": "overschotheff", "overschotsheffingen": "overschotsheff", "overschotten": "overschot", "overschreden": "overschred", "overschreed": "overschred", "overschreiden": "overschreid", "overschreiding": "overschreid", "overschrijden": "overschrijd", "overschrijding": "overschrijd", "overschrijdingen": "overschrijd", "overschrijdt": "overschrijdt", "overschrÿdt": "overschrÿdt", "overseas": "overseas", "overslaan": "overslan", "overslaande": "overslaand", "overslag": "overslag", "overslagbedrijf": "overslagbedrijf", "overslagbedrijven": "overslagbedrijv", "overslagen": "overslag", "overslaginstallaties": "overslaginstallaties", "overslagplatform": "overslagplatform", "overslagstation": "overslagstation", "overslagstations": "overslagstation", "overslagvoorzieningen": "overslagvoorzien", "oversloeg": "oversloeg", "overspannen": "overspann", "overstaan": "overstan", "overstap": "overstap", "overstappen": "overstapp", "oversteek": "overstek", "oversteken": "overstek", "overstelpen": "overstelp", "overstelpend": "overstelp", "overstelpt": "overstelpt", "overstelpte": "overstelpt", "overstelpten": "overstelpt", "overstijgen": "overstijg", "overstijgt": "overstijgt", "overstromende": "overstrom", "overstroming": "overstrom", "overstromingen": "overstrom", "overstroomde": "overstroomd", "overstuur": "overstur", "oversubsidiëring": "oversubsidier", "overtekend": "overtek", "overtochten": "overtocht", "overtollig": "overtoll", "overtollige": "overtoll", "overtraden": "overtrad", "overtreden": "overtred", "overtreder": "overtreder", "overtreders": "overtreder", "overtreding": "overtred", "overtredingen": "overtred", "overtreedt": "overtreedt", "overtreffen": "overtreff", "overtreft": "overtreft", "overtripte": "overtript", "overtrof": "overtrof", "overtroffen": "overtroff", "overtuigd": "overtuigd", "overtuigde": "overtuigd", "overtuigdheid": "overtuigd", "overtuigen": "overtu", "overtuiging": "overtu", "overtuigingen": "overtu", "overuren": "overur", "overvallen": "overvall", "overvalt": "overvalt", "oververhit": "oververhit", "oververhitting": "oververhit", "overviel": "overviel", "overview": "overview", "overvloed": "overvloed", "overvloedig": "overvloed", "overvloedige": "overvloed", "overvol": "overvol", "overvolle": "overvoll", "overwaaien": "overwaai", "overweegt": "overweegt", "overweek": "overwek", "overweg": "overweg", "overwegen": "overweg", "overwegend": "overweg", "overweging": "overweg", "overwegingen": "overweg", "overweldigd": "overweldigd", "overweldigde": "overweldigd", "overweldigen": "overweld", "overweldigend": "overweld", "overweldigende": "overweld", "overwin": "overwin", "overwinnaar": "overwinnar", "overwinnen": "overwinn", "overwinnende": "overwinn", "overwinning": "overwinn", "overwogen": "overwog", "overwon": "overwon", "overwonnen": "overwonn", "overwoog": "overwog", "overzag": "overzag", "overzeese": "overzes", "overzicht": "overzicht", "overzichtelijk": "overzicht", "overzichten": "overzicht", "overzichtsrapport": "overzichtsrapport", "overzien": "overzien", "overziet": "overziet", "overzijde": "overzijd", "ovto": "ovto", "ow": "ow", "owens": "owen", "owners": "owner", "ows": "ows", "oxidant": "oxidant", "oxidatie": "oxidatie", "oxidatiestap": "oxidatiestap", "oxidation": "oxidation", "oxide": "oxid", "oxideert": "oxideert", "oxinil": "oxinil", "oxydatie": "oxydatie", "oxydatiekatalysator": "oxydatiekatalysator", "oxydatiemiddel": "oxydatiemiddel", "oxydatiereactie": "oxydatiereactie", "oxydatiestap": "oxydatiestap", "oxydatieve": "oxydatiev", "oxyde": "oxyd", "oxyden": "oxyd", "oxyderen": "oxyder", "oxyderende": "oxyder", "oxygrafische": "oxygrafisch", "oxykalkslik": "oxykalkslik", "oxypro": "oxypro", "ozb": "ozb", "ozon": "ozon", "ozonaantastend": "ozonaantast", "ozonaantastende": "ozonaantast", "ozonafbraak": "ozonafbrak", "ozonafbrekende": "ozonafbrek", "ozonapparatuur": "ozonapparatur", "ozonconcentratie": "ozonconcentratie", "ozonconcentraties": "ozonconcentraties", "ozonfonds": "ozonfond", "ozongat": "ozongat", "ozonhuishouding": "ozonhuishoud", "ozonisatie": "ozonisatie", "ozonisator": "ozonisator", "ozonlaag": "ozonlag", "ozonlaagaantastende": "ozonlaagaantast", "ozonlaagafbreker": "ozonlaagafbreker", "ozonlaagonderzoek": "ozonlaagonderzoek", "ozonniveaus": "ozonniveaus", "ozonnorm": "ozonnorm", "ozonnormen": "ozonnorm", "ozonperiode": "ozonperiod", "ozonproblematiek": "ozonproblematiek", "ozonrichtlijn": "ozonrichtlijn", "ozonstandaard": "ozonstandaard", "ozontoename": "ozontoenam", "ozonverdrag": "ozonverdrag", "ozonvervuiling": "ozonvervuil", "ozonvorming": "ozonvorm", "ozonvriendelijke": "ozonvriend", "ozonwaarden": "ozonwaard", "p": "p", "pa": "pa", "paadjes": "paadjes", "paai": "paai", "paaien": "paai", "paal": "pal", "paalsfundering": "paalsfunder", "paar": "par", "páar": "par", "paard": "paard", "paardachtigen": "paardacht", "paardehaar": "paardehar", "paarden": "paard", "paardenhouderij": "paardenhouderij", "paardentram": "paardentram", "paardje": "paardj", "paarlemoer": "paarlemoer", "paars": "par", "paarse": "par", "paarsig": "paarsig", "paarsige": "paarsig", "paart": "paart", "paartijd": "paartijd", "paartje": "paartj", "paassen": "paass", "pab": "pab", "pacht": "pacht", "pachtcontracten": "pachtcontract", "pachter": "pachter", "pachthof": "pachthof", "pachtsituatie": "pachtsituatie", "pachyderm": "pachyderm", "pacific": "pacific", "pacificgebied": "pacificgebied", "packaging": "packag", "packer": "packer", "pacs": "pac", "pact": "pact", "pad": "pad", "paddestoelen": "paddestoel", "paden": "pad", "pafc": "pafc", "page": "pag", "pagina": "pagina", "paginagroot": "paginagrot", "paginagrote": "paginagrot", "pais": "pais", "paisley": "paisley", "pajong": "pajong", "pak": "pak", "pakhuizen": "pakhuiz", "pakje": "pakj", "pakken": "pak", "pakkende": "pakkend", "pakket": "pakket", "pakketten": "pakket", "pakkingen": "pakking", "pakkings": "pakking", "pakt": "pakt", "pakte": "pakt", "pakten": "pakt", "pal": "pal", "paleis": "paleis", "paleizen": "paleiz", "palen": "pal", "paleobotany": "paleobotany", "palermo": "palermo", "palestijnen": "palestijn", "palet": "palet", "palfrenier": "palfrenier", "paling": "paling", "palingfuiken": "palingfuik", "paljas": "paljas", "palladium": "palladium", "pallavicini": "pallavicini", "pallethout": "pallethout", "pallets": "pallet", "palm": "palm", "palmen": "palm", "palmhout": "palmhout", "palmpitolie": "palmpitolie", "palynology": "palynology", "pamerindo": "pamerindo", "pamflet": "pamflet", "pamfletten": "pamflet", "pamplona": "pamplona", "pan": "pan", "panasonic": "panasonic", "pancanadian": "pancanadian", "pand": "pand", "panden": "pand", "pandjes": "pandjes", "paneel": "panel", "panel": "panel", "panelen": "panel", "panheel": "panhel", "paniek": "paniek", "panklare": "panklar", "pannen": "pann", "pannerdens": "pannerden", "pannerdensch": "pannerdensch", "panoplie": "panoplie", "pantalon": "pantalon", "pantalons": "pantalon", "pantoffels": "pantoffel", "pantomime": "pantomim", "pantser": "pantser", "pap": "pap", "papa": "papa", "papagaaiduikers": "papagaaiduiker", "papaverbloemen": "papaverbloem", "papeete": "papet", "papegaaien": "papegaai", "papegaaikleuren": "papegaaikleur", "papendrecht": "papendrecht", "papenveer": "papenver", "paper": "paper", "papier": "papier", "papierafval": "papierafval", "papierafvalcontainers": "papierafvalcontainer", "papierafvalverwerking": "papierafvalverwerk", "papierbrij": "papierbrij", "papiercellulose": "papiercellulos", "papierchemicaliën": "papierchemicalien", "papierconcern": "papierconcern", "papieren": "papier", "papierfabricage": "papierfabricag", "papierfabriek": "papierfabriek", "papierfabrieken": "papierfabriek", "papierfabrikant": "papierfabrikant", "papiergebruik": "papiergebruik", "papiergroep": "papiergroep", "papiergroothandel": "papiergroothandel", "papierindustrie": "papierindustrie", "papierinzameling": "papierinzamel", "papierloze": "papierloz", "papiermengsel": "papiermengsel", "papierprijs": "papierprijs", "papierproducenten": "papierproducent", "papierprodukten": "papierprodukt", "papierproduktie": "papierproduktie", "papierpulp": "papierpulp", "papiersoort": "papiersoort", "papiersoorten": "papiersoort", "papiertje": "papiertj", "papierverbruik": "papierverbruik", "papiervernietigers": "papiervernietiger", "papierverwerkers": "papierverwerker", "papierwerk": "papierwerk", "papoea": "papoea", "paprika": "paprika", "paprikaplanten": "paprikaplant", "paprikateelt": "paprikateelt", "paques": "paques", "parabole": "parabol", "parachin": "parachin", "paradichloorbenzeen": "paradichloorbenzen", "paradijs": "paradijs", "paradijsvogels": "paradijsvogel", "paradiso": "paradiso", "paradox": "paradox", "parafines": "parafines", "paragraaf": "paragraf", "parallel": "parallel", "parallelle": "parallell", "parallelsessies": "parallelsessies", "paramaribo": "paramaribo", "parameters": "parameter", "parapluie": "paraplui", "parapluies": "parapluies", "paras": "paras", "parasieten": "parasiet", "parasit": "parasit", "parasjin": "parasjin", "parasol": "parasol", "parasols": "parasol", "paravent": "paravent", "paravents": "paravent", "parcours": "parcour", "pardon": "pardon", "parel": "parel", "parelde": "pareld", "parelden": "pareld", "parelen": "parel", "parelend": "parel", "parelsnoeren": "parelsnoer", "paren": "par", "parfumeren": "parfumer", "paribas": "paribas", "pariëren": "parier", "parijs": "parijs", "parijse": "parijs", "paris": "paris", "parisienne": "parisienn", "park": "park", "parkachtige": "parkacht", "parkbos": "parkbos", "parkeerelementen": "parkeerelement", "parkeergarages": "parkeergarages", "parkeergelegenheid": "parkeergeleg", "parkeermogelijkheden": "parkeermog", "parkeerplaats": "parkeerplat", "parkeerplaatsen": "parkeerplaats", "parkeerterreinen": "parkeerterrein", "parken": "park", "parket": "parket", "parketten": "parket", "parkgebied": "parkgebied", "parkjes": "parkjes", "parks": "park", "parksysteem": "parksystem", "parlement": "parlement", "parlementair": "parlementair", "parlementaire": "parlementair", "parlementariër": "parlementarier", "parlementariërs": "parlementarier", "parlementslid": "parlementslid", "parlementssteun": "parlementssteun", "parma": "parma", "parool": "parol", "parsons": "parson", "part": "part", "participant": "participant", "participanten": "participant", "participatie": "participatie", "participeert": "participeert", "participeren": "participer", "particle": "particl", "particulate": "particulat", "particulier": "particulier", "particuliere": "particulier", "particulieren": "particulier", "partie": "partie", "partiële": "partiel", "partij": "partij", "partijen": "partij", "partijkeuringen": "partijkeur", "partijstaat": "partijstat", "partijstaten": "partijstat", "partijtje": "partijtj", "partijtjes": "partijtjes", "partner": "partner", "partnerbeurs": "partnerbeur", "partners": "partner", "partnership": "partnership", "parvenùachtig": "parvenùacht", "parzer": "parzer", "pas": "pas", "pasen": "pas", "pasgeboren": "pasgebor", "pasklaar": "pasklar", "pasklare": "pasklar", "pasminco": "pasminco", "paso": "paso", "passaatwinden": "passaatwind", "passabel": "passabel", "passage": "passag", "passages": "passages", "passagier": "passagier", "passagiers": "passagier", "passagiersvolume": "passagiersvolum", "passanten": "passant", "passeerde": "passeerd", "passeert": "passeert", "passen": "pass", "passend": "passend", "passende": "passend", "passer": "passer", "passeren": "passer", "passerend": "passer", "passerende": "passer", "passie": "passie", "passies": "passies", "passieve": "passiev", "past": "past", "paste": "past", "pasten": "past", "pastoraal": "pastoral", "pastorale": "pastoral", "pastoraler": "pastoraler", "pâté": "pâte", "patent": "patent", "patentaanvraag": "patentaanvrag", "patenten": "patent", "patenteren": "patenter", "patenthouder": "patenthouder", "patenttijd": "patenttijd", "pathway": "pathway", "patiënt": "patient", "patiënte": "patient", "patiënten": "patient", "patiëntenorganisaties": "patientenorganisaties", "patijn": "patijn", "patriarchale": "patriarchal", "patriarchen": "patriarch", "patricia": "patricia", "patricisch": "patricisch", "patrick": "patrick", "patronen": "patron", "patroon": "patron", "paul": "paul", "pauline": "paulin", "paulowna": "paulowna", "pauls": "paul", "paulus": "paulus", "paus": "paus", "pauto": "pauto", "pauw": "pauw", "pauze": "pauz", "pawex": "pawex", "pax": "pax", "paxon": "paxon", "pay": "pay", "pays": "pay", "pb": "pb", "pbeg": "pbeg", "pbts": "pbts", "pbv": "pbv", "pc": "pc", "pcb": "pcb", "pcbp": "pcbp", "pcf": "pcf", "pcmcia": "pcmcia", "pd": "pd", "pdc": "pdc", "pdf": "pdf", "pe": "pe", "pec": "pec", "pedant": "pedant", "pedantisme": "pedantism", "peebles": "peebles", "peek": "pek", "peel": "pel", "peelen": "pel", "peelgebied": "peelgebied", "peenplukker": "peenplukker", "peer": "per", "peerdsbos": "peerdsbos", "peereboom": "peerebom", "peignoir": "peignoir", "peil": "peil", "peilbeheer": "peilbeher", "peilbuis": "peilbuis", "peilbuizen": "peilbuiz", "peilde": "peild", "peilen": "peil", "peiling": "peiling", "peiljaar": "peiljar", "peilloos": "peillos", "peilverhogingen": "peilverhog", "peins": "pein", "peinsde": "peinsd", "peinzen": "peinz", "peinzend": "peinzend", "peinzende": "peinzend", "peinzens": "peinzen", "peinzing": "peinzing", "peizermaden": "peizermad", "pekela": "pekela", "peking": "peking", "pélerine": "pelerin", "pellet": "pellet", "pellets": "pellet", "pelsdierhouders": "pelsdierhouder", "pembrokeshire": "pembrokeshir", "pemega": "pemega", "pen": "pen", "pendelbus": "pendelbus", "pendelbusje": "pendelbusj", "pendelen": "pendel", "pendrecht": "pendrecht", "pendule": "pendul", "penetratieweerstand": "penetratieweerstand", "penetrating": "penetrat", "penicilline": "penicillin", "penlite": "penlit", "pennemes": "pennemes", "pennsylvania": "pennsylvania", "penselen": "pensel", "pensioen": "pensioen", "pension": "pension", "pensionering": "pensioner", "penthouse": "penthous", "peoria": "peoria", "peper": "peper", "peperdure": "peperdur", "peppel": "peppel", "peppen": "pepp", "pept": "pept", "per": "per", "perceel": "percel", "perceelgrenzen": "perceelgrenz", "perceelopgave": "perceelopgav", "perceelsranden": "perceelsrand", "perceeltje": "perceeltj", "percelen": "percel", "percentage": "percentag", "percentages": "percentages", "percentiel": "percentiel", "perceptie": "perceptie", "perception": "perception", "perchloorethyleen": "perchloorethylen", "percolaat": "percolat", "percolaatbassin": "percolaatbassin", "percolaatwater": "percolaatwater", "percolaatzuivering": "percolaatzuiver", "percolatiefilter": "percolatiefilter", "percolatiewater": "percolatiewater", "peren": "per", "perentelers": "perenteler", "perfectioneren": "perfectioner", "performance": "performanc", "periode": "period", "perioden": "period", "periodes": "periodes", "periodiek": "periodiek", "periodieke": "periodiek", "perk": "perk", "perkara": "perkara", "perken": "perk", "perliet": "perliet", "permanent": "permanent", "permanente": "permanent", "permanentmagneetgeneratoren": "permanentmagneetgenerator", "permeabele": "permeabel", "permeable": "permeabl", "permeameter": "permeameter", "permeatie": "permeatie", "permissie": "permissie", "permitteert": "permitteert", "permitteren": "permitter", "pernis": "pernis", "perpignan": "perpignan", "perron": "perron", "pers": "per", "persbericht": "persbericht", "persbijeenkomst": "persbijeenkomst", "persbureau": "persbureau", "persconferentie": "persconferentie", "perscontainers": "perscontainer", "persen": "pers", "persgesprek": "persgesprek", "persifleerden": "persifleerd", "persist": "persist", "persistent": "persistent", "persistente": "persistent", "persistentie": "persistentie", "persleidingen": "persleid", "perslucht": "perslucht", "persluchtcompressoren": "persluchtcompressor", "persluchtkoeler": "persluchtkoeler", "persofficier": "persofficier", "personages": "personages", "personal": "personal", "personeel": "personel", "personeelsadministratie": "personeelsadministratie", "personeelsbestand": "personeelsbestand", "personeelsbezetting": "personeelsbezet", "personeelsblad": "personeelsblad", "personeelsleden": "personeelsled", "personeelsorganisatie": "personeelsorganisatie", "personele": "personel", "personen": "person", "personenauto": "personenauto", "personentreinen": "personentrein", "personenvervoer": "personenvervoer", "personenwagens": "personenwagen", "persoon": "person", "persoonlijk": "person", "persoonlijke": "person", "persoonlijkheid": "person", "persoonlijkheidsstoornissen": "persoonlijkheidsstoorniss", "persoonlijks": "person", "perspectief": "perspectief", "perspectiefloos": "perspectieflos", "perspectieven": "perspectiev", "perspektiven": "perspektiv", "perspomp": "perspomp", "persproces": "persproces", "perste": "perst", "persverklaring": "persverklar", "persvijzelscheider": "persvijzelscheider", "persvoorlichting": "persvoorlicht", "perswagen": "perswag", "perszeef": "perszef", "perverse": "perver", "perzische": "perzisch", "peschar": "peschar", "peseta": "peseta", "pesetas": "pesetas", "peso": "peso", "pessimist": "pessimist", "pest": "pest", "pestanal": "pestanal", "pesticide": "pesticid", "pesticiden": "pesticid", "pesticidengebruik": "pesticidengebruik", "pesticidenregistratie": "pesticidenregistratie", "pesticideprodukten": "pesticideprodukt", "pesticideresten": "pesticiderest", "pesticides": "pesticides", "pestman": "pestman", "pet": "pet", "peta": "peta", "petajoule": "petajoul", "petcore": "petcor", "peter": "peter", "petersburg": "petersburg", "petis": "petis", "petitie": "petitie", "petities": "petities", "petkus": "petkus", "petro": "petro", "petrochemie": "petrochemie", "petrochemisch": "petrochemisch", "petrochemische": "petrochemisch", "petroleum": "petroleum", "petroleumcokes": "petroleumcokes", "petroleumlucht": "petroleumlucht", "petroleumraffinaderijen": "petroleumraffinaderij", "petroleumwet": "petroleumwet", "petroleumwinning": "petroleumwinn", "petroliam": "petroliam", "petrov": "petrov", "petten": "pet", "petto": "petto", "peugeot": "peugeot", "peuters": "peuter", "pevac": "pevac", "pf": "pf", "pfaffenschlag": "pfaffenschlag", "pfältzer": "pfaltzer", "pfeiffer": "pfeiffer", "pfennig": "pfennig", "pff": "pff", "pfinztal": "pfinztal", "pfk": "pfk", "ph": "ph", "phare": "phar", "pharmaceutical": "pharmaceutical", "pharmaceutisch": "pharmaceutisch", "pharmeuropa": "pharmeuropa", "pharming": "pharming", "phase": "phas", "phaseout": "phaseout", "phébus": "phebus", "phénix": "phenix", "phenyleendiamine": "phenyleendiamin", "philadelphia": "philadelphia", "philip": "philip", "philipp": "philipp", "philips": "philip", "phoebus": "phoebus", "phosphoric": "phosphoric", "photo": "photo", "photochemische": "photochemisch", "photovoltaïc": "photovoltaic", "photovoltaik": "photovoltaik", "photovoltaïsch": "photovoltaisch", "photovoltaische": "photovoltaisch", "photovoltaïsche": "photovoltaisch", "phthalaat": "phthalat", "phthalaten": "phthalat", "phthalates": "phthalates", "phu": "phu", "phuu": "phuu", "phuuu": "phuuu", "physics": "physic", "physieke": "physiek", "phyteuma": "phyteuma", "phytophthora": "phytophthora", "phyziek": "phyziek", "pi": "pi", "piano": "piano", "picardie": "picardie", "pichtr": "pichtr", "pick": "pick", "pickering": "picker", "picnic": "picnic", "picto": "picto", "pie": "pie", "piedemonte": "piedemont", "piedemontegebied": "piedemontegebied", "piedmont": "piedmont", "piek": "piek", "piekbelasting": "piekbelast", "pieken": "piek", "piekende": "piekend", "piekerig": "pieker", "piekgas": "piekgas", "piekgebruik": "piekgebruik", "piekjes": "piekjes", "pieklast": "pieklast", "piekproduktie": "piekproduktie", "piekrechte": "piekrecht", "piekrendement": "piekrendement", "piekuitstoot": "piekuitstot", "piekuren": "piekur", "piekvermogen": "piekvermog", "piekwaarde": "piekwaard", "piekwarmtevraag": "piekwarmtevrag", "piekwatt": "piekwatt", "pieper": "pieper", "piepers": "pieper", "piepjong": "piepjong", "piepschuim": "piepschuim", "pier": "pier", "pierewaaide": "pierewaaid", "pierre": "pierr", "piet": "piet", "pieten": "piet", "pieter": "pieter", "pieterburen": "pieterbur", "pietro": "pietro", "piëzo": "piezo", "pigment": "pigment", "pigmenten": "pigment", "pijl": "pijl", "pijlen": "pijl", "pijlers": "pijler", "pijlstaart": "pijlstaart", "pijn": "pijn", "pijnacker": "pijnacker", "pijnigde": "pijnigd", "pijnigen": "pijnig", "pijnlijk": "pijnlijk", "pijnlijke": "pijnlijk", "pijnlijks": "pijnlijk", "pijp": "pijp", "pijpen": "pijp", "pijpencircuit": "pijpencircuit", "pijpleiding": "pijpleid", "pijpleidingen": "pijpleid", "pijpleidingenstelsel": "pijpleidingenstelsel", "pijplijn": "pijplijn", "pijpwerk": "pijpwerk", "pikant": "pikant", "pikante": "pikant", "pikdonker": "pikdonker", "pikduister": "pikduister", "pikduisternis": "pikduisternis", "pikken": "pik", "pikte": "pikt", "pikzwart": "pikzwart", "pikzwarte": "pikzwart", "pil": "pil", "piloot": "pilot", "pilot": "pilot", "piloten": "pilot", "pilotinstallatie": "pilotinstallatie", "pilotproject": "pilotproject", "pim": "pim", "pimm": "pimm", "pin": "pin", "pinatubo": "pinatubo", "pinch": "pinch", "pinguïns": "pinguin", "pink": "pink", "pinkegat": "pinkegat", "pinus": "pinus", "pioneer": "pioner", "pioniers": "pionier", "pionierswerk": "pionierswerk", "pipa": "pipa", "pipe": "pip", "piping": "piping", "pir": "pir", "pisa": "pisa", "pistolen": "pistol", "pistool": "pistol", "pit": "pit", "pitrus": "pitrus", "pittem": "pittem", "pittig": "pittig", "pittige": "pittig", "pittsburgh": "pittsburgh", "pizza": "pizza", "pj": "pj", "pk": "pk", "pkb": "pkb", "pkl": "pkl", "plaag": "plag", "plaagde": "plaagd", "plaagden": "plaagd", "plaaggeest": "plaaggeest", "plaagt": "plaagt", "plaat": "plat", "plaatafval": "plaatafval", "plaatgat": "plaatgat", "plaatje": "plaatj", "plaatjes": "plaatjes", "plaatmateriaal": "plaatmateriaal", "plaatmaterialen": "plaatmaterial", "plaats": "plat", "plaatsbare": "plaatsbar", "plaatschroot": "plaatschrot", "plaatse": "plat", "plaatselijk": "plaatselijk", "plaatselijke": "plaatselijk", "plaatsen": "plaats", "plaatsgebonden": "plaatsgebond", "plaatsgevonden": "plaatsgevond", "plaatsing": "plaatsing", "plaatsingsbeleid": "plaatsingsbeleid", "plaatsingsmogelijkheden": "plaatsingsmog", "plaatsingsproblematiek": "plaatsingsproblematiek", "plaatsingsrichtlijn": "plaatsingsrichtlijn", "plaatsingsruimte": "plaatsingsruimt", "plaatsingstempo": "plaatsingstempo", "plaatsje": "plaatsj", "plaatsjes": "plaatsjes", "plaatsmaken": "plaatsmak", "plaatst": "plaatst", "plaatste": "plaatst", "plaatsvervangend": "plaatsvervang", "plaatsvinden": "plaatsvind", "plaatsvindt": "plaatsvindt", "plaatsvond": "plaatsvond", "plaatsvonden": "plaatsvond", "place": "plac", "placht": "placht", "placide": "placid", "plafond": "plafond", "plafondpanelen": "plafondpanel", "plafonds": "plafond", "plagen": "plag", "plagerij": "plagerij", "plagerijen": "plagerij", "plaines": "plaines", "plainfield": "plainfield", "plak": "plak", "plakkaten": "plakkat", "plakken": "plak", "plakte": "plakt", "plakten": "plakt", "plan": "plan", "planaflora": "planaflora", "planbureau": "planbureau", "planck": "planck", "planeconomie": "planeconomie", "planeet": "planet", "planfase": "planfas", "plangebied": "plangebied", "plank": "plank", "planken": "plank", "plankton": "plankton", "planktondiertjes": "planktondiertjes", "planmatig": "planmat", "planmatige": "planmat", "plannen": "plann", "planning": "planning", "planologisch": "planologisch", "planologische": "planologisch", "planstudie": "planstudie", "plant": "plant", "plantaardig": "plantaard", "plantaardige": "plantaard", "plantage": "plantag", "plantages": "plantages", "plante": "plant", "planteavlforsøg": "planteavlforsøg", "planten": "plant", "plantengroei": "plantengroei", "plantenkas": "plantenkas", "plantenkwekers": "plantenkweker", "plantenprodukten": "plantenprodukt", "plantensoorten": "plantensoort", "plantenziektekundige": "plantenziektekund", "plantenziektenkundige": "plantenziektenkund", "planters": "planter", "plantesoorten": "plantesoort", "planteziektenkundig": "planteziektenkund", "planteziektenkundige": "planteziektenkund", "plantijnstraat": "plantijnstrat", "plantje": "plantj", "plantmanager": "plantmanager", "plantmateriaal": "plantmateriaal", "plantsoen": "plantsoen", "plantsoendiensten": "plantsoendienst", "plantsoenen": "plantsoen", "planvoorbereidingsfase": "planvoorbereidingsfas", "plas": "plas", "plasbermen": "plasberm", "plasma": "plasma", "plasmaboogcentrifuge": "plasmaboogcentrifug", "plasmalichtboogcentrifuge": "plasmalichtboogcentrifug", "plasmatechnik": "plasmatechnik", "plasmatoorts": "plasmatoort", "plasmatoortscentrifuge": "plasmatoortscentrifug", "plassen": "plass", "plassende": "plassend", "plassengebied": "plassengebied", "plasserwaard": "plasserwaard", "plaste": "plast", "plastic": "plastic", "plasticfabrikant": "plasticfabrikant", "plasticgranulaat": "plasticgranulat", "plasticinzameling": "plasticinzamel", "plasticproducenten": "plasticproducent", "plastics": "plastic", "plasticsoorten": "plasticsoort", "plasticstructuur": "plasticstructur", "plastificeermiddel": "plastificeermiddel", "plastomeren": "plastomer", "plat": "plat", "platdakprodukten": "platdakprodukt", "plate": "plat", "plateau": "plateau", "platen": "plat", "platform": "platform", "platforms": "platform", "platformsloperij": "platformsloperij", "platgebrand": "platgebrand", "platgedrukt": "platgedrukt", "platgelopen": "platgelop", "platgevouwen": "platgevouw", "platinum": "platinum", "platisolplaat": "platisolplat", "platonisme": "platonism", "platte": "plat", "plattegronden": "plattegrond", "platteland": "platteland", "plattelands": "platteland", "plattelandsgemeenten": "plattelandsgemeent", "plattelandsmilieu": "plattelandsmilieu", "plattelandsontwikkeling": "plattelandsontwikkel", "plattelandsvernieuwing": "plattelandsvernieuw", "plattelandsvrouwen": "plattelandsvrouw", "plaza": "plaza", "plc": "plc", "plebs": "pleb", "plechtig": "plechtig", "plechtige": "plechtig", "pleegden": "pleegd", "pleegkind": "pleegkind", "pleegkinderen": "pleegkinder", "pleegt": "pleegt", "pleegvader": "pleegvader", "plegen": "pleg", "plegers": "pleger", "pleidooi": "pleidooi", "plein": "plein", "pleinen": "plein", "pleisterwerk": "pleisterwerk", "pleit": "pleit", "pleitbezorger": "pleitbezorger", "pleiten": "pleit", "pleitte": "pleit", "pleizier": "pleizier", "pleizierig": "pleizier", "plek": "plek", "plekgebonden": "plekgebond", "plekje": "plekj", "plekjes": "plekjes", "plekke": "plek", "plekken": "plek", "pleksgewijs": "pleksgewijs", "plenaire": "plenair", "plenum": "plenum", "plezier": "plezier", "plezierig": "plezier", "plezierjacht": "plezierjacht", "plezierjagers": "plezierjager", "pleziervaart": "pleziervaart", "plicht": "plicht", "plichtige": "plichtig", "plichtjes": "plichtjes", "plichtsbesef": "plichtsbesef", "plichtsgetrouw": "plichtsgetrouw", "pln": "pln", "ploeg": "ploeg", "ploegen": "ploeg", "ploert": "ploert", "ploerten": "ploert", "ploften": "ploft", "plomp": "plomp", "plompe": "plomp", "plooi": "plooi", "plooibare": "plooibar", "plooiboezem": "plooiboezem", "plooide": "plooid", "plooiden": "plooid", "plooien": "plooi", "plooiende": "plooiend", "plooierig": "plooier", "plooit": "plooit", "plots": "plot", "plotse": "plot", "plotseling": "plotsel", "plotselinge": "plotsel", "pluim": "pluim", "pluimmodellen": "pluimmodell", "pluimplus": "pluimplus", "pluimvee": "pluimvee", "pluimveebedrijf": "pluimveebedrijf", "pluimveebedrijven": "pluimveebedrijv", "pluimveehouder": "pluimveehouder", "pluimveehouderij": "pluimveehouderij", "pluimveehouderijen": "pluimveehouderij", "pluimveehouders": "pluimveehouder", "pluimveemest": "pluimveemest", "pluimveesector": "pluimveesector", "pluis": "pluis", "pluisjes": "pluisjes", "pluk": "pluk", "plukken": "pluk", "plukte": "plukt", "plunje": "plunj", "plus": "plus", "pluspunt": "pluspunt", "plutonium": "plutonium", "plutoniumoxyde": "plutoniumoxyd", "plutoniumschip": "plutoniumschip", "plutoniumsmokkel": "plutoniumsmokkel", "plv": "plv", "pm": "pm", "pmo": "pmo", "pmv": "pmv", "pnem": "pnem", "pneumatische": "pneumatisch", "pneuwielen": "pneuwiel", "pocerady": "pocerady", "pochen": "poch", "pochend": "pochend", "pocherijen": "pocherij", "pochner": "pochner", "pochte": "pocht", "podium": "podium", "poeder": "poeder", "poedercoating": "poedercoat", "poederhout": "poederhout", "poederkalk": "poederkalk", "poederkool": "poederkol", "poederkoolcentrale": "poederkoolcentral", "poederkoolcentrales": "poederkoolcentrales", "poederkoolvliegas": "poederkoolvliegas", "poedermateriaal": "poedermateriaal", "poeders": "poeder", "poedertechnologie": "poedertechnologie", "poederverdichting": "poederverdicht", "poederverfharsen": "poederverfhars", "poederverven": "poederverv", "poedervorm": "poedervorm", "poedervormig": "poedervorm", "poefende": "poefend", "poeffende": "poeffend", "poefte": "poeft", "poeier": "poeier", "poeierblanke": "poeierblank", "poeierde": "poeierd", "poeierden": "poeierd", "poelen": "poel", "poept": "poept", "poesmooi": "poesmooi", "poëtisch": "poetisch", "poetri": "poetri", "poetries": "poetries", "poetsen": "poets", "poëzie": "poezie", "poëzietje": "poezietj", "pof": "pof", "pogen": "pog", "poging": "poging", "pogingen": "poging", "point": "point", "points": "point", "poisson": "poisson", "pok": "pok", "poken": "pok", "pol": "pol", "polaire": "polair", "polar": "polar", "polaroid": "polaroid", "polder": "polder", "polderbewoners": "polderbewoner", "polderboeren": "polderboer", "polderdistrict": "polderdistrict", "poldergebied": "poldergebied", "poldergemalen": "poldergemal", "polders": "polder", "polen": "pol", "policy": "policy", "poliepen": "poliep", "polinat": "polinat", "polis": "polis", "polissen": "poliss", "politici": "politici", "politicologie": "politicologie", "politicoloog": "politicolog", "politie": "politie", "politieblad": "politieblad", "politiebureau": "politiebureau", "politiebureaus": "politiebureaus", "politiecel": "politiecel", "politiek": "politiek", "politieke": "politiek", "politiemensen": "politiemens", "politiemilieutaak": "politiemilieutak", "politierechter": "politierechter", "politieregio": "politieregio", "pollinat": "pollinat", "pollutants": "pollutant", "pollutec": "pollutec", "polluter": "polluter", "pollution": "pollution", "polonoreste": "polonorest", "pols": "pol", "polsen": "pols", "poly": "poly", "polyacrylamide": "polyacrylamid", "polyamide": "polyamid", "polyamidemembraan": "polyamidemembran", "polychloorbifenylen": "polychloorbifenyl", "polychloordioxines": "polychloordioxines", "polycyanoraathoudende": "polycyanoraathoud", "polycyanoraten": "polycyanorat", "polycyclische": "polycyclisch", "polydek": "polydek", "polydisperse": "polydisper", "polyester": "polyester", "polyesterband": "polyesterband", "polyesterbasis": "polyesterbasis", "polyesterfabriek": "polyesterfabriek", "polyesterharsverwerking": "polyesterharsverwerk", "polyesters": "polyester", "polyetheen": "polyethen", "polyetheenglycolen": "polyetheenglycol", "polyethenen": "polyethen", "polyethoxylaten": "polyethoxylat", "polyethyleen": "polyethylen", "polyethyleenfabriek": "polyethyleenfabriek", "polyethyleenfolie": "polyethyleenfolie", "polyethyleentereftalaat": "polyethyleentereftalat", "polyethyleentereftelaat": "polyethyleentereftelat", "polygechloreerde": "polygechloreerd", "polymeer": "polymer", "polymeeremulsies": "polymeeremulsies", "polymeermatrix": "polymeermatrix", "polymeerpoeder": "polymeerpoeder", "polymeerverbindingen": "polymeerverbind", "polymelkzuur": "polymelkzur", "polymer": "polymer", "polymeren": "polymer", "polymerisatie": "polymerisatie", "polymers": "polymer", "polynesië": "polynesie", "polynesische": "polynesisch", "polyolefine": "polyolefin", "polyolefins": "polyolefin", "polypropeen": "polypropen", "polypropyleen": "polypropylen", "polystyreen": "polystyren", "polystyreenschuim": "polystyreenschuim", "polysulfide": "polysulfid", "polytechnique": "polytechnique", "polytechnische": "polytechnisch", "polytropisch": "polytropisch", "polyurethaan": "polyurethan", "polyurethaanplaten": "polyurethaanplat", "polyurethaanschuim": "polyurethaanschuim", "polyurethaantechnologie": "polyurethaantechnologie", "polyvinylchloride": "polyvinylchlorid", "polyvinylideenfluoride": "polyvinylideenfluorid", "pom": "pom", "pommée": "pommee", "pomp": "pomp", "pompen": "pomp", "pompende": "pompend", "pompenfabrikant": "pompenfabrikant", "pompensysteem": "pompensystem", "pompinstallatie": "pompinstallatie", "pompput": "pompput", "pompstation": "pompstation", "pompstations": "pompstation", "pompsysteem": "pompsystem", "pompsystemen": "pompsystem", "pompt": "pompt", "pompte": "pompt", "pompzijde": "pompzijd", "pon": "pon", "pond": "pond", "ponden": "pond", "pondje": "pondj", "ponnetje": "ponnetj", "pons": "pon", "pont": "pont", "pontech": "pontech", "pontoise": "pontois", "pony": "pony", "poogde": "poogd", "poogden": "poogd", "pookte": "pookt", "pool": "pol", "poolafstanden": "poolafstand", "pooling": "pooling", "pools": "pol", "poolse": "pol", "poolstreken": "poolstrek", "poolvorming": "poolvorm", "poort": "poort", "poorten": "poort", "poortjes": "poortjes", "poortvliet": "poortvliet", "poosde": "poosd", "poot": "pot", "pootaardappelen": "pootaardappel", "pootgoed": "pootgoed", "pop": "pop", "popconcerten": "popconcert", "pophost": "pophost", "poppe": "popp", "poppemoedertje": "poppemoedertj", "poppen": "popp", "poppenwereld": "poppenwereld", "popperigheid": "popper", "poppetje": "poppetj", "poppetjes": "poppetjes", "poppie": "poppie", "poppig": "poppig", "poptel": "poptel", "populair": "populair", "populaire": "populair", "populariteit": "populariteit", "populatie": "populatie", "populatiegrootte": "populatiegrot", "populaties": "populaties", "population": "population", "populier": "populier", "populieren": "populier", "populierenbossen": "populierenboss", "por": "por", "porcelein": "porcelein", "porceleinen": "porcelein", "poreus": "poreus", "poreusheid": "poreus", "poreuze": "poreuz", "poriën": "porien", "poriëngetal": "poriengetal", "poriënstructuur": "porienstructur", "poriewater": "poriewater", "porosiemiddel": "porosiemiddel", "porseleinen": "porselein", "porta": "porta", "portaalarm": "portaalarm", "portaalkranen": "portaalkran", "portcurno": "portcurno", "porte": "port", "portée": "portee", "portefeuille": "portefeuill", "portegijs": "portegijs", "portemonnee": "portemonnee", "portie": "portie", "portier": "portier", "portière": "portièr", "portillo": "portillo", "portret": "portret", "portretten": "portret", "portrettenstijl": "portrettenstijl", "portugal": "portugal", "portugese": "portuges", "pose": "pos", "poseren": "poser", "poseur": "poseur", "positie": "positie", "positief": "positief", "posities": "posities", "positieve": "positiev", "position": "position", "positivisme": "positivism", "positivistische": "positivistisch", "post": "post", "postbank": "postbank", "postbankrekeningnummer": "postbankrekeningnummer", "postbestelauto": "postbestelauto", "postbus": "postbus", "postbusnummer": "postbusnummer", "posten": "post", "poster": "poster", "posterborden": "posterbord", "posterijen": "posterij", "postpapier": "postpapier", "postzakken": "postzak", "postzegeldoosje": "postzegeldoosj", "postzegels": "postzegel", "posw": "posw", "pot": "pot", "potash": "potash", "poten": "pot", "potentiaal": "potentiaal", "potentiaalverschil": "potentiaalverschil", "potentie": "potentie", "potentieel": "potentieel", "potentiële": "potentiel", "potenties": "potenties", "potgrond": "potgrond", "pothoven": "pothov", "potje": "potj", "potlood": "potlod", "potomac": "potomac", "potplanten": "potplant", "potplantenbedrijven": "potplantenbedrijv", "potsdam": "potsdam", "potten": "pot", "pottetrien": "pottetrien", "potvissen": "potviss", "poudre": "poudr", "poulenc": "poulenc", "pousseert": "pousseert", "pousseren": "pousser", "pouw": "pouw", "powell": "powell", "power": "power", "powered": "powered", "poze": "poz", "pp": "pp", "ppb": "ppb", "ppc": "ppc", "ppg": "ppg", "ppm": "ppm", "ppr": "ppr", "pq": "pq", "pr": "pr", "pra": "pra", "praag": "prag", "praat": "prat", "praatjes": "praatjes", "praatte": "prat", "praatten": "prat", "pracht": "pracht", "prachtig": "prachtig", "prachtige": "prachtig", "practice": "practic", "practices": "practices", "practici": "practici", "practisch": "practisch", "praediniussingel": "praediniussingel", "pragmatisch": "pragmatisch", "pragmatische": "pragmatisch", "praktijk": "praktijk", "praktijkbladen": "praktijkblad", "praktijkboek": "praktijkboek", "praktijkbrief": "praktijkbrief", "praktijken": "praktijk", "praktijkexperimenten": "praktijkexperiment", "praktijkgerichter": "praktijkgerichter", "praktijkgroep": "praktijkgroep", "praktijkinformatie": "praktijkinformatie", "praktijkkennis": "praktijkkennis", "praktijkomstandigheden": "praktijkomstand", "praktijkonderzoek": "praktijkonderzoek", "praktijkoplossingen": "praktijkoploss", "praktijkproeven": "praktijkproev", "praktijkreeks": "praktijkrek", "praktijkrijpe": "praktijkrijp", "praktijkschaal": "praktijkschal", "praktijkschool": "praktijkschol", "praktijksituaties": "praktijksituaties", "praktijkvoorbeelden": "praktijkvoorbeeld", "praktisch": "praktisch", "praktische": "praktisch", "praktischer": "praktischer", "praktisheid": "praktis", "pralende": "pralend", "pralmolens": "pralmolen", "pralwerken": "pralwerk", "pranab": "pranab", "prangde": "prangd", "prangende": "prangend", "praten": "prat", "pratende": "pratend", "praxair": "praxair", "prc": "prc", "pre": "pre", "precedent": "precedent", "precedentwerking": "precedentwerk", "precies": "precies", "preciese": "precies", "precieze": "preciez", "precipitator": "precipitator", "precisieverwarming": "precisieverwarm", "precisieverwarmingssystemen": "precisieverwarmingssystem", "predicdcyn": "predicdcyn", "predichat": "predichat", "predicted": "predicted", "predikant": "predikant", "prees": "pres", "prefab": "prefab", "prefereert": "prefereert", "prefereren": "preferer", "preis": "preis", "preiteelt": "preiteelt", "prekwalificatie": "prekwalificatie", "prélude": "prelud", "premie": "premie", "premiebetalingen": "premiebetal", "premier": "premier", "premiere": "premier", "première": "premièr", "premiers": "premier", "premies": "premies", "premiestelsel": "premiestelsel", "prentenboek": "prentenboek", "prentenboeken": "prentenboek", "prentjes": "prentjes", "preparaat": "preparat", "preparaten": "preparat", "prepare": "prepar", "present": "present", "presentabel": "presentabel", "presentatie": "presentatie", "presentaties": "presentaties", "presentatrice": "presentatric", "presenteerbladen": "presenteerblad", "presenteerde": "presenteerd", "presenteerden": "presenteerd", "presenteert": "presenteert", "presenteren": "presenter", "presentie": "presentie", "president": "president", "presidentscampagne": "presidentscampagn", "presidentschap": "presidentschap", "presidentskandidaten": "presidentskandidat", "presidentsverkiezingen": "presidentsverkiez", "press": "pres", "presse": "pres", "pressen": "press", "pressie": "pressie", "pressiegroepen": "pressiegroep", "pressure": "pressur", "prestatie": "prestatie", "prestatiekromme": "prestatiekromm", "prestatiematen": "prestatiemat", "prestaties": "prestaties", "prestatieverhouding": "prestatieverhoud", "prestatieverlies": "prestatieverlies", "presteerde": "presteerd", "presteert": "presteert", "presteren": "prester", "presterende": "prester", "prestige": "prestig", "pret": "pret", "pretentie": "pretentie", "pretenties": "pretenties", "pretentieus": "pretentieus", "pretentieuze": "pretentieuz", "pretje": "pretj", "pretpark": "pretpark", "pretparken": "pretpark", "prettig": "prettig", "prettige": "prettig", "prettiger": "prettiger", "preussenelektra": "preussenelektra", "preventie": "preventie", "preventieaanpak": "preventieaanpak", "preventiebeleid": "preventiebeleid", "preventief": "preventief", "preventiehandleiding": "preventiehandleid", "preventiekostenmethode": "preventiekostenmethod", "preventiemaatregelen": "preventiemaatregel", "preventieprogramma": "preventieprogramma", "preventieproject": "preventieproject", "preventieprojecten": "preventieproject", "preventietraining": "preventietrain", "preventieve": "preventiev", "prevention": "prevention", "prezen": "prez", "pri": "pri", "pricing": "pricing", "priddle": "priddl", "priem": "priem", "priemde": "priemd", "priemden": "priemd", "priemen": "priem", "priemende": "priemend", "priempijl": "priempijl", "prijs": "prijs", "prijsbeleid": "prijsbeleid", "prijsbewuste": "prijsbewust", "prijsconcurrentie": "prijsconcurrentie", "prijsdalingen": "prijsdal", "prijsinformatie": "prijsinformatie", "prijsinstrument": "prijsinstrument", "prijsniveau": "prijsniveau", "prijsontwikkeling": "prijsontwikkel", "prijsopdrijving": "prijsopdrijv", "prijspeil": "prijspeil", "prijsrisico": "prijsrisico", "prijsspiraal": "prijsspiral", "prijsstijging": "prijsstijg", "prijsstijgingen": "prijsstijg", "prijst": "prijst", "prijsuitreiking": "prijsuitreik", "prijsverhogingen": "prijsverhog", "prijsverhouding": "prijsverhoud", "prijsverlaging": "prijsverlag", "prijsverlagingen": "prijsverlag", "prijsverschil": "prijsverschil", "prijsverschillen": "prijsverschill", "prijsvorming": "prijsvorm", "prijsvraag": "prijsvrag", "prijswinnaar": "prijswinnar", "prijswinnaars": "prijswinnar", "prijswinnend": "prijswinn", "prijzen": "prijz", "prijzengeld": "prijzengeld", "prijzenswaardig": "prijzenswaard", "prijzensysteem": "prijzensystem", "prikborden": "prikbord", "prikkel": "prikkel", "prikkelbaar": "prikkel", "prikkelbaars": "prikkel", "prikkelde": "prikkeld", "prikkelen": "prikkel", "prikkelend": "prikkel", "prikkeling": "prikkel", "prikkels": "prikkel", "prikte": "prikt", "prima": "prima", "primaat": "primat", "primair": "primair", "primaire": "primair", "primeur": "primeur", "primeuraardappelen": "primeuraardappel", "primeurs": "primeur", "primitief": "primitief", "primordiale": "primordial", "prince": "princ", "princeton": "princeton", "principe": "princip", "principes": "principes", "principieel": "principieel", "principiële": "principiel", "principle": "principl", "principles": "principles", "prins": "prin", "prinsenbeek": "prinsenbek", "prinsenland": "prinsenland", "prinses": "prinses", "printer": "printer", "printers": "printer", "printplaten": "printplat", "prioritaire": "prioritair", "prioriteit": "prioriteit", "prioriteiten": "prioriteit", "prioriteitenlijst": "prioriteitenlijst", "prioriteitennota": "prioriteitennota", "prioriteitsstelling": "prioriteitsstell", "prioriteitstelling": "prioriteitstell", "prioriteitsthema": "prioriteitsthema", "prioritering": "prioriter", "priorities": "priorities", "prisma": "prisma", "prismakleuren": "prismakleur", "privaat": "privat", "privaatles": "privaatles", "privaatlessen": "privaatless", "privaatrecht": "privaatrecht", "privaatrechtelijk": "privaatrecht", "privaatrechtelijke": "privaatrecht", "privacy": "privacy", "private": "privat", "privater": "privater", "privatiseerde": "privatiseerd", "privatiseren": "privatiser", "privatisering": "privatiser", "privé": "priv", "privépersonen": "priveperson", "privérijders": "priverijder", "pro": "pro", "proactieve": "proactiev", "proav": "proav", "probabilistische": "probabilistisch", "probeer": "prober", "probeerde": "probeerd", "probeerden": "probeerd", "probeert": "probeert", "proberen": "prober", "proberende": "prober", "probes": "probes", "probleem": "problem", "probleembedrijven": "probleembedrijv", "probleembranches": "probleembranches", "probleemgrondeigenaren": "probleemgrondeigenar", "probleemstoffen": "probleemstoff", "problematiek": "problematiek", "problematisch": "problematisch", "problematische": "problematisch", "problematischer": "problematischer", "problemen": "problem", "procedé": "proced", "procédé": "proced", "procederen": "proceder", "procédés": "procedes", "procedure": "procedur", "procedureel": "procedurel", "procedures": "procedures", "procent": "procent", "procenten": "procent", "procentsbelang": "procentsbelang", "proces": "proces", "procesaanpassing": "procesaanpass", "procesbeheersing": "procesbeheers", "procesbesturingsapparatuur": "procesbesturingsapparatur", "procescertificaat": "procescertificat", "procescondities": "procescondities", "procesfase": "procesfas", "procesgang": "procesgang", "procesgeïntegreerde": "procesgeintegreerd", "procesindustrie": "procesindustrie", "procesindustrieën": "procesindustrieen", "procesinnovatie": "procesinnovatie", "procesintegratiestudies": "procesintegratiestudies", "proceskosten": "proceskost", "procesleverancier": "procesleverancier", "proceslucht": "proceslucht", "procesmatige": "procesmat", "procesonderdelen": "procesonderdel", "procesontwikkeling": "procesontwikkel", "procesontwikkelingen": "procesontwikkel", "procesoptimalisatie": "procesoptimalisatie", "procesroutes": "procesroutes", "process": "proces", "processen": "process", "processing": "process", "processor": "processor", "processtap": "processtap", "processtappen": "processtapp", "processtromen": "processtrom", "procestanks": "procestank", "procestechniek": "procestechniek", "procestechnische": "procestechnisch", "procestechnologen": "procestechnolog", "procestechnologie": "procestechnologie", "procestechnologieën": "procestechnologieen", "procestemperaturen": "procestemperatur", "procestijd": "procestijd", "procesverbaal": "procesverbal", "procesverbalen": "procesverbal", "procesverbetering": "procesverbeter", "procesverloop": "procesverlop", "procesvernieuwing": "procesvernieuw", "procesvoering": "procesvoer", "proceswarmte": "proceswarmt", "proceswater": "proceswater", "procureur": "procureur", "procureurs": "procureur", "produceerde": "produceerd", "produceerden": "produceerd", "produceert": "produceert", "producent": "producent", "producenten": "producent", "producentenlanden": "producentenland", "producentenverantwoordelijkheid": "producentenverantwoord", "produceren": "producer", "producerende": "producer", "product": "product", "producten": "product", "production": "production", "products": "product", "produkt": "produkt", "produktaanbod": "produktaanbod", "produktaankopen": "produktaankop", "produktaansprakelijkheid": "produktaansprak", "produktbeleid": "produktbeleid", "produktcertificaat": "produktcertificat", "produktclusters": "produktcluster", "produktdifferentiatie": "produktdifferentiatie", "produktdoorloop": "produktdoorlop", "produkten": "produkt", "produktenbeleid": "produktenbeleid", "produktgericht": "produktgericht", "produktgerichte": "produktgericht", "produktgroep": "produktgroep", "produktgroepen": "produktgroep", "produkthergebruik": "produkthergebruik", "produktie": "produktie", "produktiebedrijf": "produktiebedrijf", "produktiebedrijven": "produktiebedrijv", "produktiebossen": "produktieboss", "produktiecapaciteit": "produktiecapaciteit", "produktiedoeleinden": "produktiedoeleind", "produktiefaciliteit": "produktiefaciliteit", "produktiefaciliteiten": "produktiefaciliteit", "produktiefste": "produktiefst", "produktiefuncties": "produktiefuncties", "produktiegedeelte": "produktiegedeelt", "produktiegerichte": "produktiegericht", "produktiegroei": "produktiegroei", "produktiehal": "produktiehal", "produktieinformatiesysteem": "produktieinformatiesystem", "produktieketen": "produktieket", "produktiekosten": "produktiekost", "produktielijn": "produktielijn", "produktielijnen": "produktielijn", "produktielocatie": "produktielocatie", "produktielocaties": "produktielocaties", "produktielokatie": "produktielokatie", "produktielokaties": "produktielokaties", "produktiemaatschappij": "produktiemaatschappij", "produktiemethode": "produktiemethod", "produktieomvang": "produktieomvang", "produktieproces": "produktieproces", "produktieprocessen": "produktieprocess", "produktieput": "produktieput", "produkties": "produkties", "produktiesector": "produktiesector", "produktiestap": "produktiestap", "produktiestations": "produktiestation", "produktiestijging": "produktiestijg", "produktiestraat": "produktiestrat", "produktiesysteem": "produktiesystem", "produktiesystemen": "produktiesystem", "produktietechniek": "produktietechniek", "produktietechnieken": "produktietechniek", "produktietechnologie": "produktietechnologie", "produktieverhoging": "produktieverhog", "produktieverlies": "produktieverlies", "produktievermindering": "produktieverminder", "produktievermogen": "produktievermog", "produktievrijheid": "produktievrij", "produktiewaarde": "produktiewaard", "produktiewijze": "produktiewijz", "produktiewinst": "produktiewinst", "produktinformatie": "produktinformatie", "produktinformatiesysteem": "produktinformatiesystem", "produktinnovatie": "produktinnovatie", "produktiviteit": "produktiviteit", "produktkwaliteit": "produktkwaliteit", "produktlijn": "produktlijn", "produktnormen": "produktnorm", "produktontvangstruimte": "produktontvangstruimt", "produktontwikkelaars": "produktontwikkelar", "produktontwikkeling": "produktontwikkel", "produktoplossingen": "produktoploss", "produktprijzen": "produktprijz", "produktregistratie": "produktregistratie", "produktschap": "produktschap", "produktschappen": "produktschapp", "produktsoort": "produktsoort", "produktstromen": "produktstrom", "produktveiligheid": "produktveil", "produktverantwoordelijkheid": "produktverantwoord", "produktverbetering": "produktverbeter", "produktvoorbeelden": "produktvoorbeeld", "produktvoorschriften": "produktvoorschrift", "produktzorg": "produktzorg", "produktzorgsysteem": "produktzorgsystem", "proef": "proef", "próef": "proef", "proefbaggeren": "proefbagger", "proefbank": "proefbank", "proefbedrijf": "proefbedrijf", "proefboerderij": "proefboerderij", "proefboerderijen": "proefboerderij", "proefboren": "proefbor", "proefboring": "proefbor", "proefboringen": "proefbor", "proefcentrum": "proefcentrum", "proefcontract": "proefcontract", "proefde": "proefd", "proefdier": "proefdier", "proefdieren": "proefdier", "proefdiergebruik": "proefdiergebruik", "proefdieronderzoek": "proefdieronderzoek", "proefdierstudies": "proefdierstudies", "proefdraaien": "proefdraai", "proeffabriek": "proeffabriek", "proeffase": "proeffas", "proefgebied": "proefgebied", "proefgedraaid": "proefgedraaid", "proefgemeenten": "proefgemeent", "proefinstallatie": "proefinstallatie", "proefinstallaties": "proefinstallaties", "proeflocatie": "proeflocatie", "proeflocaties": "proeflocaties", "proefnemingen": "proefnem", "proefopstelling": "proefopstell", "proefperiode": "proefperiod", "proefpersonen": "proefperson", "proefprocedure": "proefprocedur", "proefproces": "proefproces", "proefprocessen": "proefprocess", "proefproject": "proefproject", "proefprojecten": "proefproject", "proefprojectprogramma": "proefprojectprogramma", "proefresultaten": "proefresultat", "proefsanering": "proefsaner", "proefsaneringen": "proefsaner", "proefschrift": "proefschrift", "proefstation": "proefstation", "proeftijd": "proeftijd", "proeftuin": "proeftuin", "proefvak": "proefvak", "proefzending": "proefzend", "proémineren": "proeminer", "proestbui": "proestbui", "proesten": "proest", "proestende": "proestend", "proestlach": "proestlach", "proestte": "proest", "proestten": "proest", "proeven": "proev", "proeverijen": "proeverij", "prof": "prof", "profane": "profan", "profession": "profession", "professionalisering": "professionaliser", "professionals": "professional", "professioneel": "professionel", "professionele": "professionel", "professionelen": "professionel", "professor": "professor", "professoren": "professor", "profeterende": "profeter", "profiel": "profiel", "profielen": "profiel", "profijt": "profijt", "profijtbeginsel": "profijtbeginsel", "profileren": "profiler", "profit": "profit", "profiteerde": "profiteerd", "profiteerden": "profiteerd", "profiteert": "profiteert", "profiteren": "profiter", "profitinstellingen": "profitinstell", "profitorganisaties": "profitorganisaties", "prognos": "prognos", "prognose": "prognos", "prognosemodel": "prognosemodel", "prognoses": "prognoses", "program": "program", "programm": "programm", "programma": "programma", "programmable": "programmabl", "programme": "programm", "programmeerbare": "programmer", "programmering": "programmer", "progress": "progres", "progressief": "progressief", "project": "project", "projectaanbieders": "projectaanbieder", "projectarchitect": "projectarchitect", "projectbijdragen": "projectbijdrag", "projectbureau": "projectbureau", "projectdirector": "projectdirector", "projecten": "project", "projectenoverzicht": "projectenoverzicht", "projectenwijzer": "projectenwijzer", "projectfondsen": "projectfonds", "projectgroep": "projectgroep", "projectkosten": "projectkost", "projectleider": "projectleider", "projectleiding": "projectleid", "projectmanager": "projectmanager", "projectmatige": "projectmat", "projectnota": "projectnota", "projectontwikkelaar": "projectontwikkelar", "projectontwikkelaars": "projectontwikkelar", "projectontwikkelbedrijven": "projectontwikkelbedrijv", "projectontwikkeling": "projectontwikkel", "projectorganisatie": "projectorganisatie", "projectovereenkomsten": "projectovereenkomst", "projectplan": "projectplan", "projects": "project", "projectsgewijs": "projectsgewijs", "projectteam": "projectteam", "projectuitvoerders": "projectuitvoerder", "projectvoorstel": "projectvoorstel", "projectvoorstellen": "projectvoorstell", "projectwaarde": "projectwaard", "projekt": "projekt", "projektbureau": "projektbureau", "projekten": "projekt", "proletariër": "proletarier", "proliferatie": "proliferatie", "promecht": "promecht", "prominent": "prominent", "prominente": "prominent", "promise": "promis", "promises": "promises", "promoot": "promot", "promoten": "promot", "promotie": "promotie", "promotiefilm": "promotiefilm", "promotieonderzoek": "promotieonderzoek", "promoveerde": "promoveerd", "promoveert": "promoveert", "promovendus": "promovendus", "promoveren": "promover", "pronk": "pronk", "prooi": "prooi", "prop": "prop", "propaan": "propan", "propaedeutisch": "propaedeutisch", "propageert": "propageert", "propak": "propak", "propeen": "propen", "propeenglycol": "propeenglycol", "propellor": "propellor", "propellors": "propellor", "properties": "properties", "property": "property", "propionaten": "propionat", "proporties": "proporties", "propos": "propos", "propoxur": "propoxur", "propvolle": "propvoll", "propyleen": "propylen", "prospectus": "prospectus", "protect": "protect", "protectie": "protectie", "protection": "protection", "protectionisme": "protectionism", "protecto": "protecto", "protein": "protein", "protektrite": "protektrit", "protest": "protest", "protestactie": "protestactie", "protestacties": "protestacties", "protestbijeenkomst": "protestbijeenkomst", "protestborden": "protestbord", "protesteerde": "protesteerd", "protesteerden": "protesteerd", "protesteert": "protesteert", "protesten": "protest", "protesteren": "protester", "protesterende": "protester", "protestgroepen": "protestgroep", "protestkaarten": "protestkaart", "protestmars": "protestmar", "protestmarsen": "protestmars", "protestoptochten": "protestoptocht", "protestsongs": "protestsong", "protex": "protex", "protoc": "protoc", "protocol": "protocol", "protocollen": "protocoll", "protocolonderhandelingen": "protocolonderhandel", "prototype": "prototyp", "prototypen": "prototyp", "prototypes": "prototypes", "provicies": "provicies", "providers": "provider", "provinciaal": "provinciaal", "provinciale": "provincial", "provincie": "provincie", "provinciebestuur": "provinciebestur", "provinciebestuurder": "provinciebestuurder", "provinciegrens": "provinciegren", "provinciegrenzen": "provinciegrenz", "provinciehuis": "provinciehuis", "provinciehuizen": "provinciehuiz", "provincies": "provincies", "provisie": "provisie", "provisiekamer": "provisiekamer", "provisiekast": "provisiekast", "provisorisch": "provisorisch", "pruilmondje": "pruilmondj", "prul": "prul", "prullemand": "prullemand", "prullige": "prullig", "prutsige": "prutsig", "prutsigheden": "prutsig", "ps": "ps", "psa": "psa", "pseudo": "pseudo", "psi": "psi", "pstdp": "pstdp", "psycho": "psycho", "psycholoog": "psycholog", "psychomotorische": "psychomotorisch", "pt": "pt", "pta": "pta", "ptt": "ptt", "puber": "puber", "public": "public", "publicatie": "publicatie", "publicatienummer": "publicatienummer", "publications": "publication", "publiceerde": "publiceerd", "publiceerden": "publiceerd", "publiceren": "publicer", "publicitair": "publicitair", "publiciteit": "publiciteit", "publiek": "publiek", "publieke": "publiek", "publiekelijk": "publiek", "publiekrechtelijk": "publiekrecht", "publieks": "publiek", "publieksdeel": "publieksdel", "publiekspresentatie": "publiekspresentatie", "publieksprijs": "publieksprijs", "publieksrechtelijk": "publieksrecht", "publiekstrekker": "publiekstrekker", "publieksverslag": "publieksverslag", "publieksvriendelijke": "publieksvriend", "publikatie": "publikatie", "publikatienummer": "publikatienummer", "publikaties": "publikaties", "publishers": "publisher", "puck": "puck", "puckies": "puckies", "puckje": "puckj", "pudding": "pudding", "puddu": "puddu", "puerto": "puerto", "puffende": "puffend", "pufferigs": "puffer", "pufte": "puft", "puget": "puget", "puhh": "puhh", "puilden": "puild", "puilende": "puilend", "puimsteen": "puimsten", "puin": "puin", "puinafval": "puinafval", "puinbreek": "puinbrek", "puinbreekbedrijven": "puinbreekbedrijv", "puinbreekbeleid": "puinbreekbeleid", "puinbreekinstallaties": "puinbreekinstallaties", "puinbreken": "puinbrek", "puinbreker": "puinbreker", "puinbrekers": "puinbreker", "puinfractie": "puinfractie", "puingranulaat": "puingranulat", "puingranulaten": "puingranulat", "puinhoop": "puinhop", "puinrecycling": "puinrecycl", "puinstroom": "puinstrom", "pullen": "pull", "pulp": "pulp", "pulpfabrieken": "pulpfabriek", "pulsboringen": "pulsbor", "pulsen": "puls", "pulserende": "pulser", "pummel": "pummel", "pumps": "pump", "punkt": "punkt", "punt": "punt", "punta": "punta", "puntbronnen": "puntbronn", "puntdakjes": "puntdakjes", "punten": "punt", "puntensysteem": "puntensystem", "puntige": "puntig", "puntjes": "puntjes", "puntsgewijs": "puntsgewijs", "puntsgewijze": "puntsgewijz", "pur": "pur", "pure": "pur", "purmerend": "purmer", "purper": "purper", "pùrper": "pùrper", "purperden": "purperd", "purperen": "purper", "purpose": "purpos", "purschuim": "purschuim", "purvac": "purvac", "put": "put", "putman": "putman", "putra": "putra", "putte": "put", "putten": "put", "puur": "pur", "puzzy": "puzzy", "pv": "pv", "pva": "pva", "pvc": "pvc", "pvda": "pvda", "pvdf": "pvdf", "pve": "pve", "pvv": "pvv", "pw": "pw", "pwt": "pwt", "pygmeeën": "pygmeeen", "pyramides": "pyramides", "pyreneeën": "pyreneeen", "pyrolyse": "pyrolys", "pyrolysetemperatuur": "pyrolysetemperatur", "pyrometallurgie": "pyrometallurgie", "pyrometer": "pyrometer", "pythons": "python", "q": "q", "qian": "qian", "qichen": "qich", "qua": "qua", "quacks": "quack", "quak": "quak", "quantumkorting": "quantumkort", "quaterniseren": "quaterniser", "québec": "quebec", "queen": "queen", "quenchtoren": "quenchtor", "quest": "quest", "qui": "qui", "quick": "quick", "quickscans": "quickscan", "quicktreat": "quicktreat", "quinn": "quinn", "quint": "quint", "quirinaal": "quirinal", "quota": "quota", "quoteringsbeleid": "quoteringsbeleid", "quotum": "quotum", "quotumkosten": "quotumkost", "r": "r", "ra": "ra", "raad": "rad", "raadde": "rad", "raadgevend": "raadgev", "raadgevende": "raadgev", "raadgevingen": "raadgev", "raadpleegde": "raadpleegd", "raadpleegt": "raadpleegt", "raadplegen": "raadpleg", "raadplegende": "raadpleg", "raadpleging": "raadpleg", "raadscommissies": "raadscommissies", "raadsel": "raadsel", "raadseloplossing": "raadseloploss", "raadseltje": "raadseltj", "raadt": "raadt", "raadvermogen": "raadvermog", "raadzaam": "raadzam", "raak": "rak", "raakt": "raakt", "raakte": "raakt", "raakten": "raakt", "raakvlak": "raakvlak", "raalte": "raalt", "raam": "ram", "raambuurt": "raambuurt", "raamkozijnenfabrikant": "raamkozijnenfabrikant", "raamoppervlak": "raamoppervlak", "raampje": "raampj", "raampjes": "raampjes", "raamposten": "raampost", "raamt": "raamt", "raamwerk": "raamwerk", "raapolie": "raapolie", "raapzaad": "raapzad", "raar": "rar", "raas": "ras", "raasde": "raasd", "raasden": "raasd", "raaskalde": "raaskald", "raaskalt": "raaskalt", "rabo": "rabo", "rabobank": "rabobank", "rabobanken": "rabobank", "rabovisie": "rabovisie", "race": "rac", "races": "races", "racket": "racket", "rad": "rad", "råd": "råd", "radar": "radar", "radarreflexies": "radarreflexies", "radarsysteem": "radarsystem", "radeloos": "radelos", "radeloosheden": "radelos", "radeloosheid": "radelos", "radeloze": "radeloz", "radelozer": "radelozer", "raden": "rad", "radende": "radend", "radertjes": "radertjes", "radian": "radian", "radiata": "radiata", "radiative": "radiativ", "radiator": "radiator", "radicaal": "radical", "radicale": "radical", "radicalen": "radical", "radicalisering": "radicaliser", "radijs": "radijs", "radio": "radio", "radioactief": "radioactief", "radioactiefafval": "radioactiefafval", "radioactieve": "radioactiev", "radioactiviteit": "radioactiviteit", "radiologische": "radiologisch", "radioprogramma": "radioprogramma", "radioveld": "radioveld", "radom": "radom", "radon": "radon", "rafa": "rafa", "raffinaderij": "raffinaderij", "raffinaderijafval": "raffinaderijafval", "raffinaderijen": "raffinaderij", "raffinaderijslib": "raffinaderijslib", "raffinage": "raffinag", "raffinagecapaciteit": "raffinagecapaciteit", "raffinageproces": "raffinageproces", "raffineringscapaciteit": "raffineringscapaciteit", "rage": "rag", "rai": "rai", "rail": "rail", "railbeheer": "railbeher", "railconsult": "railconsult", "railprojecten": "railproject", "rails": "rail", "railtrack": "railtrack", "rain": "rain", "rainbow": "rainbow", "rainforest": "rainforest", "raising": "raising", "raisonnabel": "raisonnabel", "raken": "rak", "raket": "raket", "raketbrandstoffen": "raketbrandstoff", "raketten": "raket", "ralston": "ralston", "ramen": "ram", "raming": "raming", "ramingen": "raming", "rammelde": "rammeld", "rammelden": "rammeld", "rammelen": "rammel", "rammelend": "rammel", "rammelmuziek": "rammelmuziek", "ramp": "ramp", "rampen": "ramp", "rampenbestrijding": "rampenbestrijd", "rampenplannen": "rampenplann", "rampenscenario": "rampenscenario", "rampplek": "rampplek", "rampzalig": "rampzal", "rampzalige": "rampzal", "ramsar": "ramsar", "ramsgate": "ramsgat", "rancune": "rancun", "rand": "rand", "randcondities": "randcondities", "randen": "rand", "randgebieden": "randgebied", "randmeren": "randmer", "randstad": "randstad", "randstadagglomeratie": "randstadagglomeratie", "randstadgroenstructuur": "randstadgroenstructur", "randstadprovincies": "randstadprovincies", "randstadrail": "randstadrail", "randsteden": "randsted", "randvoorwaarde": "randvoorwaard", "randvoorwaarden": "randvoorwaard", "randweg": "randweg", "randzones": "randzones", "rangau": "rangau", "range": "rang", "ranglijst": "ranglijst", "rangschikking": "rangschik", "rank": "rank", "rankas": "rankas", "ranke": "rank", "rankte": "rankt", "ranse": "ran", "ransel": "ransel", "ranselde": "ranseld", "ranselden": "ranseld", "ranselen": "ransel", "ransuil": "ransuil", "rantsoensamenstellingen": "rantsoensamenstell", "ranze": "ranz", "raoûts": "raoût", "rap": "rap", "rapen": "rap", "rappe": "rapp", "rapport": "rapport", "rapportage": "rapportag", "rapportagemethode": "rapportagemethod", "rapportages": "rapportages", "rapportageverplichting": "rapportageverplicht", "rapportageverplichtingen": "rapportageverplicht", "rapporteert": "rapporteert", "rapporten": "rapport", "rapporteren": "rapporter", "rapporteur": "rapporteur", "rapunzel": "rapunzel", "raratonga": "raratonga", "rare": "rar", "rariteiten": "rariteit", "ras": "ras", "rassen": "rass", "raster": "raster", "rasters": "raster", "rat": "rat", "ratcliff": "ratcliff", "ratd": "ratd", "rate": "rat", "raté": "rat", "ratelde": "rateld", "rateling": "ratel", "rathenau": "rathenau", "ratificatie": "ratificatie", "ratingen": "rating", "rationaal": "rational", "rationeel": "rationel", "rationele": "rationel", "ratios": "ratios", "ratten": "rat", "rattink": "rattink", "raven": "rav", "ravens": "raven", "ravenstein": "ravenstein", "ravo": "ravo", "ravon": "ravon", "ravotte": "ravot", "ravotten": "ravot", "ravottende": "ravot", "raw": "raw", "raytheon": "raytheon", "razen": "raz", "razend": "razend", "razende": "razend", "razender": "razender", "razernij": "razernij", "rc": "rc", "rcc": "rcc", "rced": "rced", "rcf": "rcf", "rco": "rco", "rcra": "rcra", "rdf": "rdf", "rdg": "rdg", "re": "re", "reactanten": "reactant", "reactie": "reactie", "reactiemengsels": "reactiemengsel", "reacties": "reacties", "reactiesnelheid": "reactiesnel", "reactietemperatuur": "reactietemperatur", "reactivering": "reactiver", "reactor": "reactor", "reactorbuizen": "reactorbuiz", "reactorconcepten": "reactorconcept", "reactordrukvaten": "reactordrukvat", "reactoren": "reactor", "reactorgebouw": "reactorgebouw", "reactorinstallatie": "reactorinstallatie", "reactorinstituut": "reactorinstitut", "reactorkern": "reactorkern", "reactorkunde": "reactorkund", "reactors": "reactor", "reactorstraat": "reactorstrat", "reactorvat": "reactorvat", "reageerbuisproeven": "reageerbuisproev", "reageerde": "reageerd", "reageerden": "reageerd", "reageert": "reageert", "reagens": "reagen", "reageren": "reager", "reagerende": "reager", "real": "real", "realisatie": "realisatie", "realisatiedatum": "realisatiedatum", "realiseerbaarheid": "realiser", "realiseerbare": "realiser", "realiseerde": "realiseerd", "realiseert": "realiseert", "realiseren": "realiser", "realisering": "realiser", "realist": "realist", "realistisch": "realistisch", "realistische": "realistisch", "reality": "reality", "reasonable": "reasonabl", "reasonably": "reasonably", "reb": "reb", "rebag": "rebag", "reboiler": "reboiler", "rebound": "rebound", "rebus": "rebus", "rec": "rec", "recam": "recam", "recarton": "recarton", "recensente": "recensent", "recent": "recent", "recente": "recent", "recentelijk": "recent", "recentere": "recenter", "receptie": "receptie", "receptiedag": "receptiedag", "recepties": "recepties", "receptoren": "receptor", "recessie": "recessie", "recetor": "recetor", "recherche": "recherch", "rechercheschool": "rechercheschol", "recht": "recht", "rècht": "rècht", "rechtbank": "rechtbank", "rechtbanken": "rechtbank", "rechtbankzitting": "rechtbankzit", "rechte": "recht", "rechtelijk": "rechtelijk", "rechten": "recht", "rechter": "rechter", "rechteren": "rechter", "rechterlijk": "rechter", "rechters": "rechter", "rechtgezet": "rechtgezet", "rechthoekig": "rechthoek", "rechthoekige": "rechthoek", "rechtmatig": "rechtmat", "rechtmatigheid": "rechtmat", "rechts": "recht", "rechtsaspecten": "rechtsaspect", "rechtsbedrijf": "rechtsbedrijf", "rechtschapen": "rechtschap", "rechtscollege": "rechtscolleg", "rechtsgebied": "rechtsgebied", "rechtsgebieden": "rechtsgebied", "rechtsgeldigheid": "rechtsgeld", "rechtsgeoriënteerde": "rechtsgeorienteerd", "rechtshalve": "rechtshalv", "rechtshandhaving": "rechtshandhav", "rechtsongelijkheid": "rechtsong", "rechtsonzekerheid": "rechtsonzeker", "rechtsorde": "rechtsord", "rechtspraak": "rechtsprak", "rechtspraktijk": "rechtspraktijk", "rechtstreeks": "rechtstrek", "rechtstreekse": "rechtstrek", "rechtsuitspraak": "rechtsuitsprak", "rechtswinkels": "rechtswinkel", "rechtszaak": "rechtszak", "rechtszaal": "rechtszal", "rechtszaken": "rechtszak", "rechtvaardig": "rechtvaard", "rechtvaardige": "rechtvaard", "rechtvaardiger": "rechtvaardiger", "rechtvaardigheid": "rechtvaard", "rechtvaardigheidsbeginsel": "rechtvaardigheidsbeginsel", "rechtvaardiging": "rechtvaard", "recirculatie": "recirculatie", "recirculeert": "recirculeert", "reclamatie": "reclamatie", "reclamation": "reclamation", "reclame": "reclam", "reclamebureau": "reclamebureau", "reclamecampagne": "reclamecampagn", "reclamecampagnes": "reclamecampagnes", "reclamecode": "reclamecod", "reclamecodecommissie": "reclamecodecommissie", "reclamedrukwerk": "reclamedrukwerk", "reclameplaten": "reclameplat", "reclames": "reclames", "reclamesector": "reclamesector", "reclamevluchten": "reclamevlucht", "reclamezinsnede": "reclamezinsned", "reclamezinsneden": "reclamezinsned", "recom": "recom", "recombinant": "recombinant", "recombinatie": "recombinatie", "recommandatie": "recommandatie", "recommended": "recommended", "reconstructie": "reconstructie", "reconversie": "reconversie", "record": "record", "recordaantal": "recordaantal", "recordbedrag": "recordbedrag", "recordhoeveelheid": "recordhoevel", "recordhoogte": "recordhoogt", "recordjaar": "recordjar", "records": "record", "recordtempo": "recordtempo", "recordvraag": "recordvrag", "recordwinst": "recordwinst", "recordwinsten": "recordwinst", "recovery": "recovery", "recreanten": "recreant", "recreatie": "recreatie", "recreatiebehoefte": "recreatiebehoeft", "recreatiegebied": "recreatiegebied", "recreatiegebieden": "recreatiegebied", "recreatiemogelijkheden": "recreatiemog", "recreatiepark": "recreatiepark", "recreatieplan": "recreatieplan", "recreatieprojecten": "recreatieproject", "recreatieschap": "recreatieschap", "recreatieschepen": "recreatieschep", "recreatievaart": "recreatievaart", "recreatieve": "recreatiev", "recreatiewoning": "recreatiewon", "recreatiewoningen": "recreatiewon", "recreëren": "recrer", "rectificatie": "rectificatie", "recuperatie": "recuperatie", "recuperatieve": "recuperatiev", "recycal": "recycal", "recyclables": "recyclables", "recyclage": "recyclag", "recycle": "recycl", "recyclebaar": "recycle", "recyclebare": "recycle", "recyclebedrijf": "recyclebedrijf", "recycled": "recycled", "recycleerbare": "recycler", "recyclen": "recycl", "recycler": "recycler", "recyclers": "recycler", "recyclerzak": "recyclerzak", "recyclerzakken": "recyclerzak", "recyclet": "recyclet", "recycling": "recycl", "recyclingbedrijf": "recyclingbedrijf", "recyclingbedrijven": "recyclingbedrijv", "recyclingbeton": "recyclingbeton", "recyclingcentrum": "recyclingcentrum", "recyclingcontract": "recyclingcontract", "recyclingfabriek": "recyclingfabriek", "recyclingfolder": "recyclingfolder", "recyclingindustrie": "recyclingindustrie", "recyclinginstallatie": "recyclinginstallatie", "recyclingmaatregelen": "recyclingmaatregel", "recyclingmarkt": "recyclingmarkt", "recyclingmateriaal": "recyclingmateriaal", "recyclingmethoden": "recyclingmethod", "recyclingniveau": "recyclingniveau", "recyclingnormen": "recyclingnorm", "recyclingopties": "recyclingopties", "recyclingperspectieven": "recyclingperspectiev", "recyclingplan": "recyclingplan", "recyclingprijs": "recyclingprijs", "recyclingprodukten": "recyclingprodukt", "recyclingproduktielijn": "recyclingproduktielijn", "recyclingprogramma": "recyclingprogramma", "recyclingrubber": "recyclingrubber", "recyclingsbedrijf": "recyclingsbedrijf", "recyclingsbedrijven": "recyclingsbedrijv", "recyclingscapaciteit": "recyclingscapaciteit", "recyclingscontract": "recyclingscontract", "recyclingsfabriek": "recyclingsfabriek", "recyclingsinstallatie": "recyclingsinstallatie", "recyclingsmaterialen": "recyclingsmaterial", "recyclingsmethode": "recyclingsmethod", "recyclingsmethoden": "recyclingsmethod", "recyclingsmogelijkheden": "recyclingsmog", "recyclingsondernemingen": "recyclingsondernem", "recyclingspercentage": "recyclingspercentag", "recyclingspercentages": "recyclingspercentages", "recyclingsproces": "recyclingsproces", "recyclingsysteem": "recyclingsystem", "recyclingsystemen": "recyclingsystem", "recyclingtechnieken": "recyclingtechniek", "recyclingtechnologie": "recyclingtechnologie", "recyclingwet": "recyclingwet", "red": "red", "redacteur": "redacteur", "redactie": "redactie", "redakteur": "redakteur", "reddeloos": "reddelos", "redden": "red", "redding": "redding", "reddingsboten": "reddingsbot", "rede": "red", "redelijk": "redelijk", "redelijke": "redelijk", "redelijker": "redelijker", "redelijkerwijs": "redelijkerwijs", "redelijkheid": "redelijk", "redelijkheidsnorm": "redelijkheidsnorm", "reden": "red", "redenaar": "redenar", "redeneer": "redener", "redeneerde": "redeneerd", "redeneert": "redeneert", "redenen": "reden", "redeneren": "redener", "redenering": "redener", "redeneringen": "redener", "redentjes": "redentjes", "reder": "reder", "rederij": "rederij", "rederijen": "rederij", "redetwisten": "redetwist", "redevoeringen": "redevoer", "redi": "redi", "redland": "redland", "redt": "redt", "reduce": "reduc", "reduced": "reduced", "reduceer": "reducer", "reduceerde": "reduceerd", "reduceert": "reduceert", "reduceren": "reducer", "reducering": "reducer", "reducing": "reduc", "reductie": "reductie", "reductiedoelstelling": "reductiedoelstell", "reductiekatalysator": "reductiekatalysator", "reductiemogelijkheden": "reductiemog", "reductiepercentage": "reductiepercentag", "reductieplan": "reductieplan", "reductiepotentiaal": "reductiepotentiaal", "reductieproces": "reductieproces", "reductieprogramma": "reductieprogramma", "reducties": "reducties", "reduction": "reduction", "reductions": "reduction", "reductor": "reductor", "redwitz": "redwitz", "ree": "ree", "reed": "red", "reeds": "red", "reëel": "reeel", "reeën": "reeen", "reeënberg": "reeenberg", "reef": "ref", "reehorst": "reehorst", "reek": "rek", "reeks": "rek", "reële": "rel", "reëler": "reeler", "reepjes": "reepjes", "rees": "res", "reet": "ret", "reeuws": "reeuw", "referendum": "referendum", "referentie": "referentie", "referentiejaar": "referentiejar", "referentiejaren": "referentiejar", "referentiekader": "referentiekader", "referentiemethode": "referentiemethod", "referentienummer": "referentienummer", "referentieprijs": "referentieprijs", "referentieprojecten": "referentieproject", "referentiescenario": "referentiescenario", "referentiewaarde": "referentiewaard", "referentiewaarden": "referentiewaard", "refill": "refill", "refiom": "refiom", "reflecteert": "reflecteert", "reflecteren": "reflecter", "reflux": "reflux", "reformulated": "reformulated", "refrigeration": "refrigeration", "refsa": "refsa", "refuse": "refus", "regan": "regan", "regeerakkoord": "regeerakkoord", "regeerde": "regeerd", "regel": "regel", "regelaar": "regelar", "regelbaar": "regel", "regelbaarheid": "regel", "regelelektronica": "regelelektronica", "regelen": "regel", "regelend": "regel", "regelgevende": "regelgev", "regelgever": "regelgever", "regelgevers": "regelgever", "regelgeving": "regelgev", "regelgevingen": "regelgev", "regelgevings": "regelgev", "regelgevingslast": "regelgevingslast", "regeling": "regel", "regelingen": "regel", "regelkamer": "regelkamer", "regelmaat": "regelmat", "regelmatig": "regelmat", "regelmatige": "regelmat", "regelmatiger": "regelmatiger", "regeln": "regeln", "regelrecht": "regelrecht", "regels": "regel", "regelsysteem": "regelsystem", "regelt": "regelt", "regeltechniek": "regeltechniek", "regeltjes": "regeltjes", "regelzaal": "regelzal", "regen": "reg", "regenachtige": "regenacht", "regenboogden": "regenboogd", "regenbui": "regenbui", "regenbuien": "regenbui", "regende": "regend", "regenden": "regend", "regenen": "regen", "regenende": "regen", "regeneratie": "regeneratie", "regeneratief": "regeneratief", "regeneratieve": "regeneratiev", "regenereert": "regenereert", "regenereren": "regenerer", "regenhemel": "regenhemel", "regenloos": "regenlos", "regenluchten": "regenlucht", "regenmantel": "regenmantel", "regenmist": "regenmist", "regenmoesson": "regenmoesson", "regennatte": "regennat", "regenruisen": "regenruis", "regenruisende": "regenruis", "regens": "regen", "regensburg": "regensburg", "regenstriemen": "regenstriem", "regent": "regent", "regentes": "regentes", "regentijd": "regentijd", "regenval": "regenval", "regenwater": "regenwater", "regenwaterafvoer": "regenwaterafvoer", "regenweer": "regenwer", "regenwind": "regenwind", "regenwinter": "regenwinter", "regenwolken": "regenwolk", "regenwormen": "regenworm", "regenwoud": "regenwoud", "regenwouden": "regenwoud", "regering": "reger", "regeringen": "reger", "regerings": "reger", "regeringsbeleid": "regeringsbeleid", "regeringscoalitie": "regeringscoalitie", "regeringscôterie": "regeringscôterie", "regeringsdelegaties": "regeringsdelegaties", "regeringsfracties": "regeringsfracties", "regeringsgebonden": "regeringsgebond", "regeringsgebouwen": "regeringsgebouw", "regeringsgezinde": "regeringsgezind", "regeringskast": "regeringskast", "regeringsleiders": "regeringsleider", "regeringsniveau": "regeringsniveau", "regeringspartij": "regeringspartij", "regeringspartijen": "regeringspartij", "regeringsperiode": "regeringsperiod", "regeringsstandpunt": "regeringsstandpunt", "regge": "regg", "regie": "regie", "regienota": "regienota", "regierol": "regierol", "regime": "regim", "regio": "regio", "regiobestuur": "regiobestur", "regiogrenzen": "regiogrenz", "regionaal": "regional", "regional": "regional", "regionale": "regional", "regionaler": "regionaler", "regionalisatie": "regionalisatie", "regionalisering": "regionaliser", "regionalisme": "regionalism", "regionele": "regionel", "regiopolitie": "regiopolitie", "regioraad": "regiorad", "regis": "regis", "register": "register", "registeraccountants": "registeraccountant", "registers": "register", "registratie": "registratie", "registratieplicht": "registratieplicht", "registratieprocedures": "registratieprocedures", "registratieprogramma": "registratieprogramma", "registratiepunt": "registratiepunt", "registraties": "registraties", "registratiesysteem": "registratiesystem", "registratieverplichting": "registratieverplicht", "registratieverplichtingen": "registratieverplicht", "registreerbare": "registrer", "registreerde": "registreerd", "registreert": "registreert", "registreren": "registrer", "reglementaire": "reglementair", "regranulaat": "regranulat", "regranulaten": "regranulat", "regressie": "regressie", "regtering": "regter", "regtuijt": "regtuijt", "regulatie": "regulatie", "regulatiefuncties": "regulatiefuncties", "regulatory": "regulatory", "reguleert": "reguleert", "reguleren": "reguler", "regulerend": "reguler", "regulerende": "reguler", "regulering": "reguler", "regulier": "regulier", "reguliere": "regulier", "rehabilitatie": "rehabilitatie", "rehabiliteren": "rehabiliter", "reiger": "reiger", "reigerbroedplaatsen": "reigerbroedplaats", "reigers": "reiger", "reijenga": "reijenga", "reijnders": "reijnder", "reikarmde": "reikarmd", "reiken": "reik", "reikhalsde": "reikhalsd", "reikt": "reikt", "reikte": "reikt", "reikwijdte": "reikwijdt", "reimerswaal": "reimerswal", "rein": "rein", "reincultures": "reincultures", "reinders": "reinder", "reine": "rein", "reiner": "reiner", "reiners": "reiner", "reinheid": "reinheid", "reinigbare": "reinig", "reinigde": "reinigd", "reinigen": "reinig", "reinigende": "reinig", "reiniger": "reiniger", "reiniging": "reinig", "reinigings": "reinig", "reinigingsaanhangers": "reinigingsaanhanger", "reinigingsambtenaren": "reinigingsambtenar", "reinigingsauto": "reinigingsauto", "reinigingsbaden": "reinigingsbad", "reinigingsdienst": "reinigingsdienst", "reinigingsdiensten": "reinigingsdienst", "reinigingsinstallatie": "reinigingsinstallatie", "reinigingsinstallaties": "reinigingsinstallaties", "reinigingsmachines": "reinigingsmachines", "reinigingsmechanisme": "reinigingsmechanism", "reinigingsmethoden": "reinigingsmethod", "reinigingsmiddel": "reinigingsmiddel", "reinigingsmiddelen": "reinigingsmiddel", "reinigingsprocedé": "reinigingsproced", "reinigingsproces": "reinigingsproces", "reinigingsprocessen": "reinigingsprocess", "reinigingsrendement": "reinigingsrendement", "reinigingsstap": "reinigingsstap", "reinigingsstappen": "reinigingsstapp", "reinigingssysteem": "reinigingssystem", "reinigingssystemen": "reinigingssystem", "reinigingstechniek": "reinigingstechniek", "reinigingstechnieken": "reinigingstechniek", "reinigingswater": "reinigingswater", "reinigt": "reinigt", "reinwater": "reinwater", "reis": "reis", "reisbureau": "reisbureau", "reisde": "reisd", "reisden": "reisd", "reisduur": "reisdur", "reisgegevens": "reisgegeven", "reisinformatie": "reisinformatie", "reisinformatiesysteem": "reisinformatiesystem", "reisje": "reisj", "reiskosten": "reiskost", "reiskostenforfait": "reiskostenforfait", "reist": "reist", "reistijd": "reistijd", "reistijden": "reistijd", "reistoilet": "reistoilet", "reitsma": "reitsma", "reizen": "reiz", "reizigers": "reiziger", "rek": "rek", "rekels": "rekel", "reken": "rek", "rekende": "rekend", "rekenen": "reken", "rekenhof": "rekenhof", "rekening": "reken", "rekeningen": "reken", "rekeningrijden": "rekeningrijd", "rekeninstrument": "rekeninstrument", "rekenkamer": "rekenkamer", "rekenkundig": "rekenkund", "rekenmethode": "rekenmethod", "rekenmodel": "rekenmodel", "rekenmodellen": "rekenmodell", "rekenprogramma": "rekenprogramma", "rekenschap": "rekenschap", "rekent": "rekent", "rekentijd": "rekentijd", "rekenvoorbeeld": "rekenvoorbeeld", "rekken": "rek", "rekkend": "rekkend", "reko": "reko", "rekte": "rekt", "rekultivace": "rekultivac", "rekwikkelfolie": "rekwikkelfolie", "rel": "rel", "relatie": "relatie", "relatief": "relatief", "relatienotagebied": "relatienotagebied", "relaties": "relaties", "relatieve": "relatiev", "relations": "relation", "relative": "relativ", "release": "releas", "releases": "releases", "relevant": "relevant", "relevante": "relevant", "relevantie": "relevantie", "reliëf": "relief", "religietjes": "religietjes", "religieus": "religieus", "relining": "relin", "rellen": "rell", "rem": "rem", "rematt": "rematt", "remazol": "remazol", "rembrandttower": "rembrandttower", "remkes": "remkes", "remmen": "remm", "remmend": "remmend", "remmenterrein": "remmenterrein", "remmers": "remmer", "remote": "remot", "remu": "remu", "ren": "ren", "renaissance": "renaissanc", "renault": "renault", "rendabel": "rendabel", "rendabele": "rendabel", "rendabeler": "rendabeler", "rendabiliteit": "rendabiliteit", "rende": "rend", "rendeert": "rendeert", "rendement": "rendement", "rendementen": "rendement", "rendementsgasketels": "rendementsgasketel", "rendementspolis": "rendementspolis", "rendementsproblemen": "rendementsproblem", "rendementsverbetering": "rendementsverbeter", "rendementsverbeteringen": "rendementsverbeter", "renderen": "render", "renderende": "render", "rendez": "rendez", "rendieren": "rendier", "rendierteelt": "rendierteelt", "rendiervlees": "rendiervles", "rene": "ren", "renewable": "renewabl", "renko": "renko", "renkumse": "renkum", "rennen": "renn", "rennes": "rennes", "reno": "reno", "renovatie": "renovatie", "renovatieadviezen": "renovatieadviez", "renovatieplan": "renovatieplan", "renovatieproces": "renovatieproces", "renovatiewerken": "renovatiewerk", "renoveren": "renover", "rentabiliteit": "rentabiliteit", "rentabiliteitscriterium": "rentabiliteitscriterium", "rente": "rent", "rentec": "rentec", "renteopbrengst": "renteopbrengst", "rentepercentage": "rentepercentag", "rentestand": "rentestand", "renteverlies": "renteverlies", "rentevoeten": "rentevoet", "rentevoordeel": "rentevoordel", "rentmeester": "rentmeester", "reorganisatie": "reorganisatie", "reorganisaties": "reorganisaties", "reorganiseren": "reorganiser", "reparatie": "reparatie", "reparaties": "reparaties", "repareerbaarheid": "reparer", "repareerbare": "reparer", "repareert": "repareert", "repareren": "reparer", "repetities": "repetities", "repetitor": "repetitor", "repliek": "repliek", "repo": "repo", "report": "report", "reportable": "reportabl", "reporting": "report", "reppen": "repp", "representatief": "representatief", "representatieve": "representatiev", "representativiteit": "representativiteit", "reproduceerbaarheid": "reproducer", "reproduktieremming": "reproduktieremm", "repte": "rept", "repten": "rept", "reptielen": "reptiel", "reptielendeskundige": "reptielendeskund", "republiek": "republiek", "republieken": "republiek", "republikeinse": "republikein", "reputatie": "reputatie", "requirements": "requirement", "research": "research", "researchlaboratorium": "researchlaboratorium", "reservaat": "reservat", "reservaatsgebied": "reservaatsgebied", "reservaatsgebieden": "reservaatsgebied", "reservaten": "reservat", "reserve": "reserv", "reservebrandstof": "reservebrandstof", "reserveert": "reserveert", "reservegebied": "reservegebied", "reservelocatie": "reservelocatie", "reserveonderdelen": "reserveonderdel", "reserveren": "reserver", "reservering": "reserver", "reserveringen": "reserver", "reserves": "reserves", "reservestoffen": "reservestoff", "reservoir": "reservoir", "reservoirs": "reservoir", "resident": "resident", "residentie": "residentie", "residentsvrouw": "residentsvrouw", "residu": "residu", "residuen": "residuen", "residustromen": "residustrom", "resignatie": "resignatie", "resina": "resina", "resins": "resin", "resistent": "resistent", "resistente": "resistent", "resistentie": "resistentie", "resistoflex": "resistoflex", "resolutie": "resolutie", "resonator": "resonator", "resorteerd": "resorteerd", "resorts": "resort", "resource": "resourc", "resources": "resources", "resp": "resp", "respect": "respect", "respecteren": "respecter", "respectievelijk": "respectiev", "respectievelijke": "respectiev", "respijt": "respijt", "respirabel": "respirabel", "respiratiemeter": "respiratiemeter", "respondenten": "respondent", "respons": "respon", "response": "respon", "responsible": "responsibl", "resposible": "resposibl", "ressources": "ressources", "rest": "rest", "restafval": "restafval", "restant": "restant", "restanten": "restant", "restaurant": "restaurant", "restaurants": "restaurant", "restauratie": "restauratie", "restauratieactiviteiten": "restauratieactiviteit", "restauratieplan": "restauratieplan", "restbedrag": "restbedrag", "resteert": "resteert", "resten": "rest", "resteren": "rester", "resterende": "rester", "restgas": "restgas", "restmaterialen": "restmaterial", "restmilieuvraagstukken": "restmilieuvraagstuk", "restprodukt": "restprodukt", "restprodukten": "restprodukt", "restricties": "restricties", "restrictieve": "restrictiev", "restructuring": "restructur", "reststof": "reststof", "reststoffen": "reststoff", "reststoffenbergingen": "reststoffenberg", "reststoffenbeurs": "reststoffenbeur", "reststoffenonderzoek": "reststoffenonderzoek", "reststromen": "reststrom", "reststroom": "reststrom", "restte": "rest", "restvervuiling": "restvervuil", "restvochtgehalte": "restvochtgehalt", "restwarmte": "restwarmt", "resulaten": "resulat", "resultaat": "resultat", "resultaatbeloning": "resultaatbelon", "resultaatgarantie": "resultaatgarantie", "resultaatgericht": "resultaatgericht", "resultaatverbetering": "resultaatverbeter", "resultaten": "resultat", "resulteerde": "resulteerd", "resulteert": "resulteert", "resulteren": "resulter", "resulterend": "resulter", "resulterende": "resulter", "results": "result", "retailers": "retailer", "rete": "ret", "rethmann": "rethmann", "réticule": "reticul", "retour": "retour", "retourconcept": "retourconcept", "retourette": "retouret", "retourinname": "retourinnam", "retourpremie": "retourpremie", "retourshop": "retourshop", "retoursysteem": "retoursystem", "retourverpakking": "retourverpak", "return": "return", "reuk": "reuk", "reukloze": "reukloz", "reukneutrale": "reukneutral", "reünie": "reunie", "reus": "reus", "reusachtig": "reusacht", "reusachtige": "reusacht", "reusachtiger": "reusachtiger", "reusachtigheid": "reusacht", "reusel": "reusel", "reuze": "reuz", "reuzebezems": "reuzebezem", "reuzegroot": "reuzegrot", "reuzehaai": "reuzehaai", "reuzehaaien": "reuzehaai", "reuzehoofd": "reuzehoofd", "reuzenalgen": "reuzenalg", "reuzenlianen": "reuzenlian", "reuzenmuis": "reuzenmuis", "reuzenschildpadden": "reuzenschildpad", "reuzenvarens": "reuzenvaren", "reuzesmarten": "reuzesmart", "reuzeweemoedigheden": "reuzeweemoed", "reuzewolken": "reuzewolk", "reuzeworm": "reuzeworm", "reuzig": "reuzig", "reuzige": "reuzig", "revanche": "revanch", "reveil": "reveil", "revelatie": "revelatie", "revelaties": "revelaties", "reverentie": "reverentie", "revers": "rever", "reversing": "revers", "review": "review", "revisie": "revisie", "revisievergunning": "revisievergunn", "revisievergunningen": "revisievergunn", "revolutie": "revolutie", "revolutionair": "revolutionair", "revolver": "revolver", "revolvers": "revolver", "rez": "rez", "rezen": "rez", "rezes": "rezes", "rfg": "rfg", "rgd": "rgd", "rheden": "rheden", "rhein": "rhein", "rheinberg": "rheinberg", "rheingold": "rheingold", "rhenen": "rhen", "rhinoceros": "rhinoceros", "rhizopus": "rhizopus", "rhône": "rhône", "rhoon": "rhon", "rhythme": "rhythm", "rhythmisch": "rhythmisch", "rhythmische": "rhythmisch", "rhythmischer": "rhythmischer", "ria": "ria", "riba": "riba", "ribbed": "ribbed", "ribben": "ribb", "ribstukken": "ribstuk", "rica": "rica", "rich": "rich", "richard": "richard", "richelieu": "richelieu", "richt": "richt", "richtbedrag": "richtbedrag", "richten": "richt", "richtende": "richtend", "richter": "richter", "richting": "richting", "richtingen": "richting", "richtinggevend": "richtinggev", "richtlijn": "richtlijn", "richtlijnen": "richtlijn", "richtte": "richt", "richtten": "richt", "rico": "rico", "ridderkerk": "ridderkerk", "ridderorden": "ridderord", "ridders": "ridder", "ridge": "ridg", "ridicule": "ridicul", "riding": "riding", "riedel": "riedel", "riek": "riek", "riekende": "riekend", "riel": "riel", "rien": "rien", "rientje": "rientj", "riep": "riep", "riepen": "riep", "ries": "ries", "riessen": "riess", "riet": "riet", "rietbedden": "rietbed", "rieten": "riet", "rietfilter": "rietfilter", "rietkragen": "rietkrag", "rietlanden": "rietland", "rietveld": "rietveld", "rietvelden": "rietveld", "rif": "rif", "riffen": "riff", "rigide": "rigid", "rigoureus": "rigoureus", "rigoureuze": "rigoureuz", "rij": "rij", "rijafstand": "rijafstand", "rijbaan": "rijban", "rijd": "rijd", "rijden": "rijd", "rijdend": "rijdend", "rijdende": "rijdend", "rijders": "rijder", "rijdt": "rijdt", "rijen": "rij", "rijgedrag": "rijgedrag", "rijk": "rijk", "rijkdom": "rijkdom", "rijkdommen": "rijkdomm", "rijke": "rijk", "rijkelijk": "rijkelijk", "rijkelui": "rijkelui", "rijker": "rijker", "rijkere": "rijker", "rijks": "rijk", "rijksadviesorganen": "rijksadviesorgan", "rijksbeleid": "rijksbeleid", "rijksdaalders": "rijksdaalder", "rijksdag": "rijksdag", "rijksdienst": "rijksdienst", "rijksdiensten": "rijksdienst", "rijksgebouwen": "rijksgebouw", "rijksgebouwendienst": "rijksgebouwendienst", "rijksgeld": "rijksgeld", "rijksgelden": "rijksgeld", "rijkshogeschool": "rijkshogeschol", "rijksinspectie": "rijksinspectie", "rijksinstituten": "rijksinstitut", "rijksinstituut": "rijksinstitut", "rijksoverheid": "rijksover", "rijksplanologische": "rijksplanologisch", "rijksprijs": "rijksprijs", "rijkssubsidies": "rijkssubsidies", "rijkstaken": "rijkstak", "rijkste": "rijkst", "rijksuniversiteit": "rijksuniversiteit", "rijksverkeersinspectie": "rijksverkeersinspectie", "rijksverplichtingen": "rijksverplicht", "rijksvoorlichtingsdienst": "rijksvoorlichtingsdienst", "rijkswacht": "rijkswacht", "rijkswateren": "rijkswater", "rijkswaterstaat": "rijkswaterstat", "rijksweg": "rijksweg", "rijkswegen": "rijksweg", "rijkszijde": "rijkszijd", "rijlaarzen": "rijlaarz", "rijmen": "rijm", "rijn": "rijn", "rijngebied": "rijngebied", "rijnhal": "rijnhal", "rijnkanaal": "rijnkanal", "rijnland": "rijnland", "rijnmond": "rijnmond", "rijnmondgebied": "rijnmondgebied", "rijnsoever": "rijnsoever", "rijnwater": "rijnwater", "rijp": "rijp", "rijpe": "rijp", "rijpende": "rijpend", "rijpere": "rijper", "rijping": "rijping", "rijpvat": "rijpvat", "rijrichting": "rijricht", "rijsenhout": "rijsenhout", "rijsnelheid": "rijsnel", "rijst": "rijst", "rijstebrij": "rijstebrij", "rijstlunch": "rijstlunch", "rijstroken": "rijstrok", "rijstrook": "rijstrok", "rijsttafel": "rijsttafel", "rijsttafels": "rijsttafel", "rijstvelden": "rijstveld", "rijswijk": "rijswijk", "rijtje": "rijtj", "rijtoer": "rijtoer", "rijtuig": "rijtuig", "rijtuigen": "rijtuig", "rijtuigje": "rijtuigj", "rijv": "rijv", "rijweg": "rijweg", "rijwielen": "rijwiel", "rijwielpaden": "rijwielpad", "rijzen": "rijz", "rikz": "rikz", "ril": "ril", "rilde": "rild", "rilden": "rild", "rillen": "rill", "rillend": "rillend", "rillende": "rillend", "rilling": "rilling", "rillingen": "rilling", "rilt": "rilt", "rimh": "rimh", "rimpeis": "rimpeis", "rimpel": "rimpel", "rimpelig": "rimpel", "rimpelige": "rimpel", "rimpellach": "rimpellach", "rimpels": "rimpel", "rin": "rin", "ring": "ring", "ringband": "ringband", "ringdijk": "ringdijk", "ringen": "ring", "ringgenerator": "ringgenerator", "ringhals": "ringhal", "ringleiding": "ringleid", "ringnet": "ringnet", "ringvej": "ringvej", "ringvinger": "ringvinger", "ringvormige": "ringvorm", "ringweg": "ringweg", "rinkelde": "rinkeld", "rinkelden": "rinkeld", "rinkelend": "rinkel", "rinnooy": "rinnoy", "rinnoy": "rinnoy", "rio": "rio", "riolen": "riol", "riolering": "rioler", "rioleringen": "rioler", "rioleringmarkt": "rioleringmarkt", "rioleringsbuis": "rioleringsbuis", "rioleringsbuizen": "rioleringsbuiz", "rioleringsmarkt": "rioleringsmarkt", "rioleringsnetwerk": "rioleringsnetwerk", "rioleringsopleidingen": "rioleringsopleid", "rioleringsplan": "rioleringsplan", "rioleringsprijs": "rioleringsprijs", "rioleringsproblemen": "rioleringsproblem", "rioleringsprojecten": "rioleringsproject", "rioleringsstelsel": "rioleringsstelsel", "rioleringssysteem": "rioleringssystem", "rioleringszorg": "rioleringszorg", "rioned": "rioned", "riool": "riool", "rioolbelasting": "rioolbelast", "rioolbuis": "rioolbuis", "rioolcapaciteit": "rioolcapaciteit", "rioolheffing": "rioolheff", "rioolheffingen": "rioolheff", "rioolinspectiecamera": "rioolinspectiecamera", "rioolleidingen": "rioolleid", "rioolmanagement": "rioolmanagement", "riooloverstorten": "riooloverstort", "rioolrecht": "rioolrecht", "rioolreiniger": "rioolreiniger", "rioolreinigingsmachines": "rioolreinigingsmachines", "rioolslib": "rioolslib", "rioolstelsel": "rioolstelsel", "rioolstelsels": "rioolstelsel", "rioolsysteem": "rioolsystem", "rioolwater": "rioolwater", "rioolwateranalyse": "rioolwateranalys", "rioolwaterinstallaties": "rioolwaterinstallaties", "rioolwaterzuivering": "rioolwaterzuiver", "rioolwaterzuiveringen": "rioolwaterzuiver", "rioolwaterzuiveringsinstallatie": "rioolwaterzuiveringsinstallatie", "rioolwaterzuiveringsinstallaties": "rioolwaterzuiveringsinstallaties", "riosan": "riosan", "riouwstraat": "riouwstrat", "risc": "risc", "risdalheia": "risdalheia", "rise": "ris", "risico": "risico", "risicoanalyse": "risicoanalys", "risicoanalyses": "risicoanalyses", "risicobeleid": "risicobeleid", "risicobeoordeling": "risicobeoordel", "risicobepalingen": "risicobepal", "risicoberekeningen": "risicobereken", "risicodragend": "risicodrag", "risicoinventarisatie": "risicoinventarisatie", "risicomateriaal": "risicomateriaal", "risiconiveau": "risiconiveau", "risiconiveaus": "risiconiveaus", "risicoprofiel": "risicoprofiel", "risicovolle": "risicovoll", "risk": "risk", "riskant": "riskant", "riskeren": "risker", "risks": "risk", "risky": "risky", "risqueert": "risqueert", "rit": "rit", "rite": "rit", "ritgegevens": "ritgegeven", "ritmeester": "ritmeester", "ritselen": "ritsel", "ritselend": "ritsel", "ritt": "ritt", "ritten": "rit", "ritzen": "ritz", "rive": "riv", "river": "river", "riverclear": "riverclear", "rivers": "river", "rivier": "rivier", "rivièra": "rivièra", "rivierbed": "rivierbed", "rivierbeheer": "rivierbeher", "rivierbodem": "rivierbodem", "rivierdijken": "rivierdijk", "rivierdijkverzwaring": "rivierdijkverzwar", "rivieren": "rivier", "rivierenbuurt": "rivierenbuurt", "rivierengebied": "rivierengebied", "rivierenland": "rivierenland", "rivierenwet": "rivierenwet", "rivierlopen": "rivierlop", "rivieroevers": "rivieroever", "rivierproject": "rivierproject", "rivierslib": "rivierslib", "riviertje": "riviertj", "riviervervuilers": "riviervervuiler", "riviervisserij": "riviervisserij", "rivierwater": "rivierwater", "rivm": "rivm", "rivo": "rivo", "rivoli": "rivoli", "riz": "riz", "riza": "riza", "rm": "rm", "rmi": "rmi", "rmk": "rmk", "rmno": "rmno", "road": "road", "roadparcours": "roadparcour", "roadtrains": "roadtrain", "rob": "rob", "robber": "robber", "robbins": "robbin", "robeco": "robeco", "robert": "robert", "robertson": "robertson", "robertus": "robertus", "robinson": "robinson", "robots": "robot", "robuuster": "robuuster", "roc": "roc", "roccade": "roccad", "roche": "roch", "rock": "rock", "rockwool": "rockwol", "rocky": "rocky", "rode": "rod", "roden": "rod", "rodenhuis": "rodenhuis", "rodenticide": "rodenticid", "rodger": "rodger", "roeken": "roek", "roekenesten": "roekenest", "roelfsema": "roelfsema", "roelof": "roelof", "roemaat": "roemat", "roemburg": "roemburg", "roemeense": "roemen", "roemenië": "roemenie", "roemruchtige": "roemrucht", "roemt": "roemt", "roep": "roep", "roepen": "roep", "roeping": "roeping", "roept": "roept", "roer": "roer", "roerde": "roerd", "roerende": "roerend", "roerloos": "roerlos", "roerloze": "roerloz", "roermond": "roermond", "roes": "roes", "roest": "roest", "roestig": "roestig", "roestmijt": "roestmijt", "roestvaststaal": "roestvaststal", "roestvaststalen": "roestvaststal", "roestvorming": "roestvorm", "roestvrij": "roestvrij", "roestvrijstalen": "roestvrijstal", "roet": "roet", "roetdeeltjes": "roetdeeltjes", "roetrokerige": "roetroker", "roetverwijdering": "roetverwijder", "roetzwarte": "roetzwart", "roezemoes": "roezemoes", "roggen": "rogg", "roggenplaat": "roggenplat", "rohm": "rohm", "rohstoff": "rohstoff", "rok": "rok", "roken": "rok", "rokende": "rokend", "rokhemden": "rokhemd", "rokje": "rokj", "rokken": "rok", "rokvest": "rokvest", "rol": "rol", "rolcontainers": "rolcontainer", "rolde": "rold", "rolden": "rold", "rolf": "rolf", "rolgeluid": "rolgeluid", "röling": "roling", "roll": "roll", "rollaag": "rollag", "rollen": "roll", "rollend": "rollend", "rollende": "rollend", "rollenpers": "rollenper", "rollers": "roller", "rolluik": "rolluik", "rolluiken": "rolluik", "rolpa": "rolpa", "rolstoelen": "rolstoel", "rolt": "rolt", "rom": "rom", "roman": "roman", "romancier": "romancier", "romanhelden": "romanheld", "romannetje": "romannetj", "romannetjes": "romannetjes", "romans": "roman", "romanschrijver": "romanschrijver", "rombout": "rombout", "rome": "rom", "ròme": "ròme", "romeinen": "romein", "romeinse": "romein", "romelt": "romelt", "romen": "rom", "rommel": "rommel", "rommelde": "rommeld", "rommeldiners": "rommeldiner", "rommelfamilie": "rommelfamilie", "rommelig": "rommel", "rommelkliek": "rommelkliek", "rommelpartij": "rommelpartij", "rommelse": "rommel", "rommelzooi": "rommelzooi", "romp": "romp", "rompslomp": "rompslomp", "ron": "ron", "ronald": "ronald", "rond": "rond", "rondborstig": "rondborst", "rondde": "rond", "ronddraaien": "ronddraai", "ronddraaiende": "ronddraai", "ronddraait": "ronddraait", "ronddroeg": "ronddroeg", "rondduisteren": "rondduister", "ronde": "rond", "ronden": "rond", "ronder": "ronder", "rondetafelgesprekken": "rondetafelgesprek", "rondeveense": "rondeven", "rondgekeken": "rondgekek", "rondgelopen": "rondgelop", "rondging": "rondging", "rondheid": "rondheid", "ronding": "ronding", "rondjes": "rondjes", "rondkijkende": "rondkijk", "rondkruipen": "rondkruip", "rondliep": "rondliep", "rondloop": "rondlop", "rondom": "rondom", "rondonia": "rondonia", "rondreisje": "rondreisj", "rondt": "rondt", "ronduit": "ronduit", "rondvlogen": "rondvlog", "rondvloot": "rondvlot", "rondweg": "rondweg", "rondziende": "rondziend", "rontberg": "rontberg", "rood": "rod", "roodachtige": "roodacht", "roodgekleurde": "roodgekleurd", "roodlof": "roodlof", "roodvlees": "roodvles", "roodvleesproduktie": "roodvleesproduktie", "roofbouw": "roofbouw", "roofdier": "roofdier", "roofdierdreiging": "roofdierdreig", "roofer": "roofer", "roofvis": "roofvis", "roofvogelnesten": "roofvogelnest", "roofvogels": "roofvogel", "rooimachines": "rooimachines", "rooisystemen": "rooisystem", "rook": "rok", "rookgas": "rookgas", "rookgasafvoeren": "rookgasafvoer", "rookgasbak": "rookgasbak", "rookgascondensator": "rookgascondensator", "rookgascondensor": "rookgascondensor", "rookgascondensors": "rookgascondensor", "rookgasemissie": "rookgasemissie", "rookgasemissies": "rookgasemissies", "rookgasfilters": "rookgasfilter", "rookgasinstallatie": "rookgasinstallatie", "rookgaskatalysatoren": "rookgaskatalysator", "rookgaskleppen": "rookgasklepp", "rookgaskoeling": "rookgaskoel", "rookgasnakoeling": "rookgasnakoel", "rookgasontzwavelingsinstallatie": "rookgasontzwavelingsinstallatie", "rookgasontzwavelingsinstallaties": "rookgasontzwavelingsinstallaties", "rookgasreiniger": "rookgasreiniger", "rookgasreinigers": "rookgasreiniger", "rookgasreiniging": "rookgasrein", "rookgasreinigingsinstallatie": "rookgasreinigingsinstallatie", "rookgasreinigingsinstallaties": "rookgasreinigingsinstallaties", "rookgasreinigingsresidu": "rookgasreinigingsresidu", "rookgasreinigingsresiduen": "rookgasreinigingsresiduen", "rookgasreinigingssystemen": "rookgasreinigingssystem", "rookgassen": "rookgass", "rookgaswassers": "rookgaswasser", "rookgaszuiveringsinstallaties": "rookgaszuiveringsinstallaties", "rookkamer": "rookkamer", "rookkamertje": "rookkamertj", "rookontwikkeling": "rookontwikkel", "rookontzwaveling": "rookontzwavel", "rookte": "rookt", "rookten": "rookt", "rookverbod": "rookverbod", "room": "rom", "roomboterfabriek": "roomboterfabriek", "roomkleurig": "roomkleur", "roompot": "roompot", "rooms": "rom", "roomt": "roomt", "roorda": "roorda", "roos": "ros", "roosendaal": "roosendal", "rooskleurig": "rooskleur", "roosmalen": "roosmal", "rooster": "rooster", "roosteroven": "roosterov", "roosterovens": "roosteroven", "roosters": "rooster", "roosterstaaf": "roosterstaf", "roosterverbranding": "roosterverbrand", "roosterverbrandingsovens": "roosterverbrandingsoven", "roostervloeren": "roostervloer", "roostervloersysteem": "roostervloersystem", "rooymans": "rooyman", "rosa": "rosa", "roscam": "roscam", "rosenmöller": "rosenmoller", "rosep": "rosep", "rosestone": "roseston", "rosetta": "rosetta", "rosmalen": "rosmal", "rosse": "ros", "rossig": "rossig", "rossum": "rossum", "rot": "rot", "rotary": "rotary", "rotatie": "rotatie", "rotatiemechanisme": "rotatiemechanism", "rotaties": "rotaties", "rotblat": "rotblat", "roteb": "roteb", "roterende": "roter", "rotganzen": "rotganz", "rotomoulded": "rotomoulded", "rotonde": "rotond", "rotor": "rotor", "rotorblad": "rotorblad", "rotorbladen": "rotorblad", "rotordiameter": "rotordiameter", "rotoren": "rotor", "rotoroppervlak": "rotoroppervlak", "rotorschaar": "rotorschar", "rotorscharen": "rotorschar", "rots": "rot", "rotsblok": "rotsblok", "rotsen": "rots", "rotslawine": "rotslawin", "rotslawines": "rotslawines", "rotte": "rot", "rottende": "rottend", "rotterdam": "rotterdam", "rotterdammer": "rotterdammer", "rotterdams": "rotterdam", "rotterdamse": "rotterdam", "rotting": "rotting", "rottummeroog": "rottummerog", "rottummerplaat": "rottummerplat", "rouge": "roug", "roundtable": "roundtabl", "roussillon": "roussillon", "route": "rout", "routelijsten": "routelijst", "routeplanning": "routeplann", "routeregistratie": "routeregistratie", "routes": "routes", "routine": "routin", "routti": "routti", "rouw": "rouw", "rover": "rover", "rovers": "rover", "rowland": "rowland", "rowohlt": "rowohlt", "royaal": "royal", "royal": "royal", "royale": "royal", "roze": "roz", "rozekleurtjes": "rozekleurtjes", "rozen": "roz", "rozenbloei": "rozenbloei", "rozenburg": "rozenburg", "rozenkwekers": "rozenkweker", "rozenstraat": "rozenstrat", "rozenstruiken": "rozenstruik", "rozentelers": "rozenteler", "rozig": "rozig", "rozigblanke": "rozigblank", "rozige": "rozig", "rozijnen": "rozijn", "rpd": "rpd", "rpf": "rpf", "rpm": "rpm", "rqa": "rqa", "rrr": "rrr", "rrrr": "rrrr", "rrrrr": "rrrrr", "rs": "rs", "rss": "rss", "rti": "rti", "rts": "rts", "rtss": "rtss", "rtts": "rtts", "ru": "ru", "rubber": "rubber", "rubberafval": "rubberafval", "rubberbasis": "rubberbasis", "rubberboot": "rubberbot", "rubberen": "rubber", "rubberfabriek": "rubberfabriek", "rubbergranulaat": "rubbergranulat", "rubbergruis": "rubbergruis", "rubberindustrie": "rubberindustrie", "rubberplantages": "rubberplantages", "rubberslangen": "rubberslang", "rübenau": "rubenau", "rubrieken": "rubriek", "ruckelshaus": "ruckelshaus", "rudolf": "rudolf", "rue": "rue", "rug": "rug", "rugby": "rugby", "rugdekking": "rugdek", "rügen": "rug", "rügenwasser": "rugenwasser", "ruggegraat": "ruggegrat", "ruggen": "rugg", "rugzak": "rugzak", "ruhr": "ruhr", "ruhrgebied": "ruhrgebied", "ruhrkohle": "ruhrkohl", "ruig": "ruig", "ruigoord": "ruigoord", "ruigten": "ruigt", "ruijten": "ruijt", "ruiken": "ruik", "ruikend": "ruikend", "ruikt": "ruikt", "ruil": "ruil", "ruilen": "ruil", "ruilhandel": "ruilhandel", "ruim": "ruim", "ruimde": "ruimd", "ruimden": "ruimd", "ruime": "ruim", "ruimen": "ruim", "ruimer": "ruimer", "ruimere": "ruimer", "ruimhartig": "ruimhart", "ruimschoots": "ruimschot", "ruimste": "ruimst", "ruimt": "ruimt", "ruimte": "ruimt", "ruimtebehandeling": "ruimtebehandel", "ruimtebehoefte": "ruimtebehoeft", "ruimtebeslag": "ruimtebeslag", "ruimtebesparend": "ruimtebespar", "ruimtegebrek": "ruimtegebrek", "ruimtegebruik": "ruimtegebruik", "ruimtelijk": "ruimtelijk", "ruimtelijke": "ruimtelijk", "ruimten": "ruimt", "ruimteonderzoek": "ruimteonderzoek", "ruimteprobleem": "ruimteproblem", "ruimteproblemen": "ruimteproblem", "ruimtes": "ruimtes", "ruimtestation": "ruimtestation", "ruimtestations": "ruimtestation", "ruimtevaart": "ruimtevaart", "ruimtevaartlaboratorium": "ruimtevaartlaboratorium", "ruimtevaartorganisatie": "ruimtevaartorganisatie", "ruimtevaarttechnieken": "ruimtevaarttechniek", "ruimtevaartuigen": "ruimtevaartu", "ruimteverwarming": "ruimteverwarm", "ruimtewetenschappen": "ruimtewetenschapp", "ruïne": "ruin", "ruïneren": "ruiner", "ruïnes": "ruines", "ruisen": "ruis", "ruisende": "ruisend", "ruising": "ruising", "ruist": "ruist", "ruiste": "ruist", "ruit": "ruit", "ruiten": "ruit", "ruitenbeek": "ruitenbek", "ruiter": "ruiter", "ruiterpaden": "ruiterpad", "ruitgemeente": "ruitgemeent", "ruitje": "ruitj", "ruitvormig": "ruitvorm", "ruizelde": "ruizeld", "ruizelende": "ruizel", "ruk": "ruk", "rukken": "ruk", "rukte": "rukt", "rukten": "rukt", "rulle": "rull", "rumal": "rumal", "rumoerig": "rumoer", "rumoerige": "rumoer", "run": "run", "rund": "rund", "runderen": "runder", "runderfosfaat": "runderfosfat", "rundermest": "rundermest", "runderteelt": "runderteelt", "rundvee": "rundvee", "rundveebedrijven": "rundveebedrijv", "rundveedrijfmest": "rundveedrijfmest", "rundveehouderij": "rundveehouderij", "rundveehouders": "rundveehouder", "rundveesector": "rundveesector", "rundveestallen": "rundveestall", "rundvlees": "rundvles", "runnen": "runn", "rups": "rup", "rupsen": "rups", "rupskranen": "rupskran", "rural": "rural", "rurale": "rural", "rusland": "rusland", "russe": "rus", "russell": "russell", "russen": "russ", "russisch": "russisch", "russische": "russisch", "rust": "rust", "rustbank": "rustbank", "rusten": "rust", "rustgebieden": "rustgebied", "rustig": "rustig", "rustige": "rustig", "rustiger": "rustiger", "rustigjes": "rustigjes", "rustigweg": "rustigweg", "rustist": "rustist", "rustplaats": "rustplat", "rustte": "rust", "rutland": "rutland", "rutte": "rut", "rutten": "rut", "ruud": "rud", "ruurlo": "ruurlo", "ruvvenaer": "ruvvenaer", "ruw": "ruw", "ruwbeid": "ruwbeid", "ruwe": "ruw", "ruwer": "ruwer", "ruwheid": "ruwheid", "ruwijzer": "ruwijzer", "ruwvoer": "ruwvoer", "ruwweg": "ruwweg", "ruyiten": "ruyit", "ruyslaan": "ruyslan", "ruyterlaan": "ruyterlan", "ruyvenaer": "ruyvenaer", "ruyvenaers": "ruyvenaer", "ruzie": "ruzie", "ruziën": "ruzien", "rv": "rv", "rvs": "rvs", "rvv": "rvv", "rw": "rw", "rwa": "rwa", "rwe": "rwe", "rws": "rws", "rwzi": "rwzi", "rypma": "rypma", "s": "s", "sa": "sa", "saab": "sab", "saai": "saai", "saak": "sak", "saar": "sar", "saarberg": "saarberg", "saarbrücken": "saarbruck", "saarbrücker": "saarbrucker", "saarland": "saarland", "saarlandse": "saarland", "saba": "saba", "sabel": "sabel", "sabels": "sabel", "sabinadijk": "sabinadijk", "sabine": "sabin", "sabotage": "sabotag", "sac": "sac", "sacha": "sacha", "sachsen": "sachs", "sacilor": "sacilor", "sacrum": "sacrum", "saeijs": "saeijs", "saet": "saet", "saetzema": "saetzema", "safa": "safa", "safari": "safari", "safaripark": "safaripark", "safe": "saf", "safety": "safety", "saffiertjes": "saffiertjes", "safiplast": "safiplast", "sahara": "sahara", "saigon": "saigon", "sails": "sail", "saint": "saint", "saken": "sak", "saksen": "saks", "saksisch": "saksisch", "salaam": "salam", "salade": "salad", "salaris": "salaris", "salarissen": "salariss", "salderingsmethode": "salderingsmethod", "saldomethode": "saldomethod", "salland": "salland", "sallandse": "salland", "sally": "sally", "salmonella": "salmonella", "salon": "salon", "salonbeschaving": "salonbeschav", "salondeur": "salondeur", "salonkomedie": "salonkomedie", "salonkwestie": "salonkwestie", "salonmens": "salonmen", "salonmensen": "salonmens", "salons": "salon", "salonstuk": "salonstuk", "salpeterzuur": "salpeterzur", "salt": "salt", "salueerde": "salueerd", "salueerden": "salueerd", "salzburgse": "salzburg", "sambal": "sambal", "sambals": "sambal", "samen": "sam", "samenbindend": "samenbind", "samenbonden": "samenbond", "samengaan": "samengan", "samengaande": "samengaand", "samengebeurlijkheden": "samengebeur", "samengebracht": "samengebracht", "samengeklemd": "samengeklemd", "samengeperst": "samengeperst", "samengeperste": "samengeperst", "samengesteld": "samengesteld", "samengestelde": "samengesteld", "samengetrild": "samengetrild", "samengevat": "samengevat", "samengevoegd": "samengevoegd", "samengevoel": "samengevoel", "samengewerkt": "samengewerkt", "samengewrongen": "samengewrong", "samenhang": "samenhang", "samenhangen": "samenhang", "samenhangend": "samenhang", "samenhangende": "samenhang", "samenhangt": "samenhangt", "samenhielden": "samenhield", "samenhoudt": "samenhoudt", "samenklonteren": "samenklonter", "samenklontering": "samenklonter", "samenkomen": "samenkom", "samenkomst": "samenkomst", "samenkomsten": "samenkomst", "samenkrampten": "samenkrampt", "samenkromp": "samenkromp", "samenleven": "samenlev", "samenleving": "samenlev", "samenlevingen": "samenlev", "samenloop": "samenlop", "samenscholing": "samenschol", "samensmeden": "samensmed", "samensmelten": "samensmelt", "samensmolt": "samensmolt", "samenspel": "samenspel", "samenspraak": "samensprak", "samenstellen": "samenstell", "samenstelling": "samenstell", "samenstellingseisen": "samenstellingseis", "samenstellingswaarde": "samenstellingswaard", "samenstemming": "samenstemm", "samentaste": "samentast", "samenvatting": "samenvat", "samenvattings": "samenvat", "samenvloeien": "samenvloei", "samenvoeging": "samenvoeg", "samenvoegingen": "samenvoeg", "samenwerken": "samenwerk", "samenwerkende": "samenwerk", "samenwerking": "samenwerk", "samenwerkingscontract": "samenwerkingscontract", "samenwerkingsorgaan": "samenwerkingsorgan", "samenwerkingsovereenkomst": "samenwerkingsovereenkomst", "samenwerkingsovereenkomsten": "samenwerkingsovereenkomst", "samenwerkingsproject": "samenwerkingsproject", "samenwerkingsprojecten": "samenwerkingsproject", "samenwerkingsverband": "samenwerkingsverband", "samenwerkingsverbanden": "samenwerkingsverband", "samenwerkingsvorm": "samenwerkingsvorm", "samenwerkingverband": "samenwerkingverband", "samenwerkt": "samenwerkt", "samenwerkten": "samenwerkt", "samenzien": "samenzien", "samenzijn": "samenzijn", "samenzwering": "samenzwer", "samotlor": "samotlor", "samplers": "sampler", "samsom": "samsom", "san": "san", "sanctiemiddelen": "sanctiemiddel", "sancties": "sancties", "sandelhout": "sandelhout", "sanden": "sand", "sandia": "sandia", "sandoz": "sandoz", "sandra": "sandra", "sandwiches": "sandwiches", "saneert": "saneert", "saneren": "saner", "sanering": "saner", "saneringbevel": "saneringbevel", "saneringen": "saner", "sanerings": "saner", "saneringsaanpak": "saneringsaanpak", "saneringsbevel": "saneringsbevel", "saneringscentra": "saneringscentra", "saneringsfonds": "saneringsfond", "saneringsgevallen": "saneringsgevall", "saneringskosten": "saneringskost", "saneringslocatie": "saneringslocatie", "saneringsmaatregelen": "saneringsmaatregel", "saneringsmarkt": "saneringsmarkt", "saneringsonderzoek": "saneringsonderzoek", "saneringsonderzoeken": "saneringsonderzoek", "saneringsonderzoeksbevel": "saneringsonderzoeksbevel", "saneringsoperatie": "saneringsoperatie", "saneringsparagraaf": "saneringsparagraf", "saneringsplan": "saneringsplan", "saneringsplannen": "saneringsplann", "saneringsplicht": "saneringsplicht", "saneringsprocessen": "saneringsprocess", "saneringsprogramma": "saneringsprogramma", "saneringsprojecten": "saneringsproject", "saneringsregeling": "saneringsregel", "saneringsronde": "saneringsrond", "saneringstechnieken": "saneringstechniek", "saneringstechnologie": "saneringstechnologie", "saneringstechnologieën": "saneringstechnologieen", "saneringsurgentie": "saneringsurgentie", "saneringsurgentiesystematiek": "saneringsurgentiesystematiek", "saneringsvarianten": "saneringsvariant", "saneringswerkzaamheden": "saneringswerkzam", "sang": "sang", "sanghvi": "sanghvi", "sanitair": "sanitair", "sanitairreinigingsmiddelen": "sanitairreinigingsmiddel", "sans": "san", "santa": "santa", "santen": "sant", "santer": "santer", "santpoort": "santpoort", "saoedi": "saoedi", "saone": "saon", "sap": "sap", "sappen": "sapp", "sapristi": "sapristi", "sarcasme": "sarcasm", "sardinië": "sardinie", "saro": "saro", "sarong": "sarong", "sas": "sas", "sassenheim": "sassenheim", "satelliet": "satelliet", "satellietbeelden": "satellietbeeld", "satellieten": "satelliet", "satellietfoto": "satellietfoto", "satellite": "satellit", "satijn": "satijn", "satijnen": "satijn", "satzumavaas": "satzumavas", "saus": "saus", "sauterie": "sauterie", "savannah": "savannah", "save": "sav", "savings": "saving", "sba": "sba", "sbb": "sbb", "sbk": "sbk", "sbr": "sbr", "sc": "sc", "scala": "scala", "scalfaro": "scalfaro", "scan": "scan", "scandinavië": "scandinavie", "scandinavische": "scandinavisch", "scania": "scania", "scanmat": "scanmat", "scans": "scan", "scarabee": "scarabee", "scarborough": "scarborough", "scenario": "scenario", "scenarioberekeningen": "scenariobereken", "scène": "scèn", "scènes": "scènes", "scepsis": "scepsis", "scepticisme": "scepticism", "scepticismetje": "scepticismetj", "scepticismetjes": "scepticismetjes", "scepticus": "scepticus", "sceptisch": "sceptisch", "sceptische": "sceptisch", "scg": "scg", "schaadt": "schaadt", "schaafsma": "schaafsma", "schaakbord": "schaakbord", "schaakklok": "schaakklok", "schaal": "schal", "schaaldierverwerkende": "schaaldierverwerk", "schaalgrootte": "schaalgrot", "schaalmodel": "schaalmodel", "schaaltje": "schaaltj", "schaalvergroting": "schaalvergrot", "schaalverkleining": "schaalverklein", "schaam": "scham", "schaamde": "schaamd", "schaamden": "schaamd", "schaamt": "schaamt", "schaamte": "schaamt", "schaap": "schap", "schaapjes": "schaapjes", "schaapjeswit": "schaapjeswit", "schaars": "schar", "schaarse": "schar", "schaarser": "schaarser", "schaarste": "schaarst", "schaart": "schaart", "schaatsbaan": "schaatsban", "schaatsen": "schaats", "schaatsenrijden": "schaatsenrijd", "schacht": "schacht", "schachtbau": "schachtbau", "schachten": "schacht", "schade": "schad", "schadebedrag": "schadebedrag", "schadebeeld": "schadebeeld", "schadebeperking": "schadebeperk", "schadeclaim": "schadeclaim", "schadeclaims": "schadeclaim", "schadelast": "schadelast", "schadelijk": "schadelijk", "schadelijke": "schadelijk", "schadelijker": "schadelijker", "schadelijkheid": "schadelijk", "schadeloos": "schadelos", "schadeloosstelling": "schadeloosstell", "schaden": "schad", "schadepost": "schadepost", "schaderegeling": "schaderegel", "schaderegelingen": "schaderegel", "schades": "schades", "schadevergoeding": "schadevergoed", "schadevergoedingsregeling": "schadevergoedingsregel", "schadeverzekeraars": "schadeverzekerar", "schadeverzekering": "schadeverzeker", "schaduw": "schaduw", "schaduwde": "schaduwd", "schaduwden": "schaduwd", "schaduwduisteringen": "schaduwduister", "schaduwen": "schaduw", "schaduwend": "schaduw", "schaduwende": "schaduw", "schaduwing": "schaduw", "schaduwplekjes": "schaduwplekjes", "schaduwzijden": "schaduwzijd", "schaerbeek": "schaerbek", "schaffen": "schaff", "schaft": "schaft", "schagen": "schag", "schaik": "schaik", "schakeer": "schaker", "schakel": "schakel", "schakelaars": "schakelar", "schakelden": "schakeld", "schakelen": "schakel", "schakelketting": "schakelket", "schakels": "schakel", "schakelt": "schakelt", "schaker": "schaker", "schakeringen": "schaker", "schaling": "schaling", "schamen": "scham", "schamper": "schamper", "schamplicht": "schamplicht", "schamplichten": "schamplicht", "schanda": "schanda", "schandaal": "schandal", "schandaaltjes": "schandaaltjes", "schandalen": "schandal", "schandalig": "schandal", "schandalige": "schandal", "schandaligh": "schandaligh", "schandblaadje": "schandblaadj", "schandblaadjes": "schandblaadjes", "schandblad": "schandblad", "schande": "schand", "schandelijk": "schandelijk", "schanderl": "schanderl", "schandtaal": "schandtal", "schans": "schan", "schap": "schap", "schapen": "schap", "schapenboerderijen": "schapenboerderij", "schapenhouderij": "schapenhouderij", "schapewol": "schapewol", "schappelijker": "schappelijker", "schappen": "schapp", "schapruimte": "schapruimt", "schar": "schar", "scharen": "schar", "scharrel": "scharrel", "scharrelde": "scharreld", "scharrelen": "scharrel", "scharrelvarkenshouders": "scharrelvarkenshouder", "scharrelvarkensvlees": "scharrelvarkensvles", "scharrelvlees": "scharrelvles", "scharsterbrug": "scharsterbrug", "schat": "schat", "schater": "schater", "schaterde": "schaterd", "schateren": "schater", "schaterend": "schater", "schaterlachte": "schaterlacht", "schatkist": "schatkist", "schatte": "schat", "schatten": "schat", "schatting": "schatting", "schattingen": "schatting", "schaumbergbad": "schaumbergbad", "schedel": "schedel", "scheef": "schef", "scheel": "schel", "scheelde": "scheeld", "scheelt": "scheelt", "scheen": "schen", "schéen": "schen", "scheepsafvalstoffen": "scheepsafvalstoff", "scheepsbemanning": "scheepsbemann", "scheepsfinanciering": "scheepsfinancier", "scheepsfinancieringen": "scheepsfinancier", "scheepshuid": "scheepshuid", "scheepsmotoren": "scheepsmotor", "scheepstransporten": "scheepstransport", "scheepsverven": "scheepsverv", "scheept": "scheept", "scheepvaart": "scheepvaart", "scheepvaartinspectie": "scheepvaartinspectie", "scheer": "scher", "scheergestippelde": "scheergestippeld", "scheerwol": "scheerwol", "schei": "schei", "scheidde": "scheid", "scheidden": "scheid", "scheiden": "scheid", "schèiden": "schèid", "scheider": "scheider", "scheiders": "scheider", "scheiding": "scheiding", "scheidings": "scheiding", "scheidingsapparatuur": "scheidingsapparatur", "scheidingsfabriek": "scheidingsfabriek", "scheidingsgraad": "scheidingsgrad", "scheidingsinstallatie": "scheidingsinstallatie", "scheidingsinstallaties": "scheidingsinstallaties", "scheidingsmogelijkheden": "scheidingsmog", "scheidingsprocede": "scheidingsproced", "scheidingsprocédé": "scheidingsproced", "scheidingsprocessen": "scheidingsprocess", "scheidingsrendement": "scheidingsrendement", "scheidingssysteem": "scheidingssystem", "scheidingstechnieken": "scheidingstechniek", "scheidingswarmtewisselaar": "scheidingswarmtewisselar", "scheidslijn": "scheidslijn", "scheidsrechter": "scheidsrechter", "scheidt": "scheidt", "scheikundig": "scheikund", "scheikundige": "scheikund", "scheikundigen": "scheikund", "schel": "schel", "schelde": "scheld", "scheldegebied": "scheldegebied", "schelden": "scheld", "scheldende": "scheldend", "scheldt": "scheldt", "scheldwoord": "scheldwoord", "schele": "schel", "schelen": "schel", "schèlen": "schèl", "schelle": "schell", "scheller": "scheller", "schelletjes": "schelletjes", "schelluinen": "schelluin", "schelp": "schelp", "schelpdier": "schelpdier", "schelpdieren": "schelpdier", "schelpdierverwerkers": "schelpdierverwerker", "schelpen": "schelp", "schelpkade": "schelpkad", "schelpkalk": "schelpkalk", "schelpkalkbranderij": "schelpkalkbranderij", "schelpkalksamenstellingen": "schelpkalksamenstell", "schema": "schema", "scheme": "schem", "schemer": "schemer", "schemerde": "schemerd", "schemerden": "schemerd", "schemeren": "schemer", "schemerende": "schemer", "schemerig": "schemer", "schemering": "schemer", "schemeringen": "schemer", "schemerjaren": "schemerjar", "schemerlicht": "schemerlicht", "schemermist": "schemermist", "schemert": "schemert", "schemerzevend": "schemerzev", "schenden": "schend", "schending": "schending", "schendt": "schendt", "schenen": "schen", "schenk": "schenk", "schenken": "schenk", "schenking": "schenking", "schenste": "schenst", "schepen": "schep", "scheppen": "schepp", "schepper": "schepper", "schepte": "schept", "scheren": "scher", "scherm": "scherm", "schermen": "scherm", "schermer": "schermer", "schermpjes": "schermpjes", "schermwand": "schermwand", "scherp": "scherp", "scherpe": "scherp", "scherpen": "scherp", "scherpenzeel": "scherpenzel", "scherper": "scherper", "scherpere": "scherper", "scherpst": "scherpst", "scherpste": "scherpst", "scherpte": "scherpt", "scherts": "schert", "schertsen": "scherts", "schertsend": "schertsend", "schertsende": "schertsend", "schertste": "schertst", "scherven": "scherv", "schets": "schet", "schetsen": "schets", "schetsend": "schetsend", "schetst": "schetst", "schetste": "schetst", "schetsten": "schetst", "schettermuziek": "schettermuziek", "scheur": "scheur", "scheurde": "scheurd", "scheurden": "scheurd", "scheuren": "scheur", "scheurende": "scheurend", "scheurmorfologie": "scheurmorfologie", "scheuroverbruggende": "scheuroverbrugg", "scheurtjes": "scheurtjes", "scheurwijdte": "scheurwijdt", "scheve": "schev", "scheveningen": "scheven", "scheveningse": "scheven", "schichten": "schicht", "schichtig": "schichtig", "schichtige": "schichtig", "schiedam": "schiedam", "schiep": "schiep", "schiereiland": "schiereiland", "schiermonnikoog": "schiermonnikog", "schiet": "schiet", "schietbanen": "schietban", "schieten": "schiet", "schietende": "schietend", "schietverbod": "schietverbod", "schijf": "schijf", "schijfschieten": "schijfschiet", "schijn": "schijn", "schijnbaar": "schijnbar", "schijndel": "schijndel", "schijnen": "schijn", "schijnjeugd": "schijnjeugd", "schijnkracht": "schijnkracht", "schijnsel": "schijnsel", "schijnsels": "schijnsel", "schijnt": "schijnt", "schijt": "schijt", "schijven": "schijv", "schikken": "schik", "schikkend": "schikkend", "schikkende": "schikkend", "schikking": "schikking", "schikkingsaanbod": "schikkingsaanbod", "schikkingsvoorstel": "schikkingsvoorstel", "schikte": "schikt", "schikten": "schikt", "schild": "schild", "schilder": "schilder", "schilderde": "schilderd", "schilderen": "schilder", "schilderes": "schilderes", "schildergebaar": "schilderge", "schilderij": "schilderij", "schilders": "schilder", "schildersbedrijf": "schildersbedrijf", "schildersbedrijven": "schildersbedrijv", "schildersbranche": "schildersbranch", "schilderwerk": "schilderwerk", "schildklierfunctie": "schildklierfunctie", "schildklierkanker": "schildklierkanker", "schildpad": "schildpad", "schildpadden": "schildpad", "schim": "schim", "schimmel": "schimmel", "schimmelfilter": "schimmelfilter", "schimmels": "schimmel", "schimmelsoort": "schimmelsoort", "schimmelvorming": "schimmelvorm", "schimmelwerend": "schimmelwer", "schimmelziekten": "schimmelziekt", "schimmen": "schimm", "schimmige": "schimmig", "schinnen": "schinn", "schinnerer": "schinnerer", "schip": "schip", "schiphol": "schiphol", "schiphorst": "schiphorst", "schipluiden": "schipluid", "schippersvereniging": "schippersveren", "schippert": "schippert", "schistosomiasis": "schistosomiasis", "schitterde": "schitterd", "schitterden": "schitterd", "schitteren": "schitter", "schitterend": "schitter", "schitterènd": "schitterènd", "schitterende": "schitter", "schitterendste": "schitterendst", "schittering": "schitter", "schitteringen": "schitter", "schitterwaan": "schitterwan", "schleswag": "schleswag", "schleswig": "schleswig", "schliesing": "schliesing", "schmidt": "schmidt", "schmutzige": "schmutzig", "schnabbelt": "schnabbelt", "schneider": "schneider", "schnell": "schnell", "schnug": "schnug", "schoen": "schoen", "schoenen": "schoen", "schoenenindustrie": "schoenenindustrie", "schoenfabriek": "schoenfabriek", "schoenmakers": "schoenmaker", "schoentjes": "schoentjes", "schoenvisie": "schoenvisie", "schoepen": "schoep", "schoepenwiel": "schoepenwiel", "schofferen": "schoffer", "schok": "schok", "schokbrekers": "schokbreker", "schokgolf": "schokgolf", "schokgolven": "schokgolv", "schokken": "schok", "schokkend": "schokkend", "schokkende": "schokkend", "schokker": "schokker", "schokre": "schokr", "schokte": "schokt", "schol": "schol", "schold": "schold", "scholekster": "scholekster", "scholeksters": "scholekster", "scholen": "schol", "scholengemeenschap": "scholengemeenschap", "scholieren": "scholier", "scholing": "scholing", "scholten": "scholt", "scholvangsten": "scholvangst", "schommelde": "schommeld", "schommelgang": "schommelgang", "schommelingen": "schommel", "schommelt": "schommelt", "schone": "schon", "schonen": "schon", "schoner": "schoner", "schonere": "schoner", "schonk": "schonk", "schoof": "schof", "school": "schol", "schoolboeken": "schoolboek", "schoolbussen": "schoolbuss", "schooljongen": "schooljong", "schooljongens": "schooljongen", "schoolkantine": "schoolkantin", "schoolkennissen": "schoolkenniss", "schoolmeisje": "schoolmeisj", "schoolmeisjes": "schoolmeisjes", "schoolmelk": "schoolmelk", "schoolmelkbekers": "schoolmelkbeker", "schoolpleinen": "schoolplein", "schoolvorming": "schoolvorm", "schoon": "schon", "schòon": "schòon", "schoonbaggeren": "schoonbagger", "schoonborstelt": "schoonborstelt", "schoonbroer": "schoonbroer", "schoondochter": "schoondochter", "schooneveld": "schooneveld", "schoongemaakt": "schoongemaakt", "schoongemaakte": "schoongemaakt", "schoongeveegd": "schoongeveegd", "schoonheid": "schoonheid", "schoonhoven": "schoonhov", "schoonmaak": "schoonmak", "schoonmaakkosten": "schoonmaakkost", "schoonmaakmethodes": "schoonmaakmethodes", "schoonmaakmiddel": "schoonmaakmiddel", "schoonmaakmiddelen": "schoonmaakmiddel", "schoonmaakoperaties": "schoonmaakoperaties", "schoonmaakploeg": "schoonmaakploeg", "schoonmaakster": "schoonmaakster", "schoonmaaksters": "schoonmaakster", "schoonmaaktechnieken": "schoonmaaktechniek", "schoonmaken": "schoonmak", "schoonmama": "schoonmama", "schoonmoeder": "schoonmoeder", "schoonouders": "schoonouder", "schoonspoelen": "schoonspoel", "schoonspuiten": "schoonspuit", "schoonste": "schoonst", "schoonvader": "schoonvader", "schoonzoon": "schoonzon", "schoonzuster": "schoonzuster", "schoor": "schor", "schoorsteen": "schoorsten", "schoorsteenkanalen": "schoorsteenkanal", "schoorsteenmantel": "schoorsteenmantel", "schoorsteenrotor": "schoorsteenrotor", "schoorsteentechnieken": "schoorsteentechniek", "schoorsteenuitstoot": "schoorsteenuitstot", "schoorsteenventilator": "schoorsteenventilator", "schoorsteenvorming": "schoorsteenvorm", "schoorstenen": "schoorsten", "schoot": "schot", "schop": "schop", "schoppen": "schopp", "schorengebied": "schorengebied", "schorre": "schorr", "schorren": "schorr", "schorsen": "schors", "schorsende": "schorsend", "schorsing": "schorsing", "schorst": "schorst", "schorste": "schorst", "schort": "schort", "schorten": "schort", "schortje": "schortj", "schortte": "schort", "schot": "schot", "schotel": "schotel", "schotels": "schotel", "schoten": "schot", "schoteroog": "schoterog", "schotland": "schotland", "schotse": "schot", "schouder": "schouder", "schouders": "schouder", "schouwburg": "schouwburg", "schoven": "schov", "schraler": "schraler", "schrap": "schrap", "schrappen": "schrapp", "schrapt": "schrapt", "schreef": "schref", "schreeuw": "schreeuw", "schreeuwde": "schreeuwd", "schreeuwden": "schreeuwd", "schreeuwen": "schreeuw", "schreeuwerig": "schreeuwer", "schreeuwerige": "schreeuwer", "schreeuwhuilende": "schreeuwhuil", "schreeuwklaagde": "schreeuwklaagd", "schreeuwt": "schreeuwt", "schrei": "schrei", "schreide": "schreid", "schreien": "schrei", "schreijer": "schreijer", "schreit": "schreit", "schrèit": "schrèit", "schreven": "schrev", "schriftelijk": "schriftelijk", "schriftelijke": "schriftelijk", "schriften": "schrift", "schrijen": "schrij", "schrijf": "schrijf", "schrijfgerei": "schrijfgerei", "schrijfkoppen": "schrijfkopp", "schrijfster": "schrijfster", "schrijft": "schrijft", "schrijftafel": "schrijftafel", "schrijn": "schrijn", "schrijnden": "schrijnd", "schrijnend": "schrijnend", "schrijven": "schrijv", "schrijvenaars": "schrijvenar", "schrijver": "schrijver", "schrijvers": "schrijver", "schrik": "schrik", "schrikken": "schrik", "schrikkende": "schrikkend", "schrikte": "schrikt", "schrikten": "schrikt", "schril": "schril", "schrille": "schrill", "schriller": "schriller", "schrillere": "schriller", "schrobben": "schrobb", "schrobvast": "schrobvast", "schröder": "schroder", "schroef": "schroef", "schroefachtige": "schroefacht", "schroefbeweging": "schroefbeweg", "schroefcompressoren": "schroefcompressor", "schroefde": "schroefd", "schroeven": "schroev", "schroot": "schrot", "schroothaven": "schroothav", "schroothoop": "schroothop", "schrootmarkt": "schrootmarkt", "schrootmolen": "schrootmol", "schrootverwerkend": "schrootverwerk", "schubbefestoen": "schubbefestoen", "schubben": "schubb", "schubbestaart": "schubbestaart", "schuchter": "schuchter", "schuchtere": "schuchter", "schuchterheid": "schuchter", "schuchters": "schuchter", "schud": "schud", "schudde": "schud", "schudden": "schud", "schuddend": "schuddend", "schuddende": "schuddend", "schudders": "schudder", "schuif": "schuif", "schuifelde": "schuifeld", "schuilen": "schuil", "schuilende": "schuilend", "schuilgaat": "schuilgat", "schuiling": "schuiling", "schuilplaats": "schuilplat", "schuilt": "schuilt", "schuim": "schuim", "schuimbeton": "schuimbeton", "schuimbetonfundering": "schuimbetonfunder", "schuimende": "schuimend", "schuimflottatie": "schuimflottatie", "schuimrossen": "schuimross", "schuimrubberen": "schuimrubber", "schuimvorming": "schuimvorm", "schuin": "schuin", "schuine": "schuin", "schuiner": "schuiner", "schuins": "schuin", "schuit": "schuit", "schuitenbeek": "schuitenbek", "schuiven": "schuiv", "schuld": "schuld", "schuldbewustzijn": "schuldbewustzijn", "schuldeisers": "schuldeiser", "schulden": "schuld", "schuldig": "schuldig", "schuldigen": "schuldig", "schulpen": "schulp", "schulpevorm": "schulpevorm", "schultz": "schultz", "schuren": "schur", "schurende": "schurend", "schurftbestrijdingsregistratie": "schurftbestrijdingsregistratie", "schurftige": "schurftig", "schurftschimmel": "schurftschimmel", "schut": "schut", "schuttersveld": "schuttersveld", "schuttevaer": "schuttevaer", "schuur": "schur", "schuurtje": "schuurtj", "schuw": "schuw", "schuwe": "schuw", "schuwheid": "schuwheid", "schuws": "schuw", "schuyt": "schuyt", "schwarzenberg": "schwarzenberg", "schweizer": "schweizer", "schwel": "schwel", "schwell": "schwell", "sci": "sci", "science": "scienc", "sciences": "sciences", "scientific": "scientific", "scientist": "scientist", "sconacella": "sconacella", "scoorde": "scoord", "scoorden": "scoord", "scoort": "scoort", "scooters": "scooter", "score": "scor", "scoren": "scor", "scores": "scores", "scottish": "scottish", "scotts": "scott", "scp": "scp", "scr": "scr", "scrap": "scrap", "screed": "scred", "screening": "screening", "scriptie": "scriptie", "scriptumprijs": "scriptumprijs", "scrupules": "scrupules", "scsl": "scsl", "sculptuur": "sculptur", "sdu": "sdu", "sdv": "sdv", "sea": "sea", "seal": "seal", "sealer": "sealer", "sealife": "sealif", "seamap": "seamap", "seamount": "seamount", "season": "season", "seatec": "seatec", "sebes": "sebes", "sec": "sec", "second": "second", "secondary": "secondary", "seconde": "second", "seconden": "second", "secretariaat": "secretariaat", "secretaris": "secretaris", "secretarisgeneraal": "secretarisgeneral", "secretary": "secretary", "sectie": "sectie", "sector": "sector", "sectorale": "sectoral", "sectoranalyse": "sectoranalys", "sectorbeleidsplannen": "sectorbeleidsplann", "sectordirecteur": "sectordirecteur", "sectoren": "sector", "sectorhoofd": "sectorhoofd", "sectorieel": "sectorieel", "sectorzetels": "sectorzetel", "secundair": "secundair", "secundaire": "secundair", "secundairgrondstoffen": "secundairgrondstoff", "secundairgrondstoffenbranche": "secundairgrondstoffenbranch", "secuur": "secur", "sedert": "sedert", "sediment": "sediment", "sedimentatie": "sedimentatie", "sedimentatietanks": "sedimentatietank", "sedimentmonsters": "sedimentmonster", "seeder": "seeder", "seeds": "sed", "seg": "seg", "sèg": "sèg", "segaar": "segar", "segers": "seger", "sègh": "sègh", "segment": "segment", "segmenten": "segment", "seignette": "seignet", "sein": "sein", "seine": "sein", "seismiek": "seismiek", "seismisch": "seismisch", "seismische": "seismisch", "seita": "seita", "seizoen": "seizoen", "seizoenen": "seizoen", "seizoensafhankelijk": "seizoensafhank", "seizoensfluctuaties": "seizoensfluctuaties", "seizoensveranderingen": "seizoensverander", "seko": "seko", "selby": "selby", "select": "select", "selecte": "select", "selecteerde": "selecteerd", "selecteert": "selecteert", "selecteren": "selecter", "selectie": "selectie", "selectief": "selectief", "selectiemethode": "selectiemethod", "selectieve": "selectiev", "selectievere": "selectiever", "selectiviteit": "selectiviteit", "seleen": "selen", "selfsupporting": "selfsupport", "sellafield": "sellafield", "selm": "selm", "semarang": "semarang", "sembawang": "sembawang", "semi": "semi", "semibulk": "semibulk", "seminar": "seminar", "senaat": "senat", "senaatsbesluit": "senaatsbesluit", "senaatszetels": "senaatszetel", "senator": "senator", "senatoren": "senator", "sencor": "sencor", "senegal": "senegal", "sengewald": "sengewald", "senior": "senior", "seniorencomplex": "seniorencomplex", "sens": "sen", "sensatiezucht": "sensatiezucht", "sense": "sen", "sensing": "sensing", "sensitiviteit": "sensitiviteit", "sensor": "sensor", "sensoren": "sensor", "sensorholte": "sensorholt", "sensuele": "sensuel", "senter": "senter", "sentiment": "sentiment", "sentimentaliteit": "sentimentaliteit", "sentimenteel": "sentimentel", "sentimenteeltjes": "sentimenteeltjes", "sentimentele": "sentimentel", "sentimenten": "sentiment", "senyang": "senyang", "seoul": "seoul", "sep": "sep", "separate": "separat", "separatietechnieken": "separatietechniek", "separation": "separation", "separatisten": "separatist", "seperatoren": "seperator", "seppelfricke": "seppelfrick", "september": "september", "septic": "septic", "septictanks": "septictank", "sequencing": "sequenc", "ser": "ser", "sereen": "seren", "sereniteit": "sereniteit", "sergie": "sergie", "serie": "serie", "serieproduktie": "serieproduktie", "series": "series", "serieus": "serieus", "serieuze": "serieuz", "sero": "sero", "serpentine": "serpentin", "serre": "serr", "serreglazen": "serreglaz", "serreraam": "serreram", "serres": "serres", "serretje": "serretj", "serveert": "serveert", "server": "server", "serveren": "server", "servet": "servet", "servetten": "servet", "service": "servic", "serviceafdelingen": "serviceafdel", "servicebedrijf": "servicebedrijf", "servicegaranties": "servicegaranties", "servicemonteur": "servicemonteur", "servicepakket": "servicepakket", "services": "services", "serviceteam": "serviceteam", "servië": "servie", "servies": "servies", "serviesgoed": "serviesgoed", "servojet": "servojet", "sesam": "sesam", "sessie": "sessie", "sessies": "sessies", "set": "set", "setting": "setting", "settlement": "settlement", "sev": "sev", "severn": "severn", "seveso": "seveso", "sex": "sex", "sexbierum": "sexbierum", "sf": "sf", "sfeer": "sfer", "sfeergaskachels": "sfeergaskachel", "sferen": "sfer", "sfg": "sfg", "sfinx": "sfinx", "sfinxenmacht": "sfinxenmacht", "sformulering": "sformuler", "sgp": "sgp", "sgs": "sgs", "shaanxi": "shaanxi", "shampoo": "shampoo", "shampoos": "shampos", "shandon": "shandon", "shandong": "shandong", "shanghai": "shanghai", "shanks": "shank", "shared": "shared", "shawl": "shawl", "shawltje": "shawltj", "shear": "shear", "sheet": "shet", "sheila": "sheila", "shell": "shell", "sherbro": "sherbro", "sherwood": "sherwod", "shetland": "shetland", "shilling": "shilling", "shimadzu": "shimadzu", "shirlan": "shirlan", "shoes": "shoes", "shore": "shor", "shovel": "shovel", "showcase": "showcas", "shower": "shower", "shred": "shred", "shredder": "shredder", "shredderafval": "shredderafval", "shredderen": "shredder", "shredderinstallatie": "shredderinstallatie", "shredders": "shredder", "shropshire": "shropshir", "shs": "shs", "shushufindi": "shushufindi", "shuttle": "shuttl", "shv": "shv", "si": "si", "siberië": "siberie", "siberische": "siberisch", "sichuan": "sichuan", "sicilië": "sicilie", "sick": "sick", "sidderde": "sidderd", "sidderden": "sidderd", "sidderen": "sidder", "siddering": "sidder", "siegmunds": "siegmund", "siemens": "siemen", "siemensprojecten": "siemensproject", "sien": "sien", "sientje": "sientj", "sier": "sier", "sieralgen": "sieralg", "sierende": "sierend", "sierlijkheid": "sierlijk", "sierprodukt": "sierprodukt", "sierra": "sierra", "siersteen": "siersten", "sierteelt": "sierteelt", "siësta": "siesta", "siet": "siet", "sievert": "sievert", "sigaar": "sigar", "sigaren": "sigar", "sigarenwalm": "sigarenwalm", "sigaret": "sigaret", "sigaretten": "sigaret", "sigaretterook": "sigaretterok", "sige": "sig", "sigma": "sigma", "sign": "sign", "signaal": "signal", "signaaloverdracht": "signaaloverdracht", "signaalwaarde": "signaalwaard", "signal": "signal", "signaleerde": "signaleerd", "signaleert": "signaleert", "signalen": "signal", "signaleren": "signaler", "signalering": "signaler", "signaleringsfunctie": "signaleringsfunctie", "significant": "significant", "significante": "significant", "significantie": "significantie", "sijpelende": "sijpel", "sijpelt": "sijpelt", "sijtsma": "sijtsma", "sijtwende": "sijtwend", "sikkelde": "sikkeld", "sikkens": "sikken", "silaan": "silan", "silenka": "silenka", "silhouet": "silhouet", "silhouetten": "silhouet", "silica": "silica", "silicaateilandjes": "silicaateilandjes", "silicagel": "silicagel", "silicatische": "silicatisch", "silicium": "silicium", "siliciumcarbide": "siliciumcarbid", "siliconen": "silicon", "siliconenolie": "siliconenolie", "silo": "silo", "silva": "silva", "silvestrini": "silvestrini", "simazine": "simazin", "simcoe": "simcoe", "simmeringdichting": "simmeringdicht", "simon": "simon", "simpel": "simpel", "simpele": "simpel", "simpeler": "simpeler", "simulatie": "simulatie", "simulatiegegevens": "simulatiegegeven", "simulatiemodellen": "simulatiemodell", "simulatieresultaten": "simulatieresultat", "simulaties": "simulaties", "simulatietechniek": "simulatietechniek", "simulatietechnieken": "simulatietechniek", "simulator": "simulator", "simuleert": "simuleert", "simuleren": "simuler", "sinaasappelen": "sinaasappel", "sinaasappels": "sinaasappel", "sinds": "sind", "sindsdien": "sindsdien", "singapore": "singapor", "singels": "singel", "single": "singl", "sinjo": "sinjo", "sink": "sink", "sinox": "sinox", "sint": "sint", "sintef": "sintef", "sinteren": "sinter", "sinterfabrieken": "sinterfabriek", "sinusvormig": "sinusvorm", "sipra": "sipra", "sir": "sir", "sirif": "sirif", "siroop": "sirop", "siste": "sist", "site": "sit", "sites": "sites", "sitra": "sitra", "sittard": "sittard", "sittardse": "sittard", "sitten": "sit", "situ": "situ", "situatie": "situatie", "situaties": "situaties", "situeren": "situer", "situering": "situer", "sivam": "sivam", "sivop": "sivop", "sjoemelen": "sjoemel", "sjokken": "sjok", "sjokte": "sjokt", "sjouwde": "sjouwd", "sjouwen": "sjouw", "sjouwer": "sjouwer", "sk": "sk", "skal": "skal", "skarsterlan": "skarsterlan", "ske": "ske", "skelet": "skelet", "ski": "ski", "skk": "skk", "skorboom": "skorbom", "skua": "skua", "skw": "skw", "sky": "sky", "skylla": "skylla", "sl": "sl", "sla": "sla", "slaag": "slag", "slaagde": "slaagd", "slaaghwijk": "slaaghwijk", "slaagkans": "slaagkan", "slaags": "slag", "slaagt": "slaagt", "slaakte": "slaakt", "slaan": "slan", "slaande": "slaand", "slaap": "slap", "slaapkabinet": "slaapkabinet", "slaapkamer": "slaapkamer", "slaapkamers": "slaapkamer", "slaaploze": "slaaploz", "slaapt": "slaapt", "slaapverdieping": "slaapverdiep", "slaapwandel": "slaapwandel", "slaapwandelachtig": "slaapwandelacht", "slaapwandelen": "slaapwandel", "slaat": "slat", "slaatje": "slaatj", "slacht": "slacht", "slachterij": "slachterij", "slachterijen": "slachterij", "slachtkuikenstal": "slachtkuikenstal", "slachtoffer": "slachtoffer", "slachtoffers": "slachtoffer", "slag": "slag", "slagen": "slag", "slager": "slager", "slagerijen": "slagerij", "slagersbedrijf": "slagersbedrijf", "slagersjongens": "slagersjongen", "slagersrekening": "slagersreken", "slagintensiteit": "slagintensiteit", "slagregen": "slagreg", "slagter": "slagter", "slagvaardig": "slagvaard", "slak": "slak", "slakeilandjes": "slakeilandjes", "slakken": "slak", "slakkenbehandelingsinstallatie": "slakkenbehandelingsinstallatie", "slakresten": "slakrest", "slang": "slang", "slange": "slang", "slangen": "slang", "slangenpomp": "slangenpomp", "slangensysteem": "slangensystem", "slangetjes": "slangetjes", "slangewal": "slangewal", "slanggebeeste": "slanggebeest", "slank": "slank", "slanke": "slank", "slankheid": "slankheid", "slap": "slap", "slapeloosheid": "slapelos", "slapen": "slap", "slapende": "slapend", "slapjes": "slapjes", "slappe": "slapp", "slateelt": "slateelt", "slateler": "slateler", "slaven": "slav", "slavernij": "slavernij", "slecht": "slecht", "slechte": "slecht", "slechten": "slecht", "slechter": "slechter", "slechtere": "slechter", "slechtheid": "slechtheid", "slechthorend": "slechthor", "slechts": "slecht", "slechtst": "slechtst", "sleep": "slep", "sleepboten": "sleepbot", "sleepcontact": "sleepcontact", "sleepjapon": "sleepjapon", "sleeppoging": "sleeppog", "sleept": "sleept", "sleepte": "sleept", "sleepten": "sleept", "sleepvoeten": "sleepvoet", "sleeswijk": "sleeswijk", "slenterde": "slenterd", "slenteren": "slenter", "slepen": "slep", "slepend": "slepend", "slepende": "slepend", "sleping": "sleping", "slepingen": "sleping", "slet": "slet", "slèt": "slèt", "sleurde": "sleurd", "sleurmens": "sleurmen", "sleutel": "sleutel", "sleutelbegrip": "sleutelbegrip", "sleutelbegrippen": "sleutelbegripp", "sleutelfiguren": "sleutelfigur", "sleutelgat": "sleutelgat", "sleutelinformanten": "sleutelinformant", "sleutelmandje": "sleutelmandj", "sleutelrol": "sleutelrol", "sleutels": "sleutel", "sleutelwoord": "sleutelwoord", "sleuvengraver": "sleuvengraver", "slf": "slf", "slib": "slib", "slibabsorberend": "slibabsorber", "slibachtig": "slibacht", "slibafscheiding": "slibafscheid", "slibafzet": "slibafzet", "slibbehandelingssystemen": "slibbehandelingssystem", "slibben": "slibb", "slibboycot": "slibboycot", "slibcompostering": "slibcomposter", "slibdepot": "slibdepot", "slibdepots": "slibdepot", "slibdrogers": "slibdroger", "slibdroging": "slibdrog", "slibdrogingsinstallatie": "slibdrogingsinstallatie", "slibdrooginstallatie": "slibdrooginstallatie", "slibfractie": "slibfractie", "slibgroei": "slibgroei", "slibklassen": "slibklass", "slibkoek": "slibkoek", "sliblaag": "sliblag", "slibmengsels": "slibmengsel", "slibontwatering": "slibontwater", "slibproblematiek": "slibproblematiek", "slibputten": "slibput", "slibreiniging": "slibrein", "slibslurrie": "slibslurrie", "slibt": "slibt", "slibtransport": "slibtransport", "slibvangputten": "slibvangput", "slibverbranding": "slibverbrand", "slibverwerker": "slibverwerker", "slibverwerking": "slibverwerk", "slibverwijderingssysteem": "slibverwijderingssystem", "slibzuivering": "slibzuiver", "sliedrecht": "sliedrecht", "sliep": "sliep", "sliepen": "sliep", "slieren": "slier", "slijk": "slijk", "slijm": "slijm", "slijt": "slijt", "slijten": "slijt", "slijtende": "slijtend", "slijters": "slijter", "slijtvast": "slijtvast", "slijtvaste": "slijtvast", "slik": "slik", "slikken": "slik", "slikte": "slikt", "slim": "slim", "slimheid": "slimheid", "slimme": "slimm", "slimmetjes": "slimmetjes", "slinger": "slinger", "slingerde": "slingerd", "slingeren": "slinger", "slingerend": "slinger", "slingerende": "slinger", "slingering": "slinger", "slingeringen": "slinger", "slingers": "slinger", "slinken": "slink", "slinkt": "slinkt", "slip": "slip", "slips": "slip", "slipt": "slipt", "slobeend": "slobeend", "slochteren": "slochter", "sloeg": "sloeg", "sloegen": "sloeg", "slogan": "slogan", "slok": "slok", "slokjes": "slokjes", "slokker": "slokker", "slokte": "slokt", "slooft": "slooft", "sloop": "slop", "sloopafval": "sloopafval", "sloopauto": "sloopauto", "sloophout": "sloophout", "sloopobjecten": "sloopobject", "sloopplannen": "sloopplann", "slooppuin": "slooppuin", "sloopresten": "slooprest", "sloopt": "sloopt", "sloopterrein": "sloopterrein", "sloopvergunning": "sloopvergunn", "sloopwerken": "sloopwerk", "sloot": "slot", "slootbodem": "slootbodem", "slootbodems": "slootbodem", "slootkant": "slootkant", "slootkanten": "slootkant", "slootwater": "slootwater", "slop": "slop", "slopen": "slop", "sloper": "sloper", "sloperij": "sloperij", "slordig": "slordig", "slordige": "slordig", "slot": "slot", "slotbijeenkomst": "slotbijeenkomst", "slotconclusie": "slotconclusie", "slotdag": "slotdag", "slotdagen": "slotdag", "sloten": "slot", "sloterplas": "sloterplas", "slotkoers": "slotkoer", "slotmanifestatie": "slotmanifestatie", "slotte": "slot", "slottoespraken": "slottoesprak", "slotverklaring": "slotverklar", "sloven": "slov", "slowakije": "slowakij", "sludge": "sludg", "sludges": "sludges", "slufter": "slufter", "slufterdam": "slufterdam", "sluier": "sluier", "sluiers": "sluier", "sluik": "sluik", "sluimerde": "sluimerd", "sluimerden": "sluimerd", "sluimeren": "sluimer", "sluimerend": "sluimer", "sluimerende": "sluimer", "sluimering": "sluimer", "sluimert": "sluimert", "sluipende": "sluipend", "sluis": "sluis", "sluiskil": "sluiskil", "sluit": "sluit", "sluiten": "sluit", "sluitend": "sluitend", "sluiting": "sluiting", "sluitingen": "sluiting", "sluitingsbevel": "sluitingsbevel", "sluitingsdatum": "sluitingsdatum", "sluitingstijden": "sluitingstijd", "sluizen": "sluiz", "slungel": "slungel", "slurpte": "slurpt", "slurrie": "slurrie", "slurries": "slurries", "slurry": "slurry", "sluw": "sluw", "smaak": "smak", "smaakstoffen": "smaakstoff", "smaaktest": "smaaktest", "smaakvol": "smaakvol", "smaal": "smal", "smacht": "smacht", "smachten": "smacht", "smachtend": "smachtend", "smachtende": "smachtend", "smachting": "smachting", "smachtte": "smacht", "smachtten": "smacht", "smakkende": "smakkend", "smakte": "smakt", "smalle": "small", "smallingerland": "smallingerland", "smals": "smal", "smart": "smart", "smartelijke": "smartelijk", "smartelijker": "smartelijker", "smartte": "smart", "sme": "sme", "smederij": "smederij", "smeek": "smek", "smeekte": "smeekt", "smeekten": "smeekt", "smeenk": "smeenk", "smeer": "smer", "smeerde": "smeerd", "smeerden": "smeerd", "smeergeld": "smeergeld", "smeergeldaffaire": "smeergeldaffair", "smeerlap": "smeerlap", "smeerlapperij": "smeerlapperij", "smeermiddel": "smeermiddel", "smeermiddelen": "smeermiddel", "smeerolie": "smeerolie", "smeet": "smet", "smeèt": "smeèt", "smeets": "smet", "smekeling": "smekel", "smeken": "smek", "smekend": "smekend", "smekende": "smekend", "smeking": "smeking", "smelt": "smelt", "smelten": "smelt", "smeltende": "smeltend", "smeltmengsel": "smeltmengsel", "smeltoven": "smeltov", "smeltproces": "smeltproces", "smeltprocessen": "smeltprocess", "smelttraject": "smelttraject", "smeren": "smer", "smerende": "smerend", "smerig": "smerig", "smerige": "smerig", "smeriger": "smeriger", "smerigheid": "smerig", "smerigste": "smerigst", "smet": "smet", "smeten": "smet", "smeulde": "smeuld", "smid": "smid", "smijten": "smijt", "smile": "smil", "smit": "smit", "smith": "smith", "smithsonian": "smithsonian", "smits": "smit", "smoel": "smoel", "smoesden": "smoesd", "smoezen": "smoez", "smog": "smog", "smogbeleid": "smogbeleid", "smogmelding": "smogmeld", "smogveroorzakende": "smogveroorzak", "smogvorming": "smogvorm", "smoke": "smok", "smoking": "smoking", "smokings": "smoking", "smokkel": "smokkel", "smolt": "smolt", "smolten": "smolt", "smoorde": "smoord", "smoorplaat": "smoorplat", "smoring": "smoring", "smul": "smul", "smulden": "smuld", "smullen": "smull", "smullend": "smullend", "smurrie": "smurrie", "snaak": "snak", "snaartuig": "snaartuig", "snab": "snab", "snackbar": "snackbar", "snackbars": "snackbar", "snacks": "snack", "snakkende": "snakkend", "snakte": "snakt", "snap": "snap", "snapt": "snapt", "snaren": "snar", "snarentuig": "snarentu", "snaterde": "snaterd", "snauw": "snauw", "snauwde": "snauwd", "snauwden": "snauwd", "sncr": "sncr", "snede": "sned", "sneed": "sned", "sneer": "sner", "sneeuw": "sneeuw", "sneeuwde": "sneeuwd", "sneeuwen": "sneeuw", "sneeuwgekroonlijste": "sneeuwgekroonlijst", "sneeuwgrauwe": "sneeuwgrauw", "sneeuwige": "sneeuwig", "sneeuwjacht": "sneeuwjacht", "sneeuwlandschappen": "sneeuwlandschapp", "sneeuwnacht": "sneeuwnacht", "sneeuwontruiming": "sneeuwontruim", "sneeuwploegen": "sneeuwploeg", "sneeuwschijn": "sneeuwschijn", "sneeuwschitterende": "sneeuwschitter", "sneeuwval": "sneeuwval", "sneeuwvelden": "sneeuwveld", "sneeuwzwangere": "sneeuwzwanger", "snel": "snel", "snelde": "sneld", "snelgroeiende": "snelgroei", "snelheden": "snelheid", "snelheid": "snelheid", "snelheidsbegrenzer": "snelheidsbegrenzer", "snelheidsbegrenzers": "snelheidsbegrenzer", "snelheidsbeperking": "snelheidsbeperk", "snelheidscontroles": "snelheidscontroles", "snelheidslijn": "snelheidslijn", "snelheidslimieten": "snelheidslimiet", "snelheidsmetingen": "snelheidsmet", "snelheidsprofiel": "snelheidsprofiel", "snelheidsregelaar": "snelheidsregelar", "snelheidsvariaties": "snelheidsvariaties", "snelheidsverdeling": "snelheidsverdel", "snelle": "snell", "snellen": "snell", "snellende": "snellend", "sneller": "sneller", "snellere": "sneller", "snelpompstations": "snelpompstation", "snelroterende": "snelroter", "snelst": "snelst", "snelte": "snelt", "sneltram": "sneltram", "sneltrein": "sneltrein", "snelweg": "snelweg", "snelwegen": "snelweg", "snelwegtunnels": "snelwegtunnel", "snelwegverbreding": "snelwegverbred", "snerpend": "snerpend", "snerpende": "snerpend", "snerpte": "snerpt", "snert": "snert", "snetterde": "snetterd", "snetteren": "snetter", "sneuvelde": "sneuveld", "sneuvelen": "sneuvel", "snij": "snij", "snijbloemenbedrijven": "snijbloemenbedrijv", "snijbloementelers": "snijbloementeler", "snijcilinders": "snijcilinder", "snijd": "snijd", "snijden": "snijd", "snijdend": "snijdend", "snijdende": "snijdend", "snijder": "snijder", "snijkamerafmetingen": "snijkamerafmet", "snijmaïs": "snijmais", "snik": "snik", "snikke": "snik", "snikken": "snik", "snikkend": "snikkend", "snikkende": "snikkend", "snikschok": "snikschok", "snikte": "snikt", "snikten": "snikt", "snippers": "snipper", "snit": "snit", "snk": "snk", "snoeiafval": "snoeiafval", "snoeien": "snoei", "snoeihout": "snoeihout", "snoek": "snoek", "snoekbaars": "snoekbar", "snoeken": "snoek", "snoep": "snoep", "snoepfabrikant": "snoepfabrikant", "snoeplustige": "snoeplust", "snoepte": "snoept", "snoepwaar": "snoepwar", "snoer": "snoer", "snoeren": "snoer", "snoézig": "snoezig", "snor": "snor", "snormond": "snormond", "snowball": "snowball", "snuffelen": "snuffel", "snuffelploegmetingen": "snuffelploegmet", "snuit": "snuit", "snuiten": "snuit", "snuiters": "snuiter", "snv": "snv", "so": "so", "só": "so", "soar": "soar", "soay": "soay", "sobel": "sobel", "soberheid": "sober", "socar": "socar", "sociaal": "sociaal", "sociale": "social", "socialisme": "socialism", "socialisten": "socialist", "socialistische": "socialistisch", "sociëteit": "societeit", "sociëteiten": "societeit", "societies": "societies", "society": "society", "sociologen": "sociolog", "sociologische": "sociologisch", "socioloog": "sociolog", "soda": "soda", "sodabad": "sodabad", "soeda": "soeda", "soedab": "soedab", "soedah": "soedah", "soeharto": "soeharto", "soelaas": "soelas", "soep": "soep", "soepel": "soepel", "soepele": "soepel", "soepeler": "soepeler", "soesah": "soesah", "soesden": "soesd", "soest": "soest", "soestdijk": "soestdijk", "soezen": "soez", "soezig": "soezig", "sofc": "sofc", "sofia": "sofia", "softstarters": "softstarter", "software": "softwar", "softwarepakket": "softwarepakket", "softwareprogramma": "softwareprogramma", "softwaresysteem": "softwaresystem", "soie": "soi", "soil": "soil", "soils": "soil", "soir": "soir", "soirée": "soiree", "soirées": "soires", "soit": "soit", "soja": "soja", "sojabonen": "sojabon", "sokjes": "sokjes", "sokken": "sok", "sol": "sol", "solar": "solar", "solarcool": "solarcol", "solas": "solas", "soldaten": "soldat", "soldeerafval": "soldeerafval", "soldeerwerk": "soldeerwerk", "solid": "solid", "solidariteit": "solidariteit", "solidariteits": "solidariteit", "solidariteitsfonds": "solidariteitsfond", "solide": "solid", "solidificatie": "solidificatie", "soliditeit": "soliditeit", "solids": "solid", "solitair": "solitair", "sollicitatie": "sollicitatie", "solnor": "solnor", "solo": "solo", "solomat": "solomat", "solomon": "solomon", "solutietechnologie": "solutietechnologie", "solution": "solution", "solutions": "solution", "solvay": "solvay", "solvent": "solvent", "som": "som", "somalië": "somalie", "somato": "somato", "somber": "somber", "somberde": "somberd", "somberden": "somberd", "somberder": "somberder", "sombere": "somber", "somberen": "somber", "somberende": "somber", "somberheden": "somber", "somberheid": "somber", "sombering": "somber", "somberste": "somberst", "some": "som", "someren": "somer", "sommatie": "sommatie", "sommeerde": "sommeerd", "sommige": "sommig", "sommigen": "sommig", "soms": "som", "somstijds": "somstijd", "somt": "somt", "son": "son", "sonatrach": "sonatrach", "sondag": "sondag", "sonde": "sond", "sondeerapparatuur": "sondeerapparatur", "sondeergat": "sondeergat", "sondeermachine": "sondeermachin", "sondeermachines": "sondeermachines", "sondeerstreng": "sondeerstreng", "sonderabfallgesellschaft": "sonderabfallgesellschaft", "sonderhausen": "sonderhaus", "sondershausen": "sondershaus", "sondes": "sondes", "sonja": "sonja", "sont": "sont", "sony": "sony", "soo": "soo", "soons": "son", "soort": "soort", "soorten": "soort", "soortgelijk": "soortgelijk", "soortgelijke": "soortgelijk", "soos": "sos", "sopar": "sopar", "soppen": "sopp", "sorgdrager": "sorgdrager", "sorptie": "sorptie", "sorteer": "sorter", "sorteeranalyse": "sorteeranalys", "sorteeranalyses": "sorteeranalyses", "sorteerbedrijven": "sorteerbedrijv", "sorteerden": "sorteerd", "sorteerinrichtingen": "sorteerinricht", "sorteerinstallatie": "sorteerinstallatie", "sorteerinstallaties": "sorteerinstallaties", "sorteerproef": "sorteerproef", "sorteerstromen": "sorteerstrom", "sorteersysteem": "sorteersystem", "sorteersystemen": "sorteersystem", "sorteert": "sorteert", "sorteren": "sorter", "sortering": "sorter", "sortie": "sortie", "souffreert": "souffreert", "soultz": "soultz", "sound": "sound", "soune": "soun", "souper": "souper", "sourdine": "sourdin", "sous": "sous", "south": "south", "southampton": "southampton", "southern": "southern", "souvenir": "souvenir", "souvenirs": "souvenir", "souvereiniteit": "souvereiniteit", "sovabo": "sovabo", "sovjet": "sovjet", "sovon": "sovon", "sow": "sow", "sowieso": "sowieso", "soya": "soya", "soyinka": "soyinka", "sp": "sp", "spa": "spa", "spaanderplaat": "spaanderplat", "spaanplaat": "spaanplat", "spaanplaatindustrie": "spaanplaatindustrie", "spaans": "span", "spaanse": "span", "spaar": "spar", "spaarbank": "spaarbank", "spaarbekken": "spaarbek", "spaarde": "spaard", "spaardeposito": "spaardeposito", "spaarder": "spaarder", "spaardouches": "spaardouches", "spaargeld": "spaargeld", "spaarkop": "spaarkop", "spaarkoppen": "spaarkopp", "spaarlampen": "spaarlamp", "spaarpot": "spaarpot", "spaarprodukt": "spaarprodukt", "spaarrekeningen": "spaarreken", "spaart": "spaart", "space": "spac", "spande": "spand", "spandoek": "spandoek", "spangen": "spang", "spanje": "spanj", "spankeren": "spanker", "spannen": "spann", "spannende": "spannend", "spanning": "spanning", "spanningen": "spanning", "spanningsniveau": "spanningsniveau", "spanningsverval": "spanningsverval", "spanningverschil": "spanningverschil", "spant": "spant", "spar": "spar", "sparen": "spar", "sparrebossen": "sparreboss", "sparren": "sparr", "sparrenbos": "sparrenbos", "sparrenmassa": "sparrenmassa", "sparretjes": "sparretjes", "sparta": "sparta", "spat": "spat", "spatje": "spatj", "spatoe": "spatoe", "spatte": "spat", "spatten": "spat", "spd": "spd", "spe": "spe", "speciaal": "speciaal", "speciale": "special", "specialisatie": "specialisatie", "specialiseren": "specialiser", "specialist": "specialist", "specialisten": "specialist", "specialistische": "specialistisch", "specie": "specie", "species": "species", "specificatie": "specificatie", "specificatiebladen": "specificatieblad", "specificaties": "specificaties", "specifiek": "specifiek", "specifieke": "specifiek", "specifieker": "specifieker", "specimens": "specimen", "spectaculair": "spectaculair", "spectaculaire": "spectaculair", "spectra": "spectra", "spectraal": "spectral", "spectrale": "spectral", "spectrometer": "spectrometer", "spectrometrie": "spectrometrie", "spectrometry": "spectrometry", "spectrophotometry": "spectrophotometry", "spectrum": "spectrum", "speculaasbrokken": "speculaasbrok", "speechen": "speech", "speedcontrol": "speedcontrol", "speel": "spel", "speelde": "speeld", "speelden": "speeld", "speelgoed": "speelgoed", "speelgoedindustrie": "speelgoedindustrie", "speelgoedklei": "speelgoedklei", "speelgoedklein": "speelgoedklein", "speelkamerwereldje": "speelkamerwereldj", "speelruimte": "speelruimt", "speelt": "speelt", "speeltafel": "speeltafel", "speeltafels": "speeltafel", "speeltafeltjes": "speeltafeltjes", "speeltuig": "speeltuig", "speeluur": "speelur", "speelveld": "speelveld", "speerpunt": "speerpunt", "speerpunten": "speerpunt", "speet": "spet", "spekken": "spek", "spel": "spel", "spelbreker": "spelbreker", "spelbrekers": "spelbreker", "speldde": "speld", "spelde": "speld", "spelden": "speld", "spelderholt": "spelderholt", "spelen": "spel", "spélen": "spel", "spelend": "spelend", "spelende": "spelend", "spelers": "speler", "spelletjes": "spelletjes", "spelregels": "spelregel", "spencer": "spencer", "sperden": "sperd", "sperma": "sperma", "speuren": "speur", "spichtig": "spichtig", "spiedde": "spied", "spiedden": "spied", "spieden": "spied", "spiedende": "spiedend", "spiegel": "spiegel", "spiegelblouse": "spiegelblous", "spiegelconsole": "spiegelconsol", "spiegelden": "spiegeld", "spiegeldiepte": "spiegeldiept", "spiegelen": "spiegel", "spiegelend": "spiegel", "spiegelglans": "spiegelglan", "spiegelglazen": "spiegelglaz", "spiegeling": "spiegel", "spiegelkast": "spiegelkast", "spiegeloptiekarmatuur": "spiegeloptiekarmatur", "spiegelramen": "spiegelram", "spiegels": "spiegel", "spier": "spier", "spierarbeid": "spierarbeid", "spieren": "spier", "spierige": "spierig", "spierkracht": "spierkracht", "spierlichaam": "spierlicham", "spierloze": "spierloz", "spiernaakt": "spiernaakt", "spietsten": "spietst", "spijkenisse": "spijkenis", "spijkerboor": "spijkerbor", "spijskokerij": "spijskokerij", "spijsolie": "spijsolie", "spijsolieverwarming": "spijsolieverwarm", "spijsverwarming": "spijsverwarm", "spijt": "spijt", "spijten": "spijt", "spil": "spil", "spill": "spill", "spilling": "spilling", "spills": "spill", "spin": "spin", "spinazie": "spinazie", "spinnenstand": "spinnenstand", "spinnewebben": "spinnewebb", "spiraal": "spiral", "spiraalvormige": "spiraalvorm", "spiralen": "spiral", "spiralencircuit": "spiralencircuit", "spiralende": "spiral", "spiritusvlam": "spiritusvlam", "spiro": "spiro", "spirofloor": "spiroflor", "spirulina": "spirulina", "spisula": "spisula", "spitman": "spitman", "spits": "spit", "spitse": "spit", "spitsen": "spits", "spitsje": "spitsj", "spitsjes": "spitsjes", "spitste": "spitst", "spitsuren": "spitsur", "spitsvignetten": "spitsvignet", "spitsvormige": "spitsvorm", "spitte": "spit", "spivey": "spivey", "spleen": "splen", "spleet": "splet", "splijtstofelementen": "splijtstofelement", "splijtstoffen": "splijtstoff", "splijtstofketen": "splijtstofket", "splijtstofwisseling": "splijtstofwissel", "splinterbond": "splinterbond", "spm": "spm", "spoed": "spoed", "spoeddebat": "spoeddebat", "spoedeisend": "spoedeis", "spoedig": "spoedig", "spoedinterpellatie": "spoedinterpellatie", "spoedopnamen": "spoedopnam", "spoedprocedure": "spoedprocedur", "spoelen": "spoel", "spoelgotensysteem": "spoelgotensystem", "spoeling": "spoeling", "spoelingen": "spoeling", "spoelingwater": "spoelingwater", "spoelinstallaties": "spoelinstallaties", "spoelonderbreekknoppen": "spoelonderbreekknopp", "spoelonderbreking": "spoelonderbrek", "spoelt": "spoelt", "spoelwater": "spoelwater", "spoelwaterbehandeling": "spoelwaterbehandel", "spoken": "spok", "spokende": "spokend", "spokig": "spokig", "spokige": "spokig", "spons": "spon", "sponsachtige": "sponsacht", "sponsor": "sponsor", "sponsors": "sponsor", "sponsort": "sponsort", "sponste": "sponst", "spontaan": "spontan", "spontaans": "spontan", "spontaanweg": "spontaanweg", "spontane": "spontan", "spontaner": "spontaner", "sponzen": "sponz", "spook": "spok", "spookachtig": "spookacht", "spookgebaar": "spookgebar", "spookgezichten": "spookgezicht", "spookhuis": "spookhuis", "spooklandschap": "spooklandschap", "spooksel": "spooksel", "spookt": "spookt", "spookte": "spookt", "spookten": "spookt", "spooktrein": "spooktrein", "spoor": "spor", "spooraansluiting": "spooraansluit", "spoorbaan": "spoorban", "spoorbanen": "spoorban", "spoorde": "spoord", "spoordijk": "spoordijk", "spoorlijn": "spoorlijn", "spoorlijnen": "spoorlijn", "spoornet": "spoornet", "spoort": "spoort", "spoortechnische": "spoortechnisch", "spoortje": "spoortj", "spoortree": "spoortree", "spoortrein": "spoortrein", "spoorverdubbeling": "spoorverdubbel", "spoorwegen": "spoorweg", "spoorweggeluid": "spoorweggeluid", "spoorweggrind": "spoorweggrind", "spoorwegnet": "spoorwegnet", "spoorwegviaducten": "spoorwegviaduct", "spoot": "spot", "sporadisch": "sporadisch", "sporadische": "sporadisch", "sporen": "spor", "sporenbedden": "sporenbed", "sport": "sport", "sportboycot": "sportboycot", "sportfondsenbad": "sportfondsenbad", "sporthemd": "sporthemd", "sportkantines": "sportkantines", "sportorganisaties": "sportorganisaties", "sportpak": "sportpak", "sportterreinen": "sportterrein", "sportveld": "sportveld", "sportvelden": "sportveld", "sportvliegtuigen": "sportvliegtu", "sporulerende": "sporuler", "spot": "spot", "spothandel": "spothandel", "spotlach": "spotlach", "spotogen": "spotog", "spotte": "spot", "spotten": "spot", "spottend": "spottend", "spotting": "spotting", "spotvogel": "spotvogel", "spouthouse": "spouthous", "spouwankers": "spouwanker", "spouwconstructies": "spouwconstructies", "spouwen": "spouw", "spouwisolatieplaat": "spouwisolatieplat", "spouwmuren": "spouwmur", "spp": "spp", "spraak": "sprak", "spraakgebruik": "spraakgebruik", "spraakzaam": "spraakzam", "spraakzamer": "spraakzamer", "sprak": "sprak", "sprake": "sprak", "sprakeloze": "sprakeloz", "spraken": "sprak", "spray": "spray", "spreek": "sprek", "spreekkoren": "spreekkor", "spreekt": "spreekt", "spreidde": "spreid", "spreiden": "spreid", "spreiding": "spreiding", "spreien": "sprei", "spreitzer": "spreitzer", "spreken": "sprek", "spréken": "sprek", "sprekende": "sprekend", "sprekers": "spreker", "sprenkelden": "sprenkeld", "springeffect": "springeffect", "springende": "springend", "springplank": "springplank", "springt": "springt", "sprinklerinstallaties": "sprinklerinstallaties", "sprint": "sprint", "sproei": "sproei", "sproeiboommachine": "sproeiboommachin", "sproeidroger": "sproeidroger", "sproeidroogfabriek": "sproeidroogfabriek", "sproeidrooginstallatie": "sproeidrooginstallatie", "sproeifilmverdamper": "sproeifilmverdamper", "sproeikoeler": "sproeikoeler", "sproeikop": "sproeikop", "sproetjes": "sproetjes", "sprokkelhout": "sprokkelhout", "sprong": "sprong", "sprongen": "sprong", "sprookje": "sprookj", "sprookjes": "sprookjes", "spruijt": "spruijt", "spruiten": "spruit", "spuien": "spui", "spuimethodiek": "spuimethodiek", "spuistraat": "spuistrat", "spuit": "spuit", "spuitactiviteiten": "spuitactiviteit", "spuitbus": "spuitbus", "spuitbussen": "spuitbuss", "spuitdrift": "spuitdrift", "spuiten": "spuit", "spuitgieten": "spuitgiet", "spuithoogte": "spuithoogt", "spuitinstallatie": "spuitinstallatie", "spuitinstallaties": "spuitinstallaties", "spuitmachine": "spuitmachin", "spuitmonden": "spuitmond", "spuittechniek": "spuittechniek", "spuitvliegers": "spuitvlieger", "spuitvrije": "spuitvrij", "spuitwerkzaamheden": "spuitwerkzam", "spuiverlies": "spuiverlies", "spuiwater": "spuiwater", "spul": "spul", "spullen": "spull", "spun": "spun", "spurtende": "spurtend", "spurtte": "spurt", "spurtten": "spurt", "square": "squar", "sr": "sr", "srdb": "srdb", "sri": "sri", "sron": "sron", "sspp": "sspp", "st": "st", "sta": "sta", "staafjes": "staafjes", "staakte": "staakt", "staal": "stal", "staalafval": "staalafval", "staalbedrijf": "staalbedrijf", "staalconcern": "staalconcern", "staalconstructie": "staalconstructie", "staalgigant": "staalgigant", "staalgrit": "staalgrit", "staalindustrie": "staalindustrie", "staalkleur": "staalkleur", "staalkleurig": "staalkleur", "staalplaat": "staalplat", "staalproducenten": "staalproducent", "staalproducerende": "staalproducer", "staalproduktie": "staalproduktie", "staalprofielen": "staalprofiel", "staalsnippers": "staalsnipper", "staalsoorten": "staalsoort", "staalverwerkende": "staalverwerk", "staalwalserij": "staalwalserij", "staan": "stan", "staand": "staand", "staande": "staand", "staar": "star", "staarblik": "staarblik", "staarde": "staard", "staarden": "staard", "staart": "staart", "staartepunt": "staartepunt", "staartpunt": "staartpunt", "staat": "stat", "staatje": "staatj", "staatkundige": "staatkund", "staatsbedrijf": "staatsbedrijf", "staatsbedrijven": "staatsbedrijv", "staatsbelang": "staatsbelang", "staatsbezoek": "staatsbezoek", "staatsblad": "staatsblad", "staatsbos": "staatsbos", "staatsbosbeheer": "staatsbosbeher", "staatscourant": "staatscourant", "staatsdeelnemingen": "staatsdeelnem", "staatselektriciteitsbedrijf": "staatselektriciteitsbedrijf", "staatsexamen": "staatsexam", "staatsgelden": "staatsgeld", "staatshoofden": "staatshoofd", "staatskas": "staatskas", "staatsman": "staatsman", "staatsmannen": "staatsmann", "staatsmijn": "staatsmijn", "staatsnatuurmonument": "staatsnatuurmonument", "staatsoliemaatschappij": "staatsoliemaatschappij", "staatsrecht": "staatsrecht", "staatssecretaris": "staatssecretaris", "staatssteun": "staatssteun", "staatssubsidie": "staatssubsidie", "stabiel": "stabiel", "stabiele": "stabiel", "stabilisatie": "stabilisatie", "stabilisatoren": "stabilisator", "stabiliseert": "stabiliseert", "stabiliseren": "stabiliser", "stabilisering": "stabiliser", "stabiliteit": "stabiliteit", "stabu": "stabu", "stad": "stad", "stadhuis": "stadhuis", "stadia": "stadia", "stadig": "stadig", "stadion": "stadion", "stadium": "stadium", "stadje": "stadj", "stads": "stad", "stadsbestuur": "stadsbestur", "stadsbewoners": "stadsbewoner", "stadsbussen": "stadsbuss", "stadscentra": "stadscentra", "stadsdeel": "stadsdel", "stadsdeelbestuurders": "stadsdeelbestuurder", "stadsdeelraad": "stadsdeelrad", "stadsdelen": "stadsdel", "stadsdistributiecentra": "stadsdistributiecentra", "stadsdistributiecentrum": "stadsdistributiecentrum", "stadsgas": "stadsgas", "stadsgebieden": "stadsgebied", "stadsgewest": "stadsgewest", "stadsgezicht": "stadsgezicht", "stadsgezichten": "stadsgezicht", "stadslaboratorium": "stadslaboratorium", "stadslandschappen": "stadslandschapp", "stadslucht": "stadslucht", "stadspark": "stadspark", "stadspartij": "stadspartij", "stadsrand": "stadsrand", "stadsregio": "stadsregio", "stadsreiniging": "stadsrein", "stadsreinigingsdienst": "stadsreinigingsdienst", "stadsschouwburg": "stadsschouwburg", "stadstuin": "stadstuin", "stadsuitbreiding": "stadsuitbreid", "stadsuitleglocaties": "stadsuitleglocaties", "stadsvernieuwing": "stadsvernieuw", "stadsvervoer": "stadsvervoer", "stadsverwarming": "stadsverwarm", "stadsverwarmingscentrale": "stadsverwarmingscentral", "stadsverwarmingsnetten": "stadsverwarmingsnet", "stadsverwarmingsproject": "stadsverwarmingsproject", "stadswarmte": "stadswarmt", "stadswerk": "stadswerk", "stadswijk": "stadswijk", "städtische": "stadtisch", "stadtwerke": "stadtwerk", "staf": "staf", "staffe": "staff", "staffelaer": "staffelaer", "staffelaers": "staffelaer", "stafmedewerker": "stafmedewerker", "stagnatie": "stagnatie", "stagneert": "stagneert", "stagneren": "stagner", "staiger": "staiger", "stainless": "stainles", "stak": "stak", "staken": "stak", "staking": "staking", "stakingswinst": "stakingswinst", "stal": "stal", "stalen": "stal", "stall": "stall", "stallen": "stall", "stallucht": "stallucht", "stalmest": "stalmest", "stalsysteem": "stalsystem", "stalsystemen": "stalsystem", "staltijd": "staltijd", "stam": "stam", "stamelde": "stameld", "stamelend": "stamel", "stamelende": "stamel", "stamgenoten": "stamgenot", "stamhoofden": "stamhoofd", "stamhouders": "stamhouder", "stamhoudertjes": "stamhoudertjes", "stammen": "stamm", "stammende": "stammend", "stamoudsten": "stamoudst", "stampen": "stamp", "stampende": "stampend", "stampte": "stampt", "stamrozen": "stamroz", "stamt": "stamt", "stan": "stan", "stand": "stand", "standaard": "standaard", "standaardadvisering": "standaardadviser", "standaardcomponenten": "standaardcomponent", "standaardconstructie": "standaardconstructie", "standaarden": "standaard", "standaardgevallen": "standaardgevall", "standaardisatie": "standaardisatie", "standaardiseren": "standaardiser", "standaardisering": "standaardiser", "standaardkast": "standaardkast", "standaardmaatregelenpakket": "standaardmaatregelenpakket", "standaardpakket": "standaardpakket", "standaardspectrum": "standaardspectrum", "standaarduitvoering": "standaarduitvoer", "standaardverpakking": "standaardverpak", "standaardwoning": "standaardwon", "standaardzonneboiler": "standaardzonneboiler", "standardisation": "standardisation", "standardization": "standardization", "standards": "standard", "standbeelden": "standbeeld", "standplaatsen": "standplaats", "standpunt": "standpunt", "standpunten": "standpunt", "stands": "stand", "standsverschil": "standsverschil", "standtijd": "standtijd", "stank": "stank", "stankbeleid": "stankbeleid", "stankbestrijding": "stankbestrijd", "stankbrief": "stankbrief", "stankcirkels": "stankcirkel", "stankhinder": "stankhinder", "stankklachten": "stankklacht", "stankmoleculen": "stankmolecul", "stankoverlast": "stankoverlast", "stankproblemen": "stankproblem", "stankreductie": "stankreductie", "stankverwijdering": "stankverwijder", "stankvrij": "stankvrij", "stanley": "stanley", "stans": "stan", "stansmachines": "stansmachines", "stap": "stap", "stapel": "stapel", "stapelbare": "stapel", "stapelde": "stapeld", "stapelden": "stapeld", "stapelend": "stapel", "stapelgek": "stapelgek", "stapeling": "stapel", "stapelingen": "stapel", "stapels": "stapel", "stapelt": "stapelt", "stappen": "stapp", "stappenplan": "stappenplan", "stappenschema": "stappenschema", "stapsgewijs": "stapsgewijs", "stapsgewijze": "stapsgewijz", "stapsproces": "stapsproces", "stapt": "stapt", "stapte": "stapt", "stapten": "stapt", "stapvoets": "stapvoet", "stapvoetse": "stapvoet", "star": "star", "stardrain": "stardrain", "staren": "star", "starend": "starend", "starende": "starend", "starends": "starend", "starheid": "starheid", "staring": "staring", "staringcentrum": "staringcentrum", "starke": "stark", "starre": "starr", "starrelen": "starrel", "starrelingen": "starrel", "starreluchten": "starrelucht", "start": "start", "startbaan": "startban", "startbanen": "startban", "startcapaciteit": "startcapaciteit", "starten": "start", "startende": "startend", "starters": "starter", "startersfonds": "startersfond", "startkapitaal": "startkapital", "startnota": "startnota", "startnotitie": "startnotitie", "startpunt": "startpunt", "starts": "start", "startsein": "startsein", "startte": "start", "startvermogen": "startvermog", "state": "stat", "statement": "statement", "staten": "stat", "statenfractie": "statenfractie", "statenleden": "statenled", "statenlid": "statenlid", "statenpad": "statenpad", "statens": "staten", "states": "states", "statiegeld": "statiegeld", "statiegeldflessen": "statiegeldfless", "statiegeldregelingen": "statiegeldregel", "statiegeldsysteeem": "statiegeldsysteeem", "statiegeldsysteem": "statiegeldsystem", "station": "station", "stationair": "stationair", "stationaire": "stationair", "stationeren": "stationer", "stations": "station", "statische": "statisch", "statistiek": "statistiek", "statistisch": "statistisch", "statistische": "statistisch", "statsnaett": "statsnaett", "statsnett": "statsnett", "statuette": "statuet", "status": "status", "statussymbool": "statussymbol", "staudinger": "staudinger", "staven": "stav", "stavoren": "stavor", "stawel": "stawel", "stb": "stb", "stcrt": "stcrt", "ste": "ste", "stedebouw": "stedebouw", "stedebouwers": "stedebouwer", "stedebouwkundig": "stedebouwkund", "stedebouwkundige": "stedebouwkund", "stedebouwkundigen": "stedebouwkund", "stedelijk": "stedelijk", "stedelijke": "stedelijk", "stedelingen": "stedel", "steden": "sted", "stedenbeleid": "stedenbeleid", "stedendriehoek": "stedendriehoek", "stee": "stee", "steeds": "sted", "steeg": "steg", "steek": "stek", "steekpenningen": "steekpenn", "steekproef": "steekproef", "steekproefonderzoek": "steekproefonderzoek", "steekproefsgewijs": "steekproefsgewijs", "steekproeven": "steekproev", "steekt": "steekt", "steel": "stel", "steelsgewijs": "steelsgewijs", "steen": "sten", "steenachtig": "steenacht", "steenachtige": "steenacht", "steenbergen": "steenberg", "steenblokken": "steenblok", "steenbrugge": "steenbrugg", "steenderen": "steender", "steendijkpolder": "steendijkpolder", "steenenhoek": "steenenhoek", "steenfabriek": "steenfabriek", "steenfabrieken": "steenfabriek", "steengaasstellers": "steengaassteller", "steengroeve": "steengroev", "steengroeven": "steengroev", "steenhard": "steenhard", "steenkolenmijn": "steenkolenmijn", "steenkool": "steenkol", "steenkoolbranden": "steenkoolbrand", "steenkoolderivaten": "steenkoolderivat", "steenkooleenheden": "steenkoolen", "steenkoollagen": "steenkoollag", "steenkoolreserves": "steenkoolreserves", "steenkoolsoort": "steenkoolsoort", "steenkoolteerdestillaat": "steenkoolteerdestillat", "steenkoolteeroliedestilaat": "steenkoolteeroliedestilat", "steenkoolteeroliedestillaat": "steenkoolteeroliedestillat", "steenkoolwasserijen": "steenkoolwasserij", "steenkorrel": "steenkorrel", "steenlaag": "steenlag", "steenmassa": "steenmassa", "steenpuin": "steenpuin", "steentje": "steentj", "steenwol": "steenwol", "steenwolafval": "steenwolafval", "steenwolbroodjes": "steenwolbroodjes", "steenwolfabrikant": "steenwolfabrikant", "steenwolprodukten": "steenwolprodukt", "steenwolresten": "steenwolrest", "steenzout": "steenzout", "steenzoutformaties": "steenzoutformaties", "steering": "steering", "stef": "stef", "steg": "steg", "stegeman": "stegeman", "stegen": "steg", "stegeren": "steger", "steigerbekledingen": "steigerbekled", "steigers": "steiger", "steil": "steil", "steile": "steil", "stein": "stein", "steinbeis": "steinbeis", "stekel": "stekel", "stekelenburg": "stekelenburg", "stekelstaarten": "stekelstaart", "steken": "stek", "stekende": "stekend", "stel": "stel", "stelcon": "stelcon", "stelde": "steld", "stelden": "steld", "stelen": "stel", "stelende": "stelend", "stellen": "stell", "stellend": "stellend", "stellig": "stellig", "stelligste": "stelligst", "stelling": "stelling", "stellingen": "stelling", "stellingname": "stellingnam", "stelsel": "stelsel", "stelselmatig": "stelselmat", "stelselmatigs": "stelselmat", "stelsels": "stelsel", "stelt": "stelt", "stem": "stem", "stembuiging": "stembuig", "stemde": "stemd", "stemden": "stemd", "stemlijst": "stemlijst", "stemmen": "stemm", "stemmenwinst": "stemmenwinst", "stemmers": "stemmer", "stemmetje": "stemmetj", "stemmetjes": "stemmetjes", "stemming": "stemming", "stemmingen": "stemming", "stempel": "stempel", "stempeldurchdrückprüfung": "stempeldurchdruckprufung", "stemrecht": "stemrecht", "stemt": "stemt", "stenen": "sten", "stengelen": "stengel", "stengels": "stengel", "stenig": "stenig", "stephanie": "stephanie", "stephanopoulos": "stephanopoulos", "steppe": "stepp", "steppen": "stepp", "ster": "ster", "stereo": "stereo", "sterf": "sterf", "stèrf": "stèrf", "sterfbed": "sterfbed", "sterfgevallen": "sterfgevall", "sterft": "sterft", "sterfte": "sterft", "sterftecijfers": "sterftecijfer", "sterieler": "sterieler", "steriliteit": "steriliteit", "sterin": "sterin", "sterk": "sterk", "sterke": "sterk", "sterkende": "sterkend", "sterker": "sterker", "sterkere": "sterker", "sterkers": "sterker", "sterksel": "sterksel", "sterkst": "sterkst", "sterkste": "sterkst", "sterkte": "sterkt", "sterkteklasse": "sterkteklas", "sterlab": "sterlab", "sterlabcertificaat": "sterlabcertificat", "sterling": "sterling", "sterren": "sterr", "sterrenzeef": "sterrenzef", "sterretje": "sterretj", "sterrollen": "sterroll", "sterven": "sterv", "stervende": "stervend", "stervensangst": "stervensangst", "sterving": "sterving", "stervingen": "sterving", "steun": "steun", "steunde": "steund", "steunden": "steund", "steunen": "steun", "steunpunt": "steunpunt", "steunpunten": "steunpunt", "steunt": "steunt", "steur": "steur", "stevaert": "stevaert", "steve": "stev", "stevensweert": "stevensweert", "stevent": "stevent", "stevig": "stevig", "stevige": "stevig", "steviger": "steviger", "stevigheid": "stevig", "stevigs": "stevig", "stevigste": "stevigst", "stevin": "stevin", "stewardship": "stewardship", "steyn": "steyn", "steyns": "steyn", "stg": "stg", "sti": "sti", "stiba": "stiba", "stibat": "stibat", "sticht": "sticht", "stichten": "sticht", "stichting": "stichting", "stichtse": "sticht", "sticker": "sticker", "stickers": "sticker", "stickertje": "stickertj", "stiebel": "stiebel", "stiefdochter": "stiefdochter", "stiefvaderlijke": "stiefvader", "stienstra": "stienstra", "stier": "stier", "stieren": "stier", "stierenhouderij": "stierenhouderij", "stierenvlees": "stierenvles", "stierf": "stierf", "stierven": "stierv", "stiet": "stiet", "stifoxydes": "stifoxydes", "stijf": "stijf", "stijfheid": "stijfheid", "stijfjes": "stijfjes", "stijfrechte": "stijfrecht", "stijfsel": "stijfsel", "stijgen": "stijg", "stijgend": "stijgend", "stijgende": "stijgend", "stijghoogten": "stijghoogt", "stijging": "stijging", "stijgpijp": "stijgpijp", "stijgt": "stijgt", "stijgzifter": "stijgzifter", "stijl": "stijl", "stijlvolle": "stijlvoll", "stijve": "stijv", "stik": "stik", "stikdonkere": "stikdonker", "stikken": "stik", "stikkend": "stikkend", "stikkende": "stikkend", "stiklachte": "stiklacht", "stikstof": "stikstof", "stikstofarme": "stikstofarm", "stikstofbemestingsadvies": "stikstofbemestingsadvies", "stikstofbevattende": "stikstofbevat", "stikstofconcentratie": "stikstofconcentratie", "stikstofconcentraties": "stikstofconcentraties", "stikstofdeeltjes": "stikstofdeeltjes", "stikstofdepositie": "stikstofdepositie", "stikstofdioxyde": "stikstofdioxyd", "stikstofdioxyden": "stikstofdioxyd", "stikstofemissie": "stikstofemissie", "stikstofemissies": "stikstofemissies", "stikstofgas": "stikstofgas", "stikstofgebruik": "stikstofgebruik", "stikstofgehalte": "stikstofgehalt", "stikstofgehalten": "stikstofgehalt", "stikstofgehaltes": "stikstofgehaltes", "stikstofgift": "stikstofgift", "stikstofheffing": "stikstofheff", "stikstofheffingen": "stikstofheff", "stikstofkunstmest": "stikstofkunstmest", "stikstofmonoxide": "stikstofmonoxid", "stikstofmonoxyde": "stikstofmonoxyd", "stikstofneerslag": "stikstofneerslag", "stikstofnorm": "stikstofnorm", "stikstofnormen": "stikstofnorm", "stikstofoverschot": "stikstofoverschot", "stikstofoxiden": "stikstofoxid", "stikstofoxyde": "stikstofoxyd", "stikstofoxyden": "stikstofoxyd", "stikstofoxydereductie": "stikstofoxydereductie", "stikstofoxydes": "stikstofoxydes", "stikstofproduktie": "stikstofproduktie", "stikstofreductie": "stikstofreductie", "stikstofrijke": "stikstofrijk", "stikstofuitscheiding": "stikstofuitscheid", "stikstofuitstoot": "stikstofuitstot", "stikstofverbindingen": "stikstofverbind", "stikstofverlies": "stikstofverlies", "stikstofverliezen": "stikstofverliez", "stikstofverontreiniging": "stikstofverontrein", "stikstofverwijdering": "stikstofverwijder", "stikt": "stikt", "stikte": "stikt", "stikten": "stikt", "stil": "stil", "stilde": "stild", "stilden": "stild", "stilgelegd": "stilgelegd", "stilgestaan": "stilgestan", "still": "still", "stille": "still", "stilleggen": "stillegg", "stillegging": "stillegg", "stillen": "still", "stiller": "stiller", "stilletjes": "stilletjes", "stillige": "stillig", "stilstaan": "stilstan", "stilstaande": "stilstaand", "stilstand": "stilstand", "stilt": "stilt", "stilte": "stilt", "stiltegebieden": "stiltegebied", "stilvallen": "stilvall", "stilzwijgen": "stilzwijg", "stilzwijgend": "stilzwijg", "stilzwijgende": "stilzwijg", "stilzwijgendheid": "stilzwijg", "stimad": "stimad", "stimaruba": "stimaruba", "stimev": "stimev", "stimulans": "stimulan", "stimulansen": "stimulans", "stimuleer": "stimuler", "stimuleert": "stimuleert", "stimuleren": "stimuler", "stimulerend": "stimuler", "stimulerende": "stimuler", "stimulering": "stimuler", "stimuleringregeling": "stimuleringregel", "stimulerings": "stimuler", "stimuleringsactiviteiten": "stimuleringsactiviteit", "stimuleringseffect": "stimuleringseffect", "stimuleringsfondsen": "stimuleringsfonds", "stimuleringsmaatregelen": "stimuleringsmaatregel", "stimuleringsprojecten": "stimuleringsproject", "stimuleringsregeling": "stimuleringsregel", "stimuleringsregelingen": "stimuleringsregel", "stimuli": "stimuli", "stinkende": "stinkend", "stinkt": "stinkt", "stirred": "stirred", "stive": "stiv", "stock": "stock", "stockholm": "stockholm", "stockholmse": "stockholm", "stoeiend": "stoeiend", "stoel": "stoel", "stoelen": "stoel", "stoep": "stoep", "stoer": "stoer", "stoere": "stoer", "stoet": "stoet", "stof": "stof", "stofabsorptiekolom": "stofabsorptiekolom", "stofbestrijdings": "stofbestrijd", "stofbestrijdingssystemen": "stofbestrijdingssystem", "stofbestrijdingstechnieken": "stofbestrijdingstechniek", "stofdeeltjes": "stofdeeltjes", "stofdichte": "stofdicht", "stofemissie": "stofemissie", "stofexplosies": "stofexplosies", "stoffen": "stoff", "stoffenbalans": "stoffenbalan", "stoffenbeleid": "stoffenbeleid", "stoffenrichtlijn": "stoffenrichtlijn", "stoffig": "stoffig", "stoffige": "stoffig", "stofgehalte": "stofgehalt", "stofgoud": "stofgoud", "stofgroep": "stofgroep", "stofgroepen": "stofgroep", "stofje": "stofj", "stofkeringssysteem": "stofkeringssystem", "stofkringloop": "stofkringlop", "stofmonitoring": "stofmonitor", "stofneerslag": "stofneerslag", "stofopbouw": "stofopbouw", "stofoverlast": "stofoverlast", "stofpercentage": "stofpercentag", "stofstudie": "stofstudie", "stofstudies": "stofstudies", "stofte": "stoft", "stofvang": "stofvang", "stofverzamelsysteem": "stofverzamelsystem", "stofvrij": "stofvrij", "stofvrijhouden": "stofvrijhoud", "stofwisseling": "stofwissel", "stofwolkverbranding": "stofwolkverbrand", "stofwolkvergassing": "stofwolkvergass", "stok": "stok", "stoken": "stok", "stoker": "stoker", "stokje": "stokj", "stokken": "stok", "stokoude": "stokoud", "stokpaardje": "stokpaardj", "stokstijf": "stokstijf", "stokte": "stokt", "stolde": "stold", "stolling": "stolling", "stolp": "stolp", "stolwijk": "stolwijk", "stom": "stom", "stòm": "stòm", "stomen": "stom", "stomme": "stomm", "stommelde": "stommeld", "stommelen": "stommel", "stommeling": "stommel", "stomp": "stomp", "stompt": "stompt", "stompte": "stompt", "stond": "stond", "stonden": "stond", "stonken": "stonk", "stoof": "stof", "stoofde": "stoofd", "stook": "stok", "stookgas": "stookgas", "stookgasreiniging": "stookgasrein", "stookgedrag": "stookgedrag", "stookinstallaties": "stookinstallaties", "stookkar": "stookkar", "stookkosten": "stookkost", "stookolie": "stookolie", "stookrendement": "stookrendement", "stookt": "stookt", "stookte": "stookt", "stookten": "stookt", "stoom": "stom", "stoomden": "stoomd", "stoominstallaties": "stoominstallaties", "stoomketel": "stoomketel", "stoomketels": "stoomketel", "stoomleidingen": "stoomleid", "stoomsysteem": "stoomsystem", "stoomtemperatuur": "stoomtemperatur", "stoomtram": "stoomtram", "stoomturbine": "stoomturbin", "stoomverbruikers": "stoomverbruiker", "stoomvorming": "stoomvorm", "stoor": "stor", "stóor": "stor", "stoort": "stoort", "stoot": "stot", "stootje": "stootj", "stootrand": "stootrand", "stootte": "stot", "stootten": "stot", "stootverliezen": "stootverliez", "stop": "stop", "stopcontact": "stopcontact", "stopgezet": "stopgezet", "stoppelde": "stoppeld", "stoppen": "stopp", "stopt": "stopt", "stopte": "stopt", "stopverdrag": "stopverdrag", "stopzetten": "stopzet", "stopzetting": "stopzet", "storage": "storag", "storebrand": "storebrand", "storen": "stor", "storende": "storend", "stores": "stores", "storing": "storing", "storingen": "storing", "storingsoorzaken": "storingsoorzak", "storingsvrij": "storingsvrij", "stork": "stork", "storm": "storm", "stormachtige": "stormacht", "stormbestendig": "stormbestend", "stormdagen": "stormdag", "stormde": "stormd", "stormdeiningen": "stormdein", "stormen": "storm", "stormende": "stormend", "stormink": "stormink", "stormt": "stormt", "stormvlaag": "stormvlag", "stormvlagen": "stormvlag", "stormvloeden": "stormvloed", "stormvloedkering": "stormvloedker", "stormvogels": "stormvogel", "stormwind": "stormwind", "stormzee": "stormzee", "stort": "stort", "stortafval": "stortafval", "stortbaar": "stortbar", "stortbeleid": "stortbeleid", "stortbesluit": "stortbesluit", "stortbuien": "stortbui", "stortcapaciteit": "stortcapaciteit", "storten": "stort", "stortende": "stortend", "stortgas": "stortgas", "stortgascentra": "stortgascentra", "stortgasinfo": "stortgasinfo", "stortgasinstallaties": "stortgasinstallaties", "stortgasmonsters": "stortgasmonster", "stortgasproduktie": "stortgasproduktie", "stortgasprojecten": "stortgasproject", "stortgaswinning": "stortgaswinn", "stortgelden": "stortgeld", "stortgewichten": "stortgewicht", "stortheffing": "stortheff", "storting": "storting", "stortingen": "storting", "stortinrichtingen": "stortinricht", "stortkosten": "stortkost", "stortlichaam": "stortlicham", "stortlocaties": "stortlocaties", "stortplaats": "stortplat", "stortplaatsen": "stortplaats", "stortplaatsexploitanten": "stortplaatsexploitant", "stortplaatsgebonden": "stortplaatsgebond", "stortput": "stortput", "stortregen": "stortreg", "stortregende": "stortreg", "stortsteen": "stortsten", "storttarief": "storttarief", "storttarieven": "storttariev", "stortte": "stort", "storttechniek": "storttechniek", "stortten": "stort", "stortverbod": "stortverbod", "stortverboden": "stortverbod", "stortvloed": "stortvloed", "stortvloeden": "stortvloed", "stortvolume": "stortvolum", "stortvoorschriften": "stortvoorschrift", "stortwet": "stortwet", "stoten": "stot", "stotend": "stotend", "stotende": "stotend", "stotterde": "stotterd", "stotteren": "stotter", "stotterend": "stotter", "stout": "stout", "stoute": "stout", "stoven": "stov", "straal": "stral", "straalbreken": "straalbrek", "straalbrekende": "straalbrek", "straalde": "straald", "straalden": "straald", "straalgrit": "straalgrit", "straalmotoren": "straalmotor", "straalnet": "straalnet", "straalt": "straalt", "straat": "strat", "straatbeeld": "straatbeeld", "straaten": "strat", "straathandelaren": "straathandelar", "straatje": "straatj", "straatjongen": "straatjong", "straatkeien": "straatkei", "straatklinkers": "straatklinker", "straatlaag": "straatlag", "straatlantaarns": "straatlantaarn", "straatplassen": "straatplass", "straatsburg": "straatsburg", "straatsteen": "straatsten", "straatstenen": "straatsten", "straattaal": "straattal", "straattoilet": "straattoilet", "straatvegers": "straatveger", "straf": "straf", "strafbaar": "strafbar", "strafbare": "strafbar", "strafbepaling": "strafbepal", "strafcommissie": "strafcommissie", "straffe": "straff", "straffeloos": "straffelos", "straffen": "straff", "strafheffing": "strafheff", "strafheffingen": "strafheff", "strafrecht": "strafrecht", "strafrechtelijk": "strafrecht", "strafrechtelijke": "strafrecht", "strafrechtelike": "strafrechtelik", "strafrechter": "strafrechter", "straft": "straft", "strafuitsluitingsgronden": "strafuitsluitingsgrond", "strafzaak": "strafzak", "straight": "straight", "strain": "strain", "strak": "strak", "strakheid": "strakheid", "strakke": "strak", "strakker": "strakker", "straks": "strak", "stralen": "stral", "stralenbescherming": "stralenbescherm", "stralenbeschermingsrecht": "stralenbeschermingsrecht", "stralend": "stralend", "stralende": "stralend", "straling": "straling", "stralingbescherming": "stralingbescherm", "stralingen": "straling", "stralingsdivisie": "stralingsdivisie", "stralingsmeetnetten": "stralingsmeetnet", "stralingsnormen": "stralingsnorm", "stralingsrisico": "stralingsrisico", "stram": "stram", "stramproy": "stramproy", "strand": "strand", "stranden": "strand", "strandingen": "stranding", "strategic": "strategic", "strategie": "strategie", "strategiedocument": "strategiedocument", "strategieën": "strategieen", "strategies": "strategies", "strategieschets": "strategieschet", "strategisch": "strategisch", "strategische": "strategisch", "strategy": "strategy", "stratem": "stratem", "straten": "strat", "stratosfeer": "stratosfer", "stratosferische": "stratosferisch", "stream": "stream", "streden": "stred", "streed": "stred", "streefbeelden": "streefbeeld", "streefcijfer": "streefcijfer", "streefcijfers": "streefcijfer", "streefdatum": "streefdatum", "streefde": "streefd", "streefden": "streefd", "streefgetal": "streefgetal", "streefkerk": "streefkerk", "streefnormen": "streefnorm", "streeft": "streeft", "streefwaarde": "streefwaard", "streefwaarden": "streefwaard", "streek": "strek", "streekgewest": "streekgewest", "streekplan": "streekplan", "streekplanherziening": "streekplanherzien", "streekplannen": "streekplann", "streekvervoer": "streekvervoer", "streelde": "streeld", "streelden": "streeld", "streep": "strep", "streepje": "streepj", "streepjes": "streepjes", "strekdam": "strekdam", "streken": "strek", "strekken": "strek", "strekkende": "strekkend", "strekking": "strekking", "strekkingen": "strekking", "strekt": "strekt", "strekte": "strekt", "strelen": "strel", "strelend": "strelend", "strelende": "strelend", "streling": "streling", "stremmen": "stremm", "stremming": "stremming", "streng": "streng", "strenge": "streng", "strenger": "strenger", "strengere": "strenger", "strengste": "strengst", "strepen": "strep", "strepende": "strepend", "stress": "stres", "stressverschijnselen": "stressverschijnsel", "stretchfolie": "stretchfolie", "streven": "strev", "streving": "streving", "stribbelde": "stribbeld", "striemen": "striem", "striemt": "striemt", "strijd": "strijd", "strijdbare": "strijdbar", "strijden": "strijd", "strijdende": "strijdend", "strijdig": "strijdig", "strijdigheid": "strijdig", "strijdkrachten": "strijdkracht", "strijdlust": "strijdlust", "strijdperk": "strijdperk", "strijdpunt": "strijdpunt", "strijdster": "strijdster", "strijdt": "strijdt", "strijken": "strijk", "strijkende": "strijkend", "strijker": "strijker", "strikjes": "strikjes", "strikken": "strik", "strikt": "strikt", "strikte": "strikt", "strikter": "strikter", "striktere": "strikter", "stringent": "stringent", "stringente": "stringent", "stringenter": "stringenter", "stringentere": "stringenter", "strip": "strip", "strippen": "stripp", "stripping": "stripping", "strips": "strip", "stripverhaal": "stripverhal", "stro": "stro", "stroef": "stroef", "stroeve": "stroev", "strofilter": "strofilter", "strofilterinstallatie": "strofilterinstallatie", "strohoed": "strohoed", "strohoeden": "strohoed", "stroken": "strok", "strolaag": "strolag", "stromeinspeisung": "stromeinspeisung", "stromen": "strom", "stromende": "stromend", "stroming": "stroming", "stromingen": "stroming", "stromings": "stroming", "stromingsdynamica": "stromingsdynamica", "stromingseigenschappen": "stromingseigenschapp", "stromingsenergie": "stromingsenergie", "stromingsmetingen": "stromingsmet", "strompelde": "strompeld", "strompelden": "strompeld", "strompelen": "strompel", "strompelend": "strompel", "strontium": "strontium", "strooi": "strooi", "strooiapparatuur": "strooiapparatur", "strooibaar": "strooibar", "strooibeleid": "strooibeleid", "strooibreedte": "strooibreedt", "strooiden": "strooid", "strooien": "strooi", "strooier": "strooier", "strooigegevens": "strooigegeven", "strooimachines": "strooimachines", "strooimateriaal": "strooimateriaal", "strooiopdracht": "strooiopdracht", "strooiparelen": "strooiparel", "strooiplaat": "strooiplat", "strooiroute": "strooirout", "strooit": "strooit", "strooivlakken": "strooivlak", "strooiwagen": "strooiwag", "strooiwagens": "strooiwagen", "strooizout": "strooizout", "strook": "strok", "strookt": "strookt", "stroom": "strom", "stroomafwaarts": "stroomafwaart", "stroombedrijven": "stroombedrijv", "stroombesparende": "stroombespar", "stroomdal": "stroomdal", "stroomde": "stroomd", "stroomdiagrammen": "stroomdiagramm", "stroomgebied": "stroomgebied", "stroomgebieden": "stroomgebied", "stroomlijnen": "stroomlijn", "stroomlijning": "stroomlijn", "stroomopbrengst": "stroomopbrengst", "stroomopwaarts": "stroomopwaart", "stroomopwekking": "stroomopwek", "stroomprijs": "stroomprijs", "stroomproducent": "stroomproducent", "stroomproducenten": "stroomproducent", "stroomproduktiebedrijven": "stroomproduktiebedrijv", "stroomschema": "stroomschema", "stroomsector": "stroomsector", "stroomsnelheden": "stroomsnel", "stroomsnelheid": "stroomsnel", "stroomsterkte": "stroomsterkt", "stroomt": "stroomt", "stroomtarief": "stroomtarief", "stroomtarieven": "stroomtariev", "stroomverbruik": "stroomverbruik", "stroomverbruikers": "stroomverbruiker", "stroomversnelling": "stroomversnell", "stroomverzorging": "stroomverzorg", "stroomvoerend": "stroomvoer", "stroomvoorziening": "stroomvoorzien", "stroomvoorzieningssysteem": "stroomvoorzieningssystem", "stroomvreters": "stroomvreter", "stroomwerk": "stroomwerk", "stroomwonden": "stroomwond", "stropellets": "stropellet", "stroperij": "stroperij", "stropers": "stroper", "strozak": "strozak", "strubbelingen": "strubbel", "structureel": "structurel", "structureert": "structureert", "structurele": "structurel", "structuren": "structur", "structureren": "structurer", "structurerende": "structurer", "structures": "structures", "structuur": "structur", "structuurfondsen": "structuurfonds", "structuurmateriaal": "structuurmateriaal", "structuurplan": "structuurplan", "structuurschema": "structuurschema", "structuurschets": "structuurschet", "structuurschetsen": "structuurschets", "structuurvennootschap": "structuurvennootschap", "structuurverandering": "structuurverander", "structuurverbetering": "structuurverbeter", "structuurversterking": "structuurversterk", "structuurvisie": "structuurvisie", "struikelblok": "struikelblok", "struikelblokken": "struikelblok", "struikelde": "struikeld", "struikelend": "struikel", "struiken": "struik", "struisveren": "struisver", "struisvogelfokkerij": "struisvogelfokkerij", "sts": "sts", "stuart": "stuart", "stubbing": "stubbing", "studdrain": "studdrain", "studeerde": "studeerd", "studeerkamer": "studeerkamer", "studeert": "studeert", "student": "student", "studenten": "student", "studentenflats": "studentenflat", "studentenkorting": "studentenkort", "studentikoos": "studentikos", "studentikoze": "studentikoz", "students": "student", "studeren": "studer", "studerend": "studer", "studerende": "studer", "studie": "studie", "studiebijeenkomst": "studiebijeenkomst", "studiecentrum": "studiecentrum", "studieclub": "studieclub", "studieclubs": "studieclub", "studieconferentie": "studieconferentie", "studiedag": "studiedag", "studiegenoot": "studiegenot", "studiegroep": "studiegroep", "studiegroepen": "studiegroep", "studiekameraad": "studiekamerad", "studiekosten": "studiekost", "studiekracht": "studiekracht", "studiemiddag": "studiemiddag", "studiemorgen": "studiemorg", "studiën": "studien", "studieopdracht": "studieopdracht", "studiepocket": "studiepocket", "studieprogramma": "studieprogramma", "studies": "studies", "studievereniging": "studieveren", "studievrienden": "studievri", "studio": "studio", "study": "study", "stug": "stug", "stuifbeleid": "stuifbeleid", "stuifbestrijder": "stuifbestrijder", "stuifbestrijding": "stuifbestrijd", "stuikten": "stuikt", "stuipen": "stuip", "stuit": "stuit", "stuiten": "stuit", "stuiteren": "stuiter", "stuitte": "stuit", "stuivend": "stuivend", "stuk": "stuk", "stukadoors": "stukador", "stukbeleid": "stukbeleid", "stukje": "stukj", "stukjes": "stukjes", "stukken": "stuk", "stukproject": "stukproject", "stuks": "stuk", "stuksafvalverwerking": "stuksafvalverwerk", "stumpel": "stumpel", "stumpers": "stumper", "stupefactie": "stupefactie", "stupéfactie": "stupefactie", "sturen": "stur", "sturend": "sturend", "sturende": "sturend", "sturing": "sturing", "sturingsmodel": "sturingsmodel", "sturingsorganisatie": "sturingsorganisatie", "stuurde": "stuurd", "stuurgroep": "stuurgroep", "stuurt": "stuurt", "stuvex": "stuvex", "stuw": "stuw", "stuwdam": "stuwdam", "stuwdammen": "stuwdamm", "stuwden": "stuwd", "stuwen": "stuw", "stuwmeren": "stuwmer", "stuwt": "stuwt", "stw": "stw", "stybenex": "stybenex", "styreen": "styren", "styreenfabriek": "styreenfabriek", "styreenmonomeer": "styreenmonomer", "styrodur": "styrodur", "styropor": "styropor", "sub": "sub", "subat": "subat", "subcontracten": "subcontract", "subdek": "subdek", "subitrek": "subitrek", "subjectieve": "subjectiev", "subliem": "subliem", "submerged": "submerged", "suboptimale": "suboptimal", "subsidie": "subsidie", "subsidieaanvraag": "subsidieaanvrag", "subsidiebedrag": "subsidiebedrag", "subsidiebedragen": "subsidiebedrag", "subsidiebeleid": "subsidiebeleid", "subsidiebijdrage": "subsidiebijdrag", "subsidiebudget": "subsidiebudget", "subsidieerbare": "subsidieer", "subsidieert": "subsidieert", "subsidiefraude": "subsidiefraud", "subsidiegeld": "subsidiegeld", "subsidiegelden": "subsidiegeld", "subsidiemogelijkheden": "subsidiemog", "subsidiepot": "subsidiepot", "subsidieprogramma": "subsidieprogramma", "subsidieregeling": "subsidieregel", "subsidieregelingen": "subsidieregel", "subsidiëren": "subsidier", "subsidiëring": "subsidier", "subsidies": "subsidies", "subsidiesysteem": "subsidiesystem", "subsone": "subson", "substances": "substances", "substantie": "substantie", "substantieel": "substantieel", "substantiële": "substantiel", "substantiëler": "substantieler", "substitutie": "substitutie", "substraat": "substrat", "substraatproduktie": "substraatproduktie", "subterranea": "subterranea", "subtiele": "subtiel", "subtiliteit": "subtiliteit", "subtropen": "subtrop", "succes": "succes", "successen": "success", "succesverhaal": "succesverhal", "succesvol": "succesvol", "succesvolle": "succesvoll", "succesvoller": "succesvoller", "suction": "suction", "süd": "sud", "sudhölter": "sudholter", "sudimara": "sudimara", "südwind": "sudwind", "suf": "suf", "suffe": "suff", "suffen": "suff", "suffende": "suffend", "sufjes": "sufjes", "suft": "suft", "sufte": "suft", "sugar": "sugar", "suggereerde": "suggereerd", "suggereert": "suggereert", "suggererend": "suggerer", "suggestie": "suggestie", "suggesties": "suggesties", "suggestieve": "suggestiev", "suidman": "suidman", "suijkerbuijk": "suijkerbuijk", "suiker": "suiker", "suikerbasis": "suikerbasis", "suikerbelangen": "suikerbelang", "suikerbieten": "suikerbiet", "suikerfabriek": "suikerfabriek", "suikerindustrie": "suikerindustrie", "suikerproduktie": "suikerproduktie", "suikerriet": "suikerriet", "suikers": "suiker", "suikerunie": "suikerunie", "suisde": "suisd", "suite": "suit", "suizeloos": "suizelos", "suizen": "suiz", "suizend": "suizend", "suizende": "suizend", "sujet": "sujet", "sukabumi": "sukabumi", "sukkar": "sukkar", "sukkelde": "sukkeld", "sukkeldrafje": "sukkeldrafj", "sukkelen": "sukkel", "sukkelend": "sukkel", "sukkelig": "sukkel", "sulawesi": "sulawesi", "sulfaat": "sulfat", "sulfaatemissie": "sulfaatemissie", "sulfaatlignine": "sulfaatlignin", "sulfaatreductie": "sulfaatreductie", "sulfide": "sulfid", "sulfiet": "sulfiet", "sulfonaten": "sulfonat", "sullivan": "sullivan", "sulo": "sulo", "sulpheric": "sulpheric", "sumatra": "sumatra", "sumimoto": "sumimoto", "sumito": "sumito", "sumitomo": "sumitomo", "summerhayes": "summerhayes", "summiere": "summier", "sump": "sump", "sun": "sun", "sundsvall": "sundsvall", "sunergy": "sunergy", "sung": "sung", "sunny": "sunny", "suparator": "suparator", "suparlesc": "suparlesc", "super": "super", "superbe": "superb", "superbenzine": "superbenzin", "supercycle": "supercycl", "superdex": "superdex", "superdunne": "superdunn", "superfund": "superfund", "supergeheime": "supergeheim", "supergeleider": "supergeleider", "superieuren": "superieur", "superioriteit": "superioriteit", "superkritisch": "superkritisch", "superkritische": "superkritisch", "supermarkt": "supermarkt", "supermarkten": "supermarkt", "supermarktketen": "supermarktket", "supermarktketens": "supermarktketen", "superphénix": "superphenix", "supersnelle": "supersnell", "supersone": "superson", "supersonische": "supersonisch", "supertanker": "supertanker", "superverhitte": "superverhit", "supervisie": "supervisie", "superzuinige": "superzuin", "supplies": "supplies", "supply": "supply", "support": "support", "supranationale": "supranational", "surcéance": "surceanc", "surfactanten": "surfactant", "suri": "suri", "surinaame": "surinam", "surinaamse": "surinam", "suriname": "surinam", "surinamers": "surinamer", "surnumerair": "surnumerair", "surséance": "surseanc", "surveillances": "surveillances", "survey": "survey", "susan": "susan", "susceptibel": "susceptibel", "suspended": "suspended", "sussen": "suss", "sussex": "sussex", "sustainability": "sustainability", "sustainable": "sustainabl", "suste": "sust", "sustech": "sustech", "susten": "sust", "susteren": "suster", "suwid": "suwid", "sv": "sv", "svedala": "svedala", "svend": "svend", "svenska": "svenska", "svm": "svm", "svn": "svn", "sw": "sw", "swaabs": "swab", "swaan": "swan", "swaay": "sway", "swage": "swag", "swagelinen": "swagelin", "swagelining": "swagelin", "swaghers": "swagher", "swatch": "swatch", "swéér": "swer", "swell": "swell", "swig": "swig", "swijg": "swijg", "swill": "swill", "swing": "swing", "swiss": "swis", "switch": "switch", "switchgrass": "switchgras", "symbiose": "symbios", "symboliek": "symboliek", "symbolisch": "symbolisch", "symboliseren": "symboliser", "symbool": "symbol", "symboolwerking": "symboolwerk", "sympathie": "sympathie", "sympathieën": "sympathieen", "sympathiek": "sympathiek", "sympathieke": "sympathiek", "sympathieloze": "sympathieloz", "sympathisanten": "sympathisant", "sympathisch": "sympathisch", "sympathische": "sympathisch", "sympathiseerde": "sympathiseerd", "sympatisch": "sympatisch", "symposia": "symposia", "symposium": "symposium", "symposiumbundel": "symposiumbundel", "symposiumprogramma": "symposiumprogramma", "symposiumverslag": "symposiumverslag", "symptomen": "symptom", "symptoom": "symptom", "symptoombestrijding": "symptoombestrijd", "syndroom": "syndrom", "synerchem": "synerchem", "synergie": "synergie", "synergieën": "synergieen", "syngas": "syngas", "synoniem": "synoniem", "synthese": "synthes", "synthesegas": "synthesegas", "syntheses": "syntheses", "synthesis": "synthesis", "synthetisch": "synthetisch", "synthetische": "synthetisch", "systeem": "system", "systeemeisen": "systeemeis", "systeemkeuze": "systeemkeuz", "systeemleveranciers": "systeemleverancier", "systeemontwikkelaar": "systeemontwikkelar", "systeemrendement": "systeemrendement", "systeemverliezen": "systeemverliez", "system": "system", "systematiek": "systematiek", "systematisch": "systematisch", "systematische": "systematisch", "systeme": "system", "systemen": "system", "systems": "system", "systemtechnik": "systemtechnik", "szw": "szw", "t": "t", "taag": "tag", "taaiere": "taaier", "taak": "tak", "taakgroep": "taakgroep", "taakstelling": "taakstell", "taakstellingen": "taakstell", "taal": "tal", "taartje": "taartj", "taartjes": "taartjes", "taartvormen": "taartvorm", "taastrup": "taastrup", "tabak": "tabak", "tabaksteelt": "tabaksteelt", "tabellen": "tabell", "table": "tabl", "tableau": "tableau", "tableaux": "tableaux", "tablier": "tablier", "taboe": "taboe", "tache": "tach", "tachtig": "tachtig", "tacis": "tacis", "tacke": "tack", "tackling": "tackling", "taco": "taco", "tacolijnen": "tacolijn", "tact": "tact", "tactloos": "tactlos", "tactloosheid": "tactlos", "tactloze": "tactloz", "tactvol": "tactvol", "tactvolle": "tactvoll", "tactvolst": "tactvolst", "taf": "taf", "tafel": "tafel", "tafeleend": "tafele", "tafelkleed": "tafelkled", "tafellakens": "tafellaken", "tafels": "tafel", "tafeltje": "tafeltj", "tafeltjes": "tafeltjes", "tafelzilver": "tafelzilver", "tafereel": "taferel", "tag": "tag", "tahiti": "tahiti", "tahitianen": "tahitian", "tailleur": "tailleur", "tailormade": "tailormad", "taishet": "taishet", "taiwan": "taiwan", "taiwanese": "taiwanes", "tak": "tak", "taken": "tak", "takeru": "takeru", "takje": "takj", "takkebomen": "takkebom", "takkeboomkimmen": "takkeboomkimm", "takken": "tak", "takkenbomen": "takkenbom", "takkenboomkimmen": "takkenboomkimm", "takkenkruinen": "takkenkruin", "takuma": "takuma", "tal": "tal", "talboom": "talbom", "talent": "talent", "talenten": "talent", "talentje": "talentj", "talks": "talk", "talloze": "talloz", "tallozer": "tallozer", "talmde": "talmd", "talrijk": "talrijk", "talrijke": "talrijk", "talud": "talud", "taluds": "talud", "tamelijk": "tamelijk", "tamil": "tamil", "tammer": "tammer", "tammere": "tammer", "tan": "tan", "tandartsen": "tandarts", "tandeknarsen": "tandeknars", "tandem": "tandem", "tandemcellen": "tandemcell", "tanden": "tand", "tandheelkunde": "tandheelkund", "tandwielkast": "tandwielkast", "tandwielkasten": "tandwielkast", "tandwieltje": "tandwieltj", "tanende": "tanend", "tangent": "tangent", "tanig": "tanig", "tank": "tank", "tankbezitters": "tankbezitter", "tankcleaning": "tankclean", "tankcontainers": "tankcontainer", "tankeigenaar": "tankeigenar", "tanken": "tank", "tanker": "tanker", "tankers": "tanker", "tankoverslag": "tankoverslag", "tanks": "tank", "tanksanering": "tanksaner", "tanksaneringsbedrijf": "tanksaneringsbedrijf", "tanksaneringsbedrijven": "tanksaneringsbedrijv", "tankslag": "tankslag", "tankstation": "tankstation", "tankstations": "tankstation", "tanktoestel": "tanktoestel", "tankwagon": "tankwagon", "tante": "tant", "tantelief": "tantelief", "tantes": "tantes", "tanzania": "tanzania", "tanzaniaanse": "tanzaniaan", "tapijt": "tapijt", "tapijtafval": "tapijtafval", "tapijten": "tapijt", "tapijtindustrie": "tapijtindustrie", "tapijtkleuren": "tapijtkleur", "tapijtonderzoek": "tapijtonderzoek", "tapijtresten": "tapijtrest", "tappatroon": "tappatron", "tappeling": "tappel", "tappende": "tappend", "tapte": "tapt", "tapuit": "tapuit", "tapwater": "tapwater", "target": "target", "targeted": "targeted", "tarief": "tarief", "tariefdifferentiatie": "tariefdifferentiatie", "tariefsverhoging": "tariefsverhog", "tariefverhoging": "tariefverhog", "tarieven": "tariev", "tariffs": "tariff", "tarra": "tarra", "tart": "tart", "tarwe": "tarw", "tarzana": "tarzana", "tas": "tas", "task": "task", "tassen": "tass", "tast": "tast", "tastbaar": "tastbar", "tastbare": "tastbar", "tasten": "tast", "tastend": "tastend", "tastende": "tastend", "tastte": "tast", "tastten": "tast", "tata": "tata", "tatatata": "tatatata", "taunus": "taunus", "taunusstein": "taunusstein", "tauw": "tauw", "tax": "tax", "taxaties": "taxaties", "taxen": "tax", "taxering": "taxer", "taxi": "taxi", "tbt": "tbt", "tc": "tc", "tcb": "tcb", "tcf": "tcf", "tcr": "tcr", "tdg": "tdg", "tdk": "tdk", "te": "te", "té": "te", "tea": "tea", "teak": "teak", "teakhout": "teakhout", "teakhoutbedrijf": "teakhoutbedrijf", "teakhoutplantages": "teakhoutplantages", "teakhoutpolis": "teakhoutpolis", "teakwood": "teakwod", "team": "team", "teamleden": "teamled", "teams": "team", "teamsters": "teamster", "teamwork": "teamwork", "teban": "teban", "tebodin": "tebodin", "tebuconazool": "tebuconazol", "tech": "tech", "techform": "techform", "technical": "technical", "technici": "technici", "techniek": "techniek", "technieken": "techniek", "technik": "technik", "techniplan": "techniplan", "technique": "technique", "techniques": "techniques", "technisch": "technisch", "technische": "technisch", "technischen": "technisch", "techno": "techno", "technologen": "technolog", "technologie": "technologie", "technologiebeleid": "technologiebeleid", "technologiecentrum": "technologiecentrum", "technologieën": "technologieen", "technologieland": "technologieland", "technologieprijs": "technologieprijs", "technologieprogramma": "technologieprogramma", "technologies": "technologies", "technologisch": "technologisch", "technologische": "technologisch", "technology": "technology", "technoport": "technoport", "tecnologie": "tecnologie", "tecto": "tecto", "ted": "ted", "teder": "teder", "tederder": "tederder", "tedere": "teder", "tederendaagse": "tederendag", "tederheden": "teder", "tederheid": "teder", "teelt": "teelt", "teelten": "teelt", "teeltjaar": "teeltjar", "teelttechnische": "teelttechnisch", "teeltvrije": "teeltvrij", "teemde": "teemd", "teer": "ter", "teerachtige": "teeracht", "teerder": "teerder", "teerheid": "teerheid", "teerhoudend": "teerhoud", "teerprodukten": "teerprodukt", "teerputten": "teerput", "teerrestanten": "teerrestant", "teers": "ter", "teertjes": "teertjes", "teesing": "teesing", "teflon": "teflon", "tegelen": "tegel", "tegelijk": "tegelijk", "tegelijkertijd": "tegelijkertijd", "tegels": "tegel", "tegemoet": "tegemoet", "tegemoetkoming": "tegemoetkom", "tegen": "teg", "tégen": "teg", "tegenaanvallen": "tegenaanvall", "tegendeel": "tegendel", "tegendruk": "tegendruk", "tegengaan": "tegengan", "tegengegaan": "tegengegan", "tegengehouden": "tegengehoud", "tegengekomen": "tegengekom", "tegengesproken": "tegengesprok", "tegengesteld": "tegengesteld", "tegengestelde": "tegengesteld", "tegengewerkt": "tegengewerkt", "tegenglimlachte": "tegenglimlacht", "tegenhangers": "tegenhanger", "tegenhield": "tegenhield", "tegenhouden": "tegenhoud", "tegenhoudt": "tegenhoudt", "tegenkwam": "tegenkwam", "tegenkwamen": "tegenkwam", "tegenoffensief": "tegenoffensief", "tegenop": "tegenop", "tegenover": "tegenover", "tegenovergestelde": "tegenovergesteld", "tegenpool": "tegenpol", "tegenprestatie": "tegenprestatie", "tegenslagen": "tegenslag", "tegenspraak": "tegensprak", "tegensprak": "tegensprak", "tegenspreekt": "tegenspreekt", "tegenspreken": "tegensprek", "tegenstand": "tegenstand", "tegenstander": "tegenstander", "tegenstanders": "tegenstander", "tegenstelling": "tegenstell", "tegenstrijdig": "tegenstrijd", "tegenstrijdige": "tegenstrijd", "tegenstrijdigheid": "tegenstrijd", "tegenstroom": "tegenstrom", "tégenvallen": "tegenvall", "tegenvallend": "tegenvall", "tegenvallende": "tegenvall", "tegenvaller": "tegenvaller", "tegenvallers": "tegenvaller", "tegenviel": "tegenviel", "tegenvoorbeelden": "tegenvoorbeeld", "tegenwerken": "tegenwerk", "tegenwicht": "tegenwicht", "tegenwoordig": "tegenwoord", "tegenwoordige": "tegenwoord", "tegenwoordigheid": "tegenwoord", "tegenzin": "tegenzin", "tegoeden": "tegoed", "teijin": "teijin", "teint": "teint", "teisterde": "teisterd", "teisteren": "teister", "teken": "tek", "tekenaar": "tekenar", "tekende": "tekend", "tekenden": "tekend", "tekenen": "teken", "tekenend": "teken", "tekening": "teken", "tekent": "tekent", "tekort": "tekort", "tekorten": "tekort", "tekortkomingen": "tekortkom", "tekortschieten": "tekortschiet", "tekortschietende": "tekortschiet", "tekst": "tekst", "teksten": "tekst", "tel": "tel", "telde": "teld", "tele": "tel", "telecom": "telecom", "telecommunicatie": "telecommunicatie", "telecommunicatieapparatuur": "telecommunicatieapparatur", "telecommunicatiebedrijven": "telecommunicatiebedrijv", "telecommuting": "telecommut", "telecomrelatie": "telecomrelatie", "telefonisch": "telefonisch", "telefonische": "telefonisch", "telefoon": "telefon", "telefooncel": "telefooncel", "telefooncellen": "telefooncell", "telefooncentrales": "telefooncentrales", "telefoongesprekken": "telefoongesprek", "telefoonnet": "telefoonnet", "telefoonnummer": "telefoonnummer", "telefoons": "telefon", "telefoontje": "telefoontj", "telefoontjes": "telefoontjes", "telefoontoestellen": "telefoontoestell", "telegraaf": "telegraf", "telegrafeer": "telegrafer", "telegrafeerde": "telegrafeerd", "telegraferen": "telegrafer", "telegram": "telegram", "telemetrie": "telemetrie", "telen": "tel", "teler": "teler", "telers": "teler", "telescopische": "telescopisch", "teletekst": "teletekst", "teleurgesteld": "teleurgesteld", "teleurgestelde": "teleurgesteld", "teleurstellend": "teleurstell", "teleurstellende": "teleurstell", "teleurstelling": "teleurstell", "teleurstellingen": "teleurstell", "televisie": "televisie", "televisieprogramma": "televisieprogramma", "televisies": "televisies", "televisiespot": "televisiespot", "televisiespotjes": "televisiespotjes", "televisietoestel": "televisietoestel", "televisietoestellen": "televisietoestell", "televisiezendtijd": "televisiezendtijd", "television": "television", "telkenmale": "telkenmal", "telkens": "telken", "tellen": "tell", "tellende": "tellend", "telling": "telling", "tellingen": "telling", "teloor": "telor", "teloorgang": "teloorgang", "telsonic": "telsonic", "telt": "telt", "temaru": "temaru", "temeer": "temer", "temende": "temend", "temmerman": "temmerman", "temming": "temming", "tempelman": "tempelman", "tempels": "tempel", "temperament": "temperament", "temperaturen": "temperatur", "temperatuur": "temperatur", "temperatuurbestendigheid": "temperatuurbestend", "temperatuurcompensatie": "temperatuurcompensatie", "temperatuurgradiënt": "temperatuurgradient", "temperatuurmeting": "temperatuurmet", "temperatuurschommelingen": "temperatuurschommel", "temperatuursstijging": "temperatuursstijg", "temperatuurstijging": "temperatuurstijg", "temperatuursveranderingen": "temperatuursverander", "temperatuursverdeling": "temperatuursverdel", "temperatuursytemen": "temperatuursytem", "temperatuurverschil": "temperatuurverschil", "temperde": "temperd", "temperend": "temper", "tempo": "tempo", "ten": "ten", "tendens": "tenden", "tender": "tender", "tenderprijzen": "tenderprijz", "tenderprocedure": "tenderprocedur", "tenderregeling": "tenderregel", "tenderregelingen": "tenderregel", "tenders": "tender", "tendersysteem": "tendersystem", "teneinde": "teneind", "tenen": "ten", "tenger": "tenger", "tengere": "tenger", "tengevolge": "tengevolg", "teniet": "teniet", "tenietdoen": "tenietdoen", "tenminste": "tenminst", "tennessee": "tennessee", "tennis": "tennis", "tennisclub": "tennisclub", "tennissen": "tenniss", "tennistroepje": "tennistroepj", "tenslotte": "tenslot", "tenten": "tent", "tentoonstelling": "tentoonstell", "tentoonstellingen": "tentoonstell", "tentoonstellingsterrein": "tentoonstellingsterrein", "tenzij": "tenzij", "tepper": "tepper", "ter": "ter", "terblijt": "terblijt", "terdege": "terdeg", "tere": "ter", "terecht": "terecht", "terechtgekomen": "terechtgekom", "terechtgesteld": "terechtgesteld", "terechtgewezen": "terechtgewez", "terechtkomen": "terechtkom", "terechtstaande": "terechtstaand", "terechtstonden": "terechtstond", "terephtalaat": "terephtalat", "tergend": "tergend", "tering": "tering", "terloops": "terlop", "terlouw": "terlouw", "term": "term", "termen": "term", "termieten": "termiet", "termietenplaag": "termietenplag", "termijn": "termijn", "termijnafspraken": "termijnafsprak", "termijnbehoeften": "termijnbehoeft", "termijnbetalingen": "termijnbetal", "termijncontracten": "termijncontract", "termijnfinanciering": "termijnfinancier", "termijnmarkt": "termijnmarkt", "termijnoplossingen": "termijnoploss", "termijnrisico": "termijnrisico", "termijntrends": "termijntr", "terminal": "terminal", "terminals": "terminal", "ternauwernood": "ternauwernod", "terneer": "terner", "terneuzen": "terneuz", "terpentijn": "terpentijn", "terpstra": "terpstra", "terra": "terra", "terrapin": "terrapin", "terrarium": "terrarium", "terras": "terras", "terrasjes": "terrasjes", "terrassen": "terrass", "terrazzo": "terrazzo", "terrazzobedrijf": "terrazzobedrijf", "terrazzowerkers": "terrazzowerker", "terrein": "terrein", "terreinbeherende": "terreinbeher", "terreinen": "terrein", "terreinleidingen": "terreinleid", "terrier": "terrier", "territoriale": "territorial", "territorium": "territorium", "terrorisme": "terrorism", "terruggelopen": "terruggelop", "terschelling": "terschell", "terschuur": "terschur", "tersluiks": "tersluik", "tert": "tert", "terug": "terug", "terugbetalen": "terugbetal", "terugblik": "terugblik", "terugblikken": "terugblik", "terugbonzen": "terugbonz", "terugbracht": "terugbracht", "terugbrengen": "terugbreng", "terugdeinzen": "terugdeinz", "terugdraaien": "terugdraai", "terugdringen": "terugdr", "terugdringing": "terugdring", "terugdrukken": "terugdruk", "teruggaan": "teruggan", "teruggaf": "teruggaf", "teruggang": "teruggang", "teruggave": "teruggav", "teruggebracht": "teruggebracht", "teruggedraaid": "teruggedraaid", "teruggedrongen": "teruggedrong", "teruggegaan": "teruggegan", "teruggegeven": "teruggegev", "teruggekeerd": "teruggekeerd", "teruggekomen": "teruggekom", "teruggekregen": "teruggekreg", "teruggeleid": "teruggeleid", "teruggeleiding": "teruggeleid", "teruggeleverd": "teruggeleverd", "teruggelopen": "teruggelop", "teruggenomen": "teruggenom", "teruggescholden": "teruggeschold", "teruggeschroefd": "teruggeschroefd", "teruggesluisd": "teruggesluisd", "teruggestopt": "teruggestopt", "teruggestort": "teruggestort", "teruggestoten": "teruggestot", "teruggestuurd": "teruggestuurd", "teruggestuurde": "teruggestuurd", "teruggetrokken": "teruggetrok", "teruggeven": "teruggev", "teruggevoerd": "teruggevoerd", "teruggevonden": "teruggevond", "teruggewonnen": "teruggewonn", "teruggezette": "teruggezet", "teruggezien": "teruggezien", "terugging": "terugg", "terughoudend": "terughoud", "terughoudendheid": "terughoud", "terughoudends": "terughoud", "terughouding": "terughoud", "terugkaatsen": "terugkaats", "terugkeer": "terugker", "terugkeren": "terugker", "terugkomdag": "terugkomdag", "terugkomen": "terugkom", "terugkomende": "terugkom", "terugkomst": "terugkomst", "terugkomt": "terugkomt", "terugkopen": "terugkop", "terugkrijgen": "terugkrijg", "terugkwam": "terugkwam", "terugleefde": "terugleefd", "teruglevering": "teruglever", "terugleverkabel": "terugleverkabel", "teruglevertarief": "teruglevertarief", "terugleververgoeding": "terugleververgoed", "terugliep": "terugliep", "terugloop": "teruglop", "teruglopen": "teruglop", "teruglopend": "teruglop", "teruglopende": "teruglop", "terugname": "terugnam", "terugnameplicht": "terugnameplicht", "terugnameservice": "terugnameservic", "terugnameverplichting": "terugnameverplicht", "terugneem": "terugnem", "terugnemen": "terugnem", "terugratel": "terugratel", "terugroepen": "terugroep", "terugsluizen": "terugsluiz", "terugsluizing": "terugsluiz", "terugspookte": "terugspookt", "terugstootte": "terugstot", "terugstroming": "terugstrom", "terugtredende": "terugtred", "terugtrek": "terugtrek", "terugtrekken": "terugtrek", "terugtrekkende": "terugtrek", "terugtrok": "terugtrok", "terugvallen": "terugvall", "terugverdiend": "terugverdi", "terugverdienen": "terugverdien", "terugverdient": "terugverdient", "terugverdientijd": "terugverdientijd", "terugverdientijden": "terugverdientijd", "terugverkocht": "terugverkocht", "terugverkregen": "terugverkreg", "terugvinden": "terugvind", "terugvloeien": "terugvloei", "terugvond": "terugvond", "terugvonden": "terugvond", "terugwerkende": "terugwerk", "terugwinbare": "terugwin", "terugwinnen": "terugwinn", "terugwinning": "terugwinn", "terugwinningsinstallaties": "terugwinningsinstallaties", "terugwinsysteem": "terugwinsystem", "terugwint": "terugwint", "terugzien": "terugzien", "terugziende": "terugzi", "terugziet": "terugziet", "terwijl": "terwijl", "terwille": "terwill", "terzake": "terzak", "terzelfder": "terzelfder", "terzij": "terzij", "terzijde": "terzijd", "tes": "tes", "test": "test", "testament": "testament", "testbank": "testbank", "testbassin": "testbassin", "testcase": "testcas", "testen": "test", "testgebied": "testgebied", "testinstallatie": "testinstallatie", "testmethode": "testmethod", "testmethoden": "testmethod", "testprocedures": "testprocedures", "testprogramma": "testprogramma", "testrapporten": "testrapport", "testreeks": "testrek", "testruimte": "testruimt", "tests": "test", "teststations": "teststation", "testte": "test", "tetc": "tetc", "tetra": "tetra", "tetrachlooretheen": "tetrachloorethen", "tetrachloorethyleen": "tetrachloorethylen", "tetrachloorkoolstof": "tetrachloorkoolstof", "tetramethyllood": "tetramethyllod", "tetsja": "tetsja", "tetterode": "tetterod", "teug": "teug", "teugel": "teugel", "teugels": "teugel", "teunisse": "teunis", "teunissen": "teuniss", "teutschental": "teutschental", "tevan": "tevan", "teveel": "tevel", "tevens": "teven", "tevergeefs": "tevergef", "tevergeefse": "tevergef", "tevoren": "tevor", "tevreden": "tevred", "tevredenheid": "tevred", "teweeg": "teweg", "teweeggebracht": "teweeggebracht", "texaanse": "texan", "texaco": "texaco", "texas": "texas", "texel": "texel", "texels": "texel", "texelse": "texel", "textiel": "textiel", "textielafvalwater": "textielafvalwater", "textiele": "textiel", "textielfabrikanten": "textielfabrikant", "textielindustie": "textielindustie", "textielindustrie": "textielindustrie", "textielindustrieën": "textielindustrieen", "textielvereniging": "textielveren", "teyler": "teyler", "teylers": "teyler", "teylingen": "teyling", "tezamen": "tezam", "tezijnertijd": "tezijnertijd", "tfi": "tfi", "tg": "tg", "th": "th", "thailand": "thailand", "thais": "thais", "thans": "than", "the": "the", "theater": "theater", "theaters": "theater", "thee": "thee", "theeblad": "theeblad", "theedoekje": "theedoekj", "theedrinken": "theedrink", "theedrukte": "theedrukt", "theegerei": "theegerei", "theehandelaars": "theehandelar", "theeplantages": "theeplantages", "theeproduktie": "theeproduktie", "thees": "thes", "theetuinen": "theetuin", "theeuur": "theeuur", "thema": "thema", "themabijeenkomsten": "themabijeenkomst", "themadag": "themadag", "themadagen": "themadag", "themaindicatoren": "themaindicator", "themamiddag": "themamiddag", "themapark": "themapark", "theo": "theo", "theodore": "theodor", "theoretisch": "theoretisch", "theoretische": "theoretisch", "theorie": "theorie", "theorieën": "theorieen", "thermaal": "thermal", "thermal": "thermal", "thermie": "thermie", "thermieprogramma": "thermieprogramma", "thermisch": "thermisch", "thermische": "thermisch", "thermo": "thermo", "thermoanaerobacter": "thermoanaerobacter", "thermochemische": "thermochemisch", "thermodesulfobacterium": "thermodesulfobacterium", "thermolyse": "thermolys", "thermometers": "thermometer", "thermometry": "thermometry", "thermoshock": "thermoshock", "thermotogales": "thermotogales", "thesis": "thesis", "theunissen": "theuniss", "thialf": "thialf", "thijs": "thijs", "thilo": "thilo", "thin": "thin", "thiokol": "thiokol", "third": "third", "thoenis": "thoenis", "tholen": "thol", "tholey": "tholey", "thomae": "thomae", "thomas": "thomas", "thomassen": "thomass", "thomson": "thomson", "three": "three", "thuis": "thuis", "thuisgekomen": "thuisgekom", "thuishoren": "thuishor", "thuiskomen": "thuiskom", "thuiskomende": "thuiskom", "thuiskwam": "thuiskwam", "thuismarkt": "thuismarkt", "thuiswerken": "thuiswerk", "thüringen": "thuring", "thüringer": "thuringer", "thuringiensis": "thuringiensis", "thüringsche": "thuringsch", "thyssen": "thyss", "thyssengas": "thyssengas", "tic": "tic", "tichels": "tichel", "ticket": "ticket", "tickets": "ticket", "tieb": "tieb", "tiel": "tiel", "tieleman": "tieleman", "tien": "tien", "tiende": "tiend", "tienduizend": "tienduiz", "tienduizenden": "tienduiz", "tienduizendste": "tienduizendst", "tienen": "tien", "tiengemeten": "tiengemet", "tienjaren": "tienjar", "tienjarenplan": "tienjarenplan", "tienjarenprogramma": "tienjarenprogramma", "tienjarig": "tienjar", "tiental": "tiental", "tientallen": "tientall", "tientje": "tientj", "tientjes": "tientjes", "tij": "tij", "tijd": "tijd", "tijdbesparing": "tijdbespar", "tijde": "tijd", "tijdelijk": "tijdelijk", "tijdelijke": "tijdelijk", "tijdelijkheden": "tijdelijk", "tijden": "tijd", "tijdens": "tijden", "tijdgebrek": "tijdgebrek", "tijdgenoten": "tijdgenot", "tijdgewogen": "tijdgewog", "tijdig": "tijdig", "tijdige": "tijdig", "tijding": "tijding", "tijdje": "tijdj", "tijdperk": "tijdperk", "tijdrovend": "tijdrov", "tijdrovende": "tijdrov", "tijdsaanduiding": "tijdsaanduid", "tijdsbesparend": "tijdsbespar", "tijdsbesparing": "tijdsbespar", "tijdsblok": "tijdsblok", "tijdschaal": "tijdschal", "tijdschema": "tijdschema", "tijdschrift": "tijdschrift", "tijdschriften": "tijdschrift", "tijdsduur": "tijdsdur", "tijdspad": "tijdspad", "tijdspanne": "tijdspann", "tijdstip": "tijdstip", "tijdstippen": "tijdstipp", "tijdverlies": "tijdverlies", "tijdwinst": "tijdwinst", "tikje": "tikj", "tikjes": "tikjes", "tikkelde": "tikkeld", "tikkelden": "tikkeld", "tikken": "tik", "tikkende": "tikkend", "tikt": "tikt", "tiktak": "tiktak", "tikte": "tikt", "tikten": "tikt", "tilburg": "tilburg", "tilburgs": "tilburg", "tilburgse": "tilburg", "tilde": "tild", "tilly": "tilly", "tilmar": "tilmar", "time": "tim", "times": "times", "timmer": "timmer", "timmerbedrijven": "timmerbedrijv", "timmerindustrie": "timmerindustrie", "timmert": "timmert", "timorstraat": "timorstrat", "timra": "timra", "tin": "tin", "tingeling": "tingel", "tinkelend": "tinkel", "tinning": "tinning", "tint": "tint", "tintelde": "tinteld", "tintelden": "tinteld", "tinteling": "tintel", "tintelsterren": "tintelsterr", "tinten": "tint", "tintje": "tintj", "tintte": "tint", "tio": "tio", "tip": "tip", "tips": "tip", "tiran": "tiran", "titaanoxyde": "titaanoxyd", "titaanoxydebolletjes": "titaanoxydebolletjes", "titan": "titan", "titanesmarten": "titanesmart", "titanisch": "titanisch", "titel": "titel", "titels": "titel", "titratie": "titratie", "titulaer": "titulaer", "tj": "tj", "tjabé": "tjab", "tjaereborg": "tjaereborg", "tje": "tje", "tjeenk": "tjeenk", "tjernobyl": "tjernobyl", "tjes": "tjes", "tjessinga": "tjessinga", "tjeukermeer": "tjeukermer", "tjilpten": "tjilpt", "tjing": "tjing", "tjingelden": "tjingeld", "tjipanas": "tjipanas", "tjongerhof": "tjongerhof", "tjp": "tjp", "tl": "tl", "tln": "tln", "tlo": "tlo", "tm": "tm", "tn": "tn", "tnli": "tnli", "tno": "tno", "to": "to", "toa": "toa", "toatsu": "toatsu", "tob": "tob", "tobben": "tobb", "tobde": "tobd", "tobt": "tobt", "toby": "toby", "toc": "toc", "toch": "toch", "tóch": "toch", "tòch": "tòch", "tocht": "tocht", "tochtdeuren": "tochtdeur", "tochtdicht": "tochtdicht", "tochten": "tocht", "tochtje": "tochtj", "tochtjes": "tochtjes", "tochtte": "tocht", "toe": "toe", "toè": "toè", "toean": "toean", "toebehoord": "toebehoord", "toebehoren": "toebehor", "toebrengen": "toebreng", "toebrengt": "toebrengt", "toediening": "toedien", "toedieningstechnieken": "toedieningstechniek", "toedient": "toedient", "toedoen": "toedoen", "toedraaide": "toedraaid", "toedragen": "toedrag", "toeë": "toee", "toefde": "toefd", "toefluisterde": "toefluisterd", "toegaan": "toegan", "toegaat": "toegat", "toegang": "toegang", "toegangen": "toegang", "toegangsbiljet": "toegangsbiljet", "toegangskanaal": "toegangskanal", "toegangsroute": "toegangsrout", "toegangsweg": "toegangsweg", "toegangswegen": "toegangsweg", "toegankelijk": "toegank", "toegankelijke": "toegank", "toegankelijker": "toegankelijker", "toegankelijkheid": "toegank", "toegebracht": "toegebracht", "toegedronken": "toegedronk", "toegeeflijk": "toegef", "toegeeflijkheid": "toegef", "toegegeven": "toegegev", "toegehoord": "toegehoord", "toegekeerd": "toegekeerd", "toegekend": "toegek", "toegekende": "toegek", "toegeknepen": "toegeknep", "toegelaten": "toegelat", "toegelegd": "toegelegd", "toegelicht": "toegelicht", "toegelichte": "toegelicht", "toegelokt": "toegelokt", "toegelopen": "toegelop", "toegenomen": "toegenom", "toegepast": "toegepast", "toegepaste": "toegepast", "toegeroepen": "toegeroep", "toegerust": "toegerust", "toegeschenen": "toegeschen", "toegeschreven": "toegeschrev", "toegesloten": "toegeslot", "toegesneden": "toegesned", "toegestaan": "toegestan", "toegestane": "toegestan", "toegestort": "toegestort", "toegetreden": "toegetred", "toegeven": "toegev", "toegevend": "toegev", "toegevende": "toegev", "toegevoegd": "toegevoegd", "toegevoegde": "toegevoegd", "toegevoerd": "toegevoerd", "toegevoerde": "toegevoerd", "toegevouwen": "toegevouw", "toegewezen": "toegewez", "toegezegd": "toegezegd", "toegezegde": "toegezegd", "toegezien": "toegezien", "toegezonden": "toegezond", "toeging": "toeging", "toegingen": "toeging", "toehoorde": "toehoord", "toehoorster": "toehoorster", "toekennen": "toekenn", "toekenning": "toekenn", "toekenningen": "toekenn", "toekijken": "toekijk", "toeklonk": "toeklonk", "toéklonk": "toeklonk", "toekomst": "toekomst", "toekomstangst": "toekomstangst", "toekomstbeeld": "toekomstbeeld", "toekomsten": "toekomst", "toekomstideeën": "toekomstideeen", "toekomstig": "toekomst", "toekomstige": "toekomst", "toekomstigheden": "toekomst", "toekomstmodellen": "toekomstmodell", "toekomstmogelijkheden": "toekomstmog", "toekomstmuziek": "toekomstmuziek", "toekomstplannen": "toekomstplann", "toekomstscenario": "toekomstscenario", "toekomststeden": "toekomststed", "toekomstvisie": "toekomstvisie", "toekomstwoord": "toekomstwoord", "toekomt": "toekomt", "toekwam": "toekwam", "toelaat": "toelat", "toelaatbaar": "toelat", "toelaatbaarheid": "toelat", "toelaatbare": "toelat", "toelage": "toelag", "toelaten": "toelat", "toelating": "toelat", "toelatingen": "toelat", "toelatinghouders": "toelatinghouder", "toelatings": "toelat", "toelatingsaanvraag": "toelatingsaanvrag", "toelatingsbeleid": "toelatingsbeleid", "toelatingsprocedure": "toelatingsprocedur", "toeleggen": "toelegg", "toeleveranciers": "toeleverancier", "toeleverend": "toelever", "toeleverende": "toelever", "toelevering": "toelever", "toeleverings": "toelever", "toeleveringsbedrijven": "toeleveringsbedrijv", "toeleveringsprodukten": "toeleveringsprodukt", "toelicht": "toelicht", "toelichting": "toelicht", "toeliet": "toeliet", "toen": "toen", "tóen": "toen", "tòen": "tòen", "toèn": "toèn", "toenadering": "toenader", "toenam": "toenam", "toename": "toenam", "toenamen": "toenam", "toeneemt": "toeneemt", "toenemen": "toenem", "toenemend": "toenem", "toenemende": "toenem", "toenmalige": "toenmal", "toentertijd": "toentertijd", "toepasbaar": "toepas", "toepasbaarheid": "toepas", "toepasselijk": "toepass", "toepassen": "toepass", "toepassende": "toepass", "toepasser": "toepasser", "toepassing": "toepass", "toepassingen": "toepass", "toepassingsgericht": "toepassingsgericht", "toepassingsmogelijkheden": "toepassingsmog", "toepassingsprojecten": "toepassingsproject", "toepassingswijzen": "toepassingswijz", "toepasssing": "toepasss", "toepaste": "toepast", "toer": "toer", "toerde": "toerd", "toereikend": "toereik", "toerekenen": "toereken", "toerekening": "toereken", "toeren": "toer", "toerenregelaars": "toerenregelar", "toerenregeling": "toerenregel", "toerental": "toerental", "toerisme": "toerism", "toeristen": "toerist", "toeristenindustrie": "toeristenindustrie", "toeristenweg": "toeristenweg", "toeristische": "toeristisch", "toescheen": "toeschen", "toeschietelijk": "toeschiet", "toeslag": "toeslag", "toeslagen": "toeslag", "toeslagmateriaal": "toeslagmateriaal", "toeslagmaterialen": "toeslagmaterial", "toeslagstof": "toeslagstof", "toeslagstoffen": "toeslagstoff", "toespelingen": "toespel", "toespitsen": "toespits", "toespraak": "toesprak", "toestaan": "toestan", "toestaat": "toestat", "toestand": "toestand", "toestanden": "toestand", "toesteken": "toestek", "toestel": "toestel", "toestellen": "toestell", "toestemmen": "toestemm", "toestemmend": "toestemm", "toestemming": "toestemm", "toestemt": "toestemt", "toetie": "toetie", "toetreden": "toetred", "toetreedt": "toetreedt", "toets": "toet", "toetsen": "toets", "toetsing": "toetsing", "toetsingsadvies": "toetsingsadvies", "toetsingskader": "toetsingskader", "toetsingssysteem": "toetsingssystem", "toetsingswaarde": "toetsingswaard", "toetst": "toetst", "toetste": "toetst", "toeval": "toeval", "toevallig": "toevall", "toevallige": "toevall", "toevertrouwd": "toevertrouwd", "toevertrouwing": "toevertrouw", "toevlucht": "toevlucht", "toevluchtsoord": "toevluchtsoord", "toevoegden": "toevoegd", "toevoegen": "toevoeg", "toevoeging": "toevoeg", "toevoegingen": "toevoeg", "toevoegt": "toevoegt", "toevoer": "toevoer", "toevoerroutes": "toevoerroutes", "toevoerstation": "toevoerstation", "toevroor": "toevror", "toewenste": "toewenst", "toewerkt": "toewerkt", "toewijzing": "toewijz", "toewuifde": "toewuifd", "toezag": "toezag", "toezegging": "toezegg", "toezeggingen": "toezegg", "toezegt": "toezegt", "toezicht": "toezicht", "toezichthoudende": "toezichthoud", "toezichthouders": "toezichthouder", "toezien": "toezien", "toeziet": "toeziet", "toilet": "toilet", "toiletafval": "toiletafval", "toiletgebruik": "toiletgebruik", "toiletpapier": "toiletpapier", "toilettafel": "toilettafel", "toiletten": "toilet", "tokio": "tokio", "tokyo": "tokyo", "tol": "tol", "tolerantie": "tolerantie", "tolereren": "tolerer", "tolheffing": "tolheff", "tollen": "toll", "tolstoï": "tolstoi", "tolueen": "tolueen", "tolueenbelasting": "tolueenbelast", "tomaat": "tomat", "tomas": "tomas", "tomaten": "tomat", "tombo": "tombo", "tomen": "tom", "tomlinson": "tomlinson", "tommel": "tommel", "tomorrow": "tomorrow", "ton": "ton", "toneel": "tonel", "tonen": "ton", "tong": "tong", "tongenaald": "tongenaald", "tongeren": "tonger", "tongestralen": "tongestral", "tongsmeren": "tongsmer", "tonnage": "tonnag", "tonnen": "tonn", "tons": "ton", "tool": "tol", "toom": "tom", "toomden": "toomd", "toon": "ton", "toonaangevend": "toonaangev", "toonaangevende": "toonaangev", "toonbaar": "toonbar", "toonbank": "toonbank", "toonbeeld": "toonbeeld", "toonde": "toond", "toonden": "toond", "toonder": "toonder", "toont": "toont", "toontje": "toontj", "toorn": "toorn", "toornig": "toornig", "toornige": "toornig", "toot": "tot", "tooth": "tooth", "top": "top", "topambtenaar": "topambtenar", "topambtenaren": "topambtenar", "topdag": "topdag", "topdrukte": "topdrukt", "topfunctionarissen": "topfunctionariss", "topgun": "topgun", "topingenieurs": "topingenieur", "topinstituut": "topinstitut", "topjaar": "topjar", "topkoeling": "topkoel", "toplaag": "toplag", "topman": "topman", "topmanagement": "topmanagement", "topografische": "topografisch", "toppen": "topp", "toppereend": "toppere", "toppers": "topper", "torch": "torch", "toren": "tor", "torende": "torend", "torengewemel": "torengewemel", "torenkamer": "torenkamer", "torenkamertje": "torenkamertj", "torens": "toren", "torentje": "torentj", "tornbedrijf": "tornbedrijf", "torpedojager": "torpedojager", "torremolinos": "torremolinos", "torridge": "torridg", "torsen": "tors", "torste": "torst", "torsten": "torst", "tosco": "tosco", "tosko": "tosko", "tot": "tot", "totaal": "total", "totaalbedrag": "totaalbedrag", "totaaloplossing": "totaaloploss", "totaaloppervlak": "totaaloppervlak", "totaalpakket": "totaalpakket", "totaalstikstof": "totaalstikstof", "total": "total", "totale": "total", "totalitaire": "totalitair", "totally": "totally", "totdat": "totdat", "totók": "totok", "totstandkomen": "totstandkom", "totstandkoming": "totstandkom", "tourismusorgte": "tourismusorgt", "tours": "tour", "toutle": "toutl", "touw": "touw", "touwsluiting": "touwsluit", "touwtje": "touwtj", "toverweb": "toverweb", "towards": "toward", "toxic": "toxic", "toxiciteit": "toxiciteit", "toxiciteitsniveau": "toxiciteitsniveau", "toxicologie": "toxicologie", "toxicologische": "toxicologisch", "toxicoloog": "toxicolog", "toxics": "toxic", "toxisch": "toxisch", "toxische": "toxisch", "toyota": "toyota", "traag": "trag", "traagdraaiende": "traagdraai", "traagheid": "traagheid", "traan": "tran", "traangas": "traangas", "trac": "trac", "tracbord": "tracbord", "trace": "trac", "tracé": "trac", "tracébesluit": "tracebesluit", "tracékeuze": "tracekeuz", "tracénota": "tracenota", "tracering": "tracer", "tracés": "traces", "tracévariant": "tracevariant", "tracéwet": "tracewet", "tracht": "tracht", "trachten": "tracht", "tractebel": "tractebel", "tractoren": "tractor", "tractorenfabrikant": "tractorenfabrikant", "trad": "trad", "trade": "trad", "traden": "trad", "traditie": "traditie", "traditioneel": "traditionel", "traditionele": "traditionel", "traffic": "traffic", "trage": "trag", "tragedie": "tragedie", "tragiek": "tragiek", "tragisch": "tragisch", "tragische": "tragisch", "trailer": "trailer", "train": "train", "trainende": "trainend", "training": "training", "trainingen": "training", "trainingscentrum": "trainingscentrum", "trainingspakket": "trainingspakket", "trainingssimulator": "trainingssimulator", "traject": "traject", "trajectbesluiten": "trajectbesluit", "trajecten": "traject", "trajectnota": "trajectnota", "traktement": "traktement", "tram": "tram", "trambilletjes": "trambilletjes", "tramde": "tramd", "trammen": "tramm", "trams": "tram", "tramspoor": "tramspor", "tramspoorconstructie": "tramspoorconstructie", "tramsporen": "tramspor", "tramtunnel": "tramtunnel", "tramwerken": "tramwerk", "tranchant": "tranchant", "trane": "tran", "tranen": "tran", "trans": "tran", "transactie": "transactie", "transactievoorstel": "transactievoorstel", "transcendente": "transcendent", "transducers": "transducer", "transfer": "transfer", "transferium": "transferium", "transformator": "transformator", "transformatoren": "transformator", "transformatorstations": "transformatorstation", "transgene": "transg", "transistoren": "transistor", "transitoreizigers": "transitoreiziger", "translift": "translift", "transmissie": "transmissie", "transmissiesystemen": "transmissiesystem", "transnationale": "transnational", "transparant": "transparant", "transparante": "transparant", "transpiratie": "transpiratie", "transpireren": "transpirer", "transponder": "transponder", "transponders": "transponder", "transport": "transport", "transportband": "transportband", "transportbanden": "transportband", "transportbedrijf": "transportbedrijf", "transportbedrijven": "transportbedrijv", "transportbonnen": "transportbonn", "transportbrandstof": "transportbrandstof", "transportcentrum": "transportcentrum", "transportcontainer": "transportcontainer", "transporteert": "transporteert", "transporteigenschappen": "transporteigenschapp", "transporten": "transport", "transporteren": "transporter", "transporteurs": "transporteur", "transportinstallaties": "transportinstallaties", "transportkarateristieken": "transportkarateristiek", "transportkosten": "transportkost", "transportleiding": "transportleid", "transportmaterieel": "transportmaterieel", "transportmedium": "transportmedium", "transportmodel": "transportmodel", "transportonderneming": "transportondernem", "transportongevallen": "transportongevall", "transportorders": "transportorder", "transportorganisaties": "transportorganisaties", "transportplatforms": "transportplatform", "transportproces": "transportproces", "transportraad": "transportrad", "transportroutes": "transportroutes", "transportsector": "transportsector", "transportsysteem": "transportsystem", "transporttunnels": "transporttunnel", "transportverpakking": "transportverpak", "transportverpakkingen": "transportverpak", "transportverpakkingsfolie": "transportverpakkingsfolie", "transvaal": "transval", "transvac": "transvac", "trant": "trant", "trap": "trap", "trapdeur": "trapdeur", "trapje": "trapj", "traploos": "traplos", "trapman": "trapman", "trappelen": "trappel", "trappelende": "trappel", "trappeltripjes": "trappeltripjes", "trappen": "trapp", "trappenbeurt": "trappenbeurt", "trappend": "trappend", "trappende": "trappend", "trappenstilte": "trappenstilt", "trappetreden": "trappetred", "trapsgewijs": "trapsgewijs", "trapt": "trapt", "trapte": "trapt", "trapten": "trapt", "traptreden": "traptred", "traumatologie": "traumatologie", "traumatoloog": "traumatolog", "trbf": "trbf", "trc": "trc", "treatment": "treatment", "trechtervormig": "trechtervorm", "trechtervormige": "trechtervorm", "treco": "treco", "tred": "tred", "trede": "tred", "treden": "tred", "treedjes": "treedjes", "treedt": "treedt", "tref": "tref", "treffen": "treff", "treffend": "treffend", "treffers": "treffer", "treft": "treft", "trefwoord": "trefwoord", "trefwoorden": "trefwoord", "trein": "trein", "treinen": "trein", "treinendonder": "treinendonder", "treingeluid": "treingeluid", "treinlawaai": "treinlawaai", "treinproject": "treinproject", "treinreis": "treinreis", "treinreizen": "treinreiz", "treinstation": "treinstation", "treintracés": "treintraces", "treinverkeer": "treinverker", "treinwagons": "treinwagon", "treiteren": "treiter", "trek": "trek", "trèk": "trèk", "trekapparatuur": "trekapparatur", "trekken": "trek", "trekkende": "trekkend", "trekker": "trekker", "trekkers": "trekker", "trekkracht": "trekkracht", "trekpot": "trekpot", "trekspanning": "trekspann", "treksterkte": "treksterkt", "trekt": "trekt", "trekvissen": "trekviss", "trekvogelroute": "trekvogelrout", "trekvogels": "trekvogel", "trend": "trend", "trendbox": "trendbox", "trendbreuk": "trendbreuk", "trends": "trend", "trendsettende": "trendset", "trendsetters": "trendsetter", "trendzetten": "trendzet", "trent": "trent", "trentelman": "trentelman", "trespa": "trespa", "tressen": "tress", "treurde": "treurd", "treurden": "treurd", "treuren": "treur", "treurig": "treurig", "treurige": "treurig", "treuriger": "treuriger", "treurigheden": "treurig", "treurigheid": "treurig", "treurigjes": "treurigjes", "treuring": "treuring", "treurt": "treurt", "treurzwarte": "treurzwart", "treuzelde": "treuzeld", "tri": "tri", "triangel": "triangel", "triangle": "triangl", "triazinen": "triazin", "tribalisme": "tribalism", "tribo": "tribo", "tribunal": "tribunal", "tribune": "tribun", "tric": "tric", "tricarbonyl": "tricarbonyl", "trichloorbenzenen": "trichloorbenzen", "trichloorethaan": "trichloorethan", "trichloorethyleen": "trichloorethylen", "trickle": "trickl", "tricot": "tricot", "triestig": "triestig", "triestige": "triestig", "triestiger": "triestiger", "triethylamine": "triethylamin", "trifenyltinverbindingen": "trifenyltinverbind", "trilateraal": "trilateral", "trilde": "trild", "trilden": "trild", "triljoen": "triljoen", "trillen": "trill", "trillend": "trillend", "trillende": "trillend", "trilling": "trilling", "trillingdemping": "trillingdemp", "trillingen": "trilling", "trillingsgebied": "trillingsgebied", "trillingsniveau": "trillingsniveau", "trillingsvrij": "trillingsvrij", "trilt": "trilt", "triltikte": "triltikt", "trimester": "trimester", "trimphone": "trimphon", "tring": "tring", "trinidad": "trinidad", "triodos": "triodos", "triodosbank": "triodosbank", "triomf": "triomf", "triomfaal": "triomfal", "triomfeerde": "triomfeerd", "triomfen": "triomf", "triomferende": "triomfer", "triomphale": "triomphal", "triomphant": "triomphant", "trippelde": "trippeld", "tripte": "tript", "tritium": "tritium", "triumf": "triumf", "triunfo": "triunfo", "trivialiteiten": "trivialiteit", "troebel": "troebel", "troebelden": "troebeld", "troebelheid": "troebel", "troebelheidsmeter": "troebelheidsmeter", "troebelheidsmeters": "troebelheidsmeter", "troebeling": "troebel", "troebleerden": "troebleerd", "troef": "troef", "troep": "troep", "troèp": "troèp", "troepen": "troep", "troepje": "troepj", "troeven": "troev", "trof": "trof", "troffen": "troff", "trofische": "trofisch", "trok": "trok", "trokken": "trok", "trommel": "trommel", "trommels": "trommel", "trommelzeefmachine": "trommelzeefmachin", "trommelzeefmachines": "trommelzeefmachines", "trompetten": "trompet", "tromso": "tromso", "trondheim": "trondheim", "tronen": "tron", "tronende": "tronend", "tronie": "tronie", "troon": "tron", "troonde": "troond", "troonrede": "troonred", "troost": "troost", "troosteloos": "troostelos", "troosteloosheid": "troostelos", "troosteloze": "troosteloz", "troosten": "troost", "troostende": "troostend", "trooster": "trooster", "troostte": "troost", "troostten": "troost", "tropen": "trop", "tropenbladeren": "tropenblader", "tropenbomen": "tropenbom", "tropine": "tropin", "tropisch": "tropisch", "tropische": "tropisch", "troposfeer": "troposfer", "trostberg": "trostberg", "trots": "trot", "trotse": "trot", "trotsende": "trotsend", "trotsheid": "trotsheid", "trotsmoederlijk": "trotsmoeder", "trottoir": "trottoir", "trottoirkolken": "trottoirkolk", "trottoirs": "trottoir", "trouw": "trouw", "trouwde": "trouwd", "trouwden": "trouwd", "trouwen": "trouw", "trouwens": "trouwen", "trouwer": "trouwer", "trouwt": "trouwt", "tru": "tru", "truc": "truc", "trucje": "trucj", "truck": "truck", "truckchaffeur": "truckchaffeur", "truckchauffeur": "truckchauffeur", "trucks": "truck", "trucs": "truc", "truiden": "truid", "truien": "trui", "truitje": "truitj", "trust": "trust", "truus": "trus", "tsho": "tsho", "tsjechië": "tsjechie", "tsjechische": "tsjechisch", "tsjernobyl": "tsjernobyl", "tsjernomyrdin": "tsjernomyrdin", "tsn": "tsn", "tss": "tss", "tsuruga": "tsuruga", "tti": "tti", "tu": "tu", "tub": "tub", "tubantia": "tubantia", "tubgrinder": "tubgrinder", "tubgrinders": "tubgrinder", "tud": "tud", "tue": "tue", "tufts": "tuft", "tuidraden": "tuidrad", "tuier": "tuier", "tuigden": "tuigd", "tuijn": "tuijn", "tuimeldrogers": "tuimeldroger", "tuimelen": "tuimel", "tuin": "tuin", "tuinafval": "tuinafval", "tuinbouw": "tuinbouw", "tuinbouwbedrijf": "tuinbouwbedrijf", "tuinbouwbedrijfsleven": "tuinbouwbedrijfslev", "tuinbouwbedrijven": "tuinbouwbedrijv", "tuinbouwbond": "tuinbouwbond", "tuinbouwfolie": "tuinbouwfolie", "tuinbouwfolies": "tuinbouwfolies", "tuinbouwkassen": "tuinbouwkass", "tuinbouwland": "tuinbouwland", "tuinbouworganisatie": "tuinbouworganisatie", "tuinbouworganisaties": "tuinbouworganisaties", "tuinbouwpercelen": "tuinbouwpercel", "tuinbouwprodukten": "tuinbouwprodukt", "tuinbouwraad": "tuinbouwrad", "tuinbouwsector": "tuinbouwsector", "tuinbouwsectoren": "tuinbouwsector", "tuinbouwstudiegroepen": "tuinbouwstudiegroep", "tuinbouwstudiegroepenfederatie": "tuinbouwstudiegroepenfederatie", "tuinbouwtoeleverancier": "tuinbouwtoeleverancier", "tuinbouwveilingen": "tuinbouwveil", "tuinbouwverenigingen": "tuinbouwveren", "tuinbouwvoorlichter": "tuinbouwvoorlichter", "tuincentrum": "tuincentrum", "tuinder": "tuinder", "tuinders": "tuinder", "tuindersorganisatie": "tuindersorganisatie", "tuindeuren": "tuindeur", "tuinen": "tuin", "tuingeheim": "tuingeheim", "tuinhek": "tuinhek", "tuintje": "tuintj", "tuinturf": "tuinturf", "tuinverschieten": "tuinverschiet", "tuiten": "tuit", "tuk": "tuk", "tukker": "tukker", "tukkers": "tukker", "tulle": "tull", "tulpebladeren": "tulpeblader", "tulpen": "tulp", "tummers": "tummer", "tumoren": "tumor", "tunesië": "tunesie", "tunetanken": "tunetank", "tungstencarbide": "tungstencarbid", "tunnel": "tunnel", "tunnelboorder": "tunnelboorder", "tunnelboormachine": "tunnelboormachin", "tunnelboortechniek": "tunnelboortechniek", "tunnelbouw": "tunnelbouw", "tunnelbuis": "tunnelbuis", "tunnelmanagement": "tunnelmanagement", "tunnels": "tunnel", "tunneltechniek": "tunneltechniek", "tunnelverbinding": "tunnelverbind", "tunnelvormige": "tunnelvorm", "turbine": "turbin", "turbinebouwers": "turbinebouwer", "turbinefabrikant": "turbinefabrikant", "turbinemethode": "turbinemethod", "turbines": "turbines", "turbio": "turbio", "turbo": "turbo", "turbodieselmotor": "turbodieselmotor", "turbogenerator": "turbogenerator", "turbogrinder": "turbogrinder", "turbowind": "turbowind", "turbulentie": "turbulentie", "turbulentiegraad": "turbulentiegrad", "turen": "tur", "turende": "turend", "turf": "turf", "turijn": "turijn", "turkenburg": "turkenburg", "turkije": "turkij", "turkmenistan": "turkmenistan", "turkse": "turk", "turn": "turn", "turnkey": "turnkey", "turnpike": "turnpik", "tuscarora": "tuscarora", "tussen": "tuss", "tussenafdeklaag": "tussenafdeklag", "tussendeur": "tussendeur", "tussendoelstelling": "tussendoelstell", "tussenhandel": "tussenhandel", "tussenijstijden": "tussenijstijd", "tussenin": "tussenin", "tussenkomst": "tussenkomst", "tussenlaag": "tussenlag", "tussenliggende": "tussenligg", "tussenopslag": "tussenopslag", "tussenpersonen": "tussenperson", "tussenpositie": "tussenpositie", "tussenpozen": "tussenpoz", "tussenprodukten": "tussenprodukt", "tussenrapport": "tussenrapport", "tussenruimte": "tussenruimt", "tussenstap": "tussenstap", "tussentijd": "tussentijd", "tussentijds": "tussentijd", "tussentijdse": "tussentijd", "tuurde": "tuurd", "tuurden": "tuurd", "tüv": "tuv", "tv": "tv", "tw": "tw", "twa": "twa", "twaalf": "twaalf", "twaalfde": "twaalfd", "twaalfduizend": "twaalfduiz", "twaalfhonderd": "twaalfhonderd", "twaalfjarige": "twaalfjar", "twaalfmijlszone": "twaalfmijlszon", "twaalven": "twaalv", "twathuisbasis": "twathuisbasis", "twee": "twee", "twée": "twee", "tweeassig": "tweeassig", "tweebaans": "tweeban", "tweebladige": "tweeblad", "tweedaags": "tweedag", "tweedaagse": "tweedag", "tweede": "twed", "tweedehands": "tweedehand", "tweedelige": "tweedel", "tweederde": "tweederd", "tweeduizend": "tweeduiz", "tweeën": "tweeen", "tweeëntwintig": "tweeentwint", "tweeënvijftig": "tweeenvijft", "tweeërlei": "tweeerlei", "tweegevecht": "tweegevecht", "tweehonderd": "tweehonderd", "tweehonderdduizend": "tweehonderdduiz", "tweehonderdvijftig": "tweehonderdvijft", "tweehondervijftig": "tweehondervijft", "tweejaarlijks": "tweejar", "tweejaarlijkse": "tweejar", "tweejarig": "tweejar", "tweejarige": "tweejar", "tweelitermotor": "tweelitermotor", "tweemaal": "tweemal", "tweespalt": "tweespalt", "tweesporig": "tweespor", "tweetal": "tweetal", "tweetoerenmotor": "tweetoerenmotor", "tweetraps": "tweetrap", "tweeverdieners": "tweeverdiener", "tweewekelijkse": "tweewek", "twente": "twent", "twentekanalen": "twentekanal", "twentenaren": "twentenar", "twents": "twent", "twentse": "twent", "twh": "twh", "twickel": "twickel", "twijfel": "twijfel", "twijfelachtig": "twijfelacht", "twijfelde": "twijfeld", "twijfelen": "twijfel", "twijfelend": "twijfel", "twijfeling": "twijfel", "twijfelingen": "twijfel", "twijfels": "twijfel", "twijfelt": "twijfelt", "twijgen": "twijg", "twijnstra": "twijnstra", "twinfo": "twinfo", "twingo": "twingo", "twinkelde": "twinkeld", "twinning": "twinning", "twintig": "twintig", "twintigduizend": "twintigduiz", "twintigste": "twintigst", "twintigtal": "twintigtal", "twist": "twist", "twisten": "twist", "twistende": "twistend", "twistpunt": "twistpunt", "two": "two", "tyfoon": "tyfon", "type": "typ", "typeert": "typeert", "typekeuring": "typekeur", "typen": "typ", "types": "types", "typheuze": "typheuz", "typhoon": "typhon", "typisch": "typisch", "typische": "typisch", "tyranniek": "tyranniek", "tyumen": "tyum", "u": "u", "uasb": "uasb", "ubach": "ubach", "ubbens": "ubben", "überhaupt": "uberhaupt", "überwachungsvereine": "uberwachungsverein", "uc": "uc", "uce": "uce", "uci": "uci", "uddel": "uddel", "uden": "uden", "udenhausen": "udenhaus", "udi": "udi", "udmurtië": "udmurtie", "udo": "udo", "uefa": "uefa", "ug": "ug", "uid": "uid", "uien": "uien", "uile": "uil", "uilenogen": "uilenog", "uit": "uit", "uitbaggeren": "uitbagger", "uitbannen": "uitbann", "uitbanning": "uitbann", "uitbarsten": "uitbarst", "uitbarstende": "uitbarst", "uitbarsting": "uitbarst", "uitbarstte": "uitbarst", "uitbating": "uitbat", "uitbazuinen": "uitbazuin", "uitbesteden": "uitbested", "uitbesteding": "uitbested", "uitbesteed": "uitbested", "uitbetaald": "uitbetaald", "uitbetaling": "uitbetal", "uitbladerend": "uitblader", "uitbleef": "uitblef", "uitbleven": "uitblev", "uitblijft": "uitblijft", "uitblijven": "uitblijv", "uitbliksemden": "uitbliksemd", "uitblinken": "uitblink", "uitbloeingen": "uitbloeing", "uitblonk": "uitblonk", "uitbouwen": "uitbouw", "uitbracht": "uitbracht", "uitbrak": "uitbrak", "uitbreid": "uitbreid", "uitbreiden": "uitbreid", "uitbreidende": "uitbreid", "uitbreiding": "uitbreid", "uitbreidingen": "uitbreid", "uitbreidingsgebied": "uitbreidingsgebied", "uitbreidingsgebieden": "uitbreidingsgebied", "uitbreidingsplannen": "uitbreidingsplann", "uitbreidingsprojecten": "uitbreidingsproject", "uitbreidingsvergunning": "uitbreidingsvergunn", "uitbreidingswijk": "uitbreidingswijk", "uitbreidingswijken": "uitbreidingswijk", "uitbreidt": "uitbreidt", "uitbreken": "uitbrek", "uitbrengen": "uitbreng", "uitbrengt": "uitbrengt", "uitbuiting": "uitbuit", "uitbundig": "uitbund", "uitbundige": "uitbund", "uitdaagde": "uitdaagd", "uitdagen": "uitdag", "uitdagend": "uitdag", "uitdaging": "uitdag", "uitdeelactie": "uitdeelactie", "uitdeelde": "uitdeeld", "uitdelen": "uitdel", "uitdiepen": "uitdiep", "uitdieping": "uitdiep", "uitdooft": "uitdooft", "uitdraagt": "uitdraagt", "uitdraaiden": "uitdraaid", "uitdragen": "uitdrag", "uitdrijvend": "uitdrijv", "uitdrogen": "uitdrog", "uitdroging": "uitdrog", "uitdroomde": "uitdroomd", "uitdrukkelijk": "uitdruk", "uitdrukking": "uitdruk", "uitdrukkingloze": "uitdrukkingloz", "uiteen": "uiten", "uiteengezet": "uiteengezet", "uiteenlopen": "uiteenlop", "uiteenlopende": "uiteenlop", "uiteenspatting": "uiteenspat", "uiteenvallen": "uiteenvall", "uiteenzetten": "uiteenzet", "uiteenzetting": "uiteenzet", "uiteenzettingen": "uiteenzet", "uiteinde": "uiteind", "uiteindelijk": "uiteind", "uiteindelijke": "uiteind", "uiten": "uit", "uiteraard": "uiteraard", "uiterlijk": "uiter", "uiterlijke": "uiter", "uiterlijkheid": "uiter", "uitermate": "uitermat", "uiterst": "uiterst", "uiterste": "uiterst", "uitersten": "uiterst", "uiterwaard": "uiterwaard", "uiterwaarden": "uiterwaard", "uitfaseringstermijnen": "uitfaseringstermijn", "uitgaaf": "uitgaf", "uitgaan": "uitgan", "uitgaand": "uitgaand", "uitgaande": "uitgaand", "uitgaansdorp": "uitgaansdorp", "uitgaat": "uitgat", "uitgaf": "uitgaf", "uitgang": "uitgang", "uitgangsgewas": "uitgangsgewas", "uitgangsmateriaal": "uitgangsmateriaal", "uitgangspositie": "uitgangspositie", "uitgangspunt": "uitgangspunt", "uitgangspunten": "uitgangspunt", "uitgave": "uitgav", "uitgavekoers": "uitgavekoer", "uitgaven": "uitgav", "uitgeademd": "uitgeademd", "uitgebaggerd": "uitgebaggerd", "uitgebannen": "uitgebann", "uitgeblazen": "uitgeblaz", "uitgebouwd": "uitgebouwd", "uitgebracht": "uitgebracht", "uitgebrachte": "uitgebracht", "uitgebreid": "uitgebreid", "uitgebreide": "uitgebreid", "uitgebreider": "uitgebreider", "uitgebreidste": "uitgebreidst", "uitgebroken": "uitgebrok", "uitgedaagd": "uitgedaagd", "uitgedacht": "uitgedacht", "uitgedachte": "uitgedacht", "uitgedeeld": "uitgedeeld", "uitgediept": "uitgediept", "uitgedokterd": "uitgedokterd", "uitgedoofd": "uitgedoofd", "uitgedraaid": "uitgedraaid", "uitgedronken": "uitgedronk", "uitgedroogd": "uitgedroogd", "uitgedrukt": "uitgedrukt", "uitgeef": "uitgef", "uitgeeft": "uitgeeft", "uitgefaseerd": "uitgefaseerd", "uitgegaan": "uitgegan", "uitgegeven": "uitgegev", "uitgegist": "uitgegist", "uitgegloeid": "uitgegloeid", "uitgegooid": "uitgegooid", "uitgegraven": "uitgegrav", "uitgegroeid": "uitgegroeid", "uitgegumd": "uitgegumd", "uitgehaald": "uitgehaald", "uitgehold": "uitgehold", "uitgehongerde": "uitgehongerd", "uitgekeerd": "uitgekeerd", "uitgeklede": "uitgekled", "uitgekleed": "uitgekled", "uitgekocht": "uitgekocht", "uitgekomen": "uitgekom", "uitgekozen": "uitgekoz", "uitgelaten": "uitgelat", "uitgelegd": "uitgelegd", "uitgelekt": "uitgelekt", "uitgelekte": "uitgelekt", "uitgelezen": "uitgelez", "uitgelicht": "uitgelicht", "uitgelokt": "uitgelokt", "uitgeloogd": "uitgeloogd", "uitgemergeld": "uitgemergeld", "uitgemeten": "uitgemet", "uitgenodigd": "uitgenodigd", "uitgenodigde": "uitgenodigd", "uitgeoefend": "uitgeoef", "uitgepakt": "uitgepakt", "uitgepakte": "uitgepakt", "uitgeprobeerd": "uitgeprobeerd", "uitgeput": "uitgeput", "uitgeputte": "uitgeput", "uitgereden": "uitgered", "uitgeregend": "uitgereg", "uitgereikt": "uitgereikt", "uitgerekend": "uitgerek", "uitgerekte": "uitgerekt", "uitgeroepen": "uitgeroep", "uitgerold": "uitgerold", "uitgerukt": "uitgerukt", "uitgerust": "uitgerust", "uitgeruste": "uitgerust", "uitgeschakeld": "uitgeschakeld", "uitgescheiden": "uitgescheid", "uitgeschenen": "uitgeschen", "uitgeschitterd": "uitgeschitterd", "uitgescholden": "uitgeschold", "uitgeschreeuwd": "uitgeschreeuwd", "uitgeschreven": "uitgeschrev", "uitgeslagen": "uitgeslag", "uitgesleten": "uitgeslet", "uitgesloten": "uitgeslot", "uitgesmeerd": "uitgesmeerd", "uitgespaard": "uitgespaard", "uitgespeel": "uitgespel", "uitgesplitst": "uitgesplitst", "uitgespoeld": "uitgespoeld", "uitgespoten": "uitgespot", "uitgespreid": "uitgespreid", "uitgespreide": "uitgespreid", "uitgesproken": "uitgesprok", "uitgestapt": "uitgestapt", "uitgesteld": "uitgesteld", "uitgestelde": "uitgesteld", "uitgestippeld": "uitgestippeld", "uitgestoken": "uitgestok", "uitgestort": "uitgestort", "uitgestorven": "uitgestorv", "uitgestote": "uitgestot", "uitgestoten": "uitgestot", "uitgestraald": "uitgestraald", "uitgestrekt": "uitgestrekt", "uitgestrekte": "uitgestrekt", "uitgetrokken": "uitgetrok", "uitgevaagd": "uitgevaagd", "uitgevaardigd": "uitgevaardigd", "uitgevallen": "uitgevall", "uitgevaren": "uitgevar", "uitgeven": "uitgev", "uitgever": "uitgever", "uitgeverij": "uitgeverij", "uitgevers": "uitgever", "uitgevochten": "uitgevocht", "uitgevoerd": "uitgevoerd", "uitgevoerde": "uitgevoerd", "uitgevonden": "uitgevond", "uitgevraagd": "uitgevraagd", "uitgevuurd": "uitgevuurd", "uitgewaaid": "uitgewaaid", "uitgeweken": "uitgewek", "uitgewerkt": "uitgewerkt", "uitgewerkte": "uitgewerkt", "uitgewezen": "uitgewez", "uitgewisseld": "uitgewisseld", "uitgewist": "uitgewist", "uitgeworpen": "uitgeworp", "uitgewroet": "uitgewroet", "uitgezenuwde": "uitgezenuwd", "uitgezet": "uitgezet", "uitgezette": "uitgezet", "uitgezocht": "uitgezocht", "uitgezonden": "uitgezond", "uitgezonderd": "uitgezonderd", "uitgifte": "uitgift", "uitging": "uitging", "uitgingen": "uitging", "uitgluurden": "uitgluurd", "uitgroeien": "uitgroei", "uithangbord": "uithangbord", "uitheemse": "uithem", "uithou": "uithou", "uithouden": "uithoud", "uithoudt": "uithoudt", "uithuilen": "uithuil", "uithuizen": "uithuiz", "uithuizig": "uithuiz", "uiting": "uiting", "uitkeek": "uitkek", "uitkeren": "uitker", "uitkering": "uitker", "uitkeringen": "uitker", "uitkiezen": "uitkiez", "uitkijken": "uitkijk", "uitkijkende": "uitkijk", "uitklaparmen": "uitklaparm", "uitkleden": "uitkled", "uitkleed": "uitkled", "uitklinken": "uitklink", "uitkneep": "uitknep", "uitknijpende": "uitknijp", "uitkomen": "uitkom", "uitkomst": "uitkomst", "uitkomsten": "uitkomst", "uitkomt": "uitkomt", "uitkoopregeling": "uitkoopregel", "uitkopen": "uitkop", "uitkrinkelen": "uitkrinkel", "uitkrinkelt": "uitkrinkelt", "uitkwam": "uitkwam", "uitkwamen": "uitkwam", "uitlaat": "uitlat", "uitlaatgas": "uitlaatgas", "uitlaatgasen": "uitlaatgas", "uitlaatgasnorm": "uitlaatgasnorm", "uitlaatgassen": "uitlaatgass", "uitlaatgemaal": "uitlaatgemal", "uitlachen": "uitlach", "uitlachte": "uitlacht", "uitlaten": "uitlat", "uitlating": "uitlat", "uitlatingen": "uitlat", "uitleg": "uitleg", "uitlegde": "uitlegd", "uitleggen": "uitlegg", "uitlegt": "uitlegt", "uitlek": "uitlek", "uitliet": "uitliet", "uitlogen": "uitlog", "uitloging": "uitlog", "uitlokten": "uitlokt", "uitloog": "uitlog", "uitloogbare": "uitlog", "uitlooggedrag": "uitlooggedrag", "uitloogkarakteristieken": "uitloogkarakteristiek", "uitloogt": "uitloogt", "uitloopspleten": "uitloopsplet", "uitlopen": "uitlop", "uitloven": "uitlov", "uitmaakt": "uitmaakt", "uitmaakte": "uitmaakt", "uitmaken": "uitmak", "uitmonden": "uitmond", "uitmondend": "uitmond", "uitmondt": "uitmondt", "uitneembare": "uitnem", "uitnodigde": "uitnodigd", "uitnodigen": "uitnod", "uitnodiging": "uitnod", "uitoefende": "uitoef", "uitoefenen": "uitoefen", "uitoefening": "uitoefen", "uitontwikkeld": "uitontwikkeld", "uitpakken": "uitpak", "uitpersen": "uitpers", "uitputbaarheid": "uitput", "uitputtend": "uitput", "uitputting": "uitput", "uitputtingsslag": "uitputtingsslag", "uitreiken": "uitreik", "uitreiking": "uitreik", "uitrekenen": "uitreken", "uitrekken": "uitrek", "uitriep": "uitriep", "uitrijden": "uitrijd", "uitrijkosten": "uitrijkost", "uitrijnormen": "uitrijnorm", "uitrijregel": "uitrijregel", "uitrijregeling": "uitrijregel", "uitrijverbod": "uitrijverbod", "uitrijverboden": "uitrijverbod", "uitrit": "uitrit", "uitroep": "uitroep", "uitroepen": "uitroep", "uitroepjes": "uitroepjes", "uitrukken": "uitruk", "uitrukkende": "uitruk", "uitrusten": "uitrust", "uitrusting": "uitrust", "uitrustingen": "uitrust", "uitschakelen": "uitschakel", "uitschaterde": "uitschaterd", "uitscheidden": "uitscheid", "uitscheiden": "uitscheid", "uitscheiding": "uitscheid", "uitscheidt": "uitscheidt", "uitschelden": "uitscheld", "uitschemering": "uitschemer", "uitschieters": "uitschieter", "uitschitterend": "uitschitter", "uitschoten": "uitschot", "uitschreeuwde": "uitschreeuwd", "uitschreeuwen": "uitschreeuw", "uitslag": "uitslag", "uitslagen": "uitslag", "uitsleuver": "uitsleuver", "uitslingerden": "uitslingerd", "uitsloegen": "uitsloeg", "uitsloot": "uitslot", "uitsluit": "uitsluit", "uitsluiten": "uitsluit", "uitsluitend": "uitsluit", "uitsluiting": "uitsluit", "uitsluitsel": "uitsluitsel", "uitsnikken": "uitsnik", "uitspaart": "uitspaart", "uitspande": "uitspand", "uitspanning": "uitspann", "uitspanselwijd": "uitspanselwijd", "uitspeelde": "uitspeeld", "uitspelende": "uitspel", "uitspoelen": "uitspoel", "uitspoelgevoelige": "uitspoelgevoel", "uitspoeling": "uitspoel", "uitspoelt": "uitspoelt", "uitspraak": "uitsprak", "uitsprak": "uitsprak", "uitspraken": "uitsprak", "uitspreken": "uitsprek", "uitstaan": "uitstan", "uitstaande": "uitstaand", "uitstak": "uitstak", "uitstaken": "uitstak", "uitstapje": "uitstapj", "uitstapjes": "uitstapjes", "uitstappen": "uitstapp", "uitstapplaats": "uitstapplat", "uitstapplaatsen": "uitstapplaats", "uitstapte": "uitstapt", "uitsteekt": "uitsteekt", "uitstek": "uitstek", "uitsteken": "uitstek", "uitstekend": "uitstek", "uitstekende": "uitstek", "uitstel": "uitstel", "uitstellen": "uitstell", "uitstelt": "uitstelt", "uitsterven": "uitsterv", "uitstijgen": "uitstijg", "uitstomen": "uitstom", "uitstond": "uitstond", "uitstoot": "uitstot", "uitstootbeperkingen": "uitstootbeperk", "uitstootcijfer": "uitstootcijfer", "uitstootcijfers": "uitstootcijfer", "uitstort": "uitstort", "uitstortte": "uitstort", "uitstoten": "uitstot", "uitstraalde": "uitstraald", "uitstraalden": "uitstraald", "uitstraat": "uitstrat", "uitstralen": "uitstral", "uitstralende": "uitstral", "uitstraling": "uitstral", "uitstrekken": "uitstrek", "uitstrekkende": "uitstrek", "uitstrekkingen": "uitstrek", "uitstrekt": "uitstrekt", "uitstrekte": "uitstrekt", "uitstroom": "uitstrom", "uitte": "uit", "uittinkelende": "uittinkel", "uittreding": "uittred", "uittreedplaatsen": "uittreedplaats", "uittreedregeling": "uittreedregel", "uittrekken": "uittrek", "uittrok": "uittrok", "uittrouwen": "uittrouw", "uitvaarde": "uitvaard", "uitvaardigen": "uitvaard", "uitval": "uitval", "uitvallen": "uitvall", "uitvallend": "uitvall", "uitvalswegen": "uitvalsweg", "uitvalt": "uitvalt", "uitvaren": "uitvar", "uitvarende": "uitvar", "uitverkoop": "uitverkop", "uitverkoren": "uitverkor", "uitviel": "uitviel", "uitvinden": "uitvind", "uitvinder": "uitvinder", "uitvindersprijs": "uitvindersprijs", "uitvindingen": "uitvind", "uitvliegroutes": "uitvliegroutes", "uitvloeisel": "uitvloeisel", "uitvlucht": "uitvlucht", "uitvluchten": "uitvlucht", "uitvluchtte": "uitvlucht", "uitvoer": "uitvoer", "uitvoerbaar": "uitvoer", "uitvoerbaarheid": "uitvoer", "uitvoerbeperkingen": "uitvoerbeperk", "uitvoerde": "uitvoerd", "uitvoerder": "uitvoerder", "uitvoerders": "uitvoerder", "uitvoeren": "uitvoer", "uitvoerende": "uitvoer", "uitvoerenden": "uitvoer", "uitvoerig": "uitvoer", "uitvoerige": "uitvoer", "uitvoering": "uitvoer", "uitvoeringen": "uitvoer", "uitvoerings": "uitvoer", "uitvoeringsaanpak": "uitvoeringsaanpak", "uitvoeringsaspecten": "uitvoeringsaspect", "uitvoeringsbesluiten": "uitvoeringsbesluit", "uitvoeringsconvenant": "uitvoeringsconvenant", "uitvoeringsdienst": "uitvoeringsdienst", "uitvoeringsfase": "uitvoeringsfas", "uitvoeringsfouten": "uitvoeringsfout", "uitvoeringshoofdstuk": "uitvoeringshoofdstuk", "uitvoeringskosten": "uitvoeringskost", "uitvoeringsniveau": "uitvoeringsniveau", "uitvoeringsorganen": "uitvoeringsorgan", "uitvoeringsorganisatie": "uitvoeringsorganisatie", "uitvoeringsorganisaties": "uitvoeringsorganisaties", "uitvoeringsplan": "uitvoeringsplan", "uitvoeringspraktijk": "uitvoeringspraktijk", "uitvoeringsprogramma": "uitvoeringsprogramma", "uitvoeringsregeling": "uitvoeringsregel", "uitvoeringstechniek": "uitvoeringstechniek", "uitvoert": "uitvoert", "uitvoervergunning": "uitvoervergunn", "uitvond": "uitvond", "uitvroeg": "uitvroeg", "uitwaterende": "uitwater", "uitweg": "uitweg", "uitwerken": "uitwerk", "uitwerking": "uitwerk", "uitwerkte": "uitwerkt", "uitwijkende": "uitwijk", "uitwijzen": "uitwijz", "uitwisselen": "uitwissel", "uitwisseling": "uitwissel", "uitwonderden": "uitwonderd", "uitzag": "uitzag", "uitzagen": "uitzag", "uitzeg": "uitzeg", "uitzeggen": "uitzegg", "uitzendbureau": "uitzendbureau", "uitzenden": "uitzend", "uitzet": "uitzet", "uitzette": "uitzet", "uitzetten": "uitzet", "uitzettende": "uitzet", "uitzetting": "uitzet", "uitzicht": "uitzicht", "uitzichtloosheid": "uitzichtlos", "uitzien": "uitzien", "uitziende": "uitziend", "uitziet": "uitziet", "uitzoeken": "uitzoek", "uitzonderen": "uitzonder", "uitzondering": "uitzonder", "uitzonderingen": "uitzonder", "uitzonderingsbepaling": "uitzonderingsbepal", "uitzonderingsbepalingen": "uitzonderingsbepal", "uitzonderingspositie": "uitzonderingspositie", "uitzonderingssituaties": "uitzonderingssituaties", "uitzonderlijk": "uitzonder", "uitzondert": "uitzondert", "uitzong": "uitzong", "uitzonnende": "uitzonn", "uitzwaai": "uitzwaai", "uitzwaaide": "uitzwaaid", "uitzwermen": "uitzwerm", "uk": "uk", "ukkel": "ukkel", "ulenhof": "ulenhof", "ulft": "ulft", "ulrich": "ulrich", "ultieme": "ultiem", "ultimem": "ultimem", "ultimer": "ultimer", "ultra": "ultra", "ultrafiltratie": "ultrafiltratie", "ultrageluid": "ultrageluid", "ultramoderne": "ultramodern", "ultrasone": "ultrason", "ultrasonics": "ultrasonic", "ultraviolet": "ultraviolet", "ultraviolette": "ultraviolet", "ump": "ump", "umwelt": "umwelt", "umweltakademie": "umweltakademie", "umweltbundesamt": "umweltbundesamt", "umweltechniek": "umweltechniek", "umwelttechnik": "umwelttechnik", "un": "un", "una": "una", "unaniem": "unaniem", "unattended": "unattended", "unced": "unced", "unctad": "unctad", "und": "und", "understanding": "understand", "undp": "undp", "unep": "unep", "uneto": "uneto", "uni": "uni", "unicarb": "unicarb", "unice": "unic", "unidek": "unidek", "unie": "unie", "uniek": "uniek", "unieke": "uniek", "unifill": "unifill", "uniform": "uniform", "uniforme": "uniform", "uniformering": "uniformer", "uniformfiguur": "uniformfigur", "uniformiteit": "uniformiteit", "uniformjas": "uniformjas", "uniformkraag": "uniformkrag", "unilever": "unilever", "unileverconcern": "unileverconcern", "unimuenster": "unimuenster", "union": "union", "unit": "unit", "united": "united", "units": "unit", "universeel": "universel", "universele": "universel", "universitair": "universitair", "universitaire": "universitair", "universität": "universitat", "universiteit": "universiteit", "universiteiten": "universiteit", "universiteitstijd": "universiteitstijd", "university": "university", "unsaturated": "unsaturated", "up": "up", "update": "updat", "upflow": "upflow", "upgrade": "upgrad", "upper": "upper", "uranium": "uranium", "uraniumverrijkingsfabriek": "uraniumverrijkingsfabriek", "uraniumvoorraden": "uraniumvoorrad", "urea": "urea", "uren": "uren", "urenco": "urenco", "ureum": "ureum", "ureumgehalte": "ureumgehalt", "urey": "urey", "urgent": "urgent", "urgente": "urgent", "urgentie": "urgentie", "urgentiebepaling": "urgentiebepal", "urgenties": "urgenties", "urgentiesystematiek": "urgentiesystematiek", "urgentiesystemen": "urgentiesystem", "urine": "urin", "urineconcentratie": "urineconcentratie", "urineproeven": "urineproev", "urinoirs": "urinoir", "urk": "urk", "us": "us", "usa": "usa", "usaid": "usaid", "usd": "usd", "usda": "usda", "use": "use", "usinor": "usinor", "usinsk": "usinsk", "ussc": "ussc", "usual": "usual", "ut": "ut", "utec": "utec", "utgast": "utgast", "utiliteitsbouw": "utiliteitsbouw", "utiliteitsgebouwen": "utiliteitsgebouw", "utiliteitsprojecten": "utiliteitsproject", "utilities": "utilities", "utility": "utility", "utopie": "utopie", "utrecht": "utrecht", "utrechts": "utrecht", "utrechtse": "utrecht", "uur": "uur", "uurgemiddelde": "uurgemiddeld", "uurtje": "uurtj", "uv": "uv", "uva": "uva", "uw": "uw", "uwe": "uwe", "uylenburg": "uylenburg", "uzelf": "uzelf", "v": "v", "va": "va", "vaag": "vag", "vaagde": "vaagd", "vaagheden": "vaagheid", "vaagheid": "vaagheid", "vaagjes": "vaagjes", "vaags": "vag", "vaagte": "vaagt", "vaagweg": "vaagweg", "vaak": "vak", "vaal": "val", "vaalblanke": "vaalblank", "vaalbleek": "vaalblek", "vaalte": "vaalt", "vaarboeren": "vaarboer", "vaarde": "vaard", "vaarden": "vaard", "vaardigen": "vaardig", "vaardigheden": "vaardig", "vaargebied": "vaargebied", "vaargeul": "vaargeul", "vaargeulen": "vaargeul", "vaarroute": "vaarrout", "vaart": "vaart", "vaarten": "vaart", "vaartijd": "vaartijd", "vaarverboden": "vaarverbod", "vaarverkeer": "vaarverker", "vaarwater": "vaarwater", "vaarwegen": "vaarweg", "vaarwel": "vaarwel", "vaas": "vas", "vaatwasmachine": "vaatwasmachin", "vabi": "vabi", "vac": "vac", "vacantie": "vacantie", "vaccin": "vaccin", "vaco": "vaco", "vacudest": "vacudest", "vacuüm": "vacum", "vacuümextractie": "vacuumextractie", "vacuümpomp": "vacuumpomp", "vacuümwateringsmethode": "vacuumwateringsmethod", "vacuümzout": "vacuumzout", "vademecum": "vademecum", "vader": "vader", "vaderde": "vaderd", "vadergezicht": "vadergezicht", "vaderland": "vaderland", "vaderlandsliefde": "vaderlandsliefd", "vaderlijk": "vader", "vaderlijke": "vader", "vaderlijkheid": "vader", "vaderlijkjes": "vaderlijkjes", "vaders": "vader", "vadertje": "vadertj", "vage": "vag", "vager": "vager", "vagevuur": "vagevur", "vagron": "vagron", "vai": "vai", "vak": "vak", "vakantie": "vakantie", "vakantiebeurs": "vakantiebeur", "vakantiebungalows": "vakantiebungalow", "vakantiecentrum": "vakantiecentrum", "vakantiehuisjes": "vakantiehuisjes", "vakantiepark": "vakantiepark", "vakanties": "vakanties", "vakantietrek": "vakantietrek", "vakantievluchten": "vakantievlucht", "vakbekwaamheid": "vakbekwam", "vakbeurs": "vakbeur", "vakbeweging": "vakbeweg", "vakblad": "vakblad", "vakbond": "vakbond", "vakbonden": "vakbond", "vakbondsacties": "vakbondsacties", "vakdag": "vakdag", "vaker": "vaker", "vakgebied": "vakgebied", "vakgebieden": "vakgebied", "vakgenoten": "vakgenot", "vakgroep": "vakgroep", "vakgroepen": "vakgroep", "vakjes": "vakjes", "vakken": "vak", "vakkundig": "vakkund", "vaklieden": "vaklied", "vakman": "vakman", "vakmanschap": "vakmanschap", "vakmatig": "vakmat", "vakondernemers": "vakondernemer", "vakorganisatie": "vakorganisatie", "vakorganisaties": "vakorganisaties", "vakschool": "vakschol", "vaktechnische": "vaktechnisch", "vaktijdschrift": "vaktijdschrift", "val": "val", "valdez": "valdez", "vale": "val", "valencia": "valencia", "valenciennes": "valenciennes", "valgordijnen": "valgordijn", "validatie": "validatie", "validation": "validation", "valideert": "valideert", "valkenburg": "valkenburg", "valkeniers": "valkenier", "vallei": "vallei", "valleien": "vallei", "vallen": "vall", "vallend": "vallend", "vallende": "vallend", "valley": "valley", "valling": "valling", "valmet": "valmet", "valpijp": "valpijp", "valreep": "valrep", "vals": "val", "valse": "val", "valselijke": "valselijk", "valsheid": "valsheid", "valt": "valt", "value": "value", "valuta": "valuta", "valvas": "valvas", "vam": "vam", "vamij": "vamij", "vamil": "vamil", "vamilregeling": "vamilregel", "van": "van", "vanaf": "vanaf", "vanavond": "vanavond", "vandaag": "vandag", "vandaan": "vandan", "vandaar": "vandar", "vandalistische": "vandalistisch", "vanderveen": "vanderven", "vandien": "vandien", "vandofix": "vandofix", "vandoor": "vandor", "vanga": "vanga", "vangen": "vang", "vangnet": "vangnet", "vangnetregels": "vangnetregel", "vangrail": "vangrail", "vangst": "vangst", "vangstbeperkingen": "vangstbeperk", "vangsten": "vangst", "vangstlimieten": "vangstlimiet", "vangstquota": "vangstquota", "vangstrendement": "vangstrendement", "vangt": "vangt", "vangveld": "vangveld", "vanla": "vanla", "vanmiddag": "vanmiddag", "vanmorgen": "vanmorg", "vannacht": "vannacht", "vanochtend": "vanocht", "vantevoren": "vantevor", "vanuit": "vanuit", "vanwaar": "vanwar", "vanwege": "vanweg", "vanzelf": "vanzelf", "vanzelfsprekend": "vanzelfsprek", "vapotherm": "vapotherm", "var": "var", "vara": "vara", "varekamp": "varekamp", "varen": "var", "varend": "varend", "varende": "varend", "variabel": "variabel", "variabele": "variabel", "variabelen": "variabel", "variabiliteit": "variabiliteit", "variant": "variant", "varianten": "variant", "variatie": "variatie", "variaties": "variaties", "varieerde": "varieerd", "varieert": "varieert", "variëren": "varier", "variërend": "varier", "variëteit": "varieteit", "varirende": "varir", "varkelsingel": "varkelsingel", "varken": "vark", "varkens": "varken", "varkensbedrijf": "varkensbedrijf", "varkensbedrijven": "varkensbedrijv", "varkensboeren": "varkensboer", "varkensdrijfmest": "varkensdrijfmest", "varkensfokkerij": "varkensfokkerij", "varkensfosfaat": "varkensfosfat", "varkenshouder": "varkenshouder", "varkenshouderij": "varkenshouderij", "varkenshouderijen": "varkenshouderij", "varkenshouders": "varkenshouder", "varkensmest": "varkensmest", "varkensmester": "varkensmester", "varkensmesters": "varkensmester", "varkensproefbedrijf": "varkensproefbedrijf", "varkensquotumregeling": "varkensquotumregel", "varkenssector": "varkenssector", "varkensstapel": "varkensstapel", "varkensstaten": "varkensstat", "varkensvlees": "varkensvles", "varkensvoer": "varkensvoer", "varta": "varta", "varteig": "varteig", "vas": "vas", "vast": "vast", "vastbedvergassing": "vastbedvergass", "vaste": "vast", "vasteland": "vasteland", "vaster": "vaster", "vastestofgehalte": "vastestofgehalt", "vastgegroeid": "vastgegroeid", "vastgehouden": "vastgehoud", "vastgeketend": "vastgeket", "vastgeklonken": "vastgeklonk", "vastgelegd": "vastgelegd", "vastgelegde": "vastgelegd", "vastgelopen": "vastgelop", "vastgemeerd": "vastgemeerd", "vastgepakt": "vastgepakt", "vastgesteld": "vastgesteld", "vastgestelde": "vastgesteld", "vastgevroren": "vastgevror", "vastgeworteld": "vastgeworteld", "vastgezet": "vastgezet", "vastgezeten": "vastgezet", "vastgoed": "vastgoed", "vastgoedontwikkeling": "vastgoedontwikkel", "vastgroeide": "vastgroeid", "vastgroeien": "vastgroei", "vastheid": "vastheid", "vasthield": "vasthield", "vasthielden": "vasthield", "vasthouden": "vasthoud", "vasthoudende": "vasthoud", "vasthoudingen": "vasthoud", "vasthoudt": "vasthoudt", "vastklampende": "vastklamp", "vastklampingen": "vastklamp", "vastleggen": "vastlegg", "vastlegging": "vastlegg", "vastloopt": "vastloopt", "vastpakte": "vastpakt", "vastpint": "vastpint", "vaststaat": "vaststat", "vaststellen": "vaststell", "vaststelling": "vaststell", "vaststellingsbesluiten": "vaststellingsbesluit", "vaststelt": "vaststelt", "vastzetcode": "vastzetcod", "vat": "vat", "vatbaar": "vatbar", "vaten": "vat", "vatenhandling": "vatenhandl", "vatenlifter": "vatenlifter", "vatenopslagsystemen": "vatenopslagsystem", "vatenpallet": "vatenpallet", "vatenpompen": "vatenpomp", "vatentransport": "vatentransport", "vathorst": "vathorst", "vaticaan": "vatican", "vatte": "vat", "vatten": "vat", "vattende": "vattend", "vavi": "vavi", "vazallen": "vazall", "vazalletjes": "vazalletjes", "vazen": "vaz", "vb": "vb", "vbbm": "vbbm", "vbm": "vbm", "vbnm": "vbnm", "vbr": "vbr", "vbw": "vbw", "vca": "vca", "vcbw": "vcbw", "vci": "vci", "vda": "vda", "vdi": "vdi", "veba": "veba", "vecht": "vecht", "vechten": "vecht", "vechtplassen": "vechtplass", "vechtplassengebied": "vechtplassengebied", "vechtstreek": "vechtstrek", "vee": "vee", "veebedrijf": "veebedrijf", "veebedrijven": "veebedrijv", "veebezetting": "veebezet", "veeboeren": "veeboer", "veedichtheid": "veedicht", "veeg": "veg", "veegde": "veegd", "veegden": "veegd", "veegmachine": "veegmachin", "veegmachines": "veegmachines", "veegroutes": "veegroutes", "veegt": "veegt", "veegvuil": "veegvuil", "veegwagens": "veegwagen", "veehouder": "veehouder", "veehouderij": "veehouderij", "veehouderijbedrijven": "veehouderijbedrijv", "veehouderijen": "veehouderij", "veehouders": "veehouder", "veehoudersbedrijven": "veehoudersbedrijv", "veehoudersfamilie": "veehoudersfamilie", "veeken": "vek", "veel": "vel", "véel": "vel", "veelal": "veelal", "veelbelovend": "veelbelov", "veelbelovende": "veelbelov", "veelde": "veeld", "veeleer": "veeler", "veeleisend": "veeleis", "veelgebruikte": "veelgebruikt", "veelgevraagde": "veelgevraagd", "veelheid": "veelheid", "veelomvattende": "veelomvat", "veelvoud": "veelvoud", "veelvuldig": "veelvuld", "veen": "ven", "veendam": "veendam", "veenendaal": "veenendal", "veenendaalse": "veenendal", "veengebieden": "veengebied", "veengrond": "veengrond", "veengronden": "veengrond", "veenhuizen": "veenhuiz", "veenkoloniale": "veenkolonial", "veenkoloniën": "veenkolonien", "veenman": "veenman", "veenpluis": "veenpluis", "veenweide": "veenweid", "veenweidegebied": "veenweidegebied", "veenweidelandschap": "veenweidelandschap", "veenwinning": "veenwinn", "veer": "ver", "veerboten": "veerbot", "veerdam": "veerdam", "veerkracht": "veerkracht", "veerse": "ver", "veerstraat": "veerstrat", "veersysteem": "veersystem", "veertien": "veertien", "veertiende": "veertiend", "veertig": "veertig", "veèrtig": "veèrtig", "veesoorten": "veesoort", "veestallen": "veestall", "veestapel": "veestapel", "veestapels": "veestapel", "veeteelt": "veeteelt", "veetelers": "veeteler", "veevoeder": "veevoeder", "veevoederbedrijf": "veevoederbedrijf", "veevoederindustrie": "veevoederindustrie", "veevoedernorm": "veevoedernorm", "veevoedingsmaatregelen": "veevoedingsmaatregel", "veevoer": "veevoer", "veevoermaatregelen": "veevoermaatregel", "veeziekten": "veeziekt", "vega": "vega", "vegen": "veg", "vegetatie": "vegetatie", "vegetatiedak": "vegetatiedak", "vegetaties": "vegetaties", "vegetatiezones": "vegetatiezones", "vegeteerden": "vegeteerd", "vegeteren": "vegeter", "veghel": "veghel", "vehicle": "vehicl", "vehicles": "vehicles", "vehikel": "vehikel", "veilig": "veilig", "veilige": "veilig", "veiliger": "veiliger", "veiligheid": "veilig", "veiligheidniveau": "veiligheidniveau", "veiligheids": "veilig", "veiligheidsanalyses": "veiligheidsanalyses", "veiligheidsaspecten": "veiligheidsaspect", "veiligheidsbelang": "veiligheidsbelang", "veiligheidsbeschouwing": "veiligheidsbeschouw", "veiligheidseisen": "veiligheidseis", "veiligheidsgebied": "veiligheidsgebied", "veiligheidshelmen": "veiligheidshelm", "veiligheidskranen": "veiligheidskran", "veiligheidsmaatregelen": "veiligheidsmaatregel", "veiligheidsmanagementsysteem": "veiligheidsmanagementsystem", "veiligheidsmarge": "veiligheidsmarg", "veiligheidsmarges": "veiligheidsmarges", "veiligheidsniveau": "veiligheidsniveau", "veiligheidsnorm": "veiligheidsnorm", "veiligheidsnormen": "veiligheidsnorm", "veiligheidsplatform": "veiligheidsplatform", "veiligheidspolitiek": "veiligheidspolitiek", "veiligheidsprestaties": "veiligheidsprestaties", "veiligheidsproeven": "veiligheidsproev", "veiligheidsraad": "veiligheidsrad", "veiligheidsrapportage": "veiligheidsrapportag", "veiligheidsrisico": "veiligheidsrisico", "veiligheidsschoenen": "veiligheidsschoen", "veiligheidsstelling": "veiligheidsstell", "veiligheidsstudies": "veiligheidsstudies", "veiligheidssysteem": "veiligheidssystem", "veiligheidssystemen": "veiligheidssystem", "veiligheidstechniek": "veiligheidstechniek", "veiligheidsventielen": "veiligheidsventiel", "veiligheidsvoorschriften": "veiligheidsvoorschrift", "veiligs": "veilig", "veiligste": "veiligst", "veiligstellen": "veiligstell", "veiling": "veiling", "veilinghal": "veilinghal", "veine": "vein", "veitsiluoto": "veitsiluoto", "veka": "veka", "vel": "vel", "veld": "veld", "veldbrand": "veldbrand", "velddelicten": "velddelict", "velddienst": "velddienst", "velden": "veld", "velders": "velder", "veldexperimenten": "veldexperiment", "veldhoven": "veldhov", "veldhuis": "veldhuis", "veldpolitie": "veldpolitie", "veldproeven": "veldproev", "veldtest": "veldtest", "velduitbreidingen": "velduitbreid", "vele": "vel", "véle": "vel", "velen": "vel", "vélen": "vel", "velerlei": "velerlei", "veligheidsinformatiebladen": "veligheidsinformatieblad", "vellen": "vell", "velletje": "velletj", "vellinga": "vellinga", "velouté": "velout", "velp": "velp", "velperbroek": "velperbroek", "velsen": "vels", "veltman": "veltman", "veluwe": "veluw", "veluwse": "veluw", "velzen": "velz", "ven": "ven", "venen": "ven", "venestraat": "venestrat", "venezolaanse": "venezolan", "venezuela": "venezuela", "venijn": "venijn", "venlo": "venlo", "vennen": "venn", "vennep": "vennep", "vennoot": "vennot", "vennootschap": "vennootschap", "vennootschappen": "vennootschapp", "vennootschaps": "vennootschap", "vennootschapsbelasting": "vennootschapsbelast", "vennootschapsbelastingen": "vennootschapsbelast", "vennootsschaps": "vennootsschap", "venster": "venster", "venstergordijnen": "venstergordijn", "vensterguipure": "vensterguipur", "vensterogen": "vensterog", "vensterposten": "vensterpost", "vensters": "venster", "vent": "vent", "ventiel": "ventiel", "ventielen": "ventiel", "ventielsystemen": "ventielsystem", "ventilatie": "ventilatie", "ventilatiehoeveelheden": "ventilatiehoevel", "ventilatiekanalen": "ventilatiekanal", "ventilatielucht": "ventilatielucht", "ventilatiemogelijkheid": "ventilatiemog", "ventilatiesysteem": "ventilatiesystem", "ventilatiesystemen": "ventilatiesystem", "ventilating": "ventilat", "ventilator": "ventilator", "ventilatorbladen": "ventilatorblad", "ventilatorcapaciteit": "ventilatorcapaciteit", "ventilatoren": "ventilator", "ventje": "ventj", "venture": "ventur", "ventures": "ventures", "venturi": "venturi", "venushaar": "venushar", "veoorzaakt": "veoorzaakt", "vepakkingsregels": "vepakkingsregel", "ver": "ver", "vèr": "vèr", "verachte": "veracht", "verachting": "veracht", "verademen": "veradem", "verademing": "veradem", "verafgelegen": "verafgeleg", "verafgood": "verafgod", "verafgoodde": "verafgod", "verafgoodden": "verafgod", "veranda": "veranda", "veranderd": "veranderd", "veranderde": "veranderd", "veranderden": "veranderd", "veranderen": "verander", "veranderende": "verander", "verandering": "verander", "veranderingen": "verander", "veranderings": "verander", "veranderingsproces": "veranderingsproces", "veranderingsprocessen": "veranderingsprocess", "verandert": "verandert", "verankerd": "verankerd", "verantwoord": "verantwoord", "verantwoorde": "verantwoord", "verantwoordelijk": "verantwoord", "verantwoordelijke": "verantwoord", "verantwoordelijken": "verantwoord", "verantwoordelijkheden": "verantwoord", "verantwoordelijkheid": "verantwoord", "verantwoorden": "verantwoord", "verantwoording": "verantwoord", "verarmd": "verarmd", "verarmde": "verarmd", "verarming": "verarm", "verarmt": "verarmt", "verbaaasd": "verbaaasd", "verbaal": "verbal", "verbaasd": "verbaasd", "verbaasde": "verbaasd", "verbaast": "verbaast", "verbaliseerd": "verbaliseerd", "verband": "verband", "verbanden": "verband", "verbannen": "verbann", "verbasterd": "verbasterd", "verbazen": "verbaz", "verbazend": "verbaz", "verbazing": "verbaz", "verbeek": "verbek", "verbeeld": "verbeeld", "verbeeldde": "verbeeld", "verbeelden": "verbeeld", "verbeelding": "verbeeld", "verbeeldingen": "verbeeld", "verbeeldt": "verbeeldt", "verberg": "verberg", "verbergen": "verberg", "verbergt": "verbergt", "verberne": "verbern", "verbeterd": "verbeterd", "verbeterde": "verbeterd", "verbeterdoelstelling": "verbeterdoelstell", "verbeterdoelstellingen": "verbeterdoelstell", "verbeteren": "verbeter", "verbetering": "verbeter", "verbeteringen": "verbeter", "verbeterprogramma": "verbeterprogramma", "verbetert": "verbetert", "verbied": "verbied", "verbieden": "verbied", "verbiedt": "verbiedt", "verbijsterd": "verbijsterd", "verbinden": "verbind", "verbinding": "verbind", "verbindingen": "verbind", "verbindingskanaal": "verbindingskanal", "verbindingssystemen": "verbindingssystem", "verbindingsweg": "verbindingsweg", "verbindingswegen": "verbindingsweg", "verbindingszone": "verbindingszon", "verbindingszones": "verbindingszones", "verbitst": "verbitst", "verbitterd": "verbitterd", "verbitterde": "verbitterd", "verbittering": "verbitter", "verblankende": "verblank", "verbleekt": "verbleekt", "verbleekte": "verbleekt", "verbleekten": "verbleekt", "verbleking": "verblek", "verbleven": "verblev", "verblijf": "verblijf", "verblijfsruimten": "verblijfsruimt", "verblijft": "verblijft", "verblijven": "verblijv", "verblind": "verblind", "verblindde": "verblind", "verblinden": "verblind", "verblindend": "verblind", "verblindende": "verblind", "verblinding": "verblind", "verbod": "verbod", "verboden": "verbod", "verbolgen": "verbolg", "verbond": "verbond", "verbonden": "verbond", "verbood": "verbod", "verboosd": "verboosd", "verborg": "verborg", "verborgen": "verborg", "verborgenheden": "verborg", "verbouwd": "verbouwd", "verbouwde": "verbouwd", "verbouwen": "verbouw", "verbouwingen": "verbouw", "verbraken": "verbrak", "verbrand": "verbrand", "verbrandbare": "verbrand", "verbrande": "verbrand", "verbranden": "verbrand", "verbranding": "verbrand", "verbrandingscapaciteit": "verbrandingscapaciteit", "verbrandingsenergie": "verbrandingsenergie", "verbrandingsgas": "verbrandingsgas", "verbrandingsgassen": "verbrandingsgass", "verbrandingsinstallatie": "verbrandingsinstallatie", "verbrandingsinstallaties": "verbrandingsinstallaties", "verbrandingskamer": "verbrandingskamer", "verbrandingskamers": "verbrandingskamer", "verbrandingslijn": "verbrandingslijn", "verbrandingslucht": "verbrandingslucht", "verbrandingsoptie": "verbrandingsoptie", "verbrandingsoven": "verbrandingsov", "verbrandingsovens": "verbrandingsoven", "verbrandingsproces": "verbrandingsproces", "verbrandingsprocessen": "verbrandingsprocess", "verbrandingsprodukten": "verbrandingsprodukt", "verbrandingsresten": "verbrandingsrest", "verbrandingsslakken": "verbrandingsslak", "verbrandingssysteem": "verbrandingssystem", "verbrandingstarief": "verbrandingstarief", "verbrandingstechniek": "verbrandingstechniek", "verbrandingstechnieken": "verbrandingstechniek", "verbrandingstechnologie": "verbrandingstechnologie", "verbrandingstemperatuur": "verbrandingstemperatur", "verbrandingswaarde": "verbrandingswaard", "verbrandingswarmte": "verbrandingswarmt", "verbrandt": "verbrandt", "verbrede": "verbred", "verbreden": "verbred", "verbreding": "verbred", "verbreed": "verbred", "verbreedden": "verbred", "verbreekt": "verbreekt", "verbreid": "verbreid", "verbreken": "verbrek", "verbrijzelen": "verbrijzel", "verbroederen": "verbroeder", "verbroederlijken": "verbroeder", "verbroederlijkt": "verbroederlijkt", "verbroken": "verbrok", "verbrugge": "verbrugg", "verbruggen": "verbrugg", "verbruik": "verbruik", "verbruiken": "verbruik", "verbruikers": "verbruiker", "verbruiksbelasting": "verbruiksbelast", "verbruiksgoederen": "verbruiksgoeder", "verbruiksvolume": "verbruiksvolum", "verbruikt": "verbruikt", "verbruikte": "verbruikt", "verbugt": "verbugt", "verburgerlijkt": "verburgerlijkt", "verburgerlijkte": "verburgerlijkt", "verchroominrichting": "verchroominricht", "vercirkelen": "vercirkel", "vercomposteerd": "vercomposteerd", "vercomposteert": "vercomposteert", "verdacht": "verdacht", "verdachte": "verdacht", "verdachten": "verdacht", "verdampen": "verdamp", "verdamper": "verdamper", "verdampers": "verdamper", "verdamping": "verdamp", "verdampingsmeter": "verdampingsmeter", "verdampingsronde": "verdampingsrond", "verdampingssysteem": "verdampingssystem", "verdampingstemperatuur": "verdampingstemperatur", "verdampt": "verdampt", "verdamptemperatuur": "verdamptemperatur", "verdedig": "verded", "verdedigbaar": "verdedig", "verdedigd": "verdedigd", "verdedigde": "verdedigd", "verdedigen": "verded", "verdedigend": "verded", "verdedigende": "verded", "verdediger": "verdediger", "verdediging": "verded", "verdedigingslinie": "verdedigingslinie", "verdedigingssystemen": "verdedigingssystem", "verdedigingswerken": "verdedigingswerk", "verdedigt": "verdedigt", "verdeel": "verdel", "verdeeld": "verdeeld", "verdeelde": "verdeeld", "verdeeldheid": "verdeeld", "verdeelnet": "verdeelnet", "verdeelplan": "verdeelplan", "verdeelsleutel": "verdeelsleutel", "verdeelstations": "verdeelstation", "verdeelstelsel": "verdeelstelsel", "verdeelt": "verdeelt", "verdelen": "verdel", "verdeling": "verdel", "verdelingen": "verdel", "verdenking": "verdenk", "verdenkt": "verdenkt", "verder": "verder", "vèrder": "vèrder", "verdere": "verder", "verderf": "verderf", "verdergaand": "verdergaand", "verdergaande": "verdergaand", "verderop": "verderop", "verdicht": "verdicht", "verdichten": "verdicht", "verdichting": "verdicht", "verdichtingsprincipe": "verdichtingsprincip", "verdien": "verdien", "verdiend": "verdiend", "verdiende": "verdiend", "verdienden": "verdiend", "verdienen": "verdien", "verdienste": "verdienst", "verdienstelijk": "verdienst", "verdiensten": "verdienst", "verdient": "verdient", "verdiepen": "verdiep", "verdieping": "verdiep", "verdiepingen": "verdiep", "verdiepingsvloeren": "verdiepingsvloer", "verdiept": "verdiept", "verdiepte": "verdiept", "verdisconteerd": "verdisconteerd", "verdoen": "verdoen", "verdoet": "verdoet", "verdoezeld": "verdoezeld", "verdomd": "verdomd", "verdòmd": "verdòmd", "verdomde": "verdomd", "verdómde": "verdomd", "verdomme": "verdomm", "verdommen": "verdomm", "verdorde": "verdord", "verdorren": "verdorr", "verdorven": "verdorv", "verdoving": "verdov", "verdraag": "verdrag", "verdraagzaam": "verdraagzam", "verdraagzaamheid": "verdraagzam", "verdraai": "verdraai", "verdraaiing": "verdraai", "verdraait": "verdraait", "verdrag": "verdrag", "verdragen": "verdrag", "verdrie": "verdrie", "verdriet": "verdriet", "verdrietige": "verdriet", "verdrievoudigd": "verdrievoudigd", "verdrievoudigen": "verdrievoud", "verdrievoudiging": "verdrievoud", "verdrijven": "verdrijv", "verdringen": "verdring", "verdringerpomp": "verdringerpomp", "verdringingsprincipe": "verdringingsprincip", "verdringt": "verdringt", "verdrinken": "verdrink", "verdrinkende": "verdrink", "verdrinking": "verdrink", "verdrogen": "verdrog", "verdroging": "verdrog", "verdrogingsbeleid": "verdrogingsbeleid", "verdrogingsbestrijding": "verdrogingsbestrijd", "verdrogingsproblematiek": "verdrogingsproblematiek", "verdrongen": "verdrong", "verdronk": "verdronk", "verdronken": "verdronk", "verdroogd": "verdroogd", "verdropen": "verdrop", "verdrukken": "verdruk", "verdrukking": "verdruk", "verdrukt": "verdrukt", "verdrukte": "verdrukt", "verdruppeling": "verdruppel", "verdubbeld": "verdubbeld", "verdubbelde": "verdubbeld", "verdubbelen": "verdubbel", "verdubbeling": "verdubbel", "verdubbelt": "verdubbelt", "verduistert": "verduistert", "verduiveld": "verduiveld", "verdund": "verdund", "verdunde": "verdund", "verdunning": "verdunn", "verdunningsapparaat": "verdunningsapparat", "verdunt": "verdunt", "verduren": "verdur", "verduurzaamd": "verduurzaamd", "verduurzamen": "verduurzam", "verdwaalde": "verdwaald", "verdwalen": "verdwal", "verdween": "verdwen", "verdwenen": "verdwen", "verdwijn": "verdwijn", "verdwijnen": "verdwijn", "verdwijnend": "verdwijn", "verdwijnende": "verdwijn", "verdwijning": "verdwijn", "verdwijnt": "verdwijnt", "veredeling": "veredel", "veredelingsbedrijven": "veredelingsbedrijv", "veredelingsprogramma": "veredelingsprogramma", "vereende": "vereend", "vereeniging": "veren", "vereenvoudigd": "vereenvoudigd", "vereenvoudigde": "vereenvoudigd", "vereenvoudigen": "vereenvoud", "vereenvoudiging": "vereenvoud", "vereenzaamd": "vereenzaamd", "vereenzaamde": "vereenzaamd", "vereenzelvigd": "vereenzelvigd", "vereerd": "vereerd", "vereerde": "vereerd", "vereerder": "vereerder", "vereffend": "vereff", "vereffende": "vereff", "vereffening": "vereffen", "vereinigte": "vereinigt", "vereinigung": "vereinigung", "vereisen": "vereis", "vereist": "vereist", "vereiste": "vereist", "vereisten": "vereist", "veren": "ver", "verenen": "veren", "verenigd": "verenigd", "verenigde": "verenigd", "verenigden": "verenigd", "verenigen": "veren", "vereniging": "veren", "verenigingen": "veren", "verenigingsmolens": "verenigingsmolen", "verenigingstijdschrift": "verenigingstijdschrift", "verenigt": "verenigt", "verergerd": "verergerd", "verergeren": "vererger", "verevening": "vereven", "verf": "verf", "verfafval": "verfafval", "verfapplicatie": "verfapplicatie", "verfbranchevereniging": "verfbrancheveren", "verfconvenant": "verfconvenant", "verfde": "verfd", "verffabrieken": "verffabriek", "verffabrikanten": "verffabrikant", "verfhoudende": "verfhoud", "verfijnd": "verfijnd", "verfijnde": "verfijnd", "verfijnder": "verfijnder", "verfijnen": "verfijn", "verfijning": "verfijn", "verfindustrie": "verfindustrie", "verflaag": "verflag", "verflensende": "verflens", "verflijn": "verflijn", "verfomzet": "verfomzet", "verfproducenten": "verfproducent", "verfprodukten": "verfprodukt", "verfrestanten": "verfrestant", "verfrissends": "verfriss", "verfriste": "verfrist", "verfsector": "verfsector", "verfsoorten": "verfsoort", "verfstof": "verfstof", "verfsysteem": "verfsystem", "verfsystemen": "verfsystem", "vergaan": "vergan", "vergaand": "vergaand", "vergaande": "vergaand", "vergaard": "vergaard", "vergaarde": "vergaard", "vergaat": "vergat", "vergaderboeren": "vergaderboer", "vergaderen": "vergader", "vergadering": "vergader", "vergaderingen": "vergader", "vergaf": "vergaf", "vergaren": "vergar", "vergaring": "vergar", "vergassen": "vergass", "vergasser": "vergasser", "vergassers": "vergasser", "vergassing": "vergass", "vergassingsgedeelte": "vergassingsgedeelt", "vergassingsinstallatie": "vergassingsinstallatie", "vergast": "vergast", "vergat": "vergat", "vergaten": "vergat", "vergde": "vergd", "vergeef": "vergef", "vergeefs": "vergef", "vergeeft": "vergeeft", "vergeeld": "vergeeld", "vergeet": "verget", "vergeetachtigheid": "vergeetacht", "vergeleek": "vergelek", "vergeleken": "vergelek", "vergelijk": "vergelijk", "vergelijkbaar": "vergelijk", "vergelijkbare": "vergelijk", "vergelijken": "vergelijk", "vergelijkend": "vergelijk", "vergelijkende": "vergelijk", "vergelijking": "vergelijk", "vergelijkingen": "vergelijk", "vergelijkingsmateriaal": "vergelijkingsmateriaal", "vergelijkt": "vergelijkt", "vergemakkelijken": "vergemak", "vergen": "verg", "vergenoegen": "vergenoeg", "vergetelheid": "vergetel", "vergeten": "verget", "vergetend": "verget", "vergetende": "verget", "vergeven": "vergev", "vergevende": "vergev", "vergevensgezind": "vergevensgezind", "vergevensgezindheid": "vergevensgezind", "vergeving": "vergev", "vergezeld": "vergezeld", "vergezelde": "vergezeld", "vergezicht": "vergezicht", "vergezichten": "vergezicht", "vergheléken": "verghelek", "vergheten": "verghet", "vergheven": "verghev", "vergiffenis": "vergiffenis", "vergiftigd": "vergiftigd", "vergiftigen": "vergift", "vergiftiging": "vergift", "verging": "verging", "vergis": "vergis", "vergissen": "vergiss", "vergissing": "vergiss", "vergissingen": "vergiss", "vergist": "vergist", "vergiste": "vergist", "vergisten": "vergist", "vergisting": "vergist", "vergistingsinstallatie": "vergistingsinstallatie", "vergistingsproces": "vergistingsproces", "vergistingsproeven": "vergistingsproev", "vergistingstechniek": "vergistingstechniek", "verglaasd": "verglaasd", "verglazen": "verglaz", "verglazing": "verglaz", "verglazingsproces": "verglazingsproces", "vergoed": "vergoed", "vergoeden": "vergoed", "vergoeding": "vergoed", "vergoedingen": "vergoed", "vergoedingensysteem": "vergoedingensystem", "vergoeilijkte": "vergoeilijkt", "vergoelijken": "vergoelijk", "vergoelijkend": "vergoelijk", "vergoelijking": "vergoelijk", "vergoelijkt": "vergoelijkt", "vergoelijkte": "vergoelijkt", "vergoèlijkte": "vergoèlijkt", "vergrijzing": "vergrijz", "vergroenen": "vergroen", "vergroening": "vergroen", "vergroot": "vergrot", "vergrootte": "vergrot", "vergroten": "vergrot", "vergroting": "vergrot", "vergruizer": "vergruizer", "vergt": "vergt", "vergulde": "verguld", "vergun": "vergun", "vergùn": "vergùn", "vergund": "vergund", "vergunde": "vergund", "vergunning": "vergunn", "vergunningaanvraag": "vergunningaanvrag", "vergunningbeleid": "vergunningbeleid", "vergunningen": "vergunn", "vergunningenbeleid": "vergunningenbeleid", "vergunningenbesluit": "vergunningenbesluit", "vergunningenproces": "vergunningenproces", "vergunningenstelsel": "vergunningenstelsel", "vergunningenstop": "vergunningenstop", "vergunningensysteem": "vergunningensystem", "vergunninghouder": "vergunninghouder", "vergunningplichtig": "vergunningplicht", "vergunningplichtige": "vergunningplicht", "vergunningprocedure": "vergunningprocedur", "vergunningsaanvraag": "vergunningsaanvrag", "vergunningsaanvragen": "vergunningsaanvrag", "vergunningseisen": "vergunningseis", "vergunningsnormen": "vergunningsnorm", "vergunningsplicht": "vergunningsplicht", "vergunningsprocedure": "vergunningsprocedur", "vergunningstelsel": "vergunningstelsel", "vergunningsverlening": "vergunningsverlen", "vergunningsvoorschriften": "vergunningsvoorschrift", "vergunningsvoorwaarden": "vergunningsvoorwaard", "vergunningverlenende": "vergunningverlen", "vergunningverlener": "vergunningverlener", "vergunningverleners": "vergunningverlener", "vergunningverlening": "vergunningverlen", "vergunningverleningen": "vergunningverlen", "vergunningvoorschrift": "vergunningvoorschrift", "vergunningvoorschriften": "vergunningvoorschrift", "vergunniningverlener": "vergunniningverlener", "verhaal": "verhal", "verhaald": "verhaald", "verhaalde": "verhaald", "verhaaltjes": "verhaaltjes", "verhaastte": "verhaast", "verhakselen": "verhaksel", "verhalen": "verhal", "verhandelbaar": "verhandel", "verhandelbare": "verhandel", "verhandeld": "verhandeld", "verhandelen": "verhandel", "verhangen": "verhang", "verhard": "verhard", "verharde": "verhard", "verhardingen": "verhard", "verhardingselementen": "verhardingselement", "verheerlijken": "verher", "verheerlijking": "verheerlijk", "verheerlijkte": "verheerlijkt", "verheffen": "verheff", "verheffing": "verheff", "verheijen": "verheij", "verhelderd": "verhelderd", "verhelderde": "verhelderd", "vèrhelderde": "vèrhelderd", "verhelderden": "verhelderd", "verhelderende": "verhelder", "verheldering": "verhelder", "verhelen": "verhel", "verhelpen": "verhelp", "verhemelte": "verhemelt", "verheugd": "verheugd", "verheuging": "verheug", "verheven": "verhev", "verheyen": "verhey", "verhief": "verhief", "verhieven": "verhiev", "verhinderd": "verhinderd", "verhinderde": "verhinderd", "verhinderden": "verhinderd", "verhinderen": "verhinder", "verhinderende": "verhinder", "verhindering": "verhinder", "verhindert": "verhindert", "verhit": "verhit", "verhitte": "verhit", "verhitten": "verhit", "verhitters": "verhitter", "verhitting": "verhit", "verhittingsmethoden": "verhittingsmethod", "verhoeden": "verhoed", "verhoeff": "verhoeff", "verhoeve": "verhoev", "verhogen": "verhog", "verhoging": "verhog", "verhogingen": "verhog", "verholpen": "verholp", "verhonderdvoudigd": "verhonderdvoudigd", "verhoog": "verhog", "verhoogd": "verhoogd", "verhoogde": "verhoogd", "verhoogt": "verhoogt", "verhoor": "verhor", "verhoord": "verhoord", "verhoren": "verhor", "verhouden": "verhoud", "verhouding": "verhoud", "verhoudingen": "verhoud", "verhoudingsgewijs": "verhoudingsgewijs", "verhuis": "verhuis", "verhuisd": "verhuisd", "verhuisde": "verhuisd", "verhuisden": "verhuisd", "verhuizen": "verhuiz", "verhuizing": "verhuiz", "verhulden": "verhuld", "verhuren": "verhur", "verhuur": "verhur", "verhuurd": "verhuurd", "verhuurder": "verhuurder", "verhuurders": "verhuurder", "verhuurt": "verhuurt", "vericel": "vericel", "veridat": "veridat", "verificateur": "verificateur", "verificateurs": "verificateur", "verificatie": "verificatie", "verificeren": "verificer", "verifieerbaarheid": "verifieer", "verifieerbare": "verifieer", "verifiëren": "verifier", "verijlde": "verijld", "verijlende": "verijl", "verijling": "verijl", "vérilac": "verilac", "verinnelijkingsgedachte": "verinnelijkingsgedacht", "verinnerlijking": "verinnerlijk", "verinnerlijkingsbeleidslijn": "verinnerlijkingsbeleidslijn", "verinnerlijkingslijn": "verinnerlijkingslijn", "veritas": "veritas", "verjaagt": "verjaagt", "verjaard": "verjaard", "verjaardag": "verjaardag", "verjaardagen": "verjaardag", "verjaart": "verjaart", "verjagen": "verjag", "verjagend": "verjag", "verjagingen": "verjag", "verjaring": "verjar", "verjaringen": "verjar", "verjaringstermijn": "verjaringstermijn", "verjeugdigd": "verjeugdigd", "verjeugdigde": "verjeugdigd", "verjeugdigen": "verjeugd", "verjeugdigend": "verjeugd", "verkampen": "verkamp", "verkassen": "verkass", "verkavelen": "verkavel", "verkaveling": "verkavel", "verkavelingen": "verkavel", "verkeer": "verker", "verkeerd": "verkeerd", "verkeerde": "verkeerd", "verkeers": "verker", "verkeersbegeleidingssysteem": "verkeersbegeleidingssystem", "verkeersbewegingen": "verkeersbeweg", "verkeersborden": "verkeersbord", "verkeersdoorstroming": "verkeersdoorstrom", "verkeersdrempels": "verkeersdrempel", "verkeersdrukte": "verkeersdrukt", "verkeerseconoom": "verkeerseconom", "verkeersemissies": "verkeersemissies", "verkeersknooppunt": "verkeersknooppunt", "verkeerslawaai": "verkeerslawaai", "verkeersleiding": "verkeersleid", "verkeersleidingsheffingen": "verkeersleidingsheff", "verkeerslichten": "verkeerslicht", "verkeersmaatregelen": "verkeersmaatregel", "verkeersmanagementplannen": "verkeersmanagementplann", "verkeersmodel": "verkeersmodel", "verkeersongelukken": "verkeersongeluk", "verkeersongevallen": "verkeersongevall", "verkeersoverlast": "verkeersoverlast", "verkeerspatronen": "verkeerspatron", "verkeersplan": "verkeersplan", "verkeersproblematiek": "verkeersproblematiek", "verkeersproblemen": "verkeersproblem", "verkeersrapport": "verkeersrapport", "verkeerssituatie": "verkeerssituatie", "verkeersstromen": "verkeersstrom", "verkeerstechniek": "verkeerstechniek", "verkeerstechnische": "verkeerstechnisch", "verkeersveiligheid": "verkeersveil", "verkeersverboden": "verkeersverbod", "verkeersvliegtuigen": "verkeersvliegtu", "verkeersvoorschrift": "verkeersvoorschrift", "verkeersvoorschriften": "verkeersvoorschrift", "verkeert": "verkeert", "verkend": "verkend", "verkennen": "verkenn", "verkennend": "verkenn", "verkennende": "verkenn", "verkenning": "verkenn", "verkenningen": "verkenn", "verkenningsdiensten": "verkenningsdienst", "verkenningsstudie": "verkenningsstudie", "verkenningsvluchten": "verkenningsvlucht", "verkeren": "verker", "verkerende": "verker", "verkies": "verkies", "verkiest": "verkiest", "verkiezen": "verkiez", "verkiezing": "verkiez", "verkiezingen": "verkiez", "verkindst": "verkindst", "verklaarbaar": "verklar", "verklaard": "verklaard", "verklaarde": "verklaard", "verklaarden": "verklaard", "verklaart": "verklaart", "verklaren": "verklar", "verklaring": "verklar", "verklaringen": "verklar", "verkleden": "verkled", "verkleed": "verkled", "verkleedde": "verkled", "verkleind": "verkleind", "verkleinde": "verkleind", "verkleinen": "verklein", "verkleiners": "verkleiner", "verkleining": "verklein", "verkleint": "verkleint", "verkleurd": "verkleurd", "verkleuring": "verkleur", "verklikken": "verklik", "verklikt": "verklikt", "verkniesde": "verkniesd", "verknocht": "verknocht", "verknoei": "verknoei", "verknoeid": "verknoeid", "verknoeiing": "verknoei", "verknopingen": "verknop", "verkocht": "verkocht", "verkochte": "verkocht", "verkochten": "verkocht", "verkoelende": "verkoel", "verkoeling": "verkoel", "verkondig": "verkond", "verkondigde": "verkondigd", "verkooijen": "verkooij", "verkoop": "verkop", "verkoopargument": "verkoopargument", "verkoopkanalen": "verkoopkanal", "verkoopkantoor": "verkoopkantor", "verkoopkosten": "verkoopkost", "verkoopleider": "verkoopleider", "verkoopmaatschappij": "verkoopmaatschappij", "verkoopprijs": "verkoopprijs", "verkooppunten": "verkooppunt", "verkoopresultaten": "verkoopresultat", "verkoopt": "verkoopt", "verkooptechniek": "verkooptechniek", "verkoos": "verkos", "verkopen": "verkop", "verkoper": "verkoper", "verkopers": "verkoper", "verkoping": "verkop", "verkort": "verkort", "verkorte": "verkort", "verkorten": "verkort", "verkorting": "verkort", "verkouden": "verkoud", "verkozen": "verkoz", "verkreeg": "verkreg", "verkregen": "verkreg", "verkreukeld": "verkreukeld", "verkreukelde": "verkreukeld", "verkreukelen": "verkreukel", "verkreukt": "verkreukt", "verkrijgbaar": "verkrijg", "verkrijgbaarheid": "verkrijg", "verkrijgbare": "verkrijg", "verkrijgen": "verkrijg", "verkromd": "verkromd", "verkromde": "verkromd", "verkrompen": "verkromp", "verkwisting": "verkwist", "verlaagd": "verlaagd", "verlaagde": "verlaagd", "verlaagt": "verlaagt", "verlaat": "verlat", "verlagen": "verlag", "verlaging": "verlag", "verlagingen": "verlag", "verlakte": "verlakt", "verlamd": "verlamd", "verlamde": "verlamd", "verlammen": "verlamm", "verlanding": "verland", "verlang": "verlang", "verlangd": "verlangd", "verlangde": "verlangd", "verlangen": "verlang", "verlangend": "verlang", "verlangende": "verlang", "verlangenloos": "verlangenlos", "verlangens": "verlangen", "verlangt": "verlangt", "verlaten": "verlat", "verlatende": "verlat", "verlatene": "verlat", "verleden": "verled", "verledene": "verled", "verledens": "verleden", "verleend": "verleend", "verleende": "verleend", "verleent": "verleent", "verleerd": "verleerd", "verleerde": "verleerd", "verlegen": "verleg", "verlegens": "verlegen", "verlegging": "verlegg", "verleiden": "verleid", "verleidende": "verleid", "verleider": "verleider", "verleideres": "verleideres", "verleiding": "verleid", "verleidster": "verleidster", "verlelie": "verlelie", "verlenen": "verlen", "verlengd": "verlengd", "verlengde": "verlengd", "verlengen": "verleng", "verlenging": "verleng", "verlengstuk": "verlengstuk", "verlengt": "verlengt", "verlening": "verlen", "verlevende": "verlev", "verlevendigd": "verlevendigd", "verlicht": "verlicht", "verlichte": "verlicht", "verlichten": "verlicht", "verlichting": "verlicht", "verlichtingskosten": "verlichtingskost", "verlichtste": "verlichtst", "verliefd": "verliefd", "verliefde": "verliefd", "verliefdentuin": "verliefdentuin", "verliefdheden": "verliefd", "verliefdheid": "verliefd", "verlies": "verlies", "verliescijfer": "verliescijfer", "verliesgevend": "verliesgev", "verliesnorm": "verliesnorm", "verliesnormen": "verliesnorm", "verliesrekening": "verliesreken", "verliest": "verliest", "verliet": "verliet", "verlieten": "verliet", "verliezen": "verliez", "verliezende": "verliez", "verlijmd": "verlijmd", "verlof": "verlof", "verlokkende": "verlok", "verloochend": "verlooch", "verloochenen": "verloochen", "verloofde": "verloofd", "verloom": "verlom", "verloop": "verlop", "verloopt": "verloopt", "verloor": "verlor", "verlopen": "verlop", "verloren": "verlor", "verlossen": "verloss", "verlost": "verlost", "verloten": "verlot", "verlucht": "verlucht", "verluchtende": "verlucht", "verluchting": "verlucht", "verluid": "verluid", "verluidt": "verluidt", "vermaak": "vermak", "vermaakt": "vermaakt", "vermaakte": "vermaakt", "vermaalt": "vermaalt", "vermaarde": "vermaard", "vermagerd": "vermagerd", "vermagerde": "vermagerd", "vermakelijk": "vermak", "vermalen": "vermal", "vermaling": "vermal", "vermande": "vermand", "vermanend": "verman", "vermanende": "verman", "vermannelijkten": "vermannelijkt", "vermarketing": "vermarket", "vermeden": "vermed", "vermeed": "vermed", "vermeend": "vermeend", "vermeende": "vermeend", "vermeer": "vermer", "vermeerderd": "vermeerderd", "vermeerderen": "vermeerder", "vermeerdering": "vermeerder", "vermeil": "vermeil", "vermeld": "vermeld", "vermeldde": "vermeld", "vermelde": "vermeld", "vermelden": "vermeld", "vermelding": "vermeld", "vermeldingen": "vermeld", "vermeldt": "vermeldt", "vermengd": "vermengd", "vermengde": "vermengd", "vermengen": "vermeng", "vermenging": "vermeng", "vermengt": "vermengt", "vermenigvuldigd": "vermenigvuldigd", "vermenigvuldigen": "vermenigvuld", "vermesten": "vermest", "vermestende": "vermest", "vermesting": "vermest", "vermestingsdoelstellingen": "vermestingsdoelstell", "vermeten": "vermet", "vermeulen": "vermeul", "vermijdbaar": "vermijd", "vermijden": "vermijd", "vermijdende": "vermijd", "verminderd": "verminderd", "verminderde": "verminderd", "verminderden": "verminderd", "verminderdering": "verminderder", "verminderen": "verminder", "vermindering": "verminder", "vermindert": "vermindert", "vermocht": "vermocht", "vermoed": "vermoed", "vermoedde": "vermoed", "vermoedden": "vermoed", "vermoede": "vermoed", "vermoedelijk": "vermoed", "vermoeden": "vermoed", "vermoedens": "vermoeden", "vermoederd": "vermoederd", "vermoedt": "vermoedt", "vermoeid": "vermoeid", "vermoeide": "vermoeid", "vermoeiden": "vermoeid", "vermoeidheid": "vermoeid", "vermoeien": "vermoei", "vermoeiend": "vermoei", "vermoeiende": "vermoei", "vermoeienis": "vermoeienis", "vermoeit": "vermoeit", "vermogen": "vermog", "vermogens": "vermogen", "vermogensdichtheid": "vermogensdicht", "vermogenspositie": "vermogenspositie", "vermogensreductie": "vermogensreductie", "vermoord": "vermoord", "vermoorden": "vermoord", "vermoordt": "vermoordt", "vernederde": "vernederd", "vernedering": "verneder", "verneveld": "verneveld", "verneveling": "vernevel", "vernield": "vernield", "vernielen": "verniel", "vernieling": "verniel", "vernielt": "vernielt", "vernielzuchtige": "vernielzucht", "vernietigd": "vernietigd", "vernietigde": "vernietigd", "vernietigen": "verniet", "vernietigers": "vernietiger", "vernietiging": "verniet", "vernietigingsattest": "vernietigingsattest", "vernietigt": "vernietigt", "vernieuwbare": "vernieuw", "vernieuwd": "vernieuwd", "vernieuwde": "vernieuwd", "vernieuwen": "vernieuw", "vernieuwend": "vernieuw", "vernieuwende": "vernieuw", "vernieuwing": "vernieuw", "vernieuwingen": "vernieuw", "vernijdigd": "vernijdigd", "vernijdigde": "vernijdigd", "vernijdigende": "vernijd", "vernon": "vernon", "verol": "verol", "verolma": "verolma", "veronachtzaamd": "veronachtzaamd", "veronderstellen": "veronderstell", "veronderstelling": "veronderstell", "veronderstellingen": "veronderstell", "veronderstelt": "veronderstelt", "verongelukken": "verongeluk", "verongelukkende": "verongeluk", "verongelukt": "verongelukt", "veronica": "veronica", "verontreinigd": "verontreinigd", "verontreinigde": "verontreinigd", "verontreinigen": "verontrein", "verontreinigende": "verontrein", "verontreiniging": "verontrein", "verontreinigingen": "verontrein", "verontreinigingsbron": "verontreinigingsbron", "verontreinigingshaarden": "verontreinigingshaard", "verontreinigingsheffing": "verontreinigingsheff", "verontreinigingsongelukken": "verontreinigingsongeluk", "verontreiningen": "verontrein", "verontrust": "verontrust", "verontruste": "verontrust", "verontrusten": "verontrust", "verontrustend": "verontrust", "verontrustende": "verontrust", "verontrustte": "verontrust", "verontschuldigde": "verontschuldigd", "verontschuldigend": "verontschuld", "verontschuldigende": "verontschuld", "verontschuldiging": "verontschuld", "verontschuldigingen": "verontschuld", "verontwaardigd": "verontwaardigd", "verontwaardigde": "verontwaardigd", "verontwaardiging": "verontwaard", "veroordeel": "veroordel", "veroordeeld": "veroordeeld", "veroordeelde": "veroordeeld", "veroordeelden": "veroordeeld", "veroordeelt": "veroordeelt", "veroordelen": "veroordel", "veroordeling": "veroordel", "veroordelingen": "veroordel", "veroorloofde": "veroorloofd", "veroorzaakt": "veroorzaakt", "veroorzaakte": "veroorzaakt", "veroorzaakten": "veroorzaakt", "veroorzaken": "veroorzak", "veroorzaker": "veroorzaker", "veroorzakers": "veroorzaker", "verorberden": "verorberd", "verordening": "verorden", "verordeningen": "verorden", "verordonneren": "verordonner", "verouderd": "verouderd", "verouderde": "verouderd", "verouderen": "verouder", "veroudering": "verouder", "veroverd": "veroverd", "veroveren": "verover", "verpachter": "verpachter", "verpackung": "verpackung", "verpakken": "verpak", "verpakker": "verpakker", "verpakkers": "verpakker", "verpakking": "verpak", "verpakkingafval": "verpakkingafval", "verpakkingcentrum": "verpakkingcentrum", "verpakkingen": "verpak", "verpakkingenbeleid": "verpakkingenbeleid", "verpakkingenregelgeving": "verpakkingenregelgev", "verpakkingenregeling": "verpakkingenregel", "verpakkingfolie": "verpakkingfolie", "verpakkings": "verpak", "verpakkingsafval": "verpakkingsafval", "verpakkingsbeleid": "verpakkingsbeleid", "verpakkingscentrum": "verpakkingscentrum", "verpakkingscertificaat": "verpakkingscertificat", "verpakkingschips": "verpakkingschip", "verpakkingsconvenant": "verpakkingsconvenant", "verpakkingsfabrikanten": "verpakkingsfabrikant", "verpakkingsfolie": "verpakkingsfolie", "verpakkingsgedeelte": "verpakkingsgedeelt", "verpakkingsgewicht": "verpakkingsgewicht", "verpakkingsglas": "verpakkingsglas", "verpakkingsindustrie": "verpakkingsindustrie", "verpakkingsketen": "verpakkingsket", "verpakkingsmachines": "verpakkingsmachines", "verpakkingsmateriaal": "verpakkingsmateriaal", "verpakkingsmaterialen": "verpakkingsmaterial", "verpakkingsmiddelen": "verpakkingsmiddel", "verpakkingsnormen": "verpakkingsnorm", "verpakkingsregelingen": "verpakkingsregel", "verpakkingsresten": "verpakkingsrest", "verpakkingsrichtlijn": "verpakkingsrichtlijn", "verpakkingsrichtlijnen": "verpakkingsrichtlijn", "verpakkingssafval": "verpakkingssafval", "verpakkingssystemen": "verpakkingssystem", "verpakkingsverordening": "verpakkingsverorden", "verpakkingsvorm": "verpakkingsvorm", "verpakt": "verpakt", "verpakte": "verpakt", "verpapping": "verpapp", "verplaatsbaarheid": "verplaats", "verplaatsbare": "verplaats", "verplaatsen": "verplaats", "verplaatsing": "verplaats", "verplaatsingen": "verplaats", "verplaatsingsplan": "verplaatsingsplan", "verplaatsingswet": "verplaatsingswet", "verplaatst": "verplaatst", "verplaatste": "verplaatst", "verplaatsten": "verplaatst", "verplanteleefd": "verplanteleefd", "verpleegd": "verpleegd", "verpleegde": "verpleegd", "verpleegden": "verpleegd", "verpleegster": "verpleegster", "verplegen": "verpleg", "verpleger": "verpleger", "verplegers": "verpleger", "verpleging": "verpleg", "verpletterd": "verpletterd", "verpletterde": "verpletterd", "verpletteren": "verpletter", "verpletterend": "verpletter", "verplettering": "verpletter", "verplettert": "verplettert", "verpletterzwaar": "verpletterzwar", "verplicht": "verplicht", "verplichte": "verplicht", "verplichten": "verplicht", "verplichtende": "verplicht", "verplichting": "verplicht", "verplichtingen": "verplicht", "verplichtte": "verplicht", "verpoederen": "verpoeder", "verpoedering": "verpoeder", "verpompen": "verpomp", "verpulverd": "verpulverd", "verraden": "verrad", "verrassen": "verrass", "verrassend": "verrass", "verrassing": "verrass", "verrassingen": "verrass", "verrast": "verrast", "verraste": "verrast", "verre": "verr", "verreden": "verred", "verregaande": "verregaand", "verregend": "verreg", "verregende": "verreg", "verrekenen": "verreken", "verrekent": "verrekent", "verreweg": "verreweg", "verricht": "verricht", "verrichte": "verricht", "verrichten": "verricht", "verrichtte": "verricht", "verrijken": "verrijk", "verrijking": "verrijk", "verrijkt": "verrijkt", "verrijst": "verrijst", "verrijzen": "verrijz", "verroerde": "verroerd", "verroeren": "verroer", "verruild": "verruild", "verruilen": "verruil", "verruimd": "verruimd", "verruimde": "verruimd", "verruiming": "verruim", "verrukkelijk": "verruk", "verrukking": "verruk", "verrukt": "verrukt", "vers": "ver", "versa": "versa", "verschaffen": "verschaff", "verschaft": "verschaft", "verscheen": "verschen", "verscheept": "verscheept", "verscheepte": "verscheept", "verscheidene": "verscheid", "verschemerde": "verschemerd", "verschemeren": "verschemer", "verschenen": "verschen", "verschepen": "verschep", "verscherpen": "verscherp", "verscherping": "verscherp", "verscherpt": "verscherpt", "verscherpte": "verscherpt", "verscheurde": "verscheurd", "verscheuren": "verscheur", "verschfllende": "verschfllend", "verschiet": "verschiet", "verschieten": "verschiet", "verschijnen": "verschijn", "verschijnende": "verschijn", "verschijning": "verschijn", "verschijningsvorm": "verschijningsvorm", "verschijnsel": "verschijnsel", "verschijnselen": "verschijnsel", "verschijnt": "verschijnt", "verschil": "verschil", "verschilde": "verschild", "verschilden": "verschild", "verschillen": "verschill", "verschillend": "verschill", "verschillende": "verschill", "verschilpunten": "verschilpunt", "verschilt": "verschilt", "verscholen": "verschol", "verschoppeling": "verschoppel", "verschoten": "verschot", "verschoven": "verschov", "verschrijft": "verschrijft", "verschrikkelijk": "verschrik", "verschrikkelijke": "verschrik", "verschrikkelijkste": "verschrikkelijkst", "verschrikking": "verschrik", "verschrikt": "verschrikt", "verschrikte": "verschrikt", "verschroeid": "verschroeid", "verschroeide": "verschroeid", "verschrompeld": "verschrompeld", "verschrompelde": "verschrompeld", "verschuift": "verschuift", "verschuilen": "verschuil", "verschuilend": "verschuil", "verschuiven": "verschuiv", "verschuivende": "verschuiv", "verschuiving": "verschuiv", "verschuldigd": "verschuldigd", "verschuldigde": "verschuldigd", "verse": "ver", "versheid": "versheid", "versie": "versie", "versierd": "versierd", "versies": "versies", "versjeesd": "versjeesd", "versjouwd": "versjouwd", "verslaafden": "verslaafd", "verslag": "verslag", "verslagen": "verslag", "verslagjaar": "verslagjar", "verslaglegging": "verslaglegg", "verslappen": "verslapp", "verslapping": "verslapp", "verslapt": "verslapt", "verslechterd": "verslechterd", "verslechteren": "verslechter", "verslechtert": "verslechtert", "verslenst": "verslenst", "versleten": "verslet", "verslinden": "verslind", "verslond": "verslond", "verslonden": "verslond", "versmallen": "versmall", "versmallende": "versmall", "versmolt": "versmolt", "versmolten": "versmolt", "versneden": "versned", "versnel": "versnel", "versneld": "versneld", "versnelde": "versneld", "versnellen": "versnell", "versnelling": "versnell", "versnelt": "versnelt", "versnipperd": "versnipperd", "versnipperde": "versnipperd", "versnipperder": "versnipperder", "versnipperen": "versnipper", "versnippering": "versnipper", "versoepeld": "versoepeld", "versoepelen": "versoepel", "versoepeling": "versoepel", "versoesde": "versoesd", "versomberden": "versomberd", "versomberen": "versomber", "verspanen": "verspan", "verspelen": "verspel", "versperde": "versperd", "verspild": "verspild", "verspilde": "verspild", "verspillen": "verspill", "verspilling": "verspill", "verspillingen": "verspill", "versplinteren": "versplinter", "versprak": "versprak", "verspreid": "verspreid", "verspreidde": "verspreid", "verspreide": "verspreid", "verspreiden": "verspreid", "verspreiding": "verspreid", "verspreidingsgebied": "verspreidingsgebied", "verspreidingsmodel": "verspreidingsmodel", "verspreidingsrisico": "verspreidingsrisico", "verspreidingstheorie": "verspreidingstheorie", "verspreidt": "verspreidt", "versproken": "versprok", "verspuit": "verspuit", "verspuiten": "verspuit", "verst": "verst", "versta": "versta", "verstaan": "verstan", "verstaanbaar": "verstan", "verstand": "verstand", "verstandelijk": "verstand", "verstandelijkheid": "verstand", "verstandhouding": "verstandhoud", "verstandhoudingen": "verstandhoud", "verstandig": "verstand", "verstandige": "verstand", "verstandiger": "verstandiger", "verstard": "verstard", "verstarren": "verstarr", "verstedelijking": "verstedelijk", "verstedelijkingsproces": "verstedelijkingsproces", "verstedelijkingsprocessen": "verstedelijkingsprocess", "verstedelijkt": "verstedelijkt", "versterken": "versterk", "versterking": "versterk", "versterkt": "versterkt", "versterkte": "versterkt", "versterven": "versterv", "verstevigd": "verstevigd", "versteviging": "verstev", "verstijfd": "verstijfd", "verstijven": "verstijv", "verstikkend": "verstik", "verstoft": "verstoft", "verstoken": "verstok", "verstokt": "verstokt", "verstomd": "verstomd", "verstompen": "verstomp", "verstompt": "verstompt", "verstompte": "verstompt", "verstond": "verstond", "verstonden": "verstond", "verstoof": "verstof", "verstookt": "verstookt", "verstookte": "verstookt", "verstoor": "verstor", "verstoord": "verstoord", "verstoorde": "verstoord", "verstoort": "verstoort", "verstoppen": "verstopp", "verstopping": "verstopp", "verstoppingen": "verstopp", "verstopt": "verstopt", "verstopte": "verstopt", "verstoren": "verstor", "verstoring": "verstor", "verstoringen": "verstor", "verstoringsonderzoek": "verstoringsonderzoek", "verstraeten": "verstraet", "verstrakt": "verstrakt", "verstrekken": "verstrek", "verstrekkend": "verstrek", "verstrekt": "verstrekt", "verstrekte": "verstrekt", "verstrekten": "verstrekt", "verstrikt": "verstrikt", "verstrooid": "verstrooid", "verstrooids": "verstrooid", "verstrooien": "verstrooi", "verstrooiende": "verstrooi", "verstrooiing": "verstrooi", "verstuiver": "verstuiver", "versturen": "verstur", "verstuurd": "verstuurd", "versuffen": "versuff", "versufte": "versuft", "versus": "versus", "vertaald": "vertaald", "vertaalt": "vertaalt", "vertakt": "vertakt", "vertakte": "vertakt", "vertalen": "vertal", "vertaling": "vertal", "verte": "vert", "vertech": "vertech", "vertederd": "vertederd", "vertederde": "vertederd", "vertederen": "verteder", "vertederende": "verteder", "vertedering": "verteder", "verteerd": "verteerd", "verteerde": "verteerd", "vertegenwoordigd": "vertegenwoordigd", "vertegenwoordigde": "vertegenwoordigd", "vertegenwoordigen": "vertegenwoord", "vertegenwoordiger": "vertegenwoordiger", "vertegenwoordigers": "vertegenwoordiger", "vertegenwoordiging": "vertegenwoord", "vertegenwoordigt": "vertegenwoordigt", "vertekend": "vertek", "vertekenen": "verteken", "vertel": "vertel", "verteld": "verteld", "vertelde": "verteld", "vertelden": "verteld", "vertellen": "vertell", "vertellende": "vertell", "vertelt": "vertelt", "verteren": "verter", "vertering": "verter", "verticaal": "vertical", "verticale": "vertical", "vertienvoudigd": "vertienvoudigd", "vertienvoudigen": "vertienvoud", "vertikte": "vertikt", "vertonen": "verton", "vertoning": "verton", "vertoon": "verton", "vertoond": "vertoond", "vertoonde": "vertoond", "vertoonden": "vertoond", "vertoont": "vertoont", "vertoornde": "vertoornd", "vertraagd": "vertraagd", "vertraagde": "vertraagd", "vertraagt": "vertraagt", "vertragen": "vertrag", "vertragend": "vertrag", "vertraging": "vertrag", "vertragingen": "vertrag", "vertragingstactieken": "vertragingstactiek", "vertrappeld": "vertrappeld", "vertrappelde": "vertrappeld", "vertrappen": "vertrapp", "vertrapt": "vertrapt", "vertrapte": "vertrapt", "vertrek": "vertrek", "vertrekken": "vertrek", "vertrekkende": "vertrek", "vertrektijd": "vertrektijd", "vertreurde": "vertreurd", "vertreuren": "vertreur", "vertrok": "vertrok", "vertrokken": "vertrok", "vertrouw": "vertrouw", "vertrouwd": "vertrouwd", "vertrouwde": "vertrouwd", "vertrouwelijk": "vertrouw", "vertrouwelijke": "vertrouw", "vertrouwelijkheden": "vertrouw", "vertrouwelijkheid": "vertrouw", "vertrouwelijks": "vertrouw", "vertrouwen": "vertrouw", "vertrouwensrelatie": "vertrouwensrelatie", "vertrouwt": "vertrouwt", "vertwaalfvoudigen": "vertwaalfvoud", "veruit": "veruit", "vervaagde": "vervaagd", "vervaardigd": "vervaardigd", "vervaardigde": "vervaardigd", "vervaardigen": "vervaard", "vervaardiging": "vervaard", "verval": "verval", "vervallen": "vervall", "vervalprodukten": "vervalprodukt", "vervalspiraal": "vervalspiral", "vervalsten": "vervalst", "vervalt": "vervalt", "vervangen": "vervang", "vervangend": "vervang", "vervangende": "vervang", "vervanger": "vervanger", "vervangers": "vervanger", "vervanging": "vervang", "vervangingsoperatie": "vervangingsoperatie", "vervangingstechnologie": "vervangingstechnologie", "vervangingswaarde": "vervangingswaard", "vervangt": "vervangt", "verveel": "vervel", "verveeld": "verveeld", "verveelde": "verveeld", "verveelt": "verveelt", "vervelen": "vervel", "vervelend": "vervel", "vervelende": "vervel", "verveling": "vervel", "verven": "verv", "ververst": "ververst", "verviel": "verviel", "verviervoudigd": "verviervoudigd", "verviervoudigen": "verviervoud", "verving": "verving", "vervloeien": "vervloei", "vervloekte": "vervloekt", "vervloekten": "vervloekt", "vervlogen": "vervlog", "vervluchtigd": "vervluchtigd", "vervluchtiging": "vervlucht", "vervluchtigt": "vervluchtigt", "vervoer": "vervoer", "vervoerbedrijf": "vervoerbedrijf", "vervoerd": "vervoerd", "vervoerde": "vervoerd", "vervoerden": "vervoerd", "vervoerders": "vervoerder", "vervoeren": "vervoer", "vervoerinformatie": "vervoerinformatie", "vervoermiddel": "vervoermiddel", "vervoermiddelen": "vervoermiddel", "vervoerplannen": "vervoerplann", "vervoerprojecten": "vervoerproject", "vervoers": "vervoer", "vervoersbedrijf": "vervoersbedrijf", "vervoersbewegingen": "vervoersbeweg", "vervoersbrandstoffen": "vervoersbrandstoff", "vervoerscontracten": "vervoerscontract", "vervoersdienst": "vervoersdienst", "vervoersgewoonten": "vervoersgewoont", "vervoerskeuzen": "vervoerskeuz", "vervoerskosten": "vervoerskost", "vervoersmogelijkheden": "vervoersmog", "vervoersplan": "vervoersplan", "vervoersplannen": "vervoersplann", "vervoerssector": "vervoerssector", "vervoersstromen": "vervoersstrom", "vervoerssysteem": "vervoerssystem", "vervoerstickets": "vervoersticket", "vervoersystemen": "vervoersystem", "vervoervoorzieningen": "vervoervoorzien", "vervolg": "vervolg", "vervolgbaar": "vervolg", "vervolgconferentie": "vervolgconferentie", "vervolgd": "vervolgd", "vervolgde": "vervolgd", "vervolgen": "vervolg", "vervolgens": "vervolgen", "vervolgfases": "vervolgfases", "vervolging": "vervolg", "vervolgingen": "vervolg", "vervolgnota": "vervolgnota", "vervolgnotitie": "vervolgnotitie", "vervolgonderzoek": "vervolgonderzoek", "vervolgopdrachten": "vervolgopdracht", "vervolgproject": "vervolgproject", "vervolgprojecten": "vervolgproject", "vervolgregeling": "vervolgregel", "vervolgstappen": "vervolgstapp", "vervolgt": "vervolgt", "vervolmaakte": "vervolmaakt", "vervormd": "vervormd", "vervormen": "vervorm", "vervormingen": "vervorm", "vervreemd": "vervreemd", "vervreemdden": "vervreemd", "vervreemdt": "vervreemdt", "vervroegd": "vervroegd", "vervroegde": "vervroegd", "vervrolijkte": "vervrolijkt", "vervroren": "vervror", "vervuild": "vervuild", "vervuilde": "vervuild", "vervuilen": "vervuil", "vervuilend": "vervuil", "vervuilende": "vervuil", "vervuiler": "vervuiler", "vervuilers": "vervuiler", "vervuiling": "vervuil", "vervuilingen": "vervuil", "vervuilingseenheden": "vervuilingsen", "vervuilingsgraad": "vervuilingsgrad", "vervuilingsregels": "vervuilingsregel", "vervuilt": "vervuilt", "vervuld": "vervuld", "vervulde": "vervuld", "vervullen": "vervull", "vervulling": "vervull", "vervult": "vervult", "verwaaid": "verwaaid", "verwaaien": "verwaai", "verwaait": "verwaait", "verwaardigen": "verwaard", "verwaarloosbaar": "verwaarlos", "verwaarloosd": "verwaarloosd", "verwaarloosde": "verwaarloosd", "verwaarloost": "verwaarloost", "verwaarlozen": "verwaarloz", "verwaarlozing": "verwaarloz", "verwacht": "verwacht", "verwachte": "verwacht", "verwachten": "verwacht", "verwachting": "verwacht", "verwachtingen": "verwacht", "verwachtingspatroon": "verwachtingspatron", "verwachtte": "verwacht", "verwachtten": "verwacht", "verwant": "verwant", "verwante": "verwant", "verwanten": "verwant", "verwantenkring": "verwantenkr", "verwantschap": "verwantschap", "verward": "verward", "verwarde": "verward", "verwarden": "verward", "verwarm": "verwarm", "verwarmd": "verwarmd", "verwarmde": "verwarmd", "verwarmen": "verwarm", "verwarming": "verwarm", "verwarmingbuizen": "verwarmingbuiz", "verwarmingen": "verwarm", "verwarmings": "verwarm", "verwarmingsbuizen": "verwarmingsbuiz", "verwarmingsinstallaties": "verwarmingsinstallaties", "verwarmingsketel": "verwarmingsketel", "verwarmingsketels": "verwarmingsketel", "verwarmingslucht": "verwarmingslucht", "verwarmingsprocessen": "verwarmingsprocess", "verwarmingsseizoen": "verwarmingsseizoen", "verwarmingssysteem": "verwarmingssystem", "verwarmingssystemen": "verwarmingssystem", "verwarmingstoepassingen": "verwarmingstoepass", "verwarmingstoestellen": "verwarmingstoestell", "verwarmt": "verwarmt", "verwarren": "verwarr", "verwarring": "verwarr", "verwarringen": "verwarr", "verwaterde": "verwaterd", "verwazigd": "verwazigd", "verweekte": "verweekt", "verweemoedigen": "verweemoed", "verweer": "verwer", "verweerd": "verweerd", "verweerde": "verweerd", "verweerschrift": "verweerschrift", "verweert": "verweert", "verweet": "verwet", "verweg": "verweg", "verwekken": "verwek", "verwekking": "verwek", "verwekt": "verwekt", "verwekte": "verwekt", "verwelken": "verwelk", "verwelking": "verwelk", "verwelkomde": "verwelkomd", "verwelkomden": "verwelkomd", "verwelkomen": "verwelkom", "verwelkt": "verwelkt", "verwer": "verwer", "verweren": "verwer", "verwerft": "verwerft", "verwering": "verwer", "verwerkbaar": "verwerk", "verwerken": "verwerk", "verwerkende": "verwerk", "verwerker": "verwerker", "verwerkers": "verwerker", "verwerking": "verwerk", "verwerkingsbedrijf": "verwerkingsbedrijf", "verwerkingsbedrijven": "verwerkingsbedrijv", "verwerkingsbranche": "verwerkingsbranch", "verwerkingscapaciteit": "verwerkingscapaciteit", "verwerkingsfabriek": "verwerkingsfabriek", "verwerkingsinrichting": "verwerkingsinricht", "verwerkingsinrichtingen": "verwerkingsinricht", "verwerkingsinstallaties": "verwerkingsinstallaties", "verwerkingskosten": "verwerkingskost", "verwerkingslijn": "verwerkingslijn", "verwerkingsmethoden": "verwerkingsmethod", "verwerkingsmogelijkheden": "verwerkingsmog", "verwerkingsmogelijkheid": "verwerkingsmog", "verwerkingspas": "verwerkingspas", "verwerkingsplan": "verwerkingsplan", "verwerkingsprocessen": "verwerkingsprocess", "verwerkingsstructuur": "verwerkingsstructur", "verwerkingssysteem": "verwerkingssystem", "verwerkingstarief": "verwerkingstarief", "verwerkingstarieven": "verwerkingstariev", "verwerkingstechniek": "verwerkingstechniek", "verwerkingstechnieken": "verwerkingstechniek", "verwerkingstechnologie": "verwerkingstechnologie", "verwerkt": "verwerkt", "verwerkte": "verwerkt", "verwerpen": "verwerp", "verwerpt": "verwerpt", "verwerven": "verwerv", "verwerving": "verwerv", "verweten": "verwet", "verwezen": "verwez", "verwezenlijken": "verwezen", "verwezenlijking": "verwezenlijk", "verwezenlijkingen": "verwezenlijk", "verwezenlijkt": "verwezenlijkt", "verwierp": "verwierp", "verwijd": "verwijd", "verwijder": "verwijder", "verwijderbaarheid": "verwijder", "verwijderd": "verwijderd", "verwijderde": "verwijderd", "verwijderen": "verwijder", "verwijdering": "verwijder", "verwijderings": "verwijder", "verwijderingsbedrijven": "verwijderingsbedrijv", "verwijderingsbijdrage": "verwijderingsbijdrag", "verwijderingskosten": "verwijderingskost", "verwijderingsstructuur": "verwijderingsstructur", "verwijderingssysteem": "verwijderingssystem", "verwijderingstechnieken": "verwijderingstechniek", "verwijderingstechnologie": "verwijderingstechnologie", "verwijdert": "verwijdert", "verwijst": "verwijst", "verwijt": "verwijt", "verwijten": "verwijt", "verwijtend": "verwijt", "verwijtende": "verwijt", "verwijtingen": "verwijt", "verwijzen": "verwijz", "verwijzing": "verwijz", "verwijzingen": "verwijz", "verwinterde": "verwinterd", "verwisselbare": "verwissel", "verwisseld": "verwisseld", "verwisselden": "verwisseld", "verwisselen": "verwissel", "verwisselend": "verwissel", "verwoest": "verwoest", "verwoesten": "verwoest", "verwoestende": "verwoest", "verwoesting": "verwoest", "verwoestte": "verwoest", "verwonderd": "verwonderd", "verwonderde": "verwonderd", "verwònderde": "verwònderd", "verwonderden": "verwonderd", "verwonderend": "verwonder", "verwonderende": "verwonder", "verwondering": "verwonder", "verwonderlijk": "verwonder", "verwondert": "verwondert", "verwoord": "verwoord", "verwoorden": "verwoord", "verworden": "verword", "verworpen": "verworp", "verworven": "verworv", "verwrong": "verwrong", "verwrongen": "verwrong", "verzacht": "verzacht", "verzachten": "verzacht", "verzachting": "verzacht", "verzachtte": "verzacht", "verzadigd": "verzadigd", "verzadigde": "verzadigd", "verzadiging": "verzad", "verzadigt": "verzadigt", "verzakelijking": "verzakelijk", "verzakkende": "verzak", "verzamelaars": "verzamelar", "verzamelcontainers": "verzamelcontainer", "verzameld": "verzameld", "verzamelde": "verzameld", "verzamelden": "verzameld", "verzamelen": "verzamel", "verzameling": "verzamel", "verzamelnaam": "verzamelnam", "verzamelplaatsen": "verzamelplaats", "verzamelt": "verzamelt", "verzeild": "verzeild", "verzeker": "verzeker", "verzekeraar": "verzekerar", "verzekeraars": "verzekerar", "verzekerd": "verzekerd", "verzekerde": "verzekerd", "verzekeren": "verzeker", "verzekerende": "verzeker", "verzekering": "verzeker", "verzekeringen": "verzeker", "verzekeringsbranche": "verzekeringsbranch", "verzekeringskamer": "verzekeringskamer", "verzekeringsmaatschappij": "verzekeringsmaatschappij", "verzekeringsmaatschappijen": "verzekeringsmaatschappij", "verzekeringspremies": "verzekeringspremies", "verzekeringstechnische": "verzekeringstechnisch", "verzekeringswereld": "verzekeringswereld", "verzekert": "verzekert", "verzelfstandigd": "verzelfstandigd", "verzelfstandigde": "verzelfstandigd", "verzelfstandigen": "verzelfstand", "verzelfstandiging": "verzelfstand", "verzen": "verz", "verzenden": "verzend", "verzenuwd": "verzenuwd", "verzet": "verzet", "verzette": "verzet", "verzetten": "verzet", "verziekelijkte": "verziekelijkt", "verziekt": "verziekt", "verziekte": "verziekt", "verzilt": "verzilt", "verzilting": "verzilt", "verzilveren": "verzilver", "verzinkbranche": "verzinkbranch", "verzinken": "verzink", "verzinkingsproces": "verzinkingsproces", "verzinkt": "verzinkt", "verzinsels": "verzinsel", "verzitten": "verzit", "verzocht": "verzocht", "verzoek": "verzoek", "verzoeken": "verzoek", "verzoekende": "verzoek", "verzoekt": "verzoekt", "verzoenden": "verzoend", "verzoenen": "verzoen", "verzoenend": "verzoen", "verzoenende": "verzoen", "verzoening": "verzoen", "verzomering": "verzomer", "verzonden": "verzond", "verzonk": "verzonk", "verzonken": "verzonk", "verzorg": "verzorg", "verzorgd": "verzorgd", "verzorgde": "verzorgd", "verzorgen": "verzorg", "verzorgende": "verzorg", "verzorgers": "verzorger", "verzorging": "verzorg", "verzorgingen": "verzorg", "verzorgingsgebied": "verzorgingsgebied", "verzorgt": "verzorgt", "verzucht": "verzucht", "verzuim": "verzuim", "verzuimbeleid": "verzuimbeleid", "verzuimd": "verzuimd", "verzuimden": "verzuimd", "verzuimen": "verzuim", "verzuimt": "verzuimt", "verzurend": "verzur", "verzurende": "verzur", "verzuring": "verzur", "verzuringsdoelstellingen": "verzuringsdoelstell", "verzuringsgevoelig": "verzuringsgevoel", "verzuringsgevoelige": "verzuringsgevoel", "verzuringsonderzoek": "verzuringsonderzoek", "verzuringsproces": "verzuringsproces", "verzusterlijken": "verzuster", "verzusterlijkt": "verzusterlijkt", "verzuurd": "verzuurd", "verzuurde": "verzuurd", "verzwakkende": "verzwak", "verzwakking": "verzwak", "verzwakt": "verzwakt", "verzwaring": "verzwar", "verzwaringen": "verzwar", "verzweeg": "verzweg", "verzwegen": "verzweg", "verzwijgen": "verzwijg", "verzwijmd": "verzwijmd", "verzwijmende": "verzwijm", "vest": "vest", "vestas": "vestas", "vestiaire": "vestiair", "vestibule": "vestibul", "vestigde": "vestigd", "vestigen": "vestig", "vestiging": "vestig", "vestigingen": "vestig", "vestigingsklimaat": "vestigingsklimat", "vestigingsplaats": "vestigingsplat", "vestkraft": "vestkraft", "veston": "veston", "vet": "vet", "vetafscheiders": "vetafscheider", "vetafval": "vetafval", "vetalcoholen": "vetalcohol", "veterinair": "veterinair", "veterinaire": "veterinair", "vetlozing": "vetloz", "vetlozingen": "vetloz", "veto": "veto", "vette": "vet", "vetten": "vet", "vetvangers": "vetvanger", "vetvrij": "vetvrij", "vetweefsel": "vetweefsel", "vetzuren": "vetzur", "vetzurenproduktie": "vetzurenproduktie", "vetzuur": "vetzur", "veulen": "veul", "vew": "vew", "vewin": "vewin", "vezelachtige": "vezelacht", "vezelhoudend": "vezelhoud", "vezels": "vezel", "vezelstructuur": "vezelstructur", "vfk": "vfk", "vfw": "vfw", "vgbouw": "vgbouw", "vgom": "vgom", "vi": "vi", "via": "via", "viaduct": "viaduct", "viaducten": "viaduct", "viag": "viag", "vianen": "vian", "viar": "viar", "viba": "viba", "vice": "vic", "victor": "victor", "victoria": "victoria", "vidal": "vidal", "video": "video", "videoaansluiting": "videoaansluit", "videobeelden": "videobeeld", "videofilm": "videofilm", "videoinspectie": "videoinspectie", "videorecorder": "videorecorder", "videorecorders": "videorecorder", "videotex": "videotex", "vie": "vie", "viel": "viel", "vielen": "viel", "vienna": "vienna", "vier": "vier", "vierbaksduwvaart": "vierbaksduwvaart", "vierde": "vierd", "vierduizend": "vierduiz", "vieren": "vier", "vierendertig": "vierendert", "vierentwintig": "vierentwint", "vierge": "vierg", "vierhonderd": "vierhonderd", "vierhonderdduizend": "vierhonderdduiz", "viering": "viering", "vierjaarlijks": "vierjar", "vierkant": "vierkant", "vierkante": "vierkant", "vierkantjes": "vierkantjes", "viermaal": "viermal", "viermotorige": "viermotor", "vierpersoons": "vierperson", "viersporig": "vierspor", "viert": "viert", "viertal": "viertal", "viertjes": "viertjes", "vierwaardige": "vierwaard", "vierwiel": "vierwiel", "vies": "vies", "vietnam": "vietnam", "vietnamese": "vietnames", "vieve": "viev", "vieze": "viez", "vièze": "vièz", "viezig": "viezig", "vifka": "vifka", "vigilante": "vigilant", "vignet": "vignet", "vii": "vii", "viii": "viii", "vijand": "vijand", "vijandelijkheden": "vijand", "vijandelijkheid": "vijand", "vijanden": "vijand", "vijandig": "vijand", "vijandige": "vijand", "vijandinnen": "vijandinn", "vijandschap": "vijandschap", "vijf": "vijf", "vijfdaags": "vijfdag", "vijfde": "vijfd", "vijfduizend": "vijfduiz", "vijfennegentig": "vijfennegent", "vijfentwintig": "vijfentwint", "vijfenveertig": "vijfenveert", "vijfenzeventig": "vijfenzevent", "vijfheerenlanden": "vijfheerenland", "vijfhonderd": "vijfhonderd", "vijfhuizen": "vijfhuiz", "vijfjarig": "vijfjar", "vijfjarige": "vijfjar", "vijfstappenplan": "vijfstappenplan", "vijftal": "vijftal", "vijftien": "vijftien", "vijftienduizend": "vijftienduiz", "vijftienduizendste": "vijftienduizendst", "vijftienhonderd": "vijftienhonderd", "vijftienjarig": "vijftienjar", "vijftig": "vijftig", "vijftigjarige": "vijftigjar", "vijftigste": "vijftigst", "vijltjes": "vijltjes", "vijver": "vijver", "vijverplas": "vijverplas", "vijvers": "vijver", "vijzel": "vijzel", "vijzelde": "vijzeld", "villa": "villa", "villaatje": "villaatj", "villatje": "villatj", "vilt": "vilt", "viltstiften": "viltstift", "vinamul": "vinamul", "vincent": "vincent", "vincotte": "vincot", "vinçotte": "vinçot", "vind": "vind", "vinden": "vind", "vindend": "vindend", "vindende": "vindend", "vinding": "vinding", "vindingen": "vinding", "vindt": "vindt", "vinex": "vinex", "ving": "ving", "vingen": "ving", "vinger": "vinger", "vingerafdruk": "vingerafdruk", "vingers": "vinger", "vingertjes": "vingertjes", "vingerzeefdekken": "vingerzeefdek", "vinkeveen": "vinkeven", "vinkeveense": "vinkeven", "vinnig": "vinnig", "vinnige": "vinnig", "vintges": "vintges", "vinyl": "vinyl", "vinylchloride": "vinylchlorid", "vinylchlorideprodukten": "vinylchlorideprodukt", "vinylvloerbedekkingen": "vinylvloerbedek", "violet": "violet", "violette": "violet", "viooltjes": "viooltjes", "virgin": "virgin", "virginia": "virginia", "virtual": "virtual", "virus": "virus", "virussen": "viruss", "vis": "vis", "visa": "visa", "visafslag": "visafslag", "visbeleid": "visbeleid", "visbestanden": "visbestand", "viscapaciteit": "viscapaciteit", "viscositeiten": "viscositeit", "visibiliteit": "visibiliteit", "visibiliteitsdoelstelling": "visibiliteitsdoelstell", "visibility": "visibility", "visie": "visie", "visienota": "visienota", "visienotitie": "visienotitie", "visies": "visies", "visioen": "visioen", "visioenen": "visioen", "visionaire": "visionair", "visite": "visit", "visitegesprek": "visitegesprek", "visitekaartjes": "visitekaartjes", "visites": "visites", "visje": "visj", "viskwaliteit": "viskwaliteit", "vislabel": "vislabel", "visnet": "visnet", "vispopulaties": "vispopulaties", "visprodukten": "visprodukt", "visquota": "visquota", "visrechten": "visrecht", "vissen": "viss", "visser": "visser", "visserij": "visserij", "visserijautoriteiten": "visserijautoriteit", "visserijbedrijfsleven": "visserijbedrijfslev", "visserijbeleid": "visserijbeleid", "visserijbiologen": "visserijbiolog", "visserijdruk": "visserijdruk", "visserijmethoden": "visserijmethod", "visserijministers": "visserijminister", "visserijoorlogen": "visserijoorlog", "visserijsector": "visserijsector", "visserijwet": "visserijwet", "vissers": "visser", "vissersschepen": "vissersschep", "vissersvloot": "vissersvlot", "vissoorten": "vissoort", "visstand": "visstand", "vist": "vist", "vista": "vista", "vistrap": "vistrap", "vistrappen": "vistrapp", "vistuigen": "vistuig", "visuele": "visuel", "visum": "visum", "visvangst": "visvangst", "visvangsten": "visvangst", "visvijvers": "visvijver", "vit": "vit", "vitaal": "vital", "vitalair": "vitalair", "vitale": "vital", "vitaliteit": "vitaliteit", "vitalscheme": "vitalschem", "vitamine": "vitamin", "vitamix": "vitamix", "vitellogenine": "vitellogenin", "vitrage": "vitrag", "vitrages": "vitrages", "vitro": "vitro", "vitten": "vit", "vivant": "vivant", "vivants": "vivant", "vive": "viv", "viveurs": "viveur", "vivo": "vivo", "vizier": "vizier", "vizioen": "vizioen", "vizioenen": "vizioen", "vizioenende": "vizioen", "vizioentje": "vizioentj", "vjjftig": "vjjftig", "vkf": "vkf", "vlaag": "vlag", "vlaagje": "vlaagj", "vlaams": "vlam", "vlaamse": "vlam", "vlaanderen": "vlaander", "vlaardingen": "vlaarding", "vlag": "vlag", "vlagen": "vlag", "vlaggen": "vlagg", "vlaggeschip": "vlaggeschip", "vlaggestok": "vlaggestok", "vlaggestokken": "vlaggestok", "vlagheide": "vlagheid", "vlak": "vlak", "vlakbij": "vlakbij", "vlakje": "vlakj", "vlakjes": "vlakjes", "vlakke": "vlak", "vlakken": "vlak", "vlakkerig": "vlakker", "vlakte": "vlakt", "vlakten": "vlakt", "vlaktes": "vlaktes", "vlam": "vlam", "vlamde": "vlamd", "vlamden": "vlamd", "vlammen": "vlamm", "vlammende": "vlammend", "vlammetje": "vlammetj", "vlamstopper": "vlamstopper", "vlamstoppers": "vlamstopper", "vlas": "vlas", "vlasblond": "vlasblond", "vlasblonde": "vlasblond", "vlasvezels": "vlasvezel", "vld": "vld", "vleermuizen": "vleermuiz", "vlees": "vles", "vleesactiviteiten": "vleesactiviteit", "vleesconsumptie": "vleesconsumptie", "vleesindustrie": "vleesindustrie", "vleeskuikenhouder": "vleeskuikenhouder", "vleeskuikenhouderij": "vleeskuikenhouderij", "vleeskuikens": "vleeskuiken", "vleesmarkt": "vleesmarkt", "vleesprodukten": "vleesprodukt", "vleesproduktie": "vleesproduktie", "vleesvarkens": "vleesvarken", "vleesvarkensbedrijven": "vleesvarkensbedrijv", "vleesvarkensdrijfmest": "vleesvarkensdrijfmest", "vleesvarkensmest": "vleesvarkensmest", "vleesvervangers": "vleesvervanger", "vleesverwerkend": "vleesverwerk", "vleesverwerkende": "vleesverwerk", "vleeswaren": "vleeswar", "vleeswarenindustrie": "vleeswarenindustrie", "vlegel": "vlegel", "vlehan": "vlehan", "vleide": "vleid", "vleien": "vlei", "vleiend": "vleiend", "vleiende": "vleiend", "vleierig": "vleier", "vleiing": "vleiing", "vlek": "vlek", "vlekjes": "vlekjes", "vlekken": "vlek", "vlerk": "vlerk", "vlerken": "vlerk", "vleselijk": "vleselijk", "vleugels": "vleugel", "vleuten": "vleut", "vlezen": "vlez", "vlieg": "vlieg", "vliegas": "vliegas", "vliegassen": "vliegass", "vliegbasis": "vliegbasis", "vliegbewegingen": "vliegbeweg", "vliegcorridoor": "vliegcorridor", "vliegen": "vlieg", "vliegende": "vliegend", "vliegers": "vlieger", "vlieghoogte": "vlieghoogt", "vliegkamp": "vliegkamp", "vlieglawaai": "vlieglawaai", "vliegmarkt": "vliegmarkt", "vliegreizen": "vliegreiz", "vliegroutes": "vliegroutes", "vliegsnelheid": "vliegsnel", "vliegt": "vliegt", "vliegtuig": "vliegtuig", "vliegtuigbespuitingen": "vliegtuigbespuit", "vliegtuigbewegingen": "vliegtuigbeweg", "vliegtuigbrandstof": "vliegtuigbrandstof", "vliegtuigemissies": "vliegtuigemissies", "vliegtuigen": "vliegtuig", "vliegtuiggeluid": "vliegtuiggeluid", "vliegtuiglawaai": "vliegtuiglawaai", "vliegtuigmaatschappij": "vliegtuigmaatschappij", "vliegtuigmaatschappijen": "vliegtuigmaatschappij", "vliegtuigmetingen": "vliegtuigmet", "vliegtuigmotoren": "vliegtuigmotor", "vliegtuigontwikkeling": "vliegtuigontwikkel", "vliegtuigspuiten": "vliegtuigspuit", "vliegtuigtoepassingen": "vliegtuigtoepass", "vliegtuigtransport": "vliegtuigtransport", "vliegtuigtype": "vliegtuigtyp", "vliegtuigtypen": "vliegtuigtyp", "vliegveld": "vliegveld", "vliegveldbouw": "vliegveldbouw", "vliegvelden": "vliegveld", "vliegverbod": "vliegverbod", "vliegverkeer": "vliegverker", "vliegvervoer": "vliegvervoer", "vliegwiel": "vliegwiel", "vlieland": "vlieland", "vlier": "vlier", "vliering": "vliering", "vliert": "vliert", "vlies": "vlies", "vlijmend": "vlijmend", "vlijmende": "vlijmend", "vlijmender": "vlijmender", "vlijtige": "vlijtig", "vlinder": "vlinder", "vlinderbloemigen": "vlinderbloem", "vlinderende": "vlinder", "vlinderlijven": "vlinderlijv", "vlinderpopulatie": "vlinderpopulatie", "vlinders": "vlinder", "vlinderslijven": "vlinderslijv", "vlissingen": "vlissing", "vlissingse": "vlissing", "vlm": "vlm", "vloed": "vloed", "vloedbelt": "vloedbelt", "vloedgolf": "vloedgolf", "vloeibaar": "vloeibar", "vloeibare": "vloeibar", "vloeide": "vloeid", "vloeiden": "vloeid", "vloeien": "vloei", "vloeiende": "vloeiend", "vloeiing": "vloeiing", "vloeistof": "vloeistof", "vloeistofdebiet": "vloeistofdebiet", "vloeistofdicht": "vloeistofdicht", "vloeistofdichte": "vloeistofdicht", "vloeistofelementen": "vloeistofelement", "vloeistoffase": "vloeistoffas", "vloeistoffen": "vloeistoff", "vloeistofniveau": "vloeistofniveau", "vloeistofoppervlak": "vloeistofoppervlak", "vloeistoftransporteurs": "vloeistoftransporteur", "vloeistofverwarming": "vloeistofverwarm", "vloeistofwisselaar": "vloeistofwisselar", "vloeit": "vloeit", "vloek": "vloek", "vloeken": "vloek", "vloekende": "vloekend", "vloekte": "vloekt", "vloekten": "vloekt", "vloer": "vloer", "vloerbedekkingen": "vloerbedek", "vloerdelen": "vloerdel", "vloeren": "vloer", "vloerisolatie": "vloerisolatie", "vloermat": "vloermat", "vloeroppervlak": "vloeroppervlak", "vloerreinigingsmiddelen": "vloerreinigingsmiddel", "vloerverwarming": "vloerverwarm", "vlogen": "vlog", "vlok": "vlok", "vlokken": "vlok", "vlokkende": "vlokkend", "vlokmiddel": "vlokmiddel", "vlokte": "vlokt", "vlood": "vlod", "vloog": "vlog", "vloot": "vlot", "vlot": "vlot", "vloten": "vlot", "vlotte": "vlot", "vlottende": "vlottend", "vlucht": "vlucht", "vluchten": "vlucht", "vluchtende": "vluchtend", "vluchtig": "vluchtig", "vluchtige": "vluchtig", "vluchtiger": "vluchtiger", "vluchtigheden": "vluchtig", "vluchtplaats": "vluchtplat", "vluchtstroken": "vluchtstrok", "vluchtte": "vlucht", "vluchtten": "vlucht", "vlug": "vlug", "vlugge": "vlugg", "vlugger": "vlugger", "vma": "vma", "vmd": "vmd", "vmi": "vmi", "vmk": "vmk", "vmm": "vmm", "vmrg": "vmrg", "vn": "vn", "vnci": "vnci", "vng": "vng", "vnh": "vnh", "vni": "vni", "vnl": "vnl", "vno": "vno", "vnp": "vnp", "voc": "voc", "vocht": "vocht", "vochtbergend": "vochtberg", "vochtbestendige": "vochtbestend", "vochte": "vocht", "vochten": "vocht", "vochter": "vochter", "vochtgehalte": "vochtgehalt", "vochthoudende": "vochthoud", "vochtig": "vochtig", "vochtige": "vochtig", "vochtiger": "vochtiger", "vochtigheid": "vochtig", "vochtigheidsgehalte": "vochtigheidsgehalt", "vochtopname": "vochtopnam", "voed": "voed", "voedde": "voed", "voedden": "voed", "voeden": "voed", "voedereenheid": "voederen", "voedergedrag": "voedergedrag", "voederingrediënten": "voederingredient", "voeders": "voeder", "voederwaarde": "voederwaard", "voeding": "voeding", "voedings": "voeding", "voedingsbodem": "voedingsbodem", "voedingselementen": "voedingselement", "voedingsindustrie": "voedingsindustrie", "voedingsmiddelen": "voedingsmiddel", "voedingsmiddelenindustrie": "voedingsmiddelenindustrie", "voedingsmiddelentechnologie": "voedingsmiddelentechnologie", "voedingsniveau": "voedingsniveau", "voedingspatroon": "voedingspatron", "voedingsstoffen": "voedingsstoff", "voedingssysteem": "voedingssystem", "voedingswarenconcerns": "voedingswarenconcern", "voedingswater": "voedingswater", "voedingszouten": "voedingszout", "voedsel": "voedsel", "voedselafval": "voedselafval", "voedselarme": "voedselarm", "voedselarmer": "voedselarmer", "voedselbalans": "voedselbalan", "voedselgebruik": "voedselgebruik", "voedselgewassen": "voedselgewass", "voedselketens": "voedselketen", "voedselproduktie": "voedselproduktie", "voedselrijk": "voedselrijk", "voedselrijkdom": "voedselrijkdom", "voedselrijke": "voedselrijk", "voedselrijker": "voedselrijker", "voedseltekorten": "voedseltekort", "voedseltoestand": "voedseltoestand", "voedselveiligheid": "voedselveil", "voedselvoorziening": "voedselvoorzien", "voegafdichtingssysteem": "voegafdichtingssystem", "voegband": "voegband", "voegde": "voegd", "voegen": "voeg", "voegmassa": "voegmassa", "voegt": "voegt", "voel": "voel", "voèl": "voèl", "voelarmen": "voelarm", "voelbare": "voelbar", "voelde": "voeld", "voèlde": "voèld", "voelden": "voeld", "voelen": "voel", "voelend": "voelend", "voelende": "voelend", "voelt": "voelt", "voer": "voer", "voerde": "voerd", "voerden": "voerd", "voeren": "voer", "voerende": "voerend", "voering": "voering", "voerman": "voerman", "voermans": "voerman", "voermengwagen": "voermengwag", "voeropbrengst": "voeropbrengst", "voerplaatsen": "voerplaats", "voert": "voert", "voertuig": "voertuig", "voertuigbrandstof": "voertuigbrandstof", "voertuigen": "voertuig", "voertuigtechnologie": "voertuigtechnologie", "voertuigweegbrug": "voertuigweegbrug", "voerwagenfabrikant": "voerwagenfabrikant", "voet": "voet", "voetbalbond": "voetbalbond", "voetbalclub": "voetbalclub", "voetbalfederatie": "voetbalfederatie", "voetballer": "voetballer", "voetballers": "voetballer", "voetbalstadions": "voetbalstadion", "voetbaltribunes": "voetbaltribunes", "voetbalveld": "voetbalveld", "voetbalvelden": "voetbalveld", "voetbalvereniging": "voetbalveren", "voetbalwedstrijd": "voetbalwedstrijd", "voetbed": "voetbed", "voetbedden": "voetbed", "voetbeweging": "voetbeweg", "voeten": "voet", "voetenbankje": "voetenbankj", "voeteneinde": "voeteneind", "voetenkussen": "voetenkuss", "voetgangers": "voetganger", "voetgangersgebieden": "voetgangersgebied", "voetjes": "voetjes", "voets": "voet", "voetstappen": "voetstapp", "vogel": "vogel", "vogelbescherming": "vogelbescherm", "vogelbestand": "vogelbestand", "vogelbroedgebieden": "vogelbroedgebied", "vogelenzang": "vogelenzang", "vogelkarkassen": "vogelkarkass", "vogelkers": "vogelker", "vogelkolonie": "vogelkolonie", "vogelnesten": "vogelnest", "vogelonderzoek": "vogelonderzoek", "vogelonderzoekers": "vogelonderzoeker", "vogelpopulatie": "vogelpopulatie", "vogelrichtlijn": "vogelrichtlijn", "vogelrijke": "vogelrijk", "vogels": "vogel", "vogelsoort": "vogelsoort", "vogelsoorten": "vogelsoort", "vogeltellingen": "vogeltell", "vogeltijdschrift": "vogeltijdschrift", "vogeltjes": "vogeltjes", "vogelverschrikkers": "vogelverschrikker", "vogelwacht": "vogelwacht", "vogelwachten": "vogelwacht", "vogelwet": "vogelwet", "vogelzang": "vogelzang", "vogm": "vogm", "vogt": "vogt", "vogtländer": "vogtlander", "voile": "voil", "vol": "vol", "vòl": "vòl", "volautomatisch": "volautomatisch", "volautomatische": "volautomatisch", "volbracht": "volbracht", "volcanera": "volcanera", "volclay": "volclay", "voldaan": "voldan", "voldaanheid": "voldan", "voldeden": "volded", "voldeed": "volded", "voldoen": "voldoen", "voldoende": "voldoend", "voldoening": "voldoen", "voldoet": "voldoet", "volg": "volg", "volgacties": "volgacties", "volgde": "volgd", "volgden": "volgd", "volgebouwd": "volgebouwd", "volgen": "volg", "volgend": "volgend", "volgende": "volgend", "volgens": "volgen", "volgepropt": "volgepropt", "volgespoten": "volgespot", "volgestort": "volgestort", "volgewemeld": "volgewemeld", "volgorde": "volgord", "volgroeid": "volgroeid", "volgroeide": "volgroeid", "volgsysteem": "volgsystem", "volgt": "volgt", "volharden": "volhard", "volhardend": "volhard", "volharding": "volhard", "volhardt": "volhardt", "volhield": "volhield", "volhouden": "volhoud", "volk": "volk", "volker": "volker", "volkerak": "volkerak", "volkeren": "volker", "volkomen": "volkom", "volkomener": "volkomener", "volksgezondheid": "volksgezond", "volkshuisvesting": "volkshuisvest", "volkshuisvestingszaken": "volkshuisvestingszak", "volkskrant": "volkskrant", "volksraadpleging": "volksraadpleg", "volksrepubliek": "volksrepubliek", "volkstuincomplex": "volkstuincomplex", "volkstuinencomplexen": "volkstuinencomplex", "volkstuinhouders": "volkstuinhouder", "volkstuintjes": "volkstuintjes", "volkswagen": "volkswag", "vollast": "vollast", "volle": "voll", "vollebergh": "vollebergh", "volledig": "volled", "volledige": "volled", "vollegrond": "vollegrond", "vollegrondsgroenteteelt": "vollegrondsgroenteteelt", "vollegrondsteelt": "vollegrondsteelt", "vollemaansgezicht": "vollemaansgezicht", "voller": "voller", "volmaakt": "volmaakt", "volmac": "volmac", "volmacht": "volmacht", "volmachten": "volmacht", "volop": "volop", "volstaan": "volstan", "volstaat": "volstat", "volstond": "volstond", "volstrekt": "volstrekt", "volstrekte": "volstrekt", "volt": "volt", "voltage": "voltag", "voltaic": "voltaic", "voltaische": "voltaisch", "voltaïsche": "voltaisch", "voltallige": "voltall", "voltnet": "voltnet", "voltooid": "voltooid", "voltooide": "voltooid", "voltooien": "voltooi", "voltooiing": "voltooi", "voluit": "voluit", "volume": "volum", "volumebeleid": "volumebeleid", "volumemeetsysteem": "volumemeetsystem", "volumereductie": "volumereductie", "volumevermindering": "volumeverminder", "volumineus": "volumineus", "volumineuze": "volumineuz", "volvo": "volvo", "volwaardig": "volwaard", "volwaardige": "volwaard", "volwassen": "volwass", "volwassenen": "volwassen", "volwassener": "volwassener", "von": "von", "vond": "vond", "vonden": "vond", "vondst": "vondst", "vonhoff": "vonhoff", "vonk": "vonk", "vonkelend": "vonkel", "vonken": "vonk", "vonkenregen": "vonkenreg", "vonnis": "vonnis", "voogd": "voogd", "voogdij": "voogdij", "voogt": "voogt", "voor": "vor", "vóor": "vor", "vòor": "vòor", "voór": "vor", "voòr": "voòr", "vóór": "vor", "vooraanstaand": "vooraanstaand", "vooraanstaande": "vooraanstaand", "vooraf": "vooraf", "voorafgaand": "voorafgaand", "voorafgaande": "voorafgaand", "voorafgegaan": "voorafgegan", "vooral": "vooral", "voorallen": "voorall", "vooralsnog": "vooralsnog", "voorarrest": "voorarrest", "voorbaat": "voorbat", "voorbarig": "voorbar", "voorbeeld": "voorbeeld", "voorbeeldbedrijven": "voorbeeldbedrijv", "voorbeelden": "voorbeeld", "voorbeeldenboek": "voorbeeldenboek", "voorbeeldige": "voorbeeld", "voorbeeldlocaties": "voorbeeldlocaties", "voorbeeldproject": "voorbeeldproject", "voorbeeldprojecten": "voorbeeldproject", "voorbeeldrol": "voorbeeldrol", "voorbeeldstellen": "voorbeeldstell", "voorbeeldwerking": "voorbeeldwerk", "voorbehandeld": "voorbehandeld", "voorbehandeling": "voorbehandel", "voorbehandelings": "voorbehandel", "voorbehandelingsmethoden": "voorbehandelingsmethod", "voorbehoud": "voorbehoud", "voorbereid": "voorbereid", "voorbereidde": "voorbereid", "voorbereiden": "voorbereid", "voorbereidende": "voorbereid", "voorbereiding": "voorbereid", "voorbereidingen": "voorbereid", "voorbereidingsprogramma": "voorbereidingsprogramma", "voorbestaan": "voorbestan", "voorbewerking": "voorbewerk", "voorbewerkt": "voorbewerkt", "voorbij": "voorbij", "voorbijgaan": "voorbijgan", "voorbijgaand": "voorbijgaand", "voorbijgaande": "voorbijgaand", "voorbijgegaan": "voorbijgegan", "voorbode": "voorbod", "voorbodes": "voorbodes", "voorburg": "voorburg", "voordat": "voordat", "vóordat": "voordat", "voorde": "voord", "voordeden": "voorded", "voordeel": "voordel", "voordele": "voordel", "voordelen": "voordel", "voordelig": "voordel", "voordelige": "voordel", "voordeliger": "voordeliger", "voordeur": "voordeur", "voordeurbel": "voordeurbel", "voordien": "voordien", "voordoen": "voordoen", "voordracht": "voordracht", "voordrachten": "voordracht", "vooreerst": "vooreerst", "voorfinancieren": "voorfinancier", "voorfinanciering": "voorfinancier", "voorfinancieringsfondsen": "voorfinancieringsfonds", "voorgaande": "voorgaand", "voorganger": "voorganger", "voorgedaan": "voorgedan", "voorgedachte": "voorgedacht", "voorgedachten": "voorgedacht", "voorgedragen": "voorgedrag", "voorgedroogde": "voorgedroogd", "voorgefinancierd": "voorgefinancierd", "voorgehouden": "voorgehoud", "voorgekoeld": "voorgekoeld", "voorgekomen": "voorgekom", "voorgelegd": "voorgelegd", "voorgeleid": "voorgeleid", "voorgelicht": "voorgelicht", "voorgenoemde": "voorgenoemd", "voorgenomen": "voorgenom", "voorgescheiden": "voorgescheid", "voorgeschreven": "voorgeschrev", "voorgespannen": "voorgespann", "voorgespiegelde": "voorgespiegeld", "voorgestaande": "voorgestaand", "voorgestane": "voorgestan", "voorgesteld": "voorgesteld", "voorgestelde": "voorgesteld", "voorgevallen": "voorgevall", "voorgevel": "voorgevel", "voorgevoel": "voorgevoel", "voorgevoeld": "voorgevoeld", "voorgevoelde": "voorgevoeld", "voorgevoelen": "voorgevoel", "voorgevoelens": "voorgevoelen", "voorgevormd": "voorgevormd", "voorgezet": "voorgezet", "voorgezeten": "voorgezet", "voorging": "voorging", "voorgoed": "voorgoed", "voorhand": "voorhand", "voorhanden": "voorhand", "voorheen": "voorhen", "voorhoeve": "voorhoev", "voorhoofd": "voorhoofd", "voorhout": "voorhout", "voorin": "voorin", "voorinschrijving": "voorinschrijv", "voorinvestering": "voorinvester", "voorjaar": "voorjar", "voorjaars": "voorjar", "voorjaarsaromen": "voorjaarsarom", "voorjaarsdagen": "voorjaarsdag", "voorjaarsfier": "voorjaarsfier", "voorjaarshemelen": "voorjaarshemel", "voorjaarslichten": "voorjaarslicht", "voorkamer": "voorkamer", "voorkamertje": "voorkamertj", "voorkennis": "voorkennis", "voorkeur": "voorkeur", "voorkeuren": "voorkeur", "voorkeursmethode": "voorkeursmethod", "voorkeursplaatsen": "voorkeursplaats", "voorkeursrecht": "voorkeursrecht", "voorkeurstracé": "voorkeurstrac", "voorkeurstraject": "voorkeurstraject", "voorkom": "voorkom", "voorkomen": "voorkom", "voorkómen": "voorkom", "vóórkomen": "voorkom", "voorkomend": "voorkom", "voorkomende": "voorkom", "voorkoming": "voorkom", "voorkomt": "voorkomt", "voorkwam": "voorkwam", "voorkwamen": "voorkwam", "voorlader": "voorlader", "voorland": "voorland", "voorleggen": "voorlegg", "voorlichten": "voorlicht", "voorlichter": "voorlichter", "voorlichters": "voorlichter", "voorlichting": "voorlicht", "voorlichtingsafdeling": "voorlichtingsafdel", "voorlichtingsavond": "voorlichtingsavond", "voorlichtingsavonden": "voorlichtingsavond", "voorlichtingsbijeenkomst": "voorlichtingsbijeenkomst", "voorlichtingsbrochure": "voorlichtingsbrochur", "voorlichtingsbrochures": "voorlichtingsbrochures", "voorlichtingsbureau": "voorlichtingsbureau", "voorlichtingscampagne": "voorlichtingscampagn", "voorlichtingscampagnes": "voorlichtingscampagnes", "voorlichtingsdienst": "voorlichtingsdienst", "voorlichtingsfolder": "voorlichtingsfolder", "voorlichtingskunde": "voorlichtingskund", "voorlichtingsmateriaal": "voorlichtingsmateriaal", "voorlichtingsprojecten": "voorlichtingsproject", "voorlichtingsronde": "voorlichtingsrond", "voorloper": "voorloper", "voorlopers": "voorloper", "voorlopersrol": "voorlopersrol", "voorlopig": "voorlop", "voorlopige": "voorlop", "voormalig": "voormal", "voormalige": "voormal", "voorman": "voorman", "voormannen": "voormann", "voormolen": "voormol", "voorn": "voorn", "voornaam": "voornam", "voornaamheid": "voornam", "voornaams": "voornam", "voornaamste": "voornaamst", "voorname": "voornam", "voornamelijk": "voornam", "voornemen": "voornem", "voornemens": "voornemen", "voornorm": "voornorm", "voornse": "voorn", "vooronderzoek": "vooronderzoek", "vooronderzoeksrapport": "vooronderzoeksrapport", "voorontwerp": "voorontwerp", "vooroordeel": "vooroordel", "vooroordeeltjes": "vooroordeeltjes", "vooroordelen": "vooroordel", "vooroorlogse": "vooroorlog", "voorop": "voorop", "vooropeningen": "vooropen", "vooropstellen": "vooropstell", "voorover": "voorover", "voorpersklep": "voorpersklep", "voorraad": "voorrad", "voorraadadministratie": "voorraadadministratie", "voorraadbeheer": "voorraadbeher", "voorraadhoudende": "voorraadhoud", "voorraadtanks": "voorraadtank", "voorraden": "voorrad", "voorrang": "voorrang", "voorrecht": "voorrecht", "voorschakelapparaat": "voorschakelapparat", "voorschijn": "voorschijn", "voorschot": "voorschot", "voorschoten": "voorschot", "voorschrift": "voorschrift", "voorschriften": "voorschrift", "voorschriftenselectieprogramma": "voorschriftenselectieprogramma", "voorschrijft": "voorschrijft", "voorschrijven": "voorschrijv", "voorspel": "voorspel", "voorspelbaar": "voorspel", "voorspelbare": "voorspel", "voorspeld": "voorspeld", "voorspelde": "voorspeld", "voorspellen": "voorspell", "voorspellend": "voorspell", "voorspelling": "voorspell", "voorspellingen": "voorspell", "voorspellingsmodellen": "voorspellingsmodell", "voorspelt": "voorspelt", "voorspiegelend": "voorspiegel", "voorspoedig": "voorspoed", "voorspoelwater": "voorspoelwater", "voorsprong": "voorsprong", "voorstaat": "voorstat", "voorstad": "voorstad", "voorstander": "voorstander", "voorstanders": "voorstander", "voorste": "voorst", "voorstel": "voorstel", "voorstelden": "voorsteld", "voorstellen": "voorstell", "voorstelling": "voorstell", "voorstelt": "voorstelt", "voorstudie": "voorstudie", "voort": "voort", "voortaan": "voortan", "voortbestaan": "voortbestan", "voortbeweging": "voortbeweg", "voortbloeien": "voortbloei", "voortbracht": "voortbracht", "voortbrengen": "voortbreng", "voortbrengkosten": "voortbrengkost", "voortduren": "voortdur", "voortdurend": "voortdur", "voortdurende": "voortdur", "voortgaande": "voortgaand", "voortgaat": "voortgat", "voortgang": "voortgang", "voortgangscontrole": "voortgangscontrol", "voortgangscontroles": "voortgangscontroles", "voortgangsrapportage": "voortgangsrapportag", "voortgangsverslag": "voortgangsverslag", "voortgebracht": "voortgebracht", "voortgedreven": "voortgedrev", "voortgegaan": "voortgegan", "voortgeijld": "voortgeijld", "voortgekomen": "voortgekom", "voortgeschopt": "voortgeschopt", "voortgesleept": "voortgesleept", "voortgestuwd": "voortgestuwd", "voortgezet": "voortgezet", "voortgezette": "voortgezet", "voortging": "voortging", "voortgingen": "voortging", "voorthelpen": "voorthelp", "voortijdig": "voortijd", "voortijdige": "voortijd", "voortijlde": "voortijld", "voortkomen": "voortkom", "voortkomende": "voortkom", "voortkomt": "voortkomt", "voortleven": "voortlev", "voortmaken": "voortmak", "voortouw": "voortouw", "voortplanting": "voortplant", "voortplantingsorganen": "voortplantingsorgan", "voortplantingssysteem": "voortplantingssystem", "voortplantingstijd": "voortplantingstijd", "voortraject": "voortraject", "voortrekkende": "voortrek", "voortrekkersrol": "voortrekkersrol", "voortrollende": "voortroll", "voorts": "voort", "voortschoot": "voortschot", "voortsjokken": "voortsjok", "voortsjokkende": "voortsjok", "voortsjokte": "voortsjokt", "voortslepen": "voortslep", "voortsleping": "voortslep", "voortspruitende": "voortspruit", "voortsukkelen": "voortsukkel", "voorttastte": "voorttast", "voortuin": "voortuin", "voortvarend": "voortvar", "voortvarende": "voortvar", "voortvloeien": "voortvloei", "voortvloeiend": "voortvloei", "voortvloeiende": "voortvloei", "voortvloeit": "voortvloeit", "voortwerken": "voortwerk", "voortweven": "voortwev", "voortzet": "voortzet", "voortzetten": "voortzet", "voortzetting": "voortzet", "vooruit": "vooruit", "vooruitblik": "vooruitblik", "vooruitgang": "vooruitgang", "vooruitkijken": "vooruitkijk", "vooruitlopen": "vooruitlop", "vooruitlopend": "vooruitlop", "vooruitstekende": "vooruitstek", "vooruitstrevend": "vooruitstrev", "vooruitstrevende": "vooruitstrev", "vooruitzicht": "vooruitzicht", "vooruitzichten": "vooruitzicht", "vooruitziende": "vooruitzi", "voorval": "voorval", "voorverkleiners": "voorverkleiner", "voorverwarmd": "voorverwarmd", "voorverwarmer": "voorverwarmer", "voorviel": "voorviel", "voorwaarde": "voorwaard", "voorwaardelijk": "voorwaard", "voorwaardelijke": "voorwaard", "voorwaarden": "voorwaard", "voorwaarts": "voorwaart", "voorwendsel": "voorwendsel", "voorwendsels": "voorwendsel", "voorwerp": "voorwerp", "voorwerpen": "voorwerp", "voorzag": "voorzag", "voorzeide": "voorzeid", "voorzette": "voorzet", "voorzichte": "voorzicht", "voorzichtig": "voorzicht", "voorzichtige": "voorzicht", "voorzichtiger": "voorzichtiger", "voorzichtigheid": "voorzicht", "voorzien": "voorzien", "voorziene": "voorzien", "voorziening": "voorzien", "voorzieningen": "voorzien", "voorzieningsgebied": "voorzieningsgebied", "voorziet": "voorziet", "voorziter": "voorziter", "voorzitter": "voorzitter", "voorzitters": "voorzitter", "voorzitterschap": "voorzitterschap", "voorzittersschap": "voorzittersschap", "voorzorg": "voorzorg", "voorzorgprincipe": "voorzorgprincip", "voorzorgs": "voorzorg", "voorzorgsmaatregelen": "voorzorgsmaatregel", "voorzorgsprincipe": "voorzorgsprincip", "voorzuivering": "voorzuiver", "voorzuiveringsinstallaties": "voorzuiveringsinstallaties", "vor": "vor", "vorderde": "vorderd", "vordering": "vorder", "vorderingen": "vorder", "vorderingsstaten": "vorderingsstat", "vordert": "vordert", "voren": "vor", "vorig": "vorig", "vorige": "vorig", "vork": "vork", "vorkheftruck": "vorkheftruck", "vorm": "vorm", "vormde": "vormd", "vormden": "vormd", "vormen": "vorm", "vormgegeven": "vormgegev", "vormgeven": "vormgev", "vormgeving": "vormgev", "vormgevingsinstituut": "vormgevingsinstitut", "vormige": "vormig", "vorming": "vorming", "vormt": "vormt", "vormvrij": "vormvrij", "vorst": "vorst", "vorstelijkheid": "vorstelijk", "vorsten": "vorst", "vorsteuerabzug": "vorsteuerabzug", "vorstin": "vorstin", "vorstloze": "vorstloz", "vorstperiodes": "vorstperiodes", "vorstverlet": "vorstverlet", "vortex": "vortex", "vos": "vos", "vossehaai": "vossehaai", "vossehaaien": "vossehaai", "vosselaars": "vosselar", "vossemeer": "vossemer", "votulast": "votulast", "voudige": "voudig", "vous": "vous", "vouw": "vouw", "vouwde": "vouwd", "vouwen": "vouw", "vouwmes": "vouwmes", "vpb": "vpb", "vpr": "vpr", "vpro": "vpro", "vr": "vr", "vraag": "vrag", "vraagsituatie": "vraagsituatie", "vraagstelling": "vraagstell", "vraagstukken": "vraagstuk", "vraagt": "vraagt", "vraagtekens": "vraagteken", "vraagzijde": "vraagzijd", "vraat": "vrat", "vraatzucht": "vraatzucht", "vraatzuchtige": "vraatzucht", "vracht": "vracht", "vrachtauto": "vrachtauto", "vrachten": "vracht", "vrachtjumbo": "vrachtjumbo", "vrachtpapieren": "vrachtpapier", "vrachtschip": "vrachtschip", "vrachtverkeer": "vrachtverker", "vrachtvervoerders": "vrachtvervoerder", "vrachtvliegtuigen": "vrachtvliegtu", "vrachtvluchten": "vrachtvlucht", "vrachtwagen": "vrachtwag", "vrachtwagenactiviteiten": "vrachtwagenactiviteit", "vrachtwagenbanden": "vrachtwagenband", "vrachtwagenchauffeur": "vrachtwagenchauffeur", "vrachtwagencontainers": "vrachtwagencontainer", "vrachtwagenfabrikanten": "vrachtwagenfabrikant", "vrachtwagenritten": "vrachtwagenrit", "vrachtwagens": "vrachtwagen", "vragen": "vrag", "vragend": "vragend", "vragende": "vragend", "vragenformulier": "vragenformulier", "vragenlijst": "vragenlijst", "vraging": "vraging", "vranitzky": "vranitzky", "vrat": "vrat", "vrede": "vred", "vredelievende": "vredeliev", "vredes": "vredes", "vredestein": "vredestein", "vredevanen": "vredevan", "vredo": "vredo", "vreedzame": "vreedzam", "vreemd": "vreemd", "vreemde": "vreemd", "vreemdeling": "vreemdel", "vreemdelinge": "vreemdel", "vreemden": "vreemd", "vreemder": "vreemder", "vreemdheid": "vreemdheid", "vreemds": "vreemd", "vreemdste": "vreemdst", "vrees": "vres", "vreesde": "vreesd", "vreesden": "vreesd", "vreeslijk": "vreeslijk", "vreeslijke": "vreeslijk", "vreeslijks": "vreeslijk", "vreeslijkste": "vreeslijkst", "vreest": "vreest", "vreeswijck": "vreeswijck", "vreeswijckjes": "vreeswijckjes", "vreeswijek": "vreeswijek", "vreet": "vret", "vreselijk": "vreselijk", "vreselijke": "vreselijk", "vreten": "vret", "vreugd": "vreugd", "vreugde": "vreugd", "vreugdeloos": "vreugdelos", "vreze": "vrez", "vrezen": "vrez", "vrezende": "vrezend", "vrg": "vrg", "vrieland": "vrieland", "vriend": "vriend", "vriendelijk": "vriendelijk", "vriendelijke": "vriendelijk", "vriendelijker": "vriendelijker", "vriendelijkheid": "vriendelijk", "vriendelijkjes": "vriendelijkjes", "vriendelijks": "vriendelijk", "vrienden": "vriend", "vriendin": "vriendin", "vriendinnen": "vriendinn", "vriendinnetje": "vriendinnetj", "vriends": "vriend", "vriendschap": "vriendschap", "vriendschappelijk": "vriendschapp", "vriendschappelijke": "vriendschapp", "vriendschappelijks": "vriendschapp", "vriendt": "vriendt", "vrienschappelijk": "vrienschapp", "vries": "vries", "vriesconcentreer": "vriesconcentrer", "vriesconcentreren": "vriesconcentrer", "vriesdrogen": "vriesdrog", "vrieseilanden": "vrieseiland", "vrieshuis": "vrieshuis", "vrieshuizen": "vrieshuiz", "vriespunt": "vriespunt", "vriesruimten": "vriesruimt", "vriessneeuw": "vriessneeuw", "vriest": "vriest", "vriestechniek": "vriestechniek", "vriestunnel": "vriestunnel", "vriezen": "vriez", "vriezer": "vriezer", "vrij": "vrij", "vrijaf": "vrijaf", "vrijblijvend": "vrijblijv", "vrijdag": "vrijdag", "vrijde": "vrijd", "vrije": "vrij", "vrijelijk": "vrijelijk", "vrijen": "vrij", "vrijer": "vrijer", "vrijere": "vrijer", "vrijersidee": "vrijersidee", "vrijetijdsparken": "vrijetijdspark", "vrijgegeven": "vrijgegev", "vrijgehouden": "vrijgehoud", "vrijgekomen": "vrijgekom", "vrijgelaten": "vrijgelat", "vrijgemaakt": "vrijgemaakt", "vrijgesproken": "vrijgesprok", "vrijgesteld": "vrijgesteld", "vrijhandel": "vrijhandel", "vrijheid": "vrijheid", "vrijhouden": "vrijhoud", "vrijkomen": "vrijkom", "vrijkomend": "vrijkom", "vrijkomende": "vrijkom", "vrijkomt": "vrijkomt", "vrijkwam": "vrijkwam", "vrijkwamen": "vrijkwam", "vrijlaten": "vrijlat", "vrijlating": "vrijlat", "vrijliggende": "vrijligg", "vrijmaakt": "vrijmaakt", "vrijmaken": "vrijmak", "vrijstaande": "vrijstaand", "vrijstellen": "vrijstell", "vrijstelling": "vrijstell", "vrijstellingen": "vrijstell", "vrijwaard": "vrijwaard", "vrijwaren": "vrijwar", "vrijwaring": "vrijwar", "vrijwel": "vrijwel", "vrijwillig": "vrijwill", "vrijwillige": "vrijwill", "vrijwilligers": "vrijwilliger", "vrijwilligheid": "vrijwill", "vrijzinnigheid": "vrijzinn", "vroeg": "vroeg", "vroege": "vroeg", "vroegen": "vroeg", "vroeger": "vroeger", "vroegere": "vroeger", "vroegers": "vroeger", "vroegoude": "vroegoud", "vroegrijpe": "vroegrijp", "vroegst": "vroegst", "vroegtijdig": "vroegtijd", "vrolijk": "vrolijk", "vrolijke": "vrolijk", "vrolijker": "vrolijker", "vrolijkheid": "vrolijk", "vrolijks": "vrolijk", "vrolijkte": "vrolijkt", "vrom": "vrom", "vrome": "vrom", "vroom": "vrom", "vroomheid": "vroomheid", "vrouw": "vrouw", "vrouwe": "vrouw", "vrouwehaar": "vrouwehar", "vrouwehand": "vrouwehand", "vrouweleven": "vrouwelev", "vrouwelijk": "vrouwelijk", "vrouwelijke": "vrouwelijk", "vrouwelijkheid": "vrouwelijk", "vrouwelijkheidjes": "vrouwelijkheidjes", "vrouwelijks": "vrouwelijk", "vrouwen": "vrouw", "vrouwenleven": "vrouwenlev", "vrouwenuniversiteit": "vrouwenuniversiteit", "vrouwenwaardering": "vrouwenwaarder", "vrouwevorm": "vrouwevorm", "vrouweziel": "vrouweziel", "vrouwplichtjes": "vrouwplichtjes", "vrouwtje": "vrouwtj", "vrouwtjes": "vrouwtjes", "vrouwvan": "vrouwvan", "vrucht": "vrucht", "vruchtbaar": "vruchtbar", "vruchtbaarheid": "vruchtbar", "vruchtbare": "vruchtbar", "vruchten": "vrucht", "vruchtenjood": "vruchtenjod", "vruchtenkoeken": "vruchtenkoek", "vruchtenverkopers": "vruchtenverkoper", "vruchtesappen": "vruchtesapp", "vruchtgebruik": "vruchtgebruik", "vs": "vs", "vsa": "vsa", "vse": "vse", "vsk": "vsk", "vsn": "vsn", "vsop": "vsop", "vtm": "vtm", "vu": "vu", "vues": "vues", "vuga": "vuga", "vught": "vught", "vugt": "vugt", "vuil": "vuil", "vuilafstotend": "vuilafstot", "vuilbelasting": "vuilbelast", "vuile": "vuil", "vuilemissie": "vuilemissie", "vuilere": "vuiler", "vuiligheid": "vuilig", "vuillinnenmand": "vuillinnenmand", "vuilnis": "vuilnis", "vuilnisbak": "vuilnisbak", "vuilnisbelt": "vuilnisbelt", "vuilnisbelten": "vuilnisbelt", "vuilnisboel": "vuilnisboel", "vuilnismannen": "vuilnismann", "vuilnisophalers": "vuilnisophaler", "vuilnisprobleem": "vuilnisproblem", "vuilniswagen": "vuilniswag", "vuilniswagens": "vuilniswagen", "vuilniszak": "vuilniszak", "vuilniszakken": "vuilniszak", "vuilophalers": "vuilophaler", "vuilopslagcapaciteit": "vuilopslagcapaciteit", "vuilste": "vuilst", "vuilstort": "vuilstort", "vuilstortplaats": "vuilstortplat", "vuilstortplaatsen": "vuilstortplaats", "vuiluitstort": "vuiluitstort", "vuilverbrander": "vuilverbrander", "vuilverbranders": "vuilverbrander", "vuilverbranding": "vuilverbrand", "vuilverbrandings": "vuilverbrand", "vuilverbrandingsinstalaties": "vuilverbrandingsinstalaties", "vuilverbrandingsinstallatie": "vuilverbrandingsinstallatie", "vuilverbrandingsinstallaties": "vuilverbrandingsinstallaties", "vuilverbrandingsoven": "vuilverbrandingsov", "vuilverbrandingsovens": "vuilverbrandingsoven", "vuilverwerker": "vuilverwerker", "vuilverwerkingsbedrijf": "vuilverwerkingsbedrijf", "vuilverwerkingsfabrieken": "vuilverwerkingsfabriek", "vuilverwijdering": "vuilverwijder", "vuilvissen": "vuilviss", "vuilwater": "vuilwater", "vuilwaterinzameling": "vuilwaterinzamel", "vuilwaterinzamelstations": "vuilwaterinzamelstation", "vuilwaterinzamelstructuur": "vuilwaterinzamelstructur", "vuilwaterklokpompen": "vuilwaterklokpomp", "vuilwaterlocaties": "vuilwaterlocaties", "vuilwatertanks": "vuilwatertank", "vuist": "vuist", "vuisten": "vuist", "vuistjes": "vuistjes", "vul": "vul", "vulcan": "vulcan", "vulcanisering": "vulcaniser", "vulde": "vuld", "vulden": "vuld", "vulgair": "vulgair", "vulgaire": "vulgair", "vulgariteit": "vulgariteit", "vulkaan": "vulkan", "vulkaanbasalt": "vulkaanbasalt", "vulkaanuitbarstingen": "vulkaanuitbarst", "vulkachel": "vulkachel", "vulkanen": "vulkan", "vulkanisch": "vulkanisch", "vulkanische": "vulkanisch", "vulkanologen": "vulkanolog", "vulkanoloog": "vulkanolog", "vullen": "vull", "vullende": "vullend", "vuller": "vuller", "vullers": "vuller", "vulliez": "vulliez", "vullis": "vullis", "vulmateriaal": "vulmateriaal", "vulmiddel": "vulmiddel", "vulschuim": "vulschuim", "vulstof": "vulstof", "vulstoffen": "vulstoff", "vult": "vult", "vunzig": "vunzig", "vuren": "vur", "vurende": "vurend", "vurige": "vurig", "vuur": "vur", "vuurbestrijding": "vuurbestrijd", "vuurgevaarlijke": "vuurgevar", "vuurhaard": "vuurhaard", "vuurlek": "vuurlek", "vuurrood": "vuurrod", "vuurs": "vur", "vuursmeren": "vuursmer", "vuurtong": "vuurtong", "vuurtoren": "vuurtor", "vuurvast": "vuurvast", "vuurwerk": "vuurwerk", "vuurwerkgebied": "vuurwerkgebied", "vuylsteke": "vuylstek", "vvav": "vvav", "vvd": "vvd", "vvm": "vvm", "vvnh": "vvnh", "vvvf": "vvvf", "vws": "vws", "vzw": "vzw", "w": "w", "waagde": "waagd", "waai": "waai", "waaide": "waaid", "waaiden": "waaid", "waaidenaan": "waaidenan", "waaien": "waai", "waaiend": "waaiend", "waaiende": "waaiend", "waaier": "waaier", "waaiers": "waaier", "waaiïngen": "waaiing", "waait": "waait", "waaivuil": "waaivuil", "waaivuilvangsysteem": "waaivuilvangsystem", "waakte": "waakt", "waakvlam": "waakvlam", "waal": "wal", "waaldijk": "waaldijk", "waalsdorpse": "waalsdorp", "waalse": "wal", "waan": "wan", "waande": "waand", "waanzin": "waanzin", "waar": "war", "wáar": "war", "waaraan": "waaran", "waarachter": "waarachter", "waarachtig": "waaracht", "waarbij": "waarbij", "waarbinnen": "waarbinn", "waarborg": "waarborg", "waarborgen": "waarborg", "waarborgfonds": "waarborgfond", "waarborging": "waarborg", "waarborgt": "waarborgt", "waarboven": "waarbov", "waard": "waard", "waarde": "waard", "waardebon": "waardebon", "waardedaling": "waardedal", "waardedrukkende": "waardedruk", "waardeer": "waarder", "waardeerde": "waardeerd", "waardeert": "waardeert", "waardeloos": "waardelos", "waardeloosheid": "waardelos", "waarden": "waard", "waarderen": "waarder", "waarderend": "waarder", "waarderende": "waarder", "waardering": "waarder", "waardevol": "waardevol", "waardevolle": "waardevoll", "waardig": "waardig", "waardige": "waardig", "waardigheid": "waardig", "waardoon": "waardon", "waardoor": "waardor", "waardpolder": "waardpolder", "waargemaakt": "waargemaakt", "waargenomen": "waargenom", "waarheden": "waarheid", "waarheen": "waarhen", "waarheid": "waarheid", "waarin": "waarin", "waarlangs": "waarlang", "waarlijk": "waarlijk", "waarmaken": "waarmak", "waarmede": "waarmed", "waarmee": "waarmee", "waarna": "waarna", "waarnaar": "waarnar", "waarneembaar": "waarnem", "waarneembare": "waarnem", "waarnemen": "waarnem", "waarnemers": "waarnemer", "waarneming": "waarnem", "waarnemingen": "waarnem", "waarom": "waarom", "waaronder": "waaronder", "waarop": "waarop", "waarover": "waarover", "waars": "war", "waarschijnlijk": "waarschijn", "waarschijnlijke": "waarschijn", "waarschijnlijkheid": "waarschijn", "waarschuwde": "waarschuwd", "waarschuwden": "waarschuwd", "waarschuwen": "waarschuw", "waarschuwend": "waarschuw", "waarschuwings": "waarschuw", "waarschuwingssystemen": "waarschuwingssystem", "waarschuwingstekens": "waarschuwingsteken", "waarschuwingstijd": "waarschuwingstijd", "waarschuwt": "waarschuwt", "waartegen": "waarteg", "waartoe": "waartoe", "waartussen": "waartuss", "waaruit": "waaruit", "waarvan": "waarvan", "waarvandaan": "waarvandan", "waarvoor": "waarvor", "waas": "was", "waasde": "waasd", "waasden": "waasd", "wabm": "wabm", "wacht": "wacht", "wachten": "wacht", "wachtend": "wachtend", "wachtende": "wachtend", "wachting": "wachting", "wachtkamer": "wachtkamer", "wachtkamertje": "wachtkamertj", "wachtstand": "wachtstand", "wachtte": "wacht", "wachtten": "wacht", "wadden": "wad", "waddenadviesraad": "waddenadviesrad", "waddeneilanden": "waddeneiland", "waddengebied": "waddengebied", "waddenhandhavings": "waddenhandhav", "waddeninspectie": "waddeninspectie", "waddenkaas": "waddenkas", "waddenkust": "waddenkust", "waddenkustprovincies": "waddenkustprovincies", "waddenmilieu": "waddenmilieu", "waddennatuur": "waddennatur", "waddenprodukten": "waddenprodukt", "waddenprovincies": "waddenprovincies", "waddenvereniging": "waddenveren", "waddenzee": "waddenzee", "waddenzeebeleid": "waddenzeebeleid", "waddenzeeconferentie": "waddenzeeconferentie", "waddenzeehavens": "waddenzeehaven", "waddinxveen": "waddinxven", "wade": "wad", "wademde": "wademd", "waden": "wad", "wadlooptochten": "wadlooptocht", "wadloopverordening": "wadloopverorden", "wadvogels": "wadvogel", "waeht": "waeht", "wagelaar": "wagelar", "wagen": "wag", "wageningen": "wagen", "wagenings": "wagen", "wageningse": "wagen", "wagenpark": "wagenpark", "wagenplanning": "wagenplann", "wagens": "wagen", "wagensporen": "wagenspor", "wagentje": "wagentj", "wagner": "wagner", "wagons": "wagon", "waiboerhoeve": "waiboerhoev", "waidhofen": "waidhof", "waigel": "waigel", "waken": "wak", "wakend": "wakend", "wakende": "wakend", "wakens": "waken", "wakker": "wakker", "wakkerde": "wakkerd", "wal": "wal", "walaansluiting": "walaansluit", "walburcht": "walburcht", "walcheren": "walcher", "wâldwei": "wâldwei", "wales": "wales", "walgde": "walgd", "walgelijke": "walgelijk", "walhi": "walhi", "waling": "waling", "walkanten": "walkant", "walking": "walking", "wallage": "wallag", "walle": "wall", "wallen": "wall", "wallhäusser": "wallhausser", "wallonie": "wallonie", "wallonië": "wallonie", "walm": "walm", "walnotenhout": "walnotenhout", "wals": "wal", "walsen": "wals", "walter": "walter", "walthaus": "walthaus", "walvisachtigen": "walvisacht", "walvissen": "walviss", "wambachgroeve": "wambachgroev", "wambuis": "wambuis", "wams": "wam", "wanbetalers": "wanbetaler", "wanbetaling": "wanbetal", "wand": "wand", "wandel": "wandel", "wandelaar": "wandelar", "wandelaars": "wandelar", "wandelde": "wandeld", "wandelden": "wandeld", "wandelen": "wandel", "wandelend": "wandel", "wandelende": "wandel", "wandeling": "wandel", "wandelingen": "wandel", "wandelingetjes": "wandelingetjes", "wandelpad": "wandelpad", "wandelpaden": "wandelpad", "wandelt": "wandelt", "wandeltoilet": "wandeltoilet", "wanden": "wand", "wandruwheid": "wandruw", "wang": "wang", "wangedrag": "wangedrag", "wangen": "wang", "wangi": "wangi", "wanhoop": "wanhop", "wanhoopsarmbeweeg": "wanhoopsarmbeweg", "wanhoopsarmen": "wanhoopsarm", "wanhoopsbesluit": "wanhoopsbesluit", "wanhoopsgebaar": "wanhoopsge", "wanhoopsilluzie": "wanhoopsilluzie", "wanhoopsschrik": "wanhoopsschrik", "wanhoopssnik": "wanhoopssnik", "wanhoopszwaarte": "wanhoopszwaart", "wanhoopte": "wanhoopt", "wanhopig": "wanhop", "wanhopige": "wanhop", "wankel": "wankel", "wankelde": "wankeld", "wankele": "wankel", "wankelen": "wankel", "wankelend": "wankel", "wankelende": "wankel", "wankellopende": "wankellop", "wankeltrippelend": "wankeltrippel", "wanneer": "wanner", "wanorde": "wanord", "wanprestatie": "wanprestatie", "want": "want", "wantoestanden": "wantoestand", "wantrouwen": "wantrouw", "wantrouwend": "wantrouw", "wantrouwig": "wantrouw", "wantrouwt": "wantrouwt", "wapen": "wap", "wapenembargo": "wapenembargo", "wapenrek": "wapenrek", "wapens": "wapen", "wapenstok": "wapenstok", "wapensveld": "wapensveld", "wapentesten": "wapentest", "wapentests": "wapentest", "wapentje": "wapentj", "wapenveld": "wapenveld", "wapperde": "wapperd", "wapperden": "wapperd", "waprog": "waprog", "war": "war", "warden": "ward", "ware": "war", "waren": "war", "warenhuis": "warenhuis", "warenhuisdirecteur": "warenhuisdirecteur", "warenhuizen": "warenhuiz", "warenwet": "warenwet", "warenwetbesluit": "warenwetbesluit", "warenwetcommissie": "warenwetcommissie", "warenwetregeling": "warenwetregel", "warffum": "warffum", "warm": "warm", "warmde": "warmd", "warme": "warm", "warmelo": "warmelo", "warmen": "warm", "warmer": "warmer", "warmere": "warmer", "warmoeziers": "warmoezier", "warmoezierwagens": "warmoezierwagen", "warmst": "warmst", "warmste": "warmst", "warmt": "warmt", "warmtapwater": "warmtapwater", "warmte": "warmt", "warmtebalans": "warmtebalan", "warmtebehoefte": "warmtebehoeft", "warmtebehoeften": "warmtebehoeft", "warmtebenutting": "warmtebenut", "warmteboilers": "warmteboiler", "warmtebron": "warmtebron", "warmtebuffer": "warmtebuffer", "warmtebuffers": "warmtebuffer", "warmtecentrale": "warmtecentral", "warmtecentrales": "warmtecentrales", "warmtedistributienet": "warmtedistributienet", "warmtegeleiding": "warmtegeleid", "warmtehuishouding": "warmtehuishoud", "warmtekaart": "warmtekaart", "warmtekoppeling": "warmtekoppel", "warmtekosten": "warmtekost", "warmtekracht": "warmtekracht", "warmtekrachtcentrale": "warmtekrachtcentral", "warmtekrachtcentrales": "warmtekrachtcentrales", "warmtekrachtinstallatie": "warmtekrachtinstallatie", "warmtekrachtkoppeling": "warmtekrachtkoppel", "warmtekrachtprojecten": "warmtekrachtproject", "warmtekrachtsystemen": "warmtekrachtsystem", "warmtelevering": "warmtelever", "warmteleveringsprojecten": "warmteleveringsproject", "warmtemeter": "warmtemeter", "warmtemeters": "warmtemeter", "warmtemeting": "warmtemet", "warmteopslag": "warmteopslag", "warmteopslagtank": "warmteopslagtank", "warmteoverdracht": "warmteoverdracht", "warmtepomp": "warmtepomp", "warmtepompen": "warmtepomp", "warmtepompsysteem": "warmtepompsystem", "warmteproduktie": "warmteproduktie", "warmteterugwinning": "warmteterugwinn", "warmteterugwinningsinstallatie": "warmteterugwinningsinstallatie", "warmtetransport": "warmtetransport", "warmteuitwisseling": "warmteuitwissel", "warmteverbruik": "warmteverbruik", "warmteverlies": "warmteverlies", "warmteverliezen": "warmteverliez", "warmtevoorziening": "warmtevoorzien", "warmtevraag": "warmtevrag", "warmtewand": "warmtewand", "warmtewisselaar": "warmtewisselar", "warmtewisselaars": "warmtewisselar", "warmtewisseling": "warmtewissel", "warmwater": "warmwater", "warmwatercomfort": "warmwatercomfort", "warmwaterinstallatie": "warmwaterinstallatie", "warmwateropwekking": "warmwateropwek", "warmwatertoestel": "warmwatertoestel", "warmwatervoorziening": "warmwatervoorzien", "warnsborn": "warnsborn", "warongs": "warong", "warre": "warr", "warrelde": "warreld", "warreling": "warrel", "warrelingen": "warrel", "warrelkoppen": "warrelkopp", "warren": "warr", "warrington": "warrington", "warrior": "warrior", "wars": "war", "warschau": "warschau", "was": "was", "wasactieve": "wasactiev", "wasbaar": "wasbar", "wasbare": "wasbar", "wasbleke": "wasblek", "wasdom": "wasdom", "wasdroger": "wasdroger", "wasgehalte": "wasgehalt", "washington": "washington", "wasinrichting": "wasinricht", "wasinstallatie": "wasinstallatie", "wasinstallaties": "wasinstallaties", "waskaarsen": "waskaars", "waskolom": "waskolom", "waslijst": "waslijst", "wasmachine": "wasmachin", "wasmachines": "wasmachines", "wasmiddel": "wasmiddel", "wasmiddelen": "wasmiddel", "wasmobiel": "wasmobiel", "wasplaats": "wasplat", "waspoeder": "waspoeder", "waspoederfamilie": "waspoederfamilie", "waspoeders": "waspoeder", "wasprocessen": "wasprocess", "wassen": "wass", "wassenaar": "wassenar", "wassenaarse": "wassenar", "wassend": "wassend", "wasser": "wasser", "wasserchemie": "wasserchemie", "wasserhaushaltgesetz": "wasserhaushaltgesetz", "wasserij": "wasserij", "wasserijen": "wasserij", "wassers": "wasser", "wassertechnischen": "wassertechnisch", "wassertechnologie": "wassertechnologie", "wassig": "wassig", "wassysteem": "wassystem", "wastafel": "wastafel", "waste": "wast", "wastewater": "wastewater", "wastorens": "wastoren", "wasvrouw": "wasvrouw", "waswater": "waswater", "waswatercircuit": "waswatercircuit", "wat": "wat", "watch": "watch", "watco": "watco", "water": "water", "wateraanvoer": "wateraanvoer", "waterabsorbtie": "waterabsorbtie", "waterafscheider": "waterafscheider", "waterafstotende": "waterafstot", "waterafvoer": "waterafvoer", "waterbasis": "waterbasis", "waterbassins": "waterbassin", "waterbed": "waterbed", "waterbedrijven": "waterbedrijv", "waterbehandelaar": "waterbehandelar", "waterbehandeling": "waterbehandel", "waterbehandelingsbranche": "waterbehandelingsbranch", "waterbeheer": "waterbeher", "waterbeheerders": "waterbeheerder", "waterbeheersing": "waterbeheers", "waterbeheersingstechnologieën": "waterbeheersingstechnologieen", "waterbeheersplan": "waterbeheersplan", "waterbeheersplannen": "waterbeheersplann", "waterbehoefte": "waterbehoeft", "waterbeleid": "waterbeleid", "waterbeparende": "waterbepar", "waterberg": "waterberg", "waterbergend": "waterberg", "waterbeschikbaarheid": "waterbeschik", "waterbesparende": "waterbespar", "waterbesparing": "waterbespar", "waterbesparingsmaatregelen": "waterbesparingsmaatregel", "waterbesparingsplan": "waterbesparingsplan", "waterbestendigheid": "waterbestend", "waterbeweging": "waterbeweg", "waterbewust": "waterbewust", "waterbewuster": "waterbewuster", "waterbodem": "waterbodem", "waterbodemonderzoek": "waterbodemonderzoek", "waterbodems": "waterbodem", "waterbodemsanering": "waterbodemsaner", "waterbouw": "waterbouw", "waterbouwkunde": "waterbouwkund", "waterbouwkundige": "waterbouwkund", "waterbron": "waterbron", "waterbronnen": "waterbronn", "waterbuffers": "waterbuffer", "watercentrales": "watercentrales", "waterdamp": "waterdamp", "waterdeeltjes": "waterdeeltjes", "waterdicht": "waterdicht", "waterdichte": "waterdicht", "waterdiepte": "waterdiept", "waterdieren": "waterdier", "waterdoorlaatbaarheid": "waterdoorlat", "waterdoorlatendheid": "waterdoorlat", "waterdruk": "waterdruk", "waterdrukken": "waterdruk", "watereffluent": "watereffluent", "wateremissies": "wateremissies", "wateren": "water", "waterenergie": "waterenergie", "watereservoirs": "watereservoir", "waterfabrikant": "waterfabrikant", "waterfilm": "waterfilm", "watergangen": "watergang", "watergebrek": "watergebrek", "watergebruik": "watergebruik", "watergedragen": "watergedrag", "watergekoelde": "watergekoeld", "waterglas": "waterglas", "watergraafsmeer": "watergraafsmer", "waterhuishouding": "waterhuishoud", "waterhuishoudingsplan": "waterhuishoudingsplan", "waterhuishoudingswet": "waterhuishoudingswet", "waterhuishoudkundig": "waterhuishoudkund", "waterhuishoudkundige": "waterhuishoudkund", "waterige": "water", "waterindustrie": "waterindustrie", "waterinfiltratie": "waterinfiltratie", "wateringen": "water", "waterjet": "waterjet", "waterkanalen": "waterkanal", "waterkering": "waterker", "waterkeringen": "waterker", "waterkoelte": "waterkoelt", "waterkracht": "waterkracht", "waterkrachtcentrale": "waterkrachtcentral", "waterkrachtcentrales": "waterkrachtcentrales", "waterkrachtinstallaties": "waterkrachtinstallaties", "waterkringloop": "waterkringlop", "waterkwaliteit": "waterkwaliteit", "waterkwaliteitsambtenaar": "waterkwaliteitsambtenar", "waterkwaliteitsbeheer": "waterkwaliteitsbeher", "waterkwaliteitsbeheerders": "waterkwaliteitsbeheerder", "waterkwaliteitsbeleid": "waterkwaliteitsbeleid", "waterlaagje": "waterlaagj", "waterland": "waterland", "waterleiding": "waterleid", "waterleidingbedrijf": "waterleidingbedrijf", "waterleidingbedrijven": "waterleidingbedrijv", "waterleidingen": "waterleid", "waterleidingmaatschappij": "waterleidingmaatschappij", "waterleidingmaatschappijen": "waterleidingmaatschappij", "waterleidingnet": "waterleidingnet", "waterleidingsmaatschappij": "waterleidingsmaatschappij", "waterlelies": "waterlelies", "waterloop": "waterlop", "waterloopkundig": "waterloopkund", "waterlopen": "waterlop", "watermaatschappij": "watermaatschappij", "waterman": "waterman", "watermanagement": "watermanagement", "watermengsel": "watermengsel", "watermengsels": "watermengsel", "watermeters": "watermeter", "watermetingen": "watermet", "watermex": "watermex", "watermilieu": "watermilieu", "watermoleculen": "watermolecul", "watermolen": "watermol", "watermonitoren": "watermonitor", "watermonster": "watermonster", "watermonsters": "watermonster", "waterniveau": "waterniveau", "waternoodsramp": "waternoodsramp", "waterondoorlatendheid": "waterondoorlat", "waterontharding": "wateronthard", "wateronttrekking": "wateronttrek", "wateropname": "wateropnam", "wateropnemende": "wateropnem", "wateroverlast": "wateroverlast", "waterpakt": "waterpakt", "waterpalet": "waterpalet", "waterpartij": "waterpartij", "waterpeil": "waterpeil", "waterpeilverlagingen": "waterpeilverlag", "waterpinch": "waterpinch", "waterplanten": "waterplant", "waterplas": "waterplas", "waterpompen": "waterpomp", "waterprobleem": "waterproblem", "waterproblemen": "waterproblem", "waterrantsoenen": "waterrantsoen", "waterrantsoenering": "waterrantsoener", "waterreactoren": "waterreactor", "waterrechten": "waterrecht", "waterrecreanten": "waterrecreant", "waterreinigingssysteem": "waterreinigingssystem", "waterreservoirs": "waterreservoir", "waterrestricties": "waterrestricties", "waterrijke": "waterrijk", "watersalamanders": "watersalamander", "waterschap": "waterschap", "waterschappen": "waterschapp", "waterschapsbank": "waterschapsbank", "waterschapsbesturen": "waterschapsbestur", "waterschapswereld": "waterschapswereld", "waterschei": "waterschei", "watersector": "watersector", "watersnip": "watersnip", "watersnoodramp": "watersnoodramp", "waterspaarders": "waterspaarder", "watersparende": "waterspar", "waterspiegel": "waterspiegel", "watersport": "watersport", "watersporten": "watersport", "watersporters": "watersporter", "watersportverbond": "watersportverbond", "watersportverenigingen": "watersportveren", "waterspray": "waterspray", "waterspuit": "waterspuit", "waterstaat": "waterstat", "waterstaatssector": "waterstaatssector", "waterstand": "waterstand", "waterstanden": "waterstand", "waterstilte": "waterstilt", "waterstof": "waterstof", "waterstofafdeling": "waterstofafdel", "waterstofbommen": "waterstofbomm", "waterstofcarbonaten": "waterstofcarbonat", "waterstofgas": "waterstofgas", "waterstofopslag": "waterstofopslag", "waterstofperoxyde": "waterstofperoxyd", "waterstofsysteem": "waterstofsystem", "waterstoftanks": "waterstoftank", "waterstoof": "waterstof", "waterstralen": "waterstral", "waterstromen": "waterstrom", "waterstroom": "waterstrom", "watersysteem": "watersystem", "watersysteemverkenning": "watersysteemverkenn", "watersysteemverkenningen": "watersysteemverkenn", "watersystemen": "watersystem", "watertech": "watertech", "watertechniek": "watertechniek", "watertekort": "watertekort", "watertekorten": "watertekort", "watertemperaturen": "watertemperatur", "watertemperatuur": "watertemperatur", "watertoevoer": "watertoevoer", "watertransport": "watertransport", "waterval": "waterval", "waterverbruik": "waterverbruik", "waterverdragen": "waterverdrag", "waterverdunbare": "waterverdun", "waterverlies": "waterverlies", "waterverontreiniging": "waterverontrein", "waterverstrekking": "waterverstrek", "waterverven": "waterverv", "watervervuiling": "watervervuil", "waterverzadigde": "waterverzadigd", "watervlo": "watervlo", "watervloeden": "watervloed", "watervlooien": "watervlooi", "watervoerende": "watervoer", "watervoerendheid": "watervoer", "watervogels": "watervogel", "watervoorraad": "watervoorrad", "watervoorraden": "watervoorrad", "watervoorziening": "watervoorzien", "watervrienden": "watervri", "watervrij": "watervrij", "watervrije": "watervrij", "waterwegen": "waterweg", "waterweringen": "waterwer", "waterwerken": "waterwerk", "waterwijf": "waterwijf", "waterwijven": "waterwijv", "waterwild": "waterwild", "waterwin": "waterwin", "waterwingebied": "waterwingebied", "waterwingebieden": "waterwingebied", "waterwinning": "waterwinn", "waterwinningsbedrijven": "waterwinningsbedrijv", "waterwinstation": "waterwinstation", "waterwisselaar": "waterwisselar", "waterzuivering": "waterzuiver", "waterzuiveringsbedrijf": "waterzuiveringsbedrijf", "waterzuiveringsgebouw": "waterzuiveringsgebouw", "waterzuiveringsinrichtingen": "waterzuiveringsinricht", "waterzuiveringsinstallatie": "waterzuiveringsinstallatie", "waterzuiveringsinstallaties": "waterzuiveringsinstallaties", "waterzuiveringslocatie": "waterzuiveringslocatie", "waterzuiveringsslib": "waterzuiveringsslib", "waterzuiveringsstation": "waterzuiveringsstation", "waterzuiveringssystemen": "waterzuiveringssystem", "waterzuiveringstechnieken": "waterzuiveringstechniek", "waterzuiveringstechnologieën": "waterzuiveringstechnologieen", "wathey": "wathey", "watis": "watis", "watson": "watson", "watt": "watt", "wattenscheid": "wattenscheid", "wattman": "wattman", "watts": "watt", "wav": "wav", "wave": "wav", "wavin": "wavin", "wazen": "waz", "wazig": "wazig", "wazige": "wazig", "wazigheid": "wazig", "wazing": "wazing", "wazingen": "wazing", "wb": "wb", "wbb": "wbb", "wbm": "wbm", "wc": "wc", "wca": "wca", "wcl": "wcl", "wdb": "wdb", "wdc": "wdc", "we": "we", "web": "web", "weber": "weber", "wecke": "weck", "weckseler": "weckseler", "wedeco": "wedeco", "wederkerende": "wederker", "wederkerigheid": "wederker", "wederom": "wederom", "wederopbouw": "wederopbouw", "wedervaren": "wedervar", "wederzijdse": "wederzijd", "wedrennen": "wedrenn", "wedstrijd": "wedstrijd", "wedstrijdzeilen": "wedstrijdzeil", "weduwe": "weduw", "wee": "wee", "weedom": "weedom", "weeë": "weee", "weeënremmend": "weeenremm", "weefde": "weefd", "weefden": "weefd", "weefsel": "weefsel", "weefsels": "weefsel", "weeg": "weg", "weegapparatuur": "weegapparatur", "weegbrug": "weegbrug", "weegbruggen": "weegbrugg", "weegen": "weg", "weeginstallatie": "weeginstallatie", "weegplateau": "weegplateau", "weegs": "weg", "weegschaalinstallatie": "weegschaalinstallatie", "weegsysteem": "weegsystem", "weegsystemen": "weegsystem", "weegt": "weegt", "week": "wek", "weekblad": "weekblad", "weekend": "weekend", "weekenden": "weekend", "weekendkaart": "weekendkaart", "weekheid": "weekheid", "weeklagend": "weeklag", "weekmaker": "weekmaker", "weekmakers": "weekmaker", "weeks": "wek", "weekte": "weekt", "weelde": "weeld", "weelderige": "weelder", "weele": "wel", "weemoed": "weemoed", "weemoedig": "weemoed", "weemoedige": "weemoed", "weemoediger": "weemoediger", "weemoedigheden": "weemoed", "weemoedigheid": "weemoed", "weemoedsdagen": "weemoedsdag", "weemoedwolken": "weemoedwolk", "weende": "weend", "weenden": "weend", "weens": "wen", "weer": "wer", "weêr": "weêr", "weerbestendige": "weerbestend", "weercondities": "weercondities", "weerde": "weerd", "weerdhof": "weerdhof", "weergave": "weergav", "weergeeft": "weergeeft", "weergegeven": "weergegev", "weergeven": "weergev", "weergevonden": "weergevond", "weerhield": "weerhield", "weerhouden": "weerhoud", "weerhoudt": "weerhoudt", "weerkaatsen": "weerkaats", "weerkundigen": "weerkund", "weerlegd": "weerlegd", "weerlegde": "weerlegd", "weerlegt": "weerlegt", "weerlicht": "weerlicht", "weerlichten": "weerlicht", "weerlichtsnelle": "weerlichtsnell", "weerlichtten": "weerlicht", "weerorganisatie": "weerorganisatie", "weerpatronen": "weerpatron", "weerribben": "weerribb", "weerscheen": "weerschen", "weerschemerden": "weerschemerd", "weerschenen": "weerschen", "weerschijn": "weerschijn", "weerschijnen": "weerschijn", "weerschijning": "weerschijn", "weerschijningen": "weerschijn", "weersgesteldheid": "weersgesteld", "weersinvloeden": "weersinvloed", "weerskanten": "weerskant", "weersomstandigheden": "weersomstand", "weerspel": "weerspel", "weerspiegeld": "weerspiegeld", "weerspiegelden": "weerspiegeld", "weerspiegeling": "weerspiegel", "weerspiegelingen": "weerspiegel", "weersprak": "weersprak", "weerspraken": "weersprak", "weerstaan": "weerstan", "weerstand": "weerstand", "weerstanden": "weerstand", "weerstations": "weerstation", "weerstreefde": "weerstreefd", "weerstrevig": "weerstrev", "weerszijde": "weerszijd", "weerszijden": "weerszijd", "weert": "weert", "wees": "wes", "weesp": "weesp", "weest": "weest", "weet": "wet", "wéet": "wet", "weg": "weg", "wegblijft": "wegblijft", "wegblijven": "wegblijv", "wegbrengen": "wegbreng", "wegcijferend": "wegcijfer", "wegcirkelen": "wegcirkel", "wegdeinden": "wegdeind", "wegdek": "wegdek", "wegdekken": "wegdek", "wegdoen": "wegdoen", "wegdoezelden": "wegdoezeld", "wegdoezelen": "wegdoezel", "wegdoomden": "wegdoomd", "wegdreef": "wegdref", "wegdromende": "wegdrom", "wegdrukbaar": "wegdruk", "wegdrukbare": "wegdruk", "wegen": "weg", "wegenaanleg": "wegenaanleg", "wegenaanlegprojecten": "wegenaanlegproject", "wegenbelasting": "wegenbelast", "wegenbouw": "wegenbouw", "wegend": "wegend", "wegeninfrastructuur": "wegeninfrastructur", "wegenproject": "wegenproject", "wegenprojecten": "wegenproject", "wegens": "wegen", "wegenverf": "wegenverf", "wegenverkeerswet": "wegenverkeerswet", "wegenwachthulp": "wegenwachthulp", "wegenzout": "wegenzout", "wegfietsen": "wegfiets", "wegfundering": "wegfunder", "wegga": "wegga", "weggaan": "weggan", "weggebleven": "weggeblev", "weggebruiker": "weggebruiker", "weggebruikers": "weggebruiker", "weggedeelten": "weggedeelt", "weggeduwd": "weggeduwd", "weggefilterd": "weggefilterd", "weggegaan": "weggegan", "weggegooid": "weggegooid", "weggegraven": "weggegrav", "weggehaald": "weggehaald", "weggeijld": "weggeijld", "weggekoeld": "weggekoeld", "weggelegd": "weggelegd", "weggelekt": "weggelekt", "weggelekte": "weggelekt", "weggelopen": "weggelop", "weggemaakt": "weggemaakt", "weggen": "wegg", "weggenomen": "weggenom", "weggepompt": "weggepompt", "weggeregeld": "weggeregeld", "weggerukt": "weggerukt", "weggesaneerd": "weggesaneerd", "weggeschaduwd": "weggeschaduwd", "weggeschoven": "weggeschov", "weggeslagen": "weggeslag", "weggesmolten": "weggesmolt", "weggesoesd": "weggesoesd", "weggespoelde": "weggespoeld", "weggestopt": "weggestopt", "weggestorven": "weggestorv", "weggestreken": "weggestrek", "weggetreurd": "weggetreurd", "weggetrokken": "weggetrok", "weggevangen": "weggevang", "weggeweest": "weggeweest", "weggewenteld": "weggewenteld", "weggewist": "weggewist", "weggewuifd": "weggewuifd", "weggezet": "weggezet", "weggeziekt": "weggeziekt", "weggezonken": "weggezonk", "wegging": "wegging", "weggooien": "weggooi", "weggroef": "weggroef", "weghalen": "weghal", "weginfrastructuur": "weginfrastructur", "weging": "weging", "wegingsfactoren": "wegingsfactor", "wegjaagt": "wegjaagt", "wegjoeg": "wegjoeg", "wegklapbaar": "wegklap", "wegkomt": "wegkomt", "wegkronkelde": "wegkronkeld", "wegkwijnen": "wegkwijn", "weglaten": "weglat", "weglekkende": "weglek", "weglopen": "weglop", "wegmateriaal": "wegmateriaal", "wegmistten": "wegmist", "wegnam": "wegnam", "wegneemt": "wegneemt", "wegnemen": "wegnem", "wegnevelend": "wegnevel", "wegpakken": "wegpak", "wegprojecten": "wegproject", "wegreed": "wegred", "wegroosterde": "wegroosterd", "wegschietend": "wegschiet", "wegschommelen": "wegschommel", "wegschuilende": "wegschuil", "wegsijpelen": "wegsijpel", "wegslaan": "wegslan", "wegsloeg": "wegsloeg", "wegstemmen": "wegstemm", "wegsterven": "wegsterv", "wegstoof": "wegstof", "wegstoppen": "wegstopp", "wegstroomde": "wegstroomd", "wegstroomt": "wegstroomt", "wegtransport": "wegtransport", "wegtransportmiddelen": "wegtransportmiddel", "wegtrekken": "wegtrek", "wegtreuren": "wegtreur", "wegvallen": "wegvall", "wegvalt": "wegvalt", "wegverkeer": "wegverker", "wegverleggingen": "wegverlegg", "wegvervoer": "wegvervoer", "wegvervoerders": "wegvervoerder", "wegvliedende": "wegvlied", "wegvliegt": "wegvliegt", "wegvluchtten": "wegvlucht", "wegwandelen": "wegwandel", "wegwaste": "wegwast", "wegwazende": "wegwaz", "wegwentelt": "wegwentelt", "wegwerken": "wegwerk", "wegwerp": "wegwerp", "wegwerpartikelen": "wegwerpartikel", "wegwerpbatterijen": "wegwerpbatterij", "wegwerpgebruik": "wegwerpgebruik", "wegwerpkleding": "wegwerpkled", "wegwerpluier": "wegwerpluier", "wegwerpluiers": "wegwerpluier", "wegwiekte": "wegwiekt", "wegwieleren": "wegwieler", "wegwijkt": "wegwijkt", "wegwijs": "wegwijs", "wegwijzer": "wegwijzer", "wegwissen": "wegwiss", "wegwissende": "wegwiss", "wegwisten": "wegwist", "wegwoei": "wegwoei", "wegzonk": "wegzonk", "wegzuiging": "wegzuig", "wehl": "wehl", "wei": "wei", "weicke": "weick", "weide": "weid", "weidebedrijven": "weidebedrijv", "weidegebied": "weidegebied", "weidegras": "weidegras", "weidegrond": "weidegrond", "weiden": "weid", "weidend": "weidend", "weidevogelgebied": "weidevogelgebied", "weidevogelnesten": "weidevogelnest", "weidevogels": "weidevogel", "weids": "weid", "weier": "weier", "weifelde": "weifeld", "weifelen": "weifel", "weifelend": "weifel", "weifelig": "weifel", "weifeling": "weifel", "weifelingen": "weifel", "weifelt": "weifelt", "weiger": "weiger", "weigerde": "weigerd", "weigerden": "weigerd", "weigeren": "weiger", "weigering": "weiger", "weigert": "weigert", "weighted": "weighted", "weijden": "weijd", "weijer": "weijer", "weiland": "weiland", "weilanden": "weiland", "weinig": "weinig", "weinige": "weinig", "weinigen": "weinig", "weizakken": "weizak", "weka": "weka", "weke": "wek", "wekelijks": "wekelijk", "wekelijkse": "wekelijk", "weken": "wek", "wéken": "wek", "weker": "weker", "wekken": "wek", "wekkerradio": "wekkerradio", "wekt": "wekt", "wekte": "wekt", "wekten": "wekt", "wel": "wel", "wèl": "wèl", "welbehagelijk": "welbehag", "welbehagelijkheid": "welbehag", "welbehagen": "welbehag", "welch": "welch", "welcke": "welck", "wèlcke": "wèlck", "welckë": "welck", "welcken": "welck", "welckje": "welckj", "weldaad": "weldad", "weldaden": "weldad", "weldadig": "weldad", "weldadige": "weldad", "weldadiger": "weldadiger", "weldadigheid": "weldad", "weldadigheidjes": "weldadigheidjes", "weldadigs": "weldad", "welde": "weld", "welden": "weld", "weldoening": "weldoen", "weldon": "weldon", "weldra": "weldra", "weleens": "welen", "weleer": "weler", "weleke": "welek", "welfde": "welfd", "welfden": "welfd", "welger": "welger", "welgevallen": "welgevall", "weligheid": "welig", "weliswaar": "weliswar", "welk": "welk", "welke": "welk", "welkom": "welkom", "welkomstwoord": "welkomstwoord", "welkunnen": "welkunn", "wellen": "well", "wellicht": "wellicht", "wellust": "wellust", "welmenend": "welmen", "welnu": "welnu", "welopgevoedheid": "welopgevoed", "welslagen": "welslag", "welsprekendheid": "welsprek", "welstandscommissie": "welstandscommissie", "welvaart": "welvaart", "welvaarts": "welvaart", "welvaartsgroei": "welvaartsgroei", "welvend": "welvend", "welvoeglijk": "welvoeg", "welwetend": "welwet", "welwetende": "welwet", "welweterij": "welweterij", "welweting": "welwet", "welwillend": "welwill", "welwillende": "welwill", "welwillendheid": "welwill", "welwilligjes": "welwilligjes", "welzijn": "welzijn", "welzijnsproblematiek": "welzijnsproblematiek", "wemelde": "wemeld", "wemelden": "wemeld", "wemelen": "wemel", "wemelend": "wemel", "wemelende": "wemel", "wemeling": "wemel", "wemelingen": "wemel", "wemelt": "wemelt", "wen": "wen", "wend": "wend", "wendbaarheid": "wendbar", "wendde": "wend", "wendden": "wend", "wende": "wend", "wenden": "wend", "wendend": "wendend", "wendende": "wendend", "wendingen": "wending", "wenen": "wen", "wenend": "wenend", "wenende": "wenend", "wening": "wening", "wenk": "wenk", "wenkbrauwen": "wenkbrauw", "wenken": "wenk", "wenkende": "wenkend", "wenkte": "wenkt", "wennen": "wenn", "wens": "wen", "wenselijk": "wenselijk", "wenselijkheid": "wenselijk", "wensen": "wens", "wenst": "wenst", "wenste": "wenst", "went": "went", "weom": "weom", "werd": "werd", "werden": "werd", "werdt": "werdt", "wereld": "wereld", "wereldbank": "wereldbank", "wereldbegin": "wereldbegin", "wereldberoemd": "wereldberoemd", "wereldbevolking": "wereldbevolk", "wereldbolletje": "wereldbolletj", "wereldburger": "wereldburger", "wereldcongres": "wereldcongres", "werelddelen": "werelddel", "werelddierendag": "werelddierendag", "wereldeconomie": "wereldeconomie", "wereldenergiemarkt": "wereldenergiemarkt", "wereldenergievraag": "wereldenergievrag", "wereldfederatie": "wereldfederatie", "wereldgemeenschap": "wereldgemeenschap", "wereldgeschiedenis": "wereldgeschiedenis", "wereldgezondheidsorganisatie": "wereldgezondheidsorganisatie", "wereldhandel": "wereldhandel", "wereldhandelsovereenkomst": "wereldhandelsovereenkomst", "wereldjes": "wereldjes", "wereldkampioen": "wereldkampioen", "wereldkennis": "wereldkennis", "wereldlanden": "wereldland", "wereldleed": "wereldled", "wereldleider": "wereldleider", "wereldlucht": "wereldlucht", "wereldmarkt": "wereldmarkt", "wereldmarktaandeel": "wereldmarktaandel", "wereldmarktleider": "wereldmarktleider", "wereldmeisjes": "wereldmeisjes", "wereldmilieuconferentie": "wereldmilieuconferentie", "wereldmilieufonds": "wereldmilieufond", "wereldmist": "wereldmist", "wereldnatuurfonds": "wereldnatuurfond", "wereldniveau": "wereldniveau", "wereldomspannende": "wereldomspann", "wereldoorlog": "wereldoorlog", "wereldopinie": "wereldopinie", "wereldorde": "wereldord", "wereldorganisaties": "wereldorganisaties", "wereldpers": "wereldper", "wereldprijzen": "wereldprijz", "wereldproduktie": "wereldproduktie", "werelds": "wereld", "wereldschaakbond": "wereldschaakbond", "wereldschat": "wereldschat", "wereldse": "wereld", "wereldsheid": "werelds", "wereldstad": "wereldstad", "wereldstandaard": "wereldstandaard", "wereldvraag": "wereldvrag", "wereldvrede": "wereldvred", "wereldvrouw": "wereldvrouw", "wereldwijd": "wereldwijd", "wereldwijde": "wereldwijd", "wereldwijs": "wereldwijs", "wereldwijsheid": "wereldwijs", "wereldwijze": "wereldwijz", "weren": "wer", "werf": "werf", "werk": "werk", "werkafspraken": "werkafsprak", "werkbaar": "werkbar", "werkbank": "werkbank", "werkbelasting": "werkbelast", "werkbesparing": "werkbespar", "werkbezoek": "werkbezoek", "werkbladen": "werkblad", "werkboek": "werkboek", "werkbreedte": "werkbreedt", "werkbreedtes": "werkbreedtes", "werkconferentie": "werkconferentie", "werkdagen": "werkdag", "werkdruk": "werkdruk", "werke": "werk", "werkelijk": "werkelijk", "werkelijke": "werkelijk", "werkelijkheid": "werkelijk", "werkeloos": "werkelos", "werkeloosheid": "werkelos", "werken": "werk", "werkend": "werkend", "werkende": "werkend", "werker": "werker", "werkers": "werker", "werkervaring": "werkervar", "werkfunctie": "werkfunctie", "werkgang": "werkgang", "werkgebied": "werkgebied", "werkgebieden": "werkgebied", "werkgelegenheid": "werkgeleg", "werkgelegenheidsbeleid": "werkgelegenheidsbeleid", "werkgelegenheidseffecten": "werkgelegenheidseffect", "werkgelegenheidsprojecten": "werkgelegenheidsproject", "werkgever": "werkgever", "werkgevers": "werkgever", "werkgeversbonden": "werkgeversbond", "werkgeversorganisatie": "werkgeversorganisatie", "werkgeversorganisaties": "werkgeversorganisaties", "werkgeversplan": "werkgeversplan", "werkgeversvereniging": "werkgeversveren", "werkgeversvoorzitters": "werkgeversvoorzitter", "werkgroep": "werkgroep", "werkgroepen": "werkgroep", "werkhoogte": "werkhoogt", "werking": "werking", "werkingsduur": "werkingsdur", "werkingsmechanismen": "werkingsmechanism", "werkingssfeer": "werkingssfer", "werkkring": "werkkring", "werklamp": "werklamp", "werkloosheid": "werklos", "werkloze": "werkloz", "werklozen": "werkloz", "werklui": "werklui", "werklust": "werklust", "werkmaatschappij": "werkmaatschappij", "werkman": "werkman", "werkmansstand": "werkmansstand", "werkmethode": "werkmethod", "werknemer": "werknemer", "werknemers": "werknemer", "werkomgeving": "werkomgev", "werkomstandigheden": "werkomstand", "werkplaats": "werkplat", "werkplaatsconcentraties": "werkplaatsconcentraties", "werkplaatsen": "werkplaats", "werkplan": "werkplan", "werkplannen": "werkplann", "werkplek": "werkplek", "werkplekkaarten": "werkplekkaart", "werkplekken": "werkplek", "werkprogramma": "werkprogramma", "werksnelheid": "werksnel", "werkstoffrecycling": "werkstoffrecycl", "werkstuk": "werkstuk", "werkt": "werkt", "werktafel": "werktafel", "werkte": "werkt", "werkten": "werkt", "werkterrein": "werkterrein", "werkterreinen": "werkterrein", "werktheater": "werktheater", "werktijd": "werktijd", "werktijden": "werktijd", "werktuigbouw": "werktuigbouw", "werktuigbouwkunde": "werktuigbouwkund", "werktuigelijk": "werktuig", "werktuigen": "werktuig", "werktuigkeuze": "werktuigkeuz", "werkveld": "werkveld", "werkverkeer": "werkverker", "werkvloer": "werkvloer", "werkvoorbereiders": "werkvoorbereider", "werkvoorzieningsschappen": "werkvoorzieningsschapp", "werkwater": "werkwater", "werkweek": "werkwek", "werkwijze": "werkwijz", "werkwoorden": "werkwoord", "werkzaam": "werkzam", "werkzaamheden": "werkzam", "werkzaamheid": "werkzam", "werkzame": "werkzam", "werpen": "werp", "werpt": "werpt", "wert": "wert", "wertz": "wertz", "wervelbed": "wervelbed", "wervelbedoven": "wervelbedov", "wervelbedsysteem": "wervelbedsystem", "wervelbedverbranding": "wervelbedverbrand", "wervelbedverbrandingsinstallatie": "wervelbedverbrandingsinstallatie", "wervelbedvergasser": "wervelbedvergasser", "wervelbedvergassing": "wervelbedvergass", "werven": "werv", "wervend": "wervend", "wesmycon": "wesmycon", "wesp": "wesp", "wesphix": "wesphix", "wesselink": "wesselink", "wessles": "wessles", "west": "west", "westab": "westab", "westafrikaanse": "westafrikan", "westbaan": "westban", "westberg": "westberg", "westcentrum": "westcentrum", "westelijk": "westelijk", "westelijke": "westelijk", "westen": "west", "westenwind": "westenwind", "westergasfabriek": "westergasfabriek", "western": "western", "westerpark": "westerpark", "westers": "wester", "westerschelde": "westerscheld", "westerse": "wester", "westertocht": "westertocht", "westervoort": "westervoort", "westerzand": "westerzand", "westeuropees": "westeuropes", "westeuropese": "westeuropes", "westfalen": "westfal", "westfalica": "westfalica", "westfriesland": "westfriesland", "westkaap": "westkap", "westkant": "westkant", "westkust": "westkust", "westlaken": "westlak", "westland": "westland", "westlandse": "westland", "westminster": "westminster", "westnederlandse": "westnederland", "westpoort": "westpoort", "westwoude": "westwoud", "westzijde": "westzijd", "wet": "wet", "wetboek": "wetboek", "wetbudep": "wetbudep", "weten": "wet", "wéten": "wet", "wetèn": "wetèn", "wetend": "wetend", "wetende": "wetend", "wetens": "weten", "wetenschap": "wetenschap", "wetenschappelijk": "wetenschapp", "wetenschappelijke": "wetenschapp", "wetenschappen": "wetenschapp", "wetenschapper": "wetenschapper", "wetenschappers": "wetenschapper", "wetenschapstijdschrift": "wetenschapstijdschrift", "wetenschapswinkel": "wetenschapswinkel", "wetgeving": "wetgev", "wetgevingen": "wetgev", "wetgevings": "wetgev", "wetgevingskwaliteit": "wetgevingskwaliteit", "wetgevingstoets": "wetgevingstoet", "wethouder": "wethouder", "wethouders": "wethouder", "weting": "weting", "wetland": "wetland", "wetlands": "wetland", "wetsontwerp": "wetsontwerp", "wetsvoorstel": "wetsvoorstel", "wetsvoorstellen": "wetsvoorstell", "wetswijziging": "wetswijz", "wetswijzigingen": "wetswijz", "wettelijk": "wettelijk", "wettelijke": "wettelijk", "wetten": "wet", "wetterhaut": "wetterhaut", "wettige": "wettig", "weu": "weu", "weurt": "weurt", "weurtse": "weurt", "weven": "wev", "weyers": "weyer", "weytingh": "weytingh", "wezen": "wez", "wezenlijk": "wezen", "wezenlijke": "wezen", "wezenloos": "wezenlos", "wezenloosheid": "wezenlos", "wezens": "wezen", "wgd": "wgd", "wgh": "wgh", "wgr": "wgr", "wheelabrator": "wheelabrator", "wheeler": "wheeler", "whisky": "whisky", "whist": "whist", "whisten": "whist", "whistregels": "whistregel", "whisttafel": "whisttafel", "who": "who", "whoe": "whoe", "wibra": "wibra", "wicc": "wicc", "wide": "wid", "wideraufbau": "wideraufbau", "wie": "wie", "wiebelt": "wiebelt", "wieden": "wied", "wiederaufwirkung": "wiederaufwirkung", "wieg": "wieg", "wiegand": "wiegand", "wiegde": "wiegd", "wiegen": "wieg", "wiegende": "wiegend", "wieggang": "wieggang", "wieging": "wieging", "wiegt": "wiegt", "wiekdiameter": "wiekdiameter", "wieken": "wiek", "wieklengte": "wieklengt", "wiel": "wiel", "wielen": "wiel", "wielenbranche": "wielenbranch", "wielerende": "wieler", "wielerwedstrijd": "wielerwedstrijd", "wielslip": "wielslip", "wieltjes": "wieltjes", "wielwijk": "wielwijk", "wien": "wien", "wiens": "wien", "wier": "wier", "wierde": "wierd", "wierden": "wierd", "wieren": "wier", "wieringa": "wieringa", "wieringermeer": "wieringermer", "wieringerwaard": "wieringerwaard", "wierp": "wierp", "wierpen": "wierp", "wiersma": "wiersma", "wiesbaden": "wiesbad", "wij": "wij", "wijchen": "wijch", "wijd": "wijd", "wijdbeens": "wijdben", "wijdbeense": "wijdben", "wijdde": "wijd", "wijde": "wijd", "wijden": "wijd", "wijder": "wijder", "wijdere": "wijder", "wijds": "wijd", "wijdt": "wijdt", "wijdte": "wijdt", "wijers": "wijer", "wijf": "wijf", "wijffels": "wijffel", "wijk": "wijk", "wijken": "wijk", "wijkje": "wijkj", "wijkkoeling": "wijkkoel", "wijkkoelsystemen": "wijkkoelsystem", "wijkverwarming": "wijkverwarm", "wijkverwarmingsbedrijven": "wijkverwarmingsbedrijv", "wijkverwarmingsinstallaties": "wijkverwarmingsinstallaties", "wijkverwarmingsnet": "wijkverwarmingsnet", "wijkverwarmingssector": "wijkverwarmingssector", "wijkverwarmingssystemen": "wijkverwarmingssystem", "wijn": "wijn", "wijnand": "wijnand", "wijnbars": "wijnbar", "wijnberg": "wijnberg", "wijnboer": "wijnboer", "wijnboeren": "wijnboer", "wijnen": "wijn", "wijnexport": "wijnexport", "wijnexporteurs": "wijnexporteur", "wijnflessen": "wijnfless", "wijnhandel": "wijnhandel", "wijnimporteurs": "wijnimporteur", "wijnindustrie": "wijnindustrie", "wijnsaus": "wijnsaus", "wijnverkopen": "wijnverkop", "wijs": "wijs", "wijsbegeerte": "wijsbegeert", "wijsbegeertes": "wijsbegeertes", "wijsgeer": "wijsger", "wijsgerig": "wijsger", "wijsgerige": "wijsger", "wijsheid": "wijsheid", "wijst": "wijst", "wijste": "wijst", "wijster": "wijster", "wijsvinger": "wijsvinger", "wijt": "wijt", "wijten": "wijt", "wijting": "wijting", "wijven": "wijv", "wijze": "wijz", "wijzelf": "wijzelf", "wijzen": "wijz", "wijzende": "wijzend", "wijzigde": "wijzigd", "wijzigen": "wijzig", "wijziging": "wijzig", "wijzigingen": "wijzig", "wijzigings": "wijzig", "wijzigingsprocedures": "wijzigingsprocedures", "wijzigingsrichtlijn": "wijzigingsrichtlijn", "wijzigingsvergunning": "wijzigingsvergunn", "wijzigt": "wijzigt", "wikkelde": "wikkeld", "wil": "wil", "wild": "wild", "wildbeheer": "wildbeher", "wildbeheerseenheden": "wildbeheersen", "wilde": "wild", "wilden": "wild", "wildgroei": "wildgroei", "wildlife": "wildlif", "wildschade": "wildschad", "wildschadecommissie": "wildschadecommissie", "wildspoor": "wildspor", "wildtunnels": "wildtunnel", "wilduittreedplaats": "wilduittreedplat", "wildvreemde": "wildvreemd", "wildvreemden": "wildvreemd", "wildweiden": "wildweid", "wilen": "wil", "wilg": "wilg", "wilgen": "wilg", "wilgenplas": "wilgenplas", "wilhelmina": "wilhelmina", "wilhelminahaven": "wilhelminahav", "wilhelminakanaal": "wilhelminakanal", "wilhelms": "wilhelm", "wilhelmshaven": "wilhelmshav", "wilkens": "wilken", "wilkhahn": "wilkhahn", "willand": "willand", "wille": "will", "willekeur": "willekeur", "willekeurig": "willekeur", "willekeurige": "willekeur", "willem": "willem", "willemsoord": "willemsoord", "willemstad": "willemstad", "willen": "will", "willende": "willend", "willens": "willen", "willenvinden": "willenvind", "william": "william", "willigheid": "willig", "willink": "willink", "wilma": "wilma", "wilnis": "wilnis", "wilp": "wilp", "wilson": "wilson", "wilt": "wilt", "wiltink": "wiltink", "wilton": "wilton", "wim": "wim", "wimek": "wimek", "wimpelde": "wimpeld", "wimpers": "wimper", "win": "win", "winbare": "winbar", "winbedrijven": "winbedrijv", "wind": "wind", "windaanbod": "windaanbod", "windbeleid": "windbeleid", "windbewogen": "windbewog", "winden": "wind", "windenergie": "windenergie", "windenergiebeleid": "windenergiebeleid", "windenergiedagen": "windenergiedag", "windenergiedoelstelling": "windenergiedoelstell", "windenergiefaciliteit": "windenergiefaciliteit", "windenergiegebruik": "windenergiegebruik", "windenergielocaties": "windenergielocaties", "windenergielokatie": "windenergielokatie", "windenergiepark": "windenergiepark", "windenergieparken": "windenergiepark", "windenergieproducenten": "windenergieproducent", "windenergieproject": "windenergieproject", "windenergieprojecten": "windenergieproject", "windenergiesector": "windenergiesector", "windenergietage": "windenergietag", "windenergietoepassingen": "windenergietoepass", "windenergievereniging": "windenergieveren", "windenergievermogen": "windenergievermog", "windenergievoorziening": "windenergievoorzien", "windenergiewereld": "windenergiewereld", "winderige": "winder", "windermere": "windermer", "windfarmers": "windfarmer", "windgekoelde": "windgekoeld", "windindustrie": "windindustrie", "windinstallaties": "windinstallaties", "windjaar": "windjar", "windklassen": "windklass", "windklimaat": "windklimat", "windklimaatwijzigingen": "windklimaatwijz", "windkracht": "windkracht", "windkraft": "windkraft", "windlocaties": "windlocaties", "windlogger": "windlogger", "windmaster": "windmaster", "windmolen": "windmol", "windmolencoöperaties": "windmolencooperaties", "windmolenlocaties": "windmolenlocaties", "windmolenpark": "windmolenpark", "windmolenparken": "windmolenpark", "windmolenplan": "windmolenplan", "windmolenproject": "windmolenproject", "windmolenprojekten": "windmolenprojekt", "windmolens": "windmolen", "windmolentje": "windmolentj", "window": "window", "windows": "window", "windpark": "windpark", "windparken": "windpark", "windparkvermogens": "windparkvermogen", "windprogramma": "windprogramma", "windprojecten": "windproject", "windregime": "windregim", "windrekening": "windreken", "windrijke": "windrijk", "windscale": "windscal", "windscherm": "windscherm", "windshiften": "windshift", "windsituatie": "windsituatie", "windsnelheden": "windsnel", "windsnelheid": "windsnel", "windsterkte": "windsterkt", "windstil": "windstil", "windstille": "windstill", "windstilte": "windstilt", "windstreek": "windstrek", "windstroom": "windstrom", "windtechnik": "windtechnik", "windtunnels": "windtunnel", "windtunneltype": "windtunneltyp", "windturbine": "windturbin", "windturbinefabrikant": "windturbinefabrikant", "windturbinefabrikanten": "windturbinefabrikant", "windturbinepark": "windturbinepark", "windturbineparken": "windturbinepark", "windturbines": "windturbines", "windturbinetypen": "windturbinetyp", "windvanger": "windvanger", "windvermogen": "windvermog", "windvermogens": "windvermogen", "windvlaggetjes": "windvlaggetjes", "windwaaiing": "windwaai", "windzifter": "windzifter", "wingerd": "wingerd", "winkel": "winkel", "winkelaar": "winkelar", "winkelbedrijven": "winkelbedrijv", "winkelcentra": "winkelcentra", "winkelcentrum": "winkelcentrum", "winkelend": "winkel", "winkelier": "winkelier", "winkeliers": "winkelier", "winkelketens": "winkelketen", "winkelpromenades": "winkelpromenades", "winkelruimten": "winkelruimt", "winkels": "winkel", "winkelsectoren": "winkelsector", "winkelstraat": "winkelstrat", "winkelstraten": "winkelstrat", "winkelt": "winkelt", "winkra": "winkra", "winmogelijkheden": "winmog", "winnaar": "winnar", "winnaars": "winnar", "winnen": "winn", "winnende": "winnend", "winnenden": "winnend", "winning": "winning", "winningsbeleid": "winningsbeleid", "winningsconcessies": "winningsconcessies", "winningsmethoden": "winningsmethod", "winplaats": "winplat", "winplaatsen": "winplaats", "winsemius": "winsemius", "winst": "winst", "winstbelasting": "winstbelast", "winstdaling": "winstdal", "winsten": "winst", "winstgevende": "winstgev", "winstgevender": "winstgevender", "winstgevendheid": "winstgev", "winstgevenheid": "winstgev", "winstgroei": "winstgroei", "winstmarge": "winstmarg", "winstmarges": "winstmarges", "winstniveau": "winstniveau", "winston": "winston", "winstoogmerk": "winstoogmerk", "winstpunten": "winstpunt", "winststijging": "winststijg", "winstverwachting": "winstverwacht", "winstverwachtingen": "winstverwacht", "wint": "wint", "winter": "winter", "winteravond": "winteravond", "winterbed": "winterbed", "winterberging": "winterberg", "winterbomen": "winterbom", "wintergewas": "wintergewas", "winterjas": "winterjas", "winterluchten": "winterlucht", "wintermaanden": "wintermaand", "wintermachines": "wintermachines", "wintermorgen": "wintermorg", "winternacht": "winternacht", "winterperiode": "winterperiod", "winterregen": "winterreg", "winterrouw": "winterrouw", "winters": "winter", "winterse": "winter", "wintersituatie": "wintersituatie", "winterslag": "winterslag", "wintersmog": "wintersmog", "wintersmogfasen": "wintersmogfas", "wintersportplaatsen": "wintersportplaats", "wintersportsector": "wintersportsector", "winterstoken": "winterstok", "winterswijk": "winterswijk", "winterswijkse": "winterswijk", "wintertakken": "wintertak", "wintertaling": "wintertal", "wintertarwe": "wintertarw", "winterweer": "winterwer", "winterweerschijn": "winterweerschijn", "winterweg": "winterweg", "winterzonnedag": "winterzonnedag", "wintig": "wintig", "wip": "wip", "wipte": "wipt", "wirrewarrelend": "wirrewarrel", "wirtschaft": "wirtschaft", "wirtschaftlichkeit": "wirtschaftlichkeit", "wirtschaftsförderung": "wirtschaftsforderung", "wis": "wis", "wisconsin": "wisconsin", "wisgerhof": "wisgerhof", "wiskunde": "wiskund", "wiskundig": "wiskund", "wisse": "wis", "wissel": "wissel", "wisselde": "wisseld", "wisselden": "wisseld", "wisselen": "wissel", "wisselend": "wissel", "wisselende": "wissel", "wisselfrequentie": "wisselfrequentie", "wisselgeld": "wisselgeld", "wisseling": "wissel", "wisselingen": "wissel", "wissels": "wissel", "wisselspanning": "wisselspann", "wisselstroom": "wisselstrom", "wisselstroomdynamo": "wisselstroomdynamo", "wisselstroompaneel": "wisselstroompanel", "wisselstroompanelen": "wisselstroompanel", "wisselstuk": "wisselstuk", "wisselstukken": "wisselstuk", "wisselt": "wisselt", "wisselteelt": "wisselteelt", "wisselwerking": "wisselwerk", "wissen": "wiss", "wissende": "wissend", "wist": "wist", "wiste": "wist", "wisten": "wist", "wit": "wit", "witboek": "witboek", "witbrant": "witbrant", "witen": "wit", "witgoed": "witgoed", "with": "with", "witheid": "witheid", "within": "within", "witjes": "witjes", "witmaken": "witmak", "witmaker": "witmaker", "witrotschimmels": "witrotschimmel", "witschuimende": "witschuim", "witte": "wit", "witteman": "witteman", "witter": "witter", "wittere": "witter", "witteveen": "witteven", "wittevlieg": "wittevlieg", "wittig": "wittig", "wittmund": "wittmund", "witvellig": "witvell", "witven": "witv", "wiva": "wiva", "wiwa": "wiwa", "wk": "wk", "wkc": "wkc", "wkk": "wkk", "wkon": "wkon", "wladimir": "wladimir", "wlto": "wlto", "wm": "wm", "wmd": "wmd", "wmep": "wmep", "wmi": "wmi", "wmo": "wmo", "wms": "wms", "wnf": "wnf", "wocd": "wocd", "woedde": "woed", "woede": "woed", "woedend": "woedend", "woedende": "woedend", "woedt": "woedt", "woei": "woei", "woeien": "woei", "woekerde": "woekerd", "woekerden": "woekerd", "woekering": "woeker", "woekert": "woekert", "woelde": "woeld", "woelden": "woeld", "woelen": "woel", "woelige": "woelig", "woensdag": "woensdag", "woensdagmiddag": "woensdagmiddag", "woerden": "woerd", "woest": "woest", "woeste": "woest", "woestijn": "woestijn", "woestijnen": "woestijn", "woestijnfamilie": "woestijnfamilie", "woestijnvorming": "woestijnvorm", "wog": "wog", "wogen": "wog", "wol": "wol", "wolafval": "wolafval", "wold": "wold", "woldjerspoor": "woldjerspor", "wole": "wol", "wolf": "wolf", "wolff": "wolff", "wolfgang": "wolfgang", "wolfheze": "wolfhez", "wolk": "wolk", "wolken": "wolk", "wolkende": "wolkend", "wolkenland": "wolkenland", "wolkenluchten": "wolkenlucht", "wolkennacht": "wolkennacht", "wolkenrijk": "wolkenrijk", "wolkgevaarten": "wolkgevaart", "wolkige": "wolkig", "wolkigheid": "wolkig", "wolkje": "wolkj", "wolkjes": "wolkjes", "wolklanden": "wolkland", "wolkleven": "wolklev", "wolkluchten": "wolklucht", "wolkte": "wolkt", "wolkten": "wolkt", "wolkuitspansel": "wolkuitspansel", "wollen": "woll", "wolligheid": "wollig", "wolmanzout": "wolmanzout", "wolmanzouten": "wolmanzout", "wolter": "wolter", "wolterbeek": "wolterbek", "wolters": "wolter", "woltersum": "woltersum", "wolvega": "wolvega", "wolvlies": "wolvlies", "wolwasserijen": "wolwasserij", "won": "won", "wond": "wond", "wonder": "wonder", "wonderen": "wonder", "wondering": "wonder", "wonderlijk": "wonder", "wonen": "won", "wonende": "wonend", "woning": "woning", "woningbouw": "woningbouw", "woningbouwlocatie": "woningbouwlocatie", "woningbouwlocaties": "woningbouwlocaties", "woningbouwplan": "woningbouwplan", "woningbouwplannen": "woningbouwplann", "woningbouwproject": "woningbouwproject", "woningbouwprojecten": "woningbouwproject", "woningbouwstichting": "woningbouwsticht", "woningbouwtaakstelling": "woningbouwtaakstell", "woningbouwverenigingen": "woningbouwveren", "woningcorporatie": "woningcorporatie", "woningcorporaties": "woningcorporaties", "woningdichtheden": "woningdicht", "woningeigenaar": "woningeigenar", "woningeigenaren": "woningeigenar", "woningen": "woning", "woninggebied": "woninggebied", "woninggids": "woninggid", "woningisolatie": "woningisolatie", "woningmarkt": "woningmarkt", "woningnood": "woningnod", "woningraad": "woningrad", "woningstichting": "woningsticht", "woningtype": "woningtyp", "woningtypen": "woningtyp", "woningvoorraad": "woningvoorrad", "woningwet": "woningwet", "wonnen": "wonn", "wood": "wod", "woog": "wog", "woon": "won", "woonbebouwing": "woonbebouw", "woonbond": "woonbond", "woonbootbewoners": "woonbootbewoner", "woonbouwplannen": "woonbouwplann", "wooncentra": "wooncentra", "woonconsumenten": "woonconsument", "woonde": "woond", "woonden": "woond", "woonerf": "woonerf", "woongebied": "woongebied", "woongebieden": "woongebied", "woonhuizen": "woonhuiz", "woonkern": "woonkern", "woonkernen": "woonkern", "woonklimaat": "woonklimat", "woonkwaliteit": "woonkwaliteit", "woonlasten": "woonlast", "woonlocaties": "woonlocaties", "woonplaats": "woonplat", "woont": "woont", "woonthema": "woonthema", "woonwagencentrum": "woonwagencentrum", "woonwijk": "woonwijk", "woonwijken": "woonwijk", "woonwijzer": "woonwijzer", "woord": "woord", "woordelijk": "woordelijk", "woordeloos": "woordelos", "woorden": "woord", "woordenloos": "woordenlos", "woordenstrijd": "woordenstrijd", "woordenwisseling": "woordenwissel", "woordgegons": "woordgegon", "woordje": "woordj", "woordjes": "woordjes", "woordloze": "woordloz", "woordvoeder": "woordvoeder", "woordvoerder": "woordvoerder", "woordvoerders": "woordvoerder", "woordvoerster": "woordvoerster", "woordweinige": "woordwein", "word": "word", "wórd": "word", "worden": "word", "wòrden": "wòrden", "wordend": "wordend", "wordende": "wordend", "wordingen": "wording", "wordt": "wordt", "wöretshofer": "woretshofer", "worgde": "worgd", "worgen": "worg", "work": "work", "working": "working", "works": "work", "workshop": "workshop", "workshops": "workshop", "world": "world", "worldaccess": "worldacces", "worldbank": "worldbank", "worldwatch": "worldwatch", "worldwood": "worldwod", "worm": "worm", "wormgebeeste": "wormgebeest", "wormpers": "wormper", "worms": "worm", "wormwiel": "wormwiel", "wormwielzuiger": "wormwielzuiger", "wormziekte": "wormziekt", "worstelaar": "worstelar", "worstelden": "worsteld", "worsteling": "worstel", "wort": "wort", "wortelactiviteit": "wortelactiviteit", "wortelboer": "wortelboer", "wortelde": "worteld", "wortelgroei": "wortelgroei", "wortelkluit": "wortelkluit", "wortelplanten": "wortelplant", "wortelresistentie": "wortelresistentie", "wortels": "wortel", "wortelstelsels": "wortelstelsel", "wortelzone": "wortelzon", "wortman": "wortman", "wot": "wot", "wotans": "wotan", "wou": "wou", "woud": "woud", "wouden": "woud", "woudenweemoed": "woudenweemoed", "woudloper": "woudloper", "wouter": "wouter", "wouters": "wouter", "wouwse": "wouw", "wp": "wp", "wpiek": "wpiek", "wpz": "wpz", "wraak": "wrak", "wraakactie": "wraakactie", "wraakzuchtige": "wraakzucht", "wrak": "wrak", "wrakken": "wrak", "wrc": "wrc", "wrede": "wred", "wreder": "wreder", "wreed": "wred", "wrèed": "wrèed", "wreedaards": "wreedaard", "wreedheden": "wreedheid", "wreedheid": "wreedheid", "wreeds": "wred", "wreef": "wref", "wrevel": "wrevel", "wri": "wri", "wriemelen": "wriemel", "wriemelend": "wriemel", "wriemelende": "wriemel", "wriemelt": "wriemelt", "wrijfstijlen": "wrijfstijl", "wrijvende": "wrijvend", "wrijving": "wrijving", "wrijvingen": "wrijving", "wrijvingselektriciteit": "wrijvingselektriciteit", "wringelde": "wringeld", "wringelen": "wringel", "wringelende": "wringel", "wringen": "wring", "wringend": "wringend", "wringende": "wringend", "wroeging": "wroeging", "wroetende": "wroetend", "wroette": "wroet", "wroetten": "wroet", "wrok": "wrok", "wrokken": "wrok", "wrokkende": "wrokkend", "wrokte": "wrokt", "wrong": "wrong", "wrr": "wrr", "wsa": "wsa", "wsv": "wsv", "wto": "wto", "wubben": "wubb", "wufte": "wuft", "wuftheid": "wuftheid", "wuifde": "wuifd", "wuiven": "wuiv", "wuivende": "wuivend", "wulff": "wulff", "wunderland": "wunderland", "wuppertalinstituut": "wuppertalinstitut", "wurf": "wurf", "wurfix": "wurfix", "wurgslangen": "wurgslang", "wurm": "wurm", "wutha": "wutha", "wvk": "wvk", "wvo": "wvo", "wwf": "wwf", "wwh": "wwh", "www": "www", "wyers": "wyer", "wytze": "wytz", "wzho": "wzho", "x": "x", "xanthobacter": "xanthobacter", "xerox": "xerox", "xi": "xi", "xii": "xii", "xiii": "xiii", "xinhua": "xinhua", "xiv": "xiv", "xix": "xix", "xk": "xk", "xs": "xs", "xto": "xto", "xv": "xv", "xvi": "xvi", "xvii": "xvii", "xviii": "xviii", "xx": "xx", "xxi": "xxi", "xyleen": "xylen", "xylenen": "xylen", "y": "y", "yamaki": "yamaki", "yang": "yang", "yangming": "yangming", "ydema": "ydema", "year": "year", "yen": "yen", "yerseke": "yersek", "yersey": "yersey", "ykstra": "ykstra", "yoghurtbekertjes": "yoghurtbekertjes", "york": "york", "yorkshire": "yorkshir", "yosu": "yosu", "yours": "your", "ype": "ype", "ysselstein": "ysselstein", "ysselsteyn": "ysselsteyn", "ytsen": "ytsen", "yunnan": "yunnan", "yves": "yves", "z": "z", "zaad": "zad", "zaadbalkanker": "zaadbalkanker", "zaadbedrijf": "zaadbedrijf", "zaadval": "zaadval", "zaagmachine": "zaagmachin", "zaagmeel": "zaagmel", "zaagmolenlaan": "zaagmolenlan", "zaaien": "zaai", "zaait": "zaait", "zaak": "zak", "zaakgelastigde": "zaakgelastigd", "zaal": "zal", "zaâl": "zaâl", "zaaltjes": "zaaltjes", "zaanstad": "zaanstad", "zaanstreek": "zaanstrek", "zacharasse": "zacharas", "zachariasse": "zacharias", "zacht": "zacht", "zachtbruine": "zachtbruin", "zachte": "zacht", "zachter": "zachter", "zachtere": "zachter", "zachters": "zachter", "zachtes": "zachtes", "zachtheid": "zachtheid", "zachthout": "zachthout", "zachthoutvezels": "zachthoutvezel", "zachtjes": "zachtjes", "zachtjesblasé": "zachtjesblas", "zachtmoedig": "zachtmoed", "zachtroze": "zachtroz", "zachts": "zacht", "zadel": "zadel", "zadelrobben": "zadelrobb", "zaden": "zad", "zag": "zag", "zagen": "zag", "zaïrese": "zaires", "zak": "zak", "zakboekje": "zakboekj", "zakdoek": "zakdoek", "zakdoeken": "zakdoek", "zake": "zak", "zakedebat": "zakedebat", "zakelijk": "zakelijk", "zakelijke": "zakelijk", "zakelijker": "zakelijker", "zaken": "zak", "zakenleven": "zakenlev", "zakenman": "zakenman", "zakenmissie": "zakenmissie", "zakgeld": "zakgeld", "zakjes": "zakjes", "zakken": "zak", "zakt": "zakt", "zakte": "zakt", "zakten": "zakt", "zal": "zal", "zalen": "zal", "zalig": "zalig", "zaligdiepe": "zaligdiep", "zalige": "zalig", "zaligen": "zalig", "zaligheden": "zalig", "zaligheid": "zalig", "zalm": "zalm", "zalmproducent": "zalmproducent", "zaltbommel": "zaltbommel", "zalving": "zalving", "zamelen": "zamel", "zamelt": "zamelt", "zamen": "zam", "zand": "zand", "zandafscheiding": "zandafscheid", "zandbank": "zandbank", "zandbentoniet": "zandbentoniet", "zandbentonietlaag": "zandbentonietlag", "zandblankheid": "zandblank", "zandbodem": "zandbodem", "zanderige": "zander", "zandgebieden": "zandgebied", "zandgezeef": "zandgezef", "zandgrond": "zandgrond", "zandgronden": "zandgrond", "zandhagedis": "zandhagedis", "zandig": "zandig", "zandige": "zandig", "zandkorrels": "zandkorrel", "zandkust": "zandkust", "zandlaag": "zandlag", "zandlading": "zandlad", "zandlichaam": "zandlicham", "zandlichamen": "zandlicham", "zandmaas": "zandmas", "zandmaasproject": "zandmaasproject", "zandopspuitingen": "zandopspuit", "zandoverslag": "zandoverslag", "zandplaat": "zandplat", "zandplek": "zandplek", "zandscheidings": "zandscheid", "zandslibmengsel": "zandslibmengsel", "zandsuppletie": "zandsuppletie", "zandsuppleties": "zandsuppleties", "zandtekort": "zandtekort", "zandvoort": "zandvoort", "zandwallen": "zandwall", "zandwasser": "zandwasser", "zandwegen": "zandweg", "zandwinbedrijven": "zandwinbedrijv", "zandwinners": "zandwinner", "zandwinning": "zandwinn", "zandwinningsbedrijf": "zandwinningsbedrijf", "zandwinningsbedrijven": "zandwinningsbedrijv", "zang": "zang", "zangeres": "zangeres", "zangerig": "zanger", "zanik": "zanik", "zaniken": "zanik", "zanikerig": "zaniker", "zanikerigjes": "zanikerigjes", "zanikte": "zanikt", "zantingh": "zantingh", "zaporoshye": "zaporoshye", "zapt": "zapt", "zat": "zat", "zaten": "zat", "zaterdag": "zaterdag", "zaterdageditie": "zaterdageditie", "zaterdagmiddag": "zaterdagmiddag", "zaterdagnacht": "zaterdagnacht", "zaterdags": "zaterdag", "zavod": "zavod", "ze": "ze", "zé": "ze", "zealand": "zealand", "zeddam": "zeddam", "zedelijk": "zedelijk", "zeden": "zed", "zederik": "zederik", "zee": "zee", "zeeafzettingen": "zeeafzet", "zeearend": "zeearend", "zeearm": "zeearm", "zeebodem": "zeebodem", "zeebodemonderzoek": "zeebodemonderzoek", "zeebrugge": "zeebrugg", "zeeburg": "zeeburg", "zeeburgereiland": "zeeburgereiland", "zeedieren": "zeedier", "zeedijk": "zeedijk", "zeeën": "zeeen", "zeef": "zef", "zeefde": "zeefd", "zeefden": "zeefd", "zeefdrukindustrie": "zeefdrukindustrie", "zeefeenheid": "zeefen", "zeeforel": "zeeforel", "zeefschermen": "zeefscherm", "zeefwisselsysteem": "zeefwisselsystem", "zeefzand": "zeefzand", "zeefzandhoudend": "zeefzandhoud", "zeegat": "zeegat", "zeegebied": "zeegebied", "zeegemaal": "zeegemal", "zeegolven": "zeegolv", "zeehaven": "zeehav", "zeehavens": "zeehaven", "zeehond": "zeehond", "zeehonden": "zeehond", "zeehondencrèche": "zeehondencrèch", "zeehondendeskundigen": "zeehondendeskund", "zeehondenjagers": "zeehondenjager", "zeehondenkolonie": "zeehondenkolonie", "zeehondje": "zeehondj", "zeekoeten": "zeekoet", "zeekreeft": "zeekreeft", "zeekust": "zeekust", "zeeland": "zeeland", "zeelandse": "zeeland", "zeeleven": "zeelev", "zeelui": "zeelui", "zeeman": "zeeman", "zeemanachtige": "zeemanacht", "zeemijl": "zeemijl", "zeemijlen": "zeemijl", "zeemilieu": "zeemilieu", "zeeniveau": "zeeniveau", "zeeofficier": "zeeofficier", "zeep": "zep", "zeepfabrikanten": "zeepfabrikant", "zeepokken": "zeepok", "zeepost": "zeepost", "zeer": "zer", "zeereep": "zeerep", "zeerst": "zeerst", "zeeschepen": "zeeschep", "zeeschip": "zeeschip", "zeesla": "zeesla", "zeespiegel": "zeespiegel", "zeespiegelstijging": "zeespiegelstijg", "zeesterren": "zeesterr", "zeetankers": "zeetanker", "zeeuw": "zeeuw", "zeeuwen": "zeeuw", "zeeuws": "zeeuw", "zeeuwse": "zeeuw", "zeevis": "zeevis", "zeevogelgroep": "zeevogelgroep", "zeevogels": "zeevogel", "zeewaarts": "zeewaart", "zeewater": "zeewater", "zeewaterdruppeltjes": "zeewaterdruppeltjes", "zeewaterspiegel": "zeewaterspiegel", "zeewatertemperatuur": "zeewatertemperatur", "zeewaterwasser": "zeewaterwasser", "zeeweringeisen": "zeeweringeis", "zeewier": "zeewier", "zeewolde": "zeewold", "zeezand": "zeezand", "zeezandgronden": "zeezandgrond", "zeezijde": "zeezijd", "zeezoogdieren": "zeezoogdier", "zeg": "zeg", "zég": "zeg", "zèg": "zèg", "zegbaar": "zegbar", "zegel": "zegel", "zegen": "zeg", "zegevierde": "zegevierd", "zegevierden": "zegevierd", "zegevierend": "zegevier", "zeggen": "zegg", "zèggen": "zègg", "zeggend": "zeggend", "zeggende": "zeggend", "zeggenschap": "zeggenschap", "zegsman": "zegsman", "zegswijzen": "zegswijz", "zegt": "zegt", "zegveld": "zegveld", "zegwaard": "zegwaard", "zei": "zei", "zeide": "zeid", "zeiden": "zeid", "zeifzekerheid": "zeifzeker", "zeil": "zeil", "zeildoeken": "zeildoek", "zeilen": "zeil", "zeiljacht": "zeiljacht", "zeilmaker": "zeilmaker", "zeilmakerij": "zeilmakerij", "zeilschip": "zeilschip", "zeilsport": "zeilsport", "zeiss": "zeis", "zeist": "zeist", "zeister": "zeister", "zeker": "zeker", "zéker": "zeker", "zekerders": "zekerder", "zekere": "zeker", "zekerheden": "zeker", "zekerheid": "zeker", "zekerheidsstelling": "zekerheidsstell", "zekerheidswaarde": "zekerheidswaard", "zekers": "zeker", "zelden": "zeld", "zeldzaam": "zeldzam", "zeldzame": "zeldzam", "zelf": "zelf", "zèlf": "zèlf", "zelfbedrijven": "zelfbedrijv", "zelfbedrog": "zelfbedrog", "zelfbedwang": "zelfbedwang", "zelfbegoocheling": "zelfbegoochel", "zelfbeheersing": "zelfbeheers", "zelfbekentenis": "zelfbekentenis", "zelfbestuur": "zelfbestur", "zelfbeveiliging": "zelfbeveil", "zelfbewust": "zelfbewust", "zelfbewustheid": "zelfbewust", "zelfde": "zelfd", "zelfdood": "zelfdod", "zelfgekozen": "zelfgekoz", "zelfherstellende": "zelfherstell", "zelfhoogte": "zelfhoogt", "zelflossende": "zelfloss", "zelfmoord": "zelfmoord", "zelfontevredenheid": "zelfontevred", "zelfonvoldaanheden": "zelfonvoldan", "zelfonvoldaanheid": "zelfonvoldan", "zelfopvoeding": "zelfopvoed", "zelfpersende": "zelfpers", "zelfregulering": "zelfreguler", "zelfreinigende": "zelfrein", "zelfresonerende": "zelfresoner", "zelfrijdende": "zelfrijd", "zelfs": "zelf", "zelfsbeheersing": "zelfsbeheers", "zelfstandig": "zelfstand", "zelfstandige": "zelfstand", "zelfstandigenaftrek": "zelfstandigenaftrek", "zelftrekkend": "zelftrek", "zelfverheerlijking": "zelfverheerlijk", "zelfverwijt": "zelfverwijt", "zelfvoldaan": "zelfvoldan", "zelfvoorzienend": "zelfvoorzien", "zelfvoorziening": "zelfvoorzien", "zelfvoorzieningsbeginsel": "zelfvoorzieningsbeginsel", "zelfvraag": "zelfvrag", "zelfwegen": "zelfweg", "zelfwelwillende": "zelfwelwill", "zelfwelwillendheid": "zelfwelwill", "zelfwerkzaamheid": "zelfwerkzam", "zelfweten": "zelfwet", "zelfzekerheid": "zelfzeker", "zelhem": "zelhem", "zelve": "zelv", "zelvers": "zelver", "zelzate": "zelzat", "zema": "zema", "zen": "zen", "zend": "zend", "zenden": "zend", "zendende": "zendend", "zender": "zender", "zenderen": "zender", "zenderpark": "zenderpark", "zenders": "zender", "zendertje": "zendertj", "zendertjes": "zendertjes", "zending": "zending", "zendingen": "zending", "zendt": "zendt", "zeneca": "zeneca", "zennewijnen": "zennewijn", "zenuw": "zenuw", "zenuwachtig": "zenuwacht", "zenuwachtige": "zenuwacht", "zenuwachtiger": "zenuwachtiger", "zenuwachtigheid": "zenuwacht", "zenuwbuien": "zenuwbui", "zenuwcrisis": "zenuwcrisis", "zenuwen": "zenuw", "zenuwkreten": "zenuwkret", "zenuwleven": "zenuwlev", "zenuwlijden": "zenuwlijd", "zenuwlijders": "zenuwlijder", "zenuwpatiënten": "zenuwpatient", "zenuwsnelle": "zenuwsnell", "zenuwsnik": "zenuwsnik", "zenuwsnikbui": "zenuwsnikbui", "zenuwsnikken": "zenuwsnik", "zenuwsnikkend": "zenuwsnik", "zenuwsnikte": "zenuwsnikt", "zenuwspecialist": "zenuwspecialist", "zenuwspecialiteit": "zenuwspecialiteit", "zenuwstelsel": "zenuwstelsel", "zenuwstoornis": "zenuwstoornis", "zenuwtoeval": "zenuwtoeval", "zenuwtrillende": "zenuwtrill", "zenuwtrilling": "zenuwtrill", "zenuwzieke": "zenuwziek", "zeoliet": "zeoliet", "zeolieten": "zeoliet", "zeolietkatalysator": "zeolietkatalysator", "zeolites": "zeolites", "zeppelins": "zeppelin", "zerdiratoren": "zerdirator", "zero": "zero", "zes": "zes", "zesde": "zesd", "zesduizend": "zesduiz", "zesennegentig": "zesennegent", "zesentwintig": "zesentwint", "zeshonderd": "zeshonderd", "zessen": "zess", "zessporig": "zesspor", "zessporigheid": "zesspor", "zestal": "zestal", "zestien": "zestien", "zestienhoven": "zestienhov", "zestig": "zestig", "zestiger": "zestiger", "zet": "zet", "zetel": "zetel", "zetmeel": "zetmel", "zetmeelbron": "zetmeelbron", "zetmeelderivaten": "zetmeelderivat", "zetmeelplastic": "zetmeelplastic", "zetmeelplastics": "zetmeelplastic", "zette": "zet", "zetten": "zet", "zettende": "zettend", "zettingsgevoelig": "zettingsgevoel", "zeugen": "zeug", "zeugenhouder": "zeugenhouder", "zeulden": "zeuld", "zeurde": "zeurd", "zeurden": "zeurd", "zeuren": "zeur", "zeuring": "zeuring", "zeurstem": "zeurstem", "zeven": "zev", "zevenbergen": "zevenberg", "zevende": "zevend", "zevenduizend": "zevenduiz", "zevenen": "zeven", "zevenendertig": "zevenendert", "zevenhonderd": "zevenhonderd", "zevenhuizen": "zevenhuiz", "zeventien": "zeventien", "zeventig": "zevent", "zhang": "zhang", "zhm": "zhm", "zich": "zich", "zichbaar": "zichbar", "zicht": "zicht", "zichtbaar": "zichtbar", "zichtbare": "zichtbar", "zichte": "zicht", "zichzelf": "zichzelf", "zichzelve": "zichzelv", "zie": "zie", "ziè": "ziè", "ziedde": "zied", "ziedelde": "ziedeld", "zieden": "zied", "ziedend": "ziedend", "ziedende": "ziedend", "ziehier": "ziehier", "ziek": "ziek", "ziekbed": "ziekbed", "zieke": "ziek", "ziekelijk": "ziekelijk", "ziekelijke": "ziekelijk", "ziekelijkheid": "ziekelijk", "ziekelijkjes": "ziekelijkjes", "zieken": "ziek", "ziekende": "ziekend", "ziekenhuis": "ziekenhuis", "ziekenhuisafval": "ziekenhuisafval", "ziekenhuisopnamen": "ziekenhuisopnam", "ziekenhuizen": "ziekenhuiz", "zieker": "zieker", "ziekte": "ziekt", "ziektebestrijding": "ziektebestrijd", "ziektegeval": "ziektegeval", "ziektegevoeligheid": "ziektegevoel", "ziektekiemen": "ziektekiem", "ziekten": "ziekt", "ziekteprobleem": "ziekteproblem", "ziektes": "ziektes", "ziekteverwekkende": "ziekteverwek", "ziekteverwekkers": "ziekteverwekker", "ziekteverzuim": "ziekteverzuim", "ziektevrij": "ziektevrij", "ziel": "ziel", "zielatoom": "zielatom", "zielatoompje": "zielatoompj", "ziele": "ziel", "zieleblik": "zieleblik", "zieledingen": "zieled", "zielemachten": "zielemacht", "zielen": "ziel", "zielenschimmen": "zielenschimm", "zieleschim": "zieleschim", "zielesmartelijk": "zielesmart", "zielevingers": "zielevinger", "zielig": "zielig", "zielloos": "ziellos", "ziels": "ziel", "zielsbegoocheling": "zielsbegoochel", "zielsgezicht": "zielsgezicht", "zielsleven": "zielslev", "zielslief": "zielslief", "zielstoestand": "zielstoestand", "zielsverwant": "zielsverwant", "zielsziek": "zielsziek", "zieltje": "zieltj", "zieltogende": "zieltog", "zien": "zien", "zién": "zien", "ziende": "ziend", "ziet": "ziet", "zigzaggende": "zigzagg", "zij": "zij", "zijbelading": "zijbelad", "zijde": "zijd", "zijden": "zijd", "zijdeveld": "zijdeveld", "zijgt": "zijgt", "zijkamer": "zijkamer", "zijkamertje": "zijkamertj", "zijkanten": "zijkant", "zijl": "zijl", "zijladers": "zijlader", "zijlstra": "zijlstra", "zijn": "zijn", "zijnde": "zijnd", "zijne": "zijn", "zijnen": "zijn", "zijner": "zijner", "zijns": "zijn", "zijpad": "zijpad", "zijpendaalseweg": "zijpendaalseweg", "zijriviertje": "zijriviertj", "zijstraat": "zijstrat", "zijt": "zijt", "zijweg": "zijweg", "zijzelf": "zijzelf", "zijzelve": "zijzelv", "zikkamer": "zikkamer", "zilt": "zilt", "zilte": "zilt", "ziltgeurige": "ziltgeur", "zilver": "zilver", "zilveren": "zilver", "zilvergrijs": "zilvergrijs", "zilvergrijze": "zilvergrijz", "zilverkast": "zilverkast", "zilvernitraat": "zilvernitrat", "zilversolderen": "zilversolder", "zimbabwaanse": "zimbabwan", "zin": "zin", "zindelijk": "zindelijk", "zindelijker": "zindelijker", "zindelijkheid": "zindelijk", "zingen": "zing", "zink": "zink", "zinkafval": "zinkafval", "zinkcassette": "zinkcasset", "zinken": "zink", "zinkende": "zinkend", "zinkerts": "zinkert", "zinkfabriek": "zinkfabriek", "zinkfabrieken": "zinkfabriek", "zinkgehalte": "zinkgehalt", "zinkionen": "zinkion", "zinklaag": "zinklag", "zinkmetaal": "zinkmetal", "zinkplaten": "zinkplat", "zinkproducerende": "zinkproducer", "zinkt": "zinkt", "zinkverwijdering": "zinkverwijder", "zinkwitfabriek": "zinkwitfabriek", "zinnelijk": "zinnelijk", "zinnelijkheid": "zinnelijk", "zinnen": "zinn", "zinnetjes": "zinnetjes", "zinnevlam": "zinnevlam", "zinnige": "zinnig", "zinsbegoochelde": "zinsbegoocheld", "zinsbegoocheling": "zinsbegoochel", "zinsnede": "zinsned", "zinspeelde": "zinspeeld", "zinvol": "zinvol", "zinvolle": "zinvoll", "zinzieke": "zinziek", "zirconiumoxyde": "zirconiumoxyd", "zirconiumsilicaat": "zirconiumsilicat", "zirkoonoxyde": "zirkoonoxyd", "zit": "zit", "zitbanken": "zitbank", "zitkamer": "zitkamer", "zitten": "zit", "zittende": "zittend", "zitting": "zitting", "zjores": "zjores", "zmo": "zmo", "zo": "zo", "zó": "zo", "zò": "zò", "zoab": "zoab", "zoabclean": "zoabclean", "zoabreinigers": "zoabreiniger", "zoal": "zoal", "zoals": "zoal", "zocht": "zocht", "zochten": "zocht", "zodanig": "zodan", "zodanige": "zodan", "zodat": "zodat", "zodebemester": "zodebemester", "zodoende": "zodoend", "zodra": "zodra", "zoek": "zoek", "zoeken": "zoek", "zoekend": "zoekend", "zoekende": "zoekend", "zoekends": "zoekend", "zoeker": "zoeker", "zoeking": "zoeking", "zoekmogelijkheden": "zoekmog", "zoekt": "zoekt", "zoel": "zoel", "zoele": "zoel", "zoelen": "zoel", "zoeler": "zoeler", "zoeligheden": "zoelig", "zoemende": "zoemend", "zoen": "zoen", "zoende": "zoend", "zoenen": "zoen", "zoenlach": "zoenlach", "zoentjes": "zoentjes", "zoest": "zoest", "zoet": "zoet", "zoetbitter": "zoetbitter", "zoete": "zoet", "zoeteman": "zoeteman", "zoetermeer": "zoetermer", "zoethoudertje": "zoethoudertj", "zoetwarenproducent": "zoetwarenproducent", "zoetwater": "zoetwater", "zoetwaterbassin": "zoetwaterbassin", "zoetwaterbeheer": "zoetwaterbeher", "zoetwaterbellen": "zoetwaterbell", "zoetwateromgevingen": "zoetwateromgev", "zoetwatervis": "zoetwatervis", "zoëven": "zoev", "zogeheten": "zogehet", "zogenaamd": "zogenaamd", "zogenaamde": "zogenaamd", "zogenoemd": "zogenoemd", "zogenoemde": "zogenoemd", "zola": "zola", "zolang": "zolang", "zolder": "zolder", "zoldering": "zolder", "zolderingen": "zolder", "zolderkamers": "zolderkamer", "zolderverdieping": "zolderverdiep", "zolen": "zol", "zolenindrukken": "zolenindruk", "zöller": "zoller", "zomer": "zomer", "zomerblauw": "zomerblauw", "zomercongres": "zomercongres", "zomerdaad": "zomerdad", "zomerdag": "zomerdag", "zomerdagen": "zomerdag", "zomerde": "zomerd", "zomerdijk": "zomerdijk", "zomerdiner": "zomerdiner", "zomerende": "zomer", "zomergloed": "zomergloed", "zomerhemel": "zomerhemel", "zomerhuizen": "zomerhuiz", "zomering": "zomer", "zomerlanen": "zomerlan", "zomerleven": "zomerlev", "zomerlucht": "zomerlucht", "zomermaanden": "zomermaand", "zomermorgen": "zomermorg", "zomernacht": "zomernacht", "zomeronweer": "zomeronwer", "zomerreces": "zomerreces", "zomers": "zomer", "zomersmog": "zomersmog", "zomertortel": "zomertortel", "zomeruur": "zomerur", "zomerverblijf": "zomerverblijf", "zomerverblijven": "zomerverblijv", "zomerwadem": "zomerwadem", "zomerwolken": "zomerwolk", "zomerzwoelte": "zomerzwoelt", "zompige": "zompig", "zon": "zon", "zonaanbod": "zonaanbod", "zonbijdrage": "zonbijdrag", "zond": "zond", "zondag": "zondag", "zondagavond": "zondagavond", "zondagavonden": "zondagavond", "zondagen": "zondag", "zondagmiddag": "zondagmiddag", "zondags": "zondag", "zondagsavonds": "zondagsavond", "zondagse": "zondag", "zondagsmensen": "zondagsmens", "zondagsmorgens": "zondagsmorgen", "zonde": "zond", "zonden": "zond", "zonder": "zonder", "zonderen": "zonder", "zonderling": "zonderl", "zonderlinge": "zonderl", "zondig": "zondig", "zondoorstraald": "zondoorstraald", "zondvloed": "zondvloed", "zone": "zon", "zonen": "zon", "zones": "zones", "zong": "zong", "zongen": "zong", "zongericht": "zongericht", "zoninval": "zoninval", "zonk": "zonk", "zonken": "zonk", "zonlicht": "zonlicht", "zonlichte": "zonlicht", "zonne": "zonn", "zonnebanken": "zonnebank", "zonnebloemolie": "zonnebloemolie", "zonneboiler": "zonneboiler", "zonneboilercombi": "zonneboilercombi", "zonneboilerfabrikanten": "zonneboilerfabrikant", "zonneboilers": "zonneboiler", "zonneboilersysteem": "zonneboilersystem", "zonnebranche": "zonnebranch", "zonnecel": "zonnecel", "zonnecellen": "zonnecell", "zonnecellenbedrijf": "zonnecellenbedrijf", "zonnecelonderzoek": "zonnecelonderzoek", "zonnecelpanelen": "zonnecelpanel", "zonneceltechnieken": "zonneceltechniek", "zonnecentrales": "zonnecentrales", "zonnecollector": "zonnecollector", "zonnecollectoren": "zonnecollector", "zonnecrème": "zonnecrèm", "zonnedag": "zonnedag", "zonnedauw": "zonnedauw", "zonnedorpen": "zonnedorp", "zonneënergie": "zonneenergie", "zonnegascombi": "zonnegascombi", "zonneglanzingen": "zonneglanz", "zonnelampen": "zonnelamp", "zonnelantaarns": "zonnelantaarn", "zonnelicht": "zonnelicht", "zonnemethode": "zonnemethod", "zonnemodule": "zonnemodul", "zonnemodules": "zonnemodules", "zonnemuren": "zonnemur", "zonnen": "zonn", "zonnepaneel": "zonnepanel", "zonnepanelen": "zonnepanel", "zonnereactor": "zonnereactor", "zonneschijf": "zonneschijf", "zonneschijn": "zonneschijn", "zonnespiegels": "zonnespiegel", "zonnestoffige": "zonnestoff", "zonnestraalden": "zonnestraald", "zonnestralen": "zonnestral", "zonnestraling": "zonnestral", "zonnestroom": "zonnestrom", "zonneveld": "zonneveld", "zonnewasdroger": "zonnewasdroger", "zonnewoningen": "zonnewon", "zonnezeil": "zonnezeil", "zonnig": "zonnig", "zonnige": "zonnig", "zonnigheid": "zonnig", "zonnigs": "zonnig", "zonodig": "zonod", "zonwering": "zonwer", "zoogdieren": "zoogdier", "zooitje": "zooitj", "zool": "zol", "zoom": "zom", "zoon": "zon", "zoons": "zon", "zorg": "zorg", "zorgde": "zorgd", "zorgden": "zorgd", "zorgdragen": "zorgdrag", "zorgelementen": "zorgelement", "zorgeloosheid": "zorgelos", "zorgen": "zorg", "zorgende": "zorgend", "zorginstellingen": "zorginstell", "zorgplicht": "zorgplicht", "zorgplichtartikel": "zorgplichtartikel", "zorgsector": "zorgsector", "zorgsysteem": "zorgsystem", "zorgsystemen": "zorgsystem", "zorgt": "zorgt", "zorgvuldig": "zorgvuld", "zorgvuldige": "zorgvuld", "zorgvuldiger": "zorgvuldiger", "zorgwekkend": "zorgwek", "zorgzaamheid": "zorgzam", "zoro": "zoro", "zosen": "zos", "zotteklap": "zotteklap", "zou": "zou", "zouden": "zoud", "zoùden": "zoùd", "zoudt": "zoudt", "zout": "zout", "zoute": "zout", "zouten": "zout", "zouter": "zouter", "zoutfabriek": "zoutfabriek", "zoutgehalte": "zoutgehalt", "zoutkoepels": "zoutkoepel", "zoutmijn": "zoutmijn", "zoutproduktie": "zoutproduktie", "zoutwater": "zoutwater", "zoutwaterbassin": "zoutwaterbassin", "zoutwatervis": "zoutwatervis", "zoutwatervissen": "zoutwaterviss", "zoutwinning": "zoutwinn", "zoutzuur": "zoutzur", "zoutzuurafval": "zoutzuurafval", "zoutzuurverspilling": "zoutzuurverspill", "zoutzuurvervuiling": "zoutzuurvervuil", "zoveel": "zovel", "zóveel": "zovel", "zovéel": "zovel", "zoveelste": "zoveelst", "zovele": "zovel", "zovelen": "zovel", "zover": "zover", "zoverre": "zoverr", "zowat": "zowat", "zowel": "zowel", "zozeer": "zozer", "zucht": "zucht", "zuchten": "zucht", "zuchtende": "zuchtend", "zuchtte": "zucht", "zuid": "zuid", "zuidafrikaanse": "zuidafrikan", "zuidafrikanen": "zuidafrikan", "zuidaziatische": "zuidaziatisch", "zuidelijk": "zuidelijk", "zuidelijke": "zuidelijk", "zuidelijker": "zuidelijker", "zuiden": "zuid", "zuidermeerdijk": "zuidermeerdijk", "zuiderpolderschool": "zuiderpolderschol", "zuidflank": "zuidflank", "zuidhessische": "zuidhessisch", "zuidhollands": "zuidholland", "zuidhollandse": "zuidholland", "zuiditaliaanse": "zuiditaliaan", "zuidkant": "zuidkant", "zuidkoreaanse": "zuidkoreaan", "zuidlaardermeer": "zuidlaardermer", "zuidlimburgers": "zuidlimburger", "zuidlimburgse": "zuidlimburg", "zuidnederlandse": "zuidnederland", "zuidoekraïnse": "zuidoekrain", "zuidoost": "zuidoost", "zuidoosten": "zuidoost", "zuidpoldercomplex": "zuidpoldercomplex", "zuidpool": "zuidpol", "zuidwest": "zuidwest", "zuidwestelijke": "zuidwest", "zuidwesten": "zuidwest", "zuidwesthoek": "zuidwesthoek", "zuidzee": "zuidzee", "zuidzijde": "zuidzijd", "zuig": "zuig", "zuigen": "zuig", "zuiger": "zuiger", "zuigmachine": "zuigmachin", "zuigt": "zuigt", "zuigwormen": "zuigworm", "zuil": "zuil", "zuinig": "zuinig", "zuinige": "zuinig", "zuiniger": "zuiniger", "zuinigere": "zuiniger", "zuinigheid": "zuinig", "zuinigjes": "zuinigjes", "zuinigste": "zuinigst", "zuivel": "zuivel", "zuivelfabriek": "zuivelfabriek", "zuivelindustrie": "zuivelindustrie", "zuivelinrichtingen": "zuivelinricht", "zuivelonderneming": "zuivelondernem", "zuivelprodukten": "zuivelprodukt", "zuiver": "zuiver", "zuiveraar": "zuiverar", "zuiverbaar": "zuiver", "zuiverder": "zuiverder", "zuiverders": "zuiverder", "zuivere": "zuiver", "zuiveren": "zuiver", "zuiverheid": "zuiver", "zuiverheidsstandaarden": "zuiverheidsstandaard", "zuivering": "zuiver", "zuiveringen": "zuiver", "zuiverings": "zuiver", "zuiveringsbeheer": "zuiveringsbeher", "zuiveringschap": "zuiveringschap", "zuiveringschappen": "zuiveringschapp", "zuiveringsheffing": "zuiveringsheff", "zuiveringsinstallatie": "zuiveringsinstallatie", "zuiveringsinstallaties": "zuiveringsinstallaties", "zuiveringslasten": "zuiveringslast", "zuiveringsmethode": "zuiveringsmethod", "zuiveringsproces": "zuiveringsproces", "zuiveringsprocessen": "zuiveringsprocess", "zuiveringsresultaten": "zuiveringsresultat", "zuiveringsschap": "zuiveringsschap", "zuiveringsslib": "zuiveringsslib", "zuiveringsstadium": "zuiveringsstadium", "zuiveringsstation": "zuiveringsstation", "zuiveringsstations": "zuiveringsstation", "zuiveringssysteem": "zuiveringssystem", "zuiveringstechniek": "zuiveringstechniek", "zuiveringstechnieken": "zuiveringstechniek", "zuiverste": "zuiverst", "zuivert": "zuivert", "zulk": "zulk", "zulke": "zulk", "zulks": "zulk", "zullen": "zull", "zùllen": "zùllen", "zult": "zult", "zum": "zum", "zure": "zur", "zuren": "zur", "zus": "zus", "zusammenwachsenden": "zusammenwachs", "zusje": "zusj", "zusjes": "zusjes", "zuster": "zuster", "zusterbedrijf": "zusterbedrijf", "zusterlijk": "zuster", "zusterlijke": "zuster", "zusterlijkheid": "zuster", "zusterorganisatie": "zusterorganisatie", "zusterorganisaties": "zusterorganisaties", "zusters": "zuster", "zùsters": "zùster", "zustervereniging": "zusterveren", "zusterziel": "zusterziel", "zutphen": "zutph", "zutphense": "zutphen", "zuur": "zur", "zuuraccu": "zuuraccu", "zuurdepositie": "zuurdepositie", "zuurgevoelige": "zuurgevoel", "zuurgraad": "zuurgrad", "zuurpercentage": "zuurpercentag", "zuurstof": "zuurstof", "zuurstofaccu": "zuurstofaccu", "zuurstofarm": "zuurstofarm", "zuurstofatoom": "zuurstofatom", "zuurstofbleking": "zuurstofblek", "zuurstofdruk": "zuurstofdruk", "zuurstofgehalte": "zuurstofgehalt", "zuurstofisotopen": "zuurstofisotop", "zuurstofloos": "zuurstoflos", "zuurstofmolecuul": "zuurstofmolecul", "zuurstofreductie": "zuurstofreductie", "zuurstofrijke": "zuurstofrijk", "zuurstofverbruik": "zuurstofverbruik", "zuurstofvrije": "zuurstofvrij", "zuurteer": "zuurter", "zuurwolk": "zuurwolk", "zw": "zw", "zwaai": "zwaai", "zwaaide": "zwaaid", "zwaaiden": "zwaaid", "zwaaien": "zwaai", "zwaaipalen": "zwaaipal", "zwaan": "zwan", "zwaans": "zwan", "zwaar": "zwar", "zwaaraderige": "zwaarader", "zwaard": "zwaard", "zwaarder": "zwaarder", "zwaardere": "zwaarder", "zwaarmoedig": "zwaarmoed", "zwaarspierig": "zwaarspier", "zwaarste": "zwaarst", "zwaarte": "zwaart", "zwaartekracht": "zwaartekracht", "zwaartekrachtscheiders": "zwaartekrachtscheider", "zwaartepunt": "zwaartepunt", "zwaartepunten": "zwaartepunt", "zwaartillend": "zwaartill", "zwaarwegend": "zwaarweg", "zwaarwegende": "zwaarweg", "zwager": "zwager", "zwak": "zwak", "zwakepolder": "zwakepolder", "zwakhals": "zwakhal", "zwakheid": "zwakheid", "zwakjes": "zwakjes", "zwakke": "zwak", "zwakken": "zwak", "zwakker": "zwakker", "zwakkere": "zwakker", "zwakte": "zwakt", "zwammen": "zwamm", "zwanenburgbaan": "zwanenburgban", "zwanenwater": "zwanenwater", "zwanger": "zwanger", "zwangerschap": "zwangerschap", "zwapperde": "zwapperd", "zware": "zwar", "zwart": "zwart", "zwartblauwe": "zwartblauw", "zwarte": "zwart", "zwarteweg": "zwarteweg", "zwartige": "zwartig", "zwavel": "zwavel", "zwavelaerosolen": "zwavelaerosol", "zwavelarme": "zwavelarm", "zwavelberg": "zwavelberg", "zwaveldioxide": "zwaveldioxid", "zwaveldioxyde": "zwaveldioxyd", "zwavelgehalte": "zwavelgehalt", "zwavelhexafluoride": "zwavelhexafluorid", "zwavelopslagplaats": "zwavelopslagplat", "zwaveloxyden": "zwaveloxyd", "zwaveluitstotende": "zwaveluitstot", "zwavelverbindingen": "zwavelverbind", "zwavelverwijdering": "zwavelverwijder", "zwavelwaterstof": "zwavelwaterstof", "zwavelzure": "zwavelzur", "zwavelzuur": "zwavelzur", "zwavelzuurbad": "zwavelzuurbad", "zweckverband": "zweckverband", "zweden": "zwed", "zweeds": "zwed", "zweedse": "zwed", "zweefde": "zweefd", "zweefden": "zweefd", "zweeft": "zweeft", "zweeg": "zweg", "zweem": "zwem", "zweemde": "zweemd", "zweemden": "zweemd", "zweep": "zwep", "zweepte": "zweept", "zweer": "zwer", "zweet": "zwet", "zwegen": "zweg", "zwelbeton": "zwelbeton", "zwelelementen": "zwelelement", "zwelgen": "zwelg", "zwelkleiafdichtingen": "zwelkleiafdicht", "zwellen": "zwell", "zwellend": "zwellend", "zwellende": "zwellend", "zwelling": "zwelling", "zwembad": "zwembad", "zwembaden": "zwembad", "zwembadsystemen": "zwembadsystem", "zwembadwater": "zwembadwater", "zwemen": "zwem", "zweming": "zweming", "zwemmen": "zwemm", "zwemmer": "zwemmer", "zwemmers": "zwemmer", "zwemwater": "zwemwater", "zwengelen": "zwengel", "zwenkwielen": "zwenkwiel", "zwepen": "zwep", "zwepende": "zwepend", "zweren": "zwer", "zwerfafval": "zwerfafval", "zwerftocht": "zwerftocht", "zwerfvuil": "zwerfvuil", "zwermen": "zwerm", "zweten": "zwet", "zwetsloot": "zwetslot", "zweven": "zwev", "zwevend": "zwevend", "zwevende": "zwevend", "zweving": "zweving", "zwiepende": "zwiepend", "zwiepte": "zwiept", "zwiepten": "zwiept", "zwier": "zwier", "zwierden": "zwierd", "zwieren": "zwier", "zwierf": "zwierf", "zwijgen": "zwijg", "zwijgend": "zwijgend", "zwijgende": "zwijgend", "zwijggeld": "zwijggeld", "zwijgt": "zwijgt", "zwijmde": "zwijmd", "zwijmden": "zwijmd", "zwijn": "zwijn", "zwijnen": "zwijn", "zwikkende": "zwikkend", "zwinpolder": "zwinpolder", "zwitser": "zwitser", "zwitserland": "zwitserland", "zwitsers": "zwitser", "zwitserse": "zwitser", "zwo": "zwo", "zwoel": "zwoel", "zwoelde": "zwoeld", "zwoele": "zwoel", "zwoelte": "zwoelt", "zwoer": "zwoer", "zwoete": "zwoet", "zwol": "zwol", "zwolle": "zwoll", "zwollen": "zwoll", "zwolse": "zwol", "zwom": "zwom" } ================================================ FILE: spec/test_data/snowball_no.json ================================================ { "a": "a", "aabakken": "aabakk", "aabakkens": "aabakk", "aarbakke": "aarbakk", "aarum": "aarum", "aase": "aas", "ab": "ab", "abitanti": "abitanti", "abitazione": "abitazion", "ablegøyer": "ablegøy", "absolutt": "absolutt", "absorberes": "absorber", "ad": "ad", "adgang": "adgang", "adgangen": "adgang", "adkomst": "adkomst", "adkomstdokument": "adkomstdokument", "adkomstdokumenter": "adkomstdokument", "adkomsten": "adkomst", "adlyde": "adlyd", "adlyder": "adlyd", "adm": "adm", "administrasjon": "administrasjon", "administrasjonen": "administrasjon", "administrasjonsdepartementet": "administrasjonsdepartement", "administrasjonskostnadene": "administrasjonskostnad", "administrativ": "administrativ", "administrative": "administrativ", "administrativt": "administrativ", "administrere": "administrer", "administrerende": "administrer", "administreres": "administrer", "administrert": "administrer", "adopsjon": "adopsjon", "adopsjonspenger": "adopsjonspeng", "adresse": "adress", "adresser": "adress", "adskillelse": "adskill", "adskilt": "adskilt", "advare": "advar", "advarselen": "advarsel", "advart": "advart", "advokat": "advokat", "advokatar": "advokat", "advokatfirmaet": "advokatfirma", "advokatfullmektig": "advokatfullmekt", "agder": "agd", "agenter": "agent", "agenturer": "agentur", "aggregeres": "aggreger", "aggregert": "aggreger", "agn": "agn", "agnar": "agn", "agreement": "agreement", "ajourføring": "ajourføring", "akademikerne": "akademikern", "akademikernes": "akademikern", "ake": "ake", "akershus": "akershus", "akkord": "akkord", "akkumulerte": "akkumuler", "akkurat": "akkurat", "aksept": "aksept", "akseptabel": "akseptabel", "akseptabelt": "akseptabelt", "akseptable": "akseptabl", "aksepterast": "aksepter", "akseptere": "aksepter", "aksepteres": "aksepter", "akseptert": "aksepter", "aksjane": "aksj", "aksjar": "aksj", "aksje": "aksj", "aksjeandel": "aksjeandel", "aksjeavkastning": "aksjeavkastning", "aksjebrev": "aksjebrev", "aksjebustader": "aksjebustad", "aksjeeigar": "aksje", "aksjeeigarane": "aksjeeigar", "aksjeeigarar": "aksjeeigar", "aksjeeigaravtale": "aksjeeigaravtal", "aksjeeigaren": "aksjeeigar", "aksjegevinster": "aksjegevinst", "aksjeinnskot": "aksjeinnskot", "aksjekapital": "aksjekapital", "aksjekapitalen": "aksjekapital", "aksjelov": "aksj", "aksjelova": "aksj", "aksjeloven": "aksj", "aksjelovens": "aksj", "aksjelovgjeving": "aksjelovgjeving", "aksjelovgjevinga": "aksjelovgjeving", "aksjer": "aksj", "aksjerettslig": "aksjeretts", "aksjeselskap": "aksjeselskap", "aksjeselskaper": "aksjeselskap", "aksjeselskapet": "aksjeselskap", "aksjeselskapsformen": "aksjeselskapsform", "aksjeselskapsrettslege": "aksjeselskapsretts", "aksjonær": "aksjonær", "aksjonæroppgaver": "aksjonæroppgav", "aktersetet": "akterset", "aktes": "akt", "aktiv": "aktiv", "aktiva": "aktiv", "aktivaklasser": "aktivaklass", "aktivasammensetning": "aktivasammensetning", "aktive": "aktiv", "aktivitet": "aktivit", "aktivitetane": "aktivitet", "aktivitetar": "aktivitet", "aktiviteten": "aktivitet", "aktivitetene": "aktivitet", "aktiviteter": "aktivitet", "aktivitetsøkning": "aktivitetsøkning", "aktivt": "aktiv", "aktlaust": "aktlaust", "aktløyse": "aktløys", "aktsemd": "aktsemd", "aktsemdplikta": "aktsemdplikt", "aktualisere": "aktualiser", "aktuar": "aktu", "aktuell": "aktuell", "aktuelle": "aktuell", "aktuelt": "aktuelt", "aktør": "aktør", "aktørane": "aktør", "aktørar": "aktør", "aktørene": "aktør", "aktørenes": "aktør", "aktørens": "aktør", "aktører": "aktør", "aktørers": "aktør", "aktørgruppe": "aktørgrupp", "aku": "aku", "alarmsignalet": "alarmsignal", "aldeles": "aldel", "alder": "ald", "alderdom": "alderdom", "alderdommen": "alderdomm", "alderen": "alder", "alderkilde": "alderkild", "alderpensjonen": "alderpensjon", "alderpensjonskapital": "alderpensjonskapital", "alders": "ald", "aldersdifferanse": "aldersdifferans", "aldersforskjellen": "aldersforskjell", "aldersgrense": "aldersgrens", "aldersgrensen": "aldersgrens", "aldersgrensene": "aldersgrens", "aldersgrupper": "aldersgrupp", "alderspensjon": "alderspensjon", "alderspensjonen": "alderspensjon", "alderspensjoner": "alderspensjon", "alderspensjonist": "alderspensjonist", "alderspensjonistene": "alderspensjonist", "alderspensjonister": "alderspensjonist", "alderspensjonsforsikring": "alderspensjonsforsikring", "alderspensjonsforsikringen": "alderspensjonsforsikring", "alderspensjonsforsikringsavtale": "alderspensjonsforsikringsavtal", "alderspensjonsforsikringsavtaler": "alderspensjonsforsikringsavtal", "alderspensjonskapital": "alderspensjonskapital", "alderspensjonskapitalbevis": "alderspensjonskapitalbevis", "alderspensjonskapitalen": "alderspensjonskapital", "alderspensjonskapitalens": "alderspensjonskapital", "alderspensjonskapitalkontoen": "alderspensjonskapitalkonto", "alderspensjonskonti": "alderspensjonskonti", "alderspensjonskonto": "alderspensjonskonto", "alderspensjonskontoen": "alderspensjonskonto", "alderspensjonsnivå": "alderspensjonsnivå", "alderspensjonsordning": "alderspensjonsordning", "alderspensjonsordninger": "alderspensjonsordning", "alderspensjonsrettigheter": "alderspensjonsrett", "alderspensjonsspareavtale": "alderspensjonsspareavtal", "alderspensjonsytelse": "alderspensjonsyt", "alderssamansetjinga": "alderssamansetjing", "aldre": "aldr", "aldri": "aldri", "aldringen": "aldring", "aleine": "alein", "alene": "alen", "alf": "alf", "alfhild": "alfhild", "all": "all", "alldeles": "alldel", "alle": "all", "aller": "all", "allerede": "aller", "allereie": "allerei", "alles": "all", "allfader": "allfad", "alliance": "allianc", "alliansen": "allians", "allianser": "allians", "allierte": "allier", "allmannyttiga": "allmannytt", "allmektig": "allmekt", "allmen": "allm", "allmenn": "allmenn", "allmennaksjelova": "allmennaksj", "allmennaksjeloven": "allmennaksj", "allmennaksjeselskap": "allmennaksjeselskap", "allmennaksjeselskaper": "allmennaksjeselskap", "allmenne": "allmenn", "allmennhetens": "allmenn", "allmennspråket": "allmennspråk", "allmennyttiga": "allmennytt", "allmennyttige": "allmennytt", "allment": "allment", "allmugen": "allmug", "allsidige": "allsid", "alltid": "alltid", "alltids": "alltid", "allting": "allting", "almen": "alm", "almene": "alm", "almenmerknadene": "almenmerknad", "almennaksjelovens": "almennaksj", "almennyttig": "almennytt", "alminnelig": "alminn", "alminnelige": "alminn", "alminnelighet": "alminn", "alnabru": "alnabru", "alt": "alt", "alta": "alt", "alternativ": "alternativ", "alternative": "alternativ", "alternativene": "alternativ", "alternativer": "alternativ", "alternativet": "alternativ", "alternativt": "alternativ", "alternerer": "alterner", "altfor": "altfor", "altoverveiende": "altovervei", "altså": "altså", "aluminium": "aluminium", "alvalde": "alvald", "alvene": "alv", "alvenes": "alv", "alver": "alv", "alveslekt": "alveslekt", "alvheim": "alvheim", "alvim": "alvim", "alvor": "alvor", "alvorleg": "alvor", "alvorlege": "alvor", "alvorlig": "alvor", "ambisjonsnivået": "ambisjonsnivå", "amma": "amm", "ammas": "amm", "amsterdam": "amsterdam", "amtmannsvingen": "amtmannsving", "an": "an", "analogt": "analogt", "analyse": "analys", "analysen": "analys", "analysene": "analys", "analyser": "analys", "analysere": "analyser", "analysert": "analyser", "anbefaler": "anbefal", "anbefales": "anbefal", "anbefaling": "anbefaling", "anbefalingene": "anbefaling", "anbefalinger": "anbefaling", "anbefalt": "anbefalt", "anbefalte": "anbefalt", "and": "and", "andamål": "andamål", "andamålsenlig": "andamålsen", "andel": "andel", "andelane": "andel", "andelar": "andel", "andeleigar": "andel", "andeleigarane": "andeleigar", "andeleigarbok": "andeleigarbok", "andelen": "andel", "andelene": "andel", "andeler": "andel", "andelsbevis": "andelsbevis", "andelsbok": "andelsbok", "andelsboka": "andelsbok", "andelsboligforening": "andelsboligforening", "andelsboligforeninger": "andelsboligforening", "andelsboligorganisation": "andelsboligorganisation", "andelsboligorganisationer": "andelsboligorganisation", "andelsbrev": "andelsbrev", "andelsbrevet": "andelsbrev", "andelsdokument": "andelsdokument", "andelseier": "andelsei", "andelseiere": "andelseier", "andelseierne": "andelseiern", "andelseiernes": "andelseiern", "andelseigar": "andels", "andelseigarane": "andelseigar", "andelseigarar": "andelseigar", "andelseigarbok": "andelseigarbok", "andelseigarboka": "andelseigarbok", "andelseigaren": "andelseigar", "andelseigarens": "andelseigar", "andelseigarforholdet": "andelseigarforhold", "andelseigarposisjonen": "andelseigarposisjon", "andelseigarregister": "andelseigarregist", "andelseigartal": "andelseigartal", "andelshaver": "andelshav", "andelshavers": "andelshav", "andelsinnskot": "andelsinnskot", "andelsinnskotet": "andelsinnskot", "andelsinnskottet": "andelsinnskott", "andelskapital": "andelskapital", "andelskapitalen": "andelskapital", "andelslag": "andelslag", "andelslaget": "andelslag", "andelsobligasjonane": "andelsobligasjon", "andelsobligasjonar": "andelsobligasjon", "andelsrett": "andelsrett", "andelsselskaber": "andelsselskab", "andelsselskapa": "andelsselskap", "andelssum": "andelssum", "andelssummen": "andelssumm", "andelsteikning": "andelsteikning", "andelsteikninga": "andelsteikning", "anders": "and", "anderssen": "anderss", "andra": "andr", "andre": "andr", "andres": "andr", "andrimne": "andrimn", "andsynes": "andsyn", "andvare": "andvar", "andvarefoss": "andvarefoss", "aner": "aner", "anerkjenne": "anerkjenn", "anerkjente": "anerkjent", "anføre": "anfør", "anfører": "anfør", "anføres": "anfør", "anført": "anført", "angerboda": "angerbod", "angi": "angi", "angir": "angir", "angis": "angis", "angitt": "angitt", "angitte": "angitt", "angivelse": "angiv", "angjeldende": "angjeld", "angre": "angr", "angrefrist": "angrefrist", "angrep": "angrep", "angrepet": "angrep", "angrer": "angr", "angret": "angr", "angripe": "angrip", "angriper": "angrip", "angst": "angst", "angt": "angt", "angår": "angår", "ankler": "ankl", "ankommer": "ankomm", "ankre": "ankr", "anledning": "anledning", "anledninger": "anledning", "anlegg": "anlegg", "anleggene": "anlegg", "anlegget": "anlegg", "anleggsmessig": "anleggsmess", "anleggsmidler": "anleggsmidl", "anliggende": "anligg", "anløp": "anløp", "anløpe": "anløp", "anløpene": "anløp", "anløper": "anløp", "anløpes": "anløp", "anløpsavgift": "anløpsavgift", "anløpsfrekvens": "anløpsfrekv", "anløpshavn": "anløpshavn", "anløpshavner": "anløpshavn", "anløpshyppighet": "anløpshypp", "anløpsmønster": "anløpsmønst", "anløpsmønstre": "anløpsmønstr", "anløpspunkter": "anløpspunkt", "anløpssteder": "anløpssted", "anløpsutgiftene": "anløpsutgift", "anmodet": "anmod", "anna": "ann", "annan": "annan", "annaniassen": "annaniass", "annat": "annat", "anne": "ann", "annen": "ann", "annenhver": "annenhv", "annenhvert": "annenhver", "annens": "ann", "annerledes": "annerl", "annet": "ann", "annleis": "annleis", "ansatt": "ansatt", "ansatte": "ansatt", "ansattes": "ansatt", "anse": "ans", "ansees": "anse", "anser": "ans", "anses": "ans", "ansett": "ansett", "ansettelse": "ansett", "ansettelsen": "ansett", "ansettelsesforhold": "ansettelsesforhold", "ansettelsesforholdet": "ansettelsesforhold", "ansettelseskrav": "ansettelseskrav", "ansettelsestid": "ansettelsestid", "ansettes": "ansett", "ansiennitet": "ansiennit", "ansienniteten": "ansiennitet", "ansiennitetsreglar": "ansiennitetsregl", "ansikt": "ansikt", "ansiktet": "ansikt", "anskaffelse": "anskaff", "anslag": "anslag", "anslagene": "anslag", "anslaget": "anslag", "anslagsvis": "anslagsvis", "anslå": "anslå", "anslår": "anslår", "anslås": "anslås", "anslått": "anslått", "anslåtte": "anslått", "anstrenger": "anstreng", "ansvar": "ansv", "ansvaret": "ansvar", "ansvarleg": "ansvar", "ansvarlege": "ansvar", "ansvarlig": "ansvar", "ansvarlige": "ansvar", "ansvarliges": "ansvar", "ansvarsavgrensing": "ansvarsavgrensing", "ansvarsavgrensinga": "ansvarsavgrensing", "ansvarsfri": "ansvarsfri", "ansvarsfritak": "ansvarsfritak", "ansvarsfråskrivingar": "ansvarsfråskriving", "ansvarsgrunnlaget": "ansvarsgrunnlag", "ansvarsinnskot": "ansvarsinnskot", "ansvarskapital": "ansvarskapital", "ansvarsområde": "ansvarsområd", "ansvarspulverisering": "ansvarspulverisering", "ansvarsregel": "ansvarsregel", "ansvarsreglar": "ansvarsregl", "ansvarsreguleringa": "ansvarsregulering", "ansvarsspørsmåla": "ansvarsspørsmål", "ant": "ant", "anta": "ant", "antagelig": "antag", "antakelig": "antak", "antakelse": "antak", "antakelsen": "antak", "antakelsene": "antak", "antakelser": "antak", "antall": "antall", "antallet": "antall", "antar": "ant", "antas": "ant", "antatt": "antatt", "antatte": "antatt", "anten": "ant", "antenne": "antenn", "antenneanlegg": "antenneanlegg", "antitetisk": "antitetisk", "antwerpen": "antwerp", "antydede": "antyd", "antyder": "antyd", "antydes": "antyd", "antydet": "antyd", "anvende": "anv", "anvendelse": "anvend", "anvendelsen": "anvend", "anvendelser": "anvend", "anvendelsesområde": "anvendelsesområd", "anvendelsesområder": "anvendelsesområd", "anvender": "anvend", "anvendes": "anv", "anvendt": "anvend", "anviser": "anvis", "anvisning": "anvisning", "ap": "ap", "apparat": "apparat", "april": "april", "ar": "ar", "arbeid": "arbeid", "arbeidast": "arbeid", "arbeidde": "arbeidd", "arbeide": "arbeid", "arbeider": "arbeid", "arbeidere": "arbeider", "arbeiderpartiet": "arbeiderparti", "arbeides": "arbeid", "arbeidet": "arbeid", "arbeidgiver": "arbeidgiv", "arbeids": "arbeid", "arbeidsavtale": "arbeidsavtal", "arbeidsavtalen": "arbeidsavtal", "arbeidsavtalene": "arbeidsavtal", "arbeidsavtalenes": "arbeidsavtal", "arbeidsavtaler": "arbeidsavtal", "arbeidsdag": "arbeidsdag", "arbeidsdeling": "arbeidsdeling", "arbeidsdelinga": "arbeidsdeling", "arbeidsdelingen": "arbeidsdeling", "arbeidsdepartementet": "arbeidsdepartement", "arbeidsforhold": "arbeidsforhold", "arbeidsforholdet": "arbeidsforhold", "arbeidsfør": "arbeidsfør", "arbeidsgiver": "arbeidsgiv", "arbeidsgiveravgift": "arbeidsgiveravgift", "arbeidsgiveravgiften": "arbeidsgiveravgift", "arbeidsgivere": "arbeidsgiver", "arbeidsgiveren": "arbeidsgiver", "arbeidsgiverens": "arbeidsgiver", "arbeidsgiverfinansiert": "arbeidsgiverfinansier", "arbeidsgiverne": "arbeidsgivern", "arbeidsgiverorganisasjoner": "arbeidsgiverorganisasjon", "arbeidsgivers": "arbeidsgiv", "arbeidsgjevar": "arbeidsgjev", "arbeidsgrunnlag": "arbeidsgrunnlag", "arbeidsgruppa": "arbeidsgrupp", "arbeidsgruppas": "arbeidsgrupp", "arbeidsgruppe": "arbeidsgrupp", "arbeidsgruppen": "arbeidsgrupp", "arbeidsgruppens": "arbeidsgrupp", "arbeidsinnsats": "arbeidsinnsat", "arbeidsinntekt": "arbeidsinntekt", "arbeidskapasitet": "arbeidskapasit", "arbeidskonflikter": "arbeidskonflikt", "arbeidskontrakt": "arbeidskontrakt", "arbeidskraft": "arbeidskraft", "arbeidskraftens": "arbeidskraft", "arbeidskraftsundersøkelse": "arbeidskraftsundersøk", "arbeidsliv": "arbeidsliv", "arbeidslivet": "arbeidsliv", "arbeidslivets": "arbeidsliv", "arbeidsløyse": "arbeidsløys", "arbeidsmarkedet": "arbeidsmarked", "arbeidsmarkedsbidrag": "arbeidsmarkedsbidrag", "arbeidsmarkedspensjoner": "arbeidsmarkedspensjon", "arbeidsmengda": "arbeidsmengd", "arbeidsmiljøloven": "arbeidsmiljø", "arbeidsmåte": "arbeidsmåt", "arbeidsmøter": "arbeidsmøt", "arbeidsområde": "arbeidsområd", "arbeidsoppgaver": "arbeidsoppgav", "arbeidsoppgåver": "arbeidsoppgåv", "arbeidsopplegg": "arbeidsopplegg", "arbeidsopplegget": "arbeidsopplegg", "arbeidsperioden": "arbeidsperiod", "arbeidsplassar": "arbeidsplass", "arbeidsplasser": "arbeidsplass", "arbeidsrelaterte": "arbeidsrelater", "arbeidsrettslig": "arbeidsretts", "arbeidsrettslige": "arbeidsretts", "arbeidssammenheng": "arbeidssammenheng", "arbeidsstokken": "arbeidsstokk", "arbeidssøkere": "arbeidssøker", "arbeidstagere": "arbeidstager", "arbeidstakar": "arbeidstak", "arbeidstakarane": "arbeidstakar", "arbeidstakaren": "arbeidstakar", "arbeidstaker": "arbeidstak", "arbeidstakere": "arbeidstaker", "arbeidstakeren": "arbeidstaker", "arbeidstakerens": "arbeidstaker", "arbeidstakeres": "arbeidstaker", "arbeidstakergrupper": "arbeidstakergrupp", "arbeidstakerhold": "arbeidstakerhold", "arbeidstakerne": "arbeidstakern", "arbeidstakernes": "arbeidstakern", "arbeidstakerorganisasjonene": "arbeidstakerorganisasjon", "arbeidstakers": "arbeidstak", "arbeidstid": "arbeidstid", "arbeidstilhøve": "arbeidstilhøv", "arbeidsuke": "arbeidsuk", "arbeidsutvalg": "arbeidsutvalg", "arbeidsvilkår": "arbeidsvilkår", "arbeidsvilkårene": "arbeidsvilkår", "arbetsinsats": "arbetsinsat", "areal": "areal", "arealanvendelse": "arealanvend", "arealbehov": "arealbehov", "arealbehovet": "arealbehov", "arealbruk": "arealbruk", "arealbruken": "arealbruk", "arealbruksendring": "arealbruksendring", "arealbrukskonfliktene": "arealbrukskonflikt", "arealdel": "arealdel", "arealdelen": "arealdel", "arealdelplan": "arealdelplan", "arealdelplanen": "arealdelplan", "arealdisponering": "arealdisponering", "arealeffektiviserende": "arealeffektiviser", "arealeffektivisering": "arealeffektivisering", "arealeffektivitet": "arealeffektivit", "arealene": "areal", "arealer": "areal", "arealervervelser": "arealerverv", "arealet": "areal", "arealforhold": "arealforhold", "arealintensiv": "arealintensiv", "arealkapasiteten": "arealkapasitet", "arealknapphet": "arealknapp", "arealkonflikter": "arealkonflikt", "arealkostnadene": "arealkostnad", "arealkostnader": "arealkostnad", "arealkrevende": "arealkrev", "arealmessig": "arealmess", "arealmessige": "arealmess", "arealplanen": "arealplan", "arealplaner": "arealplan", "arealplanlegging": "arealplanlegging", "arealpolitikk": "arealpolitikk", "arealpolitikken": "arealpolitikk", "arealproduktivitet": "arealproduktivit", "arealreguleringstiltak": "arealreguleringstiltak", "arealreservene": "arealreserv", "arealressurser": "arealressurs", "arealsituasjon": "arealsituasjon", "arealsituasjonen": "arealsituasjon", "arealspørsmål": "arealspørsmål", "arealtilgang": "arealtilgang", "arealtilgangen": "arealtilgang", "arealtilganger": "arealtilgang", "arealtilgjengelighet": "arealtilgjeng", "arealtilskot": "arealtilskot", "arealutnyttelse": "arealutnytt", "arealutnyttelsen": "arealutnytt", "arealutvidelser": "arealutvid", "arealutvidelsesmuligheter": "arealutvidelsesmu", "arealverdien": "arealverdi", "arealøkning": "arealøkning", "arena": "aren", "argeste": "argest", "argument": "argument", "argumentasjon": "argumentasjon", "argumentasjonen": "argumentasjon", "argumentene": "argument", "argumenter": "argument", "argumenterer": "argumenter", "argumenteres": "argumenter", "argumentet": "argument", "arm": "arm", "armbåndet": "armbånd", "armen": "arm", "armene": "arm", "armer": "arm", "armhulen": "armhul", "armring": "armring", "armringer": "armring", "arne": "arn", "arnhild": "arnhild", "arrangerte": "arranger", "arrest": "arrest", "arresten": "arrest", "art": "art", "arte": "art", "arten": "art", "arter": "art", "artikkel": "artikkel", "artikkelen": "artikkel", "artiklene": "artikl", "arv": "arv", "arveavgift": "arveavgift", "arveavgiftslov": "arveavgift", "arveavgiftsloven": "arveavgift", "arveavgiftslovgivningen": "arveavgiftslovgivning", "arveavgiftsmessige": "arveavgiftsmess", "arveavgiftsreglene": "arveavgiftsregl", "arveavgiftsutvalgets": "arveavgiftsutvalg", "arvebuet": "arvebu", "arvede": "arv", "arvefall": "arvefall", "arvefallet": "arvefall", "arvegangsreglene": "arvegangsregl", "arvegangsregler": "arvegangsregl", "arveloven": "arv", "arven": "arv", "arveovergangen": "arveovergang", "arvet": "arv", "arvetilfella": "arvetilfell", "arving": "arving", "arvingane": "arving", "arvingar": "arving", "arvingen": "arving", "arvinger": "arving", "arvlataren": "arvlatar", "as": "as", "asia": "asi", "asiatiske": "asiatisk", "ask": "ask", "aske": "ask", "askelut": "askelut", "asken": "ask", "asker": "ask", "asketreet": "asketre", "asl": "asl", "aspekt": "aspekt", "aspekter": "aspekt", "aspektet": "aspekt", "assev": "assev", "associazione": "associazion", "assosiasjoner": "assosiasjon", "assosierte": "assosier", "asylsøkjarar": "asylsøkjar", "asymmetrien": "asymmetri", "at": "at", "atferden": "atferd", "atkomstdokument": "atkomstdokument", "atkomstdokumentene": "atkomstdokument", "atkomstdokumentet": "atkomstdokument", "atskillelse": "atskill", "atskilt": "atskilt", "att": "att", "atten": "att", "attende": "att", "attendebetaling": "attendebetaling", "attendebetalt": "attendebetalt", "attendeføring": "attendeføring", "attendekalling": "attendekalling", "attendelevering": "attendelevering", "atterhald": "atterhald", "atterhaldet": "atterhald", "attest": "attest", "attestasjonar": "attestasjon", "attestert": "attester", "attgjevast": "attgjev", "attom": "attom", "attraktiv": "attraktiv", "attraktive": "attraktiv", "attraktivitet": "attraktivit", "attraktivt": "attraktiv", "attval": "attval", "au": "au", "aud": "aud", "audhumla": "audhuml", "august": "august", "auka": "auk", "aukande": "auk", "aukar": "auk", "aukast": "auk", "auke": "auk", "auprema": "auprem", "aurvandil": "aurvandil", "aurvandils": "aurvandil", "australia": "australi", "automatisk": "automatisk", "autorisasjon": "autorisasjon", "autorisasjonen": "autorisasjon", "autorisasjonsordning": "autorisasjonsordning", "autoriserte": "autoriser", "av": "av", "avbrot": "avbrot", "avbroten": "avbrot", "avbrytast": "avbryt", "avbryte": "avbryt", "avbryter": "avbryt", "avbøtende": "avbøt", "avdekke": "avdekk", "avdekker": "avdekk", "avdekket": "avdekk", "avdeling": "avdeling", "avdelingane": "avdeling", "avdelingar": "avdeling", "avdelingsdirektør": "avdelingsdirektør", "avdempet": "avdemp", "avdrag": "avdrag", "avdraga": "avdrag", "avdragsplanen": "avdragsplan", "avdød": "avdød", "avdødes": "avdød", "averterer": "averter", "avfall": "avfall", "avfallshandtering": "avfallshandtering", "avga": "avg", "avgang": "avgang", "avgangsalder": "avgangsald", "avgangstider": "avgangstid", "avgi": "avgi", "avgifer": "avgif", "avgift": "avgift", "avgiften": "avgift", "avgiftene": "avgift", "avgifter": "avgift", "avgiftsbestemmelsene": "avgiftsbestemm", "avgiftsforskrifter": "avgiftsforskrift", "avgiftsfrie": "avgiftsfri", "avgiftsfritt": "avgiftsfritt", "avgiftsinnkreving": "avgiftsinnkreving", "avgiftsinntektene": "avgiftsinntekt", "avgiftsmessig": "avgiftsmess", "avgiftsmessige": "avgiftsmess", "avgiftsmidlene": "avgiftsmidl", "avgiftsmidler": "avgiftsmidl", "avgiftsnivået": "avgiftsnivå", "avgiftsområder": "avgiftsområd", "avgiftsplikt": "avgiftsplikt", "avgiftspliktig": "avgiftsplikt", "avgiftsreglene": "avgiftsregl", "avgiftsregulativene": "avgiftsregulativ", "avgiftsregulativer": "avgiftsregulativ", "avgiftsspørsmål": "avgiftsspørsmål", "avgiftssystem": "avgiftssystem", "avgiftstyper": "avgiftstyp", "avgir": "avgir", "avgis": "avgis", "avgitt": "avgitt", "avgivelse": "avgiv", "avgjer": "avgj", "avgjerande": "avgjer", "avgjerast": "avgjer", "avgjerd": "avgjerd", "avgjerda": "avgjerd", "avgjerdene": "avgjerd", "avgjerder": "avgjerd", "avgjerdskompetansen": "avgjerdskompetans", "avgjere": "avgjer", "avgjord": "avgjord", "avgjort": "avgjort", "avgjør": "avgjør", "avgjøre": "avgjør", "avgjørelse": "avgjør", "avgjørelsen": "avgjør", "avgjørelsene": "avgjør", "avgjørelser": "avgjør", "avgjørelsesmyndighet": "avgjørelsesmynd", "avgjørende": "avgjør", "avgjøres": "avgjør", "avgrensa": "avgrens", "avgrensar": "avgrens", "avgrensast": "avgrens", "avgrense": "avgrens", "avgrenser": "avgrens", "avgrenses": "avgrens", "avgrenset": "avgrens", "avgrensing": "avgrensing", "avgrensinga": "avgrensing", "avgrensingane": "avgrensing", "avgrensingar": "avgrensing", "avgrensinger": "avgrensing", "avgrensning": "avgrensning", "avgrunnen": "avgrunn", "avhenda": "avhend", "avhendar": "avhend", "avhendaren": "avhendar", "avhendast": "avhend", "avhende": "avh", "avhending": "avhending", "avhendinga": "avhending", "avhendingslova": "avhending", "avhenge": "avheng", "avhenger": "avheng", "avhengig": "avheng", "avhengige": "avheng", "avhengighet": "avheng", "avhjelpast": "avhjelp", "avhl": "avhl", "avholdt": "avhold", "avhugget": "avhugg", "avis": "avis", "avisa": "avis", "avisrom": "avisrom", "avkall": "avkall", "avkasting": "avkasting", "avkastning": "avkastning", "avkastningen": "avkastning", "avkastningprosent": "avkastningprosent", "avkastningsavhengig": "avkastningsavheng", "avkastningsdeling": "avkastningsdeling", "avkastningsgaranti": "avkastningsgaranti", "avkastningsgarantier": "avkastningsgaranti", "avkastningsgrense": "avkastningsgrens", "avkastningskatt": "avkastningskatt", "avkastningsnivå": "avkastningsnivå", "avkastningsnivåer": "avkastningsnivå", "avkastningsnivået": "avkastningsnivå", "avkastningsprosent": "avkastningsprosent", "avkastningsprosenten": "avkastningsprosent", "avkastningsrater": "avkastningsrat", "avkastningsrisiko": "avkastningsrisiko", "avkastningsskatt": "avkastningsskatt", "avkastningsskatten": "avkastningsskatt", "avkastningsusikkerheten": "avkastningsusikker", "avkjøring": "avkjøring", "avklare": "avklar", "avklaring": "avklaring", "avklart": "avklart", "avklårast": "avklår", "avklåre": "avklår", "avklåring": "avklåring", "avklåringa": "avklåring", "avklårt": "avklårt", "avkortes": "avkort", "avkorting": "avkorting", "avkortinga": "avkorting", "avkuttede": "avkutt", "avlaste": "avlast", "avlaster": "avlast", "avlastning": "avlastning", "avlastningsbehov": "avlastningsbehov", "avlastningsbehovet": "avlastningsbehov", "avlastningshavn": "avlastningshavn", "avlastningshavner": "avlastningshavn", "avlastningsløsninger": "avlastningsløsning", "avlastningstilbudet": "avlastningstilbud", "avlastningsveg": "avlastningsveg", "avledes": "avl", "avledet": "avled", "avleggjast": "avleggj", "avleidde": "avleidd", "avlen": "avl", "avleverte": "avlever", "avling": "avling", "avlønning": "avlønning", "avløse": "avløs", "avløsningsbeløp": "avløsningsbeløp", "avløyst": "avløyst", "avregningen": "avregning", "avregninger": "avregning", "avsa": "avs", "avsatt": "avsatt", "avse": "avs", "avsender": "avsend", "avsendere": "avsender", "avsenderfylke": "avsenderfylk", "avsendersted": "avsendersted", "avsendinga": "avsending", "avsetjast": "avsetj", "avsetjing": "avsetjing", "avsetjinga": "avsetjing", "avsetning": "avsetning", "avsetningar": "avsetning", "avsetningen": "avsetning", "avsetninger": "avsetning", "avsetningsadgang": "avsetningsadgang", "avsettes": "avsett", "avsindig": "avsind", "avskiper": "avskip", "avskipere": "avskiper", "avskipssted": "avskipssted", "avskjere": "avskjer", "avskjære": "avskjær", "avskriving": "avskriving", "avskrivninger": "avskrivning", "avsky": "avsky", "avslag": "avslag", "avslege": "avs", "avslutningsfase": "avslutningsfas", "avslutta": "avslutt", "avsluttar": "avslutt", "avsluttast": "avslutt", "avslutte": "avslutt", "avslutter": "avslutt", "avsluttes": "avslutt", "avsluttet": "avslutt", "avslå": "avslå", "avsnitt": "avsnitt", "avsnittene": "avsnitt", "avsnittet": "avsnitt", "avspeile": "avspeil", "avspeiler": "avspeil", "avstand": "avstand", "avstanden": "avstand", "avstander": "avstand", "avsted": "avsted", "avstedkommer": "avstedkomm", "avstemming": "avstemming", "avstemt": "avstemt", "avstå": "avstå", "avstår": "avstår", "avta": "avt", "avtakende": "avtak", "avtala": "avtal", "avtalane": "avtal", "avtalar": "avtal", "avtalast": "avtal", "avtale": "avtal", "avtalebrot": "avtalebrot", "avtaleelementet": "avtaleelement", "avtaleerverv": "avtaleerverv", "avtaleervervarar": "avtaleervervar", "avtaleervervaren": "avtaleervervar", "avtalefestede": "avtalefest", "avtaleforhold": "avtaleforhold", "avtaleforholdet": "avtaleforhold", "avtalefriheten": "avtalefri", "avtaleklausul": "avtaleklausul", "avtaleliknande": "avtalelikn", "avtalelova": "avtal", "avtalen": "avtal", "avtalene": "avtal", "avtalens": "avtal", "avtaleområdet": "avtaleområd", "avtalepant": "avtalepant", "avtalepanthavarar": "avtalepanthavar", "avtalepart": "avtalepart", "avtalepartar": "avtalepart", "avtalepartene": "avtalepart", "avtalepraksis": "avtalepraksis", "avtaler": "avtal", "avtalereglane": "avtaleregl", "avtalerett": "avtalerett", "avtalerettslege": "avtaleretts", "avtales": "avtal", "avtalesituasjonen": "avtalesituasjon", "avtaletida": "avtaletid", "avtaletidspunktet": "avtaletidspunkt", "avtaletypar": "avtaletyp", "avtalpension": "avtalpension", "avtalt": "avtalt", "avtalte": "avtalt", "avtar": "avt", "avveging": "avveging", "avveginga": "avveging", "avveining": "avveining", "avveiningen": "avveining", "avvente": "avvent", "avvik": "avvik", "avvikande": "avvik", "avvike": "avvik", "avvikene": "avvik", "avviker": "avvik", "avviket": "avvik", "avvikla": "avvikl", "avviklast": "avvikl", "avvikle": "avvikl", "avvikler": "avvikl", "avvikles": "avvikl", "avviklet": "avvikl", "avvikling": "avvikling", "avviklinga": "avvikling", "avviklingen": "avvikling", "avviklingsbalanse": "avviklingsbalans", "avviklingsbuet": "avviklingsbu", "avviklingsperioden": "avviklingsperiod", "avviklingsstyre": "avviklingsstyr", "avviklingsstyret": "avviklingsstyr", "avviklingstida": "avviklingstid", "avviklingstyret": "avviklingstyr", "avviklingsvedtak": "avviklingsvedtak", "avvisast": "avvis", "avvist": "avvist", "avviste": "avvist", "b": "b", "ba": "ba", "babler": "babl", "bachmann": "bachmann", "bad": "bad", "baderom": "baderom", "baderomsgolv": "baderomsgolv", "badet": "bad", "badstue": "badstu", "badstuen": "badstu", "bak": "bak", "bakbena": "bakben", "baken": "bak", "bakenfor": "bakenfor", "bakenforliggende": "bakenforligg", "bakfoten": "bakfot", "bakgrunn": "bakgrunn", "bakgrunnen": "bakgrunn", "bakgrunnsarbeid": "bakgrunnsarbeid", "bakgrunnsmaterialet": "bakgrunnsmaterial", "bakgrunnsregel": "bakgrunnsregel", "bakgrunnsreglane": "bakgrunnsregl", "bakgrunnsreglar": "bakgrunnsregl", "bakhand": "bakhand", "bakke": "bakk", "bakkekontakt": "bakkekontakt", "bakken": "bakk", "bakkene": "bakk", "bakkete": "bakket", "bakketopp": "bakketopp", "baklandet": "bakland", "baklengs": "bakleng", "bakover": "bakov", "bakre": "bakr", "bakrus": "bakrus", "bakser": "baks", "bakveien": "bakvei", "balanse": "balans", "balansen": "balans", "balansere": "balanser", "balanserer": "balanser", "balansert": "balanser", "balanserte": "balanser", "balder": "bald", "balders": "bald", "balkong": "balkong", "balkongar": "balkong", "ball": "ball", "ballonger": "ballong", "bamble": "bambl", "band": "band", "banda": "band", "bandt": "band", "bane": "ban", "baneforbindelse": "baneforbind", "banekorridorene": "banekorridor", "banekorridorer": "banekorridor", "banemann": "banemann", "banenett": "banenett", "banenettet": "banenett", "banetilknytning": "banetilknytning", "banetransport": "banetransport", "bank": "bank", "bankar": "bank", "banken": "bank", "bankenes": "bank", "banker": "bank", "bankforening": "bankforening", "bankgaranti": "bankgaranti", "bankinnskot": "bankinnskot", "bankinnskudd": "bankinnskudd", "bankinnskuddene": "bankinnskudd", "bankinnskuddet": "bankinnskudd", "bankkonto": "bankkonto", "banklovgivingen": "banklovgiving", "banklovkommisjonen": "banklovkommisjon", "banksparing": "banksparing", "banksystemet": "banksystem", "banner": "bann", "barbent": "barbent", "barber": "barb", "bare": "bar", "barfot": "barfot", "barkebit": "barkebit", "barkebiten": "barkebit", "barken": "bark", "barlaup": "barlaup", "barn": "barn", "barna": "barn", "barnas": "barn", "barndomstraktene": "barndomstrakt", "barne": "barn", "barnebarn": "barnebarn", "barnebarns": "barnebarn", "barnefamiliar": "barnefamili", "barnehagar": "barnehag", "barnehage": "barnehag", "barnehager": "barnehag", "barnepass": "barnepass", "barnepensjon": "barnepensjon", "barnepensjonen": "barnepensjon", "barnepensjonens": "barnepensjon", "barnet": "barn", "barnetrygd": "barnetrygd", "barnets": "barn", "barnløse": "barnløs", "barre": "barr", "barten": "bart", "basbelopp": "basbelopp", "basehavn": "basehavn", "basen": "bas", "basere": "baser", "baserer": "baser", "baseres": "baser", "basert": "baser", "baserte": "baser", "basis": "basis", "basisalternativet": "basisalternativ", "basisår": "basisår", "basisåret": "basisår", "basketak": "basketak", "bassenget": "basseng", "bastet": "bast", "baten": "bat", "bauge": "baug", "baugen": "baug", "bauges": "baug", "bbl": "bbl", "be": "be", "bearbeidede": "bearbeid", "beboerdemokrati": "beboerdemokrati", "beboerkantiner": "beboerkantin", "bebuarane": "bebuar", "bebuarar": "bebuar", "bebuardemokrati": "bebuardemokrati", "bebuaren": "bebuar", "bebudede": "bebud", "bebyggelsen": "bebygg", "bebygget": "bebygg", "bede": "bed", "bedre": "bedr", "bedres": "bedr", "bedret": "bedr", "bedrift": "bedrift", "bedrifta": "bedrift", "bedriften": "bedrift", "bedriftene": "bedrift", "bedriftenes": "bedrift", "bedriftens": "bedrift", "bedrifter": "bedrift", "bedrifters": "bedrift", "bedriftsforsamling": "bedriftsforsamling", "bedriftsinterne": "bedriftsintern", "bedriftsordningen": "bedriftsordning", "bedriftsstørrelser": "bedriftsstørr", "bedring": "bedring", "bedrivas": "bedriv", "bedt": "bedt", "bedømme": "bedømm", "bedømminga": "bedømming", "bedømt": "bedømt", "befaler": "befal", "befaringene": "befaring", "befaringer": "befaring", "befinne": "befinn", "befinner": "befinn", "befolkede": "befolk", "befolkningen": "befolkning", "befolkningens": "befolkning", "befolkningskonsentrasjon": "befolkningskonsentrasjon", "befolkningsvekst": "befolkningsvekst", "befri": "befri", "begagna": "begagn", "begeistret": "begeistr", "beger": "beg", "begeret": "beger", "begge": "begg", "begivenhet": "begiven", "begjæring": "begjæring", "begjært": "begjært", "begrense": "begrens", "begrensede": "begrens", "begrenser": "begrens", "begrenses": "begrens", "begrenset": "begrens", "begrensete": "begrenset", "begrensing": "begrensing", "begrensinger": "begrensing", "begrensning": "begrensning", "begrensningene": "begrensning", "begrensninger": "begrensning", "begrensningsregler": "begrensningsregl", "begrep": "begrep", "begrepene": "begrep", "begreper": "begrep", "begrepet": "begrep", "begrepsbruk": "begrepsbruk", "begriper": "begrip", "begrunne": "begrunn", "begrunnede": "begrunn", "begrunnelse": "begrunn", "begrunnelsen": "begrunn", "begrunnelsene": "begrunn", "begrunnelser": "begrunn", "begrunner": "begrunn", "begrunnet": "begrunn", "begunstigede": "begunst", "begunstigedes": "begunst", "begunstiget": "begunst", "begynne": "begynn", "begynnelse": "begynn", "begynnelsen": "begynn", "begynnende": "begynn", "begynner": "begynn", "begynt": "begynt", "begynte": "begynt", "behag": "behag", "behandla": "behandl", "behandlar": "behandl", "behandlast": "behandl", "behandle": "behandl", "behandler": "behandl", "behandles": "behandl", "behandlet": "behandl", "behandling": "behandling", "behandlinga": "behandling", "behandlingen": "behandling", "behandlingsmåte": "behandlingsmåt", "behandlingspunkter": "behandlingspunkt", "beheftet": "beheft", "beherske": "behersk", "behersker": "behersk", "behold": "behold", "beholde": "behold", "beholder": "behold", "beholdes": "behold", "beholdning": "beholdning", "behov": "behov", "behova": "behov", "behovene": "behov", "behovet": "behov", "behovsprøvet": "behovsprøv", "behøver": "behøv", "behøves": "behøv", "beinkrok": "beinkrok", "beist": "beist", "beistet": "beist", "beitemarker": "beitemark", "beitet": "beit", "bekjempe": "bekjemp", "bekk": "bekk", "bekkelaget": "bekkelag", "bekkelagskai": "bekkelagskai", "bekkelagskaia": "bekkelagskai", "bekkelagskaiene": "bekkelagskai", "bekkelagsområdet": "bekkelagsområd", "bekostning": "bekostning", "bekreftelse": "bekreft", "bekrefter": "bekreft", "bekymrer": "bekymr", "bekymret": "bekymr", "belaste": "belast", "belastede": "belast", "belastende": "belast", "belaster": "belast", "belastes": "belast", "belastet": "belast", "belastning": "belastning", "belastningen": "belastning", "belastningene": "belastning", "belastninger": "belastning", "belgen": "belg", "beliggenhet": "beliggen", "beltestedet": "beltested", "beltet": "belt", "belyse": "belys", "belyses": "belys", "belyst": "belyst", "belønne": "belønn", "beløp": "beløp", "beløpe": "beløp", "beløpene": "beløp", "beløpet": "beløp", "beløpets": "beløp", "beløpsbegrenset": "beløpsbegrens", "beløpsgrense": "beløpsgrens", "beløpsmessig": "beløpsmess", "bemerke": "bemerk", "bemerker": "bemerk", "bemerket": "bemerk", "ben": "ben", "bena": "ben", "benefits": "benefit", "benevnes": "benevn", "benevningene": "benevning", "benevnt": "benevnt", "benkene": "benk", "benkepryd": "benkepryd", "benker": "benk", "benkeradene": "benkerad", "benket": "benk", "benrester": "benrest", "bensin": "bensin", "bensplinter": "bensplint", "bent": "bent", "benytte": "benytt", "benytter": "benytt", "benyttes": "benytt", "benyttet": "benytt", "ber": "ber", "berande": "ber", "berar": "ber", "berast": "ber", "berdal": "berdal", "bere": "ber", "beredskap": "beredskap", "beredskapsarbeidet": "beredskapsarbeid", "beredskapshensyn": "beredskapshensyn", "beredskapsmessig": "beredskapsmess", "beredskapsmessige": "beredskapsmess", "beredskapsplanlegging": "beredskapsplanlegging", "bereevne": "bereevn", "beregne": "beregn", "beregnede": "beregn", "beregner": "beregn", "beregnes": "beregn", "beregnet": "beregn", "beregning": "beregning", "beregningen": "beregning", "beregningene": "beregning", "beregninger": "beregning", "beregningsarbeidet": "beregningsarbeid", "beregningsgrunnlag": "beregningsgrunnlag", "beregningsgrunnlaget": "beregningsgrunnlag", "beregningsmessig": "beregningsmess", "beregningsprinsippet": "beregningsprinsipp", "beregningsrenten": "beregningsrent", "beregningsresultatene": "beregningsresultat", "beregningsteknisk": "beregningsteknisk", "beregningstidspunktet": "beregningstidspunkt", "berekraftig": "berekraft", "beretninger": "beretning", "berette": "berett", "beretter": "berett", "berettige": "berett", "berettigede": "berett", "berettiger": "berett", "berettiget": "berett", "berg": "berg", "berge": "berg", "bergelmer": "bergelm", "bergen": "berg", "berget": "berg", "bergets": "berg", "bergknauser": "bergknaus", "bergrise": "bergris", "bergriser": "bergris", "bergtatt": "bergtatt", "bero": "bero", "beror": "beror", "berre": "berr", "berserk": "berserk", "beruset": "berus", "berømmelse": "berømm", "berømt": "berømt", "berøre": "berør", "berører": "berør", "berøres": "berør", "berørt": "berørt", "berørte": "berørt", "bes": "bes", "beseiret": "beseir", "besk": "besk", "beskatning": "beskatning", "beskatningen": "beskatning", "beskatningsmyndigheten": "beskatningsmynd", "beskatningsprinsipp": "beskatningsprinsipp", "beskatningsprinsippet": "beskatningsprinsipp", "beskatte": "beskatt", "beskattede": "beskatt", "beskattes": "beskatt", "beskattet": "beskatt", "beskjed": "beskjed", "beskjeden": "beskjed", "beskjedent": "beskjedent", "beskjedne": "beskjedn", "beskrankninger": "beskrankning", "beskrevet": "beskrev", "beskrivast": "beskriv", "beskrive": "beskriv", "beskrivelse": "beskriv", "beskrivelser": "beskriv", "beskrivende": "beskriv", "beskriver": "beskriv", "beskrives": "beskriv", "beskrivingar": "beskriving", "beskytte": "beskytt", "beskytter": "beskytt", "beslag": "beslag", "beslutning": "beslutning", "beslutningen": "beslutning", "beslutningene": "beslutning", "beslutninger": "beslutning", "beslutningsgrunnlag": "beslutningsgrunnlag", "beslutningskjeden": "beslutningskjed", "beslutningsmyndighet": "beslutningsmynd", "beslutningsorganer": "beslutningsorgan", "beslutningsproblem": "beslutningsproblem", "beslutningsprosess": "beslutningsprosess", "beslutningsprosessen": "beslutningsprosess", "beslutningsrekkefølgen": "beslutningsrekkefølg", "beslutningsrekkene": "beslutningsrekk", "beslutningstaker": "beslutningstak", "beslutningsvariabel": "beslutningsvariabel", "beslutningsvariabelen": "beslutningsvariabel", "beslutte": "beslutt", "besluttende": "beslutt", "beslutter": "beslutt", "best": "best", "bestandig": "bestand", "beste": "best", "besteme": "bestem", "bestemme": "bestemm", "bestemmelse": "bestemm", "bestemmelsen": "bestemm", "bestemmelsene": "bestemm", "bestemmelsens": "bestemm", "bestemmelser": "bestemm", "bestemmelseshavn": "bestemmelseshavn", "bestemmer": "bestemm", "bestemmes": "bestemm", "bestemor": "bestemor", "bestemt": "bestemt", "bestemte": "bestemt", "bestevilkårsprinsippet": "bestevilkårsprinsipp", "bestille": "bestill", "bestilling": "bestilling", "bestla": "bestl", "besto": "besto", "bestod": "bestod", "bestå": "bestå", "bestående": "bestå", "består": "består", "bestått": "bestått", "besvare": "besvar", "besvart": "besvart", "besvergelser": "besverg", "besvimer": "besvim", "besøk": "besøk", "besøke": "besøk", "besøker": "besøk", "besøket": "besøk", "bet": "bet", "betalast": "betal", "betale": "betal", "betaler": "betal", "betales": "betal", "betaling": "betaling", "betalinga": "betaling", "betalingen": "betaling", "betalingsblankettar": "betalingsblankett", "betalingsevne": "betalingsevn", "betalingsforpliktelser": "betalingsforplikt", "betalingsmishaldet": "betalingsmishald", "betalingsperioder": "betalingsperiod", "betalingsplikt": "betalingsplikt", "betalingssystema": "betalingssystem", "betalingstid": "betalingstid", "betalt": "betalt", "betalte": "betalt", "betegnelse": "betegn", "betegnelsen": "betegn", "betegner": "betegn", "betegnes": "betegn", "betegnet": "betegn", "betenkte": "betenkt", "betingede": "beting", "betingelse": "beting", "betingelsene": "beting", "betingelser": "beting", "betinger": "beting", "betinget": "beting", "betjene": "betj", "betjener": "betjen", "betjenes": "betj", "betjening": "betjening", "betjeningen": "betjening", "betrakte": "betrakt", "betraktelig": "betrakt", "betraktelige": "betrakt", "betrakter": "betrakt", "betraktes": "betrakt", "betraktning": "betraktning", "betraktningen": "betraktning", "betraktninger": "betraktning", "betraktningsmåte": "betraktningsmåt", "betraktningsmåten": "betraktningsmåt", "betre": "betr", "betreffend": "betreffend", "betrodde": "betrodd", "betror": "betror", "betryggende": "betrygg", "bety": "bety", "betydeleg": "betyd", "betydelig": "betyd", "betydelige": "betyd", "betydning": "betydning", "betydningen": "betydning", "betydninger": "betydning", "betyr": "betyr", "beundrer": "beundr", "beuthien": "beuthi", "bevegelse": "beveg", "bevegelsene": "beveg", "beveger": "beveg", "bevilge": "bevilg", "bevilgede": "bevilg", "bevis": "bevis", "beviset": "bevis", "bevisreglar": "bevisregl", "bevisstløs": "bevisstløs", "bevøkollen": "bevøkoll", "bezwecken": "bezweck", "bhv": "bhv", "bhvs": "bhvs", "bibeholder": "bibehold", "bibliotek": "bibliotek", "bidra": "bidr", "bidrag": "bidrag", "bidraget": "bidrag", "bidrar": "bidr", "bidratt": "bidratt", "bidro": "bidro", "biene": "bien", "bifrost": "bifrost", "bikkje": "bikkj", "bikkjer": "bikkj", "bil": "bil", "bilde": "bild", "bildene": "bild", "bilder": "bild", "bildet": "bild", "biled": "biled", "biler": "bil", "biletet": "bilet", "bilferjer": "bilferj", "bilimport": "bilimport", "bilindustrien": "bilindustri", "billedspråk": "billedspråk", "billeg": "bil", "billettsalg": "billettsalg", "billig": "bil", "billigere": "billiger", "billing": "billing", "billings": "billing", "bilskirne": "bilskirn", "biltrafikk": "biltrafikk", "biltransport": "biltransport", "bindande": "bind", "binde": "bind", "bindende": "bind", "binder": "bind", "bindes": "bind", "bindinga": "binding", "bindingen": "binding", "bindingsliste": "bindingslist", "bindingslister": "bindingslist", "bindingstid": "bindingstid", "bindingstida": "bindingstid", "bindingstider": "bindingstid", "bingen": "bing", "biologisk": "biologisk", "bisk": "bisk", "bispevika": "bispevik", "bisselet": "bissel", "bistand": "bistand", "bistert": "bister", "bistå": "bistå", "bit": "bit", "bite": "bit", "bitene": "bit", "biter": "bit", "bitre": "bitr", "bitt": "bitt", "bitte": "bitt", "bitter": "bitt", "bittert": "bitter", "bjeff": "bjeff", "bjeffer": "bjeff", "bjelkelag": "bjelkelag", "bjelker": "bjelk", "bjelkeveggene": "bjelkevegg", "bjella": "bjell", "bjerkeris": "bjerkeris", "bjørn": "bjørn", "bjørnens": "bjørn", "bjørvika": "bjørvik", "bjørvikatunnelen": "bjørvikatunnel", "bl": "bl", "bladene": "blad", "blader": "blad", "blanda": "bland", "blandast": "bland", "blande": "bland", "blander": "bland", "blandet": "bland", "blandingen": "blanding", "blandingsforma": "blandingsform", "blandingsformer": "blandingsform", "blandt": "bland", "blanke": "blank", "blankettar": "blankett", "blant": "blant", "ble": "ble", "blek": "blek", "bleke": "blek", "blekksprut": "blekksprut", "blekner": "blekn", "bli": "bli", "blikk": "blikk", "blikket": "blikk", "blind": "blind", "blinde": "blind", "blink": "blink", "blinker": "blink", "blir": "blir", "blitt": "blitt", "blod": "blod", "blodbadet": "blodbad", "blodet": "blod", "blodfeide": "blodfeid", "blodig": "blod", "blodige": "blod", "blodighov": "blodighov", "blodskutte": "blodskutt", "blodsprengte": "blodsprengt", "blokka": "blokk", "blokker": "blokk", "blokkstein": "blokkstein", "blokktog": "blokktog", "blokktogavganger": "blokktogavgang", "blokktogforbindelse": "blokktogforbind", "blomst": "blomst", "blomster": "blomst", "blomsterkranser": "blomsterkrans", "blond": "blond", "blunker": "blunk", "blå": "blå", "blåfrosne": "blåfrosn", "blåklokker": "blåklokk", "blåmalte": "blåmalt", "blåner": "blån", "blåse": "blås", "blåsebelgen": "blåsebelg", "blåser": "blås", "blåsingen": "blåsing", "blåst": "blåst", "blåsvart": "blåsvart", "blør": "blør", "bløt": "bløt", "bnp": "bnp", "bo": "bo", "board": "board", "bob": "bob", "bobler": "bobl", "bod": "bod", "bodd": "bodd", "bodet": "bod", "bodrunden": "bodrund", "bodø": "bodø", "boende": "boend", "boet": "boet", "boets": "boet", "boforhold": "boforhold", "boforholdsundersøkelsen": "boforholdsundersøk", "boger": "bog", "boh": "boh", "bointeresser": "bointeress", "boka": "bok", "bokn": "bokn", "bokreserver": "bokreserv", "boks": "boks", "bokstav": "bokstav", "bokstaver": "bokstav", "bokstavlig": "bokstav", "bokstavtro": "bokstavtro", "bol": "bol", "bolig": "bol", "boligarealer": "boligareal", "boligbebyggelse": "boligbebygg", "boligbygg": "boligbygg", "boligbyggelag": "boligbyggelag", "boligbyggelaget": "boligbyggelag", "boligbyggelags": "boligbyggelag", "boligbyggelagsloven": "boligbyggelag", "boligdekning": "boligdekning", "boligen": "bol", "boligene": "bol", "boliger": "bol", "boligetablering": "boligetablering", "boligfeltet": "boligfelt", "boligfordeling": "boligfordeling", "boligforetak": "boligforetak", "boligfællesskaber": "boligfællesskab", "boligkonsentrasjoner": "boligkonsentrasjon", "boliglov": "bolig", "boliglover": "bolig", "boligmarkedet": "boligmarked", "boligmassen": "boligmass", "boligområdene": "boligområd", "boligområder": "boligområd", "boligområdet": "boligområd", "boligpolitikk": "boligpolitikk", "boligpolitikken": "boligpolitikk", "boligpolitiske": "boligpolitisk", "boligsameier": "boligsamei", "boligsamvirket": "boligsamvirk", "boligsektoren": "boligsektor", "boligselskabernes": "boligselskabern", "boligselskap": "boligselskap", "boligselskaper": "boligselskap", "boligsjef": "boligsjef", "bollingmo": "bollingmo", "bolt": "bolt", "bolten": "bolt", "boltet": "bolt", "boltorns": "boltorn", "bolverk": "bolverk", "bom": "bom", "bombinga": "bombing", "bomiljø": "bomiljø", "bomiljøer": "bomiljø", "bomiljøet": "bomiljø", "bommestad": "bommestad", "bompenger": "bompeng", "bondekone": "bondekon", "bonden": "bond", "bondens": "bond", "boområder": "boområd", "boområdet": "boområd", "bopel": "bopel", "bor": "bor", "bord": "bord", "bordene": "bord", "bordet": "bord", "bordkant": "bordkant", "bordplaten": "bordplat", "bords": "bord", "bore": "bor", "borealis": "borealis", "borehullet": "borehull", "boret": "bor", "borettshaverne": "borettshavern", "borettslag": "borettslag", "borettslagene": "borettslag", "borettslagenes": "borettslag", "borettslaget": "borettslag", "borettslagsandel": "borettslagsandel", "borettslagsandelen": "borettslagsandel", "borettslagsloven": "borettslag", "borettsloven": "borett", "borettslovene": "borett", "borettslovkomiteen": "borettslovkomite", "borettslovutvalget": "borettslovutvalg", "borettsregister": "borettsregist", "borettsregisteret": "borettsregister", "borg": "borg", "borge": "borg", "borgen": "borg", "borgere": "borger", "borgerne": "borgern", "borgestad": "borgestad", "borgmuren": "borgmur", "borgporten": "borgport", "borgs": "borg", "born": "born", "borna": "born", "borre": "borr", "borregaard": "borregaard", "bort": "bort", "borte": "bort", "bortenfor": "bortenfor", "bortfall": "bortfall", "bortfaller": "bortfall", "bortfallet": "bortfall", "bortforklare": "bortforklar", "borti": "borti", "bortkomne": "bortkomn", "bortleige": "bortl", "bortlån": "bortlån", "bortsett": "bortsett", "borttaking": "borttaking", "bosetter": "bosett", "bosetting": "bosetting", "bosettingen": "bosetting", "bosettingsmønsteret": "bosettingsmønster", "bostadrattsforeningar": "bostadrattsforening", "bostadrattsforeninger": "bostadrattsforening", "bostadsforeningars": "bostadsforeningar", "bostadsforetag": "bostadsforetag", "bostadsforetags": "bostadsforetag", "bostadsratt": "bostadsratt", "bostadsratter": "bostadsratt", "bostadsrattforeningar": "bostadsrattforening", "bostadsratthavare": "bostadsratthavar", "bostadsrattsforening": "bostadsrattsforening", "bostadsrattsforeningar": "bostadsrattsforening", "bostadsrattsforeningarna": "bostadsrattsforeningarn", "bostadsrattsforeningen": "bostadsrattsforening", "bostadsrattsforeninger": "bostadsrattsforening", "bostadsrattshavarna": "bostadsrattshavarn", "bostadsrattslagen": "bostadsrattslag", "bostadsrattsregister": "bostadsrattsregist", "bostadsrattsutredningen": "bostadsrattsutredning", "bostadsrettsforening": "bostadsrettsforening", "bot": "bot", "boten": "bot", "botnen": "botn", "botrygghet": "botrygg", "bottom": "bottom", "bra": "bra", "brage": "brag", "bragernesløpet": "bragernesløp", "bragernesutløpet": "bragernesutløp", "bragt": "bragt", "brak": "brak", "brakerøya": "brakerøy", "brakkvann": "brakkvann", "brann": "brann", "brannsår": "brannsår", "branntomt": "branntomt", "bransjenemnder": "bransjenemnd", "bransjeorganisasjoner": "bransjeorganisasjon", "bransjer": "bransj", "bratsbergbanen": "bratsbergban", "bratte": "bratt", "brattegard": "brattegard", "brattstrom": "brattstrom", "bred": "bred", "bredbent": "bredbent", "bredde": "bredd", "bredden": "bredd", "brede": "bred", "bredere": "breder", "bredt": "bredt", "brei": "brei", "breidablikk": "breidablikk", "breidd": "breidd", "breidda": "breidd", "breie": "breie", "breitt": "breitt", "breker": "brek", "brekke": "brekk", "bremerhaven": "bremerhav", "brenn": "brenn", "brenne": "brenn", "brennende": "brenn", "brenner": "brenn", "brent": "brent", "brer": "brer", "brett": "brett", "bretter": "brett", "brev": "brev", "breva": "brev", "brevik": "brevik", "breviksterminalen": "breviksterminal", "brevikstrømmen": "brevikstrømm", "brevikterminalen": "brevikterminal", "brime": "brim", "bring": "bring", "bringe": "bring", "bringer": "bring", "bringes": "bring", "bringsværd": "bringsværd", "brisinga": "brising", "briste": "brist", "brister": "brist", "britiske": "britisk", "brl": "brl", "bro": "bro", "broen": "broen", "brokk": "brokk", "brokks": "brokk", "bror": "bror", "broren": "bror", "brorparten": "brorpart", "brors": "bror", "brot": "brot", "broten": "brot", "bru": "bru", "brua": "brua", "brualternativet": "brualternativ", "brud": "brud", "brudd": "brudd", "brudeferd": "brudeferd", "brudegave": "brudegav", "brudelin": "brudelin", "brudelinet": "brudelin", "bruden": "brud", "brudens": "brud", "brudeparet": "brudepar", "brudepike": "brudepik", "brudepiken": "brudepik", "bruer": "bruer", "brugsforeninger": "brugsforening", "bruk": "bruk", "brukar": "bruk", "brukarane": "brukar", "brukarar": "brukar", "brukareige": "brukar", "brukareigeprinsipp": "brukareigeprinsipp", "brukareigeprinsippet": "brukareigeprinsipp", "brukaren": "brukar", "brukarens": "brukar", "brukarhusstanden": "brukarhusstand", "brukast": "bruk", "brukbar": "brukb", "brukbart": "brukbart", "bruke": "bruk", "bruken": "bruk", "bruker": "bruk", "brukeravgiftene": "brukeravgift", "brukere": "bruker", "brukeren": "bruker", "brukergrupper": "brukergrupp", "brukerinteressene": "brukerinteress", "brukerne": "brukern", "brukerorganisasjonene": "brukerorganisasjon", "brukerrepresentanter": "brukerrepresentant", "brukes": "bruk", "brukseining": "brukseining", "bruksnummer": "bruksnumm", "bruksoverlating": "bruksoverlating", "bruksoverlatinga": "bruksoverlating", "bruksovertaking": "bruksovertaking", "bruksregulering": "bruksregulering", "bruksrett": "bruksrett", "bruksrettane": "bruksrett", "bruksrettar": "bruksrett", "bruksretten": "bruksrett", "bruksrettsforhold": "bruksrettsforhold", "bruksrettsforholdet": "bruksrettsforhold", "brukt": "brukt", "brukte": "brukt", "brummer": "brumm", "brundtland": "brundtland", "brune": "brun", "brunrøde": "brunrød", "brunst": "brunst", "brutto": "brutto", "bruttobeskattes": "bruttobeskatt", "bruttoformue": "bruttoformu", "bry": "bry", "brydd": "brydd", "bryet": "bryet", "brygge": "brygg", "bryggekar": "bryggek", "bryggekaret": "bryggekar", "brygger": "brygg", "brygget": "brygg", "bryllups": "bryllup", "bryllupsgjest": "bryllupsgjest", "bryllupsgjestene": "bryllupsgjest", "bryllupsreise": "bryllupsreis", "bryn": "bryn", "bryne": "bryn", "brynene": "bryn", "brynestein": "brynestein", "brynesten": "brynest", "brynestenen": "brynesten", "brynet": "bryn", "brynje": "brynj", "brynjekledde": "brynjekledd", "brynjer": "brynj", "brynjulv": "brynjulv", "bryr": "bryr", "bryst": "bryst", "brystene": "bryst", "bryster": "bryst", "brystet": "bryst", "bryte": "bryt", "brytekamp": "brytekamp", "brytekampen": "brytekamp", "bryter": "bryt", "brytes": "bryt", "brå": "brå", "bråk": "bråk", "bråker": "bråk", "bråket": "bråk", "bråsinte": "bråsint", "bråthen": "bråth", "brått": "brått", "bråvender": "bråvend", "bråvåkner": "bråvåkn", "brød": "brød", "brødre": "brødr", "brødrene": "brødr", "brøkdel": "brøkdel", "brøken": "brøk", "brøle": "brøl", "brøler": "brøl", "brønn": "brønn", "brønnen": "brønn", "brønner": "brønn", "brønnøysundregistra": "brønnøysundregistr", "brøt": "brøt", "bu": "bu", "buande": "buand", "bud": "bud", "budde": "budd", "budsjett": "budsjett", "budsjettere": "budsjetter", "budsjetteringa": "budsjettering", "budsjettet": "budsjett", "budsjettproposisjonane": "budsjettproposisjon", "budsjettsaker": "budsjettsak", "budskapet": "budskap", "budt": "budt", "budtjeneste": "budtjenest", "bue": "bue", "buen": "buen", "buer": "buer", "bueskyting": "bueskyting", "bueskytter": "bueskytt", "buestrengen": "buestreng", "buet": "buet", "buffer": "buff", "buffere": "buffer", "buform": "buform", "buformer": "buform", "buinteressene": "buinteress", "buinteresser": "buinteress", "bukke": "bukk", "bukkekjerra": "bukkekjerr", "bukkene": "bukk", "bukker": "bukk", "bukkeskinnene": "bukkeskinn", "bukostnadene": "bukostnad", "buktende": "bukt", "bukter": "bukt", "buktet": "bukt", "buldrende": "buldr", "buldrer": "buldr", "bulk": "bulk", "bulkanlegg": "bulkanlegg", "bulkfartøyer": "bulkfartøy", "bulkgods": "bulkgod", "bulkhavn": "bulkhavn", "bulkklassifiserte": "bulkklassifiser", "bulklast": "bulkl", "bulklaster": "bulklast", "bulkprodukter": "bulkprodukt", "bulktrafikken": "bulktrafikk", "bulktransporter": "bulktransport", "bulkvare": "bulkvar", "bulkvarer": "bulkvar", "bulmeurt": "bulmeurt", "bumiljø": "bumiljø", "bumiljøarbeid": "bumiljøarbeid", "bumiljøet": "bumiljø", "bumiljøtiltak": "bumiljøtiltak", "bunde": "bund", "bunden": "bund", "bundesverband": "bundesverband", "bundet": "bund", "bundne": "bundn", "bunnen": "bunn", "bunner": "bunn", "bunnfradraget": "bunnfradrag", "bunnløst": "bunnløst", "bunns": "bunn", "buofl": "buofl", "buplikt": "buplikt", "bur": "bur", "burde": "burd", "bure": "bur", "bures": "bur", "burett": "burett", "buretten": "burett", "burettsbustader": "burettsbustad", "burettshavar": "burettshav", "burettshavarane": "burettshavar", "burettshavarar": "burettshavar", "burettshavaren": "burettshavar", "burettshavarinteressene": "burettshavarinteress", "burettsinnskot": "burettsinnskot", "burettsinnskota": "burettsinnskot", "burettslag": "burettslag", "burettslaga": "burettslag", "burettslagandel": "burettslagandel", "burettslagbustader": "burettslagbustad", "burettslaget": "burettslag", "burettslagets": "burettslag", "burettslagsandel": "burettslagsandel", "burettslagsandelane": "burettslagsandel", "burettslagsandelar": "burettslagsandel", "burettslagsandelen": "burettslagsandel", "burettslagsbustad": "burettslagsbustad", "burettslagsbustadene": "burettslagsbustad", "burettslagsbustader": "burettslagsbustad", "burettslagsforhold": "burettslagsforhold", "burettslagsforma": "burettslagsform", "burettslagslov": "burettslag", "burettslagslova": "burettslag", "burettslagsmidlar": "burettslagsmidl", "burettslagsmodell": "burettslagsmodell", "burettslagsmodellen": "burettslagsmodell", "burettslov": "burett", "burettslovene": "burett", "burettslovgjeving": "burettslovgjeving", "burettslovgjevinga": "burettslovgjeving", "burettslovutvalet": "burettslovutval", "burettsregister": "burettsregist", "burettsregisteret": "burettsregister", "buseti": "buseti", "busituasjon": "busituasjon", "busituasjonen": "busituasjon", "busk": "busk", "buskapen": "buskap", "busker": "busk", "buskerud": "buskerud", "bustad": "bustad", "bustadaksjeselskap": "bustadaksjeselskap", "bustadaksjeselskapet": "bustadaksjeselskap", "bustadar": "bustad", "bustadbank": "bustadbank", "bustadbehov": "bustadbehov", "bustadbehova": "bustadbehov", "bustadbygg": "bustadbygg", "bustadbygga": "bustadbygg", "bustadbygging": "bustadbygging", "bustadbygginga": "bustadbygging", "bustadbyggjelag": "bustadbyggjelag", "bustadbyggjelaga": "bustadbyggjelag", "bustadbyggjelaget": "bustadbyggjelag", "bustadbyggjelagsforma": "bustadbyggjelagsform", "bustadbyggjelagslov": "bustadbyggjelag", "bustadbyggjelagslova": "bustadbyggjelag", "bustadbyte": "bustadbyt", "bustadeigarar": "bustadeigar", "bustadeigedom": "bustadeigedom", "bustaden": "bustad", "bustadene": "bustad", "bustadeneburetten": "bustadeneburett", "bustader": "bustad", "bustadetablering": "bustadetablering", "bustadfellesskapar": "bustadfellesskap", "bustadfellesskapen": "bustadfellesskap", "bustadfinansieringa": "bustadfinansiering", "bustadforbruket": "bustadforbruk", "bustadfordelinga": "bustadfordeling", "bustadforhold": "bustadforhold", "bustadform": "bustadform", "bustadformene": "bustadform", "bustadformer": "bustadform", "bustadfornying": "bustadfornying", "bustadforsyning": "bustadforsyning", "bustadforsyninga": "bustadforsyning", "bustadforvaltning": "bustadforvaltning", "bustadforvaltninga": "bustadforvaltning", "bustadføremål": "bustadføremål", "bustadføremålet": "bustadføremål", "bustadføretak": "bustadføretak", "bustadføretaka": "bustadføretak", "bustadinndelinga": "bustadinndeling", "bustadinteressentane": "bustadinteressent", "bustadinteressenten": "bustadinteressent", "bustadinteressentskap": "bustadinteressentskap", "bustadkjøparar": "bustadkjøpar", "bustadkonsumet": "bustadkonsum", "bustadkooperasjonen": "bustadkooperasjon", "bustadkooperativ": "bustadkooperativ", "bustadkooperativa": "bustadkooperativ", "bustadkooperative": "bustadkooperativ", "bustadkooperativet": "bustadkooperativ", "bustadkooperativt": "bustadkooperativ", "bustadlause": "bustadlaus", "bustadleige": "bustadl", "bustadlov": "bustad", "bustadlovene": "bustad", "bustadlovgjevinga": "bustadlovgjeving", "bustadmarknad": "bustadmarknad", "bustadmarknaden": "bustadmarknad", "bustadmasse": "bustadmass", "bustadmeldingane": "bustadmelding", "bustadmiljø": "bustadmiljø", "bustadområde": "bustadområd", "bustadområdet": "bustadområd", "bustadomsetninga": "bustadomsetning", "bustadoppføringslova": "bustadoppføring", "bustadorganisasjon": "bustadorganisasjon", "bustadorganisasjonane": "bustadorganisasjon", "bustadorganisasjonar": "bustadorganisasjon", "bustadorganisering": "bustadorganisering", "bustadpolitikk": "bustadpolitikk", "bustadpolitikken": "bustadpolitikk", "bustadpolitiske": "bustadpolitisk", "bustadprisane": "bustadpris", "bustadproduksjon": "bustadproduksjon", "bustadproduksjonen": "bustadproduksjon", "bustadprosjekt": "bustadprosjekt", "bustadreglane": "bustadregl", "bustadrett": "bustadrett", "bustadsamanslutningane": "bustadsamanslutning", "bustadsameiger": "bustadsam", "bustadsamvirke": "bustadsamvirk", "bustadsamvirket": "bustadsamvirk", "bustadsamvirkets": "bustadsamvirk", "bustadseksjon": "bustadseksjon", "bustadseksjonane": "bustadseksjon", "bustadseksjonar": "bustadseksjon", "bustadsituasjon": "bustadsituasjon", "bustadskaffing": "bustadskaffing", "bustadsosiale": "bustadsosial", "bustadspørsmåla": "bustadspørsmål", "bustadstiftingar": "bustadstifting", "bustadtilbod": "bustadtilbod", "bustadverksemd": "bustadverksemd", "bustehode": "bustehod", "busten": "bust", "bustønad": "bustønad", "butikkar": "butikk", "butilhøva": "butilhøv", "butilhøve": "butilhøv", "butt": "butt", "buutgifter": "buutgift", "by": "by", "byane": "byan", "byar": "byar", "bybroen": "bybro", "bydel": "bydel", "byen": "byen", "byene": "byen", "byenes": "byen", "byens": "byen", "byer": "byer", "byformål": "byformål", "byfornying": "byfornying", "byfornyinga": "byfornying", "byfunksjoner": "byfunksjon", "bygd": "bygd", "bygda": "bygd", "bygde": "bygd", "bygder": "bygd", "bygg": "bygg", "bygga": "bygg", "bygge": "bygg", "byggemarked": "byggemarked", "bygger": "bygg", "bygges": "bygg", "byggesoner": "byggeson", "bygget": "bygg", "byggetrinn": "byggetrinn", "byggevirksomhet": "byggevirksom", "byggherre": "byggherr", "byggherrecentral": "byggherrecentral", "byggherren": "byggherr", "byggherreombod": "byggherreombod", "byggherresida": "byggherresid", "bygging": "bygging", "bygginga": "bygging", "byggjast": "byggj", "byggje": "byggj", "byggjebudsjett": "byggjebudsjett", "byggjebudsjettet": "byggjebudsjett", "byggjefeil": "byggjefeil", "byggjefelt": "byggjefelt", "byggjeforskriftene": "byggjeforskrift", "byggjeklare": "byggjeklar", "byggjekostnader": "byggjekostnad", "byggjelån": "byggjelån", "byggjematerialar": "byggjematerial", "byggjeoppdrag": "byggjeoppdrag", "byggjeperioden": "byggjeperiod", "byggjeprosess": "byggjeprosess", "byggjeprosessen": "byggjeprosess", "byggjeprosjekt": "byggjeprosjekt", "byggjeprosjekta": "byggjeprosjekt", "byggjeprosjektet": "byggjeprosjekt", "byggjer": "byggj", "byggjerekneskapen": "byggjerekneskap", "byggjesak": "byggjesak", "byggjesaka": "byggjesak", "byggjeskikk": "byggjeskikk", "byggjestyret": "byggjestyr", "byggjetekniske": "byggjeteknisk", "byggjetida": "byggjetid", "byggjeverksemda": "byggjeverksemd", "byggkvalitet": "byggkvalit", "byggmester": "byggmest", "byggmesteren": "byggmester", "byggnadsforening": "byggnadsforening", "byggøkonomi": "byggøkonomi", "bygning": "bygning", "bygningar": "bygning", "bygningen": "bygning", "bygninger": "bygning", "bygningsetaten": "bygningsetat", "bygningsetatens": "bygningsetat", "bygningskrav": "bygningskrav", "bygningsloven": "bygning", "bygningslovens": "bygning", "bygningslovgjevinga": "bygningslovgjeving", "bygningsmateriale": "bygningsmaterial", "bygt": "bygt", "bykassen": "bykass", "bykjernen": "bykjern", "byleist": "byleist", "bymessig": "bymess", "bymiljø": "bymiljø", "byområdene": "byområd", "byområder": "byområd", "byområdet": "byområd", "bypass": "bypass", "byr": "byr", "byrden": "byrd", "byrelaterte": "byrelater", "byrett": "byrett", "byrje": "byrj", "byrådet": "byråd", "byrådsbehandling": "byrådsbehandling", "byrådsmøte": "byrådsmøt", "byrådssak": "byrådssak", "byrådsvedtak": "byrådsvedtak", "bys": "bys", "bysamfunn": "bysamfunn", "bysamfunnene": "bysamfunn", "bysamfunnet": "bysamfunn", "bysentraene": "bysentra", "byspredning": "byspredning", "bystruktur": "bystruktur", "bystrøk": "bystrøk", "bystyre": "bystyr", "bystyret": "bystyr", "bystyrevedtak": "bystyrevedtak", "bystyrevedtaket": "bystyrevedtak", "bytast": "byt", "byte": "byt", "byteforhold": "byteforhold", "bytte": "bytt", "byttet": "bytt", "byutvikling": "byutvikling", "byutviklingen": "byutvikling", "byutviklings": "byutvikling", "byutviklingsformål": "byutviklingsformål", "byutviklingsmønster": "byutviklingsmønst", "byutviklingsområder": "byutviklingsområd", "byutviklingsplaner": "byutviklingsplan", "byutviklingstankegang": "byutviklingstankegang", "både": "båd", "bål": "bål", "bålene": "bål", "bålet": "bål", "bålferden": "bålferd", "båløyg": "båløyg", "bånd": "bånd", "båndet": "bånd", "båret": "bår", "båt": "båt", "båten": "båt", "båter": "båt", "båtplass": "båtplass", "båtripa": "båtrip", "bære": "bær", "bærebjelker": "bærebjelk", "bæreevne": "bæreevn", "bærekraftig": "bærekraft", "bærende": "bær", "bærer": "bær", "bæres": "bær", "bærum": "bærum", "bøe": "bøe", "bøen": "bøen", "bøkene": "bøk", "bøker": "bøk", "bølgene": "bølg", "bølger": "bølg", "bølgje": "bølgj", "bønder": "bønd", "bønnfaller": "bønnfall", "bønnfalt": "bønnfalt", "bør": "bør", "børge": "børg", "børs": "bør", "børstet": "børst", "bøte": "bøt", "bøter": "bøt", "bøtter": "bøtt", "bøyd": "bøyd", "bøye": "bøye", "bøyer": "bøyer", "bøyes": "bøyes", "bøyet": "bøyet", "bøyla": "bøyl", "c": "c", "ca": "ca", "cargo": "cargo", "cargos": "cargo", "carl": "carl", "cecodhas": "cecodh", "cellulose": "cellulos", "centralforening": "centralforening", "chilenske": "chilensk", "christina": "christin", "christine": "christin", "cif": "cif", "clay": "clay", "cluster": "clust", "clusteret": "cluster", "co": "co", "coloroll": "coloroll", "com": "com", "comite": "comit", "common": "common", "compensation": "compensation", "confederazione": "confederazion", "container": "contain", "containeraktivitet": "containeraktivit", "containeraktivitetene": "containeraktivitet", "containerareal": "containerareal", "containerarealene": "containerareal", "containerarealer": "containerareal", "containerarealet": "containerareal", "containerdepotene": "containerdepot", "containere": "container", "containeren": "container", "containerfordeling": "containerfordeling", "containergods": "containergod", "containergodset": "containergods", "containerhavn": "containerhavn", "containerhavnen": "containerhavn", "containerhavnene": "containerhavn", "containerhavner": "containerhavn", "containerhåndtering": "containerhåndtering", "containerhåndteringen": "containerhåndtering", "containerhåndteringskapasitet": "containerhåndteringskapasit", "containerhåndteringsområdet": "containerhåndteringsområd", "containerisere": "containeriser", "containerisering": "containerisering", "containeriseringsgrad": "containeriseringsgrad", "containeriseringsgraden": "containeriseringsgrad", "containerisert": "containeriser", "containeriserte": "containeriser", "containerkapasitet": "containerkapasit", "containerkraner": "containerkran", "containerlast": "containerl", "containermarkedet": "containermarked", "containerne": "containern", "containernes": "containern", "containeromlasting": "containeromlasting", "containeromsetning": "containeromsetning", "containeromslag": "containeromslag", "containeromslaget": "containeromslag", "containerrederiene": "containerrederi", "containerruter": "containerrut", "containerskip": "containerskip", "containerskipene": "containerskip", "containerskipenes": "containerskip", "containerterminal": "containerterminal", "containerterminalen": "containerterminal", "containerterminalene": "containerterminal", "containerterminaler": "containerterminal", "containertrafikk": "containertrafikk", "containertrafikken": "containertrafikk", "containertransport": "containertransport", "containertransporten": "containertransport", "containertransporter": "containertransport", "containerutstyret": "containerutstyr", "containervekst": "containervekst", "containerveksten": "containervekst", "containervirksomhet": "containervirksom", "containervirksomheten": "containervirksom", "containervolum": "containervolum", "containervolumene": "containervolum", "containervolumer": "containervolum", "cooperative": "cooperativ", "coordination": "coordination", "cost": "cost", "cruise": "cruis", "ctse": "ctse", "d": "d", "da": "da", "dag": "dag", "dagar": "dag", "dagbok": "dagbok", "dagen": "dag", "dagene": "dag", "dagens": "dag", "dager": "dag", "dagfinn": "dagfinn", "daggry": "daggry", "daghjem": "daghjem", "dagjeldande": "dagjeld", "dagjeldende": "dagjeld", "dagleg": "dag", "daglege": "dag", "daglig": "dag", "daglige": "dag", "dagligliv": "dagligliv", "dagliglivet": "dagligliv", "dagligvarer": "dagligvar", "dagmulkt": "dagmulkt", "dagslys": "dagsly", "dagslysbegrensninger": "dagslysbegrensning", "dagslyset": "dagslys", "dagtid": "dagtid", "dal": "dal", "dalarnas": "dalarn", "dale": "dal", "daler": "dal", "dalsøkk": "dalsøkk", "dam": "dam", "damper": "damp", "danielsen": "dani", "danmark": "danmark", "danmarks": "danmark", "danne": "dann", "dannelsen": "dann", "danner": "dann", "dannes": "dann", "dannet": "dann", "dansen": "dans", "danser": "dans", "danset": "dans", "dansk": "dansk", "danske": "dansk", "data": "dat", "database": "databas", "dataene": "data", "datainnsamlingsmetode": "datainnsamlingsmetod", "datamateriale": "datamaterial", "datasystem": "datasystem", "datasystema": "datasystem", "daterast": "dater", "datere": "dater", "datert": "dater", "dato": "dato", "datoen": "dato", "datter": "datt", "datteren": "datter", "datterselskap": "datterselskap", "datterselskaper": "datterselskap", "daværende": "davær", "de": "de", "debatt": "debatt", "debatten": "debatt", "debitert": "debiter", "debitor": "debitor", "dedikerte": "dediker", "defekte": "defekt", "definere": "definer", "definerer": "definer", "defineres": "definer", "definert": "definer", "definerte": "definer", "definisjon": "definisjon", "definisjonane": "definisjon", "definisjonar": "definisjon", "definisjonen": "definisjon", "definisjonene": "definisjon", "definisjoner": "definisjon", "definitive": "definitiv", "definitivt": "definitiv", "deg": "deg", "dei": "dei", "deig": "deig", "deilig": "deil", "deilige": "deil", "deiligste": "deiligst", "deira": "deir", "deiser": "deis", "dekar": "dek", "dekk": "dekk", "dekke": "dekk", "dekkende": "dekk", "dekker": "dekk", "dekkes": "dekk", "dekket": "dekk", "dekkjast": "dekkj", "dekkje": "dekkj", "dekkjer": "dekkj", "dekkshøyde": "dekkshøyd", "dekning": "dekning", "dekninga": "dekning", "dekningen": "dekning", "dekningslova": "dekning", "dekningsområde": "dekningsområd", "dekningsprosent": "dekningsprosent", "dekningsrett": "dekningsrett", "dekt": "dekt", "dekte": "dekt", "del": "del", "delar": "del", "delast": "del", "dele": "del", "delegasjon": "delegasjon", "delegere": "deleger", "delegering": "delegering", "delegert": "deleger", "delegerte": "deleger", "delegertforsamling": "delegertforsamling", "delegertordning": "delegertordning", "delegertordningar": "delegertordning", "deleige": "del", "delen": "del", "delene": "del", "delentreprisar": "delentrepris", "deler": "del", "deles": "del", "deling": "deling", "delinga": "deling", "delingen": "deling", "delingsforholdet": "delingsforhold", "delingsreglene": "delingsregl", "delingsregler": "delingsregl", "delingstilfella": "delingstilfell", "delingsåret": "delingsår", "delje": "delj", "delkapittel": "delkapittel", "della": "dell", "delle": "dell", "delling": "delling", "delmål": "delmål", "delmålene": "delmål", "delområder": "delområd", "delplanarbeidet": "delplanarbeid", "delrapport": "delrapport", "delrapporter": "delrapport", "dels": "del", "delsystemet": "delsystem", "delt": "delt", "delta": "delt", "deltagelse": "deltag", "deltagende": "deltag", "deltager": "deltag", "deltagerforhold": "deltagerforhold", "deltagerkommunene": "deltagerkommun", "deltagerkommunenes": "deltagerkommun", "deltakar": "deltak", "deltakarane": "deltakar", "deltakarar": "deltakar", "deltakartal": "deltakartal", "deltakelse": "deltak", "deltakende": "deltak", "deltaker": "deltak", "deltakere": "deltaker", "deltakerforhold": "deltakerforhold", "deltakerkommunene": "deltakerkommun", "deltakerkommunenes": "deltakerkommun", "deltakerlignende": "deltakerlign", "deltakerne": "deltakern", "deltaking": "deltaking", "deltakinga": "deltaking", "deltar": "delt", "deltatt": "deltatt", "delte": "delt", "deltid": "deltid", "deltids": "deltid", "deltidsandel": "deltidsandel", "deltidsansatte": "deltidsansatt", "deltidsansattes": "deltidsansatt", "deltidsarbeidere": "deltidsarbeider", "deltidsstilling": "deltidsstilling", "deltok": "deltok", "delutredning": "delutredning", "delutredninger": "delutredning", "delvis": "delvis", "dem": "dem", "demmes": "demm", "demokrati": "demokrati", "demokratisk": "demokratisk", "demokratiske": "demokratisk", "demper": "demp", "demre": "demr", "den": "den", "denger": "deng", "denne": "denn", "dennes": "denn", "denofa": "denof", "dens": "den", "departement": "departement", "departementene": "departement", "departementer": "departement", "departementet": "departement", "departementets": "departement", "deponerast": "deponer", "deponere": "deponer", "deponerer": "deponer", "deponering": "deponering", "deponeringslova": "deponering", "deponeringsordning": "deponeringsordning", "depot": "depot", "depoter": "depot", "depothold": "depothold", "depotholdet": "depothold", "depotsted": "depotsted", "der": "der", "dere": "der", "deres": "der", "deretter": "derett", "derfor": "derfor", "derfra": "derfr", "derfrå": "derfrå", "derigjennom": "derigjennom", "derimot": "derimot", "dermed": "dermed", "dernest": "dernest", "dersom": "dersom", "dertil": "dertil", "derunder": "derund", "derved": "derved", "des": "des", "desember": "desemb", "desentralisert": "desentraliser", "desse": "dess", "dessutan": "dessutan", "dessuten": "dessut", "destinasjon": "destinasjon", "destinasjoner": "destinasjon", "destinasjonsmønstre": "destinasjonsmønstr", "desto": "desto", "det": "det", "detalj": "detalj", "detaljane": "detalj", "detaljeringsgrad": "detaljeringsgrad", "detaljert": "detaljer", "detaljerte": "detaljer", "detaljleddet": "detaljledd", "detaljregulere": "detaljreguler", "detaljregulert": "detaljreguler", "dets": "det", "detta": "dett", "dette": "dett", "deutscher": "deutsch", "dfds": "dfds", "dh": "dh", "di": "di", "dialog": "dialog", "die": "die", "differanse": "differans", "differansen": "differans", "differanser": "differans", "differensierte": "differensier", "diger": "dig", "digert": "diger", "digre": "digr", "dikte": "dikt", "diktere": "dikter", "dikteren": "dikter", "dikteres": "dikter", "dikterkunstens": "dikterkunst", "dilemma": "dilemm", "diltende": "dilt", "dimensjoner": "dimensjon", "dimensjonerende": "dimensjoner", "dimensjonering": "dimensjonering", "din": "din", "dine": "din", "dingler": "dingl", "dir": "dir", "direkte": "direkt", "direktekrav": "direktekrav", "direktekravsregel": "direktekravsregel", "direkteutdelingar": "direkteutdeling", "direktiv": "direktiv", "direktivbestemmelsen": "direktivbestemm", "direktivet": "direktiv", "direktivets": "direktiv", "direktør": "direktør", "dirigerer": "diriger", "dirigeres": "diriger", "dirre": "dirr", "dirrer": "dirr", "disaggregert": "disaggreger", "diskriminerande": "diskriminer", "diskriminere": "diskriminer", "diskriminering": "diskriminering", "diskrimineringsforbod": "diskrimineringsforbod", "diskusjon": "diskusjon", "diskusjonar": "diskusjon", "diskusjonen": "diskusjon", "diskutere": "diskuter", "diskuteres": "diskuter", "diskutert": "diskuter", "dispensasjon": "dispensasjon", "dispensasjoner": "dispensasjon", "disponere": "disponer", "disponerer": "disponer", "disponeres": "disponer", "disponering": "disponering", "disponeringen": "disponering", "disponert": "disponer", "disponerte": "disponer", "disposisjon": "disposisjon", "disposisjonane": "disposisjon", "disposisjonar": "disposisjon", "disposisjonen": "disposisjon", "disposisjoner": "disposisjon", "disposisjonsrett": "disposisjonsrett", "disposisjonsretten": "disposisjonsrett", "disse": "diss", "dissens": "diss", "dissensen": "dissens", "disses": "diss", "distanse": "distans", "distanseavhengige": "distanseavheng", "distansen": "distans", "distanser": "distans", "distribuerer": "distribuer", "distribueres": "distribuer", "distribusjon": "distribusjon", "distribusjonen": "distribusjon", "distribusjonsbiler": "distribusjonsbil", "distribusjonsdistanser": "distribusjonsdistans", "distribusjonsenhet": "distribusjonsen", "distribusjonsfunksjonen": "distribusjonsfunksjon", "distribusjonsfunksjoner": "distribusjonsfunksjon", "distribusjonskanalene": "distribusjonskanal", "distribusjonskanaler": "distribusjonskanal", "distribusjonslagre": "distribusjonslagr", "distribusjonsløsningene": "distribusjonsløsning", "distribusjonsløsninger": "distribusjonsløsning", "distribusjonsmønsteret": "distribusjonsmønster", "distribusjonsmønstre": "distribusjonsmønstr", "distribusjonsroller": "distribusjonsroll", "distribusjonsselskaper": "distribusjonsselskap", "distribusjonssentraler": "distribusjonssentral", "distribusjonssentrum": "distribusjonssentrum", "distribusjonssystemene": "distribusjonssystem", "distribusjonsterminaler": "distribusjonsterminal", "distribusjonstransporter": "distribusjonstransport", "distribusjonsvirksomheten": "distribusjonsvirksom", "distributører": "distributør", "distriktene": "distrikt", "distrikts": "distrikt", "dit": "dit", "ditt": "ditt", "diverse": "divers", "diversifisering": "diversifisering", "diversifisert": "diversifiser", "djerv": "djerv", "djervere": "djerver", "dkk": "dkk", "dobbel": "dobbel", "dobbelt": "dobbelt", "dobbeltbeskatning": "dobbeltbeskatning", "dobbelte": "dobbelt", "dobbeltpantsetjing": "dobbeltpantsetjing", "dobbeltrolle": "dobbeltroll", "dobbeltrøyst": "dobbeltrøyst", "dobbeltsal": "dobbeltsal", "dobbeltspor": "dobbeltspor", "dobbeltsporet": "dobbeltspor", "doble": "dobl", "dobles": "dobl", "dobling": "dobling", "dog": "dog", "dokument": "dokument", "dokumenta": "dokument", "dokumentasjon": "dokumentasjon", "dokumentavgift": "dokumentavgift", "dokumenteigenskapar": "dokumenteigenskap", "dokumentene": "dokument", "dokumenter": "dokument", "dokumentert": "dokumenter", "dokumentet": "dokument", "dokumenthandtering": "dokumenthandtering", "dom": "dom", "dominans": "dominan", "dominerande": "dominer", "dominere": "dominer", "dominerende": "dominer", "dominerer": "dominer", "domineres": "dominer", "dominert": "dominer", "dommarar": "dommar", "dommen": "domm", "dommene": "domm", "dommer": "domm", "dommere": "dommer", "domstolane": "domstol", "domstolar": "domstol", "domstolen": "domstol", "domstolens": "domstol", "domstolslova": "domstol", "dotter": "dott", "dotterforetag": "dotterforetag", "dotterselskap": "dotterselskap", "dotterselskapet": "dotterselskap", "dottertiltak": "dottertiltak", "doven": "dov", "dovent": "dovent", "dovne": "dovn", "down": "down", "dra": "dra", "drabelig": "drab", "drabelige": "drab", "drag": "drag", "draga": "drag", "drage": "drag", "dragehodet": "dragehod", "dragen": "drag", "drager": "drag", "dragsug": "dragsug", "drakk": "drakk", "dramatisk": "dramatisk", "drammen": "dramm", "drammenselva": "drammenselv", "drammensfjorden": "drammensfjord", "drammensregionens": "drammensregion", "drapet": "drap", "drar": "drar", "drasil": "drasil", "drastisk": "drastisk", "dratt": "dratt", "draug": "draug", "draupne": "draupn", "dreide": "dreid", "dreie": "dreie", "dreier": "dreier", "dreining": "dreining", "drepe": "drep", "dreper": "drep", "drept": "drept", "drepte": "drept", "dressmann": "dressmann", "drev": "drev", "drevet": "drev", "drift": "drift", "drifta": "drift", "driften": "drift", "driftoversikt": "driftoversikt", "driftsansvar": "driftsansv", "driftsansvaret": "driftsansvar", "driftsbudsjett": "driftsbudsjett", "driftsformer": "driftsform", "driftsinnskrenkinger": "driftsinnskrenking", "driftsinnskrenkninger": "driftsinnskrenkning", "driftsinntektene": "driftsinntekt", "driftskostnader": "driftskostnad", "driftsmidler": "driftsmidl", "driftsopplegg": "driftsopplegg", "driftsoversikt": "driftsoversikt", "driftsoverskotet": "driftsoverskot", "driftsselskapet": "driftsselskap", "driftssystemer": "driftssystem", "drikk": "drikk", "drikke": "drikk", "drikkegilde": "drikkegild", "drikkehorn": "drikkehorn", "drikkehornet": "drikkehorn", "drikken": "drikk", "drikker": "drikk", "dristig": "drist", "dristige": "drist", "driv": "driv", "drivast": "driv", "drive": "driv", "driven": "driv", "drivende": "driv", "driver": "driv", "drives": "driv", "drivkrefter": "drivkreft", "drivne": "drivn", "dro": "dro", "dronning": "dronning", "dronningen": "dronning", "drukket": "drukk", "drukne": "drukn", "druknede": "drukn", "drukner": "drukn", "druknet": "drukn", "dryppe": "drypp", "drypper": "drypp", "dråpe": "dråp", "dråpene": "dråp", "drøbak": "drøbak", "drøbaksundet": "drøbaksund", "drøfta": "drøft", "drøftast": "drøft", "drøfte": "drøft", "drøftelsen": "drøft", "drøfter": "drøft", "drøftes": "drøft", "drøftet": "drøft", "drøfting": "drøfting", "drøftinga": "drøfting", "drøftingar": "drøfting", "drøftingen": "drøfting", "drøftinger": "drøfting", "drøm": "drøm", "drømme": "drømm", "drømmene": "drømm", "drømmer": "drømm", "drømt": "drømt", "drønnende": "drønn", "drønner": "drønn", "drøy": "drøy", "drøye": "drøye", "drøyt": "drøyt", "du": "du", "duger": "dug", "duggen": "dugg", "duk": "duk", "dukker": "dukk", "dukket": "dukk", "dulter": "dult", "dum": "dum", "dumme": "dumm", "dummer": "dumm", "dummere": "dummer", "dummeste": "dummest", "dummet": "dumm", "dumt": "dumt", "dun": "dun", "dunder": "dund", "dundrende": "dundr", "dundrer": "dundr", "dunker": "dunk", "dur": "dur", "durer": "dur", "dverg": "dverg", "dvergen": "dverg", "dvergene": "dverg", "dvergenes": "dverg", "dvergens": "dverg", "dverger": "dverg", "dvergers": "dverg", "dvergeslekt": "dvergeslekt", "dvergsten": "dvergst", "dvs": "dvs", "dy": "dy", "dybde": "dybd", "dybdeproblemer": "dybdeproblem", "dybedal": "dybedal", "dykker": "dykk", "dyktig": "dykt", "dyktighet": "dykt", "dynamikk": "dynamikk", "dynamisk": "dynamisk", "dynke": "dynk", "dyp": "dyp", "dype": "dyp", "dypere": "dyper", "dypeskaten": "dypeskat", "dypest": "dypest", "dypet": "dyp", "dypgående": "dypgå", "dyppes": "dypp", "dypt": "dypt", "dyr": "dyr", "dyrare": "dyrar", "dyre": "dyr", "dyrebare": "dyrebar", "dyrehald": "dyrehald", "dyrehaldet": "dyrehald", "dyrere": "dyrer", "dyret": "dyr", "dyrt": "dyrt", "dystert": "dyster", "dystre": "dystr", "dåres": "dår", "dårleg": "dår", "dårlegare": "dårlegar", "dårlig": "dår", "dårlige": "dår", "dårligere": "dårliger", "dø": "dø", "død": "død", "døde": "død", "dødelighet": "død", "dødelighetsarv": "dødelighetsarv", "dødelighetsarven": "dødelighetsarv", "døden": "død", "dødes": "død", "dødning": "dødning", "dødningene": "dødning", "dødninger": "dødning", "dødningeskaller": "dødningeskall", "dødsbo": "dødsbo", "dødsboet": "dødsbo", "dødsfall": "dødsfall", "dødsfallet": "dødsfall", "dødsfallstidspunktet": "dødsfallstidspunkt", "dødsriket": "dødsrik", "dødsrikets": "dødsrik", "dødsrisiko": "dødsrisiko", "dødt": "dødt", "døgn": "døgn", "døgnet": "døgn", "døgnets": "døgn", "døma": "døm", "døme": "døm", "dømes": "døm", "dømet": "døm", "dømme": "dømm", "dømmer": "dømm", "dønn": "dønn", "dør": "dør", "døren": "dør", "dørene": "dør", "dører": "dør", "dørgende": "dørg", "dørhellen": "dørhell", "dørsprekken": "dørsprekk", "døråpningen": "døråpning", "døtre": "døtr", "døtrene": "døtr", "e": "e", "econ": "econ", "econs": "econ", "ed": "ed", "edda": "edd", "eddas": "edd", "edderkopper": "edderkopp", "edel": "edel", "eder": "eder", "edilizie": "edilizi", "edw": "edw", "edward": "edward", "ef": "ef", "effekt": "effekt", "effekten": "effekt", "effekter": "effekt", "effektiv": "effektiv", "effektive": "effektiv", "effektivisering": "effektivisering", "effektiviseringprinsippene": "effektiviseringprinsipp", "effektiviseringsgevinster": "effektiviseringsgevinst", "effektivitet": "effektivit", "effektiviteten": "effektivitet", "effektivitetshensyn": "effektivitetshensyn", "effektivitetskrav": "effektivitetskrav", "effektivt": "effektiv", "efta": "eft", "egalitær": "egalitær", "egen": "egen", "egenandel": "egenandel", "egene": "egen", "egenkapital": "egenkapital", "egenkapitalen": "egenkapital", "egenskapen": "egenskap", "egenskaper": "egenskap", "egentlig": "egent", "eget": "eget", "egge": "egg", "egger": "egg", "eggeskall": "eggeskall", "egget": "egg", "eggum": "eggum", "egil": "egil", "egils": "egil", "egne": "egn", "egnede": "egn", "egner": "egn", "egnet": "egn", "ei": "ei", "eid": "eid", "eidanger": "eidang", "eidangerfjorden": "eidangerfjord", "eide": "eid", "eie": "eie", "eiendelene": "eiendel", "eiendeler": "eiendel", "eiendom": "eiendom", "eiendommen": "eiendomm", "eiendommene": "eiendomm", "eiendommer": "eiendomm", "eiendomserverv": "eiendomserverv", "eiendomsmegling": "eiendomsmegling", "eiendomspriser": "eiendomspris", "eiendomsrett": "eiendomsrett", "eiendomsretten": "eiendomsrett", "eier": "eier", "eierandel": "eierandel", "eierandeler": "eierandel", "eiere": "eier", "eierforhold": "eierforhold", "eierforholdet": "eierforhold", "eierinteresse": "eierinteress", "eierinteresser": "eierinteress", "eierkommune": "eierkommun", "eierkommunene": "eierkommun", "eierkommunenes": "eierkommun", "eierne": "eiern", "eierseksjoner": "eierseksjon", "eierseksjonsloven": "eierseksjon", "eierseksjonssameier": "eierseksjonssamei", "eierskap": "eierskap", "eiersl": "eiersl", "eies": "eies", "eiet": "eiet", "eig": "eig", "eiga": "eig", "eigar": "eig", "eigarane": "eigar", "eigarar": "eigar", "eigarbrøk": "eigarbrøk", "eigarbustad": "eigarbustad", "eigarbustadene": "eigarbustad", "eigarbustader": "eigarbustad", "eigardelar": "eigardel", "eigaren": "eigar", "eigarens": "eigar", "eigarforhold": "eigarforhold", "eigarforholdet": "eigarforhold", "eigarinteressa": "eigarinteress", "eigarinteresse": "eigarinteress", "eigarinteressene": "eigarinteress", "eigarinteresser": "eigarinteress", "eigarleilegheiter": "eigarleilegheit", "eigarpart": "eigarpart", "eigarpartane": "eigarpart", "eigarposisjonen": "eigarposisjon", "eigarpreg": "eigarpreg", "eigarrisikoen": "eigarrisiko", "eigarsamanslutningar": "eigarsamanslutning", "eigarseksjon": "eigarseksjon", "eigarseksjonar": "eigarseksjon", "eigarseksjonsforma": "eigarseksjonsform", "eigarseksjonslov": "eigarseksjon", "eigarseksjonslova": "eigarseksjon", "eigarseksjonssameiger": "eigarseksjonssam", "eigarskifte": "eigarskift", "eigarskifteforsikring": "eigarskifteforsikring", "eigarskiftet": "eigarskift", "eigarstatusen": "eigarstatus", "eigast": "eig", "eige": "eig", "eigeansvar": "eigeansv", "eigedom": "eigedom", "eigedommane": "eigedomm", "eigedommar": "eigedomm", "eigedommen": "eigedomm", "eigedomseiningar": "eigedomseining", "eigedomsforhold": "eigedomsforhold", "eigedomsformidling": "eigedomsformidling", "eigedomsforvaltning": "eigedomsforvaltning", "eigedomskjøp": "eigedomskjøp", "eigedomsmeklar": "eigedomsmekl", "eigedomsmeklarar": "eigedomsmeklar", "eigedomsmekling": "eigedomsmekling", "eigedomsmeklingslova": "eigedomsmekling", "eigedomsmeklingsløyve": "eigedomsmeklingsløyv", "eigedomsovergangen": "eigedomsovergang", "eigedomsrett": "eigedomsrett", "eigedomsretten": "eigedomsrett", "eigedomsselskap": "eigedomsselskap", "eigedomssjefen": "eigedomssjef", "eigeform": "eigeform", "eigeformene": "eigeform", "eigeformer": "eigeform", "eigen": "eig", "eigendelar": "eigendel", "eigenkapital": "eigenkapital", "eigenkapitalbeitragen": "eigenkapitalbeitrag", "eigenkapitalen": "eigenkapital", "eigenkapitalinnskot": "eigenkapitalinnskot", "eigenskap": "eigenskap", "eigentleg": "eigent", "eigentlege": "eigent", "eigne": "eign", "eignedelane": "eignedel", "eignedelar": "eignedel", "eik": "eik", "eika": "eik", "eikenøtt": "eikenøtt", "eiketre": "eiketr", "eikrem": "eikrem", "ein": "ein", "einaste": "einast", "eine": "ein", "einebustad": "einebustad", "einebustader": "einebustad", "eineeigar": "eine", "eineeige": "eine", "einerett": "einerett", "eineretten": "einerett", "einerådande": "eineråd", "eingong": "eingong", "eingongsbetalingar": "eingongsbetaling", "eingongsinnbetalingar": "eingongsinnbetaling", "einherjene": "einherj", "einherjer": "einherj", "einherjers": "einherj", "eining": "eining", "einingar": "eining", "einingsregisteret": "einingsregister", "eins": "ein", "einsidig": "einsid", "einskapen": "einskap", "einskild": "einskild", "einskildbustader": "einskildbustad", "einskilde": "einskild", "einskildmedlemmer": "einskildmedlemm", "einskildpersonar": "einskildperson", "einskildsaker": "einskildsak", "einslege": "eins", "eintydig": "eintyd", "eit": "eit", "eiter": "eit", "eiterdryppet": "eiterdrypp", "eiteren": "eiter", "eiterorm": "eiterorm", "eiterormen": "eiterorm", "eitrende": "eitr", "eitt": "eitt", "eittårsfristen": "eittårsfrist", "ejerlejligheder": "ejerlejlighed", "ekeberganleggene": "ekeberganlegg", "ekebergtunnelen": "ekebergtunnel", "ekebergåsen": "ekebergås", "ekle": "ekl", "ekonomisk": "ekonomisk", "ekonomiska": "ekonomisk", "ekornet": "ekorn", "eks": "eks", "eksakt": "eksakt", "eksakte": "eksakt", "eksempel": "eksempel", "eksempelvis": "eksempelvis", "eksemplene": "eksempl", "eksempler": "eksempl", "eksemplet": "eksempl", "eksistensen": "eksistens", "eksisterande": "eksister", "eksistere": "eksister", "eksisterende": "eksister", "eksisterer": "eksister", "ekskl": "ekskl", "eksklusiv": "eksklusiv", "eksklusive": "eksklusiv", "eksmemplene": "eksmempl", "eksogent": "eksogent", "ekspansjon": "ekspansjon", "ekspederes": "ekspeder", "eksperthjelp": "eksperthjelp", "ekspertisen": "ekspertis", "eksplisitt": "eksplisitt", "eksponeringa": "eksponering", "eksponert": "eksponer", "eksport": "eksport", "eksportbedrifter": "eksportbedrift", "eksportbedrifters": "eksportbedrift", "eksportcontainere": "eksportcontainer", "eksporten": "eksport", "eksporterer": "eksporter", "eksporteres": "eksporter", "eksportert": "eksporter", "eksporterte": "eksporter", "eksportfunksjonene": "eksportfunksjon", "eksportfylke": "eksportfylk", "eksportgods": "eksportgod", "eksportgodset": "eksportgods", "eksporthavnene": "eksporthavn", "eksporthavner": "eksporthavn", "eksportkundenes": "eksportkund", "eksportlaster": "eksportlast", "eksportmengden": "eksportmengd", "eksportnæringer": "eksportnæring", "eksportorienterte": "eksportorienter", "eksportoverskudd": "eksportoverskudd", "eksportprofil": "eksportprofil", "eksportrettede": "eksportrett", "eksportrettet": "eksportrett", "eksportsammenheng": "eksportsammenheng", "eksportsiden": "eksportsid", "eksporttransportene": "eksporttransport", "eksporttransporter": "eksporttransport", "eksportutvikling": "eksportutvikling", "eksportvarer": "eksportvar", "eksportvekst": "eksportvekst", "eksportveksten": "eksportvekst", "eksportverdi": "eksportverdi", "eksportvolum": "eksportvolum", "eksportvolumene": "eksportvolum", "eksportvolumer": "eksportvolum", "eksportvolumet": "eksportvolum", "ekstern": "ekstern", "eksterne": "ekstern", "ekstingverte": "ekstingver", "ekstinksjon": "ekstinksjon", "ekstinksjonen": "ekstinksjon", "ekstinksjonsregelen": "ekstinksjonsregel", "ekstra": "ekstr", "ekstrakostnader": "ekstrakostnad", "ekstraordinær": "ekstraordinær", "ekstraordinære": "ekstraordinær", "ekstremt": "ekstremt", "ekte": "ekt", "ektefelle": "ektefell", "ektefellen": "ektefell", "ektefellepensjon": "ektefellepensjon", "ektefellepensjonens": "ektefellepensjon", "ektefeller": "ektefell", "ektefelles": "ektefell", "ektemakar": "ektemak", "ektemake": "ektemak", "ektemaken": "ektemak", "ektemakens": "ektemak", "ektemann": "ektemann", "ektepar": "ektep", "ekteparet": "ektepar", "ekteskap": "ekteskap", "ekteskapet": "ekteskap", "ekteskaps": "ekteskap", "ekteskapslova": "ekteskap", "ekteskapslovgivningen": "ekteskapslovgivning", "el": "el", "eld": "eld", "elde": "eld", "eldre": "eldr", "eldrebustader": "eldrebustad", "eldst": "eldst", "eldste": "eldst", "elektrisk": "elektrisk", "elektronisk": "elektronisk", "elektroniske": "elektronisk", "element": "element", "elementa": "element", "elementene": "element", "elementer": "element", "elementet": "element", "elendig": "elend", "elendige": "elend", "elendighet": "elend", "elg": "elg", "elgar": "elg", "eliminere": "eliminer", "elisabeth": "elisabeth", "eljudne": "eljudn", "elkem": "elkem", "elkjøp": "elkjøp", "elle": "ell", "eller": "ell", "ellers": "ell", "elles": "ell", "elleve": "ellev", "ellingsen": "ellings", "elsk": "elsk", "elske": "elsk", "elsker": "elsk", "elsket": "elsk", "elskovssyk": "elskovssyk", "elv": "elv", "elva": "elv", "elveløpet": "elveløp", "elven": "elv", "elver": "elv", "elvevegen": "elveveg", "embla": "embl", "emden": "emd", "emne": "emn", "empirisk": "empirisk", "en": "en", "enda": "end", "endar": "end", "ende": "end", "endeleg": "end", "endelege": "end", "endelig": "end", "endelige": "end", "enden": "end", "endepunkt": "endepunkt", "ender": "end", "endevendt": "endevend", "endingar": "ending", "endr": "endr", "endra": "endr", "endrar": "endr", "endrast": "endr", "endre": "endr", "endrede": "endr", "endrer": "endr", "endres": "endr", "endret": "endr", "endrete": "endret", "endring": "endring", "endringa": "endring", "endringane": "endring", "endringar": "endring", "endringen": "endring", "endringene": "endring", "endringer": "endring", "endringsarbeid": "endringsarbeid", "endringsavtale": "endringsavtal", "endringsdirektivets": "endringsdirektiv", "endringsforslag": "endringsforslag", "endringslov": "endring", "endringstidspunktet": "endringstidspunkt", "endt": "endt", "endte": "endt", "ene": "ene", "eneansvarlig": "eneansvar", "enearving": "enearving", "enerett": "enerett", "energi": "energi", "energieffektivisering": "energieffektivisering", "energiøkonomi": "energiøkonomi", "enerom": "enerom", "eneste": "enest", "enestående": "enestå", "eng": "eng", "engangs": "engang", "engangsbeløp": "engangsbeløp", "engangsbeløpet": "engangsbeløp", "engangsinnbetalinger": "engangsinnbetaling", "engangspremie": "engangspremi", "engangspremier": "engangspremi", "engangssum": "engangssum", "engangsutbetaling": "engangsutbetaling", "engangsutbetalinger": "engangsutbetaling", "engangsutbetalt": "engangsutbetalt", "engangsutgifter": "engangsutgift", "engangsytelse": "engangsyt", "engangsytelsen": "engangsyt", "engangsytelser": "engangsyt", "engasjement": "engasjement", "engasjert": "engasjer", "engelske": "engelsk", "england": "england", "engroslagre": "engroslagr", "engrosvirksomhet": "engrosvirksom", "engsoleie": "engsolei", "engstelig": "engst", "engstet": "engst", "enhet": "enh", "enheter": "enhet", "enheterisering": "enheterisering", "enheterisert": "enheteriser", "enhetlig": "enhet", "enhetlige": "enhet", "enhetsgods": "enhetsgod", "enhetslaster": "enhetslast", "enhetslasteskip": "enhetslasteskip", "enhetslastet": "enhetslast", "enhetslasthavner": "enhetslasthavn", "enhetslasthåndtering": "enhetslasthåndtering", "enhetslasttrafikk": "enhetslasttrafikk", "enhetslasttrafikken": "enhetslasttrafikk", "enhver": "enhv", "enig": "enig", "enige": "enig", "enkel": "enkel", "enkelhet": "enkel", "enkelt": "enkelt", "enkeltaksjer": "enkeltaksj", "enkeltaktørene": "enkeltaktør", "enkelte": "enkelt", "enkeltengasjementer": "enkeltengasjement", "enkeltes": "enkelt", "enkeltforetak": "enkeltforetak", "enkeltforhold": "enkeltforhold", "enkeltforslag": "enkeltforslag", "enkelthavner": "enkelthavn", "enkeltkommuners": "enkeltkommun", "enkeltlandenes": "enkeltland", "enkeltmannsforetak": "enkeltmannsforetak", "enkeltmannsføretak": "enkeltmannsføretak", "enkeltmannsføretaket": "enkeltmannsføretak", "enkeltområder": "enkeltområd", "enkeltpersoner": "enkeltperson", "enkeltprosjekter": "enkeltprosjekt", "enkeltsaker": "enkeltsak", "enkeltsaksbehandlingen": "enkeltsaksbehandling", "enkeltspørsmål": "enkeltspørsmål", "enkeltvalg": "enkeltvalg", "enkeltvedtak": "enkeltvedtak", "enkeltvis": "enkeltvis", "enkeltår": "enkeltår", "enkemann": "enkemann", "enklare": "enklar", "enklaste": "enklast", "enkle": "enkl", "enklere": "enkler", "enkleste": "enklest", "enn": "enn", "enno": "enno", "ennå": "ennå", "enorme": "enorm", "ensbetydende": "ensbetyd", "enser": "ens", "ensidig": "ensid", "enslig": "ens", "enslige": "ens", "ensom": "ensom", "enten": "ent", "entreprenør": "entreprenør", "entreprenørar": "entreprenør", "entreprenøren": "entreprenør", "entreprenørføretak": "entreprenørføretak", "entreprise": "entrepris", "entydig": "entyd", "enøyd": "enøyd", "enøyde": "enøyd", "epes": "epes", "eple": "epl", "eplene": "epl", "epler": "epl", "eplet": "epl", "epletrær": "epletrær", "equivalent": "equivalent", "er": "er", "erfaren": "erfar", "erfaring": "erfaring", "erfaringene": "erfaring", "erfaringer": "erfaring", "erfaringsmateriale": "erfaringsmaterial", "erfaringstall": "erfaringstall", "ergerlig": "erger", "ergerlige": "erger", "ergrelse": "ergr", "erik": "erik", "erkjennelse": "erkjenn", "erling": "erling", "erstatning": "erstatning", "erstatningsansvaret": "erstatningsansvar", "erstatte": "erstatt", "erstattes": "erstatt", "erstattet": "erstatt", "erte": "ert", "erter": "ert", "ertet": "ert", "erverv": "erverv", "erverva": "erverv", "ervervar": "erverv", "ervervarane": "ervervar", "ervervarar": "ervervar", "ervervaren": "ervervar", "ervervarens": "ervervar", "erverve": "erverv", "ervervede": "erverv", "ervervet": "erverv", "ervervsevnen": "ervervsevn", "ervervsfasen": "ervervsfas", "ervervsinntekt": "ervervsinntekt", "ervervskostnadene": "ervervskostnad", "ervervsmessig": "ervervsmess", "ervervsprøves": "ervervsprøv", "ervervsprøving": "ervervsprøving", "ervervsprøvingen": "ervervsprøving", "erwerbes": "erwerb", "erwerbs": "erwerb", "estetikk": "estetikk", "estetiske": "estetisk", "estimert": "estimer", "et": "et", "etablerast": "etabler", "etablere": "etabler", "etablerer": "etabler", "etableres": "etabler", "etablering": "etablering", "etableringa": "etablering", "etableringen": "etablering", "etableringsadgangen": "etableringsadgang", "etableringshorisont": "etableringshorisont", "etableringsproblem": "etableringsproblem", "etableringsstaten": "etableringsstat", "etablert": "etabler", "etablerte": "etabler", "etappe": "etapp", "etappen": "etapp", "etapper": "etapp", "etappevis": "etappevis", "etappevise": "etappevis", "etasje": "etasj", "etat": "etat", "etatar": "etat", "etaten": "etat", "etatene": "etat", "etatens": "etat", "etc": "etc", "ete": "ete", "eter": "eter", "ethvert": "ethver", "etiske": "etisk", "etla": "etl", "etnisk": "etnisk", "ett": "ett", "etter": "ett", "etterarbeid": "etterarbeid", "etterfølgende": "etterfølg", "etterkome": "etterkom", "etterkomme": "etterkomm", "etterkommere": "etterkommer", "etterkommes": "etterkomm", "etterkrigstida": "etterkrigstid", "etterlate": "etterlat", "etterlatt": "etterlatt", "etterlatte": "etterlatt", "etterlattedekning": "etterlattedekning", "etterlattepensjon": "etterlattepensjon", "etterlattepensjonenes": "etterlattepensjon", "etterlattepensjoner": "etterlattepensjon", "etterlattes": "etterlatt", "etterlatteytelsene": "etterlatteyt", "etterlatteytelser": "etterlatteyt", "etterlattforsikring": "etterlattforsikring", "etterlattpensjon": "etterlattpensjon", "etterlattpensjoner": "etterlattpensjon", "etterleving": "etterleving", "ettermiddag": "ettermiddag", "ettermiddagen": "ettermiddag", "ettermæle": "ettermæl", "etterprioriterte": "etterprioriter", "etterprøve": "etterprøv", "etterpå": "etterpå", "etterskot": "etterskot", "etterskotsvis": "etterskotsvis", "etterslepseffekten": "etterslepseffekt", "ettersom": "ettersom", "etterspurde": "etterspurd", "etterspurnad": "etterspurnad", "etterspurnaden": "etterspurnad", "etterspør": "etterspør", "etterspørelsen": "etterspør", "etterspørsel": "etterspørsel", "etterspørselen": "etterspørsel", "etterspørselens": "etterspørsel", "etterspørselsregulering": "etterspørselsregulering", "etterspørselssiden": "etterspørselssid", "etterspørselsvekst": "etterspørselsvekst", "etterspørselsveksten": "etterspørselsvekst", "etterståande": "etterstå", "ettersyn": "ettersyn", "ettertid": "ettertid", "etterutluting": "etterutluting", "ettårige": "ettår", "eu": "eu", "euro": "euro", "europa": "europ", "europaparlaments": "europaparlament", "europas": "europ", "european": "european", "europeen": "europe", "europeisk": "europeisk", "europeiske": "europeisk", "eus": "eus", "eventuell": "eventuell", "eventuelle": "eventuell", "eventuelt": "eventuelt", "eventyr": "eventyr", "eventyrene": "eventyr", "eventyret": "eventyr", "evig": "evig", "evige": "evig", "eviggrønne": "eviggrønn", "evighet": "evig", "evne": "evn", "evnen": "evn", "evt": "evt", "eøf": "eøf", "eøs": "eøs", "f": "f", "fabrikker": "fabrikk", "fact": "fact", "fager": "fag", "fagforeining": "fagforeining", "fagforeiningar": "fagforeining", "faggrupper": "faggrupp", "fagleg": "fag", "faglig": "fag", "faglige": "fag", "fagmyndigheter": "fagmynd", "fagorganisasjonar": "fagorganisasjon", "fagrest": "fagrest", "fakkeltog": "fakkeltog", "fakket": "fakk", "fakler": "fakl", "faktisk": "faktisk", "faktiske": "faktisk", "faktor": "faktor", "faktorar": "faktor", "faktorene": "faktor", "faktorer": "faktor", "faktoringpant": "faktoringpant", "faktum": "faktum", "fakulteta": "fakultet", "falk": "falk", "falke": "falk", "falkehammen": "falkehamm", "falkemannen": "falkemann", "falken": "falk", "fall": "fall", "falle": "fall", "falleferdig": "falleferd", "fallen": "fall", "faller": "fall", "fallet": "fall", "falne": "faln", "falnes": "faln", "falsk": "falsk", "falskest": "falskest", "falskhet": "falsk", "falt": "falt", "familiane": "famili", "familie": "famili", "familieforhold": "familieforhold", "familieliv": "familieliv", "familiemedlemmer": "familiemedlemm", "familien": "famili", "familierettslege": "familieretts", "familiesituasjon": "familiesituasjon", "famler": "faml", "fang": "fang", "fanga": "fang", "fangar": "fang", "fange": "fang", "fangen": "fang", "fanger": "fang", "fanges": "fang", "fanget": "fang", "fangst": "fangst", "fangsten": "fangst", "fanst": "fanst", "fant": "fant", "fanteri": "fanteri", "fantes": "fant", "far": "far", "farbror": "farbror", "fare": "far", "faren": "far", "farende": "far", "farer": "far", "fargede": "farg", "farkosten": "farkost", "farleden": "farled", "farledene": "farled", "farleder": "farled", "farledsnettet": "farledsnett", "farledssektoren": "farledssektor", "farlig": "far", "farlige": "far", "farligere": "farliger", "farligste": "farligst", "farmasøyt": "farmasøyt", "farmasøytiske": "farmasøytisk", "farriseidet": "farriseid", "fars": "far", "fart": "fart", "farten": "fart", "fartsdempende": "fartsdemp", "fartøy": "fartøy", "fartøyene": "fartøy", "fartøyer": "fartøy", "fartøystørrelse": "fartøystørr", "farvann": "farvann", "farvannet": "farvann", "farvannets": "farvann", "farvannslov": "farvann", "farvannsloven": "farvann", "farvannslovens": "farvann", "farvannssaker": "farvannssak", "farve": "farv", "farvel": "farvel", "farvene": "farv", "fascinerer": "fasciner", "fase": "fas", "fasen": "fas", "fasiliteter": "fasilitet", "fast": "fast", "faste": "fast", "fastere": "faster", "fastlagt": "fastlagt", "fastlandet": "fastland", "fastlands": "fastland", "fastlege": "fast", "fastlegge": "fastlegg", "fastlegger": "fastlegg", "fastlegges": "fastlegg", "fastlegging": "fastlegging", "fastlegginga": "fastlegging", "fastleggjast": "fastleggj", "fastleggje": "fastleggj", "fastlåst": "fastlåst", "fastprisavtalar": "fastprisavtal", "fastrenteinnskudd": "fastrenteinnskudd", "fastrentelån": "fastrentelån", "fastsatt": "fastsatt", "fastsatte": "fastsatt", "fastset": "fasts", "fastsetjast": "fastsetj", "fastsetje": "fastsetj", "fastsetjing": "fastsetjing", "fastsetjinga": "fastsetjing", "fastsetjingsdom": "fastsetjingsdom", "fastsett": "fastsett", "fastsette": "fastsett", "fastsettelse": "fastsett", "fastsettelsen": "fastsett", "fastsetter": "fastsett", "fastsettes": "fastsett", "fastslege": "fasts", "fastslo": "fastslo", "fastslå": "fastslå", "fastslår": "fastslår", "fastslås": "fastslås", "fat": "fat", "fatet": "fat", "fatt": "fatt", "fatte": "fatt", "fatter": "fatt", "fattes": "fatt", "fattet": "fatt", "fattig": "fatt", "fattigdom": "fattigdom", "fauna": "faun", "favne": "favn", "favnen": "favn", "favner": "favn", "favntak": "favntak", "favoriserer": "favoriser", "favorisering": "favorisering", "favoriseringen": "favorisering", "favør": "favør", "fdb": "fdb", "fe": "fe", "februar": "febru", "federabitazione": "federabitazion", "federazione": "federazion", "feederbåter": "feederbåt", "feederhavner": "feederhavn", "feederløsninger": "feederløsning", "feedernettet": "feedernett", "feederrederiene": "feederrederi", "feederskip": "feederskip", "feedersystem": "feedersystem", "feedertrafikk": "feedertrafikk", "feedertrafikken": "feedertrafikk", "feedertransport": "feedertransport", "feedertransportene": "feedertransport", "feedertransporter": "feedertransport", "feedervolumer": "feedervolum", "feeedertransport": "feeedertransport", "feier": "feier", "feig": "feig", "feige": "feig", "feigeste": "feigest", "feil": "feil", "feilen": "feil", "feiler": "feil", "feilkalkylar": "feilkalkyl", "feire": "feir", "fekk": "fekk", "fekter": "fekt", "fektet": "fekt", "felixstowe": "felixstow", "fell": "fell", "felle": "fell", "fellen": "fell", "feller": "fell", "felles": "fell", "fellesareal": "fellesareal", "fellesareala": "fellesareal", "fellesbestemmelser": "fellesbestemm", "felleseiga": "felles", "fellesfinansiering": "fellesfinansiering", "fellesfond": "fellesfond", "fellesformue": "fellesformu", "fellesforvaltninga": "fellesforvaltning", "fellesgjeld": "fellesgjeld", "fellesgjelda": "fellesgjeld", "felleshavn": "felleshavn", "fellesinstallasjonar": "fellesinstallasjon", "felleskapital": "felleskapital", "felleskapitalen": "felleskapital", "felleskonto": "felleskonto", "felleskontor": "felleskontor", "felleskostnadene": "felleskostnad", "felleskostnader": "felleskostnad", "felleskostnder": "felleskostnd", "felleslån": "felleslån", "felleslåna": "felleslån", "felleslångjevaren": "felleslångjevar", "fellesnevneren": "fellesnevner", "fellesobligasjon": "fellesobligasjon", "fellesoppgåve": "fellesoppgåv", "fellesoppgåver": "fellesoppgåv", "fellesorganisasjon": "fellesorganisasjon", "fellesskap": "fellesskap", "fellesskapar": "fellesskap", "fellesskapen": "fellesskap", "fellesskapet": "fellesskap", "fellesskapsretten": "fellesskapsrett", "fellesskyldnader": "fellesskyldnad", "fellestenester": "fellestenest", "fellestiltak": "fellestiltak", "fellestiltaka": "fellestiltak", "fellestrekk": "fellestrekk", "felt": "felt", "felter": "felt", "fem": "fem", "femdel": "femdel", "femdels": "femdel", "femne": "femn", "femner": "femn", "femte": "femt", "femtedel": "femtedel", "femten": "femt", "femteparten": "femtepart", "femti": "femti", "femårsperioden": "femårsperiod", "fenja": "fenj", "fenre": "fenr", "fenrisulven": "fenrisulv", "ferd": "ferd", "ferde": "ferd", "ferden": "ferd", "ferdes": "ferd", "ferdig": "ferd", "ferdige": "ferd", "ferdiggjering": "ferdiggjering", "ferdigheter": "ferd", "ferdigstillast": "ferdigstill", "ferdigstilles": "ferdigstill", "ferdigstilling": "ferdigstilling", "ferdigstillinga": "ferdigstilling", "ferdigstilt": "ferdigstilt", "ferdigstilte": "ferdigstilt", "ferdigvarer": "ferdigvar", "ferdsel": "ferdsel", "fergen": "ferg", "fergene": "ferg", "ferger": "ferg", "fergetilbud": "fergetilbud", "fergetrafikk": "fergetrafikk", "fergetrafikken": "fergetrafikk", "ferje": "ferj", "ferjeankomstene": "ferjeankomst", "ferjefartens": "ferjefart", "ferjeforbindelsen": "ferjeforbind", "ferjeforbindelsene": "ferjeforbind", "ferjehavnen": "ferjehavn", "ferjehavner": "ferjehavn", "ferjekai": "ferjekai", "ferjelinjene": "ferjelinj", "ferjelinjer": "ferjelinj", "ferjen": "ferj", "ferjene": "ferj", "ferjer": "ferj", "ferjerederiene": "ferjerederi", "ferjerederier": "ferjerederi", "ferjeruten": "ferjerut", "ferjerutene": "ferjerut", "ferjeruter": "ferjerut", "ferjeterminalene": "ferjeterminal", "ferjeterminaler": "ferjeterminal", "ferjetrafikk": "ferjetrafikk", "ferjetrafikken": "ferjetrafikk", "ferrosilisium": "ferrosilisium", "ferskere": "fersker", "ferskvann": "ferskvann", "ferskvannsgehalten": "ferskvannsgehalt", "ferskvannstilførselen": "ferskvannstilførsel", "fersum": "fersum", "fest": "fest", "festa": "fest", "festar": "fest", "feste": "fest", "festen": "fest", "fester": "fest", "festet": "fest", "festning": "festning", "festningen": "festning", "festningstunnelen": "festningstunnel", "festningsverket": "festningsverk", "festsal": "festsal", "festsalen": "festsal", "festsaler": "festsal", "fet": "fet", "fett": "fett", "fid": "fid", "fiende": "fiend", "fiendeføtter": "fiendeføtt", "fiendehæren": "fiendehær", "fienden": "fiend", "fiendene": "fiend", "fiendens": "fiend", "fiender": "fiend", "fiendskap": "fiendskap", "fiendtlig": "fiendt", "figur": "figur", "figurbetraktninger": "figurbetraktning", "figuren": "figur", "figurene": "figur", "fikk": "fikk", "fiktive": "fiktiv", "filial": "filial", "filialer": "filial", "filialetablering": "filialetablering", "filialvirksomhet": "filialvirksom", "fililaler": "fililal", "filipstad": "filipstad", "filipstadområdet": "filipstadområd", "filipstadterminalen": "filipstadterminal", "filipstadutbygging": "filipstadutbygging", "fillehaug": "fillehaug", "fillene": "fill", "filler": "fill", "fillete": "fillet", "fimafeng": "fimafeng", "fimbul": "fimbul", "fin": "fin", "final": "final", "finans": "finan", "finansdepartementet": "finansdepartement", "finansdepartementets": "finansdepartement", "finanseringsvirksomhetsloven": "finanseringsvirksom", "finansforetak": "finansforetak", "finansiell": "finansiell", "finansielle": "finansiell", "finansielt": "finansielt", "finansierast": "finansier", "finansiere": "finansier", "finansieres": "finansier", "finansiering": "finansiering", "finansieringa": "finansiering", "finansieringen": "finansiering", "finansierings": "finansiering", "finansieringsføretak": "finansieringsføretak", "finansieringskilde": "finansieringskild", "finansieringsordning": "finansieringsordning", "finansieringsordningar": "finansieringsordning", "finansieringsplan": "finansieringsplan", "finansieringsplanen": "finansieringsplan", "finansieringsverksemd": "finansieringsverksemd", "finansieringsverksemdslova": "finansieringsverksemd", "finansieringsvirksomhet": "finansieringsvirksom", "finansieringsvirksomhetsloven": "finansieringsvirksom", "finansiert": "finansier", "finansinnstillingen": "finansinnstilling", "finansinntekter": "finansinntekt", "finansinstitusjon": "finansinstitusjon", "finansinstitusjonar": "finansinstitusjon", "finansinstitusjonens": "finansinstitusjon", "finansinstitusjoner": "finansinstitusjon", "finanskomiteen": "finanskomite", "finanskomiteens": "finanskomite", "finansmarkedet": "finansmarked", "finansmatematikk": "finansmatematikk", "finansnæringen": "finansnæring", "finanspolitikk": "finanspolitikk", "finanssparing": "finanssparing", "fine": "fin", "finere": "finer", "fineste": "finest", "finger": "fing", "fingre": "fingr", "fingrene": "fingr", "finland": "finland", "finn": "finn", "finnast": "finn", "finne": "finn", "finnenes": "finn", "finner": "finn", "finnes": "finn", "finnmark": "finnmark", "finrekne": "finrekn", "finst": "finst", "fint": "fint", "fire": "fir", "firedel": "firedel", "firedelar": "firedel", "firefelts": "firefelt", "firkantede": "firkant", "firma": "firm", "firmaattest": "firmaattest", "firmaet": "firma", "firmateiknar": "firmateikn", "fisjon": "fisjon", "fisjoner": "fisjon", "fisk": "fisk", "fiskarlag": "fiskarlag", "fiske": "fisk", "fiskeeksport": "fiskeeksport", "fiskelykke": "fiskelykk", "fisken": "fisk", "fiskens": "fisk", "fiskeolje": "fiskeolj", "fisker": "fisk", "fiskere": "fisker", "fiskeren": "fisker", "fiskeridepartementet": "fiskeridepartement", "fiskeridepartementets": "fiskeridepartement", "fiskerihavner": "fiskerihavn", "fiskerileder": "fiskeriled", "fiskeriministeren": "fiskeriminister", "fiskerinæringen": "fiskerinæring", "fiskesalslaga": "fiskesalslag", "fiskeskjell": "fiskeskjell", "fiskestang": "fiskestang", "fiskestangen": "fiskestang", "fiskestenger": "fiskesteng", "fisketur": "fisketur", "fisketuren": "fisketur", "fiskeværene": "fiskevær", "fisks": "fisk", "fistelstemme": "fistelstemm", "fjalar": "fjal", "fjas": "fjas", "fjell": "fjell", "fjellanlegg": "fjellanlegg", "fjellene": "fjell", "fjellet": "fjell", "fjellfestningen": "fjellfestning", "fjellgård": "fjellgård", "fjellkløft": "fjellkløft", "fjellknauser": "fjellknaus", "fjells": "fjell", "fjellsiden": "fjellsid", "fjellsider": "fjellsid", "fjerde": "fjerd", "fjerdeparten": "fjerdepart", "fjern": "fjern", "fjerne": "fjern", "fjerning": "fjerning", "fjeset": "fjes", "fjollete": "fjollet", "fjord": "fjord", "fjordane": "fjord", "fjordarm": "fjordarm", "fjordby": "fjordby", "fjordbyen": "fjordby", "fjordbyløsningen": "fjordbyløsning", "fjordbyscenariet": "fjordbyscenari", "fjorden": "fjord", "fjorten": "fjort", "fjær": "fjær", "fjæresteinene": "fjærestein", "fjærhammen": "fjærhamm", "fjøset": "fjøs", "fjøskone": "fjøskon", "fl": "fl", "flak": "flak", "flakket": "flakk", "flakse": "flaks", "flaksende": "flaks", "flakser": "flaks", "flakvarp": "flakvarp", "flakvarpområdet": "flakvarpområd", "flammende": "flamm", "flammene": "flamm", "flammer": "flamm", "flammesverd": "flammesverd", "flammesverdet": "flammesverd", "flaskehalsen": "flaskehals", "flaskehalser": "flaskehals", "flat": "flat", "flate": "flat", "flater": "flat", "flatt": "flatt", "flaum": "flaum", "fleirbustadbustadhus": "fleirbustadbustadhus", "fleirbustadhus": "fleirbustadhus", "fleire": "fleir", "fleirtal": "fleirtal", "fleirtalet": "fleirtal", "fleirtalskompetanse": "fleirtalskompetans", "fleirtalskrav": "fleirtalskrav", "fleirtalskrava": "fleirtalskrav", "fleirtalskravet": "fleirtalskrav", "fleirtalsmakt": "fleirtalsmakt", "fleirtalsmisbruk": "fleirtalsmisbruk", "fleirtalsmynde": "fleirtalsmynd", "fleirtalsregelen": "fleirtalsregel", "fleirtalsvedtak": "fleirtalsvedtak", "flekken": "flekk", "flekker": "flekk", "flekkete": "flekket", "fleksibel": "fleksibel", "fleksibelt": "fleksibelt", "fleksibilitet": "fleksibilit", "fleksibiliteten": "fleksibilitet", "fleksible": "fleksibl", "flenger": "fleng", "flere": "fler", "flertall": "flertall", "flertallet": "flertall", "flertallets": "flertall", "flertallsregelen": "flertallsregel", "flesk": "flesk", "flest": "flest", "fleste": "flest", "fletter": "flett", "flettet": "flett", "flg": "flg", "flight": "flight", "flimrer": "flimr", "flink": "flink", "flirer": "flir", "flis": "flis", "fliser": "flis", "flodbølge": "flodbølg", "flokete": "floket", "flokk": "flokk", "flokken": "flokk", "flokker": "flokk", "flora": "flor", "flott": "flott", "flotteste": "flottest", "flua": "flua", "flue": "flue", "fluer": "fluer", "flukt": "flukt", "fly": "fly", "flydrivstoff": "flydrivstoff", "flykte": "flykt", "flykter": "flykt", "flyktningar": "flyktning", "flyplasser": "flyplass", "flyr": "flyr", "flyt": "flyt", "flytende": "flyt", "flyter": "flyt", "flytrafikk": "flytrafikk", "flytransport": "flytransport", "flytta": "flytt", "flyttar": "flytt", "flyttbar": "flyttb", "flyttbare": "flyttbar", "flyttbart": "flyttbart", "flytte": "flytt", "flytteadgang": "flytteadgang", "flyttebestemmelse": "flyttebestemm", "flytteforskriften": "flytteforskrift", "flytter": "flytt", "flytterett": "flytterett", "flyttes": "flytt", "flyttet": "flytt", "flytting": "flytting", "flyttingen": "flytting", "flyvende": "flyv", "flådd": "flådd", "flår": "flår", "flåte": "flåt", "flåter": "flåt", "fløy": "fløy", "fnis": "fnis", "fnise": "fnis", "fnisende": "fnis", "fniser": "fnis", "fnyser": "fnys", "fob": "fob", "fokus": "fokus", "fokuserast": "fokuser", "fokusere": "fokuser", "fokuserer": "fokuser", "fokuseres": "fokuser", "fokusert": "fokuser", "folde": "fold", "fole": "fol", "folk": "folk", "folkene": "folk", "folkeparti": "folkeparti", "folket": "folk", "folketrygd": "folketrygd", "folketrygda": "folketrygd", "folketrygden": "folketrygd", "folketrygdens": "folketrygd", "folketrygdloven": "folketrygd", "folketrygdlovens": "folketrygd", "folketrygdpensjon": "folketrygdpensjon", "folketrygdpensjonen": "folketrygdpensjon", "folketrygdytelse": "folketrygdyt", "folketrygdytelsen": "folketrygdyt", "folkevalgte": "folkevalgt", "folksomt": "folksomt", "folkvang": "folkvang", "follo": "follo", "fond": "fond", "fondene": "fond", "fondering": "fondering", "fondert": "fonder", "fondet": "fond", "fondets": "fond", "fonds": "fond", "fondsandeler": "fondsandel", "fondsavkastning": "fondsavkastning", "fondsinnskudd": "fondsinnskudd", "fondskonstruksjoner": "fondskonstruksjon", "fondsoppbyggede": "fondsoppbygg", "fondsoppbygging": "fondsoppbygging", "fonner": "fonn", "foot": "foot", "for": "for", "forakter": "forakt", "foran": "foran", "forandre": "forandr", "forandres": "forandr", "forandret": "forandr", "forankrast": "forankr", "forankring": "forankring", "forannevnte": "forannevnt", "forarbeidene": "forarbeid", "forarbeidet": "forarbeid", "forargelse": "forarg", "forarget": "forarg", "forbannelse": "forbann", "forbannelsen": "forbann", "forbannelser": "forbann", "forbannet": "forbann", "forbauselse": "forbaus", "forbedre": "forbedr", "forbedres": "forbedr", "forbedret": "forbedr", "forbedring": "forbedring", "forbedringene": "forbedring", "forbedringer": "forbedring", "forbehold": "forbehold", "forberede": "forber", "forberedelse": "forbered", "forbereder": "forbered", "forberedt": "forbered", "forbi": "forbi", "forbigått": "forbigått", "forbindelse": "forbind", "forbindelsen": "forbind", "forbindelser": "forbind", "forbinder": "forbind", "forbli": "forbli", "forblir": "forblir", "forblitt": "forblitt", "forblåste": "forblåst", "forbod": "forbod", "forboden": "forbod", "forbodet": "forbod", "forbrente": "forbrent", "forbruk": "forbruk", "forbrukar": "forbruk", "forbrukarane": "forbrukar", "forbrukarar": "forbrukar", "forbrukaravtalar": "forbrukaravtal", "forbrukare": "forbrukar", "forbrukaren": "forbrukar", "forbrukarforhold": "forbrukarforhold", "forbrukarkjøp": "forbrukarkjøp", "forbrukarkontor": "forbrukarkontor", "forbrukarkooperative": "forbrukarkooperativ", "forbrukarlovgjeving": "forbrukarlovgjeving", "forbrukarlovgjevinga": "forbrukarlovgjeving", "forbrukarombodet": "forbrukarombod", "forbrukarorganisasjonar": "forbrukarorganisasjon", "forbrukarpolitikk": "forbrukarpolitikk", "forbrukarrådet": "forbrukarråd", "forbrukarsamvirke": "forbrukarsamvirk", "forbrukarsamvirkelag": "forbrukarsamvirkelag", "forbrukarsamvirkelaga": "forbrukarsamvirkelag", "forbrukarsamvirket": "forbrukarsamvirk", "forbrukarstyrte": "forbrukarstyrt", "forbrukartilhøve": "forbrukartilhøv", "forbrukartvistar": "forbrukartvist", "forbrukartvistutval": "forbrukartvistutval", "forbrukartvistutvalet": "forbrukartvistutval", "forbrukermarkeder": "forbrukermarked", "forbruket": "forbruk", "forbruksavhengige": "forbruksavheng", "forbruksmessige": "forbruksmess", "forbruksvarer": "forbruksvar", "forbud": "forbud", "forbudet": "forbud", "forbudt": "forbud", "forbundet": "forbund", "forby": "forby", "forbyr": "forbyr", "fordel": "fordel", "fordelaktig": "fordelakt", "fordelane": "fordel", "fordelar": "fordel", "fordelast": "fordel", "fordele": "fordel", "fordelen": "fordel", "fordelene": "fordel", "fordeler": "fordel", "fordeles": "fordel", "fordeling": "fordeling", "fordelinga": "fordeling", "fordelingen": "fordeling", "fordelinger": "fordeling", "fordelingsmekanisme": "fordelingsmekanism", "fordelingsmessig": "fordelingsmess", "fordelingsmessige": "fordelingsmess", "fordelingsnøkkel": "fordelingsnøkkel", "fordelingsoppgaver": "fordelingsoppgav", "fordelingspolitikken": "fordelingspolitikk", "fordelingspolitiske": "fordelingspolitisk", "fordelingsprofil": "fordelingsprofil", "fordelingsprofilen": "fordelingsprofil", "fordelingsreglane": "fordelingsregl", "fordelingsreglene": "fordelingsregl", "fordelingsscenarier": "fordelingsscenari", "fordelingsspørsmåla": "fordelingsspørsmål", "fordelingsvirkninger": "fordelingsvirkning", "fordelsbeskattes": "fordelsbeskatt", "fordelt": "fordelt", "fordelte": "fordelt", "forderung": "forderung", "fordervelse": "forderv", "fordi": "fordi", "fordobling": "fordobling", "fordre": "fordr", "fordring": "fordring", "fordringer": "fordring", "fordringshavernes": "fordringshavern", "fordyrende": "fordyr", "fordømte": "fordømt", "foredle": "foredl", "foredling": "foredling", "foredlingsrad": "foredlingsrad", "foredlingsverksemder": "foredlingsverksemd", "foregå": "foregå", "foregående": "foregå", "foregår": "foregår", "foregått": "foregått", "foreining": "foreining", "foreininga": "foreining", "foreiningane": "foreining", "foreiningar": "foreining", "foreiningskassa": "foreiningskass", "foreiningsreglane": "foreiningsregl", "forekomme": "forekomm", "forekommer": "forekomm", "forekommet": "forekomm", "forelagt": "forelagt", "forelda": "foreld", "forelding": "forelding", "foreldinga": "forelding", "foreldingsfrist": "foreldingsfrist", "foreldingsfristen": "foreldingsfrist", "foreldingsregelen": "foreldingsregel", "foreldre": "foreldr", "foreldrene": "foreldr", "forelegg": "forelegg", "forelegges": "forelegg", "foreligge": "foreligg", "foreliggende": "foreligg", "foreligger": "foreligg", "forelskelser": "forelsk", "forelsker": "forelsk", "forelsket": "forelsk", "forelå": "forelå", "foreløbig": "foreløb", "foreløpig": "foreløp", "forene": "for", "forening": "forening", "foreningar": "forening", "foreningen": "forening", "foreningens": "forening", "foreninger": "forening", "forenings": "forening", "foreningsandel": "foreningsandel", "foreningsliv": "foreningsliv", "forenkla": "forenkl", "forenklende": "forenkl", "forenklet": "forenkl", "forenkling": "forenkling", "forenklingar": "forenkling", "forenlig": "foren", "foreskrivs": "foreskriv", "foreslo": "foreslo", "foreslå": "foreslå", "foreslår": "foreslår", "foreslås": "foreslås", "foreslått": "foreslått", "foreslåtte": "foreslått", "forestille": "forestill", "forestå": "forestå", "forestående": "forestå", "forestår": "forestår", "foresvinner": "foresvinn", "foreta": "foret", "foretak": "foretak", "foretakene": "foretak", "foretakenes": "foretak", "foretaket": "foretak", "foretakets": "foretak", "foretakpensjonsordninger": "foretakpensjonsordning", "foretaks": "foretaks", "foretaksendringer": "foretaksendring", "foretaksopprettet": "foretaksopprett", "foretaksordning": "foretaksordning", "foretaksordningen": "foretaksordning", "foretaksorganisert": "foretaksorganiser", "foretakspensjon": "foretakspensjon", "foretakspensjonen": "foretakspensjon", "foretakspensjoner": "foretakspensjon", "foretakspensjonsforsikring": "foretakspensjonsforsikring", "foretakspensjonsordning": "foretakspensjonsordning", "foretakspensjonsordningen": "foretakspensjonsordning", "foretakspensjonsordningene": "foretakspensjonsordning", "foretakspensjonsordninger": "foretakspensjonsordning", "foretakspensjonsordningers": "foretakspensjonsordning", "foretaksstørrelse": "foretaksstørr", "foretar": "foret", "foretas": "foret", "foretatt": "foretatt", "foretatte": "foretatt", "foretrekke": "foretrekk", "forfall": "forfall", "forfalle": "forfall", "forfallen": "forfall", "forfallsdagen": "forfallsdag", "forfallstid": "forfallstid", "forfallstidspunktet": "forfallstidspunkt", "forfalne": "forfaln", "forfalska": "forfalsk", "forfalsking": "forfalsking", "forfalte": "forfalt", "forfattarverksemd": "forfattarverksemd", "forfedre": "forfedr", "forfell": "forfell", "forferdet": "forferd", "forfordelte": "forfordelt", "forfulgt": "forfulgt", "forfølger": "forfølg", "forføye": "forføy", "forføyer": "forføy", "forgjeves": "forgjev", "forgreininger": "forgreining", "forhandla": "forhandl", "forhandle": "forhandl", "forhandler": "forhandl", "forhandlet": "forhandl", "forhandling": "forhandling", "forhandlingar": "forhandling", "forhandlinger": "forhandling", "forhandlingssituasjon": "forhandlingssituasjon", "forhandlingsspørsmål": "forhandlingsspørsmål", "forhekselse": "forheks", "forhindre": "forhindr", "forhindrer": "forhindr", "forhindret": "forhindr", "forhold": "forhold", "forholda": "forhold", "forholde": "forhold", "forholdene": "forhold", "forholder": "forhold", "forholdet": "forhold", "forholdsmessig": "forholdsmess", "forholdsmessige": "forholdsmess", "forholdsmessighet": "forholdsmess", "forholdsmessighetprinsippet": "forholdsmessighetprinsipp", "forholdsmessighetskriterier": "forholdsmessighetskriteri", "forholdsmessighetsprinsipp": "forholdsmessighetsprinsipp", "forholdsmessighetsprinsippet": "forholdsmessighetsprinsipp", "forholdsvis": "forholdsvis", "forholdt": "forhold", "forhånd": "forhånd", "forhåndsavgjørelse": "forhåndsavgjør", "forhåndsavgjørelser": "forhåndsavgjør", "forhåndsfinansieres": "forhåndsfinansier", "forhåndsfinansiert": "forhåndsfinansier", "forhåndssikres": "forhåndssikr", "forhøye": "forhøy", "forhøyes": "forhøy", "forhøyet": "forhøy", "forkant": "forkant", "forkasta": "forkast", "forkaste": "forkast", "forkastet": "forkast", "forkasting": "forkasting", "forkjøpsrett": "forkjøpsrett", "forkjøpsrettane": "forkjøpsrett", "forkjøpsrettar": "forkjøpsrett", "forkjøpsretten": "forkjøpsrett", "forkjøpsretthavaren": "forkjøpsretthavar", "forkjøpsrettshavar": "forkjøpsrettshav", "forkjøpsrettshavarane": "forkjøpsrettshavar", "forkjøpsrettshavarar": "forkjøpsrettshavar", "forkjøpsrettshavaren": "forkjøpsrettshavar", "forkjøpsspørsmålet": "forkjøpsspørsmål", "forklare": "forklar", "forklarer": "forklar", "forklares": "forklar", "forklaring": "forklaring", "forklaringer": "forklaring", "forklart": "forklart", "forkledd": "forkledd", "forkledning": "forkledning", "forkledningen": "forkledning", "forkledninger": "forkledning", "forkler": "forkl", "forklet": "forkl", "forklåre": "forklår", "forklåring": "forklåring", "forklåringa": "forklåring", "forkortes": "forkort", "forlag": "forlag", "forlaget": "forlag", "forlagsinsatser": "forlagsinsats", "forlagskapital": "forlagskapital", "forlagt": "forlagt", "forlangast": "forlang", "forlanger": "forlang", "forlate": "forlat", "forlatt": "forlatt", "forleden": "forled", "forlengede": "forleng", "forlengelse": "forleng", "forlengelsen": "forleng", "forlenget": "forleng", "forlik": "forlik", "forliksråda": "forliksråd", "forliksrådet": "forliksråd", "forlikt": "forlikt", "forlikte": "forlikt", "forlot": "forlot", "forløp": "forløp", "form": "form", "forma": "form", "formalia": "formali", "formalisering": "formalisering", "formalisert": "formaliser", "formaliserte": "formaliser", "formannskap": "formannskap", "formannskapet": "formannskap", "formannskapets": "formannskap", "forme": "form", "formell": "formell", "formelle": "formell", "formelt": "formelt", "formen": "form", "formene": "form", "former": "form", "formet": "form", "formidabel": "formidabel", "formidable": "formidabl", "formidla": "formidl", "formidlar": "formidl", "formidlarane": "formidlar", "formidlarar": "formidlar", "formidler": "formidl", "formidling": "formidling", "formidlinga": "formidling", "formidlingsoppdrag": "formidlingsoppdrag", "formidlingsverksemd": "formidlingsverksemd", "formidlingsverksemda": "formidlingsverksemd", "formkrav": "formkrav", "formodentlig": "formodent", "formodning": "formodning", "formodningen": "formodning", "formue": "formu", "formueforvaltning": "formueforvaltning", "formueforvaltninga": "formueforvaltning", "formuen": "formu", "formuesbeskatning": "formuesbeskatning", "formuesbeskattes": "formuesbeskatt", "formuesdata": "formuesdat", "formueselementer": "formueselement", "formuesforøkelse": "formuesforøk", "formuesgoda": "formuesgod", "formuesgode": "formuesgod", "formuesgoder": "formuesgod", "formuesgodet": "formuesgod", "formuesgrupper": "formuesgrupp", "formuesmasse": "formuesmass", "formuesobjekt": "formuesobjekt", "formuesoppbygginga": "formuesoppbygging", "formuesskatt": "formuesskatt", "formuesskattegrunnlaget": "formuesskattegrunnlag", "formuesskatten": "formuesskatt", "formuesskatteplikt": "formuesskatteplikt", "formuesskattepliktig": "formuesskatteplikt", "formuesverdien": "formuesverdi", "formuesøkning": "formuesøkning", "formuesøkningen": "formuesøkning", "formulerast": "formuler", "formulering": "formulering", "formuleringa": "formulering", "formuleringar": "formulering", "formuleringen": "formulering", "formulert": "formuler", "formulerte": "formuler", "formynderargument": "formynderargument", "formål": "formål", "formålet": "formål", "formålstjenlige": "formålstjen", "fornemmer": "fornemm", "fornuft": "fornuft", "fornuftens": "fornuft", "fornuftig": "fornuft", "fornuftsmessige": "fornuftsmess", "fornyelse": "forny", "fornyet": "forny", "fornying": "fornying", "fornærmer": "fornærm", "fornærmet": "fornærm", "fornøyd": "fornøyd", "fornøyde": "fornøyd", "forpinte": "forpint", "forplikta": "forplikt", "forpliktar": "forplikt", "forpliktelse": "forplikt", "forpliktelsene": "forplikt", "forpliktelser": "forplikt", "forpliktende": "forplikt", "forpliktet": "forplikt", "forrang": "forrang", "forrenta": "forrent", "forrentast": "forrent", "forrenting": "forrenting", "forresten": "forrest", "forretningsbygg": "forretningsbygg", "forretningsdrift": "forretningsdrift", "forretningseigedommar": "forretningseigedomm", "forretningsførar": "forretningsfør", "forretningsførarane": "forretningsførar", "forretningsførarar": "forretningsførar", "forretningsføraravtalane": "forretningsføraravtal", "forretningsføraravtalar": "forretningsføraravtal", "forretningsføraravtale": "forretningsføraravtal", "forretningsføraravtalen": "forretningsføraravtal", "forretningsføraren": "forretningsførar", "forretningsførarforhold": "forretningsførarforhold", "forretningsførarhonorar": "forretningsførarhonor", "forretningsførarhonoraret": "forretningsførarhonorar", "forretningsførarkontraktar": "forretningsførarkontrakt", "forretningsføraroppdraga": "forretningsføraroppdrag", "forretningsføraroppgåver": "forretningsføraroppgåv", "forretningsførarstyre": "forretningsførarstyr", "forretningsførarverksemda": "forretningsførarverksemd", "forretningsføretak": "forretningsføretak", "forretningsførsel": "forretningsførsel", "forretningsførselen": "forretningsførsel", "forretningskommunar": "forretningskommun", "forretningskontor": "forretningskontor", "forretningskontoret": "forretningskontor", "forretningslokale": "forretningslokal", "forretningsmessig": "forretningsmess", "forretningsmessige": "forretningsmess", "forretningsområda": "forretningsområd", "forretningspraksis": "forretningspraksis", "forretningsstaden": "forretningsstad", "forretningssted": "forretningssted", "forretningsverksemd": "forretningsverksemd", "forrige": "forr", "forringa": "forring", "forringelse": "forring", "forringing": "forringing", "forrykking": "forrykking", "forrykkje": "forrykkj", "forrykkjer": "forrykkj", "forråtnelse": "forråtn", "forsamlingar": "forsamling", "forseinka": "forseink", "forseinking": "forseinking", "forseinkingsrente": "forseinkingsrent", "forseinkingstilfelle": "forseinkingstilfell", "forsendelsene": "forsend", "forsendelser": "forsend", "forseres": "forser", "forseringer": "forsering", "forsert": "forser", "forsete": "forset", "forsettleg": "forsett", "forsettlege": "forsett", "forsikre": "forsikr", "forsikrede": "forsikr", "forsikrer": "forsikr", "forsikring": "forsikring", "forsikringa": "forsikring", "forsikringane": "forsikring", "forsikringar": "forsikring", "forsikringen": "forsikring", "forsikringene": "forsikring", "forsikringens": "forsikring", "forsikringer": "forsikring", "forsikrings": "forsikring", "forsikringsavtale": "forsikringsavtal", "forsikringsavtaleloven": "forsikringsavtal", "forsikringsavtalen": "forsikringsavtal", "forsikringsavtalene": "forsikringsavtal", "forsikringsavtaler": "forsikringsavtal", "forsikringsbasert": "forsikringsbaser", "forsikringsbaserte": "forsikringsbaser", "forsikringsbeløpet": "forsikringsbeløp", "forsikringsbransjen": "forsikringsbransj", "forsikringselement": "forsikringselement", "forsikringselementer": "forsikringselement", "forsikringsfond": "forsikringsfond", "forsikringsfondet": "forsikringsfond", "forsikringsforbund": "forsikringsforbund", "forsikringsform": "forsikringsform", "forsikringsformer": "forsikringsform", "forsikringsforpliktelser": "forsikringsforplikt", "forsikringsgaranti": "forsikringsgaranti", "forsikringsinstitusjoner": "forsikringsinstitusjon", "forsikringskapital": "forsikringskapital", "forsikringsklasser": "forsikringsklass", "forsikringskollektiv": "forsikringskollektiv", "forsikringskollektivet": "forsikringskollektiv", "forsikringskontrakt": "forsikringskontrakt", "forsikringskontraktene": "forsikringskontrakt", "forsikringskontrakter": "forsikringskontrakt", "forsikringsløsning": "forsikringsløsning", "forsikringsløsninger": "forsikringsløsning", "forsikringsmekanismen": "forsikringsmekanism", "forsikringsmeklarar": "forsikringsmeklar", "forsikringsmessig": "forsikringsmess", "forsikringsmessige": "forsikringsmess", "forsikringsmuligheter": "forsikringsmu", "forsikringsområdet": "forsikringsområd", "forsikringsordning": "forsikringsordning", "forsikringsordninger": "forsikringsordning", "forsikringsorganisert": "forsikringsorganiser", "forsikringspoliser": "forsikringspolis", "forsikringspremiar": "forsikringspremi", "forsikringsprodukt": "forsikringsprodukt", "forsikringsprodukter": "forsikringsprodukt", "forsikringsrisiko": "forsikringsrisiko", "forsikringsselskap": "forsikringsselskap", "forsikringsselskapene": "forsikringsselskap", "forsikringsselskaper": "forsikringsselskap", "forsikringsselskapers": "forsikringsselskap", "forsikringsselskapet": "forsikringsselskap", "forsikringsspørsmål": "forsikringsspørsmål", "forsikringssum": "forsikringssum", "forsikringstaker": "forsikringstak", "forsikringstakeren": "forsikringstaker", "forsikringstakerne": "forsikringstakern", "forsikringsteknisk": "forsikringsteknisk", "forsikringstekniske": "forsikringsteknisk", "forsikringstid": "forsikringstid", "forsikringstiden": "forsikringstid", "forsikringstilfellet": "forsikringstilfell", "forsikringsvilkårene": "forsikringsvilkår", "forsikringsvirksomhet": "forsikringsvirksom", "forsikringsvirksomhetsloven": "forsikringsvirksom", "forsikringsvirksomhetslovens": "forsikringsvirksom", "forsikringsytelsen": "forsikringsyt", "forsikringsytelsene": "forsikringsyt", "forsiktig": "forsikt", "forsiktige": "forsikt", "forsiktighet": "forsikt", "forsiktighetshensyn": "forsiktighetshensyn", "forsinkelser": "forsink", "forsinket": "forsink", "forsker": "forsk", "forskjell": "forskjell", "forskjellen": "forskjell", "forskjellene": "forskjell", "forskjeller": "forskjell", "forskjellig": "forskjel", "forskjellige": "forskjel", "forskjellsbehandle": "forskjellsbehandl", "forskjellsbehandling": "forskjellsbehandling", "forskning": "forskning", "forskningsinstitutter": "forskningsinstitutt", "forskot": "forskot", "forskota": "forskot", "forskotet": "forskot", "forskotsbetaling": "forskotsbetaling", "forskrekket": "forskrekk", "forskrift": "forskrift", "forskrifta": "forskrift", "forskriften": "forskrift", "forskriftene": "forskrift", "forskriftens": "forskrift", "forskrifter": "forskrift", "forskrifts": "forskrift", "forskriftshjemmel": "forskriftshjemmel", "forskriftsverket": "forskriftsverk", "forskuddsbetaling": "forskuddsbetaling", "forskuddsbetalt": "forskuddsbetalt", "forskuddsfinansierte": "forskuddsfinansier", "forskuddsinnskudd": "forskuddsinnskudd", "forskuddspremie": "forskuddspremi", "forskuddsvis": "forskuddsvis", "forskyvning": "forskyvning", "forslag": "forslag", "forslagene": "forslag", "forslaget": "forslag", "forslagets": "forslag", "forslitte": "forslitt", "forslår": "forslår", "forsprang": "forsprang", "forspranget": "forsprang", "forstand": "forstand", "forstandardskapet": "forstandardskap", "forstandarskapet": "forstandarskap", "forstanden": "forstand", "forstarkt": "forstarkt", "forsterke": "forsterk", "forsterker": "forsterk", "forsterkes": "forsterk", "forsterket": "forsterk", "forsto": "forsto", "forstod": "forstod", "forstoffer": "forstoff", "forstsetter": "forstsett", "forstyrre": "forstyrr", "forstyrrelser": "forstyrr", "forstå": "forstå", "forståelig": "forstå", "forståelse": "forstå", "forståelsen": "forstå", "forståelsesfull": "forståelsesfull", "forståing": "forståing", "forståinga": "forståing", "forstår": "forstår", "forstås": "forstås", "forstått": "forstått", "forstørrelsesglass": "forstørrelsesglass", "forsvant": "forsvant", "forsvarar": "forsvar", "forsvarast": "forsvar", "forsvare": "forsvar", "forsvarer": "forsvar", "forsvares": "forsvar", "forsvaret": "forsvar", "forsvarleg": "forsvar", "forsvarlege": "forsvar", "forsvarlig": "forsvar", "forsvarsmessig": "forsvarsmess", "forsvart": "forsvart", "forsvinne": "forsvinn", "forsvinner": "forsvinn", "forsvunnet": "forsvunn", "forsyningsberedskap": "forsyningsberedskap", "forsyningsberedskapen": "forsyningsberedskap", "forsøk": "forsøk", "forsøke": "forsøk", "forsøker": "forsøk", "forsøksordningar": "forsøksordning", "forsøkt": "forsøkt", "forsøme": "forsøm", "forsømer": "forsøm", "forsøming": "forsøming", "forsømt": "forsømt", "forsørge": "forsørg", "forsørgelsesbyrdene": "forsørgelsesbyrd", "forsørget": "forsørg", "fort": "fort", "fortalt": "fortalt", "fortalte": "fortalt", "fortell": "fortell", "fortelle": "fortell", "forteller": "fortell", "forteneste": "fortenest", "fortere": "forter", "fortid": "fortid", "fortjener": "fortjen", "fortjent": "fortjent", "fortolkinga": "fortolking", "fortolkning": "fortolkning", "fortolles": "fortoll", "fortollet": "fortoll", "fortolling": "fortolling", "fortollingssted": "fortollingssted", "fortrengde": "fortrengd", "fortrenger": "fortreng", "fortrengje": "fortrengj", "fortrengning": "fortrengning", "fortrinn": "fortrinn", "fortrinnsvis": "fortrinnsvis", "fortrolige": "fortro", "fortrolighet": "fortro", "fortsatt": "fortsatt", "fortsatte": "fortsatt", "fortsette": "fortsett", "fortsettelse": "fortsett", "fortsettelsesforsikring": "fortsettelsesforsikring", "fortsettelsesforsikringen": "fortsettelsesforsikring", "fortsettelsesforsikringer": "fortsettelsesforsikring", "fortsettelsessikring": "fortsettelsessikring", "fortsetter": "fortsett", "fortumlet": "fortuml", "fortvilelse": "fortvil", "fortvilet": "fortvil", "fortærende": "fortær", "fortøyningene": "fortøyning", "fortøyninger": "fortøyning", "forum": "forum", "forunderlig": "forunder", "forunderlige": "forunder", "forundret": "forundr", "forundring": "forundring", "forureining": "forureining", "forurensing": "forurensing", "forurensingsmål": "forurensingsmål", "forurensning": "forurensning", "forut": "forut", "forutberegnelighet": "forutberegn", "foruten": "forut", "forutgående": "forutgå", "forutsatt": "forutsatt", "forutsatte": "forutsatt", "forutseielege": "forutsei", "forutses": "foruts", "forutsetning": "forutsetning", "forutsetningen": "forutsetning", "forutsetningene": "forutsetning", "forutsetninger": "forutsetning", "forutsetningsvis": "forutsetningsvis", "forutsette": "forutsett", "forutsetter": "forutsett", "forutsettes": "forutsett", "forutsies": "forutsi", "forutsigbar": "forutsigb", "forutsigbarhet": "forutsigbar", "forvalta": "forvalt", "forvaltar": "forvalt", "forvaltarar": "forvaltar", "forvaltaren": "forvaltar", "forvaltarrolle": "forvaltarroll", "forvaltast": "forvalt", "forvalte": "forvalt", "forvalter": "forvalt", "forvalterens": "forvalter", "forvaltes": "forvalt", "forvaltet": "forvalt", "forvaltinga": "forvalting", "forvaltning": "forvaltning", "forvaltninga": "forvaltning", "forvaltningen": "forvaltning", "forvaltningsalternativene": "forvaltningsalternativ", "forvaltningsavtalar": "forvaltningsavtal", "forvaltningsenhet": "forvaltningsen", "forvaltningsforetak": "forvaltningsforetak", "forvaltningsinstitusjon": "forvaltningsinstitusjon", "forvaltningsinstitusjonen": "forvaltningsinstitusjon", "forvaltningsinstitusjonens": "forvaltningsinstitusjon", "forvaltningskapital": "forvaltningskapital", "forvaltningskontrakt": "forvaltningskontrakt", "forvaltningskostnader": "forvaltningskostnad", "forvaltningslova": "forvaltning", "forvaltningsloven": "forvaltning", "forvaltningsmessige": "forvaltningsmess", "forvaltningsoppdraget": "forvaltningsoppdrag", "forvaltningsoppgåve": "forvaltningsoppgåv", "forvaltningsoppgåvene": "forvaltningsoppgåv", "forvaltningsoppgåver": "forvaltningsoppgåv", "forvaltningsorgan": "forvaltningsorgan", "forvaltningspraksis": "forvaltningspraksis", "forvaltningsprodukter": "forvaltningsprodukt", "forvaltningsrettane": "forvaltningsrett", "forvaltningsrettar": "forvaltningsrett", "forvaltningsselskap": "forvaltningsselskap", "forvaltningsselskaper": "forvaltningsselskap", "forvaltningsselskapet": "forvaltningsselskap", "forvaltningsspørsmålet": "forvaltningsspørsmål", "forvaltningstenestene": "forvaltningstenest", "forvaltningstenester": "forvaltningstenest", "forvaltningsverksemd": "forvaltningsverksemd", "forvaltningsverksemda": "forvaltningsverksemd", "forvandler": "forvandl", "forvandles": "forvandl", "forvandlet": "forvandl", "forvandling": "forvandling", "forvente": "forvent", "forventede": "forvent", "forventer": "forvent", "forventes": "forvent", "forventet": "forvent", "forventninger": "forventning", "forvirret": "forvirr", "forvirring": "forvirring", "forvirringens": "forvirring", "forårsaket": "forårsak", "forøvrig": "forøvr", "foss": "foss", "fossefall": "fossefall", "fossen": "foss", "fosser": "foss", "fosset": "foss", "fosterbarn": "fosterbarn", "fosterborn": "fosterborn", "fosterbror": "fosterbror", "fosterbroren": "fosterbror", "fosterfar": "fosterf", "fostermoren": "fostermor", "fostersønn": "fostersønn", "fostre": "fostr", "fostret": "fostr", "fot": "fot", "foten": "fot", "fotnote": "fotnot", "fotografere": "fotografer", "fots": "fot", "fotside": "fotsid", "fottøyet": "fottøy", "fra": "fra", "fradrag": "fradrag", "fradraget": "fradrag", "fradragsbegrensning": "fradragsbegrensning", "fradragsberettigede": "fradragsberett", "fradragsberettiget": "fradragsberett", "fradragshjemmel": "fradragshjemmel", "fradragsramme": "fradragsramm", "fradragsrammen": "fradragsramm", "fradragsrammer": "fradragsramm", "fradragsreglene": "fradragsregl", "fradragsregler": "fradragsregl", "fradragsrett": "fradragsrett", "fradragsretten": "fradragsrett", "fraflyttede": "fraflytt", "fragmenter": "fragment", "fragmentert": "fragmenter", "frakt": "frakt", "fraktdistansen": "fraktdistans", "frakte": "frakt", "frakter": "frakt", "fraktes": "frakt", "fraktet": "frakt", "fraktkostnadene": "fraktkostnad", "fraktkostnader": "fraktkostnad", "fraktområdet": "fraktområd", "fraktraten": "fraktrat", "fraktratene": "fraktrat", "fraktrater": "fraktrat", "fraktruter": "fraktrut", "fraktsammenheng": "fraktsammenheng", "fraktskip": "fraktskip", "fram": "fram", "framfor": "framfor", "framføring": "framføring", "framføringstid": "framføringstid", "framgangsmåtar": "framgangsmåt", "framgangsmåte": "framgangsmåt", "framgangsmåten": "framgangsmåt", "framgangsmåter": "framgangsmåt", "framgå": "framgå", "framgår": "framgår", "framheva": "framhev", "framheve": "framhev", "framhever": "framhev", "framhevet": "framhev", "framheving": "framheving", "framja": "framj", "framkomme": "framkomm", "framkommelighet": "framkomm", "framkommeligheten": "framkomm", "framkommer": "framkomm", "framlegg": "framlegg", "framlegga": "framlegg", "framlegge": "framlegg", "framlegget": "framlegg", "framleggs": "framlegg", "framleigar": "framl", "framleigarens": "framleigar", "framleige": "framl", "framleigerettar": "framleigerett", "framleigt": "framleigt", "framleis": "framleis", "framme": "framm", "frammøte": "frammøt", "frammøtet": "frammøt", "frammøtte": "frammøtt", "framom": "framom", "framover": "framov", "framsetjing": "framsetjing", "framsetter": "framsett", "framskaffe": "framskaff", "framskaffelse": "framskaff", "framskaffing": "framskaffing", "framskrevet": "framskrev", "framskrive": "framskriv", "framskriving": "framskriving", "framskrivingen": "framskriving", "framskrivingene": "framskriving", "framskrivinger": "framskriving", "framskrivingsalternativer": "framskrivingsalternativ", "framskrivingsresultater": "framskrivingsresultat", "framskrivning": "framskrivning", "framskynde": "framskynd", "framstavnen": "framstavn", "framstille": "framstill", "framstilling": "framstilling", "framstillinga": "framstilling", "framstillingen": "framstilling", "framstilt": "framstilt", "framstå": "framstå", "framstår": "framstår", "framstått": "framstått", "framtid": "framtid", "framtida": "framtid", "framtidas": "framtid", "framtiden": "framtid", "framtidens": "framtid", "framtidig": "framtid", "framtidige": "framtid", "framtidsbilde": "framtidsbild", "framtidsbildene": "framtidsbild", "framtidsbilder": "framtidsbild", "framtidsbildet": "framtidsbild", "framtredende": "framtred", "framveksten": "framvekst", "framvising": "framvising", "frankrike": "frankrik", "fraser": "fras", "fraskrive": "fraskriv", "fratre": "fratr", "fratredelse": "fratred", "fratredelsen": "fratred", "fratredelsestidspunktet": "fratredelsestidspunkt", "fratreden": "fratred", "fratrekk": "fratrekk", "fratrer": "fratr", "fratrukket": "fratrukk", "fratrådt": "fratråd", "fratrådte": "fratråd", "fratrådtes": "fratråd", "fravike": "fravik", "fravikes": "fravik", "fred": "fred", "fredelige": "fred", "freden": "fred", "frederikshavn": "frederikshavn", "fredrikstad": "fredrikstad", "fredstid": "fredstid", "free": "free", "freight": "freight", "freistnad": "freistnad", "freke": "frek", "frekvens": "frekv", "frem": "frem", "fremadskuende": "fremadsku", "fremdeles": "fremdel", "fremfor": "fremfor", "fremgår": "fremgår", "fremja": "fremj", "fremjar": "fremj", "fremjast": "fremj", "fremje": "fremj", "fremjing": "fremjing", "fremleie": "fremlei", "fremme": "fremm", "fremmed": "fremmed", "fremmede": "fremm", "fremmer": "fremm", "fremmes": "fremm", "fremmet": "fremm", "fremover": "fremov", "fremskrittspartiet": "fremskrittsparti", "fremst": "fremst", "fremste": "fremst", "fremt": "fremt", "fremtid": "fremtid", "fremtiden": "fremtid", "fremtidig": "fremtid", "frendedrap": "frendedrap", "frender": "frend", "fresende": "fres", "freser": "fres", "fri": "fri", "friare": "friar", "fridom": "fridom", "friere": "frier", "frierferd": "frierferd", "frierføtter": "frierføtt", "frieriet": "frieri", "frifunne": "frifunn", "frigg": "frigg", "friggs": "frigg", "frigis": "frigis", "frigitte": "frigitt", "frigivelse": "frigiv", "frigjort": "frigjort", "frigjorte": "frigjort", "frigjør": "frigjør", "frigjøre": "frigjør", "frigjøres": "frigjør", "frigjøring": "frigjøring", "frihavn": "frihavn", "frihavnen": "frihavn", "frihet": "frih", "frikortgrensen": "frikortgrens", "friluftsinteresser": "friluftsinteress", "friluftsliv": "friluftsliv", "friluftslivet": "friluftsliv", "friluftslivs": "friluftsliv", "friområde": "friområd", "fripolise": "fripolis", "fripolisen": "fripolis", "fripolisene": "fripolis", "fripolisens": "fripolis", "fripoliser": "fripolis", "fripoliseregisteret": "fripoliseregister", "fripoliserettighetene": "fripoliserett", "fripoliserettigheter": "fripoliserett", "fripolises": "fripolis", "frisk": "frisk", "friske": "frisk", "friskt": "friskt", "frist": "frist", "fristane": "frist", "fristar": "frist", "friste": "frist", "fristed": "fristed", "fristen": "frist", "fristende": "frist", "frister": "frist", "fristforsøminga": "fristforsøming", "fristille": "fristill", "fristoversitjing": "fristoversitjing", "fristrekning": "fristrekning", "fritak": "fritak", "fritaket": "fritak", "fritar": "frit", "fritas": "frit", "fritatt": "fritatt", "friteken": "fritek", "fritidsaktivitetar": "fritidsaktivitet", "fritidsaktiviteter": "fritidsaktivitet", "fritidsarealer": "fritidsareal", "fritidsbustad": "fritidsbustad", "fritidsbustader": "fritidsbustad", "fritidssysler": "fritidssysl", "fritt": "fritt", "frittliggjande": "frittliggj", "frittståande": "frittstå", "frittstående": "frittstå", "friviljug": "friviljug", "friviljuge": "friviljug", "frivillig": "frivil", "frivillige": "frivil", "frode": "frod", "frodes": "frod", "frodig": "frod", "frogn": "frogn", "frognerkilen": "frognerkil", "frokost": "frokost", "frokostbord": "frokostbord", "frosne": "frosn", "frosset": "fross", "frost": "frost", "frukt": "frukt", "fruktbare": "fruktbar", "fruktimporten": "fruktimport", "fryd": "fryd", "fryder": "fryd", "frydet": "fryd", "frykte": "frykt", "fryktelig": "frykt", "frykter": "frykt", "fryktet": "frykt", "frynset": "fryns", "fryse": "frys", "fryseboksanlegg": "fryseboksanlegg", "fryser": "frys", "fryses": "frys", "frå": "frå", "frådelt": "frådelt", "frådelte": "frådelt", "fråden": "fråd", "frådende": "fråd", "frådrag": "frådrag", "fråfalle": "fråfall", "fråflytting": "fråflytting", "fråga": "fråg", "frånangersfossen": "frånangersfoss", "fråsegn": "fråsegn", "fråsegna": "fråsegn", "fråvere": "fråver", "fråvikast": "fråvik", "fråvikelege": "fråvik", "fråviking": "fråviking", "fråvikinga": "fråviking", "fråvikingsklausular": "fråvikingsklausul", "frøs": "frøs", "frøy": "frøy", "frøya": "frøya", "frøyas": "frøyas", "frøys": "frøys", "fugl": "fugl", "fuglen": "fugl", "fuglene": "fugl", "fuglenes": "fugl", "fuglens": "fugl", "fugler": "fugl", "fuglers": "fugl", "fugleskrik": "fugleskrik", "fuglum": "fuglum", "fukt": "fukt", "fuktig": "fukt", "fuktighet": "fukt", "fulgt": "fulgt", "fulgte": "fulgt", "full": "full", "fulla": "full", "fulle": "full", "fullere": "fuller", "fullføring": "fullføring", "fullført": "fullført", "fullførte": "fullført", "fullgod": "fullgod", "fullmakt": "fullmakt", "fullmakta": "fullmakt", "fullmaktene": "fullmakt", "fullmakter": "fullmakt", "fullmektig": "fullmekt", "fullmektigen": "fullmekt", "fullstendig": "fullstend", "fullstendige": "fullstend", "fullt": "fullt", "fulltids": "fulltid", "fulltidsinnskudd": "fulltidsinnskudd", "fulltidsstilling": "fulltidsstilling", "fullvoksen": "fullvoks", "fungere": "funger", "fungerende": "funger", "fungerer": "funger", "funkler": "funkl", "funksjon": "funksjon", "funksjonell": "funksjonell", "funksjonelt": "funksjonelt", "funksjonen": "funksjon", "funksjoner": "funksjon", "funksjonshemma": "funksjonshemm", "funksjonshemmede": "funksjonshemm", "funksjonshemming": "funksjonshemming", "funksjonstida": "funksjonstid", "funksjonstiden": "funksjonstid", "funksjonær": "funksjonær", "funksjonærer": "funksjonær", "funne": "funn", "funnene": "funn", "funnet": "funn", "furten": "furt", "fusjon": "fusjon", "fusjoner": "fusjon", "fusjonerast": "fusjoner", "fusjonsplanen": "fusjonsplan", "fyker": "fyk", "fyldigare": "fyldigar", "fylgjene": "fylgj", "fylke": "fylk", "fylkene": "fylk", "fylker": "fylk", "fylkes": "fylk", "fylkesdelplan": "fylkesdelplan", "fylkesdelplaner": "fylkesdelplan", "fylkeskommunal": "fylkeskommunal", "fylkeskommunale": "fylkeskommunal", "fylkeskommunalt": "fylkeskommunalt", "fylkeskommunar": "fylkeskommun", "fylkeskommune": "fylkeskommun", "fylkeskommunen": "fylkeskommun", "fylkeskommunene": "fylkeskommun", "fylkeskommunenes": "fylkeskommun", "fylkeskommuner": "fylkeskommun", "fylkesmannen": "fylkesmann", "fylkesmannens": "fylkesmann", "fylkesmiljøvernsjef": "fylkesmiljøvernsjef", "fylkesplanen": "fylkesplan", "fylkesplanlegging": "fylkesplanlegging", "fylkesting": "fylkesting", "fylkesveg": "fylkesveg", "fylkesvis": "fylkesvis", "fylket": "fylk", "fylkinger": "fylking", "fylle": "fyll", "fyller": "fyll", "fylles": "fyll", "fyllprat": "fyllprat", "fylt": "fylt", "fylte": "fylt", "fyr": "fyr", "fyrbelysning": "fyrbelysning", "fyrer": "fyr", "fyrste": "fyrst", "fyrtjenestens": "fyrtjenest", "fysisk": "fysisk", "fysiske": "fysisk", "få": "få", "fåmælt": "fåmælt", "fåmælte": "fåmælt", "får": "får", "fårbaute": "fårbaut", "fåtall": "fåtall", "fått": "fått", "fåvne": "fåvn", "fåvnes": "fåvn", "fåvnesbane": "fåvnesb", "fæl": "fæl", "fællesforbund": "fællesforbund", "fællesforeningen": "fællesforening", "fælt": "fælt", "færder": "færd", "færre": "færr", "færrest": "færrest", "føde": "fød", "føder": "fød", "føderåd": "føderåd", "fødes": "fød", "fødsels": "fødsel", "fødselsdato": "fødselsdato", "fødselsgave": "fødselsgav", "fødselsnummer": "fødselsnumm", "født": "født", "fødte": "født", "føle": "føl", "følelser": "føl", "føler": "føl", "følg": "følg", "følgde": "følgd", "følge": "følg", "følgelig": "følg", "følgende": "følg", "følgene": "følg", "følger": "følg", "følges": "følg", "følgesvenn": "følgesvenn", "følgja": "følgj", "følgjande": "følgj", "følgjast": "følgj", "følgje": "følgj", "følgjene": "følgj", "følgjer": "følgj", "følgt": "følgt", "føll": "føll", "føllet": "føll", "følsomhet": "følsom", "følsomheten": "følsom", "følsomme": "følsomm", "før": "før", "førarhund": "førarhund", "førast": "før", "føre": "før", "førearbeida": "førearbeid", "førebels": "førebel", "førebu": "førebu", "førebuast": "førebu", "førebudd": "førebudd", "førebudde": "førebudd", "førebuing": "førebuing", "førebuinga": "førebuing", "førebur": "førebur", "førehand": "førehand", "førehandsavtale": "førehandsavtal", "førehandsgodkjenning": "førehandsgodkjenning", "førehandssamtykke": "førehandssamtykk", "førehandsvarsel": "førehandsvarsel", "førehaving": "førehaving", "føremonene": "føremon", "føremoner": "føremon", "føremål": "føremål", "føremåla": "føremål", "føremålet": "føremål", "føremålstenleg": "føremålsten", "førende": "før", "fører": "før", "førerett": "førerett", "føreretten": "førerett", "føres": "før", "føresegn": "føresegn", "føresegna": "føresegn", "føresegnene": "føresegn", "føresegner": "føresegn", "føreset": "føres", "føresetnad": "føresetnad", "føresetnaden": "føresetnad", "førespurnaden": "førespurnad", "føretak": "føretak", "føretaka": "føretak", "føretaket": "føretak", "føretaksform": "føretaksform", "føretaksformer": "føretaksform", "føretaksregisteret": "føretaksregister", "føretaksregistret": "føretaksregistr", "førevegen": "føreveg", "føring": "føring", "føringa": "føring", "føringer": "føring", "førre": "førr", "først": "først", "første": "først", "førsteamanuensis": "førsteamanuensis", "førstedestinasjon": "førstedestinasjon", "førstegongs": "førstegong", "førstekonsulent": "førstekonsulent", "førstemottakere": "førstemottaker", "førstkomande": "førstkom", "førstnevnte": "førstnevnt", "førstnevntes": "førstnevnt", "ført": "ført", "førte": "ført", "førti": "førti", "førtidspensjon": "førtidspensjon", "førtidspensjoner": "førtidspensjon", "førtidspensjoneringen": "førtidspensjonering", "førtidspensjonert": "førtidspensjoner", "førtidspensjonerte": "førtidspensjoner", "førtidspensjonister": "førtidspensjonist", "førutset": "føruts", "føttene": "føtt", "føtter": "føtt", "føyd": "føyd", "føye": "føye", "føyelig": "føyel", "føyer": "føyer", "g": "g", "ga": "ga", "gagn": "gagn", "gagnråd": "gagnråd", "gal": "gal", "galar": "gal", "galder": "gald", "galdrer": "galdr", "galdt": "gald", "gale": "gal", "galer": "gal", "galge": "galg", "galopperende": "galopper", "galskap": "galskap", "galt": "galt", "galte": "galt", "galten": "galt", "gambara": "gambar", "gamle": "gaml", "gamlingene": "gamling", "gammal": "gammal", "gammel": "gammel", "gammelt": "gammelt", "gang": "gang", "gangen": "gang", "gangene": "gang", "ganger": "gang", "ganske": "gansk", "gantry": "gantry", "gantrykran": "gantrykran", "gap": "gap", "gape": "gap", "gaper": "gap", "gapet": "gap", "gaphals": "gaphal", "gapskratter": "gapskratt", "gapte": "gapt", "garaas": "gara", "garantere": "garanter", "garanterer": "garanter", "garanteres": "garanter", "garantert": "garanter", "garanterte": "garanter", "garanti": "garanti", "garantiane": "garanti", "garantiar": "garanti", "garantien": "garanti", "garantier": "garanti", "garantikapital": "garantikapital", "garantikostnaden": "garantikostnad", "garantirisikoen": "garantirisiko", "garantistillelse": "garantistill", "garasjar": "garasj", "garasje": "garasj", "gardering": "gardering", "gardermoen": "gardermo", "gards": "gard", "gardsbruk": "gardsbruk", "garm": "garm", "garn": "garn", "garnet": "garn", "garnmaskene": "garnmask", "gass": "gass", "gater": "gat", "gats": "gat", "gatt": "gatt", "gauler": "gaul", "gaupehetter": "gaupehett", "gav": "gav", "gave": "gav", "gaven": "gav", "gavene": "gav", "gaver": "gav", "gavmild": "gavmild", "gdw": "gdw", "gebyr": "gebyr", "gebyra": "gebyr", "gebyrer": "gebyr", "gebyrordning": "gebyrordning", "gebyrsystemet": "gebyrsystem", "geipe": "geip", "geirrød": "geirrød", "geirrøds": "geirrød", "geit": "geit", "geita": "geit", "geitebukk": "geitebukk", "geitebukken": "geitebukk", "geitebukker": "geitebukk", "geitene": "geit", "geitepiss": "geitepiss", "geiteryggen": "geiterygg", "geiteskinnene": "geiteskinn", "gemeinschaftlichen": "gemeinschaftlich", "general": "general", "generalforsamling": "generalforsamling", "generalforsamlinga": "generalforsamling", "generalforsamlingaallmenne": "generalforsamlingaallmenn", "generalforsamlingane": "generalforsamling", "generalforsamlingar": "generalforsamling", "generalforsamlingsvedtak": "generalforsamlingsvedtak", "generaliserte": "generaliser", "generalklausulen": "generalklausul", "generasjon": "generasjon", "generasjonane": "generasjon", "generasjonar": "generasjon", "generasjoner": "generasjon", "generell": "generell", "generelle": "generell", "generelt": "generelt", "genererasjoner": "genererasjon", "generert": "generer", "genererte": "generer", "genom": "genom", "genossenschaft": "genossenschaft", "gent": "gent", "geografisk": "geografisk", "geografiske": "geografisk", "gerd": "gerd", "gere": "ger", "geschaftsbetriebes": "geschaftsbetrieb", "geschlossener": "geschlossen", "gesellschaften": "gesellschaft", "gesetz": "gesetz", "gevinst": "gevinst", "gevinstbeskatning": "gevinstbeskatning", "gevinsten": "gevinst", "gevinster": "gevinst", "geysirer": "geysir", "ghv": "ghv", "gi": "gi", "gidder": "gidd", "gift": "gift", "gifte": "gift", "giften": "gift", "gifter": "gift", "giftet": "gift", "giftig": "gift", "giftige": "gift", "gikk": "gikk", "gilde": "gild", "gildet": "gild", "gilling": "gilling", "gillings": "gilling", "gillion": "gillion", "ginnunagagap": "ginnunagagap", "ginnungagap": "ginnungagap", "gir": "gir", "gis": "gis", "gisler": "gisl", "gissel": "gissel", "gitt": "gitt", "gitte": "gitt", "gjallarbru": "gjallarbru", "gjallarbrua": "gjallarbru", "gjallarhorn": "gjallarhorn", "gjallarhornet": "gjallarhorn", "gjalp": "gjalp", "gje": "gje", "gjeddes": "gjedd", "gjekk": "gjekk", "gjeld": "gjeld", "gjelda": "gjeld", "gjeldande": "gjeld", "gjelde": "gjeld", "gjeldende": "gjeld", "gjelder": "gjeld", "gjeldsandel": "gjeldsandel", "gjeldsbrevlova": "gjeldsbrev", "gjeldsforhandling": "gjeldsforhandling", "gjeldshøve": "gjeldshøv", "gjeldsinstrumenter": "gjeldsinstrument", "gjeldsnemnda": "gjeldsnemnd", "gjeldssanering": "gjeldssanering", "gjeldt": "gjeld", "gjeller": "gjell", "gjem": "gjem", "gjemme": "gjemm", "gjemmer": "gjemm", "gjemt": "gjemt", "gjenforsikring": "gjenforsikring", "gjenfortelles": "gjenfortell", "gjengitt": "gjengitt", "gjengjeld": "gjengjeld", "gjengs": "gjeng", "gjenkjøpsverdi": "gjenkjøpsverdi", "gjenlevende": "gjenlev", "gjenlyd": "gjenlyd", "gjennom": "gjennom", "gjennomboret": "gjennombor", "gjennomførast": "gjennomfør", "gjennomføre": "gjennomfør", "gjennomfører": "gjennomfør", "gjennomføres": "gjennomfør", "gjennomføring": "gjennomføring", "gjennomføringa": "gjennomføring", "gjennomføringen": "gjennomføring", "gjennomføringsloven": "gjennomføring", "gjennomføringsorganet": "gjennomføringsorgan", "gjennomført": "gjennomført", "gjennomførte": "gjennomført", "gjennomgang": "gjennomgang", "gjennomgangen": "gjennomgang", "gjennomgangsbustader": "gjennomgangsbustad", "gjennomgangstrafikk": "gjennomgangstrafikk", "gjennomgangsåre": "gjennomgangsår", "gjennomgå": "gjennomgå", "gjennomgåande": "gjennomgå", "gjennomgående": "gjennomgå", "gjennomgåinga": "gjennomgåing", "gjennomgås": "gjennomgås", "gjennomgått": "gjennomgått", "gjennomsiktige": "gjennomsikt", "gjennomslag": "gjennomslag", "gjennomsnitlig": "gjennomsnit", "gjennomsnitt": "gjennomsnitt", "gjennomsnittet": "gjennomsnitt", "gjennomsnittlig": "gjennomsnitt", "gjennomsnittlige": "gjennomsnitt", "gjennomsnittsavkastningen": "gjennomsnittsavkastning", "gjennomsnittsberegninger": "gjennomsnittsberegning", "gjennomsnittsbetraktninger": "gjennomsnittsbetraktning", "gjennomsnittsinnskudd": "gjennomsnittsinnskudd", "gjennomsnittsinnskuddene": "gjennomsnittsinnskudd", "gjennomsnittsinnskuddet": "gjennomsnittsinnskudd", "gjennomsnittslønn": "gjennomsnittslønn", "gjennomsnittssatsen": "gjennomsnittssats", "gjennomsnittsskattesatsen": "gjennomsnittsskattesats", "gjennomsnittstall": "gjennomsnittstall", "gjennomsnittsverdi": "gjennomsnittsverdi", "gjennomsnittsverdien": "gjennomsnittsverdi", "gjennomsyn": "gjennomsyn", "gjennomtrekken": "gjennomtrekk", "gjennoppstår": "gjennoppstår", "gjenom": "gjenom", "gjenoppta": "gjenoppt", "gjenopptagelse": "gjenopptag", "gjensidig": "gjensid", "gjensidige": "gjensid", "gjenspeiles": "gjenspeil", "gjenstand": "gjenstand", "gjenstående": "gjenstå", "gjenstår": "gjenstår", "gjensyn": "gjensyn", "gjentar": "gjent", "gjentatt": "gjentatt", "gjenværende": "gjenvær", "gjer": "gjer", "gjerast": "gjer", "gjerdene": "gjerd", "gjere": "gjer", "gjerne": "gjern", "gjerning": "gjerning", "gjerrige": "gjerr", "gjerrigknark": "gjerrigknark", "gjersem": "gjersem", "gjerseme": "gjersem", "gjest": "gjest", "gjestearbeidende": "gjestearbeid", "gjestebud": "gjestebud", "gjestehus": "gjestehus", "gjesten": "gjest", "gjestene": "gjest", "gjester": "gjest", "gjesterom": "gjesterom", "gjestfrihet": "gjestfri", "gjestfrihetens": "gjestfri", "gjette": "gjett", "gjev": "gjev", "gjevast": "gjev", "gjeve": "gjev", "gjeven": "gjev", "gjevjon": "gjevjon", "gjevne": "gjevn", "gjoll": "gjoll", "gjord": "gjord", "gjorde": "gjord", "gjort": "gjort", "gjærer": "gjær", "gjødning": "gjødning", "gjødsel": "gjødsel", "gjør": "gjør", "gjøre": "gjør", "gjøres": "gjør", "glad": "glad", "glade": "glad", "gladsheim": "gladsheim", "glasruter": "glasrut", "glassperler": "glassperl", "glassverk": "glassverk", "glatt": "glatt", "glatte": "glatt", "glede": "gled", "gleden": "gled", "gleder": "gled", "glefser": "glefs", "gleipne": "gleipn", "glem": "glem", "glemmer": "glemm", "glemsel": "glemsel", "glemselsfuglen": "glemselsfugl", "glemt": "glemt", "glemte": "glemt", "glipp": "glipp", "glir": "glir", "glitrende": "glitr", "glitrer": "glitr", "glitter": "glitt", "globale": "global", "globalisering": "globalisering", "globalt": "globalt", "globe": "glob", "globes": "glob", "glohete": "glohet", "glomma": "glomm", "glommafarvannet": "glommafarvann", "glugge": "glugg", "gluggen": "glugg", "glødende": "glød", "gløder": "glød", "glør": "glør", "gløttet": "gløtt", "gnage": "gnag", "gnager": "gnag", "gni": "gni", "gnir": "gnir", "gnist": "gnist", "gnister": "gnist", "gnistrer": "gnistr", "gnitahei": "gnitahei", "gnitaheia": "gnitahei", "gnå": "gnå", "god": "god", "godbit": "godbit", "gode": "god", "godet": "god", "godkjend": "godkjend", "godkjende": "godkj", "godkjennast": "godkjenn", "godkjenne": "godkjenn", "godkjenner": "godkjenn", "godkjennes": "godkjenn", "godkjenning": "godkjenning", "godkjenninga": "godkjenning", "godkjenningsinstans": "godkjenningsinstan", "godkjenningsinstansen": "godkjenningsinstans", "godkjenningskompetanse": "godkjenningskompetans", "godkjenningsnekting": "godkjenningsnekting", "godkjenningsnektinga": "godkjenningsnekting", "godkjenningsordning": "godkjenningsordning", "godkjenningsordninga": "godkjenningsordning", "godkjenningsregelen": "godkjenningsregel", "godkjenningsspørsmålet": "godkjenningsspørsmål", "godkjent": "godkjent", "godkjente": "godkjent", "gods": "god", "godsaktivitetene": "godsaktivitet", "godsaktiviteter": "godsaktivitet", "godsbanegården": "godsbanegård", "godsbiler": "godsbil", "godset": "gods", "godsforsendelse": "godsforsend", "godsgrunnlag": "godsgrunnlag", "godsgrunnlaget": "godsgrunnlag", "godshavna": "godshavn", "godshavnaktivitet": "godshavnaktivit", "godshavnen": "godshavn", "godshavner": "godshavn", "godshåndtering": "godshåndtering", "godshåndteringen": "godshåndtering", "godshåndteringsutstyr": "godshåndteringsutstyr", "godskapasitet": "godskapasit", "godskrevet": "godskrev", "godskrivast": "godskriv", "godskriver": "godskriv", "godskrives": "godskriv", "godsmarkedet": "godsmarked", "godsmengde": "godsmengd", "godsmengden": "godsmengd", "godsmengdene": "godsmengd", "godsmengdenes": "godsmengd", "godsmengder": "godsmengd", "godsomlasting": "godsomlasting", "godsomlastingen": "godsomlasting", "godsomlastingstallene": "godsomlastingstall", "godsomslag": "godsomslag", "godsomslaget": "godsomslag", "godsprognosene": "godsprognos", "godsprognoser": "godsprognos", "godsspor": "godsspor", "godssporene": "godsspor", "godsstrømmen": "godsstrømm", "godsstrømmene": "godsstrømm", "godsstrømmer": "godsstrømm", "godsterminal": "godsterminal", "godsterminalen": "godsterminal", "godstog": "godstog", "godstomlasting": "godstomlasting", "godstrafikk": "godstrafikk", "godstrafikken": "godstrafikk", "godstransport": "godstransport", "godstransporten": "godstransport", "godstransportene": "godstransport", "godstransporter": "godstransport", "godstransportknutepunkt": "godstransportknutepunkt", "godstransportkorridorer": "godstransportkorridor", "godstransportmønstrene": "godstransportmønstr", "godstransportstrømmene": "godstransportstrømm", "godstransporttjenester": "godstransporttjenest", "godstrømmene": "godstrømm", "godstrømmer": "godstrømm", "godstyper": "godstyp", "godsvirksomhet": "godsvirksom", "godsvolum": "godsvolum", "godsvolumene": "godsvolum", "godsvolumer": "godsvolum", "godt": "godt", "godta": "godt", "godtakast": "godtak", "godtatt": "godtatt", "godtek": "godtek", "godteke": "godtek", "godtgjer": "godtgj", "godtgjere": "godtgjer", "godtgjersla": "godtgjersl", "godtgjersle": "godtgjersl", "godtgjort": "godtgjort", "godtgjørelse": "godtgjør", "godtgjørelsene": "godtgjør", "godtgjøres": "godtgjør", "godtgjøring": "godtgjøring", "godtgjøringer": "godtgjøring", "godtok": "godtok", "godtruerverv": "godtruerverv", "golv": "golv", "golvbelegg": "golvbelegg", "golvet": "golv", "golvteppe": "golvtepp", "gom": "gom", "gomlet": "goml", "gommen": "gomm", "gommene": "gomm", "gong": "gong", "gongen": "gong", "gonger": "gong", "gotter": "gott", "gotterier": "gotteri", "gottet": "gott", "grad": "grad", "graden": "grad", "gradert": "grader", "gradvis": "gradvis", "gradvise": "gradvis", "granbar": "granb", "grane": "gran", "granlegg": "granlegg", "grann": "grann", "grannar": "grann", "granneeigedom": "granneeigedom", "granskar": "gransk", "granskarane": "granskar", "granskarar": "granskar", "gransking": "gransking", "granskinga": "gransking", "granskingsrapporten": "granskingsrapport", "grantoppene": "grantopp", "grantrær": "grantrær", "gratis": "gratis", "grav": "grav", "gravalvorlige": "gravalvor", "grave": "grav", "graven": "grav", "graver": "grav", "gravet": "grav", "gravid": "gravid", "gravøl": "gravøl", "gre": "gre", "green": "green", "grei": "grei", "greiast": "greiast", "greiaste": "greiast", "greid": "greid", "greidd": "greidd", "greidde": "greidd", "greide": "greid", "greie": "greie", "greier": "greier", "greip": "greip", "greitt": "greitt", "gren": "gren", "grendehus": "grendehus", "grenene": "gren", "grener": "gren", "grenland": "grenland", "grenlandsfarvannet": "grenlandsfarvann", "grenlandsområdet": "grenlandsområd", "grensa": "grens", "grense": "grens", "grensedraging": "grensedraging", "grensedraginga": "grensedraging", "grensekryssende": "grensekryss", "grenseland": "grenseland", "grensen": "grens", "grensene": "grens", "grenseoverskridende": "grenseoverskrid", "grensepassering": "grensepassering", "grenser": "grens", "grenseskogen": "grenseskog", "grenseverdier": "grenseverdi", "grepstad": "grepstad", "grer": "grer", "gress": "gress", "gressbakke": "gressbakk", "gresser": "gress", "gresset": "gress", "gressgangene": "gressgang", "gresstorven": "gresstorv", "gretten": "grett", "grettent": "grettent", "gribber": "gribb", "grid": "grid", "gridarvol": "gridarvol", "grimase": "grimas", "grimne": "grimn", "grimsbo": "grimsbo", "grind": "grind", "grinden": "grind", "griner": "grin", "grini": "grini", "grip": "grip", "gripe": "grip", "griper": "grip", "gris": "gris", "grisen": "gris", "grisk": "grisk", "griske": "grisk", "griskheten": "grisk", "grjotunagard": "grjotunagard", "gro": "gro", "groa": "groa", "gror": "gror", "groruddalen": "groruddal", "groruddalens": "groruddal", "grossist": "grossist", "grossister": "grossist", "grossisters": "grossist", "grossistlagre": "grossistlagr", "grossistledd": "grossistledd", "grossistleddet": "grossistledd", "grossistvirksomheter": "grossistvirksom", "grotte": "grott", "grotter": "grott", "grov": "grov", "grove": "grov", "gru": "gru", "grubler": "grubl", "gruen": "gruen", "gruer": "gruer", "grundig": "grund", "grundigare": "grundigar", "grunn": "grunn", "grunna": "grunn", "grunnane": "grunn", "grunnar": "grunn", "grunnareal": "grunnareal", "grunnareala": "grunnareal", "grunnast": "grunn", "grunnbeløp": "grunnbeløp", "grunnbeløpet": "grunnbeløp", "grunnbok": "grunnbok", "grunnboka": "grunnbok", "grunnbokheimel": "grunnbokheimel", "grunndokument": "grunndokument", "grunndraga": "grunndrag", "grunne": "grunn", "grunneier": "grunnei", "grunnen": "grunn", "grunnene": "grunn", "grunner": "grunn", "grunnet": "grunn", "grunnfond": "grunnfond", "grunnfondbevis": "grunnfondbevis", "grunnfondet": "grunnfond", "grunnfondsbevis": "grunnfondsbevis", "grunnfondsbevisa": "grunnfondsbevis", "grunnforholdene": "grunnforhold", "grunngje": "grunngj", "grunngjevast": "grunngjev", "grunngjeve": "grunngjev", "grunngjeving": "grunngjeving", "grunngjevinga": "grunngjeving", "grunngjevne": "grunngjevn", "grunnivået": "grunnivå", "grunnkravene": "grunnkrav", "grunnlag": "grunnlag", "grunnlaget": "grunnlag", "grunnlagselementene": "grunnlagselement", "grunnlagselementer": "grunnlagselement", "grunnlagsmaterialet": "grunnlagsmaterial", "grunnlagsrente": "grunnlagsrent", "grunnlagsrenten": "grunnlagsrent", "grunnlause": "grunnlaus", "grunnleggende": "grunnlegg", "grunnleggjande": "grunnleggj", "grunnleggjarane": "grunnleggjar", "grunnlinjen": "grunnlinj", "grunnlova": "grunn", "grunnlønn": "grunnlønn", "grunnmateriale": "grunnmaterial", "grunnorganisasjonane": "grunnorganisasjon", "grunnpensjon": "grunnpensjon", "grunnpensjonen": "grunnpensjon", "grunnprinsipp": "grunnprinsipp", "grunnsikring": "grunnsikring", "grunnsikringens": "grunnsikring", "grunnstykke": "grunnstykk", "grunnstøting": "grunnstøting", "grunnstøtinger": "grunnstøting", "grunnstøtninger": "grunnstøtning", "grunnsummen": "grunnsumm", "grunnvilkår": "grunnvilkår", "gruntvannsområder": "gruntvannsområd", "gruppa": "grupp", "gruppe": "grupp", "gruppeinndeling": "gruppeinndeling", "gruppeliv": "gruppeliv", "gruppelivsforsikring": "gruppelivsforsikring", "gruppen": "grupp", "gruppene": "grupp", "gruppens": "grupp", "grupper": "grupp", "grupperinger": "gruppering", "gruppert": "grupper", "grus": "grus", "grusomme": "grusomm", "grusomt": "grusomt", "grynt": "grynt", "grynter": "grynt", "grytidlig": "grytid", "grå": "grå", "gråbein": "gråbein", "gråbeinskikkelse": "gråbeinskikk", "grådig": "gråd", "grådige": "gråd", "grådighet": "gråd", "grålysningen": "grålysning", "gråspurv": "gråspurv", "gråt": "gråt", "gråte": "gråt", "gråtekone": "gråtekon", "gråtende": "gråt", "gråter": "gråt", "gråtes": "gråt", "grått": "grått", "grøft": "grøft", "grønlia": "grønli", "grønn": "grønn", "grønnboken": "grønnbok", "grønne": "grønn", "grønnsaker": "grønnsak", "grønt": "grønt", "grøntområde": "grøntområd", "grøsser": "grøss", "grøt": "grøt", "gud": "gud", "gudeborgen": "gudeborg", "gudehøvdingen": "gudehøvding", "gudekongen": "gudekong", "gudekongens": "gudekong", "gudekreftene": "gudekreft", "guden": "gud", "gudene": "gud", "gudenes": "gud", "gudepakket": "gudepakk", "guder": "gud", "gudeslekten": "gudeslekt", "gudeslekter": "gudeslekt", "gudespytt": "gudespytt", "gudinne": "gudinn", "gudinnen": "gudinn", "gudinnene": "gudinn", "gudinner": "gudinn", "gufse": "gufs", "gufser": "gufs", "gulating": "gulating", "gule": "gul", "gull": "gull", "gullbrikkespill": "gullbrikkespill", "gullbrua": "gullbru", "gullbust": "gullbust", "gullbånd": "gullbånd", "gullet": "gull", "gullfakse": "gullfaks", "gullhjelmen": "gullhjelm", "gullhorn": "gullhorn", "gullhåret": "gullhår", "gullklump": "gullklump", "gullregn": "gullregn", "gullringen": "gullring", "gulltennene": "gulltenn", "gulltopp": "gulltopp", "gullveig": "gullv", "gulne": "guln", "gulv": "gulv", "gulvet": "gulv", "gungne": "gungn", "gunnlod": "gunnlod", "gunst": "gunst", "gunstig": "gunst", "gunstige": "gunst", "gunstigere": "gunstiger", "gusten": "gust", "gustne": "gustn", "gutt": "gutt", "guttebarnet": "guttebarn", "gutten": "gutt", "guttene": "gutt", "gutter": "gutt", "gyger": "gyg", "gygra": "gygr", "gyldig": "gyld", "gyldige": "gyld", "gyldne": "gyldn", "gyllenbuste": "gyllenbust", "gylve": "gylv", "gymes": "gym", "gymesdatter": "gymesdatt", "gyver": "gyv", "gå": "gå", "går": "går", "gård": "gård", "gården": "gård", "gårder": "gård", "gårdsfolket": "gårdsfolk", "gårdshundene": "gårdshund", "gåsøya": "gåsøy", "gåtefulle": "gåtefull", "gåtene": "gåt", "gåter": "gåt", "gått": "gått", "gåve": "gåv", "gåver": "gåv", "gøteborg": "gøteborg", "h": "h", "ha": "ha", "haavind": "haavind", "habilitet": "habilit", "habilitetsreglane": "habilitetsregl", "habitat": "habitat", "hadde": "hadd", "hafslund": "hafslund", "haglskur": "haglskur", "haken": "hak", "hakk": "hakk", "hakon": "hakon", "haldast": "hald", "halde": "hald", "halden": "hald", "haldenleia": "haldenlei", "haldne": "haldn", "haldningar": "haldning", "hale": "hal", "halen": "hal", "haler": "hal", "hall": "hall", "hallen": "hall", "halm": "halm", "hals": "hal", "halse": "hals", "halsen": "hals", "halset": "hals", "halshugget": "halshugg", "halsringen": "halsring", "halt": "halt", "haltende": "halt", "halv": "halv", "halvdel": "halvdel", "halvdelen": "halvdel", "halve": "halv", "halvfabrikata": "halvfabrikat", "halvgjort": "halvgjort", "halvparten": "halvpart", "halvsøvne": "halvsøvn", "halvt": "halv", "halvtroll": "halvtroll", "halvveis": "halvveis", "halvår": "halvår", "halvårsvis": "halvårsvis", "ham": "ham", "hamburg": "hamburg", "hammen": "hamm", "hammer": "hamm", "hammeren": "hammer", "hammerfest": "hammerfest", "hammerskaftet": "hammerskaft", "hammerslag": "hammerslag", "hamrer": "hamr", "hamsdokka": "hamsdokk", "han": "han", "hand": "hand", "handel": "handel", "handeland": "handeland", "handelen": "handel", "handels": "handel", "handelsagenter": "handelsagent", "handelsbedrifter": "handelsbedrift", "handelsdepartementet": "handelsdepartement", "handelshindringer": "handelshindring", "handelsorganisasjon": "handelsorganisasjon", "handelspartnere": "handelspartner", "handheva": "handhev", "handheve": "handhev", "handhevinga": "handheving", "handkasser": "handkass", "handla": "handl", "handlar": "handl", "handle": "handl", "handleevne": "handleevn", "handlefridom": "handlefridom", "handlefrihet": "handlefri", "handleplikt": "handleplikt", "handles": "handl", "handlet": "handl", "handling": "handling", "handlinga": "handling", "handlinger": "handling", "handlingsfrist": "handlingsfrist", "handlingsprogram": "handlingsprogram", "handlingsprogrammer": "handlingsprogramm", "handlingsrom": "handlingsrom", "handlingsrommet": "handlingsromm", "handpantsetjing": "handpantsetjing", "handtering": "handtering", "handterleg": "handter", "handverkar": "handverk", "handverkarar": "handverkar", "handverkartenestelova": "handverkartenest", "handverkartenester": "handverkartenest", "hane": "han", "hanegal": "hanegal", "hanen": "han", "haner": "han", "hang": "hang", "hanken": "hank", "hans": "han", "hansker": "hansk", "hanstholm": "hanstholm", "har": "har", "harald": "harald", "hard": "hard", "hardare": "hardar", "harde": "hard", "hardere": "harder", "hardfør": "hardfør", "hardt": "hard", "harer": "har", "harker": "hark", "harlem": "harlem", "harme": "harm", "harmonisere": "harmoniser", "harmonisering": "harmonisering", "harsk": "harsk", "harstad": "harstad", "hasteordrer": "hasteordr", "haster": "hast", "hastighet": "hast", "hastverk": "hastverk", "hat": "hat", "hate": "hat", "hater": "hat", "hatet": "hat", "hatt": "hatt", "hattebrem": "hattebrem", "hattebremmen": "hattebremm", "hatten": "hatt", "haug": "haug", "haugen": "haug", "hauger": "haug", "haugesund": "haugesund", "hauk": "hauk", "hauker": "hauk", "hausten": "haust", "hav": "hav", "havarer": "havar", "havarere": "havarer", "havet": "hav", "havfolk": "havfolk", "havfruer": "havfru", "havgapet": "havgap", "havheksen": "havheks", "havkongen": "havkong", "havkongens": "havkong", "havmenn": "havmenn", "havmennene": "havmenn", "havn": "havn", "havna": "havn", "havnas": "havn", "havne": "havn", "havneaktivitetene": "havneaktivitet", "havneaktiviteter": "havneaktivitet", "havneanlegg": "havneanlegg", "havneanløp": "havneanløp", "havneareal": "havneareal", "havnearealene": "havneareal", "havnearealer": "havneareal", "havnearealet": "havneareal", "havneavgiftene": "havneavgift", "havneavgifter": "havneavgift", "havneavgiftssystemet": "havneavgiftssystem", "havneavsnitt": "havneavsnitt", "havneavsnittene": "havneavsnitt", "havneavsnittet": "havneavsnitt", "havnebassenget": "havnebasseng", "havnebehov": "havnebehov", "havnebehovet": "havnebehov", "havnebruker": "havnebruk", "havneby": "havneby", "havnebyen": "havneby", "havnebyene": "havneby", "havnebyer": "havneby", "havnebyscenariet": "havnebyscenari", "havnedistrikt": "havnedistrikt", "havnedistriktene": "havnedistrikt", "havnedistrikter": "havnedistrikt", "havnedistriktet": "havnedistrikt", "havnedistriktets": "havnedistrikt", "havnedrift": "havnedrift", "havnedriften": "havnedrift", "havneeffektivitet": "havneeffektivit", "havneeier": "havneei", "havneeiere": "havneeier", "havneenheter": "havneen", "havneforbund": "havneforbund", "havneforbundets": "havneforbund", "havneformål": "havneformål", "havneforvaltningen": "havneforvaltning", "havnefunksjonene": "havnefunksjon", "havnefunksjoner": "havnefunksjon", "havnefylkene": "havnefylk", "havnefylker": "havnefylk", "havnehagen": "havnehag", "havneinfrastrukturen": "havneinfrastruktur", "havneinnretningene": "havneinnretning", "havneinnretninger": "havneinnretning", "havneinteresser": "havneinteress", "havnekapasitet": "havnekapasit", "havnekassa": "havnekass", "havnekasse": "havnekass", "havnekassemidler": "havnekassemidl", "havnekassen": "havnekass", "havnekassene": "havnekass", "havnekassens": "havnekass", "havnelokalisering": "havnelokalisering", "havneloven": "havn", "havnelovens": "havn", "havneløsning": "havneløsning", "havneløsningene": "havneløsning", "havneløsninger": "havneløsning", "havnemessig": "havnemess", "havnemyndighetene": "havnemynd", "havnemyndigheter": "havnemynd", "havnemønster": "havnemønst", "havnen": "havn", "havnene": "havn", "havnenes": "havn", "havnens": "havn", "havneområdene": "havneområd", "havneområder": "havneområd", "havneområdet": "havneområd", "havneoperatørene": "havneoperatør", "havneoperatørenes": "havneoperatør", "havneoperatører": "havneoperatør", "havneoppgaver": "havneoppgav", "havneplan": "havneplan", "havneplanlegging": "havneplanlegging", "havnepolitikk": "havnepolitikk", "havnepolitikken": "havnepolitikk", "havner": "havn", "havnerelatert": "havnerelater", "havnerettet": "havnerett", "havners": "havn", "havneråd": "havneråd", "havnerådet": "havneråd", "havnerådets": "havneråd", "havnesaker": "havnesak", "havnesamarbeid": "havnesamarbeid", "havnesamarbeide": "havnesamarbeid", "havnesamarbeider": "havnesamarbeid", "havnesamarbeidet": "havnesamarbeid", "havnesammenheng": "havnesammenheng", "havnescenariene": "havnescenari", "havnesektoren": "havnesektor", "havneselskaper": "havneselskap", "havnesiden": "havnesid", "havnespørsmål": "havnespørsmål", "havnestatistikk": "havnestatistikk", "havnestruktur": "havnestruktur", "havnestrukturen": "havnestruktur", "havnestrukturer": "havnestruktur", "havnestyre": "havnestyr", "havnestyrer": "havnestyr", "havnestyret": "havnestyr", "havnestyrets": "havnestyr", "havnesystem": "havnesystem", "havneterminal": "havneterminal", "havneterminalen": "havneterminal", "havneterminalene": "havneterminal", "havnetilbud": "havnetilbud", "havnetilbudet": "havnetilbud", "havnetiltakene": "havnetiltak", "havnetjenesten": "havnetjenest", "havnetjenestene": "havnetjenest", "havnetjenester": "havnetjenest", "havnetrafikk": "havnetrafikk", "havnetrafikken": "havnetrafikk", "havnetyper": "havnetyp", "havneutbygging": "havneutbygging", "havneutbyggingen": "havneutbygging", "havneutflytting": "havneutflytting", "havneutvalget": "havneutvalg", "havneutvalgets": "havneutvalg", "havneutvikling": "havneutvikling", "havneutviklingen": "havneutvikling", "havnevalg": "havnevalg", "havnevesen": "havneves", "havnevesenet": "havnevesen", "havnevesenets": "havnevesen", "havnevesens": "havneves", "havnevirksomhet": "havnevirksom", "havnevirksomheten": "havnevirksom", "havnevirksomhetene": "havnevirksom", "havneøkonomi": "havneøkonomi", "havns": "havn", "havre": "havr", "havs": "hav", "heder": "hed", "hedmark": "hedmark", "hefta": "heft", "heftar": "heft", "heftast": "heft", "hefte": "heft", "hefteform": "hefteform", "hefter": "heft", "heftet": "heft", "hei": "hei", "heia": "heia", "heider": "heid", "heidrun": "heidrun", "heiene": "heien", "heildagsmøte": "heildagsmøt", "heile": "heil", "heilskapleg": "heilskap", "heilt": "heilt", "heilårsbustader": "heilårsbustad", "heim": "heim", "heimdall": "heimdall", "heimdalls": "heimdall", "heime": "heim", "heimekontor": "heimekontor", "heimel": "heimel", "heimelen": "heimel", "heimelsdokument": "heimelsdokument", "heimelsdokumenta": "heimelsdokument", "heimelshavar": "heimelshav", "heimelsoverføring": "heimelsoverføring", "heimelsovergang": "heimelsovergang", "heimen": "heim", "heimesider": "heimesid", "heimlar": "heiml", "heise": "heis", "heisen": "heis", "heiser": "heis", "heises": "heis", "heiter": "heit", "heks": "heks", "heksen": "heks", "hekser": "heks", "hel": "hel", "helagt": "helagt", "helblinde": "helblind", "held": "held", "heldagsmøter": "heldagsmøt", "heldig": "held", "heldige": "held", "heldigvis": "heldigvis", "hele": "hel", "helgedag": "helgedag", "helgedagar": "helgedag", "helhet": "hel", "helhetlig": "helhet", "helhetlige": "helhet", "helhetsvurdering": "helhetsvurdering", "helhunden": "helhund", "hell": "hell", "heller": "hell", "hellet": "hell", "hellig": "hel", "hellige": "hel", "hels": "hel", "helse": "hels", "helsefarlege": "helsefar", "helsesituasjon": "helsesituasjon", "helst": "helst", "helt": "helt", "heltedåder": "heltedåd", "heltegjerninger": "heltegjerning", "heltene": "helt", "helter": "helt", "heltidsansatte": "heltidsansatt", "heltidsstilling": "heltidsstilling", "helveien": "helvei", "hemmelege": "hemm", "hemmeleghald": "hemmeleghald", "hemmelig": "hemm", "hemmelige": "hemm", "hemmelighet": "hemm", "hemmeligheten": "hemm", "hemmeligheter": "hemm", "hemmelighetsfulle": "hemmelighetsfull", "hen": "hen", "hende": "hend", "hendene": "hend", "hender": "hend", "hending": "hending", "hendt": "hend", "hendte": "hend", "henføres": "henfør", "henført": "henført", "heng": "heng", "henge": "heng", "hengekjeft": "hengekjeft", "hengende": "heng", "henger": "heng", "henges": "heng", "henhold": "henhold", "henholdsvis": "henholdsvis", "henne": "henn", "hennes": "henn", "henning": "henning", "henseende": "hense", "hensett": "hensett", "hensettingsspor": "hensettingsspor", "hensikt": "hensikt", "hensikten": "hensikt", "hensiktsmessig": "hensiktsmess", "hensiktsmessige": "hensiktsmess", "hensiktsmessighetsnorm": "hensiktsmessighetsnorm", "hensiktsmessighetssider": "hensiktsmessighetssid", "henstille": "henstill", "henstilling": "henstilling", "hensyn": "hensyn", "hensynene": "hensyn", "hensynet": "hensyn", "hensynsløst": "hensynsløst", "hensynta": "hensynt", "hensyntas": "hensynt", "henta": "hent", "hentar": "hent", "hentast": "hent", "hente": "hent", "henter": "hent", "hentes": "hent", "hentet": "hent", "henting": "henting", "henvendelser": "henvend", "henviser": "henvis", "henvises": "henvis", "henvisning": "henvisning", "henvisningen": "henvisning", "henvist": "henvist", "her": "her", "heradsrett": "heradsrett", "herav": "herav", "heretter": "herett", "herfra": "herfr", "hergarten": "hergart", "herjan": "herjan", "herje": "herj", "herjer": "herj", "herjet": "herj", "herligste": "herligst", "hermed": "hermed", "hermod": "hermod", "herre": "herr", "herrer": "herr", "herres": "herr", "hersker": "hersk", "herunder": "herund", "herøya": "herøy", "hese": "hes", "heslige": "hes", "hest": "hest", "hestehover": "hestehov", "hestekar": "hestek", "hesten": "hest", "hestene": "hest", "hester": "hest", "hesteryggen": "hesterygg", "het": "het", "hete": "het", "heter": "het", "heva": "hev", "hevast": "hev", "hevde": "hevd", "hevder": "hevd", "hevdes": "hevd", "heve": "hev", "heving": "heving", "hevingsregelen": "hevingsregel", "hevingsrett": "hevingsrett", "hevn": "hevn", "hevne": "hevn", "hevnens": "hevn", "hevner": "hevn", "hevnes": "hevn", "hevnet": "hevn", "hht": "hht", "hhv": "hhv", "hikker": "hikk", "hikster": "hikst", "hilde": "hild", "hils": "hil", "hilse": "hils", "hilser": "hils", "hilset": "hils", "himler": "himl", "himling": "himling", "himlingsplater": "himlingsplat", "himmel": "himmel", "himmelberget": "himmelberg", "himmelen": "himmel", "himmelhvelvingen": "himmelhvelving", "himmelretninger": "himmelretning", "himmelske": "himmelsk", "himmelvogn": "himmelvogn", "hindarfjell": "hindarfjell", "hinder": "hind", "hindra": "hindr", "hindrar": "hindr", "hindre": "hindr", "hindrer": "hindr", "hindring": "hindring", "hindringa": "hindring", "hindringer": "hindring", "hingst": "hingst", "hingsten": "hingst", "hink": "hink", "hinkende": "hink", "hinket": "hink", "hinne": "hinn", "hirtshals": "hirtshal", "hisse": "hiss", "hissig": "hiss", "historien": "histori", "historier": "histori", "historikk": "historikk", "historisk": "historisk", "historiske": "historisk", "hit": "hit", "hittil": "hittil", "hiver": "hiv", "hjalp": "hjalp", "hjel": "hjel", "hjelm": "hjelm", "hjelp": "hjelp", "hjelpe": "hjelp", "hjelpeløs": "hjelpeløs", "hjelpeløse": "hjelpeløs", "hjelpemidler": "hjelpemidl", "hjelper": "hjelp", "hjelpesmann": "hjelpesmann", "hjem": "hjem", "hjemkomsten": "hjemkomst", "hjemland": "hjemland", "hjemlandet": "hjemland", "hjemlands": "hjemland", "hjemlandskontroll": "hjemlandskontroll", "hjemler": "hjeml", "hjemlet": "hjeml", "hjemløs": "hjemløs", "hjemme": "hjemm", "hjemmehørende": "hjemmehør", "hjemmel": "hjemmel", "hjemmelen": "hjemmel", "hjemmelsbruken": "hjemmelsbruk", "hjemmet": "hjemm", "hjemover": "hjemov", "hjemsøkes": "hjemsøk", "hjemvei": "hjemvei", "hjernen": "hjern", "hjerte": "hjert", "hjerteblod": "hjerteblod", "hjertelig": "hjert", "hjertens": "hjert", "hjertet": "hjert", "hjort": "hjort", "hjorter": "hjort", "hjortland": "hjortland", "hjortnes": "hjortn", "hjul": "hjul", "hjulene": "hjul", "hjulet": "hjul", "hjå": "hjå", "hjørne": "hjørn", "hjørner": "hjørn", "hjørnesteinsbedriften": "hjørnesteinsbedrift", "hlin": "hlin", "hm": "hm", "ho": "ho", "hobbyrom": "hobbyrom", "hod": "hod", "hoddmimes": "hoddmim", "hode": "hod", "hodeduk": "hodeduk", "hodene": "hod", "hodepine": "hodepin", "hoder": "hod", "hodeskalle": "hodeskall", "hodeskallen": "hodeskall", "hodet": "hod", "hods": "hod", "hoffet": "hoff", "hoftene": "hoft", "hofter": "hoft", "hoho": "hoho", "hoi": "hoi", "hold": "hold", "holde": "hold", "holdent": "holdent", "holdepunkter": "holdepunkt", "holder": "hold", "holdes": "hold", "holdning": "holdning", "holdninger": "holdning", "holdt": "hold", "holme": "holm", "holmen": "holm", "holmer": "holm", "holmestrand": "holmestrand", "holmgang": "holmgang", "holt": "holt", "homofil": "homofil", "homogene": "homog", "honning": "honning", "honningdugg": "honningdugg", "hop": "hop", "hopar": "hop", "hoppa": "hopp", "hoppe": "hopp", "hoppende": "hopp", "hopper": "hopp", "hoppet": "hopp", "hordaland": "hordaland", "horisont": "horisont", "horisontalt": "horisontalt", "horisonten": "horisont", "horisontår": "horisontår", "horn": "horn", "hornene": "horn", "hornet": "horn", "horten": "hort", "hos": "hos", "hospits": "hospit", "housing": "housing", "hovedadresse": "hovedadress", "hovedaktiviteten": "hovedaktivitet", "hovedaktør": "hovedaktør", "hovedaktørene": "hovedaktør", "hovedalternativ": "hovedalternativ", "hovedalternativer": "hovedalternativ", "hovedalternativet": "hovedalternativ", "hovedandelen": "hovedandel", "hovedansvaret": "hovedansvar", "hovedargumentet": "hovedargument", "hovedavsnitt": "hovedavsnitt", "hoveddelen": "hoveddel", "hoveddelene": "hoveddel", "hoveddeler": "hoveddel", "hoveddepotet": "hoveddepot", "hovedelementer": "hovedelement", "hovedforbindelse": "hovedforbind", "hovedforbindelsen": "hovedforbind", "hovedformål": "hovedformål", "hovedforutsetning": "hovedforutsetning", "hovedgodsstrømmene": "hovedgodsstrømm", "hovedgodsterminal": "hovedgodsterminal", "hovedgruppene": "hovedgrupp", "hovedgrupper": "hovedgrupp", "hovedhavn": "hovedhavn", "hovedhavnen": "hovedhavn", "hovedhavneområder": "hovedhavneområd", "hovedhavner": "hovedhavn", "hovedhensyn": "hovedhensyn", "hovedhensynene": "hovedhensyn", "hovedinndeling": "hovedinndeling", "hovedinndelinger": "hovedinndeling", "hovedinnfartsvegene": "hovedinnfartsveg", "hovedinntekts": "hovedinntekt", "hovedkonklusjonene": "hovedkonklusjon", "hovedkonklusjoner": "hovedkonklusjon", "hovedkontoradresse": "hovedkontoradress", "hovedkontoreffekt": "hovedkontoreffekt", "hovedkorridorene": "hovedkorridor", "hovedkravet": "hovedkrav", "hovedkriterium": "hovedkriterium", "hovedled": "hovedled", "hovedlinjene": "hovedlinj", "hovedmoment": "hovedmoment", "hovedmål": "hovedmål", "hovedmålet": "hovedmål", "hovedmønsteret": "hovedmønster", "hovedoppgave": "hovedoppgav", "hovedoppgavene": "hovedoppgav", "hovedoppgaver": "hovedoppgav", "hovedordning": "hovedordning", "hovedorganisasjon": "hovedorganisasjon", "hovedperspektiver": "hovedperspektiv", "hovedplan": "hovedplan", "hovedpoeng": "hovedpoeng", "hovedpremisser": "hovedpremiss", "hovedprinsipp": "hovedprinsipp", "hovedprinsipper": "hovedprinsipp", "hovedprinsippet": "hovedprinsipp", "hovedproblemene": "hovedproblem", "hovedproblemstilling": "hovedproblemstilling", "hovedproblemstillingen": "hovedproblemstilling", "hovedproblemstillinger": "hovedproblemstilling", "hovedprognose": "hovedprognos", "hovedpunkter": "hovedpunkt", "hovedrapport": "hovedrapport", "hovedrapporten": "hovedrapport", "hovedregel": "hovedregel", "hovedregelen": "hovedregel", "hovedretningslinjer": "hovedretningslinj", "hovedrolle": "hovedroll", "hovedsak": "hovedsak", "hovedsakelig": "hovedsak", "hovedsamarbeidspartner": "hovedsamarbeidspartn", "hovedsammenslutningene": "hovedsammenslutning", "hovedsete": "hovedset", "hovedside": "hovedsid", "hovedsiden": "hovedsid", "hovedskipsleia": "hovedskipslei", "hovedspørsmål": "hovedspørsmål", "hovedspørsmålene": "hovedspørsmål", "hovedspørsmålet": "hovedspørsmål", "hovedstaden": "hovedstad", "hovedstadsområdet": "hovedstadsområd", "hovedstadsutvalget": "hovedstadsutvalg", "hovedstrømmene": "hovedstrømm", "hovedsynspunkt": "hovedsynspunkt", "hovedtall": "hovedtall", "hovedtanken": "hovedtank", "hovedtema": "hovedtem", "hovedtemaene": "hovedtema", "hovedtemaer": "hovedtema", "hovedterminal": "hovedterminal", "hovedterminalen": "hovedterminal", "hovedtransportåren": "hovedtransportår", "hovedtrekk": "hovedtrekk", "hovedtrekkene": "hovedtrekk", "hovedtrekket": "hovedtrekk", "hovedtrender": "hovedtrend", "hovedtyngden": "hovedtyngd", "hovedtypene": "hovedtyp", "hovedtyper": "hovedtyp", "hovedutfordringene": "hovedutfordring", "hovedutfyllingene": "hovedutfylling", "hovedvalg": "hovedvalg", "hovedvaregrupper": "hovedvaregrupp", "hovedvareslag": "hovedvareslag", "hovedvegnett": "hovedvegnett", "hovedvegnettet": "hovedvegnett", "hovedvegsystem": "hovedvegsystem", "hovedvegsystemet": "hovedvegsystem", "hovedvekt": "hovedvekt", "hovedvirksomheten": "hovedvirksom", "hovedvurderinger": "hovedvurdering", "hovedytelse": "hovedyt", "hovi": "hovi", "hovudaktivitetane": "hovudaktivitet", "hovudalternativ": "hovudalternativ", "hovudansvaret": "hovudansvar", "hovuddrag": "hovuddrag", "hovuddraga": "hovuddrag", "hovudformer": "hovudform", "hovudføremål": "hovudføremål", "hovudføremålet": "hovudføremål", "hovudinnhaldet": "hovudinnhald", "hovudkontor": "hovudkontor", "hovudleigar": "hovudl", "hovudliner": "hovudlin", "hovudmål": "hovudmål", "hovudorganisasjonen": "hovudorganisasjon", "hovudpunkt": "hovudpunkt", "hovudregel": "hovudregel", "hovudregelen": "hovudregel", "hovudreglane": "hovudregl", "hovudreglar": "hovudregl", "hovudsak": "hovudsak", "hovudsakleg": "hovudsak", "hovudsaklege": "hovudsak", "hovudsamanslutninga": "hovudsamanslutning", "hovudstol": "hovudstol", "hovudsynspunktet": "hovudsynspunkt", "hovudtypar": "hovudtyp", "hovudvekta": "hovudvekt", "hovvarpne": "hovvarpn", "hsb": "hsb", "hubs": "hub", "huden": "hud", "hudfarge": "hudfarg", "hudfarve": "hudfarv", "huff": "huff", "huge": "hug", "hugen": "hug", "hugge": "hugg", "hugger": "hugg", "hugget": "hugg", "huggormer": "huggorm", "hugin": "hugin", "huk": "huk", "huke": "huk", "huldrefolket": "huldrefolk", "huldrer": "huldr", "hule": "hul", "huler": "hul", "hulker": "hulk", "hull": "hull", "hullet": "hull", "humanitære": "humanitær", "humør": "humør", "hun": "hun", "hunaland": "hunaland", "hund": "hund", "hundehus": "hundehus", "hunden": "hund", "hundene": "hund", "hunder": "hund", "hundre": "hundr", "hundreår": "hundreår", "hundreåret": "hundreår", "hunger": "hung", "hurtig": "hurt", "hurtige": "hurt", "hurtiggående": "hurtiggå", "hurtigruta": "hurtigrut", "hurum": "hurum", "hus": "hus", "husa": "hus", "husbank": "husbank", "husbanken": "husbank", "husbankterminar": "husbanktermin", "husbråk": "husbråk", "huseigarar": "huseigar", "husene": "hus", "huset": "hus", "husflid": "husflid", "husgeråd": "husgeråd", "hushalda": "hushald", "husholdningene": "husholdning", "husholdningenes": "husholdning", "husholdninger": "husholdning", "husk": "husk", "huske": "husk", "husker": "husk", "huskes": "husk", "husleieloven": "huslei", "husleiereguleringsloven": "husleieregulering", "husleiga": "husl", "husleige": "husl", "husleigeavtalane": "husleigeavtal", "husleigeavtale": "husleigeavtal", "husleigebetaling": "husleigebetaling", "husleigedomstolar": "husleigedomstol", "husleigeforhold": "husleigeforhold", "husleigeinnkrevjing": "husleigeinnkrevjing", "husleigelova": "husleig", "husleigelovgjevinga": "husleigelovgjeving", "husleigeretten": "husleigerett", "husleigerettsleg": "husleigeretts", "husleigetap": "husleigetap", "husleigetvistar": "husleigetvist", "husleigetvistutval": "husleigetvistutval", "husleigetvistutvala": "husleigetvistutval", "husordensreglar": "husordensregl", "husrom": "husrom", "husstand": "husstand", "husstanden": "husstand", "husstandsfellesskap": "husstandsfellesskap", "husstandsfellesskapslova": "husstandsfellesskap", "husstandsmedlem": "husstandsmedlem", "husstandsmedlemmen": "husstandsmedlemm", "husstandsmedlemmer": "husstandsmedlemm", "hussøkjande": "hussøkj", "hussøkjarane": "hussøkjar", "hussøkjarar": "hussøkjar", "hussøkjarinteressene": "hussøkjarinteress", "hustelefonsentral": "hustelefonsentral", "hustru": "hustru", "husvære": "husvær", "hutrende": "hutr", "hutrer": "hutr", "hutte": "hutt", "hva": "hva", "hvalene": "hval", "hvaler": "hval", "hvalp": "hvalp", "hvasse": "hvass", "hvasst": "hvasst", "hvelving": "hvelving", "hvem": "hvem", "hver": "hver", "hverandre": "hverandr", "hverdag": "hverdag", "hvergelme": "hvergelm", "hverken": "hverk", "hvert": "hvert", "hvese": "hves", "hveser": "hves", "hvil": "hvil", "hvile": "hvil", "hviler": "hvil", "hvilke": "hvilk", "hvilken": "hvilk", "hvilket": "hvilk", "hvirvlende": "hvirvl", "hvirvler": "hvirvl", "hvis": "hvis", "hviske": "hvisk", "hvisker": "hvisk", "hvisket": "hvisk", "hvisler": "hvisl", "hvit": "hvit", "hvite": "hvit", "hviteste": "hvitest", "hvitner": "hvitn", "hvitt": "hvitt", "hvittensand": "hvittensand", "hvor": "hvor", "hvorav": "hvorav", "hvordan": "hvordan", "hvoretter": "hvorett", "hvorfor": "hvorfor", "hvorledes": "hvorl", "hvorvidt": "hvorvid", "hybelbuarar": "hybelbuar", "hyblar": "hybl", "hydro": "hydro", "hydros": "hydro", "hyggelig": "hygg", "hyggeligste": "hyggeligst", "hyl": "hyl", "hyler": "hyl", "hylland": "hylland", "hyllandutvalget": "hyllandutvalg", "hylte": "hylt", "hyme": "hym", "hymes": "hym", "hypotekforeiningar": "hypotekforeining", "hypp": "hypp", "hypper": "hypp", "hyppige": "hypp", "hyppigere": "hyppiger", "hyre": "hyr", "hyresgasternas": "hyresgastern", "hyrrokken": "hyrrokk", "hysj": "hysj", "hytta": "hytt", "hytte": "hytt", "hyttefelt": "hyttefelt", "hytter": "hytt", "hå": "hå", "håkan": "håkan", "hånd": "hånd", "hånde": "hånd", "hånden": "hånd", "håndflaten": "håndflat", "håndheve": "håndhev", "håndheving": "håndheving", "håndkvern": "håndkvern", "håndledd": "håndledd", "håndleddet": "håndledd", "håndslag": "håndslag", "håndtak": "håndtak", "håndtere": "håndter", "håndterer": "håndter", "håndteres": "håndter", "håndtering": "håndtering", "håndteringen": "håndtering", "håndteringsevne": "håndteringsevn", "håndteringsform": "håndteringsform", "håndteringskapasitet": "håndteringskapasit", "håndteringsteknologi": "håndteringsteknologi", "håndteringstjenester": "håndteringstjenest", "håndteringsutstyr": "håndteringsutstyr", "håndtert": "håndter", "håndterte": "håndter", "håne": "hån", "håner": "hån", "hånlig": "hån", "håp": "håp", "håpe": "håp", "håper": "håp", "håpet": "håp", "håpløsheten": "håpløs", "hår": "hår", "håret": "hår", "hårete": "håret", "håvamål": "håvamål", "hæl": "hæl", "hælene": "hæl", "hæler": "hæl", "hær": "hær", "hæren": "hær", "hærene": "hær", "hærfører": "hærfør", "hærguden": "hærgud", "hærklær": "hærklær", "hærskare": "hærskar", "hærskarer": "hærskar", "hæs": "hæs", "høflig": "høf", "høg": "høg", "høgare": "høgar", "høgast": "høg", "høgaste": "høgast", "høge": "høg", "høgst": "høgst", "høgste": "høgst", "høgsteretts": "høgsterett", "høgt": "høgt", "høilund": "høilund", "høne": "høn", "hør": "hør", "høre": "hør", "hører": "hør", "høres": "hør", "høring": "høring", "høringsfrist": "høringsfrist", "høringsnotatet": "høringsnotat", "høringsuttalelse": "høringsuttal", "høringsuttalelsene": "høringsuttal", "hørsel": "hørsel", "hørt": "hørt", "hørte": "hørt", "høst": "høst", "høste": "høst", "høsten": "høst", "høststormene": "høststorm", "høvding": "høvding", "høvdingen": "høvding", "høvdinger": "høvding", "høvdings": "høvding", "høvdingsetet": "høvdingset", "høve": "høv", "høveleg": "høv", "høvet": "høv", "høvik": "høvik", "høvisk": "høvisk", "høy": "høy", "høyavkastningsperiode": "høyavkastningsperiod", "høyde": "høyd", "høydebegrensninger": "høydebegrensning", "høyden": "høyd", "høye": "høye", "høyere": "høyer", "høyes": "høyes", "høyest": "høyest", "høyeste": "høyest", "høyfrekvent": "høyfrekvent", "høyfrekvente": "høyfrekvent", "høyhastighetstog": "høyhastighetstog", "høyinntektsgruppen": "høyinntektsgrupp", "høyrde": "høyrd", "høyre": "høyr", "høyrer": "høyr", "høyringsmøta": "høyringsmøt", "høyringsmøte": "høyringsmøt", "høyringsnotatet": "høyringsnotat", "høyringsrunden": "høyringsrund", "høyrt": "høyrt", "høysete": "høyset", "høyseter": "høyset", "høysetet": "høyset", "høyst": "høyst", "høyt": "høyt", "høytlønte": "høytlønt", "høyvann": "høyvann", "i": "i", "iallfall": "iallfall", "ica": "ica", "ida": "ida", "idag": "idag", "idavollen": "idavoll", "iddefjorden": "iddefjord", "ide": "ide", "idealistisk": "idealistisk", "idear": "ide", "ideell": "ideell", "ideelle": "ideell", "ideelt": "ideelt", "ideen": "ide", "identifiseres": "identifiser", "identisk": "identisk", "identiske": "identisk", "identiteten": "identitet", "idet": "idet", "idretter": "idrett", "idretts": "idrett", "idunn": "idunn", "idunns": "idunn", "ifra": "ifr", "ifølge": "ifølg", "igangsatt": "igangsatt", "igangsette": "igangsett", "igangsettes": "igangsett", "igjen": "igj", "igjennom": "igjennom", "igår": "igår", "ihjel": "ihjel", "ihrer": "ihr", "iht": "iht", "ii": "ii", "ikke": "ikk", "ikkeeksisterende": "ikkeeksister", "ikkje": "ikkj", "ikraft": "ikraft", "ikraftsetjing": "ikraftsetjing", "ikraftsetjinga": "ikraftsetjing", "ikrafttredelse": "ikrafttred", "ikrafttreden": "ikrafttred", "iksl": "iksl", "ild": "ild", "ilden": "ild", "ildfolket": "ildfolk", "ildkjempen": "ildkjemp", "ildkulen": "ildkul", "ildlandet": "ildland", "ildringen": "ildring", "ildrytterne": "ildryttern", "ildrød": "ildrød", "ildsmykket": "ildsmykk", "ildstedet": "ildsted", "ildstormen": "ildstorm", "ille": "ill", "illeluktende": "illelukt", "illusorisk": "illusorisk", "illustrasjon": "illustrasjon", "illustrasjonene": "illustrasjon", "illustrasjonens": "illustrasjon", "illustrasjoner": "illustrasjon", "illustrasjonsmessig": "illustrasjonsmess", "illustrere": "illustrer", "illustrerende": "illustrer", "illustrerer": "illustrer", "illustreres": "illustrer", "illustrert": "illustrer", "ilo": "ilo", "iltre": "iltr", "imellom": "imellom", "imens": "imen", "imidlertid": "imidlertid", "immingham": "immingham", "imorgen": "imorg", "imot": "imot", "implementere": "implementer", "implementeres": "implementer", "implementert": "implementer", "impliserer": "impliser", "implisitt": "implisitt", "import": "import", "importanlegg": "importanlegg", "importanløpssteder": "importanløpssted", "importbedrifter": "importbedrift", "importen": "import", "importeres": "importer", "importert": "importer", "importerte": "importer", "importgods": "importgod", "importgodset": "importgods", "importhavn": "importhavn", "importhavnen": "importhavn", "importlagre": "importlagr", "importlast": "importl", "importlasten": "importlast", "importmarkeder": "importmarked", "importoverskudd": "importoverskudd", "importsiden": "importsid", "importtilbøyelighet": "importtilbøy", "importtransportene": "importtransport", "importvarer": "importvar", "importvekst": "importvekst", "importveksten": "importvekst", "importverdi": "importverdi", "importvirksomheter": "importvirksom", "importvolum": "importvolum", "importvolumene": "importvolum", "importvolumer": "importvolum", "importvolumet": "importvolum", "importør": "importør", "importører": "importør", "impulsen": "impuls", "imøtekomme": "imøtekomm", "imøtekommer": "imøtekomm", "in": "in", "inatt": "inatt", "incitamenter": "incitament", "indeksen": "indeks", "indeksobligasjoner": "indeksobligasjon", "indikasjon": "indikasjon", "indikasjoner": "indikasjon", "indikator": "indikator", "indikatorbasert": "indikatorbaser", "indikatorene": "indikator", "indikatorer": "indikator", "indikere": "indiker", "indikerer": "indiker", "indirekte": "indirekt", "individbasert": "individbaser", "individualisert": "individualiser", "individualiserte": "individualiser", "individuell": "individuell", "individuelle": "individuell", "individuelt": "individuelt", "indre": "indr", "industri": "industri", "industrianlegg": "industrianlegg", "industriareal": "industriareal", "industribedriftene": "industribedrift", "industribedrifter": "industribedrift", "industrielle": "industriell", "industrien": "industri", "industriens": "industri", "industriforetak": "industriforetak", "industriforetakene": "industriforetak", "industrigods": "industrigod", "industrigrupperinger": "industrigruppering", "industrihavnen": "industrihavn", "industrihavner": "industrihavn", "industrikaiene": "industrikai", "industrikaier": "industrikai", "industriland": "industriland", "industrinasjoner": "industrinasjon", "industriområdene": "industriområd", "industriproduksjon": "industriproduksjon", "industris": "industris", "industrivarene": "industrivar", "industrivarer": "industrivar", "industrivirksomheter": "industrivirksom", "ineffektiv": "ineffektiv", "inflasjon": "inflasjon", "inflasjonen": "inflasjon", "inflasjonsendringer": "inflasjonsendring", "inflasjonsrate": "inflasjonsrat", "inflasjonsraten": "inflasjonsrat", "inflasjonssikring": "inflasjonssikring", "influensområde": "influensområd", "influerer": "influer", "informasjon": "informasjon", "informasjoner": "informasjon", "informasjons": "informasjon", "informasjonsansvar": "informasjonsansv", "informasjonsgrunnlaget": "informasjonsgrunnlag", "informasjonskravet": "informasjonskrav", "informasjonsplikt": "informasjonsplikt", "informasjonsteknologi": "informasjonsteknologi", "informasjonsutveksling": "informasjonsutveksling", "informere": "informer", "informerer": "informer", "informert": "informer", "infrastructure": "infrastructur", "infrastruktur": "infrastruktur", "infrastrukturbehov": "infrastrukturbehov", "infrastrukturelle": "infrastrukturell", "infrastrukturen": "infrastruktur", "infrastrukturene": "infrastruktur", "infrastrukturinvesteringer": "infrastrukturinvestering", "infrastrukturproblemer": "infrastrukturproblem", "infrastrukturprosjekter": "infrastrukturprosjekt", "infrastrukturtiltak": "infrastrukturtiltak", "inga": "ing", "ingen": "ing", "ingenting": "ingenting", "inger": "ing", "ingrid": "ingrid", "inhabil": "inhabil", "inhabile": "inhabil", "inhabilitet": "inhabilit", "inhabilitetsreglane": "inhabilitetsregl", "initiativ": "initiativ", "initiativene": "initiativ", "initiativet": "initiativ", "inkassolova": "inkasso", "inkl": "inkl", "inkludere": "inkluder", "inkluderer": "inkluder", "inkluderes": "inkluder", "inkludert": "inkluder", "inkluderte": "inkluder", "inklusive": "inklusiv", "inkonsekvent": "inkonsekvent", "inn": "inn", "innad": "innad", "innafor": "innafor", "innan": "innan", "innarbeidast": "innarbeid", "innarbeidd": "innarbeidd", "innarbeidde": "innarbeidd", "innarbeide": "innarbeid", "innarbeides": "innarbeid", "innarbeidet": "innarbeid", "innbakt": "innbakt", "innbeding": "innbeding", "innbefatter": "innbefatt", "innberetning": "innberetning", "innberette": "innberett", "innberettes": "innberett", "innberettet": "innberett", "innbetale": "innbetal", "innbetaler": "innbetal", "innbetales": "innbetal", "innbetaling": "innbetaling", "innbetalinga": "innbetaling", "innbetalingane": "innbetaling", "innbetalingar": "innbetaling", "innbetalingen": "innbetaling", "innbetalingene": "innbetaling", "innbetalinger": "innbetaling", "innbetalingsperiode": "innbetalingsperiod", "innbetalingsperioden": "innbetalingsperiod", "innbetalingsprofil": "innbetalingsprofil", "innbetalingsprofilen": "innbetalingsprofil", "innbetalingstid": "innbetalingstid", "innbetalingstiden": "innbetalingstid", "innbetalingstidens": "innbetalingstid", "innbetalingstidspunktet": "innbetalingstidspunkt", "innbetalingsår": "innbetalingsår", "innbetalt": "innbetalt", "innbetalte": "innbetalt", "innbille": "innbill", "innbringe": "innbring", "innbrot": "innbrot", "innbu": "innbu", "innbyggere": "innbygger", "innbyrdes": "innbyrd", "inndeling": "inndeling", "inndelinga": "inndeling", "inndelingen": "inndeling", "inndelinger": "inndeling", "inndelt": "inndelt", "inndrive": "inndriv", "inndriving": "inndriving", "inne": "inn", "innebar": "inneb", "inneber": "inneb", "innebere": "inneber", "innebygde": "innebygd", "innebære": "innebær", "innebærer": "innebær", "innefor": "innefor", "inneha": "inneh", "innehalde": "innehald", "innehar": "inneh", "innehavarane": "innehavar", "innehavaren": "innehavar", "innehaver": "innehav", "innehaveren": "innehaver", "inneheld": "inneheld", "inneholde": "innehold", "inneholder": "innehold", "inneklemt": "inneklemt", "innen": "inn", "innenfor": "innenfor", "innenlands": "innenland", "innenlandsk": "innenlandsk", "innenlandske": "innenlandsk", "innenlandstrafikk": "innenlandstrafikk", "innenriks": "innenriks", "innenrikstrafikken": "innenrikstrafikk", "innenrikstransporter": "innenrikstransport", "inneriks": "inneriks", "innerst": "innerst", "inneståande": "innestå", "innestående": "innestå", "innestår": "innestår", "inneværende": "innevær", "innfart": "innfart", "innfartsvegene": "innfartsveg", "innfartsveger": "innfartsveg", "innflytelse": "innflyt", "innflytting": "innflytting", "innflyttingsklar": "innflyttingskl", "innflyttingsklare": "innflyttingsklar", "innforstått": "innforstått", "innfortolke": "innfortolk", "innfri": "innfri", "innfridd": "innfridd", "innfriing": "innfriing", "innfrir": "innfrir", "innfris": "innfris", "innførast": "innfør", "innføre": "innfør", "innfører": "innfør", "innføres": "innfør", "innføring": "innføring", "innføringa": "innføring", "innføringen": "innføring", "innført": "innført", "innførte": "innført", "inngang": "inngang", "inngangen": "inngang", "inngikk": "inngikk", "inngis": "inngis", "inngrep": "inngrep", "inngå": "inngå", "inngåande": "inngå", "inngåelse": "inngå", "inngående": "inngå", "inngåing": "inngåing", "inngår": "inngår", "inngås": "inngås", "inngått": "inngått", "innhald": "innhald", "innhaldet": "innhald", "innhaldsrike": "innhaldsrik", "innhenta": "innhent", "innhente": "innhent", "innhentet": "innhent", "innhenting": "innhenting", "innhold": "innhold", "innholdet": "innhold", "innhule": "innhul", "innkalling": "innkalling", "innkallinga": "innkalling", "innkallingsplikt": "innkallingsplikt", "innkjøp": "innkjøp", "innkjøpslag": "innkjøpslag", "innkjøpsmakt": "innkjøpsmakt", "innkomne": "innkomn", "innkrevingssentral": "innkrevingssentral", "innkrevjing": "innkrevjing", "innledning": "innledning", "innledningen": "innledning", "innledningsvis": "innledningsvis", "innleiande": "innlei", "innleiing": "innleiing", "innleiinga": "innleiing", "innlemme": "innlemm", "innlemmes": "innlemm", "innlevering": "innlevering", "innlosjering": "innlosjering", "innlysande": "innlys", "innlån": "innlån", "innlånte": "innlånt", "innlåsing": "innlåsing", "innløpet": "innløp", "innløsning": "innløsning", "innløsningsretten": "innløsningsrett", "innløst": "innløst", "innløysing": "innløysing", "innløysingspapir": "innløysingspapir", "innløysingsregelen": "innløysingsregel", "innløysingssummen": "innløysingssumm", "innmelde": "innmeld", "innmeldes": "innmeld", "innmelding": "innmelding", "innom": "innom", "innovativt": "innovativ", "innover": "innov", "innpasset": "innpass", "innpå": "innpå", "innreidde": "innreidd", "innretning": "innretning", "innretningen": "innretning", "innretninger": "innretning", "innretta": "innrett", "innrettar": "innrett", "innrette": "innrett", "innrettet": "innrett", "innretting": "innretting", "innrømme": "innrømm", "innrømmer": "innrømm", "innrømmes": "innrømm", "innrømmet": "innrømm", "innsamling": "innsamling", "innsats": "innsat", "innsatsfaktorer": "innsatsfaktor", "innseiling": "innseiling", "innseilingen": "innseiling", "innseilingskorridorene": "innseilingskorridor", "innseilingsled": "innseilingsled", "innseilingsleder": "innseilingsled", "innsende": "inns", "innsending": "innsending", "innser": "inns", "innsida": "innsid", "innsiden": "innsid", "innsigelse": "innsig", "innsigelsen": "innsig", "innsigelser": "innsig", "innsigelses": "innsig", "innsikt": "innsikt", "innsjø": "innsjø", "innsjøer": "innsjø", "innskot": "innskot", "innskota": "innskot", "innskoten": "innskot", "innskotet": "innskot", "innskotsbasert": "innskotsbaser", "innskotsbaserte": "innskotsbaser", "innskotsforma": "innskotsform", "innskotskapital": "innskotskapital", "innskotskapitalen": "innskotskapital", "innskottsbasert": "innskottsbaser", "innskrenkende": "innskrenk", "innskrenker": "innskrenk", "innskrenkes": "innskrenk", "innskrenking": "innskrenking", "innskrenkning": "innskrenkning", "innskrenkningen": "innskrenkning", "innskudd": "innskudd", "innskuddene": "innskudd", "innskuddenes": "innskudd", "innskuddet": "innskudd", "innskuddets": "innskudd", "innskudds": "innskudd", "innskuddsalternativer": "innskuddsalternativ", "innskuddsatser": "innskuddsats", "innskuddsbasering": "innskuddsbasering", "innskuddsbasert": "innskuddsbaser", "innskuddsbaserte": "innskuddsbaser", "innskuddsbolig": "innskuddsbo", "innskuddsfond": "innskuddsfond", "innskuddsfondet": "innskuddsfond", "innskuddsfondets": "innskuddsfond", "innskuddsfondsmidlene": "innskuddsfondsmidl", "innskuddsfondsmidler": "innskuddsfondsmidl", "innskuddsforskjeller": "innskuddsforskjell", "innskuddsfradrag": "innskuddsfradrag", "innskuddsfritak": "innskuddsfritak", "innskuddsfritaket": "innskuddsfritak", "innskuddsgivende": "innskuddsgiv", "innskuddsgrenser": "innskuddsgrens", "innskuddskvittering": "innskuddskvittering", "innskuddskvitteringene": "innskuddskvittering", "innskuddskvitteringer": "innskuddskvittering", "innskuddsordning": "innskuddsordning", "innskuddsordningen": "innskuddsordning", "innskuddsordninger": "innskuddsordning", "innskuddsordningers": "innskuddsordning", "innskuddsordnings": "innskuddsordning", "innskuddspensjon": "innskuddspensjon", "innskuddspensjoner": "innskuddspensjon", "innskuddspensjonsordning": "innskuddspensjonsordning", "innskuddspensjonsordningen": "innskuddspensjonsordning", "innskuddspensjonsordningene": "innskuddspensjonsordning", "innskuddspensjonsordningens": "innskuddspensjonsordning", "innskuddspensjonsordninger": "innskuddspensjonsordning", "innskuddspensjonsspesifikke": "innskuddspensjonsspesifikk", "innskuddsplan": "innskuddsplan", "innskuddsplanen": "innskuddsplan", "innskuddsplaner": "innskuddsplan", "innskuddsprinsipper": "innskuddsprinsipp", "innskuddsprofil": "innskuddsprofil", "innskuddsprosent": "innskuddsprosent", "innskuddsprosenten": "innskuddsprosent", "innskuddsprosentene": "innskuddsprosent", "innskuddsprosenter": "innskuddsprosent", "innskuddsrammene": "innskuddsramm", "innskuddsreserve": "innskuddsreserv", "innskuddsreserven": "innskuddsreserv", "innskuddssats": "innskuddssat", "innskuddssatsen": "innskuddssats", "innskuddssatsene": "innskuddssats", "innskuddssatser": "innskuddssats", "innskuddstid": "innskuddstid", "innskuddstidspunktet": "innskuddstidspunkt", "innskuddsvalg": "innskuddsvalg", "innskuddsår": "innskuddsår", "innskuddsåret": "innskuddsår", "innskutt": "innskutt", "innskutte": "innskutt", "innskytarane": "innskytar", "innskytarar": "innskytar", "innskytere": "innskyter", "innskytergaranti": "innskytergaranti", "innslag": "innslag", "innsnevring": "innsnevring", "innsnevringer": "innsnevring", "innsparing": "innsparing", "innsparingar": "innsparing", "innspill": "innspill", "innst": "innst", "innstille": "innstill", "innstiller": "innstill", "innstilling": "innstilling", "innstillingen": "innstilling", "innstillingene": "innstilling", "innstilt": "innstilt", "innstilte": "innstilt", "innstramminga": "innstramming", "innsyn": "innsyn", "innta": "innt", "inntatt": "inntatt", "inntekstbortfall": "inntekstbortfall", "inntekt": "inntekt", "inntekta": "inntekt", "inntekten": "inntekt", "inntektene": "inntekt", "inntekter": "inntekt", "inntekts": "inntekt", "inntektsbeskatning": "inntektsbeskatning", "inntektsbeskattes": "inntektsbeskatt", "inntektsbortfall": "inntektsbortfall", "inntektseffekt": "inntektseffekt", "inntektsfordelinga": "inntektsfordeling", "inntektsfordelingen": "inntektsfordeling", "inntektsfradrag": "inntektsfradrag", "inntektsfradraget": "inntektsfradrag", "inntektsfradragets": "inntektsfradrag", "inntektsfrådrag": "inntektsfrådrag", "inntektsføres": "inntektsfør", "inntektsføring": "inntektsføring", "inntektsgrensene": "inntektsgrens", "inntektsgrunnlag": "inntektsgrunnlag", "inntektsintervallene": "inntektsintervall", "inntektsintervaller": "inntektsintervall", "inntektsintervallet": "inntektsintervall", "inntektskilder": "inntektskild", "inntektsnivå": "inntektsnivå", "inntektsnivået": "inntektsnivå", "inntektsprøvet": "inntektsprøv", "inntektssikring": "inntektssikring", "inntektsstruktur": "inntektsstruktur", "inntektstap": "inntektstap", "inntektstavhengig": "inntektstavheng", "inntektsuavhengig": "inntektsuavheng", "inntektsvilkår": "inntektsvilkår", "inntektsår": "inntektsår", "inntektsåret": "inntektsår", "inntil": "inntil", "inntjening": "inntjening", "inntransport": "inntransport", "inntreffe": "inntreff", "inntreffer": "inntreff", "inntrer": "inntr", "inntrykk": "inntrykk", "inntrykket": "inntrykk", "inntrådt": "inntråd", "innunder": "innund", "innvendast": "innvend", "innvende": "innv", "innvendig": "innvend", "innvendige": "innvend", "innvending": "innvending", "innvendinga": "innvending", "innvendingane": "innvending", "innvendingar": "innvending", "innvendinger": "innvending", "innverknad": "innverknad", "innverknaden": "innverknad", "innvinne": "innvinn", "innvinnes": "innvinn", "innvinning": "innvinning", "innvirking": "innvirking", "innvirkning": "innvirkning", "innvollene": "innvoll", "innvoller": "innvoll", "innvunnet": "innvunn", "insentivene": "insentiv", "insentiver": "insentiv", "insitament": "insitament", "insitamenter": "insitament", "insitamentstrukturen": "insitamentstruktur", "installasjonar": "installasjon", "installeres": "installer", "installering": "installering", "instans": "instan", "institusjon": "institusjon", "institusjonar": "institusjon", "institusjonen": "institusjon", "institusjonene": "institusjon", "institusjonenes": "institusjon", "institusjonens": "institusjon", "institusjoner": "institusjon", "institusjonstilsynet": "institusjonstilsyn", "institusjonstype": "institusjonstyp", "institutt": "institutt", "instituttet": "institutt", "instituttsjef": "instituttsjef", "instruere": "instruer", "instruks": "instruks", "instruksar": "instruks", "instruksen": "instruks", "instruksjoner": "instruksjon", "instrumenter": "instrument", "insurance": "insuranc", "intakt": "intakt", "integrasjon": "integrasjon", "integrasjonen": "integrasjon", "integrere": "integrer", "integrering": "integrering", "integrert": "integrer", "integrerte": "integrer", "intensjonen": "intensjon", "intensjonene": "intensjon", "intenst": "intenst", "inter": "int", "interessa": "interess", "interessant": "interessant", "interessante": "interessant", "interesse": "interess", "interesseavveging": "interesseavveging", "interessegrupper": "interessegrupp", "interessekonflikt": "interessekonflikt", "interessekonfliktar": "interessekonflikt", "interessemotsetnader": "interessemotsetnad", "interessemotsetningar": "interessemotsetning", "interessene": "interess", "interessentane": "interessent", "interessentar": "interessent", "interesseorganisasjon": "interesseorganisasjon", "interesseorganisasjonar": "interesseorganisasjon", "interesser": "interess", "interesserer": "interesser", "interessert": "interesser", "interesserte": "interesser", "intereuropeisk": "intereuropeisk", "interkommunal": "interkommunal", "interkommunale": "interkommunal", "interkommunalt": "interkommunalt", "intermodale": "intermodal", "intern": "intern", "internasjonal": "internasjonal", "internasjonale": "internasjonal", "internasjonalisering": "internasjonalisering", "internasjonaliseringen": "internasjonalisering", "internasjonalisert": "internasjonaliser", "internasjonalt": "internasjonalt", "international": "international", "interne": "intern", "internettsider": "internettsid", "internt": "internt", "interregional": "interregional", "intervall": "intervall", "intervallene": "intervall", "intervaller": "intervall", "intervallet": "intervall", "intressen": "intress", "introduksjon": "introduksjon", "inventar": "invent", "investeres": "invester", "investering": "investering", "investeringa": "investering", "investeringar": "investering", "investeringene": "investering", "investeringer": "investering", "investeringsalternativene": "investeringsalternativ", "investeringsalternativer": "investeringsalternativ", "investeringsbehovet": "investeringsbehov", "investeringsbeslutningene": "investeringsbeslutning", "investeringsbeslutninger": "investeringsbeslutning", "investeringskostnader": "investeringskostnad", "investeringsmidler": "investeringsmidl", "investeringsobjekter": "investeringsobjekt", "investeringsorienterte": "investeringsorienter", "investeringsperiode": "investeringsperiod", "investeringsportefølje": "investeringsportefølj", "investeringsporteføljen": "investeringsportefølj", "investeringsporteføljene": "investeringsportefølj", "investeringsporteføljer": "investeringsportefølj", "investeringsporteføljes": "investeringsportefølj", "investeringsstrategier": "investeringsstrategi", "investeringstiltak": "investeringstiltak", "investeringsvalg": "investeringsvalg", "investeringsvalget": "investeringsvalg", "investert": "invester", "investorer": "investor", "involvere": "involver", "involverer": "involver", "iogforseg": "iogforseg", "ipa": "ipa", "ir": "ir", "ira": "ira", "irland": "irland", "ironisk": "ironisk", "irritert": "irriter", "is": "is", "isbreene": "isbre", "isbreer": "isbre", "isen": "isen", "isf": "isf", "isfjell": "isfjell", "isflak": "isflak", "iskalde": "iskald", "iskaldt": "iskald", "island": "island", "iso": "iso", "isolert": "isoler", "isproblemer": "isproblem", "istand": "istand", "istandsetjing": "istandsetjing", "istappene": "istapp", "istapper": "istapp", "istedenfor": "istedenfor", "istedet": "isted", "istykker": "istykk", "isødet": "isød", "it": "it", "italia": "itali", "italiane": "itali", "italiensk": "italiensk", "italienske": "italiensk", "itp": "itp", "iv": "iv", "ivalde": "ivald", "ivareta": "ivaret", "ivaretagelse": "ivaretag", "ivaretakast": "ivaretak", "ivaretakelse": "ivaretak", "ivaretaking": "ivaretaking", "ivaretar": "ivaret", "ivaretas": "ivaret", "ivaretatt": "ivaretatt", "ivareteke": "ivaretek", "ivaretekne": "ivaretekn", "iverksatt": "iverksatt", "iverksetjing": "iverksetjing", "iverksetjinga": "iverksetjing", "iverksette": "iverksett", "iverksettelse": "iverksett", "iverksettelsen": "iverksett", "iverksettes": "iverksett", "ivrig": "ivr", "ivrige": "ivr", "ivrigste": "ivrigst", "ja": "ja", "jage": "jag", "jager": "jag", "jakt": "jakt", "jaktbikkjene": "jaktbikkj", "jakte": "jakt", "jakten": "jakt", "jakter": "jakt", "jaktet": "jakt", "jaktfalk": "jaktfalk", "jaktlykke": "jaktlykk", "jammen": "jamm", "jammer": "jamm", "jamrer": "jamr", "jamringen": "jamring", "jamstellast": "jamstell", "jamt": "jamt", "jan": "jan", "januar": "janu", "jarl": "jarl", "jarnsaksa": "jarnsaks", "javel": "javel", "javisst": "javisst", "jbv": "jbv", "jeg": "jeg", "jegeren": "jeger", "jeløya": "jeløy", "jentene": "jent", "jenteord": "jenteord", "jenter": "jent", "jern": "jern", "jernbane": "jernb", "jernbanebru": "jernbanebru", "jernbaneforbindelse": "jernbaneforbind", "jernbaneforbindelser": "jernbaneforbind", "jernbanefrakt": "jernbanefrakt", "jernbaneknutepunktet": "jernbaneknutepunkt", "jernbaneløsninger": "jernbaneløsning", "jernbanen": "jernban", "jernbanenett": "jernbanenett", "jernbanenettet": "jernbanenett", "jernbanens": "jernban", "jernbanespor": "jernbanespor", "jernbanestasjon": "jernbanestasjon", "jernbanetilknytning": "jernbanetilknytning", "jernbanetilknytningen": "jernbanetilknytning", "jernbanetiltak": "jernbanetiltak", "jernbanetransport": "jernbanetransport", "jernbanetransportens": "jernbanetransport", "jernbanetrase": "jernbanetras", "jernbaneverket": "jernbaneverk", "jernbanevogn": "jernbanevogn", "jernbanevogner": "jernbanevogn", "jernbitene": "jernbit", "jernhansker": "jernhansk", "jernlenker": "jernlenk", "jernsakser": "jernsaks", "jernskogen": "jernskog", "jernstang": "jernstang", "jernstenger": "jernsteng", "jernstykke": "jernstykk", "jernstykket": "jernstykk", "jernvotter": "jernvott", "jessica": "jessic", "jevn": "jevn", "jevnbyrdige": "jevnbyrd", "jevnere": "jevner", "jevnt": "jevnt", "jf": "jf", "jo": "jo", "jobb": "jobb", "jobbskifte": "jobbskift", "jobbytte": "jobbytt", "joda": "jod", "johansen": "johans", "johnstad": "johnstad", "jomfruer": "jomfru", "jord": "jord", "jorden": "jord", "jorder": "jord", "jordskjelv": "jordskjelv", "jormungand": "jormungand", "jotnen": "jotn", "jotnene": "jotn", "jotnens": "jotn", "jotner": "jotn", "jotun": "jotun", "jotunborgen": "jotunborg", "jotundatter": "jotundatt", "jotundatteren": "jotundatter", "jotundatters": "jotundatt", "jotundøtrene": "jotundøtr", "jotunfoten": "jotunfot", "jotunheim": "jotunheim", "jotunhodet": "jotunhod", "jotunjente": "jotunjent", "jotunkjemper": "jotunkjemp", "jotunkjerringa": "jotunkjerring", "jotunkongen": "jotunkong", "jotunkvinne": "jotunkvinn", "jotunkvinnen": "jotunkvinn", "jotunkvinner": "jotunkvinn", "jotunmor": "jotunmor", "jotunsinnet": "jotunsinn", "jotunskalle": "jotunskall", "jotunskallen": "jotunskall", "jotunskaller": "jotunskall", "jotunslekt": "jotunslekt", "jotunsønnen": "jotunsønn", "jotunætt": "jotunætt", "journal": "journal", "journalar": "journal", "jubel": "jubel", "jubler": "jubl", "juks": "juks", "juli": "juli", "julius": "julius", "juni": "juni", "jur": "jur", "juret": "jur", "juridisk": "juridisk", "juridiske": "juridisk", "just": "just", "justerast": "juster", "justerbar": "justerb", "justere": "juster", "justerer": "juster", "justering": "justering", "justert": "juster", "justerte": "juster", "justisdepartementet": "justisdepartement", "juv": "juv", "juveler": "juvel", "juvet": "juv", "k": "k", "kabelanlegg": "kabelanlegg", "kadavere": "kadaver", "kaholmen": "kaholm", "kai": "kai", "kaianlegg": "kaianlegg", "kaianlegget": "kaianlegg", "kaibygging": "kaibygging", "kaiene": "kaien", "kaier": "kaier", "kaifronten": "kaifront", "kaifronter": "kaifront", "kaikapasiteten": "kaikapasitet", "kailengde": "kailengd", "kaimetre": "kaimetr", "kaiområde": "kaiområd", "kaiområder": "kaiområd", "kakker": "kakk", "kald": "kald", "kalde": "kald", "kaldere": "kalder", "kaldt": "kald", "kalenderdagane": "kalenderdag", "kalenderdagar": "kalenderdag", "kalenderår": "kalenderår", "kalk": "kalk", "kalkulere": "kalkuler", "kalla": "kall", "kallar": "kall", "kallast": "kall", "kalle": "kall", "kallen": "kall", "kaller": "kall", "kalles": "kall", "kalt": "kalt", "kalte": "kalt", "kalvene": "kalv", "kalver": "kalv", "kalveskinnsko": "kalveskinnsko", "kam": "kam", "kameratslig": "kamerats", "kammerpike": "kammerpik", "kamp": "kamp", "kampen": "kamp", "kampestener": "kampesten", "kamptreningen": "kamptrening", "kan": "kan", "kanalar": "kanal", "kanalen": "kanal", "kanskje": "kanskj", "kant": "kant", "kanten": "kant", "kanter": "kant", "kantre": "kantr", "kantrer": "kantr", "kantsatt": "kantsatt", "kap": "kap", "kapasitet": "kapasit", "kapasiteten": "kapasitet", "kapasitetsbegrensninger": "kapasitetsbegrensning", "kapasitetsbehov": "kapasitetsbehov", "kapasitetsbehovet": "kapasitetsbehov", "kapasitetsbeskrankninger": "kapasitetsbeskrankning", "kapasitetsforhold": "kapasitetsforhold", "kapasitetsforutsetninger": "kapasitetsforutsetning", "kapasitetsgrense": "kapasitetsgrens", "kapasitetsgrensen": "kapasitetsgrens", "kapasitetsgrenser": "kapasitetsgrens", "kapasitetsmangel": "kapasitetsmangel", "kapasitetsmessige": "kapasitetsmess", "kapasitetsmuligheter": "kapasitetsmu", "kapasitetspotensiale": "kapasitetspotensial", "kapasitetspotensialet": "kapasitetspotensial", "kapasitetspress": "kapasitetspress", "kapasitetsproblem": "kapasitetsproblem", "kapasitetsproblemer": "kapasitetsproblem", "kapasitetsreserver": "kapasitetsreserv", "kapasitetssituasjonen": "kapasitetssituasjon", "kapasitetsskranker": "kapasitetsskrank", "kapasitetsspørsmål": "kapasitetsspørsmål", "kapasitetstall": "kapasitetstall", "kapasitetstallene": "kapasitetstall", "kapasitetsutvidelse": "kapasitetsutvid", "kapasitetsutvidelser": "kapasitetsutvid", "kapasitetsutvidelsestiltak": "kapasitetsutvidelsestiltak", "kapasitetsutvikling": "kapasitetsutvikling", "kapasitetsutviklingen": "kapasitetsutvikling", "kapasitetsvurderinger": "kapasitetsvurdering", "kapasitetsøkende": "kapasitetsøk", "kapasitetsøkning": "kapasitetsøkning", "kapital": "kapital", "kapitalavkasting": "kapitalavkasting", "kapitalavkastning": "kapitalavkastning", "kapitalavkastningen": "kapitalavkastning", "kapitalavsetning": "kapitalavsetning", "kapitalen": "kapital", "kapitalens": "kapital", "kapitalforsikring": "kapitalforsikring", "kapitalforsikringene": "kapitalforsikring", "kapitalforsikringer": "kapitalforsikring", "kapitalforvaltning": "kapitalforvaltning", "kapitalforvaltningen": "kapitalforvaltning", "kapitalforvaltningsforskriften": "kapitalforvaltningsforskrift", "kapitalforvaltningsregler": "kapitalforvaltningsregl", "kapitalgrunnlaget": "kapitalgrunnlag", "kapitalinnskot": "kapitalinnskot", "kapitalinnskota": "kapitalinnskot", "kapitalinnskudd": "kapitalinnskudd", "kapitalinnskytarar": "kapitalinnskytar", "kapitalinntekt": "kapitalinntekt", "kapitaliseringsprodukt": "kapitaliseringsprodukt", "kapitaliseringsprodukter": "kapitaliseringsprodukt", "kapitaloppbygging": "kapitaloppbygging", "kapitaloppbygginga": "kapitaloppbygging", "kapitaloppbyggingen": "kapitaloppbygging", "kapitaloppsparing": "kapitaloppsparing", "kapitalpensjoner": "kapitalpensjon", "kapitalsamanslutningane": "kapitalsamanslutning", "kapitalsamanslutningar": "kapitalsamanslutning", "kapitalsituasjonen": "kapitalsituasjon", "kapitalsterke": "kapitalsterk", "kapitaltilskot": "kapitaltilskot", "kapitalverdien": "kapitalverdi", "kapitel": "kapitel", "kapitlene": "kapitl", "kapitler": "kapitl", "kapitlet": "kapitl", "kapitlets": "kapitl", "kapittel": "kapittel", "kapittelet": "kapittel", "kapp": "kapp", "kappdrikker": "kappdrikk", "kappe": "kapp", "kappen": "kapp", "kapper": "kapp", "kappri": "kappri", "kappridning": "kappridning", "kar": "kar", "karakter": "karakt", "karakteren": "karakter", "karakteriseres": "karakteriser", "karakteristika": "karakteristik", "karakteristikken": "karakteristikk", "karen": "kar", "karene": "kar", "karensperiode": "karensperiod", "karer": "kar", "karet": "kar", "kari": "kari", "karl": "karl", "karmar": "karm", "karmsund": "karmsund", "karmøy": "karmøy", "karre": "karr", "karriere": "karrier", "karrieren": "karrier", "karriereutvikling": "karriereutvikling", "kartlagt": "kartlagt", "kartlegge": "kartlegg", "kartlegging": "kartlegging", "kartleggingen": "kartlegging", "kartlegginger": "kartlegging", "kartleggingsarbeidet": "kartleggingsarbeid", "kartleggingsfasen": "kartleggingsfas", "kaserne": "kasern", "kasernebygningen": "kasernebygning", "kasernen": "kasern", "kasse": "kass", "kast": "kast", "kasta": "kast", "kastar": "kast", "kastast": "kast", "kaste": "kast", "kaster": "kast", "kastes": "kast", "kastet": "kast", "katalog": "katalog", "katalysator": "katalysator", "kategorien": "kategori", "kategoriene": "kategori", "kategorier": "kategori", "katt": "katt", "katte": "katt", "katten": "katt", "kattene": "katt", "kattepoter": "kattepot", "katter": "katt", "katteskinn": "katteskinn", "kattunger": "kattung", "kave": "kav", "kaver": "kav", "kgl": "kgl", "kh": "kh", "kiel": "kiel", "kikke": "kikk", "kikker": "kikk", "kilde": "kild", "kilden": "kild", "kilder": "kild", "kildevannet": "kildevann", "kiler": "kil", "kilo": "kilo", "kilometer": "kilomet", "kilometerdistanse": "kilometerdistans", "kinn": "kinn", "kinnene": "kinn", "kinnet": "kinn", "kinnskjegget": "kinnskjegg", "kiosk": "kiosk", "kirkenes": "kirk", "kiste": "kist", "kjede": "kjed", "kjededannelsene": "kjededann", "kjededannelser": "kjededann", "kjedegrupperinger": "kjedegruppering", "kjedeintegrasjon": "kjedeintegrasjon", "kjedelige": "kjed", "kjedens": "kjed", "kjeder": "kjed", "kjedestrukturene": "kjedestruktur", "kjedet": "kjed", "kjeft": "kjeft", "kjeften": "kjeft", "kjeftesmella": "kjeftesmell", "kjekkaseri": "kjekkaseri", "kjelde": "kjeld", "kjelder": "kjeld", "kjele": "kjel", "kjelen": "kjel", "kjeler": "kjel", "kjelker": "kjelk", "kjellar": "kjell", "kjellarar": "kjellar", "kjellstad": "kjellstad", "kjem": "kjem", "kjemikalier": "kjemikali", "kjemiske": "kjemisk", "kjemmet": "kjemm", "kjempe": "kjemp", "kjempediger": "kjemped", "kjempedigre": "kjempedigr", "kjempekrefter": "kjempekreft", "kjempen": "kjemp", "kjempene": "kjemp", "kjempens": "kjemp", "kjemper": "kjemp", "kjempes": "kjemp", "kjempestor": "kjempestor", "kjempet": "kjemp", "kjend": "kjend", "kjende": "kjend", "kjennast": "kjenn", "kjenne": "kjenn", "kjennelse": "kjenn", "kjennemerka": "kjennemerk", "kjennemerke": "kjennemerk", "kjennemerket": "kjennemerk", "kjenner": "kjenn", "kjennes": "kjenn", "kjennetegner": "kjennetegn", "kjennetegnes": "kjennetegn", "kjennetegnet": "kjennetegn", "kjenneteikna": "kjenneteikn", "kjenneteiknar": "kjenneteikn", "kjenneteiknet": "kjenneteikn", "kjennskap": "kjennskap", "kjent": "kjent", "kjente": "kjent", "kjepp": "kjepp", "kjeppjage": "kjeppjag", "kjeppjages": "kjeppjag", "kjeppjaget": "kjeppjag", "kjerneaktivitetene": "kjerneaktivitet", "kjerneaktiviteter": "kjerneaktivitet", "kjerneverksemda": "kjerneverksemd", "kjerra": "kjerr", "kjerre": "kjerr", "kjerring": "kjerring", "kjerringa": "kjerring", "kjerter": "kjert", "kjettingen": "kjetting", "kjevene": "kjev", "kjolen": "kjol", "kjælent": "kjælent", "kjælne": "kjæln", "kjære": "kjær", "kjæremål": "kjæremål", "kjæremålsutval": "kjæremålsutval", "kjæreste": "kjærest", "kjærester": "kjærest", "kjærlighet": "kjær", "kjærligheten": "kjær", "kjærlighets": "kjærligh", "kjærlighetsgudinnen": "kjærlighetsgudinn", "kjærtegn": "kjærtegn", "kjøkenapparat": "kjøkenapparat", "kjøkenbenken": "kjøkenbenk", "kjøkeninnreiing": "kjøkeninnreiing", "kjøkenvifter": "kjøkenvift", "kjøkkenet": "kjøkken", "kjøkøsundet": "kjøkøsund", "kjøl": "kjøl", "kjølevarer": "kjølevar", "kjølvannet": "kjølvann", "kjønn": "kjønn", "kjønnene": "kjønn", "kjønnsforskjellen": "kjønnsforskjell", "kjønnsforskjellene": "kjønnsforskjell", "kjønnslem": "kjønnslem", "kjønnsnøytralt": "kjønnsnøytralt", "kjøp": "kjøp", "kjøpar": "kjøp", "kjøparar": "kjøpar", "kjøparen": "kjøpar", "kjøpast": "kjøp", "kjøpe": "kjøp", "kjøpekraft": "kjøpekraft", "kjøpekraftsforbedring": "kjøpekraftsforbedring", "kjøper": "kjøp", "kjøperett": "kjøperett", "kjøpes": "kjøp", "kjøpesenter": "kjøpesent", "kjøpesummen": "kjøpesumm", "kjøpeutbyte": "kjøpeutbyt", "kjøpsavtalar": "kjøpsavtal", "kjøpsavtale": "kjøpsavtal", "kjøpslova": "kjøp", "kjøpssituasjonen": "kjøpssituasjon", "kjøpt": "kjøpt", "kjøpte": "kjøpt", "kjøre": "kjør", "kjøreavtaler": "kjøreavtal", "kjørehastighet": "kjørehast", "kjører": "kjør", "kjøretøy": "kjøretøy", "kjøretøyer": "kjøretøy", "kjørte": "kjørt", "kjøteren": "kjøter", "kjøtt": "kjøtt", "kjøttet": "kjøtt", "klagast": "klag", "klage": "klag", "klageadgang": "klageadgang", "klagefristen": "klagefrist", "klageinteresse": "klageinteress", "klagen": "klag", "klagenemnd": "klagenemnd", "klager": "klag", "klagereglane": "klageregl", "klagerett": "klagerett", "klagesaker": "klagesak", "klaget": "klag", "klam": "klam", "klamrer": "klamr", "klang": "klang", "klapper": "klapp", "klar": "klar", "klarar": "klar", "klare": "klar", "klarer": "klar", "klarere": "klarer", "klargjere": "klargjer", "klargjort": "klargjort", "klargjør": "klargjør", "klargjøre": "klargjør", "klargjøring": "klargjøring", "klarlagt": "klarlagt", "klarlegge": "klarlegg", "klarsignal": "klarsignal", "klart": "klart", "klasse": "klass", "klasseforskriften": "klasseforskrift", "klassen": "klass", "klassifiseres": "klassifiser", "klassifisering": "klassifisering", "klassifiseringen": "klassifisering", "klassifisert": "klassifiser", "klassifiserte": "klassifiser", "klatre": "klatr", "klatrer": "klatr", "klatret": "klatr", "klauslane": "klausl", "klausul": "klausul", "klausulane": "klausul", "klausular": "klausul", "klausulering": "klausulering", "klausuleringa": "klausulering", "klausuleringar": "klausulering", "klausulert": "klausuler", "klausulerte": "klausuler", "kle": "kle", "kleberget": "kleberg", "kledd": "kledd", "kledt": "kledt", "klegg": "klegg", "klem": "klem", "klemmer": "klemm", "kler": "kler", "klevstrand": "klevstrand", "klientkontomodellen": "klientkontomodell", "klimaavtale": "klimaavtal", "klimagasser": "klimagass", "kling": "kling", "klippeblokk": "klippeblokk", "klippen": "klipp", "klipper": "klipp", "klippes": "klipp", "klippevegger": "klippevegg", "klirrende": "klirr", "klisjeer": "klisje", "klok": "klok", "kloke": "klok", "klokere": "kloker", "klokeste": "klokest", "klokkeslett": "klokkeslett", "klokskap": "klokskap", "klokt": "klokt", "klorer": "klor", "klp": "klp", "klps": "klps", "klubblokaler": "klubblokal", "klump": "klump", "klumpen": "klump", "klumper": "klump", "klynk": "klynk", "klynkende": "klynk", "klynker": "klynk", "klyper": "klyp", "klår": "klår", "klårare": "klårar", "klårast": "klår", "klåre": "klår", "klårgjerande": "klårgjer", "klårgjere": "klårgjer", "klårleggje": "klårleggj", "klårt": "klårt", "klær": "klær", "klærne": "klærn", "kløftede": "kløft", "kløkt": "kløkt", "klør": "klør", "klørne": "klørn", "kløv": "kløv", "kløver": "kløv", "km": "km", "knaker": "knak", "knapp": "knapp", "knappe": "knapp", "knapphet": "knapp", "knapt": "knapt", "knasende": "knas", "knaser": "knas", "kne": "kne", "kneet": "kneet", "knehasene": "knehas", "knekke": "knekk", "knekker": "knekk", "knekkes": "knekk", "knekkpunkt": "knekkpunkt", "knekkpunktene": "knekkpunkt", "knekt": "knekt", "kneler": "knel", "knep": "knep", "knepper": "knepp", "kneppeskjærsutstikkeren": "kneppeskjærsutstikker", "knipe": "knip", "knipen": "knip", "kniper": "knip", "knipser": "knips", "knipset": "knips", "knitrende": "knitr", "kniv": "kniv", "kniven": "kniv", "kniver": "kniv", "knokene": "knok", "knoklene": "knokl", "knokler": "knokl", "knopper": "knopp", "knurrer": "knurr", "knuse": "knus", "knuser": "knus", "knuses": "knus", "knuste": "knust", "knut": "knut", "knute": "knut", "knuten": "knut", "knutepunkt": "knutepunkt", "knutepunkter": "knutepunkt", "knutepunkthavnene": "knutepunkthavn", "knutepunktsprinsippet": "knutepunktsprinsipp", "knuter": "knut", "knytast": "knyt", "knyte": "knyt", "knyter": "knyt", "knytt": "knytt", "knytte": "knytt", "knyttede": "knytt", "knytter": "knytt", "knyttes": "knytt", "knyttet": "knytt", "knyttneven": "knyttnev", "knærne": "knærn", "kobler": "kobl", "koblet": "kobl", "kobling": "kobling", "koblingen": "kobling", "koften": "koft", "koke": "kok", "kokegrop": "kokegrop", "kokekar": "kokek", "koker": "kok", "kokingen": "koking", "kokken": "kokk", "kokt": "kokt", "kolber": "kolb", "koldbrann": "koldbrann", "kollegium": "kollegium", "kollektiv": "kollektiv", "kollektive": "kollektiv", "kollektivet": "kollektiv", "kollektivordning": "kollektivordning", "kollektivordninger": "kollektivordning", "kollektivt": "kollektiv", "kollektivtrafikken": "kollektivtrafikk", "kolliderer": "kollider", "kollisjon": "kollisjon", "kollisjonar": "kollisjon", "kollisjoner": "kollisjon", "kolonne": "kolonn", "kolonnen": "kolonn", "kolonnene": "kolonn", "kom": "kom", "komande": "kom", "kombinasjon": "kombinasjon", "kombinasjonar": "kombinasjon", "kombinasjonen": "kombinasjon", "kombinasjonsarealene": "kombinasjonsareal", "kombinere": "kombiner", "kombineres": "kombiner", "kombinert": "kombiner", "kombinerte": "kombiner", "kombiskip": "kombiskip", "kombiterminal": "kombiterminal", "kombitransporter": "kombitransport", "kome": "kom", "komen": "kom", "komite": "komit", "komiteen": "komite", "komiteens": "komite", "komitemedlemmene": "komitemedlemm", "komiteutgreiingar": "komiteutgreiing", "kommandittselskaper": "kommandittselskap", "komme": "komm", "kommentarer": "kommentar", "kommentert": "kommenter", "kommenterte": "kommenter", "kommer": "komm", "kommersiell": "kommersiell", "kommersielle": "kommersiell", "kommet": "komm", "kommisjonen": "kommisjon", "kommisjonens": "kommisjon", "kommunal": "kommunal", "kommunaldepartementet": "kommunaldepartement", "kommunale": "kommunal", "kommunalrettslige": "kommunalretts", "kommunalt": "kommunalt", "kommunane": "kommun", "kommunar": "kommun", "kommune": "kommun", "kommuneadministrasjon": "kommuneadministrasjon", "kommunedelplan": "kommunedelplan", "kommunedelplanen": "kommunedelplan", "kommunegrensen": "kommunegrens", "kommunegrensene": "kommunegrens", "kommunekassen": "kommunekass", "kommunelov": "kommun", "kommuneloven": "kommun", "kommunelovens": "kommun", "kommunen": "kommun", "kommunene": "kommun", "kommunenes": "kommun", "kommunens": "kommun", "kommuneplan": "kommuneplan", "kommuneplanen": "kommuneplan", "kommuneplanens": "kommuneplan", "kommuner": "kommun", "kommuners": "kommun", "kommunes": "kommun", "kommunestyre": "kommunestyr", "kommunestyrene": "kommunestyr", "kommunestyrer": "kommunestyr", "kommunestyret": "kommunestyr", "kommunestyrets": "kommunestyr", "kommunevalgperioden": "kommunevalgperiod", "kommunikasjon": "kommunikasjon", "kommunikasjonar": "kommunikasjon", "kommunikasjonen": "kommunikasjon", "kommunikasjonsforhold": "kommunikasjonsforhold", "komne": "komn", "kompensasjon": "kompensasjon", "kompensasjonen": "kompensasjon", "kompensasjonsgrad": "kompensasjonsgrad", "kompensasjonsgraden": "kompensasjonsgrad", "kompensasjonsgrader": "kompensasjonsgrad", "kompensasjonsnivå": "kompensasjonsnivå", "kompensasjonsnivåene": "kompensasjonsnivå", "kompensasjonsnivåer": "kompensasjonsnivå", "kompensasjonsnivået": "kompensasjonsnivå", "kompensere": "kompenser", "kompenserer": "kompenser", "kompensert": "kompenser", "kompetanse": "kompetans", "kompetansen": "kompetans", "kompetansepersoner": "kompetanseperson", "kompetansestrid": "kompetansestrid", "kompleksitet": "kompleksit", "kompletteringsregel": "kompletteringsregel", "kompletteringsregelen": "kompletteringsregel", "komplikasjonar": "komplikasjon", "komplikasjoner": "komplikasjon", "komplisere": "kompliser", "komplisert": "kompliser", "kompliserte": "kompliser", "komponent": "komponent", "komponenter": "komponent", "komprimert": "komprimer", "kompromiss": "kompromiss", "kon": "kon", "kona": "kon", "kone": "kon", "koneløs": "koneløs", "konen": "kon", "koner": "kon", "konflikt": "konflikt", "konfliktar": "konflikt", "konflikten": "konflikt", "konfliktene": "konflikt", "konflikter": "konflikt", "konfliktforhold": "konfliktforhold", "konfliktfylt": "konfliktfylt", "konfliktområdet": "konfliktområd", "konfliktsituasjonar": "konfliktsituasjon", "konfliktsituasjoner": "konfliktsituasjon", "kong": "kong", "konge": "kong", "kongelig": "kong", "kongen": "kong", "kongens": "kong", "konger": "kong", "kongsgården": "kongsgård", "kongshavn": "kongshavn", "kongssønnene": "kongssønn", "konjunkturavhengig": "konjunkturavheng", "konjunkturer": "konjunktur", "konjunktursvingningene": "konjunktursvingning", "konkluderer": "konkluder", "konkluderte": "konkluder", "konklusjon": "konklusjon", "konklusjonen": "konklusjon", "konklusjonene": "konklusjon", "konklusjoner": "konklusjon", "konklusjonskapitlet": "konklusjonskapitl", "konkret": "konkr", "konkrete": "konkret", "konkretiserer": "konkretiser", "konkretisering": "konkretisering", "konkretisert": "konkretiser", "konkurransdyktige": "konkurransdykt", "konkurranse": "konkurrans", "konkurransebegrensende": "konkurransebegrens", "konkurransedyktig": "konkurransedykt", "konkurransedyktige": "konkurransedykt", "konkurransedyktighet": "konkurransedykt", "konkurranseevne": "konkurranseevn", "konkurransefaktor": "konkurransefaktor", "konkurranseflatene": "konkurranseflat", "konkurranseflater": "konkurranseflat", "konkurranseforhold": "konkurranseforhold", "konkurransefortrinn": "konkurransefortrinn", "konkurransehemmende": "konkurransehemm", "konkurransekraft": "konkurransekraft", "konkurransekriteriene": "konkurransekriteri", "konkurranselova": "konkurrans", "konkurranseloven": "konkurrans", "konkurranselovens": "konkurrans", "konkurranselovgivning": "konkurranselovgivning", "konkurranselovgivningen": "konkurranselovgivning", "konkurranselovgjeving": "konkurranselovgjeving", "konkurranselovgjevinga": "konkurranselovgjeving", "konkurransemarked": "konkurransemarked", "konkurransemessige": "konkurransemess", "konkurransen": "konkurrans", "konkurranseorienterte": "konkurranseorienter", "konkurranseparameter": "konkurranseparamet", "konkurranseparametre": "konkurranseparametr", "konkurranseregler": "konkurranseregl", "konkurranserettslege": "konkurranseretts", "konkurransesituasjonen": "konkurransesituasjon", "konkurranseskadeleg": "konkurranseskad", "konkurransetilsynet": "konkurransetilsyn", "konkurranseutsatt": "konkurranseutsatt", "konkurranseutsatte": "konkurranseutsatt", "konkurransevilkår": "konkurransevilkår", "konkurransevilkåra": "konkurransevilkår", "konkurransevridende": "konkurransevrid", "konkurransvridende": "konkurransvrid", "konkurrent": "konkurrent", "konkurrentar": "konkurrent", "konkurrerande": "konkurrer", "konkurrere": "konkurrer", "konkurrerende": "konkurrer", "konkurrerer": "konkurrer", "konkurrert": "konkurrer", "konkurs": "konkur", "konkursar": "konkurs", "konkursbehandling": "konkursbehandling", "konkursbu": "konkursbu", "konkursbuet": "konkursbu", "konkursen": "konkurs", "konkurskarantene": "konkurskarant", "konkurslova": "konkur", "konkursopning": "konkursopning", "konkursopninga": "konkursopning", "konkursskyldnar": "konkursskyldn", "konkurstilfelle": "konkurstilfell", "konr": "konr", "konsekvens": "konsekv", "konsekvensane": "konsekvens", "konsekvensar": "konsekvens", "konsekvensberegningene": "konsekvensberegning", "konsekvensberegninger": "konsekvensberegning", "konsekvensen": "konsekvens", "konsekvensene": "konsekvens", "konsekvenser": "konsekvens", "konsekvensutredes": "konsekvensutr", "konsekvensutredning": "konsekvensutredning", "konsekvensutredningen": "konsekvensutredning", "konsekvensutredninger": "konsekvensutredning", "konsekvensutredningsforskriftens": "konsekvensutredningsforskrift", "konsekvensutredningsmeldingen": "konsekvensutredningsmelding", "konsekvensutredningsreglene": "konsekvensutredningsregl", "konsekvensvurderingene": "konsekvensvurdering", "konsekvensvurderinger": "konsekvensvurdering", "konsentrasjon": "konsentrasjon", "konsentrasjonen": "konsentrasjon", "konsentrerast": "konsentrer", "konsentrere": "konsentrer", "konsentrerer": "konsentrer", "konsentrert": "konsentrer", "konsentrerte": "konsentrer", "konsern": "konsern", "konsernbegrepet": "konsernbegrep", "konserner": "konsern", "konsernet": "konsern", "konsernets": "konsern", "konsernforetak": "konsernforetak", "konsernforhold": "konsernforhold", "konsernforholdet": "konsernforhold", "konserninterne": "konsernintern", "konsernkontoordningar": "konsernkontoordning", "konsernlignende": "konsernlign", "konsernmodell": "konsernmodell", "konsernmodellen": "konsernmodell", "konservativt": "konservativ", "konsesjon": "konsesjon", "konsesjonstildeling": "konsesjonstildeling", "konsistente": "konsistent", "konsolidering": "konsolidering", "konstant": "konstant", "konstatere": "konstater", "konstaterer": "konstater", "konstatert": "konstater", "konstituerande": "konstituer", "konstruerer": "konstruer", "konstruert": "konstruer", "konstruksjon": "konstruksjon", "konstruksjonar": "konstruksjon", "konstruksjonsløsninger": "konstruksjonsløsning", "konsulent": "konsulent", "konsulentar": "konsulent", "konsulenter": "konsulent", "konsulentrolle": "konsulentroll", "konsulenttenester": "konsulenttenest", "konsulenttjenester": "konsulenttjenest", "konsum": "konsum", "konsumenter": "konsument", "konsumprisindeksen": "konsumprisindeks", "konsumvarer": "konsumvar", "kontakt": "kontakt", "kontakten": "kontakt", "kontaktutvalget": "kontaktutvalg", "kontant": "kontant", "kontantar": "kontant", "kontantbetalinga": "kontantbetaling", "kontanter": "kontant", "kontantstrømanalyse": "kontantstrømanalys", "kontantvederlag": "kontantvederlag", "kontantverdi": "kontantverdi", "konti": "konti", "kontinent": "kontinent", "kontinentale": "kontinental", "kontinentet": "kontinent", "kontinuerleg": "kontinuer", "kontinuerlig": "kontinuer", "kontinuitet": "kontinuit", "kontinuiteten": "kontinuitet", "konto": "konto", "kontoen": "konto", "kontoens": "konto", "kontoer": "konto", "kontoføring": "kontoføring", "kontohaver": "kontohav", "kontohaveren": "kontohaver", "kontohold": "kontohold", "kontorbedrifter": "kontorbedrift", "kontorbygg": "kontorbygg", "kontorer": "kontor", "kontorfellesskapet": "kontorfellesskap", "kontorlokaler": "kontorlokal", "kontorstifta": "kontorstift", "kontorstiftast": "kontorstift", "kontorstifte": "kontorstift", "kontorstifting": "kontorstifting", "kontoutskrift": "kontoutskrift", "kontoutskriften": "kontoutskrift", "kontoutskrifter": "kontoutskrift", "kontrakt": "kontrakt", "kontrakten": "kontrakt", "kontraktens": "kontrakt", "kontrakter": "kontrakt", "kontrakters": "kontrakt", "kontraktsfestede": "kontraktsfest", "kontraktsforhold": "kontraktsforhold", "kontraktsforpliktelser": "kontraktsforplikt", "kontraktsinngåelse": "kontraktsinngå", "kontraktslast": "kontraktsl", "kontraktslovene": "kontrakt", "kontraktsplikter": "kontraktsplikt", "kontraktsreglar": "kontraktsregl", "kontraktsretten": "kontraktsrett", "kontraktsrettsleg": "kontraktsretts", "kontroll": "kontroll", "kontrollansvar": "kontrollansv", "kontrollansvaret": "kontrollansvar", "kontrollansvarsregelen": "kontrollansvarsregel", "kontrollansvarsreglane": "kontrollansvarsregl", "kontrollen": "kontroll", "kontrollerast": "kontroller", "kontrollere": "kontroller", "kontrollerer": "kontroller", "kontrolleres": "kontroller", "kontrollert": "kontroller", "kontrollerte": "kontroller", "kontrollhensyn": "kontrollhensyn", "kontrollinstanser": "kontrollinstans", "kontrolloppgaver": "kontrolloppgav", "kontrollsystemer": "kontrollsystem", "kontrolltiltak": "kontrolltiltak", "konturene": "kontur", "konvensjonell": "konvensjonell", "konvensjonelle": "konvensjonell", "konvensjonelt": "konvensjonelt", "konvertere": "konverter", "konverteres": "konverter", "konvertering": "konvertering", "konverteringen": "konvertering", "konverteringstidspunktet": "konverteringstidspunkt", "kooperasjon": "kooperasjon", "kooperasjonen": "kooperasjon", "kooperativ": "kooperativ", "kooperativa": "kooperativ", "kooperative": "kooperativ", "kooperativet": "kooperativ", "kooperativt": "kooperativ", "koordinere": "koordiner", "koordinerer": "koordiner", "koordinering": "koordinering", "koordinerings": "koordinering", "koordinert": "koordiner", "kopi": "kopi", "kopiar": "kopi", "kopla": "kopl", "kor": "kor", "kork": "kork", "korkje": "korkj", "korleis": "korleis", "korn": "korn", "kornsjø": "kornsjø", "kornåkrene": "kornåkr", "korreksjon": "korreksjon", "korrekt": "korrekt", "korrekte": "korrekt", "korrelert": "korreler", "korrespondanse": "korrespondans", "korridor": "korridor", "korridorene": "korridor", "korridorer": "korridor", "korridorgruppa": "korridorgrupp", "korridorgruppen": "korridorgrupp", "korridortenkning": "korridortenkning", "korrigering": "korrigering", "korrigert": "korriger", "kort": "kort", "kortare": "kortar", "kortast": "kort", "korte": "kort", "kortere": "korter", "kortest": "kortest", "korteste": "kortest", "kortfattet": "kortfatt", "kortform": "kortform", "korthet": "kort", "kortsiden": "kortsid", "kortsiktige": "kortsikt", "kortvarig": "kortvar", "kosnadseffektive": "kosnadseffektiv", "kost": "kost", "kostar": "kost", "kostbar": "kostb", "kostbare": "kostbar", "kostbarhetene": "kostbar", "kostbarheter": "kostbar", "koste": "kost", "kostelig": "kost", "koster": "kost", "kostn": "kostn", "kostnad": "kostnad", "kostnaden": "kostnad", "kostnadene": "kostnad", "kostnader": "kostnad", "kostnadsauke": "kostnadsauk", "kostnadsbaserte": "kostnadsbaser", "kostnadseffekter": "kostnadseffekt", "kostnadseffektiv": "kostnadseffektiv", "kostnadseffektive": "kostnadseffektiv", "kostnadseffektivitet": "kostnadseffektivit", "kostnadsgevinster": "kostnadsgevinst", "kostnadshensyn": "kostnadshensyn", "kostnadskontroll": "kostnadskontroll", "kostnadskrevende": "kostnadskrev", "kostnadskrevjande": "kostnadskrevj", "kostnadsmessig": "kostnadsmess", "kostnadsmessige": "kostnadsmess", "kostnadsnivå": "kostnadsnivå", "kostnadsnivået": "kostnadsnivå", "kostnadsoptimale": "kostnadsoptimal", "kostnadsoverslag": "kostnadsoverslag", "kostnadsoverslaget": "kostnadsoverslag", "kostnadssiden": "kostnadssid", "kostnadstallene": "kostnadstall", "kostnadsøkningen": "kostnadsøkning", "kr": "kr", "krabbe": "krabb", "krabber": "krabb", "kraft": "kraft", "kraften": "kraft", "kraftig": "kraft", "kraftige": "kraft", "kraftigst": "kraftigst", "kraftkjøp": "kraftkjøp", "kraftlag": "kraftlag", "krakk": "krakk", "kran": "kran", "kraner": "kran", "krangel": "krangel", "krangle": "krangl", "krangler": "krangl", "kranhåndtering": "kranhåndtering", "kranser": "krans", "kransystemer": "kransystem", "kratt": "kratt", "krattet": "kratt", "krattskog": "krattskog", "krav": "krav", "krava": "krav", "kravde": "kravd", "kravene": "krav", "kravet": "krav", "kravsmål": "kravsmål", "kravsmålet": "kravsmål", "kravstor": "kravstor", "kravt": "kravt", "krediterast": "krediter", "kreditor": "kreditor", "kreditorane": "kreditor", "kreditorar": "kreditor", "kreditoren": "kreditor", "kreditorer": "kreditor", "kreditorinteressene": "kreditorinteress", "kreditors": "kreditor", "kreditorsvik": "kreditorsvik", "kreditorvarsel": "kreditorvarsel", "kreditorvarselet": "kreditorvarsel", "kreditt": "kreditt", "kredittavtaler": "kredittavtal", "kredittforholdet": "kredittforhold", "kredittgjevinga": "kredittgjeving", "kredittilgangen": "kredittilgang", "kredittilsynet": "kredittilsyn", "kredittilsynets": "kredittilsyn", "kredittilsynsloven": "kredittilsyn", "kredittinstitusjon": "kredittinstitusjon", "kredittinstitusjoner": "kredittinstitusjon", "kredittstellet": "kredittstell", "kredittverdig": "kredittverd", "kreftene": "kreft", "krefter": "kreft", "krek": "krek", "kremter": "kremt", "krets": "kret", "kretser": "krets", "krev": "krev", "kreve": "krev", "krevende": "krev", "krever": "krev", "kreves": "krev", "krevjast": "krevj", "krevje": "krevj", "krevst": "krevst", "krig": "krig", "krigen": "krig", "kriger": "krig", "krigere": "kriger", "krigerne": "krigern", "krigersk": "krigersk", "krigstog": "krigstog", "krigstrommene": "krigstromm", "kring": "kring", "krins": "krin", "krinsar": "krins", "krinsen": "krins", "krisa": "kris", "kriser": "kris", "krisescenarier": "krisescenari", "krisesituasjonar": "krisesituasjon", "krisesituasjoner": "krisesituasjon", "kriseåra": "kriseår", "kristeleg": "krist", "kristelig": "krist", "kristensen": "kristens", "kristiansand": "kristiansand", "kristiansund": "kristiansund", "kristin": "kristin", "kriteriene": "kriteri", "kriterier": "kriteri", "kriteriet": "kriteri", "kriterium": "kriterium", "kritikk": "kritikk", "kritiserast": "kritiser", "kritisert": "kritiser", "kritisk": "kritisk", "kritiske": "kritisk", "kroer": "kroer", "krok": "krok", "kroken": "krok", "kroker": "krok", "krokrygget": "krokrygg", "kronebeløp": "kronebeløp", "kronen": "kron", "kroner": "kron", "kroneverdien": "kroneverdi", "krongle": "krongl", "kropp": "kropp", "kroppen": "kropp", "kroppene": "kropp", "kroppsløse": "kroppsløs", "krummer": "krumm", "krus": "krus", "kruset": "krus", "kryp": "kryp", "krype": "kryp", "kryper": "kryp", "kryr": "kryr", "kryss": "kryss", "kryssende": "kryss", "krysser": "kryss", "krysset": "kryss", "kryssområder": "kryssområd", "kråke": "kråk", "kråkes": "kråk", "krøker": "krøk", "krøp": "krøp", "ku": "ku", "kua": "kua", "kuer": "kuer", "kulde": "kuld", "kulden": "kuld", "kull": "kull", "kulltangenbroen": "kulltangenbro", "kullterminal": "kullterminal", "kulturelle": "kulturell", "kulturlandskap": "kulturlandskap", "kulturminner": "kulturminn", "kun": "kun", "kundane": "kund", "kundar": "kund", "kunde": "kund", "kundeforhold": "kundeforhold", "kundegrupper": "kundegrupp", "kundehensyn": "kundehensyn", "kundemarkedet": "kundemarked", "kunden": "kund", "kundene": "kund", "kundens": "kund", "kunder": "kund", "kune": "kun", "kunna": "kunn", "kunne": "kunn", "kunnet": "kunn", "kunngjerast": "kunngjer", "kunngjere": "kunngjer", "kunngjering": "kunngjering", "kunngjeringa": "kunngjering", "kunngjeringar": "kunngjering", "kunngjeringsmåten": "kunngjeringsmåt", "kunnskap": "kunnskap", "kunnskapar": "kunnskap", "kunnskaper": "kunnskap", "kunnskapsoppbygging": "kunnskapsoppbygging", "kunnskapstørst": "kunnskapstørst", "kunst": "kunst", "kunsten": "kunst", "kunster": "kunst", "kuppel": "kuppel", "kurant": "kurant", "kurs": "kur", "kursen": "kurs", "kursivering": "kursivering", "kursreguleringsfond": "kursreguleringsfond", "kurvatur": "kurvatur", "kurve": "kurv", "kutter": "kutt", "kuttes": "kutt", "kva": "kva", "kvalifikasjonar": "kvalifikasjon", "kvalifisert": "kvalifiser", "kvalifiserte": "kvalifiser", "kvalitativ": "kvalitativ", "kvalitativt": "kvalitativ", "kvalitet": "kvalit", "kvalitetar": "kvalitet", "kvaliteten": "kvalitet", "kvalitetsaspektet": "kvalitetsaspekt", "kvalitetskontroll": "kvalitetskontroll", "kvalitetssikring": "kvalitetssikring", "kvalm": "kvalm", "kvalt": "kvalt", "kvanta": "kvant", "kvar": "kvar", "kvarande": "kvar", "kvarandre": "kvarandr", "kvardagane": "kvardag", "kvardagar": "kvardag", "kvart": "kvart", "kvartalsvis": "kvartalsvis", "kvaser": "kvas", "kvasers": "kvas", "kvasse": "kvass", "kveder": "kved", "kveile": "kveil", "kveiler": "kveil", "kveld": "kveld", "kvelden": "kveld", "kvelds": "kveld", "kveldsmat": "kveldsmat", "kveldsmaten": "kveldsmat", "kveles": "kvel", "kven": "kven", "kverke": "kverk", "kvern": "kvern", "kverna": "kvern", "kvernstein": "kvernstein", "kvernsteinene": "kvernstein", "kvier": "kvier", "kvikk": "kvikk", "kvikt": "kvikt", "kvile": "kvil", "kviler": "kvil", "kvinne": "kvinn", "kvinneklær": "kvinneklær", "kvinnelig": "kvinn", "kvinnelige": "kvinn", "kvinnen": "kvinn", "kvinnene": "kvinn", "kvinnens": "kvinn", "kvinner": "kvinn", "kvinners": "kvinn", "kvinnfolk": "kvinnfolk", "kvist": "kvist", "kvisten": "kvist", "kvister": "kvist", "kvitrer": "kvitr", "kvitt": "kvitt", "kvitta": "kvitt", "kvittar": "kvitt", "kvitte": "kvitt", "kvitteringer": "kvittering", "kvm": "kvm", "kvoten": "kvot", "kyllingene": "kylling", "kyllinger": "kylling", "kyndig": "kynd", "kyndige": "kynd", "kyr": "kyr", "kyrkje": "kyrkj", "kyss": "kyss", "kysse": "kyss", "kysser": "kyss", "kyst": "kyst", "kystdirektoratet": "kystdirektorat", "kysten": "kyst", "kystkommuner": "kystkommun", "kystsonen": "kystson", "kystsoneplan": "kystsoneplan", "kystterminal": "kystterminal", "kåre": "kår", "kåt": "kåt", "kåte": "kåt", "kåtere": "kåter", "kåteste": "kåtest", "kø": "kø", "københavn": "københavn", "køen": "køen", "køer": "køer", "køsystem": "køsystem", "l": "l", "la": "la", "labbene": "labb", "laboratorie": "laboratori", "lag": "lag", "laga": "lag", "lagar": "lag", "lagast": "lag", "lagd": "lagd", "lagde": "lagd", "lage": "lag", "lagen": "lag", "lagene": "lag", "lager": "lag", "lagerbedrifter": "lagerbedrift", "lagerbygninger": "lagerbygning", "lagerfunksjoner": "lagerfunksjon", "lagerhold": "lagerhold", "lagerholdsfunksjoner": "lagerholdsfunksjon", "lagersted": "lagersted", "lagervirksomheter": "lagervirksom", "lages": "lag", "laget": "lag", "lagetkrav": "lagetkrav", "lagets": "lag", "lagmannsrett": "lagmannsrett", "lagmannsretten": "lagmannsrett", "lagre": "lagr", "lagrene": "lagr", "lagring": "lagring", "lagsdrifta": "lagsdrift", "lagsforholdet": "lagsforhold", "lagsføremålet": "lagsføremål", "lagskontoret": "lagskontor", "lagsmidlane": "lagsmidl", "lagsorgan": "lagsorgan", "lagsorgana": "lagsorgan", "lagsskyldnadene": "lagsskyldnad", "lagt": "lagt", "lagtinget": "lagting", "laks": "laks", "laksens": "laks", "laksestammen": "laksestamm", "lam": "lam", "lammekjøtt": "lammekjøtt", "lammeskinnslue": "lammeskinnslu", "lampe": "lamp", "lan": "lan", "land": "land", "landa": "land", "landarealer": "landareal", "landarealet": "landareal", "landbasert": "landbaser", "landbaserte": "landbaser", "landbruk": "landbruk", "landbruket": "landbruk", "landbruksavtalar": "landbruksavtal", "landbrukssamvirket": "landbrukssamvirk", "landbrukssamvirkets": "landbrukssamvirk", "landdistribusjon": "landdistribusjon", "lande": "land", "landegrensene": "landegrens", "landene": "land", "lander": "land", "landet": "land", "landets": "land", "landeveg": "landeveg", "landfast": "landf", "landfordeling": "landfordeling", "landområde": "landområd", "lands": "land", "landsbygda": "landsbygd", "landsdekkjande": "landsdekkj", "landsdelene": "landsdel", "landsdeler": "landsdel", "landsforbund": "landsforbund", "landsforening": "landsforening", "landsgjennomsnittet": "landsgjennomsnitt", "landsiden": "landsid", "landskapet": "landskap", "landskillet": "landskill", "landsorganisasjonen": "landsorganisasjon", "landspensjonskasse": "landspensjonskass", "landssamanslutning": "landssamanslutning", "landssamband": "landssamband", "landsting": "landsting", "landstotalen": "landstotal", "landtransport": "landtransport", "landtransportdistanse": "landtransportdistans", "landtransporten": "landtransport", "landvegs": "landveg", "landverts": "landvert", "lang": "lang", "langbent": "langbent", "langbordene": "langbord", "langbordet": "langbord", "lange": "lang", "langesund": "langesund", "langesundbukta": "langesundbukt", "langesundsfjorden": "langesundsfjord", "langesundterminalen": "langesundterminal", "langobarder": "langobard", "langs": "lang", "langsetter": "langsett", "langsiktig": "langsikt", "langsiktige": "langsikt", "langskjegger": "langskjegg", "langsomme": "langsomm", "langsommere": "langsommer", "langsomste": "langsomst", "langsomt": "langsomt", "langt": "langt", "langtidsplaner": "langtidsplan", "langtidsprogram": "langtidsprogram", "langtidsprogramma": "langtidsprogramm", "langtidsprogrammet": "langtidsprogramm", "langtidsprograms": "langtidsprogram", "langtur": "langtur", "langvarig": "langvar", "langvarige": "langvar", "langveggen": "langvegg", "langveggene": "langvegg", "lansert": "lanser", "lanterne": "lantern", "lapper": "lapp", "lappeteppe": "lappetepp", "lar": "lar", "larm": "larm", "larmen": "larm", "larvik": "larvik", "larviksfjorden": "larviksfjord", "lass": "lass", "lassevis": "lassevis", "last": "last", "lastbærer": "lastbær", "laste": "last", "lastebil": "lastebil", "lastebilen": "lastebil", "lastebiler": "lastebil", "lastebiltransport": "lastebiltransport", "lastebærer": "lastebær", "lastebærere": "lastebærer", "lasteeiere": "lasteeier", "lasteevne": "lasteevn", "lasten": "last", "lastens": "last", "laster": "last", "lasterommet": "lasteromm", "lasteskip": "lasteskip", "lastesystemer": "lastesystem", "lastet": "last", "lasteutstyr": "lasteutstyr", "lastevekt": "lastevekt", "lastevolum": "lastevolum", "lasting": "lasting", "lat": "lat", "late": "lat", "later": "lat", "latt": "latt", "latter": "latt", "latteren": "latter", "laurdag": "laurdag", "laurdagar": "laurdag", "lausøyre": "lausøyr", "lausøyreregisteret": "lausøyreregister", "lausøyreting": "lausøyreting", "lauvøy": "lauvøy", "lauvøysson": "lauvøysson", "lav": "lav", "lavavkastningsperiode": "lavavkastningsperiod", "lave": "lav", "lavere": "laver", "lavest": "lavest", "laveste": "lavest", "lavkostnadsland": "lavkostnadsland", "lavori": "lavori", "lavoro": "lavoro", "lavt": "lavt", "lavtlønte": "lavtlønt", "le": "le", "leca": "lec", "ledd": "ledd", "leddet": "ledd", "ledds": "ledd", "lede": "led", "ledelse": "led", "ledelsen": "led", "leden": "led", "ledende": "led", "ledene": "led", "leder": "led", "ledervervet": "lederverv", "ledes": "led", "ledetid": "ledetid", "ledetiden": "ledetid", "ledig": "led", "ledige": "led", "leet": "leet", "lega": "leg", "legacoop": "legacoop", "legaldefinisjon": "legaldefinisjon", "legalpant": "legalpant", "legalpanterett": "legalpanterett", "legalpanteretten": "legalpanterett", "lege": "leg", "legedrikk": "legedrikk", "legekunst": "legekunst", "legende": "leg", "legesenter": "legesent", "legg": "legg", "legge": "legg", "legger": "legg", "legges": "legg", "leggjast": "leggj", "leggje": "leggj", "legitimiteten": "legitimitet", "legning": "legning", "lei": "lei", "leia": "leia", "leiar": "leiar", "leiarar": "leiar", "leiaren": "leiar", "leiast": "leiast", "leid": "leid", "leidd": "leidd", "leidningar": "leidning", "leie": "leie", "leieavtaler": "leieavtal", "leieforhold": "leieforhold", "leiegårder": "leiegård", "leieinntekter": "leieinntekt", "leier": "leier", "leieren": "leier", "leierett": "leierett", "leieretten": "leierett", "leiga": "leig", "leigar": "leig", "leigarane": "leigar", "leigarar": "leigar", "leigaren": "leigar", "leigarens": "leigar", "leigast": "leig", "leigde": "leigd", "leige": "leig", "leigeavtalane": "leigeavtal", "leigeavtalar": "leigeavtal", "leigeavtale": "leigeavtal", "leigeavtalen": "leigeavtal", "leigebetaling": "leigebetaling", "leigebuarorganisasjonane": "leigebuarorganisasjon", "leigebuarrørsla": "leigebuarrørsl", "leigebustad": "leigebustad", "leigebustaden": "leigebustad", "leigebustader": "leigebustad", "leigeforhold": "leigeforhold", "leigeforholdet": "leigeforhold", "leigegard": "leigegard", "leigegardslova": "leigegard", "leigeinntekter": "leigeinntekt", "leigekonstruksjonen": "leigekonstruksjon", "leigekontraktar": "leigekontrakt", "leigemodellen": "leigemodell", "leigenivået": "leigenivå", "leigeobjektet": "leigeobjekt", "leiger": "leig", "leigereguleringa": "leigeregulering", "leigeregulert": "leigereguler", "leigerett": "leigerett", "leigerettane": "leigerett", "leigerettar": "leigerett", "leigeretten": "leigerett", "leigt": "leigt", "leiing": "leiing", "leiinga": "leiing", "leikeplass": "leikeplass", "leikeplassar": "leikeplass", "leir": "leir", "leire": "leir", "leiren": "leir", "leirkjempen": "leirkjemp", "leirtrollet": "leirtroll", "leit": "leit", "lek": "lek", "leke": "lek", "leken": "lek", "lekent": "lekent", "leker": "lek", "lekne": "lekn", "lekte": "lekt", "lekter": "lekt", "lemlestede": "lemlest", "lempast": "lemp", "lempeligere": "lempeliger", "lemper": "lemp", "lempes": "lemp", "lemping": "lemping", "lempingsreglar": "lempingsregl", "lener": "len", "lengd": "lengd", "lengda": "lengd", "lengde": "lengd", "lengden": "lengd", "lenge": "leng", "lenger": "leng", "lenging": "lenging", "lengje": "lengj", "lengre": "lengr", "lengsel": "lengsel", "lengst": "lengst", "lengste": "lengst", "lengstefrist": "lengstefrist", "lengstetida": "lengstetid", "lengte": "lengt", "lengter": "lengt", "lengtet": "lengt", "lenke": "lenk", "lenken": "lenk", "lenkene": "lenk", "lenker": "lenk", "lenket": "lenk", "lensmannen": "lensmann", "lensmannsdistrikt": "lensmannsdistrikt", "leppene": "lepp", "ler": "ler", "lese": "les", "lesen": "les", "leser": "les", "leses": "les", "leske": "lesk", "let": "let", "lete": "let", "leter": "let", "lett": "lett", "lettar": "lett", "lettare": "lettar", "lettast": "lett", "lette": "lett", "letter": "lett", "lettere": "letter", "lettest": "lettest", "lettet": "lett", "levd": "levd", "levde": "levd", "leve": "lev", "levealder": "leveald", "levealderen": "levealder", "levedyktig": "levedykt", "leveform": "leveform", "levekår": "levekår", "levekårspolitikken": "levekårspolitikk", "levekårsundersøkelsen": "levekårsundersøk", "levelalder": "levelald", "leven": "lev", "levende": "lev", "levenet": "leven", "lever": "lev", "leverandørar": "leverandør", "leverandørens": "leverandør", "leverandører": "leverandør", "leveranser": "leverans", "leveransesikkerhet": "leveransesikker", "leverantorer": "leverantor", "leverast": "lever", "levere": "lever", "levereglene": "leveregl", "leveregler": "leveregl", "leverer": "lever", "leveres": "lever", "levering": "levering", "leveringens": "levering", "leveringer": "levering", "leveringskjeden": "leveringskjed", "leveringskrav": "leveringskrav", "leveringspålitelighet": "leveringspålit", "leveringsservice": "leveringsservic", "leveringstidspunkt": "leveringstidspunkt", "leveringsønsker": "leveringsønsk", "levert": "lever", "levesett": "levesett", "levet": "lev", "levetid": "levetid", "levetida": "levetid", "levetidkilde": "levetidkild", "lf": "lf", "li": "li", "lidd": "lidd", "lide": "lid", "lidelsen": "lid", "lidskjalv": "lidskjalv", "lidt": "lidt", "lier": "lier", "lierstranda": "lierstrand", "life": "lif", "lift": "lift", "ligg": "ligg", "ligge": "ligg", "liggende": "ligg", "ligger": "ligg", "ligget": "ligg", "liggetid": "liggetid", "liggetiden": "liggetid", "liggjande": "liggj", "liggje": "liggj", "light": "light", "ligne": "lign", "lignende": "lign", "ligner": "lign", "lignet": "lign", "ligning": "ligning", "ligningen": "ligning", "lignings": "ligning", "ligningsforhold": "ligningsforhold", "ligningsforvaltning": "ligningsforvaltning", "ligningsloven": "ligning", "ligningsmyndighetene": "ligningsmynd", "ligningsmyndighetenes": "ligningsmynd", "ligningsmyndigheter": "ligningsmynd", "ligningspraksis": "ligningspraksis", "ligningstekniske": "ligningsteknisk", "lik": "lik", "like": "lik", "likebehandles": "likebehandl", "likebehandling": "likebehandling", "likeins": "likein", "likeledes": "likel", "likemenn": "likemenn", "likene": "lik", "liker": "lik", "likestille": "likestill", "likestilles": "likestill", "likestilling": "likestilling", "likestillingshensyn": "likestillingshensyn", "likestillingsmessig": "likestillingsmess", "likestilt": "likestilt", "likestilte": "likestilt", "liket": "lik", "likevel": "likevel", "likeverdig": "likeverd", "likeverdige": "likeverd", "likhet": "lik", "likheter": "lik", "likhetskrav": "likhetskrav", "likhetsprinsipp": "likhetsprinsipp", "likhetsprinsippet": "likhetsprinsipp", "likhetsvurderinger": "likhetsvurdering", "liknande": "likn", "liknar": "likn", "likne": "likn", "likninga": "likning", "likningsstyresmaktene": "likningsstyresmakt", "likskap": "likskap", "likskapen": "likskap", "likt": "likt", "likte": "likt", "likvide": "likvid", "likvider": "likvid", "likviditet": "likvidit", "likviditeten": "likviditet", "likviditetsbehov": "likviditetsbehov", "likviditetsmessig": "likviditetsmess", "likviditetsproblemer": "likviditetsproblem", "likviditetsregnskap": "likviditetsregnskap", "lille": "lill", "lillebroren": "lillebror", "lilleholt": "lilleholt", "limited": "limited", "limt": "limt", "line": "lin", "linene": "lin", "liner": "lin", "lines": "lin", "lineær": "lineær", "lineære": "lineær", "lineært": "lineært", "linje": "linj", "linjefart": "linjefart", "linjefarten": "linjefart", "linjeføringen": "linjeføring", "linjegods": "linjegod", "linjene": "linj", "linjenes": "linj", "linjenettet": "linjenett", "linjeopplegg": "linjeopplegg", "linjer": "linj", "linjerederiene": "linjerederi", "linjerederienes": "linjerederi", "linjerederier": "linjerederi", "linjeskip": "linjeskip", "linjetilbud": "linjetilbud", "linjetrafikken": "linjetrafikk", "lintråd": "lintråd", "lir": "lir", "lirker": "lirk", "lisens": "lis", "list": "list", "lista": "list", "liste": "list", "lister": "list", "listet": "list", "listig": "list", "listverk": "listverk", "lit": "lit", "lite": "lit", "liten": "lit", "litt": "litt", "litteraturen": "litteratur", "litterære": "litterær", "liv": "liv", "live": "liv", "livet": "liv", "livets": "liv", "livgivende": "livgiv", "livrente": "livrent", "livrenteforsikring": "livrenteforsikring", "livrenteforsikringen": "livrenteforsikring", "livrenteforsikringer": "livrenteforsikring", "livrenteforskriften": "livrenteforskrift", "livrenten": "livrent", "livrenteordninger": "livrenteordning", "livrenteproduktene": "livrenteprodukt", "livrenter": "livrent", "livs": "liv", "livsarving": "livsarving", "livsfase": "livsfas", "livsforsikring": "livsforsikring", "livsforsikringar": "livsforsikring", "livsforsikringsavtalen": "livsforsikringsavtal", "livsforsikringsdirektiv": "livsforsikringsdirektiv", "livsforsikringsdirektivene": "livsforsikringsdirektiv", "livsforsikringspremie": "livsforsikringspremi", "livsforsikringsselskap": "livsforsikringsselskap", "livsforsikringsselskapa": "livsforsikringsselskap", "livsforsikringsselskapene": "livsforsikringsselskap", "livsforsikringsselskapenes": "livsforsikringsselskap", "livsforsikringsselskaper": "livsforsikringsselskap", "livsforsikringsselskapet": "livsforsikringsselskap", "livsforsikringsvirksomhet": "livsforsikringsvirksom", "livsinntekten": "livsinntekt", "livskvalitet": "livskvalit", "livslang": "livslang", "livslange": "livslang", "livsledsager": "livsledsag", "livsløpet": "livsløp", "livssituasjon": "livssituasjon", "livstørst": "livstørst", "livsvarig": "livsvar", "livsvarige": "livsvar", "livtrase": "livtras", "ljåene": "ljåen", "lo": "lo", "lock": "lock", "lodne": "lodn", "logisk": "logisk", "logistikk": "logistikk", "logistikkbedrifter": "logistikkbedrift", "logistikkfunksjonene": "logistikkfunksjon", "logistikkfunksjoner": "logistikkfunksjon", "logistikkkostnader": "logistikkkostnad", "logistikkløsning": "logistikkløsning", "logistikkløsninger": "logistikkløsning", "logistikksammenheng": "logistikksammenheng", "logistikktankegang": "logistikktankegang", "logistikkteminalene": "logistikkteminal", "logistikkterminalene": "logistikkterminal", "logistiske": "logistisk", "logrer": "logr", "lohavn": "lohavn", "lokal": "lokal", "lokale": "lokal", "lokalisere": "lokaliser", "lokaliseres": "lokaliser", "lokalisering": "lokalisering", "lokaliseringen": "lokalisering", "lokaliseringsmønsteret": "lokaliseringsmønster", "lokaliseringspunkt": "lokaliseringspunkt", "lokaliseringsspørsmål": "lokaliseringsspørsmål", "lokaliseringsvalg": "lokaliseringsvalg", "lokaliseringsvurderingen": "lokaliseringsvurdering", "lokalisert": "lokaliser", "lokalområder": "lokalområd", "lokalpolitiske": "lokalpolitisk", "lokalsamfunn": "lokalsamfunn", "lokalsamfunnet": "lokalsamfunn", "lokalt": "lokalt", "lokaltrafikk": "lokaltrafikk", "lokaltrafikken": "lokaltrafikk", "loke": "lok", "loker": "lok", "lokes": "lok", "lokk": "lokk", "lokke": "lokk", "lokker": "lokk", "lokket": "lokk", "lombardia": "lombardi", "loneskatt": "loneskatt", "loppe": "lopp", "loran": "loran", "los": "los", "losbordingsfelt": "losbordingsfelt", "losgebyrene": "losgebyr", "losing": "losing", "losplikten": "losplikt", "loss": "loss", "losse": "loss", "lossearbeider": "lossearbeid", "losses": "loss", "lossesystemet": "lossesystem", "losseutstyr": "losseutstyr", "lossing": "lossing", "lostjenesten": "lostjenest", "losvirksomhet": "losvirksom", "lot": "lot", "lov": "lov", "lova": "lov", "lovarbeid": "lovarbeid", "lovarbeidet": "lovarbeid", "lovbestemmelse": "lovbestemm", "lovbestemmelsene": "lovbestemm", "lovbestemt": "lovbestemt", "lovbestemte": "lovbestemt", "love": "lov", "loven": "lov", "lovendring": "lovendring", "lovendringar": "lovendring", "lovendringen": "lovendring", "lovendringene": "lovendring", "lovendringenes": "lovendring", "lovene": "lov", "lovens": "lov", "lover": "lov", "lovet": "lov", "lovfastsett": "lovfastsett", "lovfastsette": "lovfastsett", "lovfesta": "lovfest", "lovfestast": "lovfest", "lovfeste": "lovfest", "lovfestede": "lovfest", "lovfestes": "lovfest", "lovfestet": "lovfest", "lovfesting": "lovfesting", "lovforslaget": "lovforslag", "lovforslagets": "lovforslag", "lovføresegn": "lovføresegn", "lovføresegnene": "lovføresegn", "lovgivingen": "lovgiving", "lovgivning": "lovgivning", "lovgivningen": "lovgivning", "lovgivningskompetanse": "lovgivningskompetans", "lovgjevaren": "lovgjevar", "lovgjevarens": "lovgjevar", "lovgjeving": "lovgjeving", "lovgjevinga": "lovgjeving", "lovgrunnlag": "lovgrunnlag", "lovheimel": "lovheimel", "lovleg": "lov", "lovlege": "lov", "lovlig": "lov", "lovmotiv": "lovmotiv", "lovmotiva": "lovmotiv", "lovn": "lovn", "lovnad": "lovnad", "lovpåbod": "lovpåbod", "lovpålagt": "lovpålagt", "lovregelen": "lovregel", "lovreglar": "lovregl", "lovregler": "lovregl", "lovregulering": "lovregulering", "lovreguleringa": "lovregulering", "lovreguleringen": "lovregulering", "lovregulert": "lovreguler", "lovregulerte": "lovreguler", "lovstrukturelt": "lovstrukturelt", "lovstrukturutvalet": "lovstrukturutval", "lovteknisk": "lovteknisk", "lovtekst": "lovtekst", "lovtekstar": "lovtekst", "lovteksten": "lovtekst", "lovtekster": "lovtekst", "lovutkast": "lovutk", "lovutkastet": "lovutkast", "lovutkastets": "lovutkast", "lovutval": "lovutval", "lovval": "lovval", "lovverk": "lovverk", "lovverkene": "lovverk", "lovverket": "lovverk", "ltp": "ltp", "ltps": "ltps", "lue": "lue", "luft": "luft", "luften": "luft", "luftetur": "luftetur", "luftfart": "luftfart", "luftfartslova": "luftfart", "luftfartsverket": "luftfartsverk", "luftfarty": "luftfarty", "luftfartyregister": "luftfartyregist", "luftfartyregisteret": "luftfartyregister", "luftfartøyregister": "luftfartøyregist", "luftforurensing": "luftforurensing", "luftforurensning": "luftforurensning", "lufthavn": "lufthavn", "luker": "luk", "lukke": "lukk", "lukkede": "lukk", "lukker": "lukk", "lukket": "lukk", "lukt": "lukt", "lukter": "lukt", "lumske": "lumsk", "lunden": "lund", "lunder": "lund", "lur": "lur", "lure": "lur", "lurer": "lur", "lurest": "lurest", "lurt": "lurt", "lurte": "lurt", "lurvelevenet": "lurveleven", "lurvete": "lurvet", "lus": "lus", "luskende": "lusk", "lusker": "lusk", "lut": "lut", "lutast": "lut", "lutkast": "lutk", "lutryggete": "lutrygget", "ly": "ly", "lyd": "lyd", "lyde": "lyd", "lyden": "lyd", "lyder": "lyd", "lydløse": "lydløs", "lykke": "lykk", "lykkelig": "lykk", "lykten": "lykt", "lyn": "lyn", "lyner": "lyn", "lyng": "lyng", "lynget": "lyng", "lyngve": "lyngv", "lynsnart": "lynsnart", "lys": "lys", "lysaker": "lysak", "lysast": "lys", "lyse": "lys", "lysende": "lys", "lysene": "lys", "lyser": "lys", "lysere": "lyser", "lysest": "lysest", "lyset": "lys", "lysingsblad": "lysingsblad", "lyskryss": "lyskryss", "lysner": "lysn", "lyst": "lyst", "lyste": "lyst", "lysten": "lyst", "lyster": "lyst", "lystig": "lyst", "lystrer": "lystr", "lyt": "lyt", "lyte": "lyt", "lytt": "lytt", "lytte": "lytt", "lytter": "lytt", "lyttet": "lytt", "lyve": "lyv", "lyver": "lyv", "lå": "lå", "låg": "låg", "lågare": "lågar", "lågaste": "lågast", "låge": "låg", "lågen": "låg", "lågt": "lågt", "lån": "lån", "låna": "lån", "lånast": "lån", "låne": "lån", "lånebevis": "lånebevis", "lånefinansieringen": "lånefinansiering", "låneforhold": "låneforhold", "lånegarantier": "lånegaranti", "låneinnskot": "låneinnskot", "låneinnskota": "låneinnskot", "låneinstitusjonar": "låneinstitusjon", "lånekapital": "lånekapital", "lånemarkedet": "lånemarked", "låneopptak": "låneopptak", "låneopptaka": "låneopptak", "låner": "lån", "lånes": "lån", "lånet": "lån", "låneterminar": "lånetermin", "lånetidspunktet": "lånetidspunkt", "låneutmåling": "låneutmåling", "låneutmålinga": "låneutmåling", "lånevilkårene": "lånevilkår", "långjevarar": "långjevar", "lånt": "lånt", "låntakar": "låntak", "lånte": "lånt", "lår": "lår", "lårbenet": "lårben", "lårene": "lår", "låsen": "lås", "låser": "lås", "låst": "låst", "lær": "lær", "lærdom": "lærdom", "lære": "lær", "lærer": "lær", "læres": "lær", "lært": "lært", "lærte": "lært", "læsø": "læsø", "lød": "lød", "løfte": "løft", "løfter": "løft", "løftet": "løft", "løgn": "løgn", "løgnen": "løgn", "løgnene": "løgn", "løgner": "løgn", "løkkeberg": "løkkeberg", "løkker": "løkk", "løne": "løn", "lønn": "lønn", "lønnen": "lønn", "lønninger": "lønning", "lønns": "lønn", "lønnsbegrep": "lønnsbegrep", "lønnsbegrepet": "lønnsbegrep", "lønnsbeskatning": "lønnsbeskatning", "lønnsbrøk": "lønnsbrøk", "lønnsendring": "lønnsendring", "lønnsendringer": "lønnsendring", "lønnsevnen": "lønnsevn", "lønnsfordelingen": "lønnsfordeling", "lønnsforhandlinger": "lønnsforhandling", "lønnsforholdene": "lønnsforhold", "lønnsgrunnlag": "lønnsgrunnlag", "lønnsgrunnlaget": "lønnsgrunnlag", "lønnsgrupper": "lønnsgrupp", "lønnsinntekt": "lønnsinntekt", "lønnsintervall": "lønnsintervall", "lønnsintervallene": "lønnsintervall", "lønnsintervaller": "lønnsintervall", "lønnskostnad": "lønnskostnad", "lønnskostnader": "lønnskostnad", "lønnsmottakeren": "lønnsmottaker", "lønnsnivå": "lønnsnivå", "lønnsnivåene": "lønnsnivå", "lønnsnivåer": "lønnsnivå", "lønnsnivået": "lønnsnivå", "lønnsomhet": "lønnsom", "lønnsomheten": "lønnsom", "lønnsomt": "lønnsomt", "lønnsoppgaver": "lønnsoppgav", "lønnsstigning": "lønnsstigning", "lønnstaker": "lønnstak", "lønnstakere": "lønnstaker", "lønnstakerne": "lønnstakern", "lønnstillegg": "lønnstillegg", "lønnsutbetalinger": "lønnsutbetaling", "lønnsutvikling": "lønnsutvikling", "lønnsutviklingen": "lønnsutvikling", "lønnsvekst": "lønnsvekst", "lønnsveksten": "lønnsvekst", "lønnsøkning": "lønnsøkning", "lønnsøkningen": "lønnsøkning", "lønnsøkninger": "lønnsøkning", "lønsam": "lønsam", "lønsame": "lønsam", "lønsamt": "lønsamt", "lønsemd": "lønsemd", "lønte": "lønt", "løp": "løp", "løpe": "løp", "løpefart": "løpefart", "løpende": "løp", "løper": "løp", "løperen": "løper", "løpet": "løp", "løpetid": "løpetid", "løpetiden": "løpetid", "løpt": "løpt", "lørenskogområdet": "lørenskogområd", "løs": "løs", "løsbart": "løsbart", "løse": "løs", "løselig": "løs", "løsepenger": "løsepeng", "løser": "løs", "løses": "løs", "løsgods": "løsgod", "løsne": "løsn", "løsner": "løsn", "løsning": "løsning", "løsningen": "løsning", "løsningene": "løsning", "løsninger": "løsning", "løsningers": "løsning", "løst": "løst", "løv": "løv", "løvverket": "løvverk", "løysast": "løys", "løyse": "løys", "løysing": "løysing", "løysinga": "løysing", "løysingane": "løysing", "løysingar": "løysing", "løysingskravet": "løysingskrav", "løysingsrett": "løysingsrett", "løysingsrettar": "løysingsrett", "løysingsretten": "løysingsrett", "løysingsrettslova": "løysingsrett", "løysingssummen": "løysingssumm", "løysingsummen": "løysingsumm", "løyst": "løyst", "løyste": "løyst", "løyvde": "løyvd", "løyve": "løyv", "løyvet": "løyv", "løyvinga": "løyving", "m": "m", "madslien": "madsli", "maersk": "maersk", "magemålet": "magemål", "mager": "mag", "magi": "magi", "magisk": "magisk", "magiske": "magisk", "magne": "magn", "magnor": "magnor", "magnus": "magnus", "mai": "mai", "makeløs": "makeløs", "maken": "mak", "makeskifte": "makeskift", "makrobaserte": "makrobaser", "makroøkonomiske": "makroøkonomisk", "maksimal": "maksimal", "maksimale": "maksimal", "maksimalgrense": "maksimalgrens", "maksimalgrensen": "maksimalgrens", "maksimalgrenser": "maksimalgrens", "maksimalpris": "maksimalpris", "maksimalprisane": "maksimalpris", "maksimalprisar": "maksimalpris", "maksimalprisen": "maksimalpris", "maksimalprisregulering": "maksimalprisregulering", "maksimalprisreguleringa": "maksimalprisregulering", "maksimalsatsene": "maksimalsats", "maksimalsatser": "maksimalsats", "maksimalt": "maksimalt", "maksimalytelser": "maksimalyt", "maksimere": "maksimer", "maksimum": "maksimum", "makt": "makt", "makta": "makt", "maktar": "makt", "maktene": "makt", "makter": "makt", "maktmisbruk": "maktmisbruk", "mal": "mal", "malaren": "malar", "male": "mal", "malende": "mal", "maler": "mal", "mallmen": "mallm", "malm": "malm", "malstrøm": "malstrøm", "malt": "malt", "man": "man", "mandat": "mandat", "mandatet": "mandat", "mandatets": "mandat", "manen": "man", "mange": "mang", "mangehodete": "mangehodet", "mangel": "mangel", "mangelen": "mangel", "mangelfull": "mangelfull", "mangelfulle": "mangelfull", "mangelskrav": "mangelskrav", "mangelskrava": "mangelskrav", "mangfold": "mangfold", "manglande": "mangl", "manglane": "mangl", "manglar": "mangl", "manglende": "mangl", "mangler": "mangl", "manglet": "mangl", "mangt": "mangt", "manken": "mank", "mann": "mann", "mannefall": "mannefall", "mannen": "mann", "mannfolkgæern": "mannfolkgæern", "manngard": "manngard", "manngarden": "manngard", "mannlig": "mann", "mannlige": "mann", "manns": "mann", "mannskap": "mannskap", "mannvonde": "mannvond", "mao": "mao", "mara": "mar", "marburg": "marburg", "margareta": "margaret", "margen": "marg", "marginale": "marginal", "marginalsatsen": "marginalsats", "marginalskatt": "marginalskatt", "marginalskatten": "marginalskatt", "marginalskatteprosentene": "marginalskatteprosent", "marginalskattesatsen": "marginalskattesats", "marginalt": "marginalt", "maritim": "maritim", "maritime": "maritim", "mark": "mark", "marked": "marked", "markedene": "marked", "markeder": "marked", "markedet": "marked", "markedets": "marked", "markeds": "marked", "markedsadgang": "markedsadgang", "markedsadgangen": "markedsadgang", "markedsaktørene": "markedsaktør", "markedsaktører": "markedsaktør", "markedsandel": "markedsandel", "markedsandeler": "markedsandel", "markedsavkastning": "markedsavkastning", "markedsdeltaker": "markedsdeltak", "markedsdominert": "markedsdominer", "markedsføring": "markedsføring", "markedsinndeks": "markedsinndeks", "markedsmakt": "markedsmakt", "markedsmekanismer": "markedsmekanism", "markedsmessig": "markedsmess", "markedsmessige": "markedsmess", "markedsnærhet": "markedsnær", "markedsnærheten": "markedsnær", "markedsnært": "markedsnært", "markedsområde": "markedsområd", "markedsområder": "markedsområd", "markedsposisjon": "markedsposisjon", "markedsregulering": "markedsregulering", "markedsrente": "markedsrent", "markedsrisiko": "markedsrisiko", "markedssituasjonen": "markedssituasjon", "markedstilgang": "markedstilgang", "markedstilpasning": "markedstilpasning", "markedstilpassede": "markedstilpass", "markedsutviklingen": "markedsutvikling", "markedsverdien": "markedsverdi", "markedsverdiene": "markedsverdi", "markedsverdiprinsippet": "markedsverdiprinsipp", "markedsvilkår": "markedsvilkår", "marken": "mark", "markene": "mark", "markerast": "marker", "markere": "marker", "markering": "markering", "markert": "marker", "market": "mark", "marknad": "marknad", "marknaden": "marknad", "marknadsendringar": "marknadsendring", "marknadspris": "marknadspris", "marknadsprisane": "marknadspris", "marknadsprisar": "marknadspris", "marknadsprisen": "marknadspris", "marknadstilhøva": "marknadstilhøv", "marknadstilhøve": "marknadstilhøv", "marknadsutviklinga": "marknadsutvikling", "marknadsverdien": "marknadsverdi", "markspiste": "markspist", "markstukne": "markstukn", "mars": "mar", "martin": "martin", "mase": "mas", "masende": "mas", "maser": "mas", "maskene": "mask", "masker": "mask", "maskeradene": "maskerad", "maskin": "maskin", "maskiner": "maskin", "maskinlesbar": "maskinlesb", "maskinstasjonar": "maskinstasjon", "maskinstopp": "maskinstopp", "massetransporter": "massetransport", "mastemyr": "mastemyr", "masten": "mast", "mat": "mat", "matbordet": "matbord", "maten": "mat", "mater": "mat", "materialane": "material", "materialar": "material", "materiale": "material", "materialet": "material", "materialiserer": "materialiser", "materiell": "materiell", "matjord": "matjord", "matlyst": "matlyst", "matmor": "matmor", "matrestene": "matrest", "matsekken": "matsekk", "matvarer": "matvar", "maurtue": "maurtu", "mauseth": "mauseth", "mave": "mav", "mavemålet": "mavemål", "maven": "mav", "med": "med", "medan": "medan", "meddele": "meddel", "medeier": "medei", "medeigar": "med", "medeigarar": "medeigar", "medføre": "medfør", "medfører": "medfør", "medført": "medført", "medgift": "medgift", "medgått": "medgått", "medhald": "medhald", "medhjelpar": "medhjelp", "medhjelparen": "medhjelpar", "medhjelper": "medhjelp", "medhold": "medhold", "medkontrahent": "medkontrahent", "medkontrahentar": "medkontrahent", "medkontrahenten": "medkontrahent", "medkontrahentens": "medkontrahent", "medlem": "medlem", "medlemene": "medlem", "medlemer": "medlem", "medlemmarna": "medlemmarn", "medlemmarnas": "medlemmarn", "medlemmen": "medlemm", "medlemmene": "medlemm", "medlemmenes": "medlemm", "medlemmer": "medlemm", "medlemmers": "medlemm", "medlemmet": "medlemm", "medlemmets": "medlemm", "medlems": "medlem", "medlemsaktiviteten": "medlemsaktivitet", "medlemsblad": "medlemsblad", "medlemsdemokrati": "medlemsdemokrati", "medlemsfordel": "medlemsfordel", "medlemsfordelane": "medlemsfordel", "medlemsfordelar": "medlemsfordel", "medlemsforeiningar": "medlemsforeining", "medlemsføretak": "medlemsføretak", "medlemsgenerasjonar": "medlemsgenerasjon", "medlemsgrupper": "medlemsgrupp", "medlemsinteresser": "medlemsinteress", "medlemskap": "medlemskap", "medlemskapen": "medlemskap", "medlemskapet": "medlemskap", "medlemskapsperioden": "medlemskapsperiod", "medlemskarrieren": "medlemskarrier", "medlemskommunene": "medlemskommun", "medlemskontroll": "medlemskontroll", "medlemskontrollen": "medlemskontroll", "medlemskontrollerte": "medlemskontroller", "medlemskort": "medlemskort", "medlemslag": "medlemslag", "medlemslaga": "medlemslag", "medlemsland": "medlemsland", "medlemslands": "medlemsland", "medlemsorganisasjon": "medlemsorganisasjon", "medlemsorganisasjonar": "medlemsorganisasjon", "medlemsskap": "medlemsskap", "medlemsskapsreglene": "medlemsskapsregl", "medlemsstatene": "medlemsstat", "medlemsstatenes": "medlemsstat", "medlemsstater": "medlemsstat", "medlemsstokken": "medlemsstokk", "medlemsstyret": "medlemsstyr", "medlemsstyring": "medlemsstyring", "medlemsstyrte": "medlemsstyrt", "medlemstal": "medlemstal", "medlemstallet": "medlemstall", "medlemstenester": "medlemstenest", "medlemstid": "medlemstid", "medlemstiden": "medlemstid", "medmindre": "medmindr", "medregne": "medregn", "medregnet": "medregn", "medregning": "medregning", "medregningen": "medregning", "medregningsadgangen": "medregningsadgang", "medregningsreglene": "medregningsregl", "medrekna": "medrekn", "medråderett": "medråderett", "medråderetten": "medråderett", "medverka": "medverk", "medverkande": "medverk", "medverkar": "medverk", "medverkaransvaret": "medverkaransvar", "medverke": "medverk", "medverknad": "medverknad", "medverknaden": "medverknad", "medvind": "medvind", "medvirke": "medvirk", "medvirkning": "medvirkning", "meg": "meg", "meget": "meg", "megleren": "megler", "mehr": "mehr", "meieri": "meieri", "meine": "mein", "meiner": "mein", "meininga": "meining", "meiningane": "meining", "meiningar": "meining", "meiningsinnhald": "meiningsinnhald", "meint": "meint", "meinte": "meint", "meir": "meir", "meirinntekter": "meirinntekt", "meirkostnader": "meirkostnad", "meirverdiavgift": "meirverdiavgift", "meirverdiavgifta": "meirverdiavgift", "mekanisk": "mekanisk", "mekanisme": "mekanism", "meklartenester": "meklartenest", "mektig": "mekt", "mektige": "mekt", "mektigere": "mektiger", "mektigste": "mektigst", "meld": "meld", "meldast": "meld", "melde": "meld", "melder": "meld", "meldes": "meld", "melding": "melding", "meldinga": "melding", "meldingane": "melding", "meldingar": "melding", "meldingen": "melding", "meldingene": "melding", "meldinger": "melding", "meldt": "meld", "melk": "melk", "melket": "melk", "mellan": "mellan", "mellom": "mellom", "mellombels": "mellombel", "mellomkomst": "mellomkomst", "mellomlagring": "mellomlagring", "mellomlang": "mellomlang", "mellomlange": "mellomlang", "mellomlangsiktige": "mellomlangsikt", "mellomlangt": "mellomlangt", "mellomliggjande": "mellomliggj", "mellomløsninger": "mellomløsning", "mellomløysing": "mellomløysing", "mellommann": "mellommann", "mellommenn": "mellommenn", "mellomnivå": "mellomnivå", "mellomperiode": "mellomperiod", "mellomrekning": "mellomrekning", "mellomrekninga": "mellomrekning", "mellomrekningsmidlane": "mellomrekningsmidl", "mellomrekningsordninga": "mellomrekningsordning", "mellomrom": "mellomrom", "mellomstasjon": "mellomstasjon", "mellomstasjonen": "mellomstasjon", "mellomstore": "mellomstor", "mellomtida": "mellomtid", "mellomtiden": "mellomtid", "mellomting": "mellomting", "mellomveg": "mellomveg", "melz": "melz", "men": "men", "mene": "men", "mener": "men", "menes": "men", "mengd": "mengd", "mengda": "mengd", "mengde": "mengd", "mengden": "mengd", "mengdene": "mengd", "mengder": "mengd", "menger": "meng", "mening": "mening", "meningen": "mening", "menja": "menj", "menn": "menn", "mennene": "menn", "menneske": "mennesk", "menneskebarn": "menneskebarn", "menneskebarna": "menneskebarn", "menneskehår": "menneskehår", "menneskekryp": "menneskekryp", "menneskelignende": "menneskelign", "menneskeliv": "menneskeliv", "menneskene": "mennesk", "menneskenes": "mennesk", "menneskepar": "menneskep", "mennesker": "mennesk", "menneskeslekt": "menneskeslekt", "menneskeslekten": "menneskeslekt", "menns": "menn", "mens": "men", "ment": "ment", "mente": "ment", "mer": "mer", "merarbeid": "merarbeid", "meravkastningen": "meravkastning", "merbelastning": "merbelastning", "merbelastningene": "merbelastning", "merchanisms": "merchanism", "merforpliktelsen": "merforplikt", "merinnskudd": "merinnskudd", "merk": "merk", "merkbar": "merkb", "merke": "merk", "merkelig": "merk", "merkelige": "merk", "merkeligste": "merkeligst", "merkene": "merk", "merker": "merk", "merkes": "merk", "merkesystemet": "merkesystem", "merket": "merk", "merketjenesten": "merketjenest", "merkevarer": "merkevar", "merking": "merking", "merknad": "merknad", "merknadene": "merknad", "merknader": "merknad", "merkostnader": "merkostnad", "merksam": "merksam", "merksame": "merksam", "merkverdig": "merkverd", "merutgiftene": "merutgift", "messing": "messing", "mest": "mest", "mesta": "mest", "meste": "mest", "mesteparten": "mestepart", "mester": "mest", "mestersmed": "mestersmed", "mestersmeder": "mestersmed", "mestertyv": "mestertyv", "mestrer": "mestr", "mestret": "mestr", "metall": "metall", "metaller": "metall", "metallklumpen": "metallklump", "metallproduksjon": "metallproduksjon", "metallprodukter": "metallprodukt", "meter": "met", "metergrunnen": "metergrunn", "meters": "met", "metersbeltet": "metersbelt", "metode": "metod", "metoden": "metod", "metoder": "metod", "metodisk": "metodisk", "mette": "mett", "mfl": "mfl", "mht": "mht", "michael": "michael", "michaels": "michael", "middagstid": "middagstid", "middel": "middel", "middelklassen": "middelklass", "middels": "middel", "midgard": "midgard", "midgards": "midgard", "midgardsormen": "midgardsorm", "midgardsormon": "midgardsormon", "midlane": "midl", "midlar": "midl", "midlene": "midl", "midlenes": "midl", "midler": "midl", "midlere": "midler", "midlertidig": "midlertid", "midlertidige": "midlertid", "midnattstid": "midnattstid", "midt": "midt", "midten": "midt", "mil": "mil", "milano": "milano", "mild": "mild", "mildare": "mildar", "militær": "militær", "militære": "militær", "militærteneste": "militærtenest", "militærtjeneste": "militærtjenest", "miljø": "miljø", "miljøavdelingen": "miljøavdeling", "miljøbelastende": "miljøbelast", "miljøbelastning": "miljøbelastning", "miljøbelastningen": "miljøbelastning", "miljøbelastninger": "miljøbelastning", "miljødepartementet": "miljødepartement", "miljødifferensierte": "miljødifferensier", "miljøeffekter": "miljøeffekt", "miljøet": "miljø", "miljøforbedring": "miljøforbedring", "miljøforbedringer": "miljøforbedring", "miljøforhold": "miljøforhold", "miljøforstyrrende": "miljøforstyrr", "miljøhensyn": "miljøhensyn", "miljøkonflikter": "miljøkonflikt", "miljøkostnadene": "miljøkostnad", "miljøkostnader": "miljøkostnad", "miljøkrav": "miljøkrav", "miljøkriteriene": "miljøkriteri", "miljømessig": "miljømess", "miljømessige": "miljømess", "miljøpolitikk": "miljøpolitikk", "miljøpolitikkens": "miljøpolitikk", "miljøpolitisk": "miljøpolitisk", "miljøpolitiske": "miljøpolitisk", "miljøprioriteringstiltak": "miljøprioriteringstiltak", "miljøproblemene": "miljøproblem", "miljøproblemer": "miljøproblem", "miljørevisjon": "miljørevisjon", "miljøsikkerhet": "miljøsikker", "miljøspørsmål": "miljøspørsmål", "miljøspørsmåla": "miljøspørsmål", "miljøulemper": "miljøulemp", "miljøvennlig": "miljøvenn", "miljøvennlige": "miljøvenn", "miljøvernavdeling": "miljøvernavdeling", "miljøverndepartementet": "miljøverndepartement", "miljøverndepartementets": "miljøverndepartement", "mill": "mill", "milliarder": "milliard", "million": "million", "millionar": "million", "millioner": "million", "mime": "mim", "mimes": "mim", "min": "min", "mindre": "mindr", "mindretal": "mindretal", "mindretalet": "mindretal", "mindretall": "mindretall", "mindretallet": "mindretall", "mindretallets": "mindretall", "mindretalsvern": "mindretalsvern", "mindretalsvernet": "mindretalsvern", "mindreårig": "mindreår", "mine": "min", "mineralprodukter": "mineralprodukt", "minimal": "minimal", "minimale": "minimal", "minimalt": "minimalt", "minimerer": "minimer", "minimert": "minimer", "minimum": "minimum", "minimumskrav": "minimumskrav", "ministeriet": "ministeri", "ministerio": "ministerio", "minka": "mink", "minkar": "mink", "minke": "mink", "minker": "mink", "minket": "mink", "minnast": "minn", "minne": "minn", "minner": "minn", "minnet": "minn", "minske": "minsk", "minsker": "minsk", "minskes": "minsk", "minst": "minst", "minste": "minst", "minstealder": "minsteald", "minsteavkastning": "minsteavkastning", "minstefradraget": "minstefradrag", "minstefrist": "minstefrist", "minstegrad": "minstegrad", "minstegrense": "minstegrens", "minstegrensen": "minstegrens", "minstegrenser": "minstegrens", "minstekapital": "minstekapital", "minstekapitalen": "minstekapital", "minstekrav": "minstekrav", "minstekravene": "minstekrav", "minstekravet": "minstekrav", "minstelønn": "minstelønn", "minstenivå": "minstenivå", "minstenivåer": "minstenivå", "minstenivået": "minstenivå", "minstepensjon": "minstepensjon", "minstepensjonen": "minstepensjon", "minstesikring": "minstesikring", "minstetal": "minstetal", "minstetid": "minstetid", "minstetida": "minstetid", "minusgrader": "minusgrad", "minutter": "minutt", "misbruk": "misbruk", "misbrukes": "misbruk", "misbruksregel": "misbruksregel", "misbruksregelen": "misbruksregel", "misbruksreglane": "misbruksregl", "misbruksreglar": "misbruksregl", "misbrukt": "misbrukt", "misbrukte": "misbrukt", "misforståelse": "misforstå", "misforståelser": "misforstå", "mishald": "mishald", "mishaldande": "mishald", "mishalde": "mishald", "mishaldet": "mishald", "mishaldne": "mishaldn", "mishaldskrav": "mishaldskrav", "mishaldssynspunkt": "mishaldssynspunkt", "mishaldstilfella": "mishaldstilfell", "mishaldstilfelle": "mishaldstilfell", "mishaldsverknader": "mishaldsverknad", "mishaldsvurderinga": "mishaldsvurdering", "misheld": "misheld", "mishøve": "mishøv", "mislykkes": "mislykk", "misnøgd": "misnøgd", "misnøya": "misnøy", "misnøye": "misnøy", "misoppfattast": "misoppfatt", "mista": "mist", "mistanke": "mistank", "mistar": "mist", "miste": "mist", "misteltein": "misteltein", "mistelteinen": "misteltein", "mister": "mist", "mistet": "mist", "mistro": "mistro", "mistydingar": "mistyding", "misunnelig": "misunn", "misunner": "misunn", "misvisande": "misvis", "mitgleiderzahl": "mitgleiderzahl", "mitglieder": "mitglied", "mitt": "mitt", "mittels": "mittel", "mjaue": "mjaue", "mjauende": "mjauend", "mjauer": "mjauer", "mjød": "mjød", "mjøden": "mjød", "mjølner": "mjøln", "mjøndalen": "mjøndal", "mobile": "mobil", "mobilisering": "mobilisering", "mobilitet": "mobilit", "mobiliteten": "mobilitet", "mode": "mod", "modell": "modell", "modellane": "modell", "modellar": "modell", "modellberegningene": "modellberegning", "modellberegninger": "modellberegning", "modellen": "modell", "modellene": "modell", "modeller": "modell", "moden": "mod", "moderat": "moderat", "modereres": "moderer", "moderne": "modern", "modernisering": "modernisering", "moderniseringsprosjekter": "moderniseringsprosjekt", "modernisert": "moderniser", "modgunn": "modgunn", "modifikasjonar": "modifikasjon", "modig": "mod", "modige": "mod", "modigste": "modigst", "mogleg": "mog", "moglege": "mog", "mokkurkalve": "mokkurkalv", "moland": "moland", "molandutvalgets": "molandutvalg", "moment": "moment", "momenta": "moment", "momenter": "moment", "momsnummer": "momsnumm", "momsnummerbaserte": "momsnummerbaser", "mon": "mon", "monner": "monn", "monopol": "monopol", "monopollignende": "monopollign", "monster": "monst", "monsteret": "monster", "monstre": "monstr", "mor": "mor", "moralsk": "moralsk", "mord": "mord", "moren": "mor", "morer": "mor", "morgen": "morg", "morgendugg": "morgendugg", "morgenen": "morgen", "morkne": "morkn", "moro": "moro", "morro": "morro", "mors": "mor", "morselskapet": "morselskap", "morsom": "morsom", "mortifikasjon": "mortifikasjon", "mortifisere": "mortifiser", "mose": "mos", "mosegrodd": "mosegrodd", "mosegrodde": "mosegrodd", "mosjons": "mosjon", "moss": "moss", "mosseporten": "mosseport", "mosseregionen": "mosseregion", "mossevegen": "mosseveg", "mot": "mot", "motargument": "motargument", "motargumenter": "motargument", "motbydelige": "motbyd", "motet": "mot", "motiv": "motiv", "motivasjonen": "motivasjon", "motiver": "motiv", "motivere": "motiver", "motiveres": "motiver", "motløs": "motløs", "motmelding": "motmelding", "motorveg": "motorveg", "motorvegar": "motorveg", "motorvegbru": "motorvegbru", "motorveger": "motorveg", "motsatt": "motsatt", "motsatte": "motsatt", "motsegn": "motsegn", "motsegner": "motsegn", "motset": "mots", "motsetje": "motsetj", "motsetnad": "motsetnad", "motsetning": "motsetning", "motsetningar": "motsetning", "motsetninger": "motsetning", "motsetningsforhold": "motsetningsforhold", "motsetningsforholdet": "motsetningsforhold", "motsett": "motsett", "motsette": "motsett", "motsi": "motsi", "motstand": "motstand", "motstanderen": "motstander", "motstrid": "motstrid", "motstridande": "motstrid", "motstrøms": "motstrøm", "motstykke": "motstykk", "motstykket": "motstykk", "motståande": "motstå", "motsvarer": "motsvar", "motsvares": "motsvar", "motta": "mott", "mottak": "mottak", "mottakar": "mottak", "mottakaren": "mottakar", "mottaker": "mottak", "mottakere": "mottaker", "mottakerer": "mottaker", "mottakerfylke": "mottakerfylk", "mottakersted": "mottakersted", "mottaksanlegg": "mottaksanlegg", "mottaksfylke": "mottaksfylk", "mottaksordninger": "mottaksordning", "mottakssted": "mottakssted", "mottar": "mott", "mottatt": "mottatt", "motteke": "mottek", "motteken": "mottek", "mottekne": "mottekn", "mottiltak": "mottiltak", "mottok": "mottok", "motvekt": "motvekt", "motverka": "motverk", "motverke": "motverk", "motvilje": "motvilj", "motvirke": "motvirk", "motvirkes": "motvirk", "moum": "moum", "mounted": "mounted", "mrd": "mrd", "mudret": "mudr", "muldvarp": "muldvarp", "mulig": "mul", "mulige": "mul", "muligens": "mul", "muliggjør": "muliggjør", "mulighet": "mul", "muligheten": "mul", "mulighetene": "mul", "muligheter": "mul", "mulighetsområde": "mulighetsområd", "mulighetsområdet": "mulighetsområd", "multipliser": "multiplis", "multipliseres": "multipliser", "mumlende": "muml", "mumler": "muml", "mumlig": "mum", "munck": "munck", "mundilfare": "mundilfar", "munin": "munin", "munn": "munn", "munnen": "munn", "munnet": "munn", "munnfull": "munnfull", "munnhell": "munnhell", "munnvikene": "munnvik", "muntre": "muntr", "mur": "mur", "muren": "mur", "murene": "mur", "murer": "mur", "musejakt": "musejakt", "musikk": "musikk", "musklene": "muskl", "muskler": "muskl", "muspellsheim": "muspellsheim", "muspellshæren": "muspellshær", "muspellsønnene": "muspellsønn", "mutt": "mutt", "mutue": "mutu", "mv": "mv", "mye": "mye", "mygg": "mygg", "myke": "myk", "mykere": "myker", "mykje": "mykj", "mykt": "mykt", "mynde": "mynd", "myndet": "mynd", "myndige": "mynd", "myndighet": "mynd", "myndigheten": "mynd", "myndighetene": "mynd", "myndighetenes": "mynd", "myndigheter": "mynd", "myndigheters": "myndighet", "myndighetsområde": "myndighetsområd", "myndighetsutøvelse": "myndighetsutøv", "myndighetsutøvelsen": "myndighetsutøv", "myr": "myr", "myrhull": "myrhull", "myser": "mys", "mysing": "mysing", "må": "må", "måkeskrik": "måkeskrik", "mål": "mål", "måla": "mål", "målast": "mål", "målbevisst": "målbevisst", "måle": "mål", "målene": "mål", "måler": "mål", "målet": "mål", "måling": "måling", "målkonflikter": "målkonflikt", "målrettet": "målrett", "målsatt": "målsatt", "målsatte": "målsatt", "målsetning": "målsetning", "målsetningen": "målsetning", "målsetninger": "målsetning", "målsetting": "målsetting", "målsettingen": "målsetting", "målsettinger": "målsetting", "målsikkerhet": "målsikker", "målstørrelse": "målstørr", "målt": "målt", "måltid": "måltid", "måltidet": "måltid", "månad": "månad", "månaden": "månad", "månadene": "månad", "månader": "månad", "månaders": "månad", "månadleg": "månad", "månadlege": "månad", "månadsvis": "månadsvis", "måne": "mån", "måned": "måned", "månedene": "måned", "måneder": "måned", "månedlige": "måned", "måneløs": "måneløs", "månen": "mån", "måper": "måp", "måtar": "måt", "måte": "måt", "måtelig": "måt", "måten": "måt", "måtene": "måt", "måter": "måt", "måtta": "mått", "måtte": "mått", "måttet": "mått", "mæland": "mæland", "mæle": "mæl", "møblar": "møbl", "mødre": "mødr", "mølen": "møl", "mønet": "møn", "mønster": "mønst", "mønsteret": "mønster", "mønsterkontrakten": "mønsterkontrakt", "mønstervedtektene": "mønstervedtekt", "mørbanket": "mørbank", "møre": "mør", "mørk": "mørk", "mørke": "mørk", "mørkemaktene": "mørkemakt", "mørket": "mørk", "mørketiden": "mørketid", "mørkets": "mørk", "mørkt": "mørkt", "mørkved": "mørkved", "møta": "møt", "møtast": "møt", "møte": "møt", "møtedagen": "møtedag", "møteleiar": "møtelei", "møteleiaren": "møteleiar", "møteleiarens": "møteleiar", "møteleiing": "møteleiing", "møtene": "møt", "møteplikt": "møteplikt", "møter": "møt", "møtereglar": "møteregl", "møterett": "møterett", "møteretten": "møterett", "møtes": "møt", "møtesituasjoner": "møtesituasjon", "møtest": "møtest", "møtet": "møt", "møtevirksomhet": "møtevirksom", "møtt": "møtt", "møtte": "møtt", "møy": "møy", "n": "n", "nabokommune": "nabokommun", "naboland": "naboland", "nag": "nag", "naglfar": "naglf", "naken": "nak", "nakent": "nakent", "nakken": "nakk", "nakne": "nakn", "namn": "namn", "namna": "namn", "namneendring": "namneendring", "namneendringa": "namneendring", "namnet": "namn", "namngjeven": "namngjev", "namngjevne": "namngjevn", "namsretten": "namsrett", "namsstyresmakta": "namsstyresmakt", "namsstyresmaktene": "namsstyresmakt", "nanna": "nann", "nappe": "napp", "napper": "napp", "nara": "nar", "narr": "narr", "narra": "narr", "narre": "narr", "narret": "narr", "narve": "narv", "narvesen": "narves", "narvik": "narvik", "nasjonal": "nasjonal", "nasjonalbudsjett": "nasjonalbudsjett", "nasjonalbudsjettet": "nasjonalbudsjett", "nasjonale": "nasjonal", "nasjonalitet": "nasjonalit", "nasjonalt": "nasjonalt", "nasjonene": "nasjon", "natt": "natt", "natta": "natt", "nattefrosten": "nattefrost", "nattely": "nattely", "nattemørket": "nattemørk", "natten": "natt", "nattens": "natt", "nattestengning": "nattestengning", "nattsvart": "nattsvart", "natur": "natur", "naturaldeling": "naturaldeling", "naturalia": "naturali", "naturalytelser": "naturalyt", "naturgitte": "naturgitt", "naturinngrep": "naturinngrep", "naturlig": "natur", "naturlige": "natur", "naturligvis": "naturligvis", "naturmessige": "naturmess", "naturreservat": "naturreservat", "naturreservatet": "naturreservat", "naturressurser": "naturressurs", "naudssituasjonar": "naudssituasjon", "nautiske": "nautisk", "nav": "nav", "navet": "nav", "navigasjon": "navigasjon", "navigasjonsassistanse": "navigasjonsassistans", "navigasjonsdekning": "navigasjonsdekning", "navigasjonshjelpemidler": "navigasjonshjelpemidl", "navigasjonspolitikk": "navigasjonspolitikk", "navigasjonsspørsmål": "navigasjonsspørsmål", "navigatørene": "navigatør", "navigere": "naviger", "navn": "navn", "navnene": "navn", "navnet": "navn", "navprinsippet": "navprinsipp", "nazionale": "nazional", "nbbl": "nbbl", "nbbls": "nbbls", "nbo": "nbo", "nebb": "nebb", "nebbene": "nebb", "nebbet": "nebb", "ned": "ned", "nedafor": "nedafor", "nedbetaling": "nedbetaling", "nedbetalt": "nedbetalt", "nedbetalte": "nedbetalt", "nedbrente": "nedbrent", "nedbrytning": "nedbrytning", "nedbygge": "nedbygg", "nedbygging": "nedbygging", "nede": "ned", "nedenfor": "nedenfor", "nedenfra": "nedenfr", "nedenstående": "nedenstå", "nedereland": "nedereland", "nederlaget": "nederlag", "nederland": "nederland", "nederste": "nederst", "nedfelle": "nedfell", "nedfelles": "nedfell", "nedfelt": "nedfelt", "nedjustert": "nedjuster", "nedlagd": "nedlagd", "nedlagt": "nedlagt", "nedlegge": "nedlegg", "nedleggelse": "nedlegg", "nedlegges": "nedlegg", "nedlegging": "nedlegging", "nedover": "nedov", "nedprioritere": "nedprioriter", "nedpå": "nedpå", "nedre": "nedr", "nedsatt": "nedsatt", "nedsatte": "nedsatt", "nedsetjing": "nedsetjing", "nedsette": "nedsett", "nedsettelse": "nedsett", "nedskrivninger": "nedskrivning", "nedsnedd": "nedsnedd", "nedstigande": "nedst", "negativ": "negativ", "negative": "negativ", "negativt": "negativ", "neglene": "negl", "negler": "negl", "nei": "nei", "neida": "neid", "neie": "neie", "neier": "neier", "nekta": "nekt", "nektar": "nekt", "nektast": "nekt", "nekte": "nekt", "nekter": "nekt", "nektet": "nekt", "nekting": "nekting", "nektinga": "nekting", "nels": "nel", "nemleg": "nem", "nemlig": "nem", "nemnande": "nemn", "nemnast": "nemn", "nemnd": "nemnd", "nemnda": "nemnd", "nemnde": "nemnd", "nemndene": "nemnd", "nemnder": "nemnd", "nemne": "nemn", "nemner": "nemn", "nemning": "nemning", "nemninga": "nemning", "nemningane": "nemning", "nemningar": "nemning", "nemnt": "nemnt", "nemo": "nemo", "neppe": "nepp", "nepsdatter": "nepsdatt", "neseborene": "nesebor", "nesen": "nes", "nest": "nest", "neste": "nest", "nesten": "nest", "nestenulykker": "nestenulykk", "nestleder": "nestled", "nestledervervet": "nestlederverv", "nestleiar": "nestlei", "nett": "nett", "netter": "nett", "nettet": "nett", "netto": "netto", "nettoeiga": "netto", "nettoen": "netto", "nettoformue": "nettoformu", "nettopp": "nettopp", "nettopremier": "nettopremi", "nettoverdiane": "nettoverdi", "nettoverdien": "nettoverdi", "nettoverdier": "nettoverdi", "nettsider": "nettsid", "nettverk": "nettverk", "network": "network", "neve": "nev", "nevekamp": "nevekamp", "nevekjemper": "nevekjemp", "neven": "nev", "nevene": "nev", "never": "nev", "nevn": "nevn", "nevne": "nevn", "nevner": "nevn", "nevnes": "nevn", "nevneverdige": "nevneverd", "nevnt": "nevnt", "nevnte": "nevnt", "new": "new", "nf": "nf", "nff": "nff", "nho": "nho", "ni": "ni", "niande": "niand", "nibr": "nibr", "nibrs": "nibr", "nicht": "nicht", "nidhogg": "nidhogg", "niende": "niend", "niflheim": "niflheim", "nikker": "nikk", "nils": "nil", "nina": "nin", "nisjer": "nisj", "nistemat": "nistemat", "nisten": "nist", "nistepose": "nistepos", "nisteposen": "nistepos", "nisteskreppa": "nisteskrepp", "nitberg": "nitberg", "nitbergs": "nitberg", "nivå": "nivå", "nivåene": "nivå", "nivåer": "nivå", "nivået": "nivå", "njord": "njord", "njords": "njord", "nkl": "nkl", "no": "no", "noahs": "noah", "noatun": "noatun", "noe": "noe", "noen": "noen", "noenlunde": "noenlund", "nogjeldande": "nogjeld", "nok": "nok", "noka": "nok", "noko": "noko", "nokolunde": "nokolund", "nokon": "nokon", "nokre": "nokr", "nokså": "nokså", "nomenklaturen": "nomenklatur", "nominell": "nominell", "nominelle": "nominell", "nominelt": "nominelt", "nor": "nor", "norcem": "norcem", "norconsult": "norconsult", "nord": "nord", "nordeuropeisk": "nordeuropeisk", "nordisk": "nordisk", "nordiska": "nordisk", "nordiske": "nordisk", "nordlige": "nord", "nordover": "nordov", "nordre": "nordr", "nordsjøen": "nordsjø", "nordsjøtrafikken": "nordsjøtrafikk", "nordøst": "nordøst", "noreg": "noreg", "noregs": "noreg", "norge": "norg", "norges": "norg", "norgeslast": "norgesl", "norm": "norm", "normal": "normal", "normale": "normal", "normalordninga": "normalordning", "normalt": "normalt", "normalvedtektene": "normalvedtekt", "normann": "normann", "normer": "norm", "normert": "normer", "nornen": "norn", "nornene": "norn", "norner": "norn", "norsk": "norsk", "norske": "norsk", "noss": "noss", "notat": "notat", "notatet": "notat", "note": "not", "noter": "not", "notering": "notering", "noteringa": "notering", "notert": "noter", "noterte": "noter", "notifikasjonskravet": "notifikasjonskrav", "nou": "nou", "november": "novemb", "noverande": "nover", "nr": "nr", "nsb": "nsb", "nsbs": "nsbs", "ntp": "ntp", "null": "null", "numedalslågen": "numedalslåg", "nummer": "numm", "nummeret": "nummer", "nummerordningar": "nummerordning", "nustad": "nustad", "nvvp": "nvvp", "ny": "ny", "nyanlegget": "nyanlegg", "nyansatte": "nyansatt", "nyansert": "nyanser", "nyanserte": "nyanser", "nyare": "nyar", "nyaste": "nyast", "nybrottsmenn": "nybrottsmenn", "nybyen": "nyby", "nybygg": "nybygg", "nybygget": "nybygg", "nybygging": "nybygging", "nybygginga": "nybygging", "nydelig": "nyd", "nye": "nye", "nyere": "nyer", "nyetablering": "nyetablering", "nyetablerte": "nyetabler", "nyfødte": "nyfød", "nyinnmelde": "nyinnmeld", "nykommerne": "nykommern", "nyleg": "nyleg", "nylig": "nyl", "nymalt": "nymalt", "nynnende": "nynn", "nynner": "nynn", "nyoppførte": "nyoppført", "nysgjerrig": "nysgjerr", "nysgjerrige": "nysgjerr", "nysgjerrighet": "nysgjerr", "nyskapning": "nyskapning", "nyskapninger": "nyskapning", "nyskapt": "nyskapt", "nystifta": "nystift", "nyte": "nyt", "nyter": "nyt", "nytt": "nytt", "nytta": "nytt", "nyttar": "nytt", "nyttast": "nytt", "nytte": "nytt", "nytteeffekter": "nytteeffekt", "nyttekostnadsanalyse": "nyttekostnadsanalys", "nyttekostnadsanalyser": "nyttekostnadsanalys", "nytten": "nytt", "nytter": "nytt", "nyttes": "nytt", "nyttet": "nytt", "nyttetrafikken": "nyttetrafikk", "nyttig": "nytt", "nyttiggjøre": "nyttiggjør", "nyval": "nyval", "nå": "nå", "nådd": "nådd", "nåde": "nåd", "nådeløs": "nådeløs", "någjeldende": "någjeld", "nål": "nål", "når": "når", "nås": "nås", "nåstrand": "nåstrand", "nåtid": "nåtid", "nått": "nått", "nåverdi": "nåverdi", "nåverdien": "nåverdi", "nåværende": "nåvær", "nær": "nær", "nærare": "nærar", "nærast": "nær", "næraste": "nærast", "nære": "nær", "nærhet": "nær", "nærheten": "nær", "næring": "næring", "næringer": "næring", "nærings": "næring", "næringsaktivitet": "næringsaktivit", "næringsaktiviteter": "næringsaktivitet", "næringsdrivande": "næringsdriv", "næringsforhold": "næringsforhold", "næringsformål": "næringsformål", "næringsinteresser": "næringsinteress", "næringsliv": "næringsliv", "næringslivet": "næringsliv", "næringslivets": "næringsliv", "næringslivsaktivitet": "næringslivsaktivit", "næringslivspolitikk": "næringslivspolitikk", "næringslivsutvikling": "næringslivsutvikling", "næringsplan": "næringsplan", "næringspolitikk": "næringspolitikk", "næringspolitikken": "næringspolitikk", "næringspolitikkens": "næringspolitikk", "næringspolitisk": "næringspolitisk", "næringspolitiske": "næringspolitisk", "næringsrettede": "næringsrett", "næringsråd": "næringsråd", "næringssameiger": "næringssam", "næringsseksjonar": "næringsseksjon", "næringsutvikling": "næringsutvikling", "næringsutviklingen": "næringsutvikling", "næringsutøvere": "næringsutøver", "næringsverksemd": "næringsverksemd", "næringsvirksomhet": "næringsvirksom", "næringsvirksomheten": "næringsvirksom", "næringsvirksomheter": "næringsvirksom", "næringsøkonomi": "næringsøkonomi", "næringsøkonomiske": "næringsøkonomisk", "nærliggende": "nærligg", "nærliggjande": "nærliggj", "nærmar": "nærm", "nærme": "nærm", "nærmer": "nærm", "nærmere": "nærmer", "nærmest": "nærmest", "nærmeste": "nærmest", "nærmiljøet": "nærmiljø", "nærområde": "nærområd", "nærområdene": "nærområd", "nærområder": "nærområd", "nærskipsfarten": "nærskipsfart", "nærståande": "nærstå", "nærstående": "nærstå", "nært": "nært", "nærtliggende": "nærtligg", "nærtrafikk": "nærtrafikk", "nærvere": "nærver", "nød": "nød", "nødig": "nød", "nødt": "nødt", "nødvendig": "nødvend", "nødvendige": "nødvend", "nødvendigheten": "nødvend", "nødvendigvis": "nødvendigvis", "nøgde": "nøgd", "nøkk": "nøkk", "nøkkel": "nøkkel", "nøkkelen": "nøkkel", "nøkkelknippe": "nøkkelknipp", "nøkkelroller": "nøkkelroll", "nøktern": "nøktern", "nøkterne": "nøktern", "nøle": "nøl", "nøler": "nøl", "nøtt": "nøtt", "nøtteskall": "nøtteskall", "nøyaktig": "nøyakt", "nøyd": "nøyd", "nøye": "nøye", "nøyer": "nøyer", "nøyere": "nøyer", "nøytral": "nøytral", "nøytrale": "nøytral", "nøytralitet": "nøytralit", "nøytralt": "nøytralt", "o": "o", "objekta": "objekt", "objektet": "objekt", "obligasjonar": "obligasjon", "obligasjonen": "obligasjon", "obligasjonens": "obligasjon", "obligasjoner": "obligasjon", "obligasjonsinnskot": "obligasjonsinnskot", "obligasjonsleilegheiter": "obligasjonsleilegheit", "obligasjonsleilighet": "obligasjonslei", "obligatorisk": "obligatorisk", "obligatoriske": "obligatorisk", "obos": "obo", "observasjon": "observasjon", "observatør": "observatør", "observatørar": "observatør", "observatøren": "observatør", "observert": "observer", "och": "och", "od": "od", "odder": "odd", "odelstinget": "odelsting", "oder": "oder", "odin": "odin", "odins": "odin", "oecd": "oecd", "of": "of", "off": "off", "offentleg": "offent", "offentlege": "offent", "offentlegrettslege": "offentlegretts", "offentlig": "offent", "offentlige": "offent", "offentliges": "offent", "offentligheten": "offent", "offerfesten": "offerfest", "offisiell": "offisiell", "ofres": "ofr", "oftare": "oftar", "oftast": "oft", "ofte": "oft", "oftere": "ofter", "oftest": "oftest", "og": "og", "også": "også", "ogvalfader": "ogvalfad", "ohnstad": "ohnstad", "ohv": "ohv", "ohvs": "ohv", "oioioi": "oioioi", "okolne": "okoln", "okse": "oks", "oksehodet": "oksehod", "okselår": "okselår", "oksene": "oks", "okser": "oks", "oktober": "oktob", "ol": "ol", "ola": "ola", "olav": "olav", "oldebarn": "oldebarn", "oldemor": "oldemor", "oldinger": "olding", "olje": "olj", "oljehavn": "oljehavn", "oljehavnen": "oljehavn", "oljeprodukter": "oljeprodukt", "oljeraffineriet": "oljeraffineri", "olmt": "olmt", "olsen": "ols", "om": "om", "ombestemmer": "ombestemm", "ombodsordning": "ombodsordning", "ombord": "ombord", "ombygging": "ombygging", "ombygginga": "ombygging", "ombyting": "ombyting", "ombyttingsbetraktning": "ombyttingsbetraktning", "omdannast": "omdann", "omdanne": "omdann", "omdannelse": "omdann", "omdannes": "omdann", "omdanning": "omdanning", "omdanninga": "omdanning", "omdanningen": "omdanning", "omdanninger": "omdanning", "omdanningsreglane": "omdanningsregl", "omdanningstidspunktet": "omdanningstidspunkt", "omdanningsvedtaket": "omdanningsvedtak", "omdeling": "omdeling", "omdiskutert": "omdiskuter", "omdisponeres": "omdisponer", "omdisponering": "omdisponering", "omegn": "omegn", "omfang": "omfang", "omfanget": "omfang", "omfatta": "omfatt", "omfattande": "omfatt", "omfattar": "omfatt", "omfattast": "omfatt", "omfatte": "omfatt", "omfattende": "omfatt", "omfatter": "omfatt", "omfattes": "omfatt", "omfattet": "omfatt", "omfavne": "omfavn", "omfavner": "omfavn", "omfavnet": "omfavn", "omfordelende": "omfordel", "omfram": "omfram", "omgang": "omgang", "omgitt": "omgitt", "omgivelsene": "omgiv", "omgjering": "omgjering", "omgjeringa": "omgjering", "omgjort": "omgjort", "omgjøre": "omgjør", "omgrepa": "omgrep", "omgrepet": "omgrep", "omgåelse": "omgå", "omgåing": "omgåing", "omgåingar": "omgåing", "omhandler": "omhandl", "omhandles": "omhandl", "omhandlet": "omhandl", "omkjøring": "omkjøring", "omkostningene": "omkostning", "omkostninger": "omkostning", "omkranser": "omkrans", "omkring": "omkring", "omkringliggende": "omkringligg", "omlag": "omlag", "omland": "omland", "omlastet": "omlast", "omlasting": "omlasting", "omlastingen": "omlasting", "omlastingsarealer": "omlastingsareal", "omlastingsområder": "omlastingsområd", "omlastingspotensialet": "omlastingspotensial", "omlastingsterminal": "omlastingsterminal", "omlastingsterminaler": "omlastingsterminal", "omlastingsvekst": "omlastingsvekst", "omlastingsvolumer": "omlastingsvolum", "omlastningen": "omlastning", "omlastninger": "omlastning", "omlastningsforhold": "omlastningsforhold", "omlastningshavn": "omlastningshavn", "omlastningsterminaler": "omlastningsterminal", "omlastningsvolum": "omlastningsvolum", "omlegging": "omlegging", "omleggingar": "omlegging", "omlegginger": "omlegging", "omliggende": "omligg", "omlokalisering": "omlokalisering", "omløpshastighet": "omløpshast", "omme": "omm", "omorganisere": "omorganiser", "omorganiseres": "omorganiser", "omorganisert": "omorganiser", "omprioritering": "omprioritering", "omprioriteringer": "omprioritering", "omregnet": "omregn", "omregning": "omregning", "områ": "områ", "område": "områd", "områdene": "områd", "områder": "områd", "områders": "områd", "området": "områd", "områdets": "områd", "områdingstid": "områdingstid", "omsetjast": "omsetj", "omsetje": "omsetj", "omsetjeleg": "omsetj", "omsetjelege": "omsetj", "omsetjing": "omsetjing", "omsetjinga": "omsetjing", "omsetning": "omsetning", "omsetninga": "omsetning", "omsetningservervarar": "omsetningservervar", "omsetningsregulering": "omsetningsregulering", "omsetningsverdien": "omsetningsverdi", "omsette": "omsett", "omsettes": "omsett", "omskiftninger": "omskiftning", "omskipa": "omskip", "omskiping": "omskiping", "omslaget": "omslag", "omsorg": "omsorg", "omsorgsbehov": "omsorgsbehov", "omsorgsbustader": "omsorgsbustad", "omsorgstenester": "omsorgstenest", "omstenda": "omstend", "omstende": "omst", "omstendighet": "omstend", "omstillinger": "omstilling", "omstillings": "omstilling", "omstillingsdyktig": "omstillingsdykt", "omstillingstiltak": "omstillingstiltak", "omstillingstiltaka": "omstillingstiltak", "omstreifer": "omstreif", "omstridd": "omstridd", "omstridde": "omstridd", "omstridt": "omstrid", "omstrukturering": "omstrukturering", "omstruktureringer": "omstrukturering", "omstøytast": "omstøyt", "omstøyting": "omstøyting", "omstøytingskravet": "omstøytingskrav", "omstøytingsregelen": "omstøytingsregel", "omsyn": "omsyn", "omsyna": "omsyn", "omsynet": "omsyn", "omsynstaking": "omsynstaking", "omtala": "omtal", "omtalast": "omtal", "omtale": "omtal", "omtalen": "omtal", "omtaler": "omtal", "omtales": "omtal", "omtalt": "omtalt", "omtrent": "omtrent", "omtvista": "omtvist", "omvandrende": "omvandr", "omveg": "omveg", "omvei": "omvei", "omvende": "omv", "omvendt": "omvend", "omverda": "omverd", "on": "on", "ond": "ond", "onde": "ond", "ondskap": "ondskap", "ondskapsfull": "ondskapsfull", "ondskapsfulle": "ondskapsfull", "ondskapsfullt": "ondskapsfullt", "ondt": "ondt", "ondurdis": "ondurdis", "onkelen": "onkel", "ope": "ope", "open": "open", "openberre": "openberr", "openbert": "openber", "openheit": "openheit", "operasjon": "operasjon", "operativ": "operativ", "operative": "operativ", "operativt": "operativ", "operatør": "operatør", "operatøren": "operatør", "operatørene": "operatør", "operatører": "operatør", "operatørhold": "operatørhold", "operatørselskaper": "operatørselskap", "operatørvirksomhet": "operatørvirksom", "operer": "oper", "operere": "operer", "opererer": "operer", "opereres": "operer", "opinionsleiarar": "opinionsleiar", "opna": "opn", "opnar": "opn", "opnare": "opnar", "opnast": "opn", "opne": "opn", "opning": "opning", "opninga": "opning", "opningsbalanse": "opningsbalans", "opningsbalansen": "opningsbalans", "opp": "opp", "oppad": "oppad", "opparbeide": "opparbeid", "opparbeidede": "opparbeid", "opparbeidelse": "opparbeid", "opparbeider": "opparbeid", "opparbeides": "opparbeid", "opparbeidet": "opparbeid", "opparbeiding": "opparbeiding", "oppattbygging": "oppattbygging", "oppbevarer": "oppbevar", "oppbevaring": "oppbevaring", "oppblåst": "oppblåst", "oppblåste": "oppblåst", "oppbrente": "oppbrent", "oppbygd": "oppbygd", "oppbygde": "oppbygd", "oppbygget": "oppbygg", "oppbygging": "oppbygging", "oppbygginga": "oppbygging", "oppbyggingen": "oppbygging", "oppdage": "oppdag", "oppdager": "oppdag", "oppdaterte": "oppdater", "oppdeling": "oppdeling", "oppdelingen": "oppdeling", "oppdelt": "oppdelt", "oppdrag": "oppdrag", "oppdraget": "oppdrag", "oppdragsavtale": "oppdragsavtal", "oppdragsgivere": "oppdragsgiver", "oppdragstakaren": "oppdragstakar", "oppe": "opp", "oppebærer": "oppebær", "oppfarende": "oppfar", "oppfatning": "oppfatning", "oppfatninga": "oppfatning", "oppfatningane": "oppfatning", "oppfatningar": "oppfatning", "oppfatningene": "oppfatning", "oppfatninger": "oppfatning", "oppfatta": "oppfatt", "oppfattar": "oppfatt", "oppfattast": "oppfatt", "oppfatte": "oppfatt", "oppfatter": "oppfatt", "oppfattes": "oppfatt", "oppfordre": "oppfordr", "oppfylle": "oppfyll", "oppfyller": "oppfyll", "oppfylles": "oppfyll", "oppfylling": "oppfylling", "oppfyllinga": "oppfylling", "oppfylt": "oppfylt", "oppfylte": "oppfylt", "oppfølging": "oppfølging", "oppfølginga": "oppfølging", "oppfølgning": "oppfølgning", "oppfører": "oppfør", "oppføring": "oppføring", "oppføringa": "oppføring", "oppført": "oppført", "oppførte": "oppført", "oppgangar": "oppgang", "oppgave": "oppgav", "oppgaven": "oppgav", "oppgavene": "oppgav", "oppgaveplikten": "oppgaveplikt", "oppgaver": "oppgav", "oppgir": "oppgir", "oppgis": "oppgis", "oppgitt": "oppgitt", "oppgjer": "oppgj", "oppgjeret": "oppgjer", "oppgjevast": "oppgjev", "oppgjeve": "oppgjev", "oppgjeven": "oppgjev", "oppgjevne": "oppgjevn", "oppgjør": "oppgjør", "oppgjøret": "oppgjør", "oppgjørstidspunktet": "oppgjørstidspunkt", "oppgradering": "oppgradering", "oppgåva": "oppgåv", "oppgåve": "oppgåv", "oppgåvefordelinga": "oppgåvefordeling", "oppgåvene": "oppgåv", "oppgåver": "oppgåv", "opphald": "opphald", "opphav": "opphav", "opphavet": "opphav", "opphavleg": "opphav", "opphavlege": "opphav", "opphavssted": "opphavssted", "oppheva": "opphev", "oppheve": "opphev", "oppheves": "opphev", "opphevet": "opphev", "opphisset": "opphiss", "oppholder": "opphold", "opphør": "opphør", "opphøre": "opphør", "opphørende": "opphør", "opphører": "opphør", "opphøret": "opphør", "opphørsgrunner": "opphørsgrunn", "opphørstidspunktet": "opphørstidspunkt", "opphørsåret": "opphørsår", "opphørt": "opphørt", "oppjusteres": "oppjuster", "oppkalt": "oppkalt", "oppkavet": "oppkav", "oppkjøp": "oppkjøp", "oppkrevd": "oppkrevd", "oppkreve": "oppkrev", "oppkreves": "oppkrev", "opplagring": "opplagring", "opplagt": "opplagt", "oppland": "oppland", "opplandet": "oppland", "opplegg": "opplegg", "opplegget": "opplegg", "opplevd": "opplevd", "oppleve": "opplev", "opplever": "opplev", "oppleves": "opplev", "opplistingen": "opplisting", "opplysande": "opplys", "opplysast": "opplys", "opplyse": "opplys", "opplyser": "opplys", "opplyses": "opplys", "opplysning": "opplysning", "opplysninga": "opplysning", "opplysningane": "opplysning", "opplysningar": "opplysning", "opplysningene": "opplysning", "opplysninger": "opplysning", "opplysningsplikt": "opplysningsplikt", "opplysningsplikta": "opplysningsplikt", "opplysningsverksemd": "opplysningsverksemd", "opplyst": "opplyst", "opplåning": "opplåning", "opplæring": "opplæring", "oppløses": "oppløs", "oppløsning": "oppløsning", "oppløsningsvedtaket": "oppløsningsvedtak", "oppløysast": "oppløys", "oppløyse": "oppløys", "oppløysing": "oppløysing", "oppløysinga": "oppløysing", "oppløysingar": "oppløysing", "oppløysingsgrunnen": "oppløysingsgrunn", "oppløysingsreglane": "oppløysingsregl", "oppløysingssituasjon": "oppløysingssituasjon", "oppløysingstilfella": "oppløysingstilfell", "oppløysingsvedtaket": "oppløysingsvedtak", "oppløyst": "oppløyst", "oppløyste": "oppløyst", "oppmerking": "oppmerking", "oppmerkingen": "oppmerking", "oppmerksom": "oppmerksom", "oppmerksomhet": "oppmerksom", "oppmode": "oppmod", "oppmoding": "oppmoding", "oppmodinga": "oppmoding", "oppmuntres": "oppmuntr", "oppnemnast": "oppnemn", "oppnemnde": "oppnemnd", "oppnemne": "oppnemn", "oppnemner": "oppnemn", "oppnemning": "oppnemning", "oppnemningsrett": "oppnemningsrett", "oppnemnt": "oppnemnt", "oppnevne": "oppnevn", "oppnevner": "oppnevn", "oppnevnes": "oppnevn", "oppnevning": "oppnevning", "oppnevnt": "oppnevnt", "oppnå": "oppnå", "oppnådd": "oppnådd", "oppnådde": "oppnådd", "oppnår": "oppnår", "oppnås": "oppnås", "oppover": "oppov", "oppregnet": "oppregn", "oppregning": "oppregning", "oppregningen": "oppregning", "oppregulering": "oppregulering", "oppreising": "oppreising", "oppreist": "oppreist", "opprekning": "opprekning", "opprekninga": "opprekning", "opprett": "opprett", "oppretta": "opprett", "opprettast": "opprett", "opprette": "opprett", "opprettelse": "opprett", "opprettelsen": "opprett", "oppretter": "opprett", "opprettes": "opprett", "opprettet": "opprett", "opprettholde": "oppretthold", "opprettholdelse": "oppretthold", "opprettholder": "oppretthold", "opprettholdes": "oppretthold", "opprettholdt": "oppretthold", "oppretting": "oppretting", "opprinnelig": "opprinn", "opprinnelige": "opprinn", "opprinnelse": "opprinn", "opprinnelsen": "opprinn", "opprinnelses": "opprinn", "opprinnelsessted": "opprinnelsessted", "opprinnelsessteder": "opprinnelsessted", "opprusting": "opprusting", "opprustning": "opprustning", "opprydding": "opprydding", "opprykksrett": "opprykksrett", "opprør": "opprør", "oppsamla": "oppsaml", "oppsamlede": "oppsaml", "oppsamlet": "oppsaml", "oppsamlingsfond": "oppsamlingsfond", "oppsatt": "oppsatt", "oppseielege": "oppsei", "oppseiing": "oppseiing", "oppseiinga": "oppseiing", "oppseiingar": "oppseiing", "oppseiingsfrist": "oppseiingsfrist", "oppseiingsfristane": "oppseiingsfrist", "oppseiingsfristen": "oppseiingsfrist", "oppseiingsreglane": "oppseiingsregl", "oppseiingsretten": "oppseiingsrett", "oppseiingstid": "oppseiingstid", "oppseiingsvern": "oppseiingsvern", "oppsettelsestiden": "oppsettelsestid", "oppsettet": "oppsett", "oppsikt": "oppsikt", "oppskrives": "oppskriv", "oppskrivninger": "oppskrivning", "oppskåret": "oppskår", "oppslag": "oppslag", "oppslutning": "oppslutning", "oppslutninga": "oppslutning", "oppsparing": "oppsparing", "oppsparingen": "oppsparing", "oppsparingsbehovet": "oppsparingsbehov", "oppsparingselement": "oppsparingselement", "oppsparingsfasen": "oppsparingsfas", "oppsparingsperioden": "oppsparingsperiod", "oppsparingstiden": "oppsparingstid", "oppspart": "oppspart", "oppsparte": "oppspart", "oppspinn": "oppspinn", "oppsplitting": "oppsplitting", "oppstiging": "oppstiging", "oppstigingsrett": "oppstigingsrett", "oppstilles": "oppstill", "oppstilling": "oppstilling", "oppstillingsplaner": "oppstillingsplan", "oppstilt": "oppstilt", "oppsto": "oppsto", "oppstod": "oppstod", "oppstyret": "oppstyr", "oppstå": "oppstå", "oppstår": "oppstår", "oppstått": "oppstått", "oppsummerer": "oppsummer", "oppsummering": "oppsummering", "oppsummert": "oppsummer", "oppsøke": "oppsøk", "oppsøker": "oppsøk", "oppta": "oppt", "opptak": "opptak", "opptakelse": "opptak", "opptaksvilkårene": "opptaksvilkår", "opptas": "oppt", "opptatt": "opptatt", "oppteikning": "oppteikning", "oppteikninga": "oppteikning", "opptil": "opptil", "opptjene": "opptj", "opptjener": "opptjen", "opptjenes": "opptj", "opptjening": "opptjening", "opptjeningen": "opptjening", "opptjeningsgrunnlag": "opptjeningsgrunnlag", "opptjeningsmodell": "opptjeningsmodell", "opptjeningsperioden": "opptjeningsperiod", "opptjeningsprofil": "opptjeningsprofil", "opptjeningsprofilen": "opptjeningsprofil", "opptjeningssystem": "opptjeningssystem", "opptjeningstid": "opptjeningstid", "opptjeningstiden": "opptjeningstid", "opptjeningstidspunktet": "opptjeningstidspunkt", "opptjeningsår": "opptjeningsår", "opptjent": "opptjent", "opptjente": "opptjent", "opptreden": "opptred", "opptrer": "opptr", "opptrinnsrett": "opptrinnsrett", "oppussing": "oppussing", "oppveier": "oppvei", "oppå": "oppå", "optimal": "optimal", "optimale": "optimal", "optimaliseres": "optimaliser", "optimalisering": "optimalisering", "optimalisert": "optimaliser", "optimalt": "optimalt", "ord": "ord", "orda": "ord", "ordbruken": "ordbruk", "orde": "ord", "orden": "ord", "ordene": "ord", "ordens": "ord", "ordensreglar": "ordensregl", "ordentlig": "ordent", "ordet": "ord", "ordføraren": "ordførar", "ordinær": "ordinær", "ordinære": "ordinær", "ordinært": "ordinært", "ordlegginga": "ordlegging", "ordlyd": "ordlyd", "ordlyden": "ordlyd", "ordna": "ordn", "ordnast": "ordn", "ordne": "ordn", "ordnet": "ordn", "ordning": "ordning", "ordninga": "ordning", "ordningane": "ordning", "ordningar": "ordning", "ordningen": "ordning", "ordningene": "ordning", "ordningenes": "ordning", "ordningens": "ordning", "ordninger": "ordning", "ordre": "ordr", "ordren": "ordr", "ordreplassering": "ordreplassering", "ordreproduksjon": "ordreproduksjon", "ordrer": "ordr", "ordrestyres": "ordrestyr", "ordrestyrt": "ordrestyrt", "ordskiftet": "ordskift", "ordspill": "ordspill", "organ": "organ", "organa": "organ", "organer": "organ", "organet": "organ", "organisasjon": "organisasjon", "organisasjonane": "organisasjon", "organisasjonar": "organisasjon", "organisasjonen": "organisasjon", "organisasjoner": "organisasjon", "organisasjonsarbeid": "organisasjonsarbeid", "organisasjonsform": "organisasjonsform", "organisasjonsforma": "organisasjonsform", "organisasjonsformen": "organisasjonsform", "organisasjonsmodell": "organisasjonsmodell", "organisasjonsmodellen": "organisasjonsmodell", "organisasjonsnummer": "organisasjonsnumm", "organisation": "organisation", "organisatorisk": "organisatorisk", "organisatoriske": "organisatorisk", "organiserast": "organiser", "organisere": "organiser", "organiserer": "organiser", "organiseres": "organiser", "organisering": "organisering", "organiseringa": "organisering", "organiseringen": "organisering", "organiseringsmessige": "organiseringsmess", "organiseringsmodell": "organiseringsmodell", "organiseringsspørsmålet": "organiseringsspørsmål", "organisert": "organiser", "organiserte": "organiser", "organismer": "organism", "orientere": "orienter", "orienterer": "orienter", "orientering": "orientering", "orientert": "orienter", "orienterte": "orienter", "originaler": "original", "orke": "ork", "orker": "ork", "orket": "ork", "orm": "orm", "ormebol": "ormebol", "ormen": "orm", "ormens": "orm", "ormer": "orm", "ormsund": "ormsund", "ormsundkaia": "ormsundkai", "ormsundterminalen": "ormsundterminal", "orsakar": "orsak", "orskurd": "orskurd", "orskurdar": "orskurd", "orskurden": "orskurd", "osb": "osb", "oslo": "oslo", "oslobehov": "oslobehov", "oslofjord": "oslofjord", "oslofjorden": "oslofjord", "oslofjordens": "oslofjord", "oslofjordforbindelsen": "oslofjordforbind", "oslofjordhavnene": "oslofjordhavn", "oslofjordhavnenes": "oslofjordhavn", "oslofjordhavner": "oslofjordhavn", "oslofjordhavneutvalget": "oslofjordhavneutvalg", "oslofjordområdet": "oslofjordområd", "oslofjordregionen": "oslofjordregion", "oslogodset": "oslogods", "oslomarkedet": "oslomarked", "osloområdet": "osloområd", "oslos": "oslo", "oss": "oss", "osv": "osv", "ot": "ot", "oter": "oter", "oteren": "oter", "oterskinnet": "oterskinn", "out": "out", "ovafor": "ovafor", "ovenfor": "ovenfor", "ovennevnte": "ovennevnt", "oventil": "oventil", "over": "over", "overalt": "overalt", "overblikk": "overblikk", "overbygning": "overbygning", "overbygningen": "overbygning", "overdra": "overdr", "overdragande": "overdrag", "overdragast": "overdrag", "overdragelse": "overdrag", "overdragelsen": "overdrag", "overdragende": "overdrag", "overdraging": "overdraging", "overdraginga": "overdraging", "overdreg": "overdreg", "overdrive": "overdriv", "overende": "over", "overens": "over", "overensstemmelse": "overensstemm", "overenstemmelse": "overenstemm", "overfall": "overfall", "overfaller": "overfall", "overfalt": "overfalt", "overflod": "overflod", "overflyttes": "overflytt", "overflødig": "overflød", "overfor": "overfor", "overførast": "overfør", "overførbar": "overførb", "overføre": "overfør", "overfører": "overfør", "overføres": "overfør", "overføring": "overføring", "overføringa": "overføring", "overføringar": "overføring", "overføringen": "overføring", "overføringer": "overføring", "overføringsadgang": "overføringsadgang", "overføringsordningar": "overføringsordning", "overføringsrett": "overføringsrett", "overføringsretten": "overføringsrett", "overført": "overført", "overførte": "overført", "overgang": "overgang", "overgangen": "overgang", "overganger": "overgang", "overgangsbestemmelse": "overgangsbestemm", "overgangsfasar": "overgangsfas", "overgangsfase": "overgangsfas", "overgangsordning": "overgangsordning", "overgangsordninger": "overgangsordning", "overgangsperiode": "overgangsperiod", "overgangsperioden": "overgangsperiod", "overgangsproblem": "overgangsproblem", "overgangsregel": "overgangsregel", "overgangsregelen": "overgangsregel", "overgangsreglane": "overgangsregl", "overgangsreglar": "overgangsregl", "overgangsreglarikraftsetjing": "overgangsreglarikraftsetjing", "overgangsregler": "overgangsregl", "overgangstid": "overgangstid", "overgangstida": "overgangstid", "overgangstilfella": "overgangstilfell", "overgir": "overgir", "overgå": "overgå", "overgår": "overgår", "overhalden": "overhald", "overhodet": "overhod", "overholde": "overhold", "overholdelse": "overhold", "overholdes": "overhold", "overholdt": "overhold", "overkant": "overkant", "overkapasitet": "overkapasit", "overkjeven": "overkjev", "overkomeleg": "overkom", "overkroppen": "overkropp", "overkurs": "overkur", "overlastast": "overlast", "overlatast": "overlat", "overlate": "overlat", "overlaten": "overlat", "overlating": "overlating", "overlatinga": "overlating", "overlegninger": "overlegning", "overlever": "overlev", "overleverast": "overlever", "overleveres": "overlever", "overlevering": "overlevering", "overleveringa": "overlevering", "overmakten": "overmakt", "overmodig": "overmod", "overmotet": "overmot", "overnatte": "overnatt", "overnattet": "overnatt", "overoppsyn": "overoppsyn", "overorda": "overord", "overordna": "overordn", "overordnede": "overordn", "overordnet": "overordn", "overordnete": "overordnet", "overprøving": "overprøving", "overprøvinga": "overprøving", "overraskelse": "overrask", "overraskende": "overrask", "overrasket": "overrask", "oversendelsesforslag": "oversendelsesforslag", "oversendes": "overs", "oversendt": "oversend", "overseten": "overset", "oversetne": "oversetn", "oversikt": "oversikt", "oversikten": "oversikt", "oversikter": "oversikt", "oversiktleg": "oversikt", "oversiktlege": "oversikt", "oversiktlig": "oversikt", "oversiktlige": "oversikt", "oversiktlighet": "oversikt", "oversiktsbildet": "oversiktsbild", "oversiktsmessig": "oversiktsmess", "oversiktstallene": "oversiktstall", "oversitje": "oversitj", "oversitjing": "oversitjing", "oversjøisk": "oversjøisk", "oversjøiske": "oversjøisk", "overskot": "overskot", "overskotet": "overskot", "overskotslikviditet": "overskotslikvidit", "overskotslikviditeten": "overskotslikviditet", "overskotsutdeling": "overskotsutdeling", "overskott": "overskott", "overskottsutdelning": "overskottsutdelning", "overskrevs": "overskrev", "overskride": "overskrid", "overskrides": "overskrid", "overskriding": "overskriding", "overskridingar": "overskriding", "overskriften": "overskrift", "overskudd": "overskudd", "overskuddene": "overskudd", "overskuddet": "overskudd", "overskuddsdeling": "overskuddsdeling", "overskuddsfond": "overskuddsfond", "overskuddsgods": "overskuddsgod", "overskuddstildeling": "overskuddstildeling", "overskuelig": "oversku", "overskytande": "overskyt", "overskytende": "overskyt", "overskyter": "overskyt", "overskøyting": "overskøyting", "overslaget": "overslag", "overstige": "overst", "overstiger": "overst", "oversvømmelsen": "oversvømm", "oversyn": "oversyn", "overta": "overt", "overtagelse": "overtag", "overtakande": "overtak", "overtakast": "overtak", "overtakende": "overtak", "overtaket": "overtak", "overtaking": "overtaking", "overtakinga": "overtaking", "overtale": "overtal", "overtaler": "overtal", "overtar": "overt", "overtatt": "overtatt", "overtek": "overtek", "overteke": "overtek", "overteken": "overtek", "overtekne": "overtekn", "overtid": "overtid", "overtidsbetaling": "overtidsbetaling", "overtok": "overtok", "overtredelse": "overtred", "overtyding": "overtyding", "overveielser": "overvei", "overvekt": "overvekt", "overvinne": "overvinn", "overvunne": "overvunn", "overvurdering": "overvurdering", "overvurdert": "overvurder", "overvurderte": "overvurder", "overvåking": "overvåking", "overvåkingen": "overvåking", "ovh": "ovh", "ovn": "ovn", "ownership": "ownership", "p": "p", "pa": "pa", "pakke": "pakk", "pakker": "pakk", "pakkes": "pakk", "pakket": "pakk", "palletert": "palleter", "pannen": "pann", "pant": "pant", "pantebrev": "pantebrev", "pantebreva": "pantebrev", "pantekravet": "pantekrav", "pantel": "pantel", "pantelova": "pant", "panteobjekt": "panteobjekt", "panterett": "panterett", "panterettane": "panterett", "panterettar": "panterett", "panteretten": "panterett", "pantesikra": "pantesikr", "pantesikring": "pantesikring", "pantet": "pant", "pantetrygd": "pantetrygd", "panthavar": "panthav", "panthavarane": "panthavar", "panthavarar": "panthavar", "panthavaren": "panthavar", "panthavarforhold": "panthavarforhold", "pantobjekt": "pantobjekt", "pantobjektet": "pantobjekt", "pantobligasjonane": "pantobligasjon", "pantobligasjonar": "pantobligasjon", "pantobligasjonen": "pantobligasjon", "pantsetjaren": "pantsetjar", "pantsetjast": "pantsetj", "pantsetje": "pantsetj", "pantsetjing": "pantsetjing", "pantsett": "pantsett", "pantsettelse": "pantsett", "pantsettes": "pantsett", "paper": "pap", "papir": "papir", "papireksport": "papireksport", "papirindustri": "papirindustri", "papirindustrien": "papirindustri", "papirvarer": "papirvar", "papp": "papp", "par": "par", "parabolantenna": "parabolantenn", "parabolantenner": "parabolantenn", "paradoks": "paradoks", "paradoksale": "paradoksal", "paragraf": "paragraf", "paragrafane": "paragraf", "paragrafar": "paragraf", "paragrafen": "paragraf", "paragrafens": "paragraf", "paragrafer": "paragraf", "parallell": "parallell", "parallellar": "parallell", "parallelle": "parallell", "parallellen": "parallell", "paralleller": "parallell", "parallelt": "parallelt", "parametere": "parameter", "parametre": "parametr", "parentes": "parent", "paret": "par", "parkeringsplass": "parkeringsplass", "part": "part", "partane": "part", "partar": "part", "parten": "part", "parter": "part", "parti": "parti", "partier": "parti", "partilast": "partil", "partnarar": "partnar", "partner": "partn", "partnerskap": "partnerskap", "partnerskapsliknende": "partnerskapslikn", "partsforhold": "partsforhold", "pass": "pass", "passande": "pass", "passar": "pass", "passasjerer": "passasjer", "passasjerfergene": "passasjerferg", "passasjerferjen": "passasjerferj", "passasjerferjene": "passasjerferj", "passasjerferjer": "passasjerferj", "passasjergrunnlag": "passasjergrunnlag", "passasjertrafikken": "passasjertrafikk", "passe": "pass", "passende": "pass", "passer": "pass", "passere": "passer", "passerer": "passer", "passering": "passering", "passerte": "passer", "passiv": "passiv", "passiva": "passiv", "passivitet": "passivit", "patterød": "patterød", "pause": "paus", "pausen": "paus", "pbe": "pbe", "pbes": "pbes", "pbl": "pbl", "peikast": "peik", "peike": "peik", "peiker": "peik", "peikt": "peikt", "peikte": "peikt", "peisen": "peis", "pek": "pek", "peke": "pek", "pekefinger": "pekefing", "pekepinn": "pekepinn", "peker": "pek", "pekes": "pek", "pekt": "pekt", "peler": "pel", "pels": "pel", "pendler": "pendl", "pene": "pen", "peneste": "penest", "pengane": "peng", "pengar": "peng", "penge": "peng", "pengefordringer": "pengefordring", "pengekrav": "pengekrav", "pengekreditorar": "pengekreditor", "pengemangel": "pengemangel", "penger": "peng", "pensionkostnader": "pensionkostnad", "pensions": "pension", "pensjon": "pensjon", "pensjonalderen": "pensjonalder", "pensjonen": "pensjon", "pensjonene": "pensjon", "pensjonenes": "pensjon", "pensjonens": "pensjon", "pensjoner": "pensjon", "pensjonering": "pensjonering", "pensjoneringstidspunktet": "pensjoneringstidspunkt", "pensjonerte": "pensjoner", "pensjonist": "pensjonist", "pensjonistbeskatningen": "pensjonistbeskatning", "pensjonistektepar": "pensjonistektep", "pensjonisten": "pensjonist", "pensjonistene": "pensjonist", "pensjonistenes": "pensjonist", "pensjonistens": "pensjonist", "pensjonister": "pensjonist", "pensjonists": "pensjonist", "pensjonisttilværelse": "pensjonisttilvær", "pensjonisttilværelsen": "pensjonisttilvær", "pensjonkapitalen": "pensjonkapital", "pensjonnivå": "pensjonnivå", "pensjons": "pensjon", "pensjonsalder": "pensjonsald", "pensjonsalderen": "pensjonsalder", "pensjonsaldersnormen": "pensjonsaldersnorm", "pensjonsaldre": "pensjonsaldr", "pensjonsavtale": "pensjonsavtal", "pensjonsavtalene": "pensjonsavtal", "pensjonsavtaler": "pensjonsavtal", "pensjonsbegrepet": "pensjonsbegrep", "pensjonsbehov": "pensjonsbehov", "pensjonsbehovet": "pensjonsbehov", "pensjonsbeløp": "pensjonsbeløp", "pensjonsberegningen": "pensjonsberegning", "pensjonsberettigede": "pensjonsberett", "pensjonsberettigedes": "pensjonsberett", "pensjonsbeskatning": "pensjonsbeskatning", "pensjonsbeskatningen": "pensjonsbeskatning", "pensjonsbevis": "pensjonsbevis", "pensjonsfond": "pensjonsfond", "pensjonsfondene": "pensjonsfond", "pensjonsforhold": "pensjonsforhold", "pensjonsforholdene": "pensjonsforhold", "pensjonsformer": "pensjonsform", "pensjonsformue": "pensjonsformu", "pensjonsformuen": "pensjonsformu", "pensjonsformål": "pensjonsformål", "pensjonsforpliktelse": "pensjonsforplikt", "pensjonsforpliktelser": "pensjonsforplikt", "pensjonsforsikring": "pensjonsforsikring", "pensjonsforsikringen": "pensjonsforsikring", "pensjonsforsikringer": "pensjonsforsikring", "pensjonsforsikringsavtale": "pensjonsforsikringsavtal", "pensjonsforsikringsavtaler": "pensjonsforsikringsavtal", "pensjonsforsikringskontrakt": "pensjonsforsikringskontrakt", "pensjonsforsikringskontrakter": "pensjonsforsikringskontrakt", "pensjonsforsikringsordning": "pensjonsforsikringsordning", "pensjonsforsikringsordninger": "pensjonsforsikringsordning", "pensjonsforsikringspremie": "pensjonsforsikringspremi", "pensjonsforsikringsutvalget": "pensjonsforsikringsutvalg", "pensjonsforum": "pensjonsforum", "pensjonsgivende": "pensjonsgiv", "pensjonsgrunnlaget": "pensjonsgrunnlag", "pensjonsinnbetaling": "pensjonsinnbetaling", "pensjonsinnbetalingene": "pensjonsinnbetaling", "pensjonsinnbetalinger": "pensjonsinnbetaling", "pensjonsinnretningen": "pensjonsinnretning", "pensjonsinnretningene": "pensjonsinnretning", "pensjonsinnskudd": "pensjonsinnskudd", "pensjonsinnskuddene": "pensjonsinnskudd", "pensjonsinnskuddenes": "pensjonsinnskudd", "pensjonsinnskuddet": "pensjonsinnskudd", "pensjonsinntekt": "pensjonsinntekt", "pensjonsintervallet": "pensjonsintervall", "pensjonskapital": "pensjonskapital", "pensjonskapitalbevis": "pensjonskapitalbevis", "pensjonskapitalbeviset": "pensjonskapitalbevis", "pensjonskapitalen": "pensjonskapital", "pensjonskapitalens": "pensjonskapital", "pensjonskapitalkonti": "pensjonskapitalkonti", "pensjonskapitalkontoen": "pensjonskapitalkonto", "pensjonskapitel": "pensjonskapitel", "pensjonskasse": "pensjonskass", "pensjonskasseforskriften": "pensjonskasseforskrift", "pensjonskassen": "pensjonskass", "pensjonskassene": "pensjonskass", "pensjonskassenes": "pensjonskass", "pensjonskassens": "pensjonskass", "pensjonskasser": "pensjonskass", "pensjonskassers": "pensjonskass", "pensjonskollektivet": "pensjonskollektiv", "pensjonskonti": "pensjonskonti", "pensjonskonto": "pensjonskonto", "pensjonskontoen": "pensjonskonto", "pensjonskostnaden": "pensjonskostnad", "pensjonskostnadene": "pensjonskostnad", "pensjonskostnader": "pensjonskostnad", "pensjonsløsninger": "pensjonsløsning", "pensjonsmessig": "pensjonsmess", "pensjonsmessige": "pensjonsmess", "pensjonsmidlene": "pensjonsmidl", "pensjonsmidler": "pensjonsmidl", "pensjonsnivå": "pensjonsnivå", "pensjonsnivåene": "pensjonsnivå", "pensjonsnivået": "pensjonsnivå", "pensjonsoppbygging": "pensjonsoppbygging", "pensjonsopptjening": "pensjonsopptjening", "pensjonsordning": "pensjonsordning", "pensjonsordningen": "pensjonsordning", "pensjonsordningene": "pensjonsordning", "pensjonsordningens": "pensjonsordning", "pensjonsordninger": "pensjonsordning", "pensjonsordningers": "pensjonsordning", "pensjonsordnings": "pensjonsordning", "pensjonspareavtaler": "pensjonspareavtal", "pensjonsparing": "pensjonsparing", "pensjonsplan": "pensjonsplan", "pensjonsplanen": "pensjonsplan", "pensjonsplanene": "pensjonsplan", "pensjonsplaner": "pensjonsplan", "pensjonspolitikk": "pensjonspolitikk", "pensjonspolitisk": "pensjonspolitisk", "pensjonspolitiske": "pensjonspolitisk", "pensjonsprosent": "pensjonsprosent", "pensjonsprosenten": "pensjonsprosent", "pensjonsreguleringsfond": "pensjonsreguleringsfond", "pensjonsreserve": "pensjonsreserv", "pensjonsrett": "pensjonsrett", "pensjonsrettigheten": "pensjonsrett", "pensjonsrettighetene": "pensjonsrett", "pensjonsrettigheter": "pensjonsrett", "pensjonssammenheng": "pensjonssammenheng", "pensjonsskyddscentralen": "pensjonsskyddscentral", "pensjonsspareavtale": "pensjonsspareavtal", "pensjonsspareavtalen": "pensjonsspareavtal", "pensjonsspareavtalene": "pensjonsspareavtal", "pensjonsspareavtaler": "pensjonsspareavtal", "pensjonsspareren": "pensjonssparer", "pensjonssparerens": "pensjonssparer", "pensjonssparing": "pensjonssparing", "pensjonssparingen": "pensjonssparing", "pensjonsspørsmål": "pensjonsspørsmål", "pensjonssystem": "pensjonssystem", "pensjonssystemene": "pensjonssystem", "pensjonssystemer": "pensjonssystem", "pensjonssystemet": "pensjonssystem", "pensjonstilbud": "pensjonstilbud", "pensjonstilfellet": "pensjonstilfell", "pensjonstilskudd": "pensjonstilskudd", "pensjonstilskuddet": "pensjonstilskudd", "pensjonsutbetaling": "pensjonsutbetaling", "pensjonsutbetalingen": "pensjonsutbetaling", "pensjonsutbetalingene": "pensjonsutbetaling", "pensjonsutbetalinger": "pensjonsutbetaling", "pensjonsutgifter": "pensjonsutgift", "pensjonsvilkår": "pensjonsvilkår", "pensjonsytelse": "pensjonsyt", "pensjonsytelsen": "pensjonsyt", "pensjonsytelsene": "pensjonsyt", "pensjonsytelser": "pensjonsyt", "pensjonsøyemed": "pensjonsøyemed", "pent": "pent", "per": "per", "periodar": "period", "periode": "period", "perioden": "period", "periodene": "period", "periodens": "period", "perioder": "period", "periodiseres": "periodiser", "periodiseringen": "periodisering", "periodiseringsprinsipp": "periodiseringsprinsipp", "periodiseringsprinsipper": "periodiseringsprinsipp", "periodisert": "periodiser", "periodisk": "periodisk", "periodiske": "periodisk", "permanens": "perman", "permanent": "permanent", "permanente": "permanent", "permisjon": "permisjon", "permisjonen": "permisjon", "permisjoner": "permisjon", "permisjonstiden": "permisjonstid", "permisjonstidspunktet": "permisjonstidspunkt", "permittering": "permittering", "permitteringer": "permittering", "permittert": "permitter", "permitterte": "permitter", "person": "person", "personane": "person", "personar": "person", "personbiler": "personbil", "personen": "person", "personene": "person", "personens": "person", "personer": "person", "personfellesskap": "personfellesskap", "persongrupper": "persongrupp", "personinntekt": "personinntekt", "personinntekten": "personinntekt", "personleg": "person", "personlege": "person", "personopplysningar": "personopplysning", "personskifte": "personskift", "persontrafikken": "persontrafikk", "perspektiv": "perspektiv", "perspektivene": "perspektiv", "perspektiver": "perspektiv", "perspektivet": "perspektiv", "persson": "persson", "peser": "pes", "pest": "pest", "peter": "pet", "peterson": "peterson", "petter": "pett", "pga": "pga", "philipps": "philipp", "piggeple": "piggepl", "pike": "pik", "piken": "pik", "pil": "pil", "pilen": "pil", "piler": "pil", "pilskudd": "pilskudd", "pimpesten": "pimpest", "pinefulle": "pinefull", "pinne": "pinn", "pinsler": "pinsl", "pipende": "pip", "piper": "pip", "pipete": "pipet", "pirret": "pirr", "pisker": "pisk", "pisser": "piss", "pjokk": "pjokk", "pjusket": "pjusk", "pjuskete": "pjusket", "pkt": "pkt", "plage": "plag", "plager": "plag", "plaget": "plag", "plagsam": "plagsam", "plan": "plan", "planane": "plan", "planar": "plan", "planarbeid": "planarbeid", "planarbeider": "planarbeid", "planarbeidet": "planarbeid", "plandokument": "plandokument", "planen": "plan", "planene": "plan", "planens": "plan", "planer": "plan", "planforutsetningene": "planforutsetning", "planforutsetninger": "planforutsetning", "plangrunnlag": "plangrunnlag", "plangrunnlaget": "plangrunnlag", "planhorisont": "planhorisont", "planhorisonter": "planhorisont", "planlagde": "planlagd", "planlagt": "planlagt", "planlagte": "planlagt", "planlegg": "planlegg", "planlegge": "planlegg", "planlegger": "planlegg", "planlegges": "planlegg", "planlegging": "planlegging", "planlegginga": "planlegging", "planleggingen": "planlegging", "planleggings": "planlegging", "planleggingsstadiet": "planleggingsstadi", "planleggingsvirksomhet": "planleggingsvirksom", "planleggje": "planleggj", "planlovgivningen": "planlovgivning", "planløsninger": "planløsning", "planmessig": "planmess", "planoppgave": "planoppgav", "planperioden": "planperiod", "planprosessen": "planprosess", "planrammen": "planramm", "planrammer": "planramm", "plansituasjonen": "plansituasjon", "planstatus": "planstatus", "planstyresmakt": "planstyresmakt", "plante": "plant", "planter": "plant", "plantet": "plant", "plantype": "plantyp", "planvedtak": "planvedtak", "plar": "plar", "plaske": "plask", "plasker": "plask", "plass": "plass", "plassen": "plass", "plasserast": "plasser", "plassere": "plasser", "plasserer": "plasser", "plasseres": "plasser", "plassering": "plassering", "plasseringa": "plassering", "plasseringar": "plassering", "plasseringen": "plassering", "plasseringer": "plassering", "plasseringsalternativer": "plasseringsalternativ", "plasseringsformene": "plasseringsform", "plasseringsformer": "plasseringsform", "plassert": "plasser", "plasserte": "plasser", "plattform": "plattform", "pleie": "pleie", "pleier": "pleier", "plenumsmøter": "plenumsmøt", "plikt": "plikt", "plikta": "plikt", "pliktbrot": "pliktbrot", "plikten": "plikt", "pliktene": "plikt", "plikter": "plikt", "pliktet": "plikt", "pliktig": "plikt", "pliktige": "plikt", "plm": "plm", "plogen": "plog", "pludder": "pludd", "plukke": "plukk", "plukket": "plukk", "pluss": "pluss", "plutselig": "pluts", "plystrer": "plystr", "pløyer": "pløyer", "poeng": "poeng", "poenget": "poeng", "poenghistorie": "poenghistori", "poetisk": "poetisk", "poetiske": "poetisk", "polisen": "polis", "politikk": "politikk", "politikken": "politikk", "politikkområde": "politikkområd", "politikkområder": "politikkområd", "politisk": "politisk", "politiske": "politisk", "porsgrunn": "porsgrunn", "port": "port", "portefølje": "portefølj", "porteføljen": "portefølj", "porteføljer": "portefølj", "porteføljesammensetningen": "porteføljesammensetning", "porten": "port", "portnerservice": "portnerservic", "ports": "port", "portstolper": "portstolp", "portvakt": "portvakt", "posisjon": "posisjon", "posisjonar": "posisjon", "posisjonen": "posisjon", "posisjonere": "posisjoner", "posisjoneres": "posisjoner", "posisjonering": "posisjonering", "posisjonert": "posisjoner", "positiv": "positiv", "positive": "positiv", "positivt": "positiv", "post": "post", "postadresse": "postadress", "postkassene": "postkass", "postselskaper": "postselskap", "poten": "pot", "potensial": "potensial", "potensiale": "potensial", "potensialene": "potensial", "potensialet": "potensial", "potensiell": "potensiell", "potensielle": "potensiell", "potensielt": "potensielt", "pr": "pr", "praksis": "praksis", "praksisen": "praksis", "praksisens": "praksis", "praktiserbart": "praktiserbart", "praktiserer": "praktiser", "praktisering": "praktisering", "praktiseringa": "praktisering", "praktiseringen": "praktisering", "praktisert": "praktiser", "praktisk": "praktisk", "praktiske": "praktisk", "prammen": "pramm", "prat": "prat", "preferanser": "preferans", "prefereres": "preferer", "preg": "preg", "prega": "preg", "preges": "preg", "preget": "preg", "preklusiv": "preklusiv", "preklusivt": "preklusiv", "prekær": "prekær", "prekære": "prekær", "preller": "prell", "premiar": "premi", "premie": "premi", "premiebeløp": "premiebeløp", "premiebeløpene": "premiebeløp", "premieberegning": "premieberegning", "premieberegningen": "premieberegning", "premiebetaling": "premiebetaling", "premiebetalingen": "premiebetaling", "premiebetalinger": "premiebetaling", "premiebetalingsperiodens": "premiebetalingsperiod", "premiebetalingstiden": "premiebetalingstid", "premiefastsettelsen": "premiefastsett", "premiefond": "premiefond", "premiefondet": "premiefond", "premiefondets": "premiefond", "premiefondsmidlene": "premiefondsmidl", "premiefondsmidler": "premiefondsmidl", "premiefritak": "premiefritak", "premiefritaket": "premiefritak", "premieinnbetaling": "premieinnbetaling", "premieinnbetalingar": "premieinnbetaling", "premieinnbetalingen": "premieinnbetaling", "premieinnbetalingene": "premieinnbetaling", "premieinnbetalinger": "premieinnbetaling", "premien": "premi", "premiene": "premi", "premier": "premi", "premiereserve": "premiereserv", "premiereserven": "premiereserv", "premieskatteloven": "premieskatt", "premieskatten": "premieskatt", "premietariffene": "premietariff", "premieøkningene": "premieøkning", "premiss": "premiss", "premissane": "premiss", "premissar": "premiss", "premissene": "premiss", "premisser": "premiss", "presentasjon": "presentasjon", "presentasjonen": "presentasjon", "presentere": "presenter", "presenterer": "presenter", "presenteres": "presenter", "presentert": "presenter", "presenterte": "presenter", "presisere": "presiser", "presiserer": "presiser", "presiseres": "presiser", "presisering": "presisering", "presiseringa": "presisering", "presiseringen": "presisering", "presisert": "presiser", "presisjon": "presisjon", "presist": "presist", "press": "press", "pressede": "press", "presser": "press", "presserende": "presser", "presses": "press", "presset": "press", "presstendenser": "presstendens", "presumptivt": "presumptiv", "preventivt": "preventiv", "previdenza": "previdenz", "prikk": "prikk", "primære": "primær", "primært": "primært", "prinsessen": "prinsess", "prinsipalt": "prinsipalt", "prinsipiell": "prinsipiell", "prinsipielle": "prinsipiell", "prinsipielt": "prinsipielt", "prinsipp": "prinsipp", "prinsippa": "prinsipp", "prinsippene": "prinsipp", "prinsipper": "prinsipp", "prinsippet": "prinsipp", "prinsippforskjeller": "prinsippforskjell", "prinsippføresegn": "prinsippføresegn", "priori": "priori", "prioritere": "prioriter", "prioriteres": "prioriter", "prioritering": "prioritering", "prioriteringer": "prioritering", "prioritert": "prioriter", "prioriterte": "prioriter", "prioritet": "priorit", "prioritetar": "prioritet", "prioriteten": "prioritet", "prioritetsendringar": "prioritetsendring", "prioritetsreglane": "prioritetsregl", "prioritetsreglar": "prioritetsregl", "prioritetsviking": "prioritetsviking", "pris": "pris", "prisane": "pris", "prisar": "pris", "prisavslag": "prisavslag", "prisdanninga": "prisdanning", "prisen": "pris", "prisene": "pris", "priser": "pris", "prises": "pris", "priset": "pris", "prisfastsetjing": "prisfastsetjing", "prising": "prising", "prisingen": "prising", "prisklasse": "prisklass", "prisklausular": "prisklausul", "priskonkurranse": "priskonkurrans", "prisnivå": "prisnivå", "prisnivået": "prisnivå", "prisreglane": "prisregl", "prisreglar": "prisregl", "prisregulering": "prisregulering", "prisreguleringa": "prisregulering", "prisregulert": "prisreguler", "prissetjinga": "prissetjing", "prissetting": "prissetting", "prisskilnader": "prisskilnad", "prisstiging": "prisstiging", "prisstigning": "prisstigning", "prisstigningen": "prisstigning", "prisvilkår": "prisvilkår", "privat": "privat", "privatdisponibel": "privatdisponibel", "private": "privat", "privatrett": "privatrett", "privatrettslege": "privatretts", "privatrettslig": "privatretts", "problem": "problem", "problematikken": "problematikk", "problematisk": "problematisk", "problemene": "problem", "problemer": "problem", "problemet": "problem", "problemstilling": "problemstilling", "problemstillinga": "problemstilling", "problemstillingane": "problemstilling", "problemstillingar": "problemstilling", "problemstillingen": "problemstilling", "problemstillingene": "problemstilling", "problemstillinger": "problemstilling", "prod": "prod", "produksjon": "produksjon", "produksjonen": "produksjon", "produksjons": "produksjon", "produksjonsanlegg": "produksjonsanlegg", "produksjonsbedrifter": "produksjonsbedrift", "produksjonsgrunnlag": "produksjonsgrunnlag", "produksjonskapasitet": "produksjonskapasit", "produksjonskostnader": "produksjonskostnad", "produksjonsleddet": "produksjonsledd", "produksjonsmønster": "produksjonsmønst", "produksjonsmønstre": "produksjonsmønstr", "produksjonsområde": "produksjonsområd", "produksjonssted": "produksjonssted", "produksjonsvirksomhet": "produksjonsvirksom", "produksjonsvirksomheter": "produksjonsvirksom", "produkt": "produkt", "produkta": "produkt", "produkter": "produkt", "produktive": "produktiv", "produktkrav": "produktkrav", "produktpris": "produktpris", "produktspesialisering": "produktspesialisering", "produsent": "produsent", "produsenter": "produsent", "produsentleddet": "produsentledd", "produsentorganisasjonar": "produsentorganisasjon", "produsere": "produser", "profesjonalitet": "profesjonalit", "profesjonell": "profesjonell", "profesjonelle": "profesjonell", "profesjonelt": "profesjonelt", "profesjonsvis": "profesjonsvis", "professor": "professor", "profil": "profil", "profilen": "profil", "profilene": "profil", "profiler": "profil", "proforma": "proform", "proformaselskaper": "proformaselskap", "prognose": "prognos", "prognosealternativet": "prognosealternativ", "prognosearbeid": "prognosearbeid", "prognosearbeider": "prognosearbeid", "prognoseformål": "prognoseformål", "prognosemakeren": "prognosemaker", "prognosen": "prognos", "prognosene": "prognos", "prognoser": "prognos", "prognoseresultater": "prognoseresultat", "programkategorien": "programkategori", "programmene": "programm", "programmer": "programm", "progressiv": "progressiv", "proklama": "proklam", "prokura": "prokur", "prokuralova": "prokura", "prop": "prop", "property": "property", "proposisjon": "proposisjon", "proposisjonen": "proposisjon", "proratarisk": "proratarisk", "prosedyre": "prosedyr", "prosent": "prosent", "prosentandel": "prosentandel", "prosentandelen": "prosentandel", "prosentdel": "prosentdel", "prosenten": "prosent", "prosentene": "prosent", "prosentfordelingene": "prosentfordeling", "prosentpoeng": "prosentpoeng", "prosentsats": "prosentsat", "prosentsatsen": "prosentsats", "prosentsatser": "prosentsats", "prosentvis": "prosentvis", "prosentvise": "prosentvis", "prosess": "prosess", "prosessen": "prosess", "prosjekt": "prosjekt", "prosjekta": "prosjekt", "prosjektene": "prosjekt", "prosjekter": "prosjekt", "prosjektet": "prosjekt", "prosjektrapport": "prosjektrapport", "prospekt": "prospekt", "protesterer": "protester", "protokoll": "protokoll", "protokollar": "protokoll", "protokollen": "protokoll", "protokollføring": "protokollføring", "proveny": "proveny", "provenymessige": "provenymess", "provenytap": "provenytap", "provenytapet": "provenytap", "provenyvirkningen": "provenyvirkning", "provenyvirkningene": "provenyvirkning", "provisjon": "provisjon", "prp": "prp", "prufungsverbande": "prufungsverb", "pruster": "prust", "prøv": "prøv", "prøvast": "prøv", "prøvd": "prøvd", "prøvde": "prøvd", "prøve": "prøv", "prøver": "prøv", "prøves": "prøv", "prøving": "prøving", "prøvt": "prøvt", "pst": "pst", "psykisk": "psykisk", "psykiske": "psykisk", "pubblici": "pubblici", "publikum": "publikum", "publisert": "publiser", "puff": "puff", "pung": "pung", "pungen": "pung", "punkt": "punkt", "punkta": "punkt", "punktanslag": "punktanslag", "punktene": "punkt", "punkter": "punkt", "punktet": "punkt", "punktlighet": "punkt", "punktum": "punktum", "punktumet": "punktum", "puslespillbrikker": "puslespillbrikk", "puslete": "puslet", "pusling": "pusling", "pust": "pust", "puste": "pust", "pusten": "pust", "puster": "pust", "pyntet": "pynt", "pyse": "pys", "på": "på", "påbegynner": "påbegynn", "påbegynnes": "påbegynn", "påbod": "påbod", "påboda": "påbod", "påbode": "påbod", "påboden": "påbod", "påbodet": "påbod", "påbodne": "påbodn", "påby": "påby", "påbygging": "påbygging", "påbyggingssaker": "påbyggingssak", "pådra": "pådr", "pådrage": "pådrag", "pådregne": "pådregn", "pådriv": "pådriv", "påfølgende": "påfølg", "påførast": "påfør", "påføre": "påfør", "påfører": "påfør", "påføres": "påfør", "påført": "påført", "pågående": "pågå", "pågår": "pågår", "pågått": "pågått", "påhefta": "påheft", "påhefte": "påheft", "påhviler": "påhvil", "påkjærast": "påkjær", "påklages": "påklag", "påkommende": "påkomm", "påkostingar": "påkosting", "påkostning": "påkostning", "påkostninger": "påkostning", "påkrav": "påkrav", "påkrevet": "påkrev", "pål": "pål", "påla": "pål", "pålagde": "pålagd", "pålagt": "pålagt", "pålagte": "pålagt", "pålegg": "pålegg", "pålegga": "pålegg", "pålegge": "pålegg", "pålegger": "pålegg", "pålegges": "pålegg", "pålegget": "pålegg", "påleggjast": "påleggj", "påleggje": "påleggj", "påleggskompetanse": "påleggskompetans", "pålitelege": "pålit", "pålitelig": "pålit", "pålitelige": "pålit", "pålitelighet": "pålit", "pålydande": "pålyd", "pålydende": "pålyd", "påløpe": "påløp", "påløper": "påløp", "påløpt": "påløpt", "påløpte": "påløpt", "påmelde": "påmeld", "påminning": "påminning", "påpeikt": "påpeikt", "påpeke": "påpek", "påpeker": "påpek", "påpekes": "påpek", "påpeking": "påpeking", "påpekningen": "påpekning", "påpekt": "påpekt", "pårekneleg": "pårekn", "påse": "pås", "påslag": "påslag", "påstand": "påstand", "påstått": "påstått", "påta": "påt", "påtale": "påtal", "påtar": "påt", "påtatt": "påtatt", "påtegning": "påtegning", "påtrengende": "påtreng", "påvente": "påvent", "påverka": "påverk", "påverkar": "påverk", "påverke": "påverk", "påverknaden": "påverknad", "påvirke": "påvirk", "påvirker": "påvirk", "påvirkes": "påvirk", "påvirket": "påvirk", "påvirkning": "påvirkning", "påvisast": "påvis", "påvise": "påvis", "påvist": "påvist", "pøse": "pøs", "quorum": "quorum", "r": "r", "rabalder": "rabald", "rabattar": "rabatt", "rabattavtalar": "rabattavtal", "rabatten": "rabatt", "rabattordningar": "rabattordning", "rad": "rad", "radar": "rad", "radardekning": "radardekning", "radarovervåkningen": "radarovervåkning", "radarseilas": "radarseil", "radarutrustning": "radarutrustning", "raden": "rad", "rader": "rad", "radikalt": "radikalt", "radio": "radio", "radiokommunikasjon": "radiokommunikasjon", "ragnarok": "ragnarok", "rail": "rail", "rake": "rak", "raker": "rak", "rakk": "rakk", "rakkestadsvingen": "rakkestadsving", "ramlende": "raml", "ramler": "raml", "ramma": "ramm", "ramme": "ramm", "rammeavtale": "rammeavtal", "rammebetingelsene": "rammebeting", "rammebetingelser": "rammebeting", "rammelovgiving": "rammelovgiving", "rammen": "ramm", "rammene": "ramm", "rammeprogram": "rammeprogram", "rammeprogrammet": "rammeprogramm", "rammer": "ramm", "rammes": "ramm", "rammet": "ramm", "rammeverk": "rammeverk", "rammeverket": "rammeverk", "rammevilkår": "rammevilkår", "rammevilkåra": "rammevilkår", "ramper": "ramp", "ramse": "rams", "ramser": "rams", "randbebyggelsen": "randbebygg", "randi": "randi", "randsonen": "randson", "range": "rang", "rangeres": "ranger", "rangering": "rangering", "rangt": "rangt", "rank": "rank", "rant": "rant", "raper": "rap", "rappkjeftet": "rappkjeft", "rapport": "rapport", "rapporten": "rapport", "rapportering": "rapportering", "rar": "rar", "rart": "rart", "ras": "ras", "rasa": "ras", "rase": "ras", "rasende": "ras", "raser": "ras", "raseri": "raseri", "raset": "ras", "rasjonaliseringsgevinster": "rasjonaliseringsgevinst", "rasjonaliseringsvinstar": "rasjonaliseringsvinst", "rasjonell": "rasjonell", "rasjonelle": "rasjonell", "rasjonelt": "rasjonelt", "rask": "rask", "raske": "rask", "raskere": "rasker", "raskt": "raskt", "rastløs": "rastløs", "rastløse": "rastløs", "rastløsheten": "rastløs", "ratatosk": "ratatosk", "rate": "rat", "rateforsikring": "rateforsikring", "rateforsikringer": "rateforsikring", "rateoppsparing": "rateoppsparing", "rateordningene": "rateordning", "ratten": "ratt", "raudung": "raudung", "raus": "raus", "ravneguden": "ravnegud", "ravnene": "ravn", "ravner": "ravn", "rdir": "rdir", "reaksjoner": "reaksjon", "realavkastning": "realavkastning", "realavkastnings": "realavkastning", "realindeksert": "realindekser", "realisasjon": "realisasjon", "realisasjonen": "realisasjon", "realisere": "realiser", "realiserer": "realiser", "realiseres": "realiser", "realisering": "realisering", "realisert": "realiser", "realiserte": "realiser", "realismen": "realism", "realistisk": "realistisk", "realistiske": "realistisk", "realitet": "realit", "realitetane": "realitet", "realiteten": "realitet", "realitetene": "realitet", "realitetsendring": "realitetsendring", "realitetsforskjell": "realitetsforskjell", "realitetsspørsmåla": "realitetsspørsmål", "realitetsvotering": "realitetsvotering", "reallønnsvekst": "reallønnsvekst", "realregister": "realregist", "realregistera": "realregister", "realregistrerte": "realregistrer", "realrenteavgift": "realrenteavgift", "realrenteavgiften": "realrenteavgift", "recent": "recent", "red": "red", "redd": "redd", "redde": "redd", "redder": "redd", "reddest": "reddest", "reddhare": "reddhar", "rede": "red", "redegjort": "redegjort", "redegjøre": "redegjør", "redegjørelse": "redegjør", "redelig": "red", "rederi": "rederi", "rederiene": "rederi", "rederienes": "rederi", "rederier": "rederi", "rederiforbund": "rederiforbund", "rederinæringen": "rederinæring", "redistribueres": "redistribuer", "redsel": "redsel", "redselshjelm": "redselshjelm", "redskap": "redskap", "redskapene": "redskap", "redskapet": "redskap", "reduksjon": "reduksjon", "reduksjonen": "reduksjon", "reduserast": "reduser", "redusere": "reduser", "reduserer": "reduser", "reduseres": "reduser", "redusering": "redusering", "redusert": "reduser", "reduserte": "reduser", "reell": "reell", "reelle": "reell", "reelt": "reelt", "referansegruppe": "referansegrupp", "referansegruppen": "referansegrupp", "referat": "referat", "refererer": "referer", "refereres": "referer", "refererte": "referer", "reflektere": "reflekter", "reflekterer": "reflekter", "reflektert": "reflekter", "refse": "refs", "refundert": "refunder", "refusjon": "refusjon", "regel": "regel", "regelen": "regel", "regelendringar": "regelendring", "regelene": "regel", "regelmessige": "regelmess", "regelsetta": "regelsett", "regelutforming": "regelutforming", "regelverk": "regelverk", "regelverkene": "regelverk", "regelverket": "regelverk", "regelverkets": "regelverk", "regelverksutforming": "regelverksutforming", "regi": "regi", "regin": "regin", "region": "region", "regional": "regional", "regionaldepartementet": "regionaldepartement", "regionale": "regional", "regionalplanlegging": "regionalplanlegging", "regionalpolitikken": "regionalpolitikk", "regionalpolitisk": "regionalpolitisk", "regionalpolitiske": "regionalpolitisk", "regionalsjef": "regionalsjef", "regionalt": "regionalt", "regionaløkonomiske": "regionaløkonomisk", "regionane": "region", "regionen": "region", "regionene": "region", "regionens": "region", "regioner": "region", "regionforskning": "regionforskning", "regionstyresmaktene": "regionstyresmakt", "register": "regist", "registera": "register", "registereigaren": "registereigar", "registeret": "register", "registerføraren": "registerførar", "registerordning": "registerordning", "registerspørsmålet": "registerspørsmål", "registert": "register", "registerutskrift": "registerutskrift", "registrerast": "registrer", "registrere": "registrer", "registrerer": "registrer", "registreres": "registrer", "registrering": "registrering", "registreringa": "registrering", "registreringane": "registrering", "registreringer": "registrering", "registreringsdag": "registreringsdag", "registreringsdagen": "registreringsdag", "registreringsfeil": "registreringsfeil", "registreringsordning": "registreringsordning", "registreringsordninga": "registreringsordning", "registreringsordningane": "registreringsordning", "registreringsordningar": "registreringsordning", "registreringsreglane": "registreringsregl", "registreringstidspunktet": "registreringstidspunkt", "registrert": "registrer", "registrerte": "registrer", "regjering": "regjering", "regjeringa": "regjering", "regjeringen": "regjering", "regjeringens": "regjering", "regjeringspartiene": "regjeringsparti", "regjerningen": "regjerning", "reglane": "regl", "reglar": "regl", "reglementet": "reglement", "reglene": "regl", "regler": "regl", "regn": "regn", "regnbue": "regnbu", "regnbuebroen": "regnbuebro", "regnbuen": "regnbu", "regne": "regn", "regneeksempler": "regneeksempl", "regner": "regn", "regnes": "regn", "regnet": "regn", "regnskap": "regnskap", "regnskapene": "regnskap", "regnskaper": "regnskap", "regnskapet": "regnskap", "regnskapsavleggelse": "regnskapsavlegg", "regnskapsføring": "regnskapsføring", "regnskapskontrollør": "regnskapskontrollør", "regnskapslov": "regnskap", "regnskapsloven": "regnskap", "regnskapslovens": "regnskap", "regnskapslovutvalget": "regnskapslovutvalg", "regnskapsplikt": "regnskapsplikt", "regnskapsplikten": "regnskapsplikt", "regnskapspliktiges": "regnskapsplikt", "regnskapsprinsipper": "regnskapsprinsipp", "regnskapsprinsippet": "regnskapsprinsipp", "regnskapsreglene": "regnskapsregl", "regnskapsregler": "regnskapsregl", "regnskapsskikk": "regnskapsskikk", "regnskapsstandarden": "regnskapsstandard", "regnskapsår": "regnskapsår", "regnskapsåret": "regnskapsår", "regnvåte": "regnvåt", "regnvær": "regnvær", "regress": "regress", "regresskrav": "regresskrav", "regressomgangen": "regressomgang", "regularitet": "regularit", "regulariteten": "regularitet", "regularitetsproblemer": "regularitetsproblem", "regulerast": "reguler", "regulere": "reguler", "regulerer": "reguler", "reguleres": "reguler", "regulering": "regulering", "reguleringa": "regulering", "reguleringen": "regulering", "reguleringsforslag": "reguleringsforslag", "reguleringskonflikter": "reguleringskonflikt", "reguleringsmekanismene": "reguleringsmekanism", "reguleringsmekanismer": "reguleringsmekanism", "reguleringsmessig": "reguleringsmess", "reguleringsmessige": "reguleringsmess", "reguleringsmyndighet": "reguleringsmynd", "reguleringsplan": "reguleringsplan", "reguleringsplanarbeidet": "reguleringsplanarbeid", "reguleringsplanen": "reguleringsplan", "reguleringsplaner": "reguleringsplan", "reguleringsplanforslagets": "reguleringsplanforslag", "reguleringsplannivå": "reguleringsplannivå", "reguleringssaker": "reguleringssak", "reguleringstiltak": "reguleringstiltak", "reguleringsvedtak": "reguleringsvedtak", "regulert": "reguler", "regulerte": "reguler", "regulær": "regulær", "regulære": "regulær", "rehabilitering": "rehabilitering", "reidmar": "reidm", "reidmars": "reidmar", "rein": "rein", "reine": "rein", "reinertsen": "reinerts", "reinsing": "reinsing", "reint": "reint", "reinvestere": "reinvester", "reinvesteres": "reinvester", "reinvestering": "reinvestering", "reinvesteringsadgang": "reinvesteringsadgang", "reinvesteringsadgangen": "reinvesteringsadgang", "reinvesterte": "reinvester", "reis": "reis", "reisast": "reis", "reise": "reis", "reiseaktivitet": "reiseaktivit", "reisebyrå": "reisebyrå", "reisefeller": "reisefell", "reisefølget": "reisefølg", "reiseklare": "reiseklar", "reisen": "reis", "reisene": "reis", "reiser": "reis", "reises": "reis", "reising": "reising", "reist": "reist", "rekalkuleres": "rekalkuler", "rekende": "rek", "rekk": "rekk", "rekke": "rekk", "rekker": "rekk", "rekkevidden": "rekkevidd", "rekkje": "rekkj", "rekkjefølgja": "rekkjefølgj", "rekkjefølgje": "rekkjefølgj", "rekkjehus": "rekkjehus", "rekkjevidda": "rekkjevidd", "reklamasjonar": "reklamasjon", "reklamasjonsfristar": "reklamasjonsfrist", "reklamasjonsnemnder": "reklamasjonsnemnd", "rekna": "rekn", "reknar": "rekn", "reknast": "rekn", "rekne": "rekn", "rekneskap": "rekneskap", "rekneskapane": "rekneskap", "rekneskapen": "rekneskap", "rekneskapsførsel": "rekneskapsførsel", "rekneskapskunnige": "rekneskapskunn", "rekneskapslova": "rekneskap", "rekneskapsmateriale": "rekneskapsmaterial", "rekneskapsopplysningar": "rekneskapsopplysning", "rekneskapsplikt": "rekneskapsplikt", "rekneskapsrapportering": "rekneskapsrapportering", "rekneskapsregisteret": "rekneskapsregister", "rekneskapsreglane": "rekneskapsregl", "rekneskapsreglar": "rekneskapsregl", "rekneskapsskikk": "rekneskapsskikk", "rekneskapsår": "rekneskapsår", "rekneskapsåret": "rekneskapsår", "reknestykket": "reknestykk", "rekning": "rekning", "rekningsbasis": "rekningsbasis", "rekningsprinsipp": "rekningsprinsipp", "rekningsprinsippet": "rekningsprinsipp", "rekningssvarande": "rekningssvar", "rekreasjon": "rekreasjon", "rekreasjonsformål": "rekreasjonsformål", "rekreasjonsverdier": "rekreasjonsverdi", "relasjoner": "relasjon", "relatert": "relater", "relativ": "relativ", "relative": "relativ", "relativt": "relativ", "relevans": "relevan", "relevant": "relevant", "relevante": "relevant", "religiøs": "religiøs", "rem": "rem", "remmen": "remm", "ren": "ren", "rene": "ren", "rengjøring": "rengjøring", "renkespill": "renkespill", "renn": "renn", "renne": "renn", "renner": "renn", "renovering": "renovering", "rent": "rent", "renta": "rent", "rente": "rent", "renteavkastning": "renteavkastning", "rentebetingelser": "rentebeting", "rentefastsettelsen": "rentefastsett", "renteforsikring": "renteforsikring", "renteforsikringer": "renteforsikring", "rentefot": "rentefot", "renteinntektene": "renteinntekt", "renteinntekter": "renteinntekt", "rentelova": "rent", "rentemargin": "rentemargin", "rentemarkedet": "rentemarked", "renten": "rent", "rentenivå": "rentenivå", "renteoppgaver": "renteoppgav", "renter": "rent", "rentesatser": "rentesats", "rentesrente": "rentesrent", "rentevilkår": "rentevilkår", "reparasjon": "reparasjon", "reparasjonane": "reparasjon", "reparasjonar": "reparasjon", "reparasjonsverksted": "reparasjonsverksted", "reparere": "reparer", "reparerer": "reparer", "representant": "representant", "representantane": "representant", "representantar": "representant", "representanten": "representant", "representantene": "representant", "representanter": "representant", "representantskap": "representantskap", "representantskapet": "representantskap", "representantskapets": "representantskap", "representasjon": "representasjon", "representasjonen": "representasjon", "representasjonsrett": "representasjonsrett", "representativ": "representativ", "representative": "representativ", "representativitet": "representativit", "representativt": "representativ", "representer": "represent", "representere": "representer", "representerer": "representer", "representert": "representer", "representerte": "representer", "rere": "rer", "res": "res", "reservar": "reserv", "reservasjonen": "reservasjon", "reservasjoner": "reservasjon", "reservatets": "reservat", "reserve": "reserv", "reservefond": "reservefond", "reserver": "reserv", "reservere": "reserver", "reserveregel": "reserveregel", "reservert": "reserver", "reserverte": "reserver", "resolusjon": "resolusjon", "respekt": "respekt", "respekterast": "respekter", "respektere": "respekter", "respektert": "respekter", "respektive": "respektiv", "ressurs": "ressur", "ressursane": "ressurs", "ressursbruk": "ressursbruk", "ressursbruken": "ressursbruk", "ressurseffektiv": "ressurseffektiv", "ressursene": "ressurs", "ressurser": "ressurs", "ressursinnsats": "ressursinnsat", "ressurskrevende": "ressurskrev", "ressursomsyna": "ressursomsyn", "ressursutnyttelse": "ressursutnytt", "ressursutnytting": "ressursutnytting", "restansane": "restans", "restansar": "restans", "resten": "rest", "restene": "rest", "resterende": "rester", "restgjelda": "restgjeld", "restriksjonar": "restriksjon", "restriksjoner": "restriksjon", "restruktureringene": "restrukturering", "resultat": "resultat", "resultatavhengig": "resultatavheng", "resultatene": "resultat", "resultater": "resultat", "resultatet": "resultat", "resultatlikhet": "resultatlik", "resultatmessig": "resultatmess", "resultatmessige": "resultatmess", "resultatregnskap": "resultatregnskap", "resultatutviklinga": "resultatutvikling", "resultere": "resulter", "resulterer": "resulter", "resursbruk": "resursbruk", "retning": "retning", "retninger": "retning", "retningsbalanse": "retningsbalans", "retningsbalansen": "retningsbalans", "retningsgivende": "retningsgiv", "retningsgiver": "retningsgiv", "retningslina": "retningslin", "retningslinene": "retningslin", "retningsliner": "retningslin", "retningslinje": "retningslinj", "retningslinjene": "retningslinj", "retningslinjer": "retningslinj", "retningsubalanse": "retningsubalans", "rett": "rett", "retta": "rett", "rettane": "rett", "rettar": "rett", "rettargangslovgjevinga": "rettargangslovgjeving", "rettast": "rett", "rettaste": "rettast", "rette": "rett", "rettede": "rett", "retteleg": "rett", "retten": "rett", "retter": "rett", "rettes": "rett", "rettet": "rett", "rettferd": "rettferd", "rettferdig": "rettferd", "rettferdighet": "rettferd", "rettferdighetsideal": "rettferdighetsideal", "rettigheten": "rett", "rettighetene": "rett", "rettigheter": "rett", "rettighetsforholdene": "rettighetsforhold", "rettighetshaver": "rettighetshav", "rettighetshaveren": "rettighetshaver", "rettighetsregister": "rettighetsregist", "retting": "retting", "rettinga": "retting", "rettkjende": "rettkj", "rettkomen": "rettkom", "rettleiande": "rettlei", "rettleiing": "rettleiing", "rettsavgjerd": "rettsavgjerd", "rettsavgjerder": "rettsavgjerd", "rettserverv": "rettserverv", "rettservervet": "rettserverv", "rettsforhold": "rettsforhold", "rettsforholda": "rettsforhold", "rettsforholdet": "rettsforhold", "rettsgebyr": "rettsgebyr", "rettsgebyret": "rettsgebyr", "rettsgebyrlova": "rettsgebyr", "rettshavar": "rettshav", "rettshavarane": "rettshavar", "rettshavaren": "rettshavar", "rettskraft": "rettskraft", "rettskraftig": "rettskraft", "rettskraftverknad": "rettskraftverknad", "rettsleg": "retts", "rettslege": "retts", "rettslig": "retts", "rettsmekling": "rettsmekling", "rettsovergang": "rettsovergang", "rettspraksis": "rettspraksis", "rettsregister": "rettsregist", "rettsregistera": "rettsregister", "rettsregisteret": "rettsregister", "rettsregistrering": "rettsregistrering", "rettsregler": "rettsregl", "rettssak": "rettssak", "rettsspørsmål": "rettsspørsmål", "rettsstiftelser": "rettsstift", "rettsstifting": "rettsstifting", "rettsstiftingane": "rettsstifting", "rettsstiftingar": "rettsstifting", "rettsstilling": "rettsstilling", "rettsstillinga": "rettsstilling", "rettsstoffet": "rettsstoff", "rettssubjekt": "rettssubjekt", "rettssubjekter": "rettssubjekt", "rettstilstand": "rettstilstand", "rettstilstanden": "rettstilstand", "rettsuvisse": "rettsuviss", "rettsverknadene": "rettsverknad", "rettsverknader": "rettsverknad", "rettsvern": "rettsvern", "rettsvernakt": "rettsvernakt", "rettsvernet": "rettsvern", "rettsvernreglane": "rettsvernregl", "rettsvirkninger": "rettsvirkning", "returkommisjonar": "returkommisjon", "returlast": "returl", "returprovisjonar": "returprovisjon", "returreisen": "returreis", "rev": "rev", "reversering": "reversering", "reversibel": "reversibel", "revestreker": "revestrek", "revet": "rev", "reviderast": "revider", "revidert": "revider", "reviderte": "revider", "revierhavna": "revierhavn", "revisjon": "revisjon", "revisjonen": "revisjon", "revisjonsmelding": "revisjonsmelding", "revisjonsmeldinga": "revisjonsmelding", "revisjonsplikt": "revisjonsplikt", "revisor": "revisor", "revisorar": "revisor", "revisorers": "revisor", "revisorfråsegn": "revisorfråsegn", "revisorlova": "revisor", "revisormelding": "revisormelding", "revisoroppdraget": "revisoroppdrag", "revisors": "revisor", "revner": "revn", "revurdering": "revurdering", "ri": "ri", "ridd": "ridd", "ridekunst": "ridekunst", "ridende": "rid", "rideredskap": "rideredskap", "ridetur": "ridetur", "rig": "rig", "rigger": "rigg", "rigide": "rigid", "rik": "rik", "rikdom": "rikdom", "rike": "rik", "rikelig": "rik", "rikeste": "rikest", "riket": "rik", "rikke": "rikk", "riksbyggen": "riksbygg", "riksdagens": "riksdag", "riksdekkende": "riksdekk", "riksforbund": "riksforbund", "riksgrensen": "riksgrens", "riksnivå": "riksnivå", "rikspolitiske": "rikspolitisk", "riksveg": "riksveg", "riksveger": "riksveg", "riksvegforbindelse": "riksvegforbind", "riksvegnettet": "riksvegnett", "riksvegplaner": "riksvegplan", "riktig": "rikt", "riktige": "rikt", "riktignok": "riktignok", "rim": "rim", "rimeleg": "rim", "rimelegare": "rimelegar", "rimelege": "rim", "rimelig": "rim", "rimelige": "rim", "rimelighet": "rim", "rimet": "rim", "rimfakse": "rimfaks", "rimfrost": "rimfrost", "rimgrimne": "rimgrimn", "rimkledde": "rimkledd", "rimlaget": "rimlag", "rimslåtte": "rimslått", "rimtussenes": "rimtuss", "rimtusser": "rimtuss", "rimtusseslekter": "rimtusseslekt", "rind": "rind", "rinds": "rind", "ring": "ring", "ringdal": "ringdal", "ringen": "ring", "ringer": "ring", "ringhorne": "ringhorn", "ringveien": "ringvei", "ringvirkninger": "ringvirkning", "rir": "rir", "rise": "ris", "riser": "ris", "risikabel": "risikabel", "risikabelt": "risikabelt", "risikere": "risiker", "risikerer": "risiker", "risiko": "risiko", "risikoaksept": "risikoaksept", "risikoberegning": "risikoberegning", "risikobetont": "risikobetont", "risikoelement": "risikoelement", "risikoen": "risiko", "risikofond": "risikofond", "risikofondet": "risikofond", "risikoforhold": "risikoforhold", "risikoforsikringer": "risikoforsikring", "risikofri": "risikofri", "risikofrie": "risikofri", "risikofylt": "risikofylt", "risikofylte": "risikofylt", "risikokapital": "risikokapital", "risikokapitalen": "risikokapital", "risikomessig": "risikomess", "risikomomentet": "risikomoment", "risikomåling": "risikomåling", "risikonivået": "risikonivå", "risikoplassering": "risikoplassering", "risikopremie": "risikopremi", "risikopremier": "risikopremi", "risikoprofil": "risikoprofil", "risikospredning": "risikospredning", "risikotaking": "risikotaking", "risikoviljug": "risikoviljug", "risikovillig": "risikovil", "risikovurderinger": "risikovurdering", "risikoytelser": "risikoyt", "risk": "risk", "risp": "risp", "risser": "riss", "risset": "riss", "riste": "rist", "rister": "rist", "ristet": "rist", "risting": "risting", "rive": "riv", "river": "riv", "rives": "riv", "rivning": "rivning", "ro": "ro", "roar": "roar", "robuste": "robust", "robusthet": "robust", "rockwool": "rockwool", "rodd": "rodd", "roende": "roend", "rogaland": "rogaland", "rognebusk": "rognebusk", "rokvam": "rokvam", "rolig": "rol", "roligheten": "rol", "roll": "roll", "rolla": "roll", "rolle": "roll", "rolledelingen": "rolledeling", "rollefordeling": "rollefordeling", "rollen": "roll", "roller": "roll", "rom": "rom", "romerike": "romerik", "romerrike": "romerrik", "rommer": "romm", "rommet": "romm", "romsdal": "romsdal", "romslig": "roms", "romslige": "roms", "rop": "rop", "rope": "rop", "roper": "rop", "ropt": "ropt", "ropte": "ropt", "ror": "ror", "roret": "ror", "ros": "ros", "roser": "ros", "roses": "ros", "roskva": "roskv", "roskvas": "roskv", "rostiophus": "rostiophus", "rostratt": "rostratt", "rot": "rot", "rote": "rot", "roten": "rot", "roter": "rot", "roterminalene": "roterminal", "roteskadar": "roteskad", "rotet": "rot", "rotterdam": "rotterdam", "rovdyrtenner": "rovdyrtenn", "rpr": "rpr", "rprs": "rprs", "rt": "rt", "rufsete": "rufset", "ruger": "rug", "rugger": "rugg", "rugtvedt": "rugtved", "ruiner": "ruin", "rukket": "rukk", "rullende": "rull", "ruller": "rull", "rullering": "rullering", "rullestenene": "rullesten", "rullestokkene": "rullestokk", "rumpe": "rump", "rund": "rund", "rundar": "rund", "runde": "rund", "rundt": "rund", "rundtur": "rundtur", "rundturer": "rundtur", "runekunst": "runekunst", "runer": "run", "runetegnene": "runetegn", "runger": "rung", "rungne": "rungn", "rungnes": "rungn", "rushtrafikken": "rushtrafikk", "rusk": "rusk", "rusproblem": "rusproblem", "russiske": "russisk", "russland": "russland", "ruste": "rust", "rustet": "rust", "rustfarget": "rustfarg", "rustne": "rustn", "rute": "rut", "rutemønster": "rutemønst", "rutemønstre": "rutemønstr", "ruten": "rut", "rutene": "rut", "rutenes": "rut", "rutenettet": "rutenett", "ruteopplegg": "ruteopplegg", "rutepapir": "rutepapir", "ruter": "rut", "rutetilbud": "rutetilbud", "rutetilbudet": "rutetilbud", "rutinane": "rutin", "rutinar": "rutin", "rutine": "rutin", "ruver": "ruv", "rydda": "rydd", "rydder": "rydd", "ryddet": "rydd", "ryen": "ryen", "rygge": "rygg", "ryggen": "rygg", "rygger": "rygg", "ryke": "ryk", "ryker": "ryk", "rykk": "rykk", "rykke": "rykk", "rykker": "rykk", "rykket": "rykk", "rykter": "rykt", "ryktet": "rykt", "rynke": "rynk", "rynkede": "rynk", "rynkene": "rynk", "rynker": "rynk", "rynket": "rynk", "rynkete": "rynket", "ryster": "ryst", "rytter": "rytt", "ryttere": "rytter", "rytteren": "rytter", "rytterne": "ryttern", "rå": "rå", "råd": "råd", "rådde": "rådd", "råde": "råd", "rådene": "råd", "råder": "råd", "råderett": "råderett", "råderetten": "råderett", "råderettsforbod": "råderettsforbod", "rådet": "råd", "rådgivende": "rådgiv", "rådgiver": "rådgiv", "rådgivere": "rådgiver", "rådgivning": "rådgivning", "rådgjevar": "rådgjev", "rådgjevaren": "rådgjevar", "rådgjevinga": "rådgjeving", "rådighet": "råd", "rådsdirektiv": "rådsdirektiv", "rådslagning": "rådslagning", "rådsmøte": "rådsmøt", "rådsmøter": "rådsmøt", "rådsvedtak": "rådsvedtak", "rådvill": "rådvill", "råk": "råk", "råka": "råk", "råkar": "råk", "råkast": "råk", "råmaterialet": "råmaterial", "rån": "rån", "rår": "rår", "råsterke": "råsterk", "råstoff": "råstoff", "råstoffer": "råstoff", "råtne": "råtn", "råtner": "råtn", "rått": "rått", "råtten": "rått", "råvareinntak": "råvareinntak", "råvarer": "råvar", "ræsvelg": "ræsvelg", "rød": "rød", "røde": "rød", "rødeste": "rødest", "rødhåret": "rødhår", "rødmer": "rødm", "rødskjeggete": "rødskjegget", "rødsprengt": "rødsprengt", "rødt": "rødt", "røk": "røk", "rømme": "rømm", "rømmer": "rømm", "røpe": "røp", "røper": "røp", "røre": "rør", "rører": "rør", "rørt": "rørt", "rørte": "rørt", "røsker": "røsk", "røttene": "røtt", "røtter": "røtt", "røve": "røv", "røver": "røv", "røvet": "røv", "røyken": "røyk", "røynsla": "røynsl", "røynsle": "røynsl", "røynslene": "røynsl", "røynsler": "røynsl", "røyr": "røyr", "røys": "røys", "røyst": "røyst", "røysta": "røyst", "røystar": "røyst", "røyste": "røyst", "røysteforklåringar": "røysteforklåring", "røystene": "røyst", "røyster": "røyst", "røystereglane": "røysteregl", "røystereglar": "røysteregl", "røysterett": "røysterett", "røysteretten": "røysterett", "røystetal": "røystetal", "røystetalet": "røystetal", "røysting": "røysting", "røystinga": "røysting", "røystingane": "røysting", "s": "s", "sa": "sa", "sabo": "sabo", "sabotere": "saboter", "sadeltøy": "sadeltøy", "saf": "saf", "safir": "safir", "sagd": "sagd", "sagt": "sagt", "sak": "sak", "saka": "sak", "saken": "sak", "sakene": "sak", "saker": "sak", "sakleg": "sak", "saklege": "sak", "saklig": "sak", "saklige": "sak", "saklista": "saklist", "sakliste": "saklist", "saksbehandler": "saksbehandl", "saksbehandling": "saksbehandling", "saksbehandlinga": "saksbehandling", "saksbehandlingsfeil": "saksbehandlingsfeil", "saksbehandlingsregelen": "saksbehandlingsregel", "saksbehandlingsregler": "saksbehandlingsregl", "saksdokument": "saksdokument", "saksforberedelse": "saksforbered", "saksforutsetninger": "saksforutsetning", "saksområde": "saksområd", "sakspapir": "sakspapir", "saksøkerens": "saksøker", "saksøkjarane": "saksøkjar", "saksøkjaren": "saksøkjar", "saksøkte": "saksøkt", "sakte": "sakt", "saktens": "sakt", "sal": "sal", "saldo": "saldo", "salen": "sal", "saler": "sal", "sales": "sal", "salet": "sal", "salg": "salg", "salget": "salg", "salgsavtaler": "salgsavtal", "salgsinntektene": "salgsinntekt", "salgsinntekter": "salgsinntekt", "salslag": "salslag", "salsoppdrag": "salsoppdrag", "salspålegg": "salspålegg", "salspålegget": "salspålegg", "salstilfella": "salstilfell", "salsverdi": "salsverdi", "salsverdien": "salsverdi", "salt": "salt", "saltaskene": "saltask", "salte": "salt", "salve": "salv", "salver": "salv", "saman": "saman", "samanblanding": "samanblanding", "samandrag": "samandrag", "samanhalde": "samanhald", "samanhalden": "samanhald", "samanheng": "samanheng", "samanhengar": "samanheng", "samanhengen": "samanheng", "samanhengens": "samanheng", "samanknytinga": "samanknyting", "samanlikna": "samanlikn", "samanliknar": "samanlikn", "samanliknast": "samanlikn", "samanlikne": "samanlikn", "samanlikning": "samanlikning", "samanlikninga": "samanlikning", "samansett": "samansett", "samansette": "samansett", "samanskriving": "samanskriving", "samanslegne": "samanslegn", "samanslutning": "samanslutning", "samanslutninga": "samanslutning", "samanslutningane": "samanslutning", "samanslutningar": "samanslutning", "samanslutningsforma": "samanslutningsform", "samanslutningsformene": "samanslutningsform", "samanslutningsrettsleg": "samanslutningsretts", "samanslutningsrettslege": "samanslutningsretts", "samanslåing": "samanslåing", "samanslåinga": "samanslåing", "samanslåingar": "samanslåing", "samarbeid": "samarbeid", "samarbeidd": "samarbeidd", "samarbeide": "samarbeid", "samarbeidende": "samarbeid", "samarbeider": "samarbeid", "samarbeidet": "samarbeid", "samarbeidets": "samarbeid", "samarbeidsforhold": "samarbeidsforhold", "samarbeidsformen": "samarbeidsform", "samarbeidsformer": "samarbeidsform", "samarbeidskommune": "samarbeidskommun", "samarbeidskommunene": "samarbeidskommun", "samarbeidskommunenes": "samarbeidskommun", "samarbeidsløsninger": "samarbeidsløsning", "samarbeidsmodeller": "samarbeidsmodell", "samarbeidsområdet": "samarbeidsområd", "samarbeidsorganer": "samarbeidsorgan", "samarbeidsorganet": "samarbeidsorgan", "samarbeidsorganisasjon": "samarbeidsorganisasjon", "samarbeidspartnar": "samarbeidspartn", "samarbeidspartnarar": "samarbeidspartnar", "samarbeidstiltak": "samarbeidstiltak", "samarbeidsutval": "samarbeidsutval", "samarbeidsutvala": "samarbeidsutval", "samarbeidsutvalet": "samarbeidsutval", "samarbeidt": "samarbeid", "samband": "samband", "sambandskomite": "sambandskomit", "samboer": "sambo", "sambuar": "sambu", "sambuarar": "sambuar", "sambuarforholdet": "sambuarforhold", "sambuarskap": "sambuarskap", "samd": "samd", "samde": "samd", "same": "sam", "sameie": "samei", "sameieforholdet": "sameieforhold", "sameiermøtet": "sameiermøt", "sameiets": "samei", "sameiga": "sam", "sameigar": "sam", "sameigarane": "sameigar", "sameigarar": "sameigar", "sameigaren": "sameigar", "sameigarmøte": "sameigarmøt", "sameigarmøtet": "sameigarmøt", "sameige": "sam", "sameigeforhold": "sameigeforhold", "sameigelova": "sameig", "sameigepart": "sameigepart", "sameigepartane": "sameigepart", "sameigepartar": "sameigepart", "sameigeparten": "sameigepart", "sameiger": "sam", "sameigevedtektene": "sameigevedtekt", "sameigevedtekter": "sameigevedtekt", "sameinast": "samein", "sameine": "samein", "sameleis": "sameleis", "samferdsel": "samferdsel", "samferdsels": "samferdsel", "samferdselsdepartement": "samferdselsdepartement", "samferdselsdepartementet": "samferdselsdepartement", "samferdselskomiteen": "samferdselskomite", "samferdselsløsninger": "samferdselsløsning", "samferdselsmessig": "samferdselsmess", "samferdselsmessige": "samferdselsmess", "samferdselsmønsteret": "samferdselsmønster", "samferdselsnett": "samferdselsnett", "samferdselsnettet": "samferdselsnett", "samferdselsplanlegging": "samferdselsplanlegging", "samferdselspolitikken": "samferdselspolitikk", "samferdselspolitisk": "samferdselspolitisk", "samferdselspolitiske": "samferdselspolitisk", "samferdselssektoren": "samferdselssektor", "samferdselstilbudet": "samferdselstilbud", "samfunn": "samfunn", "samfunnet": "samfunn", "samfunnets": "samfunn", "samfunns": "samfunn", "samfunnsansvar": "samfunnsansv", "samfunnsforskning": "samfunnsforskning", "samfunnshensyn": "samfunnshensyn", "samfunnsinteresser": "samfunnsinteress", "samfunnsmessige": "samfunnsmess", "samfunnsnyttig": "samfunnsnytt", "samfunnsøkonomisk": "samfunnsøkonomisk", "samfunnsøkonomiske": "samfunnsøkonomisk", "samhandel": "samhandel", "samhandelen": "samhandel", "samhandlar": "samhandl", "samhandle": "samhandl", "samkjøringsgevinster": "samkjøringsgevinst", "samkvem": "samkvem", "samla": "saml", "samlande": "saml", "samlar": "saml", "samlast": "saml", "samlastere": "samlaster", "samlasterne": "samlastern", "samlasternes": "samlastern", "samlastgods": "samlastgod", "samlasting": "samlasting", "samlastsentralene": "samlastsentral", "samlastterminal": "samlastterminal", "samlastterminalene": "samlastterminal", "samlastterminaler": "samlastterminal", "samle": "saml", "samlede": "saml", "samler": "saml", "samles": "saml", "samleseksjon": "samleseksjon", "samlet": "saml", "samling": "samling", "samlivsbrot": "samlivsbrot", "samlokalisering": "samlokalisering", "samlokaliseringen": "samlokalisering", "samme": "samm", "sammelignbare": "sammelignbar", "sammen": "samm", "sammenblanding": "sammenblanding", "sammendrag": "sammendrag", "sammendraget": "sammendrag", "sammenfall": "sammenfall", "sammenfallende": "sammenfall", "sammenheng": "sammenheng", "sammenhengen": "sammenheng", "sammenhengende": "sammenheng", "sammenhenger": "sammenheng", "sammenholder": "sammenhold", "sammenholdt": "sammenhold", "sammenknytning": "sammenknytning", "sammenlagt": "sammenlagt", "sammenlignbar": "sammenlignb", "sammenlignbare": "sammenlignbar", "sammenlignbarhet": "sammenlignbar", "sammenligne": "sammenlign", "sammenligner": "sammenlign", "sammenlignet": "sammenlign", "sammenligning": "sammenligning", "sammenligninger": "sammenligning", "sammenliknbare": "sammenliknbar", "sammenlikne": "sammenlikn", "sammenlikner": "sammenlikn", "sammenliknet": "sammenlikn", "sammenlikning": "sammenlikning", "sammenlikningen": "sammenlikning", "sammenlikninger": "sammenlikning", "sammensatt": "sammensatt", "sammensatte": "sammensatt", "sammensetning": "sammensetning", "sammensetningen": "sammensetning", "sammensettes": "sammensett", "sammenslutning": "sammenslutning", "sammenslutningen": "sammenslutning", "sammenslutninger": "sammenslutning", "sammenslåing": "sammenslåing", "sammenslåingen": "sammenslåing", "sammenslåinger": "sammenslåing", "sammenslåingsprosess": "sammenslåingsprosess", "sammenslåingsvariant": "sammenslåingsvariant", "sammenslåtte": "sammenslått", "sammenstilling": "sammenstilling", "sammenstøtet": "sammenstøt", "samordna": "samordn", "samordnast": "samordn", "samordne": "samordn", "samordnende": "samordn", "samordner": "samordn", "samordnet": "samordn", "samordning": "samordning", "samordninga": "samordning", "samordningen": "samordning", "samråd": "samråd", "samrøystes": "samrøyst", "sams": "sam", "samspel": "samspel", "samspelet": "samspel", "samspill": "samspill", "samstundes": "samstund", "samsvar": "samsv", "samsvarar": "samsvar", "samsvarer": "samsvar", "samsvaret": "samsvar", "samsøy": "samsøy", "samt": "samt", "samtale": "samtal", "samtaler": "samtal", "samtidig": "samtid", "samtidige": "samtid", "samtlige": "samt", "samtykka": "samtykk", "samtykke": "samtykk", "samtykkeregelen": "samtykkeregel", "samtykket": "samtykk", "samtykkje": "samtykkj", "samtykkjer": "samtykkj", "samtykt": "samtykt", "samvariasjon": "samvariasjon", "samverkan": "samverkan", "samvirka": "samvirk", "samvirke": "samvirk", "samvirkeboka": "samvirkebok", "samvirkeforma": "samvirkeform", "samvirkeføretak": "samvirkeføretak", "samvirkeføretaka": "samvirkeføretak", "samvirkeføretaket": "samvirkeføretak", "samvirkelag": "samvirkelag", "samvirkelaga": "samvirkelag", "samvirkelaget": "samvirkelag", "samvirkelov": "samvirk", "samvirkelovutvalet": "samvirkelovutval", "samvirkeorganisasjon": "samvirkeorganisasjon", "samvirkeorganisasjonane": "samvirkeorganisasjon", "samvirkeorganisasjonar": "samvirkeorganisasjon", "samvirkeorganisering": "samvirkeorganisering", "samvirkepreget": "samvirkepreg", "samvirkeprinsipp": "samvirkeprinsipp", "samvirkeprinsippa": "samvirkeprinsipp", "samvirkeprinsipper": "samvirkeprinsipp", "samvirkerørsla": "samvirkerørsl", "samvirkesamanheng": "samvirkesamanheng", "samvirket": "samvirk", "samvirketiltak": "samvirketiltak", "samvirketiltaka": "samvirketiltak", "samvirkeutvalget": "samvirkeutvalg", "samvittighet": "samvitt", "sand": "sand", "sandefjord": "sandefjord", "sandessjøen": "sandessjø", "sandnessjøen": "sandnessjø", "sandstrand": "sandstrand", "sanerast": "saner", "sang": "sang", "sanger": "sang", "sanksjoner": "sanksjon", "sann": "sann", "sannelig": "sann", "sannhet": "sann", "sannheten": "sann", "sannsynlig": "sannsyn", "sannsynlige": "sannsyn", "sannsynliggjøre": "sannsynliggjør", "sannsynlighet": "sannsyn", "sannsynligheten": "sannsyn", "sannsynligvis": "sannsynligvis", "sans": "san", "sanser": "sans", "sant": "sant", "sarpsborg": "sarpsborg", "sarskild": "sarskild", "sarskilda": "sarskild", "sats": "sat", "satsa": "sats", "satse": "sats", "satsen": "sats", "satsene": "sats", "satser": "sats", "satses": "sats", "satset": "sats", "satsing": "satsing", "satsingsområde": "satsingsområd", "satsstruktur": "satsstruktur", "satsstrukturen": "satsstruktur", "satsstrukturene": "satsstruktur", "satsstrukturer": "satsstruktur", "satt": "satt", "satte": "satt", "sauene": "sauen", "sauer": "sauer", "saugbrugsforeningen": "saugbrugsforening", "saugbruksforeningen": "saugbruksforening", "sauholmene": "sauholm", "sauøya": "sauøya", "savner": "savn", "sbc": "sbc", "scan": "scan", "scanproof": "scanproof", "scc": "scc", "scenariebeskrivelsene": "scenariebeskriv", "scenarier": "scenari", "scenario": "scenario", "schwencke": "schwenck", "schøne": "schøn", "score": "scor", "se": "se", "sea": "sea", "sedd": "sedd", "sedde": "sedd", "sees": "sees", "seg": "seg", "segment": "segment", "segmenter": "segment", "segner": "segn", "seiast": "seiast", "seid": "seid", "seie": "seie", "seier": "seier", "seil": "seil", "seilas": "seil", "seilbare": "seilbar", "seile": "seil", "seilene": "seil", "seiler": "seil", "seilet": "seil", "seilingsforhold": "seilingsforhold", "seilingsopplegg": "seilingsopplegg", "seilingsreglene": "seilingsregl", "seilingsregler": "seilingsregl", "seilingstider": "seilingstid", "seilt": "seilt", "sein": "sein", "seinare": "seinar", "seinast": "sein", "seinaste": "seinast", "seinere": "seiner", "seinke": "seink", "seint": "seint", "seire": "seir", "seiren": "seir", "seirens": "seir", "seirer": "seir", "seiret": "seir", "sek": "sek", "sekk": "sekk", "sekken": "sekk", "sekretariat": "sekretariat", "sekretariatet": "sekretariat", "sekretær": "sekretær", "seks": "seks", "seksjon": "seksjon", "seksjonane": "seksjon", "seksjonar": "seksjon", "seksjonen": "seksjon", "seksjoner": "seksjon", "seksjonering": "seksjonering", "seksjoneringa": "seksjonering", "seksjonerte": "seksjoner", "seksjonsameiga": "seksjonsam", "seksjonseigarane": "seksjonseigar", "seksjonseigarar": "seksjonseigar", "seksjonseigaren": "seksjonseigar", "seksjonsforma": "seksjonsform", "seksjonssameier": "seksjonssamei", "seksjonssameiga": "seksjonssam", "seksjonssameigarar": "seksjonssameigar", "seksjonssameige": "seksjonssam", "seksjonssameigene": "seksjonssam", "seksjonssameiger": "seksjonssam", "seksjonssjef": "seksjonssjef", "sektor": "sektor", "sektorar": "sektor", "sektoren": "sektor", "sektorer": "sektor", "sektors": "sektor", "sektorvise": "sektorvis", "sekundærpantsetjing": "sekundærpantsetjing", "sekundært": "sekundært", "sel": "sel", "seld": "seld", "selde": "seld", "seleksjon": "seleksjon", "seleksjonsproblemene": "seleksjonsproblem", "seleksjonsproblemer": "seleksjonsproblem", "selene": "sel", "seler": "sel", "selge": "selg", "selges": "selg", "seljar": "selj", "seljaransvar": "seljaransv", "seljarar": "seljar", "seljaren": "seljar", "seljast": "selj", "selje": "selj", "seljefløyte": "seljefløyt", "selskabsformerne": "selskabsformern", "selskap": "selskap", "selskapa": "selskap", "selskapene": "selskap", "selskapenes": "selskap", "selskaper": "selskap", "selskapers": "selskap", "selskapet": "selskap", "selskapets": "selskap", "selskaps": "selskap", "selskapsavtalen": "selskapsavtal", "selskapsdirektiv": "selskapsdirektiv", "selskapsendringer": "selskapsendring", "selskapsform": "selskapsform", "selskapsformer": "selskapsform", "selskapskreditorar": "selskapskreditor", "selskapslova": "selskap", "selskapsloven": "selskap", "selskapspartane": "selskapspart", "selskapspartar": "selskapspart", "selskapsrettsleg": "selskapsretts", "selskapsrettslege": "selskapsretts", "selskapsrettslige": "selskapsretts", "selskapsskattelov": "selskapsskatt", "selskapsskatteloven": "selskapsskatt", "selt": "selt", "selv": "selv", "selve": "selv", "selveste": "selvest", "selvfinansierende": "selvfinansier", "selvforsterkende": "selvforsterk", "selvfølgelig": "selvfølg", "selvig": "selv", "selvsagt": "selvsagt", "selvsikkert": "selvsikker", "selvstendig": "selvstend", "selvstendige": "selvstend", "selvstyre": "selvstyr", "sement": "sement", "semitrailer": "semitrail", "semitrailere": "semitrailer", "sen": "sen", "send": "send", "sendast": "send", "sende": "send", "sendebud": "sendebud", "sendebudene": "sendebud", "sender": "send", "sendes": "send", "sendingsstørrelser": "sendingsstørr", "sendt": "send", "sendte": "send", "sener": "sen", "senere": "sener", "senest": "senest", "seneste": "senest", "seng": "seng", "sengehalmen": "sengehalm", "sengekammer": "sengekamm", "sengen": "seng", "senger": "seng", "sengestolpen": "sengestolp", "sengestolpene": "sengestolp", "sengs": "seng", "seniorrådgiver": "seniorrådgiv", "seniorrådgjevar": "seniorrådgjev", "sent": "sent", "senter": "sent", "senterpartiet": "senterparti", "sentral": "sentral", "sentralbyrå": "sentralbyrå", "sentralbyrås": "sentralbyrås", "sentrale": "sentral", "sentralene": "sentral", "sentraleuropeiske": "sentraleuropeisk", "sentralforbund": "sentralforbund", "sentralhavn": "sentralhavn", "sentralhavna": "sentralhavn", "sentralisering": "sentralisering", "sentraliseringseffekt": "sentraliseringseffekt", "sentraliseringskrefter": "sentraliseringskreft", "sentraliseringstendens": "sentraliseringstend", "sentraliseringstendenser": "sentraliseringstendens", "sentralisert": "sentraliser", "sentrallager": "sentrallag", "sentrallagre": "sentrallagr", "sentralt": "sentralt", "sentrum": "sentrum", "sentrumsområdene": "sentrumsområd", "sentrumsplanen": "sentrumsplan", "separasjon": "separasjon", "separasjonen": "separasjon", "separat": "separat", "separate": "separat", "separerte": "separer", "september": "septemb", "ser": "ser", "sertifikat": "sertifikat", "sertifikater": "sertifikat", "service": "servic", "servicehavn": "servicehavn", "servicenæringens": "servicenæring", "services": "servic", "servituttar": "servitutt", "ses": "ses", "sesong": "sesong", "sesongarbeider": "sesongarbeid", "sesongarbeidere": "sesongarbeider", "sesongarbeideres": "sesongarbeider", "sessrymne": "sessrymn", "set": "set", "sete": "set", "setjast": "setj", "setje": "setj", "setning": "setning", "setninger": "setning", "setningsskadar": "setningsskad", "sett": "sett", "sette": "sett", "setter": "sett", "settes": "sett", "sevjen": "sevj", "shapiro": "shapiro", "si": "si", "sia": "sia", "sida": "sid", "side": "sid", "sidelastere": "sidelaster", "siden": "sid", "sidene": "sid", "sideportsbåter": "sideportsbåt", "sider": "sid", "siderom": "siderom", "siderommet": "sideromm", "sidespor": "sidespor", "sidesprang": "sidesprang", "sidestilles": "sidestill", "sier": "sier", "sies": "sies", "siffernivå": "siffernivå", "sige": "sig", "signal": "signal", "signaler": "signal", "signalisere": "signaliser", "signifikant": "signifikant", "sigurd": "sigurd", "sigyn": "sigyn", "sikatomta": "sikatomt", "sikker": "sikk", "sikkerhet": "sikker", "sikkerheten": "sikker", "sikkerhets": "sikkerh", "sikkerhetsgebyr": "sikkerhetsgebyr", "sikkerhetsmessige": "sikkerhetsmess", "sikkerhetsnivå": "sikkerhetsnivå", "sikkerhetssystemet": "sikkerhetssystem", "sikkert": "sikker", "siklende": "sikl", "sikler": "sikl", "sikra": "sikr", "sikrar": "sikr", "sikrare": "sikrar", "sikrast": "sikr", "sikre": "sikr", "sikrer": "sikr", "sikrere": "sikrer", "sikres": "sikr", "sikreste": "sikrest", "sikret": "sikr", "sikring": "sikring", "sikringsordning": "sikringsordning", "sikringsordningane": "sikringsordning", "sikringsordningar": "sikringsordning", "sikt": "sikt", "sikta": "sikt", "siktbegrensninger": "siktbegrensning", "sikte": "sikt", "siktemål": "siktemål", "siktemålet": "siktemål", "sikter": "sikt", "siktes": "sikt", "siljan": "siljan", "silkebånd": "silkebånd", "simpelt": "simpelt", "simultanstifting": "simultanstifting", "sin": "sin", "sindige": "sind", "sindre": "sindr", "sine": "sin", "singasteinen": "singastein", "singel": "singel", "single": "singl", "sinne": "sinn", "sinnet": "sinn", "sinns": "sinn", "sint": "sint", "sinte": "sint", "sintere": "sinter", "sirkelen": "sirkel", "sirkulasjon": "sirkulasjon", "sist": "sist", "siste": "sist", "sistnemnde": "sistnemnd", "sistnevnte": "sistnevnt", "sit": "sit", "sitatet": "sitat", "sitc": "sitc", "sitert": "siter", "siterte": "siter", "sitjande": "sitj", "sitje": "sitj", "sitt": "sitt", "sitte": "sitt", "sittende": "sitt", "sitter": "sitt", "sittet": "sitt", "situasjon": "situasjon", "situasjonar": "situasjon", "situasjonen": "situasjon", "situasjoner": "situasjon", "situasjonsbeskrivelse": "situasjonsbeskriv", "siv": "siv", "sivil": "sivil", "sivile": "sivil", "sivillovboka": "sivillovbok", "sjablonmessig": "sjablonmess", "sjalu": "sjalu", "sjansen": "sjans", "sjanser": "sjans", "sjavn": "sjavn", "sjekta": "sjekt", "sjel": "sjel", "sjeldan": "sjeldan", "sjelden": "sjeld", "sjeldnare": "sjeldnar", "sjeldne": "sjeldn", "sjeldnere": "sjeldner", "sjelen": "sjel", "sjenanse": "sjenans", "sjenert": "sjener", "sjette": "sjett", "sjettedel": "sjettedel", "sjikanering": "sjikanering", "sju": "sju", "sjuande": "sjuand", "sjukdom": "sjukdom", "sjuke": "sjuk", "sjukeheimar": "sjukeheim", "sjursøya": "sjursøy", "sjursøyas": "sjursøy", "sjå": "sjå", "sjåast": "sjåast", "sjælland": "sjælland", "sjø": "sjø", "sjøarealer": "sjøareal", "sjødyrene": "sjødyr", "sjøen": "sjøen", "sjøfarende": "sjøfar", "sjøfart": "sjøfart", "sjøfartsdirektoratet": "sjøfartsdirektorat", "sjøfolk": "sjøfolk", "sjøfraktene": "sjøfrakt", "sjøjotner": "sjøjotn", "sjøkantarealer": "sjøkantareal", "sjøkantbaserte": "sjøkantbaser", "sjøkantlokalisert": "sjøkantlokaliser", "sjøkantlokaliserte": "sjøkantlokaliser", "sjøkart": "sjøkart", "sjøkonge": "sjøkong", "sjøkongen": "sjøkong", "sjølv": "sjølv", "sjølvdømme": "sjølvdømm", "sjølve": "sjølv", "sjølveigande": "sjølv", "sjølveigarar": "sjølveigar", "sjølvhjelp": "sjølvhjelp", "sjølvhjelpsorganisasjonar": "sjølvhjelpsorganisasjon", "sjølvhjelpstanken": "sjølvhjelpstank", "sjølvkost": "sjølvkost", "sjølvkostprinsipp": "sjølvkostprinsipp", "sjølvkostprinsippet": "sjølvkostprinsipp", "sjølvmelding": "sjølvmelding", "sjølvmotseiande": "sjølvmotsei", "sjølvsagt": "sjølvsagt", "sjølvskiftande": "sjølvskift", "sjølvskuldgaranti": "sjølvskuldgaranti", "sjølvstendig": "sjølvstend", "sjølvstendige": "sjølvstend", "sjølvstyre": "sjølvstyr", "sjølvstyret": "sjølvstyr", "sjølvstyrt": "sjølvstyrt", "sjølvstyrte": "sjølvstyrt", "sjøområdene": "sjøområd", "sjøområder": "sjøområd", "sjøreise": "sjøreis", "sjørholt": "sjørholt", "sjøs": "sjøs", "sjøside": "sjøsid", "sjøsiden": "sjøsid", "sjøsidens": "sjøsid", "sjøsideområder": "sjøsideområd", "sjøtrafikk": "sjøtrafikk", "sjøtrafikken": "sjøtrafikk", "sjøtransport": "sjøtransport", "sjøtransportarbeidet": "sjøtransportarbeid", "sjøtransporten": "sjøtransport", "sjøtransportens": "sjøtransport", "sjøtransporter": "sjøtransport", "sjøtransportkorridorer": "sjøtransportkorridor", "sjøtransportløsninger": "sjøtransportløsning", "sjøtransportpolitikk": "sjøtransportpolitikk", "sjøtransporttilbud": "sjøtransporttilbud", "sjøtransporttilbudet": "sjøtransporttilbud", "sjøvegen": "sjøveg", "sjøvegs": "sjøveg", "sjøveien": "sjøvei", "sjøverts": "sjøvert", "ska": "ska", "skabbete": "skabbet", "skadane": "skad", "skadar": "skad", "skadd": "skadd", "skadde": "skadd", "skade": "skad", "skadebot": "skadebot", "skadebotansvar": "skadebotansv", "skadebotansvaret": "skadebotansvar", "skadebotansvarleg": "skadebotansvar", "skadebotansvarlege": "skadebotansvar", "skadebotkrav": "skadebotkrav", "skadebotkravet": "skadebotkrav", "skadebotlova": "skadebot", "skadebotregel": "skadebotregel", "skadebotregelen": "skadebotregel", "skadebotreglane": "skadebotregl", "skadebotreglar": "skadebotregl", "skadefryd": "skadefryd", "skadelidande": "skadelid", "skadelidne": "skadelidn", "skadelidte": "skadelid", "skaden": "skad", "skadens": "skad", "skadeoppgjer": "skadeoppgj", "skader": "skad", "skadet": "skad", "skadeutvikling": "skadeutvikling", "skaff": "skaff", "skaffa": "skaff", "skaffar": "skaff", "skaffast": "skaff", "skaffe": "skaff", "skaffer": "skaff", "skaffet": "skaff", "skaftet": "skaft", "skal": "skal", "skala": "skal", "skalaen": "skala", "skaldekunst": "skaldekunst", "skaldemjøden": "skaldemjød", "skalder": "skald", "skalle": "skall", "skallen": "skall", "skallene": "skall", "skalpeller": "skalpell", "skam": "skam", "skamferte": "skamfer", "skamfull": "skamfull", "skammelig": "skamm", "skandia": "skandi", "skap": "skap", "skapdører": "skapdør", "skape": "skap", "skapelse": "skap", "skaper": "skap", "skaperverk": "skaperverk", "skapes": "skap", "skapet": "skap", "skapning": "skapning", "skapningene": "skapning", "skapninger": "skapning", "skapt": "skapt", "skapte": "skapt", "skar": "skar", "skare": "skar", "skarp": "skarp", "skarpe": "skarp", "skarve": "skarv", "skatt": "skatt", "skatte": "skatt", "skattebegrensningsregelen": "skattebegrensningsregel", "skattebegunstiget": "skattebegunst", "skattebesparelsen": "skattebespar", "skattebestemmelsene": "skattebestemm", "skattebetalerne": "skattebetalern", "skattedirektoratet": "skattedirektorat", "skattefavorisere": "skattefavoriser", "skattefavorisering": "skattefavorisering", "skattefavoriseringen": "skattefavorisering", "skattefavorisert": "skattefavoriser", "skattefavoriserte": "skattefavoriser", "skattefordel": "skattefordel", "skattefordelar": "skattefordel", "skattefordelen": "skattefordel", "skattefordelene": "skattefordel", "skattefordeler": "skattefordel", "skattefradrag": "skattefradrag", "skattefri": "skattefri", "skattefrihet": "skattefri", "skatteinntekter": "skatteinntekt", "skatteinsentiver": "skatteinsentiv", "skatteklasse": "skatteklass", "skattekontroll": "skattekontroll", "skattelettelser": "skattelett", "skatteligningen": "skatteligning", "skattelov": "skatt", "skattelova": "skatt", "skatteloven": "skatt", "skattelovgivingen": "skattelovgiving", "skattelovgivningen": "skattelovgivning", "skattelovgivningens": "skattelovgivning", "skattemessig": "skattemess", "skattemessige": "skattemess", "skattemyndigheten": "skattemynd", "skattemyndighetene": "skattemynd", "skatten": "skatt", "skattenøytralitet": "skattenøytralit", "skatteplikt": "skatteplikt", "skatteplikten": "skatteplikt", "skattepliktens": "skatteplikt", "skattepliktig": "skatteplikt", "skattepliktige": "skatteplikt", "skattepliktiges": "skatteplikt", "skattepolitikk": "skattepolitikk", "skatter": "skatt", "skattereformen": "skattereform", "skattereglane": "skatteregl", "skattereglar": "skatteregl", "skattereglene": "skatteregl", "skatteregler": "skatteregl", "skatteretten": "skatterett", "skatterettslig": "skatteretts", "skatterettslige": "skatteretts", "skattesammenheng": "skattesammenheng", "skattesats": "skattesat", "skattespørsmål": "skattespørsmål", "skattestimulert": "skattestimuler", "skattestimulerte": "skattestimuler", "skattestyresmakter": "skattestyresmakt", "skattesubjekt": "skattesubjekt", "skattesystem": "skattesystem", "skattesystemet": "skattesystem", "skattetrekket": "skattetrekk", "skatteutsettelse": "skatteutsett", "skatteutsettelsen": "skatteutsett", "skattevedtak": "skattevedtak", "skattevedtaket": "skattevedtak", "skattlagt": "skattlagt", "skattlagte": "skattlagt", "skattlegges": "skattlegg", "skattlegging": "skattlegging", "skattyter": "skattyt", "skattytere": "skattyter", "skattyteren": "skattyter", "skattyters": "skattyt", "skavanker": "skavank", "ske": "ske", "skeivdeling": "skeivdeling", "skeive": "skeiv", "skeivt": "skeivt", "skepsisen": "skepsis", "skeptisk": "skeptisk", "ski": "ski", "skidbladner": "skidbladn", "skien": "skien", "skift": "skift", "skifta": "skift", "skiftar": "skift", "skifte": "skift", "skiftelova": "skift", "skiftenede": "skiften", "skifter": "skift", "skifteretten": "skifterett", "skiftes": "skift", "skiftestasjonen": "skiftestasjon", "skiftet": "skift", "skifting": "skifting", "skigarden": "skigard", "skigudinne": "skigudinn", "skikka": "skikk", "skikke": "skikk", "skikkelig": "skikk", "skikkelse": "skikk", "skikkelsen": "skikk", "skikkelser": "skikk", "skikker": "skikk", "skikket": "skikk", "skil": "skil", "skilde": "skild", "skilja": "skilj", "skiljast": "skilj", "skilje": "skilj", "skiljet": "skilj", "skiljevegger": "skiljevegg", "skille": "skill", "skiller": "skill", "skilles": "skill", "skillet": "skill", "skilnad": "skilnad", "skilnaden": "skilnad", "skilnadene": "skilnad", "skilnader": "skilnad", "skilsdom": "skilsdom", "skilsdomsavtalar": "skilsdomsavtal", "skilsmål": "skilsmål", "skilt": "skilt", "skiltet": "skilt", "skimrer": "skimr", "skimter": "skimt", "skinfakse": "skinfaks", "skingrende": "skingr", "skinnegående": "skinnegå", "skinnende": "skinn", "skinner": "skinn", "skinnet": "skinn", "skinnfellen": "skinnfell", "skinnpung": "skinnpung", "skint": "skint", "skinte": "skint", "skip": "skip", "skipa": "skip", "skipar": "skip", "skipe": "skip", "skipene": "skip", "skipenes": "skip", "skipet": "skip", "skiping": "skiping", "skipling": "skipling", "skipningene": "skipning", "skipningsmønster": "skipningsmønst", "skipningsvolum": "skipningsvolum", "skipsaksjeselskap": "skipsaksjeselskap", "skipsandel": "skipsandel", "skipsanløpene": "skipsanløp", "skipsdekket": "skipsdekk", "skipsfart": "skipsfart", "skipsfarten": "skipsfart", "skipsfraktede": "skipsfrakt", "skipshastighet": "skipshast", "skipsløsninger": "skipsløsning", "skipsregister": "skipsregist", "skipsregistera": "skipsregister", "skipsstørrelse": "skipsstørr", "skipsstørrelser": "skipsstørr", "skipstilbud": "skipstilbud", "skipstrafikk": "skipstrafikk", "skipstrafikken": "skipstrafikk", "skipstransport": "skipstransport", "skipstransporten": "skipstransport", "skipstyper": "skipstyp", "skirne": "skirn", "skisse": "skiss", "skissemessige": "skissemess", "skissere": "skisser", "skisserer": "skisser", "skisseres": "skisser", "skissert": "skisser", "skisserte": "skisser", "skitten": "skitt", "skittent": "skittent", "skive": "skiv", "skje": "skje", "skjebne": "skjebn", "skjebnen": "skjebn", "skjebnetråd": "skjebnetråd", "skjedd": "skjedd", "skjedde": "skjedd", "skjeftet": "skjeft", "skjegg": "skjegg", "skjegget": "skjegg", "skjeggete": "skjegget", "skjeggløse": "skjeggløs", "skjell": "skjell", "skjellete": "skjellet", "skjellsord": "skjellsord", "skjelne": "skjeln", "skjelve": "skjelv", "skjelvende": "skjelv", "skjelver": "skjelv", "skjematisk": "skjematisk", "skjemt": "skjemt", "skjenk": "skjenk", "skjenke": "skjenk", "skjenker": "skjenk", "skjer": "skjer", "skjere": "skjer", "skjerma": "skjerm", "skjerme": "skjerm", "skjermes": "skjerm", "skjermet": "skjerm", "skjerming": "skjerming", "skjerpe": "skjerp", "skjerpede": "skjerp", "skjett": "skjett", "skjev": "skjev", "skjevheter": "skjev", "skjevseleksjon": "skjevseleksjon", "skjold": "skjold", "skjoldene": "skjold", "skjoldet": "skjold", "skjoldungene": "skjoldung", "skjule": "skjul", "skjuler": "skjul", "skjult": "skjult", "skjær": "skjær", "skjære": "skjær", "skjærende": "skjær", "skjærer": "skjær", "skjøn": "skjøn", "skjønet": "skjøn", "skjønne": "skjønn", "skjønner": "skjønn", "skjønnhet": "skjønn", "skjønnsmessig": "skjønnsmess", "skjørt": "skjørt", "skjørtene": "skjørt", "skjøter": "skjøt", "skjøvet": "skjøv", "skli": "skli", "sko": "sko", "skodden": "skodd", "skoene": "skoen", "skog": "skog", "skogen": "skog", "skogene": "skog", "skoger": "skog", "skogholt": "skogholt", "skoglandet": "skogland", "skogs": "skog", "skoll": "skoll", "skolten": "skolt", "skote": "skot", "skotter": "skott", "skou": "skou", "skrangler": "skrangl", "skrankene": "skrank", "skranker": "skrank", "skrapeklev": "skrapeklev", "skraper": "skrap", "skratter": "skratt", "skrekkelig": "skrekk", "skrekkelige": "skrekk", "skremme": "skremm", "skremmende": "skremm", "skremmer": "skremm", "skremt": "skremt", "skremte": "skremt", "skrever": "skrev", "skrevet": "skrev", "skrevs": "skrev", "skriftelig": "skrift", "skriftleg": "skrift", "skriftlig": "skrift", "skrik": "skrik", "skrike": "skrik", "skrikene": "skrik", "skriker": "skrik", "skrin": "skrin", "skrinet": "skrin", "skrinlegges": "skrinlegg", "skritt": "skritt", "skriv": "skriv", "skrivast": "skriv", "skrive": "skriv", "skriver": "skriv", "skrives": "skriv", "skrivne": "skrivn", "skrotet": "skrot", "skrotstein": "skrotstein", "skryme": "skrym", "skrymes": "skrym", "skryt": "skryt", "skryte": "skryt", "skryter": "skryt", "skrå": "skrå", "skudd": "skudd", "skuddet": "skudd", "skuer": "skuer", "skuffet": "skuff", "skular": "skul", "skuld": "skuld", "skulder": "skuld", "skulderen": "skulder", "skuldre": "skuldr", "skuldrene": "skuldr", "skuler": "skul", "skulle": "skull", "skumdråper": "skumdråp", "skumle": "skuml", "skummel": "skummel", "skummende": "skumm", "skumpet": "skump", "skur": "skur", "skure": "skur", "skurer": "skur", "skurt": "skurt", "skutt": "skutt", "skvetter": "skvett", "skvettes": "skvett", "skybanke": "skybank", "skyene": "skyen", "skyer": "skyer", "skygge": "skygg", "skyggen": "skygg", "skygger": "skygg", "skyid": "skyid", "skyld": "skyld", "skyldansvar": "skyldansv", "skyldansvaret": "skyldansvar", "skylden": "skyld", "skylder": "skyld", "skyldes": "skyld", "skyldforhold": "skyldforhold", "skyldgrunnlag": "skyldgrunnlag", "skyldig": "skyld", "skyldige": "skyld", "skyldnadene": "skyldnad", "skyldnader": "skyldnad", "skyldneren": "skyldner", "skyldnerens": "skyldner", "skylle": "skyll", "skyller": "skyll", "skynd": "skynd", "skynde": "skynd", "skynder": "skynd", "skyndet": "skynd", "skyr": "skyr", "skyt": "skyt", "skytast": "skyt", "skyte": "skyt", "skyter": "skyt", "skytes": "skyt", "skyve": "skyv", "skyver": "skyv", "skyves": "skyv", "skål": "skål", "skåler": "skål", "skåne": "skån", "skåner": "skån", "skånsomt": "skånsomt", "skøyte": "skøyt", "sladder": "sladd", "sladre": "sladr", "sladrehanker": "sladrehank", "sladrer": "sladr", "sladret": "sladr", "slag": "slag", "slaga": "slag", "slagentangen": "slagentang", "slaget": "slag", "slagmarken": "slagmark", "slags": "slag", "slagsmål": "slagsmål", "slakte": "slakt", "slaktedyr": "slaktedyr", "slakter": "slakt", "slaktet": "slakt", "slange": "slang", "slangehodet": "slangehod", "slangen": "slang", "slapp": "slapp", "slarvekjerringer": "slarvekjerring", "slede": "sled", "sleden": "sled", "slege": "sleg", "slegne": "slegn", "sleipner": "sleipn", "sleivkjeftet": "sleivkjeft", "slekt": "slekt", "slekten": "slekt", "slekter": "slekt", "slektning": "slektning", "slektningar": "slektning", "slenger": "sleng", "slengkyss": "slengkyss", "slengt": "slengt", "slepende": "slep", "sleper": "slep", "slepp": "slepp", "sleppe": "slepp", "slept": "slept", "slet": "slet", "slett": "slett", "sletta": "slett", "slettast": "slett", "slette": "slett", "sletten": "slett", "sletter": "slett", "sletting": "sletting", "slik": "slik", "slike": "slik", "slikke": "slikk", "slikker": "slikk", "slikket": "slikk", "slikt": "slikt", "slim": "slim", "slimet": "slim", "slipp": "slipp", "slippe": "slipp", "slipper": "slipp", "slippes": "slipp", "slit": "slit", "slitasje": "slitasj", "slite": "slit", "sliten": "slit", "sliter": "slit", "slites": "slit", "slitt": "slitt", "slo": "slo", "sloss": "sloss", "slottet": "slott", "slottsparktunnelen": "slottsparktunnel", "slu": "slu", "sludre": "sludr", "sludrer": "sludr", "sluke": "sluk", "sluker": "sluk", "slukke": "slukk", "slukkes": "slukk", "slukket": "slukk", "slukne": "slukn", "slukner": "slukn", "slukt": "slukt", "slukøret": "slukør", "sluppet": "slupp", "slurk": "slurk", "slurken": "slurk", "slutt": "slutt", "sluttar": "slutt", "sluttbehandlet": "sluttbehandl", "sluttbruker": "sluttbruk", "slutte": "slutt", "slutten": "slutt", "slutter": "slutt", "sluttes": "slutt", "sluttet": "slutt", "sluttfasen": "sluttfas", "sluttført": "sluttført", "sluttlønn": "sluttlønn", "sluttlønnen": "sluttlønn", "sluttlønnsbasert": "sluttlønnsbaser", "sluttlønnsbaserte": "sluttlønnsbaser", "sluttlønnsprinsippet": "sluttlønnsprinsipp", "sluttregnskapet": "sluttregnskap", "slynger": "slyng", "slå": "slå", "slåande": "slåand", "slåast": "slåast", "slåen": "slåen", "slår": "slår", "slås": "slås", "slåss": "slåss", "slåsskamp": "slåsskamp", "slåsskjempene": "slåsskjemp", "slåsskjemper": "slåsskjemp", "slått": "slått", "slåttefolk": "slåttefolk", "slør": "slør", "sløret": "slør", "sløve": "sløv", "sløvet": "sløv", "smak": "smak", "smake": "smak", "smaker": "smak", "smakt": "smakt", "smal": "smal", "smale": "smal", "smalere": "smaler", "smatter": "smatt", "smed": "smed", "smedarbeid": "smedarbeid", "smeden": "smed", "smedene": "smed", "smeder": "smed", "smedkunster": "smedkunst", "smelle": "smell", "smeller": "smell", "smelte": "smelt", "smelter": "smelt", "smeltet": "smelt", "smertene": "smert", "smi": "smi", "smia": "smia", "smidd": "smidd", "smidde": "smidd", "smidig": "smid", "smiene": "smien", "smiger": "smig", "smigre": "smigr", "smil": "smil", "smile": "smil", "smiler": "smil", "smilet": "smil", "smilte": "smilt", "smir": "smir", "smiske": "smisk", "smisker": "smisk", "smittende": "smitt", "smitter": "smitt", "smoltens": "smolt", "smurte": "smurt", "smyge": "smyg", "smyger": "smyg", "smykkelåsen": "smykkelås", "smykker": "smykk", "smykket": "smykk", "smykketyven": "smykketyv", "små": "små", "småbiter": "småbit", "småbonde": "småbond", "småfe": "småf", "småguttene": "smågutt", "smågutter": "smågutt", "småhus": "småhus", "småpakkeforsendelser": "småpakkeforsend", "småpakker": "småpakk", "småvilt": "småvilt", "smører": "smør", "smøring": "smøring", "snakk": "snakk", "snakke": "snakk", "snakker": "snakk", "snakkes": "snakk", "snakket": "snakk", "snar": "snar", "snarare": "snarar", "snarast": "snar", "snare": "snar", "snarere": "snarer", "snarlig": "snar", "snart": "snart", "snartur": "snartur", "snarvegen": "snarveg", "snarvei": "snarvei", "snarveien": "snarvei", "snarveier": "snarvei", "snauklippet": "snauklipp", "snaut": "snaut", "snautt": "snautt", "sne": "sne", "sneen": "sneen", "snefonnene": "snefonn", "snehule": "snehul", "snek": "snek", "sneket": "snek", "snerrende": "snerr", "snerrer": "snerr", "snevre": "snevr", "snevrere": "snevrer", "sniker": "snik", "snill": "snill", "snille": "snill", "snitt": "snitt", "sno": "sno", "snor": "snor", "snoren": "snor", "snorke": "snork", "snorkende": "snork", "snorker": "snork", "snu": "snu", "snubler": "snubl", "snudd": "snudd", "snufser": "snufs", "snur": "snur", "snus": "snus", "snø": "snø", "snøen": "snøen", "snøfter": "snøft", "snøre": "snør", "snøret": "snør", "snøvler": "snøvl", "social": "social", "sog": "sog", "sogn": "sogn", "sokkeletasjen": "sokkeletasj", "sol": "sol", "solberg": "solberg", "solbergkrysset": "solbergkryss", "soldatene": "soldat", "soldater": "soldat", "solen": "sol", "solgt": "solgt", "solgte": "solgt", "solid": "solid", "solidarisk": "solidarisk", "solidaritet": "solidarit", "solidariteten": "solidaritet", "solidaritetsalternativet": "solidaritetsalternativ", "soliditet": "solidit", "soliditetskrav": "soliditetskrav", "soloppgang": "soloppgang", "soloppgangen": "soloppgang", "solskinn": "solskinn", "soltegnet": "soltegn", "solvognen": "solvogn", "som": "som", "somme": "somm", "sommer": "somm", "sommerdag": "sommerdag", "sommeren": "sommer", "sommerfuglvinger": "sommerfuglving", "sommersesongen": "sommersesong", "somtid": "somtid", "son": "son", "sorg": "sorg", "sorgløst": "sorgløst", "sort": "sort", "sorte": "sort", "sortering": "sortering", "sorteringsanlegg": "sorteringsanlegg", "sortkledd": "sortkledd", "sortkledde": "sortkledd", "sortkledte": "sortkled", "sosial": "sosial", "sosiale": "sosial", "sosialforsikringssystem": "sosialforsikringssystem", "sosialistisk": "sosialistisk", "sosialkomiteen": "sosialkomite", "sosialkomiteens": "sosialkomite", "sosialkontor": "sosialkontor", "sosialpolitisk": "sosialpolitisk", "sosialt": "sosialt", "sosialtenestelova": "sosialtenest", "sosialtjenesten": "sosialtjenest", "sot": "sot", "sotbrun": "sotbrun", "sou": "sou", "sov": "sov", "sove": "sov", "sovekammeret": "sovekammer", "sovende": "sov", "sover": "sov", "soverommet": "soveromm", "sovet": "sov", "sovner": "sovn", "sovnet": "sovn", "spakt": "spakt", "spankulerer": "spankuler", "spann": "spann", "spare": "spar", "spareavtale": "spareavtal", "spareavtalen": "spareavtal", "spareavtalene": "spareavtal", "spareavtaler": "spareavtal", "sparebank": "sparebank", "sparebankane": "sparebank", "sparebankforeningen": "sparebankforening", "sparebanklova": "sparebank", "sparebeløp": "sparebeløp", "sparedelen": "sparedel", "spareelement": "spareelement", "spareform": "spareform", "spareformen": "spareform", "spareformer": "spareform", "spareinnskot": "spareinnskot", "spareinnskota": "spareinnskot", "sparekapital": "sparekapital", "sparekasser": "sparekass", "sparekontrakter": "sparekontrakt", "sparelag": "sparelag", "sparemarkedet": "sparemarked", "sparemidlane": "sparemidl", "sparemidlar": "sparemidl", "sparemidlene": "sparemidl", "sparemidler": "sparemidl", "spareordning": "spareordning", "spareordningene": "spareordning", "spareordninger": "spareordning", "spareprodukt": "spareprodukt", "spareprodukter": "spareprodukt", "sparer": "spar", "spareren": "sparer", "sparerens": "sparer", "sparesaldoen": "sparesaldo", "spareverksemda": "spareverksemd", "sparing": "sparing", "sparinga": "sparing", "sparingen": "sparing", "spark": "spark", "sparkassan": "sparkassan", "sparkasse": "sparkass", "sparke": "spark", "sparker": "spark", "sparket": "spark", "spart": "spart", "spedisjons": "spedisjon", "spedisjonstjenester": "spedisjonstjenest", "speditørene": "speditør", "speditører": "speditør", "spegla": "spegl", "speide": "speid", "speider": "speid", "speilbilde": "speilbild", "spekter": "spekt", "spekulant": "spekulant", "spekulasjonsobjekt": "spekulasjonsobjekt", "spela": "spel", "spelar": "spel", "spele": "spel", "spelerom": "spelerom", "spenene": "spen", "spenn": "spenn", "spennende": "spenn", "spenner": "spenn", "spennet": "spenn", "spenninga": "spenning", "spenningsfelt": "spenningsfelt", "spenntak": "spenntak", "spennvidden": "spennvidd", "spent": "spent", "spente": "spent", "sperre": "sperr", "sperrer": "sperr", "spesialbustader": "spesialbustad", "spesialhavn": "spesialhavn", "spesialisering": "spesialisering", "spesialisert": "spesialiser", "spesialiserte": "spesialiser", "spesialitetsprinsippet": "spesialitetsprinsipp", "spesialmerknadene": "spesialmerknad", "spesialmerknader": "spesialmerknad", "spesialområder": "spesialområd", "spesialregel": "spesialregel", "spesialtilfelle": "spesialtilfell", "spesiell": "spesiell", "spesielle": "spesiell", "spesielt": "spesielt", "spesifikasjon": "spesifikasjon", "spesifikasjonskrav": "spesifikasjonskrav", "spesifikke": "spesifikk", "spesifikt": "spesifikt", "spesifiserer": "spesifiser", "spesifiseres": "spesifiser", "spesifisert": "spesifiser", "spesifiserte": "spesifiser", "spikker": "spikk", "spilene": "spil", "spill": "spill", "spille": "spill", "spiller": "spill", "spilloppmakeren": "spilloppmaker", "spilt": "spilt", "spire": "spir", "spise": "spis", "spiser": "spis", "spises": "spis", "spissen": "spiss", "spist": "spist", "spiste": "spist", "spk": "spk", "splinten": "splint", "splintene": "splint", "splintres": "splintr", "sponene": "spon", "sponhaug": "sponhaug", "sponhaugen": "sponhaug", "sponvikskansen": "sponvikskans", "spor": "spor", "sporadisk": "sporadisk", "sporene": "spor", "sporet": "spor", "sporforbindelse": "sporforbind", "sportilknytning": "sportilknytning", "spott": "spott", "spotter": "spott", "sprakende": "sprak", "sprakk": "sprakk", "sprang": "sprang", "spranget": "sprang", "spratt": "spratt", "spre": "spre", "spreading": "spreading", "spredning": "spredning", "spredningen": "spredning", "spredningsalternativer": "spredningsalternativ", "spredningsformer": "spredningsform", "spredningsmønster": "spredningsmønst", "spredningsnett": "spredningsnett", "spredt": "spredt", "spreiast": "spreiast", "spreidde": "spreidd", "sprekere": "spreker", "sprekk": "sprekk", "sprekke": "sprekk", "sprekker": "sprekk", "sprell": "sprell", "sprellende": "sprell", "spreller": "sprell", "sprenge": "spreng", "sprenger": "spreng", "sprenges": "spreng", "sprengkulda": "sprengkuld", "sprengninger": "sprengning", "sprengrir": "sprengrir", "sprengt": "sprengt", "spres": "spres", "spretter": "sprett", "sprik": "sprik", "spriker": "sprik", "spriket": "sprik", "springer": "spring", "springskaller": "springskall", "spruten": "sprut", "spruter": "sprut", "sprutet": "sprut", "språk": "språk", "språkbruk": "språkbruk", "språket": "språk", "språkkunnskapar": "språkkunnskap", "språklig": "språk", "spurt": "spurt", "spurte": "spurt", "spyd": "spyd", "spydet": "spyd", "spydkast": "spydk", "spyende": "spyend", "spyr": "spyr", "spytt": "spytt", "spytte": "spytt", "spytter": "spytt", "spyttet": "spytt", "spå": "spå", "spådd": "spådd", "spådommen": "spådomm", "spåkjerringer": "spåkjerring", "spåkoner": "spåkon", "spåkunster": "spåkunst", "spåkvinne": "spåkvinn", "spåkvinnen": "spåkvinn", "spåkvinner": "spåkvinn", "spøk": "spøk", "spøker": "spøk", "spør": "spør", "spørje": "spørj", "spørre": "spørr", "spørrende": "spørr", "spørres": "spørr", "spørreundersøkelse": "spørreundersøk", "spørsmål": "spørsmål", "spørsmåla": "spørsmål", "spørsmålene": "spørsmål", "spørsmålet": "spørsmål", "ssbs": "ssbs", "st": "st", "stabber": "stabb", "stabburet": "stabbur", "stabil": "stabil", "stabile": "stabil", "stabilisert": "stabiliser", "stabilitet": "stabilit", "stabilt": "stabilt", "stablekraner": "stablekran", "stablekransystemer": "stablekransystem", "stablekranteknologi": "stablekranteknologi", "stables": "stabl", "stableteknologi": "stableteknologi", "stabling": "stabling", "stad": "stad", "staden": "stad", "stader": "stad", "stades": "stad", "stadfesta": "stadfest", "stadfestast": "stadfest", "stadfeste": "stadfest", "stadfestes": "stadfest", "stadfestet": "stadfest", "stadfesting": "stadfesting", "stadfestingsorskurd": "stadfestingsorskurd", "stadig": "stad", "stadige": "stad", "stagge": "stagg", "stagger": "stagg", "stagnasjon": "stagnasjon", "stagnere": "stagner", "staking": "staking", "stakk": "stakk", "stakkar": "stakk", "stakkars": "stakkar", "stamfar": "stamf", "stammen": "stamm", "stammer": "stamm", "stamnett": "stamnett", "stamnettet": "stamnett", "stamper": "stamp", "stamveg": "stamveg", "stamvegforbindelsen": "stamvegforbind", "stamvegnettet": "stamvegnett", "stamvegtilknytning": "stamvegtilknytning", "stand": "stand", "standard": "standard", "standardberegnet": "standardberegn", "standardberegning": "standardberegning", "standarden": "standard", "standardfradrag": "standardfradrag", "standardfradragene": "standardfradrag", "standardisering": "standardisering", "standardiserte": "standardiser", "standardsikring": "standardsikring", "standpunkt": "standpunkt", "standpunkta": "standpunkt", "stange": "stang", "stanger": "stang", "stanken": "stank", "stans": "stan", "stansa": "stans", "stanse": "stans", "stanser": "stans", "stanset": "stans", "stappe": "stapp", "star": "star", "starkad": "starkad", "start": "start", "starte": "start", "starter": "start", "startes": "start", "startet": "start", "startlønn": "startlønn", "stas": "stas", "staselig": "stas", "staselige": "stas", "stasjon": "stasjon", "stasjons": "stasjon", "stat": "stat", "staten": "stat", "statens": "stat", "stater": "stat", "states": "stat", "statistikk": "statistikk", "statistisk": "statistisk", "statistiske": "statistisk", "statlege": "stat", "statlig": "stat", "statlige": "stat", "statlånsrente": "statlånsrent", "stats": "stat", "statsautorisert": "statsautoriser", "statsautoriserte": "statsautoriser", "statsborgarskap": "statsborgarskap", "statsborgere": "statsborger", "statsborgerskap": "statsborgerskap", "statsbudsjettet": "statsbudsjett", "statsen": "stats", "statsmidler": "statsmidl", "statsråd": "statsråd", "statsstøtte": "statsstøtt", "status": "status", "statusen": "status", "staur": "staur", "staute": "staut", "stav": "stav", "stavanger": "stavang", "stavbærerske": "stavbærersk", "staven": "stav", "stavnen": "stavn", "stavrende": "stavr", "stebarn": "stebarn", "sted": "sted", "stedbundet": "stedbund", "stede": "sted", "steden": "sted", "stedene": "sted", "steder": "sted", "stedet": "sted", "stedsforming": "stedsforming", "stedvis": "stedvis", "steg": "steg", "steget": "steg", "steil": "steil", "steilene": "steil", "stein": "stein", "steineksport": "steineksport", "steinene": "stein", "steinnes": "steinn", "steinrøys": "steinrøy", "steinrøyser": "steinrøys", "steke": "stek", "stekt": "stekt", "stell": "stell", "stelle": "stell", "stelt": "stelt", "stemme": "stemm", "stemmen": "stemm", "stemmene": "stemm", "stemmer": "stemm", "stemmerett": "stemmerett", "stemninga": "stemning", "stemte": "stemt", "sten": "sten", "stendig": "stend", "stenen": "sten", "stenene": "sten", "stener": "sten", "stengd": "stengd", "stengde": "stengd", "stenge": "steng", "stengjast": "stengj", "stengje": "stengj", "stengjer": "stengj", "stengt": "stengt", "stenk": "stenk", "stenkisten": "stenkist", "stenmurene": "stenmur", "stenstolpe": "stenstolp", "stephen": "steph", "steppene": "stepp", "sterk": "sterk", "sterkare": "sterkar", "sterkaste": "sterkast", "sterke": "sterk", "sterkere": "sterker", "sterkest": "sterkest", "sterkeste": "sterkest", "sterkt": "sterkt", "stesønn": "stesønn", "stesønnen": "stesønn", "stettar": "stett", "stevnemøte": "stevnemøt", "stien": "stien", "stier": "stier", "stifta": "stift", "stiftar": "stift", "stiftarane": "stiftar", "stiftarar": "stiftar", "stiftaren": "stiftar", "stiftast": "stift", "stifte": "stift", "stiftelse": "stift", "stiftelser": "stift", "stiftelsesgrunnlaget": "stiftelsesgrunnlag", "stiftelsesloven": "stiftelse", "stiftelseslovens": "stiftelse", "stifting": "stifting", "stiftinga": "stifting", "stiftingar": "stifting", "stiftingsdokument": "stiftingsdokument", "stiftingsdokumentet": "stiftingsdokument", "stiftingsgrunnlaget": "stiftingsgrunnlag", "stiftingslova": "stifting", "stiftingsmøtet": "stiftingsmøt", "stiftingsutgiftene": "stiftingsutgift", "stiftingsutgifter": "stiftingsutgift", "stiftingsvilkåra": "stiftingsvilkår", "stig": "stig", "stige": "stig", "stigende": "stig", "stiger": "stig", "stigninger": "stigning", "stikk": "stikk", "stikke": "stikk", "stikker": "stikk", "stikkes": "stikk", "stikkord": "stikkord", "stilisert": "stiliser", "stiliserte": "stiliser", "stillast": "still", "stille": "still", "stiller": "still", "stilles": "still", "stilling": "stilling", "stillinga": "stilling", "stillingar": "stilling", "stillingen": "stilling", "stillinger": "stilling", "stillingsandel": "stillingsandel", "stillingsfullmakt": "stillingsfullmakt", "stillingsgruppe": "stillingsgrupp", "stillingsinstruksar": "stillingsinstruks", "stillingsskifter": "stillingsskift", "stilt": "stilt", "stilte": "stilt", "stime": "stim", "stimler": "stiml", "stimulansen": "stimulans", "stimulere": "stimuler", "stimulerer": "stimuler", "stimulering": "stimulering", "stinker": "stink", "stipulert": "stipuler", "stirre": "stirr", "stirrer": "stirr", "stiv": "stiv", "stive": "stiv", "stivnet": "stivn", "stjal": "stjal", "stjele": "stjel", "stjerne": "stjern", "stjernen": "stjern", "stjernene": "stjern", "stjerner": "stjern", "stk": "stk", "sto": "sto", "stockholm": "stockholm", "stod": "stod", "stoda": "stod", "stokk": "stokk", "stokke": "stokk", "stokken": "stokk", "stokkene": "stokk", "stol": "stol", "stole": "stol", "stolen": "stol", "stolene": "stol", "stoler": "stol", "stolpe": "stolp", "stolpen": "stolp", "stolt": "stolt", "stolte": "stolt", "stoltere": "stolter", "stolthet": "stolt", "stoppe": "stopp", "stopper": "stopp", "stoppet": "stopp", "stor": "stor", "storbritannia": "storbritanni", "storbyene": "storby", "stordriftsfordelene": "stordriftsfordel", "stordriftsfordeler": "stordriftsfordel", "store": "stor", "storebroren": "storebror", "storesøster": "storesøst", "storleik": "storleik", "storleiken": "storleik", "storm": "storm", "stormannsgal": "stormannsgal", "stormen": "storm", "stormende": "storm", "stormer": "storm", "stormet": "storm", "stormkastene": "stormkast", "stormvind": "stormvind", "stormvær": "stormvær", "storstilet": "storstil", "stort": "stort", "stortinget": "storting", "stortingets": "storting", "stortingsbehandling": "stortingsbehandling", "stortingsbehandlingen": "stortingsbehandling", "stortingskomiteen": "stortingskomite", "stortingsmelding": "stortingsmelding", "stortingsmeldingen": "stortingsmelding", "stortingsmeldingene": "stortingsmelding", "stortingsmeldinger": "stortingsmelding", "stortingsvedtak": "stortingsvedtak", "stortåen": "stortå", "storverk": "storverk", "storøyde": "storøyd", "stp": "stp", "straff": "straff", "straffast": "straff", "straffe": "straff", "straffeføresegn": "straffeføresegn", "straffeføresegner": "straffeføresegn", "straffelova": "straff", "strafferegelen": "strafferegel", "straffereglane": "strafferegl", "straffes": "straff", "straffesak": "straffesak", "straks": "straks", "stramme": "stramm", "strammer": "stramm", "strammere": "strammer", "strand": "strand", "stranden": "strand", "strandet": "strand", "strandlinjen": "strandlinj", "strandområdene": "strandområd", "strandområder": "strandområd", "strandsonen": "strandson", "strategi": "strategi", "strategier": "strategi", "strategiplan": "strategiplan", "strategiplanarbeidet": "strategiplanarbeid", "strategiplanen": "strategiplan", "strategiplanens": "strategiplan", "strategiplaner": "strategiplan", "strategiplans": "strategiplan", "strategisk": "strategisk", "strategiske": "strategisk", "straum": "straum", "streife": "streif", "streifer": "streif", "streik": "streik", "strekke": "strekk", "strekker": "strekk", "strekkje": "strekkj", "strekkjer": "strekkj", "strekning": "strekning", "strekningen": "strekning", "strekninger": "strekning", "strekpunkt": "strekpunkt", "strekpunktene": "strekpunkt", "streng": "streng", "strengare": "strengar", "strenge": "streng", "strengen": "streng", "strengere": "strenger", "strengt": "strengt", "strev": "strev", "strever": "strev", "stri": "stri", "strid": "strid", "stride": "strid", "striden": "strid", "strider": "strid", "strides": "strid", "stridigheter": "strid", "strie": "strie", "striglet": "strigl", "strimer": "strim", "strippes": "stripp", "stripping": "stripping", "strir": "strir", "stritter": "stritt", "struktur": "struktur", "strukturelle": "strukturell", "strukturen": "struktur", "strukturendringer": "strukturendring", "strukturer": "struktur", "strupen": "strup", "stryk": "stryk", "stryke": "stryk", "strykene": "stryk", "stryker": "stryk", "strå": "strå", "stråler": "strål", "stråpersonar": "stråperson", "strøk": "strøk", "strøm": "strøm", "strømforholdene": "strømforhold", "strømføringen": "strømføring", "strømme": "strømm", "strømmen": "strømm", "strømmende": "strømm", "strømmer": "strømm", "strømmet": "strømm", "strømstad": "strømstad", "stubbe": "stubb", "studere": "studer", "studerer": "studer", "studie": "studi", "studiene": "studi", "studier": "studi", "studietur": "studietur", "stuedøra": "stuedør", "stuffes": "stuff", "stuffing": "stuffing", "stukket": "stukk", "stum": "stum", "stumme": "stumm", "stummende": "stumm", "stump": "stump", "stund": "stund", "stundom": "stundom", "stup": "stup", "stuper": "stup", "stupet": "stup", "sture": "stur", "sturer": "stur", "sturte": "sturt", "stusser": "stuss", "stuten": "stut", "stygg": "stygg", "stygge": "stygg", "styggelig": "stygg", "styggeste": "styggest", "stygt": "stygt", "stykke": "stykk", "stykker": "stykk", "stykket": "stykk", "stykkgods": "stykkgod", "stykkgodsbåter": "stykkgodsbåt", "stykkgodsdelen": "stykkgodsdel", "stykkgodsdistribusjon": "stykkgodsdistribusjon", "stykkgodsdistribusjonen": "stykkgodsdistribusjon", "stykkgodseksporten": "stykkgodseksport", "stykkgodset": "stykkgods", "stykkgodsfarten": "stykkgodsfart", "stykkgodshandel": "stykkgodshandel", "stykkgodshaven": "stykkgodshav", "stykkgodshavn": "stykkgodshavn", "stykkgodshavnen": "stykkgodshavn", "stykkgodshavnene": "stykkgodshavn", "stykkgodshåndtering": "stykkgodshåndtering", "stykkgodshåndteringen": "stykkgodshåndtering", "stykkgodsimport": "stykkgodsimport", "stykkgodsimporten": "stykkgodsimport", "stykkgodskaier": "stykkgodskai", "stykkgodsklassifiserte": "stykkgodsklassifiser", "stykkgodsmarkedet": "stykkgodsmarked", "stykkgodsmengdene": "stykkgodsmengd", "stykkgodsmengder": "stykkgodsmengd", "stykkgodsomlasting": "stykkgodsomlasting", "stykkgodsomlastingen": "stykkgodsomlasting", "stykkgodsomsetning": "stykkgodsomsetning", "stykkgodsomsetningen": "stykkgodsomsetning", "stykkgodsomslaget": "stykkgodsomslag", "stykkgodspotensialet": "stykkgodspotensial", "stykkgodstrafikk": "stykkgodstrafikk", "stykkgodstrafikken": "stykkgodstrafikk", "stykkgodstransport": "stykkgodstransport", "stykkgodsutviklingen": "stykkgodsutvikling", "stykkgodsvarer": "stykkgodsvar", "stykkgodsveksten": "stykkgodsvekst", "stykkgodsvolumer": "stykkgodsvolum", "styr": "styr", "styra": "styr", "styrande": "styr", "styrast": "styr", "styre": "styr", "styrearbeidet": "styrearbeid", "styrebehandling": "styrebehandling", "styrebehandlinga": "styrebehandling", "styreinstruks": "styreinstruks", "styrekompetansen": "styrekompetans", "styreleiar": "styrelei", "styreleiaren": "styreleiar", "styremedlem": "styremedlem", "styremedlemmen": "styremedlemm", "styremedlemmene": "styremedlemm", "styremedlemmer": "styremedlemm", "styremøta": "styremøt", "styremøte": "styremøt", "styremøtet": "styremøt", "styrende": "styr", "styreprotokoll": "styreprotokoll", "styrer": "styr", "styrerepresentasjon": "styrerepresentasjon", "styres": "styr", "styresakene": "styresak", "styresamansetjing": "styresamansetjing", "styresamansetjinga": "styresamansetjing", "styresmaktene": "styresmakt", "styresmakter": "styresmakt", "styret": "styr", "styrets": "styr", "styrevalet": "styreval", "styrevedtak": "styrevedtak", "styrevedtaka": "styrevedtak", "styrevedtaket": "styrevedtak", "styring": "styring", "styringa": "styring", "styringen": "styring", "styringsgruppe": "styringsgrupp", "styringsgruppen": "styringsgrupp", "styringsgruppens": "styringsgrupp", "styringsinstrument": "styringsinstrument", "styringsorgan": "styringsorgan", "styringsorganer": "styringsorgan", "styringsredskap": "styringsredskap", "styrke": "styrk", "styrkebelte": "styrkebelt", "styrkebeltet": "styrkebelt", "styrken": "styrk", "styrkeprøve": "styrkeprøv", "styrkeprøven": "styrkeprøv", "styrker": "styrk", "styrket": "styrk", "styrking": "styrking", "styrkje": "styrkj", "styrkjer": "styrkj", "styrkt": "styrkt", "styrt": "styrt", "styrte": "styrt", "styrter": "styrt", "stå": "stå", "ståande": "ståand", "stående": "ståend", "stål": "stål", "stålimport": "stålimport", "står": "står", "stått": "stått", "stø": "stø", "støere": "støer", "støkk": "støkk", "støl": "støl", "støle": "støl", "stønad": "stønad", "stønn": "stønn", "stønner": "stønn", "større": "størr", "størrelse": "størr", "størrelsen": "størr", "størrelsene": "størr", "størrelser": "størr", "størrelsesorden": "størrelsesord", "størst": "størst", "største": "størst", "størstedelen": "størstedel", "støtte": "støtt", "støtteordningene": "støtteordning", "støtter": "støtt", "støttet": "støtt", "støy": "støy", "støymessig": "støymess", "subber": "subb", "subjektene": "subjekt", "subjekter": "subjekt", "subsidiar": "subsidi", "subsidieordningar": "subsidieordning", "subsidier": "subsidi", "subsidiering": "subsidiering", "subsidiert": "subsidier", "subsidierte": "subsidier", "subsidiær": "subsidiær", "subsidiært": "subsidiært", "substansiell": "substansiell", "substituert": "substituer", "sug": "sug", "sugende": "sug", "suger": "sug", "suget": "sug", "sukk": "sukk", "sukker": "sukk", "sult": "sult", "sulte": "sult", "sulten": "sult", "sultet": "sult", "sultne": "sultn", "sum": "sum", "summar": "summ", "summarisk": "summarisk", "summen": "summ", "summende": "summ", "sundagar": "sundag", "sunde": "sund", "sunget": "sung", "sunket": "sunk", "sunn": "sunn", "super": "sup", "suppen": "supp", "supplement": "supplement", "supplementary": "supplementary", "supplere": "suppler", "supplerende": "suppler", "supplerer": "suppler", "supplering": "supplering", "suppleringsval": "suppleringsval", "supplert": "suppler", "sur": "sur", "surere": "surer", "surklende": "surkl", "surre": "surr", "surret": "surr", "surrogat": "surrogat", "surt": "surt", "sus": "sus", "suse": "sus", "susende": "sus", "suser": "sus", "susete": "suset", "sutrer": "sutr", "suttung": "suttung", "suttungs": "suttung", "svaberg": "svaberg", "svadilfare": "svadilfar", "svaier": "svaier", "svak": "svak", "svakare": "svakar", "svake": "svak", "svakere": "svaker", "svakhet": "svak", "svakheter": "svak", "svakt": "svakt", "svalbard": "svalbard", "svanene": "svan", "svaner": "svan", "svangerskap": "svangerskap", "svangerskapspermisjon": "svangerskapspermisjon", "svanser": "svans", "svanvik": "svanvik", "svar": "svar", "svara": "svar", "svarar": "svar", "svare": "svar", "svarende": "svar", "svarer": "svar", "svares": "svar", "svaret": "svar", "svart": "svart", "svartalver": "svartalv", "svartalvheim": "svartalvheim", "svarte": "svart", "svartmale": "svartmal", "svartner": "svartn", "svartsyk": "svartsyk", "sveio": "sveio", "sveits": "sveit", "sveket": "svek", "svekke": "svekk", "svekkelse": "svekk", "svekkes": "svekk", "svekket": "svekk", "svelg": "svelg", "svelge": "svelg", "svelger": "svelg", "svelvik": "svelvik", "svelvikstrømmen": "svelvikstrømm", "svelvikstrømmens": "svelvikstrømm", "svenner": "svenn", "svensk": "svensk", "svenske": "svensk", "svenskegrensen": "svenskegrens", "svenskekongen": "svenskekong", "sverd": "sverd", "sverdet": "sverd", "sverdspissen": "sverdspiss", "sverdsvingere": "sverdsvinger", "sverg": "sverg", "sverger": "sverg", "sverget": "sverg", "sverige": "sver", "sveriges": "sver", "svett": "svett", "svette": "svett", "svetter": "svett", "svevende": "svev", "svever": "svev", "svi": "svi", "svidd": "svidd", "svik": "svik", "svike": "svik", "svikta": "svikt", "svikter": "svikt", "sviktet": "svikt", "svimle": "sviml", "svimmel": "svimmel", "svinekjøtt": "svinekjøtt", "svineskinn": "svineskinn", "svinesund": "svinesund", "svinet": "svin", "sving": "sving", "svinga": "sving", "svinge": "sving", "svingende": "sving", "svinger": "sving", "svingingane": "svinging", "svingninger": "svingning", "svingte": "svingt", "svinser": "svins", "svir": "svir", "svirelaget": "svirelag", "svovelkis": "svovelkis", "svært": "svært", "svøm": "svøm", "svømme": "svømm", "svømmebasseng": "svømmebasseng", "svømmehud": "svømmehud", "svømmer": "svømm", "syd": "syd", "syder": "syd", "sydfra": "sydfr", "sydgående": "sydgå", "sydhavna": "sydhavn", "sydhimmelen": "sydhimmel", "sydover": "sydov", "sydsiden": "sydsid", "sydspissen": "sydspiss", "sydvestover": "sydvestov", "sydøst": "sydøst", "syk": "syk", "sykdom": "sykdom", "sykdommen": "sykdomm", "syke": "syk", "sykeleie": "sykelei", "syl": "syl", "symbolsk": "symbolsk", "symmetri": "symmetri", "syn": "syn", "synd": "synd", "syne": "syn", "syner": "syn", "synes": "syn", "synest": "synest", "synet": "syn", "synfaring": "synfaring", "synge": "syng", "synger": "syng", "synke": "synk", "synkende": "synk", "synker": "synk", "synlege": "syn", "synlig": "syn", "synlige": "syn", "synsmåtane": "synsmåt", "synspunkt": "synspunkt", "synspunkta": "synspunkt", "synspunkter": "synspunkt", "synspunktet": "synspunkt", "synsstad": "synsstad", "synsstaden": "synsstad", "syntes": "synt", "syr": "syr", "sysken": "sysk", "sysselsatte": "sysselsatt", "sysselsetting": "sysselsetting", "sysselsettingsvirkninger": "sysselsettingsvirkning", "system": "system", "systematisk": "systematisk", "systematiske": "systematisk", "systemer": "system", "systemet": "system", "systemkonkurranse": "systemkonkurrans", "systemløsninger": "systemløsning", "systemtogløsninger": "systemtogløsning", "syte": "syt", "syvende": "syv", "så": "så", "sådan": "sådan", "sådd": "sådd", "såfall": "såfall", "såfremt": "såfremt", "såg": "såg", "såkalla": "såkall", "såkalt": "såkalt", "såkalte": "såkalt", "således": "sål", "såleis": "såleis", "sånn": "sånn", "såpass": "såpass", "sår": "sår", "såre": "sår", "sårene": "sår", "sårer": "sår", "såret": "sår", "sårt": "sårt", "såvel": "såvel", "såvidt": "såvid", "sæming": "sæming", "særaldersgrenser": "særaldersgrens", "særbehandling": "særbehandling", "særbehandlingen": "særbehandling", "særbestemmelser": "særbestemm", "særdeles": "særdel", "særdrag": "særdrag", "særdraga": "særdrag", "særfordeler": "særfordel", "særfradrag": "særfradrag", "særimne": "særimn", "særinteresse": "særinteress", "særinteresser": "særinteress", "særleg": "sær", "særlege": "sær", "særlig": "sær", "særlige": "sær", "særlovgjeving": "særlovgjeving", "særlovgjevinga": "særlovgjeving", "særløysingar": "særløysing", "særmerknad": "særmerknad", "særmerknadetil": "særmerknadetil", "særordningar": "særordning", "særpreg": "særpreg", "særprega": "særpreg", "særpregar": "særpreg", "særpreget": "særpreg", "særregel": "særregel", "særregelen": "særregel", "særreglane": "særregl", "særreglar": "særregl", "særreglene": "særregl", "særregler": "særregl", "særregulering": "særregulering", "særrettar": "særrett", "særskild": "særskild", "særskilde": "særskild", "særskilt": "særskilt", "særskilte": "særskilt", "særstilling": "særstilling", "særtillegg": "særtillegg", "særtillegget": "særtillegg", "særvilkår": "særvilkår", "sæther": "sæth", "søk": "søk", "søke": "søk", "søker": "søk", "søkes": "søk", "søkjaransiennitet": "søkjaransiennit", "søkjaransienniteten": "søkjaransiennitet", "søkje": "søkj", "søkjegod": "søkjegod", "søkjer": "søkj", "søknad": "søknad", "søknaden": "søknad", "søksmål": "søksmål", "søksmålet": "søksmål", "søksmåls": "søksmål", "søksmålsfrist": "søksmålsfrist", "søksmålsfristen": "søksmålsfrist", "søksmålsrett": "søksmålsrett", "søkt": "søkt", "søkte": "søkt", "sølv": "sølv", "søndre": "søndr", "sønn": "sønn", "sønnavind": "sønnavind", "sønnen": "sønn", "sønnene": "sønn", "sønner": "sønn", "sør": "sør", "sørenga": "søreng", "sørge": "sørg", "sørgelig": "sørg", "sørger": "sørg", "sørget": "sørg", "sørgjer": "sørgj", "sørkorridoren": "sørkorridor", "sørlandsbanen": "sørlandsban", "sørover": "sørov", "sørpehull": "sørpehull", "sørside": "sørsid", "sørsiden": "sørsid", "sørvendte": "sørvend", "sørvisinnstilling": "sørvisinnstilling", "søsken": "søsk", "søster": "søst", "søsteren": "søster", "søstre": "søstr", "søstrene": "søstr", "søt": "søt", "søtere": "søter", "søvn": "søvn", "søvne": "søvn", "søvntorn": "søvntorn", "søyle": "søyl", "søyler": "søyl", "t": "t", "ta": "ta", "tabell": "tabell", "tabellen": "tabell", "tabellene": "tabell", "taggete": "tagget", "tak": "tak", "takast": "tak", "takbjelkene": "takbjelk", "takernes": "takern", "taket": "tak", "takk": "takk", "takke": "takk", "takker": "takk", "takket": "takk", "takknemlig": "takknem", "takknemlighet": "takknem", "takkonstruksjon": "takkonstruksjon", "takle": "takl", "takskjegget": "takskjegg", "takstnemnder": "takstnemnd", "takt": "takt", "takten": "takt", "taktfast": "taktf", "tal": "tal", "tala": "tal", "talar": "tal", "tale": "tal", "taler": "tal", "talerett": "talerett", "talet": "tal", "tall": "tall", "talleksempler": "talleksempl", "tallene": "tall", "tallet": "tall", "tallfeste": "tallfest", "tallgrunnlaget": "tallgrunnlag", "tallrik": "tallrik", "tallrike": "tallrik", "talt": "talt", "tamme": "tamm", "tang": "tang", "tangen": "tang", "tangent": "tangent", "tangstrødde": "tangstrødd", "tankane": "tank", "tanke": "tank", "tankegang": "tankegang", "tankegangen": "tankegang", "tankeløs": "tankeløs", "tanken": "tank", "tankene": "tank", "tanker": "tank", "tankespråk": "tankespråk", "tann": "tann", "tanngnjost": "tanngnjost", "tanngrisne": "tanngrisn", "tannløs": "tannløs", "tannløse": "tannløs", "tap": "tap", "tapa": "tap", "tape": "tap", "taper": "tap", "tapet": "tap", "tapetsering": "tapetsering", "tappa": "tapp", "tappar": "tapp", "tappe": "tapp", "tapper": "tapp", "tapping": "tapping", "tappinga": "tapping", "tapre": "tapr", "tapsfordeling": "tapsfordeling", "tapspostane": "tapspost", "tapsrisiko": "tapsrisiko", "tapsrisikoen": "tapsrisiko", "tapt": "tapt", "tapte": "tapt", "tar": "tar", "tariffavtale": "tariffavtal", "tariffavtaler": "tariffavtal", "tarifforhandlingene": "tarifforhandling", "tarmene": "tarm", "tas": "tas", "tassen": "tass", "tassler": "tassl", "tatt": "tatt", "tau": "tau", "taubåt": "taubåt", "taubåthjelp": "taubåthjelp", "tauender": "tauend", "taus": "taus", "tause": "taus", "taushet": "taus", "taustump": "taustump", "td": "td", "team": "team", "teften": "teft", "tegn": "tegn", "tegne": "tegn", "tegner": "tegn", "tegnes": "tegn", "tegnet": "tegn", "tegning": "tegning", "tegningstidspunktet": "tegningstidspunkt", "teieplikt": "teieplikt", "teieplikta": "teieplikt", "teiepliktreglane": "teiepliktregl", "teikna": "teikn", "teiknar": "teikn", "teiknast": "teikn", "teikne": "teikn", "teikning": "teikning", "teikninga": "teikning", "teikningar": "teikning", "teikningsavgift": "teikningsavgift", "teikningsrett": "teikningsrett", "tek": "tek", "teke": "tek", "teken": "tek", "tekne": "tekn", "teknisk": "teknisk", "tekniske": "teknisk", "teknologi": "teknologi", "teksten": "tekst", "tekstene": "tekst", "tekster": "tekst", "tel": "tel", "telefon": "telefon", "telekomunikasjonsinfrastruktur": "telekomunikasjonsinfrastruktur", "telemark": "telemark", "teletenester": "teletenest", "telje": "telj", "telle": "tell", "teller": "tell", "temaet": "tema", "tematisk": "tematisk", "temme": "temm", "temmet": "temm", "temperaturer": "temperatur", "ten": "ten", "tendens": "tend", "tene": "ten", "tener": "ten", "teneste": "tenest", "tenestebustader": "tenestebustad", "tenestene": "tenest", "tenester": "tenest", "tenestetid": "tenestetid", "tenestetida": "tenestetid", "tenestettida": "tenestettid", "tenk": "tenk", "tenke": "tenk", "tenkelige": "tenk", "tenker": "tenk", "tenkes": "tenk", "tenkjast": "tenkj", "tenkje": "tenkj", "tenkjer": "tenkj", "tenksom": "tenksom", "tenksomt": "tenksomt", "tenkt": "tenkt", "tenkte": "tenkt", "tenleg": "ten", "tenlege": "ten", "tennene": "tenn", "tenner": "tenn", "tennes": "tenn", "tent": "tent", "tente": "tent", "teoretisk": "teoretisk", "teoretiske": "teoretisk", "teori": "teori", "teorien": "teori", "teppe": "tepp", "teppet": "tepp", "ter": "ter", "termer": "term", "terminal": "terminal", "terminalbehandles": "terminalbehandl", "terminalbehandling": "terminalbehandling", "terminalbehandlingen": "terminalbehandling", "terminaldrift": "terminaldrift", "terminaldriften": "terminaldrift", "terminalen": "terminal", "terminalene": "terminal", "terminaler": "terminal", "terminalfunksjon": "terminalfunksjon", "terminalhavn": "terminalhavn", "terminalhåndteringen": "terminalhåndtering", "terminallokalisering": "terminallokalisering", "terminalområder": "terminalområd", "terminalområdet": "terminalområd", "terminaloperasjonen": "terminaloperasjon", "terminaloperatørene": "terminaloperatør", "terminaloperatørenes": "terminaloperatør", "terminaloperatører": "terminaloperatør", "terminaltypene": "terminaltyp", "terminalvirksomhet": "terminalvirksom", "terminalvirksomheter": "terminalvirksom", "terminbeløp": "terminbeløp", "terminbeløpet": "terminbeløp", "terminer": "termin", "terminvise": "terminvis", "terne": "tern", "terner": "tern", "terskelverdier": "terskelverdi", "tett": "tett", "tettbebyggelsen": "tettbebygg", "tettbygd": "tettbygd", "tettbygde": "tettbygd", "tette": "tett", "tettere": "tetter", "tettpakket": "tettpakk", "tettstader": "tettstad", "tettsteder": "tettsted", "tettsteds": "tettsted", "tettstedsbebyggelse": "tettstedsbebygg", "tettstedsområder": "tettstedsområd", "teu": "teu", "teus": "teus", "the": "the", "ti": "ti", "tiandepart": "tiandepart", "tid": "tid", "tida": "tid", "tide": "tid", "tidel": "tidel", "tiden": "tid", "tidene": "tid", "tidenes": "tid", "tider": "tid", "tidfestet": "tidfest", "tidkrevende": "tidkrev", "tidkrevjande": "tidkrevj", "tidleg": "tid", "tidlegare": "tidlegar", "tidlegast": "tid", "tidlege": "tid", "tidlig": "tid", "tidlige": "tid", "tidligere": "tidliger", "tidligst": "tidligst", "tidligsådd": "tidligsådd", "tidobbelte": "tidobbelt", "tids": "tid", "tidsangivelsene": "tidsangiv", "tidsavgrensa": "tidsavgrens", "tidsavgrensing": "tidsavgrensing", "tidsavgrensingar": "tidsavgrensing", "tidsavhengig": "tidsavheng", "tidsbruk": "tidsbruk", "tidseffektive": "tidseffektiv", "tidsforskyvningen": "tidsforskyvning", "tidsfrist": "tidsfrist", "tidshorisont": "tidshorisont", "tidshorisonten": "tidshorisont", "tidshorisontene": "tidshorisont", "tidskontoordning": "tidskontoordning", "tidskostnader": "tidskostnad", "tidspartar": "tidspart", "tidsperspektiv": "tidsperspektiv", "tidsperspektivene": "tidsperspektiv", "tidsperspektiver": "tidsperspektiv", "tidsperspektivet": "tidsperspektiv", "tidspunkt": "tidspunkt", "tidspunkter": "tidspunkt", "tidspunktet": "tidspunkt", "tidsramme": "tidsramm", "tidsrammen": "tidsramm", "tidsrom": "tidsrom", "tidsrommet": "tidsromm", "tidsskriftrom": "tidsskriftrom", "tidstap": "tidstap", "tidsubestemt": "tidsubestemt", "tidvis": "tidvis", "tie": "tie", "tiendedel": "tiendedel", "tier": "tier", "tiet": "tiet", "tigger": "tigg", "til": "til", "tilbake": "tilbak", "tilbakebetaling": "tilbakebetaling", "tilbakeføre": "tilbakefør", "tilbakeføres": "tilbakefør", "tilbakeføring": "tilbakeføring", "tilbakeføringa": "tilbakeføring", "tilbakeføringsåret": "tilbakeføringsår", "tilbakeført": "tilbakeført", "tilbakeførte": "tilbakeført", "tilbakeholde": "tilbakehold", "tilbakeholdenhet": "tilbakeholden", "tilbakeholder": "tilbakehold", "tilbakeholdes": "tilbakehold", "tilbakeverkande": "tilbakeverk", "tilbakeverknad": "tilbakeverknad", "tilbod": "tilbod", "tilbodet": "tilbod", "tilbringertjeneste": "tilbringertjenest", "tilbud": "tilbud", "tilbudene": "tilbud", "tilbudet": "tilbud", "tilbudssiden": "tilbudssid", "tilbudt": "tilbud", "tilbudte": "tilbud", "tilby": "tilby", "tilbyder": "tilbyd", "tilbydere": "tilbyder", "tilbyderne": "tilbydern", "tilbydernes": "tilbydern", "tilbydt": "tilbyd", "tilbyr": "tilbyr", "tilbys": "tilby", "tilbørleg": "tilbør", "tildeles": "tildel", "tildeling": "tildeling", "tildelt": "tildelt", "tildelte": "tildelt", "tildligpensjonering": "tildligpensjonering", "tildriv": "tildriv", "tileigne": "tileign", "tilfalle": "tilfall", "tilfaller": "tilfall", "tilfalt": "tilfalt", "tilfanget": "tilfang", "tilfeldig": "tilfeld", "tilfeldige": "tilfeld", "tilfeldighet": "tilfeld", "tilfell": "tilfell", "tilfella": "tilfell", "tilfelle": "tilfell", "tilfellene": "tilfell", "tilfeller": "tilfell", "tilfellet": "tilfell", "tilflyter": "tilflyt", "tilflytting": "tilflytting", "tilfredsstillande": "tilfredsstill", "tilfredsstille": "tilfredsstill", "tilfredsstillende": "tilfredsstill", "tilfredsstiller": "tilfredsstill", "tilføre": "tilfør", "tilfører": "tilfør", "tilføres": "tilfør", "tilføring": "tilføring", "tilførsel": "tilførsel", "tilført": "tilført", "tilføyde": "tilføyd", "tilføyelse": "tilføy", "tilføyelsen": "tilføy", "tilgang": "tilgang", "tilgangen": "tilgang", "tilgir": "tilgir", "tilgjenge": "tilgjeng", "tilgjengeleg": "tilgjeng", "tilgjengelege": "tilgjeng", "tilgjengelig": "tilgjeng", "tilgjengelige": "tilgjeng", "tilgjengelighet": "tilgjeng", "tilgodehavande": "tilgodehav", "tilgodesedd": "tilgodesedd", "tilgodeser": "tilgodes", "tilgodesjå": "tilgodesjå", "tilgrising": "tilgrising", "tilhenger": "tilheng", "tilhengere": "tilhenger", "tilhøre": "tilhør", "tilhørende": "tilhør", "tilhører": "tilhør", "tilhøva": "tilhøv", "tilhøve": "tilhøv", "tilhøvet": "tilhøv", "tilhøyrande": "tilhøyr", "tilhøyrde": "tilhøyrd", "tilhøyre": "tilhøyr", "tilhøyrer": "tilhøyr", "tilhøyrsel": "tilhøyrsel", "tilhøyrsle": "tilhøyrsl", "tilhøyrslereglane": "tilhøyrsleregl", "tilknyting": "tilknyting", "tilknytinga": "tilknyting", "tilknytingsband": "tilknytingsband", "tilknytingsbanda": "tilknytingsband", "tilknytingsforhold": "tilknytingsforhold", "tilknytingsforholdet": "tilknytingsforhold", "tilknytingsforma": "tilknytingsform", "tilknytingsformer": "tilknytingsform", "tilknytning": "tilknytning", "tilknytningen": "tilknytning", "tilknytninger": "tilknytning", "tilknytningsforhold": "tilknytningsforhold", "tilknytt": "tilknytt", "tilknytte": "tilknytt", "tilknyttede": "tilknytt", "tilknyttes": "tilknytt", "tilknyttet": "tilknytt", "tilkomme": "tilkomm", "tilkommer": "tilkomm", "till": "till", "tillagd": "tillagd", "tillagde": "tillagd", "tillagt": "tillagt", "tillatast": "tillat", "tillate": "tillat", "tillatelse": "tillat", "tillaten": "tillat", "tillates": "tillat", "tillatne": "tillatn", "tillatt": "tillatt", "tillegg": "tillegg", "tillegge": "tillegg", "tillegger": "tillegg", "tillegges": "tillegg", "tilleggsavsetninger": "tilleggsavsetning", "tilleggsavtalar": "tilleggsavtal", "tilleggsavtalen": "tilleggsavtal", "tilleggsbevilgning": "tilleggsbevilgning", "tilleggsføremål": "tilleggsføremål", "tilleggsføremåla": "tilleggsføremål", "tilleggsføremålet": "tilleggsføremål", "tilleggsinnkalling": "tilleggsinnkalling", "tilleggsinnskot": "tilleggsinnskot", "tilleggsinnskotet": "tilleggsinnskot", "tilleggskapasitet": "tilleggskapasit", "tilleggskapital": "tilleggskapital", "tilleggskontraktane": "tilleggskontrakt", "tilleggskontraktar": "tilleggskontrakt", "tilleggsmandat": "tilleggsmandat", "tilleggsopplysningar": "tilleggsopplysning", "tilleggspensjon": "tilleggspensjon", "tilleggspensjonen": "tilleggspensjon", "tilleggspensjonsordning": "tilleggspensjonsordning", "tilleggspensjonsordningen": "tilleggspensjonsordning", "tilleggspensjonsordninger": "tilleggspensjonsordning", "tilleggspensjonsprosent": "tilleggspensjonsprosent", "tilleggsreglar": "tilleggsregl", "tilleggsregler": "tilleggsregl", "tilleggssikkerhet": "tilleggssikker", "tilleggstilråding": "tilleggstilråding", "tilleggstrafikk": "tilleggstrafikk", "tilleggsytelse": "tilleggsyt", "tilleggsytelsene": "tilleggsyt", "tilleggsytelser": "tilleggsyt", "tillet": "till", "tilligge": "tilligg", "tilligger": "tilligg", "tillit": "tillit", "tillita": "tillit", "tillitsmann": "tillitsmann", "tillitsperson": "tillitsperson", "tillitsvald": "tillitsvald", "tillitsvalde": "tillitsvald", "tillitsverv": "tillitsverv", "tilnavn": "tilnavn", "tilnytingsbanda": "tilnytingsband", "tilnærma": "tilnærm", "tilnærmet": "tilnærm", "tilnærming": "tilnærming", "tilnærminger": "tilnærming", "tilordnede": "tilordn", "tilordnes": "tilordn", "tilordnet": "tilordn", "tilordning": "tilordning", "tilordningen": "tilordning", "tilpasning": "tilpasning", "tilpasningen": "tilpasning", "tilpasninger": "tilpasning", "tilpasningsdyktig": "tilpasningsdykt", "tilpasningsmuligheter": "tilpasningsmu", "tilpassa": "tilpass", "tilpassast": "tilpass", "tilpasse": "tilpass", "tilpasseleg": "tilpass", "tilpasser": "tilpass", "tilpasses": "tilpass", "tilpasset": "tilpass", "tilpassete": "tilpasset", "tilpassing": "tilpassing", "tilpassingar": "tilpassing", "tilpassingsvanskar": "tilpassingsvansk", "tilrettelagde": "tilrettelagd", "tilrettelegge": "tilrettelegg", "tilretteleggelse": "tilrettelegg", "tilretteleggende": "tilrettelegg", "tilrettelegges": "tilrettelegg", "tilrettelegging": "tilrettelegging", "tilrå": "tilrå", "tilrådeleg": "tilråd", "tilrådelig": "tilråd", "tilråding": "tilråding", "tilrådinger": "tilråding", "tilrår": "tilrår", "tilseie": "tilsei", "tilseier": "tilsei", "tilseiing": "tilseiing", "tilsendt": "tilsend", "tilsetje": "tilsetj", "tilsetjing": "tilsetjing", "tilsetjinga": "tilsetjing", "tilsetjingar": "tilsetjing", "tilsetjingsavtale": "tilsetjingsavtal", "tilsetjingsforhold": "tilsetjingsforhold", "tilsett": "tilsett", "tilsette": "tilsett", "tilsi": "tilsi", "tilsier": "tilsi", "tilskot": "tilskot", "tilskota": "tilskot", "tilskotsordningar": "tilskotsordning", "tilskrives": "tilskriv", "tilskudd": "tilskudd", "tilskuddene": "tilskudd", "tilskuddet": "tilskudd", "tilskuddsordning": "tilskuddsordning", "tilskuddssatsene": "tilskuddssats", "tilskuddssatser": "tilskuddssats", "tilskuere": "tilskuer", "tilslutning": "tilslutning", "tilslutta": "tilslutt", "tilsluttet": "tilslutt", "tilslørte": "tilslørt", "tilstanden": "tilstand", "tilstede": "tilst", "tilstrebe": "tilstreb", "tilstreber": "tilstreb", "tilstrebes": "tilstreb", "tilstrekkeleg": "tilstrekk", "tilstrekkelig": "tilstrekk", "tilstrekkelige": "tilstrekk", "tilstøtende": "tilstøt", "tilstøytande": "tilstøyt", "tilsvarande": "tilsvar", "tilsvare": "tilsvar", "tilsvarende": "tilsvar", "tilsvarer": "tilsvar", "tilsyn": "tilsyn", "tilsynelatende": "tilsynelat", "tilsynet": "tilsyn", "tilsynsansvar": "tilsynsansv", "tilsynsansvaret": "tilsynsansvar", "tilsynsarbeidet": "tilsynsarbeid", "tilsynsbehovet": "tilsynsbehov", "tilsynsfunksjonane": "tilsynsfunksjon", "tilsynsloven": "tilsyn", "tilsynsmessige": "tilsynsmess", "tilsynsmyndighet": "tilsynsmynd", "tilsynsmyndigheten": "tilsynsmynd", "tilsynsmyndighetene": "tilsynsmynd", "tilsynsmyndigheter": "tilsynsmynd", "tilsynsoppgaven": "tilsynsoppgav", "tilsynsoppgåva": "tilsynsoppgåv", "tilsynsorgan": "tilsynsorgan", "tilsynsretten": "tilsynsrett", "tiltagende": "tiltag", "tiltak": "tiltak", "tiltaka": "tiltak", "tiltakende": "tiltak", "tiltakene": "tiltak", "tiltaket": "tiltak", "tiltar": "tilt", "tiltrekke": "tiltrekk", "tiltrekkes": "tiltrekk", "tiltrer": "tiltr", "tiltro": "tiltro", "tiltrådt": "tiltråd", "tilvekst": "tilvekst", "tilveksten": "tilvekst", "tilvisast": "tilvis", "tilvising": "tilvising", "tilvisinga": "tilvising", "tilvisingar": "tilvising", "tilvisning": "tilvisning", "tilværelse": "tilvær", "tilårskomne": "tilårskomn", "time": "tim", "timer": "tim", "timers": "tim", "timersregelen": "timersregel", "times": "tim", "timing": "timing", "ting": "ting", "tingar": "ting", "tinglysast": "tinglys", "tinglyse": "tinglys", "tinglysing": "tinglysing", "tinglysinga": "tinglysing", "tinglysingsdommarane": "tinglysingsdommar", "tinglysingsfeilen": "tinglysingsfeil", "tinglysingskontora": "tinglysingskontor", "tinglysingslova": "tinglysing", "tinglysingslovutkastet": "tinglysingslovutkast", "tinglysingssperre": "tinglysingssperr", "tinglysingsutkastet": "tinglysingsutkast", "tinglyst": "tinglyst", "tinglyste": "tinglyst", "tings": "ting", "tingsinnskot": "tingsinnskot", "tinningen": "tinning", "tinningene": "tinning", "tirret": "tirr", "tisker": "tisk", "tisket": "tisk", "tispe": "tisp", "tissler": "tissl", "tista": "tist", "titt": "titt", "tittelen": "tittel", "tiår": "tiår", "tiåret": "tiår", "tiårperioden": "tiårperiod", "tiårsperiode": "tiårsperiod", "tja": "tja", "tjalve": "tjalv", "tjanster": "tjanst", "tjatse": "tjats", "tjatses": "tjats", "tjene": "tjen", "tjener": "tjen", "tjenere": "tjener", "tjeneste": "tjenest", "tjenestefolk": "tjenestefolk", "tjenestefolkene": "tjenestefolk", "tjenesteforhold": "tjenesteforhold", "tjenesteforholdet": "tjenesteforhold", "tjenestejente": "tjenestejent", "tjenestekvinner": "tjenestekvinn", "tjenestemannsgruppen": "tjenestemannsgrupp", "tjenestemenn": "tjenestemenn", "tjenestemessige": "tjenestemess", "tjenestene": "tjenest", "tjenestepensjon": "tjenestepensjon", "tjenestepensjoner": "tjenestepensjon", "tjenestepensjonsdekningen": "tjenestepensjonsdekning", "tjenestepensjonsforsikring": "tjenestepensjonsforsikring", "tjenestepensjonsforsikringen": "tjenestepensjonsforsikring", "tjenestepensjonsområdet": "tjenestepensjonsområd", "tjenestepensjonsordning": "tjenestepensjonsordning", "tjenestepensjonsordningen": "tjenestepensjonsordning", "tjenestepensjonsordningene": "tjenestepensjonsordning", "tjenestepensjonsordninger": "tjenestepensjonsordning", "tjenestepensjonssystemet": "tjenestepensjonssystem", "tjenestepike": "tjenestepik", "tjenestepikene": "tjenestepik", "tjenester": "tjenest", "tjenestetid": "tjenestetid", "tjenestetilbud": "tjenestetilbud", "tjenesteytere": "tjenesteyter", "tjenesteyteren": "tjenesteyter", "tjenesteyting": "tjenesteyting", "tjent": "tjent", "tjern": "tjern", "tjoret": "tjor", "tjue": "tjue", "tjuedagarsfristen": "tjuedagarsfrist", "tjuedel": "tjuedel", "tjuvholmen": "tjuvholm", "tjærebredd": "tjærebredd", "to": "to", "todagers": "todag", "tofte": "toft", "tog": "tog", "toger": "tog", "tok": "tok", "tokk": "tokk", "tole": "tol", "tolka": "tolk", "tolkast": "tolk", "tolke": "tolk", "tolket": "tolk", "tolking": "tolking", "tolkinga": "tolking", "tolkingstvil": "tolkingstvil", "tolkning": "tolkning", "tolkningen": "tolkning", "tolkningspraksis": "tolkningspraksis", "tollbehandlingen": "tollbehandling", "tolldepartementet": "tolldepartement", "tollekniven": "tollekniv", "tollmaterialets": "tollmaterial", "tollpost": "tollpost", "tollsted": "tollsted", "tollvesenet": "tollvesen", "tollvesenets": "tollvesen", "tolv": "tolv", "tom": "tom", "tomannsbustadene": "tomannsbustad", "tomannsbustader": "tomannsbustad", "tomcontainere": "tomcontainer", "tomhendt": "tomhend", "tomheten": "tom", "tomkjøring": "tomkjøring", "tomme": "tomm", "tommelen": "tommel", "tomrommet": "tomromm", "tomsekker": "tomsekk", "tomt": "tomt", "tomta": "tomt", "tomtefesteforhold": "tomtefesteforhold", "tomtegrunn": "tomtegrunn", "tomtekjøp": "tomtekjøp", "tomtene": "tomt", "tomteområde": "tomteområd", "tomtepriser": "tomtepris", "tomter": "tomt", "tomteseljar": "tomteselj", "tomteselskap": "tomteselskap", "tomtetildeling": "tomtetildeling", "tonn": "tonn", "tonnasje": "tonnasj", "tonnasjen": "tonnasj", "tonnkilometer": "tonnkilomet", "tonnkm": "tonnkm", "tonnmengder": "tonnmengd", "top": "top", "toplanskrysset": "toplanskryss", "topografiske": "topografisk", "topp": "topp", "toppen": "topp", "topper": "topp", "topphastighet": "topphast", "toppskatt": "toppskatt", "tor": "tor", "torde": "tord", "torden": "tord", "tordengud": "tordengud", "tordenguden": "tordengud", "tordenskrall": "tordenskrall", "tordner": "tordn", "tornehekk": "tornehekk", "tors": "tor", "torskeøynene": "torskeøyn", "torsønnene": "torsønn", "toseksjonsregelen": "toseksjonsregel", "tosk": "tosk", "tosken": "tosk", "tosporet": "tospor", "total": "total", "totale": "total", "totalkostnaden": "totalkostnad", "totalkostnader": "totalkostnad", "totalløsninger": "totalløsning", "totalmengde": "totalmengd", "totalpremien": "totalpremi", "totalskadd": "totalskadd", "totalskadde": "totalskadd", "totalskade": "totalskad", "totalt": "totalt", "totaltall": "totaltall", "totalvolumene": "totalvolum", "towards": "toward", "toårsfristen": "toårsfrist", "toårsperiodar": "toårsperiod", "toårsregelen": "toårsregel", "tpes": "tpes", "trade": "trad", "tradisjon": "tradisjon", "tradisjonar": "tradisjon", "tradisjonell": "tradisjonell", "tradisjonelle": "tradisjonell", "tradisjonelt": "tradisjonelt", "tradisjonen": "tradisjon", "traff": "traff", "trafikk": "trafikk", "trafikkavvikling": "trafikkavvikling", "trafikkavviklingen": "trafikkavvikling", "trafikkavviklingsproblemer": "trafikkavviklingsproblem", "trafikkbegrensninger": "trafikkbegrensning", "trafikkbelastede": "trafikkbelast", "trafikkbelastning": "trafikkbelastning", "trafikkbelastningen": "trafikkbelastning", "trafikkbelastninger": "trafikkbelastning", "trafikkbildet": "trafikkbild", "trafikken": "trafikk", "trafikkens": "trafikk", "trafikkerer": "trafikker", "trafikkert": "trafikker", "trafikkerte": "trafikker", "trafikkfordeling": "trafikkfordeling", "trafikkgenererende": "trafikkgenerer", "trafikkhavn": "trafikkhavn", "trafikkhavneanlegg": "trafikkhavneanlegg", "trafikkhavnene": "trafikkhavn", "trafikkhavner": "trafikkhavn", "trafikkhavnvirksomhet": "trafikkhavnvirksom", "trafikkløsning": "trafikkløsning", "trafikkmengde": "trafikkmengd", "trafikkmengder": "trafikkmengd", "trafikkmessig": "trafikkmess", "trafikkmessige": "trafikkmess", "trafikkmønster": "trafikkmønst", "trafikkmønsteret": "trafikkmønster", "trafikkoverskudd": "trafikkoverskudd", "trafikkproblemer": "trafikkproblem", "trafikkregulerende": "trafikkreguler", "trafikkreguleringer": "trafikkregulering", "trafikksentral": "trafikksentral", "trafikksentralen": "trafikksentral", "trafikksentralene": "trafikksentral", "trafikksentraler": "trafikksentral", "trafikkseparasjonssystem": "trafikkseparasjonssystem", "trafikkseparasjonssytem": "trafikkseparasjonssytem", "trafikksikkerhet": "trafikksikker", "trafikksituasjon": "trafikksituasjon", "trafikksituasjonen": "trafikksituasjon", "trafikkstrømmer": "trafikkstrømm", "trafikktellinger": "trafikktelling", "trafikktetthet": "trafikktett", "trafikktettheten": "trafikktett", "trafikkutvikling": "trafikkutvikling", "trafikkutviklingen": "trafikkutvikling", "trafikkvekst": "trafikkvekst", "trafikkveksten": "trafikkvekst", "trafikkvekstrater": "trafikkvekstrat", "trafikkvolumer": "trafikkvolum", "trafikkvolumet": "trafikkvolum", "trafikkvolums": "trafikkvolum", "trafikkøkning": "trafikkøkning", "trafikkøkninger": "trafikkøkning", "trailer": "trail", "trailere": "trailer", "trailerutstyr": "trailerutstyr", "traktaten": "traktat", "traktatens": "traktat", "traller": "trall", "trampe": "tramp", "trampende": "tramp", "tramper": "tramp", "trampet": "tramp", "trang": "trang", "trange": "trang", "trangt": "trangt", "tranportarbeidet": "tranportarbeid", "trans": "tran", "transaksjon": "transaksjon", "transaksjonar": "transaksjon", "transaksjonen": "transaksjon", "transeuropeiske": "transeuropeisk", "transformering": "transformering", "transitt": "transitt", "transittcontainerne": "transittcontainern", "transittgods": "transittgod", "transitthavn": "transitthavn", "transittlast": "transittl", "transittrafikk": "transittrafikk", "transport": "transport", "transportalternativ": "transportalternativ", "transportarbeid": "transportarbeid", "transportarbeidet": "transportarbeid", "transportavstand": "transportavstand", "transportavstander": "transportavstand", "transportavvikling": "transportavvikling", "transportbedriftene": "transportbedrift", "transportbedrifter": "transportbedrift", "transportbehov": "transportbehov", "transportbildet": "transportbild", "transportbransjen": "transportbransj", "transportbrukere": "transportbruker", "transportbrukeren": "transportbruker", "transportbrukerne": "transportbrukern", "transportbrukernes": "transportbrukern", "transportbærere": "transportbærer", "transportdistanse": "transportdistans", "transporten": "transport", "transportene": "transport", "transporter": "transport", "transporterer": "transporter", "transporteres": "transporter", "transportert": "transporter", "transporterte": "transporter", "transportetater": "transportetat", "transportetterspørsel": "transportetterspørsel", "transportfirmaer": "transportfirma", "transportform": "transportform", "transportformen": "transportform", "transportformene": "transportform", "transportformer": "transportform", "transportinfrastruktur": "transportinfrastruktur", "transportkjeden": "transportkjed", "transportkjeder": "transportkjed", "transportkjøpere": "transportkjøper", "transportkjøperne": "transportkjøpern", "transportkjøpernes": "transportkjøpern", "transportknutepunkt": "transportknutepunkt", "transportkorridor": "transportkorridor", "transportkorridorene": "transportkorridor", "transportkorridorer": "transportkorridor", "transportkostnad": "transportkostnad", "transportkostnadene": "transportkostnad", "transportkostnader": "transportkostnad", "transportkostnadsmessige": "transportkostnadsmess", "transportkrevende": "transportkrev", "transportkvalitet": "transportkvalit", "transportkvaliteten": "transportkvalitet", "transportleddene": "transportledd", "transportleddet": "transportledd", "transportlenker": "transportlenk", "transportlinkene": "transportlink", "transportløsning": "transportløsning", "transportløsningen": "transportløsning", "transportløsningene": "transportløsning", "transportløsninger": "transportløsning", "transportmarkedet": "transportmarked", "transportmateriell": "transportmateriell", "transportmessig": "transportmess", "transportmessige": "transportmess", "transportmiddel": "transportmiddel", "transportmiddelfordelingen": "transportmiddelfordeling", "transportmidlene": "transportmidl", "transportmidler": "transportmidl", "transportmåte": "transportmåt", "transportmåter": "transportmåt", "transportmønstre": "transportmønstr", "transportmønstrene": "transportmønstr", "transportnett": "transportnett", "transportnettet": "transportnett", "transportnettverket": "transportnettverk", "transportomfang": "transportomfang", "transportoppgaver": "transportoppgav", "transportopplegg": "transportopplegg", "transportorganisering": "transportorganisering", "transportperspektiv": "transportperspektiv", "transportplan": "transportplan", "transportplanen": "transportplan", "transportplanlegging": "transportplanlegging", "transportpolitikken": "transportpolitikk", "transportpris": "transportpris", "transportprosjekter": "transportprosjekt", "transportrelaterte": "transportrelater", "transportruten": "transportrut", "transportsammenheng": "transportsammenheng", "transportsektoren": "transportsektor", "transportsektorene": "transportsektor", "transportselskapene": "transportselskap", "transportselskaper": "transportselskap", "transportstrømmene": "transportstrømm", "transportstrømmer": "transportstrømm", "transportsystem": "transportsystem", "transportsystemer": "transportsystem", "transportsystemers": "transportsystem", "transportsystemet": "transportsystem", "transportsystemets": "transportsystem", "transporttilbud": "transporttilbud", "transporttjeneste": "transporttjenest", "transporttjenester": "transporttjenest", "transportutviklingen": "transportutvikling", "transportveg": "transportveg", "transportvirksomhet": "transportvirksom", "transportvirksomheter": "transportvirksom", "transportvolumer": "transportvolum", "transportårene": "transportår", "transportøkonomi": "transportøkonomi", "transportøkonomisk": "transportøkonomisk", "transportørene": "transportør", "transportørenes": "transportør", "transportørens": "transportør", "transportører": "transportør", "trappes": "trapp", "trase": "tras", "trasket": "trask", "trass": "trass", "trassen": "trass", "trassig": "trass", "trau": "trau", "trauet": "trauet", "travemunde": "travemund", "travle": "travl", "tre": "tre", "tredel": "tredel", "tredelar": "tredel", "tredeler": "tredel", "tredeling": "tredeling", "tredels": "tredel", "tredje": "tredj", "tredjedel": "tredjedel", "tredjedelen": "tredjedel", "tredjedeler": "tredjedel", "tredjedels": "tredjedel", "tredjemann": "tredjemann", "tredjemenn": "tredjemenn", "tredjeparten": "tredjepart", "tredjeperson": "tredjeperson", "tredjepersonen": "tredjeperson", "tredjepersons": "tredjeperson", "tredoblet": "tredobl", "treet": "treet", "treffande": "treff", "treffe": "treff", "treffende": "treff", "treffer": "treff", "treffes": "treff", "trefigurer": "trefigur", "trefork": "trefork", "tregere": "treger", "trekk": "trekk", "trekke": "trekk", "trekker": "trekk", "trekkes": "trekk", "trekkjast": "trekkj", "trekkje": "trekkj", "trekkjer": "trekkj", "trekkvogn": "trekkvogn", "trekte": "trekt", "trelast": "trel", "trelemmer": "trelemm", "trell": "trell", "trellene": "trell", "treller": "trell", "trellkvinnene": "trellkvinn", "trellkvinner": "trellkvinn", "tremasse": "tremass", "trend": "trend", "trenden": "trend", "trender": "trend", "trendmessig": "trendmess", "trendmessige": "trendmess", "trends": "trend", "trener": "tren", "trenere": "trener", "trenet": "tren", "treng": "treng", "trenge": "treng", "trenger": "treng", "trengje": "trengj", "trengs": "treng", "trengst": "trengst", "trengt": "trengt", "trengte": "trengt", "trening": "trening", "trepunktsløsning": "trepunktsløsning", "trer": "trer", "trerot": "trerot", "tresleiv": "tresleiv", "trestammen": "trestamm", "trestammer": "trestamm", "trestokkene": "trestokk", "trestokker": "trestokk", "tretoppene": "tretopp", "trett": "trett", "trette": "trett", "tretti": "tretti", "trettiårsregelen": "trettiårsregel", "triangel": "triangel", "triller": "trill", "trimrommet": "trimromm", "trinn": "trinn", "trinnene": "trinn", "trinns": "trinn", "trist": "trist", "trives": "triv", "trivielt": "trivielt", "trivsel": "trivsel", "trivst": "trivst", "tro": "tro", "trodd": "trodd", "trodde": "trodd", "trofast": "trof", "trofaste": "trofast", "trolig": "trol", "troll": "troll", "trollborg": "trollborg", "trollborgen": "trollborg", "trolldom": "trolldom", "trolldomskunster": "trolldomskunst", "trollene": "troll", "trollet": "troll", "trolljenter": "trolljent", "trolljern": "trolljern", "trollkjerring": "trollkjerring", "trollkjerringer": "trollkjerring", "trollkongen": "trollkong", "trollkvinne": "trollkvinn", "trollkvinnen": "trollkvinn", "trollmann": "trollmann", "trollskog": "trollskog", "trollslekten": "trollslekt", "tromsø": "tromsø", "trond": "trond", "trondheim": "trondheim", "tronen": "tron", "troner": "tron", "trongare": "trongar", "trongst": "trongst", "tronstolen": "tronstol", "tror": "tror", "troskap": "troskap", "troskaps": "troskap", "troskyldig": "troskyld", "troskyldighet": "troskyld", "tross": "tross", "trosser": "tross", "troverdigheten": "troverd", "tru": "tru", "trucker": "truck", "trud": "trud", "trudvang": "trudvang", "true": "true", "truende": "truend", "truer": "truer", "truet": "truet", "truffet": "truff", "trukket": "trukk", "truleg": "truleg", "trur": "trur", "trusler": "trusl", "trutt": "trutt", "truvedkjenning": "truvedkjenning", "truverdet": "truverd", "trygd": "trygd", "trygda": "trygd", "trygdeavgift": "trygdeavgift", "trygdeavgiften": "trygdeavgift", "trygdeetatens": "trygdeetat", "trygdens": "trygd", "trygdeordninger": "trygdeordning", "trygdesystemet": "trygdesystem", "trygdet": "trygd", "trygdgjeving": "trygdgjeving", "trygdgjevinga": "trygdgjeving", "trygg": "trygg", "tryggare": "tryggar", "trygge": "trygg", "tryggeste": "tryggest", "tryggingsventilen": "tryggingsventil", "tryggleik": "tryggleik", "trygt": "trygt", "trykker": "trykk", "trykkjer": "trykkj", "trykte": "trykt", "trylleord": "trylleord", "tryller": "tryll", "tryllesangene": "tryllesang", "tryllesanger": "tryllesang", "tryllesøvn": "tryllesøvn", "tryllevers": "tryllev", "trym": "trym", "trymheim": "trymheim", "tryms": "trym", "trymsheim": "trymsheim", "trå": "trå", "tråd": "tråd", "tråder": "tråd", "trådt": "trådt", "trådte": "trådt", "trær": "trær", "trærne": "trærn", "trøndelag": "trøndelag", "trør": "trør", "trøst": "trøst", "trøste": "trøst", "trøster": "trøst", "tu": "tu", "tumler": "tuml", "tummelumsk": "tummelumsk", "tunet": "tun", "tung": "tung", "tunge": "tung", "tungen": "tung", "tunger": "tung", "tungt": "tungt", "tungtrafikk": "tungtrafikk", "tungtrafikken": "tungtrafikk", "tungtrafikkens": "tungtrafikk", "tungtransport": "tungtransport", "tungtransportbil": "tungtransportbil", "tungtransporten": "tungtransport", "tungtvegande": "tungtveg", "tungvint": "tungvint", "tunnel": "tunnel", "tunnelen": "tunnel", "tunneler": "tunnel", "tunnelgjennomføring": "tunnelgjennomføring", "tunnelløsning": "tunnelløsning", "tuntre": "tuntr", "tuntreet": "tuntre", "tur": "tur", "ture": "tur", "tusen": "tus", "tusener": "tusen", "tusenvis": "tusenvis", "tusler": "tusl", "tussefolkets": "tussefolk", "tussekongen": "tussekong", "tussekonger": "tussekong", "tusser": "tuss", "tussete": "tusset", "tuter": "tut", "tv": "tv", "tvang": "tvang", "tvangsakkord": "tvangsakkord", "tvangsbruk": "tvangsbruk", "tvangsdekning": "tvangsdekning", "tvangsdekningen": "tvangsdekning", "tvangsfråviking": "tvangsfråviking", "tvangsfullbyrdelse": "tvangsfullbyrd", "tvangsfullføring": "tvangsfullføring", "tvangsfullføringslova": "tvangsfullføring", "tvangsfullført": "tvangsfullført", "tvangsgrunnlaga": "tvangsgrunnlag", "tvangsinndrivelse": "tvangsinndriv", "tvangsl": "tvangsl", "tvangslova": "tvang", "tvangsmiddel": "tvangsmiddel", "tvangsmulkt": "tvangsmulkt", "tvangssal": "tvangssal", "tvangssalet": "tvangssal", "tvangssalg": "tvangssalg", "tvangsseld": "tvangsseld", "tvangsseljast": "tvangsselj", "tvekamp": "tvekamp", "tvekampen": "tvekamp", "tverrbjelken": "tverrbjelk", "tverrgående": "tverrgå", "tverrpolitisk": "tverrpolitisk", "tverrsektoriell": "tverrsektoriell", "tvers": "tver", "tvert": "tvert", "tvertimot": "tvertimot", "tvi": "tvi", "tvil": "tvil", "tvilande": "tvil", "tvile": "tvil", "tvilen": "tvil", "tvilende": "tvil", "tviler": "tvil", "tvilsamt": "tvilsamt", "tvilsomt": "tvilsomt", "tvilsspørsmål": "tvilsspørsmål", "tvilsspørsmåla": "tvilsspørsmål", "tvilstilfelle": "tvilstilfell", "tvinge": "tving", "tvinger": "tving", "tvinges": "tving", "tvist": "tvist", "tvistane": "tvist", "tvistar": "tvist", "tvisteløysing": "tvisteløysing", "tvisteløysingsorgan": "tvisteløysingsorgan", "tvistemål": "tvistemål", "tvistemålslov": "tvistemål", "tvistemålslova": "tvistemål", "tvisten": "tvist", "tvungen": "tvung", "tvunget": "tvung", "twenty": "twenty", "tyde": "tyd", "tydeleg": "tyd", "tydelig": "tyd", "tydelige": "tyd", "tydeligere": "tydeliger", "tydeliggjort": "tydeliggjort", "tydeliggjøre": "tydeliggjør", "tyder": "tyd", "tyding": "tyding", "tydinga": "tyding", "tydingar": "tyding", "tygger": "tygg", "tygget": "tygg", "tykke": "tykk", "tykkere": "tykker", "tykt": "tykt", "tyngdepunkt": "tyngdepunkt", "tyngdepunktet": "tyngdepunkt", "tyngende": "tyng", "tyngjande": "tyngj", "tyngst": "tyngst", "tyngste": "tyngst", "tynn": "tynn", "tynt": "tynt", "typane": "typ", "typar": "typ", "type": "typ", "typeeksempel": "typeeksempel", "typen": "typ", "typene": "typ", "typer": "typ", "typisk": "typisk", "typiske": "typisk", "tyr": "tyr", "tyrs": "tyr", "tysk": "tysk", "tyske": "tysk", "tyskland": "tyskland", "tysvær": "tysvær", "tyter": "tyt", "tyv": "tyv", "tyve": "tyv", "tyven": "tyv", "tyveriet": "tyveri", "tå": "tå", "tåa": "tåa", "tåke": "tåk", "tåkeheimen": "tåkeheim", "tåken": "tåk", "tåle": "tål", "tåler": "tål", "tålmodig": "tålmod", "tålmodighet": "tålmod", "tålmodigheten": "tålmod", "tålt": "tålt", "tåre": "tår", "tårene": "tår", "tårer": "tår", "tårn": "tårn", "tårner": "tårn", "tælen": "tæl", "tær": "tær", "tære": "tær", "tærne": "tærn", "tøi": "tøi", "tømme": "tømm", "tømmene": "tømm", "tømmer": "tømm", "tømmerimporten": "tømmerimport", "tømmerstokkene": "tømmerstokk", "tømmertransport": "tømmertransport", "tømmertransporter": "tømmertransport", "tømmervegger": "tømmervegg", "tømmes": "tømm", "tønnen": "tønn", "tønner": "tønn", "tønsberg": "tønsberg", "tør": "tør", "tørker": "tørk", "tørner": "tørn", "tørr": "tørr", "tørrbulk": "tørrbulk", "tørrbulkgodset": "tørrbulkgods", "tørrbulkkai": "tørrbulkkai", "tørrbulkomslag": "tørrbulkomslag", "tørre": "tørr", "tørst": "tørst", "tørste": "tørst", "tørstet": "tørst", "tørt": "tørt", "tøy": "tøy", "tøyle": "tøyl", "tøyler": "tøyl", "tøyser": "tøys", "uakseptable": "uakseptabl", "uaktuelt": "uaktuelt", "uanseelig": "uanse", "uansett": "uansett", "uavbrutt": "uavbrutt", "uavgjort": "uavgjort", "uavgrensa": "uavgrens", "uavhengig": "uavheng", "uavhengige": "uavheng", "uavkortet": "uavkort", "ubalanse": "ubalans", "ubedte": "ubed", "ubegrensede": "ubegrens", "ubegrenset": "ubegrens", "ubegripelig": "ubegrip", "ubenyttet": "ubenytt", "uberegnelig": "uberegn", "uberegnelige": "uberegn", "uberørte": "uberørt", "ubestemt": "ubestemt", "ubetinga": "ubeting", "ubetinget": "ubeting", "ubetydelig": "ubetyd", "ubunden": "ubund", "ubygde": "ubygd", "ubøyelig": "ubøy", "udekket": "udekk", "udekte": "udekt", "udgave": "udgav", "udjerv": "udjerv", "udyret": "udyr", "udyrs": "udyr", "ueigentleg": "ueigent", "ueinsarta": "ueinsart", "uendelig": "uend", "uendelige": "uend", "uendret": "uendr", "ufattelig": "ufatt", "uforanderlig": "uforander", "uforandret": "uforandr", "uforfalle": "uforfall", "uforholdsmessig": "uforholdsmess", "uforlikte": "uforlikt", "uformelig": "uform", "uformelle": "uformell", "uforsiktig": "uforsikt", "uforsvarleg": "uforsvar", "uforsvarlege": "uforsvar", "uforsvarlig": "uforsvar", "uforutsett": "uforutsett", "ufred": "ufred", "ufri": "ufri", "ufriviljuge": "ufriviljug", "ufråvikeleg": "ufråvik", "ufråvikelege": "ufråvik", "ufullstendig": "ufullstend", "ufullstendige": "ufullstend", "ufyselig": "ufys", "ufyselige": "ufys", "ufør": "ufør", "uføre": "ufør", "uføreforsikring": "uføreforsikring", "uføregraden": "uføregrad", "uførepensjon": "uførepensjon", "uførepensjonen": "uførepensjon", "uførepensjonens": "uførepensjon", "uførepensjoner": "uførepensjon", "uførepensjonister": "uførepensjonist", "uførepensjonsforsikring": "uførepensjonsforsikring", "uføretidspunktet": "uføretidspunkt", "uføreytelser": "uføreyt", "uførhet": "ufør", "uførheten": "ufør", "ugagnskråka": "ugagnskråk", "ugagnskråke": "ugagnskråk", "uggla": "uggl", "ugifte": "ugift", "ugjennomsiktig": "ugjennomsikt", "ugjennomsiktige": "ugjennomsikt", "ugjerne": "ugjern", "ugjerningsmenn": "ugjerningsmenn", "ugyldig": "ugyld", "ugyldige": "ugyld", "uheldig": "uheld", "uheldige": "uheld", "uhell": "uhell", "uhensiktsmessig": "uhensiktsmess", "uhevnet": "uhevn", "uhyggelig": "uhygg", "uhyggelige": "uhygg", "uhyrer": "uhyr", "uhyret": "uhyr", "uinnfridde": "uinnfridd", "ujamn": "ujamn", "uke": "uke", "ukedager": "ukedag", "uken": "uken", "ukentlig": "ukent", "uker": "uker", "ukjent": "ukjent", "ukjente": "ukjent", "uklar": "ukl", "uklare": "uklar", "uklarhet": "uklar", "uklarheter": "uklar", "uklart": "uklart", "uklok": "uklok", "uklokt": "uklokt", "uklår": "uklår", "uklåre": "uklår", "uklårt": "uklårt", "ukrevet": "ukrev", "ulage": "ulag", "ulefoss": "ulefoss", "ulempa": "ulemp", "ulempe": "ulemp", "ulempene": "ulemp", "ulemper": "ulemp", "uler": "uler", "uleselige": "ules", "ulik": "ulik", "ulike": "ulik", "ulikhet": "ulik", "ulikhetene": "ulik", "ulikheter": "ulik", "ulikskap": "ulikskap", "ulikskapen": "ulikskap", "ulikt": "ulikt", "ull": "ull", "ullen": "ull", "ulmer": "ulm", "ulovfesta": "ulovfest", "ulovleg": "ulov", "ulv": "ulv", "ulve": "ulv", "ulvegapet": "ulvegap", "ulveham": "ulveham", "ulvekjeften": "ulvekjeft", "ulven": "ulv", "ulvene": "ulv", "ulver": "ulv", "ulveskikkelse": "ulveskikk", "ulvesnute": "ulvesnut", "ulvestemmer": "ulvestemm", "ulvetid": "ulvetid", "ulvungen": "ulvung", "ulydighet": "ulyd", "ulykke": "ulykk", "ulykkelig": "ulykk", "ulykkelige": "ulykk", "ulykker": "ulykk", "ulykkesfugl": "ulykkesfugl", "ulykkeskostnader": "ulykkeskostnad", "ulyst": "ulyst", "ulønsamt": "ulønsamt", "umettelige": "umett", "umiddelbar": "umiddelb", "umiddelbart": "umiddelbart", "umogleg": "umog", "umulig": "umu", "umulige": "umu", "umyndig": "umynd", "umyndiggjorde": "umyndiggjord", "und": "und", "undamentet": "undament", "under": "und", "underdekning": "underdekning", "underdirektør": "underdirektør", "underforstått": "underforstått", "underfulle": "underfull", "undergang": "undergang", "undergis": "undergis", "undergitt": "undergitt", "undergruppe": "undergrupp", "underjordisk": "underjordisk", "underjordiske": "underjordisk", "underkant": "underkant", "underkapitler": "underkapitl", "underkjeven": "underkjev", "underkurs": "underkur", "underlag": "underlag", "underlagde": "underlagd", "underlagsmateriale": "underlagsmaterial", "underlagsmaterialet": "underlagsmaterial", "underlagt": "underlagt", "underlegges": "underlegg", "underleveranser": "underleverans", "underlig": "under", "underlige": "under", "underliggende": "underligg", "underminere": "underminer", "underordna": "underordn", "underordnet": "underordn", "underordnete": "underordnet", "underpris": "underpris", "underprising": "underprising", "underrapportering": "underrapportering", "underrapporteringen": "underrapportering", "underskift": "underskift", "underskifter": "underskift", "underskot": "underskot", "underskrift": "underskrift", "underskriftene": "underskrift", "underskrifter": "underskrift", "underskrivast": "underskriv", "underskrive": "underskriv", "underskriven": "underskriv", "underskriving": "underskriving", "underskudd": "underskudd", "underskuddet": "underskudd", "understreke": "understrek", "understreker": "understrek", "understrekes": "understrek", "understøtter": "understøtt", "undersøke": "undersøk", "undersøkelse": "undersøk", "undersøkelsen": "undersøk", "undersøkelsene": "undersøk", "undersøkelser": "undersøk", "undersøkingane": "undersøking", "undersøkingar": "undersøking", "undersøkje": "undersøkj", "undersøkjer": "undersøkj", "undersøkt": "undersøkt", "underteiknast": "underteikn", "undervegs": "underveg", "underveis": "underveis", "undervurderer": "undervurder", "undervurderte": "undervurder", "undre": "undr", "undrende": "undr", "undrer": "undr", "undres": "undr", "undring": "undring", "ung": "ung", "ungdom": "ungdom", "ungdommen": "ungdomm", "ungdoms": "ungdom", "ungdomsbustader": "ungdomsbustad", "unge": "ung", "ungen": "ung", "unger": "ung", "ungr": "ungr", "union": "union", "unionen": "union", "uniship": "uniship", "unit": "unit", "united": "united", "unitisering": "unitisering", "unitiseringsgraden": "unitiseringsgrad", "unitisert": "unitiser", "unitiserte": "unitiser", "universell": "universell", "universitat": "universitat", "university": "university", "unna": "unn", "unne": "unn", "unner": "unn", "unngå": "unngå", "unngår": "unngår", "unngås": "unngås", "unngått": "unngått", "unnlate": "unnlat", "unnlater": "unnlat", "unnlatt": "unnlatt", "unnslippe": "unnslipp", "unntak": "unntak", "unntaka": "unntak", "unntaket": "unntak", "unntaksregel": "unntaksregel", "unntaksregelen": "unntaksregel", "unntakstilfeller": "unntakstilfell", "unntaksvis": "unntaksvis", "unntas": "unnt", "unntatt": "unntatt", "unormale": "unormal", "unødig": "unød", "unødvendig": "unødvend", "unødvendige": "unødvend", "uomtvista": "uomtvist", "uoppseieleg": "uoppsei", "uoppseielege": "uoppsei", "uorden": "uord", "uoverdrageleg": "uoverdrag", "uoversiktleg": "uoversikt", "uoversiktlig": "uoversikt", "up": "up", "uppfyller": "uppfyll", "upplagan": "upplagan", "uppsala": "uppsal", "upraktisk": "upraktisk", "upraktiske": "upraktisk", "uprøvd": "uprøvd", "ur": "ur", "urasjonell": "urasjonell", "urd": "urd", "urds": "urd", "urealisert": "urealiser", "urealiserte": "urealiser", "urealistisk": "urealistisk", "uredd": "uredd", "uregistrert": "uregistrer", "uregistrerte": "uregistrer", "uregulert": "ureguler", "urette": "urett", "urettferdig": "urettferd", "urimeleg": "urim", "urimelege": "urim", "urimelig": "urim", "uro": "uro", "urolig": "uro", "urolige": "uro", "urter": "urt", "urtiden": "urtid", "uråd": "uråd", "urørlig": "urør", "usa": "usa", "usakleg": "usak", "usamde": "usamd", "uselde": "useld", "useljeleg": "uselj", "usemje": "usemj", "usikker": "usikk", "usikkerhet": "usikker", "usikkerheten": "usikker", "usikkerhetsperiode": "usikkerhetsperiod", "usikkert": "usikker", "usikra": "usikr", "usikre": "usikr", "uskadd": "uskadd", "uskadde": "uskadd", "uskifte": "uskift", "uskiftet": "uskift", "uskikk": "uskikk", "uskyidige": "uskyid", "uskylden": "uskyld", "uskyldig": "uskyld", "uskyldsrene": "uskyldsr", "uslingen": "usling", "uslinger": "usling", "uspesisfisert": "uspesisfiser", "ustyrtelig": "ustyrt", "ustøtt": "ustøtt", "usynlige": "usyn", "usårlig": "usår", "ut": "ut", "utad": "utad", "utafor": "utafor", "utaforståande": "utaforstå", "utafrå": "utafrå", "utan": "utan", "utanfrå": "utanfrå", "utanom": "utanom", "utarbeidast": "utarbeid", "utarbeidde": "utarbeidd", "utarbeide": "utarbeid", "utarbeidelse": "utarbeid", "utarbeidelsen": "utarbeid", "utarbeider": "utarbeid", "utarbeides": "utarbeid", "utarbeidet": "utarbeid", "utarbeiding": "utarbeiding", "utbedring": "utbedring", "utbedringer": "utbedring", "utbetale": "utbetal", "utbetaler": "utbetal", "utbetales": "utbetal", "utbetaling": "utbetaling", "utbetalingane": "utbetaling", "utbetalingar": "utbetaling", "utbetalingen": "utbetaling", "utbetalingene": "utbetaling", "utbetalingenes": "utbetaling", "utbetalinger": "utbetaling", "utbetalingsdagen": "utbetalingsdag", "utbetalingsdatoen": "utbetalingsdato", "utbetalingsfasen": "utbetalingsfas", "utbetalingsperiode": "utbetalingsperiod", "utbetalingsperioden": "utbetalingsperiod", "utbetalingsperiodens": "utbetalingsperiod", "utbetalingsprofil": "utbetalingsprofil", "utbetalingsprofilen": "utbetalingsprofil", "utbetalingsreglene": "utbetalingsregl", "utbetalingstiden": "utbetalingstid", "utbetalingstidspunktet": "utbetalingstidspunkt", "utbetalingsår": "utbetalingsår", "utbetalt": "utbetalt", "utbetalte": "utbetalt", "utbetrast": "utbetr", "utbetre": "utbetr", "utbetring": "utbetring", "utbetringa": "utbetring", "utbetringsplikt": "utbetringsplikt", "utbredelse": "utbred", "utbredelsen": "utbred", "utbredt": "utbred", "utbreidd": "utbreidd", "utbreidde": "utbreidd", "utbrent": "utbrent", "utbudet": "utbud", "utbygd": "utbygd", "utbygde": "utbygd", "utbygg": "utbygg", "utbygger": "utbygg", "utbygges": "utbygg", "utbygget": "utbygg", "utbygging": "utbygging", "utbygginga": "utbygging", "utbyggingen": "utbygging", "utbyggingene": "utbygging", "utbygginger": "utbygging", "utbyggings": "utbygging", "utbyggingsalternativet": "utbyggingsalternativ", "utbyggingsbehov": "utbyggingsbehov", "utbyggingsform": "utbyggingsform", "utbyggingsgrad": "utbyggingsgrad", "utbyggingskostnader": "utbyggingskostnad", "utbyggingsmodell": "utbyggingsmodell", "utbyggingsmodellen": "utbyggingsmodell", "utbyggingsmuligheter": "utbyggingsmu", "utbyggingsmønsteret": "utbyggingsmønster", "utbyggingsområde": "utbyggingsområd", "utbyggingsplan": "utbyggingsplan", "utbyggingsplanene": "utbyggingsplan", "utbyggingsplaner": "utbyggingsplan", "utbyggingspotensiale": "utbyggingspotensial", "utbyggingstakten": "utbyggingstakt", "utbyggingstiltak": "utbyggingstiltak", "utbyggjar": "utbyggj", "utbyggjarane": "utbyggjar", "utbyggjarar": "utbyggjar", "utbyggjaren": "utbyggjar", "utbyggjarrolle": "utbyggjarroll", "utbyggjarsida": "utbyggjarsid", "utbyggjartilfella": "utbyggjartilfell", "utbygt": "utbygt", "utbyte": "utbyt", "utbytte": "utbytt", "utdanning": "utdanning", "utdeling": "utdeling", "utdelinga": "utdeling", "utdelingane": "utdeling", "utdelingar": "utdeling", "utdelt": "utdelt", "utdelte": "utdelt", "utdrag": "utdrag", "utdypes": "utdyp", "utdyping": "utdyping", "utdypninger": "utdypning", "ute": "ute", "uteanlegg": "uteanlegg", "uteareal": "uteareal", "utearealene": "uteareal", "utelukke": "utelukk", "utelukkende": "utelukk", "utelukker": "utelukk", "utelukkes": "utelukk", "utelukket": "utelukk", "uten": "uten", "utenfor": "utenfor", "utenfra": "utenfr", "utenlands": "utenland", "utenlandsferjene": "utenlandsferj", "utenlandsforbindelser": "utenlandsforbind", "utenlandsk": "utenlandsk", "utenlandske": "utenlandsk", "utenlandstrafikk": "utenlandstrafikk", "utenleg": "uten", "utenom": "utenom", "utenriks": "utenriks", "utenriksfart": "utenriksfart", "utenrikshandel": "utenrikshandel", "utenrikshandelen": "utenrikshandel", "utenrikshandelens": "utenrikshandel", "utenrikshandelsstatistikk": "utenrikshandelsstatistikk", "utenrikshandelsstatistikken": "utenrikshandelsstatistikk", "utenrikshandelstransporter": "utenrikshandelstransport", "utenrikshavn": "utenrikshavn", "utenrikstrafikk": "utenrikstrafikk", "utenrikstransporter": "utenrikstransport", "uteområde": "uteområd", "utestengd": "utestengd", "utestenging": "utestenging", "utestenginga": "utestenging", "utette": "utett", "utetter": "utett", "utfalding": "utfalding", "utfall": "utfall", "utfallet": "utfall", "utfart": "utfart", "utferda": "utferd", "utferdaren": "utferdar", "utferdast": "utferd", "utferde": "utferd", "utferdige": "utferd", "utferding": "utferding", "utfisjonering": "utfisjonering", "utflytting": "utflytting", "utfor": "utfor", "utfordre": "utfordr", "utfordring": "utfordring", "utfordringen": "utfordring", "utfordringene": "utfordring", "utfordringer": "utfordring", "utforma": "utform", "utformast": "utform", "utforme": "utform", "utformer": "utform", "utformes": "utform", "utformet": "utform", "utforming": "utforming", "utforminga": "utforming", "utformingen": "utforming", "utformingene": "utforming", "utforminger": "utforming", "utfyllande": "utfyll", "utfyllende": "utfyll", "utfyller": "utfyll", "utfylles": "utfyll", "utfylling": "utfylling", "utfyllingene": "utfylling", "utfyllinger": "utfylling", "utfyllingsområde": "utfyllingsområd", "utførande": "utfør", "utførast": "utfør", "utføre": "utfør", "utførelse": "utfør", "utfører": "utfør", "utføres": "utfør", "utføring": "utføring", "utføringa": "utføring", "utførleg": "utfør", "utførlege": "utfør", "utført": "utført", "utgang": "utgang", "utgangen": "utgang", "utgangspunkt": "utgangspunkt", "utgangspunktet": "utgangspunkt", "utgard": "utgard", "utgiften": "utgift", "utgiftene": "utgift", "utgifter": "utgift", "utgiftsføres": "utgiftsfør", "utgiftsgodtgjørelser": "utgiftsgodtgjør", "utgiftsmønsteret": "utgiftsmønster", "utgitt": "utgitt", "utgivelse": "utgiv", "utgjer": "utgj", "utgjere": "utgjer", "utgjeven": "utgjev", "utgjorde": "utgjord", "utgjort": "utgjort", "utgjør": "utgjør", "utgjøre": "utgjør", "utgjøres": "utgjør", "utgreiing": "utgreiing", "utgreiinga": "utgreiing", "utgreiingar": "utgreiing", "utgå": "utgå", "utgående": "utgå", "utgår": "utgår", "utgått": "utgått", "utholing": "utholing", "utilfredsstillende": "utilfredsstill", "utilsiktede": "utilsikt", "utilsiktet": "utilsikt", "utjamningsmeldinga": "utjamningsmelding", "utjevne": "utjevn", "utjevner": "utjevn", "utjevnes": "utjevn", "utjevning": "utjevning", "utjevningsbehovet": "utjevningsbehov", "utkanten": "utkant", "utkantområde": "utkantområd", "utkast": "utk", "utkasta": "utkast", "utkastet": "utkast", "utkastets": "utkast", "utkasting": "utkasting", "utkastingssaker": "utkastingssak", "utkjøring": "utkjøring", "utland": "utland", "utlandet": "utland", "utlegg": "utlegg", "utlegget": "utlegg", "utlegging": "utlegging", "utleggspant": "utleggspant", "utleggstakaren": "utleggstakar", "utleid": "utleid", "utleidd": "utleidd", "utleidde": "utleidd", "utleie": "utlei", "utleieren": "utleier", "utleiga": "utl", "utleigar": "utl", "utleigarar": "utleigar", "utleigaren": "utleigar", "utleigarselskap": "utleigarselskap", "utleigd": "utleigd", "utleige": "utl", "utleigebustad": "utleigebustad", "utleigebustadene": "utleigebustad", "utleigebustader": "utleigebustad", "utleigebygg": "utleigebygg", "utleigeeigdom": "utleigeeigdom", "utleigeeigedom": "utleigeeigedom", "utleigeeigedommar": "utleigeeigedomm", "utleigemodellar": "utleigemodell", "utleigeobjekt": "utleigeobjekt", "utleigeselskap": "utleigeselskap", "utleigeverksemd": "utleigeverksemd", "utleigeverksemda": "utleigeverksemd", "utlikner": "utlikn", "utlikninga": "utlikning", "utlån": "utlån", "utlåna": "utlån", "utlånaren": "utlånar", "utlånsordningane": "utlånsordning", "utlånsverksemd": "utlånsverksemd", "utløp": "utløp", "utløpet": "utløp", "utløse": "utløs", "utløser": "utløs", "utløses": "utløs", "utløst": "utløst", "utløyser": "utløys", "utløysing": "utløysing", "utløysinga": "utløysing", "utløysingsgrunnen": "utløysingsgrunn", "utløysingsregel": "utløysingsregel", "utløysingssaka": "utløysingssak", "utløysingssummen": "utløysingssumm", "utløyst": "utløyst", "utmarkande": "utmark", "utmattet": "utmatt", "utmeldelse": "utmeld", "utmelding": "utmelding", "utmeldinga": "utmelding", "utmerket": "utmerk", "utmåles": "utmål", "utmålinga": "utmåling", "utnytta": "utnytt", "utnytte": "utnytt", "utnyttelse": "utnytt", "utnyttelsen": "utnytt", "utnyttelsesgrad": "utnyttelsesgrad", "utnyttes": "utnytt", "utnytting": "utnytting", "utnyttinga": "utnytting", "utover": "utov", "utpeiking": "utpeiking", "utpeikte": "utpeikt", "utpekt": "utpekt", "utpenslinga": "utpensling", "utporsjoneres": "utporsjoner", "utprøving": "utprøving", "utpå": "utpå", "utrasing": "utrasing", "utrede": "utr", "utredes": "utr", "utredet": "utred", "utredning": "utredning", "utredningen": "utredning", "utredningens": "utredning", "utredninger": "utredning", "utredningsarbeid": "utredningsarbeid", "utredningsarbeider": "utredningsarbeid", "utredningsbehov": "utredningsbehov", "utredningsinstruksen": "utredningsinstruks", "utredningsplikten": "utredningsplikt", "utredningsprosjekter": "utredningsprosjekt", "utrenet": "utren", "utro": "utro", "utrolig": "utro", "utrolige": "utro", "utrustning": "utrustning", "utrygg": "utrygg", "utrygge": "utrygg", "utrygt": "utrygt", "utrådt": "utråd", "utrøstelig": "utrøst", "utsagn": "utsagn", "utsatt": "utsatt", "utseende": "utse", "utseendet": "utseend", "utsetjande": "utsetj", "utsetje": "utsetj", "utsett": "utsett", "utsette": "utsett", "utsettelse": "utsett", "utsettes": "utsett", "utsikt": "utsikt", "utsiktene": "utsikt", "utsikter": "utsikt", "utskifting": "utskifting", "utskiftingar": "utskifting", "utskiljing": "utskiljing", "utskillelse": "utskill", "utskillelsen": "utskill", "utskilles": "utskill", "utskilling": "utskilling", "utskilt": "utskilt", "utskilte": "utskilt", "utskiping": "utskiping", "utskjemt": "utskjemt", "utskrift": "utskrift", "utskriving": "utskriving", "utskårne": "utskårn", "utslag": "utslag", "utslaget": "utslag", "utslagsgivende": "utslagsgiv", "utslipp": "utslipp", "utslippskostnader": "utslippskostnad", "utslått": "utslått", "utslåtte": "utslått", "utspring": "utspring", "utstede": "utst", "utstedelse": "utsted", "utsteder": "utsted", "utstedes": "utst", "utstedt": "utsted", "utstengd": "utstengd", "utstenging": "utstenging", "utstenginga": "utstenging", "utstoppete": "utstoppet", "utstrakt": "utstrakt", "utstrekning": "utstrekning", "utstyr": "utstyr", "utstyres": "utstyr", "utstyret": "utstyr", "utsyn": "utsyn", "uttak": "uttak", "uttala": "uttal", "uttale": "uttal", "uttalelse": "uttal", "uttalelser": "uttal", "uttaler": "uttal", "uttalt": "uttalt", "uttalte": "uttalt", "uttrade": "uttrad", "uttransport": "uttransport", "uttreden": "uttred", "uttrykk": "uttrykk", "uttrykkelig": "uttrykk", "uttrykkene": "uttrykk", "uttrykker": "uttrykk", "uttrykket": "uttrykk", "uttrykt": "uttrykt", "uttømmande": "uttømm", "uttømmende": "uttømm", "utval": "utval", "utvala": "utval", "utvalet": "utval", "utvalets": "utval", "utvalg": "utvalg", "utvalget": "utvalg", "utvalgets": "utvalg", "utvalgsarbeid": "utvalgsarbeid", "utvalgsarbeidet": "utvalgsarbeid", "utvalgsundersøkelse": "utvalgsundersøk", "utvalgte": "utvalgt", "utvalsmedlemmene": "utvalsmedlemm", "utvalsmedlemmer": "utvalsmedlemm", "utvatna": "utvatn", "utveg": "utveg", "utvegen": "utveg", "utvei": "utvei", "utvendig": "utvend", "utvida": "utvid", "utvide": "utvid", "utvidede": "utvid", "utvidelse": "utvid", "utvidelsen": "utvid", "utvidelser": "utvid", "utvidelsesmuligheter": "utvidelsesmu", "utvidelsesplanene": "utvidelsesplan", "utvidelsesplaner": "utvidelsesplan", "utvidelsespotensiale": "utvidelsespotensial", "utvidelsestrinnet": "utvidelsestrinn", "utvider": "utvid", "utvides": "utvid", "utvidet": "utvid", "utvidete": "utvidet", "utvidingar": "utviding", "utvikla": "utvikl", "utvikle": "utvikl", "utvikler": "utvikl", "utvikles": "utvikl", "utviklet": "utvikl", "utvikling": "utvikling", "utviklinga": "utvikling", "utviklingen": "utvikling", "utviklingpotensiale": "utviklingpotensial", "utviklingsbaner": "utviklingsban", "utviklingsforløp": "utviklingsforløp", "utviklingsmuligheter": "utviklingsmu", "utviklingsområder": "utviklingsområd", "utviklingsplan": "utviklingsplan", "utviklingsplanene": "utviklingsplan", "utviklingsplaner": "utviklingsplan", "utviklingsprosjekt": "utviklingsprosjekt", "utviklingstendens": "utviklingstend", "utviklingstendenser": "utviklingstendens", "utviklingstrekk": "utviklingstrekk", "utvise": "utvis", "utviska": "utvisk", "utydelig": "utyd", "utyskene": "utysk", "utysket": "utysk", "utålmodig": "utålmod", "utøvande": "utøv", "utøvast": "utøv", "utøve": "utøv", "utøvelse": "utøv", "utøvelsen": "utøv", "utøver": "utøv", "utøves": "utøv", "utøvinga": "utøving", "uvand": "uvand", "uvanleg": "uvan", "uvanlege": "uvan", "uvanlig": "uvan", "uvant": "uvant", "uvedkomande": "uvedkom", "uvenns": "uvenn", "uventa": "uvent", "uventede": "uvent", "uventet": "uvent", "uver": "uver", "uvesentleg": "uvesent", "uvisse": "uviss", "uvisshet": "uviss", "uværet": "uvær", "v": "v", "vader": "vad", "vagger": "vagg", "vagt": "vagt", "vakker": "vakk", "vakkert": "vakker", "vakler": "vakl", "vakre": "vakr", "vakrere": "vakrer", "vakreste": "vakrest", "vakse": "vaks", "vakt": "vakt", "vakter": "vakt", "vaktmann": "vaktmann", "vaktmeistertenester": "vaktmeistertenest", "vaktmenn": "vaktmenn", "vaktmester": "vaktmest", "vaktpost": "vaktpost", "vaktsomme": "vaktsomm", "vakttårnet": "vakttårn", "val": "val", "vald": "vald", "valda": "vald", "valdar": "vald", "valde": "vald", "vale": "val", "valet": "val", "valfridom": "valfridom", "valfridommen": "valfridomm", "valg": "valg", "valgene": "valg", "valget": "valg", "valgfrihet": "valgfri", "valgfritt": "valgfritt", "valgmulighetene": "valgmu", "valgmuligheter": "valgmu", "valgrett": "valgrett", "valgt": "valgt", "valgte": "valgt", "valhall": "valhall", "valkomite": "valkomit", "valkomiteen": "valkomite", "valkyrjen": "valkyrj", "valkyrjene": "valkyrj", "valkyrjer": "valkyrj", "valmåten": "valmåt", "valperioden": "valperiod", "valrett": "valrett", "valretten": "valrett", "valt": "valt", "vanaheim": "vanaheim", "vandalene": "vandal", "vande": "vand", "vandre": "vandr", "vandrende": "vandr", "vandrer": "vandr", "vandret": "vandr", "vandringene": "vandring", "vandringsmann": "vandringsmann", "vandringsmannen": "vandringsmann", "vandringsstaven": "vandringsstav", "vanene": "van", "vanenes": "van", "vaner": "van", "vaneslekt": "vaneslekt", "vanleg": "van", "vanlege": "van", "vanlegvis": "vanlegvis", "vanlig": "van", "vanlige": "van", "vanligste": "vanligst", "vanligvis": "vanligvis", "vann": "vann", "vannet": "vann", "vannkanten": "vannkant", "vannkvalitet": "vannkvalit", "vanns": "vann", "vanntroll": "vanntroll", "vannveger": "vannveg", "vanskane": "vansk", "vanskar": "vansk", "vanske": "vansk", "vanskeleg": "vansk", "vanskelegare": "vanskelegar", "vanskelege": "vansk", "vanskelegstilte": "vanskelegstilt", "vanskelig": "vansk", "vanskelige": "vansk", "vanskeligere": "vanskeliger", "vanskeliggjøre": "vanskeliggjør", "vanskeligheter": "vansk", "vanskeligstilte": "vanskeligstilt", "vansker": "vansk", "vant": "vant", "vanta": "vant", "vantar": "vant", "vante": "vant", "vantro": "vantro", "vanvidd": "vanvidd", "vanviddet": "vanvidd", "var": "var", "varafolk": "varafolk", "varaleiaren": "varaleiar", "varamedlem": "varamedlem", "varamedlemmen": "varamedlemm", "varamedlemmer": "varamedlemm", "varandra": "varandr", "varanger": "varang", "varangerfjorden": "varangerfjord", "vararevisor": "vararevisor", "vararevisorar": "vararevisor", "vare": "var", "varedistribusjon": "varedistribusjon", "vareeier": "vareei", "vareeiere": "vareeier", "vareeierene": "vareeier", "vareeierens": "vareeier", "vareeierne": "vareeiern", "vareeiernes": "vareeiern", "vareeiers": "vareei", "vareflyt": "vareflyt", "varegrupper": "varegrupp", "varehandel": "varehandel", "varehandelen": "varehandel", "varehandelskjedene": "varehandelskjed", "vareinnsats": "vareinnsat", "varemedlemmer": "varemedlemm", "varen": "var", "varene": "var", "varens": "var", "vareomsetning": "vareomsetning", "vareproduksjon": "vareproduksjon", "vareproduksjonen": "vareproduksjon", "vareprodusenter": "vareprodusent", "vareprofil": "vareprofil", "varer": "var", "vareslag": "vareslag", "varestrømmene": "varestrømm", "varetransport": "varetransport", "varetypene": "varetyp", "varetyper": "varetyp", "vareutval": "vareutval", "vareverdi": "vareverdi", "vareverdiene": "vareverdi", "varg": "varg", "variabel": "variabel", "variablene": "variabl", "varians": "varian", "variant": "variant", "variantar": "variant", "varianten": "variant", "variasjon": "variasjon", "variasjonane": "variasjon", "variasjonene": "variasjon", "variasjoner": "variasjon", "variasjonsbreidd": "variasjonsbreidd", "varierande": "varier", "variere": "varier", "varierende": "varier", "varierer": "varier", "variert": "varier", "varierte": "varier", "varig": "var", "varige": "var", "varighet": "var", "varm": "varm", "varme": "varm", "varmen": "varm", "varmer": "varm", "varmesentralar": "varmesentral", "varmeste": "varmest", "varmt": "varmt", "varsam": "varsam", "varsel": "varsel", "varselet": "varsel", "varsla": "varsl", "varslast": "varsl", "varsle": "varsl", "varslet": "varsl", "varsling": "varsling", "vart": "vart", "varte": "vart", "vask": "vask", "vasker": "vask", "vaskeri": "vaskeri", "vaskes": "vask", "vasket": "vask", "vasser": "vass", "vasst": "vasst", "vassum": "vassum", "vatn": "vatn", "ve": "ve", "ved": "ved", "veddemål": "veddemål", "veddemålet": "veddemål", "vedder": "vedd", "vederlag": "vederlag", "vederlaget": "vederlag", "vederlags": "vederlag", "vederlagssatsar": "vederlagssats", "vedgår": "vedgår", "vedkjem": "vedkjem", "vedkomande": "vedkom", "vedkommende": "vedkomm", "vedkommendes": "vedkomm", "vedlagte": "vedlagt", "vedlegg": "vedlegg", "vedlegga": "vedlegg", "vedlegget": "vedlegg", "vedleggets": "vedlegg", "vedlikehald": "vedlikehald", "vedlikehalden": "vedlikehald", "vedlikehaldet": "vedlikehald", "vedlikehalds": "vedlikehald", "vedlikehaldsarbeid": "vedlikehaldsarbeid", "vedlikehaldsmanglar": "vedlikehaldsmangl", "vedlikehaldsplikt": "vedlikehaldsplikt", "vedlikehaldsplikta": "vedlikehaldsplikt", "vedlikehaldspliktene": "vedlikehaldsplikt", "vedlikehaldsreglane": "vedlikehaldsregl", "vedlikehold": "vedlikehold", "vedrørende": "vedrør", "vedrører": "vedrør", "vedskive": "vedskiv", "vedta": "vedt", "vedtagelse": "vedtag", "vedtagelsen": "vedtag", "vedtak": "vedtak", "vedtaka": "vedtak", "vedtakast": "vedtak", "vedtaket": "vedtak", "vedtaking": "vedtaking", "vedtakinga": "vedtaking", "vedtaksført": "vedtaksført", "vedtaksmessig": "vedtaksmess", "vedtaksmyndighet": "vedtaksmynd", "vedtaksprosedyre": "vedtaksprosedyr", "vedtaksprosedyren": "vedtaksprosedyr", "vedtaksprotokoll": "vedtaksprotokoll", "vedtar": "vedt", "vedtas": "vedt", "vedtatt": "vedtatt", "vedtatte": "vedtatt", "vedtek": "vedtek", "vedteke": "vedtek", "vedteken": "vedtek", "vedtekne": "vedtekn", "vedtekstfesta": "vedtekstfest", "vedtektene": "vedtekt", "vedtektenes": "vedtekt", "vedtekter": "vedtekt", "vedtektfeste": "vedtektfest", "vedtektsendring": "vedtektsendring", "vedtektsendringane": "vedtektsendring", "vedtektsendringar": "vedtektsendring", "vedtektsfesta": "vedtektsfest", "vedtektsfestar": "vedtektsfest", "vedtektsfestast": "vedtektsfest", "vedtektsfeste": "vedtektsfest", "vedtektsfestede": "vedtektsfest", "vedtektsfesting": "vedtektsfesting", "vedtektsfleirtal": "vedtektsfleirtal", "vedtektsføresegn": "vedtektsføresegn", "vedtektsføresegna": "vedtektsføresegn", "vedtektsføresegnene": "vedtektsføresegn", "vedtektsføresegner": "vedtektsføresegn", "vedtektsklausul": "vedtektsklausul", "vedtektsklausular": "vedtektsklausul", "vedtektsveto": "vedtektsveto", "vedtektsvetoet": "vedtektsveto", "vedtok": "vedtok", "veene": "veen", "veg": "veg", "veganlegg": "veganlegg", "vegar": "veg", "vegast": "veg", "vegdirektoratet": "vegdirektorat", "vegen": "veg", "vegene": "veg", "veger": "veg", "vegforbindelse": "vegforbind", "vegforbindelsen": "vegforbind", "vegforbindelsene": "vegforbind", "vegformål": "vegformål", "vegframføring": "vegframføring", "vegføringer": "vegføring", "vegg": "vegg", "veggen": "vegg", "veggene": "vegg", "vegger": "vegg", "veggkonstruksjonar": "veggkonstruksjon", "vegkontoret": "vegkontor", "vegkorridorer": "vegkorridor", "vegkostnader": "vegkostnad", "vegløsning": "vegløsning", "vegløsningene": "vegløsning", "vegløsninger": "vegløsning", "vegne": "vegn", "vegner": "vegn", "vegnett": "vegnett", "vegnettet": "vegnett", "vegnettets": "vegnett", "vegnormal": "vegnormal", "vegpakke": "vegpakk", "vegplaner": "vegplan", "vegruten": "vegrut", "vegsalt": "vegsalt", "vegsiden": "vegsid", "vegsituasjonen": "vegsituasjon", "vegslitasje": "vegslitasj", "vegstrekningen": "vegstrekning", "vegstrekninger": "vegstrekning", "vegsystem": "vegsystem", "vegsystemene": "vegsystem", "vegsystemer": "vegsystem", "vegtam": "vegtam", "vegtilknytning": "vegtilknytning", "vegtilknytningen": "vegtilknytning", "vegtiltak": "vegtiltak", "vegtrafikk": "vegtrafikk", "vegtrafikken": "vegtrafikk", "vegtrafikkplan": "vegtrafikkplan", "vegtransport": "vegtransport", "vegtransporten": "vegtransport", "vegtransportkostnadene": "vegtransportkostnad", "vegtraseen": "vegtrase", "vegvesen": "vegves", "vegvesens": "vegves", "vei": "vei", "veie": "veie", "veien": "veien", "veier": "veier", "veierud": "veierud", "veies": "veies", "veiet": "veiet", "veik": "veik", "veikare": "veikar", "veike": "veik", "veikro": "veikro", "veiledende": "veiled", "veiledning": "veiledning", "veit": "veit", "veiver": "veiv", "veka": "vek", "veke": "vek", "veker": "vek", "vekers": "vek", "vekes": "vek", "veket": "vek", "vekk": "vekk", "vekke": "vekk", "vekker": "vekk", "vekkes": "vekk", "vekket": "vekk", "vekse": "veks", "vekselflak": "vekselflak", "vekslande": "veksl", "vekst": "vekst", "vekstanslag": "vekstanslag", "veksten": "vekst", "vekstforutsetningene": "vekstforutsetning", "vekstkraftig": "vekstkraft", "vekstområde": "vekstområd", "vekstpotensial": "vekstpotensial", "vekstpotensiale": "vekstpotensial", "vekstpotensialet": "vekstpotensial", "vekstrate": "vekstrat", "vekstratene": "vekstrat", "vekstrater": "vekstrat", "veksttakten": "veksttakt", "veksttendenser": "veksttendens", "veksttrend": "veksttrend", "vekt": "vekt", "vekta": "vekt", "vektede": "vekt", "vekten": "vekt", "vektenhet": "vekten", "vekter": "vekt", "vektet": "vekt", "vekting": "vekting", "vektlagt": "vektlagt", "vektlegge": "vektlegg", "vektlegges": "vektlegg", "vektlegging": "vektlegging", "vektleggingen": "vektlegging", "vel": "vel", "velbegrunnede": "velbegrunn", "velberget": "velberg", "veldig": "veld", "veldige": "veld", "velegnet": "velegn", "veletablerte": "veletabler", "velferd": "velferd", "velferdsgode": "velferdsgod", "velferdsmeldingen": "velferdsmelding", "velferdsmeldingens": "velferdsmelding", "velferdsordninger": "velferdsordning", "velferdstilbod": "velferdstilbod", "velferdstiltak": "velferdstiltak", "velforeining": "velforeining", "velfunderte": "velfunder", "velg": "velg", "velge": "velg", "velger": "velg", "velges": "velg", "velgjerd": "velgjerd", "veljast": "velj", "velje": "velj", "velkjend": "velkjend", "velkommen": "velkomm", "velluktende": "vellukt", "vellykkete": "vellykket", "velsigner": "velsign", "velskapt": "velskapt", "velstand": "velstand", "velta": "velt", "veltalende": "veltal", "veltalenhet": "veltalen", "veltast": "velt", "velte": "velt", "velter": "velt", "veltet": "velt", "velutformede": "velutform", "vende": "vend", "vender": "vend", "vendes": "vend", "vendt": "vend", "vendte": "vend", "vene": "ven", "venn": "venn", "vennen": "venn", "vennene": "venn", "venner": "venn", "vennet": "venn", "vennlig": "venn", "vennlige": "venn", "vennskap": "vennskap", "vennskapet": "vennskap", "venstre": "venstr", "venstreparti": "venstreparti", "vent": "vent", "vente": "vent", "venteleg": "vent", "ventelister": "ventelist", "ventende": "vent", "venter": "vent", "ventes": "vent", "ventet": "vent", "ventetid": "ventetid", "ventilar": "ventil", "ver": "ver", "vera": "ver", "verande": "ver", "verd": "verd", "verda": "verd", "verdande": "verd", "verden": "verd", "verdener": "verden", "verdens": "verd", "verdensbanken": "verdensbank", "verdensbankens": "verdensbank", "verdenshavet": "verdenshav", "verdenstreet": "verdenstre", "verdi": "verdi", "verdiane": "verdi", "verdiansettelse": "verdiansett", "verdiar": "verdi", "verdien": "verdi", "verdiene": "verdi", "verdier": "verdi", "verdifall": "verdifall", "verdifastsettelser": "verdifastsett", "verdiforholda": "verdiforhold", "verdiforholdet": "verdiforhold", "verdifulle": "verdifull", "verdifullt": "verdifullt", "verdig": "verd", "verdighet": "verd", "verdikjeden": "verdikjed", "verdikjedene": "verdikjed", "verdikjeder": "verdikjed", "verdilaus": "verdilaus", "verdipapir": "verdipapir", "verdipapirene": "verdipapir", "verdipapirer": "verdipapir", "verdipapirfond": "verdipapirfond", "verdipapirfondenes": "verdipapirfond", "verdipapirfondloven": "verdipapirfond", "verdipapirfondsforvaltning": "verdipapirfondsforvaltning", "verdipapirfondsforvaltningen": "verdipapirfondsforvaltning", "verdipapirfondsloven": "verdipapirfond", "verdipapirhandel": "verdipapirhandel", "verdipapirsentralen": "verdipapirsentral", "verdireduksjon": "verdireduksjon", "verdireduksjonen": "verdireduksjon", "verdiskaping": "verdiskaping", "verdiskapingen": "verdiskaping", "verdiskapning": "verdiskapning", "verdistiging": "verdistiging", "verdistigning": "verdistigning", "verditilhøva": "verditilhøv", "verdiutvikling": "verdiutvikling", "verdiutviklingen": "verdiutvikling", "verdiøkning": "verdiøkning", "verdiøkninger": "verdiøkning", "verdsetjing": "verdsetjing", "verdskrigen": "verdskr", "verdt": "verd", "vere": "ver", "verge": "verg", "vergeløs": "vergeløs", "veritas": "verit", "verk": "verk", "verka": "verk", "verkar": "verk", "verke": "verk", "verkeleg": "verk", "verkemiddel": "verkemiddel", "verken": "verk", "verkeområde": "verkeområd", "verkeområdet": "verkeområd", "verknad": "verknad", "verknadane": "verknad", "verknaden": "verknad", "verknadene": "verknad", "verknader": "verknad", "verks": "verk", "verksamhet": "verksam", "verksemd": "verksemd", "verksemda": "verksemd", "verksemdsområde": "verksemdsområd", "verksemdstypar": "verksemdstyp", "verktøy": "verktøy", "vern": "vern", "verna": "vern", "vernast": "vern", "verne": "vern", "vernende": "vern", "verner": "vern", "vernereglar": "verneregl", "vernes": "vern", "vernet": "vern", "vernetiltak": "vernetiltak", "verneverdier": "verneverdi", "verre": "verr", "versjonen": "versjon", "verst": "verst", "verste": "verst", "vert": "vert", "vertsfolket": "vertsfolk", "vertskap": "vertskap", "vertskommunen": "vertskommun", "vertskommuner": "vertskommun", "vertslandet": "vertsland", "verv": "verv", "vervet": "verv", "vesen": "ves", "vesenene": "vesen", "vesener": "vesen", "vesentleg": "vesent", "vesentlege": "vesent", "vesentlig": "vesent", "vesentlige": "vesent", "vesentligste": "vesentligst", "vesle": "vesl", "vest": "vest", "vesterelven": "vesterelv", "vestfjorden": "vestfjord", "vestfold": "vestfold", "vestfoldbanen": "vestfoldban", "vesthavn": "vesthavn", "vestlige": "vest", "vestover": "vestov", "vestre": "vestr", "vestsiden": "vestsid", "vet": "vet", "veto": "veto", "vetoet": "veto", "vett": "vett", "vettene": "vett", "vetter": "vett", "vettet": "vett", "vev": "vev", "vevsider": "vevsid", "vi": "vi", "via": "via", "vibeke": "vibek", "victorin": "victorin", "vid": "vid", "vidar": "vid", "vidare": "vidar", "vidareførast": "vidarefør", "vidareføre": "vidarefør", "vidareføring": "vidareføring", "vidareført": "vidareført", "vidaresal": "vidaresal", "vidareutvikling": "vidareutvikling", "vidder": "vidd", "vide": "vid", "videokamera": "videokamer", "videre": "vider", "viderebefordres": "viderebefordr", "viderebefordring": "viderebefordring", "videredistribusjon": "videredistribusjon", "videredistribusjonen": "videredistribusjon", "videreføre": "viderefør", "viderefører": "viderefør", "videreføres": "viderefør", "videreføring": "videreføring", "videreført": "videreført", "videretransport": "videretransport", "videreutvikling": "videreutvikling", "videreutviklingen": "videreutvikling", "vidgrunna": "vidgrunn", "vidi": "vidi", "vidt": "vidt", "vidtgående": "vidtgå", "vies": "vies", "viet": "viet", "vifte": "vift", "vifter": "vift", "vigrid": "vigrid", "vii": "vii", "viii": "viii", "vik": "vik", "vike": "vik", "viker": "vik", "vikinga": "viking", "viktig": "vikt", "viktigare": "viktigar", "viktigast": "vikt", "viktigaste": "viktigast", "viktige": "vikt", "viktigere": "viktiger", "viktighet": "vikt", "viktigheten": "vikt", "viktigst": "viktigst", "viktigste": "viktigst", "vil": "vil", "vilja": "vilj", "vilje": "vilj", "viljeløse": "viljeløs", "viljug": "viljug", "viljuge": "viljug", "vilken": "vilk", "vilkår": "vilkår", "vilkåra": "vilkår", "vilkårene": "vilkår", "vilkåret": "vilkår", "vilkårleg": "vilkår", "vilkårlege": "vilkår", "vill": "vill", "ville": "vill", "villere": "viller", "villeste": "villest", "villhester": "villhest", "villig": "vil", "villkor": "villkor", "villmann": "villmann", "villmannens": "villmann", "villrede": "villr", "vilt": "vilt", "vimsete": "vimset", "vimur": "vimur", "vin": "vin", "vind": "vind", "vindauge": "vindaug", "vinden": "vind", "vinder": "vind", "vindforholdene": "vindforhold", "vindkast": "vindk", "vindpust": "vindpust", "vinduene": "vindu", "vingene": "ving", "vinger": "ving", "vingeslag": "vingeslag", "vingeslagene": "vingeslag", "vinglete": "vinglet", "vinilene": "vinil", "vinilenes": "vinil", "vinker": "vink", "vinket": "vink", "vinkling": "vinkling", "vinn": "vinn", "vinnast": "vinn", "vinne": "vinn", "vinner": "vinn", "vinninger": "vinning", "vinst": "vinst", "vinstar": "vinst", "vinsten": "vinst", "vinter": "vint", "vinterbro": "vinterbro", "vinterdag": "vinterdag", "vintere": "vinter", "vinteren": "vinter", "vintre": "vintr", "vippetangen": "vippetang", "vippetangens": "vippetang", "virke": "virk", "virkedag": "virkedag", "virkedøgn": "virkedøgn", "virkelig": "virk", "virkelige": "virk", "virkeligheten": "virk", "virkemiddel": "virkemiddel", "virkemiddelbruk": "virkemiddelbruk", "virkemiddelet": "virkemiddel", "virkemidlene": "virkemidl", "virkemidler": "virkemidl", "virkeområde": "virkeområd", "virker": "virk", "virket": "virk", "virkning": "virkning", "virkningen": "virkning", "virkningene": "virkning", "virkninger": "virkning", "virksom": "virksom", "virksomhet": "virksom", "virksomheten": "virksom", "virksomhetene": "virksom", "virksomhetens": "virksom", "virksomheter": "virksom", "virksomhetsbegrep": "virksomhetsbegrep", "virksomhetsbegrepet": "virksomhetsbegrep", "virksomhetsoverdragelse": "virksomhetsoverdrag", "virksomhetsoverdragelsen": "virksomhetsoverdrag", "virksomhetsoverdragelser": "virksomhetsoverdrag", "virksomhetsutøvelsen": "virksomhetsutøv", "virvlende": "virvl", "vis": "vis", "visast": "vis", "visdom": "visdom", "visdommens": "visdomm", "visdomskrefter": "visdomskreft", "vise": "vis", "viser": "vis", "visere": "viser", "vises": "vis", "viset": "vis", "visjoner": "visjon", "vislie": "visli", "vismenn": "vismenn", "visne": "visn", "viss": "viss", "vissa": "viss", "visse": "viss", "visst": "visst", "visste": "visst", "vist": "vist", "viste": "vist", "visuelle": "visuell", "visuelt": "visuelt", "vit": "vit", "vital": "vital", "vitalisere": "vitaliser", "vite": "vit", "vitne": "vitn", "vogn": "vogn", "vognen": "vogn", "vognene": "vogn", "vognskifteområde": "vognskifteområd", "vogntog": "vogntog", "voks": "voks", "vokse": "voks", "voksen": "voks", "vokser": "voks", "voksne": "voksn", "vokst": "vokst", "vokste": "vokst", "vokte": "vokt", "vokter": "vokt", "vold": "vold", "voldgift": "voldgift", "voldsfjorden": "voldsfjord", "voldsom": "voldsom", "voldsomme": "voldsomm", "voldsomt": "voldsomt", "voldtas": "vold", "volen": "vol", "volker": "volk", "vollen": "voll", "vollsfjorden": "vollsfjord", "volsung": "volsung", "volumer": "volum", "volumet": "volum", "volummessig": "volummess", "volumutvikling": "volumutvikling", "volumvekst": "volumvekst", "volve": "volv", "volven": "volv", "von": "von", "vond": "vond", "vonde": "vond", "vondt": "vond", "voner": "von", "vore": "vor", "vorte": "vort", "vorten": "vort", "vorter": "vort", "vortne": "vortn", "voss": "voss", "voteringsforslag": "voteringsforslag", "vott": "vott", "votten": "vott", "votter": "vott", "vrang": "vrang", "vrangt": "vrangt", "vred": "vred", "vrenge": "vreng", "vrenger": "vreng", "vri": "vri", "vridd": "vridd", "vridde": "vridd", "vridende": "vrid", "vridning": "vridning", "vrikke": "vrikk", "vrikker": "vrikk", "vrinsker": "vrinsk", "vrir": "vrir", "vris": "vris", "vrister": "vrist", "vuggen": "vugg", "vugger": "vugg", "vunnet": "vunn", "vurderast": "vurder", "vurdere": "vurder", "vurderer": "vurder", "vurderes": "vurder", "vurdering": "vurdering", "vurderinga": "vurdering", "vurderingar": "vurdering", "vurderingen": "vurdering", "vurderingene": "vurdering", "vurderinger": "vurdering", "vurdert": "vurder", "vurderte": "vurder", "vvo": "vvo", "våge": "våg", "våger": "våg", "vågestykket": "vågestykk", "våget": "våg", "våken": "våk", "våkne": "våkn", "våkner": "våkn", "våknet": "våkn", "våle": "vål", "våpen": "våp", "våpenlek": "våpenlek", "våpenleken": "våpenlek", "våpenløs": "våpenløs", "våpnene": "våpn", "vår": "vår", "våre": "vår", "våren": "vår", "våres": "vår", "vårgresset": "vårgress", "vårt": "vårt", "våt": "våt", "våtbulk": "våtbulk", "våte": "våt", "vått": "vått", "vægne": "vægn", "vækerøkrysset": "vækerøkryss", "væpnet": "væpn", "vær": "vær", "være": "vær", "værende": "vær", "været": "vær", "værforhold": "værforhold", "værforholdene": "værforhold", "værhår": "værhår", "værs": "vær", "vært": "vært", "væske": "væsk", "væsker": "væsk", "wealth": "wealth", "welche": "welch", "wenche": "wench", "wessel": "wessel", "wielockx": "wielockx", "willy": "willy", "wirtschaft": "wirtschaft", "wirtschaftsgenossenschaften": "wirtschaftsgenossenschaft", "wohnungsbaugenossenschaften": "wohnungsbaugenossenschaft", "wohnungseigentum": "wohnungseigentum", "wohnungsgenossenschaftsmitglieder": "wohnungsgenossenschaftsmitglied", "wohnungsnutzergenossenschaften": "wohnungsnutzergenossenschaft", "wohnungsunternehmen": "wohnungsunternehm", "wolff": "wolff", "wto": "wto", "xviii": "xviii", "xx": "xx", "ydmyket": "ydmyk", "ydt": "ydt", "ygg": "ygg", "yggdrasil": "yggdrasil", "yggdrasils": "yggdrasil", "yh": "yh", "yin": "yin", "ymer": "ymer", "ymers": "ymer", "ymse": "yms", "yngre": "yngr", "yngste": "yngst", "york": "york", "yr": "yr", "yre": "yre", "yrke": "yrk", "yrkedagen": "yrkedag", "yrkesaktiv": "yrkesaktiv", "yrkesaktive": "yrkesaktiv", "yrkesaktivitet": "yrkesaktivit", "yrkesaktiviteten": "yrkesaktivitet", "yrkesaktivt": "yrkesaktiv", "yrkesbaserte": "yrkesbaser", "yrkesdeltagelse": "yrkesdeltag", "yrkesdeltakelse": "yrkesdeltak", "yrkesdeltaking": "yrkesdeltaking", "yrkesdøgn": "yrkesdøgn", "yrkesdøgntrafikk": "yrkesdøgntrafikk", "yrkesgrupper": "yrkesgrupp", "yrkeskarrieren": "yrkeskarrier", "yrkesmessige": "yrkesmess", "yrkesorganisasjonenes": "yrkesorganisasjon", "yrkesskadeforsikring": "yrkesskadeforsikring", "yrkesutøvar": "yrkesutøv", "yrkesutøvarar": "yrkesutøvar", "yte": "yte", "ytelse": "ytels", "ytelsen": "ytels", "ytelsene": "ytels", "ytelsenes": "ytels", "ytelsens": "ytels", "ytelser": "ytels", "ytelses": "ytels", "ytelsesbasert": "ytelsesbaser", "ytelsesbaserte": "ytelsesbaser", "ytelsesberettigede": "ytelsesberett", "ytelsesnivå": "ytelsesnivå", "ytelsesnivåene": "ytelsesnivå", "ytelsesnivået": "ytelsesnivå", "ytelsesoppbygging": "ytelsesoppbygging", "ytelsesordning": "ytelsesordning", "ytelsesordninger": "ytelsesordning", "ytelsesperioden": "ytelsesperiod", "ytelsesperiodens": "ytelsesperiod", "ytelsesplan": "ytelsesplan", "ytelsesplanen": "ytelsesplan", "ytelsessammensetningen": "ytelsessammensetning", "yter": "yter", "ytes": "ytes", "yting": "yting", "ytinga": "yting", "ytingar": "yting", "ytingsbaserte": "ytingsbaser", "ytre": "ytr", "ytste": "ytst", "ytt": "ytt", "ytte": "ytt", "ytterdør": "ytterdør", "ytterdører": "ytterdør", "ytterkant": "ytterkant", "ytterligere": "ytterliger", "ytterliggere": "ytterligger", "ytterst": "ytterst", "ytterste": "ytterst", "zapffe": "zapff", "zealand": "zealand", "zeebrugge": "zeebrugg", "zu": "zu", "å": "å", "åe": "åe", "åge": "åge", "åker": "åker", "åkeren": "åker", "åkre": "åkr", "ål": "ål", "åle": "åle", "åleine": "ålein", "ålesund": "ålesund", "åmsvartne": "åmsvartn", "åndalsnes": "åndalsn", "ånde": "ånd", "åpen": "åpen", "åpenbare": "åpenbar", "åpenbart": "åpenbart", "åpenlys": "åpenly", "åpent": "åpent", "åpne": "åpn", "åpner": "åpn", "åpnes": "åpn", "åpnet": "åpn", "åpning": "åpning", "år": "år", "åra": "åra", "årene": "åren", "årer": "årer", "året": "året", "åretak": "åretak", "årets": "året", "årevis": "årevis", "århundre": "århundr", "århundret": "århundr", "årleg": "årleg", "årlege": "årleg", "årlig": "årl", "årlige": "årl", "årrekkje": "årrekkj", "årringen": "årring", "årringer": "årring", "års": "års", "årsak": "årsak", "årsaka": "årsak", "årsaken": "årsak", "årsaker": "årsak", "årsbalanse": "årsbalans", "årsbasis": "årsbasis", "årsberetning": "årsberetning", "årsmelding": "årsmelding", "årsmeldinga": "årsmelding", "årsoppgjer": "årsoppgj", "årsoppgjeret": "årsoppgjer", "årsoppgjør": "årsoppgjør", "årsoppgjøret": "årsoppgjør", "årsoppgjørsforskriften": "årsoppgjørsforskrift", "årsoppgjørskapittelet": "årsoppgjørskapittel", "årspengane": "årspeng", "årspengar": "årspeng", "årsperiode": "årsperiod", "årspremier": "årspremi", "årsregnskapet": "årsregnskap", "årsregnskapsreglene": "årsregnskapsregl", "årsrekneskap": "årsrekneskap", "årsrekneskapen": "årsrekneskap", "årsresultatet": "årsresultat", "årsskifte": "årsskift", "årsskiftet": "årsskift", "årum": "årum", "årvold": "årvold", "årvoldkrysset": "årvoldkryss", "åsa": "åsa", "åsene": "åsen", "åser": "åser", "åsgard": "åsgard", "åsgards": "åsgard", "åshild": "åshild", "åsmund": "åsmund", "åt": "åt", "åtferd": "åtferd", "åtgjerd": "åtgjerd", "ått": "ått", "åttande": "ått", "åtte": "ått", "åttefotede": "åttefot", "åttefotete": "åttefotet", "åttende": "ått", "åtvaring": "åtvaring", "ægir": "ægir", "ægirs": "ægir", "ærbødighet": "ærbød", "ære": "ære", "ærefullt": "ærefullt", "æren": "æren", "ærend": "ærend", "ærendet": "ærend", "ærlegdom": "ærlegdom", "ærlig": "ærl", "æsene": "æsen", "æsenes": "æsen", "æser": "æser", "ætt": "ætt", "øde": "øde", "ødelagt": "ødelagt", "ødelagte": "ødelagt", "ødelegge": "ødelegg", "ødemarken": "ødemark", "ødemarker": "ødemark", "øke": "øke", "økende": "økend", "øker": "øker", "økes": "økes", "økning": "økning", "økningen": "økning", "økningene": "økning", "økninger": "økning", "økonomi": "økonomi", "økonomien": "økonomi", "økonomiene": "økonomi", "økonomiplan": "økonomiplan", "økonomisk": "økonomisk", "økonomiske": "økonomisk", "øks": "øks", "økser": "øks", "økt": "økt", "økte": "økt", "øl": "øl", "øldunkene": "øldunk", "ølet": "ølet", "ølkruset": "ølkrus", "ønske": "ønsk", "ønskede": "ønsk", "ønskelig": "ønsk", "ønskelige": "ønsk", "ønskeligheten": "ønsk", "ønsker": "ønsk", "ønskes": "ønsk", "ønsket": "ønsk", "ønskje": "ønskj", "ønskjeleg": "ønskj", "ønskjer": "ønskj", "ønskt": "ønskt", "ønskte": "ønskt", "ør": "ør", "øra": "øra", "øre": "øre", "ørefik": "ørefik", "øremerkede": "øremerk", "øremerket": "øremerk", "øremerking": "øremerking", "ørene": "øren", "ører": "ører", "øresundforbindelsen": "øresundforbind", "øresundsforbindelsen": "øresundsforbind", "øret": "øret", "ørje": "ørj", "ørn": "ørn", "ørneham": "ørneham", "ørnehammen": "ørnehamm", "ørnen": "ørn", "ørner": "ørn", "ørske": "ørsk", "øse": "øse", "øsekar": "øsek", "øser": "øser", "øst": "øst", "østfold": "østfold", "østfoldhavnene": "østfoldhavn", "østfoldhavner": "østfoldhavn", "østfra": "østfr", "østhavn": "østhavn", "østhavna": "østhavn", "østland": "østland", "østlandet": "østland", "østlandsfylkene": "østlandsfylk", "østlandshavnene": "østlandshavn", "østlandsområder": "østlandsområd", "østlandsområdet": "østlandsområd", "østlandsregionen": "østlandsregion", "østlandsregionens": "østlandsregion", "østlandssamarbeidet": "østlandssamarbeid", "østlig": "øst", "østlige": "øst", "østmoe": "østmo", "østover": "østov", "østre": "østr", "østside": "østsid", "østsiden": "østsid", "østvendte": "østvend", "øve": "øve", "øver": "øver", "øverste": "øverst", "øvre": "øvr", "øvrig": "øvr", "øvrige": "øvr", "øvste": "øvst", "øy": "øy", "øya": "øya", "øydelagde": "øydelagd", "øydelagt": "øydelagt", "øydelegging": "øydelegging", "øydelegginga": "øydelegging", "øye": "øye", "øyeblikk": "øyeblikk", "øyeblikkelig": "øyeblikk", "øyeblikket": "øyeblikk", "øyelokkene": "øyelokk", "øyelokket": "øyelokk", "øyenvipper": "øyenvipp", "øyet": "øyet", "øyne": "øyn", "øynene": "øyn", "øystein": "øystein" } ================================================ FILE: spec/test_data/snowball_pt.json ================================================ { "a": "a", "á": "á", "à": "à", "ã": "ã", "aacho": "aach", "aacute": "aacut", "abacaxi": "abacax", "abade": "abad", "abaeté": "abaet", "abafar": "abaf", "abafaram": "abaf", "abaixa": "abaix", "abaixe": "abaix", "abaixei": "abaix", "abaixo": "abaix", "abaixou": "abaix", "abalada": "abal", "abalado": "abal", "abalaram": "abal", "abalos": "abal", "abalou": "abal", "abalroado": "abalro", "abandona": "abandon", "abandoná": "abandon", "abandonada": "abandon", "abandonadas": "abandon", "abandonado": "abandon", "abandonados": "abandon", "abandonam": "abandon", "abandonando": "abandon", "abandonar": "abandon", "abandonara": "abandon", "abandonaram": "abandon", "abandonasse": "abandon", "abandono": "abandon", "abandonou": "abandon", "abarrotado": "abarrot", "abarrotados": "abarrot", "abarrotou": "abarrot", "abastada": "abast", "abastado": "abast", "abastados": "abast", "abastecem": "abastec", "abastecer": "abastec", "abastecida": "abastec", "abastecimento": "abastec", "abata": "abat", "abate": "abat", "abatedouro": "abatedour", "abatem": "abat", "abatendo": "abat", "abater": "abat", "abateram": "abat", "abates": "abat", "abateu": "abat", "abatia": "abat", "abatidas": "abat", "abatido": "abat", "abatidos": "abat", "abaulado": "abaul", "abbé": "abbé", "abbey": "abbey", "abc": "abc", "abcesso": "abcess", "abdel": "abdel", "abdela": "abdel", "abdias": "abdi", "abdicação": "abdic", "abdicar": "abdic", "abdomen": "abdomen", "abdômen": "abdômen", "abdominais": "abdomin", "abdominal": "abdominal", "abecafé": "abecaf", "abel": "abel", "abençoadas": "abenço", "aberrações": "aberr", "aberta": "abert", "abertamente": "abert", "abertas": "abert", "aberto": "abert", "abertos": "abert", "abertura": "abertur", "abic": "abic", "abicair": "abica", "abichequer": "abichequ", "abifarma": "abifarm", "abih": "abih", "abilio": "abili", "abílio": "abíli", "abismo": "abism", "abissais": "abiss", "abissal": "abissal", "abnegação": "abneg", "abocanhar": "abocanh", "abolição": "aboliçã", "abolicionistas": "abolicion", "abolido": "abol", "abolir": "abol", "abomina": "abomin", "abominação": "abomin", "abomináveis": "abomin", "abominável": "abomin", "abono": "abon", "aborda": "abord", "abordada": "abord", "abordadas": "abord", "abordado": "abord", "abordagem": "abordag", "abordagens": "abordagens", "abordando": "abord", "abordar": "abord", "abordava": "abord", "abordavam": "abord", "aborígines": "aborígin", "aborrece": "aborrec", "aborrecidíssima": "aborrecidíssim", "aborrecido": "aborrec", "aborrecidos": "aborrec", "aborrecimentos": "aborrec", "aborto": "abort", "abortos": "abort", "abouch": "abouch", "abra": "abra", "abraão": "abraã", "abraçada": "abrac", "abracadabra": "abracadabr", "abraçando": "abrac", "abraçaram": "abrac", "abraço": "abrac", "abraços": "abrac", "abrafe": "abraf", "abrahão": "abrahã", "abram": "abram", "abrandar": "abrand", "abrange": "abrang", "abrangência": "abrangent", "abrangendo": "abrang", "abrangente": "abrangent", "abranger": "abrang", "abrasador": "abras", "abrasivo": "abras", "abre": "abre", "abrem": "abrem", "abresi": "abres", "abreu": "abreu", "abreviação": "abrevi", "abreviado": "abrevi", "abri": "abri", "abriga": "abrig", "abrigada": "abrig", "abrigam": "abrig", "abrigar": "abrig", "abrigaram": "abrig", "abrigarem": "abrig", "abrigaria": "abrig", "abrigo": "abrig", "abrigou": "abrig", "abril": "abril", "abrimos": "abrim", "abrindo": "abrind", "abrinq": "abrinq", "abrir": "abrir", "abrirá": "abrir", "abriram": "abrir", "abrirão": "abrirã", "abrisse": "abriss", "abriu": "abriu", "abrolhos": "abrolh", "abrucio": "abruci", "abruptamente": "abrupt", "absoluta": "absolut", "absolutamente": "absolut", "absolutas": "absolut", "absoluto": "absolut", "absolutos": "absolut", "absolve": "absolv", "absolvem": "absolv", "absolver": "absolv", "absolveram": "absolv", "absolverem": "absolv", "absolveu": "absolv", "absolvido": "absolv", "absorção": "absorçã", "absorvam": "absorv", "absorve": "absorv", "absorvente": "absorvent", "absorventes": "absorvent", "absorver": "absorv", "absorviam": "absorv", "absorvida": "absorv", "abstem": "abstem", "abstêmio": "abstêmi", "abstenção": "abstençã", "absteve": "abstev", "abstinência": "abstinent", "abstratamente": "abstrat", "abstratas": "abstrat", "absurda": "absurd", "absurdamente": "absurd", "absurdas": "absurd", "absurdo": "absurd", "absurdos": "absurd", "abuelita": "abuelit", "abujamra": "abujamr", "abundância": "abund", "abundante": "abund", "abusando": "abus", "abusar": "abus", "abuse": "abus", "abuso": "abus", "abusos": "abus", "abusou": "abus", "acaba": "acab", "acabadas": "acab", "acabado": "acab", "acabados": "acab", "acabam": "acab", "acabamento": "acab", "acabamos": "acab", "acabando": "acab", "acabar": "acab", "acabara": "acab", "acabaram": "acab", "acabaria": "acab", "acabasse": "acab", "acabassem": "acab", "acabava": "acab", "acabavam": "acab", "acabe": "acab", "acabei": "acab", "acabemos": "acab", "acabo": "acab", "acabou": "acab", "acabrunham": "acabrunh", "academia": "academ", "academias": "academ", "acadêmica": "acadêm", "acadêmicas": "acadêm", "acadêmico": "acadêm", "acadêmicos": "acadêm", "acahuazú": "acahuazú", "acalantado": "acalant", "acalmar": "acalm", "acampada": "acamp", "acampamento": "acamp", "acampamentos": "acamp", "acampamos": "acamp", "acampando": "acamp", "acampem": "acamp", "acanhadas": "acanh", "acanhado": "acanh", "ação": "açã", "acareação": "acar", "acari": "acar", "acarpetada": "acarpet", "acarreta": "acarret", "acarretar": "acarret", "acasalam": "acasal", "acaso": "acas", "acatada": "acat", "acatará": "acat", "acatou": "acat", "accelerati": "accelerat", "accor": "accor", "ace": "ace", "aceita": "aceit", "aceitá": "aceit", "aceitação": "aceit", "aceitam": "aceit", "aceitamos": "aceit", "aceitando": "aceit", "aceitar": "aceit", "aceitaram": "aceit", "aceitarão": "aceit", "aceitaria": "aceit", "aceitariam": "aceit", "aceitava": "aceit", "aceitável": "aceit", "aceitei": "aceit", "aceitem": "aceit", "aceito": "aceit", "aceitos": "aceit", "aceitou": "aceit", "acelera": "acel", "aceleração": "aceler", "acelerada": "aceler", "acelerado": "aceler", "acelerador": "aceler", "aceleramento": "aceler", "acelerar": "aceler", "aceleraram": "aceler", "acelerava": "aceler", "acelerou": "aceler", "acena": "acen", "acenam": "acen", "acenar": "acen", "acendê": "acend", "acender": "acend", "acenderam": "acend", "acendeu": "acend", "acendiam": "acend", "acendo": "acend", "acentuada": "acentu", "acentuadas": "acentu", "acentuado": "acentu", "acentuados": "acentu", "acentuem": "acentu", "acerca": "acerc", "acertado": "acert", "acertados": "acert", "acertando": "acert", "acertar": "acert", "acertaram": "acert", "acertasse": "acert", "acertava": "acert", "acerto": "acert", "acertou": "acert", "acesa": "aces", "acessadas": "acess", "acessado": "acess", "acessar": "acess", "acessível": "acess", "acesso": "acess", "acessórias": "acessór", "acessório": "acessóri", "acessórios": "acessóri", "acessos": "acess", "acetona": "aceton", "acha": "acha", "achá": "achá", "achacando": "achac", "achado": "achad", "achados": "achad", "acham": "acham", "achamos": "acham", "achando": "achand", "achaque": "achaqu", "achar": "achar", "achará": "achar", "acharam": "achar", "acharem": "achar", "achasse": "achass", "achava": "achav", "achavam": "achav", "ache": "ache", "aché": "aché", "achei": "ache", "achismo": "achism", "acho": "acho", "achou": "achou", "ácidas": "ácid", "acidentado": "acident", "acidentados": "acident", "acidental": "acidental", "acidente": "acident", "acidentes": "acident", "acidez": "acidez", "ácido": "ácid", "acima": "acim", "acionadas": "acion", "acionado": "acion", "acionar": "acion", "acionaram": "acion", "acionário": "acionári", "acionei": "acion", "acionista": "acion", "acionistas": "acion", "acionou": "acion", "acirrada": "acirr", "acirram": "acirr", "acirrava": "acirr", "ackerman": "ackerman", "aclamado": "aclam", "aclarados": "aclar", "aclarar": "aclar", "acm": "acm", "acne": "acne", "aço": "aço", "acobertar": "acobert", "ações": "açõ", "açoitado": "açoit", "açoites": "açoit", "acolhê": "acolh", "acolhedor": "acolhedor", "acolhem": "acolh", "acomete": "acomet", "acometem": "acomet", "acometido": "acomet", "açominas": "açomin", "acomoda": "acomod", "acomodação": "acomod", "acomodações": "acomod", "acomodadas": "acomod", "acomodado": "acomod", "acomodar": "acomod", "acomodaram": "acomod", "acomodaria": "acomod", "acomodava": "acomod", "acomodo": "acomod", "acompanha": "acompanh", "acompanhá": "acompanh", "acompanhada": "acompanh", "acompanhadas": "acompanh", "acompanhado": "acompanh", "acompanhados": "acompanh", "acompanham": "acompanh", "acompanhamento": "acompanh", "acompanhando": "acompanh", "acompanhante": "acompanh", "acompanhantes": "acompanh", "acompanhar": "acompanh", "acompanhará": "acompanh", "acompanhava": "acompanh", "acompanhe": "acompanh", "acompanhei": "acompanh", "acompanho": "acompanh", "acompanhou": "acompanh", "aconcágua": "aconcágu", "aconchegante": "aconcheg", "aconchegantes": "aconcheg", "aconchego": "aconcheg", "aconselha": "aconselh", "aconselhada": "aconselh", "aconselhadas": "aconselh", "aconselhado": "aconselh", "aconselhados": "aconselh", "aconselham": "aconselh", "aconselhar": "aconselh", "aconselhara": "aconselh", "aconselhavam": "aconselh", "aconselhável": "aconselh", "aconselhou": "aconselh", "aconteça": "acontec", "aconteçam": "acontec", "acontece": "acontec", "acontecem": "acontec", "acontecendo": "acontec", "acontecer": "acontec", "acontecera": "acontec", "acontecerá": "acontec", "aconteceram": "acontec", "aconteceria": "acontec", "aconteceu": "acontec", "acontecia": "acontec", "aconteciam": "acontec", "acontecido": "acontec", "acontecimento": "acontec", "acontecimentos": "acontec", "acoplada": "acopl", "acoplado": "acopl", "acoplados": "acopl", "acoplamento": "acopl", "acoplando": "acopl", "acorda": "acord", "acordadas": "acord", "acordados": "acord", "acordam": "acord", "acordamos": "acord", "acordar": "acord", "acordaram": "acord", "acordava": "acord", "acordes": "acord", "acordo": "acord", "acordos": "acord", "acordou": "acord", "acostuma": "acostum", "acostumada": "acostum", "acostumadas": "acostum", "acostumado": "acostum", "acostumados": "acostum", "acostumam": "acostum", "acostumar": "acostum", "acostumaram": "acostum", "acostumou": "acostum", "açougue": "açoug", "acovardada": "acovard", "acre": "acre", "acredita": "acredit", "acreditam": "acredit", "acreditamos": "acredit", "acreditando": "acredit", "acreditar": "acredit", "acreditará": "acredit", "acreditarmos": "acredit", "acreditava": "acredit", "acreditavam": "acredit", "acredite": "acredit", "acreditei": "acredit", "acreditem": "acredit", "acredito": "acredit", "acreditou": "acredit", "acrescenta": "acrescent", "acrescentada": "acrescent", "acrescentado": "acrescent", "acrescentam": "acrescent", "acrescentando": "acrescent", "acrescentar": "acrescent", "acrescentava": "acrescent", "acrescente": "acrescent", "acrescentou": "acrescent", "acrescida": "acresc", "acréscimo": "acréscim", "acrobáticas": "acrobát", "activation": "activation", "actor": "actor", "actors": "actors", "acuada": "acu", "açucar": "açuc", "açúcar": "açúc", "açúcares": "açúc", "aculturado": "acultur", "acumula": "acumul", "acumulação": "acumul", "acumuladas": "acumul", "acumulado": "acumul", "acumulador": "acumul", "acumulados": "acumul", "acumulam": "acumul", "acumulando": "acumul", "acumular": "acumul", "acumulavam": "acumul", "acumule": "acumul", "acúmulo": "acúmul", "acumulou": "acumul", "acupuntura": "acupuntur", "acupunturista": "acupuntur", "acupunturistas": "acupuntur", "acusa": "acus", "acusação": "acus", "acusações": "acus", "acusada": "acus", "acusado": "acus", "acusados": "acus", "acusam": "acus", "acusamos": "acus", "acusando": "acus", "acusar": "acus", "acusaram": "acus", "acusava": "acus", "acusavam": "acus", "acusou": "acus", "acústica": "acúst", "adair": "ada", "adami": "adam", "adams": "adams", "adão": "adã", "adaptação": "adapt", "adaptações": "adapt", "adaptada": "adapt", "adaptadas": "adapt", "adaptado": "adapt", "adaptados": "adapt", "adaptar": "adapt", "adaptara": "adapt", "adaptaram": "adapt", "adaptou": "adapt", "adauto": "adaut", "adega": "adeg", "adegas": "adeg", "adelaide": "adelaid", "adélia": "adél", "adelmo": "adelm", "ademais": "adem", "adensar": "adens", "adepta": "adept", "adepto": "adept", "adeptos": "adept", "adequação": "adequ", "adequada": "adequ", "adequadamente": "adequ", "adequadas": "adequ", "adequado": "adequ", "adequados": "adequ", "adequar": "adequ", "adere": "ader", "aderem": "ader", "aderência": "aderent", "aderente": "aderent", "aderir": "ader", "aderiram": "ader", "aderirem": "ader", "aderiu": "ader", "ades": "ades", "adesão": "adesã", "adesistas": "ades", "adesiva": "ades", "adesivo": "ades", "adesivos": "ades", "adesões": "adesõ", "adeus": "adeus", "adhemar": "adhem", "adiada": "adi", "adiamentos": "adiament", "adiando": "adi", "adianta": "adiant", "adiantado": "adiant", "adiantamento": "adiant", "adiantar": "adiant", "adiante": "adiant", "adiantou": "adiant", "adiar": "adi", "adib": "adib", "adiciona": "adicion", "adicionada": "adicion", "adicionado": "adicion", "adicionais": "adicion", "adicional": "adicional", "adicionam": "adicion", "adicionando": "adicion", "adicionar": "adicion", "adicionasse": "adicion", "adido": "adid", "adilson": "adilson", "adiou": "adi", "adir": "adir", "adivinhação": "adivinh", "adivinhar": "adivinh", "adivinhatório": "adivinhatóri", "adjetivo": "adjet", "adjetivos": "adjet", "adjudicar": "adjudic", "adjunto": "adjunt", "adler": "adler", "administra": "administr", "administração": "administr", "administrações": "administr", "administrada": "administr", "administrado": "administr", "administrador": "administr", "administradora": "administr", "administradoras": "administr", "administradores": "administr", "administrados": "administr", "administram": "administr", "administrar": "administr", "administrativa": "administr", "administrativamente": "administr", "administrativas": "administr", "administrativo": "administr", "administrativos": "administr", "adminstração": "adminstr", "admira": "admir", "admiração": "admir", "admirada": "admir", "admiradas": "admir", "admirado": "admir", "admirador": "admir", "admiradores": "admir", "admirando": "admir", "admirar": "admir", "admirei": "admir", "admiro": "admir", "admissão": "admissã", "admite": "admit", "admitem": "admit", "admitia": "admit", "admitida": "admit", "admitido": "admit", "admitidos": "admit", "admitimos": "admit", "admitindo": "admit", "admitir": "admit", "admitiram": "admit", "admitiu": "admit", "admito": "admit", "adobe": "adob", "adoçante": "adoc", "adoção": "adoçã", "adoçaram": "adoc", "adocicado": "adocic", "adoecem": "adoec", "adoecer": "adoec", "adolescência": "adolescent", "adolescente": "adolescent", "adolescentes": "adolescent", "adolfo": "adolf", "adolph": "adolph", "adora": "ador", "adoração": "ador", "adoradores": "ador", "adorados": "ador", "adoram": "ador", "adoramos": "ador", "adoraria": "ador", "adorava": "ador", "adoravam": "ador", "adorei": "ador", "adormecer": "adormec", "adormecida": "adormec", "adornadas": "adorn", "adoro": "ador", "adota": "adot", "adotada": "adot", "adotadas": "adot", "adotado": "adot", "adotados": "adot", "adotam": "adot", "adotando": "adot", "adotar": "adot", "adotaram": "adot", "adotarem": "adot", "adotasse": "adot", "adotássemos": "adot", "adotei": "adot", "adotiva": "adot", "adotivo": "adot", "adotivos": "adot", "adotou": "adot", "adquire": "adquir", "adquirem": "adqu", "adquiri": "adquir", "adquirida": "adquir", "adquiridas": "adquir", "adquiridos": "adquir", "adquirir": "adquir", "adquirira": "adquir", "adquiriu": "adquir", "adre": "adre", "adrenalina": "adrenalin", "adrian": "adrian", "adriana": "adrian", "adriane": "adrian", "adriano": "adrian", "adstringentes": "adstringent", "aduaneira": "aduaneir", "adubo": "adub", "adular": "adul", "adulta": "adult", "adultas": "adult", "adúlteras": "adúlt", "adultério": "adultéri", "adultérios": "adultéri", "adúltero": "adúlter", "adúlteros": "adúlter", "adulto": "adult", "adultos": "adult", "adulyadej": "adulyadej", "adversa": "advers", "adversárias": "adversár", "adversário": "adversári", "adversários": "adversári", "adversas": "advers", "adversidade": "advers", "adversos": "advers", "adverte": "advert", "advertência": "advertent", "advertências": "advertent", "advertia": "advert", "advindas": "advind", "advirto": "advirt", "advocacia": "advocac", "advogada": "advog", "advogado": "advog", "advogados": "advog", "aê": "aê", "aécio": "aéci", "aérea": "aér", "aéreas": "aér", "aéreo": "aér", "aéreos": "aér", "aeróbica": "aerób", "aeróbicos": "aerób", "aerodinâmico": "aerodinâm", "aeroespaciais": "aeroespac", "aeroespacial": "aeroespacial", "aerolineas": "aerolin", "aeromoça": "aeromoc", "aeronautas": "aeronaut", "aeronáutica": "aeronáut", "aeronáuticas": "aeronáut", "aeronáutico": "aeronáut", "aeronáuticos": "aeronáut", "aeronave": "aeronav", "aeronaves": "aeronav", "aeroporto": "aeroport", "aeroportos": "aeroport", "aeroviário": "aeroviári", "aês": "aês", "aeudf": "aeudf", "afã": "afã", "afamada": "afam", "afanar": "afan", "afanasio": "afanasi", "afasia": "afas", "afasta": "afast", "afastá": "afast", "afastada": "afast", "afastadas": "afast", "afastado": "afast", "afastados": "afast", "afastam": "afast", "afastamento": "afast", "afastamos": "afast", "afastar": "afast", "afasto": "afast", "afastou": "afast", "afável": "afável", "afazeres": "afaz", "afbec": "afbec", "afeito": "afeit", "afeminados": "afemin", "aferidos": "afer", "aferir": "afer", "aferrar": "aferr", "afeta": "afet", "afetada": "afet", "afetadas": "afet", "afetado": "afet", "afetados": "afet", "afetam": "afet", "afetar": "afet", "afetaria": "afet", "afetasse": "afet", "afetiva": "afet", "afetivamente": "afet", "afetivas": "afet", "afetividade": "afet", "afetivo": "afet", "afetivos": "afet", "afeto": "afet", "afetou": "afet", "afetuosamente": "afetu", "affair": "affa", "affini": "affin", "afiados": "afi", "afiando": "afi", "aficionado": "aficion", "aficionados": "aficion", "afilhada": "afilh", "afinadas": "afin", "afinal": "afinal", "afinam": "afin", "afinco": "afinc", "afinidade": "afin", "afinidades": "afin", "afins": "afins", "afirma": "afirm", "afirmação": "afirm", "afirmam": "afirm", "afirmando": "afirm", "afirmar": "afirm", "afirmaram": "afirm", "afirmativa": "afirm", "afirmativas": "afirm", "afirmava": "afirm", "afirmou": "afirm", "afivelados": "afivel", "afixado": "afix", "afixou": "afix", "aflição": "afliçã", "aflitas": "aflit", "aflorou": "aflor", "afluentes": "afluent", "afogada": "afog", "afogado": "afog", "afogueadas": "afog", "afonjá": "afonj", "afonso": "afons", "afora": "afor", "aforismo": "afor", "afrescos": "afresc", "áfrica": "áfric", "africana": "african", "africanas": "african", "africanizado": "africaniz", "africano": "african", "africanos": "african", "afro": "afro", "afronta": "afront", "afros": "afros", "after": "after", "afundado": "afund", "afundamento": "afund", "afundar": "afund", "afundaram": "afund", "afundou": "afund", "ag": "ag", "agachado": "agach", "against": "against", "agarrado": "agarr", "agarrados": "agarr", "agarrar": "agarr", "agarras": "agarr", "agasalhar": "agasalh", "agasalho": "agasalh", "agassi": "agass", "agaxtur": "agaxtur", "age": "age", "ágeis": "áge", "agem": "agem", "agência": "agênc", "agências": "agênc", "agenciava": "agenc", "agencom": "agencom", "agenda": "agend", "agendados": "agend", "agendar": "agend", "agendas": "agend", "agente": "agent", "agentes": "agent", "agiam": "agi", "agigantava": "agigant", "ágil": "ágil", "agilidade": "agil", "agilizar": "agiliz", "agilizou": "agiliz", "agilson": "agilson", "agindo": "agind", "agins": "agins", "ágio": "ági", "agir": "agir", "agiram": "agir", "agisse": "agiss", "agita": "agit", "agitação": "agit", "agitada": "agit", "agitado": "agit", "agitador": "agit", "agitados": "agit", "agito": "agit", "agiu": "agiu", "aglomerações": "aglomer", "aglomeram": "aglom", "aglutina": "aglutin", "agnaldo": "agnald", "agnelli": "agnell", "agonia": "agon", "agora": "agor", "agostim": "agostim", "agostinho": "agostinh", "agosto": "agost", "agraciada": "agrac", "agraciado": "agrac", "agraciados": "agrac", "agrada": "agrad", "agradá": "agrad", "agradabilíssimo": "agradabilíssim", "agradam": "agrad", "agradar": "agrad", "agradáveis": "agrad", "agradável": "agrad", "agrade": "agrad", "agradece": "agradec", "agradecer": "agradec", "agradeci": "agradec", "agradecimento": "agradec", "agrados": "agrad", "agradou": "agrad", "agrária": "agrár", "agrava": "agrav", "agravada": "agrav", "agravam": "agrav", "agravamento": "agrav", "agravantes": "agrav", "agravar": "agrav", "agravou": "agrav", "agredida": "agred", "agredidas": "agred", "agredido": "agred", "agredir": "agred", "agrega": "agreg", "agregação": "agreg", "agregado": "agreg", "agregador": "agreg", "agregados": "agreg", "agregando": "agreg", "agregar": "agreg", "agregou": "agreg", "agregue": "agreg", "agressão": "agressã", "agressiva": "agress", "agressivamente": "agress", "agressivas": "agress", "agressividade": "agress", "agressivo": "agress", "agressivos": "agress", "agressões": "agressõ", "agressor": "agressor", "agreste": "agrest", "agrícola": "agrícol", "agrícolas": "agrícol", "agricultor": "agricultor", "agricultores": "agricultor", "agricultura": "agricultur", "agridoce": "agridoc", "agrocentro": "agrocentr", "agroindústria": "agroindústr", "agrônomo": "agrônom", "agruras": "agrur", "água": "águ", "aguados": "agu", "aguarda": "aguard", "aguardam": "aguard", "aguardar": "aguard", "aguardava": "aguard", "aguardavam": "aguard", "aguardou": "aguard", "águas": "águ", "aguçada": "aguc", "agudas": "agud", "agudos": "agud", "aguenta": "aguent", "agüenta": "agüent", "aguentam": "aguent", "aguentamos": "aguent", "aguentar": "aguent", "aguentava": "aguent", "agüentava": "agüent", "aguente": "aguent", "agüente": "agüent", "aguento": "aguent", "agüento": "agüent", "aguentou": "aguent", "agüentou": "agüent", "aguiar": "agui", "aguinaldo": "aguinald", "agulha": "agulh", "agulhas": "agulh", "ah": "ah", "ahouagi": "ahouag", "ahuasca": "ahuasc", "ai": "ai", "aí": "aí", "aidéticas": "aidét", "aidético": "aidét", "aidéticos": "aidét", "aids": "aids", "ailson": "ailson", "ailton": "ailton", "aílton": "aílton", "ainda": "aind", "air": "air", "airbus": "airbus", "aires": "air", "airès": "airès", "airlines": "airlin", "ajeita": "ajeit", "ajeitadinha": "ajeitadinh", "ajeitando": "ajeit", "ajoelharam": "ajoelh", "ajuda": "ajud", "ajudá": "ajud", "ajudado": "ajud", "ajudam": "ajud", "ajudamos": "ajud", "ajudando": "ajud", "ajudante": "ajud", "ajudar": "ajud", "ajudará": "ajud", "ajudaram": "ajud", "ajudarão": "ajud", "ajudaria": "ajud", "ajudava": "ajud", "ajudavam": "ajud", "ajude": "ajud", "ajudem": "ajud", "ajudo": "ajud", "ajudou": "ajud", "ajusta": "ajust", "ajustado": "ajust", "ajustar": "ajust", "ajuste": "ajust", "ajustes": "ajust", "ajustou": "ajust", "ak": "ak", "akihito": "akihit", "akira": "akir", "al": "al", "ala": "ala", "alá": "alá", "alagoana": "alagoan", "alagoano": "alagoan", "alagoanos": "alagoan", "alagoas": "alago", "alaíde": "alaíd", "alain": "alain", "alambique": "alambiqu", "alamogordo": "alamogord", "alan": "alan", "alarcón": "alarcón", "alardeada": "alard", "alardear": "alard", "alardeassem": "alard", "alargamento": "alarg", "alargar": "alarg", "alarmado": "alarm", "alarmados": "alarm", "alarme": "alarm", "alarmes": "alarm", "alasca": "alasc", "alavanca": "alavanc", "alavancar": "alavanc", "alavancas": "alavanc", "albarello": "albarell", "albendazol": "albendazol", "albergue": "alberg", "alberico": "alber", "albert": "albert", "alberto": "albert", "albertoni": "alberton", "albiero": "albier", "albino": "albin", "álbum": "álbum", "álbuns": "álbuns", "albuquerque": "albuquerqu", "alca": "alca", "alça": "alça", "alcaçuzz": "alcaçuzz", "alçada": "alçad", "alçado": "alçad", "alcança": "alcanc", "alcançá": "alcanc", "alcançado": "alcanc", "alcançamos": "alcanc", "alcançar": "alcanc", "alcançasse": "alcanc", "alcance": "alcanc", "alcancei": "alcanc", "alcancem": "alcanc", "alcançou": "alcanc", "alcântara": "alcânt", "alçapão": "alçapã", "alçar": "alçar", "alccólatra": "alccólatr", "alcides": "alcid", "alcoa": "alco", "álcool": "álcool", "alcoólatra": "alcoólatr", "alcoólatras": "alcoólatr", "alcoólica": "alcoól", "alcoólicas": "alcoól", "alcoólico": "alcoól", "alcoólicos": "alcoól", "alcoolismo": "alcool", "alcoolizados": "alcooliz", "alcoquímica": "alcoquím", "alcorão": "alcorã", "alçou": "alçou", "alcova": "alcov", "alcovitice": "alcovitic", "alcunha": "alcunh", "alcyr": "alcyr", "aldeia": "alde", "aldeota": "aldeot", "aldo": "aldo", "aldunate": "aldunat", "alê": "alê", "aleatória": "aleatór", "alecrim": "alecrim", "alega": "aleg", "alegação": "aleg", "alegadas": "aleg", "alegado": "aleg", "alegam": "aleg", "alegando": "aleg", "alegar": "aleg", "alegaram": "aleg", "alegava": "aleg", "alegoria": "alegor", "alegou": "aleg", "alegra": "alegr", "alegrasse": "alegr", "alegre": "alegr", "alegres": "alegr", "alegrete": "alegret", "alegria": "alegr", "alegrias": "alegr", "alegro": "alegr", "aleida": "ale", "aleijado": "aleij", "aleixo": "aleix", "alejandro": "alejandr", "além": "além", "alemã": "alemã", "alemães": "alemã", "alemanha": "alemanh", "alemão": "alemã", "alencar": "alenc", "alencastro": "alencastr", "alenquer": "alenqu", "alentado": "alent", "alentejo": "alentej", "alento": "alent", "alergia": "alerg", "alergias": "alerg", "alerta": "alert", "alertadas": "alert", "alertado": "alert", "alertam": "alert", "alertava": "alert", "alertou": "alert", "alessandra": "alessandr", "alessandro": "alessandr", "alessio": "alessi", "alex": "alex", "alexander": "alexand", "alexandra": "alexandr", "alexandre": "alexandr", "alexim": "alexim", "alfabetização": "alfabetiz", "alfabetizado": "alfabetiz", "alfabetizadora": "alfabetiz", "alfabetizadores": "alfabetiz", "alfabetizados": "alfabetiz", "alfabetizar": "alfabetiz", "alfabeto": "alfabet", "alface": "alfac", "alfaiates": "alfaiat", "alfândega": "alfândeg", "alfandegárias": "alfandegár", "alfândegas": "alfândeg", "alfer": "alfer", "alferes": "alfer", "alfineta": "alfinet", "alforria": "alforr", "alfred": "alfred", "alfredo": "alfred", "algarismos": "algar", "algas": "algas", "algema": "algem", "algemados": "algem", "algo": "algo", "algodão": "algodã", "alguém": "alguém", "algum": "algum", "alguma": "algum", "algumas": "algum", "alguns": "alguns", "alheia": "alhe", "alheias": "alhe", "alheio": "alhei", "alheios": "alhei", "alho": "alho", "ali": "ali", "aliadas": "ali", "aliado": "ali", "aliados": "ali", "aliança": "alianc", "alianças": "alianc", "aliar": "ali", "aliaram": "ali", "aliás": "aliás", "álibi": "álib", "álibis": "álib", "alice": "alic", "alicerces": "alicerc", "alien": "alien", "alienação": "alien", "alienados": "alien", "alienígena": "alienígen", "alienígenas": "alienígen", "alimenta": "aliment", "alimentação": "aliment", "alimentada": "aliment", "alimentadas": "aliment", "alimentado": "aliment", "alimentados": "aliment", "alimentam": "aliment", "alimentando": "aliment", "alimentar": "aliment", "alimentaram": "aliment", "alimentares": "aliment", "alimentos": "aliment", "aline": "alin", "alinhado": "alinh", "alinhados": "alinh", "alinhou": "alinh", "alíquota": "alíquot", "alíquotas": "alíquot", "alisia": "alis", "alitalia": "alital", "alivia": "aliv", "aliviada": "alivi", "aliviado": "alivi", "aliviar": "alivi", "aliviava": "alivi", "alívio": "alívi", "alka": "alka", "allan": "allan", "allen": "allen", "alliance": "allianc", "alma": "alma", "almanaque": "almanaqu", "almas": "almas", "almeida": "alme", "almeja": "almej", "almejada": "almej", "almejado": "almej", "almejam": "almej", "almirantado": "almirant", "almirante": "almir", "almoça": "almoc", "almoçar": "almoc", "almoço": "almoc", "almoços": "almoc", "almoçou": "almoc", "almofada": "almof", "aln": "aln", "alô": "alô", "aloe": "alo", "aloha": "aloh", "aloisio": "aloisi", "aloizio": "aloizi", "alojados": "aloj", "alojamento": "aloj", "alojamentos": "aloj", "alone": "alon", "alongamento": "along", "alopata": "alopat", "alopatas": "alopat", "alopáticas": "alopát", "alopáticos": "alopát", "aloprado": "alopr", "aloysio": "aloysi", "alpargatas": "alpargat", "alpha": "alpha", "alphatem": "alphat", "alphaville": "alphavill", "alpinismo": "alpin", "alpinista": "alpin", "alpinistas": "alpin", "alqueires": "alqu", "alquimia": "alquim", "alta": "alta", "altair": "alta", "altamair": "altama", "altamente": "alt", "altaneiro": "altaneir", "altar": "altar", "altas": "altas", "alter": "alter", "altera": "alter", "alteração": "alter", "alterações": "alter", "alterado": "alter", "alteram": "alter", "alterar": "alter", "alteravam": "alter", "alternadamente": "altern", "alternam": "altern", "alternância": "altern", "alternativa": "altern", "alternativas": "altern", "alternativo": "altern", "alternativos": "altern", "alternava": "altern", "alternavam": "altern", "altinópolis": "altinópol", "altiplano": "altiplan", "altíssima": "altíssim", "altíssimas": "altíssim", "altíssimo": "altíssim", "altíssimos": "altíss", "altissonantes": "altisson", "altitude": "altitud", "altitudes": "altitud", "altiva": "altiv", "alto": "alto", "altoé": "alto", "altos": "altos", "altura": "altur", "alturas": "altur", "alucinada": "alucin", "alucinado": "alucin", "alucinados": "alucin", "alucinante": "alucin", "alucinógena": "alucinógen", "alucinógenas": "alucinógen", "aluga": "alug", "alugada": "alug", "alugadas": "alug", "alugado": "alug", "alugados": "alug", "alugam": "alug", "alugando": "alug", "alugar": "alug", "alugo": "alug", "alugou": "alug", "aluguei": "alugu", "aluguéis": "alug", "aluguel": "aluguel", "aluminart": "aluminart", "alumínio": "alumíni", "alumni": "alumn", "aluna": "alun", "alunas": "alun", "aluno": "alun", "alunos": "alun", "alusão": "alusã", "alvará": "alvar", "alvares": "alvar", "álvares": "álvar", "alvarez": "alvarez", "álvaro": "álvar", "alvejou": "alvej", "alves": "alves", "alvim": "alvim", "alvíssimas": "alvíssim", "alvo": "alvo", "alvorada": "alvor", "alvoroço": "alvoroc", "alvos": "alvos", "alzheimer": "alzheim", "am": "am", "ama": "ama", "amable": "amabl", "amada": "amad", "amado": "amad", "amador": "amador", "amadores": "amador", "amadurece": "amadurec", "amadurecem": "amadurec", "amadurecendo": "amadurec", "amadurecer": "amadurec", "amalia": "amal", "amam": "amam", "amamentando": "amament", "amamentar": "amament", "amâncio": "amânci", "amanda": "amand", "amanhã": "amanhã", "amanhecidos": "amanhec", "amansa": "amans", "amante": "amant", "amantes": "amant", "amar": "amar", "amaral": "amaral", "amarela": "amarel", "amarelada": "amarel", "amarelas": "amarel", "amarelo": "amarel", "amarga": "amarg", "amargam": "amarg", "amargando": "amarg", "amargas": "amarg", "amargava": "amarg", "amargo": "amarg", "amargor": "amargor", "amargos": "amarg", "amargou": "amarg", "amarguíssimas": "amarguíssim", "amargurado": "amargur", "amaro": "amar", "amarra": "amarr", "amarrada": "amarr", "amarrado": "amarr", "amarrados": "amarr", "amarras": "amarr", "amassado": "amass", "amassando": "amass", "amassar": "amass", "amassava": "amass", "amassos": "amass", "amassou": "amass", "amato": "amat", "amava": "amav", "amável": "amável", "amazonas": "amazon", "amazonense": "amazonens", "amazonenses": "amazonens", "amazônia": "amazôn", "amazônica": "amazôn", "amazônicas": "amazôn", "amazônico": "amazôn", "amazônicos": "amazôn", "amazonino": "amazonin", "âmbar": "âmbar", "ambas": "ambas", "ambição": "ambiçã", "ambiciosa": "ambic", "ambiciosas": "ambic", "ambicioso": "ambic", "ambições": "ambiçõ", "ambiel": "ambiel", "ambientação": "ambient", "ambientais": "ambient", "ambiental": "ambiental", "ambientalista": "ambiental", "ambientalistas": "ambiental", "ambiente": "ambient", "ambientes": "ambient", "âmbito": "âmbit", "ambivalência": "ambivalent", "ambos": "ambos", "ambulância": "ambul", "ambulante": "ambul", "ambulantes": "ambul", "ambulatoriais": "ambulatori", "ambulatorial": "ambulatorial", "ameaça": "ameac", "ameaçá": "ameac", "ameaçada": "ameac", "ameaçadas": "ameac", "ameaçado": "ameac", "ameaçador": "ameac", "ameaçadora": "ameac", "ameaçadores": "ameac", "ameaçados": "ameac", "ameaçam": "ameac", "ameaçando": "ameac", "ameaçar": "ameac", "ameaçaram": "ameac", "ameaças": "ameac", "ameaçava": "ameac", "ameaçou": "ameac", "amealha": "amealh", "amealhou": "amealh", "amedrontada": "amedront", "amedrontadoras": "amedront", "amei": "ame", "amélia": "amél", "amélio": "améli", "amém": "amém", "amena": "amen", "amêndoa": "amêndo", "amendoados": "amendo", "ameniza": "ameniz", "amenizar": "ameniz", "ameno": "amen", "america": "amer", "américa": "amér", "american": "american", "americana": "american", "americanas": "american", "americano": "american", "americanópolis": "americanópol", "americanos": "american", "américas": "amér", "américo": "amér", "amesi": "ames", "amesma": "amesm", "amico": "amic", "amiga": "amig", "amigas": "amig", "amigáveis": "amig", "amigável": "amig", "amigo": "amig", "amigos": "amig", "amiguinho": "amiguinh", "amiguinhos": "amiguinh", "amilcar": "amilc", "amílcar": "amílc", "amin": "amin", "aminoácidos": "aminoác", "amistosa": "amist", "amistoso": "amist", "amistosos": "amist", "amix": "amix", "amizade": "amizad", "amizades": "amizad", "amma": "amma", "amnésica": "amnés", "amo": "amo", "amodeo": "amod", "amolece": "amolec", "amontoado": "amonto", "amor": "amor", "amores": "amor", "amorim": "amorim", "amorosa": "amor", "amorosas": "amor", "amoroso": "amor", "amortecida": "amortec", "amortização": "amortiz", "amos": "amos", "amostra": "amostr", "amostras": "amostr", "ampara": "ampar", "amparadas": "ampar", "amparado": "ampar", "amparar": "ampar", "ampla": "ampla", "amplamente": "ampl", "amplia": "ampli", "ampliação": "ampliaçã", "ampliado": "ampli", "ampliam": "ampli", "ampliando": "ampli", "ampliar": "ampli", "ampliava": "ampli", "amplificar": "amplific", "ampliou": "ampli", "amplitude": "amplitud", "amplo": "amplo", "amplos": "amplos", "ampola": "ampol", "amputar": "amput", "amsterdã": "amsterdã", "amuletos": "amulet", "amx": "amx", "amy": "amy", "an": "an", "ana": "ana", "anã": "anã", "anabólico": "anaból", "anabolizante": "anaboliz", "anafranil": "anafranil", "anal": "anal", "analfabeta": "analfabet", "analfabetismo": "analfabet", "analfabetos": "analfabet", "analgésico": "analgés", "analgésicos": "analgés", "analisa": "analis", "analisá": "analis", "analisada": "analis", "analisadas": "analis", "analisado": "analis", "analisados": "analis", "analisam": "analis", "analisando": "analis", "analisar": "analis", "analisaram": "analis", "analise": "analis", "análise": "anális", "análises": "anális", "analisou": "analis", "analista": "anal", "analistas": "anal", "anamburucu": "anamburucu", "anão": "anã", "anápolis": "anápol", "anarquismo": "anarqu", "anarquista": "anarqu", "anarquizando": "anarquiz", "anas": "anas", "anastácia": "anastác", "anastassiadis": "anastassiad", "anatel": "anatel", "anátemas": "anátem", "anatólia": "anatól", "anatomia": "anatom", "anatomicamente": "anatom", "anatômicas": "anatôm", "anatômico": "anatôm", "anatômicos": "anatôm", "anbid": "anbid", "ancestrais": "ancestr", "ancestral": "ancestral", "anchieta": "anchiet", "anchovas": "anchov", "ancora": "ancor", "âncora": "âncor", "ancorada": "ancor", "ancorado": "ancor", "ancoradouros": "ancoradour", "ancoram": "ancor", "and": "and", "anda": "anda", "andado": "andad", "andam": "andam", "andamento": "andament", "andamos": "andam", "andanças": "andanc", "andando": "andand", "andar": "andar", "andará": "andar", "andares": "andar", "andassem": "andass", "andava": "andav", "andei": "ande", "andersen": "andersen", "anderson": "anderson", "andes": "andes", "andina": "andin", "andinho": "andinh", "ando": "ando", "andor": "andor", "andou": "andou", "andrade": "andrad", "andrajos": "andraj", "andre": "andre", "andré": "andré", "andrea": "andre", "andréa": "andré", "andreazza": "andreazz", "andrei": "andre", "andreoli": "andreol", "andreolli": "andreoll", "andy": "andy", "anéas": "ané", "anedota": "anedot", "anedotário": "anedotári", "anéis": "ané", "anel": "anel", "anelados": "anel", "anemia": "anem", "anêmico": "anêm", "anestesia": "anestes", "anestésico": "anestés", "aneurisma": "aneurism", "aneurismas": "aneurism", "anexadas": "anex", "anexados": "anex", "anexo": "anex", "anfetamina": "anfetamin", "anfetaminas": "anfetamin", "anfetamínica": "anfetamín", "anfetamínico": "anfetamín", "anfetamínicos": "anfetamín", "angariar": "angari", "angariou": "angari", "angel": "angel", "angela": "angel", "ângela": "ângel", "angeles": "angel", "angélica": "angél", "angelical": "angelical", "angelina": "angelin", "angelo": "angel", "ângelo": "ângel", "angelotto": "angelott", "angiotensina": "angiotensin", "anglo": "anglo", "angola": "angol", "angolanas": "angolan", "angolanos": "angolan", "angra": "angra", "ângulo": "ângul", "ângulos": "ângul", "angústia": "angúst", "angustiada": "angusti", "angustiadas": "angusti", "angustiados": "angusti", "angustiantes": "angusti", "angústias": "angúst", "anhanduí": "anhandu", "anhangabaú": "anhangabaú", "anhanguera": "anhangu", "anhembi": "anhemb", "anheuser": "anheus", "anibal": "anibal", "anima": "anim", "animação": "anim", "animações": "anim", "animada": "anim", "animadamente": "anim", "animado": "anim", "animador": "anim", "animadores": "anim", "animados": "anim", "animais": "anim", "animal": "animal", "animam": "anim", "animando": "anim", "animar": "anim", "ânimo": "ânim", "ânimos": "ânim", "animosidade": "animos", "animou": "anim", "aninha": "aninh", "aniquile": "aniquil", "anísio": "anísi", "anistia": "anist", "aniversário": "aniversári", "aniversários": "aniversári", "aniz": "aniz", "anja": "anja", "anjinho": "anjinh", "anjo": "anjo", "anlong": "anlong", "anna": "anna", "annie": "anni", "anno": "anno", "ano": "ano", "anões": "anõ", "anomalias": "anomal", "anonimamente": "anonim", "anônimas": "anônim", "anonimato": "anonimat", "anônimo": "anônim", "anônimos": "anôn", "anorexia": "anorex", "anormal": "anormal", "anos": "anos", "anotá": "anot", "anotações": "anot", "anotados": "anot", "anotam": "anot", "anotar": "anot", "anotava": "anot", "anote": "anot", "anotou": "anot", "ansaldi": "ansald", "anseia": "anse", "anseiam": "anse", "anseio": "ansei", "anseios": "ansei", "ansiedade": "ansiedad", "ansiedades": "ansiedad", "ansiolíticos": "ansiolít", "ansiosa": "ansios", "ansiosamente": "ansios", "ansiosas": "ansios", "ansioso": "ansios", "ansiosos": "ansios", "anta": "anta", "antagônicas": "antagôn", "antarctica": "antarct", "antártica": "antárt", "antártico": "antárt", "antártida": "antárt", "antebraço": "antebrac", "antecede": "anteced", "antecedem": "anteced", "antecedência": "antecedent", "antecedentes": "antecedent", "antecederam": "anteced", "antecedeu": "anteced", "antecessor": "antecessor", "antecessores": "antecessor", "antecipa": "antecip", "antecipação": "antecip", "antecipações": "antecip", "antecipada": "antecip", "antecipadamente": "antecip", "antecipadas": "antecip", "antecipado": "antecip", "antecipador": "antecip", "antecipando": "antecip", "antecipar": "antecip", "antecipou": "antecip", "antena": "anten", "antenadas": "anten", "antenado": "anten", "antenas": "anten", "antenor": "antenor", "anteontem": "anteont", "antepassados": "antepass", "antepunham": "antepunh", "anterior": "anterior", "anteriores": "anterior", "anteriormente": "anterior", "antes": "antes", "antevendo": "antev", "anthony": "anthony", "anti": "anti", "antiarmas": "antiarm", "antibélicas": "antibél", "antibióticos": "antibiót", "anticomunista": "anticomun", "anticoncepção": "anticoncepçã", "anticoncepcionais": "anticoncepcion", "anticoncepcional": "anticoncepcional", "anticonvulsivos": "anticonvuls", "antidepressiva": "antidepress", "antidepressivo": "antidepress", "antidepressivos": "antidepress", "antídotos": "antídot", "antidrogas": "antidrog", "antiespasmódico": "antiespasmód", "antiético": "antiét", "antiga": "antig", "antigamente": "antig", "antigas": "antig", "antigen": "antigen", "antígeno": "antígen", "antigo": "antig", "antigos": "antig", "antigovernistas": "antigovern", "antiguidade": "antigu", "antiguidades": "antigu", "antiinflamatório": "antiinflamatóri", "antilusitanos": "antilusitan", "antimonotonia": "antimonoton", "antinarcotráfico": "antinarcotráf", "antipatia": "antipat", "antipatias": "antipat", "antipático": "antipát", "antipessoais": "antipesso", "antiquado": "antiqu", "antiquados": "antiqu", "antiquários": "antiquári", "antiquarius": "antiquarius", "antissépticos": "antissépt", "antitabagista": "antitabag", "antitabagistas": "antitabag", "antitérmico": "antitérm", "antológica": "antológ", "antonia": "anton", "antônia": "antôn", "antoninho": "antoninh", "antonio": "antoni", "antônio": "antôni", "antropóloga": "antropólog", "antropologia": "antropolog", "antropólogo": "antropólog", "antropólogos": "antropólog", "antunes": "antun", "anuais": "anu", "anual": "anual", "anualmente": "anual", "anuário": "anuári", "anuidade": "anuidad", "anulação": "anul", "anulado": "anul", "anulam": "anul", "anulando": "anul", "anular": "anul", "anularam": "anul", "anulei": "anul", "anulou": "anul", "anuncia": "anunc", "anunciada": "anunc", "anunciadas": "anunc", "anunciado": "anunc", "anunciam": "anunc", "anunciando": "anunc", "anunciantes": "anunc", "anunciar": "anunc", "anunciaram": "anunc", "anunciava": "anunc", "anúncio": "anúnci", "anúncios": "anúnci", "anunciou": "anunc", "anysio": "anysi", "ao": "ao", "ão": "ão", "aonde": "aond", "aorta": "aort", "aórtico": "aórtic", "aos": "aos", "ap": "ap", "apadrinhamento": "apadrinh", "apadrinhou": "apadrinh", "apagado": "apag", "apagam": "apag", "apagando": "apag", "apagar": "apag", "apagavam": "apag", "apagou": "apag", "apaixona": "apaixon", "apaixonada": "apaixon", "apaixonadas": "apaixon", "apaixonadíssima": "apaixonadíssim", "apaixonado": "apaixon", "apaixonados": "apaixon", "apaixonam": "apaixon", "apaixonar": "apaixon", "apaixonara": "apaixon", "apaixone": "apaixon", "apaixonei": "apaixon", "apaixonou": "apaixon", "apalpação": "apalp", "apalpado": "apalp", "apanha": "apanh", "apanhado": "apanh", "apanham": "apanh", "apanhando": "apanh", "apanhar": "apanh", "apanhei": "apanh", "apanhou": "apanh", "aparacer": "aparac", "aparar": "apar", "aparato": "aparat", "apareçam": "aparec", "aparece": "aparec", "aparecem": "aparec", "aparecendo": "aparec", "aparecer": "aparec", "apareceram": "aparec", "aparecerem": "aparec", "apareceria": "aparec", "aparecesse": "aparec", "aparecessem": "aparec", "apareceu": "aparec", "apareci": "aparec", "aparecia": "aparec", "apareciam": "aparec", "aparecida": "aparec", "aparecido": "aparec", "aparecimento": "aparec", "aparelhada": "aparelh", "aparelhagem": "aparelhag", "aparelhinho": "aparelhinh", "aparelho": "aparelh", "aparelhos": "aparelh", "aparência": "aparent", "aparências": "aparent", "aparenta": "aparent", "aparentam": "aparent", "aparente": "aparent", "aparentemente": "aparent", "aparentes": "aparent", "aparição": "apariçã", "aparições": "apariçõ", "apartamento": "apart", "apartamentos": "apart", "apartava": "apart", "apatia": "apat", "apáticas": "apát", "apáticos": "apát", "apavora": "apavor", "apavorada": "apavor", "apavorou": "apavor", "apaziguador": "apazigu", "apeá": "ape", "apec": "apec", "apega": "apeg", "apegada": "apeg", "apegados": "apeg", "apegar": "apeg", "apego": "apeg", "apela": "apel", "apelação": "apel", "apelar": "apel", "apelei": "apel", "apelem": "apel", "apelidados": "apelid", "apelidaram": "apelid", "apelido": "apel", "apelo": "apel", "apelos": "apel", "apelou": "apel", "apenas": "apen", "apêndice": "apêndic", "aperfeiçoamento": "aperfeiço", "aperfeiçoando": "aperfeiço", "aperfeiçoar": "aperfeiço", "aperfeiçoei": "aperfeiço", "aperitivos": "aperit", "aperreados": "aperr", "aperta": "apert", "apertada": "apert", "apertado": "apert", "apertados": "apert", "apertam": "apert", "apertar": "apert", "apertou": "apert", "apesar": "apes", "apetite": "apetit", "apetitoso": "apetit", "apetrechos": "apetrech", "ápice": "ápic", "apinhado": "apinh", "apitava": "apit", "apito": "apit", "aplaca": "aplac", "aplacando": "aplac", "aplacar": "aplac", "aplacou": "aplac", "aplaudida": "aplaud", "aplausos": "aplaus", "aplica": "aplic", "aplicação": "aplic", "aplicações": "aplic", "aplicada": "aplic", "aplicadas": "aplic", "aplicado": "aplic", "aplicadores": "aplic", "aplicam": "aplic", "aplicando": "aplic", "aplicar": "aplic", "aplicaram": "aplic", "aplicativos": "aplic", "aplicava": "aplic", "aplicável": "aplic", "aplicou": "aplic", "aplique": "apliqu", "apliquem": "apliqu", "apliques": "apliqu", "apnéia": "apné", "apocalipse": "apocalips", "apoderaram": "apoder", "apoenan": "apoenan", "apogeu": "apog", "apóia": "apó", "apoiá": "apoi", "apoiadas": "apoi", "apoiado": "apoi", "apoiados": "apoi", "apóiam": "apó", "apoiar": "apoi", "apoiarem": "apoi", "apoiaria": "apoi", "apoio": "apoi", "apoiou": "apoi", "apólice": "apólic", "apolítico": "apolít", "apollinari": "apollinar", "apologia": "apolog", "apologista": "apolog", "aponta": "apont", "apontá": "apont", "apontada": "apont", "apontadas": "apont", "apontado": "apont", "apontadores": "apont", "apontados": "apont", "apontam": "apont", "apontando": "apont", "apontar": "apont", "apontava": "apont", "apontem": "apont", "apontou": "apont", "apoplético": "apoplét", "aportar": "aport", "aportou": "aport", "após": "após", "aposentada": "aposent", "aposentado": "aposent", "aposentadoria": "aposentador", "aposentados": "aposent", "aposentam": "aposent", "aposentar": "aposent", "aposentos": "aposent", "aposentou": "aposent", "apossado": "aposs", "aposta": "apost", "apostador": "apost", "apostadores": "apost", "apostam": "apost", "apostamos": "apost", "apostando": "apost", "apostar": "apost", "apostaram": "apost", "apostas": "apost", "aposte": "apost", "apostilas": "apostil", "aposto": "apost", "apóstolo": "apóstol", "apóstolos": "apóstol", "apostou": "apost", "apoteose": "apoteos", "apple": "apple", "aprazível": "apraz", "aprecia": "aprec", "apreciação": "aprec", "apreciações": "aprec", "apreciada": "aprec", "apreciado": "aprec", "apreciando": "aprec", "apreciar": "aprec", "apreciaram": "aprec", "apreciou": "aprec", "apreço": "aprec", "apreendem": "apreend", "apreender": "apreend", "apreenderam": "apreend", "apreendida": "apreend", "apreensão": "apreensã", "apreensivo": "apreens", "apreensivos": "apreens", "apreensões": "apreensõ", "apregoa": "aprego", "apregoam": "aprego", "aprenda": "aprend", "aprendam": "aprend", "aprende": "aprend", "aprendem": "aprend", "aprendemos": "aprend", "aprendendo": "aprend", "aprender": "aprend", "aprenderam": "aprend", "aprenderia": "aprend", "aprendesse": "aprend", "aprendeu": "aprend", "aprendi": "aprend", "aprendiam": "aprend", "aprendíamos": "aprend", "aprendida": "aprend", "aprendidas": "aprend", "aprendido": "aprend", "aprendiz": "aprendiz", "aprendizado": "aprendiz", "aprendizagem": "aprendizag", "aprendizes": "aprendiz", "apresenta": "apresent", "apresentação": "apresent", "apresentações": "apresent", "apresentada": "apresent", "apresentadas": "apresent", "apresentado": "apresent", "apresentador": "apresent", "apresentadora": "apresent", "apresentadoras": "apresent", "apresentados": "apresent", "apresentam": "apresent", "apresentamos": "apresent", "apresentando": "apresent", "apresentar": "apresent", "apresentará": "apresent", "apresentaram": "apresent", "apresentarão": "apresent", "apresentaria": "apresent", "apresentasse": "apresent", "apresentassem": "apresent", "apresentava": "apresent", "apresentavam": "apresent", "apresentável": "apresent", "apresente": "apresent", "apresento": "apresent", "apresentou": "apresent", "apressada": "apress", "apressadas": "apress", "apressadinha": "apressadinh", "apressadinhos": "apressadinh", "apressado": "apress", "apressados": "apress", "apressam": "apress", "apressamento": "apress", "apressar": "apress", "apresse": "apress", "apressou": "apress", "aprimoradas": "aprimor", "aprimoramento": "aprimor", "aprimorar": "aprimor", "aprimorou": "aprimor", "aprisionados": "aprision", "aprisionassem": "aprision", "aprofundar": "aprofund", "aprofundou": "aprofund", "aprontasse": "apront", "aprontou": "apront", "apropriação": "apropri", "apropriada": "apropri", "apropriadamente": "apropri", "apropriadas": "apropri", "apropriado": "apropri", "aprova": "aprov", "aprová": "aprov", "aprovação": "aprov", "aprovada": "aprov", "aprovadas": "aprov", "aprovado": "aprov", "aprovados": "aprov", "aprovando": "aprov", "aprovar": "aprov", "aprovaram": "aprov", "aprovassem": "aprov", "aprovavam": "aprov", "aproveita": "aproveit", "aproveitado": "aproveit", "aproveitam": "aproveit", "aproveitamento": "aproveit", "aproveitamos": "aproveit", "aproveitando": "aproveit", "aproveitar": "aproveit", "aproveitaria": "aproveit", "aproveito": "aproveit", "aproveitou": "aproveit", "aprovou": "aprov", "aproxima": "aproxim", "aproximação": "aproxim", "aproximações": "aproxim", "aproximadamente": "aproxim", "aproximado": "aproxim", "aproximam": "aproxim", "aproximando": "aproxim", "aproximar": "aproxim", "aproximava": "aproxim", "aproximei": "aproxim", "aproximou": "aproxim", "apta": "apta", "aptas": "aptas", "aptidão": "aptidã", "apto": "apto", "aptos": "aptos", "apura": "apur", "apuração": "apur", "apurações": "apur", "apurada": "apur", "apuradas": "apur", "apurado": "apur", "apurar": "apur", "apuro": "apur", "apuros": "apur", "apurou": "apur", "aqualung": "aqualung", "aquarteladas": "aquartel", "aquartelamento": "aquartel", "aquartelar": "aquartel", "aquartelou": "aquartel", "aquática": "aquát", "aquático": "aquát", "aquecesse": "aquec", "aquecidos": "aquec", "aquecimento": "aquec", "aquela": "aquel", "àquela": "àquel", "aquelas": "aquel", "àquelas": "àquel", "aquele": "aquel", "àquele": "àquel", "aqueles": "aquel", "aquém": "aquém", "aqui": "aqu", "aquidauana": "aquidauan", "aquilo": "aquil", "aquino": "aquin", "aquisição": "aquisiçã", "aquisições": "aquisiçõ", "aquisitivo": "aquisit", "ar": "ar", "árabe": "árab", "árabes": "árab", "arabi": "arab", "arabica": "arab", "arábica": "aráb", "aracaju": "aracaju", "aracruz": "aracruz", "araçuaí": "araçua", "aracy": "aracy", "aragão": "aragã", "araguaia": "aragua", "aramaçã": "aramaçã", "arandu": "arandu", "aranha": "aranh", "aranhas": "aranh", "aranovich": "aranovich", "arantes": "arant", "arap": "arap", "araponga": "arapong", "arapongas": "arapong", "arapuã": "arapuã", "arara": "arar", "araranguá": "ararangu", "araraquara": "araraqu", "araras": "arar", "aratangy": "aratangy", "arau": "arau", "araujo": "arauj", "araújo": "araúj", "araxá": "arax", "arbitragem": "arbitrag", "arbitrar": "arbitr", "arbitrara": "arbitr", "arbitrária": "arbitrár", "arbitrariamente": "arbitrari", "árbitros": "árbitr", "arbusto": "arbust", "arca": "arca", "arcada": "arcad", "arcaica": "arcaic", "arcaicas": "arcaic", "arcaico": "arcaic", "arcar": "arcar", "arcebispo": "arcebisp", "arco": "arco", "ardente": "ardent", "arderá": "arder", "ardidas": "ardid", "ardidinha": "ardidinh", "ardil": "ardil", "ardilosa": "ardil", "ardor": "ardor", "ardorosas": "ardor", "árdua": "árdu", "árduo": "árdu", "área": "áre", "áreas": "áre", "areia": "are", "areias": "are", "arejado": "arej", "arena": "aren", "ares": "ares", "arestas": "arest", "argelich": "argelich", "argentária": "argentár", "argentina": "argentin", "argentinas": "argentin", "argentino": "argentin", "argentinos": "argentin", "argila": "argil", "argola": "argol", "argolas": "argol", "argonauta": "argonaut", "argumenta": "argument", "argumentação": "argument", "argumentações": "argument", "argumentando": "argument", "argumento": "argument", "argumentos": "argument", "argumentou": "argument", "ari": "ari", "ária": "ári", "ariano": "arian", "arias": "ari", "árias": "ári", "arida": "arid", "árida": "árid", "áridas": "árid", "ariel": "ariel", "aripuanã": "aripuanã", "ariranhas": "ariranh", "arisco": "arisc", "aristo": "arist", "aristocráticos": "aristocrát", "aristodemo": "aristodem", "aristóteles": "aristótel", "arkin": "arkin", "arlie": "arli", "arlindo": "arlind", "arliss": "arliss", "arma": "arma", "armação": "armaçã", "armada": "armad", "armadas": "armad", "armadilha": "armadilh", "armadilhas": "armadilh", "armado": "armad", "armador": "armador", "armadores": "armador", "armados": "armad", "armam": "armam", "armamentista": "armament", "armamento": "armament", "armamentos": "armament", "armando": "armand", "armani": "arman", "armar": "armar", "armário": "armári", "armários": "armári", "armas": "armas", "armavam": "armav", "armazém": "armazém", "armazenadas": "armazen", "armazenado": "armazen", "armazenagem": "armazenag", "armazenam": "armazen", "armazenamento": "armazen", "armazenamos": "armazen", "armazenar": "armazen", "armazéns": "armazéns", "armênio": "armêni", "armênios": "armêni", "armentano": "armentan", "armo": "armo", "armório": "armóri", "armstrong": "armstrong", "arnaldo": "arnald", "arno": "arno", "arnoldo": "arnold", "arnon": "arnon", "aro": "aro", "aroma": "arom", "aromas": "arom", "aromática": "aromát", "aronson": "aronson", "aros": "aros", "arósio": "arósi", "arqueologia": "arqueolog", "arqueológicos": "arqueológ", "arqueólogos": "arqueólog", "arquibancada": "arquibanc", "arquibancadas": "arquibanc", "arquidiocese": "arquidioces", "arquidioceses": "arquidioces", "arquiinimigos": "arquiinimig", "arquipélago": "arquipélag", "arquiteta": "arquitet", "arquitetada": "arquitet", "arquitetado": "arquitet", "arquiteto": "arquitet", "arquitetônica": "arquitetôn", "arquitetônicas": "arquitetôn", "arquitetônicos": "arquitetôn", "arquitetos": "arquitet", "arquitetura": "arquitetur", "arquivado": "arquiv", "arquivados": "arquiv", "arquivam": "arquiv", "arquivamento": "arquiv", "arquivo": "arquiv", "arquivos": "arquiv", "arrabal": "arrabal", "arraial": "arraial", "arrancada": "arranc", "arrancadas": "arranc", "arrancado": "arranc", "arrancados": "arranc", "arrancando": "arranc", "arrancar": "arranc", "arrancou": "arranc", "arranha": "arranh", "arranhada": "arranh", "arranhando": "arranh", "arranhão": "arranhã", "arranhar": "arranh", "arranja": "arranj", "arranjada": "arranj", "arranjador": "arranj", "arranjadores": "arranj", "arranjando": "arranj", "arranjar": "arranj", "arranjo": "arranj", "arranjos": "arranj", "arranque": "arranqu", "arrasa": "arras", "arrasada": "arras", "arrasado": "arras", "arrasando": "arras", "arrasar": "arras", "arrasaram": "arras", "arrasta": "arrast", "arrastá": "arrast", "arrastada": "arrast", "arrastado": "arrast", "arrastados": "arrast", "arrastam": "arrast", "arrastando": "arrast", "arrastão": "arrastã", "arrastaria": "arrast", "arrastões": "arrastõ", "arrastou": "arrast", "arrazoado": "arrazo", "arrebanhar": "arrebanh", "arrebanhou": "arrebanh", "arrebatadas": "arrebat", "arrebatadora": "arrebat", "arrebatadores": "arrebat", "arrebatava": "arrebat", "arrebatou": "arrebat", "arrebentando": "arrebent", "arrebentar": "arrebent", "arrebitam": "arrebit", "arrecada": "arrec", "arrecadação": "arrecad", "arrecadado": "arrecad", "arrecadadores": "arrecad", "arrecadados": "arrecad", "arrecadar": "arrecad", "arrecadaram": "arrecad", "arrecadavam": "arrecad", "arrecadávamos": "arrecad", "arrecadou": "arrecad", "arrecifes": "arrecif", "arredar": "arred", "arredias": "arred", "arredio": "arredi", "arredores": "arredor", "arregaçadas": "arregac", "arregaçar": "arregac", "arregimentar": "arregiment", "arremata": "arremat", "arrematado": "arremat", "arrematados": "arremat", "arrematar": "arremat", "arremate": "arremat", "arremates": "arremat", "arrematou": "arremat", "arremedo": "arremed", "arremessada": "arremess", "arremessar": "arremess", "arremessos": "arremess", "arrendadas": "arrend", "arrendados": "arrend", "arrepende": "arrepend", "arrependeu": "arrepend", "arrependi": "arrepend", "arrependidas": "arrepend", "arrependido": "arrepend", "arrependimento": "arrepend", "arrependo": "arrep", "arrepiados": "arrepi", "arrepiar": "arrepi", "arrepios": "arrepi", "arriadas": "arri", "arrisca": "arrisc", "arriscada": "arrisc", "arriscadas": "arrisc", "arriscado": "arrisc", "arriscam": "arrisc", "arriscando": "arrisc", "arriscar": "arrisc", "arriscaria": "arrisc", "arriscava": "arrisc", "arriscou": "arrisc", "arrisque": "arrisqu", "arrogância": "arrog", "arrogante": "arrog", "arrogantes": "arrog", "arrojada": "arroj", "arroladas": "arrol", "arromba": "arromb", "arrombamento": "arromb", "arrombaram": "arromb", "arroubos": "arroub", "arroz": "arroz", "arruaça": "arruac", "arruaceiros": "arruaceir", "arruda": "arrud", "arruinando": "arruin", "arruinar": "arruin", "arruma": "arrum", "arrumada": "arrum", "arrumados": "arrum", "arrumando": "arrum", "arrumar": "arrum", "arrumaria": "arrum", "arrumava": "arrum", "arrumo": "arrum", "arrumou": "arrum", "arsenal": "arsenal", "art": "art", "arte": "arte", "artefacto": "artefact", "artefato": "artefat", "artefatos": "artefat", "artéria": "artér", "arterial": "arterial", "artérias": "artér", "artes": "artes", "artesanal": "artesanal", "artesanalmente": "artesanal", "artesanato": "artesanat", "artesão": "artesã", "arthur": "arthur", "articulação": "articul", "articuladas": "articul", "articulador": "articul", "articuladores": "articul", "articulando": "articul", "articular": "articul", "articulares": "articul", "articulava": "articul", "articulista": "articul", "artificiais": "artific", "artificial": "artificial", "artificialmente": "artificial", "artifício": "artifíci", "artifícios": "artifíci", "artigo": "artig", "artigos": "artig", "artilheiro": "artilheir", "artista": "artist", "artistas": "artist", "artística": "artíst", "artisticamente": "artist", "artísticas": "artíst", "artístico": "artíst", "artrite": "artrit", "arts": "arts", "artur": "artur", "aruba": "arub", "arvin": "arvin", "arvorar": "arvor", "árvore": "árvor", "árvores": "árvor", "ary": "ary", "as": "as", "às": "às", "asa": "asa", "asas": "asas", "ascedente": "ascedent", "ascendência": "ascendent", "ascensão": "ascensã", "ascensorista": "ascensor", "asceta": "ascet", "ascética": "ascét", "ascetismo": "ascet", "ascher": "ascher", "asemoções": "asemoçõ", "asfaltadas": "asfalt", "asfalto": "asfalt", "ash": "ash", "ashg": "ashg", "ashkenazim": "ashkenazim", "asia": "asi", "ásia": "ási", "asiática": "asiát", "asiáticas": "asiát", "asiático": "asiát", "asiáticos": "asiát", "asma": "asma", "asmática": "asmát", "asombrosos": "asombr", "aspas": "aspas", "aspecto": "aspect", "aspectos": "aspect", "aspem": "aspem", "aspereza": "asper", "áspero": "ásper", "aspirantes": "aspir", "aspirar": "aspir", "aspirina": "aspirin", "aspirinas": "aspirin", "assalariado": "assalari", "assalta": "assalt", "assaltados": "assalt", "assaltante": "assalt", "assaltantes": "assalt", "assalto": "assalt", "assaltos": "assalt", "assaltou": "assalt", "assassinada": "assassin", "assassinado": "assassin", "assassinados": "assassin", "assassinam": "assassin", "assassinará": "assassin", "assassinas": "assassin", "assassinato": "assassinat", "assassinatos": "assassinat", "assassinavam": "assassin", "assassino": "assassin", "assassinos": "assassin", "assassinou": "assassin", "assediada": "assedi", "assediado": "assedi", "assediar": "assedi", "assédio": "assédi", "assegura": "assegur", "assegurada": "assegur", "assegurado": "assegur", "assegurar": "assegur", "asseguraram": "assegur", "asseguraria": "assegur", "assegurou": "assegur", "assembléia": "assembl", "assembleiano": "assembleian", "assembléias": "assembl", "assemelha": "assemelh", "assemelham": "assemelh", "assentadas": "assent", "assentado": "assent", "assentados": "assent", "assentamento": "assent", "assentamentos": "assent", "assentando": "assent", "assentar": "assent", "assentaram": "assent", "assento": "assent", "assentos": "assent", "assepsia": "asseps", "assertivo": "assert", "assessor": "assessor", "assessora": "assessor", "assessores": "assessor", "assessoria": "assessor", "assestaram": "assest", "assexuado": "assexu", "assídua": "assídu", "assíduo": "assídu", "assíduos": "assídu", "assim": "assim", "assimilação": "assimil", "assimilados": "assimil", "assimilar": "assimil", "assimiláveis": "assimil", "assina": "assin", "assinada": "assin", "assinado": "assin", "assinados": "assin", "assinala": "assinal", "assinalado": "assinal", "assinalar": "assinal", "assinam": "assin", "assinando": "assin", "assinantes": "assin", "assinar": "assin", "assinaram": "assin", "assinasse": "assin", "assinatura": "assinatur", "assinaturas": "assinatur", "assinava": "assin", "assine": "assin", "assinei": "assin", "assinou": "assin", "assintomático": "assintomát", "assíria": "assír", "assírios": "assíri", "assis": "assis", "assiste": "assist", "assistem": "assist", "assistência": "assistent", "assistenciais": "assistenc", "assistente": "assistent", "assistentes": "assistent", "assisti": "assist", "assistia": "assist", "assistida": "assist", "assistimos": "assist", "assistindo": "assist", "assistir": "assist", "assistirá": "assist", "assistiram": "assist", "assistiria": "assist", "assistiu": "assist", "assisto": "assist", "assoalho": "assoalh", "associá": "associ", "associação": "assoc", "associações": "assoc", "associada": "assoc", "associadas": "assoc", "associado": "assoc", "associados": "assoc", "associando": "assoc", "associar": "assoc", "association": "association", "associo": "associ", "associou": "assoc", "assolando": "assol", "assombra": "assombr", "assombrado": "assombr", "assombrar": "assombr", "assombro": "assombr", "assombrosa": "assombr", "assombroso": "assombr", "assoprou": "assopr", "assuero": "assuer", "assumam": "assum", "assume": "assum", "assumia": "assum", "assumida": "assum", "assumido": "assum", "assumimos": "assum", "assumindo": "assum", "assumir": "assum", "assumiram": "assum", "assumiria": "assum", "assumisse": "assum", "assumissem": "assum", "assumiu": "assum", "assumo": "assum", "assunção": "assunçã", "assunto": "assunt", "assuntos": "assunt", "assusta": "assust", "assustada": "assust", "assustadas": "assust", "assustado": "assust", "assustadora": "assust", "assustadoramente": "assustador", "assustadores": "assust", "assustados": "assust", "assustam": "assust", "assustar": "assust", "assustaram": "assust", "assustava": "assust", "assuste": "assust", "astolft": "astolft", "aston": "aston", "astral": "astral", "astro": "astro", "astrofísicos": "astrofís", "astróloga": "astrólog", "astrologia": "astrolog", "astrólogos": "astrólog", "astronauta": "astronaut", "astronautas": "astronaut", "astronáutica": "astronáut", "astronomia": "astronom", "astronômica": "astronôm", "astronômicos": "astronôm", "astrônomo": "astrônom", "astrônomos": "astrônom", "astros": "astros", "astuto": "astut", "at": "at", "ata": "ata", "atabaques": "atabaqu", "ataca": "atac", "atacado": "atac", "atacados": "atac", "atacam": "atac", "atacando": "atac", "atacante": "atac", "atacar": "atac", "atacaram": "atac", "atacou": "atac", "atadas": "atad", "atalho": "atalh", "ataque": "ataqu", "ataques": "ataqu", "atarefado": "ataref", "atarracada": "atarrac", "atarracado": "atarrac", "atas": "atas", "ataturk": "ataturk", "até": "até", "ateado": "ate", "atear": "ate", "ateliê": "ateli", "atenas": "aten", "atenção": "atençã", "atenções": "atençõ", "atende": "atend", "atendem": "atend", "atendendo": "atend", "atender": "atend", "atenderam": "atend", "atendeu": "atend", "atendi": "atend", "atendia": "atend", "atendida": "atend", "atendidas": "atend", "atendido": "atend", "atendidos": "atend", "atendimento": "atend", "atendimentos": "atend", "atenta": "atent", "atentado": "atent", "atentados": "atent", "atentamente": "atent", "atentaram": "atent", "atentas": "atent", "atente": "atent", "atento": "atent", "atentos": "atent", "atenua": "atenu", "atenuado": "atenu", "atenuados": "atenu", "atenuantes": "atenu", "aterrisar": "aterris", "aterrissado": "aterriss", "aterrissagens": "aterrissagens", "aterrissar": "aterriss", "aterrorizá": "aterroriz", "aterrorizar": "aterroriz", "atesta": "atest", "atestada": "atest", "atestado": "atest", "atestar": "atest", "atibaia": "atiba", "ática": "átic", "átila": "átil", "atilio": "atili", "atílio": "atíli", "atinge": "ating", "atingi": "ating", "atingia": "ating", "atingida": "ating", "atingidas": "ating", "atingido": "ating", "atingidos": "ating", "atingir": "ating", "atingiram": "ating", "atingisse": "ating", "atingissem": "ating", "atingiu": "ating", "atípica": "atíp", "atípico": "atíp", "atira": "atir", "atirado": "atir", "atirador": "atir", "atirados": "atir", "atirando": "atir", "atirar": "atir", "atirasse": "atir", "atire": "atir", "atirei": "atir", "atirou": "atir", "atitude": "atitud", "atitudes": "atitud", "ativa": "ativ", "ativada": "ativ", "ativadas": "ativ", "ativamente": "ativ", "ativar": "ativ", "ativas": "ativ", "atividade": "ativ", "atividades": "ativ", "ativista": "ativ", "ativo": "ativ", "ativos": "ativ", "atlanta": "atlant", "atlântico": "atlânt", "atleta": "atlet", "atletas": "atlet", "atlética": "atlét", "atlético": "atlét", "atmosfera": "atmosf", "atmosférica": "atmosfér", "ato": "ato", "atol": "atol", "atolada": "atol", "atolado": "atol", "atoleiro": "atoleir", "atoll": "atoll", "atômica": "atôm", "atômicas": "atôm", "atômico": "atôm", "atônito": "atônit", "atônitos": "atônit", "ator": "ator", "atores": "ator", "atormenta": "atorment", "atormentada": "atorment", "atormentado": "atorment", "atormentam": "atorment", "atormentar": "atorment", "atormentou": "atorment", "atos": "atos", "atp": "atp", "atraca": "atrac", "atracadas": "atrac", "atracados": "atrac", "atração": "atraçã", "atrações": "atraçõ", "atraem": "atra", "atraente": "atraent", "atraentes": "atraent", "atrai": "atra", "atraída": "atraíd", "atraídas": "atraíd", "atraído": "atraíd", "atraídos": "atraíd", "atraindo": "atra", "atrair": "atra", "atrairá": "atra", "atraíram": "atraír", "atrairia": "atra", "atraísse": "atraíss", "atraiu": "atra", "atrapalha": "atrapalh", "atrapalhado": "atrapalh", "atrapalhando": "atrapalh", "atrapalhar": "atrapalh", "atrapalharem": "atrapalh", "atrapalhasse": "atrapalh", "atrapalhem": "atrapalh", "atrás": "atrás", "atrasada": "atras", "atrasadas": "atras", "atrasado": "atras", "atrasados": "atras", "atrasar": "atras", "atrasaria": "atras", "atrasariam": "atras", "atraso": "atras", "atrasos": "atras", "atrativo": "atrat", "atrativos": "atrat", "atravancado": "atravanc", "através": "através", "atravessa": "atravess", "atravessado": "atravess", "atravessar": "atravess", "atravessaram": "atravess", "atravessaria": "atravess", "atravessava": "atravess", "atravessavam": "atravess", "atravessei": "atravess", "atravessou": "atravess", "atrelada": "atrel", "atrelado": "atrel", "atrelados": "atrel", "atrelando": "atrel", "atrelaram": "atrel", "atreveu": "atrev", "atribuem": "atribu", "atribui": "atribu", "atribuição": "atribuiçã", "atribuições": "atribuiçõ", "atribuída": "atribuíd", "atribuído": "atribuíd", "atribuídos": "atribuíd", "atribuir": "atribu", "atribuíram": "atribuír", "atribuiu": "atribu", "atribulada": "atribul", "atributo": "atribut", "atributos": "atribut", "atrito": "atrit", "atritos": "atrit", "atriz": "atriz", "atrizes": "atriz", "atrocidade": "atroc", "atrocidades": "atroc", "atrofiadas": "atrofi", "atrofiar": "atrofi", "atropelado": "atropel", "atropelamentos": "atropel", "atropelou": "atropel", "atroz": "atroz", "atrriz": "atrriz", "atua": "atu", "atuação": "atuaçã", "atuações": "atuaçõ", "atuais": "atu", "atual": "atual", "atualidade": "atual", "atualização": "atualiz", "atualizando": "atualiz", "atualizar": "atualiz", "atualizei": "atualiz", "atualizo": "atualiz", "atualmente": "atual", "atuam": "atu", "atuando": "atu", "atuante": "atuant", "atuantes": "atuant", "atuar": "atu", "atuava": "atu", "atuavam": "atu", "atum": "atum", "atuou": "atu", "aturá": "atur", "aturdido": "aturd", "audaciosa": "audac", "audacioso": "audac", "audaciosos": "audac", "auden": "auden", "audi": "aud", "audição": "audiçã", "audiência": "audiênc", "audiências": "audiênc", "audio": "audi", "audiovisuais": "audiovisu", "auditiva": "audit", "auditivo": "audit", "auditor": "auditor", "auditores": "auditor", "auditoria": "auditor", "auditorias": "auditor", "auditório": "auditóri", "auditórios": "auditóri", "auditpharma": "auditpharm", "auge": "aug", "augusta": "august", "augusti": "august", "augusto": "august", "aula": "aul", "aulas": "aul", "aumenta": "aument", "aumentada": "aument", "aumentado": "aument", "aumentados": "aument", "aumentam": "aument", "aumentando": "aument", "aumentar": "aument", "aumentará": "aument", "aumentaram": "aument", "aumentarem": "aument", "aumentaria": "aument", "aumentasse": "aument", "aumentava": "aument", "aumente": "aument", "aumentem": "aument", "aumento": "aument", "aumentos": "aument", "aumentou": "aument", "aura": "aur", "áurea": "áur", "aureliano": "aurelian", "aurélio": "auréli", "áureos": "áur", "aurora": "auror", "auschwitz": "auschwitz", "ausência": "ausênc", "ausências": "ausênc", "ausente": "ausent", "austeridade": "auster", "austero": "auster", "austin": "austin", "austolft": "austolft", "austrália": "austrál", "australian": "australian", "australiana": "australian", "australiano": "australian", "áustria": "áustr", "austríaco": "austríac", "austríacos": "austríac", "autarquia": "autarqu", "autárquica": "autárqu", "autêntica": "autênt", "autênticas": "autênt", "autenticidade": "autent", "autêntico": "autênt", "autismo": "autism", "auto": "aut", "autobahns": "autobahns", "autobiografia": "autobiograf", "autobiográfico": "autobiográf", "autocandidato": "autocandidat", "autoconhecimento": "autoconhec", "autocrítica": "autocrít", "autóctone": "autócton", "autóctones": "autócton", "autodidata": "autodidat", "autódromo": "autódrom", "autogozação": "autogoz", "autógrafo": "autógraf", "autógrafos": "autógraf", "automação": "autom", "automática": "automát", "automaticamente": "automat", "automáticas": "automát", "automático": "automát", "automatizar": "automatiz", "automedicação": "automedic", "automedicar": "automedic", "automobilismo": "automobil", "automobilística": "automobilíst", "automobilísticos": "automobilíst", "automodelismo": "automodel", "automotiva": "automot", "automotivo": "automot", "automóveis": "automóv", "automóvel": "automóvel", "autônoma": "autônom", "autonomia": "autonom", "autônomo": "autônom", "autopeças": "autopec", "autoproteção": "autoproteçã", "autópsia": "autóps", "autópsias": "autóps", "autopsy": "autopsy", "autor": "autor", "autora": "autor", "autorais": "autor", "autoral": "autoral", "autores": "autor", "autoria": "autor", "autoridade": "autor", "autoridades": "autor", "autoritária": "autoritár", "autoritários": "autoritári", "autorizá": "autoriz", "autorização": "autoriz", "autorizações": "autoriz", "autorizada": "autoriz", "autorizadas": "autoriz", "autorizado": "autoriz", "autorizados": "autoriz", "autorizando": "autoriz", "autorizar": "autoriz", "autorizou": "autoriz", "autos": "aut", "autran": "autran", "autuados": "autu", "autuar": "autu", "auxiliado": "auxili", "auxiliar": "auxili", "auxílio": "auxíli", "auxiliou": "auxili", "av": "av", "avabens": "avabens", "avaí": "ava", "aval": "aval", "avalanche": "avalanch", "avalia": "aval", "avaliação": "avali", "avaliações": "avali", "avaliada": "avali", "avaliadas": "avali", "avaliado": "avali", "avaliadores": "avali", "avaliados": "avali", "avaliam": "aval", "avaliando": "avali", "avaliar": "avali", "avaliarem": "avali", "avaliou": "avali", "avalista": "aval", "avalizou": "avaliz", "avallone": "avallon", "avança": "avanc", "avançada": "avanc", "avançadas": "avanc", "avançado": "avanc", "avançados": "avanc", "avançam": "avanc", "avançando": "avanc", "avançar": "avanc", "avançaram": "avanc", "avançavam": "avanc", "avance": "avanc", "avancini": "avancin", "avanço": "avanc", "avanços": "avanc", "avançou": "avanc", "avantajado": "avantaj", "avante": "avant", "avaré": "avar", "avariado": "avari", "avariou": "avari", "avassaladora": "avassal", "ave": "ave", "avedon": "avedon", "avelino": "avelin", "avenida": "aven", "avenidas": "aven", "avenidona": "avenidon", "aventura": "aventur", "aventuram": "aventur", "aventuras": "aventur", "aventureiro": "aventureir", "aventureiros": "aventureir", "aventuresca": "aventuresc", "aventurou": "aventur", "avenue": "avenu", "averiguadas": "averigu", "avermelhada": "avermelh", "avermelhadas": "avermelh", "aversão": "aversã", "aves": "aves", "avessas": "avess", "avesso": "avess", "avestruz": "avestruz", "avestruzes": "avestruz", "avestuz": "avestuz", "avi": "avi", "aviação": "aviaçã", "aviador": "aviador", "avião": "aviã", "aviãozinho": "aviãozinh", "aviation": "aviation", "ávida": "ávid", "avidamente": "avid", "ávidas": "ávid", "avidez": "avidez", "ávido": "ávid", "ávila": "ávil", "avinagrar": "avinagr", "aviões": "aviõ", "avisa": "avis", "avisá": "avis", "avisado": "avis", "avisados": "avis", "avisamos": "avis", "avisando": "avis", "avisar": "avis", "avisasse": "avis", "avisei": "avis", "aviso": "avis", "avisou": "avis", "avista": "avist", "avistados": "avist", "avistara": "avist", "avistaram": "avist", "avistou": "avist", "aviv": "aviv", "avó": "avó", "avô": "avô", "avon": "avon", "avós": "avós", "avulsas": "avuls", "award": "award", "awards": "awards", "axé": "axé", "axila": "axil", "axilas": "axil", "ayres": "ayres", "ayrton": "ayrton", "azar": "azar", "azarados": "azar", "azarão": "azarã", "azarar": "azar", "azedam": "azed", "azedo": "azed", "azeitada": "azeit", "azeitado": "azeit", "azeitona": "azeiton", "azeredo": "azered", "azevedo": "azeved", "azia": "azi", "azt": "azt", "azuis": "azu", "azul": "azul", "azulados": "azul", "azulejos": "azulej", "b": "b", "ba": "ba", "bá": "bá", "baba": "bab", "babá": "bab", "babaçu": "babaçu", "babados": "bab", "babalaô": "babalaô", "babalorixá": "babalorix", "babaquice": "babaquic", "babás": "babás", "babel": "babel", "baby": "baby", "bacalhau": "bacalhau", "bacana": "bacan", "bach": "bach", "bacha": "bach", "bacharel": "bacharel", "bacia": "bac", "bacias": "bac", "bacilógena": "bacilógen", "back": "back", "backar": "back", "bactérias": "bactér", "bad": "bad", "bada": "bad", "badalação": "badal", "badalações": "badal", "badalada": "badal", "badaladas": "badal", "badalado": "badal", "badalados": "badal", "badan": "badan", "baden": "baden", "baderna": "badern", "baderneiros": "baderneir", "badulaques": "badulaqu", "bafo": "baf", "baforada": "bafor", "baforadas": "bafor", "bag": "bag", "bagageiro": "bagageir", "bagageiros": "bagageir", "bagagem": "bagag", "bagagens": "bagagens", "bagatela": "bagatel", "bagrezinho": "bagrezinh", "bagunça": "bagunc", "bagunçar": "bagunc", "bahamas": "baham", "bahia": "bah", "baht": "baht", "bahts": "bahts", "baía": "baí", "baiana": "baian", "baianinho": "baianinh", "baiano": "baian", "baianos": "baian", "baigal": "baigal", "baikal": "baikal", "baikonur": "baikonur", "bailarina": "bailarin", "bailarino": "bailarin", "bailarinos": "bailarin", "baile": "bail", "bailes": "bail", "bailo": "bail", "bairro": "bairr", "bairros": "bairr", "baisch": "baisch", "baita": "bait", "baixa": "baix", "baixada": "baix", "baixar": "baix", "baixaria": "baix", "baixarias": "baix", "baixas": "baix", "baixe": "baix", "baixelas": "baixel", "baixinha": "baixinh", "baixinhas": "baixinh", "baixinho": "baixinh", "baixinhos": "baixinh", "baixo": "baix", "baixos": "baix", "baixou": "baix", "bala": "bal", "balabanian": "balabanian", "balada": "bal", "balança": "balanc", "balançado": "balanc", "balançando": "balanc", "balanço": "balanc", "balanços": "balanc", "balão": "balã", "balas": "bal", "balbuciam": "balbuc", "balbuciar": "balbuc", "balbuciou": "balbuc", "balbúrdia": "balbúrd", "balcão": "balcã", "balconista": "balcon", "balconistas": "balcon", "baldaracci": "baldaracc", "balde": "bald", "baldes": "bald", "baldio": "baldi", "balé": "bal", "baleado": "bal", "balear": "bal", "baleia": "bal", "baleias": "bal", "baleiro": "baleir", "bali": "bal", "balido": "bal", "balizamento": "baliz", "balizar": "baliz", "balneário": "balneári", "balneários": "balneári", "balões": "balõ", "balsa": "bals", "bálsamos": "báls", "baltimore": "baltimor", "baluarte": "baluart", "bamba": "bamb", "bambas": "bamb", "bambi": "bamb", "bamerindus": "bamerindus", "ban": "ban", "banais": "ban", "banal": "banal", "banalização": "banaliz", "banalizar": "banaliz", "banana": "banan", "bananas": "banan", "bananeiras": "bananeir", "banca": "banc", "bancada": "banc", "bancadas": "banc", "bancados": "banc", "bancaire": "bancair", "bancar": "banc", "bancária": "bancár", "bancárias": "bancár", "bancário": "bancári", "bancários": "bancári", "bancas": "banc", "banco": "banc", "bancos": "banc", "bancou": "banc", "band": "band", "banda": "band", "bandana": "bandan", "bandas": "band", "bandeia": "band", "bandeira": "bandeir", "bandeirantes": "bandeir", "bandeiras": "bandeir", "bandeirinha": "bandeirinh", "bandeja": "bandej", "bandeou": "band", "bandido": "band", "bandidos": "band", "bando": "band", "bandos": "band", "banerj": "banerj", "banespa": "banesp", "bang": "bang", "bangalôs": "bangalôs", "bangcoc": "bangcoc", "bangoc": "bangoc", "bangu": "bangu", "bangue": "bang", "bangues": "bangu", "banha": "banh", "banhas": "banh", "banheira": "banheir", "banheiro": "banheir", "banheiros": "banheir", "banho": "banh", "banhos": "banh", "banido": "ban", "banir": "ban", "banis": "ban", "baniu": "ban", "bank": "bank", "banking": "banking", "banks": "banks", "banque": "banqu", "banqueiro": "banqueir", "banqueiros": "banqueir", "banqueteira": "banqueteir", "bantim": "bantim", "banzeco": "banzec", "banzer": "banz", "baptista": "baptist", "baque": "baqu", "bar": "bar", "baralho": "baralh", "barão": "barã", "barassal": "barassal", "barata": "barat", "baratas": "barat", "barateará": "barat", "barateia": "barat", "baratíssimos": "baratíss", "barato": "barat", "baratos": "barat", "barba": "barb", "barbacena": "barbacen", "barbalho": "barbalh", "barbara": "barb", "barbaridades": "barbar", "barbárie": "barbári", "barbarismo": "barbar", "barbariza": "barbariz", "bárbaro": "bárbar", "bárbaros": "bárbar", "barbas": "barb", "barbeado": "barb", "barbear": "barb", "barbearias": "barb", "barbeiragem": "barbeirag", "barbeiro": "barbeir", "barbeiros": "barbeir", "barbie": "barbi", "barbitúricos": "barbitúr", "barbosa": "barbos", "barbudos": "barbud", "barcaças": "barcac", "barcelos": "barcel", "barco": "barc", "barcos": "barc", "bardo": "bard", "bares": "bar", "barganha": "barganh", "barganhar": "barganh", "bariloche": "bariloch", "barítono": "baríton", "barkopolos": "barkopol", "barman": "barman", "barn": "barn", "barnes": "barn", "barões": "barõ", "baron": "baron", "baroni": "baron", "barra": "barr", "barraca": "barrac", "barracas": "barrac", "barraco": "barrac", "barracões": "barracõ", "barracos": "barrac", "barrado": "barr", "barrados": "barr", "barragens": "barragens", "barram": "barr", "barranco": "barranc", "barrancos": "barranc", "barrando": "barr", "barrar": "barr", "barras": "barr", "barraviera": "barravi", "barre": "barr", "barreira": "barreir", "barreiras": "barreir", "barrentas": "barrent", "barreto": "barret", "barriga": "barrig", "barrigudo": "barrigud", "barril": "barril", "barris": "barr", "barro": "barr", "barros": "barr", "barroso": "barros", "bartolomeu": "bartolom", "barulhento": "barulhent", "barulhentos": "barulhent", "barulho": "barulh", "barulhos": "barulh", "barzinho": "barzinh", "barzinhos": "barzinh", "basbaum": "basbaum", "base": "bas", "baseada": "bas", "baseadas": "bas", "baseado": "bas", "baseia": "bas", "baseiam": "bas", "baseou": "bas", "bases": "bas", "básica": "básic", "basicamente": "basic", "básicas": "básic", "básico": "básic", "básicos": "básic", "basílica": "basíl", "basquete": "basquet", "basso": "bass", "bassoleil": "bassoleil", "basta": "bast", "bastante": "bastant", "bastaria": "bast", "bastasse": "bast", "bastassem": "bast", "bastava": "bast", "bastidores": "bastidor", "bastos": "bast", "bastou": "bast", "batalha": "batalh", "batalham": "batalh", "batalhão": "batalhã", "batalhar": "batalh", "batalhas": "batalh", "batalhões": "batalhõ", "batalhou": "batalh", "batata": "batat", "batatas": "batat", "bate": "bat", "batedores": "batedor", "batelada": "batel", "batem": "bat", "batendo": "bat", "batente": "batent", "bater": "bat", "baterá": "bat", "bateria": "bat", "baterias": "bat", "baterista": "bater", "batesse": "bat", "bateu": "bat", "bati": "bat", "batia": "bat", "batiam": "bat", "batida": "bat", "batido": "bat", "batidos": "bat", "batimento": "batiment", "batismo": "batism", "batismos": "batism", "batista": "batist", "batistas": "batist", "batiza": "batiz", "batizada": "batiz", "batizadas": "batiz", "batizado": "batiz", "batizados": "batiz", "batizou": "batiz", "batom": "batom", "batons": "batons", "battistella": "battistell", "batucada": "batuc", "batucar": "batuc", "batuta": "batut", "baumgarten": "baumgarten", "baunilha": "baunilh", "bauzys": "bauzys", "bavária": "bavár", "bazaar": "baza", "bazar": "baz", "bb": "bb", "bba": "bba", "bbc": "bbc", "bc": "bc", "bchara": "bchar", "bcn": "bcn", "bcr": "bcr", "be": "be", "bê": "bê", "bea": "bea", "beak": "beak", "beat": "beat", "beatificação": "beatific", "beatificados": "beatific", "beatlemaníaco": "beatlemaníac", "beatles": "beatl", "beato": "beat", "beatos": "beat", "beatriz": "beatriz", "beautiful": "beautiful", "beauvoir": "beauvo", "beaux": "beaux", "bêbada": "bêb", "bêbado": "bêb", "bêbados": "bêb", "bebam": "beb", "bebe": "beb", "bebê": "beb", "bebedeira": "bebedeir", "bebedeiras": "bebedeir", "bebedouro": "bebedour", "bebem": "beb", "bebendo": "beb", "beber": "beb", "bebericar": "beberic", "bebes": "beb", "bebês": "bebês", "bebesse": "beb", "bebete": "bebet", "bebeto": "bebet", "bebia": "beb", "bebiam": "beb", "bebida": "beb", "bebidas": "beb", "bec": "bec", "beca": "bec", "becker": "beck", "beco": "bec", "becomes": "becom", "becos": "bec", "bege": "beg", "beihai": "beiha", "beija": "beij", "beijá": "beij", "beijado": "beij", "beijando": "beij", "beijar": "beij", "beijaram": "beij", "beijinhos": "beijinh", "beijo": "beij", "beijos": "beij", "beijou": "beij", "beira": "beir", "beiram": "beir", "beirute": "beirut", "beisebol": "beisebol", "beisiegel": "beisiegel", "beitszaerhu": "beitszaerhu", "bekaa": "beka", "bekierman": "bekierman", "bel": "bel", "bela": "bel", "belas": "bel", "belchior": "belchior", "beldades": "beldad", "beleléu": "beleléu", "belém": "belém", "beleza": "belez", "belezas": "belez", "belga": "belg", "bélgica": "bélgic", "belgo": "belg", "beliches": "belich", "belicosa": "belic", "belicoso": "belic", "beliscam": "belisc", "beliscamos": "belisc", "beliscando": "belisc", "beliscão": "beliscã", "beliscar": "belisc", "beliscões": "beliscõ", "belíssimo": "belíssim", "bell": "bell", "bellini": "bellin", "bellsouth": "bellsouth", "belmondo": "belmond", "belo": "bel", "belos": "bel", "beltrame": "beltram", "beltran": "beltran", "beltrão": "beltrã", "bem": "bem", "ben": "ben", "benatti": "benatt", "bênção": "bênçã", "benedita": "benedit", "benedito": "benedit", "beneducci": "beneducc", "benéfica": "benéf", "beneficência": "beneficent", "beneficente": "beneficent", "beneficentes": "beneficent", "beneficia": "benefic", "beneficiada": "benefic", "beneficiado": "benefic", "beneficiados": "benefic", "beneficiamento": "benefic", "beneficiando": "benefic", "beneficiar": "benefic", "beneficiaram": "benefic", "beneficiários": "beneficiári", "beneficiava": "benefic", "beneficiavam": "benefic", "benefício": "benefíci", "benefícios": "benefíci", "beneficiou": "benefic", "benéfico": "benéf", "benesses": "ben", "benevolência": "benevolent", "benfeitor": "benfeitor", "benfeitores": "benfeitor", "benigna": "benign", "benigno": "benign", "benignos": "benign", "benin": "benin", "benitez": "benitez", "benito": "benit", "benja": "benj", "benjamim": "benjamim", "benjamin": "benjamin", "bens": "bens", "bento": "bent", "benz": "benz", "benzedeira": "benzedeir", "benzedeiras": "benzedeir", "benzedura": "benzedur", "benzer": "benz", "benzidos": "benz", "beraldo": "berald", "berço": "berc", "beredo": "bered", "berenice": "berenic", "bergamin": "bergamin", "bergen": "bergen", "bergkamp": "bergkamp", "bergman": "bergman", "béria": "bér", "berimbau": "berimbau", "berimbaus": "berimbaus", "berkeley": "berkeley", "berlim": "berlim", "berlinda": "berlind", "bermuda": "bermud", "bermudão": "bermudã", "bermudas": "bermud", "bernard": "bernard", "bernarda": "bernard", "bernardes": "bern", "bernardino": "bernardin", "bernardo": "bernard", "beron": "beron", "berra": "berr", "berrante": "berrant", "berrio": "berri", "berro": "berr", "bert": "bert", "bertoli": "bertol", "bertolozzi": "bertolozz", "bertrand": "bertrand", "besc": "besc", "bessa": "bess", "besserman": "besserman", "bessie": "bessi", "best": "best", "besta": "best", "besteira": "besteir", "beta": "bet", "betaendorfinas": "betaendorfin", "betancourt": "betancourt", "betânia": "betân", "bete": "bet", "beterraba": "beterrab", "beth": "beth", "bethânia": "bethân", "bethesda": "bethesd", "betim": "betim", "betinho": "betinh", "beto": "bet", "betti": "bett", "betto": "bett", "betty": "betty", "bétulas": "bétul", "betzig": "betzig", "bexiga": "bexig", "bezerra": "bezerr", "bezerros": "bezerr", "bh": "bh", "bhopal": "bhopal", "bhumibol": "bhumibol", "bia": "bia", "bial": "bial", "biancarelli": "biancarell", "bianchi": "bianch", "bianco": "bianc", "biba": "bib", "bibelôs": "bibelôs", "bibi": "bib", "bible": "bibl", "bíblia": "bíbl", "bíblias": "bíbl", "bíblica": "bíblic", "bíblicas": "bíblic", "bíblico": "bíblic", "bíblicos": "bíblic", "bibliófila": "bibliófil", "biblioteca": "bibliotec", "bibliotecas": "bibliotec", "bicampeão": "bicampeã", "bicha": "bich", "bicheiro": "bicheir", "bicheiros": "bicheir", "bichinhos": "bichinh", "bicho": "bich", "bichões": "bichõ", "bichos": "bich", "bichou": "bich", "bicicleta": "biciclet", "bicicletas": "biciclet", "bico": "bic", "bicos": "bic", "bicudo": "bicud", "bidê": "bid", "bié": "bié", "bienal": "bienal", "bier": "bier", "bife": "bif", "big": "big", "bigodão": "bigodã", "bigode": "bigod", "bigodudos": "bigodud", "bijuterias": "bijut", "bikini": "bikin", "bikinianos": "bikinian", "bilhão": "bilhã", "bilhete": "bilhet", "bilheteria": "bilhet", "bilhetes": "bilhet", "bilhões": "bilhõ", "bilíngue": "bilíng", "bilíngues": "bilíngu", "bilionárias": "bilionár", "bilionário": "bilionári", "bilionários": "bilionári", "bill": "bill", "billings": "billings", "billo": "bill", "billy": "billy", "bilro": "bilr", "bimestre": "bimestr", "bimotores": "bimotor", "bind": "bind", "bingo": "bing", "binoche": "binoch", "bio": "bio", "biodiversidade": "biodivers", "biografia": "biograf", "biográfico": "biográf", "biógrafos": "biógraf", "bióloga": "biólog", "biologia": "biolog", "biológica": "biológ", "biológicas": "biológ", "biológico": "biológ", "biológicos": "biológ", "biólogo": "biólog", "biólogos": "biólog", "biomédica": "bioméd", "biomédico": "bioméd", "biópsia": "bióps", "bioquímica": "bioquím", "bioquímicos": "bioquím", "biotecnologia": "biotecnolog", "biotipo": "biotip", "bip": "bip", "bípede": "bíped", "bips": "bips", "biquíni": "biquín", "biquínis": "biquín", "birulio": "biruli", "bis": "bis", "bisavô": "bisavô", "bisavós": "bisavós", "bisbilhotar": "bisbilhot", "biscoito": "biscoit", "biscoitos": "biscoit", "bismarck": "bismarck", "bispa": "bisp", "bispo": "bisp", "bispos": "bisp", "bissexto": "bissext", "bissexuais": "bissexu", "bistrô": "bistrô", "bistrôs": "bistrôs", "bisturi": "bistur", "bita": "bit", "bits": "bits", "bixiga": "bixig", "bizantina": "bizantin", "bizantino": "bizantin", "bizantinos": "bizantin", "bizarra": "bizarr", "bizarras": "bizarr", "bizarrices": "bizarric", "bizz": "bizz", "bjorn": "bjorn", "black": "black", "blague": "blag", "blair": "bla", "blairo": "blair", "blanc": "blanc", "blanchard": "blanchard", "blanco": "blanc", "blanqui": "blanqu", "blazer": "blaz", "blazers": "blazers", "blecaute": "blecaut", "blecautes": "blecaut", "blecher": "blech", "blefe": "blef", "blend": "blend", "blends": "blends", "blindado": "blind", "blindados": "blind", "blitz": "blitz", "bloch": "bloch", "blocker": "block", "bloco": "bloc", "blocos": "bloc", "bloqueadoras": "bloqueador", "bloqueadores": "bloqueador", "bloquear": "bloqu", "bloqueia": "bloqu", "bloqueiam": "bloqu", "bloqueio": "bloquei", "bloquinho": "bloquinh", "bloris": "blor", "blue": "blu", "blues": "blu", "blumenau": "blumenau", "blusa": "blus", "blush": "blush", "blushes": "blush", "blusinhas": "blusinh", "bmc": "bmc", "bmg": "bmg", "bmi": "bmi", "bmw": "bmw", "bndes": "bndes", "boa": "boa", "boainain": "boainain", "boas": "boas", "bôas": "bôas", "boassu": "boassu", "boataria": "boat", "boate": "boat", "boates": "boat", "boatos": "boat", "bob": "bob", "boba": "bob", "bobagem": "bobag", "bobagens": "bobagens", "bobalhões": "bobalhõ", "bobear": "bob", "bobeira": "bobeir", "bobinho": "bobinh", "bobinhos": "bobinh", "bobo": "bob", "bobs": "bobs", "boca": "boc", "bocadas": "boc", "bocadinho": "bocadinh", "bocado": "boc", "bocaiúva": "bocaiúv", "boçal": "boçal", "bocarra": "bocarr", "bocas": "boc", "bode": "bod", "bodoque": "bodoqu", "body": "body", "boeing": "boeing", "boem": "boem", "boemia": "boem", "boêmio": "boêmi", "boêmios": "boêmi", "bogotá": "bogot", "boi": "boi", "bóia": "bói", "boiando": "boi", "boicotar": "boicot", "boicote": "boicot", "boieng": "boieng", "bois": "bois", "bola": "bol", "bolachas": "bolach", "bolada": "bol", "bolão": "bolã", "bolar": "bol", "bolaram": "bol", "bolas": "bol", "bolero": "boler", "boletim": "boletim", "bolha": "bolh", "bolhas": "bolh", "bolinha": "bolinh", "bolinhas": "bolinh", "bolinhos": "bolinh", "bolívia": "bolív", "boliviana": "bolivian", "boliviano": "bolivian", "bolivianos": "bolivian", "bolkan": "bolkan", "bolo": "bol", "bolonha": "bolonh", "bolsa": "bols", "bolsas": "bols", "bolso": "bols", "bolsos": "bols", "bom": "bom", "bomb": "bomb", "bomba": "bomb", "bombardeada": "bombard", "bombardeado": "bombard", "bombardear": "bombard", "bombardeia": "bombard", "bombardeio": "bombardei", "bombardeiro": "bombardeir", "bombardeiros": "bombardeir", "bombardeou": "bombard", "bombardier": "bombardi", "bombas": "bomb", "bombástica": "bombást", "bombásticas": "bombást", "bombástico": "bombást", "bombeado": "bomb", "bombear": "bomb", "bombeiro": "bombeir", "bombeiros": "bombeir", "bombinha": "bombinh", "bombinhas": "bombinh", "bombons": "bombons", "bompreço": "bomprec", "bonadone": "bonadon", "bonano": "bonan", "bonde": "bond", "bonder": "bond", "bondes": "bond", "bonds": "bonds", "boné": "bon", "boneca": "bonec", "bonecas": "bonec", "boneco": "bonec", "bonecos": "bonec", "bonequinhas": "bonequinh", "bonés": "bonés", "bonfim": "bonfim", "boni": "bon", "bonifácio": "bonifáci", "boninho": "boninh", "bonita": "bonit", "bonitão": "bonitã", "bonitas": "bonit", "bonitinha": "bonitinh", "bonitinho": "bonitinh", "bonito": "bonit", "bonitões": "bonitõ", "bonitos": "bonit", "bonn": "bonn", "bonomi": "bonom", "bons": "bons", "bonzinho": "bonzinh", "book": "book", "books": "books", "boom": "boom", "booz": "booz", "bora": "bor", "borba": "borb", "borboleta": "borbolet", "borda": "bord", "bordado": "bord", "bordão": "bordã", "bordas": "bord", "bordeaux": "bordeaux", "bordo": "bord", "bordões": "bordõ", "borg": "borg", "borges": "borg", "borghese": "borghes", "boris": "bor", "borja": "borj", "borjalo": "borjal", "bornéu": "bornéu", "bornhausen": "bornhausen", "borra": "borr", "borracha": "borrach", "borrada": "borr", "borrados": "borr", "borrifada": "borrif", "borsoi": "borso", "bosc": "bosc", "bosco": "bosc", "boseggia": "bosegg", "bósforo": "bósfor", "bósnia": "bósn", "bosques": "bosqu", "bossa": "boss", "boston": "boston", "bota": "bot", "botafogo": "botafog", "botando": "bot", "botânico": "botân", "botão": "botã", "botar": "bot", "botas": "bot", "bote": "bot", "boteco": "botec", "botecos": "botec", "botei": "bot", "botelho": "botelh", "botequim": "botequim", "botero": "boter", "boticelli": "boticell", "botijão": "botijã", "botinha": "botinh", "boto": "bot", "botões": "botõ", "botou": "bot", "botteghin": "botteghin", "botton": "botton", "botucatu": "botucatu", "boucinhas": "boucinh", "boulevard": "boulevard", "bouquet": "bouquet", "bourget": "bourget", "bouterse": "bouters", "bovary": "bovary", "bovespa": "bovesp", "bovina": "bovin", "bovino": "bovin", "bowie": "bowi", "bowl": "bowl", "box": "box", "boxe": "box", "boxeador": "boxeador", "boxes": "box", "boy": "boy", "bozano": "bozan", "bozzano": "bozzan", "bps": "bps", "br": "br", "braçal": "braçal", "braço": "brac", "braços": "brac", "bradesco": "bradesc", "bradicinina": "bradicinin", "bradley": "bradley", "bradou": "brad", "braga": "brag", "bragança": "braganc", "braganças": "braganc", "brahma": "brahm", "branca": "branc", "brancaleone": "brancaleon", "brancas": "branc", "branco": "branc", "brancos": "branc", "branda": "brand", "brandão": "brandã", "brandindo": "brand", "brando": "brand", "brandt": "brandt", "branqueamento": "branqueament", "branquinho": "branquinh", "brant": "brant", "brantes": "brant", "braquiterapia": "braquiterap", "brás": "brás", "brasil": "brasil", "brasilândia": "brasilând", "brasileira": "brasileir", "brasileirada": "brasileir", "brasileiras": "brasileir", "brasileirinho": "brasileirinh", "brasileirismo": "brasileir", "brasileiro": "brasileir", "brasileiros": "brasileir", "brasília": "brasíl", "brasiliano": "brasilian", "brasílicas": "brasíl", "brasilidade": "brasil", "brasiliense": "brasiliens", "brasiloche": "brasiloch", "brasilpar": "brasilp", "brasmarket": "brasmarket", "brava": "brav", "bravio": "bravi", "bravo": "brav", "bravos": "brav", "braz": "braz", "brazel": "brazel", "brazil": "brazil", "braziliense": "braziliens", "brazucas": "brazuc", "brca": "brca", "brecar": "brec", "brecha": "brech", "brechas": "brech", "brecht": "brecht", "brega": "breg", "breguices": "breguic", "brejo": "brej", "breno": "bren", "bressan": "bressan", "bresser": "bress", "bretanha": "bretanh", "brett": "brett", "breuer": "breu", "breve": "brev", "brevemente": "brevement", "breves": "brev", "brevetado": "brevet", "brevetagem": "brevetag", "briefing": "briefing", "briga": "brig", "brigada": "brig", "brigadeiro": "brigadeir", "brigado": "brig", "brigam": "brig", "brigamos": "brig", "brigar": "brig", "brigaram": "brig", "brigas": "brig", "brigávamos": "brig", "brigou": "brig", "briguei": "brigu", "briguenta": "briguent", "brilha": "brilh", "brilham": "brilh", "brilhando": "brilh", "brilhante": "brilhant", "brilhantes": "brilhant", "brilhantina": "brilhantin", "brilho": "brilh", "brinca": "brinc", "brincadeira": "brincadeir", "brincadeiras": "brincadeir", "brincalhão": "brincalhã", "brincam": "brinc", "brincando": "brinc", "brincar": "brinc", "brincava": "brinc", "brinco": "brinc", "brincos": "brinc", "brincou": "brinc", "brindados": "brind", "brinde": "brind", "brindes": "brind", "brinque": "brinqu", "brinquedo": "brinqued", "brinquedos": "brinqued", "brinquinho": "brinquinh", "brisa": "bris", "brissac": "brissac", "brita": "brit", "britânica": "britân", "britânico": "britân", "britânicos": "britân", "britannia": "britann", "british": "british", "brito": "brit", "brittes": "britt", "britto": "britt", "brizola": "brizol", "broadway": "broadway", "brocas": "broc", "brocca": "brocc", "brochar": "broch", "brócolis": "brócol", "broderbund": "broderbund", "bronca": "bronc", "broncas": "bronc", "bronco": "bronc", "broncodilatadores": "broncodilat", "brondi": "brond", "bronquite": "bronquit", "bronstein": "bronstein", "bronx": "bronx", "bronze": "bronz", "bronzeada": "bronz", "bronzeado": "bronz", "bronzeadores": "bronzeador", "bronzeamento": "bronzeament", "brookhaven": "brookhaven", "brooklin": "brooklin", "brooklyn": "brooklyn", "bros": "bros", "brotado": "brot", "brotam": "brot", "brotando": "brot", "brotar": "brot", "brotará": "brot", "brotaram": "brot", "brotas": "brot", "brotero": "broter", "brothers": "brothers", "broto": "brot", "brotou": "brot", "brown": "brown", "browser": "brows", "browsing": "browsing", "bruce": "bruc", "bruços": "bruc", "brueghel": "brueghel", "bruguera": "brugu", "brum": "brum", "brumas": "brum", "bruna": "brun", "brunet": "brunet", "brunete": "brunet", "brunini": "brunin", "brunnhilde": "brunnhild", "bruno": "brun", "bruns": "bruns", "bruscamente": "brusc", "bruscas": "brusc", "brusque": "brusqu", "brut": "brut", "bruta": "brut", "brutais": "brut", "brutal": "brutal", "brutalidade": "brutal", "brutalmente": "brutal", "bruto": "brut", "bruxa": "brux", "bruxas": "brux", "bruxismo": "bruxism", "bryan": "bryan", "bu": "bu", "buaiz": "buaiz", "buarque": "buarqu", "bucal": "bucal", "bucci": "bucc", "buchadas": "buch", "buchecha": "buchech", "bucho": "buch", "buchwald": "buchwald", "buckup": "buckup", "bucólica": "bucól", "bucolicamente": "bucol", "budismo": "budism", "budista": "budist", "buena": "buen", "bueno": "buen", "buenos": "buen", "búfalo": "búfal", "bufantes": "bufant", "bufê": "buf", "buger": "bug", "bugigangas": "bugigang", "buick": "buick", "buíque": "buíqu", "bujanda": "bujand", "bula": "bul", "buléu": "buléu", "bulgari": "bulgar", "bulgária": "bulgár", "bulhufas": "bulhuf", "bum": "bum", "bumbum": "bumbum", "bumbuns": "bumbuns", "bunda": "bund", "bundas": "bund", "bundinha": "bundinh", "bundudo": "bundud", "bunkers": "bunkers", "buquê": "buqu", "buraco": "burac", "buracos": "burac", "buraqueira": "buraqueir", "buraqueiras": "buraqueir", "burgos": "burg", "burguesa": "burgues", "burgueses": "burgues", "buriatas": "buriat", "buriátia": "buriát", "buriatos": "buriat", "burin": "burin", "buritis": "burit", "burla": "burl", "burlando": "burl", "burlesco": "burlesc", "burocracia": "burocrac", "burocrata": "burocrat", "burocratas": "burocrat", "burocráticos": "burocrát", "burra": "burr", "burrice": "burric", "burro": "burr", "bursite": "bursit", "buruma": "burum", "busca": "busc", "buscá": "busc", "buscam": "busc", "buscando": "busc", "buscar": "busc", "buscaram": "busc", "buscava": "busc", "buscopan": "buscopan", "buscou": "busc", "bush": "bush", "business": "business", "buss": "buss", "bússola": "bússol", "bussunda": "bussund", "bustamante": "bustam", "busto": "bust", "bustos": "bust", "butantã": "butantã", "butantan": "butantan", "butão": "butã", "butique": "butiqu", "butox": "butox", "buttons": "buttons", "buuááááá": "buuáááá", "buying": "buying", "buzaid": "buzaid", "búzios": "búzi", "bvrj": "bvrj", "by": "by", "bydlowski": "bydlowsk", "bye": "bye", "bytes": "bytes", "c": "c", "cá": "cá", "caatinga": "caating", "cabana": "caban", "cabanas": "caban", "cabaré": "cabar", "cabarés": "cabarés", "cabe": "cab", "cabeça": "cabec", "cabeças": "cabec", "cabeceira": "cabeceir", "cabeçudos": "cabeçud", "cabeleira": "cabeleir", "cabeleireira": "cabeleireir", "cabeleireiro": "cabeleireir", "cabelereiro": "cabelereir", "cabello": "cabell", "cabelo": "cabel", "cabelos": "cabel", "cabeludo": "cabelud", "cabem": "cab", "cabendo": "cab", "caber": "cab", "caberá": "cab", "caberão": "cab", "caberia": "cab", "cabernet": "cabernet", "cabide": "cabid", "cabine": "cabin", "cabines": "cabin", "cabíria": "cabír", "cabisbaixo": "cabisbaix", "cabo": "cab", "caboclo": "cabocl", "cabos": "cab", "cabotagem": "cabotag", "cabra": "cabr", "cabral": "cabral", "cabras": "cabr", "cabrini": "cabrin", "cabriolet": "cabriolet", "cabrita": "cabrit", "cabritinhas": "cabritinh", "cabuçu": "cabuçu", "caça": "cac", "cacá": "cac", "caçada": "cac", "caçado": "cac", "caçador": "caçador", "caçadores": "caçador", "caçam": "cac", "caçando": "cac", "caçar": "cac", "caçaram": "cac", "caças": "cac", "cacau": "cacau", "cáceres": "các", "cachaça": "cachac", "cachaças": "cachac", "cachê": "cach", "cacheados": "cach", "cachimbo": "cachimb", "cachinhos": "cachinh", "cachoeira": "cachoeir", "cachoeiras": "cachoeir", "cachorrinho": "cachorrinh", "cachorrinhos": "cachorrinh", "cachorro": "cachorr", "cachorros": "cachorr", "cacife": "cacif", "cacique": "caciqu", "caciques": "caciqu", "cacoetes": "cacoet", "cacos": "cac", "cacto": "cact", "cactos": "cact", "caçula": "caçul", "cada": "cad", "cadastradas": "cadastr", "cadastrado": "cadastr", "cadastrados": "cadastr", "cadastramento": "cadastr", "cadastrando": "cadastr", "cadastrar": "cadastr", "cadastraram": "cadastr", "cadastro": "cadastr", "cadáver": "cadáv", "cadáveres": "cadáv", "cadavéricos": "cadavér", "cade": "cad", "cadê": "cad", "cadeia": "cad", "cadeira": "cadeir", "cadeiras": "cadeir", "caderneta": "cadernet", "cadernetas": "cadernet", "caderno": "cadern", "cadernos": "cadern", "cadet": "cadet", "cadetes": "cadet", "cadillac": "cadillac", "cádmio": "cádmi", "cae": "cae", "caem": "caem", "caemi": "caem", "cães": "cã", "caesar": "caes", "caetano": "caetan", "café": "caf", "cafeicultor": "cafeicultor", "cafeicultores": "cafeicultor", "cafés": "cafés", "cafetão": "cafetã", "cafeterie": "cafeteri", "cafetina": "cafetin", "cafezais": "cafez", "cafezinho": "cafezinh", "cafezinhos": "cafezinh", "caffé": "caff", "cafonice": "cafonic", "cagada": "cag", "cai": "cai", "caí": "caí", "caía": "caí", "caído": "caíd", "caiena": "caien", "caindo": "caind", "caio": "cai", "caipira": "caip", "caipirinha": "caipirinh", "cair": "cair", "cairá": "cair", "caíram": "caír", "cairia": "cair", "cairo": "cair", "cais": "cais", "caísse": "caíss", "caiu": "caiu", "caixa": "caix", "caixão": "caixã", "caixas": "caix", "caixinha": "caixinh", "caixotes": "caixot", "cajá": "caj", "cajado": "caj", "cajueiro": "cajueir", "cakoff": "cakoff", "cal": "cal", "calabria": "calabr", "caladão": "caladã", "calado": "cal", "calados": "cal", "calamina": "calamin", "calamitosa": "calamit", "calamitoso": "calamit", "calango": "calang", "calar": "cal", "calça": "calc", "calcada": "calc", "calçada": "calc", "calçadas": "calc", "calcado": "calc", "calçados": "calc", "calcanhar": "calcanh", "calção": "calçã", "calçaram": "calc", "calcária": "calcár", "calças": "calc", "calcinha": "calcinh", "cálcio": "cálci", "calcula": "calcul", "calculada": "calcul", "calculado": "calcul", "calculadora": "calcul", "calculadoras": "calcul", "calculados": "calcul", "calculam": "calcul", "calcular": "calcul", "calculava": "calcul", "cálculo": "cálcul", "cálculos": "cálcul", "calculou": "calcul", "calcutá": "calcut", "caldas": "cald", "caldeira": "caldeir", "caldeirão": "cald", "caldo": "cald", "calendário": "calendári", "calendários": "calendári", "calendas": "calend", "calhou": "calh", "cali": "cal", "calibre": "calibr", "calicute": "calicut", "california": "californ", "califórnia": "califórn", "calil": "calil", "callas": "call", "callegari": "callegar", "callepso": "calleps", "calligaris": "calligar", "calma": "calm", "calmamente": "calm", "calmante": "calmant", "calmantes": "calmant", "calmaria": "calm", "calmas": "calm", "calminhas": "calminh", "calor": "calor", "caloria": "calor", "calorias": "calor", "calórico": "calór", "calóricos": "calór", "caloroso": "calor", "calote": "calot", "caloura": "calour", "calouros": "calour", "cals": "cals", "calúnia": "calún", "calvacom": "calvacom", "calvário": "calvári", "calvin": "calvin", "calvo": "calv", "calypso": "calyps", "calzadilla": "calzadill", "cama": "cam", "camacho": "camach", "camada": "cam", "camadas": "cam", "camaleônica": "camaleôn", "camapuã": "camapuã", "câmara": "câm", "camarada": "camar", "camarão": "cam", "câmaras": "câm", "camarena": "camaren", "camargo": "camarg", "camarim": "camarim", "camarins": "camarins", "camarote": "camarot", "camas": "cam", "cambará": "camb", "cambial": "cambial", "câmbio": "câmbi", "camboja": "camboj", "cambojana": "cambojan", "cambojano": "cambojan", "cambojanos": "cambojan", "cambridge": "cambridg", "camburão": "camburã", "camburi": "cambur", "camburões": "camburõ", "camélia": "camél", "camélias": "camél", "camelo": "camel", "camelô": "camelô", "camelôs": "camelôs", "camera": "cam", "câmera": "câm", "câmeras": "câm", "camila": "camil", "camilla": "camill", "camilo": "camil", "caminha": "caminh", "caminhada": "caminh", "caminham": "caminh", "caminhando": "caminh", "caminhão": "caminhã", "caminhar": "caminh", "caminhavam": "caminh", "caminho": "caminh", "caminhões": "caminhõ", "caminhoneiro": "caminhoneir", "caminhoneiros": "caminhoneir", "caminhonete": "caminhonet", "caminhonetes": "caminhonet", "caminhos": "caminh", "camino": "camin", "camisa": "camis", "camisaria": "camis", "camisas": "camis", "camiseta": "camiset", "camisetas": "camiset", "camisetinha": "camisetinh", "camisinha": "camisinh", "camisinhas": "camisinh", "camisola": "camisol", "camões": "camõ", "camomila": "camomil", "camp": "camp", "campainha": "campainh", "campana": "campan", "campanha": "campanh", "campanhas": "campanh", "campeã": "campeã", "campeão": "campeã", "campearam": "camp", "campeava": "camp", "campelo": "campel", "campeões": "campeõ", "campeonato": "campeonat", "campeonatos": "campeonat", "campesinos": "campesin", "campestre": "campestr", "campina": "campin", "campinas": "campin", "camping": "camping", "campings": "campings", "campo": "camp", "camponesas": "campones", "camponeses": "campones", "campos": "camp", "campus": "campus", "campuzana": "campuzan", "camuflada": "camufl", "camuflado": "camufl", "camuflar": "camufl", "camurças": "camurc", "cana": "can", "canadá": "canad", "canadair": "canada", "canadense": "canadens", "canadenses": "canadens", "canais": "can", "canal": "canal", "canale": "canal", "canalha": "canalh", "canalizado": "canaliz", "canaqua": "canaqu", "canário": "canári", "canastrões": "canastrõ", "canavieira": "canavieir", "canção": "cançã", "cancelado": "cancel", "cancelados": "cancel", "cancelam": "cancel", "cancelar": "cancel", "cancelou": "cancel", "cancer": "canc", "câncer": "cânc", "cancerígena": "cancerígen", "cancerígenas": "cancerígen", "cancerígeno": "cancerígen", "cancernet": "cancernet", "cancerosas": "cancer", "cancioneiro": "cancioneir", "canções": "cançõ", "cancún": "cancún", "candeeira": "candeeir", "candelabros": "candelabr", "candelária": "candelár", "candice": "candic", "candidata": "candidat", "candidatar": "candidat", "candidataram": "candidat", "candidatas": "candidat", "candidatasse": "candidat", "candidatei": "candidat", "candidato": "candidat", "candidatos": "candidat", "candidatura": "candidatur", "candido": "cand", "cândido": "când", "candomblé": "candombl", "candomblés": "candomblés", "canela": "canel", "canelada": "canel", "caneta": "canet", "canetas": "canet", "canetinhas": "canetinh", "cangaceiro": "cangaceir", "cangaço": "cangac", "cangalo": "cangal", "cangurus": "cangurus", "canhão": "canhã", "canhestra": "canhestr", "canhões": "canhõ", "canhonear": "canhon", "canibalização": "canibaliz", "canindé": "canind", "cânion": "cânion", "cânions": "cânions", "cannes": "cann", "canônica": "canôn", "canônicas": "canôn", "canônico": "canôn", "canonização": "canoniz", "canova": "canov", "cansa": "cans", "cansaço": "cansac", "cansada": "cans", "cansado": "cans", "cansar": "cans", "cansaram": "cans", "cansativo": "cansat", "canseira": "canseir", "cansou": "cans", "canta": "cant", "cantada": "cant", "cantadas": "cant", "cantado": "cant", "cantalice": "cantalic", "cantaloup": "cantaloup", "cantando": "cant", "cantante": "cantant", "cantar": "cant", "cantaram": "cant", "cantarolando": "cantarol", "cantarolar": "cantarol", "cantei": "cant", "canteiros": "canteir", "cânticos": "cântic", "cantinho": "cantinh", "canto": "cant", "cantona": "canton", "cantonês": "cantonês", "cantor": "cantor", "cantora": "cantor", "cantoras": "cantor", "cantores": "cantor", "cantoria": "cantor", "cantos": "cant", "cantou": "cant", "canudo": "canud", "canudos": "canud", "cao": "cao", "cão": "cã", "caos": "caos", "caótica": "caótic", "caótico": "caótic", "capa": "cap", "capacetes": "capacet", "capacidade": "capac", "capacitação": "capacit", "capadócia": "capadóc", "capão": "capã", "capas": "cap", "capaz": "capaz", "capazes": "capaz", "capcure": "capcur", "capela": "capel", "capelão": "capelã", "capenga": "capeng", "capes": "cap", "capi": "cap", "capilar": "capil", "capim": "capim", "capita": "capit", "capitã": "capitã", "capitais": "capit", "capital": "capital", "capitalismo": "capital", "capitalista": "capital", "capitalizada": "capitaliz", "capitânia": "capitân", "capitanias": "capitan", "capitão": "capitã", "capitólio": "capitóli", "capítulo": "capítul", "capítulos": "capítul", "capitulou": "capitul", "capo": "cap", "capoeira": "capoeir", "capoeirista": "capoeir", "capone": "capon", "caporegime": "caporegim", "capos": "cap", "capoten": "capoten", "caprera": "capr", "caprichada": "caprich", "caprichado": "caprich", "capricham": "caprich", "caprichando": "caprich", "capricho": "caprich", "caprichosos": "caprich", "caprichou": "caprich", "capriglione": "capriglion", "cápsulas": "cápsul", "capta": "capt", "captação": "captaçã", "captações": "captaçõ", "captada": "capt", "captadores": "captador", "captados": "capt", "captam": "capt", "captando": "capt", "captar": "capt", "captariam": "capt", "captopril": "captopril", "captores": "captor", "captou": "capt", "captura": "captur", "capturado": "captur", "capturar": "captur", "capuano": "capuan", "capuchinho": "capuchinh", "capuchinhos": "capuchinh", "capuz": "capuz", "caquinhos": "caquinh", "cara": "car", "cará": "car", "caracas": "carac", "caracteres": "caract", "característica": "característ", "características": "característ", "característico": "característ", "caracteriza": "caracteriz", "caracterização": "caracteriz", "caracterizou": "caracteriz", "caraguata": "caraguat", "carajás": "carajás", "caramba": "caramb", "caramujo": "caramuj", "caramujos": "caramuj", "carão": "carã", "carapuça": "carapuc", "caras": "car", "caratê": "carat", "caráter": "carát", "caravalle": "caravall", "caravana": "caravan", "caravanas": "caravan", "caravela": "caravel", "caravelas": "caravel", "caravelle": "caravell", "carbide": "carbid", "carboidrato": "carboidrat", "carboidratos": "carboidrat", "carbonato": "carbonat", "carbone": "carbon", "carbonizados": "carboniz", "carcaças": "carcac", "carcará": "carc", "carcerária": "carcerár", "carcerário": "carcerári", "carcereiras": "carcereir", "carcereiros": "carcereir", "card": "card", "cardápio": "cardápi", "cardeais": "card", "cardeal": "cardeal", "cardíaca": "cardíac", "cardíacas": "cardíac", "cardíaco": "cardíac", "cardíacos": "cardíac", "cardiologia": "cardiolog", "cardiologista": "cardiolog", "cardiorrespiratória": "cardiorrespiratór", "cardiovascular": "cardiovascul", "cardiovasculares": "cardiovascul", "cardoso": "cardos", "carducci": "carducc", "cardume": "cardum", "cardumes": "cardum", "careca": "carec", "carecas": "carec", "carece": "carec", "carência": "carênc", "carências": "carênc", "carente": "carent", "carentes": "carent", "careta": "caret", "caretas": "caret", "caretice": "caretic", "caretta": "carett", "carga": "carg", "cargas": "carg", "cargo": "carg", "cargos": "carg", "cargueiro": "cargueir", "caribe": "carib", "caribenhos": "caribenh", "caricatura": "caricatur", "caricatural": "caricatural", "caricaturas": "caricatur", "carícias": "caríc", "caridade": "caridad", "caridosa": "carid", "carimbada": "carimb", "carimbado": "carimb", "carimbavam": "carimb", "carimbo": "carimb", "carimbó": "carimb", "carina": "carin", "carinho": "carinh", "carinhosa": "carinh", "carinhosamente": "carinh", "carinhosas": "carinh", "carinhoso": "carinh", "carioca": "carioc", "cariocas": "carioc", "carisma": "carism", "carismática": "carismát", "carismáticos": "carismát", "caríssimas": "caríssim", "caríssimo": "caríssim", "caríssimos": "caríss", "carl": "carl", "carla": "carl", "carli": "carl", "carlinhos": "carlinh", "carlini": "carlin", "carlos": "carl", "carlota": "carlot", "carmem": "carm", "carmen": "carmen", "carmo": "carm", "carnal": "carnal", "carnavais": "carnav", "carnaval": "carnaval", "carne": "carn", "carnegie": "carnegi", "carneiro": "carneir", "carnejo": "carnej", "carnes": "carn", "carniceiro": "carniceir", "carnificina": "carnificin", "caro": "car", "carol": "carol", "carola": "carol", "carolina": "carolin", "caroline": "carolin", "carolíssimo": "carolíssim", "carolyn": "carolyn", "carona": "caron", "caros": "car", "carpaccio": "carpacci", "carpetes": "carpet", "carpintaria": "carpint", "carpinteiro": "carpinteir", "carpir": "carp", "carrão": "carrã", "carrasco": "carrasc", "carré": "carr", "carrefour": "carrefour", "carrega": "carreg", "carregá": "carreg", "carregada": "carreg", "carregadas": "carreg", "carregado": "carreg", "carregados": "carreg", "carregam": "carreg", "carregamentos": "carreg", "carregando": "carreg", "carregar": "carreg", "carregaram": "carreg", "carregassem": "carreg", "carregava": "carreg", "carrego": "carreg", "carregou": "carreg", "carregue": "carreg", "carreira": "carreir", "carreiras": "carreir", "carrero": "carrer", "carreteiro": "carreteir", "carrinheiro": "carrinheir", "carrinheiros": "carrinheir", "carrinho": "carrinh", "carrinhos": "carrinh", "carro": "carr", "carroceria": "carroc", "carrocinha": "carrocinh", "carrocinhas": "carrocinh", "carrões": "carrõ", "carros": "carr", "carrossel": "carrossel", "carruagem": "carruag", "carstensz": "carstensz", "carta": "cart", "cartão": "cartã", "cartas": "cart", "cartaz": "cartaz", "cartazes": "cartaz", "carteira": "carteir", "carteiras": "carteir", "carteirinha": "carteirinh", "cartéis": "cart", "cartel": "cartel", "cartela": "cartel", "carter": "cart", "cartilha": "cartilh", "cartilhas": "cartilh", "cartões": "cartõ", "cartografia": "cartograf", "cartográficas": "cartográf", "cartola": "cartol", "cartorários": "cartorári", "cartório": "cartóri", "cartórios": "cartóri", "cartum": "cartum", "cartunista": "cartun", "cartunistas": "cartun", "cartuns": "cartuns", "caruso": "carus", "carvalho": "carvalh", "carvalhos": "carvalh", "carvana": "carvan", "carvão": "carvã", "carvoaria": "carvo", "carvoeiros": "carvoeir", "casa": "cas", "casablancas": "casablanc", "casaca": "casac", "casaco": "casac", "casacos": "casac", "casada": "cas", "casadas": "cas", "casado": "cas", "casados": "cas", "casagrande": "casagrand", "casais": "cas", "casal": "casal", "casam": "cas", "casamento": "casament", "casamentos": "casament", "casando": "cas", "casaquistão": "casaquistã", "casar": "cas", "casara": "cas", "casaram": "cas", "casarão": "cas", "casarões": "casarõ", "casas": "cas", "casasse": "cas", "casca": "casc", "cascata": "cascat", "cascatas": "cascat", "cascateiro": "cascateir", "cascavel": "cascavel", "casco": "casc", "casé": "cas", "casebre": "casebr", "casebres": "casebr", "casei": "cas", "caseira": "caseir", "caseiro": "caseir", "caseiros": "caseir", "casernas": "casern", "casildo": "casild", "casinha": "casinh", "casinhas": "casinh", "casinhola": "casinhol", "casini": "casin", "casmurro": "casmurr", "caso": "cas", "casos": "cas", "casou": "cas", "casoy": "casoy", "cassação": "cassaçã", "casseb": "casseb", "casseta": "casset", "cassetas": "casset", "cassetosos": "casset", "cássia": "cáss", "cassiano": "cassian", "cassino": "cassin", "cassinos": "cassin", "cassio": "cassi", "cássio": "cássi", "cassou": "cass", "casta": "cast", "castanho": "castanh", "castanhos": "castanh", "castaño": "castañ", "castelano": "castelan", "castelhano": "castelhan", "casteli": "castel", "castelli": "castell", "castelo": "castel", "castelos": "castel", "castiga": "castig", "castigado": "castig", "castigados": "castig", "castigar": "castig", "castigo": "castig", "castilho": "castilh", "casting": "casting", "casto": "cast", "castor": "castor", "castratti": "castratt", "castro": "castr", "casualidades": "casual", "casulo": "casul", "cata": "cat", "catador": "catador", "cataflan": "cataflan", "catalogadas": "catalog", "catálogo": "catálog", "catálogos": "catálog", "catalogou": "catalog", "catanduva": "catanduv", "catão": "catã", "catapulta": "catapult", "catarata": "catarat", "catarina": "catarin", "catarinense": "catarinens", "catarinenses": "catarinens", "catarino": "catarin", "catarse": "catars", "catástrofe": "catástrof", "catástrofes": "catástrof", "catastróficas": "catastróf", "catastrófico": "catastróf", "catedral": "catedral", "categoria": "categor", "categorias": "categor", "categórica": "categór", "categóricos": "categór", "catei": "cat", "catequese": "cateques", "cateter": "catet", "cateterismo": "cateter", "catherine": "catherin", "catho": "cath", "catholique": "catholiqu", "cativa": "cativ", "cativantes": "cativ", "cativas": "cativ", "cativeiro": "cativeir", "católica": "catól", "catolicismo": "catolic", "católico": "catól", "católicos": "catól", "catorze": "catorz", "catraca": "catrac", "caução": "cauçã", "cauda": "caud", "caudalosas": "caudal", "caudalosos": "caudal", "causa": "caus", "causada": "caus", "causadas": "caus", "causado": "caus", "causador": "causador", "causados": "caus", "causam": "caus", "causando": "caus", "causar": "caus", "causará": "caus", "causaram": "caus", "causas": "caus", "causava": "caus", "causou": "caus", "cautela": "cautel", "cautelas": "cautel", "cauteloso": "cautel", "cavada": "cav", "cavado": "cav", "cavalar": "caval", "cavalares": "caval", "cavalaria": "caval", "cavalcante": "cavalc", "cavalcanti": "cavalcant", "cavaleiro": "cavaleir", "cavaleiros": "cavaleir", "cavalgadas": "cavalg", "cavalheiro": "cavalheir", "cavalheiros": "cavalheir", "cavalinho": "cavalinh", "cavalo": "caval", "cavalos": "caval", "cavanhaque": "cavanhaqu", "cavar": "cav", "cavava": "cav", "caveira": "caveir", "caveiras": "caveir", "caverna": "cavern", "cavernas": "cavern", "caviar": "cavi", "cavidade": "cavidad", "cavidades": "cavidad", "caxias": "cax", "caymmi": "caymm", "cazuza": "cazuz", "cbf": "cbf", "cbmm": "cbmm", "cbs": "cbs", "ccedil": "ccedil", "ccf": "ccf", "cd": "cd", "cda": "cda", "cdb": "cdb", "cds": "cds", "ce": "ce", "cê": "cê", "ceagesp": "ceagesp", "ceará": "cear", "cearense": "cearens", "cebola": "cebol", "cebolas": "cebol", "cecilia": "cecil", "cecília": "cecíl", "cede": "ced", "cedendo": "ced", "ceder": "ced", "cedeu": "ced", "cedido": "ced", "cedo": "ced", "cedric": "cedric", "cédula": "cédul", "cédulas": "cédul", "cef": "cef", "cefaléia": "cefal", "cega": "ceg", "cegamente": "ceg", "cego": "ceg", "cegos": "ceg", "cegueira": "cegueir", "ceia": "cei", "ceias": "cei", "cela": "cel", "celas": "cel", "celebração": "celebr", "celebrações": "celebr", "celebrada": "celebr", "celebradas": "celebr", "celebram": "celebr", "celebrar": "celebr", "celebraram": "celebr", "celebration": "celebration", "célebre": "célebr", "célebres": "célebr", "celebridades": "celebr", "celebrizaram": "celebriz", "celebrizou": "celebriz", "celeiro": "celeir", "celesc": "celesc", "celeste": "cel", "celestial": "celestial", "célia": "cél", "celina": "celin", "celsius": "celsius", "celso": "cels", "celson": "celson", "célula": "célul", "celular": "celul", "celulares": "celul", "celulari": "celular", "células": "célul", "celulite": "celulit", "celulites": "celulit", "celulose": "celulos", "cem": "cem", "cemig": "cemig", "cemitério": "cemitéri", "cemitérios": "cemitéri", "cena": "cen", "cenáculo": "cenácul", "cenário": "cenári", "cenários": "cenári", "cenas": "cen", "cênica": "cênic", "cenimar": "cenim", "cenipa": "cenip", "cenógrafa": "cenógraf", "cenoura": "cenour", "cens": "cens", "censo": "cens", "censorship": "censorship", "censura": "censur", "censurá": "censur", "centavo": "centav", "centavos": "centav", "centelha": "centelh", "centena": "centen", "centenária": "centenár", "centenário": "centenári", "centenários": "centenári", "centenas": "centen", "center": "cent", "centers": "centers", "centígrados": "centígr", "centímetro": "centímetr", "centímetros": "centímetr", "cento": "cent", "centra": "centr", "centrada": "centr", "centrais": "centr", "central": "central", "centraliza": "centraliz", "centralização": "centraliz", "centralizada": "centraliz", "centre": "centr", "centro": "centr", "centroavante": "centroav", "centros": "centr", "centrus": "centrus", "centurion": "centurion", "cera": "cer", "cerâmica": "cerâm", "cerca": "cerc", "cercada": "cerc", "cercadas": "cerc", "cercado": "cerc", "cercados": "cerc", "cercam": "cerc", "cercando": "cerc", "cercanias": "cercan", "cercaram": "cerc", "cerco": "cerc", "cercou": "cerc", "cereais": "cer", "cerebrais": "cerebr", "cerebral": "cerebral", "cérebro": "cérebr", "cérebros": "cérebr", "cerefolho": "cerefolh", "ceregatti": "ceregatt", "cerimônia": "cerimôn", "cerimonial": "cerimonial", "cerimônias": "cerimôn", "cerqueira": "cerqueir", "cerrada": "cerr", "cerradas": "cerr", "cerrado": "cerr", "cerro": "cerr", "certa": "cert", "certamente": "cert", "certas": "cert", "certeira": "certeir", "certeiramente": "certeir", "certeiro": "certeir", "certeza": "certez", "certezas": "certez", "certidão": "certidã", "certifica": "certif", "certificação": "certific", "certificadas": "certific", "certificado": "certific", "certinhas": "certinh", "certinho": "certinh", "certo": "cert", "certos": "cert", "cervantes": "cervant", "cerveja": "cervej", "cervejaria": "cervej", "cervejarias": "cervej", "cervejas": "cervej", "cervejinha": "cervejinh", "cesar": "ces", "césar": "cés", "cesáreas": "cesár", "cesarianas": "cesarian", "cesário": "cesári", "cesarismo": "cesar", "césio": "cési", "cesp": "cesp", "cessão": "cessã", "cessar": "cess", "cessna": "cessn", "cesta": "cest", "cestafe": "cestaf", "cestas": "cest", "cesto": "cest", "cestos": "cest", "cet": "cet", "cetesb": "cetesb", "ceticismo": "cetic", "cético": "cétic", "céticos": "cétic", "cetim": "cetim", "cetro": "cetr", "céu": "céu", "céus": "céus", "cevada": "cev", "cevap": "cevap", "cevar": "cev", "cezar": "cez", "cézar": "céz", "cgc": "cgc", "chá": "chá", "chácara": "chác", "chácaras": "chác", "chacina": "chacin", "chacinas": "chacin", "chaco": "chac", "chacoalhar": "chacoalh", "chacrete": "chacret", "chagas": "chag", "chairman": "chairman", "chalés": "chalés", "challenger": "challeng", "chama": "cham", "chamá": "cham", "chamada": "cham", "chamadas": "cham", "chamado": "cham", "chamados": "cham", "chamam": "cham", "chamamos": "cham", "chamando": "cham", "chamar": "cham", "chamará": "cham", "chamaram": "cham", "chamarizes": "chamariz", "chamas": "cham", "chamativas": "chamat", "chamativo": "chamat", "chamava": "cham", "chamavam": "cham", "chambord": "chambord", "chame": "cham", "chamegos": "chameg", "chamei": "cham", "chamo": "cham", "chamou": "cham", "champanha": "champanh", "champanhe": "champanh", "champanhes": "champanh", "chamuscada": "chamusc", "chance": "chanc", "chancela": "chancel", "chanceler": "chancel", "chances": "chanc", "chanchada": "chanch", "chandon": "chandon", "chanel": "chanel", "chang": "chang", "channel": "channel", "chantageavam": "chantag", "chantagem": "chantag", "chantagista": "chantag", "chantal": "chantal", "chão": "chã", "chapa": "chap", "chapada": "chap", "chapadeiro": "chapadeir", "chapéu": "chapéu", "chapéus": "chapéus", "chapeuzinho": "chapeuzinh", "chaplin": "chaplin", "chardonnay": "chardonnay", "charges": "charg", "charlab": "charlab", "charlatães": "charlatã", "charlatanismo": "charlatan", "charlatão": "charlatã", "charles": "charl", "charlton": "charlton", "charme": "charm", "charmes": "charm", "charmoso": "charmos", "charretes": "charret", "charutaria": "charut", "charuteiros": "charuteir", "charuto": "charut", "charutos": "charut", "chás": "chás", "chase": "chas", "chassi": "chass", "chat": "chat", "chateado": "chat", "chatíssimas": "chatíssim", "chato": "chat", "chatos": "chat", "chavall": "chavall", "chave": "chav", "chaveco": "chavec", "chaveiro": "chaveir", "chaveiros": "chaveir", "chaves": "chav", "che": "che", "checados": "chec", "checagem": "checag", "checamos": "chec", "checar": "chec", "check": "check", "checo": "chec", "checou": "chec", "chee": "che", "cheesecake": "cheesecak", "chef": "chef", "chefão": "chefã", "chefe": "chef", "chefes": "chef", "chefia": "chef", "chefiada": "chefi", "chefiado": "chefi", "chefiados": "chefi", "chefiar": "chefi", "chefiava": "chefi", "chefiei": "chefi", "chefões": "chefõ", "chega": "cheg", "chegada": "cheg", "chegado": "cheg", "chegados": "cheg", "chegam": "cheg", "chegamos": "cheg", "chegando": "cheg", "chegar": "cheg", "chegara": "cheg", "chegará": "cheg", "chegaram": "cheg", "chegarão": "cheg", "chegarem": "cheg", "chegaremos": "cheg", "chegaria": "cheg", "chegasse": "cheg", "chegava": "cheg", "chegavam": "cheg", "chegávamos": "cheg", "chego": "cheg", "chegou": "cheg", "chegue": "cheg", "cheguei": "chegu", "cheguem": "chegu", "cheia": "che", "cheias": "che", "cheinhos": "cheinh", "cheio": "chei", "cheios": "chei", "cheira": "cheir", "cheirando": "cheir", "cheirar": "cheir", "cheirava": "cheir", "cheiro": "cheir", "cheirosinho": "cheirosinh", "cheirou": "cheir", "chek": "chek", "chelotti": "chelott", "cheque": "chequ", "cheques": "chequ", "cher": "cher", "chereze": "cherez", "chermont": "chermont", "cherokee": "cheroke", "chester": "chest", "chia": "chi", "chiang": "chiang", "chianti": "chiant", "chiapas": "chiap", "chiaram": "chi", "chiarina": "chiarin", "chiarini": "chiarin", "chiaro": "chiar", "chicago": "chicag", "chicão": "chicã", "chicletes": "chiclet", "chico": "chic", "chicotadas": "chicot", "chicoteá": "chicot", "chief": "chief", "chien": "chien", "chiga": "chig", "children": "children", "chile": "chil", "chilena": "chilen", "chileno": "chilen", "chimanovitch": "chimanovitch", "china": "chin", "chinelo": "chinel", "chinelões": "chinelõ", "chinelos": "chinel", "chinês": "chinês", "chinesa": "chines", "chinesas": "chines", "chineses": "chines", "chip": "chip", "chips": "chips", "chiquamanga": "chiquamang", "chique": "chiqu", "chiquérrima": "chiquérrim", "chiquérrimo": "chiquérrim", "chiques": "chiqu", "chiquinho": "chiquinh", "chirac": "chirac", "chispasse": "chisp", "chiyoda": "chiyod", "chnaiderman": "chnaiderman", "choca": "choc", "chocada": "choc", "chocado": "choc", "chocam": "choc", "chocando": "choc", "chocante": "chocant", "chocar": "choc", "chocava": "choc", "choco": "choc", "chocolate": "chocolat", "chocolates": "chocolat", "chocou": "choc", "chofer": "chof", "chope": "chop", "chopes": "chop", "chopinot": "chopinot", "chopnics": "chopnics", "choque": "choqu", "choques": "choqu", "chora": "chor", "chorando": "chor", "chorar": "chor", "choraram": "chor", "chorava": "chor", "chorei": "chor", "chorizo": "choriz", "choro": "chor", "choros": "chor", "chorou": "chor", "chove": "chov", "chovendo": "chov", "chover": "chov", "choveram": "chov", "choveu": "chov", "chovia": "chov", "chovido": "chov", "chris": "chris", "christ": "christ", "christian": "christian", "christianity": "christianity", "christina": "christin", "christopher": "christoph", "chronos": "chron", "chrysler": "chrysler", "chrystian": "chrystian", "chuchu": "chuchu", "chuí": "chu", "chulas": "chul", "chumbo": "chumb", "chupar": "chup", "chupei": "chup", "chuquisaca": "chuquisac", "church": "church", "churchill": "churchill", "churo": "chur", "churrascaria": "churrasc", "churrascarias": "churrasc", "churrasco": "churrasc", "churrascos": "churrasc", "churrasqueiras": "churrasqueir", "chuta": "chut", "chutar": "chut", "chute": "chut", "chutei": "chut", "chuteira": "chuteir", "chuteiras": "chuteir", "chutes": "chut", "chutou": "chut", "chuva": "chuv", "chuvas": "chuv", "chuveiro": "chuveir", "chuvoso": "chuvos", "cia": "cia", "ciac": "ciac", "cianê": "cian", "cianogênio": "cianogêni", "ciao": "cia", "ciberbar": "ciberb", "ciberespaço": "ciberespac", "cibernética": "cibernét", "cibernético": "cibernét", "cic": "cic", "cicatriz": "cicatriz", "cicatrização": "cicatriz", "cicatrizar": "cicatriz", "cicatrizei": "cicatriz", "cicatrizes": "cicatriz", "cícero": "cícer", "cíclico": "cíclic", "ciclismo": "ciclism", "ciclista": "ciclist", "ciclo": "cicl", "cics": "cics", "cid": "cid", "cidadania": "cidadan", "cidadão": "cidadã", "cidadãos": "cidadã", "cidade": "cidad", "cidades": "cidad", "cidadezinha": "cidadezinh", "cidadezinhas": "cidadezinh", "cidinha": "cidinh", "cie": "cie", "ciência": "ciênc", "ciências": "ciênc", "científica": "científ", "cientificamente": "cientif", "científicas": "científ", "científico": "científ", "científicos": "científ", "cientista": "cientist", "cientistas": "cientist", "cieps": "cieps", "cifali": "cifal", "cifra": "cifr", "cifras": "cifr", "cifrões": "cifrõ", "cigana": "cigan", "ciganas": "cigan", "cigar": "cig", "cigarro": "cigarr", "cigarros": "cigarr", "ciladas": "cil", "cilene": "cilen", "cilíndrica": "cilíndr", "cilindro": "cilindr", "cilindros": "cilindr", "cima": "cim", "cimento": "ciment", "cimentos": "ciment", "cincinnati": "cincinnat", "cinco": "cinc", "cinderela": "cinderel", "cindy": "cindy", "cine": "cin", "cinearte": "cineart", "cineasta": "cineast", "cineastas": "cineast", "cinecittà": "cinecittà", "cineclube": "cineclub", "cinéfilo": "cinéfil", "cinema": "cinem", "cinemas": "cinem", "cinematográfica": "cinematográf", "cineminha": "cineminh", "cinep": "cinep", "cingapura": "cingapur", "cinismo": "cinism", "cinquenta": "cinquent", "cinqüenta": "cinqüent", "cinquentão": "cinquentã", "cinquentenário": "cinquentenári", "cinqüentenário": "cinqüentenári", "cinqüentões": "cinqüentõ", "cinta": "cint", "cinthya": "cinthy", "cintilante": "cintil", "cintilografia": "cintilograf", "cinto": "cint", "cintos": "cint", "cintra": "cintr", "cintura": "cintur", "cinturinha": "cinturinh", "cinza": "cinz", "cinzas": "cinz", "cinzeiro": "cinzeir", "cinzeiros": "cinzeir", "cinzenta": "cinzent", "cinzento": "cinzent", "cinzentos": "cinzent", "cio": "cio", "cios": "cios", "cip": "cip", "cipó": "cip", "cipriano": "ciprian", "ciranda": "cirand", "circo": "circ", "circuito": "circuit", "circuitos": "circuit", "circula": "circul", "circulação": "circul", "circulam": "circul", "circulando": "circul", "circular": "circul", "circularem": "circul", "circulatória": "circulatór", "circulatório": "circulatóri", "circulava": "circul", "circulem": "circul", "círculo": "círcul", "círculos": "círcul", "circulou": "circul", "circundante": "circund", "circundavam": "circund", "circunstância": "circunst", "circunstancial": "circunstancial", "circunstâncias": "circunstânc", "cirillo": "cirill", "ciro": "cir", "cirrose": "cirros", "cirugia": "cirug", "cirugião": "cirugiã", "cirurgia": "cirurg", "cirurgiã": "cirurgiã", "cirurgião": "cirurgiã", "cirurgias": "cirurg", "cirúrgica": "cirúrg", "cirúrgicas": "cirúrg", "cirúrgico": "cirúrg", "cirúrgicos": "cirúrg", "cis": "cis", "cisjordânia": "cisjordân", "cisma": "cism", "cismaram": "cism", "cisne": "cisn", "cisões": "cisõ", "cística": "cístic", "cisto": "cist", "cistos": "cist", "cita": "cit", "citação": "citaçã", "citadas": "cit", "citado": "cit", "citados": "cit", "citando": "cit", "citar": "cit", "citation": "citation", "cites": "cit", "citiações": "citiaçõ", "citibank": "citibank", "citou": "cit", "cítrico": "cítric", "cítricos": "cítric", "citrocar": "citroc", "city": "city", "ciúme": "ciúm", "ciumento": "ciument", "ciúmes": "ciúm", "cível": "cível", "civic": "civic", "cívicas": "cívic", "cívico": "cívic", "civil": "civil", "civilização": "civiliz", "civilizações": "civiliz", "civilizadas": "civiliz", "civis": "civ", "cl": "cl", "clã": "clã", "clamor": "clamor", "clamorosos": "clamor", "clandestina": "clandestin", "clandestinamente": "clandestin", "clandestinas": "clandestin", "clandestinidade": "clandestin", "clandestino": "clandestin", "clandestinos": "clandestin", "clapton": "clapton", "clara": "clar", "claramente": "clar", "claras": "clar", "clareada": "clar", "clareando": "clar", "clarear": "clar", "clareiam": "clar", "clareira": "clareir", "clareza": "clarez", "clarice": "claric", "claridade": "claridad", "claridge": "claridg", "claríssimo": "claríssim", "clark": "clark", "clarke": "clark", "claro": "clar", "claros": "clar", "classe": "class", "classes": "class", "clássica": "clássic", "clássicas": "clássic", "clássico": "clássic", "clássicos": "clássic", "classics": "classics", "classifica": "classif", "classificação": "classific", "classificada": "classific", "classificadas": "classific", "classificado": "classific", "classificador": "classific", "classificados": "classific", "classificam": "classific", "classificando": "classific", "classificar": "classific", "classificaria": "classific", "classiline": "classilin", "claucerlei": "claucerl", "claudeir": "claud", "claudete": "claudet", "claudia": "claud", "cláudia": "cláud", "claudinho": "claudinh", "claudino": "claudin", "claudio": "claudi", "cláudio": "cláudi", "claúdio": "claúdi", "claudius": "claudius", "cláusula": "cláusul", "clayton": "clayton", "clean": "clean", "cleber": "cleb", "cledson": "cledson", "cléo": "clé", "clérigo": "clérig", "clérigos": "clérig", "clero": "cler", "cleto": "clet", "cleusa": "cleus", "cleveland": "cleveland", "cleverson": "cleverson", "cliente": "client", "clientela": "clientel", "clientelismo": "clientel", "clientes": "client", "clima": "clim", "climas": "clim", "climatério": "climatéri", "climatizada": "climatiz", "climatizadas": "climatiz", "climatizado": "climatiz", "clímax": "clímax", "clínica": "clínic", "clinicamente": "clinic", "clínicas": "clínic", "clínico": "clínic", "clínicos": "clínic", "clinics": "clinics", "clinton": "clinton", "clio": "cli", "clip": "clip", "clipe": "clip", "clipes": "clip", "clique": "cliqu", "cliques": "cliqu", "clitóris": "clitór", "clitoromegalia": "clitoromegal", "clô": "clô", "clock": "clock", "cloé": "clo", "clonada": "clon", "clonagem": "clonag", "clone": "clon", "clorofórmio": "clorofórmi", "clos": "clos", "close": "clos", "closes": "clos", "closet": "closet", "clouseau": "clouseau", "clovis": "clov", "clóvis": "clóv", "club": "club", "clubber": "clubb", "clubbers": "clubbers", "clube": "club", "clubes": "club", "clylton": "clylton", "cm": "cm", "cnbb": "cnbb", "cnn": "cnn", "cnpq": "cnpq", "cnt": "cnt", "co": "co", "coabitação": "coabit", "coadjuvante": "coadjuv", "coagida": "coag", "coagulação": "coagul", "coágulos": "coágul", "coalhado": "coalh", "coalho": "coalh", "coalition": "coalition", "coalizão": "coalizã", "cobaia": "coba", "cobaias": "coba", "cobain": "cobain", "coberta": "cobert", "cobertas": "cobert", "coberto": "cobert", "cobertor": "cobertor", "cobertos": "cobert", "cobertura": "cobertur", "coberturas": "cobertur", "cobiça": "cobic", "cobiçadas": "cobic", "cobiçados": "cobic", "cobiçaram": "cobic", "cobra": "cobr", "cobradas": "cobr", "cobrado": "cobr", "cobrados": "cobr", "cobram": "cobr", "cobrança": "cobranc", "cobranças": "cobranc", "cobrando": "cobr", "cobrar": "cobr", "cobras": "cobr", "cobrava": "cobr", "cobravam": "cobr", "cobravem": "cobrav", "cobre": "cobr", "cobrem": "cobr", "cobria": "cobr", "cobrir": "cobr", "cobriu": "cobr", "cobro": "cobr", "cobrou": "cobr", "coca": "coc", "cocaína": "cocaín", "cochabamba": "cochabamb", "cochichou": "cochich", "cochilam": "cochil", "cochilo": "cochil", "cochin": "cochin", "coco": "coc", "cocô": "cocô", "cocoa": "coco", "cocoricó": "cocoric", "cocos": "coc", "code": "cod", "codec": "codec", "codi": "cod", "codificadora": "codific", "código": "códig", "códigos": "códig", "codinome": "codinom", "codinomes": "codinom", "codis": "cod", "coelho": "coelh", "coelhos": "coelh", "coentro": "coentr", "coerção": "coerçã", "coerente": "coerent", "coeso": "coes", "coffee": "coffe", "cofre": "cofr", "cofres": "cofr", "cogitado": "cogit", "cogitar": "cogit", "cogitou": "cogit", "cohabs": "cohabs", "cohen": "cohen", "coi": "coi", "coibir": "coib", "coimbra": "coimbr", "coincidam": "coincid", "coincidência": "coincident", "coincidências": "coincident", "coincidentemente": "coincident", "coincidia": "coincid", "coincidiu": "coincid", "coisa": "cois", "coisas": "cois", "coita": "coit", "cola": "col", "colabora": "colabor", "colaboração": "colabor", "colaborações": "colabor", "colaborador": "colabor", "colaboradores": "colabor", "colaboram": "colabor", "colaborando": "colabor", "colaborar": "colabor", "colaboraram": "colabor", "colaboravam": "colabor", "colaborou": "colabor", "colada": "col", "colado": "col", "colagem": "colag", "colágeno": "colágen", "colando": "col", "colantes": "colant", "colapso": "colaps", "colar": "col", "colares": "col", "colarinho": "colarinh", "colarinhos": "colarinh", "colas": "col", "colaterais": "colater", "colateral": "colateral", "colava": "col", "colchão": "colchã", "colchões": "colchõ", "cole": "col", "coleção": "coleçã", "coleciona": "colecion", "colecionando": "colecion", "colecionava": "colecion", "coleções": "coleçõ", "colega": "coleg", "colegas": "coleg", "colegiado": "colegi", "colegial": "colegial", "colégio": "colégi", "colégios": "colégi", "coleguinha": "coleguinh", "coleguinhas": "coleguinh", "cólera": "cól", "coléricas": "colér", "coles": "col", "colesterol": "colesterol", "coleta": "colet", "coletado": "colet", "coletados": "colet", "coletando": "colet", "coletâneas": "coletân", "colete": "colet", "coletes": "colet", "coletiva": "colet", "coletivas": "colet", "coletivo": "colet", "coletivos": "colet", "colhe": "colh", "colhedeira": "colhedeir", "colhedeiras": "colhedeir", "colheita": "colheit", "colheitas": "colheit", "colhem": "colh", "colhendo": "colh", "colher": "colh", "colherá": "colh", "colheu": "colh", "colhidas": "colh", "colhido": "colh", "colhidos": "colh", "colho": "colh", "cólicas": "cólic", "colidem": "colid", "colidindo": "colid", "colidiu": "colid", "coligações": "colig", "coligadas": "colig", "coligará": "colig", "colin": "colin", "colina": "colin", "colírio": "colíri", "colisão": "colisã", "collaborative": "collaborativ", "collares": "coll", "colli": "coll", "collin": "collin", "collor": "collor", "colo": "col", "coloboravam": "colobor", "coloca": "coloc", "colocá": "coloc", "colocação": "coloc", "colocada": "coloc", "colocadas": "coloc", "colocado": "coloc", "colocados": "coloc", "colocam": "coloc", "colocamos": "coloc", "colocando": "coloc", "colocar": "coloc", "colocaram": "coloc", "colocarão": "coloc", "colocaria": "coloc", "colocariam": "coloc", "colocarmos": "coloc", "colocasse": "coloc", "colocava": "coloc", "coloco": "coloc", "colocou": "coloc", "colômbia": "colômb", "colombiana": "colombian", "colombianas": "colombian", "colombiano": "colombian", "colombianos": "colombian", "colombo": "colomb", "cólon": "cólon", "colônia": "colôn", "coloniais": "coloni", "colonial": "colonial", "colonialismo": "colonial", "colonização": "coloniz", "colonizado": "coloniz", "colonizadores": "coloniz", "colonizar": "coloniz", "colono": "colon", "colonos": "colon", "coloque": "coloqu", "coloquem": "coloqu", "coloração": "color", "colorado": "color", "coloratura": "coloratur", "colorida": "color", "coloridas": "color", "colorido": "color", "coloridos": "color", "colors": "colors", "colortel": "colortel", "colossais": "coloss", "colossal": "colossal", "columbia": "columb", "colúmbia": "colúmb", "coluna": "colun", "colunas": "colun", "colunáveis": "colun", "colunista": "colun", "com": "com", "coma": "com", "comam": "com", "comanche": "comanch", "comanda": "comand", "comandada": "comand", "comandadas": "comand", "comandado": "comand", "comandados": "comand", "comandam": "comand", "comandande": "comandand", "comandante": "comand", "comandantes": "comand", "comandar": "comand", "comandará": "comand", "comandarem": "comand", "comando": "com", "comandos": "comand", "comandou": "comand", "comarca": "comarc", "comarcas": "comarc", "combalida": "combal", "combalido": "combal", "combate": "combat", "combatê": "combat", "combatem": "combat", "combatendo": "combat", "combatente": "combatent", "combatentes": "combatent", "combater": "combat", "combateram": "combat", "combates": "combat", "combateu": "combat", "combatiam": "combat", "combatida": "combat", "combatido": "combat", "combativa": "combat", "combativo": "combat", "combativos": "combat", "combina": "combin", "combiná": "combin", "combinação": "combin", "combinações": "combin", "combinada": "combin", "combinadas": "combin", "combinado": "combin", "combinador": "combin", "combinam": "combin", "combinamos": "combin", "combinando": "combin", "combinar": "combin", "combinaram": "combin", "combinem": "combin", "combinou": "combin", "comboio": "comboi", "comboios": "comboi", "combustão": "combustã", "combustível": "combust", "come": "com", "comê": "com", "começa": "comec", "começá": "comec", "começado": "comec", "começam": "comec", "começamos": "comec", "começando": "comec", "começar": "comec", "começará": "comec", "começaram": "comec", "começarão": "comec", "começarem": "comec", "começaremos": "comec", "começasse": "comec", "começava": "comec", "começavam": "comec", "comece": "comec", "comecei": "comec", "comecem": "comec", "comecemos": "comec", "começo": "comec", "começou": "comec", "comédia": "coméd", "comediante": "comedi", "comediantes": "comedi", "comedido": "comed", "comedores": "comedor", "comem": "com", "comemora": "comemor", "comemoração": "comemor", "comemorações": "comemor", "comemorada": "comemor", "comemorado": "comemor", "comemoram": "comemor", "comemorando": "comemor", "comemorar": "comemor", "comemoraram": "comemor", "comemorativa": "comemor", "comemorava": "comemor", "comemoravam": "comemor", "comemorou": "comemor", "comemos": "com", "comendo": "com", "comenta": "coment", "comentada": "coment", "comentam": "coment", "comentando": "coment", "comentar": "coment", "comentaram": "coment", "comentário": "comentári", "comentários": "comentári", "comentarista": "comentar", "comentaristas": "comentar", "comentou": "coment", "comer": "com", "comeram": "com", "comerciais": "comerc", "comercial": "comercial", "comercializa": "comercializ", "comercialização": "comercializ", "comercializadas": "comercializ", "comercializados": "comercializ", "comercializam": "comercializ", "comercializando": "comercializ", "comercializar": "comercializ", "comercialmente": "comercial", "comerciante": "comerc", "comerciantes": "comerc", "comerciar": "comerc", "comércio": "comérci", "comeria": "com", "comes": "com", "cometa": "comet", "cometas": "comet", "comete": "comet", "cometem": "comet", "cometemos": "comet", "cometendo": "comet", "cometer": "comet", "cometeram": "comet", "cometerem": "comet", "cometeu": "comet", "cometi": "comet", "cometida": "comet", "cometidas": "comet", "cometido": "comet", "cometidos": "comet", "comeu": "com", "comi": "com", "comia": "com", "comiam": "com", "comíamos": "com", "cômica": "cômic", "comicidade": "comic", "comício": "comíci", "cômico": "cômic", "comida": "com", "comidas": "com", "comido": "com", "comigo": "comig", "comissão": "comissã", "comissária": "comissár", "comissárias": "comissár", "comissário": "comissári", "comissários": "comissári", "comission": "comission", "comissões": "comissõ", "comitê": "comit", "comitiva": "comit", "comjár": "comjár", "commander": "command", "commercial": "commercial", "communicator": "communicator", "como": "com", "comoção": "comoçã", "cômoda": "cômod", "comodidade": "comod", "comodidades": "comod", "comodismo": "comod", "comodo": "comod", "cômodo": "cômod", "cômodos": "cômod", "comovem": "comov", "comovente": "comovent", "comoveu": "comov", "compactas": "compact", "compactos": "compact", "compaixão": "compaixã", "compañero": "compañer", "companheira": "companheir", "companheirada": "companheir", "companheiro": "companheir", "companheiros": "companheir", "companhia": "companh", "companhias": "companh", "company": "company", "compaq": "compaq", "compara": "comp", "compará": "comp", "comparação": "compar", "comparações": "compar", "comparada": "compar", "comparado": "compar", "comparados": "compar", "comparam": "comp", "comparando": "compar", "comparar": "compar", "comparará": "compar", "compararem": "compar", "comparativamente": "compar", "comparativo": "compar", "comparato": "comparat", "comparáveis": "compar", "comparável": "compar", "compare": "compar", "comparecer": "comparec", "compareceram": "comparec", "comparecia": "comparec", "comparou": "compar", "comparsa": "compars", "compartilha": "compartilh", "compartilhada": "compartilh", "compartilhado": "compartilh", "compartilhados": "compartilh", "compartilhamento": "compartilh", "compartilhar": "compartilh", "compartilharam": "compartilh", "compartilhem": "compartilh", "compartimentada": "compartiment", "compartimentaram": "compartiment", "compartimento": "compart", "compatibilizar": "compatibiliz", "compenetrado": "compenetr", "compensa": "compens", "compensá": "compens", "compensação": "compens", "compensações": "compens", "compensada": "compens", "compensado": "compens", "compensados": "compens", "compensam": "compens", "compensar": "compens", "compensasse": "compens", "compenso": "compens", "compensou": "compens", "compete": "compet", "competência": "competent", "competente": "competent", "competentes": "competent", "competia": "compet", "competiam": "compet", "competição": "competiçã", "competições": "competiçõ", "competidores": "competidor", "competir": "compet", "competitiva": "competit", "competitivas": "competit", "competitividade": "competit", "competitivo": "competit", "competitivos": "competit", "compiladas": "compil", "compilado": "compil", "complacência": "complacent", "complementa": "complement", "complementação": "complement", "complementar": "complement", "complementares": "complement", "complemento": "complement", "complementos": "complement", "complementou": "complement", "completa": "complet", "completada": "complet", "completado": "complet", "completados": "complet", "completam": "complet", "completamente": "complet", "completando": "complet", "completar": "complet", "completará": "complet", "completas": "complet", "completava": "complet", "completinho": "completinh", "completo": "complet", "completos": "complet", "completou": "complet", "complexa": "complex", "complexada": "complex", "complexas": "complex", "complexidade": "complex", "complexidades": "complex", "complexo": "complex", "complexos": "complex", "complica": "complic", "complicação": "complic", "complicações": "complic", "complicada": "complic", "complicadas": "complic", "complicadíssima": "complicadíssim", "complicado": "complic", "complicador": "complic", "complicados": "complic", "complicando": "complic", "complicar": "complic", "complicava": "complic", "complicou": "complic", "complô": "complô", "compõe": "compõ", "compõem": "compõ", "compondo": "compond", "componente": "component", "componentes": "component", "compor": "compor", "comporta": "comport", "comportada": "comport", "comportadíssima": "comportadíssim", "comportado": "comport", "comportamental": "comportamental", "comportamento": "comport", "comportamentos": "comport", "comportar": "comport", "comportava": "comport", "compôs": "compôs", "composição": "composiçã", "composições": "composiçõ", "compositor": "compositor", "compositores": "compositor", "composta": "compost", "compostas": "compost", "composto": "compost", "compostos": "compost", "compra": "compr", "comprá": "compr", "comprada": "compr", "compradas": "compr", "comprado": "compr", "comprador": "comprador", "compradoras": "comprador", "compradores": "comprador", "comprados": "compr", "compram": "compr", "compramos": "compr", "comprando": "compr", "comprar": "compr", "compraram": "compr", "compraria": "compr", "compras": "compr", "comprasse": "compr", "comprava": "compr", "compravam": "compr", "compre": "compr", "compreende": "compreend", "compreendem": "compreend", "compreendemos": "compreend", "compreender": "compreend", "compreenderam": "compreend", "compreendidas": "compreend", "compreendido": "compreend", "compreensão": "compreensã", "compreensiva": "compreens", "compreensível": "compreens", "compreensivo": "compreens", "comprei": "compr", "compresp": "compresp", "compressão": "compressã", "compressas": "compress", "compressor": "compressor", "comprida": "compr", "compridão": "compridã", "compridas": "compr", "comprido": "compr", "compridos": "compr", "comprimento": "compriment", "comprimidas": "comprim", "comprimido": "comprim", "comprimidos": "comprim", "compro": "compr", "compromete": "compromet", "comprometedor": "comprometedor", "comprometedoras": "comprometedor", "comprometedores": "comprometedor", "comprometem": "compromet", "comprometendo": "compromet", "comprometer": "compromet", "comprometeu": "compromet", "comprometiam": "compromet", "comprometida": "compromet", "comprometido": "compromet", "comprometimento": "compromet", "compromisso": "compromiss", "compromissos": "compromiss", "comprou": "compr", "comprova": "comprov", "comprovação": "comprov", "comprovada": "comprov", "comprovadamente": "comprov", "comprovadas": "comprov", "comprovado": "comprov", "comprovados": "comprov", "comprovam": "comprov", "comprovar": "comprov", "comprovaram": "comprov", "comprovaria": "comprov", "comprovou": "comprov", "compulsão": "compulsã", "compulsivamente": "compuls", "compulsivo": "compuls", "compulsivos": "compuls", "compulsoriamente": "compulsori", "compulsório": "compulsóri", "compunha": "compunh", "computação": "comput", "computador": "comput", "computadores": "comput", "computadorizada": "computadoriz", "computadorizado": "computadoriz", "computando": "comput", "computar": "comput", "computava": "comput", "computável": "comput", "computer": "comput", "comum": "comum", "comungar": "comung", "comunhão": "comunhã", "comunica": "comun", "comunicação": "comunic", "comunicações": "comunic", "comunicada": "comunic", "comunicador": "comunic", "comunicam": "comunic", "comunicar": "comunic", "comunicaram": "comunic", "comunicou": "comunic", "comunidade": "comun", "comunidades": "comun", "comunismo": "comun", "comunista": "comun", "comunistas": "comun", "comunitária": "comunitár", "comunitárias": "comunitár", "comunitário": "comunitári", "comunitários": "comunitári", "comuns": "comuns", "conab": "conab", "conaf": "conaf", "concebeu": "conceb", "concebido": "conceb", "concede": "conced", "concedei": "conced", "concedendo": "conced", "conceder": "conced", "concederá": "conced", "concedeu": "conced", "concedi": "conced", "concedida": "conced", "concedido": "conced", "concedidos": "conced", "conceição": "conceiçã", "conceito": "conceit", "conceitos": "conceit", "conceituada": "conceitu", "conceituado": "conceitu", "conceituados": "conceitu", "conceitual": "conceitual", "concentra": "concentr", "concentração": "concentr", "concentrações": "concentr", "concentrada": "concentr", "concentrado": "concentr", "concentrados": "concentr", "concentram": "concentr", "concentrando": "concentr", "concentrar": "concentr", "concentravam": "concentr", "concentrou": "concentr", "concepção": "concepçã", "concert": "concert", "concertos": "concert", "concessão": "concessã", "concessionária": "concessionár", "concessões": "concessõ", "conchas": "conch", "conciliar": "concili", "conciliou": "concili", "conclui": "conclu", "concluía": "concluí", "concluídas": "concluíd", "concluído": "concluíd", "concluindo": "conclu", "concluir": "conclu", "concluíram": "concluír", "concluiriam": "conclu", "concluiu": "conclu", "conclusão": "conclusã", "conclusivo": "conclus", "conclusivos": "conclus", "conclusões": "conclusõ", "concone": "concon", "concorda": "concord", "concordado": "concord", "concordam": "concord", "concordar": "concord", "concordassem": "concord", "concordata": "concordat", "concordava": "concord", "concórdia": "concórd", "concordo": "concord", "concordou": "concord", "concorre": "concorr", "concorrem": "concorr", "concorrência": "concorrent", "concorrendo": "concorr", "concorrente": "concorrent", "concorrentes": "concorrent", "concorrer": "concorr", "concorria": "concorr", "concorrida": "concorr", "concorrido": "concorr", "concreta": "concret", "concretamente": "concret", "concretas": "concret", "concretista": "concret", "concretizá": "concretiz", "concretização": "concretiz", "concretizado": "concretiz", "concretizando": "concretiz", "concretizar": "concretiz", "concreto": "concret", "concretos": "concret", "concurso": "concurs", "concursos": "concurs", "condão": "condã", "conde": "cond", "condecoração": "condecor", "condena": "conden", "condenação": "conden", "condenações": "conden", "condenada": "conden", "condenado": "conden", "condenados": "conden", "condenam": "conden", "condenando": "conden", "condenar": "conden", "condenava": "conden", "condenável": "conden", "condenou": "conden", "condensa": "condens", "condephaat": "condephaat", "condescendente": "condescendent", "condição": "condiçã", "condicionada": "condicion", "condicionado": "condicion", "condicional": "condicional", "condicionamento": "condicion", "condicionou": "condicion", "condições": "condiçõ", "condimentar": "condiment", "condizente": "condizent", "condomínio": "condomíni", "condomínios": "condomíni", "condução": "conduçã", "conduções": "conduçõ", "conduta": "condut", "condutas": "condut", "conduz": "conduz", "conduzia": "conduz", "conduzidas": "conduz", "conduzidos": "conduz", "conduzindo": "conduz", "conduzir": "conduz", "conduziria": "conduz", "conduziu": "conduz", "cone": "con", "conecta": "conect", "conectadas": "conect", "conectassem": "conect", "conectava": "conect", "conexão": "conexã", "conexões": "conexõ", "confecção": "confecçã", "confeccionadas": "confeccion", "confeccionado": "confeccion", "confeccionar": "confeccion", "confeccionistas": "confeccion", "confecções": "confecçõ", "confederação": "confeder", "confederações": "confeder", "conference": "conferenc", "conferência": "conferent", "conferenciaram": "conferenc", "conferências": "conferent", "conferiam": "conf", "conferido": "confer", "conferimos": "confer", "conferindo": "confer", "conferir": "confer", "conferisse": "confer", "conferíssemos": "confer", "conferiu": "confer", "confessa": "confess", "confessado": "confess", "confessam": "confess", "confessando": "confess", "confessasse": "confess", "confessional": "confessional", "confesso": "confess", "confessos": "confess", "confessou": "confess", "confia": "conf", "confiabilidade": "confiabil", "confiada": "confi", "confiança": "confianc", "confiante": "confiant", "confiantes": "confiant", "confiar": "confi", "confiava": "confi", "confiáveis": "confi", "confiável": "confiável", "confidenciais": "confidenc", "confidencial": "confidencial", "confidenciam": "confidenc", "configura": "configur", "configuração": "configur", "confinado": "confin", "confinados": "confin", "confinamento": "confin", "confins": "confins", "confio": "confi", "confiou": "confi", "confirma": "confirm", "confirmação": "confirm", "confirmada": "confirm", "confirmadas": "confirm", "confirmado": "confirm", "confirmados": "confirm", "confirmam": "confirm", "confirmando": "confirm", "confirmar": "confirm", "confirmasse": "confirm", "confirme": "confirm", "confirmou": "confirm", "confiscadas": "confisc", "confiscado": "confisc", "confiscar": "confisc", "confiscaram": "confisc", "confissão": "confissã", "confissões": "confissõ", "conflitantes": "conflit", "conflito": "conflit", "conflitos": "conflit", "conflituosas": "conflitu", "confluíram": "confluír", "conforma": "conform", "conformacional": "conformacional", "conformando": "conform", "conformar": "conform", "conforme": "conform", "conformei": "conform", "conformou": "conform", "confortá": "confort", "confortáveis": "confort", "confortável": "confort", "confortavelmente": "confort", "conforto": "confort", "confraternizar": "confraterniz", "confronta": "confront", "confrontada": "confront", "confrontado": "confront", "confrontar": "confront", "confronto": "confront", "confrontos": "confront", "confunde": "confund", "confundem": "confund", "confundida": "confund", "confundidas": "confund", "confundido": "confund", "confundindo": "confund", "confundiu": "confund", "confusa": "confus", "confusão": "confusã", "confuso": "confus", "confusões": "confusõ", "confusos": "confus", "congela": "congel", "congeladas": "congel", "congelado": "congel", "congelados": "congel", "congelamento": "congel", "congelando": "congel", "congelar": "congel", "congestiona": "congestion", "congestionada": "congestion", "congestionam": "congestion", "congestionamento": "congestion", "congestionamentos": "congestion", "conglomerado": "conglomer", "congonhas": "congonh", "congratulo": "congratul", "congrega": "congreg", "congregação": "congreg", "congregacional": "congregacional", "congregações": "congreg", "congregava": "congreg", "congressistas": "congress", "congresso": "congress", "congressos": "congress", "conhaque": "conhaqu", "conheça": "conhec", "conheçam": "conhec", "conhece": "conhec", "conhecê": "conhec", "conhecedor": "conhecedor", "conhecem": "conhec", "conhecemos": "conhec", "conhecendo": "conhec", "conhecer": "conhec", "conhecera": "conhec", "conheceram": "conhec", "conhecerem": "conhec", "conhecesse": "conhec", "conheceu": "conhec", "conheci": "conhec", "conhecia": "conhec", "conheciam": "conhec", "conhecida": "conhec", "conhecidas": "conhec", "conhecido": "conhec", "conhecidos": "conhec", "conhecimento": "conhec", "conhecimentos": "conhec", "conheço": "conhec", "conivência": "conivent", "conivente": "conivent", "conjectura": "conjectur", "conjugais": "conjug", "conjugal": "conjugal", "cônjuge": "cônjug", "cônjuges": "cônjug", "conjunção": "conjunçã", "conjunta": "conjunt", "conjuntas": "conjunt", "conjunto": "conjunt", "conjuntos": "conjunt", "conjuntura": "conjuntur", "conluio": "conlui", "connery": "connery", "conosco": "conosc", "conquista": "conquist", "conquistá": "conquist", "conquistada": "conquist", "conquistado": "conquist", "conquistador": "conquist", "conquistados": "conquist", "conquistam": "conquist", "conquistando": "conquist", "conquistar": "conquist", "conquistaram": "conquist", "conquistas": "conquist", "conquistei": "conquist", "conquistou": "conquist", "conrado": "conr", "consagração": "consagr", "consagrada": "consagr", "consagradas": "consagr", "consagrado": "consagr", "consagrados": "consagr", "consagrar": "consagr", "consagrou": "consagr", "consciência": "consciênc", "consciente": "conscient", "conscientemente": "conscient", "conscientes": "conscient", "conscientização": "conscientiz", "conscientizar": "conscientiz", "consecutivo": "consecut", "consecutivos": "consecut", "consegue": "conseg", "conseguem": "consegu", "consegui": "consegu", "conseguia": "consegu", "conseguiam": "consegu", "conseguida": "consegu", "conseguido": "consegu", "conseguimos": "consegu", "conseguindo": "consegu", "conseguir": "consegu", "conseguira": "consegu", "conseguirá": "consegu", "conseguiram": "consegu", "conseguirão": "consegu", "conseguirei": "consegu", "conseguirem": "consegu", "conseguiria": "consegu", "conseguiriam": "consegu", "conseguisse": "consegu", "conseguissem": "consegu", "conseguiu": "consegu", "conselheiro": "conselheir", "conselheiros": "conselheir", "conselho": "conselh", "conselhos": "conselh", "consenso": "consens", "consensual": "consensual", "consente": "consent", "consequência": "consequent", "conseqüência": "conseqüent", "consequências": "consequent", "conseqüências": "conseqüent", "consequente": "consequent", "conseqüente": "conseqüent", "conseqüentemente": "conseqüent", "conserta": "consert", "consertá": "consert", "consertando": "consert", "consertar": "consert", "consertos": "consert", "consertou": "consert", "conserva": "conserv", "conservação": "conserv", "conservada": "conserv", "conservado": "conserv", "conservador": "conserv", "conservadora": "conserv", "conservadoras": "conserv", "conservadores": "conserv", "conservadorismo": "conservador", "conservados": "conserv", "conservam": "conserv", "conservantes": "conserv", "conservar": "conserv", "conservation": "conservation", "conservatório": "conservatóri", "considera": "consid", "considerá": "consid", "consideração": "consider", "considerações": "consider", "considerada": "consider", "consideradas": "consider", "considerado": "consider", "considerados": "consider", "consideram": "consid", "consideramos": "consider", "considerando": "consider", "considerar": "consider", "considerava": "consider", "consideravam": "consider", "considerável": "consider", "consideravelmente": "consider", "considere": "consider", "considerei": "consid", "considero": "consider", "considerou": "consider", "consiga": "consig", "consigam": "consig", "consigo": "consig", "consiste": "cons", "consistem": "consist", "consistência": "consistent", "consistente": "consistent", "consistentes": "consistent", "consistia": "consist", "consolando": "consol", "consolar": "consol", "consoles": "consol", "consolida": "consol", "consolidação": "consolid", "consolidada": "consolid", "consolidadas": "consolid", "consolidar": "consolid", "consolidasse": "consolid", "consolo": "consol", "consome": "consom", "consomem": "consom", "consórcio": "consórci", "consórcios": "consórci", "consortium": "consortium", "conspiração": "conspir", "conspurcando": "conspurc", "consta": "const", "constam": "const", "constança": "constanc", "constância": "constânc", "constante": "constant", "constantemente": "constant", "constantes": "constant", "constantinopla": "constantinopl", "constata": "constat", "constatação": "constat", "constatada": "constat", "constatadas": "constat", "constatado": "constat", "constatamos": "constat", "constatando": "constat", "constatar": "constat", "constataram": "constat", "constatarmos": "constat", "constatou": "constat", "constava": "const", "constelação": "constel", "constestador": "constest", "constitucionais": "constitucion", "constitucional": "constitucional", "constitucionalmente": "constitucional", "constitui": "constitu", "constituição": "constituiçã", "constituída": "constituíd", "constituído": "constituíd", "constituinte": "constituint", "constituintes": "constituint", "constrange": "constrang", "constrangedor": "constrangedor", "constrangedora": "constrangedor", "constrangedoras": "constrangedor", "constrangido": "constrang", "constrangidos": "constrang", "constrangimento": "constrang", "constrangimentos": "constrang", "constroem": "constro", "constrói": "constró", "construa": "constru", "construção": "construçã", "construcionismo": "construcion", "construções": "construçõ", "construí": "constru", "construída": "construíd", "construídas": "construíd", "construído": "construíd", "construídos": "construíd", "construímos": "construím", "construindo": "constru", "construir": "constru", "construirá": "constru", "construíram": "construír", "construiu": "constru", "construtiva": "construt", "construtor": "construtor", "construtora": "construtor", "construtoras": "construtor", "consuelo": "consuel", "cônsul": "cônsul", "consulado": "consul", "consulados": "consul", "consulta": "consult", "consultá": "consult", "consultadas": "consult", "consultado": "consult", "consultados": "consult", "consultam": "consult", "consultar": "consult", "consultaram": "consult", "consultarem": "consult", "consultas": "consult", "consultava": "consult", "consulting": "consulting", "consultivo": "consult", "consulto": "consult", "consultor": "consultor", "consultora": "consultor", "consultores": "consultor", "consultoria": "consultor", "consultorias": "consultor", "consultório": "consultóri", "consultórios": "consultóri", "consultou": "consult", "consumação": "consum", "consumando": "consum", "consumar": "consum", "consumida": "consum", "consumidas": "consum", "consumido": "consum", "consumidor": "consumidor", "consumidores": "consumidor", "consumidos": "consum", "consumindo": "consum", "consumir": "consum", "consumiram": "consum", "consumismo": "consum", "consumista": "consum", "consumistas": "consum", "consumiu": "consum", "consumo": "consum", "conta": "cont", "contá": "cont", "contábeis": "contáb", "contábil": "contábil", "contabilidade": "contabil", "contabiliza": "contabiliz", "contabilizada": "contabiliz", "contabilizado": "contabiliz", "contabilizados": "contabiliz", "contabilizar": "contabiliz", "contabilizaram": "contabiliz", "contabilizou": "contabiliz", "contact": "contact", "contada": "cont", "contadas": "cont", "contado": "cont", "contador": "contador", "contadora": "contador", "contadores": "contador", "contados": "cont", "contagem": "contag", "contagiante": "contagi", "contágio": "contági", "contam": "cont", "contamina": "contamin", "contaminação": "contamin", "contaminada": "contamin", "contaminado": "contamin", "contaminados": "contamin", "contaminam": "contamin", "contaminou": "contamin", "contamos": "cont", "contando": "cont", "contar": "cont", "contara": "cont", "contará": "cont", "contaram": "cont", "contardo": "contard", "contas": "cont", "contasse": "cont", "contataram": "contat", "contato": "contat", "contatos": "contat", "contatou": "contat", "contava": "cont", "contavam": "cont", "conte": "cont", "contê": "cont", "contei": "cont", "contêineres": "contêin", "contem": "cont", "contém": "contém", "contêm": "contêm", "contempla": "contempl", "contemplada": "contempl", "contemplados": "contempl", "contemplando": "contempl", "contemporânea": "contemporân", "contemporâneo": "contemporân", "contemporâneos": "contemporân", "contenção": "contençã", "contendo": "cont", "contentar": "content", "contente": "content", "contentes": "content", "conter": "cont", "conterrâneas": "conterrân", "conterrâneo": "conterrân", "conterrâneos": "conterrân", "contesta": "contest", "contestada": "contest", "contestado": "contest", "contestadora": "contest", "contestamos": "contest", "contestando": "contest", "contestar": "contest", "contestou": "contest", "conteúdo": "conteúd", "conteúdos": "conteúd", "conteve": "contev", "contexto": "context", "conti": "cont", "contida": "cont", "contidas": "cont", "contido": "cont", "contigente": "contigent", "contigo": "contig", "contíguos": "contígu", "continências": "continent", "continental": "continental", "continente": "continent", "continentes": "continent", "contingências": "contingent", "contingente": "contingent", "continha": "continh", "continua": "continu", "contínua": "contínu", "continuação": "continu", "continuações": "continu", "continuada": "continu", "continuado": "continu", "continuam": "continu", "continuando": "continu", "continuar": "continu", "continuará": "continu", "continuaram": "continu", "continuarão": "continu", "continuarei": "continu", "continuaria": "continu", "continuarmos": "continu", "continuasse": "continu", "continuava": "continu", "continuavam": "continu", "continue": "continu", "continuidade": "continu", "continuo": "continu", "contínuo": "contínu", "contínuos": "contínu", "continuou": "continu", "contive": "contiv", "conto": "cont", "contornado": "contorn", "contornar": "contorn", "contornara": "contorn", "contorno": "contorn", "contornos": "contorn", "contos": "cont", "contou": "cont", "contra": "contr", "contrabalança": "contrabalanc", "contrabalançar": "contrabalanc", "contrabalançarem": "contrabalanc", "contrabandeadas": "contraband", "contrabandeou": "contraband", "contrabando": "contrab", "contracapa": "contracap", "contracena": "contracen", "contraceptivos": "contracept", "contradição": "contradiçã", "contradições": "contradiçõ", "contraditória": "contraditór", "contraditórias": "contraditór", "contraditório": "contraditóri", "contragosto": "contragost", "contraídas": "contraíd", "contraindo": "contra", "contrair": "contra", "contraíram": "contraír", "contramão": "contramã", "contramaré": "contramar", "contrapartida": "contrapart", "contrapeso": "contrapes", "contraponha": "contraponh", "contrapor": "contrapor", "contraposições": "contraposiçõ", "contrapropôs": "contrapropôs", "contraria": "contr", "contrária": "contrár", "contrariado": "contrari", "contrariados": "contrari", "contrariamente": "contrari", "contrariando": "contrari", "contrariar": "contrari", "contrárias": "contrár", "contrariedades": "contrariedad", "contrário": "contrári", "contrários": "contrári", "contras": "contr", "contrasenso": "contrasens", "contrasta": "contrast", "contrastantes": "contrast", "contrastava": "contrast", "contraste": "contr", "contrastes": "contr", "contrata": "contrat", "contratação": "contrat", "contratações": "contrat", "contratada": "contrat", "contratadas": "contrat", "contratado": "contrat", "contratador": "contrat", "contratados": "contrat", "contratam": "contrat", "contratando": "contrat", "contratar": "contrat", "contrataram": "contrat", "contrataria": "contrat", "contratei": "contrat", "contratempo": "contratemp", "contratempos": "contratemp", "contrato": "contrat", "contratos": "contrat", "contratou": "contrat", "contravenção": "contravençã", "contraventor": "contraventor", "contraventores": "contraventor", "contreiras": "contreir", "contribui": "contribu", "contribuição": "contribuiçã", "contribuições": "contribuiçõ", "contribuído": "contribuíd", "contribuinte": "contribuint", "contribuintes": "contribuint", "contribuir": "contribu", "contribuíram": "contribuír", "contribuiu": "contribu", "controla": "control", "controlada": "control", "controladas": "control", "controlado": "control", "controlador": "control", "controladora": "control", "controladores": "control", "controlados": "control", "controlam": "control", "controlando": "control", "controlar": "control", "controlavam": "control", "controle": "control", "controles": "control", "controlo": "control", "controlou": "control", "controversa": "controvers", "controvérsia": "controvérs", "controvérsias": "controvérs", "controverso": "controvers", "controvertida": "controvert", "contudo": "contud", "contundente": "contundent", "contundentes": "contundent", "conturbada": "conturb", "conturbado": "conturb", "contusão": "contusã", "convalescendo": "convalesc", "convém": "convém", "convenção": "convençã", "convence": "convenc", "convencê": "convenc", "convencer": "convenc", "convenceram": "convenc", "convenceu": "convenc", "convencia": "convenc", "convencido": "convenc", "convencidos": "convenc", "convencionais": "convencion", "convencional": "convencional", "convencionou": "convencion", "convenções": "convençõ", "conveniência": "convenient", "conveniente": "convenient", "convenientes": "convenient", "convênio": "convêni", "convênios": "convêni", "convento": "convent", "conventos": "convent", "convergências": "convergent", "conversa": "convers", "conversado": "convers", "conversam": "convers", "conversamos": "convers", "conversando": "convers", "conversão": "conversã", "conversar": "convers", "conversarmos": "convers", "conversas": "convers", "conversava": "convers", "conversavam": "convers", "conversei": "convers", "conversinhas": "conversinh", "conversíveis": "conversív", "conversível": "convers", "converso": "convers", "conversões": "conversõ", "conversora": "conversor", "conversou": "convers", "convertê": "convert", "converter": "convert", "converteram": "convert", "converteu": "convert", "convertida": "convert", "convertidas": "convert", "convertido": "convert", "convertidos": "convert", "convés": "convés", "convicção": "convicçã", "convicções": "convicçõ", "convicência": "convicent", "convicta": "convict", "convicto": "convict", "convida": "conv", "convidá": "convid", "convidada": "convid", "convidadas": "convid", "convidado": "convid", "convidados": "convid", "convidando": "convid", "convidar": "convid", "convidaram": "convid", "convidaria": "convid", "convidativa": "convid", "convidativo": "convid", "convidei": "convid", "convidou": "convid", "convincente": "convincent", "convincentes": "convincent", "convite": "convit", "convites": "convit", "convive": "conviv", "convivem": "conviv", "convivemos": "conviv", "convivência": "convivent", "convivências": "convivent", "convivendo": "conviv", "conviver": "conviv", "conviverá": "conviv", "conviveu": "conviv", "conviviam": "conviv", "convívio": "convívi", "convivo": "conviv", "convoca": "convoc", "convocação": "convoc", "convocada": "convoc", "convocadas": "convoc", "convocado": "convoc", "convocados": "convoc", "convocam": "convoc", "convocando": "convoc", "convocar": "convoc", "convocara": "convoc", "convocaram": "convoc", "convocava": "convoc", "convocou": "convoc", "cony": "cony", "cool": "cool", "cooper": "coop", "cooperação": "cooper", "cooperada": "cooper", "cooperado": "cooper", "cooperados": "cooper", "cooperativa": "cooper", "cooperativas": "cooper", "coordena": "coorden", "coordenação": "coorden", "coordenada": "coorden", "coordenado": "coorden", "coordenador": "coorden", "coordenadora": "coorden", "coordenadores": "coorden", "coordenamos": "coorden", "coordenar": "coorden", "coordenava": "coorden", "coordeno": "coorden", "coordenou": "coorden", "copa": "cop", "copacabana": "copacaban", "copas": "cop", "copia": "cop", "cópia": "cóp", "copiá": "copi", "copiada": "copi", "copiado": "copi", "copiam": "cop", "copiando": "copi", "copiar": "copi", "cópias": "cóp", "copiem": "copi", "copioso": "copios", "copiou": "copi", "copo": "cop", "copos": "cop", "copperfield": "copperfield", "cópula": "cópul", "copulando": "copul", "copular": "copul", "copyright": "copyright", "coqueiro": "coqueir", "coqueiros": "coqueir", "coqueluche": "coqueluch", "coquetéis": "coquet", "coquetel": "coquetel", "cor": "cor", "coração": "coraçã", "corações": "coraçõ", "coragem": "corag", "corais": "cor", "corajosa": "coraj", "corajosamente": "coraj", "corajosas": "coraj", "corajoso": "coraj", "corajosos": "coraj", "coral": "coral", "corcovado": "corcov", "corda": "cord", "cordão": "cordã", "cordas": "cord", "cordata": "cordat", "cordato": "cordat", "cordeiro": "cordeir", "cordial": "cordial", "cordilheira": "cordilheir", "cordilheiras": "cordilheir", "córdoba": "córdob", "coreano": "corean", "coreanos": "corean", "coréia": "cor", "corel": "corel", "coreografia": "coreograf", "coreografias": "coreograf", "coreógrafos": "coreógraf", "cores": "cor", "corey": "corey", "corgan": "corgan", "corine": "corin", "corinthiana": "corinthian", "corinthians": "corinthians", "corisco": "corisc", "corn": "corn", "cornell": "cornell", "corner": "corn", "cornhill": "cornhill", "coro": "cor", "coroa": "coro", "coroada": "coro", "coroado": "coro", "coroamento": "coroament", "coroar": "coro", "coroas": "coro", "corolário": "corolári", "coronária": "coronár", "coronel": "coronel", "coros": "cor", "corpinho": "corpinh", "corpo": "corp", "corporação": "corpor", "corporações": "corpor", "corporal": "corporal", "corporation": "corporation", "corporativa": "corpor", "corporativismo": "corporativ", "corporativo": "corpor", "corporativos": "corpor", "corpórea": "corpór", "corpos": "corp", "corps": "corps", "corpus": "corpus", "corradini": "corradin", "corre": "corr", "correa": "corr", "corrêa": "corr", "correção": "correçã", "correções": "correçõ", "corredor": "corredor", "corredores": "corredor", "corregedor": "corregedor", "corregedoria": "corregedor", "correia": "corr", "correição": "correiçã", "correições": "correiçõ", "correio": "correi", "correios": "correi", "correlatos": "correlat", "correligionários": "correligionári", "correm": "corr", "correndo": "corr", "corrente": "corrent", "correntes": "corrent", "correnteza": "corrent", "correntistas": "corrent", "correr": "corr", "correram": "corr", "correria": "corr", "correriam": "corr", "corresponde": "correspond", "correspondem": "correspond", "correspondência": "correspondent", "correspondências": "correspondent", "correspondente": "correspondent", "corresponder": "correspond", "correspondida": "correspond", "correspondido": "correspond", "correta": "corret", "corretamente": "corret", "corretas": "corret", "corretivo": "corret", "correto": "corret", "corretor": "corretor", "corretora": "corretor", "corretoras": "corretor", "corretores": "corretor", "corretos": "corret", "correu": "corr", "corri": "corr", "corria": "corr", "corriam": "corr", "corrida": "corr", "corridas": "corr", "corrido": "corr", "corrigi": "corrig", "corrigido": "corrig", "corrigidos": "corrig", "corrigir": "corrig", "corrigirmos": "corrig", "corrimentos": "corriment", "corriqueira": "corriqueir", "corriqueiras": "corriqueir", "corriqueiros": "corriqueir", "corriveau": "corriveau", "corroborada": "corrobor", "corroem": "corro", "corroída": "corroíd", "corrompendo": "corromp", "corrupção": "corrupçã", "corrupto": "corrupt", "corruptos": "corrupt", "corta": "cort", "cortada": "cort", "cortadas": "cort", "cortado": "cort", "cortador": "cortador", "cortados": "cort", "cortam": "cort", "cortamos": "cort", "cortando": "cort", "cortante": "cortant", "cortar": "cort", "cortaram": "cort", "cortava": "cort", "corte": "cort", "cortei": "cort", "cortejada": "cortej", "cortejo": "cortej", "cortes": "cort", "côrtes": "côrt", "cortês": "cortês", "cortesãos": "cortesã", "cortesia": "cortes", "cortiços": "cortic", "cortinas": "cortin", "cortisona": "cortison", "cortou": "cort", "coruja": "coruj", "cos": "cos", "cosette": "cosett", "cosidera": "cosid", "cosmética": "cosmét", "cosmético": "cosmét", "cosméticos": "cosmét", "cósmica": "cósmic", "cósmico": "cósmic", "cosmo": "cosm", "cosmódromo": "cosmódrom", "cosmologia": "cosmolog", "cosmológica": "cosmológ", "cosmologista": "cosmolog", "cosmopolitan": "cosmopolitan", "cosmopolitismo": "cosmopolit", "cosmos": "cosm", "cossacos": "cossac", "costa": "cost", "costanza": "costanz", "costas": "cost", "costeiras": "costeir", "costeiros": "costeir", "costela": "costel", "costelas": "costel", "costeletas": "costelet", "costello": "costell", "costi": "cost", "costuma": "costum", "costumam": "costum", "costumava": "costum", "costumavam": "costum", "costume": "costum", "costumes": "costum", "costumo": "costum", "costura": "costur", "costurada": "costur", "costurado": "costur", "costurar": "costur", "costuras": "costur", "costureira": "costureir", "costureiras": "costureir", "costureiros": "costureir", "costuro": "costur", "costurou": "costur", "cota": "cot", "cotação": "cotaçã", "cotações": "cotaçõ", "cotado": "cot", "cotados": "cot", "cotas": "cot", "côte": "côt", "cotecchino": "cotecchin", "cotejadas": "cotej", "cotidiana": "cotidian", "cotidianas": "cotidian", "cotidiano": "cotidian", "cotovelo": "cotovel", "coube": "coub", "coubesse": "coub", "couraça": "courac", "couro": "cour", "cours": "cours", "courtney": "courtney", "cousteau": "cousteau", "couto": "cout", "couturié": "couturi", "covarde": "covard", "covardemente": "covard", "covas": "cov", "coveiro": "coveir", "covello": "covell", "covers": "covers", "covo": "cov", "coxa": "cox", "coxas": "cox", "cozidas": "coz", "cozido": "coz", "cozimento": "coziment", "cozinha": "cozinh", "cozinhando": "cozinh", "cozinhar": "cozinh", "cozinhe": "cozinh", "cozinheira": "cozinheir", "cozinheiras": "cozinheir", "cozinheiro": "cozinheir", "cozinheiros": "cozinheir", "cpi": "cpi", "cpis": "cpis", "cpmf": "cpmf", "cptzão": "cptzã", "cpu": "cpu", "cr": "cr", "cracão": "cracã", "crack": "crack", "craft": "craft", "craig": "craig", "craniano": "cranian", "crânio": "crâni", "crânios": "crâni", "craque": "craqu", "craques": "craqu", "cratera": "crat", "crateras": "crat", "cravá": "crav", "cravados": "crav", "cravarmos": "crav", "craveiro": "craveir", "cravo": "crav", "cravou": "crav", "crawford": "crawford", "creche": "crech", "creches": "crech", "credencia": "credenc", "credenciado": "credenc", "credenciados": "credenc", "credenciais": "credenc", "credenciamento": "credenc", "crediário": "crediári", "credibilidade": "credibil", "credicard": "credicard", "credita": "credit", "creditar": "credit", "crédito": "crédit", "créditos": "crédit", "creditou": "credit", "credor": "credor", "credores": "credor", "crêem": "crê", "crefisul": "crefisul", "creio": "crei", "cremação": "cremaçã", "cremado": "crem", "cremar": "crem", "cremasco": "cremasc", "crematório": "crematóri", "creme": "crem", "cremes": "crem", "cremesp": "cremesp", "cremilda": "cremild", "cremosos": "cremos", "crença": "crenc", "crenças": "crenc", "crente": "crent", "crentes": "crent", "crepe": "crep", "crer": "crer", "cresça": "cresc", "cresçam": "cresc", "cresce": "cresc", "crescem": "cresc", "crescendo": "cresc", "crescente": "crescent", "crescentes": "crescent", "crescer": "cresc", "cresceram": "cresc", "cresceu": "cresc", "cresciam": "cresc", "crescidinha": "crescidinh", "crescido": "cresc", "crescidos": "cresc", "crescimento": "cresciment", "crespos": "cresp", "cria": "cri", "criá": "cri", "criação": "criaçã", "criacionista": "criacion", "criações": "criaçõ", "criada": "cri", "criadas": "cri", "criado": "cri", "criador": "criador", "criadores": "criador", "criados": "cri", "criadouros": "criadour", "criam": "cri", "criança": "crianc", "criançada": "crianc", "crianças": "crianc", "criancinha": "criancinh", "criancinhas": "criancinh", "criando": "cri", "criar": "cri", "criará": "cri", "criaram": "cri", "criariam": "cri", "criasse": "cri", "criativas": "criativ", "criatividade": "criativ", "criativo": "criativ", "criativos": "criativ", "criatura": "criatur", "criaturas": "criatur", "criavam": "cri", "crichton": "crichton", "crick": "crick", "crie": "cri", "criem": "cri", "crigor": "crigor", "crime": "crim", "crimes": "crim", "criminais": "crimin", "criminal": "criminal", "criminalidade": "criminal", "criminalista": "criminal", "criminalistas": "criminal", "criminalística": "criminalíst", "criminosas": "crimin", "criminoso": "crimin", "criminosos": "crimin", "crio": "cri", "crioterapia": "crioterap", "criou": "cri", "criptográfica": "criptográf", "cris": "cris", "crise": "cris", "crises": "cris", "crisma": "crism", "crispim": "crispim", "cristã": "cristã", "cristais": "crist", "cristal": "cristal", "cristalinas": "cristalin", "cristalizar": "cristaliz", "cristão": "cristã", "cristãos": "cristã", "cristian": "cristian", "cristiana": "cristian", "cristianismo": "cristian", "cristiano": "cristian", "cristina": "cristin", "cristo": "crist", "cristobal": "cristobal", "cristóvão": "cristóvã", "critério": "critéri", "critérios": "critéri", "criteriosa": "criteri", "criteriosos": "criteri", "critica": "critic", "crítica": "crític", "criticá": "critic", "criticado": "critic", "criticam": "critic", "criticando": "critic", "criticar": "critic", "críticas": "crític", "criticava": "critic", "crítico": "crític", "críticos": "crític", "criticou": "critic", "crivada": "criv", "crivo": "criv", "crixás": "crixás", "crj": "crj", "crochê": "croch", "crocodile": "crocodil", "croissant": "croissant", "cromo": "crom", "cromossomo": "cromossom", "cromossomos": "cromossom", "cromwell": "cromwell", "crônica": "crônic", "crônicas": "crônic", "crônico": "crônic", "cronista": "cronist", "cronograma": "cronogram", "cronologia": "cronolog", "cronológica": "cronológ", "crooner": "croon", "croqui": "croqu", "croquis": "croqu", "crosby": "crosby", "cru": "cru", "cruciais": "cruc", "crucial": "crucial", "crucificado": "crucific", "crucificar": "crucific", "crucifixo": "crucifix", "crúcis": "crúc", "cruéis": "cru", "cruel": "cruel", "crueldade": "crueldad", "cruenta": "cruent", "crusp": "crusp", "crustáceos": "crustác", "cruz": "cruz", "cruza": "cruz", "cruzada": "cruz", "cruzadas": "cruz", "cruzado": "cruz", "cruzados": "cruz", "cruzam": "cruz", "cruzamento": "cruzament", "cruzamentos": "cruzament", "cruzar": "cruz", "cruzavam": "cruz", "cruze": "cruz", "cruzeiro": "cruzeir", "cruzem": "cruz", "cruzes": "cruz", "cruzi": "cruz", "csn": "csn", "cst": "cst", "ct": "ct", "cuba": "cub", "cubana": "cuban", "cubano": "cuban", "cubanos": "cuban", "cubas": "cub", "cubatão": "cubatã", "cúbico": "cúbic", "cúbicos": "cúbic", "cubzac": "cubzac", "cuca": "cuc", "cucarachas": "cucarach", "cucco": "cucc", "cuchê": "cuch", "cueca": "cuec", "cuecas": "cuec", "cuiabá": "cuiab", "cuida": "cuid", "cuidadas": "cuid", "cuidado": "cuid", "cuidados": "cuid", "cuidadosa": "cuidad", "cuidadosamente": "cuidad", "cuidadoso": "cuidad", "cuidadosos": "cuidad", "cuidam": "cuid", "cuidando": "cuid", "cuidar": "cuid", "cuidarem": "cuid", "cuidava": "cuid", "cuidavam": "cuid", "cuidei": "cuid", "cuidem": "cuid", "cuido": "cuid", "cuidou": "cuid", "cuisine": "cuisin", "cuíto": "cuít", "cuja": "cuj", "cujas": "cuj", "cujo": "cuj", "cujos": "cuj", "culatra": "culatr", "culinária": "culinár", "culinárias": "culinár", "culminação": "culmin", "culminante": "culmin", "culminar": "culmin", "culminou": "culmin", "culote": "culot", "culpa": "culp", "culpado": "culp", "culpados": "culp", "culpar": "culp", "culpava": "culp", "culpo": "culp", "culpou": "culp", "cult": "cult", "cultiva": "cultiv", "cultivada": "cultiv", "cultivados": "cultiv", "cultivar": "cultiv", "culto": "cult", "cultores": "cultor", "cultos": "cult", "cultua": "cultu", "cultuada": "cultu", "cultuados": "cultu", "cultuar": "cultu", "cultura": "cultur", "culturais": "cultur", "cultural": "cultural", "culturalmente": "cultural", "culturas": "cultur", "cumbica": "cumbic", "cume": "cum", "cúmplice": "cúmplic", "cumplicidade": "cumplic", "cumpra": "cumpr", "cumprá": "cumpr", "cumpre": "cumpr", "cumprem": "cumpr", "cumpri": "cumpr", "cumprí": "cumpr", "cumpria": "cumpr", "cumprida": "cumpr", "cumpridas": "cumpr", "cumprido": "cumpr", "cumprimentar": "cumpriment", "cumprimento": "cumpriment", "cumprimentos": "cumpriment", "cumprindo": "cumpr", "cumprir": "cumpr", "cumprirem": "cumpr", "cumprirmos": "cumpr", "cumpriu": "cumpr", "cumpulsório": "cumpulsóri", "cumulativo": "cumul", "cunha": "cunh", "cunhada": "cunh", "cunhado": "cunh", "cunhos": "cunh", "cunhou": "cunh", "cupim": "cupim", "cúpula": "cúpul", "cura": "cur", "curá": "cur", "curada": "cur", "curadas": "cur", "curado": "cur", "curador": "curador", "curadora": "curador", "curam": "cur", "curandeirismo": "curandeir", "curandeiro": "curandeir", "curandeiros": "curandeir", "curar": "cur", "curas": "cur", "curável": "curável", "curei": "cur", "curió": "curi", "curiosa": "curios", "curiosamente": "curios", "curiosas": "curios", "curiosidade": "curios", "curiosidades": "curios", "curioso": "curios", "curiosos": "curios", "curitiba": "curitib", "curou": "cur", "curral": "curral", "curricular": "curricul", "currículo": "currícul", "currículos": "currícul", "cursa": "curs", "cursam": "curs", "cursando": "curs", "cursar": "curs", "cursava": "curs", "cursinho": "cursinh", "curso": "curs", "cursos": "curs", "cursou": "curs", "curta": "curt", "curtas": "curt", "curtem": "curt", "curtindo": "curt", "curtir": "curt", "curtirem": "curt", "curto": "curt", "curtos": "curt", "curva": "curv", "curvado": "curv", "curvar": "curv", "curvas": "curv", "curvou": "curv", "cury": "cury", "cuschnir": "cuschn", "cushman": "cushman", "cuspidas": "cusp", "custa": "cust", "custado": "cust", "custam": "cust", "custar": "cust", "custará": "cust", "custas": "cust", "custava": "cust", "custavam": "cust", "custe": "cust", "custeadas": "cust", "custeado": "cust", "custear": "cust", "custei": "cust", "custeia": "cust", "custeio": "custei", "custeou": "cust", "custo": "cust", "custódia": "custód", "custódio": "custódi", "custos": "cust", "custou": "cust", "cutícula": "cutícul", "cutucando": "cutuc", "cybex": "cybex", "cynthia": "cynthi", "cyntia": "cynti", "cypel": "cypel", "cyro": "cyro", "cyrus": "cyrus", "cz": "cz", "d": "d", "da": "da", "dá": "dá", "dabdab": "dabdab", "dac": "dac", "dachas": "dach", "dacta": "dact", "dada": "dad", "dadá": "dad", "dadas": "dad", "dadi": "dad", "dado": "dad", "dados": "dad", "dagueneide": "dagueneid", "daí": "daí", "daily": "daily", "daisy": "daisy", "dal": "dal", "dalai": "dala", "dali": "dal", "dalí": "dal", "dallari": "dallar", "dallas": "dall", "dalmo": "dalm", "dalton": "dalton", "dalva": "dalv", "dama": "dam", "damasco": "damasc", "damiana": "damian", "damião": "damiã", "daminhas": "daminh", "damos": "dam", "danado": "dan", "dança": "danc", "dançam": "danc", "dançando": "danc", "dançante": "dançant", "dançar": "danc", "dançaram": "danc", "dançarina": "dançarin", "dançarinas": "dançarin", "dançarinos": "dançarin", "danças": "danc", "dançava": "danc", "dançavam": "danc", "dance": "danc", "danceteria": "dancet", "danço": "danc", "dançou": "danc", "dando": "dand", "dani": "dan", "daniel": "daniel", "daniela": "daniel", "daniella": "daniell", "danielle": "daniell", "danifica": "danif", "danificado": "danific", "danificava": "danific", "danilo": "danil", "dano": "dan", "danone": "danon", "danos": "dan", "danosos": "danos", "danou": "dan", "danse": "dans", "dantas": "dant", "dante": "dant", "dantescas": "dantesc", "danton": "danton", "dão": "dã", "dapartamento": "dapart", "daphne": "daphn", "daquela": "daquel", "daquelas": "daquel", "daquele": "daquel", "daqueles": "daquel", "daqui": "daqu", "daquilo": "daquil", "dar": "dar", "dará": "dar", "darão": "darã", "darci": "darc", "darcio": "darci", "dárcio": "dárci", "darcy": "darcy", "dardanelos": "dardanel", "darem": "dar", "daria": "dar", "dariel": "dariel", "dark": "dark", "darlene": "darlen", "darmos": "darm", "darwin": "darwin", "darwiniana": "darwinian", "darwinista": "darwin", "das": "das", "daslu": "daslu", "dastem": "dast", "data": "dat", "datado": "dat", "datafolha": "datafolh", "dataprev": "dataprev", "datas": "dat", "datasus": "datasus", "date": "dat", "datelli": "datell", "datilografado": "datilograf", "datilografar": "datilograf", "datilógrafas": "datilógraf", "datilografei": "datilograf", "datilografia": "datilograf", "datilógrafo": "datilógraf", "datou": "dat", "dava": "dav", "davam": "dav", "dave": "dav", "davi": "dav", "david": "david", "davide": "david", "dávila": "dávil", "davis": "dav", "dawkins": "dawkins", "day": "day", "dbm": "dbm", "dc": "dc", "dce": "dce", "dd": "dd", "ddd": "ddd", "de": "de", "dê": "dê", "deaconess": "deaconess", "dean": "dean", "debaixo": "debaix", "debandou": "deband", "debate": "debat", "debatem": "debat", "debater": "debat", "debates": "debat", "debateu": "debat", "debatido": "debat", "debelado": "debel", "debêntures": "debêntur", "débil": "débil", "debilitada": "debilit", "debilitado": "debilit", "debilóide": "debilóid", "debitadas": "debit", "debitado": "debit", "débito": "débit", "débitos": "débit", "debocha": "deboch", "debochados": "deboch", "deboche": "deboch", "débora": "débor", "deborah": "deborah", "debray": "debray", "debruçada": "debruc", "debruçou": "debruc", "début": "début", "debutante": "debut", "dec": "dec", "década": "déc", "décadas": "déc", "decadência": "decadent", "decadente": "decadent", "decadentes": "decadent", "decaída": "decaíd", "decaiu": "deca", "decência": "decênc", "decente": "decent", "decentemente": "decent", "decepações": "decep", "decepadas": "decep", "decepção": "decepçã", "decepcionadas": "decepcion", "decepcionado": "decepcion", "decepcionam": "decepcion", "decepcionante": "decepcion", "decepções": "decepçõ", "decerto": "decert", "decibéis": "decib", "decide": "decid", "decidem": "decid", "decidi": "decid", "decidiam": "decid", "decidida": "decid", "decididamente": "decidid", "decidido": "decid", "decidimos": "decid", "decidir": "decid", "decidirá": "decid", "decidiram": "decid", "decidirem": "decid", "decidiu": "decid", "decido": "dec", "decifrada": "decifr", "decifrados": "decifr", "decifrar": "decifr", "decifraremos": "decifr", "decifrou": "decifr", "decilitro": "decilitr", "décima": "décim", "decimal": "decimal", "décimo": "décim", "décimos": "déc", "décio": "déci", "decisão": "decisã", "decisiva": "decis", "decisivamente": "decis", "decisivas": "decis", "decisivo": "decis", "decisivos": "decis", "decisões": "decisõ", "declara": "decl", "declaração": "declar", "declarações": "declar", "declarada": "declar", "declarado": "declar", "declaram": "decl", "declarar": "declar", "declararam": "declar", "declarasse": "declar", "declarava": "declar", "declarou": "declar", "declinar": "declin", "declínio": "declíni", "decola": "decol", "decolagem": "decolag", "decolagens": "decolagens", "decolando": "decol", "decolar": "decol", "decolara": "decol", "decolaram": "decol", "decolou": "decol", "decora": "decor", "decoração": "decor", "decorada": "decor", "decorado": "decor", "decorador": "decor", "decoradora": "decor", "decoradoras": "decor", "decoradores": "decor", "decorar": "decor", "decorativo": "decor", "decorou": "decor", "decorre": "decorr", "decorrência": "decorrent", "decorrentes": "decorrent", "decorrer": "decorr", "decorreu": "decorr", "decorridos": "decorr", "decotada": "decot", "decreta": "decret", "decretação": "decret", "decretada": "decret", "decretar": "decret", "decretaram": "decret", "decreto": "decret", "decretou": "decret", "decuplicar": "decuplic", "dedica": "dedic", "dedicação": "dedic", "dedicada": "dedic", "dedicadas": "dedic", "dedicado": "dedic", "dedicados": "dedic", "dedicam": "dedic", "dedicando": "dedic", "dedicar": "dedic", "dedicaram": "dedic", "dedico": "dedic", "dedicou": "dedic", "dedinho": "dedinh", "dediquei": "dediqu", "dedo": "ded", "dedos": "ded", "deduraram": "dedur", "deduz": "deduz", "deduzir": "deduz", "dêem": "dêem", "deep": "deep", "defamation": "defamation", "defasagem": "defasag", "defecar": "defec", "defeito": "defeit", "defeitos": "defeit", "defeituosas": "defeitu", "defeituoso": "defeitu", "defeituosos": "defeitu", "defenda": "defend", "defende": "defend", "defendê": "defend", "defendem": "defend", "defendendo": "defend", "defender": "defend", "defenderá": "defend", "defenderte": "defendert", "defendesse": "defend", "defendeu": "defend", "defendi": "defend", "defendida": "defend", "defendo": "def", "defensiva": "defens", "defensor": "defensor", "defensora": "defensor", "defensores": "defensor", "deferência": "deferent", "defesa": "defes", "defesas": "defes", "deff": "deff", "deficiência": "deficient", "deficiências": "deficient", "deficiente": "deficient", "deficientes": "deficient", "déficit": "déficit", "déficits": "déficits", "define": "defin", "definem": "defin", "definham": "definh", "definição": "definiçã", "definida": "defin", "definidas": "defin", "definido": "defin", "definidos": "defin", "definindo": "defin", "definir": "defin", "definiram": "defin", "definirmos": "defin", "definitiva": "definit", "definitivamente": "definit", "definitivo": "definit", "definitivos": "definit", "definiu": "defin", "deflagrada": "deflagr", "deflagrador": "deflagr", "deflagradores": "deflagr", "deformados": "deform", "deformar": "deform", "defronta": "defront", "defunta": "defunt", "defuntos": "defunt", "degase": "degas", "degenera": "degen", "degeneris": "degener", "degolados": "degol", "degradadas": "degrad", "degradando": "degrad", "degradar": "degrad", "degradaram": "degrad", "degradeè": "degradeè", "degrau": "degrau", "degraus": "degraus", "degredado": "degred", "degredados": "degred", "degustação": "degust", "degustador": "degust", "degustam": "degust", "degustar": "degust", "deheinzelin": "deheinzelin", "dei": "dei", "deitada": "deit", "deitar": "deit", "deixa": "deix", "deixá": "deix", "deixada": "deix", "deixadas": "deix", "deixado": "deix", "deixam": "deix", "deixamos": "deix", "deixando": "deix", "deixar": "deix", "deixara": "deix", "deixará": "deix", "deixaram": "deix", "deixarão": "deix", "deixarem": "deix", "deixaria": "deix", "deixariam": "deix", "deixasse": "deix", "deixava": "deix", "deixavam": "deix", "deixe": "deix", "deixei": "deix", "deixem": "deix", "deixo": "deix", "deixou": "deix", "dejanir": "dejan", "dejenane": "dejenan", "dejetos": "dejet", "del": "del", "dela": "del", "delano": "delan", "delas": "del", "delata": "delat", "delatando": "delat", "dele": "del", "delega": "deleg", "delegação": "deleg", "delegacia": "delegac", "delegada": "deleg", "delegado": "deleg", "delegados": "deleg", "delegar": "deleg", "deleitando": "deleit", "deleites": "deleit", "deles": "del", "deletar": "delet", "delfim": "delfim", "delgar": "delg", "déli": "dél", "deliberadamente": "deliber", "delicada": "delic", "delicado": "delic", "delicados": "delic", "delicatessen": "delicatessen", "delícia": "delíc", "deliciar": "delic", "deliciosa": "delic", "deliciosamente": "delic", "deliciosas": "delic", "delicioso": "delic", "delineada": "delin", "delinear": "delin", "delinquência": "delinquent", "delinquente": "delinquent", "delinquentes": "delinquent", "délio": "déli", "deliram": "del", "delirante": "delir", "delirantes": "delir", "delirava": "delir", "delírio": "delíri", "delito": "delit", "delitos": "delit", "della": "dell", "delmar": "delm", "delors": "delors", "delta": "delt", "deltacid": "deltacid", "dema": "dem", "demagógico": "demagóg", "demagogo": "demagog", "demais": "dem", "demanda": "demand", "demandar": "demand", "demandas": "demand", "demarcações": "demarc", "demarcado": "demarc", "demarcou": "demarc", "demasia": "demas", "demasiado": "demasi", "demétrio": "demétri", "demi": "dem", "demissão": "demissã", "demissionários": "demissionári", "demissões": "demissõ", "demitem": "demit", "demitiam": "demit", "demitida": "demit", "demitido": "demit", "demitir": "demit", "demitiram": "demit", "demitiu": "demit", "democracia": "democrac", "democracias": "democrac", "democrata": "democrat", "democrática": "democrát", "democraticamente": "democrat", "democrático": "democrát", "democráticos": "democrát", "democratismo": "democrat", "democratização": "democratiz", "démodé": "démod", "demografia": "demograf", "demográfica": "demográf", "demográficos": "demográf", "demógrafos": "demógraf", "demolida": "demol", "demoliu": "demol", "demoníaco": "demoníac", "demônio": "demôni", "demônios": "demôni", "demonstra": "demonstr", "demonstração": "demonstr", "demonstrado": "demonstr", "demonstram": "demonstr", "demonstrando": "demonstr", "demonstrar": "demonstr", "demonstraram": "demonstr", "demonstrava": "demonstr", "demonstrou": "demonstr", "demora": "demor", "demorada": "demor", "demoradamente": "demor", "demorado": "demor", "demorados": "demor", "demoram": "demor", "demorando": "demor", "demorar": "demor", "demoravam": "demor", "demore": "demor", "demorei": "demor", "demoro": "demor", "demorou": "demor", "demos": "dem", "demoura": "demour", "demovem": "demov", "dendê": "dend", "denegridor": "denegridor", "deneuve": "deneuv", "deng": "deng", "dengo": "deng", "dengosa": "dengos", "dengoso": "dengos", "dengue": "deng", "denílson": "denílson", "denise": "denis", "dennis": "denn", "denominação": "denomin", "denominações": "denomin", "denominado": "denomin", "denominador": "denomin", "denominados": "denomin", "denominando": "denomin", "densa": "dens", "densidade": "densidad", "densitometria": "densitometr", "densitômetro": "densitômetr", "denso": "dens", "dentária": "dentár", "dente": "dent", "dentes": "dent", "dentista": "dentist", "dentistas": "dentist", "dentre": "dentr", "dentro": "dentr", "denuncia": "denunc", "denúncia": "denúnc", "denunciadas": "denunc", "denunciado": "denunc", "denunciando": "denunc", "denunciar": "denunc", "denúncias": "denúnc", "denunciavam": "denunc", "denuncie": "denunc", "denunciou": "denunc", "denuncismo": "denunc", "denver": "denv", "deodoro": "deodor", "deon": "deon", "deops": "deops", "depara": "dep", "deparamos": "depar", "deparar": "depar", "deparou": "depar", "departamentalização": "departamentaliz", "departamento": "depart", "departamentos": "depart", "dependa": "depend", "depende": "depend", "dependem": "depend", "dependemos": "depend", "dependência": "dependent", "dependências": "dependent", "dependendo": "depend", "dependente": "dependent", "dependentes": "dependent", "depender": "depend", "dependerá": "depend", "dependerão": "depend", "dependeria": "depend", "dependeu": "depend", "dependi": "depend", "dependia": "depend", "dependuram": "dependur", "dependurar": "dependur", "depila": "depil", "depiladas": "depil", "depoente": "depoent", "depoentes": "depoent", "depoimento": "depoiment", "depoimentos": "depoiment", "depois": "depo", "depor": "depor", "deportação": "deport", "deportado": "deport", "deportaram": "deport", "deposição": "deposiçã", "deposita": "deposit", "depositadas": "deposit", "depositado": "deposit", "depositados": "deposit", "depositar": "deposit", "deposito": "deposit", "depósito": "depósit", "depósitos": "depósit", "deprê": "depr", "depreciação": "deprec", "depressa": "depress", "depressão": "depressã", "depressiva": "depress", "depressivo": "depress", "depressivos": "depress", "depressões": "depressõ", "deprimida": "deprim", "deprimidas": "deprim", "depuração": "depur", "depurar": "depur", "depuseram": "depus", "deputada": "deput", "deputado": "deput", "deputados": "deput", "der": "der", "dera": "der", "deram": "der", "derci": "derc", "derivada": "deriv", "derivado": "deriv", "derivados": "deriv", "dermatológicos": "dermatológ", "dermatologista": "dermatolog", "dermatologistas": "dermatolog", "derradeira": "derradeir", "derradeiras": "derradeir", "derradeiros": "derradeir", "derrama": "derram", "derramam": "derram", "derramamento": "derram", "derrame": "derram", "derrames": "derram", "derramou": "derram", "derrapou": "derrap", "derretida": "derret", "derrocada": "derroc", "derrota": "derrot", "derrotá": "derrot", "derrotada": "derrot", "derrotado": "derrot", "derrotados": "derrot", "derrotas": "derrot", "derrotista": "derrot", "derrotou": "derrot", "derruba": "derrub", "derrubá": "derrub", "derrubados": "derrub", "derrubam": "derrub", "derrubando": "derrub", "derrubar": "derrub", "derrubaram": "derrub", "derrubou": "derrub", "dertouzos": "dertouz", "des": "des", "desaba": "desab", "desabado": "desab", "desabafa": "desabaf", "desabafo": "desabaf", "desabafou": "desabaf", "desabamento": "desab", "desabaram": "desab", "desabastecimento": "desabastec", "desabou": "desab", "desabrido": "desabr", "desaconselha": "desaconselh", "desaconselhado": "desaconselh", "desaconselhável": "desaconselh", "desacordado": "desacord", "desacredito": "desacredit", "desafeto": "desafet", "desafetos": "desafet", "desafia": "desaf", "desafiadoras": "desafi", "desafiam": "desaf", "desafiando": "desafi", "desafiar": "desafi", "desafina": "desafin", "desafinado": "desafin", "desafio": "desafi", "desafios": "desafi", "desaforo": "desafor", "deságio": "desági", "desagrada": "desagr", "desagradará": "desagrad", "desagradáveis": "desagrad", "desagradável": "desagrad", "desagravo": "desagrav", "deságuam": "deságu", "desaguar": "desagu", "desajeitado": "desajeit", "desajustada": "desajust", "desalentador": "desalent", "desalinhados": "desalinh", "desalinho": "desalinh", "desamparadas": "desampar", "desamparo": "desampar", "desandou": "desand", "desanimado": "desanim", "desanimar": "desanim", "desânimos": "desân", "desanimou": "desanim", "desapareça": "desaparec", "desaparece": "desaparec", "desaparecem": "desaparec", "desaparecendo": "desaparec", "desaparecer": "desaparec", "desapareceu": "desaparec", "desaparecido": "desaparec", "desapontada": "desapont", "desapontados": "desapont", "desapontamento": "desapont", "desaprovar": "desaprov", "desarmá": "desarm", "desarmada": "desarm", "desarmado": "desarm", "desarranjos": "desarranj", "desarrumação": "desarrum", "desarrumados": "desarrum", "desarticula": "desarticul", "desarticulação": "desarticul", "desassombrada": "desassombr", "desastrado": "desastr", "desastrados": "desastr", "desastre": "desastr", "desastres": "desastr", "desastrosas": "desastr", "desastroso": "desastr", "desatá": "desat", "desatar": "desat", "desativada": "desativ", "desativado": "desativ", "desativados": "desativ", "desatracar": "desatrac", "desatualizada": "desatualiz", "desavenças": "desavenc", "desavisado": "desavis", "desavisados": "desavis", "desbancar": "desbanc", "desbancou": "desbanc", "desbaratar": "desbarat", "desbloquear": "desbloqu", "desbravadora": "desbrav", "desbravamento": "desbrav", "desbravando": "desbrav", "desbunde": "desbund", "descalça": "descalc", "descalcificação": "descalcific", "descalço": "descalc", "descalços": "descalc", "descalvado": "descalv", "descampado": "descamp", "descansa": "descans", "descansada": "descans", "descansam": "descans", "descansar": "descans", "descanso": "descans", "descansou": "descans", "descaracterizaria": "descaracteriz", "descarga": "descarg", "descargas": "descarg", "descarrega": "descarreg", "descarregamento": "descarreg", "descarregar": "descarreg", "descartada": "descart", "descartam": "descart", "descartar": "descart", "descartou": "descart", "descasa": "descas", "descasado": "descas", "descasando": "descas", "descascá": "descasc", "descascado": "descasc", "descascar": "descasc", "descaso": "descas", "descasque": "descasqu", "descem": "desc", "descendente": "descendent", "descendentes": "descendent", "descendo": "desc", "descentraliza": "descentraliz", "descentralização": "descentraliz", "descentralizada": "descentraliz", "descentralizado": "descentraliz", "descer": "desc", "desceram": "desc", "descertificação": "descertific", "descertificaram": "descertific", "descesse": "desc", "desceu": "desc", "descida": "desc", "desclassificado": "desclassific", "desclassificam": "desclassific", "desço": "desc", "descoberta": "descobert", "descobertas": "descobert", "descoberto": "descobert", "descobertos": "descobert", "descobre": "descobr", "descobrem": "descobr", "descobri": "descobr", "descobria": "descobr", "descobridor": "descobridor", "descobrimento": "descobr", "descobrimentos": "descobr", "descobrimos": "descobr", "descobrindo": "descobr", "descobrir": "descobr", "descobriram": "descobr", "descobrirem": "descobr", "descobrirmos": "descobr", "descobrisse": "descobr", "descobrissem": "descobr", "descobriu": "descobr", "descompasso": "descompass", "descomprometidas": "descompromet", "descomprometidos": "descompromet", "descompromissada": "descompromiss", "descompromisso": "descompromiss", "desconcentrar": "desconcentr", "desconfia": "desconf", "desconfiada": "desconfi", "desconfiado": "desconfi", "desconfiados": "desconfi", "desconfiam": "desconf", "desconfiança": "desconfianc", "desconfianças": "desconfianc", "desconfiar": "desconfi", "desconfie": "desconfi", "desconfiei": "desconfi", "desconfiou": "desconfi", "desconfortáveis": "desconfort", "desconfortável": "desconfort", "desconforto": "desconfort", "descongestionante": "descongestion", "desconhecia": "desconhec", "desconheciam": "desconhec", "desconhecida": "desconhec", "desconhecidas": "desconhec", "desconhecido": "desconhec", "desconhecidos": "desconhec", "desconhecimento": "desconhec", "desconsidera": "desconsid", "descontando": "descont", "descontar": "descont", "desconte": "descont", "descontentamento": "descontent", "descontente": "descontent", "descontentes": "descontent", "descontos": "descont", "descontração": "descontr", "descontraída": "descontraíd", "descontraído": "descontraíd", "descontraídos": "descontraíd", "descontrolada": "descontrol", "descontroladas": "descontrol", "descontrolado": "descontrol", "descontrole": "descontrol", "desconversa": "desconvers", "desconversar": "desconvers", "desconversava": "desconvers", "descrédito": "descrédit", "descrença": "descrenc", "descrente": "descrent", "descreve": "descrev", "descrevem": "descrev", "descrever": "descrev", "descrevera": "descrev", "descreveu": "descrev", "descrição": "descriçã", "descrições": "descriçõ", "descrita": "descrit", "descritas": "descrit", "descritivo": "descrit", "descrito": "descrit", "descubra": "descubr", "descubram": "descubr", "descubrir": "descubr", "descubro": "descubr", "descuido": "descu", "descuidos": "descu", "desculpa": "desculp", "desculpada": "desculp", "desculpas": "desculp", "desculpava": "desculp", "descumprido": "descumpr", "descumprimento": "descumpr", "descumprirem": "descumpr", "descumpriu": "descumpr", "desde": "desd", "desditoso": "desdit", "deseja": "desej", "desejada": "desej", "desejadas": "desej", "desejado": "desej", "desejam": "desej", "desejando": "desej", "desejar": "desej", "desejarem": "desej", "desejaria": "desej", "desejava": "desej", "desejável": "desej", "desejo": "desej", "desejos": "desej", "desembarca": "desembarc", "desembarcam": "desembarc", "desembarcamos": "desembarc", "desembarcar": "desembarc", "desembarcará": "desembarc", "desembarcaram": "desembarc", "desembarcava": "desembarc", "desembarcou": "desembarc", "desembargador": "desembarg", "desembargadores": "desembarg", "desembarque": "desembarqu", "desembocar": "desemboc", "desembolsa": "desembols", "desembolsando": "desembols", "desembolsar": "desembols", "desembolsaram": "desembols", "desembolso": "desembols", "desembolsou": "desembols", "desempatou": "desempat", "desempenha": "desempenh", "desempenhando": "desempenh", "desempenhar": "desempenh", "desempenhavam": "desempenh", "desempenho": "desempenh", "desempenhou": "desempenh", "desempregada": "desempreg", "desempregadas": "desempreg", "desempregado": "desempreg", "desempregados": "desempreg", "desemprego": "desempreg", "desencadeado": "desencad", "desencadear": "desencad", "desencadearam": "desencad", "desencadeia": "desencad", "desencadeou": "desencad", "desencanada": "desencan", "desencanto": "desencant", "desenfreada": "desenfr", "desenfreado": "desenfr", "desenganado": "desengan", "desenganados": "desengan", "desengavetou": "desengavet", "desengonçado": "desengonc", "desenhá": "desenh", "desenhada": "desenh", "desenhadas": "desenh", "desenhado": "desenh", "desenhar": "desenh", "desenharam": "desenh", "desenhava": "desenh", "desenhista": "desenh", "desenhistas": "desenh", "desenho": "desenh", "desenhos": "desenh", "desenhou": "desenh", "desenrola": "desenrol", "desenrolada": "desenrol", "desenrolar": "desenrol", "desensibilizar": "desensibiliz", "desentende": "desentend", "desentender": "desentend", "desentendimento": "desentend", "desenterrarem": "desenterr", "desentupido": "desentup", "desentupir": "desentup", "desenvoltura": "desenvoltur", "desenvolva": "desenvolv", "desenvolve": "desenvolv", "desenvolvem": "desenvolv", "desenvolvendo": "desenvolv", "desenvolver": "desenvolv", "desenvolveram": "desenvolv", "desenvolveu": "desenvolv", "desenvolvida": "desenvolv", "desenvolvidas": "desenvolv", "desenvolvido": "desenvolv", "desenvolvidos": "desenvolv", "desenvolvimentista": "desenvolviment", "desenvolvimento": "desenvolv", "desequilibra": "desequilibr", "desequilibrado": "desequilibr", "desequilibrados": "desequilibr", "desequilíbrio": "desequilíbri", "deserdavam": "deserd", "deserta": "desert", "deserto": "desert", "desertores": "desertor", "desesperada": "desesper", "desesperadamente": "desesper", "desesperado": "desesper", "desesperadora": "desesper", "desesperados": "desesper", "desesperam": "desesp", "desesperançados": "desesperanc", "desesperando": "desesper", "desesperar": "desesper", "desesperem": "desesp", "desespero": "desesper", "desestatização": "desestatiz", "desestimula": "desestimul", "desestimulam": "desestimul", "desestímulo": "desestímul", "desestimulou": "desestimul", "desfalcavam": "desfalc", "desfalque": "desfalqu", "desfavorável": "desfavor", "desfaz": "desfaz", "desfazem": "desfaz", "desfazendo": "desfaz", "desfazer": "desfaz", "desfaziam": "desfaz", "desfechada": "desfech", "desfecho": "desfech", "desfeita": "desfeit", "desfeito": "desfeit", "desferido": "desfer", "desferir": "desfer", "desferiu": "desfer", "desfez": "desfez", "desfiguração": "desfigur", "desfila": "desfil", "desfiladeiros": "desfiladeir", "desfilando": "desfil", "desfilar": "desfil", "desfilaram": "desfil", "desfilava": "desfil", "desfile": "desfil", "desfiles": "desfil", "desfilou": "desfil", "desfiou": "desfi", "desfocadas": "desfoc", "desfralda": "desfrald", "desfraldada": "desfrald", "desfraldadas": "desfrald", "desfrutam": "desfrut", "desfrutar": "desfrut", "desgasta": "desgast", "desgastadas": "desgast", "desgastando": "desgast", "desgastante": "desgast", "desgastar": "desgast", "desgaste": "desg", "desgovernado": "desgovern", "desgraça": "desgrac", "desgraças": "desgrac", "desgruda": "desgrud", "desi": "des", "desideologização": "desideologiz", "desidério": "desidéri", "desidratação": "desidrat", "desidrogenase": "desidrogenas", "design": "design", "designa": "design", "designação": "design", "designada": "design", "designado": "design", "designados": "design", "designar": "design", "designava": "design", "designer": "design", "designers": "designers", "designs": "designs", "desigual": "desigual", "desigualdade": "desigualdad", "desigualdades": "desigualdad", "desilusão": "desilusã", "desilusões": "desilusõ", "desimpedida": "desimped", "desimportante": "desimport", "desincompatibilização": "desincompatibiliz", "desincompatibilizar": "desincompatibiliz", "desinformação": "desinform", "desinformadas": "desinform", "desinibida": "desinib", "desinteligência": "desinteligent", "desinteressada": "desinteress", "desinteressado": "desinteress", "desinteressam": "desinteress", "desintoxicação": "desintoxic", "desiste": "des", "desistência": "desistent", "desisti": "desist", "desistiam": "desist", "desistindo": "desist", "desistir": "desist", "desistiram": "desist", "desistiria": "desist", "desistisse": "desist", "desistiu": "desist", "desisto": "desist", "deslanchar": "deslanch", "desleal": "desleal", "desleixado": "desleix", "desligado": "deslig", "desligados": "deslig", "desligamento": "deslig", "desligar": "deslig", "desligará": "deslig", "desligaram": "deslig", "desligaria": "deslig", "desligassem": "deslig", "desligo": "deslig", "desligou": "deslig", "desliguei": "desligu", "deslise": "deslis", "deslizando": "desliz", "deslizar": "desliz", "deslize": "desliz", "deslizes": "desliz", "desloca": "desloc", "deslocada": "desloc", "deslocados": "desloc", "deslocamento": "desloc", "deslocar": "desloc", "deslocava": "desloc", "deslocou": "desloc", "deslumbrada": "deslumbr", "deslumbrado": "deslumbr", "deslumbrados": "deslumbr", "deslumbrante": "deslumbr", "deslumbrar": "deslumbr", "desmaiar": "desmai", "desmaiava": "desmai", "desmaiavam": "desmai", "desmaios": "desmai", "desmaiou": "desmai", "desmanchar": "desmanch", "desmanche": "desmanch", "desmantelamento": "desmantel", "desmantelar": "desmantel", "desmar": "desm", "desmascaramento": "desmascar", "desmascarar": "desmascar", "desmata": "desmat", "desmatadas": "desmat", "desmatamento": "desmat", "desmatamentos": "desmat", "desmatando": "desmat", "desmedidas": "desmed", "desmembram": "desmembr", "desmente": "desment", "desmentindo": "desment", "desmentir": "desment", "desmerece": "desmerec", "desmesuradamente": "desmesur", "desmilitarizada": "desmilitariz", "desmistificação": "desmistific", "desmistificar": "desmistific", "desmitificação": "desmitific", "desmontando": "desmont", "desmontar": "desmont", "desmontaram": "desmont", "desmoralização": "desmoraliz", "desmoronou": "desmoron", "desmunhecar": "desmunhec", "desnatado": "desnat", "desnecessária": "desnecessár", "desnecessárias": "desnecessár", "desnecessário": "desnecessári", "desnecessários": "desnecessári", "desnorteamento": "desnort", "desnuclearizada": "desnucleariz", "desnutrição": "desnutriçã", "desobedeceu": "desobedec", "desobediências": "desobedient", "desobediente": "desobedient", "desobese": "desobes", "desocupadas": "desocup", "desodorados": "desodor", "desodorante": "desodor", "desodorantes": "desodor", "desolado": "desol", "desonesta": "desonest", "desonestidade": "desonest", "desonesto": "desonest", "desonrosa": "desonr", "desordem": "desord", "desordenadas": "desorden", "desordenado": "desorden", "desorganizadas": "desorganiz", "desorientação": "desorient", "desorientada": "desorient", "desorientado": "desorient", "desorientados": "desorient", "desorientou": "desorient", "desoxirribonucléico": "desoxirribonucl", "despacha": "despach", "despachá": "despach", "despachada": "despach", "despachado": "despach", "despachados": "despach", "despachar": "despach", "despachara": "despach", "despachava": "despach", "despachei": "despach", "despacho": "despach", "despachos": "despach", "despachou": "despach", "despe": "desp", "despedaçada": "despedac", "despedaçando": "despedac", "despedida": "desped", "despedidas": "desped", "despedido": "desped", "despedir": "desped", "despediu": "desped", "despeito": "despeit", "despeja": "despej", "despejados": "despej", "despejando": "despej", "despejar": "despej", "despejo": "despej", "despejou": "despej", "despencando": "despenc", "despencaram": "despenc", "despencou": "despenc", "despender": "despend", "despensas": "despens", "despercebida": "desperceb", "despercebidas": "desperceb", "despercebido": "desperceb", "despercebidos": "desperceb", "desperdiça": "desperdic", "desperdiçando": "desperdic", "desperdiçar": "desperdic", "desperdício": "desperdíci", "desperdiçou": "desperdic", "desperta": "despert", "despertado": "despert", "despertando": "despert", "despertar": "despert", "despertaram": "despert", "desperte": "despert", "desperto": "despert", "despertou": "despert", "despesa": "despes", "despesas": "despes", "despindo": "desp", "despistar": "despist", "desplugados": "desplug", "despojar": "despoj", "despolitizada": "despolitiz", "desponta": "despont", "despontar": "despont", "despontaram": "despont", "despontava": "despont", "despontou": "despont", "desportos": "desport", "déspotas": "déspot", "desprendem": "desprend", "despreparada": "desprepar", "despreparado": "desprepar", "despreparados": "desprepar", "despressurização": "despressuriz", "desprestigiado": "desprestigi", "despretensiosamente": "despretensi", "despretensioso": "despretensi", "desprevenidos": "despreven", "desprezar": "desprez", "desprezível": "desprez", "desprezo": "desprez", "desprezou": "desprez", "desproporcionais": "desproporcion", "despropositada": "desproposit", "desprotegida": "desproteg", "desprotegidas": "desproteg", "desprovido": "desprov", "despudor": "despudor", "desqualificada": "desqualific", "desqualificado": "desqualific", "desquitada": "desquit", "desquitado": "desquit", "desregulamentação": "desregulament", "desrespeita": "desrespeit", "desrespeitassem": "desrespeit", "desrespeito": "desrespeit", "dessa": "dess", "dessas": "dess", "desse": "dess", "dessem": "dess", "desserve": "desserv", "desses": "dess", "desta": "dest", "destaca": "destac", "destacada": "destac", "destacado": "destac", "destacam": "destac", "destacando": "destac", "destacar": "destac", "destacaram": "destac", "destacassem": "destac", "destacava": "destac", "destacavam": "destac", "destacável": "destac", "destacou": "destac", "destaque": "destaqu", "destaques": "destaqu", "destas": "dest", "deste": "dest", "destelhar": "destelh", "destemida": "destem", "destemido": "destem", "destes": "dest", "destilar": "destil", "destilarias": "destil", "destina": "destin", "destinada": "destin", "destinadas": "destin", "destinado": "destin", "destinados": "destin", "destinam": "destin", "destinamos": "destin", "destinará": "destin", "destinava": "destin", "destino": "destin", "destinos": "destin", "destinou": "destin", "destituição": "destituiçã", "destoa": "desto", "destoam": "desto", "destrambelhados": "destrambelh", "destrincha": "destrinch", "destroçados": "destroc", "destroços": "destroc", "destroçou": "destroc", "destrói": "destró", "destronou": "destron", "destruí": "destru", "destruição": "destruiçã", "destruída": "destruíd", "destruídas": "destruíd", "destruído": "destruíd", "destruidor": "destruidor", "destruídos": "destruíd", "destruímos": "destruím", "destruindo": "destru", "destruir": "destru", "destruirá": "destru", "destruísse": "destruíss", "destruiu": "destru", "destrutiva": "destrut", "destrutivos": "destrut", "desumano": "desuman", "desuso": "desus", "desvaloriza": "desvaloriz", "desvalorização": "desvaloriz", "desvalorizados": "desvaloriz", "desvantagem": "desvantag", "desvantagens": "desvantagens", "desvantajosas": "desvantaj", "desvarios": "desvari", "desvencilhar": "desvencilh", "desvenda": "desvend", "desvendados": "desvend", "desvendamos": "desvend", "desvendar": "desvend", "desviada": "desvi", "desviados": "desvi", "desviar": "desvi", "desviei": "desvi", "desviem": "desvi", "desvinculados": "desvincul", "desvio": "desvi", "desvios": "desvi", "desviou": "desvi", "desvirtuar": "desvirtu", "details": "details", "detalha": "detalh", "detalhada": "detalh", "detalhadas": "detalh", "detalhadíssima": "detalhadíssim", "detalhar": "detalh", "detalharmos": "detalh", "detalhe": "detalh", "detalhes": "detalh", "detalhista": "detalh", "detalhistas": "detalh", "detecção": "detecçã", "detecta": "detect", "detectada": "detect", "detectadas": "detect", "detectado": "detect", "detectados": "detect", "detectam": "detect", "detectar": "detect", "detectaram": "detect", "detectaria": "detect", "detectável": "detect", "detector": "detector", "detectores": "detector", "detectou": "detect", "detém": "detém", "detenção": "detençã", "detenha": "detenh", "detentas": "detent", "detentor": "detentor", "detentora": "detentor", "deter": "det", "deteriora": "deterior", "deterioração": "deterior", "determina": "determin", "determinação": "determin", "determinações": "determin", "determinada": "determin", "determinadas": "determin", "determinado": "determin", "determinados": "determin", "determinam": "determin", "determinando": "determin", "determinante": "determin", "determinantes": "determin", "determinar": "determin", "determinara": "determin", "determinasse": "determin", "determinava": "determin", "determinou": "determin", "detesta": "detest", "detestam": "detest", "detestem": "detest", "detesto": "detest", "detetive": "detetiv", "detetives": "detetiv", "detida": "det", "detido": "det", "detinha": "detinh", "detinham": "detinh", "detona": "deton", "detonação": "deton", "detonada": "deton", "detonadas": "deton", "detonadores": "deton", "detonam": "deton", "detonar": "deton", "detour": "detour", "detran": "detran", "detrans": "detrans", "detratores": "detrator", "detrimento": "detriment", "detroit": "detroit", "deturpação": "deturp", "deturpadas": "deturp", "deu": "deu", "deus": "deus", "deusa": "deus", "deuses": "deus", "deva": "dev", "devagar": "devag", "devagarinho": "devagarinh", "devassa": "devass", "devassada": "devass", "devastação": "devast", "devastado": "devast", "devastador": "devast", "devastadora": "devast", "devastadores": "devast", "devastam": "devast", "devastando": "devast", "devaste": "dev", "devastou": "devast", "deve": "dev", "devedor": "devedor", "devem": "dev", "devemos": "dev", "devendo": "dev", "dever": "dev", "deverá": "dev", "deverão": "dev", "deveres": "dev", "deveria": "dev", "deveriam": "dev", "deveríamos": "dev", "devesse": "dev", "devêssemos": "dev", "devia": "dev", "deviam": "dev", "devida": "dev", "devidamente": "devid", "devido": "dev", "devidos": "dev", "devo": "dev", "devoção": "devoçã", "devolução": "devoluçã", "devoluta": "devolut", "devolve": "devolv", "devolvem": "devolv", "devolvendo": "devolv", "devolver": "devolv", "devolveram": "devolv", "devolveu": "devolv", "devolvido": "devolv", "devolvidos": "devolv", "devora": "devor", "devorado": "devor", "devoravam": "devor", "devore": "devor", "dévoré": "dévor", "devotados": "devot", "devotos": "devot", "dewulf": "dewulf", "dexfenfluramina": "dexfenfluramin", "dez": "dez", "dezembro": "dezembr", "dezena": "dezen", "dezenas": "dezen", "dezenove": "dezenov", "dezesseis": "dezess", "dezessete": "dezesset", "dezoito": "dezoit", "df": "df", "di": "di", "dia": "dia", "diabetes": "diabet", "diabética": "diabét", "diabético": "diabét", "diablo": "diabl", "diabo": "diab", "diabólica": "diaból", "diabólico": "diaból", "diabos": "diab", "diácono": "diácon", "diagnosis": "diagnos", "diagnostica": "diagnost", "diagnosticá": "diagnostic", "diagnosticado": "diagnostic", "diagnosticam": "diagnostic", "diagnosticando": "diagnostic", "diagnosticar": "diagnostic", "diagnóstico": "diagnóst", "diagnósticos": "diagnóst", "diagnosticou": "diagnostic", "diagonal": "diagonal", "diagramação": "diagram", "diagramadora": "diagram", "dialdata": "dialdat", "dialética": "dialét", "dialetos": "dialet", "dialoga": "dialog", "diálogo": "diálog", "diálogos": "diálog", "diamante": "diamant", "diâmetro": "diâmetr", "diana": "dian", "diante": "diant", "dianteira": "dianteir", "diária": "diár", "diariamente": "diari", "diárias": "diár", "diário": "diári", "diários": "diári", "diarista": "diarist", "diarréia": "diarr", "diarréias": "diarr", "dias": "dias", "diasa": "dias", "diaz": "diaz", "dica": "dic", "dicaprio": "dicapri", "dicas": "dic", "dicção": "dicçã", "didática": "didát", "didáticas": "didát", "didático": "didát", "didáticos": "didát", "didi": "did", "dieckman": "dieckman", "dieese": "diees", "diego": "dieg", "diegues": "diegu", "diempax": "diempax", "diesel": "diesel", "diet": "diet", "dieta": "diet", "dietas": "diet", "dietilpropiona": "dietilpropion", "difamação": "difam", "difere": "difer", "diferem": "dif", "diferença": "diferenc", "diferenças": "diferenc", "diferencia": "diferenc", "diferenciação": "diferenc", "diferenciada": "diferenc", "diferenciadas": "diferenc", "diferenciado": "diferenc", "diferenciais": "diferenc", "diferencial": "diferencial", "diferenciam": "diferenc", "diferenciar": "diferenc", "diferente": "diferent", "diferentemente": "diferent", "diferentes": "diferent", "difíceis": "difíc", "difícieis": "difíc", "difícil": "difícil", "dificílimas": "dificílim", "dificílimo": "dificílim", "dificilmente": "dificil", "dificulade": "dificulad", "dificuldade": "dificuldad", "dificuldades": "dificuldad", "dificulta": "dificult", "dificultam": "dificult", "dificultar": "dificult", "dificultará": "dificult", "dificultava": "dificult", "difunde": "difund", "difundem": "difund", "difundida": "difund", "difundido": "difund", "difusão": "difusã", "diga": "dig", "digamos": "dig", "digerida": "diger", "digerindo": "diger", "digestão": "digestã", "digestivo": "digest", "digimarc": "digimarc", "digitais": "digit", "digital": "digital", "digitalizada": "digitaliz", "digitalizar": "digitaliz", "digite": "digit", "dígitos": "dígit", "digna": "dign", "dignamente": "dign", "dignas": "dign", "dignidade": "dignidad", "digno": "dign", "dignos": "dign", "digo": "dig", "diguem": "digu", "dilacerado": "dilacer", "dilatador": "dilat", "dilatadores": "dilat", "dilatar": "dilat", "dilbert": "dilbert", "dilema": "dilem", "diligentemente": "diligent", "dillon": "dillon", "dilly": "dilly", "dilton": "dilton", "diluídas": "diluíd", "diluir": "dilu", "dilza": "dilz", "dimensão": "dimensã", "dimensionar": "dimension", "dimensões": "dimensõ", "dimenstein": "dimenstein", "dimes": "dim", "diminuem": "diminu", "diminui": "diminu", "diminuição": "diminuiçã", "diminuído": "diminuíd", "diminuindo": "diminu", "diminuir": "diminu", "diminuíram": "diminuír", "diminuísse": "diminuíss", "diminuiu": "diminu", "dinamarquês": "dinamarquês", "dinamarquesa": "dinamarques", "dinâmica": "dinâm", "dinâmicas": "dinâm", "dinâmico": "dinâm", "dinamismo": "dinam", "dínamo": "dínam", "dinastia": "dinast", "dinda": "dind", "dinheirama": "dinheiram", "dinheirão": "dinh", "dinheirinho": "dinheirinh", "dinheiro": "dinheir", "diniz": "diniz", "dino": "din", "dinorah": "dinorah", "dinos": "din", "dinossauro": "dinossaur", "dinossauros": "dinossaur", "diocese": "dioces", "dioceses": "dioces", "diogo": "diog", "dionisíacas": "dionisíac", "dionísio": "dionísi", "dionysius": "dionysius", "dior": "dior", "dios": "dios", "diploma": "diplom", "diplomacia": "diplomac", "diplomas": "diplom", "diplomata": "diplomat", "diplomatas": "diplomat", "diplomática": "diplomát", "diplomáticas": "diplomát", "dirá": "dir", "dirão": "dirã", "dirceu": "dirc", "direção": "direçã", "direciona": "direcion", "direcionado": "direcion", "direcional": "direcional", "direciono": "direcion", "direções": "direçõ", "direita": "direit", "direitinho": "direitinh", "direitista": "direit", "direito": "direit", "direitos": "direit", "direta": "diret", "diretamente": "diret", "diretas": "diret", "direto": "diret", "diretor": "diretor", "diretora": "diretor", "diretoras": "diretor", "diretores": "diretor", "diretoria": "diretor", "diretorias": "diretor", "diretórios": "diretóri", "diretos": "diret", "diretrizes": "diretriz", "diria": "dir", "dirige": "dirig", "dirigem": "dirig", "dirigente": "dirigent", "dirigentes": "dirigent", "dirigi": "dirig", "dirigia": "dirig", "dirigiam": "dirig", "dirigida": "dirig", "dirigidas": "dirig", "dirigido": "dirig", "dirigidos": "dirig", "dirigindo": "dirig", "dirigir": "dirig", "dirigiu": "dirig", "dirijam": "dirij", "dirijo": "dirij", "dirimir": "dirim", "dirty": "dirty", "discagem": "discag", "discar": "disc", "discernimento": "discern", "disciplina": "disciplin", "disciplinada": "disciplin", "disciplinado": "disciplin", "disciplinador": "disciplin", "disciplinar": "disciplin", "disciplinou": "disciplin", "discípulo": "discípul", "discípulos": "discípul", "disco": "disc", "discografia": "discograf", "discordam": "discord", "discordâncias": "discordânc", "discordar": "discord", "discórdia": "discórd", "discordo": "discord", "discos": "disc", "discoteca": "discotec", "discotecas": "discotec", "discovery": "discovery", "discrepância": "discrep", "discreta": "discret", "discretamente": "discret", "discretas": "discret", "discreto": "discret", "discretos": "discret", "discrição": "discriçã", "discrimina": "discrimin", "discriminação": "discrimin", "discriminações": "discrimin", "discriminada": "discrimin", "discriminam": "discrimin", "discriminar": "discrimin", "discrografia": "discrograf", "discursão": "discursã", "discursar": "discurs", "discurso": "discurs", "discursos": "discurs", "discussão": "discussã", "discussões": "discussõ", "discuta": "discut", "discute": "discut", "discutem": "discut", "discuti": "discut", "discutida": "discut", "discutido": "discut", "discutimos": "discut", "discutindo": "discut", "discutir": "discut", "discutiram": "discut", "discutirmos": "discut", "discutiu": "discut", "discutível": "discut", "discuto": "discut", "disfarça": "disfarc", "disfarçada": "disfarc", "disfarçado": "disfarc", "disfarçados": "disfarc", "disfarçam": "disfarc", "disfarçando": "disfarc", "disfarçar": "disfarc", "disfarce": "disfarc", "disfarces": "disfarc", "disfarçou": "disfarc", "disfunções": "disfunçõ", "disktem": "diskt", "disney": "disney", "disneylândia": "disneylând", "disneyworld": "disneyworld", "dispara": "disp", "disparada": "dispar", "disparado": "dispar", "disparados": "dispar", "disparam": "disp", "disparando": "dispar", "dispararam": "dispar", "disparava": "dispar", "díspares": "dísp", "disparidade": "dispar", "disparidades": "dispar", "disparo": "dispar", "disparos": "dispar", "disparou": "dispar", "dispendioso": "dispendi", "dispensa": "dispens", "dispensada": "dispens", "dispensado": "dispens", "dispensados": "dispens", "dispensam": "dispens", "dispensar": "dispens", "dispensaram": "dispens", "dispensáveis": "dispens", "dispensável": "dispens", "dispenso": "dispens", "dispensou": "dispens", "displicentemente": "displicent", "dispõe": "dispõ", "dispõem": "dispõ", "dispomos": "dispom", "dispondo": "dispond", "disponibilidade": "disponibil", "disponibilizado": "disponibiliz", "disponíveis": "disponív", "disponível": "dispon", "dispor": "dispor", "dispôs": "dispôs", "disposição": "disposiçã", "dispositivos": "disposit", "disposta": "dispost", "dispostas": "dispost", "disposto": "dispost", "dispostos": "dispost", "dispunha": "dispunh", "dispunham": "dispunh", "dispuseram": "dispus", "disputa": "disput", "disputada": "disput", "disputado": "disput", "disputados": "disput", "disputam": "disput", "disputar": "disput", "disputará": "disput", "disputaram": "disput", "disputas": "disput", "disputou": "disput", "disquete": "disquet", "disse": "diss", "dissecação": "dissec", "dissecando": "dissec", "dissecar": "dissec", "disseminado": "dissemin", "disseminados": "dissemin", "disser": "diss", "dissera": "diss", "disseram": "diss", "disserem": "diss", "dissesse": "diss", "dissidência": "dissident", "dissidências": "dissident", "dissidentes": "dissident", "dissimulou": "dissimul", "disso": "diss", "dissociada": "dissoc", "dissolver": "dissolv", "dissolveu": "dissolv", "dissonância": "disson", "dissuadido": "dissuad", "distância": "distânc", "distanciado": "distanc", "distanciamento": "distanc", "distâncias": "distânc", "distante": "distant", "distantes": "distant", "distensão": "distensã", "distinção": "distinçã", "distinguido": "distingu", "distinguir": "distingu", "distingüir": "distingü", "distintamente": "distint", "distintas": "distint", "distintos": "distint", "disto": "dist", "distorção": "distorçã", "distorce": "distorc", "distorcem": "distorc", "distorcendo": "distorc", "distorcida": "distorc", "distorcidas": "distorc", "distorcido": "distorc", "distorções": "distorçõ", "distração": "distraçã", "distribuem": "distribu", "distribui": "distribu", "distribuía": "distribuí", "distribuíam": "distribuí", "distribuição": "distribuiçã", "distribuída": "distribuíd", "distribuídas": "distribuíd", "distribuidora": "distribuidor", "distribuidoras": "distribuidor", "distribuídos": "distribuíd", "distribuindo": "distribu", "distribuir": "distribu", "distribuiu": "distribu", "distrito": "distrit", "distúrbios": "distúrbi", "dita": "dit", "ditada": "dit", "ditado": "dit", "ditador": "ditador", "ditadores": "ditador", "ditadura": "ditadur", "ditaduras": "ditadur", "ditas": "dit", "ditatorial": "ditatorial", "ditatorialmente": "ditatorial", "ditava": "dit", "dito": "dit", "diuturna": "diuturn", "diva": "div", "divã": "divã", "divagando": "divag", "divaldo": "divald", "divas": "div", "diverge": "diverg", "divergem": "diverg", "divergências": "divergent", "diversa": "divers", "diversão": "diversã", "diversas": "divers", "diversidade": "divers", "diversificação": "diversific", "diversificada": "diversific", "diversificado": "diversific", "diversificando": "diversific", "diversificar": "diversific", "diversificou": "diversific", "diversifiquem": "diversifiqu", "diversionista": "diversion", "diversões": "diversõ", "diversos": "divers", "diverte": "divert", "divertem": "divert", "divertia": "divert", "divertida": "divert", "divertidas": "divert", "divertidíssima": "divertidíssim", "divertido": "divert", "divertidos": "divert", "divertimento": "divert", "divertindo": "divert", "divertir": "divert", "dívida": "dív", "dívidas": "dív", "divide": "divid", "dividem": "divid", "dividendos": "dividend", "dividi": "divid", "dividia": "divid", "dividida": "divid", "divididas": "divid", "dividido": "divid", "divididos": "divid", "dividimos": "divid", "dividindo": "divid", "dividir": "divid", "dividiram": "divid", "divido": "div", "divina": "divin", "divindade": "divindad", "diving": "diving", "divino": "divin", "divinolândia": "divinolând", "divirjo": "divirj", "divisa": "divis", "divisão": "divisã", "divisas": "divis", "divisões": "divisõ", "divisor": "divisor", "divorciada": "divorc", "divorciado": "divorc", "divorciando": "divorc", "divorciaram": "divorc", "divórcio": "divórci", "divórcios": "divórci", "divorciou": "divorc", "divulga": "divulg", "divulgação": "divulg", "divulgada": "divulg", "divulgadas": "divulg", "divulgado": "divulg", "divulgador": "divulg", "divulgadores": "divulg", "divulgados": "divulg", "divulgam": "divulg", "divulgar": "divulg", "divulgaram": "divulg", "divulgarem": "divulg", "divulgou": "divulg", "diz": "diz", "dizem": "diz", "dizendo": "diz", "dizer": "diz", "dizerem": "diz", "dizia": "diz", "diziam": "diz", "dizimadas": "dizim", "dizimado": "dizim", "dizimaram": "dizim", "dízimo": "dízim", "dizzy": "dizzy", "dj": "dj", "djair": "dja", "djanira": "djan", "djavan": "djavan", "dkw": "dkw", "dl": "dl", "dm": "dm", "dna": "dna", "do": "do", "dó": "dó", "doa": "doa", "doação": "doaçã", "doações": "doaçõ", "doada": "doad", "doado": "doad", "doador": "doador", "doadores": "doador", "doados": "doad", "doam": "doam", "doando": "doand", "doar": "doar", "doaram": "doar", "dobra": "dobr", "dobradas": "dobr", "dobradiças": "dobradic", "dobram": "dobr", "dobrar": "dobr", "dobrará": "dobr", "dobraram": "dobr", "dobre": "dobr", "dobro": "dobr", "dobrou": "dobr", "doca": "doc", "doce": "doc", "dóceis": "dóc", "docente": "docent", "doces": "doc", "documenta": "document", "documentação": "document", "documentada": "document", "documentário": "documentári", "documentários": "documentári", "documento": "document", "documentos": "document", "doçura": "doçur", "doe": "doe", "doença": "doenc", "doenças": "doenc", "doente": "doent", "doentes": "doent", "doentia": "doent", "doentio": "doenti", "doer": "doer", "dogmas": "dogm", "doi": "doi", "dói": "dói", "doía": "doí", "doida": "doid", "doido": "doid", "dois": "dois", "dólar": "dól", "dólares": "dól", "dolce": "dolc", "doleiros": "doleir", "dolly": "dolly", "dolores": "dolor", "dolorida": "dolor", "dolorido": "dolor", "dolorosa": "dolor", "dolorosas": "dolor", "doloroso": "dolor", "dom": "dom", "domada": "dom", "domaine": "domain", "domenecci": "domenecc", "doméstica": "domést", "domésticas": "domést", "doméstico": "domést", "domésticos": "domést", "domicí": "domic", "domiciliar": "domicili", "domicílio": "domicíli", "domícilios": "domícili", "domicílios": "domicíli", "domina": "domin", "dominada": "domin", "dominadas": "domin", "dominado": "domin", "dominadores": "domin", "dominam": "domin", "dominando": "domin", "dominante": "domin", "dominar": "domin", "dominaram": "domin", "dominarem": "domin", "dominavam": "domin", "domine": "domin", "domingão": "domingã", "domingo": "doming", "domingos": "doming", "domingues": "domingu", "dominguinhos": "dominguinh", "domini": "domin", "dominicais": "dominic", "dominical": "dominical", "dominicana": "dominican", "domínio": "domíni", "domínios": "domíni", "domus": "domus", "dona": "don", "donald": "donald", "donas": "don", "dondoca": "dondoc", "donnely": "donnely", "dono": "don", "donos": "don", "dons": "dons", "donzela": "donzel", "doo": "doo", "doou": "doou", "dopá": "dop", "dopamina": "dopamin", "dops": "dops", "dor": "dor", "dora": "dor", "dórea": "dór", "dores": "dor", "doreste": "dor", "dorfman": "dorfman", "dorival": "dorival", "dorme": "dorm", "dormem": "dorm", "dormia": "dorm", "dormiam": "dorm", "dormido": "dorm", "dormidos": "dorm", "dormimos": "dorm", "dormindo": "dorm", "dormir": "dorm", "dormiram": "dorm", "dormirem": "dorm", "dormitório": "dormitóri", "dormitórios": "dormitóri", "dormiu": "dorm", "dorrit": "dorrit", "dorsal": "dorsal", "dorso": "dors", "dos": "dos", "dosada": "dos", "dosagem": "dosag", "dosar": "dos", "dose": "dos", "dosedel": "dosedel", "doses": "dos", "dossiê": "dossi", "dotação": "dotaçã", "dotes": "dot", "dou": "dou", "douglas": "dougl", "dourada": "dour", "douradas": "dour", "dourado": "dour", "dourados": "dour", "douram": "dour", "dourar": "dour", "doutor": "doutor", "doutora": "doutor", "doutorado": "doutor", "doutores": "doutor", "doutrina": "doutrin", "down": "down", "downhill": "downhill", "downsizing": "downsizing", "downtown": "downtown", "doxorubicina": "doxorubicin", "doze": "doz", "dpca": "dpca", "dpz": "dpz", "dr": "dr", "dra": "dra", "dracena": "dracen", "drag": "drag", "drama": "dram", "dramas": "dram", "dramática": "dramát", "dramaticamente": "dramat", "dramáticas": "dramát", "dramaticidade": "dramat", "dramático": "dramát", "dramáticos": "dramát", "dramaturga": "dramaturg", "dramaturgia": "dramaturg", "dramatúrgica": "dramatúrg", "dramaturgo": "dramaturg", "drástica": "drástic", "drasticamente": "drastic", "drásticas": "drástic", "drásticos": "drástic", "drblava": "drblav", "drc": "drc", "drenado": "dren", "drenagem": "drenag", "drenou": "dren", "dressing": "dressing", "dreyfuss": "dreyfuss", "driblando": "dribl", "driblar": "dribl", "drinque": "drinqu", "drinques": "drinqu", "droga": "drog", "drogado": "drog", "drogados": "drog", "drogando": "drog", "drogar": "drog", "drogaria": "drog", "drogarias": "drog", "drogas": "drog", "dronbusch": "dronbusch", "drosnin": "drosnin", "drug": "drug", "drugstores": "drugstor", "drummond": "drummond", "ds": "ds", "du": "du", "dualib": "dualib", "dualid": "dualid", "dualidade": "dualidad", "duarte": "duart", "duas": "duas", "dúbia": "dúb", "dúbias": "dúb", "dublê": "dubl", "dublin": "dublin", "duby": "duby", "ducado": "duc", "duchemin": "duchemin", "ducruet": "ducruet", "duda": "dud", "dudu": "dudu", "duek": "duek", "dukta": "dukt", "dulce": "dulc", "dumont": "dumont", "dumping": "dumping", "dundee": "dunde", "dupla": "dupl", "duplas": "dupl", "duplicando": "duplic", "duplicar": "duplic", "duplicidade": "duplic", "duplo": "dupl", "duplos": "dupl", "dupré": "dupr", "duque": "duqu", "dura": "dur", "durabilidade": "durabil", "duração": "duraçã", "durado": "dur", "duram": "dur", "duramente": "dur", "duran": "duran", "durante": "durant", "durantes": "durant", "durão": "durã", "durar": "dur", "duraria": "dur", "duras": "dur", "durava": "dur", "duravam": "dur", "dure": "dur", "durinho": "durinh", "duríssima": "duríssim", "durma": "durm", "duro": "dur", "durou": "dur", "durval": "durval", "dusek": "dusek", "dustin": "dustin", "duti": "dut", "dutos": "dut", "dutra": "dutr", "duvernoy": "duvernoy", "duvida": "duv", "dúvida": "dúv", "dúvidas": "dúv", "duvide": "duvid", "duvidem": "duvid", "duvido": "duv", "duvidosa": "duvid", "duvidoso": "duvid", "duvidosos": "duvid", "duvidou": "duvid", "duzentas": "duzent", "dúzia": "dúz", "dúzias": "dúz", "dwight": "dwight", "dyat": "dyat", "e": "e", "é": "é", "ê": "ê", "eagle": "eagl", "east": "east", "eboli": "ebol", "éboli": "ébol", "ebulição": "ebuliçã", "eça": "eça", "eclesiástico": "eclesiást", "eclético": "eclét", "ecletismo": "eclet", "eclosão": "eclosã", "eclusa": "eclus", "eco": "eco", "ecolista": "ecol", "ecologia": "ecolog", "ecológica": "ecológ", "ecologicamente": "ecolog", "ecológicas": "ecológ", "ecológico": "ecológ", "ecológicos": "ecológ", "ecologista": "ecolog", "ecologistas": "ecolog", "economia": "econom", "economias": "econom", "economic": "economic", "econômica": "econôm", "econômicas": "econôm", "econômico": "econôm", "econômicos": "econôm", "economista": "econom", "economistas": "econom", "economiza": "economiz", "economizam": "economiz", "economizando": "economiz", "economizar": "economiz", "economizo": "economiz", "ecoou": "eco", "ecos": "ecos", "ecoturismo": "ecotur", "ecoxiitas": "ecoxiit", "ecstasy": "ecstasy", "ecumênicos": "ecumên", "edaival": "edaival", "éden": "éden", "eder": "eder", "éder": "éder", "edevaldo": "edevald", "edgar": "edgar", "edição": "ediçã", "edições": "ediçõ", "edificações": "edific", "edifício": "edifíci", "edifícios": "edifíci", "edileusa": "edileus", "edinir": "edin", "edir": "edir", "edison": "edison", "edita": "edit", "editada": "edit", "editado": "edit", "editados": "edit", "editais": "edit", "edital": "edital", "editar": "edit", "editava": "edit", "edite": "edit", "edith": "edith", "editor": "editor", "editora": "editor", "editoras": "editor", "editores": "editor", "editoria": "editor", "editoriais": "editori", "editorial": "editorial", "editorias": "editor", "edivaldo": "edivald", "edlich": "edlich", "edlinger": "edling", "edmar": "edmar", "edmilson": "edmilson", "edmund": "edmund", "edmundo": "edmund", "ednilton": "ednilton", "edson": "edson", "edu": "edu", "eduarda": "eduard", "eduardo": "eduard", "eduardos": "eduard", "educá": "educ", "educação": "educ", "educacionais": "educacion", "educacional": "educacional", "educada": "educ", "educadamente": "educ", "educado": "educ", "educador": "educ", "educadora": "educ", "educadores": "educ", "educar": "educ", "educativa": "educ", "educativo": "educ", "educativos": "educ", "edusp": "edusp", "edvar": "edvar", "edward": "edward", "efe": "efe", "efeito": "efeit", "efeitos": "efeit", "efêmera": "efêm", "efervescência": "efervescent", "efervescendo": "efervesc", "éfesos": "éfes", "efetiva": "efet", "efetivamente": "efet", "efetivo": "efet", "efetivos": "efet", "efetuadas": "efetu", "eficácia": "eficác", "eficaz": "eficaz", "eficazes": "eficaz", "eficiência": "eficient", "eficiente": "eficient", "eficientemente": "eficient", "eficientes": "eficient", "egberto": "egbert", "egeu": "egeu", "eggon": "eggon", "egito": "egit", "ego": "ego", "egoísmo": "egoísm", "egoísta": "egoíst", "egoístas": "egoíst", "egon": "egon", "egos": "egos", "egressos": "egress", "eiffel": "eiffel", "eigg": "eigg", "eike": "eik", "einstein": "einstein", "eis": "eis", "eisenhower": "eisenhow", "eit": "eit", "eixo": "eix", "eixos": "eix", "ejaculação": "ejacul", "ejetada": "ejet", "ejetado": "ejet", "el": "el", "ela": "ela", "elabora": "elabor", "elaboração": "elabor", "elaboradas": "elabor", "elaborado": "elabor", "elaborados": "elabor", "elaborar": "elabor", "elaboraram": "elabor", "elaboravam": "elabor", "elaboro": "elabor", "elaborou": "elabor", "elache": "elach", "elaine": "elain", "elas": "elas", "elásticas": "elást", "elástico": "elást", "elastina": "elastin", "elastoderme": "elastoderm", "elba": "elba", "elbrick": "elbrick", "elbrus": "elbrus", "elda": "elda", "eldorado": "eldor", "ele": "ele", "electric": "electric", "electronics": "electronics", "elefante": "elef", "elefantes": "elef", "elegância": "eleg", "elegante": "eleg", "elegantes": "eleg", "elegantíssimo": "elegantíssim", "elege": "eleg", "elegendo": "eleg", "eleger": "eleg", "elegeram": "eleg", "elegerem": "eleg", "elegessem": "eleg", "elegeu": "eleg", "eleição": "eleiçã", "eleições": "eleiçõ", "eleita": "eleit", "eleito": "eleit", "eleitor": "eleitor", "eleitorado": "eleitor", "eleitorais": "eleitor", "eleitoral": "eleitoral", "eleitores": "eleitor", "eleitos": "eleit", "elek": "elek", "elementais": "element", "elemento": "element", "elementos": "element", "elena": "elen", "elenco": "elenc", "elenilda": "elenild", "eleonor": "eleonor", "eleotório": "eleotóri", "elephante": "eleph", "eles": "eles", "elétrica": "elétr", "elétricas": "elétr", "eletricidade": "eletr", "eletricista": "eletric", "eletricistas": "eletric", "elétrico": "elétr", "elétricos": "elétr", "eletrizante": "eletriz", "eletro": "eletr", "eletrobrás": "eletrobrás", "eletrodomésticos": "eletrodomést", "eletrodos": "eletrod", "eletrolipo": "eletrolip", "eletromagnética": "eletromagnét", "eletromagnéticas": "eletromagnét", "eletromecânicos": "eletromecân", "elétron": "elétron", "eletrônica": "eletrôn", "eletronicamente": "eletron", "eletrônicas": "eletrôn", "eletrônico": "eletrôn", "eletrônicos": "eletrôn", "eletropaulo": "eletropaul", "eletrosul": "eletrosul", "elevação": "elev", "elevadas": "elev", "elevado": "elev", "elevador": "elev", "elevados": "elev", "elevar": "elev", "elevaram": "elev", "elgarten": "elgarten", "eli": "eli", "eliachar": "eliach", "eliade": "eliad", "eliakim": "eliakim", "eliana": "elian", "eliane": "elian", "elias": "eli", "eliel": "eliel", "elimina": "elimin", "eliminação": "elimin", "eliminada": "elimin", "eliminado": "elimin", "eliminados": "elimin", "eliminando": "elimin", "eliminar": "elimin", "eliminaria": "elimin", "eliminatória": "eliminatór", "eliminatórias": "eliminatór", "eliminou": "elimin", "élio": "éli", "elioneide": "elioneid", "eliot": "eliot", "elisa": "elis", "elisabeth": "elisabeth", "elisaldo": "elisald", "elíseos": "elís", "eliseu": "elis", "elite": "elit", "elites": "elit", "elitista": "elit", "elixir": "elix", "elizabetano": "elizabetan", "elizabete": "elizabet", "elizabeth": "elizabeth", "elizeth": "elizeth", "ella": "ella", "elle": "elle", "ellen": "ellen", "eller": "eller", "ellis": "ellis", "ellius": "ellius", "ellus": "ellus", "elo": "elo", "elogia": "elog", "elogiada": "elogi", "elogiado": "elogi", "elogiam": "elog", "elogiar": "elogi", "elogiaram": "elogi", "elogiava": "elogi", "elógica": "elóg", "elogie": "elogi", "elogio": "elogi", "elogios": "elogi", "elogiou": "elogi", "eloneide": "eloneid", "eloquência": "eloquent", "elpídio": "elpídi", "elucidar": "elucid", "elucubrações": "elucubr", "elvis": "elvis", "ely": "ely", "elza": "elza", "em": "em", "emagracer": "emagrac", "emagreça": "emagrec", "emagreçam": "emagrec", "emagrece": "emagrec", "emagrecer": "emagrec", "emagreceu": "emagrec", "emagreci": "emagrec", "emagrecia": "emagrec", "emagreciam": "emagrec", "emagrecimento": "emagrec", "emagreço": "emagrec", "email": "email", "emana": "eman", "emanam": "eman", "emancipador": "emancip", "emanoel": "emanoel", "emaranhado": "emaranh", "emaús": "emaús", "emb": "emb", "embaixada": "embaix", "embaixadas": "embaix", "embaixador": "embaix", "embaixo": "embaix", "embalados": "embal", "embalagem": "embalag", "embalagens": "embalagens", "embalam": "embal", "embalava": "embal", "embalo": "embal", "embalou": "embal", "embaraça": "embarac", "embaraços": "embarac", "embaraçosos": "embarac", "embaralhando": "embaralh", "embarca": "embarc", "embarcações": "embarc", "embarcado": "embarc", "embarcados": "embarc", "embarcam": "embarc", "embarcamos": "embarc", "embarcar": "embarc", "embarcaram": "embarc", "embarcaria": "embarc", "embarcou": "embarc", "embargada": "embarg", "embargadas": "embarg", "embargando": "embarg", "embargar": "embarg", "embargo": "embarg", "embargou": "embarg", "embarque": "embarqu", "embarques": "embarqu", "embasar": "embas", "embasou": "embas", "embate": "embat", "embates": "embat", "embebedassem": "embebed", "embebido": "embeb", "embelezamento": "embelez", "embelezar": "embelez", "embicando": "embic", "emblema": "emblem", "emblemática": "emblemát", "emblemáticas": "emblemát", "emblemático": "emblemát", "emboca": "emboc", "embolado": "embol", "embolia": "embol", "embolsa": "embols", "embolsam": "embols", "embolsar": "embols", "embolsarem": "embols", "embolsou": "embols", "embora": "embor", "emboscada": "embosc", "embraer": "embra", "embrapa": "embrap", "embratel": "embratel", "embrater": "embrat", "embratur": "embratur", "embreagem": "embreag", "embrenhou": "embrenh", "embriaga": "embriag", "embriagado": "embriag", "embriagar": "embriag", "embriague": "embriag", "embriaguez": "embriaguez", "embrião": "embriã", "embriologia": "embriolog", "embrionária": "embrionár", "embrionárias": "embrionár", "embrionário": "embrionári", "embrulhada": "embrulh", "embrutecidos": "embrutec", "emburaca": "emburac", "emburacado": "emburac", "embuste": "embust", "embutido": "embut", "embutidos": "embut", "embutir": "embut", "emenda": "emend", "emendo": "emend", "emendou": "emend", "emergência": "emergent", "emergente": "emergent", "emergentes": "emergent", "emergindo": "emerg", "emergiu": "emerg", "emérito": "emérit", "emerson": "emerson", "émerson": "émerson", "emfa": "emfa", "emi": "emi", "emidio": "emidi", "emídio": "emídi", "emigração": "emigr", "emigrados": "emigr", "emigrantes": "emigr", "emílio": "emíli", "eminentemente": "eminent", "emirados": "emir", "emissão": "emissã", "emissária": "emissár", "emissários": "emissári", "emissões": "emissõ", "emissora": "emissor", "emissoras": "emissor", "emissores": "emissor", "emitam": "emit", "emite": "emit", "emitia": "emit", "emitidas": "emit", "emitido": "emit", "emitidos": "emit", "emitir": "emit", "emitissem": "emit", "emitiu": "emit", "emma": "emma", "emmanuel": "emmanuel", "emmanuelle": "emmanuell", "emoção": "emoçã", "emociona": "emocion", "emocionada": "emocion", "emocionado": "emocion", "emocionais": "emocion", "emocional": "emocional", "emocionalmente": "emocional", "emocionante": "emocion", "emocionou": "emocion", "emoções": "emoçõ", "emotivamente": "emot", "emparelhou": "emparelh", "empatada": "empat", "empatado": "empat", "empatados": "empat", "empatam": "empat", "empatar": "empat", "empatia": "empat", "empatou": "empat", "empedernido": "empedern", "empenha": "empenh", "empenhado": "empenh", "empenhados": "empenh", "empenhando": "empenh", "empenhar": "empenh", "empenho": "empenh", "emperrado": "emperr", "emperram": "emperr", "empertigado": "empertig", "empetecando": "empetec", "empilhada": "empilh", "empilhadeira": "empilhadeir", "empilhar": "empilh", "empiricamente": "empir", "empírico": "empír", "emplacam": "emplac", "emplacou": "emplac", "emplaque": "emplaqu", "empoado": "empo", "empobrece": "empobrec", "empoeiradas": "empoeir", "empoeirado": "empoeir", "empoeirados": "empoeir", "empolga": "empolg", "empolgação": "empolg", "empolgados": "empolg", "empolgam": "empolg", "empolgante": "empolg", "empolgantes": "empolg", "empolgou": "empolg", "emporio": "empori", "empório": "empóri", "empossado": "emposs", "empreendedor": "empreendedor", "empreendedores": "empreendedor", "empreendendo": "empreend", "empreender": "empreend", "empreendeu": "empreend", "empreendimento": "empreend", "empreendimentos": "empreend", "emprega": "empreg", "empregabilidade": "empreg", "empregada": "empreg", "empregadas": "empreg", "empregado": "empreg", "empregador": "empreg", "empregadores": "empreg", "empregados": "empreg", "empregam": "empreg", "empregar": "empreg", "empregatício": "empregatíci", "empregava": "empreg", "emprego": "empreg", "empregos": "empreg", "empregou": "empreg", "empreitada": "empreit", "empreitadas": "empreit", "empreiteira": "empreiteir", "empreiteiras": "empreiteir", "empresa": "empres", "empresária": "empresár", "empresariado": "empresari", "empresariais": "empresari", "empresarial": "empresarial", "empresárias": "empresár", "empresário": "empresári", "empresários": "empresári", "empresas": "empres", "empresta": "emprest", "emprestada": "emprest", "emprestado": "emprest", "emprestados": "emprest", "emprestar": "emprest", "empréstimo": "empréstim", "empréstimos": "emprést", "emprestou": "emprest", "empulhação": "empulh", "empunha": "empunh", "empunhar": "empunh", "empunhou": "empunh", "empurra": "empurr", "empurrá": "empurr", "empurrada": "empurr", "empurradas": "empurr", "empurrado": "empurr", "empurradores": "empurr", "empurrados": "empurr", "empurrando": "empurr", "empurrão": "empurrã", "empurrãozinho": "empurrãozinh", "empurrar": "empurr", "empurraram": "empurr", "empurroterapia": "empurroterap", "empurrou": "empurr", "empuxo": "empux", "emulavam": "emul", "emulsões": "emulsõ", "en": "en", "enaltecem": "enaltec", "enamorado": "enamor", "encabeçado": "encabec", "encabeçam": "encabec", "encabeçassem": "encabec", "encabeçou": "encabec", "encabulado": "encabul", "encaixa": "encaix", "encaixadas": "encaix", "encaixam": "encaix", "encaixar": "encaix", "encaixaria": "encaix", "encaixava": "encaix", "encaixe": "encaix", "encaixem": "encaix", "encaixotador": "encaixot", "encalhadas": "encalh", "encaminha": "encaminh", "encaminhadas": "encaminh", "encaminhado": "encaminh", "encaminhados": "encaminh", "encaminhamento": "encaminh", "encaminhamos": "encaminh", "encaminhar": "encaminh", "encaminharam": "encaminh", "encaminhasse": "encaminh", "encaminhou": "encaminh", "encampada": "encamp", "encanada": "encan", "encanar": "encan", "encanta": "encant", "encantada": "encant", "encantadas": "encant", "encantado": "encant", "encantadora": "encant", "encantados": "encant", "encante": "encant", "encantei": "encant", "encanto": "encant", "encantou": "encant", "encapo": "encap", "encara": "encar", "encará": "encar", "encarada": "encar", "encaradas": "encar", "encarado": "encar", "encarados": "encar", "encaram": "encar", "encarando": "encar", "encarapitadas": "encarapit", "encarapitados": "encarapit", "encarar": "encar", "encarariam": "encar", "encarceradores": "encarcer", "encarcerados": "encarcer", "encarceramento": "encarcer", "encarcerar": "encarcer", "encarcerou": "encarcer", "encarece": "encarec", "encareceu": "encarec", "encarem": "encar", "encaremos": "encar", "encargos": "encarg", "encarnado": "encarn", "encarnar": "encarn", "encarnava": "encarn", "encarnou": "encarn", "encaro": "encar", "encarou": "encar", "encarrega": "encarreg", "encarregada": "encarreg", "encarregadas": "encarreg", "encarregado": "encarreg", "encarregados": "encarreg", "encarregam": "encarreg", "encarregou": "encarreg", "encarta": "encart", "encastelados": "encastel", "encefálico": "encefál", "encenação": "encen", "encenado": "encen", "encerra": "encerr", "encerrada": "encerr", "encerradas": "encerr", "encerrado": "encerr", "encerramento": "encerr", "encerrando": "encerr", "encerrar": "encerr", "encerrará": "encerr", "encerraram": "encerr", "encerro": "encerr", "encerrou": "encerr", "encharcado": "encharc", "enchem": "enchem", "enchendo": "enchend", "enchente": "enchent", "enchentes": "enchent", "encher": "encher", "encheu": "encheu", "enchi": "enchi", "enchia": "enchi", "enchimento": "enchiment", "enciclopédia": "enciclopéd", "enciclopédias": "enciclopéd", "enciclopédica": "enciclopéd", "enciclopéias": "enciclop", "enclausura": "enclausur", "enclausurada": "enclausur", "enclave": "enclav", "encobertas": "encobert", "encobre": "encobr", "encobrir": "encobr", "encobriram": "encobr", "encol": "encol", "encolhem": "encolh", "encolhesse": "encolh", "encolhida": "encolh", "encomenda": "encomend", "encomendada": "encomend", "encomendadas": "encomend", "encomendado": "encomend", "encomendar": "encomend", "encomendas": "encomend", "encomendei": "encomend", "encomendou": "encomend", "encontra": "encontr", "encontrá": "encontr", "encontrada": "encontr", "encontradas": "encontr", "encontrado": "encontr", "encontrados": "encontr", "encontram": "encontr", "encontramos": "encontr", "encontrando": "encontr", "encontrar": "encontr", "encontrará": "encontr", "encontraram": "encontr", "encontrarem": "encontr", "encontrasse": "encontr", "encontrava": "encontr", "encontre": "encontr", "encontrei": "encontr", "encontro": "encontr", "encontros": "encontr", "encontrou": "encontr", "encorajadas": "encoraj", "encorajaram": "encoraj", "encorpado": "encorp", "encorpados": "encorp", "encostado": "encost", "encostados": "encost", "encostar": "encost", "encosto": "encost", "encravada": "encrav", "encravadas": "encrav", "encravado": "encrav", "encravados": "encrav", "encrenca": "encrenc", "encrencas": "encrenc", "encrespados": "encresp", "encruzilhadas": "encruzilh", "encurralada": "encurral", "encurralado": "encurral", "encurtamento": "encurt", "encurtar": "encurt", "encurtou": "encurt", "end": "end", "endêmica": "endêm", "ender": "ender", "endereçada": "enderec", "endereço": "enderec", "endereços": "enderec", "endinheirado": "endinheir", "endinheirados": "endinheir", "endividada": "endivid", "endividadas": "endivid", "endividamento": "endivid", "endividando": "endivid", "endocrinologia": "endocrinolog", "endocrinologista": "endocrinolog", "endocrinologistas": "endocrinolog", "endométrio": "endométri", "endometriose": "endometrios", "endorfina": "endorfin", "endoscopia": "endoscop", "endossa": "endoss", "endossado": "endoss", "endress": "endress", "eneide": "eneid", "energética": "energét", "energéticas": "energét", "energético": "energét", "energia": "energ", "energias": "energ", "enérgicas": "enérg", "energiza": "energiz", "energização": "energiz", "energizações": "energiz", "energizado": "energiz", "eneu": "eneu", "enfadonho": "enfadonh", "enfant": "enfant", "enfarta": "enfart", "enfartado": "enfart", "ênfase": "ênfas", "enfático": "enfát", "enfatiza": "enfatiz", "enfatizados": "enfatiz", "enfatizar": "enfatiz", "enfatizo": "enfatiz", "enfatizou": "enfatiz", "enfeita": "enfeit", "enfeitada": "enfeit", "enfeitar": "enfeit", "enfeite": "enfeit", "enfeites": "enfeit", "enfeitiçado": "enfeitic", "enfermas": "enferm", "enfermeira": "enfermeir", "enfermeiras": "enfermeir", "enfermeiros": "enfermeir", "enfermidade": "enferm", "enfermidades": "enferm", "enferrujadas": "enferruj", "enfia": "enfi", "enfiam": "enfi", "enfiar": "enfi", "enfileirá": "enfil", "enfileirados": "enfileir", "enfim": "enfim", "enfiou": "enfi", "enfisema": "enfisem", "enfocando": "enfoc", "enfocou": "enfoc", "enfoque": "enfoqu", "enforcado": "enforc", "enforcou": "enforc", "enfraquecem": "enfraquec", "enfraquecendo": "enfraquec", "enfraquecimento": "enfraquec", "enfrenta": "enfrent", "enfrentada": "enfrent", "enfrentado": "enfrent", "enfrentam": "enfrent", "enfrentamos": "enfrent", "enfrentando": "enfrent", "enfrentar": "enfrent", "enfrentará": "enfrent", "enfrentaram": "enfrent", "enfrentarmos": "enfrent", "enfrentava": "enfrent", "enfrente": "enfrent", "enfrentei": "enfrent", "enfrento": "enfrent", "enfrentou": "enfrent", "enfurecer": "enfurec", "engabelar": "engabel", "engajadas": "engaj", "engajado": "engaj", "engajados": "engaj", "engajamento": "engaj", "engajamentos": "engaj", "engajou": "engaj", "engalfinham": "engalfinh", "engalfinhar": "engalfinh", "engana": "engan", "enganação": "engan", "enganada": "engan", "enganados": "engan", "engano": "engan", "enganosa": "engan", "enganou": "engan", "engarrafa": "engarraf", "engarrafadas": "engarraf", "engarrafado": "engarraf", "engarrafados": "engarraf", "engarrafamento": "engarraf", "engarrafamentos": "engarraf", "engasga": "engasg", "engatado": "engat", "engatinhando": "engatinh", "engatinhava": "engatinh", "engendrar": "engendr", "engenharia": "engenh", "engenheira": "engenheir", "engenheiro": "engenheir", "engenheiros": "engenheir", "engenho": "engenh", "engenhocas": "engenhoc", "engenhosidade": "engenhos", "engenhoso": "engenh", "england": "england", "engloba": "englob", "englobam": "englob", "englobará": "englob", "engolido": "engol", "engolidos": "engol", "engolir": "engol", "engoliram": "engol", "engoliu": "engol", "engomadinho": "engomadinh", "engorda": "engord", "engordado": "engord", "engordam": "engord", "engordando": "engord", "engordar": "engord", "engordarem": "engord", "engordava": "engord", "engordavam": "engord", "engordei": "engord", "engordo": "engord", "engordou": "engord", "engraçada": "engrac", "engraçadas": "engrac", "engraçadíssima": "engraçadíssim", "engraçadíssimo": "engraçadíssim", "engraçado": "engrac", "engrandecer": "engrandec", "engrandecido": "engrandec", "engravatados": "engravat", "engravidar": "engravid", "engravidaram": "engravid", "engravidei": "engravid", "engravidou": "engravid", "engraxate": "engraxat", "engrenagem": "engrenag", "engrenagens": "engrenagens", "engrenar": "engren", "engrossa": "engross", "enguiçado": "enguic", "engulo": "engul", "enigma": "enigm", "enigmas": "enigm", "enigmático": "enigmát", "enjoada": "enjo", "enjôo": "enjô", "enlace": "enlac", "enlouquece": "enlouquec", "enlouquecer": "enlouquec", "enlouqueceram": "enlouquec", "enlouqueceu": "enlouquec", "enlouqueciam": "enlouquec", "enlouquecido": "enlouquec", "enobrece": "enobrec", "enola": "enol", "enólogo": "enólog", "enorme": "enorm", "enormemente": "enorm", "enormes": "enorm", "enough": "enough", "enquadra": "enquadr", "enquadradas": "enquadr", "enquadrar": "enquadr", "enquadrou": "enquadr", "enquanto": "enquant", "enquete": "enquet", "enraivecessem": "enraivec", "enrascada": "enrasc", "enredo": "enred", "enredos": "enred", "enriquece": "enriquec", "enriquecer": "enriquec", "enriqueceram": "enriquec", "enriqueceu": "enriquec", "enriquecido": "enriquec", "enrolada": "enrol", "enrolado": "enrol", "enrolar": "enrol", "enrolaram": "enrol", "enroscado": "enrosc", "enroscando": "enrosc", "enrustido": "enrust", "enrustidos": "enrust", "ensaiar": "ensai", "ensaiaram": "ensai", "ensaiava": "ensai", "ensaio": "ensai", "ensaios": "ensai", "ensaiou": "ensai", "ensaísmo": "ensaísm", "ensaísta": "ensaíst", "ensaístas": "ensaíst", "ensangüentado": "ensangüent", "ensina": "ensin", "ensiná": "ensin", "ensinam": "ensin", "ensinamentos": "ensin", "ensinamos": "ensin", "ensinando": "ensin", "ensinar": "ensin", "ensinavam": "ensin", "ensino": "ensin", "ensinou": "ensin", "ensolarado": "ensolar", "ensurdecedor": "ensurdecedor", "ensurdecedora": "ensurdecedor", "entalar": "ental", "entanto": "entant", "então": "entã", "entardecer": "entardec", "ente": "ente", "entediante": "entedi", "entenda": "entend", "entende": "entend", "entendê": "entend", "entendedor": "entendedor", "entendem": "entend", "entendemos": "entend", "entendendo": "entend", "entender": "entend", "entenderam": "entend", "entenderão": "entend", "entenderem": "entend", "entenderia": "entend", "entenderiam": "entend", "entendesse": "entend", "entendeu": "entend", "entendi": "entend", "entendia": "entend", "entendiadas": "entendi", "entendíamos": "entend", "entendida": "entend", "entendido": "entend", "entendidos": "entend", "entendimento": "entend", "entendo": "entend", "enterprise": "enterpris", "enterrado": "enterr", "enterrados": "enterr", "enterrar": "enterr", "enterraria": "enterr", "enterro": "enterr", "enterros": "enterr", "entidade": "entidad", "entidades": "entidad", "entoa": "ento", "entoado": "ento", "entoam": "ento", "entoando": "ento", "entoar": "ento", "entonação": "enton", "entope": "entop", "entopem": "entop", "entorno": "entorn", "entorpecente": "entorpecent", "entorpecentes": "entorpecent", "entorpecido": "entorpec", "entortado": "entort", "entortava": "entort", "entra": "entra", "entrada": "entrad", "entrado": "entrad", "entram": "entram", "entramos": "entram", "entrando": "entrand", "entranhas": "entranh", "entrar": "entrar", "entrará": "entrar", "entraram": "entrar", "entraremos": "entrar", "entraria": "entrar", "entrariam": "entrar", "entrarmos": "entrarm", "entrassem": "entrass", "entrava": "entrav", "entravam": "entrav", "entraves": "entrav", "entre": "entre", "entrecortado": "entrecort", "entrega": "entreg", "entregá": "entreg", "entregado": "entreg", "entregador": "entreg", "entregadores": "entreg", "entregam": "entreg", "entregando": "entreg", "entregar": "entreg", "entregaram": "entreg", "entregas": "entreg", "entregasse": "entreg", "entregou": "entreg", "entregue": "entreg", "entreguei": "entregu", "entregues": "entregu", "entrei": "entre", "entrem": "entrem", "entrepostos": "entrepost", "entretanto": "entretant", "entretenimento": "entreten", "entrevista": "entrev", "entrevistá": "entrevist", "entrevistadas": "entrevist", "entrevistado": "entrevist", "entrevistador": "entrevist", "entrevistados": "entrevist", "entrevistar": "entrevist", "entrevistas": "entrev", "entrevistou": "entrevist", "entrincheirados": "entrincheir", "entristece": "entristec", "entristeceu": "entristec", "entro": "entro", "entroncamentos": "entronc", "entrosou": "entros", "entrou": "entrou", "entulhados": "entulh", "entulhos": "entulh", "entupi": "entup", "entupida": "entup", "entupido": "entup", "entupimento": "entup", "entupindo": "entup", "entupir": "entup", "entupiram": "entup", "entusiasma": "entusiasm", "entusiasmada": "entusiasm", "entusiasmado": "entusiasm", "entusiasmo": "entusiasm", "entusiasmou": "entusiasm", "entusiasta": "entusiast", "enumera": "enum", "enunciando": "enunc", "envelheçam": "envelhec", "envelhece": "envelhec", "envelhecem": "envelhec", "envelhecer": "envelhec", "envelheceram": "envelhec", "envelhecida": "envelhec", "envelhecidos": "envelhec", "envelhecimento": "envelhec", "envelheço": "envelhec", "envelope": "envelop", "envenenaram": "envenen", "envenenou": "envenen", "envergonhado": "envergonh", "envergonham": "envergonh", "envergonhem": "envergonh", "envia": "envi", "enviada": "envi", "enviado": "envi", "enviando": "envi", "enviar": "envi", "envidraçada": "envidrac", "enviei": "envi", "enviesados": "envies", "envio": "envi", "enviou": "envi", "envira": "envir", "envoltos": "envolt", "envolve": "envolv", "envolvem": "envolv", "envolvendo": "envolv", "envolver": "envolv", "envolveram": "envolv", "envolveu": "envolv", "envolvia": "envolv", "envolviam": "envolv", "envolvida": "envolv", "envolvidas": "envolv", "envolvido": "envolv", "envolvidos": "envolv", "envolvimento": "envolv", "enxada": "enxad", "enxaqueca": "enxaquec", "enxerga": "enxerg", "enxergam": "enxerg", "enxergando": "enxerg", "enxergar": "enxerg", "enxergarem": "enxerg", "enxerto": "enxert", "enxugamento": "enxug", "enxugamos": "enxug", "enxugasse": "enxug", "enxurrada": "enxurr", "enxuta": "enxut", "enxutas": "enxut", "eny": "eny", "enya": "enya", "enzima": "enzim", "epcot": "epcot", "epega": "epeg", "epelman": "epelman", "ephigênia": "ephigên", "epi": "epi", "epicentro": "epicentr", "épicos": "épic", "epidemia": "epidem", "epifania": "epifan", "episódio": "episódi", "episódios": "episódi", "epiteliais": "epiteli", "epíteto": "epítet", "epoca": "epoc", "época": "époc", "épocas": "époc", "epopéia": "epop", "epopéias": "epop", "equação": "equaçã", "equador": "equador", "equalizador": "equaliz", "equatorial": "equatorial", "equilibra": "equilibr", "equilibrá": "equilibr", "equilibrada": "equilibr", "equilibradas": "equilibr", "equilibrados": "equilibr", "equilibrar": "equilibr", "equilíbrio": "equilíbri", "equimoses": "equimos", "equinócio": "equinóci", "equinócios": "equinóci", "equipadas": "equip", "equipado": "equip", "equipados": "equip", "equipamento": "equip", "equipamentos": "equip", "equipe": "equip", "equipes": "equip", "equipou": "equip", "eqüitativa": "eqüit", "equity": "equity", "equivale": "equival", "equivalência": "equivalent", "equivalente": "equivalent", "equivalentes": "equivalent", "equivaler": "equival", "equivaleria": "equival", "equivalia": "equival", "equivocada": "equivoc", "equivocadas": "equivoc", "equivocados": "equivoc", "equívoco": "equívoc", "equívocos": "equívoc", "era": "era", "eram": "eram", "éramos": "éram", "erário": "erári", "eras": "eras", "ereção": "ereçã", "eremita": "eremit", "ergométrica": "ergométr", "erguê": "ergu", "erguendo": "ergu", "erguer": "ergu", "ergueram": "ergu", "ergueu": "ergu", "erguida": "ergu", "erguido": "ergu", "eric": "eric", "erica": "eric", "erich": "erich", "eris": "eris", "erisvalda": "erisvald", "erkki": "erkki", "ermelino": "ermelin", "ermírio": "ermíri", "ermo": "ermo", "ermos": "ermos", "ernesto": "ernest", "eron": "eron", "eronivaldo": "eronivald", "eros": "eros", "erosão": "erosã", "erótica": "erót", "eróticas": "erót", "erótico": "erót", "eróticos": "erót", "erotildes": "erotild", "erotismo": "erot", "erotização": "erotiz", "erotizada": "erotiz", "erra": "erra", "errada": "errad", "erradas": "errad", "erradicação": "erradic", "erradicar": "erradic", "errado": "errad", "errados": "errad", "erramos": "erram", "errante": "errant", "errar": "errar", "erraram": "errar", "errei": "erre", "errinho": "errinh", "erro": "erro", "erroneamente": "erron", "erros": "erros", "errou": "errou", "eruditas": "erudit", "erudito": "erudit", "erundina": "erundin", "erupções": "erupçõ", "erva": "erva", "ervas": "ervas", "ervilha": "ervilh", "es": "es", "esa": "esa", "esaú": "esaú", "esbaforido": "esbafor", "esbanja": "esbanj", "esbarra": "esbarr", "esbarram": "esbarr", "esbarrando": "esbarr", "esbarrou": "esbarr", "esbelta": "esbelt", "esbeltos": "esbelt", "esboça": "esboc", "esboçada": "esboc", "esboçava": "esboc", "esboço": "esboc", "esboços": "esboc", "esboçou": "esboc", "esborrachou": "esborrach", "esbugalhados": "esbugalh", "escabroso": "escabr", "escadarias": "escad", "escadas": "escad", "escafandro": "escafandr", "escafedeu": "escafed", "escala": "escal", "escalá": "escal", "escalada": "escal", "escaladas": "escal", "escalado": "escal", "escalador": "escal", "escalam": "escal", "escalante": "escal", "escalão": "escalã", "escalar": "escal", "escalas": "escal", "escalava": "escal", "escaldante": "escald", "escalou": "escal", "escancara": "escanc", "escancarada": "escancar", "escancaradas": "escancar", "escancarou": "escancar", "escandalizando": "escandaliz", "escandalizou": "escandaliz", "escândalo": "escândal", "escândalos": "escândal", "escandalosamente": "escandal", "escandinávia": "escandináv", "escanteio": "escantei", "escapa": "escap", "escapadas": "escap", "escapado": "escap", "escapam": "escap", "escapar": "escap", "escapariam": "escap", "escapavam": "escap", "escape": "escap", "escapou": "escap", "escapular": "escapul", "escaramuças": "escaramuc", "escarpas": "escarp", "escassa": "escass", "escassez": "escassez", "escasso": "escass", "escassos": "escass", "escatológica": "escatológ", "escavações": "escav", "escavadas": "escav", "escavadeira": "escavadeir", "esclareça": "esclarec", "esclarece": "esclarec", "esclarecedor": "esclarecedor", "esclarecedora": "esclarecedor", "esclarecem": "esclarec", "esclarecer": "esclarec", "esclareceu": "esclarec", "esclarecida": "esclarec", "esclarecido": "esclarec", "esclarecidos": "esclarec", "esclarecimento": "esclarec", "esclerosadas": "escleros", "esclerose": "escleros", "escoados": "esco", "escoamento": "escoament", "escoar": "esco", "escobar": "escob", "escocês": "escocês", "escócia": "escóc", "escola": "escol", "escoladas": "escol", "escolar": "escol", "escolares": "escol", "escolaridade": "escolar", "escolas": "escol", "escolástica": "escolást", "escolha": "escolh", "escolhas": "escolh", "escolhe": "escolh", "escolhê": "escolh", "escolhem": "escolh", "escolhendo": "escolh", "escolher": "escolh", "escolherem": "escolh", "escolheria": "escolh", "escolheriam": "escolh", "escolheu": "escolh", "escolhi": "escolh", "escolhida": "escolh", "escolhidas": "escolh", "escolhido": "escolh", "escolhidos": "escolh", "escolho": "escolh", "escolinha": "escolinh", "escoliose": "escolios", "escolta": "escolt", "escoltada": "escolt", "esconde": "escond", "escondem": "escond", "escondemos": "escond", "escondendo": "escond", "esconder": "escond", "escondera": "escond", "escondeu": "escond", "escondia": "escond", "escondiam": "escond", "escondida": "escond", "escondidas": "escond", "escondido": "escond", "escondidos": "escond", "escondo": "escond", "escorar": "escor", "escorbuto": "escorbut", "escoriações": "escori", "escorpião": "escorpiã", "escort": "escort", "escóssia": "escóss", "escova": "escov", "escovar": "escov", "escovas": "escov", "escrachada": "escrach", "escrava": "escrav", "escravatura": "escravatur", "escravidão": "escravidã", "escravo": "escrav", "escravos": "escrav", "escreve": "escrev", "escrevem": "escrev", "escrevendo": "escrev", "escreventes": "escrevent", "escrever": "escrev", "escreveram": "escrev", "escreveria": "escrev", "escrevesse": "escrev", "escreveu": "escrev", "escrevi": "escrev", "escrevia": "escrev", "escreviam": "escrev", "escrevo": "escrev", "escrita": "escrit", "escritas": "escrit", "escrito": "escrit", "escritor": "escritor", "escritora": "escritor", "escritores": "escritor", "escritório": "escritóri", "escritórios": "escritóri", "escritos": "escrit", "escritura": "escritur", "escriturário": "escriturári", "escrituras": "escritur", "escrivão": "escrivã", "escrúpulo": "escrúpul", "escrúpulos": "escrúpul", "escrutínio": "escrutíni", "escudado": "escud", "escudeira": "escudeir", "escudeiro": "escudeir", "escudo": "escud", "esculacho": "esculach", "esculhambar": "esculhamb", "escultor": "escultor", "escultura": "escultur", "esculturas": "escultur", "escura": "escur", "escuras": "escur", "escurecendo": "escurec", "escuridão": "escuridã", "escuro": "escur", "escuros": "escur", "escuta": "escut", "escutam": "escut", "escutando": "escut", "escutar": "escut", "escutava": "escut", "esdras": "esdras", "esdrúxula": "esdrúxul", "esdrúxulas": "esdrúxul", "esfaqueada": "esfaqu", "esfarrapada": "esfarrap", "esfarrapados": "esfarrap", "esfera": "esfer", "esferas": "esfer", "esférico": "esfér", "esfolar": "esfol", "esfolem": "esfol", "esfoliantes": "esfoli", "esforçado": "esforc", "esforçam": "esforc", "esforçar": "esforc", "esforçava": "esforc", "esforce": "esforc", "esforço": "esforc", "esforços": "esforc", "esforçou": "esforc", "esfriando": "esfri", "esgarçada": "esgarc", "esgazeado": "esgaz", "esgotá": "esgot", "esgotada": "esgot", "esgotadas": "esgot", "esgotado": "esgot", "esgotam": "esgot", "esgotamento": "esgot", "esgotarem": "esgot", "esgotem": "esgot", "esgoto": "esgot", "esgotou": "esgot", "esgrime": "esgrim", "esgueirando": "esgueir", "esmaecer": "esmaec", "esmaga": "esmag", "esmagada": "esmag", "esmagadora": "esmag", "esmagamento": "esmag", "esmalte": "esmalt", "esmaltes": "esmalt", "esmerado": "esmer", "esmerilhada": "esmerilh", "esmero": "esmer", "esmigalhados": "esmigalh", "esmola": "esmol", "esmolas": "esmol", "esmorece": "esmorec", "esnobe": "esnob", "esnobes": "esnob", "esôfago": "esôfag", "esotéricas": "esotér", "espaciais": "espac", "espacial": "espacial", "espaço": "espac", "espaços": "espac", "espaçosa": "espac", "espaçoso": "espac", "espadim": "espadim", "espaldar": "espald", "espalha": "espalh", "espalhada": "espalh", "espalhadas": "espalh", "espalhado": "espalh", "espalhados": "espalh", "espalhafatosa": "espalhafat", "espalhafatosas": "espalhafat", "espalham": "espalh", "espalhando": "espalh", "espalhar": "espalh", "espalhou": "espalh", "espanca": "espanc", "espancá": "espanc", "espancada": "espanc", "espancado": "espanc", "espanha": "espanh", "espanhas": "espanh", "espanhóis": "espanhó", "espanhol": "espanhol", "espanhola": "espanhol", "espanta": "espant", "espantada": "espant", "espantadas": "espant", "espantado": "espant", "espantam": "espant", "espanto": "espant", "espantosa": "espant", "espantoso": "espant", "espantosos": "espant", "espantou": "espant", "esparsas": "espars", "esparsos": "espars", "espartana": "espartan", "espartanas": "espartan", "espasmos": "espasm", "espatifaram": "espatif", "espatifou": "espatif", "espátulas": "espátul", "especiais": "espec", "especial": "especial", "especialidade": "especial", "especialista": "especial", "especialistas": "especial", "especialização": "especializ", "especializações": "especializ", "especializada": "especializ", "especializadas": "especializ", "especializado": "especializ", "especializados": "especializ", "especializando": "especializ", "especializou": "especializ", "especialmente": "especial", "especiarias": "espec", "espécie": "espéc", "espécies": "espéc", "específica": "específ", "especificações": "especific", "especificada": "especific", "especificamente": "especif", "especificar": "especific", "específicas": "específ", "específico": "específ", "específicos": "específ", "espécime": "espécim", "espécimes": "espécim", "espectador": "espect", "espectadora": "espect", "espectadores": "espect", "espectro": "espectr", "especula": "especul", "especulação": "especul", "especulações": "especul", "especuladores": "especul", "especulando": "especul", "especular": "especul", "especulativa": "especul", "espelha": "espelh", "espelhar": "espelh", "espelho": "espelh", "espelhos": "espelh", "espera": "esper", "esperada": "esper", "esperadas": "esper", "esperado": "esper", "esperados": "esper", "esperam": "esper", "esperamos": "esper", "esperança": "esperanc", "esperanças": "esperanc", "esperançosa": "esperanc", "esperando": "esper", "esperar": "esper", "esperas": "esper", "esperava": "esper", "esperavam": "esper", "esperávamos": "esper", "espere": "esper", "esperidião": "esperidiã", "esperma": "esperm", "espermatozóides": "espermatozóid", "espermograma": "espermogram", "espermogramas": "espermogram", "espermópolis": "espermópol", "espero": "esper", "esperou": "esper", "esperta": "espert", "espertalhões": "espertalhõ", "espertamente": "espert", "esperteza": "espert", "esperto": "espert", "espertos": "espert", "espessa": "espess", "espeta": "espet", "espetacular": "espetacul", "espetaculares": "espetacul", "espetacularmente": "espetacular", "espetáculo": "espetácul", "espetáculos": "espetácul", "espetado": "espet", "espiã": "espiã", "espiando": "espi", "espião": "espiã", "espiar": "espi", "espinha": "espinh", "espinhas": "espinh", "espinhentos": "espinhent", "espinhosa": "espinh", "espinhosas": "espinh", "espiões": "espiõ", "espionagem": "espionag", "espionar": "espion", "espiral": "espiral", "espíritas": "espírit", "espírito": "espírit", "espíritos": "espírit", "espirituais": "espiritu", "espiritual": "espiritual", "espiritualmente": "espiritual", "espirro": "espirr", "esplanada": "esplan", "esplêndida": "esplênd", "esplêndido": "esplênd", "esplendor": "esplendor", "espn": "espn", "espocaram": "espoc", "espoliação": "espoli", "espólio": "espóli", "espontânea": "espontân", "espontaneamente": "espontan", "espontaneidade": "espontan", "espontâneo": "espontân", "esporte": "esport", "esportes": "esport", "esportista": "esport", "esportistas": "esport", "esportiva": "esport", "esportivas": "esport", "esportivo": "esport", "esportivos": "esport", "esposa": "espos", "esposas": "espos", "esposo": "espos", "espreguiçando": "espreguic", "espreita": "espreit", "espreme": "esprem", "espremer": "esprem", "espremeram": "esprem", "espremida": "esprem", "espremido": "esprem", "espresso": "espress", "espuma": "espum", "espumante": "espum", "esq": "esq", "esquadra": "esquadr", "esquadrias": "esquadr", "esquadrilha": "esquadrilh", "esquadrinhar": "esquadrinh", "esquálidas": "esquál", "esqueça": "esquec", "esquece": "esquec", "esquecê": "esquec", "esquecem": "esquec", "esquecemos": "esquec", "esquecendo": "esquec", "esquecer": "esquec", "esqueceram": "esquec", "esqueceria": "esquec", "esquecermos": "esquec", "esquecesse": "esquec", "esqueceu": "esquec", "esqueci": "esquec", "esquecia": "esquec", "esqueciam": "esquec", "esquecida": "esquec", "esquecidas": "esquec", "esquecido": "esquec", "esquecidos": "esquec", "esqueda": "esqued", "esquedo": "esqued", "esqueleto": "esquelet", "esqueletos": "esquelet", "esquema": "esquem", "esquemas": "esquem", "esquenta": "esquent", "esquentam": "esquent", "esquentar": "esquent", "esquentei": "esquent", "esquentou": "esquent", "esquerda": "esquerd", "esquerdista": "esquerd", "esquerdistas": "esquerd", "esquerdo": "esquerd", "esquetes": "esquet", "esqui": "esqu", "esquiador": "esquiador", "esquiadores": "esquiador", "esquiar": "esqui", "esquina": "esquin", "esquinas": "esquin", "esquire": "esquir", "esquisitas": "esquisit", "esquisitices": "esquisitic", "esquisito": "esquisit", "esquisitos": "esquisit", "esquistossomose": "esquistossomos", "esquiva": "esquiv", "esquivar": "esquiv", "esquivou": "esquiv", "esquizofrenia": "esquizofren", "esquizofrênico": "esquizofrên", "essa": "essa", "essas": "essas", "esse": "esse", "essência": "essênc", "essenciais": "essenc", "essencial": "essencial", "essências": "essênc", "esses": "esses", "esso": "esso", "esta": "esta", "está": "está", "estabelece": "estabelec", "estabelecem": "estabelec", "estabelecer": "estabelec", "estabeleceram": "estabelec", "estabeleceu": "estabelec", "estabelecia": "estabelec", "estabelecida": "estabelec", "estabelecidas": "estabelec", "estabelecido": "estabelec", "estabelecidos": "estabelec", "estabelecimento": "estabelec", "estabelecimentos": "estabelec", "estabilidade": "estabil", "estabiliza": "estabiliz", "estabilização": "estabiliz", "estabilizada": "estabiliz", "estabilizadas": "estabiliz", "estabilizado": "estabiliz", "estabilizar": "estabiliz", "estabilizou": "estabiliz", "establishment": "establishment", "estaca": "estac", "estação": "estaçã", "estacas": "estac", "estaciona": "estacion", "estacioná": "estacion", "estacionado": "estacion", "estacionamento": "estacion", "estacionamentos": "estacion", "estacionando": "estacion", "estacionar": "estacion", "estacionou": "estacion", "estações": "estaçõ", "estada": "estad", "estádio": "estádi", "estádios": "estádi", "estadistas": "estad", "estado": "estad", "estados": "estad", "estaduais": "estadu", "estadual": "estadual", "estafa": "estaf", "estafante": "estaf", "estágio": "estági", "estágios": "estági", "estagnação": "estagn", "estagnada": "estagn", "estagnadas": "estagn", "estagnado": "estagn", "estala": "estal", "estalado": "estal", "estalinho": "estalinh", "estamos": "estam", "estampada": "estamp", "estampado": "estamp", "estampados": "estamp", "estampam": "estamp", "estampas": "estamp", "estampava": "estamp", "estancamento": "estanc", "estande": "estand", "estandes": "estand", "estando": "estand", "estante": "estant", "estão": "estã", "estar": "estar", "estará": "estar", "estarão": "estarã", "estardalhaço": "estardalhac", "estarei": "estar", "estarem": "estar", "estaremos": "estar", "estaria": "estar", "estariam": "estar", "estaríamos": "estar", "estarrecedor": "estarrecedor", "estarrecido": "estarrec", "estas": "estas", "estatais": "estat", "estatal": "estatal", "estatelar": "estatel", "estatelou": "estatel", "estática": "estát", "estatismo": "estat", "estatística": "estatíst", "estatísticas": "estatíst", "estatístico": "estatíst", "estatísticos": "estatíst", "estátua": "estátu", "estatura": "estatur", "estatuto": "estatut", "estava": "estav", "estavam": "estav", "estávamos": "estáv", "estáveis": "estáv", "estável": "estável", "este": "este", "estée": "esté", "estefani": "estefan", "esteira": "esteir", "esteiras": "esteir", "esteja": "estej", "estejam": "estej", "estela": "estel", "estelares": "estel", "estelionatários": "estelionatári", "estelionato": "estelionat", "estende": "estend", "estendem": "estend", "estendendo": "estend", "estender": "estend", "estenderá": "estend", "estenderam": "estend", "estendia": "estend", "estendida": "estend", "estendido": "estend", "estênio": "estêni", "estepe": "estep", "estepes": "estep", "ester": "ester", "estéreis": "estér", "estereofonizou": "estereofoniz", "estereotipada": "estereotip", "estereótipo": "estereótip", "estereótipos": "estereótip", "estéril": "estéril", "esterilidade": "esteril", "esterilizar": "esteriliz", "esterlina": "esterlin", "esteróide": "esteróid", "esterzinha": "esterzinh", "estes": "estes", "estética": "estét", "esteticamente": "estet", "estético": "estét", "estéticos": "estét", "estevam": "estev", "estevão": "estevã", "esteve": "estev", "esteves": "estev", "estevez": "estevez", "esther": "esther", "estherzinha": "estherzinh", "esticada": "estic", "esticadas": "estic", "esticar": "estic", "estico": "estic", "estigma": "estigm", "estigmatizada": "estigmatiz", "estilhaços": "estilhac", "estilingue": "estiling", "estilista": "estil", "estilistas": "estil", "estilo": "estil", "estilos": "estil", "estima": "estim", "estimação": "estim", "estimada": "estim", "estimado": "estim", "estimados": "estim", "estimam": "estim", "estimara": "estim", "estimativa": "estim", "estimativas": "estim", "estimavam": "estim", "estimula": "estimul", "estimulá": "estimul", "estimulação": "estimul", "estimulada": "estimul", "estimuladas": "estimul", "estimulado": "estimul", "estimulador": "estimul", "estimulados": "estimul", "estimulam": "estimul", "estimulando": "estimul", "estimular": "estimul", "estimule": "estimul", "estímulo": "estímul", "estímulos": "estímul", "estimulou": "estimul", "estipula": "estipul", "estipulada": "estipul", "estipulado": "estipul", "estipular": "estipul", "estiramento": "estir", "estirpe": "estirp", "estivador": "estiv", "estivas": "estiv", "estive": "estiv", "estivemos": "estiv", "estiver": "estiv", "estiveram": "estiv", "estiverem": "estiv", "estivermos": "estiv", "estivesse": "estiv", "estivessem": "estiv", "estivéssemos": "estivéss", "estocadas": "estoc", "estocados": "estoc", "estocagem": "estocag", "estojo": "estoj", "estomacal": "estomacal", "estômago": "estômag", "estonteante": "estont", "estonteantes": "estont", "estopim": "estopim", "estoque": "estoqu", "estoques": "estoqu", "estórias": "estór", "estorvo": "estorv", "estou": "estou", "estoura": "estour", "estourado": "estour", "estourar": "estour", "estouro": "estour", "estourou": "estour", "estoy": "estoy", "estrabismo": "estrab", "estrada": "estrad", "estradas": "estrad", "estradinha": "estradinh", "estrados": "estrad", "estraga": "estrag", "estragados": "estrag", "estragam": "estrag", "estragar": "estrag", "estrago": "estrag", "estragos": "estrag", "estrangeira": "estrangeir", "estrangeiras": "estrangeir", "estrangeiro": "estrangeir", "estrangeiros": "estrangeir", "estrangulado": "estrangul", "estrangularam": "estrangul", "estranha": "estranh", "estranham": "estranh", "estranhamento": "estranh", "estranhar": "estranh", "estranhas": "estranh", "estranheza": "estranh", "estranho": "estranh", "estranhos": "estranh", "estranhou": "estranh", "estratagemas": "estratagem", "estratégia": "estratég", "estratégias": "estratég", "estratégica": "estratég", "estrategicamente": "estrateg", "estratégicas": "estratég", "estratégicos": "estratég", "estreante": "estreant", "estrear": "estre", "estréia": "estré", "estréiam": "estré", "estreita": "estreit", "estreitamente": "estreit", "estreitando": "estreit", "estreitar": "estreit", "estreitas": "estreit", "estreito": "estreit", "estreitos": "estreit", "estrela": "estrel", "estrelado": "estrel", "estrelados": "estrel", "estrelar": "estrel", "estrelas": "estrel", "estrelato": "estrelat", "estrelismos": "estrel", "estremeciam": "estremec", "estreou": "estre", "estrepem": "estrep", "estressa": "estress", "estressada": "estress", "estressadas": "estress", "estressado": "estress", "estressante": "estress", "estressantes": "estress", "estresse": "estress", "estria": "estri", "estrias": "estri", "estridentes": "estrident", "estripulias": "estripul", "estritamente": "estrit", "estrito": "estrit", "estrofe": "estrof", "estrofes": "estrof", "estrógeno": "estrógen", "estrondo": "estrond", "estrondoso": "estrond", "estrutura": "estrutur", "estruturadas": "estrutur", "estruturadora": "estrutur", "estruturadores": "estrutur", "estruturais": "estrutur", "estrutural": "estrutural", "estruturando": "estrutur", "estruturas": "estrutur", "estuda": "estud", "estudada": "estud", "estudadas": "estud", "estudado": "estud", "estudam": "estud", "estudando": "estud", "estudante": "estud", "estudantes": "estud", "estudantis": "estudant", "estudar": "estud", "estudaram": "estud", "estudava": "estud", "estúdio": "estúdi", "estúdios": "estúdi", "estudioso": "estudi", "estudiosos": "estudi", "estudo": "estud", "estudos": "estud", "estudou": "estud", "estufa": "estuf", "estupenda": "estupend", "estúpidas": "estúp", "estupidez": "estupidez", "estuprada": "estupr", "estupravam": "estupr", "estupro": "estupr", "esturricada": "esturric", "estvez": "estvez", "esvair": "esva", "esvazia": "esvaz", "esvaziado": "esvazi", "esvaziamos": "esvazi", "esvaziar": "esvazi", "esvaziaram": "esvazi", "esvaziou": "esvazi", "esverdeada": "esverd", "esverdeado": "esverd", "esverdeados": "esverd", "et": "et", "etanol": "etanol", "etapa": "etap", "etapas": "etap", "etária": "etár", "etc": "etc", "etelma": "etelm", "éter": "éter", "eterna": "etern", "eternamente": "etern", "eternidade": "etern", "eternit": "eternit", "eternizam": "eterniz", "eterno": "etern", "etezinhos": "etezinh", "ética": "étic", "éticas": "étic", "ético": "étic", "éticos": "étic", "etiqueta": "etiquet", "etiquetas": "etiquet", "etnia": "etni", "etnias": "etni", "étnica": "étnic", "étnicas": "étnic", "étnico": "étnic", "étnicos": "étnic", "etno": "etno", "ets": "ets", "eu": "eu", "eua": "eua", "euclides": "euclid", "eudes": "eud", "eufemismos": "eufem", "euforia": "eufor", "eufóricas": "eufór", "eufórico": "eufór", "eugênia": "eugên", "eugenio": "eugeni", "eugênio": "eugêni", "eumano": "euman", "eunice": "eunic", "eureka": "eurek", "eurico": "euric", "eurídice": "eurídic", "eurípedes": "euríped", "euro": "eur", "eurocentrismo": "eurocentr", "eurocéticos": "eurocét", "europa": "europ", "européia": "europ", "européias": "europ", "europeu": "europ", "europeus": "europeus", "eusébio": "eusébi", "eustáquio": "eustáqui", "eva": "eva", "evacuada": "evacu", "evander": "evand", "evandro": "evandr", "evangelho": "evangelh", "evangélica": "evangél", "evangélicas": "evangél", "evangélico": "evangél", "evangélicos": "evangél", "evangelista": "evangel", "evangelização": "evangeliz", "evans": "evans", "evelin": "evelin", "evenks": "evenks", "evento": "event", "eventos": "event", "eventuais": "eventu", "eventual": "eventual", "eventualmente": "eventual", "everest": "everest", "evidência": "evident", "evidenciada": "evidenc", "evidenciam": "evidenc", "evidências": "evident", "evidente": "evident", "evidentemente": "evident", "evidentes": "evident", "evita": "evit", "evitá": "evit", "evitado": "evit", "evitam": "evit", "evitando": "evit", "evitar": "evit", "evitará": "evit", "evitaria": "evit", "evitariam": "evit", "evitava": "evit", "evitavam": "evit", "evite": "evit", "evitou": "evit", "evocam": "evoc", "evocando": "evoc", "evocar": "evoc", "evocativa": "evoc", "evolução": "evoluçã", "evoluem": "evolu", "evolui": "evolu", "evoluir": "evolu", "evoluirá": "evolu", "evoluíram": "evoluír", "evoluísse": "evoluíss", "evoluiu": "evolu", "evolutiva": "evolut", "ex": "ex", "exacerbada": "exacerb", "exacerbadas": "exacerb", "exacerbar": "exacerb", "exagera": "exag", "exagerada": "exager", "exageradamente": "exager", "exageradas": "exager", "exagerado": "exager", "exagerados": "exager", "exageram": "exag", "exagerando": "exager", "exagerar": "exager", "exagero": "exager", "exageros": "exager", "exala": "exal", "exalando": "exal", "exalta": "exalt", "exaltação": "exalt", "exaltações": "exalt", "exaltar": "exalt", "exame": "exam", "exames": "exam", "examina": "examin", "examinada": "examin", "examinadas": "examin", "examinado": "examin", "examinador": "examin", "examinadora": "examin", "examinados": "examin", "examinam": "examin", "examinar": "examin", "examinaram": "examin", "examinassem": "examin", "examinei": "examin", "examinou": "examin", "exata": "exat", "exatamente": "exat", "exatas": "exat", "exato": "exat", "exatos": "exat", "exaurido": "exaur", "exaustão": "exaustã", "exaustiva": "exaust", "exaustivamente": "exaust", "exaustivo": "exaust", "exaustivos": "exaust", "exausto": "exaust", "exaustos": "exaust", "exceção": "exceçã", "exceções": "exceçõ", "excedente": "excedent", "excedentes": "excedent", "excel": "excel", "excelência": "excelent", "excelente": "excelent", "excelentes": "excelent", "excentricidade": "excentr", "excepcionais": "excepcion", "excepcional": "excepcional", "excepcionalmente": "excepcional", "excessiva": "excess", "excessivamente": "excess", "excessivas": "excess", "excessivo": "excess", "excessivos": "excess", "excesso": "excess", "excessos": "excess", "exceto": "excet", "exchange": "exchang", "excita": "excit", "excitação": "excit", "excitada": "excit", "excitado": "excit", "excitante": "excit", "exclamação": "exclam", "exclamou": "exclam", "excludente": "excludent", "exclui": "exclu", "excluído": "excluíd", "excluídos": "excluíd", "excluindo": "exclu", "exclusão": "exclusã", "exclusiva": "exclus", "exclusivamente": "exclus", "exclusivas": "exclus", "exclusividade": "exclus", "exclusivo": "exclus", "exclusivos": "exclus", "exclusões": "exclusõ", "excrementos": "excrement", "excrescência": "excrescent", "excursão": "excursã", "excursões": "excursõ", "execução": "execuçã", "execuções": "execuçõ", "executa": "execut", "executada": "execut", "executado": "execut", "executar": "execut", "executarão": "execut", "executavam": "execut", "executável": "execut", "executiva": "execut", "executivas": "execut", "executivo": "execut", "executivos": "execut", "executo": "execut", "executou": "execut", "exemplar": "exempl", "exemplares": "exempl", "exemplificando": "exemplific", "exemplo": "exempl", "exemplos": "exempl", "exerce": "exerc", "exercem": "exerc", "exercendo": "exerc", "exercer": "exerc", "exerceu": "exerc", "exerciam": "exerc", "exercício": "exercíci", "exercícios": "exercíci", "exercida": "exerc", "exercidas": "exerc", "exercido": "exerc", "exercita": "exercit", "exercitada": "exercit", "exercitam": "exercit", "exercitando": "exercit", "exercitar": "exercit", "exército": "exércit", "exércitos": "exércit", "exerço": "exerc", "exibe": "exib", "exibem": "exib", "exibia": "exib", "exibiam": "exib", "exibição": "exibiçã", "exibicionismo": "exibicion", "exibicionista": "exibicion", "exibições": "exibiçõ", "exibida": "exib", "exibidas": "exib", "exibido": "exib", "exibidos": "exib", "exibindo": "exib", "exibir": "exib", "exibirá": "exib", "exibiu": "exib", "exige": "exig", "exigem": "exig", "exigência": "exigent", "exigências": "exigent", "exigente": "exigent", "exigentes": "exigent", "exigia": "exig", "exigiam": "exig", "exigida": "exig", "exigido": "exig", "exigidos": "exig", "exigindo": "exig", "exigir": "exig", "exigirá": "exig", "exigiram": "exig", "exigiria": "exig", "exigisse": "exig", "exigiu": "exig", "exígua": "exígu", "exiguus": "exiguus", "exijam": "exij", "exijo": "exij", "exilado": "exil", "exilados": "exil", "exilei": "exil", "exílio": "exíli", "exilou": "exil", "eximbank": "eximbank", "eximindo": "exim", "exímio": "exími", "exista": "exist", "existam": "exist", "existe": "exist", "existem": "exist", "existência": "existent", "existenciais": "existenc", "existencial": "existencial", "existencialista": "existencial", "existente": "existent", "existentes": "existent", "existia": "exist", "existiam": "exist", "existindo": "exist", "existir": "exist", "existiram": "exist", "existirão": "exist", "existiria": "exist", "existiriam": "exist", "existisse": "exist", "existissem": "exist", "existiu": "exist", "êxito": "êxit", "êxitos": "êxit", "êxodo": "êxod", "exorbitantes": "exorbit", "exorcismo": "exorc", "exorcizada": "exorciz", "exortando": "exort", "exótica": "exót", "exóticas": "exót", "exótico": "exót", "exóticos": "exót", "expand": "expand", "expande": "expand", "expandindo": "expand", "expandir": "expand", "expandiu": "expand", "expansão": "expansã", "expansionista": "expansion", "expansões": "expansõ", "expectante": "expect", "expectativa": "expect", "expectativas": "expect", "expedição": "expediçã", "expedições": "expediçõ", "expedida": "exped", "expedido": "exped", "expedidos": "exped", "expediente": "expedient", "expediu": "exped", "expelida": "expel", "expelido": "expel", "expelir": "expel", "experiência": "experient", "experiências": "experient", "experiente": "experient", "experientes": "experient", "experimenta": "experiment", "experimentação": "experiment", "experimentadas": "experiment", "experimentado": "experiment", "experimentados": "experiment", "experimentais": "experiment", "experimental": "experimental", "experimentam": "experiment", "experimentando": "experiment", "experimentar": "experiment", "experimentaram": "experiment", "experimentava": "experiment", "experimente": "experi", "experimentei": "experiment", "experimento": "exper", "experimentos": "exper", "experimentou": "experiment", "experts": "experts", "expiração": "expir", "expiratória": "expiratór", "explica": "explic", "explicação": "explic", "explicações": "explic", "explicada": "explic", "explicado": "explic", "explicados": "explic", "explicam": "explic", "explicando": "explic", "explicar": "explic", "explicativo": "explic", "explicava": "explic", "explícita": "explícit", "explicitar": "explicit", "explícito": "explícit", "explico": "explic", "explicou": "explic", "explique": "expliqu", "explode": "explod", "explodem": "explod", "explodi": "explod", "explodido": "explod", "explodir": "explod", "explodira": "explod", "explodiram": "explod", "explodiu": "explod", "explora": "explor", "exploração": "explor", "explorado": "explor", "explorador": "explor", "exploradora": "explor", "exploradores": "explor", "exploram": "explor", "explorando": "explor", "explorar": "explor", "explorariam": "explor", "explorer": "explor", "explosão": "explosã", "explosiva": "explos", "explosivas": "explos", "explosivo": "explos", "explosivos": "explos", "explosões": "explosõ", "expõe": "expõ", "expoente": "expoent", "expondo": "expond", "exponha": "exponh", "expor": "expor", "exporia": "expor", "exporta": "export", "exportação": "export", "exportações": "export", "exportada": "export", "exportado": "export", "exportador": "export", "exportadora": "export", "exportadores": "export", "exportados": "export", "exportam": "export", "exportar": "export", "exportou": "export", "expôs": "expôs", "exposição": "exposiçã", "exposições": "exposiçõ", "expositores": "expositor", "exposto": "expost", "expostos": "expost", "express": "express", "expressa": "express", "expressam": "express", "expressamente": "express", "expressando": "express", "expressão": "expressã", "expressar": "express", "expressas": "express", "expressionistas": "expression", "expressiva": "express", "expressivíssima": "expressivíssim", "expressivo": "express", "expressões": "expressõ", "expressos": "express", "exprima": "exprim", "exprimir": "exprim", "expulsá": "expuls", "expulsando": "expuls", "expulsar": "expuls", "expulsasse": "expuls", "expulsavam": "expuls", "expulso": "expuls", "expulsos": "expuls", "expurgada": "expurg", "expus": "expus", "extensa": "extens", "extensão": "extensã", "extensas": "extens", "extenso": "extens", "extensos": "extens", "extenuantes": "extenu", "exterior": "exterior", "exteriores": "exterior", "exterminador": "extermin", "extermínio": "extermíni", "externa": "extern", "externas": "extern", "externo": "extern", "externos": "extern", "extinção": "extinçã", "extinta": "extint", "extinto": "extint", "extintor": "extintor", "extirpado": "extirp", "extirpar": "extirp", "extirpei": "extirp", "extorquidas": "extorqu", "extorsão": "extorsã", "extra": "extra", "extração": "extraçã", "extrações": "extraçõ", "extraconjugais": "extraconjug", "extradição": "extradiçã", "extraem": "extra", "extrai": "extra", "extraiam": "extra", "extraída": "extraíd", "extraídas": "extraíd", "extraído": "extraíd", "extrair": "extra", "extraiu": "extra", "extraordinária": "extraordinár", "extraordinariamente": "extraordinari", "extraordinário": "extraordinári", "extraordinários": "extraordinári", "extrapola": "extrapol", "extras": "extras", "extraterrestes": "extraterr", "extraterrestre": "extraterrestr", "extraterrestres": "extraterrestr", "extrato": "extrat", "extratoras": "extrator", "extratos": "extrat", "extratrabalho": "extratrabalh", "extravagância": "extravag", "extravagante": "extravag", "extravagantes": "extravag", "extravasamento": "extravas", "extrema": "extrem", "extremado": "extrem", "extremamente": "extrem", "extremidade": "extrem", "extremidades": "extrem", "extremo": "extrem", "extremos": "extrem", "extrovertida": "extrovert", "extrovertidas": "extrovert", "exu": "exu", "exuberância": "exuber", "exuberantes": "exuber", "exulta": "exult", "exultei": "exult", "exultou": "exult", "exumação": "exum", "exxon": "exxon", "eye": "eye", "eymar": "eymar", "ezequiel": "ezequiel", "f": "f", "fã": "fã", "faa": "faa", "faap": "faap", "fab": "fab", "fabergé": "faberg", "fabiana": "fabian", "fábio": "fábi", "fabri": "fabr", "fabrica": "fabric", "fábrica": "fábric", "fabricação": "fabric", "fabricada": "fabric", "fabricadas": "fabric", "fabricado": "fabric", "fabricados": "fabric", "fabricam": "fabric", "fabricando": "fabric", "fabricante": "fabric", "fabricantes": "fabric", "fabricar": "fabric", "fábricas": "fábric", "fabricasse": "fabric", "fabricavam": "fabric", "fabrício": "fabríci", "fabricou": "fabric", "fabriquetas": "fabriquet", "fabrizia": "fabriz", "fábula": "fábul", "fabuloso": "fabul", "fabulosos": "fabul", "faca": "fac", "faça": "fac", "facadas": "fac", "façam": "fac", "façanha": "façanh", "facção": "facçã", "facções": "facçõ", "face": "fac", "fáceis": "fác", "faces": "fac", "facet": "facet", "faceta": "facet", "fachada": "fach", "facho": "fach", "facial": "facial", "fácil": "fácil", "facilidade": "facil", "facilidades": "facil", "facilita": "facilit", "facilitado": "facilit", "facilitando": "facilit", "facilitar": "facilit", "facilitaria": "facilit", "facilito": "facilit", "facilmente": "facil", "faço": "fac", "factóides": "factóid", "factory": "factory", "faculdade": "faculdad", "faculdades": "faculdad", "fadado": "fad", "fadados": "fad", "fadas": "fad", "fadiga": "fadig", "fadlo": "fadl", "fagolipo": "fagolip", "fagundes": "fagund", "faildes": "faild", "faire": "fair", "fairlane": "fairlan", "faiscantes": "faiscant", "faisões": "faisõ", "faith": "faith", "faixa": "faix", "faixas": "faix", "fajuto": "fajut", "fala": "fal", "falada": "fal", "faladas": "fal", "falado": "fal", "falam": "fal", "falamos": "fal", "falando": "fal", "falante": "falant", "falantes": "falant", "falar": "fal", "falaram": "fal", "falaremos": "fal", "falaria": "fal", "falas": "fal", "falatório": "falatóri", "falava": "fal", "falavam": "fal", "falcão": "falcã", "falcatrua": "falcatru", "falcatruas": "falcatru", "falco": "falc", "fale": "fal", "falecer": "falec", "falecida": "falec", "falecido": "falec", "falecimento": "falec", "falei": "fal", "falem": "fal", "falência": "falênc", "falha": "falh", "falhas": "falh", "falhou": "falh", "falida": "fal", "falidas": "fal", "falido": "fal", "falidos": "fal", "falimentar": "faliment", "faliram": "fal", "faliu": "fal", "falo": "fal", "falou": "fal", "falsa": "fals", "falsários": "falsári", "falsas": "fals", "falseando": "fals", "falsidade": "falsidad", "falsificação": "falsific", "falsificações": "falsific", "falsificadas": "falsific", "falsificado": "falsific", "falsificar": "falsific", "falsificaram": "falsific", "falso": "fals", "falsos": "fals", "falta": "falt", "faltado": "falt", "faltam": "falt", "faltando": "falt", "faltar": "falt", "faltará": "falt", "faltariam": "falt", "faltas": "falt", "faltava": "falt", "faltavam": "falt", "faltei": "falt", "faltou": "falt", "fama": "fam", "fambrini": "fambrin", "fame": "fam", "famí": "fam", "famigerada": "famiger", "família": "famíl", "familiar": "famili", "familiares": "famili", "familiarizando": "familiariz", "famílias": "famíl", "family": "family", "faminto": "famint", "famintos": "famint", "famosa": "famos", "famosas": "famos", "famoso": "famos", "famosos": "famos", "fan": "fan", "fanática": "fanát", "fanático": "fanát", "fanáticos": "fanát", "fanatismo": "fanat", "fanhosa": "fanhos", "fanini": "fanin", "fantasia": "fantas", "fantasiado": "fantasi", "fantasias": "fantas", "fantasio": "fantasi", "fantasiosa": "fantasi", "fantasioso": "fantasi", "fantasma": "fantasm", "fantasmas": "fantasm", "fantástica": "fantást", "fantásticas": "fantást", "fantástico": "fantást", "fantásticos": "fantást", "fapesp": "fapesp", "fará": "far", "farah": "farah", "farão": "farã", "farda": "fard", "fardado": "fard", "fardas": "fard", "fardo": "fard", "farei": "far", "fareja": "farej", "faremos": "far", "fares": "far", "faria": "far", "fariam": "far", "faríamos": "far", "farias": "far", "faringe": "faring", "farinha": "farinh", "farkas": "fark", "farmacêutica": "farmacêut", "farmacêuticas": "farmacêut", "farmacêutico": "farmacêut", "farmacêuticos": "farmacêut", "farmácia": "farmác", "farmácias": "farmác", "farmacologista": "farmacolog", "farmacologistas": "farmacolog", "farmaton": "farmaton", "faro": "far", "faroeste": "faro", "faroestes": "faro", "farofa": "farof", "faróis": "faró", "farol": "farol", "farra": "farr", "farrah": "farrah", "farrakhan": "farrakhan", "farras": "farr", "farsa": "fars", "farta": "fart", "fartando": "fart", "fartas": "fart", "farto": "fart", "fartos": "fart", "fãs": "fãs", "fasano": "fasan", "fascículos": "fascícul", "fascina": "fascin", "fascinação": "fascin", "fascinado": "fascin", "fascinam": "fascin", "fascinante": "fascin", "fascinava": "fascin", "fascínio": "fascíni", "fascinou": "fascin", "fase": "fas", "fases": "fas", "fashion": "fashion", "fast": "fast", "fat": "fat", "fatais": "fat", "fatal": "fatal", "fatalidade": "fatal", "fatalidades": "fatal", "fatia": "fat", "fatiadas": "fati", "fatias": "fat", "fatídico": "fatíd", "fátima": "fátim", "fato": "fat", "fator": "fator", "fatores": "fator", "fatos": "fat", "fatura": "fatur", "faturado": "fatur", "faturados": "fatur", "faturam": "fatur", "faturamento": "fatur", "faturando": "fatur", "faturar": "fatur", "faturaram": "fatur", "faturariam": "fatur", "faturava": "fatur", "faturou": "fatur", "fauna": "faun", "faustini": "faustin", "faustino": "faustin", "fausto": "faust", "fava": "fav", "favas": "fav", "favela": "favel", "favelado": "favel", "favelas": "favel", "fávero": "fáver", "favor": "favor", "favoráveis": "favor", "favorável": "favor", "favoravelmente": "favor", "favorece": "favorec", "favorecem": "favorec", "favorecendo": "favorec", "favorecer": "favorec", "favorecida": "favorec", "favorecidas": "favorec", "favorecimento": "favorec", "favores": "favor", "favorito": "favorit", "fawcett": "fawcett", "fax": "fax", "faxineira": "faxineir", "faxineiro": "faxineir", "faxineiros": "faxineir", "faz": "faz", "fazê": "faz", "fazem": "faz", "fazemos": "faz", "fazenda": "fazend", "fazendas": "fazend", "fazendeiro": "fazendeir", "fazendeiros": "fazendeir", "fazendo": "faz", "fazendola": "fazendol", "fazer": "faz", "fazermos": "faz", "fazia": "faz", "faziam": "faz", "fazíamos": "faz", "fbi": "fbi", "fda": "fda", "fé": "fé", "fearnside": "fearnsid", "febem": "feb", "febre": "febr", "fecha": "fech", "fechá": "fech", "fechada": "fech", "fechadas": "fech", "fechado": "fech", "fechados": "fech", "fechadura": "fechadur", "fecham": "fech", "fechamento": "fechament", "fechando": "fech", "fechar": "fech", "fechara": "fech", "fecharam": "fech", "fechassem": "fech", "fechava": "fech", "feche": "fech", "fechou": "fech", "fecundada": "fecund", "fecundas": "fecund", "federação": "feder", "federações": "feder", "federais": "feder", "federal": "federal", "federativo": "feder", "federico": "feder", "fedido": "fed", "feedback": "feedback", "feia": "fei", "feição": "feiçã", "feições": "feiçõ", "feijão": "feijã", "feijó": "feij", "feijoada": "feijo", "feio": "fei", "feios": "fei", "feira": "feir", "feirante": "feirant", "feiras": "feir", "feita": "feit", "feitas": "feit", "feitiçaria": "feitic", "feitiço": "feitic", "feitiços": "feitic", "feitler": "feitl", "feito": "feit", "feitores": "feitor", "feitorias": "feitor", "feitos": "feit", "feitosa": "feitos", "feiúra": "feiúr", "feix": "feix", "feixe": "feix", "feldmann": "feldmann", "felicidade": "felic", "felicíssimos": "felicíss", "felino": "felin", "felinos": "felin", "felinto": "felint", "felipe": "felip", "félix": "félix", "feliz": "feliz", "felizardos": "felizard", "felizes": "feliz", "felizmente": "feliz", "fellini": "fellin", "fêmea": "fêm", "fêmeas": "fêm", "feminilidade": "feminil", "feminina": "feminin", "femininas": "feminin", "feminino": "feminin", "femininos": "feminin", "feminismo": "femin", "feminista": "femin", "feministas": "femin", "femme": "femm", "fêmur": "fêmur", "fêmures": "fêmur", "fendas": "fend", "fenecem": "fenec", "fenecessem": "fenec", "fenerich": "fenerich", "fenomenais": "fenomen", "fenomenal": "fenomenal", "fenômeno": "fenômen", "fenômenos": "fenômen", "fenproporex": "fenproporex", "fera": "fer", "feras": "fer", "ferdinando": "ferdin", "fere": "fer", "ferguson": "ferguson", "feriado": "feri", "feriados": "feri", "férias": "fér", "ferida": "fer", "feridas": "fer", "ferido": "fer", "feridos": "fer", "ferimento": "feriment", "ferimentos": "feriment", "ferir": "fer", "feriu": "fer", "fermentação": "ferment", "fermentando": "ferment", "fernanda": "fernand", "fernandes": "fernand", "fernandez": "fernandez", "fernando": "fern", "ferocidade": "feroc", "feroz": "feroz", "ferragano": "ferragan", "ferramenta": "ferrament", "ferramentaria": "ferrament", "ferramentas": "ferrament", "ferrari": "ferrar", "ferraz": "ferraz", "férreas": "férr", "ferreira": "ferreir", "ferrenhos": "ferrenh", "ferro": "ferr", "ferrovia": "ferrov", "ferroviária": "ferroviár", "ferroviárias": "ferroviár", "ferroviário": "ferroviári", "ferrovias": "ferrov", "ferry": "ferry", "fértil": "fértil", "fertilidade": "fertil", "fervente": "fervent", "ferver": "ferv", "fervilhante": "fervilh", "fervilhantes": "fervilh", "fervilhavam": "fervilh", "fervor": "fervor", "fervoroso": "fervor", "fervorosos": "fervor", "fes": "fes", "festa": "fest", "festança": "festanc", "festas": "fest", "festeja": "festej", "festejada": "festej", "festejam": "festej", "festejar": "festej", "festejaram": "festej", "festejava": "festej", "festejos": "festej", "festinha": "festinh", "festinhas": "festinh", "festiva": "festiv", "festivais": "festiv", "festival": "festival", "fethyie": "fethyi", "fetiche": "fetich", "fétido": "fét", "feto": "fet", "fevereiro": "fevereir", "fez": "fez", "fezes": "fez", "fezinha": "fezinh", "fgts": "fgts", "fgv": "fgv", "fhc": "fhc", "fiada": "fiad", "fiador": "fiador", "fiança": "fianc", "fiapo": "fiap", "fiat": "fiat", "fiats": "fiats", "fibe": "fib", "fibra": "fibr", "fibras": "fibr", "fibrasil": "fibrasil", "fibrinogênio": "fibrinogêni", "fibroblastos": "fibroblast", "fibromas": "fibrom", "fibrose": "fibros", "fica": "fic", "ficado": "fic", "ficam": "fic", "ficamos": "fic", "ficando": "fic", "ficar": "fic", "ficara": "fic", "ficará": "fic", "ficaram": "fic", "ficarão": "fic", "ficarem": "fic", "ficaria": "fic", "ficariam": "fic", "ficarmos": "fic", "ficasse": "fic", "ficassem": "fic", "ficássemos": "fic", "ficava": "fic", "ficavam": "fic", "ficção": "ficçã", "ficcional": "ficcional", "ficha": "fich", "fichário": "fichári", "fichas": "fich", "fichtner": "fichtn", "fico": "fic", "ficou": "fic", "fictícia": "fictíc", "fictícias": "fictíc", "fictício": "fictíci", "fictícios": "fictíci", "fidalgo": "fidalg", "fidalgos": "fidalg", "fidalguia": "fidalgu", "fidel": "fidel", "fidelidade": "fidel", "fiéis": "fié", "fiel": "fiel", "fiesp": "fiesp", "fiesta": "fiest", "fígado": "fíg", "figaro": "figar", "figueira": "figueir", "figueiredo": "figueired", "figura": "figur", "figuração": "figur", "figuradamente": "figur", "figuram": "figur", "figurantes": "figur", "figurão": "figurã", "figurar": "figur", "figuraria": "figur", "figuras": "figur", "figurinhas": "figurinh", "figurinista": "figurin", "figurino": "figurin", "figurinos": "figurin", "figurões": "figurõ", "fiji": "fij", "fila": "fil", "filadélfia": "filadélf", "filantrópica": "filantróp", "filantrópicos": "filantróp", "filão": "filã", "filarmônicas": "filarmôn", "filas": "fil", "filé": "fil", "fileira": "fileir", "fileiras": "fileir", "filezão": "filezã", "filha": "filh", "filhas": "filh", "filhinho": "filhinh", "filho": "filh", "filhos": "filh", "filhote": "filhot", "filhotes": "filhot", "filiação": "filiaçã", "filiado": "fili", "filiados": "fili", "filiais": "fili", "filial": "filial", "filinto": "filint", "filiou": "fili", "filip": "filip", "filipe": "filip", "filipeck": "filipeck", "filipinas": "filipin", "filippo": "filipp", "filisofia": "filisof", "film": "film", "filmada": "film", "filmados": "film", "filmagem": "filmag", "filmagens": "filmagens", "filmar": "film", "filme": "film", "filmes": "film", "filmou": "film", "filomena": "filomen", "filós": "filós", "filosofa": "filosof", "filósofa": "filósof", "filosofia": "filosof", "filosóficas": "filosóf", "filósofo": "filósof", "filósofos": "filósof", "filtra": "filtr", "filtragem": "filtrag", "filtrar": "filtr", "filtro": "filtr", "fim": "fim", "fimose": "fimos", "fin": "fin", "fina": "fin", "finais": "fin", "final": "final", "finalidade": "final", "finalidades": "final", "finalistas": "final", "finalização": "finaliz", "finalizado": "finaliz", "finalizando": "finaliz", "finalizar": "finaliz", "finalmente": "final", "finança": "financ", "finanças": "financ", "financeira": "financeir", "financeiramente": "financeir", "financeiras": "financeir", "financeiro": "financeir", "financeiros": "financeir", "financia": "financ", "financiadas": "financ", "financiado": "financ", "financiador": "financ", "financiadoras": "financ", "financiados": "financ", "financiam": "financ", "financiamento": "financ", "financiamentos": "financ", "financiando": "financ", "financiar": "financ", "financiava": "financ", "financiei": "financ", "financiou": "financ", "finas": "fin", "finasterida": "finaster", "fincada": "finc", "fincar": "finc", "fincato": "fincat", "fincou": "finc", "finep": "finep", "finge": "fing", "fingi": "fing", "fingia": "fing", "fingindo": "fing", "fingir": "fing", "fininho": "fininh", "finíssimo": "finíssim", "fino": "fin", "finos": "fin", "fins": "fins", "fio": "fio", "fiona": "fion", "fiorentini": "fiorentin", "fios": "fios", "fique": "fiqu", "fiquei": "fiqu", "fiquem": "fiqu", "firma": "firm", "firmada": "firm", "firmado": "firm", "firmados": "firm", "firmam": "firm", "firmamento": "firmament", "firmará": "firm", "firmaram": "firm", "firmas": "firm", "firmavam": "firm", "firme": "firm", "firmem": "firm", "firmemente": "firmement", "firmes": "firm", "firmeza": "firmez", "firmou": "firm", "fiscais": "fisc", "fiscal": "fiscal", "fiscaliza": "fiscaliz", "fiscalização": "fiscaliz", "fiscalizações": "fiscaliz", "fiscalizado": "fiscaliz", "fiscalizadora": "fiscaliz", "fiscalizar": "fiscaliz", "fiscalizavam": "fiscaliz", "fiscalizou": "fiscaliz", "fischer": "fisch", "fisco": "fisc", "fisgado": "fisg", "fisgando": "fisg", "fisgar": "fisg", "fisher": "fish", "física": "físic", "fisicamente": "fisic", "físicas": "físic", "físico": "físic", "físicos": "físic", "fisiculturista": "fisicultur", "fisiologia": "fisiolog", "fisiologismo": "fisiolog", "fisiologista": "fisiolog", "fisionomia": "fisionom", "fisioterapeuta": "fisioterapeut", "fisioterapia": "fisioterap", "fissura": "fissur", "fissurado": "fissur", "fit": "fit", "fita": "fit", "fitas": "fit", "fitinhas": "fitinh", "fitness": "fitness", "fitoterapia": "fitoterap", "fitoterápico": "fitoteráp", "fittipaldi": "fittipald", "fitzgerald": "fitzgerald", "fivela": "fivel", "fixa": "fix", "fixação": "fixaçã", "fixada": "fix", "fixado": "fix", "fixador": "fixador", "fixam": "fix", "fixar": "fix", "fixas": "fix", "fixe": "fix", "fixo": "fix", "fixos": "fix", "fixou": "fix", "fiz": "fiz", "fizemos": "fiz", "fizer": "fiz", "fizeram": "fiz", "fizermos": "fiz", "fizesse": "fiz", "fizessem": "fiz", "fizéssemos": "fizéss", "flacidez": "flacidez", "flácido": "flác", "flag": "flag", "flagra": "flagr", "flagrado": "flagr", "flagrante": "flagrant", "flagrantemente": "flagrant", "flagrantes": "flagrant", "flagrar": "flagr", "flagrava": "flagr", "flagre": "flagr", "flagrou": "flagr", "flamenca": "flamenc", "flamengo": "flameng", "flandres": "flandr", "flanelinha": "flanelinh", "flash": "flash", "flashes": "flash", "flats": "flats", "flauta": "flaut", "flávai": "fláva", "flávia": "fláv", "flavio": "flavi", "flávio": "flávi", "flecha": "flech", "flertar": "flert", "flerte": "flert", "fleugma": "fleugm", "fleuma": "fleum", "fleury": "fleury", "flexibilidade": "flexibil", "flexibilização": "flexibiliz", "flexibilizada": "flexibiliz", "flexibilizamos": "flexibiliz", "flexibilizar": "flexibiliz", "flexionando": "flexion", "flexíveis": "flexív", "flexível": "flexível", "flexões": "flexõ", "flinn": "flinn", "fliperama": "fliperam", "flipperama": "flipperam", "flor": "flor", "floreados": "flor", "florença": "florenc", "florência": "florênc", "florêncio": "florênci", "florent": "florent", "flores": "flor", "floresas": "flores", "florescem": "floresc", "florescer": "floresc", "florescido": "floresc", "florescimento": "floresc", "floresta": "florest", "florestal": "florestal", "florestas": "florest", "florestta": "florestt", "floriano": "florian", "florianópolis": "florianópol", "florida": "flor", "flórida": "flór", "floridi": "florid", "florisbela": "florisbel", "florisval": "florisval", "flow": "flow", "flower": "flow", "flui": "flu", "fluidos": "flu", "fluir": "flu", "fluminense": "fluminens", "fluoretos": "fluoret", "fluoxetina": "fluoxetin", "fluril": "fluril", "flutuações": "flutuaçõ", "flutuando": "flutu", "flutuante": "flutuant", "flutuantes": "flutuant", "flutuasse": "flutu", "fluvial": "fluvial", "fluxo": "flux", "fm": "fm", "fmi": "fmi", "fms": "fms", "fmu": "fmu", "foale": "foal", "foca": "foc", "foça": "foc", "focados": "foc", "foco": "foc", "focos": "foc", "fodor": "fodor", "fofinhos": "fofinh", "fofoca": "fofoc", "fofocar": "fofoc", "fofocas": "fofoc", "fogaça": "fogac", "fogão": "fogã", "foge": "fog", "fogem": "fog", "fogleman": "fogleman", "fogo": "fog", "fogos": "fog", "fogosas": "fogos", "fogueira": "fogueir", "foguete": "foguet", "foguetes": "foguet", "foguetório": "foguetóri", "foi": "foi", "foice": "foic", "fok": "fok", "fokker": "fokk", "folclore": "folclor", "folclórica": "folclór", "folclórico": "folclór", "fôlego": "fôleg", "folga": "folg", "folgada": "folg", "folgadas": "folg", "folgar": "folg", "folha": "folh", "folhas": "folh", "folhearam": "folh", "folheiam": "folh", "folhetim": "folhetim", "folheto": "folhet", "folhetos": "folhet", "folião": "foliã", "folio": "foli", "fome": "fom", "fomos": "fom", "fonaudiologia": "fonaudiolog", "fonda": "fond", "fone": "fon", "fonemas": "fonem", "fones": "fon", "fonética": "fonét", "fonoaudióloga": "fonoaudiólog", "fonoaudiologia": "fonoaudiolog", "fonográfico": "fonográf", "fonógrafo": "fonógraf", "fonseca": "fonsec", "fontana": "fontan", "fonte": "font", "fontecindam": "fontecind", "fontenelle": "fontenell", "fontes": "font", "fontoura": "fontour", "food": "food", "foods": "foods", "football": "football", "for": "for", "fora": "for", "foragida": "forag", "foragido": "forag", "foram": "for", "forbes": "forb", "forca": "forc", "força": "forc", "forçada": "forc", "forçadas": "forc", "forçado": "forc", "forçados": "forc", "forçando": "forc", "forçar": "forc", "forçaram": "forc", "forças": "forc", "force": "forc", "forcei": "forc", "forçosamente": "forços", "ford": "ford", "forem": "for", "forense": "forens", "forest": "forest", "forja": "forj", "forjada": "forj", "forjadas": "forj", "forjado": "forj", "forjados": "forj", "forjam": "forj", "forjar": "forj", "forma": "form", "formação": "formaçã", "formações": "formaçõ", "formada": "form", "formadas": "form", "formado": "form", "formador": "formador", "formadores": "formador", "formados": "form", "formais": "form", "formal": "formal", "formalidade": "formal", "formalmente": "formal", "formam": "form", "formamos": "form", "formando": "form", "formar": "form", "formas": "form", "formatação": "format", "formato": "format", "formatos": "format", "formatura": "formatur", "formava": "form", "forme": "form", "fórmica": "fórmic", "formidáveis": "formid", "formidável": "formid", "formiga": "formig", "formigas": "formig", "formigoni": "formigon", "formol": "formol", "formos": "form", "formosa": "formos", "formou": "form", "fórmula": "fórmul", "formulação": "formul", "formulações": "formul", "formulada": "formul", "formuladas": "formul", "formulados": "formul", "formular": "formul", "formulários": "formulári", "fórmulas": "fórmul", "formule": "formul", "fornada": "forn", "forncedores": "forncedor", "fornece": "fornec", "fornecedor": "fornecedor", "fornecedora": "fornecedor", "fornecedoras": "fornecedor", "fornecedores": "fornecedor", "fornecem": "fornec", "fornecendo": "fornec", "fornecer": "fornec", "forneceu": "fornec", "forneciam": "fornec", "fornecidos": "fornec", "fornecimento": "fornec", "fornicando": "fornic", "forno": "forn", "foro": "for", "forração": "forraçã", "forrar": "forr", "forrest": "forrest", "forro": "forr", "forró": "forr", "forrós": "forrós", "fort": "fort", "fortalece": "fortalec", "fortalecem": "fortalec", "fortalecer": "fortalec", "fortaleceria": "fortalec", "fortaleceu": "fortalec", "fortalecido": "fortalec", "fortalecimento": "fortalec", "fortaleza": "fortal", "forte": "fort", "fortemente": "fortement", "fortes": "fort", "fortuita": "fortuit", "fortuito": "fortuit", "fortuna": "fortun", "fortunas": "fortun", "fortunato": "fortunat", "fortune": "fortun", "forum": "forum", "fórum": "fórum", "fósforos": "fósfor", "fossa": "foss", "fosse": "foss", "fósseis": "fóss", "fossem": "foss", "fóssil": "fóssil", "foster": "fost", "foto": "fot", "fotógrafa": "fotógraf", "fotografá": "fotograf", "fotografada": "fotograf", "fotografadas": "fotograf", "fotografados": "fotograf", "fotografar": "fotograf", "fotografia": "fotograf", "fotografias": "fotograf", "fotográfica": "fotográf", "fotográficas": "fotográf", "fotográfico": "fotográf", "fotográficos": "fotográf", "fotógrafo": "fotógraf", "fotógrafos": "fotógraf", "fotogramas": "fotogram", "fotolitos": "fotolit", "fotonovelas": "fotonovel", "fotos": "fot", "fotossensível": "fotossens", "foundation": "foundation", "four": "four", "foxmeyer": "foxmey", "foz": "foz", "fr": "fr", "fracarolli": "fracaroll", "fracas": "frac", "fracassado": "fracass", "fracassados": "fracass", "fracassasse": "fracass", "fracasso": "fracass", "fracassos": "fracass", "fracassou": "fracass", "fraco": "frac", "fracos": "frac", "frade": "frad", "frades": "frad", "fraga": "frag", "fragata": "fragat", "frágeis": "frág", "frágil": "frágil", "fragilidade": "fragil", "fragmentos": "fragment", "fragrância": "fragrânc", "fraige": "fraig", "fraldário": "fraldári", "fraldas": "frald", "franca": "franc", "frança": "franc", "francal": "francal", "francamente": "franc", "franças": "franc", "france": "franc", "francês": "francês", "francesa": "frances", "francesas": "frances", "francesco": "francesc", "franceses": "frances", "francesinha": "francesinh", "francial": "francial", "francine": "francin", "francis": "franc", "francisca": "francisc", "franciscano": "franciscan", "francisco": "francisc", "franco": "franc", "françois": "franço", "françoise": "françois", "francos": "franc", "frangalhos": "frangalh", "frango": "frang", "franguinho": "franguinh", "franja": "franj", "frank": "frank", "frankfurt": "frankfurt", "franklin": "franklin", "franqueadas": "franqu", "franquedas": "franqued", "franqui": "franqu", "franquia": "franqu", "franquias": "franqu", "franz": "franz", "franzina": "franzin", "fraquejar": "fraquej", "fraqueza": "fraquez", "fraquezas": "fraquez", "frascino": "frascin", "frasco": "frasc", "frase": "fras", "frases": "fras", "fraterna": "fratern", "fraternal": "fraternal", "fraternidade": "fratern", "fratura": "fratur", "fraturadas": "fratur", "fraturas": "fratur", "fraudadas": "fraud", "fraudado": "fraud", "fraudadores": "fraudador", "fraudar": "fraud", "fraude": "fraud", "fraudes": "fraud", "fraudou": "fraud", "fraudulenta": "fraudulent", "fraudulentos": "fraudulent", "freak": "freak", "frear": "fre", "frechette": "frechett", "frederic": "frederic", "frederico": "freder", "fredy": "fredy", "free": "fre", "freedom": "freedom", "freguês": "freguês", "freguesas": "fregues", "fregueses": "fregues", "freguesia": "fregues", "frei": "fre", "freio": "frei", "freios": "frei", "freiras": "freir", "freire": "freir", "freirinha": "freirinh", "freitas": "freit", "frejat": "frejat", "frenesi": "frenes", "freneticamente": "frenet", "frenéticas": "frenét", "frenético": "frenét", "frente": "frent", "frentes": "frent", "frequência": "frequênc", "freqüência": "freqüênc", "frequenta": "frequent", "freqüenta": "freqüent", "frequentada": "frequent", "frequentado": "frequent", "frequentador": "frequent", "freqüentador": "freqüent", "frequentadora": "frequent", "frequentadores": "frequent", "freqüentadores": "freqüent", "frequentados": "frequent", "freqüentados": "freqüent", "frequentam": "frequent", "freqüentam": "freqüent", "frequentando": "frequent", "freqüentando": "freqüent", "frequentar": "frequent", "freqüentar": "freqüent", "frequentaram": "frequent", "frequentasse": "frequent", "frequentava": "frequent", "freqüentava": "freqüent", "freqüentávamos": "freqüent", "frequente": "frequent", "freqüente": "freqüent", "freqüentei": "freqüent", "frequentemente": "frequent", "freqüentemente": "freqüent", "frequentes": "frequent", "freqüentes": "freqüent", "frequento": "frequent", "freqüento": "freqüent", "frequentou": "frequent", "freqüentou": "freqüent", "fresca": "fresc", "fresco": "fresc", "frescos": "fresc", "frescuras": "frescur", "fresta": "frest", "frestas": "frest", "fretada": "fret", "fretado": "fret", "fretamentos": "fretament", "frete": "fret", "freud": "freud", "freudiana": "freudian", "freudiano": "freudian", "frevo": "frev", "freyre": "freyr", "fria": "fri", "frias": "fri", "friburgo": "friburg", "fricção": "fricçã", "fridlin": "fridlin", "friedlander": "friedland", "friedman": "friedman", "frigideira": "frigideir", "frígios": "frígi", "frigir": "frig", "frigobar": "frigob", "frio": "fri", "frios": "fri", "frisa": "fris", "frisar": "fris", "frisson": "frisson", "frita": "frit", "fritar": "frit", "fritas": "frit", "fritz": "fritz", "frívolo": "frívol", "frommer": "fromm", "frondoso": "frondos", "front": "front", "frontalmente": "frontal", "fronteira": "fronteir", "fronteiras": "fronteir", "fronteires": "front", "fronteiriço": "fronteiric", "fronteiriços": "fronteiric", "frontières": "frontièr", "frossard": "frossard", "frota": "frot", "frugal": "frugal", "fruição": "fruiçã", "frustação": "frustaçã", "frustração": "frustraçã", "frustrações": "frustraçõ", "frustradas": "frustr", "frustrado": "frustr", "frustrante": "frustrant", "frustrar": "frustr", "fruta": "frut", "frutado": "frut", "frutas": "frut", "fruticultura": "fruticultur", "fruto": "frut", "frutos": "frut", "fry": "fry", "fsf": "fsf", "ftc": "ftc", "fu": "fu", "fuçar": "fuc", "fuga": "fug", "fugas": "fug", "fugaz": "fugaz", "fugi": "fug", "fugia": "fug", "fugiam": "fug", "fugido": "fug", "fugidos": "fug", "fugimos": "fug", "fugir": "fug", "fugisse": "fug", "fugiu": "fug", "fui": "fui", "fuja": "fuj", "fujimori": "fujimor", "fujita": "fujit", "fulano": "fulan", "fulgurante": "fulgur", "fuligem": "fulig", "fulmina": "fulmin", "fulminado": "fulmin", "fulton": "fulton", "fuma": "fum", "fumaça": "fumac", "fumacê": "fumac", "fumacinha": "fumacinh", "fumado": "fum", "fumam": "fum", "fumando": "fum", "fumante": "fumant", "fumantes": "fumant", "fumar": "fum", "fumassem": "fum", "fumava": "fum", "fumei": "fum", "fumo": "fum", "fumou": "fum", "funai": "funa", "funarte": "funart", "função": "funçã", "funcef": "funcef", "funcesp": "funcesp", "funciona": "funcion", "funcionado": "funcion", "funcional": "funcional", "funcionalismo": "funcional", "funcionam": "funcion", "funcionamento": "funcion", "funcionando": "funcion", "funcionar": "funcion", "funcionará": "funcion", "funcionarem": "funcion", "funcionaria": "funcion", "funcionária": "funcionár", "funcionárias": "funcionár", "funcionário": "funcionári", "funcionários": "funcionári", "funcionava": "funcion", "funcionavam": "funcion", "funcionem": "funcion", "funcionou": "funcion", "funções": "funçõ", "fund": "fund", "funda": "fund", "fundação": "fundaçã", "fundações": "fundaçõ", "fundada": "fund", "fundadas": "fund", "fundado": "fund", "fundador": "fundador", "fundadora": "fundador", "fundadoras": "fundador", "fundadores": "fundador", "fundamentada": "fundament", "fundamentais": "fundament", "fundamental": "fundamental", "fundamentalistas": "fundamental", "fundamentalmente": "fundamental", "fundamento": "fundament", "fundamentos": "fundament", "fundar": "fund", "funde": "fund", "fundi": "fund", "fundir": "fund", "fundiram": "fund", "fundo": "fund", "fundos": "fund", "fundou": "fund", "funeral": "funeral", "funerária": "funerár", "funerário": "funerári", "funil": "funil", "funk": "funk", "funkeira": "funkeir", "funkeiro": "funkeir", "funkeiros": "funkeir", "funks": "funks", "fura": "fur", "furacão": "furacã", "furada": "fur", "furadas": "fur", "furado": "fur", "furar": "fur", "fúria": "fúr", "furiosa": "furios", "furioso": "furios", "furiosos": "furios", "furlanetto": "furlanett", "furnas": "furn", "furo": "fur", "furor": "furor", "furta": "furt", "furtado": "furt", "furtar": "furt", "furto": "furt", "fusão": "fusã", "fusca": "fusc", "fuseau": "fuseau", "fuseaus": "fuseaus", "fuselagem": "fuselag", "fusões": "fusõ", "futebol": "futebol", "fútil": "fútil", "futura": "futur", "futuramente": "futur", "futuras": "futur", "futurística": "futuríst", "futuro": "futur", "futurologia": "futurolog", "futuros": "futur", "fuvest": "fuvest", "fuzil": "fuzil", "fuzilamento": "fuzil", "fuzileiros": "fuzileir", "fuzis": "fuz", "fv": "fv", "g": "g", "gabanna": "gabann", "gabaritado": "gabarit", "gabaritados": "gabarit", "gabaritos": "gabarit", "gabeira": "gabeir", "gabinete": "gabinet", "gabriel": "gabriel", "gabriela": "gabriel", "gabrielle": "gabriell", "gado": "gad", "gaguinho": "gaguinh", "gaiger": "gaig", "gaio": "gai", "gaiola": "gaiol", "gaita": "gait", "gal": "gal", "galã": "galã", "galáctico": "galáct", "galamba": "galamb", "galanin": "galanin", "galanteio": "galantei", "galãs": "galãs", "galdino": "galdin", "galembeck": "galembeck", "galera": "gal", "galeras": "gal", "galeria": "gal", "galerias": "gal", "galgando": "galg", "galho": "galh", "galhos": "galh", "galilei": "galil", "galileu": "galil", "galinha": "galinh", "galinhas": "galinh", "galisteu": "galist", "gall": "gall", "galliano": "gallian", "gallup": "gallup", "galo": "gal", "galopante": "galop", "galope": "galop", "galos": "gal", "galpão": "galpã", "galpões": "galpõ", "galtier": "galti", "galtieri": "galtier", "galuppo": "galupp", "galvão": "galvã", "galvez": "galvez", "gam": "gam", "gama": "gam", "gamão": "gamã", "gambá": "gamb", "gambino": "gambin", "game": "gam", "games": "gam", "gana": "gan", "ganância": "ganânc", "gananciosos": "gananc", "gancho": "ganch", "gandra": "gandr", "gangorra": "gangorr", "gângsteres": "gângst", "gangue": "gang", "gangues": "gangu", "ganha": "ganh", "ganhado": "ganh", "ganhador": "ganhador", "ganham": "ganh", "ganhamos": "ganh", "ganhando": "ganh", "ganhar": "ganh", "ganharam": "ganh", "ganharão": "ganh", "ganharem": "ganh", "ganharia": "ganh", "ganhariam": "ganh", "ganhas": "ganh", "ganhassem": "ganh", "ganhava": "ganh", "ganhavam": "ganh", "ganhe": "ganh", "ganhei": "ganh", "ganhem": "ganh", "ganho": "ganh", "ganhos": "ganh", "ganhou": "ganh", "ganon": "ganon", "gantois": "ganto", "garagem": "garag", "garagens": "garagens", "garambone": "garambon", "garanhão": "garanhã", "garanta": "garant", "garantam": "garant", "garante": "garant", "garantem": "garant", "garantia": "garant", "garantias": "garant", "garantida": "garant", "garantidas": "garant", "garantido": "garant", "garantidos": "garant", "garantindo": "garant", "garantir": "garant", "garantiria": "garant", "garantiriam": "garant", "garantiu": "garant", "garanto": "garant", "garbo": "garb", "garbosos": "garbos", "garça": "garc", "garças": "garc", "garcia": "garc", "garcía": "garcí", "garçom": "garçom", "garçons": "garçons", "gardenal": "gardenal", "gardenberg": "gardenberg", "gardner": "gardn", "gargalhada": "gargalh", "gargalhadas": "gargalh", "garganta": "gargant", "garibada": "garib", "garibaldi": "garibald", "garimpados": "garimp", "garimpando": "garimp", "garimpavam": "garimp", "garimpeiros": "garimpeir", "garimpo": "garimp", "garimpos": "garimp", "garmatter": "garmatt", "garoa": "garo", "garota": "garot", "garotada": "garot", "garotas": "garot", "garotinha": "garotinh", "garotinho": "garotinh", "garotinhos": "garotinh", "garoto": "garot", "garotões": "garotõ", "garotos": "garot", "garrafa": "garraf", "garrafada": "garraf", "garrafas": "garraf", "garrafinha": "garrafinh", "garrafinhas": "garrafinh", "garranchos": "garranch", "garras": "garr", "garrincha": "garrinch", "garros": "garr", "garry": "garry", "gartner": "gartn", "garton": "garton", "gary": "gary", "gás": "gás", "gases": "gas", "gasolina": "gasolin", "gasparetto": "gasparett", "gaspari": "gaspar", "gasta": "gast", "gastadora": "gastador", "gastadores": "gastador", "gastam": "gast", "gastando": "gast", "gastão": "gastã", "gastar": "gast", "gastará": "gast", "gastarem": "gast", "gastaria": "gast", "gastas": "gast", "gastava": "gast", "gastávamos": "gast", "gaste": "gast", "gasto": "gast", "gastos": "gast", "gastou": "gast", "gástrico": "gástric", "gastrite": "gastrit", "gastrointestinais": "gastrointestin", "gastrointestinal": "gastrointestinal", "gastronomia": "gastronom", "gastronômica": "gastronôm", "gastronômicas": "gastronôm", "gastronômico": "gastronôm", "gate": "gat", "gates": "gat", "gatilho": "gatilh", "gato": "gat", "gatos": "gat", "gatunagem": "gatunag", "gaúcha": "gaúch", "gaucher": "gauch", "gaúcho": "gaúch", "gauderer": "gauder", "gaulle": "gaull", "gaullista": "gaullist", "gaultier": "gaulti", "gávea": "gáv", "gaveta": "gavet", "gavetas": "gavet", "gavio": "gavi", "gaviões": "gaviõ", "gay": "gay", "gays": "gays", "gaza": "gaz", "gazeta": "gazet", "gazolla": "gazoll", "gb": "gb", "ge": "ge", "geada": "gead", "geadas": "gead", "gehorke": "gehork", "géis": "géis", "geisel": "geisel", "gel": "gel", "gelada": "gel", "geladas": "gel", "geladeira": "geladeir", "geladeiras": "geladeir", "gelado": "gel", "gelatinosa": "gelatin", "geléia": "gel", "geller": "gell", "gelo": "gel", "gelol": "gelol", "gêmea": "gêm", "gêmeas": "gêm", "gêmeos": "gêm", "gemidos": "gem", "gen": "gen", "gencor": "gencor", "gene": "gen", "genealogia": "genealog", "genebra": "genebr", "generais": "gener", "general": "general", "generalização": "generaliz", "generalizada": "generaliz", "generalizado": "generaliz", "generalizados": "generaliz", "generis": "gener", "gênero": "gêner", "gêneros": "gêner", "generosa": "gener", "generosamente": "gener", "generosidade": "generos", "generoso": "gener", "generosos": "gener", "genes": "gen", "genesis": "genes", "gênesis": "gênes", "genetic": "genetic", "genética": "genét", "geneticamente": "genet", "genéticas": "genét", "geneticista": "genetic", "genético": "genét", "genéticos": "genét", "gengibre": "gengibr", "geni": "gen", "geniais": "geni", "genial": "genial", "genialidade": "genial", "gênica": "gênic", "geniculado": "genicul", "genículos": "genícul", "genildo": "genild", "gênio": "gêni", "gênios": "gêni", "genitais": "genit", "genital": "genital", "genitália": "genitál", "genival": "genival", "genivaldo": "genivald", "genocídio": "genocídi", "genoma": "genom", "genomas": "genom", "genomic": "genomic", "genovês": "genovês", "genovese": "genoves", "genoveses": "genoves", "genro": "genr", "gente": "gent", "gentil": "gentil", "gentileza": "gentil", "gentilmente": "gentil", "genuína": "genuín", "genuinamente": "genuin", "genuíno": "genuín", "genuínos": "genuín", "genus": "genus", "geny": "geny", "geofísico": "geofís", "geografia": "geograf", "geográfica": "geográf", "geograficamente": "geograf", "geográficas": "geográf", "geográficos": "geográf", "geologia": "geolog", "geológicas": "geológ", "geométricos": "geométr", "geopolítico": "geopolít", "george": "georg", "georges": "georg", "georgetown": "georgetown", "georgette": "georgett", "geórgia": "geórg", "gera": "ger", "geração": "geraçã", "gerações": "geraçõ", "gerada": "ger", "geradas": "ger", "gerado": "ger", "gerador": "gerador", "geradora": "gerador", "geradoras": "gerador", "gerados": "ger", "gerais": "ger", "geral": "geral", "gerald": "gerald", "geraldo": "gerald", "geralmente": "geral", "geram": "ger", "gerando": "ger", "gerar": "ger", "geraram": "ger", "gerardus": "gerardus", "geraria": "ger", "gerdau": "gerdau", "gere": "ger", "gerencia": "gerenc", "gerência": "gerênc", "gerenciado": "gerenc", "gerencial": "gerencial", "gerenciam": "gerenc", "gerenciamento": "gerenc", "gerenciar": "gerenc", "gerente": "gerent", "gerentes": "gerent", "gergelim": "gergelim", "geriavit": "geriavit", "geringonça": "geringonc", "gerir": "ger", "germano": "german", "gero": "ger", "gerou": "ger", "gerson": "gerson", "gérson": "gérson", "gerusa": "gerus", "gesner": "gesn", "gesso": "gess", "gestante": "gestant", "gestantes": "gestant", "gestão": "gestã", "gesticula": "gesticul", "gesticulava": "gesticul", "gesto": "gest", "gestor": "gestor", "gestores": "gestor", "gestos": "gest", "getúlio": "getúli", "gft": "gft", "gg": "gg", "gher": "gher", "ghia": "ghi", "gholmia": "gholm", "ghorayeb": "ghorayeb", "ghost": "ghost", "giacomo": "giacom", "gianetti": "gianett", "gianfrancesco": "gianfrancesc", "giangrande": "giangrand", "gianinni": "gianinn", "gianne": "giann", "gianni": "giann", "giannini": "giannin", "giardini": "giardin", "gif": "gif", "gigabytes": "gigabyt", "gigante": "gigant", "gigantes": "gigant", "gigantesca": "gigantesc", "gigantescas": "gigantesc", "gigantesco": "gigantesc", "gigolozinho": "gigolozinh", "gil": "gil", "gilbert": "gilbert", "gilberto": "gilbert", "gillespie": "gillespi", "gilmar": "gilm", "gilney": "gilney", "gilson": "gilson", "gim": "gim", "gimenes": "gimen", "ginásio": "ginási", "ginasta": "ginast", "ginástica": "ginást", "ginecologia": "ginecolog", "ginecológica": "ginecológ", "ginecologista": "ginecolog", "ginga": "ging", "ginola": "ginol", "giorgio": "giorgi", "giovane": "giovan", "giovanna": "giovann", "giovanni": "giovann", "gira": "gir", "girafinhas": "girafinh", "giraldez": "giraldez", "girar": "gir", "giratório": "giratóri", "girava": "gir", "giro": "gir", "girsz": "girsz", "gisela": "gisel", "giselda": "giseld", "gisele": "gisel", "giuletta": "giulett", "giulia": "giul", "giuliani": "giulian", "giuseppe": "giusepp", "giz": "giz", "glamour": "glamour", "glamourizar": "glamouriz", "glândulas": "glândul", "glasgow": "glasgow", "glat": "glat", "glauco": "glauc", "gleason": "gleason", "glenda": "glend", "glenn": "glenn", "glepf": "glepf", "glicólico": "glicól", "glicoproteínas": "glicoproteín", "glicose": "glicos", "glina": "glin", "glinardello": "glinardell", "globais": "glob", "global": "global", "globalização": "globaliz", "globalizada": "globaliz", "globalizado": "globaliz", "globalizaram": "globaliz", "globalmente": "global", "globe": "glob", "globeleza": "globel", "globo": "glob", "globonews": "globonews", "glóbulos": "glóbul", "glombek": "glombek", "gloria": "glor", "glória": "glór", "glórias": "glór", "glorificação": "glorific", "glorificam": "glorific", "gloriosa": "glorios", "glossário": "glossári", "gls": "gls", "gluck": "gluck", "glutamato": "glutamat", "glúteos": "glút", "gm": "gm", "gnatalli": "gnatall", "go": "go", "goa": "goa", "gobbi": "gobb", "god": "god", "godói": "godó", "godoy": "godoy", "godzilla": "godzill", "goering": "goering", "góes": "góes", "goi": "goi", "goiabada": "goiab", "goiânia": "goiân", "goiano": "goian", "goiás": "goiás", "going": "going", "gol": "gol", "golbery": "golbery", "goldberg": "goldberg", "goldblatt": "goldblatt", "goldblum": "goldblum", "golden": "golden", "goldin": "goldin", "goldoni": "goldon", "gole": "gol", "goleada": "gol", "goleiro": "goleir", "goles": "gol", "golfe": "golf", "golfinhos": "golfinh", "golfo": "golf", "gollop": "gollop", "golpe": "golp", "golpes": "golp", "golpista": "golpist", "golpistas": "golpist", "gols": "gols", "golubic": "golubic", "gomes": "gom", "gompas": "gomp", "gonçalo": "gonçal", "gonçalves": "gonçalv", "gonodal": "gonodal", "gonzaga": "gonzag", "gonzales": "gonzal", "gonzalez": "gonzalez", "gonzalo": "gonzal", "gorda": "gord", "gordas": "gord", "gordinha": "gordinh", "gordinhas": "gordinh", "gordinho": "gordinh", "gordinhos": "gordinh", "gordo": "gord", "gordos": "gord", "gorduchos": "gorduch", "gordura": "gordur", "gordurão": "gordurã", "gorduras": "gordur", "gordurinha": "gordurinh", "gordurosas": "gordur", "gordurosos": "gordur", "gorgulho": "gorgulh", "gorila": "goril", "goró": "gor", "gospel": "gospel", "gosta": "gost", "gostado": "gost", "gostam": "gost", "gostamos": "gost", "gostando": "gost", "gostar": "gost", "gostaram": "gost", "gostaria": "gost", "gostariam": "gost", "gostasse": "gost", "gostassem": "gost", "gostava": "gost", "gostavam": "gost", "gostávamos": "gost", "gostei": "gost", "gostem": "gost", "gostinho": "gostinh", "gosto": "gost", "gostos": "gost", "gostosa": "gostos", "gostosamente": "gostos", "gostoso": "gostos", "gostou": "gost", "gota": "got", "gotas": "got", "gotinha": "gotinh", "gotinhas": "gotinh", "gott": "gott", "gotti": "gott", "goulart": "goulart", "gourmet": "gourmet", "gouvea": "gouv", "gouvêa": "gouv", "gov": "gov", "governa": "govern", "governada": "govern", "governado": "govern", "governador": "govern", "governadores": "govern", "governados": "govern", "governamentais": "governament", "governamental": "governamental", "governantes": "govern", "governar": "govern", "governaram": "govern", "governista": "govern", "governo": "govern", "governos": "govern", "governou": "govern", "goza": "goz", "gozador": "gozador", "gozando": "goz", "gozar": "goz", "gozava": "goz", "gozo": "goz", "gozou": "goz", "gps": "gps", "grã": "grã", "graça": "grac", "graças": "grac", "grace": "grac", "graciliano": "gracilian", "gracinha": "gracinh", "gracioso": "gracios", "gradativa": "gradat", "gradativamente": "gradat", "grades": "grad", "graduação": "graduaçã", "graduada": "gradu", "graduado": "gradu", "graduais": "gradu", "gradual": "gradual", "gradualmente": "gradual", "graduando": "gradu", "graf": "graf", "grafar": "graf", "grafias": "graf", "gráfica": "gráfic", "gráficas": "gráfic", "gráfico": "gráfic", "gráficos": "gráfic", "grafista": "grafist", "grafite": "grafit", "grafites": "grafit", "grafotécnico": "grafotécn", "grahan": "grahan", "gralha": "gralh", "grama": "gram", "gramado": "gram", "gramados": "gram", "gramas": "gram", "grammont": "grammont", "grampeadas": "gramp", "grampeados": "gramp", "grampeei": "gramp", "grampo": "gramp", "grampos": "gramp", "grana": "gran", "granada": "gran", "granadas": "gran", "granatieri": "granatier", "grand": "grand", "grande": "grand", "grandemente": "grandement", "grandes": "grand", "grandeza": "grandez", "grandiosa": "grandios", "grando": "grand", "grandões": "grandõ", "graneleiro": "graneleir", "granítica": "granít", "granito": "granit", "granizo": "graniz", "granja": "granj", "grant": "grant", "grão": "grã", "grãos": "grã", "grape": "grap", "grata": "grat", "gratidão": "gratidã", "gratificado": "gratific", "gratificante": "gratific", "grátis": "grát", "grato": "grat", "gratuita": "gratuit", "gratuitamente": "gratuit", "gratuitas": "gratuit", "gratuito": "gratuit", "gratuitos": "gratuit", "grau": "grau", "graus": "graus", "grava": "grav", "gravação": "gravaçã", "gravações": "gravaçõ", "gravada": "grav", "gravadas": "grav", "gravado": "grav", "gravador": "gravador", "gravadora": "gravador", "gravadoras": "gravador", "gravadores": "gravador", "gravados": "grav", "gravando": "grav", "gravar": "grav", "gravaram": "grav", "gravata": "gravat", "gravatas": "gravat", "gravava": "grav", "grave": "grav", "gravemente": "gravement", "graves": "grav", "gravetos": "gravet", "grávida": "gráv", "gravidade": "gravidad", "grávidas": "gráv", "gravidez": "gravidez", "gravitam": "gravit", "gravitando": "gravit", "gravou": "grav", "gravuras": "gravur", "graziano": "grazian", "grease": "greas", "grecco": "grecc", "green": "green", "greenpeace": "greenpeac", "greenville": "greenvill", "greenwich": "greenwich", "grega": "greg", "grego": "greg", "gregoriano": "gregorian", "gregório": "gregóri", "gregos": "greg", "grelhadas": "grelh", "grelhado": "grelh", "grelhados": "grelh", "grelhar": "grelh", "grêmio": "grêmi", "grendene": "grenden", "greta": "gret", "gretchen": "gretchen", "greve": "grev", "greves": "grev", "grid": "grid", "grife": "grif", "grifes": "grif", "griffe": "griff", "griffes": "griff", "grilo": "gril", "grinalda": "grinald", "grinbaum": "grinbaum", "gripado": "grip", "gripe": "grip", "grisalho": "grisalh", "grisi": "gris", "grisolia": "grisol", "grita": "grit", "gritam": "grit", "gritando": "grit", "gritante": "gritant", "gritantes": "gritant", "gritar": "grit", "gritaria": "grit", "gritava": "grit", "gritavam": "grit", "grito": "grit", "gritos": "grit", "gritou": "grit", "gros": "gros", "grossa": "gross", "grossas": "gross", "grosseiros": "grosseir", "grossense": "grossens", "grosseria": "gross", "grosso": "gross", "grossos": "gross", "grotesca": "grotesc", "grotescos": "grotesc", "groto": "grot", "grotões": "grotõ", "group": "group", "grove": "grov", "grozes": "groz", "grudado": "grud", "grudados": "grud", "grudam": "grud", "grunge": "grung", "grupinho": "grupinh", "grupo": "grup", "grupos": "grup", "gruta": "grut", "guadalupe": "guadalup", "guagliardi": "guagliard", "guanabara": "guanab", "guanabaras": "guanab", "guanaes": "guana", "guantchaco": "guantchac", "guanxi": "guanx", "guaraciaba": "guaraciab", "guaraná": "guaran", "guaranis": "guaran", "guarapiranga": "guarapirang", "guararema": "guararem", "guarda": "guard", "guardá": "guard", "guardada": "guard", "guardadas": "guard", "guardados": "guard", "guardam": "guard", "guardanapo": "guardanap", "guardar": "guard", "guardaram": "guard", "guardas": "guard", "guarde": "guard", "guardei": "guard", "guardo": "guard", "guardou": "guard", "guarita": "guarit", "guarnição": "guarniçã", "guarnieri": "guarnier", "guarujá": "guaruj", "guarulhos": "guarulh", "guaxuma": "guaxum", "gucci": "gucc", "guccione": "guccion", "guedes": "gued", "gueller": "guell", "guerra": "guerr", "guerras": "guerr", "guerreira": "guerreir", "guerreiro": "guerreir", "guerreiros": "guerreir", "guerrilha": "guerrilh", "guerrilhas": "guerrilh", "guerrilheira": "guerrilheir", "guerrilheiro": "guerrilheir", "guerrilheiros": "guerrilheir", "guess": "guess", "gueto": "guet", "guetos": "guet", "guevara": "guev", "guevarista": "guevar", "guevaristas": "guevar", "guga": "gug", "gugu": "gugu", "guia": "gui", "guiá": "gui", "guiado": "gui", "guiana": "guian", "guiar": "gui", "guias": "gui", "guichê": "guich", "guide": "guid", "guido": "guid", "guignard": "guignard", "guilherme": "guilherm", "guilhon": "guilhon", "guillaume": "guillaum", "guillermo": "guillerm", "guimarães": "guimarã", "guimil": "guimil", "guinada": "guin", "guincha": "guinch", "guinchados": "guinch", "guindastes": "guind", "guiné": "guin", "guinness": "guinness", "guitarra": "guitarr", "guitarrista": "guitarr", "gul": "gul", "gula": "gul", "gulfstream": "gulfstr", "gullit": "gullit", "gullo": "gull", "gullova": "gullov", "gulosa": "gulos", "guloseimas": "guloseim", "gulosos": "gulos", "gumes": "gum", "gump": "gump", "günter": "günter", "gur": "gur", "gurovitz": "gurovitz", "guru": "guru", "gurus": "gurus", "gusmão": "gusmã", "gustativa": "gustat", "gustavo": "gustav", "guth": "guth", "gutierrez": "gutierrez", "guto": "gut", "guzik": "guzik", "guzzo": "guzz", "gv": "gv", "gyaoppi": "gyaopp", "gyaoppis": "gyaopp", "h": "h", "há": "há", "haar": "haar", "habano": "haban", "habeas": "hab", "habeyche": "habeych", "habilidade": "habil", "habilidades": "habil", "habilidosos": "habilid", "habilitação": "habilit", "habilitaram": "habilit", "habitação": "habit", "habitacionais": "habitacion", "habitada": "habit", "habitadas": "habit", "habitado": "habit", "habitam": "habit", "habitante": "habit", "habitantes": "habit", "habitat": "habitat", "hábitat": "hábitat", "hábito": "hábit", "hábitos": "hábit", "habituado": "habitu", "habituados": "habitu", "habituais": "habitu", "habitual": "habitual", "habitualmente": "habitual", "habituando": "habitu", "habituou": "habitu", "haddad": "haddad", "hage": "hag", "hagia": "hag", "haja": "haj", "hajj": "hajj", "hall": "hall", "halley": "halley", "halpern": "halpern", "hamburger": "hamburg", "hamburgo": "hamburg", "hamer": "ham", "hamilton": "hamilton", "hamlet": "hamlet", "hammond": "hammond", "hamuman": "hamuman", "hangar": "hang", "hangares": "hang", "hanks": "hanks", "hans": "hans", "hão": "hã", "happy": "happy", "hara": "har", "harare": "harar", "harazim": "harazim", "harbor": "harbor", "harding": "harding", "hardware": "hardwar", "harém": "harém", "harley": "harley", "harmonia": "harmon", "harold": "harold", "haroldo": "harold", "harpa": "harp", "harper": "harp", "harrad": "harrad", "harrison": "harrison", "harry": "harry", "hart": "hart", "hartmann": "hartmann", "harvard": "harvard", "haryella": "haryell", "hasta": "hast", "haste": "hast", "hatanaka": "hatanak", "haten": "haten", "hathaway": "hathaway", "haupt": "haupt", "haut": "haut", "havaí": "hava", "havana": "havan", "havanas": "havan", "havendo": "hav", "haver": "hav", "haverá": "hav", "haveria": "hav", "havia": "hav", "haviam": "hav", "havíamos": "hav", "havido": "hav", "haxixe": "haxix", "hay": "hay", "haydée": "haydé", "hazen": "hazen", "hbp": "hbp", "hdl": "hdl", "hea": "hea", "headhunter": "headhunt", "headhunting": "headhunting", "heavy": "heavy", "hebe": "heb", "hebraica": "hebraic", "hebraico": "hebraic", "hebraicos": "hebraic", "hebron": "hebron", "hecatombe": "hecatomb", "hectare": "hectar", "hectares": "hect", "hector": "hector", "hedgus": "hedgus", "hediondo": "hediond", "hedonismo": "hedon", "hedonista": "hedon", "hegemonia": "hegemon", "hegou": "heg", "hein": "hein", "heinrich": "heinrich", "heitor": "heitor", "helde": "held", "helen": "helen", "helena": "helen", "hélène": "hélèn", "helênica": "helên", "helicóptero": "helicópter", "helicópteros": "helicópter", "helio": "heli", "hélio": "héli", "heliodora": "heliodor", "heliópolis": "heliópol", "helmut": "helmut", "heloisa": "helois", "help": "help", "helvécio": "helvéci", "hemingway": "hemingway", "hemisfério": "hemisféri", "hemocromatose": "hemocromatos", "hemofilia": "hemofil", "hemorragia": "hemorrag", "hemorragias": "hemorrag", "henderson": "henderson", "hendricks": "hendricks", "hendrix": "hendrix", "henfil": "henfil", "henrique": "henriqu", "henriques": "henriqu", "henry": "henry", "hepática": "hepát", "hepáticas": "hepát", "hepatite": "hepatit", "hepburn": "hepburn", "hera": "her", "herança": "heranc", "heranças": "heranc", "herbarium": "herbarium", "herbert": "herbert", "herchcovich": "herchcovich", "herchcovitch": "herchcovitch", "herculano": "herculan", "hércules": "hércul", "herdadas": "herd", "herdar": "herd", "herdeira": "herdeir", "herdeiras": "herdeir", "herdeiro": "herdeir", "herdeiros": "herdeir", "herdou": "herd", "hereditária": "hereditár", "hereditariamente": "hereditari", "hereditárias": "hereditár", "hereditário": "hereditári", "hereditários": "hereditári", "hereges": "hereg", "heresia": "heres", "hermann": "hermann", "hermeticamente": "hermet", "hermitage": "hermitag", "hermon": "hermon", "hernandes": "hernand", "hérnia": "hérn", "herodes": "herod", "herói": "heró", "heróicas": "heróic", "heróicos": "heróic", "heroína": "heroín", "heróis": "heró", "heron": "heron", "herrmann": "herrmann", "herton": "herton", "herzog": "herzog", "hesita": "hesit", "hesitação": "hesit", "hesitam": "hesit", "hesitou": "hesit", "heslander": "hesland", "hespanha": "hespanh", "heston": "heston", "hetero": "heter", "heterodoxos": "heterodox", "heterossexuais": "heterossexu", "heterossexual": "heterossexual", "hewlett": "hewlett", "heymann": "heymann", "hidrante": "hidrant", "hidrata": "hidrat", "hidratação": "hidrat", "hidratam": "hidrat", "hidratante": "hidrat", "hidratantes": "hidrat", "hidráulica": "hidrául", "hidráulico": "hidrául", "hidrelétrica": "hidrelétr", "hidroavião": "hidroaviã", "hidrogênio": "hidrogêni", "hidroginástica": "hidroginást", "hidroterapia": "hidroterap", "hidrovia": "hidrov", "hierarquia": "hierarqu", "hierarquias": "hierarqu", "hieróglifos": "hieróglif", "high": "high", "higiene": "higien", "higienicamente": "higien", "higienópolis": "higienópol", "higuera": "higu", "hijo": "hij", "hilariante": "hilari", "hilários": "hilári", "hilda": "hild", "hildete": "hildet", "hilleshein": "hilleshein", "hills": "hills", "hilton": "hilton", "hilux": "hilux", "himachal": "himachal", "himalaia": "himala", "hinduístas": "hinduíst", "hino": "hin", "hióide": "hióid", "hipericão": "hipericã", "hipericina": "hipericin", "hipérico": "hipér", "hiperinflação": "hiperinfl", "hiperinsulinemia": "hiperinsulinem", "hiperpigmentação": "hiperpigment", "hiperplasia": "hiperplas", "hipertensão": "hipertensã", "hipertrofiado": "hipertrofi", "hipertrofina": "hipertrofin", "hípica": "hípic", "hípico": "hípic", "hipnotiza": "hipnotiz", "hipnotizador": "hipnotiz", "hipnotizar": "hipnotiz", "hipocampo": "hipocamp", "hipocrisia": "hipocris", "hipofagin": "hipofagin", "hipoglós": "hipoglós", "hipopótamos": "hipopót", "hipotálamo": "hipotálam", "hipótese": "hipótes", "hipóteses": "hipótes", "hipoteticamente": "hipotet", "hippie": "hippi", "hiroshima": "hiroshim", "hispânicos": "hispân", "histerectomia": "histerectom", "histerectomias": "histerectom", "histeria": "hist", "histérica": "histér", "histérico": "histér", "histéricos": "histér", "histerismo": "hister", "histopatológico": "histopatológ", "história": "histór", "historiador": "histori", "historiadora": "histori", "historiadores": "histori", "histórias": "histór", "histórica": "histór", "historicamente": "histor", "históricas": "histór", "histórico": "histór", "históricos": "histór", "hit": "hit", "hititas": "hitit", "hitler": "hitl", "hits": "hits", "hiv": "hiv", "hlx": "hlx", "hoare": "hoar", "hobbies": "hobbi", "hobby": "hobby", "hobsbawn": "hobsbawn", "hochgraf": "hochgraf", "hochschild": "hochschild", "hoffa": "hoff", "hoffman": "hoffman", "hohendorff": "hohendorff", "hoje": "hoj", "holanda": "holand", "holandês": "holandês", "holandesa": "holandes", "holandeses": "holandes", "holding": "holding", "holerite": "holerit", "holerites": "holerit", "holística": "holíst", "hollanda": "holland", "hollywood": "hollywood", "hollywoodiano": "hollywoodian", "hollywoodianos": "hollywoodian", "holofotes": "holofot", "holtz": "holtz", "holyfield": "holyfield", "home": "hom", "homem": "hom", "homems": "homems", "homenageá": "homenag", "homenageado": "homenag", "homenagear": "homenag", "homenageia": "homenag", "homenagem": "homenag", "homenagens": "homenagens", "homens": "homens", "homeopata": "homeopat", "homeopatas": "homeopat", "homeopatia": "homeopat", "homeopatias": "homeopat", "homeopáticas": "homeopát", "homeopático": "homeopát", "homeopáticos": "homeopát", "homéricos": "homér", "homero": "homer", "homicídio": "homicídi", "homicídios": "homicídi", "homoerotismo": "homoerot", "homogênea": "homogên", "homologação": "homolog", "homologações": "homolog", "homologado": "homolog", "homologar": "homolog", "homologaram": "homolog", "homologou": "homolog", "homologuei": "homologu", "homônima": "homônim", "homossexuais": "homossexu", "homossexual": "homossexual", "homossexualidade": "homossexual", "homossexualismo": "homossexual", "honda": "hond", "honesta": "honest", "honestamente": "honest", "honestidade": "honest", "honesto": "honest", "hong": "hong", "honolulu": "honolulu", "honorários": "honorári", "honorato": "honorat", "honorilton": "honorilton", "honra": "honr", "honram": "honr", "honrando": "honr", "honrar": "honr", "honraria": "honr", "honrosa": "honros", "honroso": "honros", "honrosos": "honros", "honrou": "honr", "hood": "hood", "hooki": "hook", "hooligans": "hooligans", "hopkins": "hopkins", "hora": "hor", "horária": "horár", "horário": "horári", "horários": "horári", "horas": "hor", "hordas": "hord", "horgan": "horgan", "horizontal": "horizontal", "horizonte": "horizont", "horizontes": "horizont", "hormonais": "hormon", "hormonal": "hormonal", "hormônio": "hormôni", "hormônios": "hormôni", "hormonioterapia": "hormonioterap", "horner": "horn", "horripilante": "horripil", "horríveis": "horrív", "horrível": "horrível", "horror": "horror", "horrores": "horror", "horrorosa": "horror", "horroroso": "horror", "horst": "horst", "horta": "hort", "hospeda": "hosped", "hospedagem": "hospedag", "hospedar": "hosped", "hospedava": "hosped", "hóspedes": "hósped", "hospedou": "hosped", "hospício": "hospíci", "hospitais": "hospit", "hospital": "hospital", "hospitalar": "hospital", "hospitalares": "hospital", "hospitaleiro": "hospitaleir", "hospitalidade": "hospital", "hostes": "host", "hostil": "hostil", "hostilidade": "hostil", "hostilidades": "hostil", "hotéis": "hot", "hotel": "hotel", "hotelaria": "hotel", "hoteleira": "hoteleir", "hoteleiro": "hoteleir", "hour": "hour", "house": "hous", "houston": "houston", "houve": "houv", "houver": "houv", "houvesse": "houv", "how": "how", "howard": "howard", "hoy": "hoy", "hpb": "hpb", "hpp": "hpp", "hsbc": "hsbc", "htm": "htm", "html": "html", "http": "http", "huambo": "huamb", "huapi": "huap", "hub": "hub", "hubert": "hubert", "hucitec": "hucitec", "hudson": "hudson", "hue": "hue", "hugel": "hugel", "hugh": "hugh", "hughes": "hugh", "hugo": "hug", "huis": "huis", "human": "human", "humana": "human", "humanas": "human", "humanidade": "human", "humanista": "human", "humanística": "humaníst", "humanitários": "humanitári", "humano": "human", "humanos": "human", "humberto": "humbert", "humildade": "humildad", "humilde": "humild", "humildemente": "humild", "humildes": "humild", "humilhação": "humilh", "humilhado": "humilh", "humilhante": "humilh", "humm": "humm", "hummm": "hummm", "humor": "humor", "humorada": "humor", "humoradíssima": "humoradíssim", "humorado": "humor", "humorados": "humor", "humorismo": "humor", "humorista": "humor", "humoristas": "humor", "hun": "hun", "húngaro": "húngar", "huno": "hun", "huntington": "huntington", "hunts": "hunts", "hurd": "hurd", "hurley": "hurley", "hurried": "hurried", "hussein": "hussein", "huster": "hust", "hut": "hut", "hutton": "hutton", "hwa": "hwa", "hyde": "hyde", "hypericum": "hypericum", "hystera": "hyster", "i": "i", "ia": "ia", "iacocca": "iacocc", "iacomini": "iacomin", "iain": "iain", "ialorixá": "ialorix", "iam": "iam", "íamos": "íam", "ian": "ian", "ianques": "ianqu", "iansã": "iansã", "iaque": "iaqu", "iara": "iar", "iate": "iat", "ibama": "ibam", "ibase": "ibas", "ibep": "ibep", "iberê": "iber", "ibge": "ibge", "ibirapuera": "ibirapu", "ibiúna": "ibiún", "ibiza": "ibiz", "iblon": "iblon", "ibm": "ibm", "ibope": "ibop", "ibrahim": "ibrahim", "ica": "ica", "içando": "içand", "icaraí": "icara", "ícaro": "ícar", "iceberg": "iceberg", "icms": "icms", "ícone": "ícon", "ícones": "ícon", "iconoclasta": "iconoclast", "ics": "ics", "ida": "ida", "idade": "idad", "idades": "idad", "idas": "idas", "ideais": "ide", "ideal": "ideal", "idealistas": "ideal", "idealização": "idealiz", "idealizado": "idealiz", "idealizador": "idealiz", "idealizadores": "idealiz", "idealizados": "idealiz", "idealizou": "idealiz", "idéia": "idé", "idéias": "idé", "idelcio": "idelci", "ideli": "idel", "idem": "idem", "idêntica": "idênt", "idênticas": "idênt", "idêntico": "idênt", "idênticos": "idênt", "identidade": "ident", "identidades": "ident", "identifica": "identif", "identificá": "identific", "identificação": "identific", "identificada": "identific", "identificadas": "identific", "identificado": "identific", "identificados": "identific", "identificam": "identific", "identificando": "identific", "identificar": "identific", "identificaram": "identific", "identificasse": "identific", "identificassem": "identific", "identificou": "identific", "identifique": "identifiqu", "identifiquei": "identifiqu", "ideologia": "ideolog", "ideologias": "ideolog", "ideológica": "ideológ", "ideologicamente": "ideolog", "ideológicas": "ideológ", "ideológico": "ideológ", "ideológicos": "ideológ", "idesp": "idesp", "idh": "idh", "idioma": "idiom", "idiomas": "idiom", "idiota": "idiot", "idiotice": "idiotic", "ido": "ido", "idolatrados": "idolatr", "idolatria": "idolatr", "ídolo": "ídol", "ídolos": "ídol", "idôneo": "idôn", "idoso": "idos", "idosos": "idos", "iemanjá": "iemanj", "iêmen": "iêmen", "ifá": "ifá", "igarapé": "igarap", "ignacio": "ignaci", "ignácio": "ignáci", "ignorada": "ignor", "ignoradas": "ignor", "ignorado": "ignor", "ignorados": "ignor", "ignoram": "ignor", "ignorância": "ignor", "ignorando": "ignor", "ignorante": "ignor", "ignorar": "ignor", "igor": "igor", "igreja": "igrej", "igrejas": "igrej", "iguaçu": "iguaçu", "iguais": "igu", "igual": "igual", "igualitarismo": "igualitar", "igualmente": "igual", "iguaria": "igu", "iguatemi": "iguatem", "ih": "ih", "ii": "ii", "iii": "iii", "ike": "ike", "il": "il", "ilações": "ilaçõ", "ilari": "ilar", "ilariê": "ilari", "ildeo": "ilde", "ile": "ile", "ilê": "ilê", "ilegais": "ileg", "ilegal": "ilegal", "ilegalidade": "ilegal", "ilegalidades": "ilegal", "ilegalmente": "ilegal", "ilesa": "iles", "ileso": "iles", "ilesos": "iles", "iletrada": "iletr", "iletrados": "iletr", "ilha": "ilha", "ilhas": "ilhas", "ilhéus": "ilhéus", "ilhota": "ilhot", "ilícita": "ilícit", "ilícitas": "ilícit", "ilimitados": "ilimit", "illimani": "illiman", "illyccaffé": "illyccaff", "ilm": "ilm", "ilma": "ilma", "ilson": "ilson", "iludem": "ilud", "ilumina": "ilumin", "iluminação": "ilumin", "iluminada": "ilumin", "iluminadas": "ilumin", "iluminado": "ilumin", "iluminador": "ilumin", "iluminando": "ilumin", "iluminar": "ilumin", "iluminaram": "ilumin", "ilusão": "ilusã", "ilusionista": "ilusion", "ilusões": "ilusõ", "ilustra": "ilustr", "ilustrá": "ilustr", "ilustração": "ilustr", "ilustrações": "ilustr", "ilustrada": "ilustr", "ilustrava": "ilustr", "ilustre": "ilustr", "ilustres": "ilustr", "ilustrou": "ilustr", "imaculados": "imacul", "imaflora": "imaflor", "image": "imag", "imagem": "imag", "imagens": "imagens", "imagina": "imagin", "imaginação": "imagin", "imaginadas": "imagin", "imaginam": "imagin", "imaginando": "imagin", "imaginar": "imagin", "imaginaram": "imagin", "imaginária": "imaginár", "imaginariam": "imagin", "imaginário": "imaginári", "imaginava": "imagin", "imaginavam": "imagin", "imagine": "imagin", "imaginei": "imagin", "imagino": "imagin", "imaginou": "imagin", "ímãs": "ímãs", "imateriais": "imateri", "imatura": "imatur", "imaturo": "imatur", "imbatível": "imbat", "imbecil": "imbecil", "imbróglio": "imbrógli", "imbróglios": "imbrógli", "imbuído": "imbuíd", "imc": "imc", "imediações": "imedi", "imediata": "imediat", "imediatamente": "imediat", "imediatas": "imediat", "imediato": "imediat", "imemoriais": "imemori", "imensa": "imens", "imensamente": "imens", "imensas": "imens", "imensidão": "imensidã", "imenso": "imens", "imensos": "imens", "imensurável": "imensur", "imersa": "imers", "imersão": "imersã", "imerso": "imers", "imigração": "imigr", "imigrante": "imigr", "imigrantes": "imigr", "iminente": "iminent", "imirim": "imirim", "imita": "imit", "imitação": "imit", "imitações": "imit", "imitado": "imit", "imitadora": "imit", "imitadores": "imit", "imitam": "imit", "imitando": "imit", "imitar": "imit", "imitava": "imit", "imitável": "imit", "iml": "iml", "imobiliária": "imobiliár", "imobiliárias": "imobiliár", "imobiliário": "imobiliári", "imortal": "imortal", "imortalidade": "imortal", "imóveis": "imóv", "imóvel": "imóvel", "impaciência": "impacient", "impacientes": "impacient", "impacta": "impact", "impactante": "impact", "impacto": "impact", "impactos": "impact", "impagável": "impag", "imparcialidade": "imparcial", "impasse": "impass", "impassível": "impass", "impeachment": "impeachment", "impeçam": "impec", "impecáveis": "impec", "impecável": "impec", "impecavelmente": "impec", "impedância": "imped", "impede": "imped", "impedem": "imped", "impedia": "imped", "impediam": "imped", "impedido": "imped", "impedidos": "imped", "impedimento": "imped", "impedindo": "imped", "impedir": "imped", "impediram": "imped", "impedirmos": "imped", "impedisse": "imped", "impediu": "imped", "impelidas": "impel", "impensados": "impens", "impensável": "impens", "impera": "imper", "imperador": "imper", "imperam": "imper", "imperativo": "imper", "imperativos": "imper", "imperatriz": "imperatriz", "imperceptíveis": "imperceptív", "imperdoável": "imperdo", "imperfeição": "imperfeiçã", "imperfeições": "imperfeiçõ", "imperial": "imperial", "imperialista": "imperial", "império": "impéri", "impérios": "impéri", "impermeáveis": "imperm", "imperou": "imper", "impessoais": "impesso", "ímpeto": "ímpet", "ímpetos": "ímpet", "impetrada": "impetr", "impiedosa": "impied", "impingir": "imping", "implacáveis": "implac", "implacável": "implac", "implacavelmente": "implac", "implantá": "implant", "implantação": "implant", "implantada": "implant", "implantadas": "implant", "implantado": "implant", "implantados": "implant", "implantar": "implant", "implantaram": "implant", "implantes": "implant", "implantou": "implant", "implementem": "implement", "implica": "implic", "implicações": "implic", "implicam": "implic", "implicará": "implic", "implicaria": "implic", "implícita": "implícit", "implícito": "implícit", "implicou": "implic", "implique": "impliqu", "implodiria": "implod", "implodiu": "implod", "implorando": "implor", "implorou": "implor", "impõe": "impõ", "impondo": "impond", "imponência": "imponent", "imponente": "imponent", "imponha": "imponh", "impopulares": "impopul", "impopularidade": "impopular", "impor": "impor", "importa": "import", "importá": "import", "importação": "import", "importações": "import", "importada": "import", "importadas": "import", "importado": "import", "importador": "import", "importadora": "import", "importadoras": "import", "importadores": "import", "importados": "import", "importam": "import", "importância": "import", "importando": "import", "importante": "import", "importantes": "import", "importantíssimo": "importantíssim", "importar": "import", "importaram": "import", "importassem": "import", "importo": "import", "importou": "import", "impôs": "impôs", "imposição": "imposiçã", "imposições": "imposiçõ", "impossibilidade": "impossibil", "impossibilitado": "impossibilit", "impossibilitados": "impossibilit", "impossíveis": "impossív", "impossível": "imposs", "imposta": "impost", "impostas": "impost", "imposto": "impost", "impostos": "impost", "impotência": "impotent", "impotente": "impotent", "impotentes": "impotent", "impregnado": "impregn", "imprensa": "imprens", "imprensanet": "imprensanet", "imprescindível": "imprescind", "impressa": "impress", "impressão": "impressã", "impressiona": "impression", "impressioná": "impression", "impressionadíssimo": "impressionadíssim", "impressionados": "impression", "impressionante": "impression", "impressionantes": "impression", "impressionar": "impression", "impressionistas": "impression", "impressionou": "impression", "impressões": "impressõ", "impressos": "impress", "imprevidência": "imprevident", "imprevisível": "imprevis", "imprevistos": "imprevist", "imprime": "imprim", "imprimiam": "imprim", "imprimindo": "imprim", "imprimir": "imprim", "imprimiu": "imprim", "improcedente": "improcedent", "improdutivo": "improdut", "impropérios": "impropéri", "impropriedades": "impropriedad", "impróprio": "imprópri", "improváveis": "improv", "improvável": "improv", "improviso": "improvis", "imprudência": "imprudent", "impulsionada": "impulsion", "impulsionado": "impulsion", "impulsionam": "impulsion", "impulsiva": "impuls", "impulsivamente": "impuls", "impulso": "impuls", "impulsos": "impuls", "impune": "impun", "impunidade": "impun", "impurezas": "impur", "impusesse": "impus", "imputada": "imput", "imsdd": "imsdd", "imundos": "imund", "imune": "imun", "imunologia": "imunolog", "imunológicas": "imunológ", "in": "in", "inabaláveis": "inabal", "inabalável": "inabal", "inabilidade": "inabil", "inacabado": "inacab", "inacabados": "inacab", "inaceitável": "inaceit", "inácio": "ináci", "inacreditáveis": "inacredit", "inacreditável": "inacredit", "inadequação": "inadequ", "inadequada": "inadequ", "inadequado": "inadequ", "inadiável": "inadi", "inadimplência": "inadimplent", "inadmissível": "inadmiss", "inalados": "inal", "inalcançáveis": "inalcanc", "inalcançável": "inalcanc", "inamistosos": "inamist", "inamovíveis": "inamovív", "inamps": "inamps", "inativação": "inativ", "inaudíveis": "inaudív", "inauguração": "inaugur", "inaugurada": "inaugur", "inaugurado": "inaugur", "inauguram": "inaugur", "inauguranda": "inaugurand", "inaugurar": "inaugur", "inaugurou": "inaugur", "inc": "inc", "inca": "inca", "incansável": "incans", "incapacidade": "incapac", "incapacitados": "incapacit", "incapacitar": "incapacit", "incapaz": "incapaz", "incapazes": "incapaz", "incendiada": "incendi", "incendiados": "incendi", "incendiário": "incendiári", "incendiavam": "incendi", "incêndio": "incêndi", "incêndios": "incêndi", "incendiou": "incendi", "incensada": "incens", "incenso": "incens", "incentiva": "incent", "incentivá": "incentiv", "incentivado": "incentiv", "incentivadora": "incentiv", "incentivam": "incentiv", "incentivamos": "incentiv", "incentivando": "incentiv", "incentivar": "incentiv", "incentivem": "incentiv", "incentivo": "incent", "incentivos": "incent", "incentivou": "incentiv", "incerteza": "incert", "incertezas": "incert", "incerto": "incert", "incessantes": "incess", "incesto": "incest", "incestuosos": "incestu", "inchaço": "inchac", "inchaços": "inchac", "inchadade": "inchadad", "inchado": "inchad", "inchados": "inchad", "inchou": "inchou", "incide": "incid", "incidência": "incident", "incidente": "incident", "incidentes": "incident", "incipiente": "incipient", "incipientes": "incipient", "incisivo": "incis", "incisões": "incisõ", "inclemente": "inclement", "inclinação": "inclin", "inclinada": "inclin", "inclinados": "inclin", "inclinam": "inclin", "inclinar": "inclin", "inclinou": "inclin", "inclua": "inclu", "incluam": "inclu", "incluem": "inclu", "inclui": "inclu", "incluí": "inclu", "incluía": "incluí", "incluída": "incluíd", "incluídas": "incluíd", "incluído": "incluíd", "incluídos": "incluíd", "incluindo": "inclu", "incluir": "inclu", "incluíram": "incluír", "incluirmos": "inclu", "incluiu": "inclu", "inclusão": "inclusã", "inclusive": "inclusiv", "incluso": "inclus", "incógnita": "incógnit", "incógnito": "incógnit", "incolor": "incolor", "incomoda": "incomod", "incômoda": "incômod", "incomodados": "incomod", "incomodam": "incomod", "incomodar": "incomod", "incomodaram": "incomod", "incomodarem": "incomod", "incomodasse": "incomod", "incomodo": "incomod", "incômodo": "incômod", "incomodou": "incomod", "incomparavelmente": "incompar", "incompatíveis": "incompatív", "incompatível": "incompat", "incompetência": "incompetent", "incompetente": "incompetent", "incompetentes": "incompetent", "incompleta": "incomplet", "incompreendida": "incompreend", "incompreensão": "incompreensã", "incomum": "incomum", "incomunicabilidade": "incomunic", "incomunicável": "incomunic", "incomuns": "incomuns", "inconclusa": "inconclus", "inconclusivas": "inconclus", "incondicionalmente": "incondicional", "inconformada": "inconform", "inconformado": "inconform", "inconformados": "inconform", "incongruente": "incongruent", "inconsciência": "inconscient", "inconsciente": "inconscient", "inconscientemente": "inconscient", "inconsequência": "inconsequent", "inconstitucional": "inconstitucional", "incontáveis": "incont", "incontestáveis": "incontest", "incontida": "incont", "incontinência": "incontinent", "incontroláveis": "incontrol", "incontrolável": "incontrol", "incontroversas": "incontrovers", "inconvenientes": "inconvenient", "incor": "incor", "incorpora": "incorpor", "incorporá": "incorpor", "incorporação": "incorpor", "incorporada": "incorpor", "incorporado": "incorpor", "incorporadores": "incorpor", "incorporados": "incorpor", "incorporam": "incorpor", "incorporando": "incorpor", "incorporar": "incorpor", "incorporaram": "incorpor", "incorporo": "incorpor", "incorporou": "incorpor", "incorreta": "incorret", "incorreto": "incorret", "incra": "incra", "incredulidade": "incredul", "incrédulo": "incrédul", "incrementados": "increment", "incrementar": "increment", "incrementaram": "increment", "incriminadora": "incrimin", "incríveis": "incrív", "incrível": "incrível", "incrivelmente": "incrivel", "incrustado": "incrust", "incubação": "incub", "incumbência": "incumbent", "incumbido": "incumb", "incuráveis": "incur", "incurável": "incur", "incúria": "incúr", "incursão": "incursã", "incursões": "incursõ", "indaga": "indag", "indagação": "indag", "indagações": "indag", "indagaria": "indag", "indagava": "indag", "indarte": "indart", "indecentes": "indecent", "indecifrável": "indecifr", "indeciso": "indecis", "indecisos": "indecis", "indefectível": "indefect", "indefensável": "indefens", "indefinições": "indefiniçõ", "indefinido": "indefin", "indenização": "indeniz", "indenizações": "indeniz", "indenizadas": "indeniz", "indenizado": "indeniz", "indenizaram": "indeniz", "independence": "independenc", "independência": "independent", "independendo": "independ", "independent": "independent", "independente": "independent", "independentemente": "independent", "independentes": "independent", "indescritível": "indescrit", "indesejável": "indesej", "indeterminado": "indetermin", "indevidamente": "indevid", "indevido": "indev", "index": "index", "índia": "índi", "indiana": "indian", "indianápolis": "indianápol", "indianas": "indian", "indiano": "indian", "indianos": "indian", "índias": "índi", "indica": "indic", "indicação": "indic", "indicações": "indic", "indicada": "indic", "indicadas": "indic", "indicado": "indic", "indicador": "indic", "indicadores": "indic", "indicados": "indic", "indicam": "indic", "indicando": "indic", "indicar": "indic", "indicaria": "indic", "indicativo": "indic", "indicator": "indicator", "indicava": "indic", "indicavam": "indic", "índice": "índic", "índices": "índic", "indício": "indíci", "indícios": "indíci", "indiciou": "indic", "indico": "indic", "índico": "índic", "indicou": "indic", "indiferença": "indiferenc", "indiferente": "indiferent", "indiferentes": "indiferent", "indígena": "indígen", "indígenas": "indígen", "indigência": "indigent", "indigestão": "indigestã", "indignação": "indign", "indignada": "indign", "indignado": "indign", "indignou": "indign", "indigo": "indig", "índio": "índi", "índios": "índi", "indireta": "indiret", "indiretamente": "indiret", "indiretas": "indiret", "indiretos": "indiret", "indisciplina": "indisciplin", "indiscreta": "indiscret", "indiscretas": "indiscret", "indiscriminada": "indiscrimin", "indiscriminadamente": "indiscrimin", "indiscutível": "indiscut", "indispensáveis": "indispens", "indispensável": "indispens", "indissolúvel": "indissolúvel", "individuais": "individu", "individual": "individual", "individualidade": "individual", "individualismo": "individual", "individualista": "individual", "individualistas": "individual", "individualiza": "individualiz", "individualizado": "individualiz", "individualmente": "individual", "indíviduo": "indívidu", "indivíduo": "indivídu", "indivíduos": "indivídu", "indizíveis": "indizív", "indo": "indo", "índole": "índol", "indomada": "indom", "indomável": "indom", "indonésia": "indonés", "indulgências": "indulgent", "indumentária": "indumentár", "indústria": "indústr", "industriais": "industri", "industrial": "industrial", "industrialização": "industrializ", "industrializadas": "industrializ", "industrializado": "industrializ", "industrializados": "industrializ", "indústrias": "indústr", "indusval": "indusval", "induz": "induz", "induzem": "induz", "induzida": "induz", "induzido": "induz", "induzir": "induz", "induzo": "induz", "indy": "indy", "inédita": "inédit", "ineditismo": "inedit", "inédito": "inédit", "inéditos": "inédit", "ineficaz": "ineficaz", "ineficiência": "ineficient", "ineficiências": "ineficient", "ineficientes": "ineficient", "inegáveis": "ineg", "inegável": "ineg", "inei": "ine", "inelutável": "inelut", "inépcia": "inépc", "inequívoca": "inequívoc", "inerte": "inert", "inès": "inès", "inês": "inês", "inescrupuloso": "inescrupul", "inesperada": "inesper", "inesperadamente": "inesper", "inesperadas": "inesper", "inesperado": "inesper", "inestimável": "inestim", "inevitável": "inevit", "inevitavelmente": "inevit", "inexato": "inexat", "inexistente": "inexistent", "inexistentes": "inexistent", "inexorável": "inexor", "inexperiente": "inexperient", "inexperientes": "inexperient", "inexplicáveis": "inexplic", "inexplicável": "inexplic", "inexpressiva": "inexpress", "inf": "inf", "infame": "infam", "infância": "infânc", "infantaria": "infant", "infantil": "infantil", "infantilizado": "infantiliz", "infantilizados": "infantiliz", "infantis": "infant", "infanto": "infant", "infarta": "infart", "infarto": "infart", "infartos": "infart", "infecção": "infecçã", "infecções": "infecçõ", "infectadas": "infect", "infectado": "infect", "infectados": "infect", "infectologista": "infectolog", "infelicidade": "infel", "infeliz": "infeliz", "infelizes": "infeliz", "infelizmente": "infeliz", "inferior": "inferior", "inferiores": "inferior", "inferioridade": "inferior", "inferir": "infer", "infernal": "infernal", "inferninhos": "inferninh", "inferno": "infern", "infestada": "infest", "infestam": "infest", "infidelidade": "infidel", "infiéis": "infi", "infiel": "infiel", "infiltra": "infiltr", "infiltrações": "infiltr", "infiltrando": "infiltr", "infiltrar": "infiltr", "infiltrou": "infiltr", "ínfimo": "ínfim", "ínfimos": "ínfim", "infindável": "infind", "infinidade": "infin", "infinita": "infinit", "infinitamente": "infinit", "infinitas": "infinit", "inflação": "inflaçã", "inflacionou": "inflacion", "infladas": "inflad", "inflamação": "inflam", "inflamada": "inflam", "inflamado": "inflam", "inflamados": "inflam", "inflamar": "inflam", "inflamatória": "inflamatór", "inflamáveis": "inflam", "inflamável": "inflam", "inflexível": "inflex", "influencia": "influenc", "influência": "influênc", "influenciada": "influenc", "influenciado": "influenc", "influenciados": "influenc", "influenciam": "influenc", "influenciando": "influenc", "influenciar": "influenc", "influências": "influênc", "influenciável": "influenc", "influenciem": "influenc", "influencio": "influenci", "influenciou": "influenc", "influente": "influent", "influentes": "influent", "influi": "influ", "influindo": "influ", "influir": "influ", "infográfico": "infográf", "infolab": "infolab", "informa": "inform", "informaç": "informac", "informação": "inform", "informações": "inform", "informada": "inform", "informadas": "inform", "informadíssimos": "informadíss", "informado": "inform", "informados": "inform", "informal": "informal", "informalmente": "informal", "informam": "inform", "informando": "inform", "informantes": "inform", "informar": "inform", "informaram": "inform", "informática": "informát", "information": "information", "informativo": "inform", "informativos": "inform", "informatização": "informatiz", "informatizada": "informatiz", "informatizado": "informatiz", "informatizou": "informatiz", "informava": "inform", "informe": "inform", "informes": "inform", "informestado": "informest", "informou": "inform", "infortunadamente": "infortun", "infoway": "infoway", "infra": "infra", "infração": "infraçã", "infrações": "infraçõ", "infratores": "infrator", "infrutíferas": "infrutíf", "infundada": "infund", "infundadas": "infund", "ing": "ing", "ingen": "ingen", "ingênua": "ingênu", "ingenuidade": "ingenu", "ingênuo": "ingênu", "ingeri": "inger", "ingerida": "inger", "ingerido": "inger", "ingeridos": "inger", "ingerindo": "inger", "ingerir": "inger", "ingestão": "ingestã", "inglaterra": "inglaterr", "inglês": "inglês", "inglesa": "ingles", "ingleses": "ingles", "inglesi": "ingles", "ingovernáveis": "ingovern", "ingra": "ingra", "ingrediente": "ingredient", "ingredientes": "ingredient", "íngreme": "íngrem", "íngremes": "íngrem", "ingressado": "ingress", "ingressam": "ingress", "ingressar": "ingress", "ingresso": "ingress", "ingressos": "ingress", "ingrid": "ingrid", "inibe": "inib", "inibem": "inib", "inibex": "inibex", "inibidor": "inibidor", "inibidores": "inibidor", "inibidos": "inib", "inibindo": "inib", "inibir": "inib", "inicia": "inic", "iniciação": "inic", "iniciada": "inic", "iniciadas": "inic", "iniciado": "inic", "iniciados": "inic", "iniciais": "inic", "inicial": "inicial", "inicialmente": "inicial", "iniciam": "inic", "iniciamos": "inic", "iniciando": "inic", "iniciante": "inic", "iniciantes": "inic", "iniciar": "inic", "iniciaram": "inic", "iniciático": "iniciát", "iniciativa": "inic", "iniciava": "inic", "inicidente": "inicident", "início": "iníci", "iniciou": "inic", "inigualável": "inigual", "inimaginável": "inimagin", "inimiga": "inimig", "inimigo": "inimig", "inimigos": "inimig", "inimizade": "inimizad", "ininteligíveis": "ininteligív", "ininterrupta": "ininterrupt", "ininterruptamente": "ininterrupt", "ininterruptas": "ininterrupt", "ininterruptos": "ininterrupt", "injeção": "injeçã", "injeções": "injeçõ", "injetada": "injet", "injetado": "injet", "injetados": "injet", "injetar": "injet", "injetável": "injet", "injustamente": "injust", "injustiça": "injustic", "injustiçadas": "injustic", "injustiçado": "injustic", "injusto": "injust", "inocência": "inocent", "inocêncio": "inocênci", "inocente": "inocent", "inocentes": "inocent", "inócua": "inócu", "inócuas": "inócu", "inocular": "inocul", "inócuo": "inócu", "inócuos": "inócu", "inoportuno": "inoportun", "inoportunos": "inoportun", "inóspitas": "inóspit", "inóspitos": "inóspit", "inovação": "inov", "inovações": "inov", "inovador": "inov", "inovadora": "inov", "inovando": "inov", "inovar": "inov", "inquérito": "inquérit", "inquéritos": "inquérit", "inquestionável": "inquestion", "inquieta": "inquiet", "inquietação": "inquiet", "inquietações": "inquiet", "inquietante": "inquiet", "inquieto": "inquiet", "inquietos": "inquiet", "inquisição": "inquisiçã", "insaciável": "insac", "insana": "insan", "insanidade": "insan", "insatisfação": "insatisf", "insatisfatória": "insatisfatór", "insatisfatórias": "insatisfatór", "insatisfazer": "insatisfaz", "insatisfeito": "insatisfeit", "insconstitucional": "insconstitucional", "inscrevem": "inscrev", "inscrever": "inscrev", "inscrição": "inscriçã", "inscrições": "inscriçõ", "inscritos": "inscrit", "insegura": "insegur", "insegurança": "inseguranc", "inseguro": "insegur", "insensatez": "insensatez", "insensíveis": "insensív", "inseparável": "insepar", "inserção": "inserçã", "insere": "inser", "inseri": "inser", "inserido": "inser", "insignificância": "insignific", "insignificante": "insignific", "insignificantes": "insignific", "insinua": "insinu", "insinuações": "insinu", "insinuando": "insinu", "insinuar": "insinu", "insinuara": "insinu", "insista": "insist", "insiste": "insist", "insistem": "insist", "insistência": "insistent", "insistia": "insist", "insistido": "insist", "insistir": "insist", "insistiu": "insist", "insólito": "insólit", "insolúvel": "insolúvel", "insolvência": "insolvent", "insondável": "insond", "insones": "inson", "insônia": "insôn", "insossa": "insoss", "inspeção": "inspeçã", "inspecionadas": "inspecion", "inspecionam": "inspecion", "inspecionar": "inspecion", "inspetor": "inspetor", "inspira": "inspir", "inspiração": "inspir", "inspirada": "inspir", "inspiradas": "inspir", "inspirado": "inspir", "inspirador": "inspir", "inspirados": "inspir", "inspiram": "inspir", "inspirar": "inspir", "inspiraram": "inspir", "inspiratória": "inspiratór", "inspirava": "inspir", "inspiravam": "inspir", "inspirou": "inspir", "inss": "inss", "instala": "instal", "instalação": "instal", "instalações": "instal", "instalada": "instal", "instaladas": "instal", "instalado": "instal", "instalados": "instal", "instalam": "instal", "instalando": "instal", "instalar": "instal", "instalará": "instal", "instalaram": "instal", "instalarem": "instal", "instalem": "instal", "instalou": "instal", "instância": "instânc", "instâncias": "instânc", "instantânea": "instantân", "instantâneo": "instantân", "instante": "instant", "instantes": "instant", "instaurado": "instaur", "instáveis": "instáv", "instável": "instável", "instigante": "instig", "instintiva": "instint", "instinto": "instint", "institucionalizar": "institucionaliz", "instituição": "instituiçã", "instituições": "instituiçõ", "instituída": "instituíd", "instituído": "instituíd", "instituir": "institu", "instituiu": "institu", "institute": "institut", "institution": "institution", "institutional": "institutional", "instituto": "institut", "institutos": "institut", "instrução": "instruçã", "instruções": "instruçõ", "instruídos": "instruíd", "instrumentais": "instrument", "instrumental": "instrumental", "instrumentalizadas": "instrumentaliz", "instrumentista": "instrument", "instrumento": "instrument", "instrumentos": "instrument", "instrutivas": "instrut", "instrutor": "instrutor", "instrutores": "instrutor", "insubstituível": "insubstitu", "insucesso": "insucess", "insuficiência": "insuficient", "insuficiente": "insuficient", "insuficientes": "insuficient", "insulina": "insulin", "insultando": "insult", "insuperáveis": "insuper", "insuperável": "insuper", "insuportável": "insuport", "insurgiram": "insurg", "insurreição": "insurreiçã", "insustentável": "insustent", "intacta": "intact", "intacto": "intact", "intangível": "intang", "intatas": "intat", "inte": "inte", "integra": "integr", "íntegra": "íntegr", "integrá": "integr", "integração": "integr", "integrada": "integr", "integrado": "integr", "integradora": "integr", "integrados": "integr", "integrais": "integr", "integral": "integral", "integralmente": "integral", "integram": "integr", "integrante": "integr", "integrantes": "integr", "integrar": "integr", "íntegras": "íntegr", "integrated": "integrated", "integrava": "integr", "integre": "integr", "integridade": "integr", "integrou": "integr", "inteira": "inteir", "inteiramente": "inteir", "inteiras": "inteir", "inteirinho": "inteirinh", "inteiro": "inteir", "inteirou": "inteir", "intel": "intel", "intelectuais": "intelectu", "intelectual": "intelectual", "intelifgência": "intelifgent", "inteligence": "inteligenc", "inteligência": "inteligent", "inteligente": "inteligent", "inteligentes": "inteligent", "inteligentíssimo": "inteligentíssim", "intempéries": "intempéri", "intempestiva": "intempest", "intenção": "intençã", "intencional": "intencional", "intenções": "intençõ", "intensa": "intens", "intensamente": "intens", "intensas": "intens", "intensidade": "intens", "intensidades": "intens", "intensificando": "intensific", "intensificar": "intensific", "intensiva": "intens", "intensivo": "intens", "intenso": "intens", "inter": "inter", "interação": "inter", "interações": "inter", "interagem": "interag", "interativa": "inter", "interativas": "inter", "interatividade": "interat", "intercâmbio": "intercâmbi", "interceda": "interced", "intercomunicação": "intercomunic", "intercontinental": "intercontinental", "interdependência": "interdependent", "interdesign": "interdesign", "interdição": "interdiçã", "interditada": "interdit", "interessa": "interess", "interessada": "interess", "interessadas": "interess", "interessado": "interess", "interessados": "interess", "interessam": "interess", "interessante": "interess", "interessantes": "interess", "interessar": "interess", "interessasse": "interess", "interessava": "interess", "interesse": "inter", "interessei": "interess", "interesses": "inter", "interessou": "interess", "interface": "interfac", "interfere": "interfer", "interferência": "interferent", "interferências": "interferent", "interferido": "interfer", "interferir": "interfer", "interinamente": "interin", "interior": "interior", "interioranas": "interioran", "interiorano": "interioran", "interiores": "interior", "interiorizada": "interioriz", "interlagos": "interlag", "interliga": "interlig", "interligadas": "interlig", "interligados": "interlig", "interlocutor": "interlocutor", "interlocutores": "interlocutor", "intermediação": "intermedi", "intermediada": "intermedi", "intermediária": "intermediár", "intermediário": "intermediári", "intermediários": "intermediári", "intermédio": "intermédi", "intermináveis": "intermin", "interminável": "intermin", "interministerial": "interministerial", "intermitente": "intermitent", "interna": "intern", "interná": "intern", "internação": "intern", "internacionais": "internacion", "internacional": "internacional", "internacionalizada": "internacionaliz", "internacionalmente": "internacional", "internações": "intern", "internada": "intern", "internado": "intern", "internar": "intern", "internas": "intern", "international": "international", "internato": "internat", "internauta": "internaut", "internautas": "internaut", "internet": "internet", "interno": "intern", "internos": "intern", "interoperability": "interoperability", "interpelação": "interpel", "interpol": "interpol", "interpreta": "interpret", "interpretação": "interpret", "interpretações": "interpret", "interpretada": "interpret", "interpretadas": "interpret", "interpretado": "interpret", "interpretados": "interpret", "interpretam": "interpret", "interpretando": "interpret", "interpretar": "interpret", "interpretava": "interpret", "interpretavam": "interpret", "intérprete": "intérpret", "intérpretes": "intérpret", "interpretou": "interpret", "interregno": "interregn", "interrogação": "interrog", "interrogações": "interrog", "interrogadores": "interrog", "interrogam": "interrog", "interrogando": "interrog", "interrogatório": "interrogatóri", "interrogatórios": "interrogatóri", "interrogava": "interrog", "interrogou": "interrog", "interrompendo": "interromp", "interromper": "interromp", "interrompida": "interromp", "interrompido": "interromp", "interrupção": "interrupçã", "intersindical": "intersindical", "intertribais": "intertrib", "intervalo": "interval", "intervalos": "interval", "intervém": "intervém", "intervenção": "intervençã", "intervencionista": "intervencion", "intervencionistas": "intervencion", "intervenções": "intervençõ", "intervir": "interv", "intestinal": "intestinal", "intestino": "intestin", "íntima": "íntim", "intimado": "intim", "íntimas": "íntim", "intimida": "intim", "intimidade": "intim", "intimidades": "intim", "íntimo": "íntim", "íntimos": "íntim", "intitulada": "intitul", "intitulado": "intitul", "intitular": "intitul", "intocada": "intoc", "intocados": "intoc", "intocável": "intoc", "intolerância": "intoler", "intolerantes": "intoler", "intolerável": "intoler", "intoxicação": "intoxic", "intoxicações": "intoxic", "intracranianos": "intracranian", "intransponíveis": "intransponív", "intransponível": "intranspon", "intratáveis": "intrat", "intriga": "intrig", "intrigante": "intrig", "intrigas": "intrig", "introdução": "introduçã", "introduz": "introduz", "introduzida": "introduz", "introduzido": "introduz", "introduzindo": "introduz", "introduzir": "introduz", "intrometendo": "intromet", "intrometeram": "intromet", "intrometida": "intromet", "introspectivo": "introspect", "intrusos": "intrus", "intui": "intu", "intuição": "intuiçã", "intuitivo": "intuit", "inturia": "intur", "inúmeras": "inúm", "inúmeros": "inúmer", "inundaram": "inund", "inusitada": "inusit", "inusitadas": "inusit", "inusitado": "inusit", "inúteis": "inút", "inútil": "inútil", "inutiliza": "inutiliz", "inutilmente": "inutil", "invade": "invad", "invadi": "invad", "invadida": "invad", "invadido": "invad", "invadindo": "invad", "invadir": "invad", "invadiram": "invad", "invadiria": "invad", "invadiu": "invad", "invalidez": "invalidez", "invariavelmente": "invari", "invasão": "invasã", "invasivo": "invas", "invasores": "invasor", "inveja": "invej", "invejável": "invej", "invejo": "invej", "invenção": "invençã", "invencibilidade": "invencibil", "inventada": "invent", "inventado": "invent", "inventando": "invent", "inventar": "invent", "inventaram": "invent", "inventário": "inventári", "inventava": "invent", "invente": "invent", "inventor": "inventor", "inventores": "inventor", "inventou": "invent", "inverno": "invern", "invernos": "invern", "inversa": "invers", "inversamente": "invers", "inversão": "inversã", "inverso": "invers", "inverte": "invert", "invertessem": "invert", "inverteu": "invert", "investe": "invest", "investem": "invest", "investiam": "invest", "investida": "invest", "investidas": "invest", "investido": "invest", "investidor": "investidor", "investidores": "investidor", "investidos": "invest", "investiga": "investig", "investigação": "investig", "investigações": "investig", "investigada": "investig", "investigadas": "investig", "investigado": "investig", "investigador": "investig", "investigadora": "investig", "investigadores": "investig", "investigados": "investig", "investigam": "investig", "investigando": "investig", "investigar": "investig", "investigativa": "investig", "investigativo": "investig", "investigou": "investig", "investigue": "investig", "investimento": "invest", "investimentos": "invest", "investimos": "invest", "investindo": "invest", "investir": "invest", "investirá": "invest", "investisse": "invest", "investiu": "invest", "investment": "investment", "inveterado": "inveter", "inveterados": "inveter", "inviabilizados": "inviabiliz", "inviabilizam": "inviabiliz", "inviável": "inviável", "invicto": "invict", "invisíveis": "invisív", "invisível": "invis", "invista": "invist", "invistam": "invist", "invocação": "invoc", "invólucro": "invólucr", "invólucros": "invólucr", "involuntariamente": "involuntari", "iô": "iô", "iode": "iod", "iódice": "iódic", "iof": "iof", "ioga": "iog", "iogurte": "iogurt", "ioiô": "ioiô", "ion": "ion", "ione": "ion", "iorquina": "iorquin", "iorquino": "iorquin", "ioruba": "iorub", "iôs": "iôs", "ip": "ip", "ipanema": "ipanem", "ipanemense": "ipanemens", "ipea": "ipe", "iph": "iph", "iphigenie": "iphigeni", "ipiranga": "ipirang", "ipojuca": "ipojuc", "ipva": "ipva", "ir": "ir", "ira": "ira", "irá": "irá", "irã": "irã", "iracy": "iracy", "iranaia": "irana", "irany": "irany", "irão": "irã", "iraquiano": "iraquian", "irem": "irem", "irene": "iren", "iria": "iri", "iriam": "iri", "iríamos": "irí", "irídio": "irídi", "irineu": "irin", "iriri": "irir", "iris": "iris", "íris": "íris", "irlanda": "irland", "irlandês": "irlandês", "irma": "irma", "irmã": "irmã", "irmão": "irmã", "irmãos": "irmã", "irmãs": "irmãs", "ironia": "iron", "ironias": "iron", "irônica": "irôn", "ironicamente": "iron", "irônico": "irôn", "ironiza": "ironiz", "ironizou": "ironiz", "irradiando": "irradi", "irradiar": "irradi", "irreais": "irre", "irreconhecível": "irreconhec", "irredutíveis": "irredutív", "irrefutáveis": "irrefut", "irregular": "irregul", "irregulares": "irregul", "irregularidade": "irregular", "irregularidades": "irregular", "irregularmente": "irregular", "irrelevante": "irrelev", "irrelevantes": "irrelev", "irreligioso": "irreligi", "irreparável": "irrepar", "irrepreensível": "irrepreens", "irrequieto": "irrequiet", "irresistíveis": "irresistív", "irresistível": "irresist", "irresponsáveis": "irrespons", "irresponsável": "irrespons", "irreverência": "irreverent", "irreverente": "irreverent", "irreverentes": "irreverent", "irreversível": "irrevers", "irrigação": "irrig", "irrigada": "irrig", "irrisória": "irrisór", "irrisório": "irrisóri", "irrita": "irrit", "irritabilidade": "irrit", "irritação": "irrit", "irritada": "irrit", "irritadiças": "irritadic", "irritado": "irrit", "irritam": "irrit", "irritando": "irrit", "irritante": "irrit", "irritava": "irrit", "irrito": "irrit", "irritou": "irrit", "irrompeu": "irromp", "irving": "irving", "is": "is", "isa": "isa", "isabel": "isabel", "isabela": "isabel", "isabella": "isabell", "isabelle": "isabell", "isaías": "isaí", "isaura": "isaur", "isca": "isca", "ischo": "ischo", "isdn": "isdn", "isenção": "isençã", "isenta": "isent", "ísis": "ísis", "islâmica": "islâm", "islamismo": "islam", "ismael": "ismael", "iso": "iso", "isola": "isol", "isolada": "isol", "isoladamente": "isol", "isoladas": "isol", "isolado": "isol", "isolados": "isol", "isolamento": "isol", "isolando": "isol", "isolar": "isol", "isolda": "isold", "isomeride": "isomerid", "israel": "israel", "israelense": "israelens", "israelenses": "israelens", "israelita": "israelit", "isso": "isso", "istambul": "istambul", "isto": "isto", "istoe": "isto", "istoé": "isto", "istván": "istván", "it": "it", "itabira": "itab", "itacarambi": "itacaramb", "itacoatiara": "itacoati", "itaim": "itaim", "itaipu": "itaipu", "itália": "itál", "italiana": "italian", "italianas": "italian", "italiano": "italian", "italianos": "italian", "ítalo": "ítal", "itamar": "itam", "itamaraty": "itamaraty", "itanhaém": "itanhaém", "itapemirim": "itapemirim", "itapetininga": "itapetining", "itapipoca": "itapipoc", "itapoan": "itapoan", "itaporã": "itaporã", "itatiba": "itatib", "itaú": "itaú", "itautec": "itautec", "item": "item", "itens": "itens", "ítens": "ítens", "itinerantes": "itiner", "itr": "itr", "itu": "itu", "iva": "iva", "ivan": "ivan", "ivani": "ivan", "ivanilda": "ivanild", "ivens": "ivens", "iversen": "iversen", "ivo": "ivo", "ivone": "ivon", "ivonete": "ivonet", "ivy": "ivy", "ix": "ix", "iya": "iya", "izabel": "izabel", "izabela": "izabel", "izalco": "izalc", "izolete": "izolet", "j": "j", "já": "já", "jabaquara": "jabaqu", "jabás": "jabás", "jabor": "jabor", "jaboulet": "jaboulet", "jabuticabal": "jabuticabal", "jabuticabeira": "jabuticabeir", "jaçanã": "jaçanã", "jacaré": "jacar", "jacareí": "jacar", "jacarepaguá": "jacarepagu", "jacira": "jac", "jack": "jack", "jackie": "jacki", "jacks": "jacks", "jackson": "jackson", "jacksonville": "jacksonvill", "jacó": "jac", "jacob": "jacob", "jacobinos": "jacobin", "jacqueline": "jacquelin", "jacques": "jacqu", "jáder": "jád", "jaffa": "jaff", "jagger": "jagg", "jaguar": "jagu", "jaguaribe": "jaguarib", "jaguariúna": "jaguariún", "jaguatirica": "jaguatir", "jagunço": "jagunc", "jah": "jah", "jaicós": "jaicós", "jaime": "jaim", "jair": "jair", "jairo": "jair", "jakku": "jakku", "jamaica": "jamaic", "jamais": "jam", "jambu": "jambu", "jamelão": "jamelã", "james": "jam", "janailma": "janailm", "jancsó": "jancs", "jandira": "jand", "jane": "jan", "janeiro": "janeir", "janela": "janel", "janelas": "janel", "jangadeiros": "jangadeir", "jânia": "jân", "janice": "janic", "janine": "janin", "jânio": "jâni", "jansen": "jansen", "jantamos": "jant", "jantar": "jant", "jantares": "jant", "jantava": "jant", "januária": "január", "japão": "japã", "japonês": "japonês", "japonesa": "japones", "japonesas": "japones", "japoneses": "japones", "jaqueira": "jaqueir", "jaqueline": "jaquelin", "jaqueta": "jaquet", "jaquetas": "jaquet", "jaraguá": "jaragu", "jaraguari": "jaraguar", "jararaca": "jararac", "jararacas": "jararac", "jarbas": "jarb", "jardim": "jardim", "jardineiros": "jardineir", "jardins": "jardins", "jares": "jar", "jargão": "jargã", "jarras": "jarr", "jasim": "jasim", "jatene": "jaten", "játinha": "játinh", "jatinho": "jatinh", "jatinhos": "jatinh", "jato": "jat", "jatos": "jat", "java": "jav", "javier": "javi", "jayme": "jaym", "jazadji": "jazadj", "jazem": "jaz", "jazidas": "jaz", "jazigo": "jazig", "jazz": "jazz", "jazzmania": "jazzman", "jb": "jb", "jean": "jean", "jeanne": "jeann", "jeans": "jeans", "jecimar": "jecim", "jeep": "jeep", "jeff": "jeff", "jefferson": "jefferson", "jeffrey": "jeffrey", "jegue": "jeg", "jeitão": "jeitã", "jeitinho": "jeitinh", "jeito": "jeit", "jenailto": "jenailt", "jenipapo": "jenipap", "jenkins": "jenkins", "jennings": "jennings", "jepson": "jepson", "jequitimar": "jequitim", "jequitinhonha": "jequitinhonh", "jereissati": "jereissat", "jeremy": "jeremy", "jericó": "jeric", "jersey": "jersey", "jerusalém": "jerusalém", "jesse": "jess", "jesuíta": "jesuít", "jesuítica": "jesuít", "jesus": "jesus", "jet": "jet", "jheremias": "jherem", "jiló": "jil", "jim": "jim", "jimenez": "jimenez", "jimi": "jim", "jimmy": "jimmy", "jingles": "jingl", "jipe": "jip", "jipes": "jip", "jk": "jk", "jô": "jô", "joalherias": "joalh", "joana": "joan", "joanna": "joann", "joão": "joã", "joaquim": "joaquim", "joaquina": "joaquin", "jobim": "jobim", "jochen": "jochen", "jodaciel": "jodaciel", "jodie": "jodi", "joe": "joe", "joel": "joel", "joelho": "joelh", "joelhos": "joelh", "jofre": "jofr", "joga": "jog", "jogada": "jog", "jogadas": "jog", "jogadinhas": "jogadinh", "jogado": "jog", "jogador": "jogador", "jogadora": "jogador", "jogadoras": "jogador", "jogadores": "jogador", "jogados": "jog", "jogam": "jog", "jogando": "jog", "jogar": "jog", "jogaram": "jog", "jogaria": "jog", "jogatina": "jogatin", "jogava": "jog", "jogo": "jog", "jogos": "jog", "jogou": "jog", "joguei": "jogu", "joguem": "jogu", "johannes": "johann", "john": "john", "johnnie": "johnni", "johnny": "johnny", "johns": "johns", "johnson": "johnson", "johnstone": "johnston", "jóia": "jói", "jóias": "jói", "joint": "joint", "joinville": "joinvill", "jonas": "jon", "jonathan": "jonathan", "jônathas": "jônath", "jones": "jon", "jong": "jong", "jongo": "jong", "joni": "jon", "jônica": "jônic", "jopi": "jop", "jor": "jor", "jordan": "jordan", "jordanianos": "jordanian", "jordão": "jordã", "jorge": "jorg", "jorgina": "jorgin", "jornada": "jorn", "jornadas": "jorn", "jornais": "jorn", "jornal": "jornal", "jornaleiro": "jornaleir", "jornalismo": "jornal", "jornalista": "jornal", "jornalistas": "jornal", "jornalística": "jornalíst", "jornalzinho": "jornalzinh", "josaphat": "josaphat", "josé": "jos", "josefa": "josef", "josefina": "josefin", "joseph": "joseph", "joshua": "joshu", "jospin": "jospin", "josué": "josu", "jouglas": "jougl", "journal": "journal", "jova": "jov", "jovelina": "jovelin", "jovem": "jov", "jovens": "jovens", "jovenzinhas": "jovenzinh", "jovial": "jovial", "jovino": "jovin", "joy": "joy", "joyce": "joyc", "jpx": "jpx", "jr": "jr", "juan": "juan", "juarez": "juarez", "juazeiro": "juazeir", "jubarte": "jubart", "juberli": "juberl", "júbilo": "júbil", "juca": "juc", "jucélia": "jucél", "judaica": "judaic", "judaicas": "judaic", "judaismo": "judaism", "judaísmo": "judaísm", "judéia": "jud", "judeu": "jud", "judeus": "judeus", "judia": "jud", "judias": "jud", "judiciais": "judic", "judicial": "judicial", "judiciário": "judiciári", "judith": "judith", "jugo": "jug", "jugular": "jugul", "juilliard": "juilliard", "juiz": "juiz", "juíza": "juíz", "juízes": "juíz", "juízo": "juíz", "julga": "julg", "julgá": "julg", "julgada": "julg", "julgado": "julg", "julgados": "julg", "julgam": "julg", "julgamento": "julgament", "julgamentos": "julgament", "julgando": "julg", "julgar": "julg", "julgaria": "julg", "julgava": "julg", "julgavam": "julg", "julgo": "julg", "julgou": "julg", "julguei": "julgu", "julho": "julh", "julia": "jul", "júlia": "júl", "juliana": "julian", "julianne": "juliann", "juliano": "julian", "julião": "juliã", "julienne": "julienn", "julieta": "juliet", "julietas": "juliet", "juliette": "juliett", "julio": "juli", "júlio": "júli", "julita": "julit", "jum": "jum", "jumbo": "jumb", "jumentos": "jument", "jun": "jun", "jundiaí": "jundia", "jung": "jung", "jungmann": "jungmann", "junguiana": "junguian", "junguianos": "junguian", "junho": "junh", "juninas": "junin", "juninho": "juninh", "junior": "junior", "júnior": "júnior", "junk": "junk", "junkie": "junki", "junot": "junot", "junqueira": "junqueir", "junta": "junt", "juntado": "junt", "juntam": "junt", "juntamente": "junt", "juntamos": "junt", "juntando": "junt", "juntar": "junt", "juntaram": "junt", "juntariam": "junt", "juntas": "junt", "junte": "junt", "juntei": "junt", "junto": "junt", "juntos": "junt", "juntou": "junt", "júpiter": "júpit", "juppé": "jupp", "jura": "jur", "juracy": "juracy", "jurada": "jur", "jurado": "jur", "jurados": "jur", "juramento": "jurament", "jurassic": "jurassic", "jurava": "jur", "júri": "júr", "jurídica": "juríd", "juridicamente": "jurid", "jurídicas": "juríd", "jurídico": "juríd", "jurídicos": "juríd", "júris": "júr", "jurisprudência": "jurisprudent", "jurista": "jurist", "juristas": "jurist", "juro": "jur", "juros": "jur", "jurou": "jur", "juruci": "juruc", "jus": "jus", "juscilene": "juscilen", "jussara": "juss", "just": "just", "justa": "just", "justamente": "just", "justas": "just", "justiça": "justic", "justifica": "justif", "justificada": "justific", "justificado": "justific", "justificados": "justific", "justificam": "justific", "justificar": "justific", "justificaria": "justific", "justificativa": "justific", "justificativas": "justific", "justificáveis": "justific", "justificou": "justific", "justina": "justin", "justinha": "justinh", "justino": "justin", "justo": "just", "justus": "justus", "juvenil": "juvenil", "juvenis": "juven", "juventude": "juventud", "k": "k", "kabala": "kabal", "kadett": "kadett", "kafelnikov": "kafelnikov", "kafka": "kafk", "kafkiana": "kafkian", "kai": "kai", "kalachackra": "kalachackr", "kalil": "kalil", "kalilo": "kalil", "kalina": "kalin", "kalume": "kalum", "kandir": "kand", "karam": "kar", "karan": "karan", "karen": "karen", "karina": "karin", "karinas": "karin", "karl": "karl", "karla": "karl", "karmali": "karmal", "karman": "karman", "karnak": "karnak", "karni": "karn", "karolinska": "karolinsk", "kart": "kart", "kasparov": "kasparov", "katia": "kat", "kátia": "kát", "katiana": "katian", "kauai": "kaua", "kay": "kay", "kbytes": "kbytes", "kelly": "kelly", "kelvin": "kelvin", "kemal": "kemal", "kennedy": "kennedy", "kenoma": "kenom", "kent": "kent", "kenzo": "kenz", "kepler": "kepl", "kerly": "kerly", "ketchup": "ketchup", "kettering": "kettering", "kfouri": "kfour", "kg": "kg", "khamis": "kham", "khmer": "khmer", "khrunichev": "khrunichev", "kiberon": "kiberon", "kid": "kid", "kids": "kids", "kieffer": "kieff", "kihara": "kih", "kilimanjaro": "kilimanjar", "kim": "kim", "kingdom": "kingdom", "kingsman": "kingsman", "kinjô": "kinjô", "kinnaur": "kinnaur", "kinski": "kinsk", "kipling": "kipling", "kiss": "kiss", "kisser": "kiss", "kissinger": "kissing", "kissner": "kissn", "kits": "kits", "kívia": "kív", "klaus": "klaus", "kléber": "kléb", "klein": "klein", "kleinübing": "kleinübing", "klintowitz": "klintowitz", "klm": "klm", "km": "km", "knol": "knol", "knoll": "knoll", "know": "know", "knox": "knox", "koch": "koch", "kohl": "kohl", "kohoutek": "kohoutek", "kombi": "komb", "kong": "kong", "korda": "kord", "korn": "korn", "kosmos": "kosm", "kowloon": "kowloon", "kozo": "koz", "krafer": "kraf", "kraft": "kraft", "kramer": "kram", "krause": "kraus", "krichanã": "krichanã", "kruchev": "kruchev", "kruse": "krus", "krymchantowski": "krymchantowsk", "ksyvickis": "ksyvick", "kts": "kts", "kuala": "kual", "kubitscheck": "kubitscheck", "kuerten": "kuerten", "kuljis": "kulj", "kullu": "kullu", "kung": "kung", "kupfer": "kupf", "kür": "kür", "kurosawa": "kurosaw", "kurt": "kurt", "kuryakanys": "kuryakanys", "kuster": "kust", "l": "l", "la": "la", "lá": "lá", "lã": "lã", "label": "label", "lábia": "láb", "labial": "labial", "lábios": "lábi", "labirintite": "labirintit", "labirinto": "labirint", "lable": "labl", "laboratoriais": "laboratori", "laboratório": "laboratóri", "laboratórios": "laboratóri", "laboratory": "laboratory", "labore": "labor", "lacerda": "lacerd", "lacônico": "lacôn", "laços": "lac", "lacração": "lacraçã", "lacrado": "lacr", "lacrimais": "lacrim", "lacrimal": "lacrimal", "lacroix": "lacroix", "lacta": "lact", "lacuna": "lacun", "lacunas": "lacun", "ladainha": "ladainh", "ladak": "ladak", "ladakh": "ladakh", "ladário": "ladári", "ladeada": "lad", "ladeado": "lad", "ladeira": "ladeir", "lado": "lad", "lados": "lad", "ladrão": "ladrã", "ladrões": "ladrõ", "lady": "lady", "laender": "laend", "lafayette": "lafayett", "lafemina": "lafemin", "lafon": "lafon", "lagartixa": "lagartix", "lagarto": "lagart", "lagartos": "lagart", "lago": "lag", "lagoa": "lago", "lagoas": "lago", "lagos": "lag", "lágrimas": "lágrim", "lahaul": "lahaul", "laia": "lai", "lair": "lair", "laissez": "laissez", "lake": "lak", "lama": "lam", "lamaísmo": "lamaísm", "lamarca": "lamarc", "lambaeróbica": "lambaerób", "lambendo": "lamb", "lamber": "lamb", "lamborghini": "lamborghin", "lambuzadas": "lambuz", "lameira": "lameir", "lamenta": "lament", "lamentações": "lament", "lamentam": "lament", "lamentava": "lament", "lamentável": "lament", "lamento": "lament", "lamentou": "lament", "lâmina": "lâmin", "laminados": "lamin", "lamm": "lamm", "lâmpada": "lâmp", "lâmpadas": "lâmp", "lampião": "lampiã", "lampiões": "lampiõ", "lampreia": "lampr", "lampréia": "lampr", "lamu": "lamu", "lamúria": "lamúr", "lamurioso": "lamuri", "lan": "lan", "lança": "lanc", "lançá": "lanc", "lançada": "lanc", "lançadas": "lanc", "lançado": "lanc", "lançados": "lanc", "lançam": "lanc", "lançamento": "lançament", "lançamentos": "lançament", "lançando": "lanc", "lançar": "lanc", "lançará": "lanc", "lançaram": "lanc", "lancashire": "lancashir", "lançava": "lanc", "lançavam": "lanc", "lance": "lanc", "lancelotti": "lancelott", "lances": "lanc", "lancha": "lanch", "lanchar": "lanch", "lanchas": "lanch", "lanche": "lanch", "lanches": "lanch", "lanchonete": "lanchonet", "lanchonetes": "lanchonet", "lancôme": "lancôm", "lançou": "lanc", "land": "land", "landim": "landim", "lane": "lan", "lanterna": "lantern", "lantier": "lanti", "lapa": "lap", "lapidar": "lapid", "lapidaram": "lapid", "lapierre": "lapierr", "lápis": "láp", "laptop": "laptop", "laqueadura": "laqueadur", "lar": "lar", "lara": "lar", "laranja": "laranj", "laranjas": "laranj", "laranjeira": "laranjeir", "laranjeiras": "laranjeir", "lares": "lar", "larga": "larg", "largada": "larg", "largadas": "larg", "largamente": "larg", "largamos": "larg", "largar": "larg", "largaria": "larg", "largas": "larg", "largava": "larg", "largo": "larg", "largou": "larg", "larguei": "largu", "largura": "largur", "lari": "lar", "larissa": "lariss", "larry": "larry", "larsson": "larsson", "las": "las", "lascado": "lasc", "laser": "las", "lastro": "lastr", "laszlo": "laszl", "lata": "lat", "lataria": "lat", "latas": "lat", "lateral": "lateral", "látex": "látex", "laticínio": "laticíni", "laticínios": "laticíni", "latifúndio": "latifúndi", "latim": "latim", "latina": "latin", "latinas": "latin", "latino": "latin", "latinos": "latin", "latitude": "latitud", "latorraca": "latorrac", "latrocínio": "latrocíni", "lattari": "lattar", "lauda": "laud", "laudas": "laud", "lauder": "laud", "lauderdale": "lauderdal", "laudo": "laud", "laudos": "laud", "laura": "laur", "lauren": "lauren", "laurence": "laurenc", "lauro": "laur", "lava": "lav", "lavabo": "lavab", "lavada": "lav", "lavadeira": "lavadeir", "lavado": "lav", "lavadora": "lavador", "lavagem": "lavag", "lavagnoli": "lavagnol", "lavam": "lav", "lavanda": "lavand", "lavanderia": "lavand", "lavando": "lav", "lavar": "lav", "lavariam": "lav", "lavigne": "lavign", "lavínia": "lavín", "lavo": "lav", "lavou": "lav", "lavoura": "lavour", "lavouras": "lavour", "lavra": "lavr", "lavrada": "lavr", "lavradora": "lavrador", "lavrar": "lavr", "lavrenti": "lavrent", "lawrence": "lawrenc", "layers": "layers", "lázaro": "lázar", "lazer": "laz", "lazutkin": "lazutkin", "le": "le", "lê": "lê", "lea": "lea", "leah": "leah", "leahy": "leahy", "leais": "lea", "leal": "leal", "lealdade": "lealdad", "leandra": "leandr", "leandro": "leandr", "leão": "leã", "learning": "learning", "leasing": "leasing", "leciona": "lecion", "lecionou": "lecion", "leco": "lec", "lecran": "lecran", "leda": "led", "lee": "lee", "lêem": "lêem", "legado": "leg", "legais": "leg", "legal": "legal", "legalidade": "legal", "legalizam": "legaliz", "legalizar": "legaliz", "legalmente": "legal", "legará": "leg", "legenda": "legend", "legendário": "legendári", "legião": "legiã", "legiões": "legiõ", "legislação": "legisl", "legisladores": "legisl", "legislando": "legisl", "legislar": "legisl", "legislativa": "legisl", "legislativas": "legisl", "legislativo": "legisl", "legista": "legist", "legistas": "legist", "legítima": "legítim", "legitimação": "legitim", "legitimados": "legitim", "legitimam": "legitim", "legitimar": "legitim", "legitimidade": "legitim", "legítimo": "legítim", "legítimos": "legít", "legumes": "legum", "lei": "lei", "leia": "lei", "leide": "leid", "leidivânia": "leidivân", "leiga": "leig", "leigh": "leigh", "leigo": "leig", "leigos": "leig", "leila": "leil", "leilão": "leilã", "leiloá": "leilo", "leiloado": "leilo", "leiloados": "leilo", "leiloeiro": "leiloeir", "leio": "lei", "leis": "leis", "leitão": "leitã", "leite": "leit", "leiteiro": "leiteir", "leito": "leit", "leitor": "leitor", "leitores": "leitor", "leitos": "leit", "leitura": "leitur", "leituras": "leitur", "lélio": "léli", "lellis": "lell", "lema": "lem", "lemann": "lemann", "lembra": "lembr", "lembrada": "lembr", "lembradas": "lembr", "lembrados": "lembr", "lembram": "lembr", "lembrança": "lembranc", "lembranças": "lembranc", "lembrando": "lembr", "lembrar": "lembr", "lembrava": "lembr", "lembravam": "lembr", "lembre": "lembr", "lembremos": "lembr", "lembrete": "lembret", "lembro": "lembr", "lembrou": "lembr", "leme": "lem", "lemgruber": "lemgrub", "lemir": "lem", "lemos": "lem", "leñas": "leñ", "lenço": "lenc", "lençóis": "lençó", "lenços": "lenc", "lenda": "lend", "lendária": "lendár", "lendário": "lendári", "lendas": "lend", "lendl": "lendl", "lendo": "lend", "lenha": "lenh", "leniente": "lenient", "lenientes": "lenient", "lenin": "lenin", "lênin": "lênin", "lenita": "lenit", "lennon": "lennon", "lens": "lens", "lenta": "lent", "lentamente": "lent", "lentas": "lent", "lente": "lent", "lentes": "lent", "lentidão": "lentidã", "lentidões": "lentidõ", "lentilha": "lentilh", "lentilhas": "lentilh", "lento": "lent", "lentos": "lent", "léo": "léo", "leões": "leõ", "leon": "leon", "leonardo": "leonard", "leonel": "leonel", "leonor": "leonor", "leopoldina": "leopoldin", "leopoldo": "leopold", "leopolldo": "leopolld", "leporaci": "leporac", "leptin": "leptin", "leque": "lequ", "ler": "ler", "leram": "ler", "lerner": "lern", "les": "les", "lesado": "les", "lesados": "les", "lesão": "lesã", "lesar": "les", "lesaram": "les", "lesbian": "lesbian", "lésbica": "lésbic", "lésbicas": "lésbic", "lesivo": "lesiv", "leslie": "lesli", "lesões": "lesõ", "lesou": "les", "lessa": "less", "lesse": "less", "leste": "lest", "letais": "let", "letal": "letal", "letivo": "letiv", "letra": "letr", "letrado": "letr", "letrados": "letr", "letras": "letr", "lettieri": "lettier", "leu": "leu", "leucemia": "leucem", "leuiwyato": "leuiwyat", "leuzzi": "leuzz", "leva": "lev", "levá": "lev", "levada": "lev", "levadas": "lev", "levado": "lev", "levados": "lev", "levam": "lev", "levamos": "lev", "levando": "lev", "levanta": "levant", "levantada": "levant", "levantadas": "levant", "levantado": "levant", "levantador": "levant", "levantados": "levant", "levantam": "levant", "levantamento": "levant", "levantamentos": "levant", "levantamos": "levant", "levantando": "levant", "levantar": "levant", "levantará": "levant", "levantaram": "levant", "levantaremos": "levant", "levantava": "levant", "levantavam": "levant", "levante": "levant", "levantei": "levant", "levantou": "levant", "levar": "lev", "levará": "lev", "levaram": "lev", "levarão": "lev", "levaria": "lev", "levas": "lev", "levava": "lev", "levavam": "lev", "leve": "lev", "leveger": "leveg", "levei": "lev", "level": "level", "levem": "lev", "levemente": "levement", "lever": "lev", "leves": "lev", "leveza": "levez", "levi": "lev", "levin": "levin", "levitação": "levit", "levitsky": "levitsky", "levo": "lev", "levou": "lev", "levy": "levy", "lewgoy": "lewgoy", "lewis": "lew", "lexotan": "lexotan", "lexus": "lexus", "lftms": "lftms", "lhe": "lhe", "lhes": "lhes", "lhores": "lhor", "li": "li", "lia": "lia", "liana": "lian", "liane": "lian", "lias": "lias", "libanês": "libanês", "libanesa": "libanes", "libaneses": "libanes", "libânio": "libâni", "líbano": "líban", "libé": "lib", "libera": "lib", "liberá": "lib", "liberação": "liber", "liberada": "liber", "liberadas": "liber", "liberado": "liber", "liberados": "liber", "liberais": "liber", "liberal": "liberal", "liberalidade": "liberal", "liberalismo": "liberal", "liberalização": "liberaliz", "liberalizar": "liberaliz", "liberalizem": "liberaliz", "liberam": "lib", "liberar": "liber", "liberaria": "liber", "liberasse": "liber", "liberation": "liberation", "liberato": "liberat", "liberava": "liber", "liberdade": "liberdad", "liberdades": "liberdad", "liberou": "liber", "libertação": "libert", "libertado": "libert", "libertador": "libert", "libertadora": "libert", "libertados": "libert", "libertar": "libert", "libertário": "libertári", "libertários": "libertári", "libertos": "libert", "libido": "lib", "libra": "libr", "libretto": "librett", "lição": "liçã", "licença": "licenc", "licenças": "licenc", "licenciado": "licenc", "licenciamento": "licenc", "licenciamentos": "licenc", "licenciar": "licenc", "liceu": "lic", "licitação": "licit", "licitações": "licit", "lições": "liçõ", "licores": "licor", "lida": "lid", "lidador": "lidador", "lidam": "lid", "lidar": "lid", "lidarem": "lid", "líder": "líd", "lidera": "lid", "liderado": "lider", "liderados": "lider", "lideram": "lid", "liderança": "lideranc", "lideranças": "lideranc", "liderando": "lider", "lidere": "lider", "líderes": "líd", "lidero": "lider", "liderou": "lider", "lídia": "líd", "lido": "lid", "life": "lif", "liga": "lig", "ligação": "ligaçã", "ligações": "ligaçõ", "ligada": "lig", "ligadas": "lig", "ligado": "lig", "ligados": "lig", "ligam": "lig", "ligamos": "lig", "ligando": "lig", "ligar": "lig", "ligará": "lig", "ligaram": "lig", "ligas": "lig", "ligeira": "ligeir", "ligeiramente": "ligeir", "ligeiro": "ligeir", "light": "light", "ligia": "lig", "ligo": "lig", "ligou": "lig", "ligue": "lig", "liguei": "ligu", "lília": "líl", "lilian": "lilian", "liliane": "lilian", "lilith": "lilith", "lilly": "lilly", "lima": "lim", "limão": "limã", "limeira": "limeir", "liminar": "limin", "liminares": "limin", "limita": "limit", "limitação": "limit", "limitações": "limit", "limitada": "limit", "limitado": "limit", "limitam": "limit", "limitar": "limit", "limitaram": "limit", "limitava": "limit", "limitavam": "limit", "limite": "limit", "limited": "limited", "limites": "limit", "limito": "limit", "limitou": "limit", "limítrofe": "limítrof", "limousine": "limousin", "limousines": "limousin", "limpa": "limp", "limpar": "limp", "limpei": "limp", "limpeza": "limpez", "límpidas": "límp", "limpinhos": "limpinh", "limpo": "limp", "limpos": "limp", "limusine": "limusin", "limusines": "limusin", "lin": "lin", "linamara": "linam", "lincon": "lincon", "linda": "lind", "lindas": "lind", "lindeln": "lindeln", "lindíssimo": "lindíssim", "lindo": "lind", "lindomar": "lindom", "line": "lin", "linear": "lin", "lineu": "lin", "linfática": "linfát", "lingerie": "lingeri", "lingeries": "lingeri", "língua": "língu", "linguagem": "linguag", "linguajar": "linguaj", "línguas": "língu", "linguiça": "linguic", "lingüiça": "lingüic", "lingüística": "lingüíst", "linha": "linh", "linhagem": "linhag", "linhares": "linh", "linhas": "linh", "linho": "linh", "links": "links", "lino": "lin", "lins": "lins", "lintas": "lint", "liofiliação": "liofili", "lionel": "lionel", "lios": "lios", "lipase": "lipas", "lipoaspiração": "lipoaspir", "lipotrópico": "lipotróp", "lipp": "lipp", "líquida": "líqu", "liquidação": "liquid", "liquidado": "liquid", "liquidaram": "liquid", "liquide": "liquid", "liquidificador": "liquidific", "líquido": "líqu", "líquidos": "líqu", "lírico": "líric", "líricos": "líric", "lirismo": "lirism", "lisa": "lis", "lisboa": "lisbo", "lisérgica": "lisérg", "lisi": "lis", "lisonjeado": "lisonj", "lispector": "lispector", "lista": "list", "listadas": "list", "listados": "list", "listas": "list", "listou": "list", "literal": "literal", "literalmente": "literal", "literária": "literár", "literárias": "literár", "literário": "literári", "literatura": "literatur", "litígios": "litígi", "litoral": "litoral", "litorânea": "litorân", "litro": "litr", "litros": "litr", "little": "littl", "litto": "litt", "liturgia": "liturg", "litúrgico": "litúrg", "live": "liv", "liverpool": "liverpool", "lívia": "lív", "livores": "livor", "livra": "livr", "livrá": "livr", "livram": "livr", "livrando": "livr", "livrar": "livr", "livrara": "livr", "livraram": "livr", "livraria": "livr", "livrarias": "livr", "livre": "livr", "livremente": "livrement", "livres": "livr", "livreto": "livret", "livrinho": "livrinh", "livro": "livr", "livros": "livr", "livrou": "livr", "lixa": "lix", "lixá": "lix", "lixados": "lix", "lixando": "lix", "lixão": "lixã", "lixo": "lix", "liz": "liz", "lizia": "liz", "llao": "lla", "lloyds": "lloyds", "lo": "lo", "ló": "ló", "lobato": "lobat", "lobbies": "lobbi", "lobby": "lobby", "lobo": "lob", "lôbo": "lôb", "locação": "locaçã", "locações": "locaçõ", "locadora": "locador", "locais": "loc", "local": "local", "localidade": "local", "localização": "localiz", "localizada": "localiz", "localizadas": "localiz", "localizado": "localiz", "localizados": "localiz", "localizar": "localiz", "localizaram": "localiz", "localizava": "localiz", "localizou": "localiz", "localmente": "local", "loção": "loçã", "locaset": "locaset", "locatários": "locatári", "lockheed": "lockheed", "lockwood": "lockwood", "locomoção": "locomoçã", "locomotiva": "locomot", "locomotor": "locomotor", "locomove": "locomov", "locomovem": "locomov", "locomover": "locomov", "locução": "locuçã", "locuções": "locuçõ", "locutor": "locutor", "locutora": "locutor", "locutores": "locutor", "lodo": "lod", "loffel": "loffel", "loft": "loft", "lógica": "lógic", "lógicas": "lógic", "lógico": "lógic", "logística": "logíst", "logo": "log", "logotipo": "logotip", "logotipos": "logotip", "logus": "logus", "loira": "loir", "loiraça": "loirac", "loiras": "loir", "loirinha": "loirinh", "loiro": "loir", "loiros": "loir", "loja": "loj", "lojas": "loj", "lojista": "lojist", "lojistas": "lojist", "lombadas": "lomb", "lombardi": "lombard", "lombardimmm": "lombardimmm", "lombo": "lomb", "lombrigas": "lombrig", "lona": "lon", "londres": "londr", "londrina": "londrin", "londrinos": "londrin", "longa": "long", "longamente": "long", "longas": "long", "longe": "long", "longelinealidade": "longelineal", "longevidade": "longev", "longhouser": "longhous", "longilíneo": "longilín", "longínquo": "longínqu", "longitude": "longitud", "longo": "long", "longobardi": "longobard", "longos": "long", "longuíssimo": "longuíssim", "look": "look", "lopes": "lop", "lopez": "lopez", "lorde": "lord", "lordes": "lord", "loredo": "lored", "lorem": "lor", "loren": "loren", "lorscheider": "lorscheid", "los": "los", "losson": "losson", "lost": "lost", "lot": "lot", "lota": "lot", "lotação": "lotaçã", "lotada": "lot", "lotado": "lot", "lotados": "lot", "lotam": "lot", "lotar": "lot", "lotaram": "lot", "lote": "lot", "loteamento": "loteament", "loteiam": "lot", "loteria": "lot", "loterias": "lot", "loterj": "loterj", "lotes": "lot", "lotus": "lotus", "louca": "louc", "louça": "louc", "loucamente": "louc", "loucas": "louc", "louças": "louc", "louco": "louc", "loucos": "louc", "loucura": "loucur", "loucuras": "loucur", "louis": "lou", "louise": "louis", "loura": "lour", "lourdes": "lourd", "loureiro": "loureir", "lourenção": "lourençã", "lourenço": "lourenc", "lourival": "lourival", "louro": "lour", "louros": "lour", "louva": "louv", "louvain": "louvain", "louvavam": "louv", "louvet": "louvet", "louvre": "louvr", "louzada": "louz", "louzado": "louz", "love": "lov", "low": "low", "loyola": "loyol", "lozada": "loz", "lozinsky": "lozinsky", "lp": "lp", "lps": "lps", "ltda": "ltda", "lu": "lu", "lua": "lua", "luanda": "luand", "luc": "luc", "luca": "luc", "lucania": "lucan", "lucas": "luc", "lucchese": "lucches", "lucena": "lucen", "luci": "luc", "lucia": "luc", "lúcia": "lúc", "luciana": "lucian", "luciano": "lucian", "luciara": "luc", "lucidez": "lucidez", "lucidio": "lucidi", "lúcidos": "lúc", "luciene": "lucien", "lucila": "lucil", "lucimara": "lucim", "lucinha": "lucinh", "lúcio": "lúci", "lucky": "lucky", "lucrando": "lucr", "lucrar": "lucr", "lucraria": "lucr", "lucrativas": "lucrat", "lucrativo": "lucrat", "lucrativos": "lucrat", "lucro": "lucr", "lucros": "lucr", "lucrou": "lucr", "luders": "luders", "lúdico": "lúdic", "luditas": "ludit", "ludlow": "ludlow", "lufthansa": "lufthans", "lugar": "lug", "lugarejos": "lugarej", "lugares": "lug", "lúgubre": "lúgubr", "luigi": "luig", "luis": "luis", "luís": "luís", "luiz": "luiz", "luiza": "luiz", "lukaisus": "lukaisus", "lula": "lul", "lulu": "lulu", "luma": "lum", "luminárias": "luminár", "luminosa": "lumin", "luminoso": "lumin", "luminosos": "lumin", "lumpur": "lumpur", "lupa": "lup", "lupicínio": "lupicíni", "lurdemir": "lurdem", "lurdes": "lurd", "lurex": "lurex", "lusa": "lus", "lusíadas": "lusí", "lusitana": "lusitan", "lusitanas": "lusitan", "lusitanos": "lusitan", "lustre": "lustr", "lustro": "lustr", "luta": "lut", "lutado": "lut", "lutador": "lutador", "lutam": "lut", "lutando": "lut", "lutar": "lut", "lutará": "lut", "lutas": "lut", "lutava": "lut", "lutavam": "lut", "luterana": "luteran", "lutero": "luter", "luto": "lut", "lutou": "lut", "luva": "luv", "luvas": "luv", "luvisaro": "luvisar", "lux": "lux", "luxemburgo": "luxemburg", "luxo": "lux", "luxuosa": "luxuos", "luxuosas": "luxuos", "luxuoso": "luxuos", "luxuosos": "luxuos", "luxuriantes": "luxuri", "luycx": "luycx", "luz": "luz", "luzes": "luz", "luzia": "luz", "lynch": "lynch", "lyne": "lyne", "lynx": "lynx", "lyon": "lyon", "m": "m", "ma": "ma", "má": "má", "maastricht": "maastricht", "maçã": "maçã", "macaca": "macac", "macacão": "macacã", "macacas": "macac", "macaco": "macac", "macacos": "macac", "macalé": "macal", "macambúzio": "macambúzi", "maçante": "maçant", "maçarico": "maçar", "macarrão": "macarrã", "macarronada": "macarron", "macarthismo": "macarth", "maçãs": "maçãs", "macaulay": "macaulay", "macbeth": "macbeth", "macbrazel": "macbrazel", "macdowell": "macdowell", "macedo": "maced", "maceió": "macei", "machadiana": "machadian", "machadinho": "machadinh", "machado": "mach", "machados": "mach", "machão": "machã", "machismo": "machism", "machista": "machist", "machistas": "machist", "macho": "mach", "machos": "mach", "machucado": "machuc", "machucou": "machuc", "macia": "mac", "maciça": "macic", "maciças": "macic", "maciel": "maciel", "maciez": "maciez", "macio": "maci", "mackenzie": "mackenzi", "maclaine": "maclain", "maço": "mac", "maconha": "maconh", "maconheiro": "maconheir", "macromedia": "macromed", "macromoléculas": "macromolécul", "macs": "macs", "mácula": "mácul", "macular": "macul", "macumba": "macumb", "macunaíma": "macunaím", "mad": "mad", "mada": "mad", "madalena": "madalen", "made": "mad", "madeira": "madeir", "madeirame": "madeiram", "madeiras": "madeir", "madeireira": "madeireir", "madeireiras": "madeireir", "madeireiro": "madeireir", "madeireiros": "madeireir", "madi": "mad", "madonna": "madonn", "madre": "madr", "madri": "madr", "madrinha": "madrinh", "madruga": "madrug", "madrugada": "madrug", "madrugadas": "madrug", "madura": "madur", "maduras": "madur", "madureira": "madureir", "madureza": "madur", "maduro": "madur", "maduros": "madur", "mady": "mady", "mãe": "mã", "mães": "mã", "maestra": "maestr", "maestro": "maestr", "maestros": "maestr", "mãezinha": "mãezinh", "mafalda": "mafald", "máfia": "máf", "mafiosa": "mafios", "mafiosas": "mafios", "mafiosos": "mafios", "maga": "mag", "magaldi": "magald", "magalhães": "magalhã", "magazine": "magazin", "magazines": "magazin", "magela": "magel", "magella": "magell", "magérrimas": "magérrim", "maggi": "magg", "magia": "mag", "magic": "magic", "mágica": "mágic", "mágicas": "mágic", "mágico": "mágic", "mágicos": "mágic", "magistério": "magistéri", "magistrado": "magistr", "magistrados": "magistr", "magistratura": "magistratur", "magna": "magn", "magnas": "magn", "magnata": "magnat", "magnatas": "magnat", "magnésio": "magnési", "magnética": "magnét", "magnético": "magnét", "magnetismo": "magnet", "magnetoterapia": "magnetoterap", "magnífica": "magníf", "magnífico": "magníf", "magnitude": "magnitud", "magno": "magn", "magnoli": "magnol", "magnus": "magnus", "mago": "mag", "magoa": "mago", "mágoa": "mágo", "magoá": "mago", "mágoas": "mágo", "magos": "mag", "magra": "magr", "magras": "magr", "magrela": "magrel", "magrelas": "magrel", "magreza": "magrez", "magri": "magr", "magrid": "magrid", "magrinha": "magrinh", "magrinhas": "magrinh", "magrinho": "magrinh", "magro": "magr", "magros": "magr", "maguila": "maguil", "mahal": "mahal", "maher": "mah", "mahfuz": "mahfuz", "maia": "mai", "mail": "mail", "mailing": "mailing", "main": "main", "mainardi": "mainard", "mainframe": "mainfram", "mainframes": "mainfram", "maio": "mai", "maiô": "maiô", "maior": "maior", "maiores": "maior", "maioria": "maior", "maiorias": "maior", "maioridade": "maioridad", "maíra": "maír", "mais": "mais", "maison": "maison", "maj": "maj", "majestade": "majestad", "majestosa": "majest", "majoli": "majol", "major": "major", "majoritariamente": "majoritari", "majoritário": "majoritári", "majuro": "majur", "makron": "makron", "mal": "mal", "mala": "mal", "malabar": "malab", "malabarismo": "malabar", "malabarismos": "malabar", "malaia": "mala", "malaias": "mala", "malaios": "malai", "malan": "malan", "malandragem": "malandrag", "malandras": "malandr", "malária": "malár", "malas": "mal", "malásia": "malás", "malcasadas": "malcas", "malcolm": "malcolm", "malcom": "malcom", "malconduzida": "malconduz", "malconservados": "malconserv", "malcriação": "malcriaçã", "malcriados": "malcri", "malcuidadas": "malcuid", "maldade": "maldad", "maldaner": "maldan", "maldita": "maldit", "malditas": "maldit", "maldosa": "maldos", "maldosos": "maldos", "malefícios": "malefíci", "maléfico": "maléf", "malemo": "malem", "males": "mal", "maleta": "malet", "malfalado": "malfal", "malfeito": "malfeit", "malfeitora": "malfeitor", "malfeitores": "malfeitor", "malgrado": "malgr", "malha": "malh", "malhação": "malhaçã", "malhada": "malh", "malhando": "malh", "malhar": "malh", "malhava": "malh", "malheiros": "malheir", "malícia": "malíc", "malicioso": "malic", "maligna": "malign", "maligno": "malign", "malik": "malik", "malkovich": "malkovich", "mall": "mall", "malle": "mall", "mallmann": "mallmann", "maloney": "maloney", "malpassado": "malpass", "malresolvida": "malresolv", "malsucedido": "malsuced", "malta": "malt", "maltrapilhos": "maltrapilh", "maltratadas": "maltrat", "maltratado": "maltrat", "malu": "malu", "maluca": "maluc", "malucas": "maluc", "maluco": "maluc", "malucos": "maluc", "maluf": "maluf", "maluquice": "maluquic", "maluquinho": "maluquinh", "malvada": "malv", "malvinas": "malvin", "malzoni": "malzon", "mama": "mam", "mamãe": "mamã", "mamão": "mamã", "mamar": "mam", "mamária": "mamár", "mambembe": "mambemb", "mambembes": "mambemb", "mamelucas": "mameluc", "mamelucos": "mameluc", "mammas": "mamm", "mamografia": "mamograf", "mamografias": "mamograf", "mamonas": "mamon", "mamou": "mam", "man": "man", "manager": "manag", "manally": "manally", "manancial": "manancial", "manaus": "manaus", "mancha": "manch", "manchada": "manch", "manchar": "manch", "manchas": "manch", "manchava": "manch", "manchester": "manchest", "manchete": "manchet", "manchetes": "manchet", "manchetou": "manchet", "mancini": "mancin", "manda": "mand", "mandá": "mand", "mandacaru": "mandacaru", "mandada": "mand", "mandado": "mand", "mandados": "mand", "mandam": "mand", "mandamentos": "mandament", "mandamos": "mand", "mandante": "mandant", "mandar": "mand", "mandaram": "mand", "mandarim": "mandarim", "mandarino": "mandarin", "mandatários": "mandatári", "mandato": "mandat", "mandava": "mand", "mandavam": "mand", "mandei": "mand", "mandela": "mandel", "mandem": "mand", "mandioca": "mandioc", "mando": "mand", "mandou": "mand", "mané": "man", "maneira": "maneir", "maneiras": "maneir", "maneiristas": "maneir", "maneiro": "maneir", "manejadas": "manej", "manejo": "manej", "manequim": "manequim", "manequinho": "manequinh", "manete": "manet", "manetes": "manet", "manfredo": "manfred", "manganês": "manganês", "mangas": "mang", "mangueira": "mangueir", "manhã": "manhã", "manhãs": "manhãs", "manhattan": "manhattan", "mania": "man", "manias": "man", "manicômio": "manicômi", "manicure": "manicur", "manifesta": "manifest", "manifestá": "manifest", "manifestação": "manifest", "manifestações": "manifest", "manifestadas": "manifest", "manifestam": "manifest", "manifestando": "manifest", "manifestantes": "manifest", "manifestar": "manifest", "manifestaram": "manifest", "manifestavam": "manifest", "manifesto": "manifest", "manifestos": "manifest", "manifestou": "manifest", "manipulação": "manipul", "manipulações": "manipul", "manipulado": "manipul", "manipulados": "manipul", "manipulam": "manipul", "manipular": "manipul", "manipulava": "manipul", "maniqueísta": "maniqueíst", "manjados": "manj", "manjedoura": "manjedour", "manobra": "manobr", "manobras": "manobr", "manoel": "manoel", "mansa": "mans", "mansão": "mansã", "manso": "mans", "mansoni": "manson", "mansur": "mansur", "manta": "mant", "mantê": "mant", "manteiga": "manteig", "mantém": "mantém", "mantêm": "mantêm", "mantemos": "mant", "mantendo": "mant", "mantenham": "mantenh", "manter": "mant", "manterá": "mant", "manteve": "mantev", "mantida": "mant", "mantidas": "mant", "mantido": "mant", "mantidos": "mant", "mantimento": "mantiment", "mantimentos": "mantiment", "mantinha": "mantinh", "mantivemos": "mantiv", "mantiver": "mantiv", "mantiveram": "mantiv", "mantiverem": "mantiv", "mantivesse": "mantiv", "manto": "mant", "mantos": "mant", "mantovani": "mantovan", "mantras": "mantr", "manuais": "manu", "manual": "manual", "manualmente": "manual", "manuel": "manuel", "manufaturados": "manufatur", "manutenção": "manutençã", "manzano": "manzan", "mao": "mao", "mão": "mã", "maomé": "maom", "mãos": "mã", "mãozinha": "mãozinh", "mapa": "map", "mapas": "map", "mapeadas": "map", "mapeado": "map", "mapeamento": "mapeament", "mapear": "map", "mappin": "mappin", "maquiadas": "maqui", "maquiador": "maquiador", "maquiagem": "maquiag", "maquiagens": "maquiagens", "maquiavel": "maquiavel", "maquiavelismo": "maquiavel", "maquilado": "maquil", "maquiladora": "maquil", "maquilagem": "maquilag", "maquilagens": "maquilagens", "máquina": "máquin", "maquinário": "maquinári", "máquinas": "máquin", "maquiou": "maqui", "mar": "mar", "mara": "mar", "maracanã": "maracanã", "maracanãs": "maracanãs", "maracanãzinho": "maracanãzinh", "maracutaia": "maracuta", "maracutaias": "maracuta", "marais": "mar", "marajá": "maraj", "marakanond": "marakanond", "maranhão": "maranhã", "maranhense": "maranhens", "maranhenses": "maranhens", "maratona": "maraton", "maravilha": "maravilh", "maravilhada": "maravilh", "maravilhas": "maravilh", "maravilhosa": "maravilh", "maravilhosas": "maravilh", "maravilhoso": "maravilh", "maravilhosos": "maravilh", "marca": "marc", "marcá": "marc", "marcação": "marcaçã", "marcada": "marc", "marcadamente": "marcad", "marcadas": "marc", "marcado": "marc", "marcadores": "marcador", "marcados": "marc", "marcante": "marcant", "marcantes": "marcant", "marcantônio": "marcantôni", "marcar": "marc", "marcaram": "marc", "marcas": "marc", "marcava": "marc", "marcel": "marcel", "marcela": "marcel", "marcelino": "marcelin", "marcello": "marcell", "marcelo": "marcel", "marcenaria": "marcen", "marceneiro": "marceneir", "marceneiros": "marceneir", "march": "march", "marcha": "march", "marchand": "marchand", "marchar": "march", "marchas": "march", "marchou": "march", "marcia": "marc", "márcia": "márc", "marciana": "marcian", "marcílio": "marcíli", "marcinho": "marcinh", "marcio": "marci", "márcio": "márci", "marco": "marc", "março": "marc", "marcolino": "marcolin", "marcos": "marc", "marcou": "marc", "maré": "mar", "marechal": "marechal", "mares": "mar", "maresias": "mares", "marfim": "marfim", "margaret": "margaret", "margarete": "margaret", "margem": "marg", "margens": "margens", "marginais": "margin", "marginal": "marginal", "marginalizado": "marginaliz", "marginalizados": "marginaliz", "mari": "mar", "maria": "mar", "mariana": "marian", "mariane": "marian", "mariano": "marian", "marias": "mar", "marido": "mar", "maridos": "mar", "marie": "mari", "mariel": "mariel", "marieta": "mariet", "marighella": "marighell", "marijuana": "marijuan", "marilda": "marild", "marilena": "marilen", "marília": "maríl", "marilyn": "marilyn", "marilza": "marilz", "marimbondos": "marimbond", "marina": "marin", "marinha": "marinh", "marinheiro": "marinheir", "marinheiros": "marinheir", "marinho": "marinh", "marinhos": "marinh", "marini": "marin", "marins": "marins", "mario": "mari", "mário": "mári", "marion": "marion", "marisa": "maris", "marisol": "marisol", "marista": "marist", "marítima": "marítim", "marítimas": "marítim", "marítimo": "marítim", "mariz": "mariz", "marjorie": "marjori", "mark": "mark", "marketeira": "marketeir", "marketing": "marketing", "marks": "marks", "markus": "markus", "marlboro": "marlbor", "marlene": "marlen", "marli": "marl", "marlon": "marlon", "marluce": "marluc", "marmita": "marmit", "marmo": "marm", "mármore": "mármor", "marola": "marol", "marote": "marot", "marquei": "marqu", "marques": "marqu", "marquês": "marquês", "marqueteiro": "marqueteir", "márquez": "márquez", "marquise": "marquis", "marretas": "marret", "marreteiros": "marreteir", "marrey": "marrey", "marrocos": "marroc", "marrom": "marrom", "marselha": "marselh", "marshall": "marshall", "marta": "mart", "marte": "mart", "martelo": "martel", "martelos": "martel", "martelou": "martel", "martha": "marth", "martí": "mart", "martin": "martin", "martina": "martin", "martines": "martin", "martinez": "martinez", "martinho": "martinh", "martini": "martin", "martinn": "martinn", "martino": "martin", "martins": "martins", "mártir": "márt", "mártires": "márt", "martírio": "martíri", "martuza": "martuz", "marujos": "maruj", "marx": "marx", "marxista": "marxist", "mary": "mary", "maryland": "maryland", "marzo": "marz", "mas": "mas", "más": "más", "masagão": "masagã", "masano": "masan", "mascar": "masc", "máscara": "másc", "mascarando": "mascar", "máscaras": "másc", "mascarenhas": "mascarenh", "masculina": "masculin", "masculinas": "masculin", "masculinidade": "masculin", "masculinizado": "masculiniz", "masculino": "masculin", "masculinos": "masculin", "másculo": "máscul", "maseratti": "maseratt", "masina": "masin", "masmorra": "masmorr", "mason": "mason", "masoquista": "masoqu", "masp": "masp", "mass": "mass", "massa": "mass", "massachusetts": "massachusetts", "massacre": "massacr", "massacres": "massacr", "massageado": "massag", "massagem": "massag", "massagens": "massagens", "massagista": "massag", "massaini": "massain", "massanori": "massanor", "massaranduba": "massarandub", "massas": "mass", "massey": "massey", "massificação": "massific", "massini": "massin", "massivo": "massiv", "masson": "masson", "master": "mast", "masterclass": "masterclass", "mastiga": "mastig", "mastologia": "mastolog", "mata": "mat", "matá": "mat", "matado": "mat", "matagal": "matagal", "matam": "mat", "matamoros": "matamor", "matança": "matanc", "matando": "mat", "matandos": "matand", "matar": "mat", "mataram": "mat", "matarazzo": "matarazz", "matarem": "mat", "mataríamos": "mat", "matas": "mat", "matasse": "mat", "matava": "mat", "matavam": "mat", "matemática": "matemát", "matemático": "matemát", "matemáticos": "matemát", "mateo": "mat", "mater": "mat", "máter": "mát", "matéria": "matér", "materiais": "materi", "material": "material", "materialista": "material", "materialização": "materializ", "materializar": "materializ", "materializou": "materializ", "materialmente": "material", "matérias": "matér", "materna": "matern", "maternal": "maternal", "maternidade": "matern", "materno": "matern", "mateus": "mateus", "matheus": "matheus", "matinê": "matin", "matinês": "matinês", "matizes": "matiz", "mato": "mat", "matos": "mat", "matoso": "matos", "matou": "mat", "matriarca": "matriarc", "matrícula": "matrícul", "matriculada": "matricul", "matriculados": "matricul", "matriculando": "matricul", "matricularam": "matricul", "matrimônio": "matrimôni", "matrimônios": "matrimôni", "matrix": "matrix", "matriz": "matriz", "matrizes": "matriz", "mattar": "matt", "matte": "matt", "matteo": "matt", "matthew": "matthew", "matthews": "matthews", "mattoli": "mattol", "mattos": "matt", "maturidade": "matur", "matusalém": "matusalém", "matutar": "matut", "matutino": "matutin", "matuto": "matut", "mau": "mau", "mauá": "mau", "maudsley": "maudsley", "mauri": "maur", "mauricinhos": "mauricinh", "maurício": "mauríci", "maurizio": "maurizi", "mauro": "maur", "maus": "maus", "mausoléu": "mausoléu", "mautner": "mautn", "max": "max", "maxilar": "maxil", "maxima": "maxim", "máxima": "máxim", "máximo": "máxim", "maxixe": "maxix", "mayer": "may", "mayo": "may", "mayrink": "mayrink", "mazda": "mazd", "mazelas": "mazel", "mazindol": "mazindol", "mazzola": "mazzol", "mb": "mb", "mbr": "mbr", "mc": "mc", "mcdean": "mcdean", "mcdonald": "mcdonald", "mcdonnell": "mcdonnell", "mcenroe": "mcenro", "mcgill": "mcgill", "mckinley": "mckinley", "mcleodusa": "mcleodus", "mcmorrow": "mcmorrow", "mct": "mct", "md": "md", "mdb": "mdb", "me": "me", "mea": "mea", "meada": "mead", "meados": "mead", "meb": "meb", "mec": "mec", "meca": "mec", "mecânica": "mecân", "mecânicas": "mecân", "mecanicista": "mecanic", "mecânico": "mecân", "mecânicos": "mecân", "mecanismo": "mecan", "mecanismos": "mecan", "mecanizada": "mecaniz", "mecanizadas": "mecaniz", "mecanizado": "mecaniz", "mecanizar": "mecaniz", "mecas": "mec", "mechas": "mech", "med": "med", "medalhão": "medalhã", "medalhões": "medalhõ", "mede": "med", "medéia": "med", "medeiros": "medeir", "medellín": "medellín", "medem": "med", "média": "méd", "mediação": "mediaçã", "mediados": "medi", "mediam": "med", "mediante": "mediant", "médias": "méd", "médica": "médic", "medicação": "medic", "medicada": "medic", "medicados": "medic", "medicamento": "medic", "medicamentos": "medic", "medicamentosa": "medicament", "medição": "mediçã", "medicar": "medic", "médicas": "médic", "médici": "médic", "medicina": "medicin", "medicinal": "medicinal", "medicinas": "medicin", "médico": "médic", "médicos": "médic", "medida": "med", "medidas": "med", "medido": "med", "medidor": "medidor", "medidores": "medidor", "medievais": "mediev", "medieval": "medieval", "medievo": "mediev", "medimos": "med", "medina": "medin", "médio": "médi", "medíocre": "medíocr", "medíocres": "medíocr", "médios": "médi", "medir": "med", "meditar": "medit", "mediterrânea": "mediterrân", "mediterrâneo": "mediterrân", "mediu": "med", "médium": "médium", "médiuns": "médiuns", "medo": "med", "medonho": "medonh", "medos": "med", "medrosa": "medros", "medula": "medul", "medulares": "medul", "mega": "meg", "megaagência": "megaagent", "megabytes": "megabyt", "megadramáticos": "megadramát", "megaempresa": "megaempres", "megaestrelas": "megaestrel", "megaevento": "megaevent", "megalaboratório": "megalaboratóri", "megale": "megal", "megalômanos": "megalôman", "megamilionária": "megamilionár", "megassucesso": "megassucess", "megastars": "megastars", "megastores": "megastor", "megatendências": "megatendent", "megatons": "megatons", "megawatts": "megawatts", "megera": "meg", "megestat": "megestat", "mehana": "mehan", "meia": "mei", "meias": "mei", "méier": "méi", "meiga": "meig", "meigo": "meig", "meio": "mei", "meios": "mei", "meira": "meir", "meireles": "meirel", "mel": "mel", "meladas": "mel", "melancólico": "melancól", "melão": "melã", "melaré": "melar", "melbourne": "melbourn", "melhor": "melhor", "melhora": "melhor", "melhoradinha": "melhoradinh", "melhorado": "melhor", "melhoram": "melhor", "melhoramentos": "melhor", "melhorando": "melhor", "melhorar": "melhor", "melhoraram": "melhor", "melhoras": "melhor", "melhore": "melhor", "melhores": "melhor", "melhoria": "melhor", "melhorias": "melhor", "melhoro": "melhor", "melhorou": "melhor", "meliá": "meli", "melina": "melin", "melinde": "melind", "melindres": "melindr", "melinger": "meling", "melissa": "meliss", "mellinger": "melling", "mello": "mell", "melo": "mel", "melodia": "melod", "melodias": "melod", "melódica": "melód", "melodrama": "melodram", "melodramático": "melodramát", "melômano": "melôman", "melômanos": "melôman", "melos": "mel", "melosa": "melos", "melvin": "melvin", "melvyn": "melvyn", "member": "memb", "membro": "membr", "membros": "membr", "memê": "mem", "memo": "mem", "memorável": "memor", "memória": "memór", "memorial": "memorial", "memórias": "memór", "memorizam": "memoriz", "men": "men", "menção": "mençã", "mencionado": "mencion", "mencionar": "mencion", "mencionei": "mencion", "mencionou": "mencion", "menconi": "mencon", "mendel": "mendel", "mendes": "mend", "mendicância": "mendic", "mendigo": "mendig", "mendigos": "mendig", "mendonça": "mendonc", "meneghine": "meneghin", "menezes": "menez", "menina": "menin", "meninas": "menin", "meninice": "meninic", "menininha": "menininh", "menininhas": "menininh", "menino": "menin", "meninos": "menin", "menisco": "menisc", "menopausa": "menopaus", "menor": "menor", "menores": "menor", "menos": "men", "mensageiro": "mensageir", "mensageiros": "mensageir", "mensagem": "mensag", "mensagens": "mensagens", "mensais": "mens", "mensal": "mensal", "mensalidade": "mensal", "mensalidades": "mensal", "mensalmente": "mensal", "menstrua": "menstru", "menstruação": "menstruaçã", "menstruações": "menstruaçõ", "menstruada": "menstru", "menstrual": "menstrual", "menstruam": "menstru", "menstruaram": "menstru", "mensurar": "mensur", "menta": "ment", "mentais": "ment", "mental": "mental", "mentalidade": "mental", "mentalização": "mentaliz", "mentalmente": "mental", "mente": "ment", "mentem": "ment", "mentindo": "ment", "mentir": "ment", "mentira": "ment", "mentiram": "ment", "mentiras": "ment", "mentirem": "ment", "mentiria": "ment", "mentirinha": "mentirinh", "mentiroso": "mentir", "mentirosos": "mentir", "mentiu": "ment", "mentor": "mentor", "menu": "menu", "menus": "menus", "mera": "mer", "meramente": "mer", "mercadante": "mercad", "mercado": "merc", "mercadológico": "mercadológ", "mercadores": "mercador", "mercadoria": "mercador", "mercadorias": "mercador", "mercados": "merc", "mercancini": "mercancin", "mercantil": "mercantil", "mercator": "mercator", "mercedão": "mercedã", "mercedes": "merced", "mercenária": "mercenár", "mercenário": "mercenári", "mercenários": "mercenári", "mércio": "mérci", "merck": "merck", "mercosul": "mercosul", "mercury": "mercury", "merece": "merec", "merecedor": "merecedor", "merecem": "merec", "merecendo": "merec", "merecer": "merec", "mereceram": "merec", "mereceu": "merec", "merecia": "merec", "merecido": "merec", "merecimento": "merec", "mereço": "merec", "merege": "mereg", "merenda": "merend", "merengue": "mereng", "mergulha": "mergulh", "mergulhada": "mergulh", "mergulhado": "mergulh", "mergulhador": "mergulh", "mergulhadores": "mergulh", "mergulham": "mergulh", "mergulhando": "mergulh", "mergulhar": "mergulh", "mergulharam": "mergulh", "mergulho": "mergulh", "mergulhos": "mergulh", "mergulhou": "mergulh", "meridien": "meridien", "meriti": "merit", "meritíssimo": "meritíssim", "mérito": "mérit", "meritocracia": "meritocrac", "merlin": "merlin", "merlot": "merlot", "mero": "mer", "meros": "mer", "merrill": "merrill", "mês": "mês", "mesa": "mes", "mesada": "mes", "mesadas": "mes", "mesalinho": "mesalinh", "mesas": "mes", "mesbla": "mesbl", "mescal": "mescal", "mescla": "mescl", "mesclada": "mescl", "mesclado": "mescl", "meses": "mes", "mesinha": "mesinh", "mesma": "mesm", "mesmas": "mesm", "mesmice": "mesmic", "mesmo": "mesm", "mesmos": "mesm", "mesquita": "mesquit", "mesquitas": "mesquit", "messiânico": "messiân", "messianismo": "messian", "messias": "mess", "mestiço": "mestic", "mestiços": "mestic", "mestrado": "mestr", "mestre": "mestr", "mestres": "mestr", "meta": "met", "metabólicas": "metaból", "metabolizar": "metaboliz", "metabologia": "metabolog", "metade": "metad", "metáfora": "metáfor", "metaforicamente": "metafor", "metais": "met", "metal": "metal", "metálico": "metál", "metalizou": "metaliz", "metalurgia": "metalurg", "metalúrgica": "metalúrg", "metamorfose": "metamorfos", "metas": "met", "metástases": "metástas", "metemos": "met", "meteórica": "meteór", "meteorologia": "meteorolog", "meteorológica": "meteorológ", "meteorológicas": "meteorológ", "meter": "met", "meteram": "met", "meteu": "met", "metia": "met", "metiam": "met", "meticulosamente": "meticul", "meticuloso": "meticul", "metida": "met", "metido": "met", "metidos": "met", "métier": "méti", "metódico": "metód", "metodista": "metod", "método": "métod", "metodologia": "metodolog", "metodologias": "metodolog", "métodos": "métod", "metotrexate": "metotrexat", "metragem": "metrag", "metralhado": "metralh", "metralhadora": "metralh", "metralhadoras": "metralh", "métrico": "métric", "metro": "metr", "metrô": "metrô", "metrópole": "metrópol", "metrópoles": "metrópol", "metrópolis": "metrópol", "metropolitan": "metropolitan", "metropolitana": "metropolitan", "metropolitanas": "metropolitan", "metros": "metr", "meu": "meu", "meus": "meus", "mexe": "mex", "mexem": "mex", "mexer": "mex", "mexeria": "mex", "mexericando": "mexeric", "mexeu": "mex", "mexi": "mex", "mexia": "mex", "mexicana": "mexican", "mexicanas": "mexican", "mexicano": "mexican", "mexicanos": "mexican", "méxico": "méxic", "mexirica": "mexir", "meyer": "mey", "mezarobba": "mezarobb", "mezinhas": "mezinh", "mezzo": "mezz", "mg": "mg", "mgm": "mgm", "mhz": "mhz", "mí": "mí", "miami": "miam", "miar": "miar", "micados": "mic", "miçangas": "miçang", "micaram": "mic", "michael": "michael", "michaelicheh": "michaelicheh", "michalski": "michalsk", "michel": "michel", "michelotti": "michelott", "michigan": "michigan", "mick": "mick", "mickey": "mickey", "mico": "mic", "micoses": "micos", "micreiro": "micreir", "micro": "micr", "micróbios": "micróbi", "microcomputador": "microcomput", "microempresário": "microempresári", "microfilme": "microfilm", "microfilmou": "microfilm", "microfone": "microfon", "microondas": "microond", "microônibus": "microônibus", "micros": "micr", "microscópica": "microscóp", "microscopicamente": "microscop", "microscópico": "microscóp", "microscópio": "microscópi", "microsoft": "microsoft", "microsubmarino": "microsubmarin", "microvlar": "microvl", "midas": "mid", "middle": "middl", "middlesbrough": "middlesbrough", "midem": "mid", "mídia": "míd", "mídias": "míd", "mielke": "mielk", "mignon": "mignon", "migrações": "migraçõ", "migrantes": "migrant", "migrar": "migr", "migraram": "migr", "migratório": "migratóri", "migrou": "migr", "miguel": "miguel", "mike": "mik", "mil": "mil", "milagre": "milagr", "milagreiro": "milagreir", "milagres": "milagr", "milagrosa": "milagr", "milagrosas": "milagr", "milagroso": "milagr", "milão": "milã", "milena": "milen", "milenar": "milen", "milenares": "milen", "milene": "milen", "milênio": "milêni", "milênios": "milêni", "milésimo": "milésim", "milésimos": "milés", "milfede": "milfed", "milhão": "milhã", "milharal": "milharal", "milhares": "milh", "milho": "milh", "milhões": "milhõ", "milícias": "milíc", "miligrama": "miligram", "miligramas": "miligram", "milimétricas": "milimétr", "milímetro": "milímetr", "milímetros": "milímetr", "milionária": "milionár", "milionárias": "milionár", "milionário": "milionári", "milionários": "milionári", "militância": "milit", "militante": "milit", "militantes": "milit", "militão": "militã", "militar": "milit", "militaram": "milit", "militares": "milit", "militello": "militell", "militou": "milit", "milken": "milken", "milla": "mill", "miller": "mill", "millet": "millet", "millôr": "millôr", "milton": "milton", "mim": "mim", "mimada": "mim", "mimeografado": "mimeograf", "mimeógrafo": "mimeógraf", "mimética": "mimét", "mimetizadas": "mimetiz", "mímica": "mímic", "mimos": "mim", "min": "min", "mina": "min", "minado": "min", "minaram": "min", "minarelli": "minarell", "minaretes": "minaret", "minas": "min", "mindlin": "mindlin", "mineira": "mineir", "mineirão": "min", "mineirinho": "mineirinh", "mineiro": "mineir", "mineiros": "mineir", "mineração": "miner", "mineradora": "miner", "minerais": "miner", "mineral": "mineral", "minério": "minéri", "minérios": "minéri", "mingaus": "mingaus", "minguado": "mingu", "minguados": "mingu", "minha": "minh", "minhas": "minh", "miniaturas": "miniatur", "miniaturização": "miniaturiz", "miniblusa": "miniblus", "minicenso": "minicens", "minicratera": "minicrat", "minifãs": "minifãs", "mínima": "mínim", "minimalista": "minimal", "minimamente": "minim", "mínimas": "mínim", "minimizam": "minimiz", "minimizar": "minimiz", "mínimo": "mínim", "mínimos": "mín", "minimulher": "minimulh", "minissaia": "minissa", "minissérie": "minisséri", "minisséries": "minisséri", "ministerial": "ministerial", "ministério": "ministéri", "ministérios": "ministéri", "ministras": "ministr", "ministro": "ministr", "ministros": "ministr", "minnesotta": "minnesott", "mino": "min", "minoria": "minor", "minorias": "minor", "minoritária": "minoritár", "minoritário": "minoritári", "minta": "mint", "minúcias": "minúc", "minuciosa": "minuc", "minuciosas": "minuc", "minucioso": "minuc", "minúscula": "minúscul", "minúsculo": "minúscul", "minúsculos": "minúscul", "minuta": "minut", "minuto": "minut", "minutos": "minut", "miocárdio": "miocárdi", "miolo": "miol", "mioma": "miom", "miomas": "miom", "miomatoso": "miomat", "míopes": "míop", "miopia": "miop", "miou": "miou", "mir": "mir", "mira": "mir", "mirabolantes": "mirabol", "miraculosa": "miracul", "mirage": "mirag", "miragem": "mirag", "miramax": "miramax", "miranda": "mirand", "mirani": "miran", "mirante": "mirant", "mircea": "mirc", "miriam": "mir", "míriam": "mír", "mirian": "mirian", "mírian": "mírian", "mirim": "mirim", "miro": "mir", "miron": "miron", "mirrado": "mirr", "miscelânea": "miscelân", "miscigenação": "miscigen", "miseráveis": "miser", "miserável": "miser", "miseravelmente": "miser", "miséria": "misér", "misericórdia": "misericórd", "míseros": "míser", "miss": "miss", "missa": "miss", "missão": "missã", "missas": "miss", "missérie": "misséri", "misses": "miss", "missionária": "missionár", "missionárias": "missionár", "missionário": "missionári", "missionários": "missionári", "mississippi": "mississipp", "missões": "missõ", "mista": "mist", "mistério": "mistéri", "mistérios": "mistéri", "misteriosa": "misteri", "misteriosas": "misteri", "misterioso": "misteri", "mística": "místic", "místico": "místic", "mistificando": "mistific", "misto": "mist", "mistura": "mistur", "misturada": "mistur", "misturadas": "mistur", "misturado": "mistur", "misturados": "mistur", "misturam": "mistur", "misturando": "mistur", "misturar": "mistur", "misturas": "mistur", "misturava": "mistur", "mit": "mit", "mítico": "mític", "mito": "mit", "mitologia": "mitolog", "mitológico": "mitológ", "mitos": "mit", "mitsubishi": "mitsubish", "mitsui": "mitsu", "mitsuo": "mitsu", "mitterrand": "mitterrand", "miúda": "miúd", "miudeza": "miudez", "miudezas": "miudez", "miúdos": "miúd", "mix": "mix", "mixado": "mix", "ml": "ml", "mmx": "mmx", "moacir": "moac", "moagem": "moag", "moares": "moar", "mobiliária": "mobiliár", "mobiliário": "mobiliári", "mobilidade": "mobil", "mobilização": "mobiliz", "mobilizar": "mobiliz", "mobilizou": "mobiliz", "mobral": "mobral", "moça": "moc", "moçambique": "moçambiqu", "moças": "moc", "mocassim": "mocassim", "mochila": "mochil", "mochileiros": "mochileir", "mocidade": "mocidad", "mocinhas": "mocinh", "moço": "moc", "moços": "moc", "mocotó": "mocot", "mod": "mod", "moda": "mod", "modalidade": "modal", "modalidades": "modal", "model": "model", "modelagem": "modelag", "modelar": "model", "modeling": "modeling", "modelista": "model", "modelistas": "model", "modelo": "model", "modelos": "model", "models": "models", "modem": "mod", "modems": "modems", "moderação": "moder", "moderadamente": "moder", "moderadas": "moder", "moderado": "moder", "moderador": "moder", "moderadores": "moder", "moderados": "moder", "moderar": "moder", "moderassem": "moder", "moderini": "moderin", "moderna": "modern", "modernas": "modern", "modernidade": "modern", "modernização": "moderniz", "modernizar": "moderniz", "modernizaram": "moderniz", "moderno": "modern", "modernos": "modern", "modernoso": "modern", "modesta": "modest", "modestamente": "modest", "modestas": "modest", "modestia": "modest", "modéstia": "modést", "modesto": "modest", "modestos": "modest", "modificação": "modific", "modificações": "modific", "modificada": "modific", "modificado": "modific", "modificados": "modific", "modificando": "modific", "modificar": "modific", "modificaram": "modific", "modificaria": "modific", "modificou": "modific", "modinhas": "modinh", "modismo": "modism", "modismos": "modism", "modo": "mod", "modos": "mod", "módulo": "módul", "módulos": "módul", "modus": "modus", "moeda": "moed", "moedas": "moed", "moema": "moem", "moet": "moet", "mogi": "mog", "mogno": "mogn", "mogul": "mogul", "moi": "moi", "moinho": "moinh", "moisés": "moisés", "mojave": "mojav", "mola": "mol", "molas": "mol", "molda": "mold", "moldado": "mold", "moldar": "mold", "molde": "mold", "moldes": "mold", "moldou": "mold", "moldura": "moldur", "mole": "mol", "molecada": "molec", "molecagem": "molecag", "molecagens": "molecagens", "molécula": "molécul", "molecular": "molecul", "moleculares": "molecul", "moléculas": "molécul", "molejo": "molej", "moleque": "molequ", "moleques": "molequ", "molestado": "molest", "moléstia": "molést", "moleza": "molez", "molhada": "molh", "molhava": "molh", "molho": "molh", "molhos": "molh", "molière": "molièr", "molina": "molin", "moluscos": "molusc", "momentânea": "momentân", "momentaneamente": "momentan", "momentâneas": "momentân", "momentâneos": "momentân", "momento": "moment", "momentos": "moment", "momentoso": "moment", "mônaco": "mônac", "monarca": "monarc", "monarquia": "monarqu", "monárquica": "monárqu", "monarquista": "monarqu", "monastério": "monastéri", "monazítica": "monazít", "monday": "monday", "monde": "mond", "monetária": "monetár", "money": "money", "monge": "mong", "monges": "mong", "mongóis": "mongó", "mongol": "mongol", "mongólia": "mongól", "monica": "monic", "mônica": "mônic", "monique": "moniqu", "monitoração": "monitor", "monitorados": "monitor", "monitoramento": "monitor", "monitorar": "monitor", "monitores": "monitor", "moniz": "moniz", "mono": "mon", "monogâmica": "monogâm", "monogâmico": "monogâm", "monogâmicos": "monogâm", "monopólio": "monopóli", "monopólios": "monopóli", "monossódico": "monossód", "monoteístas": "monoteíst", "monotemática": "monotemát", "monotemático": "monotemát", "monótona": "monóton", "monótono": "monóton", "monroe": "monro", "monsenhor": "monsenhor", "monserrat": "monserrat", "monstrengos": "monstreng", "monstro": "monstr", "mont": "mont", "monta": "mont", "montada": "mont", "montadas": "mont", "montado": "mont", "montadora": "montador", "montadoras": "montador", "montados": "mont", "montagem": "montag", "montagens": "montagens", "montam": "mont", "montamos": "mont", "montana": "montan", "montanarini": "montanarin", "montanaro": "montanar", "montando": "mont", "montanha": "montanh", "montanhas": "montanh", "montanheses": "montanhes", "montanhismo": "montanh", "montanhista": "montanh", "montanhosa": "montanh", "montanhoso": "montanh", "montante": "montant", "montão": "montã", "montar": "mont", "montaram": "mont", "montaria": "mont", "montava": "mont", "monte": "mont", "montei": "mont", "monteiro": "monteir", "monteleone": "monteleon", "montellizado": "montelliz", "montello": "montell", "montenegro": "montenegr", "montes": "mont", "montoro": "montor", "montou": "mont", "montreal": "montreal", "monumentais": "monument", "monumental": "monumental", "monumento": "monument", "monumentos": "monument", "monza": "monz", "moon": "moon", "moore": "moor", "mor": "mor", "mora": "mor", "moradia": "morad", "morado": "mor", "morador": "morador", "moradora": "morador", "moradoras": "morador", "moradores": "morador", "moraes": "mora", "morais": "mor", "moral": "moral", "moralidades": "moral", "moralismo": "moral", "moralista": "moral", "moralistas": "moral", "moram": "mor", "moramos": "mor", "morando": "mor", "morar": "mor", "morarmos": "mor", "morato": "morat", "moratória": "moratór", "morava": "mor", "moravam": "mor", "morávamos": "mor", "mordida": "mord", "mordomias": "mordom", "moreau": "moreau", "morei": "mor", "moreira": "moreir", "morena": "moren", "morenas": "moren", "morengueira": "morengueir", "moreno": "moren", "moretto": "morett", "morfeu": "morf", "morfologia": "morfolog", "morfológicas": "morfológ", "morgan": "morgan", "moribunda": "moribund", "moribundo": "moribund", "moritz": "moritz", "moro": "mor", "morou": "mor", "morre": "morr", "morrem": "morr", "morrendo": "morr", "morrer": "morr", "morreram": "morr", "morrerão": "morr", "morreria": "morr", "morreriam": "morr", "morresse": "morr", "morreu": "morr", "morri": "morr", "morria": "morr", "morriam": "morr", "morrido": "morr", "morro": "morr", "morros": "morr", "morrotes": "morrot", "morta": "mort", "mortágua": "mortágu", "mortais": "mort", "mortal": "mortal", "mortalidade": "mortal", "mortalmente": "mortal", "mortas": "mort", "morte": "mort", "morteiros": "morteir", "mortes": "mort", "morto": "mort", "morton": "morton", "mortos": "mort", "morumbi": "morumb", "morumbifashion": "morumbifashion", "mosaico": "mosaic", "moscas": "mosc", "moscatti": "moscatt", "moscou": "mosc", "moskos": "mosk", "mosmorama": "mosmoram", "mosquito": "mosquit", "mosquitos": "mosquit", "mossoró": "mossor", "mostarda": "mostard", "mosteiro": "mosteir", "mosteiros": "mosteir", "mostra": "mostr", "mostrá": "mostr", "mostrado": "mostr", "mostradores": "mostrador", "mostram": "mostr", "mostramos": "mostr", "mostrando": "mostr", "mostrar": "mostr", "mostrara": "mostr", "mostrará": "mostr", "mostraram": "mostr", "mostras": "mostr", "mostrasse": "mostr", "mostrava": "mostr", "mostravam": "mostr", "mostre": "mostr", "mostrei": "mostr", "mostrem": "mostr", "mostro": "mostr", "mostrou": "mostr", "mota": "mot", "motel": "motel", "motins": "motins", "motivação": "motiv", "motivada": "motiv", "motivadas": "motiv", "motivado": "motiv", "motivaram": "motiv", "motivo": "motiv", "motivos": "motiv", "moto": "mot", "motocicleta": "motociclet", "motocross": "motocross", "motor": "motor", "motora": "motor", "motores": "motor", "motorista": "motor", "motoristas": "motor", "motorizados": "motoriz", "motorola": "motorol", "motors": "motors", "motos": "mot", "mott": "mott", "motta": "mott", "moubarak": "moubarak", "moulage": "moulag", "moura": "mour", "mourad": "mourad", "mourão": "mourã", "moureau": "moureau", "mouse": "mous", "moussawer": "moussaw", "mousson": "mousson", "móveis": "móv", "móvel": "móvel", "movem": "mov", "movement": "movement", "movendo": "mov", "mover": "mov", "moveram": "mov", "moveu": "mov", "movida": "mov", "movido": "mov", "movidos": "mov", "movimenta": "moviment", "movimentação": "moviment", "movimentada": "moviment", "movimentadas": "moviment", "movimentados": "moviment", "movimentam": "moviment", "movimentar": "moviment", "movimentava": "moviment", "movimento": "moviment", "movimentos": "moviment", "movimentou": "moviment", "mozart": "mozart", "mozine": "mozin", "mpb": "mpb", "mpla": "mpla", "mpm": "mpm", "mr": "mr", "mrk": "mrk", "ms": "ms", "mst": "mst", "mt": "mt", "mtv": "mtv", "múcio": "múci", "mucosa": "mucos", "muçulmana": "muçulman", "muçulmano": "muçulman", "muçulmanos": "muçulman", "muda": "mud", "mudá": "mud", "mudada": "mud", "mudadas": "mud", "mudado": "mud", "mudamos": "mud", "mudança": "mudanc", "mudanças": "mudanc", "mudando": "mud", "mudar": "mud", "mudara": "mud", "mudará": "mud", "mudaram": "mud", "mudaria": "mud", "mude": "mud", "mudei": "mud", "mudez": "mudez", "mudo": "mud", "mudos": "mud", "mudou": "mud", "muggiati": "muggiat", "muita": "muit", "muitas": "muit", "muito": "muit", "muitos": "muit", "mujalli": "mujall", "mula": "mul", "mulas": "mul", "mulata": "mulat", "mulatas": "mulat", "mulatice": "mulatic", "mulatinho": "mulatinh", "mulato": "mulat", "mulatos": "mulat", "mulatti": "mulatt", "muletas": "mulet", "mulher": "mulh", "mulherada": "mulher", "mulherão": "mulh", "mulherengo": "mulhereng", "mulheres": "mulh", "muller": "mull", "müller": "müller", "multa": "mult", "multá": "mult", "multados": "mult", "multam": "mult", "multar": "mult", "multas": "mult", "multicolorida": "multicolor", "multidão": "multidã", "multidisciplinar": "multidisciplin", "multidões": "multidõ", "multimídia": "multimíd", "multimilionário": "multimilionári", "multinacionais": "multinacion", "multinacional": "multinacional", "múltipla": "múltipl", "múltiplas": "múltipl", "multiplica": "multipl", "multiplicação": "multiplic", "multiplicado": "multiplic", "multiplicam": "multiplic", "multiplicar": "multiplic", "multiplicaram": "multiplic", "multiplicou": "multiplic", "múltiplo": "múltipl", "mundana": "mundan", "múndi": "múnd", "mundiais": "mundi", "mundial": "mundial", "mundialmente": "mundial", "mundista": "mundist", "mundo": "mund", "mundos": "mund", "munhoz": "munhoz", "munição": "muniçã", "municiemos": "munic", "municipais": "municip", "municipal": "municipal", "municipalização": "municipaliz", "município": "municípi", "municípios": "municípi", "munidas": "mun", "munique": "muniqu", "muniz": "muniz", "munno": "munn", "murad": "murad", "muralha": "muralh", "muralhas": "muralh", "murcha": "murch", "murcho": "murch", "murilo": "muril", "muro": "mur", "murro": "murr", "mururoa": "mururo", "musa": "mus", "musas": "mus", "musculação": "muscul", "muscular": "muscul", "musculares": "muscul", "musculatura": "musculatur", "músculo": "múscul", "músculos": "múscul", "musculoso": "muscul", "musculosos": "muscul", "musée": "musé", "museu": "mus", "museum": "museum", "museus": "museus", "musgo": "musg", "music": "music", "música": "músic", "musicais": "music", "musical": "musical", "músicas": "músic", "músico": "músic", "músicos": "músic", "musotto": "musott", "musseline": "musselin", "must": "must", "mustafa": "mustaf", "muster": "must", "mutação": "mutaçã", "mutações": "mutaçõ", "mutado": "mut", "mutante": "mutant", "mutilados": "mutil", "mutretas": "mutret", "mutuamente": "mutu", "mutuários": "mutuári", "mútuo": "mútu", "muy": "muy", "muylaert": "muylaert", "muyupampa": "muyupamp", "mx": "mx", "my": "my", "mylles": "mylles", "mystéres": "mystér", "n": "n", "na": "na", "nababesco": "nababesc", "nabil": "nabil", "nabo": "nab", "nabor": "nabor", "nabos": "nab", "nabuco": "nabuc", "nação": "naçã", "nachtergaele": "nachtergael", "nacionais": "nacion", "nacional": "nacional", "nacionalidade": "nacional", "nacionalismo": "nacional", "nacionalista": "nacional", "nacionalistas": "nacional", "nacionalmente": "nacional", "nações": "naçõ", "nada": "nad", "nadando": "nad", "nadar": "nad", "nádegas": "nádeg", "nadja": "nadj", "nador": "nador", "nadotti": "nadott", "nadou": "nad", "nafta": "naft", "nagasaki": "nagasak", "nagato": "nagat", "nagesh": "nagesh", "nagô": "nagô", "nahuel": "nahuel", "nahum": "nahum", "naief": "naief", "náilon": "náilon", "naipe": "naip", "naira": "nair", "nairo": "nair", "nakao": "naka", "nalbert": "nalbert", "nalina": "nalin", "namora": "namor", "namorá": "namor", "namorada": "namor", "namoradas": "namor", "namoradinhos": "namoradinh", "namorado": "namor", "namorador": "namor", "namorados": "namor", "namoramos": "namor", "namorando": "namor", "namorar": "namor", "namoraram": "namor", "namorava": "namor", "namoravam": "namor", "namorei": "namor", "namoro": "namor", "namoros": "namor", "namorou": "namor", "nan": "nan", "nana": "nan", "nãnã": "nãnã", "nancy": "nancy", "nanda": "nand", "nanini": "nanin", "nanquim": "nanquim", "nanterre": "nanterr", "não": "nã", "naomi": "naom", "nãos": "nã", "napoleão": "napoleã", "napoleônicas": "napoleôn", "naquela": "naquel", "naquelas": "naquel", "naquele": "naquel", "naqueles": "naquel", "naquilo": "naquil", "narcisismo": "narcis", "narcisista": "narcis", "narciso": "narcis", "narcos": "narc", "narcóticos": "narcót", "narcotraficantes": "narcotrafic", "narcotráfico": "narcotráf", "nardeli": "nardel", "narguilés": "narguilés", "narigudo": "narigud", "nariz": "nariz", "narra": "narr", "narrador": "narrador", "narradores": "narrador", "narrativa": "narrat", "narvaes": "narva", "nas": "nas", "nasa": "nas", "nasais": "nas", "nasal": "nasal", "nasce": "nasc", "nascem": "nasc", "nascer": "nasc", "nascera": "nasc", "nasceram": "nasc", "nasceu": "nasc", "nasci": "nasc", "nascia": "nasc", "nascida": "nasc", "nascidas": "nasc", "nascido": "nasc", "nascidos": "nasc", "nascimento": "nasciment", "nasr": "nasr", "nasser": "nass", "nastassia": "nastass", "nata": "nat", "natação": "nataçã", "natal": "natal", "natália": "natál", "natalina": "natalin", "natalino": "natalin", "natanson": "natanson", "natário": "natári", "natasha": "natash", "nation": "nation", "national": "national", "nations": "nations", "nativa": "nativ", "nativas": "nativ", "nativo": "nativ", "nativos": "nativ", "nato": "nat", "natura": "natur", "naturais": "natur", "natural": "natural", "naturalidade": "natural", "naturalismo": "natural", "naturalista": "natural", "naturalistas": "natural", "naturalmente": "natural", "nature": "natur", "natureza": "natur", "naturezas": "natur", "nau": "nau", "naufrágio": "naufrági", "naufrágios": "naufrági", "naufragou": "naufrag", "naus": "naus", "náuseas": "náus", "náutica": "náutic", "náutico": "náutic", "náuticos": "náutic", "navais": "nav", "naval": "naval", "navalha": "navalh", "nave": "nav", "navega": "naveg", "navegação": "naveg", "navegações": "naveg", "navegador": "naveg", "navegadores": "naveg", "navegando": "naveg", "navegante": "naveg", "navegantes": "naveg", "navegar": "naveg", "navegáveis": "naveg", "naves": "nav", "navigation": "navigation", "navigator": "navigator", "navio": "navi", "navios": "navi", "navratilova": "navratilov", "nazar": "naz", "nazaré": "nazar", "nazareno": "nazaren", "nazareth": "nazareth", "nazismo": "nazism", "nazista": "nazist", "nba": "nba", "ncia": "nci", "né": "né", "neal": "neal", "neblina": "neblin", "nebulizador": "nebuliz", "nebulosa": "nebul", "nebuloso": "nebul", "necessaire": "necessair", "necessária": "necessár", "necessariamente": "necessari", "necessáriamente": "necessári", "necessárias": "necessár", "necessário": "necessári", "necessários": "necessári", "necessidade": "necess", "necessidades": "necess", "necessita": "necessit", "necessitadas": "necessit", "necessitam": "necessit", "necessitamos": "necessit", "necessitar": "necessit", "necessitará": "necessit", "necessitavam": "necessit", "necrófilos": "necrófil", "necropsia": "necrops", "necrose": "necros", "nector": "nector", "nefasta": "nefast", "nefasto": "nefast", "nefrologia": "nefrolog", "nefrologista": "nefrolog", "nega": "neg", "negação": "negaçã", "negada": "neg", "negado": "neg", "negados": "neg", "negam": "neg", "negar": "neg", "negasse": "neg", "negativa": "negat", "negativas": "negat", "negativismo": "negativ", "negativo": "negat", "negativos": "negat", "negava": "neg", "negligência": "negligent", "negligências": "negligent", "nego": "neg", "negó": "neg", "negocia": "negoc", "negociá": "negoci", "negociação": "negoc", "negociações": "negoc", "negociada": "negoc", "negociadas": "negoc", "negociado": "negoc", "negociados": "negoc", "negociam": "negoc", "negociamos": "negoc", "negociando": "negoc", "negociantes": "negoc", "negociar": "negoc", "negociatas": "negociat", "negociava": "negoc", "negócio": "negóci", "negócios": "negóci", "negociou": "negoc", "negona": "negon", "negou": "neg", "negra": "negr", "negrão": "negrã", "negras": "negr", "negrinhos": "negrinh", "negrini": "negrin", "negritude": "negritud", "negro": "negr", "negrona": "negron", "negros": "negr", "negue": "neg", "neguei": "negu", "neguem": "negu", "neide": "neid", "neidinha": "neidinh", "neiva": "neiv", "nela": "nel", "nelas": "nel", "nele": "nel", "neles": "nel", "nelio": "neli", "nelson": "nelson", "nélson": "nélson", "nem": "nem", "nenê": "nen", "nenhum": "nenhum", "nenhuma": "nenhum", "neo": "neo", "neoclássicos": "neocláss", "neoliberal": "neoliberal", "neoludita": "neoludit", "neonatologista": "neonatolog", "neopentecostais": "neopentecost", "neosaldina": "neosaldin", "nepad": "nepad", "nepal": "nepal", "nepomuceno": "nepomucen", "nervo": "nerv", "nervos": "nerv", "nervosa": "nervos", "nervosas": "nervos", "nervosismo": "nervos", "nervoso": "nervos", "nervosos": "nervos", "nessa": "ness", "nessas": "ness", "nesse": "ness", "nesses": "ness", "nesta": "nest", "nestas": "nest", "neste": "nest", "nestes": "nest", "nestlé": "nestl", "nestlehner": "nestlehn", "nestor": "nestor", "neszlinger": "neszling", "net": "net", "neta": "net", "netas": "net", "netfones": "netfon", "netinho": "netinh", "netmeeting": "netmeeting", "neto": "net", "netos": "net", "netscape": "netscap", "netspeak": "netspeak", "netto": "nett", "network": "network", "netz": "netz", "neuber": "neub", "neurocientista": "neurocient", "neurocirurgia": "neurocirurg", "neurocirurgião": "neurocirurgiã", "neurocirurgiões": "neurocirurgiõ", "neurofisiologistas": "neurofisiolog", "neurologia": "neurolog", "neurológicos": "neurológ", "neurologista": "neurolog", "neurologistas": "neurolog", "neuromotor": "neuromotor", "neuronal": "neuronal", "neurônios": "neurôni", "neuropediatra": "neuropediatr", "neuropeptidey": "neuropeptidey", "neuropsicologia": "neuropsicolog", "neurose": "neuros", "neuroses": "neuros", "neurotransmissor": "neurotransmissor", "neurotransmissores": "neurotransmissor", "neusa": "neus", "neutra": "neutr", "neutrino": "neutrin", "neutro": "neutr", "neuza": "neuz", "nevada": "nev", "nevado": "nev", "neve": "nev", "neves": "nev", "neville": "nevill", "névoa": "névo", "nevrálgico": "nevrálg", "new": "new", "newark": "newark", "newcastle": "newcastl", "newsweek": "newsweek", "newton": "newton", "ney": "ney", "ng": "ng", "nhenhenhém": "nhenhenhém", "nicarágua": "nicarágu", "nice": "nic", "nicioli": "niciol", "nickname": "nicknam", "nicolau": "nicolau", "nicotina": "nicotin", "nielsen": "nielsen", "niemeyer": "niemey", "nifutimox": "nifutimox", "nigel": "nigel", "niger": "nig", "nigéria": "nigér", "nigeriano": "nigerian", "night": "night", "niguém": "niguém", "nih": "nih", "nihil": "nihil", "nike": "nik", "nikita": "nikit", "nilópolis": "nilópol", "nilson": "nilson", "nilta": "nilt", "nilton": "nilton", "nilvo": "nilv", "nina": "nin", "ninfetas": "ninfet", "ninfomania": "ninfoman", "ninguém": "ninguém", "ninharia": "ninh", "ninho": "ninh", "nino": "nin", "nio": "nio", "nipônica": "nipôn", "níqueis": "níqu", "níquel": "níquel", "niquini": "niquin", "nirvana": "nirvan", "nisei": "nis", "nissan": "nissan", "nisso": "niss", "niterói": "niteró", "nítida": "nít", "nítidas": "nít", "nítido": "nít", "nitrito": "nitrit", "nitritos": "nitrit", "nitrocelulose": "nitrocelulos", "nitrogênio": "nitrogêni", "nitroglicerina": "nitroglicerin", "nitropenta": "nitropent", "nivaldo": "nivald", "níveis": "nív", "nível": "nível", "nivela": "nivel", "nivelados": "nivel", "nixon": "nixon", "nizan": "nizan", "nlm": "nlm", "no": "no", "nó": "nó", "nobel": "nobel", "noble": "nobl", "nobre": "nobr", "nóbrega": "nóbreg", "nobres": "nobr", "nobreza": "nobrez", "noção": "noçã", "nocaute": "nocaut", "nocauteado": "nocaut", "nocauteou": "nocaut", "nociva": "nociv", "nocivas": "nociv", "noções": "noçõ", "nódulo": "nódul", "nódulos": "nódul", "noel": "noel", "noemia": "noem", "noêmia": "noêm", "nogueira": "nogueir", "noir": "noir", "noitadas": "noit", "noite": "noit", "noites": "noit", "noiva": "noiv", "noivado": "noiv", "noivas": "noiv", "noivo": "noiv", "nojo": "noj", "nolli": "noll", "nom": "nom", "nômade": "nômad", "nome": "nom", "nomeação": "nomeaçã", "nomeações": "nomeaçõ", "nomeado": "nom", "nomeados": "nom", "nomear": "nom", "nomeasse": "nom", "nomeou": "nom", "nomes": "nom", "nominais": "nomin", "nominal": "nominal", "nominalmente": "nominal", "nonsense": "nonsens", "nora": "nor", "noradrenalina": "noradrenalin", "noras": "nor", "norberto": "norbert", "nordeste": "nord", "nordestina": "nordestin", "nordestinas": "nordestin", "nordestino": "nordestin", "nordestinos": "nordestin", "norma": "norm", "normais": "norm", "normal": "normal", "normalidade": "normal", "normalíssima": "normalíssim", "normalmente": "normal", "norman": "norman", "normas": "norm", "normatiza": "normatiz", "norodom": "norodom", "noroeste": "noro", "noronha": "noronh", "norte": "nort", "northwestern": "northwestern", "noruega": "norueg", "nos": "nos", "nós": "nós", "nossa": "noss", "nossas": "noss", "nosso": "noss", "nossos": "noss", "nostalgia": "nostalg", "nostálgico": "nostálg", "nostradamus": "nostradamus", "nota": "not", "notabilizou": "notabiliz", "notada": "not", "notados": "not", "notamos": "not", "notar": "not", "notaram": "not", "notarão": "not", "notarem": "not", "notarial": "notarial", "notas": "not", "notáveis": "not", "notável": "notável", "note": "not", "notebook": "notebook", "notei": "not", "notícia": "notíc", "noticiada": "notic", "noticiar": "notic", "noticiário": "noticiári", "notícias": "notíc", "notificados": "notific", "notoriedade": "notoriedad", "notório": "notóri", "notou": "not", "nottingham": "nottingh", "noturna": "noturn", "noturnas": "noturn", "noturno": "noturn", "noturnos": "noturn", "noutra": "noutr", "noutro": "noutr", "nouveau": "nouveau", "nova": "nov", "novaes": "nova", "novais": "nov", "noval": "noval", "novalgina": "novalgin", "novalogic": "novalogic", "novamente": "nov", "novas": "nov", "novatas": "novat", "novato": "novat", "novatos": "novat", "novcar": "novc", "nove": "nov", "novel": "novel", "novela": "novel", "novelas": "novel", "novelinha": "novelinh", "novély": "novély", "novembro": "novembr", "novenas": "noven", "noventa": "novent", "novidade": "novidad", "novidadeiros": "novidadeir", "novidades": "novidad", "novinha": "novinh", "novinho": "novinh", "novo": "nov", "novos": "nov", "noz": "noz", "nozawa": "nozaw", "nra": "nra", "ntt": "ntt", "nu": "nu", "nua": "nua", "núbia": "núb", "nublado": "nubl", "nuclear": "nucl", "nucleares": "nucl", "núcleo": "núcl", "núcleos": "núcl", "nudez": "nudez", "nuestro": "nuestr", "nulidade": "nulidad", "nulidades": "nulidad", "nulo": "nul", "nulos": "nul", "num": "num", "numa": "num", "number": "numb", "numeradas": "numer", "numerais": "numer", "numerário": "numerári", "numérica": "numér", "numericamente": "numer", "número": "númer", "numeróloga": "numerólog", "números": "númer", "numerosa": "numer", "numerosas": "numer", "numerosos": "numer", "nunca": "nunc", "nunes": "nun", "nuo": "nuo", "nurse": "nurs", "nutecnet": "nutecnet", "nutre": "nutr", "nutrem": "nutr", "nutrição": "nutriçã", "nutricionista": "nutricion", "nutrientes": "nutrient", "nutrindo": "nutr", "nutrir": "nutr", "nutritivas": "nutrit", "nuvem": "nuv", "nuvens": "nuvens", "ny": "ny", "o": "o", "ó": "ó", "oab": "oab", "oásis": "oás", "obá": "obá", "obaluaê": "obalua", "obcecado": "obcec", "obcecados": "obcec", "obedece": "obedec", "obedecem": "obedec", "obedecendo": "obedec", "obedecer": "obedec", "obedeceram": "obedec", "obedeciam": "obedec", "obedecidos": "obedec", "obesa": "obes", "obesas": "obes", "obesidade": "obes", "obeso": "obes", "obesos": "obes", "objeção": "objeçã", "objetar": "objet", "objetiva": "objet", "objetivas": "objet", "objetivo": "objet", "objetivos": "objet", "objeto": "objet", "objetos": "objet", "oblíquos": "oblíqu", "óbolo": "óbol", "obra": "obra", "obras": "obras", "obriga": "obrig", "obrigação": "obrig", "obrigações": "obrig", "obrigada": "obrig", "obrigadas": "obrig", "obrigado": "obrig", "obrigados": "obrig", "obrigam": "obrig", "obrigando": "obrig", "obrigar": "obrig", "obrigaram": "obrig", "obrigatória": "obrigatór", "obrigatoriamente": "obrigatori", "obrigatório": "obrigatóri", "obrigatórios": "obrigatóri", "obrigava": "obrig", "obrigo": "obrig", "obrigou": "obrig", "obscurecem": "obscurec", "obscuro": "obscur", "observa": "observ", "observação": "observ", "observações": "observ", "observado": "observ", "observam": "observ", "observando": "observ", "observar": "observ", "observaríamos": "observ", "observatório": "observatóri", "observavam": "observ", "observável": "observ", "observe": "observ", "observer": "observ", "observo": "observ", "observou": "observ", "obsessão": "obsessã", "obsessiva": "obsess", "obsessivamente": "obsess", "obsessivo": "obsess", "obsessões": "obsessõ", "obsolesc": "obsolesc", "obsolescência": "obsolescent", "obsoleto": "obsolet", "obstáculo": "obstácul", "obstáculos": "obstácul", "obstat": "obstat", "obstetra": "obstetr", "obstetrícia": "obstetríc", "obstinada": "obstin", "obstinado": "obstin", "obstinados": "obstin", "obstrui": "obstru", "obstruída": "obstruíd", "obstruindo": "obstru", "obtê": "obtê", "obtém": "obtém", "obtêm": "obtêm", "obtenção": "obtençã", "obtenha": "obtenh", "obter": "obter", "obteve": "obtev", "obtida": "obtid", "obtidas": "obtid", "obtido": "obtid", "obtidos": "obtid", "obtive": "obtiv", "obtiveram": "obtiv", "óbvia": "óbvi", "obviamente": "obvi", "óbvias": "óbvi", "óbvio": "óbvi", "óbvios": "óbvi", "oc": "oc", "oca": "oca", "ocas": "ocas", "ocasião": "ocasiã", "ocasiões": "ocasiõ", "ocasional": "ocasional", "ocasionalmente": "ocasional", "occipitais": "occipit", "occipital": "occipital", "oceania": "ocean", "oceano": "ocean", "oceanografia": "oceanograf", "oceanos": "ocean", "ocidentais": "ocident", "ocidental": "ocidental", "ocidentalizado": "ocidentaliz", "ocidentalizados": "ocidentaliz", "ocidente": "ocident", "ocimar": "ocim", "ociosas": "ocios", "ocioso": "ocios", "ociosos": "ocios", "oco": "oco", "ocorra": "ocorr", "ocorre": "ocorr", "ocorrem": "ocorr", "ocorrência": "ocorrent", "ocorrências": "ocorrent", "ocorrendo": "ocorr", "ocorrer": "ocorr", "ocorrerá": "ocorr", "ocorreram": "ocorr", "ocorrerão": "ocorr", "ocorreria": "ocorr", "ocorreriam": "ocorr", "ocorreu": "ocorr", "ocorria": "ocorr", "ocorriam": "ocorr", "ocorrida": "ocorr", "ocorridas": "ocorr", "ocorrido": "ocorr", "ocorridos": "ocorr", "ocos": "ocos", "octacílio": "octacíli", "octavio": "octavi", "octávio": "octávi", "octubre": "octubr", "ocular": "ocul", "óculos": "ócul", "oculta": "ocult", "ocupa": "ocup", "ocupá": "ocup", "ocupação": "ocup", "ocupacional": "ocupacional", "ocupações": "ocup", "ocupada": "ocup", "ocupadas": "ocup", "ocupado": "ocup", "ocupados": "ocup", "ocupam": "ocup", "ocupando": "ocup", "ocupante": "ocup", "ocupantes": "ocup", "ocupar": "ocup", "ocupava": "ocup", "ocupavam": "ocup", "ocupou": "ocup", "odacir": "odac", "odair": "oda", "odalisca": "odalisc", "odaliscas": "odalisc", "ode": "ode", "odebrecht": "odebrecht", "odeia": "ode", "odeiam": "ode", "odeio": "odei", "odeon": "odeon", "odete": "odet", "odiá": "odi", "odilon": "odilon", "ódio": "ódi", "ódios": "ódi", "odisséia": "odiss", "odontológica": "odontológ", "odontológicos": "odontológ", "odor": "odor", "odyr": "odyr", "oeste": "oest", "of": "of", "ofendida": "ofend", "ofendido": "ofend", "ofensa": "ofens", "ofensas": "ofens", "ofensiva": "ofens", "ofensivas": "ofens", "ofensivo": "ofens", "ofereça": "oferec", "oferece": "oferec", "oferecem": "oferec", "oferecemos": "oferec", "oferecendo": "oferec", "oferecer": "oferec", "ofereceram": "oferec", "ofereceu": "oferec", "oferecia": "oferec", "oferecida": "oferec", "oferecido": "oferec", "oferecidos": "oferec", "oferecimento": "oferec", "oferenda": "oferend", "oferendas": "oferend", "oferta": "ofert", "ofertante": "ofert", "ofertar": "ofert", "ofertas": "ofert", "off": "off", "office": "offic", "officer": "offic", "offs": "offs", "oficiais": "ofic", "oficial": "oficial", "oficialmente": "oficial", "oficina": "oficin", "oficinas": "oficin", "ofício": "ofíci", "oftalmológicos": "oftalmológ", "ofusca": "ofusc", "ofuscou": "ofusc", "ogum": "ogum", "ogun": "ogun", "oh": "oh", "ohana": "ohan", "oi": "oi", "oiac": "oiac", "oiapoque": "oiapoqu", "oic": "oic", "oinegue": "oineg", "oit": "oit", "oitava": "oit", "oitavo": "oitav", "oitenta": "oitent", "oito": "oit", "ok": "ok", "okamoto": "okamot", "okky": "okky", "oklon": "oklon", "olacyr": "olacyr", "olávio": "olávi", "olavo": "olav", "olbers": "olbers", "old": "old", "olé": "olé", "olê": "olê", "óleo": "óle", "óleos": "óle", "oleosas": "oleos", "olga": "olga", "olha": "olha", "olhá": "olhá", "olhada": "olhad", "olhadinha": "olhadinh", "olhado": "olhad", "olham": "olham", "olhando": "olhand", "olhar": "olhar", "olharam": "olhar", "olhares": "olhar", "olhasse": "olhass", "olhava": "olhav", "olhe": "olhe", "olheiras": "olheir", "olhem": "olhem", "olho": "olho", "olhos": "olhos", "olhou": "olhou", "oligarquias": "oligarqu", "olimpíada": "olimpí", "olimpíadas": "olimpí", "olímpico": "olímp", "olinda": "olind", "oliva": "oliv", "oliveira": "oliveir", "oliveiras": "oliveir", "oliver": "oliv", "olivetto": "olivett", "olivia": "oliv", "olívia": "olív", "olney": "olney", "olodum": "olodum", "olooogunede": "oloooguned", "oluô": "oluô", "omar": "omar", "ombro": "ombro", "ombros": "ombros", "omega": "omeg", "omissão": "omissã", "omissos": "omiss", "omite": "omit", "omitido": "omit", "omolu": "omolu", "omoplatas": "omoplat", "oms": "oms", "on": "on", "onaga": "onag", "onanistas": "onan", "onassis": "onass", "onça": "onça", "oncolink": "oncolink", "oncologista": "oncolog", "oncologistas": "oncolog", "onda": "onda", "ondas": "ondas", "onde": "onde", "ondetti": "ondett", "ondina": "ondin", "ondulações": "ondul", "ondulado": "ondul", "one": "one", "onézimo": "onézim", "ong": "ong", "ongs": "ongs", "ônibus": "ônibus", "onipotência": "onipotent", "onipresença": "onipresenc", "onipresente": "onipresent", "online": "onlin", "ono": "ono", "onofre": "onofr", "ontem": "ontem", "onu": "onu", "ônus": "ônus", "onze": "onze", "ôôiii": "ôôiii", "opala": "opal", "opç": "opc", "opção": "opçã", "opcionais": "opcion", "opções": "opçõ", "opera": "oper", "ópera": "óper", "operá": "oper", "operação": "oper", "operacionais": "operacion", "operacional": "operacional", "operações": "oper", "operada": "oper", "operado": "oper", "operador": "oper", "operadores": "oper", "operados": "oper", "operam": "oper", "operamos": "oper", "operandi": "operand", "operando": "oper", "operar": "oper", "operaram": "oper", "operarem": "oper", "operária": "operár", "operário": "operári", "operários": "operári", "óperas": "óper", "operatórias": "operatór", "operatório": "operatóri", "operava": "oper", "operosa": "oper", "opina": "opin", "opinar": "opin", "opinião": "opiniã", "opiniões": "opiniõ", "ópio": "ópi", "opô": "opô", "opõe": "opõ", "opõem": "opõ", "oponente": "oponent", "opor": "opor", "oportunidade": "oportun", "oportunidades": "oportun", "oportunismo": "oportun", "oportunistas": "oportun", "oportuno": "oportun", "oposição": "oposiçã", "oposicionistas": "oposicion", "oposições": "oposiçõ", "opositores": "opositor", "oposta": "opost", "opostas": "opost", "oposto": "opost", "opostos": "opost", "opportunity": "opportunity", "opressão": "opressã", "opressora": "opressor", "oprime": "oprim", "oprimidos": "oprim", "ops": "ops", "opta": "opta", "optalidon": "optalidon", "optamos": "optam", "optar": "optar", "optaram": "optar", "optarem": "optar", "optariam": "optar", "optasse": "optass", "optei": "opte", "optou": "optou", "ora": "ora", "oração": "oraçã", "orações": "oraçõ", "oráculo": "orácul", "oráculos": "orácul", "oral": "oral", "orange": "orang", "oratórios": "oratóri", "órbita": "órbit", "orbital": "orbital", "orca": "orca", "orçados": "orçad", "orçamentária": "orçamentár", "orçamento": "orçament", "orçamentos": "orçament", "ordeiro": "ordeir", "ordem": "ordem", "ordena": "orden", "ordená": "orden", "ordenado": "orden", "ordenando": "orden", "ordenar": "orden", "ordenaram": "orden", "ordenhar": "ordenh", "ordenou": "orden", "ordens": "ordens", "ordinárias": "ordinár", "oréal": "oréal", "orelha": "orelh", "orestes": "orest", "orfanato": "orfanat", "órfão": "órfã", "órfãos": "órfã", "org": "org", "orgânica": "orgân", "orgânicas": "orgân", "orgânico": "orgân", "organismo": "organ", "organismos": "organ", "organiza": "organiz", "organização": "organiz", "organizações": "organiz", "organizada": "organiz", "organizadas": "organiz", "organizado": "organiz", "organizadores": "organiz", "organizados": "organiz", "organizam": "organiz", "organizando": "organiz", "organizar": "organiz", "organizará": "organiz", "organizaram": "organiz", "organizava": "organiz", "organizavam": "organiz", "organizou": "organiz", "organograma": "organogram", "órgão": "órgã", "órgãos": "órgã", "orgasmo": "orgasm", "orgias": "orgi", "orgulha": "orgulh", "orgulham": "orgulh", "orgulhar": "orgulh", "orgulharem": "orgulh", "orgulho": "orgulh", "orgulhos": "orgulh", "orgulhosa": "orgulh", "orgulhoso": "orgulh", "orgulhosos": "orgulh", "orient": "orient", "orienta": "orient", "orientação": "orient", "orientações": "orient", "orientada": "orient", "orientadas": "orient", "orientadora": "orient", "orientadores": "orient", "orientados": "orient", "orientais": "orient", "oriental": "oriental", "orientam": "orient", "orientamos": "orient", "orientar": "orient", "oriente": "orient", "orientou": "orient", "origem": "orig", "origens": "origens", "origin": "origin", "originada": "origin", "originais": "origin", "original": "original", "originalidade": "original", "originalmente": "original", "originaram": "origin", "originárias": "originár", "originário": "originári", "originários": "originári", "originou": "origin", "oriunda": "oriund", "orixá": "orix", "orixalá": "orixal", "orixás": "orixás", "orla": "orla", "orlando": "orland", "orlistat": "orlistat", "orly": "orly", "ornamentadas": "ornament", "ornelas": "ornel", "orobó": "orob", "orozco": "orozc", "orquestra": "orquestr", "orquestrada": "orquestr", "orquestradores": "orquestr", "orquestras": "orquestr", "orquestrava": "orquestr", "orson": "orson", "ortec": "ortec", "orth": "orth", "orto": "orto", "ortodoxa": "ortodox", "ortodoxas": "ortodox", "ortodoxo": "ortodox", "ortodoxos": "ortodox", "ortomolecular": "ortomolecul", "ortopédicas": "ortopéd", "ortopédicos": "ortopéd", "ortopedista": "ortoped", "ortopedistas": "ortoped", "ortostática": "ortostát", "orunmila": "orunmil", "orwell": "orwell", "orwelliano": "orwellian", "os": "os", "osaka": "osak", "osborn": "osborn", "oscar": "oscar", "oscarito": "oscarit", "oscila": "oscil", "oscilação": "oscil", "oscilam": "oscil", "oscilava": "oscil", "oscilavam": "oscil", "osinaca": "osinac", "osmar": "osmar", "osonho": "osonh", "ossada": "ossad", "óssea": "ósse", "ósseas": "ósse", "ósseo": "ósse", "ossificação": "ossific", "osso": "osso", "ossos": "ossos", "ostensiva": "ostens", "ostensivas": "ostens", "ostenta": "ostent", "ostentação": "ostent", "ostentam": "ostent", "ostentar": "ostent", "ostentatória": "ostentatór", "osteoporose": "osteoporos", "osteossarcoma": "osteossarcom", "ostracismo": "ostrac", "ostras": "ostras", "osvaldo": "osvald", "oswald": "oswald", "oswaldo": "oswald", "otan": "otan", "otávio": "otávi", "otelo": "otel", "othon": "othon", "ótica": "ótic", "óticos": "ótic", "ótima": "ótim", "ótimas": "ótim", "otimismo": "otim", "otimista": "otim", "otimizar": "otimiz", "ótimo": "ótim", "ótimos": "ótim", "otomana": "otoman", "otomano": "otoman", "otomanos": "otoman", "otonni": "otonn", "ottoni": "otton", "ou": "ou", "ouço": "ouc", "ourivesaria": "ourives", "ouro": "our", "ousa": "ous", "ousada": "ous", "ousadia": "ousad", "ousado": "ous", "ousados": "ous", "ousar": "ous", "ouso": "ous", "outdoors": "outdoors", "outing": "outing", "outono": "outon", "outra": "outr", "outras": "outr", "outro": "outr", "outrora": "outror", "outros": "outr", "outsuka": "outsuk", "outubro": "outubr", "ouve": "ouv", "ouvem": "ouv", "ouvi": "ouv", "ouvia": "ouv", "ouvida": "ouv", "ouvidas": "ouv", "ouvido": "ouv", "ouvidor": "ouvidor", "ouvidos": "ouv", "ouvimos": "ouv", "ouvindo": "ouv", "ouvinte": "ouvint", "ouvintes": "ouvint", "ouvir": "ouv", "ouvirá": "ouv", "ouviram": "ouv", "ouvirem": "ouv", "ouviu": "ouv", "ovacionar": "ovacion", "ovário": "ovári", "ovários": "ovári", "ovelha": "ovelh", "ovelhas": "ovelh", "over": "over", "overbooking": "overbooking", "overdose": "overdos", "overdrive": "overdriv", "overseas": "overs", "oviedo": "ovied", "ovni": "ovni", "ovnis": "ovnis", "ovo": "ovo", "ovos": "ovos", "oxalá": "oxal", "oxford": "oxford", "oxigenados": "oxigen", "oxigênio": "oxigêni", "oxóssi": "oxóss", "oxum": "oxum", "oxun": "oxun", "oxxyon": "oxxyon", "ozires": "ozir", "ozônio": "ozôni", "ozorio": "ozori", "ozório": "ozóri", "p": "p", "pa": "pa", "pá": "pá", "pablo": "pabl", "pacaccini": "pacaccin", "pacaembu": "pacaembu", "pacata": "pacat", "pacessetter": "pacessett", "pacheco": "pachec", "pachorra": "pachorr", "paci": "pac", "paciência": "paciênc", "paciente": "pacient", "pacientemente": "pacient", "pacientes": "pacient", "pacífica": "pacíf", "pacífico": "pacíf", "pacifismo": "pacif", "pacifista": "pacif", "packard": "packard", "pacotaço": "pacotac", "pacote": "pacot", "pacotes": "pacot", "pacotinho": "pacotinh", "pacto": "pact", "pactual": "pactual", "padaria": "pad", "padece": "padec", "padilha": "padilh", "padilla": "padill", "padim": "padim", "padrão": "padrã", "padrasto": "padrast", "padre": "padr", "padres": "padr", "padrinho": "padrinh", "padrinhos": "padrinh", "padroeira": "padroeir", "padroeiro": "padroeir", "padrões": "padrõ", "padronagens": "padronagens", "padronização": "padroniz", "padronizadas": "padroniz", "padronizador": "padroniz", "padronizados": "padroniz", "pádua": "pádu", "paes": "paes", "paetês": "paetês", "paf": "paf", "paffenberger": "paffenberg", "pág": "pág", "paga": "pag", "pagá": "pag", "pagam": "pag", "pagamento": "pagament", "pagamentos": "pagament", "pagamos": "pag", "pagando": "pag", "pagar": "pag", "pagará": "pag", "pagaram": "pag", "pagariam": "pag", "pagas": "pag", "pagasse": "pag", "pagava": "pag", "page": "pag", "pager": "pag", "pagers": "pagers", "página": "págin", "páginas": "págin", "pago": "pag", "pagode": "pagod", "pagodeira": "pagodeir", "pagodes": "pagod", "pagos": "pag", "pagou": "pag", "págs": "págs", "pagu": "pagu", "pague": "pag", "paguei": "pagu", "paguem": "pagu", "pagura": "pagur", "pahlevi": "pahlev", "pai": "pai", "painéis": "pain", "painel": "painel", "pains": "pains", "paint": "paint", "pairam": "pair", "pairava": "pair", "pais": "pais", "país": "país", "paisagem": "paisag", "paisagens": "paisagens", "paisana": "paisan", "países": "país", "paiva": "paiv", "paix": "paix", "paixão": "paixã", "paixões": "paixõ", "paixonites": "paixonit", "pajé": "paj", "pajelança": "pajelanc", "pajero": "pajer", "pajés": "pajés", "palace": "palac", "palacete": "palacet", "palacetes": "palacet", "palácio": "paláci", "palácios": "paláci", "paladar": "palad", "paladares": "palad", "palanque": "palanqu", "palanques": "palanqu", "palavra": "palavr", "palavras": "palavr", "palavrões": "palavrõ", "palavrório": "palavróri", "palco": "palc", "palcos": "palc", "paleontóloga": "paleontólog", "paleontólogo": "paleontólog", "palestina": "palestin", "palestinos": "palestin", "palestra": "palestr", "palestrando": "palestr", "palestras": "palestr", "paletó": "palet", "palha": "palh", "palhares": "palh", "palhinha": "palhinh", "paliativo": "paliat", "pálida": "pál", "pálido": "pál", "palio": "pali", "palma": "palm", "palmada": "palm", "palmares": "palm", "palmeiras": "palmeir", "palmo": "palm", "palpável": "palpável", "pálpebra": "pálpebr", "pálpebras": "pálpebr", "palpitações": "palpit", "palpitar": "palpit", "palpite": "palpit", "palpites": "palpit", "pam": "pam", "pamela": "pamel", "pamplona": "pamplon", "pampulha": "pampulh", "pan": "pan", "panacéia": "panac", "panache": "panach", "panamá": "panam", "panatela": "panatel", "pancadaria": "pancad", "pancadas": "panc", "pancas": "panc", "pâncreas": "pâncr", "pancreatite": "pancreatit", "pandeiro": "pandeir", "pandolpho": "pandolph", "pane": "pan", "panegíricos": "panegír", "panela": "panel", "panelaço": "panelac", "panes": "pan", "panfletário": "panfletári", "panfletos": "panflet", "pânico": "pânic", "pano": "pan", "panorama": "panoram", "panorâmico": "panorâm", "panos": "pan", "pantanal": "pantanal", "pântanos": "pântan", "panteão": "panteã", "pantera": "pant", "pantheon": "pantheon", "pão": "pã", "paolo": "paol", "papa": "pap", "papá": "pap", "papagaios": "papagai", "papai": "papa", "papais": "pap", "papanicolau": "papanicolau", "paparazzi": "paparazz", "paparicada": "paparic", "papas": "pap", "papéis": "pap", "papel": "papel", "papelada": "papel", "papelão": "papelã", "papelaria": "papel", "papelotes": "papelot", "papo": "pap", "pappas": "papp", "papuda": "papud", "paquera": "paqu", "paquerar": "paquer", "paqueras": "paqu", "paquerava": "paquer", "paquistão": "paquistã", "paquito": "paquit", "par": "par", "para": "par", "pára": "pár", "pará": "par", "parabenizou": "parabeniz", "parabéns": "parabéns", "parábolas": "parábol", "parabolazinha": "parabolazinh", "paracatu": "paracatu", "parada": "par", "paradas": "par", "paradeiro": "paradeir", "paradidáticos": "paradidát", "paradigma": "paradigm", "paradisíacas": "paradisíac", "paradisíaco": "paradisíac", "parado": "par", "parados": "par", "paradoxal": "paradoxal", "paradoxalmente": "paradoxal", "paradoxo": "paradox", "parafernália": "parafernál", "parafuso": "parafus", "parafusos": "parafus", "paragominas": "paragomin", "parágrafo": "parágraf", "parágrafos": "parágraf", "paraguai": "paragua", "paraguaia": "paragua", "paraguaio": "paraguai", "paraíba": "paraíb", "paraibana": "paraiban", "paraibano": "paraiban", "paraíso": "paraís", "paralela": "paralel", "paralelamente": "paralel", "paralelas": "paralel", "paralelo": "paralel", "paralisa": "paralis", "paralisação": "paralis", "paralisadas": "paralis", "paralisado": "paralis", "paralisia": "paralis", "paralisou": "paralis", "paralítico": "paralít", "param": "par", "paramaribo": "paramarib", "parâmetro": "parâmetr", "parâmetros": "parâmetr", "paraná": "paran", "paranaense": "paranaens", "paranaenses": "paranaens", "paranaguá": "paranagu", "paranaíba": "paranaíb", "paranapanema": "paranapanem", "parando": "par", "paranóia": "paranó", "paranóico": "paranó", "paranormais": "paranorm", "paranormal": "paranormal", "paranormalidade": "paranormal", "parapeito": "parapeit", "paraplégico": "paraplég", "parar": "par", "pararam": "par", "parasita": "parasit", "parasitárias": "parasitár", "parasitologia": "parasitolog", "parasse": "par", "parati": "parat", "parava": "par", "paravam": "par", "parávamos": "par", "paravertebral": "paravertebral", "parceira": "parceir", "parceiras": "parceir", "parceiro": "parceir", "parceiros": "parceir", "parcela": "parcel", "parcelado": "parcel", "parcelados": "parcel", "parcelamento": "parcel", "parcelas": "parcel", "parcelava": "parcel", "parceria": "parc", "parcerias": "parc", "parcial": "parcial", "parcialmente": "parcial", "parcimônia": "parcimôn", "parda": "pard", "pare": "par", "pareça": "parec", "parece": "parec", "parecem": "parec", "parecendo": "parec", "parecer": "parec", "pareceres": "parec", "pareceu": "parec", "parecia": "parec", "pareciam": "parec", "parecida": "parec", "parecidas": "parec", "parecido": "parec", "parecidos": "parec", "parecis": "parec", "pareço": "parec", "paredão": "paredã", "parede": "pared", "paredes": "pared", "paredões": "paredõ", "parei": "par", "parelelo": "parelel", "parelheiros": "parelheir", "parem": "par", "parent": "parent", "parente": "parent", "parentes": "parent", "parentesco": "parentesc", "páreo": "pár", "pares": "par", "pari": "par", "párias": "pár", "paris": "par", "parisien": "parisien", "parisiense": "parisiens", "park": "park", "parker": "park", "parking": "parking", "parlamentar": "parlament", "parlamentares": "parlament", "parlamentarismo": "parlamentar", "parlamento": "parlament", "parmalat": "parmalat", "parnaíba": "parnaíb", "paro": "par", "pároco": "pároc", "parodiando": "parodi", "paróquia": "paróqu", "parou": "par", "parque": "parqu", "parques": "parqu", "parr": "parr", "parra": "parr", "parreira": "parreir", "parreiras": "parreir", "parry": "parry", "parta": "part", "partagas": "partag", "parte": "part", "parteira": "parteir", "partem": "part", "partes": "part", "partia": "part", "participa": "particip", "participação": "particip", "participações": "particip", "participado": "particip", "participam": "particip", "participando": "particip", "participante": "particip", "participantes": "particip", "participar": "particip", "participaram": "particip", "participarem": "particip", "participativo": "particip", "participava": "particip", "participei": "particip", "participo": "particip", "participou": "particip", "partícula": "partícul", "particular": "particul", "particulares": "particul", "particularíssimos": "particularíss", "particularmente": "particular", "partículas": "partícul", "partida": "part", "partidão": "partidã", "partidária": "partidár", "partidárias": "partidár", "partidário": "partidári", "partidários": "partidári", "partidas": "part", "partido": "part", "partidos": "part", "partilha": "partilh", "partilhar": "partilh", "partilharam": "partilh", "partindo": "part", "partir": "part", "partiram": "part", "partitura": "partitur", "partituras": "partitur", "partiu": "part", "parto": "part", "partos": "part", "pás": "pás", "páscoa": "pásco", "pascolato": "pascolat", "pasini": "pasin", "pasme": "pasm", "pasolini": "pasolin", "pasquim": "pasquim", "passa": "pass", "passá": "pass", "passada": "pass", "passadas": "pass", "passadinha": "passadinh", "passado": "pass", "passados": "pass", "passageira": "passageir", "passageiro": "passageir", "passageiros": "passageir", "passagem": "passag", "passagens": "passagens", "passam": "pass", "passamos": "pass", "passando": "pass", "passaporte": "passaport", "passaportecarimbado": "passaportecarimb", "passaportes": "passaport", "passar": "pass", "passara": "pass", "passará": "pass", "passaram": "pass", "passarela": "passarel", "passarelas": "passarel", "passarem": "pass", "passaria": "pass", "passariam": "pass", "passaríamos": "pass", "passarinho": "passarinh", "passarinhos": "passarinh", "pássaros": "pássar", "passasse": "pass", "passassem": "pass", "passat": "passat", "passatempo": "passatemp", "passava": "pass", "passavam": "pass", "passe": "pass", "passeando": "pass", "passear": "pass", "passeata": "passeat", "passeatas": "passeat", "passeava": "pass", "passeavam": "pass", "passei": "pass", "passeia": "pass", "passeie": "passei", "passeio": "passei", "passeios": "passei", "passem": "pass", "passeou": "pass", "passes": "pass", "passinhos": "passinh", "passional": "passional", "passiva": "passiv", "passivas": "passiv", "passível": "passível", "passivo": "passiv", "passo": "pass", "passos": "pass", "passou": "pass", "pasta": "past", "pastas": "past", "pastel": "pastel", "pastelão": "pastelã", "pasteurização": "pasteuriz", "pasteurizado": "pasteuriz", "pastilha": "pastilh", "pasto": "past", "pastor": "pastor", "pastora": "pastor", "pastoral": "pastoral", "pastore": "pastor", "pastores": "pastor", "pastorzão": "pastorzã", "pastos": "past", "pastroes": "pastro", "pat": "pat", "pata": "pat", "patachou": "patach", "patagônia": "patagôn", "patamar": "patam", "patamares": "patam", "patas": "pat", "pataxó": "patax", "pataxós": "pataxós", "patches": "patch", "patente": "patent", "patenteação": "patent", "patentemente": "patent", "patentes": "patent", "paternalista": "paternal", "paternidade": "patern", "paternidades": "patern", "paterno": "patern", "paternost": "paternost", "patética": "patét", "pathfinder": "pathfind", "patias": "pat", "patinadores": "patin", "pátio": "páti", "pato": "pat", "patológico": "patológ", "patologistas": "patolog", "patotinha": "patotinh", "patrão": "patrã", "pátria": "pátr", "patriarca": "patriarc", "patriarcal": "patriarcal", "patricia": "patric", "patrícia": "patríc", "patricinhas": "patricinh", "patrick": "patrick", "patrimonial": "patrimonial", "patrimônio": "patrimôni", "patrizia": "patriz", "patroa": "patro", "patrocinada": "patrocin", "patrocinadas": "patrocin", "patrocinado": "patrocin", "patrocinador": "patrocin", "patrocinadora": "patrocin", "patrocinados": "patrocin", "patrocinando": "patrocin", "patrocínio": "patrocíni", "patrões": "patrõ", "patrol": "patrol", "patronais": "patron", "patronato": "patronat", "patrulhada": "patrulh", "patrulhamento": "patrulh", "patrulhas": "patrulh", "patten": "patten", "patuás": "patuás", "patury": "patury", "pau": "pau", "pauini": "pauin", "paul": "paul", "paula": "paul", "pauladas": "paul", "paulatinamente": "paulatin", "pauleira": "pauleir", "pauli": "paul", "paulina": "paulin", "paulino": "paulin", "paulista": "paulist", "paulistana": "paulistan", "paulistanas": "paulistan", "paulistano": "paulistan", "paulistanos": "paulistan", "paulistas": "paulist", "paulo": "paul", "paupérrimas": "paupérrim", "paus": "paus", "pausa": "paus", "pausada": "paus", "pauta": "paut", "pavão": "pavã", "pavãozinho": "pavãozinh", "pavarotti": "pavarott", "pavilhão": "pavilhã", "pavimentando": "paviment", "pavimentar": "paviment", "pavor": "pavor", "pavuna": "pavun", "payot": "payot", "paz": "paz", "pazes": "paz", "pb": "pb", "pc": "pc", "pcb": "pcb", "pcf": "pcf", "pcr": "pcr", "pcs": "pcs", "pddi": "pddi", "pdt": "pdt", "pdv": "pdv", "pe": "pe", "pé": "pé", "pearl": "pearl", "peça": "pec", "pecadilhos": "pecadilh", "pecado": "pec", "pecados": "pec", "peças": "pec", "pech": "pech", "pecha": "pech", "pechincha": "pechinch", "pechman": "pechman", "peço": "pec", "peçonhentas": "peçonhent", "peçonhentos": "peçonhent", "peculiar": "peculi", "peculiares": "peculi", "peculiaridade": "peculiar", "peculiaridades": "peculiar", "pedaço": "pedac", "pedaços": "pedac", "pedágio": "pedági", "pedágios": "pedági", "pedagoga": "pedagog", "pedagogas": "pedagog", "pedagogia": "pedagog", "pedagógica": "pedagóg", "pedagógicas": "pedagóg", "pedagógico": "pedagóg", "pedagógicos": "pedagóg", "pedagogo": "pedagog", "pedagogos": "pedagog", "pedal": "pedal", "pedala": "pedal", "pedalada": "pedal", "pedalar": "pedal", "pedalinhos": "pedalinh", "pedalou": "pedal", "pede": "ped", "pedem": "ped", "pederneiras": "pederneir", "pedestal": "pedestal", "pedestres": "pedestr", "pedetistas": "pedet", "pedi": "ped", "pedia": "ped", "pediam": "ped", "pediatra": "pediatr", "pediátrico": "pediátr", "pedida": "ped", "pedidas": "ped", "pedido": "ped", "pedidos": "ped", "pedindo": "ped", "pedir": "ped", "pediram": "ped", "pedirão": "ped", "pedirei": "ped", "pedirem": "ped", "pediria": "ped", "pediu": "ped", "pedra": "pedr", "pedradas": "pedr", "pedras": "pedr", "pedreira": "pedreir", "pedreiras": "pedreir", "pedreiro": "pedreir", "pedreiros": "pedreir", "pedro": "pedr", "pedrosa": "pedros", "pedroso": "pedros", "peeling": "peeling", "peemedebista": "peemedeb", "peemedebistas": "peemedeb", "pefelândia": "pefelând", "pefelê": "pefel", "pefelista": "pefel", "pefelistas": "pefel", "pega": "peg", "pegá": "peg", "pegação": "pegaçã", "pegadas": "peg", "pegajoso": "pegaj", "pegam": "peg", "pegamos": "peg", "pegando": "peg", "pegar": "peg", "pegaram": "peg", "pegaria": "peg", "pegasse": "peg", "pegassem": "peg", "pegava": "peg", "pego": "peg", "pegou": "peg", "pegue": "peg", "peguei": "pegu", "peias": "pei", "peitinho": "peitinh", "peito": "peit", "peitoral": "peitoral", "peitos": "peit", "peixão": "peixã", "peixe": "peix", "peixes": "peix", "peixoto": "peixot", "pejorativa": "pejor", "pejorativamente": "pejor", "pejorativo": "pejor", "pela": "pel", "pelada": "pel", "peladas": "pel", "peladões": "peladõ", "pelados": "pel", "pelas": "pel", "pele": "pel", "pelé": "pel", "pelegrini": "pelegrin", "peleja": "pelej", "peles": "pel", "pelo": "pel", "pelô": "pelô", "pelos": "pel", "pêlos": "pêl", "pelota": "pelot", "pelotão": "pelotã", "pelúcio": "pelúci", "peluda": "pelud", "peludo": "pelud", "peluso": "pelus", "pélvicas": "pélvic", "pélvis": "pélv", "pena": "pen", "peña": "peñ", "penada": "pen", "penal": "penal", "penalizado": "penaliz", "penas": "pen", "penavam": "pen", "penca": "penc", "pendendo": "pend", "pendenga": "pendeng", "pendentes": "pendent", "pender": "pend", "pêndulo": "pêndul", "pendurada": "pendur", "penduradas": "pendur", "pendurado": "pendur", "penduricalhos": "penduricalh", "peneira": "peneir", "penetra": "penetr", "penetrar": "penetr", "penetraram": "penetr", "penha": "penh", "penhasco": "penhasc", "penhascos": "penhasc", "penhora": "penhor", "península": "penínsul", "peninsulares": "peninsul", "pênis": "pên", "penitenciária": "penitenciár", "penitenciárias": "penitenciár", "penitenciário": "penitenciári", "penou": "pen", "penrose": "penros", "pensa": "pens", "pensadas": "pens", "pensado": "pens", "pensador": "pensador", "pensadores": "pensador", "pensam": "pens", "pensamento": "pensament", "pensamentos": "pensament", "pensamos": "pens", "pensando": "pens", "pensão": "pensã", "pensar": "pens", "pensara": "pens", "pensaram": "pens", "pensarmos": "pens", "pensas": "pens", "pensasse": "pens", "pensava": "pens", "pensavam": "pens", "pense": "pens", "pensei": "pens", "pensem": "pens", "pensilvânia": "pensilvân", "penso": "pens", "pensões": "pensõ", "pensou": "pens", "penta": "pent", "pentágono": "pentágon", "pente": "pent", "penteado": "pent", "pentecostais": "pentecost", "pentecostal": "pentecostal", "pentecoste": "pentecost", "penthouse": "penthous", "pentium": "pentium", "penúltima": "penúltim", "penúria": "penúr", "pepe": "pep", "pepebista": "pepeb", "pepino": "pepin", "pepito": "pepit", "pepsi": "peps", "pepsico": "pepsic", "pequena": "pequen", "pequenas": "pequen", "pequenininha": "pequenininh", "pequenininho": "pequenininh", "pequeninos": "pequenin", "pequeno": "pequen", "pequenos": "pequen", "pequim": "pequim", "per": "per", "pêra": "pêr", "peracchi": "peracch", "peraí": "pera", "peraltas": "peralt", "peralteia": "peralt", "peraltice": "peraltic", "perambulando": "perambul", "perante": "perant", "perca": "perc", "percam": "perc", "perceba": "perceb", "percebe": "perceb", "percebem": "perceb", "percebemos": "perceb", "percebendo": "perceb", "perceber": "perceb", "percebera": "perceb", "perceberá": "perceb", "perceberam": "perceb", "perceberem": "perceb", "percebesse": "perceb", "percebeu": "perceb", "percebi": "perceb", "percebia": "perceb", "percebido": "perceb", "percebo": "perceb", "percentuais": "percentu", "percentual": "percentual", "percepção": "percepçã", "perco": "perc", "percorre": "percorr", "percorrem": "percorr", "percorrendo": "percorr", "percorrer": "percorr", "percorrerá": "percorr", "percorreu": "percorr", "percorria": "percorr", "percorrida": "percorr", "percurso": "percurs", "percussão": "percussã", "percussionista": "percussion", "perda": "perd", "perdão": "perdã", "perdas": "perd", "perde": "perd", "perdedor": "perdedor", "perdem": "perd", "perdemos": "perd", "perdendo": "perd", "perder": "perd", "perdera": "perd", "perderá": "perd", "perderam": "perd", "perderia": "perd", "perdermos": "perd", "perdesse": "perd", "perdeu": "perd", "perdi": "perd", "perdia": "perd", "perdida": "perd", "perdidas": "perd", "perdido": "perd", "perdidos": "perd", "perdigão": "perdigã", "perdizes": "perdiz", "perdoá": "perdo", "perdoar": "perdo", "perdoaria": "perdo", "perdoava": "perdo", "perdoei": "perdo", "perdoem": "perdo", "perdoou": "perdo", "perdulários": "perdulári", "perdura": "perdur", "perdure": "perdur", "perecíveis": "perecív", "peregrinação": "peregrin", "peregrinações": "peregrin", "peregrinam": "peregrin", "peregrinos": "peregrin", "pereio": "perei", "pereira": "pereir", "pereiras": "pereir", "peremptoriamente": "peremptori", "peres": "per", "pereyra": "pereyr", "perez": "perez", "perfeccionista": "perfeccion", "perfeição": "perfeiçã", "perfeições": "perfeiçõ", "perfeita": "perfeit", "perfeitamente": "perfeit", "perfeito": "perfeit", "perfeitos": "perfeit", "perfil": "perfil", "perforatum": "perforatum", "performance": "performanc", "performances": "performanc", "performer": "perform", "perfumado": "perfum", "perfumaria": "perfum", "perfume": "perfum", "perfumes": "perfum", "perfuradora": "perfur", "perfurou": "perfur", "pergunta": "pergunt", "perguntado": "pergunt", "perguntam": "pergunt", "perguntando": "pergunt", "perguntar": "pergunt", "perguntaram": "pergunt", "perguntarem": "pergunt", "perguntaria": "pergunt", "perguntas": "pergunt", "perguntasse": "pergunt", "perguntava": "pergunt", "pergunte": "pergunt", "perguntei": "pergunt", "pergunto": "pergunt", "perguntou": "pergunt", "péri": "pér", "periandro": "periandr", "perícia": "períc", "periciais": "peric", "perícias": "períc", "periciou": "peric", "perico": "peric", "periculosidade": "periculos", "periferia": "perif", "periférica": "perifér", "perigo": "perig", "perigos": "perig", "perigosa": "perig", "perigosamente": "perig", "perigosas": "perig", "perigosíssima": "perigosíssim", "perigoso": "perig", "perigosos": "perig", "perímetro": "perímetr", "perinatal": "perinatal", "periodicamente": "period", "período": "períod", "períodos": "períod", "peripécias": "peripéc", "périplo": "péripl", "periquita": "periquit", "perispírito": "perispírit", "perissé": "periss", "perito": "perit", "peritos": "perit", "perkons": "perkons", "perla": "perl", "perles": "perl", "permaneça": "permanec", "permaneçam": "permanec", "permanece": "permanec", "permanecem": "permanec", "permanecendo": "permanec", "permanecer": "permanec", "permanecerá": "permanec", "permaneceram": "permanec", "permanecerão": "permanec", "permanecessem": "permanec", "permaneceu": "permanec", "permanecia": "permanec", "permanecido": "permanec", "permanência": "permanent", "permanente": "permanent", "permanentemente": "permanent", "permanentes": "permanent", "permeada": "perm", "permeável": "permeável", "permissão": "permissã", "permissiva": "permiss", "permissividade": "permiss", "permite": "permit", "permitem": "permit", "permitia": "permit", "permitida": "permit", "permitido": "permit", "permitidos": "permit", "permitimos": "permit", "permitindo": "permit", "permitir": "permit", "permitirá": "permit", "permitiram": "permit", "permitiria": "permit", "permitissem": "permit", "permitiu": "permit", "permito": "permit", "perna": "pern", "pernambucana": "pernambucan", "pernambucano": "pernambucan", "pernambucanos": "pernambucan", "pernambuco": "pernambuc", "pernas": "pern", "pernoitara": "pernoit", "pernoite": "pernoit", "pernudo": "pernud", "pêro": "pêr", "pérola": "pérol", "pérolas": "pérol", "perônio": "perôni", "perpetua": "perpetu", "perpétua": "perpétu", "perpetuam": "perpetu", "perpetuamente": "perpetu", "perpetuando": "perpetu", "perpetuar": "perpetu", "perpetuasse": "perpetu", "perpétuo": "perpétu", "perpetuou": "perpetu", "perplexa": "perplex", "perplexidade": "perplex", "perplexo": "perplex", "perplexos": "perplex", "perrier": "perri", "perrin": "perrin", "perry": "perry", "perseguem": "persegu", "persegui": "persegu", "perseguia": "persegu", "perseguição": "perseguiçã", "perseguições": "perseguiçõ", "perseguida": "persegu", "perseguido": "persegu", "perseguidor": "perseguidor", "perseguidos": "persegu", "perseguir": "persegu", "perseguiu": "persegu", "perseverante": "persever", "pérsio": "pérsi", "persiste": "pers", "persistem": "persist", "persistência": "persistent", "persistente": "persistent", "persistentes": "persistent", "persistiu": "persist", "persona": "person", "personagem": "personag", "personagens": "personagens", "personal": "personal", "personalidade": "personal", "personalidades": "personal", "personalizada": "personaliz", "personalizado": "personaliz", "personalizar": "personaliz", "personificação": "personific", "personificada": "personific", "perspectiva": "perspect", "perspectivas": "perspect", "perspicazes": "perspicaz", "persuasão": "persuasã", "pertence": "pertenc", "pertencem": "pertenc", "pertencemos": "pertenc", "pertencente": "pertencent", "pertencentes": "pertencent", "pertencer": "pertenc", "pertencera": "pertenc", "pertenceria": "pertenc", "pertences": "pertenc", "pertenceu": "pertenc", "pertenci": "pertenc", "pertencia": "pertenc", "pertinência": "pertinent", "pertinente": "pertinent", "pertinho": "pertinh", "perto": "pert", "perturba": "perturb", "perturbação": "perturb", "perturbações": "perturb", "perturbadora": "perturb", "perturbando": "perturb", "perturbar": "perturb", "perturbavam": "perturb", "peru": "peru", "perua": "peru", "peruana": "peruan", "peruano": "peruan", "peruanos": "peruan", "peruca": "peruc", "perucas": "peruc", "perversa": "pervers", "perverte": "pervert", "pés": "pés", "pesa": "pes", "pesada": "pes", "pesadamente": "pesad", "pesadas": "pes", "pesadelo": "pesadel", "pesadelos": "pesadel", "pesadíssima": "pesadíssim", "pesadíssimas": "pesadíssim", "pesado": "pes", "pesados": "pes", "pesam": "pes", "pêsames": "pêsam", "pesamos": "pes", "pesando": "pes", "pesar": "pes", "pesava": "pes", "pesca": "pesc", "pescado": "pesc", "pescador": "pescador", "pescadores": "pescador", "pescando": "pesc", "pescoço": "pescoc", "peso": "pes", "pesos": "pes", "pesou": "pes", "pespectiva": "pespect", "pesquisa": "pesquis", "pesquisadas": "pesquis", "pesquisado": "pesquis", "pesquisador": "pesquis", "pesquisadora": "pesquis", "pesquisadores": "pesquis", "pesquisados": "pesquis", "pesquisam": "pesquis", "pesquisar": "pesquis", "pesquisas": "pesquis", "pesquisou": "pesquis", "pessanha": "pessanh", "pêssego": "pêsseg", "pessi": "pess", "péssima": "péssim", "pessimismo": "pessim", "pessimista": "pessim", "pessimistas": "pessim", "péssimo": "péssim", "pessoa": "pesso", "pessoais": "pesso", "pessoal": "pessoal", "pessoalmente": "pessoal", "pessoas": "pesso", "peste": "pest", "pestes": "pest", "pet": "pet", "petardo": "petard", "pete": "pet", "peter": "pet", "peters": "peters", "petição": "petiçã", "petista": "petist", "petistas": "petist", "petit": "petit", "petrobras": "petrobr", "petrobrás": "petrobrás", "petroleiros": "petroleir", "petróleo": "petról", "petrolina": "petrolin", "petroni": "petron", "petrônio": "petrôni", "petrópolis": "petrópol", "petros": "petr", "peugeot": "peugeot", "pezinho": "pezinh", "pf": "pf", "pfl": "pfl", "pgo": "pgo", "ph": "ph", "phanos": "phan", "philip": "philip", "philippe": "philipp", "philippoussis": "philippouss", "phone": "phon", "photo": "phot", "photoshop": "photoshop", "physique": "physiqu", "physus": "physus", "phytoervas": "phytoerv", "pia": "pia", "piacentini": "piacentin", "piada": "piad", "piadas": "piad", "piadinhas": "piadinh", "piagetiano": "piagetian", "piamente": "piament", "piano": "pian", "piao": "pia", "piauí": "piau", "piazza": "piazz", "pib": "pib", "pic": "pic", "picada": "pic", "picadinha": "picadinh", "picadinho": "picadinh", "picado": "pic", "picados": "pic", "picanha": "picanh", "picantes": "picant", "picão": "picã", "picardia": "picard", "picareta": "picaret", "picaretas": "picaret", "pichações": "pichaçõ", "pichador": "pichador", "pick": "pick", "pico": "pic", "picolés": "picolés", "picos": "pic", "picotada": "picot", "picotando": "picot", "picote": "picot", "picuinha": "picuinh", "pie": "pie", "piedade": "piedad", "pieguice": "pieguic", "pier": "pier", "pierre": "pierr", "pierro": "pierr", "pietralata": "pietralat", "pif": "pif", "pifado": "pif", "pífio": "pífi", "pigarro": "pigarr", "pigmentos": "pigment", "pijama": "pijam", "pike": "pik", "pilares": "pil", "pilatos": "pilat", "pilha": "pilh", "pilhando": "pilh", "pilhas": "pilh", "pillar": "pill", "pilota": "pilot", "pilotando": "pilot", "pilotar": "pilot", "pilotava": "pilot", "piloto": "pilot", "pilotos": "pilot", "pilotou": "pilot", "pílula": "pílul", "pílulas": "pílul", "pimenta": "piment", "pimentaa": "pimenta", "pimentel": "pimentel", "pimpolhos": "pimpolh", "pinça": "pinc", "píncaros": "píncar", "pinças": "pinc", "pincéis": "pinc", "ping": "ping", "pinga": "ping", "pingado": "ping", "pingo": "ping", "pingüins": "pingüins", "pinhais": "pinh", "pinheiro": "pinheir", "pinheiros": "pinheir", "pinot": "pinot", "pinotti": "pinott", "pinta": "pint", "pintá": "pint", "pintar": "pint", "pinter": "pint", "pinto": "pint", "pintor": "pintor", "pintora": "pintor", "pintores": "pintor", "pintou": "pint", "pintura": "pintur", "pinturas": "pintur", "pio": "pio", "piolho": "piolh", "piolhos": "piolh", "pioneiras": "pioneir", "pioneiro": "pioneir", "pioneiros": "pioneir", "pior": "pior", "piorando": "pior", "piorar": "pior", "pioraram": "pior", "piores": "pior", "piorou": "pior", "pipa": "pip", "pipas": "pip", "pipes": "pip", "pipoca": "pipoc", "pipocando": "pipoc", "pipocar": "pipoc", "pique": "piqu", "piquenique": "piqueniqu", "piração": "piraçã", "piracema": "piracem", "piraí": "pira", "pirajussara": "pirajuss", "pirâmide": "pirâmid", "piranha": "piranh", "pirapora": "pirapor", "pirata": "pirat", "pirataria": "pirat", "piratas": "pirat", "pires": "pir", "pirralhos": "pirralh", "piruetas": "piruet", "pis": "pis", "pisados": "pis", "pisando": "pis", "pisar": "pis", "pisarão": "pis", "piscar": "pisc", "piscaram": "pisc", "piscina": "piscin", "piscinas": "piscin", "piso": "pis", "pisos": "pis", "pisoteado": "pisot", "pisoteiem": "pisotei", "pista": "pist", "pistas": "pist", "pistola": "pistol", "pistolas": "pistol", "pistolinha": "pistolinh", "pistolões": "pistolõ", "pistols": "pistols", "pitada": "pit", "pitanguy": "pitanguy", "pitoresca": "pitoresc", "pitoresco": "pitoresc", "pitorescos": "pitoresc", "pitta": "pitt", "pittman": "pittman", "pittomba": "pittomb", "piva": "piv", "pivô": "pivô", "pixinguinha": "pixinguinh", "pizza": "pizz", "pizzarela": "pizzarel", "pizzaria": "pizz", "pizzarias": "pizz", "pizzas": "pizz", "placa": "plac", "placas": "plac", "place": "plac", "placebo": "placeb", "plácida": "plác", "plagas": "plag", "planafloro": "planaflor", "planalto": "planalt", "planeja": "planej", "planejada": "planej", "planejadas": "planej", "planejado": "planej", "planejam": "planej", "planejamento": "planej", "planejando": "planej", "planejar": "planej", "planejava": "planej", "planejo": "planej", "planejou": "planej", "planet": "planet", "planeta": "planet", "planetária": "planetár", "planetário": "planetári", "planetas": "planet", "planilha": "planilh", "plano": "plan", "planos": "plan", "planta": "plant", "plantação": "plantaçã", "plantações": "plantaçõ", "plantada": "plant", "plantado": "plant", "plantadora": "plantador", "plantam": "plant", "plantando": "plant", "plantão": "plantã", "plantar": "plant", "plantas": "plant", "plantava": "plant", "plantel": "plantel", "plantificado": "plantific", "plantio": "planti", "plantou": "plant", "planura": "planur", "plaquetas": "plaquet", "plástica": "plástic", "plasticamente": "plastic", "plásticas": "plástic", "plasticidade": "plastic", "plástico": "plástic", "plásticos": "plástic", "plastificada": "plastific", "plataforma": "plataform", "platéia": "plat", "platéias": "plat", "platina": "platin", "platinada": "platin", "plausível": "plausível", "playboy": "playboy", "playground": "playground", "playmobil": "playmobil", "plaza": "plaz", "plebéia": "pleb", "plebiscito": "plebiscit", "pleiteante": "pleiteant", "pleitear": "pleit", "pleiteavam": "pleit", "pleiteiam": "pleit", "pleito": "pleit", "plena": "plen", "plenamente": "plen", "plenário": "plenári", "pleno": "plen", "plenos": "plen", "plínio": "plíni", "pliométrica": "pliométr", "plissada": "pliss", "plissado": "pliss", "plugadas": "plug", "plugados": "plug", "plugaram": "plug", "plumas": "plum", "plural": "plural", "pluriétnico": "pluriétn", "plus": "plus", "plush": "plush", "pm": "pm", "pmdb": "pmdb", "pms": "pms", "pneu": "pneu", "pneumologista": "pneumolog", "pneumonia": "pneumon", "pneus": "pneus", "pneuzinhos": "pneuzinh", "pó": "pó", "pô": "pô", "pobre": "pobr", "pobres": "pobr", "pobreza": "pobrez", "poção": "poçã", "pochê": "poch", "poço": "poc", "poções": "poçõ", "poconé": "pocon", "pode": "pod", "pôde": "pôd", "podem": "pod", "podemos": "pod", "podendo": "pod", "poder": "pod", "poderá": "pod", "poderão": "pod", "poderemos": "pod", "poderes": "pod", "poderia": "pod", "poderiam": "pod", "poderíamos": "pod", "poderio": "poderi", "podermos": "pod", "poderosa": "poder", "poderosas": "poder", "poderoso": "poder", "poderosos": "poder", "podia": "pod", "podiam": "pod", "podíamos": "pod", "podido": "pod", "pódio": "pódi", "podres": "podr", "poe": "poe", "põe": "põ", "poeira": "poeir", "poeirentas": "poeirent", "põem": "põ", "poema": "poem", "poemas": "poem", "poème": "poèm", "poerenta": "poerent", "poesia": "poes", "poesias": "poes", "poeta": "poet", "poético": "poétic", "poída": "poíd", "point": "point", "points": "points", "pois": "pois", "pojuca": "pojuc", "pol": "pol", "polar": "pol", "polarização": "polariz", "polarizada": "polariz", "polegar": "poleg", "polêmica": "polêm", "polêmicas": "polêm", "polêmico": "polêm", "polêmicos": "polêm", "polemista": "polem", "polemizar": "polemiz", "policarpo": "policarp", "polichinelo": "polichinel", "policia": "polic", "polícia": "políc", "policiais": "polic", "policial": "policial", "policiamento": "polic", "polícias": "políc", "policístico": "policíst", "polida": "pol", "poligâmica": "poligâm", "poligâmicos": "poligâm", "polígono": "polígon", "poliomielite": "poliomielit", "politécnica": "politécn", "política": "polít", "politicamente": "polit", "políticas": "polít", "político": "polít", "políticos": "polít", "politiqueiro": "politiqueir", "politizada": "politiz", "politizado": "politiz", "politraumatismo": "politraumat", "polo": "pol", "pólo": "pól", "polônio": "polôni", "pólos": "pól", "polpuda": "polpud", "poltrona": "poltron", "poltronas": "poltron", "poluição": "poluiçã", "poluídas": "poluíd", "poluir": "polu", "pólvora": "pólvor", "polygram": "polygr", "pomada": "pom", "pombinhos": "pombinh", "pomo": "pom", "pompa": "pomp", "pompéia": "pomp", "pompeu": "pomp", "pomposo": "pompos", "pomposos": "pompos", "poncho": "ponch", "pondera": "pond", "ponderação": "ponder", "ponderado": "ponder", "ponderou": "ponder", "pondo": "pond", "ponha": "ponh", "ponham": "ponh", "ponta": "pont", "pontal": "pontal", "pontapés": "pontapés", "pontas": "pont", "ponte": "pont", "pontes": "pont", "pontificava": "pontific", "pontifícia": "pontifíc", "pontilhado": "pontilh", "pontinha": "pontinh", "ponto": "pont", "pontos": "pont", "pontua": "pontu", "pontuada": "pontu", "pontuado": "pontu", "pontuais": "pontu", "pontual": "pontual", "pontualmente": "pontual", "pontuar": "pontu", "ponzio": "ponzi", "poodle": "poodl", "pop": "pop", "popa": "pop", "popovic": "popovic", "poppovic": "poppovic", "população": "popul", "populacional": "populacional", "populações": "popul", "popular": "popul", "populares": "popul", "popularidade": "popular", "popularíssimo": "popularíssim", "popularizá": "populariz", "popularização": "populariz", "popularizar": "populariz", "popularizou": "populariz", "popularmente": "popular", "populi": "popul", "populista": "popul", "populosa": "popul", "populoso": "popul", "pôquer": "pôqu", "por": "por", "pôr": "pôr", "porão": "porã", "porção": "porçã", "porcaria": "porc", "porcas": "porc", "porcentagem": "porcentag", "porcentual": "porcentual", "porco": "porc", "porções": "porçõ", "porcos": "porc", "porém": "porém", "pormenores": "pormenor", "pornô": "pornô", "pornografia": "pornograf", "pornográficas": "pornográf", "poro": "por", "poró": "por", "porões": "porõ", "poros": "por", "porosos": "poros", "porque": "porqu", "porquê": "porqu", "porquês": "porquês", "porquinho": "porquinh", "porrada": "porr", "porre": "porr", "porsche": "porsch", "porta": "port", "portador": "portador", "portadoras": "portador", "portadores": "portador", "portanto": "portant", "portão": "portã", "portaria": "port", "portas": "port", "portáteis": "portát", "portátil": "portátil", "porte": "port", "porteira": "porteir", "porteiras": "porteir", "porteiro": "porteir", "porteiros": "porteir", "portela": "portel", "portella": "portell", "portento": "portent", "portentosa": "portent", "portentosas": "portent", "porter": "port", "portes": "port", "portinari": "portinar", "porto": "port", "portobrás": "portobrás", "portões": "portõ", "portos": "port", "portuárias": "portuár", "portuários": "portuári", "portugal": "portugal", "português": "português", "portuguesa": "portugues", "portuguesas": "portugues", "portugueses": "portugues", "pós": "pós", "pôs": "pôs", "posar": "pos", "posava": "pos", "pose": "pos", "poses": "pos", "posição": "posiçã", "posicionados": "posicion", "posicionamentos": "posicion", "posicionar": "posicion", "posições": "posiçõ", "positiva": "posit", "positivamente": "posit", "positivas": "posit", "positivo": "posit", "positivos": "posit", "possa": "poss", "possam": "poss", "possamos": "poss", "possante": "possant", "posse": "poss", "posses": "poss", "possessão": "possessã", "possessiva": "possess", "possessivo": "possess", "possesso": "possess", "possi": "poss", "possibilidade": "possibil", "possibilidades": "possibil", "possibilita": "possibilit", "possibilitando": "possibilit", "possíveis": "possív", "possível": "possível", "possivelmente": "possivel", "possívelmente": "possível", "posso": "poss", "possuem": "possu", "possui": "possu", "possuía": "possuí", "possuíam": "possuí", "possuir": "possu", "posta": "post", "postado": "post", "postais": "post", "postal": "postal", "poste": "post", "pôster": "pôst", "pôsteres": "pôst", "postergar": "posterg", "posterior": "posterior", "posteriores": "posterior", "posteriormente": "posterior", "postes": "post", "posto": "post", "postos": "post", "postulador": "postul", "postulante": "postul", "postumamente": "postum", "póstumas": "póstum", "postura": "postur", "posturas": "postur", "pot": "pot", "potável": "potável", "pote": "pot", "potência": "potênc", "potenciais": "potenc", "potencial": "potencial", "potencialmente": "potencial", "potências": "potênc", "potente": "potent", "potentes": "potent", "potinhos": "potinh", "pouca": "pouc", "poucas": "pouc", "pouco": "pouc", "poucos": "pouc", "poupa": "poup", "poupado": "poup", "poupador": "poupador", "poupadores": "poupador", "poupam": "poup", "poupança": "poupanc", "poupando": "poup", "poupar": "poup", "pouparam": "poup", "poupou": "poup", "pouquinho": "pouquinh", "pouquíssima": "pouquíssim", "pouquíssimo": "pouquíssim", "pouquíssimos": "pouquíss", "pousa": "pous", "pousada": "pous", "pousam": "pous", "pousamos": "pous", "pousando": "pous", "pousar": "pous", "pouso": "pous", "pousou": "pous", "povão": "povã", "povo": "pov", "povoa": "povo", "povoada": "povo", "povoado": "povo", "povoados": "povo", "povoam": "povo", "povoar": "povo", "povos": "pov", "powel": "powel", "powell": "powell", "power": "pow", "pp": "pp", "ppb": "ppb", "ppp": "ppp", "pr": "pr", "pra": "pra", "prá": "prá", "praça": "prac", "prada": "prad", "pradesh": "pradesh", "prado": "prad", "prados": "prad", "praga": "prag", "pragmática": "pragmát", "pragmáticas": "pragmát", "pragmático": "pragmát", "pragmáticos": "pragmát", "pragmatismo": "pragmat", "praia": "pra", "praianinha": "praianinh", "praias": "pra", "prancheta": "pranchet", "pranchetas": "pranchet", "prandi": "prand", "prantos": "prant", "prata": "prat", "prateleira": "prateleir", "prateleiras": "prateleir", "prates": "prat", "pratica": "pratic", "prática": "prátic", "praticada": "pratic", "praticadas": "pratic", "praticado": "pratic", "praticados": "pratic", "praticam": "pratic", "praticamente": "pratic", "praticando": "pratic", "praticante": "pratic", "praticantes": "pratic", "praticar": "pratic", "praticaram": "pratic", "práticas": "prátic", "praticidade": "pratic", "prático": "prátic", "práticos": "prátic", "praticou": "pratic", "prato": "prat", "pratos": "prat", "praxe": "prax", "prazeirosa": "prazeir", "prazer": "praz", "prazeres": "praz", "prazerosa": "prazer", "prazerosas": "prazer", "prazeroso": "prazer", "prazo": "praz", "prazos": "praz", "pré": "pré", "precária": "precár", "precariamente": "precari", "precárias": "precár", "precário": "precári", "precários": "precári", "precatório": "precatóri", "precatórios": "precatóri", "precaução": "precauçã", "prece": "prec", "precede": "preced", "precedem": "preced", "precedente": "precedent", "precedentes": "precedent", "precedeu": "preced", "precedida": "preced", "precedidos": "preced", "preceitos": "preceit", "preces": "prec", "preciosa": "precios", "preciosas": "precios", "preciosidade": "precios", "preciosidades": "precios", "precioso": "precios", "preciosos": "precios", "precious": "precious", "precipícios": "precipíci", "precipitado": "precipit", "precisa": "precis", "precisado": "precis", "precisam": "precis", "precisamente": "precis", "precisamos": "precis", "precisando": "precis", "precisão": "precisã", "precisar": "precis", "precisará": "precis", "precisaria": "precis", "precisariam": "precis", "precisaríamos": "precis", "precisas": "precis", "precisasse": "precis", "precisava": "precis", "precisavam": "precis", "precisávamos": "precis", "precise": "precis", "precisei": "precis", "precisem": "precis", "preciso": "precis", "precisos": "precis", "precisou": "precis", "preço": "prec", "precoce": "precoc", "precocemente": "precoc", "precoces": "precoc", "precocidade": "precoc", "preconcebida": "preconceb", "preconceito": "preconceit", "preconceitos": "preconceit", "preconceituosa": "preconceitu", "preconceituosos": "preconceitu", "precondição": "precondiçã", "preços": "prec", "precursor": "precursor", "precursora": "precursor", "precursores": "precursor", "predatória": "predatór", "predatórias": "predatór", "predatório": "predatóri", "predestinado": "predestin", "predileção": "predileçã", "predileta": "predilet", "prediletas": "predilet", "predileto": "predilet", "prediletos": "predilet", "prédio": "prédi", "prédios": "prédi", "predispõe": "predispõ", "predisposição": "predisposiçã", "predomina": "predomin", "predominam": "predomin", "predominância": "predomin", "predominante": "predomin", "predominantemente": "predomin", "predominou": "predomin", "preenchem": "preench", "preenchendo": "preench", "preencher": "preench", "preencherá": "preench", "preencheriam": "preench", "preencheu": "preench", "preenchia": "preench", "preenchida": "preench", "preenchido": "preench", "preenchimento": "preenchiment", "prefaciasse": "prefac", "prefácio": "prefáci", "prefeita": "prefeit", "prefeito": "prefeit", "prefeitos": "prefeit", "prefeitura": "prefeitur", "prefeituras": "prefeitur", "prefere": "prefer", "preferem": "pref", "preferência": "preferent", "preferencialmente": "preferencial", "preferências": "preferent", "preferi": "prefer", "preferia": "pref", "preferiam": "pref", "preferíamos": "pref", "preferida": "prefer", "preferido": "prefer", "preferidos": "prefer", "preferindo": "prefer", "preferino": "preferin", "preferiram": "prefer", "preferiria": "prefer", "preferiu": "prefer", "preferível": "prefer", "prefira": "pref", "prefiro": "prefir", "prefixo": "prefix", "prega": "preg", "pregação": "pregaçã", "pregador": "pregador", "pregam": "preg", "pregão": "pregã", "pregar": "preg", "pregava": "preg", "preguiça": "preguic", "preguiçosa": "preguic", "preguiçosas": "preguic", "preguiçoso": "preguic", "preguiçosos": "preguic", "preju": "preju", "prejudica": "prejud", "prejudicada": "prejudic", "prejudicados": "prejudic", "prejudicando": "prejudic", "prejudicar": "prejudic", "prejudicava": "prejudic", "prejudicial": "prejudicial", "prejudicou": "prejudic", "prejudique": "prejudiqu", "prejudiquem": "prejudiqu", "prejuízo": "prejuíz", "prejuízos": "prejuíz", "preliminar": "prelimin", "preliminares": "prelimin", "prematura": "prematur", "prematuras": "prematur", "prematuridade": "prematur", "premia": "prem", "premiá": "premi", "premiação": "premiaçã", "premiada": "premi", "premiadas": "premi", "premiadíssimo": "premiadíssim", "premiado": "premi", "premiados": "premi", "premiar": "premi", "premiava": "premi", "premiem": "premi", "prêmio": "prêmi", "prêmios": "prêmi", "premonição": "premoniçã", "premonitório": "premonitóri", "premonitórios": "premonitóri", "prenda": "prend", "prende": "prend", "prendem": "prend", "prendendo": "prend", "prender": "prend", "prenderam": "prend", "prendeu": "prend", "prendido": "prend", "prenomes": "prenom", "prensa": "prens", "prensada": "prens", "prenúncio": "prenúnci", "prenúncios": "prenúnci", "preocupa": "preocup", "preocupação": "preocup", "preocupações": "preocup", "preocupada": "preocup", "preocupadas": "preocup", "preocupado": "preocup", "preocupados": "preocup", "preocupam": "preocup", "preocupante": "preocup", "preocupar": "preocup", "preocuparam": "preocup", "preocupasse": "preocup", "preocupava": "preocup", "preocupe": "preocup", "preocupei": "preocup", "preocupo": "preocup", "preocupou": "preocup", "prepara": "prep", "preparação": "prepar", "preparada": "prepar", "preparado": "prepar", "preparador": "prepar", "preparadora": "prepar", "preparados": "prepar", "preparam": "prep", "preparando": "prepar", "preparar": "prepar", "prepararam": "prepar", "preparativos": "prepar", "preparava": "prepar", "prepare": "prepar", "preparei": "prep", "preparem": "prep", "preparo": "prepar", "preparos": "prepar", "preparou": "prepar", "preponderante": "preponder", "prepotente": "prepotent", "presa": "pres", "presas": "pres", "presbiteriana": "presbiterian", "prescindir": "prescind", "prescrevem": "prescrev", "prescrever": "prescrev", "prescreveu": "prescrev", "prescrição": "prescriçã", "prescrições": "prescriçõ", "prescrita": "prescrit", "prescritas": "prescrit", "prescritos": "prescrit", "presença": "presenc", "presenciar": "presenc", "presenciou": "presenc", "presente": "present", "presentear": "present", "presentes": "present", "presépio": "presépi", "preserva": "preserv", "preservação": "preserv", "preservada": "preserv", "preservado": "preserv", "preservados": "preserv", "preservam": "preserv", "preservar": "preserv", "preservativo": "preserv", "preservativos": "preserv", "preservem": "preserv", "preservou": "preserv", "preside": "presid", "presidência": "president", "presidenciais": "presidenc", "presidencial": "presidencial", "presidencialismo": "presidencial", "presidencialista": "presidencial", "presidenta": "president", "presidente": "president", "presidentes": "president", "presidiários": "presidiári", "presidida": "presid", "presidido": "presid", "presídio": "presídi", "presídios": "presídi", "presidir": "presid", "presidiu": "presid", "presley": "presley", "preso": "pres", "presos": "pres", "press": "press", "pressa": "press", "pressagiar": "pressagi", "pressão": "pressã", "pressas": "press", "presse": "press", "pressentido": "pressent", "pressioná": "pression", "pressionado": "pression", "pressionados": "pression", "pressionam": "pression", "pressionar": "pression", "pressionasse": "pression", "pressionou": "pression", "pressões": "pressõ", "pressupõe": "pressupõ", "pressuposto": "pressupost", "presta": "prest", "prestação": "prestaçã", "prestações": "prestaçõ", "prestador": "prestador", "prestados": "prest", "prestam": "prest", "prestando": "prest", "prestar": "prest", "prestaram": "prest", "prestava": "prest", "preste": "prest", "prestes": "prest", "prestigiado": "prestigi", "prestigiados": "prestigi", "prestígio": "prestígi", "prestigiosa": "prestigi", "prestigioso": "prestigi", "presto": "prest", "prestou": "prest", "presumir": "presum", "presunto": "presunt", "presuntos": "presunt", "prét": "prét", "prêt": "prêt", "preta": "pret", "pretende": "pretend", "pretendem": "pretend", "pretendemos": "pretend", "pretendente": "pretendent", "pretendentes": "pretendent", "pretendia": "pretend", "pretendiam": "pretend", "pretendo": "pret", "pretensioso": "pretensi", "pretenso": "pretens", "preteridos": "preter", "pretexto": "pretext", "pretextos": "pretext", "preto": "pret", "pretos": "pret", "prevalece": "prevalec", "prevalecer": "prevalec", "prevaleceu": "prevalec", "prevê": "prev", "prevêem": "prev", "prevêm": "prevêm", "prevenção": "prevençã", "prevendo": "prev", "prevenida": "preven", "prevenir": "preven", "preveniu": "preven", "preventiva": "prevent", "preventivamente": "prevent", "preventivas": "prevent", "preventivo": "prevent", "preventivos": "prevent", "prever": "prev", "previ": "prev", "previa": "prev", "prévia": "prév", "previdência": "prevident", "previdenciária": "previdenciár", "previdenciário": "previdenciári", "prévio": "prévi", "previram": "prev", "previsão": "previsã", "previsível": "previs", "previsões": "previsõ", "prevista": "previst", "previstas": "previst", "previsto": "previst", "previstos": "previst", "previu": "prev", "preza": "prez", "preze": "prez", "prezo": "prez", "price": "pric", "pride": "prid", "prima": "prim", "primária": "primár", "primárias": "primár", "primário": "primári", "primas": "prim", "primavera": "primav", "primazia": "primaz", "primeira": "primeir", "primeiras": "primeir", "primeiro": "primeir", "primeiros": "primeir", "primitiva": "primit", "primo": "prim", "primogênita": "primogênit", "primor": "primor", "primordiais": "primordi", "primordial": "primordial", "primórdios": "primórdi", "primos": "prim", "prince": "princ", "princesa": "princes", "principais": "princip", "principal": "principal", "principalmente": "principal", "príncipe": "príncip", "princípio": "princípi", "princípios": "princípi", "priore": "prior", "prioridade": "prioridad", "prioridades": "prioridad", "prioritariamente": "prioritari", "prioritárias": "prioritár", "prioritário": "prioritári", "prioritários": "prioritári", "priorizá": "prioriz", "priorizar": "prioriz", "prisão": "prisã", "priscila": "priscil", "priscilla": "priscill", "prisco": "prisc", "prisioneira": "prisioneir", "prisioneiro": "prisioneir", "prisioneiros": "prisioneir", "prisma": "prism", "prisões": "prisõ", "privacidade": "privac", "privada": "priv", "privadas": "priv", "privado": "priv", "privados": "priv", "privam": "priv", "private": "privat", "privativo": "privat", "privativos": "privat", "privatiza": "privatiz", "privatização": "privatiz", "privatizações": "privatiz", "privatizada": "privatiz", "privatizado": "privatiz", "privatizando": "privatiz", "privatizar": "privatiz", "privé": "priv", "privilegia": "privileg", "privilegiada": "privilegi", "privilegiadas": "privilegi", "privilegiado": "privilegi", "privilegiados": "privilegi", "privilegiando": "privilegi", "privilégio": "privilégi", "prize": "priz", "prn": "prn", "pro": "pro", "pró": "pró", "proálcool": "proálcool", "proar": "pro", "probabilidade": "probabil", "probabilidades": "probabil", "problema": "problem", "problemas": "problem", "problemática": "problemát", "problemáticas": "problemát", "problemático": "problemát", "problemáticos": "problemát", "probleminha": "probleminh", "procedência": "procedent", "procedente": "procedent", "procedentes": "procedent", "procedesse": "proced", "procedimento": "proced", "procedimentos": "proced", "processada": "process", "processado": "process", "processador": "process", "processadores": "process", "processados": "process", "processamento": "process", "processando": "process", "processar": "process", "processo": "process", "processos": "process", "processou": "process", "prociamidas": "prociam", "procissão": "procissã", "proclama": "proclam", "proclamação": "proclam", "proclamada": "proclam", "proclamam": "proclam", "proclamou": "proclam", "procon": "procon", "procópio": "procópi", "procriação": "procriaçã", "procriar": "procri", "procupá": "procup", "procura": "procur", "procuração": "procur", "procurações": "procur", "procurada": "procur", "procuradas": "procur", "procurado": "procur", "procurador": "procur", "procuradores": "procur", "procuradoria": "procurador", "procurados": "procur", "procuram": "procur", "procuramos": "procur", "procurando": "procur", "procurar": "procur", "procuraram": "procur", "procurasse": "procur", "procurassem": "procur", "procurava": "procur", "procurávamos": "procur", "procure": "procur", "procurei": "procur", "procurem": "procur", "procuremos": "procur", "procuro": "procur", "procurou": "procur", "prodi": "prod", "pródigas": "pródig", "prodígio": "prodígi", "prodigiosa": "prodigi", "pródigo": "pródig", "produação": "produaçã", "produban": "produban", "produção": "produçã", "produções": "produçõ", "produtiva": "produt", "produtivas": "produt", "produtividade": "produt", "produtivo": "produt", "produtivos": "produt", "produto": "produt", "produtor": "produtor", "produtora": "produtor", "produtores": "produtor", "produtos": "produt", "produz": "produz", "produzem": "produz", "produzia": "produz", "produzida": "produz", "produzidas": "produz", "produzido": "produz", "produzidos": "produz", "produzindo": "produz", "produzir": "produz", "produzirá": "produz", "produziram": "produz", "produziremos": "produz", "produziu": "produz", "produzo": "produz", "proeminente": "proeminent", "proer": "pro", "proex": "proex", "proeza": "proez", "proezas": "proez", "profanação": "profan", "profecia": "profec", "profecias": "profec", "proferir": "profer", "professa": "profess", "professado": "profess", "professor": "professor", "professora": "professor", "professoras": "professor", "professores": "professor", "profeta": "profet", "profetas": "profet", "profética": "profét", "profile": "profil", "profissão": "profissã", "profissionais": "profission", "profissional": "profissional", "profissionalismo": "profissional", "profissionalíssima": "profissionalíssim", "profissionalização": "profissionaliz", "profissionalizante": "profissionaliz", "profissionalizantes": "profissionaliz", "profissionalmente": "profissional", "profissões": "profissõ", "profunda": "profund", "profundamente": "profund", "profundas": "profund", "profundidade": "profund", "profundidades": "profund", "profundo": "profund", "profundos": "profund", "profusão": "profusã", "prognósticos": "prognóst", "programa": "program", "programação": "program", "programações": "program", "programada": "program", "programado": "program", "programados": "program", "programar": "program", "programas": "program", "programática": "programát", "progredia": "progred", "progredido": "progred", "progredindo": "progred", "progredir": "progred", "progressão": "progressã", "progresso": "progress", "progressos": "progress", "progride": "progrid", "proíba": "proíb", "proíbe": "proíb", "proibia": "proib", "proibição": "proibiçã", "proibida": "proib", "proibidas": "proib", "proibido": "proib", "proibidos": "proib", "proibir": "proib", "proibisse": "proib", "proibiu": "proib", "proíbo": "proíb", "projeção": "projeçã", "projeções": "projeçõ", "projeta": "projet", "projetado": "projet", "projetados": "projet", "projetamos": "projet", "projetando": "projet", "projetar": "projet", "projéteis": "projét", "projétil": "projétil", "projetista": "projet", "projeto": "projet", "projetor": "projetor", "projetores": "projetor", "projetos": "projet", "projetou": "projet", "prol": "prol", "prole": "prol", "proletariado": "proletari", "proletário": "proletári", "prolifera": "prolif", "proliferação": "prolifer", "proliferaram": "prolifer", "prólogo": "prólog", "prolonga": "prolong", "prolongá": "prolong", "prolongado": "prolong", "prolongados": "prolong", "prolongar": "prolong", "prolongou": "prolong", "promessa": "promess", "promessas": "promess", "promete": "promet", "prometem": "promet", "prometemos": "promet", "prometendo": "promet", "prometeram": "promet", "prometeu": "promet", "prometi": "promet", "prometia": "promet", "prometida": "promet", "prometido": "promet", "promiscuidade": "promiscu", "promíscuo": "promíscu", "promissor": "promissor", "promissora": "promissor", "promissores": "promissor", "promissória": "promissór", "promissórias": "promissór", "promoção": "promoçã", "promocionais": "promocion", "promoções": "promoçõ", "promoter": "promot", "promotor": "promotor", "promotora": "promotor", "promotores": "promotor", "promotoria": "promotor", "promove": "promov", "promovem": "promov", "promovendo": "promov", "promover": "promov", "promoveram": "promov", "promoveu": "promov", "promovida": "promov", "promovido": "promov", "promovidos": "promov", "promulgação": "promulg", "promulgada": "promulg", "pronta": "pront", "prontamente": "pront", "prontas": "pront", "prontidão": "prontidã", "pronto": "pront", "prontos": "pront", "pronuncia": "pronunc", "pronúncia": "pronúnc", "pronunciada": "pronunc", "pronunciadas": "pronunc", "pronunciado": "pronunc", "pronunciamento": "pronunc", "pronunciamentos": "pronunc", "pronunciando": "pronunc", "pronunciar": "pronunc", "propagam": "propag", "propaganda": "propagand", "propagandas": "propagand", "propagandeado": "propagand", "propagandeados": "propagand", "propagandear": "propagand", "propagandeou": "propagand", "propagandista": "propagand", "propagandistas": "propagand", "propagando": "propag", "propalada": "propal", "propato": "propat", "propensão": "propensã", "propensas": "propens", "propensos": "propens", "propicia": "propic", "propiciam": "propic", "propiciará": "propic", "propício": "propíci", "propina": "propin", "propõe": "propõ", "propõem": "propõ", "proponho": "proponh", "propor": "propor", "proporção": "proporçã", "proporciona": "proporcion", "proporcionado": "proporcion", "proporcionados": "proporcion", "proporcionais": "proporcion", "proporcional": "proporcional", "proporcionando": "proporcion", "proporcionar": "proporcion", "proporcionaram": "proporcion", "proporcionaria": "proporcion", "proporcionou": "proporcion", "proporções": "proporçõ", "propôs": "propôs", "proposição": "proposiçã", "propositada": "proposit", "proposital": "proposital", "propositalmente": "proposital", "propósito": "propósit", "proposta": "propost", "propostas": "propost", "proposto": "propost", "própria": "própr", "propriamente": "propri", "próprias": "própr", "propriedade": "propriedad", "propriedades": "propriedad", "proprietária": "proprietár", "proprietário": "proprietári", "proprietários": "proprietári", "próprio": "própri", "próprios": "própri", "propulsão": "propulsã", "propulsora": "propulsor", "propunha": "propunh", "propus": "propus", "propusera": "propus", "prorroga": "prorrog", "pros": "pros", "prós": "prós", "prosa": "pros", "prosaica": "prosaic", "prosaico": "prosaic", "prosdócimo": "prosdócim", "prospecção": "prospecçã", "prospera": "prosp", "prosperar": "prosper", "prosperava": "prosper", "prosperidade": "prosper", "próspero": "prósper", "prósperos": "prósper", "prossegue": "prosseg", "prosseguimento": "prossegu", "prosseguir": "prossegu", "prostaciclina": "prostaciclin", "próstata": "próstat", "próstatas": "próstat", "prostate": "prostat", "prostatectomia": "prostatectom", "prostíbulo": "prostíbul", "prostíbulos": "prostíbul", "prostituição": "prostituiçã", "prostituir": "prostitu", "prostituta": "prostitut", "prostitutas": "prostitut", "prostrar": "prostr", "protagonista": "protagon", "protagonistas": "protagon", "protagoniza": "protagoniz", "protagonizada": "protagoniz", "protagonizado": "protagoniz", "protagonizando": "protagoniz", "protagonizaram": "protagoniz", "protagonizou": "protagoniz", "proteção": "proteçã", "protecionismo": "protecion", "protecionistas": "protecion", "proteções": "proteçõ", "protege": "proteg", "protegê": "proteg", "protegem": "proteg", "proteger": "proteg", "protegia": "proteg", "protegido": "proteg", "protegidos": "proteg", "proteína": "proteín", "proteínas": "proteín", "protelação": "protel", "prótese": "prótes", "próteses": "prótes", "protesta": "protest", "protestante": "protest", "protestantes": "protest", "protestantismo": "protestant", "protestar": "protest", "protesto": "protest", "protestos": "protest", "protestou": "protest", "protético": "protét", "protetor": "protetor", "protetores": "protetor", "protocol": "protocol", "protocolar": "protocol", "protocolo": "protocol", "proton": "proton", "protótipo": "protótip", "protuberâncias": "protuberânc", "proust": "proust", "prova": "prov", "provação": "provaçã", "provada": "prov", "provado": "prov", "provam": "prov", "provar": "prov", "provaram": "prov", "provas": "prov", "prováveis": "prov", "provável": "provável", "provavelmente": "provavel", "provedor": "provedor", "provedora": "provedor", "provedores": "provedor", "proveito": "proveit", "proveniente": "provenient", "provenientes": "provenient", "prover": "prov", "proveta": "provet", "providência": "provident", "providenciada": "providenc", "providenciam": "providenc", "providenciar": "providenc", "providenciaram": "providenc", "providências": "provident", "providenciou": "providenc", "província": "provínc", "províncias": "provínc", "provisões": "provisõ", "provisória": "provisór", "provisoriamente": "provisori", "provisórias": "provisór", "provisório": "provisóri", "provisórios": "provisóri", "provoca": "provoc", "provocação": "provoc", "provocada": "provoc", "provocadas": "provoc", "provocado": "provoc", "provocador": "provoc", "provocados": "provoc", "provocam": "provoc", "provocando": "provoc", "provocar": "provoc", "provocara": "provoc", "provocaram": "provoc", "provocaria": "provoc", "provocariam": "provoc", "provocasse": "provoc", "provocativa": "provoc", "provocativas": "provoc", "provocou": "provoc", "provoque": "provoqu", "provou": "prov", "próxima": "próxim", "próximas": "próxim", "proximidade": "proxim", "proximidades": "proxim", "próximo": "próxim", "próximos": "próx", "prozac": "prozac", "prudência": "prudênc", "prudente": "prudent", "prumo": "prum", "ps": "ps", "psa": "psa", "psb": "psb", "psdb": "psdb", "pseudo": "pseud", "psi": "psi", "psicanálise": "psicanális", "psicanalista": "psicanal", "psicanalistas": "psicanal", "psicobiologia": "psicobiolog", "psicobiólogo": "psicobiólog", "psicofarmacologia": "psicofarmacolog", "psicóloga": "psicólog", "psicologia": "psicolog", "psicológica": "psicológ", "psicologicamente": "psicolog", "psicológicas": "psicológ", "psicológico": "psicológ", "psicólogicos": "psicólog", "psicológicos": "psicológ", "psicólogo": "psicólog", "psicólogos": "psicólog", "psicopedagoga": "psicopedagog", "psicoses": "psicos", "psicossocial": "psicossocial", "psicoterapeuta": "psicoterapeut", "psicotrópicas": "psicotróp", "psicotrópico": "psicotróp", "psicotrópicos": "psicotróp", "psique": "psiqu", "psiquiatra": "psiquiatr", "psiquiatras": "psiquiatr", "psiquiatria": "psiquiatr", "psiquiátricas": "psiquiátr", "psiquiátrico": "psiquiátr", "psiquicamente": "psiquic", "psíquicas": "psíquic", "psquiatra": "psquiatr", "pt": "pt", "ptb": "ptb", "publica": "public", "pública": "públic", "publicação": "public", "publicações": "public", "publicada": "public", "publicadas": "public", "publicado": "public", "publicados": "public", "publicamente": "public", "publicar": "public", "publicaram": "public", "públicas": "públic", "publicava": "public", "publicavam": "public", "publicidade": "public", "publicis": "public", "publicitária": "publicitár", "publicitárias": "publicitár", "publicitário": "publicitári", "publicitários": "publicitári", "publico": "public", "público": "públic", "públicos": "públic", "publicou": "public", "publisher": "publish", "pubs": "pubs", "puc": "puc", "pucará": "puc", "puccini": "puccin", "pude": "pud", "puder": "pud", "pudera": "pud", "puderam": "pud", "puderem": "pud", "pudesse": "pud", "pudessem": "pud", "pueri": "puer", "pufe": "puf", "pula": "pul", "pulam": "pul", "pulando": "pul", "pular": "pul", "pulassem": "pul", "pulava": "pul", "pulavam": "pul", "pule": "pul", "puleiro": "puleir", "pulmão": "pulmã", "pulmões": "pulmõ", "pulmonar": "pulmon", "pulmonária": "pulmonár", "pulo": "pul", "pulou": "pul", "pulquéria": "pulquér", "pulsação": "pulsaçã", "pulseira": "pulseir", "pulso": "puls", "pulsos": "puls", "pululam": "pulul", "pulverizadas": "pulveriz", "pulverizado": "pulveriz", "pulverizados": "pulveriz", "pulverizou": "pulveriz", "pumpkins": "pumpkins", "puna": "pun", "pune": "pun", "punha": "punh", "punhado": "punh", "punhal": "punhal", "punho": "punh", "puni": "pun", "punição": "puniçã", "punições": "puniçõ", "punida": "pun", "punido": "pun", "punidos": "pun", "punindo": "pun", "punir": "pun", "punks": "punks", "pura": "pur", "puramente": "pur", "pureza": "purez", "purgativa": "purgat", "purismo": "purism", "puritanismo": "puritan", "puritano": "puritan", "puritanos": "puritan", "puro": "pur", "puros": "pur", "purple": "purpl", "puseram": "pus", "pustiglione": "pustiglion", "puta": "put", "puxa": "pux", "puxada": "pux", "puxados": "pux", "puxam": "pux", "puxando": "pux", "puxão": "puxã", "puxar": "pux", "puxaram": "pux", "puxou": "pux", "puzzi": "puzz", "pv": "pv", "q": "q", "quadra": "quadr", "quadrado": "quadr", "quadrados": "quadr", "quadras": "quadr", "quadril": "quadril", "quadrilha": "quadrilh", "quadrilhas": "quadrilh", "quadrinho": "quadrinh", "quadrinhos": "quadrinh", "quadris": "quadr", "quadro": "quadr", "quadros": "quadr", "quais": "qua", "quaisquer": "quaisqu", "qual": "qual", "qualidade": "qualidad", "qualidades": "qualidad", "qualificação": "qualific", "qualificações": "qualific", "qualificada": "qualific", "qualificadas": "qualific", "qualificado": "qualific", "qualificar": "qualific", "qualificaram": "qualific", "qualificativo": "qualific", "qualificou": "qualific", "qualitativas": "qualit", "qualitativo": "qualit", "quality": "quality", "qualquer": "qualqu", "quando": "quand", "quantas": "quant", "quantia": "quant", "quântica": "quântic", "quantidade": "quantidad", "quantidades": "quantidad", "quantificada": "quantific", "quantificar": "quantific", "quantitativas": "quantit", "quanto": "quant", "quantos": "quant", "quantum": "quantum", "quão": "quã", "quarenta": "quarent", "quaresma": "quaresm", "quarta": "quart", "quartas": "quart", "quarteirão": "quart", "quartéis": "quart", "quartel": "quartel", "quarteto": "quartet", "quartinho": "quartinh", "quarto": "quart", "quartos": "quart", "quase": "quas", "quatro": "quatr", "quatrocentões": "quatrocentõ", "qubilah": "qubilah", "que": "que", "quê": "quê", "quebra": "quebr", "quebrada": "quebr", "quebradas": "quebr", "quebradeira": "quebradeir", "quebrado": "quebr", "quebrados": "quebr", "quebramos": "quebr", "quebrando": "quebr", "quebrângulo": "quebrângul", "quebrante": "quebrant", "quebrar": "quebr", "quebraram": "quebr", "quebrarem": "quebr", "quebras": "quebr", "quebrassem": "quebr", "quebrava": "quebr", "quebrei": "quebr", "quebrem": "quebr", "quebrou": "quebr", "queda": "qued", "quedas": "qued", "quedistas": "quedist", "quêêê": "quêê", "queen": "queen", "queens": "queens", "queijo": "queij", "queima": "queim", "queimá": "queim", "queimada": "queim", "queimado": "queim", "queimados": "queim", "queimaduras": "queimadur", "queimam": "queim", "queimando": "queim", "queimar": "queim", "queimava": "queim", "queimou": "queim", "queira": "queir", "queiram": "que", "queiroga": "queirog", "queirós": "queirós", "queiroz": "queiroz", "queixa": "queix", "queixado": "queix", "queixam": "queix", "queixando": "queix", "queixar": "queix", "queixas": "queix", "queixavam": "queix", "queixo": "queix", "queixou": "queix", "queixumes": "queixum", "quela": "quel", "quelóides": "quelóid", "quem": "quem", "quênia": "quên", "quente": "quent", "quentes": "quent", "quer": "quer", "quércia": "quérc", "querela": "querel", "querem": "quer", "queremos": "quer", "querendo": "quer", "querer": "quer", "queria": "quer", "queriam": "quer", "queríamos": "quer", "querida": "quer", "queridinho": "queridinh", "querido": "quer", "querino": "querin", "quero": "quer", "querosene": "querosen", "quesito": "quesit", "quesitos": "quesit", "quest": "quest", "questão": "questã", "questiona": "question", "questionada": "question", "questionado": "question", "questionam": "question", "questionamentos": "question", "questionar": "question", "questiono": "question", "questionou": "question", "questões": "questõ", "quiabo": "quiab", "quicaram": "quic", "quickly": "quickly", "quieto": "quiet", "quietos": "quiet", "quilate": "quilat", "quilates": "quilat", "quilinhos": "quilinh", "quilo": "quil", "quilombo": "quilomb", "quilométricas": "quilométr", "quilométricos": "quilométr", "quilômetro": "quilômetr", "quilômetros": "quilômetr", "quilos": "quil", "química": "químic", "químicas": "químic", "químico": "químic", "químicos": "químic", "quimioterapia": "quimioterap", "quimioterápicos": "quimioteráp", "quimono": "quimon", "quincas": "quinc", "quinhão": "quinhã", "quinhentos": "quinhent", "quinn": "quinn", "quino": "quin", "quinta": "quint", "quintal": "quintal", "quintana": "quintan", "quintanilha": "quintanilh", "quintão": "quintã", "quintessência": "quintessent", "quintino": "quintin", "quinto": "quint", "quintos": "quint", "quintuplicou": "quintuplic", "quinze": "quinz", "quinzena": "quinzen", "quiosque": "quiosqu", "quis": "quis", "quisemos": "quis", "quiser": "quis", "quiseram": "quis", "quiserem": "quis", "quisesse": "quis", "quisessem": "quis", "quitação": "quitaçã", "quitado": "quit", "quitar": "quit", "quitinete": "quitinet", "quixotesco": "quixotesc", "quo": "quo", "quórum": "quórum", "quotidianamente": "quotidian", "r": "r", "ra": "ra", "rá": "rá", "raaf": "raaf", "rabelo": "rabel", "rabin": "rabin", "rabino": "rabin", "rabinovich": "rabinovich", "rabinovici": "rabinovic", "rabo": "rab", "rabugento": "rabugent", "raça": "rac", "ração": "raçã", "raças": "rac", "racha": "rach", "rachados": "rach", "rachadura": "rachadur", "rachas": "rach", "rachel": "rachel", "raciais": "rac", "racial": "racial", "raciocício": "raciocíci", "raciocina": "raciocin", "raciocínio": "raciocíni", "racionadas": "racion", "racionais": "racion", "racional": "racional", "racionalidade": "racional", "racionalismo": "racional", "racismo": "racism", "racistas": "racist", "radamés": "radamés", "radar": "rad", "radares": "rad", "radiação": "radiaçã", "radicado": "radic", "radicados": "radic", "radicais": "radic", "radical": "radical", "radicalismo": "radical", "radicalizou": "radicaliz", "radicalmente": "radical", "rádio": "rádi", "radioativa": "radioat", "radioativas": "radioat", "radioatividade": "radioat", "radiografia": "radiograf", "radiografou": "radiograf", "radiologia": "radiolog", "radiologista": "radiolog", "rádios": "rádi", "radiosa": "radios", "radiotécnica": "radiotécn", "radioterapeutas": "radioterapeut", "radioterapia": "radioterap", "radunz": "radunz", "rafael": "rafael", "rafaela": "rafael", "raga": "rag", "ragas": "rag", "ragsdale": "ragsdal", "rahim": "rahim", "raia": "rai", "raimar": "raim", "raimundo": "raimund", "rain": "rain", "rainer": "rain", "rainha": "rainh", "raio": "rai", "raios": "rai", "raiva": "raiv", "raivoso": "raivos", "raiz": "raiz", "raízes": "raíz", "rajada": "raj", "rajadas": "raj", "rala": "ral", "ralo": "ral", "ralos": "ral", "ralph": "ralph", "ralston": "ralston", "ram": "ram", "ramais": "ram", "ramalhete": "ramalhet", "ramalho": "ramalh", "ramallah": "ramallah", "rambo": "ramb", "ramey": "ramey", "ramirez": "ramirez", "ramírez": "ramírez", "ramiro": "ramir", "ramo": "ram", "ramon": "ramon", "ramos": "ram", "rampa": "ramp", "ranariddh": "ranariddh", "rancho": "ranch", "ranço": "ranc", "rancor": "rancor", "rançosa": "ranços", "rand": "rand", "random": "random", "randy": "randy", "ranelagh": "ranelagh", "rangel": "rangel", "ranger": "rang", "rangers": "rangers", "rangido": "rang", "ranheta": "ranhet", "ranieri": "ranier", "ranking": "ranking", "rap": "rap", "rapado": "rap", "rapadura": "rapadur", "rapaz": "rapaz", "rapazes": "rapaz", "rapaziada": "rapazi", "raphael": "raphael", "rapid": "rapid", "rápida": "ráp", "rapidamente": "rapid", "rápidas": "ráp", "rapidez": "rapidez", "rápido": "ráp", "rápidos": "ráp", "rapinado": "rapin", "raposo": "rapos", "rapper": "rapp", "rappers": "rappers", "raquel": "raquel", "raquetada": "raquet", "raquetadas": "raquet", "raquete": "raquet", "raquetes": "raquet", "raquíticas": "raquít", "rara": "rar", "raramente": "rar", "raras": "rar", "rarefeitas": "rarefeit", "rarefeito": "rarefeit", "raridade": "raridad", "raridades": "raridad", "raríssima": "raríssim", "raríssimas": "raríssim", "raríssimo": "raríssim", "raríssimos": "raríss", "rarities": "rariti", "raro": "rar", "raros": "rar", "rasas": "ras", "rasgado": "rasg", "rasgar": "rasg", "rasgaram": "rasg", "rasgo": "rasg", "rasi": "ras", "rasos": "ras", "raspadinha": "raspadinh", "raspadinhas": "raspadinh", "raspados": "rasp", "rastafári": "rastafár", "rastejando": "rastej", "rastejantes": "rastej", "rastreadas": "rastr", "rastreamento": "rastreament", "rastreando": "rastr", "rastro": "rastr", "ratas": "rat", "ratear": "rat", "ratificada": "ratific", "ratificado": "ratific", "ratificar": "ratific", "ratificassem": "ratific", "ratinho": "ratinh", "ratinhos": "ratinh", "rato": "rat", "ratoeira": "ratoeir", "ratón": "ratón", "ratos": "rat", "ratton": "ratton", "rauch": "rauch", "raul": "raul", "raupp": "raupp", "raw": "raw", "raymond": "raymond", "rayovac": "rayovac", "razão": "razã", "razoáveis": "razo", "razoável": "razoável", "razoavelmente": "razoavel", "razões": "razõ", "rbs": "rbs", "rda": "rda", "rdx": "rdx", "re": "re", "ré": "ré", "reabastecer": "reabastec", "reabastecimento": "reabastec", "reaberto": "reabert", "reabilita": "reabilit", "reabilitação": "reabilit", "reabilitado": "reabilit", "reabilitar": "reabilit", "reabrem": "reabr", "reabriram": "reabr", "reabsorção": "reabsorçã", "reação": "reaçã", "reacionária": "reacionár", "reações": "reaçõ", "readaptou": "readapt", "ready": "ready", "reafirma": "reafirm", "reafirmada": "reafirm", "reafirmam": "reafirm", "reafirmar": "reafirm", "reagan": "reagan", "reage": "reag", "reagem": "reag", "reagi": "reag", "reagindo": "reag", "reagir": "reag", "reagiram": "reag", "reagiriam": "reag", "reagissem": "reag", "reagiu": "reag", "reais": "rea", "reajo": "reaj", "reajuste": "reajust", "real": "real", "realça": "realc", "realejos": "realej", "reali": "real", "realidade": "realidad", "realidades": "realidad", "realismo": "realism", "realista": "realist", "realistas": "realist", "realisticamente": "realist", "realiza": "realiz", "realizá": "realiz", "realização": "realiz", "realizações": "realiz", "realizada": "realiz", "realizadas": "realiz", "realizado": "realiz", "realizados": "realiz", "realizam": "realiz", "realizando": "realiz", "realizar": "realiz", "realizaram": "realiz", "realizou": "realiz", "realmente": "realment", "reanimar": "reanim", "reaparecido": "reaparec", "reaprender": "reaprend", "reaprendeu": "reaprend", "reaproximação": "reaproxim", "reard": "reard", "rearranjos": "rearranj", "reativação": "reativ", "reativar": "reativ", "reavaliação": "reavali", "reavaliada": "reavali", "reaver": "reav", "rebaixado": "rebaix", "rebaixamento": "rebaix", "rebaixando": "rebaix", "rebanho": "rebanh", "rebanhos": "rebanh", "rebate": "rebat", "rebater": "rebat", "rebateu": "rebat", "rebatida": "rebat", "rebatidas": "rebat", "rebel": "rebel", "rebelar": "rebel", "rebelde": "rebeld", "rebeldes": "rebeld", "rebeldia": "rebeld", "rebelião": "rebeliã", "rebeliões": "rebeliõ", "rebelou": "rebel", "rebentos": "rebent", "rebites": "rebit", "rebolado": "rebol", "rebolando": "rebol", "reboque": "reboqu", "rebote": "rebot", "rebouças": "rebouc", "rebouçast": "rebouçast", "rebuliço": "rebulic", "recado": "rec", "recaem": "reca", "recai": "reca", "recaída": "recaíd", "recanto": "recant", "recapitalização": "recapitaliz", "recarrego": "recarreg", "recatado": "recat", "recebam": "receb", "recebe": "receb", "recebem": "receb", "recebendo": "receb", "receber": "receb", "receberá": "receb", "receberam": "receb", "receberia": "receb", "recebesse": "receb", "recebeu": "receb", "recebi": "receb", "recebia": "receb", "recebiam": "receb", "recebíamos": "receb", "recebida": "receb", "recebidas": "receb", "recebido": "receb", "recebidos": "receb", "recebimento": "receb", "recebimentos": "receb", "recebíveis": "recebív", "recebo": "receb", "receia": "rec", "receio": "recei", "receita": "receit", "receitada": "receit", "receitadas": "receit", "receitado": "receit", "receitados": "receit", "receitam": "receit", "receitar": "receit", "receitaram": "receit", "receitas": "receit", "receitasse": "receit", "receito": "receit", "receitou": "receit", "receituário": "receituári", "recém": "recém", "recena": "recen", "recente": "recent", "recentemente": "recent", "recentes": "recent", "recentíssimos": "recentíss", "recentraliza": "recentraliz", "receosa": "receos", "recepção": "recepçã", "recepcionados": "recepcion", "recepcionista": "recepcion", "receptáculos": "receptácul", "receptivas": "recept", "receptivo": "recept", "receptivos": "recept", "receptor": "receptor", "receptora": "receptor", "recessão": "recessã", "recessivos": "recess", "rechaçada": "rechac", "rechaçado": "rechac", "rechaçados": "rechac", "rechacei": "rechac", "recheada": "rech", "recheadas": "rech", "recheado": "rech", "recheados": "rech", "rechear": "rech", "recheia": "rech", "recheiam": "rech", "recheio": "rechei", "recheou": "rech", "reciclada": "recicl", "reciclagem": "reciclag", "reciclar": "recicl", "recife": "recif", "recinto": "recint", "recipientes": "recipient", "recíproco": "recíproc", "recitação": "recit", "recitais": "recit", "recitam": "recit", "reclama": "reclam", "reclamação": "reclam", "reclamações": "reclam", "reclamado": "reclam", "reclamam": "reclam", "reclamando": "reclam", "reclamar": "reclam", "reclamaram": "reclam", "reclamava": "reclam", "reclamou": "reclam", "reclusão": "reclusã", "recoleta": "recolet", "recolhendo": "recolh", "recolher": "recolh", "recolheram": "recolh", "recolheu": "recolh", "recolhidas": "recolh", "recolhido": "recolh", "recolhidos": "recolh", "recolhimento": "recolh", "recolocá": "recoloc", "recolocação": "recoloc", "recolocar": "recoloc", "recombinação": "recombin", "recomeçar": "recomec", "recomenda": "recomend", "recomendação": "recomend", "recomendações": "recomend", "recomendada": "recomend", "recomendadas": "recomend", "recomendado": "recomend", "recomendados": "recomend", "recomendam": "recomend", "recomendar": "recomend", "recomendava": "recomend", "recomendável": "recomend", "recomendo": "recom", "recomendou": "recomend", "recompensa": "recompens", "recompensado": "recompens", "recompensadoras": "recompens", "recompensas": "recompens", "recompor": "recompor", "recomposição": "recomposiçã", "recomprar": "recompr", "recomprou": "recompr", "reconciliação": "reconcili", "reconfirmar": "reconfirm", "reconfortante": "reconfort", "reconheça": "reconhec", "reconhece": "reconhec", "reconhecê": "reconhec", "reconhecem": "reconhec", "reconhecer": "reconhec", "reconheceram": "reconhec", "reconhecessem": "reconhec", "reconheceu": "reconhec", "reconhecida": "reconhec", "reconhecidas": "reconhec", "reconhecido": "reconhec", "reconhecidos": "reconhec", "reconhecimento": "reconhec", "reconheço": "reconhec", "reconquista": "reconqu", "reconstituição": "reconstituiçã", "reconstroem": "reconstro", "reconstrução": "reconstruçã", "reconstruir": "reconstru", "recontratar": "recontrat", "reconversão": "reconversã", "reconvidar": "reconvid", "record": "record", "recorda": "record", "recordações": "record", "recorde": "record", "recordes": "record", "recordista": "record", "records": "records", "recorre": "recorr", "recorrem": "recorr", "recorrendo": "recorr", "recorrente": "recorrent", "recorrentes": "recorrent", "recorrer": "recorr", "recorrerá": "recorr", "recorreu": "recorr", "recorrido": "recorr", "recorte": "recort", "recortes": "recort", "recostado": "recost", "recostar": "recost", "recou": "rec", "recreação": "recreaçã", "recreativo": "recreat", "recriar": "recri", "recrimina": "recrimin", "recriminaria": "recrimin", "recruta": "recrut", "recrutados": "recrut", "recrutamento": "recrut", "recrutando": "recrut", "recrutou": "recrut", "recua": "recu", "recuar": "recu", "recuo": "recu", "recuou": "recu", "recupera": "recup", "recuperá": "recup", "recuperação": "recuper", "recuperada": "recuper", "recuperado": "recuper", "recuperam": "recup", "recuperando": "recuper", "recuperar": "recuper", "recuperaram": "recuper", "recuperei": "recup", "recuperou": "recuper", "recurso": "recurs", "recursos": "recurs", "recusa": "recus", "recusá": "recus", "recusada": "recus", "recusado": "recus", "recusam": "recus", "recusamos": "recus", "recusar": "recus", "recusaria": "recus", "recusas": "recus", "recusava": "recus", "recusem": "recus", "recusou": "recus", "red": "red", "redação": "redaçã", "redator": "redator", "rede": "red", "redefinir": "redefin", "redemocratização": "redemocratiz", "redemoinho": "redemoinh", "redenção": "redençã", "redentor": "redentor", "redentora": "redentor", "redentoras": "redentor", "redes": "red", "redescobre": "redescobr", "redescobrindo": "redescobr", "redescobriu": "redescobr", "redesenhando": "redesenh", "redigia": "redig", "redigido": "redig", "redigindo": "redig", "redigir": "redig", "redimensionando": "redimension", "redobra": "redobr", "redonda": "redond", "redondo": "redond", "redor": "redor", "redoxon": "redoxon", "redução": "reduçã", "reduções": "reduçõ", "reductil": "reductil", "redundância": "redund", "redundou": "redund", "reduto": "redut", "redutor": "redutor", "redux": "redux", "reduz": "reduz", "reduza": "reduz", "reduzam": "reduz", "reduzem": "reduz", "reduzi": "reduz", "reduzia": "reduz", "reduzida": "reduz", "reduzidas": "reduz", "reduzido": "reduz", "reduzidos": "reduz", "reduzindo": "reduz", "reduzir": "reduz", "reduziram": "reduz", "reduzirem": "reduz", "reduziu": "reduz", "reedita": "reedit", "reeditado": "reedit", "reeduca": "reeduc", "reeducação": "reeduc", "reelaborar": "reelabor", "reeleição": "reeleiçã", "reeleito": "reeleit", "reeleitorais": "reeleitor", "reeleitoral": "reeleitoral", "reencarnação": "reencarn", "reencarnada": "reencarn", "reencarnar": "reencarn", "reencontrar": "reencontr", "reencontro": "reencontr", "reengenharia": "reengenh", "reequilibrando": "reequilibr", "reequilibrar": "reequilibr", "reerguê": "reerg", "reerguer": "reergu", "reerguida": "reergu", "reerguido": "reergu", "reestruturação": "reestrutur", "reestruturações": "reestrutur", "reestruturando": "reestrutur", "reeve": "reev", "reexportações": "reexport", "reexportar": "reexport", "refaço": "refac", "refaz": "refaz", "refazê": "refaz", "refazer": "refaz", "refazerem": "refaz", "refeição": "refeiçã", "refeições": "refeiçõ", "refeitas": "refeit", "refeitórios": "refeitóri", "refém": "refém", "reféns": "reféns", "refere": "refer", "referem": "ref", "referência": "referent", "referências": "referent", "referendo": "refer", "referente": "referent", "referentes": "referent", "referia": "ref", "referiam": "ref", "referido": "refer", "referindo": "refer", "referiu": "refer", "refestela": "refestel", "refez": "refez", "refilmagem": "refilmag", "refinadas": "refin", "refinado": "refin", "refinados": "refin", "refinanciamento": "refinanc", "refino": "refin", "reflete": "reflet", "refletem": "reflet", "refletida": "reflet", "refletindo": "reflet", "refletir": "reflet", "refletiu": "reflet", "refletor": "refletor", "reflexão": "reflexã", "reflexo": "reflex", "reflexões": "reflexõ", "reflexos": "reflex", "reflita": "reflit", "refogar": "refog", "reforça": "reforc", "reforçam": "reforc", "reforçando": "reforc", "reforçar": "reforc", "reforço": "reforc", "reforçou": "reforc", "reforma": "reform", "reformado": "reform", "reformar": "reform", "reformaram": "reform", "reformas": "reform", "reformista": "reform", "reformou": "reform", "reformulando": "reformul", "reformular": "reformul", "refrão": "refrã", "refrãos": "refrã", "refrãozinho": "refrãozinh", "refratárias": "refratár", "refrear": "refr", "refrega": "refreg", "refrescada": "refresc", "refresco": "refresc", "refrigeração": "refriger", "refrigerante": "refriger", "refrigerantes": "refriger", "refugiam": "refug", "refugiavam": "refugi", "refúgio": "refúgi", "refúgios": "refúgi", "refugiou": "refugi", "refutam": "refut", "refutar": "refut", "refutaram": "refut", "regada": "reg", "rege": "reg", "regência": "regênc", "regeneração": "regener", "regenerado": "regener", "regenerar": "regener", "regenerem": "regen", "regentes": "regent", "reggae": "regga", "régia": "rég", "região": "regiã", "regiãono": "regiãon", "regida": "reg", "regime": "regim", "regimento": "regiment", "regimes": "regim", "regina": "regin", "reginaldo": "reginald", "régine": "régin", "regiões": "regiõ", "regionais": "region", "regional": "regional", "regionalismos": "regional", "régis": "rég", "registra": "registr", "registrá": "registr", "registrada": "registr", "registradas": "registr", "registrado": "registr", "registradora": "registr", "registradoras": "registr", "registrados": "registr", "registral": "registral", "registram": "registr", "registrando": "registr", "registrar": "registr", "registraram": "registr", "registrasse": "registr", "registre": "registr", "registrei": "registr", "registrem": "registr", "registro": "registr", "registros": "registr", "registrou": "registr", "regra": "regr", "regrada": "regr", "regrado": "regr", "regras": "regr", "regravação": "regrav", "regravações": "regrav", "regressiva": "regress", "régua": "régu", "regula": "regul", "regulador": "regul", "regulados": "regul", "regulamentação": "regulament", "regulamentada": "regulament", "regulamentado": "regulament", "regulamentando": "regulament", "regulamentar": "regulament", "regulamento": "regul", "regulamentos": "regul", "regular": "regul", "regulares": "regul", "regularmente": "regular", "regulavam": "regul", "rei": "rei", "reimão": "reimã", "reina": "rein", "reinach": "reinach", "reinado": "rein", "reinaldo": "reinald", "reinam": "rein", "reinante": "reinant", "reinaram": "rein", "reinauguração": "reinaugur", "reinava": "rein", "reincidência": "reincident", "reincidências": "reincident", "reincidir": "reincid", "reinhold": "reinhold", "reino": "rein", "reinou": "rein", "reintegração": "reintegr", "reintegrados": "reintegr", "reinventado": "reinvent", "reinvestido": "reinvest", "reinvestimento": "reinvest", "reinvestimentos": "reinvest", "reinvindicando": "reinvindic", "reis": "reis", "reitor": "reitor", "reitoria": "reitor", "reivindica": "reivind", "reivindicação": "reivindic", "reivindicações": "reivindic", "reivindicada": "reivindic", "reivindicam": "reivindic", "reivindicamos": "reivindic", "rejeição": "rejeiçã", "rejeita": "rejeit", "rejeitar": "rejeit", "rejeitou": "rejeit", "rejuvenescida": "rejuvenesc", "relação": "relaçã", "relacinados": "relacin", "relaciona": "relacion", "relacionada": "relacion", "relacionadas": "relacion", "relacionado": "relacion", "relacionados": "relacion", "relacionam": "relacion", "relacionamento": "relacion", "relacionamentos": "relacion", "relacionando": "relacion", "relacionar": "relacion", "relacionei": "relacion", "relacionou": "relacion", "relações": "relaçõ", "relâmpago": "relâmpag", "relampeado": "relamp", "relançado": "relanc", "relançamento": "relanc", "relançando": "relanc", "relancei": "relanc", "relapso": "relaps", "relata": "relat", "relatado": "relat", "relatados": "relat", "relatando": "relat", "relatar": "relat", "relataram": "relat", "relativa": "relat", "relativamente": "relat", "relativas": "relat", "relatividade": "relat", "relativo": "relat", "relativos": "relat", "relato": "relat", "relator": "relator", "relatores": "relator", "relatorias": "relator", "relatório": "relatóri", "relatórios": "relatóri", "relatos": "relat", "relatou": "relat", "relax": "relax", "relaxa": "relax", "relaxado": "relax", "relaxados": "relax", "relaxamento": "relax", "relaxante": "relax", "relaxar": "relax", "relaxou": "relax", "relé": "rel", "release": "releas", "relegado": "releg", "releitura": "releitur", "relembra": "relembr", "reler": "rel", "relevância": "relev", "relevante": "relev", "relevantes": "relev", "relevo": "relev", "religi": "relig", "religião": "religiã", "religiões": "religiõ", "religiosa": "religi", "religiosamente": "religi", "religiosas": "religi", "religiosidade": "religios", "religioso": "religi", "religiosos": "religi", "relíquia": "relíqu", "relíquias": "relíqu", "relocalização": "relocaliz", "relógio": "relógi", "relógios": "relógi", "relutância": "relut", "reluzente": "reluzent", "rem": "rem", "remando": "rem", "remanejamentos": "remanej", "remanejou": "remanej", "remanescente": "remanescent", "remasterizada": "remasteriz", "rembrant": "rembrant", "remédio": "remédi", "remédios": "remédi", "remessa": "remess", "remessas": "remess", "remi": "rem", "reminiscências": "reminiscent", "remoção": "remoçã", "remodelar": "remodel", "remondini": "remondin", "remonta": "remont", "remontam": "remont", "remontar": "remont", "remontaram": "remont", "remota": "remot", "remotas": "remot", "remotíssima": "remotíssim", "remoto": "remot", "remotos": "remot", "remove": "remov", "removeu": "remov", "remuneração": "remuner", "remunerada": "remuner", "remunerados": "remuner", "renais": "ren", "renaissance": "renaissanc", "renal": "renal", "renan": "renan", "renasce": "renasc", "renascença": "renascenc", "renascer": "renasc", "renascidos": "renasc", "renascimento": "renasc", "renata": "renat", "renato": "renat", "renault": "renault", "renda": "rend", "rendá": "rend", "rendadas": "rend", "rende": "rend", "rendeira": "rendeir", "rendem": "rend", "render": "rend", "renderam": "rend", "rendeu": "rend", "rendia": "rend", "rendição": "rendiçã", "rendido": "rend", "rendimento": "rendiment", "rendimentos": "rendiment", "renê": "ren", "renée": "rené", "renegociação": "renegoc", "renegociações": "renegoc", "renegociada": "renegoc", "renegociando": "renegoc", "renegociaram": "renegoc", "renew": "renew", "renina": "renin", "renitente": "renitent", "renner": "renn", "renoir": "reno", "renomadas": "renom", "renomado": "renom", "renomados": "renom", "renome": "renom", "renova": "renov", "renovação": "renov", "renovadas": "renov", "renovado": "renov", "renovador": "renov", "renovados": "renov", "renovam": "renov", "renovando": "renov", "renovar": "renov", "renovaram": "renov", "renováveis": "renov", "renovou": "renov", "rentabilidade": "rentabil", "rental": "rental", "rentáveis": "rent", "rentável": "rentável", "rentinho": "rentinh", "renúncia": "renúnc", "renunciamos": "renunc", "renunciar": "renunc", "renunciarem": "renunc", "reordenar": "reorden", "reorganização": "reorganiz", "reorganizado": "reorganiz", "reorganizar": "reorganiz", "repara": "rep", "reparação": "repar", "reparam": "rep", "reparar": "repar", "reparo": "repar", "repartição": "repartiçã", "repartições": "repartiçõ", "repassa": "repass", "repassá": "repass", "repassam": "repass", "repassar": "repass", "repasse": "rep", "repassou": "repass", "repensar": "repens", "repensou": "repens", "repente": "repent", "repentina": "repentin", "repentino": "repentin", "repercussão": "repercussã", "repertório": "repertóri", "repertórios": "repertóri", "repete": "repet", "repetem": "repet", "repetência": "repetent", "repetente": "repetent", "repetentes": "repetent", "repeti": "repet", "repetida": "repet", "repetidas": "repet", "repetido": "repet", "repetidoras": "repetidor", "repetindo": "repet", "repetir": "repet", "repetitivas": "repetit", "repetitivo": "repetit", "repetiu": "repet", "repitam": "repit", "replantar": "replant", "repleta": "replet", "repletas": "replet", "repleto": "replet", "repletos": "replet", "réplica": "réplic", "replicar": "replic", "réplicas": "réplic", "repolho": "repolh", "repolhos": "repolh", "repor": "repor", "reportagem": "reportag", "reportagens": "reportagens", "repórter": "repórt", "repórteres": "repórt", "reporters": "reporters", "reposição": "reposiçã", "reposto": "repost", "repouso": "repous", "repreende": "repreend", "repreendendo": "repreend", "repreendeu": "repreend", "repreendida": "repreend", "represa": "repres", "represado": "repres", "represálias": "represál", "represamento": "repres", "representa": "represent", "representação": "represent", "representações": "represent", "representada": "represent", "representado": "represent", "representados": "represent", "representam": "represent", "representando": "represent", "representante": "represent", "representantes": "represent", "representar": "represent", "representaram": "represent", "representativa": "represent", "representativas": "represent", "representava": "represent", "representavam": "represent", "represento": "represent", "representou": "represent", "repressão": "repressã", "repressor": "repressor", "repressores": "repressor", "reprima": "reprim", "reprimem": "reprim", "reprimir": "reprim", "reprisados": "repris", "reprodução": "reproduçã", "reprodutor": "reprodutor", "reprodutora": "reprodutor", "reproduz": "reproduz", "reproduzem": "reproduz", "reproduzida": "reproduz", "reproduzido": "reproduz", "reproduzindo": "reproduz", "reproduzir": "reproduz", "reproduziram": "reproduz", "reproduziu": "reproduz", "reprovação": "reprov", "reprovada": "reprov", "reprovados": "reprov", "reprovável": "reprov", "reprovou": "reprov", "répteis": "répt", "república": "repúbl", "republicana": "republican", "republicano": "republican", "republicanos": "republican", "repúblicas": "repúbl", "republiqueta": "republiquet", "repudiado": "repudi", "repudiando": "repudi", "repúdio": "repúdi", "repudiou": "repudi", "repugnância": "repugn", "repugnante": "repugn", "repulsa": "repuls", "reputação": "reput", "reputadas": "reput", "reputado": "reput", "requebram": "requebr", "requebrar": "requebr", "requer": "requ", "requerimento": "requer", "requião": "requiã", "requinte": "requint", "requintes": "requint", "requisitadas": "requisit", "requisitado": "requisit", "requisitados": "requisit", "requisito": "requisit", "requisitos": "requisit", "requisitou": "requisit", "rerngchai": "rerngcha", "rescaldo": "rescald", "rescisória": "rescisór", "research": "research", "resende": "resend", "reserva": "reserv", "reservada": "reserv", "reservado": "reserv", "reservados": "reserv", "reservas": "reserv", "reservatórios": "reservatóri", "reservou": "reserv", "resfriado": "resfri", "resfriados": "resfri", "resgaste": "resg", "resgata": "resgat", "resgatá": "resgat", "resgatar": "resgat", "resgate": "resgat", "resgatou": "resgat", "reside": "resid", "residem": "resid", "residência": "resident", "residenciais": "residenc", "residencial": "residencial", "residências": "resident", "residente": "resident", "residentes": "resident", "residia": "resid", "residindo": "resid", "residir": "resid", "residiu": "resid", "residuográfico": "residuográf", "resíduos": "resídu", "resigna": "resign", "resistam": "resist", "resiste": "res", "resistem": "resist", "resistência": "resistent", "resistências": "resistent", "resisti": "resist", "resistindo": "resist", "resistir": "resist", "resistiram": "resist", "resistiu": "resist", "resisto": "resist", "resmaterização": "resmateriz", "resmaterizada": "resmateriz", "resmaterizadas": "resmateriz", "resmungava": "resmung", "resmungou": "resmung", "resolução": "resoluçã", "resolve": "resolv", "resolvem": "resolv", "resolvemos": "resolv", "resolvendo": "resolv", "resolver": "resolv", "resolvera": "resolv", "resolveram": "resolv", "resolveria": "resolv", "resolvesse": "resolv", "resolveu": "resolv", "resolvi": "resolv", "resolviam": "resolv", "resolvida": "resolv", "resolvido": "resolv", "resolvidos": "resolv", "resolvo": "resolv", "resort": "resort", "resources": "resourc", "respalda": "respald", "respaldada": "respald", "respaldo": "respald", "respectivamente": "respect", "respectivas": "respect", "respeita": "respeit", "respeitá": "respeit", "respeitabilidade": "respeit", "respeitada": "respeit", "respeitadas": "respeit", "respeitadíssimo": "respeitadíssim", "respeitado": "respeit", "respeitados": "respeit", "respeitam": "respeit", "respeitamos": "respeit", "respeitando": "respeit", "respeitar": "respeit", "respeitaram": "respeit", "respeitarem": "respeit", "respeitáveis": "respeit", "respeitável": "respeit", "respeito": "respeit", "respeitosa": "respeit", "respeitoso": "respeit", "respira": "resp", "respiração": "respir", "respiram": "resp", "respirando": "respir", "respirar": "respir", "respiratória": "respiratór", "respiratórios": "respiratóri", "respirava": "respir", "respirou": "respir", "responda": "respond", "responde": "respond", "respondem": "respond", "respondemos": "respond", "respondendo": "respond", "responder": "respond", "responderam": "respond", "respondeu": "respond", "respondi": "respond", "respondia": "respond", "respondida": "respond", "respondo": "respond", "responsabilidade": "respons", "responsabilidades": "respons", "responsabiliza": "responsabiliz", "responsabilizá": "responsabiliz", "responsabilizada": "responsabiliz", "responsáveis": "respons", "responsável": "respons", "resposta": "respost", "respostas": "respost", "resquícios": "resquíci", "ressaca": "ressac", "ressalta": "ressalt", "ressaltadas": "ressalt", "ressaltados": "ressalt", "ressaltam": "ressalt", "ressaltar": "ressalt", "ressaltou": "ressalt", "ressalva": "ressalv", "ressalvando": "ressalv", "ressalvas": "ressalv", "ressarcimento": "ressarc", "ressecadas": "ressec", "ressecado": "ressec", "ressecamento": "ressec", "ressente": "ressent", "ressentem": "ressent", "ressentimento": "ressent", "ressentimentos": "ressent", "ressonância": "resson", "ressonaria": "resson", "ressou": "ress", "ressu": "ressu", "ressurge": "ressurg", "ressurgem": "ressurg", "ressurgimento": "ressurg", "ressurgiram": "ressurg", "ressurreição": "ressurreiçã", "ressuscita": "ressuscit", "ressuscitar": "ressuscit", "ressuscitaram": "ressuscit", "resta": "rest", "restam": "rest", "restante": "restant", "restantes": "restant", "restará": "rest", "restaram": "rest", "restaria": "rest", "restasse": "rest", "restauração": "restaur", "restaurant": "restaurant", "restaurante": "restaur", "restaurantes": "restaur", "restaurar": "restaur", "restaurateurs": "restaurateurs", "restava": "rest", "restavam": "rest", "restituição": "restituiçã", "resto": "rest", "restos": "rest", "restou": "rest", "restrição": "restriçã", "restrições": "restriçõ", "restringe": "restring", "restringir": "restring", "restrita": "restrit", "restrito": "restrit", "resulta": "result", "resultado": "result", "resultados": "result", "resultam": "result", "resultante": "result", "resultantes": "result", "resultar": "result", "resultaram": "result", "resultarem": "result", "resultaria": "result", "resultava": "result", "resultou": "result", "resume": "resum", "resumem": "resum", "resumida": "resum", "resumido": "resum", "resumindo": "resum", "resumiu": "resum", "resumo": "resum", "resvalam": "resval", "reta": "ret", "retal": "retal", "retalhado": "retalh", "retaliação": "retali", "retaliações": "retali", "retangular": "retangul", "retardam": "retard", "retardar": "retard", "retas": "ret", "retê": "ret", "retém": "retém", "retenção": "retençã", "reter": "ret", "reteve": "retev", "reticente": "reticent", "reticentes": "reticent", "retida": "ret", "retido": "ret", "retina": "retin", "retira": "ret", "retirada": "retir", "retiradas": "retir", "retirado": "retir", "retirados": "retir", "retiram": "ret", "retirando": "retir", "retirar": "retir", "retiraram": "retir", "retirasse": "retir", "retirassem": "retir", "retiro": "retir", "retirou": "retir", "reto": "ret", "retocando": "retoc", "retocar": "retoc", "retoma": "retom", "retomada": "retom", "retomando": "retom", "retomar": "retom", "retomei": "retom", "retomou": "retom", "retorcidas": "retorc", "retorcidos": "retorc", "retórica": "retór", "retorna": "retorn", "retornam": "retorn", "retornamos": "retorn", "retornando": "retorn", "retornar": "retorn", "retorno": "retorn", "retornos": "retorn", "retornou": "retorn", "retrabalhar": "retrabalh", "retrair": "retra", "retranca": "retranc", "retrancas": "retranc", "retransmissoras": "retransmissor", "retransmitia": "retransmit", "retrasada": "retras", "retrasado": "retras", "retrata": "retrat", "retratado": "retrat", "retratam": "retrat", "retratar": "retrat", "retráteis": "retrát", "retrato": "retrat", "retratos": "retrat", "retribui": "retribu", "retroativo": "retroat", "retrocesso": "retrocess", "retrospectiva": "retrospect", "retrospecto": "retrospect", "retruca": "retruc", "retrucou": "retruc", "retumbante": "retumb", "réu": "réu", "reumática": "reumát", "reumatismo": "reumat", "reúne": "reún", "reúnem": "reún", "reuni": "reun", "reunia": "reun", "reunião": "reuniã", "reunida": "reun", "reunidas": "reun", "reunido": "reun", "reunidos": "reun", "reunificação": "reunific", "reunimos": "reun", "reuniões": "reuniõ", "reunir": "reun", "reuniram": "reun", "reuniu": "reun", "reúno": "reún", "réus": "réus", "revalorização": "revaloriz", "revanche": "revanch", "reveillon": "reveillon", "réveillon": "réveillon", "revela": "revel", "revelação": "revel", "revelações": "revel", "reveladas": "revel", "revelado": "revel", "reveladora": "revel", "reveladores": "revel", "revelam": "revel", "revelando": "revel", "revelar": "revel", "revelaram": "revel", "revelasse": "revel", "revelava": "revel", "revelou": "revel", "revenda": "revend", "revende": "revend", "revendê": "revend", "revendedoras": "revendedor", "revendem": "revend", "revender": "revend", "revendo": "rev", "rever": "rev", "reverberada": "reverber", "reverência": "reverent", "reverenciado": "reverenc", "reverenciam": "reverenc", "reverenciar": "reverenc", "reverendo": "rever", "reverente": "reverent", "reversão": "reversã", "reversor": "reversor", "revertam": "revert", "reverter": "revert", "reverteria": "revert", "revertério": "revertéri", "reverteu": "revert", "revertida": "revert", "revesti": "revest", "revestimentos": "revest", "revezar": "revez", "revezava": "revez", "revezou": "revez", "revidar": "revid", "revidavam": "revid", "revidou": "revid", "revigoradas": "revigor", "revigorado": "revigor", "revirando": "revir", "revirassem": "revir", "reviravolta": "reviravolt", "revisa": "revis", "revisadas": "revis", "revisão": "revisã", "revista": "revist", "revistas": "revist", "revistinhas": "revistinh", "revisto": "revist", "revitalizar": "revitaliz", "revitalizaram": "revitaliz", "reviu": "rev", "revival": "revival", "revive": "reviv", "revivendo": "reviv", "reviver": "reviv", "revlon": "revlon", "revogada": "revog", "revolta": "revolt", "revoltadas": "revolt", "revoltado": "revolt", "revoltados": "revolt", "revoltaram": "revolt", "revoltas": "revolt", "revolução": "revoluçã", "revolucionado": "revolucion", "revolucionar": "revolucion", "revolucionária": "revolucionár", "revolucionárias": "revolucionár", "revolucionário": "revolucionári", "revolucionou": "revolucion", "revoluções": "revoluçõ", "revólver": "revólv", "revot": "revot", "revson": "revson", "rex": "rex", "reza": "rez", "rezar": "rez", "rezas": "rez", "rezende": "rezend", "rezo": "rez", "rezou": "rez", "rg": "rg", "rgs": "rgs", "rh": "rh", "rhodia": "rhod", "rhône": "rhôn", "ri": "ri", "riachuelo": "riachuel", "riam": "riam", "ribamar": "ribam", "ribanceiras": "ribanceir", "ribeirão": "rib", "ribeiras": "ribeir", "ribeirinhas": "ribeirinh", "ribeiro": "ribeir", "rica": "ric", "ricaços": "ricac", "ricardo": "ricard", "ricas": "ric", "richard": "richard", "richieri": "richier", "rick": "rick", "rico": "ric", "ricos": "ric", "ricota": "ricot", "ríctus": "ríctus", "ricupero": "ricuper", "riddle": "riddl", "rider": "rid", "ridícula": "ridícul", "ridicularizando": "ridiculariz", "ridículas": "ridícul", "ridículo": "ridícul", "ridículos": "ridícul", "rifkin": "rifkin", "rifle": "rifl", "rifles": "rifl", "rígida": "ríg", "rigidez": "rigidez", "rígido": "ríg", "rígidos": "ríg", "rigor": "rigor", "rigorosa": "rigor", "rigorosamente": "rigor", "rigorosas": "rigor", "rigorosíssima": "rigorosíssim", "rigoroso": "rigor", "rigorosos": "rigor", "rija": "rij", "rim": "rim", "rima": "rim", "rímel": "rímel", "rimini": "rimin", "rincão": "rincã", "rindo": "rind", "rindt": "rindt", "ringo": "ring", "ringue": "ring", "ringues": "ringu", "rins": "rins", "rinse": "rins", "rio": "rio", "riocentro": "riocentr", "rioja": "rioj", "rios": "rios", "riquenha": "riquenh", "riqueza": "riquez", "riquezas": "riquez", "riquinho": "riquinh", "riquíssimo": "riquíssim", "rir": "rir", "risadas": "ris", "risca": "risc", "risco": "risc", "riscos": "risc", "riscou": "risc", "rising": "rising", "risível": "risível", "riso": "ris", "risos": "ris", "ríspida": "rísp", "rispidamente": "rispid", "ríspido": "rísp", "ríspidos": "rísp", "rita": "rit", "ritchie": "ritchi", "ritmado": "ritm", "rítmica": "rítmic", "rítmicas": "rítmic", "ritmistas": "ritmist", "ritmo": "ritm", "ritmos": "ritm", "rito": "rit", "ritos": "rit", "rituais": "ritu", "ritual": "ritual", "riu": "riu", "rivais": "riv", "rival": "rival", "rivalidade": "rival", "rivalidades": "rival", "rivalizam": "rivaliz", "rivelino": "rivelin", "rivero": "river", "riviera": "rivi", "rivotril": "rivotril", "rj": "rj", "rm": "rm", "rmão": "rmã", "rn": "rn", "ro": "ro", "rô": "rô", "road": "road", "robb": "robb", "robe": "rob", "robert": "robert", "roberta": "robert", "roberti": "robert", "roberto": "robert", "roberts": "roberts", "robespierre": "robespierr", "robin": "robin", "robles": "robl", "robô": "robô", "robortella": "robortell", "robru": "robru", "robson": "robson", "robusta": "robust", "roça": "roc", "roçado": "roc", "roceiro": "roceir", "rocha": "roch", "rochas": "roch", "rochedo": "roched", "rochelle": "rochell", "rochester": "rochest", "rochosa": "rochos", "rochosos": "rochos", "rocinha": "rocinh", "rock": "rock", "rockefeller": "rockefell", "rockfeller": "rockfell", "rockies": "rocki", "rococó": "rococ", "rod": "rod", "roda": "rod", "rodada": "rod", "rodadas": "rod", "rodado": "rod", "rodam": "rod", "rodando": "rod", "rodar": "rod", "rodas": "rod", "rodavam": "rod", "rodeada": "rod", "rodeados": "rod", "rodeia": "rod", "rodeiam": "rod", "rodeios": "rodei", "rodinha": "rodinh", "rodinhas": "rodinh", "rodízio": "rodízi", "rodo": "rod", "rodolfo": "rodolf", "rodonave": "rodonav", "rodopiando": "rodopi", "rodovia": "rodov", "rodoviária": "rodoviár", "rodoviário": "rodoviári", "rodoviários": "rodoviári", "rodovias": "rodov", "rodrigo": "rodrig", "rodrigues": "rodrigu", "rodriguez": "rodriguez", "rodríguez": "rodríguez", "roer": "roer", "rogelio": "rogeli", "roger": "rog", "rogéria": "rogér", "rogerio": "rogeri", "rogério": "rogéri", "roitman": "roitman", "rol": "rol", "rola": "rol", "rolagem": "rolag", "rolagens": "rolagens", "rolam": "rol", "roland": "roland", "rolando": "rol", "rolar": "rol", "rolaram": "rol", "rôle": "rôl", "rolê": "rol", "rolês": "rolês", "roleta": "rolet", "roletas": "rolet", "rolex": "rolex", "rolhas": "rolh", "rolim": "rolim", "roll": "roll", "rolling": "rolling", "rollins": "rollins", "rolls": "rolls", "rolo": "rol", "rolou": "rol", "rom": "rom", "roma": "rom", "romana": "roman", "romance": "romanc", "romances": "romanc", "romano": "roman", "romanos": "roman", "romântica": "românt", "românticas": "românt", "romantico": "romant", "romântico": "românt", "românticos": "românt", "romantismo": "romant", "romão": "romã", "romaria": "rom", "romarias": "rom", "romário": "romári", "rombo": "romb", "romeiro": "romeir", "romeiros": "romeir", "romero": "romer", "romeu": "rom", "romeus": "romeus", "rommel": "rommel", "rompendo": "romp", "romper": "romp", "romperem": "romp", "rompeu": "romp", "rompida": "romp", "rompidos": "romp", "rompimento": "rompiment", "roms": "roms", "rômulo": "rômul", "romy": "romy", "ronald": "ronald", "ronaldinho": "ronaldinh", "ronaldo": "ronald", "ronca": "ronc", "roncam": "ronc", "roncati": "roncat", "roncatti": "roncatt", "ronda": "rond", "rondam": "rond", "rondar": "rond", "rondon": "rondon", "rondônia": "rondôn", "rondoniense": "rondoniens", "roni": "ron", "roniel": "roniel", "roniquito": "roniquit", "ronivon": "ronivon", "ronnie": "ronni", "room": "room", "roosevelt": "roosevelt", "roque": "roqu", "roqueira": "roqueir", "roqueiro": "roqueir", "roqueiros": "roqueir", "roraima": "roraim", "rosa": "ros", "rosada": "ros", "rosado": "ros", "rosales": "rosal", "rosalina": "rosalin", "rosalinda": "rosalind", "rosana": "rosan", "rosane": "rosan", "rosângela": "rosângel", "rosário": "rosári", "rosas": "ros", "roscoe": "rosco", "rose": "ros", "rósea": "rós", "roseana": "rosean", "rosely": "rosely", "rosemberg": "rosemberg", "rosenberg": "rosenberg", "rosenblatt": "rosenblatt", "rosenfeld": "rosenfeld", "rosielma": "rosielm", "rossellini": "rossellin", "rossi": "ross", "rossini": "rossin", "rosto": "rost", "rostos": "rost", "roswell": "roswell", "rota": "rot", "rotação": "rotaçã", "rotas": "rot", "roteirista": "roteir", "roteiristas": "roteir", "roteiro": "roteir", "roteiros": "roteir", "roterdã": "roterdã", "rotina": "rotin", "rotinas": "rotin", "rotineira": "rotineir", "rotineiramente": "rotineir", "rotineiro": "rotineir", "rotineiros": "rotineir", "rotulada": "rotul", "rotulando": "rotul", "rótulo": "rótul", "rótulos": "rótul", "roubada": "roub", "roubado": "roub", "roubados": "roub", "roubalheira": "roubalheir", "roubam": "roub", "roubar": "roub", "roubara": "roub", "roubo": "roub", "roubos": "roub", "roubou": "roub", "rounds": "rounds", "roupa": "roup", "roupagens": "roupagens", "roupas": "roup", "roxo": "rox", "royal": "royal", "royce": "royc", "roza": "roz", "rozas": "roz", "rozi": "roz", "rpm": "rpm", "rs": "rs", "rsf": "rsf", "rsfcens": "rsfcens", "rtca": "rtca", "rtes": "rtes", "rua": "rua", "ruas": "ruas", "rubem": "rub", "ruben": "ruben", "rubens": "rubens", "rubinstein": "rubinstein", "rubio": "rubi", "ruço": "ruc", "rude": "rud", "rudolf": "rudolf", "rudolph": "rudolph", "rudyard": "rudyard", "rue": "rue", "ruelas": "ruel", "ruga": "rug", "rugas": "rug", "rúgbi": "rúgb", "rugido": "rug", "rugir": "rug", "rui": "rui", "ruído": "ruíd", "ruídos": "ruíd", "ruidosas": "ruidos", "ruim": "ruim", "ruína": "ruín", "ruínas": "ruín", "ruins": "ruins", "ruir": "ruir", "ruiu": "ruiu", "ruivo": "ruiv", "ruiz": "ruiz", "rullian": "rullian", "rumar": "rum", "rumaram": "rum", "rumo": "rum", "rumor": "rumor", "rumoroso": "rumor", "rumorosos": "rumor", "runner": "runn", "rupp": "rupp", "ruptura": "ruptur", "rupturas": "ruptur", "rurais": "rur", "rural": "rural", "rusgas": "rusg", "rushdie": "rushdi", "russa": "russ", "russas": "russ", "russel": "russel", "rússia": "rúss", "russificação": "russific", "russo": "russ", "russos": "russ", "rústico": "rústic", "ruta": "rut", "ruth": "ruth", "ruy": "ruy", "ryder": "ryder", "s": "s", "sá": "sá", "saad": "saad", "sábado": "sáb", "sábados": "sáb", "sabata": "sabat", "sábato": "sábat", "sabe": "sab", "sabedoria": "sabedor", "sabem": "sab", "sabemos": "sab", "sabendo": "sab", "saber": "sab", "saberá": "sab", "saberem": "sab", "saberia": "sab", "saberiam": "sab", "sabermos": "sab", "sabesp": "sabesp", "sabia": "sab", "sábia": "sáb", "sabiam": "sab", "sabiamente": "sabi", "sabíamos": "sab", "sabidamente": "sabid", "sabido": "sab", "sabino": "sabin", "sábio": "sábi", "sábios": "sábi", "sabonete": "sabonet", "sabor": "sabor", "saborear": "sabor", "saboreiam": "sabor", "sabores": "sabor", "saborosa": "sabor", "saborosas": "sabor", "saboroso": "sabor", "saborosos": "sabor", "sabrit": "sabrit", "saca": "sac", "sacada": "sac", "sacados": "sac", "sacanear": "sacan", "sacas": "sac", "sacerdócio": "sacerdóci", "sacerdortisa": "sacerdortis", "sacerdotal": "sacerdotal", "sacerdote": "sacerdot", "sacerdotes": "sacerdot", "sacerdotisa": "sacerdotis", "sachê": "sach", "saciarem": "sac", "saciedade": "saciedad", "saco": "sac", "sacode": "sacod", "sacolas": "sacol", "sacoleiras": "sacoleir", "sacoleja": "sacolej", "sacolejar": "sacolej", "sacolejou": "sacolej", "sacolinhas": "sacolinh", "sacou": "sac", "sacramento": "sacrament", "sacrificado": "sacrific", "sacrificar": "sacrific", "sacrifício": "sacrifíci", "sacrifícios": "sacrifíci", "sacudir": "sacud", "sacudiu": "sacud", "saddam": "sadd", "sade": "sad", "sadia": "sad", "sadias": "sad", "sádico": "sádic", "sadomasoquistas": "sadomasoqu", "sae": "sae", "saem": "saem", "safadinha": "safadinh", "safado": "saf", "safar": "saf", "safáris": "safár", "safena": "safen", "safer": "saf", "safir": "saf", "safra": "safr", "saga": "sag", "sagan": "sagan", "sagra": "sagr", "sagração": "sagraçã", "sagrada": "sagr", "sagradas": "sagr", "sagrado": "sagr", "sagrados": "sagr", "sagres": "sagr", "sagrou": "sagr", "saguão": "saguã", "sahione": "sahion", "sai": "sai", "saí": "saí", "saia": "sai", "saía": "saí", "saiam": "sai", "saíam": "saí", "saíamos": "saí", "saias": "sai", "saiba": "saib", "saibam": "saib", "saibro": "saibr", "said": "said", "saída": "saíd", "saídas": "saíd", "saído": "saíd", "saídos": "saíd", "saigne": "saign", "saímos": "saím", "saindo": "saind", "saint": "saint", "sainte": "saint", "saio": "sai", "saiote": "saiot", "sair": "sair", "sairá": "sair", "saíram": "saír", "sairão": "sairã", "sairia": "sair", "sairiam": "sair", "sais": "sais", "saísse": "saíss", "saíssem": "saíss", "saiu": "saiu", "sajot": "sajot", "sal": "sal", "sala": "sal", "salada": "sal", "salamaleques": "salamalequ", "salames": "salam", "salão": "salã", "salariais": "salari", "salarial": "salarial", "salário": "salári", "salários": "salári", "salas": "sal", "salazar": "salaz", "saldados": "sald", "saldanha": "saldanh", "saldar": "sald", "saldo": "sald", "saldos": "sald", "salem": "sal", "sales": "sal", "salesiana": "salesian", "salgada": "salg", "salgadinhos": "salgadinh", "salgado": "salg", "salgados": "salg", "salgueiro": "salgueir", "saliência": "saliênc", "saliências": "saliênc", "salienta": "salient", "salientando": "salient", "salientar": "salient", "saliente": "salient", "salinha": "salinh", "saliva": "saliv", "sallai": "salla", "salles": "sall", "salman": "salman", "salmão": "salmã", "salmões": "salmõ", "salobo": "salob", "salões": "salõ", "salomão": "salomã", "salpicado": "salpic", "salsa": "sals", "salsaretti": "salsarett", "salta": "salt", "saltam": "salt", "saltando": "salt", "saltarem": "salt", "saltava": "salt", "salte": "salt", "salteador": "salteador", "saltei": "salt", "saltinho": "saltinh", "saltitantes": "saltit", "salto": "salt", "saltou": "salt", "salva": "salv", "salvá": "salv", "salvação": "salvaçã", "salvado": "salv", "salvador": "salvador", "salvadora": "salvador", "salvajoli": "salvajol", "salvamento": "salvament", "salvando": "salv", "salvar": "salv", "salvaria": "salv", "salvatore": "salvator", "salvatti": "salvatt", "salvo": "salv", "salvos": "salv", "salvou": "salv", "sam": "sam", "samaipata": "samaipat", "samantha": "samanth", "samaritano": "samaritan", "samba": "samb", "sambando": "samb", "sambas": "samb", "sambista": "sambist", "sambísticas": "sambíst", "sambódromo": "sambódrom", "sami": "sam", "sampaio": "sampai", "samper": "samp", "sampras": "sampr", "samuel": "samuel", "san": "san", "sanatório": "sanatóri", "sanches": "sanch", "sanchez": "sanchez", "sanções": "sançõ", "sandália": "sandál", "sandálias": "sandál", "sandalo": "sandal", "sandra": "sandr", "sandro": "sandr", "sanduíche": "sanduích", "sanduíches": "sanduích", "sandy": "sandy", "saneada": "san", "saneado": "san", "saneamento": "saneament", "sanear": "san", "sanfoneiro": "sanfoneir", "sanfoneiros": "sanfoneir", "sangradas": "sangr", "sangramentos": "sangrament", "sangrando": "sangr", "sangrar": "sangr", "sangrenta": "sangrent", "sangrento": "sangrent", "sangria": "sangr", "sangue": "sang", "sangues": "sangu", "sanguinários": "sanguinári", "sanguínea": "sanguín", "sangüínea": "sangüín", "sanguíneos": "sanguín", "sanguinetti": "sanguinett", "sanguinolentos": "sanguinolent", "sanidade": "sanidad", "sanitária": "sanitár", "sanitárias": "sanitár", "sanitário": "sanitári", "sanjay": "sanjay", "sans": "sans", "sant": "sant", "santa": "sant", "santaconstancia": "santaconstanc", "santana": "santan", "santas": "sant", "santeiro": "santeir", "santiago": "santiag", "santidade": "santidad", "santificação": "santific", "santilli": "santill", "santíssima": "santíssim", "santista": "santist", "santo": "sant", "santos": "sant", "santuário": "santuári", "santuários": "santuári", "são": "sã", "sap": "sap", "sapaim": "sapaim", "sapalo": "sapal", "sapatão": "sapatã", "sapateiro": "sapateir", "sapatilha": "sapatilh", "sapato": "sapat", "sapatos": "sapat", "sapê": "sap", "sapês": "sapês", "sapezal": "sapezal", "sapo": "sap", "sapucaí": "sapuca", "saque": "saqu", "saqueando": "saqu", "saquear": "saqu", "saqueou": "saqu", "saques": "saqu", "saquinho": "saquinh", "saquinhos": "saquinh", "sara": "sar", "sarah": "sarah", "saraiva": "saraiv", "saramago": "saramag", "sarandah": "sarandah", "sarará": "sar", "saratoga": "saratog", "saraus": "saraus", "sarcófagos": "sarcófag", "sardenberg": "sardenberg", "sardenta": "sardent", "sargento": "sargent", "sargentos": "sargent", "sarmento": "sarment", "sarna": "sarn", "sarney": "sarney", "sarro": "sarr", "sarti": "sart", "sartorelli": "sartorell", "sartori": "sartor", "sartre": "sartr", "sassaricando": "sassaric", "sastre": "sastr", "satélite": "satélit", "satélites": "satélit", "sátira": "sát", "sátiras": "sát", "satisfaça": "satisfac", "satisfação": "satisf", "satisfações": "satisf", "satisfatoriamente": "satisfatori", "satisfatórias": "satisfatór", "satisfatório": "satisfatóri", "satisfaz": "satisfaz", "satisfazê": "satisfaz", "satisfazer": "satisfaz", "satisfeita": "satisfeit", "satisfeitíssimo": "satisfeitíssim", "satisfeito": "satisfeit", "satisfeitos": "satisfeit", "saturadas": "satur", "saturado": "satur", "saturno": "saturn", "saúda": "saúd", "saudações": "saudaçõ", "saudada": "saud", "saudade": "saudad", "saudades": "saudad", "saudado": "saud", "saudáveis": "saud", "saudável": "saudável", "saúde": "saúd", "saudosos": "saudos", "saul": "saul", "saulo": "saul", "sauna": "saun", "saunas": "saun", "sauvignon": "sauvignon", "savana": "savan", "save": "sav", "savimbi": "savimb", "saviolli": "savioll", "saxão": "saxã", "sayão": "sayã", "sbh": "sbh", "sbpc": "sbpc", "sbt": "sbt", "sc": "sc", "scala": "scal", "scan": "scan", "scandal": "scandal", "scania": "scan", "scapin": "scapin", "scarel": "scarel", "scaringella": "scaringell", "scarlett": "scarlett", "schain": "schain", "schalch": "schalch", "schank": "schank", "scheinkman": "scheinkman", "scheper": "schep", "schiff": "schiff", "schiffer": "schiff", "schindler": "schindl", "schistossoma": "schistossom", "schl": "schl", "schmidt": "schmidt", "schneider": "schneid", "school": "school", "schubert": "schubert", "schultz": "schultz", "schütt": "schütt", "schwanke": "schwank", "schwarcz": "schwarcz", "schwartz": "schwartz", "schwarzenegger": "schwarzenegg", "schwarzkopf": "schwarzkopf", "science": "scienc", "sciences": "scienc", "scientist": "scientist", "scipione": "scipion", "scliar": "scli", "scotland": "scotland", "scott": "scott", "scouts": "scouts", "scuba": "scub", "se": "se", "sé": "sé", "sea": "sea", "seabra": "seabr", "seade": "sead", "sean": "sean", "search": "search", "sears": "sears", "seattle": "seattl", "sebastianista": "sebastian", "sebastião": "sebastiã", "seca": "sec", "secadores": "secador", "seção": "seçã", "secar": "sec", "secaram": "sec", "secção": "secçã", "sechon": "sechon", "seco": "sec", "seções": "seçõ", "secou": "sec", "secovi": "secov", "secreção": "secreçã", "secreta": "secret", "secretamente": "secret", "secretaria": "secret", "secretária": "secretár", "secretariado": "secretari", "secretarias": "secret", "secretárias": "secretár", "secretário": "secretári", "secretários": "secretári", "secretas": "secret", "secreto": "secret", "secretos": "secret", "secular": "secul", "seculares": "secul", "século": "sécul", "séculos": "sécul", "secundária": "secundár", "secundárias": "secundár", "secundário": "secundári", "secundários": "secundári", "secura": "secur", "seda": "sed", "sedada": "sed", "sede": "sed", "sedentária": "sedentár", "sedentárias": "sedentár", "sedentário": "sedentári", "sedentarismo": "sedentar", "sediada": "sedi", "sediado": "sedi", "sediar": "sedi", "sedimentadas": "sediment", "sedimentava": "sediment", "sedução": "seduçã", "sedutor": "sedutor", "sedutora": "sedutor", "seduz": "seduz", "seduzida": "seduz", "seduzindo": "seduz", "seduzir": "seduz", "seduziram": "seduz", "seduziu": "seduz", "segall": "segall", "segmentadas": "segment", "segmentado": "segment", "segmento": "segment", "segmentos": "segment", "segredo": "segred", "segredos": "segred", "segregação": "segreg", "segue": "seg", "seguem": "segu", "segui": "segu", "seguia": "segu", "seguiam": "segu", "seguida": "segu", "seguidas": "segu", "seguido": "segu", "seguidor": "seguidor", "seguidora": "seguidor", "seguidores": "seguidor", "seguidos": "segu", "seguindo": "segu", "seguinte": "seguint", "seguintes": "seguint", "seguir": "segu", "seguiram": "segu", "seguirem": "segu", "seguiria": "segu", "seguiu": "segu", "segunda": "segund", "segundas": "segund", "segundo": "segund", "segundos": "segund", "segura": "segur", "seguradora": "segur", "seguradoras": "segur", "segurados": "segur", "seguram": "segur", "seguramente": "segur", "segurança": "seguranc", "seguranças": "seguranc", "segurando": "segur", "segurar": "segur", "seguras": "segur", "segurasse": "segur", "segurava": "segur", "segure": "segur", "seguridade": "segur", "seguro": "segur", "seguros": "segur", "segurou": "segur", "sei": "sei", "seio": "sei", "seios": "sei", "seis": "seis", "seiscentos": "seiscent", "seita": "seit", "seitas": "seit", "seja": "sej", "sejam": "sej", "sejamos": "sej", "selam": "sel", "selar": "sel", "selaram": "sel", "seleção": "seleçã", "seleciona": "selecion", "selecionada": "selecion", "selecionadas": "selecion", "selecionado": "selecion", "selecionados": "selecion", "selecionam": "selecion", "selecionamos": "selecion", "selecionar": "selecion", "selecionaram": "selecion", "selecionava": "selecion", "selecionou": "selecion", "seleções": "seleçõ", "selenium": "selenium", "seleta": "selet", "seletiva": "selet", "seletivamente": "selet", "seletivo": "selet", "seleto": "selet", "self": "self", "selim": "selim", "selinho": "selinh", "sella": "sell", "selleck": "selleck", "seller": "sell", "sellers": "sellers", "selma": "selm", "selmy": "selmy", "selo": "sel", "selton": "selton", "seltzer": "seltz", "selva": "selv", "selvagem": "selvag", "selvagens": "selvagens", "selvageria": "selvag", "selvas": "selv", "selye": "sely", "sem": "sem", "semana": "seman", "semanais": "seman", "semanal": "semanal", "semanalmente": "semanal", "semanário": "semanári", "semanas": "seman", "semeadeira": "semeadeir", "semeia": "sem", "semeiskys": "semeiskys", "semelhança": "semelhanc", "semelhanças": "semelhanc", "semelhante": "semelh", "semelhantes": "semelh", "sêmen": "sêmen", "semente": "sement", "sementes": "sement", "semeou": "sem", "semestral": "semestral", "semestre": "semestr", "semi": "sem", "semicírculo": "semicírcul", "semiclandestinidade": "semiclandestin", "semifinais": "semifin", "semifinal": "semifinal", "semifinalista": "semifinal", "semilírico": "semilír", "seminais": "semin", "seminário": "seminári", "seminarista": "seminar", "seminaristas": "seminar", "seminuas": "seminu", "semitranse": "semitrans", "sempre": "sempr", "sen": "sen", "sena": "sen", "senado": "sen", "senador": "senador", "senadora": "senador", "senadores": "senador", "senai": "sena", "senão": "senã", "senas": "sen", "senderistas": "sender", "sendero": "sender", "sendo": "send", "senegal": "senegal", "senha": "senh", "senhas": "senh", "senhor": "senhor", "senhora": "senhor", "senhoras": "senhor", "senhores": "senhor", "senhorial": "senhorial", "sênior": "sênior", "senioridade": "senior", "senise": "senis", "senna": "senn", "señor": "señor", "sensação": "sensaçã", "sensacionais": "sensacion", "sensacional": "sensacional", "sensacionalismo": "sensacional", "sensacionalista": "sensacional", "sensações": "sensaçõ", "sensatas": "sensat", "sensato": "sensat", "sensibilidade": "sensibil", "sensibiliza": "sensibiliz", "sensibilizam": "sensibiliz", "sensibilizar": "sensibiliz", "sensibilizaram": "sensibiliz", "sensibilizarmos": "sensibiliz", "sensíveis": "sensív", "sensível": "sensível", "sensivelmente": "sensivel", "senso": "sens", "sensor": "sensor", "sensores": "sensor", "sensuais": "sensu", "sensual": "sensual", "sensualidade": "sensual", "sensualíssima": "sensualíssim", "sentada": "sent", "sentadas": "sent", "sentado": "sent", "sentados": "sent", "sentam": "sent", "sentar": "sent", "sentaram": "sent", "sentarem": "sent", "sentava": "sent", "sente": "sent", "sentei": "sent", "sentem": "sent", "sentença": "sentenc", "sentenças": "sentenc", "sentencia": "sentenc", "senti": "sent", "sentia": "sent", "sentiam": "sent", "sentida": "sent", "sentido": "sent", "sentidos": "sent", "sentimental": "sentimental", "sentimento": "sentiment", "sentimentos": "sentiment", "sentindo": "sent", "sentir": "sent", "sentiram": "sent", "sentirem": "sent", "sentiria": "sent", "sentisse": "sent", "sentiu": "sent", "sento": "sent", "sentou": "sent", "senzala": "senzal", "separa": "sep", "separá": "sep", "separação": "separ", "separações": "separ", "separada": "separ", "separadamente": "separ", "separadas": "separ", "separado": "separ", "separados": "separ", "separamos": "separ", "separando": "separ", "separar": "separ", "separaram": "separ", "separei": "sep", "separo": "separ", "separou": "separ", "sepetiba": "sepetib", "septecemia": "septecem", "sepulcro": "sepulcr", "sepultada": "sepult", "sepultado": "sepult", "sepultamento": "sepult", "sepultou": "sepult", "sepulveda": "sepulved", "sepúlveda": "sepúlved", "seqüela": "seqüel", "sequelas": "sequel", "seqüelas": "seqüel", "sequência": "sequênc", "seqüência": "seqüênc", "sequenciar": "sequenc", "sequências": "sequênc", "sequer": "sequ", "sequestrada": "sequestr", "sequestrado": "sequestr", "sequestrados": "sequestr", "seqüestrando": "seqüestr", "seqüestravam": "seqüestr", "sequestro": "sequestr", "seqüestro": "seqüestr", "seqüestrou": "seqüestr", "sequóias": "sequó", "ser": "ser", "será": "ser", "serafin": "serafin", "serão": "serã", "sercretário": "sercretári", "serei": "ser", "serem": "ser", "seremos": "ser", "serenidade": "seren", "sereno": "seren", "serenos": "seren", "seres": "ser", "sergi": "serg", "sergio": "sergi", "sérgio": "sérgi", "sergipana": "sergipan", "sergipano": "sergipan", "sergipe": "sergip", "seria": "ser", "séria": "sér", "seriado": "seri", "seriam": "ser", "seriamente": "seri", "sérias": "sér", "série": "séri", "seriedade": "seriedad", "séries": "séri", "seriíssima": "seriíssim", "seringa": "sering", "seringal": "seringal", "sério": "séri", "sérios": "séri", "sermos": "serm", "serotonina": "serotonin", "serpente": "serpent", "serpentes": "serpent", "serra": "serr", "serrado": "serr", "serralheiro": "serralheir", "serran": "serran", "serrano": "serran", "serrar": "serr", "serraria": "serr", "serrarias": "serr", "sertaneja": "sertanej", "sertanejo": "sertanej", "sertanejos": "sertanej", "sertão": "sertã", "serve": "serv", "servel": "servel", "servem": "serv", "servente": "servent", "serventia": "servent", "servi": "serv", "servia": "serv", "serviam": "serv", "service": "servic", "services": "servic", "serviço": "servic", "serviços": "servic", "servida": "serv", "servidas": "serv", "servido": "serv", "servidor": "servidor", "servidores": "servidor", "servidos": "serv", "servindo": "serv", "servir": "serv", "servirá": "serv", "serviram": "serv", "servirem": "serv", "serviu": "serv", "sesi": "ses", "sessa": "sess", "sessão": "sessã", "sessenta": "sessent", "sesso": "sess", "sessões": "sessõ", "set": "set", "sete": "set", "setembro": "setembr", "setenta": "setent", "sétima": "sétim", "sétimo": "sétim", "setor": "setor", "setores": "setor", "setorialmente": "setorial", "setorizada": "setoriz", "sets": "sets", "setti": "sett", "seu": "seu", "seus": "seus", "sevcenko": "sevcenk", "severa": "sev", "severas": "sev", "severidade": "sever", "severina": "severin", "severino": "severin", "severo": "sever", "sex": "sex", "sexo": "sex", "sexos": "sex", "sexta": "sext", "sextas": "sext", "sexto": "sext", "sexuais": "sexu", "sexual": "sexual", "sexualidade": "sexual", "sexualmente": "sexual", "sexy": "sexy", "sfh": "sfh", "shabazz": "shabazz", "shabbaz": "shabbaz", "shakespeare": "shakespear", "shakira": "shak", "shalikashvili": "shalikashvil", "shalom": "shalom", "sharon": "sharon", "shattered": "shattered", "shearer": "shear", "sheik": "sheik", "sheila": "sheil", "sheldon": "sheldon", "shell": "shell", "shepard": "shepard", "shikasho": "shikash", "shimosaka": "shimosak", "shirer": "shir", "shirley": "shirley", "shopping": "shopping", "shoppings": "shoppings", "short": "short", "shortinhos": "shortinh", "shorts": "shorts", "show": "show", "shows": "shows", "si": "si", "siamês": "siamês", "siamesa": "siames", "sião": "siã", "sibéria": "sibér", "siberianas": "siberian", "sibutramina": "sibutramin", "siciliani": "sicilian", "sicrano": "sicran", "sidaui": "sidau", "side": "sid", "sideral": "sideral", "siderúrgica": "siderúrg", "siderúrgicas": "siderúrg", "sidnei": "sidn", "sidney": "sidney", "sido": "sid", "sidrolândia": "sidrolând", "siècle": "siècl", "siegfried": "siegfried", "sielma": "sielm", "siena": "sien", "sierra": "sierr", "sífilis": "sífil", "sig": "sig", "siga": "sig", "sigilo": "sigil", "sigiloso": "sigil", "sigilosos": "sigil", "sigla": "sigl", "sigmund": "sigmund", "signatários": "signatári", "signer": "sign", "signes": "sign", "significa": "signif", "significado": "signific", "significam": "signific", "significante": "signific", "significar": "signific", "significarão": "signific", "significaria": "signific", "significasse": "signific", "significativa": "signific", "significativas": "signific", "significativo": "signific", "significativos": "signific", "significava": "signific", "significavam": "signific", "significou": "signific", "signifique": "signifiqu", "signo": "sign", "sigo": "sig", "sigourney": "sigourney", "sigulem": "sigul", "sihanouk": "sihanouk", "sikorsky": "sikorsky", "silenciadas": "silenc", "silenciar": "silenc", "silenciarem": "silenc", "silêncio": "silênci", "silenciosa": "silenc", "silenciosamente": "silenc", "silencioso": "silenc", "silhueta": "silhuet", "silicone": "silicon", "sillés": "sillés", "silva": "silv", "silvana": "silvan", "silvania": "silvan", "silvas": "silv", "silveira": "silveir", "silvério": "silvéri", "silvestre": "silvestr", "silvestres": "silvestr", "silvia": "silv", "sílvia": "sílv", "silvino": "silvin", "silvio": "silvi", "sílvio": "sílvi", "silviôô": "silviôô", "sim": "sim", "simancol": "simancol", "simas": "sim", "simbiótica": "simbiót", "simbólica": "simból", "simbólico": "simból", "simbolismo": "simbol", "simbolismos": "simbol", "simboliza": "simboliz", "símbolo": "símbol", "símbolos": "símbol", "simca": "simc", "similar": "simil", "similares": "simil", "simla": "siml", "simon": "simon", "simón": "simón", "simone": "simon", "simonetti": "simonett", "simonsen": "simonsen", "simpatia": "simpat", "simpatias": "simpat", "simpática": "simpát", "simpático": "simpát", "simpatizante": "simpatiz", "simpatizantes": "simpatiz", "simpatizar": "simpatiz", "simples": "simpl", "simplesmente": "simples", "simplicidade": "simplic", "simplificação": "simplific", "simplificações": "simplific", "simplificador": "simplific", "simplificados": "simplific", "simplificam": "simplific", "simplificou": "simplific", "simplória": "simplór", "simpósio": "simpósi", "simpson": "simpson", "simulação": "simul", "simulações": "simul", "simuladas": "simul", "simulado": "simul", "simulador": "simul", "simuladores": "simul", "simulando": "simul", "simular": "simul", "simulation": "simulation", "simulou": "simul", "simultânea": "simultân", "simultaneamente": "simultan", "simultâneas": "simultân", "simultâneos": "simultân", "sinagoga": "sinagog", "sinagogas": "sinagog", "sinais": "sin", "sinal": "sinal", "sinaliza": "sinaliz", "sinalização": "sinaliz", "sinalizador": "sinaliz", "sinalizar": "sinaliz", "sinalizaram": "sinaliz", "sinalizava": "sinaliz", "sinatra": "sinatr", "sincera": "sinc", "sinceramente": "sincer", "sinceridade": "sincer", "sincero": "sincer", "sincopadas": "sincop", "síncope": "síncop", "sincretismo": "sincret", "sincronizadas": "sincroniz", "síndica": "síndic", "sindical": "sindical", "sindicalista": "sindical", "sindicalistas": "sindical", "sindicância": "sindic", "sindicato": "sindicat", "sindicatos": "sindicat", "síndrome": "síndrom", "síndromes": "síndrom", "sinduscon": "sinduscon", "sinergia": "sinerg", "sines": "sin", "sinfônica": "sinfôn", "singela": "singel", "singelas": "singel", "singelo": "singel", "singrando": "singr", "singular": "singul", "singulares": "singul", "sinhá": "sinh", "sinistra": "sinistr", "sinistras": "sinistr", "sinistro": "sinistr", "sinistros": "sinistr", "sinônimo": "sinônim", "sinos": "sin", "sinta": "sint", "sintam": "sint", "síntese": "síntes", "sintética": "sintét", "sintéticos": "sintét", "sintetiza": "sintetiz", "sintetizados": "sintetiz", "sinto": "sint", "sintofarma": "sintofarm", "sintoma": "sintom", "sintomas": "sintom", "sintonia": "sinton", "sintonizado": "sintoniz", "sinval": "sinval", "sion": "sion", "siqueira": "siqueir", "sir": "sir", "sirene": "siren", "sirenes": "siren", "síria": "sír", "sírio": "síri", "sirotsky": "sirotsky", "sirva": "sirv", "sirvam": "sirv", "sirvo": "sirv", "sisal": "sisal", "sisleide": "sisleid", "sissi": "siss", "sistel": "sistel", "sistema": "sistem", "sistemas": "sistem", "sistemática": "sistemát", "sistematicamente": "sistemat", "sistemático": "sistemát", "sisudamente": "sisud", "sisudo": "sisud", "sisudos": "sisud", "site": "sit", "sites": "sit", "sítio": "síti", "sítios": "síti", "situa": "situ", "situação": "situaçã", "situações": "situaçõ", "situada": "situ", "situado": "situ", "situados": "situ", "situam": "situ", "situar": "situ", "situavam": "situ", "sivam": "siv", "six": "six", "sizer": "siz", "skank": "skank", "skate": "skat", "skatista": "skatist", "skatistas": "skatist", "ski": "ski", "sky": "sky", "slam": "slam", "slava": "slav", "sleeping": "sleeping", "sloan": "sloan", "slogan": "slogan", "sm": "sm", "smartwood": "smartwood", "smashing": "smashing", "smedt": "smedt", "smeraldi": "smerald", "smirnoff": "smirnoff", "smith": "smith", "smoke": "smok", "smoking": "smoking", "snea": "sne", "sni": "sni", "só": "só", "soa": "soa", "soam": "soam", "soar": "soar", "soares": "soar", "soáres": "soár", "soárez": "soárez", "soava": "soav", "soavam": "soav", "sob": "sob", "sobe": "sob", "sobem": "sob", "soberania": "soberan", "soberano": "soberan", "soberba": "soberb", "soberbo": "soberb", "soboreava": "sobor", "sobra": "sobr", "sobrado": "sobr", "sobram": "sobr", "sobrancelhas": "sobrancelh", "sobrando": "sobr", "sobrar": "sobr", "sobraram": "sobr", "sobras": "sobr", "sobre": "sobr", "sobreaviso": "sobreavis", "sobrecarga": "sobrecarg", "sobrecarrega": "sobrecarreg", "sobrecarregada": "sobrecarreg", "sobremesa": "sobremes", "sobrenatural": "sobrenatural", "sobrenome": "sobrenom", "sobrenomes": "sobrenom", "sobrepõem": "sobrepõ", "sobrepor": "sobrepor", "sobrepuja": "sobrepuj", "sobressai": "sobressa", "sobressaiu": "sobressa", "sobressalto": "sobressalt", "sobressaltos": "sobressalt", "sobretudo": "sobretud", "sobrevalorização": "sobrevaloriz", "sobrevém": "sobrevém", "sobrevida": "sobrev", "sobrevive": "sobreviv", "sobrevivem": "sobreviv", "sobrevivência": "sobrevivent", "sobrevivendo": "sobreviv", "sobrevivente": "sobrevivent", "sobreviventes": "sobrevivent", "sobreviver": "sobreviv", "sobreviveram": "sobreviv", "sobreviverão": "sobreviv", "sobrevivessem": "sobreviv", "sobreviveu": "sobreviv", "sobrevivi": "sobreviv", "sobrevivido": "sobreviv", "sobrevoado": "sobrevo", "sobrevoando": "sobrevo", "sobrevoava": "sobrevo", "sobrevoe": "sobrevo", "sóbrias": "sóbr", "sobrinha": "sobrinh", "sobrinhas": "sobrinh", "sobrinho": "sobrinh", "sobrinhos": "sobrinh", "sóbrios": "sóbri", "sobrou": "sobr", "soccer": "socc", "sochaczewski": "sochaczewsk", "sócia": "sóc", "sociais": "soc", "social": "social", "socialismo": "social", "socialista": "social", "socialistas": "social", "socialite": "socialit", "socialites": "socialit", "socializantes": "socializ", "socialmente": "social", "sócias": "sóc", "sociável": "sociável", "sociedade": "sociedad", "sociedades": "sociedad", "society": "society", "sócio": "sóci", "socióloga": "sociólog", "sociologava": "sociolog", "sociologia": "sociolog", "sociológico": "sociológ", "sociólogo": "sociólog", "sociólogos": "sociólog", "sócios": "sóci", "socorrer": "socorr", "socorrerá": "socorr", "socorreu": "socorr", "socorro": "socorr", "socos": "soc", "sócrates": "sócrat", "sódio": "sódi", "sodré": "sodr", "soe": "soe", "soeltl": "soeltl", "soeur": "soeur", "sofá": "sof", "sofás": "sofás", "sofazão": "sofazã", "sofia": "sof", "sofisticação": "sofistic", "sofisticada": "sofistic", "sofisticadas": "sofistic", "sofisticado": "sofistic", "sofisticados": "sofistic", "sofisticar": "sofistic", "sofra": "sofr", "sofre": "sofr", "sofrem": "sofr", "sofrendo": "sofr", "sofrer": "sofr", "sofrera": "sofr", "sofrerá": "sofr", "sofreram": "sofr", "sofrerão": "sofr", "sofreria": "sofr", "sofreu": "sofr", "sofri": "sofr", "sofria": "sofr", "sofrida": "sofr", "sofridas": "sofr", "sofrido": "sofr", "sofrimento": "sofriment", "sofrimentos": "sofriment", "sofro": "sofr", "software": "softwar", "softwares": "softw", "sogro": "sogr", "soja": "soj", "sol": "sol", "sola": "sol", "solados": "sol", "solange": "solang", "solano": "solan", "solar": "sol", "solarização": "solariz", "soldadesca": "soldadesc", "soldado": "sold", "soldador": "soldador", "soldados": "sold", "soldar": "sold", "soledade": "soledad", "soleira": "soleir", "solenidade": "solen", "soletto": "solett", "solicita": "solicit", "solicitação": "solicit", "solicitado": "solicit", "solicitando": "solicit", "solicitava": "solicit", "solicite": "solicit", "solicitei": "solicit", "solicitou": "solicit", "sólida": "sól", "solidamente": "solid", "solidão": "solidã", "solidária": "solidár", "solidariedade": "solidariedad", "sólidas": "sól", "solidez": "solidez", "sólido": "sól", "sólidos": "sól", "solitária": "solitár", "solitárias": "solitár", "solitário": "solitári", "solitários": "solitári", "solo": "sol", "solow": "solow", "solstícios": "solstíci", "solta": "solt", "soltam": "solt", "soltar": "solt", "soltava": "solt", "solteira": "solteir", "solteiríssima": "solteiríssim", "solteiro": "solteir", "soltl": "soltl", "solto": "solt", "soltos": "solt", "soltou": "solt", "solução": "soluçã", "solucionar": "solucion", "soluções": "soluçõ", "solventes": "solvent", "som": "som", "soma": "som", "somadas": "som", "somado": "som", "somados": "som", "somam": "som", "somando": "som", "somar": "som", "somariam": "som", "somarmos": "som", "somavam": "som", "sombra": "sombr", "sombras": "sombr", "sombrias": "sombr", "some": "som", "somente": "soment", "sommelier": "sommeli", "sommeliers": "sommeliers", "somos": "som", "somou": "som", "son": "son", "sonda": "sond", "sondas": "sond", "sonegação": "soneg", "sonegada": "soneg", "sonegadas": "soneg", "songbooks": "songbooks", "sonha": "sonh", "sonhada": "sonh", "sonham": "sonh", "sonhando": "sonh", "sonhar": "sonh", "sonhava": "sonh", "sonho": "sonh", "sonhos": "sonh", "sonhou": "sonh", "sonia": "son", "sônia": "sôn", "sono": "son", "sonolência": "sonolent", "sonora": "sonor", "sonoridades": "sonor", "sonoro": "sonor", "sonoros": "sonor", "sonoterapia": "sonoterap", "sons": "sons", "soou": "soou", "sopa": "sop", "sopão": "sopã", "sophia": "soph", "soprano": "sopran", "sopranos": "sopran", "sopro": "sopr", "soraya": "soray", "sorbonne": "sorbonn", "soriano": "sorian", "sorima": "sorim", "sorine": "sorin", "soro": "sor", "sorocaba": "sorocab", "soropositivas": "soroposit", "soropositivo": "soroposit", "soropositivos": "soroposit", "sorrah": "sorrah", "sorrateiramente": "sorrateir", "sorrenti": "sorrent", "sorri": "sorr", "sorria": "sorr", "sorridente": "sorrident", "sorridentes": "sorrident", "sorrindo": "sorr", "sorriso": "sorris", "sorrisos": "sorris", "sorte": "sort", "sorteado": "sort", "sorteando": "sort", "sorteia": "sort", "sorteio": "sortei", "sorteios": "sortei", "sorvete": "sorvet", "sorveteria": "sorvet", "sos": "sos", "sós": "sós", "sossegadamente": "sosseg", "sossegadas": "sosseg", "sossegado": "sosseg", "sossego": "sosseg", "sotaque": "sotaqu", "soterrado": "soterr", "soto": "sot", "sotto": "sott", "sou": "sou", "soube": "soub", "souber": "soub", "souberam": "soub", "souberem": "soub", "soubesse": "soub", "soul": "soul", "sound": "sound", "sourcing": "sourcing", "sousa": "sous", "south": "south", "souto": "sout", "souvenirs": "souvenirs", "souza": "souz", "soviética": "soviét", "soviéticas": "soviét", "soviético": "soviét", "soviéticos": "soviét", "soyuz": "soyuz", "sozinha": "sozinh", "sozinhas": "sozinh", "sozinho": "sozinh", "sozinhos": "sozinh", "sp": "sp", "spa": "spa", "spandau": "spandau", "spanish": "spanish", "specialty": "specialty", "specific": "specific", "spectr": "spectr", "spielberg": "spielberg", "spinosa": "spinos", "spinto": "spint", "spiritual": "spiritual", "spiti": "spit", "spitzer": "spitz", "sport": "sport", "sportszone": "sportszon", "spray": "spray", "squandered": "squandered", "squibb": "squibb", "sr": "sr", "sra": "sra", "srougi": "sroug", "sroulevitch": "sroulevitch", "sser": "sser", "staff": "staff", "stalin": "stalin", "stalinista": "stalin", "stalking": "stalking", "stamey": "stamey", "standish": "standish", "stanford": "stanford", "stanislaw": "stanislaw", "stanley": "stanley", "stanovnik": "stanovnik", "stanton": "stanton", "star": "star", "starling": "starling", "stasi": "stas", "state": "stat", "status": "status", "steam": "ste", "stefano": "stefan", "steffi": "steff", "stein": "stein", "steinbruch": "steinbruch", "steiner": "stein", "stella": "stell", "stephanes": "stephan", "stephanie": "stephani", "stephen": "stephen", "sterne": "stern", "steven": "steven", "stevie": "stevi", "stewart": "stewart", "stf": "stf", "stich": "stich", "sto": "sto", "stoliar": "stoli", "stone": "ston", "stones": "ston", "stonewall": "stonewall", "storehouse": "storehous", "strassmann": "strassmann", "strategy": "strategy", "street": "street", "stress": "stress", "strip": "strip", "striptease": "stripteas", "stripteaser": "stripteas", "struckert": "struckert", "stuart": "stuart", "stuckert": "stuckert", "studio": "studi", "studios": "studi", "stupas": "stup", "sua": "sua", "suadas": "suad", "suar": "suar", "suas": "suas", "suassuna": "suassun", "suavam": "suav", "suave": "suav", "suaves": "suav", "suavizou": "suaviz", "sub": "sub", "subatômica": "subatôm", "subdesenvolvimento": "subdesenvolv", "subempregadas": "subempreg", "subestima": "subestim", "subestimado": "subestim", "subgerente": "subgerent", "subgrupos": "subgrup", "subi": "sub", "subia": "sub", "subiam": "sub", "subida": "sub", "subidas": "sub", "subindo": "sub", "subir": "sub", "subiram": "sub", "subiria": "sub", "subisse": "sub", "súbita": "súbit", "subitamente": "subit", "súbitas": "súbit", "súbito": "súbit", "subiu": "sub", "subjetiva": "subjet", "subjetivo": "subjet", "subjugou": "subjug", "submarino": "submarin", "submarinos": "submarin", "submergente": "submergent", "submersa": "submers", "submete": "submet", "submetê": "submet", "submetem": "submet", "submeter": "submet", "submeteria": "submet", "submetida": "submet", "submetidas": "submet", "submetido": "submet", "submetidos": "submet", "submisso": "submiss", "submundo": "submund", "subnutrido": "subnutr", "subordinação": "subordin", "subordinadas": "subordin", "subordinado": "subordin", "subordinados": "subordin", "subornado": "suborn", "subornando": "suborn", "subornavam": "suborn", "suborno": "suborn", "subprocurador": "subprocur", "subprodutos": "subprodut", "subrahmanyan": "subrahmanyan", "subsidia": "subsid", "subsidiado": "subsidi", "subsidiados": "subsidi", "subsidiária": "subsidiár", "subsídios": "subsídi", "subsistem": "subsist", "subsistência": "subsistent", "subsolos": "subsol", "substância": "substânc", "substancial": "substancial", "substancialmente": "substancial", "substâncias": "substânc", "substantivos": "substant", "substituem": "substitu", "substitui": "substitu", "substituí": "substitu", "substituição": "substituiçã", "substituída": "substituíd", "substituídas": "substituíd", "substituído": "substituíd", "substituídos": "substituíd", "substituindo": "substitu", "substituir": "substitu", "substituíram": "substituír", "substituiu": "substitu", "substituta": "substitut", "substitutivo": "substitut", "substituto": "substitut", "substitutos": "substitut", "subterfúgios": "subterfúgi", "subterrânea": "subterrân", "subterrâneas": "subterrân", "subtrai": "subtra", "subunidades": "subun", "suburbana": "suburban", "suburbano": "suburban", "subúrbio": "subúrbi", "subvencionado": "subvencion", "subvenções": "subvençõ", "subversão": "subversã", "subversivas": "subvers", "subversivo": "subvers", "subvertendo": "subvert", "sucata": "sucat", "sucatas": "sucat", "sucateados": "sucat", "sucateia": "sucat", "sucede": "suced", "sucedê": "suced", "sucedem": "suced", "suceder": "suced", "sucederam": "suced", "sucedeu": "suced", "sucedida": "suced", "sucedidas": "suced", "sucedido": "suced", "sucedidos": "suced", "sucessão": "sucessã", "sucessivas": "sucess", "sucessivos": "sucess", "sucesso": "sucess", "sucessor": "sucessor", "sucessora": "sucessor", "sucessores": "sucessor", "sucessória": "sucessór", "sucessórios": "sucessóri", "sucessos": "sucess", "suco": "suc", "sucos": "suc", "suculento": "suculent", "sucumbe": "sucumb", "sucumbiu": "sucumb", "sucursais": "sucurs", "sudam": "sud", "sudameris": "sudamer", "sudão": "sudã", "sudeste": "sud", "súditos": "súdit", "sudoeste": "sudo", "sueca": "suec", "suécia": "suéc", "sueco": "suec", "suecos": "suec", "sued": "sued", "suelen": "suelen", "sueli": "suel", "suely": "suely", "suficiente": "suficient", "suficientemente": "suficient", "suficientes": "suficient", "sufixos": "sufix", "sufocante": "sufoc", "sufocar": "sufoc", "sufoco": "sufoc", "suframa": "sufram", "sugadas": "sug", "sugadoras": "sugador", "sugar": "sug", "sugere": "suger", "sugerem": "sug", "sugeri": "suger", "sugerido": "suger", "sugerindo": "suger", "sugerir": "suger", "sugeriram": "suger", "sugeriu": "suger", "sugestão": "sugestã", "sugestivas": "sugest", "sugestivo": "sugest", "sugestões": "sugestõ", "suggs": "suggs", "sugiro": "sugir", "sui": "sui", "suíça": "suíc", "suicida": "suic", "suicidado": "suicid", "suicidar": "suicid", "suicidaria": "suicid", "suicidei": "suicid", "suicídio": "suicídi", "suicídios": "suicídi", "suicidou": "suicid", "suíço": "suíc", "suingue": "suing", "suíte": "suít", "suítes": "suít", "suja": "suj", "sujas": "suj", "sujeira": "sujeir", "sujeiras": "sujeir", "sujeita": "sujeit", "sujeitas": "sujeit", "sujeito": "sujeit", "sujeitos": "sujeit", "sujo": "suj", "sujou": "suj", "sul": "sul", "sulcado": "sulc", "suleiman": "suleiman", "sulêra": "sulêr", "sulistas": "sulist", "sultão": "sultã", "sultões": "sultõ", "suma": "sum", "sumárias": "sumár", "sumiço": "sumic", "sumiços": "sumic", "sumidade": "sumidad", "sumido": "sum", "sumindo": "sum", "sumir": "sum", "sumira": "sum", "sumiram": "sum", "sumiu": "sum", "summersby": "summersby", "sun": "sun", "sundae": "sunda", "sunday": "sunday", "sunga": "sung", "suntuoso": "suntuos", "suntuosos": "suntuos", "suor": "suor", "super": "sup", "supera": "sup", "superada": "super", "superado": "super", "superalimentação": "superaliment", "superam": "sup", "superando": "super", "superar": "super", "superaram": "super", "superavitários": "superavitári", "superbuble": "superbubl", "supercerto": "supercert", "superchateado": "superchat", "superchique": "superchiqu", "supercílio": "supercíli", "supercola": "supercol", "supercomputadores": "supercomput", "supere": "super", "superespecialização": "superespecializ", "superespião": "superespiã", "superesquema": "superesquem", "superestimar": "superestim", "superestimular": "superestimul", "superestímulos": "superestímul", "superexposição": "superexposiçã", "superfaturamento": "superfatur", "superfaturar": "superfatur", "superfeliz": "superfeliz", "superficiais": "superfic", "superficial": "superficial", "superfície": "superfíc", "supérfluo": "supérflu", "superintendência": "superintendent", "superintendências": "superintendent", "superintendente": "superintendent", "superinteressante": "superinteress", "superior": "superior", "superiores": "superior", "superioridade": "superior", "superjogo": "superjog", "superlaminada": "superlamin", "superloja": "superloj", "superlotação": "superlot", "superlotada": "superlot", "superman": "superman", "supermercado": "supermerc", "supermercados": "supermerc", "supernormal": "supernormal", "superou": "super", "superpopulação": "superpopul", "superpopulosa": "superpopul", "superpotências": "superpotent", "supersônicos": "supersôn", "superstição": "superstiçã", "supersticioso": "superstic", "superternos": "supertern", "supervisão": "supervisã", "supervisionados": "supervision", "supervisor": "supervisor", "suplemento": "suplement", "supletivo": "suplet", "suplício": "suplíci", "suplicy": "suplicy", "supõe": "supõ", "supõem": "supõ", "supor": "supor", "suporta": "suport", "suportam": "suport", "suportar": "suport", "suporte": "suport", "suportou": "suport", "suposição": "suposiçã", "suposta": "supost", "supostamente": "supost", "supostas": "supost", "suposto": "supost", "supostos": "supost", "supra": "supr", "suprema": "suprem", "supremacia": "supremac", "supremo": "suprem", "supressão": "supressã", "suprida": "supr", "supridores": "supridor", "suprimento": "supriment", "suprimentos": "supriment", "suprimir": "suprim", "suprir": "supr", "supusesse": "supus", "surda": "surd", "surdo": "surd", "surdos": "surd", "surf": "surf", "surfam": "surf", "surfar": "surf", "surfe": "surf", "surfista": "surfist", "surfistas": "surfist", "surge": "surg", "surgem": "surg", "surgia": "surg", "surgiam": "surg", "surgido": "surg", "surgimento": "surgiment", "surgindo": "surg", "surgir": "surg", "surgirá": "surg", "surgiram": "surg", "surgirão": "surg", "surgisse": "surg", "surgiu": "surg", "suriname": "surinam", "surja": "surj", "surjam": "surj", "surpreende": "surpreend", "surpreendem": "surpreend", "surpreendendo": "surpreend", "surpreendente": "surpreendent", "surpreendentemente": "surpreendent", "surpreendentes": "surpreendent", "surpreender": "surpreend", "surpreendeu": "surpreend", "surpreendida": "surpreend", "surpreendidas": "surpreend", "surpreendido": "surpreend", "surpresa": "surpres", "surpresas": "surpres", "surpreso": "surpres", "surpresos": "surpres", "surra": "surr", "surradas": "surr", "surreal": "surreal", "surrealismo": "surreal", "surrealista": "surreal", "surrealistas": "surreal", "surrupiando": "surrupi", "sursis": "surs", "surtem": "surt", "surtiam": "surt", "surtir": "surt", "surtiram": "surt", "surtiu": "surt", "surto": "surt", "suruagy": "suruagy", "suruba": "surub", "survival": "survival", "surviving": "surviving", "sus": "sus", "susanna": "susann", "susanne": "susann", "susbstituindo": "susbstitu", "suscetibilidades": "suscetibil", "suscetíveis": "suscetív", "suscetível": "suscet", "suscitam": "suscit", "suscitar": "suscit", "suscitaram": "suscit", "suspeição": "suspeiçã", "suspeita": "suspeit", "suspeitam": "suspeit", "suspeitaram": "suspeit", "suspeitas": "suspeit", "suspeitasse": "suspeit", "suspeitava": "suspeit", "suspeitíssimas": "suspeitíssim", "suspeito": "suspeit", "suspeitos": "suspeit", "suspeitou": "suspeit", "suspende": "suspend", "suspendendo": "suspend", "suspender": "suspend", "suspenderiam": "suspend", "suspendeu": "suspend", "suspensa": "suspens", "suspensão": "suspensã", "suspense": "suspens", "suspenso": "suspens", "suspensos": "suspens", "suspira": "susp", "suspiravam": "suspir", "susskind": "susskind", "sustenta": "sustent", "sustentação": "sustent", "sustentada": "sustent", "sustentado": "sustent", "sustentados": "sustent", "sustentam": "sustent", "sustentar": "sustent", "sustentasse": "sustent", "sustentava": "sustent", "sustentavam": "sustent", "sustentáveis": "sustent", "sustento": "sustent", "sustentou": "sustent", "susto": "sust", "sustos": "sust", "sutiã": "sutiã", "sutiãs": "sutiãs", "sutil": "sutil", "sutilezas": "sutil", "sutilmente": "sutil", "sutis": "sut", "suvenires": "suven", "suzana": "suzan", "suzanna": "suzann", "suzano": "suzan", "suzerley": "suzerley", "suzuki": "suzuk", "suzy": "suzy", "sw": "sw", "swissair": "swissa", "swissbank": "swissbank", "sydney": "sydney", "sylviane": "sylvian", "synval": "synval", "system": "system", "szabó": "szab", "szpilman": "szpilman", "szwarc": "szwarc", "t": "t", "tá": "tá", "tabacaria": "tabac", "tabaco": "tabac", "tabela": "tabel", "tabelas": "tabel", "tabeliã": "tabeliã", "tabeliães": "tabeliã", "tabelião": "tabeliã", "tabelinha": "tabelinh", "tabelionato": "tabelionat", "tablado": "tabl", "tablados": "tabl", "tablóide": "tablóid", "tabo": "tab", "tabu": "tabu", "tábuas": "tábu", "tabulações": "tabul", "tabuleiro": "tabuleir", "tabus": "tabus", "tabwin": "tabwin", "taça": "tac", "tacada": "tac", "taças": "tac", "tachados": "tach", "taco": "tac", "tadeu": "tad", "taft": "taft", "tag": "tag", "tagarela": "tagarel", "tageszeitung": "tageszeitung", "tagliaferro": "tagliaferr", "tahoe": "taho", "taí": "taí", "taiga": "taig", "tailandês": "tailandês", "tailandesa": "tailandes", "tailandesas": "tailandes", "tailandeses": "tailandes", "tailândia": "tailând", "taille": "taill", "tailleur": "tailleur", "taiogan": "taiogan", "taipa": "taip", "tais": "tais", "taís": "taís", "taiti": "tait", "taiwan": "taiwan", "taj": "taj", "takanori": "takanor", "takarazuka": "takarazuk", "tal": "tal", "talão": "talã", "talavera": "talav", "talent": "talent", "talento": "talent", "talentos": "talent", "talentosa": "talent", "talhada": "talh", "talheres": "talh", "talismã": "talismã", "talk": "talk", "talquinho": "talquinh", "talvez": "talvez", "tam": "tam", "tamanha": "tamanh", "tamanho": "tamanh", "tamanhos": "tamanh", "tamar": "tam", "tamara": "tam", "tambaqui": "tambaqu", "também": "também", "tambolato": "tambolat", "tambor": "tambor", "tambores": "tambor", "tamburello": "tamburell", "tambus": "tambus", "tâmisa": "tâmis", "tampa": "tamp", "tampão": "tampã", "tampouco": "tampouc", "tanaka": "tanak", "tancinha": "tancinh", "tancredo": "tancred", "tande": "tand", "tanghe": "tangh", "tangível": "tangível", "tango": "tang", "tania": "tan", "tânia": "tân", "tanis": "tan", "tanner": "tann", "tanque": "tanqu", "tanques": "tanqu", "tanta": "tant", "tantas": "tant", "tanto": "tant", "tantos": "tant", "tão": "tã", "tapa": "tap", "tapados": "tap", "tapar": "tap", "tapas": "tap", "tapera": "tap", "taperilla": "taperill", "taperoá": "tapero", "tapete": "tapet", "tapetes": "tapet", "tapumes": "tapum", "taquicardia": "taquicard", "taquipsiquismo": "taquipsiqu", "taras": "tar", "tarauacá": "tarauac", "tarcisinho": "tarcisinh", "tarcísio": "tarcísi", "tarda": "tard", "tarde": "tard", "tardelli": "tardell", "tardes": "tard", "tardia": "tard", "tardiamente": "tardi", "tardinha": "tardinh", "tardou": "tard", "tarefa": "taref", "tarefas": "taref", "tarifa": "tarif", "tarifária": "tarifár", "tarifas": "tarif", "tarimbados": "tarimb", "tarja": "tarj", "tarjas": "tarj", "tarsila": "tarsil", "tarso": "tars", "tartari": "tartar", "tartaruga": "tartarug", "tartarugas": "tartarug", "task": "task", "tasso": "tass", "tatiana": "tatian", "tática": "tátic", "táticas": "tátic", "tato": "tat", "tatu": "tatu", "tatuapé": "tatuap", "tauride": "taurid", "taurus": "taurus", "tavares": "tav", "távola": "távol", "taxa": "tax", "taxas": "tax", "taxativa": "taxat", "táxi": "táx", "taxista": "taxist", "taxistas": "taxist", "taylor": "taylor", "tce": "tce", "tchan": "tchan", "tchau": "tchau", "tchun": "tchun", "tchururuchu": "tchururuchu", "tdc": "tdc", "te": "te", "tê": "tê", "tea": "tea", "team": "team", "teares": "tear", "tease": "teas", "teatrais": "teatr", "teatral": "teatral", "teatro": "teatr", "teatrólogo": "teatrólog", "teatros": "teatr", "tecelagem": "tecelag", "tecendo": "tec", "tech": "tech", "techno": "techn", "technology": "technology", "tecido": "tec", "tecidos": "tec", "técio": "téci", "tecla": "tecl", "teclado": "tecl", "técnica": "técnic", "tecnicamente": "tecnic", "técnicas": "técnic", "técnico": "técnic", "técnicos": "técnic", "tecnocratas": "tecnocrat", "tecnologia": "tecnolog", "tecnologias": "tecnolog", "tecnológica": "tecnológ", "tecnologicamente": "tecnolog", "tecnológicas": "tecnológ", "tecnológico": "tecnológ", "tecnológicos": "tecnológ", "ted": "ted", "tédio": "tédi", "tediosa": "tedios", "teemsters": "teemsters", "teen": "teen", "teens": "teens", "tefé": "tef", "teimando": "teim", "teimar": "teim", "teimoso": "teimos", "teipe": "teip", "teixeira": "teixeir", "tejo": "tej", "tel": "tel", "tela": "tel", "telão": "telã", "telas": "tel", "telbrás": "telbrás", "telebrás": "telebrás", "teleceará": "telec", "télécom": "télécom", "telecomunicação": "telecomunic", "telecomunicações": "telecomunic", "teleconferência": "teleconferent", "telecurso": "telecurs", "teledramaturgia": "teledramaturg", "telefe": "telef", "teleférico": "telefér", "telefonado": "telefon", "telefonando": "telefon", "telefonar": "telefon", "telefonaram": "telefon", "telefone": "telefon", "telefonei": "telefon", "telefonema": "telefonem", "telefonemas": "telefonem", "telefones": "telefon", "telefonia": "telefon", "telefônica": "telefôn", "telefônicas": "telefôn", "telefônico": "telefôn", "telefônicos": "telefôn", "telefono": "telefon", "telefonou": "telefon", "telegráfico": "telegráf", "telégrafo": "telégraf", "telegramas": "telegram", "telegraph": "telegraph", "telejornais": "telejorn", "telejornal": "telejornal", "telemarketing": "telemarketing", "telemig": "telemig", "telenovela": "telenovel", "telepar": "telep", "telepata": "telepat", "telepatia": "telepat", "telephony": "telephony", "telerj": "telerj", "telesc": "telesc", "telescópios": "telescópi", "telesp": "telesp", "telespectadores": "telespect", "televisa": "televis", "televisão": "televisã", "televisiva": "televis", "televisivo": "televis", "televisões": "televisõ", "televisores": "televisor", "telex": "telex", "telhado": "telh", "telhas": "telh", "telinha": "telinh", "telma": "telm", "telmo": "telm", "telões": "telõ", "telpe": "telp", "tels": "tels", "tem": "tem", "têm": "têm", "tema": "tem", "temas": "tem", "tematicamente": "temat", "temáticas": "temát", "temático": "temát", "teme": "tem", "temem": "tem", "temendo": "tem", "temer": "tem", "temeram": "tem", "temerosa": "temer", "temeu": "tem", "temia": "tem", "temiam": "tem", "temida": "tem", "temidas": "tem", "temido": "tem", "temidos": "tem", "temor": "temor", "temores": "temor", "temos": "tem", "têmpera": "têmp", "temperada": "temper", "temperado": "temper", "temperamentais": "temperament", "temperamental": "temperamental", "temperamento": "temper", "temperamentos": "temper", "temperança": "temperanc", "temperatura": "temperatur", "temperaturas": "temperatur", "tempero": "temper", "temperos": "temper", "tempestade": "tempestad", "tempestades": "tempestad", "tempestuosas": "tempestu", "tempinho": "tempinh", "templo": "templ", "templos": "templ", "tempo": "temp", "temporada": "tempor", "temporadas": "tempor", "temporal": "temporal", "temporário": "temporári", "têmporas": "têmpor", "tempos": "temp", "tempra": "tempr", "tenacidade": "tenac", "tenda": "tend", "tendam": "tend", "tendão": "tendã", "tende": "tend", "tendem": "tend", "tendência": "tendênc", "tendências": "tendênc", "tendenciosa": "tendenc", "tendendo": "tend", "tenderia": "tend", "tendo": "tend", "tenebroso": "tenebr", "tenente": "tenent", "tenentezinha": "tenentezinh", "tenha": "tenh", "tenham": "tenh", "tenhamos": "tenh", "tenho": "tenh", "tênis": "tên", "tenista": "tenist", "tenistas": "tenist", "tennessee": "tennesse", "tenor": "tenor", "tenório": "tenóri", "tenros": "tenr", "tensa": "tens", "tensão": "tensã", "tensas": "tens", "tenso": "tens", "tensões": "tensõ", "tensos": "tens", "tenta": "tent", "tentação": "tentaçã", "tentações": "tentaçõ", "tentáculos": "tentácul", "tentado": "tent", "tentados": "tent", "tentam": "tent", "tentamos": "tent", "tentando": "tent", "tentar": "tent", "tentará": "tent", "tentaram": "tent", "tentaria": "tent", "tentativa": "tentat", "tentativas": "tentat", "tentava": "tent", "tentavam": "tent", "tente": "tent", "tentei": "tent", "tentem": "tent", "tento": "tent", "tentou": "tent", "tênues": "tênu", "teobaldo": "teobald", "teodoro": "teodor", "teófilo": "teófil", "teologia": "teolog", "teológica": "teológ", "teólogos": "teólog", "teor": "teor", "teoria": "teor", "teorias": "teor", "teoricamente": "teoric", "teórico": "teóric", "teóricos": "teóric", "teoriza": "teoriz", "tequila": "tequil", "ter": "ter", "terá": "ter", "terão": "terã", "terapeuta": "terapeut", "terapeutas": "terapeut", "terapêutica": "terapêut", "terapêuticas": "terapêut", "terapêutico": "terapêut", "terapêuticos": "terapêut", "terapia": "terap", "terapias": "terap", "terça": "terc", "terças": "terc", "terceira": "terceir", "terceirizados": "terceiriz", "terceiro": "terceir", "terceiros": "terceir", "terço": "terc", "terços": "terc", "terei": "ter", "terem": "ter", "teremos": "ter", "tererê": "terer", "teresa": "teres", "teresinha": "teresinh", "tereso": "teres", "teresópolis": "teresópol", "tereza": "terez", "teria": "ter", "teriam": "ter", "teríamos": "ter", "termais": "term", "térmica": "térmic", "termina": "termin", "terminação": "termin", "terminações": "termin", "terminada": "termin", "terminado": "termin", "terminal": "terminal", "terminam": "termin", "terminamos": "termin", "terminando": "termin", "terminar": "termin", "terminará": "termin", "terminaram": "termin", "terminaria": "termin", "terminava": "termin", "terminavam": "termin", "termine": "termin", "término": "términ", "terminou": "termin", "termo": "term", "termômetro": "termômetr", "termos": "term", "terno": "tern", "ternos": "tern", "terra": "terr", "terras": "terr", "terrasul": "terrasul", "terre": "terr", "térrea": "térr", "terreiro": "terreir", "terreiros": "terreir", "terremoto": "terremot", "terremotos": "terremot", "terrence": "terrenc", "terreno": "terren", "terrenos": "terren", "térreo": "térr", "terrestre": "terrestr", "terrestres": "terrestr", "terrible": "terribl", "terrinha": "terrinh", "territoriais": "territori", "territorial": "territorial", "território": "territóri", "territórios": "territóri", "terríveis": "terrív", "terrível": "terrível", "terror": "terror", "terrorismo": "terror", "terrorista": "terror", "terroristas": "terror", "tesão": "tesã", "tese": "tes", "teses": "tes", "teske": "tesk", "tesoura": "tesour", "tesouradas": "tesour", "tesouraria": "tesour", "tesoureiro": "tesoureir", "tesouro": "tesour", "tesouros": "tesour", "tessituras": "tessitur", "testa": "test", "testada": "test", "testadas": "test", "testado": "test", "testados": "test", "testam": "test", "testamento": "testament", "testando": "test", "testar": "test", "testaram": "test", "testarossa": "testaross", "teste": "test", "testei": "test", "testemunha": "testemunh", "testemunhada": "testemunh", "testemunhado": "testemunh", "testemunham": "testemunh", "testemunhar": "testemunh", "testemunhas": "testemunh", "testemunho": "testemunh", "testemunhos": "testemunh", "testes": "test", "testículos": "testícul", "testosterona": "testosteron", "testou": "test", "teto": "tet", "tetraplégica": "tetraplég", "tetraplégico": "tetraplég", "tetraplégicos": "tetraplég", "tétrico": "tétric", "teu": "teu", "teve": "tev", "tevê": "tev", "tevês": "tevês", "texas": "tex", "têxteis": "têxt", "têxtil": "têxtil", "texto": "text", "textos": "text", "textualmente": "textual", "textura": "textur", "tgerstedt": "tgerstedt", "thaís": "thaís", "thales": "thal", "thalita": "thalit", "thamires": "tham", "thatcher": "thatch", "the": "the", "theatre": "theatr", "theatro": "theatr", "thelma": "thelm", "them": "them", "there": "ther", "thereza": "therez", "thiago": "thiag", "thomas": "thom", "thomaz": "thomaz", "thomazini": "thomazin", "thomé": "thom", "thomson": "thomson", "thury": "thury", "tia": "tia", "tiago": "tiag", "tião": "tiã", "tias": "tias", "tibetanas": "tibetan", "tibetano": "tibetan", "tibetanos": "tibetan", "tibete": "tibet", "tíbia": "tíb", "tico": "tic", "tida": "tid", "tidas": "tid", "tido": "tid", "tidos": "tid", "tie": "tie", "tigre": "tigr", "tigres": "tigr", "tijolinhos": "tijolinh", "tijolo": "tijol", "tijolos": "tijol", "tijuca": "tijuc", "tijuco": "tijuc", "tilápias": "tiláp", "tilintam": "tilint", "tilintar": "tilint", "tim": "tim", "timbre": "timbr", "timbuctu": "timbuctu", "time": "tim", "timerman": "timerman", "times": "tim", "tímida": "tím", "timidez": "timidez", "tímido": "tím", "tímidos": "tím", "timoneiro": "timoneir", "timothy": "timothy", "ting": "ting", "tinha": "tinh", "tinham": "tinh", "tínhamos": "tính", "tinja": "tinj", "tino": "tin", "tinta": "tint", "tintas": "tint", "tinto": "tint", "tintos": "tint", "tintura": "tintur", "tinturaria": "tintur", "tinturas": "tintur", "tio": "tio", "tios": "tios", "típica": "típic", "tipicamente": "tipic", "típicas": "típic", "típico": "típic", "típicos": "típic", "tipo": "tip", "tipos": "tip", "tiques": "tiqu", "tira": "tir", "tirá": "tir", "tiracolo": "tiracol", "tirada": "tir", "tiradas": "tir", "tiradentes": "tiradent", "tirado": "tir", "tirados": "tir", "tiragem": "tirag", "tiragens": "tiragens", "tiram": "tir", "tiramos": "tir", "tirando": "tir", "tirânicas": "tirân", "tiranossauro": "tiranossaur", "tirar": "tir", "tiraram": "tir", "tiraria": "tir", "tirariam": "tir", "tirasse": "tir", "tirava": "tir", "tire": "tir", "tirei": "tir", "tirinhas": "tirinh", "tirinhos": "tirinh", "tiro": "tir", "tirombaço": "tirombac", "tiros": "tir", "tiroteio": "tirotei", "tirou": "tir", "tito": "tit", "titubear": "titub", "titular": "titul", "titulares": "titul", "título": "títul", "títulos": "títul", "tive": "tiv", "tivemos": "tiv", "tiver": "tiv", "tivera": "tiv", "tiveram": "tiv", "tiverem": "tiv", "tivermos": "tiv", "tivesse": "tiv", "tivessem": "tiv", "tivéssemos": "tivéss", "tj": "tj", "tjurs": "tjurs", "tnt": "tnt", "to": "to", "tô": "tô", "toa": "toa", "toalha": "toalh", "toalhas": "toalh", "tobago": "tobag", "toca": "toc", "tocá": "toc", "tocadas": "toc", "tocado": "toc", "tocados": "toc", "tocaia": "toca", "tocamos": "toc", "tocando": "toc", "tocantins": "tocantins", "tocar": "toc", "tocaria": "toc", "tocasse": "toc", "tocava": "toc", "tocavam": "toc", "tocou": "toc", "toda": "tod", "todas": "tod", "todavia": "todav", "today": "today", "todo": "tod", "todos": "tod", "tofranil": "tofranil", "toga": "tog", "tognini": "tognin", "togo": "tog", "tóim": "tóim", "tokyo": "toky", "tolamente": "tol", "toledo": "toled", "tolera": "tol", "tolerada": "toler", "tolerância": "toler", "tolerante": "toler", "tolerar": "toler", "toleráveis": "toler", "tolice": "tolic", "tolices": "tolic", "tolo": "tol", "tolos": "tol", "tolstói": "tolstó", "tom": "tom", "toma": "tom", "tomá": "tom", "tomada": "tom", "tomadas": "tom", "tomado": "tom", "tomador": "tomador", "tomados": "tom", "tomam": "tom", "tomamos": "tom", "tomando": "tom", "tomar": "tom", "tomara": "tom", "tomaram": "tom", "tomarão": "tom", "tomaria": "tom", "tomás": "tomás", "tomaselli": "tomasell", "tomasko": "tomask", "tomaskos": "tomask", "tomasse": "tom", "tomate": "tomat", "tomates": "tomat", "tomava": "tom", "tomavam": "tom", "tomaz": "tomaz", "tombadas": "tomb", "tombado": "tomb", "tombados": "tomb", "tombamento": "tombament", "tombaram": "tomb", "tombarão": "tomb", "tombo": "tomb", "tombolato": "tombolat", "tombou": "tomb", "tome": "tom", "tomé": "tom", "tomei": "tom", "tomilho": "tomilh", "tommy": "tommy", "tomo": "tom", "tomografia": "tomograf", "tomografias": "tomograf", "tomográficas": "tomográf", "tomou": "tom", "tona": "ton", "tonalidade": "tonal", "tonéis": "ton", "tonelada": "tonel", "toneladas": "tonel", "tonho": "tonh", "tônia": "tôn", "tônica": "tônic", "toninho": "toninh", "tonitruar": "tonitru", "tons": "tons", "tonteiras": "tonteir", "tonto": "tont", "tony": "tony", "top": "top", "topa": "top", "topar": "top", "toparam": "top", "topava": "top", "topázio": "topázi", "topbooks": "topbooks", "tope": "top", "topei": "top", "topete": "topet", "topetuda": "topetud", "tópicas": "tópic", "tópico": "tópic", "tópicos": "tópic", "topo": "top", "topou": "top", "tops": "tops", "toque": "toqu", "toques": "toqu", "tóquio": "tóqui", "torá": "tor", "toras": "tor", "tórax": "tórax", "torçam": "torc", "torção": "torçã", "torce": "torc", "torcedor": "torcedor", "torcedora": "torcedor", "torcedores": "torcedor", "torcem": "torc", "torcer": "torc", "torcida": "torc", "torcidas": "torc", "tormento": "torment", "torna": "torn", "torná": "torn", "tornado": "torn", "tornam": "torn", "tornando": "torn", "tornar": "torn", "tornara": "torn", "tornará": "torn", "tornaram": "torn", "tornarem": "torn", "tornaria": "torn", "tornasse": "torn", "tornava": "torn", "torne": "torn", "torneado": "torn", "tornear": "torn", "tornei": "torn", "torneio": "tornei", "torneios": "tornei", "torneira": "torneir", "torneirinhas": "torneirinh", "tornem": "torn", "torno": "torn", "tornou": "torn", "tornozelo": "tornozel", "torpedear": "torped", "torpes": "torp", "torra": "torr", "torrados": "torr", "torram": "torr", "torrar": "torr", "torrava": "torr", "torre": "torr", "torrefação": "torref", "torrenciais": "torrenc", "torres": "torr", "tórrido": "tórr", "torso": "tors", "torta": "tort", "torto": "tort", "tortos": "tort", "tortura": "tortur", "torturador": "tortur", "torturadores": "tortur", "torturados": "tortur", "torturar": "tortur", "torturavam": "tortur", "torturou": "tortur", "tos": "tos", "tosca": "tosc", "toscana": "toscan", "toscano": "toscan", "toscas": "tosc", "toscos": "tosc", "toshiba": "toshib", "tosse": "toss", "tossindo": "toss", "tostão": "tostã", "totais": "tot", "total": "total", "totalitária": "totalitár", "totalizando": "totaliz", "totalmente": "total", "totem": "tot", "tottenham": "tottenh", "touca": "touc", "tour": "tour", "tours": "tours", "tourtois": "tourto", "toviassú": "toviassú", "towers": "towers", "towner": "town", "tóxicas": "tóxic", "toxicidade": "toxic", "toxicologia": "toxicolog", "toxicologista": "toxicolog", "tóxicos": "tóxic", "toyota": "toyot", "toys": "toys", "trabaiá": "trabai", "trabalha": "trabalh", "trabalhadas": "trabalh", "trabalhado": "trabalh", "trabalhador": "trabalh", "trabalhadora": "trabalh", "trabalhadores": "trabalh", "trabalhados": "trabalh", "trabalham": "trabalh", "trabalhamos": "trabalh", "trabalhando": "trabalh", "trabalhão": "trabalhã", "trabalhar": "trabalh", "trabalhara": "trabalh", "trabalharam": "trabalh", "trabalharem": "trabalh", "trabalhassem": "trabalh", "trabalhava": "trabalh", "trabalhavam": "trabalh", "trabalhe": "trabalh", "trabalhei": "trabalh", "trabalhem": "trabalh", "trabalhista": "trabalh", "trabalhistas": "trabalh", "trabalho": "trabalh", "trabalhos": "trabalh", "trabalhou": "trabalh", "traça": "trac", "traçada": "trac", "traçando": "trac", "tração": "traçã", "traçar": "trac", "track": "track", "traço": "trac", "traços": "trac", "traçou": "trac", "trade": "trad", "tradição": "tradiçã", "tradicionais": "tradicion", "tradicional": "tradicional", "tradicionalmente": "tradicional", "tradicionalmentese": "tradicionalmentes", "tradições": "tradiçõ", "tradist": "tradist", "tradução": "traduçã", "traduções": "traduçõ", "tradutor": "tradutor", "tradutora": "tradutor", "traduz": "traduz", "traduzem": "traduz", "traduzidas": "traduz", "traduzido": "traduz", "traduzidos": "traduz", "traduzindo": "traduz", "traduzir": "traduz", "traduziu": "traduz", "traem": "tra", "trafega": "trafeg", "trafegam": "trafeg", "trafegar": "trafeg", "trafegava": "trafeg", "tráfego": "tráfeg", "traficante": "trafic", "traficantes": "trafic", "tráfico": "tráfic", "trafiquei": "trafiqu", "traga": "trag", "tragadas": "trag", "tragado": "trag", "tragados": "trag", "tragam": "trag", "tragar": "trag", "tragédia": "tragéd", "tragédias": "tragéd", "trágica": "trágic", "tragicamente": "tragic", "tragicidade": "tragic", "trágico": "trágic", "tragicômica": "tragicôm", "trai": "tra", "traí": "tra", "traia": "tra", "traía": "traí", "traiam": "tra", "traição": "traiçã", "traído": "traíd", "traidor": "traidor", "train": "train", "traindo": "tra", "trainer": "train", "trainner": "trainn", "trair": "tra", "traíra": "traír", "traíram": "traír", "trajada": "traj", "trajado": "traj", "trajando": "traj", "traje": "traj", "trajes": "traj", "trajeto": "trajet", "trajetória": "trajetór", "trama": "tram", "tramar": "tram", "tramita": "tramit", "tramitação": "tramit", "tramitavam": "tramit", "trâmite": "trâmit", "tramitou": "tramit", "tramóia": "tramó", "tramou": "tram", "trampolim": "trampolim", "tranca": "tranc", "trancada": "tranc", "trancado": "tranc", "trançado": "tranc", "trancados": "tranc", "trancafiados": "trancafi", "trancar": "tranc", "trancas": "tranc", "trancinhas": "trancinh", "tranco": "tranc", "trancos": "tranc", "trancou": "tranc", "tranquila": "tranquil", "tranqüila": "tranqüil", "tranquilamente": "tranquil", "tranqüilamente": "tranqüil", "tranquilas": "tranquil", "tranquilidade": "tranquil", "tranqüilidade": "tranqüil", "tranqüilizador": "tranqüiliz", "tranquilizante": "tranquiliz", "tranqüilizante": "tranqüiliz", "tranquilizantes": "tranquiliz", "tranquilizar": "tranquiliz", "tranquilizaram": "tranquiliz", "tranquilo": "tranquil", "tranqüilo": "tranqüil", "tranquilos": "tranquil", "transa": "trans", "transação": "transaçã", "transações": "transaçõ", "transado": "trans", "transam": "trans", "transamazônica": "transamazôn", "transamos": "trans", "transando": "trans", "transar": "trans", "transas": "trans", "transasse": "trans", "transatlântico": "transatlânt", "transava": "trans", "transavam": "trans", "transborda": "transbord", "transbordasse": "transbord", "transbordou": "transbord", "transbrasil": "transbrasil", "transcorreram": "transcorr", "transcreve": "transcrev", "transe": "trans", "transei": "trans", "transeunte": "transeunt", "transexual": "transexual", "transexualismo": "transexual", "transfere": "transfer", "transferem": "transf", "transferência": "transferent", "transferida": "transfer", "transferidas": "transfer", "transferido": "transfer", "transferidos": "transfer", "transferindo": "transfer", "transferir": "transfer", "transferissem": "transfer", "transferiu": "transfer", "transforma": "transform", "transformá": "transform", "transformação": "transform", "transformações": "transform", "transformada": "transform", "transformado": "transform", "transformador": "transform", "transformadora": "transform", "transformados": "transform", "transformam": "transform", "transformando": "transform", "transformar": "transform", "transformaram": "transform", "transformaria": "transform", "transformasse": "transform", "transformavam": "transform", "transforme": "transform", "transformou": "transform", "transfusão": "transfusã", "transgredir": "transgred", "transgressão": "transgressã", "transgressores": "transgressor", "transgride": "transgrid", "transição": "transiçã", "transições": "transiçõ", "transita": "transit", "trânsito": "trânsit", "transitória": "transitór", "translados": "transl", "translúcido": "translúc", "transmissão": "transmissã", "transmissíveis": "transmissív", "transmissível": "transmiss", "transmissões": "transmissõ", "transmissores": "transmissor", "transmite": "transmit", "transmitida": "transmit", "transmitidas": "transmit", "transmitido": "transmit", "transmitidos": "transmit", "transmitir": "transmit", "transmitirão": "transmit", "transmutação": "transmut", "transmutar": "transmut", "transnacionais": "transnacion", "transnacional": "transnacional", "transnordestina": "transnordestin", "transo": "trans", "transou": "trans", "transparece": "transparec", "transparência": "transparent", "transparente": "transparent", "transparentes": "transparent", "transpiração": "transpir", "transpondo": "transpond", "transporta": "transport", "transportada": "transport", "transportadora": "transport", "transportadores": "transport", "transportam": "transport", "transportando": "transport", "transportar": "transport", "transportaram": "transport", "transporte": "transport", "transportes": "transport", "transposta": "transpost", "transtornado": "transtorn", "transtorno": "transtorn", "transtornos": "transtorn", "trapalhada": "trapalh", "trapalhadas": "trapalh", "trapézio": "trapézi", "traquejo": "traquej", "traquinagem": "traquinag", "trará": "trar", "traria": "trar", "trariam": "trar", "trás": "trás", "traseira": "traseir", "traseiro": "traseir", "traseiros": "traseir", "traslado": "trasl", "trata": "trat", "tratá": "trat", "tratada": "trat", "tratadas": "trat", "tratado": "trat", "tratadores": "tratador", "tratados": "trat", "tratam": "trat", "tratamento": "tratament", "tratamentos": "tratament", "tratamos": "trat", "tratando": "trat", "tratar": "trat", "trataram": "trat", "tratarmos": "trat", "tratasse": "trat", "tratava": "trat", "tratavam": "trat", "trate": "trat", "tratei": "trat", "tratem": "trat", "trato": "trat", "trator": "trator", "tratores": "trator", "tratou": "trat", "trauma": "traum", "traumann": "traumann", "traumas": "traum", "traumática": "traumát", "traumático": "traumát", "traumatismo": "traumat", "traumatizado": "traumatiz", "traumatizantes": "traumatiz", "traumatizou": "traumatiz", "trava": "trav", "travada": "trav", "travadas": "trav", "travado": "trav", "travam": "trav", "travar": "trav", "travas": "trav", "trave": "trav", "travei": "trav", "travel": "travel", "travessura": "travessur", "travesti": "travest", "travestis": "travest", "travolta": "travolt", "travou": "trav", "traz": "traz", "trazê": "traz", "trazem": "traz", "trazendo": "traz", "trazer": "traz", "trazia": "traz", "traziam": "traz", "trazida": "traz", "trazidas": "traz", "trazido": "traz", "trazidos": "traz", "tre": "tre", "treatment": "treatment", "trecho": "trech", "trechos": "trech", "trefil": "trefil", "treina": "trein", "treinada": "trein", "treinadas": "trein", "treinado": "trein", "treinador": "treinador", "treinadora": "treinador", "treinadores": "treinador", "treinados": "trein", "treinamento": "treinament", "treinamentos": "treinament", "treinando": "trein", "treinar": "trein", "treinava": "trein", "treino": "trein", "treinos": "trein", "trejeitos": "trejeit", "trem": "trem", "tremedeira": "tremedeir", "tremeliques": "tremeliqu", "tremem": "trem", "tremenda": "tremend", "tremendo": "trem", "tremendos": "tremend", "tremer": "trem", "tremia": "trem", "tremiam": "trem", "tremor": "tremor", "tremores": "tremor", "tremularam": "tremul", "trench": "trench", "trends": "trends", "trens": "trens", "trepidante": "trepid", "tréplica": "tréplic", "três": "três", "trésor": "trésor", "trevisan": "trevisan", "trez": "trez", "treze": "trez", "tri": "tri", "triagem": "triag", "triângulo": "triângul", "triathlon": "triathlon", "tribal": "tribal", "tribo": "trib", "tribos": "trib", "tribuna": "tribun", "tribunais": "tribun", "tribunal": "tribunal", "tributação": "tribut", "tricampeã": "tricampeã", "tridimensional": "tridimensional", "triênios": "triêni", "trigêmeos": "trigêm", "trigo": "trig", "trilha": "trilh", "trilhá": "trilh", "trilhado": "trilh", "trilhados": "trilh", "trilhando": "trilh", "trilhão": "trilhã", "trilhões": "trilhõ", "trilionésimo": "trilionésim", "trilogia": "trilog", "trimestre": "trimestr", "trinados": "trin", "trincheiras": "trincheir", "trindade": "trindad", "trinidad": "trinidad", "trinta": "trint", "trio": "tri", "tripanosoma": "tripanosom", "tripla": "tripl", "triplicados": "triplic", "triplicar": "triplic", "triplicou": "triplic", "triplos": "tripl", "tripoli": "tripol", "tripudiam": "tripud", "tripulação": "tripul", "tripulações": "tripul", "tripulada": "tripul", "tripulante": "tripul", "tripulantes": "tripul", "tristão": "tristã", "triste": "trist", "tristemente": "tristement", "tristes": "trist", "tristeza": "tristez", "tristezas": "tristez", "tristíssimas": "tristíssim", "triunfado": "triunf", "triunfalismo": "triunfal", "triunfante": "triunfant", "triunfar": "triunf", "triunfo": "triunf", "triunfos": "triunf", "troca": "troc", "trocada": "troc", "trocadas": "troc", "trocado": "troc", "trocados": "troc", "trocam": "troc", "trocamos": "troc", "trocando": "troc", "trocar": "troc", "trocaram": "troc", "trocaria": "troc", "trocas": "troc", "trocasse": "troc", "trocava": "troc", "trocavam": "troc", "trocentos": "trocent", "troco": "troc", "troço": "troc", "trocou": "troc", "troféu": "troféu", "troféus": "troféus", "tróia": "tró", "tróica": "tróic", "trombada": "tromb", "trombadinhas": "trombadinh", "trombados": "tromb", "trombeta": "trombet", "trombeteia": "trombet", "trombeteou": "trombet", "trombina": "trombin", "trombose": "trombos", "trombou": "tromb", "trompas": "tromp", "trompetista": "trompet", "troncos": "tronc", "trono": "tron", "tropa": "trop", "tropas": "trop", "tropeços": "tropec", "tropeçou": "tropec", "tropicais": "tropic", "tropical": "tropical", "tropicalismo": "tropical", "tropicar": "tropic", "trópicos": "trópic", "troque": "troqu", "troquei": "troqu", "trotskistas": "trotskist", "trouxe": "troux", "trouxera": "troux", "trouxeram": "troux", "trouxesse": "troux", "trovão": "trovã", "truculenta": "truculent", "truculento": "truculent", "truculentos": "truculent", "truncamentos": "truncament", "trunfo": "trunf", "trunfos": "trunf", "trupe": "trup", "truque": "truqu", "truques": "truqu", "trutas": "trut", "try": "try", "tsé": "tsé", "tserete": "tseret", "tsibliiev": "tsibliiev", "tst": "tst", "tu": "tu", "tua": "tua", "tuba": "tub", "tubarão": "tub", "tubarões": "tubarõ", "tuberculose": "tuberculos", "tubo": "tub", "tubos": "tub", "tuca": "tuc", "tucana": "tucan", "tucanato": "tucanat", "tucano": "tucan", "tucanos": "tucan", "tucows": "tucows", "tudo": "tud", "tufi": "tuf", "túlio": "túli", "tulli": "tull", "tullio": "tulli", "tuma": "tum", "tumavam": "tum", "tumba": "tumb", "tumor": "tumor", "tumores": "tumor", "túmulo": "túmul", "tumultuada": "tumultu", "tumultuado": "tumultu", "tumultuar": "tumultu", "túneis": "tún", "túnel": "túnel", "tung": "tung", "tunga": "tung", "tungando": "tung", "tunisianos": "tunisian", "tupi": "tup", "tupinambá": "tupinamb", "tupiniquim": "tupiniquim", "tupiniquins": "tupiniquins", "turandot": "turandot", "turano": "turan", "turbantes": "turbant", "turbilhão": "turbilhã", "turbina": "turbin", "turbinar": "turbin", "turboélice": "turboélic", "turboélices": "turboélic", "turbulência": "turbulent", "turbulências": "turbulent", "turbulento": "turbulent", "turca": "turc", "turco": "turc", "turcos": "turc", "turfe": "turf", "turibio": "turibi", "turismo": "turism", "turista": "turist", "turistas": "turist", "turística": "turíst", "turísticas": "turíst", "turístico": "turíst", "turísticos": "turíst", "turma": "turm", "turmas": "turm", "turminha": "turminh", "turnê": "turn", "turner": "turn", "turno": "turn", "turnos": "turn", "turquesa": "turques", "turquia": "turqu", "turvo": "turv", "tutela": "tutel", "tutti": "tutt", "tv": "tv", "tva": "tva", "twa": "twa", "tyron": "tyron", "tyson": "tyson", "u": "u", "uau": "uau", "ub": "ub", "ubaldo": "ubald", "uberaba": "uberab", "uberlândia": "uberlând", "ubirajara": "ubiraj", "uchoa": "ucho", "ucla": "ucla", "ud": "ud", "ude": "ude", "ué": "ué", "uerj": "uerj", "ufmg": "ufmg", "ufo": "ufo", "ufologia": "ufolog", "ufológica": "ufológ", "ufológico": "ufológ", "ufólogo": "ufólog", "ufólogos": "ufólog", "ufos": "ufos", "ufpe": "ufpe", "ufrj": "ufrj", "uh": "uh", "uhf": "uhf", "uísque": "uísqu", "uisquinho": "uisquinh", "uivar": "uiv", "uivo": "uiv", "ulan": "ulan", "úlcera": "úlcer", "úlceras": "úlcer", "ulisses": "uliss", "ulrich": "ulrich", "ultima": "ultim", "última": "últim", "ultimamente": "ultim", "últimas": "últim", "último": "últim", "últimos": "últim", "ultra": "ultra", "ultradiet": "ultradiet", "ultraje": "ultraj", "ultralar": "ultral", "ultramodernos": "ultramodern", "ultrapassa": "ultrapass", "ultrapassadíssima": "ultrapassadíssim", "ultrapassado": "ultrapass", "ultrapassagem": "ultrapassag", "ultrapassar": "ultrapass", "ultrapassara": "ultrapass", "ultrapassará": "ultrapass", "ultrapassaram": "ultrapass", "ultrapassava": "ultrapass", "ultrapassavam": "ultrapass", "ultrapassou": "ultrapass", "ultratradicionalista": "ultratradicional", "ulysses": "ulysses", "um": "um", "uma": "uma", "umas": "umas", "umbanda": "umband", "umbandista": "umband", "umbundo": "umbund", "úmero": "úmer", "umidade": "umidad", "úmidas": "úmid", "umidificada": "umidific", "unaí": "una", "unânime": "unânim", "unânimes": "unânim", "unanimidade": "unanim", "une": "une", "unem": "unem", "unesco": "unesc", "unesp": "unesp", "unfucked": "unfucked", "ungido": "ungid", "ungidos": "ungid", "unha": "unha", "unhas": "unhas", "unhazinha": "unhazinh", "uni": "uni", "uniações": "uniaçõ", "uniad": "uniad", "união": "uniã", "unibanco": "unibanc", "única": "únic", "unicamp": "unicamp", "únicas": "únic", "unicef": "unicef", "único": "únic", "únicos": "únic", "unida": "unid", "unidade": "unidad", "unidades": "unidad", "unidas": "unid", "unido": "unid", "unidos": "unid", "unificação": "unific", "unificada": "unific", "unificar": "unific", "unificou": "unific", "uniforme": "uniform", "uniformemente": "uniform", "unilaterais": "unilater", "unilateral": "unilateral", "unimes": "unim", "unindo": "unind", "union": "union", "unir": "unir", "uniram": "unir", "unisc": "unisc", "unita": "unit", "united": "united", "universal": "universal", "universidade": "univers", "universidades": "univers", "universitária": "universitár", "universitárias": "universitár", "universitário": "universitári", "universitários": "universitári", "université": "universit", "university": "university", "universo": "univers", "unix": "unix", "uno": "uno", "uns": "uns", "unwerth": "unwerth", "uol": "uol", "up": "up", "upenn": "upenn", "upgrade": "upgrad", "upper": "upper", "ups": "ups", "urandir": "urand", "urânio": "urâni", "urbana": "urban", "urbanas": "urban", "urbanismo": "urban", "urbanisno": "urbanisn", "urbanista": "urban", "urbanização": "urbaniz", "urbanizados": "urbaniz", "urbanos": "urban", "uretra": "uretr", "urgência": "urgênc", "urgente": "urgent", "urgentemente": "urgent", "urgentes": "urgent", "uri": "uri", "úrico": "úric", "urina": "urin", "urinar": "urin", "urinária": "urinár", "urinário": "urinári", "urinoterapia": "urinoterap", "urna": "urna", "urnas": "urnas", "urologia": "urolog", "urológica": "urológ", "urologista": "urolog", "urologistas": "urolog", "urrava": "urrav", "ursinho": "ursinh", "urso": "urso", "urss": "urss", "urubus": "urubus", "urubuzada": "urubuz", "urucânia": "urucân", "uruguai": "urugua", "uruguaiana": "uruguaian", "urutus": "urutus", "us": "us", "usa": "usa", "usá": "usá", "usada": "usad", "usadas": "usad", "usado": "usad", "usados": "usad", "usam": "usam", "usamos": "usam", "usando": "usand", "usar": "usar", "usaram": "usar", "usarei": "usar", "usarem": "usar", "usarmos": "usarm", "usava": "usav", "usavam": "usav", "usávamos": "usáv", "usável": "usável", "use": "use", "usei": "use", "usiminas": "usimin", "usina": "usin", "usinas": "usin", "usineiros": "usineir", "uso": "uso", "usos": "usos", "usou": "usou", "usp": "usp", "usual": "usual", "usuário": "usuári", "usuários": "usuári", "usufrui": "usufru", "usufruir": "usufru", "úteis": "úte", "utensílios": "utensíli", "uterino": "uterin", "uterinos": "uterin", "útero": "úter", "uti": "uti", "util": "util", "útil": "útil", "utilidade": "util", "utilidades": "util", "utilíssimos": "utilíss", "utilitário": "utilitári", "utilitários": "utilitári", "utiliza": "utiliz", "utilizá": "utiliz", "utilização": "utiliz", "utilizada": "utiliz", "utilizadas": "utiliz", "utilizado": "utiliz", "utilizados": "utiliz", "utilizam": "utiliz", "utilizando": "utiliz", "utilizar": "utiliz", "utilizaram": "utiliz", "utilizarão": "utiliz", "utilize": "utiliz", "utilizem": "utiliz", "utilizou": "utiliz", "utinati": "utinat", "utópicas": "utóp", "utópico": "utóp", "utopistas": "utop", "uvas": "uvas", "uvibra": "uvibr", "uzi": "uzi", "v": "v", "vá": "vá", "vaca": "vac", "vacas": "vac", "vacilou": "vacil", "vacina": "vacin", "vacinação": "vacin", "vacinada": "vacin", "vacinas": "vacin", "vácuo": "vácu", "vadia": "vad", "vaga": "vag", "vagabal": "vagabal", "vagabundo": "vagabund", "vagam": "vag", "vagamente": "vag", "vagão": "vagã", "vagar": "vag", "vagarosa": "vagar", "vagas": "vag", "vagina": "vagin", "vaginais": "vagin", "vaginal": "vaginal", "vagner": "vagn", "vago": "vag", "vagões": "vagõ", "vagos": "vag", "vai": "vai", "vaidade": "vaidad", "vaidosa": "vaidos", "vaidosas": "vaidos", "vaidoso": "vaidos", "vaidosos": "vaidos", "vainfas": "vainf", "vaitsman": "vaitsman", "vaivém": "vaivém", "vala": "val", "valadares": "valad", "valas": "val", "valcilene": "valcilen", "valdeci": "valdec", "valdemar": "valdem", "valdenir": "valden", "valderez": "valderez", "valdir": "vald", "vale": "val", "valecom": "valecom", "valecon": "valecon", "valeika": "valeik", "valem": "val", "valença": "valenc", "valendo": "val", "valenssa": "valenss", "valente": "valent", "valentia": "valent", "valentim": "valentim", "valentino": "valentin", "valenty": "valenty", "valer": "val", "valera": "val", "valeram": "val", "valeria": "val", "valéria": "valér", "valeriam": "val", "valery": "valery", "vales": "val", "valessem": "val", "valeu": "val", "valgone": "valgon", "valha": "valh", "valho": "valh", "valia": "val", "valiam": "val", "válida": "vál", "validade": "validad", "validados": "valid", "válidas": "vál", "valido": "val", "válido": "vál", "válidos": "vál", "valinhos": "valinh", "valiosa": "valios", "valiosas": "valios", "valiosíssimas": "valiosíssim", "valise": "valis", "valium": "valium", "valladares": "vallad", "valle": "vall", "vallegrande": "vallegrand", "vallegrandinos": "vallegrandin", "valor": "valor", "valores": "valor", "valoriza": "valoriz", "valorização": "valoriz", "valorizada": "valoriz", "valorizadas": "valoriz", "valorizado": "valoriz", "valorizados": "valoriz", "valorizam": "valoriz", "valorizando": "valoriz", "valorizar": "valoriz", "valorize": "valoriz", "valorizou": "valoriz", "valquíria": "valquír", "valsa": "vals", "valter": "valt", "valujet": "valujet", "válvula": "válvul", "válvulas": "válvul", "vamos": "vam", "vancouver": "vancouv", "vandalismo": "vandal", "vanderbild": "vanderbild", "vanderbilt": "vanderbilt", "vandergleison": "vandergleison", "vanessa": "vaness", "vange": "vang", "vangloriar": "vanglori", "vanguarda": "vanguard", "vanguardas": "vanguard", "vânia": "vân", "vanilda": "vanild", "vanin": "vanin", "vantagem": "vantag", "vantagens": "vantagens", "vantajosa": "vantaj", "vantajosamente": "vantaj", "vantajoso": "vantaj", "vão": "vã", "vapor": "vapor", "vaqueiro": "vaqueir", "vara": "var", "varanda": "varand", "varas": "var", "varavam": "var", "varejo": "varej", "varela": "varel", "varella": "varell", "varetas": "varet", "vargas": "varg", "varginha": "varginh", "varia": "var", "variação": "variaçã", "variações": "variaçõ", "variada": "vari", "variadas": "vari", "variadíssimos": "variadíss", "variado": "vari", "variados": "vari", "variam": "var", "variando": "vari", "variant": "variant", "variantes": "variant", "variar": "vari", "várias": "vár", "variavam": "vari", "variáveis": "vari", "variável": "variável", "variedade": "variedad", "variedades": "variedad", "varig": "varig", "varíola": "varíol", "vários": "vári", "varre": "varr", "varredura": "varredur", "varreduras": "varredur", "varrer": "varr", "varreu": "varr", "varrida": "varr", "varrido": "varr", "várzea": "várz", "vascaína": "vascaín", "vasco": "vasc", "vasconcellos": "vasconcell", "vasconcelos": "vasconcel", "vascular": "vascul", "vasculares": "vascul", "vasculha": "vasculh", "vasculham": "vasculh", "vasculhando": "vasculh", "vasculhar": "vasculh", "vasculharam": "vasculh", "vasculhava": "vasculh", "vasculhavam": "vasculh", "vasculhou": "vasculh", "vasectomia": "vasectom", "vaso": "vas", "vasodilatadores": "vasodilat", "vasoflor": "vasoflor", "vasos": "vas", "vasp": "vasp", "vasquez": "vasquez", "vassalo": "vassal", "vassili": "vassil", "vassoura": "vassour", "vassouras": "vassour", "vassoureiro": "vassoureir", "vasta": "vast", "vasto": "vast", "vaticano": "vatican", "vavá": "vav", "vaz": "vaz", "vazamento": "vazament", "vazão": "vazã", "vazar": "vaz", "vazava": "vaz", "vazem": "vaz", "vazia": "vaz", "vazias": "vaz", "vazio": "vazi", "vazios": "vazi", "vazou": "vaz", "vê": "vê", "veados": "vead", "vectra": "vectr", "vedação": "vedaçã", "vedete": "vedet", "vedetes": "vedet", "vêem": "vêem", "veementemente": "veement", "vegas": "veg", "vegeta": "veget", "vegetação": "veget", "vegetais": "veget", "vegetal": "vegetal", "vegetariana": "vegetarian", "vegetativa": "veget", "veia": "vei", "veias": "vei", "veiculação": "veicul", "veiculado": "veicul", "veículo": "veícul", "veículos": "veícul", "veiga": "veig", "veio": "vei", "veja": "vej", "vejam": "vej", "vejamos": "vej", "vejo": "vej", "vela": "vel", "velada": "vel", "velado": "vel", "velados": "vel", "velas": "vel", "velasco": "velasc", "velejando": "velej", "velha": "velh", "velhas": "velh", "velhice": "velhic", "velhinha": "velhinh", "velhinhas": "velhinh", "velhinho": "velhinh", "velhíssimo": "velhíssim", "velho": "velh", "velhos": "velh", "velinhas": "velinh", "velocidade": "veloc", "velocidades": "veloc", "velório": "velóri", "veloso": "velos", "veloz": "veloz", "velozes": "veloz", "velozmente": "veloz", "veludo": "velud", "vem": "vem", "vêm": "vêm", "vemos": "vem", "venais": "ven", "venâncio": "venânci", "vença": "venc", "vence": "venc", "vencedor": "vencedor", "vencedora": "vencedor", "vencendo": "venc", "vencer": "venc", "vencera": "venc", "venceram": "venc", "vencerem": "venc", "venceslau": "venceslau", "venceu": "venc", "venci": "venc", "vencida": "venc", "vencido": "venc", "vencidos": "venc", "vencimento": "venciment", "venda": "vend", "vendagem": "vendag", "vendam": "vend", "vendas": "vend", "vendaval": "vendaval", "vende": "vend", "vendê": "vend", "vendedor": "vendedor", "vendedora": "vendedor", "vendedoras": "vendedor", "vendedores": "vendedor", "vendem": "vend", "vendendo": "vend", "vender": "vend", "venderam": "vend", "venderem": "vend", "venderia": "vend", "vendesse": "vend", "vendeu": "vend", "vendi": "vend", "vendia": "vend", "vendiam": "vend", "vendida": "vend", "vendidas": "vend", "vendido": "vend", "vendidos": "vend", "vendilhões": "vendilhõ", "vendo": "vend", "veneno": "venen", "venenos": "venen", "venenoso": "venen", "venenosos": "venen", "veneração": "vener", "venerada": "vener", "venerado": "vener", "venerados": "vener", "veneram": "ven", "venerar": "vener", "venerável": "vener", "veneto": "venet", "veneza": "venez", "venezuela": "venezuel", "veng": "veng", "venha": "venh", "venham": "venh", "venho": "venh", "venice": "venic", "ventania": "ventan", "vento": "vent", "ventos": "vent", "ventre": "ventr", "venture": "ventur", "ventures": "ventur", "venturini": "venturin", "ver": "ver", "vera": "ver", "verá": "ver", "verão": "verã", "verba": "verb", "verbais": "verb", "verbal": "verbal", "verbalizou": "verbaliz", "verbalmente": "verbal", "verbas": "verb", "verciana": "vercian", "verdade": "verdad", "verdadeira": "verdadeir", "verdadeiramente": "verdadeir", "verdadeiras": "verdadeir", "verdadeiro": "verdadeir", "verdadeiros": "verdadeir", "verdades": "verdad", "verde": "verd", "verdes": "verd", "verdi": "verd", "verduras": "verdur", "vereador": "vereador", "vereadores": "vereador", "veredicto": "veredict", "verem": "ver", "veremos": "ver", "vergílio": "vergíli", "vergonha": "vergonh", "vergonhosa": "vergonh", "vergonhoso": "vergonh", "veridiana": "veridian", "verifica": "verif", "verificação": "verific", "verificamos": "verific", "verificando": "verific", "verificar": "verific", "verificasse": "verific", "verificou": "verific", "veríssimo": "veríssim", "vermelha": "vermelh", "vermelhas": "vermelh", "vermelho": "vermelh", "vermelhos": "vermelh", "verminose": "verminos", "verões": "verõ", "verona": "veron", "veronica": "veron", "verônica": "verôn", "veronika": "veronik", "verrugas": "verrug", "versa": "vers", "versace": "versac", "versão": "versã", "versáteis": "versát", "versátil": "versátil", "versatilidade": "versatil", "verso": "vers", "versões": "versõ", "versolato": "versolat", "versos": "vers", "vertebral": "vertebral", "vertente": "vertent", "vertentes": "vertent", "vertical": "vertical", "vértices": "vértic", "vertiginosos": "vertigin", "verve": "verv", "vesícula": "vesícul", "vesículas": "vesícul", "véspera": "vésp", "vésperas": "vésp", "vespri": "vespr", "veste": "vest", "vestem": "vest", "vestes": "vest", "vesti": "vest", "vestia": "vest", "vestiam": "vest", "vestiários": "vestiári", "vestibulandos": "vestibuland", "vestibular": "vestibul", "vestida": "vest", "vestidas": "vest", "vestido": "vest", "vestidos": "vest", "vestígios": "vestígi", "vestimenta": "vestiment", "vestindo": "vest", "vestir": "vest", "vestiram": "vest", "vestiu": "vest", "vestuário": "vestuári", "veta": "vet", "vetado": "vet", "vetar": "vet", "veteranas": "veteran", "veterano": "veteran", "veteranos": "veteran", "veterinária": "veterinár", "veto": "vet", "vetor": "vetor", "vetos": "vet", "vetou": "vet", "vettorazzo": "vettorazz", "véu": "véu", "véus": "véus", "vexame": "vexam", "vexames": "vexam", "vexatório": "vexatóri", "vez": "vez", "vezes": "vez", "vf": "vf", "vhd": "vhd", "vi": "vi", "via": "via", "viabilidade": "viabil", "viabilizar": "viabiliz", "viabilizou": "viabiliz", "viado": "viad", "viados": "viad", "viaduto": "viadut", "viadutos": "viadut", "viáfora": "viáfor", "viagem": "viag", "viagens": "viagens", "viaja": "viaj", "viajado": "viaj", "viajam": "viaj", "viajando": "viaj", "viajante": "viajant", "viajantes": "viajant", "viajar": "viaj", "viajaram": "viaj", "viajaria": "viaj", "viajava": "viaj", "viajavam": "viaj", "viajei": "viaj", "viajou": "viaj", "vialli": "viall", "viam": "viam", "víamos": "víam", "viana": "vian", "vianna": "viann", "viária": "viár", "vias": "vias", "viáveis": "viáv", "viável": "viável", "víbora": "víbor", "vibração": "vibraçã", "vibracional": "vibracional", "vibrações": "vibraçõ", "vibram": "vibr", "vibrando": "vibr", "vibrante": "vibrant", "vibraram": "vibr", "vibrava": "vibr", "vibrou": "vibr", "vic": "vic", "vice": "vic", "vicente": "vicent", "vicia": "vic", "viciada": "vic", "viciadas": "vic", "viciado": "vic", "viciados": "vic", "viciantes": "viciant", "vicinal": "vicinal", "vício": "víci", "vícios": "víci", "vicissitudes": "vicissitud", "vicky": "vicky", "viçosa": "viços", "victor": "victor", "victoria": "victor", "victória": "victór", "vicunha": "vicunh", "vida": "vid", "vidas": "vid", "vide": "vid", "vidente": "vident", "vídeo": "víd", "videobrasil": "videobrasil", "videocassete": "videocasset", "videodiscos": "videodisc", "videogame": "videogam", "videomaker": "videomak", "vídeos": "víd", "vidinha": "vidinh", "vidraça": "vidrac", "vidraças": "vidrac", "vidraceiro": "vidraceir", "vidrado": "vidr", "vidrados": "vidr", "vidro": "vidr", "vidros": "vidr", "vieira": "vieir", "viela": "viel", "vielas": "viel", "vielmond": "vielmond", "viena": "vien", "vier": "vier", "vieram": "vier", "viesse": "viess", "viessem": "viess", "vietcongues": "vietcongu", "vietnã": "vietnã", "vietnamitas": "vietnamit", "vigarice": "vigaric", "vigário": "vigári", "vigários": "vigári", "vigente": "vigent", "vigiado": "vigi", "vigiando": "vigi", "vigiar": "vigi", "vigiava": "vigi", "vigiavam": "vigi", "vigilância": "vigil", "vigilantes": "vigil", "vigília": "vigíl", "vigor": "vigor", "vigore": "vigor", "vil": "vil", "vila": "vil", "vilã": "vilã", "vilaboim": "vilaboim", "vilanices": "vilanic", "vilanova": "vilanov", "vilão": "vilã", "vilarejo": "vilarej", "vilarejos": "vilarej", "vilas": "vil", "vilãs": "vilãs", "villa": "vill", "villaça": "villac", "village": "villag", "villaméa": "villam", "villanova": "villanov", "villas": "vill", "villaventura": "villaventur", "villela": "villel", "vilmacy": "vilmacy", "vilões": "vilõ", "vilson": "vilson", "vim": "vim", "vime": "vim", "vinagre": "vinagr", "vincadas": "vinc", "vincenzo": "vincenz", "vincos": "vinc", "vinculá": "vincul", "vinculada": "vincul", "vinculado": "vincul", "vinculados": "vincul", "vinculando": "vincul", "vínculo": "víncul", "vínculos": "víncul", "vinculou": "vincul", "vinda": "vind", "vindas": "vind", "vinde": "vind", "vindo": "vind", "vindos": "vind", "ving": "ving", "vingado": "ving", "vingança": "vinganc", "vingando": "ving", "vingar": "ving", "vingativo": "vingat", "vingou": "ving", "vinha": "vinh", "vinham": "vinh", "vinhedo": "vinhed", "vinheta": "vinhet", "vinhetas": "vinhet", "vinho": "vinh", "vinhos": "vinh", "vinicius": "vinicius", "vinícius": "vinícius", "vinícola": "vinícol", "vinícolas": "vinícol", "vinil": "vinil", "vinson": "vinson", "vinte": "vint", "vinténs": "vinténs", "viola": "viol", "violação": "violaçã", "violações": "violaçõ", "violão": "violã", "violaram": "viol", "violência": "violênc", "violências": "violênc", "violenta": "violent", "violentamente": "violent", "violentas": "violent", "violentíssimas": "violentíssim", "violento": "violent", "violentos": "violent", "violinistas": "violin", "violões": "violõ", "vip": "vip", "vips": "vips", "vir": "vir", "vira": "vir", "virá": "vir", "viracopos": "viracop", "virada": "vir", "viradas": "vir", "virado": "vir", "viram": "vir", "virando": "vir", "virão": "virã", "virar": "vir", "viraram": "vir", "virava": "vir", "vire": "vir", "virei": "vir", "virem": "vir", "virgem": "virg", "virgens": "virgens", "virgília": "virgíl", "virgílio": "virgíli", "virgindade": "virgindad", "virgínia": "virgín", "virginie": "virgini", "vírgula": "vírgul", "viria": "vir", "viriam": "vir", "virilidade": "viril", "virmondes": "virmond", "virna": "virn", "viro": "vir", "viroses": "viros", "virou": "vir", "virtuais": "virtu", "virtual": "virtual", "virtualmente": "virtual", "virtude": "virtud", "virtudes": "virtud", "vírus": "vírus", "virusterapia": "virusterap", "visa": "vis", "visada": "vis", "visado": "vis", "visados": "vis", "visando": "vis", "visão": "visã", "vísceras": "vísc", "viscomi": "viscom", "visconde": "viscond", "viscosa": "viscos", "visible": "visibl", "vision": "vision", "visita": "visit", "visitá": "visit", "visitada": "visit", "visitadas": "visit", "visitado": "visit", "visitados": "visit", "visitam": "visit", "visitamos": "visit", "visitante": "visit", "visitantes": "visit", "visitar": "visit", "visitaram": "visit", "visitas": "visit", "visitasse": "visit", "visitavam": "visit", "visitou": "visit", "visíveis": "visív", "visível": "visível", "visivelmente": "visivel", "vislumbra": "vislumbr", "vislumbrar": "vislumbr", "vislumbrou": "vislumbr", "visões": "visõ", "visor": "visor", "visse": "viss", "vista": "vist", "vistas": "vist", "visto": "vist", "vistoria": "vistor", "vistos": "vist", "visuais": "visu", "visual": "visual", "visualmente": "visual", "vita": "vit", "vitais": "vit", "vital": "vital", "vitalícios": "vitalíci", "vitalidade": "vital", "vitamina": "vitamin", "vitaminada": "vitamin", "vitaminas": "vitamin", "vitara": "vit", "vítima": "vítim", "vitimam": "vitim", "vítimas": "vítim", "vitimou": "vitim", "vitivinicultura": "vitivinicultur", "vitor": "vitor", "vítor": "vítor", "vitória": "vitór", "vitórias": "vitór", "vitório": "vitóri", "vitoriosa": "vitori", "vitoriosas": "vitori", "vitorioso": "vitori", "vitoriosos": "vitori", "vitrinas": "vitrin", "vitrine": "vitrin", "vitrines": "vitrin", "vitrola": "vitrol", "viu": "viu", "viúva": "viúv", "viúvas": "viúv", "viva": "viv", "vivacidade": "vivac", "vivamente": "viv", "vivas": "viv", "vive": "viv", "vivem": "viv", "vivemos": "viv", "vivencia": "vivenc", "vivenciadas": "vivenc", "vivenciaram": "vivenc", "vivências": "vivênc", "vivendo": "viv", "viver": "viv", "vivera": "viv", "viveram": "viv", "viveria": "viv", "vivesse": "viv", "viveu": "viv", "vivi": "viv", "vivia": "viv", "viviam": "viv", "viviane": "vivian", "vivida": "viv", "vividas": "viv", "vivido": "viv", "vividos": "viv", "vivien": "vivien", "vivinha": "vivinh", "vivíssimas": "vivíssim", "vivíssimos": "vivíss", "vivo": "viv", "vivos": "viv", "vizinha": "vizinh", "vizinhança": "vizinhanc", "vizinhas": "vizinh", "vizinho": "vizinh", "vizinhos": "vizinh", "vladimir": "vladim", "vle": "vle", "vô": "vô", "voa": "voa", "voador": "voador", "voadores": "voador", "voam": "voam", "voando": "voand", "voar": "voar", "voara": "voar", "voava": "voav", "voavam": "voav", "voávamos": "voáv", "vocabulário": "vocabulári", "vocábulos": "vocábul", "vocação": "vocaçã", "vocais": "voc", "vocalista": "vocal", "vocalizado": "vocaliz", "vocaltec": "vocaltec", "você": "voc", "vocês": "vocês", "vodca": "vodc", "voei": "voe", "vogal": "vogal", "vogue": "vog", "voice": "voic", "volante": "volant", "volátil": "volátil", "volatilidade": "volatil", "vôlei": "vôl", "volkow": "volkow", "volks": "volks", "volkswagen": "volkswagen", "volpe": "volp", "volta": "volt", "voltada": "volt", "voltadas": "volt", "voltado": "volt", "voltados": "volt", "voltaire": "voltair", "voltam": "volt", "voltamos": "volt", "voltando": "volt", "voltar": "volt", "voltaram": "volt", "voltarem": "volt", "voltaren": "voltaren", "voltaria": "volt", "voltarmos": "volt", "voltas": "volt", "voltassem": "volt", "voltava": "volt", "volte": "volt", "voltei": "volt", "voltem": "volt", "volto": "volt", "voltou": "volt", "volume": "volum", "volumes": "volum", "volumoso": "volum", "voluntárias": "voluntár", "voluntário": "voluntári", "voluntários": "voluntári", "voluntarismo": "voluntar", "volúpia": "volúp", "vomitar": "vomit", "vomitava": "vomit", "vômitos": "vômit", "von": "von", "vontade": "vontad", "vontades": "vontad", "vôo": "vôo", "vôos": "vôos", "voou": "voou", "voracidade": "vorac", "voraz": "voraz", "vorazes": "voraz", "vosges": "vosg", "votação": "votaçã", "votações": "votaçõ", "votado": "vot", "votados": "vot", "votar": "vot", "votarão": "vot", "votaria": "vot", "votasse": "vot", "votava": "vot", "votei": "vot", "voto": "vot", "votorantim": "votorantim", "votos": "vot", "votou": "vot", "vou": "vou", "vouiton": "vouiton", "vovó": "vov", "vox": "vox", "voxel": "voxel", "voyage": "voyag", "voyeurista": "voyeur", "voz": "voz", "vozeirão": "voz", "vozes": "voz", "vulcânica": "vulcân", "vulcânicos": "vulcân", "vulcão": "vulcã", "vulcões": "vulcõ", "vulgar": "vulg", "vulgares": "vulg", "vulgaridade": "vulgar", "vulgarizaram": "vulgariz", "vulgarmente": "vulgar", "vulnerabilidade": "vulner", "vulnerabilidades": "vulner", "vulneráveis": "vulner", "vulnerável": "vulner", "vulto": "vult", "vultosa": "vultos", "vultosos": "vultos", "w": "w", "wade": "wad", "wagner": "wagn", "wagnerianos": "wagnerian", "wainer": "wain", "wald": "wald", "waldemar": "waldem", "waldhoff": "waldhoff", "waldir": "wald", "waldyr": "waldyr", "walker": "walk", "walkiria": "walk", "walkman": "walkman", "wall": "wall", "wallace": "wallac", "walsh": "walsh", "walt": "walt", "walter": "walt", "walther": "walth", "wanamaker": "wanamak", "wanda": "wand", "wanderlei": "wanderl", "wanderley": "wanderley", "wando": "wand", "wanira": "wan", "wanna": "wann", "want": "want", "warner": "warn", "washington": "washington", "watch": "watch", "water": "wat", "watergate": "watergat", "waterhouse": "waterhous", "watts": "watts", "wayne": "wayn", "wear": "wear", "weaver": "weav", "web": "web", "weber": "web", "webphone": "webphon", "website": "websit", "wedge": "wedg", "week": "week", "weeks": "weeks", "weg": "weg", "weizmann": "weizmann", "welles": "well", "wellington": "wellington", "werneck": "werneck", "werner": "wern", "werthein": "werthein", "wesley": "wesley", "wessel": "wessel", "west": "west", "wet": "wet", "wexler": "wexl", "what": "what", "wheelock": "wheelock", "when": "when", "white": "whit", "whiteboard": "whiteboard", "who": "who", "whoop": "whoop", "whoopy": "whoopy", "wilckens": "wilckens", "wild": "wild", "wildlife": "wildlif", "wilhelm": "wilhelm", "wilker": "wilk", "will": "will", "willadino": "willadin", "william": "will", "willis": "will", "willy": "willy", "wilma": "wilm", "wilson": "wilson", "wimbledon": "wimbledon", "windows": "windows", "wine": "win", "winits": "winits", "winona": "winon", "winston": "winston", "without": "without", "witt": "witt", "witte": "witt", "wittemberg": "wittemberg", "wladimir": "wladim", "wolf": "wolf", "wolfenson": "wolfenson", "woman": "woman", "women": "women", "wonder": "wond", "wonderful": "wonderful", "woods": "woods", "woodstock": "woodstock", "woody": "woody", "work": "work", "workaholic": "workaholic", "workaholics": "workaholics", "workshop": "workshop", "world": "world", "worth": "worth", "wri": "wri", "wright": "wright", "writer": "writ", "wtk": "wtk", "wwf": "wwf", "www": "www", "x": "x", "xá": "xá", "xadrez": "xadrez", "xamã": "xamã", "xamanismo": "xaman", "xamanísticas": "xamaníst", "xampu": "xampu", "xampus": "xampus", "xando": "xand", "xangô": "xangô", "xará": "xar", "xarope": "xarop", "xaropes": "xarop", "xavante": "xavant", "xavantinho": "xavantinh", "xaveco": "xavec", "xavier": "xavi", "xenakis": "xenak", "xenical": "xenical", "xeque": "xequ", "xeretada": "xeret", "xerifes": "xerif", "xerox": "xerox", "xiao": "xia", "xica": "xic", "xícara": "xíc", "xícaras": "xíc", "xiii": "xii", "xiita": "xiit", "ximenes": "ximen", "xingada": "xing", "xingado": "xing", "xingam": "xing", "xingar": "xing", "xingu": "xingu", "xiv": "xiv", "xix": "xix", "xodó": "xod", "xororó": "xoror", "xou": "xou", "xres": "xres", "xuxa": "xux", "xvi": "xvi", "xvii": "xvi", "xviii": "xvii", "xx": "xx", "xxi": "xxi", "y": "y", "yahoo": "yaho", "yakult": "yakult", "yale": "yal", "yamaha": "yamah", "yan": "yan", "yara": "yar", "yard": "yard", "yassuda": "yassud", "yat": "yat", "yes": "yes", "yevgeni": "yevgen", "yitzhak": "yitzhak", "yoko": "yok", "york": "york", "yun": "yun", "yuri": "yur", "yves": "yves", "z": "z", "zacharias": "zach", "zaf": "zaf", "zagallo": "zagall", "zagalo": "zagal", "zagon": "zagon", "zagury": "zagury", "zaida": "zaid", "zaire": "zair", "zakabi": "zakab", "zamora": "zamor", "zancaner": "zancan", "zander": "zand", "zangado": "zang", "zanini": "zanin", "zanivan": "zanivan", "zanzibar": "zanzib", "zapping": "zapping", "zara": "zar", "zaragoza": "zaragoz", "zarin": "zarin", "zaz": "zaz", "zé": "zé", "zebra": "zebr", "zebras": "zebr", "zebu": "zebu", "zeca": "zec", "zedias": "zed", "zeferina": "zeferin", "zehnder": "zehnd", "zelador": "zelador", "zelândia": "zelând", "zelar": "zel", "zen": "zen", "zenilda": "zenild", "zenildo": "zenild", "zentel": "zentel", "zepellin": "zepellin", "zequinha": "zequinh", "zerados": "zer", "zerinho": "zerinh", "zero": "zer", "zerou": "zer", "zezé": "zez", "zhiling": "zhiling", "zico": "zic", "zilberman": "zilberman", "zimbábue": "zimbábu", "zinco": "zinc", "zinhos": "zinh", "zíper": "zíp", "ziraldo": "zirald", "zita": "zit", "zoar": "zoar", "zodíaco": "zodíac", "zola": "zol", "zolio": "zoli", "zona": "zon", "zonas": "zon", "zoneamento": "zoneament", "zonzo": "zonz", "zooboros": "zoobor", "zoológico": "zoológ", "zoomp": "zoomp", "zul": "zul", "zumbi": "zumb", "zumbido": "zumb" } ================================================ FILE: spec/test_data/sv_stemmer_sample.js ================================================ 'use strict' const words = [ 'ade', 'björks', 'jakt', 'jaktbössa', 'jakten', 'jakthund', 'jaktkarl', 'jaktkarlar', 'jaktkarlarne', 'jaktkarlens', 'jaktlöjtnant', 'jaktlöjtnanten', 'jaktlöjtnantens', 'jalusi', 'jalusien', 'jalusier', 'jalusierna', 'jamaika', 'jamat', 'jamrande', 'jamt', 'jande', 'januari', 'japanska', 'jaquette', 'jaquettekappa', 'jargong', 'jasmin', 'jasminen', 'jasminer', 'jasminhäck', 'jaspis', 'jaså', 'javäl', 'jazzvindens', 'jcrn', 'jcsus', 'je', 'jemföra', 'jemföras', 'jemförelse', 'jemförelser'] const stemmedWords = [ 'ade', 'björk', 'jakt', 'jaktböss', 'jakt', 'jakthund', 'jaktkarl', 'jaktkarl', 'jaktkarl', 'jaktkarl', 'jaktlöjtnant', 'jaktlöjtnant', 'jaktlöjtnant', 'jalusi', 'jalusi', 'jalusi', 'jalusi', 'jamaik', 'jam', 'jamr', 'jamt', 'jand', 'januari', 'japansk', 'jaquet', 'jaquettekapp', 'jargong', 'jasmin', 'jasmin', 'jasmin', 'jasminhäck', 'jaspis', 'jaså', 'javäl', 'jazzvind', 'jcrn', 'jcsus', 'je', 'jemför', 'jemför', 'jemför', 'jemför'] module.exports = { words, stemmedWords } ================================================ FILE: spec/test_data/tfdif_testcorpus.txt ================================================ 50 the:23 a:17 girl:1 moon:1 said:5 phone:2 ================================================ FILE: spec/test_data/tfidf_teststopwords.txt ================================================ moon ================================================ FILE: spec/test_data/wordnet_mini.sql ================================================ PRAGMA foreign_keys=OFF; BEGIN TRANSACTION; CREATE TABLE adjpositions (synsetid integer not null, wordid integer not null, position varchar(2) not null, primary key (synsetid, wordid)); CREATE TABLE adjpositiontypes (position varchar(2) not null, positionname varchar(24) not null, primary key (position)); CREATE TABLE casedwords (casedwordid integer not null, wordid integer not null, cased varchar(80) not null unique, primary key (casedwordid)); CREATE TABLE lexdomains (lexdomainid smallint not null, lexdomainname varchar(32), pos char, primary key (lexdomainid)); CREATE TABLE lexlinks (word1id integer not null, synset1id integer not null, word2id integer not null, synset2id integer not null, linkid smallint not null, primary key (word1id, synset1id, word2id, synset2id, linkid)); CREATE TABLE linktypes (linkid smallint not null, link varchar(50), recurses integer not null, primary key (linkid)); CREATE TABLE morphmaps (morphid integer not null, pos char not null, wordid integer not null, primary key (morphid, pos, wordid)); CREATE TABLE morphs (morphid integer not null, morph varchar(70) not null unique, primary key (morphid)); CREATE TABLE postypes (pos char not null, posname varchar(20) not null, primary key (pos)); CREATE TABLE samples (synsetid integer not null, sampleid smallint not null, sample longvarchar not null, primary key (synsetid, sampleid)); CREATE TABLE semlinks (synset1id integer not null, synset2id integer not null, linkid smallint not null, primary key (synset1id, synset2id, linkid)); CREATE TABLE senses (wordid integer not null, synsetid integer not null, casedwordid integer, senseid integer unique, sensenum smallint not null, lexid smallint not null, tagcount integer, sensekey varchar(100) unique, primary key (wordid, synsetid)); INSERT INTO "senses" VALUES(138336,300491511,NULL,194444,4,0,0,'unique%5:00:00:unusual:00'); INSERT INTO "senses" VALUES(138336,300505853,NULL,194441,1,0,10,'unique%5:00:00:incomparable:00'); INSERT INTO "senses" VALUES(138336,301105042,NULL,194443,2,0,2,'unique%5:00:00:specific:00'); INSERT INTO "senses" VALUES(138336,302215087,NULL,194442,3,0,0,'unique%5:00:00:single:05'); INSERT INTO "senses" VALUES(138337,400175490,NULL,194445,1,0,4,'uniquely%4:02:00::'); INSERT INTO "senses" VALUES(138338,104763650,NULL,194446,1,0,3,'uniqueness%1:07:00::'); INSERT INTO "senses" VALUES(58843,103076708,NULL,81518,4,0,0,'good%1:06:00::'); INSERT INTO "senses" VALUES(58843,104849241,NULL,81520,2,1,9,'good%1:07:01::'); INSERT INTO "senses" VALUES(58843,105142180,NULL,81521,3,2,6,'good%1:07:02::'); INSERT INTO "senses" VALUES(58843,105159725,NULL,81519,1,0,11,'good%1:07:00::'); INSERT INTO "senses" VALUES(58843,300064787,NULL,81526,5,0,5,'good%5:00:00:advantageous:00'); INSERT INTO "senses" VALUES(58843,300106020,NULL,81527,2,0,22,'good%5:00:00:ample:00'); INSERT INTO "senses" VALUES(58843,300452883,NULL,81528,10,0,2,'good%5:00:00:close:02'); INSERT INTO "senses" VALUES(58843,300523364,NULL,81529,9,0,2,'good%5:00:00:complete:00'); INSERT INTO "senses" VALUES(58843,300775611,NULL,81530,21,0,0,'good%5:00:00:discriminating:00'); INSERT INTO "senses" VALUES(58843,300832784,NULL,81538,14,0,1,'good%5:00:00:operative:00'); INSERT INTO "senses" VALUES(58843,301048762,NULL,81531,13,0,1,'good%5:00:00:fortunate:00'); INSERT INTO "senses" VALUES(58843,301068306,NULL,81532,20,0,0,'good%5:00:00:fresh:01'); INSERT INTO "senses" VALUES(58843,301116026,NULL,81533,19,0,0,'good%5:00:00:genuine:00'); INSERT INTO "senses" VALUES(58843,301123148,NULL,81522,1,1,190,'good%3:00:01::'); INSERT INTO "senses" VALUES(58843,301129977,NULL,81523,3,2,12,'good%3:00:02::'); INSERT INTO "senses" VALUES(58843,301166413,NULL,81534,18,0,0,'good%5:00:00:healthful:00'); INSERT INTO "senses" VALUES(58843,301171213,NULL,81535,17,0,0,'good%5:00:00:healthy:00'); INSERT INTO "senses" VALUES(58843,301333477,NULL,81536,16,0,0,'good%5:00:00:intellectual:00'); INSERT INTO "senses" VALUES(58843,301586752,NULL,81537,6,0,4,'good%5:00:00:nice:00'); INSERT INTO "senses" VALUES(58843,301661289,NULL,81539,12,0,1,'good%5:00:00:opportune:00'); INSERT INTO "senses" VALUES(58843,301808329,NULL,81540,15,0,0,'good%5:00:00:pleasing:00'); INSERT INTO "senses" VALUES(58843,301983162,NULL,81541,4,0,10,'good%5:00:00:reputable:00'); INSERT INTO "senses" VALUES(58843,302036934,NULL,81542,7,0,3,'good%5:00:00:righteous:00'); INSERT INTO "senses" VALUES(58843,302226162,NULL,81543,8,0,2,'good%5:00:00:skilled:00'); INSERT INTO "senses" VALUES(58843,302273643,NULL,81544,11,1,1,'good%5:00:01:sound:00'); INSERT INTO "senses" VALUES(58843,400011093,NULL,81524,1,0,9,'good%4:02:00::'); INSERT INTO "senses" VALUES(58843,400057388,NULL,81525,2,1,4,'good%4:02:01::'); INSERT INTO "senses" VALUES(27771,103076708,NULL,38135,1,0,4,'commodity%1:06:00::'); INSERT INTO "senses" VALUES(134408,103076708,NULL,188782,1,0,0,'trade_good%1:06:00::'); CREATE TABLE synsets (synsetid integer not null, pos char, lexdomainid smallint not null, definition longvarchar, primary key (synsetid)); INSERT INTO "synsets" VALUES(103076708,'n',6,'articles of commerce'); INSERT INTO "synsets" VALUES(104763650,'n',7,'the quality of being one of a kind'); INSERT INTO "synsets" VALUES(104849241,'n',7,'moral excellence or admirableness'); INSERT INTO "synsets" VALUES(105142180,'n',7,'that which is pleasing or valuable or useful'); INSERT INTO "synsets" VALUES(105159725,'n',7,'benefit'); INSERT INTO "synsets" VALUES(300064787,'s',0,'promoting or enhancing well-being'); INSERT INTO "synsets" VALUES(300106020,'s',0,'having the normally expected amount'); INSERT INTO "synsets" VALUES(300452883,'s',0,'with or in a close or intimate relationship'); INSERT INTO "synsets" VALUES(300491511,'s',0,'highly unusual or rare but not the single instance'); INSERT INTO "synsets" VALUES(300505853,'s',0,'radically distinctive and without equal'); INSERT INTO "synsets" VALUES(300523364,'s',0,'thorough'); INSERT INTO "synsets" VALUES(300775611,'s',0,'generally admired'); INSERT INTO "synsets" VALUES(300832784,'s',0,'exerting force or influence'); INSERT INTO "synsets" VALUES(301048762,'s',0,'resulting favorably'); INSERT INTO "synsets" VALUES(301068306,'s',0,'not left to spoil'); INSERT INTO "synsets" VALUES(301105042,'s',0,'(followed by `to'') applying exclusively to a given category or condition or locality'); INSERT INTO "synsets" VALUES(301116026,'s',0,'not forged'); INSERT INTO "synsets" VALUES(301123148,'a',0,'having desirable or positive qualities especially those suitable for a thing specified'); INSERT INTO "synsets" VALUES(301129977,'a',0,'morally admirable'); INSERT INTO "synsets" VALUES(301166413,'s',0,'tending to promote physical well-being; beneficial to health'); INSERT INTO "synsets" VALUES(301171213,'s',0,'in excellent physical condition'); INSERT INTO "synsets" VALUES(301333477,'s',0,'appealing to the mind'); INSERT INTO "synsets" VALUES(301586752,'s',0,'agreeable or pleasing'); INSERT INTO "synsets" VALUES(301661289,'s',0,'most suitable or right for a particular purpose'); INSERT INTO "synsets" VALUES(301808329,'s',0,'capable of pleasing'); INSERT INTO "synsets" VALUES(301983162,'s',0,'deserving of esteem and respect'); INSERT INTO "synsets" VALUES(302036934,'s',0,'of moral excellence'); INSERT INTO "synsets" VALUES(302215087,'s',0,'the single one of its kind'); INSERT INTO "synsets" VALUES(302226162,'s',0,'having or showing knowledge and skill and aptitude'); INSERT INTO "synsets" VALUES(302273643,'s',0,'financially sound'); INSERT INTO "synsets" VALUES(400011093,'r',2,'(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'')'); INSERT INTO "synsets" VALUES(400057388,'r',2,'completely and absolutely (`good'' is sometimes used informally for `thoroughly'')'); INSERT INTO "synsets" VALUES(400175490,'r',2,'so as to be unique'); CREATE TABLE vframemaps (synsetid integer not null, wordid integer not null, frameid smallint not null, primary key (synsetid, wordid, frameid)); CREATE TABLE vframes (frameid smallint not null, frame varchar(50), primary key (frameid)); CREATE TABLE vframesentencemaps (synsetid integer not null, wordid integer not null, sentenceid smallint not null, primary key (synsetid, wordid, sentenceid)); CREATE TABLE vframesentences (sentenceid smallint not null, sentence longvarchar, primary key (sentenceid)); CREATE TABLE words (wordid integer not null, lemma varchar(80) not null unique, primary key (wordid)); INSERT INTO "words" VALUES(27771,'commodity'); INSERT INTO "words" VALUES(58843,'good'); INSERT INTO "words" VALUES(134408,'trade good'); INSERT INTO "words" VALUES(138336,'unique'); INSERT INTO "words" VALUES(138337,'uniquely'); INSERT INTO "words" VALUES(138338,'uniqueness'); COMMIT; ================================================ FILE: spec/tfidf_spec.ts ================================================ /* Copyright (c) 2011, Rob Ellis, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { TfIdf, TreebankWordTokenizer, stopwords } from 'lib/natural' import type { TfIdfTerm } from 'lib/natural' let tfidf: TfIdf describe('tfidf', function () { describe('stateless operations', function () { it('should tf', function () { expect(TfIdf.tf('document', { document: 2, one: 1 })).toBe(2) expect(TfIdf.tf('document', { greetings: 1, program: 1 })).toBe(0) expect(TfIdf.tf('program', { greetings: 1, program: 1 })).toBe(1) }) }) describe('keys', function () { it('should store and recall keys', function () { tfidf = new TfIdf() tfidf.addDocument('document one', 'un') tfidf.addDocument('document Two', 'deux') tfidf.tfidfs('two', function (i, tfidf, key) { if (i === 0) { expect(key).toBe('un') } else { expect(key).toBe('deux') } }) }) it('should handle a deserialized object passed to the constructor', function () { tfidf = new TfIdf({ documents: [ { __key: 'un', document: 1, one: 1 }, { __key: 'deux', document: 1, two: 1 } ] }) tfidf.tfidfs('two', function (i, tfidf, key) { if (i === 1) { expect(key).toBe('deux') } else { expect(key).toBe('un') } }) }) it('should work when called without a callback', function () { tfidf = new TfIdf({ documents: [ { __key: 'un', document: 1, one: 1 }, { __key: 'deux', document: 1, two: 1 } ] }) const tfidfs = tfidf.tfidfs('two') expect(tfidfs[1]).toBe(1 + Math.log(2.0 / 2.0)) }) it('should work with the restoreCache flag set to true', function () { tfidf = new TfIdf() tfidf.addDocument('document one', 'un') expect(tfidf.idf('one')).toBe(1 + Math.log(1.0 / 2.0)) tfidf.addDocument('document Two', 'deux', true) tfidf.tfidfs('two', function (i, tfidf, key) { if (i === 0) { expect(key).toBe('un') } else { expect(key).toBe('deux') } }) }) }) describe('stateful operations', function () { beforeEach(function () { tfidf = new TfIdf() tfidf.addDocument('document one') tfidf.addDocument('document Two') }) it('should list important terms', function () { const terms: TfIdfTerm[] = tfidf.listTerms(0) expect(terms[0].tfidf).toBeGreaterThan(terms[1].tfidf) }) }) // Issue #634 - prevent tfidf to apply a tokenizer to terms that are already tokenized describe('tfidf with tokenized terms', function () { tfidf = new TfIdf() tfidf.addDocument(['domain', 'google.com']) const terms: TfIdfTerm[] = tfidf.listTerms(0) it('should list important terms correctly without tokenizing again', function () { expect(terms[0].tfidf).toBeGreaterThan(0) expect(terms[1].tfidf).toBeGreaterThan(0) }) }) describe('special cases', function () { // In response to it('should handle reserved function names correctly in documents', function () { const reservedWords = [ 'toString', 'toLocaleString', 'valueOf', 'hasOwnProperty', 'isPrototypeOf', 'propertyIsEnumerable', 'constructor' ] tfidf = new TfIdf() tfidf.addDocument(reservedWords.join(' ')) reservedWords.forEach((word: string) => { expect(tfidf.tfidf(word, 0)).toBe(1 * (1 + Math.log(1 / 2))) }) }) it('should handle an array passed to tfidf()', function () { tfidf = new TfIdf() const terms = ['this', 'document', 'is', 'about', 'poetry'] tfidf.addDocument(terms.join(' ')) expect(tfidf.tfidf(terms, 0)).toBe(2 * (1 + Math.log(1.0 / 2.0))) }) }) describe('correct calculations', function () { it('should compute idf correctly', function () { tfidf = new TfIdf() tfidf.addDocument('this document is about node.') tfidf.addDocument('this document is about ruby.') tfidf.addDocument('this document is about ruby and node.') tfidf.addDocument('this document is about node. it has node examples') expect(tfidf.idf('node')).toBe(1 + Math.log(4.0 / 4.0)) }) it('should compute idf correctly with non-string documents', function () { tfidf = new TfIdf() tfidf.addDocument('this document is about node.') tfidf.addDocument('this document is about ruby.') tfidf.addDocument('this document is about ruby and node.') tfidf.addDocument('this document is about node. it has node examples') tfidf.addDocument({ text: 'this document is about python' }) tfidf.addDocument(['this', 'document', 'is', 'about', 'node', 'and', 'JavaScript']) expect(tfidf.idf('node')).toBe(1 + Math.log(6.0 / 5.0)) }) it('should compute tf correctly', function () { expect(TfIdf.tf('node', { this: 1, document: 1, is: 1, about: 1, node: 1 })).toBe(1) expect(TfIdf.tf('node', { this: 1, document: 1, is: 1, about: 1, ruby: 1 })).toBe(0) expect(TfIdf.tf('node', { this: 1, document: 1, is: 1, about: 1, ruby: 1, and: 1, node: 1 })).toBe(1) expect(TfIdf.tf('node', { this: 1, document: 1, is: 1, about: 1, node: 2, it: 1, has: 1, examples: 1 })).toBe(2) }) // This is a test of the use case outlined in the readme. it('should compute tf-idf correctly', function () { const correctCalculations: number[] = [ 1 * (1 + Math.log(4.0 / 4.0)), 0, 2 * (1 + Math.log(4.0 / 4.0)), 1 * (1 + Math.log(4.0 / 3.0)) ] tfidf = new TfIdf() tfidf.addDocument('this document is about node.', { node: 0, ruby: 1 }) tfidf.addDocument('this document is about ruby.', { node: 1, ruby: 3 }) tfidf.addDocument('this document is about ruby and node.', { node: 0, ruby: 3 }) tfidf.addDocument('this document is about node. it has node examples', { node: 2, ruby: 1 }) tfidf.tfidfs('node', (i: number, measure: number, k: string | Record | undefined): void => { if (typeof k === 'object') { expect(measure).toBe(correctCalculations[k.node]) } else { console.log('Key was undefined') } }) tfidf.tfidfs('ruby', (i: number, measure: number, k: string | Record | undefined): void => { if (typeof k === 'object') { expect(measure).toBe(correctCalculations[k.ruby]) } else { console.log('Key was undefined') } }) }) it('should not return NaN if a term is not present in any documents', function () { tfidf = new TfIdf() tfidf.addDocument('this document is about node.') expect(tfidf.tfidf('ruby', 0)).toBe(0) }) // This test assures that tf-idf is computed correctly before and after a document is added // Computes and tests a few tf-idfs, then adds a document and ensures that those terms tf-idf value // is updated accordingly. it('should update a terms tf-idf score after adding documents', function () { tfidf = new TfIdf() // Add 2 documents tfidf.addDocument('this document is about node.', 0) tfidf.addDocument('this document is about ruby.', 1) // check the tf-idf for 'node' expect(tfidf.tfidf('node', 0)).toBe(1 * (1 + Math.log(2.0 / 2.0))) // Add 2 more documents tfidf.addDocument('this document is about ruby and node.') tfidf.addDocument('this document is about node. it has node examples') // Ensure that the tf-idf in the same document has changed to reflect the new idf. expect(tfidf.tfidf('node', 0)).toBe(1 * (1 + Math.log(4.0 / 4.0))) }) // Test idf.setTokenizer it('should allow for specific types of Tokenizers', function () { tfidf = new TfIdf() tfidf.addDocument('this document isn\'t about node.', 0) tfidf.addDocument('that doc is about node.', 1) expect(tfidf.tfidf('n\'t', 0)).toBe(0) expect(tfidf.tfidf('isn', 0)).toBe(1 * (1 + Math.log(2 / 2))) tfidf = new TfIdf() tfidf.addDocument('this document isn\'t about node.', 0) tfidf.addDocument('this document isn\'t about node.', 1) expect(tfidf.tfidf('isn', 0)).toBe(1 * (1 + Math.log(2 / 3))) tfidf = new TfIdf() const tokenizer = new TreebankWordTokenizer() tfidf.addDocument('this document isn\'t about node.', 0) tfidf.setTokenizer(tokenizer) tfidf.addDocument('this doc isn\'t about node.', 1) expect(tfidf.tfidf('isn', 0)).toBe(1 * (1 + Math.log(2 / 2))) expect(tfidf.tfidf('n\'t', 1)).toBe(1 * (1 + Math.log(2 / 2))) expect(tfidf.tfidf('isn', 1)).toBe(0) }) it('should require a valid tokenizer when using setTokenizer', function () { tfidf = new TfIdf() // @ts-expect-error Behaviour with wrong parameters is tested expect(function () { tfidf.setTokenizer(1) }).toThrow(new Error('Expected a valid Tokenizer')) // @ts-expect-error Behaviour with wrong parameters is tested expect(function () { tfidf.setTokenizer({}) }).toThrow(new Error('Expected a valid Tokenizer')) }) }) describe('Stopwords', function () { it('should load a custom set of stopwords', function () { tfidf = new TfIdf() expect(tfidf.setStopwords(stopwords)).toEqual(true) tfidf.addDocument('this document is about node.', 0) const terms = tfidf.listTerms(0) const tokens = terms.map(t => t.term) expect(tokens.indexOf('about')).toEqual(-1) expect(tokens.indexOf('this')).toEqual(-1) }) it('should detect an incorrect stopwords list (not an array)', function () { const stopwords = {} // @ts-expect-error Test for behaviour with wrong parameters expect(tfidf.setStopwords(stopwords)).toEqual(false) }) it('should detect an incorrect stopwords list (one of the elements is not a string)', function () { const stopwords = [function f () {}] // @ts-expect-error Test for behaviour with wrong parameters expect(tfidf.setStopwords(stopwords)).toEqual(false) }) }) describe('Remove documents', function () { it('should remove a document', function () { tfidf = new TfIdf() tfidf.addDocument('this document is about node.', 0) tfidf.addDocument('this document isn\'t about node.', 1) const result1 = tfidf.removeDocument(0) expect(result1).toEqual(true) const result2 = tfidf.removeDocument(0) expect(result2).toEqual(false) }) }) }) ================================================ FILE: spec/tokenizer_case_spec.ts ================================================ /* Copyright (c) 2011, Chris Umbel, Alex Langberg, Martijn de Boer Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { CaseTokenizer } from 'lib/natural' const tokenizer = new CaseTokenizer() describe('case_tokenizer_numbers', function () { it('should tokenize numbers', function () { expect(tokenizer.tokenize('0 1 2 3 4 5 6 7 8 9 10')).toEqual(['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '10']) }) }) describe('case_tokenizer_es', function () { it('should tokenize strings', function () { expect(tokenizer.tokenize('hola yo me llamo eduardo y esudié ingeniería')).toEqual(['hola', 'yo', 'me', 'llamo', 'eduardo', 'y', 'esudié', 'ingeniería']) }) /* it('should tokenize strings via attached string method', function() { tokenizer.attach(); expect('hola yo me llamo eduardo y esudié ingeniería'.tokenize()).toEqual(['hola', 'yo', 'me', 'llamo', 'eduardo', 'y', 'esudié', 'ingeniería']); }); */ }) describe('case_tokenizer_fr', function () { const text = "Affectueusement surnommé « Gabo » dans toute l'Amérique latine, le Colombien Gabriel Garcia Marquez, prix Nobel de littérature 1982, l'un des plus grands écrivains du XXe siècle, est mort À son domicile de Mexico jeudi 17 avril. Il était âgé de 87 ans. Son Œuvre a été traduite dans toutes les langues ou presque, et vendue à quelque 50 millions d'exemplaires." const tokenized = ['Affectueusement', 'surnommé', 'Gabo', 'dans', 'toute', 'l', 'Amérique', 'latine', 'le', 'Colombien', 'Gabriel', 'Garcia', 'Marquez', 'prix', 'Nobel', 'de', 'littérature', '1982', 'l', 'un', 'des', 'plus', 'grands', 'écrivains', 'du', 'XXe', 'siècle', 'est', 'mort', 'À', 'son', 'domicile', 'de', 'Mexico', 'jeudi', '17', 'avril', 'Il', 'était', 'âgé', 'de', '87', 'ans', 'Son', 'Œuvre', 'a', 'été', 'traduite', 'dans', 'toutes', 'les', 'langues', 'ou', 'presque', 'et', 'vendue', 'à', 'quelque', '50', 'millions', 'd', 'exemplaires'] it('should tokenize strings', function () { expect(tokenizer.tokenize(text)).toEqual(tokenized) }) /* it('should tokenize strings via attached string method', function() { tokenizer.attach(); expect(text.tokenize()).toEqual(tokenized); }); */ }) describe('case_tokenizer_nl', function () { it('should tokenize strings', function () { expect(tokenizer.tokenize('\'s Morgens is het nog erg koud, vertelde de weerman over een van de radio\'s', true)).toEqual(['\'s', 'Morgens', 'is', 'het', 'nog', 'erg', 'koud', 'vertelde', 'de', 'weerman', 'over', 'een', 'van', 'de', 'radio\'s']) }) /* it('should tokenize strings via attached string method', function() { tokenizer.attach(); expect('\'s Morgens is het nog erg koud, vertelde de weerman over een van de radio\'s'.tokenize(true)).toEqual(['\'s','Morgens','is','het','nog','erg','koud','vertelde','de','weerman','over','een','van','de','radio\'s']); }); */ }) describe('case_tokenizer_pt', function () { it('should tokenize strings', function () { expect(tokenizer.tokenize('isso é coração')).toEqual(['isso', 'é', 'coração']) expect(tokenizer.tokenize('Siga em frente, depois vire à esquerda/direita!')).toEqual(['Siga', 'em', 'frente', 'depois', 'vire', 'à', 'esquerda', 'direita']) }) /* it('should tokenize strings via attached string method', function() { tokenizer.attach(); expect('isso é coração'.tokenize()).toEqual(['isso', 'é', 'coração']); }); it('should tokenize strings via attached string method', function() { tokenizer.attach(); expect('isso é coração'.tokenize()).toEqual(['isso', 'é', 'coração']); }); */ it('should swallow punctuation', function () { expect(tokenizer.tokenize('isso é coração, no')).toEqual(['isso', 'é', 'coração', 'no']) }) it('should swallow final punctuation', function () { expect(tokenizer.tokenize('isso é coração, no?')).toEqual(['isso', 'é', 'coração', 'no']) }) it('should swallow initial punctuation', function () { expect(tokenizer.tokenize('.isso é coração, no')).toEqual(['isso', 'é', 'coração', 'no']) }) it('should swallow duplicate punctuation', function () { expect(tokenizer.tokenize('eu vou... pause')).toEqual(['eu', 'vou', 'pause']) }) }) describe('case_tokenizer_aggressive_tokenizer', function () { it('should tokenize strings', function () { expect(tokenizer.tokenize('these are things')).toEqual(['these', 'are', 'things']) }) /* it('should tokenize strings via attached string method', function() { tokenizer.attach(); expect('these are things'.tokenize()).toEqual(['these', 'are', 'things']); }); it('should tokenize strings via attached string method', function() { tokenizer.attach(); expect('these are things'.tokenize()).toEqual(['these', 'are', 'things']); }); */ it('should swallow punctuation', function () { expect(tokenizer.tokenize('these are things, no')).toEqual(['these', 'are', 'things', 'no']) }) it('should swallow final punctuation', function () { expect(tokenizer.tokenize('these are things, no?')).toEqual(['these', 'are', 'things', 'no']) }) it('should swallow initial punctuation', function () { expect(tokenizer.tokenize('.these are things, no')).toEqual(['these', 'are', 'things', 'no']) }) it('should swallow duplicate punctuation', function () { expect(tokenizer.tokenize('i shal... pause')).toEqual(['i', 'shal', 'pause']) }) }) describe('case_tokenizer_it', function () { it('should tokenize strings', function () { expect(tokenizer.tokenize('Mi piacerebbe visitare l\'Italia un giorno di questi!')).toEqual(['Mi', 'piacerebbe', 'visitare', 'l', 'Italia', 'un', 'giorno', 'di', 'questi']) }) }) describe('case_tokenizer_no', function () { it('should tokenize strings', function () { expect(tokenizer.tokenize('Gå rett fram. Så tek du til venstre/høgre.')).toEqual(['Gå', 'rett', 'fram', 'Så', 'tek', 'du', 'til', 'venstre', 'høgre']) }) }) // Made up tests from here. No idea but seem to work. describe('case_tokenizer_pl', function () { it('should tokenize strings', function () { expect(tokenizer.tokenize('Bardzo za tobą tęskniłem/tęskniłam!')).toEqual(['Bardzo', 'za', 'tobą', 'tęskniłem', 'tęskniłam']) }) }) describe('case_tokenizer_ru', function () { it('should tokenize strings', function () { expect(tokenizer.tokenize('Vy mOzhite mne pamOch? Вы можете мне помочь?')).toEqual(['Vy', 'mOzhite', 'mne', 'pamOch', 'Вы', 'можете', 'мне', 'помочь']) }) }) describe('case_tokenizer_fi', function () { it('should tokenize strings', function () { expect(tokenizer.tokenize('Mene suoraan käänny sitten vasempaan/oikeaan!')).toEqual(['Mene', 'suoraan', 'käänny', 'sitten', 'vasempaan', 'oikeaan']) }) }) ================================================ FILE: spec/tokenizer_ja_spec.ts ================================================ /* Copyright (c) 2012, Guillaume Marty Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { Converters, TokenizerJa } from 'lib/natural' const tokenizer = new TokenizerJa() const converters = new Converters() const text = '計算機科学における字句解析 (じくかいせき、英: Lexical Analysis) とは、ソースコードを構成する文字の並びを、トークン (token) の並びに変換することをいう。\n' + 'ここでいう「トークン」とは、意味を持つコードの最小単位のこと。字句解析を行うプログラムは、字句解析器 (lexical analyzer, 略称:lexer) と呼ばれる。\n' + '字句解析器はスキャナ (scanner) とトークナイザ (tokenizer) から構成される。\n' const result = ['計算', '機科', '学', 'に', 'おける', '字句', '解析', 'じくかい', 'せき', '英', 'Lexical', 'Analysis', 'と', 'は', 'ソースコード', 'を', '構成', 'する', '文字', 'の', '並び', 'を', 'トークン', 'token', 'の', '並び', 'に', '変換', 'する', 'こと', 'を', 'いう', 'ここ', 'でいう', 'トークン', 'と', 'は', '意味', 'を', '持つ', 'コード', 'の', '最小', '単位', 'の', 'こと', '字句', '解析', 'を', '行う', 'プログラム', 'は', '字句', '解析', '器', 'lexical', 'analyzer', '略称', 'lexer', 'と', '呼ば', 'れる', '字句', '解析', '器', 'は', 'スキャナ', 'scanner', 'と', 'トークナイザ', 'tokenizer', 'から', '構成', 'さ', 'れる'] describe('TokenizerJa', function () { it('should tokenize', function () { const tokens = tokenizer.tokenize(text) expect(tokens).toEqual(result) // This test is very hard to pass through, so we comment for now. // tokens = tokenizer.tokenize('すもももももももものうち。'); // expect(tokens).toEqual(['すもも', 'も', 'もも', 'も', 'もも', 'の', 'うち', '。']); }) it('should normalize input', function () { const tokens = tokenizer.tokenize( converters.alphabetHF( converters.numbersHF( converters.punctuationFH( converters.katakanaFH(text))))) expect(tokens).toEqual(result) }) }) ================================================ FILE: spec/transliterator_ja_spec.ts ================================================ /* Copyright (c) 2012, Guillaume Marty Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { TransliterateJa as transliterateJa } from 'lib/natural' describe('transliterateJa', function () { it('should transliterate hiragana', function () { expect(transliterateJa('あいうえお かきくけこ')).toEqual('aiueo kakikukeko') expect(transliterateJa('さしすせそ たちつてと')).toEqual('sashisuseso tachitsuteto') }) it('should transliterate katakana', function () { expect(transliterateJa('アイウエオ カキクケコ')).toEqual('aiueo kakikukeko') expect(transliterateJa('サシスセソ タチツテト')).toEqual('sashisuseso tachitsuteto') }) it('should transliterate small tsu differently depending on context', function () { expect(transliterateJa('まっか ざっし たった はっぱ')).toEqual('makka zasshi tatta happa') expect(transliterateJa('マッカ ザッシ タッタ ハッパ')).toEqual('makka zasshi tatta happa') }) it('should transliterate final small tsu', function () { expect(transliterateJa('ああっ')).toEqual('aat') expect(transliterateJa('アアッ')).toEqual('aat') }) it('should transliterate n differently depending on context', function () { expect(transliterateJa('まんと ばんび ほんや')).toEqual("manto bambi hon'ya") expect(transliterateJa('マント バンビ ホンヤ')).toEqual("manto bambi hon'ya") }) it('should transliterate long vowels', function () { expect(transliterateJa('ああ いい うう ええ おお おう')).toEqual('aa ii ū ee oo ō') expect(transliterateJa('あー いー うー えー おー')).toEqual('ā ī ū ē ō') expect(transliterateJa('アア イイ ウウ エエ オオ オウ')).toEqual('aa ii ū ee oo ō') expect(transliterateJa('アー イー ウー エー オー')).toEqual('ā ī ū ē ō') }) it('should leave non fullwidth kana unchanged', function () { expect(transliterateJa('abc ABC 漢字 (.)')).toEqual('abc ABC 漢字 (.)') expect(transliterateJa('アイウエオ カキクケコ')).toEqual('アイウエオ カキクケコ') }) it('should transliterate misc. words correctly', function () { expect(transliterateJa('アヴァンギャルド')).toEqual('avangyarudo') // Avant-garde expect(transliterateJa('アクサン・スィルコンフレックス')).toEqual('akusan sirukonfurekkusu') // Accent circonflexe expect(transliterateJa('アドレシッング')).toEqual('adoreshinngu') // Addressing expect(transliterateJa('イェス')).toEqual('yesu') // Yes expect(transliterateJa('インテリジェンス')).toEqual('interijensu') // Intelligence expect(transliterateJa('インテルメッツォ')).toEqual('interumettso') // Intermezzo expect(transliterateJa('グァテマラ')).toEqual('gwatemara') // Guatemala expect(transliterateJa('クァルテット')).toEqual('kwarutetto') // Quartet expect(transliterateJa('クィンテット')).toEqual('kwintetto') // Quintet expect(transliterateJa('クォーター')).toEqual('kwōtā') // Quarter expect(transliterateJa('サブウーファー')).toEqual('sabuūfā') // Sub woofer expect(transliterateJa('ソフトウェア')).toEqual('sofutowea') // Software expect(transliterateJa('ツィーター')).toEqual('tsītā') // Tweeter expect(transliterateJa('デューティー')).toEqual('dyūtī') // Duty expect(transliterateJa('ドキュメントィンドウ')).toEqual('dokyumentwindō') // Document window expect(transliterateJa('ヌーヴェルヴァーグ')).toEqual('nūveruvāgu') // Nouvelle vague expect(transliterateJa('ハイジャッンプ')).toEqual('haijanmpu') // High jump expect(transliterateJa('バッファ')).toEqual('baffa') // Buffer expect(transliterateJa('フーホェア')).toEqual('fūhwea') // WhoWhere? expect(transliterateJa('フェイズィング')).toEqual('feizingu') // Phasing expect(transliterateJa('フッロピー')).toEqual('furropī') // Floppy (alternative transcription) expect(transliterateJa('ブュー')).toEqual('byū') // View expect(transliterateJa('フューチャー')).toEqual('fyūchā') // Future expect(transliterateJa('フロッピィ')).toEqual('furoppī') // Floppy expect(transliterateJa('ボージョレー・ヌーヴォー')).toEqual('bōjorē nūvō') // Beaujolais nouveau expect(transliterateJa('ボスニア・ヘルツェゴビナ')).toEqual('bosunia herutsegobina') // Bosnia and Herzegovina expect(transliterateJa('マッハ')).toEqual('mahha') // Mach expect(transliterateJa('レヴュー')).toEqual('revyū') // Review expect(transliterateJa('レクリェーション')).toEqual('rekuryēshon') // Recreation }) it('should use fallback for small vowels on special case', function () { // These words use rare combination of small vowels. expect(transliterateJa('アゲィンスト')).toEqual('ageinsuto') // Against (alternative transcription) expect(transliterateJa('エッセィ')).toEqual('essei') // Essay (alternative transcription) expect(transliterateJa('ゾゥアラジィ')).toEqual('zouarajī') // Zoology (alternative transcription) expect(transliterateJa('ゾゥァラジカル')).toEqual('zouarajikaru') // Zoological (alternative transcription) expect(transliterateJa('ボランテァ')).toEqual('borantea') // Volunteer (alternative transcription) }) }) ================================================ FILE: spec/treebank_word_tokenizer_spec.ts ================================================ /* Copyright (c) 2011, Chris Umbel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { TreebankWordTokenizer as Tokenizer } from 'lib/natural' const tokenizer = new Tokenizer() describe('treebank', function () { it('should tokenize', function () { let tokens = tokenizer.tokenize("If we 'all' can't go. I'll stay home.") expect(tokens).toEqual(['If', 'we', "'all", "'", 'ca', "n't", 'go.', 'I', "'ll", 'stay', 'home', '.']) tokens = tokenizer.tokenize("If we 'all' can't go. I'll stay home. If we 'all' can't go. I'll stay home.") expect(tokens).toEqual(['If', 'we', "'all", "'", 'ca', "n't", 'go.', 'I', "'ll", 'stay', 'home.', 'If', 'we', "'all", "'", 'ca', "n't", 'go.', 'I', "'ll", 'stay', 'home', '.']) }) }) ================================================ FILE: spec/trie_spec.ts ================================================ /* Copyright (c) 2014 Ken Koch Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict' import { Trie } from 'lib/natural' describe('trie', function () { describe('adding strings', function () { it('should add words one at a time', function () { const trie = new Trie() trie.addString('test') expect(trie.contains('test')).toBe(true) trie.addString('abcd') expect(trie.contains('abcd')).toBe(true) }) it('should return true if a string is added that already existed', function () { const trie = new Trie() expect(trie.addString('test')).toBe(false) expect(trie.addString('test')).toBe(true) }) it('Should add an array of strings', function () { const trie = new Trie() const testWords = ['test', 'abcd', 'ffff'] trie.addStrings(testWords) for (let i = testWords.length - 1; i >= 0; i--) { expect(trie.contains(testWords[i])).toBe(true) }; }) }) describe('getSize', function () { it('should return 1 for an empty trie', function () { const trie = new Trie() expect(trie.getSize()).toBe(1) }) it('should return the correct size', function () { const trie = new Trie() trie.addString('a') expect(trie.getSize()).toBe(2) trie.addString('ab') expect(trie.getSize()).toBe(3) }) it('should count all branches', function () { const trie = new Trie() trie.addString('a') expect(trie.getSize()).toBe(2) trie.addString('ba') expect(trie.getSize()).toBe(4) }) }) describe('searching', function () { it("should not find words that haven't been added", function () { const trie = new Trie() expect(trie.contains('aaaaa')).toBe(false) }) it('should not return prefixes of words that have been added as words', function () { const trie = new Trie() trie.addString('test') expect(trie.contains('test')).toBe(true) expect(trie.contains('tes')).toBe(false) }) it('should not return suffixes of words that have been added as words', function () { const trie = new Trie() trie.addString('test') expect(trie.contains('test')).toBe(true) expect(trie.contains('est')).toBe(false) }) it('should not find a word that falls in between two other words but has not been added', function () { const trie = new Trie() trie.addString('test') trie.addString('tested') expect(trie.contains('test')).toBe(true) expect(trie.contains('tested')).toBe(true) expect(trie.contains('teste')).toBe(false) }) }) function expectResults (results: string[]): void { expect(results).toContain('a') expect(results).toContain('ab') expect(results).toContain('abc') expect(results).not.toContain('bc') expect(results).not.toContain('cd') } describe('prefix searching', function () { it('should be able to find all full prefix matched words along a path.', function () { const trie = new Trie() trie.addStrings(['a', 'ab', 'bc', 'cd', 'abc']) const results = trie.findMatchesOnPath('abcd') expectResults(results) }) it('should be able to guess all full prefix matched words.', function () { const trie = new Trie() trie.addStrings(['a', 'ab', 'bc', 'cd', 'abc']) let results = trie.keysWithPrefix('a') expectResults(results) results = trie.keysWithPrefix('ab') expect(results).toContain('ab') expect(results).toContain('abc') expect(results).not.toContain('a') expect(results).not.toContain('bc') expect(results).not.toContain('cd') }) it('should be able to execute the find_prefix search with a match', function () { const trie = new Trie() trie.addStrings(['their', 'and', 'they']) const results = trie.findPrefix('theyre') expect(results[0]).toBe('they') expect(results[1]).toBe('re') }) it('should return empty array if no full prefix matches found.', function () { const trie = new Trie() trie.addStrings(['a', 'ab', 'bc', 'cd', 'abc']) const results = trie.keysWithPrefix('not-found') expect(results.length).toEqual(0) }) it('should be able to execute the find_prefix search without a match', function () { const trie = new Trie() trie.addStrings(['their', 'and']) const results = trie.findPrefix('theyre') expect(results[0]).toBe(null) expect(results[1]).toBe('yre') }) }) describe('case sensitivity', function () { it('should be case sensitive by default', function () { const trie = new Trie() trie.addString('test') expect(trie.contains('TEST')).toBe(false) }) it('should have contains in case-insensitive mode', function () { const trie = new Trie(false) trie.addString('test') expect(trie.contains('TEST')).toBe(true) }) it('should have case-insensitive contains when the strings are added with case', function () { const trie = new Trie(false) trie.addString('teSt') expect(trie.contains('test')).toBe(true) }) it('should have findMatchesOnPath in case-insensitive mode', function () { const trie = new Trie(false) trie.addStrings(['a', 'ab', 'bc', 'cd', 'abc']) const results = trie.findMatchesOnPath('ABcD') expectResults(results) }) it('should have findPrefix in case-insensitive mode', function () { const trie = new Trie(false) trie.addStrings(['thEIr', 'And', 'theY']) const results = trie.findPrefix('ThEyRe') expect(results[0]).toBe('they') expect(results[1]).toBe('re') }) }) }) ================================================ FILE: tsconfig.json ================================================ { "compilerOptions": { "target": "es6", "resolveJsonModule": true, "lib": [ "es6" ], "module": "commonjs", "rootDir": "./", "baseUrl": "./", "moduleResolution": "node", "allowJs": true, "outDir": "./dist/cjs", "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "strict": true }, "include": [ "lib/natural/**/*.ts", "spec/*.ts", "io_spec/*.ts", "lib/natural/analyzers/SenType.ts" ], "exclude": [ "./node_modules" ] }